diff --git a/.changeset/config.json b/.changeset/config.json new file mode 100644 index 00000000..ae49392f --- /dev/null +++ b/.changeset/config.json @@ -0,0 +1,10 @@ +{ + "changelog": "@changesets/changelog-github", + "commit": false, + "fixed": [], + "linked": [], + "access": "public", + "baseBranch": "main", + "updateInternalDependencies": "patch", + "ignore": [] +} diff --git a/.envrc b/.envrc new file mode 100644 index 00000000..8392d159 --- /dev/null +++ b/.envrc @@ -0,0 +1 @@ +use flake \ No newline at end of file diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..c9f1d556 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,18 @@ +# Global owners +* @no-witness-labs + +# Evolution SDK core +/packages/evolution/ @no-witness-labs + +# Documentation +/docs/ @no-witness-labs +/README.md @no-witness-labs + +# CI/CD and GitHub configuration +/.github/ @no-witness-labs +/.changeset/ @no-witness-labs + +# Package configuration +/package.json @no-witness-labs +/turbo.json @no-witness-labs +/tsconfig*.json @no-witness-labs diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..1ab59ce4 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,119 @@ +name: CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + workflow_dispatch: + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + lint: + name: โฌฃ ESLint + runs-on: ubuntu-latest + steps: + - name: โฌ‡๏ธ Checkout repo + uses: actions/checkout@v4 + + - name: ๐Ÿ“ฆ Install pnpm + uses: pnpm/action-setup@v4 + + - name: โŽ” Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'pnpm' + + - name: ๐Ÿ“ฆ Install dependencies + run: pnpm install --frozen-lockfile + + - name: ๐Ÿ”ฌ Lint + run: pnpm turbo run lint --affected + + typecheck: + name: สฆ TypeScript + runs-on: ubuntu-latest + steps: + - name: โฌ‡๏ธ Checkout repo + uses: actions/checkout@v4 + + - name: ๐Ÿ“ฆ Install pnpm + uses: pnpm/action-setup@v4 + + - name: โŽ” Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'pnpm' + + - name: ๐Ÿ“ฆ Install dependencies + run: pnpm install --frozen-lockfile + + - name: ๐Ÿ”Ž Type check + run: pnpm turbo run type-check --affected + + test: + name: ๐Ÿงช Test + runs-on: ubuntu-latest + steps: + - name: โฌ‡๏ธ Checkout repo + uses: actions/checkout@v4 + + - name: ๐Ÿ“ฆ Install pnpm + uses: pnpm/action-setup@v4 + + - name: โŽ” Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'pnpm' + + - name: ๐Ÿ“ฆ Install dependencies + run: pnpm install --frozen-lockfile + + - name: ๐Ÿงช Run tests + run: pnpm turbo run test --affected + + build: + name: ๐Ÿ— Build + runs-on: ubuntu-latest + steps: + - name: โฌ‡๏ธ Checkout repo + uses: actions/checkout@v4 + + - name: ๐Ÿ“ฆ Install pnpm + uses: pnpm/action-setup@v4 + + - name: โŽ” Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'pnpm' + + - name: ๐Ÿ“ฆ Install dependencies + run: pnpm install --frozen-lockfile + + - name: ๐Ÿ— Build packages + run: pnpm turbo run build --affected + + - name: ๐Ÿ“„ Generate docs (validate examples) + run: pnpm turbo run docgen --affected || echo "No docgen script found, skipping" + + # All jobs must pass + ci: + name: โœ… CI + runs-on: ubuntu-latest + if: always() + needs: [lint, typecheck, test, build] + steps: + - name: โœ… All jobs passed + if: ${{ !(contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')) }} + run: exit 0 + + - name: โŒ Some jobs failed + if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }} + run: exit 1 diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 00000000..ca5c4580 --- /dev/null +++ b/.github/workflows/docs.yml @@ -0,0 +1,104 @@ +name: Deploy Documentation + +on: + push: + branches: [main] + paths: + - 'docs/**' + - 'packages/evolution/src/**' + - 'packages/evolution/docs/**' + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Build job + build: + runs-on: ubuntu-latest + outputs: + should_build: ${{ steps.changes.outputs.should_build }} + steps: + - name: โฌ‡๏ธ Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 # Need full history for turbo-ignore + + - name: ๐Ÿ” Check for documentation changes + id: changes + run: | + npx turbo-ignore docs + echo "should_build=$?" >> $GITHUB_OUTPUT + continue-on-error: true + + - name: ๐Ÿ“ฆ Install pnpm + if: steps.changes.outputs.should_build == '1' + uses: pnpm/action-setup@v4 + + - name: โŽ” Setup Node.js + if: steps.changes.outputs.should_build == '1' + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'pnpm' + + - name: ๐Ÿ”ง Setup Pages + if: steps.changes.outputs.should_build == '1' + uses: actions/configure-pages@v4 + with: + # Automatically inject basePath in your Next.js configuration file and disable + # server side image optimization (https://nextjs.org/docs/api-reference/next/image#unoptimized). + # + # You may remove this line if you want to manage the configuration yourself. + static_site_generator: next + + - name: ๐Ÿ“ฆ Install dependencies + if: steps.changes.outputs.should_build == '1' + run: pnpm install --frozen-lockfile + + - name: ๐Ÿ— Build packages (required for docs) + if: steps.changes.outputs.should_build == '1' + run: pnpm turbo run build + + - name: ๐Ÿ“„ Generate Evolution SDK docs + if: steps.changes.outputs.should_build == '1' + run: pnpm turbo run docgen + working-directory: packages/evolution + + - name: ๐Ÿ“š Copy Evolution docs to website + if: steps.changes.outputs.should_build == '1' + run: node scripts/copy-evolution-docs.mjs + working-directory: docs + + - name: ๐Ÿ— Build documentation with Next.js + if: steps.changes.outputs.should_build == '1' + run: pnpm turbo run build + working-directory: docs + + - name: ๐Ÿ“ค Upload artifact + if: steps.changes.outputs.should_build == '1' + uses: actions/upload-pages-artifact@v3 + with: + path: ./docs/out + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + if: needs.build.outputs.should_build == '1' || github.event_name == 'workflow_dispatch' + steps: + - name: ๐Ÿš€ Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 00000000..81122eeb --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,59 @@ +name: Release + +on: + push: + branches: + - main + +concurrency: ${{ github.workflow }}-${{ github.ref }} + +jobs: + release: + name: ๐Ÿš€ Release + runs-on: ubuntu-latest + steps: + - name: โฌ‡๏ธ Checkout repo + uses: actions/checkout@v4 + with: + # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits + fetch-depth: 0 + + - name: ๐Ÿ“ฆ Install pnpm + uses: pnpm/action-setup@v4 + + - name: โŽ” Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'pnpm' + registry-url: 'https://registry.npmjs.org/' + + - name: ๐Ÿ“ฆ Install dependencies + run: pnpm install --frozen-lockfile + + - name: ๐Ÿ— Build packages + run: pnpm turbo run build + + - name: ๐Ÿงช Run tests + run: pnpm turbo run test + + - name: ๐Ÿ“„ Generate docs + run: pnpm turbo run docgen || echo "No docgen script found, skipping" + + - name: ๐Ÿฆ‹ Create Release Pull Request or Publish to npm + id: changesets + uses: changesets/action@v1 + with: + # This uses our custom publish script that builds before publishing + publish: pnpm changeset-publish + title: "ci(changesets): version packages" + commit: "ci(changesets): version packages" + createGithubReleases: true + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + + - name: ๐Ÿ“ข Send a Slack notification if a publish happened + if: steps.changesets.outputs.published == 'true' + # You can do something when a publish happens. + run: echo "A new version of Evolution SDK was published!" diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml new file mode 100644 index 00000000..038d17aa --- /dev/null +++ b/.github/workflows/update-dependencies.yml @@ -0,0 +1,64 @@ +name: Update Dependencies + +on: + schedule: + # Run every Monday at 9:00 AM UTC + - cron: '0 9 * * 1' + workflow_dispatch: + +jobs: + update-dependencies: + name: ๐Ÿ”„ Update Dependencies + runs-on: ubuntu-latest + steps: + - name: โฌ‡๏ธ Checkout repo + uses: actions/checkout@v4 + with: + token: ${{ secrets.GITHUB_TOKEN }} + + - name: ๐Ÿ“ฆ Install pnpm + uses: pnpm/action-setup@v4 + + - name: โŽ” Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'pnpm' + + - name: ๐Ÿ“ฆ Install dependencies + run: pnpm install + + - name: ๐Ÿ”„ Update dependencies + run: | + pnpm update --latest --recursive + pnpm install + + - name: ๐Ÿงช Run tests + run: pnpm turbo run test + continue-on-error: true + + - name: ๐Ÿ— Build packages + run: pnpm turbo run build + continue-on-error: true + + - name: ๐Ÿ“ Create Pull Request + uses: peter-evans/create-pull-request@v6 + with: + token: ${{ secrets.GITHUB_TOKEN }} + commit-message: 'chore: update dependencies' + title: 'chore: update dependencies' + body: | + This PR updates all dependencies to their latest versions. + + ## Changes + - Updated all dependencies to latest versions + + ## Testing + - [ ] CI tests pass + - [ ] Manual testing required + + ## Notes + Please review the changes carefully and test thoroughly before merging. + branch: chore/update-dependencies + delete-branch: true + base: main diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..03716b65 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +temp/ +.turbo +node_modules +dist +*.log +.DS_Store +.direnv +docs/out +docs/.next \ No newline at end of file diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 00000000..30716dac --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,8 @@ +{ + "semi": false, + "trailingComma": "none", + "singleQuote": false, + "printWidth": 120, + "tabWidth": 2, + "useTabs": false +} diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..7279f0ef --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,74 @@ +# Contributing to Evolution SDK + +We love your input! We want to make contributing to Evolution SDK as easy and transparent as possible, whether it's: + +- Reporting a bug +- Discussing the current state of the code +- Submitting a fix +- Proposing new features +- Becoming a maintainer + +## Development Process + +We use GitHub to host code, to track issues and feature requests, as well as accept pull requests. + +### Pull Requests + +1. Fork the repo and create your branch from `main`. +2. If you've added code that should be tested, add tests. +3. If you've changed APIs, update the documentation. +4. Ensure the test suite passes. +5. Make sure your code follows the existing style. +6. Issue that pull request! + +## Development Setup + +```bash +# Clone your fork +git clone https://github.com/your-username/evolution-sdk.git +cd evolution-sdk + +# Enter development environment (optional but recommended) +nix develop + +# Install dependencies +pnpm install + +# Build the project +pnpm turbo build + +# Run type checking +pnpm turbo type-check + +# Start development mode +pnpm turbo dev +``` + +## Code Style + +- Use TypeScript for all new code +- Follow the existing code style (we use prettier and eslint) +- Write meaningful commit messages +- Keep pull requests focused and small + +## Reporting Bugs + +We use GitHub issues to track public bugs. Report a bug by [opening a new issue](https://github.com/no-witness-labs/evolution-sdk/issues/new). + +**Great Bug Reports** tend to have: + +- A quick summary and/or background +- Steps to reproduce + - Be specific! + - Give sample code if you can +- What you expected would happen +- What actually happens +- Notes (possibly including why you think this might be happening, or stuff you tried that didn't work) + +## Feature Requests + +Feature requests are welcome! Please create an issue to discuss the feature before implementing it. + +## License + +By contributing, you agree that your contributions will be licensed under the MIT License. diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..f9fb0210 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 No Witness Labs + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 8208cad0..a0e3d681 100644 --- a/README.md +++ b/README.md @@ -1 +1,456 @@ -# evolution-sdk +
+ Evolution SDK Logo + + # Evolution SDK + + **TypeScript-first Cardano development with static type inference** + + Build robust Cardano applications with modern TypeScript, functional programming, and comprehensive type safety. + + [![Build Status](https://img.shields.io/github/actions/workflow/status/no-witness-labs/evolution-sdk/ci.yml?branch=main)](https://github.com/no-witness-labs/evolution-sdk/actions) + [![TypeScript](https://img.shields.io/badge/TypeScript-5.4+-blue.svg)](https://www.typescriptlang.org/) + [![Effect](https://img.shields.io/badge/Effect-3.0+-blueviolet.svg)](https://effect.website/) + [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) + [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](http://makeapullrequest.com) + + [๐Ÿ“š Documentation](https://no-witness-labs.github.io/evolution-sdk) โ€ข [๐Ÿš€ Quick Start](#-quick-start) โ€ข [๐Ÿ’ก Examples](./examples) โ€ข [๐Ÿค Contributing](#-contributing) +
+ +--- + +## What is Evolution SDK? + +Evolution SDK is a **TypeScript-first** Cardano development framework. Define your data schemas and build transactions with full type safety. You'll get back strongly typed, validated results with comprehensive error handling. + +```typescript +import { Address, Transaction, Coin, Devnet } from "@evolution-sdk/evolution" + +// Define and validate a Cardano address +const address = Address.Codec.Decode.bech32( + "addr1qx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3jcu5d8ps7zex2k2xt3uqxgjqnnj0vs2qd4a8cpkp0k8cqq0sq2nq" +) + +// Convert between formats with type safety +const addressHex = Address.Codec.Encode.hex(address) +const addressBytes = Address.Codec.Encode.bytes(address) + +// Work with CBOR data confidently using Codec +const transaction = Transaction.Codec.Decode.hex("84a3008282...") +const coin = Coin.Codec.Decode.bytes(coinBytes) + +// Effect-powered error handling +const addressEffect = Address.Codec.DecodeEffect.bech32( + "addr1qx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3jcu5d8ps7zex2k2xt3uqxgjqnnj0vs2qd4a8cpkp0k8cqq0sq2nq" +) + +// Start a local development network instantly +const devnet = await Devnet.Cluster.start({ + kupo: { enabled: true }, + ogmios: { enabled: true } +}) +``` + +## โœจ Features + +โ€ข **Zero runtime errors** - Comprehensive TypeScript types for all Cardano primitives +โ€ข **Effect-powered** - Built on Effect for robust error handling and async operations +โ€ข **Blazing fast** - Modern tooling with hot reload and optimized builds +โ€ข **DevNet ready** - Local blockchain development with Docker integration +โ€ข **Modular design** - Tree-shakeable exports for minimal bundle size +โ€ข **CBOR first-class** - Native support for Cardano's binary format +โ€ข **Battle-tested** - Production-ready with comprehensive test coverage + +--- + +## ๐Ÿš€ Installation + +```bash +npm install @evolution-sdk/evolution +``` + +## ๐Ÿ Quick Start + +```typescript +import { Address, TransactionHash, Devnet } from "@evolution-sdk/evolution" + +// Create and validate addresses +const address = Address.Codec.Decode.bech32( + "addr1qx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3jcu5d8ps7zex2k2xt3uqxgjqnnj0vs2qd4a8cpkp0k8cqq0sq2nq" +) + +// Handle transactions with type safety +const txHash = TransactionHash.Codec.Decode.hex("915cb8b7b58c6a4db9ff6c0c4b6e6e9b4c8b5a6f4e6e8a5b2c9d8f7e1a4b3c2d1") + +// Start a development network +const devnet = await Devnet.Cluster.makeOrThrow({ + clusterName: "my-devnet", + kupo: { enabled: true }, + ogmios: { enabled: true } +}) + +await Devnet.Cluster.startOrThrow(devnet) +``` + +### Type Inference + +Evolution SDK provides comprehensive type inference for all Cardano primitives: + +```typescript +import { Address, CBOR, Effect } from "@evolution-sdk/evolution" + +// Type-safe CBOR operations +const encoded = CBOR.Codec.Encode.bytes(myData) // Uint8Array +const decoded = CBOR.Codec.Decode.bytes(encoded) // Decoded data + +// Effect-powered error handling +const result = await Effect.runPromise( + Address.Codec.DecodeEffect.bech32(bech32String) +) +``` + +## ๐Ÿ—๏ธ Architecture + +Evolution SDK is built as a **single package** with a clean, modular structure that's ready for future expansion: + +``` +evolution-sdk/ +โ”œโ”€โ”€ ๐Ÿ“ฆ packages/ +โ”‚ โ””โ”€โ”€ evolution/ # Main SDK package +โ”‚ โ”œโ”€โ”€ src/ +โ”‚ โ”‚ โ”œโ”€โ”€ Address.ts # Address utilities +โ”‚ โ”‚ โ”œโ”€โ”€ Transaction.ts # Transaction building +โ”‚ โ”‚ โ”œโ”€โ”€ Devnet/ # Development network tools +โ”‚ โ”‚ โ””โ”€โ”€ ... +โ”‚ โ””โ”€โ”€ dist/ # Compiled output +โ”œโ”€โ”€ ๐Ÿ“– docs/ # Documentation +โ”œโ”€โ”€ ๐Ÿงช examples/ # Usage examples +โ”œโ”€โ”€ turbo.json # Turbo configuration +โ”œโ”€โ”€ pnpm-workspace.yaml # Workspace configuration +โ””โ”€โ”€ flake.nix # Nix development environment +``` + +### Future Package Expansion + +The monorepo structure is designed to accommodate additional packages. + +## ๐Ÿ“ฆ Package + +| Package | Description | Status | Documentation | +| -------------------------------------------------- | ---------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------- | +| [`@evolution-sdk/evolution`](./packages/evolution) | Complete Cardano SDK with address management, transactions, and DevNet tools | ๐Ÿšง In Development | [README](./packages/evolution/README.md) | + +### Core Features + +- **๐Ÿ  Address Management**: Create, validate, and convert Cardano addresses +- **๐Ÿ’ฐ Transaction Building**: Construct and serialize transactions with type safety +- **๐Ÿ”ง CBOR Encoding/Decoding**: Handle Cardano's binary data format +- **๐ŸŒ Network Utilities**: Tools for different Cardano networks +- **๐Ÿณ DevNet Integration**: Local development blockchain with Docker +- **๐Ÿ“Š Data Schemas**: Comprehensive Cardano data type definitions + +## ๐Ÿ› ๏ธ Development + +### Setting Up the Development Environment + +```bash +# Clone the repository +git clone https://github.com/no-witness-labs/evolution-sdk.git +cd evolution-sdk + +# Enter Nix development shell (optional but recommended) +nix develop + +# Install dependencies +pnpm install + +# Build all packages +pnpm turbo build + +# Start development mode with file watching +pnpm turbo dev + +# Run type checking +pnpm turbo type-check +``` + +### Available Scripts + +| Command | Description | +| ----------------------- | -------------------------------------- | +| `pnpm turbo build` | Build the package with optimal caching | +| `pnpm turbo dev` | Start development mode with hot reload | +| `pnpm turbo type-check` | Run TypeScript type checking | +| `pnpm turbo test` | Run all tests (when available) | +| `pnpm turbo lint` | Run code quality checks | +| `pnpm turbo clean` | Clean all build artifacts | + +### Tech Stack + + + + + + + + + +

TypeScript

Turbo

Effect

Docker

Nix
+ +## ๐Ÿ“š Documentation + +### ๐ŸŒ Website +For comprehensive guides, tutorials, and interactive examples, visit our [official documentation](https://no-witness-labs.github.io/evolution-sdk). + +### ๐Ÿ“– API Reference +Complete API documentation with type definitions and examples is available in our [API reference](https://no-witness-labs.github.io/evolution-sdk/api). + +### ๐ŸŽ“ Learning Resources + +- **[Getting Started Guide](https://no-witness-labs.github.io/evolution-sdk/getting-started)** - Your first steps with Evolution SDK +- **[Examples Repository](./examples)** - Real-world usage examples and patterns +- **[Video Tutorials](https://no-witness-labs.github.io/evolution-sdk/videos)** - Visual guides for complex topics +- **[Migration Guide](https://no-witness-labs.github.io/evolution-sdk/migration)** - Upgrading from other Cardano libraries + +### ๐ŸŽฅ Introduction Video +Get started with Evolution SDK by watching our introductory video: +[**Introduction to Evolution SDK โ†’**](https://youtu.be/EvolutionSDK) + +## ๐Ÿค Community & Support + +Join our thriving community of Cardano developers: + +- ๐Ÿ’ฌ **[Discord](https://discord.gg/RcW9xqFC)** - Get help, share projects, and discuss development +- **[X](https://x.com/nowitnesslabs)** - Latest announcements and ecosystem updates +- ๐Ÿ› **[GitHub Issues](https://github.com/no-witness-labs/evolution-sdk/issues)** - Bug reports and feature requests +- ๐Ÿ’ก **[GitHub Discussions](https://github.com/no-witness-labs/evolution-sdk/discussions)** - Questions, ideas, and community showcases + +### Getting Help + +- **Found a bug?** Open an issue with a minimal reproduction +- **Need help?** Ask in our Discord community +- **Have an idea?** Start a discussion on GitHub +- **Want to contribute?** Check our [contribution guide](#-contributing) + +## ๐ŸŽฏ Roadmap + +### โœ… Phase 1: Foundation (Completed) +- [x] **Core SDK Foundation** + - [x] TypeScript package setup with strict typing + - [x] Modern build configuration with Turbo + - [x] Comprehensive Cardano primitive types (78 modules) + - [x] Codec pattern for all data operations + - [x] Effect integration for error handling + - [x] Docker DevNet integration + - [x] ESM module format with tree-shaking + - [x] Complete type definitions and IntelliSense + +### โœ… Phase 2: Core Features (Completed) +- [x] **Address Management** (10 modules) + - [x] `Address` - Core address utilities with bech32/hex encoding + - [x] `BaseAddress`, `ByronAddress`, `EnterpriseAddress` - All address types + - [x] `PaymentAddress`, `PointerAddress`, `RewardAddress` - Specialized addresses + - [x] `AddressDetails`, `AddressTag`, `StakeReference` - Address metadata +- [x] **Transaction Handling** (7 modules) + - [x] `Transaction`, `TransactionBody`, `TransactionHash` - Core transaction + - [x] `TransactionInput`, `TransactionOutput`, `TransactionIndex` - I/O handling + - [x] `TransactionMetadatumLabels` - Metadata support +- [x] **Cryptography & Security** (9 modules) + - [x] `Ed25519Signature`, `KesSignature`, `VrfCert` - Digital signatures + - [x] `Hash28`, `KeyHash`, `VrfKeyHash` - Hash utilities + - [x] `VKey`, `KESVkey`, `VrfVkey` - Verification keys +- [x] **Value & Assets** (7 modules) + - [x] `Coin`, `PositiveCoin`, `Value` - ADA and multi-asset handling + - [x] `MultiAsset`, `AssetName`, `PolicyId` - Asset management + - [x] `Mint` - Minting operations +- [x] **Scripts & Certificates** (7 modules) + - [x] `Certificate`, `NativeScripts`, `NativeScriptJSON` - Script support + - [x] `ScriptDataHash`, `ScriptHash`, `ScriptRef` - Script utilities +- [x] **Governance & Staking** (12 modules) + - [x] `DRep`, `DRepCredential`, `VotingProcedures` - Governance + - [x] `ProposalProcedures`, `CommitteeColdCredential`, `CommitteeHotCredential` - Committee + - [x] `PoolKeyHash`, `PoolMetadata`, `PoolParams` - Pool management + - [x] `Withdrawals`, `Credential` - Staking operations +- [x] **Network & Communication** (11 modules) + - [x] `Network`, `NetworkId`, `Relay` - Network utilities + - [x] `IPv4`, `IPv6`, `Port`, `DnsName`, `Url` - Network addressing + - [x] `SingleHostAddr`, `SingleHostName`, `MultiHostName` - Host management +- [x] **Data Types & Primitives** (15 modules) + - [x] `Bytes`, `BoundedBytes` + 8 fixed-size byte arrays + - [x] `Text`, `Text128`, `BigInt`, `Natural` - Text and numeric types + - [x] `NonZeroInt64`, `Numeric`, `UnitInterval` - Specialized numbers +- [x] **Blockchain Primitives** (12 modules) + - [x] `Block`, `BlockBodyHash`, `BlockHeaderHash` - Block structure + - [x] `Header`, `HeaderBody`, `EpochNo` - Block components + - [x] `AuxiliaryDataHash`, `OperationalCert`, `ProtocolVersion` - Protocol + - [x] `Pointer`, `Anchor`, `RewardAccount` - Blockchain references +- [x] **Core Utilities** (8 modules) + - [x] `CBOR`, `Codec`, `Combinator` - Core encoding/decoding + - [x] `Data`, `DataJson`, `DatumOption` - Data handling + - [x] `Bech32`, `FormatError` - Utilities and error handling +- [x] **Development Tools** (2 modules) + - [x] `Devnet`, `DevnetDefault` - Local development network + +### ๐Ÿšง Phase 3: Transaction Building & Providers (In Progress) +- [ ] **Transaction Builder Components** + - [ ] Transaction builder with fluent API + - [ ] UTXO selection algorithms + - [ ] Fee calculation utilities + - [ ] Balance and change computation + - [ ] Multi-asset transaction support + - [ ] Script witness attachment +- [ ] **Provider Integrations** + - [ ] `Maestro` - Maestro API provider + - [ ] `Blockfrost` - Blockfrost API provider + - [ ] `Koios` - Koios API provider + - [ ] `KupoOgmios` - Kupo/Ogmios provider + - [ ] `UtxoRpc` - UTXO RPC provider + - [ ] Provider abstraction layer + - [ ] Failover and load balancing +- [ ] **Wallet Integration** + - [ ] Hardware wallet support (Ledger, Trezor) + - [ ] Browser wallet integration (Nami, Eternl, Flint) + - [ ] Multi-signature wallet support + - [ ] Wallet connector abstraction layer + - [ ] CIP-30 standard implementation +- [ ] **Smart Contract Support** + - [ ] UPLC evaluation from Aiken + - [ ] UPLC evaluation from Helios + - [ ] UPLC evaluation from Plu-ts + - [ ] UPLC evaluation from Scalus + - [ ] Script validation utilities + - [ ] Datum and redeemer handling + - [ ] Script cost estimation +- [ ] **Effect 4.0 Migration** + - [ ] Upgrade to Effect 4.0 when released + - [ ] Leverage new Effect features and performance improvements + - [ ] Update all Codec and Error handling patterns + - [ ] Maintain backward compatibility where possible + +### ๐Ÿ”ฎ Phase 4: Advanced Features (Planned) +- [x] **Enhanced DevNet** (Completed) + - [x] Custom network configuration + - [x] Automated testing framework + - [x] Transaction simulation + - [x] Performance monitoring +- [ ] **Hydra Integration** + - [ ] Hydra Head management + - [ ] State channel operations + - [ ] Off-chain transaction handling + - [ ] Hydra Head lifecycle management + - [ ] Layer 2 scaling utilities +- [ ] **DeFi Primitives** + - [ ] DEX integration utilities + - [ ] Liquidity pool management + - [ ] Yield farming helpers + - [ ] NFT marketplace tools +- [ ] **Developer Experience** + - [ ] CLI tool for project scaffolding + - [ ] VS Code extension + - [ ] Interactive tutorials + - [ ] Schema types from Plutus blueprint types + +### ๐Ÿ“Š Current Focus +We're currently prioritizing **transaction building components** and **provider integrations** (Maestro, Blockfrost, Koios, Kupo/Ogmios, UTXO RPC) to provide developers with the essential infrastructure needed for building production Cardano applications. + +## ๐Ÿค Contributing + +We love your input! We want to make contributing to Evolution SDK as easy and transparent as possible. + +### Quick Start for Contributors + +1. **Fork and clone** the repository + ```bash + git clone https://github.com/your-username/evolution-sdk.git + cd evolution-sdk + ``` + +2. **Install dependencies** + ```bash + pnpm install + ``` + +3. **Start development** + ```bash + pnpm turbo dev + ``` + +4. **Make your changes** and test them + ```bash + pnpm turbo build + pnpm turbo type-check + ``` + +5. **Create a pull request** + +### Development Workflow + +| Command | Description | +|---------|-------------| +| `pnpm turbo build` | Build all packages with optimal caching | +| `pnpm turbo dev` | Start development mode with hot reload | +| `pnpm turbo type-check` | Run TypeScript type checking | +| `pnpm turbo test` | Run all tests | +| `pnpm turbo lint` | Run code quality checks | +| `pnpm turbo clean` | Clean all build artifacts | + +### What We're Looking For + +- ๐Ÿ› **Bug fixes** - Help us squash those pesky issues +- โœจ **New features** - Extend Evolution SDK's capabilities +- ๐Ÿ“š **Documentation** - Improve guides, examples, and API docs +- ๐Ÿงช **Tests** - Increase our test coverage +- ๐ŸŽจ **Examples** - Show off creative use cases +- ๐Ÿš€ **Performance** - Make Evolution SDK even faster + +### Contribution Guidelines + +- **Follow TypeScript best practices** - Use strict typing and modern patterns +- **Add tests** for new features and bug fixes +- **Update documentation** when adding new APIs +- **Keep changes focused** - One feature/fix per pull request +- **Follow conventional commits** - Use clear, descriptive commit messages + +Read our full [Contribution Guide](CONTRIBUTING.md) for detailed guidelines. + +## ๐Ÿ“„ License + +This project is licensed under the **MIT License** - see the [LICENSE](LICENSE) file for details. + +--- + +
+ +## ๐ŸŒŸ Support Evolution SDK + + + Sponsor + + +**Help us build the future of Cardano development** + +Your sponsorship helps us maintain Evolution SDK, create educational content, and support the community. + +
+ +## ๐Ÿ™ Acknowledgments + +Evolution SDK builds on the incredible work of: + +- ๐Ÿ—๏ธ **[Turborepo](https://turborepo.org/)** - For the incredible build system +- โšก **[Effect](https://effect.website/)** - For functional programming excellence +- **Our [contributors](https://github.com/no-witness-labs/evolution-sdk/graphs/contributors)** - Building the future together + +--- + +
+

+ Built with โค๏ธ by No Witness Labs +

+

+ โญ Star us on GitHub โ€ข + Follow on X โ€ข + ๐Ÿ’ฌ Join Discord +

+ + **[๐Ÿ“š Read the docs](https://no-witness-labs.github.io/evolution-sdk)** to get started building with Evolution SDK +
diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 00000000..e69de29b diff --git a/docs/next-env.d.ts b/docs/next-env.d.ts new file mode 100644 index 00000000..a4a7b3f5 --- /dev/null +++ b/docs/next-env.d.ts @@ -0,0 +1,5 @@ +/// +/// + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information. diff --git a/docs/next.config.js b/docs/next.config.js new file mode 100644 index 00000000..08c15c33 --- /dev/null +++ b/docs/next.config.js @@ -0,0 +1,15 @@ +const withNextra = require("nextra")({ + theme: "nextra-theme-docs", + themeConfig: "./theme.config.tsx" +}) + +module.exports = withNextra({ + reactStrictMode: true, + trailingSlash: true, + basePath: "", + output: "export", + distDir: "out", + images: { + unoptimized: true + } +}) diff --git a/docs/package.json b/docs/package.json new file mode 100644 index 00000000..25c936b2 --- /dev/null +++ b/docs/package.json @@ -0,0 +1,27 @@ +{ + "name": "@evolution-sdk/docs", + "version": "0.1.0", + "private": true, + "description": "Documentation for Evolution SDK", + "scripts": { + "dev": "next dev", + "build": "next build", + "start": "next start", + "export": "next build && next export", + "copy-evolution-docs": "node scripts/copy-evolution-docs.mjs", + "prebuild": "npm run copy-evolution-docs" + }, + "dependencies": { + "next": "^14.0.0", + "nextra": "^2.13.0", + "nextra-theme-docs": "^2.13.0", + "react": "^18.2.0", + "react-dom": "^18.2.0" + }, + "devDependencies": { + "@types/node": "^20.0.0", + "@types/react": "^18.2.0", + "@types/react-dom": "^18.2.0", + "typescript": "^5.0.0" + } +} diff --git a/docs/pages/_meta.json b/docs/pages/_meta.json new file mode 100644 index 00000000..b68244b3 --- /dev/null +++ b/docs/pages/_meta.json @@ -0,0 +1,6 @@ +{ + "index": "Introduction", + "getting-started": "Getting Started", + "api": "API Reference", + "guides": "Guides" +} diff --git a/docs/pages/api/test.mdx b/docs/pages/api/test.mdx new file mode 100644 index 00000000..e69de29b diff --git a/docs/pages/getting-started/_meta.json b/docs/pages/getting-started/_meta.json new file mode 100644 index 00000000..46e6ac21 --- /dev/null +++ b/docs/pages/getting-started/_meta.json @@ -0,0 +1,5 @@ +{ + "installation": "Installation", + "quick-start": "Quick Start", + "examples": "Examples" +} diff --git a/docs/pages/getting-started/examples.mdx b/docs/pages/getting-started/examples.mdx new file mode 100644 index 00000000..c71444f4 --- /dev/null +++ b/docs/pages/getting-started/examples.mdx @@ -0,0 +1,245 @@ +# Examples + +Comprehensive examples showing how to use Evolution SDK for common Cardano development tasks. + +## Address Validation and Analysis + +### Validating Different Address Types + +```typescript +import * as PaymentAddress from "@evolution-sdk/evolution/PaymentAddress" +import * as RewardAddress from "@evolution-sdk/evolution/RewardAddress" + +// Collection of different address types from mainnet and testnet +const addresses = { + // Mainnet addresses + mainnet: { + base: "addr1qx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3n0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgse35a3x", + enterprise: "addr1vx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer66hrl8", + pointer: "addr1gx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer5pnz75xxcrzqf96k", + reward: "stake1uyehkck0lajq8gr28t9uxnuvgcqrc6070x3k9r8048z8y5gh6ffgw" + }, + // Testnet addresses + testnet: { + base: "addr_test1qz2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3n0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgs68faae", + enterprise: "addr_test1vz2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzerspjrlsz", + pointer: "addr_test1gz2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer5pnz75xxcrdw5vky", + reward: "stake_test1uqehkck0lajq8gr28t9uxnuvgcqrc6070x3k9r8048z8y5gssrtvn" + } +} + +// Validate payment addresses (base, enterprise, pointer) +function validatePaymentAddresses() { + const paymentAddresses = [ + addresses.mainnet.base, + addresses.mainnet.enterprise, + addresses.mainnet.pointer, + addresses.testnet.base, + addresses.testnet.enterprise, + addresses.testnet.pointer + ] + + paymentAddresses.forEach((address) => { + const isValid = PaymentAddress.isPaymentAddress(address) + console.log(`${address.substring(0, 20)}... is payment address: ${isValid}`) + }) +} + +// Validate reward addresses +function validateRewardAddresses() { + const rewardAddresses = [addresses.mainnet.reward, addresses.testnet.reward] + + rewardAddresses.forEach((address) => { + const isValid = RewardAddress.isRewardAddress(address) + console.log(`${address.substring(0, 20)}... is reward address: ${isValid}`) + }) +} + +validatePaymentAddresses() +validateRewardAddresses() +``` + +## Address Format Conversion + +### Working with Hex and Bech32 Formats + +```typescript +import * as Address from "@evolution-sdk/evolution/Address" + +// Sample hex addresses from the Cardano blockchain +const validHexAddresses = [ + "019493315cd92eb5d8c4304e67b7e16ae36d61d34502694657811a2c8e337b62cfff6403a06a3acbc34f8c46003c69fe79a3628cefa9c47251", + "60ba1d6b6283c219a0530e3682c316215d55819cf97bbf26552c6f8530" +] + +function demonstrateConversion() { + validHexAddresses.forEach((hex) => { + try { + // Decode from hex + const address = Address.Codec.Decode.hex(hex) + console.log(`Decoded address from hex: ${hex.substring(0, 20)}...`) + + // Encode to bech32 + const bech32 = Address.Codec.Encode.bech32(address) + console.log(`Bech32 format: ${bech32}`) + + // Round-trip back to hex + const backToHex = Address.Codec.Encode.hex(address) + console.log(`Round-trip successful: ${backToHex === hex}`) + console.log("---") + } catch (error) { + console.error(`Failed to process hex: ${hex}`, error) + } + }) +} + +demonstrateConversion() +``` + +### Specific Hex to Bech32 Example + +```typescript +import * as Address from "@evolution-sdk/evolution/Address" + +// Real example from Cardano testnet +const hexAddress = "60ba1d6b6283c219a0530e3682c316215d55819cf97bbf26552c6f8530" +const expectedBech32 = "addr_test1vzap66mzs0ppngznpcmg9scky9w4tqvul9am7fj493hc2vq4ry02m" + +const address = Address.Codec.Decode.hex(hexAddress) +const actualBech32 = Address.Codec.Encode.bech32(address) + +console.log(`Input hex: ${hexAddress}`) +console.log(`Expected: ${expectedBech32}`) +console.log(`Actual: ${actualBech32}`) +console.log(`Match: ${actualBech32 === expectedBech32}`) +``` + +## Data Type Validation + +### Working with PlutusData Types + +```typescript +import * as Data from "@evolution-sdk/evolution/Data" + +// Create a codec for data operations +const codec = Data.Codec() + +// Valid hex examples (even-length hex strings) +const validHexCases = ["deadbeef", "cafe0123", "abcdef0123456789", "00", "ff"] + +// Invalid hex examples +const invalidHexCases = [ + "not-hex", + "xyz", + "123g", + "deadbeef ", // trailing space + " deadbeef", // leading space + "0x123456" // hex prefix not allowed +] + +function validateHexData() { + console.log("Valid hex data:") + validHexCases.forEach((hex) => { + const isValid = Data.isBytes(hex) + console.log(`"${hex}" -> ${isValid}`) + }) + + console.log("\nInvalid hex data:") + invalidHexCases.forEach((hex) => { + const isValid = Data.isBytes(hex) + console.log(`"${hex}" -> ${isValid}`) + }) +} + +validateHexData() +``` + +## Error Handling Patterns + +### Safe Address Operations with Effect + +```typescript +import { Effect } from "effect" +import * as Address from "@evolution-sdk/evolution/Address" + +// Safe address decoding with error handling +function safeAddressOperations() { + const addresses = [ + "60ba1d6b6283c219a0530e3682c316215d55819cf97bbf26552c6f8530", // valid + "invalid-hex-address", // invalid + "019493315cd92eb5d8c4304e67b7e16ae36d61d34502694657811a2c8e337b62cfff6403a06a3acbc34f8c46003c69fe79a3628cefa9c47251" // valid + ] + + addresses.forEach((hex) => { + const program = Effect.gen(function* () { + // Try to decode the address + const address = yield* Effect.try(() => Address.Codec.Decode.hex(hex)) + + // If successful, convert to bech32 + const bech32 = Address.Codec.Encode.bech32(address) + + return { + success: true, + input: hex, + output: bech32 + } + }) + + // Handle the result + Effect.runPromise(program) + .then((result) => { + console.log(`โœ… Success: ${result.input.substring(0, 20)}... -> ${result.output}`) + }) + .catch((error) => { + console.log(`โŒ Failed: ${hex.substring(0, 20)}... -> ${error.message || "Invalid address"}`) + }) + }) +} + +safeAddressOperations() +``` + +### Batch Address Validation + +```typescript +import * as PaymentAddress from "@evolution-sdk/evolution/PaymentAddress" +import * as RewardAddress from "@evolution-sdk/evolution/RewardAddress" + +// Mixed collection of valid and invalid addresses +const testAddresses = [ + "addr1qx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3n0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgse35a3x", + "stake1uyehkck0lajq8gr28t9uxnuvgcqrc6070x3k9r8048z8y5gh6ffgw", + "not-an-address", + "addr_test1qz2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3n0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgs68faae", + "stake_test1uqehkck0lajq8gr28t9uxnuvgcqrc6070x3k9r8048z8y5gssrtvn" +] + +function batchValidation() { + const results = testAddresses.map((address) => { + const isPayment = PaymentAddress.isPaymentAddress(address) + const isReward = RewardAddress.isRewardAddress(address) + + let type = "invalid" + if (isPayment) type = "payment" + else if (isReward) type = "reward" + + return { + address: address.substring(0, 30) + "...", + type, + valid: isPayment || isReward + } + }) + + console.log("Batch validation results:") + console.table(results) +} + +batchValidation() +``` + +## Next Steps + +- Check out the [API Reference](/api) for complete documentation +- Learn about [Address Types](/getting-started/address-types) in detail +- Explore [Advanced Usage](/guides/advanced) patterns +- View the [Test Suite](https://github.com/your-repo/tests) for more examples diff --git a/docs/pages/getting-started/installation.mdx b/docs/pages/getting-started/installation.mdx new file mode 100644 index 00000000..812b7daa --- /dev/null +++ b/docs/pages/getting-started/installation.mdx @@ -0,0 +1,73 @@ +# Installation + +## Prerequisites + +- Node.js 18+ +- TypeScript 5+ +- A package manager (npm, yarn, or pnpm) + +## Package Manager Installation + +### npm + +```bash +npm install @evolution-sdk/evolution +``` + +### yarn + +```bash +yarn add @evolution-sdk/evolution +``` + +### pnpm + +```bash +pnpm add @evolution-sdk/evolution +``` + +## Development Dependencies + +If you're contributing to the SDK or need development dependencies: + +```bash +# Clone the repository +git clone https://github.com/no-witness-labs/evolution-sdk.git +cd evolution-sdk + +# Install dependencies +pnpm install + +# Build the project +pnpm build + +# Run tests +pnpm test +``` + +## TypeScript Configuration + +Evolution SDK requires TypeScript 5+ with strict mode enabled. Add to your `tsconfig.json`: + +```json +{ + "compilerOptions": { + "strict": true, + "target": "ES2022", + "moduleResolution": "node", + "allowSyntheticDefaultImports": true, + "esModuleInterop": true + } +} +``` + +## Verify Installation + +Create a simple test file to verify the installation: + +```typescript +import { Network, Address } from "@evolution-sdk/evolution" + +console.log("Evolution SDK installed successfully!") +console.log("Mainnet ID:", Network.toId("Mainnet")) +``` diff --git a/docs/pages/getting-started/quick-start.mdx b/docs/pages/getting-started/quick-start.mdx new file mode 100644 index 00000000..540f3446 --- /dev/null +++ b/docs/pages/getting-started/quick-start.mdx @@ -0,0 +1,135 @@ +# Quick Start + +Get up and running with Evolution SDK in minutes. + +## Installation + +First, install the Evolution SDK in your project: + +```bash +npm install @evolution-sdk/evolution +# or +yarn add @evolution-sdk/evolution +# or +pnpm add @evolution-sdk/evolution +``` + +## Basic Usage + +### Working with Cardano Addresses + +```typescript +import * as Address from "@evolution-sdk/evolution/Address" +import * as PaymentAddress from "@evolution-sdk/evolution/PaymentAddress" +import * as RewardAddress from "@evolution-sdk/evolution/RewardAddress" + +// Sample mainnet addresses from the Cardano blockchain +const mainnetBaseAddress = + "addr1qx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3n0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgse35a3x" +const mainnetRewardAddress = "stake1uyehkck0lajq8gr28t9uxnuvgcqrc6070x3k9r8048z8y5gh6ffgw" + +// Sample testnet addresses +const testnetBaseAddress = + "addr_test1qz2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3n0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgs68faae" +const testnetRewardAddress = "stake_test1uqehkck0lajq8gr28t9uxnuvgcqrc6070x3k9r8048z8y5gssrtvn" + +// Validate payment addresses +console.log(PaymentAddress.isPaymentAddress(mainnetBaseAddress)) // true +console.log(PaymentAddress.isPaymentAddress(mainnetRewardAddress)) // false + +// Validate reward addresses +console.log(RewardAddress.isRewardAddress(mainnetRewardAddress)) // true +console.log(RewardAddress.isRewardAddress(mainnetBaseAddress)) // false +``` + +### Address Format Conversion + +```typescript +import * as Address from "@evolution-sdk/evolution/Address" + +// Convert between hex and bech32 formats +const hexAddress = "60ba1d6b6283c219a0530e3682c316215d55819cf97bbf26552c6f8530" +const expectedBech32 = "addr_test1vzap66mzs0ppngznpcmg9scky9w4tqvul9am7fj493hc2vq4ry02m" + +// Decode from hex +const address = Address.Codec.Decode.hex(hexAddress) + +// Encode to bech32 +const actualBech32 = Address.Codec.Encode.bech32(address) +console.log(actualBech32 === expectedBech32) // true + +// Round-trip conversion +const backToHex = Address.Codec.Encode.hex(address) +console.log(backToHex === hexAddress) // true +``` + +### Working with Different Address Types + +```typescript +// Base address (payment key hash + stake key hash) +const baseAddress = + "addr1qx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3n0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgse35a3x" + +// Enterprise address (payment key hash only) +const enterpriseAddress = "addr1vx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzers66hrl8" + +// Pointer address (payment key hash + pointer) +const pointerAddress = "addr1gx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer5pnz75xxcrzqf96k" + +// Reward address (stake key hash) +const rewardAddress = "stake1uyehkck0lajq8gr28t9uxnuvgcqrc6070x3k9r8048z8y5gh6ffgw" + +// Each address type serves different purposes in the Cardano ecosystem +console.log("All addresses are valid Cardano addresses") +``` + +### Working with Data Types + +```typescript +import * as Data from "@evolution-sdk/evolution/Data" + +// Create a codec for encoding/decoding data +const codec = Data.Codec() + +// Working with hex data +const validHex = "deadbeef" +const isValidBytes = Data.isBytes(validHex) // true + +// Invalid hex examples +const invalidHex = "not-hex" +const isInvalidBytes = Data.isBytes(invalidHex) // false +``` + +## Error Handling + +Evolution SDK uses Effect-TS for robust error handling. Most operations return an `Effect` that can either succeed or fail: + +```typescript +import { Effect } from "effect" +import * as Address from "@evolution-sdk/evolution/Address" + +// Operations that might fail are wrapped in Effect +const program = Effect.gen(function* () { + // This will succeed with a valid address + const validAddress = yield* Effect.try(() => + Address.Codec.Decode.hex("60ba1d6b6283c219a0530e3682c316215d55819cf97bbf26552c6f8530") + ) + + // Convert to bech32 format + const bech32 = Address.Codec.Encode.bech32(validAddress) + + return bech32 +}) + +// Run the program +Effect.runPromise(program) + .then((result) => console.log("Address:", result)) + .catch((error) => console.error("Error:", error)) +``` + +## Next Steps + +- Explore the [API Reference](/api) for detailed documentation +- Learn about [Address Types](/getting-started/address-types) for more details +- Check out more [Examples](/getting-started/examples) for complex use cases +- Read the [Guides](/guides) for specific development scenarios diff --git a/docs/pages/index.mdx b/docs/pages/index.mdx new file mode 100644 index 00000000..fcd5ab86 --- /dev/null +++ b/docs/pages/index.mdx @@ -0,0 +1,49 @@ +# Evolution SDK + +A comprehensive TypeScript SDK for Cardano blockchain development, built with Effect-TS. + +## Overview + +Evolution SDK provides a type-safe, functional programming approach to Cardano blockchain development. Built on top of Effect-TS, it offers: + +- **Type Safety**: Full TypeScript support with comprehensive type definitions +- **CBOR Support**: Native CBOR encoding/decoding for Cardano data structures +- **Effect Integration**: Leverages Effect-TS for error handling and composability +- **Address Management**: Support for all Cardano address types +- **Transaction Building**: Tools for constructing and signing transactions +- **Plutus Data**: Native support for Plutus data structures + +## Quick Start + +```bash +npm install @evolution-sdk/evolution +``` + +```typescript +import { Address, Network } from "@evolution-sdk/evolution" + +// Create a base address +const baseAddr = Address.Base.make({ + network: Network.Mainnet, + paymentCredential: paymentCred, + stakeCredential: stakeCred +}) +``` + +## Features + +- ๐Ÿ—๏ธ **Address Utilities** - Create and validate all Cardano address types +- ๐Ÿ” **Cryptographic Primitives** - Ed25519 signatures, VRF, KES +- ๐Ÿ“ฆ **CBOR Encoding** - RFC 8949 compliant CBOR implementation +- ๐Ÿ›๏ธ **Governance** - DRep, committee, and voting procedure support +- ๐ŸŒ **Network Configuration** - Support for all Cardano networks +- ๐Ÿช™ **Native Tokens** - Multi-asset and minting utilities + +## Architecture + +Evolution SDK is designed around functional programming principles: + +- **Immutable Data Structures** - All data types are immutable by default +- **Composable Operations** - Functions can be easily composed and chained +- **Error Handling** - Leverages Effect-TS for robust error management +- **Type Safety** - Comprehensive TypeScript definitions prevent runtime errors diff --git a/docs/pages/reference/_meta.json b/docs/pages/reference/_meta.json new file mode 100644 index 00000000..70e7367d --- /dev/null +++ b/docs/pages/reference/_meta.json @@ -0,0 +1,4 @@ +{ + "index": "Overview", + "modules": "Modules" +} \ No newline at end of file diff --git a/docs/pages/reference/index.mdx b/docs/pages/reference/index.mdx new file mode 100644 index 00000000..d77a4411 --- /dev/null +++ b/docs/pages/reference/index.mdx @@ -0,0 +1,4 @@ +--- +title: Home +nav_order: 1 +--- diff --git a/docs/pages/reference/modules/_config.yml b/docs/pages/reference/modules/_config.yml new file mode 100644 index 00000000..f3cae7a8 --- /dev/null +++ b/docs/pages/reference/modules/_config.yml @@ -0,0 +1,9 @@ +remote_theme: mikearnaldi/docgen-template + +# Enable or disable the site search +search_enabled: true + +# Aux links for the upper right navigation +aux_links: +"@evolution-sdk/evolution on GitHub": + - "https://github.com/no-witness-labs/evolution-sdk" diff --git a/docs/pages/reference/modules/_meta.json b/docs/pages/reference/modules/_meta.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/docs/pages/reference/modules/_meta.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/docs/pages/reference/modules/index.mdx b/docs/pages/reference/modules/index.mdx new file mode 100644 index 00000000..d77a4411 --- /dev/null +++ b/docs/pages/reference/modules/index.mdx @@ -0,0 +1,4 @@ +--- +title: Home +nav_order: 1 +--- diff --git a/docs/pages/reference/modules/modules/Address.mdx b/docs/pages/reference/modules/modules/Address.mdx new file mode 100644 index 00000000..4ee830e2 --- /dev/null +++ b/docs/pages/reference/modules/modules/Address.mdx @@ -0,0 +1,367 @@ +--- +title: Address.ts +nav_order: 1 +parent: Modules +--- + +## Address overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [model](#model) + - [Address](#address) + - [Address (type alias)](#address-type-alias) + - [AddressError (class)](#addresserror-class) +- [schema](#schema) + - [FromBech32](#frombech32) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) +- [testing](#testing) + - [generator](#generator) +- [utils](#utils) + - [equals](#equals) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for addresses. + +**Signature** + +```ts +export declare const Codec: { + Encode: { + bech32: ( + input: + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + ) => string & Brand<"Bech32"> + hex: ( + input: + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + ) => string + bytes: ( + input: + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + ) => any + } + Decode: { + bech32: ( + input: string & Brand<"Bech32"> + ) => + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + hex: ( + input: string + ) => + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + bytes: ( + input: any + ) => + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + } + EncodeEffect: { + bech32: ( + input: + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + ) => Effect.Effect, InstanceType> + hex: ( + input: + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + ) => Effect.Effect> + bytes: ( + input: + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + ) => Effect.Effect> + } + DecodeEffect: { + bech32: ( + input: string & Brand<"Bech32"> + ) => Effect.Effect< + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress, + InstanceType + > + hex: ( + input: string + ) => Effect.Effect< + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress, + InstanceType + > + bytes: ( + input: any + ) => Effect.Effect< + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress, + InstanceType + > + } + EncodeEither: { + bech32: ( + input: + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + ) => Either, InstanceType> + hex: ( + input: + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + ) => Either> + bytes: ( + input: + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + ) => Either> + } + DecodeEither: { + bech32: ( + input: string & Brand<"Bech32"> + ) => Either< + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress, + InstanceType + > + hex: ( + input: string + ) => Either< + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress, + InstanceType + > + bytes: ( + input: any + ) => Either< + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress, + InstanceType + > + } +} +``` + +Added in v2.0.0 + +# model + +## Address + +Union type representing all possible address types. + +**Signature** + +```ts +export declare const Address: Schema.Union< + [ + typeof BaseAddress.BaseAddress, + typeof EnterpriseAddress.EnterpriseAddress, + typeof PointerAddress.PointerAddress, + typeof RewardAccount.RewardAccount, + typeof ByronAddress.ByronAddress + ] +> +``` + +Added in v2.0.0 + +## Address (type alias) + +Type representing an address. + +**Signature** + +```ts +export type Address = typeof Address.Type +``` + +Added in v2.0.0 + +## AddressError (class) + +Error thrown when address operations fail + +**Signature** + +```ts +export declare class AddressError +``` + +Added in v2.0.0 + +# schema + +## FromBech32 + +Schema for encoding/decoding addresses as Bech32 strings. + +**Signature** + +```ts +export declare const FromBech32: Schema.transformOrFail< + Schema.SchemaClass, string & Brand<"Bech32">, never>, + Schema.Union< + [ + typeof BaseAddress.BaseAddress, + typeof EnterpriseAddress.EnterpriseAddress, + typeof PointerAddress.PointerAddress, + typeof RewardAccount.RewardAccount, + typeof ByronAddress.ByronAddress + ] + >, + never +> +``` + +Added in v2.0.0 + +## FromBytes + +Schema for encoding/decoding addresses as bytes. + +**Signature** + +```ts +export declare const FromBytes: Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.Union< + [ + typeof BaseAddress.BaseAddress, + typeof EnterpriseAddress.EnterpriseAddress, + typeof PointerAddress.PointerAddress, + typeof RewardAccount.RewardAccount, + typeof ByronAddress.ByronAddress + ] + >, + never +> +``` + +Added in v2.0.0 + +## FromHex + +Schema for encoding/decoding addresses as hex strings. + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.Union< + [ + typeof BaseAddress.BaseAddress, + typeof EnterpriseAddress.EnterpriseAddress, + typeof PointerAddress.PointerAddress, + typeof RewardAccount.RewardAccount, + typeof ByronAddress.ByronAddress + ] + >, + never + > +> +``` + +Added in v2.0.0 + +# testing + +## generator + +FastCheck generator for addresses. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary< + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress +> +``` + +Added in v2.0.0 + +# utils + +## equals + +Checks if two addresses are equal. + +**Signature** + +```ts +export declare const equals: (a: Address, b: Address) => boolean +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/AddressDetails.mdx b/docs/pages/reference/modules/modules/AddressDetails.mdx new file mode 100644 index 00000000..0d805c57 --- /dev/null +++ b/docs/pages/reference/modules/modules/AddressDetails.mdx @@ -0,0 +1,96 @@ +--- +title: AddressDetails.ts +nav_order: 2 +parent: Modules +--- + +## AddressDetails overview + +--- + +

Table of contents

+ +- [schemas](#schemas) + - [AddressDetails (class)](#addressdetails-class) +- [utils](#utils) + - [AddressDetailsError (class)](#addressdetailserror-class) + - [Codec](#codec) + - [FromBech32](#frombech32) + - [FromHex](#fromhex) + +--- + +# schemas + +## AddressDetails (class) + +Pointer address with payment credential and pointer to stake registration + +**Signature** + +```ts +export declare class AddressDetails +``` + +Added in v2.0.0 + +# utils + +## AddressDetailsError (class) + +**Signature** + +```ts +export declare class AddressDetailsError +``` + +## Codec + +**Signature** + +```ts +export declare const Codec: { + Encode: { bech32: (input: AddressDetails) => string & Brand<"Bech32">; hex: (input: AddressDetails) => string } + Decode: { bech32: (input: string & Brand<"Bech32">) => AddressDetails; hex: (input: string) => AddressDetails } + EncodeEffect: { + bech32: (input: AddressDetails) => Effect.Effect, InstanceType> + hex: (input: AddressDetails) => Effect.Effect> + } + DecodeEffect: { + bech32: (input: string & Brand<"Bech32">) => Effect.Effect> + hex: (input: string) => Effect.Effect> + } + EncodeEither: { + bech32: (input: AddressDetails) => Either, InstanceType> + hex: (input: AddressDetails) => Either> + } + DecodeEither: { + bech32: (input: string & Brand<"Bech32">) => Either> + hex: (input: string) => Either> + } +} +``` + +## FromBech32 + +**Signature** + +```ts +export declare const FromBech32: Schema.transformOrFail< + Schema.SchemaClass, string & Brand<"Bech32">, never>, + typeof AddressDetails, + never +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transformOrFail< + Schema.refine, + typeof AddressDetails, + never +> +``` diff --git a/docs/pages/reference/modules/modules/AddressTag.mdx b/docs/pages/reference/modules/modules/AddressTag.mdx new file mode 100644 index 00000000..03bbe158 --- /dev/null +++ b/docs/pages/reference/modules/modules/AddressTag.mdx @@ -0,0 +1,42 @@ +--- +title: AddressTag.ts +nav_order: 3 +parent: Modules +--- + +## AddressTag overview + +--- + +

Table of contents

+ +- [model](#model) + - [AddressTag (type alias)](#addresstag-type-alias) + - [AddressTagError (class)](#addresstagerror-class) + +--- + +# model + +## AddressTag (type alias) + +Address header kind - used to determine the type of address from its header +Following CIP-0019 address types + +**Signature** + +```ts +export type AddressTag = "Base" | "Enterprise" | "Pointer" | "Reward" | "Byron" +``` + +Added in v2.0.0 + +## AddressTagError (class) + +**Signature** + +```ts +export declare class AddressTagError +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/Anchor.mdx b/docs/pages/reference/modules/modules/Anchor.mdx new file mode 100644 index 00000000..ac3db7bb --- /dev/null +++ b/docs/pages/reference/modules/modules/Anchor.mdx @@ -0,0 +1,202 @@ +--- +title: Anchor.ts +nav_order: 4 +parent: Modules +--- + +## Anchor overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [make](#make) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [AnchorError (class)](#anchorerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [Anchor (class)](#anchor-class) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [FromCDDL](#fromcddl) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## make + +Create an Anchor from a URL string and hash string. + +**Signature** + +```ts +export declare const make: (anchorUrl: string, anchorDataHash: string) => Anchor +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two Anchor instances are equal. + +**Signature** + +```ts +export declare const equals: (self: Anchor, that: Anchor) => boolean +``` + +Added in v2.0.0 + +# errors + +## AnchorError (class) + +Error class for Anchor related operations. + +**Signature** + +```ts +export declare class AnchorError +``` + +Added in v2.0.0 + +# generators + +## generator + +FastCheck generator for Anchor instances. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## Anchor (class) + +Schema for Anchor representing an anchor with URL and data hash. +anchor = [anchor_url: url, anchor_data_hash: Bytes32] + +**Signature** + +```ts +export declare class Anchor +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for Anchor. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for Anchor. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for Anchor as tuple structure. +anchor = [anchor_url: url, anchor_data_hash: Bytes32] + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: Anchor) => any; cborHex: (input: Anchor) => string } + Decode: { cborBytes: (input: any) => Anchor; cborHex: (input: string) => Anchor } + EncodeEffect: { + cborBytes: (input: Anchor) => Effect.Effect> + cborHex: (input: Anchor) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: Anchor) => Either> + cborHex: (input: Anchor) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/docs/pages/reference/modules/modules/AssetName.mdx b/docs/pages/reference/modules/modules/AssetName.mdx new file mode 100644 index 00000000..6f6f49b1 --- /dev/null +++ b/docs/pages/reference/modules/modules/AssetName.mdx @@ -0,0 +1,167 @@ +--- +title: AssetName.ts +nav_order: 5 +parent: Modules +--- + +## AssetName overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [AssetNameError (class)](#assetnameerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [AssetName](#assetname) +- [schemas](#schemas) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) +- [utils](#utils) + - [AssetName (type alias)](#assetname-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for AssetName encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"AssetName">) => any; hex: (input: string & Brand<"AssetName">) => string } + Decode: { bytes: (input: any) => string & Brand<"AssetName">; hex: (input: string) => string & Brand<"AssetName"> } + EncodeEffect: { + bytes: (input: string & Brand<"AssetName">) => Effect> + hex: (input: string & Brand<"AssetName">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"AssetName">) => Either> + hex: (input: string & Brand<"AssetName">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two AssetName instances are equal. + +**Signature** + +```ts +export declare const equals: (a: AssetName, b: AssetName) => boolean +``` + +Added in v2.0.0 + +# errors + +## AssetNameError (class) + +Error class for AssetName related operations. + +**Signature** + +```ts +export declare class AssetNameError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random AssetName. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# model + +## AssetName + +Schema for AssetName representing a native asset identifier. +Asset names are limited to 32 bytes (0-64 hex characters). + +**Signature** + +```ts +export declare const AssetName: Schema.brand< + Schema.refine>, + "AssetName" +> +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +Schema for encoding/decoding AssetName as bytes. + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "AssetName"> +> +``` + +Added in v2.0.0 + +## FromHex + +Schema for encoding/decoding AssetName as hex strings. + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "AssetName"> +> +``` + +Added in v2.0.0 + +# utils + +## AssetName (type alias) + +**Signature** + +```ts +export type AssetName = typeof AssetName.Type +``` diff --git a/docs/pages/reference/modules/modules/AuxiliaryDataHash.mdx b/docs/pages/reference/modules/modules/AuxiliaryDataHash.mdx new file mode 100644 index 00000000..e4a9317e --- /dev/null +++ b/docs/pages/reference/modules/modules/AuxiliaryDataHash.mdx @@ -0,0 +1,169 @@ +--- +title: AuxiliaryDataHash.ts +nav_order: 6 +parent: Modules +--- + +## AuxiliaryDataHash overview + +Auxiliary Data Hash module - provides an alias for Bytes32 specialized for auxiliary data hashing. + +In Cardano, auxiliary_data_hash = Bytes32, representing a 32-byte hash +used for auxiliary data (metadata) attached to transactions. + +Added in v2.0.0 + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [AuxiliaryDataHashError (class)](#auxiliarydatahasherror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [AuxiliaryDataHash](#auxiliarydatahash) +- [utils](#utils) + - [AuxiliaryDataHash (type alias)](#auxiliarydatahash-type-alias) + - [BytesSchema](#bytesschema) + - [HexSchema](#hexschema) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for AuxiliaryDataHash encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { + bytes: (input: string & Brand<"AuxiliaryDataHash">) => any + hex: (input: string & Brand<"AuxiliaryDataHash">) => string + } + Decode: { + bytes: (input: any) => string & Brand<"AuxiliaryDataHash"> + hex: (input: string) => string & Brand<"AuxiliaryDataHash"> + } + EncodeEffect: { + bytes: (input: string & Brand<"AuxiliaryDataHash">) => Effect> + hex: (input: string & Brand<"AuxiliaryDataHash">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"AuxiliaryDataHash">) => Either> + hex: (input: string & Brand<"AuxiliaryDataHash">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two AuxiliaryDataHash instances are equal. + +**Signature** + +```ts +export declare const equals: (a: AuxiliaryDataHash, b: AuxiliaryDataHash) => boolean +``` + +Added in v2.0.0 + +# errors + +## AuxiliaryDataHashError (class) + +Error class for AuxiliaryDataHash related operations. + +**Signature** + +```ts +export declare class AuxiliaryDataHashError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random AuxiliaryDataHash. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## AuxiliaryDataHash + +Schema for AuxiliaryDataHash representing auxiliary data hashes. +auxiliary_data_hash = Bytes32 + +**Signature** + +```ts +export declare const AuxiliaryDataHash: Schema.brand< + Schema.refine>, + "AuxiliaryDataHash" +> +``` + +Added in v2.0.0 + +# utils + +## AuxiliaryDataHash (type alias) + +**Signature** + +```ts +export type AuxiliaryDataHash = typeof AuxiliaryDataHash.Type +``` + +## BytesSchema + +**Signature** + +```ts +export declare const BytesSchema: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "AuxiliaryDataHash"> +> +``` + +## HexSchema + +**Signature** + +```ts +export declare const HexSchema: Schema.transform< + Schema.refine>, + Schema.brand>, "AuxiliaryDataHash"> +> +``` diff --git a/docs/pages/reference/modules/modules/BaseAddress.mdx b/docs/pages/reference/modules/modules/BaseAddress.mdx new file mode 100644 index 00000000..21f72667 --- /dev/null +++ b/docs/pages/reference/modules/modules/BaseAddress.mdx @@ -0,0 +1,136 @@ +--- +title: BaseAddress.ts +nav_order: 7 +parent: Modules +--- + +## BaseAddress overview + +--- + +

Table of contents

+ +- [equality](#equality) + - [equals](#equals) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [BaseAddress (class)](#baseaddress-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) +- [utils](#utils) + - [BaseAddressError (class)](#baseaddresserror-class) + - [Codec](#codec) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + +--- + +# equality + +## equals + +Check if two BaseAddress instances are equal. + +**Signature** + +```ts +export declare const equals: (a: BaseAddress, b: BaseAddress) => boolean +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random BaseAddress. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# schemas + +## BaseAddress (class) + +Base address with both payment and staking credentials + +**Signature** + +```ts +export declare class BaseAddress +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +# utils + +## BaseAddressError (class) + +**Signature** + +```ts +export declare class BaseAddressError +``` + +## Codec + +**Signature** + +```ts +export declare const Codec: { + Encode: { hex: (input: BaseAddress) => string; bytes: (input: BaseAddress) => any } + Decode: { hex: (input: string) => BaseAddress; bytes: (input: any) => BaseAddress } + EncodeEffect: { + hex: (input: BaseAddress) => Effect.Effect> + bytes: (input: BaseAddress) => Effect.Effect> + } + DecodeEffect: { + hex: (input: string) => Effect.Effect> + bytes: (input: any) => Effect.Effect> + } + EncodeEither: { + hex: (input: BaseAddress) => Either> + bytes: (input: BaseAddress) => Either> + } + DecodeEither: { + hex: (input: string) => Either> + bytes: (input: any) => Either> + } +} +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transformOrFail< + Schema.filter, + typeof BaseAddress, + never +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transformOrFail, typeof BaseAddress, never> +> +``` diff --git a/docs/pages/reference/modules/modules/Bech32.mdx b/docs/pages/reference/modules/modules/Bech32.mdx new file mode 100644 index 00000000..9dc8461b --- /dev/null +++ b/docs/pages/reference/modules/modules/Bech32.mdx @@ -0,0 +1,60 @@ +--- +title: Bech32.ts +nav_order: 8 +parent: Modules +--- + +## Bech32 overview + +--- + +

Table of contents

+ +- [model](#model) + - [Bech32Error (class)](#bech32error-class) +- [utils](#utils) + - [Bech32 (type alias)](#bech32-type-alias) + - [Bech32Schema](#bech32schema) + - [FromBytes](#frombytes) + +--- + +# model + +## Bech32Error (class) + +**Signature** + +```ts +export declare class Bech32Error +``` + +Added in v2.0.0 + +# utils + +## Bech32 (type alias) + +**Signature** + +```ts +export type Bech32 = typeof Bech32Schema.Type +``` + +## Bech32Schema + +**Signature** + +```ts +export declare const Bech32Schema: Schema.brand +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: ( + prefix?: string +) => Schema.transformOrFail, never> +``` diff --git a/docs/pages/reference/modules/modules/BigInt.mdx b/docs/pages/reference/modules/modules/BigInt.mdx new file mode 100644 index 00000000..de3c9929 --- /dev/null +++ b/docs/pages/reference/modules/modules/BigInt.mdx @@ -0,0 +1,187 @@ +--- +title: BigInt.ts +nav_order: 9 +parent: Modules +--- + +## BigInt overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [bigNInt](#bignint) + - [bigUInt](#biguint) + - [int](#int) +- [errors](#errors) + - [BigIntError (class)](#biginterror-class) +- [model](#model) + - [BigInt (type alias)](#bigint-type-alias) + - [BigNInt (type alias)](#bignint-type-alias) + - [BigUInt (type alias)](#biguint-type-alias) +- [schemas](#schemas) + - [BigIntSchema](#bigintschema) + - [BigNIntSchema](#bignintschema) + - [BigUIntSchema](#biguintschema) +- [utilities](#utilities) + - [match](#match) + +--- + +# constructors + +## bigNInt + +Creates a big negative integer from bytes + +**Signature** + +```ts +export declare const bigNInt: (bytes: Uint8Array) => BigInt +``` + +Added in v2.0.0 + +## bigUInt + +Creates a big unsigned integer from bytes + +**Signature** + +```ts +export declare const bigUInt: (bytes: Uint8Array) => BigInt +``` + +Added in v2.0.0 + +## int + +Creates an integer value + +**Signature** + +```ts +export declare const int: (value: number) => BigInt +``` + +Added in v2.0.0 + +# errors + +## BigIntError (class) + +Error class for BigInt related operations. + +**Signature** + +```ts +export declare class BigIntError +``` + +Added in v2.0.0 + +# model + +## BigInt (type alias) + +Type alias for BigInt. + +**Signature** + +```ts +export type BigInt = typeof BigIntSchema.Type +``` + +Added in v2.0.0 + +## BigNInt (type alias) + +Type alias for BigNInt. + +**Signature** + +```ts +export type BigNInt = typeof BigNIntSchema.Type +``` + +Added in v2.0.0 + +## BigUInt (type alias) + +Type alias for BigUInt. + +**Signature** + +```ts +export type BigUInt = typeof BigUIntSchema.Type +``` + +Added in v2.0.0 + +# schemas + +## BigIntSchema + +BigInt schema based on Conway CDDL specification + +CDDL: big_int = int/ big_uint/ big_nint + +**Signature** + +```ts +export declare const BigIntSchema: Schema.Union< + [ + Schema.TaggedStruct<"Int", { value: typeof Schema.Number }>, + Schema.TaggedStruct<"BigUInt", { bytes: typeof Schema.Uint8ArrayFromSelf }>, + Schema.TaggedStruct<"BigNInt", { bytes: typeof Schema.Uint8ArrayFromSelf }> + ] +> +``` + +Added in v2.0.0 + +## BigNIntSchema + +BigNInt schema based on Conway CDDL specification + +CDDL: big_nint = #6.3(bounded_bytes) + +**Signature** + +```ts +export declare const BigNIntSchema: Schema.TaggedStruct<"BigNInt", { bytes: typeof Schema.Uint8ArrayFromSelf }> +``` + +Added in v2.0.0 + +## BigUIntSchema + +BigUInt schema based on Conway CDDL specification + +CDDL: big_uint = #6.2(bounded_bytes) + +**Signature** + +```ts +export declare const BigUIntSchema: Schema.TaggedStruct<"BigUInt", { bytes: typeof Schema.Uint8ArrayFromSelf }> +``` + +Added in v2.0.0 + +# utilities + +## match + +Pattern matching helper for BigInt types + +**Signature** + +```ts +export declare const match: ( + bigInt: BigInt, + cases: { Int: (value: number) => T; BigUInt: (bytes: Uint8Array) => T; BigNInt: (bytes: Uint8Array) => T } +) => T +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/Block.mdx b/docs/pages/reference/modules/modules/Block.mdx new file mode 100644 index 00000000..d1af5664 --- /dev/null +++ b/docs/pages/reference/modules/modules/Block.mdx @@ -0,0 +1,59 @@ +--- +title: Block.ts +nav_order: 10 +parent: Modules +--- + +## Block overview + +--- + +

Table of contents

+ +- [model](#model) + - [BlockClass (class)](#blockclass-class) +- [utils](#utils) + - [Block (type alias)](#block-type-alias) + +--- + +# model + +## BlockClass (class) + +Block based on Conway CDDL specification + +``` +CDDL: block = + [ header + , transaction_bodies : [* transaction_body] + , transaction_witness_sets : [* transaction_witness_set] + , auxiliary_data_set : {* transaction_index => auxiliary_data} + , invalid_transactions : [* transaction_index] + ] +``` + +Valid blocks must also satisfy the following two constraints: + +1. the length of transaction_bodies and transaction_witness_sets + must be the same +2. every transaction_index must be strictly smaller than the + length of transaction_bodies + +**Signature** + +```ts +export declare class BlockClass +``` + +Added in v2.0.0 + +# utils + +## Block (type alias) + +**Signature** + +```ts +export type Block = Schema.Schema.Type +``` diff --git a/docs/pages/reference/modules/modules/BlockBodyHash.mdx b/docs/pages/reference/modules/modules/BlockBodyHash.mdx new file mode 100644 index 00000000..7b9071b4 --- /dev/null +++ b/docs/pages/reference/modules/modules/BlockBodyHash.mdx @@ -0,0 +1,163 @@ +--- +title: BlockBodyHash.ts +nav_order: 11 +parent: Modules +--- + +## BlockBodyHash overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [BlockBodyHashError (class)](#blockbodyhasherror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [BlockBodyHash](#blockbodyhash) +- [utils](#utils) + - [BlockBodyHash (type alias)](#blockbodyhash-type-alias) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for BlockBodyHash encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { + bytes: (input: string & Brand<"BlockBodyHash">) => any + hex: (input: string & Brand<"BlockBodyHash">) => string + } + Decode: { + bytes: (input: any) => string & Brand<"BlockBodyHash"> + hex: (input: string) => string & Brand<"BlockBodyHash"> + } + EncodeEffect: { + bytes: (input: string & Brand<"BlockBodyHash">) => Effect> + hex: (input: string & Brand<"BlockBodyHash">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"BlockBodyHash">) => Either> + hex: (input: string & Brand<"BlockBodyHash">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two BlockBodyHash instances are equal. + +**Signature** + +```ts +export declare const equals: (a: BlockBodyHash, b: BlockBodyHash) => boolean +``` + +Added in v2.0.0 + +# errors + +## BlockBodyHashError (class) + +Error class for BlockBodyHash related operations. + +**Signature** + +```ts +export declare class BlockBodyHashError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random BlockBodyHash. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## BlockBodyHash + +Schema for BlockBodyHash representing a block body hash. +block_body_hash = Bytes32 +Follows the Conway-era CDDL specification. + +**Signature** + +```ts +export declare const BlockBodyHash: Schema.brand< + Schema.refine>, + "BlockBodyHash" +> +``` + +Added in v2.0.0 + +# utils + +## BlockBodyHash (type alias) + +**Signature** + +```ts +export type BlockBodyHash = typeof BlockBodyHash.Type +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "BlockBodyHash"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "BlockBodyHash"> +> +``` diff --git a/docs/pages/reference/modules/modules/BlockHeaderHash.mdx b/docs/pages/reference/modules/modules/BlockHeaderHash.mdx new file mode 100644 index 00000000..3366161f --- /dev/null +++ b/docs/pages/reference/modules/modules/BlockHeaderHash.mdx @@ -0,0 +1,163 @@ +--- +title: BlockHeaderHash.ts +nav_order: 12 +parent: Modules +--- + +## BlockHeaderHash overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [BlockHeaderHashError (class)](#blockheaderhasherror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [BlockHeaderHash](#blockheaderhash) +- [utils](#utils) + - [BlockHeaderHash (type alias)](#blockheaderhash-type-alias) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for BlockHeaderHash encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { + bytes: (input: string & Brand<"BlockHeaderHash">) => any + hex: (input: string & Brand<"BlockHeaderHash">) => string + } + Decode: { + bytes: (input: any) => string & Brand<"BlockHeaderHash"> + hex: (input: string) => string & Brand<"BlockHeaderHash"> + } + EncodeEffect: { + bytes: (input: string & Brand<"BlockHeaderHash">) => Effect> + hex: (input: string & Brand<"BlockHeaderHash">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"BlockHeaderHash">) => Either> + hex: (input: string & Brand<"BlockHeaderHash">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two BlockHeaderHash instances are equal. + +**Signature** + +```ts +export declare const equals: (a: BlockHeaderHash, b: BlockHeaderHash) => boolean +``` + +Added in v2.0.0 + +# errors + +## BlockHeaderHashError (class) + +Error class for BlockHeaderHash related operations. + +**Signature** + +```ts +export declare class BlockHeaderHashError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random BlockHeaderHash. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## BlockHeaderHash + +Schema for BlockHeaderHash representing a block header hash. +block_header_hash = Bytes32 +Follows the Conway-era CDDL specification. + +**Signature** + +```ts +export declare const BlockHeaderHash: Schema.brand< + Schema.refine>, + "BlockHeaderHash" +> +``` + +Added in v2.0.0 + +# utils + +## BlockHeaderHash (type alias) + +**Signature** + +```ts +export type BlockHeaderHash = typeof BlockHeaderHash.Type +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "BlockHeaderHash"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "BlockHeaderHash"> +> +``` diff --git a/docs/pages/reference/modules/modules/BoundedBytes.mdx b/docs/pages/reference/modules/modules/BoundedBytes.mdx new file mode 100644 index 00000000..2bdbcd8c --- /dev/null +++ b/docs/pages/reference/modules/modules/BoundedBytes.mdx @@ -0,0 +1,44 @@ +--- +title: BoundedBytes.ts +nav_order: 13 +parent: Modules +--- + +## BoundedBytes overview + +--- + +

Table of contents

+ +- [schemas](#schemas) + - [BoundedBytesSchema](#boundedbytesschema) + +--- + +# schemas + +## BoundedBytesSchema + +BoundedBytes schema based on Conway CDDL specification + +CDDL: bounded_bytes = bytes .size (0 .. 64) + +The real bounded_bytes does not have this limit. it instead has +a different limit which cannot be expressed in CDDL. + +The limit is as follows: + +- bytes with a definite-length encoding are limited to size 0..64 +- for bytes with an indefinite-length CBOR encoding, each chunk is + limited to size 0..64 + ( reminder: in CBOR, the indefinite-length encoding of + bytestrings consists of a token #2.31 followed by a sequence + of definite-length encoded bytestrings and a stop code ) + +**Signature** + +```ts +export declare const BoundedBytesSchema: Schema.filter +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/ByronAddress.mdx b/docs/pages/reference/modules/modules/ByronAddress.mdx new file mode 100644 index 00000000..ac7ec193 --- /dev/null +++ b/docs/pages/reference/modules/modules/ByronAddress.mdx @@ -0,0 +1,51 @@ +--- +title: ByronAddress.ts +nav_order: 14 +parent: Modules +--- + +## ByronAddress overview + +--- + +

Table of contents

+ +- [schemas](#schemas) + - [ByronAddress (class)](#byronaddress-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) +- [utils](#utils) + - [BytesSchema](#bytesschema) + +--- + +# schemas + +## ByronAddress (class) + +Byron legacy address format + +**Signature** + +```ts +export declare class ByronAddress +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +# utils + +## BytesSchema + +**Signature** + +```ts +export declare const BytesSchema: Schema.transform +``` diff --git a/docs/pages/reference/modules/modules/Bytes.mdx b/docs/pages/reference/modules/modules/Bytes.mdx new file mode 100644 index 00000000..4213e460 --- /dev/null +++ b/docs/pages/reference/modules/modules/Bytes.mdx @@ -0,0 +1,159 @@ +--- +title: Bytes.ts +nav_order: 15 +parent: Modules +--- + +## Bytes overview + +--- + +

Table of contents

+ +- [predicates](#predicates) + - [isHexLenient](#ishexlenient) +- [schemas](#schemas) + - [FromBytesLenient](#frombyteslenient) + - [HexLenientSchema](#hexlenientschema) +- [utils](#utils) + - [BytesError (class)](#byteserror-class) + - [Codec](#codec) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [FromHexLenient](#fromhexlenient) + - [HexSchema](#hexschema) + - [isHex](#ishex) + +--- + +# predicates + +## isHexLenient + +Lenient version of isHex that allows empty strings. +Useful for PlutusData where empty byte arrays are valid. + +**Signature** + +```ts +export declare const isHexLenient: (input: string) => boolean +``` + +Added in v2.0.0 + +# schemas + +## FromBytesLenient + +Lenient version of FromBytes that allows empty byte arrays. +Useful for PlutusData where empty byte arrays are valid. + +**Signature** + +```ts +export declare const FromBytesLenient: Schema.transform< + typeof Schema.Uint8ArrayFromSelf, + Schema.refine +> +``` + +Added in v2.0.0 + +## HexLenientSchema + +Lenient hex schema that allows empty strings. +Useful for PlutusData where empty byte arrays are valid. + +**Signature** + +```ts +export declare const HexLenientSchema: Schema.refine +``` + +Added in v2.0.0 + +# utils + +## BytesError (class) + +**Signature** + +```ts +export declare class BytesError +``` + +## Codec + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string) => any; bytesLenient: (input: string) => any } + Decode: { bytes: (input: any) => string; bytesLenient: (input: any) => string } + EncodeEffect: { + bytes: (input: string) => Effect> + bytesLenient: (input: string) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect> + bytesLenient: (input: any) => Effect> + } + EncodeEither: { + bytes: (input: string) => Either> + bytesLenient: (input: string) => Either> + } + DecodeEither: { + bytes: (input: any) => Either> + bytesLenient: (input: any) => Either> + } +} +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + typeof Schema.Uint8ArrayFromSelf, + Schema.refine +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine, + typeof Schema.Uint8ArrayFromSelf +> +``` + +## FromHexLenient + +**Signature** + +```ts +export declare const FromHexLenient: Schema.transform< + Schema.refine, + typeof Schema.Uint8ArrayFromSelf +> +``` + +## HexSchema + +**Signature** + +```ts +export declare const HexSchema: Schema.refine +``` + +## isHex + +**Signature** + +```ts +export declare const isHex: (input: string) => boolean +``` diff --git a/docs/pages/reference/modules/modules/Bytes16.mdx b/docs/pages/reference/modules/modules/Bytes16.mdx new file mode 100644 index 00000000..5458bd80 --- /dev/null +++ b/docs/pages/reference/modules/modules/Bytes16.mdx @@ -0,0 +1,77 @@ +--- +title: Bytes16.ts +nav_order: 16 +parent: Modules +--- + +## Bytes16 overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [BYTES_LENGTH](#bytes_length) + - [BytesSchema](#bytesschema) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [HEX_LENGTH](#hex_length) + - [HexSchema](#hexschema) + +--- + +# utils + +## BYTES_LENGTH + +**Signature** + +```ts +export declare const BYTES_LENGTH: 16 +``` + +## BytesSchema + +**Signature** + +```ts +export declare const BytesSchema: Schema.filter +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.filter, + Schema.filter> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.filter>, + Schema.filter +> +``` + +## HEX_LENGTH + +**Signature** + +```ts +export declare const HEX_LENGTH: 32 +``` + +## HexSchema + +**Signature** + +```ts +export declare const HexSchema: Schema.filter> +``` diff --git a/docs/pages/reference/modules/modules/Bytes29.mdx b/docs/pages/reference/modules/modules/Bytes29.mdx new file mode 100644 index 00000000..acf10ef8 --- /dev/null +++ b/docs/pages/reference/modules/modules/Bytes29.mdx @@ -0,0 +1,65 @@ +--- +title: Bytes29.ts +nav_order: 17 +parent: Modules +--- + +## Bytes29 overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [BYTES_LENGTH](#bytes_length) + - [BytesFromHex](#bytesfromhex) + - [BytesSchema](#bytesschema) + - [HEX_LENGTH](#hex_length) + - [HexSchema](#hexschema) + +--- + +# utils + +## BYTES_LENGTH + +**Signature** + +```ts +export declare const BYTES_LENGTH: 29 +``` + +## BytesFromHex + +**Signature** + +```ts +export declare const BytesFromHex: Schema.transform< + Schema.filter>, + Schema.filter +> +``` + +## BytesSchema + +**Signature** + +```ts +export declare const BytesSchema: Schema.filter +``` + +## HEX_LENGTH + +**Signature** + +```ts +export declare const HEX_LENGTH: 58 +``` + +## HexSchema + +**Signature** + +```ts +export declare const HexSchema: Schema.filter> +``` diff --git a/docs/pages/reference/modules/modules/Bytes32.mdx b/docs/pages/reference/modules/modules/Bytes32.mdx new file mode 100644 index 00000000..ca210277 --- /dev/null +++ b/docs/pages/reference/modules/modules/Bytes32.mdx @@ -0,0 +1,170 @@ +--- +title: Bytes32.ts +nav_order: 18 +parent: Modules +--- + +## Bytes32 overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [schemas](#schemas) + - [BytesSchema](#bytesschema) + - [FromBytes](#frombytes) + - [FromVariableBytes](#fromvariablebytes) + - [HexSchema](#hexschema) + - [VariableBytesSchema](#variablebytesschema) + - [VariableHexSchema](#variablehexschema) +- [utils](#utils) + - [Bytes32Error (class)](#bytes32error-class) + - [Bytes32_BYTES_LENGTH](#bytes32_bytes_length) + - [Bytes32_HEX_LENGTH](#bytes32_hex_length) + +--- + +# encoding/decoding + +## Codec + +Codec for Bytes32 encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string) => any; variableBytes: (input: string) => any } + Decode: { bytes: (input: any) => string; variableBytes: (input: any) => string } + EncodeEffect: { + bytes: (input: string) => Effect> + variableBytes: (input: string) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect> + variableBytes: (input: any) => Effect> + } + EncodeEither: { + bytes: (input: string) => Either> + variableBytes: (input: string) => Either> + } + DecodeEither: { + bytes: (input: any) => Either> + variableBytes: (input: any) => Either> + } +} +``` + +Added in v2.0.0 + +# schemas + +## BytesSchema + +Schema for Bytes32 bytes with 32-byte length validation. + +**Signature** + +```ts +export declare const BytesSchema: Schema.refine +``` + +Added in v2.0.0 + +## FromBytes + +Schema transformer for Bytes32 that converts between hex strings and byte arrays. +Like Bytes.BytesSchema but with Bytes32-specific length validation. + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.refine, + Schema.refine> +> +``` + +Added in v2.0.0 + +## FromVariableBytes + +Schema transformer for variable-length data that converts between hex strings and byte arrays. +Works with 0 to 32 bytes (0 to 64 hex characters). + +**Signature** + +```ts +export declare const FromVariableBytes: Schema.transform< + Schema.refine, + Schema.refine> +> +``` + +Added in v2.0.0 + +## HexSchema + +Schema for Bytes32 hex strings with 64-character length validation. + +**Signature** + +```ts +export declare const HexSchema: Schema.refine> +``` + +Added in v2.0.0 + +## VariableBytesSchema + +Schema for variable-length byte arrays from 0 to 32 bytes. +Useful for asset names and other variable-length data structures. + +**Signature** + +```ts +export declare const VariableBytesSchema: Schema.refine +``` + +Added in v2.0.0 + +## VariableHexSchema + +Schema for variable-length hex strings from 0 to 64 characters (0 to 32 bytes). +Useful for asset names and other variable-length data structures. + +**Signature** + +```ts +export declare const VariableHexSchema: Schema.refine> +``` + +Added in v2.0.0 + +# utils + +## Bytes32Error (class) + +**Signature** + +```ts +export declare class Bytes32Error +``` + +## Bytes32_BYTES_LENGTH + +**Signature** + +```ts +export declare const Bytes32_BYTES_LENGTH: 32 +``` + +## Bytes32_HEX_LENGTH + +**Signature** + +```ts +export declare const Bytes32_HEX_LENGTH: 64 +``` diff --git a/docs/pages/reference/modules/modules/Bytes4.mdx b/docs/pages/reference/modules/modules/Bytes4.mdx new file mode 100644 index 00000000..683d1d96 --- /dev/null +++ b/docs/pages/reference/modules/modules/Bytes4.mdx @@ -0,0 +1,77 @@ +--- +title: Bytes4.ts +nav_order: 19 +parent: Modules +--- + +## Bytes4 overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [BYTES_LENGTH](#bytes_length) + - [BytesSchema](#bytesschema) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [HEX_LENGTH](#hex_length) + - [HexSchema](#hexschema) + +--- + +# utils + +## BYTES_LENGTH + +**Signature** + +```ts +export declare const BYTES_LENGTH: 4 +``` + +## BytesSchema + +**Signature** + +```ts +export declare const BytesSchema: Schema.filter +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.filter, + Schema.filter> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.filter>, + Schema.filter +> +``` + +## HEX_LENGTH + +**Signature** + +```ts +export declare const HEX_LENGTH: 8 +``` + +## HexSchema + +**Signature** + +```ts +export declare const HexSchema: Schema.filter> +``` diff --git a/docs/pages/reference/modules/modules/Bytes448.mdx b/docs/pages/reference/modules/modules/Bytes448.mdx new file mode 100644 index 00000000..20e531e9 --- /dev/null +++ b/docs/pages/reference/modules/modules/Bytes448.mdx @@ -0,0 +1,77 @@ +--- +title: Bytes448.ts +nav_order: 20 +parent: Modules +--- + +## Bytes448 overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [BYTES_LENGTH](#bytes_length) + - [BytesSchema](#bytesschema) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [HEX_LENGTH](#hex_length) + - [HexSchema](#hexschema) + +--- + +# utils + +## BYTES_LENGTH + +**Signature** + +```ts +export declare const BYTES_LENGTH: 448 +``` + +## BytesSchema + +**Signature** + +```ts +export declare const BytesSchema: Schema.filter +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.filter, + Schema.filter> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.filter>, + Schema.filter +> +``` + +## HEX_LENGTH + +**Signature** + +```ts +export declare const HEX_LENGTH: 896 +``` + +## HexSchema + +**Signature** + +```ts +export declare const HexSchema: Schema.filter> +``` diff --git a/docs/pages/reference/modules/modules/Bytes57.mdx b/docs/pages/reference/modules/modules/Bytes57.mdx new file mode 100644 index 00000000..69b922eb --- /dev/null +++ b/docs/pages/reference/modules/modules/Bytes57.mdx @@ -0,0 +1,65 @@ +--- +title: Bytes57.ts +nav_order: 21 +parent: Modules +--- + +## Bytes57 overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [BYTES_LENGTH](#bytes_length) + - [BytesFromHex](#bytesfromhex) + - [BytesSchema](#bytesschema) + - [HEX_LENGTH](#hex_length) + - [HexSchema](#hexschema) + +--- + +# utils + +## BYTES_LENGTH + +**Signature** + +```ts +export declare const BYTES_LENGTH: 57 +``` + +## BytesFromHex + +**Signature** + +```ts +export declare const BytesFromHex: Schema.transform< + Schema.filter>, + Schema.filter +> +``` + +## BytesSchema + +**Signature** + +```ts +export declare const BytesSchema: Schema.filter +``` + +## HEX_LENGTH + +**Signature** + +```ts +export declare const HEX_LENGTH: 114 +``` + +## HexSchema + +**Signature** + +```ts +export declare const HexSchema: Schema.filter> +``` diff --git a/docs/pages/reference/modules/modules/Bytes64.mdx b/docs/pages/reference/modules/modules/Bytes64.mdx new file mode 100644 index 00000000..4e14e1cb --- /dev/null +++ b/docs/pages/reference/modules/modules/Bytes64.mdx @@ -0,0 +1,77 @@ +--- +title: Bytes64.ts +nav_order: 22 +parent: Modules +--- + +## Bytes64 overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [BYTES_LENGTH](#bytes_length) + - [BytesSchema](#bytesschema) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [HEX_LENGTH](#hex_length) + - [HexSchema](#hexschema) + +--- + +# utils + +## BYTES_LENGTH + +**Signature** + +```ts +export declare const BYTES_LENGTH: 64 +``` + +## BytesSchema + +**Signature** + +```ts +export declare const BytesSchema: Schema.filter +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.filter, + Schema.filter> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.filter>, + Schema.filter +> +``` + +## HEX_LENGTH + +**Signature** + +```ts +export declare const HEX_LENGTH: 128 +``` + +## HexSchema + +**Signature** + +```ts +export declare const HexSchema: Schema.filter> +``` diff --git a/docs/pages/reference/modules/modules/Bytes80.mdx b/docs/pages/reference/modules/modules/Bytes80.mdx new file mode 100644 index 00000000..f5bd8865 --- /dev/null +++ b/docs/pages/reference/modules/modules/Bytes80.mdx @@ -0,0 +1,77 @@ +--- +title: Bytes80.ts +nav_order: 23 +parent: Modules +--- + +## Bytes80 overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [BYTES_LENGTH](#bytes_length) + - [BytesSchema](#bytesschema) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [HEX_LENGTH](#hex_length) + - [HexSchema](#hexschema) + +--- + +# utils + +## BYTES_LENGTH + +**Signature** + +```ts +export declare const BYTES_LENGTH: 80 +``` + +## BytesSchema + +**Signature** + +```ts +export declare const BytesSchema: Schema.filter +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.filter, + Schema.filter> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.filter>, + Schema.filter +> +``` + +## HEX_LENGTH + +**Signature** + +```ts +export declare const HEX_LENGTH: 160 +``` + +## HexSchema + +**Signature** + +```ts +export declare const HexSchema: Schema.filter> +``` diff --git a/docs/pages/reference/modules/modules/CBOR.mdx b/docs/pages/reference/modules/modules/CBOR.mdx new file mode 100644 index 00000000..555eb260 --- /dev/null +++ b/docs/pages/reference/modules/modules/CBOR.mdx @@ -0,0 +1,417 @@ +--- +title: CBOR.ts +nav_order: 24 +parent: Modules +--- + +## CBOR overview + +--- + +

Table of contents

+ +- [constants](#constants) + - [CANONICAL_OPTIONS](#canonical_options) + - [CBOR_ADDITIONAL_INFO](#cbor_additional_info) + - [CBOR_MAJOR_TYPE](#cbor_major_type) + - [CBOR_SIMPLE](#cbor_simple) + - [DEFAULT_OPTIONS](#default_options) +- [errors](#errors) + - [CBORError (class)](#cborerror-class) +- [model](#model) + - [CBOR (type alias)](#cbor-type-alias) + - [CodecOptions (type alias)](#codecoptions-type-alias) +- [schemas](#schemas) + - [CBORSchema](#cborschema) + - [FromBytes](#frombytes) + - [Integer](#integer) +- [transformation](#transformation) + - [match](#match) +- [utils](#utils) + - [ArraySchema](#arrayschema) + - [ByteArray](#bytearray) + - [FromHex](#FromHex) + - [Codec](#codec) + - [Float](#float) + - [MapSchema](#mapschema) + - [RecordSchema](#recordschema) + - [Simple](#simple) + - [Tag (class)](#tag-class) + - [Text](#text) + - [isArray](#isarray) + - [isByteArray](#isbytearray) + - [isInteger](#isinteger) + - [isMap](#ismap) + - [isRecord](#isrecord) + - [isTag](#istag) + +--- + +# constants + +## CANONICAL_OPTIONS + +Canonical CBOR encoding options (RFC 8949 Section 4.2.1) + +**Signature** + +```ts +export declare const CANONICAL_OPTIONS: CodecOptions +``` + +Added in v1.0.0 + +## CBOR_ADDITIONAL_INFO + +CBOR additional information constants + +**Signature** + +```ts +export declare const CBOR_ADDITIONAL_INFO: { + readonly DIRECT: 24 + readonly UINT16: 25 + readonly UINT32: 26 + readonly UINT64: 27 + readonly INDEFINITE: 31 +} +``` + +Added in v1.0.0 + +## CBOR_MAJOR_TYPE + +CBOR major types as constants + +**Signature** + +```ts +export declare const CBOR_MAJOR_TYPE: { + readonly UNSIGNED_INTEGER: 0 + readonly NEGATIVE_INTEGER: 1 + readonly BYTE_STRING: 2 + readonly TEXT_STRING: 3 + readonly ARRAY: 4 + readonly MAP: 5 + readonly TAG: 6 + readonly SIMPLE_FLOAT: 7 +} +``` + +Added in v1.0.0 + +## CBOR_SIMPLE + +Simple value constants for CBOR + +**Signature** + +```ts +export declare const CBOR_SIMPLE: { readonly FALSE: 20; readonly TRUE: 21; readonly NULL: 22; readonly UNDEFINED: 23 } +``` + +Added in v1.0.0 + +## DEFAULT_OPTIONS + +Default CBOR encoding options + +**Signature** + +```ts +export declare const DEFAULT_OPTIONS: CodecOptions +``` + +Added in v1.0.0 + +# errors + +## CBORError (class) + +Error class for CBOR value operations + +**Signature** + +```ts +export declare class CBORError +``` + +Added in v1.0.0 + +# model + +## CBOR (type alias) + +Type representing a CBOR value with simplified, non-tagged structure + +**Signature** + +```ts +export type CBOR = + | bigint // integers (both positive and negative) + | Uint8Array // byte strings + | string // text strings + | ReadonlyArray // arrays + | ReadonlyMap // maps + | { readonly [key: string]: CBOR } // record alternative to maps + | Tag // tagged values + | boolean // boolean values + | null // null value + | undefined // undefined value + | number +``` + +Added in v1.0.0 + +## CodecOptions (type alias) + +CBOR codec configuration options + +**Signature** + +```ts +export type CodecOptions = + | { + readonly mode: "canonical" + } + | { + readonly mode: "custom" + readonly useIndefiniteArrays: boolean + readonly useIndefiniteMaps: boolean + readonly useDefiniteForEmpty: boolean + readonly sortMapKeys: boolean + readonly useMinimalEncoding: boolean + } +``` + +Added in v1.0.0 + +# schemas + +## CBORSchema + +CBOR Value discriminated union schema representing all possible CBOR data types +Inspired by OCaml and Rust CBOR implementations + +**Signature** + +```ts +export declare const CBORSchema: Schema.Schema +``` + +Added in v1.0.0 + +## FromBytes + +Create a CBOR bytes schema with custom codec options + +**Signature** + +```ts +export declare const FromBytes: ( + options: CodecOptions +) => Schema.transformOrFail, never> +``` + +Added in v1.0.0 + +## Integer + +CBOR Value schema definitions for each major type + +**Signature** + +```ts +export declare const Integer: typeof Schema.BigIntFromSelf +``` + +Added in v1.0.0 + +# transformation + +## match + +Pattern matching utility for CBOR values + +**Signature** + +```ts +export declare const match: ( + value: CBOR, + patterns: { + integer: (value: bigint) => R + bytes: (value: Uint8Array) => R + text: (value: string) => R + array: (value: ReadonlyArray) => R + map: (value: ReadonlyMap) => R + record: (value: { readonly [key: string]: CBOR }) => R + tag: (tag: number, value: CBOR) => R + boolean: (value: boolean) => R + null: () => R + undefined: () => R + float: (value: number) => R + } +) => R +``` + +Added in v1.0.0 + +# utils + +## ArraySchema + +**Signature** + +```ts +export declare const ArraySchema: Schema.Array$> +``` + +## ByteArray + +**Signature** + +```ts +export declare const ByteArray: typeof Schema.Uint8ArrayFromSelf +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: ( + options: CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transformOrFail, never> +> +``` + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CodecOptions) => { + Encode: { cborBytes: (input: CBOR) => any; cborHex: (input: CBOR) => string } + Decode: { cborBytes: (input: any) => CBOR; cborHex: (input: string) => CBOR } + EncodeEffect: { + cborBytes: (input: CBOR) => Effect.Effect> + cborHex: (input: CBOR) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: CBOR) => Either> + cborHex: (input: CBOR) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` + +## Float + +**Signature** + +```ts +export declare const Float: typeof Schema.Number +``` + +## MapSchema + +**Signature** + +```ts +export declare const MapSchema: Schema.ReadonlyMapFromSelf< + Schema.suspend, + Schema.suspend +> +``` + +## RecordSchema + +**Signature** + +```ts +export declare const RecordSchema: Schema.Record$> +``` + +## Simple + +**Signature** + +```ts +export declare const Simple: Schema.Union<[typeof Schema.Boolean, typeof Schema.Null, typeof Schema.Undefined]> +``` + +## Tag (class) + +**Signature** + +```ts +export declare class Tag +``` + +## Text + +**Signature** + +```ts +export declare const Text: typeof Schema.String +``` + +## isArray + +**Signature** + +```ts +export declare const isArray: (u: unknown, overrideOptions?: ParseOptions | number) => u is readonly CBOR[] +``` + +## isByteArray + +**Signature** + +```ts +export declare const isByteArray: (u: unknown, overrideOptions?: ParseOptions | number) => u is any +``` + +## isInteger + +**Signature** + +```ts +export declare const isInteger: (u: unknown, overrideOptions?: ParseOptions | number) => u is bigint +``` + +## isMap + +**Signature** + +```ts +export declare const isMap: (u: unknown, overrideOptions?: ParseOptions | number) => u is ReadonlyMap +``` + +## isRecord + +**Signature** + +```ts +export declare const isRecord: ( + u: unknown, + overrideOptions?: ParseOptions | number +) => u is { readonly [x: string]: CBOR } +``` + +## isTag + +**Signature** + +```ts +export declare const isTag: (u: unknown, overrideOptions?: ParseOptions | number) => u is Tag +``` diff --git a/docs/pages/reference/modules/modules/Certificate.mdx b/docs/pages/reference/modules/modules/Certificate.mdx new file mode 100644 index 00000000..43ffc4e6 --- /dev/null +++ b/docs/pages/reference/modules/modules/Certificate.mdx @@ -0,0 +1,468 @@ +--- +title: Certificate.ts +nav_order: 25 +parent: Modules +--- + +## Certificate overview + +--- + +

Table of contents

+ +- [errors](#errors) + - [CertificateError (class)](#certificateerror-class) +- [model](#model) + - [Certificate (type alias)](#certificate-type-alias) +- [schemas](#schemas) + - [Certificate](#certificate) + +--- + +# errors + +## CertificateError (class) + +Error class for Certificate related operations. + +**Signature** + +```ts +export declare class CertificateError +``` + +Added in v2.0.0 + +# model + +## Certificate (type alias) + +Type alias for Certificate. + +**Signature** + +```ts +export type Certificate = typeof Certificate.Type +``` + +Added in v2.0.0 + +# schemas + +## Certificate + +Certificate union schema based on Conway CDDL specification + +CDDL: certificate = +[ +stake_registration +// stake_deregistration +// stake_delegation +// pool_registration +// pool_retirement +// reg_cert +// unreg_cert +// vote_deleg_cert +// stake_vote_deleg_cert +// stake_reg_deleg_cert +// vote_reg_deleg_cert +// stake_vote_reg_deleg_cert +// auth_committee_hot_cert +// resign_committee_cold_cert +// reg_drep_cert +// unreg_drep_cert +// update_drep_cert +] + +stake_registration = (0, stake_credential) +stake_deregistration = (1, stake_credential) +stake_delegation = (2, stake_credential, pool_keyhash) +pool_registration = (3, pool_params) +pool_retirement = (4, pool_keyhash, epoch_no) +reg_cert = (7, stake_credential, coin) +unreg_cert = (8, stake_credential, coin) +vote_deleg_cert = (9, stake_credential, drep) +stake_vote_deleg_cert = (10, stake_credential, pool_keyhash, drep) +stake_reg_deleg_cert = (11, stake_credential, pool_keyhash, coin) +vote_reg_deleg_cert = (12, stake_credential, drep, coin) +stake_vote_reg_deleg_cert = (13, stake_credential, pool_keyhash, drep, coin) +auth_committee_hot_cert = (14, committee_cold_credential, committee_hot_credential) +resign_committee_cold_cert = (15, committee_cold_credential, anchor/ nil) +reg_drep_cert = (16, drep_credential, coin, anchor/ nil) +unreg_drep_cert = (17, drep_credential, coin) +update_drep_cert = (18, drep_credential, anchor/ nil) + +**Signature** + +```ts +export declare const Certificate: Schema.Union< + [ + Schema.TaggedStruct< + "StakeRegistration", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + } + >, + Schema.TaggedStruct< + "StakeDeregistration", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + } + >, + Schema.TaggedStruct< + "StakeDelegation", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + poolKeyHash: Schema.brand>, "PoolKeyHash"> + } + >, + Schema.TaggedStruct< + "PoolRetirement", + { + poolKeyHash: Schema.brand>, "PoolKeyHash"> + epoch: Schema.brand, "EpochNo"> + } + >, + Schema.TaggedStruct< + "RegCert", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + coin: Schema.refine + } + >, + Schema.TaggedStruct< + "UnregCert", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + coin: Schema.refine + } + >, + Schema.TaggedStruct< + "VoteDelegCert", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + drep: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHashDRep", + { keyHash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHashDRep", + { + scriptHash: Schema.brand< + Schema.refine>, + "ScriptHash" + > + } + >, + Schema.TaggedStruct<"AlwaysAbstainDRep", {}>, + Schema.TaggedStruct<"AlwaysNoConfidenceDRep", {}> + ] + > + } + >, + Schema.TaggedStruct< + "StakeVoteDelegCert", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + poolKeyHash: Schema.brand>, "PoolKeyHash"> + drep: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHashDRep", + { keyHash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHashDRep", + { + scriptHash: Schema.brand< + Schema.refine>, + "ScriptHash" + > + } + >, + Schema.TaggedStruct<"AlwaysAbstainDRep", {}>, + Schema.TaggedStruct<"AlwaysNoConfidenceDRep", {}> + ] + > + } + >, + Schema.TaggedStruct< + "StakeRegDelegCert", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + poolKeyHash: Schema.brand>, "PoolKeyHash"> + coin: Schema.refine + } + >, + Schema.TaggedStruct< + "VoteRegDelegCert", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + drep: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHashDRep", + { keyHash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHashDRep", + { + scriptHash: Schema.brand< + Schema.refine>, + "ScriptHash" + > + } + >, + Schema.TaggedStruct<"AlwaysAbstainDRep", {}>, + Schema.TaggedStruct<"AlwaysNoConfidenceDRep", {}> + ] + > + coin: Schema.refine + } + >, + Schema.TaggedStruct< + "StakeVoteRegDelegCert", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + poolKeyHash: Schema.brand>, "PoolKeyHash"> + drep: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHashDRep", + { keyHash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHashDRep", + { + scriptHash: Schema.brand< + Schema.refine>, + "ScriptHash" + > + } + >, + Schema.TaggedStruct<"AlwaysAbstainDRep", {}>, + Schema.TaggedStruct<"AlwaysNoConfidenceDRep", {}> + ] + > + coin: Schema.refine + } + >, + Schema.TaggedStruct< + "AuthCommitteeHotCert", + { + committeeColdCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + committeeHotCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + } + >, + Schema.TaggedStruct< + "ResignCommitteeColdCert", + { + committeeColdCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + anchor: Schema.NullishOr + } + >, + Schema.TaggedStruct< + "RegDrepCert", + { + drepCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + coin: Schema.refine + anchor: Schema.NullishOr + } + >, + Schema.TaggedStruct< + "UnregDrepCert", + { + drepCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + coin: Schema.refine + } + >, + Schema.TaggedStruct< + "UpdateDrepCert", + { + drepCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + anchor: Schema.NullishOr + } + > + ] +> +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/Codec.mdx b/docs/pages/reference/modules/modules/Codec.mdx new file mode 100644 index 00000000..b2467a45 --- /dev/null +++ b/docs/pages/reference/modules/modules/Codec.mdx @@ -0,0 +1,63 @@ +--- +title: Codec.ts +nav_order: 26 +parent: Modules +--- + +## Codec overview + +Simple codec factory for creating encoding utilities from schema records + +Added in v2.0.0 + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [createEncoders](#createencoders) + +--- + +# constructors + +## createEncoders + +Creates encoding and decoding utilities with custom error mapping + +**Signature** + +```ts +export declare const createEncoders: < + T extends Record>, + ErrorClass extends { new (options: { message?: string; cause?: unknown }): unknown } +>( + schemas: T, + ErrorClass: ErrorClass +) => { + Encode: { [K in keyof T]: T[K] extends Schema.Schema ? (input: A) => I : never } + Decode: { [K in keyof T]: T[K] extends Schema.Schema ? (input: I) => A : never } + EncodeEffect: { + [K in keyof T]: T[K] extends Schema.Schema + ? (input: A) => Effect.Effect> + : never + } + DecodeEffect: { + [K in keyof T]: T[K] extends Schema.Schema + ? (input: I) => Effect.Effect> + : never + } + EncodeEither: { + [K in keyof T]: T[K] extends Schema.Schema + ? (input: A) => Either.Either> + : never + } + DecodeEither: { + [K in keyof T]: T[K] extends Schema.Schema + ? (input: I) => Either.Either> + : never + } +} +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/Coin.mdx b/docs/pages/reference/modules/modules/Coin.mdx new file mode 100644 index 00000000..7f7035d2 --- /dev/null +++ b/docs/pages/reference/modules/modules/Coin.mdx @@ -0,0 +1,189 @@ +--- +title: Coin.ts +nav_order: 27 +parent: Modules +--- + +## Coin overview + +--- + +

Table of contents

+ +- [constants](#constants) + - [MAX_COIN_VALUE](#max_coin_value) +- [constructors](#constructors) + - [make](#make) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [CoinError (class)](#coinerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [Coin (type alias)](#coin-type-alias) +- [ordering](#ordering) + - [compare](#compare) +- [predicates](#predicates) + - [is](#is) +- [schemas](#schemas) + - [CoinSchema](#coinschema) +- [transformation](#transformation) + - [add](#add) + - [subtract](#subtract) + +--- + +# constants + +## MAX_COIN_VALUE + +Maximum value for a coin amount (maxWord64). + +**Signature** + +```ts +export declare const MAX_COIN_VALUE: 18446744073709551615n +``` + +Added in v2.0.0 + +# constructors + +## make + +Smart constructor for creating Coin values. + +**Signature** + +```ts +export declare const make: (a: bigint, options?: Schema.MakeOptions) => bigint +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two coin amounts are equal. + +**Signature** + +```ts +export declare const equals: (a: Coin, b: Coin) => boolean +``` + +Added in v2.0.0 + +# errors + +## CoinError (class) + +Error class for Coin related operations. + +**Signature** + +```ts +export declare class CoinError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random Coin value. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## Coin (type alias) + +Type alias for Coin representing ADA amounts in lovelace. +1 ADA = 1,000,000 lovelace + +**Signature** + +```ts +export type Coin = typeof CoinSchema.Type +``` + +Added in v2.0.0 + +# ordering + +## compare + +Compare two coin amounts. + +**Signature** + +```ts +export declare const compare: (a: Coin, b: Coin) => -1 | 0 | 1 +``` + +Added in v2.0.0 + +# predicates + +## is + +Check if a value is a valid Coin. + +**Signature** + +```ts +export declare const is: (u: unknown, overrideOptions?: ParseOptions | number) => u is bigint +``` + +Added in v2.0.0 + +# schemas + +## CoinSchema + +Schema for validating coin amounts as unsigned 64-bit integers. +coin = uint + +**Signature** + +```ts +export declare const CoinSchema: Schema.refine +``` + +Added in v2.0.0 + +# transformation + +## add + +Add two coin amounts safely. + +**Signature** + +```ts +export declare const add: (a: Coin, b: Coin) => Coin +``` + +Added in v2.0.0 + +## subtract + +Subtract two coin amounts safely. + +**Signature** + +```ts +export declare const subtract: (a: Coin, b: Coin) => Coin +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/Combinator.mdx b/docs/pages/reference/modules/modules/Combinator.mdx new file mode 100644 index 00000000..905e2825 --- /dev/null +++ b/docs/pages/reference/modules/modules/Combinator.mdx @@ -0,0 +1,62 @@ +--- +title: Combinator.ts +nav_order: 28 +parent: Modules +--- + +## Combinator overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [HEX_REGEX](#hex_regex) + - [HexStringFilter](#hexstringfilter) + - [HexStringSchema](#hexstringschema) + - [Uint8ArraySchema](#uint8arrayschema) + +--- + +# utils + +## HEX_REGEX + +Regular expression that matches valid hexadecimal strings. +Validates that a string: + +- Contains only hexadecimal characters (0-9, a-f) +- Has an even number of characters (bytes are represented as pairs of hex digits) +- Can be empty (matches zero or more pairs) + +**Signature** + +```ts +export declare const HEX_REGEX: RegExp +``` + +## HexStringFilter + +**Signature** + +```ts +export declare const HexStringFilter: ( + self: Schema.Schema +) => Schema.refine> +``` + +## HexStringSchema + +**Signature** + +```ts +export declare const HexStringSchema: Schema.refine +``` + +## Uint8ArraySchema + +**Signature** + +```ts +export declare const Uint8ArraySchema: Schema.declare +``` diff --git a/docs/pages/reference/modules/modules/CommitteeColdCredential.mdx b/docs/pages/reference/modules/modules/CommitteeColdCredential.mdx new file mode 100644 index 00000000..d6828bd7 --- /dev/null +++ b/docs/pages/reference/modules/modules/CommitteeColdCredential.mdx @@ -0,0 +1,261 @@ +--- +title: CommitteeColdCredential.ts +nav_order: 29 +parent: Modules +--- + +## CommitteeColdCredential overview + +Committee Cold Credential module - provides an alias for Credential specialized for committee cold key usage. + +In Cardano, committee_cold_credential = credential, representing the same credential structure +but used specifically for committee cold keys in governance. + +Added in v2.0.0 + +--- + +

Table of contents

+ +- [errors](#errors) + - [CommitteeColdCredentialError](#committeecoldcredentialerror) +- [model](#model) + - [CommitteeColdCredential (type alias)](#committeecoldcredential-type-alias) +- [schemas](#schemas) + - [CommitteeColdCredential](#committeecoldcredential) + - [FromCBORBytes](#fromcborbytes) +- [utils](#utils) + - [Codec](#codec) + - [FromCBORHex](#fromcborhex) + - [equals](#equals) + - [generator](#generator) + - [is](#is) + +--- + +# errors + +## CommitteeColdCredentialError + +Error class for CommitteeColdCredential operations - re-exports CredentialError. + +**Signature** + +```ts +export declare const CommitteeColdCredentialError: typeof Credential.CredentialError +``` + +Added in v2.0.0 + +# model + +## CommitteeColdCredential (type alias) + +Type representing a committee cold credential - alias for Credential type. + +**Signature** + +```ts +export type CommitteeColdCredential = Credential.Credential +``` + +Added in v2.0.0 + +# schemas + +## CommitteeColdCredential + +CommitteeColdCredential schema - alias for the Credential schema. +committee_cold_credential = credential + +**Signature** + +```ts +export declare const CommitteeColdCredential: Union< + [ + TaggedStruct<"KeyHash", { hash: brand>, "KeyHash"> }>, + TaggedStruct<"ScriptHash", { hash: brand>, "ScriptHash"> }> + ] +> +``` + +Added in v2.0.0 + +## FromCBORBytes + +CBOR encoding/decoding schemas. + +**Signature** + +```ts +export declare const FromCBORBytes: ( + options?: CBOR.CodecOptions +) => transform< + transformOrFail, never>, + transformOrFail< + Tuple2, typeof Uint8ArrayFromSelf>, + SchemaClass< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + never + >, + never + > +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => any + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => string + } + Decode: { + cborBytes: ( + input: any + ) => + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + cborHex: ( + input: string + ) => + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + } + EncodeEffect: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Effect> + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + cborHex: ( + input: string + ) => Effect< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + } + EncodeEither: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Either> + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + cborHex: ( + input: string + ) => Either< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + } +} +``` + +## FromCBORHex + +**Signature** + +```ts +export declare const FromCBORHex: ( + options?: CBOR.CodecOptions +) => transform< + transform, typeof Uint8ArrayFromSelf>, + transform< + transformOrFail, never>, + transformOrFail< + Tuple2, typeof Uint8ArrayFromSelf>, + SchemaClass< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + never + >, + never + > + > +> +``` + +## equals + +**Signature** + +```ts +export declare const equals: (a: Credential.Credential, b: Credential.Credential) => boolean +``` + +## generator + +**Signature** + +```ts +export declare const generator: Arbitrary< + { _tag: "KeyHash"; hash: string & Brand<"KeyHash"> } | { _tag: "ScriptHash"; hash: string & Brand<"ScriptHash"> } +> +``` + +## is + +Re-exported utilities from Credential module. + +**Signature** + +```ts +export declare const is: ( + u: unknown, + overrideOptions?: ParseOptions | number +) => u is + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/CommitteeHotCredential.mdx b/docs/pages/reference/modules/modules/CommitteeHotCredential.mdx new file mode 100644 index 00000000..d4d287d6 --- /dev/null +++ b/docs/pages/reference/modules/modules/CommitteeHotCredential.mdx @@ -0,0 +1,261 @@ +--- +title: CommitteeHotCredential.ts +nav_order: 30 +parent: Modules +--- + +## CommitteeHotCredential overview + +Committee Hot Credential module - provides an alias for Credential specialized for committee hot key usage. + +In Cardano, committee_hot_credential = credential, representing the same credential structure +but used specifically for committee hot keys in governance. + +Added in v2.0.0 + +--- + +

Table of contents

+ +- [errors](#errors) + - [CommitteeHotCredentialError](#committeehotcredentialerror) +- [model](#model) + - [CommitteeHotCredential (type alias)](#committeehotcredential-type-alias) +- [schemas](#schemas) + - [CommitteeHotCredential](#committeehotcredential) + - [FromCBORBytes](#fromcborbytes) +- [utils](#utils) + - [Codec](#codec) + - [FromCBORHex](#fromcborhex) + - [equals](#equals) + - [generator](#generator) + - [is](#is) + +--- + +# errors + +## CommitteeHotCredentialError + +Error class for CommitteeHotCredential operations - re-exports CredentialError. + +**Signature** + +```ts +export declare const CommitteeHotCredentialError: typeof Credential.CredentialError +``` + +Added in v2.0.0 + +# model + +## CommitteeHotCredential (type alias) + +Type representing a committee hot credential - alias for Credential type. + +**Signature** + +```ts +export type CommitteeHotCredential = Credential.Credential +``` + +Added in v2.0.0 + +# schemas + +## CommitteeHotCredential + +CommitteeHotCredential schema - alias for the Credential schema. +committee_hot_credential = credential + +**Signature** + +```ts +export declare const CommitteeHotCredential: Union< + [ + TaggedStruct<"KeyHash", { hash: brand>, "KeyHash"> }>, + TaggedStruct<"ScriptHash", { hash: brand>, "ScriptHash"> }> + ] +> +``` + +Added in v2.0.0 + +## FromCBORBytes + +CBOR encoding/decoding schemas. + +**Signature** + +```ts +export declare const FromCBORBytes: ( + options?: CodecOptions +) => transform< + transformOrFail, never>, + transformOrFail< + Tuple2, typeof Uint8ArrayFromSelf>, + SchemaClass< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + never + >, + never + > +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CodecOptions) => { + Encode: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => any + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => string + } + Decode: { + cborBytes: ( + input: any + ) => + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + cborHex: ( + input: string + ) => + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + } + EncodeEffect: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Effect> + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + cborHex: ( + input: string + ) => Effect< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + } + EncodeEither: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Either> + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + cborHex: ( + input: string + ) => Either< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + } +} +``` + +## FromCBORHex + +**Signature** + +```ts +export declare const FromCBORHex: ( + options?: CodecOptions +) => transform< + transform, typeof Uint8ArrayFromSelf>, + transform< + transformOrFail, never>, + transformOrFail< + Tuple2, typeof Uint8ArrayFromSelf>, + SchemaClass< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + never + >, + never + > + > +> +``` + +## equals + +**Signature** + +```ts +export declare const equals: (a: Credential.Credential, b: Credential.Credential) => boolean +``` + +## generator + +**Signature** + +```ts +export declare const generator: Arbitrary< + { _tag: "KeyHash"; hash: string & Brand<"KeyHash"> } | { _tag: "ScriptHash"; hash: string & Brand<"ScriptHash"> } +> +``` + +## is + +Re-exported utilities from Credential module. + +**Signature** + +```ts +export declare const is: ( + u: unknown, + overrideOptions?: ParseOptions | number +) => u is + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/Credential.mdx b/docs/pages/reference/modules/modules/Credential.mdx new file mode 100644 index 00000000..a6e9d789 --- /dev/null +++ b/docs/pages/reference/modules/modules/Credential.mdx @@ -0,0 +1,317 @@ +--- +title: Credential.ts +nav_order: 31 +parent: Modules +--- + +## Credential overview + +--- + +

Table of contents

+ +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [CredentialError (class)](#credentialerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [Credential (type alias)](#credential-type-alias) +- [predicates](#predicates) + - [is](#is) +- [schemas](#schemas) + - [Credential](#credential) + - [FromCDDL](#fromcddl) +- [utils](#utils) + - [CDDL](#cddl) + - [Codec](#codec) + - [FromCBORBytes](#fromcborbytes) + - [FromCBORHex](#fromcborhex) + +--- + +# equality + +## equals + +Check if two Credential instances are equal. + +**Signature** + +```ts +export declare const equals: (a: Credential, b: Credential) => boolean +``` + +Added in v2.0.0 + +# errors + +## CredentialError (class) + +Extends TaggedError for better error handling and categorization + +**Signature** + +```ts +export declare class CredentialError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random Credential. +Randomly selects between generating a KeyHash or ScriptHash credential. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary< + { _tag: "KeyHash"; hash: string & Brand<"KeyHash"> } | { _tag: "ScriptHash"; hash: string & Brand<"ScriptHash"> } +> +``` + +Added in v2.0.0 + +# model + +## Credential (type alias) + +Type representing a credential that can be either a key hash or script hash +Used in various address formats to identify ownership + +**Signature** + +```ts +export type Credential = typeof Credential.Type +``` + +Added in v2.0.0 + +# predicates + +## is + +Check if the given value is a valid Credential + +**Signature** + +```ts +export declare const is: ( + u: unknown, + overrideOptions?: ParseOptions | number +) => u is + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } +``` + +Added in v2.0.0 + +# schemas + +## Credential + +Credential schema representing either a key hash or script hash +credential = [0, addr_keyhash // 1, script_hash] +Used to identify ownership of addresses or stake rights + +**Signature** + +```ts +export declare const Credential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for Credential as defined in the specification: +credential = [0, addr_keyhash // 1, script_hash] + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.SchemaClass< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + never + >, + never +> +``` + +Added in v2.0.0 + +# utils + +## CDDL + +**Signature** + +```ts +export declare const CDDL: Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf> +``` + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => any + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => string + } + Decode: { + cborBytes: ( + input: any + ) => + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + cborHex: ( + input: string + ) => + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + } + EncodeEffect: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Effect.Effect> + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Effect.Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect.Effect< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + cborHex: ( + input: string + ) => Effect.Effect< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + } + EncodeEither: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Either> + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + cborHex: ( + input: string + ) => Either< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + } +} +``` + +## FromCBORBytes + +**Signature** + +```ts +export declare const FromCBORBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.SchemaClass< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + never + >, + never + > +> +``` + +## FromCBORHex + +**Signature** + +```ts +export declare const FromCBORHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.SchemaClass< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + never + >, + never + > + > +> +``` diff --git a/docs/pages/reference/modules/modules/DRep.mdx b/docs/pages/reference/modules/modules/DRep.mdx new file mode 100644 index 00000000..1846001a --- /dev/null +++ b/docs/pages/reference/modules/modules/DRep.mdx @@ -0,0 +1,561 @@ +--- +title: DRep.ts +nav_order: 38 +parent: Modules +--- + +## DRep overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [alwaysAbstain](#alwaysabstain) + - [alwaysNoConfidence](#alwaysnoconfidence) + - [fromKeyHash](#fromkeyhash) + - [fromScriptHash](#fromscripthash) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [DRepError (class)](#dreperror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [AlwaysAbstainDRep (type alias)](#alwaysabstaindrep-type-alias) + - [AlwaysNoConfidenceDRep (type alias)](#alwaysnoconfidencedrep-type-alias) + - [DRep (type alias)](#drep-type-alias) + - [KeyHashDRep (type alias)](#keyhashdrep-type-alias) + - [ScriptHashDRep (type alias)](#scripthashdrep-type-alias) +- [predicates](#predicates) + - [isAlwaysAbstainDRep](#isalwaysabstaindrep) + - [isAlwaysNoConfidenceDRep](#isalwaysnoconfidencedrep) + - [isDRep](#isdrep) + - [isKeyHashDRep](#iskeyhashdrep) + - [isScriptHashDRep](#isscripthashdrep) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [DRep](#drep) + - [DRepCDDLSchema](#drepcddlschema) +- [transformation](#transformation) + - [match](#match) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## alwaysAbstain + +Create an AlwaysAbstainDRep. + +**Signature** + +```ts +export declare const alwaysAbstain: () => AlwaysAbstainDRep +``` + +Added in v2.0.0 + +## alwaysNoConfidence + +Create an AlwaysNoConfidenceDRep. + +**Signature** + +```ts +export declare const alwaysNoConfidence: () => AlwaysNoConfidenceDRep +``` + +Added in v2.0.0 + +## fromKeyHash + +Create a KeyHashDRep from a KeyHash. + +**Signature** + +```ts +export declare const fromKeyHash: (keyHash: KeyHash.KeyHash) => KeyHashDRep +``` + +Added in v2.0.0 + +## fromScriptHash + +Create a ScriptHashDRep from a ScriptHash. + +**Signature** + +```ts +export declare const fromScriptHash: (scriptHash: ScriptHash.ScriptHash) => ScriptHashDRep +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two DRep instances are equal. + +**Signature** + +```ts +export declare const equals: (self: DRep, that: DRep) => boolean +``` + +Added in v2.0.0 + +# errors + +## DRepError (class) + +Error class for DRep related operations. + +**Signature** + +```ts +export declare class DRepError +``` + +Added in v2.0.0 + +# generators + +## generator + +FastCheck generator for DRep instances. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary< + | { keyHash: string & Brand<"KeyHash">; _tag: "KeyHashDRep" } + | { scriptHash: string & Brand<"ScriptHash">; _tag: "ScriptHashDRep" } + | { _tag: "AlwaysAbstainDRep" } + | { _tag: "AlwaysNoConfidenceDRep" } +> +``` + +Added in v2.0.0 + +# model + +## AlwaysAbstainDRep (type alias) + +Type alias for AlwaysAbstainDRep. + +**Signature** + +```ts +export type AlwaysAbstainDRep = Extract +``` + +Added in v2.0.0 + +## AlwaysNoConfidenceDRep (type alias) + +Type alias for AlwaysNoConfidenceDRep. + +**Signature** + +```ts +export type AlwaysNoConfidenceDRep = Extract +``` + +Added in v2.0.0 + +## DRep (type alias) + +Type alias for DRep. + +**Signature** + +```ts +export type DRep = typeof DRep.Type +``` + +Added in v2.0.0 + +## KeyHashDRep (type alias) + +Type alias for KeyHashDRep. + +**Signature** + +```ts +export type KeyHashDRep = Extract +``` + +Added in v2.0.0 + +## ScriptHashDRep (type alias) + +Type alias for ScriptHashDRep. + +**Signature** + +```ts +export type ScriptHashDRep = Extract +``` + +Added in v2.0.0 + +# predicates + +## isAlwaysAbstainDRep + +Check if a DRep is an AlwaysAbstainDRep. + +**Signature** + +```ts +export declare const isAlwaysAbstainDRep: (drep: DRep) => drep is AlwaysAbstainDRep +``` + +Added in v2.0.0 + +## isAlwaysNoConfidenceDRep + +Check if a DRep is an AlwaysNoConfidenceDRep. + +**Signature** + +```ts +export declare const isAlwaysNoConfidenceDRep: (drep: DRep) => drep is AlwaysNoConfidenceDRep +``` + +Added in v2.0.0 + +## isDRep + +Check if the given value is a valid DRep + +**Signature** + +```ts +export declare const isDRep: ( + u: unknown, + overrideOptions?: ParseOptions | number +) => u is + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" } +``` + +Added in v2.0.0 + +## isKeyHashDRep + +Check if a DRep is a KeyHashDRep. + +**Signature** + +```ts +export declare const isKeyHashDRep: (drep: DRep) => drep is KeyHashDRep +``` + +Added in v2.0.0 + +## isScriptHashDRep + +Check if a DRep is a ScriptHashDRep. + +**Signature** + +```ts +export declare const isScriptHashDRep: (drep: DRep) => drep is ScriptHashDRep +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for DRep. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Union< + [ + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple<[Schema.Literal<[2]>]>, + Schema.Tuple<[Schema.Literal<[3]>]> + ] + >, + Schema.SchemaClass< + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + never + >, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for DRep. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Union< + [ + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple<[Schema.Literal<[2]>]>, + Schema.Tuple<[Schema.Literal<[3]>]> + ] + >, + Schema.SchemaClass< + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + never + >, + never + > + > +> +``` + +Added in v2.0.0 + +## DRep + +Union schema for DRep representing different DRep types. + +drep = [0, addr_keyhash] / [1, script_hash] / [2] / [3] + +**Signature** + +```ts +export declare const DRep: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHashDRep", + { keyHash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHashDRep", + { scriptHash: Schema.brand>, "ScriptHash"> } + >, + Schema.TaggedStruct<"AlwaysAbstainDRep", {}>, + Schema.TaggedStruct<"AlwaysNoConfidenceDRep", {}> + ] +> +``` + +Added in v2.0.0 + +## DRepCDDLSchema + +CDDL schema for DRep with proper transformation. +drep = [0, addr_keyhash] / [1, script_hash] / [2] / [3] + +**Signature** + +```ts +export declare const DRepCDDLSchema: Schema.transformOrFail< + Schema.Union< + [ + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple<[Schema.Literal<[2]>]>, + Schema.Tuple<[Schema.Literal<[3]>]> + ] + >, + Schema.SchemaClass< + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + never + >, + never +> +``` + +Added in v2.0.0 + +# transformation + +## match + +Pattern match on a DRep to handle different DRep types. + +**Signature** + +```ts +export declare const match: ( + drep: DRep, + cases: { + KeyHashDRep: (drep: KeyHashDRep) => A + ScriptHashDRep: (drep: ScriptHashDRep) => B + AlwaysAbstainDRep: (drep: AlwaysAbstainDRep) => C + AlwaysNoConfidenceDRep: (drep: AlwaysNoConfidenceDRep) => D + } +) => A | B | C | D +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: ( + input: + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" } + ) => any + cborHex: ( + input: + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" } + ) => string + } + Decode: { + cborBytes: ( + input: any + ) => + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" } + cborHex: ( + input: string + ) => + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" } + } + EncodeEffect: { + cborBytes: ( + input: + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" } + ) => Effect.Effect> + cborHex: ( + input: + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" } + ) => Effect.Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect.Effect< + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + InstanceType + > + cborHex: ( + input: string + ) => Effect.Effect< + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + InstanceType + > + } + EncodeEither: { + cborBytes: ( + input: + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" } + ) => Either> + cborHex: ( + input: + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" } + ) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either< + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + InstanceType + > + cborHex: ( + input: string + ) => Either< + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + InstanceType + > + } +} +``` diff --git a/docs/pages/reference/modules/modules/DRepCredential.mdx b/docs/pages/reference/modules/modules/DRepCredential.mdx new file mode 100644 index 00000000..e67eaa28 --- /dev/null +++ b/docs/pages/reference/modules/modules/DRepCredential.mdx @@ -0,0 +1,261 @@ +--- +title: DRepCredential.ts +nav_order: 39 +parent: Modules +--- + +## DRepCredential overview + +DRep Credential module - provides an alias for Credential specialized for DRep usage. + +In Cardano, drep_credential = credential, representing the same credential structure +but used specifically for delegation representatives (DReps). + +Added in v2.0.0 + +--- + +

Table of contents

+ +- [errors](#errors) + - [DRepCredentialError](#drepcredentialerror) +- [model](#model) + - [DRepCredential (type alias)](#drepcredential-type-alias) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [DRepCredential](#drepcredential) +- [utils](#utils) + - [FromHex](#FromHex) + - [Codec](#codec) + - [equals](#equals) + - [generator](#generator) + - [isCredential](#iscredential) + +--- + +# errors + +## DRepCredentialError + +Error class for DRepCredential operations - re-exports CredentialError. + +**Signature** + +```ts +export declare const DRepCredentialError: typeof Credential.CredentialError +``` + +Added in v2.0.0 + +# model + +## DRepCredential (type alias) + +Type representing a DRep credential - alias for Credential type. + +**Signature** + +```ts +export type DRepCredential = Credential.Credential +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR encoding/decoding schemas. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CodecOptions +) => transform< + transformOrFail, never>, + transformOrFail< + Tuple2, typeof Uint8ArrayFromSelf>, + SchemaClass< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + never + >, + never + > +> +``` + +Added in v2.0.0 + +## DRepCredential + +DRepCredential schema - alias for the Credential schema. +drep_credential = credential + +**Signature** + +```ts +export declare const DRepCredential: Union< + [ + TaggedStruct<"KeyHash", { hash: brand>, "KeyHash"> }>, + TaggedStruct<"ScriptHash", { hash: brand>, "ScriptHash"> }> + ] +> +``` + +Added in v2.0.0 + +# utils + +## FromHex + +**Signature** + +```ts +export declare const FromHex: ( + options?: CodecOptions +) => transform< + transform, typeof Uint8ArrayFromSelf>, + transform< + transformOrFail, never>, + transformOrFail< + Tuple2, typeof Uint8ArrayFromSelf>, + SchemaClass< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + never + >, + never + > + > +> +``` + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CodecOptions) => { + Encode: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => any + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => string + } + Decode: { + cborBytes: ( + input: any + ) => + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + cborHex: ( + input: string + ) => + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + } + EncodeEffect: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Effect> + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + cborHex: ( + input: string + ) => Effect< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + } + EncodeEither: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Either> + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + cborHex: ( + input: string + ) => Either< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + } +} +``` + +## equals + +**Signature** + +```ts +export declare const equals: (a: Credential.Credential, b: Credential.Credential) => boolean +``` + +## generator + +**Signature** + +```ts +export declare const generator: Arbitrary< + { _tag: "KeyHash"; hash: string & Brand<"KeyHash"> } | { _tag: "ScriptHash"; hash: string & Brand<"ScriptHash"> } +> +``` + +## isCredential + +Re-exported utilities from Credential module. + +**Signature** + +```ts +export declare const isCredential: ( + u: unknown, + overrideOptions?: ParseOptions | number +) => u is + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/Data.mdx b/docs/pages/reference/modules/modules/Data.mdx new file mode 100644 index 00000000..8fe51b53 --- /dev/null +++ b/docs/pages/reference/modules/modules/Data.mdx @@ -0,0 +1,599 @@ +--- +title: Data.ts +nav_order: 32 +parent: Modules +--- + +## Data overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [bytearray](#bytearray) + - [constr](#constr) + - [int](#int) + - [list](#list) + - [map](#map) +- [errors](#errors) + - [DataError (class)](#dataerror-class) +- [generators](#generators) + - [genConstr](#genconstr) + - [genPlutusBigInt](#genplutusbigint) + - [genPlutusBytes](#genplutusbytes) + - [genPlutusData](#genplutusdata) + - [genPlutusList](#genplutuslist) + - [genPlutusMap](#genplutusmap) + - [generator](#generator) +- [model](#model) + - [Data (type alias)](#data-type-alias) + - [FromCBORBytes](#fromcborbytes) + - [List (type alias)](#list-type-alias) + - [MapList (type alias)](#maplist-type-alias) +- [predicates](#predicates) + - [isBytes](#isbytes) + - [isConstr](#isconstr) + - [isInt](#isint) + - [isList](#islist) + - [isMap](#ismap) +- [schemas](#schemas) + - [BytesSchema](#bytesschema) + - [Constr (class)](#constr-class) + - [DataSchema](#dataschema) + - [IntSchema](#intschema) + - [ListSchema](#listschema) + - [MapSchema](#mapschema) +- [transformation](#transformation) + - [cborValueToPlutusData](#cborvaluetoplutusdata) + - [plutusDataToCBORValue](#plutusdatatocborvalue) +- [utilities](#utilities) + - [matchConstr](#matchconstr) + - [matchData](#matchdata) +- [utils](#utils) + - [ByteArray (type alias)](#bytearray-type-alias) + - [Codec](#codec) + - [FromCBORHex](#fromcborhex) + - [Int (type alias)](#int-type-alias) + +--- + +# constructors + +## bytearray + +Creates Plutus bounded bytes from hex string + +**Signature** + +```ts +export declare const bytearray: (bytes: string) => ByteArray +``` + +Added in v2.0.0 + +## constr + +Creates a constructor with the specified index and data + +**Signature** + +```ts +export declare const constr: (index: bigint, data: Array) => Constr +``` + +Added in v2.0.0 + +## int + +Creates Plutus big integer + +**Signature** + +```ts +export declare const int: (integer: bigint) => Int +``` + +Added in v2.0.0 + +## list + +Creates a Plutus list from items + +**Signature** + +```ts +export declare const list: (list: Array) => List +``` + +Added in v2.0.0 + +## map + +Creates a Plutus map from key-value pairs + +**Signature** + +```ts +export declare const map: (entries: Array<{ key: Data; value: Data }>) => MapList +``` + +Added in v2.0.0 + +# errors + +## DataError (class) + +Error class for Data related operations. + +**Signature** + +```ts +export declare class DataError +``` + +Added in v2.0.0 + +# generators + +## genConstr + +Creates an arbitrary that generates Constr values + +**Signature** + +```ts +export declare const genConstr: (depth: number) => FastCheck.Arbitrary +``` + +Added in v2.0.0 + +## genPlutusBigInt + +Creates an arbitrary that generates PlutusBigInt values + +**Signature** + +```ts +export declare const genPlutusBigInt: () => FastCheck.Arbitrary +``` + +Added in v2.0.0 + +## genPlutusBytes + +Creates an arbitrary that generates PlutusBytes values + +**Signature** + +```ts +export declare const genPlutusBytes: () => FastCheck.Arbitrary +``` + +Added in v2.0.0 + +## genPlutusData + +Creates an arbitrary that generates PlutusData values with controlled depth + +**Signature** + +```ts +export declare const genPlutusData: (depth?: number) => FastCheck.Arbitrary +``` + +Added in v2.0.0 + +## genPlutusList + +Creates an arbitrary that generates PlutusList values + +**Signature** + +```ts +export declare const genPlutusList: (depth: number) => FastCheck.Arbitrary +``` + +Added in v2.0.0 + +## genPlutusMap + +Creates an arbitrary that generates PlutusMap values with unique keys +Following a similar distribution pattern: + +- 60% PlutusBigInt keys +- 30% PlutusBytes keys +- 10% Complex keys + +**Signature** + +```ts +export declare const genPlutusMap: (depth: number) => FastCheck.Arbitrary +``` + +Added in v2.0.0 + +## generator + +FastCheck generators for PlutusData types + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## Data (type alias) + +PlutusData type definition based on Conway CDDL specification + +``` +CDDL: plutus_data = + constr + / {* plutus_data => plutus_data} + / [* plutus_data] + / big_int + / bounded_bytes + +constr = + #6.121([* a0]) + / #6.122([* a0]) + / #6.123([* a0]) + / #6.124([* a0]) + / #6.125([* a0]) + / #6.126([* a0]) + / #6.127([* a0]) + / #6.102([uint, [* a0]]) +``` + +Constructor Index Limits: + +- Tags 121-127: Direct encoding for constructor indices 0-6 +- Tag 102: General constructor encoding for any uint value +- Maximum constructor index: 2^64 - 1 (18,446,744,073,709,551,615) + as per CBOR RFC 8949 specification for unsigned integers + +**Signature** + +```ts +export type Data = Constr | MapList | List | Int | ByteArray +``` + +Added in v2.0.0 + +## FromCBORBytes + +CBOR value representation for PlutusData +This represents the intermediate CBOR structure that corresponds to PlutusData + +**Signature** + +```ts +export declare const FromCBORBytes: ( + options?: CBOR.CodecOptions +) => Schema.transformOrFail, never> +``` + +Added in v2.0.0 + +## List (type alias) + +PlutusList type for plutus data lists + +**Signature** + +```ts +export type List = ReadonlyArray +``` + +Added in v2.0.0 + +## MapList (type alias) + +Constr type for constructor alternatives based on Conway CDDL specification + +``` +CDDL: constr = + #6.121([* a0]) // index 0 + / #6.122([* a0]) // index 1 + / #6.123([* a0]) // index 2 + / #6.124([* a0]) // index 3 + / #6.125([* a0]) // index 4 + / #6.126([* a0]) // index 5 + / #6.127([* a0]) // index 6 + / #6.102([uint, [* a0]]) // general constructor with custom index +``` + +Constructor Index Range: + +- Minimum: 0 +- Maximum: 2^64 - 1 (18,446,744,073,709,551,615) + as per CBOR RFC 8949 specification for unsigned integers + +**Signature** + +```ts +export type MapList = Map +``` + +Added in v2.0.0 + +# predicates + +## isBytes + +Type guard to check if a value is a PlutusBytes + +**Signature** + +```ts +export declare const isBytes: (u: unknown, overrideOptions?: ParseOptions | number) => u is string +``` + +Added in v2.0.0 + +## isConstr + +Type guard to check if a value is a Constr + +**Signature** + +```ts +export declare const isConstr: (data: unknown) => data is Constr +``` + +Added in v2.0.0 + +## isInt + +Type guard to check if a value is a PlutusBigInt + +**Signature** + +```ts +export declare const isInt: (u: unknown, overrideOptions?: ParseOptions | number) => u is bigint +``` + +Added in v2.0.0 + +## isList + +Type guard to check if a value is a PlutusList + +**Signature** + +```ts +export declare const isList: (u: unknown, overrideOptions?: ParseOptions | number) => u is readonly Data[] +``` + +Added in v2.0.0 + +## isMap + +Type guard to check if a value is a PlutusMap + +**Signature** + +```ts +export declare const isMap: (u: unknown, overrideOptions?: ParseOptions | number) => u is Map +``` + +Added in v2.0.0 + +# schemas + +## BytesSchema + +Schema for PlutusBytes data type + +**Signature** + +```ts +export declare const BytesSchema: Schema.refine +``` + +Added in v2.0.0 + +## Constr (class) + +Schema for Constr data type + +**Signature** + +```ts +export declare class Constr +``` + +Added in v2.0.0 + +## DataSchema + +Combined schema for PlutusData type + +**Signature** + +```ts +export declare const DataSchema: Schema.Schema +``` + +Added in v2.0.0 + +## IntSchema + +Schema for PlutusBigInt data type + +Matches the CDDL specification for big_int: + +``` +big_int = int / big_uint / big_nint +big_uint = #6.2(bounded_bytes) +big_nint = #6.3(bounded_bytes) +``` + +Where: + +- `int` covers integers that fit in CBOR major types 0 and 1 (0 to 2^64-1 for positive, -(2^64-1) to -1 for negative) +- `big_uint` (tag 2) covers positive integers larger than 2^64-1 +- `big_nint` (tag 3) covers negative integers smaller than -(2^64-1) + +Note: JavaScript's Number.MAX_SAFE_INTEGER (2^53-1) is much smaller than CBOR's 64-bit limit. + +**Signature** + +```ts +export declare const IntSchema: Schema.SchemaClass +``` + +Added in v2.0.0 + +## ListSchema + +Schema for PlutusList data type + +**Signature** + +```ts +export declare const ListSchema: Schema.Array$> +``` + +Added in v2.0.0 + +## MapSchema + +Schema for PlutusMap data type + +**Signature** + +```ts +export declare const MapSchema: Schema.MapFromSelf, Schema.suspend> +``` + +Added in v2.0.0 + +# transformation + +## cborValueToPlutusData + +Convert CBORValue to PlutusData + +**Signature** + +```ts +export declare const cborValueToPlutusData: (cborValue: CBOR.CBOR) => Data +``` + +Added in v2.0.0 + +## plutusDataToCBORValue + +Convert PlutusData to CBORValue + +**Signature** + +```ts +export declare const plutusDataToCBORValue: (data: Data) => CBOR.CBOR +``` + +Added in v2.0.0 + +# utilities + +## matchConstr + +Pattern matching helper for Constr types + +**Signature** + +```ts +export declare const matchConstr: ( + constr: Constr, + cases: { [key: number]: (fields: ReadonlyArray) => T; _: (index: number, fields: ReadonlyArray) => T } +) => T +``` + +Added in v2.0.0 + +## matchData + +Pattern matching helper for PlutusData types + +**Signature** + +```ts +export declare const matchData: ( + data: Data, + cases: { + Map: (entries: ReadonlyArray<[Data, Data]>) => T + List: (items: ReadonlyArray) => T + Int: (value: bigint) => T + Bytes: (bytes: string) => T + Constr: (constr: Constr) => T + } +) => T +``` + +Added in v2.0.0 + +# utils + +## ByteArray (type alias) + +**Signature** + +```ts +export type ByteArray = typeof BytesSchema.Type +``` + +## Codec + +**Signature** + +```ts +export declare function Codec(params: { + schema: Schema.Schema + options?: CBOR.CodecOptions +}): ReturnType< + typeof _Codec.createEncoders< + { + toData: Schema.Schema + cborHex: Schema.Schema + cborBytes: Schema.Schema + }, + typeof DataError + > +> +export declare function Codec(params?: { options?: CBOR.CodecOptions }): ReturnType< + typeof _Codec.createEncoders< + { + cborHex: Schema.Schema + cborBytes: Schema.Schema + }, + typeof DataError + > +> +``` + +## FromCBORHex + +**Signature** + +```ts +export declare const FromCBORHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transformOrFail, never> +> +``` + +## Int (type alias) + +**Signature** + +```ts +export type Int = typeof IntSchema.Type +``` diff --git a/docs/pages/reference/modules/modules/DataJson.mdx b/docs/pages/reference/modules/modules/DataJson.mdx new file mode 100644 index 00000000..19948688 --- /dev/null +++ b/docs/pages/reference/modules/modules/DataJson.mdx @@ -0,0 +1,327 @@ +--- +title: DataJson.ts +nav_order: 33 +parent: Modules +--- + +## DataJson overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [ByteArray](#bytearray) + - [ByteArray (interface)](#bytearray-interface) + - [Constr](#constr) + - [Constr (interface)](#constr-interface) + - [Data](#data) + - [Data (type alias)](#data-type-alias) + - [Integer](#integer) + - [Integer (interface)](#integer-interface) + - [List](#list) + - [List (interface)](#list-interface) + - [Map](#map) + - [Map (type alias)](#map-type-alias) + - [fromCBOR](#fromcbor) + - [fromData](#fromdata) + - [isByteArray](#isbytearray) + - [isConstr](#isconstr) + - [isInteger](#isinteger) + - [isList](#islist) + - [isMap](#ismap) + - [mkByteArray](#mkbytearray) + - [mkConstr](#mkconstr) + - [mkConstr (interface)](#mkconstr-interface) + - [mkInteger](#mkinteger) + - [mkMap](#mkmap) + - [resolveCBOR](#resolvecbor) + - [toCBOR](#tocbor) + - [toData](#todata) + +--- + +# utils + +## ByteArray + +**Signature** + +```ts +export declare const ByteArray: Schema.Struct<{ bytes: Schema.filter> }> +``` + +## ByteArray (interface) + +**Signature** + +```ts +export interface ByteArray { + readonly bytes: string +} +``` + +## Constr + +**Signature** + +```ts +export declare const Constr: Schema.Struct<{ + constructor: typeof Schema.Number + fields: Schema.Array$> +}> +``` + +## Constr (interface) + +**Signature** + +```ts +export interface Constr { + readonly constructor: number + readonly fields: ReadonlyArray +} +``` + +## Data + +**Signature** + +```ts +export declare const Data: Schema.Schema +``` + +## Data (type alias) + +Plutus data types and schemas for serialization/deserialization between +TypeScript types and Cardano's Plutus data format + +**Signature** + +```ts +export type Data = Integer | ByteArray | List | Map | Constr +``` + +Added in v1.0.0 + +## Integer + +**Signature** + +```ts +export declare const Integer: Schema.Struct<{ int: typeof Schema.Number }> +``` + +## Integer (interface) + +**Signature** + +```ts +export interface Integer { + readonly int: number +} +``` + +## List + +**Signature** + +```ts +export declare const List: Schema.Array$> +``` + +## List (interface) + +**Signature** + +```ts +export interface List extends ReadonlyArray {} +``` + +## Map + +**Signature** + +```ts +export declare const Map: Schema.Record$> +``` + +## Map (type alias) + +**Signature** + +```ts +export type Map = { + readonly [key: string]: Data +} +``` + +## fromCBOR + +Decodes a CBOR hex string to a TypeScript type + +**Signature** + +```ts +export declare function fromCBOR(input: string): Data +export declare function fromCBOR( + input: string, + schema: Schema.Schema +): Source +``` + +Added in v1.0.0 + +## fromData + +Decodes an unknown value from Plutus Data Constructor to a TypeScript type + +**Signature** + +```ts +export declare const fromData: ( + input: unknown, + schema: Schema.Schema, + options?: SchemaAST.ParseOptions +) => Source +``` + +Added in v1.0.0 + +## isByteArray + +**Signature** + +```ts +export declare const isByteArray: ( + u: unknown, + overrideOptions?: SchemaAST.ParseOptions | number +) => u is { readonly bytes: string } +``` + +## isConstr + +**Signature** + +```ts +export declare const isConstr: ( + u: unknown, + overrideOptions?: SchemaAST.ParseOptions | number +) => u is { readonly fields: readonly Data[]; readonly constructor: number } +``` + +## isInteger + +**Signature** + +```ts +export declare const isInteger: ( + u: unknown, + overrideOptions?: SchemaAST.ParseOptions | number +) => u is { readonly int: number } +``` + +## isList + +**Signature** + +```ts +export declare const isList: (u: unknown, overrideOptions?: SchemaAST.ParseOptions | number) => u is readonly Data[] +``` + +## isMap + +**Signature** + +```ts +export declare const isMap: ( + u: unknown, + overrideOptions?: SchemaAST.ParseOptions | number +) => u is { readonly [x: string]: Data } +``` + +## mkByteArray + +**Signature** + +```ts +export declare const mkByteArray: (bytes: string) => ByteArray +``` + +## mkConstr + +**Signature** + +```ts +export declare const mkConstr: ( + constructor: number, + fields: ReadonlyArray +) => { readonly constructor: number; readonly fields: ReadonlyArray } +``` + +## mkConstr (interface) + +**Signature** + +```ts +export interface mkConstr { + readonly constructor: number + readonly fields: ReadonlyArray +} +``` + +## mkInteger + +**Signature** + +```ts +export declare const mkInteger: (int: number) => Integer +``` + +## mkMap + +**Signature** + +```ts +export declare const mkMap: (map: Record) => Readonly +``` + +## resolveCBOR + +**Signature** + +```ts +export declare const resolveCBOR: (input: string) => Data +``` + +## toCBOR + +Converts TypeScript data into CBOR hex string + +**Signature** + +```ts +export declare const toCBOR: ( + input: unknown, + schema?: Schema.Schema, + options?: { canonical?: boolean; parseOptions?: SchemaAST.ParseOptions } +) => string +``` + +Added in v1.0.0 + +## toData + +Encodes a TypeScript value to Plutus Data Constructor + +**Signature** + +```ts +export declare const toData: ( + input: unknown, + schema: Schema.Schema, + options?: SchemaAST.ParseOptions +) => Target +``` + +Added in v1.0.0 diff --git a/docs/pages/reference/modules/modules/DatumOption.mdx b/docs/pages/reference/modules/modules/DatumOption.mdx new file mode 100644 index 00000000..e7d37a02 --- /dev/null +++ b/docs/pages/reference/modules/modules/DatumOption.mdx @@ -0,0 +1,327 @@ +--- +title: DatumOption.ts +nav_order: 34 +parent: Modules +--- + +## DatumOption overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [fromHash](#fromhash) + - [fromInlineData](#frominlinedata) +- [errors](#errors) + - [DatumOptionError (class)](#datumoptionerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [DatumOption (type alias)](#datumoption-type-alias) +- [predicates](#predicates) + - [isDatumHash](#isdatumhash) + - [isInlineDatum](#isinlinedatum) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [DatumHash (class)](#datumhash-class) + - [DatumOptionCDDLSchema](#datumoptioncddlschema) + - [DatumOptionSchema](#datumoptionschema) + - [InlineDatum (class)](#inlinedatum-class) +- [transformation](#transformation) + - [getData](#getdata) + - [getHash](#gethash) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## fromHash + +Create a DatumOption with a datum hash. + +**Signature** + +```ts +export declare const fromHash: (hash: string) => DatumOption +``` + +Added in v2.0.0 + +## fromInlineData + +Create a DatumOption with inline data. + +**Signature** + +```ts +export declare const fromInlineData: (data: PlutusData.Data) => DatumOption +``` + +Added in v2.0.0 + +# errors + +## DatumOptionError (class) + +Error class for DatumOption related operations. + +**Signature** + +```ts +export declare class DatumOptionError +``` + +Added in v2.0.0 + +# generators + +## generator + +FastCheck generator for DatumOption instances. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## DatumOption (type alias) + +Type alias for DatumOption representing optional datum information. +Can be either a hash reference to datum data or inline plutus data. + +**Signature** + +```ts +export type DatumOption = typeof DatumOptionSchema.Type +``` + +Added in v2.0.0 + +# predicates + +## isDatumHash + +Check if a DatumOption is a datum hash. + +**Signature** + +```ts +export declare const isDatumHash: (datumOption: DatumOption) => datumOption is DatumHash +``` + +Added in v2.0.0 + +## isInlineDatum + +Check if a DatumOption is inline data. + +**Signature** + +```ts +export declare const isInlineDatum: (datumOption: DatumOption) => datumOption is InlineDatum +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for DatumOption. +Transforms between Uint8Array and DatumOption using CBOR encoding. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Union< + [ + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple2, Schema.Schema> + ] + >, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for DatumOption. +Transforms between hex string and DatumOption using CBOR encoding. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Union< + [ + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple2, Schema.Schema> + ] + >, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## DatumHash (class) + +Schema for DatumHash variant of DatumOption. +Represents a reference to datum data stored elsewhere via its hash. + +**Signature** + +```ts +export declare class DatumHash +``` + +Added in v2.0.0 + +## DatumOptionCDDLSchema + +CDDL schema for DatumOption. +datum_option = [0, Bytes32// 1, data] + +Where: + +- [0, Bytes32] represents a datum hash (tag 0 with 32-byte hash) +- [1, data] represents inline data (tag 1 with CBOR-encoded plutus data) + +**Signature** + +```ts +export declare const DatumOptionCDDLSchema: Schema.transformOrFail< + Schema.Union< + [ + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple2, Schema.Schema> + ] + >, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +## DatumOptionSchema + +Schema for DatumOption representing optional datum information in transaction outputs. + +CDDL: datum_option = [0, Bytes32// 1, data] + +Where: + +- [0, Bytes32] represents a datum hash reference +- [1, data] represents inline plutus data + +**Signature** + +```ts +export declare const DatumOptionSchema: Schema.Union<[typeof DatumHash, typeof InlineDatum]> +``` + +Added in v2.0.0 + +## InlineDatum (class) + +Schema for InlineDatum variant of DatumOption. +Represents inline plutus data embedded directly in the transaction output. + +**Signature** + +```ts +export declare class InlineDatum +``` + +Added in v2.0.0 + +# transformation + +## getData + +Get the data from an InlineDatum, or undefined if it's not an InlineDatum. + +**Signature** + +```ts +export declare const getData: (datumOption: DatumOption) => PlutusData.Data | undefined +``` + +Added in v2.0.0 + +## getHash + +Get the hash from a DatumHash, or undefined if it's not a DatumHash. + +**Signature** + +```ts +export declare const getHash: (datumOption: DatumOption) => string | undefined +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: DatumHash | InlineDatum) => any; cborHex: (input: DatumHash | InlineDatum) => string } + Decode: { cborBytes: (input: any) => DatumHash | InlineDatum; cborHex: (input: string) => DatumHash | InlineDatum } + EncodeEffect: { + cborBytes: (input: DatumHash | InlineDatum) => Effect.Effect> + cborHex: (input: DatumHash | InlineDatum) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: DatumHash | InlineDatum) => Either> + cborHex: (input: DatumHash | InlineDatum) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/docs/pages/reference/modules/modules/Devnet/Devnet.mdx b/docs/pages/reference/modules/modules/Devnet/Devnet.mdx new file mode 100644 index 00000000..68e75fdb --- /dev/null +++ b/docs/pages/reference/modules/modules/Devnet/Devnet.mdx @@ -0,0 +1,107 @@ +--- +title: Devnet/Devnet.ts +nav_order: 35 +parent: Modules +--- + +## Devnet overview + +--- + +

Table of contents

+ +- [cluster](#cluster) + - [Cluster](#cluster-1) +- [container](#container) + - [Container](#container-1) +- [utils](#utils) + - [CardanoDevNetError (class)](#cardanodevneterror-class) + - [DevNetCluster (interface)](#devnetcluster-interface) + - [DevNetContainer (interface)](#devnetcontainer-interface) + +--- + +# cluster + +## Cluster + +Cluster management operations for Cardano DevNet. + +**Signature** + +```ts +export declare const Cluster: { + readonly make: (config?: DevnetDefault.DevNetConfig) => Effect.Effect + readonly makeOrThrow: (config?: DevnetDefault.DevNetConfig) => Promise + readonly start: (cluster: DevNetCluster) => Effect.Effect + readonly startOrThrow: (cluster: DevNetCluster) => Promise + readonly stop: (cluster: DevNetCluster) => Effect.Effect + readonly stopOrThrow: (cluster: DevNetCluster) => Promise + readonly remove: (cluster: DevNetCluster) => Effect.Effect + readonly removeOrThrow: (cluster: DevNetCluster) => Promise +} +``` + +Added in v2.0.0 + +# container + +## Container + +Individual container management operations. + +**Signature** + +```ts +export declare const Container: { + readonly start: (container: DevNetContainer) => Effect.Effect + readonly startOrThrow: (container: DevNetContainer) => Promise + readonly stop: (container: DevNetContainer) => Effect.Effect + readonly stopOrThrow: (container: DevNetContainer) => Promise + readonly remove: (container: DevNetContainer) => Effect.Effect + readonly removeOrThrow: (container: DevNetContainer) => Promise + readonly getStatus: ( + container: DevNetContainer + ) => Effect.Effect + readonly getStatusOrThrow: (container: DevNetContainer) => Promise + readonly isImageAvailable: (imageName: string) => Effect.Effect + readonly isImageAvailableOrThrow: (imageName: string) => Promise + readonly downloadImage: (imageName: string) => Effect.Effect +} +``` + +Added in v2.0.0 + +# utils + +## CardanoDevNetError (class) + +**Signature** + +```ts +export declare class CardanoDevNetError +``` + +## DevNetCluster (interface) + +**Signature** + +```ts +export interface DevNetCluster { + readonly cardanoNode: DevNetContainer + readonly kupo?: DevNetContainer | undefined + readonly ogmios?: DevNetContainer | undefined + readonly networkName: string +} +``` + +## DevNetContainer (interface) + +**Signature** + +```ts +export interface DevNetContainer { + readonly id: string + readonly name: string +} +``` diff --git a/docs/pages/reference/modules/modules/Devnet/DevnetDefault.mdx b/docs/pages/reference/modules/modules/Devnet/DevnetDefault.mdx new file mode 100644 index 00000000..0f2a0de3 --- /dev/null +++ b/docs/pages/reference/modules/modules/Devnet/DevnetDefault.mdx @@ -0,0 +1,1370 @@ +--- +title: Devnet/DevnetDefault.ts +nav_order: 36 +parent: Modules +--- + +## DevnetDefault overview + +Type definitions for configuration objects to allow flexible values +while maintaining structure compatibility. + +--- + +

Table of contents

+ +- [constants](#constants) + - [DEFAULT_ALONZO_GENESIS](#default_alonzo_genesis) + - [DEFAULT_BYRON_GENESIS](#default_byron_genesis) + - [DEFAULT_CONWAY_GENESIS](#default_conway_genesis) + - [DEFAULT_DEVNET_CONFIG](#default_devnet_config) + - [DEFAULT_KES_KEY](#default_kes_key) + - [DEFAULT_KUPO_CONFIG](#default_kupo_config) + - [DEFAULT_NODE_CONFIG](#default_node_config) + - [DEFAULT_OGMIOS_CONFIG](#default_ogmios_config) + - [DEFAULT_OPCERT](#default_opcert) + - [DEFAULT_SHELLEY_GENESIS](#default_shelley_genesis) + - [DEFAULT_VRF_SKEY](#default_vrf_skey) +- [model](#model) + - [DevNetConfig (interface)](#devnetconfig-interface) + - [KupoConfig (interface)](#kupoconfig-interface) + - [OgmiosConfig (interface)](#ogmiosconfig-interface) +- [utils](#utils) + - [AlonzoGenesis (type alias)](#alonzogenesis-type-alias) + - [ByronGenesis (type alias)](#byrongenesis-type-alias) + - [ConwayGenesis (type alias)](#conwaygenesis-type-alias) + - [KesKey (type alias)](#keskey-type-alias) + - [NodeConfig (type alias)](#nodeconfig-type-alias) + - [OpCert (type alias)](#opcert-type-alias) + - [ShelleyGenesis (type alias)](#shelleygenesis-type-alias) + - [VrfSkey (type alias)](#vrfskey-type-alias) + +--- + +# constants + +## DEFAULT_ALONZO_GENESIS + +Default Alonzo genesis configuration for Cardano DevNet. +Contains Plutus script execution parameters, cost models, and resource limits. + +**Signature** + +```ts +export declare const DEFAULT_ALONZO_GENESIS: { + readonly lovelacePerUTxOWord: 34482 + readonly executionPrices: { + readonly prSteps: { readonly numerator: 721; readonly denominator: 10000000 } + readonly prMem: { readonly numerator: 577; readonly denominator: 10000 } + } + readonly maxTxExUnits: { readonly exUnitsMem: 10000000; readonly exUnitsSteps: 10000000000 } + readonly maxBlockExUnits: { readonly exUnitsMem: 50000000; readonly exUnitsSteps: 40000000000 } + readonly maxValueSize: 5000 + readonly collateralPercentage: 150 + readonly maxCollateralInputs: 3 + readonly costModels: { + readonly PlutusV1: readonly [ + 100788, + 420, + 1, + 1, + 1000, + 173, + 0, + 1, + 1000, + 59957, + 4, + 1, + 11183, + 32, + 201305, + 8356, + 4, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 100, + 100, + 16000, + 100, + 94375, + 32, + 132994, + 32, + 61462, + 4, + 72010, + 178, + 0, + 1, + 22151, + 32, + 91189, + 769, + 4, + 2, + 85848, + 228465, + 122, + 0, + 1, + 1, + 1000, + 42921, + 4, + 2, + 24548, + 29498, + 38, + 1, + 898148, + 27279, + 1, + 51775, + 558, + 1, + 39184, + 1000, + 60594, + 1, + 141895, + 32, + 83150, + 32, + 15299, + 32, + 76049, + 1, + 13169, + 4, + 22100, + 10, + 28999, + 74, + 1, + 28999, + 74, + 1, + 43285, + 552, + 1, + 44749, + 541, + 1, + 33852, + 32, + 68246, + 32, + 72362, + 32, + 7243, + 32, + 7391, + 32, + 11546, + 32, + 85848, + 228465, + 122, + 0, + 1, + 1, + 90434, + 519, + 0, + 1, + 74433, + 32, + 85848, + 228465, + 122, + 0, + 1, + 1, + 85848, + 228465, + 122, + 0, + 1, + 1, + 270652, + 22588, + 4, + 1457325, + 64566, + 4, + 20467, + 1, + 4, + 0, + 141992, + 32, + 100788, + 420, + 1, + 1, + 81663, + 32, + 59498, + 32, + 20142, + 32, + 24588, + 32, + 20744, + 32, + 25933, + 32, + 24623, + 32, + 53384111, + 14333, + 10 + ] + readonly PlutusV2: readonly [ + 100788, + 420, + 1, + 1, + 1000, + 173, + 0, + 1, + 1000, + 59957, + 4, + 1, + 11183, + 32, + 201305, + 8356, + 4, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 100, + 100, + 16000, + 100, + 94375, + 32, + 132994, + 32, + 61462, + 4, + 72010, + 178, + 0, + 1, + 22151, + 32, + 91189, + 769, + 4, + 2, + 85848, + 228465, + 122, + 0, + 1, + 1, + 1000, + 42921, + 4, + 2, + 24548, + 29498, + 38, + 1, + 898148, + 27279, + 1, + 51775, + 558, + 1, + 39184, + 1000, + 60594, + 1, + 141895, + 32, + 83150, + 32, + 15299, + 32, + 76049, + 1, + 13169, + 4, + 22100, + 10, + 28999, + 74, + 1, + 28999, + 74, + 1, + 43285, + 552, + 1, + 44749, + 541, + 1, + 33852, + 32, + 68246, + 32, + 72362, + 32, + 7243, + 32, + 7391, + 32, + 11546, + 32, + 85848, + 228465, + 122, + 0, + 1, + 1, + 90434, + 519, + 0, + 1, + 74433, + 32, + 85848, + 228465, + 122, + 0, + 1, + 1, + 85848, + 228465, + 122, + 0, + 1, + 1, + 955506, + 213312, + 0, + 2, + 270652, + 22588, + 4, + 1457325, + 64566, + 4, + 20467, + 1, + 4, + 0, + 141992, + 32, + 100788, + 420, + 1, + 1, + 81663, + 32, + 59498, + 32, + 20142, + 32, + 24588, + 32, + 20744, + 32, + 25933, + 32, + 24623, + 32, + 43053543, + 10, + 53384111, + 14333, + 10, + 43574283, + 26308, + 10 + ] + } +} +``` + +Added in v2.0.0 + +## DEFAULT_BYRON_GENESIS + +Default Byron genesis configuration for Cardano DevNet. +Contains protocol constants and initial blockchain state for the Byron era. + +**Signature** + +```ts +export declare const DEFAULT_BYRON_GENESIS: { + readonly protocolConsts: { readonly k: 2160; readonly protocolMagic: 42 } + readonly startTime: number + readonly blockVersionData: { + readonly scriptVersion: 0 + readonly slotDuration: "250" + readonly maxBlockSize: "2000000" + readonly maxHeaderSize: "2000000" + readonly maxTxSize: "4096" + readonly maxProposalSize: "700" + readonly mpcThd: "20000000000000" + readonly heavyDelThd: "300000000000" + readonly updateVoteThd: "1000000000000" + readonly updateProposalThd: "100000000000000" + readonly updateImplicit: "10000" + readonly softforkRule: { + readonly initThd: "900000000000000" + readonly minThd: "600000000000000" + readonly thdDecrement: "50000000000000" + } + readonly txFeePolicy: { readonly summand: "155381000000000"; readonly multiplier: "43000000000" } + readonly unlockStakeEpoch: "18446744073709551615" + } + readonly bootStakeholders: { readonly "7a4519c93d7be4577dd85bd524c644e6b809e44eae0457b43128c1c7": 1 } + readonly heavyDelegation: {} + readonly nonAvvmBalances: {} + readonly avvmDistr: {} +} +``` + +Added in v2.0.0 + +## DEFAULT_CONWAY_GENESIS + +Default Conway genesis configuration for Cardano DevNet. +Contains governance parameters, voting thresholds, and Plutus V3 cost models. + +**Signature** + +```ts +export declare const DEFAULT_CONWAY_GENESIS: { + readonly poolVotingThresholds: { + readonly committeeNormal: 0.6 + readonly committeeNoConfidence: 0.51 + readonly hardForkInitiation: 0.51 + readonly motionNoConfidence: 0.6 + readonly ppSecurityGroup: 0.6 + } + readonly dRepVotingThresholds: { + readonly motionNoConfidence: 0.67 + readonly committeeNormal: 0.67 + readonly committeeNoConfidence: 0.6 + readonly updateToConstitution: 0.75 + readonly hardForkInitiation: 0.6 + readonly ppNetworkGroup: 0.67 + readonly ppEconomicGroup: 0.67 + readonly ppTechnicalGroup: 0.67 + readonly ppGovGroup: 0.75 + readonly treasuryWithdrawal: 0.67 + } + readonly committeeMinSize: 0 + readonly committeeMaxTermLength: 73 + readonly govActionLifetime: 8 + readonly govActionDeposit: 50000000000 + readonly dRepDeposit: 500000000 + readonly dRepActivity: 20 + readonly minFeeRefScriptCostPerByte: 44 + readonly plutusV3CostModel: readonly [ + 100788, + 420, + 1, + 1, + 1000, + 173, + 0, + 1, + 1000, + 59957, + 4, + 1, + 11183, + 32, + 201305, + 8356, + 4, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 100, + 100, + 16000, + 100, + 94375, + 32, + 132994, + 32, + 61462, + 4, + 72010, + 178, + 0, + 1, + 22151, + 32, + 91189, + 769, + 4, + 2, + 85848, + 123203, + 7305, + -900, + 1716, + 549, + 57, + 85848, + 0, + 1, + 1, + 1000, + 42921, + 4, + 2, + 24548, + 29498, + 38, + 1, + 898148, + 27279, + 1, + 51775, + 558, + 1, + 39184, + 1000, + 60594, + 1, + 141895, + 32, + 83150, + 32, + 15299, + 32, + 76049, + 1, + 13169, + 4, + 22100, + 10, + 28999, + 74, + 1, + 28999, + 74, + 1, + 43285, + 552, + 1, + 44749, + 541, + 1, + 33852, + 32, + 68246, + 32, + 72362, + 32, + 7243, + 32, + 7391, + 32, + 11546, + 32, + 85848, + 123203, + 7305, + -900, + 1716, + 549, + 57, + 85848, + 0, + 1, + 90434, + 519, + 0, + 1, + 74433, + 32, + 85848, + 123203, + 7305, + -900, + 1716, + 549, + 57, + 85848, + 0, + 1, + 1, + 85848, + 123203, + 7305, + -900, + 1716, + 549, + 57, + 85848, + 0, + 1, + 955506, + 213312, + 0, + 2, + 270652, + 22588, + 4, + 1457325, + 64566, + 4, + 20467, + 1, + 4, + 0, + 141992, + 32, + 100788, + 420, + 1, + 1, + 81663, + 32, + 59498, + 32, + 20142, + 32, + 24588, + 32, + 20744, + 32, + 25933, + 32, + 24623, + 32, + 43053543, + 10, + 53384111, + 14333, + 10, + 43574283, + 26308, + 10, + 16000, + 100, + 16000, + 100, + 962335, + 18, + 2780678, + 6, + 442008, + 1, + 52538055, + 3756, + 18, + 267929, + 18, + 76433006, + 8868, + 18, + 52948122, + 18, + 1995836, + 36, + 3227919, + 12, + 901022, + 1, + 166917843, + 4307, + 36, + 284546, + 36, + 158221314, + 26549, + 36, + 74698472, + 36, + 333849714, + 1, + 254006273, + 72, + 2174038, + 72, + 2261318, + 64571, + 4, + 207616, + 8310, + 4, + 1293828, + 28716, + 63, + 0, + 1, + 1006041, + 43623, + 251, + 0, + 1 + ] + readonly constitution: { + readonly anchor: { + readonly url: "" + readonly dataHash: "0000000000000000000000000000000000000000000000000000000000000000" + } + } + readonly committee: { readonly members: {}; readonly threshold: 0.66 } +} +``` + +Added in v2.0.0 + +## DEFAULT_DEVNET_CONFIG + +Complete default configuration for Cardano DevNet. +Includes all required settings for running a local Cardano development network. + +**Signature** + +```ts +export declare const DEFAULT_DEVNET_CONFIG: Required +``` + +Added in v2.0.0 + +## DEFAULT_KES_KEY + +Default KES (Key Evolving Signature) signing key for Cardano DevNet. +Used for block production and stake pool operations. + +**Signature** + +```ts +export declare const DEFAULT_KES_KEY: { + readonly type: "KesSigningKey_ed25519_kes_2^6" + readonly description: "KES Signing Key" + readonly cborHex: "590260a199f16b11da6c7f5c1e0f1eb0b9bbe278d3d8f35bfd50d0951c2ff94d0344cd57df5f64c9bac1dd60b4482f9c636168f40737d526625a2ec82f22ec0c72de0013f86ef743a7bba0286db6ddf3d85bf8e49ddbf14d9d3b7ee22f4857c77b740948f84f2e72f6bcf91f405e34ea50a2c53fa4876b43cfce2bcfe87c06a903de8bb33d968ca7930b67d0c23f5cb2d74e422d773ba80e388de384691000d6ba8a9b4dc7d3187f76048fbef9a52b72d80d835bb76eced7c0e0cdc5b58869b73c095dffa01db4ff51765afcead565395a5ed1cf74e5f2134d61076fece21aacd080bbbfaab94125401d7bbc74eafc7e7e3a2235f59dc03d6e332e53d558493a1e22213b92c77b1328ff1b83855da704fc366bf4415490602481d1939136eeaf252c65184912a779d9d94a90e32b72c1877ef60b6d79e707ce5a762acb4bed46436efe4fe62aae50b39068cc508a09427c92791cbcbea44318529cc68d297ca24e1b73b2394c385ec63fcd85ed56eec3de48860a1ec950aad4f91cbf741dbd7bf1d3c278875bd20e31ff5372339f6aa5280ad9b8bf3514889ac44600fe57ca0b535d6dc6b0b981e079595aad186ee0be9b07e837391ab165e4ca406601c876a86e246a3f53311e21199cccc0b080f28d18f4dc6987731e10e4ade00df7c6921c5ef3022b6f49a29ba307a2c8f4bd2ba42fcfa0aad68a2f0ad31fff69a99d3471f9036d3f5817a3edfeff7fc3c14e1151d767aaa043481cfd1a6ee55e8e5d7853ecdaf9da2bb36c716beae8d706bc648a790d4697e1d044a11a49f305ab8bc64a094bd81bda7395fe6f77dd5557c39919dd9bb9cf22a87fe47408ae3ec2247007d015a5" +} +``` + +Added in v2.0.0 + +## DEFAULT_KUPO_CONFIG + +Default configuration for Kupo service + +**Signature** + +```ts +export declare const DEFAULT_KUPO_CONFIG: Required +``` + +Added in v2.0.0 + +## DEFAULT_NODE_CONFIG + +Default node configuration constants for Cardano DevNet. +These settings control the behavior of the Cardano node including +protocol parameters, logging, tracing, and hard fork schedules. + +**Signature** + +```ts +export declare const DEFAULT_NODE_CONFIG: { + readonly Protocol: "Cardano" + readonly ByronGenesisFile: "genesis-byron.json" + readonly ShelleyGenesisFile: "genesis-shelley.json" + readonly AlonzoGenesisFile: "genesis-alonzo.json" + readonly ConwayGenesisFile: "genesis-conway.json" + readonly ApplicationName: "cardano-sl" + readonly ApplicationVersion: 1 + readonly MaxKnownMajorProtocolVersion: 2 + readonly "LastKnownBlockVersion-Alt": 0 + readonly "LastKnownBlockVersion-Major": 6 + readonly "LastKnownBlockVersion-Minor": 0 + readonly TestShelleyHardForkAtEpoch: 0 + readonly TestAllegraHardForkAtEpoch: 0 + readonly TestMaryHardForkAtEpoch: 0 + readonly TestAlonzoHardForkAtEpoch: 0 + readonly TestBabbageHardForkAtEpoch: 0 + readonly TestConwayHardForkAtEpoch: 0 + readonly RequiresNetworkMagic: "RequiresNoMagic" + readonly minSeverity: "Info" + readonly defaultBackends: readonly ["KatipBK"] + readonly defaultScribes: readonly [readonly ["StdoutSK", "stdout"]] + readonly setupBackends: readonly ["KatipBK"] + readonly setupScribes: readonly [ + { readonly scFormat: "ScJson"; readonly scKind: "StdoutSK"; readonly scName: "stdout"; readonly scRotation: null } + ] + readonly TurnOnLogMetrics: true + readonly TurnOnLogging: true + readonly TracingVerbosity: "NormalVerbosity" + readonly TraceBlockFetchClient: false + readonly TraceBlockFetchDecisions: false + readonly TraceBlockFetchProtocol: false + readonly TraceBlockFetchProtocolSerialised: false + readonly TraceBlockFetchServer: false + readonly TraceChainDb: true + readonly TraceChainSyncBlockServer: false + readonly TraceChainSyncClient: false + readonly TraceChainSyncHeaderServer: false + readonly TraceChainSyncProtocol: false + readonly TraceDNSResolver: false + readonly TraceDNSSubscription: false + readonly TraceErrorPolicy: false + readonly TraceForge: true + readonly TraceHandshake: false + readonly TraceIpSubscription: false + readonly TraceLocalChainSyncProtocol: true + readonly TraceLocalErrorPolicy: false + readonly TraceLocalHandshake: false + readonly TraceLocalTxSubmissionProtocol: true + readonly TraceLocalTxSubmissionServer: true + readonly TraceMempool: true + readonly TraceMux: false + readonly TraceOptions: {} + readonly TraceTxInbound: false + readonly TraceTxOutbound: false + readonly TraceTxSubmissionProtocol: false + readonly hasEKG: 12788 + readonly hasPrometheus: readonly ["0.0.0.0", 12798] + readonly options: { + readonly mapBackends: { + readonly "cardano.node.metrics": readonly ["EKGViewBK"] + readonly "cardano.node.resources": readonly ["EKGViewBK"] + } + readonly mapSubtrace: { readonly "cardano.node.metrics": { readonly subtrace: "Neutral" } } + } + readonly ExperimentalHardForksEnabled: true + readonly ExperimentalProtocolsEnabled: true +} +``` + +Added in v2.0.0 + +## DEFAULT_OGMIOS_CONFIG + +Default configuration for Ogmios service + +**Signature** + +```ts +export declare const DEFAULT_OGMIOS_CONFIG: Required +``` + +Added in v2.0.0 + +## DEFAULT_OPCERT + +Default node operational certificate for Cardano DevNet. +Certifies the stake pool's authority to produce blocks. + +**Signature** + +```ts +export declare const DEFAULT_OPCERT: { + readonly type: "NodeOperationalCertificate" + readonly description: "" + readonly cborHex: "828458204cd49bb05e9885142fe7af1481107995298771fd1a24e72b506a4d600ee2b3120000584089fc9e9f551b2ea873bf31643659d049152d5c8e8de86be4056370bccc5fa62dd12e3f152f1664e614763e46eaa7a17ed366b5cef19958773d1ab96941442e0b58205a3d778e76741a009e29d23093cfe046131808d34d7c864967b515e98dfc3583" +} +``` + +Added in v2.0.0 + +## DEFAULT_SHELLEY_GENESIS + +Default Shelley genesis configuration for Cardano DevNet. +Contains protocol parameters, initial funds, staking configuration, and network settings. + +**Signature** + +```ts +export declare const DEFAULT_SHELLEY_GENESIS: { + readonly epochLength: 432000 + readonly activeSlotsCoeff: 1 + readonly slotLength: 1 + readonly securityParam: 2160 + readonly genDelegs: {} + readonly initialFunds: { + readonly "00813c32c92aad21770ff8001de0918f598df8c06775f77f8e8839d2a0074a515f7f32bf31a4f41c7417a8136e8152bfb42f06d71b389a6896": 900000000000 + readonly "609783be7d3c54f11377966dfabc9284cd6c32fca1cd42ef0a4f1cc45b": 900000000000 + } + readonly maxKESEvolutions: 60 + readonly maxLovelaceSupply: 2000000000000 + readonly networkId: "Testnet" + readonly networkMagic: 42 + readonly protocolParams: { + readonly a0: 0 + readonly decentralisationParam: 0 + readonly eMax: 18 + readonly extraEntropy: { readonly tag: "NeutralNonce" } + readonly keyDeposit: 0 + readonly maxBlockBodySize: 65536 + readonly maxBlockHeaderSize: 1100 + readonly maxTxSize: 16384 + readonly minFeeA: 44 + readonly minFeeB: 155381 + readonly minPoolCost: 0 + readonly minUTxOValue: 0 + readonly nOpt: 100 + readonly poolDeposit: 0 + readonly protocolVersion: { readonly major: 10; readonly minor: 0 } + readonly rho: 0.1 + readonly tau: 0.1 + } + readonly slotsPerKESPeriod: 129600 + readonly staking: { + readonly pools: { + readonly "8a219b698d3b6e034391ae84cee62f1d76b6fbc45ddfe4e31e0d4b60": { + readonly cost: 0 + readonly margin: 0 + readonly metadata: null + readonly owners: readonly [] + readonly pledge: 0 + readonly publicKey: "8a219b698d3b6e034391ae84cee62f1d76b6fbc45ddfe4e31e0d4b60" + readonly relays: readonly [] + readonly rewardAccount: { + readonly credential: { readonly "key hash": "b6ffb20cf821f9286802235841d4348a2c2bafd4f73092b7de6655ea" } + readonly network: "Testnet" + } + readonly vrf: "fec17ed60cbf2ec5be3f061fb4de0b6ef1f20947cfbfce5fb2783d12f3f69ff5" + } + } + readonly stake: { + readonly "074a515f7f32bf31a4f41c7417a8136e8152bfb42f06d71b389a6896": "8a219b698d3b6e034391ae84cee62f1d76b6fbc45ddfe4e31e0d4b60" + } + } + readonly systemStart: string + readonly updateQuorum: 2 +} +``` + +Added in v2.0.0 + +## DEFAULT_VRF_SKEY + +Default VRF (Verifiable Random Function) signing key for Cardano DevNet. +Used for leader election and randomness generation in the consensus protocol. + +**Signature** + +```ts +export declare const DEFAULT_VRF_SKEY: { + readonly type: "VrfSigningKey_PraosVRF" + readonly description: "VRF Signing Key" + readonly cborHex: "5840899795b70e9f34b737159fe21a6170568d6031e187f0cc84555c712b7c29b45cb882007593ef70f86e5c0948561a3b8e8851529a4f98975f2b24e768dda38ce2" +} +``` + +Added in v2.0.0 + +# model + +## DevNetConfig (interface) + +Configuration interface for Cardano DevNet setup. +All properties are optional, with sensible defaults provided. + +**Signature** + +```ts +export interface DevNetConfig { + readonly clusterName?: string + readonly image?: string + readonly ports?: { + readonly node: number + readonly submit: number + } + readonly networkMagic?: number + readonly nodeConfig?: Partial + readonly byronGenesis?: Partial + readonly shelleyGenesis?: Partial + readonly alonzoGenesis?: Partial + readonly conwayGenesis?: Partial + readonly kesKey?: Partial + readonly opCert?: Partial + readonly vrfSkey?: Partial + readonly kupo?: KupoConfig + readonly ogmios?: OgmiosConfig +} +``` + +Added in v2.0.0 + +## KupoConfig (interface) + +Configuration interface for Kupo - A fast, lightweight & configurable chain-index + +**Signature** + +```ts +export interface KupoConfig { + readonly enabled?: boolean + readonly image?: string + readonly port?: number + readonly logLevel?: "Debug" | "Info" | "Notice" | "Warning" | "Error" + readonly match?: string + readonly deferDbIndexes?: boolean + readonly since?: string +} +``` + +Added in v2.0.0 + +## OgmiosConfig (interface) + +Configuration interface for Ogmios - A lightweight bridge interface for Cardano + +**Signature** + +```ts +export interface OgmiosConfig { + readonly enabled?: boolean + readonly image?: string + readonly port?: number + readonly logLevel?: "debug" | "info" | "notice" | "warning" | "error" +} +``` + +Added in v2.0.0 + +# utils + +## AlonzoGenesis (type alias) + +**Signature** + +```ts +export type AlonzoGenesis = { + readonly lovelacePerUTxOWord: number + readonly executionPrices: { + readonly prSteps: { + readonly numerator: number + readonly denominator: number + } + readonly prMem: { + readonly numerator: number + readonly denominator: number + } + } + readonly maxTxExUnits: { + readonly exUnitsMem: number + readonly exUnitsSteps: number + } + readonly maxBlockExUnits: { + readonly exUnitsMem: number + readonly exUnitsSteps: number + } + readonly maxValueSize: number + readonly collateralPercentage: number + readonly maxCollateralInputs: number + readonly costModels: { + readonly PlutusV1: ReadonlyArray + readonly PlutusV2: ReadonlyArray + } +} +``` + +## ByronGenesis (type alias) + +**Signature** + +```ts +export type ByronGenesis = { + readonly protocolConsts: { + readonly k: number + readonly protocolMagic: number + } + readonly startTime: number + readonly blockVersionData: { + readonly scriptVersion: number + readonly slotDuration: string + readonly maxBlockSize: string + readonly maxHeaderSize: string + readonly maxTxSize: string + readonly maxProposalSize: string + readonly mpcThd: string + readonly heavyDelThd: string + readonly updateVoteThd: string + readonly updateProposalThd: string + readonly updateImplicit: string + readonly softforkRule: { + readonly initThd: string + readonly minThd: string + readonly thdDecrement: string + } + readonly txFeePolicy: { + readonly summand: string + readonly multiplier: string + } + readonly unlockStakeEpoch: string + } + readonly bootStakeholders: Record + readonly heavyDelegation: Record + readonly nonAvvmBalances: Record + readonly avvmDistr: Record +} +``` + +## ConwayGenesis (type alias) + +**Signature** + +```ts +export type ConwayGenesis = { + readonly poolVotingThresholds: { + readonly committeeNormal: number + readonly committeeNoConfidence: number + readonly hardForkInitiation: number + readonly motionNoConfidence: number + readonly ppSecurityGroup: number + } + readonly dRepVotingThresholds: { + readonly motionNoConfidence: number + readonly committeeNormal: number + readonly committeeNoConfidence: number + readonly updateToConstitution: number + readonly hardForkInitiation: number + readonly ppNetworkGroup: number + readonly ppEconomicGroup: number + readonly ppTechnicalGroup: number + readonly ppGovGroup: number + readonly treasuryWithdrawal: number + } + readonly committeeMinSize: number + readonly committeeMaxTermLength: number + readonly govActionLifetime: number + readonly govActionDeposit: number + readonly dRepDeposit: number + readonly dRepActivity: number + readonly minFeeRefScriptCostPerByte: number + readonly plutusV3CostModel: ReadonlyArray + readonly constitution: { + readonly anchor: { + readonly url: string + readonly dataHash: string + } + } + readonly committee: { + readonly members: Record + readonly threshold: number + } +} +``` + +## KesKey (type alias) + +**Signature** + +```ts +export type KesKey = { + readonly type: string + readonly description: string + readonly cborHex: string +} +``` + +## NodeConfig (type alias) + +Type definitions for configuration objects to allow flexible values +while maintaining structure compatibility. + +**Signature** + +```ts +export type NodeConfig = { + readonly Protocol: string + readonly ByronGenesisFile: string + readonly ShelleyGenesisFile: string + readonly AlonzoGenesisFile: string + readonly ConwayGenesisFile: string + readonly ApplicationName: string + readonly ApplicationVersion: number + readonly MaxKnownMajorProtocolVersion: number + readonly "LastKnownBlockVersion-Alt": number + readonly "LastKnownBlockVersion-Major": number + readonly "LastKnownBlockVersion-Minor": number + readonly TestShelleyHardForkAtEpoch: number + readonly TestAllegraHardForkAtEpoch: number + readonly TestMaryHardForkAtEpoch: number + readonly TestAlonzoHardForkAtEpoch: number + readonly TestBabbageHardForkAtEpoch: number + readonly TestConwayHardForkAtEpoch: number + readonly RequiresNetworkMagic: string + readonly minSeverity: string + readonly defaultBackends: ReadonlyArray + readonly defaultScribes: ReadonlyArray> + readonly setupBackends: ReadonlyArray + readonly setupScribes: ReadonlyArray<{ + readonly scFormat: string + readonly scKind: string + readonly scName: string + readonly scRotation: null + }> + readonly TurnOnLogMetrics: boolean + readonly TurnOnLogging: boolean + readonly TracingVerbosity: string + readonly TraceBlockFetchClient: boolean + readonly TraceBlockFetchDecisions: boolean + readonly TraceBlockFetchProtocol: boolean + readonly TraceBlockFetchProtocolSerialised: boolean + readonly TraceBlockFetchServer: boolean + readonly TraceChainDb: boolean + readonly TraceChainSyncBlockServer: boolean + readonly TraceChainSyncClient: boolean + readonly TraceChainSyncHeaderServer: boolean + readonly TraceChainSyncProtocol: boolean + readonly TraceDNSResolver: boolean + readonly TraceDNSSubscription: boolean + readonly TraceErrorPolicy: boolean + readonly TraceForge: boolean + readonly TraceHandshake: boolean + readonly TraceIpSubscription: boolean + readonly TraceLocalChainSyncProtocol: boolean + readonly TraceLocalErrorPolicy: boolean + readonly TraceLocalHandshake: boolean + readonly TraceLocalTxSubmissionProtocol: boolean + readonly TraceLocalTxSubmissionServer: boolean + readonly TraceMempool: boolean + readonly TraceMux: boolean + readonly TraceOptions: Record + readonly TraceTxInbound: boolean + readonly TraceTxOutbound: boolean + readonly TraceTxSubmissionProtocol: boolean + readonly hasEKG: number + readonly hasPrometheus: ReadonlyArray + readonly options: { + readonly mapBackends: Record> + readonly mapSubtrace: Record + } + readonly ExperimentalHardForksEnabled: boolean + readonly ExperimentalProtocolsEnabled: boolean +} +``` + +## OpCert (type alias) + +**Signature** + +```ts +export type OpCert = { + readonly type: string + readonly description: string + readonly cborHex: string +} +``` + +## ShelleyGenesis (type alias) + +**Signature** + +```ts +export type ShelleyGenesis = { + readonly epochLength: number + readonly activeSlotsCoeff: number + readonly slotLength: number + readonly securityParam: number + readonly genDelegs: Record + readonly initialFunds: Record + readonly maxKESEvolutions: number + readonly maxLovelaceSupply: number + readonly networkId: string + readonly networkMagic: number + readonly protocolParams: { + readonly a0: number + readonly decentralisationParam: number + readonly eMax: number + readonly extraEntropy: { + readonly tag: string + } + readonly keyDeposit: number + readonly maxBlockBodySize: number + readonly maxBlockHeaderSize: number + readonly maxTxSize: number + readonly minFeeA: number + readonly minFeeB: number + readonly minPoolCost: number + readonly minUTxOValue: number + readonly nOpt: number + readonly poolDeposit: number + readonly protocolVersion: { + readonly major: number + readonly minor: number + } + readonly rho: number + readonly tau: number + } + readonly slotsPerKESPeriod: number + readonly staking: { + readonly pools: Record< + string, + { + readonly cost: number + readonly margin: number + readonly metadata: null + readonly owners: ReadonlyArray + readonly pledge: number + readonly publicKey: string + readonly relays: ReadonlyArray + readonly rewardAccount: { + readonly credential: { + readonly "key hash": string + } + readonly network: string + } + readonly vrf: string + } + > + readonly stake: Record + } + readonly systemStart: string + readonly updateQuorum: number +} +``` + +## VrfSkey (type alias) + +**Signature** + +```ts +export type VrfSkey = { + readonly type: string + readonly description: string + readonly cborHex: string +} +``` diff --git a/docs/pages/reference/modules/modules/DnsName.mdx b/docs/pages/reference/modules/modules/DnsName.mdx new file mode 100644 index 00000000..e30509fb --- /dev/null +++ b/docs/pages/reference/modules/modules/DnsName.mdx @@ -0,0 +1,203 @@ +--- +title: DnsName.ts +nav_order: 37 +parent: Modules +--- + +## DnsName overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [make](#make) +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [DnsNameError (class)](#dnsnameerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [DnsName](#dnsname) + - [DnsName (type alias)](#dnsname-type-alias) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + +--- + +# constructors + +## make + +Create a DnsName from a string. + +**Signature** + +```ts +export declare const make: (a: string, options?: Schema.MakeOptions) => string & Brand<"DnsName"> +``` + +Added in v2.0.0 + +# encoding/decoding + +## Codec + +Codec utilities for DnsName encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"DnsName">) => any; hex: (input: string & Brand<"DnsName">) => string } + Decode: { bytes: (input: any) => string & Brand<"DnsName">; hex: (input: string) => string & Brand<"DnsName"> } + EncodeEffect: { + bytes: (input: string & Brand<"DnsName">) => Effect> + hex: (input: string & Brand<"DnsName">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"DnsName">) => Either> + hex: (input: string & Brand<"DnsName">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two DnsName instances are equal. + +**Signature** + +```ts +export declare const equals: (a: DnsName, b: DnsName) => boolean +``` + +Added in v2.0.0 + +# errors + +## DnsNameError (class) + +Error class for DnsName related operations. + +**Signature** + +```ts +export declare class DnsNameError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random DnsName. + +**Signature** + +```ts +export declare const generator: Arbitrary> +``` + +Added in v2.0.0 + +# model + +## DnsName + +Schema for DnsName with DNS-specific validation. +dns_name = text .size (0 .. 128) + +**Signature** + +```ts +export declare const DnsName: Schema.brand< + Schema.refine< + string, + Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform + > + >, + "DnsName" +> +``` + +Added in v2.0.0 + +## DnsName (type alias) + +Type alias for DnsName. + +**Signature** + +```ts +export type DnsName = typeof DnsName.Type +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.filter>, + Schema.brand< + Schema.refine< + string, + Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform + > + >, + "DnsName" + > +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine< + string, + Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform + > + >, + Schema.brand< + Schema.refine< + string, + Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform + > + >, + "DnsName" + > +> +``` diff --git a/docs/pages/reference/modules/modules/Ed25519Signature.mdx b/docs/pages/reference/modules/modules/Ed25519Signature.mdx new file mode 100644 index 00000000..87ef787a --- /dev/null +++ b/docs/pages/reference/modules/modules/Ed25519Signature.mdx @@ -0,0 +1,163 @@ +--- +title: Ed25519Signature.ts +nav_order: 40 +parent: Modules +--- + +## Ed25519Signature overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [Ed25519SignatureError (class)](#ed25519signatureerror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [Ed25519Signature](#ed25519signature) +- [utils](#utils) + - [Ed25519Signature (type alias)](#ed25519signature-type-alias) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for Ed25519Signature encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { + bytes: (input: string & Brand<"Ed25519Signature">) => any + hex: (input: string & Brand<"Ed25519Signature">) => string + } + Decode: { + bytes: (input: any) => string & Brand<"Ed25519Signature"> + hex: (input: string) => string & Brand<"Ed25519Signature"> + } + EncodeEffect: { + bytes: (input: string & Brand<"Ed25519Signature">) => Effect> + hex: (input: string & Brand<"Ed25519Signature">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"Ed25519Signature">) => Either> + hex: (input: string & Brand<"Ed25519Signature">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two Ed25519Signature instances are equal. + +**Signature** + +```ts +export declare const equals: (a: Ed25519Signature, b: Ed25519Signature) => boolean +``` + +Added in v2.0.0 + +# errors + +## Ed25519SignatureError (class) + +Error class for Ed25519Signature related operations. + +**Signature** + +```ts +export declare class Ed25519SignatureError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random Ed25519Signature. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## Ed25519Signature + +Schema for Ed25519Signature representing an Ed25519 signature. +ed25519_signature = bytes .size 64 +Follows the Conway-era CDDL specification. + +**Signature** + +```ts +export declare const Ed25519Signature: Schema.brand< + Schema.filter>, + "Ed25519Signature" +> +``` + +Added in v2.0.0 + +# utils + +## Ed25519Signature (type alias) + +**Signature** + +```ts +export type Ed25519Signature = typeof Ed25519Signature.Type +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.filter, + Schema.filter> + >, + Schema.brand>, "Ed25519Signature"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.filter>, + Schema.brand>, "Ed25519Signature"> +> +``` diff --git a/docs/pages/reference/modules/modules/EnterpriseAddress.mdx b/docs/pages/reference/modules/modules/EnterpriseAddress.mdx new file mode 100644 index 00000000..f3485b46 --- /dev/null +++ b/docs/pages/reference/modules/modules/EnterpriseAddress.mdx @@ -0,0 +1,136 @@ +--- +title: EnterpriseAddress.ts +nav_order: 41 +parent: Modules +--- + +## EnterpriseAddress overview + +--- + +

Table of contents

+ +- [equality](#equality) + - [equals](#equals) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [EnterpriseAddress (class)](#enterpriseaddress-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) +- [utils](#utils) + - [Codec](#codec) + - [EnterpriseAddressError (class)](#enterpriseaddresserror-class) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + +--- + +# equality + +## equals + +Check if two EnterpriseAddress instances are equal. + +**Signature** + +```ts +export declare const equals: (a: EnterpriseAddress, b: EnterpriseAddress) => boolean +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random EnterpriseAddress. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# schemas + +## EnterpriseAddress (class) + +Enterprise address with only payment credential + +**Signature** + +```ts +export declare class EnterpriseAddress +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: EnterpriseAddress) => any; hex: (input: EnterpriseAddress) => string } + Decode: { bytes: (input: any) => EnterpriseAddress; hex: (input: string) => EnterpriseAddress } + EncodeEffect: { + bytes: (input: EnterpriseAddress) => Effect.Effect> + hex: (input: EnterpriseAddress) => Effect.Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect.Effect> + hex: (input: string) => Effect.Effect> + } + EncodeEither: { + bytes: (input: EnterpriseAddress) => Either> + hex: (input: EnterpriseAddress) => Either> + } + DecodeEither: { + bytes: (input: any) => Either> + hex: (input: string) => Either> + } +} +``` + +## EnterpriseAddressError (class) + +**Signature** + +```ts +export declare class EnterpriseAddressError +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transformOrFail< + Schema.filter, + typeof EnterpriseAddress, + never +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transformOrFail, typeof EnterpriseAddress, never> +> +``` diff --git a/docs/pages/reference/modules/modules/EpochNo.mdx b/docs/pages/reference/modules/modules/EpochNo.mdx new file mode 100644 index 00000000..c2c6c9af --- /dev/null +++ b/docs/pages/reference/modules/modules/EpochNo.mdx @@ -0,0 +1,142 @@ +--- +title: EpochNo.ts +nav_order: 42 +parent: Modules +--- + +## EpochNo overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [make](#make) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [EpochNoError (class)](#epochnoerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [EpochNo (type alias)](#epochno-type-alias) +- [ordering](#ordering) + - [compare](#compare) +- [predicates](#predicates) + - [is](#is) +- [schemas](#schemas) + - [EpochNoSchema](#epochnoschema) + +--- + +# constructors + +## make + +Smart constructor for creating EpochNo values. + +**Signature** + +```ts +export declare const make: (a: number, options?: Schema.MakeOptions) => number & Brand<"EpochNo"> +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two EpochNo instances are equal. + +**Signature** + +```ts +export declare const equals: (a: EpochNo, b: EpochNo) => boolean +``` + +Added in v2.0.0 + +# errors + +## EpochNoError (class) + +Error class for EpochNo related operations. + +**Signature** + +```ts +export declare class EpochNoError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random EpochNo. + +**Signature** + +```ts +export declare const generator: Arbitrary +``` + +Added in v2.0.0 + +# model + +## EpochNo (type alias) + +Type alias for EpochNo representing blockchain epoch numbers. + +**Signature** + +```ts +export type EpochNo = typeof EpochNoSchema.Type +``` + +Added in v2.0.0 + +# ordering + +## compare + +Compare two EpochNo values. + +**Signature** + +```ts +export declare const compare: (a: EpochNo, b: EpochNo) => -1 | 0 | 1 +``` + +Added in v2.0.0 + +# predicates + +## is + +Check if a value is a valid EpochNo. + +**Signature** + +```ts +export declare const is: (u: unknown, overrideOptions?: ParseOptions | number) => u is number & Brand<"EpochNo"> +``` + +Added in v2.0.0 + +# schemas + +## EpochNoSchema + +Schema for validating epoch numbers (0-255). + +**Signature** + +```ts +export declare const EpochNoSchema: Schema.brand, "EpochNo"> +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/FormatError.mdx b/docs/pages/reference/modules/modules/FormatError.mdx new file mode 100644 index 00000000..5bd648bb --- /dev/null +++ b/docs/pages/reference/modules/modules/FormatError.mdx @@ -0,0 +1,45 @@ +--- +title: FormatError.ts +nav_order: 43 +parent: Modules +--- + +## FormatError overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [make](#make) + - [makeFromUnknown](#makefromunknown) + +--- + +# utils + +## make + +**Signature** + +```ts +export declare const make: ({ + cause, + message +}: { + message?: string + cause?: unknown +}) => { message: string; cause?: undefined } | { message: string; cause: unknown } +``` + +## makeFromUnknown + +**Signature** + +```ts +export declare const makeFromUnknown: ({ + cause +}: { + cause: unknown +}) => { message: string; cause: Error } | { message: string; cause?: undefined } +``` diff --git a/docs/pages/reference/modules/modules/Hash28.mdx b/docs/pages/reference/modules/modules/Hash28.mdx new file mode 100644 index 00000000..8a452df6 --- /dev/null +++ b/docs/pages/reference/modules/modules/Hash28.mdx @@ -0,0 +1,187 @@ +--- +title: Hash28.ts +nav_order: 44 +parent: Modules +--- + +## Hash28 overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [schemas](#schemas) + - [BytesSchema](#bytesschema) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [FromVariableBytes](#fromvariablebytes) + - [HexSchema](#hexschema) + - [VariableBytesSchema](#variablebytesschema) + - [VariableHexSchema](#variablehexschema) +- [utils](#utils) + - [HASH28_BYTES_LENGTH](#hash28_bytes_length) + - [HASH28_HEX_LENGTH](#hash28_hex_length) + - [Hash28Error (class)](#hash28error-class) + +--- + +# encoding/decoding + +## Codec + +Codec for Hash28 encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string) => any; variableBytes: (input: string) => any } + Decode: { bytes: (input: any) => string; variableBytes: (input: any) => string } + EncodeEffect: { + bytes: (input: string) => Effect> + variableBytes: (input: string) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect> + variableBytes: (input: any) => Effect> + } + EncodeEither: { + bytes: (input: string) => Either> + variableBytes: (input: string) => Either> + } + DecodeEither: { + bytes: (input: any) => Either> + variableBytes: (input: any) => Either> + } +} +``` + +Added in v2.0.0 + +# schemas + +## BytesSchema + +Schema for Hash28 bytes with 28-byte length validation. + +**Signature** + +```ts +export declare const BytesSchema: Schema.refine +``` + +Added in v2.0.0 + +## FromBytes + +Schema transformation that converts from Uint8Array to hex string. +Like Bytes.FromBytes but with Hash28-specific length validation. + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.refine, + Schema.refine> +> +``` + +Added in v2.0.0 + +## FromHex + +Schema transformation that converts from hex string to Uint8Array. +Like Bytes.FromHex but with Hash28-specific length validation. + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.refine +> +``` + +Added in v2.0.0 + +## FromVariableBytes + +Schema transformer for variable-length data that converts between hex strings and byte arrays. +Works with 0 to 28 bytes (0 to 56 hex characters). + +**Signature** + +```ts +export declare const FromVariableBytes: Schema.transform< + Schema.refine, + Schema.refine> +> +``` + +Added in v2.0.0 + +## HexSchema + +Schema for Hash28 hex strings with 56-character length validation. + +**Signature** + +```ts +export declare const HexSchema: Schema.refine> +``` + +Added in v2.0.0 + +## VariableBytesSchema + +Schema for variable-length byte arrays from 0 to 28 bytes. +Useful for asset names and other variable-length data structures. + +**Signature** + +```ts +export declare const VariableBytesSchema: Schema.refine +``` + +Added in v2.0.0 + +## VariableHexSchema + +Schema for variable-length hex strings from 0 to 56 characters (0 to 28 bytes). +Useful for asset names and other variable-length data structures. + +**Signature** + +```ts +export declare const VariableHexSchema: Schema.refine> +``` + +Added in v2.0.0 + +# utils + +## HASH28_BYTES_LENGTH + +**Signature** + +```ts +export declare const HASH28_BYTES_LENGTH: 28 +``` + +## HASH28_HEX_LENGTH + +**Signature** + +```ts +export declare const HASH28_HEX_LENGTH: 56 +``` + +## Hash28Error (class) + +**Signature** + +```ts +export declare class Hash28Error +``` diff --git a/docs/pages/reference/modules/modules/Header.mdx b/docs/pages/reference/modules/modules/Header.mdx new file mode 100644 index 00000000..0e55473a --- /dev/null +++ b/docs/pages/reference/modules/modules/Header.mdx @@ -0,0 +1,280 @@ +--- +title: Header.ts +nav_order: 45 +parent: Modules +--- + +## Header overview + +Header module based on Conway CDDL specification + +CDDL: header = [header_body, body_signature : kes_signature] + +Added in v2.0.0 + +--- + +

Table of contents

+ +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [HeaderError (class)](#headererror-class) +- [model](#model) + - [Header (class)](#header-class) +- [predicates](#predicates) + - [isHeader](#isheader) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [FromCDDL](#fromcddl) +- [utils](#utils) + - [Codec](#codec) + +--- + +# equality + +## equals + +Check if two Header instances are equal. + +**Signature** + +```ts +export declare const equals: (a: Header, b: Header) => boolean +``` + +Added in v2.0.0 + +# errors + +## HeaderError (class) + +Error class for Header operations + +**Signature** + +```ts +export declare class HeaderError +``` + +Added in v2.0.0 + +# model + +## Header (class) + +Header implementation using HeaderBody and KesSignature + +CDDL: header = [header_body, body_signature : kes_signature] + +**Signature** + +```ts +export declare class Header +``` + +Added in v2.0.0 + +# predicates + +## isHeader + +Predicate to check if a value is a Header instance. + +**Signature** + +```ts +export declare const isHeader: (value: unknown) => value is Header +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for Header. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2< + Schema.SchemaClass< + readonly [ + bigint, + bigint, + any, + any, + any, + readonly [any, any], + bigint, + any, + readonly [any, bigint, bigint, any], + readonly [bigint, bigint] + ], + readonly [ + bigint, + bigint, + any, + any, + any, + readonly [any, any], + bigint, + any, + readonly [any, bigint, bigint, any], + readonly [bigint, bigint] + ], + never + >, + typeof Schema.Uint8ArrayFromSelf + >, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for Header. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2< + Schema.SchemaClass< + readonly [ + bigint, + bigint, + any, + any, + any, + readonly [any, any], + bigint, + any, + readonly [any, bigint, bigint, any], + readonly [bigint, bigint] + ], + readonly [ + bigint, + bigint, + any, + any, + any, + readonly [any, any], + bigint, + any, + readonly [any, bigint, bigint, any], + readonly [bigint, bigint] + ], + never + >, + typeof Schema.Uint8ArrayFromSelf + >, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for Header. +header = [header_body, body_signature : kes_signature] + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + Schema.Tuple2< + Schema.SchemaClass< + readonly [ + bigint, + bigint, + any, + any, + any, + readonly [any, any], + bigint, + any, + readonly [any, bigint, bigint, any], + readonly [bigint, bigint] + ], + readonly [ + bigint, + bigint, + any, + any, + any, + readonly [any, any], + bigint, + any, + readonly [any, bigint, bigint, any], + readonly [bigint, bigint] + ], + never + >, + typeof Schema.Uint8ArrayFromSelf + >, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: Header) => any; cborHex: (input: Header) => string } + Decode: { cborBytes: (input: any) => Header; cborHex: (input: string) => Header } + EncodeEffect: { + cborBytes: (input: Header) => Effect.Effect> + cborHex: (input: Header) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: Header) => Either> + cborHex: (input: Header) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/docs/pages/reference/modules/modules/HeaderBody.mdx b/docs/pages/reference/modules/modules/HeaderBody.mdx new file mode 100644 index 00000000..04f4a464 --- /dev/null +++ b/docs/pages/reference/modules/modules/HeaderBody.mdx @@ -0,0 +1,247 @@ +--- +title: HeaderBody.ts +nav_order: 46 +parent: Modules +--- + +## HeaderBody overview + +--- + +

Table of contents

+ +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [HeaderBodyError (class)](#headerbodyerror-class) +- [model](#model) + - [HeaderBody (class)](#headerbody-class) +- [predicates](#predicates) + - [isHeaderBody](#isheaderbody) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [FromCDDL](#fromcddl) +- [utils](#utils) + - [Codec](#codec) + +--- + +# equality + +## equals + +Check if two HeaderBody instances are equal. + +**Signature** + +```ts +export declare const equals: (a: HeaderBody, b: HeaderBody) => boolean +``` + +Added in v2.0.0 + +# errors + +## HeaderBodyError (class) + +Error class for HeaderBody related operations. + +**Signature** + +```ts +export declare class HeaderBodyError +``` + +Added in v2.0.0 + +# model + +## HeaderBody (class) + +Schema for HeaderBody representing a block header body. +header_body = [ +block_number : uint64, +slot : uint64, +prev_hash : block_header_hash / null, +issuer_vkey : vkey, +vrf_vkey : vrf_vkey, +vrf_result : vrf_cert, +block_body_size : uint32, +block_body_hash : block_body_hash, +operational_cert : operational_cert, +protocol_version : protocol_version +] + +**Signature** + +```ts +export declare class HeaderBody +``` + +Added in v2.0.0 + +# predicates + +## isHeaderBody + +Check if the given value is a valid HeaderBody. + +**Signature** + +```ts +export declare const isHeaderBody: (u: unknown, overrideOptions?: ParseOptions | number) => u is HeaderBody +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for HeaderBody. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.BigIntFromSelf, + typeof Schema.BigIntFromSelf, + Schema.NullOr, + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass, + typeof Schema.BigIntFromSelf, + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass, + Schema.SchemaClass + ] + >, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for HeaderBody. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.BigIntFromSelf, + typeof Schema.BigIntFromSelf, + Schema.NullOr, + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass, + typeof Schema.BigIntFromSelf, + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass, + Schema.SchemaClass + ] + >, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for HeaderBody. +header_body = [ +block_number : uint64, +slot : uint64, +prev_hash : block_header_hash / null, +issuer_vkey : vkey, +vrf_vkey : vrf_vkey, +vrf_result : vrf_cert, +block_body_size : uint32, +block_body_hash : block_body_hash, +operational_cert : operational_cert, +protocol_version : protocol_version +] + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.BigIntFromSelf, + typeof Schema.BigIntFromSelf, + Schema.NullOr, + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass, + typeof Schema.BigIntFromSelf, + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass, + Schema.SchemaClass + ] + >, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: HeaderBody) => any; cborHex: (input: HeaderBody) => string } + Decode: { cborBytes: (input: any) => HeaderBody; cborHex: (input: string) => HeaderBody } + EncodeEffect: { + cborBytes: (input: HeaderBody) => Effect.Effect> + cborHex: (input: HeaderBody) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: HeaderBody) => Either> + cborHex: (input: HeaderBody) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/docs/pages/reference/modules/modules/IPv4.mdx b/docs/pages/reference/modules/modules/IPv4.mdx new file mode 100644 index 00000000..bb54100e --- /dev/null +++ b/docs/pages/reference/modules/modules/IPv4.mdx @@ -0,0 +1,153 @@ +--- +title: IPv4.ts +nav_order: 47 +parent: Modules +--- + +## IPv4 overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [IPv4Error (class)](#ipv4error-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [IPv4](#ipv4) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [IPv4 (type alias)](#ipv4-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for IPv4 encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"IPv4">) => any; hex: (input: string & Brand<"IPv4">) => string } + Decode: { bytes: (input: any) => string & Brand<"IPv4">; hex: (input: string) => string & Brand<"IPv4"> } + EncodeEffect: { + bytes: (input: string & Brand<"IPv4">) => Effect> + hex: (input: string & Brand<"IPv4">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"IPv4">) => Either> + hex: (input: string & Brand<"IPv4">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two IPv4 instances are equal. + +**Signature** + +```ts +export declare const equals: (a: IPv4, b: IPv4) => boolean +``` + +Added in v2.0.0 + +# errors + +## IPv4Error (class) + +Error class for IPv4 related operations. + +**Signature** + +```ts +export declare class IPv4Error +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random IPv4. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## IPv4 + +Schema for IPv4 representing an IPv4 network address. +Stored as 4 bytes in network byte order (big-endian). + +**Signature** + +```ts +export declare const IPv4: Schema.brand>, "IPv4"> +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.filter, + Schema.filter> + >, + Schema.brand>, "IPv4"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.filter>, + Schema.brand>, "IPv4"> +> +``` + +## IPv4 (type alias) + +**Signature** + +```ts +export type IPv4 = typeof IPv4.Type +``` diff --git a/docs/pages/reference/modules/modules/IPv6.mdx b/docs/pages/reference/modules/modules/IPv6.mdx new file mode 100644 index 00000000..fd87294c --- /dev/null +++ b/docs/pages/reference/modules/modules/IPv6.mdx @@ -0,0 +1,153 @@ +--- +title: IPv6.ts +nav_order: 48 +parent: Modules +--- + +## IPv6 overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [IPv6Error (class)](#ipv6error-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [IPv6](#ipv6) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [IPv6 (type alias)](#ipv6-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for IPv6 encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"IPv6">) => any; hex: (input: string & Brand<"IPv6">) => string } + Decode: { bytes: (input: any) => string & Brand<"IPv6">; hex: (input: string) => string & Brand<"IPv6"> } + EncodeEffect: { + bytes: (input: string & Brand<"IPv6">) => Effect> + hex: (input: string & Brand<"IPv6">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"IPv6">) => Either> + hex: (input: string & Brand<"IPv6">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two IPv6 instances are equal. + +**Signature** + +```ts +export declare const equals: (a: IPv6, b: IPv6) => boolean +``` + +Added in v2.0.0 + +# errors + +## IPv6Error (class) + +Error class for IPv6 related operations. + +**Signature** + +```ts +export declare class IPv6Error +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random IPv6. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## IPv6 + +Schema for IPv6 representing an IPv6 network address. +Stored as 16 bytes in network byte order (big-endian). + +**Signature** + +```ts +export declare const IPv6: Schema.brand>, "IPv6"> +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.filter, + Schema.filter> + >, + Schema.brand>, "IPv6"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.filter>, + Schema.brand>, "IPv6"> +> +``` + +## IPv6 (type alias) + +**Signature** + +```ts +export type IPv6 = typeof IPv6.Type +``` diff --git a/docs/pages/reference/modules/modules/KESVkey.mdx b/docs/pages/reference/modules/modules/KESVkey.mdx new file mode 100644 index 00000000..0d0b6f34 --- /dev/null +++ b/docs/pages/reference/modules/modules/KESVkey.mdx @@ -0,0 +1,157 @@ +--- +title: KESVkey.ts +nav_order: 50 +parent: Modules +--- + +## KESVkey overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [KESVkeyError (class)](#kesvkeyerror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [KESVkey](#kesvkey) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [KESVkey (type alias)](#kesvkey-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for KESVkey encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"KESVkey">) => any; hex: (input: string & Brand<"KESVkey">) => string } + Decode: { bytes: (input: any) => string & Brand<"KESVkey">; hex: (input: string) => string & Brand<"KESVkey"> } + EncodeEffect: { + bytes: (input: string & Brand<"KESVkey">) => Effect> + hex: (input: string & Brand<"KESVkey">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"KESVkey">) => Either> + hex: (input: string & Brand<"KESVkey">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two KESVkey instances are equal. + +**Signature** + +```ts +export declare const equals: (a: KESVkey, b: KESVkey) => boolean +``` + +Added in v2.0.0 + +# errors + +## KESVkeyError (class) + +Error class for KESVkey related operations. + +**Signature** + +```ts +export declare class KESVkeyError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random KESVkey. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## KESVkey + +Schema for KESVkey representing a KES verification key. +kes_vkey = bytes .size 32 +Follows the Conway-era CDDL specification. + +**Signature** + +```ts +export declare const KESVkey: Schema.brand< + Schema.refine>, + "KESVkey" +> +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "KESVkey"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "KESVkey"> +> +``` + +## KESVkey (type alias) + +**Signature** + +```ts +export type KESVkey = typeof KESVkey.Type +``` diff --git a/docs/pages/reference/modules/modules/KesSignature.mdx b/docs/pages/reference/modules/modules/KesSignature.mdx new file mode 100644 index 00000000..174c42af --- /dev/null +++ b/docs/pages/reference/modules/modules/KesSignature.mdx @@ -0,0 +1,163 @@ +--- +title: KesSignature.ts +nav_order: 49 +parent: Modules +--- + +## KesSignature overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [KesSignatureError (class)](#kessignatureerror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [KesSignature](#kessignature) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [KesSignature (type alias)](#kessignature-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for KesSignature encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { + bytes: (input: string & Brand<"KesSignature">) => any + hex: (input: string & Brand<"KesSignature">) => string + } + Decode: { + bytes: (input: any) => string & Brand<"KesSignature"> + hex: (input: string) => string & Brand<"KesSignature"> + } + EncodeEffect: { + bytes: (input: string & Brand<"KesSignature">) => Effect> + hex: (input: string & Brand<"KesSignature">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"KesSignature">) => Either> + hex: (input: string & Brand<"KesSignature">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two KesSignature instances are equal. + +**Signature** + +```ts +export declare const equals: (a: KesSignature, b: KesSignature) => boolean +``` + +Added in v2.0.0 + +# errors + +## KesSignatureError (class) + +Error class for KesSignature related operations. + +**Signature** + +```ts +export declare class KesSignatureError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random KesSignature. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## KesSignature + +Schema for KesSignature representing a KES signature. +kes_signature = bytes .size 448 +Follows the Conway-era CDDL specification. + +**Signature** + +```ts +export declare const KesSignature: Schema.brand< + Schema.filter>, + "KesSignature" +> +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.filter, + Schema.filter> + >, + Schema.brand>, "KesSignature"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.filter>, + Schema.brand>, "KesSignature"> +> +``` + +## KesSignature (type alias) + +**Signature** + +```ts +export type KesSignature = typeof KesSignature.Type +``` diff --git a/docs/pages/reference/modules/modules/KeyHash.mdx b/docs/pages/reference/modules/modules/KeyHash.mdx new file mode 100644 index 00000000..48300d83 --- /dev/null +++ b/docs/pages/reference/modules/modules/KeyHash.mdx @@ -0,0 +1,157 @@ +--- +title: KeyHash.ts +nav_order: 51 +parent: Modules +--- + +## KeyHash overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [KeyHashError (class)](#keyhasherror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [KeyHash](#keyhash) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [KeyHash (type alias)](#keyhash-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for KeyHash encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"KeyHash">) => any; string: (input: string & Brand<"KeyHash">) => string } + Decode: { bytes: (input: any) => string & Brand<"KeyHash">; string: (input: string) => string & Brand<"KeyHash"> } + EncodeEffect: { + bytes: (input: string & Brand<"KeyHash">) => Effect> + string: (input: string & Brand<"KeyHash">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + string: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"KeyHash">) => Either> + string: (input: string & Brand<"KeyHash">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + string: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two KeyHash instances are equal. + +**Signature** + +```ts +export declare const equals: (a: KeyHash, b: KeyHash) => boolean +``` + +Added in v2.0.0 + +# errors + +## KeyHashError (class) + +Error class for KeyHash related operations. + +**Signature** + +```ts +export declare class KeyHashError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random KeyHash. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## KeyHash + +Schema for KeyHash representing a verification key hash. +addr_keyhash = hash28 +Follows CIP-0019 binary representation. + +**Signature** + +```ts +export declare const KeyHash: Schema.brand< + Schema.refine>, + "KeyHash" +> +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "KeyHash"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "KeyHash"> +> +``` + +## KeyHash (type alias) + +**Signature** + +```ts +export type KeyHash = typeof KeyHash.Type +``` diff --git a/docs/pages/reference/modules/modules/Mint.mdx b/docs/pages/reference/modules/modules/Mint.mdx new file mode 100644 index 00000000..ac136176 --- /dev/null +++ b/docs/pages/reference/modules/modules/Mint.mdx @@ -0,0 +1,477 @@ +--- +title: Mint.ts +nav_order: 52 +parent: Modules +--- + +## Mint overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [empty](#empty) + - [singleton](#singleton) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [MintError (class)](#minterror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [Mint (type alias)](#mint-type-alias) +- [predicates](#predicates) + - [has](#has) + - [isEmpty](#isempty) +- [schemas](#schemas) + - [AssetMap](#assetmap) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [Mint](#mint) + - [MintCDDLSchema](#mintcddlschema) +- [transformation](#transformation) + - [get](#get) + - [policyCount](#policycount) + - [removePolicy](#removepolicy) +- [utils](#utils) + - [AssetMap (type alias)](#assetmap-type-alias) + - [Codec](#codec) + - [fromEntries](#fromentries) + - [insert](#insert) + - [prettyPrint](#prettyprint) + - [removeAsset](#removeasset) + +--- + +# constructors + +## empty + +Create empty Mint. + +**Signature** + +```ts +export declare const empty: () => Mint +``` + +Added in v2.0.0 + +## singleton + +Create Mint from a single policy and asset entry. + +**Signature** + +```ts +export declare const singleton: ( + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName, + amount: NonZeroInt64.NonZeroInt64 +) => Mint +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two Mint instances are equal. + +**Signature** + +```ts +export declare const equals: (self: Mint, that: Mint) => boolean +``` + +Added in v2.0.0 + +# errors + +## MintError (class) + +Error class for Mint related operations. + +**Signature** + +```ts +export declare class MintError +``` + +Added in v2.0.0 + +# generators + +## generator + +FastCheck generator for Mint instances. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary< + Map, Map, bigint>> +> +``` + +Added in v2.0.0 + +# model + +## Mint (type alias) + +Type alias for Mint representing a collection of minting/burning operations. +Each policy ID maps to a collection of asset names and their amounts. +Positive amounts indicate minting, negative amounts indicate burning. + +**Signature** + +```ts +export type Mint = typeof Mint.Type +``` + +Added in v2.0.0 + +# predicates + +## has + +Check if Mint contains a specific policy and asset. + +**Signature** + +```ts +export declare const has: (mint: Mint, policyId: PolicyId.PolicyId, assetName: AssetName.AssetName) => boolean +``` + +Added in v2.0.0 + +## isEmpty + +Check if Mint is empty. + +**Signature** + +```ts +export declare const isEmpty: (mint: Mint) => boolean +``` + +Added in v2.0.0 + +# schemas + +## AssetMap + +Schema for inner asset map + +``` +(asset_name => nonZeroInt64). +``` + +**Signature** + +```ts +export declare const AssetMap: Schema.refine< + Map, bigint>, + Schema.MapFromSelf< + Schema.brand>, "AssetName">, + Schema.Union< + [Schema.refine, Schema.refine] + > + > +> +``` + +Added in v2.0.0 + +## FromBytes + +CBOR bytes transformation schema for Mint. +Transforms between Uint8Array and Mint using CBOR encoding. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.MapFromSelf< + typeof Schema.Uint8ArrayFromSelf, + Schema.MapFromSelf + >, + Schema.SchemaClass< + Map, Map, bigint>>, + Map, Map, bigint>>, + never + >, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for Mint. +Transforms between hex string and Mint using CBOR encoding. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.MapFromSelf< + typeof Schema.Uint8ArrayFromSelf, + Schema.MapFromSelf + >, + Schema.SchemaClass< + Map, Map, bigint>>, + Map, Map, bigint>>, + never + >, + never + > + > +> +``` + +Added in v2.0.0 + +## Mint + +Schema for Mint representing token minting/burning operations. + +``` +mint = multiasset + +The structure is: policy_id => { asset_name => nonZeroInt64 } +- Positive values represent minting +- Negative values represent burning +``` + +**Signature** + +```ts +export declare const Mint: Schema.refine< + Map, Map, bigint>>, + Schema.MapFromSelf< + Schema.brand>, "PolicyId">, + Schema.refine< + Map, bigint>, + Schema.MapFromSelf< + Schema.brand>, "AssetName">, + Schema.Union< + [Schema.refine, Schema.refine] + > + > + > + > +> +``` + +Added in v2.0.0 + +## MintCDDLSchema + +CDDL schema for Mint as map structure. + +``` +mint = {* policy_id => {* asset_name => nonZeroInt64}} +``` + +Where: + +- policy_id: 28-byte Uint8Array (from CBOR byte string) +- asset_name: variable-length Uint8Array (from CBOR byte string, can be empty) +- nonZeroInt64: signed 64-bit integer (positive = mint, negative = burn, cannot be zero) + +**Signature** + +```ts +export declare const MintCDDLSchema: Schema.transformOrFail< + Schema.MapFromSelf< + typeof Schema.Uint8ArrayFromSelf, + Schema.MapFromSelf + >, + Schema.SchemaClass< + Map, Map, bigint>>, + Map, Map, bigint>>, + never + >, + never +> +``` + +Added in v2.0.0 + +# transformation + +## get + +Get the amount for a specific policy and asset. + +**Signature** + +```ts +export declare const get: ( + mint: Mint, + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName +) => bigint | undefined +``` + +Added in v2.0.0 + +## policyCount + +Get the number of policies in the Mint. + +**Signature** + +```ts +export declare const policyCount: (mint: Mint) => number +``` + +Added in v2.0.0 + +## removePolicy + +Remove an asset from the Mint. + +**Signature** + +```ts +export declare const removePolicy: (mint: Mint, policyId: PolicyId.PolicyId) => Mint +``` + +Added in v2.0.0 + +# utils + +## AssetMap (type alias) + +**Signature** + +```ts +export type AssetMap = typeof AssetMap.Type +``` + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: (input: Map, Map, bigint>>) => any + cborHex: (input: Map, Map, bigint>>) => string + } + Decode: { + cborBytes: (input: any) => Map, Map, bigint>> + cborHex: (input: string) => Map, Map, bigint>> + } + EncodeEffect: { + cborBytes: ( + input: Map, Map, bigint>> + ) => Effect.Effect> + cborHex: ( + input: Map, Map, bigint>> + ) => Effect.Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect.Effect< + Map, Map, bigint>>, + InstanceType + > + cborHex: ( + input: string + ) => Effect.Effect< + Map, Map, bigint>>, + InstanceType + > + } + EncodeEither: { + cborBytes: ( + input: Map, Map, bigint>> + ) => Either> + cborHex: ( + input: Map, Map, bigint>> + ) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either< + Map, Map, bigint>>, + InstanceType + > + cborHex: ( + input: string + ) => Either< + Map, Map, bigint>>, + InstanceType + > + } +} +``` + +## fromEntries + +Helper function to create Mint from entries array + +**Signature** + +```ts +export declare const fromEntries: ( + entries: Array<[PolicyId.PolicyId, Array<[AssetName.AssetName, NonZeroInt64.NonZeroInt64]>]> +) => Mint +``` + +## insert + +**Signature** + +```ts +export declare const insert: ( + mint: Mint, + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName, + amount: NonZeroInt64.NonZeroInt64 +) => Mint +``` + +## prettyPrint + +**Signature** + +```ts +export declare const prettyPrint: PrettyPrint +``` + +## removeAsset + +**Signature** + +```ts +export declare const removeAsset: (mint: Mint, policyId: PolicyId.PolicyId, assetName: AssetName.AssetName) => Mint +``` diff --git a/docs/pages/reference/modules/modules/MultiAsset.mdx b/docs/pages/reference/modules/modules/MultiAsset.mdx new file mode 100644 index 00000000..d82250e7 --- /dev/null +++ b/docs/pages/reference/modules/modules/MultiAsset.mdx @@ -0,0 +1,472 @@ +--- +title: MultiAsset.ts +nav_order: 53 +parent: Modules +--- + +## MultiAsset overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [empty](#empty) + - [singleton](#singleton) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [MultiAssetError (class)](#multiasseterror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [AssetMap (type alias)](#assetmap-type-alias) + - [MultiAsset (type alias)](#multiasset-type-alias) +- [predicates](#predicates) + - [hasAsset](#hasasset) + - [is](#is) +- [schemas](#schemas) + - [AssetMapSchema](#assetmapschema) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [MultiAssetCDDLSchema](#multiassetcddlschema) + - [MultiAssetSchema](#multiassetschema) +- [transformation](#transformation) + - [addAsset](#addasset) + - [getAsset](#getasset) + - [getAssetsByPolicy](#getassetsbypolicy) + - [getPolicyIds](#getpolicyids) + - [merge](#merge) + - [subtract](#subtract) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## empty + +Create an empty MultiAsset (note: this will fail validation as MultiAsset cannot be empty). +Use this only as a starting point for building a MultiAsset. + +**Signature** + +```ts +export declare const empty: () => Map +``` + +Added in v2.0.0 + +## singleton + +Create a MultiAsset from a single asset. + +**Signature** + +```ts +export declare const singleton: ( + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName, + amount: PositiveCoin.PositiveCoin +) => MultiAsset +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two MultiAsset instances are equal. + +**Signature** + +```ts +export declare const equals: (a: MultiAsset, b: MultiAsset) => boolean +``` + +Added in v2.0.0 + +# errors + +## MultiAssetError (class) + +Error class for MultiAsset related operations. + +**Signature** + +```ts +export declare class MultiAssetError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random MultiAsset. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary< + Map, Map, bigint>> +> +``` + +Added in v2.0.0 + +# model + +## AssetMap (type alias) + +Type alias for the inner asset map. + +**Signature** + +```ts +export type AssetMap = typeof AssetMapSchema.Type +``` + +Added in v2.0.0 + +## MultiAsset (type alias) + +Type alias for MultiAsset representing a collection of native assets. +Each policy ID maps to a collection of asset names and their amounts. +All amounts must be positive (non-zero). + +**Signature** + +```ts +export type MultiAsset = typeof MultiAssetSchema.Type +``` + +Added in v2.0.0 + +# predicates + +## hasAsset + +Check if a MultiAsset contains a specific asset. + +**Signature** + +```ts +export declare const hasAsset: ( + multiAsset: MultiAsset, + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName +) => boolean +``` + +Added in v2.0.0 + +## is + +Check if a value is a valid MultiAsset. + +**Signature** + +```ts +export declare const is: (value: unknown) => value is MultiAsset +``` + +Added in v2.0.0 + +# schemas + +## AssetMapSchema + +Schema for inner asset map (asset_name => positive_coin). + +**Signature** + +```ts +export declare const AssetMapSchema: Schema.refine< + Map, bigint>, + Schema.Map$< + Schema.brand>, "AssetName">, + Schema.refine + > +> +``` + +Added in v2.0.0 + +## FromBytes + +CBOR bytes transformation schema for MultiAsset. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.MapFromSelf< + typeof Schema.Uint8ArrayFromSelf, + Schema.MapFromSelf + >, + Schema.SchemaClass< + Map, Map, bigint>>, + Map, Map, bigint>>, + never + >, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for MultiAsset. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.MapFromSelf< + typeof Schema.Uint8ArrayFromSelf, + Schema.MapFromSelf + >, + Schema.SchemaClass< + Map, Map, bigint>>, + Map, Map, bigint>>, + never + >, + never + > + > +> +``` + +Added in v2.0.0 + +## MultiAssetCDDLSchema + +CDDL schema for MultiAsset. + +``` +multiasset = {+ policy_id => {+ asset_name => positive_coin}} +``` + +**Signature** + +```ts +export declare const MultiAssetCDDLSchema: Schema.transformOrFail< + Schema.MapFromSelf< + typeof Schema.Uint8ArrayFromSelf, + Schema.MapFromSelf + >, + Schema.SchemaClass< + Map, Map, bigint>>, + Map, Map, bigint>>, + never + >, + never +> +``` + +Added in v2.0.0 + +## MultiAssetSchema + +Schema for MultiAsset representing native assets. + +``` +multiasset = {+ policy_id => {+ asset_name => a0}} +case: multiasset = {+ policy_id => {+ asset_name => positive_coin}} +``` + +**Signature** + +```ts +export declare const MultiAssetSchema: Schema.refine< + Map, Map, bigint>>, + Schema.MapFromSelf< + Schema.brand>, "PolicyId">, + Schema.refine< + Map, bigint>, + Schema.Map$< + Schema.brand>, "AssetName">, + Schema.refine + > + > + > +> +``` + +Added in v2.0.0 + +# transformation + +## addAsset + +Add an asset to a MultiAsset, combining amounts if the asset already exists. + +**Signature** + +```ts +export declare const addAsset: ( + multiAsset: MultiAsset, + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName, + amount: PositiveCoin.PositiveCoin +) => MultiAsset +``` + +Added in v2.0.0 + +## getAsset + +Get the amount of a specific asset from a MultiAsset. + +**Signature** + +```ts +export declare const getAsset: ( + multiAsset: MultiAsset, + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName +) => { _tag: "Some"; value: bigint } | { _tag: "None"; value?: undefined } +``` + +Added in v2.0.0 + +## getAssetsByPolicy + +Get all assets for a specific policy ID. + +**Signature** + +```ts +export declare const getAssetsByPolicy: ( + multiAsset: MultiAsset, + policyId: PolicyId.PolicyId +) => { _tag: "Some"; value: Map, bigint> } | { _tag: "None"; value?: undefined } +``` + +Added in v2.0.0 + +## getPolicyIds + +Get all policy IDs in a MultiAsset. + +**Signature** + +```ts +export declare const getPolicyIds: (multiAsset: MultiAsset) => IterableIterator> +``` + +Added in v2.0.0 + +## merge + +Merge two MultiAsset instances, combining amounts for assets that exist in both. + +**Signature** + +```ts +export declare const merge: (a: MultiAsset, b: MultiAsset) => MultiAsset +``` + +Added in v2.0.0 + +## subtract + +Subtract MultiAsset b from MultiAsset a. +Returns a new MultiAsset with amounts reduced by the amounts in b. +If any asset would result in zero or negative amount, it's removed from the result. +If the result would be empty, an error is thrown since MultiAsset cannot be empty. + +**Signature** + +```ts +export declare const subtract: (a: MultiAsset, b: MultiAsset) => MultiAsset +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: (input: Map, Map, bigint>>) => any + cborHex: (input: Map, Map, bigint>>) => string + } + Decode: { + cborBytes: (input: any) => Map, Map, bigint>> + cborHex: (input: string) => Map, Map, bigint>> + } + EncodeEffect: { + cborBytes: ( + input: Map, Map, bigint>> + ) => Effect.Effect> + cborHex: ( + input: Map, Map, bigint>> + ) => Effect.Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect.Effect< + Map, Map, bigint>>, + InstanceType + > + cborHex: ( + input: string + ) => Effect.Effect< + Map, Map, bigint>>, + InstanceType + > + } + EncodeEither: { + cborBytes: ( + input: Map, Map, bigint>> + ) => Either> + cborHex: ( + input: Map, Map, bigint>> + ) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either< + Map, Map, bigint>>, + InstanceType + > + cborHex: ( + input: string + ) => Either< + Map, Map, bigint>>, + InstanceType + > + } +} +``` diff --git a/docs/pages/reference/modules/modules/MultiHostName.mdx b/docs/pages/reference/modules/modules/MultiHostName.mdx new file mode 100644 index 00000000..e186f6f1 --- /dev/null +++ b/docs/pages/reference/modules/modules/MultiHostName.mdx @@ -0,0 +1,202 @@ +--- +title: MultiHostName.ts +nav_order: 54 +parent: Modules +--- + +## MultiHostName overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [make](#make) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [MultiHostNameError (class)](#multihostnameerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [MultiHostName (class)](#multihostname-class) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [FromCDDL](#fromcddl) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## make + +Create a MultiHostName instance. + +**Signature** + +```ts +export declare const make: (dnsName: DnsName.DnsName) => MultiHostName +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two MultiHostName instances are equal. + +**Signature** + +```ts +export declare const equals: (self: MultiHostName, that: MultiHostName) => boolean +``` + +Added in v2.0.0 + +# errors + +## MultiHostNameError (class) + +Error class for MultiHostName related operations. + +**Signature** + +```ts +export declare class MultiHostNameError +``` + +Added in v2.0.0 + +# generators + +## generator + +FastCheck generator for MultiHostName instances. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## MultiHostName (class) + +Schema for MultiHostName representing a multiple host name record. +multi_host_name = (2, dns_name) + +**Signature** + +```ts +export declare class MultiHostName +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for MultiHostName. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, typeof Schema.String>, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for MultiHostName. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, typeof Schema.String>, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for MultiHostName. +multi_host_name = (2, dns_name) + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + Schema.Tuple2, typeof Schema.String>, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: MultiHostName) => any; cborHex: (input: MultiHostName) => string } + Decode: { cborBytes: (input: any) => MultiHostName; cborHex: (input: string) => MultiHostName } + EncodeEffect: { + cborBytes: (input: MultiHostName) => Effect.Effect> + cborHex: (input: MultiHostName) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: MultiHostName) => Either> + cborHex: (input: MultiHostName) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/docs/pages/reference/modules/modules/NativeScriptJSON.mdx b/docs/pages/reference/modules/modules/NativeScriptJSON.mdx new file mode 100644 index 00000000..dbad7951 --- /dev/null +++ b/docs/pages/reference/modules/modules/NativeScriptJSON.mdx @@ -0,0 +1,93 @@ +--- +title: NativeScriptJSON.ts +nav_order: 55 +parent: Modules +--- + +## NativeScriptJSON overview + +--- + +

Table of contents

+ +- [model](#model) + - [NativeJSON (type alias)](#nativejson-type-alias) +- [schemas](#schemas) + - [NativeJSONSchema](#nativejsonschema) + +--- + +# model + +## NativeJSON (type alias) + +Represents a cardano-cli JSON script syntax + +Native type follows the standard described in the +https://github.com/IntersectMBO/cardano-node/blob/1.26.1-with-cardano-cli/doc/reference/simple-scripts.md#json-script-syntax + +**Signature** + +```ts +export type NativeJSON = + | { + type: "sig" + keyHash: string + } + | { + type: "before" + slot: number + } + | { + type: "after" + slot: number + } + | { + type: "all" + scripts: ReadonlyArray + } + | { + type: "any" + scripts: ReadonlyArray + } + | { + type: "atLeast" + required: number + scripts: ReadonlyArray + } +``` + +Added in v2.0.0 + +# schemas + +## NativeJSONSchema + +Schema for NativeJSON union type. + +**Signature** + +```ts +export declare const NativeJSONSchema: Schema.Union< + [ + Schema.Struct<{ type: Schema.Literal<["sig"]>; keyHash: typeof Schema.String }>, + Schema.Struct<{ type: Schema.Literal<["before"]>; slot: typeof Schema.Number }>, + Schema.Struct<{ type: Schema.Literal<["after"]>; slot: typeof Schema.Number }>, + Schema.Struct<{ + type: Schema.Literal<["all"]> + scripts: Schema.Array$> + }>, + Schema.Struct<{ + type: Schema.Literal<["any"]> + scripts: Schema.Array$> + }>, + Schema.Struct<{ + type: Schema.Literal<["atLeast"]> + required: typeof Schema.Number + scripts: Schema.Array$> + }> + ] +> +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/NativeScripts.mdx b/docs/pages/reference/modules/modules/NativeScripts.mdx new file mode 100644 index 00000000..433ec5f7 --- /dev/null +++ b/docs/pages/reference/modules/modules/NativeScripts.mdx @@ -0,0 +1,683 @@ +--- +title: NativeScripts.ts +nav_order: 56 +parent: Modules +--- + +## NativeScripts overview + +--- + +

Table of contents

+ +- [conversion](#conversion) + - [internalJSONToNative](#internaljsontonative) + - [internalNativeToJson](#internalnativetojson) +- [decoding](#decoding) + - [internalDecodeCDDL](#internaldecodecddl) +- [encoding](#encoding) + - [internalEncodeCDDL](#internalencodecddl) +- [model](#model) + - [NativeScriptCDDL (type alias)](#nativescriptcddl-type-alias) +- [schemas](#schemas) + - [NativeJSON](#nativejson) + - [NativeScriptCDDL](#nativescriptcddl) + - [SlotNumber](#slotnumber) +- [utils](#utils) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [Codec](#codec) + - [InvalidBefore (class)](#invalidbefore-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) + - [InvalidBeforeEncoded (interface)](#invalidbeforeencoded-interface) + - [InvalidHereafter (class)](#invalidhereafter-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method-1) + - [InvalidHereafterEncoded (interface)](#invalidhereafterencoded-interface) + - [NativeScript](#nativescript) + - [NativeScript (type alias)](#nativescript-type-alias) + - [NativeScriptEncoded (type alias)](#nativescriptencoded-type-alias) + - [NativeScriptError (class)](#nativescripterror-class) + - [ScriptAll (class)](#scriptall-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method-2) + - [ScriptAllEncoded (interface)](#scriptallencoded-interface) + - [ScriptAny (class)](#scriptany-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method-3) + - [ScriptAnyEncoded (interface)](#scriptanyencoded-interface) + - [ScriptNOfK (class)](#scriptnofk-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method-4) + - [ScriptNOfKEncoded (interface)](#scriptnofkencoded-interface) + - [ScriptPubKey (class)](#scriptpubkey-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method-5) + - [ScriptPubKeyEncoded (interface)](#scriptpubkeyencoded-interface) + - [SlotNumber (type alias)](#slotnumber-type-alias) + +--- + +# conversion + +## internalJSONToNative + +Convert a NativeJSON to a NativeScript. + +**Signature** + +```ts +export declare const internalJSONToNative: ( + nativeJSON: NativeScriptJSON.NativeJSON +) => Effect.Effect +``` + +Added in v2.0.0 + +## internalNativeToJson + +Convert a NativeScript to a NativeJSON. + +**Signature** + +```ts +export declare const internalNativeToJson: ( + nativeScript: NativeScript +) => Effect.Effect +``` + +Added in v2.0.0 + +# decoding + +## internalDecodeCDDL + +Convert a CDDL representation back to a NativeScript. + +This function recursively decodes nested CBOR scripts and constructs +the appropriate NativeScript instances. + +**Signature** + +```ts +export declare const internalDecodeCDDL: (cborTuple: NativeScriptCDDL) => Effect.Effect +``` + +Added in v2.0.0 + +# encoding + +## internalEncodeCDDL + +Convert a NativeScript to its CDDL representation. + +**Signature** + +```ts +export declare const internalEncodeCDDL: (nativeScript: NativeScript) => Effect.Effect +``` + +Added in v2.0.0 + +# model + +## NativeScriptCDDL (type alias) + +CDDL representation of a native script as a union of tuple types. + +This type represents the low-level CBOR structure of native scripts, +where each variant is encoded as a tagged tuple. + +**Signature** + +```ts +export type NativeScriptCDDL = + | readonly [0, Uint8Array] + | readonly [1, ReadonlyArray] + | readonly [2, ReadonlyArray] + | readonly [3, bigint, ReadonlyArray] + | readonly [4, bigint] + | readonly [5, bigint] +``` + +Added in v2.0.0 + +# schemas + +## NativeJSON + +Schema transformer for converting between NativeJSON and NativeScript. + +**Signature** + +```ts +export declare const NativeJSON: Schema.transformOrFail< + Schema.Union< + [ + Schema.Struct<{ type: Schema.Literal<["sig"]>; keyHash: typeof Schema.String }>, + Schema.Struct<{ type: Schema.Literal<["before"]>; slot: typeof Schema.Number }>, + Schema.Struct<{ type: Schema.Literal<["after"]>; slot: typeof Schema.Number }>, + Schema.Struct<{ + type: Schema.Literal<["all"]> + scripts: Schema.Array$> + }>, + Schema.Struct<{ + type: Schema.Literal<["any"]> + scripts: Schema.Array$> + }>, + Schema.Struct<{ + type: Schema.Literal<["atLeast"]> + required: typeof Schema.Number + scripts: Schema.Array$> + }> + ] + >, + Schema.Union< + [ + typeof ScriptPubKey, + typeof ScriptAll, + typeof ScriptAny, + typeof ScriptNOfK, + typeof InvalidBefore, + typeof InvalidHereafter + ] + >, + never +> +``` + +Added in v2.0.0 + +## NativeScriptCDDL + +Schema for NativeScriptCDDL union type. + +**Signature** + +```ts +export declare const NativeScriptCDDL: Schema.transformOrFail< + Schema.Union< + [ + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple2, Schema.Array$>>, + Schema.Tuple2, Schema.Array$>>, + Schema.Tuple< + [ + Schema.Literal<[3]>, + typeof Schema.BigIntFromSelf, + Schema.Array$> + ] + >, + Schema.Tuple2, typeof Schema.BigIntFromSelf>, + Schema.Tuple2, typeof Schema.BigIntFromSelf> + ] + >, + Schema.SchemaClass< + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + never + >, + never +> +``` + +Added in v2.0.0 + +## SlotNumber + +Schema for slot numbers used in time-based native script constraints. + +**Signature** + +```ts +export declare const SlotNumber: Schema.refine +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Union< + [ + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple2, Schema.Array$>>, + Schema.Tuple2, Schema.Array$>>, + Schema.Tuple< + [ + Schema.Literal<[3]>, + typeof Schema.BigIntFromSelf, + Schema.Array$> + ] + >, + Schema.Tuple2, typeof Schema.BigIntFromSelf>, + Schema.Tuple2, typeof Schema.BigIntFromSelf> + ] + >, + Schema.SchemaClass< + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + never + >, + never + > +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Union< + [ + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple2, Schema.Array$>>, + Schema.Tuple2, Schema.Array$>>, + Schema.Tuple< + [ + Schema.Literal<[3]>, + typeof Schema.BigIntFromSelf, + Schema.Array$> + ] + >, + Schema.Tuple2, typeof Schema.BigIntFromSelf>, + Schema.Tuple2, typeof Schema.BigIntFromSelf> + ] + >, + Schema.SchemaClass< + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + never + >, + never + > + > +> +``` + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: (input: ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter) => any + cborHex: (input: ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter) => string + nativeJSON: ( + input: ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + ) => + | { readonly keyHash: string; readonly type: "sig" } + | { readonly slot: number; readonly type: "before" } + | { readonly slot: number; readonly type: "after" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "all" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "any" } + | { + readonly scripts: readonly NativeScriptJSON.NativeJSON[] + readonly type: "atLeast" + readonly required: number + } + } + Decode: { + cborBytes: (input: any) => ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + cborHex: (input: string) => ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + nativeJSON: ( + input: + | { readonly keyHash: string; readonly type: "sig" } + | { readonly slot: number; readonly type: "before" } + | { readonly slot: number; readonly type: "after" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "all" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "any" } + | { + readonly scripts: readonly NativeScriptJSON.NativeJSON[] + readonly type: "atLeast" + readonly required: number + } + ) => ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + } + EncodeEffect: { + cborBytes: ( + input: ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + ) => Effect.Effect> + cborHex: ( + input: ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + ) => Effect.Effect> + nativeJSON: ( + input: ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + ) => Effect.Effect< + | { readonly keyHash: string; readonly type: "sig" } + | { readonly slot: number; readonly type: "before" } + | { readonly slot: number; readonly type: "after" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "all" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "any" } + | { + readonly scripts: readonly NativeScriptJSON.NativeJSON[] + readonly type: "atLeast" + readonly required: number + }, + InstanceType + > + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect.Effect< + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + InstanceType + > + cborHex: ( + input: string + ) => Effect.Effect< + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + InstanceType + > + nativeJSON: ( + input: + | { readonly keyHash: string; readonly type: "sig" } + | { readonly slot: number; readonly type: "before" } + | { readonly slot: number; readonly type: "after" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "all" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "any" } + | { + readonly scripts: readonly NativeScriptJSON.NativeJSON[] + readonly type: "atLeast" + readonly required: number + } + ) => Effect.Effect< + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + InstanceType + > + } + EncodeEither: { + cborBytes: ( + input: ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + ) => Either> + cborHex: ( + input: ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + ) => Either> + nativeJSON: ( + input: ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + ) => Either< + | { readonly keyHash: string; readonly type: "sig" } + | { readonly slot: number; readonly type: "before" } + | { readonly slot: number; readonly type: "after" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "all" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "any" } + | { + readonly scripts: readonly NativeScriptJSON.NativeJSON[] + readonly type: "atLeast" + readonly required: number + }, + InstanceType + > + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either< + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + InstanceType + > + cborHex: ( + input: string + ) => Either< + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + InstanceType + > + nativeJSON: ( + input: + | { readonly keyHash: string; readonly type: "sig" } + | { readonly slot: number; readonly type: "before" } + | { readonly slot: number; readonly type: "after" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "all" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "any" } + | { + readonly scripts: readonly NativeScriptJSON.NativeJSON[] + readonly type: "atLeast" + readonly required: number + } + ) => Either< + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + InstanceType + > + } +} +``` + +## InvalidBefore (class) + +**Signature** + +```ts +export declare class InvalidBefore +``` + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +## InvalidBeforeEncoded (interface) + +**Signature** + +```ts +export interface InvalidBeforeEncoded { + readonly _tag: "InvalidBefore" + readonly slot: number +} +``` + +## InvalidHereafter (class) + +**Signature** + +```ts +export declare class InvalidHereafter +``` + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +## InvalidHereafterEncoded (interface) + +**Signature** + +```ts +export interface InvalidHereafterEncoded { + readonly _tag: "InvalidHereafter" + readonly slot: number +} +``` + +## NativeScript + +**Signature** + +```ts +export declare const NativeScript: Schema.Union< + [ + typeof ScriptPubKey, + typeof ScriptAll, + typeof ScriptAny, + typeof ScriptNOfK, + typeof InvalidBefore, + typeof InvalidHereafter + ] +> +``` + +## NativeScript (type alias) + +**Signature** + +```ts +export type NativeScript = ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter +``` + +## NativeScriptEncoded (type alias) + +**Signature** + +```ts +export type NativeScriptEncoded = + | ScriptPubKeyEncoded + | ScriptAllEncoded + | ScriptAnyEncoded + | ScriptNOfKEncoded + | InvalidBeforeEncoded + | InvalidHereafterEncoded +``` + +## NativeScriptError (class) + +**Signature** + +```ts +export declare class NativeScriptError +``` + +## ScriptAll (class) + +**Signature** + +```ts +export declare class ScriptAll +``` + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +## ScriptAllEncoded (interface) + +**Signature** + +```ts +export interface ScriptAllEncoded { + readonly _tag: "ScriptAll" + readonly scripts: ReadonlyArray +} +``` + +## ScriptAny (class) + +**Signature** + +```ts +export declare class ScriptAny +``` + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +## ScriptAnyEncoded (interface) + +**Signature** + +```ts +export interface ScriptAnyEncoded { + readonly _tag: "ScriptAny" + readonly scripts: ReadonlyArray +} +``` + +## ScriptNOfK (class) + +**Signature** + +```ts +export declare class ScriptNOfK +``` + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +## ScriptNOfKEncoded (interface) + +**Signature** + +```ts +export interface ScriptNOfKEncoded { + readonly _tag: "ScriptNOfK" + readonly n: bigint + readonly scripts: ReadonlyArray +} +``` + +## ScriptPubKey (class) + +**Signature** + +```ts +export declare class ScriptPubKey +``` + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +## ScriptPubKeyEncoded (interface) + +**Signature** + +```ts +export interface ScriptPubKeyEncoded { + readonly _tag: "ScriptPubKey" + readonly keyHash: typeof KeyHash.KeyHash.Encoded +} +``` + +## SlotNumber (type alias) + +**Signature** + +```ts +export type SlotNumber = typeof SlotNumber.Type +``` diff --git a/docs/pages/reference/modules/modules/Natural.mdx b/docs/pages/reference/modules/modules/Natural.mdx new file mode 100644 index 00000000..d4279660 --- /dev/null +++ b/docs/pages/reference/modules/modules/Natural.mdx @@ -0,0 +1,56 @@ +--- +title: Natural.ts +nav_order: 57 +parent: Modules +--- + +## Natural overview + +--- + +

Table of contents

+ +- [predicates](#predicates) + - [generator](#generator) +- [utils](#utils) + - [Natural](#natural) + - [Natural (type alias)](#natural-type-alias) + +--- + +# predicates + +## generator + +Check if the given value is a valid PositiveNumber + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# utils + +## Natural + +Natural number constructors +Used for validating non negative integers + +**Signature** + +```ts +export declare const Natural: Schema.brand +``` + +Added in v2.0.0 + +## Natural (type alias) + +**Signature** + +```ts +export type Natural = typeof Natural.Type +``` diff --git a/docs/pages/reference/modules/modules/Network.mdx b/docs/pages/reference/modules/modules/Network.mdx new file mode 100644 index 00000000..a2623a8b --- /dev/null +++ b/docs/pages/reference/modules/modules/Network.mdx @@ -0,0 +1,13 @@ +--- +title: Network.ts +nav_order: 58 +parent: Modules +--- + +## Network overview + +--- + +

Table of contents

+ +--- diff --git a/docs/pages/reference/modules/modules/NetworkId.mdx b/docs/pages/reference/modules/modules/NetworkId.mdx new file mode 100644 index 00000000..eb274273 --- /dev/null +++ b/docs/pages/reference/modules/modules/NetworkId.mdx @@ -0,0 +1,53 @@ +--- +title: NetworkId.ts +nav_order: 59 +parent: Modules +--- + +## NetworkId overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [NetworkId](#networkid) + - [NetworkId (type alias)](#networkid-type-alias) + - [generator](#generator) + - [make](#make) + +--- + +# utils + +## NetworkId + +**Signature** + +```ts +export declare const NetworkId: Schema.brand, "NetworkId"> +``` + +## NetworkId (type alias) + +**Signature** + +```ts +export type NetworkId = typeof NetworkId.Type +``` + +## generator + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +## make + +**Signature** + +```ts +export declare const make: (a: number, options?: Schema.MakeOptions) => number & Brand<"NetworkId"> +``` diff --git a/docs/pages/reference/modules/modules/NonZeroInt64.mdx b/docs/pages/reference/modules/modules/NonZeroInt64.mdx new file mode 100644 index 00000000..3c3f78ad --- /dev/null +++ b/docs/pages/reference/modules/modules/NonZeroInt64.mdx @@ -0,0 +1,276 @@ +--- +title: NonZeroInt64.ts +nav_order: 60 +parent: Modules +--- + +## NonZeroInt64 overview + +--- + +

Table of contents

+ +- [constants](#constants) + - [NEG_INT64_MIN](#neg_int64_min) +- [constructors](#constructors) + - [make](#make) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [NonZeroInt64Error (class)](#nonzeroint64error-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [NonZeroInt64 (type alias)](#nonzeroint64-type-alias) +- [ordering](#ordering) + - [compare](#compare) +- [predicates](#predicates) + - [is](#is) + - [isNegative](#isnegative) + - [isPositive](#ispositive) +- [schemas](#schemas) + - [NegInt64Schema](#negint64schema) + - [NonZeroInt64Schema](#nonzeroint64schema) + - [PosInt64Schema](#posint64schema) +- [transformation](#transformation) + - [abs](#abs) + - [negate](#negate) +- [utils](#utils) + - [NEG_INT64_MAX](#neg_int64_max) + - [POS_INT64_MAX](#pos_int64_max) + - [POS_INT64_MIN](#pos_int64_min) + +--- + +# constants + +## NEG_INT64_MIN + +Constants for NonZeroInt64 validation. +negInt64 = -9223372036854775808 .. -1 +posInt64 = 1 .. 9223372036854775807 +nonZeroInt64 = negInt64/ posInt64 + +**Signature** + +```ts +export declare const NEG_INT64_MIN: -9223372036854775808n +``` + +Added in v2.0.0 + +# constructors + +## make + +Smart constructor for creating NonZeroInt64 values. + +**Signature** + +```ts +export declare const make: (i: bigint, overrideOptions?: ParseOptions) => bigint +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two NonZeroInt64 values are equal. + +**Signature** + +```ts +export declare const equals: (a: NonZeroInt64, b: NonZeroInt64) => boolean +``` + +Added in v2.0.0 + +# errors + +## NonZeroInt64Error (class) + +Error class for NonZeroInt64 related operations. + +**Signature** + +```ts +export declare class NonZeroInt64Error +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random NonZeroInt64. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## NonZeroInt64 (type alias) + +Type alias for NonZeroInt64 representing non-zero signed 64-bit integers. +Used in minting operations where zero amounts are not allowed. + +**Signature** + +```ts +export type NonZeroInt64 = typeof NonZeroInt64Schema.Type +``` + +Added in v2.0.0 + +# ordering + +## compare + +Compare two NonZeroInt64 values. + +**Signature** + +```ts +export declare const compare: (a: NonZeroInt64, b: NonZeroInt64) => -1 | 0 | 1 +``` + +Added in v2.0.0 + +# predicates + +## is + +Check if a value is a valid NonZeroInt64. + +**Signature** + +```ts +export declare const is: (u: unknown, overrideOptions?: ParseOptions | number) => u is bigint +``` + +Added in v2.0.0 + +## isNegative + +Check if a NonZeroInt64 is negative. + +**Signature** + +```ts +export declare const isNegative: (value: NonZeroInt64) => boolean +``` + +Added in v2.0.0 + +## isPositive + +Check if a NonZeroInt64 is positive. + +**Signature** + +```ts +export declare const isPositive: (value: NonZeroInt64) => boolean +``` + +Added in v2.0.0 + +# schemas + +## NegInt64Schema + +Schema for validating negative 64-bit integers (-9223372036854775808 to -1). + +**Signature** + +```ts +export declare const NegInt64Schema: Schema.refine +``` + +Added in v2.0.0 + +## NonZeroInt64Schema + +Schema for NonZeroInt64 representing non-zero 64-bit signed integers. +nonZeroInt64 = negInt64/ posInt64 + +**Signature** + +```ts +export declare const NonZeroInt64Schema: Schema.Union< + [Schema.refine, Schema.refine] +> +``` + +Added in v2.0.0 + +## PosInt64Schema + +Schema for validating positive 64-bit integers (1 to 9223372036854775807). + +**Signature** + +```ts +export declare const PosInt64Schema: Schema.refine +``` + +Added in v2.0.0 + +# transformation + +## abs + +Get the absolute value of a NonZeroInt64. + +**Signature** + +```ts +export declare const abs: (value: NonZeroInt64) => NonZeroInt64 +``` + +Added in v2.0.0 + +## negate + +Negate a NonZeroInt64. + +**Signature** + +```ts +export declare const negate: (value: NonZeroInt64) => NonZeroInt64 +``` + +Added in v2.0.0 + +# utils + +## NEG_INT64_MAX + +**Signature** + +```ts +export declare const NEG_INT64_MAX: -1n +``` + +## POS_INT64_MAX + +**Signature** + +```ts +export declare const POS_INT64_MAX: 9223372036854775807n +``` + +## POS_INT64_MIN + +**Signature** + +```ts +export declare const POS_INT64_MIN: 1n +``` diff --git a/docs/pages/reference/modules/modules/Numeric.mdx b/docs/pages/reference/modules/modules/Numeric.mdx new file mode 100644 index 00000000..f392b3fd --- /dev/null +++ b/docs/pages/reference/modules/modules/Numeric.mdx @@ -0,0 +1,377 @@ +--- +title: Numeric.ts +nav_order: 61 +parent: Modules +--- + +## Numeric overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [INT16_MAX](#int16_max) + - [INT16_MIN](#int16_min) + - [INT32_MAX](#int32_max) + - [INT32_MIN](#int32_min) + - [INT64_MAX](#int64_max) + - [INT64_MIN](#int64_min) + - [INT8_MAX](#int8_max) + - [INT8_MIN](#int8_min) + - [Int16](#int16) + - [Int16 (type alias)](#int16-type-alias) + - [Int16Generator](#int16generator) + - [Int32](#int32) + - [Int32 (type alias)](#int32-type-alias) + - [Int32Generator](#int32generator) + - [Int64](#int64) + - [Int64 (type alias)](#int64-type-alias) + - [Int64Generator](#int64generator) + - [Int8](#int8) + - [Int8 (type alias)](#int8-type-alias) + - [Int8Generator](#int8generator) + - [UINT16_MAX](#uint16_max) + - [UINT16_MIN](#uint16_min) + - [UINT32_MAX](#uint32_max) + - [UINT32_MIN](#uint32_min) + - [UINT64_MAX](#uint64_max) + - [UINT64_MIN](#uint64_min) + - [UINT8_MAX](#uint8_max) + - [UINT8_MIN](#uint8_min) + - [Uint16 (type alias)](#uint16-type-alias) + - [Uint16Generator](#uint16generator) + - [Uint16Schema](#uint16schema) + - [Uint32 (type alias)](#uint32-type-alias) + - [Uint32Generator](#uint32generator) + - [Uint32Schema](#uint32schema) + - [Uint64 (type alias)](#uint64-type-alias) + - [Uint64Generator](#uint64generator) + - [Uint64Schema](#uint64schema) + - [Uint8 (type alias)](#uint8-type-alias) + - [Uint8Generator](#uint8generator) + - [Uint8Schema](#uint8schema) + +--- + +# utils + +## INT16_MAX + +**Signature** + +```ts +export declare const INT16_MAX: 32767 +``` + +## INT16_MIN + +**Signature** + +```ts +export declare const INT16_MIN: -32768 +``` + +## INT32_MAX + +**Signature** + +```ts +export declare const INT32_MAX: 2147483647 +``` + +## INT32_MIN + +**Signature** + +```ts +export declare const INT32_MIN: -2147483648 +``` + +## INT64_MAX + +**Signature** + +```ts +export declare const INT64_MAX: 9223372036854775807n +``` + +## INT64_MIN + +**Signature** + +```ts +export declare const INT64_MIN: -9223372036854775808n +``` + +## INT8_MAX + +**Signature** + +```ts +export declare const INT8_MAX: 127 +``` + +## INT8_MIN + +**Signature** + +```ts +export declare const INT8_MIN: -128 +``` + +## Int16 + +**Signature** + +```ts +export declare const Int16: Schema.refine +``` + +## Int16 (type alias) + +**Signature** + +```ts +export type Int16 = typeof Int16.Type +``` + +## Int16Generator + +**Signature** + +```ts +export declare const Int16Generator: FastCheck.Arbitrary +``` + +## Int32 + +**Signature** + +```ts +export declare const Int32: Schema.refine +``` + +## Int32 (type alias) + +**Signature** + +```ts +export type Int32 = typeof Int32.Type +``` + +## Int32Generator + +**Signature** + +```ts +export declare const Int32Generator: FastCheck.Arbitrary +``` + +## Int64 + +**Signature** + +```ts +export declare const Int64: Schema.refine +``` + +## Int64 (type alias) + +**Signature** + +```ts +export type Int64 = typeof Int64.Type +``` + +## Int64Generator + +**Signature** + +```ts +export declare const Int64Generator: FastCheck.Arbitrary +``` + +## Int8 + +**Signature** + +```ts +export declare const Int8: Schema.refine +``` + +## Int8 (type alias) + +**Signature** + +```ts +export type Int8 = typeof Int8.Type +``` + +## Int8Generator + +**Signature** + +```ts +export declare const Int8Generator: FastCheck.Arbitrary +``` + +## UINT16_MAX + +**Signature** + +```ts +export declare const UINT16_MAX: 65535 +``` + +## UINT16_MIN + +**Signature** + +```ts +export declare const UINT16_MIN: 0 +``` + +## UINT32_MAX + +**Signature** + +```ts +export declare const UINT32_MAX: 4294967295 +``` + +## UINT32_MIN + +**Signature** + +```ts +export declare const UINT32_MIN: 0 +``` + +## UINT64_MAX + +**Signature** + +```ts +export declare const UINT64_MAX: 18446744073709551615n +``` + +## UINT64_MIN + +**Signature** + +```ts +export declare const UINT64_MIN: 0n +``` + +## UINT8_MAX + +**Signature** + +```ts +export declare const UINT8_MAX: 255 +``` + +## UINT8_MIN + +**Signature** + +```ts +export declare const UINT8_MIN: 0 +``` + +## Uint16 (type alias) + +**Signature** + +```ts +export type Uint16 = typeof Uint16Schema.Type +``` + +## Uint16Generator + +**Signature** + +```ts +export declare const Uint16Generator: FastCheck.Arbitrary +``` + +## Uint16Schema + +**Signature** + +```ts +export declare const Uint16Schema: Schema.refine +``` + +## Uint32 (type alias) + +**Signature** + +```ts +export type Uint32 = typeof Uint32Schema.Type +``` + +## Uint32Generator + +**Signature** + +```ts +export declare const Uint32Generator: FastCheck.Arbitrary +``` + +## Uint32Schema + +**Signature** + +```ts +export declare const Uint32Schema: Schema.refine +``` + +## Uint64 (type alias) + +**Signature** + +```ts +export type Uint64 = typeof Uint64Schema.Type +``` + +## Uint64Generator + +**Signature** + +```ts +export declare const Uint64Generator: FastCheck.Arbitrary +``` + +## Uint64Schema + +**Signature** + +```ts +export declare const Uint64Schema: Schema.refine +``` + +## Uint8 (type alias) + +**Signature** + +```ts +export type Uint8 = typeof Uint8Schema.Type +``` + +## Uint8Generator + +**Signature** + +```ts +export declare const Uint8Generator: FastCheck.Arbitrary +``` + +## Uint8Schema + +**Signature** + +```ts +export declare const Uint8Schema: Schema.refine +``` diff --git a/docs/pages/reference/modules/modules/OperationalCert.mdx b/docs/pages/reference/modules/modules/OperationalCert.mdx new file mode 100644 index 00000000..c854713e --- /dev/null +++ b/docs/pages/reference/modules/modules/OperationalCert.mdx @@ -0,0 +1,202 @@ +--- +title: OperationalCert.ts +nav_order: 62 +parent: Modules +--- + +## OperationalCert overview + +--- + +

Table of contents

+ +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [OperationalCertError (class)](#operationalcerterror-class) +- [model](#model) + - [OperationalCert (class)](#operationalcert-class) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [FromCDDL](#fromcddl) +- [utils](#utils) + - [Codec](#codec) + +--- + +# equality + +## equals + +Check if two OperationalCert instances are equal. + +**Signature** + +```ts +export declare const equals: (a: OperationalCert, b: OperationalCert) => boolean +``` + +Added in v2.0.0 + +# errors + +## OperationalCertError (class) + +Error class for OperationalCert operations + +**Signature** + +```ts +export declare class OperationalCertError +``` + +Added in v2.0.0 + +# model + +## OperationalCert (class) + +OperationalCert class based on Conway CDDL specification + +CDDL: operational_cert = [ +hot_vkey : kes_vkey, +sequence_number : uint64, +kes_period : uint64, +sigma : ed25519_signature +] + +**Signature** + +```ts +export declare class OperationalCert +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for OperationalCert. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.BigIntFromSelf, + typeof Schema.BigIntFromSelf, + typeof Schema.Uint8ArrayFromSelf + ] + >, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for OperationalCert. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.BigIntFromSelf, + typeof Schema.BigIntFromSelf, + typeof Schema.Uint8ArrayFromSelf + ] + >, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for OperationalCert. +operational_cert = [ +hot_vkey : kes_vkey, +sequence_number : uint64, +kes_period : uint64, +sigma : ed25519_signature +] + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.BigIntFromSelf, + typeof Schema.BigIntFromSelf, + typeof Schema.Uint8ArrayFromSelf + ] + >, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: OperationalCert) => any; cborHex: (input: OperationalCert) => string } + Decode: { cborBytes: (input: any) => OperationalCert; cborHex: (input: string) => OperationalCert } + EncodeEffect: { + cborBytes: (input: OperationalCert) => Effect.Effect> + cborHex: (input: OperationalCert) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: OperationalCert) => Either> + cborHex: (input: OperationalCert) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/docs/pages/reference/modules/modules/PaymentAddress.mdx b/docs/pages/reference/modules/modules/PaymentAddress.mdx new file mode 100644 index 00000000..716cb291 --- /dev/null +++ b/docs/pages/reference/modules/modules/PaymentAddress.mdx @@ -0,0 +1,66 @@ +--- +title: PaymentAddress.ts +nav_order: 63 +parent: Modules +--- + +## PaymentAddress overview + +--- + +

Table of contents

+ +- [model](#model) + - [PaymentAddress (type alias)](#paymentaddress-type-alias) +- [predicates](#predicates) + - [isPaymentAddress](#ispaymentaddress) +- [schemas](#schemas) + - [PaymentAddress](#paymentaddress) + +--- + +# model + +## PaymentAddress (type alias) + +Type representing a payment address string in bech32 format + +**Signature** + +```ts +export type PaymentAddress = Schema.Schema.Type +``` + +Added in v2.0.0 + +# predicates + +## isPaymentAddress + +Check if the given value is a valid PaymentAddress + +**Signature** + +```ts +export declare const isPaymentAddress: ( + u: unknown, + overrideOptions?: ParseOptions | number +) => u is string & Brand<"PaymentAddress"> +``` + +Added in v2.0.0 + +# schemas + +## PaymentAddress + +Bech32 address format schema (human-readable addresses) +Following CIP-0019 encoding requirements + +**Signature** + +```ts +export declare const PaymentAddress: Schema.brand, "PaymentAddress"> +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/Pointer.mdx b/docs/pages/reference/modules/modules/Pointer.mdx new file mode 100644 index 00000000..67395200 --- /dev/null +++ b/docs/pages/reference/modules/modules/Pointer.mdx @@ -0,0 +1,72 @@ +--- +title: Pointer.ts +nav_order: 64 +parent: Modules +--- + +## Pointer overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [make](#make) +- [predicates](#predicates) + - [isPointer](#ispointer) +- [schemas](#schemas) + - [Pointer (class)](#pointer-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) + +--- + +# constructors + +## make + +Create a new Pointer instance + +**Signature** + +```ts +export declare const make: (slot: Natural.Natural, txIndex: Natural.Natural, certIndex: Natural.Natural) => Pointer +``` + +Added in v2.0.0 + +# predicates + +## isPointer + +Check if the given value is a valid Pointer + +**Signature** + +```ts +export declare const isPointer: (u: unknown, overrideOptions?: ParseOptions | number) => u is Pointer +``` + +Added in v2.0.0 + +# schemas + +## Pointer (class) + +Schema for pointer to a stake registration certificate +Contains slot, transaction index, and certificate index information + +**Signature** + +```ts +export declare class Pointer +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` diff --git a/docs/pages/reference/modules/modules/PointerAddress.mdx b/docs/pages/reference/modules/modules/PointerAddress.mdx new file mode 100644 index 00000000..dfe2a86a --- /dev/null +++ b/docs/pages/reference/modules/modules/PointerAddress.mdx @@ -0,0 +1,174 @@ +--- +title: PointerAddress.ts +nav_order: 65 +parent: Modules +--- + +## PointerAddress overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [decodeVariableLength](#decodevariablelength) + - [encodeVariableLength](#encodevariablelength) +- [equality](#equality) + - [equals](#equals) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [PointerAddressError (class)](#pointeraddresserror-class) +- [schemas](#schemas) + - [PointerAddress (class)](#pointeraddress-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) +- [utils](#utils) + - [Codec](#codec) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + +--- + +# encoding/decoding + +## decodeVariableLength + +Decode a variable length integer from a Uint8Array +Following the Cardano ledger implementation for variable-length integers + +**Signature** + +```ts +export declare const decodeVariableLength: ( + bytes: Uint8Array, + offset?: number | undefined +) => Effect.Effect<[Natural.Natural, number], PointerAddressError | ParseResult.ParseIssue> +``` + +Added in v2.0.0 + +## encodeVariableLength + +Encode a number as a variable length integer following the Cardano ledger specification + +**Signature** + +```ts +export declare const encodeVariableLength: ( + natural: Natural.Natural +) => Effect.Effect +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two PointerAddress instances are equal. + +**Signature** + +```ts +export declare const equals: (a: PointerAddress, b: PointerAddress) => boolean +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random PointerAddress. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## PointerAddressError (class) + +Error thrown when address operations fail + +**Signature** + +```ts +export declare class PointerAddressError +``` + +Added in v2.0.0 + +# schemas + +## PointerAddress (class) + +Pointer address with payment credential and pointer to stake registration + +**Signature** + +```ts +export declare class PointerAddress +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: PointerAddress) => any; hex: (input: PointerAddress) => string } + Decode: { bytes: (input: any) => PointerAddress; hex: (input: string) => PointerAddress } + EncodeEffect: { + bytes: (input: PointerAddress) => Effect.Effect> + hex: (input: PointerAddress) => Effect.Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect.Effect> + hex: (input: string) => Effect.Effect> + } + EncodeEither: { + bytes: (input: PointerAddress) => Either> + hex: (input: PointerAddress) => Either> + } + DecodeEither: { + bytes: (input: any) => Either> + hex: (input: string) => Either> + } +} +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transformOrFail +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transformOrFail +> +``` diff --git a/docs/pages/reference/modules/modules/PolicyId.mdx b/docs/pages/reference/modules/modules/PolicyId.mdx new file mode 100644 index 00000000..bae1e4bc --- /dev/null +++ b/docs/pages/reference/modules/modules/PolicyId.mdx @@ -0,0 +1,168 @@ +--- +title: PolicyId.ts +nav_order: 66 +parent: Modules +--- + +## PolicyId overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [PolicyIdError (class)](#policyiderror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [PolicyId](#policyid) +- [utils](#utils) + - [PolicyId (type alias)](#policyid-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for PolicyId encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"PolicyId">) => any; hex: (input: string & Brand<"PolicyId">) => string } + Decode: { bytes: (input: any) => string & Brand<"PolicyId">; hex: (input: string) => string & Brand<"PolicyId"> } + EncodeEffect: { + bytes: (input: string & Brand<"PolicyId">) => Effect> + hex: (input: string & Brand<"PolicyId">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"PolicyId">) => Either> + hex: (input: string & Brand<"PolicyId">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two PolicyId instances are equal. + +**Signature** + +```ts +export declare const equals: (a: PolicyId, b: PolicyId) => boolean +``` + +Added in v2.0.0 + +# errors + +## PolicyIdError (class) + +Error class for PolicyId related operations. + +**Signature** + +```ts +export declare class PolicyIdError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random PolicyId. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +Schema for transforming between Uint8Array and PolicyId. + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "PolicyId"> +> +``` + +Added in v2.0.0 + +## FromHex + +Schema for transforming between hex string and PolicyId. + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "PolicyId"> +> +``` + +Added in v2.0.0 + +## PolicyId + +Schema for PolicyId representing a minting policy identifier. +A PolicyId is a script hash (hash28) that identifies a minting policy. + +Note: PolicyId is equivalent to ScriptHash as defined in the CDDL: +policy_id = script_hash +script_hash = hash28 + +**Signature** + +```ts +export declare const PolicyId: Schema.brand< + Schema.refine>, + "PolicyId" +> +``` + +Added in v2.0.0 + +# utils + +## PolicyId (type alias) + +**Signature** + +```ts +export type PolicyId = typeof PolicyId.Type +``` diff --git a/docs/pages/reference/modules/modules/PoolKeyHash.mdx b/docs/pages/reference/modules/modules/PoolKeyHash.mdx new file mode 100644 index 00000000..527adb7c --- /dev/null +++ b/docs/pages/reference/modules/modules/PoolKeyHash.mdx @@ -0,0 +1,162 @@ +--- +title: PoolKeyHash.ts +nav_order: 67 +parent: Modules +--- + +## PoolKeyHash overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [PoolKeyHashError (class)](#poolkeyhasherror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [PoolKeyHash](#poolkeyhash) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [PoolKeyHash (type alias)](#poolkeyhash-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for PoolKeyHash encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { + bytes: (input: string & Brand<"PoolKeyHash">) => any + hex: (input: string & Brand<"PoolKeyHash">) => string + } + Decode: { + bytes: (input: any) => string & Brand<"PoolKeyHash"> + hex: (input: string) => string & Brand<"PoolKeyHash"> + } + EncodeEffect: { + bytes: (input: string & Brand<"PoolKeyHash">) => Effect> + hex: (input: string & Brand<"PoolKeyHash">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"PoolKeyHash">) => Either> + hex: (input: string & Brand<"PoolKeyHash">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two PoolKeyHash instances are equal. + +**Signature** + +```ts +export declare const equals: (a: PoolKeyHash, b: PoolKeyHash) => boolean +``` + +Added in v2.0.0 + +# errors + +## PoolKeyHashError (class) + +Error class for PoolKeyHash related operations. + +**Signature** + +```ts +export declare class PoolKeyHashError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random PoolKeyHash. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## PoolKeyHash + +PoolKeyHash is a 28-byte hash representing a stake pool's verification key. +pool_keyhash = hash28 + +**Signature** + +```ts +export declare const PoolKeyHash: Schema.brand< + Schema.refine>, + "PoolKeyHash" +> +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "PoolKeyHash"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "PoolKeyHash"> +> +``` + +## PoolKeyHash (type alias) + +**Signature** + +```ts +export type PoolKeyHash = typeof PoolKeyHash.Type +``` diff --git a/docs/pages/reference/modules/modules/PoolMetadata.mdx b/docs/pages/reference/modules/modules/PoolMetadata.mdx new file mode 100644 index 00000000..c061bb3c --- /dev/null +++ b/docs/pages/reference/modules/modules/PoolMetadata.mdx @@ -0,0 +1,158 @@ +--- +title: PoolMetadata.ts +nav_order: 68 +parent: Modules +--- + +## PoolMetadata overview + +--- + +

Table of contents

+ +- [errors](#errors) + - [PoolMetadataError (class)](#poolmetadataerror-class) +- [model](#model) + - [PoolMetadata (class)](#poolmetadata-class) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [FromCDDL](#fromcddl) +- [utils](#utils) + - [Codec](#codec) + +--- + +# errors + +## PoolMetadataError (class) + +Error class for PoolMetadata related operations. + +**Signature** + +```ts +export declare class PoolMetadataError +``` + +Added in v2.0.0 + +# model + +## PoolMetadata (class) + +Schema for PoolMetadata representing pool metadata information. +pool_metadata = [url, bytes] + +**Signature** + +```ts +export declare class PoolMetadata +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for PoolMetadata. +Transforms between Uint8Array and PoolMetadata using CBOR encoding. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for PoolMetadata. +Transforms between hex string and PoolMetadata using CBOR encoding. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for PoolMetadata as defined in the specification: +pool_metadata = [url, bytes] + +Transforms between CBOR tuple structure and PoolMetadata model. + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: PoolMetadata) => any; cborHex: (input: PoolMetadata) => string } + Decode: { cborBytes: (input: any) => PoolMetadata; cborHex: (input: string) => PoolMetadata } + EncodeEffect: { + cborBytes: (input: PoolMetadata) => Effect.Effect> + cborHex: (input: PoolMetadata) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: PoolMetadata) => Either> + cborHex: (input: PoolMetadata) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/docs/pages/reference/modules/modules/PoolParams.mdx b/docs/pages/reference/modules/modules/PoolParams.mdx new file mode 100644 index 00000000..779a1646 --- /dev/null +++ b/docs/pages/reference/modules/modules/PoolParams.mdx @@ -0,0 +1,374 @@ +--- +title: PoolParams.ts +nav_order: 69 +parent: Modules +--- + +## PoolParams overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [make](#make) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [PoolParamsError (class)](#poolparamserror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [PoolParams (class)](#poolparams-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) +- [predicates](#predicates) + - [hasMinimumCost](#hasminimumcost) + - [hasValidMargin](#hasvalidmargin) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [PoolParamsCDDLSchema](#poolparamscddlschema) +- [transformation](#transformation) + - [calculatePoolRewards](#calculatepoolrewards) + - [getEffectiveStake](#geteffectivestake) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## make + +Create a PoolParams instance with validation. + +**Signature** + +```ts +export declare const make: (params: { + operator: PoolKeyHash.PoolKeyHash + vrfKeyhash: VrfKeyHash.VrfKeyHash + pledge: Coin.Coin + cost: Coin.Coin + margin: UnitInterval.UnitInterval + rewardAccount: RewardAccount.RewardAccount + poolOwners: Array + relays: Array + poolMetadata?: PoolMetadata.PoolMetadata +}) => PoolParams +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two PoolParams instances are equal. + +**Signature** + +```ts +export declare const equals: (a: PoolParams, b: PoolParams) => boolean +``` + +Added in v2.0.0 + +# errors + +## PoolParamsError (class) + +Error class for PoolParams related operations. + +**Signature** + +```ts +export declare class PoolParamsError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random PoolParams. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## PoolParams (class) + +Schema for PoolParams representing stake pool registration parameters. + +``` +pool_params = + ( operator : pool_keyhash + , vrf_keyhash : vrf_keyhash + , pledge : coin + , cost : coin + , margin : unit_interval + , reward_account : reward_account + , pool_owners : set + , relays : [* relay] + , pool_metadata : pool_metadata/ nil + ) +``` + +**Signature** + +```ts +export declare class PoolParams +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +# predicates + +## hasMinimumCost + +Check if the pool has the minimum required cost. + +**Signature** + +```ts +export declare const hasMinimumCost: (params: PoolParams, minPoolCost: Coin.Coin) => boolean +``` + +Added in v2.0.0 + +## hasValidMargin + +Check if the pool margin is within valid range (0 to 1). + +**Signature** + +```ts +export declare const hasValidMargin: (params: PoolParams) => boolean +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for PoolParams. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.BigIntFromSelf, + typeof Schema.BigIntFromSelf, + Schema.SchemaClass< + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + never + >, + typeof Schema.Uint8ArrayFromSelf, + Schema.Array$, + Schema.Array$< + Schema.SchemaClass< + readonly [1n, bigint | null, string] | readonly [0n, bigint | null, any, any] | readonly [2n, string], + readonly [1n, bigint | null, string] | readonly [0n, bigint | null, any, any] | readonly [2n, string], + never + > + >, + Schema.NullOr> + ] + >, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for PoolParams. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.BigIntFromSelf, + typeof Schema.BigIntFromSelf, + Schema.SchemaClass< + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + never + >, + typeof Schema.Uint8ArrayFromSelf, + Schema.Array$, + Schema.Array$< + Schema.SchemaClass< + readonly [1n, bigint | null, string] | readonly [0n, bigint | null, any, any] | readonly [2n, string], + readonly [1n, bigint | null, string] | readonly [0n, bigint | null, any, any] | readonly [2n, string], + never + > + >, + Schema.NullOr> + ] + >, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## PoolParamsCDDLSchema + +CDDL schema for PoolParams. + +``` +pool_params = [ + operator : pool_keyhash, + vrf_keyhash : vrf_keyhash, + pledge : coin, + cost : coin, + margin : unit_interval, + reward_account : reward_account, + pool_owners : set, + relays : [* relay], + pool_metadata : pool_metadata / nil +] +``` + +**Signature** + +```ts +export declare const PoolParamsCDDLSchema: Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.BigIntFromSelf, + typeof Schema.BigIntFromSelf, + Schema.SchemaClass< + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + never + >, + typeof Schema.Uint8ArrayFromSelf, + Schema.Array$, + Schema.Array$< + Schema.SchemaClass< + readonly [1n, bigint | null, string] | readonly [0n, bigint | null, any, any] | readonly [2n, string], + readonly [1n, bigint | null, string] | readonly [0n, bigint | null, any, any] | readonly [2n, string], + never + > + >, + Schema.NullOr> + ] + >, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# transformation + +## calculatePoolRewards + +Calculate pool operator rewards based on pool parameters. + +**Signature** + +```ts +export declare const calculatePoolRewards: ( + params: PoolParams, + totalRewards: Coin.Coin +) => { operatorRewards: Coin.Coin; delegatorRewards: Coin.Coin } +``` + +Added in v2.0.0 + +## getEffectiveStake + +Get total effective stake for pool rewards calculation. + +**Signature** + +```ts +export declare const getEffectiveStake: (params: PoolParams, totalStake: Coin.Coin) => Coin.Coin +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: PoolParams) => any; cborHex: (input: PoolParams) => string } + Decode: { cborBytes: (input: any) => PoolParams; cborHex: (input: string) => PoolParams } + EncodeEffect: { + cborBytes: (input: PoolParams) => Effect.Effect> + cborHex: (input: PoolParams) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: PoolParams) => Either> + cborHex: (input: PoolParams) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/docs/pages/reference/modules/modules/Port.mdx b/docs/pages/reference/modules/modules/Port.mdx new file mode 100644 index 00000000..f5023fcc --- /dev/null +++ b/docs/pages/reference/modules/modules/Port.mdx @@ -0,0 +1,244 @@ +--- +title: Port.ts +nav_order: 70 +parent: Modules +--- + +## Port overview + +--- + +

Table of contents

+ +- [constants](#constants) + - [PORT_MIN_VALUE](#port_min_value) +- [constructors](#constructors) + - [make](#make) +- [encoding/decoding](#encodingdecoding) + - [Encode](#encode) + - [EncodeEither](#encodeeither) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [PortError (class)](#porterror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [Port (type alias)](#port-type-alias) +- [predicates](#predicates) + - [is](#is) + - [isDynamic](#isdynamic) + - [isRegistered](#isregistered) + - [isWellKnown](#iswellknown) +- [schemas](#schemas) + - [PortSchema](#portschema) +- [utils](#utils) + - [Decode](#decode) + - [DecodeEither](#decodeeither) + - [PORT_MAX_VALUE](#port_max_value) + +--- + +# constants + +## PORT_MIN_VALUE + +CDDL specification: +port = uint .le 65535 + +**Signature** + +```ts +export declare const PORT_MIN_VALUE: 0 +``` + +Added in v2.0.0 + +# constructors + +## make + +Smart constructor for creating Port values. + +**Signature** + +```ts +export declare const make: (value: number) => Port +``` + +Added in v2.0.0 + +# encoding/decoding + +## Encode + +Synchronous encoding/decoding utilities. + +**Signature** + +```ts +export declare const Encode: { sync: (a: number, overrideOptions?: ParseOptions) => number } +``` + +Added in v2.0.0 + +## EncodeEither + +Either encoding/decoding utilities. + +**Signature** + +```ts +export declare const EncodeEither: { either: (a: number, overrideOptions?: ParseOptions) => Either } +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two Port instances are equal. + +**Signature** + +```ts +export declare const equals: (a: Port, b: Port) => boolean +``` + +Added in v2.0.0 + +# errors + +## PortError (class) + +Error class for Port related operations. + +**Signature** + +```ts +export declare class PortError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random Port. + +**Signature** + +```ts +export declare const generator: Arbitrary +``` + +Added in v2.0.0 + +# model + +## Port (type alias) + +Type alias for Port representing network port numbers. +Valid range is 0-65535 as per standard TCP/UDP port specification. + +**Signature** + +```ts +export type Port = typeof PortSchema.Type +``` + +Added in v2.0.0 + +# predicates + +## is + +Check if a value is a valid Port. + +**Signature** + +```ts +export declare const is: (value: unknown) => value is Port +``` + +Added in v2.0.0 + +## isDynamic + +Check if a port is a dynamic/private port (49152-65535). + +**Signature** + +```ts +export declare const isDynamic: (port: Port) => boolean +``` + +Added in v2.0.0 + +## isRegistered + +Check if a port is a registered port (1024-49151). + +**Signature** + +```ts +export declare const isRegistered: (port: Port) => boolean +``` + +Added in v2.0.0 + +## isWellKnown + +Check if a port is a well-known port (0-1023). + +**Signature** + +```ts +export declare const isWellKnown: (port: Port) => boolean +``` + +Added in v2.0.0 + +# schemas + +## PortSchema + +Schema for validating port numbers (0-65535). + +**Signature** + +```ts +export declare const PortSchema: Schema.refine +``` + +Added in v2.0.0 + +# utils + +## Decode + +**Signature** + +```ts +export declare const Decode: { sync: (u: unknown, overrideOptions?: ParseOptions) => number } +``` + +## DecodeEither + +**Signature** + +```ts +export declare const DecodeEither: { + either: (u: unknown, overrideOptions?: ParseOptions) => Either +} +``` + +## PORT_MAX_VALUE + +**Signature** + +```ts +export declare const PORT_MAX_VALUE: 65535 +``` diff --git a/docs/pages/reference/modules/modules/PositiveCoin.mdx b/docs/pages/reference/modules/modules/PositiveCoin.mdx new file mode 100644 index 00000000..0575189b --- /dev/null +++ b/docs/pages/reference/modules/modules/PositiveCoin.mdx @@ -0,0 +1,281 @@ +--- +title: PositiveCoin.ts +nav_order: 71 +parent: Modules +--- + +## PositiveCoin overview + +--- + +

Table of contents

+ +- [constants](#constants) + - [MAX_POSITIVE_COIN_VALUE](#max_positive_coin_value) + - [MIN_POSITIVE_COIN_VALUE](#min_positive_coin_value) +- [constructors](#constructors) + - [fromCoin](#fromcoin) + - [make](#make) +- [encoding/decoding](#encodingdecoding) + - [Encode](#encode) + - [EncodeEither](#encodeeither) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [PositiveCoinError (class)](#positivecoinerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [PositiveCoin (type alias)](#positivecoin-type-alias) +- [ordering](#ordering) + - [compare](#compare) +- [predicates](#predicates) + - [is](#is) +- [schemas](#schemas) + - [PositiveCoinSchema](#positivecoinschema) +- [transformation](#transformation) + - [add](#add) + - [subtract](#subtract) + - [toCoin](#tocoin) +- [utils](#utils) + - [Decode](#decode) + - [DecodeEither](#decodeeither) + +--- + +# constants + +## MAX_POSITIVE_COIN_VALUE + +Maximum value for a positive coin amount (maxWord64). + +**Signature** + +```ts +export declare const MAX_POSITIVE_COIN_VALUE: 18446744073709551615n +``` + +Added in v2.0.0 + +## MIN_POSITIVE_COIN_VALUE + +Minimum value for a positive coin amount. + +**Signature** + +```ts +export declare const MIN_POSITIVE_COIN_VALUE: 1n +``` + +Added in v2.0.0 + +# constructors + +## fromCoin + +Create a PositiveCoin from a regular Coin, throwing if the value is zero. + +**Signature** + +```ts +export declare const fromCoin: (coin: Coin.Coin) => PositiveCoin +``` + +Added in v2.0.0 + +## make + +Smart constructor for creating PositiveCoin values. + +**Signature** + +```ts +export declare const make: (value: bigint) => PositiveCoin +``` + +Added in v2.0.0 + +# encoding/decoding + +## Encode + +Synchronous encoding/decoding utilities. + +**Signature** + +```ts +export declare const Encode: { sync: (a: bigint, overrideOptions?: ParseOptions) => bigint } +``` + +Added in v2.0.0 + +## EncodeEither + +Either encoding/decoding utilities. + +**Signature** + +```ts +export declare const EncodeEither: { either: (a: bigint, overrideOptions?: ParseOptions) => Either } +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two positive coin amounts are equal. + +**Signature** + +```ts +export declare const equals: (a: PositiveCoin, b: PositiveCoin) => boolean +``` + +Added in v2.0.0 + +# errors + +## PositiveCoinError (class) + +Error class for PositiveCoin related operations. + +**Signature** + +```ts +export declare class PositiveCoinError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random PositiveCoin value. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## PositiveCoin (type alias) + +Type alias for PositiveCoin representing positive amounts of native assets. +Used in multiasset maps where zero amounts are not allowed. + +**Signature** + +```ts +export type PositiveCoin = typeof PositiveCoinSchema.Type +``` + +Added in v2.0.0 + +# ordering + +## compare + +Compare two positive coin amounts. + +**Signature** + +```ts +export declare const compare: (a: PositiveCoin, b: PositiveCoin) => -1 | 0 | 1 +``` + +Added in v2.0.0 + +# predicates + +## is + +Check if a value is a valid PositiveCoin. + +**Signature** + +```ts +export declare const is: (value: unknown) => value is PositiveCoin +``` + +Added in v2.0.0 + +# schemas + +## PositiveCoinSchema + +Schema for validating positive coin amounts. +positive_coin = 1 .. maxWord64 + +**Signature** + +```ts +export declare const PositiveCoinSchema: Schema.refine +``` + +Added in v2.0.0 + +# transformation + +## add + +Add two positive coin amounts safely. + +**Signature** + +```ts +export declare const add: (a: PositiveCoin, b: PositiveCoin) => PositiveCoin +``` + +Added in v2.0.0 + +## subtract + +Subtract two positive coin amounts safely. +Note: Result must still be positive. + +**Signature** + +```ts +export declare const subtract: (a: PositiveCoin, b: PositiveCoin) => PositiveCoin +``` + +Added in v2.0.0 + +## toCoin + +Convert a PositiveCoin to a regular Coin. + +**Signature** + +```ts +export declare const toCoin: (positiveCoin: PositiveCoin) => Coin.Coin +``` + +Added in v2.0.0 + +# utils + +## Decode + +**Signature** + +```ts +export declare const Decode: { sync: (u: unknown, overrideOptions?: ParseOptions) => bigint } +``` + +## DecodeEither + +**Signature** + +```ts +export declare const DecodeEither: { + either: (u: unknown, overrideOptions?: ParseOptions) => Either +} +``` diff --git a/docs/pages/reference/modules/modules/ProposalProcedures.mdx b/docs/pages/reference/modules/modules/ProposalProcedures.mdx new file mode 100644 index 00000000..24bb0708 --- /dev/null +++ b/docs/pages/reference/modules/modules/ProposalProcedures.mdx @@ -0,0 +1,48 @@ +--- +title: ProposalProcedures.ts +nav_order: 72 +parent: Modules +--- + +## ProposalProcedures overview + +--- + +

Table of contents

+ +- [model](#model) + - [ProposalProcedures](#proposalprocedures) +- [utils](#utils) + - [ProposalProcedures (type alias)](#proposalprocedures-type-alias) + +--- + +# model + +## ProposalProcedures + +ProposalProcedures based on Conway CDDL specification + +``` +CDDL: proposal_procedures = nonempty_set +``` + +This is a non-empty set of proposal procedures. + +**Signature** + +```ts +export declare const ProposalProcedures: typeof Schema.Unknown +``` + +Added in v2.0.0 + +# utils + +## ProposalProcedures (type alias) + +**Signature** + +```ts +export type ProposalProcedures = Schema.Schema.Type +``` diff --git a/docs/pages/reference/modules/modules/ProtocolVersion.mdx b/docs/pages/reference/modules/modules/ProtocolVersion.mdx new file mode 100644 index 00000000..75196c76 --- /dev/null +++ b/docs/pages/reference/modules/modules/ProtocolVersion.mdx @@ -0,0 +1,171 @@ +--- +title: ProtocolVersion.ts +nav_order: 73 +parent: Modules +--- + +## ProtocolVersion overview + +--- + +

Table of contents

+ +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [ProtocolVersionError (class)](#protocolversionerror-class) +- [model](#model) + - [ProtocolVersion (class)](#protocolversion-class) +- [schemas](#schemas) + - [FromCBORBytes](#fromcborbytes) + - [FromCBORHex](#fromcborhex) + - [FromCDDL](#fromcddl) +- [utils](#utils) + - [Codec](#codec) + +--- + +# equality + +## equals + +Check if two ProtocolVersion instances are equal. + +**Signature** + +```ts +export declare const equals: (a: ProtocolVersion, b: ProtocolVersion) => boolean +``` + +Added in v2.0.0 + +# errors + +## ProtocolVersionError (class) + +Error class for ProtocolVersion related operations. + +**Signature** + +```ts +export declare class ProtocolVersionError +``` + +Added in v2.0.0 + +# model + +## ProtocolVersion (class) + +ProtocolVersion class based on Conway CDDL specification + +CDDL: protocol_version = [major_version : uint32, minor_version : uint32] + +**Signature** + +```ts +export declare class ProtocolVersion +``` + +Added in v2.0.0 + +# schemas + +## FromCBORBytes + +CBOR bytes transformation schema for ProtocolVersion. + +**Signature** + +```ts +export declare const FromCBORBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromCBORHex + +CBOR hex transformation schema for ProtocolVersion. + +**Signature** + +```ts +export declare const FromCBORHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for ProtocolVersion. +protocol_version = [major_version : uint32, minor_version : uint32] + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { bytes: (input: ProtocolVersion) => any; variableBytes: (input: ProtocolVersion) => string } + Decode: { bytes: (input: any) => ProtocolVersion; variableBytes: (input: string) => ProtocolVersion } + EncodeEffect: { + bytes: (input: ProtocolVersion) => Effect.Effect> + variableBytes: (input: ProtocolVersion) => Effect.Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect.Effect> + variableBytes: (input: string) => Effect.Effect> + } + EncodeEither: { + bytes: (input: ProtocolVersion) => Either> + variableBytes: (input: ProtocolVersion) => Either> + } + DecodeEither: { + bytes: (input: any) => Either> + variableBytes: (input: string) => Either> + } +} +``` diff --git a/docs/pages/reference/modules/modules/Relay.mdx b/docs/pages/reference/modules/modules/Relay.mdx new file mode 100644 index 00000000..c575e053 --- /dev/null +++ b/docs/pages/reference/modules/modules/Relay.mdx @@ -0,0 +1,440 @@ +--- +title: Relay.ts +nav_order: 74 +parent: Modules +--- + +## Relay overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [fromMultiHostName](#frommultihostname) + - [fromSingleHostAddr](#fromsinglehostaddr) + - [fromSingleHostName](#fromsinglehostname) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [RelayError (class)](#relayerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [Relay (type alias)](#relay-type-alias) +- [predicates](#predicates) + - [isMultiHostName](#ismultihostname) + - [isSingleHostAddr](#issinglehostaddr) + - [isSingleHostName](#issinglehostname) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [Relay](#relay) +- [transformation](#transformation) + - [match](#match) +- [utils](#utils) + - [Codec](#codec) + - [FromCDDL](#fromcddl) + +--- + +# constructors + +## fromMultiHostName + +Create a Relay from a MultiHostName. + +**Signature** + +```ts +export declare const fromMultiHostName: (multiHostName: MultiHostName.MultiHostName) => Relay +``` + +Added in v2.0.0 + +## fromSingleHostAddr + +Create a Relay from a SingleHostAddr. + +**Signature** + +```ts +export declare const fromSingleHostAddr: (singleHostAddr: SingleHostAddr.SingleHostAddr) => Relay +``` + +Added in v2.0.0 + +## fromSingleHostName + +Create a Relay from a SingleHostName. + +**Signature** + +```ts +export declare const fromSingleHostName: (singleHostName: SingleHostName.SingleHostName) => Relay +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two Relay instances are equal. + +**Signature** + +```ts +export declare const equals: (self: Relay, that: Relay) => boolean +``` + +Added in v2.0.0 + +# errors + +## RelayError (class) + +Error class for Relay related operations. + +**Signature** + +```ts +export declare class RelayError +``` + +Added in v2.0.0 + +# generators + +## generator + +FastCheck generator for Relay instances. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary< + SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName +> +``` + +Added in v2.0.0 + +# model + +## Relay (type alias) + +Type alias for Relay. + +**Signature** + +```ts +export type Relay = typeof Relay.Type +``` + +Added in v2.0.0 + +# predicates + +## isMultiHostName + +Check if a Relay is a MultiHostName. + +**Signature** + +```ts +export declare const isMultiHostName: (relay: Relay) => relay is MultiHostName.MultiHostName +``` + +Added in v2.0.0 + +## isSingleHostAddr + +Check if a Relay is a SingleHostAddr. + +**Signature** + +```ts +export declare const isSingleHostAddr: (relay: Relay) => relay is SingleHostAddr.SingleHostAddr +``` + +Added in v2.0.0 + +## isSingleHostName + +Check if a Relay is a SingleHostName. + +**Signature** + +```ts +export declare const isSingleHostName: (relay: Relay) => relay is SingleHostName.SingleHostName +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for Relay. +For union types, we create a union of the child FromBytess +rather than trying to create a complex three-layer transformation. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.Union< + [ + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + Schema.Literal<[0n]>, + Schema.NullOr, + Schema.NullOr, + Schema.NullOr + ] + >, + Schema.SchemaClass, + never + > + >, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple<[Schema.Literal<[1n]>, Schema.NullOr, typeof Schema.String]>, + Schema.SchemaClass, + never + > + >, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, typeof Schema.String>, + Schema.SchemaClass, + never + > + > + ] +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for Relay. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.Union< + [ + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + Schema.Literal<[0n]>, + Schema.NullOr, + Schema.NullOr, + Schema.NullOr + ] + >, + Schema.SchemaClass, + never + > + >, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple<[Schema.Literal<[1n]>, Schema.NullOr, typeof Schema.String]>, + Schema.SchemaClass, + never + > + >, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, typeof Schema.String>, + Schema.SchemaClass, + never + > + > + ] + > +> +``` + +Added in v2.0.0 + +## Relay + +Union schema for Relay representing various relay configurations. +relay = [ single_host_addr // single_host_name // multi_host_name ] + +**Signature** + +```ts +export declare const Relay: Schema.Union< + [typeof SingleHostAddr.SingleHostAddr, typeof SingleHostName.SingleHostName, typeof MultiHostName.MultiHostName] +> +``` + +Added in v2.0.0 + +# transformation + +## match + +Pattern match on a Relay to handle different relay types. + +**Signature** + +```ts +export declare const match: ( + relay: Relay, + cases: { + SingleHostAddr: (addr: SingleHostAddr.SingleHostAddr) => A + SingleHostName: (name: SingleHostName.SingleHostName) => B + MultiHostName: (multi: MultiHostName.MultiHostName) => C + } +) => A | B | C +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: ( + input: SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName + ) => any + cborHex: ( + input: SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName + ) => string + } + Decode: { + cborBytes: ( + input: any + ) => SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName + cborHex: ( + input: string + ) => SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName + } + EncodeEffect: { + cborBytes: ( + input: SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName + ) => Effect> + cborHex: ( + input: SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName + ) => Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect< + SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName, + InstanceType + > + cborHex: ( + input: string + ) => Effect< + SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName, + InstanceType + > + } + EncodeEither: { + cborBytes: ( + input: SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName + ) => Either> + cborHex: ( + input: SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName + ) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either< + SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName, + InstanceType + > + cborHex: ( + input: string + ) => Either< + SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName, + InstanceType + > + } +} +``` + +## FromCDDL + +**Signature** + +```ts +export declare const FromCDDL: Schema.Union< + [ + Schema.transformOrFail< + Schema.Tuple< + [ + Schema.Literal<[0n]>, + Schema.NullOr, + Schema.NullOr, + Schema.NullOr + ] + >, + Schema.SchemaClass, + never + >, + Schema.transformOrFail< + Schema.Tuple<[Schema.Literal<[1n]>, Schema.NullOr, typeof Schema.String]>, + Schema.SchemaClass, + never + >, + Schema.transformOrFail< + Schema.Tuple2, typeof Schema.String>, + Schema.SchemaClass, + never + > + ] +> +``` diff --git a/docs/pages/reference/modules/modules/RewardAccount.mdx b/docs/pages/reference/modules/modules/RewardAccount.mdx new file mode 100644 index 00000000..31bde4ab --- /dev/null +++ b/docs/pages/reference/modules/modules/RewardAccount.mdx @@ -0,0 +1,136 @@ +--- +title: RewardAccount.ts +nav_order: 75 +parent: Modules +--- + +## RewardAccount overview + +--- + +

Table of contents

+ +- [equality](#equality) + - [equals](#equals) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [RewardAccount (class)](#rewardaccount-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) +- [utils](#utils) + - [Codec](#codec) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [RewardAccountError (class)](#rewardaccounterror-class) + +--- + +# equality + +## equals + +Check if two RewardAccount instances are equal. + +**Signature** + +```ts +export declare const equals: (a: RewardAccount, b: RewardAccount) => boolean +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random RewardAccount. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# schemas + +## RewardAccount (class) + +Reward/stake address with only staking credential + +**Signature** + +```ts +export declare class RewardAccount +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: RewardAccount) => any; hex: (input: RewardAccount) => string } + Decode: { bytes: (input: any) => RewardAccount; hex: (input: string) => RewardAccount } + EncodeEffect: { + bytes: (input: RewardAccount) => Effect.Effect> + hex: (input: RewardAccount) => Effect.Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect.Effect> + hex: (input: string) => Effect.Effect> + } + EncodeEither: { + bytes: (input: RewardAccount) => Either> + hex: (input: RewardAccount) => Either> + } + DecodeEither: { + bytes: (input: any) => Either> + hex: (input: string) => Either> + } +} +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transformOrFail< + Schema.filter, + typeof RewardAccount, + never +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transformOrFail, typeof RewardAccount, never> +> +``` + +## RewardAccountError (class) + +**Signature** + +```ts +export declare class RewardAccountError +``` diff --git a/docs/pages/reference/modules/modules/RewardAddress.mdx b/docs/pages/reference/modules/modules/RewardAddress.mdx new file mode 100644 index 00000000..42994d80 --- /dev/null +++ b/docs/pages/reference/modules/modules/RewardAddress.mdx @@ -0,0 +1,66 @@ +--- +title: RewardAddress.ts +nav_order: 76 +parent: Modules +--- + +## RewardAddress overview + +--- + +

Table of contents

+ +- [model](#model) + - [RewardAddress (type alias)](#rewardaddress-type-alias) +- [predicates](#predicates) + - [isRewardAddress](#isrewardaddress) +- [schemas](#schemas) + - [RewardAddress](#rewardaddress) + +--- + +# model + +## RewardAddress (type alias) + +Type representing a reward/stake address string in bech32 format + +**Signature** + +```ts +export type RewardAddress = Schema.Schema.Type +``` + +Added in v2.0.0 + +# predicates + +## isRewardAddress + +Check if the given value is a valid RewardAddress + +**Signature** + +```ts +export declare const isRewardAddress: ( + u: unknown, + overrideOptions?: ParseOptions | number +) => u is string & Brand<"RewardAddress"> +``` + +Added in v2.0.0 + +# schemas + +## RewardAddress + +Reward address format schema (human-readable addresses) +Following CIP-0019 encoding requirements + +**Signature** + +```ts +export declare const RewardAddress: Schema.brand, "RewardAddress"> +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/ScriptDataHash.mdx b/docs/pages/reference/modules/modules/ScriptDataHash.mdx new file mode 100644 index 00000000..3b6c39b6 --- /dev/null +++ b/docs/pages/reference/modules/modules/ScriptDataHash.mdx @@ -0,0 +1,55 @@ +--- +title: ScriptDataHash.ts +nav_order: 77 +parent: Modules +--- + +## ScriptDataHash overview + +--- + +

Table of contents

+ +- [model](#model) + - [ScriptDataHash](#scriptdatahash) +- [utils](#utils) + - [ScriptDataHash (type alias)](#scriptdatahash-type-alias) + +--- + +# model + +## ScriptDataHash + +ScriptDataHash based on Conway CDDL specification + +CDDL: script_data_hash = Bytes32 + +This is a hash of data which may affect evaluation of a script. +This data consists of: + +- The redeemers from the transaction_witness_set (the value of field 5). +- The datums from the transaction_witness_set (the value of field 4). +- The value in the cost_models map corresponding to the script's language + (in field 18 of protocol_param_update.) + +**Signature** + +```ts +export declare const ScriptDataHash: Schema.brand< + Schema.refine>, + "ScriptDataHash" +> +``` + +Added in v2.0.0 + +# utils + +## ScriptDataHash (type alias) + +**Signature** + +```ts +export type ScriptDataHash = Schema.Schema.Type +``` diff --git a/docs/pages/reference/modules/modules/ScriptHash.mdx b/docs/pages/reference/modules/modules/ScriptHash.mdx new file mode 100644 index 00000000..6745fef9 --- /dev/null +++ b/docs/pages/reference/modules/modules/ScriptHash.mdx @@ -0,0 +1,165 @@ +--- +title: ScriptHash.ts +nav_order: 78 +parent: Modules +--- + +## ScriptHash overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [ScriptHashError (class)](#scripthasherror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [BytesSchema](#bytesschema) + - [HexSchema](#hexschema) + - [ScriptHash](#scripthash) +- [utils](#utils) + - [ScriptHash (type alias)](#scripthash-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for ScriptHash encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"ScriptHash">) => any; hex: (input: string & Brand<"ScriptHash">) => string } + Decode: { bytes: (input: any) => string & Brand<"ScriptHash">; hex: (input: string) => string & Brand<"ScriptHash"> } + EncodeEffect: { + bytes: (input: string & Brand<"ScriptHash">) => Effect> + hex: (input: string & Brand<"ScriptHash">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"ScriptHash">) => Either> + hex: (input: string & Brand<"ScriptHash">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two ScriptHash instances are equal. + +**Signature** + +```ts +export declare const equals: (a: ScriptHash, b: ScriptHash) => boolean +``` + +Added in v2.0.0 + +# errors + +## ScriptHashError (class) + +Error class for ScriptHash related operations. + +**Signature** + +```ts +export declare class ScriptHashError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random ScriptHash. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## BytesSchema + +Schema for transforming between Uint8Array and ScriptHash. + +**Signature** + +```ts +export declare const BytesSchema: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "ScriptHash"> +> +``` + +Added in v2.0.0 + +## HexSchema + +Schema for transforming between hex string and ScriptHash. + +**Signature** + +```ts +export declare const HexSchema: Schema.transform< + Schema.refine>, + Schema.brand>, "ScriptHash"> +> +``` + +Added in v2.0.0 + +## ScriptHash + +Schema for ScriptHash representing a script hash credential. +script_hash = hash28 +Follows CIP-0019 binary representation. + +**Signature** + +```ts +export declare const ScriptHash: Schema.brand< + Schema.refine>, + "ScriptHash" +> +``` + +Added in v2.0.0 + +# utils + +## ScriptHash (type alias) + +**Signature** + +```ts +export type ScriptHash = typeof ScriptHash.Type +``` diff --git a/docs/pages/reference/modules/modules/ScriptRef.mdx b/docs/pages/reference/modules/modules/ScriptRef.mdx new file mode 100644 index 00000000..10a51190 --- /dev/null +++ b/docs/pages/reference/modules/modules/ScriptRef.mdx @@ -0,0 +1,256 @@ +--- +title: ScriptRef.ts +nav_order: 79 +parent: Modules +--- + +## ScriptRef overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [ScriptRefError (class)](#scriptreferror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [FromBytes](#frombytes) + - [FromCBORBytes](#fromcborbytes) + - [FromCBORHex](#fromcborhex) + - [FromCDDL](#fromcddl) + - [FromHex](#fromhex) + - [ScriptRef](#scriptref) +- [utils](#utils) + - [ScriptRef (type alias)](#scriptref-type-alias) + +--- + +# encoding/decoding + +## Codec + +Extended Codec with CBOR support for ScriptRef. + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + bytes: (input: string & Brand<"ScriptRef">) => any + hex: (input: string & Brand<"ScriptRef">) => string + cborBytes: (input: string & Brand<"ScriptRef">) => any + cborHex: (input: string & Brand<"ScriptRef">) => string + } + Decode: { + bytes: (input: any) => string & Brand<"ScriptRef"> + hex: (input: string) => string & Brand<"ScriptRef"> + cborBytes: (input: any) => string & Brand<"ScriptRef"> + cborHex: (input: string) => string & Brand<"ScriptRef"> + } + EncodeEffect: { + bytes: (input: string & Brand<"ScriptRef">) => Effect.Effect> + hex: (input: string & Brand<"ScriptRef">) => Effect.Effect> + cborBytes: (input: string & Brand<"ScriptRef">) => Effect.Effect> + cborHex: (input: string & Brand<"ScriptRef">) => Effect.Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect.Effect, InstanceType> + hex: (input: string) => Effect.Effect, InstanceType> + cborBytes: (input: any) => Effect.Effect, InstanceType> + cborHex: (input: string) => Effect.Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"ScriptRef">) => Either> + hex: (input: string & Brand<"ScriptRef">) => Either> + cborBytes: (input: string & Brand<"ScriptRef">) => Either> + cborHex: (input: string & Brand<"ScriptRef">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + cborBytes: (input: any) => Either, InstanceType> + cborHex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two ScriptRef instances are equal. + +**Signature** + +```ts +export declare const equals: (a: ScriptRef, b: ScriptRef) => boolean +``` + +Added in v2.0.0 + +# errors + +## ScriptRefError (class) + +Error class for ScriptRef related operations. + +**Signature** + +```ts +export declare class ScriptRefError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random ScriptRef. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +Schema for transforming from bytes to ScriptRef. + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform>, + Schema.brand, "ScriptRef"> +> +``` + +Added in v2.0.0 + +## FromCBORBytes + +CBOR bytes transformation schema for ScriptRef. + +**Signature** + +```ts +export declare const FromCBORBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail, "ScriptRef">, never> +> +``` + +Added in v2.0.0 + +## FromCBORHex + +CBOR hex transformation schema for ScriptRef. + +**Signature** + +```ts +export declare const FromCBORHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + typeof CBOR.Tag, + Schema.brand, "ScriptRef">, + never + > + > +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for ScriptRef following the Conway specification. + +``` +script_ref = #6.24(bytes .cbor script) +``` + +This transforms between CBOR tag 24 structure and ScriptRef model. + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + typeof CBOR.Tag, + Schema.brand, "ScriptRef">, + never +> +``` + +Added in v2.0.0 + +## FromHex + +Schema for transforming from hex to ScriptRef. + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine, + Schema.brand, "ScriptRef"> +> +``` + +Added in v2.0.0 + +## ScriptRef + +Schema for ScriptRef representing a reference to a script in a transaction output. + +``` +CDDL: script_ref = #6.24(bytes .cbor script) +``` + +This is a branded hex string that represents the CBOR-encoded script bytes. +The script_ref uses CBOR tag 24 to indicate it contains CBOR-encoded script data. + +**Signature** + +```ts +export declare const ScriptRef: Schema.brand, "ScriptRef"> +``` + +Added in v2.0.0 + +# utils + +## ScriptRef (type alias) + +**Signature** + +```ts +export type ScriptRef = typeof ScriptRef.Type +``` diff --git a/docs/pages/reference/modules/modules/SingleHostAddr.mdx b/docs/pages/reference/modules/modules/SingleHostAddr.mdx new file mode 100644 index 00000000..da658c44 --- /dev/null +++ b/docs/pages/reference/modules/modules/SingleHostAddr.mdx @@ -0,0 +1,300 @@ +--- +title: SingleHostAddr.ts +nav_order: 80 +parent: Modules +--- + +## SingleHostAddr overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [withBothIPs](#withbothips) + - [withIPv4](#withipv4) + - [withIPv6](#withipv6) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [SingleHostAddrError (class)](#singlehostaddrerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [SingleHostAddr (class)](#singlehostaddr-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) +- [predicates](#predicates) + - [hasIPv4](#hasipv4) + - [hasIPv6](#hasipv6) + - [hasPort](#hasport) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [SingleHostAddrCDDLSchema](#singlehostaddrcddlschema) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## withBothIPs + +Create a SingleHostAddr with both IPv4 and IPv6 addresses. + +**Signature** + +```ts +export declare const withBothIPs: (port: Option.Option, ipv4: IPv4.IPv4, ipv6: IPv6.IPv6) => SingleHostAddr +``` + +Added in v2.0.0 + +## withIPv4 + +Create a SingleHostAddr with IPv4 address. + +**Signature** + +```ts +export declare const withIPv4: (port: Option.Option, ipv4: IPv4.IPv4) => SingleHostAddr +``` + +Added in v2.0.0 + +## withIPv6 + +Create a SingleHostAddr with IPv6 address. + +**Signature** + +```ts +export declare const withIPv6: (port: Option.Option, ipv6: IPv6.IPv6) => SingleHostAddr +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two SingleHostAddr instances are equal. + +**Signature** + +```ts +export declare const equals: (a: SingleHostAddr, b: SingleHostAddr) => boolean +``` + +Added in v2.0.0 + +# errors + +## SingleHostAddrError (class) + +Error class for SingleHostAddr related operations. + +**Signature** + +```ts +export declare class SingleHostAddrError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random SingleHostAddr. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## SingleHostAddr (class) + +Schema for SingleHostAddr representing a network host with IP addresses. +single_host_addr = (0, port/ nil, ipv4/ nil, ipv6/ nil) + +**Signature** + +```ts +export declare class SingleHostAddr +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +# predicates + +## hasIPv4 + +Check if the host address has an IPv4 address. + +**Signature** + +```ts +export declare const hasIPv4: (hostAddr: SingleHostAddr) => boolean +``` + +Added in v2.0.0 + +## hasIPv6 + +Check if the host address has an IPv6 address. + +**Signature** + +```ts +export declare const hasIPv6: (hostAddr: SingleHostAddr) => boolean +``` + +Added in v2.0.0 + +## hasPort + +Check if the host address has a port. + +**Signature** + +```ts +export declare const hasPort: (hostAddr: SingleHostAddr) => boolean +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for SingleHostAddr. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + Schema.Literal<[0n]>, + Schema.NullOr, + Schema.NullOr, + Schema.NullOr + ] + >, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for SingleHostAddr. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + Schema.Literal<[0n]>, + Schema.NullOr, + Schema.NullOr, + Schema.NullOr + ] + >, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## SingleHostAddrCDDLSchema + +CDDL schema for SingleHostAddr. +single_host_addr = (0, port / nil, ipv4 / nil, ipv6 / nil) + +**Signature** + +```ts +export declare const SingleHostAddrCDDLSchema: Schema.transformOrFail< + Schema.Tuple< + [ + Schema.Literal<[0n]>, + Schema.NullOr, + Schema.NullOr, + Schema.NullOr + ] + >, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: SingleHostAddr) => any; cborHex: (input: SingleHostAddr) => string } + Decode: { cborBytes: (input: any) => SingleHostAddr; cborHex: (input: string) => SingleHostAddr } + EncodeEffect: { + cborBytes: (input: SingleHostAddr) => Effect.Effect> + cborHex: (input: SingleHostAddr) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: SingleHostAddr) => Either> + cborHex: (input: SingleHostAddr) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/docs/pages/reference/modules/modules/SingleHostName.mdx b/docs/pages/reference/modules/modules/SingleHostName.mdx new file mode 100644 index 00000000..a7303882 --- /dev/null +++ b/docs/pages/reference/modules/modules/SingleHostName.mdx @@ -0,0 +1,277 @@ +--- +title: SingleHostName.ts +nav_order: 81 +parent: Modules +--- + +## SingleHostName overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [withPort](#withport) + - [withoutPort](#withoutport) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [SingleHostNameError (class)](#singlehostnameerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [SingleHostName (class)](#singlehostname-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) +- [predicates](#predicates) + - [hasPort](#hasport) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [SingleHostNameCDDLSchema](#singlehostnamecddlschema) +- [transformation](#transformation) + - [getDnsName](#getdnsname) + - [getPort](#getport) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## withPort + +Create a SingleHostName with a port. + +**Signature** + +```ts +export declare const withPort: (port: Port.Port, dnsName: DnsName.DnsName) => SingleHostName +``` + +Added in v2.0.0 + +## withoutPort + +Create a SingleHostName without a port. + +**Signature** + +```ts +export declare const withoutPort: (dnsName: DnsName.DnsName) => SingleHostName +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two SingleHostName instances are equal. + +**Signature** + +```ts +export declare const equals: (a: SingleHostName, b: SingleHostName) => boolean +``` + +Added in v2.0.0 + +# errors + +## SingleHostNameError (class) + +Error class for SingleHostName related operations. + +**Signature** + +```ts +export declare class SingleHostNameError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random SingleHostName. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## SingleHostName (class) + +Schema for SingleHostName representing a network host with DNS name. +single_host_name = (1, port/ nil, dns_name) + +Used for A or AAAA DNS records. + +**Signature** + +```ts +export declare class SingleHostName +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +# predicates + +## hasPort + +Check if the host name has a port. + +**Signature** + +```ts +export declare const hasPort: (hostName: SingleHostName) => boolean +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for SingleHostName. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple<[Schema.Literal<[1n]>, Schema.NullOr, typeof Schema.String]>, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for SingleHostName. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple<[Schema.Literal<[1n]>, Schema.NullOr, typeof Schema.String]>, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## SingleHostNameCDDLSchema + +CDDL schema for SingleHostName. +single_host_name = (1, port / nil, dns_name) + +**Signature** + +```ts +export declare const SingleHostNameCDDLSchema: Schema.transformOrFail< + Schema.Tuple<[Schema.Literal<[1n]>, Schema.NullOr, typeof Schema.String]>, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# transformation + +## getDnsName + +Get the DNS name from a SingleHostName. + +**Signature** + +```ts +export declare const getDnsName: (hostName: SingleHostName) => DnsName.DnsName +``` + +Added in v2.0.0 + +## getPort + +Get the port from a SingleHostName, if it exists. + +**Signature** + +```ts +export declare const getPort: (hostName: SingleHostName) => Option.Option +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: (a: SingleHostName, overrideOptions?: ParseOptions) => any + cborHex: (a: SingleHostName, overrideOptions?: ParseOptions) => string + } + Decode: { + cborBytes: (u: unknown, overrideOptions?: ParseOptions) => SingleHostName + cborHex: (u: unknown, overrideOptions?: ParseOptions) => SingleHostName + } + EncodeEither: { + cborBytes: (a: SingleHostName, overrideOptions?: ParseOptions) => Either + cborHex: (a: SingleHostName, overrideOptions?: ParseOptions) => Either + } + DecodeEither: { + cborBytes: (i: any, overrideOptions?: ParseOptions) => Either + cborHex: (i: string, overrideOptions?: ParseOptions) => Either + } + EncodeEffect: { + cborBytes: (a: SingleHostName, overrideOptions?: ParseOptions) => Effect.Effect + cborHex: (a: SingleHostName, overrideOptions?: ParseOptions) => Effect.Effect + } + DecodeEffect: { + cborBytes: (i: any, overrideOptions?: ParseOptions) => Effect.Effect + cborHex: (i: string, overrideOptions?: ParseOptions) => Effect.Effect + } +} +``` diff --git a/docs/pages/reference/modules/modules/StakeReference.mdx b/docs/pages/reference/modules/modules/StakeReference.mdx new file mode 100644 index 00000000..835dc473 --- /dev/null +++ b/docs/pages/reference/modules/modules/StakeReference.mdx @@ -0,0 +1,65 @@ +--- +title: StakeReference.ts +nav_order: 82 +parent: Modules +--- + +## StakeReference overview + +--- + +

Table of contents

+ +- [model](#model) + - [StakeReference (type alias)](#stakereference-type-alias) +- [schemas](#schemas) + - [StakeReference](#stakereference) + +--- + +# model + +## StakeReference (type alias) + +Type representing a reference to staking information +Can be a credential (key hash or script hash) or a pointer + +**Signature** + +```ts +export type StakeReference = Schema.Schema.Type +``` + +Added in v2.0.0 + +# schemas + +## StakeReference + +Schema for stake reference that can be either a credential or a pointer + +**Signature** + +```ts +export declare const StakeReference: Schema.UndefinedOr< + Schema.Union< + [ + Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + >, + typeof Pointer.Pointer + ] + > +> +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/TSchema.mdx b/docs/pages/reference/modules/modules/TSchema.mdx new file mode 100644 index 00000000..c1170f0c --- /dev/null +++ b/docs/pages/reference/modules/modules/TSchema.mdx @@ -0,0 +1,258 @@ +--- +title: TSchema.ts +nav_order: 92 +parent: Modules +--- + +## TSchema overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [Array](#array) + - [Boolean](#boolean) + - [ByteArray](#bytearray) + - [Integer](#integer) + - [Literal](#literal) + - [Map](#map) + - [NullOr](#nullor) + - [OneLiteral](#oneliteral) + - [Struct](#struct) + - [Tuple](#tuple) + - [UndefinedOr](#undefinedor) + - [Union](#union) + - [compose](#compose) + - [filter](#filter) + - [is](#is) + +--- + +# utils + +## Array + +Creates a schema for arrays with Plutus list type annotation + +**Signature** + +```ts +export declare const Array: (items: S) => Array +``` + +Added in v1.0.0 + +## Boolean + +Schema for boolean values using Plutus Data Constructor + +- False with index 0 +- True with index 1 + +**Signature** + +```ts +export declare const Boolean: Boolean +``` + +Added in v2.0.0 + +## ByteArray + +Creates a schema for byte arrays using Plutus Data ByteArray transformation +The byte array is represented as a hex string + +**Signature** + +```ts +export declare const ByteArray: ByteArray +``` + +Added in v2.0.0 + +## Integer + +Creates a schema for integers using Plutus Data Integer transformation +The integer is represented as a BigInt + +**Signature** + +```ts +export declare const Integer: Schema.SchemaClass +``` + +Added in v2.0.0 + +## Literal + +Creates a schema for literal types with Plutus Data Constructor transformation + +**Signature** + +```ts +export declare const Literal: >>( + ...self: Literals +) => Literal +``` + +Added in v2.0.0 + +## Map + +Creates a schema for maps with Plutus Map type annotation +Maps are represented as a list of constructor pairs, where each pair +is a constructor with index 0 and fields [key, value] + +**Signature** + +```ts +export declare const Map: (key: K, value: V) => Map +``` + +Added in v1.0.0 + +## NullOr + +Creates a schema for nullable types that transforms to/from Plutus Data Constructor +Represents optional values as: + +- Just(value) with index 0 +- Nothing with index 1 + +**Signature** + +```ts +export declare const NullOr: (self: S) => NullOr +``` + +Added in v2.0.0 + +## OneLiteral + +**Signature** + +```ts +export declare const OneLiteral: >( + self: Single +) => OneLiteral +``` + +## Struct + +Creates a schema for struct types using Plutus Data Constructor +Objects are represented as a constructor with index 0 and fields as an array + +**Signature** + +```ts +export declare const Struct: (fields: Fields) => Struct +``` + +Added in v2.0.0 + +## Tuple + +Creates a schema for tuple types using Plutus Data List transformation +Tuples are represented as a constructor with index 0 and fields as an array + +**Signature** + +```ts +export declare const Tuple: (element: [...Elements]) => Tuple +``` + +Added in v2.0.0 + +## UndefinedOr + +Creates a schema for undefined types that transforms to/from Plutus Data Constructor +Represents optional values as: + +- Just(value) with index 0 +- Nothing with index 1 + +**Signature** + +```ts +export declare const UndefinedOr: (self: S) => UndefineOr +``` + +Added in v2.0.0 + +## Union + +Creates a schema for union types using Plutus Data Constructor +Unions are represented as a constructor with index 0 and fields as an array + +**Signature** + +```ts +export declare const Union: >(...members: Members) => Union +``` + +Added in v2.0.0 + +## compose + +**Signature** + +```ts +export declare const compose: { + >( + to: To & Schema.Schema, C, Schema.Schema.Context> + ): (from: From) => Schema.transform + ( + to: To + ): >( + from: From & Schema.Schema, Schema.Schema.Context> + ) => Schema.transform + ( + to: To, + options?: { readonly strict: true } + ): ( + from: From & Schema.Schema, Schema.Schema.Encoded, Schema.Schema.Context> + ) => Schema.transform + ( + to: To, + options: { readonly strict: false } + ): (from: From) => Schema.transform + >( + from: From, + to: To & Schema.Schema, C, Schema.Schema.Context> + ): Schema.transform + , To extends Schema.Schema.Any>( + from: From & Schema.Schema, Schema.Schema.Context>, + to: To + ): Schema.transform + ( + from: From & Schema.Schema, Schema.Schema.Encoded, Schema.Schema.Context>, + to: To, + options?: { readonly strict: true } + ): Schema.transform + ( + from: From, + to: To, + options: { readonly strict: false } + ): Schema.transform +} +``` + +## filter + +**Signature** + +```ts +export declare const filter: typeof Schema.filter +``` + +## is + +**Signature** + +```ts +export declare const is: ( + schema: Schema.Schema, + options?: SchemaAST.ParseOptions +) => (u: unknown, overrideOptions?: SchemaAST.ParseOptions | number) => u is A +``` diff --git a/docs/pages/reference/modules/modules/Text.mdx b/docs/pages/reference/modules/modules/Text.mdx new file mode 100644 index 00000000..e934a550 --- /dev/null +++ b/docs/pages/reference/modules/modules/Text.mdx @@ -0,0 +1,102 @@ +--- +title: Text.ts +nav_order: 83 +parent: Modules +--- + +## Text overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [errors](#errors) + - [TextError (class)](#texterror-class) +- [schemas](#schemas) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for Text encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string) => any; hex: (input: string) => string } + Decode: { bytes: (input: any) => string; hex: (input: string) => string } + EncodeEffect: { + bytes: (input: string) => Effect> + hex: (input: string) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect> + hex: (input: string) => Effect> + } + EncodeEither: { + bytes: (input: string) => Either> + hex: (input: string) => Either> + } + DecodeEither: { + bytes: (input: any) => Either> + hex: (input: string) => Either> + } +} +``` + +Added in v2.0.0 + +# errors + +## TextError (class) + +Error class for Text related operations. + +**Signature** + +```ts +export declare class TextError +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +Schema for converting between strings and UTF-8 byte arrays. +text -> bytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform +``` + +Added in v2.0.0 + +## FromHex + +Schema for converting between strings and hex representation of UTF-8 bytes. + +``` +text <-> hex +``` + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform +> +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/Text128.mdx b/docs/pages/reference/modules/modules/Text128.mdx new file mode 100644 index 00000000..7bf77f7b --- /dev/null +++ b/docs/pages/reference/modules/modules/Text128.mdx @@ -0,0 +1,130 @@ +--- +title: Text128.ts +nav_order: 84 +parent: Modules +--- + +## Text128 overview + +--- + +

Table of contents

+ +- [constants](#constants) + - [TEXT128_MIN_LENGTH](#text128_min_length) +- [errors](#errors) + - [Text128Error (class)](#text128error-class) +- [schemas](#schemas) + - [FromVariableBytes](#fromvariablebytes) +- [utils](#utils) + - [Codec](#codec) + - [FromVariableHex](#fromvariablehex) + - [TEXT128_MAX_LENGTH](#text128_max_length) + - [generator](#generator) + +--- + +# constants + +## TEXT128_MIN_LENGTH + +Constants for Text128 validation. +text .size (0 .. 128) + +**Signature** + +```ts +export declare const TEXT128_MIN_LENGTH: 0 +``` + +Added in v2.0.0 + +# errors + +## Text128Error (class) + +Error class for Text128 related operations. + +**Signature** + +```ts +export declare class Text128Error +``` + +Added in v2.0.0 + +# schemas + +## FromVariableBytes + +Schema for validating variable-length text between 0 and 128 characters. +text .size (0 .. 128) + +**Signature** + +```ts +export declare const FromVariableBytes: Schema.filter< + Schema.transform +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string) => any; hex: (input: string) => string } + Decode: { bytes: (input: any) => string; hex: (input: string) => string } + EncodeEffect: { + bytes: (input: string) => Effect> + hex: (input: string) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect> + hex: (input: string) => Effect> + } + EncodeEither: { + bytes: (input: string) => Either> + hex: (input: string) => Either> + } + DecodeEither: { + bytes: (input: any) => Either> + hex: (input: string) => Either> + } +} +``` + +## FromVariableHex + +**Signature** + +```ts +export declare const FromVariableHex: Schema.refine< + string, + Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform + > +> +``` + +## TEXT128_MAX_LENGTH + +**Signature** + +```ts +export declare const TEXT128_MAX_LENGTH: 128 +``` + +## generator + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` diff --git a/docs/pages/reference/modules/modules/Transaction.mdx b/docs/pages/reference/modules/modules/Transaction.mdx new file mode 100644 index 00000000..fa5f4c09 --- /dev/null +++ b/docs/pages/reference/modules/modules/Transaction.mdx @@ -0,0 +1,45 @@ +--- +title: Transaction.ts +nav_order: 85 +parent: Modules +--- + +## Transaction overview + +--- + +

Table of contents

+ +- [model](#model) + - [TransactionClass (class)](#transactionclass-class) +- [utils](#utils) + - [Transaction (type alias)](#transaction-type-alias) + +--- + +# model + +## TransactionClass (class) + +Transaction based on Conway CDDL specification + +CDDL: transaction = +[transaction_body, transaction_witness_set, bool, auxiliary_data / nil] + +**Signature** + +```ts +export declare class TransactionClass +``` + +Added in v2.0.0 + +# utils + +## Transaction (type alias) + +**Signature** + +```ts +export type Transaction = Schema.Schema.Type +``` diff --git a/docs/pages/reference/modules/modules/TransactionBody.mdx b/docs/pages/reference/modules/modules/TransactionBody.mdx new file mode 100644 index 00000000..c06707a0 --- /dev/null +++ b/docs/pages/reference/modules/modules/TransactionBody.mdx @@ -0,0 +1,55 @@ +--- +title: TransactionBody.ts +nav_order: 86 +parent: Modules +--- + +## TransactionBody overview + +--- + +

Table of contents

+ +- [model](#model) + - [TransactionBody (class)](#transactionbody-class) + +--- + +# model + +## TransactionBody (class) + +TransactionBody based on Conway CDDL specification + +``` +CDDL: transaction_body = + { 0 : set + , 1 : [* transaction_output] + , 2 : coin + , ? 3 : slot_no + , ? 4 : certificates + , ? 5 : withdrawals + , ? 7 : auxiliary_data_hash + , ? 8 : slot_no + , ? 9 : mint + , ? 11 : script_data_hash + , ? 13 : nonempty_set + , ? 14 : required_signers + , ? 15 : network_id + , ? 16 : transaction_output + , ? 17 : coin + , ? 18 : nonempty_set + , ? 19 : voting_procedures + , ? 20 : proposal_procedures + , ? 21 : coin + , ? 22 : positive_coin + } +``` + +**Signature** + +```ts +export declare class TransactionBody +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/TransactionHash.mdx b/docs/pages/reference/modules/modules/TransactionHash.mdx new file mode 100644 index 00000000..48cded31 --- /dev/null +++ b/docs/pages/reference/modules/modules/TransactionHash.mdx @@ -0,0 +1,170 @@ +--- +title: TransactionHash.ts +nav_order: 87 +parent: Modules +--- + +## TransactionHash overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [TransactionHashError (class)](#transactionhasherror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [BytesSchema](#bytesschema) + - [HexSchema](#hexschema) + - [TransactionHash](#transactionhash) +- [utils](#utils) + - [TransactionHash (type alias)](#transactionhash-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for TransactionHash encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { + bytes: (input: string & Brand<"TransactionHash">) => any + hex: (input: string & Brand<"TransactionHash">) => string + } + Decode: { + bytes: (input: any) => string & Brand<"TransactionHash"> + hex: (input: string) => string & Brand<"TransactionHash"> + } + EncodeEffect: { + bytes: (input: string & Brand<"TransactionHash">) => Effect> + hex: (input: string & Brand<"TransactionHash">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"TransactionHash">) => Either> + hex: (input: string & Brand<"TransactionHash">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two TransactionHash instances are equal. + +**Signature** + +```ts +export declare const equals: (a: TransactionHash, b: TransactionHash) => boolean +``` + +Added in v2.0.0 + +# errors + +## TransactionHashError (class) + +Error class for TransactionHash related operations. + +**Signature** + +```ts +export declare class TransactionHashError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random TransactionHash. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## BytesSchema + +Schema for transforming between Uint8Array and TransactionHash. + +**Signature** + +```ts +export declare const BytesSchema: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "TransactionHash"> +> +``` + +Added in v2.0.0 + +## HexSchema + +Schema for transforming between hex string and TransactionHash. + +**Signature** + +```ts +export declare const HexSchema: Schema.transform< + Schema.refine>, + Schema.brand>, "TransactionHash"> +> +``` + +Added in v2.0.0 + +## TransactionHash + +Schema for TransactionHash. +transaction_hash = Bytes32 + +**Signature** + +```ts +export declare const TransactionHash: Schema.brand< + Schema.refine>, + "TransactionHash" +> +``` + +Added in v2.0.0 + +# utils + +## TransactionHash (type alias) + +**Signature** + +```ts +export type TransactionHash = typeof TransactionHash.Type +``` diff --git a/docs/pages/reference/modules/modules/TransactionIndex.mdx b/docs/pages/reference/modules/modules/TransactionIndex.mdx new file mode 100644 index 00000000..e7abda20 --- /dev/null +++ b/docs/pages/reference/modules/modules/TransactionIndex.mdx @@ -0,0 +1,42 @@ +--- +title: TransactionIndex.ts +nav_order: 88 +parent: Modules +--- + +## TransactionIndex overview + +--- + +

Table of contents

+ +- [model](#model) + - [TransactionIndexSchema](#transactionindexschema) +- [utils](#utils) + - [TransactionIndex (type alias)](#transactionindex-type-alias) + +--- + +# model + +## TransactionIndexSchema + +CDDL: transaction_index = uint .size 2 + +**Signature** + +```ts +export declare const TransactionIndexSchema: Schema.refine +``` + +Added in v2.0.0 + +# utils + +## TransactionIndex (type alias) + +**Signature** + +```ts +export type TransactionIndex = Schema.Schema.Type +``` diff --git a/docs/pages/reference/modules/modules/TransactionInput.mdx b/docs/pages/reference/modules/modules/TransactionInput.mdx new file mode 100644 index 00000000..2d019295 --- /dev/null +++ b/docs/pages/reference/modules/modules/TransactionInput.mdx @@ -0,0 +1,206 @@ +--- +title: TransactionInput.ts +nav_order: 89 +parent: Modules +--- + +## TransactionInput overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [TransactionInputError (class)](#transactioninputerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [TransactionInput (class)](#transactioninput-class) +- [predicates](#predicates) + - [isTransactionInput](#istransactioninput) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [TransactionInputCDDLSchema](#transactioninputcddlschema) + +--- + +# encoding/decoding + +## Codec + +Extended Codec with CBOR support for TransactionInput. + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: TransactionInput) => any; cborHex: (input: TransactionInput) => string } + Decode: { cborBytes: (input: any) => TransactionInput; cborHex: (input: string) => TransactionInput } + EncodeEffect: { + cborBytes: (input: TransactionInput) => Effect.Effect> + cborHex: (input: TransactionInput) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: TransactionInput) => Either> + cborHex: (input: TransactionInput) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two TransactionInput instances are equal. + +**Signature** + +```ts +export declare const equals: (a: TransactionInput, b: TransactionInput) => boolean +``` + +Added in v2.0.0 + +# errors + +## TransactionInputError (class) + +Error class for TransactionInput related operations. + +**Signature** + +```ts +export declare class TransactionInputError +``` + +Added in v2.0.0 + +# generators + +## generator + +FastCheck generator for TransactionInput instances. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## TransactionInput (class) + +Schema for TransactionInput representing a transaction input with transaction id and index. +transaction_input = [transaction_id : $Bytes32, index : uint .size 2] + +**Signature** + +```ts +export declare class TransactionInput +``` + +Added in v2.0.0 + +# predicates + +## isTransactionInput + +Check if the given value is a valid TransactionInput. + +**Signature** + +```ts +export declare const isTransactionInput: (u: unknown, overrideOptions?: ParseOptions | number) => u is TransactionInput +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for TransactionInput. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for TransactionInput. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## TransactionInputCDDLSchema + +CDDL schema for TransactionInput. +transaction_input = [transaction_id : $Bytes32, index : uint .size 2] + +**Signature** + +```ts +export declare const TransactionInputCDDLSchema: Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/TransactionMetadatumLabels.mdx b/docs/pages/reference/modules/modules/TransactionMetadatumLabels.mdx new file mode 100644 index 00000000..a304c55a --- /dev/null +++ b/docs/pages/reference/modules/modules/TransactionMetadatumLabels.mdx @@ -0,0 +1,204 @@ +--- +title: TransactionMetadatumLabels.ts +nav_order: 90 +parent: Modules +--- + +## TransactionMetadatumLabels overview + +--- + +

Table of contents

+ +- [model](#model) + - [TransactionMetadatumLabel](#transactionmetadatumlabel) + - [TransactionMetadatumLabel (type alias)](#transactionmetadatumlabel-type-alias) + - [TransactionMetadatumLabelsError (class)](#transactionmetadatumlabelserror-class) +- [schemas](#schemas) + - [TransactionMetadatumLabels (class)](#transactionmetadatumlabels-class) + - [[Inspectable.NodeInspectSymbol] (method)](#inspectablenodeinspectsymbol-method) + - [size (method)](#size-method) + - [get (method)](#get-method) + - [set (method)](#set-method) + - [add (method)](#add-method) + - [removeFirst (method)](#removefirst-method) + - [removeLast (method)](#removelast-method) + - [removeAll (method)](#removeall-method) + - [removeAt (method)](#removeat-method) + - [has (method)](#has-method) +- [utils](#utils) + - [describeTransactionMetadatumLabel](#describetransactionmetadatumlabel) + +--- + +# model + +## TransactionMetadatumLabel + +CDDL spec: + +``` +transaction_metadatum_label = uint .size 8 +``` + +**Signature** + +```ts +export declare const TransactionMetadatumLabel: typeof Schema.Uint8 +``` + +Added in v2.0.0 + +## TransactionMetadatumLabel (type alias) + +Type representing a transaction metadatum label. + +**Signature** + +```ts +export type TransactionMetadatumLabel = typeof TransactionMetadatumLabel.Type +``` + +Added in v2.0.0 + +## TransactionMetadatumLabelsError (class) + +Error thrown when transaction metadatum labels operations fail + +**Signature** + +```ts +export declare class TransactionMetadatumLabelsError +``` + +Added in v2.0.0 + +# schemas + +## TransactionMetadatumLabels (class) + +Transaction metadatum labels from an array of `TransactionMetadatumLabel` + +**Signature** + +```ts +export declare class TransactionMetadatumLabels +``` + +Added in v2.0.0 + +### [Inspectable.NodeInspectSymbol] (method) + +**Signature** + +```ts +;[Inspectable.NodeInspectSymbol]() +``` + +### size (method) + +Gets the size of the labels. + +**Signature** + +```ts +size() +``` + +### get (method) + +Gets the label located at the specified index. If the index is out-of-bound, +returns `undefined` + +**Signature** + +```ts +get(index: number) +``` + +### set (method) + +Overrides the existing labels with the specified ones. + +**Signature** + +```ts +set(overideLabels: Array) +``` + +### add (method) + +Appends a new label to the **end** + +**Signature** + +```ts +add(label: TransactionMetadatumLabel) +``` + +### removeFirst (method) + +Removes the first occurence of the specified label from the collection. + +**Signature** + +```ts +removeFirst(label: TransactionMetadatumLabel) +``` + +### removeLast (method) + +Removes the last occurence of the specified label from the collection. + +**Signature** + +```ts +removeLast(label: TransactionMetadatumLabel) +``` + +### removeAll (method) + +Removes all occurences of the specified label from the collection. + +**Signature** + +```ts +removeAll(label: TransactionMetadatumLabel) +``` + +### removeAt (method) + +Removes the label at the specified index from the collection. + +**Signature** + +```ts +removeAt(index: number) +``` + +### has (method) + +Determines whether the collection contains the specified label. + +**Signature** + +```ts +has(label: TransactionMetadatumLabel) +``` + +# utils + +## describeTransactionMetadatumLabel + +Describe transaction metadatum label as per +[CIP-10](https://github.com/cardano-foundation/CIPs/blob/master/CIP-0010/registry.json) standard. + +**NOTE**: Only labels associated with CIPs will be described. + +**Signature** + +```ts +export declare const describeTransactionMetadatumLabel: (label: TransactionMetadatumLabel) => string | undefined +``` + +Added in v2.0.0 diff --git a/docs/pages/reference/modules/modules/TransactionOutput.mdx b/docs/pages/reference/modules/modules/TransactionOutput.mdx new file mode 100644 index 00000000..d838fbfe --- /dev/null +++ b/docs/pages/reference/modules/modules/TransactionOutput.mdx @@ -0,0 +1,416 @@ +--- +title: TransactionOutput.ts +nav_order: 91 +parent: Modules +--- + +## TransactionOutput overview + +--- + +

Table of contents

+ +- [model](#model) + - [BabbageTransactionOutput (class)](#babbagetransactionoutput-class) + - [ShelleyTransactionOutput (class)](#shelleytransactionoutput-class) +- [schemas](#schemas) + - [BabbageTransactionOutputCDDLSchema](#babbagetransactionoutputcddlschema) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [ShelleyTransactionOutputCDDLSchema](#shelleytransactionoutputcddlschema) + - [TransactionOutput](#transactionoutput) + - [TransactionOutputCDDLSchema](#transactionoutputcddlschema) +- [utils](#utils) + - [Codec](#codec) + - [TransactionOutput (type alias)](#transactionoutput-type-alias) + - [TransactionOutputError (class)](#transactionoutputerror-class) + +--- + +# model + +## BabbageTransactionOutput (class) + +Babbage-era transaction output format + +``` +CDDL: babbage_transaction_output = + {0 : address, 1 : value, ? 2 : datum_option, ? 3 : script_ref} +``` + +**Signature** + +```ts +export declare class BabbageTransactionOutput +``` + +Added in v2.0.0 + +## ShelleyTransactionOutput (class) + +Shelley-era transaction output format + +``` +CDDL: shelley_transaction_output = [address, amount : value, ? Bytes32] +``` + +**Signature** + +```ts +export declare class ShelleyTransactionOutput +``` + +Added in v2.0.0 + +# schemas + +## BabbageTransactionOutputCDDLSchema + +CDDL schema for Babbage transaction outputs + +``` +CDDL: babbage_transaction_output = {0 : address, 1 : value, ? 2 : datum_option, ? 3 : script_ref} +``` + +**Signature** + +```ts +export declare const BabbageTransactionOutputCDDLSchema: Schema.transformOrFail< + Schema.Struct<{ + 0: typeof Schema.Uint8ArrayFromSelf + 1: Schema.SchemaClass< + bigint | readonly [bigint, ReadonlyMap>], + bigint | readonly [bigint, ReadonlyMap>], + never + > + 2: Schema.optional< + Schema.SchemaClass< + readonly [0n, any] | readonly [1n, CBOR.CBOR], + readonly [0n, any] | readonly [1n, CBOR.CBOR], + never + > + > + 3: Schema.optional< + Schema.SchemaClass< + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + never + > + > + }>, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +## FromBytes + +CBOR bytes transformation schema for TransactionOutput. +Transforms between Uint8Array and TransactionOutput using CBOR encoding. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.Union< + [ + Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass< + bigint | readonly [bigint, ReadonlyMap>], + bigint | readonly [bigint, ReadonlyMap>], + never + >, + Schema.Element + ] + >, + Schema.SchemaClass, + never + >, + Schema.transformOrFail< + Schema.Struct<{ + 0: typeof Schema.Uint8ArrayFromSelf + 1: Schema.SchemaClass< + bigint | readonly [bigint, ReadonlyMap>], + bigint | readonly [bigint, ReadonlyMap>], + never + > + 2: Schema.optional< + Schema.SchemaClass< + readonly [0n, any] | readonly [1n, CBOR.CBOR], + readonly [0n, any] | readonly [1n, CBOR.CBOR], + never + > + > + 3: Schema.optional< + Schema.SchemaClass< + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + never + > + > + }>, + Schema.SchemaClass, + never + > + ] + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for TransactionOutput. +Transforms between hex string and TransactionOutput using CBOR encoding. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.Union< + [ + Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass< + bigint | readonly [bigint, ReadonlyMap>], + bigint | readonly [bigint, ReadonlyMap>], + never + >, + Schema.Element + ] + >, + Schema.SchemaClass, + never + >, + Schema.transformOrFail< + Schema.Struct<{ + 0: typeof Schema.Uint8ArrayFromSelf + 1: Schema.SchemaClass< + bigint | readonly [bigint, ReadonlyMap>], + bigint | readonly [bigint, ReadonlyMap>], + never + > + 2: Schema.optional< + Schema.SchemaClass< + readonly [0n, any] | readonly [1n, CBOR.CBOR], + readonly [0n, any] | readonly [1n, CBOR.CBOR], + never + > + > + 3: Schema.optional< + Schema.SchemaClass< + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + never + > + > + }>, + Schema.SchemaClass, + never + > + ] + > + > +> +``` + +Added in v2.0.0 + +## ShelleyTransactionOutputCDDLSchema + +CDDL schema for Shelley transaction outputs + +``` +CDDL: shelley_transaction_output = [address, amount : value, ? Bytes32] +``` + +**Signature** + +```ts +export declare const ShelleyTransactionOutputCDDLSchema: Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass< + bigint | readonly [bigint, ReadonlyMap>], + bigint | readonly [bigint, ReadonlyMap>], + never + >, + Schema.Element + ] + >, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +## TransactionOutput + +Union type for transaction outputs + +``` +CDDL: transaction_output = shelley_transaction_output / babbage_transaction_output +``` + +**Signature** + +```ts +export declare const TransactionOutput: Schema.Union<[typeof ShelleyTransactionOutput, typeof BabbageTransactionOutput]> +``` + +Added in v2.0.0 + +## TransactionOutputCDDLSchema + +CDDL schema for transaction outputs + +``` +CDDL: transaction_output = shelley_transaction_output / babbage_transaction_output +shelley_transaction_output = [address, amount : value, ? Bytes32] +babbage_transaction_output = {0 : address, 1 : value, ? 2 : datum_option, ? 3 : script_ref} +``` + +**Signature** + +```ts +export declare const TransactionOutputCDDLSchema: Schema.Union< + [ + Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass< + bigint | readonly [bigint, ReadonlyMap>], + bigint | readonly [bigint, ReadonlyMap>], + never + >, + Schema.Element + ] + >, + Schema.SchemaClass, + never + >, + Schema.transformOrFail< + Schema.Struct<{ + 0: typeof Schema.Uint8ArrayFromSelf + 1: Schema.SchemaClass< + bigint | readonly [bigint, ReadonlyMap>], + bigint | readonly [bigint, ReadonlyMap>], + never + > + 2: Schema.optional< + Schema.SchemaClass< + readonly [0n, any] | readonly [1n, CBOR.CBOR], + readonly [0n, any] | readonly [1n, CBOR.CBOR], + never + > + > + 3: Schema.optional< + Schema.SchemaClass< + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + never + > + > + }>, + Schema.SchemaClass, + never + > + ] +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: (input: ShelleyTransactionOutput | BabbageTransactionOutput) => any + cborHex: (input: ShelleyTransactionOutput | BabbageTransactionOutput) => string + } + Decode: { + cborBytes: (input: any) => ShelleyTransactionOutput | BabbageTransactionOutput + cborHex: (input: string) => ShelleyTransactionOutput | BabbageTransactionOutput + } + EncodeEffect: { + cborBytes: ( + input: ShelleyTransactionOutput | BabbageTransactionOutput + ) => Effect.Effect> + cborHex: ( + input: ShelleyTransactionOutput | BabbageTransactionOutput + ) => Effect.Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect.Effect> + cborHex: ( + input: string + ) => Effect.Effect> + } + EncodeEither: { + cborBytes: ( + input: ShelleyTransactionOutput | BabbageTransactionOutput + ) => Either> + cborHex: ( + input: ShelleyTransactionOutput | BabbageTransactionOutput + ) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either> + cborHex: ( + input: string + ) => Either> + } +} +``` + +## TransactionOutput (type alias) + +**Signature** + +```ts +export type TransactionOutput = Schema.Schema.Type +``` + +## TransactionOutputError (class) + +**Signature** + +```ts +export declare class TransactionOutputError +``` diff --git a/docs/pages/reference/modules/modules/UnitInterval.mdx b/docs/pages/reference/modules/modules/UnitInterval.mdx new file mode 100644 index 00000000..0688279a --- /dev/null +++ b/docs/pages/reference/modules/modules/UnitInterval.mdx @@ -0,0 +1,305 @@ +--- +title: UnitInterval.ts +nav_order: 93 +parent: Modules +--- + +## UnitInterval overview + +--- + +

Table of contents

+ +- [codecs](#codecs) + - [CBORCodec](#cborcodec) +- [constructors](#constructors) + - [fromBigDecimal](#frombigdecimal) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [UnitIntervalError (class)](#unitintervalerror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [FromCBORBytes](#fromcborbytes) + - [FromCBORHex](#fromcborhex) + - [FromCDDL](#fromcddl) + - [UnitInterval](#unitinterval) +- [transformation](#transformation) + - [toBigDecimal](#tobigdecimal) +- [utils](#utils) + - [UnitInterval (type alias)](#unitinterval-type-alias) + +--- + +# codecs + +## CBORCodec + +CBOR codec utilities for UnitInterval. + +**Signature** + +```ts +export declare const CBORCodec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: (input: { readonly numerator: bigint; readonly denominator: bigint }) => any + cborHex: (input: { readonly numerator: bigint; readonly denominator: bigint }) => string + } + Decode: { + cborBytes: (input: any) => { readonly numerator: bigint; readonly denominator: bigint } + cborHex: (input: string) => { readonly numerator: bigint; readonly denominator: bigint } + } + EncodeEffect: { + cborBytes: (input: { + readonly numerator: bigint + readonly denominator: bigint + }) => Effect.Effect> + cborHex: (input: { + readonly numerator: bigint + readonly denominator: bigint + }) => Effect.Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect.Effect< + { readonly numerator: bigint; readonly denominator: bigint }, + InstanceType + > + cborHex: ( + input: string + ) => Effect.Effect< + { readonly numerator: bigint; readonly denominator: bigint }, + InstanceType + > + } + EncodeEither: { + cborBytes: (input: { + readonly numerator: bigint + readonly denominator: bigint + }) => Either> + cborHex: (input: { + readonly numerator: bigint + readonly denominator: bigint + }) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either<{ readonly numerator: bigint; readonly denominator: bigint }, InstanceType> + cborHex: ( + input: string + ) => Either<{ readonly numerator: bigint; readonly denominator: bigint }, InstanceType> + } +} +``` + +Added in v2.0.0 + +# constructors + +## fromBigDecimal + +Create UnitInterval from BigDecimal value. + +**Signature** + +```ts +export declare const fromBigDecimal: (value: BigDecimal.BigDecimal) => UnitInterval +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two UnitInterval instances are equal. + +**Signature** + +```ts +export declare const equals: (a: UnitInterval, b: UnitInterval) => boolean +``` + +Added in v2.0.0 + +# errors + +## UnitIntervalError (class) + +Error class for UnitInterval related operations. + +**Signature** + +```ts +export declare class UnitIntervalError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random UnitInterval. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary<{ readonly numerator: bigint; readonly denominator: bigint }> +``` + +Added in v2.0.0 + +# schemas + +## FromCBORBytes + +CBOR bytes transformation schema for UnitInterval. +Transforms between Uint8Array and UnitInterval using CBOR encoding. + +**Signature** + +```ts +export declare const FromCBORBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + typeof CBOR.Tag, + Schema.refine< + { readonly numerator: bigint; readonly denominator: bigint }, + Schema.Struct<{ + numerator: Schema.refine + denominator: Schema.refine + }> + >, + never + > +> +``` + +Added in v2.0.0 + +## FromCBORHex + +CBOR hex transformation schema for UnitInterval. +Transforms between hex string and UnitInterval using CBOR encoding. + +**Signature** + +```ts +export declare const FromCBORHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + typeof CBOR.Tag, + Schema.refine< + { readonly numerator: bigint; readonly denominator: bigint }, + Schema.Struct<{ + numerator: Schema.refine + denominator: Schema.refine + }> + >, + never + > + > +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for UnitInterval following the Conway specification. + +``` +unit_interval = #6.30([uint, uint]) +``` + +Transforms between CBOR tag 30 structure and UnitInterval model. + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + typeof CBOR.Tag, + Schema.refine< + { readonly numerator: bigint; readonly denominator: bigint }, + Schema.Struct<{ + numerator: Schema.refine + denominator: Schema.refine + }> + >, + never +> +``` + +Added in v2.0.0 + +## UnitInterval + +Schema for UnitInterval representing a fractional value between 0 and 1. + +``` +CDDL: unit_interval = #6.30([uint, uint]) +``` + +A unit interval is a number in the range between 0 and 1, which +means there are two extra constraints: + +``` +1. numerator โ‰ค denominator +2. denominator > 0 +``` + +**Signature** + +```ts +export declare const UnitInterval: Schema.refine< + { readonly numerator: bigint; readonly denominator: bigint }, + Schema.Struct<{ + numerator: Schema.refine + denominator: Schema.refine + }> +> +``` + +Added in v2.0.0 + +# transformation + +## toBigDecimal + +Convert UnitInterval to BigDecimal value. + +**Signature** + +```ts +export declare const toBigDecimal: (interval: UnitInterval) => BigDecimal.BigDecimal +``` + +Added in v2.0.0 + +# utils + +## UnitInterval (type alias) + +**Signature** + +```ts +export type UnitInterval = typeof UnitInterval.Type +``` diff --git a/docs/pages/reference/modules/modules/Url.mdx b/docs/pages/reference/modules/modules/Url.mdx new file mode 100644 index 00000000..459c9a7a --- /dev/null +++ b/docs/pages/reference/modules/modules/Url.mdx @@ -0,0 +1,206 @@ +--- +title: Url.ts +nav_order: 94 +parent: Modules +--- + +## Url overview + +--- + +

Table of contents

+ +- [constants](#constants) + - [URL_MAX_LENGTH](#url_max_length) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [UrlError (class)](#urlerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [Url](#url) + - [Url (type alias)](#url-type-alias) +- [utils](#utils) + - [Codec](#codec) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [make](#make) + +--- + +# constants + +## URL_MAX_LENGTH + +CDDL specification: +url = text .size (0..128) + +**Signature** + +```ts +export declare const URL_MAX_LENGTH: 128 +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two Url instances are equal. + +**Signature** + +```ts +export declare const equals: (a: Url, b: Url) => boolean +``` + +Added in v2.0.0 + +# errors + +## UrlError (class) + +Error class for Url related operations. + +**Signature** + +```ts +export declare class UrlError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random Url. + +**Signature** + +```ts +export declare const generator: Arbitrary> +``` + +Added in v2.0.0 + +# model + +## Url + +Schema for Url representing URLs as branded text. +url = text .size (0..128) + +**Signature** + +```ts +export declare const Url: Schema.brand< + Schema.refine< + string, + Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform + > + >, + "Url" +> +``` + +Added in v2.0.0 + +## Url (type alias) + +Type alias for Url. + +**Signature** + +```ts +export type Url = typeof Url.Type +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"Url">) => any; hex: (input: string & Brand<"Url">) => string } + Decode: { bytes: (input: any) => string & Brand<"Url">; hex: (input: string) => string & Brand<"Url"> } + EncodeEffect: { + bytes: (input: string & Brand<"Url">) => Effect> + hex: (input: string & Brand<"Url">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"Url">) => Either> + hex: (input: string & Brand<"Url">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.filter>, + Schema.brand< + Schema.refine< + string, + Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform + > + >, + "Url" + > +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine< + string, + Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform + > + >, + Schema.brand< + Schema.refine< + string, + Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform + > + >, + "Url" + > +> +``` + +## make + +**Signature** + +```ts +export declare const make: (a: string, options?: Schema.MakeOptions) => string & Brand<"Url"> +``` diff --git a/docs/pages/reference/modules/modules/VKey.mdx b/docs/pages/reference/modules/modules/VKey.mdx new file mode 100644 index 00000000..382bd7b6 --- /dev/null +++ b/docs/pages/reference/modules/modules/VKey.mdx @@ -0,0 +1,154 @@ +--- +title: VKey.ts +nav_order: 96 +parent: Modules +--- + +## VKey overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [VKeyError (class)](#vkeyerror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [VKey](#vkey) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [VKey (type alias)](#vkey-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for VKey encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"VKey">) => any; hex: (input: string & Brand<"VKey">) => string } + Decode: { bytes: (input: any) => string & Brand<"VKey">; hex: (input: string) => string & Brand<"VKey"> } + EncodeEffect: { + bytes: (input: string & Brand<"VKey">) => Effect> + hex: (input: string & Brand<"VKey">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"VKey">) => Either> + hex: (input: string & Brand<"VKey">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two VKey instances are equal. + +**Signature** + +```ts +export declare const equals: (a: VKey, b: VKey) => boolean +``` + +Added in v2.0.0 + +# errors + +## VKeyError (class) + +Error class for VKey related operations. + +**Signature** + +```ts +export declare class VKeyError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random VKey. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## VKey + +Schema for VKey representing a verification key. +vkey = bytes .size 32 +Follows the Conway-era CDDL specification. + +**Signature** + +```ts +export declare const VKey: Schema.brand>, "VKey"> +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "VKey"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "VKey"> +> +``` + +## VKey (type alias) + +**Signature** + +```ts +export type VKey = typeof VKey.Type +``` diff --git a/docs/pages/reference/modules/modules/Value.mdx b/docs/pages/reference/modules/modules/Value.mdx new file mode 100644 index 00000000..2c452c5c --- /dev/null +++ b/docs/pages/reference/modules/modules/Value.mdx @@ -0,0 +1,410 @@ +--- +title: Value.ts +nav_order: 95 +parent: Modules +--- + +## Value overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [onlyCoin](#onlycoin) + - [withAssets](#withassets) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [ValueError (class)](#valueerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [ValueCDDL (type alias)](#valuecddl-type-alias) +- [predicates](#predicates) + - [hasAssets](#hasassets) + - [is](#is) + - [isAdaOnly](#isadaonly) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [OnlyCoin (class)](#onlycoin-class) + - [ValueCDDLSchema](#valuecddlschema) +- [transformation](#transformation) + - [add](#add) + - [getAda](#getada) + - [getAssets](#getassets) + - [subtract](#subtract) +- [utils](#utils) + - [Codec](#codec) + - [Value](#value) + - [Value (type alias)](#value-type-alias) + - [WithAssets (class)](#withassets-class) + +--- + +# constructors + +## onlyCoin + +Create a Value containing only ADA. + +**Signature** + +```ts +export declare const onlyCoin: (ada: Coin.Coin) => OnlyCoin +``` + +Added in v2.0.0 + +## withAssets + +Create a Value containing ADA and native assets. + +**Signature** + +```ts +export declare const withAssets: (ada: Coin.Coin, assets: MultiAsset.MultiAsset) => WithAssets +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two Values are equal. + +**Signature** + +```ts +export declare const equals: (a: Value, b: Value) => boolean +``` + +Added in v2.0.0 + +# errors + +## ValueError (class) + +Error class for Value related operations. + +**Signature** + +```ts +export declare class ValueError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random Value. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary< + | { _tag: string; coin: bigint } + | { _tag: string; coin: bigint; assets: Map, Map, bigint>> } +> +``` + +Added in v2.0.0 + +# model + +## ValueCDDL (type alias) + +TypeScript type for the raw CDDL representation. +This is what gets encoded/decoded to/from CBOR. + +**Signature** + +```ts +export type ValueCDDL = typeof ValueCDDLSchema.Type +``` + +Added in v2.0.0 + +# predicates + +## hasAssets + +Check if a Value contains native assets. + +**Signature** + +```ts +export declare const hasAssets: (value: Value) => value is WithAssets +``` + +Added in v2.0.0 + +## is + +Check if a value is a valid Value. + +**Signature** + +```ts +export declare const is: (value: unknown) => value is Value +``` + +Added in v2.0.0 + +## isAdaOnly + +Check if a Value contains only ADA (no native assets). + +**Signature** + +```ts +export declare const isAdaOnly: (value: Value) => value is OnlyCoin +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for Value. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Union< + [ + typeof Schema.BigIntFromSelf, + Schema.Tuple2< + typeof Schema.BigIntFromSelf, + Schema.SchemaClass< + ReadonlyMap>, + ReadonlyMap>, + never + > + > + ] + >, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for Value. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Union< + [ + typeof Schema.BigIntFromSelf, + Schema.Tuple2< + typeof Schema.BigIntFromSelf, + Schema.SchemaClass< + ReadonlyMap>, + ReadonlyMap>, + never + > + > + ] + >, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## OnlyCoin (class) + +Schema for Value representing both ADA and native assets. + +``` +value = coin / [coin, multiasset] +``` + +This can be either: + +1. Just a coin amount (lovelace only) +2. A tuple of [coin, multiasset] (lovelace + native assets) + +**Signature** + +```ts +export declare class OnlyCoin +``` + +Added in v2.0.0 + +## ValueCDDLSchema + +CDDL schema for Value as union structure. + +``` +value = coin / [coin, multiasset] +``` + +This represents either: + +- A single coin amount (for ADA-only values) +- An array with [coin, multiasset] (for values with native assets) + +**Signature** + +```ts +export declare const ValueCDDLSchema: Schema.transformOrFail< + Schema.Union< + [ + typeof Schema.BigIntFromSelf, + Schema.Tuple2< + typeof Schema.BigIntFromSelf, + Schema.SchemaClass< + ReadonlyMap>, + ReadonlyMap>, + never + > + > + ] + >, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# transformation + +## add + +Add two Values together. +Combines ADA amounts and merges MultiAssets. + +**Signature** + +```ts +export declare const add: (a: Value, b: Value) => Value +``` + +Added in v2.0.0 + +## getAda + +Extract the ADA amount from a Value. + +**Signature** + +```ts +export declare const getAda: (value: Value) => Coin.Coin +``` + +Added in v2.0.0 + +## getAssets + +Extract the MultiAsset from a Value, if it exists. + +**Signature** + +```ts +export declare const getAssets: (value: Value) => Option.Option +``` + +Added in v2.0.0 + +## subtract + +Subtract Value b from Value a. +Subtracts ADA amounts and MultiAssets properly. + +**Signature** + +```ts +export declare const subtract: (a: Value, b: Value) => Value +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: OnlyCoin | WithAssets) => any; cborHex: (input: OnlyCoin | WithAssets) => string } + Decode: { cborBytes: (input: any) => OnlyCoin | WithAssets; cborHex: (input: string) => OnlyCoin | WithAssets } + EncodeEffect: { + cborBytes: (input: OnlyCoin | WithAssets) => Effect.Effect> + cborHex: (input: OnlyCoin | WithAssets) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: OnlyCoin | WithAssets) => Either> + cborHex: (input: OnlyCoin | WithAssets) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` + +## Value + +**Signature** + +```ts +export declare const Value: Schema.Union<[typeof OnlyCoin, typeof WithAssets]> +``` + +## Value (type alias) + +**Signature** + +```ts +export type Value = typeof Value.Type +``` + +## WithAssets (class) + +**Signature** + +```ts +export declare class WithAssets +``` diff --git a/docs/pages/reference/modules/modules/VotingProcedures.mdx b/docs/pages/reference/modules/modules/VotingProcedures.mdx new file mode 100644 index 00000000..54db9c52 --- /dev/null +++ b/docs/pages/reference/modules/modules/VotingProcedures.mdx @@ -0,0 +1,49 @@ +--- +title: VotingProcedures.ts +nav_order: 97 +parent: Modules +--- + +## VotingProcedures overview + +--- + +

Table of contents

+ +- [model](#model) + - [VotingProcedures](#votingprocedures) +- [utils](#utils) + - [VotingProcedures (type alias)](#votingprocedures-type-alias) + +--- + +# model + +## VotingProcedures + +VotingProcedures based on Conway CDDL specification + +``` +CDDL: voting_procedures = {+ voter => {+ gov_action_id => voting_procedure}} +``` + +This is a complex nested map structure that we'll implement gradually +as we create the required sub-types. + +**Signature** + +```ts +export declare const VotingProcedures: typeof Schema.Unknown +``` + +Added in v2.0.0 + +# utils + +## VotingProcedures (type alias) + +**Signature** + +```ts +export type VotingProcedures = Schema.Schema.Type +``` diff --git a/docs/pages/reference/modules/modules/VrfCert.mdx b/docs/pages/reference/modules/modules/VrfCert.mdx new file mode 100644 index 00000000..124991a2 --- /dev/null +++ b/docs/pages/reference/modules/modules/VrfCert.mdx @@ -0,0 +1,335 @@ +--- +title: VrfCert.ts +nav_order: 98 +parent: Modules +--- + +## VrfCert overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [make](#make) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [VrfCertError (class)](#vrfcerterror-class) +- [model](#model) + - [VRFOutput (type alias)](#vrfoutput-type-alias) + - [VRFProof (type alias)](#vrfproof-type-alias) + - [VrfCert (class)](#vrfcert-class) +- [predicates](#predicates) + - [isVrfCert](#isvrfcert) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [VRFOutput](#vrfoutput) + - [VRFOutputFromBytes](#vrfoutputfrombytes) + - [VRFOutputHexSchema](#vrfoutputhexschema) + - [VRFProof](#vrfproof) + - [VRFProofFromBytes](#vrfprooffrombytes) + - [VRFProofHexSchema](#vrfproofhexschema) + - [VrfCertCDDLSchema](#vrfcertcddlschema) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## make + +Create a VrfCert from output and proof. + +**Signature** + +```ts +export declare const make: (output: VRFOutput, proof: VRFProof) => VrfCert +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two VrfCert instances are equal. + +**Signature** + +```ts +export declare const equals: (a: VrfCert, b: VrfCert) => boolean +``` + +Added in v2.0.0 + +# errors + +## VrfCertError (class) + +Error class for VrfCert related operations. + +**Signature** + +```ts +export declare class VrfCertError +``` + +Added in v2.0.0 + +# model + +## VRFOutput (type alias) + +Type alias for VRF output. + +**Signature** + +```ts +export type VRFOutput = typeof VRFOutput.Type +``` + +Added in v2.0.0 + +## VRFProof (type alias) + +Type alias for VRF proof. + +**Signature** + +```ts +export type VRFProof = typeof VRFProof.Type +``` + +Added in v2.0.0 + +## VrfCert (class) + +Schema for VrfCert representing a VRF certificate. +vrf_cert = [vrf_output, vrf_proof] + +**Signature** + +```ts +export declare class VrfCert +``` + +Added in v2.0.0 + +# predicates + +## isVrfCert + +Check if the given value is a valid VrfCert. + +**Signature** + +```ts +export declare const isVrfCert: (u: unknown, overrideOptions?: ParseOptions | number) => u is VrfCert +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for VrfCert. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for VrfCert. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## VRFOutput + +Schema for VRF output (32 bytes). +vrf_output = bytes .size 32 + +**Signature** + +```ts +export declare const VRFOutput: Schema.brand< + Schema.refine>, + "VrfOutput" +> +``` + +Added in v2.0.0 + +## VRFOutputFromBytes + +Schema for VRF output as a byte array. +vrf_output = bytes .size 32 + +**Signature** + +```ts +export declare const VRFOutputFromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "VrfOutput"> +> +``` + +Added in v2.0.0 + +## VRFOutputHexSchema + +Schema for VRF output as a hex string. +vrf_output = bytes .size 32 + +**Signature** + +```ts +export declare const VRFOutputHexSchema: Schema.transform< + Schema.refine>, + Schema.brand>, "VrfOutput"> +> +``` + +Added in v2.0.0 + +## VRFProof + +Schema for VRF proof (80 bytes). +vrf_proof = bytes .size 80 + +**Signature** + +```ts +export declare const VRFProof: Schema.brand>, "VrfProof"> +``` + +Added in v2.0.0 + +## VRFProofFromBytes + +Schema for VRF proof as a byte array. +vrf_proof = bytes .size 80 + +**Signature** + +```ts +export declare const VRFProofFromBytes: Schema.transform< + Schema.transform< + Schema.filter, + Schema.filter> + >, + Schema.brand>, "VrfProof"> +> +``` + +Added in v2.0.0 + +## VRFProofHexSchema + +Schema for VRF proof as a hex string. +vrf_proof = bytes .size 80 + +**Signature** + +```ts +export declare const VRFProofHexSchema: Schema.transform< + Schema.filter>, + Schema.brand>, "VrfProof"> +> +``` + +Added in v2.0.0 + +## VrfCertCDDLSchema + +CDDL schema for VrfCert as tuple structure. +vrf_cert = [vrf_output, vrf_proof] +vrf_output = bytes .size 32 +vrf_proof = bytes .size 80 + +**Signature** + +```ts +export declare const VrfCertCDDLSchema: Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: VrfCert) => any; cborHex: (input: VrfCert) => string } + Decode: { cborBytes: (input: any) => VrfCert; cborHex: (input: string) => VrfCert } + EncodeEffect: { + cborBytes: (input: VrfCert) => Effect.Effect> + cborHex: (input: VrfCert) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: VrfCert) => Either> + cborHex: (input: VrfCert) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/docs/pages/reference/modules/modules/VrfKeyHash.mdx b/docs/pages/reference/modules/modules/VrfKeyHash.mdx new file mode 100644 index 00000000..20a84b8f --- /dev/null +++ b/docs/pages/reference/modules/modules/VrfKeyHash.mdx @@ -0,0 +1,156 @@ +--- +title: VrfKeyHash.ts +nav_order: 99 +parent: Modules +--- + +## VrfKeyHash overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [VrfKeyHashError (class)](#vrfkeyhasherror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [VrfKeyHash](#vrfkeyhash) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [VrfKeyHash (type alias)](#vrfkeyhash-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for VrfKeyHash encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"VrfKeyHash">) => any; hex: (input: string & Brand<"VrfKeyHash">) => string } + Decode: { bytes: (input: any) => string & Brand<"VrfKeyHash">; hex: (input: string) => string & Brand<"VrfKeyHash"> } + EncodeEffect: { + bytes: (input: string & Brand<"VrfKeyHash">) => Effect> + hex: (input: string & Brand<"VrfKeyHash">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"VrfKeyHash">) => Either> + hex: (input: string & Brand<"VrfKeyHash">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two VrfKeyHash instances are equal. + +**Signature** + +```ts +export declare const equals: (a: VrfKeyHash, b: VrfKeyHash) => boolean +``` + +Added in v2.0.0 + +# errors + +## VrfKeyHashError (class) + +Error class for VrfKeyHash related operations. + +**Signature** + +```ts +export declare class VrfKeyHashError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random VrfKeyHash. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## VrfKeyHash + +VrfKeyHash is a 32-byte hash representing a VRF verification key. +vrf_keyhash = Bytes32 + +**Signature** + +```ts +export declare const VrfKeyHash: Schema.brand< + Schema.refine>, + "VrfKeyHash" +> +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "VrfKeyHash"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "VrfKeyHash"> +> +``` + +## VrfKeyHash (type alias) + +**Signature** + +```ts +export type VrfKeyHash = typeof VrfKeyHash.Type +``` diff --git a/docs/pages/reference/modules/modules/VrfVkey.mdx b/docs/pages/reference/modules/modules/VrfVkey.mdx new file mode 100644 index 00000000..b1fa45e8 --- /dev/null +++ b/docs/pages/reference/modules/modules/VrfVkey.mdx @@ -0,0 +1,157 @@ +--- +title: VrfVkey.ts +nav_order: 100 +parent: Modules +--- + +## VrfVkey overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [VrfVkeyError (class)](#vrfvkeyerror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [VrfVkey](#vrfvkey) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [VrfVkey (type alias)](#vrfvkey-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for VrfVkey encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"VrfVkey">) => any; hex: (input: string & Brand<"VrfVkey">) => string } + Decode: { bytes: (input: any) => string & Brand<"VrfVkey">; hex: (input: string) => string & Brand<"VrfVkey"> } + EncodeEffect: { + bytes: (input: string & Brand<"VrfVkey">) => Effect> + hex: (input: string & Brand<"VrfVkey">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"VrfVkey">) => Either> + hex: (input: string & Brand<"VrfVkey">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two VrfVkey instances are equal. + +**Signature** + +```ts +export declare const equals: (a: VrfVkey, b: VrfVkey) => boolean +``` + +Added in v2.0.0 + +# errors + +## VrfVkeyError (class) + +Error class for VrfVkey related operations. + +**Signature** + +```ts +export declare class VrfVkeyError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random VrfVkey. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## VrfVkey + +Schema for VrfVkey representing a VRF verification key. +vrf_vkey = bytes .size 32 +Follows the Conway-era CDDL specification. + +**Signature** + +```ts +export declare const VrfVkey: Schema.brand< + Schema.refine>, + "VrfVkey" +> +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "VrfVkey"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "VrfVkey"> +> +``` + +## VrfVkey (type alias) + +**Signature** + +```ts +export type VrfVkey = typeof VrfVkey.Type +``` diff --git a/docs/pages/reference/modules/modules/Withdrawals.mdx b/docs/pages/reference/modules/modules/Withdrawals.mdx new file mode 100644 index 00000000..3690a29a --- /dev/null +++ b/docs/pages/reference/modules/modules/Withdrawals.mdx @@ -0,0 +1,366 @@ +--- +title: Withdrawals.ts +nav_order: 101 +parent: Modules +--- + +## Withdrawals overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [empty](#empty) + - [fromEntries](#fromentries) + - [singleton](#singleton) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [WithdrawalsError (class)](#withdrawalserror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [Withdrawals (class)](#withdrawals-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) +- [predicates](#predicates) + - [has](#has) + - [isEmpty](#isempty) + - [isWithdrawals](#iswithdrawals) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [WithdrawalsCDDLSchema](#withdrawalscddlschema) +- [transformation](#transformation) + - [add](#add) + - [entries](#entries) + - [get](#get) + - [remove](#remove) + - [size](#size) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## empty + +Create an empty Withdrawals instance. + +**Signature** + +```ts +export declare const empty: () => Withdrawals +``` + +Added in v2.0.0 + +## fromEntries + +Create a Withdrawals instance from an array of [RewardAccount, Coin] pairs. + +**Signature** + +```ts +export declare const fromEntries: (entries: Array<[RewardAccount.RewardAccount, Coin.Coin]>) => Withdrawals +``` + +Added in v2.0.0 + +## singleton + +Create a Withdrawals instance with a single withdrawal. + +**Signature** + +```ts +export declare const singleton: (rewardAccount: RewardAccount.RewardAccount, coin: Coin.Coin) => Withdrawals +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two Withdrawals instances are equal. + +**Signature** + +```ts +export declare const equals: (self: Withdrawals, that: Withdrawals) => boolean +``` + +Added in v2.0.0 + +# errors + +## WithdrawalsError (class) + +Error class for Withdrawals related operations. + +**Signature** + +```ts +export declare class WithdrawalsError +``` + +Added in v2.0.0 + +# generators + +## generator + +FastCheck generator for Withdrawals instances. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## Withdrawals (class) + +Schema for Withdrawals representing a map of reward accounts to coin amounts. + +``` +withdrawals = {+ reward_account => coin} +``` + +**Signature** + +```ts +export declare class Withdrawals +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +# predicates + +## has + +Check if Withdrawals contains a specific reward account. + +**Signature** + +```ts +export declare const has: (withdrawals: Withdrawals, rewardAccount: RewardAccount.RewardAccount) => boolean +``` + +Added in v2.0.0 + +## isEmpty + +Check if Withdrawals is empty. + +**Signature** + +```ts +export declare const isEmpty: (withdrawals: Withdrawals) => boolean +``` + +Added in v2.0.0 + +## isWithdrawals + +Check if the given value is a valid Withdrawals + +**Signature** + +```ts +export declare const isWithdrawals: (u: unknown, overrideOptions?: ParseOptions | number) => u is Withdrawals +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for Withdrawals. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.MapFromSelf, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for Withdrawals. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.MapFromSelf, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## WithdrawalsCDDLSchema + +CDDL schema for Withdrawals. + +``` +withdrawals = {+ reward_account => coin} +``` + +**Signature** + +```ts +export declare const WithdrawalsCDDLSchema: Schema.transformOrFail< + Schema.MapFromSelf, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# transformation + +## add + +Add a withdrawal to existing Withdrawals. + +**Signature** + +```ts +export declare const add: ( + withdrawals: Withdrawals, + rewardAccount: RewardAccount.RewardAccount, + coin: Coin.Coin +) => Withdrawals +``` + +Added in v2.0.0 + +## entries + +Get all entries as an array of [reward account, coin] pairs. + +**Signature** + +```ts +export declare const entries: (withdrawals: Withdrawals) => Array<[RewardAccount.RewardAccount, Coin.Coin]> +``` + +Added in v2.0.0 + +## get + +Get the coin amount for a specific reward account. + +**Signature** + +```ts +export declare const get: ( + withdrawals: Withdrawals, + rewardAccount: RewardAccount.RewardAccount +) => Coin.Coin | undefined +``` + +Added in v2.0.0 + +## remove + +Remove a withdrawal from existing Withdrawals. + +**Signature** + +```ts +export declare const remove: (withdrawals: Withdrawals, rewardAccount: RewardAccount.RewardAccount) => Withdrawals +``` + +Added in v2.0.0 + +## size + +Get the size (number of withdrawals) in Withdrawals. + +**Signature** + +```ts +export declare const size: (withdrawals: Withdrawals) => number +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: (a: Withdrawals, overrideOptions?: ParseOptions) => any + cborHex: (a: Withdrawals, overrideOptions?: ParseOptions) => string + } + Decode: { + cborBytes: (u: unknown, overrideOptions?: ParseOptions) => Withdrawals + cborHex: (u: unknown, overrideOptions?: ParseOptions) => Withdrawals + } + EncodeEither: { + cborBytes: (a: Withdrawals, overrideOptions?: ParseOptions) => Either + cborHex: (a: Withdrawals, overrideOptions?: ParseOptions) => Either + } + DecodeEither: { + cborBytes: (u: unknown, overrideOptions?: ParseOptions) => Either + cborHex: (u: unknown, overrideOptions?: ParseOptions) => Either + } + EncodeEffect: { + cborBytes: (a: Withdrawals, overrideOptions?: ParseOptions) => Effect.Effect + cborHex: (a: Withdrawals, overrideOptions?: ParseOptions) => Effect.Effect + } + DecodeEffect: { + cborBytes: (u: unknown, overrideOptions?: ParseOptions) => Effect.Effect + cborHex: (u: unknown, overrideOptions?: ParseOptions) => Effect.Effect + } +} +``` diff --git a/docs/pages/reference/modules/modules/index.mdx b/docs/pages/reference/modules/modules/index.mdx new file mode 100644 index 00000000..d20a6b7c --- /dev/null +++ b/docs/pages/reference/modules/modules/index.mdx @@ -0,0 +1,6 @@ +--- +title: Modules +has_children: true +permalink: /docs/modules +nav_order: 2 +--- diff --git a/docs/pages/reference/test.mdx b/docs/pages/reference/test.mdx new file mode 100644 index 00000000..30f50e67 --- /dev/null +++ b/docs/pages/reference/test.mdx @@ -0,0 +1,11 @@ +# Test API Module + +This is a test to see if the API navigation is working. + +## Test Function + +```typescript +function test() { + return "Hello from the API docs!"; +} +``` diff --git a/docs/scripts/copy-evolution-docs.mjs b/docs/scripts/copy-evolution-docs.mjs new file mode 100644 index 00000000..1fdd6a87 --- /dev/null +++ b/docs/scripts/copy-evolution-docs.mjs @@ -0,0 +1,122 @@ +#!/usr/bin/env node + +import * as fs from 'fs/promises'; +import * as path from 'path'; + +const sourceDir = path.resolve(process.cwd(), '../packages/evolution/docs'); +const targetDir = path.resolve(process.cwd(), './pages/reference/modules'); + +async function ensureDirectoryExists(dir) { + try { + await fs.access(dir); + } catch (error) { + await fs.mkdir(dir, { recursive: true }); + console.log(`Created directory: ${dir}`); + } +} + +function convertMdToMdx(content) { + // Convert HTML class attributes to className for React/MDX compatibility + content = content.replace(/class="/g, 'className="'); + + // Just copy the files and rename them - no complex processing + return content; +} + +async function copyFile(src, dest) { + try { + const content = await fs.readFile(src, 'utf8'); + const convertedContent = convertMdToMdx(content); + await fs.writeFile(dest, convertedContent); + console.log(`Copied: ${path.relative(process.cwd(), src)} โ†’ ${path.relative(process.cwd(), dest)}`); + } catch (error) { + console.error(`Error copying ${src} to ${dest}: ${error.message}`); + throw error; + } +} + +async function copyDirectory(source, target) { + await ensureDirectoryExists(target); + + const entries = await fs.readdir(source, { withFileTypes: true }); + + for (const entry of entries) { + const sourcePath = path.join(source, entry.name); + let targetName = entry.name; + + // For .md files, convert to .mdx and remove .ts for cleaner navigation + if (entry.name.endsWith('.md')) { + if (entry.name.endsWith('.ts.md')) { + // Convert Address.ts.md to Address.mdx (remove .ts) + targetName = entry.name.replace(/\.ts\.md$/, '.mdx'); + } else { + targetName = entry.name.replace(/\.md$/, '.mdx'); + } + } + + const targetPath = path.join(target, targetName); + + if (entry.isDirectory()) { + await copyDirectory(sourcePath, targetPath); + } else { + await copyFile(sourcePath, targetPath); + } + } +} + +async function createMetaJson(directory) { + try { + const entries = await fs.readdir(directory); + const metaEntries = {}; + + // Filter only the .mdx files (converted from .md) + const mdxFiles = entries.filter(entry => + entry.endsWith('.mdx') && entry !== 'index.mdx' + ); + + // Sort alphabetically + mdxFiles.sort(); + + // Create meta entries for each file using simple string format + for (const file of mdxFiles) { + const name = file.replace('.mdx', ''); + metaEntries[name] = name; + } + + await fs.writeFile( + path.join(directory, '_meta.json'), + JSON.stringify(metaEntries, null, 2) + ); + + console.log(`Created _meta.json in ${path.relative(process.cwd(), directory)}`); + } catch (error) { + console.error(`Error creating _meta.json: ${error.message}`); + } +} + +async function main() { + try { + console.log('Starting copy of evolution documentation...'); + + // Remove existing target directory + try { + await fs.rm(targetDir, { recursive: true, force: true }); + console.log(`Removing existing directory: ${targetDir}`); + } catch (error) { + // Directory might not exist, that's ok + } + + // Copy source to target + await copyDirectory(sourceDir, targetDir); + + // Create _meta.json for navigation + await createMetaJson(targetDir); + + console.log('Documentation copy completed successfully!'); + } catch (error) { + console.error('Error copying documentation:', error.message); + process.exit(1); + } +} + +main(); diff --git a/docs/test/examples.test.ts b/docs/test/examples.test.ts new file mode 100644 index 00000000..9732cd03 --- /dev/null +++ b/docs/test/examples.test.ts @@ -0,0 +1,198 @@ +import { describe, it, expect } from "@effect/vitest" +import * as Address from "@evolution-sdk/evolution/Address" +import * as PaymentAddress from "@evolution-sdk/evolution/PaymentAddress" +import * as RewardAddress from "@evolution-sdk/evolution/RewardAddress" +import * as Data from "@evolution-sdk/evolution/Data" + +/** + * Test suite to verify all examples from documentation work correctly + */ +describe("Documentation Examples Verification", () => { + describe("Quick Start Examples", () => { + it("should validate payment and reward addresses correctly", () => { + // Sample addresses from quick-start.mdx + const mainnetBaseAddress = + "addr1qx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3n0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgse35a3x" + const mainnetRewardAddress = "stake1uyehkck0lajq8gr28t9uxnuvgcqrc6070x3k9r8048z8y5gh6ffgw" + const testnetBaseAddress = + "addr_test1qz2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3n0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgs68faae" + const testnetRewardAddress = "stake_test1uqehkck0lajq8gr28t9uxnuvgcqrc6070x3k9r8048z8y5gssrtvn" + + // Validate payment addresses + expect(PaymentAddress.isPaymentAddress(mainnetBaseAddress)).toBe(true) + expect(PaymentAddress.isPaymentAddress(testnetBaseAddress)).toBe(true) + expect(PaymentAddress.isPaymentAddress(mainnetRewardAddress)).toBe(false) + expect(PaymentAddress.isPaymentAddress(testnetRewardAddress)).toBe(false) + + // Validate reward addresses + expect(RewardAddress.isRewardAddress(mainnetRewardAddress)).toBe(true) + expect(RewardAddress.isRewardAddress(testnetRewardAddress)).toBe(true) + expect(RewardAddress.isRewardAddress(mainnetBaseAddress)).toBe(false) + expect(RewardAddress.isRewardAddress(testnetBaseAddress)).toBe(false) + }) + + it("should perform address format conversion correctly", () => { + // Example from quick-start.mdx + const hexAddress = "60ba1d6b6283c219a0530e3682c316215d55819cf97bbf26552c6f8530" + const expectedBech32 = "addr_test1vzap66mzs0ppngznpcmg9scky9w4tqvul9am7fj493hc2vq4ry02m" + + // Decode from hex + const address = Address.Codec.Decode.hex(hexAddress) + expect(address).toBeDefined() + + // Encode to bech32 + const actualBech32 = Address.Codec.Encode.bech32(address) + expect(actualBech32).toBe(expectedBech32) + + // Round-trip conversion + const backToHex = Address.Codec.Encode.hex(address) + expect(backToHex).toBe(hexAddress) + }) + + it("should validate different address types", () => { + // Address types from quick-start.mdx + const baseAddress = + "addr1qx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3n0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgse35a3x" + const enterpriseAddress = "addr1vx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer66hrl8" + const pointerAddress = "addr1gx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer5pnz75xxcrzqf96k" + const rewardAddress = "stake1uyehkck0lajq8gr28t9uxnuvgcqrc6070x3k9r8048z8y5gh6ffgw" + + // All should be valid addresses for their respective types + expect(PaymentAddress.isPaymentAddress(baseAddress)).toBe(true) + expect(PaymentAddress.isPaymentAddress(enterpriseAddress)).toBe(true) + expect(PaymentAddress.isPaymentAddress(pointerAddress)).toBe(true) + expect(RewardAddress.isRewardAddress(rewardAddress)).toBe(true) + }) + + it("should validate data types correctly", () => { + // Examples from quick-start.mdx + const validHex = "deadbeef" + const isValidBytes = Data.isBytes(validHex) + expect(isValidBytes).toBe(true) + + const invalidHex = "not-hex" + const isInvalidBytes = Data.isBytes(invalidHex) + expect(isInvalidBytes).toBe(false) + }) + }) + + describe("Examples Page Verification", () => { + it("should validate all mainnet and testnet addresses", () => { + const addresses = { + // Mainnet addresses + mainnet: { + base: "addr1qx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3n0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgse35a3x", + enterprise: "addr1vx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer66hrl8", + pointer: "addr1gx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer5pnz75xxcrzqf96k", + reward: "stake1uyehkck0lajq8gr28t9uxnuvgcqrc6070x3k9r8048z8y5gh6ffgw" + }, + // Testnet addresses + testnet: { + base: "addr_test1qz2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3n0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgs68faae", + enterprise: "addr_test1vz2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer5pnz75xxcrdw5vky", + pointer: "addr_test1gz2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer5pnz75xxcrdw5vky", + reward: "stake_test1uqehkck0lajq8gr28t9uxnuvgcqrc6070x3k9r8048z8y5gssrtvn" + } + } + + // Test payment addresses + const paymentAddresses = [ + addresses.mainnet.base, + addresses.mainnet.enterprise, + addresses.mainnet.pointer, + addresses.testnet.base, + addresses.testnet.enterprise, + addresses.testnet.pointer + ] + + paymentAddresses.forEach((address) => { + expect(PaymentAddress.isPaymentAddress(address)).toBe(true) + }) + + // Test reward addresses + const rewardAddresses = [addresses.mainnet.reward, addresses.testnet.reward] + + rewardAddresses.forEach((address) => { + expect(RewardAddress.isRewardAddress(address)).toBe(true) + }) + }) + + it("should validate hex addresses from examples", () => { + const validHexAddresses = [ + "019493315cd92eb5d8c4304e67b7e16ae36d61d34502694657811a2c8e337b62cfff6403a06a3acbc34f8c46003c69fe79a3628cefa9c47251", + "60ba1d6b6283c219a0530e3682c316215d55819cf97bbf26552c6f8530" + ] + + validHexAddresses.forEach((hex) => { + // Should decode without error + const address = Address.Codec.Decode.hex(hex) + expect(address).toBeDefined() + + // Should encode back to same hex + const backToHex = Address.Codec.Encode.hex(address) + expect(backToHex).toBe(hex) + + // Should encode to valid bech32 + const bech32 = Address.Codec.Encode.bech32(address) + expect(typeof bech32).toBe("string") + expect(bech32.length).toBeGreaterThan(0) + }) + }) + + it("should validate data type examples", () => { + // Valid hex examples from documentation + const validHexCases = ["deadbeef", "cafe0123", "abcdef0123456789", "00", "ff"] + + validHexCases.forEach((hex) => { + expect(Data.isBytes(hex)).toBe(true) + }) + + // Invalid hex examples from documentation + const invalidHexCases = [ + "not-hex", + "xyz", + "123g", + "deadbeef ", // trailing space + " deadbeef", // leading space + "0x123456" // hex prefix not allowed + ] + + invalidHexCases.forEach((hex) => { + expect(Data.isBytes(hex)).toBe(false) + }) + }) + + it("should handle batch validation correctly", () => { + // Mixed collection from examples + const testAddresses = [ + "addr1qx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3n0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgse35a3x", + "stake1uyehkck0lajq8gr28t9uxnuvgcqrc6070x3k9r8048z8y5gh6ffgw", + "not-an-address", + "addr_test1qz2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3n0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgse68faae", + "stake_test1uqehkck0lajq8gr28t9uxnuvgcqrc6070x3k9r8048z8y5gssrtvn" + ] + + const results = testAddresses.map((address) => { + const isPayment = PaymentAddress.isPaymentAddress(address) + const isReward = RewardAddress.isRewardAddress(address) + + let type = "invalid" + if (isPayment) type = "payment" + else if (isReward) type = "reward" + + return { + address, + type, + valid: isPayment || isReward + } + }) + + // Verify expected results + expect(results[0].type).toBe("payment") + expect(results[1].type).toBe("reward") + expect(results[2].type).toBe("invalid") + expect(results[3].type).toBe("payment") + expect(results[4].type).toBe("reward") + }) + }) +}) diff --git a/docs/theme.config.tsx b/docs/theme.config.tsx new file mode 100644 index 00000000..0a4d18d3 --- /dev/null +++ b/docs/theme.config.tsx @@ -0,0 +1,30 @@ +import React from "react" +import { DocsThemeConfig } from "nextra-theme-docs" + +const config: DocsThemeConfig = { + logo: Evolution SDK, + project: { + link: "https://github.com/no-witness-labs/evolution-sdk" + }, + chat: { + link: "https://discord.gg/your-discord" // Replace with actual Discord link + }, + docsRepositoryBase: "https://github.com/no-witness-labs/evolution-sdk/tree/main/docs", + footer: { + text: "Evolution SDK Documentation" + }, + useNextSeoProps() { + return { + titleTemplate: "%s โ€“ Evolution SDK" + } + }, + head: ( + <> + + + + + ) +} + +export default config diff --git a/docs/tsconfig.json b/docs/tsconfig.json new file mode 100644 index 00000000..7d3b5948 --- /dev/null +++ b/docs/tsconfig.json @@ -0,0 +1,31 @@ +{ + "compilerOptions": { + "target": "es2020", + "lib": ["dom", "dom.iterable", "es2020"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "baseUrl": ".", + "paths": { + "@/*": ["./*"], + "@evolution-sdk/evolution": ["../packages/evolution/src"], + "@evolution-sdk/evolution/*": ["../packages/evolution/src/*"] + } + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "scripts/**/*.ts"], + "exclude": ["node_modules"] +} diff --git a/docs/vitest.config.ts b/docs/vitest.config.ts new file mode 100644 index 00000000..d367386a --- /dev/null +++ b/docs/vitest.config.ts @@ -0,0 +1,14 @@ +import { defineConfig } from "vitest/config" + +export default defineConfig({ + test: { + globals: true, + environment: "node", + testTimeout: 10000 + }, + resolve: { + alias: { + "@evolution-sdk/evolution": "../packages/evolution/src" + } + } +}) diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 00000000..8d766df9 --- /dev/null +++ b/eslint.config.mjs @@ -0,0 +1,113 @@ +import { fixupPluginRules } from "@eslint/compat" +import { FlatCompat } from "@eslint/eslintrc" +import js from "@eslint/js" +import tsParser from "@typescript-eslint/parser" +import _import from "eslint-plugin-import" +import simpleImportSort from "eslint-plugin-simple-import-sort" +import sortDestructureKeys from "eslint-plugin-sort-destructure-keys" +import path from "node:path" +import { fileURLToPath } from "node:url" + +const __filename = fileURLToPath(import.meta.url) +const __dirname = path.dirname(__filename) +const compat = new FlatCompat({ + baseDirectory: __dirname, + recommendedConfig: js.configs.recommended, + allConfig: js.configs.all +}) + +export default [ + { + ignores: ["**/dist", "**/build", "**/docs", "**/*.md", "**/.turbo", "**/temp"] + }, + ...compat.extends( + "eslint:recommended", + "plugin:@typescript-eslint/eslint-recommended", + "plugin:@typescript-eslint/recommended" + ), + { + plugins: { + import: fixupPluginRules(_import), + "sort-destructure-keys": sortDestructureKeys, + "simple-import-sort": simpleImportSort + }, + + languageOptions: { + parser: tsParser, + ecmaVersion: 2022, + sourceType: "module" + }, + + settings: { + "import/parsers": { + "@typescript-eslint/parser": [".ts", ".tsx"] + }, + + "import/resolver": { + typescript: { + alwaysTryTypes: true + } + } + }, + + rules: { + "no-fallthrough": "off", + "no-irregular-whitespace": "off", + "object-shorthand": "error", + "prefer-destructuring": "off", + "sort-imports": "off", + "no-unused-vars": "off", + "require-yield": "off", + "prefer-rest-params": "off", + "prefer-spread": "off", + "import/first": "error", + "import/newline-after-import": "error", + "import/no-duplicates": "error", + "import/no-unresolved": "off", + "import/order": "off", + "simple-import-sort/imports": "error", + "simple-import-sort/exports": "error", + "sort-destructure-keys/sort-destructure-keys": "error", + + "@typescript-eslint/array-type": [ + "warn", + { + default: "generic", + readonly: "generic" + } + ], + + "@typescript-eslint/member-delimiter-style": 0, + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/ban-types": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/no-empty-object-type": "off", + "@typescript-eslint/no-unsafe-function-type": "off", + "@typescript-eslint/no-wrapper-object-types": "off", + "@typescript-eslint/consistent-type-imports": "warn", + + "@typescript-eslint/no-unused-vars": [ + "error", + { + argsIgnorePattern: "^_", + varsIgnorePattern: "^_" + } + ], + + "@typescript-eslint/ban-ts-comment": "off", + "@typescript-eslint/camelcase": "off", + "@typescript-eslint/explicit-function-return-type": "off", + "@typescript-eslint/explicit-module-boundary-types": "off", + "@typescript-eslint/interface-name-prefix": "off", + "@typescript-eslint/no-array-constructor": "off", + "@typescript-eslint/no-use-before-define": "off", + "@typescript-eslint/no-namespace": "off" + } + }, + { + files: ["packages/*/src/**/*", "packages/*/test/**/*"], + rules: { + "no-console": "error" + } + } +] diff --git a/flake.lock b/flake.lock new file mode 100644 index 00000000..d958ddc5 --- /dev/null +++ b/flake.lock @@ -0,0 +1,25 @@ +{ + "nodes": { + "nixpkgs": { + "locked": { + "lastModified": 1753549186, + "narHash": "sha256-Znl7rzuxKg/Mdm6AhimcKynM7V3YeNDIcLjBuoBcmNs=", + "rev": "17f6bd177404d6d43017595c5264756764444ab8", + "revCount": 835620, + "type": "tarball", + "url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.1.835620%2Brev-17f6bd177404d6d43017595c5264756764444ab8/0198521f-e242-717e-8a25-d1421749c0c3/source.tar.gz" + }, + "original": { + "type": "tarball", + "url": "https://flakehub.com/f/NixOS/nixpkgs/0.1" + } + }, + "root": { + "inputs": { + "nixpkgs": "nixpkgs" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 00000000..01cab61c --- /dev/null +++ b/flake.nix @@ -0,0 +1,28 @@ +{ + description = "A Nix-flake-based Node.js development environment"; + + inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1"; + + outputs = inputs: + let + supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ]; + forEachSupportedSystem = f: inputs.nixpkgs.lib.genAttrs supportedSystems (system: f { + pkgs = import inputs.nixpkgs { + inherit system; + overlays = [ inputs.self.overlays.default ]; + }; + }); + in + { + overlays.default = final: prev: rec { + nodejs = prev.nodejs; + yarn = (prev.yarn.override { inherit nodejs; }); + }; + + devShells = forEachSupportedSystem ({ pkgs }: { + default = pkgs.mkShell { + packages = with pkgs; [ nodejs nodePackages.pnpm ]; + }; + }); + }; +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 00000000..4b400fa0 --- /dev/null +++ b/package.json @@ -0,0 +1,64 @@ +{ + "name": "evolution-sdk", + "version": "0.1.0", + "private": true, + "type": "module", + "description": "Evolution SDK - A Cardano blockchain development toolkit", + "packageManager": "pnpm@9.0.0", + "scripts": { + "build": "turbo build", + "dev": "turbo dev", + "type-check": "turbo type-check", + "type-check-recursive": "pnpm --recursive --filter \"./packages/**/*\" exec tsc -b tsconfig.json", + "lint": "turbo lint", + "lint-fix": "turbo lint -- --fix", + "format": "prettier --write \"**/*.{ts,tsx}\"", + "format:check": "prettier --check \"**/*.{ts,tsx}\"", + "test": "turbo test", + "coverage": "turbo test -- --coverage", + "clean": "turbo clean && rimraf packages/*/dist packages/*/.turbo", + "docgen": "turbo docgen", + "docs:dev": "pnpm --filter docs dev", + "docs:build": "pnpm --filter docs build", + "docs:start": "pnpm --filter docs start", + "docs:verify": "pnpm --filter docs verify", + "verify": "turbo verify", + "circular": "madge --circular --extensions ts packages/*/src/index.ts", + "changeset": "changeset", + "changeset-version": "changeset version", + "changeset-publish": "pnpm build && changeset publish" + }, + "devDependencies": { + "@babel/cli": "^7.28.0", + "@babel/core": "^7.28.0", + "@changesets/changelog-github": "^0.5.0", + "@changesets/cli": "^2.27.0", + "@effect/docgen": "^0.5.2", + "@effect/eslint-plugin": "^0.3.0", + "@effect/vitest": "^0.25.0", + "@eslint/compat": "^1.2.0", + "@eslint/eslintrc": "^3.2.0", + "@eslint/js": "^9.26.0", + "@turbo/gen": "^2.0.0", + "@types/node": "^20.0.0", + "@typescript-eslint/eslint-plugin": "^8.32.0", + "@typescript-eslint/parser": "^8.32.0", + "@vitest/coverage-v8": "^3.2.4", + "babel-plugin-annotate-pure-calls": "^0.5.0", + "eslint": "^9.26.0", + "eslint-import-resolver-typescript": "^4.3.0", + "eslint-plugin-import": "^2.31.0", + "eslint-plugin-simple-import-sort": "^12.1.0", + "eslint-plugin-sort-destructure-keys": "^2.0.0", + "madge": "^8.0.0", + "prettier": "^3.5.0", + "rimraf": "^6.0.0", + "turbo": "^2.0.0", + "typescript": "^5.8.0", + "vitest": "^3.2.4" + }, + "engines": { + "node": ">=18.0.0", + "pnpm": ">=8.0.0" + } +} diff --git a/packages/evolution/.tsbuildinfo/build.tsbuildinfo b/packages/evolution/.tsbuildinfo/build.tsbuildinfo new file mode 100644 index 00000000..a03fed67 --- /dev/null +++ b/packages/evolution/.tsbuildinfo/build.tsbuildinfo @@ -0,0 +1 @@ +{"fileNames":["../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/types.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/hkt.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/function.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/precondition/pre.d.ts","../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/generator/randomgenerator.d.ts","../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/generator/linearcongruential.d.ts","../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/generator/mersennetwister.d.ts","../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/generator/xorshift.d.ts","../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/generator/xoroshiro.d.ts","../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/distribution.d.ts","../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/internals/arrayint.d.ts","../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/uniformarrayintdistribution.d.ts","../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/uniformbigintdistribution.d.ts","../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/uniformintdistribution.d.ts","../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/unsafeuniformarrayintdistribution.d.ts","../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/unsafeuniformbigintdistribution.d.ts","../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/unsafeuniformintdistribution.d.ts","../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/pure-rand-default.d.ts","../../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/pure-rand.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/random/generator/random.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/stream/stream.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/arbitrary/definition/value.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/arbitrary/definition/arbitrary.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/precondition/preconditionfailure.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/irawproperty.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/maxlengthfromminlength.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/configuration/randomtype.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/configuration/verbositylevel.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/reporter/executionstatus.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/reporter/executiontree.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/reporter/rundetails.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/configuration/parameters.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/configuration/globalparameters.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/asyncproperty.generic.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/asyncproperty.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/property.generic.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/property.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/runner.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/sampler.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/builders/generatorvaluebuilder.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/gen.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/depthcontext.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/array.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/bigint.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/bigintn.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/biguint.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/biguintn.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/boolean.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/falsy.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ascii.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/base64.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/char.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/char16bits.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/fullunicode.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/hexa.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/unicode.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/constant.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/constantfrom.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/context.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/date.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/clone.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/dictionary.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/emailaddress.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/double.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/float.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/comparebooleanfunc.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/comparefunc.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/func.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/domain.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/integer.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/maxsafeinteger.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/maxsafenat.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/nat.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ipv4.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ipv4extended.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ipv6.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/letrec.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/lorem.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/maptoconstant.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/memo.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/mixedcase.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_shared/stringsharedconstraints.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/string.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/qualifiedobjectconstraints.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/object.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/jsonconstraintsbuilder.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/json.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/unicodejson.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/anything.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/unicodejsonvalue.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/jsonvalue.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/oneof.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/option.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/record.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uniquearray.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/infinitestream.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/asciistring.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/base64string.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/fullunicodestring.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/hexastring.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/string16bits.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/stringof.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/unicodestring.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/subarray.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/shuffledsubarray.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/tuple.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ulid.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uuid.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uuidv.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/webauthority.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/webfragments.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/webpath.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/webqueryparameters.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/websegment.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/weburl.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/command/icommand.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/command/asynccommand.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/command/command.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/commands/commandscontraints.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/commands.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/interfaces/scheduler.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/scheduler.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/modelrunner.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/symbols.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/utils/hash.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/utils/stringify.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/utils/rundetailsformatter.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/builders/typedintarrayarbitrarybuilder.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/int8array.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/int16array.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/int32array.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uint8array.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uint8clampedarray.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uint16array.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uint32array.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/float32array.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/float64array.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/sparsearray.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/bigint64array.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/biguint64array.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/stringmatching.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/noshrink.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/nobias.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/limitshrink.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/fast-check-default.d.ts","../../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/fast-check.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fastcheck.d.ts","../../../node_modules/.pnpm/@standard-schema+spec@1.0.0/node_modules/@standard-schema/spec/dist/index.d.cts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/equivalence.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/childexecutordecision.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/hash.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/equal.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/nonemptyiterable.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/order.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/pipeable.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/predicate.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/unify.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/utils.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/option.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/chunk.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/context.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/hashset.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberid.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/exit.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/deferred.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/duration.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/clock.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/brand.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/configerror.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/hashmap.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/loglevel.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/redacted.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/secret.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/config.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/configproviderpathpatch.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/configprovider.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/differ.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/list.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/logspan.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/executionstrategy.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scope.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/logger.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metriclabel.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/cache.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/request.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/runtimeflagspatch.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/runtimeflags.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/console.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/random.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tracer.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/defaultservices.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberstatus.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mutableref.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/sortedset.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/supervisor.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiber.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scheduler.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberref.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/runtime.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/datetime.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/cron.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/readable.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/ref.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scheduleinterval.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scheduleintervals.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scheduledecision.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/schedule.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/executionplan.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mutablequeue.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/queue.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/take.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/groupby.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/pubsub.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mergedecision.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/sink.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/streamemit.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/streamhaltstrategy.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/stm.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tqueue.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tpubsub.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/stream.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/layer.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mergestrategy.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/singleproducerasyncinput.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/upstreampullrequest.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/upstreampullstrategy.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/channel.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/cause.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberrefspatch.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/managedruntime.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metricboundaries.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metricstate.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metrickeytype.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metrickey.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metricpair.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metrichook.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metricregistry.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metric.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/requestresolver.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/requestblock.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/effect.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberrefs.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/inspectable.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/either.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/record.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/array.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/ordering.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/bigdecimal.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/schemaast.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/parseresult.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/pretty.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/schema.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/arbitrary.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/bigint.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/boolean.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/data.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/effectable.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/encoding.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberhandle.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fibermap.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberset.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/globalvalue.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/iterable.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/jsonschema.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/keyedpool.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/rcmap.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/layermap.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mailbox.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/match.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mergestate.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metricpolling.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/micro.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/moduleversion.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mutablehashmap.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mutablehashset.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mutablelist.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/number.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/pool.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/primarykey.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/ratelimiter.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/rcref.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/redblacktree.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/regexp.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/reloadable.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/resource.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scopedcache.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scopedref.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/sortedmap.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/streamable.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/string.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/struct.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/subscribable.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/synchronizedref.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/subscriptionref.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/symbol.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tarray.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tdeferred.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tmap.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tpriorityqueue.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/trandom.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/treentrantlock.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tref.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tsemaphore.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tset.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tsubscriptionref.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testannotation.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testannotationmap.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testannotations.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testlive.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testclock.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testconfig.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testsized.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testservices.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testcontext.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/trie.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tuple.d.ts","../../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/index.d.ts","../src/codec.ts","../src/bytes.ts","../src/bytes57.ts","../src/cbor.ts","../src/hash28.ts","../src/keyhash.ts","../src/scripthash.ts","../src/credential.ts","../src/networkid.ts","../src/baseaddress.ts","../../../node_modules/.pnpm/@scure+base@1.2.6/node_modules/@scure/base/lib/esm/index.d.ts","../src/bech32.ts","../src/byronaddress.ts","../src/bytes29.ts","../src/enterpriseaddress.ts","../src/natural.ts","../src/pointer.ts","../src/pointeraddress.ts","../src/rewardaccount.ts","../src/address.ts","../src/addressdetails.ts","../src/addresstag.ts","../src/bytes32.ts","../src/text.ts","../src/text128.ts","../src/url.ts","../src/anchor.ts","../src/assetname.ts","../src/auxiliarydatahash.ts","../src/bigint.ts","../src/blockbodyhash.ts","../src/blockheaderhash.ts","../src/bytes64.ts","../src/ed25519signature.ts","../src/kesvkey.ts","../src/numeric.ts","../src/operationalcert.ts","../src/protocolversion.ts","../src/vkey.ts","../src/bytes80.ts","../src/vrfcert.ts","../src/vrfvkey.ts","../src/headerbody.ts","../src/bytes448.ts","../src/kessignature.ts","../src/header.ts","../src/coin.ts","../src/drep.ts","../src/epochno.ts","../src/poolkeyhash.ts","../src/certificate.ts","../src/nonzeroint64.ts","../src/policyid.ts","../src/mint.ts","../src/positivecoin.ts","../src/proposalprocedures.ts","../src/scriptdatahash.ts","../src/transactionhash.ts","../src/transactioninput.ts","../src/data.ts","../src/datumoption.ts","../src/scriptref.ts","../src/multiasset.ts","../src/value.ts","../src/transactionoutput.ts","../src/votingprocedures.ts","../src/withdrawals.ts","../src/transactionbody.ts","../src/transactionindex.ts","../src/block.ts","../src/boundedbytes.ts","../src/bytes16.ts","../src/bytes4.ts","../src/combinator.ts","../src/committeecoldcredential.ts","../src/committeehotcredential.ts","../src/drepcredential.ts","../../../node_modules/.pnpm/@anastasia-labs+cardano-multiplatform-lib-nodejs@6.0.1/node_modules/@anastasia-labs/cardano-multiplatform-lib-nodejs/cardano_multiplatform_lib.d.ts","../src/datajson.ts","../src/dnsname.ts","../src/formaterror.ts","../src/ipv4.ts","../src/ipv6.ts","../src/multihostname.ts","../src/nativescriptjson.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/error.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/command.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/commandexecutor.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/filesystem.d.ts","../../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodecommandexecutor.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/path.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/terminal.d.ts","../../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/ast.d.ts","../../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/fastcheck.d.ts","../../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/arbitrary.d.ts","../../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/pretty.d.ts","../../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/serializable.d.ts","../../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/schema.d.ts","../../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/parseresult.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/workererror.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/worker.d.ts","../../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodecontext.d.ts","../../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodefilesystem.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/cookies.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/headers.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/urlparams.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpbody.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpmethod.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpclientrequest.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpincomingmessage.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpclientresponse.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpclienterror.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpclient.d.ts","../../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/header.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/readable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/file.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/fetch.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/formdata.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/connector.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/client.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/errors.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/dispatcher.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/global-origin.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/pool-stats.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/pool.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/handlers.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/agent.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/mock-agent.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/mock-client.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/mock-pool.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/mock-errors.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/retry-handler.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/retry-agent.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/api.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/interceptors.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/util.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/cookies.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/patch.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/websocket.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/eventsource.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/filereader.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/content-type.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/cache.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/index.d.ts","../../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/index.d.ts","../../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodehttpclient.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/etag.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpserverrespondable.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/template.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpserverresponse.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpplatform.d.ts","../../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodehttpplatform.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpservererror.d.ts","../../../node_modules/.pnpm/multipasta@0.2.7/node_modules/multipasta/dist/dts/headersparser.d.ts","../../../node_modules/.pnpm/multipasta@0.2.7/node_modules/multipasta/dist/dts/index.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/multipart.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/socket.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpserverrequest.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpmiddleware.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpapp.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpserver.d.ts","../../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodehttpserver.d.ts","../../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodehttpserverrequest.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/keyvaluestore.d.ts","../../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodekeyvaluestore.d.ts","../../../node_modules/.pnpm/@effect+platform-node-shared@0.18.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17_unk3duwg6ayeshdokpyl7oceaa/node_modules/@effect/platform-node-shared/dist/dts/nodemultipart.d.ts","../../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodemultipart.d.ts","../../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodepath.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/runtime.d.ts","../../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/noderuntime.d.ts","../../../node_modules/.pnpm/@effect+platform-node-shared@0.18.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17_unk3duwg6ayeshdokpyl7oceaa/node_modules/@effect/platform-node-shared/dist/dts/nodestream.d.ts","../../../node_modules/.pnpm/@effect+platform-node-shared@0.18.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17_unk3duwg6ayeshdokpyl7oceaa/node_modules/@effect/platform-node-shared/dist/dts/nodesink.d.ts","../../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodesink.d.ts","../../../node_modules/.pnpm/@effect+platform-node-shared@0.18.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17_unk3duwg6ayeshdokpyl7oceaa/node_modules/@effect/platform-node-shared/dist/dts/nodesocket.d.ts","../../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodesocket.d.ts","../../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodestream.d.ts","../../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodeterminal.d.ts","../../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodeworker.d.ts","../../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/workerrunner.d.ts","../../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodeworkerrunner.d.ts","../../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/index.d.ts","../../../node_modules/.pnpm/@types+ssh2@1.15.5/node_modules/@types/ssh2/index.d.ts","../../../node_modules/.pnpm/@types+docker-modem@3.0.6/node_modules/@types/docker-modem/index.d.ts","../../../node_modules/.pnpm/@types+dockerode@3.3.42/node_modules/@types/dockerode/index.d.ts","../src/devnet/devnetdefault.ts","../src/devnet/devnet.ts","../src/network.ts","../src/paymentaddress.ts","../src/poolmetadata.ts","../src/port.ts","../src/singlehostaddr.ts","../src/singlehostname.ts","../src/relay.ts","../src/unitinterval.ts","../src/vrfkeyhash.ts","../src/poolparams.ts","../src/rewardaddress.ts","../src/stakereference.ts","../src/transaction.ts","../src/transactionmetadatumlabels.ts","../src/tschema.ts","../src/index.ts","../src/nativescripts.ts"],"fileIdsList":[[498,540],[240,274,280,286,300,465,467,498,540,555,571,636],[62,219,274,286,498,540,571,651],[219,220,240,274,277,280,281,286,300,498,540,560,571,637],[62,219,274,280,286,300,462,465,498,540,571],[466,478,479,498,540,626,632,642,643,645,647,648,650,653,655,656,657,658,660],[281,464,465,498,540],[281,464,465,467,468,477,498,540],[281,465,498,540],[220,240,274,277,280,281,286,300,489,498,540,555,557,625],[274,280,281,286,300,465,498,540,627,631],[62,228,233,240,274,280,281,286,300,478,489,498,540,555,560,627,631,633,638,639,640,641],[498,540,555,638],[281,462,498,540,644],[498,540,646],[281,467,498,540],[498,540,649],[498,540,652],[281,498,540,637,654],[498,540,651],[240,274,280,281,286,300,468,498,540],[281,477,498,540,587],[281,498,540,659],[214,218,229,240,274,277,280,286,300,302,305,462,464,498,540],[220,227,240,274,277,280,286,300,302,462,463,498,540],[60,214,218,225,277,287,300,302,303,304,498,540],[60,287,498,540],[220,274,277,280,281,286,300,465,483,498,540],[218,220,227,240,274,277,280,281,286,300,315,462,498,540],[218,231,257,277,300,304,474,498,540],[218,240,257,258,274,277,280,281,286,300,498,540,630,633,638,639],[274,280,286,300,302,462,465,474,475,482,498,540],[214,215,220,240,255,257,262,266,274,277,280,281,286,300,302,480,485,487,488,498,540],[60,287,485,487,498,540],[214,218,231,274,277,280,286,300,302,462,465,469,474,481,482,483,484,498,540],[216,240,274,280,286,300,469,474,475,480,485,486,488,498,540],[218,257,274,277,280,286,300,302,465,469,474,475,481,482,498,540],[215,257,274,280,281,286,300,498,540,638,640],[220,274,277,280,281,286,300,462,465,481,483,498,540,627,630],[220,240,274,277,280,281,286,300,489,498,540,638,639,640],[60,218,222,223,274,277,280,286,287,300,498,540,628,630,638],[218,219,220,240,274,277,280,286,300,304,465,467,469,474,475,481,484,486,498,540,633,636,637],[274,280,286,300,498,540,630],[258,274,280,286,300,302,462,465,469,474,480,481,482,483,498,540,628,629,631],[62,218,220,274,277,280,281,286,300,462,465,467,474,475,498,540],[218,219,240,257,274,277,280,286,287,300,302,465,467,469,474,475,498,540,635],[220,274,277,280,281,286,300,462,498,540],[223,255,274,280,286,300,498,540],[60,219,220,225,240,257,274,277,280,281,286,287,300,498,540],[218,274,277,280,286,300,498,540],[60,218,220,274,277,280,286,287,300,462,498,540],[218,274,277,280,286,300,303,469,474,475,498,540],[62,220,224,225,240,274,277,280,281,286,300,337,473,474,475,476,498,540],[287,474,498,540],[220,240,274,277,280,281,286,300,473,474,476,498,540],[470,474,498,540],[60,218,274,277,280,286,300,305,475,498,540],[205,498,540],[60,62,218,274,277,280,286,287,300,302,303,305,469,474,498,540],[469,474,498,540],[60,62,208,213,214,218,219,221,222,223,225,227,229,231,233,237,244,253,259,274,277,280,286,287,300,303,305,307,469,471,472,473,475,498,540],[223,274,280,286,300,474,475,498,540],[498,540,555,560,571,589,662],[498,540,552,571,589,662,663],[498,537,540],[498,539,540],[540],[498,540,545,574],[498,540,541,546,552,553,560,571,582],[498,540,541,542,552,560],[493,494,495,498,540],[498,540,543,583],[498,540,544,545,553,561],[498,540,545,571,579],[498,540,546,548,552,560],[498,539,540,547],[498,540,548,549],[498,540,550,552],[498,539,540,552],[498,540,552,553,554,571,582],[498,540,552,553,554,567,571,574],[498,535,540],[498,540,548,552,555,560,571,582],[498,540,552,553,555,556,560,571,579,582],[498,540,555,557,571,579,582],[496,497,498,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588],[498,540,552,558],[498,540,559,582,587],[498,540,548,552,560,571],[498,540,561],[498,540,562],[498,539,540,563],[498,537,538,539,540,541,542,543,544,545,546,547,548,549,550,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588],[498,540,565],[498,540,566],[498,540,552,567,568],[498,540,567,569,583,585],[498,540,552,571,572,574],[498,540,573,574],[498,540,571,572],[498,540,574],[498,540,575],[498,537,540,571,576],[498,540,552,577,578],[498,540,577,578],[498,540,545,560,571,579],[498,540,580],[498,540,560,581],[498,540,555,566,582],[498,540,545,583],[498,540,571,584],[498,540,559,585],[498,540,586],[498,540,552,554,563,571,574,582,585,587],[498,540,571,588],[498,540,552,555,557,560,571,589],[206,311,498,540],[60,61,62,208,213,215,218,277,300,303,304,498,540],[208,211,213,214,218,277,300,302,306,498,540],[208,213,218,277,300,306,498,540],[62,208,213,498,540],[60,215,218,277,300,303,498,540],[60,215,218,223,225,274,277,280,286,300,303,498,540],[60,211,214,215,218,219,221,222,249,274,277,280,286,300,302,303,498,540],[60,62,209,214,215,216,218,219,220,223,224,240,249,262,269,272,273,274,277,280,281,282,283,284,285,286,287,300,303,498,540],[60,61,208,211,212,213,214,215,218,277,300,302,303,305,498,540],[220,225,274,277,280,286,300,498,540],[60,62,215,218,219,221,225,227,228,229,230,231,232,274,277,280,286,300,303,498,540],[287,498,540],[62,214,220,221,228,233,234,274,277,280,286,300,498,540],[220,240,274,277,280,281,286,300,498,540],[60,62,211,214,216,218,277,300,302,498,540],[60,208,211,214,218,259,277,287,300,302,303,498,540],[60,216,287,498,540],[62,208,213,214,218,220,225,274,277,280,281,286,287,300,302,303,498,540],[220,226,235,247,248,249,257,277,300,498,540],[60,62,216,218,222,223,274,277,280,286,287,300,498,540],[60,211,214,219,220,221,229,277,300,303,498,540],[208,211,213,214,218,277,300,302,498,540],[60,61,62,208,214,215,216,217,218,219,220,221,222,223,224,225,226,229,230,235,239,240,242,244,245,246,247,248,249,251,254,255,256,257,258,262,266,267,277,281,287,288,289,297,298,299,300,301,303,305,498,540],[274,280,286,300,498,540],[60,61,62,208,214,215,216,217,218,277,300,302,498,540],[277,300,303,498,540],[208,210,498,540],[61,498,540],[214,220,266,274,277,280,281,286,300,305,498,540],[62,498,540],[60,214,215,216,218,222,274,277,280,286,287,300,302,303,498,540],[60,213,216,218,220,221,222,223,240,246,249,250,251,254,256,257,274,277,280,286,287,300,301,303,498,540],[214,218,222,224,240,255,258,274,277,280,286,287,300,302,498,540],[211,218,221,277,300,302,498,540],[60,62,216,218,219,220,221,229,230,236,237,238,240,241,242,244,246,249,254,256,274,277,280,286,287,300,498,540],[214,218,221,222,257,274,277,280,286,300,305,498,540],[222,257,301,498,540],[214,222,224,240,255,258,274,280,286,300,302,498,540],[211,222,246,498,540],[60,214,215,269,270,280,498,540],[60,211,214,218,221,277,300,302,498,540],[60,211,214,215,302,498,540],[60,498,540],[60,61,62,206,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,498,540],[301,498,540],[60,218,277,300,303,304,305,498,540],[308,311,498,540],[60,214,225,240,274,280,286,300,498,540],[60,62,214,218,220,223,226,230,235,240,244,248,249,256,257,258,266,274,277,280,286,287,300,498,540],[220,225,240,258,274,277,280,281,286,300,325,498,540],[60,208,211,212,214,215,218,219,277,300,302,303,498,540],[60,62,214,218,222,225,229,230,237,238,240,274,277,280,281,286,287,300,301,498,540],[213,214,274,280,286,300,498,540],[218,219,223,240,274,277,280,286,287,300,302,498,540],[216,223,255,258,274,280,281,286,300,498,540],[60,214,215,216,218,277,300,303,498,540],[60,223,274,280,286,300,498,540],[223,255,274,277,280,286,300,303,498,540],[60,62,214,225,242,274,280,286,290,291,292,293,294,296,300,498,540],[211,214,498,540],[60,62,214,291,293,498,540],[60,211,214,218,225,242,277,290,292,300,498,540],[60,211,214,225,290,291,498,540],[60,214,291,292,293,498,540],[214,240,255,266,274,280,286,297,300,498,540],[292,293,294,295,498,540],[60,211,214,218,277,292,300,498,540],[60,61,62,214,215,216,217,218,220,274,277,280,286,300,302,303,316,498,540],[214,218,277,300,302,498,540],[214,302,498,540],[214,219,302,498,540],[60,61,62,208,213,214,215,216,217,277,300,302,303,498,540],[60,62,218,274,277,280,286,287,300,302,303,305,308,311,498,540],[60,214,216,225,240,274,280,286,300,498,540],[60,61,498,540],[214,240,269,274,280,286,300,498,540],[60,214,216,218,219,224,252,268,274,277,280,286,300,498,540],[212,219,220,274,277,280,286,287,300,305,498,540],[225,240,274,280,286,300,498,540],[60,214,225,240,274,280,286,287,300,498,540],[60,216,225,240,261,274,280,286,300,498,540],[60,214,274,280,286,300,498,540],[60,61,208,218,277,300,303,498,540],[60,208,211,214,498,540],[60,211,213,214,218,219,277,300,302,498,540],[60,216,218,261,274,277,280,286,300,498,540],[60,220,266,274,277,280,281,286,300,498,540],[60,218,222,223,224,225,243,274,277,280,286,287,300,498,540],[244,298,498,540],[60,211,214,220,244,257,274,277,280,286,300,303,305,498,540],[60,216,240,266,274,280,286,300,498,540],[214,220,222,223,240,246,255,256,257,274,277,280,286,287,300,301,302,498,540],[236,245,281,498,540],[246,498,540],[60,62,214,215,218,219,220,225,259,260,262,264,265,274,277,280,286,287,300,303,498,540],[263,264,498,540],[218,225,277,300,498,540],[219,263,498,540],[255,498,540],[60,62,207,208,213,214,218,219,221,222,223,225,227,229,231,233,237,244,253,259,274,277,280,286,287,300,303,305,307,308,309,310,312,498,540],[60,208,218,274,277,280,286,300,305,309,498,540],[214,220,223,239,274,277,280,286,300,498,540],[60,214,218,223,225,240,243,274,277,280,286,300,498,540],[60,62,214,216,240,274,280,286,300,498,540],[211,231,498,540],[223,274,277,280,286,287,300,303,498,540],[60,62,214,215,216,218,219,220,221,223,225,229,240,269,272,273,274,277,280,286,287,300,303,498,540],[60,211,213,214,218,277,300,302,498,540],[60,208,211,213,214,215,302,498,540],[60,61,62,214,215,216,217,218,220,222,274,277,280,286,287,300,303,498,540],[60,61,62,213,214,215,216,218,219,220,223,224,225,240,249,258,266,267,269,270,271,272,274,275,276,277,278,279,280,281,286,287,300,303,498,540],[280,498,540],[218,219,223,274,277,280,286,287,300,498,540],[208,213,215,218,277,300,305,306,498,540],[60,208,213,498,540],[60,261,274,280,286,300,498,540],[60,216,218,274,277,280,286,300,351,352,498,540],[60,218,220,223,252,253,255,274,277,280,281,286,300,498,540],[208,498,540],[60,216,218,262,274,277,280,286,300,498,540],[60,214,218,219,223,274,277,280,286,287,300,498,540],[60,213,215,218,277,300,498,540],[60,218,277,300,303,498,540],[60,211,219,221,252,253,255,277,300,303,498,540],[229,365,498,540],[220,253,255,262,274,277,280,286,300,365,366,498,540],[219,220,224,225,226,259,274,277,280,281,286,300,367,368,498,540],[220,277,300,498,540],[250,281,372,498,540],[220,250,274,277,280,286,300,498,540],[220,240,250,253,255,257,274,277,280,281,286,300,365,367,368,370,371,498,540],[220,257,274,277,280,286,300,498,540],[60,62,218,219,229,277,300,498,540],[60,213,215,218,219,277,300,498,540],[60,240,274,277,278,280,286,300,498,540],[60,215,218,277,300,498,540],[62,218,220,223,255,274,277,280,286,300,498,540],[220,277,281,300,498,540],[240,274,277,280,286,300,498,540],[60,214,218,277,300,498,540],[60,211,214,218,277,300,302,498,540],[60,215,218,219,221,277,300,498,540],[60,218,240,274,277,278,280,286,300,361,498,540],[60,61,208,213,215,498,540],[60,218,277,300,498,540],[82,498,540],[85,498,540],[85,142,498,540],[82,85,142,498,540],[82,143,498,540],[82,85,101,498,540],[82,141,498,540],[82,187,498,540],[82,176,177,178,498,540],[82,85,498,540],[82,85,124,498,540],[82,85,123,498,540],[82,99,498,540],[80,82,498,540],[82,145,498,540],[82,180,498,540],[82,85,169,498,540],[79,80,81,498,540],[175,498,540],[176,177,181,498,540],[82,93,498,540],[84,92,498,540],[79,80,81,83,498,540],[82,95,498,540],[85,91,498,540],[78,86,87,90,498,540],[88,498,540],[87,89,91,498,540],[84,90,91,94,96,498,540],[82,84,91,498,540],[90,498,540],[63,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,96,97,98,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,142,144,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,498,540],[204,498,540],[78,498,540],[498,540,634],[64,498,540],[64,69,70,498,540],[64,69,498,540],[64,70,498,540],[64,65,66,67,68,69,71,72,73,74,75,76,498,540],[77,498,540],[498,507,511,540,582],[498,507,540,571,582],[498,502,540],[498,504,507,540,579,582],[498,540,560,579],[498,540,589],[498,502,540,589],[498,504,507,540,560,582],[498,499,500,503,506,540,552,571,582],[498,507,514,540],[498,499,505,540],[498,507,528,529,540],[498,503,507,540,574,582,589],[498,528,540,589],[498,501,502,540,589],[498,507,540],[498,501,502,503,504,505,506,507,508,509,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,529,530,531,532,533,534,540],[498,507,522,540],[498,507,514,515,540],[498,505,507,515,516,540],[498,506,540],[498,499,502,507,540],[498,507,511,515,516,540],[498,511,540],[498,505,507,510,540,582],[498,499,504,507,514,540],[498,540,571],[498,502,507,528,540,587,589],[498,540,624],[498,540,582,596,600],[498,540,571,582,596],[498,540,591],[498,540,579,582,593,596],[498,540,589,591],[498,540,560,582,593,596],[491,492,498,540,552,571,582,592,595],[498,540,596,603],[491,498,540,594],[498,540,596,617,618],[498,540,574,582,589,592,596],[498,540,589,617],[498,540,589,590,591],[498,540,596],[498,540,590,591,592,593,594,595,596,597,598,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,618,619,620,621,622,623],[498,540,548,596,611],[498,540,596,603,604],[498,540,594,596,604,605],[498,540,595],[491,498,540,591,596],[498,540,596,600,604,605],[498,540,600],[498,540,582,594,596,599],[491,498,540,593,596,603],[498,540,596,611],[498,540,587,589,591,596,617],[376,377,378,386,388,389,391,394,395,498,540],[376,377,378,385,388,396,498,540],[376,498,540],[376,377,378,380,399,402,498,540],[376,377,399,498,540],[376,377,378,379,382,383,384,385,498,540],[376,387,498,540],[376,422,444,445,498,540],[376,378,385,498,540],[376,377,498,540],[376,378,498,540],[376,377,378,498,540],[376,384,403,423,424,425,426,498,540],[380,384,498,540],[384,498,540],[376,377,378,380,382,383,498,540],[376,377,378,380,412,498,540],[309,376,378,454,498,540],[376,377,378,380,399,436,498,540],[376,498,540,553,561,562,661,664,665],[376,377,401,498,540],[376,377,409,498,540],[376,377,378,382,383,384,385,390,498,540],[376,412,498,540],[376,377,378,380,419,421,498,540],[376,377,378,380,392,407,408,410,411,413,414,415,417,418,498,540],[377,378,379,380,381,382,383,384,385,386,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,456,457,458,459,460,461,498,540,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,683],[376,377,449,498,540],[376,377,448,498,540],[376,377,420,498,540],[376,377,381,498,540],[376,377,378,380,404,428,429,498,540],[376,377,378,380,404,429,431,498,540],[376,377,378,380,456,498,540],[309,376,377,380,382,412,461,498,540,682],[376,385,498,540],[376,377,378,380,410,411,412,498,540],[376,392,498,540],[376,377,378,382,383,384,385,392,393,498,540],[376,377,378,380,402,498,540],[376,377,378,380,382,385,395,423,426,498,540,669,673,674,675],[376,423,498,540],[376,377,378,380,460,498,540,671,672],[376,399,498,540],[376,377,378,380,498,540],[376,377,378,380,458,459,498,540,670],[376,378,380,456,498,540,670],[376,384,393,498,540],[376,377,400,498,540],[376,444,498,540],[376,381,385,405,423,427,430,431,432,433,435,441,442,443,498,540],[376,377,378,380,412,434,498,540],[376,377,378,380,396,399,437,438,440,498,540],[305,376,436,498,540],[376,377,378,380,404,423,429,431,439,498,540],[376,377,378,380,399,416,498,540],[376,378,380,395,423,498,540]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8b823816e0627945661bae6ed3d79c9ab85a81424a3bf55675eb6fc8c0a139f","impliedFormat":1},{"version":"d25c4cfb4e15e818fb06d63e543ec403e3c8001b570fc16191522184e0ea4a83","impliedFormat":1},{"version":"126a0bdb1dd8a5d8ef52213624cd09d803339f8ac13821a92a3f7dc3d4c55b52","impliedFormat":1},{"version":"b98cbe170e5774f6d9c364eef2a71dff38705390eada04670643271d436e44cd","impliedFormat":1},{"version":"2c1c7ebb6588ca14ec62bc2a19497b6378de25ab5d6a6241f4b8973f5f314faf","impliedFormat":1},{"version":"cefbdbc7607e7d32560385e018b991e18075f9b3b5b952f3b5f20478e4d15c43","impliedFormat":1},{"version":"72339629fd17518e8de4e495b0d91908a938fc4774457f09896789d40eb238b5","impliedFormat":1},{"version":"d0e5421dc798ee8146f82eddd6b96135f662e9a905c3afe400a029eea5b405a8","impliedFormat":1},{"version":"7a0a70d6f7ba13c11bb570a45000e6e428210ec2e1bdb8cbac46c90dfef698e8","impliedFormat":1},{"version":"b375d410108bcc3dab93dbc1de2b64777efac618025dbe675f1b2bfb63a91462","impliedFormat":1},{"version":"e352c35e7a226a5ff81bc9139e6e41bd5990f291a123de224987f5da34e2f725","impliedFormat":1},{"version":"3b416138214e8f4213e911723cf7f383ebdaa97e369687819452b53576980caf","impliedFormat":1},{"version":"faaed6dc3c93ac12afa83fc1a8ac384820437272622308b07f250650e16de120","impliedFormat":1},{"version":"16c28b35bb61fd8937b9ac446744601840e4d135ee863459259973e43d9ac458","impliedFormat":1},{"version":"4dd9018777b9b3feb8a7705841e3322000b3fa9dbb52aeaa7f189a4a408312f5","impliedFormat":1},{"version":"b91e472a9547e0d6e75b114c6d08d2e916174528f71c7473922d74018b9f9b93","impliedFormat":1},{"version":"c04a9cc39d447fa332a52e687b3ecd55165626c4305c1037d02afffd7020867c","impliedFormat":1},{"version":"e41e2bc86051b0f41d5ec99e728127e461b48152b6fb4735822b7fa4b4b0bc77","impliedFormat":1},{"version":"b49e721e29f8bb94b61bf8121a13965cced1b57cd088fb511c25a93c4ddfc1ac","impliedFormat":1},{"version":"24ff411ed19b006ec0efbdc5d56abd5f8a2a605eff97eb3db0941719c19e0844","impliedFormat":1},{"version":"190123e7b32a1a44dcc6b5b397cfd61c452606ea287576679d18f046b9296bf0","impliedFormat":1},{"version":"aeb54b9213fe90552e5e032abd0485d7ed21d505e59782b5e15c344a4ee54db6","impliedFormat":1},{"version":"51a201487cc0049e538a406c884d28b6d2ab141dd9c0650190b791c63803cae8","impliedFormat":1},{"version":"cb37d06c94592039ce1fa54d73ed241115494d886ee84800f3639cce48d0f832","impliedFormat":1},{"version":"82120a297fdf2f0bd9fa877f0c82b26bd9a94635536aa0ab59fe3ec78086f219","impliedFormat":1},{"version":"63aa0a9aa26aced773af0a69efe0cb58e12c7fc1257d1dcf951e9c301da67aee","impliedFormat":1},{"version":"fe9157ed26e6ab75adeead0164445d4ef49978baf2f9d2a5e635faf684d070d4","impliedFormat":1},{"version":"d0a02c12e4fb6b7c666773485e1ea53cdaa02b5b7c9483f370dccf1c815ff385","impliedFormat":1},{"version":"554edc2633760ba1c6ced5ce1e65586fe45f37c1f9f76052f68eadc4a06007b4","impliedFormat":1},{"version":"7c3335010a48156bb5eaa5866aeda1f0bf9a2402500e3cd3d047ca7b34f42dda","impliedFormat":1},{"version":"5d62771188e40ff7468d7f28ea5ed207ec0bce364e59e0fbf3e0c3ec794ddbf8","impliedFormat":1},{"version":"e6affb59098efce161ef8874843ecb1ebfed74f7374af0ce36ec4c9d1a370790","impliedFormat":1},{"version":"16cb0961a5f64defa068e4ce8482ed2e081bf1db2593205cca16f89f7d607b17","impliedFormat":1},{"version":"03bf2b2eee330dd7583c915349d75249ea3e4e2e90c9cc707957c22a37072f38","impliedFormat":1},{"version":"30ba32b82c39057e1f67f0ba14784836148a16d0c6feb5346d17b89559aadacc","impliedFormat":1},{"version":"f68437efcfd89bb312891b1e85e2ff4aa8fafcf0b648fc8d4726158aa4071252","impliedFormat":1},{"version":"dafb6d7587402ec60c4dd7129c8f84eb4af66c9f6b20c286b9dde8f316b9c7f2","impliedFormat":1},{"version":"598c2c581e6bd9171a59ef6ec9ce60d0eddcab49bd9db53a90d169c2387ec908","impliedFormat":1},{"version":"95ba818edf3770e357e9bbe6f55c9227a0041cb2460fff50e9d9e35ce7d23718","impliedFormat":1},{"version":"29a04903692cd5533c3c48c669361876522bde9f594f56d27589886157ad4894","impliedFormat":1},{"version":"d0e6175eb404f3de20b6e7168742eb3c9af55306209b3874ac0f946ac62158d3","impliedFormat":1},{"version":"3e8cfafb493180ef840f481750b49452001e5d80942a2a5d5151deae67b21465","impliedFormat":1},{"version":"d75c6765136563e3155b55220801379cbf1488eb42d7950afe1f94e1c8fde3e8","impliedFormat":1},{"version":"0126291175f486dcb5d8fceb57718c71c9ace7403987724127f373fd6696d067","impliedFormat":1},{"version":"01196174fb4b03fc4cba712a6e5150336b14d232d850dca2c9576d005f434715","impliedFormat":1},{"version":"16a8a7425362ec7531791fc18d2350f9801c483180cc93266c04b66e9676c464","impliedFormat":1},{"version":"63461bf37e9ef045b528e4f2182000922166e1c9729621f56984171cf49f2a8a","impliedFormat":1},{"version":"905fcafee4ebea900d9beec4fbff2b4c2551442da865733e1583085a4dc906d6","impliedFormat":1},{"version":"fe8165682f31b1f82cb93d62a759f1a26eaea745c361fbe2884134b73094d738","impliedFormat":1},{"version":"9b5d632d6f656382a85d3e77330cbf1eb27ed7290e9b3db0cd2663cf9251c6b8","impliedFormat":1},{"version":"2fc74eb5983a1a5986374eac99302432698a97186e577e91aa59b3ff91e657ec","impliedFormat":1},{"version":"ec767f9a0beefc9fc710bb0e5fc77f67468bb3b3fa34b9ebb8f72cd4f9fe2209","impliedFormat":1},{"version":"5fda99f644f00fb41efe3dfe936dc66d6f1d8d4abec93bf9735c4af3f70233dd","impliedFormat":1},{"version":"ceda7e9320a5a86ea760bb70c3c3b2278e01977b2cf30050ac9dfa80528e3442","impliedFormat":1},{"version":"d492ee06385287cce63b4173f7e553b7877464789598b03cec6b35ca2a64f9dd","impliedFormat":1},{"version":"2a0d3ddee69590b52ddec7eecfe8385fc2c54b3e2fd402439abe6b1c962434a6","impliedFormat":1},{"version":"55e6253bf987f95c86280b7bbb40500b5f5a21bfe890f166e647b864d3a7b8c5","impliedFormat":1},{"version":"efc4c4273bdda552afb3425998d95d87cb57a9e119734109c2282b3a378b305a","impliedFormat":1},{"version":"afb6cc0af49d24e5d787de77d5b46f05ecaea444f73829d60fcf6ceb76e608eb","impliedFormat":1},{"version":"882e89116341394e371cd8f24bc2e38239400276da03d3c38c9c9fe6b244fb1f","impliedFormat":1},{"version":"7d17be79ca035a9b8e02ba11f6351cea1bafd38c27a8004a401474ac2aa6695e","impliedFormat":1},{"version":"8e89f4377964cc23d5fe3bed390e5a415926f124a7cc7963d5e7bbce823e9887","impliedFormat":1},{"version":"7f6cdf4d7129c667eabf8c87b1798d5578623e39c42a3ff1aad742561e863858","impliedFormat":1},{"version":"ea5885ba5e792e0b88dc39f51b6b6c6c789d8fe2116bce3905f01d790f59c10d","impliedFormat":1},{"version":"0e09f1810ab7821d9d3c967323ec9cfa042cd9a1d8c3e8af4ed9b6dae4e63f86","impliedFormat":1},{"version":"f089bbeb3f2f0c528d3382fdea9cbb282ce252c918497e7abb974804f4faae1e","impliedFormat":1},{"version":"e57ad5997f573113f39391e780098560a341556b8d55d07b02675afbd72d82cf","impliedFormat":1},{"version":"896ed9bc9650a9ad6ead21583c007463217edeb58a4f45d1d019c1926b684643","impliedFormat":1},{"version":"7976b4472cfda91c462250daf51eae6e1121c2d725e4812d5c89019bb00e9551","impliedFormat":1},{"version":"901807bd11ececb52f0a2586689dacabf0e14f15e5e0604a673c9e1ff8186412","impliedFormat":1},{"version":"c9ebb2be9fc78b6df354c69b646c37945da54464389ce4342a0fd9cebc731f19","impliedFormat":1},{"version":"3f9a0317283412268b02f47fb3c83920a3b6a6c506898cef7e6ed42d5aff8d45","impliedFormat":1},{"version":"9de11c7d313d848291ec1a850637cc23dc7978f7350541af3314f7b343287d11","impliedFormat":1},{"version":"23f76b69848fe41a4801c7df41cf22bb380ad3fefc5adf2f7026d60f9f0451ba","impliedFormat":1},{"version":"ec17da14f94c8fddb8adeb4277b2cdd75f592095c4236db613853fe569ddb7b9","impliedFormat":1},{"version":"48ade6580bd1b0730427316352920606ff854f6a4548d2dee073fab4eecc6e62","impliedFormat":1},{"version":"5975ac1e6043d47f6771a0219b66530c23f05d1a27743091203ee7f6ea0f3a7b","impliedFormat":1},{"version":"e84b43d807d525da4dcd996ecf63e17245649672c2f620e84faed87e518ad639","impliedFormat":1},{"version":"2dbf4764d09250ec5850b5cd5ab47f72c9a16add6c73bd1f1ebfb55aefbb35d7","impliedFormat":1},{"version":"d147d653b19c446e14cc941c2a96eb111512702f765e086a450c5b720d2128b6","impliedFormat":1},{"version":"e9f2adc30882f676aa8109beeb32f2229da408f3ff25cd66b18e0d65fc162e51","impliedFormat":1},{"version":"1cc2419f7786055521ea0985b44dd961563a645dad471de3d6a45b83e686121f","impliedFormat":1},{"version":"9feba5111ddcd564d317f8a5fddd361f451b90fef6a17278134db450febc03a2","impliedFormat":1},{"version":"0b0ab6bb2cce3b6398ea9e01980e3a0d8dd341c6c83fffbcf4b33d3065fdeb76","impliedFormat":1},{"version":"31c5e0d467794830f02766351f8d5e9c2b08e6cc4e739478f798fb243e3eb8ce","impliedFormat":1},{"version":"7855b568645d7fa99b22eb48070c5174cf45c198b9f81abb5cbed6f4e6051a7b","impliedFormat":1},{"version":"fe01241cd36b45f1673814120a682aaa41ee12b62509c46535925ce991cca196","impliedFormat":1},{"version":"e2a3d01be6c9004bb660546b244d0bc3aba49ea6e42af5490afa6bb9eacaf03b","impliedFormat":1},{"version":"d46410a523d938fae1c998fd4317867ea4fd09c90f548070317570682e5fb144","impliedFormat":1},{"version":"3eb7886b8771bb649de71937d1d06a56277f9aa4705d4748ab10e2549cb90051","impliedFormat":1},{"version":"e1b882923b064f7ec2cec07f9ba2c2027d43502eb7fca3ce5444f5b4de8d812b","impliedFormat":1},{"version":"e05f866a0711a3a6059be95921a6c25b4a5a4190c295341ed4958950e491f9c4","impliedFormat":1},{"version":"a2fec5fe18ee1eea9782074951c366b9952f7dfd8282104cf8002821daddd07b","impliedFormat":1},{"version":"a4cf0ab697cbab80d76105244792d400e37a789cc3e783e94afc62290f4524e1","impliedFormat":1},{"version":"cd279bc48f9d44eb6cc4e98155ffbc29489d2ecc0ad8f83fee2956b62b0fbe47","impliedFormat":1},{"version":"b5f586144570a0e7cfb3efa1ae88c5f8b49d3429a0c63b7eecf7e521bffb6ab2","impliedFormat":1},{"version":"d78bef98f2833243f79ec5a6a2b09dc7ff5fc8d02916404c6599eb8596e5c17c","impliedFormat":1},{"version":"fdd66ca2430dd3eb6463f385c3898291d97b64f2e575ab53c101ee92ba073a5b","impliedFormat":1},{"version":"7b8326615d6ba6f85d6eec78447b5734839572075e053f01972e386569eb7cf9","impliedFormat":1},{"version":"5e1fca4ecd38a7a5194bffefb713460610521d1db4835f715d8b7e5132a451ae","impliedFormat":1},{"version":"e008e16c64ee65759e1336db16e538f2360bda6eee86303b7f9875f93566926a","impliedFormat":1},{"version":"4bf01b353ef24f6daf68d4ed15a40d079dbc8402824e41f9b11444c366c87e46","impliedFormat":1},{"version":"47d370c23aae9d4a46d108fbd241c2f4c4293934348fe67c09275863c663ba28","impliedFormat":1},{"version":"4e37aea128d8ee55192de216ec9b5c19b6f5469f2f3888965e878387b87d82ce","impliedFormat":1},{"version":"e0a26715db09e01d895767dad26409fe282b457fb937087066a83cdf7ed1510d","impliedFormat":1},{"version":"5bbc28e15ffe9c3b553b351da50907f3dace4b8f2698e8c633957ccca79f1587","impliedFormat":1},{"version":"d8605eab739e6eff9e5a810953bc8f110c18d4767915070122d8de270d93a539","impliedFormat":1},{"version":"159559d509aee31c698353bf9d021defadfc017acbcaaa979b03e8b9ea4fcdbe","impliedFormat":1},{"version":"ef830fa9b8ac8e1c7d328e632e1f37251c5f178157e0172b7f91bf82a249ae48","impliedFormat":1},{"version":"029c0ae6486c8247533c321d7769087178efe4f339344ed33ccc919d4645a65c","impliedFormat":1},{"version":"c85cc7e94c2b24b4fef57afb0ab6ecfe6d8fd54f8743f8e761ec1b5b2682d147","impliedFormat":1},{"version":"ba833bb474b4778dd0e708e12e5078a0044fdf872b130c23eee4d4d80cf59c1a","impliedFormat":1},{"version":"b22d90f2d362bb4b0ab09d42b5504a9ef1c3f768336c7676d75208cb9bf44fe1","impliedFormat":1},{"version":"ea725cf858cce0fa4c30b1957eebeb3b84c42c87721dc3a9212738adbdad3e47","impliedFormat":1},{"version":"556dc97b6164b18b1ace4ca474da27bc7ec07ed62d2e1f1e5feec7db34ea85e7","impliedFormat":1},{"version":"34f4a5e5abcb889bd4a1c070db50d102facc8d438bc12fbcd28cf10106e5dec8","impliedFormat":1},{"version":"b278e3030409d79aa0587a1327e4a9bc5333e1c6297f13e61e60117d49bac5a7","impliedFormat":1},{"version":"dcb93b7edd87a93bbda3480a506c636243c43849e28c209294f326080acfb4fd","impliedFormat":1},{"version":"f3179b329e1e7c7b8e9879597daa8d08d1a7c0e3409195b3db5adf0c8a972662","impliedFormat":1},{"version":"19d91a46dc5dff804b67c502c0d08348efa8e841b6eaefb938e4e4258b626882","impliedFormat":1},{"version":"550b1bcee751b496b5c54a4de7a747a186487e74971da1a2fb6488df24234dc5","impliedFormat":1},{"version":"6d54746945b9c2b2c88cd64dc22e5c642971dd39c221ba2ad9a602f46c260c31","impliedFormat":1},{"version":"00677cf86a3e8b5b64ac5a3963be34dd4f6e7b4e52fed9332e190b4a41877fba","impliedFormat":1},{"version":"7cae95b5b65941db32f44820159fa81605097327070ce7abc0508084e88d9366","impliedFormat":1},{"version":"82ea80af29aab4e0c39b6198d3b373ab6431b3f30ee02fdb8513fb1d80da2f98","impliedFormat":1},{"version":"6252c4e1c67faebb31907262e329975c9c9574e662b8e1f29a9e1c65f4933fc1","impliedFormat":1},{"version":"7dd32c136b356b80e648966b457bd5dba81e86a7a5e10118e5dc62a91e5d8dff","impliedFormat":1},{"version":"ff2807d90505df16875eb8beb04e6379d751ea5a6412a612aacc1779dc834f6f","impliedFormat":1},{"version":"707d69e35a457a02df69e407bf45c7c2bd770230e61fba69897c706373efda3d","impliedFormat":1},{"version":"ee3f3159fb0eb04322dc08ca0344cada9b1afdbff4bf021ed229ea33418c02bf","impliedFormat":1},{"version":"60a10874f1445d12af58ec3d7d26711b11b95d2432d7a67d591eed8ac42aeecb","impliedFormat":1},{"version":"6b54b93dee5a1c4f2432571fcb8b6846c224e5fa8a3e1d02a08760d202ba24bf","impliedFormat":1},{"version":"5b5af36f2494858b01f8bc22f08a90e7687fb20fe5b89aec9f05fea56ce2f4a7","impliedFormat":1},{"version":"01dc1755f60d10971b43d71562a7ee05deffc7317a88476becef9b30686fcf5d","impliedFormat":1},{"version":"d0e653d9a5f4970098dfd3bf7ff515fcde909d3599cabadd168b49dd3786c1d3","impliedFormat":1},{"version":"2170cbd9e9feba37765aac36f6bced8349b51b70149b96c359ef6e4e581d29cb","impliedFormat":1},{"version":"e5a7066c96dd80d71293afb5c694142d66abc6a649be4bd6bcdf8629f80bd647","impliedFormat":1},{"version":"d144a03dc18068dc788da021f34b96cd0011aa767f0c811fd16e17e0fabafac4","impliedFormat":1},{"version":"41d4348127cac62f18177bfbd6673d7227d08df3c834808b7bbf623220854dcb","impliedFormat":1},{"version":"82f83d1c59621504a282813d2079d319d14134acb9a4e753bc661286b760d93f","impliedFormat":1},{"version":"320f2403a8976b11068464b8c031e9a7418d01e2b226f4a75dbddba2ea071e02","impliedFormat":1},{"version":"2df0f708ce3ca701d9ecb1ad865337b6ece0a464c1db0a4d7beaef0e6c1431c7","impliedFormat":1},{"version":"d0c23c27ab25f8298fbdb57f90d7c9555dd9dedf6c65910491f0502149296bc3","impliedFormat":1},{"version":"a9dc1a642ec16c8b9c319d886b8e4a5bf3737879794b17a6e3c3a8a20b9a8084","impliedFormat":1},{"version":"8d7416be7127d2bcea8591a0a8aeac9ef14e400cb67cba14f93ad2efd78abed8","impliedFormat":1},{"version":"4f76cabb92d767cc8f854a5c26a1ecfa068b6095bb7abf45803f91e16ee817b4","impliedFormat":1},{"version":"8f559efd95a69bc92c39d839abb0fd25f098e4ce0cd119ccb572a8fac695d59b","impliedFormat":1},{"version":"76af14c3cce62da183aaf30375e3a4613109d16c7f16d30702f16d625a95e62c","impliedFormat":1},{"version":"ed8299795c43beb18cfdb4766bbebffb3cc680b0ecaa83ba2eaed73ca08b3e40","impliedFormat":1},{"version":"82a9eaaf475f62f069d074edef3f4801a099de80e4a77bb60fd2e0780c782fe4","impliedFormat":1},{"version":"f0cc2de2db9a6fd4accb433caf3db9e00018ce9b1927c3fd2456a7b24e989b85","impliedFormat":1},{"version":"71a04d79b7e88a27350a3bd8cb85c42766d24c40e156b62b472169ebc3aaf3ba","impliedFormat":1},{"version":"4d9dbde0a30438ab63f48e2ddd31d2d873f76358cd280949a913526f0470de7c","impliedFormat":1},{"version":"0b9cdb0847a8dba6f8e24e91b68a538655d0f45844b50a615c65d61e273ba4a5","impliedFormat":1},{"version":"213f7ae76089f1205effb56194a29d63685ab9de328ded8e3abab57febf83732","impliedFormat":1},{"version":"06a6aaba955a8a6c48ee93d0296c497ca2b0c4a0457b28f5733c84a1a2d789be","impliedFormat":1},{"version":"1eeea02ca171d1c7281150dfb5aa3756a0e387e3032db8e1347874e4244673ba","impliedFormat":1},{"version":"add6d1d59f38e3f2e1238b645b78a82c06162d7db8b62a329a71b44299747609","impliedFormat":1},{"version":"8d701efe7cc1a3c49943e618030b8c68bc43c8c0ffb75f901571c4846dc2073c","impliedFormat":1},{"version":"7c1cb4008d5d979f7e722c16ae81e492c9e05698480b63b20670424f422260eb","impliedFormat":1},{"version":"3ed7b47b32120b85418147da67428a267383c5ab884a4d07831d9b781e8d98b1","impliedFormat":1},{"version":"a8dde15f461a56e4614bd88bb66da921b81dc4f5c754440b287df55752f5fa46","impliedFormat":1},{"version":"6e9bb2810a92dd83063b9a4e39acf25e9799958bb774b0c4dd1fb81e5113b462","impliedFormat":1},{"version":"31dd310e6ff44fff6c05742770a2eb3741d33e3d3e67681414fb88d5b9aada5d","impliedFormat":1},{"version":"02af3d6bd82adcd58eb36083b291e0b7f979565adf418193681956b77151bbf4","impliedFormat":1},{"version":"63b7e563fdc810a7bdc607edc385d7128885a9ab172519ca323e41d136a35829","impliedFormat":1},{"version":"3f5ee5fcc5e8edec0a1597469c0d1dbe779fea94bdcb4d0940aa98611e4faf30","impliedFormat":1},{"version":"d923d2109ac10c6c84addb6ae18195581bea9f2571cdb523a93e7a040042efc5","impliedFormat":1},{"version":"7c278351913a31aafe6d14b4f95ff178e0d35799278240b9b39adc615011ddb9","impliedFormat":1},{"version":"1d88ad4c85fa72ab799e9b2fd83b71dfd829201a2b0269c739ae15876516f1c7","impliedFormat":1},{"version":"2ba9550053351eb186f6c36d87ed1cbbe17df96d4a918cecde487aa78685d782","impliedFormat":1},{"version":"09012171768b5a701d84817f6e1bf8aad414ae53dbd91e8ba38ca9c70e574fc0","impliedFormat":1},{"version":"e575ca8392df51e504cfd7c1ed808d509815a3a17cfe7745c31bbe9242793e78","impliedFormat":1},{"version":"4de7da29c15565aa8775af5c7fbb44ad90f54b46ade34530a651ef7af94f8d99","impliedFormat":1},{"version":"f5435246aa47bee032053ca93742b278fe2056a95ee26e9da05819df204cd4e5","impliedFormat":1},{"version":"b9c4e633ff42f0bbdad31f176e439eec1cb21e02af0400fb654cfd83d51432fa","impliedFormat":1},{"version":"0c3b3e1d8c575b6a1083b4f60d4b599728893309fbc431c039f55a48cdc8df35","impliedFormat":1},{"version":"bd7898a9b7777d646d296af9262e7e4542350a0b6191f0d064c82cbfd6fcf580","impliedFormat":1},{"version":"6d08d7acecb941ad5db775ad62b492b8ab379b233c25a0d833d0ce3dde9378f2","impliedFormat":1},{"version":"1e2dc6ce7868afffa46c99fe915250316552e47987d0236bf43719f8556c689b","impliedFormat":1},{"version":"54937ed47bd319d3e0520dcf962f47c1a6ccef9a22ea6bbcfad5f930a1bb54e2","impliedFormat":1},{"version":"86e6e79adf0150f3f2be6ad817fdd18c6d2bf374d1ab2c8643083cdced0694c3","impliedFormat":1},{"version":"9e0cac0ed3bfb540a5e02320b86e7db24823eda48d7cbb8d545770a5b6a20b31","impliedFormat":1},{"version":"0655044205f67f213506da9dcf1bb97e91ef3472078097b3cde31d434d5613f2","impliedFormat":1},{"version":"9b0ec489e19e272742fc3b60ac351b960236560e1abd2bb18f20ccd58078b618","impliedFormat":1},{"version":"7b4af6e074439ce9e478fe7615576e8686064dc68bd7b8e1a50d658590142008","impliedFormat":1},{"version":"4b25b861e846ae7bff4383f00bf04dde789fb90aec763c4fb50a019694a632c7","impliedFormat":1},{"version":"76099ea6b36b607c93adb7323cb51b1e029da6ae475411c059a74658e008fabc","impliedFormat":1},{"version":"db4b86453d9e071b3fec3d5ca59bcbb4d6b59933473976db4593d0988bd4c8e9","impliedFormat":1},{"version":"1df2c1692e2f586f7c951768731251abe628c936e885aa28303f0264bff99034","impliedFormat":1},{"version":"7e57f87f2d18da6f292b07d2c1b59b83431a023666ed61540436ce56e5bf9804","impliedFormat":1},{"version":"6c81bc82bfc949e487d95c99ded42d67a1db85c1b9bab784b00184f4d23c9b3e","impliedFormat":1},{"version":"29c0921bbb69f433b07f179d81a2b06d1b6807fa876409c1562299f39cb9fc4e","impliedFormat":1},{"version":"599883c59a5d4df7461c29389d6ae2cb72be9280847ab3c993af09efe3b30714","impliedFormat":1},{"version":"4630ad03301cf8dbc44f66a26d4b6c0b16dd4b52cd439b10d9d1861d777fe936","impliedFormat":1},{"version":"4ec3a55e81757489d13c94d709496af52cc8e6d1590883f4a17e7510283ccbf0","impliedFormat":1},{"version":"ac04a85a2c99e5e08592e1be51470a94e3cef34fe48beee79843e5cc46fa075d","impliedFormat":1},{"version":"8e78526659a660fbe2277fd60a56d72ff44c80cc32b2729a627c9172f6bed443","impliedFormat":1},{"version":"22a09776108b5f10d2a3e63cff481e5f2e72f07c589cf6484f989908bb639364","impliedFormat":1},{"version":"d53dffc6f714f27fdff4668b5b76d7f813065c1cad572d9a7f180ef8be2dc91b","impliedFormat":1},{"version":"49d1653a9fb45029868524971609f5e5381ed4924c7149d27201e07129b85119","impliedFormat":1},{"version":"a403dc2111cb4fb2f1449a4eb61a4ac146a665a4f89a252a2b882d5a7cb7a231","impliedFormat":1},{"version":"8a8d0d4097ec01978f01cf7965af1d5cfc3731fd172ba88302c5f72392ed81b7","impliedFormat":1},{"version":"369f9ef7df8c9dec212fe078511eb2a63df4ac8cd676870f3a8aa67b11519bd6","impliedFormat":1},{"version":"e19419e4ef3b16ba44784df4344033263dbb6e38f704560d250947ff1c0c4951","impliedFormat":1},{"version":"bf38fd4302d7b182291195b1b8d3d043fe9d2cf7c90763c6588e2d97f8e8e94c","impliedFormat":1},{"version":"553963743408e4fd530bec00211dc951cb3e40586777e2387cdb807dd1d1c14c","impliedFormat":1},{"version":"14cc7dde3923d77ff09720aa4733efe965d617f170e6b91147933ba1a32c8819","impliedFormat":1},{"version":"a60610a48c69682e5600c5d15e0bae89fbf4311d1e0d8ae6b8d6b6e015bbd325","impliedFormat":1},{"version":"d6f542bbec095bc5cadf7f5f0f77795b0ee363ec595c9468d4b386d870a5c0f0","impliedFormat":1},{"version":"5cd9eea5b337301b1dc03116c45abf1cdaa9283e402a106a05df06d98a164645","impliedFormat":1},{"version":"fefa8bbb3a45351d29a6e55e19242e084ab2ffa5621b1b3accd77ddcbb0b833f","impliedFormat":1},{"version":"6018ddd9516611aee994f1797846144f1b302e0dc64c42556d307ddc53076cfe","impliedFormat":1},{"version":"6bbc372cd255ad38213a0b37bdbea402222b0d4379b35080ef3e592160e9a38e","impliedFormat":1},{"version":"449424e27f921c17978f6dc5763499ccae422601c041939d0b715e50261a3b3d","impliedFormat":1},{"version":"2f0de1e79fe315d2b52495ba83832f2802bf0590429a423df19864d532eb79d5","impliedFormat":1},{"version":"0a49c586a8fdf37f125cee9b064229ac539d7a258ebd650b96c2a6a91a9500c9","impliedFormat":1},{"version":"d508f0791a3241800f02de2de090243aaf85f9e4c470f8c10e4f7574ef4bc791","impliedFormat":1},{"version":"2b7f57bfd479522f90791ae9dfaba0ac4fefc882c0e51905e8854b4431fbf7b6","impliedFormat":1},{"version":"bd8dc8f36f0765fabd810462be364713c7eba6624324b5d24ffd4b02197bfb27","impliedFormat":1},{"version":"272b1a46cb8ccf1f41a9f5d5bb874e6c252abcb2317d9e3129346b8d0747a8e0","impliedFormat":1},{"version":"833c23a31c2bffc0346e4817b4e01cdc0d5176f2008943050c92e91f8e83f6dd","impliedFormat":1},{"version":"4f4edea7edd6e0020a8d8105ef77a9f61e6a9c855eafa6e94df038d77df05bb0","impliedFormat":1},{"version":"9fbf7b316987d11b4f0597d99a81d4b939b0198a547eecb77f29caa06062f70a","impliedFormat":1},{"version":"ca8d266adcd6a983a6c05d842e232f4cf93bffc01c3d71e355642adf8e087c5b","impliedFormat":1},{"version":"e2e1ab54bc3fd94445e25fedc10582c50de64cad929c395116a594da86eef828","impliedFormat":1},{"version":"4d0becfdbe5107bab4bc0cc5a3047c29c4d3e47e642c3fdc452f3df81b80978e","impliedFormat":1},{"version":"de59761d55cb3e916116b0b8292b8f7752b6feef52bafc341f77bbe5ca606290","impliedFormat":1},{"version":"f390c347d2ea786b06eadd20dd48e723e034cfe6dbd0a3af152b87fa411f9e14","impliedFormat":1},{"version":"07758358ea2a98df6a59aecb8de66a5babd25dc142f0a640dfb2cf5823748ea5","impliedFormat":1},{"version":"9cc00544a9f1c350d11a15f4fabcd565bad4c5f157ba2e6ecf61d176f9a12a81","impliedFormat":1},{"version":"f26d98b1ccae715cc5106f8a31b7df5289695cedc9e907d02a93102819bf30de","impliedFormat":1},{"version":"01d9c44034c22be15e8804514e38d671240cd50e37e3536ad0073c9f091f4019","impliedFormat":1},{"version":"f9d816338735b027330bec82fbf86a39477e38ecd385da4050049493879b0b04","impliedFormat":1},{"version":"476a51005ddb8d58b7d5c88b3e8f0034a6d7f4c51483b3f4158092a2ec29a7bf","impliedFormat":1},{"version":"ae7b809ac70fa8aff42d482a81733c0ae23f405656930698353c56272470d777","impliedFormat":1},{"version":"4f9590a4909bf3734dc6031e32fbf5b9f707be7d8950a5364ce162ea347533ec","impliedFormat":1},{"version":"ae81987b9c24f4c83b9b080d39e341870a91d3480901da115ed86372c9623bbc","impliedFormat":1},{"version":"079972158ebe8c4fa2db2ee80d6b4d61bf5c41ed9fa54ed96040b5efd8358993","impliedFormat":1},{"version":"5834a6ecf61bc530334e00f85945eb99e97993f613cc679248f887ed49655956","impliedFormat":1},{"version":"84c3e149acff1456d6f04b3708d653419daf5e10da591d258de89c5bd65b01cb","impliedFormat":1},{"version":"887546fedae72c83dec2b1bac7db8e6909db684e9d947f5c6c8d9d1e19d00069","impliedFormat":1},{"version":"18a7095b7211597f345009e31ae703e6e7f73b0e7f36ecde6918658fc0f56b34","impliedFormat":1},{"version":"c5fa66ed3b75ba9397e09896513e36909e520f0ca5db616c4638431312006a05","impliedFormat":1},{"version":"7d4fcf47f9aac635c3dd1a282885692f47ab103df3eb0a69d7abd8a63761703b","impliedFormat":1},{"version":"aed1587f0816ca6de52b7846aeab2479960fa8a840a9a118fcfa6ef82553655a","impliedFormat":1},{"version":"7343532660c841adba42a2630db2069fd5313003c55717e86fb1260dc2aa11ca","impliedFormat":1},{"version":"88bc232f130eb51046cac11bd90b93708e9cb4421d61f03e94a670080cf2cdb4","impliedFormat":1},{"version":"981577e0a704695644122f3fe3abd418557b1b904cc75180bac153c9f6545ea8","impliedFormat":1},{"version":"92589f3a6fa95c47f7c04e37ec820ca6a16fc9d4f70f100df8c010561cbf7a31","impliedFormat":1},{"version":"0f388a4a2c9468dd9f8c9c3e752724338bf0d1bf2820577040731bd99c0b31af","impliedFormat":1},{"version":"cb6920524a43eb497b3dec8788d03dcae2208346766f59bedfcb38c843350559","impliedFormat":1},{"version":"3b676aec08f0e5318dd3775c58431b6ff01256de6f8ff9b1d84a3f08c958333f","impliedFormat":1},{"version":"c291e6102feec6cdbaf58ef3af1dd890b58843d154df6a4b7029072e31429a14","impliedFormat":1},{"version":"4ca69c69c6a55df2bb4921fdb23e15d7106b7944c84237d9f37a97584608ab77","impliedFormat":1},{"version":"145a21dc3c1a27e2c6848c5032d5658cc89faa22a6a9f0f415727e7e3890dbca","impliedFormat":1},{"version":"4a84b26ea277a82722b013ffc2541fc2f96047b4a12494603ec566567e81a5c2","impliedFormat":1},{"version":"6d438bb7df0e316776f4ba45f2fc0b2c52cc30acfe7b5a2912765dc4f755bad6","impliedFormat":1},{"version":"435abe8acd8b66c5ce27f9af2ed77f3c6eafeb76b732a86987270a2731ef96d9","impliedFormat":1},{"version":"a3c08e6118824e800cdccd3e829b00fb56f035e9521db1d07a76a6fd2a61798b","impliedFormat":1},{"version":"0c840604759149417d4e7517f2ff460e590fc75a4f3e82b34c093cb08bc720c7","impliedFormat":1},{"version":"214d050d401987f2206ce319ddcb397c09afe71d2a3a239e44adb7584318403d","impliedFormat":1},{"version":"63a8387bb9e3c2ef72dcc7914f3505096b7c1e967c4d042b24a51e11d2a217c5","impliedFormat":1},{"version":"957ef341ac3dae53f3152558ba9b802f9b9b7c42c1ccb472928b153322d8cf83","impliedFormat":1},{"version":"4049300c803136436b1fd671ac03e78154319adc6b9761da865ac2e2a1a15748","impliedFormat":1},{"version":"7d57b2a77ffd1b63eccfd29aa67e76a07745e96f894dc9e6df1136a81cb35ae8","impliedFormat":1},{"version":"2830b20410f553e46ec04bc07641b9acd8506824f4e3f10647f3c136fd5ac55f","impliedFormat":1},{"version":"6a4cb6ad5c8c548c1a356aa6356e7bad18a5c6c75ee0b1fafa9b5054054dcce2","impliedFormat":1},{"version":"4afb3e35ff961963d77d53ac71b28b63b28eb4422333478d2738aa44754423f0","impliedFormat":1},{"version":"58307b5d6f502ba508eeee1697ca7a139dfee251f1dfa794a4754667e7f5496e","impliedFormat":1},{"version":"3021099b1f877229ecf8813c792454626ac486393c07bdbd4f3245b8786337e3","impliedFormat":1},{"version":"360454a49e1dc67cebb1bc8bfc9b579ba018185b58046b2dec6d2a42b2579efd","impliedFormat":1},{"version":"a47951d2d534f05ca7eeea4aa5991c8ea6520934e703ac4c6c0a0a9369bc7961","impliedFormat":1},{"version":"1ecebd1a059ba755a7f4d53d1fce1b8ae1e712188ea956d1cf44f4cd8d2ee982","impliedFormat":1},{"version":"0a1b975cae598249c4469cdf3ccaa92b894e9d98bb08ed0075621e1536b4fba4","impliedFormat":1},{"version":"708a8eed61d6a3f3b1f7cca4a8b037486a0e4e2e6410a3fdf6afff7d9bc1d47b","impliedFormat":1},{"version":"f4e341404e687981a01a210f55099a4da41d1b445bae3df456a35b403363d72c","impliedFormat":1},{"version":"94fd51eba8b8c76dbc0aa69300e0f766054f66960e0962b0ffd585454be04ef8","impliedFormat":1},{"version":"b12e8aa70cd34bca6f1b101f7ef3fe7d1db183311ae3209e419083d8624f3a37","impliedFormat":1},{"version":"af20ffa13473ac91eff97e529a7503f5b9c70534bff885c49d3dc9dfef64158b","impliedFormat":1},{"version":"3b79f82209a3cc47b425e0b1be23f393e4cc4ee3f5d7322352ae9b90805f61e5","impliedFormat":1},{"version":"18aa38f08ab16646cff9b723e27333c71edcaf9a04d1bb54968c56e72a47770a","impliedFormat":1},{"version":"701362ba7af695931755102c709a55c7caaf7823b3195fd9930ecc598d997f3d","impliedFormat":1},{"version":"1b22e753d85e47868f314e4d894475f9c57c92a353fc71f58f5aca60c1dcf06b","impliedFormat":1},{"version":"cdfff8eee0ffe2f81973fee9af928fe94b4b438a27bab82749fb040b8436f9fa","impliedFormat":1},{"version":"285f881ea575d53eddf639cad43e0a47992f7a4c618b5c55125e4e5905cd6d86","impliedFormat":1},{"version":"8d26c2c953a6fd0ced4ea03ae62593132b0626b2bcd4228eca1f11a0f2031de0","impliedFormat":1},{"version":"f21d5b927e2ee351055488ef6959e2b15fcf70b41d4ba9194c46858518f16ba5","impliedFormat":1},{"version":"bf92e2bbbe27c481de4b214197950afe40aa7afded53c0ed96de98ad1e9160fe","impliedFormat":1},{"version":"1f56725fd67839c28816127d3e9f8b42d2e2991df52489a58567263f66b1127e","impliedFormat":1},{"version":"185beb7b83e0ee52a56072801ed540c8de1ea4d2e21dae425ceb041fc70ed67d","impliedFormat":1},{"version":"75a163d9737aff45b60e702b7376cbe23cef2c1921e03fb7edd5d67f7d6a26b2","impliedFormat":1},{"version":"5807420c7808dd9eca5b86d88de4a67f7ec55503a61e2772cbdbac9078fef8af","impliedFormat":1},{"version":"294999feb2341fbca015911cc39bcca113a44fabc6422ce18a17159a4d7d096b","impliedFormat":1},{"version":"3344a49db456949e6a8029283d190aed5447b4e0e3db37d5e970540a21ada789","impliedFormat":1},{"version":"0c47eb0ee7a2de98619b52f417c5c18dda840c667d1da971d24e5c3e3c700c8f","impliedFormat":1},{"version":"ea48b3411c1c1ab56644c919deee197775643929663f868b47c8f67a66be3473","impliedFormat":1},{"version":"7c98e54da5c77e16b9908805e97aef7e6619f8c3986d9b5c2ee1520462a5ec66","impliedFormat":1},{"version":"77f818abc65736ba2f7fe75a6db8279e15888b5d066228a9b30a0740d8a8a9e0","impliedFormat":1},{"version":"107b40bb8f487e1f401e7185f2df1e21a8cfea42eaa82ea022c5c390daa3b5a8","impliedFormat":1},{"version":"300b41b500423fa8cc3d63d09e50a6c1aece0b468b1fc77d03a2b959f0b8f539","impliedFormat":1},{"version":"e028c7f4fc37b188cbac3dc01ba4ef77caee010efcba979bc96257680cf81071","impliedFormat":1},{"version":"294031062fb13d5827a8439c4e5613a979df88fbb7beabad65a204e35d5474b0","impliedFormat":1},{"version":"1dbfb9b768ebf90fffe23c7be1e87451999de78e2c2f7a5b02a213bb2dffa2ff","impliedFormat":1},{"version":"4b9ddf4789fda91c3433b5203e5cbaa9e83f0ade11bd6360aa8943a5cd5d8165","impliedFormat":1},{"version":"220ffc8849bc38e25c2c19ba689e760b40c57ae31ca3d510e07b0d2856b702ac","impliedFormat":1},{"version":"e450a4e79acd8b45213cc63182c55f086c439e15ef1d58f597c60581fff77002","impliedFormat":1},{"version":"65d1509fe95ff00c5e7d9569c992ec30891199b7a56b2650e6ec144bbf901e4d","impliedFormat":1},{"version":"bb3e0744a0ec2e4cbec1139764aa61ecee7ca2cd4fdf899ad6b8563c68d54baa","impliedFormat":1},{"version":"cb7d3c99a59a418e7d2b86d8d7328968e6a717dac86486a514fe00a44ce7534d","impliedFormat":1},{"version":"b6a2f3e18328c45e01da7d8c36c10ceeddd219b6e8a104a6d17a63923ce67611","impliedFormat":1},{"version":"3aecd3ad86ce3374c53d503393e2436cc6d82e35c997dc19fadb923c62b27f7a","impliedFormat":1},{"version":"16d0ab6398d20c9c9a8a4bc68aae7d6f11a454f25a22e4e2cebd1e0d60cd35d5","impliedFormat":1},{"version":"a74c59c4bb0b9706763d814758e8c1675b5d891bcbb8d2f94bed6383b7ccea29","impliedFormat":1},{"version":"63ed414406c0dcf9714fdcede884be617bcd56260377112a428a4d5acfb33595","impliedFormat":1},{"version":"8a10226c68c4a7f64619de2bb0e92350ec2eef9a0939593ea636681efe7df377","impliedFormat":1},{"version":"4a15ecee81789f2a21bfe45da29196df8f2ba06f3981f492678f8051ea51d73b","impliedFormat":1},{"version":"9b57f2d22a7a86c721b8de6cfba0483b849afe45453752472241d957c524b23e","signature":"a85f576c57b2c63ce2c88cc6cc29908b6c54962be4e44c67f6c0328fe6d59e15","impliedFormat":99},{"version":"cdd450225837dfc1a18b1b1d6189f193bced03f597cf9de712bea1f74198ee58","signature":"c32e29e134f7079a0fe9bc375014b81c8289595e5c75fe95ff1f85e9d20eeb64","impliedFormat":99},{"version":"0c48124fcb0fe3d2261c624fe3974f0e5a07b680d75b6bc3e7092785e512adf9","signature":"815e801b12e349ad1445c7544eaa8d8bbb1d553e223a9cf5d53cd7011b12a8b2","impliedFormat":99},{"version":"d3f31ac91cd240705c742a961f3a6d10983fa57ea0c97aad7d82eb5c135e99e6","signature":"647519a8826fde67fcc1cdead63be113caea6de6f74b8807256a6990ecc74a43","impliedFormat":99},{"version":"cb7a3ebaf6a28682d592fe8b44d076315063ed2e2016693ed3974c7cebc06793","signature":"d2352fb284c5180e278baa759659934c014dc85e7a3392bb5c5d3bc15e54f634","impliedFormat":99},{"version":"d7f5a8621c24b99cecaaf5351676387ad1ee1bce839e214f3f7d8d2cccad8097","signature":"1cb7181f31f054c8d558cba5beecfb2681901317cda19914246586cffa31cc16","impliedFormat":99},{"version":"8b195acbfb67401f1689ec4bfdad1172c0807a6d5c83a88f097ba259fe188d0f","signature":"0a5fbedcf5a2af3fdb4dbb91cfa1c319356ef4f8acc4608e3038dbc9dfec8b05","impliedFormat":99},{"version":"54d1821ba496bc6d5c1069b8fb4f3942888fe8a046f74612f3bc8ff60b1ce148","signature":"ec185c2cb514cecc72be13e587effd407f13a9905a83f755dcac94ae617d6e5c","impliedFormat":99},{"version":"bd7d96b4c077c7d3778bdf30a9eba2213d5f2e9018cfd762dc1f059104eb1c84","signature":"5c637c04d198afee2492f1856c9d487cb5d61933d5b135ad1fc1f51d9dd50d65","impliedFormat":99},{"version":"d8d28c9f381aa9871476eeac707c5a002123ed6f3af068cd43ff80da835aec3b","signature":"18d528a354b23cd1ee1021ad865f0658b58ebce1e4d95b44c4a0ea5cefcf9c4c","impliedFormat":99},{"version":"400bb49269c73740c04418c3739ddab3675428d51b203fc187c3fbf278511f24","impliedFormat":99},{"version":"1eb85747417ad9f93ba4520fc641430b66bea83a6b7addf52f0316cdccc02e4a","signature":"77ec702bdcf157a2fb395030db779998c1cf0554b9ba0274ab9758d0325f569f","impliedFormat":99},{"version":"02ae6afc67f3e6e2e8a35dd88c07c100c4589df109f01f5a5f41ce5c7856b7b0","signature":"39669eeef5891db9cca75123e3774d4e5fc3cb4c33e8fa4640d3d8e66fc04468","impliedFormat":99},{"version":"3c637fface5ec83a2b8b661e00d0ba39ffb7ec1a20cef92c8c34f668e9c36956","signature":"351c8b87a7ea65e6a17be00ab2d28d059aa4967ff0cf6e222d0d54ecbd0af3fe","impliedFormat":99},{"version":"4f6a59dee491f2c0be06448978d92bf207cb39e791b2507a87bccc4b1abd75d4","signature":"ac8767fcba727aee8a4a75792bf172cde11b93ebbeeffa657b1d5888405f4780","impliedFormat":99},{"version":"2e432d7ca1a643790b6791bd7e7056da2100ef4473cc4d3b7ab695b9a1ff8cd9","signature":"58117cf0b71259a187e04ee808aa454bbf210d4d004c5c51d4ec34cf1111ac47","impliedFormat":99},{"version":"a4adc61e2a455d7bfc74478d7c4417cf0939c5fb498e497e7ee7f7c4dc1ae60c","signature":"1a2cb80ba12101eabf624cf15e8f9bfeff9007a90f6dca67bca24f84fca4b728","impliedFormat":99},{"version":"7a95f93670c85c818a1b0003ee6953bc1f1b658e8c5ac2fc67c48654eba2ee74","signature":"e64f59b327336784b6c46dc7efa0838973e41584dcc65e700fec53b93adc254b","impliedFormat":99},{"version":"077dd3a99a0fddd9a01d1bfd2d336821c732b714b46008a7d03033d39ebbbb3c","signature":"c80d467509ddf88db5e92b93e664ce6a2e2e5059cb95aafe2cc18905bd457d13","impliedFormat":99},{"version":"3d8e88f58f5bced0a45c6c1379cfbe4e6f974518c6649470eae48509831766db","signature":"c7e9a48f776a2897fdea920ceb8bfab732e00bc52c346bdf2fb11216cba14025","impliedFormat":99},{"version":"5488ff34a5fb763a79f53eac4442f2fb97bec816a084549a97b18b89b721ee5f","signature":"4140fffeb09259454d302d5eb115bcbc15fbf5fb6d187339ecfe406aadb9427e","impliedFormat":99},{"version":"6326cb84917be74b4e7c2fa4b46d21e2f9ae9e0d4d31e29466a5a7069914eda5","signature":"c333a3c0a363ee02a049a016c0126c5ffe3b025a56040f10dcc2c7a01c71a6e4","impliedFormat":99},{"version":"45698c4c6a976d4e637cabab9fd1135289aed02d15c5640804c18fce687e7414","signature":"487139409b79b12643d7412d87d7b9f7f0ce2ad3da4cc84ca410f32433b74b6f","impliedFormat":99},{"version":"77dfa474196241109dba649adee0b22ac9946fb84dd10af01a8948c7be9905b1","signature":"1adfdbc9209228c761e056eeb2230f1ea45ee8439ca69ef6f6430872f021797f","impliedFormat":99},{"version":"bf911e466a3c73cadce38517fae537fcc94bb0a534fa65cd08978d42d1300e82","signature":"7a4f3f50061e61b04f04ac3893d360c6edf25974ebb327f5ff3fb460714c7b57","impliedFormat":99},{"version":"3c3057423617d0414b903ba7345a675f7debfafa21c88cde0bf6e8539f0f70d2","signature":"5ac48f0b6ff291f16e1e56165c374e76addd391e328c4bf8f67058699e9f2628","impliedFormat":99},{"version":"b52b0ff59f755eaac8aa1a38bb50d681bdee67622bbedf9ef03f2b5e66418ea9","signature":"9748aef6d24c3820b1a726b5424d8797063c2764d37329be5aeba3e6f038a86e","impliedFormat":99},{"version":"74c8c90abf2b83094b733183a045ffb53ad36a623fb5b732d4a65dc342d2c6b7","signature":"8d8805e00c39ab3e722c898d7741e7e8f8f8c71baeee2d2b30a4f86df2e34741","impliedFormat":99},{"version":"a098f324bf8bbfa865fa85325d1fe161268f17ba8ae707a648f57cc6b4b5abcd","signature":"c5b73dddd553bb822030c99b1d70fe1626a1538176b447f607aaed7076817094","impliedFormat":99},{"version":"7892526602f3e67aeb80b8ad36c5ec5add69fd53976a0c77afcfaa6f49eaf428","signature":"e9fa11bcc7d45393aa5a18f1837c39959389066b1ec7b28298a4906c531d7167","impliedFormat":99},{"version":"397332cbcd5132352b1b6e00aa1a00e2f3d5ad8c902067adf2f75a1448db879b","signature":"7d0247f04891f7fcdda18ebc890567b5f2dd903794430614f514d1d9cd615dc6","impliedFormat":99},{"version":"b457f70e84c629c13a9031c303d2b1c937a7cdca7e4207f173fbebadc1f28acb","signature":"6be0b05a45b839b2d446a4af410438df9a51a35cff4f9bcc9a867911d78ea106","impliedFormat":99},{"version":"3015d2242fd49912075664dcd3ef07e3191a6e6068b04d11b9cbe59e613f2b61","signature":"ee0872fc9b4be2386207666ead2333069e6fa65f22f720982c284a6eec6aa270","impliedFormat":99},{"version":"b2e2ea9b6d81db8454002704be87fa3012a6d70852d3272acca354f9b9d48cba","signature":"25bafd104bbd554d46c7ebc9e0dda23a068fc665e43a84697e158b6dd40781b7","impliedFormat":99},{"version":"a6374ef12aa60bfee6bfec7a84ce987674d7a29efdbfed2c68d201bd620b07c7","signature":"0f083dd5df0bd2a6615353fb1ba94b31454056cff26d9f1592402d2de83fb451","impliedFormat":99},{"version":"40faa7e35187137e9d1eef7fa1c41abae0c6ef28e19c487f475e6bfda2ad3db0","signature":"1b8a08cd74aabf03652debf2eb52b4536b4f89719ce86d8a6600c35ced37d7bf","impliedFormat":99},{"version":"d47ce41c3ff46febbebf839bdd75023ed104eaebd6b5676aa6e1fa57ca684c59","signature":"3353ec82d9ca01dd3304100bb98b57d5dd2f2bdba4853f29b468b3a53f5e62bd","impliedFormat":99},{"version":"561b675f35c2adfe485fd02baa19270daff5db4c3f55e57130fd8e58a2471f67","signature":"74439017d2912bae4707d4870174d95b9674b536e8dd7460193533462720a352","impliedFormat":99},{"version":"f41b381590b88261173c35e8a171a2693ca6e1b4989363478ad6eccc421a4055","signature":"fd1b085a30ef1c0b3bdaab2af91281f11be91e81e4543bc6c59245ef6100a108","impliedFormat":99},{"version":"35a38d9077bb02c81701a16f69b6695ee0ada2b6623281a796534bbde649ae7b","signature":"534af213682ab353eaccb2512b1af7ddd9f8212599ecf8e06c7f443d578853e5","impliedFormat":99},{"version":"c6f20a56a012ca4726c928649297fe061632d38c481e95c457eca517e9416906","signature":"82b0f8f8a30a501e0aa8b6a33c33ece1a44fd7a9b4e52100920be9a90a79ea68","impliedFormat":99},{"version":"f98d369e4cb168830e6b0137f8b1b39b319f037768badd7e44af03b041cd9ddb","signature":"8866601ca691b72adf2fcc55b7a7f60d46e1f1e2ced5145bb0e8f6e3cd83711f","impliedFormat":99},{"version":"dde0c4cdf0cb2aa10146fa6e9215e106e9f26971742f16a34fc071413e3bd0af","signature":"e0ce8511cb607108816f08c629e13dfbc69d3f33db73337f3461d9ea76b8b58c","impliedFormat":99},{"version":"6e13d4800796c2d4e4c0eddc70ae28ef00364f805e3c8d629392679700feb3b5","signature":"bbaa24f5bd8f3fc6e090add210a6f60662b03c808825f2bb3213003b1b005d59","impliedFormat":99},{"version":"33dd8d02896e8c569e18e23ee75383d92472a8dd7f90a3e47905a794bdf7f5e8","signature":"9807b176889175f2925a0d982c51f110b1f4454d3c49351bdede667bd5e9f0ac","impliedFormat":99},{"version":"6e474e85469cb76c04802c1d35f20bb8e1d4f0e44e2d16f0ce57c8d7e457a092","signature":"05afc5354dd87c6f5fef179e9570350258f23686528f8f93e23b05eefacf0db4","impliedFormat":99},{"version":"688cb04aeabd93bb4683460f0264ee16ed9c8c79e7cc4ddb815f5d2e0d15d70c","signature":"3060e0771bfc3042a4e01209da6ddcf92723b792ed983ffa197bbaa0a58f67f7","impliedFormat":99},{"version":"48ed9e844a17ab0f449b746d4a4000c2bc1fb7e1adf81090b874158736f96a92","signature":"6578b1f87e857ab865e92096a741cb9da8e2ddad2b5e50718fec561d76eb32e7","impliedFormat":99},{"version":"141445f658e815e75b76e741a131f7e5d1e6e701f07c5daadd356d3c13069444","signature":"7ecd300bee26e1a1f3561ada7119199f940089db1d86e94faedcba001bb81677","impliedFormat":99},{"version":"5a736f06bc89016a9403b67c6e56d6353da9c2b67ad835c49a91a8c0c7aad9e1","signature":"de6bc75fb10baa9a1243410daa31e6c8bc2efee20f3f74db83749f66190e81c5","impliedFormat":99},{"version":"f7da73824b4a8fa4c92dc4a53fa97922be1c817e0665f4971d968ee14951ed9a","signature":"2099487327e7312d8d80ea41b138202331c57283e490c55f4efbbe0a454fb76d","impliedFormat":99},{"version":"57dd53549f83159fc95c6c67f91942e7ba334628f67daf068cd73d259517c2bd","signature":"ae79db00d9c17d52eb8abfba9cd02741e75d00b2f7c41301b8483335a8e1847e","impliedFormat":99},{"version":"70f5d7cc2cc9c437b05f1a0dc9a44e9332f6c0a72c9e25dcc4600c267c7d8ab3","signature":"3af0312344961aa87cae6e7a9e5c70a22f4184021b0f2e5c93420b0aea9ed759","impliedFormat":99},{"version":"c49f5dcc262f24660df60fbb1b7b9cd8cf341ef4ca487ef7728a3b85930cb226","signature":"d790836cef1ea79b96f3122c807a38e7f1f457f457c1ea4882c5189006a80b1c","impliedFormat":99},{"version":"ef0d46aaf66b8ad75f3b3ff6c59463424386cf165fa1bd4c4cb2f017d0b20d80","signature":"60adf4f94f72f7f80c0d26ae41d3b49a7368f925d730315ff0f916bd12ecb2b3","impliedFormat":99},{"version":"87b638de8498405bb94a2db9618893f5b28b62a06f0d765ae3f589d307f4ba88","signature":"fdf2710fcc7ee50d5e7224dd609d0d89f3ec7fdcfd9e038229561ace3f78af1b","impliedFormat":99},{"version":"42792e06b5ebc6907f5d660fa413cbd30da24e3b4334bdcafeb80661b6b0379d","signature":"cc6772661ddfbc308bf4b4f810630dbe7e2f0e848a907c6b8db791071a7cafd2","impliedFormat":99},{"version":"0e5649c3588f11e1b6ba53c1abc5591ff097825558c64228a43a285d460db659","signature":"babda1bfcdd0d74ec62ef3912a76dfa222f9a6cbf279ef9ac6d48d9f6ea67532","impliedFormat":99},{"version":"a7584e7c42d7fbcccffb56b0671fdfa687bedde661d008fcddded1d4841df666","signature":"e0f48ee54ca607e4261e0e7119a15a5d8f97840b4c8c85df272084c2f5899d21","impliedFormat":99},{"version":"15e52db00cdbe969db299533cf4cb93b652c0b1ba166e1dd2ed6530fd5a602bd","signature":"584ed3a0c2a7c9fd986c2be3a477452e7a2388c098e8f8215dd56b615ec1a6b1","impliedFormat":99},{"version":"8e840687f52a24da97977c1077d4bcee94fc801eeffa0708c3200f8ac91282fc","signature":"f4c9fffd7442435aab775f617f8d1dfa296242e4e01f11e8ad07ac15ca7280bb","impliedFormat":99},{"version":"8a0330707bca1ab468187d5e2c3e79eae75ec7d62607ccea6628f886361724b1","signature":"7a4a7ad8fcd531664801a41fdba92cbba93a2c40c1d46521bf7fcab7dc18975c","impliedFormat":99},{"version":"7b43185ec814a33e0bee53b1bd7147a8ea58fb125f21f759c537626ccad901de","signature":"45849d9664943d3f11c73aa1cdc33250f9d6318fa12f9988a9c78bf5bfd4fce3","impliedFormat":99},{"version":"d906bab2a475ccebabc143fa604fd8f8215bfd1b3b92c5b4784c50498f82d9ab","signature":"e65b54f6bcf1a58c4a2c0ee31a6bbfaff1c8080f323623b351a086a94731393f","impliedFormat":99},{"version":"b69e158fff46c1285639ca2298e1f068d744655ad60dc6761730a8138d12af94","signature":"783c6da1dc154f74919f2afe7c6e31d48417d538189d3550f9b1064891b350a2","impliedFormat":99},{"version":"b49b3dcbde47e81f90ed35f909364f94fa55a5d2203acf76bbef06d9dd1a7ecf","signature":"862d74c51b8e3254cabb942372c84b80114ae257927233e2dfbe6c0f0293cc97","impliedFormat":99},{"version":"d4361d2af6cd5001f26e797a8d3dd608610e981808067d8fd627cd6fb537b23f","signature":"999e653cc35dc72b406fada42e06c4fda37f08ac9e9439136f84bdfc8c149324","impliedFormat":99},{"version":"05e7fc46ffb145003e706363126496b37af2546aa10ae0d99f5c5749c54aaef4","signature":"99d8afa6c7e46113c12e74c80d983662db6f1c1021860f08592fb7296509bf11","impliedFormat":99},{"version":"2b6cc2abb61e50490e01b0aef7a6b646a7a0009163371624a4896a86d9ad2189","signature":"f122fa833269eae77dea73cce1b758243a49fcab3d2180a078b40f8c5217f43c","impliedFormat":99},{"version":"4c949f266f64d62480a457f7a683d064e3834d3da0ec4e7d86bd0c0d138f7ff0","signature":"1987bfbe9db5b1ce70e3eec40057915b8de540953899a006e5b28e6daaee510b","impliedFormat":99},{"version":"1732684150dc79019a14a41274eadcadeec395d7a749d5cfc8f9e833d49fc32d","signature":"f38cb71adf43c8de7df476398663c4d410052ee9dc319d8abe32a2e332888560","impliedFormat":99},{"version":"e623dc65330af91dbc79c492c120ce75b49821fa9bfd4329690441aa1a4c609a","signature":"4a75eb45e9f97fd838fbc26baa16b3d209991cfcf939fec5211c0495da68ac5e","impliedFormat":99},{"version":"16adaace942c17cf18e78ccf76fef8cebf0a60134612613a5ea0b0db5cf1126a","signature":"ae9d5c6d675a8465062b54ec2417006a22abb5eea2ae33d6697cc2a52764efdb","impliedFormat":99},{"version":"830b53755638b4ce45990fc81b97eaf1de3303dfa84f17bf4b62e975a6087d17","signature":"5fbcdedd650c2dd76f337746e23216f835c65d7acdb5c81cd96625d90a80b238","impliedFormat":99},{"version":"de027a00ccb6ecabc775e215e5cd8ceee5dd9f4133872506a8dec3c9b164951c","signature":"490e328bbbc1a3368e9ccf047dc336bdb106bf818044e56d8a90f0d917b31ccb","impliedFormat":99},{"version":"1edf16b1788f1b54141a3eac6428e4ebf968a32df58297605582eec631a9be8a","signature":"14d3257fdeab258942a4716b92177151518f0326dd35db30a5b48685e9264084","impliedFormat":99},{"version":"5a71a4ff8b739f561abd03274812f5a3b48063af2545bd76e9b1e5415e124803","signature":"d7d3932784b1436be333bcc59e78de53c4b144bcb23a2607667eeb02b3205eec","impliedFormat":99},{"version":"3f2335cca4cdfd6fde69771bdba9d522542fb4c477b3cd1fff911ceb7783d1ea","impliedFormat":1},{"version":"758ef23e839de64ab5a1449d2000f6fc5794588b42fe84df6c0840d76c8970d0","signature":"c57e1ce1da8f7456170d7888e00a377823deb91466b90891a40c287a34dc6e37","impliedFormat":99},{"version":"17da9f04998356cc7da5dcef4e9c7087ccdc7f36e4b3a067f2845b1b1403de9c","signature":"c437a48ba243bd973ba59f0fc22974bd1d34d31848e84b8df05dfa3b537a0926","impliedFormat":99},{"version":"48006c3ef9ba5cc435e7c29de29fb853b93240656b0f00f49ac60d63c0bb3c78","signature":"1985e4a8cf8c88b7deb27eec84fe039b2d5ef3f719f001c12b24cf7ecdc1eb7b","impliedFormat":99},{"version":"f6cc55eef77840970f068f98d6fb8ba8ff92a0b23f8d66b73ee6c9dec4657a55","signature":"a8a180082f4bacb3d9b67f4e8a02186ef6f41f78c0f4fecd4f9271a60c38db3a","impliedFormat":99},{"version":"ccecad2089012a25d9e1c51a3bf9cda94785b5ade56798dc44a72f84a198efd5","signature":"a59197d2cf6825b01a732e8722fb187fb3a0dca486c2e9f7959cefbfde4be93f","impliedFormat":99},{"version":"ca2f7333e416d15cce254c1734669c012ea0358b608e1c551d031cc198c664f5","signature":"bb75c94be3f218b712594ab58c211b694abc7019b042015703d3e4ba406d31d9","impliedFormat":99},{"version":"397112667152bdf5be02fa3d714d497dac8968d4e49a45d5fd79ee2a7f29c5c5","signature":"f0e14ed9525878b8939f8d2b84acdd392d4eaaf70623d4729c26d8964820db51","impliedFormat":99},{"version":"0254e59c10b1a816f9bf36909cfe8672bde013797f1a952f3ceebb9f98404167","impliedFormat":1},{"version":"b383c2ccd256301f174292e83d7884fabc4acac644eaa472b3e0f28599f3dcbb","impliedFormat":1},{"version":"deea0e953646280bde714399505586156f7df313b31bdec3020e8093d447557e","impliedFormat":1},{"version":"836812cdc975872a2e9f3b9067c307ae2d8ddf5771b764c000dabc12a330691b","impliedFormat":1},{"version":"14eb21a2914faa2591220878e73c05cc45e4333dd53d0ca2e15e54cb1d3c639e","impliedFormat":1},{"version":"fee5b20d0c7ca363e3df8bdc41e8cf528a096461df83773c00690b89ab0e8e84","impliedFormat":1},{"version":"f122ede52f7f29ee1543df529cfa6c51ffecd1583ea9d83908b8dda532101c48","impliedFormat":1},{"version":"b995a0024f0f479a144d671ee87c92a990543d5831f293cf48252ebb5eeb3f28","impliedFormat":1},{"version":"8654a12400e1ac5a254dc8535528533c991b51de2afa1466cd82a9725c211f3a","impliedFormat":1},{"version":"1a4a275667630b34232c669f245dc1a4c2b61ebce20af49c3a7279518fe3d62c","impliedFormat":1},{"version":"56415bf743179e6011a377304f5ee6da6420438fc6fcfee03d70aa6b34f09034","impliedFormat":1},{"version":"0be401ce1c0b6e68383dd813abcea430d547db5fb179675c6590be9bd9f862d4","impliedFormat":1},{"version":"e7fbdf938808931fa6d2f8f16d1755ceb35d61234ff3fde2fe68569691091636","impliedFormat":1},{"version":"a407b354d5dc9211a783b64cbacd8c6e04118e129d9c035b06859ff08d6765f2","impliedFormat":1},{"version":"0260676567e0d0b295b2eecbea450989982744adb97336ac819f084cedf1fa74","impliedFormat":1},{"version":"9cc12654c2c98bfc145d85a9543c9620f26fe1f6f556263541a81e5dd604fb5b","impliedFormat":1},{"version":"8e81fd612c681ebe45c0c0038ea6b9ef165b1a0050ee802790a890ba7b0b90f2","impliedFormat":1},{"version":"fe0fd4531329dce00a090c24ac058b8e98ffca5c743737b69fd325f5a64672ca","impliedFormat":1},{"version":"70344e78c9a955d7f9fe5a7fb65f65e7b186940ee3d8a2e1aa87a47dbbbdb785","impliedFormat":1},{"version":"fedcbd6eabc2c1b9a394dbb4e028c1641fbc45c7adbcc0c75144098a4b390ff4","impliedFormat":1},{"version":"525f24e31245715de236d3167394a5b021939a7641911c54a5bb5c06e49bd905","impliedFormat":1},{"version":"ab541e9ead8e2f7772ae6570797b5f870b89cc80994149065c948c8f20ba8303","impliedFormat":1},{"version":"38150fbfbf0fc9694abb2c766cc77fef3bda5d964ae4e5714534ef83dc33666e","impliedFormat":1},{"version":"b96a687ece2a207c0008c6bfd85166f11532978acced6179050fed7fa5daf4da","impliedFormat":1},{"version":"9f5a4229b778fbfeda29010739e1c32f52de5219510535f4df5c0879b34dc4b4","impliedFormat":1},{"version":"5604842dd16f2c3cb693024182469a947de580c450212ecfc7faa7ba230a50e7","impliedFormat":1},{"version":"0e25e4da82204e0abcc24cf6a203e04547f22eed70e41e4fd332f76070d41ad8","impliedFormat":1},{"version":"9d605611469213aaaa28e53577fb95c28341fffe64d63046ab2fb4af54e6c794","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"49a5a44f2e68241a1d2bd9ec894535797998841c09729e506a7cbfcaa40f2180","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"1ca84b44ad1d8e4576f24904d8b95dd23b94ea67e1575f89614ac90062fc67f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d586db0a09a9495ebb5dece28f54df9684bfbd6e1f568426ca153126dac4a40","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","impliedFormat":1},{"version":"84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"2bf469abae4cc9c0f340d4e05d9d26e37f936f9c8ca8f007a6534f109dcc77e4","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","impliedFormat":1},{"version":"b5895e6353a5d708f55d8685c38a235c3a6d8138e374dee8ceb8ffde5aa8002a","impliedFormat":1},{"version":"54c4f21f578864961efc94e8f42bc893a53509e886370ec7dd602e0151b9266c","impliedFormat":1},{"version":"de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"0dbcebe2126d03936c70545e96a6e41007cf065be38a1ce4d32a39fcedefead4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"461e54289e6287e8494a0178ba18182acce51a02bca8dea219149bf2cf96f105","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true,"impliedFormat":1},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"e56eb632f0281c9f8210eb8c86cc4839a427a4ffffcfd2a5e40b956050b3e042","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"cac793cc47c29e26e4ac3601dcb00b4435ebed26203485790e44f2ad8b6ad847","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"aa5524e0509c2168c9493604acf51ef97d2027f03f3b38da097802d3aa719dc8","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"d072cb61b086eeae042c45d85ea553a03b123d3e27dbac911faa1a695f5d6752","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"299fd0c281633d8dbfbe5f44c5f2850fe37392da6fd3b9cca3cb4e10cda16432","impliedFormat":1},{"version":"286f20f2289ec516bf93f9f9ff6790047977e326d450db182ba5a29020396008","impliedFormat":1},{"version":"f69218eb2ded0781c6457b49361d091770c6a136c0905d4b6e7474913e1e9a34","impliedFormat":1},{"version":"a7c6c8dea6a9ee0f5d3ba00625972c23b000ea5935689ce4f266eb5cea99cedf","impliedFormat":1},{"version":"6d1dd5c9f554a6bd35c501b5aadb225aef342921e32f2144dfef7af546f1739d","impliedFormat":1},{"version":"24087b5433affbe3336c5fa08aa3b3278c823661b9af573f44267a6012337593","impliedFormat":1},{"version":"b0934f5f9f50134078a4055178d139ca3cafacbe3e5624d5ff1de1c4fe4af35a","impliedFormat":1},{"version":"70ba20b010b402f1b536c5298232b1db47e4a50700c44e8130551d8ef6ecc17f","impliedFormat":1},{"version":"488a9c24e256c90067c427ce41fd371e0213ffb2771deac65434a348d8f88a07","impliedFormat":1},{"version":"f83c5d4e73d43714daaf597119170b65afd10a46e1f343cd109bd517b65963f1","impliedFormat":1},{"version":"db19ef667563291392f44218a6b2f167bc06db64022acc138952c3036445c55c","impliedFormat":1},{"version":"909395ffd40d5fb648d3737713ecbda4cf264d2d8e04b30ff3f5292e257e52d3","impliedFormat":1},{"version":"30c4b3b5bfac4da83ff9e9b9f69fa67c7060f8f4d7d59ae495cb35060f0e253e","impliedFormat":1},{"version":"cf72eb929f290bacf74339a050b0aba5631b743c8de0ae3e924a9e55a36d16cd","impliedFormat":1},{"version":"6a37168e02b676b194bdb741b2babbc6f61dff1314aed91aa3789ad91e75b437","impliedFormat":1},{"version":"456380ca94afbfecd5d872ffdc77b2653628eb3a25a7a3cde255b7428d811abe","impliedFormat":1},{"version":"795f95d066aa720ed7de6e077d9be2a7fb12e5ee91c9c40cc8da9eb9926feea3","impliedFormat":1},{"version":"a211c228aaf8d7355a45408686a02d969768cc86b751f26d081284674613a95b","impliedFormat":1},{"version":"8c57d40ed9709fd63e31a68959376a731b510021e9adc40f7c219c61ad8b9806","impliedFormat":1},{"version":"0f940447f3008f079b4aabb96b962cd340377cddcb4f42220fa6cadc23c4d232","impliedFormat":1},{"version":"c6c5b9506d0376d0738ce3fa8fa50ca245997ace1655527ff218a37ed1256907","impliedFormat":1},{"version":"92b9c68be1b85e95544499edd3656f7387958a95cd710071a0be493e3c777b7c","impliedFormat":1},{"version":"8daf52daac7e0413830d73b556d6b79de30d00cac2779a68a75a3aa5440a2dfd","impliedFormat":1},{"version":"4562edf0a0426f9a8227b4d6f5fed16b0e135ddb65ba7adcc287b3ed5a2cd079","impliedFormat":1},{"version":"b0923ec32114fed98544eee4a342d6991a272e9d1f2a35e65cf8bfe5be4601ba","impliedFormat":1},{"version":"a0c6d6d383601eba2963be60f67570dab436eacf3e2bf0ca44ea0d09f9733a36","impliedFormat":1},{"version":"2d2ef1d4f5efc80b405bdf4c15c7fcb76edd04620895218615212ceb3fb06e0a","impliedFormat":1},{"version":"a7afb95ffe62b2c14804c079038e4aa5a0555ddbc4fe01633705d0809f976f1c","impliedFormat":1},{"version":"4a9a138d0186e10999ac6b4f4376ddfca00671234f3de9f91b1970e35436393a","impliedFormat":1},{"version":"1e4880ef4c505451301424d80535c3b2095b251dad2665f6726fb8e85e7ebcf5","impliedFormat":1},{"version":"5d83b30f0d163384acec2b880d8047e6c310988dbd2daa038620ac3b4e1233ba","impliedFormat":1},{"version":"a7d16afaa9ddf842aff3c5d93af013273f4266bea884c9436d4a9e2d7c4c5526","impliedFormat":1},{"version":"cede714d3a6799d77ed599467b055ffd9aa70a14d1f8ca3e9dbd9e3aa125ce57","impliedFormat":1},{"version":"d36abd9bde837dd665ac4402cf0622e9e271641e916b00e1656e58a399752555","impliedFormat":1},{"version":"947018964856df13ebd5f666cb017d980ed7025269b94cf8235f616cf8c4d02c","impliedFormat":1},{"version":"73112057f549fdfdf5bc03c76f88e55dca9ed486bf507330ad345654f0060625","impliedFormat":1},{"version":"fceab08e6327681f270f4ea4c30815594ce6600779395098b80fdc6501c91918","impliedFormat":1},{"version":"4371055bb001f40596e2e236b27583e13bf11e75d937962f8947d56519237fb8","impliedFormat":1},{"version":"89189df027e8910200a4b65af1e29a996225cf25975f5c438fbe9361c008fc6b","impliedFormat":1},{"version":"0bddee1c0d45e9fd28798038ba882d41fe1d9b6a6128aec363a78c5f441c624c","impliedFormat":1},{"version":"1b132a58b83368dba24b1dde08b4579b7bf776306335fad640bd2144565e9f6d","signature":"cc37ce5680783944a1a45a4e089c841bb862d709ef2fd4b31134f49047350c6d","impliedFormat":99},{"version":"392070b88cc2e74d2afe47536249ba02d87786bf253226e8b56a6f11c91d8c5e","signature":"9c1590a866f93c8f23b9f284dec26cdc43ca5413b9fb58b1d54fba51f427e6e1","impliedFormat":99},{"version":"d29a4a963b4194d44fe14d9b1fc60c857df0394b48c4faee83d805f245b67ce3","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"42b9dcf62956849f62236039932fba2d9b3be5ff1dacb8e125fcc3d3874a00fc","signature":"f150e02298ab2779046a4880fc0b52c38a59295c7caed03af454f9dd46a59baf","impliedFormat":99},{"version":"666335b24fa38e409f0a3a86f340e3c559e1b8c3d8c8f426f5f1ae682400f5dc","signature":"fcb008c14e1eb1059b92dea62a9ab8b6502c9456037ba49a1c9264579990f372","impliedFormat":99},{"version":"796553b9cb3878baa3bf08806c87d0283f58c26fc85c6562b4e8c9b697bfdeb2","signature":"3d9a1a2f48f304800beee8f0765459d14abe3268b8baf7f5bb5702bad0cc1826","impliedFormat":99},{"version":"7d3fc29786a34e83f54e8e4620735d1a25ebbe323970b7d83ebeff34882ec1c9","signature":"9eafa5d3a14e08b2fcbfcb9744e51f7dacc21e4f062c3faa86b9829161ba8a0a","impliedFormat":99},{"version":"5ff71f041b0edda52040317b3458309a4878f5bc60a123d19b7d1cd3abc14d53","signature":"abdc1aa713ce433732a6f72e06e96c97ddc21dc499162d5080375d662b938db1","impliedFormat":99},{"version":"4b0dcbbe864acd86c1aa30e1fb1a40f8ae04ecdf1109e3cacc19e365563ad7ed","signature":"0186d5c72ecdcd7eee164604531abd64dcc2053cec21c9769c3698fa1501b318","impliedFormat":99},{"version":"52b156945dfe78a812b7f67c9d4c204ee49819be813d7ecf1ece6cdcc5ab9b9a","signature":"ab2f1b20487aca49a8007234cfd973a4ad5bf0c329c39efcd5baf2be1e22c084","impliedFormat":99},{"version":"a636cdb12a1e4a60109e8be7702f89f73ef11e4d324015ac32715a7010ccf904","signature":"838b5abcbaea518a83aa044a4435134c41aad3e89a02f3bcd9f2ada94d6c4b19","impliedFormat":99},{"version":"35b23ec6feff3f481257757343d2f134cfa19de17d35b923c85558c25c67ff00","signature":"38fe4651fed29e7e071826c4b83dcddec970df4bdd9a7bba8fe0b3f244c3abdb","impliedFormat":99},{"version":"1a91740217055b3f32425871260f5d126e37862b6d54dac1beee617f301a8f35","signature":"8e2ed7e1b59fa6c8b9b4254dc585ab0312de4b50ee706ca9c1a9df5e70ed2ff0","impliedFormat":99},{"version":"b3509f5d827b6f9a5b326282851b05e0744b22e21077461c1b13d47588aa6a6d","signature":"76e8a5914691251aeddaffa80e1cd1dc4f80009e3df27564c8284616360871b8","impliedFormat":99},{"version":"7c465e3bcb18122407e12e765e1ac7cc12c7c61deb79b20fd7630afa73dbde31","signature":"1c3e3d024d45e4fc77ff94c23bef52f48b0007a3b4c244dddf74b50c866d4722","impliedFormat":99},{"version":"b1ea4a31fa986cce51229ce44b78dadb9143e736f2ee8c549faee4ee3b6291cc","signature":"12511fdb2c101c48e50c04097c501c96317c0bbd32dc262da610c0925f4481d7","impliedFormat":99},{"version":"a6faf16f5aa71234534b7be9e99ce7672e5b14493a05c1486fd9323f76b6daf0","signature":"883ebedfc9eb9ec06d505d8933d4709b469c21291d98a23f6d5dfc02a55c2c9d","impliedFormat":99},{"version":"45f7f81af359cb5b3cb601504ff50e7c90958df2cb70b30012b22db1bda4c0d0","signature":"c1593ff9f1db76769d0ae6d6e509dd0cd77fb482bce19a84333de176988bf616","impliedFormat":99},{"version":"d3e9dd8207a4fbc4dca89b355051c575650bf983ebf059b3120651406a09399d","signature":"06c7a26cd63e20a37855cc66834583b82864f7c6f7340b7b635c966ed4e92e4a","impliedFormat":99}],"root":[[377,386],[388,453],[455,461],[665,683]],"options":{"allowJs":false,"checkJs":false,"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"emitDecoratorMetadata":true,"esModuleInterop":false,"exactOptionalPropertyTypes":false,"experimentalDecorators":true,"module":199,"noEmitOnError":false,"noErrorTruncation":false,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":false,"noImplicitThis":true,"noUncheckedIndexedAccess":false,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"../dist","removeComments":false,"rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"stripInternal":true,"target":9,"tsBuildInfoFile":"./build.tsbuildinfo"},"referencedMap":[[454,1],[646,2],[652,3],[654,4],[651,5],[661,6],[466,7],[478,8],[479,9],[626,10],[632,11],[642,12],[643,13],[645,14],[647,15],[648,16],[650,17],[653,18],[655,19],[656,20],[657,21],[658,22],[660,23],[463,24],[464,25],[480,26],[462,27],[627,28],[465,29],[481,30],[640,31],[483,32],[489,33],[488,34],[485,35],[487,36],[486,37],[484,1],[639,38],[631,39],[641,40],[633,41],[638,42],[628,43],[630,44],[644,45],[636,46],[467,47],[649,48],[637,49],[629,50],[468,51],[482,52],[477,53],[476,54],[659,55],[471,56],[469,57],[470,58],[475,59],[472,60],[474,61],[473,62],[387,1],[207,1],[663,63],[664,64],[537,65],[538,65],[539,66],[498,67],[540,68],[541,69],[542,70],[493,1],[496,71],[494,1],[495,1],[543,72],[544,73],[545,74],[546,75],[547,76],[548,77],[549,77],[551,1],[550,78],[552,79],[553,80],[554,81],[536,82],[497,1],[555,83],[556,84],[557,85],[589,86],[558,87],[559,88],[560,89],[561,90],[562,91],[563,92],[564,93],[565,94],[566,95],[567,96],[568,96],[569,97],[570,1],[571,98],[573,99],[572,100],[574,101],[575,102],[576,103],[577,104],[578,105],[579,106],[580,107],[581,108],[582,109],[583,110],[584,111],[585,112],[586,113],[587,114],[588,115],[662,116],[490,1],[312,117],[305,118],[307,119],[313,120],[314,121],[227,122],[243,123],[287,124],[286,125],[209,1],[219,126],[226,127],[233,128],[228,129],[235,130],[234,1],[247,131],[220,132],[260,133],[315,134],[259,135],[250,136],[224,137],[236,138],[225,139],[300,140],[316,141],[303,142],[317,143],[211,144],[208,145],[267,146],[239,147],[223,148],[206,58],[255,149],[318,150],[222,151],[319,150],[257,152],[301,153],[288,154],[320,155],[251,156],[62,145],[321,1],[271,157],[210,1],[229,158],[221,159],[61,160],[376,161],[302,162],[322,163],[323,164],[324,165],[281,166],[326,167],[237,168],[241,169],[230,170],[238,1],[327,171],[289,172],[328,173],[273,174],[329,175],[282,1],[297,176],[290,177],[295,178],[293,179],[292,180],[242,177],[294,181],[330,182],[296,183],[291,184],[331,185],[332,1],[333,186],[334,187],[335,187],[268,188],[252,187],[212,1],[336,120],[218,189],[213,145],[306,147],[309,190],[214,160],[337,191],[215,192],[310,164],[338,1],[272,193],[269,194],[248,195],[339,196],[325,197],[340,198],[261,199],[304,200],[231,201],[341,202],[262,203],[342,1],[343,204],[244,205],[299,206],[298,207],[344,208],[258,209],[246,210],[245,211],[266,212],[265,213],[263,214],[264,215],[256,216],[311,217],[308,218],[240,219],[345,220],[346,221],[232,222],[283,223],[274,224],[347,225],[253,226],[277,227],[280,228],[348,229],[275,230],[276,1],[349,231],[350,232],[351,233],[353,234],[254,235],[354,236],[352,237],[270,238],[355,239],[356,240],[365,241],[366,242],[367,243],[369,244],[370,245],[373,246],[368,247],[372,248],[371,249],[357,250],[358,251],[279,252],[278,253],[249,254],[359,255],[360,256],[361,257],[374,258],[362,256],[363,259],[364,260],[375,261],[60,1],[216,1],[284,160],[285,262],[217,192],[99,263],[187,264],[101,1],[145,265],[85,1],[143,266],[180,1],[141,264],[148,267],[102,268],[109,263],[156,269],[110,263],[157,269],[103,263],[198,270],[104,263],[105,263],[199,270],[106,263],[107,263],[111,263],[112,263],[120,263],[179,271],[125,263],[126,263],[116,263],[117,263],[118,263],[119,263],[121,268],[128,272],[123,263],[122,272],[108,263],[124,263],[195,273],[196,274],[113,263],[158,269],[127,263],[100,275],[114,263],[159,269],[155,276],[189,270],[190,270],[188,270],[129,263],[133,263],[134,263],[135,263],[146,277],[150,277],[136,263],[203,263],[137,272],[138,263],[130,263],[131,263],[139,263],[140,263],[132,263],[202,263],[201,263],[144,267],[151,268],[152,268],[153,263],[181,278],[164,263],[197,268],[142,269],[160,269],[200,272],[161,269],[163,263],[165,263],[193,270],[194,270],[191,270],[192,270],[166,263],[115,263],[147,277],[149,277],[162,269],[154,268],[167,263],[168,263],[169,272],[170,272],[171,272],[172,272],[173,272],[174,279],[82,280],[81,1],[176,281],[177,281],[175,1],[178,264],[182,282],[63,1],[83,1],[94,283],[93,284],[84,285],[96,286],[95,284],[92,287],[91,288],[86,1],[87,1],[88,1],[89,289],[90,290],[97,291],[98,292],[186,293],[183,1],[204,294],[205,295],[79,296],[80,1],[184,1],[185,1],[634,1],[635,297],[69,298],[70,1],[71,299],[72,300],[73,300],[74,301],[75,298],[76,298],[65,298],[66,298],[64,1],[68,298],[67,298],[77,302],[78,303],[58,1],[59,1],[10,1],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[22,1],[23,1],[4,1],[24,1],[28,1],[25,1],[26,1],[27,1],[29,1],[30,1],[31,1],[5,1],[32,1],[33,1],[34,1],[35,1],[6,1],[39,1],[36,1],[37,1],[38,1],[40,1],[7,1],[41,1],[46,1],[47,1],[42,1],[43,1],[44,1],[45,1],[8,1],[51,1],[48,1],[49,1],[50,1],[52,1],[9,1],[53,1],[54,1],[55,1],[57,1],[56,1],[1,1],[514,304],[524,305],[513,304],[534,306],[505,307],[504,308],[533,309],[527,310],[532,311],[507,312],[521,313],[506,314],[530,315],[502,316],[501,309],[531,317],[503,318],[508,319],[509,1],[512,319],[499,1],[535,320],[525,321],[516,322],[517,323],[519,324],[515,325],[518,326],[528,309],[510,327],[511,328],[520,329],[500,330],[523,321],[522,319],[526,1],[529,331],[625,332],[603,333],[613,334],[602,333],[623,335],[594,336],[593,308],[622,309],[616,337],[621,338],[596,339],[610,340],[595,341],[619,342],[591,343],[590,309],[620,344],[592,345],[597,346],[598,1],[601,346],[491,1],[624,347],[614,348],[605,349],[606,350],[608,351],[604,352],[607,353],[617,309],[599,354],[600,355],[609,356],[492,330],[612,357],[611,346],[615,1],[618,358],[396,359],[397,360],[398,361],[403,362],[404,363],[405,363],[386,364],[388,365],[406,361],[446,366],[407,363],[408,363],[447,361],[389,367],[378,368],[448,369],[390,369],[399,370],[449,369],[420,369],[379,369],[409,369],[416,369],[380,370],[427,371],[377,361],[423,361],[450,369],[451,372],[452,373],[384,374],[436,375],[455,376],[437,377],[666,378],[665,1],[456,379],[424,374],[453,373],[410,380],[391,381],[425,382],[457,361],[381,370],[422,383],[419,384],[682,385],[458,386],[459,387],[421,388],[411,363],[382,389],[430,390],[439,391],[460,392],[461,361],[683,393],[392,361],[667,394],[385,361],[428,361],[412,361],[413,395],[668,361],[393,396],[394,397],[429,389],[426,389],[669,398],[676,399],[670,382],[431,400],[432,361],[414,375],[673,401],[395,381],[677,361],[433,402],[383,389],[438,403],[671,404],[672,405],[678,406],[400,370],[401,407],[679,408],[444,409],[434,363],[445,382],[435,410],[680,361],[441,411],[681,412],[674,375],[402,379],[440,413],[415,363],[442,361],[417,414],[675,363],[418,363],[443,415]],"latestChangedDtsFile":"../dist/index.d.ts","version":"5.8.3"} \ No newline at end of file diff --git a/packages/evolution/README.md b/packages/evolution/README.md new file mode 100644 index 00000000..674a00cb --- /dev/null +++ b/packages/evolution/README.md @@ -0,0 +1,123 @@ +# Evolution SDK + +## Quick Start + +````typescript +import * as Evolution from "@evolution-sdk/evolution"; + +// Create and validate addresses +const address = Evolution.Address.fromBech32( + "addr1qx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3jcu5d8ps7zex2k2xt3uqxgjqnnj0vs2qd4a8cpkp0k8cqq0sq2nq" +); TypeScript SDK for Cardano blockchain development. + +## Installation + +```bash +pnpm add @evolution-sdk/evolution + +# Or use npm +npm install @evolution-sdk/evolution + +# Or use yarn +yarn add @evolution-sdk/evolution +```` + +## Quick Start + +```typescript +import * as Evolution from "@evolution-sdk/evolution" + +// Create and validate addresses +const address = Evolution.Address.fromBech32( + "addr1qx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3jcu5d8ps7zex2k2xt3uqxgjqnnj0vs2qd4a8cpkp0k8cqq0sq2nq" +) + +// Work with Plutus Data +const Data = Evolution.Data +const Codec = Data.Codec() + +// Create basic data types +const plutusInt = 42n +const plutusBytes = "deadbeef" +const plutusList = [1n, 2n, "cafe"] + +// Create a Plutus Map +const plutusMap = Data.map([ + { key: "cafe", value: 42n }, + { key: 99n, value: "deadbeef" } +]) + +// Create a Constructor (like Haskell data types) +const constructor = Data.constr(0n, [plutusInt, plutusBytes, plutusList]) + +// Encode to CBOR and decode back +const encoded = Codec.Encode.cborHex(constructor) +const decoded = Codec.Decode.cborHex(encoded) + +// Complex nested structures +const complex = Data.constr(0n, [ + [1n, 2n, "cafe"], + Data.map([ + { key: 42n, value: ["deadbeef"] }, + { key: "deadbeef", value: Data.constr(1n, [-999n]) } + ]), + Data.constr(7n, [[], Data.map([])]) +]) +``` + +## Features + +- **Address Management**: Create, validate, and convert Cardano addresses +- **Transaction Utilities**: Build and serialize transactions +- **CBOR Support**: Encode and decode Cardano binary data +- **Type Safety**: Full TypeScript support with comprehensive types +- **Effect Integration**: Leverages Effect for robust error handling + +## API Reference + +### Address + +```typescript +// Create from Bech32 +const address = Evolution.Address.fromBech32("addr1...") + +// Create from hex bytes +const address = Evolution.Address.fromBytes(hexBytes) + +// Get network ID +const networkId = Evolution.Address.getNetworkId(address) +``` + +### Transaction + +```typescript +// Create transaction hash +const hash = Evolution.TransactionHash.fromHex("915cb8...") + +// Create transaction input +const input = Evolution.TransactionInput.make({ + transactionId: hash, + index: 0 +}) +``` + +### DevNet + +```typescript +// Start a development network +const devnet = await Evolution.Devnet.Cluster.makeOrThrow({ + clusterName: "my-devnet", + kupo: { enabled: true }, + ogmios: { enabled: true } +}) + +await Evolution.Devnet.Cluster.startOrThrow(devnet) +``` + +## Documentation + +For full documentation, visit [evolution-sdk.dev](https://evolution-sdk.dev). + +## License + +MIT diff --git a/packages/evolution/docgen.json b/packages/evolution/docgen.json new file mode 100644 index 00000000..e151203d --- /dev/null +++ b/packages/evolution/docgen.json @@ -0,0 +1,19 @@ +{ + "theme": "mikearnaldi/docgen-template", + "srcDir": "src", + "outDir": "docs", + "examplesDir": "examples", + "parseReadme": true, + "enableSearch": true, + "enforceDescriptions": false, + "enforceExamples": false, + "enforceVersion": false, + "enforceExports": false, + "skipExamplesValidation": true, + "skipModulesValidation": true, + "exclude": ["**/*.test.ts", "**/*.spec.ts", "**/test/**", "**/tests/**", "**/internal/**", "**/index.ts"], + "projectHomepage": "https://github.com/no-witness-labs/evolution-sdk", + "docsHomepage": "TBD", + "projectName": "Evolution SDK", + "packageName": "@evolution-sdk/evolution" +} diff --git a/packages/evolution/docs/_config.yml b/packages/evolution/docs/_config.yml new file mode 100644 index 00000000..f3cae7a8 --- /dev/null +++ b/packages/evolution/docs/_config.yml @@ -0,0 +1,9 @@ +remote_theme: mikearnaldi/docgen-template + +# Enable or disable the site search +search_enabled: true + +# Aux links for the upper right navigation +aux_links: +"@evolution-sdk/evolution on GitHub": + - "https://github.com/no-witness-labs/evolution-sdk" diff --git a/packages/evolution/docs/index.md b/packages/evolution/docs/index.md new file mode 100644 index 00000000..d77a4411 --- /dev/null +++ b/packages/evolution/docs/index.md @@ -0,0 +1,4 @@ +--- +title: Home +nav_order: 1 +--- diff --git a/packages/evolution/docs/modules/Address.ts.md b/packages/evolution/docs/modules/Address.ts.md new file mode 100644 index 00000000..5df1d1e7 --- /dev/null +++ b/packages/evolution/docs/modules/Address.ts.md @@ -0,0 +1,367 @@ +--- +title: Address.ts +nav_order: 1 +parent: Modules +--- + +## Address overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [model](#model) + - [Address](#address) + - [Address (type alias)](#address-type-alias) + - [AddressError (class)](#addresserror-class) +- [schema](#schema) + - [FromBech32](#frombech32) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) +- [testing](#testing) + - [generator](#generator) +- [utils](#utils) + - [equals](#equals) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for addresses. + +**Signature** + +```ts +export declare const Codec: { + Encode: { + bech32: ( + input: + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + ) => string & Brand<"Bech32"> + hex: ( + input: + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + ) => string + bytes: ( + input: + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + ) => any + } + Decode: { + bech32: ( + input: string & Brand<"Bech32"> + ) => + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + hex: ( + input: string + ) => + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + bytes: ( + input: any + ) => + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + } + EncodeEffect: { + bech32: ( + input: + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + ) => Effect.Effect, InstanceType> + hex: ( + input: + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + ) => Effect.Effect> + bytes: ( + input: + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + ) => Effect.Effect> + } + DecodeEffect: { + bech32: ( + input: string & Brand<"Bech32"> + ) => Effect.Effect< + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress, + InstanceType + > + hex: ( + input: string + ) => Effect.Effect< + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress, + InstanceType + > + bytes: ( + input: any + ) => Effect.Effect< + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress, + InstanceType + > + } + EncodeEither: { + bech32: ( + input: + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + ) => Either, InstanceType> + hex: ( + input: + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + ) => Either> + bytes: ( + input: + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress + ) => Either> + } + DecodeEither: { + bech32: ( + input: string & Brand<"Bech32"> + ) => Either< + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress, + InstanceType + > + hex: ( + input: string + ) => Either< + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress, + InstanceType + > + bytes: ( + input: any + ) => Either< + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress + | ByronAddress.ByronAddress, + InstanceType + > + } +} +``` + +Added in v2.0.0 + +# model + +## Address + +Union type representing all possible address types. + +**Signature** + +```ts +export declare const Address: Schema.Union< + [ + typeof BaseAddress.BaseAddress, + typeof EnterpriseAddress.EnterpriseAddress, + typeof PointerAddress.PointerAddress, + typeof RewardAccount.RewardAccount, + typeof ByronAddress.ByronAddress + ] +> +``` + +Added in v2.0.0 + +## Address (type alias) + +Type representing an address. + +**Signature** + +```ts +export type Address = typeof Address.Type +``` + +Added in v2.0.0 + +## AddressError (class) + +Error thrown when address operations fail + +**Signature** + +```ts +export declare class AddressError +``` + +Added in v2.0.0 + +# schema + +## FromBech32 + +Schema for encoding/decoding addresses as Bech32 strings. + +**Signature** + +```ts +export declare const FromBech32: Schema.transformOrFail< + Schema.SchemaClass, string & Brand<"Bech32">, never>, + Schema.Union< + [ + typeof BaseAddress.BaseAddress, + typeof EnterpriseAddress.EnterpriseAddress, + typeof PointerAddress.PointerAddress, + typeof RewardAccount.RewardAccount, + typeof ByronAddress.ByronAddress + ] + >, + never +> +``` + +Added in v2.0.0 + +## FromBytes + +Schema for encoding/decoding addresses as bytes. + +**Signature** + +```ts +export declare const FromBytes: Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.Union< + [ + typeof BaseAddress.BaseAddress, + typeof EnterpriseAddress.EnterpriseAddress, + typeof PointerAddress.PointerAddress, + typeof RewardAccount.RewardAccount, + typeof ByronAddress.ByronAddress + ] + >, + never +> +``` + +Added in v2.0.0 + +## FromHex + +Schema for encoding/decoding addresses as hex strings. + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.Union< + [ + typeof BaseAddress.BaseAddress, + typeof EnterpriseAddress.EnterpriseAddress, + typeof PointerAddress.PointerAddress, + typeof RewardAccount.RewardAccount, + typeof ByronAddress.ByronAddress + ] + >, + never + > +> +``` + +Added in v2.0.0 + +# testing + +## generator + +FastCheck generator for addresses. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary< + | RewardAccount.RewardAccount + | BaseAddress.BaseAddress + | EnterpriseAddress.EnterpriseAddress + | PointerAddress.PointerAddress +> +``` + +Added in v2.0.0 + +# utils + +## equals + +Checks if two addresses are equal. + +**Signature** + +```ts +export declare const equals: (a: Address, b: Address) => boolean +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/AddressDetails.ts.md b/packages/evolution/docs/modules/AddressDetails.ts.md new file mode 100644 index 00000000..073a4368 --- /dev/null +++ b/packages/evolution/docs/modules/AddressDetails.ts.md @@ -0,0 +1,96 @@ +--- +title: AddressDetails.ts +nav_order: 2 +parent: Modules +--- + +## AddressDetails overview + +--- + +

Table of contents

+ +- [schemas](#schemas) + - [AddressDetails (class)](#addressdetails-class) +- [utils](#utils) + - [AddressDetailsError (class)](#addressdetailserror-class) + - [Codec](#codec) + - [FromBech32](#frombech32) + - [FromHex](#fromhex) + +--- + +# schemas + +## AddressDetails (class) + +Pointer address with payment credential and pointer to stake registration + +**Signature** + +```ts +export declare class AddressDetails +``` + +Added in v2.0.0 + +# utils + +## AddressDetailsError (class) + +**Signature** + +```ts +export declare class AddressDetailsError +``` + +## Codec + +**Signature** + +```ts +export declare const Codec: { + Encode: { bech32: (input: AddressDetails) => string & Brand<"Bech32">; hex: (input: AddressDetails) => string } + Decode: { bech32: (input: string & Brand<"Bech32">) => AddressDetails; hex: (input: string) => AddressDetails } + EncodeEffect: { + bech32: (input: AddressDetails) => Effect.Effect, InstanceType> + hex: (input: AddressDetails) => Effect.Effect> + } + DecodeEffect: { + bech32: (input: string & Brand<"Bech32">) => Effect.Effect> + hex: (input: string) => Effect.Effect> + } + EncodeEither: { + bech32: (input: AddressDetails) => Either, InstanceType> + hex: (input: AddressDetails) => Either> + } + DecodeEither: { + bech32: (input: string & Brand<"Bech32">) => Either> + hex: (input: string) => Either> + } +} +``` + +## FromBech32 + +**Signature** + +```ts +export declare const FromBech32: Schema.transformOrFail< + Schema.SchemaClass, string & Brand<"Bech32">, never>, + typeof AddressDetails, + never +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transformOrFail< + Schema.refine, + typeof AddressDetails, + never +> +``` diff --git a/packages/evolution/docs/modules/AddressTag.ts.md b/packages/evolution/docs/modules/AddressTag.ts.md new file mode 100644 index 00000000..f161661f --- /dev/null +++ b/packages/evolution/docs/modules/AddressTag.ts.md @@ -0,0 +1,42 @@ +--- +title: AddressTag.ts +nav_order: 3 +parent: Modules +--- + +## AddressTag overview + +--- + +

Table of contents

+ +- [model](#model) + - [AddressTag (type alias)](#addresstag-type-alias) + - [AddressTagError (class)](#addresstagerror-class) + +--- + +# model + +## AddressTag (type alias) + +Address header kind - used to determine the type of address from its header +Following CIP-0019 address types + +**Signature** + +```ts +export type AddressTag = "Base" | "Enterprise" | "Pointer" | "Reward" | "Byron" +``` + +Added in v2.0.0 + +## AddressTagError (class) + +**Signature** + +```ts +export declare class AddressTagError +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/Anchor.ts.md b/packages/evolution/docs/modules/Anchor.ts.md new file mode 100644 index 00000000..a63d8654 --- /dev/null +++ b/packages/evolution/docs/modules/Anchor.ts.md @@ -0,0 +1,202 @@ +--- +title: Anchor.ts +nav_order: 4 +parent: Modules +--- + +## Anchor overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [make](#make) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [AnchorError (class)](#anchorerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [Anchor (class)](#anchor-class) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [FromCDDL](#fromcddl) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## make + +Create an Anchor from a URL string and hash string. + +**Signature** + +```ts +export declare const make: (anchorUrl: string, anchorDataHash: string) => Anchor +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two Anchor instances are equal. + +**Signature** + +```ts +export declare const equals: (self: Anchor, that: Anchor) => boolean +``` + +Added in v2.0.0 + +# errors + +## AnchorError (class) + +Error class for Anchor related operations. + +**Signature** + +```ts +export declare class AnchorError +``` + +Added in v2.0.0 + +# generators + +## generator + +FastCheck generator for Anchor instances. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## Anchor (class) + +Schema for Anchor representing an anchor with URL and data hash. +anchor = [anchor_url: url, anchor_data_hash: Bytes32] + +**Signature** + +```ts +export declare class Anchor +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for Anchor. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for Anchor. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for Anchor as tuple structure. +anchor = [anchor_url: url, anchor_data_hash: Bytes32] + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: Anchor) => any; cborHex: (input: Anchor) => string } + Decode: { cborBytes: (input: any) => Anchor; cborHex: (input: string) => Anchor } + EncodeEffect: { + cborBytes: (input: Anchor) => Effect.Effect> + cborHex: (input: Anchor) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: Anchor) => Either> + cborHex: (input: Anchor) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/packages/evolution/docs/modules/AssetName.ts.md b/packages/evolution/docs/modules/AssetName.ts.md new file mode 100644 index 00000000..9b5d88cd --- /dev/null +++ b/packages/evolution/docs/modules/AssetName.ts.md @@ -0,0 +1,167 @@ +--- +title: AssetName.ts +nav_order: 5 +parent: Modules +--- + +## AssetName overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [AssetNameError (class)](#assetnameerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [AssetName](#assetname) +- [schemas](#schemas) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) +- [utils](#utils) + - [AssetName (type alias)](#assetname-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for AssetName encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"AssetName">) => any; hex: (input: string & Brand<"AssetName">) => string } + Decode: { bytes: (input: any) => string & Brand<"AssetName">; hex: (input: string) => string & Brand<"AssetName"> } + EncodeEffect: { + bytes: (input: string & Brand<"AssetName">) => Effect> + hex: (input: string & Brand<"AssetName">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"AssetName">) => Either> + hex: (input: string & Brand<"AssetName">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two AssetName instances are equal. + +**Signature** + +```ts +export declare const equals: (a: AssetName, b: AssetName) => boolean +``` + +Added in v2.0.0 + +# errors + +## AssetNameError (class) + +Error class for AssetName related operations. + +**Signature** + +```ts +export declare class AssetNameError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random AssetName. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# model + +## AssetName + +Schema for AssetName representing a native asset identifier. +Asset names are limited to 32 bytes (0-64 hex characters). + +**Signature** + +```ts +export declare const AssetName: Schema.brand< + Schema.refine>, + "AssetName" +> +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +Schema for encoding/decoding AssetName as bytes. + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "AssetName"> +> +``` + +Added in v2.0.0 + +## FromHex + +Schema for encoding/decoding AssetName as hex strings. + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "AssetName"> +> +``` + +Added in v2.0.0 + +# utils + +## AssetName (type alias) + +**Signature** + +```ts +export type AssetName = typeof AssetName.Type +``` diff --git a/packages/evolution/docs/modules/AuxiliaryDataHash.ts.md b/packages/evolution/docs/modules/AuxiliaryDataHash.ts.md new file mode 100644 index 00000000..6eeece50 --- /dev/null +++ b/packages/evolution/docs/modules/AuxiliaryDataHash.ts.md @@ -0,0 +1,169 @@ +--- +title: AuxiliaryDataHash.ts +nav_order: 6 +parent: Modules +--- + +## AuxiliaryDataHash overview + +Auxiliary Data Hash module - provides an alias for Bytes32 specialized for auxiliary data hashing. + +In Cardano, auxiliary_data_hash = Bytes32, representing a 32-byte hash +used for auxiliary data (metadata) attached to transactions. + +Added in v2.0.0 + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [AuxiliaryDataHashError (class)](#auxiliarydatahasherror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [AuxiliaryDataHash](#auxiliarydatahash) +- [utils](#utils) + - [AuxiliaryDataHash (type alias)](#auxiliarydatahash-type-alias) + - [BytesSchema](#bytesschema) + - [HexSchema](#hexschema) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for AuxiliaryDataHash encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { + bytes: (input: string & Brand<"AuxiliaryDataHash">) => any + hex: (input: string & Brand<"AuxiliaryDataHash">) => string + } + Decode: { + bytes: (input: any) => string & Brand<"AuxiliaryDataHash"> + hex: (input: string) => string & Brand<"AuxiliaryDataHash"> + } + EncodeEffect: { + bytes: (input: string & Brand<"AuxiliaryDataHash">) => Effect> + hex: (input: string & Brand<"AuxiliaryDataHash">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"AuxiliaryDataHash">) => Either> + hex: (input: string & Brand<"AuxiliaryDataHash">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two AuxiliaryDataHash instances are equal. + +**Signature** + +```ts +export declare const equals: (a: AuxiliaryDataHash, b: AuxiliaryDataHash) => boolean +``` + +Added in v2.0.0 + +# errors + +## AuxiliaryDataHashError (class) + +Error class for AuxiliaryDataHash related operations. + +**Signature** + +```ts +export declare class AuxiliaryDataHashError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random AuxiliaryDataHash. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## AuxiliaryDataHash + +Schema for AuxiliaryDataHash representing auxiliary data hashes. +auxiliary_data_hash = Bytes32 + +**Signature** + +```ts +export declare const AuxiliaryDataHash: Schema.brand< + Schema.refine>, + "AuxiliaryDataHash" +> +``` + +Added in v2.0.0 + +# utils + +## AuxiliaryDataHash (type alias) + +**Signature** + +```ts +export type AuxiliaryDataHash = typeof AuxiliaryDataHash.Type +``` + +## BytesSchema + +**Signature** + +```ts +export declare const BytesSchema: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "AuxiliaryDataHash"> +> +``` + +## HexSchema + +**Signature** + +```ts +export declare const HexSchema: Schema.transform< + Schema.refine>, + Schema.brand>, "AuxiliaryDataHash"> +> +``` diff --git a/packages/evolution/docs/modules/BaseAddress.ts.md b/packages/evolution/docs/modules/BaseAddress.ts.md new file mode 100644 index 00000000..e43a076d --- /dev/null +++ b/packages/evolution/docs/modules/BaseAddress.ts.md @@ -0,0 +1,136 @@ +--- +title: BaseAddress.ts +nav_order: 7 +parent: Modules +--- + +## BaseAddress overview + +--- + +

Table of contents

+ +- [equality](#equality) + - [equals](#equals) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [BaseAddress (class)](#baseaddress-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) +- [utils](#utils) + - [BaseAddressError (class)](#baseaddresserror-class) + - [Codec](#codec) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + +--- + +# equality + +## equals + +Check if two BaseAddress instances are equal. + +**Signature** + +```ts +export declare const equals: (a: BaseAddress, b: BaseAddress) => boolean +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random BaseAddress. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# schemas + +## BaseAddress (class) + +Base address with both payment and staking credentials + +**Signature** + +```ts +export declare class BaseAddress +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +# utils + +## BaseAddressError (class) + +**Signature** + +```ts +export declare class BaseAddressError +``` + +## Codec + +**Signature** + +```ts +export declare const Codec: { + Encode: { hex: (input: BaseAddress) => string; bytes: (input: BaseAddress) => any } + Decode: { hex: (input: string) => BaseAddress; bytes: (input: any) => BaseAddress } + EncodeEffect: { + hex: (input: BaseAddress) => Effect.Effect> + bytes: (input: BaseAddress) => Effect.Effect> + } + DecodeEffect: { + hex: (input: string) => Effect.Effect> + bytes: (input: any) => Effect.Effect> + } + EncodeEither: { + hex: (input: BaseAddress) => Either> + bytes: (input: BaseAddress) => Either> + } + DecodeEither: { + hex: (input: string) => Either> + bytes: (input: any) => Either> + } +} +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transformOrFail< + Schema.filter, + typeof BaseAddress, + never +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transformOrFail, typeof BaseAddress, never> +> +``` diff --git a/packages/evolution/docs/modules/Bech32.ts.md b/packages/evolution/docs/modules/Bech32.ts.md new file mode 100644 index 00000000..2c27e1c7 --- /dev/null +++ b/packages/evolution/docs/modules/Bech32.ts.md @@ -0,0 +1,60 @@ +--- +title: Bech32.ts +nav_order: 8 +parent: Modules +--- + +## Bech32 overview + +--- + +

Table of contents

+ +- [model](#model) + - [Bech32Error (class)](#bech32error-class) +- [utils](#utils) + - [Bech32 (type alias)](#bech32-type-alias) + - [Bech32Schema](#bech32schema) + - [FromBytes](#frombytes) + +--- + +# model + +## Bech32Error (class) + +**Signature** + +```ts +export declare class Bech32Error +``` + +Added in v2.0.0 + +# utils + +## Bech32 (type alias) + +**Signature** + +```ts +export type Bech32 = typeof Bech32Schema.Type +``` + +## Bech32Schema + +**Signature** + +```ts +export declare const Bech32Schema: Schema.brand +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: ( + prefix?: string +) => Schema.transformOrFail, never> +``` diff --git a/packages/evolution/docs/modules/BigInt.ts.md b/packages/evolution/docs/modules/BigInt.ts.md new file mode 100644 index 00000000..b08f3e79 --- /dev/null +++ b/packages/evolution/docs/modules/BigInt.ts.md @@ -0,0 +1,187 @@ +--- +title: BigInt.ts +nav_order: 9 +parent: Modules +--- + +## BigInt overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [bigNInt](#bignint) + - [bigUInt](#biguint) + - [int](#int) +- [errors](#errors) + - [BigIntError (class)](#biginterror-class) +- [model](#model) + - [BigInt (type alias)](#bigint-type-alias) + - [BigNInt (type alias)](#bignint-type-alias) + - [BigUInt (type alias)](#biguint-type-alias) +- [schemas](#schemas) + - [BigIntSchema](#bigintschema) + - [BigNIntSchema](#bignintschema) + - [BigUIntSchema](#biguintschema) +- [utilities](#utilities) + - [match](#match) + +--- + +# constructors + +## bigNInt + +Creates a big negative integer from bytes + +**Signature** + +```ts +export declare const bigNInt: (bytes: Uint8Array) => BigInt +``` + +Added in v2.0.0 + +## bigUInt + +Creates a big unsigned integer from bytes + +**Signature** + +```ts +export declare const bigUInt: (bytes: Uint8Array) => BigInt +``` + +Added in v2.0.0 + +## int + +Creates an integer value + +**Signature** + +```ts +export declare const int: (value: number) => BigInt +``` + +Added in v2.0.0 + +# errors + +## BigIntError (class) + +Error class for BigInt related operations. + +**Signature** + +```ts +export declare class BigIntError +``` + +Added in v2.0.0 + +# model + +## BigInt (type alias) + +Type alias for BigInt. + +**Signature** + +```ts +export type BigInt = typeof BigIntSchema.Type +``` + +Added in v2.0.0 + +## BigNInt (type alias) + +Type alias for BigNInt. + +**Signature** + +```ts +export type BigNInt = typeof BigNIntSchema.Type +``` + +Added in v2.0.0 + +## BigUInt (type alias) + +Type alias for BigUInt. + +**Signature** + +```ts +export type BigUInt = typeof BigUIntSchema.Type +``` + +Added in v2.0.0 + +# schemas + +## BigIntSchema + +BigInt schema based on Conway CDDL specification + +CDDL: big_int = int/ big_uint/ big_nint + +**Signature** + +```ts +export declare const BigIntSchema: Schema.Union< + [ + Schema.TaggedStruct<"Int", { value: typeof Schema.Number }>, + Schema.TaggedStruct<"BigUInt", { bytes: typeof Schema.Uint8ArrayFromSelf }>, + Schema.TaggedStruct<"BigNInt", { bytes: typeof Schema.Uint8ArrayFromSelf }> + ] +> +``` + +Added in v2.0.0 + +## BigNIntSchema + +BigNInt schema based on Conway CDDL specification + +CDDL: big_nint = #6.3(bounded_bytes) + +**Signature** + +```ts +export declare const BigNIntSchema: Schema.TaggedStruct<"BigNInt", { bytes: typeof Schema.Uint8ArrayFromSelf }> +``` + +Added in v2.0.0 + +## BigUIntSchema + +BigUInt schema based on Conway CDDL specification + +CDDL: big_uint = #6.2(bounded_bytes) + +**Signature** + +```ts +export declare const BigUIntSchema: Schema.TaggedStruct<"BigUInt", { bytes: typeof Schema.Uint8ArrayFromSelf }> +``` + +Added in v2.0.0 + +# utilities + +## match + +Pattern matching helper for BigInt types + +**Signature** + +```ts +export declare const match: ( + bigInt: BigInt, + cases: { Int: (value: number) => T; BigUInt: (bytes: Uint8Array) => T; BigNInt: (bytes: Uint8Array) => T } +) => T +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/Block.ts.md b/packages/evolution/docs/modules/Block.ts.md new file mode 100644 index 00000000..f4bd8834 --- /dev/null +++ b/packages/evolution/docs/modules/Block.ts.md @@ -0,0 +1,59 @@ +--- +title: Block.ts +nav_order: 10 +parent: Modules +--- + +## Block overview + +--- + +

Table of contents

+ +- [model](#model) + - [BlockClass (class)](#blockclass-class) +- [utils](#utils) + - [Block (type alias)](#block-type-alias) + +--- + +# model + +## BlockClass (class) + +Block based on Conway CDDL specification + +``` +CDDL: block = + [ header + , transaction_bodies : [* transaction_body] + , transaction_witness_sets : [* transaction_witness_set] + , auxiliary_data_set : {* transaction_index => auxiliary_data} + , invalid_transactions : [* transaction_index] + ] +``` + +Valid blocks must also satisfy the following two constraints: + +1. the length of transaction_bodies and transaction_witness_sets + must be the same +2. every transaction_index must be strictly smaller than the + length of transaction_bodies + +**Signature** + +```ts +export declare class BlockClass +``` + +Added in v2.0.0 + +# utils + +## Block (type alias) + +**Signature** + +```ts +export type Block = Schema.Schema.Type +``` diff --git a/packages/evolution/docs/modules/BlockBodyHash.ts.md b/packages/evolution/docs/modules/BlockBodyHash.ts.md new file mode 100644 index 00000000..2ed72c1a --- /dev/null +++ b/packages/evolution/docs/modules/BlockBodyHash.ts.md @@ -0,0 +1,163 @@ +--- +title: BlockBodyHash.ts +nav_order: 11 +parent: Modules +--- + +## BlockBodyHash overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [BlockBodyHashError (class)](#blockbodyhasherror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [BlockBodyHash](#blockbodyhash) +- [utils](#utils) + - [BlockBodyHash (type alias)](#blockbodyhash-type-alias) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for BlockBodyHash encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { + bytes: (input: string & Brand<"BlockBodyHash">) => any + hex: (input: string & Brand<"BlockBodyHash">) => string + } + Decode: { + bytes: (input: any) => string & Brand<"BlockBodyHash"> + hex: (input: string) => string & Brand<"BlockBodyHash"> + } + EncodeEffect: { + bytes: (input: string & Brand<"BlockBodyHash">) => Effect> + hex: (input: string & Brand<"BlockBodyHash">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"BlockBodyHash">) => Either> + hex: (input: string & Brand<"BlockBodyHash">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two BlockBodyHash instances are equal. + +**Signature** + +```ts +export declare const equals: (a: BlockBodyHash, b: BlockBodyHash) => boolean +``` + +Added in v2.0.0 + +# errors + +## BlockBodyHashError (class) + +Error class for BlockBodyHash related operations. + +**Signature** + +```ts +export declare class BlockBodyHashError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random BlockBodyHash. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## BlockBodyHash + +Schema for BlockBodyHash representing a block body hash. +block_body_hash = Bytes32 +Follows the Conway-era CDDL specification. + +**Signature** + +```ts +export declare const BlockBodyHash: Schema.brand< + Schema.refine>, + "BlockBodyHash" +> +``` + +Added in v2.0.0 + +# utils + +## BlockBodyHash (type alias) + +**Signature** + +```ts +export type BlockBodyHash = typeof BlockBodyHash.Type +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "BlockBodyHash"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "BlockBodyHash"> +> +``` diff --git a/packages/evolution/docs/modules/BlockHeaderHash.ts.md b/packages/evolution/docs/modules/BlockHeaderHash.ts.md new file mode 100644 index 00000000..3a70a5ff --- /dev/null +++ b/packages/evolution/docs/modules/BlockHeaderHash.ts.md @@ -0,0 +1,163 @@ +--- +title: BlockHeaderHash.ts +nav_order: 12 +parent: Modules +--- + +## BlockHeaderHash overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [BlockHeaderHashError (class)](#blockheaderhasherror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [BlockHeaderHash](#blockheaderhash) +- [utils](#utils) + - [BlockHeaderHash (type alias)](#blockheaderhash-type-alias) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for BlockHeaderHash encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { + bytes: (input: string & Brand<"BlockHeaderHash">) => any + hex: (input: string & Brand<"BlockHeaderHash">) => string + } + Decode: { + bytes: (input: any) => string & Brand<"BlockHeaderHash"> + hex: (input: string) => string & Brand<"BlockHeaderHash"> + } + EncodeEffect: { + bytes: (input: string & Brand<"BlockHeaderHash">) => Effect> + hex: (input: string & Brand<"BlockHeaderHash">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"BlockHeaderHash">) => Either> + hex: (input: string & Brand<"BlockHeaderHash">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two BlockHeaderHash instances are equal. + +**Signature** + +```ts +export declare const equals: (a: BlockHeaderHash, b: BlockHeaderHash) => boolean +``` + +Added in v2.0.0 + +# errors + +## BlockHeaderHashError (class) + +Error class for BlockHeaderHash related operations. + +**Signature** + +```ts +export declare class BlockHeaderHashError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random BlockHeaderHash. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## BlockHeaderHash + +Schema for BlockHeaderHash representing a block header hash. +block_header_hash = Bytes32 +Follows the Conway-era CDDL specification. + +**Signature** + +```ts +export declare const BlockHeaderHash: Schema.brand< + Schema.refine>, + "BlockHeaderHash" +> +``` + +Added in v2.0.0 + +# utils + +## BlockHeaderHash (type alias) + +**Signature** + +```ts +export type BlockHeaderHash = typeof BlockHeaderHash.Type +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "BlockHeaderHash"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "BlockHeaderHash"> +> +``` diff --git a/packages/evolution/docs/modules/BoundedBytes.ts.md b/packages/evolution/docs/modules/BoundedBytes.ts.md new file mode 100644 index 00000000..2186c761 --- /dev/null +++ b/packages/evolution/docs/modules/BoundedBytes.ts.md @@ -0,0 +1,44 @@ +--- +title: BoundedBytes.ts +nav_order: 13 +parent: Modules +--- + +## BoundedBytes overview + +--- + +

Table of contents

+ +- [schemas](#schemas) + - [BoundedBytesSchema](#boundedbytesschema) + +--- + +# schemas + +## BoundedBytesSchema + +BoundedBytes schema based on Conway CDDL specification + +CDDL: bounded_bytes = bytes .size (0 .. 64) + +The real bounded_bytes does not have this limit. it instead has +a different limit which cannot be expressed in CDDL. + +The limit is as follows: + +- bytes with a definite-length encoding are limited to size 0..64 +- for bytes with an indefinite-length CBOR encoding, each chunk is + limited to size 0..64 + ( reminder: in CBOR, the indefinite-length encoding of + bytestrings consists of a token #2.31 followed by a sequence + of definite-length encoded bytestrings and a stop code ) + +**Signature** + +```ts +export declare const BoundedBytesSchema: Schema.filter +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/ByronAddress.ts.md b/packages/evolution/docs/modules/ByronAddress.ts.md new file mode 100644 index 00000000..510e11ea --- /dev/null +++ b/packages/evolution/docs/modules/ByronAddress.ts.md @@ -0,0 +1,51 @@ +--- +title: ByronAddress.ts +nav_order: 14 +parent: Modules +--- + +## ByronAddress overview + +--- + +

Table of contents

+ +- [schemas](#schemas) + - [ByronAddress (class)](#byronaddress-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) +- [utils](#utils) + - [BytesSchema](#bytesschema) + +--- + +# schemas + +## ByronAddress (class) + +Byron legacy address format + +**Signature** + +```ts +export declare class ByronAddress +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +# utils + +## BytesSchema + +**Signature** + +```ts +export declare const BytesSchema: Schema.transform +``` diff --git a/packages/evolution/docs/modules/Bytes.ts.md b/packages/evolution/docs/modules/Bytes.ts.md new file mode 100644 index 00000000..ebd181f1 --- /dev/null +++ b/packages/evolution/docs/modules/Bytes.ts.md @@ -0,0 +1,159 @@ +--- +title: Bytes.ts +nav_order: 15 +parent: Modules +--- + +## Bytes overview + +--- + +

Table of contents

+ +- [predicates](#predicates) + - [isHexLenient](#ishexlenient) +- [schemas](#schemas) + - [FromBytesLenient](#frombyteslenient) + - [HexLenientSchema](#hexlenientschema) +- [utils](#utils) + - [BytesError (class)](#byteserror-class) + - [Codec](#codec) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [FromHexLenient](#fromhexlenient) + - [HexSchema](#hexschema) + - [isHex](#ishex) + +--- + +# predicates + +## isHexLenient + +Lenient version of isHex that allows empty strings. +Useful for PlutusData where empty byte arrays are valid. + +**Signature** + +```ts +export declare const isHexLenient: (input: string) => boolean +``` + +Added in v2.0.0 + +# schemas + +## FromBytesLenient + +Lenient version of FromBytes that allows empty byte arrays. +Useful for PlutusData where empty byte arrays are valid. + +**Signature** + +```ts +export declare const FromBytesLenient: Schema.transform< + typeof Schema.Uint8ArrayFromSelf, + Schema.refine +> +``` + +Added in v2.0.0 + +## HexLenientSchema + +Lenient hex schema that allows empty strings. +Useful for PlutusData where empty byte arrays are valid. + +**Signature** + +```ts +export declare const HexLenientSchema: Schema.refine +``` + +Added in v2.0.0 + +# utils + +## BytesError (class) + +**Signature** + +```ts +export declare class BytesError +``` + +## Codec + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string) => any; bytesLenient: (input: string) => any } + Decode: { bytes: (input: any) => string; bytesLenient: (input: any) => string } + EncodeEffect: { + bytes: (input: string) => Effect> + bytesLenient: (input: string) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect> + bytesLenient: (input: any) => Effect> + } + EncodeEither: { + bytes: (input: string) => Either> + bytesLenient: (input: string) => Either> + } + DecodeEither: { + bytes: (input: any) => Either> + bytesLenient: (input: any) => Either> + } +} +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + typeof Schema.Uint8ArrayFromSelf, + Schema.refine +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine, + typeof Schema.Uint8ArrayFromSelf +> +``` + +## FromHexLenient + +**Signature** + +```ts +export declare const FromHexLenient: Schema.transform< + Schema.refine, + typeof Schema.Uint8ArrayFromSelf +> +``` + +## HexSchema + +**Signature** + +```ts +export declare const HexSchema: Schema.refine +``` + +## isHex + +**Signature** + +```ts +export declare const isHex: (input: string) => boolean +``` diff --git a/packages/evolution/docs/modules/Bytes16.ts.md b/packages/evolution/docs/modules/Bytes16.ts.md new file mode 100644 index 00000000..f8f71c05 --- /dev/null +++ b/packages/evolution/docs/modules/Bytes16.ts.md @@ -0,0 +1,77 @@ +--- +title: Bytes16.ts +nav_order: 16 +parent: Modules +--- + +## Bytes16 overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [BYTES_LENGTH](#bytes_length) + - [BytesSchema](#bytesschema) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [HEX_LENGTH](#hex_length) + - [HexSchema](#hexschema) + +--- + +# utils + +## BYTES_LENGTH + +**Signature** + +```ts +export declare const BYTES_LENGTH: 16 +``` + +## BytesSchema + +**Signature** + +```ts +export declare const BytesSchema: Schema.filter +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.filter, + Schema.filter> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.filter>, + Schema.filter +> +``` + +## HEX_LENGTH + +**Signature** + +```ts +export declare const HEX_LENGTH: 32 +``` + +## HexSchema + +**Signature** + +```ts +export declare const HexSchema: Schema.filter> +``` diff --git a/packages/evolution/docs/modules/Bytes29.ts.md b/packages/evolution/docs/modules/Bytes29.ts.md new file mode 100644 index 00000000..b3b3c1ee --- /dev/null +++ b/packages/evolution/docs/modules/Bytes29.ts.md @@ -0,0 +1,65 @@ +--- +title: Bytes29.ts +nav_order: 17 +parent: Modules +--- + +## Bytes29 overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [BYTES_LENGTH](#bytes_length) + - [BytesFromHex](#bytesfromhex) + - [BytesSchema](#bytesschema) + - [HEX_LENGTH](#hex_length) + - [HexSchema](#hexschema) + +--- + +# utils + +## BYTES_LENGTH + +**Signature** + +```ts +export declare const BYTES_LENGTH: 29 +``` + +## BytesFromHex + +**Signature** + +```ts +export declare const BytesFromHex: Schema.transform< + Schema.filter>, + Schema.filter +> +``` + +## BytesSchema + +**Signature** + +```ts +export declare const BytesSchema: Schema.filter +``` + +## HEX_LENGTH + +**Signature** + +```ts +export declare const HEX_LENGTH: 58 +``` + +## HexSchema + +**Signature** + +```ts +export declare const HexSchema: Schema.filter> +``` diff --git a/packages/evolution/docs/modules/Bytes32.ts.md b/packages/evolution/docs/modules/Bytes32.ts.md new file mode 100644 index 00000000..694232ca --- /dev/null +++ b/packages/evolution/docs/modules/Bytes32.ts.md @@ -0,0 +1,170 @@ +--- +title: Bytes32.ts +nav_order: 18 +parent: Modules +--- + +## Bytes32 overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [schemas](#schemas) + - [BytesSchema](#bytesschema) + - [FromBytes](#frombytes) + - [FromVariableBytes](#fromvariablebytes) + - [HexSchema](#hexschema) + - [VariableBytesSchema](#variablebytesschema) + - [VariableHexSchema](#variablehexschema) +- [utils](#utils) + - [Bytes32Error (class)](#bytes32error-class) + - [Bytes32_BYTES_LENGTH](#bytes32_bytes_length) + - [Bytes32_HEX_LENGTH](#bytes32_hex_length) + +--- + +# encoding/decoding + +## Codec + +Codec for Bytes32 encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string) => any; variableBytes: (input: string) => any } + Decode: { bytes: (input: any) => string; variableBytes: (input: any) => string } + EncodeEffect: { + bytes: (input: string) => Effect> + variableBytes: (input: string) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect> + variableBytes: (input: any) => Effect> + } + EncodeEither: { + bytes: (input: string) => Either> + variableBytes: (input: string) => Either> + } + DecodeEither: { + bytes: (input: any) => Either> + variableBytes: (input: any) => Either> + } +} +``` + +Added in v2.0.0 + +# schemas + +## BytesSchema + +Schema for Bytes32 bytes with 32-byte length validation. + +**Signature** + +```ts +export declare const BytesSchema: Schema.refine +``` + +Added in v2.0.0 + +## FromBytes + +Schema transformer for Bytes32 that converts between hex strings and byte arrays. +Like Bytes.BytesSchema but with Bytes32-specific length validation. + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.refine, + Schema.refine> +> +``` + +Added in v2.0.0 + +## FromVariableBytes + +Schema transformer for variable-length data that converts between hex strings and byte arrays. +Works with 0 to 32 bytes (0 to 64 hex characters). + +**Signature** + +```ts +export declare const FromVariableBytes: Schema.transform< + Schema.refine, + Schema.refine> +> +``` + +Added in v2.0.0 + +## HexSchema + +Schema for Bytes32 hex strings with 64-character length validation. + +**Signature** + +```ts +export declare const HexSchema: Schema.refine> +``` + +Added in v2.0.0 + +## VariableBytesSchema + +Schema for variable-length byte arrays from 0 to 32 bytes. +Useful for asset names and other variable-length data structures. + +**Signature** + +```ts +export declare const VariableBytesSchema: Schema.refine +``` + +Added in v2.0.0 + +## VariableHexSchema + +Schema for variable-length hex strings from 0 to 64 characters (0 to 32 bytes). +Useful for asset names and other variable-length data structures. + +**Signature** + +```ts +export declare const VariableHexSchema: Schema.refine> +``` + +Added in v2.0.0 + +# utils + +## Bytes32Error (class) + +**Signature** + +```ts +export declare class Bytes32Error +``` + +## Bytes32_BYTES_LENGTH + +**Signature** + +```ts +export declare const Bytes32_BYTES_LENGTH: 32 +``` + +## Bytes32_HEX_LENGTH + +**Signature** + +```ts +export declare const Bytes32_HEX_LENGTH: 64 +``` diff --git a/packages/evolution/docs/modules/Bytes4.ts.md b/packages/evolution/docs/modules/Bytes4.ts.md new file mode 100644 index 00000000..263211d8 --- /dev/null +++ b/packages/evolution/docs/modules/Bytes4.ts.md @@ -0,0 +1,77 @@ +--- +title: Bytes4.ts +nav_order: 19 +parent: Modules +--- + +## Bytes4 overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [BYTES_LENGTH](#bytes_length) + - [BytesSchema](#bytesschema) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [HEX_LENGTH](#hex_length) + - [HexSchema](#hexschema) + +--- + +# utils + +## BYTES_LENGTH + +**Signature** + +```ts +export declare const BYTES_LENGTH: 4 +``` + +## BytesSchema + +**Signature** + +```ts +export declare const BytesSchema: Schema.filter +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.filter, + Schema.filter> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.filter>, + Schema.filter +> +``` + +## HEX_LENGTH + +**Signature** + +```ts +export declare const HEX_LENGTH: 8 +``` + +## HexSchema + +**Signature** + +```ts +export declare const HexSchema: Schema.filter> +``` diff --git a/packages/evolution/docs/modules/Bytes448.ts.md b/packages/evolution/docs/modules/Bytes448.ts.md new file mode 100644 index 00000000..2b803adf --- /dev/null +++ b/packages/evolution/docs/modules/Bytes448.ts.md @@ -0,0 +1,77 @@ +--- +title: Bytes448.ts +nav_order: 20 +parent: Modules +--- + +## Bytes448 overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [BYTES_LENGTH](#bytes_length) + - [BytesSchema](#bytesschema) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [HEX_LENGTH](#hex_length) + - [HexSchema](#hexschema) + +--- + +# utils + +## BYTES_LENGTH + +**Signature** + +```ts +export declare const BYTES_LENGTH: 448 +``` + +## BytesSchema + +**Signature** + +```ts +export declare const BytesSchema: Schema.filter +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.filter, + Schema.filter> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.filter>, + Schema.filter +> +``` + +## HEX_LENGTH + +**Signature** + +```ts +export declare const HEX_LENGTH: 896 +``` + +## HexSchema + +**Signature** + +```ts +export declare const HexSchema: Schema.filter> +``` diff --git a/packages/evolution/docs/modules/Bytes57.ts.md b/packages/evolution/docs/modules/Bytes57.ts.md new file mode 100644 index 00000000..643c18c1 --- /dev/null +++ b/packages/evolution/docs/modules/Bytes57.ts.md @@ -0,0 +1,65 @@ +--- +title: Bytes57.ts +nav_order: 21 +parent: Modules +--- + +## Bytes57 overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [BYTES_LENGTH](#bytes_length) + - [BytesFromHex](#bytesfromhex) + - [BytesSchema](#bytesschema) + - [HEX_LENGTH](#hex_length) + - [HexSchema](#hexschema) + +--- + +# utils + +## BYTES_LENGTH + +**Signature** + +```ts +export declare const BYTES_LENGTH: 57 +``` + +## BytesFromHex + +**Signature** + +```ts +export declare const BytesFromHex: Schema.transform< + Schema.filter>, + Schema.filter +> +``` + +## BytesSchema + +**Signature** + +```ts +export declare const BytesSchema: Schema.filter +``` + +## HEX_LENGTH + +**Signature** + +```ts +export declare const HEX_LENGTH: 114 +``` + +## HexSchema + +**Signature** + +```ts +export declare const HexSchema: Schema.filter> +``` diff --git a/packages/evolution/docs/modules/Bytes64.ts.md b/packages/evolution/docs/modules/Bytes64.ts.md new file mode 100644 index 00000000..e6ef1955 --- /dev/null +++ b/packages/evolution/docs/modules/Bytes64.ts.md @@ -0,0 +1,77 @@ +--- +title: Bytes64.ts +nav_order: 22 +parent: Modules +--- + +## Bytes64 overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [BYTES_LENGTH](#bytes_length) + - [BytesSchema](#bytesschema) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [HEX_LENGTH](#hex_length) + - [HexSchema](#hexschema) + +--- + +# utils + +## BYTES_LENGTH + +**Signature** + +```ts +export declare const BYTES_LENGTH: 64 +``` + +## BytesSchema + +**Signature** + +```ts +export declare const BytesSchema: Schema.filter +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.filter, + Schema.filter> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.filter>, + Schema.filter +> +``` + +## HEX_LENGTH + +**Signature** + +```ts +export declare const HEX_LENGTH: 128 +``` + +## HexSchema + +**Signature** + +```ts +export declare const HexSchema: Schema.filter> +``` diff --git a/packages/evolution/docs/modules/Bytes80.ts.md b/packages/evolution/docs/modules/Bytes80.ts.md new file mode 100644 index 00000000..1e8f5f27 --- /dev/null +++ b/packages/evolution/docs/modules/Bytes80.ts.md @@ -0,0 +1,77 @@ +--- +title: Bytes80.ts +nav_order: 23 +parent: Modules +--- + +## Bytes80 overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [BYTES_LENGTH](#bytes_length) + - [BytesSchema](#bytesschema) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [HEX_LENGTH](#hex_length) + - [HexSchema](#hexschema) + +--- + +# utils + +## BYTES_LENGTH + +**Signature** + +```ts +export declare const BYTES_LENGTH: 80 +``` + +## BytesSchema + +**Signature** + +```ts +export declare const BytesSchema: Schema.filter +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.filter, + Schema.filter> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.filter>, + Schema.filter +> +``` + +## HEX_LENGTH + +**Signature** + +```ts +export declare const HEX_LENGTH: 160 +``` + +## HexSchema + +**Signature** + +```ts +export declare const HexSchema: Schema.filter> +``` diff --git a/packages/evolution/docs/modules/CBOR.ts.md b/packages/evolution/docs/modules/CBOR.ts.md new file mode 100644 index 00000000..416c13bb --- /dev/null +++ b/packages/evolution/docs/modules/CBOR.ts.md @@ -0,0 +1,417 @@ +--- +title: CBOR.ts +nav_order: 24 +parent: Modules +--- + +## CBOR overview + +--- + +

Table of contents

+ +- [constants](#constants) + - [CANONICAL_OPTIONS](#canonical_options) + - [CBOR_ADDITIONAL_INFO](#cbor_additional_info) + - [CBOR_MAJOR_TYPE](#cbor_major_type) + - [CBOR_SIMPLE](#cbor_simple) + - [DEFAULT_OPTIONS](#default_options) +- [errors](#errors) + - [CBORError (class)](#cborerror-class) +- [model](#model) + - [CBOR (type alias)](#cbor-type-alias) + - [CodecOptions (type alias)](#codecoptions-type-alias) +- [schemas](#schemas) + - [CBORSchema](#cborschema) + - [FromBytes](#frombytes) + - [Integer](#integer) +- [transformation](#transformation) + - [match](#match) +- [utils](#utils) + - [ArraySchema](#arrayschema) + - [ByteArray](#bytearray) + - [FromHex](#FromHex) + - [Codec](#codec) + - [Float](#float) + - [MapSchema](#mapschema) + - [RecordSchema](#recordschema) + - [Simple](#simple) + - [Tag (class)](#tag-class) + - [Text](#text) + - [isArray](#isarray) + - [isByteArray](#isbytearray) + - [isInteger](#isinteger) + - [isMap](#ismap) + - [isRecord](#isrecord) + - [isTag](#istag) + +--- + +# constants + +## CANONICAL_OPTIONS + +Canonical CBOR encoding options (RFC 8949 Section 4.2.1) + +**Signature** + +```ts +export declare const CANONICAL_OPTIONS: CodecOptions +``` + +Added in v1.0.0 + +## CBOR_ADDITIONAL_INFO + +CBOR additional information constants + +**Signature** + +```ts +export declare const CBOR_ADDITIONAL_INFO: { + readonly DIRECT: 24 + readonly UINT16: 25 + readonly UINT32: 26 + readonly UINT64: 27 + readonly INDEFINITE: 31 +} +``` + +Added in v1.0.0 + +## CBOR_MAJOR_TYPE + +CBOR major types as constants + +**Signature** + +```ts +export declare const CBOR_MAJOR_TYPE: { + readonly UNSIGNED_INTEGER: 0 + readonly NEGATIVE_INTEGER: 1 + readonly BYTE_STRING: 2 + readonly TEXT_STRING: 3 + readonly ARRAY: 4 + readonly MAP: 5 + readonly TAG: 6 + readonly SIMPLE_FLOAT: 7 +} +``` + +Added in v1.0.0 + +## CBOR_SIMPLE + +Simple value constants for CBOR + +**Signature** + +```ts +export declare const CBOR_SIMPLE: { readonly FALSE: 20; readonly TRUE: 21; readonly NULL: 22; readonly UNDEFINED: 23 } +``` + +Added in v1.0.0 + +## DEFAULT_OPTIONS + +Default CBOR encoding options + +**Signature** + +```ts +export declare const DEFAULT_OPTIONS: CodecOptions +``` + +Added in v1.0.0 + +# errors + +## CBORError (class) + +Error class for CBOR value operations + +**Signature** + +```ts +export declare class CBORError +``` + +Added in v1.0.0 + +# model + +## CBOR (type alias) + +Type representing a CBOR value with simplified, non-tagged structure + +**Signature** + +```ts +export type CBOR = + | bigint // integers (both positive and negative) + | Uint8Array // byte strings + | string // text strings + | ReadonlyArray // arrays + | ReadonlyMap // maps + | { readonly [key: string]: CBOR } // record alternative to maps + | Tag // tagged values + | boolean // boolean values + | null // null value + | undefined // undefined value + | number +``` + +Added in v1.0.0 + +## CodecOptions (type alias) + +CBOR codec configuration options + +**Signature** + +```ts +export type CodecOptions = + | { + readonly mode: "canonical" + } + | { + readonly mode: "custom" + readonly useIndefiniteArrays: boolean + readonly useIndefiniteMaps: boolean + readonly useDefiniteForEmpty: boolean + readonly sortMapKeys: boolean + readonly useMinimalEncoding: boolean + } +``` + +Added in v1.0.0 + +# schemas + +## CBORSchema + +CBOR Value discriminated union schema representing all possible CBOR data types +Inspired by OCaml and Rust CBOR implementations + +**Signature** + +```ts +export declare const CBORSchema: Schema.Schema +``` + +Added in v1.0.0 + +## FromBytes + +Create a CBOR bytes schema with custom codec options + +**Signature** + +```ts +export declare const FromBytes: ( + options: CodecOptions +) => Schema.transformOrFail, never> +``` + +Added in v1.0.0 + +## Integer + +CBOR Value schema definitions for each major type + +**Signature** + +```ts +export declare const Integer: typeof Schema.BigIntFromSelf +``` + +Added in v1.0.0 + +# transformation + +## match + +Pattern matching utility for CBOR values + +**Signature** + +```ts +export declare const match: ( + value: CBOR, + patterns: { + integer: (value: bigint) => R + bytes: (value: Uint8Array) => R + text: (value: string) => R + array: (value: ReadonlyArray) => R + map: (value: ReadonlyMap) => R + record: (value: { readonly [key: string]: CBOR }) => R + tag: (tag: number, value: CBOR) => R + boolean: (value: boolean) => R + null: () => R + undefined: () => R + float: (value: number) => R + } +) => R +``` + +Added in v1.0.0 + +# utils + +## ArraySchema + +**Signature** + +```ts +export declare const ArraySchema: Schema.Array$> +``` + +## ByteArray + +**Signature** + +```ts +export declare const ByteArray: typeof Schema.Uint8ArrayFromSelf +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: ( + options: CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transformOrFail, never> +> +``` + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CodecOptions) => { + Encode: { cborBytes: (input: CBOR) => any; cborHex: (input: CBOR) => string } + Decode: { cborBytes: (input: any) => CBOR; cborHex: (input: string) => CBOR } + EncodeEffect: { + cborBytes: (input: CBOR) => Effect.Effect> + cborHex: (input: CBOR) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: CBOR) => Either> + cborHex: (input: CBOR) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` + +## Float + +**Signature** + +```ts +export declare const Float: typeof Schema.Number +``` + +## MapSchema + +**Signature** + +```ts +export declare const MapSchema: Schema.ReadonlyMapFromSelf< + Schema.suspend, + Schema.suspend +> +``` + +## RecordSchema + +**Signature** + +```ts +export declare const RecordSchema: Schema.Record$> +``` + +## Simple + +**Signature** + +```ts +export declare const Simple: Schema.Union<[typeof Schema.Boolean, typeof Schema.Null, typeof Schema.Undefined]> +``` + +## Tag (class) + +**Signature** + +```ts +export declare class Tag +``` + +## Text + +**Signature** + +```ts +export declare const Text: typeof Schema.String +``` + +## isArray + +**Signature** + +```ts +export declare const isArray: (u: unknown, overrideOptions?: ParseOptions | number) => u is readonly CBOR[] +``` + +## isByteArray + +**Signature** + +```ts +export declare const isByteArray: (u: unknown, overrideOptions?: ParseOptions | number) => u is any +``` + +## isInteger + +**Signature** + +```ts +export declare const isInteger: (u: unknown, overrideOptions?: ParseOptions | number) => u is bigint +``` + +## isMap + +**Signature** + +```ts +export declare const isMap: (u: unknown, overrideOptions?: ParseOptions | number) => u is ReadonlyMap +``` + +## isRecord + +**Signature** + +```ts +export declare const isRecord: ( + u: unknown, + overrideOptions?: ParseOptions | number +) => u is { readonly [x: string]: CBOR } +``` + +## isTag + +**Signature** + +```ts +export declare const isTag: (u: unknown, overrideOptions?: ParseOptions | number) => u is Tag +``` diff --git a/packages/evolution/docs/modules/Certificate.ts.md b/packages/evolution/docs/modules/Certificate.ts.md new file mode 100644 index 00000000..c95ac54a --- /dev/null +++ b/packages/evolution/docs/modules/Certificate.ts.md @@ -0,0 +1,468 @@ +--- +title: Certificate.ts +nav_order: 25 +parent: Modules +--- + +## Certificate overview + +--- + +

Table of contents

+ +- [errors](#errors) + - [CertificateError (class)](#certificateerror-class) +- [model](#model) + - [Certificate (type alias)](#certificate-type-alias) +- [schemas](#schemas) + - [Certificate](#certificate) + +--- + +# errors + +## CertificateError (class) + +Error class for Certificate related operations. + +**Signature** + +```ts +export declare class CertificateError +``` + +Added in v2.0.0 + +# model + +## Certificate (type alias) + +Type alias for Certificate. + +**Signature** + +```ts +export type Certificate = typeof Certificate.Type +``` + +Added in v2.0.0 + +# schemas + +## Certificate + +Certificate union schema based on Conway CDDL specification + +CDDL: certificate = +[ +stake_registration +// stake_deregistration +// stake_delegation +// pool_registration +// pool_retirement +// reg_cert +// unreg_cert +// vote_deleg_cert +// stake_vote_deleg_cert +// stake_reg_deleg_cert +// vote_reg_deleg_cert +// stake_vote_reg_deleg_cert +// auth_committee_hot_cert +// resign_committee_cold_cert +// reg_drep_cert +// unreg_drep_cert +// update_drep_cert +] + +stake_registration = (0, stake_credential) +stake_deregistration = (1, stake_credential) +stake_delegation = (2, stake_credential, pool_keyhash) +pool_registration = (3, pool_params) +pool_retirement = (4, pool_keyhash, epoch_no) +reg_cert = (7, stake_credential, coin) +unreg_cert = (8, stake_credential, coin) +vote_deleg_cert = (9, stake_credential, drep) +stake_vote_deleg_cert = (10, stake_credential, pool_keyhash, drep) +stake_reg_deleg_cert = (11, stake_credential, pool_keyhash, coin) +vote_reg_deleg_cert = (12, stake_credential, drep, coin) +stake_vote_reg_deleg_cert = (13, stake_credential, pool_keyhash, drep, coin) +auth_committee_hot_cert = (14, committee_cold_credential, committee_hot_credential) +resign_committee_cold_cert = (15, committee_cold_credential, anchor/ nil) +reg_drep_cert = (16, drep_credential, coin, anchor/ nil) +unreg_drep_cert = (17, drep_credential, coin) +update_drep_cert = (18, drep_credential, anchor/ nil) + +**Signature** + +```ts +export declare const Certificate: Schema.Union< + [ + Schema.TaggedStruct< + "StakeRegistration", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + } + >, + Schema.TaggedStruct< + "StakeDeregistration", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + } + >, + Schema.TaggedStruct< + "StakeDelegation", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + poolKeyHash: Schema.brand>, "PoolKeyHash"> + } + >, + Schema.TaggedStruct< + "PoolRetirement", + { + poolKeyHash: Schema.brand>, "PoolKeyHash"> + epoch: Schema.brand, "EpochNo"> + } + >, + Schema.TaggedStruct< + "RegCert", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + coin: Schema.refine + } + >, + Schema.TaggedStruct< + "UnregCert", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + coin: Schema.refine + } + >, + Schema.TaggedStruct< + "VoteDelegCert", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + drep: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHashDRep", + { keyHash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHashDRep", + { + scriptHash: Schema.brand< + Schema.refine>, + "ScriptHash" + > + } + >, + Schema.TaggedStruct<"AlwaysAbstainDRep", {}>, + Schema.TaggedStruct<"AlwaysNoConfidenceDRep", {}> + ] + > + } + >, + Schema.TaggedStruct< + "StakeVoteDelegCert", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + poolKeyHash: Schema.brand>, "PoolKeyHash"> + drep: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHashDRep", + { keyHash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHashDRep", + { + scriptHash: Schema.brand< + Schema.refine>, + "ScriptHash" + > + } + >, + Schema.TaggedStruct<"AlwaysAbstainDRep", {}>, + Schema.TaggedStruct<"AlwaysNoConfidenceDRep", {}> + ] + > + } + >, + Schema.TaggedStruct< + "StakeRegDelegCert", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + poolKeyHash: Schema.brand>, "PoolKeyHash"> + coin: Schema.refine + } + >, + Schema.TaggedStruct< + "VoteRegDelegCert", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + drep: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHashDRep", + { keyHash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHashDRep", + { + scriptHash: Schema.brand< + Schema.refine>, + "ScriptHash" + > + } + >, + Schema.TaggedStruct<"AlwaysAbstainDRep", {}>, + Schema.TaggedStruct<"AlwaysNoConfidenceDRep", {}> + ] + > + coin: Schema.refine + } + >, + Schema.TaggedStruct< + "StakeVoteRegDelegCert", + { + stakeCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + poolKeyHash: Schema.brand>, "PoolKeyHash"> + drep: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHashDRep", + { keyHash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHashDRep", + { + scriptHash: Schema.brand< + Schema.refine>, + "ScriptHash" + > + } + >, + Schema.TaggedStruct<"AlwaysAbstainDRep", {}>, + Schema.TaggedStruct<"AlwaysNoConfidenceDRep", {}> + ] + > + coin: Schema.refine + } + >, + Schema.TaggedStruct< + "AuthCommitteeHotCert", + { + committeeColdCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + committeeHotCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + } + >, + Schema.TaggedStruct< + "ResignCommitteeColdCert", + { + committeeColdCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + anchor: Schema.NullishOr + } + >, + Schema.TaggedStruct< + "RegDrepCert", + { + drepCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + coin: Schema.refine + anchor: Schema.NullishOr + } + >, + Schema.TaggedStruct< + "UnregDrepCert", + { + drepCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + coin: Schema.refine + } + >, + Schema.TaggedStruct< + "UpdateDrepCert", + { + drepCredential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + > + anchor: Schema.NullishOr + } + > + ] +> +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/Codec.ts.md b/packages/evolution/docs/modules/Codec.ts.md new file mode 100644 index 00000000..b887b3a8 --- /dev/null +++ b/packages/evolution/docs/modules/Codec.ts.md @@ -0,0 +1,63 @@ +--- +title: Codec.ts +nav_order: 26 +parent: Modules +--- + +## Codec overview + +Simple codec factory for creating encoding utilities from schema records + +Added in v2.0.0 + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [createEncoders](#createencoders) + +--- + +# constructors + +## createEncoders + +Creates encoding and decoding utilities with custom error mapping + +**Signature** + +```ts +export declare const createEncoders: < + T extends Record>, + ErrorClass extends { new (options: { message?: string; cause?: unknown }): unknown } +>( + schemas: T, + ErrorClass: ErrorClass +) => { + Encode: { [K in keyof T]: T[K] extends Schema.Schema ? (input: A) => I : never } + Decode: { [K in keyof T]: T[K] extends Schema.Schema ? (input: I) => A : never } + EncodeEffect: { + [K in keyof T]: T[K] extends Schema.Schema + ? (input: A) => Effect.Effect> + : never + } + DecodeEffect: { + [K in keyof T]: T[K] extends Schema.Schema + ? (input: I) => Effect.Effect> + : never + } + EncodeEither: { + [K in keyof T]: T[K] extends Schema.Schema + ? (input: A) => Either.Either> + : never + } + DecodeEither: { + [K in keyof T]: T[K] extends Schema.Schema + ? (input: I) => Either.Either> + : never + } +} +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/Coin.ts.md b/packages/evolution/docs/modules/Coin.ts.md new file mode 100644 index 00000000..7ab1f5bb --- /dev/null +++ b/packages/evolution/docs/modules/Coin.ts.md @@ -0,0 +1,189 @@ +--- +title: Coin.ts +nav_order: 27 +parent: Modules +--- + +## Coin overview + +--- + +

Table of contents

+ +- [constants](#constants) + - [MAX_COIN_VALUE](#max_coin_value) +- [constructors](#constructors) + - [make](#make) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [CoinError (class)](#coinerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [Coin (type alias)](#coin-type-alias) +- [ordering](#ordering) + - [compare](#compare) +- [predicates](#predicates) + - [is](#is) +- [schemas](#schemas) + - [CoinSchema](#coinschema) +- [transformation](#transformation) + - [add](#add) + - [subtract](#subtract) + +--- + +# constants + +## MAX_COIN_VALUE + +Maximum value for a coin amount (maxWord64). + +**Signature** + +```ts +export declare const MAX_COIN_VALUE: 18446744073709551615n +``` + +Added in v2.0.0 + +# constructors + +## make + +Smart constructor for creating Coin values. + +**Signature** + +```ts +export declare const make: (a: bigint, options?: Schema.MakeOptions) => bigint +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two coin amounts are equal. + +**Signature** + +```ts +export declare const equals: (a: Coin, b: Coin) => boolean +``` + +Added in v2.0.0 + +# errors + +## CoinError (class) + +Error class for Coin related operations. + +**Signature** + +```ts +export declare class CoinError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random Coin value. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## Coin (type alias) + +Type alias for Coin representing ADA amounts in lovelace. +1 ADA = 1,000,000 lovelace + +**Signature** + +```ts +export type Coin = typeof CoinSchema.Type +``` + +Added in v2.0.0 + +# ordering + +## compare + +Compare two coin amounts. + +**Signature** + +```ts +export declare const compare: (a: Coin, b: Coin) => -1 | 0 | 1 +``` + +Added in v2.0.0 + +# predicates + +## is + +Check if a value is a valid Coin. + +**Signature** + +```ts +export declare const is: (u: unknown, overrideOptions?: ParseOptions | number) => u is bigint +``` + +Added in v2.0.0 + +# schemas + +## CoinSchema + +Schema for validating coin amounts as unsigned 64-bit integers. +coin = uint + +**Signature** + +```ts +export declare const CoinSchema: Schema.refine +``` + +Added in v2.0.0 + +# transformation + +## add + +Add two coin amounts safely. + +**Signature** + +```ts +export declare const add: (a: Coin, b: Coin) => Coin +``` + +Added in v2.0.0 + +## subtract + +Subtract two coin amounts safely. + +**Signature** + +```ts +export declare const subtract: (a: Coin, b: Coin) => Coin +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/Combinator.ts.md b/packages/evolution/docs/modules/Combinator.ts.md new file mode 100644 index 00000000..43764432 --- /dev/null +++ b/packages/evolution/docs/modules/Combinator.ts.md @@ -0,0 +1,62 @@ +--- +title: Combinator.ts +nav_order: 28 +parent: Modules +--- + +## Combinator overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [HEX_REGEX](#hex_regex) + - [HexStringFilter](#hexstringfilter) + - [HexStringSchema](#hexstringschema) + - [Uint8ArraySchema](#uint8arrayschema) + +--- + +# utils + +## HEX_REGEX + +Regular expression that matches valid hexadecimal strings. +Validates that a string: + +- Contains only hexadecimal characters (0-9, a-f) +- Has an even number of characters (bytes are represented as pairs of hex digits) +- Can be empty (matches zero or more pairs) + +**Signature** + +```ts +export declare const HEX_REGEX: RegExp +``` + +## HexStringFilter + +**Signature** + +```ts +export declare const HexStringFilter: ( + self: Schema.Schema +) => Schema.refine> +``` + +## HexStringSchema + +**Signature** + +```ts +export declare const HexStringSchema: Schema.refine +``` + +## Uint8ArraySchema + +**Signature** + +```ts +export declare const Uint8ArraySchema: Schema.declare +``` diff --git a/packages/evolution/docs/modules/CommitteeColdCredential.ts.md b/packages/evolution/docs/modules/CommitteeColdCredential.ts.md new file mode 100644 index 00000000..3d7a9d96 --- /dev/null +++ b/packages/evolution/docs/modules/CommitteeColdCredential.ts.md @@ -0,0 +1,261 @@ +--- +title: CommitteeColdCredential.ts +nav_order: 29 +parent: Modules +--- + +## CommitteeColdCredential overview + +Committee Cold Credential module - provides an alias for Credential specialized for committee cold key usage. + +In Cardano, committee_cold_credential = credential, representing the same credential structure +but used specifically for committee cold keys in governance. + +Added in v2.0.0 + +--- + +

Table of contents

+ +- [errors](#errors) + - [CommitteeColdCredentialError](#committeecoldcredentialerror) +- [model](#model) + - [CommitteeColdCredential (type alias)](#committeecoldcredential-type-alias) +- [schemas](#schemas) + - [CommitteeColdCredential](#committeecoldcredential) + - [FromCBORBytes](#fromcborbytes) +- [utils](#utils) + - [Codec](#codec) + - [FromCBORHex](#fromcborhex) + - [equals](#equals) + - [generator](#generator) + - [is](#is) + +--- + +# errors + +## CommitteeColdCredentialError + +Error class for CommitteeColdCredential operations - re-exports CredentialError. + +**Signature** + +```ts +export declare const CommitteeColdCredentialError: typeof Credential.CredentialError +``` + +Added in v2.0.0 + +# model + +## CommitteeColdCredential (type alias) + +Type representing a committee cold credential - alias for Credential type. + +**Signature** + +```ts +export type CommitteeColdCredential = Credential.Credential +``` + +Added in v2.0.0 + +# schemas + +## CommitteeColdCredential + +CommitteeColdCredential schema - alias for the Credential schema. +committee_cold_credential = credential + +**Signature** + +```ts +export declare const CommitteeColdCredential: Union< + [ + TaggedStruct<"KeyHash", { hash: brand>, "KeyHash"> }>, + TaggedStruct<"ScriptHash", { hash: brand>, "ScriptHash"> }> + ] +> +``` + +Added in v2.0.0 + +## FromCBORBytes + +CBOR encoding/decoding schemas. + +**Signature** + +```ts +export declare const FromCBORBytes: ( + options?: CBOR.CodecOptions +) => transform< + transformOrFail, never>, + transformOrFail< + Tuple2, typeof Uint8ArrayFromSelf>, + SchemaClass< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + never + >, + never + > +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => any + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => string + } + Decode: { + cborBytes: ( + input: any + ) => + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + cborHex: ( + input: string + ) => + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + } + EncodeEffect: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Effect> + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + cborHex: ( + input: string + ) => Effect< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + } + EncodeEither: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Either> + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + cborHex: ( + input: string + ) => Either< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + } +} +``` + +## FromCBORHex + +**Signature** + +```ts +export declare const FromCBORHex: ( + options?: CBOR.CodecOptions +) => transform< + transform, typeof Uint8ArrayFromSelf>, + transform< + transformOrFail, never>, + transformOrFail< + Tuple2, typeof Uint8ArrayFromSelf>, + SchemaClass< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + never + >, + never + > + > +> +``` + +## equals + +**Signature** + +```ts +export declare const equals: (a: Credential.Credential, b: Credential.Credential) => boolean +``` + +## generator + +**Signature** + +```ts +export declare const generator: Arbitrary< + { _tag: "KeyHash"; hash: string & Brand<"KeyHash"> } | { _tag: "ScriptHash"; hash: string & Brand<"ScriptHash"> } +> +``` + +## is + +Re-exported utilities from Credential module. + +**Signature** + +```ts +export declare const is: ( + u: unknown, + overrideOptions?: ParseOptions | number +) => u is + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/CommitteeHotCredential.ts.md b/packages/evolution/docs/modules/CommitteeHotCredential.ts.md new file mode 100644 index 00000000..8329f726 --- /dev/null +++ b/packages/evolution/docs/modules/CommitteeHotCredential.ts.md @@ -0,0 +1,261 @@ +--- +title: CommitteeHotCredential.ts +nav_order: 30 +parent: Modules +--- + +## CommitteeHotCredential overview + +Committee Hot Credential module - provides an alias for Credential specialized for committee hot key usage. + +In Cardano, committee_hot_credential = credential, representing the same credential structure +but used specifically for committee hot keys in governance. + +Added in v2.0.0 + +--- + +

Table of contents

+ +- [errors](#errors) + - [CommitteeHotCredentialError](#committeehotcredentialerror) +- [model](#model) + - [CommitteeHotCredential (type alias)](#committeehotcredential-type-alias) +- [schemas](#schemas) + - [CommitteeHotCredential](#committeehotcredential) + - [FromCBORBytes](#fromcborbytes) +- [utils](#utils) + - [Codec](#codec) + - [FromCBORHex](#fromcborhex) + - [equals](#equals) + - [generator](#generator) + - [is](#is) + +--- + +# errors + +## CommitteeHotCredentialError + +Error class for CommitteeHotCredential operations - re-exports CredentialError. + +**Signature** + +```ts +export declare const CommitteeHotCredentialError: typeof Credential.CredentialError +``` + +Added in v2.0.0 + +# model + +## CommitteeHotCredential (type alias) + +Type representing a committee hot credential - alias for Credential type. + +**Signature** + +```ts +export type CommitteeHotCredential = Credential.Credential +``` + +Added in v2.0.0 + +# schemas + +## CommitteeHotCredential + +CommitteeHotCredential schema - alias for the Credential schema. +committee_hot_credential = credential + +**Signature** + +```ts +export declare const CommitteeHotCredential: Union< + [ + TaggedStruct<"KeyHash", { hash: brand>, "KeyHash"> }>, + TaggedStruct<"ScriptHash", { hash: brand>, "ScriptHash"> }> + ] +> +``` + +Added in v2.0.0 + +## FromCBORBytes + +CBOR encoding/decoding schemas. + +**Signature** + +```ts +export declare const FromCBORBytes: ( + options?: CodecOptions +) => transform< + transformOrFail, never>, + transformOrFail< + Tuple2, typeof Uint8ArrayFromSelf>, + SchemaClass< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + never + >, + never + > +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CodecOptions) => { + Encode: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => any + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => string + } + Decode: { + cborBytes: ( + input: any + ) => + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + cborHex: ( + input: string + ) => + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + } + EncodeEffect: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Effect> + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + cborHex: ( + input: string + ) => Effect< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + } + EncodeEither: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Either> + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + cborHex: ( + input: string + ) => Either< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + } +} +``` + +## FromCBORHex + +**Signature** + +```ts +export declare const FromCBORHex: ( + options?: CodecOptions +) => transform< + transform, typeof Uint8ArrayFromSelf>, + transform< + transformOrFail, never>, + transformOrFail< + Tuple2, typeof Uint8ArrayFromSelf>, + SchemaClass< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + never + >, + never + > + > +> +``` + +## equals + +**Signature** + +```ts +export declare const equals: (a: Credential.Credential, b: Credential.Credential) => boolean +``` + +## generator + +**Signature** + +```ts +export declare const generator: Arbitrary< + { _tag: "KeyHash"; hash: string & Brand<"KeyHash"> } | { _tag: "ScriptHash"; hash: string & Brand<"ScriptHash"> } +> +``` + +## is + +Re-exported utilities from Credential module. + +**Signature** + +```ts +export declare const is: ( + u: unknown, + overrideOptions?: ParseOptions | number +) => u is + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/Credential.ts.md b/packages/evolution/docs/modules/Credential.ts.md new file mode 100644 index 00000000..7c47c2a4 --- /dev/null +++ b/packages/evolution/docs/modules/Credential.ts.md @@ -0,0 +1,317 @@ +--- +title: Credential.ts +nav_order: 31 +parent: Modules +--- + +## Credential overview + +--- + +

Table of contents

+ +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [CredentialError (class)](#credentialerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [Credential (type alias)](#credential-type-alias) +- [predicates](#predicates) + - [is](#is) +- [schemas](#schemas) + - [Credential](#credential) + - [FromCDDL](#fromcddl) +- [utils](#utils) + - [CDDL](#cddl) + - [Codec](#codec) + - [FromCBORBytes](#fromcborbytes) + - [FromCBORHex](#fromcborhex) + +--- + +# equality + +## equals + +Check if two Credential instances are equal. + +**Signature** + +```ts +export declare const equals: (a: Credential, b: Credential) => boolean +``` + +Added in v2.0.0 + +# errors + +## CredentialError (class) + +Extends TaggedError for better error handling and categorization + +**Signature** + +```ts +export declare class CredentialError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random Credential. +Randomly selects between generating a KeyHash or ScriptHash credential. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary< + { _tag: "KeyHash"; hash: string & Brand<"KeyHash"> } | { _tag: "ScriptHash"; hash: string & Brand<"ScriptHash"> } +> +``` + +Added in v2.0.0 + +# model + +## Credential (type alias) + +Type representing a credential that can be either a key hash or script hash +Used in various address formats to identify ownership + +**Signature** + +```ts +export type Credential = typeof Credential.Type +``` + +Added in v2.0.0 + +# predicates + +## is + +Check if the given value is a valid Credential + +**Signature** + +```ts +export declare const is: ( + u: unknown, + overrideOptions?: ParseOptions | number +) => u is + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } +``` + +Added in v2.0.0 + +# schemas + +## Credential + +Credential schema representing either a key hash or script hash +credential = [0, addr_keyhash // 1, script_hash] +Used to identify ownership of addresses or stake rights + +**Signature** + +```ts +export declare const Credential: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for Credential as defined in the specification: +credential = [0, addr_keyhash // 1, script_hash] + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.SchemaClass< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + never + >, + never +> +``` + +Added in v2.0.0 + +# utils + +## CDDL + +**Signature** + +```ts +export declare const CDDL: Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf> +``` + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => any + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => string + } + Decode: { + cborBytes: ( + input: any + ) => + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + cborHex: ( + input: string + ) => + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + } + EncodeEffect: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Effect.Effect> + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Effect.Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect.Effect< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + cborHex: ( + input: string + ) => Effect.Effect< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + } + EncodeEither: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Either> + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + cborHex: ( + input: string + ) => Either< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + } +} +``` + +## FromCBORBytes + +**Signature** + +```ts +export declare const FromCBORBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.SchemaClass< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + never + >, + never + > +> +``` + +## FromCBORHex + +**Signature** + +```ts +export declare const FromCBORHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.SchemaClass< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + never + >, + never + > + > +> +``` diff --git a/packages/evolution/docs/modules/DRep.ts.md b/packages/evolution/docs/modules/DRep.ts.md new file mode 100644 index 00000000..78bcbdec --- /dev/null +++ b/packages/evolution/docs/modules/DRep.ts.md @@ -0,0 +1,561 @@ +--- +title: DRep.ts +nav_order: 38 +parent: Modules +--- + +## DRep overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [alwaysAbstain](#alwaysabstain) + - [alwaysNoConfidence](#alwaysnoconfidence) + - [fromKeyHash](#fromkeyhash) + - [fromScriptHash](#fromscripthash) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [DRepError (class)](#dreperror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [AlwaysAbstainDRep (type alias)](#alwaysabstaindrep-type-alias) + - [AlwaysNoConfidenceDRep (type alias)](#alwaysnoconfidencedrep-type-alias) + - [DRep (type alias)](#drep-type-alias) + - [KeyHashDRep (type alias)](#keyhashdrep-type-alias) + - [ScriptHashDRep (type alias)](#scripthashdrep-type-alias) +- [predicates](#predicates) + - [isAlwaysAbstainDRep](#isalwaysabstaindrep) + - [isAlwaysNoConfidenceDRep](#isalwaysnoconfidencedrep) + - [isDRep](#isdrep) + - [isKeyHashDRep](#iskeyhashdrep) + - [isScriptHashDRep](#isscripthashdrep) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [DRep](#drep) + - [DRepCDDLSchema](#drepcddlschema) +- [transformation](#transformation) + - [match](#match) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## alwaysAbstain + +Create an AlwaysAbstainDRep. + +**Signature** + +```ts +export declare const alwaysAbstain: () => AlwaysAbstainDRep +``` + +Added in v2.0.0 + +## alwaysNoConfidence + +Create an AlwaysNoConfidenceDRep. + +**Signature** + +```ts +export declare const alwaysNoConfidence: () => AlwaysNoConfidenceDRep +``` + +Added in v2.0.0 + +## fromKeyHash + +Create a KeyHashDRep from a KeyHash. + +**Signature** + +```ts +export declare const fromKeyHash: (keyHash: KeyHash.KeyHash) => KeyHashDRep +``` + +Added in v2.0.0 + +## fromScriptHash + +Create a ScriptHashDRep from a ScriptHash. + +**Signature** + +```ts +export declare const fromScriptHash: (scriptHash: ScriptHash.ScriptHash) => ScriptHashDRep +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two DRep instances are equal. + +**Signature** + +```ts +export declare const equals: (self: DRep, that: DRep) => boolean +``` + +Added in v2.0.0 + +# errors + +## DRepError (class) + +Error class for DRep related operations. + +**Signature** + +```ts +export declare class DRepError +``` + +Added in v2.0.0 + +# generators + +## generator + +FastCheck generator for DRep instances. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary< + | { keyHash: string & Brand<"KeyHash">; _tag: "KeyHashDRep" } + | { scriptHash: string & Brand<"ScriptHash">; _tag: "ScriptHashDRep" } + | { _tag: "AlwaysAbstainDRep" } + | { _tag: "AlwaysNoConfidenceDRep" } +> +``` + +Added in v2.0.0 + +# model + +## AlwaysAbstainDRep (type alias) + +Type alias for AlwaysAbstainDRep. + +**Signature** + +```ts +export type AlwaysAbstainDRep = Extract +``` + +Added in v2.0.0 + +## AlwaysNoConfidenceDRep (type alias) + +Type alias for AlwaysNoConfidenceDRep. + +**Signature** + +```ts +export type AlwaysNoConfidenceDRep = Extract +``` + +Added in v2.0.0 + +## DRep (type alias) + +Type alias for DRep. + +**Signature** + +```ts +export type DRep = typeof DRep.Type +``` + +Added in v2.0.0 + +## KeyHashDRep (type alias) + +Type alias for KeyHashDRep. + +**Signature** + +```ts +export type KeyHashDRep = Extract +``` + +Added in v2.0.0 + +## ScriptHashDRep (type alias) + +Type alias for ScriptHashDRep. + +**Signature** + +```ts +export type ScriptHashDRep = Extract +``` + +Added in v2.0.0 + +# predicates + +## isAlwaysAbstainDRep + +Check if a DRep is an AlwaysAbstainDRep. + +**Signature** + +```ts +export declare const isAlwaysAbstainDRep: (drep: DRep) => drep is AlwaysAbstainDRep +``` + +Added in v2.0.0 + +## isAlwaysNoConfidenceDRep + +Check if a DRep is an AlwaysNoConfidenceDRep. + +**Signature** + +```ts +export declare const isAlwaysNoConfidenceDRep: (drep: DRep) => drep is AlwaysNoConfidenceDRep +``` + +Added in v2.0.0 + +## isDRep + +Check if the given value is a valid DRep + +**Signature** + +```ts +export declare const isDRep: ( + u: unknown, + overrideOptions?: ParseOptions | number +) => u is + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" } +``` + +Added in v2.0.0 + +## isKeyHashDRep + +Check if a DRep is a KeyHashDRep. + +**Signature** + +```ts +export declare const isKeyHashDRep: (drep: DRep) => drep is KeyHashDRep +``` + +Added in v2.0.0 + +## isScriptHashDRep + +Check if a DRep is a ScriptHashDRep. + +**Signature** + +```ts +export declare const isScriptHashDRep: (drep: DRep) => drep is ScriptHashDRep +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for DRep. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Union< + [ + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple<[Schema.Literal<[2]>]>, + Schema.Tuple<[Schema.Literal<[3]>]> + ] + >, + Schema.SchemaClass< + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + never + >, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for DRep. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Union< + [ + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple<[Schema.Literal<[2]>]>, + Schema.Tuple<[Schema.Literal<[3]>]> + ] + >, + Schema.SchemaClass< + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + never + >, + never + > + > +> +``` + +Added in v2.0.0 + +## DRep + +Union schema for DRep representing different DRep types. + +drep = [0, addr_keyhash] / [1, script_hash] / [2] / [3] + +**Signature** + +```ts +export declare const DRep: Schema.Union< + [ + Schema.TaggedStruct< + "KeyHashDRep", + { keyHash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHashDRep", + { scriptHash: Schema.brand>, "ScriptHash"> } + >, + Schema.TaggedStruct<"AlwaysAbstainDRep", {}>, + Schema.TaggedStruct<"AlwaysNoConfidenceDRep", {}> + ] +> +``` + +Added in v2.0.0 + +## DRepCDDLSchema + +CDDL schema for DRep with proper transformation. +drep = [0, addr_keyhash] / [1, script_hash] / [2] / [3] + +**Signature** + +```ts +export declare const DRepCDDLSchema: Schema.transformOrFail< + Schema.Union< + [ + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple<[Schema.Literal<[2]>]>, + Schema.Tuple<[Schema.Literal<[3]>]> + ] + >, + Schema.SchemaClass< + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + never + >, + never +> +``` + +Added in v2.0.0 + +# transformation + +## match + +Pattern match on a DRep to handle different DRep types. + +**Signature** + +```ts +export declare const match: ( + drep: DRep, + cases: { + KeyHashDRep: (drep: KeyHashDRep) => A + ScriptHashDRep: (drep: ScriptHashDRep) => B + AlwaysAbstainDRep: (drep: AlwaysAbstainDRep) => C + AlwaysNoConfidenceDRep: (drep: AlwaysNoConfidenceDRep) => D + } +) => A | B | C | D +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: ( + input: + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" } + ) => any + cborHex: ( + input: + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" } + ) => string + } + Decode: { + cborBytes: ( + input: any + ) => + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" } + cborHex: ( + input: string + ) => + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" } + } + EncodeEffect: { + cborBytes: ( + input: + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" } + ) => Effect.Effect> + cborHex: ( + input: + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" } + ) => Effect.Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect.Effect< + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + InstanceType + > + cborHex: ( + input: string + ) => Effect.Effect< + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + InstanceType + > + } + EncodeEither: { + cborBytes: ( + input: + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" } + ) => Either> + cborHex: ( + input: + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" } + ) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either< + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + InstanceType + > + cborHex: ( + input: string + ) => Either< + | { readonly _tag: "KeyHashDRep"; readonly keyHash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHashDRep"; readonly scriptHash: string & Brand<"ScriptHash"> } + | { readonly _tag: "AlwaysAbstainDRep" } + | { readonly _tag: "AlwaysNoConfidenceDRep" }, + InstanceType + > + } +} +``` diff --git a/packages/evolution/docs/modules/DRepCredential.ts.md b/packages/evolution/docs/modules/DRepCredential.ts.md new file mode 100644 index 00000000..0c7ff26a --- /dev/null +++ b/packages/evolution/docs/modules/DRepCredential.ts.md @@ -0,0 +1,261 @@ +--- +title: DRepCredential.ts +nav_order: 39 +parent: Modules +--- + +## DRepCredential overview + +DRep Credential module - provides an alias for Credential specialized for DRep usage. + +In Cardano, drep_credential = credential, representing the same credential structure +but used specifically for delegation representatives (DReps). + +Added in v2.0.0 + +--- + +

Table of contents

+ +- [errors](#errors) + - [DRepCredentialError](#drepcredentialerror) +- [model](#model) + - [DRepCredential (type alias)](#drepcredential-type-alias) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [DRepCredential](#drepcredential) +- [utils](#utils) + - [FromHex](#FromHex) + - [Codec](#codec) + - [equals](#equals) + - [generator](#generator) + - [isCredential](#iscredential) + +--- + +# errors + +## DRepCredentialError + +Error class for DRepCredential operations - re-exports CredentialError. + +**Signature** + +```ts +export declare const DRepCredentialError: typeof Credential.CredentialError +``` + +Added in v2.0.0 + +# model + +## DRepCredential (type alias) + +Type representing a DRep credential - alias for Credential type. + +**Signature** + +```ts +export type DRepCredential = Credential.Credential +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR encoding/decoding schemas. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CodecOptions +) => transform< + transformOrFail, never>, + transformOrFail< + Tuple2, typeof Uint8ArrayFromSelf>, + SchemaClass< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + never + >, + never + > +> +``` + +Added in v2.0.0 + +## DRepCredential + +DRepCredential schema - alias for the Credential schema. +drep_credential = credential + +**Signature** + +```ts +export declare const DRepCredential: Union< + [ + TaggedStruct<"KeyHash", { hash: brand>, "KeyHash"> }>, + TaggedStruct<"ScriptHash", { hash: brand>, "ScriptHash"> }> + ] +> +``` + +Added in v2.0.0 + +# utils + +## FromHex + +**Signature** + +```ts +export declare const FromHex: ( + options?: CodecOptions +) => transform< + transform, typeof Uint8ArrayFromSelf>, + transform< + transformOrFail, never>, + transformOrFail< + Tuple2, typeof Uint8ArrayFromSelf>, + SchemaClass< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + never + >, + never + > + > +> +``` + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CodecOptions) => { + Encode: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => any + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => string + } + Decode: { + cborBytes: ( + input: any + ) => + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + cborHex: ( + input: string + ) => + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + } + EncodeEffect: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Effect> + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + cborHex: ( + input: string + ) => Effect< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + } + EncodeEither: { + cborBytes: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Either> + cborHex: ( + input: + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } + ) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + cborHex: ( + input: string + ) => Either< + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> }, + InstanceType + > + } +} +``` + +## equals + +**Signature** + +```ts +export declare const equals: (a: Credential.Credential, b: Credential.Credential) => boolean +``` + +## generator + +**Signature** + +```ts +export declare const generator: Arbitrary< + { _tag: "KeyHash"; hash: string & Brand<"KeyHash"> } | { _tag: "ScriptHash"; hash: string & Brand<"ScriptHash"> } +> +``` + +## isCredential + +Re-exported utilities from Credential module. + +**Signature** + +```ts +export declare const isCredential: ( + u: unknown, + overrideOptions?: ParseOptions | number +) => u is + | { readonly _tag: "KeyHash"; readonly hash: string & Brand<"KeyHash"> } + | { readonly _tag: "ScriptHash"; readonly hash: string & Brand<"ScriptHash"> } +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/Data.ts.md b/packages/evolution/docs/modules/Data.ts.md new file mode 100644 index 00000000..fbfac8a1 --- /dev/null +++ b/packages/evolution/docs/modules/Data.ts.md @@ -0,0 +1,599 @@ +--- +title: Data.ts +nav_order: 32 +parent: Modules +--- + +## Data overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [bytearray](#bytearray) + - [constr](#constr) + - [int](#int) + - [list](#list) + - [map](#map) +- [errors](#errors) + - [DataError (class)](#dataerror-class) +- [generators](#generators) + - [genConstr](#genconstr) + - [genPlutusBigInt](#genplutusbigint) + - [genPlutusBytes](#genplutusbytes) + - [genPlutusData](#genplutusdata) + - [genPlutusList](#genplutuslist) + - [genPlutusMap](#genplutusmap) + - [generator](#generator) +- [model](#model) + - [Data (type alias)](#data-type-alias) + - [FromCBORBytes](#fromcborbytes) + - [List (type alias)](#list-type-alias) + - [MapList (type alias)](#maplist-type-alias) +- [predicates](#predicates) + - [isBytes](#isbytes) + - [isConstr](#isconstr) + - [isInt](#isint) + - [isList](#islist) + - [isMap](#ismap) +- [schemas](#schemas) + - [BytesSchema](#bytesschema) + - [Constr (class)](#constr-class) + - [DataSchema](#dataschema) + - [IntSchema](#intschema) + - [ListSchema](#listschema) + - [MapSchema](#mapschema) +- [transformation](#transformation) + - [cborValueToPlutusData](#cborvaluetoplutusdata) + - [plutusDataToCBORValue](#plutusdatatocborvalue) +- [utilities](#utilities) + - [matchConstr](#matchconstr) + - [matchData](#matchdata) +- [utils](#utils) + - [ByteArray (type alias)](#bytearray-type-alias) + - [Codec](#codec) + - [FromCBORHex](#fromcborhex) + - [Int (type alias)](#int-type-alias) + +--- + +# constructors + +## bytearray + +Creates Plutus bounded bytes from hex string + +**Signature** + +```ts +export declare const bytearray: (bytes: string) => ByteArray +``` + +Added in v2.0.0 + +## constr + +Creates a constructor with the specified index and data + +**Signature** + +```ts +export declare const constr: (index: bigint, data: Array) => Constr +``` + +Added in v2.0.0 + +## int + +Creates Plutus big integer + +**Signature** + +```ts +export declare const int: (integer: bigint) => Int +``` + +Added in v2.0.0 + +## list + +Creates a Plutus list from items + +**Signature** + +```ts +export declare const list: (list: Array) => List +``` + +Added in v2.0.0 + +## map + +Creates a Plutus map from key-value pairs + +**Signature** + +```ts +export declare const map: (entries: Array<{ key: Data; value: Data }>) => MapList +``` + +Added in v2.0.0 + +# errors + +## DataError (class) + +Error class for Data related operations. + +**Signature** + +```ts +export declare class DataError +``` + +Added in v2.0.0 + +# generators + +## genConstr + +Creates an arbitrary that generates Constr values + +**Signature** + +```ts +export declare const genConstr: (depth: number) => FastCheck.Arbitrary +``` + +Added in v2.0.0 + +## genPlutusBigInt + +Creates an arbitrary that generates PlutusBigInt values + +**Signature** + +```ts +export declare const genPlutusBigInt: () => FastCheck.Arbitrary +``` + +Added in v2.0.0 + +## genPlutusBytes + +Creates an arbitrary that generates PlutusBytes values + +**Signature** + +```ts +export declare const genPlutusBytes: () => FastCheck.Arbitrary +``` + +Added in v2.0.0 + +## genPlutusData + +Creates an arbitrary that generates PlutusData values with controlled depth + +**Signature** + +```ts +export declare const genPlutusData: (depth?: number) => FastCheck.Arbitrary +``` + +Added in v2.0.0 + +## genPlutusList + +Creates an arbitrary that generates PlutusList values + +**Signature** + +```ts +export declare const genPlutusList: (depth: number) => FastCheck.Arbitrary +``` + +Added in v2.0.0 + +## genPlutusMap + +Creates an arbitrary that generates PlutusMap values with unique keys +Following a similar distribution pattern: + +- 60% PlutusBigInt keys +- 30% PlutusBytes keys +- 10% Complex keys + +**Signature** + +```ts +export declare const genPlutusMap: (depth: number) => FastCheck.Arbitrary +``` + +Added in v2.0.0 + +## generator + +FastCheck generators for PlutusData types + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## Data (type alias) + +PlutusData type definition based on Conway CDDL specification + +``` +CDDL: plutus_data = + constr + / {* plutus_data => plutus_data} + / [* plutus_data] + / big_int + / bounded_bytes + +constr = + #6.121([* a0]) + / #6.122([* a0]) + / #6.123([* a0]) + / #6.124([* a0]) + / #6.125([* a0]) + / #6.126([* a0]) + / #6.127([* a0]) + / #6.102([uint, [* a0]]) +``` + +Constructor Index Limits: + +- Tags 121-127: Direct encoding for constructor indices 0-6 +- Tag 102: General constructor encoding for any uint value +- Maximum constructor index: 2^64 - 1 (18,446,744,073,709,551,615) + as per CBOR RFC 8949 specification for unsigned integers + +**Signature** + +```ts +export type Data = Constr | MapList | List | Int | ByteArray +``` + +Added in v2.0.0 + +## FromCBORBytes + +CBOR value representation for PlutusData +This represents the intermediate CBOR structure that corresponds to PlutusData + +**Signature** + +```ts +export declare const FromCBORBytes: ( + options?: CBOR.CodecOptions +) => Schema.transformOrFail, never> +``` + +Added in v2.0.0 + +## List (type alias) + +PlutusList type for plutus data lists + +**Signature** + +```ts +export type List = ReadonlyArray +``` + +Added in v2.0.0 + +## MapList (type alias) + +Constr type for constructor alternatives based on Conway CDDL specification + +``` +CDDL: constr = + #6.121([* a0]) // index 0 + / #6.122([* a0]) // index 1 + / #6.123([* a0]) // index 2 + / #6.124([* a0]) // index 3 + / #6.125([* a0]) // index 4 + / #6.126([* a0]) // index 5 + / #6.127([* a0]) // index 6 + / #6.102([uint, [* a0]]) // general constructor with custom index +``` + +Constructor Index Range: + +- Minimum: 0 +- Maximum: 2^64 - 1 (18,446,744,073,709,551,615) + as per CBOR RFC 8949 specification for unsigned integers + +**Signature** + +```ts +export type MapList = Map +``` + +Added in v2.0.0 + +# predicates + +## isBytes + +Type guard to check if a value is a PlutusBytes + +**Signature** + +```ts +export declare const isBytes: (u: unknown, overrideOptions?: ParseOptions | number) => u is string +``` + +Added in v2.0.0 + +## isConstr + +Type guard to check if a value is a Constr + +**Signature** + +```ts +export declare const isConstr: (data: unknown) => data is Constr +``` + +Added in v2.0.0 + +## isInt + +Type guard to check if a value is a PlutusBigInt + +**Signature** + +```ts +export declare const isInt: (u: unknown, overrideOptions?: ParseOptions | number) => u is bigint +``` + +Added in v2.0.0 + +## isList + +Type guard to check if a value is a PlutusList + +**Signature** + +```ts +export declare const isList: (u: unknown, overrideOptions?: ParseOptions | number) => u is readonly Data[] +``` + +Added in v2.0.0 + +## isMap + +Type guard to check if a value is a PlutusMap + +**Signature** + +```ts +export declare const isMap: (u: unknown, overrideOptions?: ParseOptions | number) => u is Map +``` + +Added in v2.0.0 + +# schemas + +## BytesSchema + +Schema for PlutusBytes data type + +**Signature** + +```ts +export declare const BytesSchema: Schema.refine +``` + +Added in v2.0.0 + +## Constr (class) + +Schema for Constr data type + +**Signature** + +```ts +export declare class Constr +``` + +Added in v2.0.0 + +## DataSchema + +Combined schema for PlutusData type + +**Signature** + +```ts +export declare const DataSchema: Schema.Schema +``` + +Added in v2.0.0 + +## IntSchema + +Schema for PlutusBigInt data type + +Matches the CDDL specification for big_int: + +``` +big_int = int / big_uint / big_nint +big_uint = #6.2(bounded_bytes) +big_nint = #6.3(bounded_bytes) +``` + +Where: + +- `int` covers integers that fit in CBOR major types 0 and 1 (0 to 2^64-1 for positive, -(2^64-1) to -1 for negative) +- `big_uint` (tag 2) covers positive integers larger than 2^64-1 +- `big_nint` (tag 3) covers negative integers smaller than -(2^64-1) + +Note: JavaScript's Number.MAX_SAFE_INTEGER (2^53-1) is much smaller than CBOR's 64-bit limit. + +**Signature** + +```ts +export declare const IntSchema: Schema.SchemaClass +``` + +Added in v2.0.0 + +## ListSchema + +Schema for PlutusList data type + +**Signature** + +```ts +export declare const ListSchema: Schema.Array$> +``` + +Added in v2.0.0 + +## MapSchema + +Schema for PlutusMap data type + +**Signature** + +```ts +export declare const MapSchema: Schema.MapFromSelf, Schema.suspend> +``` + +Added in v2.0.0 + +# transformation + +## cborValueToPlutusData + +Convert CBORValue to PlutusData + +**Signature** + +```ts +export declare const cborValueToPlutusData: (cborValue: CBOR.CBOR) => Data +``` + +Added in v2.0.0 + +## plutusDataToCBORValue + +Convert PlutusData to CBORValue + +**Signature** + +```ts +export declare const plutusDataToCBORValue: (data: Data) => CBOR.CBOR +``` + +Added in v2.0.0 + +# utilities + +## matchConstr + +Pattern matching helper for Constr types + +**Signature** + +```ts +export declare const matchConstr: ( + constr: Constr, + cases: { [key: number]: (fields: ReadonlyArray) => T; _: (index: number, fields: ReadonlyArray) => T } +) => T +``` + +Added in v2.0.0 + +## matchData + +Pattern matching helper for PlutusData types + +**Signature** + +```ts +export declare const matchData: ( + data: Data, + cases: { + Map: (entries: ReadonlyArray<[Data, Data]>) => T + List: (items: ReadonlyArray) => T + Int: (value: bigint) => T + Bytes: (bytes: string) => T + Constr: (constr: Constr) => T + } +) => T +``` + +Added in v2.0.0 + +# utils + +## ByteArray (type alias) + +**Signature** + +```ts +export type ByteArray = typeof BytesSchema.Type +``` + +## Codec + +**Signature** + +```ts +export declare function Codec(params: { + schema: Schema.Schema + options?: CBOR.CodecOptions +}): ReturnType< + typeof _Codec.createEncoders< + { + toData: Schema.Schema + cborHex: Schema.Schema + cborBytes: Schema.Schema + }, + typeof DataError + > +> +export declare function Codec(params?: { options?: CBOR.CodecOptions }): ReturnType< + typeof _Codec.createEncoders< + { + cborHex: Schema.Schema + cborBytes: Schema.Schema + }, + typeof DataError + > +> +``` + +## FromCBORHex + +**Signature** + +```ts +export declare const FromCBORHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transformOrFail, never> +> +``` + +## Int (type alias) + +**Signature** + +```ts +export type Int = typeof IntSchema.Type +``` diff --git a/packages/evolution/docs/modules/DataJson.ts.md b/packages/evolution/docs/modules/DataJson.ts.md new file mode 100644 index 00000000..f1d1ff97 --- /dev/null +++ b/packages/evolution/docs/modules/DataJson.ts.md @@ -0,0 +1,327 @@ +--- +title: DataJson.ts +nav_order: 33 +parent: Modules +--- + +## DataJson overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [ByteArray](#bytearray) + - [ByteArray (interface)](#bytearray-interface) + - [Constr](#constr) + - [Constr (interface)](#constr-interface) + - [Data](#data) + - [Data (type alias)](#data-type-alias) + - [Integer](#integer) + - [Integer (interface)](#integer-interface) + - [List](#list) + - [List (interface)](#list-interface) + - [Map](#map) + - [Map (type alias)](#map-type-alias) + - [fromCBOR](#fromcbor) + - [fromData](#fromdata) + - [isByteArray](#isbytearray) + - [isConstr](#isconstr) + - [isInteger](#isinteger) + - [isList](#islist) + - [isMap](#ismap) + - [mkByteArray](#mkbytearray) + - [mkConstr](#mkconstr) + - [mkConstr (interface)](#mkconstr-interface) + - [mkInteger](#mkinteger) + - [mkMap](#mkmap) + - [resolveCBOR](#resolvecbor) + - [toCBOR](#tocbor) + - [toData](#todata) + +--- + +# utils + +## ByteArray + +**Signature** + +```ts +export declare const ByteArray: Schema.Struct<{ bytes: Schema.filter> }> +``` + +## ByteArray (interface) + +**Signature** + +```ts +export interface ByteArray { + readonly bytes: string +} +``` + +## Constr + +**Signature** + +```ts +export declare const Constr: Schema.Struct<{ + constructor: typeof Schema.Number + fields: Schema.Array$> +}> +``` + +## Constr (interface) + +**Signature** + +```ts +export interface Constr { + readonly constructor: number + readonly fields: ReadonlyArray +} +``` + +## Data + +**Signature** + +```ts +export declare const Data: Schema.Schema +``` + +## Data (type alias) + +Plutus data types and schemas for serialization/deserialization between +TypeScript types and Cardano's Plutus data format + +**Signature** + +```ts +export type Data = Integer | ByteArray | List | Map | Constr +``` + +Added in v1.0.0 + +## Integer + +**Signature** + +```ts +export declare const Integer: Schema.Struct<{ int: typeof Schema.Number }> +``` + +## Integer (interface) + +**Signature** + +```ts +export interface Integer { + readonly int: number +} +``` + +## List + +**Signature** + +```ts +export declare const List: Schema.Array$> +``` + +## List (interface) + +**Signature** + +```ts +export interface List extends ReadonlyArray {} +``` + +## Map + +**Signature** + +```ts +export declare const Map: Schema.Record$> +``` + +## Map (type alias) + +**Signature** + +```ts +export type Map = { + readonly [key: string]: Data +} +``` + +## fromCBOR + +Decodes a CBOR hex string to a TypeScript type + +**Signature** + +```ts +export declare function fromCBOR(input: string): Data +export declare function fromCBOR( + input: string, + schema: Schema.Schema +): Source +``` + +Added in v1.0.0 + +## fromData + +Decodes an unknown value from Plutus Data Constructor to a TypeScript type + +**Signature** + +```ts +export declare const fromData: ( + input: unknown, + schema: Schema.Schema, + options?: SchemaAST.ParseOptions +) => Source +``` + +Added in v1.0.0 + +## isByteArray + +**Signature** + +```ts +export declare const isByteArray: ( + u: unknown, + overrideOptions?: SchemaAST.ParseOptions | number +) => u is { readonly bytes: string } +``` + +## isConstr + +**Signature** + +```ts +export declare const isConstr: ( + u: unknown, + overrideOptions?: SchemaAST.ParseOptions | number +) => u is { readonly fields: readonly Data[]; readonly constructor: number } +``` + +## isInteger + +**Signature** + +```ts +export declare const isInteger: ( + u: unknown, + overrideOptions?: SchemaAST.ParseOptions | number +) => u is { readonly int: number } +``` + +## isList + +**Signature** + +```ts +export declare const isList: (u: unknown, overrideOptions?: SchemaAST.ParseOptions | number) => u is readonly Data[] +``` + +## isMap + +**Signature** + +```ts +export declare const isMap: ( + u: unknown, + overrideOptions?: SchemaAST.ParseOptions | number +) => u is { readonly [x: string]: Data } +``` + +## mkByteArray + +**Signature** + +```ts +export declare const mkByteArray: (bytes: string) => ByteArray +``` + +## mkConstr + +**Signature** + +```ts +export declare const mkConstr: ( + constructor: number, + fields: ReadonlyArray +) => { readonly constructor: number; readonly fields: ReadonlyArray } +``` + +## mkConstr (interface) + +**Signature** + +```ts +export interface mkConstr { + readonly constructor: number + readonly fields: ReadonlyArray +} +``` + +## mkInteger + +**Signature** + +```ts +export declare const mkInteger: (int: number) => Integer +``` + +## mkMap + +**Signature** + +```ts +export declare const mkMap: (map: Record) => Readonly +``` + +## resolveCBOR + +**Signature** + +```ts +export declare const resolveCBOR: (input: string) => Data +``` + +## toCBOR + +Converts TypeScript data into CBOR hex string + +**Signature** + +```ts +export declare const toCBOR: ( + input: unknown, + schema?: Schema.Schema, + options?: { canonical?: boolean; parseOptions?: SchemaAST.ParseOptions } +) => string +``` + +Added in v1.0.0 + +## toData + +Encodes a TypeScript value to Plutus Data Constructor + +**Signature** + +```ts +export declare const toData: ( + input: unknown, + schema: Schema.Schema, + options?: SchemaAST.ParseOptions +) => Target +``` + +Added in v1.0.0 diff --git a/packages/evolution/docs/modules/DatumOption.ts.md b/packages/evolution/docs/modules/DatumOption.ts.md new file mode 100644 index 00000000..2932284a --- /dev/null +++ b/packages/evolution/docs/modules/DatumOption.ts.md @@ -0,0 +1,327 @@ +--- +title: DatumOption.ts +nav_order: 34 +parent: Modules +--- + +## DatumOption overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [fromHash](#fromhash) + - [fromInlineData](#frominlinedata) +- [errors](#errors) + - [DatumOptionError (class)](#datumoptionerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [DatumOption (type alias)](#datumoption-type-alias) +- [predicates](#predicates) + - [isDatumHash](#isdatumhash) + - [isInlineDatum](#isinlinedatum) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [DatumHash (class)](#datumhash-class) + - [DatumOptionCDDLSchema](#datumoptioncddlschema) + - [DatumOptionSchema](#datumoptionschema) + - [InlineDatum (class)](#inlinedatum-class) +- [transformation](#transformation) + - [getData](#getdata) + - [getHash](#gethash) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## fromHash + +Create a DatumOption with a datum hash. + +**Signature** + +```ts +export declare const fromHash: (hash: string) => DatumOption +``` + +Added in v2.0.0 + +## fromInlineData + +Create a DatumOption with inline data. + +**Signature** + +```ts +export declare const fromInlineData: (data: PlutusData.Data) => DatumOption +``` + +Added in v2.0.0 + +# errors + +## DatumOptionError (class) + +Error class for DatumOption related operations. + +**Signature** + +```ts +export declare class DatumOptionError +``` + +Added in v2.0.0 + +# generators + +## generator + +FastCheck generator for DatumOption instances. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## DatumOption (type alias) + +Type alias for DatumOption representing optional datum information. +Can be either a hash reference to datum data or inline plutus data. + +**Signature** + +```ts +export type DatumOption = typeof DatumOptionSchema.Type +``` + +Added in v2.0.0 + +# predicates + +## isDatumHash + +Check if a DatumOption is a datum hash. + +**Signature** + +```ts +export declare const isDatumHash: (datumOption: DatumOption) => datumOption is DatumHash +``` + +Added in v2.0.0 + +## isInlineDatum + +Check if a DatumOption is inline data. + +**Signature** + +```ts +export declare const isInlineDatum: (datumOption: DatumOption) => datumOption is InlineDatum +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for DatumOption. +Transforms between Uint8Array and DatumOption using CBOR encoding. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Union< + [ + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple2, Schema.Schema> + ] + >, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for DatumOption. +Transforms between hex string and DatumOption using CBOR encoding. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Union< + [ + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple2, Schema.Schema> + ] + >, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## DatumHash (class) + +Schema for DatumHash variant of DatumOption. +Represents a reference to datum data stored elsewhere via its hash. + +**Signature** + +```ts +export declare class DatumHash +``` + +Added in v2.0.0 + +## DatumOptionCDDLSchema + +CDDL schema for DatumOption. +datum_option = [0, Bytes32// 1, data] + +Where: + +- [0, Bytes32] represents a datum hash (tag 0 with 32-byte hash) +- [1, data] represents inline data (tag 1 with CBOR-encoded plutus data) + +**Signature** + +```ts +export declare const DatumOptionCDDLSchema: Schema.transformOrFail< + Schema.Union< + [ + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple2, Schema.Schema> + ] + >, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +## DatumOptionSchema + +Schema for DatumOption representing optional datum information in transaction outputs. + +CDDL: datum_option = [0, Bytes32// 1, data] + +Where: + +- [0, Bytes32] represents a datum hash reference +- [1, data] represents inline plutus data + +**Signature** + +```ts +export declare const DatumOptionSchema: Schema.Union<[typeof DatumHash, typeof InlineDatum]> +``` + +Added in v2.0.0 + +## InlineDatum (class) + +Schema for InlineDatum variant of DatumOption. +Represents inline plutus data embedded directly in the transaction output. + +**Signature** + +```ts +export declare class InlineDatum +``` + +Added in v2.0.0 + +# transformation + +## getData + +Get the data from an InlineDatum, or undefined if it's not an InlineDatum. + +**Signature** + +```ts +export declare const getData: (datumOption: DatumOption) => PlutusData.Data | undefined +``` + +Added in v2.0.0 + +## getHash + +Get the hash from a DatumHash, or undefined if it's not a DatumHash. + +**Signature** + +```ts +export declare const getHash: (datumOption: DatumOption) => string | undefined +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: DatumHash | InlineDatum) => any; cborHex: (input: DatumHash | InlineDatum) => string } + Decode: { cborBytes: (input: any) => DatumHash | InlineDatum; cborHex: (input: string) => DatumHash | InlineDatum } + EncodeEffect: { + cborBytes: (input: DatumHash | InlineDatum) => Effect.Effect> + cborHex: (input: DatumHash | InlineDatum) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: DatumHash | InlineDatum) => Either> + cborHex: (input: DatumHash | InlineDatum) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/packages/evolution/docs/modules/Devnet/Devnet.ts.md b/packages/evolution/docs/modules/Devnet/Devnet.ts.md new file mode 100644 index 00000000..bd124d89 --- /dev/null +++ b/packages/evolution/docs/modules/Devnet/Devnet.ts.md @@ -0,0 +1,107 @@ +--- +title: Devnet/Devnet.ts +nav_order: 35 +parent: Modules +--- + +## Devnet overview + +--- + +

Table of contents

+ +- [cluster](#cluster) + - [Cluster](#cluster-1) +- [container](#container) + - [Container](#container-1) +- [utils](#utils) + - [CardanoDevNetError (class)](#cardanodevneterror-class) + - [DevNetCluster (interface)](#devnetcluster-interface) + - [DevNetContainer (interface)](#devnetcontainer-interface) + +--- + +# cluster + +## Cluster + +Cluster management operations for Cardano DevNet. + +**Signature** + +```ts +export declare const Cluster: { + readonly make: (config?: DevnetDefault.DevNetConfig) => Effect.Effect + readonly makeOrThrow: (config?: DevnetDefault.DevNetConfig) => Promise + readonly start: (cluster: DevNetCluster) => Effect.Effect + readonly startOrThrow: (cluster: DevNetCluster) => Promise + readonly stop: (cluster: DevNetCluster) => Effect.Effect + readonly stopOrThrow: (cluster: DevNetCluster) => Promise + readonly remove: (cluster: DevNetCluster) => Effect.Effect + readonly removeOrThrow: (cluster: DevNetCluster) => Promise +} +``` + +Added in v2.0.0 + +# container + +## Container + +Individual container management operations. + +**Signature** + +```ts +export declare const Container: { + readonly start: (container: DevNetContainer) => Effect.Effect + readonly startOrThrow: (container: DevNetContainer) => Promise + readonly stop: (container: DevNetContainer) => Effect.Effect + readonly stopOrThrow: (container: DevNetContainer) => Promise + readonly remove: (container: DevNetContainer) => Effect.Effect + readonly removeOrThrow: (container: DevNetContainer) => Promise + readonly getStatus: ( + container: DevNetContainer + ) => Effect.Effect + readonly getStatusOrThrow: (container: DevNetContainer) => Promise + readonly isImageAvailable: (imageName: string) => Effect.Effect + readonly isImageAvailableOrThrow: (imageName: string) => Promise + readonly downloadImage: (imageName: string) => Effect.Effect +} +``` + +Added in v2.0.0 + +# utils + +## CardanoDevNetError (class) + +**Signature** + +```ts +export declare class CardanoDevNetError +``` + +## DevNetCluster (interface) + +**Signature** + +```ts +export interface DevNetCluster { + readonly cardanoNode: DevNetContainer + readonly kupo?: DevNetContainer | undefined + readonly ogmios?: DevNetContainer | undefined + readonly networkName: string +} +``` + +## DevNetContainer (interface) + +**Signature** + +```ts +export interface DevNetContainer { + readonly id: string + readonly name: string +} +``` diff --git a/packages/evolution/docs/modules/Devnet/DevnetDefault.ts.md b/packages/evolution/docs/modules/Devnet/DevnetDefault.ts.md new file mode 100644 index 00000000..323d24b2 --- /dev/null +++ b/packages/evolution/docs/modules/Devnet/DevnetDefault.ts.md @@ -0,0 +1,1370 @@ +--- +title: Devnet/DevnetDefault.ts +nav_order: 36 +parent: Modules +--- + +## DevnetDefault overview + +Type definitions for configuration objects to allow flexible values +while maintaining structure compatibility. + +--- + +

Table of contents

+ +- [constants](#constants) + - [DEFAULT_ALONZO_GENESIS](#default_alonzo_genesis) + - [DEFAULT_BYRON_GENESIS](#default_byron_genesis) + - [DEFAULT_CONWAY_GENESIS](#default_conway_genesis) + - [DEFAULT_DEVNET_CONFIG](#default_devnet_config) + - [DEFAULT_KES_KEY](#default_kes_key) + - [DEFAULT_KUPO_CONFIG](#default_kupo_config) + - [DEFAULT_NODE_CONFIG](#default_node_config) + - [DEFAULT_OGMIOS_CONFIG](#default_ogmios_config) + - [DEFAULT_OPCERT](#default_opcert) + - [DEFAULT_SHELLEY_GENESIS](#default_shelley_genesis) + - [DEFAULT_VRF_SKEY](#default_vrf_skey) +- [model](#model) + - [DevNetConfig (interface)](#devnetconfig-interface) + - [KupoConfig (interface)](#kupoconfig-interface) + - [OgmiosConfig (interface)](#ogmiosconfig-interface) +- [utils](#utils) + - [AlonzoGenesis (type alias)](#alonzogenesis-type-alias) + - [ByronGenesis (type alias)](#byrongenesis-type-alias) + - [ConwayGenesis (type alias)](#conwaygenesis-type-alias) + - [KesKey (type alias)](#keskey-type-alias) + - [NodeConfig (type alias)](#nodeconfig-type-alias) + - [OpCert (type alias)](#opcert-type-alias) + - [ShelleyGenesis (type alias)](#shelleygenesis-type-alias) + - [VrfSkey (type alias)](#vrfskey-type-alias) + +--- + +# constants + +## DEFAULT_ALONZO_GENESIS + +Default Alonzo genesis configuration for Cardano DevNet. +Contains Plutus script execution parameters, cost models, and resource limits. + +**Signature** + +```ts +export declare const DEFAULT_ALONZO_GENESIS: { + readonly lovelacePerUTxOWord: 34482 + readonly executionPrices: { + readonly prSteps: { readonly numerator: 721; readonly denominator: 10000000 } + readonly prMem: { readonly numerator: 577; readonly denominator: 10000 } + } + readonly maxTxExUnits: { readonly exUnitsMem: 10000000; readonly exUnitsSteps: 10000000000 } + readonly maxBlockExUnits: { readonly exUnitsMem: 50000000; readonly exUnitsSteps: 40000000000 } + readonly maxValueSize: 5000 + readonly collateralPercentage: 150 + readonly maxCollateralInputs: 3 + readonly costModels: { + readonly PlutusV1: readonly [ + 100788, + 420, + 1, + 1, + 1000, + 173, + 0, + 1, + 1000, + 59957, + 4, + 1, + 11183, + 32, + 201305, + 8356, + 4, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 100, + 100, + 16000, + 100, + 94375, + 32, + 132994, + 32, + 61462, + 4, + 72010, + 178, + 0, + 1, + 22151, + 32, + 91189, + 769, + 4, + 2, + 85848, + 228465, + 122, + 0, + 1, + 1, + 1000, + 42921, + 4, + 2, + 24548, + 29498, + 38, + 1, + 898148, + 27279, + 1, + 51775, + 558, + 1, + 39184, + 1000, + 60594, + 1, + 141895, + 32, + 83150, + 32, + 15299, + 32, + 76049, + 1, + 13169, + 4, + 22100, + 10, + 28999, + 74, + 1, + 28999, + 74, + 1, + 43285, + 552, + 1, + 44749, + 541, + 1, + 33852, + 32, + 68246, + 32, + 72362, + 32, + 7243, + 32, + 7391, + 32, + 11546, + 32, + 85848, + 228465, + 122, + 0, + 1, + 1, + 90434, + 519, + 0, + 1, + 74433, + 32, + 85848, + 228465, + 122, + 0, + 1, + 1, + 85848, + 228465, + 122, + 0, + 1, + 1, + 270652, + 22588, + 4, + 1457325, + 64566, + 4, + 20467, + 1, + 4, + 0, + 141992, + 32, + 100788, + 420, + 1, + 1, + 81663, + 32, + 59498, + 32, + 20142, + 32, + 24588, + 32, + 20744, + 32, + 25933, + 32, + 24623, + 32, + 53384111, + 14333, + 10 + ] + readonly PlutusV2: readonly [ + 100788, + 420, + 1, + 1, + 1000, + 173, + 0, + 1, + 1000, + 59957, + 4, + 1, + 11183, + 32, + 201305, + 8356, + 4, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 100, + 100, + 16000, + 100, + 94375, + 32, + 132994, + 32, + 61462, + 4, + 72010, + 178, + 0, + 1, + 22151, + 32, + 91189, + 769, + 4, + 2, + 85848, + 228465, + 122, + 0, + 1, + 1, + 1000, + 42921, + 4, + 2, + 24548, + 29498, + 38, + 1, + 898148, + 27279, + 1, + 51775, + 558, + 1, + 39184, + 1000, + 60594, + 1, + 141895, + 32, + 83150, + 32, + 15299, + 32, + 76049, + 1, + 13169, + 4, + 22100, + 10, + 28999, + 74, + 1, + 28999, + 74, + 1, + 43285, + 552, + 1, + 44749, + 541, + 1, + 33852, + 32, + 68246, + 32, + 72362, + 32, + 7243, + 32, + 7391, + 32, + 11546, + 32, + 85848, + 228465, + 122, + 0, + 1, + 1, + 90434, + 519, + 0, + 1, + 74433, + 32, + 85848, + 228465, + 122, + 0, + 1, + 1, + 85848, + 228465, + 122, + 0, + 1, + 1, + 955506, + 213312, + 0, + 2, + 270652, + 22588, + 4, + 1457325, + 64566, + 4, + 20467, + 1, + 4, + 0, + 141992, + 32, + 100788, + 420, + 1, + 1, + 81663, + 32, + 59498, + 32, + 20142, + 32, + 24588, + 32, + 20744, + 32, + 25933, + 32, + 24623, + 32, + 43053543, + 10, + 53384111, + 14333, + 10, + 43574283, + 26308, + 10 + ] + } +} +``` + +Added in v2.0.0 + +## DEFAULT_BYRON_GENESIS + +Default Byron genesis configuration for Cardano DevNet. +Contains protocol constants and initial blockchain state for the Byron era. + +**Signature** + +```ts +export declare const DEFAULT_BYRON_GENESIS: { + readonly protocolConsts: { readonly k: 2160; readonly protocolMagic: 42 } + readonly startTime: number + readonly blockVersionData: { + readonly scriptVersion: 0 + readonly slotDuration: "250" + readonly maxBlockSize: "2000000" + readonly maxHeaderSize: "2000000" + readonly maxTxSize: "4096" + readonly maxProposalSize: "700" + readonly mpcThd: "20000000000000" + readonly heavyDelThd: "300000000000" + readonly updateVoteThd: "1000000000000" + readonly updateProposalThd: "100000000000000" + readonly updateImplicit: "10000" + readonly softforkRule: { + readonly initThd: "900000000000000" + readonly minThd: "600000000000000" + readonly thdDecrement: "50000000000000" + } + readonly txFeePolicy: { readonly summand: "155381000000000"; readonly multiplier: "43000000000" } + readonly unlockStakeEpoch: "18446744073709551615" + } + readonly bootStakeholders: { readonly "7a4519c93d7be4577dd85bd524c644e6b809e44eae0457b43128c1c7": 1 } + readonly heavyDelegation: {} + readonly nonAvvmBalances: {} + readonly avvmDistr: {} +} +``` + +Added in v2.0.0 + +## DEFAULT_CONWAY_GENESIS + +Default Conway genesis configuration for Cardano DevNet. +Contains governance parameters, voting thresholds, and Plutus V3 cost models. + +**Signature** + +```ts +export declare const DEFAULT_CONWAY_GENESIS: { + readonly poolVotingThresholds: { + readonly committeeNormal: 0.6 + readonly committeeNoConfidence: 0.51 + readonly hardForkInitiation: 0.51 + readonly motionNoConfidence: 0.6 + readonly ppSecurityGroup: 0.6 + } + readonly dRepVotingThresholds: { + readonly motionNoConfidence: 0.67 + readonly committeeNormal: 0.67 + readonly committeeNoConfidence: 0.6 + readonly updateToConstitution: 0.75 + readonly hardForkInitiation: 0.6 + readonly ppNetworkGroup: 0.67 + readonly ppEconomicGroup: 0.67 + readonly ppTechnicalGroup: 0.67 + readonly ppGovGroup: 0.75 + readonly treasuryWithdrawal: 0.67 + } + readonly committeeMinSize: 0 + readonly committeeMaxTermLength: 73 + readonly govActionLifetime: 8 + readonly govActionDeposit: 50000000000 + readonly dRepDeposit: 500000000 + readonly dRepActivity: 20 + readonly minFeeRefScriptCostPerByte: 44 + readonly plutusV3CostModel: readonly [ + 100788, + 420, + 1, + 1, + 1000, + 173, + 0, + 1, + 1000, + 59957, + 4, + 1, + 11183, + 32, + 201305, + 8356, + 4, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 16000, + 100, + 100, + 100, + 16000, + 100, + 94375, + 32, + 132994, + 32, + 61462, + 4, + 72010, + 178, + 0, + 1, + 22151, + 32, + 91189, + 769, + 4, + 2, + 85848, + 123203, + 7305, + -900, + 1716, + 549, + 57, + 85848, + 0, + 1, + 1, + 1000, + 42921, + 4, + 2, + 24548, + 29498, + 38, + 1, + 898148, + 27279, + 1, + 51775, + 558, + 1, + 39184, + 1000, + 60594, + 1, + 141895, + 32, + 83150, + 32, + 15299, + 32, + 76049, + 1, + 13169, + 4, + 22100, + 10, + 28999, + 74, + 1, + 28999, + 74, + 1, + 43285, + 552, + 1, + 44749, + 541, + 1, + 33852, + 32, + 68246, + 32, + 72362, + 32, + 7243, + 32, + 7391, + 32, + 11546, + 32, + 85848, + 123203, + 7305, + -900, + 1716, + 549, + 57, + 85848, + 0, + 1, + 90434, + 519, + 0, + 1, + 74433, + 32, + 85848, + 123203, + 7305, + -900, + 1716, + 549, + 57, + 85848, + 0, + 1, + 1, + 85848, + 123203, + 7305, + -900, + 1716, + 549, + 57, + 85848, + 0, + 1, + 955506, + 213312, + 0, + 2, + 270652, + 22588, + 4, + 1457325, + 64566, + 4, + 20467, + 1, + 4, + 0, + 141992, + 32, + 100788, + 420, + 1, + 1, + 81663, + 32, + 59498, + 32, + 20142, + 32, + 24588, + 32, + 20744, + 32, + 25933, + 32, + 24623, + 32, + 43053543, + 10, + 53384111, + 14333, + 10, + 43574283, + 26308, + 10, + 16000, + 100, + 16000, + 100, + 962335, + 18, + 2780678, + 6, + 442008, + 1, + 52538055, + 3756, + 18, + 267929, + 18, + 76433006, + 8868, + 18, + 52948122, + 18, + 1995836, + 36, + 3227919, + 12, + 901022, + 1, + 166917843, + 4307, + 36, + 284546, + 36, + 158221314, + 26549, + 36, + 74698472, + 36, + 333849714, + 1, + 254006273, + 72, + 2174038, + 72, + 2261318, + 64571, + 4, + 207616, + 8310, + 4, + 1293828, + 28716, + 63, + 0, + 1, + 1006041, + 43623, + 251, + 0, + 1 + ] + readonly constitution: { + readonly anchor: { + readonly url: "" + readonly dataHash: "0000000000000000000000000000000000000000000000000000000000000000" + } + } + readonly committee: { readonly members: {}; readonly threshold: 0.66 } +} +``` + +Added in v2.0.0 + +## DEFAULT_DEVNET_CONFIG + +Complete default configuration for Cardano DevNet. +Includes all required settings for running a local Cardano development network. + +**Signature** + +```ts +export declare const DEFAULT_DEVNET_CONFIG: Required +``` + +Added in v2.0.0 + +## DEFAULT_KES_KEY + +Default KES (Key Evolving Signature) signing key for Cardano DevNet. +Used for block production and stake pool operations. + +**Signature** + +```ts +export declare const DEFAULT_KES_KEY: { + readonly type: "KesSigningKey_ed25519_kes_2^6" + readonly description: "KES Signing Key" + readonly cborHex: "590260a199f16b11da6c7f5c1e0f1eb0b9bbe278d3d8f35bfd50d0951c2ff94d0344cd57df5f64c9bac1dd60b4482f9c636168f40737d526625a2ec82f22ec0c72de0013f86ef743a7bba0286db6ddf3d85bf8e49ddbf14d9d3b7ee22f4857c77b740948f84f2e72f6bcf91f405e34ea50a2c53fa4876b43cfce2bcfe87c06a903de8bb33d968ca7930b67d0c23f5cb2d74e422d773ba80e388de384691000d6ba8a9b4dc7d3187f76048fbef9a52b72d80d835bb76eced7c0e0cdc5b58869b73c095dffa01db4ff51765afcead565395a5ed1cf74e5f2134d61076fece21aacd080bbbfaab94125401d7bbc74eafc7e7e3a2235f59dc03d6e332e53d558493a1e22213b92c77b1328ff1b83855da704fc366bf4415490602481d1939136eeaf252c65184912a779d9d94a90e32b72c1877ef60b6d79e707ce5a762acb4bed46436efe4fe62aae50b39068cc508a09427c92791cbcbea44318529cc68d297ca24e1b73b2394c385ec63fcd85ed56eec3de48860a1ec950aad4f91cbf741dbd7bf1d3c278875bd20e31ff5372339f6aa5280ad9b8bf3514889ac44600fe57ca0b535d6dc6b0b981e079595aad186ee0be9b07e837391ab165e4ca406601c876a86e246a3f53311e21199cccc0b080f28d18f4dc6987731e10e4ade00df7c6921c5ef3022b6f49a29ba307a2c8f4bd2ba42fcfa0aad68a2f0ad31fff69a99d3471f9036d3f5817a3edfeff7fc3c14e1151d767aaa043481cfd1a6ee55e8e5d7853ecdaf9da2bb36c716beae8d706bc648a790d4697e1d044a11a49f305ab8bc64a094bd81bda7395fe6f77dd5557c39919dd9bb9cf22a87fe47408ae3ec2247007d015a5" +} +``` + +Added in v2.0.0 + +## DEFAULT_KUPO_CONFIG + +Default configuration for Kupo service + +**Signature** + +```ts +export declare const DEFAULT_KUPO_CONFIG: Required +``` + +Added in v2.0.0 + +## DEFAULT_NODE_CONFIG + +Default node configuration constants for Cardano DevNet. +These settings control the behavior of the Cardano node including +protocol parameters, logging, tracing, and hard fork schedules. + +**Signature** + +```ts +export declare const DEFAULT_NODE_CONFIG: { + readonly Protocol: "Cardano" + readonly ByronGenesisFile: "genesis-byron.json" + readonly ShelleyGenesisFile: "genesis-shelley.json" + readonly AlonzoGenesisFile: "genesis-alonzo.json" + readonly ConwayGenesisFile: "genesis-conway.json" + readonly ApplicationName: "cardano-sl" + readonly ApplicationVersion: 1 + readonly MaxKnownMajorProtocolVersion: 2 + readonly "LastKnownBlockVersion-Alt": 0 + readonly "LastKnownBlockVersion-Major": 6 + readonly "LastKnownBlockVersion-Minor": 0 + readonly TestShelleyHardForkAtEpoch: 0 + readonly TestAllegraHardForkAtEpoch: 0 + readonly TestMaryHardForkAtEpoch: 0 + readonly TestAlonzoHardForkAtEpoch: 0 + readonly TestBabbageHardForkAtEpoch: 0 + readonly TestConwayHardForkAtEpoch: 0 + readonly RequiresNetworkMagic: "RequiresNoMagic" + readonly minSeverity: "Info" + readonly defaultBackends: readonly ["KatipBK"] + readonly defaultScribes: readonly [readonly ["StdoutSK", "stdout"]] + readonly setupBackends: readonly ["KatipBK"] + readonly setupScribes: readonly [ + { readonly scFormat: "ScJson"; readonly scKind: "StdoutSK"; readonly scName: "stdout"; readonly scRotation: null } + ] + readonly TurnOnLogMetrics: true + readonly TurnOnLogging: true + readonly TracingVerbosity: "NormalVerbosity" + readonly TraceBlockFetchClient: false + readonly TraceBlockFetchDecisions: false + readonly TraceBlockFetchProtocol: false + readonly TraceBlockFetchProtocolSerialised: false + readonly TraceBlockFetchServer: false + readonly TraceChainDb: true + readonly TraceChainSyncBlockServer: false + readonly TraceChainSyncClient: false + readonly TraceChainSyncHeaderServer: false + readonly TraceChainSyncProtocol: false + readonly TraceDNSResolver: false + readonly TraceDNSSubscription: false + readonly TraceErrorPolicy: false + readonly TraceForge: true + readonly TraceHandshake: false + readonly TraceIpSubscription: false + readonly TraceLocalChainSyncProtocol: true + readonly TraceLocalErrorPolicy: false + readonly TraceLocalHandshake: false + readonly TraceLocalTxSubmissionProtocol: true + readonly TraceLocalTxSubmissionServer: true + readonly TraceMempool: true + readonly TraceMux: false + readonly TraceOptions: {} + readonly TraceTxInbound: false + readonly TraceTxOutbound: false + readonly TraceTxSubmissionProtocol: false + readonly hasEKG: 12788 + readonly hasPrometheus: readonly ["0.0.0.0", 12798] + readonly options: { + readonly mapBackends: { + readonly "cardano.node.metrics": readonly ["EKGViewBK"] + readonly "cardano.node.resources": readonly ["EKGViewBK"] + } + readonly mapSubtrace: { readonly "cardano.node.metrics": { readonly subtrace: "Neutral" } } + } + readonly ExperimentalHardForksEnabled: true + readonly ExperimentalProtocolsEnabled: true +} +``` + +Added in v2.0.0 + +## DEFAULT_OGMIOS_CONFIG + +Default configuration for Ogmios service + +**Signature** + +```ts +export declare const DEFAULT_OGMIOS_CONFIG: Required +``` + +Added in v2.0.0 + +## DEFAULT_OPCERT + +Default node operational certificate for Cardano DevNet. +Certifies the stake pool's authority to produce blocks. + +**Signature** + +```ts +export declare const DEFAULT_OPCERT: { + readonly type: "NodeOperationalCertificate" + readonly description: "" + readonly cborHex: "828458204cd49bb05e9885142fe7af1481107995298771fd1a24e72b506a4d600ee2b3120000584089fc9e9f551b2ea873bf31643659d049152d5c8e8de86be4056370bccc5fa62dd12e3f152f1664e614763e46eaa7a17ed366b5cef19958773d1ab96941442e0b58205a3d778e76741a009e29d23093cfe046131808d34d7c864967b515e98dfc3583" +} +``` + +Added in v2.0.0 + +## DEFAULT_SHELLEY_GENESIS + +Default Shelley genesis configuration for Cardano DevNet. +Contains protocol parameters, initial funds, staking configuration, and network settings. + +**Signature** + +```ts +export declare const DEFAULT_SHELLEY_GENESIS: { + readonly epochLength: 432000 + readonly activeSlotsCoeff: 1 + readonly slotLength: 1 + readonly securityParam: 2160 + readonly genDelegs: {} + readonly initialFunds: { + readonly "00813c32c92aad21770ff8001de0918f598df8c06775f77f8e8839d2a0074a515f7f32bf31a4f41c7417a8136e8152bfb42f06d71b389a6896": 900000000000 + readonly "609783be7d3c54f11377966dfabc9284cd6c32fca1cd42ef0a4f1cc45b": 900000000000 + } + readonly maxKESEvolutions: 60 + readonly maxLovelaceSupply: 2000000000000 + readonly networkId: "Testnet" + readonly networkMagic: 42 + readonly protocolParams: { + readonly a0: 0 + readonly decentralisationParam: 0 + readonly eMax: 18 + readonly extraEntropy: { readonly tag: "NeutralNonce" } + readonly keyDeposit: 0 + readonly maxBlockBodySize: 65536 + readonly maxBlockHeaderSize: 1100 + readonly maxTxSize: 16384 + readonly minFeeA: 44 + readonly minFeeB: 155381 + readonly minPoolCost: 0 + readonly minUTxOValue: 0 + readonly nOpt: 100 + readonly poolDeposit: 0 + readonly protocolVersion: { readonly major: 10; readonly minor: 0 } + readonly rho: 0.1 + readonly tau: 0.1 + } + readonly slotsPerKESPeriod: 129600 + readonly staking: { + readonly pools: { + readonly "8a219b698d3b6e034391ae84cee62f1d76b6fbc45ddfe4e31e0d4b60": { + readonly cost: 0 + readonly margin: 0 + readonly metadata: null + readonly owners: readonly [] + readonly pledge: 0 + readonly publicKey: "8a219b698d3b6e034391ae84cee62f1d76b6fbc45ddfe4e31e0d4b60" + readonly relays: readonly [] + readonly rewardAccount: { + readonly credential: { readonly "key hash": "b6ffb20cf821f9286802235841d4348a2c2bafd4f73092b7de6655ea" } + readonly network: "Testnet" + } + readonly vrf: "fec17ed60cbf2ec5be3f061fb4de0b6ef1f20947cfbfce5fb2783d12f3f69ff5" + } + } + readonly stake: { + readonly "074a515f7f32bf31a4f41c7417a8136e8152bfb42f06d71b389a6896": "8a219b698d3b6e034391ae84cee62f1d76b6fbc45ddfe4e31e0d4b60" + } + } + readonly systemStart: string + readonly updateQuorum: 2 +} +``` + +Added in v2.0.0 + +## DEFAULT_VRF_SKEY + +Default VRF (Verifiable Random Function) signing key for Cardano DevNet. +Used for leader election and randomness generation in the consensus protocol. + +**Signature** + +```ts +export declare const DEFAULT_VRF_SKEY: { + readonly type: "VrfSigningKey_PraosVRF" + readonly description: "VRF Signing Key" + readonly cborHex: "5840899795b70e9f34b737159fe21a6170568d6031e187f0cc84555c712b7c29b45cb882007593ef70f86e5c0948561a3b8e8851529a4f98975f2b24e768dda38ce2" +} +``` + +Added in v2.0.0 + +# model + +## DevNetConfig (interface) + +Configuration interface for Cardano DevNet setup. +All properties are optional, with sensible defaults provided. + +**Signature** + +```ts +export interface DevNetConfig { + readonly clusterName?: string + readonly image?: string + readonly ports?: { + readonly node: number + readonly submit: number + } + readonly networkMagic?: number + readonly nodeConfig?: Partial + readonly byronGenesis?: Partial + readonly shelleyGenesis?: Partial + readonly alonzoGenesis?: Partial + readonly conwayGenesis?: Partial + readonly kesKey?: Partial + readonly opCert?: Partial + readonly vrfSkey?: Partial + readonly kupo?: KupoConfig + readonly ogmios?: OgmiosConfig +} +``` + +Added in v2.0.0 + +## KupoConfig (interface) + +Configuration interface for Kupo - A fast, lightweight & configurable chain-index + +**Signature** + +```ts +export interface KupoConfig { + readonly enabled?: boolean + readonly image?: string + readonly port?: number + readonly logLevel?: "Debug" | "Info" | "Notice" | "Warning" | "Error" + readonly match?: string + readonly deferDbIndexes?: boolean + readonly since?: string +} +``` + +Added in v2.0.0 + +## OgmiosConfig (interface) + +Configuration interface for Ogmios - A lightweight bridge interface for Cardano + +**Signature** + +```ts +export interface OgmiosConfig { + readonly enabled?: boolean + readonly image?: string + readonly port?: number + readonly logLevel?: "debug" | "info" | "notice" | "warning" | "error" +} +``` + +Added in v2.0.0 + +# utils + +## AlonzoGenesis (type alias) + +**Signature** + +```ts +export type AlonzoGenesis = { + readonly lovelacePerUTxOWord: number + readonly executionPrices: { + readonly prSteps: { + readonly numerator: number + readonly denominator: number + } + readonly prMem: { + readonly numerator: number + readonly denominator: number + } + } + readonly maxTxExUnits: { + readonly exUnitsMem: number + readonly exUnitsSteps: number + } + readonly maxBlockExUnits: { + readonly exUnitsMem: number + readonly exUnitsSteps: number + } + readonly maxValueSize: number + readonly collateralPercentage: number + readonly maxCollateralInputs: number + readonly costModels: { + readonly PlutusV1: ReadonlyArray + readonly PlutusV2: ReadonlyArray + } +} +``` + +## ByronGenesis (type alias) + +**Signature** + +```ts +export type ByronGenesis = { + readonly protocolConsts: { + readonly k: number + readonly protocolMagic: number + } + readonly startTime: number + readonly blockVersionData: { + readonly scriptVersion: number + readonly slotDuration: string + readonly maxBlockSize: string + readonly maxHeaderSize: string + readonly maxTxSize: string + readonly maxProposalSize: string + readonly mpcThd: string + readonly heavyDelThd: string + readonly updateVoteThd: string + readonly updateProposalThd: string + readonly updateImplicit: string + readonly softforkRule: { + readonly initThd: string + readonly minThd: string + readonly thdDecrement: string + } + readonly txFeePolicy: { + readonly summand: string + readonly multiplier: string + } + readonly unlockStakeEpoch: string + } + readonly bootStakeholders: Record + readonly heavyDelegation: Record + readonly nonAvvmBalances: Record + readonly avvmDistr: Record +} +``` + +## ConwayGenesis (type alias) + +**Signature** + +```ts +export type ConwayGenesis = { + readonly poolVotingThresholds: { + readonly committeeNormal: number + readonly committeeNoConfidence: number + readonly hardForkInitiation: number + readonly motionNoConfidence: number + readonly ppSecurityGroup: number + } + readonly dRepVotingThresholds: { + readonly motionNoConfidence: number + readonly committeeNormal: number + readonly committeeNoConfidence: number + readonly updateToConstitution: number + readonly hardForkInitiation: number + readonly ppNetworkGroup: number + readonly ppEconomicGroup: number + readonly ppTechnicalGroup: number + readonly ppGovGroup: number + readonly treasuryWithdrawal: number + } + readonly committeeMinSize: number + readonly committeeMaxTermLength: number + readonly govActionLifetime: number + readonly govActionDeposit: number + readonly dRepDeposit: number + readonly dRepActivity: number + readonly minFeeRefScriptCostPerByte: number + readonly plutusV3CostModel: ReadonlyArray + readonly constitution: { + readonly anchor: { + readonly url: string + readonly dataHash: string + } + } + readonly committee: { + readonly members: Record + readonly threshold: number + } +} +``` + +## KesKey (type alias) + +**Signature** + +```ts +export type KesKey = { + readonly type: string + readonly description: string + readonly cborHex: string +} +``` + +## NodeConfig (type alias) + +Type definitions for configuration objects to allow flexible values +while maintaining structure compatibility. + +**Signature** + +```ts +export type NodeConfig = { + readonly Protocol: string + readonly ByronGenesisFile: string + readonly ShelleyGenesisFile: string + readonly AlonzoGenesisFile: string + readonly ConwayGenesisFile: string + readonly ApplicationName: string + readonly ApplicationVersion: number + readonly MaxKnownMajorProtocolVersion: number + readonly "LastKnownBlockVersion-Alt": number + readonly "LastKnownBlockVersion-Major": number + readonly "LastKnownBlockVersion-Minor": number + readonly TestShelleyHardForkAtEpoch: number + readonly TestAllegraHardForkAtEpoch: number + readonly TestMaryHardForkAtEpoch: number + readonly TestAlonzoHardForkAtEpoch: number + readonly TestBabbageHardForkAtEpoch: number + readonly TestConwayHardForkAtEpoch: number + readonly RequiresNetworkMagic: string + readonly minSeverity: string + readonly defaultBackends: ReadonlyArray + readonly defaultScribes: ReadonlyArray> + readonly setupBackends: ReadonlyArray + readonly setupScribes: ReadonlyArray<{ + readonly scFormat: string + readonly scKind: string + readonly scName: string + readonly scRotation: null + }> + readonly TurnOnLogMetrics: boolean + readonly TurnOnLogging: boolean + readonly TracingVerbosity: string + readonly TraceBlockFetchClient: boolean + readonly TraceBlockFetchDecisions: boolean + readonly TraceBlockFetchProtocol: boolean + readonly TraceBlockFetchProtocolSerialised: boolean + readonly TraceBlockFetchServer: boolean + readonly TraceChainDb: boolean + readonly TraceChainSyncBlockServer: boolean + readonly TraceChainSyncClient: boolean + readonly TraceChainSyncHeaderServer: boolean + readonly TraceChainSyncProtocol: boolean + readonly TraceDNSResolver: boolean + readonly TraceDNSSubscription: boolean + readonly TraceErrorPolicy: boolean + readonly TraceForge: boolean + readonly TraceHandshake: boolean + readonly TraceIpSubscription: boolean + readonly TraceLocalChainSyncProtocol: boolean + readonly TraceLocalErrorPolicy: boolean + readonly TraceLocalHandshake: boolean + readonly TraceLocalTxSubmissionProtocol: boolean + readonly TraceLocalTxSubmissionServer: boolean + readonly TraceMempool: boolean + readonly TraceMux: boolean + readonly TraceOptions: Record + readonly TraceTxInbound: boolean + readonly TraceTxOutbound: boolean + readonly TraceTxSubmissionProtocol: boolean + readonly hasEKG: number + readonly hasPrometheus: ReadonlyArray + readonly options: { + readonly mapBackends: Record> + readonly mapSubtrace: Record + } + readonly ExperimentalHardForksEnabled: boolean + readonly ExperimentalProtocolsEnabled: boolean +} +``` + +## OpCert (type alias) + +**Signature** + +```ts +export type OpCert = { + readonly type: string + readonly description: string + readonly cborHex: string +} +``` + +## ShelleyGenesis (type alias) + +**Signature** + +```ts +export type ShelleyGenesis = { + readonly epochLength: number + readonly activeSlotsCoeff: number + readonly slotLength: number + readonly securityParam: number + readonly genDelegs: Record + readonly initialFunds: Record + readonly maxKESEvolutions: number + readonly maxLovelaceSupply: number + readonly networkId: string + readonly networkMagic: number + readonly protocolParams: { + readonly a0: number + readonly decentralisationParam: number + readonly eMax: number + readonly extraEntropy: { + readonly tag: string + } + readonly keyDeposit: number + readonly maxBlockBodySize: number + readonly maxBlockHeaderSize: number + readonly maxTxSize: number + readonly minFeeA: number + readonly minFeeB: number + readonly minPoolCost: number + readonly minUTxOValue: number + readonly nOpt: number + readonly poolDeposit: number + readonly protocolVersion: { + readonly major: number + readonly minor: number + } + readonly rho: number + readonly tau: number + } + readonly slotsPerKESPeriod: number + readonly staking: { + readonly pools: Record< + string, + { + readonly cost: number + readonly margin: number + readonly metadata: null + readonly owners: ReadonlyArray + readonly pledge: number + readonly publicKey: string + readonly relays: ReadonlyArray + readonly rewardAccount: { + readonly credential: { + readonly "key hash": string + } + readonly network: string + } + readonly vrf: string + } + > + readonly stake: Record + } + readonly systemStart: string + readonly updateQuorum: number +} +``` + +## VrfSkey (type alias) + +**Signature** + +```ts +export type VrfSkey = { + readonly type: string + readonly description: string + readonly cborHex: string +} +``` diff --git a/packages/evolution/docs/modules/DnsName.ts.md b/packages/evolution/docs/modules/DnsName.ts.md new file mode 100644 index 00000000..dcf1dcad --- /dev/null +++ b/packages/evolution/docs/modules/DnsName.ts.md @@ -0,0 +1,203 @@ +--- +title: DnsName.ts +nav_order: 37 +parent: Modules +--- + +## DnsName overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [make](#make) +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [DnsNameError (class)](#dnsnameerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [DnsName](#dnsname) + - [DnsName (type alias)](#dnsname-type-alias) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + +--- + +# constructors + +## make + +Create a DnsName from a string. + +**Signature** + +```ts +export declare const make: (a: string, options?: Schema.MakeOptions) => string & Brand<"DnsName"> +``` + +Added in v2.0.0 + +# encoding/decoding + +## Codec + +Codec utilities for DnsName encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"DnsName">) => any; hex: (input: string & Brand<"DnsName">) => string } + Decode: { bytes: (input: any) => string & Brand<"DnsName">; hex: (input: string) => string & Brand<"DnsName"> } + EncodeEffect: { + bytes: (input: string & Brand<"DnsName">) => Effect> + hex: (input: string & Brand<"DnsName">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"DnsName">) => Either> + hex: (input: string & Brand<"DnsName">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two DnsName instances are equal. + +**Signature** + +```ts +export declare const equals: (a: DnsName, b: DnsName) => boolean +``` + +Added in v2.0.0 + +# errors + +## DnsNameError (class) + +Error class for DnsName related operations. + +**Signature** + +```ts +export declare class DnsNameError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random DnsName. + +**Signature** + +```ts +export declare const generator: Arbitrary> +``` + +Added in v2.0.0 + +# model + +## DnsName + +Schema for DnsName with DNS-specific validation. +dns_name = text .size (0 .. 128) + +**Signature** + +```ts +export declare const DnsName: Schema.brand< + Schema.refine< + string, + Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform + > + >, + "DnsName" +> +``` + +Added in v2.0.0 + +## DnsName (type alias) + +Type alias for DnsName. + +**Signature** + +```ts +export type DnsName = typeof DnsName.Type +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.filter>, + Schema.brand< + Schema.refine< + string, + Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform + > + >, + "DnsName" + > +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine< + string, + Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform + > + >, + Schema.brand< + Schema.refine< + string, + Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform + > + >, + "DnsName" + > +> +``` diff --git a/packages/evolution/docs/modules/Ed25519Signature.ts.md b/packages/evolution/docs/modules/Ed25519Signature.ts.md new file mode 100644 index 00000000..05204a40 --- /dev/null +++ b/packages/evolution/docs/modules/Ed25519Signature.ts.md @@ -0,0 +1,163 @@ +--- +title: Ed25519Signature.ts +nav_order: 40 +parent: Modules +--- + +## Ed25519Signature overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [Ed25519SignatureError (class)](#ed25519signatureerror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [Ed25519Signature](#ed25519signature) +- [utils](#utils) + - [Ed25519Signature (type alias)](#ed25519signature-type-alias) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for Ed25519Signature encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { + bytes: (input: string & Brand<"Ed25519Signature">) => any + hex: (input: string & Brand<"Ed25519Signature">) => string + } + Decode: { + bytes: (input: any) => string & Brand<"Ed25519Signature"> + hex: (input: string) => string & Brand<"Ed25519Signature"> + } + EncodeEffect: { + bytes: (input: string & Brand<"Ed25519Signature">) => Effect> + hex: (input: string & Brand<"Ed25519Signature">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"Ed25519Signature">) => Either> + hex: (input: string & Brand<"Ed25519Signature">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two Ed25519Signature instances are equal. + +**Signature** + +```ts +export declare const equals: (a: Ed25519Signature, b: Ed25519Signature) => boolean +``` + +Added in v2.0.0 + +# errors + +## Ed25519SignatureError (class) + +Error class for Ed25519Signature related operations. + +**Signature** + +```ts +export declare class Ed25519SignatureError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random Ed25519Signature. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## Ed25519Signature + +Schema for Ed25519Signature representing an Ed25519 signature. +ed25519_signature = bytes .size 64 +Follows the Conway-era CDDL specification. + +**Signature** + +```ts +export declare const Ed25519Signature: Schema.brand< + Schema.filter>, + "Ed25519Signature" +> +``` + +Added in v2.0.0 + +# utils + +## Ed25519Signature (type alias) + +**Signature** + +```ts +export type Ed25519Signature = typeof Ed25519Signature.Type +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.filter, + Schema.filter> + >, + Schema.brand>, "Ed25519Signature"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.filter>, + Schema.brand>, "Ed25519Signature"> +> +``` diff --git a/packages/evolution/docs/modules/EnterpriseAddress.ts.md b/packages/evolution/docs/modules/EnterpriseAddress.ts.md new file mode 100644 index 00000000..d550389c --- /dev/null +++ b/packages/evolution/docs/modules/EnterpriseAddress.ts.md @@ -0,0 +1,136 @@ +--- +title: EnterpriseAddress.ts +nav_order: 41 +parent: Modules +--- + +## EnterpriseAddress overview + +--- + +

Table of contents

+ +- [equality](#equality) + - [equals](#equals) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [EnterpriseAddress (class)](#enterpriseaddress-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) +- [utils](#utils) + - [Codec](#codec) + - [EnterpriseAddressError (class)](#enterpriseaddresserror-class) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + +--- + +# equality + +## equals + +Check if two EnterpriseAddress instances are equal. + +**Signature** + +```ts +export declare const equals: (a: EnterpriseAddress, b: EnterpriseAddress) => boolean +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random EnterpriseAddress. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# schemas + +## EnterpriseAddress (class) + +Enterprise address with only payment credential + +**Signature** + +```ts +export declare class EnterpriseAddress +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: EnterpriseAddress) => any; hex: (input: EnterpriseAddress) => string } + Decode: { bytes: (input: any) => EnterpriseAddress; hex: (input: string) => EnterpriseAddress } + EncodeEffect: { + bytes: (input: EnterpriseAddress) => Effect.Effect> + hex: (input: EnterpriseAddress) => Effect.Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect.Effect> + hex: (input: string) => Effect.Effect> + } + EncodeEither: { + bytes: (input: EnterpriseAddress) => Either> + hex: (input: EnterpriseAddress) => Either> + } + DecodeEither: { + bytes: (input: any) => Either> + hex: (input: string) => Either> + } +} +``` + +## EnterpriseAddressError (class) + +**Signature** + +```ts +export declare class EnterpriseAddressError +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transformOrFail< + Schema.filter, + typeof EnterpriseAddress, + never +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transformOrFail, typeof EnterpriseAddress, never> +> +``` diff --git a/packages/evolution/docs/modules/EpochNo.ts.md b/packages/evolution/docs/modules/EpochNo.ts.md new file mode 100644 index 00000000..7e5cdf68 --- /dev/null +++ b/packages/evolution/docs/modules/EpochNo.ts.md @@ -0,0 +1,142 @@ +--- +title: EpochNo.ts +nav_order: 42 +parent: Modules +--- + +## EpochNo overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [make](#make) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [EpochNoError (class)](#epochnoerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [EpochNo (type alias)](#epochno-type-alias) +- [ordering](#ordering) + - [compare](#compare) +- [predicates](#predicates) + - [is](#is) +- [schemas](#schemas) + - [EpochNoSchema](#epochnoschema) + +--- + +# constructors + +## make + +Smart constructor for creating EpochNo values. + +**Signature** + +```ts +export declare const make: (a: number, options?: Schema.MakeOptions) => number & Brand<"EpochNo"> +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two EpochNo instances are equal. + +**Signature** + +```ts +export declare const equals: (a: EpochNo, b: EpochNo) => boolean +``` + +Added in v2.0.0 + +# errors + +## EpochNoError (class) + +Error class for EpochNo related operations. + +**Signature** + +```ts +export declare class EpochNoError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random EpochNo. + +**Signature** + +```ts +export declare const generator: Arbitrary +``` + +Added in v2.0.0 + +# model + +## EpochNo (type alias) + +Type alias for EpochNo representing blockchain epoch numbers. + +**Signature** + +```ts +export type EpochNo = typeof EpochNoSchema.Type +``` + +Added in v2.0.0 + +# ordering + +## compare + +Compare two EpochNo values. + +**Signature** + +```ts +export declare const compare: (a: EpochNo, b: EpochNo) => -1 | 0 | 1 +``` + +Added in v2.0.0 + +# predicates + +## is + +Check if a value is a valid EpochNo. + +**Signature** + +```ts +export declare const is: (u: unknown, overrideOptions?: ParseOptions | number) => u is number & Brand<"EpochNo"> +``` + +Added in v2.0.0 + +# schemas + +## EpochNoSchema + +Schema for validating epoch numbers (0-255). + +**Signature** + +```ts +export declare const EpochNoSchema: Schema.brand, "EpochNo"> +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/FormatError.ts.md b/packages/evolution/docs/modules/FormatError.ts.md new file mode 100644 index 00000000..e4b53ceb --- /dev/null +++ b/packages/evolution/docs/modules/FormatError.ts.md @@ -0,0 +1,45 @@ +--- +title: FormatError.ts +nav_order: 43 +parent: Modules +--- + +## FormatError overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [make](#make) + - [makeFromUnknown](#makefromunknown) + +--- + +# utils + +## make + +**Signature** + +```ts +export declare const make: ({ + cause, + message +}: { + message?: string + cause?: unknown +}) => { message: string; cause?: undefined } | { message: string; cause: unknown } +``` + +## makeFromUnknown + +**Signature** + +```ts +export declare const makeFromUnknown: ({ + cause +}: { + cause: unknown +}) => { message: string; cause: Error } | { message: string; cause?: undefined } +``` diff --git a/packages/evolution/docs/modules/Hash28.ts.md b/packages/evolution/docs/modules/Hash28.ts.md new file mode 100644 index 00000000..1f355391 --- /dev/null +++ b/packages/evolution/docs/modules/Hash28.ts.md @@ -0,0 +1,187 @@ +--- +title: Hash28.ts +nav_order: 44 +parent: Modules +--- + +## Hash28 overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [schemas](#schemas) + - [BytesSchema](#bytesschema) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [FromVariableBytes](#fromvariablebytes) + - [HexSchema](#hexschema) + - [VariableBytesSchema](#variablebytesschema) + - [VariableHexSchema](#variablehexschema) +- [utils](#utils) + - [HASH28_BYTES_LENGTH](#hash28_bytes_length) + - [HASH28_HEX_LENGTH](#hash28_hex_length) + - [Hash28Error (class)](#hash28error-class) + +--- + +# encoding/decoding + +## Codec + +Codec for Hash28 encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string) => any; variableBytes: (input: string) => any } + Decode: { bytes: (input: any) => string; variableBytes: (input: any) => string } + EncodeEffect: { + bytes: (input: string) => Effect> + variableBytes: (input: string) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect> + variableBytes: (input: any) => Effect> + } + EncodeEither: { + bytes: (input: string) => Either> + variableBytes: (input: string) => Either> + } + DecodeEither: { + bytes: (input: any) => Either> + variableBytes: (input: any) => Either> + } +} +``` + +Added in v2.0.0 + +# schemas + +## BytesSchema + +Schema for Hash28 bytes with 28-byte length validation. + +**Signature** + +```ts +export declare const BytesSchema: Schema.refine +``` + +Added in v2.0.0 + +## FromBytes + +Schema transformation that converts from Uint8Array to hex string. +Like Bytes.FromBytes but with Hash28-specific length validation. + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.refine, + Schema.refine> +> +``` + +Added in v2.0.0 + +## FromHex + +Schema transformation that converts from hex string to Uint8Array. +Like Bytes.FromHex but with Hash28-specific length validation. + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.refine +> +``` + +Added in v2.0.0 + +## FromVariableBytes + +Schema transformer for variable-length data that converts between hex strings and byte arrays. +Works with 0 to 28 bytes (0 to 56 hex characters). + +**Signature** + +```ts +export declare const FromVariableBytes: Schema.transform< + Schema.refine, + Schema.refine> +> +``` + +Added in v2.0.0 + +## HexSchema + +Schema for Hash28 hex strings with 56-character length validation. + +**Signature** + +```ts +export declare const HexSchema: Schema.refine> +``` + +Added in v2.0.0 + +## VariableBytesSchema + +Schema for variable-length byte arrays from 0 to 28 bytes. +Useful for asset names and other variable-length data structures. + +**Signature** + +```ts +export declare const VariableBytesSchema: Schema.refine +``` + +Added in v2.0.0 + +## VariableHexSchema + +Schema for variable-length hex strings from 0 to 56 characters (0 to 28 bytes). +Useful for asset names and other variable-length data structures. + +**Signature** + +```ts +export declare const VariableHexSchema: Schema.refine> +``` + +Added in v2.0.0 + +# utils + +## HASH28_BYTES_LENGTH + +**Signature** + +```ts +export declare const HASH28_BYTES_LENGTH: 28 +``` + +## HASH28_HEX_LENGTH + +**Signature** + +```ts +export declare const HASH28_HEX_LENGTH: 56 +``` + +## Hash28Error (class) + +**Signature** + +```ts +export declare class Hash28Error +``` diff --git a/packages/evolution/docs/modules/Header.ts.md b/packages/evolution/docs/modules/Header.ts.md new file mode 100644 index 00000000..06660307 --- /dev/null +++ b/packages/evolution/docs/modules/Header.ts.md @@ -0,0 +1,280 @@ +--- +title: Header.ts +nav_order: 45 +parent: Modules +--- + +## Header overview + +Header module based on Conway CDDL specification + +CDDL: header = [header_body, body_signature : kes_signature] + +Added in v2.0.0 + +--- + +

Table of contents

+ +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [HeaderError (class)](#headererror-class) +- [model](#model) + - [Header (class)](#header-class) +- [predicates](#predicates) + - [isHeader](#isheader) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [FromCDDL](#fromcddl) +- [utils](#utils) + - [Codec](#codec) + +--- + +# equality + +## equals + +Check if two Header instances are equal. + +**Signature** + +```ts +export declare const equals: (a: Header, b: Header) => boolean +``` + +Added in v2.0.0 + +# errors + +## HeaderError (class) + +Error class for Header operations + +**Signature** + +```ts +export declare class HeaderError +``` + +Added in v2.0.0 + +# model + +## Header (class) + +Header implementation using HeaderBody and KesSignature + +CDDL: header = [header_body, body_signature : kes_signature] + +**Signature** + +```ts +export declare class Header +``` + +Added in v2.0.0 + +# predicates + +## isHeader + +Predicate to check if a value is a Header instance. + +**Signature** + +```ts +export declare const isHeader: (value: unknown) => value is Header +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for Header. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2< + Schema.SchemaClass< + readonly [ + bigint, + bigint, + any, + any, + any, + readonly [any, any], + bigint, + any, + readonly [any, bigint, bigint, any], + readonly [bigint, bigint] + ], + readonly [ + bigint, + bigint, + any, + any, + any, + readonly [any, any], + bigint, + any, + readonly [any, bigint, bigint, any], + readonly [bigint, bigint] + ], + never + >, + typeof Schema.Uint8ArrayFromSelf + >, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for Header. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2< + Schema.SchemaClass< + readonly [ + bigint, + bigint, + any, + any, + any, + readonly [any, any], + bigint, + any, + readonly [any, bigint, bigint, any], + readonly [bigint, bigint] + ], + readonly [ + bigint, + bigint, + any, + any, + any, + readonly [any, any], + bigint, + any, + readonly [any, bigint, bigint, any], + readonly [bigint, bigint] + ], + never + >, + typeof Schema.Uint8ArrayFromSelf + >, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for Header. +header = [header_body, body_signature : kes_signature] + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + Schema.Tuple2< + Schema.SchemaClass< + readonly [ + bigint, + bigint, + any, + any, + any, + readonly [any, any], + bigint, + any, + readonly [any, bigint, bigint, any], + readonly [bigint, bigint] + ], + readonly [ + bigint, + bigint, + any, + any, + any, + readonly [any, any], + bigint, + any, + readonly [any, bigint, bigint, any], + readonly [bigint, bigint] + ], + never + >, + typeof Schema.Uint8ArrayFromSelf + >, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: Header) => any; cborHex: (input: Header) => string } + Decode: { cborBytes: (input: any) => Header; cborHex: (input: string) => Header } + EncodeEffect: { + cborBytes: (input: Header) => Effect.Effect> + cborHex: (input: Header) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: Header) => Either> + cborHex: (input: Header) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/packages/evolution/docs/modules/HeaderBody.ts.md b/packages/evolution/docs/modules/HeaderBody.ts.md new file mode 100644 index 00000000..1c8007d6 --- /dev/null +++ b/packages/evolution/docs/modules/HeaderBody.ts.md @@ -0,0 +1,247 @@ +--- +title: HeaderBody.ts +nav_order: 46 +parent: Modules +--- + +## HeaderBody overview + +--- + +

Table of contents

+ +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [HeaderBodyError (class)](#headerbodyerror-class) +- [model](#model) + - [HeaderBody (class)](#headerbody-class) +- [predicates](#predicates) + - [isHeaderBody](#isheaderbody) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [FromCDDL](#fromcddl) +- [utils](#utils) + - [Codec](#codec) + +--- + +# equality + +## equals + +Check if two HeaderBody instances are equal. + +**Signature** + +```ts +export declare const equals: (a: HeaderBody, b: HeaderBody) => boolean +``` + +Added in v2.0.0 + +# errors + +## HeaderBodyError (class) + +Error class for HeaderBody related operations. + +**Signature** + +```ts +export declare class HeaderBodyError +``` + +Added in v2.0.0 + +# model + +## HeaderBody (class) + +Schema for HeaderBody representing a block header body. +header_body = [ +block_number : uint64, +slot : uint64, +prev_hash : block_header_hash / null, +issuer_vkey : vkey, +vrf_vkey : vrf_vkey, +vrf_result : vrf_cert, +block_body_size : uint32, +block_body_hash : block_body_hash, +operational_cert : operational_cert, +protocol_version : protocol_version +] + +**Signature** + +```ts +export declare class HeaderBody +``` + +Added in v2.0.0 + +# predicates + +## isHeaderBody + +Check if the given value is a valid HeaderBody. + +**Signature** + +```ts +export declare const isHeaderBody: (u: unknown, overrideOptions?: ParseOptions | number) => u is HeaderBody +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for HeaderBody. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.BigIntFromSelf, + typeof Schema.BigIntFromSelf, + Schema.NullOr, + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass, + typeof Schema.BigIntFromSelf, + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass, + Schema.SchemaClass + ] + >, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for HeaderBody. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.BigIntFromSelf, + typeof Schema.BigIntFromSelf, + Schema.NullOr, + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass, + typeof Schema.BigIntFromSelf, + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass, + Schema.SchemaClass + ] + >, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for HeaderBody. +header_body = [ +block_number : uint64, +slot : uint64, +prev_hash : block_header_hash / null, +issuer_vkey : vkey, +vrf_vkey : vrf_vkey, +vrf_result : vrf_cert, +block_body_size : uint32, +block_body_hash : block_body_hash, +operational_cert : operational_cert, +protocol_version : protocol_version +] + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.BigIntFromSelf, + typeof Schema.BigIntFromSelf, + Schema.NullOr, + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass, + typeof Schema.BigIntFromSelf, + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass, + Schema.SchemaClass + ] + >, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: HeaderBody) => any; cborHex: (input: HeaderBody) => string } + Decode: { cborBytes: (input: any) => HeaderBody; cborHex: (input: string) => HeaderBody } + EncodeEffect: { + cborBytes: (input: HeaderBody) => Effect.Effect> + cborHex: (input: HeaderBody) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: HeaderBody) => Either> + cborHex: (input: HeaderBody) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/packages/evolution/docs/modules/IPv4.ts.md b/packages/evolution/docs/modules/IPv4.ts.md new file mode 100644 index 00000000..1dd836be --- /dev/null +++ b/packages/evolution/docs/modules/IPv4.ts.md @@ -0,0 +1,153 @@ +--- +title: IPv4.ts +nav_order: 47 +parent: Modules +--- + +## IPv4 overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [IPv4Error (class)](#ipv4error-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [IPv4](#ipv4) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [IPv4 (type alias)](#ipv4-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for IPv4 encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"IPv4">) => any; hex: (input: string & Brand<"IPv4">) => string } + Decode: { bytes: (input: any) => string & Brand<"IPv4">; hex: (input: string) => string & Brand<"IPv4"> } + EncodeEffect: { + bytes: (input: string & Brand<"IPv4">) => Effect> + hex: (input: string & Brand<"IPv4">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"IPv4">) => Either> + hex: (input: string & Brand<"IPv4">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two IPv4 instances are equal. + +**Signature** + +```ts +export declare const equals: (a: IPv4, b: IPv4) => boolean +``` + +Added in v2.0.0 + +# errors + +## IPv4Error (class) + +Error class for IPv4 related operations. + +**Signature** + +```ts +export declare class IPv4Error +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random IPv4. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## IPv4 + +Schema for IPv4 representing an IPv4 network address. +Stored as 4 bytes in network byte order (big-endian). + +**Signature** + +```ts +export declare const IPv4: Schema.brand>, "IPv4"> +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.filter, + Schema.filter> + >, + Schema.brand>, "IPv4"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.filter>, + Schema.brand>, "IPv4"> +> +``` + +## IPv4 (type alias) + +**Signature** + +```ts +export type IPv4 = typeof IPv4.Type +``` diff --git a/packages/evolution/docs/modules/IPv6.ts.md b/packages/evolution/docs/modules/IPv6.ts.md new file mode 100644 index 00000000..12c38bb0 --- /dev/null +++ b/packages/evolution/docs/modules/IPv6.ts.md @@ -0,0 +1,153 @@ +--- +title: IPv6.ts +nav_order: 48 +parent: Modules +--- + +## IPv6 overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [IPv6Error (class)](#ipv6error-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [IPv6](#ipv6) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [IPv6 (type alias)](#ipv6-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for IPv6 encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"IPv6">) => any; hex: (input: string & Brand<"IPv6">) => string } + Decode: { bytes: (input: any) => string & Brand<"IPv6">; hex: (input: string) => string & Brand<"IPv6"> } + EncodeEffect: { + bytes: (input: string & Brand<"IPv6">) => Effect> + hex: (input: string & Brand<"IPv6">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"IPv6">) => Either> + hex: (input: string & Brand<"IPv6">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two IPv6 instances are equal. + +**Signature** + +```ts +export declare const equals: (a: IPv6, b: IPv6) => boolean +``` + +Added in v2.0.0 + +# errors + +## IPv6Error (class) + +Error class for IPv6 related operations. + +**Signature** + +```ts +export declare class IPv6Error +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random IPv6. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## IPv6 + +Schema for IPv6 representing an IPv6 network address. +Stored as 16 bytes in network byte order (big-endian). + +**Signature** + +```ts +export declare const IPv6: Schema.brand>, "IPv6"> +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.filter, + Schema.filter> + >, + Schema.brand>, "IPv6"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.filter>, + Schema.brand>, "IPv6"> +> +``` + +## IPv6 (type alias) + +**Signature** + +```ts +export type IPv6 = typeof IPv6.Type +``` diff --git a/packages/evolution/docs/modules/KESVkey.ts.md b/packages/evolution/docs/modules/KESVkey.ts.md new file mode 100644 index 00000000..e1ea46be --- /dev/null +++ b/packages/evolution/docs/modules/KESVkey.ts.md @@ -0,0 +1,157 @@ +--- +title: KESVkey.ts +nav_order: 50 +parent: Modules +--- + +## KESVkey overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [KESVkeyError (class)](#kesvkeyerror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [KESVkey](#kesvkey) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [KESVkey (type alias)](#kesvkey-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for KESVkey encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"KESVkey">) => any; hex: (input: string & Brand<"KESVkey">) => string } + Decode: { bytes: (input: any) => string & Brand<"KESVkey">; hex: (input: string) => string & Brand<"KESVkey"> } + EncodeEffect: { + bytes: (input: string & Brand<"KESVkey">) => Effect> + hex: (input: string & Brand<"KESVkey">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"KESVkey">) => Either> + hex: (input: string & Brand<"KESVkey">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two KESVkey instances are equal. + +**Signature** + +```ts +export declare const equals: (a: KESVkey, b: KESVkey) => boolean +``` + +Added in v2.0.0 + +# errors + +## KESVkeyError (class) + +Error class for KESVkey related operations. + +**Signature** + +```ts +export declare class KESVkeyError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random KESVkey. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## KESVkey + +Schema for KESVkey representing a KES verification key. +kes_vkey = bytes .size 32 +Follows the Conway-era CDDL specification. + +**Signature** + +```ts +export declare const KESVkey: Schema.brand< + Schema.refine>, + "KESVkey" +> +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "KESVkey"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "KESVkey"> +> +``` + +## KESVkey (type alias) + +**Signature** + +```ts +export type KESVkey = typeof KESVkey.Type +``` diff --git a/packages/evolution/docs/modules/KesSignature.ts.md b/packages/evolution/docs/modules/KesSignature.ts.md new file mode 100644 index 00000000..54e9df3f --- /dev/null +++ b/packages/evolution/docs/modules/KesSignature.ts.md @@ -0,0 +1,163 @@ +--- +title: KesSignature.ts +nav_order: 49 +parent: Modules +--- + +## KesSignature overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [KesSignatureError (class)](#kessignatureerror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [KesSignature](#kessignature) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [KesSignature (type alias)](#kessignature-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for KesSignature encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { + bytes: (input: string & Brand<"KesSignature">) => any + hex: (input: string & Brand<"KesSignature">) => string + } + Decode: { + bytes: (input: any) => string & Brand<"KesSignature"> + hex: (input: string) => string & Brand<"KesSignature"> + } + EncodeEffect: { + bytes: (input: string & Brand<"KesSignature">) => Effect> + hex: (input: string & Brand<"KesSignature">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"KesSignature">) => Either> + hex: (input: string & Brand<"KesSignature">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two KesSignature instances are equal. + +**Signature** + +```ts +export declare const equals: (a: KesSignature, b: KesSignature) => boolean +``` + +Added in v2.0.0 + +# errors + +## KesSignatureError (class) + +Error class for KesSignature related operations. + +**Signature** + +```ts +export declare class KesSignatureError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random KesSignature. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## KesSignature + +Schema for KesSignature representing a KES signature. +kes_signature = bytes .size 448 +Follows the Conway-era CDDL specification. + +**Signature** + +```ts +export declare const KesSignature: Schema.brand< + Schema.filter>, + "KesSignature" +> +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.filter, + Schema.filter> + >, + Schema.brand>, "KesSignature"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.filter>, + Schema.brand>, "KesSignature"> +> +``` + +## KesSignature (type alias) + +**Signature** + +```ts +export type KesSignature = typeof KesSignature.Type +``` diff --git a/packages/evolution/docs/modules/KeyHash.ts.md b/packages/evolution/docs/modules/KeyHash.ts.md new file mode 100644 index 00000000..f11a3ccb --- /dev/null +++ b/packages/evolution/docs/modules/KeyHash.ts.md @@ -0,0 +1,157 @@ +--- +title: KeyHash.ts +nav_order: 51 +parent: Modules +--- + +## KeyHash overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [KeyHashError (class)](#keyhasherror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [KeyHash](#keyhash) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [KeyHash (type alias)](#keyhash-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for KeyHash encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"KeyHash">) => any; string: (input: string & Brand<"KeyHash">) => string } + Decode: { bytes: (input: any) => string & Brand<"KeyHash">; string: (input: string) => string & Brand<"KeyHash"> } + EncodeEffect: { + bytes: (input: string & Brand<"KeyHash">) => Effect> + string: (input: string & Brand<"KeyHash">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + string: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"KeyHash">) => Either> + string: (input: string & Brand<"KeyHash">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + string: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two KeyHash instances are equal. + +**Signature** + +```ts +export declare const equals: (a: KeyHash, b: KeyHash) => boolean +``` + +Added in v2.0.0 + +# errors + +## KeyHashError (class) + +Error class for KeyHash related operations. + +**Signature** + +```ts +export declare class KeyHashError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random KeyHash. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## KeyHash + +Schema for KeyHash representing a verification key hash. +addr_keyhash = hash28 +Follows CIP-0019 binary representation. + +**Signature** + +```ts +export declare const KeyHash: Schema.brand< + Schema.refine>, + "KeyHash" +> +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "KeyHash"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "KeyHash"> +> +``` + +## KeyHash (type alias) + +**Signature** + +```ts +export type KeyHash = typeof KeyHash.Type +``` diff --git a/packages/evolution/docs/modules/Mint.ts.md b/packages/evolution/docs/modules/Mint.ts.md new file mode 100644 index 00000000..13ae256c --- /dev/null +++ b/packages/evolution/docs/modules/Mint.ts.md @@ -0,0 +1,477 @@ +--- +title: Mint.ts +nav_order: 52 +parent: Modules +--- + +## Mint overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [empty](#empty) + - [singleton](#singleton) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [MintError (class)](#minterror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [Mint (type alias)](#mint-type-alias) +- [predicates](#predicates) + - [has](#has) + - [isEmpty](#isempty) +- [schemas](#schemas) + - [AssetMap](#assetmap) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [Mint](#mint) + - [MintCDDLSchema](#mintcddlschema) +- [transformation](#transformation) + - [get](#get) + - [policyCount](#policycount) + - [removePolicy](#removepolicy) +- [utils](#utils) + - [AssetMap (type alias)](#assetmap-type-alias) + - [Codec](#codec) + - [fromEntries](#fromentries) + - [insert](#insert) + - [prettyPrint](#prettyprint) + - [removeAsset](#removeasset) + +--- + +# constructors + +## empty + +Create empty Mint. + +**Signature** + +```ts +export declare const empty: () => Mint +``` + +Added in v2.0.0 + +## singleton + +Create Mint from a single policy and asset entry. + +**Signature** + +```ts +export declare const singleton: ( + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName, + amount: NonZeroInt64.NonZeroInt64 +) => Mint +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two Mint instances are equal. + +**Signature** + +```ts +export declare const equals: (self: Mint, that: Mint) => boolean +``` + +Added in v2.0.0 + +# errors + +## MintError (class) + +Error class for Mint related operations. + +**Signature** + +```ts +export declare class MintError +``` + +Added in v2.0.0 + +# generators + +## generator + +FastCheck generator for Mint instances. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary< + Map, Map, bigint>> +> +``` + +Added in v2.0.0 + +# model + +## Mint (type alias) + +Type alias for Mint representing a collection of minting/burning operations. +Each policy ID maps to a collection of asset names and their amounts. +Positive amounts indicate minting, negative amounts indicate burning. + +**Signature** + +```ts +export type Mint = typeof Mint.Type +``` + +Added in v2.0.0 + +# predicates + +## has + +Check if Mint contains a specific policy and asset. + +**Signature** + +```ts +export declare const has: (mint: Mint, policyId: PolicyId.PolicyId, assetName: AssetName.AssetName) => boolean +``` + +Added in v2.0.0 + +## isEmpty + +Check if Mint is empty. + +**Signature** + +```ts +export declare const isEmpty: (mint: Mint) => boolean +``` + +Added in v2.0.0 + +# schemas + +## AssetMap + +Schema for inner asset map + +``` +(asset_name => nonZeroInt64). +``` + +**Signature** + +```ts +export declare const AssetMap: Schema.refine< + Map, bigint>, + Schema.MapFromSelf< + Schema.brand>, "AssetName">, + Schema.Union< + [Schema.refine, Schema.refine] + > + > +> +``` + +Added in v2.0.0 + +## FromBytes + +CBOR bytes transformation schema for Mint. +Transforms between Uint8Array and Mint using CBOR encoding. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.MapFromSelf< + typeof Schema.Uint8ArrayFromSelf, + Schema.MapFromSelf + >, + Schema.SchemaClass< + Map, Map, bigint>>, + Map, Map, bigint>>, + never + >, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for Mint. +Transforms between hex string and Mint using CBOR encoding. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.MapFromSelf< + typeof Schema.Uint8ArrayFromSelf, + Schema.MapFromSelf + >, + Schema.SchemaClass< + Map, Map, bigint>>, + Map, Map, bigint>>, + never + >, + never + > + > +> +``` + +Added in v2.0.0 + +## Mint + +Schema for Mint representing token minting/burning operations. + +``` +mint = multiasset + +The structure is: policy_id => { asset_name => nonZeroInt64 } +- Positive values represent minting +- Negative values represent burning +``` + +**Signature** + +```ts +export declare const Mint: Schema.refine< + Map, Map, bigint>>, + Schema.MapFromSelf< + Schema.brand>, "PolicyId">, + Schema.refine< + Map, bigint>, + Schema.MapFromSelf< + Schema.brand>, "AssetName">, + Schema.Union< + [Schema.refine, Schema.refine] + > + > + > + > +> +``` + +Added in v2.0.0 + +## MintCDDLSchema + +CDDL schema for Mint as map structure. + +``` +mint = {* policy_id => {* asset_name => nonZeroInt64}} +``` + +Where: + +- policy_id: 28-byte Uint8Array (from CBOR byte string) +- asset_name: variable-length Uint8Array (from CBOR byte string, can be empty) +- nonZeroInt64: signed 64-bit integer (positive = mint, negative = burn, cannot be zero) + +**Signature** + +```ts +export declare const MintCDDLSchema: Schema.transformOrFail< + Schema.MapFromSelf< + typeof Schema.Uint8ArrayFromSelf, + Schema.MapFromSelf + >, + Schema.SchemaClass< + Map, Map, bigint>>, + Map, Map, bigint>>, + never + >, + never +> +``` + +Added in v2.0.0 + +# transformation + +## get + +Get the amount for a specific policy and asset. + +**Signature** + +```ts +export declare const get: ( + mint: Mint, + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName +) => bigint | undefined +``` + +Added in v2.0.0 + +## policyCount + +Get the number of policies in the Mint. + +**Signature** + +```ts +export declare const policyCount: (mint: Mint) => number +``` + +Added in v2.0.0 + +## removePolicy + +Remove an asset from the Mint. + +**Signature** + +```ts +export declare const removePolicy: (mint: Mint, policyId: PolicyId.PolicyId) => Mint +``` + +Added in v2.0.0 + +# utils + +## AssetMap (type alias) + +**Signature** + +```ts +export type AssetMap = typeof AssetMap.Type +``` + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: (input: Map, Map, bigint>>) => any + cborHex: (input: Map, Map, bigint>>) => string + } + Decode: { + cborBytes: (input: any) => Map, Map, bigint>> + cborHex: (input: string) => Map, Map, bigint>> + } + EncodeEffect: { + cborBytes: ( + input: Map, Map, bigint>> + ) => Effect.Effect> + cborHex: ( + input: Map, Map, bigint>> + ) => Effect.Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect.Effect< + Map, Map, bigint>>, + InstanceType + > + cborHex: ( + input: string + ) => Effect.Effect< + Map, Map, bigint>>, + InstanceType + > + } + EncodeEither: { + cborBytes: ( + input: Map, Map, bigint>> + ) => Either> + cborHex: ( + input: Map, Map, bigint>> + ) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either< + Map, Map, bigint>>, + InstanceType + > + cborHex: ( + input: string + ) => Either< + Map, Map, bigint>>, + InstanceType + > + } +} +``` + +## fromEntries + +Helper function to create Mint from entries array + +**Signature** + +```ts +export declare const fromEntries: ( + entries: Array<[PolicyId.PolicyId, Array<[AssetName.AssetName, NonZeroInt64.NonZeroInt64]>]> +) => Mint +``` + +## insert + +**Signature** + +```ts +export declare const insert: ( + mint: Mint, + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName, + amount: NonZeroInt64.NonZeroInt64 +) => Mint +``` + +## prettyPrint + +**Signature** + +```ts +export declare const prettyPrint: PrettyPrint +``` + +## removeAsset + +**Signature** + +```ts +export declare const removeAsset: (mint: Mint, policyId: PolicyId.PolicyId, assetName: AssetName.AssetName) => Mint +``` diff --git a/packages/evolution/docs/modules/MultiAsset.ts.md b/packages/evolution/docs/modules/MultiAsset.ts.md new file mode 100644 index 00000000..9213b42f --- /dev/null +++ b/packages/evolution/docs/modules/MultiAsset.ts.md @@ -0,0 +1,472 @@ +--- +title: MultiAsset.ts +nav_order: 53 +parent: Modules +--- + +## MultiAsset overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [empty](#empty) + - [singleton](#singleton) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [MultiAssetError (class)](#multiasseterror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [AssetMap (type alias)](#assetmap-type-alias) + - [MultiAsset (type alias)](#multiasset-type-alias) +- [predicates](#predicates) + - [hasAsset](#hasasset) + - [is](#is) +- [schemas](#schemas) + - [AssetMapSchema](#assetmapschema) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [MultiAssetCDDLSchema](#multiassetcddlschema) + - [MultiAssetSchema](#multiassetschema) +- [transformation](#transformation) + - [addAsset](#addasset) + - [getAsset](#getasset) + - [getAssetsByPolicy](#getassetsbypolicy) + - [getPolicyIds](#getpolicyids) + - [merge](#merge) + - [subtract](#subtract) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## empty + +Create an empty MultiAsset (note: this will fail validation as MultiAsset cannot be empty). +Use this only as a starting point for building a MultiAsset. + +**Signature** + +```ts +export declare const empty: () => Map +``` + +Added in v2.0.0 + +## singleton + +Create a MultiAsset from a single asset. + +**Signature** + +```ts +export declare const singleton: ( + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName, + amount: PositiveCoin.PositiveCoin +) => MultiAsset +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two MultiAsset instances are equal. + +**Signature** + +```ts +export declare const equals: (a: MultiAsset, b: MultiAsset) => boolean +``` + +Added in v2.0.0 + +# errors + +## MultiAssetError (class) + +Error class for MultiAsset related operations. + +**Signature** + +```ts +export declare class MultiAssetError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random MultiAsset. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary< + Map, Map, bigint>> +> +``` + +Added in v2.0.0 + +# model + +## AssetMap (type alias) + +Type alias for the inner asset map. + +**Signature** + +```ts +export type AssetMap = typeof AssetMapSchema.Type +``` + +Added in v2.0.0 + +## MultiAsset (type alias) + +Type alias for MultiAsset representing a collection of native assets. +Each policy ID maps to a collection of asset names and their amounts. +All amounts must be positive (non-zero). + +**Signature** + +```ts +export type MultiAsset = typeof MultiAssetSchema.Type +``` + +Added in v2.0.0 + +# predicates + +## hasAsset + +Check if a MultiAsset contains a specific asset. + +**Signature** + +```ts +export declare const hasAsset: ( + multiAsset: MultiAsset, + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName +) => boolean +``` + +Added in v2.0.0 + +## is + +Check if a value is a valid MultiAsset. + +**Signature** + +```ts +export declare const is: (value: unknown) => value is MultiAsset +``` + +Added in v2.0.0 + +# schemas + +## AssetMapSchema + +Schema for inner asset map (asset_name => positive_coin). + +**Signature** + +```ts +export declare const AssetMapSchema: Schema.refine< + Map, bigint>, + Schema.Map$< + Schema.brand>, "AssetName">, + Schema.refine + > +> +``` + +Added in v2.0.0 + +## FromBytes + +CBOR bytes transformation schema for MultiAsset. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.MapFromSelf< + typeof Schema.Uint8ArrayFromSelf, + Schema.MapFromSelf + >, + Schema.SchemaClass< + Map, Map, bigint>>, + Map, Map, bigint>>, + never + >, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for MultiAsset. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.MapFromSelf< + typeof Schema.Uint8ArrayFromSelf, + Schema.MapFromSelf + >, + Schema.SchemaClass< + Map, Map, bigint>>, + Map, Map, bigint>>, + never + >, + never + > + > +> +``` + +Added in v2.0.0 + +## MultiAssetCDDLSchema + +CDDL schema for MultiAsset. + +``` +multiasset = {+ policy_id => {+ asset_name => positive_coin}} +``` + +**Signature** + +```ts +export declare const MultiAssetCDDLSchema: Schema.transformOrFail< + Schema.MapFromSelf< + typeof Schema.Uint8ArrayFromSelf, + Schema.MapFromSelf + >, + Schema.SchemaClass< + Map, Map, bigint>>, + Map, Map, bigint>>, + never + >, + never +> +``` + +Added in v2.0.0 + +## MultiAssetSchema + +Schema for MultiAsset representing native assets. + +``` +multiasset = {+ policy_id => {+ asset_name => a0}} +case: multiasset = {+ policy_id => {+ asset_name => positive_coin}} +``` + +**Signature** + +```ts +export declare const MultiAssetSchema: Schema.refine< + Map, Map, bigint>>, + Schema.MapFromSelf< + Schema.brand>, "PolicyId">, + Schema.refine< + Map, bigint>, + Schema.Map$< + Schema.brand>, "AssetName">, + Schema.refine + > + > + > +> +``` + +Added in v2.0.0 + +# transformation + +## addAsset + +Add an asset to a MultiAsset, combining amounts if the asset already exists. + +**Signature** + +```ts +export declare const addAsset: ( + multiAsset: MultiAsset, + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName, + amount: PositiveCoin.PositiveCoin +) => MultiAsset +``` + +Added in v2.0.0 + +## getAsset + +Get the amount of a specific asset from a MultiAsset. + +**Signature** + +```ts +export declare const getAsset: ( + multiAsset: MultiAsset, + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName +) => { _tag: "Some"; value: bigint } | { _tag: "None"; value?: undefined } +``` + +Added in v2.0.0 + +## getAssetsByPolicy + +Get all assets for a specific policy ID. + +**Signature** + +```ts +export declare const getAssetsByPolicy: ( + multiAsset: MultiAsset, + policyId: PolicyId.PolicyId +) => { _tag: "Some"; value: Map, bigint> } | { _tag: "None"; value?: undefined } +``` + +Added in v2.0.0 + +## getPolicyIds + +Get all policy IDs in a MultiAsset. + +**Signature** + +```ts +export declare const getPolicyIds: (multiAsset: MultiAsset) => IterableIterator> +``` + +Added in v2.0.0 + +## merge + +Merge two MultiAsset instances, combining amounts for assets that exist in both. + +**Signature** + +```ts +export declare const merge: (a: MultiAsset, b: MultiAsset) => MultiAsset +``` + +Added in v2.0.0 + +## subtract + +Subtract MultiAsset b from MultiAsset a. +Returns a new MultiAsset with amounts reduced by the amounts in b. +If any asset would result in zero or negative amount, it's removed from the result. +If the result would be empty, an error is thrown since MultiAsset cannot be empty. + +**Signature** + +```ts +export declare const subtract: (a: MultiAsset, b: MultiAsset) => MultiAsset +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: (input: Map, Map, bigint>>) => any + cborHex: (input: Map, Map, bigint>>) => string + } + Decode: { + cborBytes: (input: any) => Map, Map, bigint>> + cborHex: (input: string) => Map, Map, bigint>> + } + EncodeEffect: { + cborBytes: ( + input: Map, Map, bigint>> + ) => Effect.Effect> + cborHex: ( + input: Map, Map, bigint>> + ) => Effect.Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect.Effect< + Map, Map, bigint>>, + InstanceType + > + cborHex: ( + input: string + ) => Effect.Effect< + Map, Map, bigint>>, + InstanceType + > + } + EncodeEither: { + cborBytes: ( + input: Map, Map, bigint>> + ) => Either> + cborHex: ( + input: Map, Map, bigint>> + ) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either< + Map, Map, bigint>>, + InstanceType + > + cborHex: ( + input: string + ) => Either< + Map, Map, bigint>>, + InstanceType + > + } +} +``` diff --git a/packages/evolution/docs/modules/MultiHostName.ts.md b/packages/evolution/docs/modules/MultiHostName.ts.md new file mode 100644 index 00000000..4a099811 --- /dev/null +++ b/packages/evolution/docs/modules/MultiHostName.ts.md @@ -0,0 +1,202 @@ +--- +title: MultiHostName.ts +nav_order: 54 +parent: Modules +--- + +## MultiHostName overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [make](#make) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [MultiHostNameError (class)](#multihostnameerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [MultiHostName (class)](#multihostname-class) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [FromCDDL](#fromcddl) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## make + +Create a MultiHostName instance. + +**Signature** + +```ts +export declare const make: (dnsName: DnsName.DnsName) => MultiHostName +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two MultiHostName instances are equal. + +**Signature** + +```ts +export declare const equals: (self: MultiHostName, that: MultiHostName) => boolean +``` + +Added in v2.0.0 + +# errors + +## MultiHostNameError (class) + +Error class for MultiHostName related operations. + +**Signature** + +```ts +export declare class MultiHostNameError +``` + +Added in v2.0.0 + +# generators + +## generator + +FastCheck generator for MultiHostName instances. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## MultiHostName (class) + +Schema for MultiHostName representing a multiple host name record. +multi_host_name = (2, dns_name) + +**Signature** + +```ts +export declare class MultiHostName +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for MultiHostName. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, typeof Schema.String>, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for MultiHostName. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, typeof Schema.String>, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for MultiHostName. +multi_host_name = (2, dns_name) + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + Schema.Tuple2, typeof Schema.String>, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: MultiHostName) => any; cborHex: (input: MultiHostName) => string } + Decode: { cborBytes: (input: any) => MultiHostName; cborHex: (input: string) => MultiHostName } + EncodeEffect: { + cborBytes: (input: MultiHostName) => Effect.Effect> + cborHex: (input: MultiHostName) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: MultiHostName) => Either> + cborHex: (input: MultiHostName) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/packages/evolution/docs/modules/NativeScriptJSON.ts.md b/packages/evolution/docs/modules/NativeScriptJSON.ts.md new file mode 100644 index 00000000..07a63849 --- /dev/null +++ b/packages/evolution/docs/modules/NativeScriptJSON.ts.md @@ -0,0 +1,93 @@ +--- +title: NativeScriptJSON.ts +nav_order: 55 +parent: Modules +--- + +## NativeScriptJSON overview + +--- + +

Table of contents

+ +- [model](#model) + - [NativeJSON (type alias)](#nativejson-type-alias) +- [schemas](#schemas) + - [NativeJSONSchema](#nativejsonschema) + +--- + +# model + +## NativeJSON (type alias) + +Represents a cardano-cli JSON script syntax + +Native type follows the standard described in the +https://github.com/IntersectMBO/cardano-node/blob/1.26.1-with-cardano-cli/doc/reference/simple-scripts.md#json-script-syntax + +**Signature** + +```ts +export type NativeJSON = + | { + type: "sig" + keyHash: string + } + | { + type: "before" + slot: number + } + | { + type: "after" + slot: number + } + | { + type: "all" + scripts: ReadonlyArray + } + | { + type: "any" + scripts: ReadonlyArray + } + | { + type: "atLeast" + required: number + scripts: ReadonlyArray + } +``` + +Added in v2.0.0 + +# schemas + +## NativeJSONSchema + +Schema for NativeJSON union type. + +**Signature** + +```ts +export declare const NativeJSONSchema: Schema.Union< + [ + Schema.Struct<{ type: Schema.Literal<["sig"]>; keyHash: typeof Schema.String }>, + Schema.Struct<{ type: Schema.Literal<["before"]>; slot: typeof Schema.Number }>, + Schema.Struct<{ type: Schema.Literal<["after"]>; slot: typeof Schema.Number }>, + Schema.Struct<{ + type: Schema.Literal<["all"]> + scripts: Schema.Array$> + }>, + Schema.Struct<{ + type: Schema.Literal<["any"]> + scripts: Schema.Array$> + }>, + Schema.Struct<{ + type: Schema.Literal<["atLeast"]> + required: typeof Schema.Number + scripts: Schema.Array$> + }> + ] +> +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/NativeScripts.ts.md b/packages/evolution/docs/modules/NativeScripts.ts.md new file mode 100644 index 00000000..918ef36b --- /dev/null +++ b/packages/evolution/docs/modules/NativeScripts.ts.md @@ -0,0 +1,683 @@ +--- +title: NativeScripts.ts +nav_order: 56 +parent: Modules +--- + +## NativeScripts overview + +--- + +

Table of contents

+ +- [conversion](#conversion) + - [internalJSONToNative](#internaljsontonative) + - [internalNativeToJson](#internalnativetojson) +- [decoding](#decoding) + - [internalDecodeCDDL](#internaldecodecddl) +- [encoding](#encoding) + - [internalEncodeCDDL](#internalencodecddl) +- [model](#model) + - [NativeScriptCDDL (type alias)](#nativescriptcddl-type-alias) +- [schemas](#schemas) + - [NativeJSON](#nativejson) + - [NativeScriptCDDL](#nativescriptcddl) + - [SlotNumber](#slotnumber) +- [utils](#utils) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [Codec](#codec) + - [InvalidBefore (class)](#invalidbefore-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) + - [InvalidBeforeEncoded (interface)](#invalidbeforeencoded-interface) + - [InvalidHereafter (class)](#invalidhereafter-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method-1) + - [InvalidHereafterEncoded (interface)](#invalidhereafterencoded-interface) + - [NativeScript](#nativescript) + - [NativeScript (type alias)](#nativescript-type-alias) + - [NativeScriptEncoded (type alias)](#nativescriptencoded-type-alias) + - [NativeScriptError (class)](#nativescripterror-class) + - [ScriptAll (class)](#scriptall-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method-2) + - [ScriptAllEncoded (interface)](#scriptallencoded-interface) + - [ScriptAny (class)](#scriptany-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method-3) + - [ScriptAnyEncoded (interface)](#scriptanyencoded-interface) + - [ScriptNOfK (class)](#scriptnofk-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method-4) + - [ScriptNOfKEncoded (interface)](#scriptnofkencoded-interface) + - [ScriptPubKey (class)](#scriptpubkey-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method-5) + - [ScriptPubKeyEncoded (interface)](#scriptpubkeyencoded-interface) + - [SlotNumber (type alias)](#slotnumber-type-alias) + +--- + +# conversion + +## internalJSONToNative + +Convert a NativeJSON to a NativeScript. + +**Signature** + +```ts +export declare const internalJSONToNative: ( + nativeJSON: NativeScriptJSON.NativeJSON +) => Effect.Effect +``` + +Added in v2.0.0 + +## internalNativeToJson + +Convert a NativeScript to a NativeJSON. + +**Signature** + +```ts +export declare const internalNativeToJson: ( + nativeScript: NativeScript +) => Effect.Effect +``` + +Added in v2.0.0 + +# decoding + +## internalDecodeCDDL + +Convert a CDDL representation back to a NativeScript. + +This function recursively decodes nested CBOR scripts and constructs +the appropriate NativeScript instances. + +**Signature** + +```ts +export declare const internalDecodeCDDL: (cborTuple: NativeScriptCDDL) => Effect.Effect +``` + +Added in v2.0.0 + +# encoding + +## internalEncodeCDDL + +Convert a NativeScript to its CDDL representation. + +**Signature** + +```ts +export declare const internalEncodeCDDL: (nativeScript: NativeScript) => Effect.Effect +``` + +Added in v2.0.0 + +# model + +## NativeScriptCDDL (type alias) + +CDDL representation of a native script as a union of tuple types. + +This type represents the low-level CBOR structure of native scripts, +where each variant is encoded as a tagged tuple. + +**Signature** + +```ts +export type NativeScriptCDDL = + | readonly [0, Uint8Array] + | readonly [1, ReadonlyArray] + | readonly [2, ReadonlyArray] + | readonly [3, bigint, ReadonlyArray] + | readonly [4, bigint] + | readonly [5, bigint] +``` + +Added in v2.0.0 + +# schemas + +## NativeJSON + +Schema transformer for converting between NativeJSON and NativeScript. + +**Signature** + +```ts +export declare const NativeJSON: Schema.transformOrFail< + Schema.Union< + [ + Schema.Struct<{ type: Schema.Literal<["sig"]>; keyHash: typeof Schema.String }>, + Schema.Struct<{ type: Schema.Literal<["before"]>; slot: typeof Schema.Number }>, + Schema.Struct<{ type: Schema.Literal<["after"]>; slot: typeof Schema.Number }>, + Schema.Struct<{ + type: Schema.Literal<["all"]> + scripts: Schema.Array$> + }>, + Schema.Struct<{ + type: Schema.Literal<["any"]> + scripts: Schema.Array$> + }>, + Schema.Struct<{ + type: Schema.Literal<["atLeast"]> + required: typeof Schema.Number + scripts: Schema.Array$> + }> + ] + >, + Schema.Union< + [ + typeof ScriptPubKey, + typeof ScriptAll, + typeof ScriptAny, + typeof ScriptNOfK, + typeof InvalidBefore, + typeof InvalidHereafter + ] + >, + never +> +``` + +Added in v2.0.0 + +## NativeScriptCDDL + +Schema for NativeScriptCDDL union type. + +**Signature** + +```ts +export declare const NativeScriptCDDL: Schema.transformOrFail< + Schema.Union< + [ + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple2, Schema.Array$>>, + Schema.Tuple2, Schema.Array$>>, + Schema.Tuple< + [ + Schema.Literal<[3]>, + typeof Schema.BigIntFromSelf, + Schema.Array$> + ] + >, + Schema.Tuple2, typeof Schema.BigIntFromSelf>, + Schema.Tuple2, typeof Schema.BigIntFromSelf> + ] + >, + Schema.SchemaClass< + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + never + >, + never +> +``` + +Added in v2.0.0 + +## SlotNumber + +Schema for slot numbers used in time-based native script constraints. + +**Signature** + +```ts +export declare const SlotNumber: Schema.refine +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Union< + [ + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple2, Schema.Array$>>, + Schema.Tuple2, Schema.Array$>>, + Schema.Tuple< + [ + Schema.Literal<[3]>, + typeof Schema.BigIntFromSelf, + Schema.Array$> + ] + >, + Schema.Tuple2, typeof Schema.BigIntFromSelf>, + Schema.Tuple2, typeof Schema.BigIntFromSelf> + ] + >, + Schema.SchemaClass< + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + never + >, + never + > +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Union< + [ + Schema.Tuple2, typeof Schema.Uint8ArrayFromSelf>, + Schema.Tuple2, Schema.Array$>>, + Schema.Tuple2, Schema.Array$>>, + Schema.Tuple< + [ + Schema.Literal<[3]>, + typeof Schema.BigIntFromSelf, + Schema.Array$> + ] + >, + Schema.Tuple2, typeof Schema.BigIntFromSelf>, + Schema.Tuple2, typeof Schema.BigIntFromSelf> + ] + >, + Schema.SchemaClass< + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + never + >, + never + > + > +> +``` + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: (input: ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter) => any + cborHex: (input: ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter) => string + nativeJSON: ( + input: ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + ) => + | { readonly keyHash: string; readonly type: "sig" } + | { readonly slot: number; readonly type: "before" } + | { readonly slot: number; readonly type: "after" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "all" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "any" } + | { + readonly scripts: readonly NativeScriptJSON.NativeJSON[] + readonly type: "atLeast" + readonly required: number + } + } + Decode: { + cborBytes: (input: any) => ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + cborHex: (input: string) => ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + nativeJSON: ( + input: + | { readonly keyHash: string; readonly type: "sig" } + | { readonly slot: number; readonly type: "before" } + | { readonly slot: number; readonly type: "after" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "all" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "any" } + | { + readonly scripts: readonly NativeScriptJSON.NativeJSON[] + readonly type: "atLeast" + readonly required: number + } + ) => ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + } + EncodeEffect: { + cborBytes: ( + input: ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + ) => Effect.Effect> + cborHex: ( + input: ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + ) => Effect.Effect> + nativeJSON: ( + input: ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + ) => Effect.Effect< + | { readonly keyHash: string; readonly type: "sig" } + | { readonly slot: number; readonly type: "before" } + | { readonly slot: number; readonly type: "after" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "all" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "any" } + | { + readonly scripts: readonly NativeScriptJSON.NativeJSON[] + readonly type: "atLeast" + readonly required: number + }, + InstanceType + > + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect.Effect< + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + InstanceType + > + cborHex: ( + input: string + ) => Effect.Effect< + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + InstanceType + > + nativeJSON: ( + input: + | { readonly keyHash: string; readonly type: "sig" } + | { readonly slot: number; readonly type: "before" } + | { readonly slot: number; readonly type: "after" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "all" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "any" } + | { + readonly scripts: readonly NativeScriptJSON.NativeJSON[] + readonly type: "atLeast" + readonly required: number + } + ) => Effect.Effect< + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + InstanceType + > + } + EncodeEither: { + cborBytes: ( + input: ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + ) => Either> + cborHex: ( + input: ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + ) => Either> + nativeJSON: ( + input: ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + ) => Either< + | { readonly keyHash: string; readonly type: "sig" } + | { readonly slot: number; readonly type: "before" } + | { readonly slot: number; readonly type: "after" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "all" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "any" } + | { + readonly scripts: readonly NativeScriptJSON.NativeJSON[] + readonly type: "atLeast" + readonly required: number + }, + InstanceType + > + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either< + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + InstanceType + > + cborHex: ( + input: string + ) => Either< + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + InstanceType + > + nativeJSON: ( + input: + | { readonly keyHash: string; readonly type: "sig" } + | { readonly slot: number; readonly type: "before" } + | { readonly slot: number; readonly type: "after" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "all" } + | { readonly scripts: readonly NativeScriptJSON.NativeJSON[]; readonly type: "any" } + | { + readonly scripts: readonly NativeScriptJSON.NativeJSON[] + readonly type: "atLeast" + readonly required: number + } + ) => Either< + ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter, + InstanceType + > + } +} +``` + +## InvalidBefore (class) + +**Signature** + +```ts +export declare class InvalidBefore +``` + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +## InvalidBeforeEncoded (interface) + +**Signature** + +```ts +export interface InvalidBeforeEncoded { + readonly _tag: "InvalidBefore" + readonly slot: number +} +``` + +## InvalidHereafter (class) + +**Signature** + +```ts +export declare class InvalidHereafter +``` + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +## InvalidHereafterEncoded (interface) + +**Signature** + +```ts +export interface InvalidHereafterEncoded { + readonly _tag: "InvalidHereafter" + readonly slot: number +} +``` + +## NativeScript + +**Signature** + +```ts +export declare const NativeScript: Schema.Union< + [ + typeof ScriptPubKey, + typeof ScriptAll, + typeof ScriptAny, + typeof ScriptNOfK, + typeof InvalidBefore, + typeof InvalidHereafter + ] +> +``` + +## NativeScript (type alias) + +**Signature** + +```ts +export type NativeScript = ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter +``` + +## NativeScriptEncoded (type alias) + +**Signature** + +```ts +export type NativeScriptEncoded = + | ScriptPubKeyEncoded + | ScriptAllEncoded + | ScriptAnyEncoded + | ScriptNOfKEncoded + | InvalidBeforeEncoded + | InvalidHereafterEncoded +``` + +## NativeScriptError (class) + +**Signature** + +```ts +export declare class NativeScriptError +``` + +## ScriptAll (class) + +**Signature** + +```ts +export declare class ScriptAll +``` + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +## ScriptAllEncoded (interface) + +**Signature** + +```ts +export interface ScriptAllEncoded { + readonly _tag: "ScriptAll" + readonly scripts: ReadonlyArray +} +``` + +## ScriptAny (class) + +**Signature** + +```ts +export declare class ScriptAny +``` + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +## ScriptAnyEncoded (interface) + +**Signature** + +```ts +export interface ScriptAnyEncoded { + readonly _tag: "ScriptAny" + readonly scripts: ReadonlyArray +} +``` + +## ScriptNOfK (class) + +**Signature** + +```ts +export declare class ScriptNOfK +``` + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +## ScriptNOfKEncoded (interface) + +**Signature** + +```ts +export interface ScriptNOfKEncoded { + readonly _tag: "ScriptNOfK" + readonly n: bigint + readonly scripts: ReadonlyArray +} +``` + +## ScriptPubKey (class) + +**Signature** + +```ts +export declare class ScriptPubKey +``` + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +## ScriptPubKeyEncoded (interface) + +**Signature** + +```ts +export interface ScriptPubKeyEncoded { + readonly _tag: "ScriptPubKey" + readonly keyHash: typeof KeyHash.KeyHash.Encoded +} +``` + +## SlotNumber (type alias) + +**Signature** + +```ts +export type SlotNumber = typeof SlotNumber.Type +``` diff --git a/packages/evolution/docs/modules/Natural.ts.md b/packages/evolution/docs/modules/Natural.ts.md new file mode 100644 index 00000000..80c1a5d8 --- /dev/null +++ b/packages/evolution/docs/modules/Natural.ts.md @@ -0,0 +1,56 @@ +--- +title: Natural.ts +nav_order: 57 +parent: Modules +--- + +## Natural overview + +--- + +

Table of contents

+ +- [predicates](#predicates) + - [generator](#generator) +- [utils](#utils) + - [Natural](#natural) + - [Natural (type alias)](#natural-type-alias) + +--- + +# predicates + +## generator + +Check if the given value is a valid PositiveNumber + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# utils + +## Natural + +Natural number constructors +Used for validating non negative integers + +**Signature** + +```ts +export declare const Natural: Schema.brand +``` + +Added in v2.0.0 + +## Natural (type alias) + +**Signature** + +```ts +export type Natural = typeof Natural.Type +``` diff --git a/packages/evolution/docs/modules/Network.ts.md b/packages/evolution/docs/modules/Network.ts.md new file mode 100644 index 00000000..ab48cbde --- /dev/null +++ b/packages/evolution/docs/modules/Network.ts.md @@ -0,0 +1,13 @@ +--- +title: Network.ts +nav_order: 58 +parent: Modules +--- + +## Network overview + +--- + +

Table of contents

+ +--- diff --git a/packages/evolution/docs/modules/NetworkId.ts.md b/packages/evolution/docs/modules/NetworkId.ts.md new file mode 100644 index 00000000..1a58a2b7 --- /dev/null +++ b/packages/evolution/docs/modules/NetworkId.ts.md @@ -0,0 +1,53 @@ +--- +title: NetworkId.ts +nav_order: 59 +parent: Modules +--- + +## NetworkId overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [NetworkId](#networkid) + - [NetworkId (type alias)](#networkid-type-alias) + - [generator](#generator) + - [make](#make) + +--- + +# utils + +## NetworkId + +**Signature** + +```ts +export declare const NetworkId: Schema.brand, "NetworkId"> +``` + +## NetworkId (type alias) + +**Signature** + +```ts +export type NetworkId = typeof NetworkId.Type +``` + +## generator + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +## make + +**Signature** + +```ts +export declare const make: (a: number, options?: Schema.MakeOptions) => number & Brand<"NetworkId"> +``` diff --git a/packages/evolution/docs/modules/NonZeroInt64.ts.md b/packages/evolution/docs/modules/NonZeroInt64.ts.md new file mode 100644 index 00000000..9b826030 --- /dev/null +++ b/packages/evolution/docs/modules/NonZeroInt64.ts.md @@ -0,0 +1,276 @@ +--- +title: NonZeroInt64.ts +nav_order: 60 +parent: Modules +--- + +## NonZeroInt64 overview + +--- + +

Table of contents

+ +- [constants](#constants) + - [NEG_INT64_MIN](#neg_int64_min) +- [constructors](#constructors) + - [make](#make) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [NonZeroInt64Error (class)](#nonzeroint64error-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [NonZeroInt64 (type alias)](#nonzeroint64-type-alias) +- [ordering](#ordering) + - [compare](#compare) +- [predicates](#predicates) + - [is](#is) + - [isNegative](#isnegative) + - [isPositive](#ispositive) +- [schemas](#schemas) + - [NegInt64Schema](#negint64schema) + - [NonZeroInt64Schema](#nonzeroint64schema) + - [PosInt64Schema](#posint64schema) +- [transformation](#transformation) + - [abs](#abs) + - [negate](#negate) +- [utils](#utils) + - [NEG_INT64_MAX](#neg_int64_max) + - [POS_INT64_MAX](#pos_int64_max) + - [POS_INT64_MIN](#pos_int64_min) + +--- + +# constants + +## NEG_INT64_MIN + +Constants for NonZeroInt64 validation. +negInt64 = -9223372036854775808 .. -1 +posInt64 = 1 .. 9223372036854775807 +nonZeroInt64 = negInt64/ posInt64 + +**Signature** + +```ts +export declare const NEG_INT64_MIN: -9223372036854775808n +``` + +Added in v2.0.0 + +# constructors + +## make + +Smart constructor for creating NonZeroInt64 values. + +**Signature** + +```ts +export declare const make: (i: bigint, overrideOptions?: ParseOptions) => bigint +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two NonZeroInt64 values are equal. + +**Signature** + +```ts +export declare const equals: (a: NonZeroInt64, b: NonZeroInt64) => boolean +``` + +Added in v2.0.0 + +# errors + +## NonZeroInt64Error (class) + +Error class for NonZeroInt64 related operations. + +**Signature** + +```ts +export declare class NonZeroInt64Error +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random NonZeroInt64. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## NonZeroInt64 (type alias) + +Type alias for NonZeroInt64 representing non-zero signed 64-bit integers. +Used in minting operations where zero amounts are not allowed. + +**Signature** + +```ts +export type NonZeroInt64 = typeof NonZeroInt64Schema.Type +``` + +Added in v2.0.0 + +# ordering + +## compare + +Compare two NonZeroInt64 values. + +**Signature** + +```ts +export declare const compare: (a: NonZeroInt64, b: NonZeroInt64) => -1 | 0 | 1 +``` + +Added in v2.0.0 + +# predicates + +## is + +Check if a value is a valid NonZeroInt64. + +**Signature** + +```ts +export declare const is: (u: unknown, overrideOptions?: ParseOptions | number) => u is bigint +``` + +Added in v2.0.0 + +## isNegative + +Check if a NonZeroInt64 is negative. + +**Signature** + +```ts +export declare const isNegative: (value: NonZeroInt64) => boolean +``` + +Added in v2.0.0 + +## isPositive + +Check if a NonZeroInt64 is positive. + +**Signature** + +```ts +export declare const isPositive: (value: NonZeroInt64) => boolean +``` + +Added in v2.0.0 + +# schemas + +## NegInt64Schema + +Schema for validating negative 64-bit integers (-9223372036854775808 to -1). + +**Signature** + +```ts +export declare const NegInt64Schema: Schema.refine +``` + +Added in v2.0.0 + +## NonZeroInt64Schema + +Schema for NonZeroInt64 representing non-zero 64-bit signed integers. +nonZeroInt64 = negInt64/ posInt64 + +**Signature** + +```ts +export declare const NonZeroInt64Schema: Schema.Union< + [Schema.refine, Schema.refine] +> +``` + +Added in v2.0.0 + +## PosInt64Schema + +Schema for validating positive 64-bit integers (1 to 9223372036854775807). + +**Signature** + +```ts +export declare const PosInt64Schema: Schema.refine +``` + +Added in v2.0.0 + +# transformation + +## abs + +Get the absolute value of a NonZeroInt64. + +**Signature** + +```ts +export declare const abs: (value: NonZeroInt64) => NonZeroInt64 +``` + +Added in v2.0.0 + +## negate + +Negate a NonZeroInt64. + +**Signature** + +```ts +export declare const negate: (value: NonZeroInt64) => NonZeroInt64 +``` + +Added in v2.0.0 + +# utils + +## NEG_INT64_MAX + +**Signature** + +```ts +export declare const NEG_INT64_MAX: -1n +``` + +## POS_INT64_MAX + +**Signature** + +```ts +export declare const POS_INT64_MAX: 9223372036854775807n +``` + +## POS_INT64_MIN + +**Signature** + +```ts +export declare const POS_INT64_MIN: 1n +``` diff --git a/packages/evolution/docs/modules/Numeric.ts.md b/packages/evolution/docs/modules/Numeric.ts.md new file mode 100644 index 00000000..f2d958a5 --- /dev/null +++ b/packages/evolution/docs/modules/Numeric.ts.md @@ -0,0 +1,377 @@ +--- +title: Numeric.ts +nav_order: 61 +parent: Modules +--- + +## Numeric overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [INT16_MAX](#int16_max) + - [INT16_MIN](#int16_min) + - [INT32_MAX](#int32_max) + - [INT32_MIN](#int32_min) + - [INT64_MAX](#int64_max) + - [INT64_MIN](#int64_min) + - [INT8_MAX](#int8_max) + - [INT8_MIN](#int8_min) + - [Int16](#int16) + - [Int16 (type alias)](#int16-type-alias) + - [Int16Generator](#int16generator) + - [Int32](#int32) + - [Int32 (type alias)](#int32-type-alias) + - [Int32Generator](#int32generator) + - [Int64](#int64) + - [Int64 (type alias)](#int64-type-alias) + - [Int64Generator](#int64generator) + - [Int8](#int8) + - [Int8 (type alias)](#int8-type-alias) + - [Int8Generator](#int8generator) + - [UINT16_MAX](#uint16_max) + - [UINT16_MIN](#uint16_min) + - [UINT32_MAX](#uint32_max) + - [UINT32_MIN](#uint32_min) + - [UINT64_MAX](#uint64_max) + - [UINT64_MIN](#uint64_min) + - [UINT8_MAX](#uint8_max) + - [UINT8_MIN](#uint8_min) + - [Uint16 (type alias)](#uint16-type-alias) + - [Uint16Generator](#uint16generator) + - [Uint16Schema](#uint16schema) + - [Uint32 (type alias)](#uint32-type-alias) + - [Uint32Generator](#uint32generator) + - [Uint32Schema](#uint32schema) + - [Uint64 (type alias)](#uint64-type-alias) + - [Uint64Generator](#uint64generator) + - [Uint64Schema](#uint64schema) + - [Uint8 (type alias)](#uint8-type-alias) + - [Uint8Generator](#uint8generator) + - [Uint8Schema](#uint8schema) + +--- + +# utils + +## INT16_MAX + +**Signature** + +```ts +export declare const INT16_MAX: 32767 +``` + +## INT16_MIN + +**Signature** + +```ts +export declare const INT16_MIN: -32768 +``` + +## INT32_MAX + +**Signature** + +```ts +export declare const INT32_MAX: 2147483647 +``` + +## INT32_MIN + +**Signature** + +```ts +export declare const INT32_MIN: -2147483648 +``` + +## INT64_MAX + +**Signature** + +```ts +export declare const INT64_MAX: 9223372036854775807n +``` + +## INT64_MIN + +**Signature** + +```ts +export declare const INT64_MIN: -9223372036854775808n +``` + +## INT8_MAX + +**Signature** + +```ts +export declare const INT8_MAX: 127 +``` + +## INT8_MIN + +**Signature** + +```ts +export declare const INT8_MIN: -128 +``` + +## Int16 + +**Signature** + +```ts +export declare const Int16: Schema.refine +``` + +## Int16 (type alias) + +**Signature** + +```ts +export type Int16 = typeof Int16.Type +``` + +## Int16Generator + +**Signature** + +```ts +export declare const Int16Generator: FastCheck.Arbitrary +``` + +## Int32 + +**Signature** + +```ts +export declare const Int32: Schema.refine +``` + +## Int32 (type alias) + +**Signature** + +```ts +export type Int32 = typeof Int32.Type +``` + +## Int32Generator + +**Signature** + +```ts +export declare const Int32Generator: FastCheck.Arbitrary +``` + +## Int64 + +**Signature** + +```ts +export declare const Int64: Schema.refine +``` + +## Int64 (type alias) + +**Signature** + +```ts +export type Int64 = typeof Int64.Type +``` + +## Int64Generator + +**Signature** + +```ts +export declare const Int64Generator: FastCheck.Arbitrary +``` + +## Int8 + +**Signature** + +```ts +export declare const Int8: Schema.refine +``` + +## Int8 (type alias) + +**Signature** + +```ts +export type Int8 = typeof Int8.Type +``` + +## Int8Generator + +**Signature** + +```ts +export declare const Int8Generator: FastCheck.Arbitrary +``` + +## UINT16_MAX + +**Signature** + +```ts +export declare const UINT16_MAX: 65535 +``` + +## UINT16_MIN + +**Signature** + +```ts +export declare const UINT16_MIN: 0 +``` + +## UINT32_MAX + +**Signature** + +```ts +export declare const UINT32_MAX: 4294967295 +``` + +## UINT32_MIN + +**Signature** + +```ts +export declare const UINT32_MIN: 0 +``` + +## UINT64_MAX + +**Signature** + +```ts +export declare const UINT64_MAX: 18446744073709551615n +``` + +## UINT64_MIN + +**Signature** + +```ts +export declare const UINT64_MIN: 0n +``` + +## UINT8_MAX + +**Signature** + +```ts +export declare const UINT8_MAX: 255 +``` + +## UINT8_MIN + +**Signature** + +```ts +export declare const UINT8_MIN: 0 +``` + +## Uint16 (type alias) + +**Signature** + +```ts +export type Uint16 = typeof Uint16Schema.Type +``` + +## Uint16Generator + +**Signature** + +```ts +export declare const Uint16Generator: FastCheck.Arbitrary +``` + +## Uint16Schema + +**Signature** + +```ts +export declare const Uint16Schema: Schema.refine +``` + +## Uint32 (type alias) + +**Signature** + +```ts +export type Uint32 = typeof Uint32Schema.Type +``` + +## Uint32Generator + +**Signature** + +```ts +export declare const Uint32Generator: FastCheck.Arbitrary +``` + +## Uint32Schema + +**Signature** + +```ts +export declare const Uint32Schema: Schema.refine +``` + +## Uint64 (type alias) + +**Signature** + +```ts +export type Uint64 = typeof Uint64Schema.Type +``` + +## Uint64Generator + +**Signature** + +```ts +export declare const Uint64Generator: FastCheck.Arbitrary +``` + +## Uint64Schema + +**Signature** + +```ts +export declare const Uint64Schema: Schema.refine +``` + +## Uint8 (type alias) + +**Signature** + +```ts +export type Uint8 = typeof Uint8Schema.Type +``` + +## Uint8Generator + +**Signature** + +```ts +export declare const Uint8Generator: FastCheck.Arbitrary +``` + +## Uint8Schema + +**Signature** + +```ts +export declare const Uint8Schema: Schema.refine +``` diff --git a/packages/evolution/docs/modules/OperationalCert.ts.md b/packages/evolution/docs/modules/OperationalCert.ts.md new file mode 100644 index 00000000..ef10dba0 --- /dev/null +++ b/packages/evolution/docs/modules/OperationalCert.ts.md @@ -0,0 +1,202 @@ +--- +title: OperationalCert.ts +nav_order: 62 +parent: Modules +--- + +## OperationalCert overview + +--- + +

Table of contents

+ +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [OperationalCertError (class)](#operationalcerterror-class) +- [model](#model) + - [OperationalCert (class)](#operationalcert-class) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [FromCDDL](#fromcddl) +- [utils](#utils) + - [Codec](#codec) + +--- + +# equality + +## equals + +Check if two OperationalCert instances are equal. + +**Signature** + +```ts +export declare const equals: (a: OperationalCert, b: OperationalCert) => boolean +``` + +Added in v2.0.0 + +# errors + +## OperationalCertError (class) + +Error class for OperationalCert operations + +**Signature** + +```ts +export declare class OperationalCertError +``` + +Added in v2.0.0 + +# model + +## OperationalCert (class) + +OperationalCert class based on Conway CDDL specification + +CDDL: operational_cert = [ +hot_vkey : kes_vkey, +sequence_number : uint64, +kes_period : uint64, +sigma : ed25519_signature +] + +**Signature** + +```ts +export declare class OperationalCert +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for OperationalCert. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.BigIntFromSelf, + typeof Schema.BigIntFromSelf, + typeof Schema.Uint8ArrayFromSelf + ] + >, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for OperationalCert. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.BigIntFromSelf, + typeof Schema.BigIntFromSelf, + typeof Schema.Uint8ArrayFromSelf + ] + >, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for OperationalCert. +operational_cert = [ +hot_vkey : kes_vkey, +sequence_number : uint64, +kes_period : uint64, +sigma : ed25519_signature +] + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.BigIntFromSelf, + typeof Schema.BigIntFromSelf, + typeof Schema.Uint8ArrayFromSelf + ] + >, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: OperationalCert) => any; cborHex: (input: OperationalCert) => string } + Decode: { cborBytes: (input: any) => OperationalCert; cborHex: (input: string) => OperationalCert } + EncodeEffect: { + cborBytes: (input: OperationalCert) => Effect.Effect> + cborHex: (input: OperationalCert) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: OperationalCert) => Either> + cborHex: (input: OperationalCert) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/packages/evolution/docs/modules/PaymentAddress.ts.md b/packages/evolution/docs/modules/PaymentAddress.ts.md new file mode 100644 index 00000000..83a957c2 --- /dev/null +++ b/packages/evolution/docs/modules/PaymentAddress.ts.md @@ -0,0 +1,66 @@ +--- +title: PaymentAddress.ts +nav_order: 63 +parent: Modules +--- + +## PaymentAddress overview + +--- + +

Table of contents

+ +- [model](#model) + - [PaymentAddress (type alias)](#paymentaddress-type-alias) +- [predicates](#predicates) + - [isPaymentAddress](#ispaymentaddress) +- [schemas](#schemas) + - [PaymentAddress](#paymentaddress) + +--- + +# model + +## PaymentAddress (type alias) + +Type representing a payment address string in bech32 format + +**Signature** + +```ts +export type PaymentAddress = Schema.Schema.Type +``` + +Added in v2.0.0 + +# predicates + +## isPaymentAddress + +Check if the given value is a valid PaymentAddress + +**Signature** + +```ts +export declare const isPaymentAddress: ( + u: unknown, + overrideOptions?: ParseOptions | number +) => u is string & Brand<"PaymentAddress"> +``` + +Added in v2.0.0 + +# schemas + +## PaymentAddress + +Bech32 address format schema (human-readable addresses) +Following CIP-0019 encoding requirements + +**Signature** + +```ts +export declare const PaymentAddress: Schema.brand, "PaymentAddress"> +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/Pointer.ts.md b/packages/evolution/docs/modules/Pointer.ts.md new file mode 100644 index 00000000..4cbdab7e --- /dev/null +++ b/packages/evolution/docs/modules/Pointer.ts.md @@ -0,0 +1,72 @@ +--- +title: Pointer.ts +nav_order: 64 +parent: Modules +--- + +## Pointer overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [make](#make) +- [predicates](#predicates) + - [isPointer](#ispointer) +- [schemas](#schemas) + - [Pointer (class)](#pointer-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) + +--- + +# constructors + +## make + +Create a new Pointer instance + +**Signature** + +```ts +export declare const make: (slot: Natural.Natural, txIndex: Natural.Natural, certIndex: Natural.Natural) => Pointer +``` + +Added in v2.0.0 + +# predicates + +## isPointer + +Check if the given value is a valid Pointer + +**Signature** + +```ts +export declare const isPointer: (u: unknown, overrideOptions?: ParseOptions | number) => u is Pointer +``` + +Added in v2.0.0 + +# schemas + +## Pointer (class) + +Schema for pointer to a stake registration certificate +Contains slot, transaction index, and certificate index information + +**Signature** + +```ts +export declare class Pointer +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` diff --git a/packages/evolution/docs/modules/PointerAddress.ts.md b/packages/evolution/docs/modules/PointerAddress.ts.md new file mode 100644 index 00000000..8725a7af --- /dev/null +++ b/packages/evolution/docs/modules/PointerAddress.ts.md @@ -0,0 +1,174 @@ +--- +title: PointerAddress.ts +nav_order: 65 +parent: Modules +--- + +## PointerAddress overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [decodeVariableLength](#decodevariablelength) + - [encodeVariableLength](#encodevariablelength) +- [equality](#equality) + - [equals](#equals) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [PointerAddressError (class)](#pointeraddresserror-class) +- [schemas](#schemas) + - [PointerAddress (class)](#pointeraddress-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) +- [utils](#utils) + - [Codec](#codec) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + +--- + +# encoding/decoding + +## decodeVariableLength + +Decode a variable length integer from a Uint8Array +Following the Cardano ledger implementation for variable-length integers + +**Signature** + +```ts +export declare const decodeVariableLength: ( + bytes: Uint8Array, + offset?: number | undefined +) => Effect.Effect<[Natural.Natural, number], PointerAddressError | ParseResult.ParseIssue> +``` + +Added in v2.0.0 + +## encodeVariableLength + +Encode a number as a variable length integer following the Cardano ledger specification + +**Signature** + +```ts +export declare const encodeVariableLength: ( + natural: Natural.Natural +) => Effect.Effect +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two PointerAddress instances are equal. + +**Signature** + +```ts +export declare const equals: (a: PointerAddress, b: PointerAddress) => boolean +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random PointerAddress. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## PointerAddressError (class) + +Error thrown when address operations fail + +**Signature** + +```ts +export declare class PointerAddressError +``` + +Added in v2.0.0 + +# schemas + +## PointerAddress (class) + +Pointer address with payment credential and pointer to stake registration + +**Signature** + +```ts +export declare class PointerAddress +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: PointerAddress) => any; hex: (input: PointerAddress) => string } + Decode: { bytes: (input: any) => PointerAddress; hex: (input: string) => PointerAddress } + EncodeEffect: { + bytes: (input: PointerAddress) => Effect.Effect> + hex: (input: PointerAddress) => Effect.Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect.Effect> + hex: (input: string) => Effect.Effect> + } + EncodeEither: { + bytes: (input: PointerAddress) => Either> + hex: (input: PointerAddress) => Either> + } + DecodeEither: { + bytes: (input: any) => Either> + hex: (input: string) => Either> + } +} +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transformOrFail +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transformOrFail +> +``` diff --git a/packages/evolution/docs/modules/PolicyId.ts.md b/packages/evolution/docs/modules/PolicyId.ts.md new file mode 100644 index 00000000..6bf75cd6 --- /dev/null +++ b/packages/evolution/docs/modules/PolicyId.ts.md @@ -0,0 +1,168 @@ +--- +title: PolicyId.ts +nav_order: 66 +parent: Modules +--- + +## PolicyId overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [PolicyIdError (class)](#policyiderror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [PolicyId](#policyid) +- [utils](#utils) + - [PolicyId (type alias)](#policyid-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for PolicyId encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"PolicyId">) => any; hex: (input: string & Brand<"PolicyId">) => string } + Decode: { bytes: (input: any) => string & Brand<"PolicyId">; hex: (input: string) => string & Brand<"PolicyId"> } + EncodeEffect: { + bytes: (input: string & Brand<"PolicyId">) => Effect> + hex: (input: string & Brand<"PolicyId">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"PolicyId">) => Either> + hex: (input: string & Brand<"PolicyId">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two PolicyId instances are equal. + +**Signature** + +```ts +export declare const equals: (a: PolicyId, b: PolicyId) => boolean +``` + +Added in v2.0.0 + +# errors + +## PolicyIdError (class) + +Error class for PolicyId related operations. + +**Signature** + +```ts +export declare class PolicyIdError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random PolicyId. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +Schema for transforming between Uint8Array and PolicyId. + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "PolicyId"> +> +``` + +Added in v2.0.0 + +## FromHex + +Schema for transforming between hex string and PolicyId. + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "PolicyId"> +> +``` + +Added in v2.0.0 + +## PolicyId + +Schema for PolicyId representing a minting policy identifier. +A PolicyId is a script hash (hash28) that identifies a minting policy. + +Note: PolicyId is equivalent to ScriptHash as defined in the CDDL: +policy_id = script_hash +script_hash = hash28 + +**Signature** + +```ts +export declare const PolicyId: Schema.brand< + Schema.refine>, + "PolicyId" +> +``` + +Added in v2.0.0 + +# utils + +## PolicyId (type alias) + +**Signature** + +```ts +export type PolicyId = typeof PolicyId.Type +``` diff --git a/packages/evolution/docs/modules/PoolKeyHash.ts.md b/packages/evolution/docs/modules/PoolKeyHash.ts.md new file mode 100644 index 00000000..3b9d098e --- /dev/null +++ b/packages/evolution/docs/modules/PoolKeyHash.ts.md @@ -0,0 +1,162 @@ +--- +title: PoolKeyHash.ts +nav_order: 67 +parent: Modules +--- + +## PoolKeyHash overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [PoolKeyHashError (class)](#poolkeyhasherror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [PoolKeyHash](#poolkeyhash) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [PoolKeyHash (type alias)](#poolkeyhash-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for PoolKeyHash encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { + bytes: (input: string & Brand<"PoolKeyHash">) => any + hex: (input: string & Brand<"PoolKeyHash">) => string + } + Decode: { + bytes: (input: any) => string & Brand<"PoolKeyHash"> + hex: (input: string) => string & Brand<"PoolKeyHash"> + } + EncodeEffect: { + bytes: (input: string & Brand<"PoolKeyHash">) => Effect> + hex: (input: string & Brand<"PoolKeyHash">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"PoolKeyHash">) => Either> + hex: (input: string & Brand<"PoolKeyHash">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two PoolKeyHash instances are equal. + +**Signature** + +```ts +export declare const equals: (a: PoolKeyHash, b: PoolKeyHash) => boolean +``` + +Added in v2.0.0 + +# errors + +## PoolKeyHashError (class) + +Error class for PoolKeyHash related operations. + +**Signature** + +```ts +export declare class PoolKeyHashError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random PoolKeyHash. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## PoolKeyHash + +PoolKeyHash is a 28-byte hash representing a stake pool's verification key. +pool_keyhash = hash28 + +**Signature** + +```ts +export declare const PoolKeyHash: Schema.brand< + Schema.refine>, + "PoolKeyHash" +> +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "PoolKeyHash"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "PoolKeyHash"> +> +``` + +## PoolKeyHash (type alias) + +**Signature** + +```ts +export type PoolKeyHash = typeof PoolKeyHash.Type +``` diff --git a/packages/evolution/docs/modules/PoolMetadata.ts.md b/packages/evolution/docs/modules/PoolMetadata.ts.md new file mode 100644 index 00000000..701766aa --- /dev/null +++ b/packages/evolution/docs/modules/PoolMetadata.ts.md @@ -0,0 +1,158 @@ +--- +title: PoolMetadata.ts +nav_order: 68 +parent: Modules +--- + +## PoolMetadata overview + +--- + +

Table of contents

+ +- [errors](#errors) + - [PoolMetadataError (class)](#poolmetadataerror-class) +- [model](#model) + - [PoolMetadata (class)](#poolmetadata-class) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [FromCDDL](#fromcddl) +- [utils](#utils) + - [Codec](#codec) + +--- + +# errors + +## PoolMetadataError (class) + +Error class for PoolMetadata related operations. + +**Signature** + +```ts +export declare class PoolMetadataError +``` + +Added in v2.0.0 + +# model + +## PoolMetadata (class) + +Schema for PoolMetadata representing pool metadata information. +pool_metadata = [url, bytes] + +**Signature** + +```ts +export declare class PoolMetadata +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for PoolMetadata. +Transforms between Uint8Array and PoolMetadata using CBOR encoding. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for PoolMetadata. +Transforms between hex string and PoolMetadata using CBOR encoding. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for PoolMetadata as defined in the specification: +pool_metadata = [url, bytes] + +Transforms between CBOR tuple structure and PoolMetadata model. + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: PoolMetadata) => any; cborHex: (input: PoolMetadata) => string } + Decode: { cborBytes: (input: any) => PoolMetadata; cborHex: (input: string) => PoolMetadata } + EncodeEffect: { + cborBytes: (input: PoolMetadata) => Effect.Effect> + cborHex: (input: PoolMetadata) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: PoolMetadata) => Either> + cborHex: (input: PoolMetadata) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/packages/evolution/docs/modules/PoolParams.ts.md b/packages/evolution/docs/modules/PoolParams.ts.md new file mode 100644 index 00000000..fca62f0d --- /dev/null +++ b/packages/evolution/docs/modules/PoolParams.ts.md @@ -0,0 +1,374 @@ +--- +title: PoolParams.ts +nav_order: 69 +parent: Modules +--- + +## PoolParams overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [make](#make) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [PoolParamsError (class)](#poolparamserror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [PoolParams (class)](#poolparams-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) +- [predicates](#predicates) + - [hasMinimumCost](#hasminimumcost) + - [hasValidMargin](#hasvalidmargin) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [PoolParamsCDDLSchema](#poolparamscddlschema) +- [transformation](#transformation) + - [calculatePoolRewards](#calculatepoolrewards) + - [getEffectiveStake](#geteffectivestake) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## make + +Create a PoolParams instance with validation. + +**Signature** + +```ts +export declare const make: (params: { + operator: PoolKeyHash.PoolKeyHash + vrfKeyhash: VrfKeyHash.VrfKeyHash + pledge: Coin.Coin + cost: Coin.Coin + margin: UnitInterval.UnitInterval + rewardAccount: RewardAccount.RewardAccount + poolOwners: Array + relays: Array + poolMetadata?: PoolMetadata.PoolMetadata +}) => PoolParams +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two PoolParams instances are equal. + +**Signature** + +```ts +export declare const equals: (a: PoolParams, b: PoolParams) => boolean +``` + +Added in v2.0.0 + +# errors + +## PoolParamsError (class) + +Error class for PoolParams related operations. + +**Signature** + +```ts +export declare class PoolParamsError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random PoolParams. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## PoolParams (class) + +Schema for PoolParams representing stake pool registration parameters. + +``` +pool_params = + ( operator : pool_keyhash + , vrf_keyhash : vrf_keyhash + , pledge : coin + , cost : coin + , margin : unit_interval + , reward_account : reward_account + , pool_owners : set + , relays : [* relay] + , pool_metadata : pool_metadata/ nil + ) +``` + +**Signature** + +```ts +export declare class PoolParams +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +# predicates + +## hasMinimumCost + +Check if the pool has the minimum required cost. + +**Signature** + +```ts +export declare const hasMinimumCost: (params: PoolParams, minPoolCost: Coin.Coin) => boolean +``` + +Added in v2.0.0 + +## hasValidMargin + +Check if the pool margin is within valid range (0 to 1). + +**Signature** + +```ts +export declare const hasValidMargin: (params: PoolParams) => boolean +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for PoolParams. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.BigIntFromSelf, + typeof Schema.BigIntFromSelf, + Schema.SchemaClass< + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + never + >, + typeof Schema.Uint8ArrayFromSelf, + Schema.Array$, + Schema.Array$< + Schema.SchemaClass< + readonly [1n, bigint | null, string] | readonly [0n, bigint | null, any, any] | readonly [2n, string], + readonly [1n, bigint | null, string] | readonly [0n, bigint | null, any, any] | readonly [2n, string], + never + > + >, + Schema.NullOr> + ] + >, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for PoolParams. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.BigIntFromSelf, + typeof Schema.BigIntFromSelf, + Schema.SchemaClass< + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + never + >, + typeof Schema.Uint8ArrayFromSelf, + Schema.Array$, + Schema.Array$< + Schema.SchemaClass< + readonly [1n, bigint | null, string] | readonly [0n, bigint | null, any, any] | readonly [2n, string], + readonly [1n, bigint | null, string] | readonly [0n, bigint | null, any, any] | readonly [2n, string], + never + > + >, + Schema.NullOr> + ] + >, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## PoolParamsCDDLSchema + +CDDL schema for PoolParams. + +``` +pool_params = [ + operator : pool_keyhash, + vrf_keyhash : vrf_keyhash, + pledge : coin, + cost : coin, + margin : unit_interval, + reward_account : reward_account, + pool_owners : set, + relays : [* relay], + pool_metadata : pool_metadata / nil +] +``` + +**Signature** + +```ts +export declare const PoolParamsCDDLSchema: Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.Uint8ArrayFromSelf, + typeof Schema.BigIntFromSelf, + typeof Schema.BigIntFromSelf, + Schema.SchemaClass< + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + never + >, + typeof Schema.Uint8ArrayFromSelf, + Schema.Array$, + Schema.Array$< + Schema.SchemaClass< + readonly [1n, bigint | null, string] | readonly [0n, bigint | null, any, any] | readonly [2n, string], + readonly [1n, bigint | null, string] | readonly [0n, bigint | null, any, any] | readonly [2n, string], + never + > + >, + Schema.NullOr> + ] + >, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# transformation + +## calculatePoolRewards + +Calculate pool operator rewards based on pool parameters. + +**Signature** + +```ts +export declare const calculatePoolRewards: ( + params: PoolParams, + totalRewards: Coin.Coin +) => { operatorRewards: Coin.Coin; delegatorRewards: Coin.Coin } +``` + +Added in v2.0.0 + +## getEffectiveStake + +Get total effective stake for pool rewards calculation. + +**Signature** + +```ts +export declare const getEffectiveStake: (params: PoolParams, totalStake: Coin.Coin) => Coin.Coin +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: PoolParams) => any; cborHex: (input: PoolParams) => string } + Decode: { cborBytes: (input: any) => PoolParams; cborHex: (input: string) => PoolParams } + EncodeEffect: { + cborBytes: (input: PoolParams) => Effect.Effect> + cborHex: (input: PoolParams) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: PoolParams) => Either> + cborHex: (input: PoolParams) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/packages/evolution/docs/modules/Port.ts.md b/packages/evolution/docs/modules/Port.ts.md new file mode 100644 index 00000000..b9117668 --- /dev/null +++ b/packages/evolution/docs/modules/Port.ts.md @@ -0,0 +1,244 @@ +--- +title: Port.ts +nav_order: 70 +parent: Modules +--- + +## Port overview + +--- + +

Table of contents

+ +- [constants](#constants) + - [PORT_MIN_VALUE](#port_min_value) +- [constructors](#constructors) + - [make](#make) +- [encoding/decoding](#encodingdecoding) + - [Encode](#encode) + - [EncodeEither](#encodeeither) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [PortError (class)](#porterror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [Port (type alias)](#port-type-alias) +- [predicates](#predicates) + - [is](#is) + - [isDynamic](#isdynamic) + - [isRegistered](#isregistered) + - [isWellKnown](#iswellknown) +- [schemas](#schemas) + - [PortSchema](#portschema) +- [utils](#utils) + - [Decode](#decode) + - [DecodeEither](#decodeeither) + - [PORT_MAX_VALUE](#port_max_value) + +--- + +# constants + +## PORT_MIN_VALUE + +CDDL specification: +port = uint .le 65535 + +**Signature** + +```ts +export declare const PORT_MIN_VALUE: 0 +``` + +Added in v2.0.0 + +# constructors + +## make + +Smart constructor for creating Port values. + +**Signature** + +```ts +export declare const make: (value: number) => Port +``` + +Added in v2.0.0 + +# encoding/decoding + +## Encode + +Synchronous encoding/decoding utilities. + +**Signature** + +```ts +export declare const Encode: { sync: (a: number, overrideOptions?: ParseOptions) => number } +``` + +Added in v2.0.0 + +## EncodeEither + +Either encoding/decoding utilities. + +**Signature** + +```ts +export declare const EncodeEither: { either: (a: number, overrideOptions?: ParseOptions) => Either } +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two Port instances are equal. + +**Signature** + +```ts +export declare const equals: (a: Port, b: Port) => boolean +``` + +Added in v2.0.0 + +# errors + +## PortError (class) + +Error class for Port related operations. + +**Signature** + +```ts +export declare class PortError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random Port. + +**Signature** + +```ts +export declare const generator: Arbitrary +``` + +Added in v2.0.0 + +# model + +## Port (type alias) + +Type alias for Port representing network port numbers. +Valid range is 0-65535 as per standard TCP/UDP port specification. + +**Signature** + +```ts +export type Port = typeof PortSchema.Type +``` + +Added in v2.0.0 + +# predicates + +## is + +Check if a value is a valid Port. + +**Signature** + +```ts +export declare const is: (value: unknown) => value is Port +``` + +Added in v2.0.0 + +## isDynamic + +Check if a port is a dynamic/private port (49152-65535). + +**Signature** + +```ts +export declare const isDynamic: (port: Port) => boolean +``` + +Added in v2.0.0 + +## isRegistered + +Check if a port is a registered port (1024-49151). + +**Signature** + +```ts +export declare const isRegistered: (port: Port) => boolean +``` + +Added in v2.0.0 + +## isWellKnown + +Check if a port is a well-known port (0-1023). + +**Signature** + +```ts +export declare const isWellKnown: (port: Port) => boolean +``` + +Added in v2.0.0 + +# schemas + +## PortSchema + +Schema for validating port numbers (0-65535). + +**Signature** + +```ts +export declare const PortSchema: Schema.refine +``` + +Added in v2.0.0 + +# utils + +## Decode + +**Signature** + +```ts +export declare const Decode: { sync: (u: unknown, overrideOptions?: ParseOptions) => number } +``` + +## DecodeEither + +**Signature** + +```ts +export declare const DecodeEither: { + either: (u: unknown, overrideOptions?: ParseOptions) => Either +} +``` + +## PORT_MAX_VALUE + +**Signature** + +```ts +export declare const PORT_MAX_VALUE: 65535 +``` diff --git a/packages/evolution/docs/modules/PositiveCoin.ts.md b/packages/evolution/docs/modules/PositiveCoin.ts.md new file mode 100644 index 00000000..a361a575 --- /dev/null +++ b/packages/evolution/docs/modules/PositiveCoin.ts.md @@ -0,0 +1,281 @@ +--- +title: PositiveCoin.ts +nav_order: 71 +parent: Modules +--- + +## PositiveCoin overview + +--- + +

Table of contents

+ +- [constants](#constants) + - [MAX_POSITIVE_COIN_VALUE](#max_positive_coin_value) + - [MIN_POSITIVE_COIN_VALUE](#min_positive_coin_value) +- [constructors](#constructors) + - [fromCoin](#fromcoin) + - [make](#make) +- [encoding/decoding](#encodingdecoding) + - [Encode](#encode) + - [EncodeEither](#encodeeither) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [PositiveCoinError (class)](#positivecoinerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [PositiveCoin (type alias)](#positivecoin-type-alias) +- [ordering](#ordering) + - [compare](#compare) +- [predicates](#predicates) + - [is](#is) +- [schemas](#schemas) + - [PositiveCoinSchema](#positivecoinschema) +- [transformation](#transformation) + - [add](#add) + - [subtract](#subtract) + - [toCoin](#tocoin) +- [utils](#utils) + - [Decode](#decode) + - [DecodeEither](#decodeeither) + +--- + +# constants + +## MAX_POSITIVE_COIN_VALUE + +Maximum value for a positive coin amount (maxWord64). + +**Signature** + +```ts +export declare const MAX_POSITIVE_COIN_VALUE: 18446744073709551615n +``` + +Added in v2.0.0 + +## MIN_POSITIVE_COIN_VALUE + +Minimum value for a positive coin amount. + +**Signature** + +```ts +export declare const MIN_POSITIVE_COIN_VALUE: 1n +``` + +Added in v2.0.0 + +# constructors + +## fromCoin + +Create a PositiveCoin from a regular Coin, throwing if the value is zero. + +**Signature** + +```ts +export declare const fromCoin: (coin: Coin.Coin) => PositiveCoin +``` + +Added in v2.0.0 + +## make + +Smart constructor for creating PositiveCoin values. + +**Signature** + +```ts +export declare const make: (value: bigint) => PositiveCoin +``` + +Added in v2.0.0 + +# encoding/decoding + +## Encode + +Synchronous encoding/decoding utilities. + +**Signature** + +```ts +export declare const Encode: { sync: (a: bigint, overrideOptions?: ParseOptions) => bigint } +``` + +Added in v2.0.0 + +## EncodeEither + +Either encoding/decoding utilities. + +**Signature** + +```ts +export declare const EncodeEither: { either: (a: bigint, overrideOptions?: ParseOptions) => Either } +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two positive coin amounts are equal. + +**Signature** + +```ts +export declare const equals: (a: PositiveCoin, b: PositiveCoin) => boolean +``` + +Added in v2.0.0 + +# errors + +## PositiveCoinError (class) + +Error class for PositiveCoin related operations. + +**Signature** + +```ts +export declare class PositiveCoinError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random PositiveCoin value. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## PositiveCoin (type alias) + +Type alias for PositiveCoin representing positive amounts of native assets. +Used in multiasset maps where zero amounts are not allowed. + +**Signature** + +```ts +export type PositiveCoin = typeof PositiveCoinSchema.Type +``` + +Added in v2.0.0 + +# ordering + +## compare + +Compare two positive coin amounts. + +**Signature** + +```ts +export declare const compare: (a: PositiveCoin, b: PositiveCoin) => -1 | 0 | 1 +``` + +Added in v2.0.0 + +# predicates + +## is + +Check if a value is a valid PositiveCoin. + +**Signature** + +```ts +export declare const is: (value: unknown) => value is PositiveCoin +``` + +Added in v2.0.0 + +# schemas + +## PositiveCoinSchema + +Schema for validating positive coin amounts. +positive_coin = 1 .. maxWord64 + +**Signature** + +```ts +export declare const PositiveCoinSchema: Schema.refine +``` + +Added in v2.0.0 + +# transformation + +## add + +Add two positive coin amounts safely. + +**Signature** + +```ts +export declare const add: (a: PositiveCoin, b: PositiveCoin) => PositiveCoin +``` + +Added in v2.0.0 + +## subtract + +Subtract two positive coin amounts safely. +Note: Result must still be positive. + +**Signature** + +```ts +export declare const subtract: (a: PositiveCoin, b: PositiveCoin) => PositiveCoin +``` + +Added in v2.0.0 + +## toCoin + +Convert a PositiveCoin to a regular Coin. + +**Signature** + +```ts +export declare const toCoin: (positiveCoin: PositiveCoin) => Coin.Coin +``` + +Added in v2.0.0 + +# utils + +## Decode + +**Signature** + +```ts +export declare const Decode: { sync: (u: unknown, overrideOptions?: ParseOptions) => bigint } +``` + +## DecodeEither + +**Signature** + +```ts +export declare const DecodeEither: { + either: (u: unknown, overrideOptions?: ParseOptions) => Either +} +``` diff --git a/packages/evolution/docs/modules/ProposalProcedures.ts.md b/packages/evolution/docs/modules/ProposalProcedures.ts.md new file mode 100644 index 00000000..1794e269 --- /dev/null +++ b/packages/evolution/docs/modules/ProposalProcedures.ts.md @@ -0,0 +1,48 @@ +--- +title: ProposalProcedures.ts +nav_order: 72 +parent: Modules +--- + +## ProposalProcedures overview + +--- + +

Table of contents

+ +- [model](#model) + - [ProposalProcedures](#proposalprocedures) +- [utils](#utils) + - [ProposalProcedures (type alias)](#proposalprocedures-type-alias) + +--- + +# model + +## ProposalProcedures + +ProposalProcedures based on Conway CDDL specification + +``` +CDDL: proposal_procedures = nonempty_set +``` + +This is a non-empty set of proposal procedures. + +**Signature** + +```ts +export declare const ProposalProcedures: typeof Schema.Unknown +``` + +Added in v2.0.0 + +# utils + +## ProposalProcedures (type alias) + +**Signature** + +```ts +export type ProposalProcedures = Schema.Schema.Type +``` diff --git a/packages/evolution/docs/modules/ProtocolVersion.ts.md b/packages/evolution/docs/modules/ProtocolVersion.ts.md new file mode 100644 index 00000000..2b8e2590 --- /dev/null +++ b/packages/evolution/docs/modules/ProtocolVersion.ts.md @@ -0,0 +1,171 @@ +--- +title: ProtocolVersion.ts +nav_order: 73 +parent: Modules +--- + +## ProtocolVersion overview + +--- + +

Table of contents

+ +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [ProtocolVersionError (class)](#protocolversionerror-class) +- [model](#model) + - [ProtocolVersion (class)](#protocolversion-class) +- [schemas](#schemas) + - [FromCBORBytes](#fromcborbytes) + - [FromCBORHex](#fromcborhex) + - [FromCDDL](#fromcddl) +- [utils](#utils) + - [Codec](#codec) + +--- + +# equality + +## equals + +Check if two ProtocolVersion instances are equal. + +**Signature** + +```ts +export declare const equals: (a: ProtocolVersion, b: ProtocolVersion) => boolean +``` + +Added in v2.0.0 + +# errors + +## ProtocolVersionError (class) + +Error class for ProtocolVersion related operations. + +**Signature** + +```ts +export declare class ProtocolVersionError +``` + +Added in v2.0.0 + +# model + +## ProtocolVersion (class) + +ProtocolVersion class based on Conway CDDL specification + +CDDL: protocol_version = [major_version : uint32, minor_version : uint32] + +**Signature** + +```ts +export declare class ProtocolVersion +``` + +Added in v2.0.0 + +# schemas + +## FromCBORBytes + +CBOR bytes transformation schema for ProtocolVersion. + +**Signature** + +```ts +export declare const FromCBORBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromCBORHex + +CBOR hex transformation schema for ProtocolVersion. + +**Signature** + +```ts +export declare const FromCBORHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for ProtocolVersion. +protocol_version = [major_version : uint32, minor_version : uint32] + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { bytes: (input: ProtocolVersion) => any; variableBytes: (input: ProtocolVersion) => string } + Decode: { bytes: (input: any) => ProtocolVersion; variableBytes: (input: string) => ProtocolVersion } + EncodeEffect: { + bytes: (input: ProtocolVersion) => Effect.Effect> + variableBytes: (input: ProtocolVersion) => Effect.Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect.Effect> + variableBytes: (input: string) => Effect.Effect> + } + EncodeEither: { + bytes: (input: ProtocolVersion) => Either> + variableBytes: (input: ProtocolVersion) => Either> + } + DecodeEither: { + bytes: (input: any) => Either> + variableBytes: (input: string) => Either> + } +} +``` diff --git a/packages/evolution/docs/modules/Relay.ts.md b/packages/evolution/docs/modules/Relay.ts.md new file mode 100644 index 00000000..5c4dd549 --- /dev/null +++ b/packages/evolution/docs/modules/Relay.ts.md @@ -0,0 +1,440 @@ +--- +title: Relay.ts +nav_order: 74 +parent: Modules +--- + +## Relay overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [fromMultiHostName](#frommultihostname) + - [fromSingleHostAddr](#fromsinglehostaddr) + - [fromSingleHostName](#fromsinglehostname) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [RelayError (class)](#relayerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [Relay (type alias)](#relay-type-alias) +- [predicates](#predicates) + - [isMultiHostName](#ismultihostname) + - [isSingleHostAddr](#issinglehostaddr) + - [isSingleHostName](#issinglehostname) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [Relay](#relay) +- [transformation](#transformation) + - [match](#match) +- [utils](#utils) + - [Codec](#codec) + - [FromCDDL](#fromcddl) + +--- + +# constructors + +## fromMultiHostName + +Create a Relay from a MultiHostName. + +**Signature** + +```ts +export declare const fromMultiHostName: (multiHostName: MultiHostName.MultiHostName) => Relay +``` + +Added in v2.0.0 + +## fromSingleHostAddr + +Create a Relay from a SingleHostAddr. + +**Signature** + +```ts +export declare const fromSingleHostAddr: (singleHostAddr: SingleHostAddr.SingleHostAddr) => Relay +``` + +Added in v2.0.0 + +## fromSingleHostName + +Create a Relay from a SingleHostName. + +**Signature** + +```ts +export declare const fromSingleHostName: (singleHostName: SingleHostName.SingleHostName) => Relay +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two Relay instances are equal. + +**Signature** + +```ts +export declare const equals: (self: Relay, that: Relay) => boolean +``` + +Added in v2.0.0 + +# errors + +## RelayError (class) + +Error class for Relay related operations. + +**Signature** + +```ts +export declare class RelayError +``` + +Added in v2.0.0 + +# generators + +## generator + +FastCheck generator for Relay instances. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary< + SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName +> +``` + +Added in v2.0.0 + +# model + +## Relay (type alias) + +Type alias for Relay. + +**Signature** + +```ts +export type Relay = typeof Relay.Type +``` + +Added in v2.0.0 + +# predicates + +## isMultiHostName + +Check if a Relay is a MultiHostName. + +**Signature** + +```ts +export declare const isMultiHostName: (relay: Relay) => relay is MultiHostName.MultiHostName +``` + +Added in v2.0.0 + +## isSingleHostAddr + +Check if a Relay is a SingleHostAddr. + +**Signature** + +```ts +export declare const isSingleHostAddr: (relay: Relay) => relay is SingleHostAddr.SingleHostAddr +``` + +Added in v2.0.0 + +## isSingleHostName + +Check if a Relay is a SingleHostName. + +**Signature** + +```ts +export declare const isSingleHostName: (relay: Relay) => relay is SingleHostName.SingleHostName +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for Relay. +For union types, we create a union of the child FromBytess +rather than trying to create a complex three-layer transformation. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.Union< + [ + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + Schema.Literal<[0n]>, + Schema.NullOr, + Schema.NullOr, + Schema.NullOr + ] + >, + Schema.SchemaClass, + never + > + >, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple<[Schema.Literal<[1n]>, Schema.NullOr, typeof Schema.String]>, + Schema.SchemaClass, + never + > + >, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, typeof Schema.String>, + Schema.SchemaClass, + never + > + > + ] +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for Relay. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.Union< + [ + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + Schema.Literal<[0n]>, + Schema.NullOr, + Schema.NullOr, + Schema.NullOr + ] + >, + Schema.SchemaClass, + never + > + >, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple<[Schema.Literal<[1n]>, Schema.NullOr, typeof Schema.String]>, + Schema.SchemaClass, + never + > + >, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, typeof Schema.String>, + Schema.SchemaClass, + never + > + > + ] + > +> +``` + +Added in v2.0.0 + +## Relay + +Union schema for Relay representing various relay configurations. +relay = [ single_host_addr // single_host_name // multi_host_name ] + +**Signature** + +```ts +export declare const Relay: Schema.Union< + [typeof SingleHostAddr.SingleHostAddr, typeof SingleHostName.SingleHostName, typeof MultiHostName.MultiHostName] +> +``` + +Added in v2.0.0 + +# transformation + +## match + +Pattern match on a Relay to handle different relay types. + +**Signature** + +```ts +export declare const match: ( + relay: Relay, + cases: { + SingleHostAddr: (addr: SingleHostAddr.SingleHostAddr) => A + SingleHostName: (name: SingleHostName.SingleHostName) => B + MultiHostName: (multi: MultiHostName.MultiHostName) => C + } +) => A | B | C +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: ( + input: SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName + ) => any + cborHex: ( + input: SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName + ) => string + } + Decode: { + cborBytes: ( + input: any + ) => SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName + cborHex: ( + input: string + ) => SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName + } + EncodeEffect: { + cborBytes: ( + input: SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName + ) => Effect> + cborHex: ( + input: SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName + ) => Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect< + SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName, + InstanceType + > + cborHex: ( + input: string + ) => Effect< + SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName, + InstanceType + > + } + EncodeEither: { + cborBytes: ( + input: SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName + ) => Either> + cborHex: ( + input: SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName + ) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either< + SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName, + InstanceType + > + cborHex: ( + input: string + ) => Either< + SingleHostName.SingleHostName | SingleHostAddr.SingleHostAddr | MultiHostName.MultiHostName, + InstanceType + > + } +} +``` + +## FromCDDL + +**Signature** + +```ts +export declare const FromCDDL: Schema.Union< + [ + Schema.transformOrFail< + Schema.Tuple< + [ + Schema.Literal<[0n]>, + Schema.NullOr, + Schema.NullOr, + Schema.NullOr + ] + >, + Schema.SchemaClass, + never + >, + Schema.transformOrFail< + Schema.Tuple<[Schema.Literal<[1n]>, Schema.NullOr, typeof Schema.String]>, + Schema.SchemaClass, + never + >, + Schema.transformOrFail< + Schema.Tuple2, typeof Schema.String>, + Schema.SchemaClass, + never + > + ] +> +``` diff --git a/packages/evolution/docs/modules/RewardAccount.ts.md b/packages/evolution/docs/modules/RewardAccount.ts.md new file mode 100644 index 00000000..4b82668e --- /dev/null +++ b/packages/evolution/docs/modules/RewardAccount.ts.md @@ -0,0 +1,136 @@ +--- +title: RewardAccount.ts +nav_order: 75 +parent: Modules +--- + +## RewardAccount overview + +--- + +

Table of contents

+ +- [equality](#equality) + - [equals](#equals) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [RewardAccount (class)](#rewardaccount-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) +- [utils](#utils) + - [Codec](#codec) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [RewardAccountError (class)](#rewardaccounterror-class) + +--- + +# equality + +## equals + +Check if two RewardAccount instances are equal. + +**Signature** + +```ts +export declare const equals: (a: RewardAccount, b: RewardAccount) => boolean +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random RewardAccount. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# schemas + +## RewardAccount (class) + +Reward/stake address with only staking credential + +**Signature** + +```ts +export declare class RewardAccount +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: RewardAccount) => any; hex: (input: RewardAccount) => string } + Decode: { bytes: (input: any) => RewardAccount; hex: (input: string) => RewardAccount } + EncodeEffect: { + bytes: (input: RewardAccount) => Effect.Effect> + hex: (input: RewardAccount) => Effect.Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect.Effect> + hex: (input: string) => Effect.Effect> + } + EncodeEither: { + bytes: (input: RewardAccount) => Either> + hex: (input: RewardAccount) => Either> + } + DecodeEither: { + bytes: (input: any) => Either> + hex: (input: string) => Either> + } +} +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transformOrFail< + Schema.filter, + typeof RewardAccount, + never +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transformOrFail, typeof RewardAccount, never> +> +``` + +## RewardAccountError (class) + +**Signature** + +```ts +export declare class RewardAccountError +``` diff --git a/packages/evolution/docs/modules/RewardAddress.ts.md b/packages/evolution/docs/modules/RewardAddress.ts.md new file mode 100644 index 00000000..7ee8810e --- /dev/null +++ b/packages/evolution/docs/modules/RewardAddress.ts.md @@ -0,0 +1,66 @@ +--- +title: RewardAddress.ts +nav_order: 76 +parent: Modules +--- + +## RewardAddress overview + +--- + +

Table of contents

+ +- [model](#model) + - [RewardAddress (type alias)](#rewardaddress-type-alias) +- [predicates](#predicates) + - [isRewardAddress](#isrewardaddress) +- [schemas](#schemas) + - [RewardAddress](#rewardaddress) + +--- + +# model + +## RewardAddress (type alias) + +Type representing a reward/stake address string in bech32 format + +**Signature** + +```ts +export type RewardAddress = Schema.Schema.Type +``` + +Added in v2.0.0 + +# predicates + +## isRewardAddress + +Check if the given value is a valid RewardAddress + +**Signature** + +```ts +export declare const isRewardAddress: ( + u: unknown, + overrideOptions?: ParseOptions | number +) => u is string & Brand<"RewardAddress"> +``` + +Added in v2.0.0 + +# schemas + +## RewardAddress + +Reward address format schema (human-readable addresses) +Following CIP-0019 encoding requirements + +**Signature** + +```ts +export declare const RewardAddress: Schema.brand, "RewardAddress"> +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/ScriptDataHash.ts.md b/packages/evolution/docs/modules/ScriptDataHash.ts.md new file mode 100644 index 00000000..c02821ca --- /dev/null +++ b/packages/evolution/docs/modules/ScriptDataHash.ts.md @@ -0,0 +1,55 @@ +--- +title: ScriptDataHash.ts +nav_order: 77 +parent: Modules +--- + +## ScriptDataHash overview + +--- + +

Table of contents

+ +- [model](#model) + - [ScriptDataHash](#scriptdatahash) +- [utils](#utils) + - [ScriptDataHash (type alias)](#scriptdatahash-type-alias) + +--- + +# model + +## ScriptDataHash + +ScriptDataHash based on Conway CDDL specification + +CDDL: script_data_hash = Bytes32 + +This is a hash of data which may affect evaluation of a script. +This data consists of: + +- The redeemers from the transaction_witness_set (the value of field 5). +- The datums from the transaction_witness_set (the value of field 4). +- The value in the cost_models map corresponding to the script's language + (in field 18 of protocol_param_update.) + +**Signature** + +```ts +export declare const ScriptDataHash: Schema.brand< + Schema.refine>, + "ScriptDataHash" +> +``` + +Added in v2.0.0 + +# utils + +## ScriptDataHash (type alias) + +**Signature** + +```ts +export type ScriptDataHash = Schema.Schema.Type +``` diff --git a/packages/evolution/docs/modules/ScriptHash.ts.md b/packages/evolution/docs/modules/ScriptHash.ts.md new file mode 100644 index 00000000..adde100c --- /dev/null +++ b/packages/evolution/docs/modules/ScriptHash.ts.md @@ -0,0 +1,165 @@ +--- +title: ScriptHash.ts +nav_order: 78 +parent: Modules +--- + +## ScriptHash overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [ScriptHashError (class)](#scripthasherror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [BytesSchema](#bytesschema) + - [HexSchema](#hexschema) + - [ScriptHash](#scripthash) +- [utils](#utils) + - [ScriptHash (type alias)](#scripthash-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for ScriptHash encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"ScriptHash">) => any; hex: (input: string & Brand<"ScriptHash">) => string } + Decode: { bytes: (input: any) => string & Brand<"ScriptHash">; hex: (input: string) => string & Brand<"ScriptHash"> } + EncodeEffect: { + bytes: (input: string & Brand<"ScriptHash">) => Effect> + hex: (input: string & Brand<"ScriptHash">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"ScriptHash">) => Either> + hex: (input: string & Brand<"ScriptHash">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two ScriptHash instances are equal. + +**Signature** + +```ts +export declare const equals: (a: ScriptHash, b: ScriptHash) => boolean +``` + +Added in v2.0.0 + +# errors + +## ScriptHashError (class) + +Error class for ScriptHash related operations. + +**Signature** + +```ts +export declare class ScriptHashError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random ScriptHash. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## BytesSchema + +Schema for transforming between Uint8Array and ScriptHash. + +**Signature** + +```ts +export declare const BytesSchema: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "ScriptHash"> +> +``` + +Added in v2.0.0 + +## HexSchema + +Schema for transforming between hex string and ScriptHash. + +**Signature** + +```ts +export declare const HexSchema: Schema.transform< + Schema.refine>, + Schema.brand>, "ScriptHash"> +> +``` + +Added in v2.0.0 + +## ScriptHash + +Schema for ScriptHash representing a script hash credential. +script_hash = hash28 +Follows CIP-0019 binary representation. + +**Signature** + +```ts +export declare const ScriptHash: Schema.brand< + Schema.refine>, + "ScriptHash" +> +``` + +Added in v2.0.0 + +# utils + +## ScriptHash (type alias) + +**Signature** + +```ts +export type ScriptHash = typeof ScriptHash.Type +``` diff --git a/packages/evolution/docs/modules/ScriptRef.ts.md b/packages/evolution/docs/modules/ScriptRef.ts.md new file mode 100644 index 00000000..cb140307 --- /dev/null +++ b/packages/evolution/docs/modules/ScriptRef.ts.md @@ -0,0 +1,256 @@ +--- +title: ScriptRef.ts +nav_order: 79 +parent: Modules +--- + +## ScriptRef overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [ScriptRefError (class)](#scriptreferror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [FromBytes](#frombytes) + - [FromCBORBytes](#fromcborbytes) + - [FromCBORHex](#fromcborhex) + - [FromCDDL](#fromcddl) + - [FromHex](#fromhex) + - [ScriptRef](#scriptref) +- [utils](#utils) + - [ScriptRef (type alias)](#scriptref-type-alias) + +--- + +# encoding/decoding + +## Codec + +Extended Codec with CBOR support for ScriptRef. + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + bytes: (input: string & Brand<"ScriptRef">) => any + hex: (input: string & Brand<"ScriptRef">) => string + cborBytes: (input: string & Brand<"ScriptRef">) => any + cborHex: (input: string & Brand<"ScriptRef">) => string + } + Decode: { + bytes: (input: any) => string & Brand<"ScriptRef"> + hex: (input: string) => string & Brand<"ScriptRef"> + cborBytes: (input: any) => string & Brand<"ScriptRef"> + cborHex: (input: string) => string & Brand<"ScriptRef"> + } + EncodeEffect: { + bytes: (input: string & Brand<"ScriptRef">) => Effect.Effect> + hex: (input: string & Brand<"ScriptRef">) => Effect.Effect> + cborBytes: (input: string & Brand<"ScriptRef">) => Effect.Effect> + cborHex: (input: string & Brand<"ScriptRef">) => Effect.Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect.Effect, InstanceType> + hex: (input: string) => Effect.Effect, InstanceType> + cborBytes: (input: any) => Effect.Effect, InstanceType> + cborHex: (input: string) => Effect.Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"ScriptRef">) => Either> + hex: (input: string & Brand<"ScriptRef">) => Either> + cborBytes: (input: string & Brand<"ScriptRef">) => Either> + cborHex: (input: string & Brand<"ScriptRef">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + cborBytes: (input: any) => Either, InstanceType> + cborHex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two ScriptRef instances are equal. + +**Signature** + +```ts +export declare const equals: (a: ScriptRef, b: ScriptRef) => boolean +``` + +Added in v2.0.0 + +# errors + +## ScriptRefError (class) + +Error class for ScriptRef related operations. + +**Signature** + +```ts +export declare class ScriptRefError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random ScriptRef. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +Schema for transforming from bytes to ScriptRef. + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform>, + Schema.brand, "ScriptRef"> +> +``` + +Added in v2.0.0 + +## FromCBORBytes + +CBOR bytes transformation schema for ScriptRef. + +**Signature** + +```ts +export declare const FromCBORBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail, "ScriptRef">, never> +> +``` + +Added in v2.0.0 + +## FromCBORHex + +CBOR hex transformation schema for ScriptRef. + +**Signature** + +```ts +export declare const FromCBORHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + typeof CBOR.Tag, + Schema.brand, "ScriptRef">, + never + > + > +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for ScriptRef following the Conway specification. + +``` +script_ref = #6.24(bytes .cbor script) +``` + +This transforms between CBOR tag 24 structure and ScriptRef model. + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + typeof CBOR.Tag, + Schema.brand, "ScriptRef">, + never +> +``` + +Added in v2.0.0 + +## FromHex + +Schema for transforming from hex to ScriptRef. + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine, + Schema.brand, "ScriptRef"> +> +``` + +Added in v2.0.0 + +## ScriptRef + +Schema for ScriptRef representing a reference to a script in a transaction output. + +``` +CDDL: script_ref = #6.24(bytes .cbor script) +``` + +This is a branded hex string that represents the CBOR-encoded script bytes. +The script_ref uses CBOR tag 24 to indicate it contains CBOR-encoded script data. + +**Signature** + +```ts +export declare const ScriptRef: Schema.brand, "ScriptRef"> +``` + +Added in v2.0.0 + +# utils + +## ScriptRef (type alias) + +**Signature** + +```ts +export type ScriptRef = typeof ScriptRef.Type +``` diff --git a/packages/evolution/docs/modules/SingleHostAddr.ts.md b/packages/evolution/docs/modules/SingleHostAddr.ts.md new file mode 100644 index 00000000..863a7f7a --- /dev/null +++ b/packages/evolution/docs/modules/SingleHostAddr.ts.md @@ -0,0 +1,300 @@ +--- +title: SingleHostAddr.ts +nav_order: 80 +parent: Modules +--- + +## SingleHostAddr overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [withBothIPs](#withbothips) + - [withIPv4](#withipv4) + - [withIPv6](#withipv6) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [SingleHostAddrError (class)](#singlehostaddrerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [SingleHostAddr (class)](#singlehostaddr-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) +- [predicates](#predicates) + - [hasIPv4](#hasipv4) + - [hasIPv6](#hasipv6) + - [hasPort](#hasport) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [SingleHostAddrCDDLSchema](#singlehostaddrcddlschema) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## withBothIPs + +Create a SingleHostAddr with both IPv4 and IPv6 addresses. + +**Signature** + +```ts +export declare const withBothIPs: (port: Option.Option, ipv4: IPv4.IPv4, ipv6: IPv6.IPv6) => SingleHostAddr +``` + +Added in v2.0.0 + +## withIPv4 + +Create a SingleHostAddr with IPv4 address. + +**Signature** + +```ts +export declare const withIPv4: (port: Option.Option, ipv4: IPv4.IPv4) => SingleHostAddr +``` + +Added in v2.0.0 + +## withIPv6 + +Create a SingleHostAddr with IPv6 address. + +**Signature** + +```ts +export declare const withIPv6: (port: Option.Option, ipv6: IPv6.IPv6) => SingleHostAddr +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two SingleHostAddr instances are equal. + +**Signature** + +```ts +export declare const equals: (a: SingleHostAddr, b: SingleHostAddr) => boolean +``` + +Added in v2.0.0 + +# errors + +## SingleHostAddrError (class) + +Error class for SingleHostAddr related operations. + +**Signature** + +```ts +export declare class SingleHostAddrError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random SingleHostAddr. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## SingleHostAddr (class) + +Schema for SingleHostAddr representing a network host with IP addresses. +single_host_addr = (0, port/ nil, ipv4/ nil, ipv6/ nil) + +**Signature** + +```ts +export declare class SingleHostAddr +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +# predicates + +## hasIPv4 + +Check if the host address has an IPv4 address. + +**Signature** + +```ts +export declare const hasIPv4: (hostAddr: SingleHostAddr) => boolean +``` + +Added in v2.0.0 + +## hasIPv6 + +Check if the host address has an IPv6 address. + +**Signature** + +```ts +export declare const hasIPv6: (hostAddr: SingleHostAddr) => boolean +``` + +Added in v2.0.0 + +## hasPort + +Check if the host address has a port. + +**Signature** + +```ts +export declare const hasPort: (hostAddr: SingleHostAddr) => boolean +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for SingleHostAddr. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + Schema.Literal<[0n]>, + Schema.NullOr, + Schema.NullOr, + Schema.NullOr + ] + >, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for SingleHostAddr. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple< + [ + Schema.Literal<[0n]>, + Schema.NullOr, + Schema.NullOr, + Schema.NullOr + ] + >, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## SingleHostAddrCDDLSchema + +CDDL schema for SingleHostAddr. +single_host_addr = (0, port / nil, ipv4 / nil, ipv6 / nil) + +**Signature** + +```ts +export declare const SingleHostAddrCDDLSchema: Schema.transformOrFail< + Schema.Tuple< + [ + Schema.Literal<[0n]>, + Schema.NullOr, + Schema.NullOr, + Schema.NullOr + ] + >, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: SingleHostAddr) => any; cborHex: (input: SingleHostAddr) => string } + Decode: { cborBytes: (input: any) => SingleHostAddr; cborHex: (input: string) => SingleHostAddr } + EncodeEffect: { + cborBytes: (input: SingleHostAddr) => Effect.Effect> + cborHex: (input: SingleHostAddr) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: SingleHostAddr) => Either> + cborHex: (input: SingleHostAddr) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/packages/evolution/docs/modules/SingleHostName.ts.md b/packages/evolution/docs/modules/SingleHostName.ts.md new file mode 100644 index 00000000..037f7193 --- /dev/null +++ b/packages/evolution/docs/modules/SingleHostName.ts.md @@ -0,0 +1,277 @@ +--- +title: SingleHostName.ts +nav_order: 81 +parent: Modules +--- + +## SingleHostName overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [withPort](#withport) + - [withoutPort](#withoutport) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [SingleHostNameError (class)](#singlehostnameerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [SingleHostName (class)](#singlehostname-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) +- [predicates](#predicates) + - [hasPort](#hasport) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [SingleHostNameCDDLSchema](#singlehostnamecddlschema) +- [transformation](#transformation) + - [getDnsName](#getdnsname) + - [getPort](#getport) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## withPort + +Create a SingleHostName with a port. + +**Signature** + +```ts +export declare const withPort: (port: Port.Port, dnsName: DnsName.DnsName) => SingleHostName +``` + +Added in v2.0.0 + +## withoutPort + +Create a SingleHostName without a port. + +**Signature** + +```ts +export declare const withoutPort: (dnsName: DnsName.DnsName) => SingleHostName +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two SingleHostName instances are equal. + +**Signature** + +```ts +export declare const equals: (a: SingleHostName, b: SingleHostName) => boolean +``` + +Added in v2.0.0 + +# errors + +## SingleHostNameError (class) + +Error class for SingleHostName related operations. + +**Signature** + +```ts +export declare class SingleHostNameError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random SingleHostName. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## SingleHostName (class) + +Schema for SingleHostName representing a network host with DNS name. +single_host_name = (1, port/ nil, dns_name) + +Used for A or AAAA DNS records. + +**Signature** + +```ts +export declare class SingleHostName +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +# predicates + +## hasPort + +Check if the host name has a port. + +**Signature** + +```ts +export declare const hasPort: (hostName: SingleHostName) => boolean +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for SingleHostName. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple<[Schema.Literal<[1n]>, Schema.NullOr, typeof Schema.String]>, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for SingleHostName. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple<[Schema.Literal<[1n]>, Schema.NullOr, typeof Schema.String]>, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## SingleHostNameCDDLSchema + +CDDL schema for SingleHostName. +single_host_name = (1, port / nil, dns_name) + +**Signature** + +```ts +export declare const SingleHostNameCDDLSchema: Schema.transformOrFail< + Schema.Tuple<[Schema.Literal<[1n]>, Schema.NullOr, typeof Schema.String]>, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# transformation + +## getDnsName + +Get the DNS name from a SingleHostName. + +**Signature** + +```ts +export declare const getDnsName: (hostName: SingleHostName) => DnsName.DnsName +``` + +Added in v2.0.0 + +## getPort + +Get the port from a SingleHostName, if it exists. + +**Signature** + +```ts +export declare const getPort: (hostName: SingleHostName) => Option.Option +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: (a: SingleHostName, overrideOptions?: ParseOptions) => any + cborHex: (a: SingleHostName, overrideOptions?: ParseOptions) => string + } + Decode: { + cborBytes: (u: unknown, overrideOptions?: ParseOptions) => SingleHostName + cborHex: (u: unknown, overrideOptions?: ParseOptions) => SingleHostName + } + EncodeEither: { + cborBytes: (a: SingleHostName, overrideOptions?: ParseOptions) => Either + cborHex: (a: SingleHostName, overrideOptions?: ParseOptions) => Either + } + DecodeEither: { + cborBytes: (i: any, overrideOptions?: ParseOptions) => Either + cborHex: (i: string, overrideOptions?: ParseOptions) => Either + } + EncodeEffect: { + cborBytes: (a: SingleHostName, overrideOptions?: ParseOptions) => Effect.Effect + cborHex: (a: SingleHostName, overrideOptions?: ParseOptions) => Effect.Effect + } + DecodeEffect: { + cborBytes: (i: any, overrideOptions?: ParseOptions) => Effect.Effect + cborHex: (i: string, overrideOptions?: ParseOptions) => Effect.Effect + } +} +``` diff --git a/packages/evolution/docs/modules/StakeReference.ts.md b/packages/evolution/docs/modules/StakeReference.ts.md new file mode 100644 index 00000000..9f1b0f7c --- /dev/null +++ b/packages/evolution/docs/modules/StakeReference.ts.md @@ -0,0 +1,65 @@ +--- +title: StakeReference.ts +nav_order: 82 +parent: Modules +--- + +## StakeReference overview + +--- + +

Table of contents

+ +- [model](#model) + - [StakeReference (type alias)](#stakereference-type-alias) +- [schemas](#schemas) + - [StakeReference](#stakereference) + +--- + +# model + +## StakeReference (type alias) + +Type representing a reference to staking information +Can be a credential (key hash or script hash) or a pointer + +**Signature** + +```ts +export type StakeReference = Schema.Schema.Type +``` + +Added in v2.0.0 + +# schemas + +## StakeReference + +Schema for stake reference that can be either a credential or a pointer + +**Signature** + +```ts +export declare const StakeReference: Schema.UndefinedOr< + Schema.Union< + [ + Schema.Union< + [ + Schema.TaggedStruct< + "KeyHash", + { hash: Schema.brand>, "KeyHash"> } + >, + Schema.TaggedStruct< + "ScriptHash", + { hash: Schema.brand>, "ScriptHash"> } + > + ] + >, + typeof Pointer.Pointer + ] + > +> +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/TSchema.ts.md b/packages/evolution/docs/modules/TSchema.ts.md new file mode 100644 index 00000000..c6fa0d20 --- /dev/null +++ b/packages/evolution/docs/modules/TSchema.ts.md @@ -0,0 +1,258 @@ +--- +title: TSchema.ts +nav_order: 92 +parent: Modules +--- + +## TSchema overview + +--- + +

Table of contents

+ +- [utils](#utils) + - [Array](#array) + - [Boolean](#boolean) + - [ByteArray](#bytearray) + - [Integer](#integer) + - [Literal](#literal) + - [Map](#map) + - [NullOr](#nullor) + - [OneLiteral](#oneliteral) + - [Struct](#struct) + - [Tuple](#tuple) + - [UndefinedOr](#undefinedor) + - [Union](#union) + - [compose](#compose) + - [filter](#filter) + - [is](#is) + +--- + +# utils + +## Array + +Creates a schema for arrays with Plutus list type annotation + +**Signature** + +```ts +export declare const Array: (items: S) => Array +``` + +Added in v1.0.0 + +## Boolean + +Schema for boolean values using Plutus Data Constructor + +- False with index 0 +- True with index 1 + +**Signature** + +```ts +export declare const Boolean: Boolean +``` + +Added in v2.0.0 + +## ByteArray + +Creates a schema for byte arrays using Plutus Data ByteArray transformation +The byte array is represented as a hex string + +**Signature** + +```ts +export declare const ByteArray: ByteArray +``` + +Added in v2.0.0 + +## Integer + +Creates a schema for integers using Plutus Data Integer transformation +The integer is represented as a BigInt + +**Signature** + +```ts +export declare const Integer: Schema.SchemaClass +``` + +Added in v2.0.0 + +## Literal + +Creates a schema for literal types with Plutus Data Constructor transformation + +**Signature** + +```ts +export declare const Literal: >>( + ...self: Literals +) => Literal +``` + +Added in v2.0.0 + +## Map + +Creates a schema for maps with Plutus Map type annotation +Maps are represented as a list of constructor pairs, where each pair +is a constructor with index 0 and fields [key, value] + +**Signature** + +```ts +export declare const Map: (key: K, value: V) => Map +``` + +Added in v1.0.0 + +## NullOr + +Creates a schema for nullable types that transforms to/from Plutus Data Constructor +Represents optional values as: + +- Just(value) with index 0 +- Nothing with index 1 + +**Signature** + +```ts +export declare const NullOr: (self: S) => NullOr +``` + +Added in v2.0.0 + +## OneLiteral + +**Signature** + +```ts +export declare const OneLiteral: >( + self: Single +) => OneLiteral +``` + +## Struct + +Creates a schema for struct types using Plutus Data Constructor +Objects are represented as a constructor with index 0 and fields as an array + +**Signature** + +```ts +export declare const Struct: (fields: Fields) => Struct +``` + +Added in v2.0.0 + +## Tuple + +Creates a schema for tuple types using Plutus Data List transformation +Tuples are represented as a constructor with index 0 and fields as an array + +**Signature** + +```ts +export declare const Tuple: (element: [...Elements]) => Tuple +``` + +Added in v2.0.0 + +## UndefinedOr + +Creates a schema for undefined types that transforms to/from Plutus Data Constructor +Represents optional values as: + +- Just(value) with index 0 +- Nothing with index 1 + +**Signature** + +```ts +export declare const UndefinedOr: (self: S) => UndefineOr +``` + +Added in v2.0.0 + +## Union + +Creates a schema for union types using Plutus Data Constructor +Unions are represented as a constructor with index 0 and fields as an array + +**Signature** + +```ts +export declare const Union: >(...members: Members) => Union +``` + +Added in v2.0.0 + +## compose + +**Signature** + +```ts +export declare const compose: { + >( + to: To & Schema.Schema, C, Schema.Schema.Context> + ): (from: From) => Schema.transform + ( + to: To + ): >( + from: From & Schema.Schema, Schema.Schema.Context> + ) => Schema.transform + ( + to: To, + options?: { readonly strict: true } + ): ( + from: From & Schema.Schema, Schema.Schema.Encoded, Schema.Schema.Context> + ) => Schema.transform + ( + to: To, + options: { readonly strict: false } + ): (from: From) => Schema.transform + >( + from: From, + to: To & Schema.Schema, C, Schema.Schema.Context> + ): Schema.transform + , To extends Schema.Schema.Any>( + from: From & Schema.Schema, Schema.Schema.Context>, + to: To + ): Schema.transform + ( + from: From & Schema.Schema, Schema.Schema.Encoded, Schema.Schema.Context>, + to: To, + options?: { readonly strict: true } + ): Schema.transform + ( + from: From, + to: To, + options: { readonly strict: false } + ): Schema.transform +} +``` + +## filter + +**Signature** + +```ts +export declare const filter: typeof Schema.filter +``` + +## is + +**Signature** + +```ts +export declare const is: ( + schema: Schema.Schema, + options?: SchemaAST.ParseOptions +) => (u: unknown, overrideOptions?: SchemaAST.ParseOptions | number) => u is A +``` diff --git a/packages/evolution/docs/modules/Text.ts.md b/packages/evolution/docs/modules/Text.ts.md new file mode 100644 index 00000000..aee22634 --- /dev/null +++ b/packages/evolution/docs/modules/Text.ts.md @@ -0,0 +1,102 @@ +--- +title: Text.ts +nav_order: 83 +parent: Modules +--- + +## Text overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [errors](#errors) + - [TextError (class)](#texterror-class) +- [schemas](#schemas) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for Text encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string) => any; hex: (input: string) => string } + Decode: { bytes: (input: any) => string; hex: (input: string) => string } + EncodeEffect: { + bytes: (input: string) => Effect> + hex: (input: string) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect> + hex: (input: string) => Effect> + } + EncodeEither: { + bytes: (input: string) => Either> + hex: (input: string) => Either> + } + DecodeEither: { + bytes: (input: any) => Either> + hex: (input: string) => Either> + } +} +``` + +Added in v2.0.0 + +# errors + +## TextError (class) + +Error class for Text related operations. + +**Signature** + +```ts +export declare class TextError +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +Schema for converting between strings and UTF-8 byte arrays. +text -> bytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform +``` + +Added in v2.0.0 + +## FromHex + +Schema for converting between strings and hex representation of UTF-8 bytes. + +``` +text <-> hex +``` + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform +> +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/Text128.ts.md b/packages/evolution/docs/modules/Text128.ts.md new file mode 100644 index 00000000..273a155d --- /dev/null +++ b/packages/evolution/docs/modules/Text128.ts.md @@ -0,0 +1,130 @@ +--- +title: Text128.ts +nav_order: 84 +parent: Modules +--- + +## Text128 overview + +--- + +

Table of contents

+ +- [constants](#constants) + - [TEXT128_MIN_LENGTH](#text128_min_length) +- [errors](#errors) + - [Text128Error (class)](#text128error-class) +- [schemas](#schemas) + - [FromVariableBytes](#fromvariablebytes) +- [utils](#utils) + - [Codec](#codec) + - [FromVariableHex](#fromvariablehex) + - [TEXT128_MAX_LENGTH](#text128_max_length) + - [generator](#generator) + +--- + +# constants + +## TEXT128_MIN_LENGTH + +Constants for Text128 validation. +text .size (0 .. 128) + +**Signature** + +```ts +export declare const TEXT128_MIN_LENGTH: 0 +``` + +Added in v2.0.0 + +# errors + +## Text128Error (class) + +Error class for Text128 related operations. + +**Signature** + +```ts +export declare class Text128Error +``` + +Added in v2.0.0 + +# schemas + +## FromVariableBytes + +Schema for validating variable-length text between 0 and 128 characters. +text .size (0 .. 128) + +**Signature** + +```ts +export declare const FromVariableBytes: Schema.filter< + Schema.transform +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string) => any; hex: (input: string) => string } + Decode: { bytes: (input: any) => string; hex: (input: string) => string } + EncodeEffect: { + bytes: (input: string) => Effect> + hex: (input: string) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect> + hex: (input: string) => Effect> + } + EncodeEither: { + bytes: (input: string) => Either> + hex: (input: string) => Either> + } + DecodeEither: { + bytes: (input: any) => Either> + hex: (input: string) => Either> + } +} +``` + +## FromVariableHex + +**Signature** + +```ts +export declare const FromVariableHex: Schema.refine< + string, + Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform + > +> +``` + +## TEXT128_MAX_LENGTH + +**Signature** + +```ts +export declare const TEXT128_MAX_LENGTH: 128 +``` + +## generator + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` diff --git a/packages/evolution/docs/modules/Transaction.ts.md b/packages/evolution/docs/modules/Transaction.ts.md new file mode 100644 index 00000000..9c841665 --- /dev/null +++ b/packages/evolution/docs/modules/Transaction.ts.md @@ -0,0 +1,45 @@ +--- +title: Transaction.ts +nav_order: 85 +parent: Modules +--- + +## Transaction overview + +--- + +

Table of contents

+ +- [model](#model) + - [TransactionClass (class)](#transactionclass-class) +- [utils](#utils) + - [Transaction (type alias)](#transaction-type-alias) + +--- + +# model + +## TransactionClass (class) + +Transaction based on Conway CDDL specification + +CDDL: transaction = +[transaction_body, transaction_witness_set, bool, auxiliary_data / nil] + +**Signature** + +```ts +export declare class TransactionClass +``` + +Added in v2.0.0 + +# utils + +## Transaction (type alias) + +**Signature** + +```ts +export type Transaction = Schema.Schema.Type +``` diff --git a/packages/evolution/docs/modules/TransactionBody.ts.md b/packages/evolution/docs/modules/TransactionBody.ts.md new file mode 100644 index 00000000..ad488cdf --- /dev/null +++ b/packages/evolution/docs/modules/TransactionBody.ts.md @@ -0,0 +1,55 @@ +--- +title: TransactionBody.ts +nav_order: 86 +parent: Modules +--- + +## TransactionBody overview + +--- + +

Table of contents

+ +- [model](#model) + - [TransactionBody (class)](#transactionbody-class) + +--- + +# model + +## TransactionBody (class) + +TransactionBody based on Conway CDDL specification + +``` +CDDL: transaction_body = + { 0 : set + , 1 : [* transaction_output] + , 2 : coin + , ? 3 : slot_no + , ? 4 : certificates + , ? 5 : withdrawals + , ? 7 : auxiliary_data_hash + , ? 8 : slot_no + , ? 9 : mint + , ? 11 : script_data_hash + , ? 13 : nonempty_set + , ? 14 : required_signers + , ? 15 : network_id + , ? 16 : transaction_output + , ? 17 : coin + , ? 18 : nonempty_set + , ? 19 : voting_procedures + , ? 20 : proposal_procedures + , ? 21 : coin + , ? 22 : positive_coin + } +``` + +**Signature** + +```ts +export declare class TransactionBody +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/TransactionHash.ts.md b/packages/evolution/docs/modules/TransactionHash.ts.md new file mode 100644 index 00000000..ac61eec3 --- /dev/null +++ b/packages/evolution/docs/modules/TransactionHash.ts.md @@ -0,0 +1,170 @@ +--- +title: TransactionHash.ts +nav_order: 87 +parent: Modules +--- + +## TransactionHash overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [TransactionHashError (class)](#transactionhasherror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [BytesSchema](#bytesschema) + - [HexSchema](#hexschema) + - [TransactionHash](#transactionhash) +- [utils](#utils) + - [TransactionHash (type alias)](#transactionhash-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for TransactionHash encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { + bytes: (input: string & Brand<"TransactionHash">) => any + hex: (input: string & Brand<"TransactionHash">) => string + } + Decode: { + bytes: (input: any) => string & Brand<"TransactionHash"> + hex: (input: string) => string & Brand<"TransactionHash"> + } + EncodeEffect: { + bytes: (input: string & Brand<"TransactionHash">) => Effect> + hex: (input: string & Brand<"TransactionHash">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"TransactionHash">) => Either> + hex: (input: string & Brand<"TransactionHash">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two TransactionHash instances are equal. + +**Signature** + +```ts +export declare const equals: (a: TransactionHash, b: TransactionHash) => boolean +``` + +Added in v2.0.0 + +# errors + +## TransactionHashError (class) + +Error class for TransactionHash related operations. + +**Signature** + +```ts +export declare class TransactionHashError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random TransactionHash. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## BytesSchema + +Schema for transforming between Uint8Array and TransactionHash. + +**Signature** + +```ts +export declare const BytesSchema: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "TransactionHash"> +> +``` + +Added in v2.0.0 + +## HexSchema + +Schema for transforming between hex string and TransactionHash. + +**Signature** + +```ts +export declare const HexSchema: Schema.transform< + Schema.refine>, + Schema.brand>, "TransactionHash"> +> +``` + +Added in v2.0.0 + +## TransactionHash + +Schema for TransactionHash. +transaction_hash = Bytes32 + +**Signature** + +```ts +export declare const TransactionHash: Schema.brand< + Schema.refine>, + "TransactionHash" +> +``` + +Added in v2.0.0 + +# utils + +## TransactionHash (type alias) + +**Signature** + +```ts +export type TransactionHash = typeof TransactionHash.Type +``` diff --git a/packages/evolution/docs/modules/TransactionIndex.ts.md b/packages/evolution/docs/modules/TransactionIndex.ts.md new file mode 100644 index 00000000..e39b888f --- /dev/null +++ b/packages/evolution/docs/modules/TransactionIndex.ts.md @@ -0,0 +1,42 @@ +--- +title: TransactionIndex.ts +nav_order: 88 +parent: Modules +--- + +## TransactionIndex overview + +--- + +

Table of contents

+ +- [model](#model) + - [TransactionIndexSchema](#transactionindexschema) +- [utils](#utils) + - [TransactionIndex (type alias)](#transactionindex-type-alias) + +--- + +# model + +## TransactionIndexSchema + +CDDL: transaction_index = uint .size 2 + +**Signature** + +```ts +export declare const TransactionIndexSchema: Schema.refine +``` + +Added in v2.0.0 + +# utils + +## TransactionIndex (type alias) + +**Signature** + +```ts +export type TransactionIndex = Schema.Schema.Type +``` diff --git a/packages/evolution/docs/modules/TransactionInput.ts.md b/packages/evolution/docs/modules/TransactionInput.ts.md new file mode 100644 index 00000000..d1530b2c --- /dev/null +++ b/packages/evolution/docs/modules/TransactionInput.ts.md @@ -0,0 +1,206 @@ +--- +title: TransactionInput.ts +nav_order: 89 +parent: Modules +--- + +## TransactionInput overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [TransactionInputError (class)](#transactioninputerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [TransactionInput (class)](#transactioninput-class) +- [predicates](#predicates) + - [isTransactionInput](#istransactioninput) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [TransactionInputCDDLSchema](#transactioninputcddlschema) + +--- + +# encoding/decoding + +## Codec + +Extended Codec with CBOR support for TransactionInput. + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: TransactionInput) => any; cborHex: (input: TransactionInput) => string } + Decode: { cborBytes: (input: any) => TransactionInput; cborHex: (input: string) => TransactionInput } + EncodeEffect: { + cborBytes: (input: TransactionInput) => Effect.Effect> + cborHex: (input: TransactionInput) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: TransactionInput) => Either> + cborHex: (input: TransactionInput) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two TransactionInput instances are equal. + +**Signature** + +```ts +export declare const equals: (a: TransactionInput, b: TransactionInput) => boolean +``` + +Added in v2.0.0 + +# errors + +## TransactionInputError (class) + +Error class for TransactionInput related operations. + +**Signature** + +```ts +export declare class TransactionInputError +``` + +Added in v2.0.0 + +# generators + +## generator + +FastCheck generator for TransactionInput instances. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## TransactionInput (class) + +Schema for TransactionInput representing a transaction input with transaction id and index. +transaction_input = [transaction_id : $Bytes32, index : uint .size 2] + +**Signature** + +```ts +export declare class TransactionInput +``` + +Added in v2.0.0 + +# predicates + +## isTransactionInput + +Check if the given value is a valid TransactionInput. + +**Signature** + +```ts +export declare const isTransactionInput: (u: unknown, overrideOptions?: ParseOptions | number) => u is TransactionInput +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for TransactionInput. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for TransactionInput. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## TransactionInputCDDLSchema + +CDDL schema for TransactionInput. +transaction_input = [transaction_id : $Bytes32, index : uint .size 2] + +**Signature** + +```ts +export declare const TransactionInputCDDLSchema: Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/TransactionMetadatumLabels.ts.md b/packages/evolution/docs/modules/TransactionMetadatumLabels.ts.md new file mode 100644 index 00000000..20617cc6 --- /dev/null +++ b/packages/evolution/docs/modules/TransactionMetadatumLabels.ts.md @@ -0,0 +1,204 @@ +--- +title: TransactionMetadatumLabels.ts +nav_order: 90 +parent: Modules +--- + +## TransactionMetadatumLabels overview + +--- + +

Table of contents

+ +- [model](#model) + - [TransactionMetadatumLabel](#transactionmetadatumlabel) + - [TransactionMetadatumLabel (type alias)](#transactionmetadatumlabel-type-alias) + - [TransactionMetadatumLabelsError (class)](#transactionmetadatumlabelserror-class) +- [schemas](#schemas) + - [TransactionMetadatumLabels (class)](#transactionmetadatumlabels-class) + - [[Inspectable.NodeInspectSymbol] (method)](#inspectablenodeinspectsymbol-method) + - [size (method)](#size-method) + - [get (method)](#get-method) + - [set (method)](#set-method) + - [add (method)](#add-method) + - [removeFirst (method)](#removefirst-method) + - [removeLast (method)](#removelast-method) + - [removeAll (method)](#removeall-method) + - [removeAt (method)](#removeat-method) + - [has (method)](#has-method) +- [utils](#utils) + - [describeTransactionMetadatumLabel](#describetransactionmetadatumlabel) + +--- + +# model + +## TransactionMetadatumLabel + +CDDL spec: + +``` +transaction_metadatum_label = uint .size 8 +``` + +**Signature** + +```ts +export declare const TransactionMetadatumLabel: typeof Schema.Uint8 +``` + +Added in v2.0.0 + +## TransactionMetadatumLabel (type alias) + +Type representing a transaction metadatum label. + +**Signature** + +```ts +export type TransactionMetadatumLabel = typeof TransactionMetadatumLabel.Type +``` + +Added in v2.0.0 + +## TransactionMetadatumLabelsError (class) + +Error thrown when transaction metadatum labels operations fail + +**Signature** + +```ts +export declare class TransactionMetadatumLabelsError +``` + +Added in v2.0.0 + +# schemas + +## TransactionMetadatumLabels (class) + +Transaction metadatum labels from an array of `TransactionMetadatumLabel` + +**Signature** + +```ts +export declare class TransactionMetadatumLabels +``` + +Added in v2.0.0 + +### [Inspectable.NodeInspectSymbol] (method) + +**Signature** + +```ts +;[Inspectable.NodeInspectSymbol]() +``` + +### size (method) + +Gets the size of the labels. + +**Signature** + +```ts +size() +``` + +### get (method) + +Gets the label located at the specified index. If the index is out-of-bound, +returns `undefined` + +**Signature** + +```ts +get(index: number) +``` + +### set (method) + +Overrides the existing labels with the specified ones. + +**Signature** + +```ts +set(overideLabels: Array) +``` + +### add (method) + +Appends a new label to the **end** + +**Signature** + +```ts +add(label: TransactionMetadatumLabel) +``` + +### removeFirst (method) + +Removes the first occurence of the specified label from the collection. + +**Signature** + +```ts +removeFirst(label: TransactionMetadatumLabel) +``` + +### removeLast (method) + +Removes the last occurence of the specified label from the collection. + +**Signature** + +```ts +removeLast(label: TransactionMetadatumLabel) +``` + +### removeAll (method) + +Removes all occurences of the specified label from the collection. + +**Signature** + +```ts +removeAll(label: TransactionMetadatumLabel) +``` + +### removeAt (method) + +Removes the label at the specified index from the collection. + +**Signature** + +```ts +removeAt(index: number) +``` + +### has (method) + +Determines whether the collection contains the specified label. + +**Signature** + +```ts +has(label: TransactionMetadatumLabel) +``` + +# utils + +## describeTransactionMetadatumLabel + +Describe transaction metadatum label as per +[CIP-10](https://github.com/cardano-foundation/CIPs/blob/master/CIP-0010/registry.json) standard. + +**NOTE**: Only labels associated with CIPs will be described. + +**Signature** + +```ts +export declare const describeTransactionMetadatumLabel: (label: TransactionMetadatumLabel) => string | undefined +``` + +Added in v2.0.0 diff --git a/packages/evolution/docs/modules/TransactionOutput.ts.md b/packages/evolution/docs/modules/TransactionOutput.ts.md new file mode 100644 index 00000000..1df6154a --- /dev/null +++ b/packages/evolution/docs/modules/TransactionOutput.ts.md @@ -0,0 +1,416 @@ +--- +title: TransactionOutput.ts +nav_order: 91 +parent: Modules +--- + +## TransactionOutput overview + +--- + +

Table of contents

+ +- [model](#model) + - [BabbageTransactionOutput (class)](#babbagetransactionoutput-class) + - [ShelleyTransactionOutput (class)](#shelleytransactionoutput-class) +- [schemas](#schemas) + - [BabbageTransactionOutputCDDLSchema](#babbagetransactionoutputcddlschema) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [ShelleyTransactionOutputCDDLSchema](#shelleytransactionoutputcddlschema) + - [TransactionOutput](#transactionoutput) + - [TransactionOutputCDDLSchema](#transactionoutputcddlschema) +- [utils](#utils) + - [Codec](#codec) + - [TransactionOutput (type alias)](#transactionoutput-type-alias) + - [TransactionOutputError (class)](#transactionoutputerror-class) + +--- + +# model + +## BabbageTransactionOutput (class) + +Babbage-era transaction output format + +``` +CDDL: babbage_transaction_output = + {0 : address, 1 : value, ? 2 : datum_option, ? 3 : script_ref} +``` + +**Signature** + +```ts +export declare class BabbageTransactionOutput +``` + +Added in v2.0.0 + +## ShelleyTransactionOutput (class) + +Shelley-era transaction output format + +``` +CDDL: shelley_transaction_output = [address, amount : value, ? Bytes32] +``` + +**Signature** + +```ts +export declare class ShelleyTransactionOutput +``` + +Added in v2.0.0 + +# schemas + +## BabbageTransactionOutputCDDLSchema + +CDDL schema for Babbage transaction outputs + +``` +CDDL: babbage_transaction_output = {0 : address, 1 : value, ? 2 : datum_option, ? 3 : script_ref} +``` + +**Signature** + +```ts +export declare const BabbageTransactionOutputCDDLSchema: Schema.transformOrFail< + Schema.Struct<{ + 0: typeof Schema.Uint8ArrayFromSelf + 1: Schema.SchemaClass< + bigint | readonly [bigint, ReadonlyMap>], + bigint | readonly [bigint, ReadonlyMap>], + never + > + 2: Schema.optional< + Schema.SchemaClass< + readonly [0n, any] | readonly [1n, CBOR.CBOR], + readonly [0n, any] | readonly [1n, CBOR.CBOR], + never + > + > + 3: Schema.optional< + Schema.SchemaClass< + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + never + > + > + }>, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +## FromBytes + +CBOR bytes transformation schema for TransactionOutput. +Transforms between Uint8Array and TransactionOutput using CBOR encoding. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.Union< + [ + Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass< + bigint | readonly [bigint, ReadonlyMap>], + bigint | readonly [bigint, ReadonlyMap>], + never + >, + Schema.Element + ] + >, + Schema.SchemaClass, + never + >, + Schema.transformOrFail< + Schema.Struct<{ + 0: typeof Schema.Uint8ArrayFromSelf + 1: Schema.SchemaClass< + bigint | readonly [bigint, ReadonlyMap>], + bigint | readonly [bigint, ReadonlyMap>], + never + > + 2: Schema.optional< + Schema.SchemaClass< + readonly [0n, any] | readonly [1n, CBOR.CBOR], + readonly [0n, any] | readonly [1n, CBOR.CBOR], + never + > + > + 3: Schema.optional< + Schema.SchemaClass< + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + never + > + > + }>, + Schema.SchemaClass, + never + > + ] + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for TransactionOutput. +Transforms between hex string and TransactionOutput using CBOR encoding. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.Union< + [ + Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass< + bigint | readonly [bigint, ReadonlyMap>], + bigint | readonly [bigint, ReadonlyMap>], + never + >, + Schema.Element + ] + >, + Schema.SchemaClass, + never + >, + Schema.transformOrFail< + Schema.Struct<{ + 0: typeof Schema.Uint8ArrayFromSelf + 1: Schema.SchemaClass< + bigint | readonly [bigint, ReadonlyMap>], + bigint | readonly [bigint, ReadonlyMap>], + never + > + 2: Schema.optional< + Schema.SchemaClass< + readonly [0n, any] | readonly [1n, CBOR.CBOR], + readonly [0n, any] | readonly [1n, CBOR.CBOR], + never + > + > + 3: Schema.optional< + Schema.SchemaClass< + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + never + > + > + }>, + Schema.SchemaClass, + never + > + ] + > + > +> +``` + +Added in v2.0.0 + +## ShelleyTransactionOutputCDDLSchema + +CDDL schema for Shelley transaction outputs + +``` +CDDL: shelley_transaction_output = [address, amount : value, ? Bytes32] +``` + +**Signature** + +```ts +export declare const ShelleyTransactionOutputCDDLSchema: Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass< + bigint | readonly [bigint, ReadonlyMap>], + bigint | readonly [bigint, ReadonlyMap>], + never + >, + Schema.Element + ] + >, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +## TransactionOutput + +Union type for transaction outputs + +``` +CDDL: transaction_output = shelley_transaction_output / babbage_transaction_output +``` + +**Signature** + +```ts +export declare const TransactionOutput: Schema.Union<[typeof ShelleyTransactionOutput, typeof BabbageTransactionOutput]> +``` + +Added in v2.0.0 + +## TransactionOutputCDDLSchema + +CDDL schema for transaction outputs + +``` +CDDL: transaction_output = shelley_transaction_output / babbage_transaction_output +shelley_transaction_output = [address, amount : value, ? Bytes32] +babbage_transaction_output = {0 : address, 1 : value, ? 2 : datum_option, ? 3 : script_ref} +``` + +**Signature** + +```ts +export declare const TransactionOutputCDDLSchema: Schema.Union< + [ + Schema.transformOrFail< + Schema.Tuple< + [ + typeof Schema.Uint8ArrayFromSelf, + Schema.SchemaClass< + bigint | readonly [bigint, ReadonlyMap>], + bigint | readonly [bigint, ReadonlyMap>], + never + >, + Schema.Element + ] + >, + Schema.SchemaClass, + never + >, + Schema.transformOrFail< + Schema.Struct<{ + 0: typeof Schema.Uint8ArrayFromSelf + 1: Schema.SchemaClass< + bigint | readonly [bigint, ReadonlyMap>], + bigint | readonly [bigint, ReadonlyMap>], + never + > + 2: Schema.optional< + Schema.SchemaClass< + readonly [0n, any] | readonly [1n, CBOR.CBOR], + readonly [0n, any] | readonly [1n, CBOR.CBOR], + never + > + > + 3: Schema.optional< + Schema.SchemaClass< + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + { readonly tag: number; readonly value: CBOR.CBOR; readonly _tag: "Tag" }, + never + > + > + }>, + Schema.SchemaClass, + never + > + ] +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: (input: ShelleyTransactionOutput | BabbageTransactionOutput) => any + cborHex: (input: ShelleyTransactionOutput | BabbageTransactionOutput) => string + } + Decode: { + cborBytes: (input: any) => ShelleyTransactionOutput | BabbageTransactionOutput + cborHex: (input: string) => ShelleyTransactionOutput | BabbageTransactionOutput + } + EncodeEffect: { + cborBytes: ( + input: ShelleyTransactionOutput | BabbageTransactionOutput + ) => Effect.Effect> + cborHex: ( + input: ShelleyTransactionOutput | BabbageTransactionOutput + ) => Effect.Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect.Effect> + cborHex: ( + input: string + ) => Effect.Effect> + } + EncodeEither: { + cborBytes: ( + input: ShelleyTransactionOutput | BabbageTransactionOutput + ) => Either> + cborHex: ( + input: ShelleyTransactionOutput | BabbageTransactionOutput + ) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either> + cborHex: ( + input: string + ) => Either> + } +} +``` + +## TransactionOutput (type alias) + +**Signature** + +```ts +export type TransactionOutput = Schema.Schema.Type +``` + +## TransactionOutputError (class) + +**Signature** + +```ts +export declare class TransactionOutputError +``` diff --git a/packages/evolution/docs/modules/UnitInterval.ts.md b/packages/evolution/docs/modules/UnitInterval.ts.md new file mode 100644 index 00000000..09465876 --- /dev/null +++ b/packages/evolution/docs/modules/UnitInterval.ts.md @@ -0,0 +1,305 @@ +--- +title: UnitInterval.ts +nav_order: 93 +parent: Modules +--- + +## UnitInterval overview + +--- + +

Table of contents

+ +- [codecs](#codecs) + - [CBORCodec](#cborcodec) +- [constructors](#constructors) + - [fromBigDecimal](#frombigdecimal) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [UnitIntervalError (class)](#unitintervalerror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [FromCBORBytes](#fromcborbytes) + - [FromCBORHex](#fromcborhex) + - [FromCDDL](#fromcddl) + - [UnitInterval](#unitinterval) +- [transformation](#transformation) + - [toBigDecimal](#tobigdecimal) +- [utils](#utils) + - [UnitInterval (type alias)](#unitinterval-type-alias) + +--- + +# codecs + +## CBORCodec + +CBOR codec utilities for UnitInterval. + +**Signature** + +```ts +export declare const CBORCodec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: (input: { readonly numerator: bigint; readonly denominator: bigint }) => any + cborHex: (input: { readonly numerator: bigint; readonly denominator: bigint }) => string + } + Decode: { + cborBytes: (input: any) => { readonly numerator: bigint; readonly denominator: bigint } + cborHex: (input: string) => { readonly numerator: bigint; readonly denominator: bigint } + } + EncodeEffect: { + cborBytes: (input: { + readonly numerator: bigint + readonly denominator: bigint + }) => Effect.Effect> + cborHex: (input: { + readonly numerator: bigint + readonly denominator: bigint + }) => Effect.Effect> + } + DecodeEffect: { + cborBytes: ( + input: any + ) => Effect.Effect< + { readonly numerator: bigint; readonly denominator: bigint }, + InstanceType + > + cborHex: ( + input: string + ) => Effect.Effect< + { readonly numerator: bigint; readonly denominator: bigint }, + InstanceType + > + } + EncodeEither: { + cborBytes: (input: { + readonly numerator: bigint + readonly denominator: bigint + }) => Either> + cborHex: (input: { + readonly numerator: bigint + readonly denominator: bigint + }) => Either> + } + DecodeEither: { + cborBytes: ( + input: any + ) => Either<{ readonly numerator: bigint; readonly denominator: bigint }, InstanceType> + cborHex: ( + input: string + ) => Either<{ readonly numerator: bigint; readonly denominator: bigint }, InstanceType> + } +} +``` + +Added in v2.0.0 + +# constructors + +## fromBigDecimal + +Create UnitInterval from BigDecimal value. + +**Signature** + +```ts +export declare const fromBigDecimal: (value: BigDecimal.BigDecimal) => UnitInterval +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two UnitInterval instances are equal. + +**Signature** + +```ts +export declare const equals: (a: UnitInterval, b: UnitInterval) => boolean +``` + +Added in v2.0.0 + +# errors + +## UnitIntervalError (class) + +Error class for UnitInterval related operations. + +**Signature** + +```ts +export declare class UnitIntervalError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random UnitInterval. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary<{ readonly numerator: bigint; readonly denominator: bigint }> +``` + +Added in v2.0.0 + +# schemas + +## FromCBORBytes + +CBOR bytes transformation schema for UnitInterval. +Transforms between Uint8Array and UnitInterval using CBOR encoding. + +**Signature** + +```ts +export declare const FromCBORBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + typeof CBOR.Tag, + Schema.refine< + { readonly numerator: bigint; readonly denominator: bigint }, + Schema.Struct<{ + numerator: Schema.refine + denominator: Schema.refine + }> + >, + never + > +> +``` + +Added in v2.0.0 + +## FromCBORHex + +CBOR hex transformation schema for UnitInterval. +Transforms between hex string and UnitInterval using CBOR encoding. + +**Signature** + +```ts +export declare const FromCBORHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + typeof CBOR.Tag, + Schema.refine< + { readonly numerator: bigint; readonly denominator: bigint }, + Schema.Struct<{ + numerator: Schema.refine + denominator: Schema.refine + }> + >, + never + > + > +> +``` + +Added in v2.0.0 + +## FromCDDL + +CDDL schema for UnitInterval following the Conway specification. + +``` +unit_interval = #6.30([uint, uint]) +``` + +Transforms between CBOR tag 30 structure and UnitInterval model. + +**Signature** + +```ts +export declare const FromCDDL: Schema.transformOrFail< + typeof CBOR.Tag, + Schema.refine< + { readonly numerator: bigint; readonly denominator: bigint }, + Schema.Struct<{ + numerator: Schema.refine + denominator: Schema.refine + }> + >, + never +> +``` + +Added in v2.0.0 + +## UnitInterval + +Schema for UnitInterval representing a fractional value between 0 and 1. + +``` +CDDL: unit_interval = #6.30([uint, uint]) +``` + +A unit interval is a number in the range between 0 and 1, which +means there are two extra constraints: + +``` +1. numerator โ‰ค denominator +2. denominator > 0 +``` + +**Signature** + +```ts +export declare const UnitInterval: Schema.refine< + { readonly numerator: bigint; readonly denominator: bigint }, + Schema.Struct<{ + numerator: Schema.refine + denominator: Schema.refine + }> +> +``` + +Added in v2.0.0 + +# transformation + +## toBigDecimal + +Convert UnitInterval to BigDecimal value. + +**Signature** + +```ts +export declare const toBigDecimal: (interval: UnitInterval) => BigDecimal.BigDecimal +``` + +Added in v2.0.0 + +# utils + +## UnitInterval (type alias) + +**Signature** + +```ts +export type UnitInterval = typeof UnitInterval.Type +``` diff --git a/packages/evolution/docs/modules/Url.ts.md b/packages/evolution/docs/modules/Url.ts.md new file mode 100644 index 00000000..e57fd760 --- /dev/null +++ b/packages/evolution/docs/modules/Url.ts.md @@ -0,0 +1,206 @@ +--- +title: Url.ts +nav_order: 94 +parent: Modules +--- + +## Url overview + +--- + +

Table of contents

+ +- [constants](#constants) + - [URL_MAX_LENGTH](#url_max_length) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [UrlError (class)](#urlerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [Url](#url) + - [Url (type alias)](#url-type-alias) +- [utils](#utils) + - [Codec](#codec) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [make](#make) + +--- + +# constants + +## URL_MAX_LENGTH + +CDDL specification: +url = text .size (0..128) + +**Signature** + +```ts +export declare const URL_MAX_LENGTH: 128 +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two Url instances are equal. + +**Signature** + +```ts +export declare const equals: (a: Url, b: Url) => boolean +``` + +Added in v2.0.0 + +# errors + +## UrlError (class) + +Error class for Url related operations. + +**Signature** + +```ts +export declare class UrlError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random Url. + +**Signature** + +```ts +export declare const generator: Arbitrary> +``` + +Added in v2.0.0 + +# model + +## Url + +Schema for Url representing URLs as branded text. +url = text .size (0..128) + +**Signature** + +```ts +export declare const Url: Schema.brand< + Schema.refine< + string, + Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform + > + >, + "Url" +> +``` + +Added in v2.0.0 + +## Url (type alias) + +Type alias for Url. + +**Signature** + +```ts +export type Url = typeof Url.Type +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"Url">) => any; hex: (input: string & Brand<"Url">) => string } + Decode: { bytes: (input: any) => string & Brand<"Url">; hex: (input: string) => string & Brand<"Url"> } + EncodeEffect: { + bytes: (input: string & Brand<"Url">) => Effect> + hex: (input: string & Brand<"Url">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"Url">) => Either> + hex: (input: string & Brand<"Url">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.filter>, + Schema.brand< + Schema.refine< + string, + Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform + > + >, + "Url" + > +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine< + string, + Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform + > + >, + Schema.brand< + Schema.refine< + string, + Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform + > + >, + "Url" + > +> +``` + +## make + +**Signature** + +```ts +export declare const make: (a: string, options?: Schema.MakeOptions) => string & Brand<"Url"> +``` diff --git a/packages/evolution/docs/modules/VKey.ts.md b/packages/evolution/docs/modules/VKey.ts.md new file mode 100644 index 00000000..d1c8e034 --- /dev/null +++ b/packages/evolution/docs/modules/VKey.ts.md @@ -0,0 +1,154 @@ +--- +title: VKey.ts +nav_order: 96 +parent: Modules +--- + +## VKey overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [VKeyError (class)](#vkeyerror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [VKey](#vkey) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [VKey (type alias)](#vkey-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for VKey encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"VKey">) => any; hex: (input: string & Brand<"VKey">) => string } + Decode: { bytes: (input: any) => string & Brand<"VKey">; hex: (input: string) => string & Brand<"VKey"> } + EncodeEffect: { + bytes: (input: string & Brand<"VKey">) => Effect> + hex: (input: string & Brand<"VKey">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"VKey">) => Either> + hex: (input: string & Brand<"VKey">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two VKey instances are equal. + +**Signature** + +```ts +export declare const equals: (a: VKey, b: VKey) => boolean +``` + +Added in v2.0.0 + +# errors + +## VKeyError (class) + +Error class for VKey related operations. + +**Signature** + +```ts +export declare class VKeyError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random VKey. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## VKey + +Schema for VKey representing a verification key. +vkey = bytes .size 32 +Follows the Conway-era CDDL specification. + +**Signature** + +```ts +export declare const VKey: Schema.brand>, "VKey"> +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "VKey"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "VKey"> +> +``` + +## VKey (type alias) + +**Signature** + +```ts +export type VKey = typeof VKey.Type +``` diff --git a/packages/evolution/docs/modules/Value.ts.md b/packages/evolution/docs/modules/Value.ts.md new file mode 100644 index 00000000..a07035b5 --- /dev/null +++ b/packages/evolution/docs/modules/Value.ts.md @@ -0,0 +1,410 @@ +--- +title: Value.ts +nav_order: 95 +parent: Modules +--- + +## Value overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [onlyCoin](#onlycoin) + - [withAssets](#withassets) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [ValueError (class)](#valueerror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [ValueCDDL (type alias)](#valuecddl-type-alias) +- [predicates](#predicates) + - [hasAssets](#hasassets) + - [is](#is) + - [isAdaOnly](#isadaonly) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [OnlyCoin (class)](#onlycoin-class) + - [ValueCDDLSchema](#valuecddlschema) +- [transformation](#transformation) + - [add](#add) + - [getAda](#getada) + - [getAssets](#getassets) + - [subtract](#subtract) +- [utils](#utils) + - [Codec](#codec) + - [Value](#value) + - [Value (type alias)](#value-type-alias) + - [WithAssets (class)](#withassets-class) + +--- + +# constructors + +## onlyCoin + +Create a Value containing only ADA. + +**Signature** + +```ts +export declare const onlyCoin: (ada: Coin.Coin) => OnlyCoin +``` + +Added in v2.0.0 + +## withAssets + +Create a Value containing ADA and native assets. + +**Signature** + +```ts +export declare const withAssets: (ada: Coin.Coin, assets: MultiAsset.MultiAsset) => WithAssets +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two Values are equal. + +**Signature** + +```ts +export declare const equals: (a: Value, b: Value) => boolean +``` + +Added in v2.0.0 + +# errors + +## ValueError (class) + +Error class for Value related operations. + +**Signature** + +```ts +export declare class ValueError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random Value. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary< + | { _tag: string; coin: bigint } + | { _tag: string; coin: bigint; assets: Map, Map, bigint>> } +> +``` + +Added in v2.0.0 + +# model + +## ValueCDDL (type alias) + +TypeScript type for the raw CDDL representation. +This is what gets encoded/decoded to/from CBOR. + +**Signature** + +```ts +export type ValueCDDL = typeof ValueCDDLSchema.Type +``` + +Added in v2.0.0 + +# predicates + +## hasAssets + +Check if a Value contains native assets. + +**Signature** + +```ts +export declare const hasAssets: (value: Value) => value is WithAssets +``` + +Added in v2.0.0 + +## is + +Check if a value is a valid Value. + +**Signature** + +```ts +export declare const is: (value: unknown) => value is Value +``` + +Added in v2.0.0 + +## isAdaOnly + +Check if a Value contains only ADA (no native assets). + +**Signature** + +```ts +export declare const isAdaOnly: (value: Value) => value is OnlyCoin +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for Value. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Union< + [ + typeof Schema.BigIntFromSelf, + Schema.Tuple2< + typeof Schema.BigIntFromSelf, + Schema.SchemaClass< + ReadonlyMap>, + ReadonlyMap>, + never + > + > + ] + >, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for Value. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Union< + [ + typeof Schema.BigIntFromSelf, + Schema.Tuple2< + typeof Schema.BigIntFromSelf, + Schema.SchemaClass< + ReadonlyMap>, + ReadonlyMap>, + never + > + > + ] + >, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## OnlyCoin (class) + +Schema for Value representing both ADA and native assets. + +``` +value = coin / [coin, multiasset] +``` + +This can be either: + +1. Just a coin amount (lovelace only) +2. A tuple of [coin, multiasset] (lovelace + native assets) + +**Signature** + +```ts +export declare class OnlyCoin +``` + +Added in v2.0.0 + +## ValueCDDLSchema + +CDDL schema for Value as union structure. + +``` +value = coin / [coin, multiasset] +``` + +This represents either: + +- A single coin amount (for ADA-only values) +- An array with [coin, multiasset] (for values with native assets) + +**Signature** + +```ts +export declare const ValueCDDLSchema: Schema.transformOrFail< + Schema.Union< + [ + typeof Schema.BigIntFromSelf, + Schema.Tuple2< + typeof Schema.BigIntFromSelf, + Schema.SchemaClass< + ReadonlyMap>, + ReadonlyMap>, + never + > + > + ] + >, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# transformation + +## add + +Add two Values together. +Combines ADA amounts and merges MultiAssets. + +**Signature** + +```ts +export declare const add: (a: Value, b: Value) => Value +``` + +Added in v2.0.0 + +## getAda + +Extract the ADA amount from a Value. + +**Signature** + +```ts +export declare const getAda: (value: Value) => Coin.Coin +``` + +Added in v2.0.0 + +## getAssets + +Extract the MultiAsset from a Value, if it exists. + +**Signature** + +```ts +export declare const getAssets: (value: Value) => Option.Option +``` + +Added in v2.0.0 + +## subtract + +Subtract Value b from Value a. +Subtracts ADA amounts and MultiAssets properly. + +**Signature** + +```ts +export declare const subtract: (a: Value, b: Value) => Value +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: OnlyCoin | WithAssets) => any; cborHex: (input: OnlyCoin | WithAssets) => string } + Decode: { cborBytes: (input: any) => OnlyCoin | WithAssets; cborHex: (input: string) => OnlyCoin | WithAssets } + EncodeEffect: { + cborBytes: (input: OnlyCoin | WithAssets) => Effect.Effect> + cborHex: (input: OnlyCoin | WithAssets) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: OnlyCoin | WithAssets) => Either> + cborHex: (input: OnlyCoin | WithAssets) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` + +## Value + +**Signature** + +```ts +export declare const Value: Schema.Union<[typeof OnlyCoin, typeof WithAssets]> +``` + +## Value (type alias) + +**Signature** + +```ts +export type Value = typeof Value.Type +``` + +## WithAssets (class) + +**Signature** + +```ts +export declare class WithAssets +``` diff --git a/packages/evolution/docs/modules/VotingProcedures.ts.md b/packages/evolution/docs/modules/VotingProcedures.ts.md new file mode 100644 index 00000000..a3e0bc4c --- /dev/null +++ b/packages/evolution/docs/modules/VotingProcedures.ts.md @@ -0,0 +1,49 @@ +--- +title: VotingProcedures.ts +nav_order: 97 +parent: Modules +--- + +## VotingProcedures overview + +--- + +

Table of contents

+ +- [model](#model) + - [VotingProcedures](#votingprocedures) +- [utils](#utils) + - [VotingProcedures (type alias)](#votingprocedures-type-alias) + +--- + +# model + +## VotingProcedures + +VotingProcedures based on Conway CDDL specification + +``` +CDDL: voting_procedures = {+ voter => {+ gov_action_id => voting_procedure}} +``` + +This is a complex nested map structure that we'll implement gradually +as we create the required sub-types. + +**Signature** + +```ts +export declare const VotingProcedures: typeof Schema.Unknown +``` + +Added in v2.0.0 + +# utils + +## VotingProcedures (type alias) + +**Signature** + +```ts +export type VotingProcedures = Schema.Schema.Type +``` diff --git a/packages/evolution/docs/modules/VrfCert.ts.md b/packages/evolution/docs/modules/VrfCert.ts.md new file mode 100644 index 00000000..d63cca1b --- /dev/null +++ b/packages/evolution/docs/modules/VrfCert.ts.md @@ -0,0 +1,335 @@ +--- +title: VrfCert.ts +nav_order: 98 +parent: Modules +--- + +## VrfCert overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [make](#make) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [VrfCertError (class)](#vrfcerterror-class) +- [model](#model) + - [VRFOutput (type alias)](#vrfoutput-type-alias) + - [VRFProof (type alias)](#vrfproof-type-alias) + - [VrfCert (class)](#vrfcert-class) +- [predicates](#predicates) + - [isVrfCert](#isvrfcert) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [VRFOutput](#vrfoutput) + - [VRFOutputFromBytes](#vrfoutputfrombytes) + - [VRFOutputHexSchema](#vrfoutputhexschema) + - [VRFProof](#vrfproof) + - [VRFProofFromBytes](#vrfprooffrombytes) + - [VRFProofHexSchema](#vrfproofhexschema) + - [VrfCertCDDLSchema](#vrfcertcddlschema) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## make + +Create a VrfCert from output and proof. + +**Signature** + +```ts +export declare const make: (output: VRFOutput, proof: VRFProof) => VrfCert +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two VrfCert instances are equal. + +**Signature** + +```ts +export declare const equals: (a: VrfCert, b: VrfCert) => boolean +``` + +Added in v2.0.0 + +# errors + +## VrfCertError (class) + +Error class for VrfCert related operations. + +**Signature** + +```ts +export declare class VrfCertError +``` + +Added in v2.0.0 + +# model + +## VRFOutput (type alias) + +Type alias for VRF output. + +**Signature** + +```ts +export type VRFOutput = typeof VRFOutput.Type +``` + +Added in v2.0.0 + +## VRFProof (type alias) + +Type alias for VRF proof. + +**Signature** + +```ts +export type VRFProof = typeof VRFProof.Type +``` + +Added in v2.0.0 + +## VrfCert (class) + +Schema for VrfCert representing a VRF certificate. +vrf_cert = [vrf_output, vrf_proof] + +**Signature** + +```ts +export declare class VrfCert +``` + +Added in v2.0.0 + +# predicates + +## isVrfCert + +Check if the given value is a valid VrfCert. + +**Signature** + +```ts +export declare const isVrfCert: (u: unknown, overrideOptions?: ParseOptions | number) => u is VrfCert +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for VrfCert. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for VrfCert. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## VRFOutput + +Schema for VRF output (32 bytes). +vrf_output = bytes .size 32 + +**Signature** + +```ts +export declare const VRFOutput: Schema.brand< + Schema.refine>, + "VrfOutput" +> +``` + +Added in v2.0.0 + +## VRFOutputFromBytes + +Schema for VRF output as a byte array. +vrf_output = bytes .size 32 + +**Signature** + +```ts +export declare const VRFOutputFromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "VrfOutput"> +> +``` + +Added in v2.0.0 + +## VRFOutputHexSchema + +Schema for VRF output as a hex string. +vrf_output = bytes .size 32 + +**Signature** + +```ts +export declare const VRFOutputHexSchema: Schema.transform< + Schema.refine>, + Schema.brand>, "VrfOutput"> +> +``` + +Added in v2.0.0 + +## VRFProof + +Schema for VRF proof (80 bytes). +vrf_proof = bytes .size 80 + +**Signature** + +```ts +export declare const VRFProof: Schema.brand>, "VrfProof"> +``` + +Added in v2.0.0 + +## VRFProofFromBytes + +Schema for VRF proof as a byte array. +vrf_proof = bytes .size 80 + +**Signature** + +```ts +export declare const VRFProofFromBytes: Schema.transform< + Schema.transform< + Schema.filter, + Schema.filter> + >, + Schema.brand>, "VrfProof"> +> +``` + +Added in v2.0.0 + +## VRFProofHexSchema + +Schema for VRF proof as a hex string. +vrf_proof = bytes .size 80 + +**Signature** + +```ts +export declare const VRFProofHexSchema: Schema.transform< + Schema.filter>, + Schema.brand>, "VrfProof"> +> +``` + +Added in v2.0.0 + +## VrfCertCDDLSchema + +CDDL schema for VrfCert as tuple structure. +vrf_cert = [vrf_output, vrf_proof] +vrf_output = bytes .size 32 +vrf_proof = bytes .size 80 + +**Signature** + +```ts +export declare const VrfCertCDDLSchema: Schema.transformOrFail< + Schema.Tuple2, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { cborBytes: (input: VrfCert) => any; cborHex: (input: VrfCert) => string } + Decode: { cborBytes: (input: any) => VrfCert; cborHex: (input: string) => VrfCert } + EncodeEffect: { + cborBytes: (input: VrfCert) => Effect.Effect> + cborHex: (input: VrfCert) => Effect.Effect> + } + DecodeEffect: { + cborBytes: (input: any) => Effect.Effect> + cborHex: (input: string) => Effect.Effect> + } + EncodeEither: { + cborBytes: (input: VrfCert) => Either> + cborHex: (input: VrfCert) => Either> + } + DecodeEither: { + cborBytes: (input: any) => Either> + cborHex: (input: string) => Either> + } +} +``` diff --git a/packages/evolution/docs/modules/VrfKeyHash.ts.md b/packages/evolution/docs/modules/VrfKeyHash.ts.md new file mode 100644 index 00000000..e0a7b286 --- /dev/null +++ b/packages/evolution/docs/modules/VrfKeyHash.ts.md @@ -0,0 +1,156 @@ +--- +title: VrfKeyHash.ts +nav_order: 99 +parent: Modules +--- + +## VrfKeyHash overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [VrfKeyHashError (class)](#vrfkeyhasherror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [VrfKeyHash](#vrfkeyhash) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [VrfKeyHash (type alias)](#vrfkeyhash-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for VrfKeyHash encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"VrfKeyHash">) => any; hex: (input: string & Brand<"VrfKeyHash">) => string } + Decode: { bytes: (input: any) => string & Brand<"VrfKeyHash">; hex: (input: string) => string & Brand<"VrfKeyHash"> } + EncodeEffect: { + bytes: (input: string & Brand<"VrfKeyHash">) => Effect> + hex: (input: string & Brand<"VrfKeyHash">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"VrfKeyHash">) => Either> + hex: (input: string & Brand<"VrfKeyHash">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two VrfKeyHash instances are equal. + +**Signature** + +```ts +export declare const equals: (a: VrfKeyHash, b: VrfKeyHash) => boolean +``` + +Added in v2.0.0 + +# errors + +## VrfKeyHashError (class) + +Error class for VrfKeyHash related operations. + +**Signature** + +```ts +export declare class VrfKeyHashError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random VrfKeyHash. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## VrfKeyHash + +VrfKeyHash is a 32-byte hash representing a VRF verification key. +vrf_keyhash = Bytes32 + +**Signature** + +```ts +export declare const VrfKeyHash: Schema.brand< + Schema.refine>, + "VrfKeyHash" +> +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "VrfKeyHash"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "VrfKeyHash"> +> +``` + +## VrfKeyHash (type alias) + +**Signature** + +```ts +export type VrfKeyHash = typeof VrfKeyHash.Type +``` diff --git a/packages/evolution/docs/modules/VrfVkey.ts.md b/packages/evolution/docs/modules/VrfVkey.ts.md new file mode 100644 index 00000000..779609f4 --- /dev/null +++ b/packages/evolution/docs/modules/VrfVkey.ts.md @@ -0,0 +1,157 @@ +--- +title: VrfVkey.ts +nav_order: 100 +parent: Modules +--- + +## VrfVkey overview + +--- + +

Table of contents

+ +- [encoding/decoding](#encodingdecoding) + - [Codec](#codec) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [VrfVkeyError (class)](#vrfvkeyerror-class) +- [generators](#generators) + - [generator](#generator) +- [schemas](#schemas) + - [VrfVkey](#vrfvkey) +- [utils](#utils) + - [FromBytes](#frombytes) + - [FromHex](#fromhex) + - [VrfVkey (type alias)](#vrfvkey-type-alias) + +--- + +# encoding/decoding + +## Codec + +Codec utilities for VrfVkey encoding and decoding operations. + +**Signature** + +```ts +export declare const Codec: { + Encode: { bytes: (input: string & Brand<"VrfVkey">) => any; hex: (input: string & Brand<"VrfVkey">) => string } + Decode: { bytes: (input: any) => string & Brand<"VrfVkey">; hex: (input: string) => string & Brand<"VrfVkey"> } + EncodeEffect: { + bytes: (input: string & Brand<"VrfVkey">) => Effect> + hex: (input: string & Brand<"VrfVkey">) => Effect> + } + DecodeEffect: { + bytes: (input: any) => Effect, InstanceType> + hex: (input: string) => Effect, InstanceType> + } + EncodeEither: { + bytes: (input: string & Brand<"VrfVkey">) => Either> + hex: (input: string & Brand<"VrfVkey">) => Either> + } + DecodeEither: { + bytes: (input: any) => Either, InstanceType> + hex: (input: string) => Either, InstanceType> + } +} +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two VrfVkey instances are equal. + +**Signature** + +```ts +export declare const equals: (a: VrfVkey, b: VrfVkey) => boolean +``` + +Added in v2.0.0 + +# errors + +## VrfVkeyError (class) + +Error class for VrfVkey related operations. + +**Signature** + +```ts +export declare class VrfVkeyError +``` + +Added in v2.0.0 + +# generators + +## generator + +Generate a random VrfVkey. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary> +``` + +Added in v2.0.0 + +# schemas + +## VrfVkey + +Schema for VrfVkey representing a VRF verification key. +vrf_vkey = bytes .size 32 +Follows the Conway-era CDDL specification. + +**Signature** + +```ts +export declare const VrfVkey: Schema.brand< + Schema.refine>, + "VrfVkey" +> +``` + +Added in v2.0.0 + +# utils + +## FromBytes + +**Signature** + +```ts +export declare const FromBytes: Schema.transform< + Schema.transform< + Schema.refine, + Schema.refine> + >, + Schema.brand>, "VrfVkey"> +> +``` + +## FromHex + +**Signature** + +```ts +export declare const FromHex: Schema.transform< + Schema.refine>, + Schema.brand>, "VrfVkey"> +> +``` + +## VrfVkey (type alias) + +**Signature** + +```ts +export type VrfVkey = typeof VrfVkey.Type +``` diff --git a/packages/evolution/docs/modules/Withdrawals.ts.md b/packages/evolution/docs/modules/Withdrawals.ts.md new file mode 100644 index 00000000..a66ec565 --- /dev/null +++ b/packages/evolution/docs/modules/Withdrawals.ts.md @@ -0,0 +1,366 @@ +--- +title: Withdrawals.ts +nav_order: 101 +parent: Modules +--- + +## Withdrawals overview + +--- + +

Table of contents

+ +- [constructors](#constructors) + - [empty](#empty) + - [fromEntries](#fromentries) + - [singleton](#singleton) +- [equality](#equality) + - [equals](#equals) +- [errors](#errors) + - [WithdrawalsError (class)](#withdrawalserror-class) +- [generators](#generators) + - [generator](#generator) +- [model](#model) + - [Withdrawals (class)](#withdrawals-class) + - [[Symbol.for("nodejs.util.inspect.custom")] (method)](#symbolfornodejsutilinspectcustom-method) +- [predicates](#predicates) + - [has](#has) + - [isEmpty](#isempty) + - [isWithdrawals](#iswithdrawals) +- [schemas](#schemas) + - [FromBytes](#FromBytes) + - [FromHex](#FromHex) + - [WithdrawalsCDDLSchema](#withdrawalscddlschema) +- [transformation](#transformation) + - [add](#add) + - [entries](#entries) + - [get](#get) + - [remove](#remove) + - [size](#size) +- [utils](#utils) + - [Codec](#codec) + +--- + +# constructors + +## empty + +Create an empty Withdrawals instance. + +**Signature** + +```ts +export declare const empty: () => Withdrawals +``` + +Added in v2.0.0 + +## fromEntries + +Create a Withdrawals instance from an array of [RewardAccount, Coin] pairs. + +**Signature** + +```ts +export declare const fromEntries: (entries: Array<[RewardAccount.RewardAccount, Coin.Coin]>) => Withdrawals +``` + +Added in v2.0.0 + +## singleton + +Create a Withdrawals instance with a single withdrawal. + +**Signature** + +```ts +export declare const singleton: (rewardAccount: RewardAccount.RewardAccount, coin: Coin.Coin) => Withdrawals +``` + +Added in v2.0.0 + +# equality + +## equals + +Check if two Withdrawals instances are equal. + +**Signature** + +```ts +export declare const equals: (self: Withdrawals, that: Withdrawals) => boolean +``` + +Added in v2.0.0 + +# errors + +## WithdrawalsError (class) + +Error class for Withdrawals related operations. + +**Signature** + +```ts +export declare class WithdrawalsError +``` + +Added in v2.0.0 + +# generators + +## generator + +FastCheck generator for Withdrawals instances. + +**Signature** + +```ts +export declare const generator: FastCheck.Arbitrary +``` + +Added in v2.0.0 + +# model + +## Withdrawals (class) + +Schema for Withdrawals representing a map of reward accounts to coin amounts. + +``` +withdrawals = {+ reward_account => coin} +``` + +**Signature** + +```ts +export declare class Withdrawals +``` + +Added in v2.0.0 + +### [Symbol.for("nodejs.util.inspect.custom")] (method) + +**Signature** + +```ts +;[Symbol.for("nodejs.util.inspect.custom")]() +``` + +# predicates + +## has + +Check if Withdrawals contains a specific reward account. + +**Signature** + +```ts +export declare const has: (withdrawals: Withdrawals, rewardAccount: RewardAccount.RewardAccount) => boolean +``` + +Added in v2.0.0 + +## isEmpty + +Check if Withdrawals is empty. + +**Signature** + +```ts +export declare const isEmpty: (withdrawals: Withdrawals) => boolean +``` + +Added in v2.0.0 + +## isWithdrawals + +Check if the given value is a valid Withdrawals + +**Signature** + +```ts +export declare const isWithdrawals: (u: unknown, overrideOptions?: ParseOptions | number) => u is Withdrawals +``` + +Added in v2.0.0 + +# schemas + +## FromBytes + +CBOR bytes transformation schema for Withdrawals. + +**Signature** + +```ts +export declare const FromBytes: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.MapFromSelf, + Schema.SchemaClass, + never + > +> +``` + +Added in v2.0.0 + +## FromHex + +CBOR hex transformation schema for Withdrawals. + +**Signature** + +```ts +export declare const FromHex: ( + options?: CBOR.CodecOptions +) => Schema.transform< + Schema.transform, typeof Schema.Uint8ArrayFromSelf>, + Schema.transform< + Schema.transformOrFail< + typeof Schema.Uint8ArrayFromSelf, + Schema.declare, + never + >, + Schema.transformOrFail< + Schema.MapFromSelf, + Schema.SchemaClass, + never + > + > +> +``` + +Added in v2.0.0 + +## WithdrawalsCDDLSchema + +CDDL schema for Withdrawals. + +``` +withdrawals = {+ reward_account => coin} +``` + +**Signature** + +```ts +export declare const WithdrawalsCDDLSchema: Schema.transformOrFail< + Schema.MapFromSelf, + Schema.SchemaClass, + never +> +``` + +Added in v2.0.0 + +# transformation + +## add + +Add a withdrawal to existing Withdrawals. + +**Signature** + +```ts +export declare const add: ( + withdrawals: Withdrawals, + rewardAccount: RewardAccount.RewardAccount, + coin: Coin.Coin +) => Withdrawals +``` + +Added in v2.0.0 + +## entries + +Get all entries as an array of [reward account, coin] pairs. + +**Signature** + +```ts +export declare const entries: (withdrawals: Withdrawals) => Array<[RewardAccount.RewardAccount, Coin.Coin]> +``` + +Added in v2.0.0 + +## get + +Get the coin amount for a specific reward account. + +**Signature** + +```ts +export declare const get: ( + withdrawals: Withdrawals, + rewardAccount: RewardAccount.RewardAccount +) => Coin.Coin | undefined +``` + +Added in v2.0.0 + +## remove + +Remove a withdrawal from existing Withdrawals. + +**Signature** + +```ts +export declare const remove: (withdrawals: Withdrawals, rewardAccount: RewardAccount.RewardAccount) => Withdrawals +``` + +Added in v2.0.0 + +## size + +Get the size (number of withdrawals) in Withdrawals. + +**Signature** + +```ts +export declare const size: (withdrawals: Withdrawals) => number +``` + +Added in v2.0.0 + +# utils + +## Codec + +**Signature** + +```ts +export declare const Codec: (options?: CBOR.CodecOptions) => { + Encode: { + cborBytes: (a: Withdrawals, overrideOptions?: ParseOptions) => any + cborHex: (a: Withdrawals, overrideOptions?: ParseOptions) => string + } + Decode: { + cborBytes: (u: unknown, overrideOptions?: ParseOptions) => Withdrawals + cborHex: (u: unknown, overrideOptions?: ParseOptions) => Withdrawals + } + EncodeEither: { + cborBytes: (a: Withdrawals, overrideOptions?: ParseOptions) => Either + cborHex: (a: Withdrawals, overrideOptions?: ParseOptions) => Either + } + DecodeEither: { + cborBytes: (u: unknown, overrideOptions?: ParseOptions) => Either + cborHex: (u: unknown, overrideOptions?: ParseOptions) => Either + } + EncodeEffect: { + cborBytes: (a: Withdrawals, overrideOptions?: ParseOptions) => Effect.Effect + cborHex: (a: Withdrawals, overrideOptions?: ParseOptions) => Effect.Effect + } + DecodeEffect: { + cborBytes: (u: unknown, overrideOptions?: ParseOptions) => Effect.Effect + cborHex: (u: unknown, overrideOptions?: ParseOptions) => Effect.Effect + } +} +``` diff --git a/packages/evolution/docs/modules/index.md b/packages/evolution/docs/modules/index.md new file mode 100644 index 00000000..d20a6b7c --- /dev/null +++ b/packages/evolution/docs/modules/index.md @@ -0,0 +1,6 @@ +--- +title: Modules +has_children: true +permalink: /docs/modules +nav_order: 2 +--- diff --git a/packages/evolution/package.json b/packages/evolution/package.json new file mode 100644 index 00000000..4bd4b7bd --- /dev/null +++ b/packages/evolution/package.json @@ -0,0 +1,79 @@ +{ + "name": "@evolution-sdk/evolution", + "version": "0.1.0", + "description": "A modern TypeScript SDK for Cardano blockchain development", + "type": "module", + "main": "./dist/index.js", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "sideEffects": [], + "tags": [ + "typescript", + "cardano", + "blockchain", + "effect" + ], + "exports": { + "./package.json": "./package.json", + ".": "./src/index.ts", + "./*": "./src/*.ts", + "./internal/*": null, + "./*/index": null + }, + "files": [ + "src/**/*.ts", + "dist/**/*.js", + "dist/**/*.js.map", + "dist/**/*.d.ts", + "dist/**/*.d.ts.map" + ], + "scripts": { + "build": "tsc -b tsconfig.build.json && babel dist --plugins annotate-pure-calls --out-dir dist --source-maps", + "dev": "tsc -b tsconfig.build.json --watch", + "type-check": "tsc --noEmit", + "lint": "eslint \"src/**/*.{ts,mjs}\"", + "test": "vitest run", + "docgen": "docgen", + "clean": "rm -rf dist .turbo docs" + }, + "devDependencies": { + "@types/dockerode": "^3.3.0", + "tsx": "^4.20.3", + "typescript": "^5.4.0" + }, + "dependencies": { + "@effect/platform": "^0.90.0", + "@effect/platform-node": "^0.94.0", + "@scure/base": "^1.1.0", + "dockerode": "^4.0.0", + "effect": "^3.17.3" + }, + "keywords": [ + "cardano", + "blockchain", + "cryptocurrency", + "typescript", + "sdk", + "web3" + ], + "homepage": "https://github.com/no-witness-labs/evolution-sdk", + "repository": { + "type": "git", + "url": "git+https://github.com/no-witness-labs/evolution-sdk.git" + }, + "bugs": { + "url": "https://github.com/no-witness-labs/evolution-sdk/issues" + }, + "license": "MIT", + "publishConfig": { + "access": "public", + "provenance": true, + "exports": { + "./package.json": "./package.json", + ".": "./dist/index.js", + "./*": "./dist/*.js", + "./internal/*": null, + "./*/index": null + } + } +} diff --git a/packages/evolution/scripts/codegen.mjs b/packages/evolution/scripts/codegen.mjs new file mode 100644 index 00000000..51b40163 --- /dev/null +++ b/packages/evolution/scripts/codegen.mjs @@ -0,0 +1,200 @@ +#!/usr/bin/env node + +/** + * Code Generation Script for Evolution SDK + * + * This script can be extended to generate: + * - TypeScript types from CDDL schemas + * - Cardano transaction builders + * - Constants from blockchain parameters + * - API client code from OpenAPI specs + */ + +import { dirname, join } from "path" +import { existsSync, mkdirSync, writeFileSync } from "fs" +import { fileURLToPath } from "url" + +const __filename = fileURLToPath(import.meta.url) +const __dirname = dirname(__filename) +const srcDir = join(__dirname, "..", "src") + +// Ensure generated directory exists +const generatedDir = join(srcDir, "generated") +if (!existsSync(generatedDir)) { + mkdirSync(generatedDir, { recursive: true }) +} + +/** + * Generate version constants + */ +async function generateVersionInfo() { + const packageJson = await import("../package.json", { assert: { type: "json" } }) + + const content = `// This file is auto-generated. Do not edit manually. +// Generated at: ${new Date().toISOString()} + +export const VERSION = '${packageJson.default.version}'; +export const PACKAGE_NAME = '${packageJson.default.name}'; +export const BUILD_TIME = '${new Date().toISOString()}'; + +// Cardano Constants (can be extended) +export const CARDANO_CONSTANTS = { + // Byron era constants + BYRON_SLOT_DURATION: 20_000, // 20 seconds + + // Shelley era constants + SHELLEY_SLOT_DURATION: 1_000, // 1 second + EPOCH_LENGTH: 432_000, // 5 days worth of slots + + // Address constants + ADDRESS_CHECKSUM_SIZE: 4, + + // Transaction constants + MAX_TX_SIZE: 16_384, // 16KB + MIN_FEE_A: 44, + MIN_FEE_B: 155_381, + + // UTxO constants + MIN_UTxO: 1_000_000, // 1 ADA in lovelace +} as const; + +export type CardanoConstants = typeof CARDANO_CONSTANTS; +` + + writeFileSync(join(generatedDir, "constants.ts"), content) + console.log("โœ… Generated constants.ts") +} + +/** + * Generate network configurations + */ +function generateNetworkConfigs() { + const content = `// This file is auto-generated. Do not edit manually. +// Generated at: ${new Date().toISOString()} + +export interface NetworkConfig { + readonly networkId: number; + readonly protocolMagic: number; + readonly name: string; + readonly explorerUrl?: string; +} + +export const NETWORKS = { + mainnet: { + networkId: 1, + protocolMagic: 764824073, + name: 'mainnet', + explorerUrl: 'https://cardanoscan.io', + }, + preprod: { + networkId: 0, + protocolMagic: 1, + name: 'preprod', + explorerUrl: 'https://preprod.cardanoscan.io', + }, + preview: { + networkId: 0, + protocolMagic: 2, + name: 'preview', + explorerUrl: 'https://preview.cardanoscan.io', + }, + private: { + networkId: 0, + protocolMagic: 42, + name: 'private', + }, +} as const satisfies Record; + +export type NetworkName = keyof typeof NETWORKS; +export type Networks = typeof NETWORKS; +` + + writeFileSync(join(generatedDir, "networks.ts"), content) + console.log("โœ… Generated networks.ts") +} + +/** + * Generate type utilities + */ +function generateTypeUtils() { + const content = `// This file is auto-generated. Do not edit manually. +// Generated at: ${new Date().toISOString()} + +/** + * Utility types for the Evolution SDK + */ + +// Hex string validation +export type HexString = string & { readonly __brand: 'HexString' }; + +// Address types +export type Address = string & { readonly __brand: 'Address' }; +export type StakeAddress = string & { readonly __brand: 'StakeAddress' }; + +// Hash types +export type Hash28 = HexString & { readonly __length: 28 }; +export type Hash32 = HexString & { readonly __length: 32 }; + +export type TransactionHash = Hash32 & { readonly __type: 'TransactionHash' }; +export type PolicyId = Hash28 & { readonly __type: 'PolicyId' }; +export type AssetName = HexString & { readonly __type: 'AssetName' }; + +// Lovelace amount (always bigint for precision) +export type Lovelace = bigint & { readonly __brand: 'Lovelace' }; + +// Slot and epoch types +export type Slot = number & { readonly __brand: 'Slot' }; +export type Epoch = number & { readonly __brand: 'Epoch' }; + +// Validation helpers +export const isHexString = (value: string): value is HexString => { + return /^[0-9a-fA-F]*$/.test(value); +}; + +export const isValidAddress = (value: string): value is Address => { + // Basic validation - can be enhanced + return value.startsWith('addr') || value.startsWith('stake') || value.length === 103; +}; +` + + writeFileSync(join(generatedDir, "types.ts"), content) + console.log("โœ… Generated types.ts") +} + +/** + * Generate index file for all generated code + */ +function generateIndex() { + const content = `// This file is auto-generated. Do not edit manually. +// Generated at: ${new Date().toISOString()} + +export * from './constants.js'; +export * from './networks.js'; +export * from './types.js'; +` + + writeFileSync(join(generatedDir, "index.ts"), content) + console.log("โœ… Generated index.ts") +} + +/** + * Main generation function + */ +async function main() { + console.log("๐Ÿš€ Starting code generation...") + + try { + await generateVersionInfo() + generateNetworkConfigs() + generateTypeUtils() + generateIndex() + + console.log("\nโœจ Code generation completed successfully!") + console.log(`๐Ÿ“ Generated files in: ${generatedDir}`) + } catch (error) { + console.error("โŒ Code generation failed:", error) + process.exit(1) + } +} + +main() diff --git a/packages/evolution/src/Address.ts b/packages/evolution/src/Address.ts new file mode 100644 index 00000000..04e6578e --- /dev/null +++ b/packages/evolution/src/Address.ts @@ -0,0 +1,230 @@ +import { Data, Effect, FastCheck, ParseResult, pipe, Schema } from "effect" + +import * as BaseAddress from "./BaseAddress.js" +import * as Bech32 from "./Bech32.js" +import * as ByronAddress from "./ByronAddress.js" +import * as Bytes from "./Bytes.js" +import { createEncoders } from "./Codec.js" +import * as EnterpriseAddress from "./EnterpriseAddress.js" +import * as PointerAddress from "./PointerAddress.js" +import * as RewardAccount from "./RewardAccount.js" + +/** + * CDDL specs + * ; address format: + * ; [ 8 bit header | payload ]; + * ; + * ; shelley payment addresses: + * ; bit 7: 0 + * ; bit 6: base/other + * ; bit 5: pointer/enterprise [for base: stake cred is keyhash/scripthash] + * ; bit 4: payment cred is keyhash/scripthash + * ; bits 3-0: network id + * ; + * ; reward addresses: + * ; bits 7-5: 111 + * ; bit 4: credential is keyhash/scripthash + * ; bits 3-0: network id + * ; + * ; byron addresses: + * ; bits 7-4: 1000 + * ; + * ; 0000: base address: keyhash28,keyhash28 + * ; 0001: base address: scripthash28,keyhash28 + * ; 0010: base address: keyhash28,scripthash28 + * ; 0011: base address: scripthash28,scripthash28 + * ; 0100: pointer address: keyhash28, 3 variable length uint + * ; 0101: pointer address: scripthash28, 3 variable length uint + * ; 0110: enterprise address: keyhash28 + * ; 0111: enterprise address: scripthash28 + * ; 1000: byron address + * ; 1110: reward account: keyhash28 + * ; 1111: reward account: scripthash28 + * ; 1001-1101: future formats + */ + +/** + * Error thrown when address operations fail + * + * @since 2.0.0 + * @category model + */ +export class AddressError extends Data.TaggedError("AddressError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Union type representing all possible address types. + * + * @since 2.0.0 + * @category model + */ +export const Address = Schema.Union( + BaseAddress.BaseAddress, + EnterpriseAddress.EnterpriseAddress, + PointerAddress.PointerAddress, + RewardAccount.RewardAccount, + ByronAddress.ByronAddress +) + +/** + * Type representing an address. + * + * @since 2.0.0 + * @category model + */ +export type Address = typeof Address.Type + +/** + * Schema for encoding/decoding addresses as bytes. + * + * @since 2.0.0 + * @category schema + */ +export const FromBytes = Schema.transformOrFail(Schema.Uint8ArrayFromSelf, Address, { + strict: true, + encode: (_, __, ___, toA) => { + switch (toA._tag) { + case "BaseAddress": + return ParseResult.encode(BaseAddress.FromBytes)(toA) + case "EnterpriseAddress": + return ParseResult.encode(EnterpriseAddress.FromBytes)(toA) + case "PointerAddress": + return ParseResult.encode(PointerAddress.FromBytes)(toA) + case "RewardAccount": + return ParseResult.encode(RewardAccount.FromBytes)(toA) + case "ByronAddress": + return ParseResult.encode(ByronAddress.BytesSchema)(toA) + } + }, + decode: (_, __, ast, fromA) => + Effect.gen(function* () { + const header = fromA[0] + // Extract address type from the upper 4 bits (bits 4-7) + const addressType = header >> 4 + + switch (addressType) { + // Base address types (0000, 0001, 0010, 0011) + // Format: [payment credential, stake credential] + case 0b0000: // Key payment, Key stake + case 0b0001: // Script payment, Key stake + case 0b0010: // Key payment, Script stake + case 0b0011: + return yield* ParseResult.decode(BaseAddress.FromBytes)(fromA) + + // Enterprise address types (0110, 0111) + // Format: [payment credential only] + case 0b0110: // Key payment + case 0b0111: + return yield* ParseResult.decode(EnterpriseAddress.FromBytes)(fromA) + + // Pointer address types (0100, 0101) + // Format: [payment credential, variable length integers for slot, txIndex, certIndex] + case 0b0100: // Key payment with pointer + case 0b0101: + return yield* ParseResult.decode(PointerAddress.FromBytes)(fromA) + + case 0b1110: + case 0b1111: + return yield* ParseResult.decode(RewardAccount.FromBytes)(fromA) + + case 0b1000: + return yield* ParseResult.decode(ByronAddress.BytesSchema)(fromA) + + default: + return yield* ParseResult.fail(new ParseResult.Type(ast, fromA, `Unknown address type: ${addressType}`)) + } + }) +}) + +/** + * Schema for encoding/decoding addresses as hex strings. + * + * @since 2.0.0 + * @category schema + */ +export const FromHex = Schema.compose(Bytes.FromHex, FromBytes) + +/** + * Schema for encoding/decoding addresses as Bech32 strings. + * + * @since 2.0.0 + * @category schema + */ +export const FromBech32 = Schema.transformOrFail(Schema.typeSchema(Bech32.Bech32Schema), Address, { + strict: true, + encode: (_, __, ___, toA) => + Effect.gen(function* () { + const bytes = yield* ParseResult.encode(FromBytes)(toA) + let prefix: string + switch (toA._tag) { + case "BaseAddress": + case "EnterpriseAddress": + case "PointerAddress": + prefix = toA.networkId === 0 ? "addr_test" : "addr" + break + case "RewardAccount": + prefix = toA.networkId === 0 ? "stake_test" : "stake" + break + case "ByronAddress": + prefix = "" + break + } + const b = yield* ParseResult.decode(Bech32.FromBytes(prefix))(bytes) + return b + }), + decode: (fromI) => pipe(ParseResult.encode(Bech32.FromBytes())(fromI), Effect.flatMap(ParseResult.decode(FromBytes))) +}) + +/** + * Checks if two addresses are equal. + * + * @since 2.0.0 + * @category utils + */ +export const equals = (a: Address, b: Address): boolean => { + if (a._tag !== b._tag) { + return false + } + switch (a._tag) { + case "BaseAddress": + return BaseAddress.equals(a, b as BaseAddress.BaseAddress) + case "EnterpriseAddress": + return EnterpriseAddress.equals(a, b as EnterpriseAddress.EnterpriseAddress) + case "PointerAddress": + return PointerAddress.equals(a, b as PointerAddress.PointerAddress) + case "RewardAccount": + return RewardAccount.equals(a, b as RewardAccount.RewardAccount) + case "ByronAddress": + return false + } +} + +/** + * FastCheck generator for addresses. + * + * @since 2.0.0 + * @category testing + */ +export const generator = FastCheck.oneof( + BaseAddress.generator, + EnterpriseAddress.generator, + PointerAddress.generator, + RewardAccount.generator +) + +/** + * Codec utilities for addresses. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bech32: FromBech32, + hex: FromHex, + bytes: FromBytes + }, + AddressError +) diff --git a/packages/evolution/src/AddressDetails.ts b/packages/evolution/src/AddressDetails.ts new file mode 100644 index 00000000..a9b40e73 --- /dev/null +++ b/packages/evolution/src/AddressDetails.ts @@ -0,0 +1,82 @@ +import { Data, Effect, ParseResult, Schema } from "effect" + +import * as Address from "./Address.js" +import * as _Bech32 from "./Bech32.js" +import * as Bytes from "./Bytes.js" +import * as _Codec from "./Codec.js" +import * as NetworkId from "./NetworkId.js" + +export class AddressDetailsError extends Data.TaggedError("AddressDetailsError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Extended address information with both structured data and serialized formats + * Contains the address structure and its serialized representations + * + * @since 2.0.0 + * @category model + */ + +/** + * Pointer address with payment credential and pointer to stake registration + * + * @since 2.0.0 + * @category schemas + */ +export class AddressDetails extends Schema.TaggedClass("AddressDetails")("AddressDetails", { + networkId: NetworkId.NetworkId, + type: Schema.Union( + Schema.Literal("BaseAddress"), + Schema.Literal("EnterpriseAddress"), + Schema.Literal("PointerAddress"), + Schema.Literal("RewardAccount"), + Schema.Literal("ByronAddress") + ), + address: Address.Address, + bech32: _Bech32.Bech32Schema, + hex: Bytes.HexSchema +}) {} + +export const FromBech32 = Schema.transformOrFail(Schema.typeSchema(_Bech32.Bech32Schema), AddressDetails, { + strict: true, + encode: (_, __, ___, toA) => ParseResult.succeed(toA.bech32), + decode: (_, __, ___, fromA) => + Effect.gen(function* () { + const address = yield* ParseResult.decode(Address.FromBech32)(fromA) + const hex = yield* ParseResult.encode(Address.FromHex)(address) + return new AddressDetails({ + networkId: address.networkId, + type: address._tag, + address, + bech32: fromA, + hex + }) + }) +}) + +export const FromHex = Schema.transformOrFail(Bytes.HexSchema, AddressDetails, { + strict: true, + encode: (_, __, ___, toA) => ParseResult.succeed(toA.hex), + decode: (_, __, ___, fromA) => + Effect.gen(function* () { + const address = yield* ParseResult.decode(Address.FromHex)(fromA) + const bech32 = yield* ParseResult.encode(Address.FromBech32)(address) + return new AddressDetails({ + networkId: address.networkId, + type: address._tag, + address, + bech32, + hex: fromA + }) + }) +}) + +export const Codec = _Codec.createEncoders( + { + bech32: FromBech32, + hex: FromHex + }, + AddressDetailsError +) diff --git a/packages/evolution/src/AddressTag.ts b/packages/evolution/src/AddressTag.ts new file mode 100644 index 00000000..662e2ce4 --- /dev/null +++ b/packages/evolution/src/AddressTag.ts @@ -0,0 +1,63 @@ +import { Data } from "effect" + +/** + * @since 2.0.0 + * @category model + */ +export class AddressTagError extends Data.TaggedError("AddressTagError")<{ + message: string + cause?: unknown +}> {} + +/** + * Address header kind - used to determine the type of address from its header + * Following CIP-0019 address types + * + * @since 2.0.0 + * @category model + */ +export type AddressTag = "Base" | "Enterprise" | "Pointer" | "Reward" | "Byron" + +// /** +// * Get address kind from address string +// * +// * @since 2.0.0 +// * @category transformation +// */ +// export const fromBech32 = ( +// bech32Address: string, +// ): Effect.Effect => +// Effect.map(Header.fromBech32(bech32Address), (header) => fromHeader(header)); + +// /** +// * Get address tag from header byte +// * Shifts the header byte to the right by 4 bits to isolate the address type +// * +// * @since 2.0.0 +// * @category transformation +// */ +// export const fromHeader = (header: number): AddressTag => { +// const addressType = header >> 4; +// switch (addressType) { +// case 0b0000: +// case 0b0001: +// case 0b0010: +// case 0b0011: +// return "Base"; +// case 0b0100: +// case 0b0101: +// return "Pointer"; +// case 0b0110: +// case 0b0111: +// return "Enterprise"; +// case 0b1000: +// return "Byron"; +// case 0b1110: +// case 0b1111: +// return "Reward"; +// default: +// throw new AddressTagError({ +// message: `Unknown address header: ${header}`, +// }); +// } +// }; diff --git a/packages/evolution/src/Anchor.ts b/packages/evolution/src/Anchor.ts new file mode 100644 index 00000000..69819865 --- /dev/null +++ b/packages/evolution/src/Anchor.ts @@ -0,0 +1,134 @@ +import { Data, Effect, FastCheck, ParseResult, pipe, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as Bytes32 from "./Bytes32.js" +import * as CBOR from "./CBOR.js" +import { createEncoders } from "./Codec.js" +import * as Url from "./Url.js" + +/** + * Error class for Anchor related operations. + * + * @since 2.0.0 + * @category errors + */ +export class AnchorError extends Data.TaggedError("AnchorError")<{ + message?: string + reason?: "InvalidStructure" | "InvalidUrl" | "InvalidHash" +}> {} + +/** + * Schema for Anchor representing an anchor with URL and data hash. + * anchor = [anchor_url: url, anchor_data_hash: Bytes32] + * + * @since 2.0.0 + * @category model + */ +export class Anchor extends Schema.TaggedClass()("Anchor", { + anchorUrl: Url.Url, + anchorDataHash: Bytes32.HexSchema +}) {} + +/** + * CDDL schema for Anchor as tuple structure. + * anchor = [anchor_url: url, anchor_data_hash: Bytes32] + * + * @since 2.0.0 + * @category schemas + */ +export const FromCDDL = Schema.transformOrFail(Schema.Tuple(CBOR.Text, CBOR.ByteArray), Schema.typeSchema(Anchor), { + strict: true, + encode: (toA) => + pipe( + ParseResult.encode(Bytes32.FromBytes)(toA.anchorDataHash), + Effect.map((anchorDataHash) => [toA.anchorUrl, anchorDataHash] as const) + ), + decode: ([anchorUrl, anchorDataHash]) => + pipe( + ParseResult.decode(Bytes32.FromBytes)(anchorDataHash), + Effect.map( + (anchorDataHash) => + new Anchor({ + anchorUrl: Url.make(anchorUrl), + anchorDataHash + }) + ) + ) +}) + +/** + * CBOR bytes transformation schema for Anchor. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + FromCDDL // CBOR โ†’ Anchor + ) + +/** + * CBOR hex transformation schema for Anchor. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ Anchor + ) + +/** + * Create an Anchor from a URL string and hash string. + * + * @since 2.0.0 + * @category constructors + */ +export const make = (anchorUrl: string, anchorDataHash: string): Anchor => + new Anchor({ + anchorUrl: Url.make(anchorUrl), + anchorDataHash + }) + +/** + * Check if two Anchor instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (self: Anchor, that: Anchor): boolean => { + if (self.anchorUrl !== that.anchorUrl) return false + if (self.anchorDataHash.length !== that.anchorDataHash.length) return false + for (let i = 0; i < self.anchorDataHash.length; i++) { + if (self.anchorDataHash[i] !== that.anchorDataHash[i]) return false + } + return true +} + +/** + * FastCheck generator for Anchor instances. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.record({ + anchorUrl: Url.generator, + anchorDataHash: FastCheck.uint8Array({ minLength: 32, maxLength: 32 }) +}).map( + ({ anchorDataHash, anchorUrl }) => + new Anchor({ + anchorUrl, + anchorDataHash: Bytes.Codec.Decode.bytes(anchorDataHash) + }) +) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options) + }, + AnchorError + ) diff --git a/packages/evolution/src/AssetName.ts b/packages/evolution/src/AssetName.ts new file mode 100644 index 00000000..0a67ffbb --- /dev/null +++ b/packages/evolution/src/AssetName.ts @@ -0,0 +1,81 @@ +import { Data, FastCheck, Schema } from "effect" + +import * as Bytes32 from "./Bytes32.js" +import { createEncoders } from "./Codec.js" + +/** + * Error class for AssetName related operations. + * + * @since 2.0.0 + * @category errors + */ +export class AssetNameError extends Data.TaggedError("AssetNameError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for AssetName representing a native asset identifier. + * Asset names are limited to 32 bytes (0-64 hex characters). + * + * @since 2.0.0 + * @category model + */ +export const AssetName = Bytes32.VariableHexSchema.pipe(Schema.brand("AssetName")).annotations({ + identifier: "AssetName" +}) + +export type AssetName = typeof AssetName.Type + +/** + * Schema for encoding/decoding AssetName as bytes. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = Schema.compose(Bytes32.FromVariableBytes, AssetName).annotations({ + identifier: "AssetName.Bytes" +}) + +/** + * Schema for encoding/decoding AssetName as hex strings. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = Schema.compose(Bytes32.VariableHexSchema, AssetName).annotations({ + identifier: "AssetName.Hex" +}) + +/** + * Check if two AssetName instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: AssetName, b: AssetName): boolean => a === b + +/** + * Generate a random AssetName. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.uint8Array({ + minLength: 0, + maxLength: Bytes32.Bytes32_BYTES_LENGTH +}).map((bytes) => Codec.Decode.bytes(bytes)) + +/** + * Codec utilities for AssetName encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + AssetNameError +) diff --git a/packages/evolution/src/AuxiliaryDataHash.ts b/packages/evolution/src/AuxiliaryDataHash.ts new file mode 100644 index 00000000..cbadd341 --- /dev/null +++ b/packages/evolution/src/AuxiliaryDataHash.ts @@ -0,0 +1,84 @@ +/** + * Auxiliary Data Hash module - provides an alias for Bytes32 specialized for auxiliary data hashing. + * + * In Cardano, auxiliary_data_hash = Bytes32, representing a 32-byte hash + * used for auxiliary data (metadata) attached to transactions. + * + * @since 2.0.0 + */ + +import { Data, FastCheck, pipe, Schema } from "effect" + +import * as Bytes32 from "./Bytes32.js" +import { createEncoders } from "./Codec.js" + +/** + * Error class for AuxiliaryDataHash related operations. + * + * @since 2.0.0 + * @category errors + */ +export class AuxiliaryDataHashError extends Data.TaggedError("AuxiliaryDataHashError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for AuxiliaryDataHash representing auxiliary data hashes. + * auxiliary_data_hash = Bytes32 + * + * @since 2.0.0 + * @category schemas + */ +export const AuxiliaryDataHash = pipe(Bytes32.HexSchema, Schema.brand("AuxiliaryDataHash")).annotations({ + identifier: "AuxiliaryDataHash" +}) + +export type AuxiliaryDataHash = typeof AuxiliaryDataHash.Type + +export const BytesSchema = Schema.compose( + Bytes32.FromBytes, // Uint8Array -> hex string + AuxiliaryDataHash // hex string -> AuxiliaryDataHash +).annotations({ + identifier: "AuxiliaryDataHash.Bytes" +}) + +export const HexSchema = Schema.compose( + Bytes32.HexSchema, // string -> hex string + AuxiliaryDataHash // hex string -> AuxiliaryDataHash +).annotations({ + identifier: "AuxiliaryDataHash.Hex" +}) + +/** + * Check if two AuxiliaryDataHash instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: AuxiliaryDataHash, b: AuxiliaryDataHash): boolean => a === b + +/** + * Generate a random AuxiliaryDataHash. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.uint8Array({ + minLength: Bytes32.Bytes32_BYTES_LENGTH, + maxLength: Bytes32.Bytes32_BYTES_LENGTH +}).map((bytes) => Codec.Decode.bytes(bytes)) + +/** + * Codec utilities for AuxiliaryDataHash encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bytes: BytesSchema, + hex: HexSchema + }, + AuxiliaryDataHashError +) diff --git a/packages/evolution/src/BaseAddress.ts b/packages/evolution/src/BaseAddress.ts new file mode 100644 index 00000000..af8576bc --- /dev/null +++ b/packages/evolution/src/BaseAddress.ts @@ -0,0 +1,133 @@ +import { Data, Effect, FastCheck, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as Bytes57 from "./Bytes57.js" +import * as _Codec from "./Codec.js" +import * as Credential from "./Credential.js" +import * as KeyHash from "./KeyHash.js" +import * as NetworkId from "./NetworkId.js" +import * as ScriptHash from "./ScriptHash.js" + +export class BaseAddressError extends Data.TaggedError("BaseAddressError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Base address with both payment and staking credentials + * + * @since 2.0.0 + * @category schemas + */ +export class BaseAddress extends Schema.TaggedClass("BaseAddress")("BaseAddress", { + networkId: NetworkId.NetworkId, + paymentCredential: Credential.Credential, + stakeCredential: Credential.Credential +}) { + [Symbol.for("nodejs.util.inspect.custom")]() { + return { + _tag: "BaseAddress", + networkId: this.networkId, + paymentCredential: this.paymentCredential, + stakeCredential: this.stakeCredential + } + } +} + +export const FromBytes = Schema.transformOrFail(Bytes57.BytesSchema, BaseAddress, { + strict: true, + encode: (_, __, ___, toA) => + Effect.gen(function* () { + const paymentBit = toA.paymentCredential._tag === "KeyHash" ? 0 : 1 + const stakeBit = toA.stakeCredential._tag === "KeyHash" ? 0 : 1 + const header = (0b00 << 6) | (stakeBit << 5) | (paymentBit << 4) | (toA.networkId & 0b00001111) + const result = new Uint8Array(57) + result[0] = header + // const paymentCredentialBytes = Bytes.Decode.hex( + // toA.paymentCredential.hash, + // ); + const paymentCredentialBytes = yield* ParseResult.decode(Bytes.FromHex)(toA.paymentCredential.hash) + result.set(paymentCredentialBytes, 1) + const stakeCredentialBytes = yield* ParseResult.decode(Bytes.FromHex)(toA.stakeCredential.hash) + result.set(stakeCredentialBytes, 29) + return yield* ParseResult.succeed(result) + }), + decode: (fromI, options, ast, fromA) => + Effect.gen(function* () { + const header = fromA[0] + // Extract network ID from the lower 4 bits + const networkId = header & 0b00001111 + // Extract address type from the upper 4 bits (bits 4-7) + const addressType = header >> 4 + // Script payment, Script stake + const isPaymentKey = (addressType & 0b0001) === 0 + const paymentCredential: Credential.Credential = isPaymentKey + ? { + _tag: "KeyHash", + hash: yield* ParseResult.decode(KeyHash.FromBytes)(fromA.slice(1, 29)) + } + : { + _tag: "ScriptHash", + hash: yield* ParseResult.decode(ScriptHash.BytesSchema)(fromA.slice(1, 29)) + } + const isStakeKey = (addressType & 0b0010) === 0 + const stakeCredential: Credential.Credential = isStakeKey + ? { + _tag: "KeyHash", + hash: yield* ParseResult.decode(KeyHash.FromBytes)(fromA.slice(29, 57)) + } + : { + _tag: "ScriptHash", + hash: yield* ParseResult.decode(ScriptHash.BytesSchema)(fromA.slice(29, 57)) + } + return yield* ParseResult.decode(BaseAddress)({ + _tag: "BaseAddress", + networkId, + paymentCredential, + stakeCredential + }) + }) +}).annotations({ + identifier: "BaseAddress.FromBytes" +}) + +export const FromHex = Schema.compose(Bytes.FromHex, FromBytes).annotations({ + identifier: "BaseAddress.FromHex" +}) + +/** + * Check if two BaseAddress instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: BaseAddress, b: BaseAddress): boolean => { + return ( + a.networkId === b.networkId && + Credential.equals(a.paymentCredential, b.paymentCredential) && + Credential.equals(a.stakeCredential, b.stakeCredential) + ) +} + +/** + * Generate a random BaseAddress. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.tuple(NetworkId.generator, Credential.generator, Credential.generator).map( + ([networkId, paymentCredential, stakeCredential]) => + new BaseAddress({ + networkId, + paymentCredential, + stakeCredential + }) +) + +export const Codec = _Codec.createEncoders( + { + hex: FromHex, + bytes: FromBytes + }, + BaseAddressError +) diff --git a/packages/evolution/src/Bech32.ts b/packages/evolution/src/Bech32.ts new file mode 100644 index 00000000..cea33d56 --- /dev/null +++ b/packages/evolution/src/Bech32.ts @@ -0,0 +1,28 @@ +import { bech32 } from "@scure/base" +import { Data, Effect, ParseResult, Schema } from "effect" + +/** + * @since 2.0.0 + * @category model + */ +export class Bech32Error extends Data.TaggedError("Bech32Error")<{ + message: string + cause?: unknown +}> {} + +export const Bech32Schema = Schema.String.pipe(Schema.brand("Bech32")) +export type Bech32 = typeof Bech32Schema.Type + +export const FromBytes = (prefix: string = "addr") => + Schema.transformOrFail(Schema.Uint8ArrayFromSelf, Bech32Schema, { + strict: true, + encode: (_, __, ast, toA) => + Effect.try({ + try: () => bech32.decodeToBytes(toA).bytes, + catch: () => new ParseResult.Type(ast, toA, ` ${toA} is not a valid Bech32 address`) + }), + decode: (fromA, options, ast, fromI) => { + const words = bech32.toWords(fromI) + return ParseResult.succeed(Bech32Schema.make(bech32.encode(prefix, words, false))) + } + }) diff --git a/packages/evolution/src/BigInt.ts b/packages/evolution/src/BigInt.ts new file mode 100644 index 00000000..5f0354f6 --- /dev/null +++ b/packages/evolution/src/BigInt.ts @@ -0,0 +1,140 @@ +import { Data, Schema } from "effect" + +/** + * Error class for BigInt related operations. + * + * @since 2.0.0 + * @category errors + */ +export class BigIntError extends Data.TaggedError("BigIntError")<{ + message?: string + reason?: "InvalidFormat" | "OutOfRange" +}> {} + +/** + * BigUInt schema based on Conway CDDL specification + * + * CDDL: big_uint = #6.2(bounded_bytes) + * + * @since 2.0.0 + * @category schemas + */ +export const BigUIntSchema = Schema.TaggedStruct("BigUInt", { + bytes: Schema.Uint8ArrayFromSelf +}) + +/** + * Type alias for BigUInt. + * + * @since 2.0.0 + * @category model + */ +export type BigUInt = typeof BigUIntSchema.Type + +/** + * BigNInt schema based on Conway CDDL specification + * + * CDDL: big_nint = #6.3(bounded_bytes) + * + * @since 2.0.0 + * @category schemas + */ +export const BigNIntSchema = Schema.TaggedStruct("BigNInt", { + bytes: Schema.Uint8ArrayFromSelf +}) + +/** + * Type alias for BigNInt. + * + * @since 2.0.0 + * @category model + */ +export type BigNInt = typeof BigNIntSchema.Type + +/** + * BigInt schema based on Conway CDDL specification + * + * CDDL: big_int = int/ big_uint/ big_nint + * + * @since 2.0.0 + * @category schemas + */ +export const BigIntSchema = Schema.Union( + // int - regular JavaScript number for small integers + Schema.TaggedStruct("Int", { + value: Schema.Number + }), + // big_uint - positive big integers + BigUIntSchema, + // big_nint - negative big integers + BigNIntSchema +) + +/** + * Type alias for BigInt. + * + * @since 2.0.0 + * @category model + */ +export type BigInt = typeof BigIntSchema.Type + +/** + * Creates an integer value + * + * @since 2.0.0 + * @category constructors + */ +export const int = (value: number): BigInt => ({ + _tag: "Int", + value +}) + +/** + * Creates a big unsigned integer from bytes + * + * @since 2.0.0 + * @category constructors + */ +export const bigUInt = (bytes: Uint8Array): BigInt => ({ + _tag: "BigUInt", + bytes +}) + +/** + * Creates a big negative integer from bytes + * + * @since 2.0.0 + * @category constructors + */ +export const bigNInt = (bytes: Uint8Array): BigInt => ({ + _tag: "BigNInt", + bytes +}) + +/** + * Pattern matching helper for BigInt types + * + * @since 2.0.0 + * @category utilities + */ +export const match = ( + bigInt: BigInt, + cases: { + Int: (value: number) => T + BigUInt: (bytes: Uint8Array) => T + BigNInt: (bytes: Uint8Array) => T + } +): T => { + switch (bigInt._tag) { + case "Int": + return cases.Int(bigInt.value) + case "BigUInt": + return cases.BigUInt(bigInt.bytes) + case "BigNInt": + return cases.BigNInt(bigInt.bytes) + default: + throw new BigIntError({ + message: `Unknown BigInt variant: ${(bigInt as any)._tag}` + }) + } +} diff --git a/packages/evolution/src/Block.ts b/packages/evolution/src/Block.ts new file mode 100644 index 00000000..12b64e10 --- /dev/null +++ b/packages/evolution/src/Block.ts @@ -0,0 +1,42 @@ +import { Schema } from "effect" + +import * as Header from "./Header.js" +import * as TransactionBody from "./TransactionBody.js" +// import * as TransactionWitnessSet from "./TransactionWitnessSet.js"; +// import * as AuxiliaryData from "./AuxiliaryData.js"; +import * as TransactionIndex from "./TransactionIndex.js" + +/** + * Block based on Conway CDDL specification + * + * ``` + * CDDL: block = + * [ header + * , transaction_bodies : [* transaction_body] + * , transaction_witness_sets : [* transaction_witness_set] + * , auxiliary_data_set : {* transaction_index => auxiliary_data} + * , invalid_transactions : [* transaction_index] + * ] + * ``` + * + * Valid blocks must also satisfy the following two constraints: + * 1. the length of transaction_bodies and transaction_witness_sets + * must be the same + * 2. every transaction_index must be strictly smaller than the + * length of transaction_bodies + * + * @since 2.0.0 + * @category model + */ +export class BlockClass extends Schema.TaggedClass()("Block", { + header: Header.Header, + transactionBodies: Schema.Array(TransactionBody.TransactionBody), + // transactionWitnessSets: Schema.Array(TransactionWitnessSet.TransactionWitnessSet), + // auxiliaryDataSet: Schema.Record({ + // key: TransactionIndex.TransactionIndexSchema, + // value: AuxiliaryData.AuxiliaryData, + // }), + invalidTransactions: Schema.Array(TransactionIndex.TransactionIndexSchema) +}) {} + +export type Block = Schema.Schema.Type diff --git a/packages/evolution/src/BlockBodyHash.ts b/packages/evolution/src/BlockBodyHash.ts new file mode 100644 index 00000000..a7aa5b53 --- /dev/null +++ b/packages/evolution/src/BlockBodyHash.ts @@ -0,0 +1,76 @@ +import { Data, FastCheck, pipe, Schema } from "effect" + +import * as Bytes32 from "./Bytes32.js" +import { createEncoders } from "./Codec.js" + +/** + * Error class for BlockBodyHash related operations. + * + * @since 2.0.0 + * @category errors + */ +export class BlockBodyHashError extends Data.TaggedError("BlockBodyHashError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for BlockBodyHash representing a block body hash. + * block_body_hash = Bytes32 + * Follows the Conway-era CDDL specification. + * + * @since 2.0.0 + * @category schemas + */ +export const BlockBodyHash = pipe(Bytes32.HexSchema, Schema.brand("BlockBodyHash")).annotations({ + identifier: "BlockBodyHash" +}) + +export type BlockBodyHash = typeof BlockBodyHash.Type + +export const FromBytes = Schema.compose( + Bytes32.FromBytes, // Uint8Array -> hex string + BlockBodyHash // hex string -> BlockBodyHash +).annotations({ + identifier: "BlockBodyHash.Bytes" +}) + +export const FromHex = Schema.compose( + Bytes32.HexSchema, // string -> hex string + BlockBodyHash // hex string -> BlockBodyHash +).annotations({ + identifier: "BlockBodyHash.Hex" +}) + +/** + * Check if two BlockBodyHash instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: BlockBodyHash, b: BlockBodyHash): boolean => a === b + +/** + * Generate a random BlockBodyHash. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.uint8Array({ + minLength: Bytes32.Bytes32_BYTES_LENGTH, + maxLength: Bytes32.Bytes32_BYTES_LENGTH +}).map((bytes) => Codec.Decode.bytes(bytes)) + +/** + * Codec utilities for BlockBodyHash encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + BlockBodyHashError +) diff --git a/packages/evolution/src/BlockHeaderHash.ts b/packages/evolution/src/BlockHeaderHash.ts new file mode 100644 index 00000000..f741c3c4 --- /dev/null +++ b/packages/evolution/src/BlockHeaderHash.ts @@ -0,0 +1,76 @@ +import { Data, FastCheck, pipe, Schema } from "effect" + +import * as Bytes32 from "./Bytes32.js" +import { createEncoders } from "./Codec.js" + +/** + * Error class for BlockHeaderHash related operations. + * + * @since 2.0.0 + * @category errors + */ +export class BlockHeaderHashError extends Data.TaggedError("BlockHeaderHashError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for BlockHeaderHash representing a block header hash. + * block_header_hash = Bytes32 + * Follows the Conway-era CDDL specification. + * + * @since 2.0.0 + * @category schemas + */ +export const BlockHeaderHash = pipe(Bytes32.HexSchema, Schema.brand("BlockHeaderHash")).annotations({ + identifier: "BlockHeaderHash" +}) + +export type BlockHeaderHash = typeof BlockHeaderHash.Type + +export const FromBytes = Schema.compose( + Bytes32.FromBytes, // Uint8Array -> hex string + BlockHeaderHash // hex string -> BlockHeaderHash +).annotations({ + identifier: "BlockHeaderHash.Bytes" +}) + +export const FromHex = Schema.compose( + Bytes32.HexSchema, // string -> hex string + BlockHeaderHash // hex string -> BlockHeaderHash +).annotations({ + identifier: "BlockHeaderHash.Hex" +}) + +/** + * Check if two BlockHeaderHash instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: BlockHeaderHash, b: BlockHeaderHash): boolean => a === b + +/** + * Generate a random BlockHeaderHash. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.uint8Array({ + minLength: Bytes32.Bytes32_BYTES_LENGTH, + maxLength: Bytes32.Bytes32_BYTES_LENGTH +}).map((bytes) => Codec.Decode.bytes(bytes)) + +/** + * Codec utilities for BlockHeaderHash encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + BlockHeaderHashError +) diff --git a/packages/evolution/src/BoundedBytes.ts b/packages/evolution/src/BoundedBytes.ts new file mode 100644 index 00000000..3be40c3b --- /dev/null +++ b/packages/evolution/src/BoundedBytes.ts @@ -0,0 +1,26 @@ +import { Schema } from "effect" + +/** + * BoundedBytes schema based on Conway CDDL specification + * + * CDDL: bounded_bytes = bytes .size (0 .. 64) + * + * The real bounded_bytes does not have this limit. it instead has + * a different limit which cannot be expressed in CDDL. + * + * The limit is as follows: + * - bytes with a definite-length encoding are limited to size 0..64 + * - for bytes with an indefinite-length CBOR encoding, each chunk is + * limited to size 0..64 + * ( reminder: in CBOR, the indefinite-length encoding of + * bytestrings consists of a token #2.31 followed by a sequence + * of definite-length encoded bytestrings and a stop code ) + * + * @since 2.0.0 + * @category schemas + */ +export const BoundedBytesSchema = Schema.Uint8ArrayFromSelf.pipe( + Schema.filter((bytes) => bytes.length >= 0 && bytes.length <= 64, { + message: () => "BoundedBytes must be between 0 and 64 bytes in length" + }) +) diff --git a/packages/evolution/src/ByronAddress.ts b/packages/evolution/src/ByronAddress.ts new file mode 100644 index 00000000..3e697f2f --- /dev/null +++ b/packages/evolution/src/ByronAddress.ts @@ -0,0 +1,37 @@ +import { Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as NetworkId from "./NetworkId.js" + +/** + * Byron legacy address format + * + * @since 2.0.0 + * @category schemas + */ +export class ByronAddress extends Schema.TaggedClass("ByronAddress")("ByronAddress", { + networkId: NetworkId.NetworkId, + bytes: Bytes.HexSchema +}) { + [Symbol.for("nodejs.util.inspect.custom")]() { + return { + _tag: "ByronAddress", + networkId: this.networkId, + bytes: this.bytes + } + } +} + +// /** +// * Byron legacy address has limited support +// * @since 2.0.0 +// */ +export const BytesSchema = Schema.transform(Schema.Uint8ArrayFromSelf, ByronAddress, { + strict: true, + encode: (_, toA) => Bytes.Codec.Encode.bytes(toA.bytes), + decode: (_, fromA) => + new ByronAddress({ + networkId: NetworkId.NetworkId.make(0), + bytes: Bytes.Codec.Decode.bytes(fromA) + }) +}) diff --git a/packages/evolution/src/Bytes.ts b/packages/evolution/src/Bytes.ts new file mode 100644 index 00000000..9ca73a8c --- /dev/null +++ b/packages/evolution/src/Bytes.ts @@ -0,0 +1,203 @@ +import { Data, Schema } from "effect" + +import * as _Codec from "./Codec.js" + +export class BytesError extends Data.TaggedError("BytesError")<{ + message?: string + cause?: unknown +}> {} + +export const isHex = (input: string): boolean => { + const len = input.length + if (len === 0) return false + + if (len % 2 !== 0) return false + + for (let i = 0; i < len; i++) { + const cc = input.charCodeAt(i) + if ( + !( + (cc >= 48 && cc <= 57) || // '0'โ€“'9' + (cc >= 65 && cc <= 70) || // 'A'โ€“'F' + (cc >= 97 && cc <= 102) // 'a'โ€“'f' + ) + ) { + return false + } + } + return true +} + +/** + * Lenient version of isHex that allows empty strings. + * Useful for PlutusData where empty byte arrays are valid. + * + * @since 2.0.0 + * @category predicates + */ +export const isHexLenient = (input: string): boolean => { + const len = input.length + + // Empty strings are valid (for empty byte arrays) + if (len === 0) return true + + // Must have even length + if (len % 2 !== 0) return false + + // Check each character is valid hex + for (let i = 0; i < len; i++) { + const cc = input.charCodeAt(i) + if ( + !( + (cc >= 48 && cc <= 57) || // '0'โ€“'9' + (cc >= 65 && cc <= 70) || // 'A'โ€“'F' + (cc >= 97 && cc <= 102) // 'a'โ€“'f' + ) + ) { + return false + } + } + return true +} + +const hexes = /* @__PURE__ */ Array.from({ length: 256 }, (_, i) => i.toString(16).padStart(2, "0")) + +// We use optimized technique to convert hex string to byte array +const asciis = { _0: 48, _9: 57, _A: 65, _F: 70, _a: 97, _f: 102 } as const + +/** + * Converts an ASCII character code to its base16 (hexadecimal) value. + * For use with pre-validated hex strings. + */ +const asciiToBase16 = (char: number): number => { + if (char >= asciis._0 && char <= asciis._9) return char - asciis._0 + if (char >= asciis._A && char <= asciis._F) return char - (asciis._A - 10) + if (char >= asciis._a && char <= asciis._f) return char - (asciis._a - 10) + // Since Hex is already validated, this should never happen + // but we return 0 to satisfy TypeScript + return 0 +} + +export const HexSchema = Schema.String.pipe( + Schema.filter((a) => isHex(a)), + Schema.annotations({ + message: (issue) => `${issue.actual} must be a valid hex string (0-9, A-F, a-f) and cannot be empty`, + identifier: "Bytes.Hex" + }) +) + +export const FromHex = Schema.transform(HexSchema, Schema.Uint8ArrayFromSelf, { + strict: true, + encode: (toA) => { + let hex = "" + for (let i = 0; i < toA.length; i++) { + hex += hexes[toA[i]] + } + return hex + }, + decode: (fromA) => { + const array = new Uint8Array(fromA.length / 2) + for (let ai = 0, hi = 0; ai < array.length; ai++, hi += 2) { + const n1 = asciiToBase16(fromA.charCodeAt(hi)) + const n2 = asciiToBase16(fromA.charCodeAt(hi + 1)) + array[ai] = n1 * 16 + n2 + } + return array + } +}).annotations({ + identifier: "Bytes.FromHex" +}) + +export const FromBytes = Schema.transform(Schema.Uint8ArrayFromSelf, HexSchema, { + strict: true, + decode: (toA) => { + let hex = "" + for (let i = 0; i < toA.length; i++) { + hex += hexes[toA[i]] + } + return hex + }, + encode: (fromA) => { + const array = new Uint8Array(fromA.length / 2) + for (let ai = 0, hi = 0; ai < array.length; ai++, hi += 2) { + array[ai] = parseInt(fromA.slice(hi, hi + 2), 16) + } + return array + } +}).annotations({ + identifier: "Bytes.FromBytes" +}) + +/** + * Lenient hex schema that allows empty strings. + * Useful for PlutusData where empty byte arrays are valid. + * + * @since 2.0.0 + * @category schemas + */ +export const HexLenientSchema = Schema.String.pipe( + Schema.filter((a) => isHexLenient(a)), + Schema.annotations({ + message: (issue) => `${issue.actual} must be a valid hex string (0-9, A-F, a-f) or empty string`, + identifier: "Bytes.HexLenient" + }) +) + +export const FromHexLenient = Schema.transform(HexLenientSchema, Schema.Uint8ArrayFromSelf, { + strict: true, + encode: (toA) => { + if (toA.length === 0) return "" + let hex = "" + for (let i = 0; i < toA.length; i++) { + hex += hexes[toA[i]] + } + return hex + }, + decode: (fromA) => { + if (fromA.length === 0) return new Uint8Array(0) + const array = new Uint8Array(fromA.length / 2) + for (let ai = 0, hi = 0; ai < array.length; ai++, hi += 2) { + const n1 = asciiToBase16(fromA.charCodeAt(hi)) + const n2 = asciiToBase16(fromA.charCodeAt(hi + 1)) + array[ai] = n1 * 16 + n2 + } + return array + } +}) + +/** + * Lenient version of FromBytes that allows empty byte arrays. + * Useful for PlutusData where empty byte arrays are valid. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytesLenient = Schema.transform(Schema.Uint8ArrayFromSelf, HexLenientSchema, { + strict: true, + decode: (toA) => { + if (toA.length === 0) return "" + let hex = "" + for (let i = 0; i < toA.length; i++) { + hex += hexes[toA[i]] + } + return hex + }, + encode: (fromA) => { + if (fromA.length === 0) return new Uint8Array(0) + const array = new Uint8Array(fromA.length / 2) + for (let ai = 0, hi = 0; ai < array.length; ai++, hi += 2) { + array[ai] = parseInt(fromA.slice(hi, hi + 2), 16) + } + return array + } +}).annotations({ + identifier: "Bytes.FromBytesLenient" +}) + +export const Codec = _Codec.createEncoders( + { + bytes: FromBytes, + bytesLenient: FromBytesLenient + }, + BytesError +) diff --git a/packages/evolution/src/Bytes16.ts b/packages/evolution/src/Bytes16.ts new file mode 100644 index 00000000..d5323ba2 --- /dev/null +++ b/packages/evolution/src/Bytes16.ts @@ -0,0 +1,36 @@ +import { pipe, Schema } from "effect" + +import * as Bytes from "./Bytes.js" + +export const BYTES_LENGTH = 16 +export const HEX_LENGTH = 32 + +export const BytesSchema = pipe( + Schema.Uint8ArrayFromSelf, + Schema.filter((a) => a.length === BYTES_LENGTH, { + message: (issue) => + `${issue.actual} must be a byte array of length ${BYTES_LENGTH}, but got ${(issue.actual as Uint8Array).length}`, + identifier: "Bytes16.Bytes" + }) +) + +export const HexSchema = pipe( + Bytes.HexSchema, + Schema.filter((a) => a.length === HEX_LENGTH, { + message: (issue) => + `${issue.actual} must be a hex string of length ${HEX_LENGTH}, but got ${(issue.actual as string).length}`, + identifier: "Bytes16.Hex" + }) +) + +export const FromHex = Schema.transform(HexSchema, BytesSchema, { + strict: true, + decode: (toI) => Bytes.Codec.Encode.bytes(toI), + encode: (fromA) => Bytes.Codec.Decode.bytes(fromA) +}) + +export const FromBytes = Schema.transform(BytesSchema, HexSchema, { + strict: true, + encode: (toI) => Bytes.Codec.Encode.bytes(toI), + decode: (fromA) => Bytes.Codec.Decode.bytes(fromA) +}) diff --git a/packages/evolution/src/Bytes29.ts b/packages/evolution/src/Bytes29.ts new file mode 100644 index 00000000..15acb635 --- /dev/null +++ b/packages/evolution/src/Bytes29.ts @@ -0,0 +1,28 @@ +import { pipe, Schema } from "effect" + +import * as Bytes from "./Bytes.js" + +export const BYTES_LENGTH = 29 +export const HEX_LENGTH = 58 + +export const BytesSchema = pipe( + Schema.Uint8ArrayFromSelf, + Schema.filter((a) => a.length === BYTES_LENGTH, { + message: (issue) => `${issue.actual} must be a byte array of length ${BYTES_LENGTH}, but got ${issue.actual}`, + identifier: "Bytes29.Bytes" + }) +) + +export const HexSchema = pipe( + Bytes.HexSchema, + Schema.filter((a) => a.length === HEX_LENGTH, { + message: (issue) => `${issue.actual} must be a hex string of length ${HEX_LENGTH}, but got ${issue.actual}`, + identifier: "Bytes29.Hex" + }) +) + +export const BytesFromHex = Schema.transform(HexSchema, BytesSchema, { + strict: true, + decode: (toI) => Bytes.Codec.Encode.bytes(toI), + encode: (fromA) => Bytes.Codec.Decode.bytes(fromA) +}) diff --git a/packages/evolution/src/Bytes32.ts b/packages/evolution/src/Bytes32.ts new file mode 100644 index 00000000..49d78995 --- /dev/null +++ b/packages/evolution/src/Bytes32.ts @@ -0,0 +1,134 @@ +import { Data, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as _Codec from "./Codec.js" + +export class Bytes32Error extends Data.TaggedError("Bytes32Error")<{ + message?: string + cause?: unknown +}> {} + +// Add constants following the style guide +export const Bytes32_BYTES_LENGTH = 32 +export const Bytes32_HEX_LENGTH = 64 + +/** + * Schema for Bytes32 bytes with 32-byte length validation. + * + * @since 2.0.0 + * @category schemas + */ +export const BytesSchema = Schema.Uint8ArrayFromSelf.pipe( + Schema.filter((a) => a.length === Bytes32_BYTES_LENGTH) +).annotations({ + identifier: "Bytes32.Bytes", + message: (issue) => + `Bytes32 bytes must be exactly ${Bytes32_BYTES_LENGTH} bytes, got ${(issue.actual as Uint8Array).length}` +}) + +/** + * Schema for Bytes32 hex strings with 64-character length validation. + * + * @since 2.0.0 + * @category schemas + */ +export const HexSchema = Bytes.HexSchema.pipe(Schema.filter((a) => a.length === Bytes32_HEX_LENGTH)).annotations({ + identifier: "Bytes32.Hex", + message: (issue) => + `Bytes32 hex must be exactly ${Bytes32_HEX_LENGTH} characters, got ${(issue.actual as string).length}` +}) + +/** + * Schema for variable-length byte arrays from 0 to 32 bytes. + * Useful for asset names and other variable-length data structures. + * + * @since 2.0.0 + * @category schemas + */ +export const VariableBytesSchema = Schema.Uint8ArrayFromSelf.pipe( + Schema.filter((a) => a.length >= 0 && a.length <= Bytes32_BYTES_LENGTH) +).annotations({ + message: (issue) => + `must be a byte array of length 0 to ${Bytes32_BYTES_LENGTH}, but got ${(issue.actual as Uint8Array).length}`, + identifier: "Bytes32.VariableBytes" +}) + +/** + * Schema for variable-length hex strings from 0 to 64 characters (0 to 32 bytes). + * Useful for asset names and other variable-length data structures. + * + * @since 2.0.0 + * @category schemas + */ +export const VariableHexSchema = Bytes.HexSchema.pipe( + Schema.filter((a) => a.length >= 0 && a.length <= Bytes32_HEX_LENGTH) +).annotations({ + message: (issue) => + `must be a hex string of length 0 to ${Bytes32_HEX_LENGTH}, but got ${(issue.actual as string).length}`, + identifier: "Bytes32.VariableHex" +}) + +/** + * Schema transformer for Bytes32 that converts between hex strings and byte arrays. + * Like Bytes.BytesSchema but with Bytes32-specific length validation. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = Schema.transform(BytesSchema, HexSchema, { + strict: true, + decode: (toA) => { + let hex = "" + for (let i = 0; i < toA.length; i++) { + hex += toA[i].toString(16).padStart(2, "0") + } + return hex + }, + encode: (fromA) => { + const array = new Uint8Array(fromA.length / 2) + for (let ai = 0, hi = 0; ai < array.length; ai++, hi += 2) { + array[ai] = parseInt(fromA.slice(hi, hi + 2), 16) + } + return array + } +}) + +/** + * Schema transformer for variable-length data that converts between hex strings and byte arrays. + * Works with 0 to 32 bytes (0 to 64 hex characters). + * + * @since 2.0.0 + * @category schemas + */ +export const FromVariableBytes = Schema.transform(VariableBytesSchema, VariableHexSchema, { + strict: true, + decode: (toA) => { + let hex = "" + for (let i = 0; i < toA.length; i++) { + hex += toA[i].toString(16).padStart(2, "0") + } + return hex + }, + encode: (fromA) => { + if (fromA.length === 0) return new Uint8Array(0) + const array = new Uint8Array(fromA.length / 2) + for (let ai = 0, hi = 0; ai < array.length; ai++, hi += 2) { + array[ai] = parseInt(fromA.slice(hi, hi + 2), 16) + } + return array + } +}) + +/** + * Codec for Bytes32 encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = _Codec.createEncoders( + { + bytes: FromBytes, + variableBytes: FromVariableBytes + }, + Bytes32Error +) diff --git a/packages/evolution/src/Bytes4.ts b/packages/evolution/src/Bytes4.ts new file mode 100644 index 00000000..e8f34c94 --- /dev/null +++ b/packages/evolution/src/Bytes4.ts @@ -0,0 +1,34 @@ +import { pipe, Schema } from "effect" + +import * as Bytes from "./Bytes.js" + +export const BYTES_LENGTH = 4 +export const HEX_LENGTH = 8 + +export const BytesSchema = pipe( + Schema.Uint8ArrayFromSelf, + Schema.filter((a) => a.length === BYTES_LENGTH, { + message: (issue) => `${issue.actual} must be a byte array of length ${BYTES_LENGTH}, but got ${issue.actual}`, + identifier: "Bytes4.Bytes" + }) +) + +export const HexSchema = pipe( + Bytes.HexSchema, + Schema.filter((a) => a.length === HEX_LENGTH, { + message: (issue) => `${issue.actual} must be a hex string of length ${HEX_LENGTH}, but got ${issue.actual}`, + identifier: "Bytes4.Hex" + }) +) + +export const FromHex = Schema.transform(HexSchema, BytesSchema, { + strict: true, + decode: (toI) => Bytes.Codec.Encode.bytes(toI), + encode: (fromA) => Bytes.Codec.Decode.bytes(fromA) +}) + +export const FromBytes = Schema.transform(BytesSchema, HexSchema, { + strict: true, + encode: (toI) => Bytes.Codec.Encode.bytes(toI), + decode: (fromA) => Bytes.Codec.Decode.bytes(fromA) +}) diff --git a/packages/evolution/src/Bytes448.ts b/packages/evolution/src/Bytes448.ts new file mode 100644 index 00000000..837fc877 --- /dev/null +++ b/packages/evolution/src/Bytes448.ts @@ -0,0 +1,34 @@ +import { pipe, Schema } from "effect" + +import * as Bytes from "./Bytes.js" + +export const BYTES_LENGTH = 448 +export const HEX_LENGTH = 896 + +export const BytesSchema = pipe( + Schema.Uint8ArrayFromSelf, + Schema.filter((a) => a.length === BYTES_LENGTH, { + message: (issue) => `${issue.actual} must be a byte array of length ${BYTES_LENGTH}, but got ${issue.actual}`, + identifier: "Bytes448.Bytes" + }) +) + +export const HexSchema = pipe( + Bytes.HexSchema, + Schema.filter((a) => a.length === HEX_LENGTH, { + message: (issue) => `${issue.actual} must be a hex string of length ${HEX_LENGTH}, but got ${issue.actual}`, + identifier: "Bytes448.Hex" + }) +) + +export const FromHex = Schema.transform(HexSchema, BytesSchema, { + strict: true, + decode: (toI) => Bytes.Codec.Encode.bytes(toI), + encode: (fromA) => Bytes.Codec.Decode.bytes(fromA) +}) + +export const FromBytes = Schema.transform(BytesSchema, HexSchema, { + strict: true, + encode: (toI) => Bytes.Codec.Encode.bytes(toI), + decode: (fromA) => Bytes.Codec.Decode.bytes(fromA) +}) diff --git a/packages/evolution/src/Bytes57.ts b/packages/evolution/src/Bytes57.ts new file mode 100644 index 00000000..405db739 --- /dev/null +++ b/packages/evolution/src/Bytes57.ts @@ -0,0 +1,28 @@ +import { pipe, Schema } from "effect" + +import * as Bytes from "./Bytes.js" + +export const BYTES_LENGTH = 57 +export const HEX_LENGTH = 114 + +export const BytesSchema = pipe( + Schema.Uint8ArrayFromSelf, + Schema.filter((a) => a.length === BYTES_LENGTH, { + message: (issue) => `${issue.actual} must be a byte array of length ${BYTES_LENGTH}, but got ${issue.actual}`, + identifier: "Bytes57.Bytes" + }) +) + +export const HexSchema = pipe( + Bytes.HexSchema, + Schema.filter((a) => a.length === HEX_LENGTH, { + message: (issue) => `${issue.actual} must be a hex string of length ${HEX_LENGTH}, but got ${issue.actual}`, + identifier: "Bytes57.Hex" + }) +) + +export const BytesFromHex = Schema.transform(HexSchema, BytesSchema, { + strict: true, + decode: (toI) => Bytes.Codec.Encode.bytes(toI), + encode: (fromA) => Bytes.Codec.Decode.bytes(fromA) +}) diff --git a/packages/evolution/src/Bytes64.ts b/packages/evolution/src/Bytes64.ts new file mode 100644 index 00000000..02301aed --- /dev/null +++ b/packages/evolution/src/Bytes64.ts @@ -0,0 +1,34 @@ +import { pipe, Schema } from "effect" + +import * as Bytes from "./Bytes.js" + +export const BYTES_LENGTH = 64 +export const HEX_LENGTH = 128 + +export const BytesSchema = pipe( + Schema.Uint8ArrayFromSelf, + Schema.filter((a) => a.length === BYTES_LENGTH, { + message: (issue) => `${issue.actual} must be a byte array of length ${BYTES_LENGTH}, but got ${issue.actual}`, + identifier: "Bytes64.Bytes" + }) +) + +export const HexSchema = pipe( + Bytes.HexSchema, + Schema.filter((a) => a.length === HEX_LENGTH, { + message: (issue) => `${issue.actual} must be a hex string of length ${HEX_LENGTH}, but got ${issue.actual}`, + identifier: "Bytes64.Hex" + }) +) + +export const FromHex = Schema.transform(HexSchema, BytesSchema, { + strict: true, + decode: (toI) => Bytes.Codec.Encode.bytes(toI), + encode: (fromA) => Bytes.Codec.Decode.bytes(fromA) +}) + +export const FromBytes = Schema.transform(BytesSchema, HexSchema, { + strict: true, + encode: (toI) => Bytes.Codec.Encode.bytes(toI), + decode: (fromA) => Bytes.Codec.Decode.bytes(fromA) +}) diff --git a/packages/evolution/src/Bytes80.ts b/packages/evolution/src/Bytes80.ts new file mode 100644 index 00000000..10f415be --- /dev/null +++ b/packages/evolution/src/Bytes80.ts @@ -0,0 +1,34 @@ +import { pipe, Schema } from "effect" + +import * as Bytes from "./Bytes.js" + +export const BYTES_LENGTH = 80 +export const HEX_LENGTH = 160 + +export const BytesSchema = pipe( + Schema.Uint8ArrayFromSelf, + Schema.filter((a) => a.length === BYTES_LENGTH, { + message: (issue) => `${issue.actual} must be a byte array of length ${BYTES_LENGTH}, but got ${issue.actual}`, + identifier: "Bytes80.Bytes" + }) +) + +export const HexSchema = pipe( + Bytes.HexSchema, + Schema.filter((a) => a.length === HEX_LENGTH, { + message: (issue) => `${issue.actual} must be a hex string of length ${HEX_LENGTH}, but got ${issue.actual}`, + identifier: "Bytes80.Hex" + }) +) + +export const FromHex = Schema.transform(HexSchema, BytesSchema, { + strict: true, + decode: (toI) => Bytes.Codec.Encode.bytes(toI), + encode: (fromA) => Bytes.Codec.Decode.bytes(fromA) +}) + +export const FromBytes = Schema.transform(BytesSchema, HexSchema, { + strict: true, + encode: (toI) => Bytes.Codec.Encode.bytes(toI), + decode: (fromA) => Bytes.Codec.Decode.bytes(fromA) +}) diff --git a/packages/evolution/src/CBOR.ts b/packages/evolution/src/CBOR.ts new file mode 100644 index 00000000..82e1d8e7 --- /dev/null +++ b/packages/evolution/src/CBOR.ts @@ -0,0 +1,1667 @@ +import { Data, Effect, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as _Codec from "./Codec.js" + +/** + * Error class for CBOR value operations + * + * @since 1.0.0 + * @category errors + */ +export class CBORError extends Data.TaggedError("CBORError")<{ + message?: string + cause?: unknown +}> {} + +/** + * CBOR major types as constants + * + * @since 1.0.0 + * @category constants + */ +export const CBOR_MAJOR_TYPE = { + UNSIGNED_INTEGER: 0, + NEGATIVE_INTEGER: 1, + BYTE_STRING: 2, + TEXT_STRING: 3, + ARRAY: 4, + MAP: 5, + TAG: 6, + SIMPLE_FLOAT: 7 +} as const + +/** + * CBOR additional information constants + * + * @since 1.0.0 + * @category constants + */ +export const CBOR_ADDITIONAL_INFO = { + DIRECT: 24, + UINT16: 25, + UINT32: 26, + UINT64: 27, + INDEFINITE: 31 +} as const + +/** + * Simple value constants for CBOR + * + * @since 1.0.0 + * @category constants + */ +export const CBOR_SIMPLE = { + FALSE: 20, + TRUE: 21, + NULL: 22, + UNDEFINED: 23 +} as const + +/** + * CBOR codec configuration options + * + * @since 1.0.0 + * @category model + */ +export type CodecOptions = + | { + readonly mode: "canonical" + } + | { + readonly mode: "custom" + readonly useIndefiniteArrays: boolean + readonly useIndefiniteMaps: boolean + readonly useDefiniteForEmpty: boolean + readonly sortMapKeys: boolean + readonly useMinimalEncoding: boolean + } + +/** + * Canonical CBOR encoding options (RFC 8949 Section 4.2.1) + * + * @since 1.0.0 + * @category constants + */ +export const CANONICAL_OPTIONS: CodecOptions = { + mode: "canonical" +} as const + +/** + * Default CBOR encoding options + * + * @since 1.0.0 + * @category constants + */ +export const DEFAULT_OPTIONS: CodecOptions = { + mode: "custom", + useIndefiniteArrays: true, + useIndefiniteMaps: true, + useDefiniteForEmpty: true, + sortMapKeys: false, + useMinimalEncoding: true +} as const + +/** + * Type representing a CBOR value with simplified, non-tagged structure + * + * @since 1.0.0 + * @category model + */ +export type CBOR = + | bigint // integers (both positive and negative) + | Uint8Array // byte strings + | string // text strings + | ReadonlyArray // arrays + | ReadonlyMap // maps + | { readonly [key: string]: CBOR } // record alternative to maps + | Tag // tagged values + | boolean // boolean values + | null // null value + | undefined // undefined value + | number // floating point numbers + +/** + * CBOR Value schema definitions for each major type + * + * @since 1.0.0 + * @category schemas + */ + +// Integer (Major Type 0 and 1 combined) +export const Integer = Schema.BigIntFromSelf +export const isInteger = Schema.is(Integer) + +// Byte String (Major Type 2) +export const ByteArray = Schema.Uint8ArrayFromSelf +export const isByteArray = Schema.is(ByteArray) + +// Text String (Major Type 3) +export const Text = Schema.String + +// Array (Major Type 4) +export const ArraySchema = Schema.Array(Schema.suspend(() => CBORSchema)) +export const isArray = Schema.is(ArraySchema) + +// Map (Major Type 5) +export const MapSchema = Schema.ReadonlyMapFromSelf({ + key: Schema.suspend(() => CBORSchema), + value: Schema.suspend(() => CBORSchema) +}) + +export const isMap = Schema.is(MapSchema) + +// Record (Alternative to Major Type 5 - Map) +// Provides a Record alternative to ReadonlyMap +// for applications that prefer object-based map representations +export const RecordSchema = Schema.Record({ + key: Schema.String, + value: Schema.suspend(() => CBORSchema) +}) + +export const isRecord = Schema.is(RecordSchema) + +// Tag (Major Type 6) +export class Tag extends Schema.TaggedClass("Tag")("Tag", { + tag: Schema.Number, + value: Schema.suspend(() => CBORSchema) +}) {} + +export const isTag = Schema.is(Tag) + +// Simple values (Major Type 7) +export const Simple = Schema.Union(Schema.Boolean, Schema.Null, Schema.Undefined) + +// Float (Major Type 7) +export const Float = Schema.Number + +/** + * CBOR Value discriminated union schema representing all possible CBOR data types + * Inspired by OCaml and Rust CBOR implementations + * + * @since 1.0.0 + * @category schemas + */ +export const CBORSchema: Schema.Schema = Schema.Union( + Integer, + ByteArray, + Text, + ArraySchema, + MapSchema, + RecordSchema, + Tag, + Simple, + Float +) + +/** + * Schema for encoding/decoding CBOR bytes using internal functions + * This bypasses Effect's schema encoding for Tags to use proper CBOR tag encoding + * + * @since 1.0.0 + * @category schemas + */ +const CBORValueSchema = Schema.declare((input: unknown): input is CBOR => { + // Basic runtime type checking for CBOR values + if (typeof input === "bigint") return true + if (input instanceof Uint8Array) return true + if (typeof input === "string") return true + if (Array.isArray(input)) return true + if (input instanceof Map) return true + if (input instanceof Tag) return true + if (typeof input === "boolean") return true + if (input === null || input === undefined) return true + if (typeof input === "number") return true + if (typeof input === "object" && input !== null) return true + return false +}) + +/** + * Pattern matching utility for CBOR values + * + * @since 1.0.0 + * @category transformation + */ +export const match = ( + value: CBOR, + patterns: { + integer: (value: bigint) => R + bytes: (value: Uint8Array) => R + text: (value: string) => R + array: (value: ReadonlyArray) => R + map: (value: ReadonlyMap) => R + record: (value: { readonly [key: string]: CBOR }) => R + tag: (tag: number, value: CBOR) => R + boolean: (value: boolean) => R + null: () => R + undefined: () => R + float: (value: number) => R + } +): R => { + if (typeof value === "bigint") { + return patterns.integer(value) + } + if (value instanceof Uint8Array) { + return patterns.bytes(value) + } + if (typeof value === "string") { + return patterns.text(value) + } + if (Array.isArray(value)) { + return patterns.array(value) + } + if (value instanceof Map) { + return patterns.map(value) + } + if (value instanceof Tag) { + return patterns.tag(value.tag, value.value) + } + if ( + typeof value === "object" && + value !== null && + !Array.isArray(value) && + !(value instanceof Map) && + !(value instanceof Uint8Array) && + !(value instanceof Tag) + ) { + return patterns.record(value as { readonly [key: string]: CBOR }) + } + if (typeof value === "boolean") { + return patterns.boolean(value) + } + if (value === null) { + return patterns.null() + } + if (value === undefined) { + return patterns.undefined() + } + if (typeof value === "number") { + return patterns.float(value) + } + + // This should never happen with proper typing + throw new Error(`Unhandled CBOR value type: ${typeof value}`) +} + +// Internal encoding function used by Schema.transformOrFail +const internalEncode = (value: CBOR, options: CodecOptions = DEFAULT_OPTIONS): Effect.Effect => + Effect.gen(function* () { + if (typeof value === "bigint") { + if (value >= 0n) { + return yield* encodeUint(value, options) + } else { + return yield* encodeNint(value, options) + } + } + if (value instanceof Uint8Array) { + return yield* encodeBytes(value, options) + } + if (typeof value === "string") { + return yield* encodeText(value, options) + } + if (Array.isArray(value)) { + return yield* encodeArray(value, options) + } + if (value instanceof Map) { + return yield* encodeMap(value, options) + } + if (value instanceof Tag) { + return yield* encodeTag(value.tag, value.value, options) + } + if ( + typeof value === "object" && + value !== null && + !Array.isArray(value) && + !(value instanceof Map) && + !(value instanceof Uint8Array) && + !(value instanceof Tag) + ) { + return yield* encodeRecord(value as { readonly [key: string]: CBOR }, options) + } + if (typeof value === "boolean" || value === null || value === undefined) { + return yield* encodeSimple(value) + } + if (typeof value === "number") { + return yield* encodeFloat(value, options) + } + + return yield* new CBORError({ + message: `Unsupported CBOR value type: ${typeof value}` + }) + }) + +// Internal decoding function used by Schema.transformOrFail +const internalDecode = (data: Uint8Array): Effect.Effect => + Effect.gen(function* () { + if (data.length === 0) { + return yield* new CBORError({ message: "Empty CBOR data" }) + } + + const { bytesConsumed, item } = yield* decodeItemWithLength(data) + + // Verify that all input bytes were consumed + if (bytesConsumed !== data.length) { + return yield* new CBORError({ + message: `Invalid CBOR: expected to consume ${data.length} bytes, but consumed ${bytesConsumed}` + }) + } + + return item + }) + +// Internal encoding functions + +const encodeUint = (value: bigint, options: CodecOptions): Effect.Effect => + Effect.gen(function* () { + if (value < 0n) { + return yield* new CBORError({ + message: `Cannot encode negative value ${value} as unsigned integer` + }) + } + + // Check if value exceeds 64-bit limit and requires big_uint tag (2) + const maxUint64 = 18446744073709551615n // 2^64 - 1 + if (value > maxUint64) { + // Use CBOR tag 2 (big_uint) for large positive integers + const bytes = bigintToBytes(value) + const bytesValue = bytes + return yield* encodeTag(2, bytesValue, options) + } + + // Canonical encoding always uses minimal representation + const useMinimal = options.mode === "canonical" || (options.mode === "custom" && options.useMinimalEncoding) + + if (value < 24n) { + return new Uint8Array([Number(value)]) + } else if (value < 256n && useMinimal) { + return new Uint8Array([24, Number(value)]) + } else if (value < 65536n && useMinimal) { + return new Uint8Array([25, Number(value >> 8n), Number(value & 0xffn)]) + } else if (value < 4294967296n && useMinimal) { + return new Uint8Array([ + 26, + Number((value >> 24n) & 0xffn), + Number((value >> 16n) & 0xffn), + Number((value >> 8n) & 0xffn), + Number(value & 0xffn) + ]) + } else { + // 8-byte encoding for values <= 2^64-1 + return new Uint8Array([ + 27, + Number((value >> 56n) & 0xffn), + Number((value >> 48n) & 0xffn), + Number((value >> 40n) & 0xffn), + Number((value >> 32n) & 0xffn), + Number((value >> 24n) & 0xffn), + Number((value >> 16n) & 0xffn), + Number((value >> 8n) & 0xffn), + Number(value & 0xffn) + ]) + } + }) + +const encodeNint = (value: bigint, options: CodecOptions): Effect.Effect => + Effect.gen(function* () { + if (value >= 0n) { + return yield* new CBORError({ + message: `Cannot encode non-negative value ${value} as negative integer` + }) + } + + // Check if value exceeds 64-bit limit and requires big_nint tag (3) + const minInt64 = -18446744073709551615n // -(2^64 - 1) + if (value < minInt64) { + // Use CBOR tag 3 (big_nint) for large negative integers + // For tag 3, we encode the positive value (-(n+1)) + const positiveValue = -(value + 1n) + const bytes = bigintToBytes(positiveValue) + const bytesValue = bytes + return yield* encodeTag(3, bytesValue, options) + } + + // RFC 8949: negative integers are encoded as -1 - n + const positiveValue = -value - 1n + const useMinimal = options.mode === "canonical" || (options.mode === "custom" && options.useMinimalEncoding) + + if (positiveValue < 24n) { + return new Uint8Array([0x20 + Number(positiveValue)]) + } else if (positiveValue < 256n && useMinimal) { + return new Uint8Array([0x38, Number(positiveValue)]) + } else if (positiveValue < 65536n && useMinimal) { + return new Uint8Array([0x39, Number(positiveValue >> 8n), Number(positiveValue & 0xffn)]) + } else if (positiveValue < 4294967296n && useMinimal) { + return new Uint8Array([ + 0x3a, + Number((positiveValue >> 24n) & 0xffn), + Number((positiveValue >> 16n) & 0xffn), + Number((positiveValue >> 8n) & 0xffn), + Number(positiveValue & 0xffn) + ]) + } else { + // 8-byte encoding for values >= -(2^64-1) + return new Uint8Array([ + 0x3b, + Number((positiveValue >> 56n) & 0xffn), + Number((positiveValue >> 48n) & 0xffn), + Number((positiveValue >> 40n) & 0xffn), + Number((positiveValue >> 32n) & 0xffn), + Number((positiveValue >> 24n) & 0xffn), + Number((positiveValue >> 16n) & 0xffn), + Number((positiveValue >> 8n) & 0xffn), + Number(positiveValue & 0xffn) + ]) + } + }) + +const encodeBytes = (value: Uint8Array, options: CodecOptions): Effect.Effect => + Effect.gen(function* () { + const length = value.length + let headerBytes: Uint8Array + const useMinimal = options.mode === "canonical" || (options.mode === "custom" && options.useMinimalEncoding) + + if (length < 24) { + headerBytes = new Uint8Array([0x40 + length]) + } else if (length < 256 && useMinimal) { + headerBytes = new Uint8Array([0x58, length]) + } else if (length < 65536 && useMinimal) { + headerBytes = new Uint8Array([0x59, length >> 8, length & 0xff]) + } else if (length < 4294967296 && useMinimal) { + headerBytes = new Uint8Array([ + 0x5a, + (length >> 24) & 0xff, + (length >> 16) & 0xff, + (length >> 8) & 0xff, + length & 0xff + ]) + } else { + return yield* new CBORError({ + message: `Byte string too long: ${length} bytes` + }) + } + + const result = new Uint8Array(headerBytes.length + length) + result.set(headerBytes, 0) + result.set(value, headerBytes.length) + return result + }) + +const encodeText = (value: string, options: CodecOptions): Effect.Effect => + Effect.gen(function* () { + const utf8Bytes = new TextEncoder().encode(value) + const length = utf8Bytes.length + let headerBytes: Uint8Array + const useMinimal = options.mode === "canonical" || (options.mode === "custom" && options.useMinimalEncoding) + + if (length < 24) { + headerBytes = new Uint8Array([0x60 + length]) + } else if (length < 256 && useMinimal) { + headerBytes = new Uint8Array([0x78, length]) + } else if (length < 65536 && useMinimal) { + headerBytes = new Uint8Array([0x79, length >> 8, length & 0xff]) + } else if (length < 4294967296 && useMinimal) { + headerBytes = new Uint8Array([ + 0x7a, + (length >> 24) & 0xff, + (length >> 16) & 0xff, + (length >> 8) & 0xff, + length & 0xff + ]) + } else { + return yield* new CBORError({ + message: `Text string too long: ${length} bytes` + }) + } + + const result = new Uint8Array(headerBytes.length + length) + result.set(headerBytes, 0) + result.set(utf8Bytes, headerBytes.length) + return result + }) + +const encodeArray = (value: ReadonlyArray, options: CodecOptions): Effect.Effect => + Effect.gen(function* () { + const length = value.length + const chunks: Array = [] + const useMinimal = options.mode === "canonical" || (options.mode === "custom" && options.useMinimalEncoding) + const useIndefinite = options.mode === "custom" && options.useIndefiniteArrays && length > 0 + + if (useIndefinite) { + // Indefinite-length array + chunks.push(new Uint8Array([0x9f])) // Start indefinite array + + // Encode each item + for (const item of value) { + const encodedItem = yield* internalEncode(item, options) + chunks.push(encodedItem) + } + + // Add break marker + chunks.push(new Uint8Array([0xff])) + } else { + // Definite-length array + if (length < 24) { + chunks.push(new Uint8Array([0x80 + length])) + } else if (length < 256 && useMinimal) { + chunks.push(new Uint8Array([0x98, length])) + } else if (length < 65536 && useMinimal) { + chunks.push(new Uint8Array([0x99, length >> 8, length & 0xff])) + } else if (length < 4294967296 && useMinimal) { + chunks.push( + new Uint8Array([0x9a, (length >> 24) & 0xff, (length >> 16) & 0xff, (length >> 8) & 0xff, length & 0xff]) + ) + } else { + return yield* new CBORError({ + message: `Array too long: ${length} elements` + }) + } + + // Encode each item + for (const item of value) { + const encodedItem = yield* internalEncode(item, options) + chunks.push(encodedItem) + } + } + + // Combine chunks + const totalLength = chunks.reduce((sum, chunk) => sum + chunk.length, 0) + const result = new Uint8Array(totalLength) + let offset = 0 + for (const chunk of chunks) { + result.set(chunk, offset) + offset += chunk.length + } + + return result + }) + +const encodeMap = (value: ReadonlyMap, options: CodecOptions): Effect.Effect => + Effect.gen(function* () { + // Convert Map to array of pairs for processing + const pairs = Array.from(value.entries()) + const length = pairs.length + const chunks: Array = [] + const useMinimal = options.mode === "canonical" || (options.mode === "custom" && options.useMinimalEncoding) + const sortKeys = options.mode === "canonical" || (options.mode === "custom" && options.sortMapKeys) + const useIndefinite = options.mode === "custom" && options.useIndefiniteMaps && length > 0 + + // Sort keys if required (canonical CBOR requires sorted keys) + let encodedPairs: Array<{ encodedKey: Uint8Array; encodedValue: Uint8Array }> | undefined + + if (sortKeys) { + // Sort by encoded key length only (matches old CBOR.ts behavior) + const tempEncodedPairs = yield* Effect.all( + pairs.map(([key, val]) => + Effect.gen(function* () { + const encodedKey = yield* internalEncode(key, options) + const encodedValue = yield* internalEncode(val, options) + return { encodedKey, encodedValue } + }) + ) + ) + + // Sort by encoded key length only (not full lexicographic order) + tempEncodedPairs.sort((a, b) => { + return a.encodedKey.length - b.encodedKey.length + }) + + encodedPairs = tempEncodedPairs + } + + if (useIndefinite) { + // Indefinite-length map + chunks.push(new Uint8Array([0xbf])) // Start indefinite map + + // Encode each key-value pair + if (encodedPairs) { + // Use pre-encoded pairs for sorted output + for (const { encodedKey, encodedValue } of encodedPairs) { + chunks.push(encodedKey) + chunks.push(encodedValue) + } + } else { + // Encode pairs on-the-fly for unsorted output + for (const [key, val] of pairs) { + const encodedKey = yield* internalEncode(key, options) + const encodedValue = yield* internalEncode(val, options) + chunks.push(encodedKey) + chunks.push(encodedValue) + } + } + + // Add break marker + chunks.push(new Uint8Array([0xff])) + } else { + // Definite-length map + if (length < 24) { + chunks.push(new Uint8Array([0xa0 + length])) + } else if (length < 256 && useMinimal) { + chunks.push(new Uint8Array([0xb8, length])) + } else if (length < 65536 && useMinimal) { + chunks.push(new Uint8Array([0xb9, length >> 8, length & 0xff])) + } else if (length < 4294967296 && useMinimal) { + chunks.push( + new Uint8Array([0xba, (length >> 24) & 0xff, (length >> 16) & 0xff, (length >> 8) & 0xff, length & 0xff]) + ) + } else { + return yield* new CBORError({ + message: `Map too long: ${length} entries` + }) + } + + // Encode each key-value pair + if (encodedPairs) { + // Use pre-encoded pairs for sorted output + for (const { encodedKey, encodedValue } of encodedPairs) { + chunks.push(encodedKey) + chunks.push(encodedValue) + } + } else { + // Encode pairs on-the-fly for unsorted output + for (const [key, val] of pairs) { + const encodedKey = yield* internalEncode(key, options) + const encodedValue = yield* internalEncode(val, options) + chunks.push(encodedKey) + chunks.push(encodedValue) + } + } + } + + // Combine chunks + const totalLength = chunks.reduce((sum, chunk) => sum + chunk.length, 0) + const result = new Uint8Array(totalLength) + let offset = 0 + for (const chunk of chunks) { + result.set(chunk, offset) + offset += chunk.length + } + + return result + }) + +const encodeRecord = ( + value: { readonly [key: string]: CBOR }, + options: CodecOptions +): Effect.Effect => + Effect.gen(function* () { + // Convert Record to array of pairs for processing + const pairs = Object.entries(value) + const length = pairs.length + const chunks: Array = [] + const useMinimal = options.mode === "canonical" || (options.mode === "custom" && options.useMinimalEncoding) + const sortKeys = options.mode === "canonical" || (options.mode === "custom" && options.sortMapKeys) + const useIndefinite = options.mode === "custom" && options.useIndefiniteMaps && length > 0 + + // Sort keys if required (canonical CBOR requires sorted keys) + let encodedPairs: Array<{ encodedKey: Uint8Array; encodedValue: Uint8Array }> | undefined + + if (sortKeys) { + // Sort by encoded key length only (matches old CBOR.ts behavior) + const tempEncodedPairs = yield* Effect.all( + pairs.map(([key, val]) => + Effect.gen(function* () { + const encodedKey = yield* internalEncode(key, options) + const encodedValue = yield* internalEncode(val, options) + return { encodedKey, encodedValue } + }) + ) + ) + + // Sort by encoded key length only (not full lexicographic order) + tempEncodedPairs.sort((a, b) => { + return a.encodedKey.length - b.encodedKey.length + }) + + encodedPairs = tempEncodedPairs + } + + if (useIndefinite) { + // Indefinite-length map + chunks.push(new Uint8Array([0xbf])) // Start indefinite map + + // Encode each key-value pair + if (encodedPairs) { + // Use pre-encoded pairs for sorted output + for (const { encodedKey, encodedValue } of encodedPairs) { + chunks.push(encodedKey) + chunks.push(encodedValue) + } + } else { + // Encode pairs on-the-fly for unsorted output + for (const [key, val] of pairs) { + const encodedKey = yield* internalEncode(key, options) + const encodedValue = yield* internalEncode(val, options) + chunks.push(encodedKey) + chunks.push(encodedValue) + } + } + + // Add break marker + chunks.push(new Uint8Array([0xff])) + } else { + // Definite-length map + if (length < 24) { + chunks.push(new Uint8Array([0xa0 + length])) + } else if (length < 256 && useMinimal) { + chunks.push(new Uint8Array([0xb8, length])) + } else if (length < 65536 && useMinimal) { + chunks.push(new Uint8Array([0xb9, length >> 8, length & 0xff])) + } else if (length < 4294967296 && useMinimal) { + chunks.push( + new Uint8Array([0xba, (length >> 24) & 0xff, (length >> 16) & 0xff, (length >> 8) & 0xff, length & 0xff]) + ) + } else { + return yield* new CBORError({ + message: `Record too long: ${length} entries` + }) + } + + // Encode each key-value pair + if (encodedPairs) { + // Use pre-encoded pairs for sorted output + for (const { encodedKey, encodedValue } of encodedPairs) { + chunks.push(encodedKey) + chunks.push(encodedValue) + } + } else { + // Encode pairs on-the-fly for unsorted output + for (const [key, val] of pairs) { + const encodedKey = yield* internalEncode(key, options) + const encodedValue = yield* internalEncode(val, options) + chunks.push(encodedKey) + chunks.push(encodedValue) + } + } + } + + // Combine chunks + const totalLength = chunks.reduce((sum, chunk) => sum + chunk.length, 0) + const result = new Uint8Array(totalLength) + let offset = 0 + for (const chunk of chunks) { + result.set(chunk, offset) + offset += chunk.length + } + + return result + }) + +const encodeTag = (tag: number, value: CBOR, options: CodecOptions): Effect.Effect => + Effect.gen(function* () { + const chunks: Array = [] + const useMinimal = options.mode === "canonical" || (options.mode === "custom" && options.useMinimalEncoding) + + // Encode tag + if (tag < 24) { + chunks.push(new Uint8Array([0xc0 + tag])) + } else if (tag < 256 && useMinimal) { + chunks.push(new Uint8Array([0xd8, tag])) + } else if (tag < 65536 && useMinimal) { + chunks.push(new Uint8Array([0xd9, tag >> 8, tag & 0xff])) + } else { + return yield* new CBORError({ message: `Tag ${tag} too large` }) + } + + // Encode tagged value + const encodedValue = yield* internalEncode(value, options) + chunks.push(encodedValue) + + // Combine chunks + const totalLength = chunks.reduce((sum, chunk) => sum + chunk.length, 0) + const result = new Uint8Array(totalLength) + let offset = 0 + for (const chunk of chunks) { + result.set(chunk, offset) + offset += chunk.length + } + + return result + }) + +const encodeSimple = (value: boolean | null | undefined): Effect.Effect => + Effect.gen(function* () { + if (value === false) return new Uint8Array([0xf4]) + if (value === true) return new Uint8Array([0xf5]) + if (value === null) return new Uint8Array([0xf6]) + if (value === undefined) return new Uint8Array([0xf7]) + + return yield* new CBORError({ + message: `Invalid simple value: ${value}` + }) + }) + +const encodeFloat = (value: number, options: CodecOptions): Effect.Effect => + Effect.succeed( + (() => { + if (Number.isNaN(value)) { + return new Uint8Array([0xf9, 0x7e, 0x00]) // Half-precision NaN + } else if (value === Infinity) { + return new Uint8Array([0xf9, 0x7c, 0x00]) // Half-precision Infinity + } else if (value === -Infinity) { + return new Uint8Array([0xf9, 0xfc, 0x00]) // Half-precision -Infinity + } else { + // For canonical CBOR, use smallest representation that preserves the value + if (options.mode === "canonical") { + // Try half precision first + const half = encodeFloat16(value) + if (decodeFloat16(half) === value) { + return new Uint8Array([0xf9, (half >> 8) & 0xff, half & 0xff]) + } + + // Try single precision + const buffer32 = new ArrayBuffer(4) + const view32 = new DataView(buffer32) + view32.setFloat32(0, value, false) + if (view32.getFloat32(0, false) === value) { + return new Uint8Array([0xfa, ...new Uint8Array(buffer32)]) + } + } + + // Encode as double-precision float + const buffer = new ArrayBuffer(8) + const view = new DataView(buffer) + view.setFloat64(0, value, false) // big-endian + return new Uint8Array([0xfb, ...new Uint8Array(buffer)]) + } + })() + ) + +// Internal decoding functions + +const decodeUint = (data: Uint8Array): Effect.Effect => + Effect.gen(function* () { + const firstByte = data[0] + const additionalInfo = firstByte & 0x1f + + if (additionalInfo < 24) { + return BigInt(additionalInfo) + } else if (additionalInfo === 24) { + if (data.length < 2) { + return yield* new CBORError({ + message: "Insufficient data for 1-byte unsigned integer" + }) + } + return BigInt(data[1]) + } else if (additionalInfo === 25) { + if (data.length < 3) { + return yield* new CBORError({ + message: "Insufficient data for 2-byte unsigned integer" + }) + } + return BigInt(data[1]) * 256n + BigInt(data[2]) + } else if (additionalInfo === 26) { + if (data.length < 5) { + return yield* new CBORError({ + message: "Insufficient data for 4-byte unsigned integer" + }) + } + return BigInt(data[1]) * 16777216n + BigInt(data[2]) * 65536n + BigInt(data[3]) * 256n + BigInt(data[4]) + } else if (additionalInfo === 27) { + if (data.length < 9) { + return yield* new CBORError({ + message: "Insufficient data for 8-byte unsigned integer" + }) + } + let result = 0n + for (let i = 1; i <= 8; i++) { + result = result * 256n + BigInt(data[i]) + } + return result + } else { + return yield* new CBORError({ + message: `Unsupported additional info for unsigned integer: ${additionalInfo}` + }) + } + }) + +const decodeNint = (data: Uint8Array): Effect.Effect => + Effect.gen(function* () { + const firstByte = data[0] + const additionalInfo = firstByte & 0x1f + + if (additionalInfo < 24) { + return -1n - BigInt(additionalInfo) + } else if (additionalInfo === 24) { + if (data.length < 2) { + return yield* new CBORError({ + message: "Insufficient data for 1-byte negative integer" + }) + } + return -1n - BigInt(data[1]) + } else if (additionalInfo === 25) { + if (data.length < 3) { + return yield* new CBORError({ + message: "Insufficient data for 2-byte negative integer" + }) + } + return -1n - (BigInt(data[1]) * 256n + BigInt(data[2])) + } else if (additionalInfo === 26) { + if (data.length < 5) { + return yield* new CBORError({ + message: "Insufficient data for 4-byte negative integer" + }) + } + return -1n - (BigInt(data[1]) * 16777216n + BigInt(data[2]) * 65536n + BigInt(data[3]) * 256n + BigInt(data[4])) + } else if (additionalInfo === 27) { + if (data.length < 9) { + return yield* new CBORError({ + message: "Insufficient data for 8-byte negative integer" + }) + } + let result = 0n + for (let i = 1; i <= 8; i++) { + result = result * 256n + BigInt(data[i]) + } + return -1n - result + } else { + return yield* new CBORError({ + message: `Unsupported additional info for negative integer: ${additionalInfo}` + }) + } + }) + +const decodeBytesWithLength = (data: Uint8Array): Effect.Effect<{ item: CBOR; bytesConsumed: number }, CBORError> => + Effect.gen(function* () { + const firstByte = data[0] + const additionalInfo = firstByte & 0x1f + + if (additionalInfo === CBOR_ADDITIONAL_INFO.INDEFINITE) { + // Indefinite-length byte string - concatenate chunks until break + let offset = 1 + const chunks: Array = [] + let foundBreak = false + + while (offset < data.length) { + if (data[offset] === 0xff) { + offset++ + foundBreak = true + break + } + + // Decode a definite-length byte string chunk + const chunkFirstByte = data[offset] + const chunkMajorType = (chunkFirstByte >> 5) & 0x07 + + if (chunkMajorType !== CBOR_MAJOR_TYPE.BYTE_STRING) { + return yield* new CBORError({ + message: "Expected byte string chunk in indefinite byte string" + }) + } + + const chunkAdditionalInfo = chunkFirstByte & 0x1f + if (chunkAdditionalInfo === CBOR_ADDITIONAL_INFO.INDEFINITE) { + return yield* new CBORError({ + message: "Nested indefinite byte strings not allowed" + }) + } + + const { bytesRead, length: chunkLength } = yield* decodeLength(data, offset) + const chunkData = data.slice(offset + bytesRead, offset + bytesRead + chunkLength) + chunks.push(chunkData) + offset += bytesRead + chunkLength + } + + if (!foundBreak) { + return yield* new CBORError({ + message: "Missing break marker for indefinite byte string" + }) + } + + // Concatenate all chunks + const totalLength = chunks.reduce((sum, chunk) => sum + chunk.length, 0) + const result = new Uint8Array(totalLength) + let resultOffset = 0 + for (const chunk of chunks) { + result.set(chunk, resultOffset) + resultOffset += chunk.length + } + + return { item: result, bytesConsumed: offset } + } else { + // Definite-length byte string + const { bytesRead, length } = yield* decodeLength(data, 0) + + if (data.length < bytesRead + length) { + return yield* new CBORError({ + message: `Insufficient data for byte string: expected ${bytesRead + length} bytes, got ${data.length}` + }) + } + + const result = data.slice(bytesRead, bytesRead + length) + return { item: result, bytesConsumed: bytesRead + length } + } + }) + +const decodeTextWithLength = (data: Uint8Array): Effect.Effect<{ item: CBOR; bytesConsumed: number }, CBORError> => + Effect.gen(function* () { + const firstByte = data[0] + const additionalInfo = firstByte & 0x1f + + if (additionalInfo === CBOR_ADDITIONAL_INFO.INDEFINITE) { + // Indefinite-length text string - concatenate chunks until break + let offset = 1 + const chunks: Array = [] + let foundBreak = false + + while (offset < data.length) { + if (data[offset] === 0xff) { + offset++ + foundBreak = true + break + } + + // Decode a definite-length text string chunk + const chunkFirstByte = data[offset] + const chunkMajorType = (chunkFirstByte >> 5) & 0x07 + + if (chunkMajorType !== CBOR_MAJOR_TYPE.TEXT_STRING) { + return yield* new CBORError({ + message: "Expected text string chunk in indefinite text string" + }) + } + + const chunkAdditionalInfo = chunkFirstByte & 0x1f + if (chunkAdditionalInfo === CBOR_ADDITIONAL_INFO.INDEFINITE) { + return yield* new CBORError({ + message: "Nested indefinite text strings not allowed" + }) + } + + const { bytesRead, length: chunkLength } = yield* decodeLength(data, offset) + const chunkBytes = data.slice(offset + bytesRead, offset + bytesRead + chunkLength) + + try { + const chunkText = new TextDecoder("utf-8", { fatal: true }).decode(chunkBytes) + chunks.push(chunkText) + } catch (error) { + return yield* new CBORError({ + message: "Invalid UTF-8 in text string chunk", + cause: error + }) + } + + offset += bytesRead + chunkLength + } + + if (!foundBreak) { + return yield* new CBORError({ + message: "Missing break marker for indefinite text string" + }) + } + + // Concatenate all chunks + return { item: chunks.join(""), bytesConsumed: offset } + } else { + // Definite-length text string + const { bytesRead, length } = yield* decodeLength(data, 0) + + if (data.length < bytesRead + length) { + return yield* new CBORError({ + message: `Insufficient data for text string: expected ${bytesRead + length} bytes, got ${data.length}` + }) + } + + const textBytes = data.slice(bytesRead, bytesRead + length) + try { + const text = new TextDecoder("utf-8", { fatal: true }).decode(textBytes) + return { item: text, bytesConsumed: bytesRead + length } + } catch (error) { + return yield* new CBORError({ + message: "Invalid UTF-8 in text string", + cause: error + }) + } + } + }) + +// Helper function to decode an item and return both the item and bytes consumed +const decodeItemWithLength = (data: Uint8Array): Effect.Effect<{ item: CBOR; bytesConsumed: number }, CBORError> => + Effect.gen(function* () { + if (data.length === 0) { + return yield* new CBORError({ message: "Empty CBOR data" }) + } + + const firstByte = data[0] + const majorType = (firstByte >> 5) & 0x07 + const additionalInfo = firstByte & 0x1f + + let bytesConsumed = 0 + let item: CBOR + + switch (majorType) { + case CBOR_MAJOR_TYPE.UNSIGNED_INTEGER: { + item = yield* decodeUint(data) + if (additionalInfo < 24) { + bytesConsumed = 1 + } else if (additionalInfo === 24) { + bytesConsumed = 2 + } else if (additionalInfo === 25) { + bytesConsumed = 3 + } else if (additionalInfo === 26) { + bytesConsumed = 5 + } else if (additionalInfo === 27) { + bytesConsumed = 9 + } else { + return yield* new CBORError({ + message: `Unsupported additional info for unsigned integer: ${additionalInfo}` + }) + } + break + } + case CBOR_MAJOR_TYPE.NEGATIVE_INTEGER: { + item = yield* decodeNint(data) + if (additionalInfo < 24) { + bytesConsumed = 1 + } else if (additionalInfo === 24) { + bytesConsumed = 2 + } else if (additionalInfo === 25) { + bytesConsumed = 3 + } else if (additionalInfo === 26) { + bytesConsumed = 5 + } else if (additionalInfo === 27) { + bytesConsumed = 9 + } else { + return yield* new CBORError({ + message: `Unsupported additional info for negative integer: ${additionalInfo}` + }) + } + break + } + case CBOR_MAJOR_TYPE.BYTE_STRING: { + const { bytesConsumed: bytesBytes, item: bytesItem } = yield* decodeBytesWithLength(data) + item = bytesItem + bytesConsumed = bytesBytes + break + } + case CBOR_MAJOR_TYPE.TEXT_STRING: { + const { bytesConsumed: textBytes, item: textItem } = yield* decodeTextWithLength(data) + item = textItem + bytesConsumed = textBytes + break + } + case CBOR_MAJOR_TYPE.ARRAY: { + const { bytesConsumed: arrayBytes, item: arrayItem } = yield* decodeArrayWithLength(data) + item = arrayItem + bytesConsumed = arrayBytes + break + } + case CBOR_MAJOR_TYPE.MAP: { + const { bytesConsumed: mapBytes, item: mapItem } = yield* decodeMapWithLength(data) + item = mapItem + bytesConsumed = mapBytes + break + } + case CBOR_MAJOR_TYPE.TAG: { + const { bytesConsumed: tagBytes, item: tagItem } = yield* decodeTagWithLength(data) + item = tagItem + bytesConsumed = tagBytes + break + } + case CBOR_MAJOR_TYPE.SIMPLE_FLOAT: { + item = yield* decodeSimpleOrFloat(data) + if (additionalInfo < 24) { + bytesConsumed = 1 + } else if (additionalInfo === 24) { + bytesConsumed = 2 + } else if (additionalInfo === 25) { + bytesConsumed = 3 + } else if (additionalInfo === 26) { + bytesConsumed = 5 + } else if (additionalInfo === 27) { + bytesConsumed = 9 + } else { + return yield* new CBORError({ + message: `Unsupported simple/float encoding: ${additionalInfo}` + }) + } + break + } + default: + return yield* new CBORError({ + message: `Unknown CBOR major type: ${majorType}` + }) + } + + return { item, bytesConsumed } + }) + +const decodeArrayWithLength = (data: Uint8Array): Effect.Effect<{ item: CBOR; bytesConsumed: number }, CBORError> => + Effect.gen(function* () { + const firstByte = data[0] + const additionalInfo = firstByte & 0x1f + + if (additionalInfo === CBOR_ADDITIONAL_INFO.INDEFINITE) { + // Indefinite-length array + let offset = 1 + const result: Array = [] + let foundBreak = false + + while (offset < data.length) { + if (data[offset] === 0xff) { + offset++ + foundBreak = true + break + } + + const { bytesConsumed, item } = yield* decodeItemWithLength(data.slice(offset)) + result.push(item) + offset += bytesConsumed + } + + if (!foundBreak) { + return yield* new CBORError({ + message: "Missing break marker for indefinite array" + }) + } + + return { + item: result, + bytesConsumed: offset + } + } else { + // Definite-length array + const { bytesRead, length } = yield* decodeLength(data, 0) + let offset = bytesRead + const result: Array = [] + + for (let i = 0; i < length; i++) { + if (offset >= data.length) { + return yield* new CBORError({ + message: `Insufficient data for array element ${i}` + }) + } + + const { bytesConsumed, item } = yield* decodeItemWithLength(data.slice(offset)) + result.push(item) + offset += bytesConsumed + } + + return { + item: result, + bytesConsumed: offset + } + } + }) + +const decodeMapWithLength = (data: Uint8Array): Effect.Effect<{ item: CBOR; bytesConsumed: number }, CBORError> => + Effect.gen(function* () { + const firstByte = data[0] + const additionalInfo = firstByte & 0x1f + + if (additionalInfo === CBOR_ADDITIONAL_INFO.INDEFINITE) { + // Indefinite-length map + let offset = 1 + const result = new Map() + let foundBreak = false + + while (offset < data.length) { + if (data[offset] === 0xff) { + offset++ + foundBreak = true + break + } + + // Decode key + const { bytesConsumed: keyBytes, item: key } = yield* decodeItemWithLength(data.slice(offset)) + offset += keyBytes + + // Decode value + if (offset >= data.length) { + return yield* new CBORError({ + message: "Missing value in indefinite map" + }) + } + + const { bytesConsumed: valueBytes, item: value } = yield* decodeItemWithLength(data.slice(offset)) + offset += valueBytes + + result.set(key, value) + } + + if (!foundBreak) { + return yield* new CBORError({ + message: "Missing break marker for indefinite map" + }) + } + + return { item: result, bytesConsumed: offset } + } else { + // Definite-length map + const { bytesRead, length } = yield* decodeLength(data, 0) + let offset = bytesRead + const result = new Map() + + for (let i = 0; i < length; i++) { + // Decode key + if (offset >= data.length) { + return yield* new CBORError({ + message: `Insufficient data for map key ${i}` + }) + } + + const { bytesConsumed: keyBytes, item: key } = yield* decodeItemWithLength(data.slice(offset)) + offset += keyBytes + + // Decode value + if (offset >= data.length) { + return yield* new CBORError({ + message: `Insufficient data for map value ${i}` + }) + } + + const { bytesConsumed: valueBytes, item: value } = yield* decodeItemWithLength(data.slice(offset)) + offset += valueBytes + + result.set(key, value) + } + + return { item: result, bytesConsumed: offset } + } + }) + +const decodeTagWithLength = (data: Uint8Array): Effect.Effect<{ item: CBOR; bytesConsumed: number }, CBORError> => + Effect.gen(function* () { + const firstByte = data[0] + const additionalInfo = firstByte & 0x1f + let tagValue: number + let dataOffset: number + + if (additionalInfo < 24) { + tagValue = additionalInfo + dataOffset = 1 + } else if (additionalInfo === 24) { + if (data.length < 2) { + return yield* new CBORError({ + message: "Insufficient data for 1-byte tag" + }) + } + tagValue = data[1] + dataOffset = 2 + } else if (additionalInfo === 25) { + if (data.length < 3) { + return yield* new CBORError({ + message: "Insufficient data for 2-byte tag" + }) + } + tagValue = (data[1] << 8) | data[2] + dataOffset = 3 + } else { + return yield* new CBORError({ + message: `Unsupported tag encoding: ${additionalInfo}` + }) + } + + const { bytesConsumed, item: innerValue } = yield* decodeItemWithLength(data.slice(dataOffset)) + + // Handle special tags that should be converted to plain values + if (tagValue === 2) { + // Tag 2: positive big integer + if (innerValue instanceof Uint8Array) { + return { + item: bytesToBigint(innerValue), + bytesConsumed: dataOffset + bytesConsumed + } + } else { + return yield* new CBORError({ + message: `Expected bytes for tag 2 (big_uint), got ${typeof innerValue}` + }) + } + } else if (tagValue === 3) { + // Tag 3: negative big integer + if (innerValue instanceof Uint8Array) { + const positiveValue = bytesToBigint(innerValue) + return { + item: -(positiveValue + 1n), + bytesConsumed: dataOffset + bytesConsumed + } + } else { + return yield* new CBORError({ + message: `Expected bytes for tag 3 (big_nint), got ${typeof innerValue}` + }) + } + } + + // For all other tags, return as tagged object + return { + item: new Tag({ tag: tagValue, value: innerValue }), + bytesConsumed: dataOffset + bytesConsumed + } + }) + +const decodeSimpleOrFloat = (data: Uint8Array): Effect.Effect => + Effect.gen(function* () { + const firstByte = data[0] + const additionalInfo = firstByte & 0x1f + + if (additionalInfo === CBOR_SIMPLE.FALSE) { + return false + } else if (additionalInfo === CBOR_SIMPLE.TRUE) { + return true + } else if (additionalInfo === CBOR_SIMPLE.NULL) { + return null + } else if (additionalInfo === CBOR_SIMPLE.UNDEFINED) { + return undefined + } else if (additionalInfo < 24) { + // Unassigned simple values 0-19 (not 20-23 which are assigned above) + // Return them as numbers for compatibility with test vectors + return additionalInfo + } else if (additionalInfo === 24) { + // Simple value with 1-byte payload + if (data.length < 2) { + return yield* new CBORError({ + message: "Insufficient data for 1-byte simple value" + }) + } + const simpleValue = data[1] + // Return the simple value as a number + // RFC 8949 allows unassigned simple values to be decoded + return simpleValue + } else if (additionalInfo === 25) { + // Half-precision float + if (data.length < 3) { + return yield* new CBORError({ + message: "Insufficient data for half-precision float" + }) + } + const value = (data[1] << 8) | data[2] + const float = decodeFloat16(value) + return float + } else if (additionalInfo === 26) { + // Single-precision float + if (data.length < 5) { + return yield* new CBORError({ + message: "Insufficient data for single-precision float" + }) + } + const view = new DataView(data.buffer, data.byteOffset + 1, 4) + return view.getFloat32(0, false) // big-endian + } else if (additionalInfo === 27) { + // Double-precision float + if (data.length < 9) { + return yield* new CBORError({ + message: "Insufficient data for double-precision float" + }) + } + const view = new DataView(data.buffer, data.byteOffset + 1, 8) + return view.getFloat64(0, false) // big-endian + } else { + return yield* new CBORError({ + message: `Unsupported simple/float encoding: ${additionalInfo}` + }) + } + }) + +// Helper functions for bigint conversion + +/** + * Convert a positive bigint to a big-endian byte array + * Used for CBOR tag 2 (big_uint) encoding + */ +const bigintToBytes = (value: bigint): Uint8Array => { + if (value === 0n) { + return new Uint8Array([0]) + } + + const bytes: Array = [] + let temp = value + + while (temp > 0n) { + bytes.unshift(Number(temp & 0xffn)) + temp = temp >> 8n + } + + return new Uint8Array(bytes) +} + +/** + * Convert a big-endian byte array to a positive bigint + * Used for CBOR tag 2/3 decoding + */ +const bytesToBigint = (bytes: Uint8Array): bigint => { + if (bytes.length === 0) { + return 0n + } + + let result = 0n + for (let i = 0; i < bytes.length; i++) { + result = (result << 8n) | BigInt(bytes[i]) + } + + return result +} + +// Helper function for length decoding + +const decodeLength = ( + data: Uint8Array, + offset: number +): Effect.Effect<{ length: number; bytesRead: number }, CBORError> => + Effect.gen(function* () { + if (offset >= data.length) { + return yield* new CBORError({ + message: "Insufficient data for length decoding" + }) + } + + const firstByte = data[offset] + const additionalInfo = firstByte & 0x1f + + if (additionalInfo < 24) { + return { length: additionalInfo, bytesRead: 1 } + } else if (additionalInfo === 24) { + if (data.length < offset + 2) { + return yield* new CBORError({ + message: "Insufficient data for 1-byte length" + }) + } + return { length: data[offset + 1], bytesRead: 2 } + } else if (additionalInfo === 25) { + if (data.length < offset + 3) { + return yield* new CBORError({ + message: "Insufficient data for 2-byte length" + }) + } + return { + length: (data[offset + 1] << 8) | data[offset + 2], + bytesRead: 3 + } + } else if (additionalInfo === 26) { + if (data.length < offset + 5) { + return yield* new CBORError({ + message: "Insufficient data for 4-byte length" + }) + } + return { + length: (data[offset + 1] << 24) | (data[offset + 2] << 16) | (data[offset + 3] << 8) | data[offset + 4], + bytesRead: 5 + } + } else { + return yield* new CBORError({ + message: `Unsupported length encoding: ${additionalInfo}` + }) + } + }) + +const decodeFloat16 = (value: number): number => { + const sign = (value & 0x8000) >> 15 + const exponent = (value & 0x7c00) >> 10 + const fraction = value & 0x03ff + + if (exponent === 0) { + return (sign ? -1 : 1) * Math.pow(2, -14) * (fraction / 1024) + } else if (exponent === 0x1f) { + return fraction ? NaN : sign ? -Infinity : Infinity + } else { + return (sign ? -1 : 1) * Math.pow(2, exponent - 15) * (1 + fraction / 1024) + } +} + +const encodeFloat16 = (value: number): number => { + if (Number.isNaN(value)) return 0x7e00 + if (value === Infinity) return 0x7c00 + if (value === -Infinity) return 0xfc00 + if (value === 0) return value === 0 && 1 / value === Infinity ? 0x0000 : 0x8000 + + const sign = value < 0 ? 1 : 0 + const absValue = Math.abs(value) + + if (absValue >= Math.pow(2, 16)) return sign ? 0xfc00 : 0x7c00 // Infinity + if (absValue < Math.pow(2, -24)) return sign ? 0x8000 : 0x0000 // Zero + + let exponent = Math.floor(Math.log2(absValue)) + let mantissa = absValue / Math.pow(2, exponent) + + if (exponent < -14) { + // Subnormal + mantissa = absValue / Math.pow(2, -14) + exponent = 0 + } else { + // Normal + mantissa = (mantissa - 1) * 1024 + exponent += 15 + } + + return (sign << 15) | (exponent << 10) | Math.round(mantissa) +} + +/** + * Create a CBOR bytes schema with custom codec options + * + * @since 1.0.0 + * @category schemas + */ +export const FromBytes = (options: CodecOptions) => + Schema.transformOrFail(Schema.Uint8ArrayFromSelf, CBORValueSchema, { + strict: true, + decode: (fromA, _, ast) => + Effect.mapError( + internalDecode(fromA), + (error) => + new ParseResult.Type( + ast, + fromA, + `Failed to decode CBOR value: ${error instanceof CBORError ? error.message : String(error)}` + ) + ), + encode: (toA, _, ast) => + Effect.mapError( + internalEncode(toA, options), + (error) => + new ParseResult.Type( + ast, + toA, + `Failed to encode CBOR value: ${error instanceof CBORError ? error.message : String(error)}` + ) + ) + }) + +export const FromHex = (options: CodecOptions) => Schema.compose(Bytes.FromHex, FromBytes(options)) + +export const Codec = (options: CodecOptions = DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options) + }, + CBORError + ) diff --git a/packages/evolution/src/Certificate.ts b/packages/evolution/src/Certificate.ts new file mode 100644 index 00000000..78d69f94 --- /dev/null +++ b/packages/evolution/src/Certificate.ts @@ -0,0 +1,164 @@ +import { Data, Schema } from "effect" + +// import * as PoolParams from "./PoolParams.js"; // Temporarily disabled +import * as Anchor from "./Anchor.js" +import * as Coin from "./Coin.js" +import * as Credential from "./Credential.js" +import * as DRep from "./DRep.js" +import * as EpochNo from "./EpochNo.js" +import * as PoolKeyHash from "./PoolKeyHash.js" + +/** + * Error class for Certificate related operations. + * + * @since 2.0.0 + * @category errors + */ +export class CertificateError extends Data.TaggedError("CertificateError")<{ + message?: string + reason?: "InvalidType" | "UnsupportedCertificate" +}> {} + +/** + * Certificate union schema based on Conway CDDL specification + * + * CDDL: certificate = + * [ + * stake_registration + * // stake_deregistration + * // stake_delegation + * // pool_registration + * // pool_retirement + * // reg_cert + * // unreg_cert + * // vote_deleg_cert + * // stake_vote_deleg_cert + * // stake_reg_deleg_cert + * // vote_reg_deleg_cert + * // stake_vote_reg_deleg_cert + * // auth_committee_hot_cert + * // resign_committee_cold_cert + * // reg_drep_cert + * // unreg_drep_cert + * // update_drep_cert + * ] + * + * stake_registration = (0, stake_credential) + * stake_deregistration = (1, stake_credential) + * stake_delegation = (2, stake_credential, pool_keyhash) + * pool_registration = (3, pool_params) + * pool_retirement = (4, pool_keyhash, epoch_no) + * reg_cert = (7, stake_credential, coin) + * unreg_cert = (8, stake_credential, coin) + * vote_deleg_cert = (9, stake_credential, drep) + * stake_vote_deleg_cert = (10, stake_credential, pool_keyhash, drep) + * stake_reg_deleg_cert = (11, stake_credential, pool_keyhash, coin) + * vote_reg_deleg_cert = (12, stake_credential, drep, coin) + * stake_vote_reg_deleg_cert = (13, stake_credential, pool_keyhash, drep, coin) + * auth_committee_hot_cert = (14, committee_cold_credential, committee_hot_credential) + * resign_committee_cold_cert = (15, committee_cold_credential, anchor/ nil) + * reg_drep_cert = (16, drep_credential, coin, anchor/ nil) + * unreg_drep_cert = (17, drep_credential, coin) + * update_drep_cert = (18, drep_credential, anchor/ nil) + * + * @since 2.0.0 + * @category schemas + */ +export const Certificate = Schema.Union( + // 0: stake_registration = (0, stake_credential) + Schema.TaggedStruct("StakeRegistration", { + stakeCredential: Credential.Credential + }), + // 1: stake_deregistration = (1, stake_credential) + Schema.TaggedStruct("StakeDeregistration", { + stakeCredential: Credential.Credential + }), + // 2: stake_delegation = (2, stake_credential, pool_keyhash) + Schema.TaggedStruct("StakeDelegation", { + stakeCredential: Credential.Credential, + poolKeyHash: PoolKeyHash.PoolKeyHash + }), + // 3: pool_registration = (3, pool_params) - Temporarily disabled + // Schema.TaggedStruct("PoolRegistration", { + // poolParams: PoolParams.PoolParams, + // }), + // 4: pool_retirement = (4, pool_keyhash, epoch_no) + Schema.TaggedStruct("PoolRetirement", { + poolKeyHash: PoolKeyHash.PoolKeyHash, + epoch: EpochNo.EpochNoSchema + }), + // 7: reg_cert = (7, stake_credential, coin) + Schema.TaggedStruct("RegCert", { + stakeCredential: Credential.Credential, + coin: Coin.CoinSchema + }), + // 8: unreg_cert = (8, stake_credential, coin) + Schema.TaggedStruct("UnregCert", { + stakeCredential: Credential.Credential, + coin: Coin.CoinSchema + }), + // 9: vote_deleg_cert = (9, stake_credential, drep) + Schema.TaggedStruct("VoteDelegCert", { + stakeCredential: Credential.Credential, + drep: DRep.DRep + }), + // 10: stake_vote_deleg_cert = (10, stake_credential, pool_keyhash, drep) + Schema.TaggedStruct("StakeVoteDelegCert", { + stakeCredential: Credential.Credential, + poolKeyHash: PoolKeyHash.PoolKeyHash, + drep: DRep.DRep + }), + // 11: stake_reg_deleg_cert = (11, stake_credential, pool_keyhash, coin) + Schema.TaggedStruct("StakeRegDelegCert", { + stakeCredential: Credential.Credential, + poolKeyHash: PoolKeyHash.PoolKeyHash, + coin: Coin.CoinSchema + }), + // 12: vote_reg_deleg_cert = (12, stake_credential, drep, coin) + Schema.TaggedStruct("VoteRegDelegCert", { + stakeCredential: Credential.Credential, + drep: DRep.DRep, + coin: Coin.CoinSchema + }), + // 13: stake_vote_reg_deleg_cert = (13, stake_credential, pool_keyhash, drep, coin) + Schema.TaggedStruct("StakeVoteRegDelegCert", { + stakeCredential: Credential.Credential, + poolKeyHash: PoolKeyHash.PoolKeyHash, + drep: DRep.DRep, + coin: Coin.CoinSchema + }), + // 14: auth_committee_hot_cert = (14, committee_cold_credential, committee_hot_credential) + Schema.TaggedStruct("AuthCommitteeHotCert", { + committeeColdCredential: Credential.Credential, + committeeHotCredential: Credential.Credential + }), + // 15: resign_committee_cold_cert = (15, committee_cold_credential, anchor/ nil) + Schema.TaggedStruct("ResignCommitteeColdCert", { + committeeColdCredential: Credential.Credential, + anchor: Schema.NullishOr(Anchor.Anchor) + }), + // 16: reg_drep_cert = (16, drep_credential, coin, anchor/ nil) + Schema.TaggedStruct("RegDrepCert", { + drepCredential: Credential.Credential, + coin: Coin.CoinSchema, + anchor: Schema.NullishOr(Anchor.Anchor) + }), + // 17: unreg_drep_cert = (17, drep_credential, coin) + Schema.TaggedStruct("UnregDrepCert", { + drepCredential: Credential.Credential, + coin: Coin.CoinSchema + }), + // 18: update_drep_cert = (18, drep_credential, anchor/ nil) + Schema.TaggedStruct("UpdateDrepCert", { + drepCredential: Credential.Credential, + anchor: Schema.NullishOr(Anchor.Anchor) + }) +) + +/** + * Type alias for Certificate. + * + * @since 2.0.0 + * @category model + */ +export type Certificate = typeof Certificate.Type diff --git a/packages/evolution/src/Codec.ts b/packages/evolution/src/Codec.ts new file mode 100644 index 00000000..5d419df6 --- /dev/null +++ b/packages/evolution/src/Codec.ts @@ -0,0 +1,112 @@ +/** + * Simple codec factory for creating encoding utilities from schema records + * + * @since 2.0.0 + * @category utilities + */ + +import type { ParseResult } from "effect" +import { Effect, Either, Schema } from "effect" + +/** + * Creates encoding and decoding utilities with custom error mapping + * + * @since 2.0.0 + * @category constructors + */ +export const createEncoders = < + T extends Record>, + ErrorClass extends { + new (options: { message?: string; cause?: unknown }): unknown + } +>( + schemas: T, + ErrorClass: ErrorClass +) => { + const createSyncMethods = (fn: any, operationType: "encode" | "decode") => + Object.fromEntries( + Object.entries(schemas).map(([key, schema]) => [ + key, + (input: any) => { + try { + return fn(schema)(input) + } catch (cause) { + throw new ErrorClass({ + message: `Failed to ${operationType} ${key}`, + cause + }) + } + } + ]) + ) + + const createEffectMethods = (fn: any, operationType: "encode" | "decode") => + Object.fromEntries( + Object.entries(schemas).map(([key, schema]) => [ + key, + (input: any) => + fn(schema)(input).pipe( + Effect.mapError( + (cause: ParseResult.ParseError) => + new ErrorClass({ + message: `Failed to ${operationType} ${key}`, + cause + }) + ) + ) + ]) + ) + + const createEitherMethods = (fn: any, operationType: "encode" | "decode") => + Object.fromEntries( + Object.entries(schemas).map(([key, schema]) => [ + key, + (input: any) => + fn(schema)(input).pipe( + Either.mapLeft( + (cause: ParseResult.ParseError) => + new ErrorClass({ + message: `Failed to ${operationType} ${key}`, + cause + }) + ) + ) + ]) + ) + + const encodeSync = createSyncMethods(Schema.encodeSync, "encode") + const decodeSync = createSyncMethods(Schema.decodeSync, "decode") + const encodeEffect = createEffectMethods(Schema.encode, "encode") + const decodeEffect = createEffectMethods(Schema.decode, "decode") + const encodeEither = createEitherMethods(Schema.encodeEither, "encode") + const decodeEither = createEitherMethods(Schema.decodeEither, "decode") + + return { + Encode: encodeSync as { + [K in keyof T]: T[K] extends Schema.Schema ? (input: A) => I : never + }, + Decode: decodeSync as { + [K in keyof T]: T[K] extends Schema.Schema ? (input: I) => A : never + }, + EncodeEffect: encodeEffect as { + [K in keyof T]: T[K] extends Schema.Schema + ? (input: A) => Effect.Effect> + : never + }, + DecodeEffect: decodeEffect as { + [K in keyof T]: T[K] extends Schema.Schema + ? (input: I) => Effect.Effect> + : never + }, + EncodeEither: encodeEither as { + [K in keyof T]: T[K] extends Schema.Schema + ? (input: A) => Either.Either> + : never + }, + DecodeEither: decodeEither as { + [K in keyof T]: T[K] extends Schema.Schema + ? (input: I) => Either.Either> + : never + } + } +} diff --git a/packages/evolution/src/Coin.ts b/packages/evolution/src/Coin.ts new file mode 100644 index 00000000..f2b092e8 --- /dev/null +++ b/packages/evolution/src/Coin.ts @@ -0,0 +1,122 @@ +import { Data, FastCheck, Schema } from "effect" + +/** + * Error class for Coin related operations. + * + * @since 2.0.0 + * @category errors + */ +export class CoinError extends Data.TaggedError("CoinError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Maximum value for a coin amount (maxWord64). + * + * @since 2.0.0 + * @category constants + */ +export const MAX_COIN_VALUE = 18446744073709551615n + +/** + * Schema for validating coin amounts as unsigned 64-bit integers. + * coin = uint + * + * @since 2.0.0 + * @category schemas + */ +export const CoinSchema = Schema.BigIntFromSelf.pipe( + Schema.filter((value) => value >= 0n && value <= MAX_COIN_VALUE) +).annotations({ + message: (issue) => `Coin must be between 0 and ${MAX_COIN_VALUE}, but got ${issue.actual}`, + identifier: "Coin" +}) + +/** + * Type alias for Coin representing ADA amounts in lovelace. + * 1 ADA = 1,000,000 lovelace + * + * @since 2.0.0 + * @category model + */ +export type Coin = typeof CoinSchema.Type + +/** + * Smart constructor for creating Coin values. + * + * @since 2.0.0 + * @category constructors + */ +export const make = CoinSchema.make + +/** + * Check if a value is a valid Coin. + * + * @since 2.0.0 + * @category predicates + */ +export const is = Schema.is(CoinSchema) + +/** + * Add two coin amounts safely. + * + * @since 2.0.0 + * @category transformation + */ +export const add = (a: Coin, b: Coin): Coin => { + const result = a + b + if (result > MAX_COIN_VALUE) { + throw new CoinError({ + message: `Addition overflow: ${a} + ${b} exceeds maximum coin value` + }) + } + return result +} + +/** + * Subtract two coin amounts safely. + * + * @since 2.0.0 + * @category transformation + */ +export const subtract = (a: Coin, b: Coin): Coin => { + const result = a - b + if (result < 0n) { + throw new CoinError({ + message: `Subtraction underflow: ${a} - ${b} results in negative value` + }) + } + return result +} + +/** + * Compare two coin amounts. + * + * @since 2.0.0 + * @category ordering + */ +export const compare = (a: Coin, b: Coin): -1 | 0 | 1 => { + if (a < b) return -1 + if (a > b) return 1 + return 0 +} + +/** + * Check if two coin amounts are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: Coin, b: Coin): boolean => a === b + +/** + * Generate a random Coin value. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.bigInt({ + min: 0n, + max: MAX_COIN_VALUE +}) diff --git a/packages/evolution/src/Combinator.ts b/packages/evolution/src/Combinator.ts new file mode 100644 index 00000000..918e878f --- /dev/null +++ b/packages/evolution/src/Combinator.ts @@ -0,0 +1,31 @@ +import { pipe, Schema } from "effect" + +import * as Bytes from "./Bytes.js" + +/** + * Regular expression that matches valid hexadecimal strings. + * Validates that a string: + * - Contains only hexadecimal characters (0-9, a-f) + * - Has an even number of characters (bytes are represented as pairs of hex digits) + * - Can be empty (matches zero or more pairs) + */ +export const HEX_REGEX = /^(?:[0-9a-f]{2})*$/ + +export const HexStringFilter = (self: Schema.Schema) => + pipe(self, Schema.pattern(HEX_REGEX)).annotations({ + message: () => `must be a hex string`, + identifier: "HexString" + }) + +export const HexStringSchema = Schema.String.pipe(Schema.filter((a) => Bytes.isHex(a))).annotations({ + message: () => `must be a hex string`, + identifier: "HexString" +}) + +export const Uint8ArraySchema = Schema.declare( + (input: unknown): input is Uint8Array => input instanceof Uint8ArraySchema, + { + identifier: "Uint8Array", + message: () => `Expected Uint8Array` + } +) diff --git a/packages/evolution/src/CommitteeColdCredential.ts b/packages/evolution/src/CommitteeColdCredential.ts new file mode 100644 index 00000000..5dc1a00d --- /dev/null +++ b/packages/evolution/src/CommitteeColdCredential.ts @@ -0,0 +1,55 @@ +/** + * Committee Cold Credential module - provides an alias for Credential specialized for committee cold key usage. + * + * In Cardano, committee_cold_credential = credential, representing the same credential structure + * but used specifically for committee cold keys in governance. + * + * @since 2.0.0 + */ + +import type * as CBOR from "./CBOR.js" +import * as Credential from "./Credential.js" + +/** + * Error class for CommitteeColdCredential operations - re-exports CredentialError. + * + * @since 2.0.0 + * @category errors + */ +export const CommitteeColdCredentialError = Credential.CredentialError + +/** + * CommitteeColdCredential schema - alias for the Credential schema. + * committee_cold_credential = credential + * + * @since 2.0.0 + * @category schemas + */ +export const CommitteeColdCredential = Credential.Credential + +/** + * Type representing a committee cold credential - alias for Credential type. + * + * @since 2.0.0 + * @category model + */ +export type CommitteeColdCredential = Credential.Credential + +/** + * Re-exported utilities from Credential module. + * + * @since 2.0.0 + */ +export const is = Credential.is +export const equals = Credential.equals +export const generator = Credential.generator +export const Codec = (options?: CBOR.CodecOptions) => Credential.Codec(options) + +/** + * CBOR encoding/decoding schemas. + * + * @since 2.0.0 + * @category schemas + */ +export const FromCBORBytes = Credential.FromCBORBytes +export const FromCBORHex = Credential.FromCBORHex diff --git a/packages/evolution/src/CommitteeHotCredential.ts b/packages/evolution/src/CommitteeHotCredential.ts new file mode 100644 index 00000000..d7cb6c28 --- /dev/null +++ b/packages/evolution/src/CommitteeHotCredential.ts @@ -0,0 +1,54 @@ +/** + * Committee Hot Credential module - provides an alias for Credential specialized for committee hot key usage. + * + * In Cardano, committee_hot_credential = credential, representing the same credential structure + * but used specifically for committee hot keys in governance. + * + * @since 2.0.0 + */ + +import * as Credential from "./Credential.js" + +/** + * Error class for CommitteeHotCredential operations - re-exports CredentialError. + * + * @since 2.0.0 + * @category errors + */ +export const CommitteeHotCredentialError = Credential.CredentialError + +/** + * CommitteeHotCredential schema - alias for the Credential schema. + * committee_hot_credential = credential + * + * @since 2.0.0 + * @category schemas + */ +export const CommitteeHotCredential = Credential.Credential + +/** + * Type representing a committee hot credential - alias for Credential type. + * + * @since 2.0.0 + * @category model + */ +export type CommitteeHotCredential = Credential.Credential + +/** + * Re-exported utilities from Credential module. + * + * @since 2.0.0 + */ +export const is = Credential.is +export const equals = Credential.equals +export const generator = Credential.generator +export const Codec = Credential.Codec + +/** + * CBOR encoding/decoding schemas. + * + * @since 2.0.0 + * @category schemas + */ +export const FromCBORBytes = Credential.FromCBORBytes +export const FromCBORHex = Credential.FromCBORHex diff --git a/packages/evolution/src/Credential.ts b/packages/evolution/src/Credential.ts new file mode 100644 index 00000000..e5bc98ca --- /dev/null +++ b/packages/evolution/src/Credential.ts @@ -0,0 +1,144 @@ +import { Data, Effect, FastCheck, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" +import * as KeyHash from "./KeyHash.js" +import * as ScriptHash from "./ScriptHash.js" + +/** + * Extends TaggedError for better error handling and categorization + * + * @since 2.0.0 + * @category errors + */ + +export class CredentialError extends Data.TaggedError("CredentialError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Credential schema representing either a key hash or script hash + * credential = [0, addr_keyhash // 1, script_hash] + * Used to identify ownership of addresses or stake rights + * + * @since 2.0.0 + * @category schemas + */ +export const Credential = Schema.Union( + Schema.TaggedStruct("KeyHash", { + hash: KeyHash.KeyHash + }), + Schema.TaggedStruct("ScriptHash", { + hash: ScriptHash.ScriptHash + }) +) + +/** + * Type representing a credential that can be either a key hash or script hash + * Used in various address formats to identify ownership + * + * @since 2.0.0 + * @category model + */ +export type Credential = typeof Credential.Type + +/** + * Check if the given value is a valid Credential + * + * @since 2.0.0 + * @category predicates + */ +export const is = Schema.is(Credential) + +export const CDDL = Schema.Tuple( + Schema.Literal(0n, 1n), + Schema.Uint8ArrayFromSelf // hash bytes +) + +/** + * CDDL schema for Credential as defined in the specification: + * credential = [0, addr_keyhash // 1, script_hash] + * + * @since 2.0.0 + * @category schemas + */ +export const FromCDDL = Schema.transformOrFail(CDDL, Schema.typeSchema(Credential), { + strict: true, + encode: (toI) => + Effect.gen(function* () { + switch (toI._tag) { + case "KeyHash": { + const keyHashBytes = yield* ParseResult.encode(KeyHash.FromBytes)(toI.hash) + return [0n, keyHashBytes] as const + } + case "ScriptHash": { + const scriptHashBytes = yield* ParseResult.encode(ScriptHash.BytesSchema)(toI.hash) + return [1n, scriptHashBytes] as const + } + } + }), + decode: ([tag, hashBytes]) => + Effect.gen(function* () { + switch (tag) { + case 0n: { + const keyHash = yield* ParseResult.decode(KeyHash.FromBytes)(hashBytes) + return Credential.members[0].make({ hash: keyHash }) + } + case 1n: { + const scriptHash = yield* ParseResult.decode(ScriptHash.BytesSchema)(hashBytes) + return Credential.members[1].make({ hash: scriptHash }) + } + } + }) +}) + +export const FromCBORBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + FromCDDL // CBOR โ†’ Credential + ) + +export const FromCBORHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromCBORBytes(options) // Uint8Array โ†’ Credential + ) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + cborBytes: FromCBORBytes(options), + cborHex: FromCBORHex(options) + }, + CredentialError + ) + +/** + * Check if two Credential instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: Credential, b: Credential): boolean => { + return a._tag === b._tag && a.hash === b.hash +} + +/** + * Generate a random Credential. + * Randomly selects between generating a KeyHash or ScriptHash credential. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.oneof( + FastCheck.record({ + _tag: FastCheck.constant("KeyHash" as const), + hash: KeyHash.generator + }), + FastCheck.record({ + _tag: FastCheck.constant("ScriptHash" as const), + hash: ScriptHash.generator + }) +) diff --git a/packages/evolution/src/DRep.ts b/packages/evolution/src/DRep.ts new file mode 100644 index 00000000..403ad749 --- /dev/null +++ b/packages/evolution/src/DRep.ts @@ -0,0 +1,330 @@ +import { Data, Effect, FastCheck, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" +import * as KeyHash from "./KeyHash.js" +import * as ScriptHash from "./ScriptHash.js" + +/** + * Error class for DRep related operations. + * + * @since 2.0.0 + * @category errors + */ +export class DRepError extends Data.TaggedError("DRepError")<{ + message?: string + reason?: "InvalidStructure" | "UnsupportedType" +}> {} + +/** + * Union schema for DRep representing different DRep types. + * + * drep = [0, addr_keyhash] / [1, script_hash] / [2] / [3] + * + * @since 2.0.0 + * @category schemas + */ +export const DRep = Schema.Union( + Schema.TaggedStruct("KeyHashDRep", { + keyHash: KeyHash.KeyHash + }), + Schema.TaggedStruct("ScriptHashDRep", { + scriptHash: ScriptHash.ScriptHash + }), + Schema.TaggedStruct("AlwaysAbstainDRep", {}), + Schema.TaggedStruct("AlwaysNoConfidenceDRep", {}) +) + +/** + * Type alias for DRep. + * + * @since 2.0.0 + * @category model + */ +export type DRep = typeof DRep.Type + +/** + * CDDL schema for DRep with proper transformation. + * drep = [0, addr_keyhash] / [1, script_hash] / [2] / [3] + * + * @since 2.0.0 + * @category schemas + */ +export const DRepCDDLSchema = Schema.transformOrFail( + Schema.Union( + Schema.Tuple(Schema.Literal(0), Schema.Uint8ArrayFromSelf), + Schema.Tuple(Schema.Literal(1), Schema.Uint8ArrayFromSelf), + Schema.Tuple(Schema.Literal(2)), + Schema.Tuple(Schema.Literal(3)) + ), + Schema.typeSchema(DRep), + { + strict: true, + encode: (toA) => + Effect.gen(function* () { + switch (toA._tag) { + case "KeyHashDRep": { + const keyHashBytes = yield* ParseResult.encode(KeyHash.FromBytes)(toA.keyHash) + return [0, keyHashBytes] as const + } + case "ScriptHashDRep": { + const scriptHashBytes = yield* ParseResult.encode(ScriptHash.BytesSchema)(toA.scriptHash) + return [1, scriptHashBytes] as const + } + case "AlwaysAbstainDRep": + return [2] as const + case "AlwaysNoConfidenceDRep": + return [3] as const + } + }), + decode: (fromA) => + Effect.gen(function* () { + const [tag, ...rest] = fromA + switch (tag) { + case 0: { + const keyHash = yield* ParseResult.decode(KeyHash.FromBytes)(rest[0] as Uint8Array) + return yield* ParseResult.decode(DRep)({ + _tag: "KeyHashDRep", + keyHash + }) + } + case 1: { + const scriptHash = yield* ParseResult.decode(ScriptHash.BytesSchema)(rest[0] as Uint8Array) + return yield* ParseResult.decode(DRep)({ + _tag: "ScriptHashDRep", + scriptHash + }) + } + case 2: + return yield* ParseResult.decode(DRep)({ + _tag: "AlwaysAbstainDRep" + }) + case 3: + return yield* ParseResult.decode(DRep)({ + _tag: "AlwaysNoConfidenceDRep" + }) + default: + return yield* ParseResult.fail( + new ParseResult.Type(Schema.typeSchema(DRep).ast, fromA, `Invalid DRep tag: ${tag}`) + ) + } + }) + } +) + +/** + * Type alias for KeyHashDRep. + * + * @since 2.0.0 + * @category model + */ +export type KeyHashDRep = Extract + +/** + * Type alias for ScriptHashDRep. + * + * @since 2.0.0 + * @category model + */ +export type ScriptHashDRep = Extract + +/** + * Type alias for AlwaysAbstainDRep. + * + * @since 2.0.0 + * @category model + */ +export type AlwaysAbstainDRep = Extract + +/** + * Type alias for AlwaysNoConfidenceDRep. + * + * @since 2.0.0 + * @category model + */ +export type AlwaysNoConfidenceDRep = Extract + +/** + * CBOR bytes transformation schema for DRep. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + DRepCDDLSchema // CBOR โ†’ DRep + ) + +/** + * CBOR hex transformation schema for DRep. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ DRep + ) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options) + }, + DRepError + ) + +/** + * Pattern match on a DRep to handle different DRep types. + * + * @since 2.0.0 + * @category transformation + */ +export const match = ( + drep: DRep, + cases: { + KeyHashDRep: (drep: KeyHashDRep) => A + ScriptHashDRep: (drep: ScriptHashDRep) => B + AlwaysAbstainDRep: (drep: AlwaysAbstainDRep) => C + AlwaysNoConfidenceDRep: (drep: AlwaysNoConfidenceDRep) => D + } +): A | B | C | D => { + switch (drep._tag) { + case "KeyHashDRep": + return cases.KeyHashDRep(drep) + case "ScriptHashDRep": + return cases.ScriptHashDRep(drep) + case "AlwaysAbstainDRep": + return cases.AlwaysAbstainDRep(drep) + case "AlwaysNoConfidenceDRep": + return cases.AlwaysNoConfidenceDRep(drep) + default: + throw new Error(`Exhaustive check failed: Unhandled case '${(drep as { _tag: string })._tag}' encountered.`) + } +} + +/** + * Check if a DRep is a KeyHashDRep. + * + * @since 2.0.0 + * @category predicates + */ +export const isKeyHashDRep = (drep: DRep): drep is KeyHashDRep => drep._tag === "KeyHashDRep" + +/** + * Check if a DRep is a ScriptHashDRep. + * + * @since 2.0.0 + * @category predicates + */ +export const isScriptHashDRep = (drep: DRep): drep is ScriptHashDRep => drep._tag === "ScriptHashDRep" + +/** + * Check if a DRep is an AlwaysAbstainDRep. + * + * @since 2.0.0 + * @category predicates + */ +export const isAlwaysAbstainDRep = (drep: DRep): drep is AlwaysAbstainDRep => drep._tag === "AlwaysAbstainDRep" + +/** + * Check if a DRep is an AlwaysNoConfidenceDRep. + * + * @since 2.0.0 + * @category predicates + */ +export const isAlwaysNoConfidenceDRep = (drep: DRep): drep is AlwaysNoConfidenceDRep => + drep._tag === "AlwaysNoConfidenceDRep" + +/** + * Check if the given value is a valid DRep + * + * @since 2.0.0 + * @category predicates + */ +export const isDRep = Schema.is(DRep) + +/** + * FastCheck generator for DRep instances. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.oneof( + FastCheck.record({ + keyHash: KeyHash.generator + }).map((props) => ({ _tag: "KeyHashDRep" as const, ...props })), + FastCheck.record({ + scriptHash: ScriptHash.generator + }).map((props) => ({ _tag: "ScriptHashDRep" as const, ...props })), + FastCheck.record({}).map(() => ({ _tag: "AlwaysAbstainDRep" as const })), + FastCheck.record({}).map(() => ({ _tag: "AlwaysNoConfidenceDRep" as const })) +) + +/** + * Check if two DRep instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (self: DRep, that: DRep): boolean => { + if (self._tag !== that._tag) return false + + switch (self._tag) { + case "KeyHashDRep": + return KeyHash.equals(self.keyHash, (that as KeyHashDRep).keyHash) + case "ScriptHashDRep": + return ScriptHash.equals(self.scriptHash, (that as ScriptHashDRep).scriptHash) + case "AlwaysAbstainDRep": + case "AlwaysNoConfidenceDRep": + return true // These have no additional data to compare + default: + return false + } +} + +/** + * Create a KeyHashDRep from a KeyHash. + * + * @since 2.0.0 + * @category constructors + */ +export const fromKeyHash = (keyHash: KeyHash.KeyHash): KeyHashDRep => ({ + _tag: "KeyHashDRep", + keyHash +}) + +/** + * Create a ScriptHashDRep from a ScriptHash. + * + * @since 2.0.0 + * @category constructors + */ +export const fromScriptHash = (scriptHash: ScriptHash.ScriptHash): ScriptHashDRep => ({ + _tag: "ScriptHashDRep", + scriptHash +}) + +/** + * Create an AlwaysAbstainDRep. + * + * @since 2.0.0 + * @category constructors + */ +export const alwaysAbstain = (): AlwaysAbstainDRep => ({ + _tag: "AlwaysAbstainDRep" +}) + +/** + * Create an AlwaysNoConfidenceDRep. + * + * @since 2.0.0 + * @category constructors + */ +export const alwaysNoConfidence = (): AlwaysNoConfidenceDRep => ({ + _tag: "AlwaysNoConfidenceDRep" +}) diff --git a/packages/evolution/src/DRepCredential.ts b/packages/evolution/src/DRepCredential.ts new file mode 100644 index 00000000..3835a28e --- /dev/null +++ b/packages/evolution/src/DRepCredential.ts @@ -0,0 +1,54 @@ +/** + * DRep Credential module - provides an alias for Credential specialized for DRep usage. + * + * In Cardano, drep_credential = credential, representing the same credential structure + * but used specifically for delegation representatives (DReps). + * + * @since 2.0.0 + */ + +import * as Credential from "./Credential.js" + +/** + * Error class for DRepCredential operations - re-exports CredentialError. + * + * @since 2.0.0 + * @category errors + */ +export const DRepCredentialError = Credential.CredentialError + +/** + * DRepCredential schema - alias for the Credential schema. + * drep_credential = credential + * + * @since 2.0.0 + * @category schemas + */ +export const DRepCredential = Credential.Credential + +/** + * Type representing a DRep credential - alias for Credential type. + * + * @since 2.0.0 + * @category model + */ +export type DRepCredential = Credential.Credential + +/** + * Re-exported utilities from Credential module. + * + * @since 2.0.0 + */ +export const isCredential = Credential.is +export const equals = Credential.equals +export const generator = Credential.generator +export const Codec = Credential.Codec + +/** + * CBOR encoding/decoding schemas. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = Credential.FromCBORBytes +export const FromHex = Credential.FromCBORHex diff --git a/packages/evolution/src/Data.ts b/packages/evolution/src/Data.ts new file mode 100644 index 00000000..0613c3b6 --- /dev/null +++ b/packages/evolution/src/Data.ts @@ -0,0 +1,729 @@ +import { Data as EffectData, Effect, FastCheck, ParseResult, pipe, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" +import * as Numeric from "./Numeric.js" + +/** + * Error class for Data related operations. + * + * @since 2.0.0 + * @category errors + */ +export class DataError extends EffectData.TaggedError("DataError")<{ + message?: string + cause?: unknown +}> {} + +/** + * PlutusData type definition based on Conway CDDL specification + * + * ``` + * CDDL: plutus_data = + * constr + * / {* plutus_data => plutus_data} + * / [* plutus_data] + * / big_int + * / bounded_bytes + * + * constr = + * #6.121([* a0]) + * / #6.122([* a0]) + * / #6.123([* a0]) + * / #6.124([* a0]) + * / #6.125([* a0]) + * / #6.126([* a0]) + * / #6.127([* a0]) + * / #6.102([uint, [* a0]]) + * ``` + * + * Constructor Index Limits: + * - Tags 121-127: Direct encoding for constructor indices 0-6 + * - Tag 102: General constructor encoding for any uint value + * - Maximum constructor index: 2^64 - 1 (18,446,744,073,709,551,615) + * as per CBOR RFC 8949 specification for unsigned integers + * + * @since 2.0.0 + * @category model + */ +export type Data = Constr | MapList | List | Int | ByteArray + +/** + * Constr type for constructor alternatives based on Conway CDDL specification + * + * ``` + * CDDL: constr = + * #6.121([* a0]) // index 0 + * / #6.122([* a0]) // index 1 + * / #6.123([* a0]) // index 2 + * / #6.124([* a0]) // index 3 + * / #6.125([* a0]) // index 4 + * / #6.126([* a0]) // index 5 + * / #6.127([* a0]) // index 6 + * / #6.102([uint, [* a0]]) // general constructor with custom index + * ``` + * + * Constructor Index Range: + * - Minimum: 0 + * - Maximum: 2^64 - 1 (18,446,744,073,709,551,615) + * as per CBOR RFC 8949 specification for unsigned integers + * + * @since 2.0.0 + * @category model + */ +// export interface Constr { +// readonly index: bigint; +// readonly fields: readonly Data[]; +// } + +export type MapList = Map + +/** + * PlutusList type for plutus data lists + * + * @since 2.0.0 + * @category model + */ +export type List = ReadonlyArray + +/** + * Schema for Constr data type + * + * @category schemas + * + * @since 2.0.0 + */ +// export const ConstrSchema: Schema.Schema = Schema.Struct({ +// index: Numeric.Uint64Schema, +// fields: Schema.Array(Schema.suspend((): Schema.Schema => DataSchema)), +// }); +export class Constr extends Schema.Class("Constr")({ + index: Numeric.Uint64Schema, + fields: Schema.Array(Schema.suspend((): Schema.Schema => DataSchema)) +}) {} + +/** + * Schema for PlutusMap data type + * + * @category schemas + * + * @since 2.0.0 + */ +export const MapSchema = Schema.MapFromSelf({ + key: Schema.suspend((): Schema.Schema => DataSchema), + value: Schema.suspend((): Schema.Schema => DataSchema) +}).annotations({ + identifier: "Data.Map" +}) + +/** + * Schema for PlutusList data type + * + * @category schemas + * + * @since 2.0.0 + */ +export const ListSchema = Schema.Array(Schema.suspend((): Schema.Schema => DataSchema)) + +/** + * Schema for PlutusBigInt data type + * + * Matches the CDDL specification for big_int: + * ``` + * big_int = int / big_uint / big_nint + * big_uint = #6.2(bounded_bytes) + * big_nint = #6.3(bounded_bytes) + * ``` + * + * Where: + * - `int` covers integers that fit in CBOR major types 0 and 1 (0 to 2^64-1 for positive, -(2^64-1) to -1 for negative) + * - `big_uint` (tag 2) covers positive integers larger than 2^64-1 + * - `big_nint` (tag 3) covers negative integers smaller than -(2^64-1) + * + * Note: JavaScript's Number.MAX_SAFE_INTEGER (2^53-1) is much smaller than CBOR's 64-bit limit. + * + * @category schemas + * + * @since 2.0.0 + */ +export const IntSchema = Schema.BigIntFromSelf.annotations({ + identifier: "Data.Int" +}) +export type Int = typeof IntSchema.Type + +/** + * Schema for PlutusBytes data type + * + * @category schemas + * + * @since 2.0.0 + */ +export const BytesSchema = Bytes.HexLenientSchema.annotations({ + identifier: "Data.Bytes" +}) +export type ByteArray = typeof BytesSchema.Type + +/** + * Combined schema for PlutusData type + * + * @category schemas + * + * @since 2.0.0 + */ +export const DataSchema: Schema.Schema = Schema.Union( + Schema.typeSchema(Constr), + Schema.typeSchema(MapSchema), + ListSchema, + Schema.typeSchema(IntSchema), + BytesSchema +).annotations({ + identifier: "Data" +}) + +/** + * Type guard to check if a value is a Constr + * + * @category predicates + * + * @since 2.0.0 + */ +export const isConstr = (data: unknown): data is Constr => { + // Check if it's a valid Constr using the schema + return Schema.is(Constr)(data) +} + +/** + * Type guard to check if a value is a PlutusMap + * + * @category predicates + * + * @since 2.0.0 + */ +export const isMap = Schema.is(MapSchema) + +/** + * Type guard to check if a value is a PlutusList + * + * @category predicates + * + * @since 2.0.0 + */ +export const isList = Schema.is(ListSchema) + +/** + * Type guard to check if a value is a PlutusBigInt + * + * @category predicates + * + * @since 2.0.0 + */ +export const isInt = Schema.is(IntSchema) + +/** + * Type guard to check if a value is a PlutusBytes + * + * @category predicates + * + * @since 2.0.0 + */ +export const isBytes = Schema.is(BytesSchema) + +/** + * Creates a constructor with the specified index and data + * + * @since 2.0.0 + * @category constructors + */ +export const constr = (index: bigint, data: Array): Constr => + new Constr({ + index, + fields: data + }) + +/** + * Creates a Plutus map from key-value pairs + * + * @since 2.0.0 + * @category constructors + */ +export const map = (entries: Array<{ key: Data; value: Data }>): MapList => + new Map(entries.map(({ key, value }) => [key, value])) + +/** + * Creates a Plutus list from items + * + * @since 2.0.0 + * @category constructors + */ +export const list = (list: Array): List => list + +/** + * Creates Plutus big integer + * + * @since 2.0.0 + * @category constructors + */ +export const int = (integer: bigint): Int => integer + +/** + * Creates Plutus bounded bytes from hex string + * + * @since 2.0.0 + * @category constructors + */ +export const bytearray = (bytes: string): ByteArray => bytes + +/** + * Pattern matching helper for Constr types + * + * @since 2.0.0 + * @category utilities + */ +export const matchConstr = ( + constr: Constr, + cases: { + [key: number]: (fields: ReadonlyArray) => T + _: (index: number, fields: ReadonlyArray) => T + } +): T => { + const specificCase = cases[Number(constr.index)] + if (specificCase) { + return specificCase(constr.fields) + } + return cases._(Number(constr.index), constr.fields) +} + +/** + * Pattern matching helper for PlutusData types + * + * @since 2.0.0 + * @category utilities + */ +export const matchData = ( + data: Data, + cases: { + Map: (entries: ReadonlyArray<[Data, Data]>) => T + List: (items: ReadonlyArray) => T + Int: (value: bigint) => T + Bytes: (bytes: string) => T + Constr: (constr: Constr) => T + } +): T => { + if (isMap(data)) { + return cases.Map(Array.from(data.entries())) + } + if (isList(data)) { + return cases.List(data) + } + if (isInt(data)) { + return cases.Int(data) + } + if (isBytes(data)) { + return cases.Bytes(data) + } + if (isConstr(data)) { + return cases.Constr(data) + } + // If we reach here, it means the data is not a recognized PlutusData type + throw new DataError({ + message: `Unsupported PlutusData type: ${typeof data === "bigint" ? String(data) : String(data)}` + }) +} + +/** + * Creates an arbitrary that generates PlutusData values with controlled depth + * + * @category generators + * + * @since 2.0.0 + */ +export const genPlutusData = (depth: number = 3): FastCheck.Arbitrary => { + if (depth <= 0) { + // Base cases: PlutusBigInt or PlutusBytes + return FastCheck.oneof(genPlutusBigInt(), genPlutusBytes()) + } + + // Recursive cases with decreasing depth + return FastCheck.oneof( + genPlutusBigInt(), + genPlutusBytes(), + genConstr(depth - 1), + genPlutusList(depth - 1), + genPlutusMap(depth - 1) + ) +} + +/** + * Creates an arbitrary that generates PlutusBytes values + * + * @category generators + * + * @since 2.0.0 + */ +export const genPlutusBytes = (): FastCheck.Arbitrary => + FastCheck.uint8Array({ + minLength: 0, // Allow empty arrays (valid for PlutusBytes) + maxLength: 32 // Max 32 bytes + }).map((bytes) => bytearray(Bytes.Codec.Decode.bytesLenient(bytes))) + +/** + * Creates an arbitrary that generates PlutusBigInt values + * + * @category generators + * + * @since 2.0.0 + */ +export const genPlutusBigInt = (): FastCheck.Arbitrary => FastCheck.bigInt().map((value) => int(value)) + +/** + * Creates an arbitrary that generates PlutusList values + * + * @category generators + * + * @since 2.0.0 + */ +export const genPlutusList = (depth: number): FastCheck.Arbitrary => + FastCheck.array(genPlutusData(depth), { + minLength: 0, + maxLength: 5 + }).map((value) => list(value)) + +/** + * Creates an arbitrary that generates Constr values + * + * @category generators + * + * @since 2.0.0 + */ +export const genConstr = (depth: number): FastCheck.Arbitrary => + FastCheck.tuple( + FastCheck.bigInt({ min: 0n, max: 2n ** 64n - 1n }), + FastCheck.array(genPlutusData(depth), { + minLength: 0, + maxLength: 5 + }) + ).map(([index, data]) => constr(index, data)) + +/** + * Creates an arbitrary that generates PlutusMap values with unique keys + * Following a similar distribution pattern: + * - 60% PlutusBigInt keys + * - 30% PlutusBytes keys + * - 10% Complex keys + * + * @category generators + * + * @since 2.0.0 + */ +export const genPlutusMap = (depth: number): FastCheck.Arbitrary => { + // Helper to create key-value pairs with unique keys + const uniqueKeyValuePairs = (keyGen: FastCheck.Arbitrary, maxSize: number) => + FastCheck.uniqueArray(FastCheck.tuple(keyGen, genPlutusData(depth > 0 ? depth - 1 : 0)), { + minLength: 0, + maxLength: maxSize * 2, // Generate more than needed to increase chance of unique keys + selector: (pair) => { + // Use a simple string representation for unique key identification + // Handle BigInt safely by converting to string first + const keyStr = typeof pair[0] === "bigint" ? String(pair[0]) : JSON.stringify(pair[0]) + return keyStr + } + }).map((pairs) => pairs.map(([key, value]) => ({ key, value }))) + + // PlutusBigInt keys (more frequent) + const bigIntPairs = uniqueKeyValuePairs(genPlutusBigInt(), 3) + + // PlutusBytes keys (medium frequency) + const bytesPairs = uniqueKeyValuePairs(genPlutusBytes(), 3) + + // Complex keys (less frequent) + const complexPairs = uniqueKeyValuePairs(genPlutusData(depth > 1 ? depth - 2 : 0), 2) + + return FastCheck.oneof(bigIntPairs, bytesPairs, complexPairs).map((pairs) => map(pairs)) +} + +/** + * FastCheck generators for PlutusData types + * + * @since 2.0.0 + * @category generators + */ +export const generator = genPlutusData(3) + +/** + * CBOR value representation for PlutusData + * This represents the intermediate CBOR structure that corresponds to PlutusData + * + * @since 2.0.0 + * @category model + */ + +export const FromCBORBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.transformOrFail(Schema.Uint8ArrayFromSelf, DataSchema, { + strict: true, + encode: (toI) => + pipe(plutusDataToCBORValue(toI), (cborValue) => ParseResult.encode(CBOR.FromBytes(options))(cborValue)), + decode: (fromI) => pipe(ParseResult.decode(CBOR.FromBytes(options))(fromI), Effect.map(cborValueToPlutusData)) + }).annotations({ + identifier: "Data.FromCBORBytes" + }) + +export const FromCBORHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose(Bytes.FromHex, FromCBORBytes(options)).annotations({ + identifier: "Data.FromCBORHex" + }) + +/** + * Convert PlutusData to CBORValue + * + * @since 2.0.0 + * @category transformation + */ +export const plutusDataToCBORValue = (data: Data): CBOR.CBOR => { + return matchData(data, { + Map: (entries): CBOR.CBOR => { + // PlutusData Map -> CBOR map directly (no extra tag needed for top-level maps) + const cborEntries = entries.map( + ([key, value]) => [plutusDataToCBORValue(key), plutusDataToCBORValue(value)] as const + ) + return new Map(cborEntries) + }, + List: (items): CBOR.CBOR => { + // PlutusData List -> CBOR array directly (no extra tag needed for top-level arrays) + const cborItems = items.map(plutusDataToCBORValue) + return cborItems + }, + Int: (value): CBOR.CBOR => { + // PlutusData Int -> CBOR uint or nint + return value + }, + Bytes: (bytes): CBOR.CBOR => { + return Bytes.Codec.Encode.bytesLenient(bytes) + }, + Constr: (constr): CBOR.CBOR => { + // PlutusData Constr -> CBOR tags based on index + const cborFields = constr.fields.map(plutusDataToCBORValue) + const fieldsArray = cborFields // Now just a raw array + + if (constr.index >= 0n && constr.index <= 6n) { + // Direct encoding for constructor indices 0-6 (tags 121-127) + return new CBOR.Tag({ + tag: Number(121n + constr.index), + value: fieldsArray + }) + } else if (constr.index >= 7n && constr.index <= 127n) { + // Alternative encoding for constructor indices 7-127 (tag 1280+index-7) + return new CBOR.Tag({ + tag: Number(1280n + constr.index - 7n), + value: fieldsArray + }) + } else { + // General constructor encoding for any uint value (tag 102) + return new CBOR.Tag({ + tag: 102, + value: [constr.index, fieldsArray] + }) + } + } + }) +} + +/** + * Convert CBORValue to PlutusData + * + * @since 2.0.0 + * @category transformation + */ +export const cborValueToPlutusData = (cborValue: CBOR.CBOR): Data => { + // Handle bigint (uint/nint) + if (CBOR.isInteger(cborValue)) { + return cborValue + } + + // Handle Uint8Array (bytes) + if (CBOR.isByteArray(cborValue)) { + // Handle empty bytes case + if (cborValue.length === 0) { + return "" + } + return Bytes.Codec.Decode.bytes(cborValue) + } + + // Handle tagged values + if (CBOR.isTag(cborValue)) { + const tag = cborValue.tag + const value = cborValue.value + + // Handle constructor tags (121-127 for indices 0-6) + if (tag >= 121 && tag <= 127) { + if (!Array.isArray(value)) { + throw new DataError({ + message: `Expected array for constructor tag ${tag}, got ${typeof value}` + }) + } + const fields = value.map(cborValueToPlutusData) + return new Constr({ index: BigInt(tag - 121), fields }) + } + + // Handle alternative constructor tags (1280-1400 for indices 7-127) + if (tag >= 1280 && tag <= 1400) { + if (!Array.isArray(value)) { + throw new DataError({ + message: `Expected array for constructor tag ${tag}, got ${typeof value}` + }) + } + const fields = value.map(cborValueToPlutusData) + return new Constr({ index: BigInt(tag - 1280 + 7), fields }) + } + + // Handle general constructor tag (102) + if (tag === 102) { + if (!Array.isArray(value)) { + throw new DataError({ + message: `Expected array for general constructor tag, got ${typeof value}` + }) + } + + const array = value + if (array.length === 2) { + // Two element arrays are general constructors [index, fields] + const indexValue = array[0] + const fieldsValue = array[1] + + if (typeof indexValue !== "bigint") { + throw new DataError({ + message: `Expected bigint for constructor index, got ${typeof indexValue}` + }) + } + if (!Array.isArray(fieldsValue)) { + throw new DataError({ + message: `Expected array for constructor fields, got ${typeof fieldsValue}` + }) + } + + const fields = fieldsValue.map(cborValueToPlutusData) + return new Constr({ index: indexValue, fields }) + } + } + + // Handle big_uint tag (2) for large positive integers + if (tag === 2) { + if (!(value instanceof Uint8Array)) { + throw new DataError({ + message: `Expected bytes for big_uint tag, got ${typeof value}` + }) + } + // Convert bytes to bigint (big-endian) + return bytesToBigint(value) + } + + // Handle big_nint tag (3) for large negative integers + if (tag === 3) { + if (!(value instanceof Uint8Array)) { + throw new DataError({ + message: `Expected bytes for big_nint tag, got ${typeof value}` + }) + } + // Convert bytes to bigint and negate (add 1) per RFC 8949 + const positiveValue = bytesToBigint(value) + return -(positiveValue + 1n) + } + + throw new DataError({ message: `Unsupported CBOR tag: ${tag}` }) + } + + // Handle arrays + if (CBOR.isArray(cborValue)) { + // Arrays are Lists + const items = cborValue.map(cborValueToPlutusData) + return items + } + + // Handle Maps + if (CBOR.isMap(cborValue)) { + // Maps are Maps + const entries = Array.from(cborValue.entries()).map( + ([k, v]) => [cborValueToPlutusData(k), cborValueToPlutusData(v)] as const + ) + return new Map(entries) + } + + // Handle unsupported types + throw new DataError({ + message: `Unknown CBOR value type: ${JSON.stringify(cborValue)}` + }) +} + +/** + * Convert a big-endian byte array to a positive bigint + * Used for CBOR tag 2/3 decoding + */ +const bytesToBigint = (bytes: Uint8Array): bigint => { + if (bytes.length === 0) { + return 0n + } + + let result = 0n + for (let i = 0; i < bytes.length; i++) { + result = (result << 8n) | BigInt(bytes[i]) + } + + return result +} + +// Function overloads for better type inference +export function Codec(params: { + schema: Schema.Schema + options?: CBOR.CodecOptions +}): ReturnType< + typeof _Codec.createEncoders< + { + toData: Schema.Schema + cborHex: Schema.Schema + cborBytes: Schema.Schema + }, + typeof DataError + > +> + +export function Codec(params?: { options?: CBOR.CodecOptions }): ReturnType< + typeof _Codec.createEncoders< + { + cborHex: Schema.Schema + cborBytes: Schema.Schema + }, + typeof DataError + > +> + +export function Codec(params?: { schema?: Schema.Schema; options?: CBOR.CodecOptions }) { + const schema = params?.schema + const codecOptions = params?.options || CBOR.DEFAULT_OPTIONS + + const FromHex = FromCBORHex(codecOptions) + const FromBytes = FromCBORBytes(codecOptions) + + if (schema) { + // With schema: type A -> Data B -> CBOR + const schemaToHex = Schema.compose(FromHex, schema) + const schemaToBytes = Schema.compose(FromBytes, schema) + + return _Codec.createEncoders( + { + toData: schema, + cborHex: schemaToHex, + cborBytes: schemaToBytes + }, + DataError + ) + } + + // Without schema: Data -> CBOR directly + return _Codec.createEncoders( + { + cborHex: FromHex, + cborBytes: FromBytes + }, + DataError + ) +} diff --git a/packages/evolution/src/DataJson.ts b/packages/evolution/src/DataJson.ts new file mode 100644 index 00000000..470ba39a --- /dev/null +++ b/packages/evolution/src/DataJson.ts @@ -0,0 +1,112 @@ +import { pipe, Schema } from "effect" +import type { ParseIssue } from "effect/ParseResult" + +import * as Bytes from "./Bytes.js" + +/** + * Plutus data types and schemas for serialization/deserialization between + * TypeScript types and Cardano's Plutus data format + * + * @since 1.0.0 + */ +export type Data = Integer | ByteArray | List | Map | Constr + +export interface List extends ReadonlyArray {} + +export interface Integer { + readonly int: number +} + +export interface ByteArray { + readonly bytes: string +} +export interface Constr { + readonly constructor: number + readonly fields: ReadonlyArray +} + +export interface mkConstr { + readonly constructor: number + readonly fields: ReadonlyArray +} + +export type Map = { + readonly [key: string]: Data +} + +// Schema for Plutus data types + +const renderParseIssue = (issue: ParseIssue): string | undefined => + typeof issue.actual === "object" ? "[complex value]" : String(issue.actual) + +const HexString = (self: Schema.Schema) => + pipe( + self, + Schema.filter((value) => Bytes.isHex(value), { + message: (issue) => `Expected a hexadecimal string but received: ${issue.actual}.` + }) + ) + +export const ByteArray = Schema.Struct({ + bytes: pipe( + Schema.String, + Schema.annotations({ + message: (issue: ParseIssue) => ({ + message: `Expected ByteArray but got ${renderParseIssue(issue)}.`, + override: true + }) + }), + HexString + ) +}).annotations({ + identifier: "ByteArray" +}) + +export const Integer = Schema.Struct({ + int: Schema.Number +}).annotations({ + identifier: "Integer", + message: (issue: ParseIssue) => { + return `Expected Integer but got ${renderParseIssue(issue)}.` + } +}) + +export const isInteger = Schema.is(Integer) + +export const isByteArray = Schema.is(ByteArray) + +export const List = Schema.Array(Schema.suspend((): Schema.Schema => Data)).annotations({ + identifier: "List", + message: (issue: ParseIssue) => { + return `Expected List but got ${renderParseIssue(issue)}.` + } +}) + +export const isList = Schema.is(List) + +export const Map = Schema.Record({ + key: Schema.String, + value: Schema.suspend((): Schema.Schema => Data) +}).annotations({ + identifier: "Map", + message: (issue: ParseIssue) => { + return `Expected Map but got ${renderParseIssue(issue)}.` + } +}) + +export const isMap = Schema.is(Map) + +export const Constr = Schema.Struct({ + constructor: Schema.Number, + fields: Schema.Array(Schema.suspend((): Schema.Schema => Data)) +}).annotations({ + identifier: "Constr", + message: (issue: ParseIssue) => { + return `Expected Constr but got ${renderParseIssue(issue)}.` + } +}) + +export const isConstr = Schema.is(Constr) + +// export const Data = Schema.Union(Integer, ByteArray, List, Map, Constr); +export const Data: Schema.Schema = Schema.Union(Integer, ByteArray, List, Map, Constr) diff --git a/packages/evolution/src/DatumOption.ts b/packages/evolution/src/DatumOption.ts new file mode 100644 index 00000000..4e45e13e --- /dev/null +++ b/packages/evolution/src/DatumOption.ts @@ -0,0 +1,214 @@ +import { Data, Effect, FastCheck, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as Bytes32 from "./Bytes32.js" +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" +import * as PlutusData from "./Data.js" + +/** + * Error class for DatumOption related operations. + * + * @since 2.0.0 + * @category errors + */ +export class DatumOptionError extends Data.TaggedError("DatumOptionError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for DatumHash variant of DatumOption. + * Represents a reference to datum data stored elsewhere via its hash. + * + * @since 2.0.0 + * @category schemas + */ +export class DatumHash extends Schema.TaggedClass()("DatumHash", { + hash: Bytes32.HexSchema +}) {} + +/** + * Schema for InlineDatum variant of DatumOption. + * Represents inline plutus data embedded directly in the transaction output. + * + * @since 2.0.0 + * @category schemas + */ +export class InlineDatum extends Schema.TaggedClass()("InlineDatum", { + data: PlutusData.DataSchema +}) {} + +/** + * Schema for DatumOption representing optional datum information in transaction outputs. + * + * CDDL: datum_option = [0, Bytes32// 1, data] + * + * Where: + * - [0, Bytes32] represents a datum hash reference + * - [1, data] represents inline plutus data + * + * @since 2.0.0 + * @category schemas + */ +export const DatumOptionSchema = Schema.Union(DatumHash, InlineDatum).annotations({ + identifier: "DatumOption" +}) + +/** + * Type alias for DatumOption representing optional datum information. + * Can be either a hash reference to datum data or inline plutus data. + * + * @since 2.0.0 + * @category model + */ +export type DatumOption = typeof DatumOptionSchema.Type + +/** + * Create a DatumOption with a datum hash. + * + * @since 2.0.0 + * @category constructors + */ +export const fromHash = (hash: string): DatumOption => new DatumHash({ hash }) + +/** + * Create a DatumOption with inline data. + * + * @since 2.0.0 + * @category constructors + */ +export const fromInlineData = (data: PlutusData.Data): DatumOption => new InlineDatum({ data }) + +/** + * Check if a DatumOption is a datum hash. + * + * @since 2.0.0 + * @category predicates + */ +export const isDatumHash = (datumOption: DatumOption): datumOption is DatumHash => datumOption._tag === "DatumHash" + +/** + * Check if a DatumOption is inline data. + * + * @since 2.0.0 + * @category predicates + */ +export const isInlineDatum = (datumOption: DatumOption): datumOption is InlineDatum => + datumOption._tag === "InlineDatum" + +/** + * Get the hash from a DatumHash, or undefined if it's not a DatumHash. + * + * @since 2.0.0 + * @category transformation + */ +export const getHash = (datumOption: DatumOption): string | undefined => + isDatumHash(datumOption) ? datumOption.hash : undefined + +/** + * Get the data from an InlineDatum, or undefined if it's not an InlineDatum. + * + * @since 2.0.0 + * @category transformation + */ +export const getData = (datumOption: DatumOption): PlutusData.Data | undefined => + isInlineDatum(datumOption) ? datumOption.data : undefined + +/** + * FastCheck generator for DatumOption instances. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.oneof( + FastCheck.record({ + _tag: FastCheck.constant("DatumHash" as const), + hash: FastCheck.hexaString({ minLength: 64, maxLength: 64 }) + }).map((props) => new DatumHash(props)), + FastCheck.record({ + _tag: FastCheck.constant("InlineDatum" as const), + data: PlutusData.genPlutusData() + }).map((props) => new InlineDatum(props)) +) + +/** + * CDDL schema for DatumOption. + * datum_option = [0, Bytes32// 1, data] + * + * Where: + * - [0, Bytes32] represents a datum hash (tag 0 with 32-byte hash) + * - [1, data] represents inline data (tag 1 with CBOR-encoded plutus data) + * + * @since 2.0.0 + * @category schemas + */ +export const DatumOptionCDDLSchema = Schema.transformOrFail( + Schema.Union( + Schema.Tuple(Schema.Literal(0n), CBOR.ByteArray), // [0, Bytes32] + Schema.Tuple(Schema.Literal(1n), CBOR.CBORSchema) // [1, data] - data as CBOR bytes + ), + Schema.typeSchema(DatumOptionSchema), + { + strict: true, + encode: (toA) => + Effect.gen(function* () { + const result = + toA._tag === "DatumHash" + ? ([0n, yield* ParseResult.encode(Bytes.FromBytes)(toA.hash)] as const) // Encode as [0, Bytes32] + : ([1n, PlutusData.plutusDataToCBORValue(toA.data)] as const) // Encode as [1, data] + return result + }), + decode: ([tag, value], _, ast) => + Effect.gen(function* () { + if (tag === 0n) { + // Decode as DatumHash + const hash = yield* ParseResult.decode(Bytes.FromBytes)(value) + return new DatumHash({ hash }) + } else if (tag === 1n) { + // Decode as InlineDatum + return new InlineDatum({ + data: PlutusData.cborValueToPlutusData(value) + }) + } + return yield* ParseResult.fail( + new ParseResult.Type(ast, [tag, value], `Invalid DatumOption tag: ${tag}. Expected 0 or 1.`) + ) + }) + } +) + +/** + * CBOR bytes transformation schema for DatumOption. + * Transforms between Uint8Array and DatumOption using CBOR encoding. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + DatumOptionCDDLSchema // CBOR โ†’ DatumOption + ) + +/** + * CBOR hex transformation schema for DatumOption. + * Transforms between hex string and DatumOption using CBOR encoding. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ DatumOption + ) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options) + }, + DatumOptionError + ) diff --git a/packages/evolution/src/Devnet/Devnet.ts b/packages/evolution/src/Devnet/Devnet.ts new file mode 100644 index 00000000..02ab45ef --- /dev/null +++ b/packages/evolution/src/Devnet/Devnet.ts @@ -0,0 +1,714 @@ +import { NodeStream } from "@effect/platform-node" +import Docker from "dockerode" +import { Data, Effect, Stream } from "effect" +import * as fs from "fs" +import * as os from "os" +import * as path from "path" + +import * as DevnetDefault from "./DevnetDefault.js" + +export class CardanoDevNetError extends Data.TaggedError("CardanoDevNetError")<{ + reason: + | "container_not_found" + | "container_creation_failed" + | "container_start_failed" + | "container_stop_failed" + | "container_removal_failed" + | "container_inspection_failed" + | "temp_directory_creation_failed" + | "config_file_write_failed" + | "file_permissions_failed" + | "network_creation_failed" + | "kupo_container_creation_failed" + | "kupo_container_start_failed" + | "kupo_container_stop_failed" + | "ogmios_container_creation_failed" + | "ogmios_container_start_failed" + | "ogmios_container_stop_failed" + message: string + cause?: unknown +}> {} + +export interface DevNetContainer { + readonly id: string + readonly name: string +} + +export interface DevNetCluster { + readonly cardanoNode: DevNetContainer + readonly kupo?: DevNetContainer | undefined + readonly ogmios?: DevNetContainer | undefined + readonly networkName: string +} + +/** + * Internal utilities for DevNet operations. + * + * @since 2.0.0 + * @category utilities + */ +const Utils = { + findContainer: (containerName: string) => + Effect.tryPromise({ + try: () => { + const docker = new Docker() + return docker.listContainers({ all: true }).then((containers) => { + const found = containers.find((c) => c.Names.includes(`/${containerName}`)) + return found ? docker.getContainer(found.Id) : undefined + }) + }, + catch: (cause) => + new CardanoDevNetError({ + reason: "container_not_found", + message: "Ensure Docker is running and accessible.", + cause + }) + }), + + writeConfigFiles: (config: Required) => + Effect.gen(function* () { + const tempDir = yield* Effect.tryPromise({ + try: () => fs.promises.mkdtemp(path.join(os.tmpdir(), "cardano-devnet-")), + catch: (cause) => + new CardanoDevNetError({ + reason: "temp_directory_creation_failed", + message: "Check if the system temp directory is writable.", + cause + }) + }) + + const writeFile = (filename: string, content: unknown) => + Effect.tryPromise({ + try: () => fs.promises.writeFile(path.join(tempDir, filename), JSON.stringify(content, null, 2)), + catch: (cause) => + new CardanoDevNetError({ + reason: "config_file_write_failed", + message: `Ensure sufficient disk space and write permissions for ${filename}.`, + cause + }) + }) + + const setFilePermissions = (filename: string, mode: number) => + Effect.tryPromise({ + try: () => fs.promises.chmod(path.join(tempDir, filename), mode), + catch: (cause) => + new CardanoDevNetError({ + reason: "file_permissions_failed", + message: `Check if the filesystem supports permission changes for ${filename}.`, + cause + }) + }) + + const topology = { + Producers: [] + } as const + + yield* Effect.all([ + writeFile("config.json", config.nodeConfig), + writeFile("topology.json", topology), + writeFile("genesis-byron.json", config.byronGenesis), + writeFile("genesis-shelley.json", config.shelleyGenesis), + writeFile("genesis-alonzo.json", config.alonzoGenesis), + writeFile("genesis-conway.json", config.conwayGenesis), + writeFile("kes.skey", config.kesKey), + setFilePermissions("kes.skey", 0o600), // Owner read/write only + writeFile("pool.cert", config.opCert), + setFilePermissions("pool.cert", 0o600), // Owner read/write only + writeFile("vrf.skey", config.vrfSkey), + setFilePermissions("vrf.skey", 0o600) // Owner read/write only + ]) + + return tempDir + }), + + createCardanoContainer: (config: Required, networkName: string, tempDir: string) => + Effect.tryPromise({ + try: () => { + const docker = new Docker() + const volumeName = `${config.clusterName}-ipc` + return docker.createContainer({ + Image: config.image, + name: `${config.clusterName}-cardano-node`, + ExposedPorts: { + [`${config.ports.node}/tcp`]: {}, + [`${config.ports.submit}/tcp`]: {} + }, + HostConfig: { + PortBindings: { + [`${config.ports.node}/tcp`]: [{ HostPort: String(config.ports.node) }], + [`${config.ports.submit}/tcp`]: [{ HostPort: String(config.ports.submit) }] + }, + Binds: [ + `${tempDir}:/opt/cardano/config:ro`, + `${tempDir}:/opt/cardano/keys:ro`, + `${volumeName}:/opt/cardano/ipc` + ] + // NetworkMode: networkName, + }, + Env: [ + `CARDANO_NODE_SOCKET_PATH=/opt/cardano/ipc/node.socket`, + `CARDANO_BLOCK_PRODUCER=true`, + `CARDANO_NETWORK_MAGIC=${config.networkMagic}` + ], + Cmd: [ + "run", + "--topology", + "/opt/cardano/config/topology.json", + "--database-path", + "/opt/cardano/data", + "--socket-path", + "/opt/cardano/ipc/node.socket", + "--host-addr", + "0.0.0.0", + "--port", + String(config.ports.node), + "--config", + "/opt/cardano/config/config.json", + "--shelley-kes-key", + "/opt/cardano/config/kes.skey", + "--shelley-vrf-key", + "/opt/cardano/config/vrf.skey", + "--shelley-operational-certificate", + "/opt/cardano/config/pool.cert" + ] + }) + }, + catch: (cause) => + new CardanoDevNetError({ + reason: "container_creation_failed", + message: "Verify Docker daemon is running and the image is accessible.", + cause + }) + }), + + createKupoContainer: (config: Required, networkName: string, tempDir: string) => + Effect.gen(function* () { + if (!config.kupo.enabled) return undefined + + const docker = new Docker() + const kupoName = `${config.clusterName}-kupo` + const volumeName = `${config.clusterName}-ipc` + + // Build command arguments with proper type checking + const cmdArgs = [ + "--node-socket", + "/ipc/node.socket", + "--host", + "0.0.0.0", + "--port", + String(config.kupo.port), + "--log-level", + config.kupo.logLevel || "Info", + "--node-config", + "/config/config.json", + "--match", + config.kupo.match || "*", + "--since", + config.kupo.since || "origin", + "--workdir", + "/db" + ] + + // Add optional defer-db-indexes flag + if (config.kupo.deferDbIndexes) { + cmdArgs.push("--defer-db-indexes") + } + + return yield* Effect.tryPromise({ + try: () => + docker.createContainer({ + Image: config.kupo.image || DevnetDefault.DEFAULT_KUPO_CONFIG.image, + name: kupoName, + ExposedPorts: { + [`${config.kupo.port || DevnetDefault.DEFAULT_KUPO_CONFIG.port}/tcp`]: {} + }, + HostConfig: { + PortBindings: { + [`${config.kupo.port || DevnetDefault.DEFAULT_KUPO_CONFIG.port}/tcp`]: [ + { + HostPort: String(config.kupo.port || DevnetDefault.DEFAULT_KUPO_CONFIG.port) + } + ] + }, + // NetworkMode: networkName, + Binds: [`${tempDir}:/config:ro`, `${volumeName}:/ipc`] + }, + Env: [`CARDANO_NETWORK=custom`, `CARDANO_NODE_SOCKET_PATH=/ipc/node.socket`], + Cmd: cmdArgs + }), + catch: (cause) => + new CardanoDevNetError({ + reason: "kupo_container_creation_failed", + message: "Failed to create Kupo container. Check Docker permissions and image availability.", + cause + }) + }) + }), + + createOgmiosContainer: (config: Required, networkName: string, tempDir: string) => + Effect.gen(function* () { + if (!config.ogmios.enabled) return undefined + + const docker = new Docker() + const ogmiosName = `${config.clusterName}-ogmios` + const volumeName = `${config.clusterName}-ipc` + + return yield* Effect.tryPromise({ + try: () => + docker.createContainer({ + Image: config.ogmios.image || DevnetDefault.DEFAULT_OGMIOS_CONFIG.image, + name: ogmiosName, + ExposedPorts: { + [`${config.ogmios.port || DevnetDefault.DEFAULT_OGMIOS_CONFIG.port}/tcp`]: {} + }, + HostConfig: { + PortBindings: { + [`${config.ogmios.port || DevnetDefault.DEFAULT_OGMIOS_CONFIG.port}/tcp`]: [ + { + HostPort: String(config.ogmios.port || DevnetDefault.DEFAULT_OGMIOS_CONFIG.port) + } + ] + }, + // NetworkMode: networkName, + Binds: [`${tempDir}:/config:ro`, `${volumeName}:/ipc`] + }, + Env: [`NETWORK=custom`, `CARDANO_NODE_SOCKET_PATH=/ipc/node.socket`], + Cmd: [ + "--log-level", + config.ogmios.logLevel || DevnetDefault.DEFAULT_OGMIOS_CONFIG.logLevel, + "--host", + "0.0.0.0", + "--port", + String(config.ogmios.port || DevnetDefault.DEFAULT_OGMIOS_CONFIG.port), + "--node-socket", + "/ipc/node.socket", + "--node-config", + "/config/config.json" + ] + }), + catch: (cause) => + new CardanoDevNetError({ + reason: "ogmios_container_creation_failed", + message: "Failed to create Ogmios container. Check Docker permissions and image availability.", + cause + }) + }) + }) +} as const + +/** + * Cluster management operations for Cardano DevNet. + * + * @since 2.0.0 + * @category cluster + */ +export const Cluster = { + /** + * Create a new cardano devnet cluster with optional Kupo and Ogmios containers. + * + * @since 2.0.0 + * @category constructors + */ + make: (config: DevnetDefault.DevNetConfig = {}): Effect.Effect => + Effect.gen(function* () { + const fullConfig: Required = { + clusterName: config.clusterName ?? DevnetDefault.DEFAULT_DEVNET_CONFIG.clusterName, + image: config.image ?? DevnetDefault.DEFAULT_DEVNET_CONFIG.image, + ports: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.ports, + ...config.ports + }, + networkMagic: config.networkMagic ?? DevnetDefault.DEFAULT_DEVNET_CONFIG.networkMagic, + nodeConfig: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.nodeConfig, + ...config.nodeConfig + }, + byronGenesis: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.byronGenesis, + ...config.byronGenesis + }, + shelleyGenesis: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.shelleyGenesis, + ...config.shelleyGenesis + }, + alonzoGenesis: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.alonzoGenesis, + ...config.alonzoGenesis + }, + conwayGenesis: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.conwayGenesis, + ...config.conwayGenesis + }, + kesKey: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.kesKey, + ...config.kesKey + }, + opCert: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.opCert, + ...config.opCert + }, + vrfSkey: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.vrfSkey, + ...config.vrfSkey + }, + kupo: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.kupo, + ...config.kupo + }, + ogmios: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.ogmios, + ...config.ogmios + } + } + + const networkName = `${fullConfig.clusterName}-network` + + // Write configuration files + const tempDir = yield* Utils.writeConfigFiles(fullConfig) + + // Remove existing containers if they exist + const containerNames = [ + `${fullConfig.clusterName}-cardano-node`, + `${fullConfig.clusterName}-kupo`, + `${fullConfig.clusterName}-ogmios` + ] + + for (const containerName of containerNames) { + const existingContainer = yield* Utils.findContainer(containerName) + if (existingContainer) { + const info = yield* Effect.tryPromise({ + try: () => existingContainer.inspect(), + catch: (cause) => + new CardanoDevNetError({ + reason: "container_inspection_failed", + message: "The container may be in an invalid state.", + cause + }) + }) + + if (info.State.Running) { + yield* Effect.tryPromise({ + try: () => existingContainer.stop(), + catch: (cause) => + new CardanoDevNetError({ + reason: "container_stop_failed", + message: "Try manually stopping the container or restarting Docker.", + cause + }) + }) + } + + yield* Effect.tryPromise({ + try: () => existingContainer.remove(), + catch: (cause) => + new CardanoDevNetError({ + reason: "container_removal_failed", + message: "Ensure no processes are using the container.", + cause + }) + }) + } + } + + // Create containers + const cardanoContainer = yield* Utils.createCardanoContainer(fullConfig, networkName, tempDir) + const kupoContainer = yield* Utils.createKupoContainer(fullConfig, networkName, tempDir) + const ogmiosContainer = yield* Utils.createOgmiosContainer(fullConfig, networkName, tempDir) + + return { + cardanoNode: { + id: cardanoContainer.id, + name: `${fullConfig.clusterName}-cardano-node` + }, + kupo: kupoContainer + ? { + id: kupoContainer.id, + name: `${fullConfig.clusterName}-kupo` + } + : undefined, + ogmios: ogmiosContainer + ? { + id: ogmiosContainer.id, + name: `${fullConfig.clusterName}-ogmios` + } + : undefined, + networkName + } + }), + + /** + * Create a new cardano devnet cluster, throws on error. + * + * @since 2.0.0 + * @category constructors + */ + makeOrThrow: (config: DevnetDefault.DevNetConfig = {}) => Effect.runPromise(Cluster.make(config)), + + /** + * Start a devnet cluster (all containers). + * + * @since 2.0.0 + * @category lifecycle + */ + start: (cluster: DevNetCluster): Effect.Effect => + Effect.gen(function* () { + // Start Cardano node first + yield* Container.start(cluster.cardanoNode) + const docker = new Docker().getContainer(cluster.cardanoNode.id) + const awaitForBlockProduction = Effect.promise(() => + docker.logs({ + stdout: true, + stderr: true, + follow: true + }) + ).pipe( + Stream.fromEffect, + Stream.flatMap((stream) => + NodeStream.fromReadable( + () => stream, + (error) => + new CardanoDevNetError({ + reason: "container_inspection_failed", + message: "Failed to read container logs", + cause: error + }) + ) + ), + Stream.takeUntil( + (line) => + line.toString().includes("Forge.Loop.AdoptedBlock") || line.toString().includes("Forge.Loop.NodeIsLeader") + ), + Stream.runDrain + ) + yield* awaitForBlockProduction + + // Start child containers + if (cluster.kupo) { + yield* Container.start(cluster.kupo) + } + if (cluster.ogmios) { + yield* Container.start(cluster.ogmios) + } + }), + + /** + * Start a devnet cluster, throws on error. + * + * @since 2.0.0 + * @category lifecycle + */ + startOrThrow: (cluster: DevNetCluster) => Effect.runPromise(Cluster.start(cluster)), + + /** + * Stop a devnet cluster (all containers). + * + * @since 2.0.0 + * @category lifecycle + */ + stop: (cluster: DevNetCluster): Effect.Effect => + Effect.gen(function* () { + // Stop child containers first + if (cluster.kupo) { + yield* Container.stop(cluster.kupo) + } + if (cluster.ogmios) { + yield* Container.stop(cluster.ogmios) + } + + // Stop Cardano node last + yield* Container.stop(cluster.cardanoNode) + }), + + /** + * Stop a devnet cluster, throws on error. + * + * @since 2.0.0 + * @category lifecycle + */ + stopOrThrow: (cluster: DevNetCluster) => Effect.runPromise(Cluster.stop(cluster)), + + /** + * Remove a devnet cluster (all containers and network). + * + * @since 2.0.0 + * @category lifecycle + */ + remove: (cluster: DevNetCluster): Effect.Effect => + Effect.gen(function* () { + // Remove containers (removeContainer stops them first) + yield* Container.remove(cluster.cardanoNode) + if (cluster.kupo) { + yield* Container.remove(cluster.kupo) + } + if (cluster.ogmios) { + yield* Container.remove(cluster.ogmios) + } + }), + + /** + * Remove a devnet cluster, throws on error. + * + * @since 2.0.0 + * @category lifecycle + */ + removeOrThrow: (cluster: DevNetCluster) => Effect.runPromise(Cluster.remove(cluster)) +} as const + +/** + * Individual container management operations. + * + * @since 2.0.0 + * @category container + */ +export const Container = { + /** + * Start a specific devnet container. + * + * @since 2.0.0 + * @category lifecycle + */ + start: (container: DevNetContainer): Effect.Effect => + Effect.tryPromise({ + try: () => new Docker().getContainer(container.id).start(), + catch: (cause) => + new CardanoDevNetError({ + reason: "container_start_failed", + message: "Check if ports are available and Docker has sufficient resources.", + cause + }) + }), + + /** + * Start a specific devnet container, throws on error. + * + * @since 2.0.0 + * @category lifecycle + */ + startOrThrow: (container: DevNetContainer) => Effect.runPromise(Container.start(container)), + + /** + * Stop a specific devnet container. + * + * @since 2.0.0 + * @category lifecycle + */ + stop: (container: DevNetContainer): Effect.Effect => + Effect.gen(function* () { + const docker = new Docker() + const dockerContainer = docker.getContainer(container.id) + + const info = yield* Effect.tryPromise({ + try: () => dockerContainer.inspect(), + catch: (cause) => + new CardanoDevNetError({ + reason: "container_inspection_failed", + message: "The container may have been removed externally.", + cause + }) + }) + + if (info.State.Running) { + yield* Effect.tryPromise({ + try: () => dockerContainer.stop(), + catch: (cause) => + new CardanoDevNetError({ + reason: "container_stop_failed", + message: "Try force stopping with 'docker stop --force' or restart Docker.", + cause + }) + }) + } + }), + + /** + * Stop a specific devnet container, throws on error. + * + * @since 2.0.0 + * @category lifecycle + */ + stopOrThrow: (container: DevNetContainer) => Effect.runPromise(Container.stop(container)), + + /** + * Remove a specific devnet container. + * + * @since 2.0.0 + * @category lifecycle + */ + remove: (container: DevNetContainer): Effect.Effect => + Effect.gen(function* () { + yield* Container.stop(container) + + yield* Effect.tryPromise({ + try: () => new Docker().getContainer(container.id).remove(), + catch: (cause) => + new CardanoDevNetError({ + reason: "container_removal_failed", + message: "Ensure the container is stopped and no volumes are in use.", + cause + }) + }) + }), + + /** + * Remove a specific devnet container, throws on error. + * + * @since 2.0.0 + * @category lifecycle + */ + removeOrThrow: (container: DevNetContainer) => Effect.runPromise(Container.remove(container)), + + /** + * Get container status information. + * + * @since 2.0.0 + * @category inspection + */ + getStatus: (container: DevNetContainer): Effect.Effect => + Effect.tryPromise({ + try: () => new Docker().getContainer(container.id).inspect(), + catch: (cause) => + new CardanoDevNetError({ + reason: "container_inspection_failed", + message: "The container may be corrupted or inaccessible.", + cause + }) + }), + + /** + * Get container status information, throws on error. + * + * @since 2.0.0 + * @category inspection + */ + getStatusOrThrow: (container: DevNetContainer) => Effect.runPromise(Container.getStatus(container)), + + isImageAvailable: (imageName: string): Effect.Effect => + Effect.tryPromise({ + try: () => { + const docker = new Docker() + return docker.listImages({ filters: { reference: [imageName] } }).then((images) => images.length > 0) + }, + catch: (cause) => + new CardanoDevNetError({ + reason: "container_inspection_failed", + message: "Failed to check image availability.", + cause + }) + }), + + isImageAvailableOrThrow: (imageName: string) => Effect.runPromise(Container.isImageAvailable(imageName)), + + downloadImage: (imageName: string): Effect.Effect => + Effect.tryPromise({ + try: () => { + const docker = new Docker() + return docker.pull(imageName) + }, + catch: (cause) => + new CardanoDevNetError({ + reason: "container_inspection_failed", + message: "Failed to download the Docker image.", + cause + }) + }) +} as const diff --git a/packages/evolution/src/Devnet/Devnet.ts.bak b/packages/evolution/src/Devnet/Devnet.ts.bak new file mode 100644 index 00000000..d7bc733d --- /dev/null +++ b/packages/evolution/src/Devnet/Devnet.ts.bak @@ -0,0 +1,804 @@ +import { NodeStream } from "@effect/platform-node"; +import Docker from "dockerode"; +import { Data, Effect, Stream } from "effect"; +import * as fs from "fs"; +import * as os from "os"; +import * as path from "path"; + +import * as DevnetDefault from "./DevnetDefault.js"; + +export class CardanoDevNetError extends Data.TaggedError("CardanoDevNetError")<{ + reason: + | "container_not_found" + | "container_creation_failed" + | "container_start_failed" + | "container_stop_failed" + | "container_removal_failed" + | "container_inspection_failed" + | "temp_directory_creation_failed" + | "config_file_write_failed" + | "file_permissions_failed" + | "network_creation_failed" + | "kupo_container_creation_failed" + | "kupo_container_start_failed" + | "kupo_container_stop_failed" + | "ogmios_container_creation_failed" + | "ogmios_container_start_failed" + | "ogmios_container_stop_failed"; + message: string; + cause?: unknown; +}> {} + +export interface DevNetContainer { + readonly id: string; + readonly name: string; +} + +export interface DevNetCluster { + readonly cardanoNode: DevNetContainer + readonly kupo?: DevNetContainer | undefined + readonly ogmios?: DevNetContainer | undefined + readonly networkName: string +} + +/** + * Internal utilities for DevNet operations. + * + * @since 2.0.0 + * @category utilities + */ +const Utils = { + findContainer: (containerName: string) => + Effect.tryPromise({ + try: () => { + const docker = new Docker(); + return docker.listContainers({ all: true }).then((containers) => { + const found = containers.find((c) => + c.Names.includes(`/${containerName}`), + ); + return found ? docker.getContainer(found.Id) : undefined; + }); + }, + catch: (cause) => + new CardanoDevNetError({ + reason: "container_not_found", + message: "Ensure Docker is running and accessible.", + cause, + }), + }), + + writeConfigFiles: (config: Required) => + Effect.gen(function* () { + const tempDir = yield* Effect.tryPromise({ + try: () => + fs.promises.mkdtemp(path.join(os.tmpdir(), "cardano-devnet-")), + catch: (cause) => + new CardanoDevNetError({ + reason: "temp_directory_creation_failed", + message: "Check if the system temp directory is writable.", + cause, + }), + }); + + const writeFile = (filename: string, content: unknown) => + Effect.tryPromise({ + try: () => + fs.promises.writeFile( + path.join(tempDir, filename), + JSON.stringify(content, null, 2), + ), + catch: (cause) => + new CardanoDevNetError({ + reason: "config_file_write_failed", + message: `Ensure sufficient disk space and write permissions for ${filename}.`, + cause, + }), + }); + + const setFilePermissions = (filename: string, mode: number) => + Effect.tryPromise({ + try: () => fs.promises.chmod(path.join(tempDir, filename), mode), + catch: (cause) => + new CardanoDevNetError({ + reason: "file_permissions_failed", + message: `Check if the filesystem supports permission changes for ${filename}.`, + cause, + }), + }); + + const topology = { + Producers: [], + } as const; + + yield* Effect.all([ + writeFile("config.json", config.nodeConfig), + writeFile("topology.json", topology), + writeFile("genesis-byron.json", config.byronGenesis), + writeFile("genesis-shelley.json", config.shelleyGenesis), + writeFile("genesis-alonzo.json", config.alonzoGenesis), + writeFile("genesis-conway.json", config.conwayGenesis), + writeFile("kes.skey", config.kesKey), + setFilePermissions("kes.skey", 0o600), // Owner read/write only + writeFile("pool.cert", config.opCert), + setFilePermissions("pool.cert", 0o600), // Owner read/write only + writeFile("vrf.skey", config.vrfSkey), + setFilePermissions("vrf.skey", 0o600), // Owner read/write only + ]); + + return tempDir; + }), + + createCardanoContainer: ( + config: Required, + networkName: string, + tempDir: string, + ) => + Effect.tryPromise({ + try: () => { + const docker = new Docker(); + const volumeName = `${config.clusterName}-ipc`; + return docker.createContainer({ + Image: config.image, + name: `${config.clusterName}-cardano-node`, + ExposedPorts: { + [`${config.ports.node}/tcp`]: {}, + [`${config.ports.submit}/tcp`]: {}, + }, + HostConfig: { + PortBindings: { + [`${config.ports.node}/tcp`]: [ + { HostPort: String(config.ports.node) }, + ], + [`${config.ports.submit}/tcp`]: [ + { HostPort: String(config.ports.submit) }, + ], + }, + Binds: [ + `${tempDir}:/opt/cardano/config:ro`, + `${tempDir}:/opt/cardano/keys:ro`, + `${volumeName}:/opt/cardano/ipc`, + ], + // NetworkMode: networkName, + }, + Env: [ + `CARDANO_NODE_SOCKET_PATH=/opt/cardano/ipc/node.socket`, + `CARDANO_BLOCK_PRODUCER=true`, + `CARDANO_NETWORK_MAGIC=${config.networkMagic}`, + ], + Cmd: [ + "run", + "--topology", + "/opt/cardano/config/topology.json", + "--database-path", + "/opt/cardano/data", + "--socket-path", + "/opt/cardano/ipc/node.socket", + "--host-addr", + "0.0.0.0", + "--port", + String(config.ports.node), + "--config", + "/opt/cardano/config/config.json", + "--shelley-kes-key", + "/opt/cardano/config/kes.skey", + "--shelley-vrf-key", + "/opt/cardano/config/vrf.skey", + "--shelley-operational-certificate", + "/opt/cardano/config/pool.cert", + ], + }); + }, + catch: (cause) => + new CardanoDevNetError({ + reason: "container_creation_failed", + message: + "Verify Docker daemon is running and the image is accessible.", + cause, + }), + }), + + createKupoContainer: ( + config: Required, + networkName: string, + tempDir: string, + ) => + Effect.gen(function* () { + if (!config.kupo.enabled) return undefined; + + const docker = new Docker(); + const kupoName = `${config.clusterName}-kupo`; + const volumeName = `${config.clusterName}-ipc`; + + // Build command arguments with proper type checking + const cmdArgs = [ + "--node-socket", + "/ipc/node.socket", + "--host", + "0.0.0.0", + "--port", + String(config.kupo.port), + "--log-level", + config.kupo.logLevel || "Info", + "--node-config", + "/config/config.json", + "--match", + config.kupo.match || "*", + "--since", + config.kupo.since || "origin", + "--workdir", + "/db", + ]; + + // Add optional defer-db-indexes flag + if (config.kupo.deferDbIndexes) { + cmdArgs.push("--defer-db-indexes"); + } + + return yield* Effect.tryPromise({ + try: () => + docker.createContainer({ + Image: config.kupo.image || DevnetDefault.DEFAULT_KUPO_CONFIG.image, + name: kupoName, + ExposedPorts: { + [`${config.kupo.port || DevnetDefault.DEFAULT_KUPO_CONFIG.port}/tcp`]: + {}, + }, + HostConfig: { + PortBindings: { + [`${config.kupo.port || DevnetDefault.DEFAULT_KUPO_CONFIG.port}/tcp`]: + [ + { + HostPort: String( + config.kupo.port || + DevnetDefault.DEFAULT_KUPO_CONFIG.port, + ), + }, + ], + }, + // NetworkMode: networkName, + Binds: [`${tempDir}:/config:ro`, `${volumeName}:/ipc`], + }, + Env: [ + `CARDANO_NETWORK=custom`, + `CARDANO_NODE_SOCKET_PATH=/ipc/node.socket`, + ], + Cmd: cmdArgs, + }), + catch: (cause) => + new CardanoDevNetError({ + reason: "kupo_container_creation_failed", + message: + "Failed to create Kupo container. Check Docker permissions and image availability.", + cause, + }), + }); + }), + + createOgmiosContainer: ( + config: Required, + networkName: string, + tempDir: string, + ) => + Effect.gen(function* () { + if (!config.ogmios.enabled) return undefined; + + const docker = new Docker(); + const ogmiosName = `${config.clusterName}-ogmios`; + const volumeName = `${config.clusterName}-ipc`; + + return yield* Effect.tryPromise({ + try: () => + docker.createContainer({ + Image: + config.ogmios.image || DevnetDefault.DEFAULT_OGMIOS_CONFIG.image, + name: ogmiosName, + ExposedPorts: { + [`${config.ogmios.port || DevnetDefault.DEFAULT_OGMIOS_CONFIG.port}/tcp`]: + {}, + }, + HostConfig: { + PortBindings: { + [`${config.ogmios.port || DevnetDefault.DEFAULT_OGMIOS_CONFIG.port}/tcp`]: + [ + { + HostPort: String( + config.ogmios.port || + DevnetDefault.DEFAULT_OGMIOS_CONFIG.port, + ), + }, + ], + }, + // NetworkMode: networkName, + Binds: [`${tempDir}:/config:ro`, `${volumeName}:/ipc`], + }, + Env: [ + `NETWORK=custom`, + `CARDANO_NODE_SOCKET_PATH=/ipc/node.socket`, + ], + Cmd: [ + "--log-level", + config.ogmios.logLevel || + DevnetDefault.DEFAULT_OGMIOS_CONFIG.logLevel, + "--host", + "0.0.0.0", + "--port", + String( + config.ogmios.port || DevnetDefault.DEFAULT_OGMIOS_CONFIG.port, + ), + "--node-socket", + "/ipc/node.socket", + "--node-config", + "/config/config.json", + ], + }), + catch: (cause) => + new CardanoDevNetError({ + reason: "ogmios_container_creation_failed", + message: + "Failed to create Ogmios container. Check Docker permissions and image availability.", + cause, + }), + }); + }), +} as const; + +/** + * Cluster management operations for Cardano DevNet. + * + * @since 2.0.0 + * @category cluster + */ +export const Cluster = { + /** + * Create a new cardano devnet cluster with optional Kupo and Ogmios containers. + * + * @since 2.0.0 + * @category constructors + */ + make: ( + config: DevnetDefault.DevNetConfig = {}, + ): Effect.Effect => + Effect.gen(function* () { + const fullConfig: Required = { + clusterName: + config.clusterName ?? DevnetDefault.DEFAULT_DEVNET_CONFIG.clusterName, + image: config.image ?? DevnetDefault.DEFAULT_DEVNET_CONFIG.image, + ports: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.ports, + ...config.ports, + }, + networkMagic: + config.networkMagic ?? + DevnetDefault.DEFAULT_DEVNET_CONFIG.networkMagic, + nodeConfig: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.nodeConfig, + ...config.nodeConfig, + }, + byronGenesis: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.byronGenesis, + ...config.byronGenesis, + }, + shelleyGenesis: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.shelleyGenesis, + ...config.shelleyGenesis, + }, + alonzoGenesis: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.alonzoGenesis, + ...config.alonzoGenesis, + }, + conwayGenesis: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.conwayGenesis, + ...config.conwayGenesis, + }, + kesKey: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.kesKey, + ...config.kesKey, + }, + opCert: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.opCert, + ...config.opCert, + }, + vrfSkey: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.vrfSkey, + ...config.vrfSkey, + }, + kupo: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.kupo, + ...config.kupo, + }, + ogmios: { + ...DevnetDefault.DEFAULT_DEVNET_CONFIG.ogmios, + ...config.ogmios, + }, + }; + + const networkName = `${fullConfig.clusterName}-network`; + + // Write configuration files + const tempDir = yield* Utils.writeConfigFiles(fullConfig); + + // Remove existing containers if they exist + const containerNames = [ + `${fullConfig.clusterName}-cardano-node`, + `${fullConfig.clusterName}-kupo`, + `${fullConfig.clusterName}-ogmios`, + ]; + + for (const containerName of containerNames) { + const existingContainer = yield* Utils.findContainer(containerName); + if (existingContainer) { + const info = yield* Effect.tryPromise({ + try: () => existingContainer.inspect(), + catch: (cause) => + new CardanoDevNetError({ + reason: "container_inspection_failed", + message: "The container may be in an invalid state.", + cause, + }), + }); + + if (info.State.Running) { + yield* Effect.tryPromise({ + try: () => existingContainer.stop(), + catch: (cause) => + new CardanoDevNetError({ + reason: "container_stop_failed", + message: + "Try manually stopping the container or restarting Docker.", + cause, + }), + }); + } + + yield* Effect.tryPromise({ + try: () => existingContainer.remove(), + catch: (cause) => + new CardanoDevNetError({ + reason: "container_removal_failed", + message: "Ensure no processes are using the container.", + cause, + }), + }); + } + } + + // Create containers + const cardanoContainer = yield* Utils.createCardanoContainer( + fullConfig, + networkName, + tempDir, + ); + const kupoContainer = yield* Utils.createKupoContainer( + fullConfig, + networkName, + tempDir, + ); + const ogmiosContainer = yield* Utils.createOgmiosContainer( + fullConfig, + networkName, + tempDir, + ); + + return { + cardanoNode: { + id: cardanoContainer.id, + name: `${fullConfig.clusterName}-cardano-node`, + }, + kupo: kupoContainer + ? { + id: kupoContainer.id, + name: `${fullConfig.clusterName}-kupo`, + } + : undefined, + ogmios: ogmiosContainer + ? { + id: ogmiosContainer.id, + name: `${fullConfig.clusterName}-ogmios`, + } + : undefined, + networkName, + }; + }), + + /** + * Create a new cardano devnet cluster, throws on error. + * + * @since 2.0.0 + * @category constructors + */ + makeOrThrow: (config: DevnetDefault.DevNetConfig = {}) => + Effect.runPromise(Cluster.make(config)), + + /** + * Start a devnet cluster (all containers). + * + * @since 2.0.0 + * @category lifecycle + */ + start: (cluster: DevNetCluster): Effect.Effect => + Effect.gen(function* () { + // Start Cardano node first + yield* Container.start(cluster.cardanoNode); + const docker = new Docker().getContainer(cluster.cardanoNode.id); + const awaitForBlockProduction = Effect.promise(() => + docker.logs({ + stdout: true, + stderr: true, + follow: true, + }), + ).pipe( + Stream.fromEffect, + Stream.flatMap((stream) => + NodeStream.fromReadable( + () => stream, + (error) => + new CardanoDevNetError({ + reason: "container_inspection_failed", + message: "Failed to read container logs", + cause: error, + }), + ), + ), + Stream.takeUntil( + (line) => + line.toString().includes("Forge.Loop.AdoptedBlock") || + line.toString().includes("Forge.Loop.NodeIsLeader"), + ), + Stream.runDrain, + ); + yield* awaitForBlockProduction; + + // Start child containers + if (cluster.kupo) { + yield* Container.start(cluster.kupo); + } + if (cluster.ogmios) { + yield* Container.start(cluster.ogmios); + } + }), + + /** + * Start a devnet cluster, throws on error. + * + * @since 2.0.0 + * @category lifecycle + */ + startOrThrow: (cluster: DevNetCluster) => + Effect.runPromise(Cluster.start(cluster)), + + /** + * Stop a devnet cluster (all containers). + * + * @since 2.0.0 + * @category lifecycle + */ + stop: (cluster: DevNetCluster): Effect.Effect => + Effect.gen(function* () { + // Stop child containers first + if (cluster.kupo) { + yield* Container.stop(cluster.kupo); + } + if (cluster.ogmios) { + yield* Container.stop(cluster.ogmios); + } + + // Stop Cardano node last + yield* Container.stop(cluster.cardanoNode); + }), + + /** + * Stop a devnet cluster, throws on error. + * + * @since 2.0.0 + * @category lifecycle + */ + stopOrThrow: (cluster: DevNetCluster) => + Effect.runPromise(Cluster.stop(cluster)), + + /** + * Remove a devnet cluster (all containers and network). + * + * @since 2.0.0 + * @category lifecycle + */ + remove: (cluster: DevNetCluster): Effect.Effect => + Effect.gen(function* () { + // Remove containers (removeContainer stops them first) + yield* Container.remove(cluster.cardanoNode); + if (cluster.kupo) { + yield* Container.remove(cluster.kupo); + } + if (cluster.ogmios) { + yield* Container.remove(cluster.ogmios); + } + }), + + /** + * Remove a devnet cluster, throws on error. + * + * @since 2.0.0 + * @category lifecycle + */ + removeOrThrow: (cluster: DevNetCluster) => + Effect.runPromise(Cluster.remove(cluster)), +} as const; + +/** + * Individual container management operations. + * + * @since 2.0.0 + * @category container + */ +export const Container = { + /** + * Start a specific devnet container. + * + * @since 2.0.0 + * @category lifecycle + */ + start: ( + container: DevNetContainer, + ): Effect.Effect => + Effect.tryPromise({ + try: () => new Docker().getContainer(container.id).start(), + catch: (cause) => + new CardanoDevNetError({ + reason: "container_start_failed", + message: + "Check if ports are available and Docker has sufficient resources.", + cause, + }), + }), + + /** + * Start a specific devnet container, throws on error. + * + * @since 2.0.0 + * @category lifecycle + */ + startOrThrow: (container: DevNetContainer) => + Effect.runPromise(Container.start(container)), + + /** + * Stop a specific devnet container. + * + * @since 2.0.0 + * @category lifecycle + */ + stop: (container: DevNetContainer): Effect.Effect => + Effect.gen(function* () { + const docker = new Docker(); + const dockerContainer = docker.getContainer(container.id); + + const info = yield* Effect.tryPromise({ + try: () => dockerContainer.inspect(), + catch: (cause) => + new CardanoDevNetError({ + reason: "container_inspection_failed", + message: "The container may have been removed externally.", + cause, + }), + }); + + if (info.State.Running) { + yield* Effect.tryPromise({ + try: () => dockerContainer.stop(), + catch: (cause) => + new CardanoDevNetError({ + reason: "container_stop_failed", + message: + "Try force stopping with 'docker stop --force' or restart Docker.", + cause, + }), + }); + } + }), + + /** + * Stop a specific devnet container, throws on error. + * + * @since 2.0.0 + * @category lifecycle + */ + stopOrThrow: (container: DevNetContainer) => + Effect.runPromise(Container.stop(container)), + + /** + * Remove a specific devnet container. + * + * @since 2.0.0 + * @category lifecycle + */ + remove: ( + container: DevNetContainer, + ): Effect.Effect => + Effect.gen(function* () { + yield* Container.stop(container); + + yield* Effect.tryPromise({ + try: () => new Docker().getContainer(container.id).remove(), + catch: (cause) => + new CardanoDevNetError({ + reason: "container_removal_failed", + message: + "Ensure the container is stopped and no volumes are in use.", + cause, + }), + }); + }), + + /** + * Remove a specific devnet container, throws on error. + * + * @since 2.0.0 + * @category lifecycle + */ + removeOrThrow: (container: DevNetContainer) => + Effect.runPromise(Container.remove(container)), + + /** + * Get container status information. + * + * @since 2.0.0 + * @category inspection + */ + getStatus: ( + container: DevNetContainer, + ): Effect.Effect< + Docker.ContainerInspectInfo | undefined, + CardanoDevNetError + > => + Effect.tryPromise({ + try: () => new Docker().getContainer(container.id).inspect(), + catch: (cause) => + new CardanoDevNetError({ + reason: "container_inspection_failed", + message: "The container may be corrupted or inaccessible.", + cause, + }), + }), + + /** + * Get container status information, throws on error. + * + * @since 2.0.0 + * @category inspection + */ + getStatusOrThrow: (container: DevNetContainer) => + Effect.runPromise(Container.getStatus(container)), + + isImageAvailable: ( + imageName: string, + ): Effect.Effect => + Effect.tryPromise({ + try: () => { + const docker = new Docker(); + return docker + .listImages({ filters: { reference: [imageName] } }) + .then((images) => images.length > 0); + }, + catch: (cause) => + new CardanoDevNetError({ + reason: "container_inspection_failed", + message: "Failed to check image availability.", + cause, + }), + }), + + isImageAvailableOrThrow: (imageName: string) => + Effect.runPromise(Container.isImageAvailable(imageName)), + + downloadImage: (imageName: string): Effect.Effect => + Effect.tryPromise({ + try: () => { + const docker = new Docker(); + return docker.pull(imageName); + }, + catch: (cause) => + new CardanoDevNetError({ + reason: "container_inspection_failed", + message: "Failed to download the Docker image.", + cause, + }), + }), +} as const; \ No newline at end of file diff --git a/packages/evolution/src/Devnet/DevnetDefault.ts b/packages/evolution/src/Devnet/DevnetDefault.ts new file mode 100644 index 00000000..3973c8e3 --- /dev/null +++ b/packages/evolution/src/Devnet/DevnetDefault.ts @@ -0,0 +1,753 @@ +/** + * Type definitions for configuration objects to allow flexible values + * while maintaining structure compatibility. + */ +export type NodeConfig = { + readonly Protocol: string + readonly ByronGenesisFile: string + readonly ShelleyGenesisFile: string + readonly AlonzoGenesisFile: string + readonly ConwayGenesisFile: string + readonly ApplicationName: string + readonly ApplicationVersion: number + readonly MaxKnownMajorProtocolVersion: number + readonly "LastKnownBlockVersion-Alt": number + readonly "LastKnownBlockVersion-Major": number + readonly "LastKnownBlockVersion-Minor": number + readonly TestShelleyHardForkAtEpoch: number + readonly TestAllegraHardForkAtEpoch: number + readonly TestMaryHardForkAtEpoch: number + readonly TestAlonzoHardForkAtEpoch: number + readonly TestBabbageHardForkAtEpoch: number + readonly TestConwayHardForkAtEpoch: number + readonly RequiresNetworkMagic: string + readonly minSeverity: string + readonly defaultBackends: ReadonlyArray + readonly defaultScribes: ReadonlyArray> + readonly setupBackends: ReadonlyArray + readonly setupScribes: ReadonlyArray<{ + readonly scFormat: string + readonly scKind: string + readonly scName: string + readonly scRotation: null + }> + readonly TurnOnLogMetrics: boolean + readonly TurnOnLogging: boolean + readonly TracingVerbosity: string + readonly TraceBlockFetchClient: boolean + readonly TraceBlockFetchDecisions: boolean + readonly TraceBlockFetchProtocol: boolean + readonly TraceBlockFetchProtocolSerialised: boolean + readonly TraceBlockFetchServer: boolean + readonly TraceChainDb: boolean + readonly TraceChainSyncBlockServer: boolean + readonly TraceChainSyncClient: boolean + readonly TraceChainSyncHeaderServer: boolean + readonly TraceChainSyncProtocol: boolean + readonly TraceDNSResolver: boolean + readonly TraceDNSSubscription: boolean + readonly TraceErrorPolicy: boolean + readonly TraceForge: boolean + readonly TraceHandshake: boolean + readonly TraceIpSubscription: boolean + readonly TraceLocalChainSyncProtocol: boolean + readonly TraceLocalErrorPolicy: boolean + readonly TraceLocalHandshake: boolean + readonly TraceLocalTxSubmissionProtocol: boolean + readonly TraceLocalTxSubmissionServer: boolean + readonly TraceMempool: boolean + readonly TraceMux: boolean + readonly TraceOptions: Record + readonly TraceTxInbound: boolean + readonly TraceTxOutbound: boolean + readonly TraceTxSubmissionProtocol: boolean + readonly hasEKG: number + readonly hasPrometheus: ReadonlyArray + readonly options: { + readonly mapBackends: Record> + readonly mapSubtrace: Record + } + readonly ExperimentalHardForksEnabled: boolean + readonly ExperimentalProtocolsEnabled: boolean +} + +export type ByronGenesis = { + readonly protocolConsts: { + readonly k: number + readonly protocolMagic: number + } + readonly startTime: number + readonly blockVersionData: { + readonly scriptVersion: number + readonly slotDuration: string + readonly maxBlockSize: string + readonly maxHeaderSize: string + readonly maxTxSize: string + readonly maxProposalSize: string + readonly mpcThd: string + readonly heavyDelThd: string + readonly updateVoteThd: string + readonly updateProposalThd: string + readonly updateImplicit: string + readonly softforkRule: { + readonly initThd: string + readonly minThd: string + readonly thdDecrement: string + } + readonly txFeePolicy: { + readonly summand: string + readonly multiplier: string + } + readonly unlockStakeEpoch: string + } + readonly bootStakeholders: Record + readonly heavyDelegation: Record + readonly nonAvvmBalances: Record + readonly avvmDistr: Record +} + +export type ShelleyGenesis = { + readonly epochLength: number + readonly activeSlotsCoeff: number + readonly slotLength: number + readonly securityParam: number + readonly genDelegs: Record + readonly initialFunds: Record + readonly maxKESEvolutions: number + readonly maxLovelaceSupply: number + readonly networkId: string + readonly networkMagic: number + readonly protocolParams: { + readonly a0: number + readonly decentralisationParam: number + readonly eMax: number + readonly extraEntropy: { + readonly tag: string + } + readonly keyDeposit: number + readonly maxBlockBodySize: number + readonly maxBlockHeaderSize: number + readonly maxTxSize: number + readonly minFeeA: number + readonly minFeeB: number + readonly minPoolCost: number + readonly minUTxOValue: number + readonly nOpt: number + readonly poolDeposit: number + readonly protocolVersion: { + readonly major: number + readonly minor: number + } + readonly rho: number + readonly tau: number + } + readonly slotsPerKESPeriod: number + readonly staking: { + readonly pools: Record< + string, + { + readonly cost: number + readonly margin: number + readonly metadata: null + readonly owners: ReadonlyArray + readonly pledge: number + readonly publicKey: string + readonly relays: ReadonlyArray + readonly rewardAccount: { + readonly credential: { + readonly "key hash": string + } + readonly network: string + } + readonly vrf: string + } + > + readonly stake: Record + } + readonly systemStart: string + readonly updateQuorum: number +} + +export type AlonzoGenesis = { + readonly lovelacePerUTxOWord: number + readonly executionPrices: { + readonly prSteps: { + readonly numerator: number + readonly denominator: number + } + readonly prMem: { + readonly numerator: number + readonly denominator: number + } + } + readonly maxTxExUnits: { + readonly exUnitsMem: number + readonly exUnitsSteps: number + } + readonly maxBlockExUnits: { + readonly exUnitsMem: number + readonly exUnitsSteps: number + } + readonly maxValueSize: number + readonly collateralPercentage: number + readonly maxCollateralInputs: number + readonly costModels: { + readonly PlutusV1: ReadonlyArray + readonly PlutusV2: ReadonlyArray + } +} + +export type ConwayGenesis = { + readonly poolVotingThresholds: { + readonly committeeNormal: number + readonly committeeNoConfidence: number + readonly hardForkInitiation: number + readonly motionNoConfidence: number + readonly ppSecurityGroup: number + } + readonly dRepVotingThresholds: { + readonly motionNoConfidence: number + readonly committeeNormal: number + readonly committeeNoConfidence: number + readonly updateToConstitution: number + readonly hardForkInitiation: number + readonly ppNetworkGroup: number + readonly ppEconomicGroup: number + readonly ppTechnicalGroup: number + readonly ppGovGroup: number + readonly treasuryWithdrawal: number + } + readonly committeeMinSize: number + readonly committeeMaxTermLength: number + readonly govActionLifetime: number + readonly govActionDeposit: number + readonly dRepDeposit: number + readonly dRepActivity: number + readonly minFeeRefScriptCostPerByte: number + readonly plutusV3CostModel: ReadonlyArray + readonly constitution: { + readonly anchor: { + readonly url: string + readonly dataHash: string + } + } + readonly committee: { + readonly members: Record + readonly threshold: number + } +} + +export type KesKey = { + readonly type: string + readonly description: string + readonly cborHex: string +} + +export type OpCert = { + readonly type: string + readonly description: string + readonly cborHex: string +} + +export type VrfSkey = { + readonly type: string + readonly description: string + readonly cborHex: string +} + +/** + * Configuration interface for Kupo - A fast, lightweight & configurable chain-index + * + * @since 2.0.0 + * @category model + */ +export interface KupoConfig { + readonly enabled?: boolean + readonly image?: string + readonly port?: number + readonly logLevel?: "Debug" | "Info" | "Notice" | "Warning" | "Error" + readonly match?: string + readonly deferDbIndexes?: boolean + readonly since?: string +} + +/** + * Configuration interface for Ogmios - A lightweight bridge interface for Cardano + * + * @since 2.0.0 + * @category model + */ +export interface OgmiosConfig { + readonly enabled?: boolean + readonly image?: string + readonly port?: number + readonly logLevel?: "debug" | "info" | "notice" | "warning" | "error" +} + +/** + * Configuration interface for Cardano DevNet setup. + * All properties are optional, with sensible defaults provided. + * + * @since 2.0.0 + * @category model + */ +export interface DevNetConfig { + readonly clusterName?: string + readonly image?: string + readonly ports?: { + readonly node: number + readonly submit: number + } + readonly networkMagic?: number + readonly nodeConfig?: Partial + readonly byronGenesis?: Partial + readonly shelleyGenesis?: Partial + readonly alonzoGenesis?: Partial + readonly conwayGenesis?: Partial + readonly kesKey?: Partial + readonly opCert?: Partial + readonly vrfSkey?: Partial + readonly kupo?: KupoConfig + readonly ogmios?: OgmiosConfig +} + +/** + * Default node configuration constants for Cardano DevNet. + * These settings control the behavior of the Cardano node including + * protocol parameters, logging, tracing, and hard fork schedules. + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_NODE_CONFIG = { + Protocol: "Cardano", + ByronGenesisFile: "genesis-byron.json", + ShelleyGenesisFile: "genesis-shelley.json", + AlonzoGenesisFile: "genesis-alonzo.json", + ConwayGenesisFile: "genesis-conway.json", + ApplicationName: "cardano-sl", + ApplicationVersion: 1, + MaxKnownMajorProtocolVersion: 2, + "LastKnownBlockVersion-Alt": 0, + "LastKnownBlockVersion-Major": 6, + "LastKnownBlockVersion-Minor": 0, + TestShelleyHardForkAtEpoch: 0, + TestAllegraHardForkAtEpoch: 0, + TestMaryHardForkAtEpoch: 0, + TestAlonzoHardForkAtEpoch: 0, + TestBabbageHardForkAtEpoch: 0, + /** + * There is a known bug in the Cardano node that causes the Plutus V2 cost model + * to return an incorrect number of elements when setting up a devnet with + * TestConwayHardForkAtEpoch: 0. + * + * Expected behavior: Plutus V2 cost model should contain exactly 174 elements + * Actual behavior: Returns 185 elements (174 + 11 extra elements) + * + * The extra elements have the value 9223372036854776000: + * - "175": 9223372036854776000 + * - "176": 9223372036854776000 + * - "177": 9223372036854776000 + * - "178": 9223372036854776000 + * - "179": 9223372036854776000 + * - "180": 9223372036854776000 + * - "181": 9223372036854776000 + * - "182": 9223372036854776000 + * - "183": 9223372036854776000 + * - "184": 9223372036854776000 + * + * Workaround: Trim the cost model array to the first 174 elements before use. + * This issue only affects devnet environments with early Conway hard fork activation. + */ + TestConwayHardForkAtEpoch: 0, + RequiresNetworkMagic: "RequiresNoMagic", + minSeverity: "Info", + defaultBackends: ["KatipBK"], + defaultScribes: [["StdoutSK", "stdout"]], + setupBackends: ["KatipBK"], + setupScribes: [ + { + scFormat: "ScJson", + scKind: "StdoutSK", + scName: "stdout", + scRotation: null + } + ], + TurnOnLogMetrics: true, + TurnOnLogging: true, + TracingVerbosity: "NormalVerbosity", + TraceBlockFetchClient: false, + TraceBlockFetchDecisions: false, + TraceBlockFetchProtocol: false, + TraceBlockFetchProtocolSerialised: false, + TraceBlockFetchServer: false, + TraceChainDb: true, + TraceChainSyncBlockServer: false, + TraceChainSyncClient: false, + TraceChainSyncHeaderServer: false, + TraceChainSyncProtocol: false, + TraceDNSResolver: false, + TraceDNSSubscription: false, + TraceErrorPolicy: false, + TraceForge: true, + TraceHandshake: false, + TraceIpSubscription: false, + TraceLocalChainSyncProtocol: true, + TraceLocalErrorPolicy: false, + TraceLocalHandshake: false, + TraceLocalTxSubmissionProtocol: true, + TraceLocalTxSubmissionServer: true, + TraceMempool: true, // Enables mempool tracing including RisingEdge/FallingEdgeWith timing events + TraceMux: false, + TraceOptions: {}, + TraceTxInbound: false, + TraceTxOutbound: false, + TraceTxSubmissionProtocol: false, + hasEKG: 12788, + hasPrometheus: ["0.0.0.0", 12798], + options: { + mapBackends: { + "cardano.node.metrics": ["EKGViewBK"], + "cardano.node.resources": ["EKGViewBK"] + }, + mapSubtrace: { + "cardano.node.metrics": { + subtrace: "Neutral" + } + } + }, + ExperimentalHardForksEnabled: true, + ExperimentalProtocolsEnabled: true +} as const + +/** + * Default Byron genesis configuration for Cardano DevNet. + * Contains protocol constants and initial blockchain state for the Byron era. + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_BYRON_GENESIS = { + protocolConsts: { + k: 2160, + protocolMagic: 42 + }, + startTime: Math.floor(new Date(Date.now()).getTime() / 1000), + blockVersionData: { + scriptVersion: 0, + slotDuration: "250", + maxBlockSize: "2000000", + maxHeaderSize: "2000000", + maxTxSize: "4096", + maxProposalSize: "700", + mpcThd: "20000000000000", + heavyDelThd: "300000000000", + updateVoteThd: "1000000000000", + updateProposalThd: "100000000000000", + updateImplicit: "10000", + softforkRule: { + initThd: "900000000000000", + minThd: "600000000000000", + thdDecrement: "50000000000000" + }, + txFeePolicy: { + summand: "155381000000000", + multiplier: "43000000000" + }, + unlockStakeEpoch: "18446744073709551615" + }, + bootStakeholders: { + "7a4519c93d7be4577dd85bd524c644e6b809e44eae0457b43128c1c7": 1 + }, + heavyDelegation: {}, + nonAvvmBalances: {}, + avvmDistr: {} +} as const + +/** + * Default Shelley genesis configuration for Cardano DevNet. + * Contains protocol parameters, initial funds, staking configuration, and network settings. + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_SHELLEY_GENESIS = { + epochLength: 432000, + activeSlotsCoeff: 1.0, + slotLength: 1, + securityParam: 2160, + genDelegs: {}, + initialFunds: { + "00813c32c92aad21770ff8001de0918f598df8c06775f77f8e8839d2a0074a515f7f32bf31a4f41c7417a8136e8152bfb42f06d71b389a6896": 900000000000, + "609783be7d3c54f11377966dfabc9284cd6c32fca1cd42ef0a4f1cc45b": 900000000000 + }, + maxKESEvolutions: 60, + maxLovelaceSupply: 2000000000000, + networkId: "Testnet", + networkMagic: 42, + protocolParams: { + a0: 0.0, + decentralisationParam: 0, + eMax: 18, + extraEntropy: { + tag: "NeutralNonce" + }, + keyDeposit: 0, + maxBlockBodySize: 65536, + maxBlockHeaderSize: 1100, + maxTxSize: 16384, + minFeeA: 44, + minFeeB: 155381, + minPoolCost: 0, + minUTxOValue: 0, + nOpt: 100, + poolDeposit: 0, + protocolVersion: { + major: 10, + minor: 0 + }, + rho: 0.1, + tau: 0.1 + }, + slotsPerKESPeriod: 129600, + staking: { + pools: { + "8a219b698d3b6e034391ae84cee62f1d76b6fbc45ddfe4e31e0d4b60": { + cost: 0, + margin: 0.0, + metadata: null, + owners: [], + pledge: 0, + publicKey: "8a219b698d3b6e034391ae84cee62f1d76b6fbc45ddfe4e31e0d4b60", + relays: [], + rewardAccount: { + credential: { + "key hash": "b6ffb20cf821f9286802235841d4348a2c2bafd4f73092b7de6655ea" + }, + network: "Testnet" + }, + vrf: "fec17ed60cbf2ec5be3f061fb4de0b6ef1f20947cfbfce5fb2783d12f3f69ff5" + } + }, + stake: { + "074a515f7f32bf31a4f41c7417a8136e8152bfb42f06d71b389a6896": + "8a219b698d3b6e034391ae84cee62f1d76b6fbc45ddfe4e31e0d4b60" + } + }, + systemStart: new Date().toISOString(), + updateQuorum: 2 +} as const + +/** + * Default Alonzo genesis configuration for Cardano DevNet. + * Contains Plutus script execution parameters, cost models, and resource limits. + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_ALONZO_GENESIS = { + lovelacePerUTxOWord: 34482, + executionPrices: { + prSteps: { + numerator: 721, + denominator: 10000000 + }, + prMem: { + numerator: 577, + denominator: 10000 + } + }, + maxTxExUnits: { + exUnitsMem: 10000000, + exUnitsSteps: 10000000000 + }, + maxBlockExUnits: { + exUnitsMem: 50000000, + exUnitsSteps: 40000000000 + }, + maxValueSize: 5000, + collateralPercentage: 150, + maxCollateralInputs: 3, + costModels: { + PlutusV1: [ + 100788, 420, 1, 1, 1000, 173, 0, 1, 1000, 59957, 4, 1, 11183, 32, 201305, 8356, 4, 16000, 100, 16000, 100, 16000, + 100, 16000, 100, 16000, 100, 16000, 100, 100, 100, 16000, 100, 94375, 32, 132994, 32, 61462, 4, 72010, 178, 0, 1, + 22151, 32, 91189, 769, 4, 2, 85848, 228465, 122, 0, 1, 1, 1000, 42921, 4, 2, 24548, 29498, 38, 1, 898148, 27279, + 1, 51775, 558, 1, 39184, 1000, 60594, 1, 141895, 32, 83150, 32, 15299, 32, 76049, 1, 13169, 4, 22100, 10, 28999, + 74, 1, 28999, 74, 1, 43285, 552, 1, 44749, 541, 1, 33852, 32, 68246, 32, 72362, 32, 7243, 32, 7391, 32, 11546, 32, + 85848, 228465, 122, 0, 1, 1, 90434, 519, 0, 1, 74433, 32, 85848, 228465, 122, 0, 1, 1, 85848, 228465, 122, 0, 1, + 1, 270652, 22588, 4, 1457325, 64566, 4, 20467, 1, 4, 0, 141992, 32, 100788, 420, 1, 1, 81663, 32, 59498, 32, + 20142, 32, 24588, 32, 20744, 32, 25933, 32, 24623, 32, 53384111, 14333, 10 + ], + PlutusV2: [ + 100788, 420, 1, 1, 1000, 173, 0, 1, 1000, 59957, 4, 1, 11183, 32, 201305, 8356, 4, 16000, 100, 16000, 100, 16000, + 100, 16000, 100, 16000, 100, 16000, 100, 100, 100, 16000, 100, 94375, 32, 132994, 32, 61462, 4, 72010, 178, 0, 1, + 22151, 32, 91189, 769, 4, 2, 85848, 228465, 122, 0, 1, 1, 1000, 42921, 4, 2, 24548, 29498, 38, 1, 898148, 27279, + 1, 51775, 558, 1, 39184, 1000, 60594, 1, 141895, 32, 83150, 32, 15299, 32, 76049, 1, 13169, 4, 22100, 10, 28999, + 74, 1, 28999, 74, 1, 43285, 552, 1, 44749, 541, 1, 33852, 32, 68246, 32, 72362, 32, 7243, 32, 7391, 32, 11546, 32, + 85848, 228465, 122, 0, 1, 1, 90434, 519, 0, 1, 74433, 32, 85848, 228465, 122, 0, 1, 1, 85848, 228465, 122, 0, 1, + 1, 955506, 213312, 0, 2, 270652, 22588, 4, 1457325, 64566, 4, 20467, 1, 4, 0, 141992, 32, 100788, 420, 1, 1, + 81663, 32, 59498, 32, 20142, 32, 24588, 32, 20744, 32, 25933, 32, 24623, 32, 43053543, 10, 53384111, 14333, 10, + 43574283, 26308, 10 + ] + } +} as const + +/** + * Default Conway genesis configuration for Cardano DevNet. + * Contains governance parameters, voting thresholds, and Plutus V3 cost models. + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_CONWAY_GENESIS = { + poolVotingThresholds: { + committeeNormal: 0.6, + committeeNoConfidence: 0.51, + hardForkInitiation: 0.51, + motionNoConfidence: 0.6, + ppSecurityGroup: 0.6 + }, + dRepVotingThresholds: { + motionNoConfidence: 0.67, + committeeNormal: 0.67, + committeeNoConfidence: 0.6, + updateToConstitution: 0.75, + hardForkInitiation: 0.6, + ppNetworkGroup: 0.67, + ppEconomicGroup: 0.67, + ppTechnicalGroup: 0.67, + ppGovGroup: 0.75, + treasuryWithdrawal: 0.67 + }, + committeeMinSize: 0, + committeeMaxTermLength: 73, + govActionLifetime: 8, + govActionDeposit: 50000000000, + dRepDeposit: 500000000, + dRepActivity: 20, + minFeeRefScriptCostPerByte: 44, + plutusV3CostModel: [ + 100788, 420, 1, 1, 1000, 173, 0, 1, 1000, 59957, 4, 1, 11183, 32, 201305, 8356, 4, 16000, 100, 16000, 100, 16000, + 100, 16000, 100, 16000, 100, 16000, 100, 100, 100, 16000, 100, 94375, 32, 132994, 32, 61462, 4, 72010, 178, 0, 1, + 22151, 32, 91189, 769, 4, 2, 85848, 123203, 7305, -900, 1716, 549, 57, 85848, 0, 1, 1, 1000, 42921, 4, 2, 24548, + 29498, 38, 1, 898148, 27279, 1, 51775, 558, 1, 39184, 1000, 60594, 1, 141895, 32, 83150, 32, 15299, 32, 76049, 1, + 13169, 4, 22100, 10, 28999, 74, 1, 28999, 74, 1, 43285, 552, 1, 44749, 541, 1, 33852, 32, 68246, 32, 72362, 32, + 7243, 32, 7391, 32, 11546, 32, 85848, 123203, 7305, -900, 1716, 549, 57, 85848, 0, 1, 90434, 519, 0, 1, 74433, 32, + 85848, 123203, 7305, -900, 1716, 549, 57, 85848, 0, 1, 1, 85848, 123203, 7305, -900, 1716, 549, 57, 85848, 0, 1, + 955506, 213312, 0, 2, 270652, 22588, 4, 1457325, 64566, 4, 20467, 1, 4, 0, 141992, 32, 100788, 420, 1, 1, 81663, 32, + 59498, 32, 20142, 32, 24588, 32, 20744, 32, 25933, 32, 24623, 32, 43053543, 10, 53384111, 14333, 10, 43574283, + 26308, 10, 16000, 100, 16000, 100, 962335, 18, 2780678, 6, 442008, 1, 52538055, 3756, 18, 267929, 18, 76433006, + 8868, 18, 52948122, 18, 1995836, 36, 3227919, 12, 901022, 1, 166917843, 4307, 36, 284546, 36, 158221314, 26549, 36, + 74698472, 36, 333849714, 1, 254006273, 72, 2174038, 72, 2261318, 64571, 4, 207616, 8310, 4, 1293828, 28716, 63, 0, + 1, 1006041, 43623, 251, 0, 1 + ], + constitution: { + anchor: { + url: "", + dataHash: "0000000000000000000000000000000000000000000000000000000000000000" + } + }, + committee: { + members: {}, + threshold: 0.66 + } +} as const + +/** + * Default KES (Key Evolving Signature) signing key for Cardano DevNet. + * Used for block production and stake pool operations. + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_KES_KEY = { + type: "KesSigningKey_ed25519_kes_2^6", + description: "KES Signing Key", + cborHex: + "590260a199f16b11da6c7f5c1e0f1eb0b9bbe278d3d8f35bfd50d0951c2ff94d0344cd57df5f64c9bac1dd60b4482f9c636168f40737d526625a2ec82f22ec0c72de0013f86ef743a7bba0286db6ddf3d85bf8e49ddbf14d9d3b7ee22f4857c77b740948f84f2e72f6bcf91f405e34ea50a2c53fa4876b43cfce2bcfe87c06a903de8bb33d968ca7930b67d0c23f5cb2d74e422d773ba80e388de384691000d6ba8a9b4dc7d3187f76048fbef9a52b72d80d835bb76eced7c0e0cdc5b58869b73c095dffa01db4ff51765afcead565395a5ed1cf74e5f2134d61076fece21aacd080bbbfaab94125401d7bbc74eafc7e7e3a2235f59dc03d6e332e53d558493a1e22213b92c77b1328ff1b83855da704fc366bf4415490602481d1939136eeaf252c65184912a779d9d94a90e32b72c1877ef60b6d79e707ce5a762acb4bed46436efe4fe62aae50b39068cc508a09427c92791cbcbea44318529cc68d297ca24e1b73b2394c385ec63fcd85ed56eec3de48860a1ec950aad4f91cbf741dbd7bf1d3c278875bd20e31ff5372339f6aa5280ad9b8bf3514889ac44600fe57ca0b535d6dc6b0b981e079595aad186ee0be9b07e837391ab165e4ca406601c876a86e246a3f53311e21199cccc0b080f28d18f4dc6987731e10e4ade00df7c6921c5ef3022b6f49a29ba307a2c8f4bd2ba42fcfa0aad68a2f0ad31fff69a99d3471f9036d3f5817a3edfeff7fc3c14e1151d767aaa043481cfd1a6ee55e8e5d7853ecdaf9da2bb36c716beae8d706bc648a790d4697e1d044a11a49f305ab8bc64a094bd81bda7395fe6f77dd5557c39919dd9bb9cf22a87fe47408ae3ec2247007d015a5" +} as const + +/** + * Default node operational certificate for Cardano DevNet. + * Certifies the stake pool's authority to produce blocks. + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_OPCERT = { + type: "NodeOperationalCertificate", + description: "", + cborHex: + "828458204cd49bb05e9885142fe7af1481107995298771fd1a24e72b506a4d600ee2b3120000584089fc9e9f551b2ea873bf31643659d049152d5c8e8de86be4056370bccc5fa62dd12e3f152f1664e614763e46eaa7a17ed366b5cef19958773d1ab96941442e0b58205a3d778e76741a009e29d23093cfe046131808d34d7c864967b515e98dfc3583" +} as const + +/** + * Default VRF (Verifiable Random Function) signing key for Cardano DevNet. + * Used for leader election and randomness generation in the consensus protocol. + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_VRF_SKEY = { + type: "VrfSigningKey_PraosVRF", + description: "VRF Signing Key", + cborHex: + "5840899795b70e9f34b737159fe21a6170568d6031e187f0cc84555c712b7c29b45cb882007593ef70f86e5c0948561a3b8e8851529a4f98975f2b24e768dda38ce2" +} as const + +/** + * Default configuration for Kupo service + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_KUPO_CONFIG: Required = { + enabled: true, + image: "cardanosolutions/kupo:v2.10.0", + port: 1442, + logLevel: "Info", + match: "*", + deferDbIndexes: true, + since: "origin" +} as const + +/** + * Default configuration for Ogmios service + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_OGMIOS_CONFIG: Required = { + enabled: true, + image: "cardanosolutions/ogmios:v6.12.0", + port: 1337, + logLevel: "info" +} as const + +/** + * Complete default configuration for Cardano DevNet. + * Includes all required settings for running a local Cardano development network. + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_DEVNET_CONFIG: Required = { + clusterName: "devnet", + image: "ghcr.io/intersectmbo/cardano-node:10.4.1", + ports: { + node: 4001, + submit: 8090 + }, + networkMagic: 42, + nodeConfig: DEFAULT_NODE_CONFIG, + byronGenesis: DEFAULT_BYRON_GENESIS, + shelleyGenesis: DEFAULT_SHELLEY_GENESIS, + alonzoGenesis: DEFAULT_ALONZO_GENESIS, + conwayGenesis: DEFAULT_CONWAY_GENESIS, + kesKey: DEFAULT_KES_KEY, + opCert: DEFAULT_OPCERT, + vrfSkey: DEFAULT_VRF_SKEY, + kupo: DEFAULT_KUPO_CONFIG, + ogmios: DEFAULT_OGMIOS_CONFIG +} as const diff --git a/packages/evolution/src/Devnet/DevnetDefault.ts.bak b/packages/evolution/src/Devnet/DevnetDefault.ts.bak new file mode 100644 index 00000000..7107907a --- /dev/null +++ b/packages/evolution/src/Devnet/DevnetDefault.ts.bak @@ -0,0 +1,770 @@ +/** + * Type definitions for configuration objects to allow flexible values + * while maintaining structure compatibility. + */ +export type NodeConfig = { + readonly Protocol: string; + readonly ByronGenesisFile: string; + readonly ShelleyGenesisFile: string; + readonly AlonzoGenesisFile: string; + readonly ConwayGenesisFile: string; + readonly ApplicationName: string; + readonly ApplicationVersion: number; + readonly MaxKnownMajorProtocolVersion: number; + readonly "LastKnownBlockVersion-Alt": number; + readonly "LastKnownBlockVersion-Major": number; + readonly "LastKnownBlockVersion-Minor": number; + readonly TestShelleyHardForkAtEpoch: number; + readonly TestAllegraHardForkAtEpoch: number; + readonly TestMaryHardForkAtEpoch: number; + readonly TestAlonzoHardForkAtEpoch: number; + readonly TestBabbageHardForkAtEpoch: number; + readonly TestConwayHardForkAtEpoch: number; + readonly RequiresNetworkMagic: string; + readonly minSeverity: string; + readonly defaultBackends: ReadonlyArray; + readonly defaultScribes: ReadonlyArray>; + readonly setupBackends: ReadonlyArray; + readonly setupScribes: ReadonlyArray<{ + readonly scFormat: string; + readonly scKind: string; + readonly scName: string; + readonly scRotation: null; + }>; + readonly TurnOnLogMetrics: boolean; + readonly TurnOnLogging: boolean; + readonly TracingVerbosity: string; + readonly TraceBlockFetchClient: boolean; + readonly TraceBlockFetchDecisions: boolean; + readonly TraceBlockFetchProtocol: boolean; + readonly TraceBlockFetchProtocolSerialised: boolean; + readonly TraceBlockFetchServer: boolean; + readonly TraceChainDb: boolean; + readonly TraceChainSyncBlockServer: boolean; + readonly TraceChainSyncClient: boolean; + readonly TraceChainSyncHeaderServer: boolean; + readonly TraceChainSyncProtocol: boolean; + readonly TraceDNSResolver: boolean; + readonly TraceDNSSubscription: boolean; + readonly TraceErrorPolicy: boolean; + readonly TraceForge: boolean; + readonly TraceHandshake: boolean; + readonly TraceIpSubscription: boolean; + readonly TraceLocalChainSyncProtocol: boolean; + readonly TraceLocalErrorPolicy: boolean; + readonly TraceLocalHandshake: boolean; + readonly TraceLocalTxSubmissionProtocol: boolean; + readonly TraceLocalTxSubmissionServer: boolean; + readonly TraceMempool: boolean; + readonly TraceMux: boolean; + readonly TraceOptions: Record; + readonly TraceTxInbound: boolean; + readonly TraceTxOutbound: boolean; + readonly TraceTxSubmissionProtocol: boolean; + readonly hasEKG: number; + readonly hasPrometheus: ReadonlyArray; + readonly options: { + readonly mapBackends: Record>; + readonly mapSubtrace: Record; + }; + readonly ExperimentalHardForksEnabled: boolean; + readonly ExperimentalProtocolsEnabled: boolean; +}; + +export type ByronGenesis = { + readonly protocolConsts: { + readonly k: number; + readonly protocolMagic: number; + }; + readonly startTime: number; + readonly blockVersionData: { + readonly scriptVersion: number; + readonly slotDuration: string; + readonly maxBlockSize: string; + readonly maxHeaderSize: string; + readonly maxTxSize: string; + readonly maxProposalSize: string; + readonly mpcThd: string; + readonly heavyDelThd: string; + readonly updateVoteThd: string; + readonly updateProposalThd: string; + readonly updateImplicit: string; + readonly softforkRule: { + readonly initThd: string; + readonly minThd: string; + readonly thdDecrement: string; + }; + readonly txFeePolicy: { + readonly summand: string; + readonly multiplier: string; + }; + readonly unlockStakeEpoch: string; + }; + readonly bootStakeholders: Record; + readonly heavyDelegation: Record; + readonly nonAvvmBalances: Record; + readonly avvmDistr: Record; +}; + +export type ShelleyGenesis = { + readonly epochLength: number; + readonly activeSlotsCoeff: number; + readonly slotLength: number; + readonly securityParam: number; + readonly genDelegs: Record; + readonly initialFunds: Record; + readonly maxKESEvolutions: number; + readonly maxLovelaceSupply: number; + readonly networkId: string; + readonly networkMagic: number; + readonly protocolParams: { + readonly a0: number; + readonly decentralisationParam: number; + readonly eMax: number; + readonly extraEntropy: { + readonly tag: string; + }; + readonly keyDeposit: number; + readonly maxBlockBodySize: number; + readonly maxBlockHeaderSize: number; + readonly maxTxSize: number; + readonly minFeeA: number; + readonly minFeeB: number; + readonly minPoolCost: number; + readonly minUTxOValue: number; + readonly nOpt: number; + readonly poolDeposit: number; + readonly protocolVersion: { + readonly major: number; + readonly minor: number; + }; + readonly rho: number; + readonly tau: number; + }; + readonly slotsPerKESPeriod: number; + readonly staking: { + readonly pools: Record< + string, + { + readonly cost: number; + readonly margin: number; + readonly metadata: null; + readonly owners: ReadonlyArray; + readonly pledge: number; + readonly publicKey: string; + readonly relays: ReadonlyArray; + readonly rewardAccount: { + readonly credential: { + readonly "key hash": string; + }; + readonly network: string; + }; + readonly vrf: string; + } + >; + readonly stake: Record; + }; + readonly systemStart: string; + readonly updateQuorum: number; +}; + +export type AlonzoGenesis = { + readonly lovelacePerUTxOWord: number; + readonly executionPrices: { + readonly prSteps: { + readonly numerator: number; + readonly denominator: number; + }; + readonly prMem: { + readonly numerator: number; + readonly denominator: number; + }; + }; + readonly maxTxExUnits: { + readonly exUnitsMem: number; + readonly exUnitsSteps: number; + }; + readonly maxBlockExUnits: { + readonly exUnitsMem: number; + readonly exUnitsSteps: number; + }; + readonly maxValueSize: number; + readonly collateralPercentage: number; + readonly maxCollateralInputs: number; + readonly costModels: { + readonly PlutusV1: ReadonlyArray; + readonly PlutusV2: ReadonlyArray; + }; +}; + +export type ConwayGenesis = { + readonly poolVotingThresholds: { + readonly committeeNormal: number; + readonly committeeNoConfidence: number; + readonly hardForkInitiation: number; + readonly motionNoConfidence: number; + readonly ppSecurityGroup: number; + }; + readonly dRepVotingThresholds: { + readonly motionNoConfidence: number; + readonly committeeNormal: number; + readonly committeeNoConfidence: number; + readonly updateToConstitution: number; + readonly hardForkInitiation: number; + readonly ppNetworkGroup: number; + readonly ppEconomicGroup: number; + readonly ppTechnicalGroup: number; + readonly ppGovGroup: number; + readonly treasuryWithdrawal: number; + }; + readonly committeeMinSize: number; + readonly committeeMaxTermLength: number; + readonly govActionLifetime: number; + readonly govActionDeposit: number; + readonly dRepDeposit: number; + readonly dRepActivity: number; + readonly minFeeRefScriptCostPerByte: number; + readonly plutusV3CostModel: ReadonlyArray; + readonly constitution: { + readonly anchor: { + readonly url: string; + readonly dataHash: string; + }; + }; + readonly committee: { + readonly members: Record; + readonly threshold: number; + }; +}; + +export type KesKey = { + readonly type: string; + readonly description: string; + readonly cborHex: string; +}; + +export type OpCert = { + readonly type: string; + readonly description: string; + readonly cborHex: string; +}; + +export type VrfSkey = { + readonly type: string; + readonly description: string; + readonly cborHex: string; +}; + +/** + * Configuration interface for Kupo - A fast, lightweight & configurable chain-index + * + * @since 2.0.0 + * @category model + */ +export interface KupoConfig { + readonly enabled?: boolean; + readonly image?: string; + readonly port?: number; + readonly logLevel?: "Debug" | "Info" | "Notice" | "Warning" | "Error"; + readonly match?: string; + readonly deferDbIndexes?: boolean; + readonly since?: string; +} + +/** + * Configuration interface for Ogmios - A lightweight bridge interface for Cardano + * + * @since 2.0.0 + * @category model + */ +export interface OgmiosConfig { + readonly enabled?: boolean; + readonly image?: string; + readonly port?: number; + readonly logLevel?: "debug" | "info" | "notice" | "warning" | "error"; +} + +/** + * Configuration interface for Cardano DevNet setup. + * All properties are optional, with sensible defaults provided. + * + * @since 2.0.0 + * @category model + */ +export interface DevNetConfig { + readonly clusterName?: string; + readonly image?: string; + readonly ports?: { + readonly node: number; + readonly submit: number; + }; + readonly networkMagic?: number; + readonly nodeConfig?: Partial; + readonly byronGenesis?: Partial; + readonly shelleyGenesis?: Partial; + readonly alonzoGenesis?: Partial; + readonly conwayGenesis?: Partial; + readonly kesKey?: Partial; + readonly opCert?: Partial; + readonly vrfSkey?: Partial; + readonly kupo?: KupoConfig; + readonly ogmios?: OgmiosConfig; +} + +/** + * Default node configuration constants for Cardano DevNet. + * These settings control the behavior of the Cardano node including + * protocol parameters, logging, tracing, and hard fork schedules. + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_NODE_CONFIG = { + Protocol: "Cardano", + ByronGenesisFile: "genesis-byron.json", + ShelleyGenesisFile: "genesis-shelley.json", + AlonzoGenesisFile: "genesis-alonzo.json", + ConwayGenesisFile: "genesis-conway.json", + ApplicationName: "cardano-sl", + ApplicationVersion: 1, + MaxKnownMajorProtocolVersion: 2, + "LastKnownBlockVersion-Alt": 0, + "LastKnownBlockVersion-Major": 6, + "LastKnownBlockVersion-Minor": 0, + TestShelleyHardForkAtEpoch: 0, + TestAllegraHardForkAtEpoch: 0, + TestMaryHardForkAtEpoch: 0, + TestAlonzoHardForkAtEpoch: 0, + TestBabbageHardForkAtEpoch: 0, + /** + * There is a known bug in the Cardano node that causes the Plutus V2 cost model + * to return an incorrect number of elements when setting up a devnet with + * TestConwayHardForkAtEpoch: 0. + * + * Expected behavior: Plutus V2 cost model should contain exactly 174 elements + * Actual behavior: Returns 185 elements (174 + 11 extra elements) + * + * The extra elements have the value 9223372036854776000: + * - "175": 9223372036854776000 + * - "176": 9223372036854776000 + * - "177": 9223372036854776000 + * - "178": 9223372036854776000 + * - "179": 9223372036854776000 + * - "180": 9223372036854776000 + * - "181": 9223372036854776000 + * - "182": 9223372036854776000 + * - "183": 9223372036854776000 + * - "184": 9223372036854776000 + * + * Workaround: Trim the cost model array to the first 174 elements before use. + * This issue only affects devnet environments with early Conway hard fork activation. + */ + TestConwayHardForkAtEpoch: 0, + RequiresNetworkMagic: "RequiresNoMagic", + minSeverity: "Info", + defaultBackends: ["KatipBK"], + defaultScribes: [["StdoutSK", "stdout"]], + setupBackends: ["KatipBK"], + setupScribes: [ + { + scFormat: "ScJson", + scKind: "StdoutSK", + scName: "stdout", + scRotation: null, + }, + ], + TurnOnLogMetrics: true, + TurnOnLogging: true, + TracingVerbosity: "NormalVerbosity", + TraceBlockFetchClient: false, + TraceBlockFetchDecisions: false, + TraceBlockFetchProtocol: false, + TraceBlockFetchProtocolSerialised: false, + TraceBlockFetchServer: false, + TraceChainDb: true, + TraceChainSyncBlockServer: false, + TraceChainSyncClient: false, + TraceChainSyncHeaderServer: false, + TraceChainSyncProtocol: false, + TraceDNSResolver: false, + TraceDNSSubscription: false, + TraceErrorPolicy: false, + TraceForge: true, + TraceHandshake: false, + TraceIpSubscription: false, + TraceLocalChainSyncProtocol: true, + TraceLocalErrorPolicy: false, + TraceLocalHandshake: false, + TraceLocalTxSubmissionProtocol: true, + TraceLocalTxSubmissionServer: true, + TraceMempool: true, // Enables mempool tracing including RisingEdge/FallingEdgeWith timing events + TraceMux: false, + TraceOptions: {}, + TraceTxInbound: false, + TraceTxOutbound: false, + TraceTxSubmissionProtocol: false, + hasEKG: 12788, + hasPrometheus: ["0.0.0.0", 12798], + options: { + mapBackends: { + "cardano.node.metrics": ["EKGViewBK"], + "cardano.node.resources": ["EKGViewBK"], + }, + mapSubtrace: { + "cardano.node.metrics": { + subtrace: "Neutral", + }, + }, + }, + ExperimentalHardForksEnabled: true, + ExperimentalProtocolsEnabled: true, +} as const; + +/** + * Default Byron genesis configuration for Cardano DevNet. + * Contains protocol constants and initial blockchain state for the Byron era. + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_BYRON_GENESIS = { + protocolConsts: { + k: 2160, + protocolMagic: 42, + }, + startTime: Math.floor(new Date(Date.now()).getTime() / 1000), + blockVersionData: { + scriptVersion: 0, + slotDuration: "250", + maxBlockSize: "2000000", + maxHeaderSize: "2000000", + maxTxSize: "4096", + maxProposalSize: "700", + mpcThd: "20000000000000", + heavyDelThd: "300000000000", + updateVoteThd: "1000000000000", + updateProposalThd: "100000000000000", + updateImplicit: "10000", + softforkRule: { + initThd: "900000000000000", + minThd: "600000000000000", + thdDecrement: "50000000000000", + }, + txFeePolicy: { + summand: "155381000000000", + multiplier: "43000000000", + }, + unlockStakeEpoch: "18446744073709551615", + }, + bootStakeholders: { + "7a4519c93d7be4577dd85bd524c644e6b809e44eae0457b43128c1c7": 1, + }, + heavyDelegation: {}, + nonAvvmBalances: {}, + avvmDistr: {}, +} as const; + +/** + * Default Shelley genesis configuration for Cardano DevNet. + * Contains protocol parameters, initial funds, staking configuration, and network settings. + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_SHELLEY_GENESIS = { + epochLength: 432000, + activeSlotsCoeff: 1.0, + slotLength: 1, + securityParam: 2160, + genDelegs: {}, + initialFunds: { + "00813c32c92aad21770ff8001de0918f598df8c06775f77f8e8839d2a0074a515f7f32bf31a4f41c7417a8136e8152bfb42f06d71b389a6896": 900000000000, + "609783be7d3c54f11377966dfabc9284cd6c32fca1cd42ef0a4f1cc45b": 900000000000, + }, + maxKESEvolutions: 60, + maxLovelaceSupply: 2000000000000, + networkId: "Testnet", + networkMagic: 42, + protocolParams: { + a0: 0.0, + decentralisationParam: 0, + eMax: 18, + extraEntropy: { + tag: "NeutralNonce", + }, + keyDeposit: 0, + maxBlockBodySize: 65536, + maxBlockHeaderSize: 1100, + maxTxSize: 16384, + minFeeA: 44, + minFeeB: 155381, + minPoolCost: 0, + minUTxOValue: 0, + nOpt: 100, + poolDeposit: 0, + protocolVersion: { + major: 10, + minor: 0, + }, + rho: 0.1, + tau: 0.1, + }, + slotsPerKESPeriod: 129600, + staking: { + pools: { + "8a219b698d3b6e034391ae84cee62f1d76b6fbc45ddfe4e31e0d4b60": { + cost: 0, + margin: 0.0, + metadata: null, + owners: [], + pledge: 0, + publicKey: "8a219b698d3b6e034391ae84cee62f1d76b6fbc45ddfe4e31e0d4b60", + relays: [], + rewardAccount: { + credential: { + "key hash": + "b6ffb20cf821f9286802235841d4348a2c2bafd4f73092b7de6655ea", + }, + network: "Testnet", + }, + vrf: "fec17ed60cbf2ec5be3f061fb4de0b6ef1f20947cfbfce5fb2783d12f3f69ff5", + }, + }, + stake: { + "074a515f7f32bf31a4f41c7417a8136e8152bfb42f06d71b389a6896": + "8a219b698d3b6e034391ae84cee62f1d76b6fbc45ddfe4e31e0d4b60", + }, + }, + systemStart: new Date().toISOString(), + updateQuorum: 2, +} as const; + +/** + * Default Alonzo genesis configuration for Cardano DevNet. + * Contains Plutus script execution parameters, cost models, and resource limits. + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_ALONZO_GENESIS = { + lovelacePerUTxOWord: 34482, + executionPrices: { + prSteps: { + numerator: 721, + denominator: 10000000, + }, + prMem: { + numerator: 577, + denominator: 10000, + }, + }, + maxTxExUnits: { + exUnitsMem: 10000000, + exUnitsSteps: 10000000000, + }, + maxBlockExUnits: { + exUnitsMem: 50000000, + exUnitsSteps: 40000000000, + }, + maxValueSize: 5000, + collateralPercentage: 150, + maxCollateralInputs: 3, + costModels: { + PlutusV1: [ + 100788, 420, 1, 1, 1000, 173, 0, 1, 1000, 59957, 4, 1, 11183, 32, 201305, + 8356, 4, 16000, 100, 16000, 100, 16000, 100, 16000, 100, 16000, 100, + 16000, 100, 100, 100, 16000, 100, 94375, 32, 132994, 32, 61462, 4, 72010, + 178, 0, 1, 22151, 32, 91189, 769, 4, 2, 85848, 228465, 122, 0, 1, 1, 1000, + 42921, 4, 2, 24548, 29498, 38, 1, 898148, 27279, 1, 51775, 558, 1, 39184, + 1000, 60594, 1, 141895, 32, 83150, 32, 15299, 32, 76049, 1, 13169, 4, + 22100, 10, 28999, 74, 1, 28999, 74, 1, 43285, 552, 1, 44749, 541, 1, + 33852, 32, 68246, 32, 72362, 32, 7243, 32, 7391, 32, 11546, 32, 85848, + 228465, 122, 0, 1, 1, 90434, 519, 0, 1, 74433, 32, 85848, 228465, 122, 0, + 1, 1, 85848, 228465, 122, 0, 1, 1, 270652, 22588, 4, 1457325, 64566, 4, + 20467, 1, 4, 0, 141992, 32, 100788, 420, 1, 1, 81663, 32, 59498, 32, + 20142, 32, 24588, 32, 20744, 32, 25933, 32, 24623, 32, 53384111, 14333, + 10, + ], + PlutusV2: [ + 100788, 420, 1, 1, 1000, 173, 0, 1, 1000, 59957, 4, 1, 11183, 32, 201305, + 8356, 4, 16000, 100, 16000, 100, 16000, 100, 16000, 100, 16000, 100, + 16000, 100, 100, 100, 16000, 100, 94375, 32, 132994, 32, 61462, 4, 72010, + 178, 0, 1, 22151, 32, 91189, 769, 4, 2, 85848, 228465, 122, 0, 1, 1, 1000, + 42921, 4, 2, 24548, 29498, 38, 1, 898148, 27279, 1, 51775, 558, 1, 39184, + 1000, 60594, 1, 141895, 32, 83150, 32, 15299, 32, 76049, 1, 13169, 4, + 22100, 10, 28999, 74, 1, 28999, 74, 1, 43285, 552, 1, 44749, 541, 1, + 33852, 32, 68246, 32, 72362, 32, 7243, 32, 7391, 32, 11546, 32, 85848, + 228465, 122, 0, 1, 1, 90434, 519, 0, 1, 74433, 32, 85848, 228465, 122, 0, + 1, 1, 85848, 228465, 122, 0, 1, 1, 955506, 213312, 0, 2, 270652, 22588, 4, + 1457325, 64566, 4, 20467, 1, 4, 0, 141992, 32, 100788, 420, 1, 1, 81663, + 32, 59498, 32, 20142, 32, 24588, 32, 20744, 32, 25933, 32, 24623, 32, + 43053543, 10, 53384111, 14333, 10, 43574283, 26308, 10, + ], + }, +} as const; + +/** + * Default Conway genesis configuration for Cardano DevNet. + * Contains governance parameters, voting thresholds, and Plutus V3 cost models. + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_CONWAY_GENESIS = { + poolVotingThresholds: { + committeeNormal: 0.6, + committeeNoConfidence: 0.51, + hardForkInitiation: 0.51, + motionNoConfidence: 0.6, + ppSecurityGroup: 0.6, + }, + dRepVotingThresholds: { + motionNoConfidence: 0.67, + committeeNormal: 0.67, + committeeNoConfidence: 0.6, + updateToConstitution: 0.75, + hardForkInitiation: 0.6, + ppNetworkGroup: 0.67, + ppEconomicGroup: 0.67, + ppTechnicalGroup: 0.67, + ppGovGroup: 0.75, + treasuryWithdrawal: 0.67, + }, + committeeMinSize: 0, + committeeMaxTermLength: 73, + govActionLifetime: 8, + govActionDeposit: 50000000000, + dRepDeposit: 500000000, + dRepActivity: 20, + minFeeRefScriptCostPerByte: 44, + plutusV3CostModel: [ + 100788, 420, 1, 1, 1000, 173, 0, 1, 1000, 59957, 4, 1, 11183, 32, 201305, + 8356, 4, 16000, 100, 16000, 100, 16000, 100, 16000, 100, 16000, 100, 16000, + 100, 100, 100, 16000, 100, 94375, 32, 132994, 32, 61462, 4, 72010, 178, 0, + 1, 22151, 32, 91189, 769, 4, 2, 85848, 123203, 7305, -900, 1716, 549, 57, + 85848, 0, 1, 1, 1000, 42921, 4, 2, 24548, 29498, 38, 1, 898148, 27279, 1, + 51775, 558, 1, 39184, 1000, 60594, 1, 141895, 32, 83150, 32, 15299, 32, + 76049, 1, 13169, 4, 22100, 10, 28999, 74, 1, 28999, 74, 1, 43285, 552, 1, + 44749, 541, 1, 33852, 32, 68246, 32, 72362, 32, 7243, 32, 7391, 32, 11546, + 32, 85848, 123203, 7305, -900, 1716, 549, 57, 85848, 0, 1, 90434, 519, 0, 1, + 74433, 32, 85848, 123203, 7305, -900, 1716, 549, 57, 85848, 0, 1, 1, 85848, + 123203, 7305, -900, 1716, 549, 57, 85848, 0, 1, 955506, 213312, 0, 2, + 270652, 22588, 4, 1457325, 64566, 4, 20467, 1, 4, 0, 141992, 32, 100788, + 420, 1, 1, 81663, 32, 59498, 32, 20142, 32, 24588, 32, 20744, 32, 25933, 32, + 24623, 32, 43053543, 10, 53384111, 14333, 10, 43574283, 26308, 10, 16000, + 100, 16000, 100, 962335, 18, 2780678, 6, 442008, 1, 52538055, 3756, 18, + 267929, 18, 76433006, 8868, 18, 52948122, 18, 1995836, 36, 3227919, 12, + 901022, 1, 166917843, 4307, 36, 284546, 36, 158221314, 26549, 36, 74698472, + 36, 333849714, 1, 254006273, 72, 2174038, 72, 2261318, 64571, 4, 207616, + 8310, 4, 1293828, 28716, 63, 0, 1, 1006041, 43623, 251, 0, 1, + ], + constitution: { + anchor: { + url: "", + dataHash: + "0000000000000000000000000000000000000000000000000000000000000000", + }, + }, + committee: { + members: {}, + threshold: 0.66, + }, +} as const; + +/** + * Default KES (Key Evolving Signature) signing key for Cardano DevNet. + * Used for block production and stake pool operations. + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_KES_KEY = { + type: "KesSigningKey_ed25519_kes_2^6", + description: "KES Signing Key", + cborHex: + "590260a199f16b11da6c7f5c1e0f1eb0b9bbe278d3d8f35bfd50d0951c2ff94d0344cd57df5f64c9bac1dd60b4482f9c636168f40737d526625a2ec82f22ec0c72de0013f86ef743a7bba0286db6ddf3d85bf8e49ddbf14d9d3b7ee22f4857c77b740948f84f2e72f6bcf91f405e34ea50a2c53fa4876b43cfce2bcfe87c06a903de8bb33d968ca7930b67d0c23f5cb2d74e422d773ba80e388de384691000d6ba8a9b4dc7d3187f76048fbef9a52b72d80d835bb76eced7c0e0cdc5b58869b73c095dffa01db4ff51765afcead565395a5ed1cf74e5f2134d61076fece21aacd080bbbfaab94125401d7bbc74eafc7e7e3a2235f59dc03d6e332e53d558493a1e22213b92c77b1328ff1b83855da704fc366bf4415490602481d1939136eeaf252c65184912a779d9d94a90e32b72c1877ef60b6d79e707ce5a762acb4bed46436efe4fe62aae50b39068cc508a09427c92791cbcbea44318529cc68d297ca24e1b73b2394c385ec63fcd85ed56eec3de48860a1ec950aad4f91cbf741dbd7bf1d3c278875bd20e31ff5372339f6aa5280ad9b8bf3514889ac44600fe57ca0b535d6dc6b0b981e079595aad186ee0be9b07e837391ab165e4ca406601c876a86e246a3f53311e21199cccc0b080f28d18f4dc6987731e10e4ade00df7c6921c5ef3022b6f49a29ba307a2c8f4bd2ba42fcfa0aad68a2f0ad31fff69a99d3471f9036d3f5817a3edfeff7fc3c14e1151d767aaa043481cfd1a6ee55e8e5d7853ecdaf9da2bb36c716beae8d706bc648a790d4697e1d044a11a49f305ab8bc64a094bd81bda7395fe6f77dd5557c39919dd9bb9cf22a87fe47408ae3ec2247007d015a5", +} as const; + +/** + * Default node operational certificate for Cardano DevNet. + * Certifies the stake pool's authority to produce blocks. + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_OPCERT = { + type: "NodeOperationalCertificate", + description: "", + cborHex: + "828458204cd49bb05e9885142fe7af1481107995298771fd1a24e72b506a4d600ee2b3120000584089fc9e9f551b2ea873bf31643659d049152d5c8e8de86be4056370bccc5fa62dd12e3f152f1664e614763e46eaa7a17ed366b5cef19958773d1ab96941442e0b58205a3d778e76741a009e29d23093cfe046131808d34d7c864967b515e98dfc3583", +} as const; + +/** + * Default VRF (Verifiable Random Function) signing key for Cardano DevNet. + * Used for leader election and randomness generation in the consensus protocol. + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_VRF_SKEY = { + type: "VrfSigningKey_PraosVRF", + description: "VRF Signing Key", + cborHex: + "5840899795b70e9f34b737159fe21a6170568d6031e187f0cc84555c712b7c29b45cb882007593ef70f86e5c0948561a3b8e8851529a4f98975f2b24e768dda38ce2", +} as const; + +/** + * Default configuration for Kupo service + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_KUPO_CONFIG: Required = { + enabled: true, + image: "cardanosolutions/kupo:v2.10.0", + port: 1442, + logLevel: "Info", + match: "*", + deferDbIndexes: true, + since: "origin", +} as const; + +/** + * Default configuration for Ogmios service + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_OGMIOS_CONFIG: Required = { + enabled: true, + image: "cardanosolutions/ogmios:v6.12.0", + port: 1337, + logLevel: "info", +} as const; + +/** + * Complete default configuration for Cardano DevNet. + * Includes all required settings for running a local Cardano development network. + * + * @since 2.0.0 + * @category constants + */ +export const DEFAULT_DEVNET_CONFIG: Required = { + clusterName: "devnet", + image: "ghcr.io/intersectmbo/cardano-node:10.4.1", + ports: { + node: 4001, + submit: 8090, + }, + networkMagic: 42, + nodeConfig: DEFAULT_NODE_CONFIG, + byronGenesis: DEFAULT_BYRON_GENESIS, + shelleyGenesis: DEFAULT_SHELLEY_GENESIS, + alonzoGenesis: DEFAULT_ALONZO_GENESIS, + conwayGenesis: DEFAULT_CONWAY_GENESIS, + kesKey: DEFAULT_KES_KEY, + opCert: DEFAULT_OPCERT, + vrfSkey: DEFAULT_VRF_SKEY, + kupo: DEFAULT_KUPO_CONFIG, + ogmios: DEFAULT_OGMIOS_CONFIG, +} as const; \ No newline at end of file diff --git a/packages/evolution/src/DnsName.ts b/packages/evolution/src/DnsName.ts new file mode 100644 index 00000000..6ecf794c --- /dev/null +++ b/packages/evolution/src/DnsName.ts @@ -0,0 +1,78 @@ +import { Data, Schema } from "effect" + +import * as _Codec from "./Codec.js" +import * as Text128 from "./Text128.js" + +/** + * Error class for DnsName related operations. + * + * @since 2.0.0 + * @category errors + */ +export class DnsNameError extends Data.TaggedError("DnsNameError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for DnsName with DNS-specific validation. + * dns_name = text .size (0 .. 128) + * + * @since 2.0.0 + * @category model + */ +export const DnsName = Text128.FromVariableHex.pipe(Schema.brand("DnsName")) + +/** + * Type alias for DnsName. + * + * @since 2.0.0 + * @category model + */ +export type DnsName = typeof DnsName.Type + +export const FromBytes = Schema.compose(Text128.FromVariableBytes, DnsName).annotations({ + identifier: "DnsName.FromBytes" +}) + +export const FromHex = Schema.compose(Text128.FromVariableHex, DnsName).annotations({ + identifier: "DnsName.FromHex" +}) + +/** + * Create a DnsName from a string. + * + * @since 2.0.0 + * @category constructors + */ +export const make = DnsName.make + +/** + * Check if two DnsName instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: DnsName, b: DnsName): boolean => a === b + +/** + * Generate a random DnsName. + * + * @since 2.0.0 + * @category generators + */ +export const generator = Text128.generator.map((text) => make(text)) + +/** + * Codec utilities for DnsName encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = _Codec.createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + DnsNameError +) diff --git a/packages/evolution/src/Ed25519Signature.ts b/packages/evolution/src/Ed25519Signature.ts new file mode 100644 index 00000000..5961ae8f --- /dev/null +++ b/packages/evolution/src/Ed25519Signature.ts @@ -0,0 +1,76 @@ +import { Data, FastCheck, pipe, Schema } from "effect" + +import * as Bytes64 from "./Bytes64.js" +import { createEncoders } from "./Codec.js" + +/** + * Error class for Ed25519Signature related operations. + * + * @since 2.0.0 + * @category errors + */ +export class Ed25519SignatureError extends Data.TaggedError("Ed25519SignatureError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for Ed25519Signature representing an Ed25519 signature. + * ed25519_signature = bytes .size 64 + * Follows the Conway-era CDDL specification. + * + * @since 2.0.0 + * @category schemas + */ +export const Ed25519Signature = pipe(Bytes64.HexSchema, Schema.brand("Ed25519Signature")).annotations({ + identifier: "Ed25519Signature" +}) + +export type Ed25519Signature = typeof Ed25519Signature.Type + +export const FromBytes = Schema.compose( + Bytes64.FromBytes, // Uint8Array -> hex string + Ed25519Signature // hex string -> Ed25519Signature +).annotations({ + identifier: "Ed25519Signature.Bytes" +}) + +export const FromHex = Schema.compose( + Bytes64.HexSchema, // string -> hex string + Ed25519Signature // hex string -> Ed25519Signature +).annotations({ + identifier: "Ed25519Signature.Hex" +}) + +/** + * Check if two Ed25519Signature instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: Ed25519Signature, b: Ed25519Signature): boolean => a === b + +/** + * Generate a random Ed25519Signature. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.uint8Array({ + minLength: Bytes64.BYTES_LENGTH, + maxLength: Bytes64.BYTES_LENGTH +}).map((bytes) => Codec.Decode.bytes(bytes)) + +/** + * Codec utilities for Ed25519Signature encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + Ed25519SignatureError +) diff --git a/packages/evolution/src/EnterpriseAddress.ts b/packages/evolution/src/EnterpriseAddress.ts new file mode 100644 index 00000000..b7ffbeb5 --- /dev/null +++ b/packages/evolution/src/EnterpriseAddress.ts @@ -0,0 +1,116 @@ +import { Data, Effect, FastCheck, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as Bytes29 from "./Bytes29.js" +import * as _Codec from "./Codec.js" +import * as Credential from "./Credential.js" +import * as KeyHash from "./KeyHash.js" +import * as NetworkId from "./NetworkId.js" +import * as ScriptHash from "./ScriptHash.js" + +export class EnterpriseAddressError extends Data.TaggedError("EnterpriseAddressError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Enterprise address with only payment credential + * + * @since 2.0.0 + * @category schemas + */ +export class EnterpriseAddress extends Schema.TaggedClass("EnterpriseAddress")("EnterpriseAddress", { + networkId: NetworkId.NetworkId, + paymentCredential: Credential.Credential +}) { + [Symbol.for("nodejs.util.inspect.custom")]() { + return { + _tag: "EnterpriseAddress", + networkId: this.networkId, + paymentCredential: this.paymentCredential + } + } +} + +export const FromBytes = Schema.transformOrFail(Bytes29.BytesSchema, EnterpriseAddress, { + strict: true, + encode: (_, __, ___, toA) => + Effect.gen(function* () { + const paymentBit = toA.paymentCredential._tag === "KeyHash" ? 0 : 1 + const header = (0b01 << 6) | (0b1 << 5) | (paymentBit << 4) | (toA.networkId & 0b00001111) + + const result = new Uint8Array(29) + result[0] = header + + const paymentCredentialBytes = yield* ParseResult.decode(Bytes.FromHex)(toA.paymentCredential.hash) + result.set(paymentCredentialBytes, 1) + + return yield* ParseResult.succeed(result) + }), + decode: (_, __, ___, fromA) => + Effect.gen(function* () { + const header = fromA[0] + // Extract network ID from the lower 4 bits + const networkId = header & 0b00001111 + // Extract address type from the upper 4 bits (bits 4-7) + const addressType = header >> 4 + + // Script payment + const isPaymentKey = (addressType & 0b0001) === 0 + const paymentCredential: Credential.Credential = isPaymentKey + ? { + _tag: "KeyHash", + hash: yield* ParseResult.decode(KeyHash.FromBytes)(fromA.slice(1, 29)) + } + : { + _tag: "ScriptHash", + hash: yield* ParseResult.decode(ScriptHash.BytesSchema)(fromA.slice(1, 29)) + } + return yield* ParseResult.decode(EnterpriseAddress)({ + _tag: "EnterpriseAddress", + networkId, + paymentCredential + }) + }) +}) + +export const FromHex = Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes // Uint8Array โ†’ EnterpriseAddress +) + +/** + * Check if two EnterpriseAddress instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: EnterpriseAddress, b: EnterpriseAddress): boolean => { + return ( + a.networkId === b.networkId && + a.paymentCredential._tag === b.paymentCredential._tag && + a.paymentCredential.hash === b.paymentCredential.hash + ) +} + +/** + * Generate a random EnterpriseAddress. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.tuple(NetworkId.generator, Credential.generator).map( + ([networkId, paymentCredential]) => + new EnterpriseAddress({ + networkId, + paymentCredential + }) +) + +export const Codec = _Codec.createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + EnterpriseAddressError +) diff --git a/packages/evolution/src/EpochNo.ts b/packages/evolution/src/EpochNo.ts new file mode 100644 index 00000000..fbb010f1 --- /dev/null +++ b/packages/evolution/src/EpochNo.ts @@ -0,0 +1,80 @@ +import { Data, Schema } from "effect" + +import * as Numeric from "./Numeric.js" + +/** + * CDDL specification: + * epoch_no = uint .size 8 + * + */ + +/** + * Error class for EpochNo related operations. + * + * @since 2.0.0 + * @category errors + */ +export class EpochNoError extends Data.TaggedError("EpochNoError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for validating epoch numbers (0-255). + * + * @since 2.0.0 + * @category schemas + */ +export const EpochNoSchema = Numeric.Uint8Schema.pipe(Schema.brand("EpochNo")) + +/** + * Type alias for EpochNo representing blockchain epoch numbers. + * + * @since 2.0.0 + * @category model + */ +export type EpochNo = typeof EpochNoSchema.Type + +/** + * Smart constructor for creating EpochNo values. + * + * @since 2.0.0 + * @category constructors + */ +export const make = EpochNoSchema.make + +/** + * Check if a value is a valid EpochNo. + * + * @since 2.0.0 + * @category predicates + */ +export const is = Schema.is(EpochNoSchema) + +/** + * Check if two EpochNo instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: EpochNo, b: EpochNo): boolean => a === b + +/** + * Compare two EpochNo values. + * + * @since 2.0.0 + * @category ordering + */ +export const compare = (a: EpochNo, b: EpochNo): -1 | 0 | 1 => { + if (a < b) return -1 + if (a > b) return 1 + return 0 +} + +/** + * Generate a random EpochNo. + * + * @since 2.0.0 + * @category generators + */ +export const generator = Numeric.Uint8Generator diff --git a/packages/evolution/src/FormatError.ts b/packages/evolution/src/FormatError.ts new file mode 100644 index 00000000..7a79c951 --- /dev/null +++ b/packages/evolution/src/FormatError.ts @@ -0,0 +1,22 @@ +import { Predicate } from "effect" + +export const make = ({ cause, message }: { message?: string; cause?: unknown }) => { + if (!message && !cause) return { message: `{ "message": "Unknown error occurred" }` } + if (!message) + return Predicate.isError(cause) + ? { message: `{ "message": "${cause.message}" }`, cause } + : { message: `{ "message": "${String(cause)}" }`, cause } + if (!cause) return { message: `{ "message": "${message}" }` } + + const causeStr = Predicate.isError(cause) ? cause.message : String(cause) + + return { + message: `{ "message": "${message}" , "cause": "${causeStr}" }`, + cause + } +} + +export const makeFromUnknown = ({ cause }: { cause: unknown }) => + Predicate.isError(cause) + ? { message: `{ message: ${cause.message} }`, cause } + : { message: `{ message: ${String(cause)} }` } diff --git a/packages/evolution/src/Hash28.ts b/packages/evolution/src/Hash28.ts new file mode 100644 index 00000000..87a3cc5a --- /dev/null +++ b/packages/evolution/src/Hash28.ts @@ -0,0 +1,161 @@ +import { Data, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as _Codec from "./Codec.js" + +export class Hash28Error extends Data.TaggedError("Hash28Error")<{ + message?: string + cause?: unknown +}> {} + +// Add constants following the style guide +export const HASH28_BYTES_LENGTH = 28 +export const HASH28_HEX_LENGTH = 56 + +/** + * Schema for Hash28 bytes with 28-byte length validation. + * + * @since 2.0.0 + * @category schemas + */ +export const BytesSchema = Schema.Uint8ArrayFromSelf.pipe( + Schema.filter((a) => a.length === HASH28_BYTES_LENGTH) +).annotations({ + identifier: "Hash28.Bytes", + message: (issue) => + `Hash28 bytes must be exactly ${HASH28_BYTES_LENGTH} bytes, got ${(issue.actual as Uint8Array).length}` +}) + +/** + * Schema for Hash28 hex strings with 56-character length validation. + * + * @since 2.0.0 + * @category schemas + */ +export const HexSchema = Bytes.HexSchema.pipe(Schema.filter((a: string) => a.length === HASH28_HEX_LENGTH)).annotations( + { + identifier: "Hash28.Hex", + message: (issue) => + `Hash28 hex must be exactly ${HASH28_HEX_LENGTH} characters, got ${(issue.actual as string).length}` + } +) + +/** + * Schema for variable-length byte arrays from 0 to 28 bytes. + * Useful for asset names and other variable-length data structures. + * + * @since 2.0.0 + * @category schemas + */ +export const VariableBytesSchema = Schema.Uint8ArrayFromSelf.pipe( + Schema.filter((a) => a.length >= 0 && a.length <= HASH28_BYTES_LENGTH) +).annotations({ + message: (issue) => + `must be a byte array of length 0 to ${HASH28_BYTES_LENGTH}, but got ${(issue.actual as Uint8Array).length}`, + identifier: "Hash28.VariableBytes" +}) + +/** + * Schema for variable-length hex strings from 0 to 56 characters (0 to 28 bytes). + * Useful for asset names and other variable-length data structures. + * + * @since 2.0.0 + * @category schemas + */ +export const VariableHexSchema = Bytes.HexSchema.pipe( + Schema.filter((a: string) => a.length >= 0 && a.length <= HASH28_HEX_LENGTH) +).annotations({ + message: (issue) => + `must be a hex string of length 0 to ${HASH28_HEX_LENGTH}, but got ${(issue.actual as string).length}`, + identifier: "Hash28.VariableHex" +}) + +/** + * Schema transformation that converts from Uint8Array to hex string. + * Like Bytes.FromBytes but with Hash28-specific length validation. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = Schema.transform(BytesSchema, HexSchema, { + strict: true, + decode: (toA) => { + let hex = "" + for (let i = 0; i < toA.length; i++) { + hex += toA[i].toString(16).padStart(2, "0") + } + return hex + }, + encode: (fromA) => { + const array = new Uint8Array(fromA.length / 2) + for (let ai = 0, hi = 0; ai < array.length; ai++, hi += 2) { + array[ai] = parseInt(fromA.slice(hi, hi + 2), 16) + } + return array + } +}) + +/** + * Schema transformation that converts from hex string to Uint8Array. + * Like Bytes.FromHex but with Hash28-specific length validation. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = Schema.transform(HexSchema, BytesSchema, { + strict: true, + decode: (fromA) => { + const array = new Uint8Array(fromA.length / 2) + for (let ai = 0, hi = 0; ai < array.length; ai++, hi += 2) { + array[ai] = parseInt(fromA.slice(hi, hi + 2), 16) + } + return array + }, + encode: (toA) => { + let hex = "" + for (let i = 0; i < toA.length; i++) { + hex += toA[i].toString(16).padStart(2, "0") + } + return hex + } +}) + +/** + * Schema transformer for variable-length data that converts between hex strings and byte arrays. + * Works with 0 to 28 bytes (0 to 56 hex characters). + * + * @since 2.0.0 + * @category schemas + */ +export const FromVariableBytes = Schema.transform(VariableBytesSchema, VariableHexSchema, { + strict: true, + decode: (toA) => { + let hex = "" + for (let i = 0; i < toA.length; i++) { + hex += toA[i].toString(16).padStart(2, "0") + } + return hex + }, + encode: (fromA) => { + if (fromA.length === 0) return new Uint8Array(0) + const array = new Uint8Array(fromA.length / 2) + for (let ai = 0, hi = 0; ai < array.length; ai++, hi += 2) { + array[ai] = parseInt(fromA.slice(hi, hi + 2), 16) + } + return array + } +}) + +/** + * Codec for Hash28 encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = _Codec.createEncoders( + { + bytes: FromBytes, + variableBytes: FromVariableBytes + }, + Hash28Error +) diff --git a/packages/evolution/src/Header.ts b/packages/evolution/src/Header.ts new file mode 100644 index 00000000..c2c4dc33 --- /dev/null +++ b/packages/evolution/src/Header.ts @@ -0,0 +1,122 @@ +/** + * Header module based on Conway CDDL specification + * + * CDDL: header = [header_body, body_signature : kes_signature] + * + * @since 2.0.0 + */ +import { Data, Effect, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import { createEncoders } from "./Codec.js" +import * as HeaderBody from "./HeaderBody.js" +import * as KesSignature from "./KesSignature.js" + +/** + * Error class for Header operations + * + * @since 2.0.0 + * @category errors + */ +export class HeaderError extends Data.TaggedError("HeaderError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Header implementation using HeaderBody and KesSignature + * + * CDDL: header = [header_body, body_signature : kes_signature] + * + * @since 2.0.0 + * @category model + */ +export class Header extends Schema.TaggedClass
()("Header", { + headerBody: HeaderBody.HeaderBody, + bodySignature: KesSignature.KesSignature +}) {} + +/** + * Check if two Header instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: Header, b: Header): boolean => + HeaderBody.equals(a.headerBody, b.headerBody) && KesSignature.equals(a.bodySignature, b.bodySignature) + +/** + * Predicate to check if a value is a Header instance. + * + * @since 2.0.0 + * @category predicates + */ +export const isHeader = (value: unknown): value is Header => value instanceof Header + +/** + * CDDL schema for Header. + * header = [header_body, body_signature : kes_signature] + * + * @since 2.0.0 + * @category schemas + */ +export const FromCDDL = Schema.transformOrFail( + Schema.Tuple( + Schema.encodedSchema(HeaderBody.FromCDDL), // header_body using HeaderBody CDDL schema + CBOR.ByteArray // body_signature as bytes + ), + Schema.typeSchema(Header), + { + strict: true, + encode: (toA) => + Effect.gen(function* () { + const headerBodyCddl = yield* ParseResult.encode(HeaderBody.FromCDDL)(toA.headerBody) + const bodySignatureBytes = yield* ParseResult.encode(KesSignature.FromBytes)(toA.bodySignature) + return [headerBodyCddl, bodySignatureBytes] as const + }), + decode: ([headerBodyCddl, bodySignatureBytes]) => + Effect.gen(function* () { + const headerBody = yield* ParseResult.decode(HeaderBody.FromCDDL)(headerBodyCddl) + const bodySignature = yield* ParseResult.decode(KesSignature.FromBytes)(bodySignatureBytes) + return yield* ParseResult.decode(Header)({ + _tag: "Header", + headerBody, + bodySignature + }) + }) + } +) + +/** + * CBOR bytes transformation schema for Header. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + FromCDDL // CBOR โ†’ Header + ) + +/** + * CBOR hex transformation schema for Header. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ Header + ) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options) + }, + HeaderError + ) diff --git a/packages/evolution/src/HeaderBody.ts b/packages/evolution/src/HeaderBody.ts new file mode 100644 index 00000000..412ceb57 --- /dev/null +++ b/packages/evolution/src/HeaderBody.ts @@ -0,0 +1,235 @@ +import { Data, Effect, ParseResult, Schema } from "effect" + +import * as BlockBodyHash from "./BlockBodyHash.js" +import * as BlockHeaderHash from "./BlockHeaderHash.js" +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" +import * as Ed25519Signature from "./Ed25519Signature.js" +import * as KESVkey from "./KESVkey.js" +import * as Natural from "./Natural.js" +import * as OperationalCert from "./OperationalCert.js" +import * as ProtocolVersion from "./ProtocolVersion.js" +import * as VKey from "./VKey.js" +import * as VrfCert from "./VrfCert.js" +import * as VrfVkey from "./VrfVkey.js" + +/** + * Error class for HeaderBody related operations. + * + * @since 2.0.0 + * @category errors + */ +export class HeaderBodyError extends Data.TaggedError("HeaderBodyError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for HeaderBody representing a block header body. + * header_body = [ + * block_number : uint64, + * slot : uint64, + * prev_hash : block_header_hash / null, + * issuer_vkey : vkey, + * vrf_vkey : vrf_vkey, + * vrf_result : vrf_cert, + * block_body_size : uint32, + * block_body_hash : block_body_hash, + * operational_cert : operational_cert, + * protocol_version : protocol_version + * ] + * + * @since 2.0.0 + * @category model + */ +export class HeaderBody extends Schema.TaggedClass()("HeaderBody", { + blockNumber: Natural.Natural, + slot: Natural.Natural, + prevHash: Schema.NullOr(BlockHeaderHash.BlockHeaderHash), + issuerVkey: VKey.VKey, + vrfVkey: VrfVkey.VrfVkey, + vrfResult: VrfCert.VrfCert, + blockBodySize: Natural.Natural, + blockBodyHash: BlockBodyHash.BlockBodyHash, + operationalCert: OperationalCert.OperationalCert, + protocolVersion: ProtocolVersion.ProtocolVersion +}) {} + +/** + * Check if two HeaderBody instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: HeaderBody, b: HeaderBody): boolean => + a.blockNumber === b.blockNumber && + a.slot === b.slot && + a.prevHash === b.prevHash && + VKey.equals(a.issuerVkey, b.issuerVkey) && + VrfVkey.equals(a.vrfVkey, b.vrfVkey) && + VrfCert.equals(a.vrfResult, b.vrfResult) && + a.blockBodySize === b.blockBodySize && + BlockBodyHash.equals(a.blockBodyHash, b.blockBodyHash) && + OperationalCert.equals(a.operationalCert, b.operationalCert) && + ProtocolVersion.equals(a.protocolVersion, b.protocolVersion) + +/** + * CDDL schema for HeaderBody. + * header_body = [ + * block_number : uint64, + * slot : uint64, + * prev_hash : block_header_hash / null, + * issuer_vkey : vkey, + * vrf_vkey : vrf_vkey, + * vrf_result : vrf_cert, + * block_body_size : uint32, + * block_body_hash : block_body_hash, + * operational_cert : operational_cert, + * protocol_version : protocol_version + * ] + * + * @since 2.0.0 + * @category schemas + */ +export const FromCDDL = Schema.transformOrFail( + Schema.Tuple( + CBOR.Integer, // block_number as bigint + CBOR.Integer, // slot as bigint + Schema.NullOr(CBOR.ByteArray), // prev_hash as bytes or null + CBOR.ByteArray, // issuer_vkey as bytes (32 bytes) + CBOR.ByteArray, // vrf_vkey as bytes (32 bytes) + Schema.encodedSchema( + VrfCert.VrfCertCDDLSchema // vrf_result as VrfCert + ), + CBOR.Integer, // block_body_size as bigint + CBOR.ByteArray, // block_body_hash as bytes + Schema.encodedSchema( + OperationalCert.FromCDDL // operational_cert as OperationalCert + ), + Schema.encodedSchema( + ProtocolVersion.FromCDDL // protocol_version as ProtocolVersion + ) + ), + Schema.typeSchema(HeaderBody), + { + strict: true, + encode: (toA) => + Effect.gen(function* () { + const prevHashBytes = toA.prevHash ? yield* ParseResult.encode(BlockHeaderHash.FromBytes)(toA.prevHash) : null + const issuerVkeyBytes = yield* ParseResult.encode(VKey.FromBytes)(toA.issuerVkey) + const vrfVkeyBytes = yield* ParseResult.encode(VrfVkey.FromBytes)(toA.vrfVkey) + const vrfOutputBytes = yield* ParseResult.encode(VrfCert.VRFOutputFromBytes)(toA.vrfResult.output) + const vrfProofBytes = yield* ParseResult.encode(VrfCert.VRFProofFromBytes)(toA.vrfResult.proof) + const blockBodyHashBytes = yield* ParseResult.encode(BlockBodyHash.FromBytes)(toA.blockBodyHash) + const hotVkeyBytes = yield* ParseResult.encode(KESVkey.FromBytes)(toA.operationalCert.hotVkey) + const sigmaBytes = yield* ParseResult.encode(Ed25519Signature.FromBytes)(toA.operationalCert.sigma) + + return [ + BigInt(toA.blockNumber), + BigInt(toA.slot), + prevHashBytes, + issuerVkeyBytes, + vrfVkeyBytes, + [vrfOutputBytes, vrfProofBytes] as const, + BigInt(toA.blockBodySize), + blockBodyHashBytes, + [ + hotVkeyBytes, + BigInt(toA.operationalCert.sequenceNumber), + BigInt(toA.operationalCert.kesPeriod), + sigmaBytes + ] as const, + [BigInt(toA.protocolVersion.major), BigInt(toA.protocolVersion.minor)] as const + ] as const + }), + decode: ([ + blockNumber, + slot, + prevHashBytes, + issuerVkeyBytes, + vrfVkeyBytes, + [vrfOutputBytes, vrfProofBytes], + blockBodySize, + blockBodyHashBytes, + [hotVkeyBytes, sequenceNumber, kesPeriod, sigmaBytes], + [protocolMajor, protocolMinor] + ]) => + Effect.gen(function* () { + const prevHash = prevHashBytes ? yield* ParseResult.decode(BlockHeaderHash.FromBytes)(prevHashBytes) : null + const issuerVkey = yield* ParseResult.decode(VKey.FromBytes)(issuerVkeyBytes) + const vrfVkey = yield* ParseResult.decode(VrfVkey.FromBytes)(vrfVkeyBytes) + const vrfOutput = yield* ParseResult.decode(VrfCert.VRFOutputFromBytes)(vrfOutputBytes) + const vrfProof = yield* ParseResult.decode(VrfCert.VRFProofFromBytes)(vrfProofBytes) + const blockBodyHash = yield* ParseResult.decode(BlockBodyHash.FromBytes)(blockBodyHashBytes) + const hotVkey = yield* ParseResult.decode(KESVkey.FromBytes)(hotVkeyBytes) + const sigma = yield* ParseResult.decode(Ed25519Signature.FromBytes)(sigmaBytes) + + return yield* ParseResult.decode(HeaderBody)({ + _tag: "HeaderBody", + blockNumber: Natural.Natural.make(Number(blockNumber)), + slot: Natural.Natural.make(Number(slot)), + prevHash, + issuerVkey, + vrfVkey, + vrfResult: new VrfCert.VrfCert({ + output: vrfOutput, + proof: vrfProof + }), + blockBodySize: Natural.Natural.make(Number(blockBodySize)), + blockBodyHash, + operationalCert: new OperationalCert.OperationalCert({ + hotVkey, + sequenceNumber, + kesPeriod, + sigma + }), + protocolVersion: new ProtocolVersion.ProtocolVersion({ + major: Number(protocolMajor), + minor: Number(protocolMinor) + }) + }) + }) + } +) + +/** + * Check if the given value is a valid HeaderBody. + * + * @since 2.0.0 + * @category predicates + */ +export const isHeaderBody = Schema.is(HeaderBody) + +/** + * CBOR bytes transformation schema for HeaderBody. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + FromCDDL // CBOR โ†’ HeaderBody + ) + +/** + * CBOR hex transformation schema for HeaderBody. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ HeaderBody + ) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options) + }, + HeaderBodyError + ) diff --git a/packages/evolution/src/IPv4.ts b/packages/evolution/src/IPv4.ts new file mode 100644 index 00000000..72662694 --- /dev/null +++ b/packages/evolution/src/IPv4.ts @@ -0,0 +1,75 @@ +import { Data, FastCheck, pipe, Schema } from "effect" + +import * as Bytes4 from "./Bytes4.js" +import { createEncoders } from "./Codec.js" + +/** + * Error class for IPv4 related operations. + * + * @since 2.0.0 + * @category errors + */ +export class IPv4Error extends Data.TaggedError("IPv4Error")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for IPv4 representing an IPv4 network address. + * Stored as 4 bytes in network byte order (big-endian). + * + * @since 2.0.0 + * @category schemas + */ +export const IPv4 = pipe(Bytes4.HexSchema, Schema.brand("IPv4")).annotations({ + identifier: "IPv4" +}) + +export type IPv4 = typeof IPv4.Type + +export const FromBytes = Schema.compose( + Bytes4.FromBytes, // Uint8Array -> hex string + IPv4 // hex string -> IPv4 +).annotations({ + identifier: "IPv4.Bytes" +}) + +export const FromHex = Schema.compose( + Bytes4.HexSchema, // string -> hex string + IPv4 // hex string -> IPv4 +).annotations({ + identifier: "IPv4.Hex" +}) + +/** + * Check if two IPv4 instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: IPv4, b: IPv4): boolean => a === b + +/** + * Generate a random IPv4. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.uint8Array({ + minLength: Bytes4.BYTES_LENGTH, + maxLength: Bytes4.BYTES_LENGTH +}).map((bytes) => Codec.Decode.bytes(bytes)) + +/** + * Codec utilities for IPv4 encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + IPv4Error +) diff --git a/packages/evolution/src/IPv6.ts b/packages/evolution/src/IPv6.ts new file mode 100644 index 00000000..7b97f188 --- /dev/null +++ b/packages/evolution/src/IPv6.ts @@ -0,0 +1,75 @@ +import { Data, FastCheck, pipe, Schema } from "effect" + +import * as Bytes16 from "./Bytes16.js" +import { createEncoders } from "./Codec.js" + +/** + * Error class for IPv6 related operations. + * + * @since 2.0.0 + * @category errors + */ +export class IPv6Error extends Data.TaggedError("IPv6Error")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for IPv6 representing an IPv6 network address. + * Stored as 16 bytes in network byte order (big-endian). + * + * @since 2.0.0 + * @category schemas + */ +export const IPv6 = pipe(Bytes16.HexSchema, Schema.brand("IPv6")).annotations({ + identifier: "IPv6" +}) + +export type IPv6 = typeof IPv6.Type + +export const FromBytes = Schema.compose( + Bytes16.FromBytes, // Uint8Array -> hex string + IPv6 // hex string -> IPv6 +).annotations({ + identifier: "IPv6.Bytes" +}) + +export const FromHex = Schema.compose( + Bytes16.HexSchema, // string -> hex string + IPv6 // hex string -> IPv6 +).annotations({ + identifier: "IPv6.Hex" +}) + +/** + * Check if two IPv6 instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: IPv6, b: IPv6): boolean => a === b + +/** + * Generate a random IPv6. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.uint8Array({ + minLength: Bytes16.BYTES_LENGTH, + maxLength: Bytes16.BYTES_LENGTH +}).map((bytes) => Codec.Decode.bytes(bytes)) + +/** + * Codec utilities for IPv6 encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + IPv6Error +) diff --git a/packages/evolution/src/KESVkey.ts b/packages/evolution/src/KESVkey.ts new file mode 100644 index 00000000..d457799a --- /dev/null +++ b/packages/evolution/src/KESVkey.ts @@ -0,0 +1,76 @@ +import { Data, FastCheck, pipe, Schema } from "effect" + +import * as Bytes32 from "./Bytes32.js" +import { createEncoders } from "./Codec.js" + +/** + * Error class for KESVkey related operations. + * + * @since 2.0.0 + * @category errors + */ +export class KESVkeyError extends Data.TaggedError("KESVkeyError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for KESVkey representing a KES verification key. + * kes_vkey = bytes .size 32 + * Follows the Conway-era CDDL specification. + * + * @since 2.0.0 + * @category schemas + */ +export const KESVkey = pipe(Bytes32.HexSchema, Schema.brand("KESVkey")).annotations({ + identifier: "KESVkey" +}) + +export type KESVkey = typeof KESVkey.Type + +export const FromBytes = Schema.compose( + Bytes32.FromBytes, // Uint8Array -> hex string + KESVkey // hex string -> KESVkey +).annotations({ + identifier: "KESVkey.Bytes" +}) + +export const FromHex = Schema.compose( + Bytes32.HexSchema, // string -> hex string + KESVkey // hex string -> KESVkey +).annotations({ + identifier: "KESVkey.Hex" +}) + +/** + * Check if two KESVkey instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: KESVkey, b: KESVkey): boolean => a === b + +/** + * Generate a random KESVkey. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.uint8Array({ + minLength: Bytes32.Bytes32_BYTES_LENGTH, + maxLength: Bytes32.Bytes32_BYTES_LENGTH +}).map((bytes) => Codec.Decode.bytes(bytes)) + +/** + * Codec utilities for KESVkey encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + KESVkeyError +) diff --git a/packages/evolution/src/KesSignature.ts b/packages/evolution/src/KesSignature.ts new file mode 100644 index 00000000..3ae22f51 --- /dev/null +++ b/packages/evolution/src/KesSignature.ts @@ -0,0 +1,76 @@ +import { Data, FastCheck, pipe, Schema } from "effect" + +import * as Bytes448 from "./Bytes448.js" +import { createEncoders } from "./Codec.js" + +/** + * Error class for KesSignature related operations. + * + * @since 2.0.0 + * @category errors + */ +export class KesSignatureError extends Data.TaggedError("KesSignatureError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for KesSignature representing a KES signature. + * kes_signature = bytes .size 448 + * Follows the Conway-era CDDL specification. + * + * @since 2.0.0 + * @category schemas + */ +export const KesSignature = pipe(Bytes448.HexSchema, Schema.brand("KesSignature")).annotations({ + identifier: "KesSignature" +}) + +export type KesSignature = typeof KesSignature.Type + +export const FromBytes = Schema.compose( + Bytes448.FromBytes, // Uint8Array -> hex string + KesSignature // hex string -> KesSignature +).annotations({ + identifier: "KesSignature.Bytes" +}) + +export const FromHex = Schema.compose( + Bytes448.HexSchema, // string -> hex string + KesSignature // hex string -> KesSignature +).annotations({ + identifier: "KesSignature.Hex" +}) + +/** + * Check if two KesSignature instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: KesSignature, b: KesSignature): boolean => a === b + +/** + * Generate a random KesSignature. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.uint8Array({ + minLength: Bytes448.BYTES_LENGTH, + maxLength: Bytes448.BYTES_LENGTH +}).map((bytes) => Codec.Decode.bytes(bytes)) + +/** + * Codec utilities for KesSignature encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + KesSignatureError +) diff --git a/packages/evolution/src/KeyHash.ts b/packages/evolution/src/KeyHash.ts new file mode 100644 index 00000000..f525c808 --- /dev/null +++ b/packages/evolution/src/KeyHash.ts @@ -0,0 +1,76 @@ +import { Data, FastCheck, pipe, Schema } from "effect" + +import { createEncoders } from "./Codec.js" +import * as Hash28 from "./Hash28.js" + +/** + * Error class for KeyHash related operations. + * + * @since 2.0.0 + * @category errors + */ +export class KeyHashError extends Data.TaggedError("KeyHashError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for KeyHash representing a verification key hash. + * addr_keyhash = hash28 + * Follows CIP-0019 binary representation. + * + * @since 2.0.0 + * @category schemas + */ +export const KeyHash = pipe(Hash28.HexSchema, Schema.brand("KeyHash")).annotations({ + identifier: "KeyHash" +}) + +export type KeyHash = typeof KeyHash.Type + +export const FromBytes = Schema.compose( + Hash28.FromBytes, // Uint8Array -> hex string + KeyHash // hex string -> KeyHash +).annotations({ + identifier: "KeyHash.FromBytes" +}) + +export const FromHex = Schema.compose( + Hash28.HexSchema, // string -> hex string + KeyHash // hex string -> KeyHash +).annotations({ + identifier: "KeyHash.FromHex" +}) + +/** + * Check if two KeyHash instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: KeyHash, b: KeyHash): boolean => a === b + +/** + * Generate a random KeyHash. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.uint8Array({ + minLength: Hash28.HASH28_BYTES_LENGTH, + maxLength: Hash28.HASH28_BYTES_LENGTH +}).map((bytes) => Codec.Decode.bytes(bytes)) + +/** + * Codec utilities for KeyHash encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bytes: FromBytes, + string: FromHex + }, + KeyHashError +) diff --git a/packages/evolution/src/Mint.ts b/packages/evolution/src/Mint.ts new file mode 100644 index 00000000..31665176 --- /dev/null +++ b/packages/evolution/src/Mint.ts @@ -0,0 +1,330 @@ +import { Data, Effect, Equal, FastCheck, ParseResult, Pretty, Schema } from "effect" + +import * as AssetName from "./AssetName.js" +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" +import * as NonZeroInt64 from "./NonZeroInt64.js" +import * as PolicyId from "./PolicyId.js" + +/** + * Error class for Mint related operations. + * + * @since 2.0.0 + * @category errors + */ +export class MintError extends Data.TaggedError("MintError")<{ + message?: string + reason?: "InvalidStructure" | "EmptyAssetMap" | "ZeroAmount" | "DuplicateAsset" +}> {} + +/** + * Schema for inner asset map + * ``` + * (asset_name => nonZeroInt64). + * ``` + * + * @since 2.0.0 + * @category schemas + */ +export const AssetMap = Schema.MapFromSelf({ + key: AssetName.AssetName, + value: NonZeroInt64.NonZeroInt64Schema +}) + .pipe(Schema.filter((map) => map.size > 0)) + .annotations({ + message: () => "Asset map cannot be empty", + identifier: "AssetMap" + }) + +export type AssetMap = typeof AssetMap.Type + +/** + * Schema for Mint representing token minting/burning operations. + * ``` + * mint = multiasset + * + * The structure is: policy_id => { asset_name => nonZeroInt64 } + * - Positive values represent minting + * - Negative values represent burning + * ``` + * + * @since 2.0.0 + * @category schemas + */ +export const Mint = Schema.MapFromSelf({ + key: PolicyId.PolicyId, + value: AssetMap +}) + .pipe(Schema.filter((map) => map.size > 0)) + .annotations({ + message: () => "Mint cannot be empty", + identifier: "Mint" + }) + +/** + * Type alias for Mint representing a collection of minting/burning operations. + * Each policy ID maps to a collection of asset names and their amounts. + * Positive amounts indicate minting, negative amounts indicate burning. + * + * @since 2.0.0 + * @category model + */ +export type Mint = typeof Mint.Type + +type PrettyPrint = (self: Mint) => string +export const prettyPrint: PrettyPrint = Pretty.make(Mint) + +/** + * Create empty Mint. + * + * @since 2.0.0 + * @category constructors + */ +export const empty = (): Mint => new Map() + +/** + * Create Mint from a single policy and asset entry. + * + * @since 2.0.0 + * @category constructors + */ +export const singleton = ( + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName, + amount: NonZeroInt64.NonZeroInt64 +): Mint => { + const assetMap = new Map([[assetName, amount]]) + return new Map([[policyId, assetMap]]) +} + +/** + * Add or update an asset in the Mint. + * + * @since 2.0.0 + * @category transformation + */ +/** + * Helper function to create Mint from entries array + */ +export const fromEntries = ( + entries: Array<[PolicyId.PolicyId, Array<[AssetName.AssetName, NonZeroInt64.NonZeroInt64]>]> +): Mint => { + return new Map(entries.map(([policyId, assetEntries]) => [policyId, new Map(assetEntries)])) +} + +export const insert = ( + mint: Mint, + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName, + amount: NonZeroInt64.NonZeroInt64 +): Mint => { + // Get existing asset map or create empty one + const existingAssetMap = mint.get(policyId) + const assetMap = + existingAssetMap !== undefined ? new Map(existingAssetMap).set(assetName, amount) : new Map([[assetName, amount]]) + + const result = new Map(mint) + result.set(policyId, assetMap) + return result +} + +/** + * Remove an asset from the Mint. + * + * @since 2.0.0 + * @category transformation + */ +export const removePolicy = (mint: Mint, policyId: PolicyId.PolicyId): Mint => { + const result = new Map(mint) + result.delete(policyId) + return result +} + +export const removeAsset = (mint: Mint, policyId: PolicyId.PolicyId, assetName: AssetName.AssetName): Mint => { + const assets = mint.get(policyId) + if (assets === undefined) { + return mint // No assets for this policy, nothing to remove + } + const updatedAssets = new Map(assets) + updatedAssets.delete(assetName) + + if (updatedAssets.size === 0) { + // If no assets left, remove the policyId entry + const result = new Map(mint) + result.delete(policyId) + return result + } + + const result = new Map(mint) + result.set(policyId, updatedAssets) + return result +} + +/** + * Get the amount for a specific policy and asset. + * + * @since 2.0.0 + * @category transformation + */ +export const get = (mint: Mint, policyId: PolicyId.PolicyId, assetName: AssetName.AssetName) => { + const assets = mint.get(policyId) + if (assets === undefined) { + return undefined + } + const amount = assets.get(assetName) + if (amount === undefined) { + return undefined + } + return amount +} + +/** + * Check if Mint contains a specific policy and asset. + * + * @since 2.0.0 + * @category predicates + */ +export const has = (mint: Mint, policyId: PolicyId.PolicyId, assetName: AssetName.AssetName): boolean => + get(mint, policyId, assetName) !== undefined + +/** + * Check if Mint is empty. + * + * @since 2.0.0 + * @category predicates + */ +export const isEmpty = (mint: Mint): boolean => mint.size === 0 + +/** + * Get the number of policies in the Mint. + * + * @since 2.0.0 + * @category transformation + */ +export const policyCount = (mint: Mint): number => mint.size + +/** + * Check if two Mint instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (self: Mint, that: Mint): boolean => Equal.equals(self, that) + +/** + * FastCheck generator for Mint instances. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.array( + FastCheck.tuple( + PolicyId.generator, + FastCheck.array(FastCheck.tuple(AssetName.generator, NonZeroInt64.generator), { minLength: 1, maxLength: 5 }) + ), + { minLength: 0, maxLength: 5 } +).map((entries) => fromEntries(entries)) + +/** + * CDDL schema for Mint as map structure. + * ``` + * mint = {* policy_id => {* asset_name => nonZeroInt64}} + * ``` + * + * Where: + * - policy_id: 28-byte Uint8Array (from CBOR byte string) + * - asset_name: variable-length Uint8Array (from CBOR byte string, can be empty) + * - nonZeroInt64: signed 64-bit integer (positive = mint, negative = burn, cannot be zero) + * + * @since 2.0.0 + * @category schemas + */ +export const MintCDDLSchema = Schema.transformOrFail( + Schema.MapFromSelf({ + key: CBOR.ByteArray, // Policy ID as Uint8Array (28 bytes) + value: Schema.MapFromSelf({ + key: CBOR.ByteArray, // Asset name as Uint8Array (variable length) + value: CBOR.Integer // Amount as number (will be converted to NonZeroInt64) + }) + }), + Schema.typeSchema(Mint), + { + strict: true, + encode: (toA) => + Effect.gen(function* () { + // Convert Mint to raw Map data for CBOR encoding + const outerMap = new Map>() + + for (const [policyId, assetMap] of toA.entries()) { + const policyIdBytes = yield* ParseResult.encode(PolicyId.FromBytes)(policyId) + const innerMap = new Map() + + for (const [assetName, amount] of assetMap.entries()) { + const assetNameBytes = yield* ParseResult.encode(AssetName.FromBytes)(assetName) + innerMap.set(assetNameBytes, amount) + } + + outerMap.set(policyIdBytes, innerMap) + } + + return outerMap + }), + + decode: (fromA) => + Effect.gen(function* () { + const mint = new Map() + + for (const [policyIdBytes, assetMapCddl] of fromA.entries()) { + const policyId = yield* ParseResult.decode(PolicyId.FromBytes)(policyIdBytes) + + const assetMap = new Map() + for (const [assetNameBytes, amount] of assetMapCddl.entries()) { + const assetName = yield* ParseResult.decode(AssetName.FromBytes)(assetNameBytes) + const nonZeroAmount = yield* ParseResult.decode(NonZeroInt64.NonZeroInt64Schema)(amount) + + assetMap.set(assetName, nonZeroAmount) + } + + mint.set(policyId, assetMap) + } + + return mint + }) + } +) + +/** + * CBOR bytes transformation schema for Mint. + * Transforms between Uint8Array and Mint using CBOR encoding. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + MintCDDLSchema // CBOR โ†’ Mint + ) + +/** + * CBOR hex transformation schema for Mint. + * Transforms between hex string and Mint using CBOR encoding. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ Mint + ) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options) + }, + MintError + ) diff --git a/packages/evolution/src/MultiAsset.ts b/packages/evolution/src/MultiAsset.ts new file mode 100644 index 00000000..cb747315 --- /dev/null +++ b/packages/evolution/src/MultiAsset.ts @@ -0,0 +1,400 @@ +import { Data, Effect, FastCheck, ParseResult, Schema } from "effect" + +import * as AssetName from "./AssetName.js" +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" +import * as PolicyId from "./PolicyId.js" +import * as PositiveCoin from "./PositiveCoin.js" + +/** + * Error class for MultiAsset related operations. + * + * @since 2.0.0 + * @category errors + */ +export class MultiAssetError extends Data.TaggedError("MultiAssetError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for inner asset map (asset_name => positive_coin). + * + * @since 2.0.0 + * @category schemas + */ +export const AssetMapSchema = Schema.Map({ + key: AssetName.AssetName, + value: PositiveCoin.PositiveCoinSchema +}) + .pipe(Schema.filter((map) => map.size > 0)) + .annotations({ + message: () => "Asset map cannot be empty", + identifier: "AssetMap" + }) + +/** + * Type alias for the inner asset map. + * + * @since 2.0.0 + * @category model + */ +export type AssetMap = typeof AssetMapSchema.Type + +/** + * Schema for MultiAsset representing native assets. + * + * ``` + * multiasset = {+ policy_id => {+ asset_name => a0}} + * case: multiasset = {+ policy_id => {+ asset_name => positive_coin}} + * ``` + * + * @since 2.0.0 + * @category schemas + */ +export const MultiAssetSchema = Schema.MapFromSelf({ + key: PolicyId.PolicyId, + value: AssetMapSchema +}) + .pipe(Schema.filter((map) => map.size > 0)) + .annotations({ + message: () => "MultiAsset cannot be empty", + identifier: "MultiAsset" + }) + +/** + * Type alias for MultiAsset representing a collection of native assets. + * Each policy ID maps to a collection of asset names and their amounts. + * All amounts must be positive (non-zero). + * + * @since 2.0.0 + * @category model + */ +export type MultiAsset = typeof MultiAssetSchema.Type + +/** + * Create an empty MultiAsset (note: this will fail validation as MultiAsset cannot be empty). + * Use this only as a starting point for building a MultiAsset. + * + * @since 2.0.0 + * @category constructors + */ +export const empty = (): Map => new Map() + +/** + * Create a MultiAsset from a single asset. + * + * @since 2.0.0 + * @category constructors + */ +export const singleton = ( + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName, + amount: PositiveCoin.PositiveCoin +): MultiAsset => { + const assetMap = new Map([[assetName, amount]]) + return new Map([[policyId, assetMap]]) +} + +/** + * Add an asset to a MultiAsset, combining amounts if the asset already exists. + * + * @since 2.0.0 + * @category transformation + */ +export const addAsset = ( + multiAsset: MultiAsset, + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName, + amount: PositiveCoin.PositiveCoin +): MultiAsset => { + const existingAssetMap = multiAsset.get(policyId) + + if (existingAssetMap !== undefined) { + const existingAmount = existingAssetMap.get(assetName) + const newAmount = existingAmount !== undefined ? PositiveCoin.add(existingAmount, amount) : amount + + const updatedAssetMap = new Map(existingAssetMap) + updatedAssetMap.set(assetName, newAmount) + + const result = new Map(multiAsset) + result.set(policyId, updatedAssetMap) + return result + } else { + const newAssetMap = new Map([[assetName, amount]]) + const result = new Map(multiAsset) + result.set(policyId, newAssetMap) + return result + } +} + +/** + * Get the amount of a specific asset from a MultiAsset. + * + * @since 2.0.0 + * @category transformation + */ +export const getAsset = (multiAsset: MultiAsset, policyId: PolicyId.PolicyId, assetName: AssetName.AssetName) => { + const assetMap = multiAsset.get(policyId) + if (assetMap !== undefined) { + const amount = assetMap.get(assetName) + return amount !== undefined ? { _tag: "Some" as const, value: amount } : { _tag: "None" as const } + } + return { _tag: "None" as const } +} + +/** + * Check if a MultiAsset contains a specific asset. + * + * @since 2.0.0 + * @category predicates + */ +export const hasAsset = ( + multiAsset: MultiAsset, + policyId: PolicyId.PolicyId, + assetName: AssetName.AssetName +): boolean => { + const result = getAsset(multiAsset, policyId, assetName) + return result._tag === "Some" +} + +/** + * Get all policy IDs in a MultiAsset. + * + * @since 2.0.0 + * @category transformation + */ +export const getPolicyIds = (multiAsset: MultiAsset) => multiAsset.keys() + +/** + * Get all assets for a specific policy ID. + * + * @since 2.0.0 + * @category transformation + */ +export const getAssetsByPolicy = (multiAsset: MultiAsset, policyId: PolicyId.PolicyId) => { + const assetMap = multiAsset.get(policyId) + return assetMap !== undefined ? { _tag: "Some" as const, value: assetMap } : { _tag: "None" as const } +} + +/** + * Check if two MultiAsset instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: MultiAsset, b: MultiAsset): boolean => + a.size === b.size && + Array.from(a.keys()).every((policyId) => { + const aAssets = a.get(policyId) + const bAssets = b.get(policyId) + + if ((aAssets === undefined) !== (bAssets === undefined)) return false + if (aAssets === undefined) return true + if (bAssets === undefined) return false + + return ( + aAssets.size === bAssets.size && + Array.from(aAssets.keys()).every((assetName) => { + const aAmount = aAssets.get(assetName) + const bAmount = bAssets.get(assetName) + return aAmount === bAmount + }) + ) + }) + +/** + * Check if a value is a valid MultiAsset. + * + * @since 2.0.0 + * @category predicates + */ +export const is = (value: unknown): value is MultiAsset => Schema.is(MultiAssetSchema)(value) + +/** + * Generate a random MultiAsset. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.array( + FastCheck.tuple( + PolicyId.generator, + FastCheck.array(FastCheck.tuple(AssetName.generator, PositiveCoin.generator), { minLength: 1, maxLength: 5 }).map( + (assets) => new Map(assets) + ) + ), + { minLength: 1, maxLength: 3 } +).map((policies) => new Map(policies)) + +/** + * CDDL schema for MultiAsset. + * + * ``` + * multiasset = {+ policy_id => {+ asset_name => positive_coin}} + * ``` + * + * @since 2.0.0 + * @category schemas + */ +export const MultiAssetCDDLSchema = Schema.transformOrFail( + Schema.MapFromSelf({ + key: CBOR.ByteArray, + value: Schema.MapFromSelf({ + key: CBOR.ByteArray, + value: CBOR.Integer + }) + }), + Schema.typeSchema(MultiAssetSchema), + { + strict: true, + encode: (toI, _, __, toA) => + Effect.gen(function* () { + // Convert MultiAsset to raw Map data for CBOR encoding + const outerMap = new Map>() + + for (const [policyId, assetMap] of toA.entries()) { + const policyIdBytes = yield* ParseResult.encode(PolicyId.FromBytes)(policyId) + const innerMap = new Map() + + for (const [assetName, amount] of assetMap.entries()) { + const assetNameBytes = yield* ParseResult.encode(AssetName.FromBytes)(assetName) + innerMap.set(assetNameBytes, amount) + } + + outerMap.set(policyIdBytes, innerMap) + } + + return outerMap + }), + + decode: (fromA) => + Effect.gen(function* () { + const result = new Map() + + for (const [policyIdBytes, assetMapCddl] of fromA.entries()) { + const policyId = yield* ParseResult.decode(PolicyId.FromBytes)(policyIdBytes) + + const assetMap = new Map() + for (const [assetNameBytes, amount] of assetMapCddl.entries()) { + const assetName = yield* ParseResult.decode(AssetName.FromBytes)(assetNameBytes) + const positiveCoin = PositiveCoin.make(amount) + assetMap.set(assetName, positiveCoin) + } + + result.set(policyId, assetMap) + } + + return result + }) + } +) + +/** + * CBOR bytes transformation schema for MultiAsset. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + MultiAssetCDDLSchema // CBOR โ†’ MultiAsset + ) + +/** + * CBOR hex transformation schema for MultiAsset. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ MultiAsset + ) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options) + }, + MultiAssetError + ) + +/** + * Merge two MultiAsset instances, combining amounts for assets that exist in both. + * + * @since 2.0.0 + * @category transformation + */ +export const merge = (a: MultiAsset, b: MultiAsset): MultiAsset => { + let result = a + + for (const [policyId, assetMap] of b.entries()) { + for (const [assetName, amount] of assetMap.entries()) { + result = addAsset(result, policyId, assetName, amount) + } + } + + return result +} + +/** + * Subtract MultiAsset b from MultiAsset a. + * Returns a new MultiAsset with amounts reduced by the amounts in b. + * If any asset would result in zero or negative amount, it's removed from the result. + * If the result would be empty, an error is thrown since MultiAsset cannot be empty. + * + * @since 2.0.0 + * @category transformation + */ +export const subtract = (a: MultiAsset, b: MultiAsset): MultiAsset => { + const result = new Map() + + // Start with all assets from a + for (const [policyId, assetMapA] of a.entries()) { + const assetMapB = b.get(policyId) + + if (assetMapB === undefined) { + // No assets to subtract for this policy, keep all + result.set(policyId, assetMapA) + } else { + // Subtract assets for this policy + const newAssetMap = new Map() + + for (const [assetName, amountA] of assetMapA.entries()) { + const amountB = assetMapB.get(assetName) + + if (amountB === undefined) { + // No amount to subtract, keep the original + newAssetMap.set(assetName, amountA) + } else { + // Subtract amounts + const diff = amountA - amountB + if (diff > 0n) { + // Only keep positive amounts + newAssetMap.set(assetName, PositiveCoin.make(diff)) + } + // If diff <= 0, the asset is removed (not added to newAssetMap) + } + } + + // Only add the policy if it has remaining assets + if (newAssetMap.size > 0) { + result.set(policyId, newAssetMap) + } + } + } + + // Check if result is empty + if (result.size === 0) { + throw new MultiAssetError({ + message: "Subtraction would result in empty MultiAsset" + }) + } + + return result +} diff --git a/packages/evolution/src/MultiHostName.ts b/packages/evolution/src/MultiHostName.ts new file mode 100644 index 00000000..0318a177 --- /dev/null +++ b/packages/evolution/src/MultiHostName.ts @@ -0,0 +1,115 @@ +import { Data, Effect, FastCheck, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" +import * as DnsName from "./DnsName.js" + +/** + * Error class for MultiHostName related operations. + * + * @since 2.0.0 + * @category errors + */ +export class MultiHostNameError extends Data.TaggedError("MultiHostNameError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for MultiHostName representing a multiple host name record. + * multi_host_name = (2, dns_name) + * + * @since 2.0.0 + * @category model + */ +export class MultiHostName extends Schema.TaggedClass()("MultiHostName", { + dnsName: DnsName.DnsName +}) {} + +/** + * CDDL schema for MultiHostName. + * multi_host_name = (2, dns_name) + * + * @since 2.0.0 + * @category schemas + */ +export const FromCDDL = Schema.transformOrFail( + Schema.Tuple( + Schema.Literal(2n), // tag (literal 2) + Schema.String // dns_name (string) + ), + Schema.typeSchema(MultiHostName), + { + strict: true, + encode: (toA) => + Effect.gen(function* () { + const dnsName = yield* ParseResult.encode(DnsName.DnsName)(toA.dnsName) + return yield* Effect.succeed([2n, dnsName] as const) + }), + decode: ([, dnsNameValue]) => + Effect.gen(function* () { + const dnsName = yield* ParseResult.decode(DnsName.DnsName)(dnsNameValue) + return yield* Effect.succeed(new MultiHostName({ dnsName })) + }) + } +) + +/** + * CBOR bytes transformation schema for MultiHostName. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + FromCDDL // CBOR โ†’ MultiHostName + ) + +/** + * CBOR hex transformation schema for MultiHostName. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ MultiHostName + ) + +/** + * Create a MultiHostName instance. + * + * @since 2.0.0 + * @category constructors + */ +export const make = (dnsName: DnsName.DnsName): MultiHostName => new MultiHostName({ dnsName }) + +/** + * Check if two MultiHostName instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (self: MultiHostName, that: MultiHostName): boolean => DnsName.equals(self.dnsName, that.dnsName) + +/** + * FastCheck generator for MultiHostName instances. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.record({ + dnsName: DnsName.generator +}).map((props) => new MultiHostName(props)) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options) + }, + MultiHostNameError + ) diff --git a/packages/evolution/src/NativeScriptJSON.ts b/packages/evolution/src/NativeScriptJSON.ts new file mode 100644 index 00000000..a547b3f5 --- /dev/null +++ b/packages/evolution/src/NativeScriptJSON.ts @@ -0,0 +1,73 @@ +import { Schema } from "effect" + +/** + * Represents a cardano-cli JSON script syntax + * + * Native type follows the standard described in the + * https://github.com/IntersectMBO/cardano-node/blob/1.26.1-with-cardano-cli/doc/reference/simple-scripts.md#json-script-syntax + * + * @since 2.0.0 + * @category model + */ +export type NativeJSON = + | { + type: "sig" + keyHash: string + } + | { + type: "before" + slot: number + } + | { + type: "after" + slot: number + } + | { + type: "all" + scripts: ReadonlyArray + } + | { + type: "any" + scripts: ReadonlyArray + } + | { + type: "atLeast" + required: number + scripts: ReadonlyArray + } + +/** + * Schema for NativeJSON union type. + * + * @since 2.0.0 + * @category schemas + */ +export const NativeJSONSchema = Schema.Union( + Schema.Struct({ + type: Schema.Literal("sig"), + keyHash: Schema.String + }), + Schema.Struct({ + type: Schema.Literal("before"), + slot: Schema.Number + }), + Schema.Struct({ + type: Schema.Literal("after"), + slot: Schema.Number + }), + Schema.Struct({ + type: Schema.Literal("all"), + scripts: Schema.Array(Schema.suspend((): Schema.Schema => NativeJSONSchema)) + }), + Schema.Struct({ + type: Schema.Literal("any"), + scripts: Schema.Array(Schema.suspend((): Schema.Schema => NativeJSONSchema)) + }), + Schema.Struct({ + type: Schema.Literal("atLeast"), + required: Schema.Number, + scripts: Schema.Array(Schema.suspend((): Schema.Schema => NativeJSONSchema)) + }) +).annotations({ + identifier: "NativeJSON" +}) diff --git a/packages/evolution/src/NativeScripts.ts b/packages/evolution/src/NativeScripts.ts new file mode 100644 index 00000000..38b63dca --- /dev/null +++ b/packages/evolution/src/NativeScripts.ts @@ -0,0 +1,469 @@ +import { Data, Effect, ParseResult, Schema } from "effect" +import type { ParseIssue } from "effect/ParseResult" + +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" +import { Bytes } from "./index.js" +import * as KeyHash from "./KeyHash.js" +import * as NativeScriptJSON from "./NativeScriptJSON.js" +import * as Numeric from "./Numeric.js" + +export class NativeScriptError extends Data.TaggedError("NativeScriptError")<{ + message?: string + cause?: unknown +}> {} + +// CDDL specs for native scripts +// native_script = +// [ script_pubkey +// // script_all +// // script_any +// // script_n_of_k +// // invalid_before +// // invalid_hereafter +// ] + +// script_pubkey = (0, addr_keyhash) +// addr_keyhash = hash28 +// script_all = (1, [* native_script]) +// script_any = (2, [* native_script]) +// script_n_of_k = (3, n : int64, [* native_script]) +// invalid_before = (4, slot_no) +// invalid_hereafter = (5, slot_no) +// slot_no = uint .size 8 + +/** + * Schema for slot numbers used in time-based native script constraints. + * + * @since 2.0.0 + * @category schemas + */ +export const SlotNumber = Numeric.Uint8Schema + +export type SlotNumber = typeof SlotNumber.Type + +// /** +// * @since 2.0.0 +// * @category model +// */ +export type NativeScript = ScriptPubKey | ScriptAll | ScriptAny | ScriptNOfK | InvalidBefore | InvalidHereafter + +export type NativeScriptEncoded = + | ScriptPubKeyEncoded + | ScriptAllEncoded + | ScriptAnyEncoded + | ScriptNOfKEncoded + | InvalidBeforeEncoded + | InvalidHereafterEncoded + +export interface ScriptPubKeyEncoded { + readonly _tag: "ScriptPubKey" + readonly keyHash: typeof KeyHash.KeyHash.Encoded +} +export interface ScriptAllEncoded { + readonly _tag: "ScriptAll" + readonly scripts: ReadonlyArray +} +export interface ScriptAnyEncoded { + readonly _tag: "ScriptAny" + readonly scripts: ReadonlyArray +} +export interface ScriptNOfKEncoded { + readonly _tag: "ScriptNOfK" + readonly n: bigint + readonly scripts: ReadonlyArray +} + +export interface InvalidBeforeEncoded { + readonly _tag: "InvalidBefore" + readonly slot: number +} + +export interface InvalidHereafterEncoded { + readonly _tag: "InvalidHereafter" + readonly slot: number +} + +export class ScriptPubKey extends Schema.TaggedClass("ScriptPubKey")("ScriptPubKey", { + keyHash: KeyHash.KeyHash +}) { + [Symbol.for("nodejs.util.inspect.custom")]() { + return { + _tag: this._tag, + keyHash: this.keyHash + } + } +} + +export class ScriptAll extends Schema.TaggedClass("ScriptAll")("ScriptAll", { + scripts: Schema.Array(Schema.suspend((): Schema.Schema => NativeScript)) +}) { + [Symbol.for("nodejs.util.inspect.custom")]() { + return { + _tag: this._tag, + scripts: this.scripts.map((script) => script) + } + } +} + +export class ScriptAny extends Schema.TaggedClass("ScriptAny")("ScriptAny", { + scripts: Schema.Array(Schema.suspend((): Schema.Schema => NativeScript)) +}) { + [Symbol.for("nodejs.util.inspect.custom")]() { + return { + _tag: this._tag, + scripts: this.scripts.map((script) => script) + } + } +} + +export class ScriptNOfK extends Schema.TaggedClass("ScriptNOfK")("ScriptNOfK", { + n: Numeric.Int64, + scripts: Schema.Array(Schema.suspend((): Schema.Schema => NativeScript)) +}) { + [Symbol.for("nodejs.util.inspect.custom")]() { + return { + _tag: this._tag, + n: this.n, + scripts: this.scripts.map((script) => script) + } + } +} + +export class InvalidBefore extends Schema.TaggedClass("InvalidBefore")("InvalidBefore", { + slot: SlotNumber +}) { + [Symbol.for("nodejs.util.inspect.custom")]() { + return { + _tag: this._tag, + slot: this.slot + } + } +} + +export class InvalidHereafter extends Schema.TaggedClass("InvalidHereafter")("InvalidHereafter", { + slot: SlotNumber +}) { + [Symbol.for("nodejs.util.inspect.custom")]() { + return { + _tag: this._tag, + slot: this.slot + } + } +} + +export const NativeScript = Schema.Union( + ScriptPubKey, + ScriptAll, + ScriptAny, + ScriptNOfK, + InvalidBefore, + InvalidHereafter +) + +/** + * CDDL schemas for native scripts. + * + * These schemas define the CBOR encoding format for native scripts according to the CDDL specification: + * + * - script_pubkey = (0, addr_keyhash) + * - script_all = (1, [* native_script]) + * - script_any = (2, [* native_script]) + * - script_n_of_k = (3, n : int64, [* native_script]) + * - invalid_before = (4, slot_no) + * - invalid_hereafter = (5, slot_no) + * - slot_no = uint .size 8 + * + * @since 2.0.0 + * @category schemas + */ + +const ScriptPubKeyCDDL = Schema.Tuple(Schema.Literal(0), Schema.Uint8ArrayFromSelf) + +const ScriptAllCDDL = Schema.Tuple( + Schema.Literal(1), + Schema.Array(Schema.suspend((): Schema.Schema => Schema.encodedSchema(NativeScriptCDDL))) +) + +const ScriptAnyCDDL = Schema.Tuple( + Schema.Literal(2), + Schema.Array(Schema.suspend((): Schema.Schema => Schema.encodedSchema(NativeScriptCDDL))) +) + +const ScriptNOfKCDDL = Schema.Tuple( + Schema.Literal(3), + Schema.BigIntFromSelf, + Schema.Array(Schema.suspend((): Schema.Schema => Schema.encodedSchema(NativeScriptCDDL))) +) + +const InvalidBeforeCDDL = Schema.Tuple(Schema.Literal(4), Schema.BigIntFromSelf) + +const InvalidHereafterCDDL = Schema.Tuple(Schema.Literal(5), Schema.BigIntFromSelf) + +/** + * CDDL representation of a native script as a union of tuple types. + * + * This type represents the low-level CBOR structure of native scripts, + * where each variant is encoded as a tagged tuple. + * + * @since 2.0.0 + * @category model + */ +export type NativeScriptCDDL = + | readonly [0, Uint8Array] + | readonly [1, ReadonlyArray] + | readonly [2, ReadonlyArray] + | readonly [3, bigint, ReadonlyArray] + | readonly [4, bigint] + | readonly [5, bigint] + +/** + * Schema for NativeScriptCDDL union type. + * + * @since 2.0.0 + * @category schemas + */ +export const NativeScriptCDDL = Schema.transformOrFail( + Schema.Union(ScriptPubKeyCDDL, ScriptAllCDDL, ScriptAnyCDDL, ScriptNOfKCDDL, InvalidBeforeCDDL, InvalidHereafterCDDL), + Schema.typeSchema(NativeScript), + { + strict: true, + encode: (nativeScript) => internalEncodeCDDL(nativeScript), + decode: (cborTuple) => internalDecodeCDDL(cborTuple) + } +) + +/** + * Convert a NativeScript to its CDDL representation. + * + * @since 2.0.0 + * @category encoding + */ +export const internalEncodeCDDL = (nativeScript: NativeScript): Effect.Effect => + Effect.gen(function* () { + switch (nativeScript._tag) { + case "ScriptPubKey": { + return [0, yield* ParseResult.encode(KeyHash.FromBytes)(nativeScript.keyHash)] + } + case "ScriptAll": { + const scripts = yield* Effect.forEach(nativeScript.scripts, internalEncodeCDDL) + return [1, scripts] as const + } + case "ScriptAny": { + const scripts = yield* Effect.forEach(nativeScript.scripts, internalEncodeCDDL) + return [2, scripts] as const + } + case "ScriptNOfK": { + const scripts = yield* Effect.forEach(nativeScript.scripts, internalEncodeCDDL) + return [3, nativeScript.n, scripts] as const + } + case "InvalidBefore": { + return [4, BigInt(nativeScript.slot)] as const + } + case "InvalidHereafter": { + return [5, BigInt(nativeScript.slot)] as const + } + } + }) + +/** + * Convert a CDDL representation back to a NativeScript. + * + * This function recursively decodes nested CBOR scripts and constructs + * the appropriate NativeScript instances. + * + * @since 2.0.0 + * @category decoding + */ +export const internalDecodeCDDL = (cborTuple: NativeScriptCDDL): Effect.Effect => + Effect.gen(function* () { + switch (cborTuple[0]) { + case 0: { + // ScriptPubKey: [0, keyHash_bytes] + const [, keyHashBytes] = cborTuple + const keyHash = yield* ParseResult.decode(KeyHash.FromBytes)(keyHashBytes) + return new ScriptPubKey({ keyHash }) + } + case 1: { + // ScriptAll: [1, [native_script, ...]] + const [, scriptCBORs] = cborTuple + const scripts: Array = [] + for (const scriptCBOR of scriptCBORs) { + const script = yield* internalDecodeCDDL(scriptCBOR) + scripts.push(script) + } + return new ScriptAll({ scripts }) + } + case 2: { + // ScriptAny: [2, [native_script, ...]] + const [, scriptCBORs] = cborTuple + const scripts: Array = [] + for (const scriptCBOR of scriptCBORs) { + const script = yield* internalDecodeCDDL(scriptCBOR) + scripts.push(script) + } + return new ScriptAny({ scripts }) + } + case 3: { + // ScriptNOfK: [3, n, [native_script, ...]] + const [, n, scriptCBORs] = cborTuple + const scripts: Array = [] + for (const scriptCBOR of scriptCBORs) { + const script = yield* internalDecodeCDDL(scriptCBOR) + scripts.push(script) + } + return new ScriptNOfK({ + n: Numeric.Int64.make(n), + scripts + }) + } + case 4: { + // InvalidBefore: [4, slot] + const [, slot] = cborTuple + return new InvalidBefore({ + slot: Number(slot) + }) + } + case 5: { + // InvalidHereafter: [5, slot] + const [, slot] = cborTuple + return new InvalidHereafter({ + slot: Number(slot) + }) + } + default: + // This should never happen with proper CBOR validation + throw new Error(`Invalid native script tag: ${cborTuple[0]}`) + } + }) + +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + NativeScriptCDDL // CBOR โ†’ NativeScript + ) + +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ NativeScript + ) + +/** + * Schema transformer for converting between NativeJSON and NativeScript. + * + * @since 2.0.0 + * @category schemas + */ +export const NativeJSON = Schema.transformOrFail(NativeScriptJSON.NativeJSONSchema, NativeScript, { + strict: true, + encode: (_, __, ___, toI) => internalNativeToJson(toI), + decode: (fromA) => internalJSONToNative(fromA) +}) + +/** + * Convert a NativeJSON to a NativeScript. + * + * @since 2.0.0 + * @category conversion + */ +export const internalJSONToNative = ( + nativeJSON: NativeScriptJSON.NativeJSON +): Effect.Effect => + Effect.gen(function* () { + switch (nativeJSON.type) { + case "sig": { + const keyHash = yield* ParseResult.decode(KeyHash.FromHex)(nativeJSON.keyHash) + return new ScriptPubKey({ keyHash }) + } + case "before": { + return new InvalidBefore({ slot: nativeJSON.slot }) + } + case "after": { + return new InvalidHereafter({ slot: nativeJSON.slot }) + } + case "all": { + const scripts = yield* Effect.forEach(nativeJSON.scripts, internalJSONToNative) + return new ScriptAll({ scripts }) + } + case "any": { + const scripts = yield* Effect.forEach(nativeJSON.scripts, internalJSONToNative) + return new ScriptAny({ scripts }) + } + case "atLeast": { + const scripts = yield* Effect.forEach(nativeJSON.scripts, internalJSONToNative) + return new ScriptNOfK({ + n: Numeric.Int64.make(BigInt(nativeJSON.required)), + scripts + }) + } + } + }) + +/** + * Convert a NativeScript to a NativeJSON. + * + * @since 2.0.0 + * @category conversion + */ +export const internalNativeToJson = ( + nativeScript: NativeScript +): Effect.Effect => + Effect.gen(function* () { + switch (nativeScript._tag) { + case "ScriptPubKey": { + return { + type: "sig" as const, + keyHash: yield* ParseResult.encode(KeyHash.FromHex)(nativeScript.keyHash) + } + } + case "ScriptAll": { + const scripts = yield* Effect.forEach(nativeScript.scripts, internalNativeToJson) + return { + type: "all" as const, + scripts + } + } + case "ScriptAny": { + const scripts = yield* Effect.forEach(nativeScript.scripts, internalNativeToJson) + return { + type: "any" as const, + scripts + } + } + case "ScriptNOfK": { + const scripts = yield* Effect.forEach(nativeScript.scripts, internalNativeToJson) + return { + type: "atLeast" as const, + required: Number(nativeScript.n), + scripts + } + } + case "InvalidBefore": { + return { + type: "before" as const, + slot: nativeScript.slot + } + } + case "InvalidHereafter": { + return { + type: "after" as const, + slot: nativeScript.slot + } + } + default: + throw new Error( + `Exhaustive check failed: Unhandled case '${(nativeScript as unknown as { _tag: string })._tag}' encountered.` + ) + } + }) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options), + nativeJSON: NativeJSON + }, + NativeScriptError + ) diff --git a/packages/evolution/src/Natural.ts b/packages/evolution/src/Natural.ts new file mode 100644 index 00000000..a1961110 --- /dev/null +++ b/packages/evolution/src/Natural.ts @@ -0,0 +1,23 @@ +import { FastCheck, Schema } from "effect" + +/** + * Natural number constructors + * Used for validating non negative integers + * + * @since 2.0.0 + */ +export const Natural = Schema.Positive.pipe(Schema.brand("Natural")) + +export type Natural = typeof Natural.Type + +/** + * Check if the given value is a valid PositiveNumber + * + * @since 2.0.0 + * @category predicates + */ + +export const generator = FastCheck.integer({ + min: 1, + max: Number.MAX_SAFE_INTEGER +}).map((number) => Natural.make(number)) diff --git a/packages/evolution/src/Network.ts b/packages/evolution/src/Network.ts new file mode 100644 index 00000000..ab2eb161 --- /dev/null +++ b/packages/evolution/src/Network.ts @@ -0,0 +1,35 @@ +import { Schema } from "effect" + +import * as NetworkId from "./NetworkId.js" + +const Network = Schema.Literal("Mainnet", "Preview", "Preprod", "Custom") +type Network = typeof Network.Type + +/** + * Converts a Network type to Id number + * + * @since 1.0.0 + */ +const _toId = (network: T): NetworkId.NetworkId => { + switch (network) { + case "Preview": + case "Preprod": + case "Custom": + return NetworkId.NetworkId.make(0) + case "Mainnet": + return NetworkId.NetworkId.make(1) + default: + throw new Error(`Exhaustive check failed: Unhandled case ${network}`) + } +} + +const _fromId = (id: NetworkId.NetworkId): Network => { + switch (id) { + case 0: + return "Preview" + case 1: + return "Mainnet" + default: + throw new Error(`Exhaustive check failed: Unhandled case ${id}`) + } +} diff --git a/packages/evolution/src/NetworkId.ts b/packages/evolution/src/NetworkId.ts new file mode 100644 index 00000000..fbe92cea --- /dev/null +++ b/packages/evolution/src/NetworkId.ts @@ -0,0 +1,12 @@ +import { FastCheck, Schema } from "effect" + +export const NetworkId = Schema.NonNegativeInt.pipe(Schema.brand("NetworkId")) + +export type NetworkId = typeof NetworkId.Type + +export const make = NetworkId.make + +export const generator = FastCheck.integer({ + min: 0, + max: 2 +}).map((number) => make(number)) diff --git a/packages/evolution/src/NonZeroInt64.ts b/packages/evolution/src/NonZeroInt64.ts new file mode 100644 index 00000000..7a0cbc6f --- /dev/null +++ b/packages/evolution/src/NonZeroInt64.ts @@ -0,0 +1,153 @@ +import { Data, FastCheck, pipe, Schema } from "effect" + +/** + * Constants for NonZeroInt64 validation. + * negInt64 = -9223372036854775808 .. -1 + * posInt64 = 1 .. 9223372036854775807 + * nonZeroInt64 = negInt64/ posInt64 + * + * @since 2.0.0 + * @category constants + */ +export const NEG_INT64_MIN = -9223372036854775808n +export const NEG_INT64_MAX = -1n +export const POS_INT64_MIN = 1n +export const POS_INT64_MAX = 9223372036854775807n + +/** + * Error class for NonZeroInt64 related operations. + * + * @since 2.0.0 + * @category errors + */ +export class NonZeroInt64Error extends Data.TaggedError("NonZeroInt64Error")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for validating negative 64-bit integers (-9223372036854775808 to -1). + * + * @since 2.0.0 + * @category schemas + */ +export const NegInt64Schema = pipe( + Schema.BigIntFromSelf, + Schema.filter((value) => value >= NEG_INT64_MIN && value <= NEG_INT64_MAX) +).annotations({ + message: (issue) => `NegInt64 must be between ${NEG_INT64_MIN} and ${NEG_INT64_MAX}, but got ${issue.actual}`, + identifier: "NegInt64" +}) + +/** + * Schema for validating positive 64-bit integers (1 to 9223372036854775807). + * + * @since 2.0.0 + * @category schemas + */ +export const PosInt64Schema = pipe( + Schema.BigIntFromSelf, + Schema.filter((value) => value >= POS_INT64_MIN && value <= POS_INT64_MAX) +).annotations({ + message: (issue) => `PosInt64 must be between ${POS_INT64_MIN} and ${POS_INT64_MAX}, but got ${issue.actual}`, + identifier: "PosInt64" +}) + +/** + * Schema for NonZeroInt64 representing non-zero 64-bit signed integers. + * nonZeroInt64 = negInt64/ posInt64 + * + * @since 2.0.0 + * @category schemas + */ +export const NonZeroInt64Schema = Schema.Union(NegInt64Schema, PosInt64Schema).annotations({ + identifier: "NonZeroInt64" +}) + +/** + * Type alias for NonZeroInt64 representing non-zero signed 64-bit integers. + * Used in minting operations where zero amounts are not allowed. + * + * @since 2.0.0 + * @category model + */ +export type NonZeroInt64 = typeof NonZeroInt64Schema.Type + +/** + * Smart constructor for creating NonZeroInt64 values. + * + * @since 2.0.0 + * @category constructors + */ +export const make = Schema.decodeSync(NonZeroInt64Schema) + +/** + * Check if a value is a valid NonZeroInt64. + * + * @since 2.0.0 + * @category predicates + */ +export const is = Schema.is(NonZeroInt64Schema) + +/** + * Check if a NonZeroInt64 is positive. + * + * @since 2.0.0 + * @category predicates + */ +export const isPositive = (value: NonZeroInt64): boolean => value > 0n + +/** + * Check if a NonZeroInt64 is negative. + * + * @since 2.0.0 + * @category predicates + */ +export const isNegative = (value: NonZeroInt64): boolean => value < 0n + +/** + * Get the absolute value of a NonZeroInt64. + * + * @since 2.0.0 + * @category transformation + */ +export const abs = (value: NonZeroInt64): NonZeroInt64 => (value < 0n ? make(-value) : value) + +/** + * Negate a NonZeroInt64. + * + * @since 2.0.0 + * @category transformation + */ +export const negate = (value: NonZeroInt64): NonZeroInt64 => make(-value) + +/** + * Compare two NonZeroInt64 values. + * + * @since 2.0.0 + * @category ordering + */ +export const compare = (a: NonZeroInt64, b: NonZeroInt64): -1 | 0 | 1 => { + if (a < b) return -1 + if (a > b) return 1 + return 0 +} + +/** + * Check if two NonZeroInt64 values are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: NonZeroInt64, b: NonZeroInt64): boolean => a === b + +/** + * Generate a random NonZeroInt64. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.oneof( + FastCheck.bigInt({ min: NEG_INT64_MIN, max: NEG_INT64_MAX }), + FastCheck.bigInt({ min: POS_INT64_MIN, max: POS_INT64_MAX }) +) diff --git a/packages/evolution/src/Numeric.ts b/packages/evolution/src/Numeric.ts new file mode 100644 index 00000000..2140e34b --- /dev/null +++ b/packages/evolution/src/Numeric.ts @@ -0,0 +1,142 @@ +import { FastCheck, Schema } from "effect" + +export const UINT8_MIN = 0 +export const UINT8_MAX = 255 + +export const Uint8Schema = Schema.Number.pipe( + Schema.filter((number) => Number.isInteger(number) && number >= UINT8_MIN && number <= UINT8_MAX), + Schema.annotations({ + identifier: "Uint8", + description: `An 8-bit unsigned integer (${UINT8_MIN} to ${UINT8_MAX})` + }) +) + +export type Uint8 = typeof Uint8Schema.Type + +export const Uint8Generator = FastCheck.integer({ + min: UINT8_MIN, + max: UINT8_MAX +}).map((number) => Uint8Schema.make(number)) + +export const UINT16_MIN = 0 +export const UINT16_MAX = 65535 + +export const Uint16Schema = Schema.Number.pipe( + Schema.filter((number) => Number.isInteger(number) && number >= UINT16_MIN && number <= UINT16_MAX), + Schema.annotations({ + identifier: "Uint16", + description: `A 16-bit unsigned integer (${UINT16_MIN} to ${UINT16_MAX})` + }) +) + +export type Uint16 = typeof Uint16Schema.Type + +export const Uint16Generator = FastCheck.integer({ + min: UINT16_MIN, + max: UINT16_MAX +}).map((number) => Uint16Schema.make(number)) + +export const UINT32_MIN = 0 +export const UINT32_MAX = 4294967295 + +export const Uint32Schema = Schema.Number.pipe( + Schema.filter((number) => Number.isInteger(number) && number >= UINT32_MIN && number <= UINT32_MAX), + Schema.annotations({ + identifier: "Uint32", + description: `A 32-bit unsigned integer (${UINT32_MIN} to ${UINT32_MAX})` + }) +) + +export type Uint32 = typeof Uint32Schema.Type + +export const Uint32Generator = FastCheck.integer({ + min: UINT32_MIN, + max: UINT32_MAX +}).map((number) => Uint32Schema.make(number)) + +export const UINT64_MIN = 0n +export const UINT64_MAX = 18446744073709551615n +export const Uint64Schema = Schema.BigIntFromSelf.pipe( + Schema.filter((bigint) => bigint >= UINT64_MIN && bigint <= UINT64_MAX), + Schema.annotations({ + identifier: "Uint64", + description: `A 64-bit unsigned integer (${UINT64_MIN} to ${UINT64_MAX})` + }) +) +export type Uint64 = typeof Uint64Schema.Type +export const Uint64Generator = FastCheck.bigInt({ + min: UINT64_MIN, + max: UINT64_MAX +}).map((bigint) => Uint64Schema.make(bigint)) + +export const INT8_MIN = -128 +export const INT8_MAX = 127 + +export const Int8 = Schema.Number.pipe( + Schema.filter((number) => Number.isInteger(number) && number >= INT8_MIN && number <= INT8_MAX), + Schema.annotations({ + identifier: "Int8", + description: `An 8-bit signed integer (${INT8_MIN} to ${INT8_MAX})` + }) +) + +export type Int8 = typeof Int8.Type + +export const Int8Generator = FastCheck.integer({ + min: INT8_MIN, + max: INT8_MAX +}).map((number) => Int8.make(number)) + +export const INT16_MIN = -32768 +export const INT16_MAX = 32767 + +export const Int16 = Schema.Number.pipe( + Schema.filter((number) => Number.isInteger(number) && number >= INT16_MIN && number <= INT16_MAX), + Schema.annotations({ + identifier: "Int16", + description: `A 16-bit signed integer (${INT16_MIN} to ${INT16_MAX})` + }) +) + +export type Int16 = typeof Int16.Type + +export const Int16Generator = FastCheck.integer({ + min: INT16_MIN, + max: INT16_MAX +}).map((number) => Int16.make(number)) + +export const INT32_MIN = -2147483648 +export const INT32_MAX = 2147483647 + +export const Int32 = Schema.Number.pipe( + Schema.filter((number) => Number.isInteger(number) && number >= INT32_MIN && number <= INT32_MAX), + Schema.annotations({ + identifier: "Int32", + description: `A 32-bit signed integer (${INT32_MIN} to ${INT32_MAX})` + }) +) + +export type Int32 = typeof Int32.Type + +export const Int32Generator = FastCheck.integer({ + min: INT32_MIN, + max: INT32_MAX +}).map((number) => Int32.make(number)) + +export const INT64_MIN = -9223372036854775808n +export const INT64_MAX = 9223372036854775807n + +export const Int64 = Schema.BigIntFromSelf.pipe( + Schema.filter((bigint) => bigint >= INT64_MIN && bigint <= INT64_MAX), + Schema.annotations({ + identifier: "Int64", + description: `A 64-bit signed integer (${INT64_MIN} to ${INT64_MAX})` + }) +) + +export type Int64 = typeof Int64.Type + +export const Int64Generator = FastCheck.bigInt({ + min: INT64_MIN, + max: INT64_MAX +}).map((bigint) => Int64.make(bigint)) diff --git a/packages/evolution/src/OperationalCert.ts b/packages/evolution/src/OperationalCert.ts new file mode 100644 index 00000000..1e0437e5 --- /dev/null +++ b/packages/evolution/src/OperationalCert.ts @@ -0,0 +1,127 @@ +import { Data, Effect, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" +import * as Ed25519Signature from "./Ed25519Signature.js" +import * as KESVkey from "./KESVkey.js" +import * as Numeric from "./Numeric.js" + +/** + * Error class for OperationalCert operations + * + * @since 2.0.0 + * @category errors + */ +export class OperationalCertError extends Data.TaggedError("OperationalCertError")<{ + message?: string + cause?: unknown +}> {} + +/** + * OperationalCert class based on Conway CDDL specification + * + * CDDL: operational_cert = [ + * hot_vkey : kes_vkey, + * sequence_number : uint64, + * kes_period : uint64, + * sigma : ed25519_signature + * ] + * + * @since 2.0.0 + * @category model + */ +export class OperationalCert extends Schema.TaggedClass()("OperationalCert", { + hotVkey: KESVkey.KESVkey, + sequenceNumber: Numeric.Uint64Schema, + kesPeriod: Numeric.Uint64Schema, + sigma: Ed25519Signature.Ed25519Signature +}) {} + +/** + * Check if two OperationalCert instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: OperationalCert, b: OperationalCert): boolean => + KESVkey.equals(a.hotVkey, b.hotVkey) && + a.sequenceNumber === b.sequenceNumber && + a.kesPeriod === b.kesPeriod && + Ed25519Signature.equals(a.sigma, b.sigma) + +/** + * CDDL schema for OperationalCert. + * operational_cert = [ + * hot_vkey : kes_vkey, + * sequence_number : uint64, + * kes_period : uint64, + * sigma : ed25519_signature + * ] + * + * @since 2.0.0 + * @category schemas + */ +export const FromCDDL = Schema.transformOrFail( + Schema.Tuple( + CBOR.ByteArray, // hot_vkey as bytes + CBOR.Integer, // sequence_number as bigint + CBOR.Integer, // kes_period as bigint + CBOR.ByteArray // sigma as bytes + ), + Schema.typeSchema(OperationalCert), + { + strict: true, + encode: (toA) => + Effect.gen(function* () { + const hotVkeyBytes = yield* ParseResult.encode(KESVkey.FromBytes)(toA.hotVkey) + const sigmaBytes = yield* ParseResult.encode(Ed25519Signature.FromBytes)(toA.sigma) + return [hotVkeyBytes, BigInt(toA.sequenceNumber), BigInt(toA.kesPeriod), sigmaBytes] as const + }), + decode: ([hotVkeyBytes, sequenceNumber, kesPeriod, sigmaBytes]) => + Effect.gen(function* () { + const hotVkey = yield* ParseResult.decode(KESVkey.FromBytes)(hotVkeyBytes) + const sigma = yield* ParseResult.decode(Ed25519Signature.FromBytes)(sigmaBytes) + return yield* ParseResult.decode(OperationalCert)({ + _tag: "OperationalCert", + hotVkey, + sequenceNumber, + kesPeriod, + sigma + }) + }) + } +) + +/** + * CBOR bytes transformation schema for OperationalCert. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + FromCDDL // CBOR โ†’ OperationalCert + ) + +/** + * CBOR hex transformation schema for OperationalCert. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ OperationalCert + ) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options) + }, + OperationalCertError + ) diff --git a/packages/evolution/src/PaymentAddress.ts b/packages/evolution/src/PaymentAddress.ts new file mode 100644 index 00000000..7f68fde3 --- /dev/null +++ b/packages/evolution/src/PaymentAddress.ts @@ -0,0 +1,28 @@ +import { Schema } from "effect" + +/** + * Bech32 address format schema (human-readable addresses) + * Following CIP-0019 encoding requirements + * + * @since 2.0.0 + * @category schemas + */ +export const PaymentAddress = Schema.String.pipe(Schema.pattern(/^(addr|addr_test)[1][a-z0-9]+$/i)).pipe( + Schema.brand("PaymentAddress") +) + +/** + * Type representing a payment address string in bech32 format + * + * @since 2.0.0 + * @category model + */ +export type PaymentAddress = Schema.Schema.Type + +/** + * Check if the given value is a valid PaymentAddress + * + * @since 2.0.0 + * @category predicates + */ +export const isPaymentAddress = Schema.is(PaymentAddress) diff --git a/packages/evolution/src/Pointer.ts b/packages/evolution/src/Pointer.ts new file mode 100644 index 00000000..4631c7cf --- /dev/null +++ b/packages/evolution/src/Pointer.ts @@ -0,0 +1,51 @@ +import { Schema } from "effect" + +import * as Natural from "./Natural.js" + +/** + * Schema for pointer to a stake registration certificate + * Contains slot, transaction index, and certificate index information + * + * @since 2.0.0 + * @category schemas + */ +export class Pointer extends Schema.TaggedClass("Pointer")("Pointer", { + slot: Natural.Natural, + txIndex: Natural.Natural, + certIndex: Natural.Natural +}) { + [Symbol.for("nodejs.util.inspect.custom")]() { + return { + _tag: "Pointer", + slot: this.slot, + txIndex: this.txIndex, + certIndex: this.certIndex + } + } +} + +/** + * Check if the given value is a valid Pointer + * + * + * @since 2.0.0 + * @category predicates + */ +export const isPointer = Schema.is(Pointer) + +/** + * Create a new Pointer instance + * + * @since 2.0.0 + * @category constructors + */ +export const make = (slot: Natural.Natural, txIndex: Natural.Natural, certIndex: Natural.Natural): Pointer => { + return new Pointer( + { + slot, + txIndex, + certIndex + }, + { disableValidation: true } + ) +} diff --git a/packages/evolution/src/PointerAddress.ts b/packages/evolution/src/PointerAddress.ts new file mode 100644 index 00000000..fc239c76 --- /dev/null +++ b/packages/evolution/src/PointerAddress.ts @@ -0,0 +1,262 @@ +import { Data, Effect, FastCheck, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as _Codec from "./Codec.js" +import * as Credential from "./Credential.js" +import * as KeyHash from "./KeyHash.js" +import * as Natural from "./Natural.js" +import * as NetworkId from "./NetworkId.js" +import * as Pointer from "./Pointer.js" +import * as ScriptHash from "./ScriptHash.js" + +/** + * Error thrown when address operations fail + * + * @since 2.0.0 + * @category model + */ +export class PointerAddressError extends Data.TaggedError("PointerAddressError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Pointer address with payment credential and pointer to stake registration + * + * @since 2.0.0 + * @category schemas + */ +export class PointerAddress extends Schema.TaggedClass("PointerAddress")("PointerAddress", { + networkId: NetworkId.NetworkId, + paymentCredential: Credential.Credential, + pointer: Pointer.Pointer +}) { + [Symbol.for("nodejs.util.inspect.custom")]() { + return { + _tag: "PointerAddress", + networkId: this.networkId, + paymentCredential: this.paymentCredential, + pointer: this.pointer + } + } +} + +export const FromBytes = Schema.transformOrFail(Schema.Uint8ArrayFromSelf, PointerAddress, { + strict: true, + encode: (toI, options, ast, toA) => + Effect.gen(function* () { + const paymentBit = toA.paymentCredential._tag === "KeyHash" ? 0 : 1 + const header = (0b01 << 6) | (0b0 << 5) | (paymentBit << 4) | (toA.networkId & 0b00001111) + + // Get variable length encoded bytes first to determine total size + const slotBytes = yield* encodeVariableLength(toA.pointer.slot) + const txIndexBytes = yield* encodeVariableLength(toA.pointer.txIndex) + const certIndexBytes = yield* encodeVariableLength(toA.pointer.certIndex) + + // Calculate total buffer size: 1 byte header + 28 bytes credential + variable parts + const totalSize = 1 + 28 + slotBytes.length + txIndexBytes.length + certIndexBytes.length + + // Allocate a buffer with the correct total size + const result = new Uint8Array(totalSize) + + // Set the header + result[0] = header + + const paymentCredentialBytes = yield* ParseResult.decode(Bytes.FromHex)(toA.paymentCredential.hash) + result.set(paymentCredentialBytes, 1) + + // Set the pointer data bytes at the correct position + let offset = 29 // 1 byte header + 28 bytes credential + result.set(slotBytes, offset) + offset += slotBytes.length + result.set(txIndexBytes, offset) + offset += txIndexBytes.length + result.set(certIndexBytes, offset) + + return result + }), + decode: (_, __, ast, fromA) => + Effect.gen(function* () { + const header = fromA[0] + // Extract network ID from the lower 4 bits + const networkId = header & 0b00001111 + // Extract address type from the upper 4 bits (bits 4-7) + const addressType = header >> 4 + + // Script payment with pointer + // Check if the address is a pointer address + const isPaymentKey = (addressType & 0b0001) === 0 + const paymentCredential: Credential.Credential = isPaymentKey + ? { + _tag: "KeyHash", + hash: yield* ParseResult.decode(KeyHash.FromBytes)(fromA.slice(1, 29)) + } + : { + _tag: "ScriptHash", + + hash: yield* ParseResult.decode(ScriptHash.BytesSchema)(fromA.slice(1, 29)) + } + + // After the credential, we have 3 variable-length integers + let offset = 29 + + // Decode the slot, txIndex, and certIndex as variable length integers + const [slot, slotBytesRead] = yield* decodeVariableLength(fromA, offset) + offset += slotBytesRead + + const [txIndex, txIndexBytesRead] = yield* decodeVariableLength(fromA, offset) + offset += txIndexBytesRead + + const [certIndex] = yield* decodeVariableLength(fromA, offset) + + return yield* ParseResult.decode(PointerAddress)({ + _tag: "PointerAddress", + networkId, + paymentCredential, + pointer: Pointer.make(slot, txIndex, certIndex) + }) + }).pipe(Effect.catchTag("PointerAddressError", (e) => Effect.fail(new ParseResult.Type(ast, fromA, e.message)))) +}) + +export const FromHex = Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes // Uint8Array โ†’ PointerAddress +) + +/** + * Encode a number as a variable length integer following the Cardano ledger specification + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const encodeVariableLength = (natural: Natural.Natural) => + Effect.gen(function* () { + // Handle the simple case: values less than 128 (0x80, binary 10000000) fit in a single byte + // with no continuation bit needed + if (natural < 128) { + return new Uint8Array([natural]) + } + // For larger values, we need to split the number into 7-bit chunks + const result: Array = [] + let remaining = natural + // Loop until all bits of the number have been processed + while (remaining >= 128) { + // Take the least significant 7 bits (value & 0x7F, binary 01111111) + // and set the high bit (| 0x80, binary 10000000) to indicate more bytes follow + result.push((remaining & 0x7f) | 0x80) + // Shift right by 7 bits (divide by 128) to process the next chunk + remaining = yield* ParseResult.decode(Natural.Natural)(Math.floor(remaining / 128)) + } + // Push the final byte (the most significant bits) + // without setting the high bit, indicating this is the last byte + result.push(remaining & 0x7f) // Binary: 0xxxxxxx where x are bits from the value + // Convert the array of bytes to a Uint8Array + // The bytes are already in little-endian order (least significant byte first) + return new Uint8Array(result) + }) + +/** + * Decode a variable length integer from a Uint8Array + * Following the Cardano ledger implementation for variable-length integers + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const decodeVariableLength: ( + bytes: Uint8Array, + offset?: number | undefined +) => Effect.Effect<[Natural.Natural, number], PointerAddressError | ParseResult.ParseIssue> = Effect.fnUntraced( + function* (bytes, offset = 0) { + // The accumulated decoded value + let number = 0 + + // Count of bytes processed so far + let bytesRead = 0 + + // Multiplier for the current byte position (increases by powers of 128) + // Starts at 1 because the first 7 bits are multiplied by 1 + let multiplier = 1 + + while (true) { + // Check if we've reached the end of the buffer without finding a complete value + // This is a safeguard against buffer overruns + if (offset + bytesRead >= bytes.length) { + yield* new PointerAddressError({ + message: `Buffer overflow: not enough bytes to decode variable length integer at offset ${offset}` + }) + } + + // Read the current byte + const b = bytes[offset + bytesRead] + bytesRead++ + + // Extract value bits by masking with 0x7F (binary 01111111) + // This removes the high continuation bit and keeps only the 7 value bits + // Then multiply by the current position multiplier and add to accumulated value + number += (b & 0x7f) * multiplier + + // Check if this is the last byte by testing the high bit (0x80, binary 10000000) + // If the high bit is 0, we've reached the end of the encoded integer + if ((b & 0x80) === 0) { + // Return the decoded value and the count of bytes read + // const value = yield* Schema.decode(Natural.Natural)({ number }); + const value = yield* ParseResult.decode(Natural.Natural)(number) + return [value, bytesRead] as const + } + + // If the high bit is 1, we need to read more bytes + // Increase the multiplier for the next byte position (each position is worth 128 times more) + // This is because each byte holds 7 bits of value information + multiplier *= 128 + + // Continue reading bytes until we find one with the high bit set to 0 + } + } +) + +/** + * Check if two PointerAddress instances are equal. + * + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: PointerAddress, b: PointerAddress): boolean => { + return ( + a.networkId === b.networkId && + a.paymentCredential._tag === b.paymentCredential._tag && + a.pointer.slot === b.pointer.slot && + a.pointer.txIndex === b.pointer.txIndex && + a.pointer.certIndex === b.pointer.certIndex && + a.paymentCredential.hash === b.paymentCredential.hash + ) +} + +/** + * Generate a random PointerAddress. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.tuple( + NetworkId.generator, + Credential.generator, + Natural.generator, + Natural.generator, + Natural.generator +).map( + ([networkId, paymentCredential, slot, txIndex, certIndex]) => + new PointerAddress({ + networkId, + paymentCredential, + pointer: Pointer.make(slot, txIndex, certIndex) + }) +) + +export const Codec = _Codec.createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + PointerAddressError +) diff --git a/packages/evolution/src/PolicyId.ts b/packages/evolution/src/PolicyId.ts new file mode 100644 index 00000000..a6b759b2 --- /dev/null +++ b/packages/evolution/src/PolicyId.ts @@ -0,0 +1,91 @@ +import { Data, FastCheck, pipe, Schema } from "effect" + +import { createEncoders } from "./Codec.js" +import * as Hash28 from "./Hash28.js" + +/** + * Error class for PolicyId related operations. + * + * @since 2.0.0 + * @category errors + */ +export class PolicyIdError extends Data.TaggedError("PolicyIdError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for PolicyId representing a minting policy identifier. + * A PolicyId is a script hash (hash28) that identifies a minting policy. + * + * Note: PolicyId is equivalent to ScriptHash as defined in the CDDL: + * policy_id = script_hash + * script_hash = hash28 + * + * @since 2.0.0 + * @category schemas + */ +export const PolicyId = pipe(Hash28.HexSchema, Schema.brand("PolicyId")).annotations({ + identifier: "PolicyId" +}) + +export type PolicyId = typeof PolicyId.Type + +/** + * Schema for transforming between Uint8Array and PolicyId. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = Schema.compose( + Hash28.FromBytes, // Uint8Array -> hex string + PolicyId // hex string -> PolicyId +).annotations({ + identifier: "PolicyId.Bytes" +}) + +/** + * Schema for transforming between hex string and PolicyId. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = Schema.compose( + Hash28.HexSchema, // string -> hex string + PolicyId // hex string -> PolicyId +).annotations({ + identifier: "PolicyId.Hex" +}) + +/** + * Check if two PolicyId instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: PolicyId, b: PolicyId): boolean => a === b + +/** + * Generate a random PolicyId. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.uint8Array({ + minLength: Hash28.HASH28_BYTES_LENGTH, + maxLength: Hash28.HASH28_BYTES_LENGTH +}).map((bytes) => Codec.Decode.bytes(bytes)) + +/** + * Codec utilities for PolicyId encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + PolicyIdError +) diff --git a/packages/evolution/src/PoolKeyHash.ts b/packages/evolution/src/PoolKeyHash.ts new file mode 100644 index 00000000..202371e5 --- /dev/null +++ b/packages/evolution/src/PoolKeyHash.ts @@ -0,0 +1,75 @@ +import { Data, FastCheck, pipe, Schema } from "effect" + +import { createEncoders } from "./Codec.js" +import * as Hash28 from "./Hash28.js" + +/** + * Error class for PoolKeyHash related operations. + * + * @since 2.0.0 + * @category errors + */ +export class PoolKeyHashError extends Data.TaggedError("PoolKeyHashError")<{ + message?: string + cause?: unknown +}> {} + +/** + * PoolKeyHash is a 28-byte hash representing a stake pool's verification key. + * pool_keyhash = hash28 + * + * @since 2.0.0 + * @category schemas + */ +export const PoolKeyHash = pipe(Hash28.HexSchema, Schema.brand("PoolKeyHash")).annotations({ + identifier: "PoolKeyHash" +}) + +export type PoolKeyHash = typeof PoolKeyHash.Type + +export const FromBytes = Schema.compose( + Hash28.FromBytes, // Uint8Array -> hex string + PoolKeyHash // hex string -> PoolKeyHash +).annotations({ + identifier: "PoolKeyHash.Bytes" +}) + +export const FromHex = Schema.compose( + Hash28.HexSchema, // string -> hex string + PoolKeyHash // hex string -> PoolKeyHash +).annotations({ + identifier: "PoolKeyHash.Hex" +}) + +/** + * Check if two PoolKeyHash instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: PoolKeyHash, b: PoolKeyHash): boolean => a === b + +/** + * Generate a random PoolKeyHash. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.uint8Array({ + minLength: Hash28.HASH28_BYTES_LENGTH, + maxLength: Hash28.HASH28_BYTES_LENGTH +}).map((bytes) => Codec.Decode.bytes(bytes)) + +/** + * Codec utilities for PoolKeyHash encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + PoolKeyHashError +) diff --git a/packages/evolution/src/PoolMetadata.ts b/packages/evolution/src/PoolMetadata.ts new file mode 100644 index 00000000..06ddc28d --- /dev/null +++ b/packages/evolution/src/PoolMetadata.ts @@ -0,0 +1,90 @@ +import { Data, Effect, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" +import * as Url from "./Url.js" + +/** + * Error class for PoolMetadata related operations. + * + * @since 2.0.0 + * @category errors + */ +export class PoolMetadataError extends Data.TaggedError("PoolMetadataError")<{ + message?: string + reason?: "InvalidStructure" | "InvalidUrl" | "InvalidBytes" +}> {} + +/** + * Schema for PoolMetadata representing pool metadata information. + * pool_metadata = [url, bytes] + * + * @since 2.0.0 + * @category model + */ +export class PoolMetadata extends Schema.TaggedClass()("PoolMetadata", { + url: Url.Url, + hash: Schema.Uint8ArrayFromSelf +}) {} + +/** + * CDDL schema for PoolMetadata as defined in the specification: + * pool_metadata = [url, bytes] + * + * Transforms between CBOR tuple structure and PoolMetadata model. + * + * @since 2.0.0 + * @category schemas + */ +export const FromCDDL = Schema.transformOrFail( + Schema.Tuple( + CBOR.Text, // url as CBOR text string + CBOR.ByteArray // hash as CBOR byte string + ), + Schema.typeSchema(PoolMetadata), + { + strict: true, + encode: (poolMetadata) => Effect.succeed([poolMetadata.url, poolMetadata.hash] as const), + decode: ([urlText, hash]) => + Effect.gen(function* () { + const url = yield* ParseResult.decode(Url.Url)(urlText) + return new PoolMetadata({ url, hash }) + }) + } +) + +/** + * CBOR bytes transformation schema for PoolMetadata. + * Transforms between Uint8Array and PoolMetadata using CBOR encoding. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + FromCDDL // CBOR โ†’ PoolMetadata + ) + +/** + * CBOR hex transformation schema for PoolMetadata. + * Transforms between hex string and PoolMetadata using CBOR encoding. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ PoolMetadata + ) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options) + }, + PoolMetadataError + ) diff --git a/packages/evolution/src/PoolParams.ts b/packages/evolution/src/PoolParams.ts new file mode 100644 index 00000000..a46ab334 --- /dev/null +++ b/packages/evolution/src/PoolParams.ts @@ -0,0 +1,345 @@ +import { BigDecimal, Data, Effect, FastCheck, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" +import * as Coin from "./Coin.js" +import * as KeyHash from "./KeyHash.js" +import * as NetworkId from "./NetworkId.js" +import * as PoolKeyHash from "./PoolKeyHash.js" +import * as PoolMetadata from "./PoolMetadata.js" +import * as Relay from "./Relay.js" +import * as RewardAccount from "./RewardAccount.js" +import * as UnitInterval from "./UnitInterval.js" +import * as VrfKeyHash from "./VrfKeyHash.js" + +/** + * Error class for PoolParams related operations. + * + * @since 2.0.0 + * @category errors + */ +export class PoolParamsError extends Data.TaggedError("PoolParamsError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for PoolParams representing stake pool registration parameters. + * + * ``` + * pool_params = + * ( operator : pool_keyhash + * , vrf_keyhash : vrf_keyhash + * , pledge : coin + * , cost : coin + * , margin : unit_interval + * , reward_account : reward_account + * , pool_owners : set + * , relays : [* relay] + * , pool_metadata : pool_metadata/ nil + * ) + * ``` + * + * @since 2.0.0 + * @category model + */ +export class PoolParams extends Schema.TaggedClass()("PoolParams", { + operator: PoolKeyHash.PoolKeyHash, + vrfKeyhash: VrfKeyHash.VrfKeyHash, + pledge: Coin.CoinSchema, + cost: Coin.CoinSchema, + margin: UnitInterval.UnitInterval, + rewardAccount: RewardAccount.RewardAccount, + poolOwners: Schema.Array(KeyHash.KeyHash), + relays: Schema.Array(Relay.Relay), + poolMetadata: Schema.optionalWith(PoolMetadata.PoolMetadata, { + nullable: true + }) +}) { + [Symbol.for("nodejs.util.inspect.custom")]() { + return { + _tag: "PoolParams", + operator: this.operator, + vrfKeyhash: this.vrfKeyhash, + pledge: this.pledge, + cost: this.cost, + margin: this.margin, + rewardAccount: this.rewardAccount, + poolOwners: this.poolOwners, + relays: this.relays, + poolMetadata: this.poolMetadata + } + } +} + +/** + * CDDL schema for PoolParams. + * + * ``` + * pool_params = [ + * operator : pool_keyhash, + * vrf_keyhash : vrf_keyhash, + * pledge : coin, + * cost : coin, + * margin : unit_interval, + * reward_account : reward_account, + * pool_owners : set, + * relays : [* relay], + * pool_metadata : pool_metadata / nil + * ] + * ``` + * + * @since 2.0.0 + * @category schemas + */ +export const PoolParamsCDDLSchema = Schema.transformOrFail( + Schema.Tuple( + Schema.Uint8ArrayFromSelf, // operator (pool_keyhash as bytes) + Schema.Uint8ArrayFromSelf, // vrf_keyhash (as bytes) + Schema.BigIntFromSelf, // pledge (coin) + Schema.BigIntFromSelf, // cost (coin) + Schema.encodedSchema(UnitInterval.FromCDDL), // margin using UnitInterval CDDL schema + Schema.Uint8ArrayFromSelf, // reward_account (bytes) + Schema.Array(Schema.Uint8ArrayFromSelf), // pool_owners (set as bytes array) + Schema.Array(Schema.encodedSchema(Relay.FromCDDL)), // relays using Relay CDDL schema + Schema.NullOr(Schema.encodedSchema(PoolMetadata.FromCDDL)) // pool_metadata using PoolMetadata CDDL schema + ), + Schema.typeSchema(PoolParams), + { + strict: true, + encode: (toA) => + Effect.gen(function* () { + const operatorBytes = yield* ParseResult.encode(PoolKeyHash.FromBytes)(toA.operator) + const vrfKeyhashBytes = yield* ParseResult.encode(VrfKeyHash.FromBytes)(toA.vrfKeyhash) + const marginEncoded = yield* ParseResult.encode(UnitInterval.FromCDDL)(toA.margin) + const rewardAccountBytes = yield* ParseResult.encode(RewardAccount.FromBytes)(toA.rewardAccount) + + const poolOwnersBytes = yield* Effect.all( + toA.poolOwners.map((owner) => ParseResult.encode(KeyHash.FromBytes)(owner)) + ) + + const relaysEncoded = yield* Effect.all(toA.relays.map((relay) => ParseResult.encode(Relay.FromCDDL)(relay))) + + const poolMetadataEncoded = toA.poolMetadata + ? yield* ParseResult.encode(PoolMetadata.FromCDDL)(toA.poolMetadata) + : null + + return yield* Effect.succeed([ + operatorBytes, + vrfKeyhashBytes, + toA.pledge, + toA.cost, + marginEncoded, + rewardAccountBytes, + poolOwnersBytes, + relaysEncoded, + poolMetadataEncoded + ] as const) + }), + decode: ([ + operatorBytes, + vrfKeyhashBytes, + pledge, + cost, + marginEncoded, + rewardAccountBytes, + poolOwnersBytes, + relaysEncoded, + poolMetadataEncoded + ]) => + Effect.gen(function* () { + const operator = yield* ParseResult.decode(PoolKeyHash.FromBytes)(operatorBytes) + const vrfKeyhash = yield* ParseResult.decode(VrfKeyHash.FromBytes)(vrfKeyhashBytes) + const margin = yield* ParseResult.decode(UnitInterval.FromCDDL)(marginEncoded) + const rewardAccount = yield* ParseResult.decode(RewardAccount.FromBytes)(rewardAccountBytes) + + const poolOwners = yield* Effect.all( + poolOwnersBytes.map((ownerBytes) => ParseResult.decode(KeyHash.FromBytes)(ownerBytes)) + ) + + const relays = yield* Effect.all( + relaysEncoded.map((relayEncoded) => ParseResult.decode(Relay.FromCDDL)(relayEncoded)) + ) + + const poolMetadata = poolMetadataEncoded + ? yield* ParseResult.decode(PoolMetadata.FromCDDL)(poolMetadataEncoded) + : undefined + + return yield* Effect.succeed( + new PoolParams({ + operator, + vrfKeyhash, + pledge, + cost, + margin, + rewardAccount, + poolOwners, + relays, + poolMetadata + }) + ) + }) + } +) + +/** + * CBOR bytes transformation schema for PoolParams. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + PoolParamsCDDLSchema // CBOR โ†’ PoolParams + ) + +/** + * CBOR hex transformation schema for PoolParams. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ PoolParams + ) + +/** + * Check if two PoolParams instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: PoolParams, b: PoolParams): boolean => + PoolKeyHash.equals(a.operator, b.operator) && + VrfKeyHash.equals(a.vrfKeyhash, b.vrfKeyhash) && + a.pledge === b.pledge && + a.cost === b.cost && + UnitInterval.equals(a.margin, b.margin) && + a.rewardAccount.networkId === b.rewardAccount.networkId && + a.rewardAccount.stakeCredential._tag === b.rewardAccount.stakeCredential._tag && + a.poolOwners.length === b.poolOwners.length && + a.poolOwners.every((owner, index) => KeyHash.equals(owner, b.poolOwners[index])) && + a.relays.length === b.relays.length && + // Note: Relay equality comparison would need to be implemented + ((a.poolMetadata === undefined && b.poolMetadata === undefined) || + (a.poolMetadata !== undefined && b.poolMetadata !== undefined && a.poolMetadata.url === b.poolMetadata.url)) + +/** + * Create a PoolParams instance with validation. + * + * @since 2.0.0 + * @category constructors + */ +export const make = (params: { + operator: PoolKeyHash.PoolKeyHash + vrfKeyhash: VrfKeyHash.VrfKeyHash + pledge: Coin.Coin + cost: Coin.Coin + margin: UnitInterval.UnitInterval + rewardAccount: RewardAccount.RewardAccount + poolOwners: Array + relays: Array + poolMetadata?: PoolMetadata.PoolMetadata +}): PoolParams => new PoolParams(params) + +/** + * Get total effective stake for pool rewards calculation. + * + * @since 2.0.0 + * @category transformation + */ +export const getEffectiveStake = (params: PoolParams, totalStake: Coin.Coin): Coin.Coin => { + // Effective stake is min(totalStake, pledge) for calculation purposes + return totalStake < params.pledge ? totalStake : params.pledge +} + +/** + * Calculate pool operator rewards based on pool parameters. + * + * @since 2.0.0 + * @category transformation + */ +export const calculatePoolRewards = ( + params: PoolParams, + totalRewards: Coin.Coin +): { operatorRewards: Coin.Coin; delegatorRewards: Coin.Coin } => { + const fixedCost = params.cost + const marginDecimal = UnitInterval.toBigDecimal(params.margin) + + if (totalRewards <= fixedCost) { + return { + operatorRewards: totalRewards, + delegatorRewards: 0n + } + } + + const rewardsAfterCost = totalRewards - fixedCost + const marginAsNumber = Number(BigDecimal.unsafeToNumber(marginDecimal)) + const operatorShare = BigInt(Math.floor(Number(rewardsAfterCost) * marginAsNumber)) + + return { + operatorRewards: fixedCost + operatorShare, + delegatorRewards: rewardsAfterCost - operatorShare + } +} + +/** + * Check if the pool has the minimum required cost. + * + * @since 2.0.0 + * @category predicates + */ +export const hasMinimumCost = (params: PoolParams, minPoolCost: Coin.Coin): boolean => params.cost >= minPoolCost + +/** + * Check if the pool margin is within valid range (0 to 1). + * + * @since 2.0.0 + * @category predicates + */ +export const hasValidMargin = (params: PoolParams): boolean => + params.margin.numerator <= params.margin.denominator && params.margin.denominator > 0n + +/** + * Generate a random PoolParams. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.record({ + operator: PoolKeyHash.generator, + vrfKeyhash: VrfKeyHash.generator, + pledge: FastCheck.bigInt({ min: 0n, max: 1000000000000n }), + cost: FastCheck.bigInt({ min: 340000000n, max: 1000000000n }), + margin: UnitInterval.generator, + rewardAccount: FastCheck.constant( + new RewardAccount.RewardAccount({ + networkId: NetworkId.make(1), + stakeCredential: { + _tag: "KeyHash", + hash: KeyHash.KeyHash.make("a".repeat(56)) + } + }) + ), + poolOwners: FastCheck.array(KeyHash.generator, { + minLength: 1, + maxLength: 5 + }), + relays: FastCheck.array(Relay.generator, { minLength: 0, maxLength: 3 }), + poolMetadata: FastCheck.option(FastCheck.constant(undefined), { + nil: undefined + }) +}).map((params) => new PoolParams(params)) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options) + }, + PoolParamsError + ) diff --git a/packages/evolution/src/Port.ts b/packages/evolution/src/Port.ts new file mode 100644 index 00000000..7947cfe4 --- /dev/null +++ b/packages/evolution/src/Port.ts @@ -0,0 +1,128 @@ +import { Data, Schema } from "effect" + +import * as Numeric from "./Numeric.js" + +/** + * CDDL specification: + * port = uint .le 65535 + * + * @since 2.0.0 + * @category constants + */ +export const PORT_MIN_VALUE = Numeric.UINT16_MIN +export const PORT_MAX_VALUE = Numeric.UINT16_MAX + +/** + * Error class for Port related operations. + * + * @since 2.0.0 + * @category errors + */ +export class PortError extends Data.TaggedError("PortError")<{ + message?: string + reason?: "InvalidRange" | "NegativeValue" | "ExceedsMaxValue" +}> {} + +/** + * Schema for validating port numbers (0-65535). + * + * @since 2.0.0 + * @category schemas + */ +export const PortSchema = Numeric.Uint16Schema.annotations({ + identifier: "Port", + description: "Network port number (16-bit unsigned integer)" +}) + +/** + * Type alias for Port representing network port numbers. + * Valid range is 0-65535 as per standard TCP/UDP port specification. + * + * @since 2.0.0 + * @category model + */ +export type Port = typeof PortSchema.Type + +/** + * Smart constructor for creating Port values. + * + * @since 2.0.0 + * @category constructors + */ +export const make = (value: number): Port => PortSchema.make(value) + +/** + * Check if a value is a valid Port. + * + * @since 2.0.0 + * @category predicates + */ +export const is = (value: unknown): value is Port => Schema.is(PortSchema)(value) + +/** + * Check if two Port instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: Port, b: Port): boolean => a === b + +/** + * Check if a port is a well-known port (0-1023). + * + * @since 2.0.0 + * @category predicates + */ +export const isWellKnown = (port: Port): boolean => port >= 0 && port <= 1023 + +/** + * Check if a port is a registered port (1024-49151). + * + * @since 2.0.0 + * @category predicates + */ +export const isRegistered = (port: Port): boolean => port >= 1024 && port <= 49151 + +/** + * Check if a port is a dynamic/private port (49152-65535). + * + * @since 2.0.0 + * @category predicates + */ +export const isDynamic = (port: Port): boolean => port >= 49152 && port <= 65535 + +/** + * Generate a random Port. + * + * @since 2.0.0 + * @category generators + */ +export const generator = Numeric.Uint16Generator + +/** + * Synchronous encoding/decoding utilities. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Encode = { + sync: Schema.encodeSync(PortSchema) +} + +export const Decode = { + sync: Schema.decodeUnknownSync(PortSchema) +} + +/** + * Either encoding/decoding utilities. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const EncodeEither = { + either: Schema.encodeEither(PortSchema) +} + +export const DecodeEither = { + either: Schema.decodeUnknownEither(PortSchema) +} diff --git a/packages/evolution/src/PositiveCoin.ts b/packages/evolution/src/PositiveCoin.ts new file mode 100644 index 00000000..954d2ebb --- /dev/null +++ b/packages/evolution/src/PositiveCoin.ts @@ -0,0 +1,188 @@ +import { Data, FastCheck, Schema } from "effect" + +import * as Coin from "./Coin.js" + +/** + * Error class for PositiveCoin related operations. + * + * @since 2.0.0 + * @category errors + */ +export class PositiveCoinError extends Data.TaggedError("PositiveCoinError")<{ + message?: string + reason?: "InvalidAmount" | "ZeroAmount" | "ExceedsMaxValue" +}> {} + +/** + * Minimum value for a positive coin amount. + * + * @since 2.0.0 + * @category constants + */ +export const MIN_POSITIVE_COIN_VALUE = 1n + +/** + * Maximum value for a positive coin amount (maxWord64). + * + * @since 2.0.0 + * @category constants + */ +export const MAX_POSITIVE_COIN_VALUE = Coin.MAX_COIN_VALUE + +/** + * Schema for validating positive coin amounts. + * positive_coin = 1 .. maxWord64 + * + * @since 2.0.0 + * @category schemas + */ +export const PositiveCoinSchema = Schema.BigIntFromSelf.pipe( + Schema.filter((value) => value >= MIN_POSITIVE_COIN_VALUE && value <= MAX_POSITIVE_COIN_VALUE) +).annotations({ + message: (issue) => + `PositiveCoin must be between ${MIN_POSITIVE_COIN_VALUE} and ${MAX_POSITIVE_COIN_VALUE}, but got ${issue.actual}`, + identifier: "PositiveCoin" +}) + +/** + * Type alias for PositiveCoin representing positive amounts of native assets. + * Used in multiasset maps where zero amounts are not allowed. + * + * @since 2.0.0 + * @category model + */ +export type PositiveCoin = typeof PositiveCoinSchema.Type + +/** + * Smart constructor for creating PositiveCoin values. + * + * @since 2.0.0 + * @category constructors + */ +export const make = (value: bigint): PositiveCoin => PositiveCoinSchema.make(value) + +/** + * Create a PositiveCoin from a regular Coin, throwing if the value is zero. + * + * @since 2.0.0 + * @category constructors + */ +export const fromCoin = (coin: Coin.Coin): PositiveCoin => { + if (coin === 0n) { + throw new PositiveCoinError({ + message: "Cannot create PositiveCoin from zero coin amount", + reason: "ZeroAmount" + }) + } + return make(coin) +} + +/** + * Convert a PositiveCoin to a regular Coin. + * + * @since 2.0.0 + * @category transformation + */ +export const toCoin = (positiveCoin: PositiveCoin): Coin.Coin => positiveCoin + +/** + * Check if a value is a valid PositiveCoin. + * + * @since 2.0.0 + * @category predicates + */ +export const is = (value: unknown): value is PositiveCoin => Schema.is(PositiveCoinSchema)(value) + +/** + * Add two positive coin amounts safely. + * + * @since 2.0.0 + * @category transformation + */ +export const add = (a: PositiveCoin, b: PositiveCoin): PositiveCoin => { + const result = a + b + if (result > MAX_POSITIVE_COIN_VALUE) { + throw new PositiveCoinError({ + message: `Addition overflow: ${a} + ${b} exceeds maximum positive coin value`, + reason: "ExceedsMaxValue" + }) + } + return result +} + +/** + * Subtract two positive coin amounts safely. + * Note: Result must still be positive. + * + * @since 2.0.0 + * @category transformation + */ +export const subtract = (a: PositiveCoin, b: PositiveCoin): PositiveCoin => { + const result = a - b + if (result <= 0n) { + throw new PositiveCoinError({ + message: `Subtraction underflow: ${a} - ${b} results in non-positive value`, + reason: "ZeroAmount" + }) + } + return result +} + +/** + * Compare two positive coin amounts. + * + * @since 2.0.0 + * @category ordering + */ +export const compare = (a: PositiveCoin, b: PositiveCoin): -1 | 0 | 1 => { + if (a < b) return -1 + if (a > b) return 1 + return 0 +} + +/** + * Check if two positive coin amounts are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: PositiveCoin, b: PositiveCoin): boolean => a === b + +/** + * Generate a random PositiveCoin value. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.bigInt({ + min: MIN_POSITIVE_COIN_VALUE, + max: MAX_POSITIVE_COIN_VALUE +}) + +/** + * Synchronous encoding/decoding utilities. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Encode = { + sync: Schema.encodeSync(PositiveCoinSchema) +} + +export const Decode = { + sync: Schema.decodeUnknownSync(PositiveCoinSchema) +} + +/** + * Either encoding/decoding utilities. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const EncodeEither = { + either: Schema.encodeEither(PositiveCoinSchema) +} + +export const DecodeEither = { + either: Schema.decodeUnknownEither(PositiveCoinSchema) +} diff --git a/packages/evolution/src/ProposalProcedures.ts b/packages/evolution/src/ProposalProcedures.ts new file mode 100644 index 00000000..aeeebe2e --- /dev/null +++ b/packages/evolution/src/ProposalProcedures.ts @@ -0,0 +1,19 @@ +import { Schema } from "effect" + +/** + * ProposalProcedures based on Conway CDDL specification + * + * ``` + * CDDL: proposal_procedures = nonempty_set + * ``` + * + * This is a non-empty set of proposal procedures. + * + * @since 2.0.0 + * @category model + */ + +// TODO: Implement when ProposalProcedure is available +export const ProposalProcedures = Schema.Unknown + +export type ProposalProcedures = Schema.Schema.Type diff --git a/packages/evolution/src/ProtocolVersion.ts b/packages/evolution/src/ProtocolVersion.ts new file mode 100644 index 00000000..cbde9c1d --- /dev/null +++ b/packages/evolution/src/ProtocolVersion.ts @@ -0,0 +1,93 @@ +import { Data, Effect, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" +import * as Numeric from "./Numeric.js" + +/** + * Error class for ProtocolVersion related operations. + * + * @since 2.0.0 + * @category errors + */ +export class ProtocolVersionError extends Data.TaggedError("ProtocolVersionError")<{ + message?: string + cause?: unknown +}> {} + +/** + * ProtocolVersion class based on Conway CDDL specification + * + * CDDL: protocol_version = [major_version : uint32, minor_version : uint32] + * + * @since 2.0.0 + * @category model + */ +export class ProtocolVersion extends Schema.TaggedClass()("ProtocolVersion", { + major: Numeric.Uint32Schema, + minor: Numeric.Uint32Schema +}) {} + +/** + * Check if two ProtocolVersion instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: ProtocolVersion, b: ProtocolVersion): boolean => a.major === b.major && a.minor === b.minor + +/** + * CDDL schema for ProtocolVersion. + * protocol_version = [major_version : uint32, minor_version : uint32] + * + * @since 2.0.0 + * @category schemas + */ +export const FromCDDL = Schema.transformOrFail( + Schema.Tuple(CBOR.Integer, CBOR.Integer), + Schema.typeSchema(ProtocolVersion), + { + strict: true, + encode: (toA) => Effect.succeed([BigInt(toA.major), BigInt(toA.minor)] as const), + decode: ([major, minor]) => + ParseResult.decode(ProtocolVersion)({ + _tag: "ProtocolVersion", + major: Number(major), + minor: Number(minor) + }) + } +) + +/** + * CBOR bytes transformation schema for ProtocolVersion. + * + * @since 2.0.0 + * @category schemas + */ +export const FromCBORBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + FromCDDL // CBOR โ†’ ProtocolVersion + ) + +/** + * CBOR hex transformation schema for ProtocolVersion. + * + * @since 2.0.0 + * @category schemas + */ +export const FromCBORHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromCBORBytes(options) // Uint8Array โ†’ ProtocolVersion + ) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + bytes: FromCBORBytes(options), + variableBytes: FromCBORHex(options) + }, + ProtocolVersionError + ) diff --git a/packages/evolution/src/Relay.ts b/packages/evolution/src/Relay.ts new file mode 100644 index 00000000..3a768e55 --- /dev/null +++ b/packages/evolution/src/Relay.ts @@ -0,0 +1,183 @@ +import { Data, FastCheck, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" +import * as MultiHostName from "./MultiHostName.js" +import * as SingleHostAddr from "./SingleHostAddr.js" +import * as SingleHostName from "./SingleHostName.js" + +/** + * Error class for Relay related operations. + * + * @since 2.0.0 + * @category errors + */ +export class RelayError extends Data.TaggedError("RelayError")<{ + message?: string + reason?: "InvalidStructure" | "UnsupportedType" +}> {} + +/** + * Union schema for Relay representing various relay configurations. + * relay = [ single_host_addr // single_host_name // multi_host_name ] + * + * @since 2.0.0 + * @category schemas + */ +export const Relay = Schema.Union( + SingleHostAddr.SingleHostAddr, + SingleHostName.SingleHostName, + MultiHostName.MultiHostName +) + +export const FromCDDL = Schema.Union( + SingleHostAddr.SingleHostAddrCDDLSchema, + SingleHostName.SingleHostNameCDDLSchema, + MultiHostName.FromCDDL +) + +/** + * Type alias for Relay. + * + * @since 2.0.0 + * @category model + */ +export type Relay = typeof Relay.Type + +/** + * CBOR bytes transformation schema for Relay. + * For union types, we create a union of the child FromBytess + * rather than trying to create a complex three-layer transformation. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.Union(SingleHostAddr.FromBytes(options), SingleHostName.FromBytes(options), MultiHostName.FromBytes(options)) + +/** + * CBOR hex transformation schema for Relay. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ Relay + ) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options) + }, + RelayError + ) + +/** + * Pattern match on a Relay to handle different relay types. + * + * @since 2.0.0 + * @category transformation + */ +export const match = ( + relay: Relay, + cases: { + SingleHostAddr: (addr: SingleHostAddr.SingleHostAddr) => A + SingleHostName: (name: SingleHostName.SingleHostName) => B + MultiHostName: (multi: MultiHostName.MultiHostName) => C + } +): A | B | C => { + switch (relay._tag) { + case "SingleHostAddr": + return cases.SingleHostAddr(relay) + case "SingleHostName": + return cases.SingleHostName(relay) + case "MultiHostName": + return cases.MultiHostName(relay) + default: + throw new Error(`Exhaustive check failed: Unhandled case '${(relay as { _tag: string })._tag}' encountered.`) + } +} + +/** + * Check if a Relay is a SingleHostAddr. + * + * @since 2.0.0 + * @category predicates + */ +export const isSingleHostAddr = (relay: Relay): relay is SingleHostAddr.SingleHostAddr => + relay._tag === "SingleHostAddr" + +/** + * Check if a Relay is a SingleHostName. + * + * @since 2.0.0 + * @category predicates + */ +export const isSingleHostName = (relay: Relay): relay is SingleHostName.SingleHostName => + relay._tag === "SingleHostName" + +/** + * Check if a Relay is a MultiHostName. + * + * @since 2.0.0 + * @category predicates + */ +export const isMultiHostName = (relay: Relay): relay is MultiHostName.MultiHostName => relay._tag === "MultiHostName" + +/** + * FastCheck generator for Relay instances. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.oneof(SingleHostAddr.generator, SingleHostName.generator, MultiHostName.generator) + +/** + * Check if two Relay instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (self: Relay, that: Relay): boolean => { + if (self._tag !== that._tag) return false + + switch (self._tag) { + case "SingleHostAddr": + return SingleHostAddr.equals(self, that as SingleHostAddr.SingleHostAddr) + case "SingleHostName": + return SingleHostName.equals(self, that as SingleHostName.SingleHostName) + case "MultiHostName": + return MultiHostName.equals(self, that as MultiHostName.MultiHostName) + default: + return false + } +} + +/** + * Create a Relay from a SingleHostAddr. + * + * @since 2.0.0 + * @category constructors + */ +export const fromSingleHostAddr = (singleHostAddr: SingleHostAddr.SingleHostAddr): Relay => singleHostAddr + +/** + * Create a Relay from a SingleHostName. + * + * @since 2.0.0 + * @category constructors + */ +export const fromSingleHostName = (singleHostName: SingleHostName.SingleHostName): Relay => singleHostName + +/** + * Create a Relay from a MultiHostName. + * + * @since 2.0.0 + * @category constructors + */ +export const fromMultiHostName = (multiHostName: MultiHostName.MultiHostName): Relay => multiHostName diff --git a/packages/evolution/src/RewardAccount.ts b/packages/evolution/src/RewardAccount.ts new file mode 100644 index 00000000..9865f7cb --- /dev/null +++ b/packages/evolution/src/RewardAccount.ts @@ -0,0 +1,112 @@ +import { Data, Effect, FastCheck, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as Bytes29 from "./Bytes29.js" +import * as _Codec from "./Codec.js" +import * as Credential from "./Credential.js" +import * as KeyHash from "./KeyHash.js" +import * as NetworkId from "./NetworkId.js" +import * as ScriptHash from "./ScriptHash.js" + +export class RewardAccountError extends Data.TaggedError("RewardAccountError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Reward/stake address with only staking credential + * + * @since 2.0.0 + * @category schemas + */ +export class RewardAccount extends Schema.TaggedClass("RewardAccount")("RewardAccount", { + networkId: NetworkId.NetworkId, + stakeCredential: Credential.Credential +}) { + [Symbol.for("nodejs.util.inspect.custom")]() { + return { + _tag: "RewardAccount", + networkId: this.networkId, + stakeCredential: this.stakeCredential + } + } +} + +export const FromBytes = Schema.transformOrFail(Bytes29.BytesSchema, RewardAccount, { + strict: true, + encode: (_, __, ___, toA) => + Effect.gen(function* () { + const stakingBit = toA.stakeCredential._tag === "KeyHash" ? 0 : 1 + const header = (0b111 << 5) | (stakingBit << 4) | (toA.networkId & 0b00001111) + const result = new Uint8Array(29) + result[0] = header + const stakeCredentialBytes = yield* ParseResult.decode(Bytes.FromHex)(toA.stakeCredential.hash) + result.set(stakeCredentialBytes, 1) + return yield* ParseResult.succeed(result) + }), + decode: (_, __, ___, fromA) => + Effect.gen(function* () { + const header = fromA[0] + // Extract network ID from the lower 4 bits + const networkId = header & 0b00001111 + // Extract address type from the upper 4 bits (bits 4-7) + const addressType = header >> 4 + + const isStakeKey = (addressType & 0b0001) === 0 + const stakeCredential: Credential.Credential = isStakeKey + ? { + _tag: "KeyHash", + hash: yield* ParseResult.decode(KeyHash.FromBytes)(fromA.slice(1, 29)) + } + : { + _tag: "ScriptHash", + hash: yield* ParseResult.decode(ScriptHash.BytesSchema)(fromA.slice(1, 29)) + } + return yield* ParseResult.decode(RewardAccount)({ + _tag: "RewardAccount", + networkId, + stakeCredential + }) + }) +}) + +export const FromHex = Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes // Uint8Array โ†’ RewardAccount +) + +/** + * Check if two RewardAccount instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: RewardAccount, b: RewardAccount): boolean => { + return ( + a.networkId === b.networkId && + a.stakeCredential._tag === b.stakeCredential._tag && + a.stakeCredential.hash === b.stakeCredential.hash + ) +} + +/** + * Generate a random RewardAccount. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.tuple(NetworkId.generator, Credential.generator).map( + ([networkId, stakeCredential]) => + new RewardAccount({ + networkId, + stakeCredential + }) +) + +export const Codec = _Codec.createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + RewardAccountError +) diff --git a/packages/evolution/src/RewardAddress.ts b/packages/evolution/src/RewardAddress.ts new file mode 100644 index 00000000..6e734c1f --- /dev/null +++ b/packages/evolution/src/RewardAddress.ts @@ -0,0 +1,28 @@ +import { Schema } from "effect" + +/** + * Reward address format schema (human-readable addresses) + * Following CIP-0019 encoding requirements + * + * @since 2.0.0 + * @category schemas + */ +export const RewardAddress = Schema.String.pipe(Schema.pattern(/^(stake|stake_test)[1][a-z0-9]+$/i)).pipe( + Schema.brand("RewardAddress") +) + +/** + * Type representing a reward/stake address string in bech32 format + * + * @since 2.0.0 + * @category model + */ +export type RewardAddress = Schema.Schema.Type + +/** + * Check if the given value is a valid RewardAddress + * + * @since 2.0.0 + * @category predicates + */ +export const isRewardAddress = Schema.is(RewardAddress) diff --git a/packages/evolution/src/ScriptDataHash.ts b/packages/evolution/src/ScriptDataHash.ts new file mode 100644 index 00000000..52868224 --- /dev/null +++ b/packages/evolution/src/ScriptDataHash.ts @@ -0,0 +1,22 @@ +import { Schema } from "effect" + +import * as Bytes32 from "./Bytes32.js" + +/** + * ScriptDataHash based on Conway CDDL specification + * + * CDDL: script_data_hash = Bytes32 + * + * This is a hash of data which may affect evaluation of a script. + * This data consists of: + * - The redeemers from the transaction_witness_set (the value of field 5). + * - The datums from the transaction_witness_set (the value of field 4). + * - The value in the cost_models map corresponding to the script's language + * (in field 18 of protocol_param_update.) + * + * @since 2.0.0 + * @category model + */ +export const ScriptDataHash = Bytes32.HexSchema.pipe(Schema.brand("ScriptDataHash")) + +export type ScriptDataHash = Schema.Schema.Type diff --git a/packages/evolution/src/ScriptHash.ts b/packages/evolution/src/ScriptHash.ts new file mode 100644 index 00000000..78ca1867 --- /dev/null +++ b/packages/evolution/src/ScriptHash.ts @@ -0,0 +1,88 @@ +import { Data, FastCheck, pipe, Schema } from "effect" + +import { createEncoders } from "./Codec.js" +import * as Hash28 from "./Hash28.js" + +/** + * Error class for ScriptHash related operations. + * + * @since 2.0.0 + * @category errors + */ +export class ScriptHashError extends Data.TaggedError("ScriptHashError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for ScriptHash representing a script hash credential. + * script_hash = hash28 + * Follows CIP-0019 binary representation. + * + * @since 2.0.0 + * @category schemas + */ +export const ScriptHash = pipe(Hash28.HexSchema, Schema.brand("ScriptHash")).annotations({ + identifier: "ScriptHash" +}) + +export type ScriptHash = typeof ScriptHash.Type + +/** + * Schema for transforming between Uint8Array and ScriptHash. + * + * @since 2.0.0 + * @category schemas + */ +export const BytesSchema = Schema.compose( + Hash28.FromBytes, // Uint8Array -> hex string + ScriptHash // hex string -> ScriptHash +).annotations({ + identifier: "ScriptHash.Bytes" +}) + +/** + * Schema for transforming between hex string and ScriptHash. + * + * @since 2.0.0 + * @category schemas + */ +export const HexSchema = Schema.compose( + Hash28.HexSchema, // string -> hex string + ScriptHash // hex string -> ScriptHash +).annotations({ + identifier: "ScriptHash.Hex" +}) + +/** + * Check if two ScriptHash instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: ScriptHash, b: ScriptHash): boolean => a === b + +/** + * Generate a random ScriptHash. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.uint8Array({ + minLength: Hash28.HASH28_BYTES_LENGTH, + maxLength: Hash28.HASH28_BYTES_LENGTH +}).map((bytes) => Codec.Decode.bytes(bytes)) + +/** + * Codec utilities for ScriptHash encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bytes: BytesSchema, + hex: HexSchema + }, + ScriptHashError +) diff --git a/packages/evolution/src/ScriptRef.ts b/packages/evolution/src/ScriptRef.ts new file mode 100644 index 00000000..b806ce93 --- /dev/null +++ b/packages/evolution/src/ScriptRef.ts @@ -0,0 +1,173 @@ +import { Data, Effect, FastCheck, ParseResult, pipe, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import { createEncoders } from "./Codec.js" + +/** + * Error class for ScriptRef related operations. + * + * @since 2.0.0 + * @category errors + */ +export class ScriptRefError extends Data.TaggedError("ScriptRefError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for ScriptRef representing a reference to a script in a transaction output. + * + * ``` + * CDDL: script_ref = #6.24(bytes .cbor script) + * ``` + * + * This is a branded hex string that represents the CBOR-encoded script bytes. + * The script_ref uses CBOR tag 24 to indicate it contains CBOR-encoded script data. + * + * @since 2.0.0 + * @category schemas + */ +export const ScriptRef = pipe(Bytes.HexSchema, Schema.brand("ScriptRef")).annotations({ + identifier: "ScriptRef" +}) + +export type ScriptRef = typeof ScriptRef.Type + +/** + * Schema for transforming from bytes to ScriptRef. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = Schema.compose( + Bytes.FromBytes, // Uint8Array -> hex string + ScriptRef // hex string -> ScriptRef +).annotations({ + identifier: "ScriptRef.Bytes" +}) + +/** + * Schema for transforming from hex to ScriptRef. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = Schema.compose( + Bytes.HexSchema, // string -> hex string + ScriptRef // hex string -> ScriptRef +).annotations({ + identifier: "ScriptRef.Hex" +}) + +/** + * CDDL schema for ScriptRef following the Conway specification. + * + * ``` + * script_ref = #6.24(bytes .cbor script) + * ``` + * + * This transforms between CBOR tag 24 structure and ScriptRef model. + * + * @since 2.0.0 + * @category schemas + */ +export const FromCDDL = Schema.transformOrFail(CBOR.Tag, ScriptRef, { + strict: true, + encode: (_, __, ___, toA) => + Effect.gen(function* () { + // Convert ScriptRef (hex string) to bytes for CBOR tag + const bytes = yield* ParseResult.decode(Bytes.FromHex)(toA) + return new CBOR.Tag({ + tag: 24, // tag 24 for CBOR script reference + value: bytes + }) + }), + + decode: (taggedValue, _, ast) => + Effect.gen(function* () { + if (taggedValue.tag !== 24) { + return yield* Effect.fail( + new ParseResult.Type(ast, taggedValue, `Expected tag 24 for ScriptRef, got tag ${taggedValue.tag}`) + ) + } + + if (!(taggedValue.value instanceof Uint8Array)) { + return yield* Effect.fail( + new ParseResult.Type( + ast, + taggedValue, + `Expected Uint8Array for ScriptRef value, got ${typeof taggedValue.value}` + ) + ) + } + + // Convert bytes to hex string for ScriptRef + const hex = yield* ParseResult.encode(Bytes.FromHex)(taggedValue.value) + return ScriptRef.make(hex) + }) +}) + +/** + * CBOR bytes transformation schema for ScriptRef. + * + * @since 2.0.0 + * @category schemas + */ +export const FromCBORBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + FromCDDL // CBOR โ†’ ScriptRef + ).annotations({ + identifier: "ScriptRef.CBORBytes" + }) + +/** + * CBOR hex transformation schema for ScriptRef. + * + * @since 2.0.0 + * @category schemas + */ +export const FromCBORHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromCBORBytes(options) // Uint8Array โ†’ ScriptRef + ).annotations({ + identifier: "ScriptRef.CBORHex" + }) + +/** + * Check if two ScriptRef instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: ScriptRef, b: ScriptRef): boolean => a === b + +/** + * Generate a random ScriptRef. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.uint8Array({ + minLength: 1, + maxLength: 100 +}).map((bytes) => Codec().Decode.bytes(bytes)) + +/** + * Extended Codec with CBOR support for ScriptRef. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + createEncoders( + { + bytes: FromBytes, + hex: FromHex, + cborBytes: FromCBORBytes(options), + cborHex: FromCBORHex(options) + }, + ScriptRefError + ) diff --git a/packages/evolution/src/SingleHostAddr.ts b/packages/evolution/src/SingleHostAddr.ts new file mode 100644 index 00000000..a900da15 --- /dev/null +++ b/packages/evolution/src/SingleHostAddr.ts @@ -0,0 +1,214 @@ +import { Data, Effect, FastCheck, Option, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" +import * as IPv4 from "./IPv4.js" +import * as IPv6 from "./IPv6.js" +import * as Port from "./Port.js" + +/** + * Error class for SingleHostAddr related operations. + * + * @since 2.0.0 + * @category errors + */ +export class SingleHostAddrError extends Data.TaggedError("SingleHostAddrError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for SingleHostAddr representing a network host with IP addresses. + * single_host_addr = (0, port/ nil, ipv4/ nil, ipv6/ nil) + * + * @since 2.0.0 + * @category model + */ +export class SingleHostAddr extends Schema.TaggedClass()("SingleHostAddr", { + port: Schema.OptionFromNullOr(Port.PortSchema), + ipv4: Schema.OptionFromNullOr(IPv4.IPv4), + ipv6: Schema.OptionFromNullOr(IPv6.IPv6) +}) { + [Symbol.for("nodejs.util.inspect.custom")]() { + return { + _tag: "SingleHostAddr", + port: this.port, + ipv4: this.ipv4, + ipv6: this.ipv6 + } + } +} + +/** + * Create a SingleHostAddr with IPv4 address. + * + * @since 2.0.0 + * @category constructors + */ +export const withIPv4 = (port: Option.Option, ipv4: IPv4.IPv4): SingleHostAddr => + new SingleHostAddr({ + port, + ipv4: Option.some(ipv4), + ipv6: Option.none() + }) + +/** + * Create a SingleHostAddr with IPv6 address. + * + * @since 2.0.0 + * @category constructors + */ +export const withIPv6 = (port: Option.Option, ipv6: IPv6.IPv6): SingleHostAddr => + new SingleHostAddr({ + port, + ipv4: Option.none(), + ipv6: Option.some(ipv6) + }) + +/** + * Create a SingleHostAddr with both IPv4 and IPv6 addresses. + * + * @since 2.0.0 + * @category constructors + */ +export const withBothIPs = (port: Option.Option, ipv4: IPv4.IPv4, ipv6: IPv6.IPv6): SingleHostAddr => + new SingleHostAddr({ + port, + ipv4: Option.some(ipv4), + ipv6: Option.some(ipv6) + }) + +/** + * Check if the host address has an IPv4 address. + * + * @since 2.0.0 + * @category predicates + */ +export const hasIPv4 = (hostAddr: SingleHostAddr): boolean => Option.isSome(hostAddr.ipv4) + +/** + * Check if the host address has an IPv6 address. + * + * @since 2.0.0 + * @category predicates + */ +export const hasIPv6 = (hostAddr: SingleHostAddr): boolean => Option.isSome(hostAddr.ipv6) + +/** + * Check if the host address has a port. + * + * @since 2.0.0 + * @category predicates + */ +export const hasPort = (hostAddr: SingleHostAddr): boolean => Option.isSome(hostAddr.port) + +/** + * Check if two SingleHostAddr instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: SingleHostAddr, b: SingleHostAddr): boolean => + Option.getEquivalence(Port.equals)(a.port, b.port) && + Option.getEquivalence(IPv4.equals)(a.ipv4, b.ipv4) && + Option.getEquivalence(IPv6.equals)(a.ipv6, b.ipv6) + +/** + * Generate a random SingleHostAddr. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.record({ + port: FastCheck.option(Port.generator), + ipv4: FastCheck.option(IPv4.generator), + ipv6: FastCheck.option(IPv6.generator) +}).map( + ({ ipv4, ipv6, port }) => + new SingleHostAddr({ + port: port ? Option.some(port) : Option.none(), + ipv4: ipv4 ? Option.some(ipv4) : Option.none(), + ipv6: ipv6 ? Option.some(ipv6) : Option.none() + }) +) + +/** + * CDDL schema for SingleHostAddr. + * single_host_addr = (0, port / nil, ipv4 / nil, ipv6 / nil) + * + * @since 2.0.0 + * @category schemas + */ +export const SingleHostAddrCDDLSchema = Schema.transformOrFail( + Schema.Tuple( + Schema.Literal(0n), // tag (literal 0) + Schema.NullOr(CBOR.Integer), // port (number or null) + Schema.NullOr(CBOR.ByteArray), // ipv4 bytes (nullable) + Schema.NullOr(CBOR.ByteArray) // ipv6 bytes (nullable) + ), + Schema.typeSchema(SingleHostAddr), + { + strict: true, + encode: (toA) => + Effect.gen(function* () { + const port = Option.isSome(toA.port) ? BigInt(toA.port.value) : null + + const ipv4 = Option.isSome(toA.ipv4) ? yield* ParseResult.encode(IPv4.FromBytes)(toA.ipv4.value) : null + + const ipv6 = Option.isSome(toA.ipv6) ? yield* ParseResult.encode(IPv6.FromBytes)(toA.ipv6.value) : null + + return yield* Effect.succeed([0n, port, ipv4, ipv6] as const) + }), + decode: ([, portValue, ipv4Value, ipv6Value]) => + Effect.gen(function* () { + const port = + portValue === null || portValue === undefined ? Option.none() : Option.some(Port.make(Number(portValue))) + + const ipv4 = + ipv4Value === null || ipv4Value === undefined + ? Option.none() + : Option.some(yield* ParseResult.decode(IPv4.FromBytes)(ipv4Value)) + + const ipv6 = + ipv6Value === null || ipv6Value === undefined + ? Option.none() + : Option.some(yield* ParseResult.decode(IPv6.FromBytes)(ipv6Value)) + + return yield* Effect.succeed(new SingleHostAddr({ port, ipv4, ipv6 })) + }) + } +) + +/** + * CBOR bytes transformation schema for SingleHostAddr. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + SingleHostAddrCDDLSchema // CBOR โ†’ SingleHostAddr + ) + +/** + * CBOR hex transformation schema for SingleHostAddr. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ SingleHostAddr + ) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options) + }, + SingleHostAddrError + ) diff --git a/packages/evolution/src/SingleHostName.ts b/packages/evolution/src/SingleHostName.ts new file mode 100644 index 00000000..273035df --- /dev/null +++ b/packages/evolution/src/SingleHostName.ts @@ -0,0 +1,201 @@ +import { Data, Effect, FastCheck, Option, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import * as DnsName from "./DnsName.js" +import * as Port from "./Port.js" + +/** + * Error class for SingleHostName related operations. + * + * @since 2.0.0 + * @category errors + */ +export class SingleHostNameError extends Data.TaggedError("SingleHostNameError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for SingleHostName representing a network host with DNS name. + * single_host_name = (1, port/ nil, dns_name) + * + * Used for A or AAAA DNS records. + * + * @since 2.0.0 + * @category model + */ +export class SingleHostName extends Schema.TaggedClass()("SingleHostName", { + port: Schema.OptionFromNullOr(Port.PortSchema), + dnsName: DnsName.DnsName +}) { + [Symbol.for("nodejs.util.inspect.custom")]() { + return { + _tag: "SingleHostName", + port: this.port, + dnsName: this.dnsName + } + } +} + +/** + * Create a SingleHostName with a port. + * + * @since 2.0.0 + * @category constructors + */ +export const withPort = (port: Port.Port, dnsName: DnsName.DnsName): SingleHostName => + new SingleHostName({ + port: Option.some(port), + dnsName + }) + +/** + * Create a SingleHostName without a port. + * + * @since 2.0.0 + * @category constructors + */ +export const withoutPort = (dnsName: DnsName.DnsName): SingleHostName => + new SingleHostName({ + port: Option.none(), + dnsName + }) + +/** + * Check if the host name has a port. + * + * @since 2.0.0 + * @category predicates + */ +export const hasPort = (hostName: SingleHostName): boolean => Option.isSome(hostName.port) + +/** + * Get the DNS name from a SingleHostName. + * + * @since 2.0.0 + * @category transformation + */ +export const getDnsName = (hostName: SingleHostName): DnsName.DnsName => hostName.dnsName + +/** + * Get the port from a SingleHostName, if it exists. + * + * @since 2.0.0 + * @category transformation + */ +export const getPort = (hostName: SingleHostName): Option.Option => hostName.port + +/** + * Check if two SingleHostName instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: SingleHostName, b: SingleHostName): boolean => + Option.getEquivalence(Port.equals)(a.port, b.port) && DnsName.equals(a.dnsName, b.dnsName) + +/** + * Generate a random SingleHostName. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.record({ + port: FastCheck.option(Port.generator), + dnsName: DnsName.generator +}).map( + ({ dnsName, port }) => + new SingleHostName({ + port: port ? Option.some(port) : Option.none(), + dnsName + }) +) + +/** + * CDDL schema for SingleHostName. + * single_host_name = (1, port / nil, dns_name) + * + * @since 2.0.0 + * @category schemas + */ +export const SingleHostNameCDDLSchema = Schema.transformOrFail( + Schema.Tuple( + Schema.Literal(1n), // tag (literal 1) + Schema.NullOr(CBOR.Integer), // port (number or null) + Schema.String // dns_name (string) + ), + Schema.typeSchema(SingleHostName), + { + strict: true, + encode: (toA) => + Effect.gen(function* () { + const port = Option.isSome(toA.port) ? BigInt(toA.port.value) : null + const dnsName = yield* ParseResult.encode(DnsName.DnsName)(toA.dnsName) + + return yield* Effect.succeed([1n, port, dnsName] as const) + }), + decode: ([, portValue, dnsNameValue]) => + Effect.gen(function* () { + const port = + portValue === null || portValue === undefined + ? Option.none() + : Option.some(yield* ParseResult.decode(Port.PortSchema)(Number(portValue))) + + const dnsName = yield* ParseResult.decode(DnsName.DnsName)(dnsNameValue) + + return yield* Effect.succeed(new SingleHostName({ port, dnsName })) + }) + } +) + +/** + * CBOR bytes transformation schema for SingleHostName. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + SingleHostNameCDDLSchema // CBOR โ†’ SingleHostName + ) + +/** + * CBOR hex transformation schema for SingleHostName. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ SingleHostName + ) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => ({ + Encode: { + cborBytes: Schema.encodeSync(FromBytes(options)), + cborHex: Schema.encodeSync(FromHex(options)) + }, + Decode: { + cborBytes: Schema.decodeUnknownSync(FromBytes(options)), + cborHex: Schema.decodeUnknownSync(FromHex(options)) + }, + EncodeEither: { + cborBytes: Schema.encodeEither(FromBytes(options)), + cborHex: Schema.encodeEither(FromHex(options)) + }, + DecodeEither: { + cborBytes: Schema.decodeEither(FromBytes(options)), + cborHex: Schema.decodeEither(FromHex(options)) + }, + EncodeEffect: { + cborBytes: Schema.encode(FromBytes(options)), + cborHex: Schema.encode(FromHex(options)) + }, + DecodeEffect: { + cborBytes: Schema.decode(FromBytes(options)), + cborHex: Schema.decode(FromHex(options)) + } +}) diff --git a/packages/evolution/src/StakeReference.ts b/packages/evolution/src/StakeReference.ts new file mode 100644 index 00000000..0621974a --- /dev/null +++ b/packages/evolution/src/StakeReference.ts @@ -0,0 +1,21 @@ +import { Schema } from "effect" + +import * as Credential from "./Credential.js" +import * as Pointer from "./Pointer.js" + +/** + * Schema for stake reference that can be either a credential or a pointer + * + * @since 2.0.0 + * @category schemas + */ +export const StakeReference = Schema.UndefinedOr(Schema.Union(Credential.Credential, Pointer.Pointer)) + +/** + * Type representing a reference to staking information + * Can be a credential (key hash or script hash) or a pointer + * + * @since 2.0.0 + * @category model + */ +export type StakeReference = Schema.Schema.Type diff --git a/packages/evolution/src/TSchema.ts b/packages/evolution/src/TSchema.ts new file mode 100644 index 00000000..041346c0 --- /dev/null +++ b/packages/evolution/src/TSchema.ts @@ -0,0 +1,357 @@ +import type { SchemaAST } from "effect" +import { Effect, ParseResult, Schema } from "effect" +import type { NonEmptyReadonlyArray } from "effect/Array" + +import * as Data from "./Data.js" + +/** + * Schema transformations between TypeScript types and Plutus Data + * + * This module provides bidirectional transformations: + * 1. TypeScript types => Plutus Data type => CBOR hex + * 2. CBOR hex => Plutus Data type => TypeScript types + */ + +interface ByteArray extends Schema.refine {} + +/** + * Creates a schema for byte arrays using Plutus Data ByteArray transformation + * The byte array is represented as a hex string + * + * @since 2.0.0 + */ +export const ByteArray: ByteArray = Data.BytesSchema.annotations({ + identifier: "TSchema.ByteArray" +}) +// : Schema.Schema = Schema.transform( +// Schema.String, +// Data.BytesSchema, +// { +// strict: true, +// encode: (value) => Data.bytearray(value), +// decode: (value) => value, +// } +// ); + +interface Integer extends Schema.SchemaClass {} + +/** + * Creates a schema for integers using Plutus Data Integer transformation + * The integer is represented as a BigInt + * + * @since 2.0.0 + */ +export const Integer: Integer = Data.IntSchema.annotations({ + identifier: "TSchema.Integer" +}) + +interface Literal> + extends Schema.transform, Schema.Literal<[...Literals]>> {} + +/** + * Creates a schema for literal types with Plutus Data Constructor transformation + * + * @since 2.0.0 + */ +export const Literal = >>( + ...self: Literals +): Literal => + Schema.transform(Schema.typeSchema(Data.Constr), Schema.Literal(...self), { + strict: true, + encode: (value) => new Data.Constr({ index: BigInt(self.indexOf(value)), fields: [] }), + decode: (value) => self[Number(value.index)] + }) + +interface OneLiteral> + extends Schema.transform, Schema.Literal<[Single]>> {} + +export const OneLiteral = >( + self: Single +): OneLiteral => + Schema.transform(Schema.typeSchema(Data.Constr), Schema.Literal(self), { + strict: true, + + encode: (_value) => new Data.Constr({ index: 0n, fields: [] }), + + decode: (_value) => self + }) + +interface Array extends Schema.transform> {} + +/** + * Creates a schema for arrays with Plutus list type annotation + * + * @since 1.0.0 + */ +export const Array = (items: S): Array => + Schema.transform(Data.ListSchema, Schema.Array(items), { + strict: false, + encode: (value) => Data.list([...value] as globalThis.Array), + decode: (value) => [...value] + }) + +interface Map + extends Schema.transform< + Schema.SchemaClass, globalThis.Map, never>, + Schema.MapFromSelf + > {} + +/** + * Creates a schema for maps with Plutus Map type annotation + * Maps are represented as a list of constructor pairs, where each pair + * is a constructor with index 0 and fields [key, value] + * + * @since 1.0.0 + */ +export const Map = (key: K, value: V): Map => + Schema.transform(Schema.typeSchema(Data.MapSchema), Schema.MapFromSelf({ key, value }), { + strict: false, + encode: (tsMap) => { + // Transform TypeScript Map to Data Map + // The individual key/value transformations are handled by the schema framework + return new globalThis.Map([...tsMap]) + }, + decode: (dataMap) => { + // Transform Data Map to TypeScript Map + // The individual key/value transformations are handled by the schema framework + return new globalThis.Map([...dataMap]) + } + }) + +interface NullOr + extends Schema.transform, Schema.NullOr> {} + +/** + * Creates a schema for nullable types that transforms to/from Plutus Data Constructor + * Represents optional values as: + * - Just(value) with index 0 + * - Nothing with index 1 + * + * @since 2.0.0 + */ +export const NullOr = (self: S): NullOr => + Schema.transform(Schema.typeSchema(Data.Constr), Schema.NullOr(self), { + strict: true, + encode: (value) => + value === null ? new Data.Constr({ index: 1n, fields: [] }) : new Data.Constr({ index: 0n, fields: [value] }), + decode: (value) => (value.index === 1n ? null : (value.fields[0] as Schema.Schema.Type)) + }) + +interface UndefineOr + extends Schema.transform, Schema.UndefinedOr> {} + +/** + * Creates a schema for undefined types that transforms to/from Plutus Data Constructor + * Represents optional values as: + * - Just(value) with index 0 + * - Nothing with index 1 + * + * @since 2.0.0 + */ +export const UndefinedOr = (self: S): UndefineOr => + Schema.transform(Schema.typeSchema(Data.Constr), Schema.UndefinedOr(self), { + strict: true, + encode: (value) => + value === undefined + ? new Data.Constr({ index: 1n, fields: [] }) + : new Data.Constr({ index: 0n, fields: [value] }), + decode: (value) => (value.index === 1n ? undefined : (value.fields[0] as Schema.Schema.Type)) + }) + +interface Boolean + extends Schema.transform, typeof Schema.Boolean> {} + +/** + * Schema for boolean values using Plutus Data Constructor + * - False with index 0 + * - True with index 1 + * + * @since 2.0.0 + */ +export const Boolean: Boolean = Schema.transform( + Schema.typeSchema(Data.Constr), + Schema.Boolean.annotations({ + identifier: "TSchema.Boolean" + }), + { + strict: true, + encode: (boolean) => + boolean ? new Data.Constr({ index: 1n, fields: [] }) : new Data.Constr({ index: 0n, fields: [] }), + decode: ({ fields, index }) => { + if (index !== 0n && index !== 1n) { + throw new Error(`Expected constructor index to be 0 or 1, got ${index}`) + } + if (fields.length !== 0) { + throw new Error("Expected a constructor with no fields") + } + return index === 1n + } + } +).annotations({ + identifier: "TSchema.BooleanFromConstr" +}) + +interface Struct + extends Schema.transform, Schema.Struct> {} + +/** + * Creates a schema for struct types using Plutus Data Constructor + * Objects are represented as a constructor with index 0 and fields as an array + * + * @since 2.0.0 + */ +export const Struct = (fields: Fields): Struct => + Schema.transform(Schema.typeSchema(Data.Constr), Schema.Struct(fields), { + strict: false, + encode: (encodedStruct) => { + // encodedStruct is the result of Schema.Struct(fields), which has already transformed all fields + return new Data.Constr({ + index: 0n, + fields: Object.values(encodedStruct) + }) + }, + decode: (fromA) => { + const keys = Object.keys(fields) + const result = {} as Record + keys.forEach((key, index) => { + result[key] = fromA.fields[index] + }) + return result as { [K in keyof Schema.Struct.Encoded]: Schema.Struct.Encoded[K] } + } + }) + +interface Union> + extends Schema.transformOrFail< + Schema.SchemaClass, + Schema.SchemaClass, Schema.Schema.Type<[...Members][number]>, never>, + never + > {} + +/** + * Creates a schema for union types using Plutus Data Constructor + * Unions are represented as a constructor with index 0 and fields as an array + * + * @since 2.0.0 + */ +export const Union = >(...members: Members): Union => { + // Get readable names for each member schema for better error messages + const getMemberNames = () => { + return members.map((member, index) => { + const ast = member.ast + if (ast._tag === "Transformation" && ast.annotations && ast.annotations["identifier"]) { + const identifier = ast.annotations["identifier"] as string + return identifier.replace("TSchema.", "").toLowerCase() + } + return `option ${index + 1}` + }) + } + + return Schema.transformOrFail(Schema.typeSchema(Data.Constr), Schema.typeSchema(Schema.Union(...members)), { + strict: false, + encode: (value) => + Effect.gen(function* () { + const index = members.findIndex((schema) => Schema.is(schema)(value)) + + if (index === -1) { + const memberNames = getMemberNames() + const actualType = + typeof value === "bigint" + ? "bigint" + : typeof value === "object" && value !== null && (value as unknown) instanceof Map + ? "Map" + : typeof value === "object" && value !== null && globalThis.Array.isArray(value) + ? "array" + : typeof value + + return yield* Effect.fail( + new ParseResult.Type( + Schema.Union(...members).ast, + value, + `Invalid value for Union: received ${actualType} (${JSON.stringify(value)}), expected ${memberNames.join(" or ")}` + ) + ) + } + + const encodedValue = yield* ParseResult.encode(members[index] as Schema.Schema)(value) + + return new Data.Constr({ + index: BigInt(index), + fields: [encodedValue] + }) + }), + decode: (value, _, ast) => { + const memberIndex = Number(value.index) + // Check if index is valid for the members array + if (memberIndex < 0 || memberIndex >= members.length) { + return ParseResult.fail( + new ParseResult.Type( + ast, + value, + `Invalid union index: ${memberIndex}. Expected index between 0 and ${members.length - 1}` + ) + ) + } + // Get the member schema for this index + const member = members[memberIndex] as Schema.Schema + + // If the member schema expects a Data.Constr (like Boolean), + // we need to reconstruct the original Constr structure + // For primitive types, we use the first field + if (value.fields.length === 0) { + // This is likely a Boolean-like case where the original Constr had no fields + // Reconstruct the original Constr structure + return ParseResult.decode(member)(new Data.Constr({ index: 0n, fields: [] })) + } else if (value.fields.length === 1) { + // This could be either a primitive value or a Constr that was flattened + return ParseResult.decode(member)(value.fields[0]) + } else { + // Multiple fields - reconstruct as a Constr with index 0 + // This handles cases where the original Constr had multiple fields + return ParseResult.decode(member)(new Data.Constr({ index: 0n, fields: [...value.fields] })) + } + } + }).annotations({ + identifier: "TSchema.Union", + message: (issue) => { + const memberNames = getMemberNames() + const actual = issue.actual + const actualType = + typeof actual === "bigint" + ? "bigint" + : typeof actual === "object" && actual !== null && (actual as unknown) instanceof Map + ? "Map" + : typeof actual === "object" && actual !== null && globalThis.Array.isArray(actual) + ? "array" + : typeof actual + + return `Invalid value for Union: received ${actualType} (${JSON.stringify(actual)}), expected ${memberNames.join(" or ")}` + } + }) +} + +interface Tuple + extends Schema.transform> {} +/** + * Creates a schema for tuple types using Plutus Data List transformation + * Tuples are represented as a constructor with index 0 and fields as an array + * + * @since 2.0.0 + */ +export const Tuple = (element: [...Elements]): Tuple => + Schema.transform( + Data.ListSchema, + Schema.Tuple(...element).annotations({ + identifier: "Tuple" + }), + { + strict: false, + encode: (value) => Data.list([...value] as globalThis.Array), + decode: (value) => [...value] as any + } + ) + +export const compose = Schema.compose + +export const filter = Schema.filter + +export const is = Schema.is diff --git a/packages/evolution/src/Text.ts b/packages/evolution/src/Text.ts new file mode 100644 index 00000000..e2bd3c40 --- /dev/null +++ b/packages/evolution/src/Text.ts @@ -0,0 +1,58 @@ +import { Data, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import { createEncoders } from "./Codec.js" + +/** + * Error class for Text related operations. + * + * @since 2.0.0 + * @category errors + */ +export class TextError extends Data.TaggedError("TextError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for converting between strings and UTF-8 byte arrays. + * text -> bytes + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = Schema.transform(Schema.Uint8ArrayFromSelf, Schema.String, { + strict: true, + encode: (fromA) => new TextEncoder().encode(fromA), + decode: (toA) => new TextDecoder().decode(toA) +}).annotations({ + identifier: "Text.FromBytes" +}) + +/** + * Schema for converting between strings and hex representation of UTF-8 bytes. + * + * ``` + * text <-> hex + * ``` + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = Schema.compose(Bytes.FromHex, FromBytes).annotations({ + identifier: "Text.FromHex" +}) + +/** + * Codec utilities for Text encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + TextError +) diff --git a/packages/evolution/src/Text128.ts b/packages/evolution/src/Text128.ts new file mode 100644 index 00000000..73bdb13b --- /dev/null +++ b/packages/evolution/src/Text128.ts @@ -0,0 +1,61 @@ +import { Data, FastCheck, Schema } from "effect" + +import { createEncoders } from "./Codec.js" +import * as Text from "./Text.js" + +/** + * Error class for Text128 related operations. + * + * @since 2.0.0 + * @category errors + */ +export class Text128Error extends Data.TaggedError("Text128Error")<{ + message?: string + cause?: unknown +}> {} + +/** + * Constants for Text128 validation. + * text .size (0 .. 128) + * + * @since 2.0.0 + * @category constants + */ +export const TEXT128_MIN_LENGTH = 0 +export const TEXT128_MAX_LENGTH = 128 + +/** + * Schema for validating variable-length text between 0 and 128 characters. + * text .size (0 .. 128) + * + * @since 2.0.0 + * @category schemas + */ +export const FromVariableBytes = Text.FromBytes.pipe( + Schema.filter((text) => text.length >= TEXT128_MIN_LENGTH && text.length <= TEXT128_MAX_LENGTH, { + message: (issue) => + `Text128 must be between ${TEXT128_MIN_LENGTH} and ${TEXT128_MAX_LENGTH} characters, but got ${(issue.actual as string).length} characters.` + }) +) + +export const FromVariableHex = Text.FromHex.pipe( + Schema.filter((text) => text.length >= TEXT128_MIN_LENGTH && text.length <= TEXT128_MAX_LENGTH, { + message: (issue) => + `Text128 must be between ${TEXT128_MIN_LENGTH} and ${TEXT128_MAX_LENGTH} characters, but got ${(issue.actual as string).length} characters.` + }) +).annotations({ + identifier: "Text128.FromHex" +}) + +export const generator = FastCheck.string({ + minLength: TEXT128_MIN_LENGTH, + maxLength: TEXT128_MAX_LENGTH +}) + +export const Codec = createEncoders( + { + bytes: FromVariableBytes, + hex: FromVariableHex + }, + Text128Error +) diff --git a/packages/evolution/src/Transaction.ts b/packages/evolution/src/Transaction.ts new file mode 100644 index 00000000..bb0b39c1 --- /dev/null +++ b/packages/evolution/src/Transaction.ts @@ -0,0 +1,27 @@ +import { Schema } from "effect" + +import * as TransactionBody from "./TransactionBody.js" +// import * as TransactionWitnessSet from "./TransactionWitnessSet.js"; +// import * as AuxiliaryData from "./AuxiliaryData.js"; + +/** + * Transaction based on Conway CDDL specification + * + * CDDL: transaction = + * [transaction_body, transaction_witness_set, bool, auxiliary_data / nil] + * + * @since 2.0.0 + * @category model + */ +//TODO: Implement TransactionWitnessSet and AuxiliaryData when available +export class TransactionClass extends Schema.TaggedClass()("Transaction", { + body: TransactionBody.TransactionBody, + // witnessSet: TransactionWitnessSet.TransactionWitnessSet, + isValid: Schema.Boolean + // auxiliaryData: Schema.Union( + // AuxiliaryData.AuxiliaryData, + // Schema.Null, + // ), +}) {} + +export type Transaction = Schema.Schema.Type diff --git a/packages/evolution/src/TransactionBody.ts b/packages/evolution/src/TransactionBody.ts new file mode 100644 index 00000000..3b565352 --- /dev/null +++ b/packages/evolution/src/TransactionBody.ts @@ -0,0 +1,71 @@ +import { Schema } from "effect" + +import * as AuxiliaryDataHash from "./AuxiliaryDataHash.js" +import * as Certificate from "./Certificate.js" +import * as Coin from "./Coin.js" +import * as Hash28 from "./Hash28.js" +import * as Mint from "./Mint.js" +import * as NetworkId from "./NetworkId.js" +import * as PositiveCoin from "./PositiveCoin.js" +import * as ProposalProcedures from "./ProposalProcedures.js" +import * as ScriptDataHash from "./ScriptDataHash.js" +import * as TransactionInput from "./TransactionInput.js" +import * as TransactionOutput from "./TransactionOutput.js" +import * as VotingProcedures from "./VotingProcedures.js" +import * as Withdrawals from "./Withdrawals.js" + +/** + * TransactionBody based on Conway CDDL specification + * + * ``` + * CDDL: transaction_body = + * { 0 : set + * , 1 : [* transaction_output] + * , 2 : coin + * , ? 3 : slot_no + * , ? 4 : certificates + * , ? 5 : withdrawals + * , ? 7 : auxiliary_data_hash + * , ? 8 : slot_no + * , ? 9 : mint + * , ? 11 : script_data_hash + * , ? 13 : nonempty_set + * , ? 14 : required_signers + * , ? 15 : network_id + * , ? 16 : transaction_output + * , ? 17 : coin + * , ? 18 : nonempty_set + * , ? 19 : voting_procedures + * , ? 20 : proposal_procedures + * , ? 21 : coin + * , ? 22 : positive_coin + * } + * ``` + * + * @since 2.0.0 + * @category model + */ +export class TransactionBody extends Schema.TaggedClass()("TransactionBody", { + inputs: Schema.NonEmptyArray(TransactionInput.TransactionInput), // 0 + outputs: Schema.Array(TransactionOutput.TransactionOutput), // 1 + fee: Coin.CoinSchema, // 2 + ttl: Schema.optional(Schema.BigIntFromSelf), // 3 - slot_no + certificates: Schema.optional(Schema.NonEmptyArray(Certificate.Certificate)), // 4 + withdrawals: Schema.optional(Withdrawals.Withdrawals), // 5 + auxiliaryDataHash: Schema.optional(AuxiliaryDataHash.AuxiliaryDataHash), // 7 + validityIntervalStart: Schema.optional(Schema.BigIntFromSelf), // 8 - slot_no + mint: Schema.optional(Mint.Mint), // 9 + scriptDataHash: Schema.optional(ScriptDataHash.ScriptDataHash), // 11 + collateralInputs: Schema.optional(Schema.NonEmptyArray(TransactionInput.TransactionInput)), // 13 + requiredSigners: Schema.optional(Schema.NonEmptyArray(Hash28.HexSchema)), // 14 + networkId: Schema.optional(NetworkId.NetworkId), // 15 + collateralReturn: Schema.optional(TransactionOutput.TransactionOutput), // 16 + totalCollateral: Schema.optional(Coin.CoinSchema), // 17 + referenceInputs: Schema.optional(Schema.NonEmptyArray(TransactionInput.TransactionInput)), // 18 + votingProcedures: Schema.optional(VotingProcedures.VotingProcedures), // 19 + proposalProcedures: Schema.optional(ProposalProcedures.ProposalProcedures), // 20 + currentTreasuryValue: Schema.optional(Coin.CoinSchema), // 21 + donation: Schema.optional(PositiveCoin.PositiveCoinSchema) // 22 +}) {} + +//TODO: Implement FromHex when BytesSchema is complete diff --git a/packages/evolution/src/TransactionHash.ts b/packages/evolution/src/TransactionHash.ts new file mode 100644 index 00000000..5ff46329 --- /dev/null +++ b/packages/evolution/src/TransactionHash.ts @@ -0,0 +1,87 @@ +import { Data, FastCheck, pipe, Schema } from "effect" + +import * as Bytes32 from "./Bytes32.js" +import { createEncoders } from "./Codec.js" + +/** + * Error class for TransactionHash related operations. + * + * @since 2.0.0 + * @category errors + */ +export class TransactionHashError extends Data.TaggedError("TransactionHashError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for TransactionHash. + * transaction_hash = Bytes32 + * + * @since 2.0.0 + * @category schemas + */ +export const TransactionHash = pipe(Bytes32.HexSchema, Schema.brand("TransactionHash")).annotations({ + identifier: "TransactionHash" +}) + +export type TransactionHash = typeof TransactionHash.Type + +/** + * Schema for transforming between Uint8Array and TransactionHash. + * + * @since 2.0.0 + * @category schemas + */ +export const BytesSchema = Schema.compose( + Bytes32.FromBytes, // Uint8Array -> hex string + TransactionHash // hex string -> TransactionHash +).annotations({ + identifier: "TransactionHash.Bytes" +}) + +/** + * Schema for transforming between hex string and TransactionHash. + * + * @since 2.0.0 + * @category schemas + */ +export const HexSchema = Schema.compose( + Bytes32.HexSchema, // string -> hex string + TransactionHash // hex string -> TransactionHash +).annotations({ + identifier: "TransactionHash.Hex" +}) + +/** + * Check if two TransactionHash instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: TransactionHash, b: TransactionHash): boolean => a === b + +/** + * Generate a random TransactionHash. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.uint8Array({ + minLength: Bytes32.Bytes32_BYTES_LENGTH, + maxLength: Bytes32.Bytes32_BYTES_LENGTH +}).map((bytes) => Codec.Decode.bytes(bytes)) + +/** + * Codec utilities for TransactionHash encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bytes: BytesSchema, + hex: HexSchema + }, + TransactionHashError +) diff --git a/packages/evolution/src/TransactionIndex.ts b/packages/evolution/src/TransactionIndex.ts new file mode 100644 index 00000000..f31178e5 --- /dev/null +++ b/packages/evolution/src/TransactionIndex.ts @@ -0,0 +1,15 @@ +import type { Schema } from "effect" + +import * as Numeric from "./Numeric.js" + +/** + * CDDL: transaction_index = uint .size 2 + * + * @since 2.0.0 + * @category model + */ +export const TransactionIndexSchema = Numeric.Uint16Schema.annotations({ + identifier: "TransactionIndex" +}) + +export type TransactionIndex = Schema.Schema.Type diff --git a/packages/evolution/src/TransactionInput.ts b/packages/evolution/src/TransactionInput.ts new file mode 100644 index 00000000..c26ce1cc --- /dev/null +++ b/packages/evolution/src/TransactionInput.ts @@ -0,0 +1,137 @@ +import { Data, Effect, FastCheck, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" +import * as Numeric from "./Numeric.js" +import * as TransactionHash from "./TransactionHash.js" + +/** + * CDDL specs + * transaction_input = [transaction_id : $Bytes32, index : uint .size 2] + */ + +/** + * Error class for TransactionInput related operations. + * + * @since 2.0.0 + * @category errors + */ +export class TransactionInputError extends Data.TaggedError("TransactionInputError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for TransactionInput representing a transaction input with transaction id and index. + * transaction_input = [transaction_id : $Bytes32, index : uint .size 2] + * + * @since 2.0.0 + * @category model + */ +export class TransactionInput extends Schema.TaggedClass()("TransactionInput", { + transactionId: TransactionHash.TransactionHash, + index: Numeric.Uint16Schema +}) {} + +/** + * Check if the given value is a valid TransactionInput. + * + * @since 2.0.0 + * @category predicates + */ +export const isTransactionInput = Schema.is(TransactionInput) + +/** + * CDDL schema for TransactionInput. + * transaction_input = [transaction_id : $Bytes32, index : uint .size 2] + * + * @since 2.0.0 + * @category schemas + */ +export const TransactionInputCDDLSchema = Schema.transformOrFail( + Schema.Tuple( + Schema.Uint8ArrayFromSelf, // transaction_id as bytes + CBOR.Integer // index as bigint + ), + Schema.typeSchema(TransactionInput), + { + strict: true, + encode: (toA) => + Effect.gen(function* () { + const txHashBytes = yield* ParseResult.encode(TransactionHash.BytesSchema)(toA.transactionId) + return [txHashBytes, BigInt(toA.index)] as const + }), + decode: ([txHashBytes, indexBigInt]) => + Effect.gen(function* () { + const transactionId = yield* ParseResult.decode(TransactionHash.BytesSchema)(txHashBytes) + return yield* ParseResult.decode(TransactionInput)({ + _tag: "TransactionInput", + transactionId, + index: Number(indexBigInt) + }) + }) + } +) + +/** + * CBOR bytes transformation schema for TransactionInput. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + TransactionInputCDDLSchema // CBOR โ†’ TransactionInput + ) + +/** + * CBOR hex transformation schema for TransactionInput. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ TransactionInput + ) + +/** + * Check if two TransactionInput instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: TransactionInput, b: TransactionInput): boolean => + a._tag === b._tag && a.index === b.index && a.transactionId === b.transactionId + +/** + * FastCheck generator for TransactionInput instances. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.tuple(TransactionHash.generator, Numeric.Uint16Generator).map( + ([transactionId, index]) => + new TransactionInput({ + transactionId, + index + }) +) + +/** + * Extended Codec with CBOR support for TransactionInput. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options) + }, + TransactionInputError + ) diff --git a/packages/evolution/src/TransactionMetadatumLabels.ts b/packages/evolution/src/TransactionMetadatumLabels.ts new file mode 100644 index 00000000..bb056deb --- /dev/null +++ b/packages/evolution/src/TransactionMetadatumLabels.ts @@ -0,0 +1,183 @@ +import { Data, Inspectable, Schema } from "effect" + +/** + * CDDL spec: + * ``` + * transaction_metadatum_label = uint .size 8 + * ``` + * + * @since 2.0.0 + * @category model + */ +export const TransactionMetadatumLabel = Schema.Uint8 + +/** + * Type representing a transaction metadatum label. + * + * @since 2.0.0 + * @category model + */ +export type TransactionMetadatumLabel = typeof TransactionMetadatumLabel.Type + +/** + * Error thrown when transaction metadatum labels operations fail + * + * @since 2.0.0 + * @category model + */ +export class TransactionMetadatumLabelsError extends Data.TaggedError("TransactionMetadatumLabelsError")<{ + message: string + cause?: unknown +}> {} + +/** + * Transaction metadatum labels from an array of `TransactionMetadatumLabel` + * + * @since 2.0.0 + * @category schemas + */ +export class TransactionMetadatumLabels extends Schema.TaggedClass( + "TransactionMetadatumLabels" +)("TransactionMetadatumLabels", { + fromLabels: Schema.mutable(Schema.Array(TransactionMetadatumLabel)) +}) { + [Inspectable.NodeInspectSymbol]() { + return { + _tag: "TransactionMetadatumLabels", + fromLabels: this.fromLabels + } + } + + /** + * Gets the size of the labels. + * @returns The length of `fromLabels` + */ + size() { + return this.fromLabels.length + } + + /** + * Gets the label located at the specified index. If the index is out-of-bound, + * returns `undefined` + * + * @param index The index of the label + * @returns Returns `TransactionMetadatumLabel` located at the specified index + */ + get(index: number) { + return this.fromLabels.at(index) + } + + /** + * Overrides the existing labels with the specified ones. + * @param overideLabels The new set of labels + */ + set(overideLabels: Array) { + while (this.fromLabels.at(0) !== undefined) { + this.fromLabels.pop() + } + + for (const label of overideLabels) { + this.add(label) + } + } + + /** + * Appends a new label to the **end** + * + * @param label The label to append + * @returns The size of the labels after appended. This is a number one higher than the previous labels count. + */ + add(label: TransactionMetadatumLabel) { + return this.fromLabels.push(label) + } + + /** + * Removes the first occurence of the specified label from the collection. + * @param label The label to remove from the collection + */ + removeFirst(label: TransactionMetadatumLabel) { + const skip = this.fromLabels.indexOf(label) + + const overideLabels: Array = [] + for (let i = 0; i < this.size(); i++) { + if (i === skip) continue + overideLabels.push(this.fromLabels[i]) + } + + this.set(overideLabels) + } + + /** + * Removes the last occurence of the specified label from the collection. + * @param label The label to remove from the collection + */ + removeLast(label: TransactionMetadatumLabel) { + const skip = this.fromLabels.lastIndexOf(label) + + const overideLabels: Array = [] + for (let i = 0; i < this.size(); i++) { + if (i === skip) continue + overideLabels.push(this.fromLabels[i]) + } + + this.set(overideLabels) + } + + /** + * Removes all occurences of the specified label from the collection. + * @param label The label to remove from the collection + */ + removeAll(label: TransactionMetadatumLabel) { + this.set(this.fromLabels.filter((fromLabel) => fromLabel !== label)) + } + + /** + * Removes the label at the specified index from the collection. + * @param index The index of the label to remove from the collection + */ + removeAt(index: number) { + const overideLabels: Array = [] + for (let i = 0; i < this.size(); i++) { + if (i === index) continue + overideLabels.push(this.fromLabels[i]) + } + + this.set(overideLabels) + } + + /** + * Determines whether the collection contains the specified label. + * + * @param label The label to look for + * @returns True or False as appropriate + */ + has(label: TransactionMetadatumLabel) { + return this.fromLabels.includes(label) + } +} + +const _LABEL_DESCRIPTIONS = new Map([ + [94, "CIP-0094 - On-chain governance polls"], + [674, "CIP-0020 - Transaction message/comment metadata"], + [721, "CIP-0025 - NFT Token Standard"], + [777, "CIP-0027 - Royalties Standard"], + [867, "CIP-0088 - Token Policy Registration Standard"], + [1667, "CIP-72: dApp registration & Discovery"], + [3692, "CIP-0149 - Optional DRep compensation"], + [61284, "CIP-0015 - Catalyst registration"], + [61285, "CIP-0015 - Catalyst witness"], + [61286, "CIP-0015 - Catalyst deregistration"] +]) + +/** + * Describe transaction metadatum label as per + * [CIP-10](https://github.com/cardano-foundation/CIPs/blob/master/CIP-0010/registry.json) standard. + * + * **NOTE**: Only labels associated with CIPs will be described. + * + * @since 2.0.0 + * @category utils + */ +export const describeTransactionMetadatumLabel = (label: TransactionMetadatumLabel): string | undefined => { + return _LABEL_DESCRIPTIONS.get(label) +} diff --git a/packages/evolution/src/TransactionOutput.ts b/packages/evolution/src/TransactionOutput.ts new file mode 100644 index 00000000..6b30383f --- /dev/null +++ b/packages/evolution/src/TransactionOutput.ts @@ -0,0 +1,265 @@ +import { Data, Effect, ParseResult, Schema } from "effect" + +import * as Address from "./Address.js" +import * as Bytes from "./Bytes.js" +import * as Bytes32 from "./Bytes32.js" +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" +import * as DatumOption from "./DatumOption.js" +import * as ScriptRef from "./ScriptRef.js" +import * as Value from "./Value.js" + +export class TransactionOutputError extends Data.TaggedError("TransactionOutputError")<{ + message?: string + cause?: unknown +}> {} + +/** + * TransactionOutput types based on Conway CDDL specification + * + * ``` + * CDDL: transaction_output = shelley_transaction_output / babbage_transaction_output + * + * shelley_transaction_output = [address, amount : value, ? Bytes32] + * + * babbage_transaction_output = + * {0 : address, 1 : value, ? 2 : datum_option, ? 3 : script_ref} + * ``` + * + * @since 2.0.0 + * @category model + */ + +/** + * Shelley-era transaction output format + * + * ``` + * CDDL: shelley_transaction_output = [address, amount : value, ? Bytes32] + * ``` + * + * @since 2.0.0 + * @category model + */ +export class ShelleyTransactionOutput extends Schema.TaggedClass()( + "ShelleyTransactionOutput", + { + address: Address.Address, + amount: Value.Value, + datumHash: Schema.optional(Bytes32.HexSchema) + } +) {} + +/** + * Babbage-era transaction output format + * + * ``` + * CDDL: babbage_transaction_output = + * {0 : address, 1 : value, ? 2 : datum_option, ? 3 : script_ref} + * ``` + * + * @since 2.0.0 + * @category model + */ +export class BabbageTransactionOutput extends Schema.TaggedClass()( + "BabbageTransactionOutput", + { + address: Address.Address, // 0 + amount: Value.Value, // 1 + datumOption: Schema.optional(DatumOption.DatumOptionSchema), // 2 + scriptRef: Schema.optional(ScriptRef.ScriptRef) // 3 + } +) {} + +/** + * Union type for transaction outputs + * + * ``` + * CDDL: transaction_output = shelley_transaction_output / babbage_transaction_output + * ``` + * + * @since 2.0.0 + * @category schemas + */ +export const TransactionOutput = Schema.Union(ShelleyTransactionOutput, BabbageTransactionOutput) + +export type TransactionOutput = Schema.Schema.Type + +/** + * CDDL schema for Shelley transaction outputs + * + * ``` + * CDDL: shelley_transaction_output = [address, amount : value, ? Bytes32] + * ``` + * + * @since 2.0.0 + * @category schemas + */ +export const ShelleyTransactionOutputCDDLSchema = Schema.transformOrFail( + Schema.Tuple( + Schema.Uint8ArrayFromSelf, // address as bytes + Schema.encodedSchema(Value.ValueCDDLSchema), // value + Schema.optionalElement(Schema.Uint8ArrayFromSelf) // optional datum_hash as bytes + ), + Schema.typeSchema(ShelleyTransactionOutput), + { + strict: true, + encode: (toI) => + Effect.gen(function* () { + const addressBytes = yield* ParseResult.encode(Address.FromBytes)(toI.address) + const valueBytes = yield* ParseResult.encode(Value.ValueCDDLSchema)(toI.amount) + + if (toI.datumHash !== undefined) { + const hashBytes = yield* ParseResult.encode(Bytes.FromBytes)(toI.datumHash) + return [addressBytes, valueBytes, hashBytes] as const + } + + return [addressBytes, valueBytes] as const + }), + decode: (fromI) => + Effect.gen(function* () { + const [addressBytes, valueBytes, datumHashBytes] = fromI + + const address = yield* ParseResult.decode(Address.FromBytes)(addressBytes) + const amount = yield* ParseResult.decode(Value.ValueCDDLSchema)(valueBytes) + + let datumHash: string | undefined + if (datumHashBytes !== undefined) { + datumHash = yield* ParseResult.decode(Bytes.FromBytes)(datumHashBytes) + } + + return new ShelleyTransactionOutput({ + address, + amount, + datumHash + }) + }) + } +) + +/** + * CDDL schema for Babbage transaction outputs + * + * ``` + * CDDL: babbage_transaction_output = {0 : address, 1 : value, ? 2 : datum_option, ? 3 : script_ref} + * ``` + * + * @since 2.0.0 + * @category schemas + */ +export const BabbageTransactionOutputCDDLSchema = Schema.transformOrFail( + Schema.Struct({ + 0: Schema.Uint8ArrayFromSelf, // address as bytes + 1: Schema.encodedSchema(Value.ValueCDDLSchema), // value + 2: Schema.optional(Schema.encodedSchema(DatumOption.DatumOptionCDDLSchema)), // optional datum_option + 3: Schema.optional(Schema.encodedSchema(ScriptRef.FromCDDL)) // optional script_ref + }), + Schema.typeSchema(BabbageTransactionOutput), + { + strict: true, + encode: (toI) => + Effect.gen(function* () { + const addressBytes = yield* ParseResult.encode(Address.FromBytes)(toI.address) + const valueBytes = yield* ParseResult.encode(Value.ValueCDDLSchema)(toI.amount) + + // Prepare optional fields + const datumOptionBytes = + toI.datumOption !== undefined + ? yield* ParseResult.encode(DatumOption.DatumOptionCDDLSchema)(toI.datumOption) + : undefined + + const scriptRefBytes = + toI.scriptRef !== undefined ? yield* ParseResult.encode(ScriptRef.FromCDDL)(toI.scriptRef) : undefined + + // Build result object with conditional properties + return { + 0: addressBytes, + 1: valueBytes, + ...(datumOptionBytes !== undefined && { 2: datumOptionBytes }), + ...(scriptRefBytes !== undefined && { 3: scriptRefBytes }) + } + }), + decode: (fromI) => + Effect.gen(function* () { + const addressBytes = fromI[0] + const valueBytes = fromI[1] + const datumOptionBytes = fromI[2] + const scriptRefBytes = fromI[3] + + if (addressBytes === undefined || valueBytes === undefined) { + return yield* ParseResult.fail(new ParseResult.Type(BabbageTransactionOutput.ast, fromI)) + } + + const address = yield* ParseResult.decode(Address.FromBytes)(addressBytes) + const amount = yield* ParseResult.decode(Value.ValueCDDLSchema)(valueBytes) + + let datumOption: DatumOption.DatumOption | undefined + if (datumOptionBytes !== undefined) { + datumOption = yield* ParseResult.decode(DatumOption.DatumOptionCDDLSchema)(datumOptionBytes) + } + + let scriptRef: ScriptRef.ScriptRef | undefined + if (scriptRefBytes !== undefined) { + scriptRef = yield* ParseResult.decode(ScriptRef.FromCDDL)(scriptRefBytes) + } + + return new BabbageTransactionOutput({ + address, + amount, + datumOption, + scriptRef + }) + }) + } +) + +/** + * CDDL schema for transaction outputs + * + * ``` + * CDDL: transaction_output = shelley_transaction_output / babbage_transaction_output + * shelley_transaction_output = [address, amount : value, ? Bytes32] + * babbage_transaction_output = {0 : address, 1 : value, ? 2 : datum_option, ? 3 : script_ref} + * ``` + * + * @since 2.0.0 + * @category schemas + */ +export const TransactionOutputCDDLSchema = Schema.Union( + ShelleyTransactionOutputCDDLSchema, + BabbageTransactionOutputCDDLSchema +) + +/** + * CBOR bytes transformation schema for TransactionOutput. + * Transforms between Uint8Array and TransactionOutput using CBOR encoding. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + TransactionOutputCDDLSchema // CBOR โ†’ TransactionOutput + ) + +/** + * CBOR hex transformation schema for TransactionOutput. + * Transforms between hex string and TransactionOutput using CBOR encoding. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ TransactionOutput + ) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options) + }, + TransactionOutputError + ) diff --git a/packages/evolution/src/UnitInterval.ts b/packages/evolution/src/UnitInterval.ts new file mode 100644 index 00000000..f3d409fd --- /dev/null +++ b/packages/evolution/src/UnitInterval.ts @@ -0,0 +1,198 @@ +import { BigDecimal, Data, Effect, FastCheck, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import { createEncoders } from "./Codec.js" +import * as Numeric from "./Numeric.js" + +/** + * Error class for UnitInterval related operations. + * + * @since 2.0.0 + * @category errors + */ +export class UnitIntervalError extends Data.TaggedError("UnitIntervalError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for UnitInterval representing a fractional value between 0 and 1. + * + * ``` + * CDDL: unit_interval = #6.30([uint, uint]) + * ``` + * + * A unit interval is a number in the range between 0 and 1, which + * means there are two extra constraints: + * + * ``` + * 1. numerator โ‰ค denominator + * 2. denominator > 0 + * ``` + * + * @since 2.0.0 + * @category schemas + */ +export const UnitInterval = Schema.Struct({ + numerator: Numeric.Uint64Schema, + denominator: Numeric.Uint64Schema +}) + .pipe( + Schema.filter((interval) => { + if (interval.denominator <= 0n) { + return { + path: ["denominator"], + message: `denominator (${interval.denominator}) must be > 0` + } + } + if (interval.numerator > interval.denominator) { + return { + path: ["numerator"], + message: `numerator (${interval.numerator}) must be <= denominator (${interval.denominator})` + } + } + return true + }) + ) + .annotations({ + identifier: "UnitInterval" + }) + +export type UnitInterval = typeof UnitInterval.Type + +/** + * CDDL schema for UnitInterval following the Conway specification. + * + * ``` + * unit_interval = #6.30([uint, uint]) + * ``` + * + * Transforms between CBOR tag 30 structure and UnitInterval model. + * + * @since 2.0.0 + * @category schemas + */ +export const FromCDDL = Schema.transformOrFail(CBOR.Tag, UnitInterval, { + strict: true, + encode: (_, __, ___, unitInterval) => + Effect.succeed( + new CBOR.Tag({ + tag: 30, + value: [unitInterval.numerator, unitInterval.denominator] + }) + ), + decode: (_, __, ___, taggedValue) => + Effect.gen(function* () { + // Validate tag number + if (taggedValue.tag !== 30) { + return yield* Effect.fail( + new ParseResult.Type( + UnitInterval.ast, + taggedValue, + `Expected tag 30 for UnitInterval, got ${taggedValue.tag}` + ) + ) + } + + // Validate that the value is a tuple of two integers + const tupleValue = yield* ParseResult.decodeUnknown(Schema.Tuple(CBOR.Integer, CBOR.Integer))(taggedValue.value) + + const [numerator, denominator] = tupleValue + + // Create and validate UnitInterval using the validated schema + return yield* ParseResult.decode(UnitInterval)({ + numerator, + denominator + }) + }) +}).annotations({ + identifier: "UnitInterval.CDDL" +}) + +/** + * CBOR bytes transformation schema for UnitInterval. + * Transforms between Uint8Array and UnitInterval using CBOR encoding. + * + * @since 2.0.0 + * @category schemas + */ +export const FromCBORBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + FromCDDL // CBOR โ†’ UnitInterval + ).annotations({ + identifier: "UnitInterval.CBORBytes" + }) + +/** + * CBOR hex transformation schema for UnitInterval. + * Transforms between hex string and UnitInterval using CBOR encoding. + * + * @since 2.0.0 + * @category schemas + */ +export const FromCBORHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromCBORBytes(options) // Uint8Array โ†’ UnitInterval + ).annotations({ + identifier: "UnitInterval.CBORHex" + }) + +/** + * Check if two UnitInterval instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: UnitInterval, b: UnitInterval): boolean => + a.numerator === b.numerator && a.denominator === b.denominator + +/** + * Convert UnitInterval to BigDecimal value. + * + * @since 2.0.0 + * @category transformation + */ +export const toBigDecimal = (interval: UnitInterval) => + BigDecimal.unsafeDivide(BigDecimal.fromBigInt(interval.numerator), BigDecimal.fromBigInt(interval.denominator)) + +/** + * Create UnitInterval from BigDecimal value. + * + * @since 2.0.0 + * @category constructors + */ +export const fromBigDecimal = (value: BigDecimal.BigDecimal): UnitInterval => { + const normalized = BigDecimal.normalize(value) + const denominator = BigInt(10) ** BigInt(Math.max(0, normalized.scale)) + const numerator = normalized.value + + return UnitInterval.make({ numerator, denominator }) +} + +/** + * Generate a random UnitInterval. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.bigInt({ min: 1n, max: 1000000n }).chain((denominator) => + FastCheck.bigInt({ min: 0n, max: denominator }).map((numerator) => UnitInterval.make({ numerator, denominator })) +) + +/** + * CBOR codec utilities for UnitInterval. + * + * @since 2.0.0 + * @category codecs + */ +export const CBORCodec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + createEncoders( + { + cborBytes: FromCBORBytes(options), + cborHex: FromCBORHex(options) + }, + UnitIntervalError + ) diff --git a/packages/evolution/src/Url.ts b/packages/evolution/src/Url.ts new file mode 100644 index 00000000..44fd2947 --- /dev/null +++ b/packages/evolution/src/Url.ts @@ -0,0 +1,81 @@ +import { Data, Schema } from "effect" + +import * as _Codec from "./Codec.js" +import * as Text128 from "./Text128.js" + +/** + * CDDL specification: + * url = text .size (0..128) + * + * @since 2.0.0 + * @category constants + */ +export const URL_MAX_LENGTH = 128 + +/** + * Error class for Url related operations. + * + * @since 2.0.0 + * @category errors + */ +export class UrlError extends Data.TaggedError("UrlError")<{ + message?: string + reason?: "InvalidLength" | "InvalidFormat" | "TooLong" +}> {} + +/** + * Schema for Url representing URLs as branded text. + * url = text .size (0..128) + * + * @since 2.0.0 + * @category model + */ +export const Url = Text128.FromVariableHex.pipe(Schema.brand("Url")) + +/** + * Type alias for Url. + * + * @since 2.0.0 + * @category model + */ +export type Url = typeof Url.Type + +export const make = Url.make + +export const FromBytes = Schema.compose( + Text128.FromVariableBytes, // Uint8Array -> hex string + Url // hex string -> Url +).annotations({ + identifier: "Url.Bytes" +}) + +export const FromHex = Schema.compose( + Text128.FromVariableHex, // string -> hex string + Url // hex string -> Url +).annotations({ + identifier: "Url.Hex" +}) + +/** + * Check if two Url instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: Url, b: Url): boolean => a === b + +/** + * Generate a random Url. + * + * @since 2.0.0 + * @category generators + */ +export const generator = Text128.generator.map((text) => Url.make(text)) + +export const Codec = _Codec.createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + UrlError +) diff --git a/packages/evolution/src/VKey.ts b/packages/evolution/src/VKey.ts new file mode 100644 index 00000000..a37096e6 --- /dev/null +++ b/packages/evolution/src/VKey.ts @@ -0,0 +1,76 @@ +import { Data, FastCheck, pipe, Schema } from "effect" + +import * as Bytes32 from "./Bytes32.js" +import { createEncoders } from "./Codec.js" + +/** + * Error class for VKey related operations. + * + * @since 2.0.0 + * @category errors + */ +export class VKeyError extends Data.TaggedError("VKeyError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for VKey representing a verification key. + * vkey = bytes .size 32 + * Follows the Conway-era CDDL specification. + * + * @since 2.0.0 + * @category schemas + */ +export const VKey = pipe(Bytes32.HexSchema, Schema.brand("VKey")).annotations({ + identifier: "VKey" +}) + +export type VKey = typeof VKey.Type + +export const FromBytes = Schema.compose( + Bytes32.FromBytes, // Uint8Array -> hex string + VKey // hex string -> VKey +).annotations({ + identifier: "VKey.Bytes" +}) + +export const FromHex = Schema.compose( + Bytes32.HexSchema, // string -> hex string + VKey // hex string -> VKey +).annotations({ + identifier: "VKey.Hex" +}) + +/** + * Check if two VKey instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: VKey, b: VKey): boolean => a === b + +/** + * Generate a random VKey. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.uint8Array({ + minLength: Bytes32.Bytes32_BYTES_LENGTH, + maxLength: Bytes32.Bytes32_BYTES_LENGTH +}).map((bytes) => Codec.Decode.bytes(bytes)) + +/** + * Codec utilities for VKey encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + VKeyError +) diff --git a/packages/evolution/src/Value.ts b/packages/evolution/src/Value.ts new file mode 100644 index 00000000..aea98df4 --- /dev/null +++ b/packages/evolution/src/Value.ts @@ -0,0 +1,368 @@ +import { Data, Effect, FastCheck, Option, ParseResult, Schema } from "effect" + +import * as AssetName from "./AssetName.js" +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" +import * as Coin from "./Coin.js" +import * as MultiAsset from "./MultiAsset.js" +import * as PolicyId from "./PolicyId.js" +import * as PositiveCoin from "./PositiveCoin.js" + +/** + * Error class for Value related operations. + * + * @since 2.0.0 + * @category errors + */ +export class ValueError extends Data.TaggedError("ValueError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for Value representing both ADA and native assets. + * + * ``` + * value = coin / [coin, multiasset] + * ``` + * + * This can be either: + * 1. Just a coin amount (lovelace only) + * 2. A tuple of [coin, multiasset] (lovelace + native assets) + * + * @since 2.0.0 + * @category schemas + */ +export class OnlyCoin extends Schema.TaggedClass("OnlyCoin")("OnlyCoin", { + coin: Coin.CoinSchema +}) {} + +export class WithAssets extends Schema.TaggedClass("WithAssets")("WithAssets", { + coin: Coin.CoinSchema, + assets: MultiAsset.MultiAssetSchema +}) {} + +export const Value = Schema.Union(OnlyCoin, WithAssets) +export type Value = typeof Value.Type + +/** + * Create a Value containing only ADA. + * + * @since 2.0.0 + * @category constructors + */ +export const onlyCoin = (ada: Coin.Coin) => new OnlyCoin({ coin: ada }) + +/** + * Create a Value containing ADA and native assets. + * + * @since 2.0.0 + * @category constructors + */ +export const withAssets = (ada: Coin.Coin, assets: MultiAsset.MultiAsset) => new WithAssets({ coin: ada, assets }) + +/** + * Extract the ADA amount from a Value. + * + * @since 2.0.0 + * @category transformation + */ +export const getAda = (value: Value): Coin.Coin => { + return value.coin +} + +/** + * Extract the MultiAsset from a Value, if it exists. + * + * @since 2.0.0 + * @category transformation + */ +export const getAssets = (value: Value): Option.Option => { + if (value._tag === "OnlyCoin") { + return Option.none() + } else { + return Option.some(value.assets) + } +} + +/** + * Check if a Value contains only ADA (no native assets). + * + * @since 2.0.0 + * @category predicates + */ +export const isAdaOnly = (value: Value): value is OnlyCoin => value._tag === "OnlyCoin" + +/** + * Check if a Value contains native assets. + * + * @since 2.0.0 + * @category predicates + */ +export const hasAssets = (value: Value): value is WithAssets => value._tag === "WithAssets" + +/** + * Add two Values together. + * Combines ADA amounts and merges MultiAssets. + * + * @since 2.0.0 + * @category transformation + */ +export const add = (a: Value, b: Value): Value => { + const adaA = getAda(a) + const adaB = getAda(b) + const totalAda = Coin.add(adaA, adaB) + + const assetsA = getAssets(a) + const assetsB = getAssets(b) + + if (Option.isNone(assetsA) && Option.isNone(assetsB)) { + return onlyCoin(totalAda) + } + + if (Option.isSome(assetsA) && Option.isNone(assetsB)) { + return withAssets(totalAda, assetsA.value) + } + + if (Option.isNone(assetsA) && Option.isSome(assetsB)) { + return withAssets(totalAda, assetsB.value) + } + + // Both have assets - merge them properly + if (Option.isSome(assetsA) && Option.isSome(assetsB)) { + const mergedAssets = MultiAsset.merge(assetsA.value, assetsB.value) + return withAssets(totalAda, mergedAssets) + } + + return onlyCoin(totalAda) +} + +/** + * Subtract Value b from Value a. + * Subtracts ADA amounts and MultiAssets properly. + * + * @since 2.0.0 + * @category transformation + */ +export const subtract = (a: Value, b: Value): Value => { + const adaA = getAda(a) + const adaB = getAda(b) + const resultAda = Coin.subtract(adaA, adaB) + + const assetsA = getAssets(a) + const assetsB = getAssets(b) + + // Both are ADA-only + if (Option.isNone(assetsA) && Option.isNone(assetsB)) { + return onlyCoin(resultAda) + } + + // a has assets, b doesn't - keep a's assets + if (Option.isSome(assetsA) && Option.isNone(assetsB)) { + return withAssets(resultAda, assetsA.value) + } + + // a doesn't have assets, b does - this would result in negative assets, throw error + if (Option.isNone(assetsA) && Option.isSome(assetsB)) { + throw new ValueError({ + message: "Cannot subtract assets from Value with no assets" + }) + } + + // Both have assets - subtract them properly + if (Option.isSome(assetsA) && Option.isSome(assetsB)) { + try { + const subtractedAssets = MultiAsset.subtract(assetsA.value, assetsB.value) + return withAssets(resultAda, subtractedAssets) + } catch { + // If subtraction results in empty MultiAsset, return ADA-only value + return onlyCoin(resultAda) + } + } + + return onlyCoin(resultAda) +} + +/** + * Check if two Values are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: Value, b: Value): boolean => { + const adaEqual = Coin.equals(getAda(a), getAda(b)) + + if (!adaEqual) return false + + const assetsA = getAssets(a) + const assetsB = getAssets(b) + + if (Option.isNone(assetsA) && Option.isNone(assetsB)) { + return true + } + + if (Option.isSome(assetsA) && Option.isSome(assetsB)) { + return MultiAsset.equals(assetsA.value, assetsB.value) + } + + return false +} + +/** + * Check if a value is a valid Value. + * + * @since 2.0.0 + * @category predicates + */ +export const is = (value: unknown): value is Value => Schema.is(Value)(value) + +/** + * Generate a random Value. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.oneof( + FastCheck.record({ + _tag: FastCheck.constant("OnlyCoin"), + coin: Coin.generator + }), + FastCheck.record({ + _tag: FastCheck.constant("WithAssets"), + coin: Coin.generator, + assets: MultiAsset.generator + }) +) + +/** + * CDDL schema for Value as union structure. + * + * ``` + * value = coin / [coin, multiasset] + * ``` + * + * This represents either: + * - A single coin amount (for ADA-only values) + * - An array with [coin, multiasset] (for values with native assets) + * + * @since 2.0.0 + * @category schemas + */ +export const ValueCDDLSchema = Schema.transformOrFail( + Schema.Union( + CBOR.Integer, + Schema.Tuple( + CBOR.Integer, + Schema.encodedSchema( + MultiAsset.MultiAssetCDDLSchema // MultiAsset CDDL structure + ) + ) + ), + Schema.typeSchema(Value), + { + strict: true, + encode: (toI) => + Effect.gen(function* () { + // expected encode result + // readonly [bigint, readonly (readonly [Uint8Array, readonly (readonly [Uint8Array, bigint])[]])[]] + if (toI._tag === "OnlyCoin") { + // This is OnlyCoin, encode just the coin amount + return toI.coin + } else { + // Value with assets (WithAssets) + // Convert MultiAsset to raw Map data for CBOR encoding + const outerMap = new Map>() + + for (const [policyId, assetMap] of toI.assets.entries()) { + const policyIdBytes = yield* ParseResult.encode(PolicyId.FromBytes)(policyId) + const innerMap = new Map() + + for (const [assetName, amount] of assetMap.entries()) { + const assetNameBytes = yield* ParseResult.encode(AssetName.FromBytes)(assetName) + innerMap.set(assetNameBytes, amount) + } + + outerMap.set(policyIdBytes, innerMap) + } + + return [toI.coin, outerMap] as const // Return as tuple + } + }), + decode: (fromA) => + Effect.gen(function* () { + if (typeof fromA === "bigint") { + // ADA-only value - create OnlyCoin instance + return new OnlyCoin({ + coin: fromA + }) + } else { + // Value with assets [coin, multiasset] + const [coinAmount, multiAssetCddl] = fromA + + // Convert from CDDL format to MultiAsset manually + const result = new Map() + + for (const [policyIdBytes, assetMapCddl] of multiAssetCddl.entries()) { + const policyId = yield* ParseResult.decode(PolicyId.FromBytes)(policyIdBytes) + + const assetMap = new Map() + for (const [assetNameBytes, amount] of assetMapCddl.entries()) { + const assetName = yield* ParseResult.decode(AssetName.FromBytes)(assetNameBytes) + const positiveCoin = PositiveCoin.make(amount) + assetMap.set(assetName, positiveCoin) + } + + result.set(policyId, assetMap) + } + + return new WithAssets({ + coin: coinAmount, + assets: result + }) + } + }) + } +) + +/** + * TypeScript type for the raw CDDL representation. + * This is what gets encoded/decoded to/from CBOR. + * + * @since 2.0.0 + * @category model + */ +export type ValueCDDL = typeof ValueCDDLSchema.Type + +/** + * CBOR bytes transformation schema for Value. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + ValueCDDLSchema // CBOR โ†’ Value + ) + +/** + * CBOR hex transformation schema for Value. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ Value + ) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options) + }, + ValueError + ) diff --git a/packages/evolution/src/VotingProcedures.ts b/packages/evolution/src/VotingProcedures.ts new file mode 100644 index 00000000..553c0345 --- /dev/null +++ b/packages/evolution/src/VotingProcedures.ts @@ -0,0 +1,20 @@ +import { Schema } from "effect" + +/** + * VotingProcedures based on Conway CDDL specification + * + * ``` + * CDDL: voting_procedures = {+ voter => {+ gov_action_id => voting_procedure}} + * ``` + * + * This is a complex nested map structure that we'll implement gradually + * as we create the required sub-types. + * + * @since 2.0.0 + * @category model + */ + +// TODO: Implement when Voter, GovActionId, and VotingProcedure are available +export const VotingProcedures = Schema.Unknown + +export type VotingProcedures = Schema.Schema.Type diff --git a/packages/evolution/src/VrfCert.ts b/packages/evolution/src/VrfCert.ts new file mode 100644 index 00000000..9ddaf193 --- /dev/null +++ b/packages/evolution/src/VrfCert.ts @@ -0,0 +1,213 @@ +import { Data, Effect, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as Bytes32 from "./Bytes32.js" +import * as Bytes80 from "./Bytes80.js" +import * as CBOR from "./CBOR.js" +import * as _Codec from "./Codec.js" + +/** + * Error class for VrfCert related operations. + * + * @since 2.0.0 + * @category errors + */ +export class VrfCertError extends Data.TaggedError("VrfCertError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for VRF output (32 bytes). + * vrf_output = bytes .size 32 + * + * @since 2.0.0 + * @category schemas + */ +export const VRFOutput = Bytes32.HexSchema.pipe(Schema.brand("VrfOutput")) + +/** + * Type alias for VRF output. + * + * @since 2.0.0 + * @category model + */ +export type VRFOutput = typeof VRFOutput.Type + +/** + * Schema for VRF output as a byte array. + * vrf_output = bytes .size 32 + * + * @since 2.0.0 + * @category schemas + */ +export const VRFOutputFromBytes = Schema.compose( + Bytes32.FromBytes, // Uint8Array -> hex string + VRFOutput // hex string -> VRFOutput +).annotations({ + identifier: "VrfOutput.Bytes" +}) + +/** + * Schema for VRF output as a hex string. + * vrf_output = bytes .size 32 + * + * @since 2.0.0 + * @category schemas + */ +export const VRFOutputHexSchema = Schema.compose( + Bytes32.HexSchema, // string -> hex string + VRFOutput // hex string -> VRFOutput +).annotations({ + identifier: "VrfOutput.Hex" +}) + +/** + * Schema for VRF proof (80 bytes). + * vrf_proof = bytes .size 80 + * + * @since 2.0.0 + * @category schemas + */ +export const VRFProof = Bytes80.HexSchema.pipe(Schema.brand("VrfProof")) + +/** + * Type alias for VRF proof. + * + * @since 2.0.0 + * @category model + */ +export type VRFProof = typeof VRFProof.Type + +/** + * Schema for VRF proof as a byte array. + * vrf_proof = bytes .size 80 + * + * @since 2.0.0 + * @category schemas + */ +export const VRFProofFromBytes = Schema.compose( + Bytes80.FromBytes, // Uint8Array -> hex string + VRFProof // hex string -> VRFProof +).annotations({ + identifier: "VrfProof.Bytes" +}) + +/** + * Schema for VRF proof as a hex string. + * vrf_proof = bytes .size 80 + * + * @since 2.0.0 + * @category schemas + */ +export const VRFProofHexSchema = Schema.compose( + Bytes80.HexSchema, // string -> hex string + VRFProof // hex string -> VRFProof +).annotations({ + identifier: "VrfProof.Hex" +}) + +/** + * Schema for VrfCert representing a VRF certificate. + * vrf_cert = [vrf_output, vrf_proof] + * + * @since 2.0.0 + * @category model + */ +export class VrfCert extends Schema.TaggedClass()("VrfCert", { + output: VRFOutput, + proof: VRFProof +}) {} + +/** + * Check if the given value is a valid VrfCert. + * + * @since 2.0.0 + * @category predicates + */ +export const isVrfCert = Schema.is(VrfCert) + +/** + * CDDL schema for VrfCert as tuple structure. + * vrf_cert = [vrf_output, vrf_proof] + * vrf_output = bytes .size 32 + * vrf_proof = bytes .size 80 + * + * @since 2.0.0 + * @category schemas + */ +export const VrfCertCDDLSchema = Schema.transformOrFail( + Schema.Tuple( + CBOR.ByteArray, // vrf_output as bytes + CBOR.ByteArray // vrf_proof as bytes + ), + Schema.typeSchema(VrfCert), + { + strict: true, + encode: (vrfCert) => + Effect.gen(function* () { + const outputBytes = yield* ParseResult.encode(Bytes.FromBytes)(vrfCert.output) + const proofBytes = yield* ParseResult.encode(Bytes.FromBytes)(vrfCert.proof) + return [outputBytes, proofBytes] as const + }), + decode: ([outputBytes, proofBytes]) => + Effect.gen(function* () { + const output = yield* ParseResult.decode(Bytes.FromBytes)(outputBytes) + const proof = yield* ParseResult.decode(Bytes.FromBytes)(proofBytes) + return new VrfCert({ + output: VRFOutput.make(output), + proof: VRFProof.make(proof) + }) + }) + } +) + +/** + * CBOR bytes transformation schema for VrfCert. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + VrfCertCDDLSchema // CBOR โ†’ VrfCert + ) + +/** + * CBOR hex transformation schema for VrfCert. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ VrfCert + ) + +/** + * Check if two VrfCert instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: VrfCert, b: VrfCert): boolean => + a._tag === b._tag && a.output === b.output && a.proof === b.proof + +/** + * Create a VrfCert from output and proof. + * + * @since 2.0.0 + * @category constructors + */ +export const make = (output: VRFOutput, proof: VRFProof): VrfCert => new VrfCert({ output, proof }) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + _Codec.createEncoders( + { + cborBytes: FromBytes(options), + cborHex: FromHex(options) + }, + VrfCertError + ) diff --git a/packages/evolution/src/VrfKeyHash.ts b/packages/evolution/src/VrfKeyHash.ts new file mode 100644 index 00000000..ec364bb9 --- /dev/null +++ b/packages/evolution/src/VrfKeyHash.ts @@ -0,0 +1,75 @@ +import { Data, FastCheck, pipe, Schema } from "effect" + +import * as Bytes32 from "./Bytes32.js" +import { createEncoders } from "./Codec.js" + +/** + * Error class for VrfKeyHash related operations. + * + * @since 2.0.0 + * @category errors + */ +export class VrfKeyHashError extends Data.TaggedError("VrfKeyHashError")<{ + message?: string + cause?: unknown +}> {} + +/** + * VrfKeyHash is a 32-byte hash representing a VRF verification key. + * vrf_keyhash = Bytes32 + * + * @since 2.0.0 + * @category schemas + */ +export const VrfKeyHash = pipe(Bytes32.HexSchema, Schema.brand("VrfKeyHash")).annotations({ + identifier: "VrfKeyHash" +}) + +export type VrfKeyHash = typeof VrfKeyHash.Type + +export const FromBytes = Schema.compose( + Bytes32.FromBytes, // Uint8Array -> hex string + VrfKeyHash // hex string -> VrfKeyHash +).annotations({ + identifier: "VrfKeyHash.Bytes" +}) + +export const FromHex = Schema.compose( + Bytes32.HexSchema, // string -> hex string + VrfKeyHash // hex string -> VrfKeyHash +).annotations({ + identifier: "VrfKeyHash.Hex" +}) + +/** + * Check if two VrfKeyHash instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: VrfKeyHash, b: VrfKeyHash): boolean => a === b + +/** + * Generate a random VrfKeyHash. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.uint8Array({ + minLength: Bytes32.Bytes32_BYTES_LENGTH, + maxLength: Bytes32.Bytes32_BYTES_LENGTH +}).map((bytes) => Codec.Decode.bytes(bytes)) + +/** + * Codec utilities for VrfKeyHash encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + VrfKeyHashError +) diff --git a/packages/evolution/src/VrfVkey.ts b/packages/evolution/src/VrfVkey.ts new file mode 100644 index 00000000..ffe9b5e1 --- /dev/null +++ b/packages/evolution/src/VrfVkey.ts @@ -0,0 +1,76 @@ +import { Data, FastCheck, pipe, Schema } from "effect" + +import * as Bytes32 from "./Bytes32.js" +import { createEncoders } from "./Codec.js" + +/** + * Error class for VrfVkey related operations. + * + * @since 2.0.0 + * @category errors + */ +export class VrfVkeyError extends Data.TaggedError("VrfVkeyError")<{ + message?: string + cause?: unknown +}> {} + +/** + * Schema for VrfVkey representing a VRF verification key. + * vrf_vkey = bytes .size 32 + * Follows the Conway-era CDDL specification. + * + * @since 2.0.0 + * @category schemas + */ +export const VrfVkey = pipe(Bytes32.HexSchema, Schema.brand("VrfVkey")).annotations({ + identifier: "VrfVkey" +}) + +export type VrfVkey = typeof VrfVkey.Type + +export const FromBytes = Schema.compose( + Bytes32.FromBytes, // Uint8Array -> hex string + VrfVkey // hex string -> VrfVkey +).annotations({ + identifier: "VrfVkey.Bytes" +}) + +export const FromHex = Schema.compose( + Bytes32.HexSchema, // string -> hex string + VrfVkey // hex string -> VrfVkey +).annotations({ + identifier: "VrfVkey.Hex" +}) + +/** + * Check if two VrfVkey instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (a: VrfVkey, b: VrfVkey): boolean => a === b + +/** + * Generate a random VrfVkey. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.uint8Array({ + minLength: Bytes32.Bytes32_BYTES_LENGTH, + maxLength: Bytes32.Bytes32_BYTES_LENGTH +}).map((bytes) => Codec.Decode.bytes(bytes)) + +/** + * Codec utilities for VrfVkey encoding and decoding operations. + * + * @since 2.0.0 + * @category encoding/decoding + */ +export const Codec = createEncoders( + { + bytes: FromBytes, + hex: FromHex + }, + VrfVkeyError +) diff --git a/packages/evolution/src/Withdrawals.ts b/packages/evolution/src/Withdrawals.ts new file mode 100644 index 00000000..8576c1a9 --- /dev/null +++ b/packages/evolution/src/Withdrawals.ts @@ -0,0 +1,276 @@ +import { Data, Effect, FastCheck, ParseResult, Schema } from "effect" + +import * as Bytes from "./Bytes.js" +import * as CBOR from "./CBOR.js" +import * as Coin from "./Coin.js" +import * as RewardAccount from "./RewardAccount.js" + +/** + * ``` + * CDDL specs + * withdrawals = {+ reward_account => coin} + * ``` + */ + +/** + * Error class for Withdrawals related operations. + * + * @since 2.0.0 + * @category errors + */ +export class WithdrawalsError extends Data.TaggedError("WithdrawalsError")<{ + message: string + cause?: unknown +}> {} + +/** + * Schema for Withdrawals representing a map of reward accounts to coin amounts. + * + * ``` + * withdrawals = {+ reward_account => coin} + * ``` + * + * @since 2.0.0 + * @since 2.0.0 + * @category model + */ +export class Withdrawals extends Schema.TaggedClass()("Withdrawals", { + withdrawals: Schema.MapFromSelf({ + key: RewardAccount.RewardAccount, + value: Coin.CoinSchema + }) +}) { + [Symbol.for("nodejs.util.inspect.custom")]() { + return { + _tag: "Withdrawals", + withdrawals: Array.from(this.withdrawals.entries()).map(([acc, coin]) => [acc, coin.toString()]) + } + } +} + +/** + * Check if the given value is a valid Withdrawals + * + * @since 2.0.0 + * @category predicates + */ +export const isWithdrawals = Schema.is(Withdrawals) + +/** + * CDDL schema for Withdrawals. + * + * ``` + * withdrawals = {+ reward_account => coin} + * ``` + * + * @since 2.0.0 + * @category schemas + */ +export const WithdrawalsCDDLSchema = Schema.transformOrFail( + Schema.MapFromSelf({ + key: Schema.Uint8ArrayFromSelf, // RewardAccount as Uint8Array (29 bytes) + value: CBOR.Integer // Coin as bigint + }), + Schema.typeSchema(Withdrawals), + { + strict: true, + encode: (toA) => + Effect.gen(function* () { + const withdrawalsMap = new Map() + for (const [rewardAccount, coin] of toA.withdrawals.entries()) { + const accountBytes = yield* ParseResult.encode(RewardAccount.FromBytes)(rewardAccount) + withdrawalsMap.set(accountBytes, BigInt(coin)) + } + return withdrawalsMap + }), + decode: (fromA) => + Effect.gen(function* () { + const decodedWithdrawals = new Map() + for (const [accountBytes, coinAmount] of fromA.entries()) { + const rewardAccount = yield* ParseResult.decode(RewardAccount.FromBytes)(accountBytes) + const coin = Coin.make(coinAmount) + decodedWithdrawals.set(rewardAccount, coin) + } + return yield* ParseResult.decode(Withdrawals)({ + _tag: "Withdrawals", + withdrawals: decodedWithdrawals + }) + }) + } +) + +/** + * CBOR bytes transformation schema for Withdrawals. + * + * @since 2.0.0 + * @category schemas + */ +export const FromBytes = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + CBOR.FromBytes(options), // Uint8Array โ†’ CBOR + WithdrawalsCDDLSchema // CBOR โ†’ Withdrawals + ) + +/** + * CBOR hex transformation schema for Withdrawals. + * + * @since 2.0.0 + * @category schemas + */ +export const FromHex = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => + Schema.compose( + Bytes.FromHex, // string โ†’ Uint8Array + FromBytes(options) // Uint8Array โ†’ Withdrawals + ) + +/** + * Check if two Withdrawals instances are equal. + * + * @since 2.0.0 + * @category equality + */ +export const equals = (self: Withdrawals, that: Withdrawals): boolean => { + if (self.withdrawals.size !== that.withdrawals.size) return false + + for (const [account, coin] of self.withdrawals) { + const otherCoin = that.withdrawals.get(account) + if (!otherCoin || !Coin.equals(coin, otherCoin)) return false + } + + return true +} + +/** + * FastCheck generator for Withdrawals instances. + * + * @since 2.0.0 + * @category generators + */ +export const generator = FastCheck.array(FastCheck.tuple(RewardAccount.generator, Coin.generator), { + minLength: 0, + maxLength: 10 +}).map((entries) => new Withdrawals({ withdrawals: new Map(entries) })) + +/** + * Create an empty Withdrawals instance. + * + * @since 2.0.0 + * @category constructors + */ +export const empty = (): Withdrawals => new Withdrawals({ withdrawals: new Map() }) + +/** + * Create a Withdrawals instance with a single withdrawal. + * + * @since 2.0.0 + * @category constructors + */ +export const singleton = (rewardAccount: RewardAccount.RewardAccount, coin: Coin.Coin): Withdrawals => + new Withdrawals({ withdrawals: new Map([[rewardAccount, coin]]) }) + +/** + * Create a Withdrawals instance from an array of [RewardAccount, Coin] pairs. + * + * @since 2.0.0 + * @category constructors + */ +export const fromEntries = (entries: Array<[RewardAccount.RewardAccount, Coin.Coin]>): Withdrawals => + new Withdrawals({ withdrawals: new Map(entries) }) + +/** + * Add a withdrawal to existing Withdrawals. + * + * @since 2.0.0 + * @category transformation + */ +export const add = ( + withdrawals: Withdrawals, + rewardAccount: RewardAccount.RewardAccount, + coin: Coin.Coin +): Withdrawals => { + const newMap = new Map(withdrawals.withdrawals) + newMap.set(rewardAccount, coin) + return new Withdrawals({ withdrawals: newMap }) +} + +/** + * Remove a withdrawal from existing Withdrawals. + * + * @since 2.0.0 + * @category transformation + */ +export const remove = (withdrawals: Withdrawals, rewardAccount: RewardAccount.RewardAccount): Withdrawals => { + const newMap = new Map(withdrawals.withdrawals) + newMap.delete(rewardAccount) + return new Withdrawals({ withdrawals: newMap }) +} + +/** + * Get the coin amount for a specific reward account. + * + * @since 2.0.0 + * @category transformation + */ +export const get = (withdrawals: Withdrawals, rewardAccount: RewardAccount.RewardAccount): Coin.Coin | undefined => + withdrawals.withdrawals.get(rewardAccount) + +/** + * Check if Withdrawals contains a specific reward account. + * + * @since 2.0.0 + * @category predicates + */ +export const has = (withdrawals: Withdrawals, rewardAccount: RewardAccount.RewardAccount): boolean => + withdrawals.withdrawals.has(rewardAccount) + +/** + * Check if Withdrawals is empty. + * + * @since 2.0.0 + * @category predicates + */ +export const isEmpty = (withdrawals: Withdrawals): boolean => withdrawals.withdrawals.size === 0 + +/** + * Get the size (number of withdrawals) in Withdrawals. + * + * @since 2.0.0 + * @category transformation + */ +export const size = (withdrawals: Withdrawals): number => withdrawals.withdrawals.size + +/** + * Get all entries as an array of [reward account, coin] pairs. + * + * @since 2.0.0 + * @category transformation + */ +export const entries = (withdrawals: Withdrawals): Array<[RewardAccount.RewardAccount, Coin.Coin]> => + Array.from(withdrawals.withdrawals.entries()) + +export const Codec = (options: CBOR.CodecOptions = CBOR.DEFAULT_OPTIONS) => ({ + Encode: { + cborBytes: Schema.encodeSync(FromBytes(options)), + cborHex: Schema.encodeSync(FromHex(options)) + }, + Decode: { + cborBytes: Schema.decodeUnknownSync(FromBytes(options)), + cborHex: Schema.decodeUnknownSync(FromHex(options)) + }, + EncodeEither: { + cborBytes: Schema.encodeEither(FromBytes(options)), + cborHex: Schema.encodeEither(FromHex(options)) + }, + DecodeEither: { + cborBytes: Schema.decodeUnknownEither(FromBytes(options)), + cborHex: Schema.decodeUnknownEither(FromHex(options)) + }, + EncodeEffect: { + cborBytes: Schema.encode(FromBytes(options)), + cborHex: Schema.encode(FromHex(options)) + }, + DecodeEffect: { + cborBytes: Schema.decodeUnknown(FromBytes(options)), + cborHex: Schema.decodeUnknown(FromHex(options)) + } +}) diff --git a/packages/evolution/src/index.ts b/packages/evolution/src/index.ts new file mode 100644 index 00000000..541e3088 --- /dev/null +++ b/packages/evolution/src/index.ts @@ -0,0 +1,101 @@ +export * as Address from "./Address.js" +export * as AddressDetails from "./AddressDetails.js" +export * as AddressTag from "./AddressTag.js" +export * as Anchor from "./Anchor.js" +export * as AssetName from "./AssetName.js" +export * as AuxiliaryDataHash from "./AuxiliaryDataHash.js" +export * as BaseAddress from "./BaseAddress.js" +export * as Bech32 from "./Bech32.js" +export * as BigInt from "./BigInt.js" +export * as Block from "./Block.js" +export * as BlockBodyHash from "./BlockBodyHash.js" +export * as BlockHeaderHash from "./BlockHeaderHash.js" +export * as BoundedBytes from "./BoundedBytes.js" +export * as ByronAddress from "./ByronAddress.js" +export * as Bytes from "./Bytes.js" +export * as Bytes4 from "./Bytes4.js" +export * as Bytes16 from "./Bytes16.js" +export * as Bytes29 from "./Bytes29.js" +export * as Bytes32 from "./Bytes32.js" +export * as Bytes57 from "./Bytes57.js" +export * as Bytes64 from "./Bytes64.js" +export * as Bytes80 from "./Bytes80.js" +export * as Bytes448 from "./Bytes448.js" +export * as CBOR from "./CBOR.js" +export * as Certificate from "./Certificate.js" +export * as Codec from "./Codec.js" +export * as Coin from "./Coin.js" +export * as Combinator from "./Combinator.js" +export * as CommitteeColdCredential from "./CommitteeColdCredential.js" +export * as CommitteeHotCredential from "./CommitteeHotCredential.js" +export * as Credential from "./Credential.js" +export * as Data from "./Data.js" +// export * as DataJson from "./DataJson.js" // Temporarily disabled due to cardano-multiplatform-lib dependency +export * as DatumOption from "./DatumOption.js" +export * as Devnet from "./Devnet/Devnet.js" +export * as DevnetDefault from "./Devnet/DevnetDefault.js" +export * as DnsName from "./DnsName.js" +export * as DRep from "./DRep.js" +export * as DRepCredential from "./DRepCredential.js" +export * as Ed25519Signature from "./Ed25519Signature.js" +export * as EnterpriseAddress from "./EnterpriseAddress.js" +export * as EpochNo from "./EpochNo.js" +export * as FormatError from "./FormatError.js" +export * as Hash28 from "./Hash28.js" +export * as Header from "./Header.js" +export * as HeaderBody from "./HeaderBody.js" +export * as IPv4 from "./IPv4.js" +export * as IPv6 from "./IPv6.js" +export * as KesSignature from "./KesSignature.js" +export * as KESVkey from "./KESVkey.js" +export * as KeyHash from "./KeyHash.js" +export * as Mint from "./Mint.js" +export * as MultiAsset from "./MultiAsset.js" +export * as MultiHostName from "./MultiHostName.js" +export * as NativeScriptJSON from "./NativeScriptJSON.js" +export * as NativeScripts from "./NativeScripts.js" +export * as Natural from "./Natural.js" +export * as Network from "./Network.js" +export * as NetworkId from "./NetworkId.js" +export * as NonZeroInt64 from "./NonZeroInt64.js" +export * as Numeric from "./Numeric.js" +export * as OperationalCert from "./OperationalCert.js" +export * as PaymentAddress from "./PaymentAddress.js" +export * as Pointer from "./Pointer.js" +export * as PointerAddress from "./PointerAddress.js" +export * as PolicyId from "./PolicyId.js" +export * as PoolKeyHash from "./PoolKeyHash.js" +export * as PoolMetadata from "./PoolMetadata.js" +export * as PoolParams from "./PoolParams.js" +export * as Port from "./Port.js" +export * as PositiveCoin from "./PositiveCoin.js" +export * as ProposalProcedures from "./ProposalProcedures.js" +export * as ProtocolVersion from "./ProtocolVersion.js" +export * as Relay from "./Relay.js" +export * as RewardAccount from "./RewardAccount.js" +export * as RewardAddress from "./RewardAddress.js" +export * as ScriptDataHash from "./ScriptDataHash.js" +export * as ScriptHash from "./ScriptHash.js" +export * as ScriptRef from "./ScriptRef.js" +export * as SingleHostAddr from "./SingleHostAddr.js" +export * as SingleHostName from "./SingleHostName.js" +export * as StakeReference from "./StakeReference.js" +export * as Text from "./Text.js" +export * as Text128 from "./Text128.js" +export * as Transaction from "./Transaction.js" +export * as TransactionBody from "./TransactionBody.js" +export * as TransactionHash from "./TransactionHash.js" +export * as TransactionIndex from "./TransactionIndex.js" +export * as TransactionInput from "./TransactionInput.js" +export * as TransactionMetadatumLabels from "./TransactionMetadatumLabels.js" +export * as TransactionOutput from "./TransactionOutput.js" +export * as TSchema from "./TSchema.js" +export * as UnitInterval from "./UnitInterval.js" +export * as Url from "./Url.js" +export * as Value from "./Value.js" +export * as VKey from "./VKey.js" +export * as VotingProcedures from "./VotingProcedures.js" +export * as VrfCert from "./VrfCert.js" +export * as VrfKeyHash from "./VrfKeyHash.js" +export * as VrfVkey from "./VrfVkey.js" +export * as Withdrawals from "./Withdrawals.js" diff --git a/packages/evolution/test/Address.test.ts b/packages/evolution/test/Address.test.ts new file mode 100644 index 00000000..adee54b8 --- /dev/null +++ b/packages/evolution/test/Address.test.ts @@ -0,0 +1,360 @@ +import { describe, expect, it } from "@effect/vitest" +import { Effect } from "effect" +import { UnknownException } from "effect/Cause" + +import * as Address from "../src/Address.js" +import * as AddressDetails from "../src/AddressDetails.js" +import * as AddressTag from "../src/AddressTag.js" +import * as Bech32 from "../src/Bech32.js" +import * as Bytes from "../src/Bytes.js" +import * as Header from "../src/Header.js" +import { PointerAddress } from "../src/index.js" +import * as Positive from "../src/Natural.js" +import * as Network from "../src/Network.js" +import * as PaymentAddress from "../src/PaymentAddress.js" +import * as RewardAddress from "../src/RewardAddress.js" + +// Sample addresses for testing - organized by network and type as arrays with comments +// MAINNET ADDRESSES +const MAINNET_ADDRESSES = [ + // Base addresses (payment key hash + stake key hash) - type 0 + "addr1qx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3n0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgse35a3x", + // Base addresses (payment script hash + stake key hash) - type 1 + "addr1z8phkx6acpnf78fuvxn0mkew3l0fd058hzquvz7w36x4gten0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgs9yc0hh", + // Base addresses (payment key hash + stake script hash) - type 2 + "addr1yx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzerkr0vd4msrxnuwnccdxlhdjar77j6lg0wypcc9uar5d2shs2z78ve", + // Base addresses (payment script hash + stake script hash) - type 3 + "addr1x8phkx6acpnf78fuvxn0mkew3l0fd058hzquvz7w36x4gt7r0vd4msrxnuwnccdxlhdjar77j6lg0wypcc9uar5d2shskhj42g", + // Pointer addresses (payment key hash + pointer) - type 4 + "addr1gx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer5pnz75xxcrzqf96k", + // Pointer addresses (payment script hash + pointer) - type 5 + "addr128phkx6acpnf78fuvxn0mkew3l0fd058hzquvz7w36x4gtupnz75xxcrtw79hu", + // Enterprise addresses (payment key hash only) - type 6 + "addr1vx2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzers66hrl8", + // Enterprise addresses (payment script hash only) - type 7 + "addr1w8phkx6acpnf78fuvxn0mkew3l0fd058hzquvz7w36x4gtcyjy7wx", + // Reward addresses (stake key hash) - type 14 + "stake1uyehkck0lajq8gr28t9uxnuvgcqrc6070x3k9r8048z8y5gh6ffgw", + // Reward addresses (stake script hash) - type 15 + "stake178phkx6acpnf78fuvxn0mkew3l0fd058hzquvz7w36x4gtcccycj5" +] + +// TESTNET ADDRESSES +const TESTNET_ADDRESSES = [ + // Base addresses (payment key hash + stake key hash) - type 0 + "addr_test1qz2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer3n0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgs68faae", + // Base addresses (payment script hash + stake key hash) - type 1 + "addr_test1zrphkx6acpnf78fuvxn0mkew3l0fd058hzquvz7w36x4gten0d3vllmyqwsx5wktcd8cc3sq835lu7drv2xwl2wywfgsxj90mg", + // Base addresses (payment key hash + stake script hash) - type 2 + "addr_test1yz2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzerkr0vd4msrxnuwnccdxlhdjar77j6lg0wypcc9uar5d2shsf5r8qx", + // Base addresses (payment script hash + stake script hash) - type 3 + "addr_test1xrphkx6acpnf78fuvxn0mkew3l0fd058hzquvz7w36x4gt7r0vd4msrxnuwnccdxlhdjar77j6lg0wypcc9uar5d2shs4p04xh", + // Pointer addresses (payment key hash + pointer) - type 4 + "addr_test1gz2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzer5pnz75xxcrdw5vky", + // Pointer addresses (payment script hash + pointer) - type 5 + "addr_test12rphkx6acpnf78fuvxn0mkew3l0fd058hzquvz7w36x4gtupnz75xxcryqrvmw", + // Enterprise addresses (payment key hash only) - type 6 + "addr_test1vz2fxv2umyhttkxyxp8x0dlpdt3k6cwng5pxj3jhsydzerspjrlsz", + // Enterprise addresses (payment script hash only) - type 7 + "addr_test1wrphkx6acpnf78fuvxn0mkew3l0fd058hzquvz7w36x4gtcl6szpr", + // Reward addresses (stake key hash) - type 14 + "stake_test1uqehkck0lajq8gr28t9uxnuvgcqrc6070x3k9r8048z8y5gssrtvn", + // Reward addresses (stake script hash) - type 15 + "stake_test17rphkx6acpnf78fuvxn0mkew3l0fd058hzquvz7w36x4gtcljw6kf" +] + +// Combine all addresses for tests that need to check all +const ALL_ADDRESSES = [...MAINNET_ADDRESSES, ...TESTNET_ADDRESSES] + +// Other test constants +const INVALID_ADDRESS = "not-an-address" +const VALID_HEX_ADDRESSES = [ + "019493315cd92eb5d8c4304e67b7e16ae36d61d34502694657811a2c8e337b62cfff6403a06a3acbc34f8c46003c69fe79a3628cefa9c47251", + "60ba1d6b6283c219a0530e3682c316215d55819cf97bbf26552c6f8530" +] + +// Helper function to get specific address types from the arrays +const getAddressByType = ( + type: "base" | "pointer" | "enterprise" | "stake", + network: "mainnet" | "testnet" = "mainnet", + index = 0 +): string => { + const addresses = network === "mainnet" ? MAINNET_ADDRESSES : TESTNET_ADDRESSES + + switch (type) { + case "base": + // Base addresses are at indexes 0-3 + return addresses[index % 4] + case "pointer": + // Pointer addresses are at indexes 4-5 + return addresses[4 + (index % 2)] + case "enterprise": + // Enterprise addresses are at indexes 6-7 + return addresses[6 + (index % 2)] + case "stake": + // Stake addresses are at indexes 8-9 + return addresses[8 + (index % 2)] + default: + return addresses[0] + } +} + +describe("Address Validation", () => { + it("should validate payment addresses correctly", () => { + // Valid payment addresses - first 8 addresses in each network array are payment addresses + ALL_ADDRESSES.slice(0, 8) + .concat(ALL_ADDRESSES.slice(10, 18)) + .forEach((address) => { + expect(PaymentAddress.isPaymentAddress(address)).toBe(true) + }) + + // Valid reward addresses (not payment addresses) + // Addresses at indices 8-9 and 18-19 are stake/reward addresses + ;[8, 9, 18, 19].forEach((index) => { + expect(PaymentAddress.isPaymentAddress(ALL_ADDRESSES[index])).toBe(false) + }) + + // Invalid addresses + expect(PaymentAddress.isPaymentAddress(INVALID_ADDRESS)).toBe(false) + }) + + it("should validate reward addresses correctly", () => { + // Valid reward addresses - addresses at indices 8-9 and 18-19 + ;[8, 9, 18, 19].forEach((index) => { + expect(RewardAddress.isRewardAddress(ALL_ADDRESSES[index])).toBe(true) + }) + + // Valid payment addresses (not reward addresses) + ALL_ADDRESSES.slice(0, 8) + .concat(ALL_ADDRESSES.slice(10, 18)) + .forEach((address) => { + expect(RewardAddress.isRewardAddress(address)).toBe(false) + }) + + // Invalid addresses + expect(RewardAddress.isRewardAddress(INVALID_ADDRESS)).toBe(false) + }) + it("should encode and decode hex addresses correctly", () => { + // Test encoding and decoding of valid hex addresses + VALID_HEX_ADDRESSES.forEach((hex) => { + const address = Address.Codec.Decode.hex(hex) + expect(address).toBeDefined() + expect(Address.Codec.Encode.hex(address)).toBe(hex) + }) + }) + it("should encode specific hex address to expected bech32 format", () => { + const hexAddress = "60ba1d6b6283c219a0530e3682c316215d55819cf97bbf26552c6f8530" + const expectedBech32 = "addr_test1vzap66mzs0ppngznpcmg9scky9w4tqvul9am7fj493hc2vq4ry02m" + + const address = Address.Codec.Decode.hex(hexAddress) + const actualBech32 = Address.Codec.Encode.bech32(address) + + expect(actualBech32).toBe(expectedBech32) + }) +}) + +//FIX: +// describe("Address Conversion", () => { +// it.effect("should convert between bech32 and bytes representation", () => +// Effect.gen(function* () { +// for (const address of ALL_ADDRESSES) { +// const bytes = yield* Bech32.toBytes(address); +// expect(bytes).toBeInstanceOf(Uint8Array); +// expect(bytes.length).toBeGreaterThan(0); +// } +// }), +// ); + +// it.effect("should extract header from bech32 address", () => +// Effect.gen(function* () { +// for (const address of ALL_ADDRESSES) { +// const header = yield* Header.fromBech32(address); +// expect(typeof header).toBe("number"); +// expect(header).toBeGreaterThanOrEqual(0); +// } +// }), +// ); + +// it.effect("should convert address to hex and back", () => +// Effect.gen(function* () { +// for (const address of ALL_ADDRESSES.slice(0, 8)) { +// // Skip reward addresses for this test +// const addressInfo = yield* Address.fromBech32(address); +// const hex = Address.toHex(addressInfo); +// expect(hex).toMatch(/^[0-9a-f]+$/i); + +// // Convert back from hex +// const fromHex = yield* Address.fromBytes(Bytes.fromHexOrThrow(hex)); +// const backToBech32 = Address.toBech32(fromHex); +// expect(backToBech32).toBe(address); +// } +// }), +// ); + +// it.effect("should fail with proper error for invalid addresses", () => +// Effect.gen(function* () { +// const result = yield* Effect.flip(Bech32.toBytes(INVALID_ADDRESS)); +// expect(result).toBeInstanceOf(Bech32.Bech32Error); +// }), +// ); +// }); + +// describe("Address Information Extraction", () => { +// it("should extract address tag from header", () => { +// // Using binary patterns to match the address format specification +// // Format: First 4 bits determine the address type +// const testCases = [ +// { header: 0b0000, tag: "Base" }, +// { header: 0b0001, tag: "Base" }, +// { header: 0b0010, tag: "Base" }, +// { header: 0b0011, tag: "Base" }, +// { header: 0b0100, tag: "Pointer" }, +// { header: 0b0101, tag: "Pointer" }, +// { header: 0b0110, tag: "Enterprise" }, +// { header: 0b0111, tag: "Enterprise" }, +// { header: 0b1000, tag: "Byron" }, +// { header: 0b1110, tag: "Reward" }, +// { header: 0b1111, tag: "Reward" }, +// ]; + +// // Test each specific header value as defined in the specification +// testCases.forEach(({ header, tag }) => { +// // Also test with network bit (5th bit) set to 1 +// // This shouldn't change the address type interpretation +// const withNetworkBit = (header << 4) | 0b1000; +// expect(AddressTag.fromHeader(withNetworkBit)).toBe(tag); +// }); +// }); + +// it.effect("should extract address tag from bech32", () => +// Effect.gen(function* () { +// // Base addresses +// const baseTag = yield* AddressTag.fromBech32( +// getAddressByType("base", "mainnet"), +// ); +// expect(baseTag).toBe("Base"); + +// // Enterprise addresses +// const enterpriseTag = yield* AddressTag.fromBech32( +// getAddressByType("enterprise", "mainnet"), +// ); +// expect(enterpriseTag).toBe("Enterprise"); + +// // Pointer addresses +// const pointerTag = yield* AddressTag.fromBech32( +// getAddressByType("pointer", "mainnet"), +// ); +// expect(pointerTag).toBe("Pointer"); + +// // Stake/Reward addresses - both stake and stake_test prefixes are for reward addresses +// const stakeTag = yield* AddressTag.fromBech32( +// getAddressByType("stake", "mainnet"), +// ); +// expect(stakeTag).toBe("Reward"); + +// const testnetStakeTag = yield* AddressTag.fromBech32( +// getAddressByType("stake", "testnet"), +// ); +// expect(testnetStakeTag).toBe("Reward"); +// }), +// ); + +// it.effect("should extract network ID from bech32", () => +// Effect.gen(function* () { +// // Mainnet addresses should have networkId 1 +// for (const address of MAINNET_ADDRESSES) { +// const networkId = yield* Network.fromBech32(address); +// expect(networkId).toBe(1); +// } + +// // Testnet addresses should have networkId 0 +// for (const address of TESTNET_ADDRESSES) { +// const networkId = yield* Network.fromBech32(address); +// expect(networkId).toBe(0); +// } +// }), +// ); + +// it.effect("should extract complete address details from bech32", () => +// Effect.gen(function* () { +// const address = getAddressByType("base", "mainnet"); +// const details = yield* AddressDetails.fromBech32(address); + +// // Verify structure +// expect(details._tag).toBe("BaseAddress"); +// // expect(details.networkId).toBe(1); +// // expect(details.paymentCredential).toBeDefined(); +// // expect(details.stakeCredential).toBeDefined(); +// expect(details.address.bech32).toBe(address); +// expect(details.address.hex).toMatch(/^[0-9a-f]+$/i); + +// // For enterprise address +// const enterpriseAddress = getAddressByType("enterprise", "mainnet"); +// const enterpriseDetails = +// yield* AddressDetails.fromBech32(enterpriseAddress); +// expect(enterpriseDetails._tag).toBe("EnterpriseAddress"); +// // expect(enterpriseDetails.paymentCredential).toBeDefined(); + +// // For stake/reward address +// const stakeAddress = getAddressByType("stake", "mainnet"); +// const stakeDetails = yield* AddressDetails.fromBech32(stakeAddress); +// expect(stakeDetails._tag).toBe("RewardAccount"); +// // expect(stakeDetails.stakeCredential).toBeDefined(); +// }), +// ); + +// it.effect("should handle address details from hex", () => +// Effect.gen(function* () { +// const details = yield* AddressDetails.fromHex(VALID_HEX_ADDRESS); +// expect(details).toBeDefined(); +// expect(details.address.hex).toBe(VALID_HEX_ADDRESS); +// expect(details.address.bech32).toMatch(MAINNET_ADDRESSES[0]); // Should be a mainnet address +// }), +// ); + +// it.effect( +// "should auto-detect and extract details from either bech32 or hex", +// () => +// Effect.gen(function* () { +// // From bech32 +// const address = getAddressByType("base", "mainnet"); +// const bech32Details = yield* AddressDetails.fromString(address); +// expect(bech32Details.address.bech32).toBe(address); + +// // From hex +// const hexDetails = yield* AddressDetails.fromString(VALID_HEX_ADDRESS); +// expect(hexDetails.address.hex).toBe(VALID_HEX_ADDRESS); +// }), +// ); +// }); + +// describe("Error Handling", () => { +// it.effect("should properly handle malformed addresses", () => +// Effect.gen(function* () { +// const result = yield* Effect.flip(Address.fromBech32(INVALID_ADDRESS)); +// expect(result).toBeInstanceOf(Bech32.Bech32Error); +// }), +// ); + +// it.effect( +// "should properly handle variable length integer encoding errors", +// () => +// Effect.gen(function* () { +// const result = yield* Effect.try(() => +// PointerAddress.encodeVariableLength(Positive.makeOrThrow(-1)), +// ).pipe(Effect.flip); +// expect(result).toBeInstanceOf(UnknownException); +// }), +// ); + +// it.effect("should handle invalid decoding of variable length integers", () => +// Effect.gen(function* () { +// // Create a buffer that's too short +// const bytes = new Uint8Array([0x80]); // High bit set, but no more bytes +// const result = yield* Effect.flip( +// PointerAddress.decodeVariableLength(bytes), +// ); +// expect(result).toBeInstanceOf(PointerAddress.PointerAddressError); +// }), +// ); +// }); diff --git a/packages/evolution/test/CBOR.test.ts b/packages/evolution/test/CBOR.test.ts new file mode 100644 index 00000000..7fb4e666 --- /dev/null +++ b/packages/evolution/test/CBOR.test.ts @@ -0,0 +1,869 @@ +import { describe, expect, it } from "@effect/vitest" + +import * as CBOR from "../src/CBOR.js" + +const Codec = CBOR.Codec() +describe("CBOR Implementation Tests", () => { + describe("Integer Encoding Boundaries", () => { + const boundaryTestCases = [ + { name: "Zero", value: 0n }, + { name: "Small positive (23)", value: 23n }, + { name: "Small positive (24)", value: 24n }, + { name: "Small positive (255)", value: 255n }, + { name: "Small positive (256)", value: 256n }, + { name: "Medium positive (65535)", value: 65535n }, + { name: "Medium positive (65536)", value: 65536n }, + { name: "Large positive (4294967295)", value: 4294967295n }, + { name: "Large positive (4294967296)", value: 4294967296n }, + { name: "64-bit boundary (2^63 - 1)", value: 9223372036854775807n }, + { name: "64-bit boundary (2^63)", value: 9223372036854775808n }, + { name: "64-bit max (2^64 - 1)", value: 18446744073709551615n }, + { name: "Bignum threshold (2^64)", value: 18446744073709551616n }, + { name: "Large bignum (2^64 + 1)", value: 18446744073709551617n }, + { + name: "Very large bignum (2^128)", + value: 340282366920938463463374607431768211456n + }, + { name: "Small negative (-1)", value: -1n }, + { name: "Small negative (-24)", value: -24n }, + { name: "Small negative (-25)", value: -25n }, + { name: "Medium negative (-256)", value: -256n }, + { name: "Medium negative (-257)", value: -257n }, + { name: "Large negative (-4294967296)", value: -4294967296n }, + { + name: "64-bit negative boundary (-2^63)", + value: -9223372036854775808n + }, + { + name: "64-bit negative max (-2^64 + 1)", + value: -18446744073709551615n + }, + { + name: "Negative bignum threshold (-2^64)", + value: -18446744073709551616n + }, + { + name: "Large negative bignum (-2^64 - 1)", + value: -18446744073709551617n + }, + { + name: "Very large negative bignum (-2^128)", + value: -340282366920938463463374607431768211456n + } + ] + + it.each(boundaryTestCases)("should handle $name correctly", ({ value }) => { + // Create a CBOR value from the integer using the helper + const cborValue = value + + const encoded = Codec.Encode.cborBytes(cborValue) + const decoded = Codec.Decode.cborBytes(encoded) + + expect(decoded).toEqual(cborValue) + }) + }) + + describe("CBOR Major Type Validation", () => { + it("should use correct CBOR major types for different integer ranges", () => { + const testCases = [ + { value: 23n, expectedMajorType: 0, description: "direct encoding" }, + { value: 255n, expectedMajorType: 0, description: "1-byte unsigned" }, + { value: 65535n, expectedMajorType: 0, description: "2-byte unsigned" }, + { + value: 4294967295n, + expectedMajorType: 0, + description: "4-byte unsigned" + }, + { + value: 18446744073709551615n, + expectedMajorType: 0, + description: "8-byte unsigned" + }, + { + value: 18446744073709551616n, + expectedMajorType: 6, + description: "positive bignum tag" + }, + { value: -1n, expectedMajorType: 1, description: "direct negative" }, + { value: -24n, expectedMajorType: 1, description: "1-byte negative" }, + { value: -256n, expectedMajorType: 1, description: "2-byte negative" }, + { + value: -18446744073709551615n, + expectedMajorType: 1, + description: "8-byte negative" + }, + { + value: -18446744073709551617n, + expectedMajorType: 6, + description: "negative bignum tag" + } + ] + + testCases.forEach(({ expectedMajorType, value }) => { + const encoded = Codec.Encode.cborBytes(value) + const firstByte = encoded[0] + const majorType = firstByte >> 5 + + expect(majorType).toBe(expectedMajorType) + + if (expectedMajorType === 6) { + const additionalInfo = firstByte & 0x1f + if (value > 0n) { + expect(additionalInfo).toBe(2) // Tag 2 for positive bignum + } else { + expect(additionalInfo).toBe(3) // Tag 3 for negative bignum + } + } + }) + }) + }) + + describe("CBOR Length Encoding Edge Cases", () => { + describe("Array Length Encoding", () => { + it("should handle arrays with exactly 24 elements (1-byte length threshold)", () => { + const array24 = Array.from({ length: 24 }, (_, i) => BigInt(i)) + const encoded = Codec.Encode.cborBytes(array24) + const decoded = Codec.Decode.cborBytes(encoded) + expect(decoded).toEqual(array24) + expect(decoded).toHaveLength(24) + }) + + it("should handle arrays with exactly 256 elements (2-byte length threshold)", () => { + const array256 = Array.from({ length: 256 }, (_, i) => BigInt(i)) + const encoded = Codec.Encode.cborBytes(array256) + const decoded = Codec.Decode.cborBytes(encoded) + expect(decoded).toEqual(array256) + expect(decoded).toHaveLength(256) + }) + + it("should handle arrays with exactly 65536 elements (4-byte length threshold)", () => { + const array65536 = Array.from({ length: 65536 }, (_, i) => BigInt(i % 1000)) + const encoded = Codec.Encode.cborBytes(array65536) + const decoded = Codec.Decode.cborBytes(encoded) as Array + expect(decoded).toEqual(array65536) + expect(decoded).toHaveLength(65536) + }) + + it("should handle arrays with length just over 4GB threshold", () => { + // Test for 8-byte length encoding - using a smaller test due to memory constraints + // This verifies the 8-byte length support is in place + // Create a smaller version to actually test without memory issues + const testArray = Array.from({ length: 100 }, (_, i) => BigInt(i)) + + expect(() => { + Codec.Encode.cborBytes(testArray) + }).not.toThrow() + }) + }) + + describe("Map Length Encoding", () => { + it("should handle maps with exactly 24 entries (1-byte length threshold)", () => { + const map24 = new Map(Array.from({ length: 24 }, (_, i) => [BigInt(i), `${i.toString(16).padStart(2, "0")}`])) + const encoded = Codec.Encode.cborBytes(map24) + const decoded = Codec.Decode.cborBytes(encoded) as Map + expect(decoded).toEqual(map24) + expect(decoded.size).toBe(24) + }) + + it("should handle maps with exactly 256 entries (2-byte length threshold)", () => { + const map256 = new Map(Array.from({ length: 256 }, (_, i) => [BigInt(i), `${i.toString(16).padStart(2, "0")}`])) + const encoded = Codec.Encode.cborBytes(map256) + const decoded = Codec.Decode.cborBytes(encoded) as Map + expect(decoded).toEqual(map256) + expect(decoded.size).toBe(256) + }) + + it("should handle maps with exactly 65536 entries (4-byte length threshold)", () => { + const map65536 = new Map( + Array.from({ length: 65536 }, (_, i) => [BigInt(i), `${(i % 256).toString(16).padStart(2, "0")}`]) + ) + const encoded = Codec.Encode.cborBytes(map65536) + const decoded = Codec.Decode.cborBytes(encoded) as Map + expect(decoded).toEqual(map65536) + expect(decoded.size).toBe(65536) + }, 30000) // 30 second timeout for large map test + }) + }) + + describe("CBOR Bounds Check Fixes", () => { + it("should properly handle 64-bit integer bounds", () => { + const maxUint64 = 18446744073709551615n // 2^64 - 1 + const encoded = Codec.Encode.cborBytes(maxUint64) + const decoded = Codec.Decode.cborBytes(encoded) + expect(decoded).toBe(maxUint64) + }) + + it("should handle various CBOR integer encoding sizes", () => { + const testCases = [ + { name: "direct encoding (0-23)", value: 23n }, + { name: "1-byte encoding (24-255)", value: 255n }, + { name: "2-byte encoding (256-65535)", value: 65535n }, + { name: "4-byte encoding (65536-4294967295)", value: 4294967295n }, + { name: "8-byte encoding (4294967296+)", value: 4294967296n } + ] + + testCases.forEach(({ value }) => { + const encoded = Codec.Encode.cborBytes(value) + const decoded = Codec.Decode.cborBytes(encoded) + expect(decoded).toBe(value) + }) + }) + }) + + describe("Real-world CBOR Edge Cases", () => { + it("should handle CBOR boundary values correctly", () => { + const boundaryTestCases = [ + { name: "exactly 23 (last direct encoding)", value: 23n }, + { name: "exactly 24 (first 1-byte encoding)", value: 24n }, + { name: "exactly 255 (last 1-byte encoding)", value: 255n }, + { name: "exactly 256 (first 2-byte encoding)", value: 256n }, + { name: "exactly 65535 (last 2-byte encoding)", value: 65535n }, + { name: "exactly 65536 (first 4-byte encoding)", value: 65536n }, + { + name: "exactly 4294967295 (last 4-byte encoding)", + value: 4294967295n + }, + { + name: "exactly 4294967296 (first 8-byte encoding)", + value: 4294967296n + } + ] + + boundaryTestCases.forEach(({ value }) => { + const encoded = Codec.Encode.cborBytes(value) + const decoded = Codec.Decode.cborBytes(encoded) + expect(decoded).toBe(value) + }) + }) + + it("should handle empty collections with different encoding options", () => { + const emptyArray: Array = [] + const emptyMap = new Map() + + const encodedArray = Codec.Encode.cborBytes(emptyArray) + const encodedMap = Codec.Encode.cborBytes(emptyMap) + + const decodedArray = Codec.Decode.cborBytes(encodedArray) + const decodedMap = Codec.Decode.cborBytes(encodedMap) + + expect(decodedArray).toEqual(emptyArray) + expect(decodedMap).toEqual(emptyMap) + }) + + it("should maintain precision for large floating point numbers", () => { + const testNumbers = [ + Number.MAX_SAFE_INTEGER, + Number.MIN_SAFE_INTEGER, + Math.PI, + 1.7976931348623157e308 // near Number.MAX_VALUE + ] + + testNumbers.forEach((num) => { + if (Number.isInteger(num) && num >= Number.MIN_SAFE_INTEGER && num <= Number.MAX_SAFE_INTEGER) { + const bigIntValue = BigInt(num) + const encoded = Codec.Encode.cborBytes(bigIntValue) + const decoded = Codec.Decode.cborBytes(encoded) + expect(decoded).toBe(bigIntValue) + } + }) + }) + }) + + describe("CBOR Deterministic Encoding", () => { + it("should produce deterministic CBOR encoding", () => { + const testData = [42n, "deadbeef", [1n, 2n], new Map([[1n, "cafe"]]), new Uint8Array([0x42, 0xca, 0xfe])] + + testData.forEach((data) => { + const encoded1 = Codec.Encode.cborHex(data) + const encoded2 = Codec.Encode.cborHex(data) + expect(encoded1).toBe(encoded2) + }) + }) + + it("should handle empty collections correctly", () => { + const emptyList: Array = [] + const emptyMap = new Map() + const emptyBytes = new Uint8Array([]) + + ;[emptyList, emptyMap, emptyBytes].forEach((data) => { + const encoded = Codec.Encode.cborBytes(data) + const decoded = Codec.Decode.cborBytes(encoded) + expect(decoded).toEqual(data) + }) + }) + }) + + describe("CBOR Format Validation", () => { + it("should handle invalid CBOR input gracefully", () => { + expect(() => { + Codec.Decode.cborHex("not-valid-cbor-hex") + }).toThrow() + + expect(() => { + Codec.Decode.cborHex("") + }).toThrow() + + expect(() => { + Codec.Decode.cborHex("d8") + }).toThrow() + + expect(() => { + Codec.Decode.cborHex("01afbb") + }).toThrow() + + expect(() => { + Codec.Decode.cborHex("9f010203ff") + }).not.toThrow() + + expect(() => { + Codec.Decode.cborHex("9f010203") + }).toThrow() + + expect(() => { + Codec.Decode.cborHex("bf6161016162") // map: { "a": 1, "b": ... } missing value and break + }).toThrow() + + expect(() => { + Codec.Decode.cborHex("bf6161") // map: { "a": ??? } missing value and break + }).toThrow() + + expect(() => { + Codec.Decode.cborHex("5f420102") // missing break + }).toThrow() + + expect(() => { + Codec.Decode.cborHex("7f65737472656164") // missing break + }).toThrow() + + expect(() => { + Codec.Decode.cborHex("9f9f0102ff") // outer array, inner array missing break + }).toThrow() + + expect(() => { + Codec.Decode.cborHex("bf6161ff") // map: { "a": ??? } missing value + }).toThrow() + }) + }) + + describe("RFC 8949 CBOR Test Vectors", () => { + // Test vectors from https://github.com/cbor/test-vectors/blob/master/appendix_a.json + // These are the official CBOR specification test cases from RFC 8949 Appendix A + + describe("Integer Test Vectors", () => { + const integerTestCases = [ + { hex: "00", decoded: 0n, description: "Zero" }, + { hex: "01", decoded: 1n, description: "Positive integer 1" }, + { hex: "0a", decoded: 10n, description: "Positive integer 10" }, + { + hex: "17", + decoded: 23n, + description: "Positive integer 23 (last direct encoding)" + }, + { + hex: "1818", + decoded: 24n, + description: "Positive integer 24 (first 1-byte encoding)" + }, + { hex: "1819", decoded: 25n, description: "Positive integer 25" }, + { hex: "1864", decoded: 100n, description: "Positive integer 100" }, + { hex: "1903e8", decoded: 1000n, description: "Positive integer 1000" }, + { + hex: "1a000f4240", + decoded: 1000000n, + description: "Positive integer 1000000" + }, + { + hex: "1b000000e8d4a51000", + decoded: 1000000000000n, + description: "Positive integer 1000000000000" + }, + { + hex: "1bffffffffffffffff", + decoded: 18446744073709551615n, + description: "Maximum uint64" + }, + { + hex: "c249010000000000000000", + decoded: 18446744073709551616n, + description: "Positive bignum (2^64)" + }, + { hex: "20", decoded: -1n, description: "Negative integer -1" }, + { hex: "29", decoded: -10n, description: "Negative integer -10" }, + { hex: "3863", decoded: -100n, description: "Negative integer -100" }, + { + hex: "3903e7", + decoded: -1000n, + description: "Negative integer -1000" + }, + { + hex: "3bffffffffffffffff", + decoded: -18446744073709551616n, + description: "Minimum int64" + }, + { + hex: "c349010000000000000000", + decoded: -18446744073709551617n, + description: "Negative bignum -(2^64 + 1)" + } + ] + + it.each(integerTestCases)("should handle $description correctly", ({ decoded, hex }) => { + const decodedValue = Codec.Decode.cborHex(hex) + expect(decodedValue).toBe(decoded) + + const reencoded = Codec.Encode.cborHex(decoded) + const redecoded = Codec.Decode.cborHex(reencoded) + expect(redecoded).toBe(decoded) + }) + }) + + describe("Boolean and Null Test Vectors", () => { + const booleanNullTestCases = [ + { hex: "f4", decoded: false, description: "Boolean false" }, + { hex: "f5", decoded: true, description: "Boolean true" }, + { hex: "f6", decoded: null, description: "Null value" } + ] + + it.each(booleanNullTestCases)("should handle $description correctly", ({ decoded, hex }) => { + const decodedValue = Codec.Decode.cborHex(hex) + expect(decodedValue).toBe(decoded) + + const reencoded = Codec.Encode.cborHex(decoded) + const redecoded = Codec.Decode.cborHex(reencoded) + expect(redecoded).toBe(decoded) + }) + }) + + describe("String Test Vectors", () => { + const stringTestCases = [ + { hex: "60", decoded: "", description: "Empty string" }, + { hex: "6161", decoded: "a", description: "Single character string" }, + { + hex: "6449455446", + decoded: "IETF", + description: "ASCII string 'IETF'" + }, + { + hex: "62225c", + decoded: '"\\', + description: "String with quotes and backslash" + }, + { + hex: "62c3bc", + decoded: "รผ", + description: "UTF-8 string with umlaut" + }, + { + hex: "63e6b0b4", + decoded: "ๆฐด", + description: "UTF-8 Chinese character" + }, + { + hex: "64f0908591", + decoded: "๐…‘", + description: "UTF-8 4-byte character" + } + ] + + it.each(stringTestCases)("should handle $description correctly", ({ decoded, hex }) => { + const decodedValue = Codec.Decode.cborHex(hex) + expect(decodedValue).toBe(decoded) + + const reencoded = Codec.Encode.cborHex(decoded) + const redecoded = Codec.Decode.cborHex(reencoded) + expect(redecoded).toBe(decoded) + }) + }) + + describe("Array Test Vectors", () => { + const arrayTestCases = [ + { hex: "80", decoded: [], description: "Empty array" }, + { + hex: "83010203", + decoded: [1n, 2n, 3n], + description: "Array with three integers" + }, + { + hex: "8301820203820405", + decoded: [1n, [2n, 3n], [4n, 5n]], + description: "Nested array structure" + }, + { + hex: "98190102030405060708090a0b0c0d0e0f101112131415161718181819", + decoded: [ + 1n, + 2n, + 3n, + 4n, + 5n, + 6n, + 7n, + 8n, + 9n, + 10n, + 11n, + 12n, + 13n, + 14n, + 15n, + 16n, + 17n, + 18n, + 19n, + 20n, + 21n, + 22n, + 23n, + 24n, + 25n + ], + description: "Array with 25 integers" + } + ] + + it.each(arrayTestCases)("should handle $description correctly", ({ decoded, hex }) => { + const decodedValue = Codec.Decode.cborHex(hex) + expect(decodedValue).toEqual(decoded) + + const reencoded = Codec.Encode.cborHex(decoded) + const redecoded = Codec.Decode.cborHex(reencoded) + expect(redecoded).toEqual(decoded) + }) + }) + + describe("Object Test Vectors", () => { + const objectTestCases = [ + { hex: "a0", decoded: new Map(), description: "Empty map" }, + { + hex: "a26161016162820203", + decoded: new Map([ + ["a", 1n], + ["b", [2n, 3n]] + ]), + description: "Map with string keys and mixed values" + }, + { + hex: "826161a161626163", + decoded: ["a", new Map([["b", "c"]])], + description: "Array containing a map" + }, + { + hex: "a56161614161626142616361436164614461656145", + decoded: new Map([ + ["a", "A"], + ["b", "B"], + ["c", "C"], + ["d", "D"], + ["e", "E"] + ]), + description: "Map with five string key-value pairs" + } + ] + + it.each(objectTestCases)("should handle $description correctly", ({ decoded, hex }) => { + const decodedValue = Codec.Decode.cborHex(hex) + expect(decodedValue).toEqual(decoded) + + const reencoded = Codec.Encode.cborHex(decoded) + const redecoded = Codec.Decode.cborHex(reencoded) + expect(redecoded).toEqual(decoded) + }) + }) + + describe("Byte String Test Vectors", () => { + const byteStringTestCases = [ + { + hex: "40", + decoded: new Uint8Array([]), + description: "Empty byte string" + }, + { + hex: "4401020304", + decoded: new Uint8Array([0x01, 0x02, 0x03, 0x04]), + description: "Byte string with 4 bytes" + } + ] + + it.each(byteStringTestCases)("should handle $description correctly", ({ decoded, hex }) => { + const decodedValue = Codec.Decode.cborHex(hex) + expect(decodedValue).toEqual(decoded) + + const reencoded = Codec.Encode.cborHex(decoded) + const redecoded = Codec.Decode.cborHex(reencoded) + expect(redecoded).toEqual(decoded) + }) + }) + + describe("Floating Point Test Vectors", () => { + const floatTestCases = [ + { + hex: "f90000", + decoded: 0.0, + description: "Half-precision float 0.0" + }, + { + hex: "f98000", + decoded: -0.0, + description: "Half-precision float -0.0" + }, + { + hex: "f93c00", + decoded: 1.0, + description: "Half-precision float 1.0" + }, + { + hex: "fb3ff199999999999a", + decoded: 1.1, + description: "Double-precision float 1.1" + }, + { + hex: "f93e00", + decoded: 1.5, + description: "Half-precision float 1.5" + }, + { + hex: "f97bff", + decoded: 65504.0, + description: "Half-precision float 65504.0" + }, + { + hex: "fa47c35000", + decoded: 100000.0, + description: "Single-precision float 100000.0" + }, + { + hex: "fa7f7fffff", + decoded: 3.4028234663852886e38, + description: "Single-precision max finite" + }, + { + hex: "fb7e37e43c8800759c", + decoded: 1.0e300, + description: "Double-precision 1.0e+300" + }, + { + hex: "f90001", + decoded: 5.960464477539063e-8, + description: "Half-precision smallest positive" + }, + { + hex: "f90400", + decoded: 6.103515625e-5, + description: "Half-precision 6.103515625e-05" + }, + { + hex: "f9c400", + decoded: -4.0, + description: "Half-precision float -4.0" + }, + { + hex: "fbc010666666666666", + decoded: -4.1, + description: "Double-precision float -4.1" + } + ] + + it.each(floatTestCases)("should handle $description correctly", ({ decoded, hex }) => { + const decodedValue = Codec.Decode.cborHex(hex) + if (Object.is(decoded, -0.0)) { + expect(Object.is(decodedValue, -0.0)).toBe(true) + } else if (Object.is(decoded, 0.0)) { + expect(Object.is(decodedValue, 0.0) || Object.is(decodedValue, -0.0)).toBe(true) + } else { + expect(decodedValue).toBeCloseTo(decoded, 10) + } + + const reencoded = Codec.Encode.cborHex(decoded) + const redecoded = Codec.Decode.cborHex(reencoded) + expect(typeof redecoded).toBe("number") + if (Object.is(decoded, -0.0)) { + expect(Object.is(redecoded, -0.0)).toBe(true) + } else if (Object.is(decoded, 0.0)) { + expect(Object.is(redecoded, 0.0) || Object.is(redecoded, -0.0)).toBe(true) + } else { + expect(redecoded).toBeCloseTo(decoded, 10) + } + }) + }) + + describe("Special Float Values Test Vectors", () => { + const specialFloatTestCases = [ + { hex: "f97c00", description: "Half-precision Infinity" }, + { hex: "f97e00", description: "Half-precision NaN" }, + { hex: "f9fc00", description: "Half-precision -Infinity" }, + { hex: "fa7f800000", description: "Single-precision Infinity" }, + { hex: "fa7fc00000", description: "Single-precision NaN" }, + { hex: "faff800000", description: "Single-precision -Infinity" }, + { hex: "fb7ff0000000000000", description: "Double-precision Infinity" }, + { hex: "fb7ff8000000000000", description: "Double-precision NaN" }, + { + hex: "fbfff0000000000000", + description: "Double-precision -Infinity" + } + ] + + it.each(specialFloatTestCases)("should handle $description correctly", ({ description, hex }) => { + const decodedValue = Codec.Decode.cborHex(hex) + + if (description.includes("Infinity") && !description.includes("-Infinity")) { + expect(decodedValue).toBe(Infinity) + } else if (description.includes("-Infinity")) { + expect(decodedValue).toBe(-Infinity) + } else if (description.includes("NaN")) { + expect(Number.isNaN(decodedValue)).toBe(true) + } + }) + }) + + describe("Tagged Value Test Vectors", () => { + const taggedTestCases = [ + { + hex: "c074323031332d30332d32315432303a30343a30305a", + description: "Tag 0 (date/time string)" + }, + { hex: "c11a514b67b0", description: "Tag 1 (epoch timestamp)" }, + { + hex: "c1fb41d452d9ec200000", + description: "Tag 1 (epoch timestamp with fractional seconds)" + }, + { + hex: "d74401020304", + description: "Tag 23 (expected base16 encoding)" + }, + { + hex: "d818456449455446", + description: "Tag 24 (encoded CBOR data item)" + }, + { + hex: "d82076687474703a2f2f7777772e6578616d706c652e636f6d", + description: "Tag 32 (URI)" + } + ] + + it.each(taggedTestCases)("should handle $description correctly", ({ hex }) => { + expect(() => { + const decodedValue = Codec.Decode.cborHex(hex) + expect(decodedValue).toBeDefined() + }).not.toThrow() + }) + }) + + describe("Indefinite Length Test Vectors", () => { + const indefiniteTestCases = [ + { hex: "5f42010243030405ff", description: "Indefinite byte string" }, + { + hex: "7f657374726561646d696e67ff", + decoded: "streaming", + description: "Indefinite text string" + }, + { hex: "9fff", decoded: [], description: "Indefinite empty array" }, + { + hex: "9f018202039f0405ffff", + decoded: [1n, [2n, 3n], [4n, 5n]], + description: "Indefinite nested arrays" + }, + { + hex: "9f01820203820405ff", + decoded: [1n, [2n, 3n], [4n, 5n]], + description: "Mixed definite/indefinite arrays" + }, + { + hex: "83018202039f0405ff", + decoded: [1n, [2n, 3n], [4n, 5n]], + description: "Definite array with indefinite subarray" + }, + { + hex: "83019f0203ff820405", + decoded: [1n, [2n, 3n], [4n, 5n]], + description: "Mixed array structures" + }, + { + hex: "9f0102030405060708090a0b0c0d0e0f101112131415161718181819ff", + decoded: [ + 1n, + 2n, + 3n, + 4n, + 5n, + 6n, + 7n, + 8n, + 9n, + 10n, + 11n, + 12n, + 13n, + 14n, + 15n, + 16n, + 17n, + 18n, + 19n, + 20n, + 21n, + 22n, + 23n, + 24n, + 25n + ], + description: "Indefinite array with 25 integers" + }, + { + hex: "bf61610161629f0203ffff", + decoded: new Map([ + ["a", 1n], + ["b", [2n, 3n]] + ]), + description: "Indefinite map with mixed values" + }, + { + hex: "826161bf61626163ff", + decoded: ["a", new Map([["b", "c"]])], + description: "Array with indefinite map" + }, + { + hex: "bf6346756ef563416d7421ff", + decoded: new Map([ + ["Fun", true], + ["Amt", -2n] + ]), + description: "Indefinite map with boolean and negative integer" + } + ] + + it.each(indefiniteTestCases)("should handle $description correctly", ({ decoded, hex }) => { + const decodedValue = Codec.Decode.cborHex(hex) + + if (decoded !== undefined) { + expect(decodedValue).toEqual(decoded) + } + + if (decoded !== undefined) { + const reencoded = Codec.Encode.cborHex(decoded) + const redecoded = Codec.Decode.cborHex(reencoded) + expect(redecoded).toEqual(decoded) + } + }) + }) + + describe("Simple Value Test Vectors", () => { + const simpleValueTestCases = [ + { hex: "f0", description: "Simple value 16" }, + { hex: "f818", description: "Simple value 24" }, + { hex: "f8ff", description: "Simple value 255" }, + { hex: "f7", description: "Undefined value" } + ] + + it.each(simpleValueTestCases)("should handle $description correctly", ({ description, hex }) => { + expect(() => { + const decodedValue = Codec.Decode.cborHex(hex) + if (description === "Undefined value") { + expect(decodedValue).toBeUndefined() + } else { + expect(decodedValue).toBeDefined() + } + }).not.toThrow() + }) + }) + }) +}) diff --git a/packages/evolution/test/Data.golden.test.ts b/packages/evolution/test/Data.golden.test.ts new file mode 100644 index 00000000..d1550931 --- /dev/null +++ b/packages/evolution/test/Data.golden.test.ts @@ -0,0 +1,727 @@ +/** + * Golden Tests for Data Module + * + * This module provides comprehensive golden testing for the Data module's CBOR + * encoding and decoding functionality. Golden tests validate that the current + * implementation maintains compatibility with previously generated test data, + * ensuring that CBOR serialization behavior remains consistent across versions. + * + * The tests cover all major PlutusData types: + * - Integer: BigInt values with various ranges + * - ByteArray: Hex-encoded byte arrays of different lengths + * - List: Arrays containing nested PlutusData structures + * - Map: Key-value pairs with PlutusData keys and values + * - Constr: Constructor data with index and field arrays + * - Data: Complex nested structures combining all types + * + * Each type is tested for: + * - CBOR hex encoding consistency + * - CBOR bytes encoding consistency + * - CBOR hex decoding consistency + * - CBOR bytes decoding consistency + * - Round-trip encoding/decoding consistency + * + */ + +import { describe, expect, it } from "@effect/vitest" +import * as fs from "fs" +import * as path from "path" +import { fileURLToPath } from "url" + +import * as Data from "../src/Data.js" + +// ES module equivalent of __dirname +const __filename = fileURLToPath(import.meta.url) +const __dirname = path.dirname(__filename) + +/** + * Test configuration defining the number of samples to test for each category + * + */ +const TEST_CONFIG = { + integer: { + encoding: 4000, + decoding: 4000, + roundTrip: 1000 + }, + byteArray: { + encoding: 4000, + decoding: 4000, + roundTrip: 1000 + }, + list: { + encoding: 4000, + decoding: 4000, + roundTrip: 250 + }, + map: { + encoding: 4000, + decoding: 4000, + roundTrip: 250 + }, + constr: { + encoding: 4000, + decoding: 4000, + roundTrip: 250 + }, + data: { + encoding: 4000, + decoding: 4000, + roundTrip: 100 + } +} as const + +/** + * Sample data types for different Plutus data structures + * + */ +type IntegerSample = { + readonly integer: bigint +} + +type ByteArraySample = { + readonly bytearray: string +} + +type ListSample = { + readonly list: ReadonlyArray +} + +type MapSample = { + readonly entries: ReadonlyArray<{ + readonly key: unknown + readonly value: unknown + }> +} + +type ConstrSample = { + readonly index: number + readonly fields: ReadonlyArray +} + +/** + * Represents a single test entry in golden files + * + */ +interface GoldenEntry { + readonly index: number + readonly sample: IntegerSample | ByteArraySample | ListSample | MapSample | ConstrSample | unknown + readonly cborHex: string + readonly cborBytes: ReadonlyArray + readonly roundTripSuccess: boolean + readonly metadata: { + readonly type: string + readonly seed: number + } +} + +/** + * Reviver function for parsing JSON with BigInt support + * + */ +const bigintReviver = (_key: string, value: unknown): unknown => { + if ( + typeof value === "object" && + value !== null && + "__type" in value && + value.__type === "bigint" && + "value" in value && + typeof value.value === "string" + ) { + return BigInt(value.value) + } + return value +} + +/** + * Type guards for different sample types + * + */ +const isIntegerSample = (sample: unknown): sample is IntegerSample => { + return typeof sample === "object" && sample !== null && "integer" in sample +} + +const isByteArraySample = (sample: unknown): sample is ByteArraySample => { + return typeof sample === "object" && sample !== null && "bytearray" in sample +} + +const isListSample = (sample: unknown): sample is ListSample => { + return typeof sample === "object" && sample !== null && "list" in sample && Array.isArray((sample as any).list) +} + +const isMapSample = (sample: unknown): sample is MapSample => { + return typeof sample === "object" && sample !== null && "entries" in sample && Array.isArray((sample as any).entries) +} + +const isConstrSample = (sample: unknown): sample is ConstrSample => { + return typeof sample === "object" && sample !== null && "index" in sample && "fields" in sample +} + +/** + * Load golden files from the test/golden directory + * + */ +const loadGoldenFile = (filename: string): Array => { + const filePath = path.join(__dirname, "golden", filename) + const content = fs.readFileSync(filePath, "utf8") + return JSON.parse(content, bigintReviver) +} + +/** + * Cache for loaded golden files to avoid repeated I/O operations + * + */ +const goldenCache = { + integer: null as Array | null, + byteArray: null as Array | null, + list: null as Array | null, + map: null as Array | null, + constr: null as Array | null, + data: null as Array | null +} + +/** + * Get golden entries with caching for performance + * + */ +const getGoldenEntries = (type: keyof typeof goldenCache): Array => { + if (!goldenCache[type]) { + goldenCache[type] = loadGoldenFile(`${type}.golden.json`) + } + return goldenCache[type]! +} + +/** + * Get test cases for a specific type and test category with sample limiting + * + */ +const getTestCases = ( + type: keyof typeof TEST_CONFIG, + category: keyof (typeof TEST_CONFIG)[typeof type] +): Array => { + const entries = getGoldenEntries(type) + const count = TEST_CONFIG[type][category] + return entries.slice(0, count) +} + +/** + * Initialize the codec for CBOR encoding/decoding operations + */ +const Codec = Data.Codec() + +/** + * Golden Tests for Data module + */ +describe("Data Golden Tests", () => { + describe("Integer Golden Tests", () => { + it("should encode integers to CBOR hex consistently", () => { + const testCases = getTestCases("integer", "encoding") + + testCases.forEach((entry) => { + if (!isIntegerSample(entry.sample)) { + throw new Error(`Invalid integer sample at index ${entry.index}`) + } + const plutusData = Data.int(entry.sample.integer) + const encoded = Codec.Encode.cborHex(plutusData) + expect(encoded, `Failed at sample index ${entry.index}`).toBe(entry.cborHex) + }) + }) + + it("should encode integers to CBOR bytes consistently", () => { + const testCases = getTestCases("integer", "encoding") + + testCases.forEach((entry) => { + if (!isIntegerSample(entry.sample)) { + throw new Error(`Invalid integer sample at index ${entry.index}`) + } + const plutusData = Data.int(entry.sample.integer) + const encoded = Codec.Encode.cborBytes(plutusData) + expect(Array.from(encoded), `Failed at sample index ${entry.index}`).toEqual(entry.cborBytes) + }) + }) + + it("should decode CBOR hex to integers consistently", () => { + const testCases = getTestCases("integer", "decoding") + + testCases.forEach((entry) => { + const decoded = Codec.Decode.cborHex(entry.cborHex) + expect(normalizeDecodedData(decoded), `Failed at sample index ${entry.index}`).toEqual(entry.sample) + }) + }) + + it("should decode CBOR bytes to integers consistently", () => { + const testCases = getTestCases("integer", "decoding") + + testCases.forEach((entry) => { + const decoded = Codec.Decode.cborBytes(new Uint8Array(entry.cborBytes)) + expect(normalizeDecodedData(decoded), `Failed at sample index ${entry.index}`).toEqual(entry.sample) + }) + }) + + it("should maintain round-trip consistency", () => { + const testCases = getTestCases("integer", "roundTrip") + + testCases.forEach((entry) => { + if (!isIntegerSample(entry.sample)) { + throw new Error(`Invalid integer sample at index ${entry.index}`) + } + const plutusData = Data.int(entry.sample.integer) + const encoded = Codec.Encode.cborHex(plutusData) + const decoded = Codec.Decode.cborHex(encoded) + + expect(normalizeDecodedData(decoded), `Failed at sample index ${entry.index}`).toEqual(entry.sample) + }) + }) + }) + + describe("ByteArray Golden Tests", () => { + it("should encode byte arrays to CBOR hex consistently", () => { + const testCases = getTestCases("byteArray", "encoding") + + testCases.forEach((entry) => { + if (!isByteArraySample(entry.sample)) { + throw new Error(`Invalid byte array sample at index ${entry.index}`) + } + const plutusData = Data.bytearray(entry.sample.bytearray) + const encoded = Codec.Encode.cborHex(plutusData) + expect(encoded, `Failed at sample index ${entry.index}`).toBe(entry.cborHex) + }) + }) + + it("should encode byte arrays to CBOR bytes consistently", () => { + const testCases = getTestCases("byteArray", "encoding") + + testCases.forEach((entry) => { + if (!isByteArraySample(entry.sample)) { + throw new Error(`Invalid byte array sample at index ${entry.index}`) + } + const plutusData = Data.bytearray(entry.sample.bytearray) + const encoded = Codec.Encode.cborBytes(plutusData) + expect(Array.from(encoded), `Failed at sample index ${entry.index}`).toEqual(entry.cborBytes) + }) + }) + + it("should decode CBOR hex to byte arrays consistently", () => { + const testCases = getTestCases("byteArray", "decoding") + + testCases.forEach((entry) => { + const decoded = Codec.Decode.cborHex(entry.cborHex) + expect(normalizeDecodedData(decoded), `Failed at sample index ${entry.index}`).toEqual(entry.sample) + }) + }) + + it("should decode CBOR bytes to byte arrays consistently", () => { + const testCases = getTestCases("byteArray", "decoding") + + testCases.forEach((entry) => { + const decoded = Codec.Decode.cborBytes(new Uint8Array(entry.cborBytes)) + expect(normalizeDecodedData(decoded), `Failed at sample index ${entry.index}`).toEqual(entry.sample) + }) + }) + + it("should maintain round-trip consistency", () => { + const testCases = getTestCases("byteArray", "roundTrip") + + testCases.forEach((entry) => { + if (!isByteArraySample(entry.sample)) { + throw new Error(`Invalid byte array sample at index ${entry.index}`) + } + const plutusData = Data.bytearray(entry.sample.bytearray) + const encoded = Codec.Encode.cborHex(plutusData) + const decoded = Codec.Decode.cborHex(encoded) + + expect(normalizeDecodedData(decoded), `Failed at sample index ${entry.index}`).toEqual(entry.sample) + }) + }) + }) + + describe("List Golden Tests", () => { + it("should encode lists to CBOR hex consistently", () => { + const testCases = getTestCases("list", "encoding") + + testCases.forEach((entry) => { + if (!isListSample(entry.sample)) { + throw new Error(`Invalid list sample at index ${entry.index}`) + } + const plutusDataList = entry.sample.list.map(reconstructPlutusData) + const plutusData = Data.list(plutusDataList) + const encoded = Codec.Encode.cborHex(plutusData) + expect(encoded, `Failed at sample index ${entry.index}`).toBe(entry.cborHex) + }) + }, 30000) // 30 second timeout for large test cases + + it("should encode lists to CBOR bytes consistently", () => { + const testCases = getTestCases("list", "encoding") + + testCases.forEach((entry) => { + if (!isListSample(entry.sample)) { + throw new Error(`Invalid list sample at index ${entry.index}`) + } + const plutusDataList = entry.sample.list.map(reconstructPlutusData) + const plutusData = Data.list(plutusDataList) + const encoded = Codec.Encode.cborBytes(plutusData) + expect(Array.from(encoded), `Failed at sample index ${entry.index}`).toEqual(entry.cborBytes) + }) + }) + + it("should decode CBOR hex to lists consistently", () => { + const testCases = getTestCases("list", "decoding") + + testCases.forEach((entry) => { + const decoded = Codec.Decode.cborHex(entry.cborHex) + expect(normalizeDecodedData(decoded), `Failed at sample index ${entry.index}`).toEqual(entry.sample) + }) + }) + + it("should decode CBOR bytes to lists consistently", () => { + const testCases = getTestCases("list", "decoding") + + testCases.forEach((entry) => { + const decoded = Codec.Decode.cborBytes(new Uint8Array(entry.cborBytes)) + expect(normalizeDecodedData(decoded), `Failed at sample index ${entry.index}`).toEqual(entry.sample) + }) + }) + + it("should maintain round-trip consistency", () => { + const testCases = getTestCases("list", "roundTrip") + + testCases.forEach((entry) => { + if (!isListSample(entry.sample)) { + throw new Error(`Invalid list sample at index ${entry.index}`) + } + const plutusDataList = entry.sample.list.map(reconstructPlutusData) + const plutusData = Data.list(plutusDataList) + const encoded = Codec.Encode.cborHex(plutusData) + const decoded = Codec.Decode.cborHex(encoded) + + expect(normalizeDecodedData(decoded), `Failed at sample index ${entry.index}`).toEqual(entry.sample) + }) + }) + }) + + describe("Map Golden Tests", () => { + it("should encode maps to CBOR hex consistently", () => { + const testCases = getTestCases("map", "encoding") + + testCases.forEach((entry) => { + if (!isMapSample(entry.sample)) { + throw new Error(`Invalid map sample at index ${entry.index}`) + } + const plutusDataEntries = entry.sample.entries.map((entryObj: { key: unknown; value: unknown }) => ({ + key: reconstructPlutusData(entryObj.key), + value: reconstructPlutusData(entryObj.value) + })) + const plutusData = Data.map(plutusDataEntries) + const encoded = Codec.Encode.cborHex(plutusData) + expect(encoded, `Failed at sample index ${entry.index}`).toBe(entry.cborHex) + }) + }) + + it("should encode maps to CBOR bytes consistently", () => { + const testCases = getTestCases("map", "encoding") + + testCases.forEach((entry) => { + if (!isMapSample(entry.sample)) { + throw new Error(`Invalid map sample at index ${entry.index}`) + } + const plutusDataEntries = entry.sample.entries.map((entryObj: { key: unknown; value: unknown }) => ({ + key: reconstructPlutusData(entryObj.key), + value: reconstructPlutusData(entryObj.value) + })) + const plutusData = Data.map(plutusDataEntries) + const encoded = Codec.Encode.cborBytes(plutusData) + expect(Array.from(encoded), `Failed at sample index ${entry.index}`).toEqual(entry.cborBytes) + }) + }) + + it("should decode CBOR hex to maps consistently", () => { + const testCases = getTestCases("map", "decoding") + + testCases.forEach((entry) => { + const decoded = Codec.Decode.cborHex(entry.cborHex) + expect(normalizeDecodedData(decoded), `Failed at sample index ${entry.index}`).toEqual(entry.sample) + }) + }) + + it("should decode CBOR bytes to maps consistently", () => { + const testCases = getTestCases("map", "decoding") + + testCases.forEach((entry) => { + const decoded = Codec.Decode.cborBytes(new Uint8Array(entry.cborBytes)) + expect(normalizeDecodedData(decoded), `Failed at sample index ${entry.index}`).toEqual(entry.sample) + }) + }) + + it("should maintain round-trip consistency", () => { + const testCases = getTestCases("map", "roundTrip") + + testCases.forEach((entry) => { + if (!isMapSample(entry.sample)) { + throw new Error(`Invalid map sample at index ${entry.index}`) + } + const plutusDataEntries = entry.sample.entries.map((entryObj: { key: unknown; value: unknown }) => ({ + key: reconstructPlutusData(entryObj.key), + value: reconstructPlutusData(entryObj.value) + })) + const plutusData = Data.map(plutusDataEntries) + const encoded = Codec.Encode.cborHex(plutusData) + const decoded = Codec.Decode.cborHex(encoded) + + expect(normalizeDecodedData(decoded), `Failed at sample index ${entry.index}`).toEqual(entry.sample) + }) + }) + }) + + describe("Constr Golden Tests", () => { + it("should encode constructors to CBOR hex consistently", () => { + const testCases = getTestCases("constr", "encoding") + + testCases.forEach((entry) => { + if (!isConstrSample(entry.sample)) { + throw new Error(`Invalid constructor sample at index ${entry.index}`) + } + const plutusDataFields = entry.sample.fields.map(reconstructPlutusData) + const plutusData = Data.constr(BigInt(entry.sample.index), plutusDataFields) + const encoded = Codec.Encode.cborHex(plutusData) + expect(encoded, `Failed at sample index ${entry.index}`).toBe(entry.cborHex) + }) + }) + + it("should encode constructors to CBOR bytes consistently", () => { + const testCases = getTestCases("constr", "encoding") + + testCases.forEach((entry) => { + if (!isConstrSample(entry.sample)) { + throw new Error(`Invalid constructor sample at index ${entry.index}`) + } + const plutusDataFields = entry.sample.fields.map(reconstructPlutusData) + const plutusData = Data.constr(BigInt(entry.sample.index), plutusDataFields) + const encoded = Codec.Encode.cborBytes(plutusData) + expect(Array.from(encoded), `Failed at sample index ${entry.index}`).toEqual(entry.cborBytes) + }) + }) + + it("should decode CBOR hex to constructors consistently", () => { + const testCases = getTestCases("constr", "decoding") + + testCases.forEach((entry) => { + const decoded = Codec.Decode.cborHex(entry.cborHex) + expect(normalizeDecodedData(decoded), `Failed at sample index ${entry.index}`).toEqual(entry.sample) + }) + }) + + it("should decode CBOR bytes to constructors consistently", () => { + const testCases = getTestCases("constr", "decoding") + + testCases.forEach((entry) => { + const decoded = Codec.Decode.cborBytes(new Uint8Array(entry.cborBytes)) + expect(normalizeDecodedData(decoded), `Failed at sample index ${entry.index}`).toEqual(entry.sample) + }) + }) + + it("should maintain round-trip consistency", () => { + const testCases = getTestCases("constr", "roundTrip") + + testCases.forEach((entry) => { + if (!isConstrSample(entry.sample)) { + throw new Error(`Invalid constructor sample at index ${entry.index}`) + } + const plutusDataFields = entry.sample.fields.map(reconstructPlutusData) + const plutusData = Data.constr(BigInt(entry.sample.index), plutusDataFields) + const encoded = Codec.Encode.cborHex(plutusData) + const decoded = Codec.Decode.cborHex(encoded) + + expect(normalizeDecodedData(decoded), `Failed at sample index ${entry.index}`).toEqual(entry.sample) + }) + }) + }) + + describe("Data Golden Tests", () => { + it("should encode complex data structures to CBOR hex consistently", () => { + const testCases = getTestCases("data", "encoding") + + testCases.forEach((entry) => { + const plutusData = reconstructPlutusData(entry.sample) + const encoded = Codec.Encode.cborHex(plutusData) + expect(encoded, `Failed at sample index ${entry.index}`).toBe(entry.cborHex) + }) + }) + + it("should encode complex data structures to CBOR bytes consistently", () => { + const testCases = getTestCases("data", "encoding") + + testCases.forEach((entry) => { + const plutusData = reconstructPlutusData(entry.sample) + const encoded = Codec.Encode.cborBytes(plutusData) + expect(Array.from(encoded), `Failed at sample index ${entry.index}`).toEqual(entry.cborBytes) + }) + }) + + it("should decode CBOR hex to complex data structures consistently", () => { + const testCases = getTestCases("data", "decoding") + + testCases.forEach((entry) => { + const decoded = Codec.Decode.cborHex(entry.cborHex) + expect(normalizeDecodedData(decoded), `Failed at sample index ${entry.index}`).toEqual(entry.sample) + }) + }) + + it("should decode CBOR bytes to complex data structures consistently", () => { + const testCases = getTestCases("data", "decoding") + + testCases.forEach((entry) => { + const decoded = Codec.Decode.cborBytes(new Uint8Array(entry.cborBytes)) + expect(normalizeDecodedData(decoded), `Failed at sample index ${entry.index}`).toEqual(entry.sample) + }) + }) + + it("should maintain round-trip consistency", () => { + const testCases = getTestCases("data", "roundTrip") + + testCases.forEach((entry) => { + const plutusData = reconstructPlutusData(entry.sample) + const encoded = Codec.Encode.cborHex(plutusData) + const decoded = Codec.Decode.cborHex(encoded) + + expect(normalizeDecodedData(decoded), `Failed at sample index ${entry.index}`).toEqual(entry.sample) + }) + }) + }) +}) + +/** + * Reconstruct PlutusData from JSON representation stored in golden files + */ +const reconstructPlutusData = (sample: unknown): Data.Data => { + const typedSample = sample as { _tag: string; [key: string]: unknown } + + switch (typedSample._tag) { + case "Integer": { + // Handle BigInt structure: { __type: "bigint", value: "123..." } + const integerValue = + typeof typedSample.integer === "bigint" + ? typedSample.integer + : BigInt((typedSample.integer as { value: string }).value) + return Data.int(integerValue) + } + case "ByteArray": // Golden files use "ByteArray" + return Data.bytearray(typedSample.bytearray as string) + case "List": + return Data.list((typedSample.list as Array).map(reconstructPlutusData)) + case "Map": + return Data.map( + (typedSample.entries as Array<{ key: unknown; value: unknown }>).map((entry) => ({ + key: reconstructPlutusData(entry.key), + value: reconstructPlutusData(entry.value) + })) + ) + case "Constr": + return Data.constr( + BigInt(typedSample.index as number), + (typedSample.fields as Array).map(reconstructPlutusData) + ) + default: + throw new Error(`Unknown PlutusData type: ${typedSample._tag}`) + } +} + +/** + * Normalize decoded PlutusData to match golden file format for comparison + */ +const normalizeDecodedData = (data: unknown): unknown => { + // Handle primitives + if (typeof data === "bigint") { + return { + _tag: "Integer", + integer: data + } + } + + if (typeof data === "string") { + return { + _tag: "ByteArray", + bytearray: data + } + } + + if (data === null || data === undefined) { + return data + } + + // Handle arrays (Lists in new Data.ts) + if (Array.isArray(data)) { + return { + _tag: "List", + list: data.map(normalizeDecodedData) + } + } + + // Handle Maps + if (data instanceof Map) { + const entries: Array<{ key: unknown; value: unknown }> = [] + for (const [key, value] of data.entries()) { + entries.push({ + key: normalizeDecodedData(key), + value: normalizeDecodedData(value) + }) + } + return { + _tag: "Map", + entries + } + } + + // Handle Constr objects (plain objects with index and fields) + if (typeof data === "object" && data !== null && "index" in data && "fields" in data) { + const constrData = data as { index: unknown; fields: Array } + return { + _tag: "Constr", + index: constrData.index, + fields: constrData.fields.map(normalizeDecodedData) + } + } + + // Handle already normalized objects (legacy format) + if (typeof data === "object" && data !== null && "_tag" in data) { + const taggedData = data as { _tag: string; [key: string]: unknown } + const normalized = { ...taggedData } + + // Normalize tag names to match golden files + if (normalized._tag === "BytesArray") { + normalized._tag = "ByteArray" + } + + // Recursively normalize nested structures + if (normalized.list && Array.isArray(normalized.list)) { + normalized.list = normalized.list.map(normalizeDecodedData) + } + + if (normalized.entries && Array.isArray(normalized.entries)) { + normalized.entries = normalized.entries.map((entry: unknown) => { + // Handle both array format [key, value] and object format {key, value} + if (Array.isArray(entry) && entry.length === 2) { + return { + key: normalizeDecodedData(entry[0]), + value: normalizeDecodedData(entry[1]) + } + } else if (entry && typeof entry === "object" && "key" in entry && "value" in entry) { + const entryObj = entry as { key: unknown; value: unknown } + return { + key: normalizeDecodedData(entryObj.key), + value: normalizeDecodedData(entryObj.value) + } + } + return entry + }) + } + + if (normalized.fields && Array.isArray(normalized.fields)) { + normalized.fields = normalized.fields.map(normalizeDecodedData) + } + + return normalized + } + + // Fallback for other objects + return data +} diff --git a/packages/evolution/test/Data.prop.test.ts b/packages/evolution/test/Data.prop.test.ts new file mode 100644 index 00000000..c983d6b1 --- /dev/null +++ b/packages/evolution/test/Data.prop.test.ts @@ -0,0 +1,209 @@ +import { FastCheck } from "effect" +import { describe, expect, it } from "vitest" + +import * as Data from "../src/Data.js" + +/** + * Property-based tests for Data module + * focusing on roundtrip serialization properties for all data types + */ +describe("Data Property Tests", () => { + describe("Core Generators", () => { + /** + * Using exported generators from Data module + * These follow the same pattern as used in the Data.js module + */ + + // Reference to exported generators for clarity + const { genConstr, genPlutusBigInt, genPlutusBytes, genPlutusData, genPlutusList, genPlutusMap } = Data + + describe("Generator-based Roundtrip Tests", () => { + it("should generate valid PlutusBigInt data and roundtrip", () => { + FastCheck.assert( + FastCheck.property(genPlutusBigInt(), (value) => { + const cborHex = Data.Codec().Encode.cborHex(value) + const decoded = Data.Codec().Decode.cborHex(cborHex) + expect(Data.isInt(value)).toBe(true) + expect(decoded).toEqual(value) + }) + ) + }) + + it("should generate valid PlutusBytes data and roundtrip", () => { + FastCheck.assert( + FastCheck.property(genPlutusBytes(), (value) => { + console.log("Testing PlutusBytes roundtrip with value:", value) + const cborHex = Data.Codec().Encode.cborHex(value) + console.log("CBOR Hex:", cborHex) + const decoded = Data.Codec().Decode.cborHex(cborHex) + console.log("Decoded value:", decoded) + expect(Data.isBytes(value)).toBe(true) + expect(decoded).toEqual(value) + }) + ) + }) + + it("should generate valid PlutusList data and roundtrip", () => { + FastCheck.assert( + FastCheck.property(genPlutusList(1), (value) => { + const cborHex = Data.Codec().Encode.cborHex(value) + const decoded = Data.Codec().Decode.cborHex(cborHex) + expect(Data.isList(value)).toBe(true) + expect(decoded).toEqual(value) + }) + ) + }) + + it("should generate valid PlutusMap data and roundtrip", () => { + FastCheck.assert( + FastCheck.property(genPlutusMap(1), (value) => { + const cborHex = Data.Codec().Encode.cborHex(value) + const decoded = Data.Codec().Decode.cborHex(cborHex) + expect(Data.isMap(value)).toBe(true) + expect(decoded).toEqual(value) + }) + ) + }) + + it("should generate valid Constr data and roundtrip", () => { + FastCheck.assert( + FastCheck.property(genConstr(1), (value) => { + const cborHex = Data.Codec().Encode.cborHex(value) + const decoded = Data.Codec().Decode.cborHex(cborHex) + expect(Data.isConstr(value)).toBe(true) + expect(decoded).toEqual(value) + }) + ) + }) + + it("should generate complex PlutusData structures and roundtrip", () => { + FastCheck.assert( + FastCheck.property(genPlutusData(2), (value) => { + const cborHex = Data.Codec().Encode.cborHex(value) + const decoded = Data.Codec().Decode.cborHex(cborHex) + expect(decoded).toEqual(value) + }) + ) + }) + }) + }) + + describe("Generator-based Alternative Tests", () => { + it("should maintain PlutusBigInt through roundtrip using exported generator", () => { + FastCheck.assert( + FastCheck.property(Data.genPlutusBigInt(), (value) => { + const cborHex = Data.Codec().Encode.cborHex(value) + const decoded = Data.Codec().Decode.cborHex(cborHex) + expect(decoded).toEqual(value) + }) + ) + }) + + it("should maintain PlutusBytes through roundtrip using exported generator", () => { + FastCheck.assert( + FastCheck.property(Data.genPlutusBytes(), (value) => { + const cborHex = Data.Codec().Encode.cborHex(value) + const decoded = Data.Codec().Decode.cborHex(cborHex) + expect(decoded).toEqual(value) + }) + ) + }) + + it("should maintain PlutusData through roundtrip using exported generator", () => { + // Use limited depth to avoid excessive recursion + FastCheck.assert( + FastCheck.property(Data.genPlutusData(2), (value) => { + const cborHex = Data.Codec().Encode.cborHex(value) + const decoded = Data.Codec().Decode.cborHex(cborHex) + expect(decoded).toEqual(value) + }) + ) + }) + }) + + describe("PlutusBigInt CDDL Compliance", () => { + it("should handle all CDDL int variants: int, big_uint, big_nint", () => { + FastCheck.assert( + FastCheck.property(FastCheck.bigInt(), (value) => { + const plutusBigInt = value + const cborHex = Data.Codec().Encode.cborHex(plutusBigInt) + const decoded = Data.Codec().Decode.cborHex(cborHex) + + expect(decoded).toEqual(plutusBigInt) + + // Type assertion to verify properties safely + if (Data.isInt(decoded)) { + expect(decoded).toBe(value) + } else { + expect.fail("Decoded value should be PlutusBigInt") + } + }) + ) + }) + }) + + describe("Constr CBOR Tag Handling", () => { + it("should use proper tags for small constructor indices (0-6)", () => { + FastCheck.assert( + FastCheck.property( + FastCheck.integer({ min: 0, max: 6 }), + FastCheck.array(Data.genPlutusBigInt(), { maxLength: 2 }), + (index, fields) => { + const constr = Data.constr(BigInt(index), fields) + const cborHex = Data.Codec().Encode.cborHex(constr) + const decoded = Data.Codec().Decode.cborHex(cborHex) + + expect(decoded).toEqual(constr) + + // Type assertion to verify properties safely + if (Data.isConstr(decoded)) { + expect(decoded.index).toBe(BigInt(index)) + } else { + expect.fail("Decoded value should be a Constr") + } + } + ) + ) + }) + + it("should use tag 102 for large constructor indices", () => { + FastCheck.assert( + FastCheck.property( + FastCheck.bigInt({ min: 7n, max: 2n ** 64n - 1n }), + FastCheck.array(Data.genPlutusBigInt(), { maxLength: 2 }), + (index, fields) => { + const constr = Data.constr(index, fields) + const cborHex = Data.Codec().Encode.cborHex(constr) + const decoded = Data.Codec().Decode.cborHex(cborHex) + + expect(decoded).toEqual(constr) + + // Type assertion to verify properties safely + if (Data.isConstr(decoded)) { + expect(decoded.index).toBe(index) + } else { + expect.fail("Decoded value should be a Constr") + } + } + ) + ) + }) + }) + + describe("Schema Transformation Tests", () => { + it("should successfully transform between CBOR bytes and PlutusData", () => { + // Use exported generator with limited recursion depth + FastCheck.assert( + FastCheck.property(Data.genPlutusData(1), (value) => { + // PlutusData -> CBOR bytes + const cborBytes = Data.Codec().Encode.cborBytes(value) + + // CBOR bytes -> PlutusData + const decoded = Data.Codec().Decode.cborBytes(cborBytes) + + expect(decoded).toEqual(value) + }) + ) + }) + }) +}) diff --git a/packages/evolution/test/Data.test.ts b/packages/evolution/test/Data.test.ts new file mode 100644 index 00000000..7af57acc --- /dev/null +++ b/packages/evolution/test/Data.test.ts @@ -0,0 +1,828 @@ +import { describe, expect, it } from "@effect/vitest" + +import * as Data from "../src/Data.js" + +const Codec = Data.Codec() +const CodecCanonical = Data.Codec({ + options: { + mode: "canonical" + } +}) + +describe("Data Module Tests", () => { + describe("Basic Types", () => { + describe("PlutusBytes", () => { + const validHexCases = ["deadbeef", "cafe0123", "abcdef0123456789", "00", "ff"] + + it.each(validHexCases)("should create valid Bytes: %s", (input) => { + expect(Data.isBytes(input)).toBe(true) + }) + + const invalidHexCases = ["not-hex", "xyz", "123g", "deadbeef ", " deadbeef", "0x123456"] + + it.each(invalidHexCases)("should fail schema validation on invalid hex string: %s", (input) => { + expect(Data.isBytes(input)).toBe(false) + }) + + it("should validate PlutusBytes with schema", () => { + const bytes = "deadbeef" + expect(Data.isBytes(bytes)).toBe(true) + }) + }) + + describe("Plutus Int", () => { + const integerCases = [ + 0n, + 1n, + -1n, + 42n, + -42n, + 2n ** 63n - 1n, + -(2n ** 63n), + 2n ** 64n, + -(2n ** 64n), + 123456789123456789n, + -123456789123456789n + ] + + it.each(integerCases)("should create valid Plutus Int: %s", (input) => { + expect(Data.isInt(input)).toBe(true) + }) + + it("should fail validation with non-bigint value", () => { + const invalidInt = "not-a-bigint" + expect(Data.isInt(invalidInt)).toBe(false) + }) + + it("should validate PlutusBigInt with schema", () => { + const integer = 42n + expect(Data.isInt(integer)).toBe(true) + }) + }) + + describe("Plutus List", () => { + it("should create a valid empty list", () => { + const list: Data.List = [] + expect(list).toEqual([]) + expect(Data.isList(list)).toBe(true) + }) + + it("should create a valid list with elements", () => { + const list = [42n, "deadbeef"] + expect(list).toHaveLength(2) + expect(Data.isList(list)).toBe(true) + }) + + it("should validate Plutus List with schema", () => { + const list = [42n, "cafe"] + expect(Data.isList(list)).toBe(true) + }) + }) + + describe("Plutus Map", () => { + it("should create a valid empty map", () => { + const map = Data.map([]) + expect((map as Data.MapList).size).toBe(0) + expect(Data.isMap(map)).toBe(true) + }) + + it("should create a valid map with entries", () => { + const map = Data.map([ + { + key: "cafe", + value: 42n + }, + { + key: 99n, + value: "deadbeef" + } + ]) + expect((map as Data.MapList).size).toBe(2) + expect(Data.isMap(map)).toBe(true) + }) + + it("should validate Plutus Map with schema", () => { + const map = Data.map([ + { + key: 1n, + value: 2n + } + ]) + expect(Data.isMap(map)).toBe(true) + }) + }) + + describe("Constr", () => { + it("should create a valid constructor with no fields", () => { + const constr = Data.constr(0n, []) + expect(constr.index).toBe(0n) + expect(constr.fields).toEqual([]) + expect(Data.isConstr(constr)).toBe(true) + }) + + it("should create a valid constructor with fields", () => { + const constr = Data.constr(2n, [42n, "deadbeef", [99n]]) + expect(constr.index).toBe(2n) + expect(constr.fields).toHaveLength(3) + expect(Data.isConstr(constr)).toBe(true) + }) + + it("should validate Constr with schema", () => { + const constr = Data.constr(5n, [42n, "cafe"]) + expect(Data.isConstr(constr)).toBe(true) + }) + + it("should handle large constructor indices", () => { + const largeIndex = 2n ** 32n + 1n // Well beyond the direct tag range + const constr = Data.constr(largeIndex, [1n]) + expect(constr.index).toBe(largeIndex) + expect(Data.isConstr(constr)).toBe(true) + }) + }) + }) + + describe("CBOR Encoding/Decoding", () => { + const testCases = [ + { + name: "empty constructor", + value: Data.constr(0n, []), + expectedHex: "d87980" + }, + { + name: "constructor with fields", + value: Data.constr(1n, [42n, "cafe"]), + expectedHex: "d87a9f182a42cafeff" + }, + { + name: "large constructor index", + value: Data.constr(999999n, [42n]), + expectedHex: "d8669f1a000f423f9f182affff" + }, + { + name: "empty list", + value: [], + expectedHex: "80" + }, + { + name: "list with mixed elements", + value: [1n, "deadbeef", []], + expectedHex: "9f0144deadbeef80ff" + }, + { + name: "empty map", + value: Data.map([]), + expectedHex: "a0" + }, + { + name: "map with entries", + value: Data.map([ + { + key: 1n, + value: "cafe" + } + ]), + expectedHex: "bf0142cafeff" + }, + { + name: "small int", + value: 42n, + expectedHex: "182a" + }, + { + name: "negative int", + value: -42n, + expectedHex: "3829" + }, + { + name: "large positive int with value", + value: 11375342928504387279n, + expectedHex: "1b9ddd561fd3c176cf" + }, + { + name: "bytes", + value: "deadbeef", + expectedHex: "44deadbeef" + }, + { + name: "empty bytes", + value: "", + expectedHex: "40" + } + ] + + describe("Standard Encoding/Decoding", () => { + describe("Hex Encoding/Decoding", () => { + it.each(testCases)("should round-trip $name via hex encoding", ({ expectedHex, value }) => { + const encoded = Codec.Encode.cborHex(value) + const decoded = Codec.Decode.cborHex(encoded) + expect(decoded).toEqual(value) + expect(encoded).toBe(expectedHex) + }) + }) + + describe("Bytes Encoding/Decoding", () => { + it.each(testCases)("should round-trip $name via bytes encoding", ({ value }) => { + const encoded = Codec.Encode.cborBytes(value) + const decoded = Codec.Decode.cborBytes(encoded) + expect(decoded).toEqual(value) + }) + }) + }) + }) + + describe("Utility Functions", () => { + describe("matchConstr", () => { + it("should match specific constructor indices", () => { + const constr = Data.constr(1n, [42n]) + const result = Data.matchConstr(constr, { + 1: (fields) => `Found index 1 with ${fields.length} fields`, + 2: (fields) => `Found index 2 with ${fields.length} fields`, + _: (index, fields) => `Default case: index ${index} with ${fields.length} fields` + }) + expect(result).toBe("Found index 1 with 1 fields") + }) + + it("should use default case for non-matched indices", () => { + const constr = Data.constr(99n, [42n]) + const result = Data.matchConstr(constr, { + 1: (fields) => `Found index 1 with ${fields.length} fields`, + 2: (fields) => `Found index 2 with ${fields.length} fields`, + _: (index, fields) => `Default case: index ${index} with ${fields.length} fields` + }) + expect(result).toBe("Default case: index 99 with 1 fields") + }) + }) + + describe("matchPlutusData", () => { + it("should match Plutus Map type", () => { + const map = Data.map([]) + const result = Data.matchData(map, { + Map: (entries) => `Map with ${entries.length} entries`, + List: (items) => `List with ${items.length} items`, + Int: (value) => `BigInt: ${value}`, + Bytes: (bytes) => `Bytes: ${bytes}`, + Constr: (constr) => `Constructor ${constr.index} with ${constr.fields.length} fields` + }) + expect(result).toBe("Map with 0 entries") + }) + + it("should match Plutus List type", () => { + const list = [1n] + const result = Data.matchData(list, { + Map: (entries) => `Map with ${entries.length} entries`, + List: (items) => `List with ${items.length} items`, + Int: (value) => `BigInt: ${value}`, + Bytes: (bytes) => `Bytes: ${bytes}`, + Constr: (constr) => `Constructor ${constr.index} with ${constr.fields.length} fields` + }) + expect(result).toBe("List with 1 items") + }) + + it("should match Plutus Int type", () => { + const int = 42n + const result = Data.matchData(int, { + Map: (entries) => `Map with ${entries.length} entries`, + List: (items) => `List with ${items.length} items`, + Int: (value) => `BigInt: ${value}`, + Bytes: (bytes) => `Bytes: ${bytes}`, + Constr: (constr) => `Constructor ${constr.index} with ${constr.fields.length} fields` + }) + expect(result).toBe("BigInt: 42") + }) + + it("should match Plutus Bytes type", () => { + const bytes = "cafe" + const result = Data.matchData(bytes, { + Map: (entries) => `Map with ${entries.length} entries`, + List: (items) => `List with ${items.length} items`, + Int: (value) => `BigInt: ${value}`, + Bytes: (bytes) => `Bytes: ${bytes}`, + Constr: (constr) => `Constructor ${constr.index} with ${constr.fields.length} fields` + }) + expect(result).toBe("Bytes: cafe") + }) + + it("should match Constr type", () => { + const constr = Data.constr(3n, []) + const result = Data.matchData(constr, { + Map: (entries) => `Map with ${entries.length} entries`, + List: (items) => `List with ${items.length} items`, + Int: (value) => `BigInt: ${value}`, + Bytes: (bytes) => `Bytes: ${bytes}`, + Constr: (constr) => `Constructor ${constr.index} with ${constr.fields.length} fields` + }) + expect(result).toBe("Constructor 3 with 0 fields") + }) + }) + }) + + describe("Complex Structures", () => { + it("should handle nested structures", () => { + // Create a complex nested structure + const complex = Data.constr(0n, [ + [1n, 2n, "cafe"], + Data.map([ + { + key: 42n, + value: ["deadbeef"] + }, + { + key: "deadbeef", + value: Data.constr(1n, [-999n]) + } + ]), + Data.constr(7n, [[], Data.map([])]) + ]) + + const encoded = Codec.Encode.cborHex(complex) + const decoded = Codec.Decode.cborHex(encoded) + expect(decoded).toEqual(complex) + }) + }) + + describe("Integer Boundary Testing", () => { + const boundaryTestCases = [ + { name: "Zero", value: 0n }, + { name: "Small positive (23)", value: 23n }, + { name: "Small positive (24)", value: 24n }, + { name: "Small positive (255)", value: 255n }, + { name: "Small positive (256)", value: 256n }, + { name: "Medium positive (65535)", value: 65535n }, + { name: "Medium positive (65536)", value: 65536n }, + { name: "Large positive (4294967295)", value: 4294967295n }, + { name: "Large positive (4294967296)", value: 4294967296n }, + { name: "64-bit boundary (2^63 - 1)", value: 9223372036854775807n }, + { name: "64-bit boundary (2^63)", value: 9223372036854775808n }, + { name: "64-bit max (2^64 - 1)", value: 18446744073709551615n }, + { name: "Bignum threshold (2^64)", value: 18446744073709551616n }, + { name: "Large bignum (2^64 + 1)", value: 18446744073709551617n }, + { + name: "Very large bignum (2^128)", + value: 340282366920938463463374607431768211456n + }, + { name: "Small negative (-1)", value: -1n }, + { name: "Small negative (-24)", value: -24n }, + { name: "Small negative (-25)", value: -25n }, + { name: "Medium negative (-256)", value: -256n }, + { name: "Medium negative (-257)", value: -257n }, + { name: "Large negative (-4294967296)", value: -4294967296n }, + { + name: "64-bit negative boundary (-2^63)", + value: -9223372036854775808n + }, + { + name: "64-bit negative max (-2^64 + 1)", + value: -18446744073709551615n + }, + { + name: "Negative bignum threshold (-2^64)", + value: -18446744073709551616n + }, + { + name: "Large negative bignum (-2^64 - 1)", + value: -18446744073709551617n + }, + { + name: "Very large negative bignum (-2^128)", + value: -340282366920938463463374607431768211456n + } + ] + + it.each(boundaryTestCases)("should handle $name correctly", ({ value }) => { + const plutusData = value + const encoded = Codec.Encode.cborBytes(plutusData) + const decoded = Codec.Decode.cborBytes(encoded) + + expect(decoded).toEqual(plutusData) + expect(decoded as Data.Int).toBe(value) + }) + }) + + describe("CBOR Encoding Format Validation", () => { + it("should use correct CBOR major types for different integer ranges", () => { + const testCases = [ + { value: 23n, expectedMajorType: 0, description: "direct encoding" }, + { value: 255n, expectedMajorType: 0, description: "1-byte unsigned" }, + { value: 65535n, expectedMajorType: 0, description: "2-byte unsigned" }, + { + value: 4294967295n, + expectedMajorType: 0, + description: "4-byte unsigned" + }, + { + value: 18446744073709551615n, + expectedMajorType: 0, + description: "8-byte unsigned" + }, + { + value: 18446744073709551616n, + expectedMajorType: 6, + description: "positive bignum tag" + }, + { value: -1n, expectedMajorType: 1, description: "direct negative" }, + { value: -24n, expectedMajorType: 1, description: "1-byte negative" }, + { value: -256n, expectedMajorType: 1, description: "2-byte negative" }, + { + value: -18446744073709551615n, + expectedMajorType: 1, + description: "8-byte negative" + }, + { + value: -18446744073709551617n, + expectedMajorType: 6, + description: "negative bignum tag" + } + ] + + testCases.forEach(({ expectedMajorType, value }) => { + const plutusData = value + const encoded = Codec.Encode.cborBytes(plutusData) + const firstByte = encoded[0] + const majorType = firstByte >> 5 + + expect(majorType).toBe(expectedMajorType) + + // Additional validation for bignum tags + if (expectedMajorType === 6) { + const additionalInfo = firstByte & 0x1f + if (value > 0n) { + expect(additionalInfo).toBe(2) // Tag 2 for positive bignum + } else { + expect(additionalInfo).toBe(3) // Tag 3 for negative bignum + } + } + }) + }) + + it("should handle empty collections correctly", () => { + const emptyList: Data.List = [] + const emptyMap = Data.map([]) + const emptyConstr = Data.constr(0n, []) + + // Test that empty collections encode/decode correctly + ;[emptyList, emptyMap, emptyConstr].forEach((data) => { + const encoded = Codec.Encode.cborBytes(data) + const decoded = Codec.Decode.cborBytes(encoded) + expect(decoded).toEqual(data) + }) + }) + }) + + describe("Large Data Structure Edge Cases", () => { + it("should handle large lists", () => { + // Create a list with many elements + const largeList = Array.from({ length: 1000 }, (_, i) => BigInt(i)) + + const encoded = Codec.Encode.cborBytes(largeList) + const decoded = Codec.Decode.cborBytes(encoded) + expect(decoded).toEqual(largeList) + expect(decoded as Data.List).toHaveLength(1000) + }) + + it("should handle large maps", () => { + // Create a map with many entries + const entries = Array.from({ length: 100 }, (_, i) => ({ + key: BigInt(i), + value: `${i.toString(16).padStart(4, "0")}` + })) + const largeMap = Data.map(entries) + + const encoded = Codec.Encode.cborBytes(largeMap) + const decoded = Codec.Decode.cborBytes(encoded) + expect(decoded).toEqual(largeMap) + expect((decoded as Data.MapList).size).toBe(100) + }) + + it("should handle constructors with many fields", () => { + // Create a constructor with many fields + const manyFields = Array.from({ length: 50 }, (_, i) => BigInt(i)) + const constr = Data.constr(42n, manyFields) + + const encoded = Codec.Encode.cborBytes(constr) + const decoded = Codec.Decode.cborBytes(encoded) + expect(decoded).toEqual(constr) + expect((decoded as Data.Constr).fields).toHaveLength(50) + }) + }) + + describe("Error Handling and Edge Cases", () => { + describe("Invalid CBOR Input", () => { + const invalidInputs = [ + { name: "non-hex string", input: "not-valid-cbor", method: "cborHex" }, + { name: "partial hex string", input: "deadbee", method: "cborHex" }, + { name: "truncated CBOR", input: "d8", method: "cborHex" }, + { name: "invalid CBOR tag", input: "d8ff", method: "cborHex" }, + { name: "incomplete tagged value", input: "d87900", method: "cborHex" } + ] + + it.each(invalidInputs)("should handle $name gracefully", ({ input, method }) => { + expect(() => { + if (method === "cborHex") { + Codec.Decode.cborHex(input) + } + }).toThrow() + }) + }) + + describe("Malformed PlutusData Objects", () => { + it("should handle objects with wrong _tag values", () => { + const malformedObjects = [ + "test", + 10, + [1, 2n, 3], + new Map([["key", "value"]]), + { index: -1n, fields: [] }, + "invalidhex!" + ] as const + + malformedObjects.forEach((obj) => { + expect(Data.isInt(obj)).toBe(false) + expect(Data.isList(obj)).toBe(false) + expect(Data.isMap(obj)).toBe(false) + expect(Data.isConstr(obj)).toBe(false) + expect(Data.isBytes(obj)).toBe(false) + }) + }) + }) + + describe("Boundary Value Testing", () => { + it("should handle bytearray edge cases", () => { + const edgeCases = [ + { name: "empty string", value: "" }, + { name: "single zero byte", value: "00" }, + { name: "single max byte", value: "ff" }, + { name: "lowercase hex", value: "deadbeef" }, + { name: "uppercase hex", value: "DEADBEEF" } + ] + + edgeCases.forEach(({ value }) => { + expect(() => { + const bytes = Data.bytearray(value) + const encoded = Codec.Encode.cborBytes(bytes) + const decoded = Codec.Decode.cborBytes(encoded) + // Note: hex strings are normalized to lowercase during processing + if (Data.isBytes(decoded)) { + expect(decoded).toBe(value.toLowerCase()) + } + }).not.toThrow() + }) + }) + + it("should handle invalid bytearray inputs", () => { + const invalidCases = [ + "deadbee", // Odd length + "deadbeeg", // Invalid hex character + "0x123456", // Hex prefix not allowed + " deadbeef", // Leading whitespace + "deadbeef " // Trailing whitespace + ] + + invalidCases.forEach((invalidHex) => { + expect(Data.isBytes(invalidHex)).toBe(false) + }) + }) + }) + }) + + describe("Type Safety and Validation", () => { + describe("Type Guards", () => { + it("should correctly identify PlutusData types", () => { + const testCases = [ + { data: 42n, expectedType: "PlutusBigInt" }, + { data: "deadbeef", expectedType: "PlutusBytes" }, + { data: [], expectedType: "PlutusList" }, + { data: Data.map([]), expectedType: "PlutusMap" }, + { data: Data.constr(0n, []), expectedType: "Constr" } + ] + + testCases.forEach(({ data, expectedType }) => { + switch (expectedType) { + case "PlutusBigInt": + expect(Data.isInt(data)).toBe(true) + expect(Data.isBytes(data)).toBe(false) + expect(Data.isList(data)).toBe(false) + expect(Data.isMap(data)).toBe(false) + expect(Data.isConstr(data)).toBe(false) + break + case "PlutusBytes": + expect(Data.isInt(data)).toBe(false) + expect(Data.isBytes(data)).toBe(true) + expect(Data.isList(data)).toBe(false) + expect(Data.isMap(data)).toBe(false) + expect(Data.isConstr(data)).toBe(false) + break + case "PlutusList": + expect(Data.isInt(data)).toBe(false) + expect(Data.isBytes(data)).toBe(false) + expect(Data.isList(data)).toBe(true) + expect(Data.isMap(data)).toBe(false) + expect(Data.isConstr(data)).toBe(false) + break + case "PlutusMap": + expect(Data.isInt(data)).toBe(false) + expect(Data.isBytes(data)).toBe(false) + expect(Data.isList(data)).toBe(false) + expect(Data.isMap(data)).toBe(true) + expect(Data.isConstr(data)).toBe(false) + break + case "Constr": + expect(Data.isInt(data)).toBe(false) + expect(Data.isBytes(data)).toBe(false) + expect(Data.isList(data)).toBe(false) + expect(Data.isMap(data)).toBe(false) + expect(Data.isConstr(data)).toBe(true) + break + } + }) + }) + }) + + describe("Schema Validation", () => { + it("should validate all PlutusData types with their schemas", () => { + expect(Data.isInt(42n)).toBe(true) + expect(Data.isBytes("deadbeef")).toBe(true) + expect(Data.isList([1n])).toBe(true) + expect(Data.isMap(Data.map([{ key: 1n, value: 2n }]))).toBe(true) + expect(Data.isConstr(Data.constr(0n, [42n]))).toBe(true) + }) + }) + }) + + describe("Edge Cases and Robustness", () => { + describe("Deeply Nested Structures", () => { + it("should handle moderate nesting levels", () => { + // Create a moderately nested structure (20 levels) + let nested: any = 42n + for (let i = 0; i < 20; i++) { + nested = [nested] + } + + expect(() => { + const encoded = Codec.Encode.cborBytes(nested) + const decoded = Codec.Decode.cborBytes(encoded) + expect(decoded).toEqual(nested) + }).not.toThrow() + }) + + it("should handle mixed nested structures", () => { + // Create a complex mixed structure with valid hex strings + const complex = Data.constr(0n, [ + [Data.map([{ key: 1n, value: "cafe" }]), Data.constr(1n, [-999n])], + Data.map([ + { + key: "deadbeef", // Valid hex string + value: [1n, 2n, 3n] + }, + { + key: 42n, + value: Data.constr(2n, []) + } + ]) + ]) + + const encoded = Codec.Encode.cborBytes(complex) + const decoded = Codec.Decode.cborBytes(encoded) + expect(decoded).toEqual(complex) + }) + }) + + describe("Data Structure Consistency", () => { + it("should maintain referential integrity", () => { + // Verify that separate instances with same data are equal + const data1 = Data.constr(42n, [123n, "cafe"]) + const data2 = Data.constr(42n, [123n, "cafe"]) + + expect(data1).toEqual(data2) + + const encoded1 = Codec.Encode.cborBytes(data1) + const encoded2 = Codec.Encode.cborBytes(data2) + + expect(encoded1).toEqual(encoded2) + }) + + it("should detect data differences correctly", () => { + const similar = [ + { + data1: Data.constr(42n, [123n]), + data2: Data.constr(43n, [123n]) // Different index + }, + { + data1: Data.constr(42n, [123n]), + data2: Data.constr(42n, [124n]) // Different field + }, + { + data1: "deadbeef", + data2: "deadbeee" // Different hex + }, + { + data1: 42n, + data2: -42n // Different sign + } + ] + + similar.forEach(({ data1, data2 }) => { + expect(data1).not.toEqual(data2) + + const encoded1 = Codec.Encode.cborBytes(data1) + const encoded2 = Codec.Encode.cborBytes(data2) + + expect(encoded1).not.toEqual(encoded2) + }) + }) + }) + }) + + describe("Constructor Index Edge Cases", () => { + it("should handle direct tag constructors (0-6)", () => { + for (let i = 0; i <= 6; i++) { + const constr = Data.constr(BigInt(i), [42n]) + const encoded = Codec.Encode.cborBytes(constr) + const decoded = Codec.Decode.cborBytes(encoded) + expect(decoded).toEqual(constr) + + // Verify CBOR encoding uses direct tags (121-127) with 1-byte encoding + const firstByte = encoded[0] + expect(firstByte).toBe(0xd8) // Tag encoding prefix for 1-byte tags + const tagByte = encoded[1] + expect(tagByte).toBe(121 + i) + } + }) + + it("should handle general constructor tag (index >= 7)", () => { + const testIndices = [7n, 100n, 999999n, 2n ** 32n, 2n ** 64n - 1n] + + testIndices.forEach((index) => { + const constr = Data.constr(index, [42n]) + const encoded = Codec.Encode.cborBytes(constr) + const decoded = Codec.Decode.cborBytes(encoded) + expect(decoded).toEqual(constr) + expect((decoded as Data.Constr).index).toBe(index) + + const firstByte = encoded[0] + + if (index >= 7n && index <= 127n) { + // CML compatibility format: tags 1280+ for indices 7-127 + expect(firstByte).toBe(0xd9) // Tag encoding prefix for 2-byte tags + const tagBytes = (encoded[1] << 8) | encoded[2] + expect(tagBytes).toBe(1280 + Number(index - 7n)) + } else { + // General constructor tag (102) for indices >= 128 + expect(firstByte).toBe(0xd8) // Tag encoding prefix for 1-byte tags + expect(encoded[1]).toBe(102) // General constructor tag + } + }) + }) + }) + + it("should handle canonical format roundtrip", () => { + const firstCanonical = + "d90503828181436ad232a34277931bd5a95fcb2d914b711b431e8fb0e0c31fe71b70cec8a3bf37064e1b785c7997367a91151b6a63f4cd860738d9" + const decoded = Codec.Decode.cborHex(firstCanonical) + + const encoded = CodecCanonical.Encode.cborHex(decoded) + expect(encoded).toBe(firstCanonical) + expect(Codec.Decode.cborHex(encoded)).toEqual(decoded) + + const secondCanonical = + "d9050883a4410742b6491b81df71d083fb9aac1b5f7385f841d1edec4a70f3d8f8803183c150334688472079a8ce4b0f7f249c0a9f4f829d2e4f1bc0556aa7b700508606a14365b7f71b4b62f0e2fbb95d6d" + const secondDecoded = Codec.Decode.cborHex(secondCanonical) + const secondEncoded = CodecCanonical.Encode.cborHex(secondDecoded) + expect(secondEncoded).toBe(secondCanonical) + expect(Codec.Decode.cborHex(secondEncoded)).toEqual(secondDecoded) + }) + + it("should handle unsorted map and return sorted canonical format", () => { + const unsorted = Data.constr(15n, [ + Data.map([ + { + key: 9358323691080620716n, + value: 6877988357227539948n + }, + { + key: "70f3d8f8803183c15033", + value: "88472079a8ce" + }, + { + key: "0f7f249c0a9f4f829d2e4f", + value: 13859100696864903302n + }, + { + key: "07", + value: "b649" + } + ]), + 6n, + Data.map([ + { + key: "65b7f7", + value: 5432168958238743917n + } + ]) + ]) + + const encoded = CodecCanonical.Encode.cborHex(unsorted) + const expectedCBORHex = + "d9050883a4410742b6491b81df71d083fb9aac1b5f7385f841d1edec4a70f3d8f8803183c150334688472079a8ce4b0f7f249c0a9f4f829d2e4f1bc0556aa7b700508606a14365b7f71b4b62f0e2fbb95d6d" + expect(encoded).toBe(expectedCBORHex) + }) +}) diff --git a/packages/evolution/test/TSchema.test.ts b/packages/evolution/test/TSchema.test.ts new file mode 100644 index 00000000..c0b1742a --- /dev/null +++ b/packages/evolution/test/TSchema.test.ts @@ -0,0 +1,549 @@ +import { describe, expect, it } from "vitest" + +import * as Data from "../src/Data.js" +import * as TSchema from "../src/TSchema.js" + +/** + * Tests for TypeTaggedSchema module functionality - + * focusing on schema definition, encoding, and decoding + */ +describe("TypeTaggedSchema Tests", () => { + describe("Basic Types", () => { + describe("ByteArray Schema", () => { + it("should encode/decode ByteArray", () => { + const input = "deadbeef" + // const encoded = Data.Codec().Encode.cborHex(input, TSchema.ByteArray); + const encoded = Data.Codec({ + schema: TSchema.ByteArray + }).Encode.cborHex(input) + const decoded = Data.Codec({ + schema: TSchema.ByteArray + }).Decode.cborHex(encoded) + + expect(encoded).toEqual("44deadbeef") + expect(decoded).toEqual("deadbeef") + }) + + it("should fail on invalid hex string", () => { + expect(() => + Data.Codec({ + schema: TSchema.ByteArray + }).Encode.cborHex("not-hex") + ).toThrow() + }) + }) + + describe("Integer Schema", () => { + it("should encode/decode Integer", () => { + const input = 42n + const encoded = Data.Codec({ + schema: TSchema.Integer + }).Encode.cborHex(input) + const decoded = Data.Codec({ + schema: TSchema.Integer + }).Decode.cborHex(encoded) + + expect(encoded).toEqual("182a") + expect(decoded).toEqual(42n) + }) + + it("should fail on non-bigint", () => { + expect(() => + //@ts-ignore + Data.encodeDataOrThrow(42, TSchema.Integer) + ).toThrow() + }) + }) + + describe("Boolean Schema", () => { + it("should encode/decode true", () => { + const input = true + const encoded = Data.Codec({ + schema: TSchema.Boolean + }).Encode.cborHex(input) + const decoded = Data.Codec({ + schema: TSchema.Boolean + }).Decode.cborHex(encoded) + + expect(encoded).toEqual("d87a80") + expect(decoded).toEqual(true) + }) + + it("should encode/decode false", () => { + const input = false + const encoded = Data.Codec({ + schema: TSchema.Boolean + }).Encode.cborHex(input) + const decoded = Data.Codec({ + schema: TSchema.Boolean + }).Decode.cborHex(encoded) + + expect(encoded).toEqual("d87980") + expect(decoded).toEqual(false) + }) + + it("should fail on invalid format", () => { + const invalidInput = "d87a01" // Invalid boolean + expect(() => + // Data.decodeDataOrThrow(invalidInput, TSchema.Boolean) + Data.Codec({ + schema: TSchema.Boolean + }).Decode.cborHex(invalidInput) + ).toThrow() + }) + }) + }) + + describe("Complex Types", () => { + describe("Array Schema", () => { + it("should encode/decode arrays", () => { + const IntArray = TSchema.Array(TSchema.Integer) + + const input = [1n, 2n, 3n] + const encoded = Data.Codec({ + schema: IntArray + }).Encode.cborHex(input) + const decoded = Data.Codec({ + schema: IntArray + }).Decode.cborHex(encoded) + + expect(encoded).toEqual("9f010203ff") + expect(decoded).toEqual([1n, 2n, 3n]) + }) + + it("should handle empty arrays", () => { + const IntArray = TSchema.Array(TSchema.Integer) + + const input: Array = [] + const encoded = Data.Codec({ + schema: IntArray + }).Encode.cborHex(input) + const decoded = Data.Codec({ + schema: IntArray + }).Decode.cborHex(encoded) + + expect(encoded).toEqual("80") + expect(decoded).toEqual([]) + }) + }) + + describe("Map Schema", () => { + it("should encode/decode maps", () => { + const TokenMap = TSchema.Map(TSchema.ByteArray, TSchema.Integer) + + const input = new Map([ + ["deadbeef", 1n], + ["cafe", 2n] + ]) + + const encoded = Data.Codec({ + schema: TokenMap + }).Encode.cborHex(input) + const decoded = Data.Codec({ + schema: TokenMap + }).Decode.cborHex(encoded) + + // Just test that round-trip works correctly + expect(decoded).toEqual(input) + }) + + it("should handle empty maps", () => { + const TokenMap = TSchema.Map(TSchema.ByteArray, TSchema.Integer) + + const input = new Map() + const encoded = Data.Codec({ + schema: TokenMap + }).Encode.cborHex(input) + const decoded = Data.Codec({ + schema: TokenMap + }).Decode.cborHex(encoded) + + // Just test that round-trip works correctly + expect(decoded).toEqual(input) + }) + + it("should deterministically encode Maps regardless of insertion order", () => { + const TokenMap = TSchema.Map(TSchema.ByteArray, TSchema.Integer) + + // Create two maps with same entries but different insertion order + const map1 = new Map([ + ["deadbeef", 1n], + ["cafe", 2n], + ["babe", 3n] + ]) + + const map2 = new Map([ + ["cafe", 2n], + ["babe", 3n], + ["deadbeef", 1n] + ]) + + // Encode both maps + const encoded1 = Data.Codec({ + options: { + mode: "canonical" + }, + schema: TokenMap + }).Encode.cborHex(map1) + const encoded2 = Data.Codec({ + options: { + mode: "canonical" + }, + schema: TokenMap + }).Encode.cborHex(map2) + + // The CBOR outputs should be identical if sorting is working correctly + expect(encoded1).toEqual(encoded2) + }) + it("should handle key integer and value bytearray", () => { + const IntegerByteArrayMap = TSchema.Map(TSchema.Integer, TSchema.ByteArray) + const input = new Map([ + [3209n, "3131"], + [249218490182n, "32323232"] + ]) + const encoded = Data.Codec({ + schema: IntegerByteArrayMap + }).Encode.cborHex(input) + const decoded = Data.Codec({ + schema: IntegerByteArrayMap + }).Decode.cborHex(encoded) + + expect(encoded).toEqual("bf190c894231311b0000003a06945f464432323232ff") + expect(decoded).toEqual(input) + }) + it("should handle complex map with mixed types", () => { + const ComplexMap = TSchema.Map( + TSchema.ByteArray, + TSchema.Union(TSchema.Integer, TSchema.ByteArray, TSchema.Boolean) + ) + type ComplexMap = typeof ComplexMap.Type + + const input = new Map([ + ["deadbeef01", 42n], + ["deadbeef02", "cafe"], + ["deadbeef03", true] + ]) + + const encoded = Data.Codec({ + schema: ComplexMap + }).Encode.cborHex(input) + const decoded = Data.Codec({ + schema: ComplexMap + }).Decode.cborHex(encoded) + + // Just test that encoding/decoding works correctly, don't check specific CBOR format + expect(decoded).toEqual(input) + expect(decoded instanceof Map).toBe(true) + expect(decoded.size).toBe(3) + expect(decoded.get("deadbeef01")).toBe(42n) + expect(decoded.get("deadbeef02")).toBe("cafe") + expect(decoded.get("deadbeef03")).toBe(true) + }) + }) + + describe("Struct Schema", () => { + it("should encode/decode structs", () => { + const Token = TSchema.Struct({ + policyId: TSchema.ByteArray, + assetName: TSchema.ByteArray, + amount: TSchema.Integer + }) + + const input = { + policyId: "deadbeef", + assetName: "cafe", + amount: 1000n + } + + const encoded = Data.Codec({ + schema: Token + }).Encode.cborHex(input) + const decoded = Data.Codec({ + schema: Token + }).Decode.cborHex(encoded) + + expect(encoded).toEqual( + "d8799f44deadbeef42cafe1903e8ff" // Encoded CBOR + ) + + expect(decoded).toEqual(input) + }) + + it("should handle nested structs", () => { + const Asset = TSchema.Struct({ + policyId: TSchema.ByteArray, + assetName: TSchema.ByteArray + }) + + const Token = TSchema.Struct({ + asset: Asset, + amount: TSchema.Integer + }) + type Token = typeof Token.Type + + const input: Token = { + asset: { + policyId: "deadbeef", + assetName: "cafe" + }, + amount: 1000n + } + + const encoded = Data.Codec({ + schema: Token + }).Encode.cborHex(input) + const decoded = Data.Codec({ + schema: Token + }).Decode.cborHex(encoded) + + expect(decoded).toEqual(input) + }) + }) + + describe("Tuple Schema", () => { + it("should encode/decode tuples", () => { + const AssetPair = TSchema.Tuple([TSchema.ByteArray, TSchema.Integer]) + + const input = ["deadbeef", 1000n] as const + const encoded = Data.Codec({ + schema: AssetPair + }).Encode.cborHex(input) + const decoded = Data.Codec({ + schema: AssetPair + }).Decode.cborHex(encoded) + + expect(encoded).toEqual( + "9f44deadbeef1903e8ff" // Encoded CBOR + ) + expect(decoded).toEqual(input) + }) + + it("should handle heterogeneous tuples", () => { + const Mixed = TSchema.Tuple([TSchema.ByteArray, TSchema.Integer, TSchema.Boolean]) + + const input = ["deadbeef", 1000n, true] as const + const encoded = Data.Codec({ + schema: Mixed + }).Encode.cborHex(input) + const decoded = Data.Codec({ + schema: Mixed + }).Decode.cborHex(encoded) + + expect(decoded).toEqual(input) + }) + }) + + describe("Nullable Schema", () => { + it("should encode/decode non-null values", () => { + const MaybeInt = TSchema.NullOr(TSchema.Integer) + + const input = 42n + const encoded = Data.Codec({ + schema: MaybeInt + }).Encode.cborHex(input) + const decoded = Data.Codec({ + schema: MaybeInt + }).Decode.cborHex(encoded) + + expect(encoded).toEqual("d8799f182aff") // Encoded CBOR + expect(decoded).toEqual(42n) + }) + + it("should encode/decode null values", () => { + const MaybeInt = TSchema.NullOr(TSchema.Integer) + + const input = null + const encoded = Data.Codec({ + schema: MaybeInt + }).Encode.cborHex(input) + const decoded = Data.Codec({ + schema: MaybeInt + }).Decode.cborHex(encoded) + + expect(encoded).toEqual("d87a80") // Encoded CBOR + expect(decoded).toBeNull() + }) + }) + + describe("Literal Schema", () => { + it("should encode/decode literals", () => { + const Action = TSchema.Literal("mint", "burn", "transfer") + + const input = "mint" + const encoded = Data.Codec({ + schema: Action + }).Encode.cborHex(input) + const decoded = Data.Codec({ + schema: Action + }).Decode.cborHex(encoded) + + expect(encoded).toEqual("d87980") // Encoded CBOR + expect(decoded).toEqual("mint") + + const input2 = "burn" + const encoded2 = Data.Codec({ + schema: Action + }).Encode.cborHex(input2) + const decoded2 = Data.Codec({ + schema: Action + }).Decode.cborHex(encoded2) + + expect(encoded2).toEqual("d87a80") // Encoded CBOR + expect(decoded2).toEqual("burn") + }) + + it("should fail on invalid literal", () => { + const Action = TSchema.Literal("mint", "burn") + expect(() => + Data.Codec({ + schema: Action + //@ts-ignore + }).Encode.cborHex("invalid") + ).toThrow() + }) + }) + + describe("Union Schema", () => { + it("should encode/decode union types", () => { + const MintRedeem = TSchema.Struct({ + policyId: TSchema.ByteArray, + assetName: TSchema.ByteArray, + amount: TSchema.Integer + }) + + const SpendRedeem = TSchema.Struct({ + address: TSchema.ByteArray, + amount: TSchema.Integer + }) + + const RedeemAction = TSchema.Union(MintRedeem, SpendRedeem, TSchema.Integer) + + // Test MintRedeem + const mintInput = { + policyId: "deadbeef", + assetName: "cafe", + amount: 1000n + } + + const mintEncoded = Data.Codec({ + schema: RedeemAction + }).Encode.cborHex(mintInput) + const mintDecoded = Data.Codec({ + schema: RedeemAction + }).Decode.cborHex(mintEncoded) + + expect(mintEncoded).toEqual( + "d8799fd8799f44deadbeef42cafe1903e8ffff" // Encoded CBOR + ) + expect(mintDecoded).toEqual(mintInput) + + // Test SpendRedeem + const spendInput = { + address: "deadbeef", + amount: 500n + } + + const spendEncoded = Data.Codec({ + schema: RedeemAction + }).Encode.cborHex(spendInput) + const spendDecoded = Data.Codec({ + schema: RedeemAction + }).Decode.cborHex(spendEncoded) + + expect(spendEncoded).toEqual( + "d87a9fd8799f44deadbeef1901f4ffff" // Encoded CBOR + ) + expect(spendDecoded).toEqual(spendInput) + + // Test Integer + const intInput = 42n + const intEncoded = Data.Codec({ + schema: RedeemAction + }).Encode.cborHex(intInput) + const intDecoded = Data.Codec({ + schema: RedeemAction + }).Decode.cborHex(intEncoded) + + expect(intEncoded).toEqual( + "d87b9f182aff" // Encoded CBOR + ) + expect(intDecoded).toEqual(intInput) + }) + }) + }) + + describe("Complex Combinations", () => { + it("should handle complex nested schemas", () => { + const Asset = TSchema.Struct({ + policyId: TSchema.ByteArray, + assetName: TSchema.ByteArray + }) + + const TokenList = TSchema.Array(Asset) + + const Wallet = TSchema.Struct({ + owner: TSchema.ByteArray, + tokens: TokenList, + active: TSchema.Boolean, + metadata: TSchema.NullOr(TSchema.Map(TSchema.ByteArray, TSchema.ByteArray)) + }) + + const input = { + owner: "deadbeef", + tokens: [ + { policyId: "cafe01", assetName: "deadbeef01" }, + { policyId: "cafe02", assetName: "deadbeef02" } + ], + active: true, + metadata: new Map([ + ["cafe01", "deadbeef01"], + ["cafe02", "deadbeef02"] + ]) + } + + const encoded = Data.Codec({ + schema: Wallet + }).Encode.cborHex(input) + const decoded = Data.Codec({ + schema: Wallet + }).Decode.cborHex(encoded) + + expect(decoded).toEqual(input) + }) + }) + + describe("Error Handling", () => { + it("should provide helpful error messages for decoding failures", () => { + const TestStruct = TSchema.Struct({ + field1: TSchema.Integer, + field2: TSchema.ByteArray + }) + + const invalidData = "d87a9f010203d87a9f010203" // Invalid ByteArray + + expect(() => + Data.Codec({ + schema: TestStruct + }).Decode.cborHex(invalidData) + ).toThrow(Data.DataError) + }) + + it("should throw comprehensible errors for schema mismatches", () => { + const StringSchema = TSchema.ByteArray + const IntegerData = "d87a9f010203" // Invalid Integer + + expect(() => + Data.Codec({ + schema: StringSchema + }).Decode.cborHex(IntegerData) + ).toThrow() + + const BooleanData = "d87a80" // Invalid Boolean + expect(() => + Data.Codec({ + schema: TSchema.Integer + }).Decode.cborHex(BooleanData) + ).toThrow() + }) + }) +}) diff --git a/packages/evolution/test/golden/byteArray.golden.json b/packages/evolution/test/golden/byteArray.golden.json new file mode 100644 index 00000000..98248bdf --- /dev/null +++ b/packages/evolution/test/golden/byteArray.golden.json @@ -0,0 +1,56002 @@ +[ + { + "index": 0, + "sample": { + "_tag": "ByteArray", + "bytearray": "e6d2" + }, + "cborHex": "42e6d2", + "cborBytes": [66, 230, 210], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1, + "sample": { + "_tag": "ByteArray", + "bytearray": "b0fe0443" + }, + "cborHex": "44b0fe0443", + "cborBytes": [68, 176, 254, 4, 67], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2, + "sample": { + "_tag": "ByteArray", + "bytearray": "06300103020002d200" + }, + "cborHex": "4906300103020002d200", + "cborBytes": [73, 6, 48, 1, 3, 2, 0, 2, 210, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3, + "sample": { + "_tag": "ByteArray", + "bytearray": "0704" + }, + "cborHex": "420704", + "cborBytes": [66, 7, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 4, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd05056eaa00050f" + }, + "cborHex": "48fd05056eaa00050f", + "cborBytes": [72, 253, 5, 5, 110, 170, 0, 5, 15], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 5, + "sample": { + "_tag": "ByteArray", + "bytearray": "07f9d904" + }, + "cborHex": "4407f9d904", + "cborBytes": [68, 7, 249, 217, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 6, + "sample": { + "_tag": "ByteArray", + "bytearray": "f3011c3305462dff03" + }, + "cborHex": "49f3011c3305462dff03", + "cborBytes": [73, 243, 1, 28, 51, 5, 70, 45, 255, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 7, + "sample": { + "_tag": "ByteArray", + "bytearray": "35f9f82a03ff01fd06" + }, + "cborHex": "4935f9f82a03ff01fd06", + "cborBytes": [73, 53, 249, 248, 42, 3, 255, 1, 253, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 8, + "sample": { + "_tag": "ByteArray", + "bytearray": "5c3304" + }, + "cborHex": "435c3304", + "cborBytes": [67, 92, 51, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 9, + "sample": { + "_tag": "ByteArray", + "bytearray": "0be587360604" + }, + "cborHex": "460be587360604", + "cborBytes": [70, 11, 229, 135, 54, 6, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 10, + "sample": { + "_tag": "ByteArray", + "bytearray": "05f70006" + }, + "cborHex": "4405f70006", + "cborBytes": [68, 5, 247, 0, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 11, + "sample": { + "_tag": "ByteArray", + "bytearray": "8a1a6d2409493bf0" + }, + "cborHex": "488a1a6d2409493bf0", + "cborBytes": [72, 138, 26, 109, 36, 9, 73, 59, 240], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 12, + "sample": { + "_tag": "ByteArray", + "bytearray": "5bd2bfac371fdea6f2" + }, + "cborHex": "495bd2bfac371fdea6f2", + "cborBytes": [73, 91, 210, 191, 172, 55, 31, 222, 166, 242], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 13, + "sample": { + "_tag": "ByteArray", + "bytearray": "ca90fcdee69c38584d0caf" + }, + "cborHex": "4bca90fcdee69c38584d0caf", + "cborBytes": [75, 202, 144, 252, 222, 230, 156, 56, 88, 77, 12, 175], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 14, + "sample": { + "_tag": "ByteArray", + "bytearray": "9ddf71d4a6c8e4" + }, + "cborHex": "479ddf71d4a6c8e4", + "cborBytes": [71, 157, 223, 113, 212, 166, 200, 228], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 15, + "sample": { + "_tag": "ByteArray", + "bytearray": "7e25a8dd46ddb0fdac06" + }, + "cborHex": "4a7e25a8dd46ddb0fdac06", + "cborBytes": [74, 126, 37, 168, 221, 70, 221, 176, 253, 172, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 16, + "sample": { + "_tag": "ByteArray", + "bytearray": "ba02" + }, + "cborHex": "42ba02", + "cborBytes": [66, 186, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 17, + "sample": { + "_tag": "ByteArray", + "bytearray": "bbacd9d667275d5b9e" + }, + "cborHex": "49bbacd9d667275d5b9e", + "cborBytes": [73, 187, 172, 217, 214, 103, 39, 93, 91, 158], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 18, + "sample": { + "_tag": "ByteArray", + "bytearray": "00b9209ec2045709" + }, + "cborHex": "4800b9209ec2045709", + "cborBytes": [72, 0, 185, 32, 158, 194, 4, 87, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 19, + "sample": { + "_tag": "ByteArray", + "bytearray": "55" + }, + "cborHex": "4155", + "cborBytes": [65, 85], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 20, + "sample": { + "_tag": "ByteArray", + "bytearray": "1dd9d3" + }, + "cborHex": "431dd9d3", + "cborBytes": [67, 29, 217, 211], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 21, + "sample": { + "_tag": "ByteArray", + "bytearray": "100602f9066e03ff" + }, + "cborHex": "48100602f9066e03ff", + "cborBytes": [72, 16, 6, 2, 249, 6, 110, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 22, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff72" + }, + "cborHex": "42ff72", + "cborBytes": [66, 255, 114], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 23, + "sample": { + "_tag": "ByteArray", + "bytearray": "8b052b3c9382a57ebbbefb" + }, + "cborHex": "4b8b052b3c9382a57ebbbefb", + "cborBytes": [75, 139, 5, 43, 60, 147, 130, 165, 126, 187, 190, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 24, + "sample": { + "_tag": "ByteArray", + "bytearray": "f83fbc87775cf61c0d" + }, + "cborHex": "49f83fbc87775cf61c0d", + "cborBytes": [73, 248, 63, 188, 135, 119, 92, 246, 28, 13], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 25, + "sample": { + "_tag": "ByteArray", + "bytearray": "94a2" + }, + "cborHex": "4294a2", + "cborBytes": [66, 148, 162], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 26, + "sample": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "cborHex": "4101", + "cborBytes": [65, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 27, + "sample": { + "_tag": "ByteArray", + "bytearray": "85fdc7c206" + }, + "cborHex": "4585fdc7c206", + "cborBytes": [69, 133, 253, 199, 194, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 28, + "sample": { + "_tag": "ByteArray", + "bytearray": "7c0007c5fd02fe" + }, + "cborHex": "477c0007c5fd02fe", + "cborBytes": [71, 124, 0, 7, 197, 253, 2, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 29, + "sample": { + "_tag": "ByteArray", + "bytearray": "4b673f30f557" + }, + "cborHex": "464b673f30f557", + "cborBytes": [70, 75, 103, 63, 48, 245, 87], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 30, + "sample": { + "_tag": "ByteArray", + "bytearray": "12dfb4d5da6c909109" + }, + "cborHex": "4912dfb4d5da6c909109", + "cborBytes": [73, 18, 223, 180, 213, 218, 108, 144, 145, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 31, + "sample": { + "_tag": "ByteArray", + "bytearray": "7230" + }, + "cborHex": "427230", + "cborBytes": [66, 114, 48], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 32, + "sample": { + "_tag": "ByteArray", + "bytearray": "aa31a2e630260b13813d976e" + }, + "cborHex": "4caa31a2e630260b13813d976e", + "cborBytes": [76, 170, 49, 162, 230, 48, 38, 11, 19, 129, 61, 151, 110], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 33, + "sample": { + "_tag": "ByteArray", + "bytearray": "2b322f5d3239" + }, + "cborHex": "462b322f5d3239", + "cborBytes": [70, 43, 50, 47, 93, 50, 57], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 34, + "sample": { + "_tag": "ByteArray", + "bytearray": "0404feaffdf189a306fa" + }, + "cborHex": "4a0404feaffdf189a306fa", + "cborBytes": [74, 4, 4, 254, 175, 253, 241, 137, 163, 6, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 35, + "sample": { + "_tag": "ByteArray", + "bytearray": "0702aea5df" + }, + "cborHex": "450702aea5df", + "cborBytes": [69, 7, 2, 174, 165, 223], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 36, + "sample": { + "_tag": "ByteArray", + "bytearray": "910502029603008affd40300" + }, + "cborHex": "4c910502029603008affd40300", + "cborBytes": [76, 145, 5, 2, 2, 150, 3, 0, 138, 255, 212, 3, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 37, + "sample": { + "_tag": "ByteArray", + "bytearray": "01ccfd" + }, + "cborHex": "4301ccfd", + "cborBytes": [67, 1, 204, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 38, + "sample": { + "_tag": "ByteArray", + "bytearray": "0327dafc73" + }, + "cborHex": "450327dafc73", + "cborBytes": [69, 3, 39, 218, 252, 115], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 39, + "sample": { + "_tag": "ByteArray", + "bytearray": "ca0401fb2ff806039bb6a8" + }, + "cborHex": "4bca0401fb2ff806039bb6a8", + "cborBytes": [75, 202, 4, 1, 251, 47, 248, 6, 3, 155, 182, 168], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 40, + "sample": { + "_tag": "ByteArray", + "bytearray": "dd" + }, + "cborHex": "41dd", + "cborBytes": [65, 221], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 41, + "sample": { + "_tag": "ByteArray", + "bytearray": "f6c6cb026b539a" + }, + "cborHex": "47f6c6cb026b539a", + "cborBytes": [71, 246, 198, 203, 2, 107, 83, 154], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 42, + "sample": { + "_tag": "ByteArray", + "bytearray": "27e4cd" + }, + "cborHex": "4327e4cd", + "cborBytes": [67, 39, 228, 205], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 43, + "sample": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "cborHex": "4106", + "cborBytes": [65, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 44, + "sample": { + "_tag": "ByteArray", + "bytearray": "7ab400" + }, + "cborHex": "437ab400", + "cborBytes": [67, 122, 180, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 45, + "sample": { + "_tag": "ByteArray", + "bytearray": "8f3dfa07fe6c0305" + }, + "cborHex": "488f3dfa07fe6c0305", + "cborBytes": [72, 143, 61, 250, 7, 254, 108, 3, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 46, + "sample": { + "_tag": "ByteArray", + "bytearray": "0478" + }, + "cborHex": "420478", + "cborBytes": [66, 4, 120], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 47, + "sample": { + "_tag": "ByteArray", + "bytearray": "250f342e052782a9bf" + }, + "cborHex": "49250f342e052782a9bf", + "cborBytes": [73, 37, 15, 52, 46, 5, 39, 130, 169, 191], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 48, + "sample": { + "_tag": "ByteArray", + "bytearray": "a943780626a95a42" + }, + "cborHex": "48a943780626a95a42", + "cborBytes": [72, 169, 67, 120, 6, 38, 169, 90, 66], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 49, + "sample": { + "_tag": "ByteArray", + "bytearray": "50" + }, + "cborHex": "4150", + "cborBytes": [65, 80], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 50, + "sample": { + "_tag": "ByteArray", + "bytearray": "e9" + }, + "cborHex": "41e9", + "cborBytes": [65, 233], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 51, + "sample": { + "_tag": "ByteArray", + "bytearray": "4d5c4027" + }, + "cborHex": "444d5c4027", + "cborBytes": [68, 77, 92, 64, 39], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 52, + "sample": { + "_tag": "ByteArray", + "bytearray": "ed9cd184f29dc7" + }, + "cborHex": "47ed9cd184f29dc7", + "cborBytes": [71, 237, 156, 209, 132, 242, 157, 199], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 53, + "sample": { + "_tag": "ByteArray", + "bytearray": "35fb811de5625823288e" + }, + "cborHex": "4a35fb811de5625823288e", + "cborBytes": [74, 53, 251, 129, 29, 229, 98, 88, 35, 40, 142], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 54, + "sample": { + "_tag": "ByteArray", + "bytearray": "01c8ff13" + }, + "cborHex": "4401c8ff13", + "cborBytes": [68, 1, 200, 255, 19], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 55, + "sample": { + "_tag": "ByteArray", + "bytearray": "07056ebd69fb05" + }, + "cborHex": "4707056ebd69fb05", + "cborBytes": [71, 7, 5, 110, 189, 105, 251, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 56, + "sample": { + "_tag": "ByteArray", + "bytearray": "496deb" + }, + "cborHex": "43496deb", + "cborBytes": [67, 73, 109, 235], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 57, + "sample": { + "_tag": "ByteArray", + "bytearray": "2e0a0406" + }, + "cborHex": "442e0a0406", + "cborBytes": [68, 46, 10, 4, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 58, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8c87b" + }, + "cborHex": "43f8c87b", + "cborBytes": [67, 248, 200, 123], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 59, + "sample": { + "_tag": "ByteArray", + "bytearray": "b036eff1654ce5061d6d" + }, + "cborHex": "4ab036eff1654ce5061d6d", + "cborBytes": [74, 176, 54, 239, 241, 101, 76, 229, 6, 29, 109], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 60, + "sample": { + "_tag": "ByteArray", + "bytearray": "9afd0c" + }, + "cborHex": "439afd0c", + "cborBytes": [67, 154, 253, 12], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 61, + "sample": { + "_tag": "ByteArray", + "bytearray": "8bcc410102020601" + }, + "cborHex": "488bcc410102020601", + "cborBytes": [72, 139, 204, 65, 1, 2, 2, 6, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 62, + "sample": { + "_tag": "ByteArray", + "bytearray": "92faf8060303" + }, + "cborHex": "4692faf8060303", + "cborBytes": [70, 146, 250, 248, 6, 3, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 63, + "sample": { + "_tag": "ByteArray", + "bytearray": "5de2affcb108569c4cad7a14" + }, + "cborHex": "4c5de2affcb108569c4cad7a14", + "cborBytes": [76, 93, 226, 175, 252, 177, 8, 86, 156, 76, 173, 122, 20], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 64, + "sample": { + "_tag": "ByteArray", + "bytearray": "fdfc93" + }, + "cborHex": "43fdfc93", + "cborBytes": [67, 253, 252, 147], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 65, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9" + }, + "cborHex": "41f9", + "cborBytes": [65, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 66, + "sample": { + "_tag": "ByteArray", + "bytearray": "47946896f59af6a2" + }, + "cborHex": "4847946896f59af6a2", + "cborBytes": [72, 71, 148, 104, 150, 245, 154, 246, 162], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 67, + "sample": { + "_tag": "ByteArray", + "bytearray": "34ea9b" + }, + "cborHex": "4334ea9b", + "cborBytes": [67, 52, 234, 155], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 68, + "sample": { + "_tag": "ByteArray", + "bytearray": "43bbc62577" + }, + "cborHex": "4543bbc62577", + "cborBytes": [69, 67, 187, 198, 37, 119], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 69, + "sample": { + "_tag": "ByteArray", + "bytearray": "00007a" + }, + "cborHex": "4300007a", + "cborBytes": [67, 0, 0, 122], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 70, + "sample": { + "_tag": "ByteArray", + "bytearray": "287a58b836b57ffefc" + }, + "cborHex": "49287a58b836b57ffefc", + "cborBytes": [73, 40, 122, 88, 184, 54, 181, 127, 254, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 71, + "sample": { + "_tag": "ByteArray", + "bytearray": "0206" + }, + "cborHex": "420206", + "cborBytes": [66, 2, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 72, + "sample": { + "_tag": "ByteArray", + "bytearray": "0e1fe1a1" + }, + "cborHex": "440e1fe1a1", + "cborBytes": [68, 14, 31, 225, 161], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 73, + "sample": { + "_tag": "ByteArray", + "bytearray": "03" + }, + "cborHex": "4103", + "cborBytes": [65, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 74, + "sample": { + "_tag": "ByteArray", + "bytearray": "f600" + }, + "cborHex": "42f600", + "cborBytes": [66, 246, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 75, + "sample": { + "_tag": "ByteArray", + "bytearray": "0fc5204d52" + }, + "cborHex": "450fc5204d52", + "cborBytes": [69, 15, 197, 32, 77, 82], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 76, + "sample": { + "_tag": "ByteArray", + "bytearray": "e11caa0ad746c4d6" + }, + "cborHex": "48e11caa0ad746c4d6", + "cborBytes": [72, 225, 28, 170, 10, 215, 70, 196, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 77, + "sample": { + "_tag": "ByteArray", + "bytearray": "07effc" + }, + "cborHex": "4307effc", + "cborBytes": [67, 7, 239, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 78, + "sample": { + "_tag": "ByteArray", + "bytearray": "acc907450502" + }, + "cborHex": "46acc907450502", + "cborBytes": [70, 172, 201, 7, 69, 5, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 79, + "sample": { + "_tag": "ByteArray", + "bytearray": "0531" + }, + "cborHex": "420531", + "cborBytes": [66, 5, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 80, + "sample": { + "_tag": "ByteArray", + "bytearray": "050003729e9bfcf2" + }, + "cborHex": "48050003729e9bfcf2", + "cborBytes": [72, 5, 0, 3, 114, 158, 155, 252, 242], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 81, + "sample": { + "_tag": "ByteArray", + "bytearray": "67e48b8005ff" + }, + "cborHex": "4667e48b8005ff", + "cborBytes": [70, 103, 228, 139, 128, 5, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 82, + "sample": { + "_tag": "ByteArray", + "bytearray": "69a7e476" + }, + "cborHex": "4469a7e476", + "cborBytes": [68, 105, 167, 228, 118], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 83, + "sample": { + "_tag": "ByteArray", + "bytearray": "033a98022503fc" + }, + "cborHex": "47033a98022503fc", + "cborBytes": [71, 3, 58, 152, 2, 37, 3, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 84, + "sample": { + "_tag": "ByteArray", + "bytearray": "4b378daa38027009c4" + }, + "cborHex": "494b378daa38027009c4", + "cborBytes": [73, 75, 55, 141, 170, 56, 2, 112, 9, 196], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 85, + "sample": { + "_tag": "ByteArray", + "bytearray": "470207" + }, + "cborHex": "43470207", + "cborBytes": [67, 71, 2, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 86, + "sample": { + "_tag": "ByteArray", + "bytearray": "2706fb" + }, + "cborHex": "432706fb", + "cborBytes": [67, 39, 6, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 87, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8" + }, + "cborHex": "41f8", + "cborBytes": [65, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 88, + "sample": { + "_tag": "ByteArray", + "bytearray": "0eb9fa3d" + }, + "cborHex": "440eb9fa3d", + "cborBytes": [68, 14, 185, 250, 61], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 89, + "sample": { + "_tag": "ByteArray", + "bytearray": "78f97b1297" + }, + "cborHex": "4578f97b1297", + "cborBytes": [69, 120, 249, 123, 18, 151], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 90, + "sample": { + "_tag": "ByteArray", + "bytearray": "dcc8e5" + }, + "cborHex": "43dcc8e5", + "cborBytes": [67, 220, 200, 229], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 91, + "sample": { + "_tag": "ByteArray", + "bytearray": "00fe" + }, + "cborHex": "4200fe", + "cborBytes": [66, 0, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 92, + "sample": { + "_tag": "ByteArray", + "bytearray": "c15201" + }, + "cborHex": "43c15201", + "cborBytes": [67, 193, 82, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 93, + "sample": { + "_tag": "ByteArray", + "bytearray": "6432" + }, + "cborHex": "426432", + "cborBytes": [66, 100, 50], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 94, + "sample": { + "_tag": "ByteArray", + "bytearray": "b5" + }, + "cborHex": "41b5", + "cborBytes": [65, 181], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 95, + "sample": { + "_tag": "ByteArray", + "bytearray": "f90a01bf80ff00000000b9fc" + }, + "cborHex": "4cf90a01bf80ff00000000b9fc", + "cborBytes": [76, 249, 10, 1, 191, 128, 255, 0, 0, 0, 0, 185, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 96, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe" + }, + "cborHex": "41fe", + "cborBytes": [65, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 97, + "sample": { + "_tag": "ByteArray", + "bytearray": "8c83d8fef458c1fba66213" + }, + "cborHex": "4b8c83d8fef458c1fba66213", + "cborBytes": [75, 140, 131, 216, 254, 244, 88, 193, 251, 166, 98, 19], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 98, + "sample": { + "_tag": "ByteArray", + "bytearray": "0603" + }, + "cborHex": "420603", + "cborBytes": [66, 6, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 99, + "sample": { + "_tag": "ByteArray", + "bytearray": "8727c0a42896" + }, + "cborHex": "468727c0a42896", + "cborBytes": [70, 135, 39, 192, 164, 40, 150], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 100, + "sample": { + "_tag": "ByteArray", + "bytearray": "ea9b47" + }, + "cborHex": "43ea9b47", + "cborBytes": [67, 234, 155, 71], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 101, + "sample": { + "_tag": "ByteArray", + "bytearray": "f90006ff" + }, + "cborHex": "44f90006ff", + "cborBytes": [68, 249, 0, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 102, + "sample": { + "_tag": "ByteArray", + "bytearray": "85" + }, + "cborHex": "4185", + "cborBytes": [65, 133], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 103, + "sample": { + "_tag": "ByteArray", + "bytearray": "01f303466419bf04e46a" + }, + "cborHex": "4a01f303466419bf04e46a", + "cborBytes": [74, 1, 243, 3, 70, 100, 25, 191, 4, 228, 106], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 104, + "sample": { + "_tag": "ByteArray", + "bytearray": "0301910411" + }, + "cborHex": "450301910411", + "cborBytes": [69, 3, 1, 145, 4, 17], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 105, + "sample": { + "_tag": "ByteArray", + "bytearray": "180148" + }, + "cborHex": "43180148", + "cborBytes": [67, 24, 1, 72], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 106, + "sample": { + "_tag": "ByteArray", + "bytearray": "cb84f9417725b655" + }, + "cborHex": "48cb84f9417725b655", + "cborBytes": [72, 203, 132, 249, 65, 119, 37, 182, 85], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 107, + "sample": { + "_tag": "ByteArray", + "bytearray": "012f" + }, + "cborHex": "42012f", + "cborBytes": [66, 1, 47], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 108, + "sample": { + "_tag": "ByteArray", + "bytearray": "de02fd220504" + }, + "cborHex": "46de02fd220504", + "cborBytes": [70, 222, 2, 253, 34, 5, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 109, + "sample": { + "_tag": "ByteArray", + "bytearray": "c15679" + }, + "cborHex": "43c15679", + "cborBytes": [67, 193, 86, 121], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 110, + "sample": { + "_tag": "ByteArray", + "bytearray": "3b9916" + }, + "cborHex": "433b9916", + "cborBytes": [67, 59, 153, 22], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 111, + "sample": { + "_tag": "ByteArray", + "bytearray": "6305fd06fd010736035b06" + }, + "cborHex": "4b6305fd06fd010736035b06", + "cborBytes": [75, 99, 5, 253, 6, 253, 1, 7, 54, 3, 91, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 112, + "sample": { + "_tag": "ByteArray", + "bytearray": "a4f56e" + }, + "cborHex": "43a4f56e", + "cborBytes": [67, 164, 245, 110], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 113, + "sample": { + "_tag": "ByteArray", + "bytearray": "71a50206ff" + }, + "cborHex": "4571a50206ff", + "cborBytes": [69, 113, 165, 2, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 114, + "sample": { + "_tag": "ByteArray", + "bytearray": "7ebb06469678c4fd8d9a8c07" + }, + "cborHex": "4c7ebb06469678c4fd8d9a8c07", + "cborBytes": [76, 126, 187, 6, 70, 150, 120, 196, 253, 141, 154, 140, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 115, + "sample": { + "_tag": "ByteArray", + "bytearray": "0c" + }, + "cborHex": "410c", + "cborBytes": [65, 12], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 116, + "sample": { + "_tag": "ByteArray", + "bytearray": "825b98a1" + }, + "cborHex": "44825b98a1", + "cborBytes": [68, 130, 91, 152, 161], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 117, + "sample": { + "_tag": "ByteArray", + "bytearray": "1c" + }, + "cborHex": "411c", + "cborBytes": [65, 28], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 118, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd03" + }, + "cborHex": "42fd03", + "cborBytes": [66, 253, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 119, + "sample": { + "_tag": "ByteArray", + "bytearray": "7e581862be" + }, + "cborHex": "457e581862be", + "cborBytes": [69, 126, 88, 24, 98, 190], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 120, + "sample": { + "_tag": "ByteArray", + "bytearray": "0402" + }, + "cborHex": "420402", + "cborBytes": [66, 4, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 121, + "sample": { + "_tag": "ByteArray", + "bytearray": "8ea28a3592" + }, + "cborHex": "458ea28a3592", + "cborBytes": [69, 142, 162, 138, 53, 146], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 122, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff00b300" + }, + "cborHex": "44ff00b300", + "cborBytes": [68, 255, 0, 179, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 123, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "cborHex": "41ff", + "cborBytes": [65, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 124, + "sample": { + "_tag": "ByteArray", + "bytearray": "06e8" + }, + "cborHex": "4206e8", + "cborBytes": [66, 6, 232], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 125, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc030007" + }, + "cborHex": "44fc030007", + "cborBytes": [68, 252, 3, 0, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 126, + "sample": { + "_tag": "ByteArray", + "bytearray": "3c7ef6ab36" + }, + "cborHex": "453c7ef6ab36", + "cborBytes": [69, 60, 126, 246, 171, 54], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 127, + "sample": { + "_tag": "ByteArray", + "bytearray": "d8f442e4c15dff59247c73" + }, + "cborHex": "4bd8f442e4c15dff59247c73", + "cborBytes": [75, 216, 244, 66, 228, 193, 93, 255, 89, 36, 124, 115], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 128, + "sample": { + "_tag": "ByteArray", + "bytearray": "cc6e88534a467d508d91" + }, + "cborHex": "4acc6e88534a467d508d91", + "cborBytes": [74, 204, 110, 136, 83, 74, 70, 125, 80, 141, 145], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 129, + "sample": { + "_tag": "ByteArray", + "bytearray": "f413d1b03c" + }, + "cborHex": "45f413d1b03c", + "cborBytes": [69, 244, 19, 209, 176, 60], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 130, + "sample": { + "_tag": "ByteArray", + "bytearray": "0726" + }, + "cborHex": "420726", + "cborBytes": [66, 7, 38], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 131, + "sample": { + "_tag": "ByteArray", + "bytearray": "f3f91f3b" + }, + "cborHex": "44f3f91f3b", + "cborBytes": [68, 243, 249, 31, 59], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 132, + "sample": { + "_tag": "ByteArray", + "bytearray": "70186210" + }, + "cborHex": "4470186210", + "cborBytes": [68, 112, 24, 98, 16], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 133, + "sample": { + "_tag": "ByteArray", + "bytearray": "004c" + }, + "cborHex": "42004c", + "cborBytes": [66, 0, 76], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 134, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb" + }, + "cborHex": "41fb", + "cborBytes": [65, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 135, + "sample": { + "_tag": "ByteArray", + "bytearray": "aa43a6c200355ed1fe" + }, + "cborHex": "49aa43a6c200355ed1fe", + "cborBytes": [73, 170, 67, 166, 194, 0, 53, 94, 209, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 136, + "sample": { + "_tag": "ByteArray", + "bytearray": "d5686ca442" + }, + "cborHex": "45d5686ca442", + "cborBytes": [69, 213, 104, 108, 164, 66], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 137, + "sample": { + "_tag": "ByteArray", + "bytearray": "ddf0a58bc5336ee133" + }, + "cborHex": "49ddf0a58bc5336ee133", + "cborBytes": [73, 221, 240, 165, 139, 197, 51, 110, 225, 51], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 138, + "sample": { + "_tag": "ByteArray", + "bytearray": "07ff04" + }, + "cborHex": "4307ff04", + "cborBytes": [67, 7, 255, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 139, + "sample": { + "_tag": "ByteArray", + "bytearray": "3407fd45" + }, + "cborHex": "443407fd45", + "cborBytes": [68, 52, 7, 253, 69], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 140, + "sample": { + "_tag": "ByteArray", + "bytearray": "b49f21b253bc18b7efb76f26" + }, + "cborHex": "4cb49f21b253bc18b7efb76f26", + "cborBytes": [76, 180, 159, 33, 178, 83, 188, 24, 183, 239, 183, 111, 38], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 141, + "sample": { + "_tag": "ByteArray", + "bytearray": "9d04b2a3" + }, + "cborHex": "449d04b2a3", + "cborBytes": [68, 157, 4, 178, 163], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 142, + "sample": { + "_tag": "ByteArray", + "bytearray": "46b2bc0d610be2c3" + }, + "cborHex": "4846b2bc0d610be2c3", + "cborBytes": [72, 70, 178, 188, 13, 97, 11, 226, 195], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 143, + "sample": { + "_tag": "ByteArray", + "bytearray": "5646ea26bed55f74" + }, + "cborHex": "485646ea26bed55f74", + "cborBytes": [72, 86, 70, 234, 38, 190, 213, 95, 116], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 144, + "sample": { + "_tag": "ByteArray", + "bytearray": "8eff" + }, + "cborHex": "428eff", + "cborBytes": [66, 142, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 145, + "sample": { + "_tag": "ByteArray", + "bytearray": "85cd233a3e3c32537e9f1c8e" + }, + "cborHex": "4c85cd233a3e3c32537e9f1c8e", + "cborBytes": [76, 133, 205, 35, 58, 62, 60, 50, 83, 126, 159, 28, 142], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 146, + "sample": { + "_tag": "ByteArray", + "bytearray": "315316fa0e" + }, + "cborHex": "45315316fa0e", + "cborBytes": [69, 49, 83, 22, 250, 14], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 147, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa0e938c0092" + }, + "cborHex": "46fa0e938c0092", + "cborBytes": [70, 250, 14, 147, 140, 0, 146], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 148, + "sample": { + "_tag": "ByteArray", + "bytearray": "c9159e5a7ccbb4" + }, + "cborHex": "47c9159e5a7ccbb4", + "cborBytes": [71, 201, 21, 158, 90, 124, 203, 180], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 149, + "sample": { + "_tag": "ByteArray", + "bytearray": "53960137451461df8c180cab" + }, + "cborHex": "4c53960137451461df8c180cab", + "cborBytes": [76, 83, 150, 1, 55, 69, 20, 97, 223, 140, 24, 12, 171], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 150, + "sample": { + "_tag": "ByteArray", + "bytearray": "066702" + }, + "cborHex": "43066702", + "cborBytes": [67, 6, 103, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 151, + "sample": { + "_tag": "ByteArray", + "bytearray": "21" + }, + "cborHex": "4121", + "cborBytes": [65, 33], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 152, + "sample": { + "_tag": "ByteArray", + "bytearray": "76b75a0274" + }, + "cborHex": "4576b75a0274", + "cborBytes": [69, 118, 183, 90, 2, 116], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 153, + "sample": { + "_tag": "ByteArray", + "bytearray": "6f792d20941637e8" + }, + "cborHex": "486f792d20941637e8", + "cborBytes": [72, 111, 121, 45, 32, 148, 22, 55, 232], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 154, + "sample": { + "_tag": "ByteArray", + "bytearray": "2e64ff49bad980" + }, + "cborHex": "472e64ff49bad980", + "cborBytes": [71, 46, 100, 255, 73, 186, 217, 128], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 155, + "sample": { + "_tag": "ByteArray", + "bytearray": "857197eb" + }, + "cborHex": "44857197eb", + "cborBytes": [68, 133, 113, 151, 235], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 156, + "sample": { + "_tag": "ByteArray", + "bytearray": "b0f814e11510" + }, + "cborHex": "46b0f814e11510", + "cborBytes": [70, 176, 248, 20, 225, 21, 16], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 157, + "sample": { + "_tag": "ByteArray", + "bytearray": "99" + }, + "cborHex": "4199", + "cborBytes": [65, 153], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 158, + "sample": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "cborHex": "4100", + "cborBytes": [65, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 159, + "sample": { + "_tag": "ByteArray", + "bytearray": "65498cdb6c9718d3" + }, + "cborHex": "4865498cdb6c9718d3", + "cborBytes": [72, 101, 73, 140, 219, 108, 151, 24, 211], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 160, + "sample": { + "_tag": "ByteArray", + "bytearray": "03ff" + }, + "cborHex": "4203ff", + "cborBytes": [66, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 161, + "sample": { + "_tag": "ByteArray", + "bytearray": "8bea224d05f055a207" + }, + "cborHex": "498bea224d05f055a207", + "cborBytes": [73, 139, 234, 34, 77, 5, 240, 85, 162, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 162, + "sample": { + "_tag": "ByteArray", + "bytearray": "a4a8c4f47c7b" + }, + "cborHex": "46a4a8c4f47c7b", + "cborBytes": [70, 164, 168, 196, 244, 124, 123], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 163, + "sample": { + "_tag": "ByteArray", + "bytearray": "cc" + }, + "cborHex": "41cc", + "cborBytes": [65, 204], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 164, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff0300" + }, + "cborHex": "43ff0300", + "cborBytes": [67, 255, 3, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 165, + "sample": { + "_tag": "ByteArray", + "bytearray": "a40aaf68f8c2" + }, + "cborHex": "46a40aaf68f8c2", + "cborBytes": [70, 164, 10, 175, 104, 248, 194], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 166, + "sample": { + "_tag": "ByteArray", + "bytearray": "e81229c5ff6460098681528d" + }, + "cborHex": "4ce81229c5ff6460098681528d", + "cborBytes": [76, 232, 18, 41, 197, 255, 100, 96, 9, 134, 129, 82, 141], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 167, + "sample": { + "_tag": "ByteArray", + "bytearray": "592bf8d168ef" + }, + "cborHex": "46592bf8d168ef", + "cborBytes": [70, 89, 43, 248, 209, 104, 239], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 168, + "sample": { + "_tag": "ByteArray", + "bytearray": "f4055c134ffcfafa6592fafc" + }, + "cborHex": "4cf4055c134ffcfafa6592fafc", + "cborBytes": [76, 244, 5, 92, 19, 79, 252, 250, 250, 101, 146, 250, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 169, + "sample": { + "_tag": "ByteArray", + "bytearray": "e441ab32eb14e8a14b80" + }, + "cborHex": "4ae441ab32eb14e8a14b80", + "cborBytes": [74, 228, 65, 171, 50, 235, 20, 232, 161, 75, 128], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 170, + "sample": { + "_tag": "ByteArray", + "bytearray": "a24b9bd3eef5705c62248cc2" + }, + "cborHex": "4ca24b9bd3eef5705c62248cc2", + "cborBytes": [76, 162, 75, 155, 211, 238, 245, 112, 92, 98, 36, 140, 194], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 171, + "sample": { + "_tag": "ByteArray", + "bytearray": "a45984fd91" + }, + "cborHex": "45a45984fd91", + "cborBytes": [69, 164, 89, 132, 253, 145], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 172, + "sample": { + "_tag": "ByteArray", + "bytearray": "0d" + }, + "cborHex": "410d", + "cborBytes": [65, 13], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 173, + "sample": { + "_tag": "ByteArray", + "bytearray": "327c821dd321bc3dd1ab86" + }, + "cborHex": "4b327c821dd321bc3dd1ab86", + "cborBytes": [75, 50, 124, 130, 29, 211, 33, 188, 61, 209, 171, 134], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 174, + "sample": { + "_tag": "ByteArray", + "bytearray": "1d01fbcf98ccd2d601" + }, + "cborHex": "491d01fbcf98ccd2d601", + "cborBytes": [73, 29, 1, 251, 207, 152, 204, 210, 214, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 175, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbe6fb5a060035" + }, + "cborHex": "47fbe6fb5a060035", + "cborBytes": [71, 251, 230, 251, 90, 6, 0, 53], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 176, + "sample": { + "_tag": "ByteArray", + "bytearray": "f802" + }, + "cborHex": "42f802", + "cborBytes": [66, 248, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 177, + "sample": { + "_tag": "ByteArray", + "bytearray": "df0ce646878d116d4c" + }, + "cborHex": "49df0ce646878d116d4c", + "cborBytes": [73, 223, 12, 230, 70, 135, 141, 17, 109, 76], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 178, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff175e" + }, + "cborHex": "43ff175e", + "cborBytes": [67, 255, 23, 94], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 179, + "sample": { + "_tag": "ByteArray", + "bytearray": "9c" + }, + "cborHex": "419c", + "cborBytes": [65, 156], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 180, + "sample": { + "_tag": "ByteArray", + "bytearray": "db008bc13547d5b25ad6" + }, + "cborHex": "4adb008bc13547d5b25ad6", + "cborBytes": [74, 219, 0, 139, 193, 53, 71, 213, 178, 90, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 181, + "sample": { + "_tag": "ByteArray", + "bytearray": "da97de70" + }, + "cborHex": "44da97de70", + "cborBytes": [68, 218, 151, 222, 112], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 182, + "sample": { + "_tag": "ByteArray", + "bytearray": "f304" + }, + "cborHex": "42f304", + "cborBytes": [66, 243, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 183, + "sample": { + "_tag": "ByteArray", + "bytearray": "03c90300063e" + }, + "cborHex": "4603c90300063e", + "cborBytes": [70, 3, 201, 3, 0, 6, 62], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 184, + "sample": { + "_tag": "ByteArray", + "bytearray": "af910504" + }, + "cborHex": "44af910504", + "cborBytes": [68, 175, 145, 5, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 185, + "sample": { + "_tag": "ByteArray", + "bytearray": "04004d9f26fb0bf4" + }, + "cborHex": "4804004d9f26fb0bf4", + "cborBytes": [72, 4, 0, 77, 159, 38, 251, 11, 244], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 186, + "sample": { + "_tag": "ByteArray", + "bytearray": "0b3d93d3ce" + }, + "cborHex": "450b3d93d3ce", + "cborBytes": [69, 11, 61, 147, 211, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 187, + "sample": { + "_tag": "ByteArray", + "bytearray": "c60301060202" + }, + "cborHex": "46c60301060202", + "cborBytes": [70, 198, 3, 1, 6, 2, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 188, + "sample": { + "_tag": "ByteArray", + "bytearray": "9272ef7ee98b45defc2899" + }, + "cborHex": "4b9272ef7ee98b45defc2899", + "cborBytes": [75, 146, 114, 239, 126, 233, 139, 69, 222, 252, 40, 153], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 189, + "sample": { + "_tag": "ByteArray", + "bytearray": "18dca78167f330fa" + }, + "cborHex": "4818dca78167f330fa", + "cborBytes": [72, 24, 220, 167, 129, 103, 243, 48, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 190, + "sample": { + "_tag": "ByteArray", + "bytearray": "0cb8fccd8b425cee0004" + }, + "cborHex": "4a0cb8fccd8b425cee0004", + "cborBytes": [74, 12, 184, 252, 205, 139, 66, 92, 238, 0, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 191, + "sample": { + "_tag": "ByteArray", + "bytearray": "4c2b1a18757c" + }, + "cborHex": "464c2b1a18757c", + "cborBytes": [70, 76, 43, 26, 24, 117, 124], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 192, + "sample": { + "_tag": "ByteArray", + "bytearray": "d87706050901070130c5f9cf" + }, + "cborHex": "4cd87706050901070130c5f9cf", + "cborBytes": [76, 216, 119, 6, 5, 9, 1, 7, 1, 48, 197, 249, 207], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 193, + "sample": { + "_tag": "ByteArray", + "bytearray": "be0ba18f88" + }, + "cborHex": "45be0ba18f88", + "cborBytes": [69, 190, 11, 161, 143, 136], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 194, + "sample": { + "_tag": "ByteArray", + "bytearray": "89955c" + }, + "cborHex": "4389955c", + "cborBytes": [67, 137, 149, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 195, + "sample": { + "_tag": "ByteArray", + "bytearray": "081453" + }, + "cborHex": "43081453", + "cborBytes": [67, 8, 20, 83], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 196, + "sample": { + "_tag": "ByteArray", + "bytearray": "b165e94c982f3c" + }, + "cborHex": "47b165e94c982f3c", + "cborBytes": [71, 177, 101, 233, 76, 152, 47, 60], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 197, + "sample": { + "_tag": "ByteArray", + "bytearray": "533c4444" + }, + "cborHex": "44533c4444", + "cborBytes": [68, 83, 60, 68, 68], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 198, + "sample": { + "_tag": "ByteArray", + "bytearray": "aad94b" + }, + "cborHex": "43aad94b", + "cborBytes": [67, 170, 217, 75], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 199, + "sample": { + "_tag": "ByteArray", + "bytearray": "e295d7123064362d7e62" + }, + "cborHex": "4ae295d7123064362d7e62", + "cborBytes": [74, 226, 149, 215, 18, 48, 100, 54, 45, 126, 98], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 200, + "sample": { + "_tag": "ByteArray", + "bytearray": "56aadd0d855df60a" + }, + "cborHex": "4856aadd0d855df60a", + "cborBytes": [72, 86, 170, 221, 13, 133, 93, 246, 10], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 201, + "sample": { + "_tag": "ByteArray", + "bytearray": "3208fd415cc706ffc0" + }, + "cborHex": "493208fd415cc706ffc0", + "cborBytes": [73, 50, 8, 253, 65, 92, 199, 6, 255, 192], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 202, + "sample": { + "_tag": "ByteArray", + "bytearray": "05ebcd32b125" + }, + "cborHex": "4605ebcd32b125", + "cborBytes": [70, 5, 235, 205, 50, 177, 37], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 203, + "sample": { + "_tag": "ByteArray", + "bytearray": "03fb0b07024be917" + }, + "cborHex": "4803fb0b07024be917", + "cborBytes": [72, 3, 251, 11, 7, 2, 75, 233, 23], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 204, + "sample": { + "_tag": "ByteArray", + "bytearray": "2c97b3bb9b89651d8aaf" + }, + "cborHex": "4a2c97b3bb9b89651d8aaf", + "cborBytes": [74, 44, 151, 179, 187, 155, 137, 101, 29, 138, 175], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 205, + "sample": { + "_tag": "ByteArray", + "bytearray": "06c6" + }, + "cborHex": "4206c6", + "cborBytes": [66, 6, 198], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 206, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe063d" + }, + "cborHex": "43fe063d", + "cborBytes": [67, 254, 6, 61], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 207, + "sample": { + "_tag": "ByteArray", + "bytearray": "270182f20996e3a96812e6" + }, + "cborHex": "4b270182f20996e3a96812e6", + "cborBytes": [75, 39, 1, 130, 242, 9, 150, 227, 169, 104, 18, 230], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 208, + "sample": { + "_tag": "ByteArray", + "bytearray": "05016e6003f9fb8700" + }, + "cborHex": "4905016e6003f9fb8700", + "cborBytes": [73, 5, 1, 110, 96, 3, 249, 251, 135, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 209, + "sample": { + "_tag": "ByteArray", + "bytearray": "052b" + }, + "cborHex": "42052b", + "cborBytes": [66, 5, 43], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 210, + "sample": { + "_tag": "ByteArray", + "bytearray": "29" + }, + "cborHex": "4129", + "cborBytes": [65, 41], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 211, + "sample": { + "_tag": "ByteArray", + "bytearray": "98d240" + }, + "cborHex": "4398d240", + "cborBytes": [67, 152, 210, 64], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 212, + "sample": { + "_tag": "ByteArray", + "bytearray": "a9bba1" + }, + "cborHex": "43a9bba1", + "cborBytes": [67, 169, 187, 161], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 213, + "sample": { + "_tag": "ByteArray", + "bytearray": "0401" + }, + "cborHex": "420401", + "cborBytes": [66, 4, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 214, + "sample": { + "_tag": "ByteArray", + "bytearray": "f27915e206079af38374368b" + }, + "cborHex": "4cf27915e206079af38374368b", + "cborBytes": [76, 242, 121, 21, 226, 6, 7, 154, 243, 131, 116, 54, 139], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 215, + "sample": { + "_tag": "ByteArray", + "bytearray": "00af4c" + }, + "cborHex": "4300af4c", + "cborBytes": [67, 0, 175, 76], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 216, + "sample": { + "_tag": "ByteArray", + "bytearray": "047f7f01" + }, + "cborHex": "44047f7f01", + "cborBytes": [68, 4, 127, 127, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 217, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb077e" + }, + "cborHex": "43fb077e", + "cborBytes": [67, 251, 7, 126], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 218, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa439ec1a0067cb321" + }, + "cborHex": "49fa439ec1a0067cb321", + "cborBytes": [73, 250, 67, 158, 193, 160, 6, 124, 179, 33], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 219, + "sample": { + "_tag": "ByteArray", + "bytearray": "d97a25763670331eb90e22" + }, + "cborHex": "4bd97a25763670331eb90e22", + "cborBytes": [75, 217, 122, 37, 118, 54, 112, 51, 30, 185, 14, 34], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 220, + "sample": { + "_tag": "ByteArray", + "bytearray": "61004903" + }, + "cborHex": "4461004903", + "cborBytes": [68, 97, 0, 73, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 221, + "sample": { + "_tag": "ByteArray", + "bytearray": "2bb72505280d880587c5fae6" + }, + "cborHex": "4c2bb72505280d880587c5fae6", + "cborBytes": [76, 43, 183, 37, 5, 40, 13, 136, 5, 135, 197, 250, 230], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 222, + "sample": { + "_tag": "ByteArray", + "bytearray": "06c4bfca4c062302ef0502" + }, + "cborHex": "4b06c4bfca4c062302ef0502", + "cborBytes": [75, 6, 196, 191, 202, 76, 6, 35, 2, 239, 5, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 223, + "sample": { + "_tag": "ByteArray", + "bytearray": "f2dcf4830a335be063894c" + }, + "cborHex": "4bf2dcf4830a335be063894c", + "cborBytes": [75, 242, 220, 244, 131, 10, 51, 91, 224, 99, 137, 76], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 224, + "sample": { + "_tag": "ByteArray", + "bytearray": "76ffb7e2" + }, + "cborHex": "4476ffb7e2", + "cborBytes": [68, 118, 255, 183, 226], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 225, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcf95ae8040500032dd90004" + }, + "cborHex": "4cfcf95ae8040500032dd90004", + "cborBytes": [76, 252, 249, 90, 232, 4, 5, 0, 3, 45, 217, 0, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 226, + "sample": { + "_tag": "ByteArray", + "bytearray": "851d" + }, + "cborHex": "42851d", + "cborBytes": [66, 133, 29], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 227, + "sample": { + "_tag": "ByteArray", + "bytearray": "432b31c9bf92c04ad617" + }, + "cborHex": "4a432b31c9bf92c04ad617", + "cborBytes": [74, 67, 43, 49, 201, 191, 146, 192, 74, 214, 23], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 228, + "sample": { + "_tag": "ByteArray", + "bytearray": "9e1ee9e16ee3" + }, + "cborHex": "469e1ee9e16ee3", + "cborBytes": [70, 158, 30, 233, 225, 110, 227], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 229, + "sample": { + "_tag": "ByteArray", + "bytearray": "07d6" + }, + "cborHex": "4207d6", + "cborBytes": [66, 7, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 230, + "sample": { + "_tag": "ByteArray", + "bytearray": "ead4b2da9f974a" + }, + "cborHex": "47ead4b2da9f974a", + "cborBytes": [71, 234, 212, 178, 218, 159, 151, 74], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 231, + "sample": { + "_tag": "ByteArray", + "bytearray": "2714880688b7023f9a" + }, + "cborHex": "492714880688b7023f9a", + "cborBytes": [73, 39, 20, 136, 6, 136, 183, 2, 63, 154], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 232, + "sample": { + "_tag": "ByteArray", + "bytearray": "a5d900" + }, + "cborHex": "43a5d900", + "cborBytes": [67, 165, 217, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 233, + "sample": { + "_tag": "ByteArray", + "bytearray": "1c45" + }, + "cborHex": "421c45", + "cborBytes": [66, 28, 69], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 234, + "sample": { + "_tag": "ByteArray", + "bytearray": "75047f" + }, + "cborHex": "4375047f", + "cborBytes": [67, 117, 4, 127], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 235, + "sample": { + "_tag": "ByteArray", + "bytearray": "61ab" + }, + "cborHex": "4261ab", + "cborBytes": [66, 97, 171], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 236, + "sample": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "cborHex": "4104", + "cborBytes": [65, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 237, + "sample": { + "_tag": "ByteArray", + "bytearray": "22c94dd3ce6dfdc7698cac" + }, + "cborHex": "4b22c94dd3ce6dfdc7698cac", + "cborBytes": [75, 34, 201, 77, 211, 206, 109, 253, 199, 105, 140, 172], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 238, + "sample": { + "_tag": "ByteArray", + "bytearray": "b578dff3f20ea910" + }, + "cborHex": "48b578dff3f20ea910", + "cborBytes": [72, 181, 120, 223, 243, 242, 14, 169, 16], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 239, + "sample": { + "_tag": "ByteArray", + "bytearray": "8644" + }, + "cborHex": "428644", + "cborBytes": [66, 134, 68], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 240, + "sample": { + "_tag": "ByteArray", + "bytearray": "0001f807" + }, + "cborHex": "440001f807", + "cborBytes": [68, 0, 1, 248, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 241, + "sample": { + "_tag": "ByteArray", + "bytearray": "038005" + }, + "cborHex": "43038005", + "cborBytes": [67, 3, 128, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 242, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb65f90203fa026f03" + }, + "cborHex": "49fb65f90203fa026f03", + "cborBytes": [73, 251, 101, 249, 2, 3, 250, 2, 111, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 243, + "sample": { + "_tag": "ByteArray", + "bytearray": "dcdc62ba360e" + }, + "cborHex": "46dcdc62ba360e", + "cborBytes": [70, 220, 220, 98, 186, 54, 14], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 244, + "sample": { + "_tag": "ByteArray", + "bytearray": "35c298e479dd3c913e38bd1c" + }, + "cborHex": "4c35c298e479dd3c913e38bd1c", + "cborBytes": [76, 53, 194, 152, 228, 121, 221, 60, 145, 62, 56, 189, 28], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 245, + "sample": { + "_tag": "ByteArray", + "bytearray": "427cb164f9e400" + }, + "cborHex": "47427cb164f9e400", + "cborBytes": [71, 66, 124, 177, 100, 249, 228, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 246, + "sample": { + "_tag": "ByteArray", + "bytearray": "b870e610d23d2469f223" + }, + "cborHex": "4ab870e610d23d2469f223", + "cborBytes": [74, 184, 112, 230, 16, 210, 61, 36, 105, 242, 35], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 247, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcda718eed1ecb95c86f29a7" + }, + "cborHex": "4cfcda718eed1ecb95c86f29a7", + "cborBytes": [76, 252, 218, 113, 142, 237, 30, 203, 149, 200, 111, 41, 167], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 248, + "sample": { + "_tag": "ByteArray", + "bytearray": "d714fd25" + }, + "cborHex": "44d714fd25", + "cborBytes": [68, 215, 20, 253, 37], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 249, + "sample": { + "_tag": "ByteArray", + "bytearray": "239306a257d030591218" + }, + "cborHex": "4a239306a257d030591218", + "cborBytes": [74, 35, 147, 6, 162, 87, 208, 48, 89, 18, 24], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 250, + "sample": { + "_tag": "ByteArray", + "bytearray": "b452c71d" + }, + "cborHex": "44b452c71d", + "cborBytes": [68, 180, 82, 199, 29], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 251, + "sample": { + "_tag": "ByteArray", + "bytearray": "04235e" + }, + "cborHex": "4304235e", + "cborBytes": [67, 4, 35, 94], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 252, + "sample": { + "_tag": "ByteArray", + "bytearray": "cd" + }, + "cborHex": "41cd", + "cborBytes": [65, 205], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 253, + "sample": { + "_tag": "ByteArray", + "bytearray": "2f8232889363b1" + }, + "cborHex": "472f8232889363b1", + "cborBytes": [71, 47, 130, 50, 136, 147, 99, 177], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 254, + "sample": { + "_tag": "ByteArray", + "bytearray": "16" + }, + "cborHex": "4116", + "cborBytes": [65, 22], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 255, + "sample": { + "_tag": "ByteArray", + "bytearray": "7359860558040303b45c" + }, + "cborHex": "4a7359860558040303b45c", + "cborBytes": [74, 115, 89, 134, 5, 88, 4, 3, 3, 180, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 256, + "sample": { + "_tag": "ByteArray", + "bytearray": "1f3875" + }, + "cborHex": "431f3875", + "cborBytes": [67, 31, 56, 117], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 257, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe000205c529064e" + }, + "cborHex": "48fe000205c529064e", + "cborBytes": [72, 254, 0, 2, 5, 197, 41, 6, 78], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 258, + "sample": { + "_tag": "ByteArray", + "bytearray": "582d9fae608e" + }, + "cborHex": "46582d9fae608e", + "cborBytes": [70, 88, 45, 159, 174, 96, 142], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 259, + "sample": { + "_tag": "ByteArray", + "bytearray": "213ebec2e1af" + }, + "cborHex": "46213ebec2e1af", + "cborBytes": [70, 33, 62, 190, 194, 225, 175], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 260, + "sample": { + "_tag": "ByteArray", + "bytearray": "2c02fb265f046a2bdff9fe" + }, + "cborHex": "4b2c02fb265f046a2bdff9fe", + "cborBytes": [75, 44, 2, 251, 38, 95, 4, 106, 43, 223, 249, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 261, + "sample": { + "_tag": "ByteArray", + "bytearray": "db589c" + }, + "cborHex": "43db589c", + "cborBytes": [67, 219, 88, 156], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 262, + "sample": { + "_tag": "ByteArray", + "bytearray": "b700e507" + }, + "cborHex": "44b700e507", + "cborBytes": [68, 183, 0, 229, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 263, + "sample": { + "_tag": "ByteArray", + "bytearray": "d39c542f3be2" + }, + "cborHex": "46d39c542f3be2", + "cborBytes": [70, 211, 156, 84, 47, 59, 226], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 264, + "sample": { + "_tag": "ByteArray", + "bytearray": "19c64b674704b962c9" + }, + "cborHex": "4919c64b674704b962c9", + "cborBytes": [73, 25, 198, 75, 103, 71, 4, 185, 98, 201], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 265, + "sample": { + "_tag": "ByteArray", + "bytearray": "04036f04" + }, + "cborHex": "4404036f04", + "cborBytes": [68, 4, 3, 111, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 266, + "sample": { + "_tag": "ByteArray", + "bytearray": "05e406022d03d2323a04" + }, + "cborHex": "4a05e406022d03d2323a04", + "cborBytes": [74, 5, 228, 6, 2, 45, 3, 210, 50, 58, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 267, + "sample": { + "_tag": "ByteArray", + "bytearray": "0126383b50050403ff54c70a" + }, + "cborHex": "4c0126383b50050403ff54c70a", + "cborBytes": [76, 1, 38, 56, 59, 80, 5, 4, 3, 255, 84, 199, 10], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 268, + "sample": { + "_tag": "ByteArray", + "bytearray": "5307fdb9559c" + }, + "cborHex": "465307fdb9559c", + "cborBytes": [70, 83, 7, 253, 185, 85, 156], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 269, + "sample": { + "_tag": "ByteArray", + "bytearray": "54fee8" + }, + "cborHex": "4354fee8", + "cborBytes": [67, 84, 254, 232], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 270, + "sample": { + "_tag": "ByteArray", + "bytearray": "709c951b17ee797861259ec8" + }, + "cborHex": "4c709c951b17ee797861259ec8", + "cborBytes": [76, 112, 156, 149, 27, 23, 238, 121, 120, 97, 37, 158, 200], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 271, + "sample": { + "_tag": "ByteArray", + "bytearray": "6e" + }, + "cborHex": "416e", + "cborBytes": [65, 110], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 272, + "sample": { + "_tag": "ByteArray", + "bytearray": "2ae338fd811f2972d504c9" + }, + "cborHex": "4b2ae338fd811f2972d504c9", + "cborBytes": [75, 42, 227, 56, 253, 129, 31, 41, 114, 213, 4, 201], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 273, + "sample": { + "_tag": "ByteArray", + "bytearray": "c03d01f9" + }, + "cborHex": "44c03d01f9", + "cborBytes": [68, 192, 61, 1, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 274, + "sample": { + "_tag": "ByteArray", + "bytearray": "f6a98853ee" + }, + "cborHex": "45f6a98853ee", + "cborBytes": [69, 246, 169, 136, 83, 238], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 275, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa06b7f9" + }, + "cborHex": "44fa06b7f9", + "cborBytes": [68, 250, 6, 183, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 276, + "sample": { + "_tag": "ByteArray", + "bytearray": "e86283" + }, + "cborHex": "43e86283", + "cborBytes": [67, 232, 98, 131], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 277, + "sample": { + "_tag": "ByteArray", + "bytearray": "1a6af85f46" + }, + "cborHex": "451a6af85f46", + "cborBytes": [69, 26, 106, 248, 95, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 278, + "sample": { + "_tag": "ByteArray", + "bytearray": "d8fb02" + }, + "cborHex": "43d8fb02", + "cborBytes": [67, 216, 251, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 279, + "sample": { + "_tag": "ByteArray", + "bytearray": "0425faaa00f88bf7ff7c8803" + }, + "cborHex": "4c0425faaa00f88bf7ff7c8803", + "cborBytes": [76, 4, 37, 250, 170, 0, 248, 139, 247, 255, 124, 136, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 280, + "sample": { + "_tag": "ByteArray", + "bytearray": "d0aa54ebe8800da50fff04" + }, + "cborHex": "4bd0aa54ebe8800da50fff04", + "cborBytes": [75, 208, 170, 84, 235, 232, 128, 13, 165, 15, 255, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 281, + "sample": { + "_tag": "ByteArray", + "bytearray": "73632e1d" + }, + "cborHex": "4473632e1d", + "cborBytes": [68, 115, 99, 46, 29], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 282, + "sample": { + "_tag": "ByteArray", + "bytearray": "b40eaeb6f93d939364e25231" + }, + "cborHex": "4cb40eaeb6f93d939364e25231", + "cborBytes": [76, 180, 14, 174, 182, 249, 61, 147, 147, 100, 226, 82, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 283, + "sample": { + "_tag": "ByteArray", + "bytearray": "02f803f8285efbfd0616" + }, + "cborHex": "4a02f803f8285efbfd0616", + "cborBytes": [74, 2, 248, 3, 248, 40, 94, 251, 253, 6, 22], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 284, + "sample": { + "_tag": "ByteArray", + "bytearray": "6a90fcb19d3c4ce98001aadc" + }, + "cborHex": "4c6a90fcb19d3c4ce98001aadc", + "cborBytes": [76, 106, 144, 252, 177, 157, 60, 76, 233, 128, 1, 170, 220], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 285, + "sample": { + "_tag": "ByteArray", + "bytearray": "03ff3200" + }, + "cborHex": "4403ff3200", + "cborBytes": [68, 3, 255, 50, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 286, + "sample": { + "_tag": "ByteArray", + "bytearray": "5d8263ad" + }, + "cborHex": "445d8263ad", + "cborBytes": [68, 93, 130, 99, 173], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 287, + "sample": { + "_tag": "ByteArray", + "bytearray": "f907a1c4fc0654666e" + }, + "cborHex": "49f907a1c4fc0654666e", + "cborBytes": [73, 249, 7, 161, 196, 252, 6, 84, 102, 110], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 288, + "sample": { + "_tag": "ByteArray", + "bytearray": "5bdf3203ecf904" + }, + "cborHex": "475bdf3203ecf904", + "cborBytes": [71, 91, 223, 50, 3, 236, 249, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 289, + "sample": { + "_tag": "ByteArray", + "bytearray": "7b849d94" + }, + "cborHex": "447b849d94", + "cborBytes": [68, 123, 132, 157, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 290, + "sample": { + "_tag": "ByteArray", + "bytearray": "6d67c4cf" + }, + "cborHex": "446d67c4cf", + "cborBytes": [68, 109, 103, 196, 207], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 291, + "sample": { + "_tag": "ByteArray", + "bytearray": "7353121a01" + }, + "cborHex": "457353121a01", + "cborBytes": [69, 115, 83, 18, 26, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 292, + "sample": { + "_tag": "ByteArray", + "bytearray": "e6c7" + }, + "cborHex": "42e6c7", + "cborBytes": [66, 230, 199], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 293, + "sample": { + "_tag": "ByteArray", + "bytearray": "e7" + }, + "cborHex": "41e7", + "cborBytes": [65, 231], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 294, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd07070d" + }, + "cborHex": "44fd07070d", + "cborBytes": [68, 253, 7, 7, 13], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 295, + "sample": { + "_tag": "ByteArray", + "bytearray": "32395d42523d" + }, + "cborHex": "4632395d42523d", + "cborBytes": [70, 50, 57, 93, 66, 82, 61], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 296, + "sample": { + "_tag": "ByteArray", + "bytearray": "1ff33094be" + }, + "cborHex": "451ff33094be", + "cborBytes": [69, 31, 243, 48, 148, 190], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 297, + "sample": { + "_tag": "ByteArray", + "bytearray": "25a9" + }, + "cborHex": "4225a9", + "cborBytes": [66, 37, 169], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 298, + "sample": { + "_tag": "ByteArray", + "bytearray": "f79527676b564c" + }, + "cborHex": "47f79527676b564c", + "cborBytes": [71, 247, 149, 39, 103, 107, 86, 76], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 299, + "sample": { + "_tag": "ByteArray", + "bytearray": "6f31" + }, + "cborHex": "426f31", + "cborBytes": [66, 111, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 300, + "sample": { + "_tag": "ByteArray", + "bytearray": "806f940affadc300" + }, + "cborHex": "48806f940affadc300", + "cborBytes": [72, 128, 111, 148, 10, 255, 173, 195, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 301, + "sample": { + "_tag": "ByteArray", + "bytearray": "03028b03078406ad36" + }, + "cborHex": "4903028b03078406ad36", + "cborBytes": [73, 3, 2, 139, 3, 7, 132, 6, 173, 54], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 302, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd0069990500f9a5" + }, + "cborHex": "48fd0069990500f9a5", + "cborBytes": [72, 253, 0, 105, 153, 5, 0, 249, 165], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 303, + "sample": { + "_tag": "ByteArray", + "bytearray": "02cea300" + }, + "cborHex": "4402cea300", + "cborBytes": [68, 2, 206, 163, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 304, + "sample": { + "_tag": "ByteArray", + "bytearray": "f60601" + }, + "cborHex": "43f60601", + "cborBytes": [67, 246, 6, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 305, + "sample": { + "_tag": "ByteArray", + "bytearray": "727aac003a" + }, + "cborHex": "45727aac003a", + "cborBytes": [69, 114, 122, 172, 0, 58], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 306, + "sample": { + "_tag": "ByteArray", + "bytearray": "8f050017b5055029df" + }, + "cborHex": "498f050017b5055029df", + "cborBytes": [73, 143, 5, 0, 23, 181, 5, 80, 41, 223], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 307, + "sample": { + "_tag": "ByteArray", + "bytearray": "4a60" + }, + "cborHex": "424a60", + "cborBytes": [66, 74, 96], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 308, + "sample": { + "_tag": "ByteArray", + "bytearray": "03053dfa5a065505a6f89017" + }, + "cborHex": "4c03053dfa5a065505a6f89017", + "cborBytes": [76, 3, 5, 61, 250, 90, 6, 85, 5, 166, 248, 144, 23], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 309, + "sample": { + "_tag": "ByteArray", + "bytearray": "8197f800fab8f3980106" + }, + "cborHex": "4a8197f800fab8f3980106", + "cborBytes": [74, 129, 151, 248, 0, 250, 184, 243, 152, 1, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 310, + "sample": { + "_tag": "ByteArray", + "bytearray": "2c4f" + }, + "cborHex": "422c4f", + "cborBytes": [66, 44, 79], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 311, + "sample": { + "_tag": "ByteArray", + "bytearray": "b324fafb02b907fb030106be" + }, + "cborHex": "4cb324fafb02b907fb030106be", + "cborBytes": [76, 179, 36, 250, 251, 2, 185, 7, 251, 3, 1, 6, 190], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 312, + "sample": { + "_tag": "ByteArray", + "bytearray": "77f9" + }, + "cborHex": "4277f9", + "cborBytes": [66, 119, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 313, + "sample": { + "_tag": "ByteArray", + "bytearray": "7301" + }, + "cborHex": "427301", + "cborBytes": [66, 115, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 314, + "sample": { + "_tag": "ByteArray", + "bytearray": "07fc" + }, + "cborHex": "4207fc", + "cborBytes": [66, 7, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 315, + "sample": { + "_tag": "ByteArray", + "bytearray": "8656" + }, + "cborHex": "428656", + "cborBytes": [66, 134, 86], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 316, + "sample": { + "_tag": "ByteArray", + "bytearray": "6a108aa43fc2586d" + }, + "cborHex": "486a108aa43fc2586d", + "cborBytes": [72, 106, 16, 138, 164, 63, 194, 88, 109], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 317, + "sample": { + "_tag": "ByteArray", + "bytearray": "23ba731a3c89" + }, + "cborHex": "4623ba731a3c89", + "cborBytes": [70, 35, 186, 115, 26, 60, 137], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 318, + "sample": { + "_tag": "ByteArray", + "bytearray": "2ec9bc00fa8bfa" + }, + "cborHex": "472ec9bc00fa8bfa", + "cborBytes": [71, 46, 201, 188, 0, 250, 139, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 319, + "sample": { + "_tag": "ByteArray", + "bytearray": "cacb17a6f1" + }, + "cborHex": "45cacb17a6f1", + "cborBytes": [69, 202, 203, 23, 166, 241], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 320, + "sample": { + "_tag": "ByteArray", + "bytearray": "48441d0703" + }, + "cborHex": "4548441d0703", + "cborBytes": [69, 72, 68, 29, 7, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 321, + "sample": { + "_tag": "ByteArray", + "bytearray": "f905" + }, + "cborHex": "42f905", + "cborBytes": [66, 249, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 322, + "sample": { + "_tag": "ByteArray", + "bytearray": "f75497f96f1c4e7a0120" + }, + "cborHex": "4af75497f96f1c4e7a0120", + "cborBytes": [74, 247, 84, 151, 249, 111, 28, 78, 122, 1, 32], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 323, + "sample": { + "_tag": "ByteArray", + "bytearray": "6d2038ad4137" + }, + "cborHex": "466d2038ad4137", + "cborBytes": [70, 109, 32, 56, 173, 65, 55], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 324, + "sample": { + "_tag": "ByteArray", + "bytearray": "4860f9f04305bdb7ff59" + }, + "cborHex": "4a4860f9f04305bdb7ff59", + "cborBytes": [74, 72, 96, 249, 240, 67, 5, 189, 183, 255, 89], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 325, + "sample": { + "_tag": "ByteArray", + "bytearray": "881cbe56" + }, + "cborHex": "44881cbe56", + "cborBytes": [68, 136, 28, 190, 86], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 326, + "sample": { + "_tag": "ByteArray", + "bytearray": "78e6a1ac4d87488efc" + }, + "cborHex": "4978e6a1ac4d87488efc", + "cborBytes": [73, 120, 230, 161, 172, 77, 135, 72, 142, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 327, + "sample": { + "_tag": "ByteArray", + "bytearray": "ad06ad" + }, + "cborHex": "43ad06ad", + "cborBytes": [67, 173, 6, 173], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 328, + "sample": { + "_tag": "ByteArray", + "bytearray": "687d6351b00780" + }, + "cborHex": "47687d6351b00780", + "cborBytes": [71, 104, 125, 99, 81, 176, 7, 128], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 329, + "sample": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "cborHex": "4107", + "cborBytes": [65, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 330, + "sample": { + "_tag": "ByteArray", + "bytearray": "336be4b6982d10b4b6" + }, + "cborHex": "49336be4b6982d10b4b6", + "cborBytes": [73, 51, 107, 228, 182, 152, 45, 16, 180, 182], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 331, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa2f" + }, + "cborHex": "42fa2f", + "cborBytes": [66, 250, 47], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 332, + "sample": { + "_tag": "ByteArray", + "bytearray": "2026794b98c97860fa3da2" + }, + "cborHex": "4b2026794b98c97860fa3da2", + "cborBytes": [75, 32, 38, 121, 75, 152, 201, 120, 96, 250, 61, 162], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 333, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb048d924c07" + }, + "cborHex": "46fb048d924c07", + "cborBytes": [70, 251, 4, 141, 146, 76, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 334, + "sample": { + "_tag": "ByteArray", + "bytearray": "d9030492a6fa720707" + }, + "cborHex": "49d9030492a6fa720707", + "cborBytes": [73, 217, 3, 4, 146, 166, 250, 114, 7, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 335, + "sample": { + "_tag": "ByteArray", + "bytearray": "4b65a750ea00c2f1" + }, + "cborHex": "484b65a750ea00c2f1", + "cborBytes": [72, 75, 101, 167, 80, 234, 0, 194, 241], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 336, + "sample": { + "_tag": "ByteArray", + "bytearray": "030404a48200fd010147" + }, + "cborHex": "4a030404a48200fd010147", + "cborBytes": [74, 3, 4, 4, 164, 130, 0, 253, 1, 1, 71], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 337, + "sample": { + "_tag": "ByteArray", + "bytearray": "0f16" + }, + "cborHex": "420f16", + "cborBytes": [66, 15, 22], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 338, + "sample": { + "_tag": "ByteArray", + "bytearray": "e451ae6d99" + }, + "cborHex": "45e451ae6d99", + "cborBytes": [69, 228, 81, 174, 109, 153], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 339, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa00f1" + }, + "cborHex": "43fa00f1", + "cborBytes": [67, 250, 0, 241], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 340, + "sample": { + "_tag": "ByteArray", + "bytearray": "bd8350d4b5e347" + }, + "cborHex": "47bd8350d4b5e347", + "cborBytes": [71, 189, 131, 80, 212, 181, 227, 71], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 341, + "sample": { + "_tag": "ByteArray", + "bytearray": "0466" + }, + "cborHex": "420466", + "cborBytes": [66, 4, 102], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 342, + "sample": { + "_tag": "ByteArray", + "bytearray": "d1e272" + }, + "cborHex": "43d1e272", + "cborBytes": [67, 209, 226, 114], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 343, + "sample": { + "_tag": "ByteArray", + "bytearray": "d2" + }, + "cborHex": "41d2", + "cborBytes": [65, 210], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 344, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa07a105" + }, + "cborHex": "44fa07a105", + "cborBytes": [68, 250, 7, 161, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 345, + "sample": { + "_tag": "ByteArray", + "bytearray": "1b0100fc" + }, + "cborHex": "441b0100fc", + "cborBytes": [68, 27, 1, 0, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 346, + "sample": { + "_tag": "ByteArray", + "bytearray": "dd6ba38238ab5e99" + }, + "cborHex": "48dd6ba38238ab5e99", + "cborBytes": [72, 221, 107, 163, 130, 56, 171, 94, 153], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 347, + "sample": { + "_tag": "ByteArray", + "bytearray": "18" + }, + "cborHex": "4118", + "cborBytes": [65, 24], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 348, + "sample": { + "_tag": "ByteArray", + "bytearray": "4eed" + }, + "cborHex": "424eed", + "cborBytes": [66, 78, 237], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 349, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb9445030106f7" + }, + "cborHex": "47fb9445030106f7", + "cborBytes": [71, 251, 148, 69, 3, 1, 6, 247], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 350, + "sample": { + "_tag": "ByteArray", + "bytearray": "32316d352d171696" + }, + "cborHex": "4832316d352d171696", + "cborBytes": [72, 50, 49, 109, 53, 45, 23, 22, 150], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 351, + "sample": { + "_tag": "ByteArray", + "bytearray": "048553" + }, + "cborHex": "43048553", + "cborBytes": [67, 4, 133, 83], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 352, + "sample": { + "_tag": "ByteArray", + "bytearray": "052e807189e4039f0088fd01" + }, + "cborHex": "4c052e807189e4039f0088fd01", + "cborBytes": [76, 5, 46, 128, 113, 137, 228, 3, 159, 0, 136, 253, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 353, + "sample": { + "_tag": "ByteArray", + "bytearray": "016b" + }, + "cborHex": "42016b", + "cborBytes": [66, 1, 107], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 354, + "sample": { + "_tag": "ByteArray", + "bytearray": "b5d38523542046832545" + }, + "cborHex": "4ab5d38523542046832545", + "cborBytes": [74, 181, 211, 133, 35, 84, 32, 70, 131, 37, 69], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 355, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa19" + }, + "cborHex": "42fa19", + "cborBytes": [66, 250, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 356, + "sample": { + "_tag": "ByteArray", + "bytearray": "f907d857fdcd01" + }, + "cborHex": "47f907d857fdcd01", + "cborBytes": [71, 249, 7, 216, 87, 253, 205, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 357, + "sample": { + "_tag": "ByteArray", + "bytearray": "0204f802024ea13aeef9029e" + }, + "cborHex": "4c0204f802024ea13aeef9029e", + "cborBytes": [76, 2, 4, 248, 2, 2, 78, 161, 58, 238, 249, 2, 158], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 358, + "sample": { + "_tag": "ByteArray", + "bytearray": "0579620204" + }, + "cborHex": "450579620204", + "cborBytes": [69, 5, 121, 98, 2, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 359, + "sample": { + "_tag": "ByteArray", + "bytearray": "c7e6" + }, + "cborHex": "42c7e6", + "cborBytes": [66, 199, 230], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 360, + "sample": { + "_tag": "ByteArray", + "bytearray": "69" + }, + "cborHex": "4169", + "cborBytes": [65, 105], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 361, + "sample": { + "_tag": "ByteArray", + "bytearray": "6e85fab155fd0061f301" + }, + "cborHex": "4a6e85fab155fd0061f301", + "cborBytes": [74, 110, 133, 250, 177, 85, 253, 0, 97, 243, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 362, + "sample": { + "_tag": "ByteArray", + "bytearray": "3cf8d6" + }, + "cborHex": "433cf8d6", + "cborBytes": [67, 60, 248, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 363, + "sample": { + "_tag": "ByteArray", + "bytearray": "eafd00" + }, + "cborHex": "43eafd00", + "cborBytes": [67, 234, 253, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 364, + "sample": { + "_tag": "ByteArray", + "bytearray": "33cb767d5b08a47192" + }, + "cborHex": "4933cb767d5b08a47192", + "cborBytes": [73, 51, 203, 118, 125, 91, 8, 164, 113, 146], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 365, + "sample": { + "_tag": "ByteArray", + "bytearray": "050603fe2dfb06" + }, + "cborHex": "47050603fe2dfb06", + "cborBytes": [71, 5, 6, 3, 254, 45, 251, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 366, + "sample": { + "_tag": "ByteArray", + "bytearray": "35449d5813053b8390" + }, + "cborHex": "4935449d5813053b8390", + "cborBytes": [73, 53, 68, 157, 88, 19, 5, 59, 131, 144], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 367, + "sample": { + "_tag": "ByteArray", + "bytearray": "d8e22fba7bd39db3" + }, + "cborHex": "48d8e22fba7bd39db3", + "cborBytes": [72, 216, 226, 47, 186, 123, 211, 157, 179], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 368, + "sample": { + "_tag": "ByteArray", + "bytearray": "07063628" + }, + "cborHex": "4407063628", + "cborBytes": [68, 7, 6, 54, 40], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 369, + "sample": { + "_tag": "ByteArray", + "bytearray": "dd2f" + }, + "cborHex": "42dd2f", + "cborBytes": [66, 221, 47], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 370, + "sample": { + "_tag": "ByteArray", + "bytearray": "4ac815" + }, + "cborHex": "434ac815", + "cborBytes": [67, 74, 200, 21], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 371, + "sample": { + "_tag": "ByteArray", + "bytearray": "fef7" + }, + "cborHex": "42fef7", + "cborBytes": [66, 254, 247], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 372, + "sample": { + "_tag": "ByteArray", + "bytearray": "02c5" + }, + "cborHex": "4202c5", + "cborBytes": [66, 2, 197], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 373, + "sample": { + "_tag": "ByteArray", + "bytearray": "246bfd6d5d" + }, + "cborHex": "45246bfd6d5d", + "cborBytes": [69, 36, 107, 253, 109, 93], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 374, + "sample": { + "_tag": "ByteArray", + "bytearray": "02d8ac" + }, + "cborHex": "4302d8ac", + "cborBytes": [67, 2, 216, 172], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 375, + "sample": { + "_tag": "ByteArray", + "bytearray": "93f917806c5c5d" + }, + "cborHex": "4793f917806c5c5d", + "cborBytes": [71, 147, 249, 23, 128, 108, 92, 93], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 376, + "sample": { + "_tag": "ByteArray", + "bytearray": "007d221fc8ebcd91062a004f" + }, + "cborHex": "4c007d221fc8ebcd91062a004f", + "cborBytes": [76, 0, 125, 34, 31, 200, 235, 205, 145, 6, 42, 0, 79], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 377, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9ab2007" + }, + "cborHex": "44f9ab2007", + "cborBytes": [68, 249, 171, 32, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 378, + "sample": { + "_tag": "ByteArray", + "bytearray": "faa39d7903fc01fb170efae4" + }, + "cborHex": "4cfaa39d7903fc01fb170efae4", + "cborBytes": [76, 250, 163, 157, 121, 3, 252, 1, 251, 23, 14, 250, 228], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 379, + "sample": { + "_tag": "ByteArray", + "bytearray": "71" + }, + "cborHex": "4171", + "cborBytes": [65, 113], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 380, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "cborHex": "41fa", + "cborBytes": [65, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 381, + "sample": { + "_tag": "ByteArray", + "bytearray": "082203040100fa02fd" + }, + "cborHex": "49082203040100fa02fd", + "cborBytes": [73, 8, 34, 3, 4, 1, 0, 250, 2, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 382, + "sample": { + "_tag": "ByteArray", + "bytearray": "38abe8" + }, + "cborHex": "4338abe8", + "cborBytes": [67, 56, 171, 232], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 383, + "sample": { + "_tag": "ByteArray", + "bytearray": "b4e117081c88" + }, + "cborHex": "46b4e117081c88", + "cborBytes": [70, 180, 225, 23, 8, 28, 136], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 384, + "sample": { + "_tag": "ByteArray", + "bytearray": "850107fb1006" + }, + "cborHex": "46850107fb1006", + "cborBytes": [70, 133, 1, 7, 251, 16, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 385, + "sample": { + "_tag": "ByteArray", + "bytearray": "391106" + }, + "cborHex": "43391106", + "cborBytes": [67, 57, 17, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 386, + "sample": { + "_tag": "ByteArray", + "bytearray": "07ce58" + }, + "cborHex": "4307ce58", + "cborBytes": [67, 7, 206, 88], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 387, + "sample": { + "_tag": "ByteArray", + "bytearray": "030005c9f60103" + }, + "cborHex": "47030005c9f60103", + "cborBytes": [71, 3, 0, 5, 201, 246, 1, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 388, + "sample": { + "_tag": "ByteArray", + "bytearray": "35234e868b997956696b" + }, + "cborHex": "4a35234e868b997956696b", + "cborBytes": [74, 53, 35, 78, 134, 139, 153, 121, 86, 105, 107], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 389, + "sample": { + "_tag": "ByteArray", + "bytearray": "b7" + }, + "cborHex": "41b7", + "cborBytes": [65, 183], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 390, + "sample": { + "_tag": "ByteArray", + "bytearray": "b0c036fce8edd83e" + }, + "cborHex": "48b0c036fce8edd83e", + "cborBytes": [72, 176, 192, 54, 252, 232, 237, 216, 62], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 391, + "sample": { + "_tag": "ByteArray", + "bytearray": "6800" + }, + "cborHex": "426800", + "cborBytes": [66, 104, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 392, + "sample": { + "_tag": "ByteArray", + "bytearray": "710602" + }, + "cborHex": "43710602", + "cborBytes": [67, 113, 6, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 393, + "sample": { + "_tag": "ByteArray", + "bytearray": "335425fb64dff0f205673b" + }, + "cborHex": "4b335425fb64dff0f205673b", + "cborBytes": [75, 51, 84, 37, 251, 100, 223, 240, 242, 5, 103, 59], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 394, + "sample": { + "_tag": "ByteArray", + "bytearray": "5602b663fefd28fa0703" + }, + "cborHex": "4a5602b663fefd28fa0703", + "cborBytes": [74, 86, 2, 182, 99, 254, 253, 40, 250, 7, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 395, + "sample": { + "_tag": "ByteArray", + "bytearray": "d94252c56a" + }, + "cborHex": "45d94252c56a", + "cborBytes": [69, 217, 66, 82, 197, 106], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 396, + "sample": { + "_tag": "ByteArray", + "bytearray": "3db7" + }, + "cborHex": "423db7", + "cborBytes": [66, 61, 183], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 397, + "sample": { + "_tag": "ByteArray", + "bytearray": "60c99af8" + }, + "cborHex": "4460c99af8", + "cborBytes": [68, 96, 201, 154, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 398, + "sample": { + "_tag": "ByteArray", + "bytearray": "051d0003" + }, + "cborHex": "44051d0003", + "cborBytes": [68, 5, 29, 0, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 399, + "sample": { + "_tag": "ByteArray", + "bytearray": "f859" + }, + "cborHex": "42f859", + "cborBytes": [66, 248, 89], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 400, + "sample": { + "_tag": "ByteArray", + "bytearray": "27490a315c52" + }, + "cborHex": "4627490a315c52", + "cborBytes": [70, 39, 73, 10, 49, 92, 82], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 401, + "sample": { + "_tag": "ByteArray", + "bytearray": "febb" + }, + "cborHex": "42febb", + "cborBytes": [66, 254, 187], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 402, + "sample": { + "_tag": "ByteArray", + "bytearray": "060b04" + }, + "cborHex": "43060b04", + "cborBytes": [67, 6, 11, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 403, + "sample": { + "_tag": "ByteArray", + "bytearray": "d3b8b3e10b100108" + }, + "cborHex": "48d3b8b3e10b100108", + "cborBytes": [72, 211, 184, 179, 225, 11, 16, 1, 8], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 404, + "sample": { + "_tag": "ByteArray", + "bytearray": "74d5e0a0130bfdf2185f42" + }, + "cborHex": "4b74d5e0a0130bfdf2185f42", + "cborBytes": [75, 116, 213, 224, 160, 19, 11, 253, 242, 24, 95, 66], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 405, + "sample": { + "_tag": "ByteArray", + "bytearray": "74" + }, + "cborHex": "4174", + "cborBytes": [65, 116], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 406, + "sample": { + "_tag": "ByteArray", + "bytearray": "0286" + }, + "cborHex": "420286", + "cborBytes": [66, 2, 134], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 407, + "sample": { + "_tag": "ByteArray", + "bytearray": "cc645a07baf8" + }, + "cborHex": "46cc645a07baf8", + "cborBytes": [70, 204, 100, 90, 7, 186, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 408, + "sample": { + "_tag": "ByteArray", + "bytearray": "20" + }, + "cborHex": "4120", + "cborBytes": [65, 32], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 409, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb74979f" + }, + "cborHex": "44fb74979f", + "cborBytes": [68, 251, 116, 151, 159], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 410, + "sample": { + "_tag": "ByteArray", + "bytearray": "aac7a0520626afae" + }, + "cborHex": "48aac7a0520626afae", + "cborBytes": [72, 170, 199, 160, 82, 6, 38, 175, 174], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 411, + "sample": { + "_tag": "ByteArray", + "bytearray": "3efe" + }, + "cborHex": "423efe", + "cborBytes": [66, 62, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 412, + "sample": { + "_tag": "ByteArray", + "bytearray": "0de038444bf3" + }, + "cborHex": "460de038444bf3", + "cborBytes": [70, 13, 224, 56, 68, 75, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 413, + "sample": { + "_tag": "ByteArray", + "bytearray": "2a8356216008" + }, + "cborHex": "462a8356216008", + "cborBytes": [70, 42, 131, 86, 33, 96, 8], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 414, + "sample": { + "_tag": "ByteArray", + "bytearray": "f1156a685ce60d5b56" + }, + "cborHex": "49f1156a685ce60d5b56", + "cborBytes": [73, 241, 21, 106, 104, 92, 230, 13, 91, 86], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 415, + "sample": { + "_tag": "ByteArray", + "bytearray": "9b14d58ad9cf50224f1a03" + }, + "cborHex": "4b9b14d58ad9cf50224f1a03", + "cborBytes": [75, 155, 20, 213, 138, 217, 207, 80, 34, 79, 26, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 416, + "sample": { + "_tag": "ByteArray", + "bytearray": "06150e07" + }, + "cborHex": "4406150e07", + "cborBytes": [68, 6, 21, 14, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 417, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff04fd" + }, + "cborHex": "43ff04fd", + "cborBytes": [67, 255, 4, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 418, + "sample": { + "_tag": "ByteArray", + "bytearray": "8bbf4ba0" + }, + "cborHex": "448bbf4ba0", + "cborBytes": [68, 139, 191, 75, 160], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 419, + "sample": { + "_tag": "ByteArray", + "bytearray": "4e9ba28211344701" + }, + "cborHex": "484e9ba28211344701", + "cborBytes": [72, 78, 155, 162, 130, 17, 52, 71, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 420, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc8029b0" + }, + "cborHex": "44fc8029b0", + "cborBytes": [68, 252, 128, 41, 176], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 421, + "sample": { + "_tag": "ByteArray", + "bytearray": "d81dff03390029" + }, + "cborHex": "47d81dff03390029", + "cborBytes": [71, 216, 29, 255, 3, 57, 0, 41], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 422, + "sample": { + "_tag": "ByteArray", + "bytearray": "050407a0b81dfc00" + }, + "cborHex": "48050407a0b81dfc00", + "cborBytes": [72, 5, 4, 7, 160, 184, 29, 252, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 423, + "sample": { + "_tag": "ByteArray", + "bytearray": "0304" + }, + "cborHex": "420304", + "cborBytes": [66, 3, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 424, + "sample": { + "_tag": "ByteArray", + "bytearray": "0035fb52698ffa0202fefc" + }, + "cborHex": "4b0035fb52698ffa0202fefc", + "cborBytes": [75, 0, 53, 251, 82, 105, 143, 250, 2, 2, 254, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 425, + "sample": { + "_tag": "ByteArray", + "bytearray": "0707ed04" + }, + "cborHex": "440707ed04", + "cborBytes": [68, 7, 7, 237, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 426, + "sample": { + "_tag": "ByteArray", + "bytearray": "01fb" + }, + "cborHex": "4201fb", + "cborBytes": [66, 1, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 427, + "sample": { + "_tag": "ByteArray", + "bytearray": "a16afca575" + }, + "cborHex": "45a16afca575", + "cborBytes": [69, 161, 106, 252, 165, 117], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 428, + "sample": { + "_tag": "ByteArray", + "bytearray": "9262e5d4ab7c0d" + }, + "cborHex": "479262e5d4ab7c0d", + "cborBytes": [71, 146, 98, 229, 212, 171, 124, 13], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 429, + "sample": { + "_tag": "ByteArray", + "bytearray": "69009cfa00624339" + }, + "cborHex": "4869009cfa00624339", + "cborBytes": [72, 105, 0, 156, 250, 0, 98, 67, 57], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 430, + "sample": { + "_tag": "ByteArray", + "bytearray": "300163a88ef5" + }, + "cborHex": "46300163a88ef5", + "cborBytes": [70, 48, 1, 99, 168, 142, 245], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 431, + "sample": { + "_tag": "ByteArray", + "bytearray": "8158" + }, + "cborHex": "428158", + "cborBytes": [66, 129, 88], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 432, + "sample": { + "_tag": "ByteArray", + "bytearray": "0527a1e90da5" + }, + "cborHex": "460527a1e90da5", + "cborBytes": [70, 5, 39, 161, 233, 13, 165], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 433, + "sample": { + "_tag": "ByteArray", + "bytearray": "3b" + }, + "cborHex": "413b", + "cborBytes": [65, 59], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 434, + "sample": { + "_tag": "ByteArray", + "bytearray": "337697c3" + }, + "cborHex": "44337697c3", + "cborBytes": [68, 51, 118, 151, 195], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 435, + "sample": { + "_tag": "ByteArray", + "bytearray": "4306f8fef80c" + }, + "cborHex": "464306f8fef80c", + "cborBytes": [70, 67, 6, 248, 254, 248, 12], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 436, + "sample": { + "_tag": "ByteArray", + "bytearray": "45655a" + }, + "cborHex": "4345655a", + "cborBytes": [67, 69, 101, 90], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 437, + "sample": { + "_tag": "ByteArray", + "bytearray": "a64d94" + }, + "cborHex": "43a64d94", + "cborBytes": [67, 166, 77, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 438, + "sample": { + "_tag": "ByteArray", + "bytearray": "9a0430c1fd90a4" + }, + "cborHex": "479a0430c1fd90a4", + "cborBytes": [71, 154, 4, 48, 193, 253, 144, 164], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 439, + "sample": { + "_tag": "ByteArray", + "bytearray": "2136d37ffd0004604b5aba" + }, + "cborHex": "4b2136d37ffd0004604b5aba", + "cborBytes": [75, 33, 54, 211, 127, 253, 0, 4, 96, 75, 90, 186], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 440, + "sample": { + "_tag": "ByteArray", + "bytearray": "1269ae27bce00ffc" + }, + "cborHex": "481269ae27bce00ffc", + "cborBytes": [72, 18, 105, 174, 39, 188, 224, 15, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 441, + "sample": { + "_tag": "ByteArray", + "bytearray": "1303" + }, + "cborHex": "421303", + "cborBytes": [66, 19, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 442, + "sample": { + "_tag": "ByteArray", + "bytearray": "948ff929a71ca5ec79" + }, + "cborHex": "49948ff929a71ca5ec79", + "cborBytes": [73, 148, 143, 249, 41, 167, 28, 165, 236, 121], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 443, + "sample": { + "_tag": "ByteArray", + "bytearray": "ba" + }, + "cborHex": "41ba", + "cborBytes": [65, 186], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 444, + "sample": { + "_tag": "ByteArray", + "bytearray": "0372ecf2" + }, + "cborHex": "440372ecf2", + "cborBytes": [68, 3, 114, 236, 242], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 445, + "sample": { + "_tag": "ByteArray", + "bytearray": "2df3a26cad2eb1464c1510" + }, + "cborHex": "4b2df3a26cad2eb1464c1510", + "cborBytes": [75, 45, 243, 162, 108, 173, 46, 177, 70, 76, 21, 16], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 446, + "sample": { + "_tag": "ByteArray", + "bytearray": "8bb2022f4694" + }, + "cborHex": "468bb2022f4694", + "cborBytes": [70, 139, 178, 2, 47, 70, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 447, + "sample": { + "_tag": "ByteArray", + "bytearray": "4068beee6892b08a" + }, + "cborHex": "484068beee6892b08a", + "cborBytes": [72, 64, 104, 190, 238, 104, 146, 176, 138], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 448, + "sample": { + "_tag": "ByteArray", + "bytearray": "02fc" + }, + "cborHex": "4202fc", + "cborBytes": [66, 2, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 449, + "sample": { + "_tag": "ByteArray", + "bytearray": "b79c" + }, + "cborHex": "42b79c", + "cborBytes": [66, 183, 156], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 450, + "sample": { + "_tag": "ByteArray", + "bytearray": "022606fdfeb000050423" + }, + "cborHex": "4a022606fdfeb000050423", + "cborBytes": [74, 2, 38, 6, 253, 254, 176, 0, 5, 4, 35], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 451, + "sample": { + "_tag": "ByteArray", + "bytearray": "0403dc22af00076a" + }, + "cborHex": "480403dc22af00076a", + "cborBytes": [72, 4, 3, 220, 34, 175, 0, 7, 106], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 452, + "sample": { + "_tag": "ByteArray", + "bytearray": "ccedab94a0" + }, + "cborHex": "45ccedab94a0", + "cborBytes": [69, 204, 237, 171, 148, 160], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 453, + "sample": { + "_tag": "ByteArray", + "bytearray": "0418f9" + }, + "cborHex": "430418f9", + "cborBytes": [67, 4, 24, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 454, + "sample": { + "_tag": "ByteArray", + "bytearray": "0001f89e07be6f" + }, + "cborHex": "470001f89e07be6f", + "cborBytes": [71, 0, 1, 248, 158, 7, 190, 111], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 455, + "sample": { + "_tag": "ByteArray", + "bytearray": "aafbf91567e60304010006" + }, + "cborHex": "4baafbf91567e60304010006", + "cborBytes": [75, 170, 251, 249, 21, 103, 230, 3, 4, 1, 0, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 456, + "sample": { + "_tag": "ByteArray", + "bytearray": "02b955e02d02b7f02ddc" + }, + "cborHex": "4a02b955e02d02b7f02ddc", + "cborBytes": [74, 2, 185, 85, 224, 45, 2, 183, 240, 45, 220], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 457, + "sample": { + "_tag": "ByteArray", + "bytearray": "0402d7" + }, + "cborHex": "430402d7", + "cborBytes": [67, 4, 2, 215], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 458, + "sample": { + "_tag": "ByteArray", + "bytearray": "7405" + }, + "cborHex": "427405", + "cborBytes": [66, 116, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 459, + "sample": { + "_tag": "ByteArray", + "bytearray": "23fb04077207" + }, + "cborHex": "4623fb04077207", + "cborBytes": [70, 35, 251, 4, 7, 114, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 460, + "sample": { + "_tag": "ByteArray", + "bytearray": "af03" + }, + "cborHex": "42af03", + "cborBytes": [66, 175, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 461, + "sample": { + "_tag": "ByteArray", + "bytearray": "acf800ff0070d60109aa2a05" + }, + "cborHex": "4cacf800ff0070d60109aa2a05", + "cborBytes": [76, 172, 248, 0, 255, 0, 112, 214, 1, 9, 170, 42, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 462, + "sample": { + "_tag": "ByteArray", + "bytearray": "cf1fa72b" + }, + "cborHex": "44cf1fa72b", + "cborBytes": [68, 207, 31, 167, 43], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 463, + "sample": { + "_tag": "ByteArray", + "bytearray": "e9ed8f819a08267b85b8" + }, + "cborHex": "4ae9ed8f819a08267b85b8", + "cborBytes": [74, 233, 237, 143, 129, 154, 8, 38, 123, 133, 184], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 464, + "sample": { + "_tag": "ByteArray", + "bytearray": "2374" + }, + "cborHex": "422374", + "cborBytes": [66, 35, 116], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 465, + "sample": { + "_tag": "ByteArray", + "bytearray": "360c5933353ce3" + }, + "cborHex": "47360c5933353ce3", + "cborBytes": [71, 54, 12, 89, 51, 53, 60, 227], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 466, + "sample": { + "_tag": "ByteArray", + "bytearray": "a8a95d" + }, + "cborHex": "43a8a95d", + "cborBytes": [67, 168, 169, 93], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 467, + "sample": { + "_tag": "ByteArray", + "bytearray": "74d9c243d9a3af2c" + }, + "cborHex": "4874d9c243d9a3af2c", + "cborBytes": [72, 116, 217, 194, 67, 217, 163, 175, 44], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 468, + "sample": { + "_tag": "ByteArray", + "bytearray": "27402ff8fb6a4fc6" + }, + "cborHex": "4827402ff8fb6a4fc6", + "cborBytes": [72, 39, 64, 47, 248, 251, 106, 79, 198], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 469, + "sample": { + "_tag": "ByteArray", + "bytearray": "1e28c64382ed255e616f31" + }, + "cborHex": "4b1e28c64382ed255e616f31", + "cborBytes": [75, 30, 40, 198, 67, 130, 237, 37, 94, 97, 111, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 470, + "sample": { + "_tag": "ByteArray", + "bytearray": "76bf03f8" + }, + "cborHex": "4476bf03f8", + "cborBytes": [68, 118, 191, 3, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 471, + "sample": { + "_tag": "ByteArray", + "bytearray": "0404" + }, + "cborHex": "420404", + "cborBytes": [66, 4, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 472, + "sample": { + "_tag": "ByteArray", + "bytearray": "1a" + }, + "cborHex": "411a", + "cborBytes": [65, 26], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 473, + "sample": { + "_tag": "ByteArray", + "bytearray": "6ce0448f8358dad5cd24663b" + }, + "cborHex": "4c6ce0448f8358dad5cd24663b", + "cborBytes": [76, 108, 224, 68, 143, 131, 88, 218, 213, 205, 36, 102, 59], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 474, + "sample": { + "_tag": "ByteArray", + "bytearray": "05ff018dcd7900d4f902" + }, + "cborHex": "4a05ff018dcd7900d4f902", + "cborBytes": [74, 5, 255, 1, 141, 205, 121, 0, 212, 249, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 475, + "sample": { + "_tag": "ByteArray", + "bytearray": "06006ac80076ff05fe" + }, + "cborHex": "4906006ac80076ff05fe", + "cborBytes": [73, 6, 0, 106, 200, 0, 118, 255, 5, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 476, + "sample": { + "_tag": "ByteArray", + "bytearray": "fff97400" + }, + "cborHex": "44fff97400", + "cborBytes": [68, 255, 249, 116, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 477, + "sample": { + "_tag": "ByteArray", + "bytearray": "003c7ef801640404" + }, + "cborHex": "48003c7ef801640404", + "cborBytes": [72, 0, 60, 126, 248, 1, 100, 4, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 478, + "sample": { + "_tag": "ByteArray", + "bytearray": "76d4904c" + }, + "cborHex": "4476d4904c", + "cborBytes": [68, 118, 212, 144, 76], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 479, + "sample": { + "_tag": "ByteArray", + "bytearray": "07f8" + }, + "cborHex": "4207f8", + "cborBytes": [66, 7, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 480, + "sample": { + "_tag": "ByteArray", + "bytearray": "684d69f2b98f6cda351d67" + }, + "cborHex": "4b684d69f2b98f6cda351d67", + "cborBytes": [75, 104, 77, 105, 242, 185, 143, 108, 218, 53, 29, 103], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 481, + "sample": { + "_tag": "ByteArray", + "bytearray": "034300079e28bd16" + }, + "cborHex": "48034300079e28bd16", + "cborBytes": [72, 3, 67, 0, 7, 158, 40, 189, 22], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 482, + "sample": { + "_tag": "ByteArray", + "bytearray": "f5fa6a7956b1da04010e" + }, + "cborHex": "4af5fa6a7956b1da04010e", + "cborBytes": [74, 245, 250, 106, 121, 86, 177, 218, 4, 1, 14], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 483, + "sample": { + "_tag": "ByteArray", + "bytearray": "ab003800" + }, + "cborHex": "44ab003800", + "cborBytes": [68, 171, 0, 56, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 484, + "sample": { + "_tag": "ByteArray", + "bytearray": "f867fe03" + }, + "cborHex": "44f867fe03", + "cborBytes": [68, 248, 103, 254, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 485, + "sample": { + "_tag": "ByteArray", + "bytearray": "96f93bad" + }, + "cborHex": "4496f93bad", + "cborBytes": [68, 150, 249, 59, 173], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 486, + "sample": { + "_tag": "ByteArray", + "bytearray": "64b941d53e" + }, + "cborHex": "4564b941d53e", + "cborBytes": [69, 100, 185, 65, 213, 62], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 487, + "sample": { + "_tag": "ByteArray", + "bytearray": "44f628c6b03a1ee1" + }, + "cborHex": "4844f628c6b03a1ee1", + "cborBytes": [72, 68, 246, 40, 198, 176, 58, 30, 225], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 488, + "sample": { + "_tag": "ByteArray", + "bytearray": "bc63ddc99989e741c6cd" + }, + "cborHex": "4abc63ddc99989e741c6cd", + "cborBytes": [74, 188, 99, 221, 201, 153, 137, 231, 65, 198, 205], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 489, + "sample": { + "_tag": "ByteArray", + "bytearray": "e5fd014f050384aa06880302" + }, + "cborHex": "4ce5fd014f050384aa06880302", + "cborBytes": [76, 229, 253, 1, 79, 5, 3, 132, 170, 6, 136, 3, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 490, + "sample": { + "_tag": "ByteArray", + "bytearray": "c11b23ef40b60634b3b4d196" + }, + "cborHex": "4cc11b23ef40b60634b3b4d196", + "cborBytes": [76, 193, 27, 35, 239, 64, 182, 6, 52, 179, 180, 209, 150], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 491, + "sample": { + "_tag": "ByteArray", + "bytearray": "a2df" + }, + "cborHex": "42a2df", + "cborBytes": [66, 162, 223], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 492, + "sample": { + "_tag": "ByteArray", + "bytearray": "c84bba80c2ba734b" + }, + "cborHex": "48c84bba80c2ba734b", + "cborBytes": [72, 200, 75, 186, 128, 194, 186, 115, 75], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 493, + "sample": { + "_tag": "ByteArray", + "bytearray": "d896c60593f845e003" + }, + "cborHex": "49d896c60593f845e003", + "cborBytes": [73, 216, 150, 198, 5, 147, 248, 69, 224, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 494, + "sample": { + "_tag": "ByteArray", + "bytearray": "679d000504" + }, + "cborHex": "45679d000504", + "cborBytes": [69, 103, 157, 0, 5, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 495, + "sample": { + "_tag": "ByteArray", + "bytearray": "4386d6287673e6131c" + }, + "cborHex": "494386d6287673e6131c", + "cborBytes": [73, 67, 134, 214, 40, 118, 115, 230, 19, 28], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 496, + "sample": { + "_tag": "ByteArray", + "bytearray": "6d70872bf3c99f663b12" + }, + "cborHex": "4a6d70872bf3c99f663b12", + "cborBytes": [74, 109, 112, 135, 43, 243, 201, 159, 102, 59, 18], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 497, + "sample": { + "_tag": "ByteArray", + "bytearray": "60e1ef776b33cce0da8832" + }, + "cborHex": "4b60e1ef776b33cce0da8832", + "cborBytes": [75, 96, 225, 239, 119, 107, 51, 204, 224, 218, 136, 50], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 498, + "sample": { + "_tag": "ByteArray", + "bytearray": "05040703" + }, + "cborHex": "4405040703", + "cborBytes": [68, 5, 4, 7, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 499, + "sample": { + "_tag": "ByteArray", + "bytearray": "7b" + }, + "cborHex": "417b", + "cborBytes": [65, 123], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 500, + "sample": { + "_tag": "ByteArray", + "bytearray": "b88369bfa3b5e4" + }, + "cborHex": "47b88369bfa3b5e4", + "cborBytes": [71, 184, 131, 105, 191, 163, 181, 228], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 501, + "sample": { + "_tag": "ByteArray", + "bytearray": "049c" + }, + "cborHex": "42049c", + "cborBytes": [66, 4, 156], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 502, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd85fa05fb02fabc0c0007" + }, + "cborHex": "4bfd85fa05fb02fabc0c0007", + "cborBytes": [75, 253, 133, 250, 5, 251, 2, 250, 188, 12, 0, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 503, + "sample": { + "_tag": "ByteArray", + "bytearray": "10b5d770" + }, + "cborHex": "4410b5d770", + "cborBytes": [68, 16, 181, 215, 112], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 504, + "sample": { + "_tag": "ByteArray", + "bytearray": "00fd8101fff80502a208" + }, + "cborHex": "4a00fd8101fff80502a208", + "cborBytes": [74, 0, 253, 129, 1, 255, 248, 5, 2, 162, 8], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 505, + "sample": { + "_tag": "ByteArray", + "bytearray": "7b06ff02703805fd" + }, + "cborHex": "487b06ff02703805fd", + "cborBytes": [72, 123, 6, 255, 2, 112, 56, 5, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 506, + "sample": { + "_tag": "ByteArray", + "bytearray": "ce2dcd0fef4b" + }, + "cborHex": "46ce2dcd0fef4b", + "cborBytes": [70, 206, 45, 205, 15, 239, 75], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 507, + "sample": { + "_tag": "ByteArray", + "bytearray": "185505" + }, + "cborHex": "43185505", + "cborBytes": [67, 24, 85, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 508, + "sample": { + "_tag": "ByteArray", + "bytearray": "469c1765db2365" + }, + "cborHex": "47469c1765db2365", + "cborBytes": [71, 70, 156, 23, 101, 219, 35, 101], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 509, + "sample": { + "_tag": "ByteArray", + "bytearray": "20bf82baefd13e97e1d4" + }, + "cborHex": "4a20bf82baefd13e97e1d4", + "cborBytes": [74, 32, 191, 130, 186, 239, 209, 62, 151, 225, 212], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 510, + "sample": { + "_tag": "ByteArray", + "bytearray": "43b3922eaa1d6a" + }, + "cborHex": "4743b3922eaa1d6a", + "cborBytes": [71, 67, 179, 146, 46, 170, 29, 106], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 511, + "sample": { + "_tag": "ByteArray", + "bytearray": "772a1c72f58729" + }, + "cborHex": "47772a1c72f58729", + "cborBytes": [71, 119, 42, 28, 114, 245, 135, 41], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 512, + "sample": { + "_tag": "ByteArray", + "bytearray": "16b21574e5343acc45e2d1" + }, + "cborHex": "4b16b21574e5343acc45e2d1", + "cborBytes": [75, 22, 178, 21, 116, 229, 52, 58, 204, 69, 226, 209], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 513, + "sample": { + "_tag": "ByteArray", + "bytearray": "8ac503" + }, + "cborHex": "438ac503", + "cborBytes": [67, 138, 197, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 514, + "sample": { + "_tag": "ByteArray", + "bytearray": "10" + }, + "cborHex": "4110", + "cborBytes": [65, 16], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 515, + "sample": { + "_tag": "ByteArray", + "bytearray": "92f96d39fd07b6379e56" + }, + "cborHex": "4a92f96d39fd07b6379e56", + "cborBytes": [74, 146, 249, 109, 57, 253, 7, 182, 55, 158, 86], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 516, + "sample": { + "_tag": "ByteArray", + "bytearray": "1ced0201fcfafa000602f9" + }, + "cborHex": "4b1ced0201fcfafa000602f9", + "cborBytes": [75, 28, 237, 2, 1, 252, 250, 250, 0, 6, 2, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 517, + "sample": { + "_tag": "ByteArray", + "bytearray": "db0145f8767fd0fa75bc94" + }, + "cborHex": "4bdb0145f8767fd0fa75bc94", + "cborBytes": [75, 219, 1, 69, 248, 118, 127, 208, 250, 117, 188, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 518, + "sample": { + "_tag": "ByteArray", + "bytearray": "f80406fdbe44ad0102b800" + }, + "cborHex": "4bf80406fdbe44ad0102b800", + "cborBytes": [75, 248, 4, 6, 253, 190, 68, 173, 1, 2, 184, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 519, + "sample": { + "_tag": "ByteArray", + "bytearray": "00e3d304" + }, + "cborHex": "4400e3d304", + "cborBytes": [68, 0, 227, 211, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 520, + "sample": { + "_tag": "ByteArray", + "bytearray": "d2c4b3c4262479efbc" + }, + "cborHex": "49d2c4b3c4262479efbc", + "cborBytes": [73, 210, 196, 179, 196, 38, 36, 121, 239, 188], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 521, + "sample": { + "_tag": "ByteArray", + "bytearray": "c68da793" + }, + "cborHex": "44c68da793", + "cborBytes": [68, 198, 141, 167, 147], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 522, + "sample": { + "_tag": "ByteArray", + "bytearray": "c206ff0734fbf56f110207" + }, + "cborHex": "4bc206ff0734fbf56f110207", + "cborBytes": [75, 194, 6, 255, 7, 52, 251, 245, 111, 17, 2, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 523, + "sample": { + "_tag": "ByteArray", + "bytearray": "0701" + }, + "cborHex": "420701", + "cborBytes": [66, 7, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 524, + "sample": { + "_tag": "ByteArray", + "bytearray": "97" + }, + "cborHex": "4197", + "cborBytes": [65, 151], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 525, + "sample": { + "_tag": "ByteArray", + "bytearray": "aa54cccc" + }, + "cborHex": "44aa54cccc", + "cborBytes": [68, 170, 84, 204, 204], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 526, + "sample": { + "_tag": "ByteArray", + "bytearray": "1c16" + }, + "cborHex": "421c16", + "cborBytes": [66, 28, 22], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 527, + "sample": { + "_tag": "ByteArray", + "bytearray": "08b849e7" + }, + "cborHex": "4408b849e7", + "cborBytes": [68, 8, 184, 73, 231], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 528, + "sample": { + "_tag": "ByteArray", + "bytearray": "681418ad" + }, + "cborHex": "44681418ad", + "cborBytes": [68, 104, 20, 24, 173], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 529, + "sample": { + "_tag": "ByteArray", + "bytearray": "6e238bd7e0fa40acdb" + }, + "cborHex": "496e238bd7e0fa40acdb", + "cborBytes": [73, 110, 35, 139, 215, 224, 250, 64, 172, 219], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 530, + "sample": { + "_tag": "ByteArray", + "bytearray": "ecf90080" + }, + "cborHex": "44ecf90080", + "cborBytes": [68, 236, 249, 0, 128], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 531, + "sample": { + "_tag": "ByteArray", + "bytearray": "0305" + }, + "cborHex": "420305", + "cborBytes": [66, 3, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 532, + "sample": { + "_tag": "ByteArray", + "bytearray": "edee" + }, + "cborHex": "42edee", + "cborBytes": [66, 237, 238], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 533, + "sample": { + "_tag": "ByteArray", + "bytearray": "c9ceadfc4954eccf7ea45c" + }, + "cborHex": "4bc9ceadfc4954eccf7ea45c", + "cborBytes": [75, 201, 206, 173, 252, 73, 84, 236, 207, 126, 164, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 534, + "sample": { + "_tag": "ByteArray", + "bytearray": "77fd01" + }, + "cborHex": "4377fd01", + "cborBytes": [67, 119, 253, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 535, + "sample": { + "_tag": "ByteArray", + "bytearray": "eaade1024d04885504fe02f2" + }, + "cborHex": "4ceaade1024d04885504fe02f2", + "cborBytes": [76, 234, 173, 225, 2, 77, 4, 136, 85, 4, 254, 2, 242], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 536, + "sample": { + "_tag": "ByteArray", + "bytearray": "97bb35e26aab31" + }, + "cborHex": "4797bb35e26aab31", + "cborBytes": [71, 151, 187, 53, 226, 106, 171, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 537, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcfe53" + }, + "cborHex": "43fcfe53", + "cborBytes": [67, 252, 254, 83], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 538, + "sample": { + "_tag": "ByteArray", + "bytearray": "0204" + }, + "cborHex": "420204", + "cborBytes": [66, 2, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 539, + "sample": { + "_tag": "ByteArray", + "bytearray": "be0303" + }, + "cborHex": "43be0303", + "cborBytes": [67, 190, 3, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 540, + "sample": { + "_tag": "ByteArray", + "bytearray": "73814a1ff68d15301d" + }, + "cborHex": "4973814a1ff68d15301d", + "cborBytes": [73, 115, 129, 74, 31, 246, 141, 21, 48, 29], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 541, + "sample": { + "_tag": "ByteArray", + "bytearray": "9e05fb07" + }, + "cborHex": "449e05fb07", + "cborBytes": [68, 158, 5, 251, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 542, + "sample": { + "_tag": "ByteArray", + "bytearray": "af3c2c" + }, + "cborHex": "43af3c2c", + "cborBytes": [67, 175, 60, 44], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 543, + "sample": { + "_tag": "ByteArray", + "bytearray": "1f9fa9976336b57487b8c2" + }, + "cborHex": "4b1f9fa9976336b57487b8c2", + "cborBytes": [75, 31, 159, 169, 151, 99, 54, 181, 116, 135, 184, 194], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 544, + "sample": { + "_tag": "ByteArray", + "bytearray": "aee9dd19787063122563" + }, + "cborHex": "4aaee9dd19787063122563", + "cborBytes": [74, 174, 233, 221, 25, 120, 112, 99, 18, 37, 99], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 545, + "sample": { + "_tag": "ByteArray", + "bytearray": "fefda42f" + }, + "cborHex": "44fefda42f", + "cborBytes": [68, 254, 253, 164, 47], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 546, + "sample": { + "_tag": "ByteArray", + "bytearray": "deffa2912fb7" + }, + "cborHex": "46deffa2912fb7", + "cborBytes": [70, 222, 255, 162, 145, 47, 183], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 547, + "sample": { + "_tag": "ByteArray", + "bytearray": "6fffcb0e" + }, + "cborHex": "446fffcb0e", + "cborBytes": [68, 111, 255, 203, 14], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 548, + "sample": { + "_tag": "ByteArray", + "bytearray": "1f518c9296998d6b" + }, + "cborHex": "481f518c9296998d6b", + "cborBytes": [72, 31, 81, 140, 146, 150, 153, 141, 107], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 549, + "sample": { + "_tag": "ByteArray", + "bytearray": "3be78aca60cb" + }, + "cborHex": "463be78aca60cb", + "cborBytes": [70, 59, 231, 138, 202, 96, 203], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 550, + "sample": { + "_tag": "ByteArray", + "bytearray": "c43138cad397591bae" + }, + "cborHex": "49c43138cad397591bae", + "cborBytes": [73, 196, 49, 56, 202, 211, 151, 89, 27, 174], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 551, + "sample": { + "_tag": "ByteArray", + "bytearray": "0a1df67960a3" + }, + "cborHex": "460a1df67960a3", + "cborBytes": [70, 10, 29, 246, 121, 96, 163], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 552, + "sample": { + "_tag": "ByteArray", + "bytearray": "c694c1" + }, + "cborHex": "43c694c1", + "cborBytes": [67, 198, 148, 193], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 553, + "sample": { + "_tag": "ByteArray", + "bytearray": "1b48d67a4eb733" + }, + "cborHex": "471b48d67a4eb733", + "cborBytes": [71, 27, 72, 214, 122, 78, 183, 51], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 554, + "sample": { + "_tag": "ByteArray", + "bytearray": "87069a" + }, + "cborHex": "4387069a", + "cborBytes": [67, 135, 6, 154], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 555, + "sample": { + "_tag": "ByteArray", + "bytearray": "719c105f8f64419f2d8ad316" + }, + "cborHex": "4c719c105f8f64419f2d8ad316", + "cborBytes": [76, 113, 156, 16, 95, 143, 100, 65, 159, 45, 138, 211, 22], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 556, + "sample": { + "_tag": "ByteArray", + "bytearray": "71023136e44c61ac263e" + }, + "cborHex": "4a71023136e44c61ac263e", + "cborBytes": [74, 113, 2, 49, 54, 228, 76, 97, 172, 38, 62], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 557, + "sample": { + "_tag": "ByteArray", + "bytearray": "d4f8e9" + }, + "cborHex": "43d4f8e9", + "cborBytes": [67, 212, 248, 233], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 558, + "sample": { + "_tag": "ByteArray", + "bytearray": "a8349006" + }, + "cborHex": "44a8349006", + "cborBytes": [68, 168, 52, 144, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 559, + "sample": { + "_tag": "ByteArray", + "bytearray": "e3303867451eff57cb3c3b" + }, + "cborHex": "4be3303867451eff57cb3c3b", + "cborBytes": [75, 227, 48, 56, 103, 69, 30, 255, 87, 203, 60, 59], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 560, + "sample": { + "_tag": "ByteArray", + "bytearray": "82953833210ee29b" + }, + "cborHex": "4882953833210ee29b", + "cborBytes": [72, 130, 149, 56, 51, 33, 14, 226, 155], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 561, + "sample": { + "_tag": "ByteArray", + "bytearray": "09b7" + }, + "cborHex": "4209b7", + "cborBytes": [66, 9, 183], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 562, + "sample": { + "_tag": "ByteArray", + "bytearray": "8f3b16586f" + }, + "cborHex": "458f3b16586f", + "cborBytes": [69, 143, 59, 22, 88, 111], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 563, + "sample": { + "_tag": "ByteArray", + "bytearray": "0106" + }, + "cborHex": "420106", + "cborBytes": [66, 1, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 564, + "sample": { + "_tag": "ByteArray", + "bytearray": "e30607" + }, + "cborHex": "43e30607", + "cborBytes": [67, 227, 6, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 565, + "sample": { + "_tag": "ByteArray", + "bytearray": "77bc1b" + }, + "cborHex": "4377bc1b", + "cborBytes": [67, 119, 188, 27], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 566, + "sample": { + "_tag": "ByteArray", + "bytearray": "504cb4" + }, + "cborHex": "43504cb4", + "cborBytes": [67, 80, 76, 180], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 567, + "sample": { + "_tag": "ByteArray", + "bytearray": "0402d9" + }, + "cborHex": "430402d9", + "cborBytes": [67, 4, 2, 217], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 568, + "sample": { + "_tag": "ByteArray", + "bytearray": "8782" + }, + "cborHex": "428782", + "cborBytes": [66, 135, 130], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 569, + "sample": { + "_tag": "ByteArray", + "bytearray": "9f068a05060303b703" + }, + "cborHex": "499f068a05060303b703", + "cborBytes": [73, 159, 6, 138, 5, 6, 3, 3, 183, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 570, + "sample": { + "_tag": "ByteArray", + "bytearray": "7e20" + }, + "cborHex": "427e20", + "cborBytes": [66, 126, 32], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 571, + "sample": { + "_tag": "ByteArray", + "bytearray": "52b4eafc6d22" + }, + "cborHex": "4652b4eafc6d22", + "cborBytes": [70, 82, 180, 234, 252, 109, 34], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 572, + "sample": { + "_tag": "ByteArray", + "bytearray": "bc34f6678db45b2951" + }, + "cborHex": "49bc34f6678db45b2951", + "cborBytes": [73, 188, 52, 246, 103, 141, 180, 91, 41, 81], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 573, + "sample": { + "_tag": "ByteArray", + "bytearray": "d2a7cdf65619f0650c4a327f" + }, + "cborHex": "4cd2a7cdf65619f0650c4a327f", + "cborBytes": [76, 210, 167, 205, 246, 86, 25, 240, 101, 12, 74, 50, 127], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 574, + "sample": { + "_tag": "ByteArray", + "bytearray": "f4" + }, + "cborHex": "41f4", + "cborBytes": [65, 244], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 575, + "sample": { + "_tag": "ByteArray", + "bytearray": "067efb23" + }, + "cborHex": "44067efb23", + "cborBytes": [68, 6, 126, 251, 35], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 576, + "sample": { + "_tag": "ByteArray", + "bytearray": "cf" + }, + "cborHex": "41cf", + "cborBytes": [65, 207], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 577, + "sample": { + "_tag": "ByteArray", + "bytearray": "16a592c501be2e52b316" + }, + "cborHex": "4a16a592c501be2e52b316", + "cborBytes": [74, 22, 165, 146, 197, 1, 190, 46, 82, 179, 22], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 578, + "sample": { + "_tag": "ByteArray", + "bytearray": "8b16fff8" + }, + "cborHex": "448b16fff8", + "cborBytes": [68, 139, 22, 255, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 579, + "sample": { + "_tag": "ByteArray", + "bytearray": "79d012e9" + }, + "cborHex": "4479d012e9", + "cborBytes": [68, 121, 208, 18, 233], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 580, + "sample": { + "_tag": "ByteArray", + "bytearray": "de" + }, + "cborHex": "41de", + "cborBytes": [65, 222], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 581, + "sample": { + "_tag": "ByteArray", + "bytearray": "07fb010100fe02002723" + }, + "cborHex": "4a07fb010100fe02002723", + "cborBytes": [74, 7, 251, 1, 1, 0, 254, 2, 0, 39, 35], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 582, + "sample": { + "_tag": "ByteArray", + "bytearray": "3b95bb303209" + }, + "cborHex": "463b95bb303209", + "cborBytes": [70, 59, 149, 187, 48, 50, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 583, + "sample": { + "_tag": "ByteArray", + "bytearray": "ad2206" + }, + "cborHex": "43ad2206", + "cborBytes": [67, 173, 34, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 584, + "sample": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "cborHex": "4102", + "cborBytes": [65, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 585, + "sample": { + "_tag": "ByteArray", + "bytearray": "fef9a3b52d9f0a02" + }, + "cborHex": "48fef9a3b52d9f0a02", + "cborBytes": [72, 254, 249, 163, 181, 45, 159, 10, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 586, + "sample": { + "_tag": "ByteArray", + "bytearray": "3338a03cf20134f324a6" + }, + "cborHex": "4a3338a03cf20134f324a6", + "cborBytes": [74, 51, 56, 160, 60, 242, 1, 52, 243, 36, 166], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 587, + "sample": { + "_tag": "ByteArray", + "bytearray": "3d72" + }, + "cborHex": "423d72", + "cborBytes": [66, 61, 114], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 588, + "sample": { + "_tag": "ByteArray", + "bytearray": "6015" + }, + "cborHex": "426015", + "cborBytes": [66, 96, 21], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 589, + "sample": { + "_tag": "ByteArray", + "bytearray": "54" + }, + "cborHex": "4154", + "cborBytes": [65, 84], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 590, + "sample": { + "_tag": "ByteArray", + "bytearray": "0157f9" + }, + "cborHex": "430157f9", + "cborBytes": [67, 1, 87, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 591, + "sample": { + "_tag": "ByteArray", + "bytearray": "316def8a8a06fb30420706fd" + }, + "cborHex": "4c316def8a8a06fb30420706fd", + "cborBytes": [76, 49, 109, 239, 138, 138, 6, 251, 48, 66, 7, 6, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 592, + "sample": { + "_tag": "ByteArray", + "bytearray": "2a809371a8c7bd" + }, + "cborHex": "472a809371a8c7bd", + "cborBytes": [71, 42, 128, 147, 113, 168, 199, 189], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 593, + "sample": { + "_tag": "ByteArray", + "bytearray": "39fc784418ecf525d083" + }, + "cborHex": "4a39fc784418ecf525d083", + "cborBytes": [74, 57, 252, 120, 68, 24, 236, 245, 37, 208, 131], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 594, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8fee2" + }, + "cborHex": "43f8fee2", + "cborBytes": [67, 248, 254, 226], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 595, + "sample": { + "_tag": "ByteArray", + "bytearray": "064adc72fb07" + }, + "cborHex": "46064adc72fb07", + "cborBytes": [70, 6, 74, 220, 114, 251, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 596, + "sample": { + "_tag": "ByteArray", + "bytearray": "024e7a" + }, + "cborHex": "43024e7a", + "cborBytes": [67, 2, 78, 122], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 597, + "sample": { + "_tag": "ByteArray", + "bytearray": "b009589525bef567e3" + }, + "cborHex": "49b009589525bef567e3", + "cborBytes": [73, 176, 9, 88, 149, 37, 190, 245, 103, 227], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 598, + "sample": { + "_tag": "ByteArray", + "bytearray": "a8447050" + }, + "cborHex": "44a8447050", + "cborBytes": [68, 168, 68, 112, 80], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 599, + "sample": { + "_tag": "ByteArray", + "bytearray": "0771154f8c21" + }, + "cborHex": "460771154f8c21", + "cborBytes": [70, 7, 113, 21, 79, 140, 33], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 600, + "sample": { + "_tag": "ByteArray", + "bytearray": "016c" + }, + "cborHex": "42016c", + "cborBytes": [66, 1, 108], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 601, + "sample": { + "_tag": "ByteArray", + "bytearray": "cd01f900f828ad99300264" + }, + "cborHex": "4bcd01f900f828ad99300264", + "cborBytes": [75, 205, 1, 249, 0, 248, 40, 173, 153, 48, 2, 100], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 602, + "sample": { + "_tag": "ByteArray", + "bytearray": "3535" + }, + "cborHex": "423535", + "cborBytes": [66, 53, 53], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 603, + "sample": { + "_tag": "ByteArray", + "bytearray": "6b2caaf3b713" + }, + "cborHex": "466b2caaf3b713", + "cborBytes": [70, 107, 44, 170, 243, 183, 19], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 604, + "sample": { + "_tag": "ByteArray", + "bytearray": "1bb0ff4b35910717" + }, + "cborHex": "481bb0ff4b35910717", + "cborBytes": [72, 27, 176, 255, 75, 53, 145, 7, 23], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 605, + "sample": { + "_tag": "ByteArray", + "bytearray": "011605fefb06" + }, + "cborHex": "46011605fefb06", + "cborBytes": [70, 1, 22, 5, 254, 251, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 606, + "sample": { + "_tag": "ByteArray", + "bytearray": "35b8fc61508bb57adcd0" + }, + "cborHex": "4a35b8fc61508bb57adcd0", + "cborBytes": [74, 53, 184, 252, 97, 80, 139, 181, 122, 220, 208], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 607, + "sample": { + "_tag": "ByteArray", + "bytearray": "03fc4bfbf820fe480507fa91" + }, + "cborHex": "4c03fc4bfbf820fe480507fa91", + "cborBytes": [76, 3, 252, 75, 251, 248, 32, 254, 72, 5, 7, 250, 145], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 608, + "sample": { + "_tag": "ByteArray", + "bytearray": "040acd06" + }, + "cborHex": "44040acd06", + "cborBytes": [68, 4, 10, 205, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 609, + "sample": { + "_tag": "ByteArray", + "bytearray": "9b8fe139ce80630e6229" + }, + "cborHex": "4a9b8fe139ce80630e6229", + "cborBytes": [74, 155, 143, 225, 57, 206, 128, 99, 14, 98, 41], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 610, + "sample": { + "_tag": "ByteArray", + "bytearray": "f0525b9dae39d55ca2" + }, + "cborHex": "49f0525b9dae39d55ca2", + "cborBytes": [73, 240, 82, 91, 157, 174, 57, 213, 92, 162], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 611, + "sample": { + "_tag": "ByteArray", + "bytearray": "405f0f767fd10b99aac0cb" + }, + "cborHex": "4b405f0f767fd10b99aac0cb", + "cborBytes": [75, 64, 95, 15, 118, 127, 209, 11, 153, 170, 192, 203], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 612, + "sample": { + "_tag": "ByteArray", + "bytearray": "58c6" + }, + "cborHex": "4258c6", + "cborBytes": [66, 88, 198], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 613, + "sample": { + "_tag": "ByteArray", + "bytearray": "4c7f862a42526ded7a786d43" + }, + "cborHex": "4c4c7f862a42526ded7a786d43", + "cborBytes": [76, 76, 127, 134, 42, 66, 82, 109, 237, 122, 120, 109, 67], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 614, + "sample": { + "_tag": "ByteArray", + "bytearray": "45c0139fb0b8b7c855" + }, + "cborHex": "4945c0139fb0b8b7c855", + "cborBytes": [73, 69, 192, 19, 159, 176, 184, 183, 200, 85], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 615, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc050102a8fff80206" + }, + "cborHex": "49fc050102a8fff80206", + "cborBytes": [73, 252, 5, 1, 2, 168, 255, 248, 2, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 616, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe92eafc9633" + }, + "cborHex": "46fe92eafc9633", + "cborBytes": [70, 254, 146, 234, 252, 150, 51], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 617, + "sample": { + "_tag": "ByteArray", + "bytearray": "613b7d" + }, + "cborHex": "43613b7d", + "cborBytes": [67, 97, 59, 125], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 618, + "sample": { + "_tag": "ByteArray", + "bytearray": "ad90025ab02abc0303" + }, + "cborHex": "49ad90025ab02abc0303", + "cborBytes": [73, 173, 144, 2, 90, 176, 42, 188, 3, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 619, + "sample": { + "_tag": "ByteArray", + "bytearray": "5959feb1dcfe80f03885e81f" + }, + "cborHex": "4c5959feb1dcfe80f03885e81f", + "cborBytes": [76, 89, 89, 254, 177, 220, 254, 128, 240, 56, 133, 232, 31], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 620, + "sample": { + "_tag": "ByteArray", + "bytearray": "317761e9183ca9" + }, + "cborHex": "47317761e9183ca9", + "cborBytes": [71, 49, 119, 97, 233, 24, 60, 169], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 621, + "sample": { + "_tag": "ByteArray", + "bytearray": "bb00049e62fc04fff9c4ef28" + }, + "cborHex": "4cbb00049e62fc04fff9c4ef28", + "cborBytes": [76, 187, 0, 4, 158, 98, 252, 4, 255, 249, 196, 239, 40], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 622, + "sample": { + "_tag": "ByteArray", + "bytearray": "311e050644b296e9" + }, + "cborHex": "48311e050644b296e9", + "cborBytes": [72, 49, 30, 5, 6, 68, 178, 150, 233], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 623, + "sample": { + "_tag": "ByteArray", + "bytearray": "c842ed" + }, + "cborHex": "43c842ed", + "cborBytes": [67, 200, 66, 237], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 624, + "sample": { + "_tag": "ByteArray", + "bytearray": "c3a11d382903bda311849796" + }, + "cborHex": "4cc3a11d382903bda311849796", + "cborBytes": [76, 195, 161, 29, 56, 41, 3, 189, 163, 17, 132, 151, 150], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 625, + "sample": { + "_tag": "ByteArray", + "bytearray": "c95b940e9fc0f9" + }, + "cborHex": "47c95b940e9fc0f9", + "cborBytes": [71, 201, 91, 148, 14, 159, 192, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 626, + "sample": { + "_tag": "ByteArray", + "bytearray": "aef7d8" + }, + "cborHex": "43aef7d8", + "cborBytes": [67, 174, 247, 216], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 627, + "sample": { + "_tag": "ByteArray", + "bytearray": "26a3e5080440cdb25b80" + }, + "cborHex": "4a26a3e5080440cdb25b80", + "cborBytes": [74, 38, 163, 229, 8, 4, 64, 205, 178, 91, 128], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 628, + "sample": { + "_tag": "ByteArray", + "bytearray": "a16598b486b6" + }, + "cborHex": "46a16598b486b6", + "cborBytes": [70, 161, 101, 152, 180, 134, 182], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 629, + "sample": { + "_tag": "ByteArray", + "bytearray": "1c0e2d05353a442fb991540d" + }, + "cborHex": "4c1c0e2d05353a442fb991540d", + "cborBytes": [76, 28, 14, 45, 5, 53, 58, 68, 47, 185, 145, 84, 13], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 630, + "sample": { + "_tag": "ByteArray", + "bytearray": "7e805bc78d" + }, + "cborHex": "457e805bc78d", + "cborBytes": [69, 126, 128, 91, 199, 141], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 631, + "sample": { + "_tag": "ByteArray", + "bytearray": "ae6d06" + }, + "cborHex": "43ae6d06", + "cborBytes": [67, 174, 109, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 632, + "sample": { + "_tag": "ByteArray", + "bytearray": "17f9feb104c4f8" + }, + "cborHex": "4717f9feb104c4f8", + "cborBytes": [71, 23, 249, 254, 177, 4, 196, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 633, + "sample": { + "_tag": "ByteArray", + "bytearray": "443100" + }, + "cborHex": "43443100", + "cborBytes": [67, 68, 49, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 634, + "sample": { + "_tag": "ByteArray", + "bytearray": "56762ad480cbfbec0a" + }, + "cborHex": "4956762ad480cbfbec0a", + "cborBytes": [73, 86, 118, 42, 212, 128, 203, 251, 236, 10], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 635, + "sample": { + "_tag": "ByteArray", + "bytearray": "077303" + }, + "cborHex": "43077303", + "cborBytes": [67, 7, 115, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 636, + "sample": { + "_tag": "ByteArray", + "bytearray": "ca" + }, + "cborHex": "41ca", + "cborBytes": [65, 202], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 637, + "sample": { + "_tag": "ByteArray", + "bytearray": "04a00c" + }, + "cborHex": "4304a00c", + "cborBytes": [67, 4, 160, 12], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 638, + "sample": { + "_tag": "ByteArray", + "bytearray": "70050601" + }, + "cborHex": "4470050601", + "cborBytes": [68, 112, 5, 6, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 639, + "sample": { + "_tag": "ByteArray", + "bytearray": "c6f6d927" + }, + "cborHex": "44c6f6d927", + "cborBytes": [68, 198, 246, 217, 39], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 640, + "sample": { + "_tag": "ByteArray", + "bytearray": "067604590401ca02a4fbac" + }, + "cborHex": "4b067604590401ca02a4fbac", + "cborBytes": [75, 6, 118, 4, 89, 4, 1, 202, 2, 164, 251, 172], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 641, + "sample": { + "_tag": "ByteArray", + "bytearray": "dd66af9e8c470256" + }, + "cborHex": "48dd66af9e8c470256", + "cborBytes": [72, 221, 102, 175, 158, 140, 71, 2, 86], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 642, + "sample": { + "_tag": "ByteArray", + "bytearray": "7ef1" + }, + "cborHex": "427ef1", + "cborBytes": [66, 126, 241], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 643, + "sample": { + "_tag": "ByteArray", + "bytearray": "039907" + }, + "cborHex": "43039907", + "cborBytes": [67, 3, 153, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 644, + "sample": { + "_tag": "ByteArray", + "bytearray": "58fce10102024b0b65070701" + }, + "cborHex": "4c58fce10102024b0b65070701", + "cborBytes": [76, 88, 252, 225, 1, 2, 2, 75, 11, 101, 7, 7, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 645, + "sample": { + "_tag": "ByteArray", + "bytearray": "1b" + }, + "cborHex": "411b", + "cborBytes": [65, 27], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 646, + "sample": { + "_tag": "ByteArray", + "bytearray": "2701e9" + }, + "cborHex": "432701e9", + "cborBytes": [67, 39, 1, 233], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 647, + "sample": { + "_tag": "ByteArray", + "bytearray": "8d0697c6faff" + }, + "cborHex": "468d0697c6faff", + "cborBytes": [70, 141, 6, 151, 198, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 648, + "sample": { + "_tag": "ByteArray", + "bytearray": "5a98b075fa0de22476" + }, + "cborHex": "495a98b075fa0de22476", + "cborBytes": [73, 90, 152, 176, 117, 250, 13, 226, 36, 118], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 649, + "sample": { + "_tag": "ByteArray", + "bytearray": "0db0" + }, + "cborHex": "420db0", + "cborBytes": [66, 13, 176], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 650, + "sample": { + "_tag": "ByteArray", + "bytearray": "77e70626f678" + }, + "cborHex": "4677e70626f678", + "cborBytes": [70, 119, 231, 6, 38, 246, 120], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 651, + "sample": { + "_tag": "ByteArray", + "bytearray": "f46e" + }, + "cborHex": "42f46e", + "cborBytes": [66, 244, 110], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 652, + "sample": { + "_tag": "ByteArray", + "bytearray": "ccd2" + }, + "cborHex": "42ccd2", + "cborBytes": [66, 204, 210], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 653, + "sample": { + "_tag": "ByteArray", + "bytearray": "09bbbb41b58a8ce727b1" + }, + "cborHex": "4a09bbbb41b58a8ce727b1", + "cborBytes": [74, 9, 187, 187, 65, 181, 138, 140, 231, 39, 177], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 654, + "sample": { + "_tag": "ByteArray", + "bytearray": "ccc28880bfb96443fb" + }, + "cborHex": "49ccc28880bfb96443fb", + "cborBytes": [73, 204, 194, 136, 128, 191, 185, 100, 67, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 655, + "sample": { + "_tag": "ByteArray", + "bytearray": "0ac0f6fc76" + }, + "cborHex": "450ac0f6fc76", + "cborBytes": [69, 10, 192, 246, 252, 118], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 656, + "sample": { + "_tag": "ByteArray", + "bytearray": "ec2e4759ed6babc3df" + }, + "cborHex": "49ec2e4759ed6babc3df", + "cborBytes": [73, 236, 46, 71, 89, 237, 107, 171, 195, 223], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 657, + "sample": { + "_tag": "ByteArray", + "bytearray": "f23e1f3ca027ebf444cbe824" + }, + "cborHex": "4cf23e1f3ca027ebf444cbe824", + "cborBytes": [76, 242, 62, 31, 60, 160, 39, 235, 244, 68, 203, 232, 36], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 658, + "sample": { + "_tag": "ByteArray", + "bytearray": "4a5a03005dc3f9f24104" + }, + "cborHex": "4a4a5a03005dc3f9f24104", + "cborBytes": [74, 74, 90, 3, 0, 93, 195, 249, 242, 65, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 659, + "sample": { + "_tag": "ByteArray", + "bytearray": "9b96e58233903890d73b" + }, + "cborHex": "4a9b96e58233903890d73b", + "cborBytes": [74, 155, 150, 229, 130, 51, 144, 56, 144, 215, 59], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 660, + "sample": { + "_tag": "ByteArray", + "bytearray": "5f9403" + }, + "cborHex": "435f9403", + "cborBytes": [67, 95, 148, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 661, + "sample": { + "_tag": "ByteArray", + "bytearray": "7d7c8829" + }, + "cborHex": "447d7c8829", + "cborBytes": [68, 125, 124, 136, 41], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 662, + "sample": { + "_tag": "ByteArray", + "bytearray": "5ba13e2645cdf2ee90f64824" + }, + "cborHex": "4c5ba13e2645cdf2ee90f64824", + "cborBytes": [76, 91, 161, 62, 38, 69, 205, 242, 238, 144, 246, 72, 36], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 663, + "sample": { + "_tag": "ByteArray", + "bytearray": "d604" + }, + "cborHex": "42d604", + "cborBytes": [66, 214, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 664, + "sample": { + "_tag": "ByteArray", + "bytearray": "59fb" + }, + "cborHex": "4259fb", + "cborBytes": [66, 89, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 665, + "sample": { + "_tag": "ByteArray", + "bytearray": "8d" + }, + "cborHex": "418d", + "cborBytes": [65, 141], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 666, + "sample": { + "_tag": "ByteArray", + "bytearray": "35a861f247" + }, + "cborHex": "4535a861f247", + "cborBytes": [69, 53, 168, 97, 242, 71], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 667, + "sample": { + "_tag": "ByteArray", + "bytearray": "866b9917f9a2b8d3f39b25" + }, + "cborHex": "4b866b9917f9a2b8d3f39b25", + "cborBytes": [75, 134, 107, 153, 23, 249, 162, 184, 211, 243, 155, 37], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 668, + "sample": { + "_tag": "ByteArray", + "bytearray": "790600" + }, + "cborHex": "43790600", + "cborBytes": [67, 121, 6, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 669, + "sample": { + "_tag": "ByteArray", + "bytearray": "da774a9b68" + }, + "cborHex": "45da774a9b68", + "cborBytes": [69, 218, 119, 74, 155, 104], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 670, + "sample": { + "_tag": "ByteArray", + "bytearray": "931c23" + }, + "cborHex": "43931c23", + "cborBytes": [67, 147, 28, 35], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 671, + "sample": { + "_tag": "ByteArray", + "bytearray": "55f4ca228b90cb" + }, + "cborHex": "4755f4ca228b90cb", + "cborBytes": [71, 85, 244, 202, 34, 139, 144, 203], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 672, + "sample": { + "_tag": "ByteArray", + "bytearray": "64be9d2e7367220388170a" + }, + "cborHex": "4b64be9d2e7367220388170a", + "cborBytes": [75, 100, 190, 157, 46, 115, 103, 34, 3, 136, 23, 10], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 673, + "sample": { + "_tag": "ByteArray", + "bytearray": "2c3de6dd6404" + }, + "cborHex": "462c3de6dd6404", + "cborBytes": [70, 44, 61, 230, 221, 100, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 674, + "sample": { + "_tag": "ByteArray", + "bytearray": "f1" + }, + "cborHex": "41f1", + "cborBytes": [65, 241], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 675, + "sample": { + "_tag": "ByteArray", + "bytearray": "0e509b8d88" + }, + "cborHex": "450e509b8d88", + "cborBytes": [69, 14, 80, 155, 141, 136], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 676, + "sample": { + "_tag": "ByteArray", + "bytearray": "52a1d22d4d525a94b8c68df4" + }, + "cborHex": "4c52a1d22d4d525a94b8c68df4", + "cborBytes": [76, 82, 161, 210, 45, 77, 82, 90, 148, 184, 198, 141, 244], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 677, + "sample": { + "_tag": "ByteArray", + "bytearray": "6a75cd790eeada20a5" + }, + "cborHex": "496a75cd790eeada20a5", + "cborBytes": [73, 106, 117, 205, 121, 14, 234, 218, 32, 165], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 678, + "sample": { + "_tag": "ByteArray", + "bytearray": "427f31" + }, + "cborHex": "43427f31", + "cborBytes": [67, 66, 127, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 679, + "sample": { + "_tag": "ByteArray", + "bytearray": "6616f7b6e2510badc4b2" + }, + "cborHex": "4a6616f7b6e2510badc4b2", + "cborBytes": [74, 102, 22, 247, 182, 226, 81, 11, 173, 196, 178], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 680, + "sample": { + "_tag": "ByteArray", + "bytearray": "689a036b071107b1af" + }, + "cborHex": "49689a036b071107b1af", + "cborBytes": [73, 104, 154, 3, 107, 7, 17, 7, 177, 175], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 681, + "sample": { + "_tag": "ByteArray", + "bytearray": "b4" + }, + "cborHex": "41b4", + "cborBytes": [65, 180], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 682, + "sample": { + "_tag": "ByteArray", + "bytearray": "b98873b9cd219c4b770106" + }, + "cborHex": "4bb98873b9cd219c4b770106", + "cborBytes": [75, 185, 136, 115, 185, 205, 33, 156, 75, 119, 1, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 683, + "sample": { + "_tag": "ByteArray", + "bytearray": "6b21b9bd42b0515d" + }, + "cborHex": "486b21b9bd42b0515d", + "cborBytes": [72, 107, 33, 185, 189, 66, 176, 81, 93], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 684, + "sample": { + "_tag": "ByteArray", + "bytearray": "49a805f80400" + }, + "cborHex": "4649a805f80400", + "cborBytes": [70, 73, 168, 5, 248, 4, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 685, + "sample": { + "_tag": "ByteArray", + "bytearray": "ba8d" + }, + "cborHex": "42ba8d", + "cborBytes": [66, 186, 141], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 686, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8fd3f" + }, + "cborHex": "43f8fd3f", + "cborBytes": [67, 248, 253, 63], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 687, + "sample": { + "_tag": "ByteArray", + "bytearray": "bda45f96ae2d7b" + }, + "cborHex": "47bda45f96ae2d7b", + "cborBytes": [71, 189, 164, 95, 150, 174, 45, 123], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 688, + "sample": { + "_tag": "ByteArray", + "bytearray": "2d7d7edd8648cc" + }, + "cborHex": "472d7d7edd8648cc", + "cborBytes": [71, 45, 125, 126, 221, 134, 72, 204], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 689, + "sample": { + "_tag": "ByteArray", + "bytearray": "5e4e736907b2a0868d8016b9" + }, + "cborHex": "4c5e4e736907b2a0868d8016b9", + "cborBytes": [76, 94, 78, 115, 105, 7, 178, 160, 134, 141, 128, 22, 185], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 690, + "sample": { + "_tag": "ByteArray", + "bytearray": "8ec15d7f9ca1" + }, + "cborHex": "468ec15d7f9ca1", + "cborBytes": [70, 142, 193, 93, 127, 156, 161], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 691, + "sample": { + "_tag": "ByteArray", + "bytearray": "0a6c" + }, + "cborHex": "420a6c", + "cborBytes": [66, 10, 108], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 692, + "sample": { + "_tag": "ByteArray", + "bytearray": "88cb136c04d5f8" + }, + "cborHex": "4788cb136c04d5f8", + "cborBytes": [71, 136, 203, 19, 108, 4, 213, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 693, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe22e3" + }, + "cborHex": "43fe22e3", + "cborBytes": [67, 254, 34, 227], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 694, + "sample": { + "_tag": "ByteArray", + "bytearray": "0b463621851e65af02" + }, + "cborHex": "490b463621851e65af02", + "cborBytes": [73, 11, 70, 54, 33, 133, 30, 101, 175, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 695, + "sample": { + "_tag": "ByteArray", + "bytearray": "d90454bf" + }, + "cborHex": "44d90454bf", + "cborBytes": [68, 217, 4, 84, 191], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 696, + "sample": { + "_tag": "ByteArray", + "bytearray": "b78db7c2eca762" + }, + "cborHex": "47b78db7c2eca762", + "cborBytes": [71, 183, 141, 183, 194, 236, 167, 98], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 697, + "sample": { + "_tag": "ByteArray", + "bytearray": "15f15b7e4ef0ec90043700" + }, + "cborHex": "4b15f15b7e4ef0ec90043700", + "cborBytes": [75, 21, 241, 91, 126, 78, 240, 236, 144, 4, 55, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 698, + "sample": { + "_tag": "ByteArray", + "bytearray": "df1eb39436e198" + }, + "cborHex": "47df1eb39436e198", + "cborBytes": [71, 223, 30, 179, 148, 54, 225, 152], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 699, + "sample": { + "_tag": "ByteArray", + "bytearray": "d2b0" + }, + "cborHex": "42d2b0", + "cborBytes": [66, 210, 176], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 700, + "sample": { + "_tag": "ByteArray", + "bytearray": "79e84daf" + }, + "cborHex": "4479e84daf", + "cborBytes": [68, 121, 232, 77, 175], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 701, + "sample": { + "_tag": "ByteArray", + "bytearray": "8f22a1" + }, + "cborHex": "438f22a1", + "cborBytes": [67, 143, 34, 161], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 702, + "sample": { + "_tag": "ByteArray", + "bytearray": "05fafd" + }, + "cborHex": "4305fafd", + "cborBytes": [67, 5, 250, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 703, + "sample": { + "_tag": "ByteArray", + "bytearray": "c6" + }, + "cborHex": "41c6", + "cborBytes": [65, 198], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 704, + "sample": { + "_tag": "ByteArray", + "bytearray": "96ea5cf309e2" + }, + "cborHex": "4696ea5cf309e2", + "cborBytes": [70, 150, 234, 92, 243, 9, 226], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 705, + "sample": { + "_tag": "ByteArray", + "bytearray": "fdf300" + }, + "cborHex": "43fdf300", + "cborBytes": [67, 253, 243, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 706, + "sample": { + "_tag": "ByteArray", + "bytearray": "0a022bd82d0202" + }, + "cborHex": "470a022bd82d0202", + "cborBytes": [71, 10, 2, 43, 216, 45, 2, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 707, + "sample": { + "_tag": "ByteArray", + "bytearray": "f5d21a92ea50b1042a758c" + }, + "cborHex": "4bf5d21a92ea50b1042a758c", + "cborBytes": [75, 245, 210, 26, 146, 234, 80, 177, 4, 42, 117, 140], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 708, + "sample": { + "_tag": "ByteArray", + "bytearray": "a0" + }, + "cborHex": "41a0", + "cborBytes": [65, 160], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 709, + "sample": { + "_tag": "ByteArray", + "bytearray": "d90402fecbf9" + }, + "cborHex": "46d90402fecbf9", + "cborBytes": [70, 217, 4, 2, 254, 203, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 710, + "sample": { + "_tag": "ByteArray", + "bytearray": "8584e279d6" + }, + "cborHex": "458584e279d6", + "cborBytes": [69, 133, 132, 226, 121, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 711, + "sample": { + "_tag": "ByteArray", + "bytearray": "0007fe02059ff88149f8d0" + }, + "cborHex": "4b0007fe02059ff88149f8d0", + "cborBytes": [75, 0, 7, 254, 2, 5, 159, 248, 129, 73, 248, 208], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 712, + "sample": { + "_tag": "ByteArray", + "bytearray": "04f8a7" + }, + "cborHex": "4304f8a7", + "cborBytes": [67, 4, 248, 167], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 713, + "sample": { + "_tag": "ByteArray", + "bytearray": "0484006cc6bcf8040800a20c" + }, + "cborHex": "4c0484006cc6bcf8040800a20c", + "cborBytes": [76, 4, 132, 0, 108, 198, 188, 248, 4, 8, 0, 162, 12], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 714, + "sample": { + "_tag": "ByteArray", + "bytearray": "89faa8d2" + }, + "cborHex": "4489faa8d2", + "cborBytes": [68, 137, 250, 168, 210], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 715, + "sample": { + "_tag": "ByteArray", + "bytearray": "037401" + }, + "cborHex": "43037401", + "cborBytes": [67, 3, 116, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 716, + "sample": { + "_tag": "ByteArray", + "bytearray": "5c14d9ce026e04" + }, + "cborHex": "475c14d9ce026e04", + "cborBytes": [71, 92, 20, 217, 206, 2, 110, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 717, + "sample": { + "_tag": "ByteArray", + "bytearray": "6b67e05aa20e075e059d" + }, + "cborHex": "4a6b67e05aa20e075e059d", + "cborBytes": [74, 107, 103, 224, 90, 162, 14, 7, 94, 5, 157], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 718, + "sample": { + "_tag": "ByteArray", + "bytearray": "ab9e7e8703bdb4" + }, + "cborHex": "47ab9e7e8703bdb4", + "cborBytes": [71, 171, 158, 126, 135, 3, 189, 180], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 719, + "sample": { + "_tag": "ByteArray", + "bytearray": "07f8cc" + }, + "cborHex": "4307f8cc", + "cborBytes": [67, 7, 248, 204], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 720, + "sample": { + "_tag": "ByteArray", + "bytearray": "86c998b8ff90" + }, + "cborHex": "4686c998b8ff90", + "cborBytes": [70, 134, 201, 152, 184, 255, 144], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 721, + "sample": { + "_tag": "ByteArray", + "bytearray": "c40c" + }, + "cborHex": "42c40c", + "cborBytes": [66, 196, 12], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 722, + "sample": { + "_tag": "ByteArray", + "bytearray": "04c2f864069d" + }, + "cborHex": "4604c2f864069d", + "cborBytes": [70, 4, 194, 248, 100, 6, 157], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 723, + "sample": { + "_tag": "ByteArray", + "bytearray": "07c603dc" + }, + "cborHex": "4407c603dc", + "cborBytes": [68, 7, 198, 3, 220], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 724, + "sample": { + "_tag": "ByteArray", + "bytearray": "6c60010705" + }, + "cborHex": "456c60010705", + "cborBytes": [69, 108, 96, 1, 7, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 725, + "sample": { + "_tag": "ByteArray", + "bytearray": "84678b1d" + }, + "cborHex": "4484678b1d", + "cborBytes": [68, 132, 103, 139, 29], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 726, + "sample": { + "_tag": "ByteArray", + "bytearray": "ec6283091bffc9b4211039" + }, + "cborHex": "4bec6283091bffc9b4211039", + "cborBytes": [75, 236, 98, 131, 9, 27, 255, 201, 180, 33, 16, 57], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 727, + "sample": { + "_tag": "ByteArray", + "bytearray": "a2069da306fbcd0706de" + }, + "cborHex": "4aa2069da306fbcd0706de", + "cborBytes": [74, 162, 6, 157, 163, 6, 251, 205, 7, 6, 222], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 728, + "sample": { + "_tag": "ByteArray", + "bytearray": "9779fb7b8ab34d0c04067d" + }, + "cborHex": "4b9779fb7b8ab34d0c04067d", + "cborBytes": [75, 151, 121, 251, 123, 138, 179, 77, 12, 4, 6, 125], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 729, + "sample": { + "_tag": "ByteArray", + "bytearray": "80fe" + }, + "cborHex": "4280fe", + "cborBytes": [66, 128, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 730, + "sample": { + "_tag": "ByteArray", + "bytearray": "6223f19b3bc5f55c36147db1" + }, + "cborHex": "4c6223f19b3bc5f55c36147db1", + "cborBytes": [76, 98, 35, 241, 155, 59, 197, 245, 92, 54, 20, 125, 177], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 731, + "sample": { + "_tag": "ByteArray", + "bytearray": "f5fb24486157" + }, + "cborHex": "46f5fb24486157", + "cborBytes": [70, 245, 251, 36, 72, 97, 87], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 732, + "sample": { + "_tag": "ByteArray", + "bytearray": "bca351b4dba6" + }, + "cborHex": "46bca351b4dba6", + "cborBytes": [70, 188, 163, 81, 180, 219, 166], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 733, + "sample": { + "_tag": "ByteArray", + "bytearray": "f043fc05" + }, + "cborHex": "44f043fc05", + "cborBytes": [68, 240, 67, 252, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 734, + "sample": { + "_tag": "ByteArray", + "bytearray": "c7" + }, + "cborHex": "41c7", + "cborBytes": [65, 199], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 735, + "sample": { + "_tag": "ByteArray", + "bytearray": "7f2ff10d7870" + }, + "cborHex": "467f2ff10d7870", + "cborBytes": [70, 127, 47, 241, 13, 120, 112], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 736, + "sample": { + "_tag": "ByteArray", + "bytearray": "a6faff" + }, + "cborHex": "43a6faff", + "cborBytes": [67, 166, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 737, + "sample": { + "_tag": "ByteArray", + "bytearray": "fea2b261" + }, + "cborHex": "44fea2b261", + "cborBytes": [68, 254, 162, 178, 97], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 738, + "sample": { + "_tag": "ByteArray", + "bytearray": "db4daae42855872f2ace19" + }, + "cborHex": "4bdb4daae42855872f2ace19", + "cborBytes": [75, 219, 77, 170, 228, 40, 85, 135, 47, 42, 206, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 739, + "sample": { + "_tag": "ByteArray", + "bytearray": "e4c6e994c6" + }, + "cborHex": "45e4c6e994c6", + "cborBytes": [69, 228, 198, 233, 148, 198], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 740, + "sample": { + "_tag": "ByteArray", + "bytearray": "bf0505" + }, + "cborHex": "43bf0505", + "cborBytes": [67, 191, 5, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 741, + "sample": { + "_tag": "ByteArray", + "bytearray": "354b861d47ba1c00cc" + }, + "cborHex": "49354b861d47ba1c00cc", + "cborBytes": [73, 53, 75, 134, 29, 71, 186, 28, 0, 204], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 742, + "sample": { + "_tag": "ByteArray", + "bytearray": "07fa06bb" + }, + "cborHex": "4407fa06bb", + "cborBytes": [68, 7, 250, 6, 187], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 743, + "sample": { + "_tag": "ByteArray", + "bytearray": "c1232bb796" + }, + "cborHex": "45c1232bb796", + "cborBytes": [69, 193, 35, 43, 183, 150], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 744, + "sample": { + "_tag": "ByteArray", + "bytearray": "37a702" + }, + "cborHex": "4337a702", + "cborBytes": [67, 55, 167, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 745, + "sample": { + "_tag": "ByteArray", + "bytearray": "6c8a08" + }, + "cborHex": "436c8a08", + "cborBytes": [67, 108, 138, 8], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 746, + "sample": { + "_tag": "ByteArray", + "bytearray": "859cb8" + }, + "cborHex": "43859cb8", + "cborBytes": [67, 133, 156, 184], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 747, + "sample": { + "_tag": "ByteArray", + "bytearray": "b3fe6d6b17" + }, + "cborHex": "45b3fe6d6b17", + "cborBytes": [69, 179, 254, 109, 107, 23], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 748, + "sample": { + "_tag": "ByteArray", + "bytearray": "86" + }, + "cborHex": "4186", + "cborBytes": [65, 134], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 749, + "sample": { + "_tag": "ByteArray", + "bytearray": "a5" + }, + "cborHex": "41a5", + "cborBytes": [65, 165], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 750, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcfeff061f8f" + }, + "cborHex": "46fcfeff061f8f", + "cborBytes": [70, 252, 254, 255, 6, 31, 143], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 751, + "sample": { + "_tag": "ByteArray", + "bytearray": "9230" + }, + "cborHex": "429230", + "cborBytes": [66, 146, 48], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 752, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd7ce3f9bc05" + }, + "cborHex": "46fd7ce3f9bc05", + "cborBytes": [70, 253, 124, 227, 249, 188, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 753, + "sample": { + "_tag": "ByteArray", + "bytearray": "03617c" + }, + "cborHex": "4303617c", + "cborBytes": [67, 3, 97, 124], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 754, + "sample": { + "_tag": "ByteArray", + "bytearray": "2a03ac" + }, + "cborHex": "432a03ac", + "cborBytes": [67, 42, 3, 172], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 755, + "sample": { + "_tag": "ByteArray", + "bytearray": "8e2f79" + }, + "cborHex": "438e2f79", + "cborBytes": [67, 142, 47, 121], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 756, + "sample": { + "_tag": "ByteArray", + "bytearray": "9a6c54aedd37e1856b123cd2" + }, + "cborHex": "4c9a6c54aedd37e1856b123cd2", + "cborBytes": [76, 154, 108, 84, 174, 221, 55, 225, 133, 107, 18, 60, 210], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 757, + "sample": { + "_tag": "ByteArray", + "bytearray": "635cedf8bb37" + }, + "cborHex": "46635cedf8bb37", + "cborBytes": [70, 99, 92, 237, 248, 187, 55], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 758, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc92b9030663" + }, + "cborHex": "46fc92b9030663", + "cborBytes": [70, 252, 146, 185, 3, 6, 99], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 759, + "sample": { + "_tag": "ByteArray", + "bytearray": "17e76c9b9b" + }, + "cborHex": "4517e76c9b9b", + "cborBytes": [69, 23, 231, 108, 155, 155], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 760, + "sample": { + "_tag": "ByteArray", + "bytearray": "02a705fdcd6406" + }, + "cborHex": "4702a705fdcd6406", + "cborBytes": [71, 2, 167, 5, 253, 205, 100, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 761, + "sample": { + "_tag": "ByteArray", + "bytearray": "f80b5dfa06f907f8e4" + }, + "cborHex": "49f80b5dfa06f907f8e4", + "cborBytes": [73, 248, 11, 93, 250, 6, 249, 7, 248, 228], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 762, + "sample": { + "_tag": "ByteArray", + "bytearray": "27f4fd" + }, + "cborHex": "4327f4fd", + "cborBytes": [67, 39, 244, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 763, + "sample": { + "_tag": "ByteArray", + "bytearray": "0be90fd3" + }, + "cborHex": "440be90fd3", + "cborBytes": [68, 11, 233, 15, 211], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 764, + "sample": { + "_tag": "ByteArray", + "bytearray": "02060705050a0207f93d0003" + }, + "cborHex": "4c02060705050a0207f93d0003", + "cborBytes": [76, 2, 6, 7, 5, 5, 10, 2, 7, 249, 61, 0, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 765, + "sample": { + "_tag": "ByteArray", + "bytearray": "0061f94601" + }, + "cborHex": "450061f94601", + "cborBytes": [69, 0, 97, 249, 70, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 766, + "sample": { + "_tag": "ByteArray", + "bytearray": "340504" + }, + "cborHex": "43340504", + "cborBytes": [67, 52, 5, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 767, + "sample": { + "_tag": "ByteArray", + "bytearray": "187bd7cdc4b2fc" + }, + "cborHex": "47187bd7cdc4b2fc", + "cborBytes": [71, 24, 123, 215, 205, 196, 178, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 768, + "sample": { + "_tag": "ByteArray", + "bytearray": "3e7c8762a44c10c61b010ea3" + }, + "cborHex": "4c3e7c8762a44c10c61b010ea3", + "cborBytes": [76, 62, 124, 135, 98, 164, 76, 16, 198, 27, 1, 14, 163], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 769, + "sample": { + "_tag": "ByteArray", + "bytearray": "84fb" + }, + "cborHex": "4284fb", + "cborBytes": [66, 132, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 770, + "sample": { + "_tag": "ByteArray", + "bytearray": "a0407a57043dd1e5f9" + }, + "cborHex": "49a0407a57043dd1e5f9", + "cborBytes": [73, 160, 64, 122, 87, 4, 61, 209, 229, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 771, + "sample": { + "_tag": "ByteArray", + "bytearray": "6cecb8" + }, + "cborHex": "436cecb8", + "cborBytes": [67, 108, 236, 184], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 772, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "cborHex": "41fc", + "cborBytes": [65, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 773, + "sample": { + "_tag": "ByteArray", + "bytearray": "01ff" + }, + "cborHex": "4201ff", + "cborBytes": [66, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 774, + "sample": { + "_tag": "ByteArray", + "bytearray": "cfc8ad" + }, + "cborHex": "43cfc8ad", + "cborBytes": [67, 207, 200, 173], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 775, + "sample": { + "_tag": "ByteArray", + "bytearray": "5e7f6b" + }, + "cborHex": "435e7f6b", + "cborBytes": [67, 94, 127, 107], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 776, + "sample": { + "_tag": "ByteArray", + "bytearray": "610196f9fd1c2bb16258" + }, + "cborHex": "4a610196f9fd1c2bb16258", + "cborBytes": [74, 97, 1, 150, 249, 253, 28, 43, 177, 98, 88], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 777, + "sample": { + "_tag": "ByteArray", + "bytearray": "3c14" + }, + "cborHex": "423c14", + "cborBytes": [66, 60, 20], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 778, + "sample": { + "_tag": "ByteArray", + "bytearray": "f839ae" + }, + "cborHex": "43f839ae", + "cborBytes": [67, 248, 57, 174], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 779, + "sample": { + "_tag": "ByteArray", + "bytearray": "29a5d58f" + }, + "cborHex": "4429a5d58f", + "cborBytes": [68, 41, 165, 213, 143], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 780, + "sample": { + "_tag": "ByteArray", + "bytearray": "5d07fd" + }, + "cborHex": "435d07fd", + "cborBytes": [67, 93, 7, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 781, + "sample": { + "_tag": "ByteArray", + "bytearray": "ebdd51008f397a5c" + }, + "cborHex": "48ebdd51008f397a5c", + "cborBytes": [72, 235, 221, 81, 0, 143, 57, 122, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 782, + "sample": { + "_tag": "ByteArray", + "bytearray": "7dfdb3be3d7f0844a0b6ec38" + }, + "cborHex": "4c7dfdb3be3d7f0844a0b6ec38", + "cborBytes": [76, 125, 253, 179, 190, 61, 127, 8, 68, 160, 182, 236, 56], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 783, + "sample": { + "_tag": "ByteArray", + "bytearray": "0707048a" + }, + "cborHex": "440707048a", + "cborBytes": [68, 7, 7, 4, 138], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 784, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff51e044214d7e" + }, + "cborHex": "47ff51e044214d7e", + "cborBytes": [71, 255, 81, 224, 68, 33, 77, 126], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 785, + "sample": { + "_tag": "ByteArray", + "bytearray": "b32805" + }, + "cborHex": "43b32805", + "cborBytes": [67, 179, 40, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 786, + "sample": { + "_tag": "ByteArray", + "bytearray": "1f573097" + }, + "cborHex": "441f573097", + "cborBytes": [68, 31, 87, 48, 151], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 787, + "sample": { + "_tag": "ByteArray", + "bytearray": "2509f9d746" + }, + "cborHex": "452509f9d746", + "cborBytes": [69, 37, 9, 249, 215, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 788, + "sample": { + "_tag": "ByteArray", + "bytearray": "e3" + }, + "cborHex": "41e3", + "cborBytes": [65, 227], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 789, + "sample": { + "_tag": "ByteArray", + "bytearray": "a28eb9c4c1ed28dea3" + }, + "cborHex": "49a28eb9c4c1ed28dea3", + "cborBytes": [73, 162, 142, 185, 196, 193, 237, 40, 222, 163], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 790, + "sample": { + "_tag": "ByteArray", + "bytearray": "d02b890c5abc558c68" + }, + "cborHex": "49d02b890c5abc558c68", + "cborBytes": [73, 208, 43, 137, 12, 90, 188, 85, 140, 104], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 791, + "sample": { + "_tag": "ByteArray", + "bytearray": "03164ac4f3" + }, + "cborHex": "4503164ac4f3", + "cborBytes": [69, 3, 22, 74, 196, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 792, + "sample": { + "_tag": "ByteArray", + "bytearray": "488c106fc49faa57" + }, + "cborHex": "48488c106fc49faa57", + "cborBytes": [72, 72, 140, 16, 111, 196, 159, 170, 87], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 793, + "sample": { + "_tag": "ByteArray", + "bytearray": "0694e703054dd80635" + }, + "cborHex": "490694e703054dd80635", + "cborBytes": [73, 6, 148, 231, 3, 5, 77, 216, 6, 53], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 794, + "sample": { + "_tag": "ByteArray", + "bytearray": "3173" + }, + "cborHex": "423173", + "cborBytes": [66, 49, 115], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 795, + "sample": { + "_tag": "ByteArray", + "bytearray": "7049c624de4409" + }, + "cborHex": "477049c624de4409", + "cborBytes": [71, 112, 73, 198, 36, 222, 68, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 796, + "sample": { + "_tag": "ByteArray", + "bytearray": "7c0178f8" + }, + "cborHex": "447c0178f8", + "cborBytes": [68, 124, 1, 120, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 797, + "sample": { + "_tag": "ByteArray", + "bytearray": "8ef20704" + }, + "cborHex": "448ef20704", + "cborBytes": [68, 142, 242, 7, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 798, + "sample": { + "_tag": "ByteArray", + "bytearray": "f6841a43438ce3" + }, + "cborHex": "47f6841a43438ce3", + "cborBytes": [71, 246, 132, 26, 67, 67, 140, 227], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 799, + "sample": { + "_tag": "ByteArray", + "bytearray": "f806" + }, + "cborHex": "42f806", + "cborBytes": [66, 248, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 800, + "sample": { + "_tag": "ByteArray", + "bytearray": "00bd039cff02f897" + }, + "cborHex": "4800bd039cff02f897", + "cborBytes": [72, 0, 189, 3, 156, 255, 2, 248, 151], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 801, + "sample": { + "_tag": "ByteArray", + "bytearray": "06010785ad07300443c8" + }, + "cborHex": "4a06010785ad07300443c8", + "cborBytes": [74, 6, 1, 7, 133, 173, 7, 48, 4, 67, 200], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 802, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff00fe01aa00f803015519" + }, + "cborHex": "4bff00fe01aa00f803015519", + "cborBytes": [75, 255, 0, 254, 1, 170, 0, 248, 3, 1, 85, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 803, + "sample": { + "_tag": "ByteArray", + "bytearray": "3d74f80cd4759a72c3" + }, + "cborHex": "493d74f80cd4759a72c3", + "cborBytes": [73, 61, 116, 248, 12, 212, 117, 154, 114, 195], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 804, + "sample": { + "_tag": "ByteArray", + "bytearray": "061404835f061f91fd38" + }, + "cborHex": "4a061404835f061f91fd38", + "cborBytes": [74, 6, 20, 4, 131, 95, 6, 31, 145, 253, 56], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 805, + "sample": { + "_tag": "ByteArray", + "bytearray": "20b7" + }, + "cborHex": "4220b7", + "cborBytes": [66, 32, 183], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 806, + "sample": { + "_tag": "ByteArray", + "bytearray": "c23b9943e0418a0aa7d8" + }, + "cborHex": "4ac23b9943e0418a0aa7d8", + "cborBytes": [74, 194, 59, 153, 67, 224, 65, 138, 10, 167, 216], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 807, + "sample": { + "_tag": "ByteArray", + "bytearray": "8c1e598d" + }, + "cborHex": "448c1e598d", + "cborBytes": [68, 140, 30, 89, 141], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 808, + "sample": { + "_tag": "ByteArray", + "bytearray": "d40966a00b3fd57a8ac4b981" + }, + "cborHex": "4cd40966a00b3fd57a8ac4b981", + "cborBytes": [76, 212, 9, 102, 160, 11, 63, 213, 122, 138, 196, 185, 129], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 809, + "sample": { + "_tag": "ByteArray", + "bytearray": "a805" + }, + "cborHex": "42a805", + "cborBytes": [66, 168, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 810, + "sample": { + "_tag": "ByteArray", + "bytearray": "36e269" + }, + "cborHex": "4336e269", + "cborBytes": [67, 54, 226, 105], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 811, + "sample": { + "_tag": "ByteArray", + "bytearray": "0100c40507fbfffd" + }, + "cborHex": "480100c40507fbfffd", + "cborBytes": [72, 1, 0, 196, 5, 7, 251, 255, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 812, + "sample": { + "_tag": "ByteArray", + "bytearray": "08f7c5c341457a027e" + }, + "cborHex": "4908f7c5c341457a027e", + "cborBytes": [73, 8, 247, 197, 195, 65, 69, 122, 2, 126], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 813, + "sample": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "cborHex": "4105", + "cborBytes": [65, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 814, + "sample": { + "_tag": "ByteArray", + "bytearray": "01004002" + }, + "cborHex": "4401004002", + "cborBytes": [68, 1, 0, 64, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 815, + "sample": { + "_tag": "ByteArray", + "bytearray": "f907ec008b6b0699" + }, + "cborHex": "48f907ec008b6b0699", + "cborBytes": [72, 249, 7, 236, 0, 139, 107, 6, 153], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 816, + "sample": { + "_tag": "ByteArray", + "bytearray": "74d10ffc1759de137e331d5c" + }, + "cborHex": "4c74d10ffc1759de137e331d5c", + "cborBytes": [76, 116, 209, 15, 252, 23, 89, 222, 19, 126, 51, 29, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 817, + "sample": { + "_tag": "ByteArray", + "bytearray": "043b05fe16fba6e053ce04f3" + }, + "cborHex": "4c043b05fe16fba6e053ce04f3", + "cborBytes": [76, 4, 59, 5, 254, 22, 251, 166, 224, 83, 206, 4, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 818, + "sample": { + "_tag": "ByteArray", + "bytearray": "1409e781c56e" + }, + "cborHex": "461409e781c56e", + "cborBytes": [70, 20, 9, 231, 129, 197, 110], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 819, + "sample": { + "_tag": "ByteArray", + "bytearray": "9400dc2f0b118b7685eb" + }, + "cborHex": "4a9400dc2f0b118b7685eb", + "cborBytes": [74, 148, 0, 220, 47, 11, 17, 139, 118, 133, 235], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 820, + "sample": { + "_tag": "ByteArray", + "bytearray": "30ce" + }, + "cborHex": "4230ce", + "cborBytes": [66, 48, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 821, + "sample": { + "_tag": "ByteArray", + "bytearray": "38a26ef70095d0fa64a4" + }, + "cborHex": "4a38a26ef70095d0fa64a4", + "cborBytes": [74, 56, 162, 110, 247, 0, 149, 208, 250, 100, 164], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 822, + "sample": { + "_tag": "ByteArray", + "bytearray": "d06229c49b3fcd" + }, + "cborHex": "47d06229c49b3fcd", + "cborBytes": [71, 208, 98, 41, 196, 155, 63, 205], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 823, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8077a5dfb7c0ad6" + }, + "cborHex": "48f8077a5dfb7c0ad6", + "cborBytes": [72, 248, 7, 122, 93, 251, 124, 10, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 824, + "sample": { + "_tag": "ByteArray", + "bytearray": "a60b795176c9c223d9ab" + }, + "cborHex": "4aa60b795176c9c223d9ab", + "cborBytes": [74, 166, 11, 121, 81, 118, 201, 194, 35, 217, 171], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 825, + "sample": { + "_tag": "ByteArray", + "bytearray": "5bfca9020403" + }, + "cborHex": "465bfca9020403", + "cborBytes": [70, 91, 252, 169, 2, 4, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 826, + "sample": { + "_tag": "ByteArray", + "bytearray": "a38d234b7271e7a418" + }, + "cborHex": "49a38d234b7271e7a418", + "cborBytes": [73, 163, 141, 35, 75, 114, 113, 231, 164, 24], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 827, + "sample": { + "_tag": "ByteArray", + "bytearray": "64632da19377671c09eb9ca0" + }, + "cborHex": "4c64632da19377671c09eb9ca0", + "cborBytes": [76, 100, 99, 45, 161, 147, 119, 103, 28, 9, 235, 156, 160], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 828, + "sample": { + "_tag": "ByteArray", + "bytearray": "c0a31a8a265ff400099207" + }, + "cborHex": "4bc0a31a8a265ff400099207", + "cborBytes": [75, 192, 163, 26, 138, 38, 95, 244, 0, 9, 146, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 829, + "sample": { + "_tag": "ByteArray", + "bytearray": "23340306" + }, + "cborHex": "4423340306", + "cborBytes": [68, 35, 52, 3, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 830, + "sample": { + "_tag": "ByteArray", + "bytearray": "c769f4ebf1" + }, + "cborHex": "45c769f4ebf1", + "cborBytes": [69, 199, 105, 244, 235, 241], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 831, + "sample": { + "_tag": "ByteArray", + "bytearray": "789f" + }, + "cborHex": "42789f", + "cborBytes": [66, 120, 159], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 832, + "sample": { + "_tag": "ByteArray", + "bytearray": "6f181dc07d06b06c4d" + }, + "cborHex": "496f181dc07d06b06c4d", + "cborBytes": [73, 111, 24, 29, 192, 125, 6, 176, 108, 77], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 833, + "sample": { + "_tag": "ByteArray", + "bytearray": "51fed5e66c14fdb1ba" + }, + "cborHex": "4951fed5e66c14fdb1ba", + "cborBytes": [73, 81, 254, 213, 230, 108, 20, 253, 177, 186], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 834, + "sample": { + "_tag": "ByteArray", + "bytearray": "9accbe564411b1" + }, + "cborHex": "479accbe564411b1", + "cborBytes": [71, 154, 204, 190, 86, 68, 17, 177], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 835, + "sample": { + "_tag": "ByteArray", + "bytearray": "45bb2e" + }, + "cborHex": "4345bb2e", + "cborBytes": [67, 69, 187, 46], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 836, + "sample": { + "_tag": "ByteArray", + "bytearray": "32bcbbccd1" + }, + "cborHex": "4532bcbbccd1", + "cborBytes": [69, 50, 188, 187, 204, 209], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 837, + "sample": { + "_tag": "ByteArray", + "bytearray": "552a43f2" + }, + "cborHex": "44552a43f2", + "cborBytes": [68, 85, 42, 67, 242], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 838, + "sample": { + "_tag": "ByteArray", + "bytearray": "5f4115a046" + }, + "cborHex": "455f4115a046", + "cborBytes": [69, 95, 65, 21, 160, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 839, + "sample": { + "_tag": "ByteArray", + "bytearray": "018f053b8b" + }, + "cborHex": "45018f053b8b", + "cborBytes": [69, 1, 143, 5, 59, 139], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 840, + "sample": { + "_tag": "ByteArray", + "bytearray": "c035" + }, + "cborHex": "42c035", + "cborBytes": [66, 192, 53], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 841, + "sample": { + "_tag": "ByteArray", + "bytearray": "ed38f9059c54c4f0640700" + }, + "cborHex": "4bed38f9059c54c4f0640700", + "cborBytes": [75, 237, 56, 249, 5, 156, 84, 196, 240, 100, 7, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 842, + "sample": { + "_tag": "ByteArray", + "bytearray": "49be59" + }, + "cborHex": "4349be59", + "cborBytes": [67, 73, 190, 89], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 843, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9cdc67b478e5b37aa13bb" + }, + "cborHex": "4bf9cdc67b478e5b37aa13bb", + "cborBytes": [75, 249, 205, 198, 123, 71, 142, 91, 55, 170, 19, 187], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 844, + "sample": { + "_tag": "ByteArray", + "bytearray": "02002cbf8751bc" + }, + "cborHex": "4702002cbf8751bc", + "cborBytes": [71, 2, 0, 44, 191, 135, 81, 188], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 845, + "sample": { + "_tag": "ByteArray", + "bytearray": "9e63" + }, + "cborHex": "429e63", + "cborBytes": [66, 158, 99], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 846, + "sample": { + "_tag": "ByteArray", + "bytearray": "d013ae8795f3" + }, + "cborHex": "46d013ae8795f3", + "cborBytes": [70, 208, 19, 174, 135, 149, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 847, + "sample": { + "_tag": "ByteArray", + "bytearray": "c9571dc347" + }, + "cborHex": "45c9571dc347", + "cborBytes": [69, 201, 87, 29, 195, 71], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 848, + "sample": { + "_tag": "ByteArray", + "bytearray": "1d5445c58cfe75de5e" + }, + "cborHex": "491d5445c58cfe75de5e", + "cborBytes": [73, 29, 84, 69, 197, 140, 254, 117, 222, 94], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 849, + "sample": { + "_tag": "ByteArray", + "bytearray": "2706953d3ce6f9" + }, + "cborHex": "472706953d3ce6f9", + "cborBytes": [71, 39, 6, 149, 61, 60, 230, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 850, + "sample": { + "_tag": "ByteArray", + "bytearray": "28059e66" + }, + "cborHex": "4428059e66", + "cborBytes": [68, 40, 5, 158, 102], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 851, + "sample": { + "_tag": "ByteArray", + "bytearray": "9f19f8" + }, + "cborHex": "439f19f8", + "cborBytes": [67, 159, 25, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 852, + "sample": { + "_tag": "ByteArray", + "bytearray": "00cb0300070504" + }, + "cborHex": "4700cb0300070504", + "cborBytes": [71, 0, 203, 3, 0, 7, 5, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 853, + "sample": { + "_tag": "ByteArray", + "bytearray": "1dfcec6f" + }, + "cborHex": "441dfcec6f", + "cborBytes": [68, 29, 252, 236, 111], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 854, + "sample": { + "_tag": "ByteArray", + "bytearray": "000000036f4c" + }, + "cborHex": "46000000036f4c", + "cborBytes": [70, 0, 0, 0, 3, 111, 76], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 855, + "sample": { + "_tag": "ByteArray", + "bytearray": "d9b5a1c2f2" + }, + "cborHex": "45d9b5a1c2f2", + "cborBytes": [69, 217, 181, 161, 194, 242], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 856, + "sample": { + "_tag": "ByteArray", + "bytearray": "66" + }, + "cborHex": "4166", + "cborBytes": [65, 102], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 857, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8644b41fe0201f404" + }, + "cborHex": "49f8644b41fe0201f404", + "cborBytes": [73, 248, 100, 75, 65, 254, 2, 1, 244, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 858, + "sample": { + "_tag": "ByteArray", + "bytearray": "02d3f9" + }, + "cborHex": "4302d3f9", + "cborBytes": [67, 2, 211, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 859, + "sample": { + "_tag": "ByteArray", + "bytearray": "000605f903" + }, + "cborHex": "45000605f903", + "cborBytes": [69, 0, 6, 5, 249, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 860, + "sample": { + "_tag": "ByteArray", + "bytearray": "69194341cb5d2c20" + }, + "cborHex": "4869194341cb5d2c20", + "cborBytes": [72, 105, 25, 67, 65, 203, 93, 44, 32], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 861, + "sample": { + "_tag": "ByteArray", + "bytearray": "030017bc02" + }, + "cborHex": "45030017bc02", + "cborBytes": [69, 3, 0, 23, 188, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 862, + "sample": { + "_tag": "ByteArray", + "bytearray": "315adeec5d9c" + }, + "cborHex": "46315adeec5d9c", + "cborBytes": [70, 49, 90, 222, 236, 93, 156], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 863, + "sample": { + "_tag": "ByteArray", + "bytearray": "b305497d0502fff90005" + }, + "cborHex": "4ab305497d0502fff90005", + "cborBytes": [74, 179, 5, 73, 125, 5, 2, 255, 249, 0, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 864, + "sample": { + "_tag": "ByteArray", + "bytearray": "00e25d31c4018fc659" + }, + "cborHex": "4900e25d31c4018fc659", + "cborBytes": [73, 0, 226, 93, 49, 196, 1, 143, 198, 89], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 865, + "sample": { + "_tag": "ByteArray", + "bytearray": "8848bf5b" + }, + "cborHex": "448848bf5b", + "cborBytes": [68, 136, 72, 191, 91], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 866, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb0200" + }, + "cborHex": "43fb0200", + "cborBytes": [67, 251, 2, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 867, + "sample": { + "_tag": "ByteArray", + "bytearray": "e501" + }, + "cborHex": "42e501", + "cborBytes": [66, 229, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 868, + "sample": { + "_tag": "ByteArray", + "bytearray": "c6e291" + }, + "cborHex": "43c6e291", + "cborBytes": [67, 198, 226, 145], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 869, + "sample": { + "_tag": "ByteArray", + "bytearray": "b1fa22" + }, + "cborHex": "43b1fa22", + "cborBytes": [67, 177, 250, 34], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 870, + "sample": { + "_tag": "ByteArray", + "bytearray": "04c2" + }, + "cborHex": "4204c2", + "cborBytes": [66, 4, 194], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 871, + "sample": { + "_tag": "ByteArray", + "bytearray": "231ae2" + }, + "cborHex": "43231ae2", + "cborBytes": [67, 35, 26, 226], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 872, + "sample": { + "_tag": "ByteArray", + "bytearray": "43ee72" + }, + "cborHex": "4343ee72", + "cborBytes": [67, 67, 238, 114], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 873, + "sample": { + "_tag": "ByteArray", + "bytearray": "7cd19bb1" + }, + "cborHex": "447cd19bb1", + "cborBytes": [68, 124, 209, 155, 177], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 874, + "sample": { + "_tag": "ByteArray", + "bytearray": "faf94e00" + }, + "cborHex": "44faf94e00", + "cborBytes": [68, 250, 249, 78, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 875, + "sample": { + "_tag": "ByteArray", + "bytearray": "02f3" + }, + "cborHex": "4202f3", + "cborBytes": [66, 2, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 876, + "sample": { + "_tag": "ByteArray", + "bytearray": "bc2698" + }, + "cborHex": "43bc2698", + "cborBytes": [67, 188, 38, 152], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 877, + "sample": { + "_tag": "ByteArray", + "bytearray": "48c7" + }, + "cborHex": "4248c7", + "cborBytes": [66, 72, 199], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 878, + "sample": { + "_tag": "ByteArray", + "bytearray": "0585d206" + }, + "cborHex": "440585d206", + "cborBytes": [68, 5, 133, 210, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 879, + "sample": { + "_tag": "ByteArray", + "bytearray": "1305e1a6fd54bfd07f6504" + }, + "cborHex": "4b1305e1a6fd54bfd07f6504", + "cborBytes": [75, 19, 5, 225, 166, 253, 84, 191, 208, 127, 101, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 880, + "sample": { + "_tag": "ByteArray", + "bytearray": "2d49023541" + }, + "cborHex": "452d49023541", + "cborBytes": [69, 45, 73, 2, 53, 65], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 881, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9c961ed5dee0649f9" + }, + "cborHex": "49f9c961ed5dee0649f9", + "cborBytes": [73, 249, 201, 97, 237, 93, 238, 6, 73, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 882, + "sample": { + "_tag": "ByteArray", + "bytearray": "76c6b568bfa0086f415f4b" + }, + "cborHex": "4b76c6b568bfa0086f415f4b", + "cborBytes": [75, 118, 198, 181, 104, 191, 160, 8, 111, 65, 95, 75], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 883, + "sample": { + "_tag": "ByteArray", + "bytearray": "ea2d5f281eac2a1a0146b2e8" + }, + "cborHex": "4cea2d5f281eac2a1a0146b2e8", + "cborBytes": [76, 234, 45, 95, 40, 30, 172, 42, 26, 1, 70, 178, 232], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 884, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe037037" + }, + "cborHex": "44fe037037", + "cborBytes": [68, 254, 3, 112, 55], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 885, + "sample": { + "_tag": "ByteArray", + "bytearray": "de284835" + }, + "cborHex": "44de284835", + "cborBytes": [68, 222, 40, 72, 53], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 886, + "sample": { + "_tag": "ByteArray", + "bytearray": "860507" + }, + "cborHex": "43860507", + "cborBytes": [67, 134, 5, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 887, + "sample": { + "_tag": "ByteArray", + "bytearray": "2e908703bb8c95" + }, + "cborHex": "472e908703bb8c95", + "cborBytes": [71, 46, 144, 135, 3, 187, 140, 149], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 888, + "sample": { + "_tag": "ByteArray", + "bytearray": "1df30b04fa" + }, + "cborHex": "451df30b04fa", + "cborBytes": [69, 29, 243, 11, 4, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 889, + "sample": { + "_tag": "ByteArray", + "bytearray": "dfc06ee4bd606edb9e1b" + }, + "cborHex": "4adfc06ee4bd606edb9e1b", + "cborBytes": [74, 223, 192, 110, 228, 189, 96, 110, 219, 158, 27], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 890, + "sample": { + "_tag": "ByteArray", + "bytearray": "8a1750fe024e" + }, + "cborHex": "468a1750fe024e", + "cborBytes": [70, 138, 23, 80, 254, 2, 78], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 891, + "sample": { + "_tag": "ByteArray", + "bytearray": "b0440276cb4f" + }, + "cborHex": "46b0440276cb4f", + "cborBytes": [70, 176, 68, 2, 118, 203, 79], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 892, + "sample": { + "_tag": "ByteArray", + "bytearray": "765554b1" + }, + "cborHex": "44765554b1", + "cborBytes": [68, 118, 85, 84, 177], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 893, + "sample": { + "_tag": "ByteArray", + "bytearray": "04fd01068f06352af9" + }, + "cborHex": "4904fd01068f06352af9", + "cborBytes": [73, 4, 253, 1, 6, 143, 6, 53, 42, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 894, + "sample": { + "_tag": "ByteArray", + "bytearray": "030406affd6cfc400702" + }, + "cborHex": "4a030406affd6cfc400702", + "cborBytes": [74, 3, 4, 6, 175, 253, 108, 252, 64, 7, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 895, + "sample": { + "_tag": "ByteArray", + "bytearray": "bcd974" + }, + "cborHex": "43bcd974", + "cborBytes": [67, 188, 217, 116], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 896, + "sample": { + "_tag": "ByteArray", + "bytearray": "1932" + }, + "cborHex": "421932", + "cborBytes": [66, 25, 50], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 897, + "sample": { + "_tag": "ByteArray", + "bytearray": "591dc27e1a" + }, + "cborHex": "45591dc27e1a", + "cborBytes": [69, 89, 29, 194, 126, 26], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 898, + "sample": { + "_tag": "ByteArray", + "bytearray": "7a" + }, + "cborHex": "417a", + "cborBytes": [65, 122], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 899, + "sample": { + "_tag": "ByteArray", + "bytearray": "d82e" + }, + "cborHex": "42d82e", + "cborBytes": [66, 216, 46], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 900, + "sample": { + "_tag": "ByteArray", + "bytearray": "1e05" + }, + "cborHex": "421e05", + "cborBytes": [66, 30, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 901, + "sample": { + "_tag": "ByteArray", + "bytearray": "f1ae157db24fad77225b" + }, + "cborHex": "4af1ae157db24fad77225b", + "cborBytes": [74, 241, 174, 21, 125, 178, 79, 173, 119, 34, 91], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 902, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb060502701cfa" + }, + "cborHex": "47fb060502701cfa", + "cborBytes": [71, 251, 6, 5, 2, 112, 28, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 903, + "sample": { + "_tag": "ByteArray", + "bytearray": "3f2548013c00358d98d5" + }, + "cborHex": "4a3f2548013c00358d98d5", + "cborBytes": [74, 63, 37, 72, 1, 60, 0, 53, 141, 152, 213], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 904, + "sample": { + "_tag": "ByteArray", + "bytearray": "2017" + }, + "cborHex": "422017", + "cborBytes": [66, 32, 23], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 905, + "sample": { + "_tag": "ByteArray", + "bytearray": "4d080117" + }, + "cborHex": "444d080117", + "cborBytes": [68, 77, 8, 1, 23], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 906, + "sample": { + "_tag": "ByteArray", + "bytearray": "bf3e4ca7e945d00d54cbbb2f" + }, + "cborHex": "4cbf3e4ca7e945d00d54cbbb2f", + "cborBytes": [76, 191, 62, 76, 167, 233, 69, 208, 13, 84, 203, 187, 47], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 907, + "sample": { + "_tag": "ByteArray", + "bytearray": "e5cd19b899d060435ba6c29c" + }, + "cborHex": "4ce5cd19b899d060435ba6c29c", + "cborBytes": [76, 229, 205, 25, 184, 153, 208, 96, 67, 91, 166, 194, 156], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 908, + "sample": { + "_tag": "ByteArray", + "bytearray": "45cb5d35cdc5aea23934e7" + }, + "cborHex": "4b45cb5d35cdc5aea23934e7", + "cborBytes": [75, 69, 203, 93, 53, 205, 197, 174, 162, 57, 52, 231], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 909, + "sample": { + "_tag": "ByteArray", + "bytearray": "e4530ce80719" + }, + "cborHex": "46e4530ce80719", + "cborBytes": [70, 228, 83, 12, 232, 7, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 910, + "sample": { + "_tag": "ByteArray", + "bytearray": "7d6204fdb2" + }, + "cborHex": "457d6204fdb2", + "cborBytes": [69, 125, 98, 4, 253, 178], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 911, + "sample": { + "_tag": "ByteArray", + "bytearray": "4c88892d909e1a39ef59" + }, + "cborHex": "4a4c88892d909e1a39ef59", + "cborBytes": [74, 76, 136, 137, 45, 144, 158, 26, 57, 239, 89], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 912, + "sample": { + "_tag": "ByteArray", + "bytearray": "edaaeb8474940b0f7094" + }, + "cborHex": "4aedaaeb8474940b0f7094", + "cborBytes": [74, 237, 170, 235, 132, 116, 148, 11, 15, 112, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 913, + "sample": { + "_tag": "ByteArray", + "bytearray": "07ac03" + }, + "cborHex": "4307ac03", + "cborBytes": [67, 7, 172, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 914, + "sample": { + "_tag": "ByteArray", + "bytearray": "bbd5" + }, + "cborHex": "42bbd5", + "cborBytes": [66, 187, 213], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 915, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbbf" + }, + "cborHex": "42fbbf", + "cborBytes": [66, 251, 191], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 916, + "sample": { + "_tag": "ByteArray", + "bytearray": "05fe062b3a50ed331a" + }, + "cborHex": "4905fe062b3a50ed331a", + "cborBytes": [73, 5, 254, 6, 43, 58, 80, 237, 51, 26], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 917, + "sample": { + "_tag": "ByteArray", + "bytearray": "f455c8" + }, + "cborHex": "43f455c8", + "cborBytes": [67, 244, 85, 200], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 918, + "sample": { + "_tag": "ByteArray", + "bytearray": "2d" + }, + "cborHex": "412d", + "cborBytes": [65, 45], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 919, + "sample": { + "_tag": "ByteArray", + "bytearray": "5e0101b50707" + }, + "cborHex": "465e0101b50707", + "cborBytes": [70, 94, 1, 1, 181, 7, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 920, + "sample": { + "_tag": "ByteArray", + "bytearray": "76a7" + }, + "cborHex": "4276a7", + "cborBytes": [66, 118, 167], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 921, + "sample": { + "_tag": "ByteArray", + "bytearray": "33060405b6059c0304fbf95c" + }, + "cborHex": "4c33060405b6059c0304fbf95c", + "cborBytes": [76, 51, 6, 4, 5, 182, 5, 156, 3, 4, 251, 249, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 922, + "sample": { + "_tag": "ByteArray", + "bytearray": "040403" + }, + "cborHex": "43040403", + "cborBytes": [67, 4, 4, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 923, + "sample": { + "_tag": "ByteArray", + "bytearray": "1289bd8a1b06bc673f" + }, + "cborHex": "491289bd8a1b06bc673f", + "cborBytes": [73, 18, 137, 189, 138, 27, 6, 188, 103, 63], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 924, + "sample": { + "_tag": "ByteArray", + "bytearray": "2f" + }, + "cborHex": "412f", + "cborBytes": [65, 47], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 925, + "sample": { + "_tag": "ByteArray", + "bytearray": "0407" + }, + "cborHex": "420407", + "cborBytes": [66, 4, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 926, + "sample": { + "_tag": "ByteArray", + "bytearray": "0704dd" + }, + "cborHex": "430704dd", + "cborBytes": [67, 7, 4, 221], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 927, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa07d401fb0600" + }, + "cborHex": "47fa07d401fb0600", + "cborBytes": [71, 250, 7, 212, 1, 251, 6, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 928, + "sample": { + "_tag": "ByteArray", + "bytearray": "9a0823f8" + }, + "cborHex": "449a0823f8", + "cborBytes": [68, 154, 8, 35, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 929, + "sample": { + "_tag": "ByteArray", + "bytearray": "5173668d2a0c" + }, + "cborHex": "465173668d2a0c", + "cborBytes": [70, 81, 115, 102, 141, 42, 12], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 930, + "sample": { + "_tag": "ByteArray", + "bytearray": "091eadb293d334b905" + }, + "cborHex": "49091eadb293d334b905", + "cborBytes": [73, 9, 30, 173, 178, 147, 211, 52, 185, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 931, + "sample": { + "_tag": "ByteArray", + "bytearray": "f831" + }, + "cborHex": "42f831", + "cborBytes": [66, 248, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 932, + "sample": { + "_tag": "ByteArray", + "bytearray": "23" + }, + "cborHex": "4123", + "cborBytes": [65, 35], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 933, + "sample": { + "_tag": "ByteArray", + "bytearray": "01d9" + }, + "cborHex": "4201d9", + "cborBytes": [66, 1, 217], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 934, + "sample": { + "_tag": "ByteArray", + "bytearray": "0301006ea3" + }, + "cborHex": "450301006ea3", + "cborBytes": [69, 3, 1, 0, 110, 163], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 935, + "sample": { + "_tag": "ByteArray", + "bytearray": "936c52a9afcb" + }, + "cborHex": "46936c52a9afcb", + "cborBytes": [70, 147, 108, 82, 169, 175, 203], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 936, + "sample": { + "_tag": "ByteArray", + "bytearray": "6201" + }, + "cborHex": "426201", + "cborBytes": [66, 98, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 937, + "sample": { + "_tag": "ByteArray", + "bytearray": "0686" + }, + "cborHex": "420686", + "cborBytes": [66, 6, 134], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 938, + "sample": { + "_tag": "ByteArray", + "bytearray": "4117" + }, + "cborHex": "424117", + "cborBytes": [66, 65, 23], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 939, + "sample": { + "_tag": "ByteArray", + "bytearray": "03703a" + }, + "cborHex": "4303703a", + "cborBytes": [67, 3, 112, 58], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 940, + "sample": { + "_tag": "ByteArray", + "bytearray": "2e95" + }, + "cborHex": "422e95", + "cborBytes": [66, 46, 149], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 941, + "sample": { + "_tag": "ByteArray", + "bytearray": "0c05fb230399fa" + }, + "cborHex": "470c05fb230399fa", + "cborBytes": [71, 12, 5, 251, 35, 3, 153, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 942, + "sample": { + "_tag": "ByteArray", + "bytearray": "cd84f95a465183019d59e2" + }, + "cborHex": "4bcd84f95a465183019d59e2", + "cborBytes": [75, 205, 132, 249, 90, 70, 81, 131, 1, 157, 89, 226], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 943, + "sample": { + "_tag": "ByteArray", + "bytearray": "1b01fd00" + }, + "cborHex": "441b01fd00", + "cborBytes": [68, 27, 1, 253, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 944, + "sample": { + "_tag": "ByteArray", + "bytearray": "7e880d9061164ce7e6c5" + }, + "cborHex": "4a7e880d9061164ce7e6c5", + "cborBytes": [74, 126, 136, 13, 144, 97, 22, 76, 231, 230, 197], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 945, + "sample": { + "_tag": "ByteArray", + "bytearray": "1e7dd9" + }, + "cborHex": "431e7dd9", + "cborBytes": [67, 30, 125, 217], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 946, + "sample": { + "_tag": "ByteArray", + "bytearray": "04294a4aae4b4306f0ed2b7c" + }, + "cborHex": "4c04294a4aae4b4306f0ed2b7c", + "cborBytes": [76, 4, 41, 74, 74, 174, 75, 67, 6, 240, 237, 43, 124], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 947, + "sample": { + "_tag": "ByteArray", + "bytearray": "5a173ae6a16ab11419efc0" + }, + "cborHex": "4b5a173ae6a16ab11419efc0", + "cborBytes": [75, 90, 23, 58, 230, 161, 106, 177, 20, 25, 239, 192], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 948, + "sample": { + "_tag": "ByteArray", + "bytearray": "493186" + }, + "cborHex": "43493186", + "cborBytes": [67, 73, 49, 134], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 949, + "sample": { + "_tag": "ByteArray", + "bytearray": "c64dda1903927cd8d3d96549" + }, + "cborHex": "4cc64dda1903927cd8d3d96549", + "cborBytes": [76, 198, 77, 218, 25, 3, 146, 124, 216, 211, 217, 101, 73], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 950, + "sample": { + "_tag": "ByteArray", + "bytearray": "03fbf832020ce4040504" + }, + "cborHex": "4a03fbf832020ce4040504", + "cborBytes": [74, 3, 251, 248, 50, 2, 12, 228, 4, 5, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 951, + "sample": { + "_tag": "ByteArray", + "bytearray": "a2e0f0ee9a214990e7a4b97f" + }, + "cborHex": "4ca2e0f0ee9a214990e7a4b97f", + "cborBytes": [76, 162, 224, 240, 238, 154, 33, 73, 144, 231, 164, 185, 127], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 952, + "sample": { + "_tag": "ByteArray", + "bytearray": "6fa0f9f80403038aa5c901" + }, + "cborHex": "4b6fa0f9f80403038aa5c901", + "cborBytes": [75, 111, 160, 249, 248, 4, 3, 3, 138, 165, 201, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 953, + "sample": { + "_tag": "ByteArray", + "bytearray": "d540fc" + }, + "cborHex": "43d540fc", + "cborBytes": [67, 213, 64, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 954, + "sample": { + "_tag": "ByteArray", + "bytearray": "f86a0500" + }, + "cborHex": "44f86a0500", + "cborBytes": [68, 248, 106, 5, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 955, + "sample": { + "_tag": "ByteArray", + "bytearray": "550ae450" + }, + "cborHex": "44550ae450", + "cborBytes": [68, 85, 10, 228, 80], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 956, + "sample": { + "_tag": "ByteArray", + "bytearray": "dda1" + }, + "cborHex": "42dda1", + "cborBytes": [66, 221, 161], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 957, + "sample": { + "_tag": "ByteArray", + "bytearray": "fff904fa06" + }, + "cborHex": "45fff904fa06", + "cborBytes": [69, 255, 249, 4, 250, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 958, + "sample": { + "_tag": "ByteArray", + "bytearray": "f80d59d3e175c1422f" + }, + "cborHex": "49f80d59d3e175c1422f", + "cborBytes": [73, 248, 13, 89, 211, 225, 117, 193, 66, 47], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 959, + "sample": { + "_tag": "ByteArray", + "bytearray": "ffff045c04010207f9" + }, + "cborHex": "49ffff045c04010207f9", + "cborBytes": [73, 255, 255, 4, 92, 4, 1, 2, 7, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 960, + "sample": { + "_tag": "ByteArray", + "bytearray": "b653" + }, + "cborHex": "42b653", + "cborBytes": [66, 182, 83], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 961, + "sample": { + "_tag": "ByteArray", + "bytearray": "b97b06f8" + }, + "cborHex": "44b97b06f8", + "cborBytes": [68, 185, 123, 6, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 962, + "sample": { + "_tag": "ByteArray", + "bytearray": "f807fbfcfffffe025e272701" + }, + "cborHex": "4cf807fbfcfffffe025e272701", + "cborBytes": [76, 248, 7, 251, 252, 255, 255, 254, 2, 94, 39, 39, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 963, + "sample": { + "_tag": "ByteArray", + "bytearray": "e1" + }, + "cborHex": "41e1", + "cborBytes": [65, 225], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 964, + "sample": { + "_tag": "ByteArray", + "bytearray": "0500e104" + }, + "cborHex": "440500e104", + "cborBytes": [68, 5, 0, 225, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 965, + "sample": { + "_tag": "ByteArray", + "bytearray": "51d11c1c6cba810e" + }, + "cborHex": "4851d11c1c6cba810e", + "cborBytes": [72, 81, 209, 28, 28, 108, 186, 129, 14], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 966, + "sample": { + "_tag": "ByteArray", + "bytearray": "4dcef0fc" + }, + "cborHex": "444dcef0fc", + "cborBytes": [68, 77, 206, 240, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 967, + "sample": { + "_tag": "ByteArray", + "bytearray": "2f6dea944e826e61" + }, + "cborHex": "482f6dea944e826e61", + "cborBytes": [72, 47, 109, 234, 148, 78, 130, 110, 97], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 968, + "sample": { + "_tag": "ByteArray", + "bytearray": "0605f40b" + }, + "cborHex": "440605f40b", + "cborBytes": [68, 6, 5, 244, 11], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 969, + "sample": { + "_tag": "ByteArray", + "bytearray": "455f8bb0e8" + }, + "cborHex": "45455f8bb0e8", + "cborBytes": [69, 69, 95, 139, 176, 232], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 970, + "sample": { + "_tag": "ByteArray", + "bytearray": "950301dc" + }, + "cborHex": "44950301dc", + "cborBytes": [68, 149, 3, 1, 220], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 971, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc14f815" + }, + "cborHex": "44fc14f815", + "cborBytes": [68, 252, 20, 248, 21], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 972, + "sample": { + "_tag": "ByteArray", + "bytearray": "b134" + }, + "cborHex": "42b134", + "cborBytes": [66, 177, 52], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 973, + "sample": { + "_tag": "ByteArray", + "bytearray": "a62a8050dd1fcf9d252a0d39" + }, + "cborHex": "4ca62a8050dd1fcf9d252a0d39", + "cborBytes": [76, 166, 42, 128, 80, 221, 31, 207, 157, 37, 42, 13, 57], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 974, + "sample": { + "_tag": "ByteArray", + "bytearray": "476e423e" + }, + "cborHex": "44476e423e", + "cborBytes": [68, 71, 110, 66, 62], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 975, + "sample": { + "_tag": "ByteArray", + "bytearray": "ea6f83b24c" + }, + "cborHex": "45ea6f83b24c", + "cborBytes": [69, 234, 111, 131, 178, 76], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 976, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd062106" + }, + "cborHex": "44fd062106", + "cborBytes": [68, 253, 6, 33, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 977, + "sample": { + "_tag": "ByteArray", + "bytearray": "50c7285821a3" + }, + "cborHex": "4650c7285821a3", + "cborBytes": [70, 80, 199, 40, 88, 33, 163], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 978, + "sample": { + "_tag": "ByteArray", + "bytearray": "0cdecc" + }, + "cborHex": "430cdecc", + "cborBytes": [67, 12, 222, 204], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 979, + "sample": { + "_tag": "ByteArray", + "bytearray": "034afb3b" + }, + "cborHex": "44034afb3b", + "cborBytes": [68, 3, 74, 251, 59], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 980, + "sample": { + "_tag": "ByteArray", + "bytearray": "504939eca75d8267057643" + }, + "cborHex": "4b504939eca75d8267057643", + "cborBytes": [75, 80, 73, 57, 236, 167, 93, 130, 103, 5, 118, 67], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 981, + "sample": { + "_tag": "ByteArray", + "bytearray": "fdb9bfba" + }, + "cborHex": "44fdb9bfba", + "cborBytes": [68, 253, 185, 191, 186], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 982, + "sample": { + "_tag": "ByteArray", + "bytearray": "6486de34d645a7" + }, + "cborHex": "476486de34d645a7", + "cborBytes": [71, 100, 134, 222, 52, 214, 69, 167], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 983, + "sample": { + "_tag": "ByteArray", + "bytearray": "6f4a" + }, + "cborHex": "426f4a", + "cborBytes": [66, 111, 74], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 984, + "sample": { + "_tag": "ByteArray", + "bytearray": "b2" + }, + "cborHex": "41b2", + "cborBytes": [65, 178], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 985, + "sample": { + "_tag": "ByteArray", + "bytearray": "1322" + }, + "cborHex": "421322", + "cborBytes": [66, 19, 34], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 986, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe3f0101040d0503fe640206" + }, + "cborHex": "4cfe3f0101040d0503fe640206", + "cborBytes": [76, 254, 63, 1, 1, 4, 13, 5, 3, 254, 100, 2, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 987, + "sample": { + "_tag": "ByteArray", + "bytearray": "ba1befeca2bdd6" + }, + "cborHex": "47ba1befeca2bdd6", + "cborBytes": [71, 186, 27, 239, 236, 162, 189, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 988, + "sample": { + "_tag": "ByteArray", + "bytearray": "f80043b8bfaf63a710" + }, + "cborHex": "49f80043b8bfaf63a710", + "cborBytes": [73, 248, 0, 67, 184, 191, 175, 99, 167, 16], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 989, + "sample": { + "_tag": "ByteArray", + "bytearray": "5ebc4b327e0593621068e5" + }, + "cborHex": "4b5ebc4b327e0593621068e5", + "cborBytes": [75, 94, 188, 75, 50, 126, 5, 147, 98, 16, 104, 229], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 990, + "sample": { + "_tag": "ByteArray", + "bytearray": "8d9dbe6e18491ee2a0bc" + }, + "cborHex": "4a8d9dbe6e18491ee2a0bc", + "cborBytes": [74, 141, 157, 190, 110, 24, 73, 30, 226, 160, 188], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 991, + "sample": { + "_tag": "ByteArray", + "bytearray": "d1c9" + }, + "cborHex": "42d1c9", + "cborBytes": [66, 209, 201], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 992, + "sample": { + "_tag": "ByteArray", + "bytearray": "dc6701f7fa922b2529bcc5" + }, + "cborHex": "4bdc6701f7fa922b2529bcc5", + "cborBytes": [75, 220, 103, 1, 247, 250, 146, 43, 37, 41, 188, 197], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 993, + "sample": { + "_tag": "ByteArray", + "bytearray": "9a02" + }, + "cborHex": "429a02", + "cborBytes": [66, 154, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 994, + "sample": { + "_tag": "ByteArray", + "bytearray": "9bf9" + }, + "cborHex": "429bf9", + "cborBytes": [66, 155, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 995, + "sample": { + "_tag": "ByteArray", + "bytearray": "1125" + }, + "cborHex": "421125", + "cborBytes": [66, 17, 37], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 996, + "sample": { + "_tag": "ByteArray", + "bytearray": "91ae908dbf990250a9" + }, + "cborHex": "4991ae908dbf990250a9", + "cborBytes": [73, 145, 174, 144, 141, 191, 153, 2, 80, 169], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 997, + "sample": { + "_tag": "ByteArray", + "bytearray": "068e03" + }, + "cborHex": "43068e03", + "cborBytes": [67, 6, 142, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 998, + "sample": { + "_tag": "ByteArray", + "bytearray": "1b1898" + }, + "cborHex": "431b1898", + "cborBytes": [67, 27, 24, 152], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 999, + "sample": { + "_tag": "ByteArray", + "bytearray": "02ca4b879c4956325e" + }, + "cborHex": "4902ca4b879c4956325e", + "cborBytes": [73, 2, 202, 75, 135, 156, 73, 86, 50, 94], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1000, + "sample": { + "_tag": "ByteArray", + "bytearray": "956e90fa017b05" + }, + "cborHex": "47956e90fa017b05", + "cborBytes": [71, 149, 110, 144, 250, 1, 123, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1001, + "sample": { + "_tag": "ByteArray", + "bytearray": "ddd704fd07" + }, + "cborHex": "45ddd704fd07", + "cborBytes": [69, 221, 215, 4, 253, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1002, + "sample": { + "_tag": "ByteArray", + "bytearray": "0343fa01" + }, + "cborHex": "440343fa01", + "cborBytes": [68, 3, 67, 250, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1003, + "sample": { + "_tag": "ByteArray", + "bytearray": "1f117b10b8b38c" + }, + "cborHex": "471f117b10b8b38c", + "cborBytes": [71, 31, 17, 123, 16, 184, 179, 140], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1004, + "sample": { + "_tag": "ByteArray", + "bytearray": "adc26aff18" + }, + "cborHex": "45adc26aff18", + "cborBytes": [69, 173, 194, 106, 255, 24], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1005, + "sample": { + "_tag": "ByteArray", + "bytearray": "e0e1" + }, + "cborHex": "42e0e1", + "cborBytes": [66, 224, 225], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1006, + "sample": { + "_tag": "ByteArray", + "bytearray": "14e5171fbc8527bd" + }, + "cborHex": "4814e5171fbc8527bd", + "cborBytes": [72, 20, 229, 23, 31, 188, 133, 39, 189], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1007, + "sample": { + "_tag": "ByteArray", + "bytearray": "042709" + }, + "cborHex": "43042709", + "cborBytes": [67, 4, 39, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1008, + "sample": { + "_tag": "ByteArray", + "bytearray": "0458" + }, + "cborHex": "420458", + "cborBytes": [66, 4, 88], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1009, + "sample": { + "_tag": "ByteArray", + "bytearray": "0101fc60067b" + }, + "cborHex": "460101fc60067b", + "cborBytes": [70, 1, 1, 252, 96, 6, 123], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1010, + "sample": { + "_tag": "ByteArray", + "bytearray": "8b00ffe518" + }, + "cborHex": "458b00ffe518", + "cborBytes": [69, 139, 0, 255, 229, 24], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1011, + "sample": { + "_tag": "ByteArray", + "bytearray": "d7067900" + }, + "cborHex": "44d7067900", + "cborBytes": [68, 215, 6, 121, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1012, + "sample": { + "_tag": "ByteArray", + "bytearray": "15d5b7f37fd3a7b7f0632fe5" + }, + "cborHex": "4c15d5b7f37fd3a7b7f0632fe5", + "cborBytes": [76, 21, 213, 183, 243, 127, 211, 167, 183, 240, 99, 47, 229], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1013, + "sample": { + "_tag": "ByteArray", + "bytearray": "1706" + }, + "cborHex": "421706", + "cborBytes": [66, 23, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1014, + "sample": { + "_tag": "ByteArray", + "bytearray": "7b308a" + }, + "cborHex": "437b308a", + "cborBytes": [67, 123, 48, 138], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1015, + "sample": { + "_tag": "ByteArray", + "bytearray": "32d6ae" + }, + "cborHex": "4332d6ae", + "cborBytes": [67, 50, 214, 174], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1016, + "sample": { + "_tag": "ByteArray", + "bytearray": "e543c3" + }, + "cborHex": "43e543c3", + "cborBytes": [67, 229, 67, 195], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1017, + "sample": { + "_tag": "ByteArray", + "bytearray": "8e14612fcac9" + }, + "cborHex": "468e14612fcac9", + "cborBytes": [70, 142, 20, 97, 47, 202, 201], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1018, + "sample": { + "_tag": "ByteArray", + "bytearray": "d60521" + }, + "cborHex": "43d60521", + "cborBytes": [67, 214, 5, 33], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1019, + "sample": { + "_tag": "ByteArray", + "bytearray": "4b09620e4429f9" + }, + "cborHex": "474b09620e4429f9", + "cborBytes": [71, 75, 9, 98, 14, 68, 41, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1020, + "sample": { + "_tag": "ByteArray", + "bytearray": "63" + }, + "cborHex": "4163", + "cborBytes": [65, 99], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1021, + "sample": { + "_tag": "ByteArray", + "bytearray": "b3758723bcad4610ed09e7" + }, + "cborHex": "4bb3758723bcad4610ed09e7", + "cborBytes": [75, 179, 117, 135, 35, 188, 173, 70, 16, 237, 9, 231], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1022, + "sample": { + "_tag": "ByteArray", + "bytearray": "53b03da331" + }, + "cborHex": "4553b03da331", + "cborBytes": [69, 83, 176, 61, 163, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1023, + "sample": { + "_tag": "ByteArray", + "bytearray": "0306024a03067bd100" + }, + "cborHex": "490306024a03067bd100", + "cborBytes": [73, 3, 6, 2, 74, 3, 6, 123, 209, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1024, + "sample": { + "_tag": "ByteArray", + "bytearray": "0064fa" + }, + "cborHex": "430064fa", + "cborBytes": [67, 0, 100, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1025, + "sample": { + "_tag": "ByteArray", + "bytearray": "36" + }, + "cborHex": "4136", + "cborBytes": [65, 54], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1026, + "sample": { + "_tag": "ByteArray", + "bytearray": "98" + }, + "cborHex": "4198", + "cborBytes": [65, 152], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1027, + "sample": { + "_tag": "ByteArray", + "bytearray": "7a50154ba3710001e00300" + }, + "cborHex": "4b7a50154ba3710001e00300", + "cborBytes": [75, 122, 80, 21, 75, 163, 113, 0, 1, 224, 3, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1028, + "sample": { + "_tag": "ByteArray", + "bytearray": "eed42a3157c51f" + }, + "cborHex": "47eed42a3157c51f", + "cborBytes": [71, 238, 212, 42, 49, 87, 197, 31], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1029, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8000006db" + }, + "cborHex": "45f8000006db", + "cborBytes": [69, 248, 0, 0, 6, 219], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1030, + "sample": { + "_tag": "ByteArray", + "bytearray": "5886302c73" + }, + "cborHex": "455886302c73", + "cborBytes": [69, 88, 134, 48, 44, 115], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1031, + "sample": { + "_tag": "ByteArray", + "bytearray": "4a0af59d7e9e7bc4c7" + }, + "cborHex": "494a0af59d7e9e7bc4c7", + "cborBytes": [73, 74, 10, 245, 157, 126, 158, 123, 196, 199], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1032, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd8cfe39" + }, + "cborHex": "44fd8cfe39", + "cborBytes": [68, 253, 140, 254, 57], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1033, + "sample": { + "_tag": "ByteArray", + "bytearray": "eb16bba03c" + }, + "cborHex": "45eb16bba03c", + "cborBytes": [69, 235, 22, 187, 160, 60], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1034, + "sample": { + "_tag": "ByteArray", + "bytearray": "ffab07bbf7" + }, + "cborHex": "45ffab07bbf7", + "cborBytes": [69, 255, 171, 7, 187, 247], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1035, + "sample": { + "_tag": "ByteArray", + "bytearray": "a876" + }, + "cborHex": "42a876", + "cborBytes": [66, 168, 118], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1036, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbf83d" + }, + "cborHex": "43fbf83d", + "cborBytes": [67, 251, 248, 61], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1037, + "sample": { + "_tag": "ByteArray", + "bytearray": "051d052c" + }, + "cborHex": "44051d052c", + "cborBytes": [68, 5, 29, 5, 44], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1038, + "sample": { + "_tag": "ByteArray", + "bytearray": "83692dab25b838" + }, + "cborHex": "4783692dab25b838", + "cborBytes": [71, 131, 105, 45, 171, 37, 184, 56], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1039, + "sample": { + "_tag": "ByteArray", + "bytearray": "80760504" + }, + "cborHex": "4480760504", + "cborBytes": [68, 128, 118, 5, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1040, + "sample": { + "_tag": "ByteArray", + "bytearray": "8f" + }, + "cborHex": "418f", + "cborBytes": [65, 143], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1041, + "sample": { + "_tag": "ByteArray", + "bytearray": "4a5b" + }, + "cborHex": "424a5b", + "cborBytes": [66, 74, 91], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1042, + "sample": { + "_tag": "ByteArray", + "bytearray": "61" + }, + "cborHex": "4161", + "cborBytes": [65, 97], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1043, + "sample": { + "_tag": "ByteArray", + "bytearray": "aff690f0aaa29db1900e" + }, + "cborHex": "4aaff690f0aaa29db1900e", + "cborBytes": [74, 175, 246, 144, 240, 170, 162, 157, 177, 144, 14], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1044, + "sample": { + "_tag": "ByteArray", + "bytearray": "00f902" + }, + "cborHex": "4300f902", + "cborBytes": [67, 0, 249, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1045, + "sample": { + "_tag": "ByteArray", + "bytearray": "1522f62cded3a12fa4eaa446" + }, + "cborHex": "4c1522f62cded3a12fa4eaa446", + "cborBytes": [76, 21, 34, 246, 44, 222, 211, 161, 47, 164, 234, 164, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1046, + "sample": { + "_tag": "ByteArray", + "bytearray": "36034bfe" + }, + "cborHex": "4436034bfe", + "cborBytes": [68, 54, 3, 75, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1047, + "sample": { + "_tag": "ByteArray", + "bytearray": "8996357a5df408af291c" + }, + "cborHex": "4a8996357a5df408af291c", + "cborBytes": [74, 137, 150, 53, 122, 93, 244, 8, 175, 41, 28], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1048, + "sample": { + "_tag": "ByteArray", + "bytearray": "abd565fd2f" + }, + "cborHex": "45abd565fd2f", + "cborBytes": [69, 171, 213, 101, 253, 47], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1049, + "sample": { + "_tag": "ByteArray", + "bytearray": "aa27e5f960fa3c00f801" + }, + "cborHex": "4aaa27e5f960fa3c00f801", + "cborBytes": [74, 170, 39, 229, 249, 96, 250, 60, 0, 248, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1050, + "sample": { + "_tag": "ByteArray", + "bytearray": "03c1d2" + }, + "cborHex": "4303c1d2", + "cborBytes": [67, 3, 193, 210], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1051, + "sample": { + "_tag": "ByteArray", + "bytearray": "f98b3b57402b" + }, + "cborHex": "46f98b3b57402b", + "cborBytes": [70, 249, 139, 59, 87, 64, 43], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1052, + "sample": { + "_tag": "ByteArray", + "bytearray": "90a602" + }, + "cborHex": "4390a602", + "cborBytes": [67, 144, 166, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1053, + "sample": { + "_tag": "ByteArray", + "bytearray": "540403" + }, + "cborHex": "43540403", + "cborBytes": [67, 84, 4, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1054, + "sample": { + "_tag": "ByteArray", + "bytearray": "1446" + }, + "cborHex": "421446", + "cborBytes": [66, 20, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1055, + "sample": { + "_tag": "ByteArray", + "bytearray": "21101b84ba3427559b88b5" + }, + "cborHex": "4b21101b84ba3427559b88b5", + "cborBytes": [75, 33, 16, 27, 132, 186, 52, 39, 85, 155, 136, 181], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1056, + "sample": { + "_tag": "ByteArray", + "bytearray": "00d900f6" + }, + "cborHex": "4400d900f6", + "cborBytes": [68, 0, 217, 0, 246], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1057, + "sample": { + "_tag": "ByteArray", + "bytearray": "8f0dfc4e7a52e6a2ff92c4" + }, + "cborHex": "4b8f0dfc4e7a52e6a2ff92c4", + "cborBytes": [75, 143, 13, 252, 78, 122, 82, 230, 162, 255, 146, 196], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1058, + "sample": { + "_tag": "ByteArray", + "bytearray": "05ce" + }, + "cborHex": "4205ce", + "cborBytes": [66, 5, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1059, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc0601fff964066cf997" + }, + "cborHex": "4afc0601fff964066cf997", + "cborBytes": [74, 252, 6, 1, 255, 249, 100, 6, 108, 249, 151], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1060, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbffff06" + }, + "cborHex": "44fbffff06", + "cborBytes": [68, 251, 255, 255, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1061, + "sample": { + "_tag": "ByteArray", + "bytearray": "269678f6" + }, + "cborHex": "44269678f6", + "cborBytes": [68, 38, 150, 120, 246], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1062, + "sample": { + "_tag": "ByteArray", + "bytearray": "acb157c4" + }, + "cborHex": "44acb157c4", + "cborBytes": [68, 172, 177, 87, 196], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1063, + "sample": { + "_tag": "ByteArray", + "bytearray": "44" + }, + "cborHex": "4144", + "cborBytes": [65, 68], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1064, + "sample": { + "_tag": "ByteArray", + "bytearray": "70e7d2cef218be3f81b23e" + }, + "cborHex": "4b70e7d2cef218be3f81b23e", + "cborBytes": [75, 112, 231, 210, 206, 242, 24, 190, 63, 129, 178, 62], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1065, + "sample": { + "_tag": "ByteArray", + "bytearray": "bebdffc3" + }, + "cborHex": "44bebdffc3", + "cborBytes": [68, 190, 189, 255, 195], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1066, + "sample": { + "_tag": "ByteArray", + "bytearray": "14b58c4bf0935818bf51cf0d" + }, + "cborHex": "4c14b58c4bf0935818bf51cf0d", + "cborBytes": [76, 20, 181, 140, 75, 240, 147, 88, 24, 191, 81, 207, 13], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1067, + "sample": { + "_tag": "ByteArray", + "bytearray": "4f11f725ad" + }, + "cborHex": "454f11f725ad", + "cborBytes": [69, 79, 17, 247, 37, 173], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1068, + "sample": { + "_tag": "ByteArray", + "bytearray": "b90a0e733d8bb1" + }, + "cborHex": "47b90a0e733d8bb1", + "cborBytes": [71, 185, 10, 14, 115, 61, 139, 177], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1069, + "sample": { + "_tag": "ByteArray", + "bytearray": "068914b10363fdc80b92e4" + }, + "cborHex": "4b068914b10363fdc80b92e4", + "cborBytes": [75, 6, 137, 20, 177, 3, 99, 253, 200, 11, 146, 228], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1070, + "sample": { + "_tag": "ByteArray", + "bytearray": "0797a86945d5bfbcd1ebfd" + }, + "cborHex": "4b0797a86945d5bfbcd1ebfd", + "cborBytes": [75, 7, 151, 168, 105, 69, 213, 191, 188, 209, 235, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1071, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9f6aa80cc35" + }, + "cborHex": "46f9f6aa80cc35", + "cborBytes": [70, 249, 246, 170, 128, 204, 53], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1072, + "sample": { + "_tag": "ByteArray", + "bytearray": "009aef40e04f" + }, + "cborHex": "46009aef40e04f", + "cborBytes": [70, 0, 154, 239, 64, 224, 79], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1073, + "sample": { + "_tag": "ByteArray", + "bytearray": "1bfb91fc7fbb81" + }, + "cborHex": "471bfb91fc7fbb81", + "cborBytes": [71, 27, 251, 145, 252, 127, 187, 129], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1074, + "sample": { + "_tag": "ByteArray", + "bytearray": "00fb06057987b72047f0df" + }, + "cborHex": "4b00fb06057987b72047f0df", + "cborBytes": [75, 0, 251, 6, 5, 121, 135, 183, 32, 71, 240, 223], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1075, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8a0b0" + }, + "cborHex": "43f8a0b0", + "cborBytes": [67, 248, 160, 176], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1076, + "sample": { + "_tag": "ByteArray", + "bytearray": "faff06db" + }, + "cborHex": "44faff06db", + "cborBytes": [68, 250, 255, 6, 219], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1077, + "sample": { + "_tag": "ByteArray", + "bytearray": "21cb06" + }, + "cborHex": "4321cb06", + "cborBytes": [67, 33, 203, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1078, + "sample": { + "_tag": "ByteArray", + "bytearray": "ca31" + }, + "cborHex": "42ca31", + "cborBytes": [66, 202, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1079, + "sample": { + "_tag": "ByteArray", + "bytearray": "db" + }, + "cborHex": "41db", + "cborBytes": [65, 219], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1080, + "sample": { + "_tag": "ByteArray", + "bytearray": "01b4fe" + }, + "cborHex": "4301b4fe", + "cborBytes": [67, 1, 180, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1081, + "sample": { + "_tag": "ByteArray", + "bytearray": "3a70" + }, + "cborHex": "423a70", + "cborBytes": [66, 58, 112], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1082, + "sample": { + "_tag": "ByteArray", + "bytearray": "f80505faa40594" + }, + "cborHex": "47f80505faa40594", + "cborBytes": [71, 248, 5, 5, 250, 164, 5, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1083, + "sample": { + "_tag": "ByteArray", + "bytearray": "02fe0506070206fc01fc" + }, + "cborHex": "4a02fe0506070206fc01fc", + "cborBytes": [74, 2, 254, 5, 6, 7, 2, 6, 252, 1, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1084, + "sample": { + "_tag": "ByteArray", + "bytearray": "7e07d1" + }, + "cborHex": "437e07d1", + "cborBytes": [67, 126, 7, 209], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1085, + "sample": { + "_tag": "ByteArray", + "bytearray": "42ca71" + }, + "cborHex": "4342ca71", + "cborBytes": [67, 66, 202, 113], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1086, + "sample": { + "_tag": "ByteArray", + "bytearray": "27a293217bf42462ad" + }, + "cborHex": "4927a293217bf42462ad", + "cborBytes": [73, 39, 162, 147, 33, 123, 244, 36, 98, 173], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1087, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8fe8602" + }, + "cborHex": "44f8fe8602", + "cborBytes": [68, 248, 254, 134, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1088, + "sample": { + "_tag": "ByteArray", + "bytearray": "a7e46c71fce26841" + }, + "cborHex": "48a7e46c71fce26841", + "cborBytes": [72, 167, 228, 108, 113, 252, 226, 104, 65], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1089, + "sample": { + "_tag": "ByteArray", + "bytearray": "ed0a1c9e69c29677" + }, + "cborHex": "48ed0a1c9e69c29677", + "cborBytes": [72, 237, 10, 28, 158, 105, 194, 150, 119], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1090, + "sample": { + "_tag": "ByteArray", + "bytearray": "aca2" + }, + "cborHex": "42aca2", + "cborBytes": [66, 172, 162], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1091, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9f601f32bed693b029ec807" + }, + "cborHex": "4cf9f601f32bed693b029ec807", + "cborBytes": [76, 249, 246, 1, 243, 43, 237, 105, 59, 2, 158, 200, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1092, + "sample": { + "_tag": "ByteArray", + "bytearray": "0bcc" + }, + "cborHex": "420bcc", + "cborBytes": [66, 11, 204], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1093, + "sample": { + "_tag": "ByteArray", + "bytearray": "a207ee02" + }, + "cborHex": "44a207ee02", + "cborBytes": [68, 162, 7, 238, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1094, + "sample": { + "_tag": "ByteArray", + "bytearray": "64" + }, + "cborHex": "4164", + "cborBytes": [65, 100], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1095, + "sample": { + "_tag": "ByteArray", + "bytearray": "f4fd" + }, + "cborHex": "42f4fd", + "cborBytes": [66, 244, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1096, + "sample": { + "_tag": "ByteArray", + "bytearray": "f1f5" + }, + "cborHex": "42f1f5", + "cborBytes": [66, 241, 245], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1097, + "sample": { + "_tag": "ByteArray", + "bytearray": "0501" + }, + "cborHex": "420501", + "cborBytes": [66, 5, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1098, + "sample": { + "_tag": "ByteArray", + "bytearray": "6c0206e17d239a445afd96" + }, + "cborHex": "4b6c0206e17d239a445afd96", + "cborBytes": [75, 108, 2, 6, 225, 125, 35, 154, 68, 90, 253, 150], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1099, + "sample": { + "_tag": "ByteArray", + "bytearray": "09c0cfa26d4f" + }, + "cborHex": "4609c0cfa26d4f", + "cborBytes": [70, 9, 192, 207, 162, 109, 79], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1100, + "sample": { + "_tag": "ByteArray", + "bytearray": "02a6563d07f805ab0701fe" + }, + "cborHex": "4b02a6563d07f805ab0701fe", + "cborBytes": [75, 2, 166, 86, 61, 7, 248, 5, 171, 7, 1, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1101, + "sample": { + "_tag": "ByteArray", + "bytearray": "6f148763bfb19e0e69" + }, + "cborHex": "496f148763bfb19e0e69", + "cborBytes": [73, 111, 20, 135, 99, 191, 177, 158, 14, 105], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1102, + "sample": { + "_tag": "ByteArray", + "bytearray": "143d0186343a1d76ad68af4c" + }, + "cborHex": "4c143d0186343a1d76ad68af4c", + "cborBytes": [76, 20, 61, 1, 134, 52, 58, 29, 118, 173, 104, 175, 76], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1103, + "sample": { + "_tag": "ByteArray", + "bytearray": "b307ddfe" + }, + "cborHex": "44b307ddfe", + "cborBytes": [68, 179, 7, 221, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1104, + "sample": { + "_tag": "ByteArray", + "bytearray": "83" + }, + "cborHex": "4183", + "cborBytes": [65, 131], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1105, + "sample": { + "_tag": "ByteArray", + "bytearray": "c299" + }, + "cborHex": "42c299", + "cborBytes": [66, 194, 153], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1106, + "sample": { + "_tag": "ByteArray", + "bytearray": "784c0b05b7" + }, + "cborHex": "45784c0b05b7", + "cborBytes": [69, 120, 76, 11, 5, 183], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1107, + "sample": { + "_tag": "ByteArray", + "bytearray": "e1037c77db83654d5453" + }, + "cborHex": "4ae1037c77db83654d5453", + "cborBytes": [74, 225, 3, 124, 119, 219, 131, 101, 77, 84, 83], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1108, + "sample": { + "_tag": "ByteArray", + "bytearray": "87893133f188" + }, + "cborHex": "4687893133f188", + "cborBytes": [70, 135, 137, 49, 51, 241, 136], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1109, + "sample": { + "_tag": "ByteArray", + "bytearray": "c8b0efb94fe939f011" + }, + "cborHex": "49c8b0efb94fe939f011", + "cborBytes": [73, 200, 176, 239, 185, 79, 233, 57, 240, 17], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1110, + "sample": { + "_tag": "ByteArray", + "bytearray": "2f8ecdf4918e37cd" + }, + "cborHex": "482f8ecdf4918e37cd", + "cborBytes": [72, 47, 142, 205, 244, 145, 142, 55, 205], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1111, + "sample": { + "_tag": "ByteArray", + "bytearray": "4b125688f299818078ff" + }, + "cborHex": "4a4b125688f299818078ff", + "cborBytes": [74, 75, 18, 86, 136, 242, 153, 129, 128, 120, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1112, + "sample": { + "_tag": "ByteArray", + "bytearray": "7b1524566694b0db" + }, + "cborHex": "487b1524566694b0db", + "cborBytes": [72, 123, 21, 36, 86, 102, 148, 176, 219], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1113, + "sample": { + "_tag": "ByteArray", + "bytearray": "87f9" + }, + "cborHex": "4287f9", + "cborBytes": [66, 135, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1114, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe06750105240501faaa122c" + }, + "cborHex": "4cfe06750105240501faaa122c", + "cborBytes": [76, 254, 6, 117, 1, 5, 36, 5, 1, 250, 170, 18, 44], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1115, + "sample": { + "_tag": "ByteArray", + "bytearray": "cbe00105e6644fb3" + }, + "cborHex": "48cbe00105e6644fb3", + "cborBytes": [72, 203, 224, 1, 5, 230, 100, 79, 179], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1116, + "sample": { + "_tag": "ByteArray", + "bytearray": "d807f98dbf02ffd00602fb" + }, + "cborHex": "4bd807f98dbf02ffd00602fb", + "cborBytes": [75, 216, 7, 249, 141, 191, 2, 255, 208, 6, 2, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1117, + "sample": { + "_tag": "ByteArray", + "bytearray": "72969503fa7b35b18e" + }, + "cborHex": "4972969503fa7b35b18e", + "cborBytes": [73, 114, 150, 149, 3, 250, 123, 53, 177, 142], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1118, + "sample": { + "_tag": "ByteArray", + "bytearray": "0aa8316f3d9cba20" + }, + "cborHex": "480aa8316f3d9cba20", + "cborBytes": [72, 10, 168, 49, 111, 61, 156, 186, 32], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1119, + "sample": { + "_tag": "ByteArray", + "bytearray": "1cc41c3f" + }, + "cborHex": "441cc41c3f", + "cborBytes": [68, 28, 196, 28, 63], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1120, + "sample": { + "_tag": "ByteArray", + "bytearray": "a4" + }, + "cborHex": "41a4", + "cborBytes": [65, 164], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1121, + "sample": { + "_tag": "ByteArray", + "bytearray": "aacc94f7a486965f59" + }, + "cborHex": "49aacc94f7a486965f59", + "cborBytes": [73, 170, 204, 148, 247, 164, 134, 150, 95, 89], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1122, + "sample": { + "_tag": "ByteArray", + "bytearray": "acff82f3" + }, + "cborHex": "44acff82f3", + "cborBytes": [68, 172, 255, 130, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1123, + "sample": { + "_tag": "ByteArray", + "bytearray": "84050336a192a6e7" + }, + "cborHex": "4884050336a192a6e7", + "cborBytes": [72, 132, 5, 3, 54, 161, 146, 166, 231], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1124, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd3589000fec1d2cfa05da" + }, + "cborHex": "4bfd3589000fec1d2cfa05da", + "cborBytes": [75, 253, 53, 137, 0, 15, 236, 29, 44, 250, 5, 218], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1125, + "sample": { + "_tag": "ByteArray", + "bytearray": "2f79c1400586c59b1d" + }, + "cborHex": "492f79c1400586c59b1d", + "cborBytes": [73, 47, 121, 193, 64, 5, 134, 197, 155, 29], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1126, + "sample": { + "_tag": "ByteArray", + "bytearray": "f403" + }, + "cborHex": "42f403", + "cborBytes": [66, 244, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1127, + "sample": { + "_tag": "ByteArray", + "bytearray": "bc7ebdcc6095" + }, + "cborHex": "46bc7ebdcc6095", + "cborBytes": [70, 188, 126, 189, 204, 96, 149], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1128, + "sample": { + "_tag": "ByteArray", + "bytearray": "8c" + }, + "cborHex": "418c", + "cborBytes": [65, 140], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1129, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff010613fbbc" + }, + "cborHex": "46ff010613fbbc", + "cborBytes": [70, 255, 1, 6, 19, 251, 188], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1130, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcf9" + }, + "cborHex": "42fcf9", + "cborBytes": [66, 252, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1131, + "sample": { + "_tag": "ByteArray", + "bytearray": "a109" + }, + "cborHex": "42a109", + "cborBytes": [66, 161, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1132, + "sample": { + "_tag": "ByteArray", + "bytearray": "70bd9d7a9431b7a654" + }, + "cborHex": "4970bd9d7a9431b7a654", + "cborBytes": [73, 112, 189, 157, 122, 148, 49, 183, 166, 84], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1133, + "sample": { + "_tag": "ByteArray", + "bytearray": "ab03b4081ea426ae" + }, + "cborHex": "48ab03b4081ea426ae", + "cborBytes": [72, 171, 3, 180, 8, 30, 164, 38, 174], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1134, + "sample": { + "_tag": "ByteArray", + "bytearray": "c77325ee8e1ae3ed758f" + }, + "cborHex": "4ac77325ee8e1ae3ed758f", + "cborBytes": [74, 199, 115, 37, 238, 142, 26, 227, 237, 117, 143], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1135, + "sample": { + "_tag": "ByteArray", + "bytearray": "05b19004" + }, + "cborHex": "4405b19004", + "cborBytes": [68, 5, 177, 144, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1136, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "cborHex": "41fd", + "cborBytes": [65, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1137, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8c8fca3fffacd" + }, + "cborHex": "47f8c8fca3fffacd", + "cborBytes": [71, 248, 200, 252, 163, 255, 250, 205], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1138, + "sample": { + "_tag": "ByteArray", + "bytearray": "15a9fd59" + }, + "cborHex": "4415a9fd59", + "cborBytes": [68, 21, 169, 253, 89], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1139, + "sample": { + "_tag": "ByteArray", + "bytearray": "01727d6807fd" + }, + "cborHex": "4601727d6807fd", + "cborBytes": [70, 1, 114, 125, 104, 7, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1140, + "sample": { + "_tag": "ByteArray", + "bytearray": "f5" + }, + "cborHex": "41f5", + "cborBytes": [65, 245], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1141, + "sample": { + "_tag": "ByteArray", + "bytearray": "3a33d2b5" + }, + "cborHex": "443a33d2b5", + "cborBytes": [68, 58, 51, 210, 181], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1142, + "sample": { + "_tag": "ByteArray", + "bytearray": "a121" + }, + "cborHex": "42a121", + "cborBytes": [66, 161, 33], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1143, + "sample": { + "_tag": "ByteArray", + "bytearray": "ad04fbc6a13bdd33dbfd92ee" + }, + "cborHex": "4cad04fbc6a13bdd33dbfd92ee", + "cborBytes": [76, 173, 4, 251, 198, 161, 59, 221, 51, 219, 253, 146, 238], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1144, + "sample": { + "_tag": "ByteArray", + "bytearray": "89fb0af2c3347b9f85c8" + }, + "cborHex": "4a89fb0af2c3347b9f85c8", + "cborBytes": [74, 137, 251, 10, 242, 195, 52, 123, 159, 133, 200], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1145, + "sample": { + "_tag": "ByteArray", + "bytearray": "1fc0a50cdc41dc21cfdfb9" + }, + "cborHex": "4b1fc0a50cdc41dc21cfdfb9", + "cborBytes": [75, 31, 192, 165, 12, 220, 65, 220, 33, 207, 223, 185], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1146, + "sample": { + "_tag": "ByteArray", + "bytearray": "e0a8" + }, + "cborHex": "42e0a8", + "cborBytes": [66, 224, 168], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1147, + "sample": { + "_tag": "ByteArray", + "bytearray": "4a8d211cad3135f757" + }, + "cborHex": "494a8d211cad3135f757", + "cborBytes": [73, 74, 141, 33, 28, 173, 49, 53, 247, 87], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1148, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9de664b0da5f95d8cfb" + }, + "cborHex": "4af9de664b0da5f95d8cfb", + "cborBytes": [74, 249, 222, 102, 75, 13, 165, 249, 93, 140, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1149, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb013a02" + }, + "cborHex": "44fb013a02", + "cborBytes": [68, 251, 1, 58, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1150, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbef2980fcfe0704" + }, + "cborHex": "48fbef2980fcfe0704", + "cborBytes": [72, 251, 239, 41, 128, 252, 254, 7, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1151, + "sample": { + "_tag": "ByteArray", + "bytearray": "4164" + }, + "cborHex": "424164", + "cborBytes": [66, 65, 100], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1152, + "sample": { + "_tag": "ByteArray", + "bytearray": "e7f20903644a0507d18efba2" + }, + "cborHex": "4ce7f20903644a0507d18efba2", + "cborBytes": [76, 231, 242, 9, 3, 100, 74, 5, 7, 209, 142, 251, 162], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1153, + "sample": { + "_tag": "ByteArray", + "bytearray": "0f54a95cfe16fe83" + }, + "cborHex": "480f54a95cfe16fe83", + "cborBytes": [72, 15, 84, 169, 92, 254, 22, 254, 131], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1154, + "sample": { + "_tag": "ByteArray", + "bytearray": "0607" + }, + "cborHex": "420607", + "cborBytes": [66, 6, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1155, + "sample": { + "_tag": "ByteArray", + "bytearray": "00f25782" + }, + "cborHex": "4400f25782", + "cborBytes": [68, 0, 242, 87, 130], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1156, + "sample": { + "_tag": "ByteArray", + "bytearray": "a63b92" + }, + "cborHex": "43a63b92", + "cborBytes": [67, 166, 59, 146], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1157, + "sample": { + "_tag": "ByteArray", + "bytearray": "6682085a1db911ed94" + }, + "cborHex": "496682085a1db911ed94", + "cborBytes": [73, 102, 130, 8, 90, 29, 185, 17, 237, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1158, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa690518" + }, + "cborHex": "44fa690518", + "cborBytes": [68, 250, 105, 5, 24], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1159, + "sample": { + "_tag": "ByteArray", + "bytearray": "0546" + }, + "cborHex": "420546", + "cborBytes": [66, 5, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1160, + "sample": { + "_tag": "ByteArray", + "bytearray": "faacf78565416961e663" + }, + "cborHex": "4afaacf78565416961e663", + "cborBytes": [74, 250, 172, 247, 133, 101, 65, 105, 97, 230, 99], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1161, + "sample": { + "_tag": "ByteArray", + "bytearray": "6a486d24b47908d9b28a" + }, + "cborHex": "4a6a486d24b47908d9b28a", + "cborBytes": [74, 106, 72, 109, 36, 180, 121, 8, 217, 178, 138], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1162, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd88" + }, + "cborHex": "42fd88", + "cborBytes": [66, 253, 136], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1163, + "sample": { + "_tag": "ByteArray", + "bytearray": "cb08ff8e250104e20e" + }, + "cborHex": "49cb08ff8e250104e20e", + "cborBytes": [73, 203, 8, 255, 142, 37, 1, 4, 226, 14], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1164, + "sample": { + "_tag": "ByteArray", + "bytearray": "020288" + }, + "cborHex": "43020288", + "cborBytes": [67, 2, 2, 136], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1165, + "sample": { + "_tag": "ByteArray", + "bytearray": "6c3a8e8826" + }, + "cborHex": "456c3a8e8826", + "cborBytes": [69, 108, 58, 142, 136, 38], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1166, + "sample": { + "_tag": "ByteArray", + "bytearray": "8922b0072b6b6bb2" + }, + "cborHex": "488922b0072b6b6bb2", + "cborBytes": [72, 137, 34, 176, 7, 43, 107, 107, 178], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1167, + "sample": { + "_tag": "ByteArray", + "bytearray": "e3f867ded35ffdc07affb7" + }, + "cborHex": "4be3f867ded35ffdc07affb7", + "cborBytes": [75, 227, 248, 103, 222, 211, 95, 253, 192, 122, 255, 183], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1168, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe0578f9fe" + }, + "cborHex": "45fe0578f9fe", + "cborBytes": [69, 254, 5, 120, 249, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1169, + "sample": { + "_tag": "ByteArray", + "bytearray": "5e04023f01" + }, + "cborHex": "455e04023f01", + "cborBytes": [69, 94, 4, 2, 63, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1170, + "sample": { + "_tag": "ByteArray", + "bytearray": "ab6c3b8f888db2f920" + }, + "cborHex": "49ab6c3b8f888db2f920", + "cborBytes": [73, 171, 108, 59, 143, 136, 141, 178, 249, 32], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1171, + "sample": { + "_tag": "ByteArray", + "bytearray": "48360302" + }, + "cborHex": "4448360302", + "cborBytes": [68, 72, 54, 3, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1172, + "sample": { + "_tag": "ByteArray", + "bytearray": "8f05" + }, + "cborHex": "428f05", + "cborBytes": [66, 143, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1173, + "sample": { + "_tag": "ByteArray", + "bytearray": "feef0754" + }, + "cborHex": "44feef0754", + "cborBytes": [68, 254, 239, 7, 84], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1174, + "sample": { + "_tag": "ByteArray", + "bytearray": "75" + }, + "cborHex": "4175", + "cborBytes": [65, 117], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1175, + "sample": { + "_tag": "ByteArray", + "bytearray": "264eeb522c29cdb746003981" + }, + "cborHex": "4c264eeb522c29cdb746003981", + "cborBytes": [76, 38, 78, 235, 82, 44, 41, 205, 183, 70, 0, 57, 129], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1176, + "sample": { + "_tag": "ByteArray", + "bytearray": "9b46f37b82d930eb079604" + }, + "cborHex": "4b9b46f37b82d930eb079604", + "cborBytes": [75, 155, 70, 243, 123, 130, 217, 48, 235, 7, 150, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1177, + "sample": { + "_tag": "ByteArray", + "bytearray": "0307ff030314" + }, + "cborHex": "460307ff030314", + "cborBytes": [70, 3, 7, 255, 3, 3, 20], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1178, + "sample": { + "_tag": "ByteArray", + "bytearray": "0819" + }, + "cborHex": "420819", + "cborBytes": [66, 8, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1179, + "sample": { + "_tag": "ByteArray", + "bytearray": "a3" + }, + "cborHex": "41a3", + "cborBytes": [65, 163], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1180, + "sample": { + "_tag": "ByteArray", + "bytearray": "4e69c97cd7db35e5dc59e3" + }, + "cborHex": "4b4e69c97cd7db35e5dc59e3", + "cborBytes": [75, 78, 105, 201, 124, 215, 219, 53, 229, 220, 89, 227], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1181, + "sample": { + "_tag": "ByteArray", + "bytearray": "03d8ffa2fc46" + }, + "cborHex": "4603d8ffa2fc46", + "cborBytes": [70, 3, 216, 255, 162, 252, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1182, + "sample": { + "_tag": "ByteArray", + "bytearray": "ceac8b02e6ed6c7159caf8" + }, + "cborHex": "4bceac8b02e6ed6c7159caf8", + "cborBytes": [75, 206, 172, 139, 2, 230, 237, 108, 113, 89, 202, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1183, + "sample": { + "_tag": "ByteArray", + "bytearray": "782a41879c2b3860e4d1" + }, + "cborHex": "4a782a41879c2b3860e4d1", + "cborBytes": [74, 120, 42, 65, 135, 156, 43, 56, 96, 228, 209], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1184, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff0405" + }, + "cborHex": "43ff0405", + "cborBytes": [67, 255, 4, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1185, + "sample": { + "_tag": "ByteArray", + "bytearray": "0604" + }, + "cborHex": "420604", + "cborBytes": [66, 6, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1186, + "sample": { + "_tag": "ByteArray", + "bytearray": "4404aa" + }, + "cborHex": "434404aa", + "cborBytes": [67, 68, 4, 170], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1187, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe83" + }, + "cborHex": "42fe83", + "cborBytes": [66, 254, 131], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1188, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb0602fd" + }, + "cborHex": "44fb0602fd", + "cborBytes": [68, 251, 6, 2, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1189, + "sample": { + "_tag": "ByteArray", + "bytearray": "13" + }, + "cborHex": "4113", + "cborBytes": [65, 19], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1190, + "sample": { + "_tag": "ByteArray", + "bytearray": "228cabef81" + }, + "cborHex": "45228cabef81", + "cborBytes": [69, 34, 140, 171, 239, 129], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1191, + "sample": { + "_tag": "ByteArray", + "bytearray": "eb51e88686" + }, + "cborHex": "45eb51e88686", + "cborBytes": [69, 235, 81, 232, 134, 134], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1192, + "sample": { + "_tag": "ByteArray", + "bytearray": "3ce83ee2" + }, + "cborHex": "443ce83ee2", + "cborBytes": [68, 60, 232, 62, 226], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1193, + "sample": { + "_tag": "ByteArray", + "bytearray": "69de84a54e00ee13d5" + }, + "cborHex": "4969de84a54e00ee13d5", + "cborBytes": [73, 105, 222, 132, 165, 78, 0, 238, 19, 213], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1194, + "sample": { + "_tag": "ByteArray", + "bytearray": "6629797e" + }, + "cborHex": "446629797e", + "cborBytes": [68, 102, 41, 121, 126], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1195, + "sample": { + "_tag": "ByteArray", + "bytearray": "e243a9" + }, + "cborHex": "43e243a9", + "cborBytes": [67, 226, 67, 169], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1196, + "sample": { + "_tag": "ByteArray", + "bytearray": "03b962" + }, + "cborHex": "4303b962", + "cborBytes": [67, 3, 185, 98], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1197, + "sample": { + "_tag": "ByteArray", + "bytearray": "59009f79455c1a122c" + }, + "cborHex": "4959009f79455c1a122c", + "cborBytes": [73, 89, 0, 159, 121, 69, 92, 26, 18, 44], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1198, + "sample": { + "_tag": "ByteArray", + "bytearray": "0785fc048addfb" + }, + "cborHex": "470785fc048addfb", + "cborBytes": [71, 7, 133, 252, 4, 138, 221, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1199, + "sample": { + "_tag": "ByteArray", + "bytearray": "ca460130" + }, + "cborHex": "44ca460130", + "cborBytes": [68, 202, 70, 1, 48], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1200, + "sample": { + "_tag": "ByteArray", + "bytearray": "6004" + }, + "cborHex": "426004", + "cborBytes": [66, 96, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1201, + "sample": { + "_tag": "ByteArray", + "bytearray": "a414" + }, + "cborHex": "42a414", + "cborBytes": [66, 164, 20], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1202, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa3bfa0702ea03" + }, + "cborHex": "47fa3bfa0702ea03", + "cborBytes": [71, 250, 59, 250, 7, 2, 234, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1203, + "sample": { + "_tag": "ByteArray", + "bytearray": "b2d29c" + }, + "cborHex": "43b2d29c", + "cborBytes": [67, 178, 210, 156], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1204, + "sample": { + "_tag": "ByteArray", + "bytearray": "01a3fe02046f05ba" + }, + "cborHex": "4801a3fe02046f05ba", + "cborBytes": [72, 1, 163, 254, 2, 4, 111, 5, 186], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1205, + "sample": { + "_tag": "ByteArray", + "bytearray": "0046acf2" + }, + "cborHex": "440046acf2", + "cborBytes": [68, 0, 70, 172, 242], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1206, + "sample": { + "_tag": "ByteArray", + "bytearray": "7aa8f43f7cd613125764" + }, + "cborHex": "4a7aa8f43f7cd613125764", + "cborBytes": [74, 122, 168, 244, 63, 124, 214, 19, 18, 87, 100], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1207, + "sample": { + "_tag": "ByteArray", + "bytearray": "9797ec5d760bc3a4" + }, + "cborHex": "489797ec5d760bc3a4", + "cborBytes": [72, 151, 151, 236, 93, 118, 11, 195, 164], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1208, + "sample": { + "_tag": "ByteArray", + "bytearray": "5b24e63ae0cd5d" + }, + "cborHex": "475b24e63ae0cd5d", + "cborBytes": [71, 91, 36, 230, 58, 224, 205, 93], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1209, + "sample": { + "_tag": "ByteArray", + "bytearray": "00fd" + }, + "cborHex": "4200fd", + "cborBytes": [66, 0, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1210, + "sample": { + "_tag": "ByteArray", + "bytearray": "c3b3e986" + }, + "cborHex": "44c3b3e986", + "cborBytes": [68, 195, 179, 233, 134], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1211, + "sample": { + "_tag": "ByteArray", + "bytearray": "5b560502" + }, + "cborHex": "445b560502", + "cborBytes": [68, 91, 86, 5, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1212, + "sample": { + "_tag": "ByteArray", + "bytearray": "b3002b" + }, + "cborHex": "43b3002b", + "cborBytes": [67, 179, 0, 43], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1213, + "sample": { + "_tag": "ByteArray", + "bytearray": "4883" + }, + "cborHex": "424883", + "cborBytes": [66, 72, 131], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1214, + "sample": { + "_tag": "ByteArray", + "bytearray": "2502" + }, + "cborHex": "422502", + "cborBytes": [66, 37, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1215, + "sample": { + "_tag": "ByteArray", + "bytearray": "f6fca401ff05fc0306" + }, + "cborHex": "49f6fca401ff05fc0306", + "cborBytes": [73, 246, 252, 164, 1, 255, 5, 252, 3, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1216, + "sample": { + "_tag": "ByteArray", + "bytearray": "d42c24" + }, + "cborHex": "43d42c24", + "cborBytes": [67, 212, 44, 36], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1217, + "sample": { + "_tag": "ByteArray", + "bytearray": "8907" + }, + "cborHex": "428907", + "cborBytes": [66, 137, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1218, + "sample": { + "_tag": "ByteArray", + "bytearray": "82" + }, + "cborHex": "4182", + "cborBytes": [65, 130], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1219, + "sample": { + "_tag": "ByteArray", + "bytearray": "9ca24404" + }, + "cborHex": "449ca24404", + "cborBytes": [68, 156, 162, 68, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1220, + "sample": { + "_tag": "ByteArray", + "bytearray": "8eebe7f50528ece45288" + }, + "cborHex": "4a8eebe7f50528ece45288", + "cborBytes": [74, 142, 235, 231, 245, 5, 40, 236, 228, 82, 136], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1221, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe06" + }, + "cborHex": "42fe06", + "cborBytes": [66, 254, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1222, + "sample": { + "_tag": "ByteArray", + "bytearray": "4d7a93f71e6c" + }, + "cborHex": "464d7a93f71e6c", + "cborBytes": [70, 77, 122, 147, 247, 30, 108], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1223, + "sample": { + "_tag": "ByteArray", + "bytearray": "8d09c384a8f64c28494901" + }, + "cborHex": "4b8d09c384a8f64c28494901", + "cborBytes": [75, 141, 9, 195, 132, 168, 246, 76, 40, 73, 73, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1224, + "sample": { + "_tag": "ByteArray", + "bytearray": "5fe5389005bffbfc57fc12e1" + }, + "cborHex": "4c5fe5389005bffbfc57fc12e1", + "cborBytes": [76, 95, 229, 56, 144, 5, 191, 251, 252, 87, 252, 18, 225], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1225, + "sample": { + "_tag": "ByteArray", + "bytearray": "7501e1c8" + }, + "cborHex": "447501e1c8", + "cborBytes": [68, 117, 1, 225, 200], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1226, + "sample": { + "_tag": "ByteArray", + "bytearray": "45f056d1e33008414bf8db" + }, + "cborHex": "4b45f056d1e33008414bf8db", + "cborBytes": [75, 69, 240, 86, 209, 227, 48, 8, 65, 75, 248, 219], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1227, + "sample": { + "_tag": "ByteArray", + "bytearray": "afb0ca6c" + }, + "cborHex": "44afb0ca6c", + "cborBytes": [68, 175, 176, 202, 108], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1228, + "sample": { + "_tag": "ByteArray", + "bytearray": "fef8" + }, + "cborHex": "42fef8", + "cborBytes": [66, 254, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1229, + "sample": { + "_tag": "ByteArray", + "bytearray": "9584" + }, + "cborHex": "429584", + "cborBytes": [66, 149, 132], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1230, + "sample": { + "_tag": "ByteArray", + "bytearray": "5a03fa04fbf9" + }, + "cborHex": "465a03fa04fbf9", + "cborBytes": [70, 90, 3, 250, 4, 251, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1231, + "sample": { + "_tag": "ByteArray", + "bytearray": "ee85df0a3e" + }, + "cborHex": "45ee85df0a3e", + "cborBytes": [69, 238, 133, 223, 10, 62], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1232, + "sample": { + "_tag": "ByteArray", + "bytearray": "61a5cc3135ce97051c00fd" + }, + "cborHex": "4b61a5cc3135ce97051c00fd", + "cborBytes": [75, 97, 165, 204, 49, 53, 206, 151, 5, 28, 0, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1233, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa0706f8f9f8" + }, + "cborHex": "46fa0706f8f9f8", + "cborBytes": [70, 250, 7, 6, 248, 249, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1234, + "sample": { + "_tag": "ByteArray", + "bytearray": "0526ef0304079242" + }, + "cborHex": "480526ef0304079242", + "cborBytes": [72, 5, 38, 239, 3, 4, 7, 146, 66], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1235, + "sample": { + "_tag": "ByteArray", + "bytearray": "7591872091e7b585" + }, + "cborHex": "487591872091e7b585", + "cborBytes": [72, 117, 145, 135, 32, 145, 231, 181, 133], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1236, + "sample": { + "_tag": "ByteArray", + "bytearray": "d8fa5084910469fb" + }, + "cborHex": "48d8fa5084910469fb", + "cborBytes": [72, 216, 250, 80, 132, 145, 4, 105, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1237, + "sample": { + "_tag": "ByteArray", + "bytearray": "7bff" + }, + "cborHex": "427bff", + "cborBytes": [66, 123, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1238, + "sample": { + "_tag": "ByteArray", + "bytearray": "14a9bbd36f06490743ff01" + }, + "cborHex": "4b14a9bbd36f06490743ff01", + "cborBytes": [75, 20, 169, 187, 211, 111, 6, 73, 7, 67, 255, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1239, + "sample": { + "_tag": "ByteArray", + "bytearray": "8c06" + }, + "cborHex": "428c06", + "cborBytes": [66, 140, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1240, + "sample": { + "_tag": "ByteArray", + "bytearray": "43b64f2c9473f3" + }, + "cborHex": "4743b64f2c9473f3", + "cborBytes": [71, 67, 182, 79, 44, 148, 115, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1241, + "sample": { + "_tag": "ByteArray", + "bytearray": "02e3" + }, + "cborHex": "4202e3", + "cborBytes": [66, 2, 227], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1242, + "sample": { + "_tag": "ByteArray", + "bytearray": "2b213adf6f" + }, + "cborHex": "452b213adf6f", + "cborBytes": [69, 43, 33, 58, 223, 111], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1243, + "sample": { + "_tag": "ByteArray", + "bytearray": "f1e4484f3991351cb72cf48b" + }, + "cborHex": "4cf1e4484f3991351cb72cf48b", + "cborBytes": [76, 241, 228, 72, 79, 57, 145, 53, 28, 183, 44, 244, 139], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1244, + "sample": { + "_tag": "ByteArray", + "bytearray": "010401f9" + }, + "cborHex": "44010401f9", + "cborBytes": [68, 1, 4, 1, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1245, + "sample": { + "_tag": "ByteArray", + "bytearray": "6a8fe153" + }, + "cborHex": "446a8fe153", + "cborBytes": [68, 106, 143, 225, 83], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1246, + "sample": { + "_tag": "ByteArray", + "bytearray": "15fcf8" + }, + "cborHex": "4315fcf8", + "cborBytes": [67, 21, 252, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1247, + "sample": { + "_tag": "ByteArray", + "bytearray": "650504fc062b7efbfb" + }, + "cborHex": "49650504fc062b7efbfb", + "cborBytes": [73, 101, 5, 4, 252, 6, 43, 126, 251, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1248, + "sample": { + "_tag": "ByteArray", + "bytearray": "05aafd01a879025e590302" + }, + "cborHex": "4b05aafd01a879025e590302", + "cborBytes": [75, 5, 170, 253, 1, 168, 121, 2, 94, 89, 3, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1249, + "sample": { + "_tag": "ByteArray", + "bytearray": "c89a2e20a1dac83891" + }, + "cborHex": "49c89a2e20a1dac83891", + "cborBytes": [73, 200, 154, 46, 32, 161, 218, 200, 56, 145], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1250, + "sample": { + "_tag": "ByteArray", + "bytearray": "04bff874" + }, + "cborHex": "4404bff874", + "cborBytes": [68, 4, 191, 248, 116], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1251, + "sample": { + "_tag": "ByteArray", + "bytearray": "313f2bcec2e2a039ed" + }, + "cborHex": "49313f2bcec2e2a039ed", + "cborBytes": [73, 49, 63, 43, 206, 194, 226, 160, 57, 237], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1252, + "sample": { + "_tag": "ByteArray", + "bytearray": "01fe8f0132026f0706d6" + }, + "cborHex": "4a01fe8f0132026f0706d6", + "cborBytes": [74, 1, 254, 143, 1, 50, 2, 111, 7, 6, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1253, + "sample": { + "_tag": "ByteArray", + "bytearray": "070304" + }, + "cborHex": "43070304", + "cborBytes": [67, 7, 3, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1254, + "sample": { + "_tag": "ByteArray", + "bytearray": "d5" + }, + "cborHex": "41d5", + "cborBytes": [65, 213], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1255, + "sample": { + "_tag": "ByteArray", + "bytearray": "7fbb" + }, + "cborHex": "427fbb", + "cborBytes": [66, 127, 187], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1256, + "sample": { + "_tag": "ByteArray", + "bytearray": "f37611d608" + }, + "cborHex": "45f37611d608", + "cborBytes": [69, 243, 118, 17, 214, 8], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1257, + "sample": { + "_tag": "ByteArray", + "bytearray": "038affab" + }, + "cborHex": "44038affab", + "cborBytes": [68, 3, 138, 255, 171], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1258, + "sample": { + "_tag": "ByteArray", + "bytearray": "e53c75" + }, + "cborHex": "43e53c75", + "cborBytes": [67, 229, 60, 117], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1259, + "sample": { + "_tag": "ByteArray", + "bytearray": "486cf9ff02cdeb" + }, + "cborHex": "47486cf9ff02cdeb", + "cborBytes": [71, 72, 108, 249, 255, 2, 205, 235], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1260, + "sample": { + "_tag": "ByteArray", + "bytearray": "03bac7" + }, + "cborHex": "4303bac7", + "cborBytes": [67, 3, 186, 199], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1261, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc433405acf9f8ad" + }, + "cborHex": "48fc433405acf9f8ad", + "cborBytes": [72, 252, 67, 52, 5, 172, 249, 248, 173], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1262, + "sample": { + "_tag": "ByteArray", + "bytearray": "06fd540767d005" + }, + "cborHex": "4706fd540767d005", + "cborBytes": [71, 6, 253, 84, 7, 103, 208, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1263, + "sample": { + "_tag": "ByteArray", + "bytearray": "946ca9e1d14f749b2424" + }, + "cborHex": "4a946ca9e1d14f749b2424", + "cborBytes": [74, 148, 108, 169, 225, 209, 79, 116, 155, 36, 36], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1264, + "sample": { + "_tag": "ByteArray", + "bytearray": "a88b0180" + }, + "cborHex": "44a88b0180", + "cborBytes": [68, 168, 139, 1, 128], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1265, + "sample": { + "_tag": "ByteArray", + "bytearray": "8bfa43be975555" + }, + "cborHex": "478bfa43be975555", + "cborBytes": [71, 139, 250, 67, 190, 151, 85, 85], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1266, + "sample": { + "_tag": "ByteArray", + "bytearray": "ceb8f3a53b04efa111c2c8" + }, + "cborHex": "4bceb8f3a53b04efa111c2c8", + "cborBytes": [75, 206, 184, 243, 165, 59, 4, 239, 161, 17, 194, 200], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1267, + "sample": { + "_tag": "ByteArray", + "bytearray": "b8d6ce67" + }, + "cborHex": "44b8d6ce67", + "cborBytes": [68, 184, 214, 206, 103], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1268, + "sample": { + "_tag": "ByteArray", + "bytearray": "09004a01ffc606" + }, + "cborHex": "4709004a01ffc606", + "cborBytes": [71, 9, 0, 74, 1, 255, 198, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1269, + "sample": { + "_tag": "ByteArray", + "bytearray": "00f9e381" + }, + "cborHex": "4400f9e381", + "cborBytes": [68, 0, 249, 227, 129], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1270, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9a7" + }, + "cborHex": "42f9a7", + "cborBytes": [66, 249, 167], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1271, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff0203" + }, + "cborHex": "43ff0203", + "cborBytes": [67, 255, 2, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1272, + "sample": { + "_tag": "ByteArray", + "bytearray": "023c" + }, + "cborHex": "42023c", + "cborBytes": [66, 2, 60], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1273, + "sample": { + "_tag": "ByteArray", + "bytearray": "f90525f9" + }, + "cborHex": "44f90525f9", + "cborBytes": [68, 249, 5, 37, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1274, + "sample": { + "_tag": "ByteArray", + "bytearray": "8138203d4024c26d28" + }, + "cborHex": "498138203d4024c26d28", + "cborBytes": [73, 129, 56, 32, 61, 64, 36, 194, 109, 40], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1275, + "sample": { + "_tag": "ByteArray", + "bytearray": "9e00d82b" + }, + "cborHex": "449e00d82b", + "cborBytes": [68, 158, 0, 216, 43], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1276, + "sample": { + "_tag": "ByteArray", + "bytearray": "2ad99ab7d6" + }, + "cborHex": "452ad99ab7d6", + "cborBytes": [69, 42, 217, 154, 183, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1277, + "sample": { + "_tag": "ByteArray", + "bytearray": "21022a7806ba17e118fa" + }, + "cborHex": "4a21022a7806ba17e118fa", + "cborBytes": [74, 33, 2, 42, 120, 6, 186, 23, 225, 24, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1278, + "sample": { + "_tag": "ByteArray", + "bytearray": "e7727718f4feb949b4ca" + }, + "cborHex": "4ae7727718f4feb949b4ca", + "cborBytes": [74, 231, 114, 119, 24, 244, 254, 185, 73, 180, 202], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1279, + "sample": { + "_tag": "ByteArray", + "bytearray": "4864" + }, + "cborHex": "424864", + "cborBytes": [66, 72, 100], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1280, + "sample": { + "_tag": "ByteArray", + "bytearray": "03a0" + }, + "cborHex": "4203a0", + "cborBytes": [66, 3, 160], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1281, + "sample": { + "_tag": "ByteArray", + "bytearray": "01fe" + }, + "cborHex": "4201fe", + "cborBytes": [66, 1, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1282, + "sample": { + "_tag": "ByteArray", + "bytearray": "48bad1487b570c94" + }, + "cborHex": "4848bad1487b570c94", + "cborBytes": [72, 72, 186, 209, 72, 123, 87, 12, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1283, + "sample": { + "_tag": "ByteArray", + "bytearray": "09763a9b4857da78fc02c71f" + }, + "cborHex": "4c09763a9b4857da78fc02c71f", + "cborBytes": [76, 9, 118, 58, 155, 72, 87, 218, 120, 252, 2, 199, 31], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1284, + "sample": { + "_tag": "ByteArray", + "bytearray": "95fb7d52" + }, + "cborHex": "4495fb7d52", + "cborBytes": [68, 149, 251, 125, 82], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1285, + "sample": { + "_tag": "ByteArray", + "bytearray": "7607039107f0" + }, + "cborHex": "467607039107f0", + "cborBytes": [70, 118, 7, 3, 145, 7, 240], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1286, + "sample": { + "_tag": "ByteArray", + "bytearray": "adfa240700060658f7" + }, + "cborHex": "49adfa240700060658f7", + "cborBytes": [73, 173, 250, 36, 7, 0, 6, 6, 88, 247], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1287, + "sample": { + "_tag": "ByteArray", + "bytearray": "d7d8604ac1" + }, + "cborHex": "45d7d8604ac1", + "cborBytes": [69, 215, 216, 96, 74, 193], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1288, + "sample": { + "_tag": "ByteArray", + "bytearray": "fdfd" + }, + "cborHex": "42fdfd", + "cborBytes": [66, 253, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1289, + "sample": { + "_tag": "ByteArray", + "bytearray": "48" + }, + "cborHex": "4148", + "cborBytes": [65, 72], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1290, + "sample": { + "_tag": "ByteArray", + "bytearray": "9b047d51c45705" + }, + "cborHex": "479b047d51c45705", + "cborBytes": [71, 155, 4, 125, 81, 196, 87, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1291, + "sample": { + "_tag": "ByteArray", + "bytearray": "1d146c41" + }, + "cborHex": "441d146c41", + "cborBytes": [68, 29, 20, 108, 65], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1292, + "sample": { + "_tag": "ByteArray", + "bytearray": "b69f16a6425a" + }, + "cborHex": "46b69f16a6425a", + "cborBytes": [70, 182, 159, 22, 166, 66, 90], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1293, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc8e" + }, + "cborHex": "42fc8e", + "cborBytes": [66, 252, 142], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1294, + "sample": { + "_tag": "ByteArray", + "bytearray": "059cf8065b0507fe" + }, + "cborHex": "48059cf8065b0507fe", + "cborBytes": [72, 5, 156, 248, 6, 91, 5, 7, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1295, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc3e8501" + }, + "cborHex": "44fc3e8501", + "cborBytes": [68, 252, 62, 133, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1296, + "sample": { + "_tag": "ByteArray", + "bytearray": "5b7a52ee2060" + }, + "cborHex": "465b7a52ee2060", + "cborBytes": [70, 91, 122, 82, 238, 32, 96], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1297, + "sample": { + "_tag": "ByteArray", + "bytearray": "00026401fd02fe6742" + }, + "cborHex": "4900026401fd02fe6742", + "cborBytes": [73, 0, 2, 100, 1, 253, 2, 254, 103, 66], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1298, + "sample": { + "_tag": "ByteArray", + "bytearray": "0101" + }, + "cborHex": "420101", + "cborBytes": [66, 1, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1299, + "sample": { + "_tag": "ByteArray", + "bytearray": "d61579e4274a733c" + }, + "cborHex": "48d61579e4274a733c", + "cborBytes": [72, 214, 21, 121, 228, 39, 74, 115, 60], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1300, + "sample": { + "_tag": "ByteArray", + "bytearray": "e4" + }, + "cborHex": "41e4", + "cborBytes": [65, 228], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1301, + "sample": { + "_tag": "ByteArray", + "bytearray": "045a0954fee3dc85d13a4029" + }, + "cborHex": "4c045a0954fee3dc85d13a4029", + "cborBytes": [76, 4, 90, 9, 84, 254, 227, 220, 133, 209, 58, 64, 41], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1302, + "sample": { + "_tag": "ByteArray", + "bytearray": "194d0d" + }, + "cborHex": "43194d0d", + "cborBytes": [67, 25, 77, 13], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1303, + "sample": { + "_tag": "ByteArray", + "bytearray": "49f3e0e1a2" + }, + "cborHex": "4549f3e0e1a2", + "cborBytes": [69, 73, 243, 224, 225, 162], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1304, + "sample": { + "_tag": "ByteArray", + "bytearray": "befafcfdc5040144f9" + }, + "cborHex": "49befafcfdc5040144f9", + "cborBytes": [73, 190, 250, 252, 253, 197, 4, 1, 68, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1305, + "sample": { + "_tag": "ByteArray", + "bytearray": "f93eb2371c1fb1d79f4cd7e1" + }, + "cborHex": "4cf93eb2371c1fb1d79f4cd7e1", + "cborBytes": [76, 249, 62, 178, 55, 28, 31, 177, 215, 159, 76, 215, 225], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1306, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff06f9f905fd05fedb015b0a" + }, + "cborHex": "4cff06f9f905fd05fedb015b0a", + "cborBytes": [76, 255, 6, 249, 249, 5, 253, 5, 254, 219, 1, 91, 10], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1307, + "sample": { + "_tag": "ByteArray", + "bytearray": "de42d3d02a5d27bb" + }, + "cborHex": "48de42d3d02a5d27bb", + "cborBytes": [72, 222, 66, 211, 208, 42, 93, 39, 187], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1308, + "sample": { + "_tag": "ByteArray", + "bytearray": "000100fc5a71e60000f9" + }, + "cborHex": "4a000100fc5a71e60000f9", + "cborBytes": [74, 0, 1, 0, 252, 90, 113, 230, 0, 0, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1309, + "sample": { + "_tag": "ByteArray", + "bytearray": "805f" + }, + "cborHex": "42805f", + "cborBytes": [66, 128, 95], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1310, + "sample": { + "_tag": "ByteArray", + "bytearray": "8cf45e3e17d681" + }, + "cborHex": "478cf45e3e17d681", + "cborBytes": [71, 140, 244, 94, 62, 23, 214, 129], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1311, + "sample": { + "_tag": "ByteArray", + "bytearray": "85d7df611d1a1a26" + }, + "cborHex": "4885d7df611d1a1a26", + "cborBytes": [72, 133, 215, 223, 97, 29, 26, 26, 38], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1312, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc060a02f4f8" + }, + "cborHex": "46fc060a02f4f8", + "cborBytes": [70, 252, 6, 10, 2, 244, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1313, + "sample": { + "_tag": "ByteArray", + "bytearray": "001362" + }, + "cborHex": "43001362", + "cborBytes": [67, 0, 19, 98], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1314, + "sample": { + "_tag": "ByteArray", + "bytearray": "4d317dd29a98ef30" + }, + "cborHex": "484d317dd29a98ef30", + "cborBytes": [72, 77, 49, 125, 210, 154, 152, 239, 48], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1315, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe2ac21c" + }, + "cborHex": "44fe2ac21c", + "cborBytes": [68, 254, 42, 194, 28], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1316, + "sample": { + "_tag": "ByteArray", + "bytearray": "0661071d" + }, + "cborHex": "440661071d", + "cborBytes": [68, 6, 97, 7, 29], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1317, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbfe" + }, + "cborHex": "42fbfe", + "cborBytes": [66, 251, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1318, + "sample": { + "_tag": "ByteArray", + "bytearray": "5f40eb712e641ae4ebe6" + }, + "cborHex": "4a5f40eb712e641ae4ebe6", + "cborBytes": [74, 95, 64, 235, 113, 46, 100, 26, 228, 235, 230], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1319, + "sample": { + "_tag": "ByteArray", + "bytearray": "9327e2f376f5a366cb" + }, + "cborHex": "499327e2f376f5a366cb", + "cborBytes": [73, 147, 39, 226, 243, 118, 245, 163, 102, 203], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1320, + "sample": { + "_tag": "ByteArray", + "bytearray": "623fd8f618c2ad19165320" + }, + "cborHex": "4b623fd8f618c2ad19165320", + "cborBytes": [75, 98, 63, 216, 246, 24, 194, 173, 25, 22, 83, 32], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1321, + "sample": { + "_tag": "ByteArray", + "bytearray": "ce07" + }, + "cborHex": "42ce07", + "cborBytes": [66, 206, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1322, + "sample": { + "_tag": "ByteArray", + "bytearray": "0d9745417692faf3d6" + }, + "cborHex": "490d9745417692faf3d6", + "cborBytes": [73, 13, 151, 69, 65, 118, 146, 250, 243, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1323, + "sample": { + "_tag": "ByteArray", + "bytearray": "a778fbde" + }, + "cborHex": "44a778fbde", + "cborBytes": [68, 167, 120, 251, 222], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1324, + "sample": { + "_tag": "ByteArray", + "bytearray": "0107f9fa" + }, + "cborHex": "440107f9fa", + "cborBytes": [68, 1, 7, 249, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1325, + "sample": { + "_tag": "ByteArray", + "bytearray": "1401406da828a412" + }, + "cborHex": "481401406da828a412", + "cborBytes": [72, 20, 1, 64, 109, 168, 40, 164, 18], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1326, + "sample": { + "_tag": "ByteArray", + "bytearray": "07064807" + }, + "cborHex": "4407064807", + "cborBytes": [68, 7, 6, 72, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1327, + "sample": { + "_tag": "ByteArray", + "bytearray": "0639" + }, + "cborHex": "420639", + "cborBytes": [66, 6, 57], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1328, + "sample": { + "_tag": "ByteArray", + "bytearray": "3301fc" + }, + "cborHex": "433301fc", + "cborBytes": [67, 51, 1, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1329, + "sample": { + "_tag": "ByteArray", + "bytearray": "6c041cf9" + }, + "cborHex": "446c041cf9", + "cborBytes": [68, 108, 4, 28, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1330, + "sample": { + "_tag": "ByteArray", + "bytearray": "64000103" + }, + "cborHex": "4464000103", + "cborBytes": [68, 100, 0, 1, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1331, + "sample": { + "_tag": "ByteArray", + "bytearray": "85ccde19" + }, + "cborHex": "4485ccde19", + "cborBytes": [68, 133, 204, 222, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1332, + "sample": { + "_tag": "ByteArray", + "bytearray": "4345a307" + }, + "cborHex": "444345a307", + "cborBytes": [68, 67, 69, 163, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1333, + "sample": { + "_tag": "ByteArray", + "bytearray": "ebffbeb7c165055998fc51bb" + }, + "cborHex": "4cebffbeb7c165055998fc51bb", + "cborBytes": [76, 235, 255, 190, 183, 193, 101, 5, 89, 152, 252, 81, 187], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1334, + "sample": { + "_tag": "ByteArray", + "bytearray": "d6" + }, + "cborHex": "41d6", + "cborBytes": [65, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1335, + "sample": { + "_tag": "ByteArray", + "bytearray": "d97f8ace70" + }, + "cborHex": "45d97f8ace70", + "cborBytes": [69, 217, 127, 138, 206, 112], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1336, + "sample": { + "_tag": "ByteArray", + "bytearray": "3bf900fe" + }, + "cborHex": "443bf900fe", + "cborBytes": [68, 59, 249, 0, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1337, + "sample": { + "_tag": "ByteArray", + "bytearray": "5a4c06fae7060005" + }, + "cborHex": "485a4c06fae7060005", + "cborBytes": [72, 90, 76, 6, 250, 231, 6, 0, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1338, + "sample": { + "_tag": "ByteArray", + "bytearray": "92fcfb4507fefd7805079e" + }, + "cborHex": "4b92fcfb4507fefd7805079e", + "cborBytes": [75, 146, 252, 251, 69, 7, 254, 253, 120, 5, 7, 158], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1339, + "sample": { + "_tag": "ByteArray", + "bytearray": "7cc766a3e2de91" + }, + "cborHex": "477cc766a3e2de91", + "cborBytes": [71, 124, 199, 102, 163, 226, 222, 145], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1340, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcfe5ca5180703fafe05" + }, + "cborHex": "4afcfe5ca5180703fafe05", + "cborBytes": [74, 252, 254, 92, 165, 24, 7, 3, 250, 254, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1341, + "sample": { + "_tag": "ByteArray", + "bytearray": "3088ed25" + }, + "cborHex": "443088ed25", + "cborBytes": [68, 48, 136, 237, 37], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1342, + "sample": { + "_tag": "ByteArray", + "bytearray": "07f539" + }, + "cborHex": "4307f539", + "cborBytes": [67, 7, 245, 57], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1343, + "sample": { + "_tag": "ByteArray", + "bytearray": "86f84704933c61009e" + }, + "cborHex": "4986f84704933c61009e", + "cborBytes": [73, 134, 248, 71, 4, 147, 60, 97, 0, 158], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1344, + "sample": { + "_tag": "ByteArray", + "bytearray": "05fa" + }, + "cborHex": "4205fa", + "cborBytes": [66, 5, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1345, + "sample": { + "_tag": "ByteArray", + "bytearray": "4c4d20f544c2641454be84" + }, + "cborHex": "4b4c4d20f544c2641454be84", + "cborBytes": [75, 76, 77, 32, 245, 68, 194, 100, 20, 84, 190, 132], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1346, + "sample": { + "_tag": "ByteArray", + "bytearray": "e3af5b8c4a1c" + }, + "cborHex": "46e3af5b8c4a1c", + "cborBytes": [70, 227, 175, 91, 140, 74, 28], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1347, + "sample": { + "_tag": "ByteArray", + "bytearray": "071c" + }, + "cborHex": "42071c", + "cborBytes": [66, 7, 28], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1348, + "sample": { + "_tag": "ByteArray", + "bytearray": "0603670002" + }, + "cborHex": "450603670002", + "cborBytes": [69, 6, 3, 103, 0, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1349, + "sample": { + "_tag": "ByteArray", + "bytearray": "b871f5ff00ff0403f216c7" + }, + "cborHex": "4bb871f5ff00ff0403f216c7", + "cborBytes": [75, 184, 113, 245, 255, 0, 255, 4, 3, 242, 22, 199], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1350, + "sample": { + "_tag": "ByteArray", + "bytearray": "cf40c657c923063a" + }, + "cborHex": "48cf40c657c923063a", + "cborBytes": [72, 207, 64, 198, 87, 201, 35, 6, 58], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1351, + "sample": { + "_tag": "ByteArray", + "bytearray": "857a" + }, + "cborHex": "42857a", + "cborBytes": [66, 133, 122], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1352, + "sample": { + "_tag": "ByteArray", + "bytearray": "ac1e" + }, + "cborHex": "42ac1e", + "cborBytes": [66, 172, 30], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1353, + "sample": { + "_tag": "ByteArray", + "bytearray": "8d01" + }, + "cborHex": "428d01", + "cborBytes": [66, 141, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1354, + "sample": { + "_tag": "ByteArray", + "bytearray": "14e832b238" + }, + "cborHex": "4514e832b238", + "cborBytes": [69, 20, 232, 50, 178, 56], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1355, + "sample": { + "_tag": "ByteArray", + "bytearray": "a0091d73687c2c" + }, + "cborHex": "47a0091d73687c2c", + "cborBytes": [71, 160, 9, 29, 115, 104, 124, 44], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1356, + "sample": { + "_tag": "ByteArray", + "bytearray": "4803fb23" + }, + "cborHex": "444803fb23", + "cborBytes": [68, 72, 3, 251, 35], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1357, + "sample": { + "_tag": "ByteArray", + "bytearray": "0632ff029c02" + }, + "cborHex": "460632ff029c02", + "cborBytes": [70, 6, 50, 255, 2, 156, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1358, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9070203" + }, + "cborHex": "44f9070203", + "cborBytes": [68, 249, 7, 2, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1359, + "sample": { + "_tag": "ByteArray", + "bytearray": "052f007e" + }, + "cborHex": "44052f007e", + "cborBytes": [68, 5, 47, 0, 126], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1360, + "sample": { + "_tag": "ByteArray", + "bytearray": "05dd03476d16ab8a" + }, + "cborHex": "4805dd03476d16ab8a", + "cborBytes": [72, 5, 221, 3, 71, 109, 22, 171, 138], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1361, + "sample": { + "_tag": "ByteArray", + "bytearray": "e6809c8b0bee" + }, + "cborHex": "46e6809c8b0bee", + "cborBytes": [70, 230, 128, 156, 139, 11, 238], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1362, + "sample": { + "_tag": "ByteArray", + "bytearray": "6ed2" + }, + "cborHex": "426ed2", + "cborBytes": [66, 110, 210], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1363, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb6e010105fd0dccfdf34330" + }, + "cborHex": "4cfb6e010105fd0dccfdf34330", + "cborBytes": [76, 251, 110, 1, 1, 5, 253, 13, 204, 253, 243, 67, 48], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1364, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd050a" + }, + "cborHex": "43fd050a", + "cborBytes": [67, 253, 5, 10], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1365, + "sample": { + "_tag": "ByteArray", + "bytearray": "e5fafd" + }, + "cborHex": "43e5fafd", + "cborBytes": [67, 229, 250, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1366, + "sample": { + "_tag": "ByteArray", + "bytearray": "bd84477dee7987ac7657fe94" + }, + "cborHex": "4cbd84477dee7987ac7657fe94", + "cborBytes": [76, 189, 132, 71, 125, 238, 121, 135, 172, 118, 87, 254, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1367, + "sample": { + "_tag": "ByteArray", + "bytearray": "07d2" + }, + "cborHex": "4207d2", + "cborBytes": [66, 7, 210], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1368, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff072df67d2d6e" + }, + "cborHex": "47ff072df67d2d6e", + "cborBytes": [71, 255, 7, 45, 246, 125, 45, 110], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1369, + "sample": { + "_tag": "ByteArray", + "bytearray": "c758" + }, + "cborHex": "42c758", + "cborBytes": [66, 199, 88], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1370, + "sample": { + "_tag": "ByteArray", + "bytearray": "6c76ad9934e3a6aac9abef" + }, + "cborHex": "4b6c76ad9934e3a6aac9abef", + "cborBytes": [75, 108, 118, 173, 153, 52, 227, 166, 170, 201, 171, 239], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1371, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa28e0" + }, + "cborHex": "43fa28e0", + "cborBytes": [67, 250, 40, 224], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1372, + "sample": { + "_tag": "ByteArray", + "bytearray": "d560483b78698042b9" + }, + "cborHex": "49d560483b78698042b9", + "cborBytes": [73, 213, 96, 72, 59, 120, 105, 128, 66, 185], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1373, + "sample": { + "_tag": "ByteArray", + "bytearray": "8755fd" + }, + "cborHex": "438755fd", + "cborBytes": [67, 135, 85, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1374, + "sample": { + "_tag": "ByteArray", + "bytearray": "6f0660e418fb00af40c753" + }, + "cborHex": "4b6f0660e418fb00af40c753", + "cborBytes": [75, 111, 6, 96, 228, 24, 251, 0, 175, 64, 199, 83], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1375, + "sample": { + "_tag": "ByteArray", + "bytearray": "9f880fb82dc5ac8e4d" + }, + "cborHex": "499f880fb82dc5ac8e4d", + "cborBytes": [73, 159, 136, 15, 184, 45, 197, 172, 142, 77], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1376, + "sample": { + "_tag": "ByteArray", + "bytearray": "02c30705" + }, + "cborHex": "4402c30705", + "cborBytes": [68, 2, 195, 7, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1377, + "sample": { + "_tag": "ByteArray", + "bytearray": "2b70af0158ae1efca5" + }, + "cborHex": "492b70af0158ae1efca5", + "cborBytes": [73, 43, 112, 175, 1, 88, 174, 30, 252, 165], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1378, + "sample": { + "_tag": "ByteArray", + "bytearray": "52" + }, + "cborHex": "4152", + "cborBytes": [65, 82], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1379, + "sample": { + "_tag": "ByteArray", + "bytearray": "fffb07" + }, + "cborHex": "43fffb07", + "cborBytes": [67, 255, 251, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1380, + "sample": { + "_tag": "ByteArray", + "bytearray": "6af9" + }, + "cborHex": "426af9", + "cborBytes": [66, 106, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1381, + "sample": { + "_tag": "ByteArray", + "bytearray": "6574eafe62440a" + }, + "cborHex": "476574eafe62440a", + "cborBytes": [71, 101, 116, 234, 254, 98, 68, 10], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1382, + "sample": { + "_tag": "ByteArray", + "bytearray": "8fe10482" + }, + "cborHex": "448fe10482", + "cborBytes": [68, 143, 225, 4, 130], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1383, + "sample": { + "_tag": "ByteArray", + "bytearray": "4d" + }, + "cborHex": "414d", + "cborBytes": [65, 77], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1384, + "sample": { + "_tag": "ByteArray", + "bytearray": "3c311def6b06c4" + }, + "cborHex": "473c311def6b06c4", + "cborBytes": [71, 60, 49, 29, 239, 107, 6, 196], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1385, + "sample": { + "_tag": "ByteArray", + "bytearray": "50ef72e713" + }, + "cborHex": "4550ef72e713", + "cborBytes": [69, 80, 239, 114, 231, 19], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1386, + "sample": { + "_tag": "ByteArray", + "bytearray": "6d0b7fe43d4a14897a66" + }, + "cborHex": "4a6d0b7fe43d4a14897a66", + "cborBytes": [74, 109, 11, 127, 228, 61, 74, 20, 137, 122, 102], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1387, + "sample": { + "_tag": "ByteArray", + "bytearray": "06040548" + }, + "cborHex": "4406040548", + "cborBytes": [68, 6, 4, 5, 72], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1388, + "sample": { + "_tag": "ByteArray", + "bytearray": "0311" + }, + "cborHex": "420311", + "cborBytes": [66, 3, 17], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1389, + "sample": { + "_tag": "ByteArray", + "bytearray": "00a3fb0004047c02384f29fb" + }, + "cborHex": "4c00a3fb0004047c02384f29fb", + "cborBytes": [76, 0, 163, 251, 0, 4, 4, 124, 2, 56, 79, 41, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1390, + "sample": { + "_tag": "ByteArray", + "bytearray": "814846e95b84a40cde" + }, + "cborHex": "49814846e95b84a40cde", + "cborBytes": [73, 129, 72, 70, 233, 91, 132, 164, 12, 222], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1391, + "sample": { + "_tag": "ByteArray", + "bytearray": "4a5dfc47c86cdb" + }, + "cborHex": "474a5dfc47c86cdb", + "cborBytes": [71, 74, 93, 252, 71, 200, 108, 219], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1392, + "sample": { + "_tag": "ByteArray", + "bytearray": "747d50" + }, + "cborHex": "43747d50", + "cborBytes": [67, 116, 125, 80], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1393, + "sample": { + "_tag": "ByteArray", + "bytearray": "2e548605ff027842a217" + }, + "cborHex": "4a2e548605ff027842a217", + "cborBytes": [74, 46, 84, 134, 5, 255, 2, 120, 66, 162, 23], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1394, + "sample": { + "_tag": "ByteArray", + "bytearray": "9d895a" + }, + "cborHex": "439d895a", + "cborBytes": [67, 157, 137, 90], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1395, + "sample": { + "_tag": "ByteArray", + "bytearray": "59" + }, + "cborHex": "4159", + "cborBytes": [65, 89], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1396, + "sample": { + "_tag": "ByteArray", + "bytearray": "b1" + }, + "cborHex": "41b1", + "cborBytes": [65, 177], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1397, + "sample": { + "_tag": "ByteArray", + "bytearray": "aea5430813" + }, + "cborHex": "45aea5430813", + "cborBytes": [69, 174, 165, 67, 8, 19], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1398, + "sample": { + "_tag": "ByteArray", + "bytearray": "866f299cf6" + }, + "cborHex": "45866f299cf6", + "cborBytes": [69, 134, 111, 41, 156, 246], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1399, + "sample": { + "_tag": "ByteArray", + "bytearray": "8d585464" + }, + "cborHex": "448d585464", + "cborBytes": [68, 141, 88, 84, 100], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1400, + "sample": { + "_tag": "ByteArray", + "bytearray": "3902574a0d1430" + }, + "cborHex": "473902574a0d1430", + "cborBytes": [71, 57, 2, 87, 74, 13, 20, 48], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1401, + "sample": { + "_tag": "ByteArray", + "bytearray": "4a8f77b05b" + }, + "cborHex": "454a8f77b05b", + "cborBytes": [69, 74, 143, 119, 176, 91], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1402, + "sample": { + "_tag": "ByteArray", + "bytearray": "cb5e12b7deeac83d73b520" + }, + "cborHex": "4bcb5e12b7deeac83d73b520", + "cborBytes": [75, 203, 94, 18, 183, 222, 234, 200, 61, 115, 181, 32], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1403, + "sample": { + "_tag": "ByteArray", + "bytearray": "f80103a801060302f8f41806" + }, + "cborHex": "4cf80103a801060302f8f41806", + "cborBytes": [76, 248, 1, 3, 168, 1, 6, 3, 2, 248, 244, 24, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1404, + "sample": { + "_tag": "ByteArray", + "bytearray": "09010603d00481fd06f9" + }, + "cborHex": "4a09010603d00481fd06f9", + "cborBytes": [74, 9, 1, 6, 3, 208, 4, 129, 253, 6, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1405, + "sample": { + "_tag": "ByteArray", + "bytearray": "0605017e020204b74dfa" + }, + "cborHex": "4a0605017e020204b74dfa", + "cborBytes": [74, 6, 5, 1, 126, 2, 2, 4, 183, 77, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1406, + "sample": { + "_tag": "ByteArray", + "bytearray": "d101e7fb0663cbcb1e5207" + }, + "cborHex": "4bd101e7fb0663cbcb1e5207", + "cborBytes": [75, 209, 1, 231, 251, 6, 99, 203, 203, 30, 82, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1407, + "sample": { + "_tag": "ByteArray", + "bytearray": "02a200ce0006fafb0425c401" + }, + "cborHex": "4c02a200ce0006fafb0425c401", + "cborBytes": [76, 2, 162, 0, 206, 0, 6, 250, 251, 4, 37, 196, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1408, + "sample": { + "_tag": "ByteArray", + "bytearray": "894c" + }, + "cborHex": "42894c", + "cborBytes": [66, 137, 76], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1409, + "sample": { + "_tag": "ByteArray", + "bytearray": "356b026dfa06f8" + }, + "cborHex": "47356b026dfa06f8", + "cborBytes": [71, 53, 107, 2, 109, 250, 6, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1410, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9fb0064eafc" + }, + "cborHex": "46f9fb0064eafc", + "cborBytes": [70, 249, 251, 0, 100, 234, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1411, + "sample": { + "_tag": "ByteArray", + "bytearray": "6ce4" + }, + "cborHex": "426ce4", + "cborBytes": [66, 108, 228], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1412, + "sample": { + "_tag": "ByteArray", + "bytearray": "b2fe49" + }, + "cborHex": "43b2fe49", + "cborBytes": [67, 178, 254, 73], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1413, + "sample": { + "_tag": "ByteArray", + "bytearray": "e089046e0302" + }, + "cborHex": "46e089046e0302", + "cborBytes": [70, 224, 137, 4, 110, 3, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1414, + "sample": { + "_tag": "ByteArray", + "bytearray": "17" + }, + "cborHex": "4117", + "cborBytes": [65, 23], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1415, + "sample": { + "_tag": "ByteArray", + "bytearray": "f03ca389" + }, + "cborHex": "44f03ca389", + "cborBytes": [68, 240, 60, 163, 137], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1416, + "sample": { + "_tag": "ByteArray", + "bytearray": "5310c8fac96545e46a" + }, + "cborHex": "495310c8fac96545e46a", + "cborBytes": [73, 83, 16, 200, 250, 201, 101, 69, 228, 106], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1417, + "sample": { + "_tag": "ByteArray", + "bytearray": "47" + }, + "cborHex": "4147", + "cborBytes": [65, 71], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1418, + "sample": { + "_tag": "ByteArray", + "bytearray": "184c03" + }, + "cborHex": "43184c03", + "cborBytes": [67, 24, 76, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1419, + "sample": { + "_tag": "ByteArray", + "bytearray": "70e86e1c" + }, + "cborHex": "4470e86e1c", + "cborBytes": [68, 112, 232, 110, 28], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1420, + "sample": { + "_tag": "ByteArray", + "bytearray": "4ffc03" + }, + "cborHex": "434ffc03", + "cborBytes": [67, 79, 252, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1421, + "sample": { + "_tag": "ByteArray", + "bytearray": "74030597" + }, + "cborHex": "4474030597", + "cborBytes": [68, 116, 3, 5, 151], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1422, + "sample": { + "_tag": "ByteArray", + "bytearray": "ae6c8343" + }, + "cborHex": "44ae6c8343", + "cborBytes": [68, 174, 108, 131, 67], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1423, + "sample": { + "_tag": "ByteArray", + "bytearray": "03e8af9a182f9cd729" + }, + "cborHex": "4903e8af9a182f9cd729", + "cborBytes": [73, 3, 232, 175, 154, 24, 47, 156, 215, 41], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1424, + "sample": { + "_tag": "ByteArray", + "bytearray": "02056df2" + }, + "cborHex": "4402056df2", + "cborBytes": [68, 2, 5, 109, 242], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1425, + "sample": { + "_tag": "ByteArray", + "bytearray": "01f703" + }, + "cborHex": "4301f703", + "cborBytes": [67, 1, 247, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1426, + "sample": { + "_tag": "ByteArray", + "bytearray": "e76600" + }, + "cborHex": "43e76600", + "cborBytes": [67, 231, 102, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1427, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9c76547c7" + }, + "cborHex": "45f9c76547c7", + "cborBytes": [69, 249, 199, 101, 71, 199], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1428, + "sample": { + "_tag": "ByteArray", + "bytearray": "9383d2193f1e" + }, + "cborHex": "469383d2193f1e", + "cborBytes": [70, 147, 131, 210, 25, 63, 30], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1429, + "sample": { + "_tag": "ByteArray", + "bytearray": "40ab06" + }, + "cborHex": "4340ab06", + "cborBytes": [67, 64, 171, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1430, + "sample": { + "_tag": "ByteArray", + "bytearray": "58f54e8c9b0ea84081b1a69f" + }, + "cborHex": "4c58f54e8c9b0ea84081b1a69f", + "cborBytes": [76, 88, 245, 78, 140, 155, 14, 168, 64, 129, 177, 166, 159], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1431, + "sample": { + "_tag": "ByteArray", + "bytearray": "0bfc4a00" + }, + "cborHex": "440bfc4a00", + "cborBytes": [68, 11, 252, 74, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1432, + "sample": { + "_tag": "ByteArray", + "bytearray": "f98740" + }, + "cborHex": "43f98740", + "cborBytes": [67, 249, 135, 64], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1433, + "sample": { + "_tag": "ByteArray", + "bytearray": "c2060104" + }, + "cborHex": "44c2060104", + "cborBytes": [68, 194, 6, 1, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1434, + "sample": { + "_tag": "ByteArray", + "bytearray": "8099b925f621930e" + }, + "cborHex": "488099b925f621930e", + "cborBytes": [72, 128, 153, 185, 37, 246, 33, 147, 14], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1435, + "sample": { + "_tag": "ByteArray", + "bytearray": "03fc" + }, + "cborHex": "4203fc", + "cborBytes": [66, 3, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1436, + "sample": { + "_tag": "ByteArray", + "bytearray": "db97680c" + }, + "cborHex": "44db97680c", + "cborBytes": [68, 219, 151, 104, 12], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1437, + "sample": { + "_tag": "ByteArray", + "bytearray": "4d022a" + }, + "cborHex": "434d022a", + "cborBytes": [67, 77, 2, 42], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1438, + "sample": { + "_tag": "ByteArray", + "bytearray": "b9fa0f637bcf19df895e251f" + }, + "cborHex": "4cb9fa0f637bcf19df895e251f", + "cborBytes": [76, 185, 250, 15, 99, 123, 207, 25, 223, 137, 94, 37, 31], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1439, + "sample": { + "_tag": "ByteArray", + "bytearray": "527e05" + }, + "cborHex": "43527e05", + "cborBytes": [67, 82, 126, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1440, + "sample": { + "_tag": "ByteArray", + "bytearray": "04b518b9f9ec" + }, + "cborHex": "4604b518b9f9ec", + "cborBytes": [70, 4, 181, 24, 185, 249, 236], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1441, + "sample": { + "_tag": "ByteArray", + "bytearray": "cbf2" + }, + "cborHex": "42cbf2", + "cborBytes": [66, 203, 242], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1442, + "sample": { + "_tag": "ByteArray", + "bytearray": "45c2dd16dabf968d" + }, + "cborHex": "4845c2dd16dabf968d", + "cborBytes": [72, 69, 194, 221, 22, 218, 191, 150, 141], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1443, + "sample": { + "_tag": "ByteArray", + "bytearray": "d28d" + }, + "cborHex": "42d28d", + "cborBytes": [66, 210, 141], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1444, + "sample": { + "_tag": "ByteArray", + "bytearray": "091a0147d8f36c" + }, + "cborHex": "47091a0147d8f36c", + "cborBytes": [71, 9, 26, 1, 71, 216, 243, 108], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1445, + "sample": { + "_tag": "ByteArray", + "bytearray": "121701f9" + }, + "cborHex": "44121701f9", + "cborBytes": [68, 18, 23, 1, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1446, + "sample": { + "_tag": "ByteArray", + "bytearray": "fdff00" + }, + "cborHex": "43fdff00", + "cborBytes": [67, 253, 255, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1447, + "sample": { + "_tag": "ByteArray", + "bytearray": "8df8" + }, + "cborHex": "428df8", + "cborBytes": [66, 141, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1448, + "sample": { + "_tag": "ByteArray", + "bytearray": "db2735b93eeeae" + }, + "cborHex": "47db2735b93eeeae", + "cborBytes": [71, 219, 39, 53, 185, 62, 238, 174], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1449, + "sample": { + "_tag": "ByteArray", + "bytearray": "6315c4dded79" + }, + "cborHex": "466315c4dded79", + "cborBytes": [70, 99, 21, 196, 221, 237, 121], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1450, + "sample": { + "_tag": "ByteArray", + "bytearray": "464c8c39ee5cb1" + }, + "cborHex": "47464c8c39ee5cb1", + "cborBytes": [71, 70, 76, 140, 57, 238, 92, 177], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1451, + "sample": { + "_tag": "ByteArray", + "bytearray": "34e21e00" + }, + "cborHex": "4434e21e00", + "cborBytes": [68, 52, 226, 30, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1452, + "sample": { + "_tag": "ByteArray", + "bytearray": "39de2bfebd1e1bdd1e5b8766" + }, + "cborHex": "4c39de2bfebd1e1bdd1e5b8766", + "cborBytes": [76, 57, 222, 43, 254, 189, 30, 27, 221, 30, 91, 135, 102], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1453, + "sample": { + "_tag": "ByteArray", + "bytearray": "de03b00259f5a012fb" + }, + "cborHex": "49de03b00259f5a012fb", + "cborBytes": [73, 222, 3, 176, 2, 89, 245, 160, 18, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1454, + "sample": { + "_tag": "ByteArray", + "bytearray": "980b34c7229232e1" + }, + "cborHex": "48980b34c7229232e1", + "cborBytes": [72, 152, 11, 52, 199, 34, 146, 50, 225], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1455, + "sample": { + "_tag": "ByteArray", + "bytearray": "8df28b" + }, + "cborHex": "438df28b", + "cborBytes": [67, 141, 242, 139], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1456, + "sample": { + "_tag": "ByteArray", + "bytearray": "6f13deac9a7016" + }, + "cborHex": "476f13deac9a7016", + "cborBytes": [71, 111, 19, 222, 172, 154, 112, 22], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1457, + "sample": { + "_tag": "ByteArray", + "bytearray": "904c3eb8adf080" + }, + "cborHex": "47904c3eb8adf080", + "cborBytes": [71, 144, 76, 62, 184, 173, 240, 128], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1458, + "sample": { + "_tag": "ByteArray", + "bytearray": "65bd125f9c" + }, + "cborHex": "4565bd125f9c", + "cborBytes": [69, 101, 189, 18, 95, 156], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1459, + "sample": { + "_tag": "ByteArray", + "bytearray": "852134c63430dfe9" + }, + "cborHex": "48852134c63430dfe9", + "cborBytes": [72, 133, 33, 52, 198, 52, 48, 223, 233], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1460, + "sample": { + "_tag": "ByteArray", + "bytearray": "b0d3dd001639903ac4f8" + }, + "cborHex": "4ab0d3dd001639903ac4f8", + "cborBytes": [74, 176, 211, 221, 0, 22, 57, 144, 58, 196, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1461, + "sample": { + "_tag": "ByteArray", + "bytearray": "d0af6afe98367a759c55b30f" + }, + "cborHex": "4cd0af6afe98367a759c55b30f", + "cborBytes": [76, 208, 175, 106, 254, 152, 54, 122, 117, 156, 85, 179, 15], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1462, + "sample": { + "_tag": "ByteArray", + "bytearray": "39c6bd2db63c2ac2d2" + }, + "cborHex": "4939c6bd2db63c2ac2d2", + "cborBytes": [73, 57, 198, 189, 45, 182, 60, 42, 194, 210], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1463, + "sample": { + "_tag": "ByteArray", + "bytearray": "3aa82bea" + }, + "cborHex": "443aa82bea", + "cborBytes": [68, 58, 168, 43, 234], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1464, + "sample": { + "_tag": "ByteArray", + "bytearray": "00b9325ad69dbebfd1" + }, + "cborHex": "4900b9325ad69dbebfd1", + "cborBytes": [73, 0, 185, 50, 90, 214, 157, 190, 191, 209], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1465, + "sample": { + "_tag": "ByteArray", + "bytearray": "04fcbc" + }, + "cborHex": "4304fcbc", + "cborBytes": [67, 4, 252, 188], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1466, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9350300effbd4f81000" + }, + "cborHex": "4af9350300effbd4f81000", + "cborBytes": [74, 249, 53, 3, 0, 239, 251, 212, 248, 16, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1467, + "sample": { + "_tag": "ByteArray", + "bytearray": "02fa03f905fbef06f8" + }, + "cborHex": "4902fa03f905fbef06f8", + "cborBytes": [73, 2, 250, 3, 249, 5, 251, 239, 6, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1468, + "sample": { + "_tag": "ByteArray", + "bytearray": "0306" + }, + "cborHex": "420306", + "cborBytes": [66, 3, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1469, + "sample": { + "_tag": "ByteArray", + "bytearray": "af8efb6583" + }, + "cborHex": "45af8efb6583", + "cborBytes": [69, 175, 142, 251, 101, 131], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1470, + "sample": { + "_tag": "ByteArray", + "bytearray": "0200" + }, + "cborHex": "420200", + "cborBytes": [66, 2, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1471, + "sample": { + "_tag": "ByteArray", + "bytearray": "a4d16f" + }, + "cborHex": "43a4d16f", + "cborBytes": [67, 164, 209, 111], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1472, + "sample": { + "_tag": "ByteArray", + "bytearray": "0558" + }, + "cborHex": "420558", + "cborBytes": [66, 5, 88], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1473, + "sample": { + "_tag": "ByteArray", + "bytearray": "71900703" + }, + "cborHex": "4471900703", + "cborBytes": [68, 113, 144, 7, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1474, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb0401e506fa" + }, + "cborHex": "46fb0401e506fa", + "cborBytes": [70, 251, 4, 1, 229, 6, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1475, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8032ffc0006fb05" + }, + "cborHex": "48f8032ffc0006fb05", + "cborBytes": [72, 248, 3, 47, 252, 0, 6, 251, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1476, + "sample": { + "_tag": "ByteArray", + "bytearray": "0d8bc6ffc9" + }, + "cborHex": "450d8bc6ffc9", + "cborBytes": [69, 13, 139, 198, 255, 201], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1477, + "sample": { + "_tag": "ByteArray", + "bytearray": "09" + }, + "cborHex": "4109", + "cborBytes": [65, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1478, + "sample": { + "_tag": "ByteArray", + "bytearray": "c6542fce339b3d7479" + }, + "cborHex": "49c6542fce339b3d7479", + "cborBytes": [73, 198, 84, 47, 206, 51, 155, 61, 116, 121], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1479, + "sample": { + "_tag": "ByteArray", + "bytearray": "02fffb7aa105" + }, + "cborHex": "4602fffb7aa105", + "cborBytes": [70, 2, 255, 251, 122, 161, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1480, + "sample": { + "_tag": "ByteArray", + "bytearray": "4852" + }, + "cborHex": "424852", + "cborBytes": [66, 72, 82], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1481, + "sample": { + "_tag": "ByteArray", + "bytearray": "0204f8" + }, + "cborHex": "430204f8", + "cborBytes": [67, 2, 4, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1482, + "sample": { + "_tag": "ByteArray", + "bytearray": "f6d61c" + }, + "cborHex": "43f6d61c", + "cborBytes": [67, 246, 214, 28], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1483, + "sample": { + "_tag": "ByteArray", + "bytearray": "4f56b2f0d6b26a" + }, + "cborHex": "474f56b2f0d6b26a", + "cborBytes": [71, 79, 86, 178, 240, 214, 178, 106], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1484, + "sample": { + "_tag": "ByteArray", + "bytearray": "796d42fe6c5e2a5c" + }, + "cborHex": "48796d42fe6c5e2a5c", + "cborBytes": [72, 121, 109, 66, 254, 108, 94, 42, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1485, + "sample": { + "_tag": "ByteArray", + "bytearray": "e951c202fc26947d" + }, + "cborHex": "48e951c202fc26947d", + "cborBytes": [72, 233, 81, 194, 2, 252, 38, 148, 125], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1486, + "sample": { + "_tag": "ByteArray", + "bytearray": "066e" + }, + "cborHex": "42066e", + "cborBytes": [66, 6, 110], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1487, + "sample": { + "_tag": "ByteArray", + "bytearray": "bf1827d0d696" + }, + "cborHex": "46bf1827d0d696", + "cborBytes": [70, 191, 24, 39, 208, 214, 150], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1488, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8db" + }, + "cborHex": "42f8db", + "cborBytes": [66, 248, 219], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1489, + "sample": { + "_tag": "ByteArray", + "bytearray": "3301c51ed829d4" + }, + "cborHex": "473301c51ed829d4", + "cborBytes": [71, 51, 1, 197, 30, 216, 41, 212], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1490, + "sample": { + "_tag": "ByteArray", + "bytearray": "02046607" + }, + "cborHex": "4402046607", + "cborBytes": [68, 2, 4, 102, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1491, + "sample": { + "_tag": "ByteArray", + "bytearray": "3c51e6e52d4f" + }, + "cborHex": "463c51e6e52d4f", + "cborBytes": [70, 60, 81, 230, 229, 45, 79], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1492, + "sample": { + "_tag": "ByteArray", + "bytearray": "093d8b37c203bafc06c740" + }, + "cborHex": "4b093d8b37c203bafc06c740", + "cborBytes": [75, 9, 61, 139, 55, 194, 3, 186, 252, 6, 199, 64], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1493, + "sample": { + "_tag": "ByteArray", + "bytearray": "5b4e6ca4" + }, + "cborHex": "445b4e6ca4", + "cborBytes": [68, 91, 78, 108, 164], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1494, + "sample": { + "_tag": "ByteArray", + "bytearray": "abaef8872c05d400" + }, + "cborHex": "48abaef8872c05d400", + "cborBytes": [72, 171, 174, 248, 135, 44, 5, 212, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1495, + "sample": { + "_tag": "ByteArray", + "bytearray": "c9e7" + }, + "cborHex": "42c9e7", + "cborBytes": [66, 201, 231], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1496, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff0106010000d8" + }, + "cborHex": "47ff0106010000d8", + "cborBytes": [71, 255, 1, 6, 1, 0, 0, 216], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1497, + "sample": { + "_tag": "ByteArray", + "bytearray": "bc12fd" + }, + "cborHex": "43bc12fd", + "cborBytes": [67, 188, 18, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1498, + "sample": { + "_tag": "ByteArray", + "bytearray": "edf527" + }, + "cborHex": "43edf527", + "cborBytes": [67, 237, 245, 39], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1499, + "sample": { + "_tag": "ByteArray", + "bytearray": "02078e51" + }, + "cborHex": "4402078e51", + "cborBytes": [68, 2, 7, 142, 81], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1500, + "sample": { + "_tag": "ByteArray", + "bytearray": "85eb" + }, + "cborHex": "4285eb", + "cborBytes": [66, 133, 235], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1501, + "sample": { + "_tag": "ByteArray", + "bytearray": "8206030b" + }, + "cborHex": "448206030b", + "cborBytes": [68, 130, 6, 3, 11], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1502, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9a36415e77aac" + }, + "cborHex": "47f9a36415e77aac", + "cborBytes": [71, 249, 163, 100, 21, 231, 122, 172], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1503, + "sample": { + "_tag": "ByteArray", + "bytearray": "8f04" + }, + "cborHex": "428f04", + "cborBytes": [66, 143, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1504, + "sample": { + "_tag": "ByteArray", + "bytearray": "05fb019fd225f807f8fa06" + }, + "cborHex": "4b05fb019fd225f807f8fa06", + "cborBytes": [75, 5, 251, 1, 159, 210, 37, 248, 7, 248, 250, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1505, + "sample": { + "_tag": "ByteArray", + "bytearray": "40fca40707ba50afeb859e91" + }, + "cborHex": "4c40fca40707ba50afeb859e91", + "cborBytes": [76, 64, 252, 164, 7, 7, 186, 80, 175, 235, 133, 158, 145], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1506, + "sample": { + "_tag": "ByteArray", + "bytearray": "9557" + }, + "cborHex": "429557", + "cborBytes": [66, 149, 87], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1507, + "sample": { + "_tag": "ByteArray", + "bytearray": "d98699951117" + }, + "cborHex": "46d98699951117", + "cborBytes": [70, 217, 134, 153, 149, 17, 23], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1508, + "sample": { + "_tag": "ByteArray", + "bytearray": "0600d6053bf801" + }, + "cborHex": "470600d6053bf801", + "cborBytes": [71, 6, 0, 214, 5, 59, 248, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1509, + "sample": { + "_tag": "ByteArray", + "bytearray": "06fff9" + }, + "cborHex": "4306fff9", + "cborBytes": [67, 6, 255, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1510, + "sample": { + "_tag": "ByteArray", + "bytearray": "3bfc03545eb2f848" + }, + "cborHex": "483bfc03545eb2f848", + "cborBytes": [72, 59, 252, 3, 84, 94, 178, 248, 72], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1511, + "sample": { + "_tag": "ByteArray", + "bytearray": "0592" + }, + "cborHex": "420592", + "cborBytes": [66, 5, 146], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1512, + "sample": { + "_tag": "ByteArray", + "bytearray": "9a630b648b779e1a722ca6" + }, + "cborHex": "4b9a630b648b779e1a722ca6", + "cborBytes": [75, 154, 99, 11, 100, 139, 119, 158, 26, 114, 44, 166], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1513, + "sample": { + "_tag": "ByteArray", + "bytearray": "1c85bb9fcd" + }, + "cborHex": "451c85bb9fcd", + "cborBytes": [69, 28, 133, 187, 159, 205], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1514, + "sample": { + "_tag": "ByteArray", + "bytearray": "0c230760e469c44506" + }, + "cborHex": "490c230760e469c44506", + "cborBytes": [73, 12, 35, 7, 96, 228, 105, 196, 69, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1515, + "sample": { + "_tag": "ByteArray", + "bytearray": "dbc8da7edcceb9d3778ef7f6" + }, + "cborHex": "4cdbc8da7edcceb9d3778ef7f6", + "cborBytes": [76, 219, 200, 218, 126, 220, 206, 185, 211, 119, 142, 247, 246], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1516, + "sample": { + "_tag": "ByteArray", + "bytearray": "c2027000f90700fc" + }, + "cborHex": "48c2027000f90700fc", + "cborBytes": [72, 194, 2, 112, 0, 249, 7, 0, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1517, + "sample": { + "_tag": "ByteArray", + "bytearray": "5a2c6c9231ea" + }, + "cborHex": "465a2c6c9231ea", + "cborBytes": [70, 90, 44, 108, 146, 49, 234], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1518, + "sample": { + "_tag": "ByteArray", + "bytearray": "72f65d9c73cc9bd28d9733" + }, + "cborHex": "4b72f65d9c73cc9bd28d9733", + "cborBytes": [75, 114, 246, 93, 156, 115, 204, 155, 210, 141, 151, 51], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1519, + "sample": { + "_tag": "ByteArray", + "bytearray": "740e" + }, + "cborHex": "42740e", + "cborBytes": [66, 116, 14], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1520, + "sample": { + "_tag": "ByteArray", + "bytearray": "7580" + }, + "cborHex": "427580", + "cborBytes": [66, 117, 128], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1521, + "sample": { + "_tag": "ByteArray", + "bytearray": "c990f32adaf2744e" + }, + "cborHex": "48c990f32adaf2744e", + "cborBytes": [72, 201, 144, 243, 42, 218, 242, 116, 78], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1522, + "sample": { + "_tag": "ByteArray", + "bytearray": "02ea0b00" + }, + "cborHex": "4402ea0b00", + "cborBytes": [68, 2, 234, 11, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1523, + "sample": { + "_tag": "ByteArray", + "bytearray": "b13c6fe3636785" + }, + "cborHex": "47b13c6fe3636785", + "cborBytes": [71, 177, 60, 111, 227, 99, 103, 133], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1524, + "sample": { + "_tag": "ByteArray", + "bytearray": "c904fc02" + }, + "cborHex": "44c904fc02", + "cborBytes": [68, 201, 4, 252, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1525, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9e2" + }, + "cborHex": "42f9e2", + "cborBytes": [66, 249, 226], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1526, + "sample": { + "_tag": "ByteArray", + "bytearray": "858a0058e1" + }, + "cborHex": "45858a0058e1", + "cborBytes": [69, 133, 138, 0, 88, 225], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1527, + "sample": { + "_tag": "ByteArray", + "bytearray": "02feab" + }, + "cborHex": "4302feab", + "cborBytes": [67, 2, 254, 171], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1528, + "sample": { + "_tag": "ByteArray", + "bytearray": "63fe03022bdbfd21ab0412fd" + }, + "cborHex": "4c63fe03022bdbfd21ab0412fd", + "cborBytes": [76, 99, 254, 3, 2, 43, 219, 253, 33, 171, 4, 18, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1529, + "sample": { + "_tag": "ByteArray", + "bytearray": "02ce4e" + }, + "cborHex": "4302ce4e", + "cborBytes": [67, 2, 206, 78], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1530, + "sample": { + "_tag": "ByteArray", + "bytearray": "00fff8fd65" + }, + "cborHex": "4500fff8fd65", + "cborBytes": [69, 0, 255, 248, 253, 101], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1531, + "sample": { + "_tag": "ByteArray", + "bytearray": "05902e" + }, + "cborHex": "4305902e", + "cborBytes": [67, 5, 144, 46], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1532, + "sample": { + "_tag": "ByteArray", + "bytearray": "0463" + }, + "cborHex": "420463", + "cborBytes": [66, 4, 99], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1533, + "sample": { + "_tag": "ByteArray", + "bytearray": "17aff6c9891eb4901894d4" + }, + "cborHex": "4b17aff6c9891eb4901894d4", + "cborBytes": [75, 23, 175, 246, 201, 137, 30, 180, 144, 24, 148, 212], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1534, + "sample": { + "_tag": "ByteArray", + "bytearray": "50fc74" + }, + "cborHex": "4350fc74", + "cborBytes": [67, 80, 252, 116], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1535, + "sample": { + "_tag": "ByteArray", + "bytearray": "4f" + }, + "cborHex": "414f", + "cborBytes": [65, 79], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1536, + "sample": { + "_tag": "ByteArray", + "bytearray": "df75" + }, + "cborHex": "42df75", + "cborBytes": [66, 223, 117], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1537, + "sample": { + "_tag": "ByteArray", + "bytearray": "e7c8c5f26b56274de9161a" + }, + "cborHex": "4be7c8c5f26b56274de9161a", + "cborBytes": [75, 231, 200, 197, 242, 107, 86, 39, 77, 233, 22, 26], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1538, + "sample": { + "_tag": "ByteArray", + "bytearray": "c474b0" + }, + "cborHex": "43c474b0", + "cborBytes": [67, 196, 116, 176], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1539, + "sample": { + "_tag": "ByteArray", + "bytearray": "de2d056c9b05423d5795" + }, + "cborHex": "4ade2d056c9b05423d5795", + "cborBytes": [74, 222, 45, 5, 108, 155, 5, 66, 61, 87, 149], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1540, + "sample": { + "_tag": "ByteArray", + "bytearray": "7ac1d74e1f" + }, + "cborHex": "457ac1d74e1f", + "cborBytes": [69, 122, 193, 215, 78, 31], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1541, + "sample": { + "_tag": "ByteArray", + "bytearray": "9b00e04444fd" + }, + "cborHex": "469b00e04444fd", + "cborBytes": [70, 155, 0, 224, 68, 68, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1542, + "sample": { + "_tag": "ByteArray", + "bytearray": "6b" + }, + "cborHex": "416b", + "cborBytes": [65, 107], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1543, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8fe" + }, + "cborHex": "42f8fe", + "cborBytes": [66, 248, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1544, + "sample": { + "_tag": "ByteArray", + "bytearray": "7eb182c1fbb0e9be3700c580" + }, + "cborHex": "4c7eb182c1fbb0e9be3700c580", + "cborBytes": [76, 126, 177, 130, 193, 251, 176, 233, 190, 55, 0, 197, 128], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1545, + "sample": { + "_tag": "ByteArray", + "bytearray": "c6d78dd740" + }, + "cborHex": "45c6d78dd740", + "cborBytes": [69, 198, 215, 141, 215, 64], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1546, + "sample": { + "_tag": "ByteArray", + "bytearray": "000223c8" + }, + "cborHex": "44000223c8", + "cborBytes": [68, 0, 2, 35, 200], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1547, + "sample": { + "_tag": "ByteArray", + "bytearray": "58ef78" + }, + "cborHex": "4358ef78", + "cborBytes": [67, 88, 239, 120], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1548, + "sample": { + "_tag": "ByteArray", + "bytearray": "ef02" + }, + "cborHex": "42ef02", + "cborBytes": [66, 239, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1549, + "sample": { + "_tag": "ByteArray", + "bytearray": "020703ce01048bfbff" + }, + "cborHex": "49020703ce01048bfbff", + "cborBytes": [73, 2, 7, 3, 206, 1, 4, 139, 251, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1550, + "sample": { + "_tag": "ByteArray", + "bytearray": "f712743c" + }, + "cborHex": "44f712743c", + "cborBytes": [68, 247, 18, 116, 60], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1551, + "sample": { + "_tag": "ByteArray", + "bytearray": "8e07" + }, + "cborHex": "428e07", + "cborBytes": [66, 142, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1552, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa98" + }, + "cborHex": "42fa98", + "cborBytes": [66, 250, 152], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1553, + "sample": { + "_tag": "ByteArray", + "bytearray": "f14db55ae7280e3c24" + }, + "cborHex": "49f14db55ae7280e3c24", + "cborBytes": [73, 241, 77, 181, 90, 231, 40, 14, 60, 36], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1554, + "sample": { + "_tag": "ByteArray", + "bytearray": "8617375b657e9f9b0731e2" + }, + "cborHex": "4b8617375b657e9f9b0731e2", + "cborBytes": [75, 134, 23, 55, 91, 101, 126, 159, 155, 7, 49, 226], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1555, + "sample": { + "_tag": "ByteArray", + "bytearray": "d6882add2f67b21b986fed" + }, + "cborHex": "4bd6882add2f67b21b986fed", + "cborBytes": [75, 214, 136, 42, 221, 47, 103, 178, 27, 152, 111, 237], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1556, + "sample": { + "_tag": "ByteArray", + "bytearray": "d06ece0fddc7044d31f6ad" + }, + "cborHex": "4bd06ece0fddc7044d31f6ad", + "cborBytes": [75, 208, 110, 206, 15, 221, 199, 4, 77, 49, 246, 173], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1557, + "sample": { + "_tag": "ByteArray", + "bytearray": "f0069501e707" + }, + "cborHex": "46f0069501e707", + "cborBytes": [70, 240, 6, 149, 1, 231, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1558, + "sample": { + "_tag": "ByteArray", + "bytearray": "2b743814366ee2a8" + }, + "cborHex": "482b743814366ee2a8", + "cborBytes": [72, 43, 116, 56, 20, 54, 110, 226, 168], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1559, + "sample": { + "_tag": "ByteArray", + "bytearray": "341bb597ba" + }, + "cborHex": "45341bb597ba", + "cborBytes": [69, 52, 27, 181, 151, 186], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1560, + "sample": { + "_tag": "ByteArray", + "bytearray": "3d360c4a6b8bdd" + }, + "cborHex": "473d360c4a6b8bdd", + "cborBytes": [71, 61, 54, 12, 74, 107, 139, 221], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1561, + "sample": { + "_tag": "ByteArray", + "bytearray": "a67afdf806a4077605948b04" + }, + "cborHex": "4ca67afdf806a4077605948b04", + "cborBytes": [76, 166, 122, 253, 248, 6, 164, 7, 118, 5, 148, 139, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1562, + "sample": { + "_tag": "ByteArray", + "bytearray": "4f71cd3bf71d2f81e449" + }, + "cborHex": "4a4f71cd3bf71d2f81e449", + "cborBytes": [74, 79, 113, 205, 59, 247, 29, 47, 129, 228, 73], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1563, + "sample": { + "_tag": "ByteArray", + "bytearray": "3406aec9" + }, + "cborHex": "443406aec9", + "cborBytes": [68, 52, 6, 174, 201], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1564, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa890770" + }, + "cborHex": "44fa890770", + "cborBytes": [68, 250, 137, 7, 112], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1565, + "sample": { + "_tag": "ByteArray", + "bytearray": "3105eb" + }, + "cborHex": "433105eb", + "cborBytes": [67, 49, 5, 235], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1566, + "sample": { + "_tag": "ByteArray", + "bytearray": "3507bd3a48659e" + }, + "cborHex": "473507bd3a48659e", + "cborBytes": [71, 53, 7, 189, 58, 72, 101, 158], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1567, + "sample": { + "_tag": "ByteArray", + "bytearray": "1c337c29e62d93e6179154" + }, + "cborHex": "4b1c337c29e62d93e6179154", + "cborBytes": [75, 28, 51, 124, 41, 230, 45, 147, 230, 23, 145, 84], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1568, + "sample": { + "_tag": "ByteArray", + "bytearray": "24" + }, + "cborHex": "4124", + "cborBytes": [65, 36], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1569, + "sample": { + "_tag": "ByteArray", + "bytearray": "54b73e5db905d0" + }, + "cborHex": "4754b73e5db905d0", + "cborBytes": [71, 84, 183, 62, 93, 185, 5, 208], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1570, + "sample": { + "_tag": "ByteArray", + "bytearray": "1b6d73faa5fb23bc" + }, + "cborHex": "481b6d73faa5fb23bc", + "cborBytes": [72, 27, 109, 115, 250, 165, 251, 35, 188], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1571, + "sample": { + "_tag": "ByteArray", + "bytearray": "97635b0f99c9c36af02a42" + }, + "cborHex": "4b97635b0f99c9c36af02a42", + "cborBytes": [75, 151, 99, 91, 15, 153, 201, 195, 106, 240, 42, 66], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1572, + "sample": { + "_tag": "ByteArray", + "bytearray": "026903" + }, + "cborHex": "43026903", + "cborBytes": [67, 2, 105, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1573, + "sample": { + "_tag": "ByteArray", + "bytearray": "b6fd1b" + }, + "cborHex": "43b6fd1b", + "cborBytes": [67, 182, 253, 27], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1574, + "sample": { + "_tag": "ByteArray", + "bytearray": "02b901bc" + }, + "cborHex": "4402b901bc", + "cborBytes": [68, 2, 185, 1, 188], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1575, + "sample": { + "_tag": "ByteArray", + "bytearray": "d7" + }, + "cborHex": "41d7", + "cborBytes": [65, 215], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1576, + "sample": { + "_tag": "ByteArray", + "bytearray": "9403" + }, + "cborHex": "429403", + "cborBytes": [66, 148, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1577, + "sample": { + "_tag": "ByteArray", + "bytearray": "67df6b386d0207305d" + }, + "cborHex": "4967df6b386d0207305d", + "cborBytes": [73, 103, 223, 107, 56, 109, 2, 7, 48, 93], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1578, + "sample": { + "_tag": "ByteArray", + "bytearray": "060604efb4adeebfbf" + }, + "cborHex": "49060604efb4adeebfbf", + "cborBytes": [73, 6, 6, 4, 239, 180, 173, 238, 191, 191], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1579, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9fb982e" + }, + "cborHex": "44f9fb982e", + "cborBytes": [68, 249, 251, 152, 46], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1580, + "sample": { + "_tag": "ByteArray", + "bytearray": "40c7b1baac" + }, + "cborHex": "4540c7b1baac", + "cborBytes": [69, 64, 199, 177, 186, 172], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1581, + "sample": { + "_tag": "ByteArray", + "bytearray": "05fb9a7cf83306fb4c9d00" + }, + "cborHex": "4b05fb9a7cf83306fb4c9d00", + "cborBytes": [75, 5, 251, 154, 124, 248, 51, 6, 251, 76, 157, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1582, + "sample": { + "_tag": "ByteArray", + "bytearray": "d921ff5b0c546b591b1c12" + }, + "cborHex": "4bd921ff5b0c546b591b1c12", + "cborBytes": [75, 217, 33, 255, 91, 12, 84, 107, 89, 27, 28, 18], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1583, + "sample": { + "_tag": "ByteArray", + "bytearray": "b7e8" + }, + "cborHex": "42b7e8", + "cborBytes": [66, 183, 232], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1584, + "sample": { + "_tag": "ByteArray", + "bytearray": "29cf0cf2aa08ba7971af" + }, + "cborHex": "4a29cf0cf2aa08ba7971af", + "cborBytes": [74, 41, 207, 12, 242, 170, 8, 186, 121, 113, 175], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1585, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa4a03fd" + }, + "cborHex": "44fa4a03fd", + "cborBytes": [68, 250, 74, 3, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1586, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc05c0f905051174b31d02" + }, + "cborHex": "4bfc05c0f905051174b31d02", + "cborBytes": [75, 252, 5, 192, 249, 5, 5, 17, 116, 179, 29, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1587, + "sample": { + "_tag": "ByteArray", + "bytearray": "863cddd08f8c5b" + }, + "cborHex": "47863cddd08f8c5b", + "cborBytes": [71, 134, 60, 221, 208, 143, 140, 91], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1588, + "sample": { + "_tag": "ByteArray", + "bytearray": "91" + }, + "cborHex": "4191", + "cborBytes": [65, 145], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1589, + "sample": { + "_tag": "ByteArray", + "bytearray": "0e" + }, + "cborHex": "410e", + "cborBytes": [65, 14], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1590, + "sample": { + "_tag": "ByteArray", + "bytearray": "8386c06df60455" + }, + "cborHex": "478386c06df60455", + "cborBytes": [71, 131, 134, 192, 109, 246, 4, 85], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1591, + "sample": { + "_tag": "ByteArray", + "bytearray": "6bf9" + }, + "cborHex": "426bf9", + "cborBytes": [66, 107, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1592, + "sample": { + "_tag": "ByteArray", + "bytearray": "01fbb2" + }, + "cborHex": "4301fbb2", + "cborBytes": [67, 1, 251, 178], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1593, + "sample": { + "_tag": "ByteArray", + "bytearray": "b0816d7e2d6b352d" + }, + "cborHex": "48b0816d7e2d6b352d", + "cborBytes": [72, 176, 129, 109, 126, 45, 107, 53, 45], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1594, + "sample": { + "_tag": "ByteArray", + "bytearray": "a1e5c5bc" + }, + "cborHex": "44a1e5c5bc", + "cborBytes": [68, 161, 229, 197, 188], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1595, + "sample": { + "_tag": "ByteArray", + "bytearray": "07049db20b430701" + }, + "cborHex": "4807049db20b430701", + "cborBytes": [72, 7, 4, 157, 178, 11, 67, 7, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1596, + "sample": { + "_tag": "ByteArray", + "bytearray": "75544b" + }, + "cborHex": "4375544b", + "cborBytes": [67, 117, 84, 75], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1597, + "sample": { + "_tag": "ByteArray", + "bytearray": "7d0f93cc" + }, + "cborHex": "447d0f93cc", + "cborBytes": [68, 125, 15, 147, 204], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1598, + "sample": { + "_tag": "ByteArray", + "bytearray": "219e9595009eaa2ebc" + }, + "cborHex": "49219e9595009eaa2ebc", + "cborBytes": [73, 33, 158, 149, 149, 0, 158, 170, 46, 188], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1599, + "sample": { + "_tag": "ByteArray", + "bytearray": "cb275ac25b311f6fe35c92" + }, + "cborHex": "4bcb275ac25b311f6fe35c92", + "cborBytes": [75, 203, 39, 90, 194, 91, 49, 31, 111, 227, 92, 146], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1600, + "sample": { + "_tag": "ByteArray", + "bytearray": "055a06459505b6" + }, + "cborHex": "47055a06459505b6", + "cborBytes": [71, 5, 90, 6, 69, 149, 5, 182], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1601, + "sample": { + "_tag": "ByteArray", + "bytearray": "aefc4180d6c78162" + }, + "cborHex": "48aefc4180d6c78162", + "cborBytes": [72, 174, 252, 65, 128, 214, 199, 129, 98], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1602, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb0690a46c6edf" + }, + "cborHex": "47fb0690a46c6edf", + "cborBytes": [71, 251, 6, 144, 164, 108, 110, 223], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1603, + "sample": { + "_tag": "ByteArray", + "bytearray": "7793e2499a730aa2" + }, + "cborHex": "487793e2499a730aa2", + "cborBytes": [72, 119, 147, 226, 73, 154, 115, 10, 162], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1604, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa07026407c2bd3e" + }, + "cborHex": "48fa07026407c2bd3e", + "cborBytes": [72, 250, 7, 2, 100, 7, 194, 189, 62], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1605, + "sample": { + "_tag": "ByteArray", + "bytearray": "7f664c8d01" + }, + "cborHex": "457f664c8d01", + "cborBytes": [69, 127, 102, 76, 141, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1606, + "sample": { + "_tag": "ByteArray", + "bytearray": "44fda0f9ff" + }, + "cborHex": "4544fda0f9ff", + "cborBytes": [69, 68, 253, 160, 249, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1607, + "sample": { + "_tag": "ByteArray", + "bytearray": "8860731ba7d85752" + }, + "cborHex": "488860731ba7d85752", + "cborBytes": [72, 136, 96, 115, 27, 167, 216, 87, 82], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1608, + "sample": { + "_tag": "ByteArray", + "bytearray": "05fdf8f7" + }, + "cborHex": "4405fdf8f7", + "cborBytes": [68, 5, 253, 248, 247], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1609, + "sample": { + "_tag": "ByteArray", + "bytearray": "130b666667133d9db1053d3b" + }, + "cborHex": "4c130b666667133d9db1053d3b", + "cborBytes": [76, 19, 11, 102, 102, 103, 19, 61, 157, 177, 5, 61, 59], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1610, + "sample": { + "_tag": "ByteArray", + "bytearray": "b3d774aa39a87ca97808d1" + }, + "cborHex": "4bb3d774aa39a87ca97808d1", + "cborBytes": [75, 179, 215, 116, 170, 57, 168, 124, 169, 120, 8, 209], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1611, + "sample": { + "_tag": "ByteArray", + "bytearray": "72b68a2af3d52de22f05" + }, + "cborHex": "4a72b68a2af3d52de22f05", + "cborBytes": [74, 114, 182, 138, 42, 243, 213, 45, 226, 47, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1612, + "sample": { + "_tag": "ByteArray", + "bytearray": "03eecd07" + }, + "cborHex": "4403eecd07", + "cborBytes": [68, 3, 238, 205, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1613, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc97fc032d0731" + }, + "cborHex": "47fc97fc032d0731", + "cborBytes": [71, 252, 151, 252, 3, 45, 7, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1614, + "sample": { + "_tag": "ByteArray", + "bytearray": "70d88a95a5d6" + }, + "cborHex": "4670d88a95a5d6", + "cborBytes": [70, 112, 216, 138, 149, 165, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1615, + "sample": { + "_tag": "ByteArray", + "bytearray": "4d07f902" + }, + "cborHex": "444d07f902", + "cborBytes": [68, 77, 7, 249, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1616, + "sample": { + "_tag": "ByteArray", + "bytearray": "71a922dcb931a6" + }, + "cborHex": "4771a922dcb931a6", + "cborBytes": [71, 113, 169, 34, 220, 185, 49, 166], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1617, + "sample": { + "_tag": "ByteArray", + "bytearray": "01fc06" + }, + "cborHex": "4301fc06", + "cborBytes": [67, 1, 252, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1618, + "sample": { + "_tag": "ByteArray", + "bytearray": "030201" + }, + "cborHex": "43030201", + "cborBytes": [67, 3, 2, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1619, + "sample": { + "_tag": "ByteArray", + "bytearray": "0103" + }, + "cborHex": "420103", + "cborBytes": [66, 1, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1620, + "sample": { + "_tag": "ByteArray", + "bytearray": "16b1c836980438345d0244fc" + }, + "cborHex": "4c16b1c836980438345d0244fc", + "cborBytes": [76, 22, 177, 200, 54, 152, 4, 56, 52, 93, 2, 68, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1621, + "sample": { + "_tag": "ByteArray", + "bytearray": "f807bc" + }, + "cborHex": "43f807bc", + "cborBytes": [67, 248, 7, 188], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1622, + "sample": { + "_tag": "ByteArray", + "bytearray": "006f06f8010304f2d7" + }, + "cborHex": "49006f06f8010304f2d7", + "cborBytes": [73, 0, 111, 6, 248, 1, 3, 4, 242, 215], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1623, + "sample": { + "_tag": "ByteArray", + "bytearray": "81" + }, + "cborHex": "4181", + "cborBytes": [65, 129], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1624, + "sample": { + "_tag": "ByteArray", + "bytearray": "01f96b5e03" + }, + "cborHex": "4501f96b5e03", + "cborBytes": [69, 1, 249, 107, 94, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1625, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcc2" + }, + "cborHex": "42fcc2", + "cborBytes": [66, 252, 194], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1626, + "sample": { + "_tag": "ByteArray", + "bytearray": "cd05be22" + }, + "cborHex": "44cd05be22", + "cborBytes": [68, 205, 5, 190, 34], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1627, + "sample": { + "_tag": "ByteArray", + "bytearray": "389271810488e887f9" + }, + "cborHex": "49389271810488e887f9", + "cborBytes": [73, 56, 146, 113, 129, 4, 136, 232, 135, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1628, + "sample": { + "_tag": "ByteArray", + "bytearray": "ba119e8d1fe6af22b3ee" + }, + "cborHex": "4aba119e8d1fe6af22b3ee", + "cborBytes": [74, 186, 17, 158, 141, 31, 230, 175, 34, 179, 238], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1629, + "sample": { + "_tag": "ByteArray", + "bytearray": "1fa4841a6d30" + }, + "cborHex": "461fa4841a6d30", + "cborBytes": [70, 31, 164, 132, 26, 109, 48], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1630, + "sample": { + "_tag": "ByteArray", + "bytearray": "7dbce34444b3" + }, + "cborHex": "467dbce34444b3", + "cborBytes": [70, 125, 188, 227, 68, 68, 179], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1631, + "sample": { + "_tag": "ByteArray", + "bytearray": "b18af29f59" + }, + "cborHex": "45b18af29f59", + "cborBytes": [69, 177, 138, 242, 159, 89], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1632, + "sample": { + "_tag": "ByteArray", + "bytearray": "1a702645b03a" + }, + "cborHex": "461a702645b03a", + "cborBytes": [70, 26, 112, 38, 69, 176, 58], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1633, + "sample": { + "_tag": "ByteArray", + "bytearray": "99b7c98c04580390afb0538c" + }, + "cborHex": "4c99b7c98c04580390afb0538c", + "cborBytes": [76, 153, 183, 201, 140, 4, 88, 3, 144, 175, 176, 83, 140], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1634, + "sample": { + "_tag": "ByteArray", + "bytearray": "b59eddb666a67de88613b3e1" + }, + "cborHex": "4cb59eddb666a67de88613b3e1", + "cborBytes": [76, 181, 158, 221, 182, 102, 166, 125, 232, 134, 19, 179, 225], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1635, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa0701b503" + }, + "cborHex": "45fa0701b503", + "cborBytes": [69, 250, 7, 1, 181, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1636, + "sample": { + "_tag": "ByteArray", + "bytearray": "93774bc42474" + }, + "cborHex": "4693774bc42474", + "cborBytes": [70, 147, 119, 75, 196, 36, 116], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1637, + "sample": { + "_tag": "ByteArray", + "bytearray": "aa524c15" + }, + "cborHex": "44aa524c15", + "cborBytes": [68, 170, 82, 76, 21], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1638, + "sample": { + "_tag": "ByteArray", + "bytearray": "314a965537e84c07" + }, + "cborHex": "48314a965537e84c07", + "cborBytes": [72, 49, 74, 150, 85, 55, 232, 76, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1639, + "sample": { + "_tag": "ByteArray", + "bytearray": "92" + }, + "cborHex": "4192", + "cborBytes": [65, 146], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1640, + "sample": { + "_tag": "ByteArray", + "bytearray": "2d62ea39be3982" + }, + "cborHex": "472d62ea39be3982", + "cborBytes": [71, 45, 98, 234, 57, 190, 57, 130], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1641, + "sample": { + "_tag": "ByteArray", + "bytearray": "0106fb" + }, + "cborHex": "430106fb", + "cborBytes": [67, 1, 6, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1642, + "sample": { + "_tag": "ByteArray", + "bytearray": "0203" + }, + "cborHex": "420203", + "cborBytes": [66, 2, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1643, + "sample": { + "_tag": "ByteArray", + "bytearray": "0afb8640ffff16a901" + }, + "cborHex": "490afb8640ffff16a901", + "cborBytes": [73, 10, 251, 134, 64, 255, 255, 22, 169, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1644, + "sample": { + "_tag": "ByteArray", + "bytearray": "703d7c" + }, + "cborHex": "43703d7c", + "cborBytes": [67, 112, 61, 124], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1645, + "sample": { + "_tag": "ByteArray", + "bytearray": "00060102ef" + }, + "cborHex": "4500060102ef", + "cborBytes": [69, 0, 6, 1, 2, 239], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1646, + "sample": { + "_tag": "ByteArray", + "bytearray": "dd0712c1e75e06" + }, + "cborHex": "47dd0712c1e75e06", + "cborBytes": [71, 221, 7, 18, 193, 231, 94, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1647, + "sample": { + "_tag": "ByteArray", + "bytearray": "5b660300" + }, + "cborHex": "445b660300", + "cborBytes": [68, 91, 102, 3, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1648, + "sample": { + "_tag": "ByteArray", + "bytearray": "f1bd66e4ce0f3ca1" + }, + "cborHex": "48f1bd66e4ce0f3ca1", + "cborBytes": [72, 241, 189, 102, 228, 206, 15, 60, 161], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1649, + "sample": { + "_tag": "ByteArray", + "bytearray": "897207faf94f000404b9fc" + }, + "cborHex": "4b897207faf94f000404b9fc", + "cborBytes": [75, 137, 114, 7, 250, 249, 79, 0, 4, 4, 185, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1650, + "sample": { + "_tag": "ByteArray", + "bytearray": "75d281" + }, + "cborHex": "4375d281", + "cborBytes": [67, 117, 210, 129], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1651, + "sample": { + "_tag": "ByteArray", + "bytearray": "02fd" + }, + "cborHex": "4202fd", + "cborBytes": [66, 2, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1652, + "sample": { + "_tag": "ByteArray", + "bytearray": "c9a453" + }, + "cborHex": "43c9a453", + "cborBytes": [67, 201, 164, 83], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1653, + "sample": { + "_tag": "ByteArray", + "bytearray": "32" + }, + "cborHex": "4132", + "cborBytes": [65, 50], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1654, + "sample": { + "_tag": "ByteArray", + "bytearray": "08be9cb079ca9031543e62" + }, + "cborHex": "4b08be9cb079ca9031543e62", + "cborBytes": [75, 8, 190, 156, 176, 121, 202, 144, 49, 84, 62, 98], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1655, + "sample": { + "_tag": "ByteArray", + "bytearray": "db012b0d8342025cb641d7df" + }, + "cborHex": "4cdb012b0d8342025cb641d7df", + "cborBytes": [76, 219, 1, 43, 13, 131, 66, 2, 92, 182, 65, 215, 223], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1656, + "sample": { + "_tag": "ByteArray", + "bytearray": "732ea6bee5309d" + }, + "cborHex": "47732ea6bee5309d", + "cborBytes": [71, 115, 46, 166, 190, 229, 48, 157], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1657, + "sample": { + "_tag": "ByteArray", + "bytearray": "b9" + }, + "cborHex": "41b9", + "cborBytes": [65, 185], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1658, + "sample": { + "_tag": "ByteArray", + "bytearray": "0472011c0206a282cb15" + }, + "cborHex": "4a0472011c0206a282cb15", + "cborBytes": [74, 4, 114, 1, 28, 2, 6, 162, 130, 203, 21], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1659, + "sample": { + "_tag": "ByteArray", + "bytearray": "fafd" + }, + "cborHex": "42fafd", + "cborBytes": [66, 250, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1660, + "sample": { + "_tag": "ByteArray", + "bytearray": "70cf017ea2d5b02360594241" + }, + "cborHex": "4c70cf017ea2d5b02360594241", + "cborBytes": [76, 112, 207, 1, 126, 162, 213, 176, 35, 96, 89, 66, 65], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1661, + "sample": { + "_tag": "ByteArray", + "bytearray": "a8e67522420690ce" + }, + "cborHex": "48a8e67522420690ce", + "cborBytes": [72, 168, 230, 117, 34, 66, 6, 144, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1662, + "sample": { + "_tag": "ByteArray", + "bytearray": "95b574b9f9d6b76482e0a8" + }, + "cborHex": "4b95b574b9f9d6b76482e0a8", + "cborBytes": [75, 149, 181, 116, 185, 249, 214, 183, 100, 130, 224, 168], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1663, + "sample": { + "_tag": "ByteArray", + "bytearray": "df1c505e4b8459e6df82d7a8" + }, + "cborHex": "4cdf1c505e4b8459e6df82d7a8", + "cborBytes": [76, 223, 28, 80, 94, 75, 132, 89, 230, 223, 130, 215, 168], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1664, + "sample": { + "_tag": "ByteArray", + "bytearray": "078ad9038387de8711f8" + }, + "cborHex": "4a078ad9038387de8711f8", + "cborBytes": [74, 7, 138, 217, 3, 131, 135, 222, 135, 17, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1665, + "sample": { + "_tag": "ByteArray", + "bytearray": "3042bacd8e1b9a" + }, + "cborHex": "473042bacd8e1b9a", + "cborBytes": [71, 48, 66, 186, 205, 142, 27, 154], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1666, + "sample": { + "_tag": "ByteArray", + "bytearray": "75d4e3008079015780d6b09d" + }, + "cborHex": "4c75d4e3008079015780d6b09d", + "cborBytes": [76, 117, 212, 227, 0, 128, 121, 1, 87, 128, 214, 176, 157], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1667, + "sample": { + "_tag": "ByteArray", + "bytearray": "f0e071d8" + }, + "cborHex": "44f0e071d8", + "cborBytes": [68, 240, 224, 113, 216], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1668, + "sample": { + "_tag": "ByteArray", + "bytearray": "7b040505" + }, + "cborHex": "447b040505", + "cborBytes": [68, 123, 4, 5, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1669, + "sample": { + "_tag": "ByteArray", + "bytearray": "26c72e438e40adb01a7331" + }, + "cborHex": "4b26c72e438e40adb01a7331", + "cborBytes": [75, 38, 199, 46, 67, 142, 64, 173, 176, 26, 115, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1670, + "sample": { + "_tag": "ByteArray", + "bytearray": "f7a1" + }, + "cborHex": "42f7a1", + "cborBytes": [66, 247, 161], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1671, + "sample": { + "_tag": "ByteArray", + "bytearray": "01fd49" + }, + "cborHex": "4301fd49", + "cborBytes": [67, 1, 253, 73], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1672, + "sample": { + "_tag": "ByteArray", + "bytearray": "ecbc6623c1034e" + }, + "cborHex": "47ecbc6623c1034e", + "cborBytes": [71, 236, 188, 102, 35, 193, 3, 78], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1673, + "sample": { + "_tag": "ByteArray", + "bytearray": "39d25b7b1eb9e5611548b021" + }, + "cborHex": "4c39d25b7b1eb9e5611548b021", + "cborBytes": [76, 57, 210, 91, 123, 30, 185, 229, 97, 21, 72, 176, 33], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1674, + "sample": { + "_tag": "ByteArray", + "bytearray": "0203d9e90604dd" + }, + "cborHex": "470203d9e90604dd", + "cborBytes": [71, 2, 3, 217, 233, 6, 4, 221], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1675, + "sample": { + "_tag": "ByteArray", + "bytearray": "95a406a6915b" + }, + "cborHex": "4695a406a6915b", + "cborBytes": [70, 149, 164, 6, 166, 145, 91], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1676, + "sample": { + "_tag": "ByteArray", + "bytearray": "00028bfbcd018501" + }, + "cborHex": "4800028bfbcd018501", + "cborBytes": [72, 0, 2, 139, 251, 205, 1, 133, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1677, + "sample": { + "_tag": "ByteArray", + "bytearray": "9a36bb0714ff02" + }, + "cborHex": "479a36bb0714ff02", + "cborBytes": [71, 154, 54, 187, 7, 20, 255, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1678, + "sample": { + "_tag": "ByteArray", + "bytearray": "ced528add4e06b606d31" + }, + "cborHex": "4aced528add4e06b606d31", + "cborBytes": [74, 206, 213, 40, 173, 212, 224, 107, 96, 109, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1679, + "sample": { + "_tag": "ByteArray", + "bytearray": "e6693c5b6aa84267d7" + }, + "cborHex": "49e6693c5b6aa84267d7", + "cborBytes": [73, 230, 105, 60, 91, 106, 168, 66, 103, 215], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1680, + "sample": { + "_tag": "ByteArray", + "bytearray": "04e5" + }, + "cborHex": "4204e5", + "cborBytes": [66, 4, 229], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1681, + "sample": { + "_tag": "ByteArray", + "bytearray": "0407b1463cdb4100" + }, + "cborHex": "480407b1463cdb4100", + "cborBytes": [72, 4, 7, 177, 70, 60, 219, 65, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1682, + "sample": { + "_tag": "ByteArray", + "bytearray": "2ed7646104b87456221d32e6" + }, + "cborHex": "4c2ed7646104b87456221d32e6", + "cborBytes": [76, 46, 215, 100, 97, 4, 184, 116, 86, 34, 29, 50, 230], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1683, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd4f" + }, + "cborHex": "42fd4f", + "cborBytes": [66, 253, 79], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1684, + "sample": { + "_tag": "ByteArray", + "bytearray": "406aa0" + }, + "cborHex": "43406aa0", + "cborBytes": [67, 64, 106, 160], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1685, + "sample": { + "_tag": "ByteArray", + "bytearray": "053104" + }, + "cborHex": "43053104", + "cborBytes": [67, 5, 49, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1686, + "sample": { + "_tag": "ByteArray", + "bytearray": "4ba795b8" + }, + "cborHex": "444ba795b8", + "cborBytes": [68, 75, 167, 149, 184], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1687, + "sample": { + "_tag": "ByteArray", + "bytearray": "1c7d4dbe" + }, + "cborHex": "441c7d4dbe", + "cborBytes": [68, 28, 125, 77, 190], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1688, + "sample": { + "_tag": "ByteArray", + "bytearray": "5b" + }, + "cborHex": "415b", + "cborBytes": [65, 91], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1689, + "sample": { + "_tag": "ByteArray", + "bytearray": "76" + }, + "cborHex": "4176", + "cborBytes": [65, 118], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1690, + "sample": { + "_tag": "ByteArray", + "bytearray": "5938bfb991306aedb4c3e7" + }, + "cborHex": "4b5938bfb991306aedb4c3e7", + "cborBytes": [75, 89, 56, 191, 185, 145, 48, 106, 237, 180, 195, 231], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1691, + "sample": { + "_tag": "ByteArray", + "bytearray": "eec6f8" + }, + "cborHex": "43eec6f8", + "cborBytes": [67, 238, 198, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1692, + "sample": { + "_tag": "ByteArray", + "bytearray": "7d" + }, + "cborHex": "417d", + "cborBytes": [65, 125], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1693, + "sample": { + "_tag": "ByteArray", + "bytearray": "5399c4696efd3025617ef5e8" + }, + "cborHex": "4c5399c4696efd3025617ef5e8", + "cborBytes": [76, 83, 153, 196, 105, 110, 253, 48, 37, 97, 126, 245, 232], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1694, + "sample": { + "_tag": "ByteArray", + "bytearray": "5053" + }, + "cborHex": "425053", + "cborBytes": [66, 80, 83], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1695, + "sample": { + "_tag": "ByteArray", + "bytearray": "c115c9ef3e6a" + }, + "cborHex": "46c115c9ef3e6a", + "cborBytes": [70, 193, 21, 201, 239, 62, 106], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1696, + "sample": { + "_tag": "ByteArray", + "bytearray": "20239726ab8632443c6675" + }, + "cborHex": "4b20239726ab8632443c6675", + "cborBytes": [75, 32, 35, 151, 38, 171, 134, 50, 68, 60, 102, 117], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1697, + "sample": { + "_tag": "ByteArray", + "bytearray": "6cb294e3750a171a7bdf72ea" + }, + "cborHex": "4c6cb294e3750a171a7bdf72ea", + "cborBytes": [76, 108, 178, 148, 227, 117, 10, 23, 26, 123, 223, 114, 234], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1698, + "sample": { + "_tag": "ByteArray", + "bytearray": "3598" + }, + "cborHex": "423598", + "cborBytes": [66, 53, 152], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1699, + "sample": { + "_tag": "ByteArray", + "bytearray": "0b" + }, + "cborHex": "410b", + "cborBytes": [65, 11], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1700, + "sample": { + "_tag": "ByteArray", + "bytearray": "2c06c5" + }, + "cborHex": "432c06c5", + "cborBytes": [67, 44, 6, 197], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1701, + "sample": { + "_tag": "ByteArray", + "bytearray": "779b83bc" + }, + "cborHex": "44779b83bc", + "cborBytes": [68, 119, 155, 131, 188], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1702, + "sample": { + "_tag": "ByteArray", + "bytearray": "a2ff5e25e4c2a7854b" + }, + "cborHex": "49a2ff5e25e4c2a7854b", + "cborBytes": [73, 162, 255, 94, 37, 228, 194, 167, 133, 75], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1703, + "sample": { + "_tag": "ByteArray", + "bytearray": "5bca" + }, + "cborHex": "425bca", + "cborBytes": [66, 91, 202], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1704, + "sample": { + "_tag": "ByteArray", + "bytearray": "0fa14713d4477d" + }, + "cborHex": "470fa14713d4477d", + "cborBytes": [71, 15, 161, 71, 19, 212, 71, 125], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1705, + "sample": { + "_tag": "ByteArray", + "bytearray": "f835" + }, + "cborHex": "42f835", + "cborBytes": [66, 248, 53], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1706, + "sample": { + "_tag": "ByteArray", + "bytearray": "b2c5f26fbcdd" + }, + "cborHex": "46b2c5f26fbcdd", + "cborBytes": [70, 178, 197, 242, 111, 188, 221], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1707, + "sample": { + "_tag": "ByteArray", + "bytearray": "6c060100" + }, + "cborHex": "446c060100", + "cborBytes": [68, 108, 6, 1, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1708, + "sample": { + "_tag": "ByteArray", + "bytearray": "887736d4fdbc6a52771ac8" + }, + "cborHex": "4b887736d4fdbc6a52771ac8", + "cborBytes": [75, 136, 119, 54, 212, 253, 188, 106, 82, 119, 26, 200], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1709, + "sample": { + "_tag": "ByteArray", + "bytearray": "31f9" + }, + "cborHex": "4231f9", + "cborBytes": [66, 49, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1710, + "sample": { + "_tag": "ByteArray", + "bytearray": "ba9745f9b925d6ef29d565" + }, + "cborHex": "4bba9745f9b925d6ef29d565", + "cborBytes": [75, 186, 151, 69, 249, 185, 37, 214, 239, 41, 213, 101], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1711, + "sample": { + "_tag": "ByteArray", + "bytearray": "01fff805" + }, + "cborHex": "4401fff805", + "cborBytes": [68, 1, 255, 248, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1712, + "sample": { + "_tag": "ByteArray", + "bytearray": "555bcc74d29ff07e827423" + }, + "cborHex": "4b555bcc74d29ff07e827423", + "cborBytes": [75, 85, 91, 204, 116, 210, 159, 240, 126, 130, 116, 35], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1713, + "sample": { + "_tag": "ByteArray", + "bytearray": "f2c7" + }, + "cborHex": "42f2c7", + "cborBytes": [66, 242, 199], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1714, + "sample": { + "_tag": "ByteArray", + "bytearray": "706d3122e8dcc6263596baba" + }, + "cborHex": "4c706d3122e8dcc6263596baba", + "cborBytes": [76, 112, 109, 49, 34, 232, 220, 198, 38, 53, 150, 186, 186], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1715, + "sample": { + "_tag": "ByteArray", + "bytearray": "d3eecc5cccbd5d" + }, + "cborHex": "47d3eecc5cccbd5d", + "cborBytes": [71, 211, 238, 204, 92, 204, 189, 93], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1716, + "sample": { + "_tag": "ByteArray", + "bytearray": "6626d24774874f99f5e8" + }, + "cborHex": "4a6626d24774874f99f5e8", + "cborBytes": [74, 102, 38, 210, 71, 116, 135, 79, 153, 245, 232], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1717, + "sample": { + "_tag": "ByteArray", + "bytearray": "05fc5f" + }, + "cborHex": "4305fc5f", + "cborBytes": [67, 5, 252, 95], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1718, + "sample": { + "_tag": "ByteArray", + "bytearray": "bbfe5d04" + }, + "cborHex": "44bbfe5d04", + "cborBytes": [68, 187, 254, 93, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1719, + "sample": { + "_tag": "ByteArray", + "bytearray": "1501" + }, + "cborHex": "421501", + "cborBytes": [66, 21, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1720, + "sample": { + "_tag": "ByteArray", + "bytearray": "877aa6b49506df62ea" + }, + "cborHex": "49877aa6b49506df62ea", + "cborBytes": [73, 135, 122, 166, 180, 149, 6, 223, 98, 234], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1721, + "sample": { + "_tag": "ByteArray", + "bytearray": "3bcf0001b8ac19fce298" + }, + "cborHex": "4a3bcf0001b8ac19fce298", + "cborBytes": [74, 59, 207, 0, 1, 184, 172, 25, 252, 226, 152], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1722, + "sample": { + "_tag": "ByteArray", + "bytearray": "e8039f32f18292e5b0" + }, + "cborHex": "49e8039f32f18292e5b0", + "cborBytes": [73, 232, 3, 159, 50, 241, 130, 146, 229, 176], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1723, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd7e" + }, + "cborHex": "42fd7e", + "cborBytes": [66, 253, 126], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1724, + "sample": { + "_tag": "ByteArray", + "bytearray": "14d7e83d8521" + }, + "cborHex": "4614d7e83d8521", + "cborBytes": [70, 20, 215, 232, 61, 133, 33], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1725, + "sample": { + "_tag": "ByteArray", + "bytearray": "21b6ccfa7cf3bd" + }, + "cborHex": "4721b6ccfa7cf3bd", + "cborBytes": [71, 33, 182, 204, 250, 124, 243, 189], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1726, + "sample": { + "_tag": "ByteArray", + "bytearray": "fab7e9" + }, + "cborHex": "43fab7e9", + "cborBytes": [67, 250, 183, 233], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1727, + "sample": { + "_tag": "ByteArray", + "bytearray": "02b43203ad700614" + }, + "cborHex": "4802b43203ad700614", + "cborBytes": [72, 2, 180, 50, 3, 173, 112, 6, 20], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1728, + "sample": { + "_tag": "ByteArray", + "bytearray": "47f929fb" + }, + "cborHex": "4447f929fb", + "cborBytes": [68, 71, 249, 41, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1729, + "sample": { + "_tag": "ByteArray", + "bytearray": "29e8" + }, + "cborHex": "4229e8", + "cborBytes": [66, 41, 232], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1730, + "sample": { + "_tag": "ByteArray", + "bytearray": "d5f802" + }, + "cborHex": "43d5f802", + "cborBytes": [67, 213, 248, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1731, + "sample": { + "_tag": "ByteArray", + "bytearray": "0dfc29782f772aaf152b35" + }, + "cborHex": "4b0dfc29782f772aaf152b35", + "cborBytes": [75, 13, 252, 41, 120, 47, 119, 42, 175, 21, 43, 53], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1732, + "sample": { + "_tag": "ByteArray", + "bytearray": "a558ed" + }, + "cborHex": "43a558ed", + "cborBytes": [67, 165, 88, 237], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1733, + "sample": { + "_tag": "ByteArray", + "bytearray": "28" + }, + "cborHex": "4128", + "cborBytes": [65, 40], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1734, + "sample": { + "_tag": "ByteArray", + "bytearray": "d40a36c11071ad680c836c" + }, + "cborHex": "4bd40a36c11071ad680c836c", + "cborBytes": [75, 212, 10, 54, 193, 16, 113, 173, 104, 12, 131, 108], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1735, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe7107ea1c8abd9a2e732a" + }, + "cborHex": "4bfe7107ea1c8abd9a2e732a", + "cborBytes": [75, 254, 113, 7, 234, 28, 138, 189, 154, 46, 115, 42], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1736, + "sample": { + "_tag": "ByteArray", + "bytearray": "78be60f7fbfda31c019182" + }, + "cborHex": "4b78be60f7fbfda31c019182", + "cborBytes": [75, 120, 190, 96, 247, 251, 253, 163, 28, 1, 145, 130], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1737, + "sample": { + "_tag": "ByteArray", + "bytearray": "83b0049f" + }, + "cborHex": "4483b0049f", + "cborBytes": [68, 131, 176, 4, 159], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1738, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcf8de05" + }, + "cborHex": "44fcf8de05", + "cborBytes": [68, 252, 248, 222, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1739, + "sample": { + "_tag": "ByteArray", + "bytearray": "01f907" + }, + "cborHex": "4301f907", + "cborBytes": [67, 1, 249, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1740, + "sample": { + "_tag": "ByteArray", + "bytearray": "fdaafafb" + }, + "cborHex": "44fdaafafb", + "cborBytes": [68, 253, 170, 250, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1741, + "sample": { + "_tag": "ByteArray", + "bytearray": "76a1" + }, + "cborHex": "4276a1", + "cborBytes": [66, 118, 161], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1742, + "sample": { + "_tag": "ByteArray", + "bytearray": "06fe03" + }, + "cborHex": "4306fe03", + "cborBytes": [67, 6, 254, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1743, + "sample": { + "_tag": "ByteArray", + "bytearray": "74b0" + }, + "cborHex": "4274b0", + "cborBytes": [66, 116, 176], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1744, + "sample": { + "_tag": "ByteArray", + "bytearray": "ce6b6049c997881a" + }, + "cborHex": "48ce6b6049c997881a", + "cborBytes": [72, 206, 107, 96, 73, 201, 151, 136, 26], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1745, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa07d2d2e5d1bd70dc" + }, + "cborHex": "49fa07d2d2e5d1bd70dc", + "cborBytes": [73, 250, 7, 210, 210, 229, 209, 189, 112, 220], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1746, + "sample": { + "_tag": "ByteArray", + "bytearray": "02020437850296f8" + }, + "cborHex": "4802020437850296f8", + "cborBytes": [72, 2, 2, 4, 55, 133, 2, 150, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1747, + "sample": { + "_tag": "ByteArray", + "bytearray": "06fa04" + }, + "cborHex": "4306fa04", + "cborBytes": [67, 6, 250, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1748, + "sample": { + "_tag": "ByteArray", + "bytearray": "edf96110028c05" + }, + "cborHex": "47edf96110028c05", + "cborBytes": [71, 237, 249, 97, 16, 2, 140, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1749, + "sample": { + "_tag": "ByteArray", + "bytearray": "05fefa681402f85ff8070000" + }, + "cborHex": "4c05fefa681402f85ff8070000", + "cborBytes": [76, 5, 254, 250, 104, 20, 2, 248, 95, 248, 7, 0, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1750, + "sample": { + "_tag": "ByteArray", + "bytearray": "02070006ccd401fcfe81" + }, + "cborHex": "4a02070006ccd401fcfe81", + "cborBytes": [74, 2, 7, 0, 6, 204, 212, 1, 252, 254, 129], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1751, + "sample": { + "_tag": "ByteArray", + "bytearray": "5d9fa30de42a51cb8d0b33" + }, + "cborHex": "4b5d9fa30de42a51cb8d0b33", + "cborBytes": [75, 93, 159, 163, 13, 228, 42, 81, 203, 141, 11, 51], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1752, + "sample": { + "_tag": "ByteArray", + "bytearray": "e129ce" + }, + "cborHex": "43e129ce", + "cborBytes": [67, 225, 41, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1753, + "sample": { + "_tag": "ByteArray", + "bytearray": "0007" + }, + "cborHex": "420007", + "cborBytes": [66, 0, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1754, + "sample": { + "_tag": "ByteArray", + "bytearray": "bd2866e10b7318bb94c02464" + }, + "cborHex": "4cbd2866e10b7318bb94c02464", + "cborBytes": [76, 189, 40, 102, 225, 11, 115, 24, 187, 148, 192, 36, 100], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1755, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe010683fd" + }, + "cborHex": "45fe010683fd", + "cborBytes": [69, 254, 1, 6, 131, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1756, + "sample": { + "_tag": "ByteArray", + "bytearray": "cd885a024cc7f018de3de3b5" + }, + "cborHex": "4ccd885a024cc7f018de3de3b5", + "cborBytes": [76, 205, 136, 90, 2, 76, 199, 240, 24, 222, 61, 227, 181], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1757, + "sample": { + "_tag": "ByteArray", + "bytearray": "763803" + }, + "cborHex": "43763803", + "cborBytes": [67, 118, 56, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1758, + "sample": { + "_tag": "ByteArray", + "bytearray": "2c7008" + }, + "cborHex": "432c7008", + "cborBytes": [67, 44, 112, 8], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1759, + "sample": { + "_tag": "ByteArray", + "bytearray": "b7ce497435" + }, + "cborHex": "45b7ce497435", + "cborBytes": [69, 183, 206, 73, 116, 53], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1760, + "sample": { + "_tag": "ByteArray", + "bytearray": "12c4e27b036705ee069404" + }, + "cborHex": "4b12c4e27b036705ee069404", + "cborBytes": [75, 18, 196, 226, 123, 3, 103, 5, 238, 6, 148, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1761, + "sample": { + "_tag": "ByteArray", + "bytearray": "0729" + }, + "cborHex": "420729", + "cborBytes": [66, 7, 41], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1762, + "sample": { + "_tag": "ByteArray", + "bytearray": "07fafffe86fbc1" + }, + "cborHex": "4707fafffe86fbc1", + "cborBytes": [71, 7, 250, 255, 254, 134, 251, 193], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1763, + "sample": { + "_tag": "ByteArray", + "bytearray": "f75a03" + }, + "cborHex": "43f75a03", + "cborBytes": [67, 247, 90, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1764, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb2f04f298b6ed" + }, + "cborHex": "47fb2f04f298b6ed", + "cborBytes": [71, 251, 47, 4, 242, 152, 182, 237], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1765, + "sample": { + "_tag": "ByteArray", + "bytearray": "5c330807060301" + }, + "cborHex": "475c330807060301", + "cborBytes": [71, 92, 51, 8, 7, 6, 3, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1766, + "sample": { + "_tag": "ByteArray", + "bytearray": "2f8f032e698aa8" + }, + "cborHex": "472f8f032e698aa8", + "cborBytes": [71, 47, 143, 3, 46, 105, 138, 168], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1767, + "sample": { + "_tag": "ByteArray", + "bytearray": "007704" + }, + "cborHex": "43007704", + "cborBytes": [67, 0, 119, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1768, + "sample": { + "_tag": "ByteArray", + "bytearray": "ea7bb15acb4530a1" + }, + "cborHex": "48ea7bb15acb4530a1", + "cborBytes": [72, 234, 123, 177, 90, 203, 69, 48, 161], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1769, + "sample": { + "_tag": "ByteArray", + "bytearray": "64057a93" + }, + "cborHex": "4464057a93", + "cborBytes": [68, 100, 5, 122, 147], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1770, + "sample": { + "_tag": "ByteArray", + "bytearray": "a606" + }, + "cborHex": "42a606", + "cborBytes": [66, 166, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1771, + "sample": { + "_tag": "ByteArray", + "bytearray": "dbe56ce8dd3899a84f71c0dc" + }, + "cborHex": "4cdbe56ce8dd3899a84f71c0dc", + "cborBytes": [76, 219, 229, 108, 232, 221, 56, 153, 168, 79, 113, 192, 220], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1772, + "sample": { + "_tag": "ByteArray", + "bytearray": "0f2c4078ba79dab247" + }, + "cborHex": "490f2c4078ba79dab247", + "cborBytes": [73, 15, 44, 64, 120, 186, 121, 218, 178, 71], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1773, + "sample": { + "_tag": "ByteArray", + "bytearray": "6b880171" + }, + "cborHex": "446b880171", + "cborBytes": [68, 107, 136, 1, 113], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1774, + "sample": { + "_tag": "ByteArray", + "bytearray": "b6ce5c6df587044297d6" + }, + "cborHex": "4ab6ce5c6df587044297d6", + "cborBytes": [74, 182, 206, 92, 109, 245, 135, 4, 66, 151, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1775, + "sample": { + "_tag": "ByteArray", + "bytearray": "27f943a034516565d2" + }, + "cborHex": "4927f943a034516565d2", + "cborBytes": [73, 39, 249, 67, 160, 52, 81, 101, 101, 210], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1776, + "sample": { + "_tag": "ByteArray", + "bytearray": "cadecb82417f04d8ec" + }, + "cborHex": "49cadecb82417f04d8ec", + "cborBytes": [73, 202, 222, 203, 130, 65, 127, 4, 216, 236], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1777, + "sample": { + "_tag": "ByteArray", + "bytearray": "fdae" + }, + "cborHex": "42fdae", + "cborBytes": [66, 253, 174], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1778, + "sample": { + "_tag": "ByteArray", + "bytearray": "bfd798adc59fdc" + }, + "cborHex": "47bfd798adc59fdc", + "cborBytes": [71, 191, 215, 152, 173, 197, 159, 220], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1779, + "sample": { + "_tag": "ByteArray", + "bytearray": "b1ff632c1e" + }, + "cborHex": "45b1ff632c1e", + "cborBytes": [69, 177, 255, 99, 44, 30], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1780, + "sample": { + "_tag": "ByteArray", + "bytearray": "6a2b5c582e917f3c4ab71548" + }, + "cborHex": "4c6a2b5c582e917f3c4ab71548", + "cborBytes": [76, 106, 43, 92, 88, 46, 145, 127, 60, 74, 183, 21, 72], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1781, + "sample": { + "_tag": "ByteArray", + "bytearray": "9722024631" + }, + "cborHex": "459722024631", + "cborBytes": [69, 151, 34, 2, 70, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1782, + "sample": { + "_tag": "ByteArray", + "bytearray": "07cc16eefc" + }, + "cborHex": "4507cc16eefc", + "cborBytes": [69, 7, 204, 22, 238, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1783, + "sample": { + "_tag": "ByteArray", + "bytearray": "9fe51f" + }, + "cborHex": "439fe51f", + "cborBytes": [67, 159, 229, 31], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1784, + "sample": { + "_tag": "ByteArray", + "bytearray": "1405c6e6" + }, + "cborHex": "441405c6e6", + "cborBytes": [68, 20, 5, 198, 230], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1785, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc8a89" + }, + "cborHex": "43fc8a89", + "cborBytes": [67, 252, 138, 137], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1786, + "sample": { + "_tag": "ByteArray", + "bytearray": "e0727a1042" + }, + "cborHex": "45e0727a1042", + "cborBytes": [69, 224, 114, 122, 16, 66], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1787, + "sample": { + "_tag": "ByteArray", + "bytearray": "30c9c2e061470426" + }, + "cborHex": "4830c9c2e061470426", + "cborBytes": [72, 48, 201, 194, 224, 97, 71, 4, 38], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1788, + "sample": { + "_tag": "ByteArray", + "bytearray": "3e" + }, + "cborHex": "413e", + "cborBytes": [65, 62], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1789, + "sample": { + "_tag": "ByteArray", + "bytearray": "f6ee063ade20ef19bc" + }, + "cborHex": "49f6ee063ade20ef19bc", + "cborBytes": [73, 246, 238, 6, 58, 222, 32, 239, 25, 188], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1790, + "sample": { + "_tag": "ByteArray", + "bytearray": "2479" + }, + "cborHex": "422479", + "cborBytes": [66, 36, 121], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1791, + "sample": { + "_tag": "ByteArray", + "bytearray": "e92b" + }, + "cborHex": "42e92b", + "cborBytes": [66, 233, 43], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1792, + "sample": { + "_tag": "ByteArray", + "bytearray": "9f9c02a3" + }, + "cborHex": "449f9c02a3", + "cborBytes": [68, 159, 156, 2, 163], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1793, + "sample": { + "_tag": "ByteArray", + "bytearray": "e05d99b02c4df6b1c2390c" + }, + "cborHex": "4be05d99b02c4df6b1c2390c", + "cborBytes": [75, 224, 93, 153, 176, 44, 77, 246, 177, 194, 57, 12], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1794, + "sample": { + "_tag": "ByteArray", + "bytearray": "a9b603" + }, + "cborHex": "43a9b603", + "cborBytes": [67, 169, 182, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1795, + "sample": { + "_tag": "ByteArray", + "bytearray": "1b5d" + }, + "cborHex": "421b5d", + "cborBytes": [66, 27, 93], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1796, + "sample": { + "_tag": "ByteArray", + "bytearray": "9e302b8f5c498a98ed" + }, + "cborHex": "499e302b8f5c498a98ed", + "cborBytes": [73, 158, 48, 43, 143, 92, 73, 138, 152, 237], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1797, + "sample": { + "_tag": "ByteArray", + "bytearray": "f2" + }, + "cborHex": "41f2", + "cborBytes": [65, 242], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1798, + "sample": { + "_tag": "ByteArray", + "bytearray": "b5fb963bc09b3d1173c316" + }, + "cborHex": "4bb5fb963bc09b3d1173c316", + "cborBytes": [75, 181, 251, 150, 59, 192, 155, 61, 17, 115, 195, 22], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1799, + "sample": { + "_tag": "ByteArray", + "bytearray": "05b06d64" + }, + "cborHex": "4405b06d64", + "cborBytes": [68, 5, 176, 109, 100], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1800, + "sample": { + "_tag": "ByteArray", + "bytearray": "5584fefe64" + }, + "cborHex": "455584fefe64", + "cborBytes": [69, 85, 132, 254, 254, 100], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1801, + "sample": { + "_tag": "ByteArray", + "bytearray": "ccdc" + }, + "cborHex": "42ccdc", + "cborBytes": [66, 204, 220], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1802, + "sample": { + "_tag": "ByteArray", + "bytearray": "360003" + }, + "cborHex": "43360003", + "cborBytes": [67, 54, 0, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1803, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8c2feff" + }, + "cborHex": "44f8c2feff", + "cborBytes": [68, 248, 194, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1804, + "sample": { + "_tag": "ByteArray", + "bytearray": "5c2047c794fb" + }, + "cborHex": "465c2047c794fb", + "cborBytes": [70, 92, 32, 71, 199, 148, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1805, + "sample": { + "_tag": "ByteArray", + "bytearray": "f00abcac92f1" + }, + "cborHex": "46f00abcac92f1", + "cborBytes": [70, 240, 10, 188, 172, 146, 241], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1806, + "sample": { + "_tag": "ByteArray", + "bytearray": "8a" + }, + "cborHex": "418a", + "cborBytes": [65, 138], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1807, + "sample": { + "_tag": "ByteArray", + "bytearray": "73" + }, + "cborHex": "4173", + "cborBytes": [65, 115], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1808, + "sample": { + "_tag": "ByteArray", + "bytearray": "4a" + }, + "cborHex": "414a", + "cborBytes": [65, 74], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1809, + "sample": { + "_tag": "ByteArray", + "bytearray": "2b6c79439e465fa615" + }, + "cborHex": "492b6c79439e465fa615", + "cborBytes": [73, 43, 108, 121, 67, 158, 70, 95, 166, 21], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1810, + "sample": { + "_tag": "ByteArray", + "bytearray": "030101389007721d63fd" + }, + "cborHex": "4a030101389007721d63fd", + "cborBytes": [74, 3, 1, 1, 56, 144, 7, 114, 29, 99, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1811, + "sample": { + "_tag": "ByteArray", + "bytearray": "35872471f8" + }, + "cborHex": "4535872471f8", + "cborBytes": [69, 53, 135, 36, 113, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1812, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8f2ed11" + }, + "cborHex": "44f8f2ed11", + "cborBytes": [68, 248, 242, 237, 17], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1813, + "sample": { + "_tag": "ByteArray", + "bytearray": "5297b78b4c5ee537571392b3" + }, + "cborHex": "4c5297b78b4c5ee537571392b3", + "cborBytes": [76, 82, 151, 183, 139, 76, 94, 229, 55, 87, 19, 146, 179], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1814, + "sample": { + "_tag": "ByteArray", + "bytearray": "41bf04" + }, + "cborHex": "4341bf04", + "cborBytes": [67, 65, 191, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1815, + "sample": { + "_tag": "ByteArray", + "bytearray": "62" + }, + "cborHex": "4162", + "cborBytes": [65, 98], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1816, + "sample": { + "_tag": "ByteArray", + "bytearray": "d93a305aa4223788ac89" + }, + "cborHex": "4ad93a305aa4223788ac89", + "cborBytes": [74, 217, 58, 48, 90, 164, 34, 55, 136, 172, 137], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1817, + "sample": { + "_tag": "ByteArray", + "bytearray": "d484" + }, + "cborHex": "42d484", + "cborBytes": [66, 212, 132], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1818, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe46" + }, + "cborHex": "42fe46", + "cborBytes": [66, 254, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1819, + "sample": { + "_tag": "ByteArray", + "bytearray": "5d" + }, + "cborHex": "415d", + "cborBytes": [65, 93], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1820, + "sample": { + "_tag": "ByteArray", + "bytearray": "2f0197" + }, + "cborHex": "432f0197", + "cborBytes": [67, 47, 1, 151], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1821, + "sample": { + "_tag": "ByteArray", + "bytearray": "0300fc" + }, + "cborHex": "430300fc", + "cborBytes": [67, 3, 0, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1822, + "sample": { + "_tag": "ByteArray", + "bytearray": "d6b0358b633a" + }, + "cborHex": "46d6b0358b633a", + "cborBytes": [70, 214, 176, 53, 139, 99, 58], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1823, + "sample": { + "_tag": "ByteArray", + "bytearray": "b033" + }, + "cborHex": "42b033", + "cborBytes": [66, 176, 51], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1824, + "sample": { + "_tag": "ByteArray", + "bytearray": "070601ff1a000100" + }, + "cborHex": "48070601ff1a000100", + "cborBytes": [72, 7, 6, 1, 255, 26, 0, 1, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1825, + "sample": { + "_tag": "ByteArray", + "bytearray": "bd2617e8758fd6adac11" + }, + "cborHex": "4abd2617e8758fd6adac11", + "cborBytes": [74, 189, 38, 23, 232, 117, 143, 214, 173, 172, 17], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1826, + "sample": { + "_tag": "ByteArray", + "bytearray": "bb036360c73f3ef0" + }, + "cborHex": "48bb036360c73f3ef0", + "cborBytes": [72, 187, 3, 99, 96, 199, 63, 62, 240], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1827, + "sample": { + "_tag": "ByteArray", + "bytearray": "f0" + }, + "cborHex": "41f0", + "cborBytes": [65, 240], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1828, + "sample": { + "_tag": "ByteArray", + "bytearray": "a7" + }, + "cborHex": "41a7", + "cborBytes": [65, 167], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1829, + "sample": { + "_tag": "ByteArray", + "bytearray": "024ffafd6930" + }, + "cborHex": "46024ffafd6930", + "cborBytes": [70, 2, 79, 250, 253, 105, 48], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1830, + "sample": { + "_tag": "ByteArray", + "bytearray": "c892f912f3dd7a95cf" + }, + "cborHex": "49c892f912f3dd7a95cf", + "cborBytes": [73, 200, 146, 249, 18, 243, 221, 122, 149, 207], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1831, + "sample": { + "_tag": "ByteArray", + "bytearray": "11f669cd" + }, + "cborHex": "4411f669cd", + "cborBytes": [68, 17, 246, 105, 205], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1832, + "sample": { + "_tag": "ByteArray", + "bytearray": "ab866977f6ca5be255a2" + }, + "cborHex": "4aab866977f6ca5be255a2", + "cborBytes": [74, 171, 134, 105, 119, 246, 202, 91, 226, 85, 162], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1833, + "sample": { + "_tag": "ByteArray", + "bytearray": "c25c3046" + }, + "cborHex": "44c25c3046", + "cborBytes": [68, 194, 92, 48, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1834, + "sample": { + "_tag": "ByteArray", + "bytearray": "0e03" + }, + "cborHex": "420e03", + "cborBytes": [66, 14, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1835, + "sample": { + "_tag": "ByteArray", + "bytearray": "0902c2d2917e6166" + }, + "cborHex": "480902c2d2917e6166", + "cborBytes": [72, 9, 2, 194, 210, 145, 126, 97, 102], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1836, + "sample": { + "_tag": "ByteArray", + "bytearray": "0203fe50" + }, + "cborHex": "440203fe50", + "cborBytes": [68, 2, 3, 254, 80], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1837, + "sample": { + "_tag": "ByteArray", + "bytearray": "76eb56cba04ea5" + }, + "cborHex": "4776eb56cba04ea5", + "cborBytes": [71, 118, 235, 86, 203, 160, 78, 165], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1838, + "sample": { + "_tag": "ByteArray", + "bytearray": "9d3cb9db" + }, + "cborHex": "449d3cb9db", + "cborBytes": [68, 157, 60, 185, 219], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1839, + "sample": { + "_tag": "ByteArray", + "bytearray": "cb0505fb" + }, + "cborHex": "44cb0505fb", + "cborBytes": [68, 203, 5, 5, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1840, + "sample": { + "_tag": "ByteArray", + "bytearray": "d7b96c99cc4a28daaec7a767" + }, + "cborHex": "4cd7b96c99cc4a28daaec7a767", + "cborBytes": [76, 215, 185, 108, 153, 204, 74, 40, 218, 174, 199, 167, 103], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1841, + "sample": { + "_tag": "ByteArray", + "bytearray": "a10306a3" + }, + "cborHex": "44a10306a3", + "cborBytes": [68, 161, 3, 6, 163], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1842, + "sample": { + "_tag": "ByteArray", + "bytearray": "e50402" + }, + "cborHex": "43e50402", + "cborBytes": [67, 229, 4, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1843, + "sample": { + "_tag": "ByteArray", + "bytearray": "0d35" + }, + "cborHex": "420d35", + "cborBytes": [66, 13, 53], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1844, + "sample": { + "_tag": "ByteArray", + "bytearray": "4c572c2ff52480eb74" + }, + "cborHex": "494c572c2ff52480eb74", + "cborBytes": [73, 76, 87, 44, 47, 245, 36, 128, 235, 116], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1845, + "sample": { + "_tag": "ByteArray", + "bytearray": "8b000002f840" + }, + "cborHex": "468b000002f840", + "cborBytes": [70, 139, 0, 0, 2, 248, 64], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1846, + "sample": { + "_tag": "ByteArray", + "bytearray": "6e00355f06fa054c06619d51" + }, + "cborHex": "4c6e00355f06fa054c06619d51", + "cborBytes": [76, 110, 0, 53, 95, 6, 250, 5, 76, 6, 97, 157, 81], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1847, + "sample": { + "_tag": "ByteArray", + "bytearray": "4d7daca120203b9656" + }, + "cborHex": "494d7daca120203b9656", + "cborBytes": [73, 77, 125, 172, 161, 32, 32, 59, 150, 86], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1848, + "sample": { + "_tag": "ByteArray", + "bytearray": "9846ea82876fd20dc0c5" + }, + "cborHex": "4a9846ea82876fd20dc0c5", + "cborBytes": [74, 152, 70, 234, 130, 135, 111, 210, 13, 192, 197], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1849, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb767598d706f8feff" + }, + "cborHex": "49fb767598d706f8feff", + "cborBytes": [73, 251, 118, 117, 152, 215, 6, 248, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1850, + "sample": { + "_tag": "ByteArray", + "bytearray": "49726488" + }, + "cborHex": "4449726488", + "cborBytes": [68, 73, 114, 100, 136], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1851, + "sample": { + "_tag": "ByteArray", + "bytearray": "5dc543" + }, + "cborHex": "435dc543", + "cborBytes": [67, 93, 197, 67], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1852, + "sample": { + "_tag": "ByteArray", + "bytearray": "491c88b8d5b0" + }, + "cborHex": "46491c88b8d5b0", + "cborBytes": [70, 73, 28, 136, 184, 213, 176], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1853, + "sample": { + "_tag": "ByteArray", + "bytearray": "cb" + }, + "cborHex": "41cb", + "cborBytes": [65, 203], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1854, + "sample": { + "_tag": "ByteArray", + "bytearray": "3a1c37a5" + }, + "cborHex": "443a1c37a5", + "cborBytes": [68, 58, 28, 55, 165], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1855, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff3d3001ff" + }, + "cborHex": "45ff3d3001ff", + "cborBytes": [69, 255, 61, 48, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1856, + "sample": { + "_tag": "ByteArray", + "bytearray": "b2f7ec52ddaa53e1e0e40af3" + }, + "cborHex": "4cb2f7ec52ddaa53e1e0e40af3", + "cborBytes": [76, 178, 247, 236, 82, 221, 170, 83, 225, 224, 228, 10, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1857, + "sample": { + "_tag": "ByteArray", + "bytearray": "4be0fa" + }, + "cborHex": "434be0fa", + "cborBytes": [67, 75, 224, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1858, + "sample": { + "_tag": "ByteArray", + "bytearray": "f91cacfe89935fab2e7795" + }, + "cborHex": "4bf91cacfe89935fab2e7795", + "cborBytes": [75, 249, 28, 172, 254, 137, 147, 95, 171, 46, 119, 149], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1859, + "sample": { + "_tag": "ByteArray", + "bytearray": "f646659a9b04d3f6b60d30e9" + }, + "cborHex": "4cf646659a9b04d3f6b60d30e9", + "cborBytes": [76, 246, 70, 101, 154, 155, 4, 211, 246, 182, 13, 48, 233], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1860, + "sample": { + "_tag": "ByteArray", + "bytearray": "2e64591c0d" + }, + "cborHex": "452e64591c0d", + "cborBytes": [69, 46, 100, 89, 28, 13], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1861, + "sample": { + "_tag": "ByteArray", + "bytearray": "253d319f" + }, + "cborHex": "44253d319f", + "cborBytes": [68, 37, 61, 49, 159], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1862, + "sample": { + "_tag": "ByteArray", + "bytearray": "57b7adea6751ec" + }, + "cborHex": "4757b7adea6751ec", + "cborBytes": [71, 87, 183, 173, 234, 103, 81, 236], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1863, + "sample": { + "_tag": "ByteArray", + "bytearray": "12a40d1d1903" + }, + "cborHex": "4612a40d1d1903", + "cborBytes": [70, 18, 164, 13, 29, 25, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1864, + "sample": { + "_tag": "ByteArray", + "bytearray": "a903fd02" + }, + "cborHex": "44a903fd02", + "cborBytes": [68, 169, 3, 253, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1865, + "sample": { + "_tag": "ByteArray", + "bytearray": "07fc2004bc051605" + }, + "cborHex": "4807fc2004bc051605", + "cborBytes": [72, 7, 252, 32, 4, 188, 5, 22, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1866, + "sample": { + "_tag": "ByteArray", + "bytearray": "b8e3" + }, + "cborHex": "42b8e3", + "cborBytes": [66, 184, 227], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1867, + "sample": { + "_tag": "ByteArray", + "bytearray": "4dec93cc" + }, + "cborHex": "444dec93cc", + "cborBytes": [68, 77, 236, 147, 204], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1868, + "sample": { + "_tag": "ByteArray", + "bytearray": "8c83b9c574ed73bc" + }, + "cborHex": "488c83b9c574ed73bc", + "cborBytes": [72, 140, 131, 185, 197, 116, 237, 115, 188], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1869, + "sample": { + "_tag": "ByteArray", + "bytearray": "b49eabd964aab6b9" + }, + "cborHex": "48b49eabd964aab6b9", + "cborBytes": [72, 180, 158, 171, 217, 100, 170, 182, 185], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1870, + "sample": { + "_tag": "ByteArray", + "bytearray": "28de288b" + }, + "cborHex": "4428de288b", + "cborBytes": [68, 40, 222, 40, 139], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1871, + "sample": { + "_tag": "ByteArray", + "bytearray": "928d" + }, + "cborHex": "42928d", + "cborBytes": [66, 146, 141], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1872, + "sample": { + "_tag": "ByteArray", + "bytearray": "1afdf34e207f55" + }, + "cborHex": "471afdf34e207f55", + "cborBytes": [71, 26, 253, 243, 78, 32, 127, 85], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1873, + "sample": { + "_tag": "ByteArray", + "bytearray": "146c0d0ecc9010" + }, + "cborHex": "47146c0d0ecc9010", + "cborBytes": [71, 20, 108, 13, 14, 204, 144, 16], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1874, + "sample": { + "_tag": "ByteArray", + "bytearray": "8400f8e4350201" + }, + "cborHex": "478400f8e4350201", + "cborBytes": [71, 132, 0, 248, 228, 53, 2, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1875, + "sample": { + "_tag": "ByteArray", + "bytearray": "05e03d8400650703" + }, + "cborHex": "4805e03d8400650703", + "cborBytes": [72, 5, 224, 61, 132, 0, 101, 7, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1876, + "sample": { + "_tag": "ByteArray", + "bytearray": "a129e44b78d1b386e18baa" + }, + "cborHex": "4ba129e44b78d1b386e18baa", + "cborBytes": [75, 161, 41, 228, 75, 120, 209, 179, 134, 225, 139, 170], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1877, + "sample": { + "_tag": "ByteArray", + "bytearray": "eb179cd3" + }, + "cborHex": "44eb179cd3", + "cborBytes": [68, 235, 23, 156, 211], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1878, + "sample": { + "_tag": "ByteArray", + "bytearray": "06a3001d0326010202048f" + }, + "cborHex": "4b06a3001d0326010202048f", + "cborBytes": [75, 6, 163, 0, 29, 3, 38, 1, 2, 2, 4, 143], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1879, + "sample": { + "_tag": "ByteArray", + "bytearray": "ea000301" + }, + "cborHex": "44ea000301", + "cborBytes": [68, 234, 0, 3, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1880, + "sample": { + "_tag": "ByteArray", + "bytearray": "0702e7" + }, + "cborHex": "430702e7", + "cborBytes": [67, 7, 2, 231], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1881, + "sample": { + "_tag": "ByteArray", + "bytearray": "3a6e7a10" + }, + "cborHex": "443a6e7a10", + "cborBytes": [68, 58, 110, 122, 16], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1882, + "sample": { + "_tag": "ByteArray", + "bytearray": "fffd01" + }, + "cborHex": "43fffd01", + "cborBytes": [67, 255, 253, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1883, + "sample": { + "_tag": "ByteArray", + "bytearray": "07f60105" + }, + "cborHex": "4407f60105", + "cborBytes": [68, 7, 246, 1, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1884, + "sample": { + "_tag": "ByteArray", + "bytearray": "941eebbd54f3235799" + }, + "cborHex": "49941eebbd54f3235799", + "cborBytes": [73, 148, 30, 235, 189, 84, 243, 35, 87, 153], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1885, + "sample": { + "_tag": "ByteArray", + "bytearray": "a7fd" + }, + "cborHex": "42a7fd", + "cborBytes": [66, 167, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1886, + "sample": { + "_tag": "ByteArray", + "bytearray": "5a002bd4f2" + }, + "cborHex": "455a002bd4f2", + "cborBytes": [69, 90, 0, 43, 212, 242], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1887, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbf97c" + }, + "cborHex": "43fbf97c", + "cborBytes": [67, 251, 249, 124], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1888, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe02" + }, + "cborHex": "42fe02", + "cborBytes": [66, 254, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1889, + "sample": { + "_tag": "ByteArray", + "bytearray": "07fd0700" + }, + "cborHex": "4407fd0700", + "cborBytes": [68, 7, 253, 7, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1890, + "sample": { + "_tag": "ByteArray", + "bytearray": "072ec891" + }, + "cborHex": "44072ec891", + "cborBytes": [68, 7, 46, 200, 145], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1891, + "sample": { + "_tag": "ByteArray", + "bytearray": "5eeae262190ce5" + }, + "cborHex": "475eeae262190ce5", + "cborBytes": [71, 94, 234, 226, 98, 25, 12, 229], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1892, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbfd57" + }, + "cborHex": "43fbfd57", + "cborBytes": [67, 251, 253, 87], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1893, + "sample": { + "_tag": "ByteArray", + "bytearray": "12e898b7" + }, + "cborHex": "4412e898b7", + "cborBytes": [68, 18, 232, 152, 183], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1894, + "sample": { + "_tag": "ByteArray", + "bytearray": "5f3f6d79a7edc7226a570c" + }, + "cborHex": "4b5f3f6d79a7edc7226a570c", + "cborBytes": [75, 95, 63, 109, 121, 167, 237, 199, 34, 106, 87, 12], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1895, + "sample": { + "_tag": "ByteArray", + "bytearray": "0262" + }, + "cborHex": "420262", + "cborBytes": [66, 2, 98], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1896, + "sample": { + "_tag": "ByteArray", + "bytearray": "1105b1c904" + }, + "cborHex": "451105b1c904", + "cborBytes": [69, 17, 5, 177, 201, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1897, + "sample": { + "_tag": "ByteArray", + "bytearray": "0600" + }, + "cborHex": "420600", + "cborBytes": [66, 6, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1898, + "sample": { + "_tag": "ByteArray", + "bytearray": "07e6b00b03fb0002cf9e9cfa" + }, + "cborHex": "4c07e6b00b03fb0002cf9e9cfa", + "cborBytes": [76, 7, 230, 176, 11, 3, 251, 0, 2, 207, 158, 156, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1899, + "sample": { + "_tag": "ByteArray", + "bytearray": "c85207ff18053cfd037af856" + }, + "cborHex": "4cc85207ff18053cfd037af856", + "cborBytes": [76, 200, 82, 7, 255, 24, 5, 60, 253, 3, 122, 248, 86], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1900, + "sample": { + "_tag": "ByteArray", + "bytearray": "5535c88e733e6bfaf5" + }, + "cborHex": "495535c88e733e6bfaf5", + "cborBytes": [73, 85, 53, 200, 142, 115, 62, 107, 250, 245], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1901, + "sample": { + "_tag": "ByteArray", + "bytearray": "0cfcffff4c05346603d61d1c" + }, + "cborHex": "4c0cfcffff4c05346603d61d1c", + "cborBytes": [76, 12, 252, 255, 255, 76, 5, 52, 102, 3, 214, 29, 28], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1902, + "sample": { + "_tag": "ByteArray", + "bytearray": "052c8a8d6113a902b337" + }, + "cborHex": "4a052c8a8d6113a902b337", + "cborBytes": [74, 5, 44, 138, 141, 97, 19, 169, 2, 179, 55], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1903, + "sample": { + "_tag": "ByteArray", + "bytearray": "85832e20348eab09" + }, + "cborHex": "4885832e20348eab09", + "cborBytes": [72, 133, 131, 46, 32, 52, 142, 171, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1904, + "sample": { + "_tag": "ByteArray", + "bytearray": "3c0504fd01517c" + }, + "cborHex": "473c0504fd01517c", + "cborBytes": [71, 60, 5, 4, 253, 1, 81, 124], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1905, + "sample": { + "_tag": "ByteArray", + "bytearray": "0a377f0927e9be" + }, + "cborHex": "470a377f0927e9be", + "cborBytes": [71, 10, 55, 127, 9, 39, 233, 190], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1906, + "sample": { + "_tag": "ByteArray", + "bytearray": "152c7aef8c" + }, + "cborHex": "45152c7aef8c", + "cborBytes": [69, 21, 44, 122, 239, 140], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1907, + "sample": { + "_tag": "ByteArray", + "bytearray": "82ce" + }, + "cborHex": "4282ce", + "cborBytes": [66, 130, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1908, + "sample": { + "_tag": "ByteArray", + "bytearray": "04ffb919fdd90045" + }, + "cborHex": "4804ffb919fdd90045", + "cborBytes": [72, 4, 255, 185, 25, 253, 217, 0, 69], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1909, + "sample": { + "_tag": "ByteArray", + "bytearray": "e3cf43" + }, + "cborHex": "43e3cf43", + "cborBytes": [67, 227, 207, 67], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1910, + "sample": { + "_tag": "ByteArray", + "bytearray": "1fccbb" + }, + "cborHex": "431fccbb", + "cborBytes": [67, 31, 204, 187], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1911, + "sample": { + "_tag": "ByteArray", + "bytearray": "a0ca271d8a" + }, + "cborHex": "45a0ca271d8a", + "cborBytes": [69, 160, 202, 39, 29, 138], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1912, + "sample": { + "_tag": "ByteArray", + "bytearray": "852c" + }, + "cborHex": "42852c", + "cborBytes": [66, 133, 44], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1913, + "sample": { + "_tag": "ByteArray", + "bytearray": "6b83" + }, + "cborHex": "426b83", + "cborBytes": [66, 107, 131], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1914, + "sample": { + "_tag": "ByteArray", + "bytearray": "bca8201985a6c78d54055b" + }, + "cborHex": "4bbca8201985a6c78d54055b", + "cborBytes": [75, 188, 168, 32, 25, 133, 166, 199, 141, 84, 5, 91], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1915, + "sample": { + "_tag": "ByteArray", + "bytearray": "00ff0af8ce" + }, + "cborHex": "4500ff0af8ce", + "cborBytes": [69, 0, 255, 10, 248, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1916, + "sample": { + "_tag": "ByteArray", + "bytearray": "9fd1cff3" + }, + "cborHex": "449fd1cff3", + "cborBytes": [68, 159, 209, 207, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1917, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb2f75049c07e706f8f8fa" + }, + "cborHex": "4bfb2f75049c07e706f8f8fa", + "cborBytes": [75, 251, 47, 117, 4, 156, 7, 231, 6, 248, 248, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1918, + "sample": { + "_tag": "ByteArray", + "bytearray": "64a00bb1b0ad" + }, + "cborHex": "4664a00bb1b0ad", + "cborBytes": [70, 100, 160, 11, 177, 176, 173], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1919, + "sample": { + "_tag": "ByteArray", + "bytearray": "aa16e2015e" + }, + "cborHex": "45aa16e2015e", + "cborBytes": [69, 170, 22, 226, 1, 94], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1920, + "sample": { + "_tag": "ByteArray", + "bytearray": "19e9318e" + }, + "cborHex": "4419e9318e", + "cborBytes": [68, 25, 233, 49, 142], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1921, + "sample": { + "_tag": "ByteArray", + "bytearray": "01f8fe" + }, + "cborHex": "4301f8fe", + "cborBytes": [67, 1, 248, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1922, + "sample": { + "_tag": "ByteArray", + "bytearray": "3bab05508433616a24e234" + }, + "cborHex": "4b3bab05508433616a24e234", + "cborBytes": [75, 59, 171, 5, 80, 132, 51, 97, 106, 36, 226, 52], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1923, + "sample": { + "_tag": "ByteArray", + "bytearray": "f72777f50c24" + }, + "cborHex": "46f72777f50c24", + "cborBytes": [70, 247, 39, 119, 245, 12, 36], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1924, + "sample": { + "_tag": "ByteArray", + "bytearray": "6f627b" + }, + "cborHex": "436f627b", + "cborBytes": [67, 111, 98, 123], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1925, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd96041c" + }, + "cborHex": "44fd96041c", + "cborBytes": [68, 253, 150, 4, 28], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1926, + "sample": { + "_tag": "ByteArray", + "bytearray": "05fe" + }, + "cborHex": "4205fe", + "cborBytes": [66, 5, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1927, + "sample": { + "_tag": "ByteArray", + "bytearray": "0623258ee3e89b0902" + }, + "cborHex": "490623258ee3e89b0902", + "cborBytes": [73, 6, 35, 37, 142, 227, 232, 155, 9, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1928, + "sample": { + "_tag": "ByteArray", + "bytearray": "049d85" + }, + "cborHex": "43049d85", + "cborBytes": [67, 4, 157, 133], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1929, + "sample": { + "_tag": "ByteArray", + "bytearray": "72c300f7fab7aa03f8010a" + }, + "cborHex": "4b72c300f7fab7aa03f8010a", + "cborBytes": [75, 114, 195, 0, 247, 250, 183, 170, 3, 248, 1, 10], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1930, + "sample": { + "_tag": "ByteArray", + "bytearray": "61fac5eb1c0ace0c5685" + }, + "cborHex": "4a61fac5eb1c0ace0c5685", + "cborBytes": [74, 97, 250, 197, 235, 28, 10, 206, 12, 86, 133], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1931, + "sample": { + "_tag": "ByteArray", + "bytearray": "7a821193dbedd0e1712f7cdc" + }, + "cborHex": "4c7a821193dbedd0e1712f7cdc", + "cborBytes": [76, 122, 130, 17, 147, 219, 237, 208, 225, 113, 47, 124, 220], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1932, + "sample": { + "_tag": "ByteArray", + "bytearray": "acf6e2cbfb57aa" + }, + "cborHex": "47acf6e2cbfb57aa", + "cborBytes": [71, 172, 246, 226, 203, 251, 87, 170], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1933, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcba08f0cc1d" + }, + "cborHex": "46fcba08f0cc1d", + "cborBytes": [70, 252, 186, 8, 240, 204, 29], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1934, + "sample": { + "_tag": "ByteArray", + "bytearray": "19" + }, + "cborHex": "4119", + "cborBytes": [65, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1935, + "sample": { + "_tag": "ByteArray", + "bytearray": "02d0903f" + }, + "cborHex": "4402d0903f", + "cborBytes": [68, 2, 208, 144, 63], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1936, + "sample": { + "_tag": "ByteArray", + "bytearray": "03f6f8" + }, + "cborHex": "4303f6f8", + "cborBytes": [67, 3, 246, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1937, + "sample": { + "_tag": "ByteArray", + "bytearray": "04492bb21880" + }, + "cborHex": "4604492bb21880", + "cborBytes": [70, 4, 73, 43, 178, 24, 128], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1938, + "sample": { + "_tag": "ByteArray", + "bytearray": "2d29abc285dc6e868e362fb8" + }, + "cborHex": "4c2d29abc285dc6e868e362fb8", + "cborBytes": [76, 45, 41, 171, 194, 133, 220, 110, 134, 142, 54, 47, 184], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1939, + "sample": { + "_tag": "ByteArray", + "bytearray": "059306c307421694" + }, + "cborHex": "48059306c307421694", + "cborBytes": [72, 5, 147, 6, 195, 7, 66, 22, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1940, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc4d" + }, + "cborHex": "42fc4d", + "cborBytes": [66, 252, 77], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1941, + "sample": { + "_tag": "ByteArray", + "bytearray": "ffdc0232ad9c07fbfc04" + }, + "cborHex": "4affdc0232ad9c07fbfc04", + "cborBytes": [74, 255, 220, 2, 50, 173, 156, 7, 251, 252, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1942, + "sample": { + "_tag": "ByteArray", + "bytearray": "3f58" + }, + "cborHex": "423f58", + "cborBytes": [66, 63, 88], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1943, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa06" + }, + "cborHex": "42fa06", + "cborBytes": [66, 250, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1944, + "sample": { + "_tag": "ByteArray", + "bytearray": "e1cbaab6eeabd437" + }, + "cborHex": "48e1cbaab6eeabd437", + "cborBytes": [72, 225, 203, 170, 182, 238, 171, 212, 55], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1945, + "sample": { + "_tag": "ByteArray", + "bytearray": "7d8e06ed708a0a82" + }, + "cborHex": "487d8e06ed708a0a82", + "cborBytes": [72, 125, 142, 6, 237, 112, 138, 10, 130], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1946, + "sample": { + "_tag": "ByteArray", + "bytearray": "877a9118" + }, + "cborHex": "44877a9118", + "cborBytes": [68, 135, 122, 145, 24], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1947, + "sample": { + "_tag": "ByteArray", + "bytearray": "0002bd745f" + }, + "cborHex": "450002bd745f", + "cborBytes": [69, 0, 2, 189, 116, 95], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1948, + "sample": { + "_tag": "ByteArray", + "bytearray": "af4df184eedf8cd8c92e85" + }, + "cborHex": "4baf4df184eedf8cd8c92e85", + "cborBytes": [75, 175, 77, 241, 132, 238, 223, 140, 216, 201, 46, 133], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1949, + "sample": { + "_tag": "ByteArray", + "bytearray": "3cf5" + }, + "cborHex": "423cf5", + "cborBytes": [66, 60, 245], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1950, + "sample": { + "_tag": "ByteArray", + "bytearray": "5c2a213d21833b7c76" + }, + "cborHex": "495c2a213d21833b7c76", + "cborBytes": [73, 92, 42, 33, 61, 33, 131, 59, 124, 118], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1951, + "sample": { + "_tag": "ByteArray", + "bytearray": "5c10ffd0020ef9de" + }, + "cborHex": "485c10ffd0020ef9de", + "cborBytes": [72, 92, 16, 255, 208, 2, 14, 249, 222], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1952, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9fcb306fcf4029b02cb46" + }, + "cborHex": "4bf9fcb306fcf4029b02cb46", + "cborBytes": [75, 249, 252, 179, 6, 252, 244, 2, 155, 2, 203, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1953, + "sample": { + "_tag": "ByteArray", + "bytearray": "a8ae8720" + }, + "cborHex": "44a8ae8720", + "cborBytes": [68, 168, 174, 135, 32], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1954, + "sample": { + "_tag": "ByteArray", + "bytearray": "07f968a9" + }, + "cborHex": "4407f968a9", + "cborBytes": [68, 7, 249, 104, 169], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1955, + "sample": { + "_tag": "ByteArray", + "bytearray": "8248b0ad227662691b7dbb25" + }, + "cborHex": "4c8248b0ad227662691b7dbb25", + "cborBytes": [76, 130, 72, 176, 173, 34, 118, 98, 105, 27, 125, 187, 37], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1956, + "sample": { + "_tag": "ByteArray", + "bytearray": "2c03d92b064efdfbb108" + }, + "cborHex": "4a2c03d92b064efdfbb108", + "cborBytes": [74, 44, 3, 217, 43, 6, 78, 253, 251, 177, 8], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1957, + "sample": { + "_tag": "ByteArray", + "bytearray": "3c05" + }, + "cborHex": "423c05", + "cborBytes": [66, 60, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1958, + "sample": { + "_tag": "ByteArray", + "bytearray": "8dde" + }, + "cborHex": "428dde", + "cborBytes": [66, 141, 222], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1959, + "sample": { + "_tag": "ByteArray", + "bytearray": "ac89f3" + }, + "cborHex": "43ac89f3", + "cborBytes": [67, 172, 137, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1960, + "sample": { + "_tag": "ByteArray", + "bytearray": "9cc175f33cde3f" + }, + "cborHex": "479cc175f33cde3f", + "cborBytes": [71, 156, 193, 117, 243, 60, 222, 63], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1961, + "sample": { + "_tag": "ByteArray", + "bytearray": "f6e0" + }, + "cborHex": "42f6e0", + "cborBytes": [66, 246, 224], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1962, + "sample": { + "_tag": "ByteArray", + "bytearray": "1a129e9e378313" + }, + "cborHex": "471a129e9e378313", + "cborBytes": [71, 26, 18, 158, 158, 55, 131, 19], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1963, + "sample": { + "_tag": "ByteArray", + "bytearray": "45be8e6c68eceb0a818411" + }, + "cborHex": "4b45be8e6c68eceb0a818411", + "cborBytes": [75, 69, 190, 142, 108, 104, 236, 235, 10, 129, 132, 17], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1964, + "sample": { + "_tag": "ByteArray", + "bytearray": "a575fa4199af045200" + }, + "cborHex": "49a575fa4199af045200", + "cborBytes": [73, 165, 117, 250, 65, 153, 175, 4, 82, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1965, + "sample": { + "_tag": "ByteArray", + "bytearray": "5e4e" + }, + "cborHex": "425e4e", + "cborBytes": [66, 94, 78], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1966, + "sample": { + "_tag": "ByteArray", + "bytearray": "c0f7a2c6c34a1ce8" + }, + "cborHex": "48c0f7a2c6c34a1ce8", + "cborBytes": [72, 192, 247, 162, 198, 195, 74, 28, 232], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1967, + "sample": { + "_tag": "ByteArray", + "bytearray": "5301da28" + }, + "cborHex": "445301da28", + "cborBytes": [68, 83, 1, 218, 40], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1968, + "sample": { + "_tag": "ByteArray", + "bytearray": "690001f803cb88" + }, + "cborHex": "47690001f803cb88", + "cborBytes": [71, 105, 0, 1, 248, 3, 203, 136], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1969, + "sample": { + "_tag": "ByteArray", + "bytearray": "0171" + }, + "cborHex": "420171", + "cborBytes": [66, 1, 113], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1970, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9768d8e" + }, + "cborHex": "44f9768d8e", + "cborBytes": [68, 249, 118, 141, 142], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1971, + "sample": { + "_tag": "ByteArray", + "bytearray": "2bc1a0" + }, + "cborHex": "432bc1a0", + "cborBytes": [67, 43, 193, 160], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1972, + "sample": { + "_tag": "ByteArray", + "bytearray": "02fe4304" + }, + "cborHex": "4402fe4304", + "cborBytes": [68, 2, 254, 67, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1973, + "sample": { + "_tag": "ByteArray", + "bytearray": "87b5f675b07301cb7f94ca27" + }, + "cborHex": "4c87b5f675b07301cb7f94ca27", + "cborBytes": [76, 135, 181, 246, 117, 176, 115, 1, 203, 127, 148, 202, 39], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1974, + "sample": { + "_tag": "ByteArray", + "bytearray": "d57bd81d163d14" + }, + "cborHex": "47d57bd81d163d14", + "cborBytes": [71, 213, 123, 216, 29, 22, 61, 20], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1975, + "sample": { + "_tag": "ByteArray", + "bytearray": "07e9fd3a6ce6" + }, + "cborHex": "4607e9fd3a6ce6", + "cborBytes": [70, 7, 233, 253, 58, 108, 230], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1976, + "sample": { + "_tag": "ByteArray", + "bytearray": "710401f00400df" + }, + "cborHex": "47710401f00400df", + "cborBytes": [71, 113, 4, 1, 240, 4, 0, 223], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1977, + "sample": { + "_tag": "ByteArray", + "bytearray": "290200029202fd06fa056b" + }, + "cborHex": "4b290200029202fd06fa056b", + "cborBytes": [75, 41, 2, 0, 2, 146, 2, 253, 6, 250, 5, 107], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1978, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd433d53f3327632413c09a0" + }, + "cborHex": "4cfd433d53f3327632413c09a0", + "cborBytes": [76, 253, 67, 61, 83, 243, 50, 118, 50, 65, 60, 9, 160], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1979, + "sample": { + "_tag": "ByteArray", + "bytearray": "58f557183f51962617bc9344" + }, + "cborHex": "4c58f557183f51962617bc9344", + "cborBytes": [76, 88, 245, 87, 24, 63, 81, 150, 38, 23, 188, 147, 68], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1980, + "sample": { + "_tag": "ByteArray", + "bytearray": "0d7ff2ffd2c5" + }, + "cborHex": "460d7ff2ffd2c5", + "cborBytes": [70, 13, 127, 242, 255, 210, 197], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1981, + "sample": { + "_tag": "ByteArray", + "bytearray": "e5030702ff042c97" + }, + "cborHex": "48e5030702ff042c97", + "cborBytes": [72, 229, 3, 7, 2, 255, 4, 44, 151], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1982, + "sample": { + "_tag": "ByteArray", + "bytearray": "06fd01ff020dbb04" + }, + "cborHex": "4806fd01ff020dbb04", + "cborBytes": [72, 6, 253, 1, 255, 2, 13, 187, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1983, + "sample": { + "_tag": "ByteArray", + "bytearray": "670e90d903df8eebcf" + }, + "cborHex": "49670e90d903df8eebcf", + "cborBytes": [73, 103, 14, 144, 217, 3, 223, 142, 235, 207], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1984, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcf30798b8412a1c59" + }, + "cborHex": "49fcf30798b8412a1c59", + "cborBytes": [73, 252, 243, 7, 152, 184, 65, 42, 28, 89], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1985, + "sample": { + "_tag": "ByteArray", + "bytearray": "0ef59e633a133cd3" + }, + "cborHex": "480ef59e633a133cd3", + "cborBytes": [72, 14, 245, 158, 99, 58, 19, 60, 211], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1986, + "sample": { + "_tag": "ByteArray", + "bytearray": "ab9ad3d55e81" + }, + "cborHex": "46ab9ad3d55e81", + "cborBytes": [70, 171, 154, 211, 213, 94, 129], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1987, + "sample": { + "_tag": "ByteArray", + "bytearray": "c4fe05f983886efd" + }, + "cborHex": "48c4fe05f983886efd", + "cborBytes": [72, 196, 254, 5, 249, 131, 136, 110, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1988, + "sample": { + "_tag": "ByteArray", + "bytearray": "ae3e" + }, + "cborHex": "42ae3e", + "cborBytes": [66, 174, 62], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1989, + "sample": { + "_tag": "ByteArray", + "bytearray": "4e" + }, + "cborHex": "414e", + "cborBytes": [65, 78], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1990, + "sample": { + "_tag": "ByteArray", + "bytearray": "6d" + }, + "cborHex": "416d", + "cborBytes": [65, 109], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1991, + "sample": { + "_tag": "ByteArray", + "bytearray": "9b95c6c4093fdd8792e945c0" + }, + "cborHex": "4c9b95c6c4093fdd8792e945c0", + "cborBytes": [76, 155, 149, 198, 196, 9, 63, 221, 135, 146, 233, 69, 192], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1992, + "sample": { + "_tag": "ByteArray", + "bytearray": "07f9" + }, + "cborHex": "4207f9", + "cborBytes": [66, 7, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1993, + "sample": { + "_tag": "ByteArray", + "bytearray": "05b103" + }, + "cborHex": "4305b103", + "cborBytes": [67, 5, 177, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1994, + "sample": { + "_tag": "ByteArray", + "bytearray": "b48351" + }, + "cborHex": "43b48351", + "cborBytes": [67, 180, 131, 81], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1995, + "sample": { + "_tag": "ByteArray", + "bytearray": "5f32fdaf52" + }, + "cborHex": "455f32fdaf52", + "cborBytes": [69, 95, 50, 253, 175, 82], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1996, + "sample": { + "_tag": "ByteArray", + "bytearray": "923b9b60df57" + }, + "cborHex": "46923b9b60df57", + "cborBytes": [70, 146, 59, 155, 96, 223, 87], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1997, + "sample": { + "_tag": "ByteArray", + "bytearray": "ed03" + }, + "cborHex": "42ed03", + "cborBytes": [66, 237, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1998, + "sample": { + "_tag": "ByteArray", + "bytearray": "f3fab203" + }, + "cborHex": "44f3fab203", + "cborBytes": [68, 243, 250, 178, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 1999, + "sample": { + "_tag": "ByteArray", + "bytearray": "0706d4" + }, + "cborHex": "430706d4", + "cborBytes": [67, 7, 6, 212], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2000, + "sample": { + "_tag": "ByteArray", + "bytearray": "ea4e" + }, + "cborHex": "42ea4e", + "cborBytes": [66, 234, 78], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2001, + "sample": { + "_tag": "ByteArray", + "bytearray": "68828478de268e2f" + }, + "cborHex": "4868828478de268e2f", + "cborBytes": [72, 104, 130, 132, 120, 222, 38, 142, 47], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2002, + "sample": { + "_tag": "ByteArray", + "bytearray": "deed9a8df7" + }, + "cborHex": "45deed9a8df7", + "cborBytes": [69, 222, 237, 154, 141, 247], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2003, + "sample": { + "_tag": "ByteArray", + "bytearray": "d24c8c64c84048" + }, + "cborHex": "47d24c8c64c84048", + "cborBytes": [71, 210, 76, 140, 100, 200, 64, 72], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2004, + "sample": { + "_tag": "ByteArray", + "bytearray": "94fafdfcc6c5f90001cb" + }, + "cborHex": "4a94fafdfcc6c5f90001cb", + "cborBytes": [74, 148, 250, 253, 252, 198, 197, 249, 0, 1, 203], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2005, + "sample": { + "_tag": "ByteArray", + "bytearray": "2fdfc37de3" + }, + "cborHex": "452fdfc37de3", + "cborBytes": [69, 47, 223, 195, 125, 227], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2006, + "sample": { + "_tag": "ByteArray", + "bytearray": "f7f9994ff1e0e689976bf4" + }, + "cborHex": "4bf7f9994ff1e0e689976bf4", + "cborBytes": [75, 247, 249, 153, 79, 241, 224, 230, 137, 151, 107, 244], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2007, + "sample": { + "_tag": "ByteArray", + "bytearray": "90ce" + }, + "cborHex": "4290ce", + "cborBytes": [66, 144, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2008, + "sample": { + "_tag": "ByteArray", + "bytearray": "5691ef23e032072b" + }, + "cborHex": "485691ef23e032072b", + "cborBytes": [72, 86, 145, 239, 35, 224, 50, 7, 43], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2009, + "sample": { + "_tag": "ByteArray", + "bytearray": "1fd4ba8c4d78" + }, + "cborHex": "461fd4ba8c4d78", + "cborBytes": [70, 31, 212, 186, 140, 77, 120], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2010, + "sample": { + "_tag": "ByteArray", + "bytearray": "a4caf5" + }, + "cborHex": "43a4caf5", + "cborBytes": [67, 164, 202, 245], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2011, + "sample": { + "_tag": "ByteArray", + "bytearray": "4bf535c1501e617f7e0f2224" + }, + "cborHex": "4c4bf535c1501e617f7e0f2224", + "cborBytes": [76, 75, 245, 53, 193, 80, 30, 97, 127, 126, 15, 34, 36], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2012, + "sample": { + "_tag": "ByteArray", + "bytearray": "49eb8046" + }, + "cborHex": "4449eb8046", + "cborBytes": [68, 73, 235, 128, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2013, + "sample": { + "_tag": "ByteArray", + "bytearray": "0307029c0a00fcec0402" + }, + "cborHex": "4a0307029c0a00fcec0402", + "cborBytes": [74, 3, 7, 2, 156, 10, 0, 252, 236, 4, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2014, + "sample": { + "_tag": "ByteArray", + "bytearray": "07f764fea2045c" + }, + "cborHex": "4707f764fea2045c", + "cborBytes": [71, 7, 247, 100, 254, 162, 4, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2015, + "sample": { + "_tag": "ByteArray", + "bytearray": "409f21" + }, + "cborHex": "43409f21", + "cborBytes": [67, 64, 159, 33], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2016, + "sample": { + "_tag": "ByteArray", + "bytearray": "6782a10f4351" + }, + "cborHex": "466782a10f4351", + "cborBytes": [70, 103, 130, 161, 15, 67, 81], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2017, + "sample": { + "_tag": "ByteArray", + "bytearray": "dbb6da455e" + }, + "cborHex": "45dbb6da455e", + "cborBytes": [69, 219, 182, 218, 69, 94], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2018, + "sample": { + "_tag": "ByteArray", + "bytearray": "5c69" + }, + "cborHex": "425c69", + "cborBytes": [66, 92, 105], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2019, + "sample": { + "_tag": "ByteArray", + "bytearray": "2afa94f80502fae9f95704" + }, + "cborHex": "4b2afa94f80502fae9f95704", + "cborBytes": [75, 42, 250, 148, 248, 5, 2, 250, 233, 249, 87, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2020, + "sample": { + "_tag": "ByteArray", + "bytearray": "35543795df6a2fa000f8fd" + }, + "cborHex": "4b35543795df6a2fa000f8fd", + "cborBytes": [75, 53, 84, 55, 149, 223, 106, 47, 160, 0, 248, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2021, + "sample": { + "_tag": "ByteArray", + "bytearray": "f80504c2" + }, + "cborHex": "44f80504c2", + "cborBytes": [68, 248, 5, 4, 194], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2022, + "sample": { + "_tag": "ByteArray", + "bytearray": "9c5edae136b80072cae030c3" + }, + "cborHex": "4c9c5edae136b80072cae030c3", + "cborBytes": [76, 156, 94, 218, 225, 54, 184, 0, 114, 202, 224, 48, 195], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2023, + "sample": { + "_tag": "ByteArray", + "bytearray": "00cc44fa" + }, + "cborHex": "4400cc44fa", + "cborBytes": [68, 0, 204, 68, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2024, + "sample": { + "_tag": "ByteArray", + "bytearray": "8472833f515c" + }, + "cborHex": "468472833f515c", + "cborBytes": [70, 132, 114, 131, 63, 81, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2025, + "sample": { + "_tag": "ByteArray", + "bytearray": "63ed8446d6" + }, + "cborHex": "4563ed8446d6", + "cborBytes": [69, 99, 237, 132, 70, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2026, + "sample": { + "_tag": "ByteArray", + "bytearray": "0604fc020739fe020603361f" + }, + "cborHex": "4c0604fc020739fe020603361f", + "cborBytes": [76, 6, 4, 252, 2, 7, 57, 254, 2, 6, 3, 54, 31], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2027, + "sample": { + "_tag": "ByteArray", + "bytearray": "cc36" + }, + "cborHex": "42cc36", + "cborBytes": [66, 204, 54], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2028, + "sample": { + "_tag": "ByteArray", + "bytearray": "97fb06" + }, + "cborHex": "4397fb06", + "cborBytes": [67, 151, 251, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2029, + "sample": { + "_tag": "ByteArray", + "bytearray": "23329a0b8977b653ab" + }, + "cborHex": "4923329a0b8977b653ab", + "cborBytes": [73, 35, 50, 154, 11, 137, 119, 182, 83, 171], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2030, + "sample": { + "_tag": "ByteArray", + "bytearray": "06c0" + }, + "cborHex": "4206c0", + "cborBytes": [66, 6, 192], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2031, + "sample": { + "_tag": "ByteArray", + "bytearray": "d539072751ea4ea5056c33ff" + }, + "cborHex": "4cd539072751ea4ea5056c33ff", + "cborBytes": [76, 213, 57, 7, 39, 81, 234, 78, 165, 5, 108, 51, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2032, + "sample": { + "_tag": "ByteArray", + "bytearray": "1580932fdc40c980f8138809" + }, + "cborHex": "4c1580932fdc40c980f8138809", + "cborBytes": [76, 21, 128, 147, 47, 220, 64, 201, 128, 248, 19, 136, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2033, + "sample": { + "_tag": "ByteArray", + "bytearray": "4ee3" + }, + "cborHex": "424ee3", + "cborBytes": [66, 78, 227], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2034, + "sample": { + "_tag": "ByteArray", + "bytearray": "01fe4e779103c1030503" + }, + "cborHex": "4a01fe4e779103c1030503", + "cborBytes": [74, 1, 254, 78, 119, 145, 3, 193, 3, 5, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2035, + "sample": { + "_tag": "ByteArray", + "bytearray": "0301" + }, + "cborHex": "420301", + "cborBytes": [66, 3, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2036, + "sample": { + "_tag": "ByteArray", + "bytearray": "0f6c5f679e6b753aa3ac1e" + }, + "cborHex": "4b0f6c5f679e6b753aa3ac1e", + "cborBytes": [75, 15, 108, 95, 103, 158, 107, 117, 58, 163, 172, 30], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2037, + "sample": { + "_tag": "ByteArray", + "bytearray": "04fa0406" + }, + "cborHex": "4404fa0406", + "cborBytes": [68, 4, 250, 4, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2038, + "sample": { + "_tag": "ByteArray", + "bytearray": "9d4d1d4bb6830b59" + }, + "cborHex": "489d4d1d4bb6830b59", + "cborBytes": [72, 157, 77, 29, 75, 182, 131, 11, 89], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2039, + "sample": { + "_tag": "ByteArray", + "bytearray": "e2f8" + }, + "cborHex": "42e2f8", + "cborBytes": [66, 226, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2040, + "sample": { + "_tag": "ByteArray", + "bytearray": "13827b93ff6eb13117" + }, + "cborHex": "4913827b93ff6eb13117", + "cborBytes": [73, 19, 130, 123, 147, 255, 110, 177, 49, 23], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2041, + "sample": { + "_tag": "ByteArray", + "bytearray": "ae" + }, + "cborHex": "41ae", + "cborBytes": [65, 174], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2042, + "sample": { + "_tag": "ByteArray", + "bytearray": "030139" + }, + "cborHex": "43030139", + "cborBytes": [67, 3, 1, 57], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2043, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcf86a1bf9890751000540fa" + }, + "cborHex": "4cfcf86a1bf9890751000540fa", + "cborBytes": [76, 252, 248, 106, 27, 249, 137, 7, 81, 0, 5, 64, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2044, + "sample": { + "_tag": "ByteArray", + "bytearray": "00d41606" + }, + "cborHex": "4400d41606", + "cborBytes": [68, 0, 212, 22, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2045, + "sample": { + "_tag": "ByteArray", + "bytearray": "94e7" + }, + "cborHex": "4294e7", + "cborBytes": [66, 148, 231], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2046, + "sample": { + "_tag": "ByteArray", + "bytearray": "0485fc" + }, + "cborHex": "430485fc", + "cborBytes": [67, 4, 133, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2047, + "sample": { + "_tag": "ByteArray", + "bytearray": "84268cac5d01f925f90701" + }, + "cborHex": "4b84268cac5d01f925f90701", + "cborBytes": [75, 132, 38, 140, 172, 93, 1, 249, 37, 249, 7, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2048, + "sample": { + "_tag": "ByteArray", + "bytearray": "625a8e3cf33d3c0f900e" + }, + "cborHex": "4a625a8e3cf33d3c0f900e", + "cborBytes": [74, 98, 90, 142, 60, 243, 61, 60, 15, 144, 14], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2049, + "sample": { + "_tag": "ByteArray", + "bytearray": "4cefeab2dc" + }, + "cborHex": "454cefeab2dc", + "cborBytes": [69, 76, 239, 234, 178, 220], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2050, + "sample": { + "_tag": "ByteArray", + "bytearray": "ddfe5ce456196f03" + }, + "cborHex": "48ddfe5ce456196f03", + "cborBytes": [72, 221, 254, 92, 228, 86, 25, 111, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2051, + "sample": { + "_tag": "ByteArray", + "bytearray": "ecb2a2" + }, + "cborHex": "43ecb2a2", + "cborBytes": [67, 236, 178, 162], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2052, + "sample": { + "_tag": "ByteArray", + "bytearray": "a7f840fc0106020612ba" + }, + "cborHex": "4aa7f840fc0106020612ba", + "cborBytes": [74, 167, 248, 64, 252, 1, 6, 2, 6, 18, 186], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2053, + "sample": { + "_tag": "ByteArray", + "bytearray": "7862" + }, + "cborHex": "427862", + "cborBytes": [66, 120, 98], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2054, + "sample": { + "_tag": "ByteArray", + "bytearray": "ca57ec" + }, + "cborHex": "43ca57ec", + "cborBytes": [67, 202, 87, 236], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2055, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd00210001fff4" + }, + "cborHex": "47fd00210001fff4", + "cborBytes": [71, 253, 0, 33, 0, 1, 255, 244], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2056, + "sample": { + "_tag": "ByteArray", + "bytearray": "0103c9fe914efb" + }, + "cborHex": "470103c9fe914efb", + "cborBytes": [71, 1, 3, 201, 254, 145, 78, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2057, + "sample": { + "_tag": "ByteArray", + "bytearray": "c6b3e53cfc4c04b802" + }, + "cborHex": "49c6b3e53cfc4c04b802", + "cborBytes": [73, 198, 179, 229, 60, 252, 76, 4, 184, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2058, + "sample": { + "_tag": "ByteArray", + "bytearray": "19e0fac9d0fa" + }, + "cborHex": "4619e0fac9d0fa", + "cborBytes": [70, 25, 224, 250, 201, 208, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2059, + "sample": { + "_tag": "ByteArray", + "bytearray": "eb0870ed" + }, + "cborHex": "44eb0870ed", + "cborBytes": [68, 235, 8, 112, 237], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2060, + "sample": { + "_tag": "ByteArray", + "bytearray": "fef90546" + }, + "cborHex": "44fef90546", + "cborBytes": [68, 254, 249, 5, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2061, + "sample": { + "_tag": "ByteArray", + "bytearray": "30" + }, + "cborHex": "4130", + "cborBytes": [65, 48], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2062, + "sample": { + "_tag": "ByteArray", + "bytearray": "3159b905" + }, + "cborHex": "443159b905", + "cborBytes": [68, 49, 89, 185, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2063, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa03fd" + }, + "cborHex": "43fa03fd", + "cborBytes": [67, 250, 3, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2064, + "sample": { + "_tag": "ByteArray", + "bytearray": "af2324353e86001ac9d8" + }, + "cborHex": "4aaf2324353e86001ac9d8", + "cborBytes": [74, 175, 35, 36, 53, 62, 134, 0, 26, 201, 216], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2065, + "sample": { + "_tag": "ByteArray", + "bytearray": "8e88f84dcbfff1773c" + }, + "cborHex": "498e88f84dcbfff1773c", + "cborBytes": [73, 142, 136, 248, 77, 203, 255, 241, 119, 60], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2066, + "sample": { + "_tag": "ByteArray", + "bytearray": "c8cb33" + }, + "cborHex": "43c8cb33", + "cborBytes": [67, 200, 203, 51], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2067, + "sample": { + "_tag": "ByteArray", + "bytearray": "0499fa4003fa3e15077111" + }, + "cborHex": "4b0499fa4003fa3e15077111", + "cborBytes": [75, 4, 153, 250, 64, 3, 250, 62, 21, 7, 113, 17], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2068, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8060200" + }, + "cborHex": "44f8060200", + "cborBytes": [68, 248, 6, 2, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2069, + "sample": { + "_tag": "ByteArray", + "bytearray": "68924875c21028ea93c95e" + }, + "cborHex": "4b68924875c21028ea93c95e", + "cborBytes": [75, 104, 146, 72, 117, 194, 16, 40, 234, 147, 201, 94], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2070, + "sample": { + "_tag": "ByteArray", + "bytearray": "b94d" + }, + "cborHex": "42b94d", + "cborBytes": [66, 185, 77], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2071, + "sample": { + "_tag": "ByteArray", + "bytearray": "545c" + }, + "cborHex": "42545c", + "cborBytes": [66, 84, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2072, + "sample": { + "_tag": "ByteArray", + "bytearray": "a928f32839c83ff6c023" + }, + "cborHex": "4aa928f32839c83ff6c023", + "cborBytes": [74, 169, 40, 243, 40, 57, 200, 63, 246, 192, 35], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2073, + "sample": { + "_tag": "ByteArray", + "bytearray": "9271d3b0877c435a" + }, + "cborHex": "489271d3b0877c435a", + "cborBytes": [72, 146, 113, 211, 176, 135, 124, 67, 90], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2074, + "sample": { + "_tag": "ByteArray", + "bytearray": "facb04" + }, + "cborHex": "43facb04", + "cborBytes": [67, 250, 203, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2075, + "sample": { + "_tag": "ByteArray", + "bytearray": "c32200cbbb98130306fa" + }, + "cborHex": "4ac32200cbbb98130306fa", + "cborBytes": [74, 195, 34, 0, 203, 187, 152, 19, 3, 6, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2076, + "sample": { + "_tag": "ByteArray", + "bytearray": "72232e34fe46e531" + }, + "cborHex": "4872232e34fe46e531", + "cborBytes": [72, 114, 35, 46, 52, 254, 70, 229, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2077, + "sample": { + "_tag": "ByteArray", + "bytearray": "f7" + }, + "cborHex": "41f7", + "cborBytes": [65, 247], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2078, + "sample": { + "_tag": "ByteArray", + "bytearray": "63fdca" + }, + "cborHex": "4363fdca", + "cborBytes": [67, 99, 253, 202], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2079, + "sample": { + "_tag": "ByteArray", + "bytearray": "8164db32aaa05f18c7" + }, + "cborHex": "498164db32aaa05f18c7", + "cborBytes": [73, 129, 100, 219, 50, 170, 160, 95, 24, 199], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2080, + "sample": { + "_tag": "ByteArray", + "bytearray": "01bc00" + }, + "cborHex": "4301bc00", + "cborBytes": [67, 1, 188, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2081, + "sample": { + "_tag": "ByteArray", + "bytearray": "5df93e" + }, + "cborHex": "435df93e", + "cborBytes": [67, 93, 249, 62], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2082, + "sample": { + "_tag": "ByteArray", + "bytearray": "f204" + }, + "cborHex": "42f204", + "cborBytes": [66, 242, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2083, + "sample": { + "_tag": "ByteArray", + "bytearray": "64246956" + }, + "cborHex": "4464246956", + "cborBytes": [68, 100, 36, 105, 86], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2084, + "sample": { + "_tag": "ByteArray", + "bytearray": "29856626defbba" + }, + "cborHex": "4729856626defbba", + "cborBytes": [71, 41, 133, 102, 38, 222, 251, 186], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2085, + "sample": { + "_tag": "ByteArray", + "bytearray": "07b3" + }, + "cborHex": "4207b3", + "cborBytes": [66, 7, 179], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2086, + "sample": { + "_tag": "ByteArray", + "bytearray": "48e1ee05a03dd0" + }, + "cborHex": "4748e1ee05a03dd0", + "cborBytes": [71, 72, 225, 238, 5, 160, 61, 208], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2087, + "sample": { + "_tag": "ByteArray", + "bytearray": "d9f09b9f25" + }, + "cborHex": "45d9f09b9f25", + "cborBytes": [69, 217, 240, 155, 159, 37], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2088, + "sample": { + "_tag": "ByteArray", + "bytearray": "7208bd3d" + }, + "cborHex": "447208bd3d", + "cborBytes": [68, 114, 8, 189, 61], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2089, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8cfe266" + }, + "cborHex": "44f8cfe266", + "cborBytes": [68, 248, 207, 226, 102], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2090, + "sample": { + "_tag": "ByteArray", + "bytearray": "996cd0" + }, + "cborHex": "43996cd0", + "cborBytes": [67, 153, 108, 208], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2091, + "sample": { + "_tag": "ByteArray", + "bytearray": "850300" + }, + "cborHex": "43850300", + "cborBytes": [67, 133, 3, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2092, + "sample": { + "_tag": "ByteArray", + "bytearray": "a604a3" + }, + "cborHex": "43a604a3", + "cborBytes": [67, 166, 4, 163], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2093, + "sample": { + "_tag": "ByteArray", + "bytearray": "5fde1a25478f" + }, + "cborHex": "465fde1a25478f", + "cborBytes": [70, 95, 222, 26, 37, 71, 143], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2094, + "sample": { + "_tag": "ByteArray", + "bytearray": "33" + }, + "cborHex": "4133", + "cborBytes": [65, 51], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2095, + "sample": { + "_tag": "ByteArray", + "bytearray": "004aab00" + }, + "cborHex": "44004aab00", + "cborBytes": [68, 0, 74, 171, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2096, + "sample": { + "_tag": "ByteArray", + "bytearray": "1e459348" + }, + "cborHex": "441e459348", + "cborBytes": [68, 30, 69, 147, 72], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2097, + "sample": { + "_tag": "ByteArray", + "bytearray": "94f302" + }, + "cborHex": "4394f302", + "cborBytes": [67, 148, 243, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2098, + "sample": { + "_tag": "ByteArray", + "bytearray": "ef740204" + }, + "cborHex": "44ef740204", + "cborBytes": [68, 239, 116, 2, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2099, + "sample": { + "_tag": "ByteArray", + "bytearray": "275c931d" + }, + "cborHex": "44275c931d", + "cborBytes": [68, 39, 92, 147, 29], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2100, + "sample": { + "_tag": "ByteArray", + "bytearray": "e44d31" + }, + "cborHex": "43e44d31", + "cborBytes": [67, 228, 77, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2101, + "sample": { + "_tag": "ByteArray", + "bytearray": "c13cfd99da7b" + }, + "cborHex": "46c13cfd99da7b", + "cborBytes": [70, 193, 60, 253, 153, 218, 123], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2102, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe3986" + }, + "cborHex": "43fe3986", + "cborBytes": [67, 254, 57, 134], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2103, + "sample": { + "_tag": "ByteArray", + "bytearray": "9f" + }, + "cborHex": "419f", + "cborBytes": [65, 159], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2104, + "sample": { + "_tag": "ByteArray", + "bytearray": "c7ae9c24a72d792f96b1" + }, + "cborHex": "4ac7ae9c24a72d792f96b1", + "cborBytes": [74, 199, 174, 156, 36, 167, 45, 121, 47, 150, 177], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2105, + "sample": { + "_tag": "ByteArray", + "bytearray": "e2a411082a1a" + }, + "cborHex": "46e2a411082a1a", + "cborBytes": [70, 226, 164, 17, 8, 42, 26], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2106, + "sample": { + "_tag": "ByteArray", + "bytearray": "0502e902f92ffd" + }, + "cborHex": "470502e902f92ffd", + "cborBytes": [71, 5, 2, 233, 2, 249, 47, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2107, + "sample": { + "_tag": "ByteArray", + "bytearray": "c0" + }, + "cborHex": "41c0", + "cborBytes": [65, 192], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2108, + "sample": { + "_tag": "ByteArray", + "bytearray": "055179" + }, + "cborHex": "43055179", + "cborBytes": [67, 5, 81, 121], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2109, + "sample": { + "_tag": "ByteArray", + "bytearray": "e56c02cb030407fa" + }, + "cborHex": "48e56c02cb030407fa", + "cborBytes": [72, 229, 108, 2, 203, 3, 4, 7, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2110, + "sample": { + "_tag": "ByteArray", + "bytearray": "5e" + }, + "cborHex": "415e", + "cborBytes": [65, 94], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2111, + "sample": { + "_tag": "ByteArray", + "bytearray": "2ddc8334af64" + }, + "cborHex": "462ddc8334af64", + "cborBytes": [70, 45, 220, 131, 52, 175, 100], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2112, + "sample": { + "_tag": "ByteArray", + "bytearray": "07ff07" + }, + "cborHex": "4307ff07", + "cborBytes": [67, 7, 255, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2113, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc0506cc060106" + }, + "cborHex": "47fc0506cc060106", + "cborBytes": [71, 252, 5, 6, 204, 6, 1, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2114, + "sample": { + "_tag": "ByteArray", + "bytearray": "22e4dccd5d" + }, + "cborHex": "4522e4dccd5d", + "cborBytes": [69, 34, 228, 220, 205, 93], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2115, + "sample": { + "_tag": "ByteArray", + "bytearray": "ea4bc9c7ba98fe79baba39" + }, + "cborHex": "4bea4bc9c7ba98fe79baba39", + "cborBytes": [75, 234, 75, 201, 199, 186, 152, 254, 121, 186, 186, 57], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2116, + "sample": { + "_tag": "ByteArray", + "bytearray": "69d158ec9458592b8a4ce82e" + }, + "cborHex": "4c69d158ec9458592b8a4ce82e", + "cborBytes": [76, 105, 209, 88, 236, 148, 88, 89, 43, 138, 76, 232, 46], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2117, + "sample": { + "_tag": "ByteArray", + "bytearray": "05b9da2611fbdccf" + }, + "cborHex": "4805b9da2611fbdccf", + "cborBytes": [72, 5, 185, 218, 38, 17, 251, 220, 207], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2118, + "sample": { + "_tag": "ByteArray", + "bytearray": "0107079587" + }, + "cborHex": "450107079587", + "cborBytes": [69, 1, 7, 7, 149, 135], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2119, + "sample": { + "_tag": "ByteArray", + "bytearray": "0403a0a20082c9ee6770" + }, + "cborHex": "4a0403a0a20082c9ee6770", + "cborBytes": [74, 4, 3, 160, 162, 0, 130, 201, 238, 103, 112], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2120, + "sample": { + "_tag": "ByteArray", + "bytearray": "6747" + }, + "cborHex": "426747", + "cborBytes": [66, 103, 71], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2121, + "sample": { + "_tag": "ByteArray", + "bytearray": "05780400" + }, + "cborHex": "4405780400", + "cborBytes": [68, 5, 120, 4, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2122, + "sample": { + "_tag": "ByteArray", + "bytearray": "d9" + }, + "cborHex": "41d9", + "cborBytes": [65, 217], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2123, + "sample": { + "_tag": "ByteArray", + "bytearray": "be83fd04" + }, + "cborHex": "44be83fd04", + "cborBytes": [68, 190, 131, 253, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2124, + "sample": { + "_tag": "ByteArray", + "bytearray": "3aadcbb6fc43" + }, + "cborHex": "463aadcbb6fc43", + "cborBytes": [70, 58, 173, 203, 182, 252, 67], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2125, + "sample": { + "_tag": "ByteArray", + "bytearray": "b302d65411" + }, + "cborHex": "45b302d65411", + "cborBytes": [69, 179, 2, 214, 84, 17], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2126, + "sample": { + "_tag": "ByteArray", + "bytearray": "dc" + }, + "cborHex": "41dc", + "cborBytes": [65, 220], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2127, + "sample": { + "_tag": "ByteArray", + "bytearray": "9098c0753b90" + }, + "cborHex": "469098c0753b90", + "cborBytes": [70, 144, 152, 192, 117, 59, 144], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2128, + "sample": { + "_tag": "ByteArray", + "bytearray": "b35709316efe31cc" + }, + "cborHex": "48b35709316efe31cc", + "cborBytes": [72, 179, 87, 9, 49, 110, 254, 49, 204], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2129, + "sample": { + "_tag": "ByteArray", + "bytearray": "0485" + }, + "cborHex": "420485", + "cborBytes": [66, 4, 133], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2130, + "sample": { + "_tag": "ByteArray", + "bytearray": "484f05f7f900607802" + }, + "cborHex": "49484f05f7f900607802", + "cborBytes": [73, 72, 79, 5, 247, 249, 0, 96, 120, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2131, + "sample": { + "_tag": "ByteArray", + "bytearray": "0437faff05250097" + }, + "cborHex": "480437faff05250097", + "cborBytes": [72, 4, 55, 250, 255, 5, 37, 0, 151], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2132, + "sample": { + "_tag": "ByteArray", + "bytearray": "2960b75c16ce" + }, + "cborHex": "462960b75c16ce", + "cborBytes": [70, 41, 96, 183, 92, 22, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2133, + "sample": { + "_tag": "ByteArray", + "bytearray": "ca04274802c8e1" + }, + "cborHex": "47ca04274802c8e1", + "cborBytes": [71, 202, 4, 39, 72, 2, 200, 225], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2134, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd01fb" + }, + "cborHex": "43fd01fb", + "cborBytes": [67, 253, 1, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2135, + "sample": { + "_tag": "ByteArray", + "bytearray": "14" + }, + "cborHex": "4114", + "cborBytes": [65, 20], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2136, + "sample": { + "_tag": "ByteArray", + "bytearray": "b38541" + }, + "cborHex": "43b38541", + "cborBytes": [67, 179, 133, 65], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2137, + "sample": { + "_tag": "ByteArray", + "bytearray": "d5b6249a3136d94327bc032b" + }, + "cborHex": "4cd5b6249a3136d94327bc032b", + "cborBytes": [76, 213, 182, 36, 154, 49, 54, 217, 67, 39, 188, 3, 43], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2138, + "sample": { + "_tag": "ByteArray", + "bytearray": "6bb8" + }, + "cborHex": "426bb8", + "cborBytes": [66, 107, 184], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2139, + "sample": { + "_tag": "ByteArray", + "bytearray": "e69e44ffe839c934" + }, + "cborHex": "48e69e44ffe839c934", + "cborBytes": [72, 230, 158, 68, 255, 232, 57, 201, 52], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2140, + "sample": { + "_tag": "ByteArray", + "bytearray": "03212ff8fd01feddfad9bd" + }, + "cborHex": "4b03212ff8fd01feddfad9bd", + "cborBytes": [75, 3, 33, 47, 248, 253, 1, 254, 221, 250, 217, 189], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2141, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc07" + }, + "cborHex": "42fc07", + "cborBytes": [66, 252, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2142, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb01031f" + }, + "cborHex": "44fb01031f", + "cborBytes": [68, 251, 1, 3, 31], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2143, + "sample": { + "_tag": "ByteArray", + "bytearray": "e7a50595083a" + }, + "cborHex": "46e7a50595083a", + "cborBytes": [70, 231, 165, 5, 149, 8, 58], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2144, + "sample": { + "_tag": "ByteArray", + "bytearray": "8e" + }, + "cborHex": "418e", + "cborBytes": [65, 142], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2145, + "sample": { + "_tag": "ByteArray", + "bytearray": "df9c23" + }, + "cborHex": "43df9c23", + "cborBytes": [67, 223, 156, 35], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2146, + "sample": { + "_tag": "ByteArray", + "bytearray": "d98baa1572d25f" + }, + "cborHex": "47d98baa1572d25f", + "cborBytes": [71, 217, 139, 170, 21, 114, 210, 95], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2147, + "sample": { + "_tag": "ByteArray", + "bytearray": "d55806cd7722" + }, + "cborHex": "46d55806cd7722", + "cborBytes": [70, 213, 88, 6, 205, 119, 34], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2148, + "sample": { + "_tag": "ByteArray", + "bytearray": "f2e011876f4fb311" + }, + "cborHex": "48f2e011876f4fb311", + "cborBytes": [72, 242, 224, 17, 135, 111, 79, 179, 17], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2149, + "sample": { + "_tag": "ByteArray", + "bytearray": "2a4ceb2ff7" + }, + "cborHex": "452a4ceb2ff7", + "cborBytes": [69, 42, 76, 235, 47, 247], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2150, + "sample": { + "_tag": "ByteArray", + "bytearray": "8818edf8" + }, + "cborHex": "448818edf8", + "cborBytes": [68, 136, 24, 237, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2151, + "sample": { + "_tag": "ByteArray", + "bytearray": "1ee142cede" + }, + "cborHex": "451ee142cede", + "cborBytes": [69, 30, 225, 66, 206, 222], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2152, + "sample": { + "_tag": "ByteArray", + "bytearray": "832973b0" + }, + "cborHex": "44832973b0", + "cborBytes": [68, 131, 41, 115, 176], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2153, + "sample": { + "_tag": "ByteArray", + "bytearray": "06cb7f0602fcff11fecefd7c" + }, + "cborHex": "4c06cb7f0602fcff11fecefd7c", + "cborBytes": [76, 6, 203, 127, 6, 2, 252, 255, 17, 254, 206, 253, 124], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2154, + "sample": { + "_tag": "ByteArray", + "bytearray": "2606a6" + }, + "cborHex": "432606a6", + "cborBytes": [67, 38, 6, 166], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2155, + "sample": { + "_tag": "ByteArray", + "bytearray": "5a6f066b333b396e7a8431" + }, + "cborHex": "4b5a6f066b333b396e7a8431", + "cborBytes": [75, 90, 111, 6, 107, 51, 59, 57, 110, 122, 132, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2156, + "sample": { + "_tag": "ByteArray", + "bytearray": "f900034fda" + }, + "cborHex": "45f900034fda", + "cborBytes": [69, 249, 0, 3, 79, 218], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2157, + "sample": { + "_tag": "ByteArray", + "bytearray": "4e2387c0da639438c9" + }, + "cborHex": "494e2387c0da639438c9", + "cborBytes": [73, 78, 35, 135, 192, 218, 99, 148, 56, 201], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2158, + "sample": { + "_tag": "ByteArray", + "bytearray": "012106a9b1" + }, + "cborHex": "45012106a9b1", + "cborBytes": [69, 1, 33, 6, 169, 177], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2159, + "sample": { + "_tag": "ByteArray", + "bytearray": "842d860dc2" + }, + "cborHex": "45842d860dc2", + "cborBytes": [69, 132, 45, 134, 13, 194], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2160, + "sample": { + "_tag": "ByteArray", + "bytearray": "03eedf6b" + }, + "cborHex": "4403eedf6b", + "cborBytes": [68, 3, 238, 223, 107], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2161, + "sample": { + "_tag": "ByteArray", + "bytearray": "cea8" + }, + "cborHex": "42cea8", + "cborBytes": [66, 206, 168], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2162, + "sample": { + "_tag": "ByteArray", + "bytearray": "c50796fe40046ffd2442a504" + }, + "cborHex": "4cc50796fe40046ffd2442a504", + "cborBytes": [76, 197, 7, 150, 254, 64, 4, 111, 253, 36, 66, 165, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2163, + "sample": { + "_tag": "ByteArray", + "bytearray": "05c103" + }, + "cborHex": "4305c103", + "cborBytes": [67, 5, 193, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2164, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa23b09562748904fe" + }, + "cborHex": "49fa23b09562748904fe", + "cborBytes": [73, 250, 35, 176, 149, 98, 116, 137, 4, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2165, + "sample": { + "_tag": "ByteArray", + "bytearray": "d0edf928" + }, + "cborHex": "44d0edf928", + "cborBytes": [68, 208, 237, 249, 40], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2166, + "sample": { + "_tag": "ByteArray", + "bytearray": "6646" + }, + "cborHex": "426646", + "cborBytes": [66, 102, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2167, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcd31935a5a5d5dbc3429b3c" + }, + "cborHex": "4cfcd31935a5a5d5dbc3429b3c", + "cborBytes": [76, 252, 211, 25, 53, 165, 165, 213, 219, 195, 66, 155, 60], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2168, + "sample": { + "_tag": "ByteArray", + "bytearray": "9e3500ce8c" + }, + "cborHex": "459e3500ce8c", + "cborBytes": [69, 158, 53, 0, 206, 140], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2169, + "sample": { + "_tag": "ByteArray", + "bytearray": "67f901ff00cc87da06" + }, + "cborHex": "4967f901ff00cc87da06", + "cborBytes": [73, 103, 249, 1, 255, 0, 204, 135, 218, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2170, + "sample": { + "_tag": "ByteArray", + "bytearray": "050724" + }, + "cborHex": "43050724", + "cborBytes": [67, 5, 7, 36], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2171, + "sample": { + "_tag": "ByteArray", + "bytearray": "b6437a580d" + }, + "cborHex": "45b6437a580d", + "cborBytes": [69, 182, 67, 122, 88, 13], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2172, + "sample": { + "_tag": "ByteArray", + "bytearray": "0006" + }, + "cborHex": "420006", + "cborBytes": [66, 0, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2173, + "sample": { + "_tag": "ByteArray", + "bytearray": "c521f0032b49bdb6" + }, + "cborHex": "48c521f0032b49bdb6", + "cborBytes": [72, 197, 33, 240, 3, 43, 73, 189, 182], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2174, + "sample": { + "_tag": "ByteArray", + "bytearray": "52ebc59815a543" + }, + "cborHex": "4752ebc59815a543", + "cborBytes": [71, 82, 235, 197, 152, 21, 165, 67], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2175, + "sample": { + "_tag": "ByteArray", + "bytearray": "3d2f8a6e3bf0" + }, + "cborHex": "463d2f8a6e3bf0", + "cborBytes": [70, 61, 47, 138, 110, 59, 240], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2176, + "sample": { + "_tag": "ByteArray", + "bytearray": "58e946c3e489" + }, + "cborHex": "4658e946c3e489", + "cborBytes": [70, 88, 233, 70, 195, 228, 137], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2177, + "sample": { + "_tag": "ByteArray", + "bytearray": "02f92d" + }, + "cborHex": "4302f92d", + "cborBytes": [67, 2, 249, 45], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2178, + "sample": { + "_tag": "ByteArray", + "bytearray": "cc04b1067e74943a0005" + }, + "cborHex": "4acc04b1067e74943a0005", + "cborBytes": [74, 204, 4, 177, 6, 126, 116, 148, 58, 0, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2179, + "sample": { + "_tag": "ByteArray", + "bytearray": "a010f9" + }, + "cborHex": "43a010f9", + "cborBytes": [67, 160, 16, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2180, + "sample": { + "_tag": "ByteArray", + "bytearray": "99585db0e0199046" + }, + "cborHex": "4899585db0e0199046", + "cborBytes": [72, 153, 88, 93, 176, 224, 25, 144, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2181, + "sample": { + "_tag": "ByteArray", + "bytearray": "7502fd" + }, + "cborHex": "437502fd", + "cborBytes": [67, 117, 2, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2182, + "sample": { + "_tag": "ByteArray", + "bytearray": "35fffb07" + }, + "cborHex": "4435fffb07", + "cborBytes": [68, 53, 255, 251, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2183, + "sample": { + "_tag": "ByteArray", + "bytearray": "07fe37" + }, + "cborHex": "4307fe37", + "cborBytes": [67, 7, 254, 55], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2184, + "sample": { + "_tag": "ByteArray", + "bytearray": "c1e7029d" + }, + "cborHex": "44c1e7029d", + "cborBytes": [68, 193, 231, 2, 157], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2185, + "sample": { + "_tag": "ByteArray", + "bytearray": "3210e2393b95" + }, + "cborHex": "463210e2393b95", + "cborBytes": [70, 50, 16, 226, 57, 59, 149], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2186, + "sample": { + "_tag": "ByteArray", + "bytearray": "168721d1d9d5" + }, + "cborHex": "46168721d1d9d5", + "cborBytes": [70, 22, 135, 33, 209, 217, 213], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2187, + "sample": { + "_tag": "ByteArray", + "bytearray": "d368a2df422e" + }, + "cborHex": "46d368a2df422e", + "cborBytes": [70, 211, 104, 162, 223, 66, 46], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2188, + "sample": { + "_tag": "ByteArray", + "bytearray": "b2c088a0335d3463c9" + }, + "cborHex": "49b2c088a0335d3463c9", + "cborBytes": [73, 178, 192, 136, 160, 51, 93, 52, 99, 201], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2189, + "sample": { + "_tag": "ByteArray", + "bytearray": "591e079eff" + }, + "cborHex": "45591e079eff", + "cborBytes": [69, 89, 30, 7, 158, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2190, + "sample": { + "_tag": "ByteArray", + "bytearray": "c3fbc206c019" + }, + "cborHex": "46c3fbc206c019", + "cborBytes": [70, 195, 251, 194, 6, 192, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2191, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe110300020207f9f0" + }, + "cborHex": "49fe110300020207f9f0", + "cborBytes": [73, 254, 17, 3, 0, 2, 2, 7, 249, 240], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2192, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc024b0743f9cc" + }, + "cborHex": "47fc024b0743f9cc", + "cborBytes": [71, 252, 2, 75, 7, 67, 249, 204], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2193, + "sample": { + "_tag": "ByteArray", + "bytearray": "0774fb02" + }, + "cborHex": "440774fb02", + "cborBytes": [68, 7, 116, 251, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2194, + "sample": { + "_tag": "ByteArray", + "bytearray": "309ca60c99c0" + }, + "cborHex": "46309ca60c99c0", + "cborBytes": [70, 48, 156, 166, 12, 153, 192], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2195, + "sample": { + "_tag": "ByteArray", + "bytearray": "9f07" + }, + "cborHex": "429f07", + "cborBytes": [66, 159, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2196, + "sample": { + "_tag": "ByteArray", + "bytearray": "0105" + }, + "cborHex": "420105", + "cborBytes": [66, 1, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2197, + "sample": { + "_tag": "ByteArray", + "bytearray": "03fb06030400fecc0637" + }, + "cborHex": "4a03fb06030400fecc0637", + "cborBytes": [74, 3, 251, 6, 3, 4, 0, 254, 204, 6, 55], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2198, + "sample": { + "_tag": "ByteArray", + "bytearray": "008830" + }, + "cborHex": "43008830", + "cborBytes": [67, 0, 136, 48], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2199, + "sample": { + "_tag": "ByteArray", + "bytearray": "13262e25d635916210391e25" + }, + "cborHex": "4c13262e25d635916210391e25", + "cborBytes": [76, 19, 38, 46, 37, 214, 53, 145, 98, 16, 57, 30, 37], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2200, + "sample": { + "_tag": "ByteArray", + "bytearray": "b25c9af62de360" + }, + "cborHex": "47b25c9af62de360", + "cborBytes": [71, 178, 92, 154, 246, 45, 227, 96], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2201, + "sample": { + "_tag": "ByteArray", + "bytearray": "6a" + }, + "cborHex": "416a", + "cborBytes": [65, 106], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2202, + "sample": { + "_tag": "ByteArray", + "bytearray": "da78de8bee218e" + }, + "cborHex": "47da78de8bee218e", + "cborBytes": [71, 218, 120, 222, 139, 238, 33, 142], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2203, + "sample": { + "_tag": "ByteArray", + "bytearray": "7b0b14f973" + }, + "cborHex": "457b0b14f973", + "cborBytes": [69, 123, 11, 20, 249, 115], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2204, + "sample": { + "_tag": "ByteArray", + "bytearray": "535b420c12fc6494" + }, + "cborHex": "48535b420c12fc6494", + "cborBytes": [72, 83, 91, 66, 12, 18, 252, 100, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2205, + "sample": { + "_tag": "ByteArray", + "bytearray": "206f577ec215e63cebcb47" + }, + "cborHex": "4b206f577ec215e63cebcb47", + "cborBytes": [75, 32, 111, 87, 126, 194, 21, 230, 60, 235, 203, 71], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2206, + "sample": { + "_tag": "ByteArray", + "bytearray": "7e8f5ae5f3" + }, + "cborHex": "457e8f5ae5f3", + "cborBytes": [69, 126, 143, 90, 229, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2207, + "sample": { + "_tag": "ByteArray", + "bytearray": "68" + }, + "cborHex": "4168", + "cborBytes": [65, 104], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2208, + "sample": { + "_tag": "ByteArray", + "bytearray": "e4f6050396025305" + }, + "cborHex": "48e4f6050396025305", + "cborBytes": [72, 228, 246, 5, 3, 150, 2, 83, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2209, + "sample": { + "_tag": "ByteArray", + "bytearray": "60acee" + }, + "cborHex": "4360acee", + "cborBytes": [67, 96, 172, 238], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2210, + "sample": { + "_tag": "ByteArray", + "bytearray": "06d25777" + }, + "cborHex": "4406d25777", + "cborBytes": [68, 6, 210, 87, 119], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2211, + "sample": { + "_tag": "ByteArray", + "bytearray": "e2" + }, + "cborHex": "41e2", + "cborBytes": [65, 226], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2212, + "sample": { + "_tag": "ByteArray", + "bytearray": "095d6fcc" + }, + "cborHex": "44095d6fcc", + "cborBytes": [68, 9, 93, 111, 204], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2213, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9b5" + }, + "cborHex": "42f9b5", + "cborBytes": [66, 249, 181], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2214, + "sample": { + "_tag": "ByteArray", + "bytearray": "fdcaffff0600f805" + }, + "cborHex": "48fdcaffff0600f805", + "cborBytes": [72, 253, 202, 255, 255, 6, 0, 248, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2215, + "sample": { + "_tag": "ByteArray", + "bytearray": "5bc4c7e93f02159c9e76f10a" + }, + "cborHex": "4c5bc4c7e93f02159c9e76f10a", + "cborBytes": [76, 91, 196, 199, 233, 63, 2, 21, 156, 158, 118, 241, 10], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2216, + "sample": { + "_tag": "ByteArray", + "bytearray": "1f1240be223d5b" + }, + "cborHex": "471f1240be223d5b", + "cborBytes": [71, 31, 18, 64, 190, 34, 61, 91], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2217, + "sample": { + "_tag": "ByteArray", + "bytearray": "3adf40047101" + }, + "cborHex": "463adf40047101", + "cborBytes": [70, 58, 223, 64, 4, 113, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2218, + "sample": { + "_tag": "ByteArray", + "bytearray": "0683772b" + }, + "cborHex": "440683772b", + "cborBytes": [68, 6, 131, 119, 43], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2219, + "sample": { + "_tag": "ByteArray", + "bytearray": "64bf1d" + }, + "cborHex": "4364bf1d", + "cborBytes": [67, 100, 191, 29], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2220, + "sample": { + "_tag": "ByteArray", + "bytearray": "965bfac0" + }, + "cborHex": "44965bfac0", + "cborBytes": [68, 150, 91, 250, 192], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2221, + "sample": { + "_tag": "ByteArray", + "bytearray": "db7279ae7b" + }, + "cborHex": "45db7279ae7b", + "cborBytes": [69, 219, 114, 121, 174, 123], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2222, + "sample": { + "_tag": "ByteArray", + "bytearray": "8639" + }, + "cborHex": "428639", + "cborBytes": [66, 134, 57], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2223, + "sample": { + "_tag": "ByteArray", + "bytearray": "40183d7d55" + }, + "cborHex": "4540183d7d55", + "cborBytes": [69, 64, 24, 61, 125, 85], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2224, + "sample": { + "_tag": "ByteArray", + "bytearray": "65055ae71af90e5dc7" + }, + "cborHex": "4965055ae71af90e5dc7", + "cborBytes": [73, 101, 5, 90, 231, 26, 249, 14, 93, 199], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2225, + "sample": { + "_tag": "ByteArray", + "bytearray": "c219" + }, + "cborHex": "42c219", + "cborBytes": [66, 194, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2226, + "sample": { + "_tag": "ByteArray", + "bytearray": "99ff1a2d" + }, + "cborHex": "4499ff1a2d", + "cborBytes": [68, 153, 255, 26, 45], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2227, + "sample": { + "_tag": "ByteArray", + "bytearray": "9efb35fcfe9b02078a" + }, + "cborHex": "499efb35fcfe9b02078a", + "cborBytes": [73, 158, 251, 53, 252, 254, 155, 2, 7, 138], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2228, + "sample": { + "_tag": "ByteArray", + "bytearray": "1a04029a32ce190781fc" + }, + "cborHex": "4a1a04029a32ce190781fc", + "cborBytes": [74, 26, 4, 2, 154, 50, 206, 25, 7, 129, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2229, + "sample": { + "_tag": "ByteArray", + "bytearray": "a2f588bf97312267146c61" + }, + "cborHex": "4ba2f588bf97312267146c61", + "cborBytes": [75, 162, 245, 136, 191, 151, 49, 34, 103, 20, 108, 97], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2230, + "sample": { + "_tag": "ByteArray", + "bytearray": "3a07030604cd" + }, + "cborHex": "463a07030604cd", + "cborBytes": [70, 58, 7, 3, 6, 4, 205], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2231, + "sample": { + "_tag": "ByteArray", + "bytearray": "0959521b5795325abccdf0c5" + }, + "cborHex": "4c0959521b5795325abccdf0c5", + "cborBytes": [76, 9, 89, 82, 27, 87, 149, 50, 90, 188, 205, 240, 197], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2232, + "sample": { + "_tag": "ByteArray", + "bytearray": "dcf20a558e129d2820" + }, + "cborHex": "49dcf20a558e129d2820", + "cborBytes": [73, 220, 242, 10, 85, 142, 18, 157, 40, 32], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2233, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff1095" + }, + "cborHex": "43ff1095", + "cborBytes": [67, 255, 16, 149], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2234, + "sample": { + "_tag": "ByteArray", + "bytearray": "f954c0db332095a891b19a" + }, + "cborHex": "4bf954c0db332095a891b19a", + "cborBytes": [75, 249, 84, 192, 219, 51, 32, 149, 168, 145, 177, 154], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2235, + "sample": { + "_tag": "ByteArray", + "bytearray": "a60393fc" + }, + "cborHex": "44a60393fc", + "cborBytes": [68, 166, 3, 147, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2236, + "sample": { + "_tag": "ByteArray", + "bytearray": "c60505" + }, + "cborHex": "43c60505", + "cborBytes": [67, 198, 5, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2237, + "sample": { + "_tag": "ByteArray", + "bytearray": "06e595c8" + }, + "cborHex": "4406e595c8", + "cborBytes": [68, 6, 229, 149, 200], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2238, + "sample": { + "_tag": "ByteArray", + "bytearray": "b8b30002040746" + }, + "cborHex": "47b8b30002040746", + "cborBytes": [71, 184, 179, 0, 2, 4, 7, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2239, + "sample": { + "_tag": "ByteArray", + "bytearray": "80b008b1327ffa" + }, + "cborHex": "4780b008b1327ffa", + "cborBytes": [71, 128, 176, 8, 177, 50, 127, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2240, + "sample": { + "_tag": "ByteArray", + "bytearray": "b903fa" + }, + "cborHex": "43b903fa", + "cborBytes": [67, 185, 3, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2241, + "sample": { + "_tag": "ByteArray", + "bytearray": "01fb06" + }, + "cborHex": "4301fb06", + "cborBytes": [67, 1, 251, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2242, + "sample": { + "_tag": "ByteArray", + "bytearray": "57010300c0" + }, + "cborHex": "4557010300c0", + "cborBytes": [69, 87, 1, 3, 0, 192], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2243, + "sample": { + "_tag": "ByteArray", + "bytearray": "0306070607" + }, + "cborHex": "450306070607", + "cborBytes": [69, 3, 6, 7, 6, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2244, + "sample": { + "_tag": "ByteArray", + "bytearray": "90da7e" + }, + "cborHex": "4390da7e", + "cborBytes": [67, 144, 218, 126], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2245, + "sample": { + "_tag": "ByteArray", + "bytearray": "43d963fd31" + }, + "cborHex": "4543d963fd31", + "cborBytes": [69, 67, 217, 99, 253, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2246, + "sample": { + "_tag": "ByteArray", + "bytearray": "cdef39822159" + }, + "cborHex": "46cdef39822159", + "cborBytes": [70, 205, 239, 57, 130, 33, 89], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2247, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe05" + }, + "cborHex": "42fe05", + "cborBytes": [66, 254, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2248, + "sample": { + "_tag": "ByteArray", + "bytearray": "352d2c0bbe73434fef" + }, + "cborHex": "49352d2c0bbe73434fef", + "cborBytes": [73, 53, 45, 44, 11, 190, 115, 67, 79, 239], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2249, + "sample": { + "_tag": "ByteArray", + "bytearray": "60e0610556acb472e030f9cd" + }, + "cborHex": "4c60e0610556acb472e030f9cd", + "cborBytes": [76, 96, 224, 97, 5, 86, 172, 180, 114, 224, 48, 249, 205], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2250, + "sample": { + "_tag": "ByteArray", + "bytearray": "0242f5" + }, + "cborHex": "430242f5", + "cborBytes": [67, 2, 66, 245], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2251, + "sample": { + "_tag": "ByteArray", + "bytearray": "d802ac760c9d" + }, + "cborHex": "46d802ac760c9d", + "cborBytes": [70, 216, 2, 172, 118, 12, 157], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2252, + "sample": { + "_tag": "ByteArray", + "bytearray": "40" + }, + "cborHex": "4140", + "cborBytes": [65, 64], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2253, + "sample": { + "_tag": "ByteArray", + "bytearray": "d840d1" + }, + "cborHex": "43d840d1", + "cborBytes": [67, 216, 64, 209], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2254, + "sample": { + "_tag": "ByteArray", + "bytearray": "0713" + }, + "cborHex": "420713", + "cborBytes": [66, 7, 19], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2255, + "sample": { + "_tag": "ByteArray", + "bytearray": "8c3d34de42abd26d789e1e54" + }, + "cborHex": "4c8c3d34de42abd26d789e1e54", + "cborBytes": [76, 140, 61, 52, 222, 66, 171, 210, 109, 120, 158, 30, 84], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2256, + "sample": { + "_tag": "ByteArray", + "bytearray": "1905a9040478565b" + }, + "cborHex": "481905a9040478565b", + "cborBytes": [72, 25, 5, 169, 4, 4, 120, 86, 91], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2257, + "sample": { + "_tag": "ByteArray", + "bytearray": "cffdffd32efd50fd" + }, + "cborHex": "48cffdffd32efd50fd", + "cborBytes": [72, 207, 253, 255, 211, 46, 253, 80, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2258, + "sample": { + "_tag": "ByteArray", + "bytearray": "9090e6cf10b5" + }, + "cborHex": "469090e6cf10b5", + "cborBytes": [70, 144, 144, 230, 207, 16, 181], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2259, + "sample": { + "_tag": "ByteArray", + "bytearray": "058702420018" + }, + "cborHex": "46058702420018", + "cborBytes": [70, 5, 135, 2, 66, 0, 24], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2260, + "sample": { + "_tag": "ByteArray", + "bytearray": "e335005093f718fcdd971a48" + }, + "cborHex": "4ce335005093f718fcdd971a48", + "cborBytes": [76, 227, 53, 0, 80, 147, 247, 24, 252, 221, 151, 26, 72], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2261, + "sample": { + "_tag": "ByteArray", + "bytearray": "5c069903b24c4b04" + }, + "cborHex": "485c069903b24c4b04", + "cborBytes": [72, 92, 6, 153, 3, 178, 76, 75, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2262, + "sample": { + "_tag": "ByteArray", + "bytearray": "63e3d15ca7" + }, + "cborHex": "4563e3d15ca7", + "cborBytes": [69, 99, 227, 209, 92, 167], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2263, + "sample": { + "_tag": "ByteArray", + "bytearray": "89774322b177f60f251714" + }, + "cborHex": "4b89774322b177f60f251714", + "cborBytes": [75, 137, 119, 67, 34, 177, 119, 246, 15, 37, 23, 20], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2264, + "sample": { + "_tag": "ByteArray", + "bytearray": "36be26612abf5c68ee05f0e1" + }, + "cborHex": "4c36be26612abf5c68ee05f0e1", + "cborBytes": [76, 54, 190, 38, 97, 42, 191, 92, 104, 238, 5, 240, 225], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2265, + "sample": { + "_tag": "ByteArray", + "bytearray": "d546e6b7f5c6f2c08b3ffd" + }, + "cborHex": "4bd546e6b7f5c6f2c08b3ffd", + "cborBytes": [75, 213, 70, 230, 183, 245, 198, 242, 192, 139, 63, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2266, + "sample": { + "_tag": "ByteArray", + "bytearray": "a866fa94ba939e2c" + }, + "cborHex": "48a866fa94ba939e2c", + "cborBytes": [72, 168, 102, 250, 148, 186, 147, 158, 44], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2267, + "sample": { + "_tag": "ByteArray", + "bytearray": "070700d2" + }, + "cborHex": "44070700d2", + "cborBytes": [68, 7, 7, 0, 210], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2268, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd05f9010202" + }, + "cborHex": "46fd05f9010202", + "cborBytes": [70, 253, 5, 249, 1, 2, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2269, + "sample": { + "_tag": "ByteArray", + "bytearray": "05030601" + }, + "cborHex": "4405030601", + "cborBytes": [68, 5, 3, 6, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2270, + "sample": { + "_tag": "ByteArray", + "bytearray": "050001" + }, + "cborHex": "43050001", + "cborBytes": [67, 5, 0, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2271, + "sample": { + "_tag": "ByteArray", + "bytearray": "3e28c317f2e551d36f49b9c9" + }, + "cborHex": "4c3e28c317f2e551d36f49b9c9", + "cborBytes": [76, 62, 40, 195, 23, 242, 229, 81, 211, 111, 73, 185, 201], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2272, + "sample": { + "_tag": "ByteArray", + "bytearray": "03fb" + }, + "cborHex": "4203fb", + "cborBytes": [66, 3, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2273, + "sample": { + "_tag": "ByteArray", + "bytearray": "04fbfc" + }, + "cborHex": "4304fbfc", + "cborBytes": [67, 4, 251, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2274, + "sample": { + "_tag": "ByteArray", + "bytearray": "364bff" + }, + "cborHex": "43364bff", + "cborBytes": [67, 54, 75, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2275, + "sample": { + "_tag": "ByteArray", + "bytearray": "76eacdb2cb" + }, + "cborHex": "4576eacdb2cb", + "cborBytes": [69, 118, 234, 205, 178, 203], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2276, + "sample": { + "_tag": "ByteArray", + "bytearray": "769b37049148a7" + }, + "cborHex": "47769b37049148a7", + "cborBytes": [71, 118, 155, 55, 4, 145, 72, 167], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2277, + "sample": { + "_tag": "ByteArray", + "bytearray": "2c" + }, + "cborHex": "412c", + "cborBytes": [65, 44], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2278, + "sample": { + "_tag": "ByteArray", + "bytearray": "5e9cf34749299b" + }, + "cborHex": "475e9cf34749299b", + "cborBytes": [71, 94, 156, 243, 71, 73, 41, 155], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2279, + "sample": { + "_tag": "ByteArray", + "bytearray": "03f97d07" + }, + "cborHex": "4403f97d07", + "cborBytes": [68, 3, 249, 125, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2280, + "sample": { + "_tag": "ByteArray", + "bytearray": "d5b8de" + }, + "cborHex": "43d5b8de", + "cborBytes": [67, 213, 184, 222], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2281, + "sample": { + "_tag": "ByteArray", + "bytearray": "80bbf993028afe" + }, + "cborHex": "4780bbf993028afe", + "cborBytes": [71, 128, 187, 249, 147, 2, 138, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2282, + "sample": { + "_tag": "ByteArray", + "bytearray": "066b79" + }, + "cborHex": "43066b79", + "cborBytes": [67, 6, 107, 121], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2283, + "sample": { + "_tag": "ByteArray", + "bytearray": "e4161ac811a7c1e25e4814a0" + }, + "cborHex": "4ce4161ac811a7c1e25e4814a0", + "cborBytes": [76, 228, 22, 26, 200, 17, 167, 193, 226, 94, 72, 20, 160], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2284, + "sample": { + "_tag": "ByteArray", + "bytearray": "012c" + }, + "cborHex": "42012c", + "cborBytes": [66, 1, 44], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2285, + "sample": { + "_tag": "ByteArray", + "bytearray": "f903b67d" + }, + "cborHex": "44f903b67d", + "cborBytes": [68, 249, 3, 182, 125], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2286, + "sample": { + "_tag": "ByteArray", + "bytearray": "18e5cd12905cc58d9f35" + }, + "cborHex": "4a18e5cd12905cc58d9f35", + "cborBytes": [74, 24, 229, 205, 18, 144, 92, 197, 141, 159, 53], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2287, + "sample": { + "_tag": "ByteArray", + "bytearray": "bdcd4b" + }, + "cborHex": "43bdcd4b", + "cborBytes": [67, 189, 205, 75], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2288, + "sample": { + "_tag": "ByteArray", + "bytearray": "227c070000040191" + }, + "cborHex": "48227c070000040191", + "cborBytes": [72, 34, 124, 7, 0, 0, 4, 1, 145], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2289, + "sample": { + "_tag": "ByteArray", + "bytearray": "02fcccfafcccf685f801" + }, + "cborHex": "4a02fcccfafcccf685f801", + "cborBytes": [74, 2, 252, 204, 250, 252, 204, 246, 133, 248, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2290, + "sample": { + "_tag": "ByteArray", + "bytearray": "05fc71" + }, + "cborHex": "4305fc71", + "cborBytes": [67, 5, 252, 113], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2291, + "sample": { + "_tag": "ByteArray", + "bytearray": "9bc7cd7d97d4bb49788b" + }, + "cborHex": "4a9bc7cd7d97d4bb49788b", + "cborBytes": [74, 155, 199, 205, 125, 151, 212, 187, 73, 120, 139], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2292, + "sample": { + "_tag": "ByteArray", + "bytearray": "01f961" + }, + "cborHex": "4301f961", + "cborBytes": [67, 1, 249, 97], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2293, + "sample": { + "_tag": "ByteArray", + "bytearray": "cbf43ee92f2b2183593887" + }, + "cborHex": "4bcbf43ee92f2b2183593887", + "cborBytes": [75, 203, 244, 62, 233, 47, 43, 33, 131, 89, 56, 135], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2294, + "sample": { + "_tag": "ByteArray", + "bytearray": "2251df" + }, + "cborHex": "432251df", + "cborBytes": [67, 34, 81, 223], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2295, + "sample": { + "_tag": "ByteArray", + "bytearray": "65" + }, + "cborHex": "4165", + "cborBytes": [65, 101], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2296, + "sample": { + "_tag": "ByteArray", + "bytearray": "a705e33405fb079e" + }, + "cborHex": "48a705e33405fb079e", + "cborBytes": [72, 167, 5, 227, 52, 5, 251, 7, 158], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2297, + "sample": { + "_tag": "ByteArray", + "bytearray": "02f859" + }, + "cborHex": "4302f859", + "cborBytes": [67, 2, 248, 89], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2298, + "sample": { + "_tag": "ByteArray", + "bytearray": "0658017d034204f8c55e03" + }, + "cborHex": "4b0658017d034204f8c55e03", + "cborBytes": [75, 6, 88, 1, 125, 3, 66, 4, 248, 197, 94, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2299, + "sample": { + "_tag": "ByteArray", + "bytearray": "be" + }, + "cborHex": "41be", + "cborBytes": [65, 190], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2300, + "sample": { + "_tag": "ByteArray", + "bytearray": "03b0" + }, + "cborHex": "4203b0", + "cborBytes": [66, 3, 176], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2301, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff0768" + }, + "cborHex": "43ff0768", + "cborBytes": [67, 255, 7, 104], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2302, + "sample": { + "_tag": "ByteArray", + "bytearray": "742a6daedef8f3ea2b8ca39c" + }, + "cborHex": "4c742a6daedef8f3ea2b8ca39c", + "cborBytes": [76, 116, 42, 109, 174, 222, 248, 243, 234, 43, 140, 163, 156], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2303, + "sample": { + "_tag": "ByteArray", + "bytearray": "2db26b46e3c3b3" + }, + "cborHex": "472db26b46e3c3b3", + "cborBytes": [71, 45, 178, 107, 70, 227, 195, 179], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2304, + "sample": { + "_tag": "ByteArray", + "bytearray": "0753267af80677" + }, + "cborHex": "470753267af80677", + "cborBytes": [71, 7, 83, 38, 122, 248, 6, 119], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2305, + "sample": { + "_tag": "ByteArray", + "bytearray": "7d79f228" + }, + "cborHex": "447d79f228", + "cborBytes": [68, 125, 121, 242, 40], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2306, + "sample": { + "_tag": "ByteArray", + "bytearray": "1bc1959b7397" + }, + "cborHex": "461bc1959b7397", + "cborBytes": [70, 27, 193, 149, 155, 115, 151], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2307, + "sample": { + "_tag": "ByteArray", + "bytearray": "c607" + }, + "cborHex": "42c607", + "cborBytes": [66, 198, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2308, + "sample": { + "_tag": "ByteArray", + "bytearray": "ce" + }, + "cborHex": "41ce", + "cborBytes": [65, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2309, + "sample": { + "_tag": "ByteArray", + "bytearray": "7aabae8bb65f9b00f9" + }, + "cborHex": "497aabae8bb65f9b00f9", + "cborBytes": [73, 122, 171, 174, 139, 182, 95, 155, 0, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2310, + "sample": { + "_tag": "ByteArray", + "bytearray": "50244ad4" + }, + "cborHex": "4450244ad4", + "cborBytes": [68, 80, 36, 74, 212], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2311, + "sample": { + "_tag": "ByteArray", + "bytearray": "ccf3c2161e93d6f40ca512d0" + }, + "cborHex": "4cccf3c2161e93d6f40ca512d0", + "cborBytes": [76, 204, 243, 194, 22, 30, 147, 214, 244, 12, 165, 18, 208], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2312, + "sample": { + "_tag": "ByteArray", + "bytearray": "d5a2fcfb06709ef6ff" + }, + "cborHex": "49d5a2fcfb06709ef6ff", + "cborBytes": [73, 213, 162, 252, 251, 6, 112, 158, 246, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2313, + "sample": { + "_tag": "ByteArray", + "bytearray": "5827" + }, + "cborHex": "425827", + "cborBytes": [66, 88, 39], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2314, + "sample": { + "_tag": "ByteArray", + "bytearray": "03dee597b85863" + }, + "cborHex": "4703dee597b85863", + "cborBytes": [71, 3, 222, 229, 151, 184, 88, 99], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2315, + "sample": { + "_tag": "ByteArray", + "bytearray": "7888cdad0d60cb3049ec4e" + }, + "cborHex": "4b7888cdad0d60cb3049ec4e", + "cborBytes": [75, 120, 136, 205, 173, 13, 96, 203, 48, 73, 236, 78], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2316, + "sample": { + "_tag": "ByteArray", + "bytearray": "7dbffcffff00ba5c" + }, + "cborHex": "487dbffcffff00ba5c", + "cborBytes": [72, 125, 191, 252, 255, 255, 0, 186, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2317, + "sample": { + "_tag": "ByteArray", + "bytearray": "c3" + }, + "cborHex": "41c3", + "cborBytes": [65, 195], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2318, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff0c92692d92bee70000" + }, + "cborHex": "4aff0c92692d92bee70000", + "cborBytes": [74, 255, 12, 146, 105, 45, 146, 190, 231, 0, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2319, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa04f86f9a33340207" + }, + "cborHex": "49fa04f86f9a33340207", + "cborBytes": [73, 250, 4, 248, 111, 154, 51, 52, 2, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2320, + "sample": { + "_tag": "ByteArray", + "bytearray": "cdf76340236707" + }, + "cborHex": "47cdf76340236707", + "cborBytes": [71, 205, 247, 99, 64, 35, 103, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2321, + "sample": { + "_tag": "ByteArray", + "bytearray": "c97019" + }, + "cborHex": "43c97019", + "cborBytes": [67, 201, 112, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2322, + "sample": { + "_tag": "ByteArray", + "bytearray": "03f9fd70" + }, + "cborHex": "4403f9fd70", + "cborBytes": [68, 3, 249, 253, 112], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2323, + "sample": { + "_tag": "ByteArray", + "bytearray": "91b8" + }, + "cborHex": "4291b8", + "cborBytes": [66, 145, 184], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2324, + "sample": { + "_tag": "ByteArray", + "bytearray": "7719" + }, + "cborHex": "427719", + "cborBytes": [66, 119, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2325, + "sample": { + "_tag": "ByteArray", + "bytearray": "05923169a4df07" + }, + "cborHex": "4705923169a4df07", + "cborBytes": [71, 5, 146, 49, 105, 164, 223, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2326, + "sample": { + "_tag": "ByteArray", + "bytearray": "e5215bbb1222" + }, + "cborHex": "46e5215bbb1222", + "cborBytes": [70, 229, 33, 91, 187, 18, 34], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2327, + "sample": { + "_tag": "ByteArray", + "bytearray": "6e3227fef85fb63907" + }, + "cborHex": "496e3227fef85fb63907", + "cborBytes": [73, 110, 50, 39, 254, 248, 95, 182, 57, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2328, + "sample": { + "_tag": "ByteArray", + "bytearray": "feff03" + }, + "cborHex": "43feff03", + "cborBytes": [67, 254, 255, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2329, + "sample": { + "_tag": "ByteArray", + "bytearray": "012180" + }, + "cborHex": "43012180", + "cborBytes": [67, 1, 33, 128], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2330, + "sample": { + "_tag": "ByteArray", + "bytearray": "14ac" + }, + "cborHex": "4214ac", + "cborBytes": [66, 20, 172], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2331, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff0b3c07" + }, + "cborHex": "44ff0b3c07", + "cborBytes": [68, 255, 11, 60, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2332, + "sample": { + "_tag": "ByteArray", + "bytearray": "5c" + }, + "cborHex": "415c", + "cborBytes": [65, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2333, + "sample": { + "_tag": "ByteArray", + "bytearray": "1787f9" + }, + "cborHex": "431787f9", + "cborBytes": [67, 23, 135, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2334, + "sample": { + "_tag": "ByteArray", + "bytearray": "3236" + }, + "cborHex": "423236", + "cborBytes": [66, 50, 54], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2335, + "sample": { + "_tag": "ByteArray", + "bytearray": "e427c759fa729a" + }, + "cborHex": "47e427c759fa729a", + "cborBytes": [71, 228, 39, 199, 89, 250, 114, 154], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2336, + "sample": { + "_tag": "ByteArray", + "bytearray": "029e07f9fd919a06" + }, + "cborHex": "48029e07f9fd919a06", + "cborBytes": [72, 2, 158, 7, 249, 253, 145, 154, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2337, + "sample": { + "_tag": "ByteArray", + "bytearray": "0cfcec83ca589a6f1a" + }, + "cborHex": "490cfcec83ca589a6f1a", + "cborBytes": [73, 12, 252, 236, 131, 202, 88, 154, 111, 26], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2338, + "sample": { + "_tag": "ByteArray", + "bytearray": "c95b61b9a90caa9f167b3f" + }, + "cborHex": "4bc95b61b9a90caa9f167b3f", + "cborBytes": [75, 201, 91, 97, 185, 169, 12, 170, 159, 22, 123, 63], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2339, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe07fa" + }, + "cborHex": "43fe07fa", + "cborBytes": [67, 254, 7, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2340, + "sample": { + "_tag": "ByteArray", + "bytearray": "3f72a3364eb6" + }, + "cborHex": "463f72a3364eb6", + "cborBytes": [70, 63, 114, 163, 54, 78, 182], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2341, + "sample": { + "_tag": "ByteArray", + "bytearray": "a14cf7b6c21ee0" + }, + "cborHex": "47a14cf7b6c21ee0", + "cborBytes": [71, 161, 76, 247, 182, 194, 30, 224], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2342, + "sample": { + "_tag": "ByteArray", + "bytearray": "b901e369836c43345842a4" + }, + "cborHex": "4bb901e369836c43345842a4", + "cborBytes": [75, 185, 1, 227, 105, 131, 108, 67, 52, 88, 66, 164], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2343, + "sample": { + "_tag": "ByteArray", + "bytearray": "8b7da5" + }, + "cborHex": "438b7da5", + "cborBytes": [67, 139, 125, 165], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2344, + "sample": { + "_tag": "ByteArray", + "bytearray": "f51dc44a0105f950fc" + }, + "cborHex": "49f51dc44a0105f950fc", + "cborBytes": [73, 245, 29, 196, 74, 1, 5, 249, 80, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2345, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb2e045f2b04" + }, + "cborHex": "46fb2e045f2b04", + "cborBytes": [70, 251, 46, 4, 95, 43, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2346, + "sample": { + "_tag": "ByteArray", + "bytearray": "582d2f436ed9851a2c0904ed" + }, + "cborHex": "4c582d2f436ed9851a2c0904ed", + "cborBytes": [76, 88, 45, 47, 67, 110, 217, 133, 26, 44, 9, 4, 237], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2347, + "sample": { + "_tag": "ByteArray", + "bytearray": "f30206fdd81bff" + }, + "cborHex": "47f30206fdd81bff", + "cborBytes": [71, 243, 2, 6, 253, 216, 27, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2348, + "sample": { + "_tag": "ByteArray", + "bytearray": "8598d2" + }, + "cborHex": "438598d2", + "cborBytes": [67, 133, 152, 210], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2349, + "sample": { + "_tag": "ByteArray", + "bytearray": "3299eec581f749e24a" + }, + "cborHex": "493299eec581f749e24a", + "cborBytes": [73, 50, 153, 238, 197, 129, 247, 73, 226, 74], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2350, + "sample": { + "_tag": "ByteArray", + "bytearray": "dcb7c2c4b7c8f5" + }, + "cborHex": "47dcb7c2c4b7c8f5", + "cborBytes": [71, 220, 183, 194, 196, 183, 200, 245], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2351, + "sample": { + "_tag": "ByteArray", + "bytearray": "960407fb01708701050302f9" + }, + "cborHex": "4c960407fb01708701050302f9", + "cborBytes": [76, 150, 4, 7, 251, 1, 112, 135, 1, 5, 3, 2, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2352, + "sample": { + "_tag": "ByteArray", + "bytearray": "22" + }, + "cborHex": "4122", + "cborBytes": [65, 34], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2353, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9021ffda2" + }, + "cborHex": "45f9021ffda2", + "cborBytes": [69, 249, 2, 31, 253, 162], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2354, + "sample": { + "_tag": "ByteArray", + "bytearray": "8701e273bd6e06a31880" + }, + "cborHex": "4a8701e273bd6e06a31880", + "cborBytes": [74, 135, 1, 226, 115, 189, 110, 6, 163, 24, 128], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2355, + "sample": { + "_tag": "ByteArray", + "bytearray": "65050505" + }, + "cborHex": "4465050505", + "cborBytes": [68, 101, 5, 5, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2356, + "sample": { + "_tag": "ByteArray", + "bytearray": "7797" + }, + "cborHex": "427797", + "cborBytes": [66, 119, 151], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2357, + "sample": { + "_tag": "ByteArray", + "bytearray": "f20a088356d7dc" + }, + "cborHex": "47f20a088356d7dc", + "cborBytes": [71, 242, 10, 8, 131, 86, 215, 220], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2358, + "sample": { + "_tag": "ByteArray", + "bytearray": "98dc57" + }, + "cborHex": "4398dc57", + "cborBytes": [67, 152, 220, 87], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2359, + "sample": { + "_tag": "ByteArray", + "bytearray": "da0d44" + }, + "cborHex": "43da0d44", + "cborBytes": [67, 218, 13, 68], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2360, + "sample": { + "_tag": "ByteArray", + "bytearray": "e5f5a40ec30576" + }, + "cborHex": "47e5f5a40ec30576", + "cborBytes": [71, 229, 245, 164, 14, 195, 5, 118], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2361, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb20b086fae20338" + }, + "cborHex": "48fb20b086fae20338", + "cborBytes": [72, 251, 32, 176, 134, 250, 226, 3, 56], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2362, + "sample": { + "_tag": "ByteArray", + "bytearray": "b860" + }, + "cborHex": "42b860", + "cborBytes": [66, 184, 96], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2363, + "sample": { + "_tag": "ByteArray", + "bytearray": "dae77bb27c" + }, + "cborHex": "45dae77bb27c", + "cborBytes": [69, 218, 231, 123, 178, 124], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2364, + "sample": { + "_tag": "ByteArray", + "bytearray": "3a72c12a8147bf9a98dc5b19" + }, + "cborHex": "4c3a72c12a8147bf9a98dc5b19", + "cborBytes": [76, 58, 114, 193, 42, 129, 71, 191, 154, 152, 220, 91, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2365, + "sample": { + "_tag": "ByteArray", + "bytearray": "127152cd07051ef894" + }, + "cborHex": "49127152cd07051ef894", + "cborBytes": [73, 18, 113, 82, 205, 7, 5, 30, 248, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2366, + "sample": { + "_tag": "ByteArray", + "bytearray": "c0b6bf" + }, + "cborHex": "43c0b6bf", + "cborBytes": [67, 192, 182, 191], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2367, + "sample": { + "_tag": "ByteArray", + "bytearray": "de1f7402fdff62ec" + }, + "cborHex": "48de1f7402fdff62ec", + "cborBytes": [72, 222, 31, 116, 2, 253, 255, 98, 236], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2368, + "sample": { + "_tag": "ByteArray", + "bytearray": "d0f915fbfb81d392" + }, + "cborHex": "48d0f915fbfb81d392", + "cborBytes": [72, 208, 249, 21, 251, 251, 129, 211, 146], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2369, + "sample": { + "_tag": "ByteArray", + "bytearray": "b92a" + }, + "cborHex": "42b92a", + "cborBytes": [66, 185, 42], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2370, + "sample": { + "_tag": "ByteArray", + "bytearray": "0c103b23c4c4e9" + }, + "cborHex": "470c103b23c4c4e9", + "cborBytes": [71, 12, 16, 59, 35, 196, 196, 233], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2371, + "sample": { + "_tag": "ByteArray", + "bytearray": "c91c13ca5f4cc897" + }, + "cborHex": "48c91c13ca5f4cc897", + "cborBytes": [72, 201, 28, 19, 202, 95, 76, 200, 151], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2372, + "sample": { + "_tag": "ByteArray", + "bytearray": "f55c" + }, + "cborHex": "42f55c", + "cborBytes": [66, 245, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2373, + "sample": { + "_tag": "ByteArray", + "bytearray": "0b2d" + }, + "cborHex": "420b2d", + "cborBytes": [66, 11, 45], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2374, + "sample": { + "_tag": "ByteArray", + "bytearray": "f15ccf872007cb03" + }, + "cborHex": "48f15ccf872007cb03", + "cborBytes": [72, 241, 92, 207, 135, 32, 7, 203, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2375, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe830505faf840fe" + }, + "cborHex": "48fe830505faf840fe", + "cborBytes": [72, 254, 131, 5, 5, 250, 248, 64, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2376, + "sample": { + "_tag": "ByteArray", + "bytearray": "88" + }, + "cborHex": "4188", + "cborBytes": [65, 136], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2377, + "sample": { + "_tag": "ByteArray", + "bytearray": "0096fb06" + }, + "cborHex": "440096fb06", + "cborBytes": [68, 0, 150, 251, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2378, + "sample": { + "_tag": "ByteArray", + "bytearray": "e2d8" + }, + "cborHex": "42e2d8", + "cborBytes": [66, 226, 216], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2379, + "sample": { + "_tag": "ByteArray", + "bytearray": "7b6b2caf46cf610a43" + }, + "cborHex": "497b6b2caf46cf610a43", + "cborBytes": [73, 123, 107, 44, 175, 70, 207, 97, 10, 67], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2380, + "sample": { + "_tag": "ByteArray", + "bytearray": "2f9d616555e9" + }, + "cborHex": "462f9d616555e9", + "cborBytes": [70, 47, 157, 97, 101, 85, 233], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2381, + "sample": { + "_tag": "ByteArray", + "bytearray": "02b2ed07034a070316d1ec06" + }, + "cborHex": "4c02b2ed07034a070316d1ec06", + "cborBytes": [76, 2, 178, 237, 7, 3, 74, 7, 3, 22, 209, 236, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2382, + "sample": { + "_tag": "ByteArray", + "bytearray": "ee8e244b134e3c2e9f" + }, + "cborHex": "49ee8e244b134e3c2e9f", + "cborBytes": [73, 238, 142, 36, 75, 19, 78, 60, 46, 159], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2383, + "sample": { + "_tag": "ByteArray", + "bytearray": "70842857c7291cdaea0d" + }, + "cborHex": "4a70842857c7291cdaea0d", + "cborBytes": [74, 112, 132, 40, 87, 199, 41, 28, 218, 234, 13], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2384, + "sample": { + "_tag": "ByteArray", + "bytearray": "7c1ee4aefbb0e41438c6b4" + }, + "cborHex": "4b7c1ee4aefbb0e41438c6b4", + "cborBytes": [75, 124, 30, 228, 174, 251, 176, 228, 20, 56, 198, 180], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2385, + "sample": { + "_tag": "ByteArray", + "bytearray": "8e2d2279d89f9173" + }, + "cborHex": "488e2d2279d89f9173", + "cborBytes": [72, 142, 45, 34, 121, 216, 159, 145, 115], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2386, + "sample": { + "_tag": "ByteArray", + "bytearray": "06ff92fa06fffa0000" + }, + "cborHex": "4906ff92fa06fffa0000", + "cborBytes": [73, 6, 255, 146, 250, 6, 255, 250, 0, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2387, + "sample": { + "_tag": "ByteArray", + "bytearray": "070d04fb74fff803f904e8" + }, + "cborHex": "4b070d04fb74fff803f904e8", + "cborBytes": [75, 7, 13, 4, 251, 116, 255, 248, 3, 249, 4, 232], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2388, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9c0fc10a3" + }, + "cborHex": "45f9c0fc10a3", + "cborBytes": [69, 249, 192, 252, 16, 163], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2389, + "sample": { + "_tag": "ByteArray", + "bytearray": "805da31f8f" + }, + "cborHex": "45805da31f8f", + "cborBytes": [69, 128, 93, 163, 31, 143], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2390, + "sample": { + "_tag": "ByteArray", + "bytearray": "0cb5a9bb137e" + }, + "cborHex": "460cb5a9bb137e", + "cborBytes": [70, 12, 181, 169, 187, 19, 126], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2391, + "sample": { + "_tag": "ByteArray", + "bytearray": "06036d03" + }, + "cborHex": "4406036d03", + "cborBytes": [68, 6, 3, 109, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2392, + "sample": { + "_tag": "ByteArray", + "bytearray": "3520332b368d" + }, + "cborHex": "463520332b368d", + "cborBytes": [70, 53, 32, 51, 43, 54, 141], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2393, + "sample": { + "_tag": "ByteArray", + "bytearray": "e2effdfd03" + }, + "cborHex": "45e2effdfd03", + "cborBytes": [69, 226, 239, 253, 253, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2394, + "sample": { + "_tag": "ByteArray", + "bytearray": "011203389522" + }, + "cborHex": "46011203389522", + "cborBytes": [70, 1, 18, 3, 56, 149, 34], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2395, + "sample": { + "_tag": "ByteArray", + "bytearray": "0453e386f92b65d19d2d" + }, + "cborHex": "4a0453e386f92b65d19d2d", + "cborBytes": [74, 4, 83, 227, 134, 249, 43, 101, 209, 157, 45], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2396, + "sample": { + "_tag": "ByteArray", + "bytearray": "05c8b136" + }, + "cborHex": "4405c8b136", + "cborBytes": [68, 5, 200, 177, 54], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2397, + "sample": { + "_tag": "ByteArray", + "bytearray": "eb3fde6f" + }, + "cborHex": "44eb3fde6f", + "cborBytes": [68, 235, 63, 222, 111], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2398, + "sample": { + "_tag": "ByteArray", + "bytearray": "45cdfdf8fedb00" + }, + "cborHex": "4745cdfdf8fedb00", + "cborBytes": [71, 69, 205, 253, 248, 254, 219, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2399, + "sample": { + "_tag": "ByteArray", + "bytearray": "06a4" + }, + "cborHex": "4206a4", + "cborBytes": [66, 6, 164], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2400, + "sample": { + "_tag": "ByteArray", + "bytearray": "05c0" + }, + "cborHex": "4205c0", + "cborBytes": [66, 5, 192], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2401, + "sample": { + "_tag": "ByteArray", + "bytearray": "7e95e3" + }, + "cborHex": "437e95e3", + "cborBytes": [67, 126, 149, 227], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2402, + "sample": { + "_tag": "ByteArray", + "bytearray": "6120" + }, + "cborHex": "426120", + "cborBytes": [66, 97, 32], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2403, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb151e1f" + }, + "cborHex": "44fb151e1f", + "cborBytes": [68, 251, 21, 30, 31], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2404, + "sample": { + "_tag": "ByteArray", + "bytearray": "39a639b88092ebc6747808" + }, + "cborHex": "4b39a639b88092ebc6747808", + "cborBytes": [75, 57, 166, 57, 184, 128, 146, 235, 198, 116, 120, 8], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2405, + "sample": { + "_tag": "ByteArray", + "bytearray": "f80200" + }, + "cborHex": "43f80200", + "cborBytes": [67, 248, 2, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2406, + "sample": { + "_tag": "ByteArray", + "bytearray": "fafc8704" + }, + "cborHex": "44fafc8704", + "cborBytes": [68, 250, 252, 135, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2407, + "sample": { + "_tag": "ByteArray", + "bytearray": "6da110043c" + }, + "cborHex": "456da110043c", + "cborBytes": [69, 109, 161, 16, 4, 60], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2408, + "sample": { + "_tag": "ByteArray", + "bytearray": "04b7f8750404528f02" + }, + "cborHex": "4904b7f8750404528f02", + "cborBytes": [73, 4, 183, 248, 117, 4, 4, 82, 143, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2409, + "sample": { + "_tag": "ByteArray", + "bytearray": "cf9f4c7f89e5dba8" + }, + "cborHex": "48cf9f4c7f89e5dba8", + "cborBytes": [72, 207, 159, 76, 127, 137, 229, 219, 168], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2410, + "sample": { + "_tag": "ByteArray", + "bytearray": "f0c3" + }, + "cborHex": "42f0c3", + "cborBytes": [66, 240, 195], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2411, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc9001" + }, + "cborHex": "43fc9001", + "cborBytes": [67, 252, 144, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2412, + "sample": { + "_tag": "ByteArray", + "bytearray": "db037de4" + }, + "cborHex": "44db037de4", + "cborBytes": [68, 219, 3, 125, 228], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2413, + "sample": { + "_tag": "ByteArray", + "bytearray": "d69134" + }, + "cborHex": "43d69134", + "cborBytes": [67, 214, 145, 52], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2414, + "sample": { + "_tag": "ByteArray", + "bytearray": "04fc00" + }, + "cborHex": "4304fc00", + "cborBytes": [67, 4, 252, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2415, + "sample": { + "_tag": "ByteArray", + "bytearray": "7e19201bcb0629e3c237bd" + }, + "cborHex": "4b7e19201bcb0629e3c237bd", + "cborBytes": [75, 126, 25, 32, 27, 203, 6, 41, 227, 194, 55, 189], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2416, + "sample": { + "_tag": "ByteArray", + "bytearray": "d981ad52631a50c1cf" + }, + "cborHex": "49d981ad52631a50c1cf", + "cborBytes": [73, 217, 129, 173, 82, 99, 26, 80, 193, 207], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2417, + "sample": { + "_tag": "ByteArray", + "bytearray": "f274bf846079589da88e93e0" + }, + "cborHex": "4cf274bf846079589da88e93e0", + "cborBytes": [76, 242, 116, 191, 132, 96, 121, 88, 157, 168, 142, 147, 224], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2418, + "sample": { + "_tag": "ByteArray", + "bytearray": "ab" + }, + "cborHex": "41ab", + "cborBytes": [65, 171], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2419, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb0388" + }, + "cborHex": "43fb0388", + "cborBytes": [67, 251, 3, 136], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2420, + "sample": { + "_tag": "ByteArray", + "bytearray": "f4ca42b8" + }, + "cborHex": "44f4ca42b8", + "cborBytes": [68, 244, 202, 66, 184], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2421, + "sample": { + "_tag": "ByteArray", + "bytearray": "a8aadc44910c62ea013e" + }, + "cborHex": "4aa8aadc44910c62ea013e", + "cborBytes": [74, 168, 170, 220, 68, 145, 12, 98, 234, 1, 62], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2422, + "sample": { + "_tag": "ByteArray", + "bytearray": "5aa8c00911c3b71fa044" + }, + "cborHex": "4a5aa8c00911c3b71fa044", + "cborBytes": [74, 90, 168, 192, 9, 17, 195, 183, 31, 160, 68], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2423, + "sample": { + "_tag": "ByteArray", + "bytearray": "f3726415d0a9" + }, + "cborHex": "46f3726415d0a9", + "cborBytes": [70, 243, 114, 100, 21, 208, 169], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2424, + "sample": { + "_tag": "ByteArray", + "bytearray": "e534bfcf57" + }, + "cborHex": "45e534bfcf57", + "cborBytes": [69, 229, 52, 191, 207, 87], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2425, + "sample": { + "_tag": "ByteArray", + "bytearray": "c7038890fd4d71" + }, + "cborHex": "47c7038890fd4d71", + "cborBytes": [71, 199, 3, 136, 144, 253, 77, 113], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2426, + "sample": { + "_tag": "ByteArray", + "bytearray": "cbb169" + }, + "cborHex": "43cbb169", + "cborBytes": [67, 203, 177, 105], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2427, + "sample": { + "_tag": "ByteArray", + "bytearray": "33ec637d" + }, + "cborHex": "4433ec637d", + "cborBytes": [68, 51, 236, 99, 125], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2428, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc6df33bd215" + }, + "cborHex": "46fc6df33bd215", + "cborBytes": [70, 252, 109, 243, 59, 210, 21], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2429, + "sample": { + "_tag": "ByteArray", + "bytearray": "d554" + }, + "cborHex": "42d554", + "cborBytes": [66, 213, 84], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2430, + "sample": { + "_tag": "ByteArray", + "bytearray": "00f6" + }, + "cborHex": "4200f6", + "cborBytes": [66, 0, 246], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2431, + "sample": { + "_tag": "ByteArray", + "bytearray": "3022000704fd2758b9040000" + }, + "cborHex": "4c3022000704fd2758b9040000", + "cborBytes": [76, 48, 34, 0, 7, 4, 253, 39, 88, 185, 4, 0, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2432, + "sample": { + "_tag": "ByteArray", + "bytearray": "f85e9b1c" + }, + "cborHex": "44f85e9b1c", + "cborBytes": [68, 248, 94, 155, 28], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2433, + "sample": { + "_tag": "ByteArray", + "bytearray": "03fc02de26fffa0403" + }, + "cborHex": "4903fc02de26fffa0403", + "cborBytes": [73, 3, 252, 2, 222, 38, 255, 250, 4, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2434, + "sample": { + "_tag": "ByteArray", + "bytearray": "e0b547887e16" + }, + "cborHex": "46e0b547887e16", + "cborBytes": [70, 224, 181, 71, 136, 126, 22], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2435, + "sample": { + "_tag": "ByteArray", + "bytearray": "47061811017efc" + }, + "cborHex": "4747061811017efc", + "cborBytes": [71, 71, 6, 24, 17, 1, 126, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2436, + "sample": { + "_tag": "ByteArray", + "bytearray": "a645" + }, + "cborHex": "42a645", + "cborBytes": [66, 166, 69], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2437, + "sample": { + "_tag": "ByteArray", + "bytearray": "05e10d03" + }, + "cborHex": "4405e10d03", + "cborBytes": [68, 5, 225, 13, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2438, + "sample": { + "_tag": "ByteArray", + "bytearray": "0ec0bfebf0f1b721" + }, + "cborHex": "480ec0bfebf0f1b721", + "cborBytes": [72, 14, 192, 191, 235, 240, 241, 183, 33], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2439, + "sample": { + "_tag": "ByteArray", + "bytearray": "38f2d1c56acf08" + }, + "cborHex": "4738f2d1c56acf08", + "cborBytes": [71, 56, 242, 209, 197, 106, 207, 8], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2440, + "sample": { + "_tag": "ByteArray", + "bytearray": "e35e94" + }, + "cborHex": "43e35e94", + "cborBytes": [67, 227, 94, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2441, + "sample": { + "_tag": "ByteArray", + "bytearray": "93a286" + }, + "cborHex": "4393a286", + "cborBytes": [67, 147, 162, 134], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2442, + "sample": { + "_tag": "ByteArray", + "bytearray": "07b4fb" + }, + "cborHex": "4307b4fb", + "cborBytes": [67, 7, 180, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2443, + "sample": { + "_tag": "ByteArray", + "bytearray": "fef95868f8a6" + }, + "cborHex": "46fef95868f8a6", + "cborBytes": [70, 254, 249, 88, 104, 248, 166], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2444, + "sample": { + "_tag": "ByteArray", + "bytearray": "2e60" + }, + "cborHex": "422e60", + "cborBytes": [66, 46, 96], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2445, + "sample": { + "_tag": "ByteArray", + "bytearray": "c378da05cafc3690745d" + }, + "cborHex": "4ac378da05cafc3690745d", + "cborBytes": [74, 195, 120, 218, 5, 202, 252, 54, 144, 116, 93], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2446, + "sample": { + "_tag": "ByteArray", + "bytearray": "548dfc782d0606ac6c08" + }, + "cborHex": "4a548dfc782d0606ac6c08", + "cborBytes": [74, 84, 141, 252, 120, 45, 6, 6, 172, 108, 8], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2447, + "sample": { + "_tag": "ByteArray", + "bytearray": "608e2baacc241f94" + }, + "cborHex": "48608e2baacc241f94", + "cborBytes": [72, 96, 142, 43, 170, 204, 36, 31, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2448, + "sample": { + "_tag": "ByteArray", + "bytearray": "42d46148ab1b8e" + }, + "cborHex": "4742d46148ab1b8e", + "cborBytes": [71, 66, 212, 97, 72, 171, 27, 142], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2449, + "sample": { + "_tag": "ByteArray", + "bytearray": "01fd00c9" + }, + "cborHex": "4401fd00c9", + "cborBytes": [68, 1, 253, 0, 201], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2450, + "sample": { + "_tag": "ByteArray", + "bytearray": "01ca61" + }, + "cborHex": "4301ca61", + "cborBytes": [67, 1, 202, 97], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2451, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd6000fd70fd030390fb05" + }, + "cborHex": "4bfd6000fd70fd030390fb05", + "cborBytes": [75, 253, 96, 0, 253, 112, 253, 3, 3, 144, 251, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2452, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff48797b" + }, + "cborHex": "44ff48797b", + "cborBytes": [68, 255, 72, 121, 123], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2453, + "sample": { + "_tag": "ByteArray", + "bytearray": "20fe" + }, + "cborHex": "4220fe", + "cborBytes": [66, 32, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2454, + "sample": { + "_tag": "ByteArray", + "bytearray": "ffdaf8" + }, + "cborHex": "43ffdaf8", + "cborBytes": [67, 255, 218, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2455, + "sample": { + "_tag": "ByteArray", + "bytearray": "ea19b7d468" + }, + "cborHex": "45ea19b7d468", + "cborBytes": [69, 234, 25, 183, 212, 104], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2456, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa7840" + }, + "cborHex": "43fa7840", + "cborBytes": [67, 250, 120, 64], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2457, + "sample": { + "_tag": "ByteArray", + "bytearray": "3be80407" + }, + "cborHex": "443be80407", + "cborBytes": [68, 59, 232, 4, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2458, + "sample": { + "_tag": "ByteArray", + "bytearray": "1df20882bd1e6f1b99a07424" + }, + "cborHex": "4c1df20882bd1e6f1b99a07424", + "cborBytes": [76, 29, 242, 8, 130, 189, 30, 111, 27, 153, 160, 116, 36], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2459, + "sample": { + "_tag": "ByteArray", + "bytearray": "3829fe0304fea4783b" + }, + "cborHex": "493829fe0304fea4783b", + "cborBytes": [73, 56, 41, 254, 3, 4, 254, 164, 120, 59], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2460, + "sample": { + "_tag": "ByteArray", + "bytearray": "41" + }, + "cborHex": "4141", + "cborBytes": [65, 65], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2461, + "sample": { + "_tag": "ByteArray", + "bytearray": "516b" + }, + "cborHex": "42516b", + "cborBytes": [66, 81, 107], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2462, + "sample": { + "_tag": "ByteArray", + "bytearray": "58c188f8f97400ef" + }, + "cborHex": "4858c188f8f97400ef", + "cborBytes": [72, 88, 193, 136, 248, 249, 116, 0, 239], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2463, + "sample": { + "_tag": "ByteArray", + "bytearray": "f590" + }, + "cborHex": "42f590", + "cborBytes": [66, 245, 144], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2464, + "sample": { + "_tag": "ByteArray", + "bytearray": "4cfa" + }, + "cborHex": "424cfa", + "cborBytes": [66, 76, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2465, + "sample": { + "_tag": "ByteArray", + "bytearray": "f45a" + }, + "cborHex": "42f45a", + "cborBytes": [66, 244, 90], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2466, + "sample": { + "_tag": "ByteArray", + "bytearray": "0663" + }, + "cborHex": "420663", + "cborBytes": [66, 6, 99], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2467, + "sample": { + "_tag": "ByteArray", + "bytearray": "83182241f5d2f7d499b242d2" + }, + "cborHex": "4c83182241f5d2f7d499b242d2", + "cborBytes": [76, 131, 24, 34, 65, 245, 210, 247, 212, 153, 178, 66, 210], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2468, + "sample": { + "_tag": "ByteArray", + "bytearray": "93210be909" + }, + "cborHex": "4593210be909", + "cborBytes": [69, 147, 33, 11, 233, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2469, + "sample": { + "_tag": "ByteArray", + "bytearray": "04d9" + }, + "cborHex": "4204d9", + "cborBytes": [66, 4, 217], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2470, + "sample": { + "_tag": "ByteArray", + "bytearray": "ec955605f9f7" + }, + "cborHex": "46ec955605f9f7", + "cborBytes": [70, 236, 149, 86, 5, 249, 247], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2471, + "sample": { + "_tag": "ByteArray", + "bytearray": "87fafb67d74e5b" + }, + "cborHex": "4787fafb67d74e5b", + "cborBytes": [71, 135, 250, 251, 103, 215, 78, 91], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2472, + "sample": { + "_tag": "ByteArray", + "bytearray": "e83748f7353c" + }, + "cborHex": "46e83748f7353c", + "cborBytes": [70, 232, 55, 72, 247, 53, 60], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2473, + "sample": { + "_tag": "ByteArray", + "bytearray": "cddb94" + }, + "cborHex": "43cddb94", + "cborBytes": [67, 205, 219, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2474, + "sample": { + "_tag": "ByteArray", + "bytearray": "01fcfc" + }, + "cborHex": "4301fcfc", + "cborBytes": [67, 1, 252, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2475, + "sample": { + "_tag": "ByteArray", + "bytearray": "4b30030105" + }, + "cborHex": "454b30030105", + "cborBytes": [69, 75, 48, 3, 1, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2476, + "sample": { + "_tag": "ByteArray", + "bytearray": "852bf3" + }, + "cborHex": "43852bf3", + "cborBytes": [67, 133, 43, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2477, + "sample": { + "_tag": "ByteArray", + "bytearray": "0608fc" + }, + "cborHex": "430608fc", + "cborBytes": [67, 6, 8, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2478, + "sample": { + "_tag": "ByteArray", + "bytearray": "d085" + }, + "cborHex": "42d085", + "cborBytes": [66, 208, 133], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2479, + "sample": { + "_tag": "ByteArray", + "bytearray": "44fa4203e7977ca116b1" + }, + "cborHex": "4a44fa4203e7977ca116b1", + "cborBytes": [74, 68, 250, 66, 3, 231, 151, 124, 161, 22, 177], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2480, + "sample": { + "_tag": "ByteArray", + "bytearray": "d2607d5ae07b88f6b0a8ed28" + }, + "cborHex": "4cd2607d5ae07b88f6b0a8ed28", + "cborBytes": [76, 210, 96, 125, 90, 224, 123, 136, 246, 176, 168, 237, 40], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2481, + "sample": { + "_tag": "ByteArray", + "bytearray": "f84ec2" + }, + "cborHex": "43f84ec2", + "cborBytes": [67, 248, 78, 194], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2482, + "sample": { + "_tag": "ByteArray", + "bytearray": "5a37f038b5dbfaee48fe" + }, + "cborHex": "4a5a37f038b5dbfaee48fe", + "cborBytes": [74, 90, 55, 240, 56, 181, 219, 250, 238, 72, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2483, + "sample": { + "_tag": "ByteArray", + "bytearray": "580000" + }, + "cborHex": "43580000", + "cborBytes": [67, 88, 0, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2484, + "sample": { + "_tag": "ByteArray", + "bytearray": "d6e36c6092aa584e" + }, + "cborHex": "48d6e36c6092aa584e", + "cborBytes": [72, 214, 227, 108, 96, 146, 170, 88, 78], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2485, + "sample": { + "_tag": "ByteArray", + "bytearray": "a707cbfd06" + }, + "cborHex": "45a707cbfd06", + "cborBytes": [69, 167, 7, 203, 253, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2486, + "sample": { + "_tag": "ByteArray", + "bytearray": "d2b06b293fe1be" + }, + "cborHex": "47d2b06b293fe1be", + "cborBytes": [71, 210, 176, 107, 41, 63, 225, 190], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2487, + "sample": { + "_tag": "ByteArray", + "bytearray": "d10607d3df04f8fb63070600" + }, + "cborHex": "4cd10607d3df04f8fb63070600", + "cborBytes": [76, 209, 6, 7, 211, 223, 4, 248, 251, 99, 7, 6, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2488, + "sample": { + "_tag": "ByteArray", + "bytearray": "4c5b2fdc7c2eb60e02f5" + }, + "cborHex": "4a4c5b2fdc7c2eb60e02f5", + "cborBytes": [74, 76, 91, 47, 220, 124, 46, 182, 14, 2, 245], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2489, + "sample": { + "_tag": "ByteArray", + "bytearray": "fef902f1" + }, + "cborHex": "44fef902f1", + "cborBytes": [68, 254, 249, 2, 241], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2490, + "sample": { + "_tag": "ByteArray", + "bytearray": "ef2b74f51d" + }, + "cborHex": "45ef2b74f51d", + "cborBytes": [69, 239, 43, 116, 245, 29], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2491, + "sample": { + "_tag": "ByteArray", + "bytearray": "b5927ff9fc79ffaa37" + }, + "cborHex": "49b5927ff9fc79ffaa37", + "cborBytes": [73, 181, 146, 127, 249, 252, 121, 255, 170, 55], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2492, + "sample": { + "_tag": "ByteArray", + "bytearray": "6fd0" + }, + "cborHex": "426fd0", + "cborBytes": [66, 111, 208], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2493, + "sample": { + "_tag": "ByteArray", + "bytearray": "4ed057" + }, + "cborHex": "434ed057", + "cborBytes": [67, 78, 208, 87], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2494, + "sample": { + "_tag": "ByteArray", + "bytearray": "03fcab" + }, + "cborHex": "4303fcab", + "cborBytes": [67, 3, 252, 171], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2495, + "sample": { + "_tag": "ByteArray", + "bytearray": "e4d1ebb91699" + }, + "cborHex": "46e4d1ebb91699", + "cborBytes": [70, 228, 209, 235, 185, 22, 153], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2496, + "sample": { + "_tag": "ByteArray", + "bytearray": "8bfcfbef038833c882" + }, + "cborHex": "498bfcfbef038833c882", + "cborBytes": [73, 139, 252, 251, 239, 3, 136, 51, 200, 130], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2497, + "sample": { + "_tag": "ByteArray", + "bytearray": "dd20" + }, + "cborHex": "42dd20", + "cborBytes": [66, 221, 32], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2498, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9fcb1f66760bf99047f1b" + }, + "cborHex": "4bf9fcb1f66760bf99047f1b", + "cborBytes": [75, 249, 252, 177, 246, 103, 96, 191, 153, 4, 127, 27], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2499, + "sample": { + "_tag": "ByteArray", + "bytearray": "0307" + }, + "cborHex": "420307", + "cborBytes": [66, 3, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2500, + "sample": { + "_tag": "ByteArray", + "bytearray": "56" + }, + "cborHex": "4156", + "cborBytes": [65, 86], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2501, + "sample": { + "_tag": "ByteArray", + "bytearray": "730352" + }, + "cborHex": "43730352", + "cborBytes": [67, 115, 3, 82], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2502, + "sample": { + "_tag": "ByteArray", + "bytearray": "0107" + }, + "cborHex": "420107", + "cborBytes": [66, 1, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2503, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb7ad7283176" + }, + "cborHex": "46fb7ad7283176", + "cborBytes": [70, 251, 122, 215, 40, 49, 118], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2504, + "sample": { + "_tag": "ByteArray", + "bytearray": "17c25769786d9e78" + }, + "cborHex": "4817c25769786d9e78", + "cborBytes": [72, 23, 194, 87, 105, 120, 109, 158, 120], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2505, + "sample": { + "_tag": "ByteArray", + "bytearray": "e5" + }, + "cborHex": "41e5", + "cborBytes": [65, 229], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2506, + "sample": { + "_tag": "ByteArray", + "bytearray": "cbf8" + }, + "cborHex": "42cbf8", + "cborBytes": [66, 203, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2507, + "sample": { + "_tag": "ByteArray", + "bytearray": "2b8711c91e300407" + }, + "cborHex": "482b8711c91e300407", + "cborBytes": [72, 43, 135, 17, 201, 30, 48, 4, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2508, + "sample": { + "_tag": "ByteArray", + "bytearray": "04403bc5f7402003204c3547" + }, + "cborHex": "4c04403bc5f7402003204c3547", + "cborBytes": [76, 4, 64, 59, 197, 247, 64, 32, 3, 32, 76, 53, 71], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2509, + "sample": { + "_tag": "ByteArray", + "bytearray": "5cc0c443" + }, + "cborHex": "445cc0c443", + "cborBytes": [68, 92, 192, 196, 67], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2510, + "sample": { + "_tag": "ByteArray", + "bytearray": "c5131feb7989" + }, + "cborHex": "46c5131feb7989", + "cborBytes": [70, 197, 19, 31, 235, 121, 137], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2511, + "sample": { + "_tag": "ByteArray", + "bytearray": "8d414d05425e3dc8842558" + }, + "cborHex": "4b8d414d05425e3dc8842558", + "cborBytes": [75, 141, 65, 77, 5, 66, 94, 61, 200, 132, 37, 88], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2512, + "sample": { + "_tag": "ByteArray", + "bytearray": "96d81ad6c896f679" + }, + "cborHex": "4896d81ad6c896f679", + "cborBytes": [72, 150, 216, 26, 214, 200, 150, 246, 121], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2513, + "sample": { + "_tag": "ByteArray", + "bytearray": "3118c22b48087ade" + }, + "cborHex": "483118c22b48087ade", + "cborBytes": [72, 49, 24, 194, 43, 72, 8, 122, 222], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2514, + "sample": { + "_tag": "ByteArray", + "bytearray": "ec5ea20204fc" + }, + "cborHex": "46ec5ea20204fc", + "cborBytes": [70, 236, 94, 162, 2, 4, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2515, + "sample": { + "_tag": "ByteArray", + "bytearray": "3b2c0025514d26" + }, + "cborHex": "473b2c0025514d26", + "cborBytes": [71, 59, 44, 0, 37, 81, 77, 38], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2516, + "sample": { + "_tag": "ByteArray", + "bytearray": "3c750609c125cec8b26e53" + }, + "cborHex": "4b3c750609c125cec8b26e53", + "cborBytes": [75, 60, 117, 6, 9, 193, 37, 206, 200, 178, 110, 83], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2517, + "sample": { + "_tag": "ByteArray", + "bytearray": "dd81" + }, + "cborHex": "42dd81", + "cborBytes": [66, 221, 129], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2518, + "sample": { + "_tag": "ByteArray", + "bytearray": "b67094c4b0c4375b1390" + }, + "cborHex": "4ab67094c4b0c4375b1390", + "cborBytes": [74, 182, 112, 148, 196, 176, 196, 55, 91, 19, 144], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2519, + "sample": { + "_tag": "ByteArray", + "bytearray": "0cde754bf8" + }, + "cborHex": "450cde754bf8", + "cborBytes": [69, 12, 222, 117, 75, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2520, + "sample": { + "_tag": "ByteArray", + "bytearray": "035036c4f9f606122705fb87" + }, + "cborHex": "4c035036c4f9f606122705fb87", + "cborBytes": [76, 3, 80, 54, 196, 249, 246, 6, 18, 39, 5, 251, 135], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2521, + "sample": { + "_tag": "ByteArray", + "bytearray": "5e65fddefa4966" + }, + "cborHex": "475e65fddefa4966", + "cborBytes": [71, 94, 101, 253, 222, 250, 73, 102], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2522, + "sample": { + "_tag": "ByteArray", + "bytearray": "a3079fba1b5befb9" + }, + "cborHex": "48a3079fba1b5befb9", + "cborBytes": [72, 163, 7, 159, 186, 27, 91, 239, 185], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2523, + "sample": { + "_tag": "ByteArray", + "bytearray": "06fb79240655f807ff" + }, + "cborHex": "4906fb79240655f807ff", + "cborBytes": [73, 6, 251, 121, 36, 6, 85, 248, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2524, + "sample": { + "_tag": "ByteArray", + "bytearray": "c89a14" + }, + "cborHex": "43c89a14", + "cborBytes": [67, 200, 154, 20], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2525, + "sample": { + "_tag": "ByteArray", + "bytearray": "1e519a" + }, + "cborHex": "431e519a", + "cborBytes": [67, 30, 81, 154], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2526, + "sample": { + "_tag": "ByteArray", + "bytearray": "0702" + }, + "cborHex": "420702", + "cborBytes": [66, 7, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2527, + "sample": { + "_tag": "ByteArray", + "bytearray": "07c8" + }, + "cborHex": "4207c8", + "cborBytes": [66, 7, 200], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2528, + "sample": { + "_tag": "ByteArray", + "bytearray": "0d19fc" + }, + "cborHex": "430d19fc", + "cborBytes": [67, 13, 25, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2529, + "sample": { + "_tag": "ByteArray", + "bytearray": "03e47c3c" + }, + "cborHex": "4403e47c3c", + "cborBytes": [68, 3, 228, 124, 60], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2530, + "sample": { + "_tag": "ByteArray", + "bytearray": "00af00040355" + }, + "cborHex": "4600af00040355", + "cborBytes": [70, 0, 175, 0, 4, 3, 85], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2531, + "sample": { + "_tag": "ByteArray", + "bytearray": "4e524a0dbdd472068c" + }, + "cborHex": "494e524a0dbdd472068c", + "cborBytes": [73, 78, 82, 74, 13, 189, 212, 114, 6, 140], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2532, + "sample": { + "_tag": "ByteArray", + "bytearray": "3d" + }, + "cborHex": "413d", + "cborBytes": [65, 61], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2533, + "sample": { + "_tag": "ByteArray", + "bytearray": "109c06" + }, + "cborHex": "43109c06", + "cborBytes": [67, 16, 156, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2534, + "sample": { + "_tag": "ByteArray", + "bytearray": "03e7ea03b1fdfafb00fa" + }, + "cborHex": "4a03e7ea03b1fdfafb00fa", + "cborBytes": [74, 3, 231, 234, 3, 177, 253, 250, 251, 0, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2535, + "sample": { + "_tag": "ByteArray", + "bytearray": "1418" + }, + "cborHex": "421418", + "cborBytes": [66, 20, 24], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2536, + "sample": { + "_tag": "ByteArray", + "bytearray": "1aab" + }, + "cborHex": "421aab", + "cborBytes": [66, 26, 171], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2537, + "sample": { + "_tag": "ByteArray", + "bytearray": "f52155b84cfe5e85ed0503fb" + }, + "cborHex": "4cf52155b84cfe5e85ed0503fb", + "cborBytes": [76, 245, 33, 85, 184, 76, 254, 94, 133, 237, 5, 3, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2538, + "sample": { + "_tag": "ByteArray", + "bytearray": "05c2a45ab883269ea777" + }, + "cborHex": "4a05c2a45ab883269ea777", + "cborBytes": [74, 5, 194, 164, 90, 184, 131, 38, 158, 167, 119], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2539, + "sample": { + "_tag": "ByteArray", + "bytearray": "8206" + }, + "cborHex": "428206", + "cborBytes": [66, 130, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2540, + "sample": { + "_tag": "ByteArray", + "bytearray": "6afbce" + }, + "cborHex": "436afbce", + "cborBytes": [67, 106, 251, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2541, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd5b2d0770fb03" + }, + "cborHex": "47fd5b2d0770fb03", + "cborBytes": [71, 253, 91, 45, 7, 112, 251, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2542, + "sample": { + "_tag": "ByteArray", + "bytearray": "e704fc0857fd28016a020604" + }, + "cborHex": "4ce704fc0857fd28016a020604", + "cborBytes": [76, 231, 4, 252, 8, 87, 253, 40, 1, 106, 2, 6, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2543, + "sample": { + "_tag": "ByteArray", + "bytearray": "9b7d" + }, + "cborHex": "429b7d", + "cborBytes": [66, 155, 125], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2544, + "sample": { + "_tag": "ByteArray", + "bytearray": "24ae21" + }, + "cborHex": "4324ae21", + "cborBytes": [67, 36, 174, 33], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2545, + "sample": { + "_tag": "ByteArray", + "bytearray": "4e5a83" + }, + "cborHex": "434e5a83", + "cborBytes": [67, 78, 90, 131], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2546, + "sample": { + "_tag": "ByteArray", + "bytearray": "67d330d151c377" + }, + "cborHex": "4767d330d151c377", + "cborBytes": [71, 103, 211, 48, 209, 81, 195, 119], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2547, + "sample": { + "_tag": "ByteArray", + "bytearray": "7b4a836857" + }, + "cborHex": "457b4a836857", + "cborBytes": [69, 123, 74, 131, 104, 87], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2548, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd0f00fa050546bdfa07fc03" + }, + "cborHex": "4cfd0f00fa050546bdfa07fc03", + "cborBytes": [76, 253, 15, 0, 250, 5, 5, 70, 189, 250, 7, 252, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2549, + "sample": { + "_tag": "ByteArray", + "bytearray": "d0f0ff" + }, + "cborHex": "43d0f0ff", + "cborBytes": [67, 208, 240, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2550, + "sample": { + "_tag": "ByteArray", + "bytearray": "0a81ac92c54c69fb730eec2f" + }, + "cborHex": "4c0a81ac92c54c69fb730eec2f", + "cborBytes": [76, 10, 129, 172, 146, 197, 76, 105, 251, 115, 14, 236, 47], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2551, + "sample": { + "_tag": "ByteArray", + "bytearray": "3f9cdf8dce1425" + }, + "cborHex": "473f9cdf8dce1425", + "cborBytes": [71, 63, 156, 223, 141, 206, 20, 37], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2552, + "sample": { + "_tag": "ByteArray", + "bytearray": "53c073bbfdbb" + }, + "cborHex": "4653c073bbfdbb", + "cborBytes": [70, 83, 192, 115, 187, 253, 187], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2553, + "sample": { + "_tag": "ByteArray", + "bytearray": "69dda756" + }, + "cborHex": "4469dda756", + "cborBytes": [68, 105, 221, 167, 86], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2554, + "sample": { + "_tag": "ByteArray", + "bytearray": "b9ffc6074700" + }, + "cborHex": "46b9ffc6074700", + "cborBytes": [70, 185, 255, 198, 7, 71, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2555, + "sample": { + "_tag": "ByteArray", + "bytearray": "afff3ce09bff88" + }, + "cborHex": "47afff3ce09bff88", + "cborBytes": [71, 175, 255, 60, 224, 155, 255, 136], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2556, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbfd" + }, + "cborHex": "42fbfd", + "cborBytes": [66, 251, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2557, + "sample": { + "_tag": "ByteArray", + "bytearray": "f7dbb36315e5c494" + }, + "cborHex": "48f7dbb36315e5c494", + "cborBytes": [72, 247, 219, 179, 99, 21, 229, 196, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2558, + "sample": { + "_tag": "ByteArray", + "bytearray": "c4" + }, + "cborHex": "41c4", + "cborBytes": [65, 196], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2559, + "sample": { + "_tag": "ByteArray", + "bytearray": "160abb75590b0d54975d34" + }, + "cborHex": "4b160abb75590b0d54975d34", + "cborBytes": [75, 22, 10, 187, 117, 89, 11, 13, 84, 151, 93, 52], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2560, + "sample": { + "_tag": "ByteArray", + "bytearray": "5db7661eb2a34cfd" + }, + "cborHex": "485db7661eb2a34cfd", + "cborBytes": [72, 93, 183, 102, 30, 178, 163, 76, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2561, + "sample": { + "_tag": "ByteArray", + "bytearray": "7207" + }, + "cborHex": "427207", + "cborBytes": [66, 114, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2562, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9fb93" + }, + "cborHex": "43f9fb93", + "cborBytes": [67, 249, 251, 147], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2563, + "sample": { + "_tag": "ByteArray", + "bytearray": "0504fcf8" + }, + "cborHex": "440504fcf8", + "cborBytes": [68, 5, 4, 252, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2564, + "sample": { + "_tag": "ByteArray", + "bytearray": "f6ff01f801fb" + }, + "cborHex": "46f6ff01f801fb", + "cborBytes": [70, 246, 255, 1, 248, 1, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2565, + "sample": { + "_tag": "ByteArray", + "bytearray": "293c1fb9f8849606f4280754" + }, + "cborHex": "4c293c1fb9f8849606f4280754", + "cborBytes": [76, 41, 60, 31, 185, 248, 132, 150, 6, 244, 40, 7, 84], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2566, + "sample": { + "_tag": "ByteArray", + "bytearray": "05f97d02cbb803" + }, + "cborHex": "4705f97d02cbb803", + "cborBytes": [71, 5, 249, 125, 2, 203, 184, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2567, + "sample": { + "_tag": "ByteArray", + "bytearray": "471e" + }, + "cborHex": "42471e", + "cborBytes": [66, 71, 30], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2568, + "sample": { + "_tag": "ByteArray", + "bytearray": "1e3759cf4b2c5625c6479986" + }, + "cborHex": "4c1e3759cf4b2c5625c6479986", + "cborBytes": [76, 30, 55, 89, 207, 75, 44, 86, 37, 198, 71, 153, 134], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2569, + "sample": { + "_tag": "ByteArray", + "bytearray": "f55cfb" + }, + "cborHex": "43f55cfb", + "cborBytes": [67, 245, 92, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2570, + "sample": { + "_tag": "ByteArray", + "bytearray": "dd509fe8578b" + }, + "cborHex": "46dd509fe8578b", + "cborBytes": [70, 221, 80, 159, 232, 87, 139], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2571, + "sample": { + "_tag": "ByteArray", + "bytearray": "0660" + }, + "cborHex": "420660", + "cborBytes": [66, 6, 96], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2572, + "sample": { + "_tag": "ByteArray", + "bytearray": "4f0ca06b7443" + }, + "cborHex": "464f0ca06b7443", + "cborBytes": [70, 79, 12, 160, 107, 116, 67], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2573, + "sample": { + "_tag": "ByteArray", + "bytearray": "4594d3be55" + }, + "cborHex": "454594d3be55", + "cborBytes": [69, 69, 148, 211, 190, 85], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2574, + "sample": { + "_tag": "ByteArray", + "bytearray": "96a5a1d1" + }, + "cborHex": "4496a5a1d1", + "cborBytes": [68, 150, 165, 161, 209], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2575, + "sample": { + "_tag": "ByteArray", + "bytearray": "2120" + }, + "cborHex": "422120", + "cborBytes": [66, 33, 32], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2576, + "sample": { + "_tag": "ByteArray", + "bytearray": "c44c13b5b29ba929426ddd53" + }, + "cborHex": "4cc44c13b5b29ba929426ddd53", + "cborBytes": [76, 196, 76, 19, 181, 178, 155, 169, 41, 66, 109, 221, 83], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2577, + "sample": { + "_tag": "ByteArray", + "bytearray": "7d6929855a87" + }, + "cborHex": "467d6929855a87", + "cborBytes": [70, 125, 105, 41, 133, 90, 135], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2578, + "sample": { + "_tag": "ByteArray", + "bytearray": "1f523415" + }, + "cborHex": "441f523415", + "cborBytes": [68, 31, 82, 52, 21], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2579, + "sample": { + "_tag": "ByteArray", + "bytearray": "ddef0a7156db" + }, + "cborHex": "46ddef0a7156db", + "cborBytes": [70, 221, 239, 10, 113, 86, 219], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2580, + "sample": { + "_tag": "ByteArray", + "bytearray": "0206e3" + }, + "cborHex": "430206e3", + "cborBytes": [67, 2, 6, 227], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2581, + "sample": { + "_tag": "ByteArray", + "bytearray": "decdc54940b219" + }, + "cborHex": "47decdc54940b219", + "cborBytes": [71, 222, 205, 197, 73, 64, 178, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2582, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9d0016b03" + }, + "cborHex": "45f9d0016b03", + "cborBytes": [69, 249, 208, 1, 107, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2583, + "sample": { + "_tag": "ByteArray", + "bytearray": "ddfaf3fc007ac0" + }, + "cborHex": "47ddfaf3fc007ac0", + "cborBytes": [71, 221, 250, 243, 252, 0, 122, 192], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2584, + "sample": { + "_tag": "ByteArray", + "bytearray": "fdbaf900" + }, + "cborHex": "44fdbaf900", + "cborBytes": [68, 253, 186, 249, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2585, + "sample": { + "_tag": "ByteArray", + "bytearray": "33d66401d1584ed247" + }, + "cborHex": "4933d66401d1584ed247", + "cborBytes": [73, 51, 214, 100, 1, 209, 88, 78, 210, 71], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2586, + "sample": { + "_tag": "ByteArray", + "bytearray": "c01b45d42c" + }, + "cborHex": "45c01b45d42c", + "cborBytes": [69, 192, 27, 69, 212, 44], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2587, + "sample": { + "_tag": "ByteArray", + "bytearray": "fdf92506c1" + }, + "cborHex": "45fdf92506c1", + "cborBytes": [69, 253, 249, 37, 6, 193], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2588, + "sample": { + "_tag": "ByteArray", + "bytearray": "a9f945d8fb3f9038ef" + }, + "cborHex": "49a9f945d8fb3f9038ef", + "cborBytes": [73, 169, 249, 69, 216, 251, 63, 144, 56, 239], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2589, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbfec0" + }, + "cborHex": "43fbfec0", + "cborBytes": [67, 251, 254, 192], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2590, + "sample": { + "_tag": "ByteArray", + "bytearray": "f0ae72b1" + }, + "cborHex": "44f0ae72b1", + "cborBytes": [68, 240, 174, 114, 177], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2591, + "sample": { + "_tag": "ByteArray", + "bytearray": "6a194ec3" + }, + "cborHex": "446a194ec3", + "cborBytes": [68, 106, 25, 78, 195], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2592, + "sample": { + "_tag": "ByteArray", + "bytearray": "15010201332206f35803" + }, + "cborHex": "4a15010201332206f35803", + "cborBytes": [74, 21, 1, 2, 1, 51, 34, 6, 243, 88, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2593, + "sample": { + "_tag": "ByteArray", + "bytearray": "317f4c1339527f5601ef" + }, + "cborHex": "4a317f4c1339527f5601ef", + "cborBytes": [74, 49, 127, 76, 19, 57, 82, 127, 86, 1, 239], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2594, + "sample": { + "_tag": "ByteArray", + "bytearray": "52affdfd0038fa020190" + }, + "cborHex": "4a52affdfd0038fa020190", + "cborBytes": [74, 82, 175, 253, 253, 0, 56, 250, 2, 1, 144], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2595, + "sample": { + "_tag": "ByteArray", + "bytearray": "f48b41" + }, + "cborHex": "43f48b41", + "cborBytes": [67, 244, 139, 65], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2596, + "sample": { + "_tag": "ByteArray", + "bytearray": "cb886d2fef04fa77f39428" + }, + "cborHex": "4bcb886d2fef04fa77f39428", + "cborBytes": [75, 203, 136, 109, 47, 239, 4, 250, 119, 243, 148, 40], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2597, + "sample": { + "_tag": "ByteArray", + "bytearray": "a4ad63ff1c5cbb6d26fa6c41" + }, + "cborHex": "4ca4ad63ff1c5cbb6d26fa6c41", + "cborBytes": [76, 164, 173, 99, 255, 28, 92, 187, 109, 38, 250, 108, 65], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2598, + "sample": { + "_tag": "ByteArray", + "bytearray": "a68fd6fa72a2829e5d4a07c3" + }, + "cborHex": "4ca68fd6fa72a2829e5d4a07c3", + "cborBytes": [76, 166, 143, 214, 250, 114, 162, 130, 158, 93, 74, 7, 195], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2599, + "sample": { + "_tag": "ByteArray", + "bytearray": "110a32e284e6" + }, + "cborHex": "46110a32e284e6", + "cborBytes": [70, 17, 10, 50, 226, 132, 230], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2600, + "sample": { + "_tag": "ByteArray", + "bytearray": "05ff03" + }, + "cborHex": "4305ff03", + "cborBytes": [67, 5, 255, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2601, + "sample": { + "_tag": "ByteArray", + "bytearray": "9ab94b994871f3" + }, + "cborHex": "479ab94b994871f3", + "cborBytes": [71, 154, 185, 75, 153, 72, 113, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2602, + "sample": { + "_tag": "ByteArray", + "bytearray": "5b31fd36" + }, + "cborHex": "445b31fd36", + "cborBytes": [68, 91, 49, 253, 54], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2603, + "sample": { + "_tag": "ByteArray", + "bytearray": "4aecada2" + }, + "cborHex": "444aecada2", + "cborBytes": [68, 74, 236, 173, 162], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2604, + "sample": { + "_tag": "ByteArray", + "bytearray": "060672" + }, + "cborHex": "43060672", + "cborBytes": [67, 6, 6, 114], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2605, + "sample": { + "_tag": "ByteArray", + "bytearray": "6dcfcbfafa58f57823ca" + }, + "cborHex": "4a6dcfcbfafa58f57823ca", + "cborBytes": [74, 109, 207, 203, 250, 250, 88, 245, 120, 35, 202], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2606, + "sample": { + "_tag": "ByteArray", + "bytearray": "09006dc3988e01" + }, + "cborHex": "4709006dc3988e01", + "cborBytes": [71, 9, 0, 109, 195, 152, 142, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2607, + "sample": { + "_tag": "ByteArray", + "bytearray": "0700" + }, + "cborHex": "420700", + "cborBytes": [66, 7, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2608, + "sample": { + "_tag": "ByteArray", + "bytearray": "33bbe06ac7b0dadd0595b2" + }, + "cborHex": "4b33bbe06ac7b0dadd0595b2", + "cborBytes": [75, 51, 187, 224, 106, 199, 176, 218, 221, 5, 149, 178], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2609, + "sample": { + "_tag": "ByteArray", + "bytearray": "e603acce" + }, + "cborHex": "44e603acce", + "cborBytes": [68, 230, 3, 172, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2610, + "sample": { + "_tag": "ByteArray", + "bytearray": "980169fcac03fab8" + }, + "cborHex": "48980169fcac03fab8", + "cborBytes": [72, 152, 1, 105, 252, 172, 3, 250, 184], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2611, + "sample": { + "_tag": "ByteArray", + "bytearray": "639e44ac1bc37596" + }, + "cborHex": "48639e44ac1bc37596", + "cborBytes": [72, 99, 158, 68, 172, 27, 195, 117, 150], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2612, + "sample": { + "_tag": "ByteArray", + "bytearray": "ca182df082cb785e" + }, + "cborHex": "48ca182df082cb785e", + "cborBytes": [72, 202, 24, 45, 240, 130, 203, 120, 94], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2613, + "sample": { + "_tag": "ByteArray", + "bytearray": "02fa4dc6c51d12" + }, + "cborHex": "4702fa4dc6c51d12", + "cborBytes": [71, 2, 250, 77, 198, 197, 29, 18], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2614, + "sample": { + "_tag": "ByteArray", + "bytearray": "23d05b" + }, + "cborHex": "4323d05b", + "cborBytes": [67, 35, 208, 91], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2615, + "sample": { + "_tag": "ByteArray", + "bytearray": "01c5046803fbf0c5" + }, + "cborHex": "4801c5046803fbf0c5", + "cborBytes": [72, 1, 197, 4, 104, 3, 251, 240, 197], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2616, + "sample": { + "_tag": "ByteArray", + "bytearray": "036e04" + }, + "cborHex": "43036e04", + "cborBytes": [67, 3, 110, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2617, + "sample": { + "_tag": "ByteArray", + "bytearray": "4e26cdd801" + }, + "cborHex": "454e26cdd801", + "cborBytes": [69, 78, 38, 205, 216, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2618, + "sample": { + "_tag": "ByteArray", + "bytearray": "3b897ec15b4e20b1" + }, + "cborHex": "483b897ec15b4e20b1", + "cborBytes": [72, 59, 137, 126, 193, 91, 78, 32, 177], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2619, + "sample": { + "_tag": "ByteArray", + "bytearray": "7105" + }, + "cborHex": "427105", + "cborBytes": [66, 113, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2620, + "sample": { + "_tag": "ByteArray", + "bytearray": "7e90" + }, + "cborHex": "427e90", + "cborBytes": [66, 126, 144], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2621, + "sample": { + "_tag": "ByteArray", + "bytearray": "6ab6c31a86" + }, + "cborHex": "456ab6c31a86", + "cborBytes": [69, 106, 182, 195, 26, 134], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2622, + "sample": { + "_tag": "ByteArray", + "bytearray": "1b6b8a16b1" + }, + "cborHex": "451b6b8a16b1", + "cborBytes": [69, 27, 107, 138, 22, 177], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2623, + "sample": { + "_tag": "ByteArray", + "bytearray": "943cad" + }, + "cborHex": "43943cad", + "cborBytes": [67, 148, 60, 173], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2624, + "sample": { + "_tag": "ByteArray", + "bytearray": "8b7f4fa9" + }, + "cborHex": "448b7f4fa9", + "cborBytes": [68, 139, 127, 79, 169], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2625, + "sample": { + "_tag": "ByteArray", + "bytearray": "d191d17c3b87" + }, + "cborHex": "46d191d17c3b87", + "cborBytes": [70, 209, 145, 209, 124, 59, 135], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2626, + "sample": { + "_tag": "ByteArray", + "bytearray": "23015b" + }, + "cborHex": "4323015b", + "cborBytes": [67, 35, 1, 91], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2627, + "sample": { + "_tag": "ByteArray", + "bytearray": "c03c16535e275b0e" + }, + "cborHex": "48c03c16535e275b0e", + "cborBytes": [72, 192, 60, 22, 83, 94, 39, 91, 14], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2628, + "sample": { + "_tag": "ByteArray", + "bytearray": "37" + }, + "cborHex": "4137", + "cborBytes": [65, 55], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2629, + "sample": { + "_tag": "ByteArray", + "bytearray": "71da08cd" + }, + "cborHex": "4471da08cd", + "cborBytes": [68, 113, 218, 8, 205], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2630, + "sample": { + "_tag": "ByteArray", + "bytearray": "1f93c3" + }, + "cborHex": "431f93c3", + "cborBytes": [67, 31, 147, 195], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2631, + "sample": { + "_tag": "ByteArray", + "bytearray": "f08d" + }, + "cborHex": "42f08d", + "cborBytes": [66, 240, 141], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2632, + "sample": { + "_tag": "ByteArray", + "bytearray": "4ad4e03aa0dc1b58da18" + }, + "cborHex": "4a4ad4e03aa0dc1b58da18", + "cborBytes": [74, 74, 212, 224, 58, 160, 220, 27, 88, 218, 24], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2633, + "sample": { + "_tag": "ByteArray", + "bytearray": "3382ad" + }, + "cborHex": "433382ad", + "cborBytes": [67, 51, 130, 173], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2634, + "sample": { + "_tag": "ByteArray", + "bytearray": "ac4e2d53d567afcfc8" + }, + "cborHex": "49ac4e2d53d567afcfc8", + "cborBytes": [73, 172, 78, 45, 83, 213, 103, 175, 207, 200], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2635, + "sample": { + "_tag": "ByteArray", + "bytearray": "8b0303048c00000200fb" + }, + "cborHex": "4a8b0303048c00000200fb", + "cborBytes": [74, 139, 3, 3, 4, 140, 0, 0, 2, 0, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2636, + "sample": { + "_tag": "ByteArray", + "bytearray": "d14f" + }, + "cborHex": "42d14f", + "cborBytes": [66, 209, 79], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2637, + "sample": { + "_tag": "ByteArray", + "bytearray": "20578fc0027a04fe067c01" + }, + "cborHex": "4b20578fc0027a04fe067c01", + "cborBytes": [75, 32, 87, 143, 192, 2, 122, 4, 254, 6, 124, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2638, + "sample": { + "_tag": "ByteArray", + "bytearray": "0008970304ac04" + }, + "cborHex": "470008970304ac04", + "cborBytes": [71, 0, 8, 151, 3, 4, 172, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2639, + "sample": { + "_tag": "ByteArray", + "bytearray": "daf87c5cd4" + }, + "cborHex": "45daf87c5cd4", + "cborBytes": [69, 218, 248, 124, 92, 212], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2640, + "sample": { + "_tag": "ByteArray", + "bytearray": "c97aeff94c" + }, + "cborHex": "45c97aeff94c", + "cborBytes": [69, 201, 122, 239, 249, 76], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2641, + "sample": { + "_tag": "ByteArray", + "bytearray": "0504790743" + }, + "cborHex": "450504790743", + "cborBytes": [69, 5, 4, 121, 7, 67], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2642, + "sample": { + "_tag": "ByteArray", + "bytearray": "d9c0611c" + }, + "cborHex": "44d9c0611c", + "cborBytes": [68, 217, 192, 97, 28], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2643, + "sample": { + "_tag": "ByteArray", + "bytearray": "a043fff70c7ac6877d34a6" + }, + "cborHex": "4ba043fff70c7ac6877d34a6", + "cborBytes": [75, 160, 67, 255, 247, 12, 122, 198, 135, 125, 52, 166], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2644, + "sample": { + "_tag": "ByteArray", + "bytearray": "80160fc1d0" + }, + "cborHex": "4580160fc1d0", + "cborBytes": [69, 128, 22, 15, 193, 208], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2645, + "sample": { + "_tag": "ByteArray", + "bytearray": "02bd" + }, + "cborHex": "4202bd", + "cborBytes": [66, 2, 189], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2646, + "sample": { + "_tag": "ByteArray", + "bytearray": "04fb" + }, + "cborHex": "4204fb", + "cborBytes": [66, 4, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2647, + "sample": { + "_tag": "ByteArray", + "bytearray": "3a4d009306b5ff" + }, + "cborHex": "473a4d009306b5ff", + "cborBytes": [71, 58, 77, 0, 147, 6, 181, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2648, + "sample": { + "_tag": "ByteArray", + "bytearray": "81b135" + }, + "cborHex": "4381b135", + "cborBytes": [67, 129, 177, 53], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2649, + "sample": { + "_tag": "ByteArray", + "bytearray": "0525" + }, + "cborHex": "420525", + "cborBytes": [66, 5, 37], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2650, + "sample": { + "_tag": "ByteArray", + "bytearray": "856bd60bbaa4ebbb" + }, + "cborHex": "48856bd60bbaa4ebbb", + "cborBytes": [72, 133, 107, 214, 11, 186, 164, 235, 187], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2651, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe9e34dfb4" + }, + "cborHex": "45fe9e34dfb4", + "cborBytes": [69, 254, 158, 52, 223, 180], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2652, + "sample": { + "_tag": "ByteArray", + "bytearray": "35033a6d1f0e7d8d75" + }, + "cborHex": "4935033a6d1f0e7d8d75", + "cborBytes": [73, 53, 3, 58, 109, 31, 14, 125, 141, 117], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2653, + "sample": { + "_tag": "ByteArray", + "bytearray": "8b5d6b0813" + }, + "cborHex": "458b5d6b0813", + "cborBytes": [69, 139, 93, 107, 8, 19], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2654, + "sample": { + "_tag": "ByteArray", + "bytearray": "700e56ab0c235c" + }, + "cborHex": "47700e56ab0c235c", + "cborBytes": [71, 112, 14, 86, 171, 12, 35, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2655, + "sample": { + "_tag": "ByteArray", + "bytearray": "ec07cd" + }, + "cborHex": "43ec07cd", + "cborBytes": [67, 236, 7, 205], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2656, + "sample": { + "_tag": "ByteArray", + "bytearray": "a423549b3c99" + }, + "cborHex": "46a423549b3c99", + "cborBytes": [70, 164, 35, 84, 155, 60, 153], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2657, + "sample": { + "_tag": "ByteArray", + "bytearray": "6f0f892d6882856bd6" + }, + "cborHex": "496f0f892d6882856bd6", + "cborBytes": [73, 111, 15, 137, 45, 104, 130, 133, 107, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2658, + "sample": { + "_tag": "ByteArray", + "bytearray": "28f6357528ad4d" + }, + "cborHex": "4728f6357528ad4d", + "cborBytes": [71, 40, 246, 53, 117, 40, 173, 77], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2659, + "sample": { + "_tag": "ByteArray", + "bytearray": "5c76c3175156f7b9d85c6978" + }, + "cborHex": "4c5c76c3175156f7b9d85c6978", + "cborBytes": [76, 92, 118, 195, 23, 81, 86, 247, 185, 216, 92, 105, 120], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2660, + "sample": { + "_tag": "ByteArray", + "bytearray": "946f03faf82dfe43" + }, + "cborHex": "48946f03faf82dfe43", + "cborBytes": [72, 148, 111, 3, 250, 248, 45, 254, 67], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2661, + "sample": { + "_tag": "ByteArray", + "bytearray": "c32d8955b2aa3348ccc765" + }, + "cborHex": "4bc32d8955b2aa3348ccc765", + "cborBytes": [75, 195, 45, 137, 85, 178, 170, 51, 72, 204, 199, 101], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2662, + "sample": { + "_tag": "ByteArray", + "bytearray": "b9832e17eeee81" + }, + "cborHex": "47b9832e17eeee81", + "cborBytes": [71, 185, 131, 46, 23, 238, 238, 129], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2663, + "sample": { + "_tag": "ByteArray", + "bytearray": "8ffcfe00fb05febe55e502" + }, + "cborHex": "4b8ffcfe00fb05febe55e502", + "cborBytes": [75, 143, 252, 254, 0, 251, 5, 254, 190, 85, 229, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2664, + "sample": { + "_tag": "ByteArray", + "bytearray": "010007" + }, + "cborHex": "43010007", + "cborBytes": [67, 1, 0, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2665, + "sample": { + "_tag": "ByteArray", + "bytearray": "12070200" + }, + "cborHex": "4412070200", + "cborBytes": [68, 18, 7, 2, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2666, + "sample": { + "_tag": "ByteArray", + "bytearray": "f123a35608c652" + }, + "cborHex": "47f123a35608c652", + "cborBytes": [71, 241, 35, 163, 86, 8, 198, 82], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2667, + "sample": { + "_tag": "ByteArray", + "bytearray": "06872e02" + }, + "cborHex": "4406872e02", + "cborBytes": [68, 6, 135, 46, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2668, + "sample": { + "_tag": "ByteArray", + "bytearray": "0449c9db5825eb" + }, + "cborHex": "470449c9db5825eb", + "cborBytes": [71, 4, 73, 201, 219, 88, 37, 235], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2669, + "sample": { + "_tag": "ByteArray", + "bytearray": "ad5d" + }, + "cborHex": "42ad5d", + "cborBytes": [66, 173, 93], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2670, + "sample": { + "_tag": "ByteArray", + "bytearray": "06020101" + }, + "cborHex": "4406020101", + "cborBytes": [68, 6, 2, 1, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2671, + "sample": { + "_tag": "ByteArray", + "bytearray": "bdb2f668" + }, + "cborHex": "44bdb2f668", + "cborBytes": [68, 189, 178, 246, 104], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2672, + "sample": { + "_tag": "ByteArray", + "bytearray": "0fa9725b600e37832b57c0fe" + }, + "cborHex": "4c0fa9725b600e37832b57c0fe", + "cborBytes": [76, 15, 169, 114, 91, 96, 14, 55, 131, 43, 87, 192, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2673, + "sample": { + "_tag": "ByteArray", + "bytearray": "d5de007a050107210100" + }, + "cborHex": "4ad5de007a050107210100", + "cborBytes": [74, 213, 222, 0, 122, 5, 1, 7, 33, 1, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2674, + "sample": { + "_tag": "ByteArray", + "bytearray": "e1ebcd1655" + }, + "cborHex": "45e1ebcd1655", + "cborBytes": [69, 225, 235, 205, 22, 85], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2675, + "sample": { + "_tag": "ByteArray", + "bytearray": "0d001c4df7bd2ed7bb528e" + }, + "cborHex": "4b0d001c4df7bd2ed7bb528e", + "cborBytes": [75, 13, 0, 28, 77, 247, 189, 46, 215, 187, 82, 142], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2676, + "sample": { + "_tag": "ByteArray", + "bytearray": "00717501" + }, + "cborHex": "4400717501", + "cborBytes": [68, 0, 113, 117, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2677, + "sample": { + "_tag": "ByteArray", + "bytearray": "cb82ee97d368fffebbabb94e" + }, + "cborHex": "4ccb82ee97d368fffebbabb94e", + "cborBytes": [76, 203, 130, 238, 151, 211, 104, 255, 254, 187, 171, 185, 78], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2678, + "sample": { + "_tag": "ByteArray", + "bytearray": "16923f944ea7" + }, + "cborHex": "4616923f944ea7", + "cborBytes": [70, 22, 146, 63, 148, 78, 167], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2679, + "sample": { + "_tag": "ByteArray", + "bytearray": "ca2c0ab60ca9f509e4" + }, + "cborHex": "49ca2c0ab60ca9f509e4", + "cborBytes": [73, 202, 44, 10, 182, 12, 169, 245, 9, 228], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2680, + "sample": { + "_tag": "ByteArray", + "bytearray": "2ab224ab0910877f" + }, + "cborHex": "482ab224ab0910877f", + "cborBytes": [72, 42, 178, 36, 171, 9, 16, 135, 127], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2681, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd5002" + }, + "cborHex": "43fd5002", + "cborBytes": [67, 253, 80, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2682, + "sample": { + "_tag": "ByteArray", + "bytearray": "eee4fef9019306f8" + }, + "cborHex": "48eee4fef9019306f8", + "cborBytes": [72, 238, 228, 254, 249, 1, 147, 6, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2683, + "sample": { + "_tag": "ByteArray", + "bytearray": "0671f9" + }, + "cborHex": "430671f9", + "cborBytes": [67, 6, 113, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2684, + "sample": { + "_tag": "ByteArray", + "bytearray": "61a3" + }, + "cborHex": "4261a3", + "cborBytes": [66, 97, 163], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2685, + "sample": { + "_tag": "ByteArray", + "bytearray": "b512eed1402a" + }, + "cborHex": "46b512eed1402a", + "cborBytes": [70, 181, 18, 238, 209, 64, 42], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2686, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe020700" + }, + "cborHex": "44fe020700", + "cborBytes": [68, 254, 2, 7, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2687, + "sample": { + "_tag": "ByteArray", + "bytearray": "b5ff767d" + }, + "cborHex": "44b5ff767d", + "cborBytes": [68, 181, 255, 118, 125], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2688, + "sample": { + "_tag": "ByteArray", + "bytearray": "322d75f194b4937b" + }, + "cborHex": "48322d75f194b4937b", + "cborBytes": [72, 50, 45, 117, 241, 148, 180, 147, 123], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2689, + "sample": { + "_tag": "ByteArray", + "bytearray": "96" + }, + "cborHex": "4196", + "cborBytes": [65, 150], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2690, + "sample": { + "_tag": "ByteArray", + "bytearray": "32d903fc050201" + }, + "cborHex": "4732d903fc050201", + "cborBytes": [71, 50, 217, 3, 252, 5, 2, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2691, + "sample": { + "_tag": "ByteArray", + "bytearray": "11ae1113af4a2812" + }, + "cborHex": "4811ae1113af4a2812", + "cborBytes": [72, 17, 174, 17, 19, 175, 74, 40, 18], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2692, + "sample": { + "_tag": "ByteArray", + "bytearray": "e6ce0300" + }, + "cborHex": "44e6ce0300", + "cborBytes": [68, 230, 206, 3, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2693, + "sample": { + "_tag": "ByteArray", + "bytearray": "02008afae1ff069207" + }, + "cborHex": "4902008afae1ff069207", + "cborBytes": [73, 2, 0, 138, 250, 225, 255, 6, 146, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2694, + "sample": { + "_tag": "ByteArray", + "bytearray": "8003dd4dc263" + }, + "cborHex": "468003dd4dc263", + "cborBytes": [70, 128, 3, 221, 77, 194, 99], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2695, + "sample": { + "_tag": "ByteArray", + "bytearray": "76e367c1c39db37cd627c44f" + }, + "cborHex": "4c76e367c1c39db37cd627c44f", + "cborBytes": [76, 118, 227, 103, 193, 195, 157, 179, 124, 214, 39, 196, 79], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2696, + "sample": { + "_tag": "ByteArray", + "bytearray": "da" + }, + "cborHex": "41da", + "cborBytes": [65, 218], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2697, + "sample": { + "_tag": "ByteArray", + "bytearray": "0f" + }, + "cborHex": "410f", + "cborBytes": [65, 15], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2698, + "sample": { + "_tag": "ByteArray", + "bytearray": "6f23410e0f3715fa" + }, + "cborHex": "486f23410e0f3715fa", + "cborBytes": [72, 111, 35, 65, 14, 15, 55, 21, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2699, + "sample": { + "_tag": "ByteArray", + "bytearray": "986b60b1315b794ec946a3" + }, + "cborHex": "4b986b60b1315b794ec946a3", + "cborBytes": [75, 152, 107, 96, 177, 49, 91, 121, 78, 201, 70, 163], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2700, + "sample": { + "_tag": "ByteArray", + "bytearray": "f904b1fa" + }, + "cborHex": "44f904b1fa", + "cborBytes": [68, 249, 4, 177, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2701, + "sample": { + "_tag": "ByteArray", + "bytearray": "e4df5556b3c4e931a5" + }, + "cborHex": "49e4df5556b3c4e931a5", + "cborBytes": [73, 228, 223, 85, 86, 179, 196, 233, 49, 165], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2702, + "sample": { + "_tag": "ByteArray", + "bytearray": "2b2b9c3f19cf00dfcd07e0fd" + }, + "cborHex": "4c2b2b9c3f19cf00dfcd07e0fd", + "cborBytes": [76, 43, 43, 156, 63, 25, 207, 0, 223, 205, 7, 224, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2703, + "sample": { + "_tag": "ByteArray", + "bytearray": "ce317e75e586e2253cc6604e" + }, + "cborHex": "4cce317e75e586e2253cc6604e", + "cborBytes": [76, 206, 49, 126, 117, 229, 134, 226, 37, 60, 198, 96, 78], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2704, + "sample": { + "_tag": "ByteArray", + "bytearray": "bfa3" + }, + "cborHex": "42bfa3", + "cborBytes": [66, 191, 163], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2705, + "sample": { + "_tag": "ByteArray", + "bytearray": "ce84010205015df1" + }, + "cborHex": "48ce84010205015df1", + "cborBytes": [72, 206, 132, 1, 2, 5, 1, 93, 241], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2706, + "sample": { + "_tag": "ByteArray", + "bytearray": "4a783242edca" + }, + "cborHex": "464a783242edca", + "cborBytes": [70, 74, 120, 50, 66, 237, 202], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2707, + "sample": { + "_tag": "ByteArray", + "bytearray": "e2d74fbb28c0e95d" + }, + "cborHex": "48e2d74fbb28c0e95d", + "cborBytes": [72, 226, 215, 79, 187, 40, 192, 233, 93], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2708, + "sample": { + "_tag": "ByteArray", + "bytearray": "03fd0302019a5307" + }, + "cborHex": "4803fd0302019a5307", + "cborBytes": [72, 3, 253, 3, 2, 1, 154, 83, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2709, + "sample": { + "_tag": "ByteArray", + "bytearray": "eff64bb28f" + }, + "cborHex": "45eff64bb28f", + "cborBytes": [69, 239, 246, 75, 178, 143], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2710, + "sample": { + "_tag": "ByteArray", + "bytearray": "7f04591fff04" + }, + "cborHex": "467f04591fff04", + "cborBytes": [70, 127, 4, 89, 31, 255, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2711, + "sample": { + "_tag": "ByteArray", + "bytearray": "12" + }, + "cborHex": "4112", + "cborBytes": [65, 18], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2712, + "sample": { + "_tag": "ByteArray", + "bytearray": "8cfd03" + }, + "cborHex": "438cfd03", + "cborBytes": [67, 140, 253, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2713, + "sample": { + "_tag": "ByteArray", + "bytearray": "951a23" + }, + "cborHex": "43951a23", + "cborBytes": [67, 149, 26, 35], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2714, + "sample": { + "_tag": "ByteArray", + "bytearray": "ca036226" + }, + "cborHex": "44ca036226", + "cborBytes": [68, 202, 3, 98, 38], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2715, + "sample": { + "_tag": "ByteArray", + "bytearray": "04fa" + }, + "cborHex": "4204fa", + "cborBytes": [66, 4, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2716, + "sample": { + "_tag": "ByteArray", + "bytearray": "6b59d5af0ce047" + }, + "cborHex": "476b59d5af0ce047", + "cborBytes": [71, 107, 89, 213, 175, 12, 224, 71], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2717, + "sample": { + "_tag": "ByteArray", + "bytearray": "a12d18b2b74114f3" + }, + "cborHex": "48a12d18b2b74114f3", + "cborBytes": [72, 161, 45, 24, 178, 183, 65, 20, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2718, + "sample": { + "_tag": "ByteArray", + "bytearray": "c0e2b795ac198920c446" + }, + "cborHex": "4ac0e2b795ac198920c446", + "cborBytes": [74, 192, 226, 183, 149, 172, 25, 137, 32, 196, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2719, + "sample": { + "_tag": "ByteArray", + "bytearray": "6d5eec64" + }, + "cborHex": "446d5eec64", + "cborBytes": [68, 109, 94, 236, 100], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2720, + "sample": { + "_tag": "ByteArray", + "bytearray": "77" + }, + "cborHex": "4177", + "cborBytes": [65, 119], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2721, + "sample": { + "_tag": "ByteArray", + "bytearray": "05becc" + }, + "cborHex": "4305becc", + "cborBytes": [67, 5, 190, 204], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2722, + "sample": { + "_tag": "ByteArray", + "bytearray": "ea5efdbace911d5d6b4138c5" + }, + "cborHex": "4cea5efdbace911d5d6b4138c5", + "cborBytes": [76, 234, 94, 253, 186, 206, 145, 29, 93, 107, 65, 56, 197], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2723, + "sample": { + "_tag": "ByteArray", + "bytearray": "841cdd36fbe460" + }, + "cborHex": "47841cdd36fbe460", + "cborBytes": [71, 132, 28, 221, 54, 251, 228, 96], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2724, + "sample": { + "_tag": "ByteArray", + "bytearray": "b6f4d7d49d01ed7a94" + }, + "cborHex": "49b6f4d7d49d01ed7a94", + "cborBytes": [73, 182, 244, 215, 212, 157, 1, 237, 122, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2725, + "sample": { + "_tag": "ByteArray", + "bytearray": "aa" + }, + "cborHex": "41aa", + "cborBytes": [65, 170], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2726, + "sample": { + "_tag": "ByteArray", + "bytearray": "86002678c100fd" + }, + "cborHex": "4786002678c100fd", + "cborBytes": [71, 134, 0, 38, 120, 193, 0, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2727, + "sample": { + "_tag": "ByteArray", + "bytearray": "58048093" + }, + "cborHex": "4458048093", + "cborBytes": [68, 88, 4, 128, 147], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2728, + "sample": { + "_tag": "ByteArray", + "bytearray": "04fa03e4" + }, + "cborHex": "4404fa03e4", + "cborBytes": [68, 4, 250, 3, 228], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2729, + "sample": { + "_tag": "ByteArray", + "bytearray": "9cc47500c66fd96e8f790e0b" + }, + "cborHex": "4c9cc47500c66fd96e8f790e0b", + "cborBytes": [76, 156, 196, 117, 0, 198, 111, 217, 110, 143, 121, 14, 11], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2730, + "sample": { + "_tag": "ByteArray", + "bytearray": "9585296746" + }, + "cborHex": "459585296746", + "cborBytes": [69, 149, 133, 41, 103, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2731, + "sample": { + "_tag": "ByteArray", + "bytearray": "7e613c248537886be6be5c" + }, + "cborHex": "4b7e613c248537886be6be5c", + "cborBytes": [75, 126, 97, 60, 36, 133, 55, 136, 107, 230, 190, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2732, + "sample": { + "_tag": "ByteArray", + "bytearray": "3d9b86" + }, + "cborHex": "433d9b86", + "cborBytes": [67, 61, 155, 134], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2733, + "sample": { + "_tag": "ByteArray", + "bytearray": "591d83b629" + }, + "cborHex": "45591d83b629", + "cborBytes": [69, 89, 29, 131, 182, 41], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2734, + "sample": { + "_tag": "ByteArray", + "bytearray": "03cbfefb530403ff02352805" + }, + "cborHex": "4c03cbfefb530403ff02352805", + "cborBytes": [76, 3, 203, 254, 251, 83, 4, 3, 255, 2, 53, 40, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2735, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff5bd7034eff" + }, + "cborHex": "46ff5bd7034eff", + "cborBytes": [70, 255, 91, 215, 3, 78, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2736, + "sample": { + "_tag": "ByteArray", + "bytearray": "06780192" + }, + "cborHex": "4406780192", + "cborBytes": [68, 6, 120, 1, 146], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2737, + "sample": { + "_tag": "ByteArray", + "bytearray": "692c7300" + }, + "cborHex": "44692c7300", + "cborBytes": [68, 105, 44, 115, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2738, + "sample": { + "_tag": "ByteArray", + "bytearray": "4505" + }, + "cborHex": "424505", + "cborBytes": [66, 69, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2739, + "sample": { + "_tag": "ByteArray", + "bytearray": "0500" + }, + "cborHex": "420500", + "cborBytes": [66, 5, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2740, + "sample": { + "_tag": "ByteArray", + "bytearray": "5c3df77c20c182" + }, + "cborHex": "475c3df77c20c182", + "cborBytes": [71, 92, 61, 247, 124, 32, 193, 130], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2741, + "sample": { + "_tag": "ByteArray", + "bytearray": "9301a2" + }, + "cborHex": "439301a2", + "cborBytes": [67, 147, 1, 162], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2742, + "sample": { + "_tag": "ByteArray", + "bytearray": "2e9e0241" + }, + "cborHex": "442e9e0241", + "cborBytes": [68, 46, 158, 2, 65], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2743, + "sample": { + "_tag": "ByteArray", + "bytearray": "0574" + }, + "cborHex": "420574", + "cborBytes": [66, 5, 116], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2744, + "sample": { + "_tag": "ByteArray", + "bytearray": "48f50d1907621369bb" + }, + "cborHex": "4948f50d1907621369bb", + "cborBytes": [73, 72, 245, 13, 25, 7, 98, 19, 105, 187], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2745, + "sample": { + "_tag": "ByteArray", + "bytearray": "03035c" + }, + "cborHex": "4303035c", + "cborBytes": [67, 3, 3, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2746, + "sample": { + "_tag": "ByteArray", + "bytearray": "bbff02" + }, + "cborHex": "43bbff02", + "cborBytes": [67, 187, 255, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2747, + "sample": { + "_tag": "ByteArray", + "bytearray": "b9b094c76c854dba16" + }, + "cborHex": "49b9b094c76c854dba16", + "cborBytes": [73, 185, 176, 148, 199, 108, 133, 77, 186, 22], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2748, + "sample": { + "_tag": "ByteArray", + "bytearray": "50faff36" + }, + "cborHex": "4450faff36", + "cborBytes": [68, 80, 250, 255, 54], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2749, + "sample": { + "_tag": "ByteArray", + "bytearray": "0094c4" + }, + "cborHex": "430094c4", + "cborBytes": [67, 0, 148, 196], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2750, + "sample": { + "_tag": "ByteArray", + "bytearray": "8003" + }, + "cborHex": "428003", + "cborBytes": [66, 128, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2751, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe0042" + }, + "cborHex": "43fe0042", + "cborBytes": [67, 254, 0, 66], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2752, + "sample": { + "_tag": "ByteArray", + "bytearray": "44f3d295ebbf6df8917908da" + }, + "cborHex": "4c44f3d295ebbf6df8917908da", + "cborBytes": [76, 68, 243, 210, 149, 235, 191, 109, 248, 145, 121, 8, 218], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2753, + "sample": { + "_tag": "ByteArray", + "bytearray": "4d9a42403892b3f0b4" + }, + "cborHex": "494d9a42403892b3f0b4", + "cborBytes": [73, 77, 154, 66, 64, 56, 146, 179, 240, 180], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2754, + "sample": { + "_tag": "ByteArray", + "bytearray": "66070487ea74567b" + }, + "cborHex": "4866070487ea74567b", + "cborBytes": [72, 102, 7, 4, 135, 234, 116, 86, 123], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2755, + "sample": { + "_tag": "ByteArray", + "bytearray": "4603f9" + }, + "cborHex": "434603f9", + "cborBytes": [67, 70, 3, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2756, + "sample": { + "_tag": "ByteArray", + "bytearray": "01608c" + }, + "cborHex": "4301608c", + "cborBytes": [67, 1, 96, 140], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2757, + "sample": { + "_tag": "ByteArray", + "bytearray": "823efdbc" + }, + "cborHex": "44823efdbc", + "cborBytes": [68, 130, 62, 253, 188], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2758, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8b7d09576" + }, + "cborHex": "45f8b7d09576", + "cborBytes": [69, 248, 183, 208, 149, 118], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2759, + "sample": { + "_tag": "ByteArray", + "bytearray": "1a16019d62e4d8" + }, + "cborHex": "471a16019d62e4d8", + "cborBytes": [71, 26, 22, 1, 157, 98, 228, 216], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2760, + "sample": { + "_tag": "ByteArray", + "bytearray": "070257dd76a1fec2" + }, + "cborHex": "48070257dd76a1fec2", + "cborBytes": [72, 7, 2, 87, 221, 118, 161, 254, 194], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2761, + "sample": { + "_tag": "ByteArray", + "bytearray": "6c9ed2d689266d8e1f" + }, + "cborHex": "496c9ed2d689266d8e1f", + "cborBytes": [73, 108, 158, 210, 214, 137, 38, 109, 142, 31], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2762, + "sample": { + "_tag": "ByteArray", + "bytearray": "60f644" + }, + "cborHex": "4360f644", + "cborBytes": [67, 96, 246, 68], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2763, + "sample": { + "_tag": "ByteArray", + "bytearray": "29a0f80590d6" + }, + "cborHex": "4629a0f80590d6", + "cborBytes": [70, 41, 160, 248, 5, 144, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2764, + "sample": { + "_tag": "ByteArray", + "bytearray": "a28ae10adb7fdd814ff4" + }, + "cborHex": "4aa28ae10adb7fdd814ff4", + "cborBytes": [74, 162, 138, 225, 10, 219, 127, 221, 129, 79, 244], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2765, + "sample": { + "_tag": "ByteArray", + "bytearray": "d49c23a06f8a4348a09bef" + }, + "cborHex": "4bd49c23a06f8a4348a09bef", + "cborBytes": [75, 212, 156, 35, 160, 111, 138, 67, 72, 160, 155, 239], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2766, + "sample": { + "_tag": "ByteArray", + "bytearray": "b7101626b546d4e2" + }, + "cborHex": "48b7101626b546d4e2", + "cborBytes": [72, 183, 16, 22, 38, 181, 70, 212, 226], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2767, + "sample": { + "_tag": "ByteArray", + "bytearray": "6e968aedf0" + }, + "cborHex": "456e968aedf0", + "cborBytes": [69, 110, 150, 138, 237, 240], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2768, + "sample": { + "_tag": "ByteArray", + "bytearray": "0239e2f2fbd4b7fd0d54" + }, + "cborHex": "4a0239e2f2fbd4b7fd0d54", + "cborBytes": [74, 2, 57, 226, 242, 251, 212, 183, 253, 13, 84], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2769, + "sample": { + "_tag": "ByteArray", + "bytearray": "8002" + }, + "cborHex": "428002", + "cborBytes": [66, 128, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2770, + "sample": { + "_tag": "ByteArray", + "bytearray": "7f51" + }, + "cborHex": "427f51", + "cborBytes": [66, 127, 81], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2771, + "sample": { + "_tag": "ByteArray", + "bytearray": "0120f80701fc05060209" + }, + "cborHex": "4a0120f80701fc05060209", + "cborBytes": [74, 1, 32, 248, 7, 1, 252, 5, 6, 2, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2772, + "sample": { + "_tag": "ByteArray", + "bytearray": "9bebb4f7286bc3e83c" + }, + "cborHex": "499bebb4f7286bc3e83c", + "cborBytes": [73, 155, 235, 180, 247, 40, 107, 195, 232, 60], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2773, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe058579e606" + }, + "cborHex": "46fe058579e606", + "cborBytes": [70, 254, 5, 133, 121, 230, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2774, + "sample": { + "_tag": "ByteArray", + "bytearray": "7de6411e" + }, + "cborHex": "447de6411e", + "cborBytes": [68, 125, 230, 65, 30], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2775, + "sample": { + "_tag": "ByteArray", + "bytearray": "76f8a7ffc12711de6a95" + }, + "cborHex": "4a76f8a7ffc12711de6a95", + "cborBytes": [74, 118, 248, 167, 255, 193, 39, 17, 222, 106, 149], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2776, + "sample": { + "_tag": "ByteArray", + "bytearray": "099bee9e6d" + }, + "cborHex": "45099bee9e6d", + "cborBytes": [69, 9, 155, 238, 158, 109], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2777, + "sample": { + "_tag": "ByteArray", + "bytearray": "eca94fe999ad040e10b46de2" + }, + "cborHex": "4ceca94fe999ad040e10b46de2", + "cborBytes": [76, 236, 169, 79, 233, 153, 173, 4, 14, 16, 180, 109, 226], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2778, + "sample": { + "_tag": "ByteArray", + "bytearray": "643f7ac126e6f0949772c3" + }, + "cborHex": "4b643f7ac126e6f0949772c3", + "cborBytes": [75, 100, 63, 122, 193, 38, 230, 240, 148, 151, 114, 195], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2779, + "sample": { + "_tag": "ByteArray", + "bytearray": "e5fcab34031ecd502b5565" + }, + "cborHex": "4be5fcab34031ecd502b5565", + "cborBytes": [75, 229, 252, 171, 52, 3, 30, 205, 80, 43, 85, 101], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2780, + "sample": { + "_tag": "ByteArray", + "bytearray": "c091b5c9e2387b16a191d4" + }, + "cborHex": "4bc091b5c9e2387b16a191d4", + "cborBytes": [75, 192, 145, 181, 201, 226, 56, 123, 22, 161, 145, 212], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2781, + "sample": { + "_tag": "ByteArray", + "bytearray": "d465fbd0248ecbc1b703bd4c" + }, + "cborHex": "4cd465fbd0248ecbc1b703bd4c", + "cborBytes": [76, 212, 101, 251, 208, 36, 142, 203, 193, 183, 3, 189, 76], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2782, + "sample": { + "_tag": "ByteArray", + "bytearray": "02bc01690000fdfbd8f4" + }, + "cborHex": "4a02bc01690000fdfbd8f4", + "cborBytes": [74, 2, 188, 1, 105, 0, 0, 253, 251, 216, 244], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2783, + "sample": { + "_tag": "ByteArray", + "bytearray": "913e8d4db4bde1ae" + }, + "cborHex": "48913e8d4db4bde1ae", + "cborBytes": [72, 145, 62, 141, 77, 180, 189, 225, 174], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2784, + "sample": { + "_tag": "ByteArray", + "bytearray": "0326" + }, + "cborHex": "420326", + "cborBytes": [66, 3, 38], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2785, + "sample": { + "_tag": "ByteArray", + "bytearray": "85156aac3819aacdbf7f9323" + }, + "cborHex": "4c85156aac3819aacdbf7f9323", + "cborBytes": [76, 133, 21, 106, 172, 56, 25, 170, 205, 191, 127, 147, 35], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2786, + "sample": { + "_tag": "ByteArray", + "bytearray": "00fa0057010723b9" + }, + "cborHex": "4800fa0057010723b9", + "cborBytes": [72, 0, 250, 0, 87, 1, 7, 35, 185], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2787, + "sample": { + "_tag": "ByteArray", + "bytearray": "1013ba6061d8" + }, + "cborHex": "461013ba6061d8", + "cborBytes": [70, 16, 19, 186, 96, 97, 216], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2788, + "sample": { + "_tag": "ByteArray", + "bytearray": "062b43" + }, + "cborHex": "43062b43", + "cborBytes": [67, 6, 43, 67], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2789, + "sample": { + "_tag": "ByteArray", + "bytearray": "9d0cf50b5cd101f7" + }, + "cborHex": "489d0cf50b5cd101f7", + "cborBytes": [72, 157, 12, 245, 11, 92, 209, 1, 247], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2790, + "sample": { + "_tag": "ByteArray", + "bytearray": "6399b5c23b" + }, + "cborHex": "456399b5c23b", + "cborBytes": [69, 99, 153, 181, 194, 59], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2791, + "sample": { + "_tag": "ByteArray", + "bytearray": "fafc44f903bdd000" + }, + "cborHex": "48fafc44f903bdd000", + "cborBytes": [72, 250, 252, 68, 249, 3, 189, 208, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2792, + "sample": { + "_tag": "ByteArray", + "bytearray": "7bbbc81795d8de2221a3c18b" + }, + "cborHex": "4c7bbbc81795d8de2221a3c18b", + "cborBytes": [76, 123, 187, 200, 23, 149, 216, 222, 34, 33, 163, 193, 139], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2793, + "sample": { + "_tag": "ByteArray", + "bytearray": "076b" + }, + "cborHex": "42076b", + "cborBytes": [66, 7, 107], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2794, + "sample": { + "_tag": "ByteArray", + "bytearray": "4e6c28259e" + }, + "cborHex": "454e6c28259e", + "cborBytes": [69, 78, 108, 40, 37, 158], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2795, + "sample": { + "_tag": "ByteArray", + "bytearray": "15f99c31d8180faf7cdd" + }, + "cborHex": "4a15f99c31d8180faf7cdd", + "cborBytes": [74, 21, 249, 156, 49, 216, 24, 15, 175, 124, 221], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2796, + "sample": { + "_tag": "ByteArray", + "bytearray": "05010006" + }, + "cborHex": "4405010006", + "cborBytes": [68, 5, 1, 0, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2797, + "sample": { + "_tag": "ByteArray", + "bytearray": "593cb4484c7c2f" + }, + "cborHex": "47593cb4484c7c2f", + "cborBytes": [71, 89, 60, 180, 72, 76, 124, 47], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2798, + "sample": { + "_tag": "ByteArray", + "bytearray": "87057d4debb73de40f09" + }, + "cborHex": "4a87057d4debb73de40f09", + "cborBytes": [74, 135, 5, 125, 77, 235, 183, 61, 228, 15, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2799, + "sample": { + "_tag": "ByteArray", + "bytearray": "6e0505057301c35cfd" + }, + "cborHex": "496e0505057301c35cfd", + "cborBytes": [73, 110, 5, 5, 5, 115, 1, 195, 92, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2800, + "sample": { + "_tag": "ByteArray", + "bytearray": "60a7" + }, + "cborHex": "4260a7", + "cborBytes": [66, 96, 167], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2801, + "sample": { + "_tag": "ByteArray", + "bytearray": "78f9ce203a5c" + }, + "cborHex": "4678f9ce203a5c", + "cborBytes": [70, 120, 249, 206, 32, 58, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2802, + "sample": { + "_tag": "ByteArray", + "bytearray": "0205" + }, + "cborHex": "420205", + "cborBytes": [66, 2, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2803, + "sample": { + "_tag": "ByteArray", + "bytearray": "6c77" + }, + "cborHex": "426c77", + "cborBytes": [66, 108, 119], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2804, + "sample": { + "_tag": "ByteArray", + "bytearray": "21b1eb9e90f9fa0504" + }, + "cborHex": "4921b1eb9e90f9fa0504", + "cborBytes": [73, 33, 177, 235, 158, 144, 249, 250, 5, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2805, + "sample": { + "_tag": "ByteArray", + "bytearray": "c6aa9d2e56ab57a7371e39d3" + }, + "cborHex": "4cc6aa9d2e56ab57a7371e39d3", + "cborBytes": [76, 198, 170, 157, 46, 86, 171, 87, 167, 55, 30, 57, 211], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2806, + "sample": { + "_tag": "ByteArray", + "bytearray": "58b710" + }, + "cborHex": "4358b710", + "cborBytes": [67, 88, 183, 16], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2807, + "sample": { + "_tag": "ByteArray", + "bytearray": "e5073dfafeb9" + }, + "cborHex": "46e5073dfafeb9", + "cborBytes": [70, 229, 7, 61, 250, 254, 185], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2808, + "sample": { + "_tag": "ByteArray", + "bytearray": "f0b32157913d4f" + }, + "cborHex": "47f0b32157913d4f", + "cborBytes": [71, 240, 179, 33, 87, 145, 61, 79], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2809, + "sample": { + "_tag": "ByteArray", + "bytearray": "8daab9df450c337d9d" + }, + "cborHex": "498daab9df450c337d9d", + "cborBytes": [73, 141, 170, 185, 223, 69, 12, 51, 125, 157], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2810, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa01" + }, + "cborHex": "42fa01", + "cborBytes": [66, 250, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2811, + "sample": { + "_tag": "ByteArray", + "bytearray": "689e7d0000a5cd444100" + }, + "cborHex": "4a689e7d0000a5cd444100", + "cborBytes": [74, 104, 158, 125, 0, 0, 165, 205, 68, 65, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2812, + "sample": { + "_tag": "ByteArray", + "bytearray": "4196f8072f0091c468fdbd" + }, + "cborHex": "4b4196f8072f0091c468fdbd", + "cborBytes": [75, 65, 150, 248, 7, 47, 0, 145, 196, 104, 253, 189], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2813, + "sample": { + "_tag": "ByteArray", + "bytearray": "0201fcf8fd03fd05" + }, + "cborHex": "480201fcf8fd03fd05", + "cborBytes": [72, 2, 1, 252, 248, 253, 3, 253, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2814, + "sample": { + "_tag": "ByteArray", + "bytearray": "06b8fed0" + }, + "cborHex": "4406b8fed0", + "cborBytes": [68, 6, 184, 254, 208], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2815, + "sample": { + "_tag": "ByteArray", + "bytearray": "8428266f" + }, + "cborHex": "448428266f", + "cborBytes": [68, 132, 40, 38, 111], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2816, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9fa0268" + }, + "cborHex": "44f9fa0268", + "cborBytes": [68, 249, 250, 2, 104], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2817, + "sample": { + "_tag": "ByteArray", + "bytearray": "8984c7a93e" + }, + "cborHex": "458984c7a93e", + "cborBytes": [69, 137, 132, 199, 169, 62], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2818, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd0403e6" + }, + "cborHex": "44fd0403e6", + "cborBytes": [68, 253, 4, 3, 230], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2819, + "sample": { + "_tag": "ByteArray", + "bytearray": "9b9ece68a0e39f60" + }, + "cborHex": "489b9ece68a0e39f60", + "cborBytes": [72, 155, 158, 206, 104, 160, 227, 159, 96], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2820, + "sample": { + "_tag": "ByteArray", + "bytearray": "88c47d" + }, + "cborHex": "4388c47d", + "cborBytes": [67, 136, 196, 125], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2821, + "sample": { + "_tag": "ByteArray", + "bytearray": "060601faec03007b47" + }, + "cborHex": "49060601faec03007b47", + "cborBytes": [73, 6, 6, 1, 250, 236, 3, 0, 123, 71], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2822, + "sample": { + "_tag": "ByteArray", + "bytearray": "5a9560" + }, + "cborHex": "435a9560", + "cborBytes": [67, 90, 149, 96], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2823, + "sample": { + "_tag": "ByteArray", + "bytearray": "cd0105" + }, + "cborHex": "43cd0105", + "cborBytes": [67, 205, 1, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2824, + "sample": { + "_tag": "ByteArray", + "bytearray": "c28a81" + }, + "cborHex": "43c28a81", + "cborBytes": [67, 194, 138, 129], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2825, + "sample": { + "_tag": "ByteArray", + "bytearray": "c11d" + }, + "cborHex": "42c11d", + "cborBytes": [66, 193, 29], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2826, + "sample": { + "_tag": "ByteArray", + "bytearray": "aa6c" + }, + "cborHex": "42aa6c", + "cborBytes": [66, 170, 108], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2827, + "sample": { + "_tag": "ByteArray", + "bytearray": "cd224f5e6ebd" + }, + "cborHex": "46cd224f5e6ebd", + "cborBytes": [70, 205, 34, 79, 94, 110, 189], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2828, + "sample": { + "_tag": "ByteArray", + "bytearray": "1f830e" + }, + "cborHex": "431f830e", + "cborBytes": [67, 31, 131, 14], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2829, + "sample": { + "_tag": "ByteArray", + "bytearray": "c89ea5" + }, + "cborHex": "43c89ea5", + "cborBytes": [67, 200, 158, 165], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2830, + "sample": { + "_tag": "ByteArray", + "bytearray": "e50c" + }, + "cborHex": "42e50c", + "cborBytes": [66, 229, 12], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2831, + "sample": { + "_tag": "ByteArray", + "bytearray": "067705" + }, + "cborHex": "43067705", + "cborBytes": [67, 6, 119, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2832, + "sample": { + "_tag": "ByteArray", + "bytearray": "05f00289" + }, + "cborHex": "4405f00289", + "cborBytes": [68, 5, 240, 2, 137], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2833, + "sample": { + "_tag": "ByteArray", + "bytearray": "0a2e61e04f0fd2ac5d3e161d" + }, + "cborHex": "4c0a2e61e04f0fd2ac5d3e161d", + "cborBytes": [76, 10, 46, 97, 224, 79, 15, 210, 172, 93, 62, 22, 29], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2834, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9bb04f8fcce71050701" + }, + "cborHex": "4af9bb04f8fcce71050701", + "cborBytes": [74, 249, 187, 4, 248, 252, 206, 113, 5, 7, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2835, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe03fe" + }, + "cborHex": "43fe03fe", + "cborBytes": [67, 254, 3, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2836, + "sample": { + "_tag": "ByteArray", + "bytearray": "c601" + }, + "cborHex": "42c601", + "cborBytes": [66, 198, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2837, + "sample": { + "_tag": "ByteArray", + "bytearray": "9169" + }, + "cborHex": "429169", + "cborBytes": [66, 145, 105], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2838, + "sample": { + "_tag": "ByteArray", + "bytearray": "b0" + }, + "cborHex": "41b0", + "cborBytes": [65, 176], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2839, + "sample": { + "_tag": "ByteArray", + "bytearray": "02c064fd" + }, + "cborHex": "4402c064fd", + "cborBytes": [68, 2, 192, 100, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2840, + "sample": { + "_tag": "ByteArray", + "bytearray": "c901" + }, + "cborHex": "42c901", + "cborBytes": [66, 201, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2841, + "sample": { + "_tag": "ByteArray", + "bytearray": "31" + }, + "cborHex": "4131", + "cborBytes": [65, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2842, + "sample": { + "_tag": "ByteArray", + "bytearray": "cdce" + }, + "cborHex": "42cdce", + "cborBytes": [66, 205, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2843, + "sample": { + "_tag": "ByteArray", + "bytearray": "ceec07" + }, + "cborHex": "43ceec07", + "cborBytes": [67, 206, 236, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2844, + "sample": { + "_tag": "ByteArray", + "bytearray": "00b5037bf17ffd" + }, + "cborHex": "4700b5037bf17ffd", + "cborBytes": [71, 0, 181, 3, 123, 241, 127, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2845, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9a9" + }, + "cborHex": "42f9a9", + "cborBytes": [66, 249, 169], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2846, + "sample": { + "_tag": "ByteArray", + "bytearray": "5913b73b" + }, + "cborHex": "445913b73b", + "cborBytes": [68, 89, 19, 183, 59], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2847, + "sample": { + "_tag": "ByteArray", + "bytearray": "ed4ebd" + }, + "cborHex": "43ed4ebd", + "cborBytes": [67, 237, 78, 189], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2848, + "sample": { + "_tag": "ByteArray", + "bytearray": "b3" + }, + "cborHex": "41b3", + "cborBytes": [65, 179], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2849, + "sample": { + "_tag": "ByteArray", + "bytearray": "9a9212" + }, + "cborHex": "439a9212", + "cborBytes": [67, 154, 146, 18], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2850, + "sample": { + "_tag": "ByteArray", + "bytearray": "02053a2a2ee00096c500" + }, + "cborHex": "4a02053a2a2ee00096c500", + "cborBytes": [74, 2, 5, 58, 42, 46, 224, 0, 150, 197, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2851, + "sample": { + "_tag": "ByteArray", + "bytearray": "06dc1519f7e780c67ce7" + }, + "cborHex": "4a06dc1519f7e780c67ce7", + "cborBytes": [74, 6, 220, 21, 25, 247, 231, 128, 198, 124, 231], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2852, + "sample": { + "_tag": "ByteArray", + "bytearray": "5da0d5c918705045" + }, + "cborHex": "485da0d5c918705045", + "cborBytes": [72, 93, 160, 213, 201, 24, 112, 80, 69], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2853, + "sample": { + "_tag": "ByteArray", + "bytearray": "a8981a930a820a34d47d21" + }, + "cborHex": "4ba8981a930a820a34d47d21", + "cborBytes": [75, 168, 152, 26, 147, 10, 130, 10, 52, 212, 125, 33], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2854, + "sample": { + "_tag": "ByteArray", + "bytearray": "da17d7456b" + }, + "cborHex": "45da17d7456b", + "cborBytes": [69, 218, 23, 215, 69, 107], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2855, + "sample": { + "_tag": "ByteArray", + "bytearray": "64fd" + }, + "cborHex": "4264fd", + "cborBytes": [66, 100, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2856, + "sample": { + "_tag": "ByteArray", + "bytearray": "bb7f3d096c13f9029423e5" + }, + "cborHex": "4bbb7f3d096c13f9029423e5", + "cborBytes": [75, 187, 127, 61, 9, 108, 19, 249, 2, 148, 35, 229], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2857, + "sample": { + "_tag": "ByteArray", + "bytearray": "ffa7" + }, + "cborHex": "42ffa7", + "cborBytes": [66, 255, 167], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2858, + "sample": { + "_tag": "ByteArray", + "bytearray": "2ade9919" + }, + "cborHex": "442ade9919", + "cborBytes": [68, 42, 222, 153, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2859, + "sample": { + "_tag": "ByteArray", + "bytearray": "effe" + }, + "cborHex": "42effe", + "cborBytes": [66, 239, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2860, + "sample": { + "_tag": "ByteArray", + "bytearray": "47d1080619" + }, + "cborHex": "4547d1080619", + "cborBytes": [69, 71, 209, 8, 6, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2861, + "sample": { + "_tag": "ByteArray", + "bytearray": "8f7a00f80c71" + }, + "cborHex": "468f7a00f80c71", + "cborBytes": [70, 143, 122, 0, 248, 12, 113], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2862, + "sample": { + "_tag": "ByteArray", + "bytearray": "c8ccc0afbc6d6e" + }, + "cborHex": "47c8ccc0afbc6d6e", + "cborBytes": [71, 200, 204, 192, 175, 188, 109, 110], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2863, + "sample": { + "_tag": "ByteArray", + "bytearray": "bb7a8e91" + }, + "cborHex": "44bb7a8e91", + "cborBytes": [68, 187, 122, 142, 145], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2864, + "sample": { + "_tag": "ByteArray", + "bytearray": "570003" + }, + "cborHex": "43570003", + "cborBytes": [67, 87, 0, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2865, + "sample": { + "_tag": "ByteArray", + "bytearray": "c2c6a548428d" + }, + "cborHex": "46c2c6a548428d", + "cborBytes": [70, 194, 198, 165, 72, 66, 141], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2866, + "sample": { + "_tag": "ByteArray", + "bytearray": "aa02b36c" + }, + "cborHex": "44aa02b36c", + "cborBytes": [68, 170, 2, 179, 108], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2867, + "sample": { + "_tag": "ByteArray", + "bytearray": "36d5d539" + }, + "cborHex": "4436d5d539", + "cborBytes": [68, 54, 213, 213, 57], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2868, + "sample": { + "_tag": "ByteArray", + "bytearray": "5631" + }, + "cborHex": "425631", + "cborBytes": [66, 86, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2869, + "sample": { + "_tag": "ByteArray", + "bytearray": "950905e38f77fecf" + }, + "cborHex": "48950905e38f77fecf", + "cborBytes": [72, 149, 9, 5, 227, 143, 119, 254, 207], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2870, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff030605fcfa0d4f4a6e07" + }, + "cborHex": "4bff030605fcfa0d4f4a6e07", + "cborBytes": [75, 255, 3, 6, 5, 252, 250, 13, 79, 74, 110, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2871, + "sample": { + "_tag": "ByteArray", + "bytearray": "e0ed6a2727a1efb09a394423" + }, + "cborHex": "4ce0ed6a2727a1efb09a394423", + "cborBytes": [76, 224, 237, 106, 39, 39, 161, 239, 176, 154, 57, 68, 35], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2872, + "sample": { + "_tag": "ByteArray", + "bytearray": "21249cdeb0732bd86c86" + }, + "cborHex": "4a21249cdeb0732bd86c86", + "cborBytes": [74, 33, 36, 156, 222, 176, 115, 43, 216, 108, 134], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2873, + "sample": { + "_tag": "ByteArray", + "bytearray": "19f9b2014674dd330effce5a" + }, + "cborHex": "4c19f9b2014674dd330effce5a", + "cborBytes": [76, 25, 249, 178, 1, 70, 116, 221, 51, 14, 255, 206, 90], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2874, + "sample": { + "_tag": "ByteArray", + "bytearray": "8724" + }, + "cborHex": "428724", + "cborBytes": [66, 135, 36], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2875, + "sample": { + "_tag": "ByteArray", + "bytearray": "427de664b2" + }, + "cborHex": "45427de664b2", + "cborBytes": [69, 66, 125, 230, 100, 178], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2876, + "sample": { + "_tag": "ByteArray", + "bytearray": "69db760a08b57719d6170661" + }, + "cborHex": "4c69db760a08b57719d6170661", + "cborBytes": [76, 105, 219, 118, 10, 8, 181, 119, 25, 214, 23, 6, 97], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2877, + "sample": { + "_tag": "ByteArray", + "bytearray": "03236cff2afa457b" + }, + "cborHex": "4803236cff2afa457b", + "cborBytes": [72, 3, 35, 108, 255, 42, 250, 69, 123], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2878, + "sample": { + "_tag": "ByteArray", + "bytearray": "e0" + }, + "cborHex": "41e0", + "cborBytes": [65, 224], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2879, + "sample": { + "_tag": "ByteArray", + "bytearray": "060496da06f98117" + }, + "cborHex": "48060496da06f98117", + "cborBytes": [72, 6, 4, 150, 218, 6, 249, 129, 23], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2880, + "sample": { + "_tag": "ByteArray", + "bytearray": "d1bbd21f7d64" + }, + "cborHex": "46d1bbd21f7d64", + "cborBytes": [70, 209, 187, 210, 31, 125, 100], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2881, + "sample": { + "_tag": "ByteArray", + "bytearray": "2aef2b4af358840bea65411a" + }, + "cborHex": "4c2aef2b4af358840bea65411a", + "cborBytes": [76, 42, 239, 43, 74, 243, 88, 132, 11, 234, 101, 65, 26], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2882, + "sample": { + "_tag": "ByteArray", + "bytearray": "04000400" + }, + "cborHex": "4404000400", + "cborBytes": [68, 4, 0, 4, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2883, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb01f9c00106" + }, + "cborHex": "46fb01f9c00106", + "cborBytes": [70, 251, 1, 249, 192, 1, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2884, + "sample": { + "_tag": "ByteArray", + "bytearray": "3308713b6f" + }, + "cborHex": "453308713b6f", + "cborBytes": [69, 51, 8, 113, 59, 111], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2885, + "sample": { + "_tag": "ByteArray", + "bytearray": "698eb9219f" + }, + "cborHex": "45698eb9219f", + "cborBytes": [69, 105, 142, 185, 33, 159], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2886, + "sample": { + "_tag": "ByteArray", + "bytearray": "2a" + }, + "cborHex": "412a", + "cborBytes": [65, 42], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2887, + "sample": { + "_tag": "ByteArray", + "bytearray": "550103a505" + }, + "cborHex": "45550103a505", + "cborBytes": [69, 85, 1, 3, 165, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2888, + "sample": { + "_tag": "ByteArray", + "bytearray": "9b14124bd9" + }, + "cborHex": "459b14124bd9", + "cborBytes": [69, 155, 20, 18, 75, 217], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2889, + "sample": { + "_tag": "ByteArray", + "bytearray": "bcf851fcd5aeaefb480205" + }, + "cborHex": "4bbcf851fcd5aeaefb480205", + "cborBytes": [75, 188, 248, 81, 252, 213, 174, 174, 251, 72, 2, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2890, + "sample": { + "_tag": "ByteArray", + "bytearray": "3926df3c6e98fd" + }, + "cborHex": "473926df3c6e98fd", + "cborBytes": [71, 57, 38, 223, 60, 110, 152, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2891, + "sample": { + "_tag": "ByteArray", + "bytearray": "99011ca1752afe020103806c" + }, + "cborHex": "4c99011ca1752afe020103806c", + "cborBytes": [76, 153, 1, 28, 161, 117, 42, 254, 2, 1, 3, 128, 108], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2892, + "sample": { + "_tag": "ByteArray", + "bytearray": "17b7388836b8" + }, + "cborHex": "4617b7388836b8", + "cborBytes": [70, 23, 183, 56, 136, 54, 184], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2893, + "sample": { + "_tag": "ByteArray", + "bytearray": "ed040700" + }, + "cborHex": "44ed040700", + "cborBytes": [68, 237, 4, 7, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2894, + "sample": { + "_tag": "ByteArray", + "bytearray": "1606fb" + }, + "cborHex": "431606fb", + "cborBytes": [67, 22, 6, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2895, + "sample": { + "_tag": "ByteArray", + "bytearray": "07ff05bc02a06401" + }, + "cborHex": "4807ff05bc02a06401", + "cborBytes": [72, 7, 255, 5, 188, 2, 160, 100, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2896, + "sample": { + "_tag": "ByteArray", + "bytearray": "3ab95a94f87822e4" + }, + "cborHex": "483ab95a94f87822e4", + "cborBytes": [72, 58, 185, 90, 148, 248, 120, 34, 228], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2897, + "sample": { + "_tag": "ByteArray", + "bytearray": "0995e48576b6eaa0f8ce" + }, + "cborHex": "4a0995e48576b6eaa0f8ce", + "cborBytes": [74, 9, 149, 228, 133, 118, 182, 234, 160, 248, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2898, + "sample": { + "_tag": "ByteArray", + "bytearray": "03b2" + }, + "cborHex": "4203b2", + "cborBytes": [66, 3, 178], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2899, + "sample": { + "_tag": "ByteArray", + "bytearray": "03425691" + }, + "cborHex": "4403425691", + "cborBytes": [68, 3, 66, 86, 145], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2900, + "sample": { + "_tag": "ByteArray", + "bytearray": "0a057a" + }, + "cborHex": "430a057a", + "cborBytes": [67, 10, 5, 122], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2901, + "sample": { + "_tag": "ByteArray", + "bytearray": "94c0f5da5960e41eb9" + }, + "cborHex": "4994c0f5da5960e41eb9", + "cborBytes": [73, 148, 192, 245, 218, 89, 96, 228, 30, 185], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2902, + "sample": { + "_tag": "ByteArray", + "bytearray": "dae35ea5f98c" + }, + "cborHex": "46dae35ea5f98c", + "cborBytes": [70, 218, 227, 94, 165, 249, 140], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2903, + "sample": { + "_tag": "ByteArray", + "bytearray": "0707aefb00f93b740674" + }, + "cborHex": "4a0707aefb00f93b740674", + "cborBytes": [74, 7, 7, 174, 251, 0, 249, 59, 116, 6, 116], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2904, + "sample": { + "_tag": "ByteArray", + "bytearray": "63f556" + }, + "cborHex": "4363f556", + "cborBytes": [67, 99, 245, 86], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2905, + "sample": { + "_tag": "ByteArray", + "bytearray": "58" + }, + "cborHex": "4158", + "cborBytes": [65, 88], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2906, + "sample": { + "_tag": "ByteArray", + "bytearray": "18f8031ffa7a0002fe" + }, + "cborHex": "4918f8031ffa7a0002fe", + "cborBytes": [73, 24, 248, 3, 31, 250, 122, 0, 2, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2907, + "sample": { + "_tag": "ByteArray", + "bytearray": "3d9e958eae9706" + }, + "cborHex": "473d9e958eae9706", + "cborBytes": [71, 61, 158, 149, 142, 174, 151, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2908, + "sample": { + "_tag": "ByteArray", + "bytearray": "8db6848c5d9a" + }, + "cborHex": "468db6848c5d9a", + "cborBytes": [70, 141, 182, 132, 140, 93, 154], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2909, + "sample": { + "_tag": "ByteArray", + "bytearray": "2abe09" + }, + "cborHex": "432abe09", + "cborBytes": [67, 42, 190, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2910, + "sample": { + "_tag": "ByteArray", + "bytearray": "013cdf24" + }, + "cborHex": "44013cdf24", + "cborBytes": [68, 1, 60, 223, 36], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2911, + "sample": { + "_tag": "ByteArray", + "bytearray": "b626c800150009" + }, + "cborHex": "47b626c800150009", + "cborBytes": [71, 182, 38, 200, 0, 21, 0, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2912, + "sample": { + "_tag": "ByteArray", + "bytearray": "0738fbc2" + }, + "cborHex": "440738fbc2", + "cborBytes": [68, 7, 56, 251, 194], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2913, + "sample": { + "_tag": "ByteArray", + "bytearray": "5aae8940" + }, + "cborHex": "445aae8940", + "cborBytes": [68, 90, 174, 137, 64], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2914, + "sample": { + "_tag": "ByteArray", + "bytearray": "93" + }, + "cborHex": "4193", + "cborBytes": [65, 147], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2915, + "sample": { + "_tag": "ByteArray", + "bytearray": "4c7d418fed2b88" + }, + "cborHex": "474c7d418fed2b88", + "cborBytes": [71, 76, 125, 65, 143, 237, 43, 136], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2916, + "sample": { + "_tag": "ByteArray", + "bytearray": "a55a1c04" + }, + "cborHex": "44a55a1c04", + "cborBytes": [68, 165, 90, 28, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2917, + "sample": { + "_tag": "ByteArray", + "bytearray": "0307d303f880c8ff06" + }, + "cborHex": "490307d303f880c8ff06", + "cborBytes": [73, 3, 7, 211, 3, 248, 128, 200, 255, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2918, + "sample": { + "_tag": "ByteArray", + "bytearray": "06a8" + }, + "cborHex": "4206a8", + "cborBytes": [66, 6, 168], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2919, + "sample": { + "_tag": "ByteArray", + "bytearray": "b0e1c7b17485ca6e2374cb" + }, + "cborHex": "4bb0e1c7b17485ca6e2374cb", + "cborBytes": [75, 176, 225, 199, 177, 116, 133, 202, 110, 35, 116, 203], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2920, + "sample": { + "_tag": "ByteArray", + "bytearray": "08dc7f" + }, + "cborHex": "4308dc7f", + "cborBytes": [67, 8, 220, 127], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2921, + "sample": { + "_tag": "ByteArray", + "bytearray": "3153" + }, + "cborHex": "423153", + "cborBytes": [66, 49, 83], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2922, + "sample": { + "_tag": "ByteArray", + "bytearray": "e8e7c10d2a" + }, + "cborHex": "45e8e7c10d2a", + "cborBytes": [69, 232, 231, 193, 13, 42], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2923, + "sample": { + "_tag": "ByteArray", + "bytearray": "c6f866" + }, + "cborHex": "43c6f866", + "cborBytes": [67, 198, 248, 102], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2924, + "sample": { + "_tag": "ByteArray", + "bytearray": "06065557" + }, + "cborHex": "4406065557", + "cborBytes": [68, 6, 6, 85, 87], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2925, + "sample": { + "_tag": "ByteArray", + "bytearray": "2d403e9b" + }, + "cborHex": "442d403e9b", + "cborBytes": [68, 45, 64, 62, 155], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2926, + "sample": { + "_tag": "ByteArray", + "bytearray": "070660ff74e2f90202" + }, + "cborHex": "49070660ff74e2f90202", + "cborBytes": [73, 7, 6, 96, 255, 116, 226, 249, 2, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2927, + "sample": { + "_tag": "ByteArray", + "bytearray": "ba016af8" + }, + "cborHex": "44ba016af8", + "cborBytes": [68, 186, 1, 106, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2928, + "sample": { + "_tag": "ByteArray", + "bytearray": "615e352a" + }, + "cborHex": "44615e352a", + "cborBytes": [68, 97, 94, 53, 42], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2929, + "sample": { + "_tag": "ByteArray", + "bytearray": "05fdc074fb5ad9" + }, + "cborHex": "4705fdc074fb5ad9", + "cborBytes": [71, 5, 253, 192, 116, 251, 90, 217], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2930, + "sample": { + "_tag": "ByteArray", + "bytearray": "03790100" + }, + "cborHex": "4403790100", + "cborBytes": [68, 3, 121, 1, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2931, + "sample": { + "_tag": "ByteArray", + "bytearray": "900606f9fd028605cf064b" + }, + "cborHex": "4b900606f9fd028605cf064b", + "cborBytes": [75, 144, 6, 6, 249, 253, 2, 134, 5, 207, 6, 75], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2932, + "sample": { + "_tag": "ByteArray", + "bytearray": "58a207fc" + }, + "cborHex": "4458a207fc", + "cborBytes": [68, 88, 162, 7, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2933, + "sample": { + "_tag": "ByteArray", + "bytearray": "1107a307" + }, + "cborHex": "441107a307", + "cborBytes": [68, 17, 7, 163, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2934, + "sample": { + "_tag": "ByteArray", + "bytearray": "493dc1256a65e589cb2f" + }, + "cborHex": "4a493dc1256a65e589cb2f", + "cborBytes": [74, 73, 61, 193, 37, 106, 101, 229, 137, 203, 47], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2935, + "sample": { + "_tag": "ByteArray", + "bytearray": "118387eace8d9f" + }, + "cborHex": "47118387eace8d9f", + "cborBytes": [71, 17, 131, 135, 234, 206, 141, 159], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2936, + "sample": { + "_tag": "ByteArray", + "bytearray": "2b54" + }, + "cborHex": "422b54", + "cborBytes": [66, 43, 84], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2937, + "sample": { + "_tag": "ByteArray", + "bytearray": "a98523078e" + }, + "cborHex": "45a98523078e", + "cborBytes": [69, 169, 133, 35, 7, 142], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2938, + "sample": { + "_tag": "ByteArray", + "bytearray": "0507037705fa2f6a07" + }, + "cborHex": "490507037705fa2f6a07", + "cborBytes": [73, 5, 7, 3, 119, 5, 250, 47, 106, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2939, + "sample": { + "_tag": "ByteArray", + "bytearray": "1769695e935e5dc4" + }, + "cborHex": "481769695e935e5dc4", + "cborBytes": [72, 23, 105, 105, 94, 147, 94, 93, 196], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2940, + "sample": { + "_tag": "ByteArray", + "bytearray": "3a" + }, + "cborHex": "413a", + "cborBytes": [65, 58], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2941, + "sample": { + "_tag": "ByteArray", + "bytearray": "4e67d6" + }, + "cborHex": "434e67d6", + "cborBytes": [67, 78, 103, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2942, + "sample": { + "_tag": "ByteArray", + "bytearray": "b40eedce" + }, + "cborHex": "44b40eedce", + "cborBytes": [68, 180, 14, 237, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2943, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc80fefaad36f79c343e7852" + }, + "cborHex": "4cfc80fefaad36f79c343e7852", + "cborBytes": [76, 252, 128, 254, 250, 173, 54, 247, 156, 52, 62, 120, 82], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2944, + "sample": { + "_tag": "ByteArray", + "bytearray": "1cfd42" + }, + "cborHex": "431cfd42", + "cborBytes": [67, 28, 253, 66], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2945, + "sample": { + "_tag": "ByteArray", + "bytearray": "d62cbc0201" + }, + "cborHex": "45d62cbc0201", + "cborBytes": [69, 214, 44, 188, 2, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2946, + "sample": { + "_tag": "ByteArray", + "bytearray": "255d1ce6" + }, + "cborHex": "44255d1ce6", + "cborBytes": [68, 37, 93, 28, 230], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2947, + "sample": { + "_tag": "ByteArray", + "bytearray": "4906" + }, + "cborHex": "424906", + "cborBytes": [66, 73, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2948, + "sample": { + "_tag": "ByteArray", + "bytearray": "546b01428b588e6cd446" + }, + "cborHex": "4a546b01428b588e6cd446", + "cborBytes": [74, 84, 107, 1, 66, 139, 88, 142, 108, 212, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2949, + "sample": { + "_tag": "ByteArray", + "bytearray": "0000ff02" + }, + "cborHex": "440000ff02", + "cborBytes": [68, 0, 0, 255, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2950, + "sample": { + "_tag": "ByteArray", + "bytearray": "d5a2f98c66" + }, + "cborHex": "45d5a2f98c66", + "cborBytes": [69, 213, 162, 249, 140, 102], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2951, + "sample": { + "_tag": "ByteArray", + "bytearray": "250307" + }, + "cborHex": "43250307", + "cborBytes": [67, 37, 3, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2952, + "sample": { + "_tag": "ByteArray", + "bytearray": "e14c1157" + }, + "cborHex": "44e14c1157", + "cborBytes": [68, 225, 76, 17, 87], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2953, + "sample": { + "_tag": "ByteArray", + "bytearray": "290204" + }, + "cborHex": "43290204", + "cborBytes": [67, 41, 2, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2954, + "sample": { + "_tag": "ByteArray", + "bytearray": "c205" + }, + "cborHex": "42c205", + "cborBytes": [66, 194, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2955, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff07" + }, + "cborHex": "42ff07", + "cborBytes": [66, 255, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2956, + "sample": { + "_tag": "ByteArray", + "bytearray": "b574" + }, + "cborHex": "42b574", + "cborBytes": [66, 181, 116], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2957, + "sample": { + "_tag": "ByteArray", + "bytearray": "be1c" + }, + "cborHex": "42be1c", + "cborBytes": [66, 190, 28], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2958, + "sample": { + "_tag": "ByteArray", + "bytearray": "b2d8d08a" + }, + "cborHex": "44b2d8d08a", + "cborBytes": [68, 178, 216, 208, 138], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2959, + "sample": { + "_tag": "ByteArray", + "bytearray": "f128ccb4b7020bd1" + }, + "cborHex": "48f128ccb4b7020bd1", + "cborBytes": [72, 241, 40, 204, 180, 183, 2, 11, 209], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2960, + "sample": { + "_tag": "ByteArray", + "bytearray": "a60000" + }, + "cborHex": "43a60000", + "cborBytes": [67, 166, 0, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2961, + "sample": { + "_tag": "ByteArray", + "bytearray": "1451" + }, + "cborHex": "421451", + "cborBytes": [66, 20, 81], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2962, + "sample": { + "_tag": "ByteArray", + "bytearray": "febef832" + }, + "cborHex": "44febef832", + "cborBytes": [68, 254, 190, 248, 50], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2963, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc2e036f" + }, + "cborHex": "44fc2e036f", + "cborBytes": [68, 252, 46, 3, 111], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2964, + "sample": { + "_tag": "ByteArray", + "bytearray": "c1d3" + }, + "cborHex": "42c1d3", + "cborBytes": [66, 193, 211], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2965, + "sample": { + "_tag": "ByteArray", + "bytearray": "223d132cc4a05a83" + }, + "cborHex": "48223d132cc4a05a83", + "cborBytes": [72, 34, 61, 19, 44, 196, 160, 90, 131], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2966, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8f80707" + }, + "cborHex": "44f8f80707", + "cborBytes": [68, 248, 248, 7, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2967, + "sample": { + "_tag": "ByteArray", + "bytearray": "af998036306d" + }, + "cborHex": "46af998036306d", + "cborBytes": [70, 175, 153, 128, 54, 48, 109], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2968, + "sample": { + "_tag": "ByteArray", + "bytearray": "03d8" + }, + "cborHex": "4203d8", + "cborBytes": [66, 3, 216], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2969, + "sample": { + "_tag": "ByteArray", + "bytearray": "b9725a5d" + }, + "cborHex": "44b9725a5d", + "cborBytes": [68, 185, 114, 90, 93], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2970, + "sample": { + "_tag": "ByteArray", + "bytearray": "f558f317c6acab3198ed09" + }, + "cborHex": "4bf558f317c6acab3198ed09", + "cborBytes": [75, 245, 88, 243, 23, 198, 172, 171, 49, 152, 237, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2971, + "sample": { + "_tag": "ByteArray", + "bytearray": "f222c4f0c34263596ffa4bd1" + }, + "cborHex": "4cf222c4f0c34263596ffa4bd1", + "cborBytes": [76, 242, 34, 196, 240, 195, 66, 99, 89, 111, 250, 75, 209], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2972, + "sample": { + "_tag": "ByteArray", + "bytearray": "3418a8339840" + }, + "cborHex": "463418a8339840", + "cborBytes": [70, 52, 24, 168, 51, 152, 64], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2973, + "sample": { + "_tag": "ByteArray", + "bytearray": "2d86f5" + }, + "cborHex": "432d86f5", + "cborBytes": [67, 45, 134, 245], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2974, + "sample": { + "_tag": "ByteArray", + "bytearray": "f17b3bd732b6cc0221ccf1" + }, + "cborHex": "4bf17b3bd732b6cc0221ccf1", + "cborBytes": [75, 241, 123, 59, 215, 50, 182, 204, 2, 33, 204, 241], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2975, + "sample": { + "_tag": "ByteArray", + "bytearray": "e8" + }, + "cborHex": "41e8", + "cborBytes": [65, 232], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2976, + "sample": { + "_tag": "ByteArray", + "bytearray": "ca566a055839d5" + }, + "cborHex": "47ca566a055839d5", + "cborBytes": [71, 202, 86, 106, 5, 88, 57, 213], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2977, + "sample": { + "_tag": "ByteArray", + "bytearray": "c9490bc920" + }, + "cborHex": "45c9490bc920", + "cborBytes": [69, 201, 73, 11, 201, 32], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2978, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe0600" + }, + "cborHex": "43fe0600", + "cborBytes": [67, 254, 6, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2979, + "sample": { + "_tag": "ByteArray", + "bytearray": "50e4b8" + }, + "cborHex": "4350e4b8", + "cborBytes": [67, 80, 228, 184], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2980, + "sample": { + "_tag": "ByteArray", + "bytearray": "82e4cced76267f9db147fac4" + }, + "cborHex": "4c82e4cced76267f9db147fac4", + "cborBytes": [76, 130, 228, 204, 237, 118, 38, 127, 157, 177, 71, 250, 196], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2981, + "sample": { + "_tag": "ByteArray", + "bytearray": "0ecf" + }, + "cborHex": "420ecf", + "cborBytes": [66, 14, 207], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2982, + "sample": { + "_tag": "ByteArray", + "bytearray": "f7f6" + }, + "cborHex": "42f7f6", + "cborBytes": [66, 247, 246], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2983, + "sample": { + "_tag": "ByteArray", + "bytearray": "bce9ac7a5aca9b8833d4" + }, + "cborHex": "4abce9ac7a5aca9b8833d4", + "cborBytes": [74, 188, 233, 172, 122, 90, 202, 155, 136, 51, 212], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2984, + "sample": { + "_tag": "ByteArray", + "bytearray": "76a9f6" + }, + "cborHex": "4376a9f6", + "cborBytes": [67, 118, 169, 246], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2985, + "sample": { + "_tag": "ByteArray", + "bytearray": "a7f88241" + }, + "cborHex": "44a7f88241", + "cborBytes": [68, 167, 248, 130, 65], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2986, + "sample": { + "_tag": "ByteArray", + "bytearray": "bc" + }, + "cborHex": "41bc", + "cborBytes": [65, 188], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2987, + "sample": { + "_tag": "ByteArray", + "bytearray": "0a60b955c289e82604a88548" + }, + "cborHex": "4c0a60b955c289e82604a88548", + "cborBytes": [76, 10, 96, 185, 85, 194, 137, 232, 38, 4, 168, 133, 72], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2988, + "sample": { + "_tag": "ByteArray", + "bytearray": "353c793f05e3d5d855" + }, + "cborHex": "49353c793f05e3d5d855", + "cborBytes": [73, 53, 60, 121, 63, 5, 227, 213, 216, 85], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2989, + "sample": { + "_tag": "ByteArray", + "bytearray": "b8f9c81440cc1cee" + }, + "cborHex": "48b8f9c81440cc1cee", + "cborBytes": [72, 184, 249, 200, 20, 64, 204, 28, 238], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2990, + "sample": { + "_tag": "ByteArray", + "bytearray": "f3e67c03" + }, + "cborHex": "44f3e67c03", + "cborBytes": [68, 243, 230, 124, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2991, + "sample": { + "_tag": "ByteArray", + "bytearray": "77c9b76fca8e" + }, + "cborHex": "4677c9b76fca8e", + "cborBytes": [70, 119, 201, 183, 111, 202, 142], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2992, + "sample": { + "_tag": "ByteArray", + "bytearray": "0daa1337d5" + }, + "cborHex": "450daa1337d5", + "cborBytes": [69, 13, 170, 19, 55, 213], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2993, + "sample": { + "_tag": "ByteArray", + "bytearray": "ce6bf91101ff55ba76" + }, + "cborHex": "49ce6bf91101ff55ba76", + "cborBytes": [73, 206, 107, 249, 17, 1, 255, 85, 186, 118], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2994, + "sample": { + "_tag": "ByteArray", + "bytearray": "aeee3647e245e182fad06f83" + }, + "cborHex": "4caeee3647e245e182fad06f83", + "cborBytes": [76, 174, 238, 54, 71, 226, 69, 225, 130, 250, 208, 111, 131], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2995, + "sample": { + "_tag": "ByteArray", + "bytearray": "cc8a5b4c02bc" + }, + "cborHex": "46cc8a5b4c02bc", + "cborBytes": [70, 204, 138, 91, 76, 2, 188], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2996, + "sample": { + "_tag": "ByteArray", + "bytearray": "ad91371273" + }, + "cborHex": "45ad91371273", + "cborBytes": [69, 173, 145, 55, 18, 115], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2997, + "sample": { + "_tag": "ByteArray", + "bytearray": "b0226c2af2" + }, + "cborHex": "45b0226c2af2", + "cborBytes": [69, 176, 34, 108, 42, 242], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2998, + "sample": { + "_tag": "ByteArray", + "bytearray": "a5e253fceff6d20205" + }, + "cborHex": "49a5e253fceff6d20205", + "cborBytes": [73, 165, 226, 83, 252, 239, 246, 210, 2, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 2999, + "sample": { + "_tag": "ByteArray", + "bytearray": "fabd" + }, + "cborHex": "42fabd", + "cborBytes": [66, 250, 189], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3000, + "sample": { + "_tag": "ByteArray", + "bytearray": "ad609821" + }, + "cborHex": "44ad609821", + "cborBytes": [68, 173, 96, 152, 33], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3001, + "sample": { + "_tag": "ByteArray", + "bytearray": "0302" + }, + "cborHex": "420302", + "cborBytes": [66, 3, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3002, + "sample": { + "_tag": "ByteArray", + "bytearray": "e2819d013f38b971da9e1b26" + }, + "cborHex": "4ce2819d013f38b971da9e1b26", + "cborBytes": [76, 226, 129, 157, 1, 63, 56, 185, 113, 218, 158, 27, 38], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3003, + "sample": { + "_tag": "ByteArray", + "bytearray": "062d40" + }, + "cborHex": "43062d40", + "cborBytes": [67, 6, 45, 64], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3004, + "sample": { + "_tag": "ByteArray", + "bytearray": "ca2f1ecd7a" + }, + "cborHex": "45ca2f1ecd7a", + "cborBytes": [69, 202, 47, 30, 205, 122], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3005, + "sample": { + "_tag": "ByteArray", + "bytearray": "c501f8fa" + }, + "cborHex": "44c501f8fa", + "cborBytes": [68, 197, 1, 248, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3006, + "sample": { + "_tag": "ByteArray", + "bytearray": "ddb3" + }, + "cborHex": "42ddb3", + "cborBytes": [66, 221, 179], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3007, + "sample": { + "_tag": "ByteArray", + "bytearray": "0307fa96" + }, + "cborHex": "440307fa96", + "cborBytes": [68, 3, 7, 250, 150], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3008, + "sample": { + "_tag": "ByteArray", + "bytearray": "785218a7" + }, + "cborHex": "44785218a7", + "cborBytes": [68, 120, 82, 24, 167], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3009, + "sample": { + "_tag": "ByteArray", + "bytearray": "d3" + }, + "cborHex": "41d3", + "cborBytes": [65, 211], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3010, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff624d832e273f24b048f2" + }, + "cborHex": "4bff624d832e273f24b048f2", + "cborBytes": [75, 255, 98, 77, 131, 46, 39, 63, 36, 176, 72, 242], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3011, + "sample": { + "_tag": "ByteArray", + "bytearray": "1111d9a8680f21" + }, + "cborHex": "471111d9a8680f21", + "cborBytes": [71, 17, 17, 217, 168, 104, 15, 33], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3012, + "sample": { + "_tag": "ByteArray", + "bytearray": "f2daf958103f" + }, + "cborHex": "46f2daf958103f", + "cborBytes": [70, 242, 218, 249, 88, 16, 63], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3013, + "sample": { + "_tag": "ByteArray", + "bytearray": "9006630707" + }, + "cborHex": "459006630707", + "cborBytes": [69, 144, 6, 99, 7, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3014, + "sample": { + "_tag": "ByteArray", + "bytearray": "c37b522793" + }, + "cborHex": "45c37b522793", + "cborBytes": [69, 195, 123, 82, 39, 147], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3015, + "sample": { + "_tag": "ByteArray", + "bytearray": "0659998b34c395c73e" + }, + "cborHex": "490659998b34c395c73e", + "cborBytes": [73, 6, 89, 153, 139, 52, 195, 149, 199, 62], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3016, + "sample": { + "_tag": "ByteArray", + "bytearray": "88e6" + }, + "cborHex": "4288e6", + "cborBytes": [66, 136, 230], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3017, + "sample": { + "_tag": "ByteArray", + "bytearray": "15c7739059" + }, + "cborHex": "4515c7739059", + "cborBytes": [69, 21, 199, 115, 144, 89], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3018, + "sample": { + "_tag": "ByteArray", + "bytearray": "91be" + }, + "cborHex": "4291be", + "cborBytes": [66, 145, 190], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3019, + "sample": { + "_tag": "ByteArray", + "bytearray": "06ee16f805f9f91913" + }, + "cborHex": "4906ee16f805f9f91913", + "cborBytes": [73, 6, 238, 22, 248, 5, 249, 249, 25, 19], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3020, + "sample": { + "_tag": "ByteArray", + "bytearray": "7cf8" + }, + "cborHex": "427cf8", + "cborBytes": [66, 124, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3021, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff28fc0605ebf8fb86400680" + }, + "cborHex": "4cff28fc0605ebf8fb86400680", + "cborBytes": [76, 255, 40, 252, 6, 5, 235, 248, 251, 134, 64, 6, 128], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3022, + "sample": { + "_tag": "ByteArray", + "bytearray": "c0fa" + }, + "cborHex": "42c0fa", + "cborBytes": [66, 192, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3023, + "sample": { + "_tag": "ByteArray", + "bytearray": "0305017f" + }, + "cborHex": "440305017f", + "cborBytes": [68, 3, 5, 1, 127], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3024, + "sample": { + "_tag": "ByteArray", + "bytearray": "0507fb" + }, + "cborHex": "430507fb", + "cborBytes": [67, 5, 7, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3025, + "sample": { + "_tag": "ByteArray", + "bytearray": "0102" + }, + "cborHex": "420102", + "cborBytes": [66, 1, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3026, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb02" + }, + "cborHex": "42fb02", + "cborBytes": [66, 251, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3027, + "sample": { + "_tag": "ByteArray", + "bytearray": "3d81df018796fd0a" + }, + "cborHex": "483d81df018796fd0a", + "cborBytes": [72, 61, 129, 223, 1, 135, 150, 253, 10], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3028, + "sample": { + "_tag": "ByteArray", + "bytearray": "c37c4db4c46f" + }, + "cborHex": "46c37c4db4c46f", + "cborBytes": [70, 195, 124, 77, 180, 196, 111], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3029, + "sample": { + "_tag": "ByteArray", + "bytearray": "7692c6bb0c54c8d583a617eb" + }, + "cborHex": "4c7692c6bb0c54c8d583a617eb", + "cborBytes": [76, 118, 146, 198, 187, 12, 84, 200, 213, 131, 166, 23, 235], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3030, + "sample": { + "_tag": "ByteArray", + "bytearray": "9d53" + }, + "cborHex": "429d53", + "cborBytes": [66, 157, 83], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3031, + "sample": { + "_tag": "ByteArray", + "bytearray": "47cba3" + }, + "cborHex": "4347cba3", + "cborBytes": [67, 71, 203, 163], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3032, + "sample": { + "_tag": "ByteArray", + "bytearray": "02a502bef8a8f9" + }, + "cborHex": "4702a502bef8a8f9", + "cborBytes": [71, 2, 165, 2, 190, 248, 168, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3033, + "sample": { + "_tag": "ByteArray", + "bytearray": "359502fe180111" + }, + "cborHex": "47359502fe180111", + "cborBytes": [71, 53, 149, 2, 254, 24, 1, 17], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3034, + "sample": { + "_tag": "ByteArray", + "bytearray": "603d3d0277b46379764b132e" + }, + "cborHex": "4c603d3d0277b46379764b132e", + "cborBytes": [76, 96, 61, 61, 2, 119, 180, 99, 121, 118, 75, 19, 46], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3035, + "sample": { + "_tag": "ByteArray", + "bytearray": "7a640605fab3727fada80746" + }, + "cborHex": "4c7a640605fab3727fada80746", + "cborBytes": [76, 122, 100, 6, 5, 250, 179, 114, 127, 173, 168, 7, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3036, + "sample": { + "_tag": "ByteArray", + "bytearray": "d499" + }, + "cborHex": "42d499", + "cborBytes": [66, 212, 153], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3037, + "sample": { + "_tag": "ByteArray", + "bytearray": "7ead6a9d9d0822cf56b07f1f" + }, + "cborHex": "4c7ead6a9d9d0822cf56b07f1f", + "cborBytes": [76, 126, 173, 106, 157, 157, 8, 34, 207, 86, 176, 127, 31], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3038, + "sample": { + "_tag": "ByteArray", + "bytearray": "60" + }, + "cborHex": "4160", + "cborBytes": [65, 96], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3039, + "sample": { + "_tag": "ByteArray", + "bytearray": "0e01" + }, + "cborHex": "420e01", + "cborBytes": [66, 14, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3040, + "sample": { + "_tag": "ByteArray", + "bytearray": "65045eecc2d40bbe" + }, + "cborHex": "4865045eecc2d40bbe", + "cborBytes": [72, 101, 4, 94, 236, 194, 212, 11, 190], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3041, + "sample": { + "_tag": "ByteArray", + "bytearray": "a400fc" + }, + "cborHex": "43a400fc", + "cborBytes": [67, 164, 0, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3042, + "sample": { + "_tag": "ByteArray", + "bytearray": "67a52a6f" + }, + "cborHex": "4467a52a6f", + "cborBytes": [68, 103, 165, 42, 111], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3043, + "sample": { + "_tag": "ByteArray", + "bytearray": "30cc33b2fcd0afbf83256e47" + }, + "cborHex": "4c30cc33b2fcd0afbf83256e47", + "cborBytes": [76, 48, 204, 51, 178, 252, 208, 175, 191, 131, 37, 110, 71], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3044, + "sample": { + "_tag": "ByteArray", + "bytearray": "34821e00" + }, + "cborHex": "4434821e00", + "cborBytes": [68, 52, 130, 30, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3045, + "sample": { + "_tag": "ByteArray", + "bytearray": "0597ec00e0f8feea0601f832" + }, + "cborHex": "4c0597ec00e0f8feea0601f832", + "cborBytes": [76, 5, 151, 236, 0, 224, 248, 254, 234, 6, 1, 248, 50], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3046, + "sample": { + "_tag": "ByteArray", + "bytearray": "28a4ff" + }, + "cborHex": "4328a4ff", + "cborBytes": [67, 40, 164, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3047, + "sample": { + "_tag": "ByteArray", + "bytearray": "94733b2669" + }, + "cborHex": "4594733b2669", + "cborBytes": [69, 148, 115, 59, 38, 105], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3048, + "sample": { + "_tag": "ByteArray", + "bytearray": "0ab1b918c33f" + }, + "cborHex": "460ab1b918c33f", + "cborBytes": [70, 10, 177, 185, 24, 195, 63], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3049, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff62b20101fe4e3c76" + }, + "cborHex": "49ff62b20101fe4e3c76", + "cborBytes": [73, 255, 98, 178, 1, 1, 254, 78, 60, 118], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3050, + "sample": { + "_tag": "ByteArray", + "bytearray": "4b6e543375dd" + }, + "cborHex": "464b6e543375dd", + "cborBytes": [70, 75, 110, 84, 51, 117, 221], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3051, + "sample": { + "_tag": "ByteArray", + "bytearray": "eed4e52084edaa" + }, + "cborHex": "47eed4e52084edaa", + "cborBytes": [71, 238, 212, 229, 32, 132, 237, 170], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3052, + "sample": { + "_tag": "ByteArray", + "bytearray": "c223554f115c686cc0" + }, + "cborHex": "49c223554f115c686cc0", + "cborBytes": [73, 194, 35, 85, 79, 17, 92, 104, 108, 192], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3053, + "sample": { + "_tag": "ByteArray", + "bytearray": "de32" + }, + "cborHex": "42de32", + "cborBytes": [66, 222, 50], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3054, + "sample": { + "_tag": "ByteArray", + "bytearray": "a4610e" + }, + "cborHex": "43a4610e", + "cborBytes": [67, 164, 97, 14], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3055, + "sample": { + "_tag": "ByteArray", + "bytearray": "6def" + }, + "cborHex": "426def", + "cborBytes": [66, 109, 239], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3056, + "sample": { + "_tag": "ByteArray", + "bytearray": "775f9dd04a" + }, + "cborHex": "45775f9dd04a", + "cborBytes": [69, 119, 95, 157, 208, 74], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3057, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8fb8f02ba07fb06b1" + }, + "cborHex": "49f8fb8f02ba07fb06b1", + "cborBytes": [73, 248, 251, 143, 2, 186, 7, 251, 6, 177], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3058, + "sample": { + "_tag": "ByteArray", + "bytearray": "79" + }, + "cborHex": "4179", + "cborBytes": [65, 121], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3059, + "sample": { + "_tag": "ByteArray", + "bytearray": "f7cb26fb593d" + }, + "cborHex": "46f7cb26fb593d", + "cborBytes": [70, 247, 203, 38, 251, 89, 61], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3060, + "sample": { + "_tag": "ByteArray", + "bytearray": "053ea028" + }, + "cborHex": "44053ea028", + "cborBytes": [68, 5, 62, 160, 40], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3061, + "sample": { + "_tag": "ByteArray", + "bytearray": "8313e01562f6" + }, + "cborHex": "468313e01562f6", + "cborBytes": [70, 131, 19, 224, 21, 98, 246], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3062, + "sample": { + "_tag": "ByteArray", + "bytearray": "677c" + }, + "cborHex": "42677c", + "cborBytes": [66, 103, 124], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3063, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd058a0301d3809b03f3" + }, + "cborHex": "4afd058a0301d3809b03f3", + "cborBytes": [74, 253, 5, 138, 3, 1, 211, 128, 155, 3, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3064, + "sample": { + "_tag": "ByteArray", + "bytearray": "0507" + }, + "cborHex": "420507", + "cborBytes": [66, 5, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3065, + "sample": { + "_tag": "ByteArray", + "bytearray": "566a389dd0b4" + }, + "cborHex": "46566a389dd0b4", + "cborBytes": [70, 86, 106, 56, 157, 208, 180], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3066, + "sample": { + "_tag": "ByteArray", + "bytearray": "05a7d7fc06fd00ff1905" + }, + "cborHex": "4a05a7d7fc06fd00ff1905", + "cborBytes": [74, 5, 167, 215, 252, 6, 253, 0, 255, 25, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3067, + "sample": { + "_tag": "ByteArray", + "bytearray": "78" + }, + "cborHex": "4178", + "cborBytes": [65, 120], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3068, + "sample": { + "_tag": "ByteArray", + "bytearray": "01b3b799130604050475fc0a" + }, + "cborHex": "4c01b3b799130604050475fc0a", + "cborBytes": [76, 1, 179, 183, 153, 19, 6, 4, 5, 4, 117, 252, 10], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3069, + "sample": { + "_tag": "ByteArray", + "bytearray": "f3" + }, + "cborHex": "41f3", + "cborBytes": [65, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3070, + "sample": { + "_tag": "ByteArray", + "bytearray": "c7387c" + }, + "cborHex": "43c7387c", + "cborBytes": [67, 199, 56, 124], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3071, + "sample": { + "_tag": "ByteArray", + "bytearray": "eab4919c" + }, + "cborHex": "44eab4919c", + "cborBytes": [68, 234, 180, 145, 156], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3072, + "sample": { + "_tag": "ByteArray", + "bytearray": "00a2" + }, + "cborHex": "4200a2", + "cborBytes": [66, 0, 162], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3073, + "sample": { + "_tag": "ByteArray", + "bytearray": "3d044f" + }, + "cborHex": "433d044f", + "cborBytes": [67, 61, 4, 79], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3074, + "sample": { + "_tag": "ByteArray", + "bytearray": "7d12ac1bdaba5e63" + }, + "cborHex": "487d12ac1bdaba5e63", + "cborBytes": [72, 125, 18, 172, 27, 218, 186, 94, 99], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3075, + "sample": { + "_tag": "ByteArray", + "bytearray": "cd2e89906c2170702f49" + }, + "cborHex": "4acd2e89906c2170702f49", + "cborBytes": [74, 205, 46, 137, 144, 108, 33, 112, 112, 47, 73], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3076, + "sample": { + "_tag": "ByteArray", + "bytearray": "00fbd404" + }, + "cborHex": "4400fbd404", + "cborBytes": [68, 0, 251, 212, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3077, + "sample": { + "_tag": "ByteArray", + "bytearray": "0202a459a5d8076a01f9" + }, + "cborHex": "4a0202a459a5d8076a01f9", + "cborBytes": [74, 2, 2, 164, 89, 165, 216, 7, 106, 1, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3078, + "sample": { + "_tag": "ByteArray", + "bytearray": "5504bd1d71f66244" + }, + "cborHex": "485504bd1d71f66244", + "cborBytes": [72, 85, 4, 189, 29, 113, 246, 98, 68], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3079, + "sample": { + "_tag": "ByteArray", + "bytearray": "1ccf7bf6b23ffa" + }, + "cborHex": "471ccf7bf6b23ffa", + "cborBytes": [71, 28, 207, 123, 246, 178, 63, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3080, + "sample": { + "_tag": "ByteArray", + "bytearray": "0738" + }, + "cborHex": "420738", + "cborBytes": [66, 7, 56], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3081, + "sample": { + "_tag": "ByteArray", + "bytearray": "0d55fe039fc6" + }, + "cborHex": "460d55fe039fc6", + "cborBytes": [70, 13, 85, 254, 3, 159, 198], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3082, + "sample": { + "_tag": "ByteArray", + "bytearray": "5dc012bf4c6752a48224d1" + }, + "cborHex": "4b5dc012bf4c6752a48224d1", + "cborBytes": [75, 93, 192, 18, 191, 76, 103, 82, 164, 130, 36, 209], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3083, + "sample": { + "_tag": "ByteArray", + "bytearray": "050104050602" + }, + "cborHex": "46050104050602", + "cborBytes": [70, 5, 1, 4, 5, 6, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3084, + "sample": { + "_tag": "ByteArray", + "bytearray": "479fd10230591a8c" + }, + "cborHex": "48479fd10230591a8c", + "cborBytes": [72, 71, 159, 209, 2, 48, 89, 26, 140], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3085, + "sample": { + "_tag": "ByteArray", + "bytearray": "e8dc1a9614f15198968e90" + }, + "cborHex": "4be8dc1a9614f15198968e90", + "cborBytes": [75, 232, 220, 26, 150, 20, 241, 81, 152, 150, 142, 144], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3086, + "sample": { + "_tag": "ByteArray", + "bytearray": "75b601a6823a6bb61f" + }, + "cborHex": "4975b601a6823a6bb61f", + "cborBytes": [73, 117, 182, 1, 166, 130, 58, 107, 182, 31], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3087, + "sample": { + "_tag": "ByteArray", + "bytearray": "3903" + }, + "cborHex": "423903", + "cborBytes": [66, 57, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3088, + "sample": { + "_tag": "ByteArray", + "bytearray": "2c4c30e11535bc8f83" + }, + "cborHex": "492c4c30e11535bc8f83", + "cborBytes": [73, 44, 76, 48, 225, 21, 53, 188, 143, 131], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3089, + "sample": { + "_tag": "ByteArray", + "bytearray": "0071" + }, + "cborHex": "420071", + "cborBytes": [66, 0, 113], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3090, + "sample": { + "_tag": "ByteArray", + "bytearray": "000610" + }, + "cborHex": "43000610", + "cborBytes": [67, 0, 6, 16], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3091, + "sample": { + "_tag": "ByteArray", + "bytearray": "f807682975140681d9bd05" + }, + "cborHex": "4bf807682975140681d9bd05", + "cborBytes": [75, 248, 7, 104, 41, 117, 20, 6, 129, 217, 189, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3092, + "sample": { + "_tag": "ByteArray", + "bytearray": "38fc15fefba3fdb9030107f9" + }, + "cborHex": "4c38fc15fefba3fdb9030107f9", + "cborBytes": [76, 56, 252, 21, 254, 251, 163, 253, 185, 3, 1, 7, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3093, + "sample": { + "_tag": "ByteArray", + "bytearray": "1103" + }, + "cborHex": "421103", + "cborBytes": [66, 17, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3094, + "sample": { + "_tag": "ByteArray", + "bytearray": "2412a6" + }, + "cborHex": "432412a6", + "cborBytes": [67, 36, 18, 166], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3095, + "sample": { + "_tag": "ByteArray", + "bytearray": "f803" + }, + "cborHex": "42f803", + "cborBytes": [66, 248, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3096, + "sample": { + "_tag": "ByteArray", + "bytearray": "c162cbfb050bff" + }, + "cborHex": "47c162cbfb050bff", + "cborBytes": [71, 193, 98, 203, 251, 5, 11, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3097, + "sample": { + "_tag": "ByteArray", + "bytearray": "05f8fc" + }, + "cborHex": "4305f8fc", + "cborBytes": [67, 5, 248, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3098, + "sample": { + "_tag": "ByteArray", + "bytearray": "07148cb54e29f5c1e7e7" + }, + "cborHex": "4a07148cb54e29f5c1e7e7", + "cborBytes": [74, 7, 20, 140, 181, 78, 41, 245, 193, 231, 231], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3099, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb9bb6" + }, + "cborHex": "43fb9bb6", + "cborBytes": [67, 251, 155, 182], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3100, + "sample": { + "_tag": "ByteArray", + "bytearray": "34" + }, + "cborHex": "4134", + "cborBytes": [65, 52], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3101, + "sample": { + "_tag": "ByteArray", + "bytearray": "6fe314c8114303" + }, + "cborHex": "476fe314c8114303", + "cborBytes": [71, 111, 227, 20, 200, 17, 67, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3102, + "sample": { + "_tag": "ByteArray", + "bytearray": "07060007" + }, + "cborHex": "4407060007", + "cborBytes": [68, 7, 6, 0, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3103, + "sample": { + "_tag": "ByteArray", + "bytearray": "d43d1e758d11498638a4" + }, + "cborHex": "4ad43d1e758d11498638a4", + "cborBytes": [74, 212, 61, 30, 117, 141, 17, 73, 134, 56, 164], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3104, + "sample": { + "_tag": "ByteArray", + "bytearray": "03010302" + }, + "cborHex": "4403010302", + "cborBytes": [68, 3, 1, 3, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3105, + "sample": { + "_tag": "ByteArray", + "bytearray": "20d07def278c41c5" + }, + "cborHex": "4820d07def278c41c5", + "cborBytes": [72, 32, 208, 125, 239, 39, 140, 65, 197], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3106, + "sample": { + "_tag": "ByteArray", + "bytearray": "03a2fa4c9c" + }, + "cborHex": "4503a2fa4c9c", + "cborBytes": [69, 3, 162, 250, 76, 156], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3107, + "sample": { + "_tag": "ByteArray", + "bytearray": "af6073a1851016" + }, + "cborHex": "47af6073a1851016", + "cborBytes": [71, 175, 96, 115, 161, 133, 16, 22], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3108, + "sample": { + "_tag": "ByteArray", + "bytearray": "be87f30a1e1171" + }, + "cborHex": "47be87f30a1e1171", + "cborBytes": [71, 190, 135, 243, 10, 30, 17, 113], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3109, + "sample": { + "_tag": "ByteArray", + "bytearray": "a0593d" + }, + "cborHex": "43a0593d", + "cborBytes": [67, 160, 89, 61], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3110, + "sample": { + "_tag": "ByteArray", + "bytearray": "7f2d4b01595b8676f5a08d" + }, + "cborHex": "4b7f2d4b01595b8676f5a08d", + "cborBytes": [75, 127, 45, 75, 1, 89, 91, 134, 118, 245, 160, 141], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3111, + "sample": { + "_tag": "ByteArray", + "bytearray": "00d1ac" + }, + "cborHex": "4300d1ac", + "cborBytes": [67, 0, 209, 172], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3112, + "sample": { + "_tag": "ByteArray", + "bytearray": "8c4b7c0ab14ee3a0" + }, + "cborHex": "488c4b7c0ab14ee3a0", + "cborBytes": [72, 140, 75, 124, 10, 177, 78, 227, 160], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3113, + "sample": { + "_tag": "ByteArray", + "bytearray": "38ff" + }, + "cborHex": "4238ff", + "cborBytes": [66, 56, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3114, + "sample": { + "_tag": "ByteArray", + "bytearray": "94fa" + }, + "cborHex": "4294fa", + "cborBytes": [66, 148, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3115, + "sample": { + "_tag": "ByteArray", + "bytearray": "ba60b52d4e14cdd8f2234d" + }, + "cborHex": "4bba60b52d4e14cdd8f2234d", + "cborBytes": [75, 186, 96, 181, 45, 78, 20, 205, 216, 242, 35, 77], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3116, + "sample": { + "_tag": "ByteArray", + "bytearray": "40fb04" + }, + "cborHex": "4340fb04", + "cborBytes": [67, 64, 251, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3117, + "sample": { + "_tag": "ByteArray", + "bytearray": "63fc0c07" + }, + "cborHex": "4463fc0c07", + "cborBytes": [68, 99, 252, 12, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3118, + "sample": { + "_tag": "ByteArray", + "bytearray": "fdca0092" + }, + "cborHex": "44fdca0092", + "cborBytes": [68, 253, 202, 0, 146], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3119, + "sample": { + "_tag": "ByteArray", + "bytearray": "7ea093f4c3f95f7f36" + }, + "cborHex": "497ea093f4c3f95f7f36", + "cborBytes": [73, 126, 160, 147, 244, 195, 249, 95, 127, 54], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3120, + "sample": { + "_tag": "ByteArray", + "bytearray": "b30102" + }, + "cborHex": "43b30102", + "cborBytes": [67, 179, 1, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3121, + "sample": { + "_tag": "ByteArray", + "bytearray": "7a86f3" + }, + "cborHex": "437a86f3", + "cborBytes": [67, 122, 134, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3122, + "sample": { + "_tag": "ByteArray", + "bytearray": "f19f625270173313" + }, + "cborHex": "48f19f625270173313", + "cborBytes": [72, 241, 159, 98, 82, 112, 23, 51, 19], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3123, + "sample": { + "_tag": "ByteArray", + "bytearray": "f940fe21ff984540e85ad9" + }, + "cborHex": "4bf940fe21ff984540e85ad9", + "cborBytes": [75, 249, 64, 254, 33, 255, 152, 69, 64, 232, 90, 217], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3124, + "sample": { + "_tag": "ByteArray", + "bytearray": "525102fd0701212007" + }, + "cborHex": "49525102fd0701212007", + "cborBytes": [73, 82, 81, 2, 253, 7, 1, 33, 32, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3125, + "sample": { + "_tag": "ByteArray", + "bytearray": "493e8598b36240d77cb2" + }, + "cborHex": "4a493e8598b36240d77cb2", + "cborBytes": [74, 73, 62, 133, 152, 179, 98, 64, 215, 124, 178], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3126, + "sample": { + "_tag": "ByteArray", + "bytearray": "00e216" + }, + "cborHex": "4300e216", + "cborBytes": [67, 0, 226, 22], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3127, + "sample": { + "_tag": "ByteArray", + "bytearray": "1bdc00" + }, + "cborHex": "431bdc00", + "cborBytes": [67, 27, 220, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3128, + "sample": { + "_tag": "ByteArray", + "bytearray": "c431" + }, + "cborHex": "42c431", + "cborBytes": [66, 196, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3129, + "sample": { + "_tag": "ByteArray", + "bytearray": "1c1218878e792cf86cde" + }, + "cborHex": "4a1c1218878e792cf86cde", + "cborBytes": [74, 28, 18, 24, 135, 142, 121, 44, 248, 108, 222], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3130, + "sample": { + "_tag": "ByteArray", + "bytearray": "902bfcc0" + }, + "cborHex": "44902bfcc0", + "cborBytes": [68, 144, 43, 252, 192], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3131, + "sample": { + "_tag": "ByteArray", + "bytearray": "02f9ab0604f9edc5fbff4303" + }, + "cborHex": "4c02f9ab0604f9edc5fbff4303", + "cborBytes": [76, 2, 249, 171, 6, 4, 249, 237, 197, 251, 255, 67, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3132, + "sample": { + "_tag": "ByteArray", + "bytearray": "8d0407" + }, + "cborHex": "438d0407", + "cborBytes": [67, 141, 4, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3133, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbfcad" + }, + "cborHex": "43fbfcad", + "cborBytes": [67, 251, 252, 173], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3134, + "sample": { + "_tag": "ByteArray", + "bytearray": "3203fffa022d3d00" + }, + "cborHex": "483203fffa022d3d00", + "cborBytes": [72, 50, 3, 255, 250, 2, 45, 61, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3135, + "sample": { + "_tag": "ByteArray", + "bytearray": "ca4d" + }, + "cborHex": "42ca4d", + "cborBytes": [66, 202, 77], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3136, + "sample": { + "_tag": "ByteArray", + "bytearray": "af05" + }, + "cborHex": "42af05", + "cborBytes": [66, 175, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3137, + "sample": { + "_tag": "ByteArray", + "bytearray": "61031ff9595225" + }, + "cborHex": "4761031ff9595225", + "cborBytes": [71, 97, 3, 31, 249, 89, 82, 37], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3138, + "sample": { + "_tag": "ByteArray", + "bytearray": "acfe98" + }, + "cborHex": "43acfe98", + "cborBytes": [67, 172, 254, 152], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3139, + "sample": { + "_tag": "ByteArray", + "bytearray": "a61a97" + }, + "cborHex": "43a61a97", + "cborBytes": [67, 166, 26, 151], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3140, + "sample": { + "_tag": "ByteArray", + "bytearray": "6c61fb04" + }, + "cborHex": "446c61fb04", + "cborBytes": [68, 108, 97, 251, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3141, + "sample": { + "_tag": "ByteArray", + "bytearray": "03c055b2fd47c2fe7fc5aa68" + }, + "cborHex": "4c03c055b2fd47c2fe7fc5aa68", + "cborBytes": [76, 3, 192, 85, 178, 253, 71, 194, 254, 127, 197, 170, 104], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3142, + "sample": { + "_tag": "ByteArray", + "bytearray": "2303fafc" + }, + "cborHex": "442303fafc", + "cborBytes": [68, 35, 3, 250, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3143, + "sample": { + "_tag": "ByteArray", + "bytearray": "3a40512ca6" + }, + "cborHex": "453a40512ca6", + "cborBytes": [69, 58, 64, 81, 44, 166], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3144, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcfa03" + }, + "cborHex": "43fcfa03", + "cborBytes": [67, 252, 250, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3145, + "sample": { + "_tag": "ByteArray", + "bytearray": "1a80b9cb95" + }, + "cborHex": "451a80b9cb95", + "cborBytes": [69, 26, 128, 185, 203, 149], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3146, + "sample": { + "_tag": "ByteArray", + "bytearray": "c3cc909d50eeb804c7" + }, + "cborHex": "49c3cc909d50eeb804c7", + "cborBytes": [73, 195, 204, 144, 157, 80, 238, 184, 4, 199], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3147, + "sample": { + "_tag": "ByteArray", + "bytearray": "fccc030406399876" + }, + "cborHex": "48fccc030406399876", + "cborBytes": [72, 252, 204, 3, 4, 6, 57, 152, 118], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3148, + "sample": { + "_tag": "ByteArray", + "bytearray": "7401" + }, + "cborHex": "427401", + "cborBytes": [66, 116, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3149, + "sample": { + "_tag": "ByteArray", + "bytearray": "5250be43b642c166" + }, + "cborHex": "485250be43b642c166", + "cborBytes": [72, 82, 80, 190, 67, 182, 66, 193, 102], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3150, + "sample": { + "_tag": "ByteArray", + "bytearray": "060119" + }, + "cborHex": "43060119", + "cborBytes": [67, 6, 1, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3151, + "sample": { + "_tag": "ByteArray", + "bytearray": "177350da5056db4f45c94296" + }, + "cborHex": "4c177350da5056db4f45c94296", + "cborBytes": [76, 23, 115, 80, 218, 80, 86, 219, 79, 69, 201, 66, 150], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3152, + "sample": { + "_tag": "ByteArray", + "bytearray": "8ea98f7cfc05062c" + }, + "cborHex": "488ea98f7cfc05062c", + "cborBytes": [72, 142, 169, 143, 124, 252, 5, 6, 44], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3153, + "sample": { + "_tag": "ByteArray", + "bytearray": "581ec322751b50d1bdb021" + }, + "cborHex": "4b581ec322751b50d1bdb021", + "cborBytes": [75, 88, 30, 195, 34, 117, 27, 80, 209, 189, 176, 33], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3154, + "sample": { + "_tag": "ByteArray", + "bytearray": "5f66c089d09e0737ce7f" + }, + "cborHex": "4a5f66c089d09e0737ce7f", + "cborBytes": [74, 95, 102, 192, 137, 208, 158, 7, 55, 206, 127], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3155, + "sample": { + "_tag": "ByteArray", + "bytearray": "c6ceab" + }, + "cborHex": "43c6ceab", + "cborBytes": [67, 198, 206, 171], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3156, + "sample": { + "_tag": "ByteArray", + "bytearray": "12f5d16fb9" + }, + "cborHex": "4512f5d16fb9", + "cborBytes": [69, 18, 245, 209, 111, 185], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3157, + "sample": { + "_tag": "ByteArray", + "bytearray": "0961082ca380e4db0f48e8" + }, + "cborHex": "4b0961082ca380e4db0f48e8", + "cborBytes": [75, 9, 97, 8, 44, 163, 128, 228, 219, 15, 72, 232], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3158, + "sample": { + "_tag": "ByteArray", + "bytearray": "e1f6cd6106128e12be43fcae" + }, + "cborHex": "4ce1f6cd6106128e12be43fcae", + "cborBytes": [76, 225, 246, 205, 97, 6, 18, 142, 18, 190, 67, 252, 174], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3159, + "sample": { + "_tag": "ByteArray", + "bytearray": "7201e6536f26e7960cb547" + }, + "cborHex": "4b7201e6536f26e7960cb547", + "cborBytes": [75, 114, 1, 230, 83, 111, 38, 231, 150, 12, 181, 71], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3160, + "sample": { + "_tag": "ByteArray", + "bytearray": "fff804" + }, + "cborHex": "43fff804", + "cborBytes": [67, 255, 248, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3161, + "sample": { + "_tag": "ByteArray", + "bytearray": "5abd1abfc6f809c720" + }, + "cborHex": "495abd1abfc6f809c720", + "cborBytes": [73, 90, 189, 26, 191, 198, 248, 9, 199, 32], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3162, + "sample": { + "_tag": "ByteArray", + "bytearray": "cd58a96ad86b5bfbd291c3f7" + }, + "cborHex": "4ccd58a96ad86b5bfbd291c3f7", + "cborBytes": [76, 205, 88, 169, 106, 216, 107, 91, 251, 210, 145, 195, 247], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3163, + "sample": { + "_tag": "ByteArray", + "bytearray": "07ac0648" + }, + "cborHex": "4407ac0648", + "cborBytes": [68, 7, 172, 6, 72], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3164, + "sample": { + "_tag": "ByteArray", + "bytearray": "758e" + }, + "cborHex": "42758e", + "cborBytes": [66, 117, 142], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3165, + "sample": { + "_tag": "ByteArray", + "bytearray": "3246cb72f996c8d85d5efdb6" + }, + "cborHex": "4c3246cb72f996c8d85d5efdb6", + "cborBytes": [76, 50, 70, 203, 114, 249, 150, 200, 216, 93, 94, 253, 182], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3166, + "sample": { + "_tag": "ByteArray", + "bytearray": "3c2002" + }, + "cborHex": "433c2002", + "cborBytes": [67, 60, 32, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3167, + "sample": { + "_tag": "ByteArray", + "bytearray": "dd1cad442107b65569e7" + }, + "cborHex": "4add1cad442107b65569e7", + "cborBytes": [74, 221, 28, 173, 68, 33, 7, 182, 85, 105, 231], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3168, + "sample": { + "_tag": "ByteArray", + "bytearray": "f99b380207014065020685" + }, + "cborHex": "4bf99b380207014065020685", + "cborBytes": [75, 249, 155, 56, 2, 7, 1, 64, 101, 2, 6, 133], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3169, + "sample": { + "_tag": "ByteArray", + "bytearray": "bf107d060108" + }, + "cborHex": "46bf107d060108", + "cborBytes": [70, 191, 16, 125, 6, 1, 8], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3170, + "sample": { + "_tag": "ByteArray", + "bytearray": "dab2e5320e9e7220c9065b" + }, + "cborHex": "4bdab2e5320e9e7220c9065b", + "cborBytes": [75, 218, 178, 229, 50, 14, 158, 114, 32, 201, 6, 91], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3171, + "sample": { + "_tag": "ByteArray", + "bytearray": "84480226" + }, + "cborHex": "4484480226", + "cborBytes": [68, 132, 72, 2, 38], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3172, + "sample": { + "_tag": "ByteArray", + "bytearray": "030000d8" + }, + "cborHex": "44030000d8", + "cborBytes": [68, 3, 0, 0, 216], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3173, + "sample": { + "_tag": "ByteArray", + "bytearray": "f2c45a" + }, + "cborHex": "43f2c45a", + "cborBytes": [67, 242, 196, 90], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3174, + "sample": { + "_tag": "ByteArray", + "bytearray": "07074a03328f" + }, + "cborHex": "4607074a03328f", + "cborBytes": [70, 7, 7, 74, 3, 50, 143], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3175, + "sample": { + "_tag": "ByteArray", + "bytearray": "03fffc82850327ebfd" + }, + "cborHex": "4903fffc82850327ebfd", + "cborBytes": [73, 3, 255, 252, 130, 133, 3, 39, 235, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3176, + "sample": { + "_tag": "ByteArray", + "bytearray": "3751d41356b738da89" + }, + "cborHex": "493751d41356b738da89", + "cborBytes": [73, 55, 81, 212, 19, 86, 183, 56, 218, 137], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3177, + "sample": { + "_tag": "ByteArray", + "bytearray": "110600fc200074" + }, + "cborHex": "47110600fc200074", + "cborBytes": [71, 17, 6, 0, 252, 32, 0, 116], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3178, + "sample": { + "_tag": "ByteArray", + "bytearray": "01b1fa" + }, + "cborHex": "4301b1fa", + "cborBytes": [67, 1, 177, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3179, + "sample": { + "_tag": "ByteArray", + "bytearray": "8e54bf82ce382e06feae01" + }, + "cborHex": "4b8e54bf82ce382e06feae01", + "cborBytes": [75, 142, 84, 191, 130, 206, 56, 46, 6, 254, 174, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3180, + "sample": { + "_tag": "ByteArray", + "bytearray": "1db28a6a" + }, + "cborHex": "441db28a6a", + "cborBytes": [68, 29, 178, 138, 106], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3181, + "sample": { + "_tag": "ByteArray", + "bytearray": "f660cc28a5435314" + }, + "cborHex": "48f660cc28a5435314", + "cborBytes": [72, 246, 96, 204, 40, 165, 67, 83, 20], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3182, + "sample": { + "_tag": "ByteArray", + "bytearray": "dc3415ff5e" + }, + "cborHex": "45dc3415ff5e", + "cborBytes": [69, 220, 52, 21, 255, 94], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3183, + "sample": { + "_tag": "ByteArray", + "bytearray": "628d" + }, + "cborHex": "42628d", + "cborBytes": [66, 98, 141], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3184, + "sample": { + "_tag": "ByteArray", + "bytearray": "d2d552d4fd" + }, + "cborHex": "45d2d552d4fd", + "cborBytes": [69, 210, 213, 82, 212, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3185, + "sample": { + "_tag": "ByteArray", + "bytearray": "365cbae151781612ce" + }, + "cborHex": "49365cbae151781612ce", + "cborBytes": [73, 54, 92, 186, 225, 81, 120, 22, 18, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3186, + "sample": { + "_tag": "ByteArray", + "bytearray": "b4c9354c504a0a" + }, + "cborHex": "47b4c9354c504a0a", + "cborBytes": [71, 180, 201, 53, 76, 80, 74, 10], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3187, + "sample": { + "_tag": "ByteArray", + "bytearray": "d66501cd9288b8aafae3521f" + }, + "cborHex": "4cd66501cd9288b8aafae3521f", + "cborBytes": [76, 214, 101, 1, 205, 146, 136, 184, 170, 250, 227, 82, 31], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3188, + "sample": { + "_tag": "ByteArray", + "bytearray": "d7f9" + }, + "cborHex": "42d7f9", + "cborBytes": [66, 215, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3189, + "sample": { + "_tag": "ByteArray", + "bytearray": "a3f65fa029e265bd93e8b7fa" + }, + "cborHex": "4ca3f65fa029e265bd93e8b7fa", + "cborBytes": [76, 163, 246, 95, 160, 41, 226, 101, 189, 147, 232, 183, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3190, + "sample": { + "_tag": "ByteArray", + "bytearray": "374ee300ac03f7fd" + }, + "cborHex": "48374ee300ac03f7fd", + "cborBytes": [72, 55, 78, 227, 0, 172, 3, 247, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3191, + "sample": { + "_tag": "ByteArray", + "bytearray": "bd337e13f05e94b7b2489c" + }, + "cborHex": "4bbd337e13f05e94b7b2489c", + "cborBytes": [75, 189, 51, 126, 19, 240, 94, 148, 183, 178, 72, 156], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3192, + "sample": { + "_tag": "ByteArray", + "bytearray": "6f07" + }, + "cborHex": "426f07", + "cborBytes": [66, 111, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3193, + "sample": { + "_tag": "ByteArray", + "bytearray": "b903e1d31f" + }, + "cborHex": "45b903e1d31f", + "cborBytes": [69, 185, 3, 225, 211, 31], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3194, + "sample": { + "_tag": "ByteArray", + "bytearray": "6d62c3a9457c8e" + }, + "cborHex": "476d62c3a9457c8e", + "cborBytes": [71, 109, 98, 195, 169, 69, 124, 142], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3195, + "sample": { + "_tag": "ByteArray", + "bytearray": "074117" + }, + "cborHex": "43074117", + "cborBytes": [67, 7, 65, 23], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3196, + "sample": { + "_tag": "ByteArray", + "bytearray": "3401f921ed0062fb010506" + }, + "cborHex": "4b3401f921ed0062fb010506", + "cborBytes": [75, 52, 1, 249, 33, 237, 0, 98, 251, 1, 5, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3197, + "sample": { + "_tag": "ByteArray", + "bytearray": "0705fffb010327" + }, + "cborHex": "470705fffb010327", + "cborBytes": [71, 7, 5, 255, 251, 1, 3, 39], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3198, + "sample": { + "_tag": "ByteArray", + "bytearray": "e704ba" + }, + "cborHex": "43e704ba", + "cborBytes": [67, 231, 4, 186], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3199, + "sample": { + "_tag": "ByteArray", + "bytearray": "b88f07800fb5d5" + }, + "cborHex": "47b88f07800fb5d5", + "cborBytes": [71, 184, 143, 7, 128, 15, 181, 213], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3200, + "sample": { + "_tag": "ByteArray", + "bytearray": "06f907e1710549e6" + }, + "cborHex": "4806f907e1710549e6", + "cborBytes": [72, 6, 249, 7, 225, 113, 5, 73, 230], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3201, + "sample": { + "_tag": "ByteArray", + "bytearray": "97d3dffc279ca66a5828" + }, + "cborHex": "4a97d3dffc279ca66a5828", + "cborBytes": [74, 151, 211, 223, 252, 39, 156, 166, 106, 88, 40], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3202, + "sample": { + "_tag": "ByteArray", + "bytearray": "0a55bf08e4c8fdd2e5e1" + }, + "cborHex": "4a0a55bf08e4c8fdd2e5e1", + "cborBytes": [74, 10, 85, 191, 8, 228, 200, 253, 210, 229, 225], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3203, + "sample": { + "_tag": "ByteArray", + "bytearray": "1b8b" + }, + "cborHex": "421b8b", + "cborBytes": [66, 27, 139], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3204, + "sample": { + "_tag": "ByteArray", + "bytearray": "26a2a6f8" + }, + "cborHex": "4426a2a6f8", + "cborBytes": [68, 38, 162, 166, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3205, + "sample": { + "_tag": "ByteArray", + "bytearray": "1446b1" + }, + "cborHex": "431446b1", + "cborBytes": [67, 20, 70, 177], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3206, + "sample": { + "_tag": "ByteArray", + "bytearray": "0100ed69ff3df903ef02fc" + }, + "cborHex": "4b0100ed69ff3df903ef02fc", + "cborBytes": [75, 1, 0, 237, 105, 255, 61, 249, 3, 239, 2, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3207, + "sample": { + "_tag": "ByteArray", + "bytearray": "9f5bff3d2fb9f3" + }, + "cborHex": "479f5bff3d2fb9f3", + "cborBytes": [71, 159, 91, 255, 61, 47, 185, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3208, + "sample": { + "_tag": "ByteArray", + "bytearray": "49979957d6d56abfa668bc12" + }, + "cborHex": "4c49979957d6d56abfa668bc12", + "cborBytes": [76, 73, 151, 153, 87, 214, 213, 106, 191, 166, 104, 188, 18], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3209, + "sample": { + "_tag": "ByteArray", + "bytearray": "02020337f819b4f9d49502" + }, + "cborHex": "4b02020337f819b4f9d49502", + "cborBytes": [75, 2, 2, 3, 55, 248, 25, 180, 249, 212, 149, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3210, + "sample": { + "_tag": "ByteArray", + "bytearray": "02be2c" + }, + "cborHex": "4302be2c", + "cborBytes": [67, 2, 190, 44], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3211, + "sample": { + "_tag": "ByteArray", + "bytearray": "87cf083868d919" + }, + "cborHex": "4787cf083868d919", + "cborBytes": [71, 135, 207, 8, 56, 104, 217, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3212, + "sample": { + "_tag": "ByteArray", + "bytearray": "e3513d36818a4a4c" + }, + "cborHex": "48e3513d36818a4a4c", + "cborBytes": [72, 227, 81, 61, 54, 129, 138, 74, 76], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3213, + "sample": { + "_tag": "ByteArray", + "bytearray": "1d0f15bdaa0d3d" + }, + "cborHex": "471d0f15bdaa0d3d", + "cborBytes": [71, 29, 15, 21, 189, 170, 13, 61], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3214, + "sample": { + "_tag": "ByteArray", + "bytearray": "f80ebe" + }, + "cborHex": "43f80ebe", + "cborBytes": [67, 248, 14, 190], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3215, + "sample": { + "_tag": "ByteArray", + "bytearray": "c9f80f37e13882" + }, + "cborHex": "47c9f80f37e13882", + "cborBytes": [71, 201, 248, 15, 55, 225, 56, 130], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3216, + "sample": { + "_tag": "ByteArray", + "bytearray": "610105" + }, + "cborHex": "43610105", + "cborBytes": [67, 97, 1, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3217, + "sample": { + "_tag": "ByteArray", + "bytearray": "4450cbc0484c756a53" + }, + "cborHex": "494450cbc0484c756a53", + "cborBytes": [73, 68, 80, 203, 192, 72, 76, 117, 106, 83], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3218, + "sample": { + "_tag": "ByteArray", + "bytearray": "140f08698ca6" + }, + "cborHex": "46140f08698ca6", + "cborBytes": [70, 20, 15, 8, 105, 140, 166], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3219, + "sample": { + "_tag": "ByteArray", + "bytearray": "05f807c07884e505f902" + }, + "cborHex": "4a05f807c07884e505f902", + "cborBytes": [74, 5, 248, 7, 192, 120, 132, 229, 5, 249, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3220, + "sample": { + "_tag": "ByteArray", + "bytearray": "56be52b6" + }, + "cborHex": "4456be52b6", + "cborBytes": [68, 86, 190, 82, 182], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3221, + "sample": { + "_tag": "ByteArray", + "bytearray": "4a9c34ce60cc21d6" + }, + "cborHex": "484a9c34ce60cc21d6", + "cborBytes": [72, 74, 156, 52, 206, 96, 204, 33, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3222, + "sample": { + "_tag": "ByteArray", + "bytearray": "9b0fb5b2bc24afb5e1" + }, + "cborHex": "499b0fb5b2bc24afb5e1", + "cborBytes": [73, 155, 15, 181, 178, 188, 36, 175, 181, 225], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3223, + "sample": { + "_tag": "ByteArray", + "bytearray": "070d06b900" + }, + "cborHex": "45070d06b900", + "cborBytes": [69, 7, 13, 6, 185, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3224, + "sample": { + "_tag": "ByteArray", + "bytearray": "030f0cfe0501" + }, + "cborHex": "46030f0cfe0501", + "cborBytes": [70, 3, 15, 12, 254, 5, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3225, + "sample": { + "_tag": "ByteArray", + "bytearray": "55ca62fd988684" + }, + "cborHex": "4755ca62fd988684", + "cborBytes": [71, 85, 202, 98, 253, 152, 134, 132], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3226, + "sample": { + "_tag": "ByteArray", + "bytearray": "05a7effa42fe" + }, + "cborHex": "4605a7effa42fe", + "cborBytes": [70, 5, 167, 239, 250, 66, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3227, + "sample": { + "_tag": "ByteArray", + "bytearray": "c7f482c96d30533c30" + }, + "cborHex": "49c7f482c96d30533c30", + "cborBytes": [73, 199, 244, 130, 201, 109, 48, 83, 60, 48], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3228, + "sample": { + "_tag": "ByteArray", + "bytearray": "ed" + }, + "cborHex": "41ed", + "cborBytes": [65, 237], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3229, + "sample": { + "_tag": "ByteArray", + "bytearray": "053e" + }, + "cborHex": "42053e", + "cborBytes": [66, 5, 62], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3230, + "sample": { + "_tag": "ByteArray", + "bytearray": "9610" + }, + "cborHex": "429610", + "cborBytes": [66, 150, 16], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3231, + "sample": { + "_tag": "ByteArray", + "bytearray": "dd4f15f6" + }, + "cborHex": "44dd4f15f6", + "cborBytes": [68, 221, 79, 21, 246], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3232, + "sample": { + "_tag": "ByteArray", + "bytearray": "060199f96eeb01fefe" + }, + "cborHex": "49060199f96eeb01fefe", + "cborBytes": [73, 6, 1, 153, 249, 110, 235, 1, 254, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3233, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa07fd51a1" + }, + "cborHex": "45fa07fd51a1", + "cborBytes": [69, 250, 7, 253, 81, 161], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3234, + "sample": { + "_tag": "ByteArray", + "bytearray": "997394c228d49ea3b0" + }, + "cborHex": "49997394c228d49ea3b0", + "cborBytes": [73, 153, 115, 148, 194, 40, 212, 158, 163, 176], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3235, + "sample": { + "_tag": "ByteArray", + "bytearray": "8d1428de8346d0" + }, + "cborHex": "478d1428de8346d0", + "cborBytes": [71, 141, 20, 40, 222, 131, 70, 208], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3236, + "sample": { + "_tag": "ByteArray", + "bytearray": "1a054b" + }, + "cborHex": "431a054b", + "cborBytes": [67, 26, 5, 75], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3237, + "sample": { + "_tag": "ByteArray", + "bytearray": "04f8fb02156518fe009305" + }, + "cborHex": "4b04f8fb02156518fe009305", + "cborBytes": [75, 4, 248, 251, 2, 21, 101, 24, 254, 0, 147, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3238, + "sample": { + "_tag": "ByteArray", + "bytearray": "fda083ac068cda8d" + }, + "cborHex": "48fda083ac068cda8d", + "cborBytes": [72, 253, 160, 131, 172, 6, 140, 218, 141], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3239, + "sample": { + "_tag": "ByteArray", + "bytearray": "7aa1" + }, + "cborHex": "427aa1", + "cborBytes": [66, 122, 161], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3240, + "sample": { + "_tag": "ByteArray", + "bytearray": "5581" + }, + "cborHex": "425581", + "cborBytes": [66, 85, 129], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3241, + "sample": { + "_tag": "ByteArray", + "bytearray": "02c607" + }, + "cborHex": "4302c607", + "cborBytes": [67, 2, 198, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3242, + "sample": { + "_tag": "ByteArray", + "bytearray": "43b8361e0550e3be" + }, + "cborHex": "4843b8361e0550e3be", + "cborBytes": [72, 67, 184, 54, 30, 5, 80, 227, 190], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3243, + "sample": { + "_tag": "ByteArray", + "bytearray": "b29466e8b799d677300104db" + }, + "cborHex": "4cb29466e8b799d677300104db", + "cborBytes": [76, 178, 148, 102, 232, 183, 153, 214, 119, 48, 1, 4, 219], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3244, + "sample": { + "_tag": "ByteArray", + "bytearray": "7dfefcc573" + }, + "cborHex": "457dfefcc573", + "cborBytes": [69, 125, 254, 252, 197, 115], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3245, + "sample": { + "_tag": "ByteArray", + "bytearray": "97cf8d5ec5b20bdb" + }, + "cborHex": "4897cf8d5ec5b20bdb", + "cborBytes": [72, 151, 207, 141, 94, 197, 178, 11, 219], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3246, + "sample": { + "_tag": "ByteArray", + "bytearray": "352551f8b14f3612" + }, + "cborHex": "48352551f8b14f3612", + "cborBytes": [72, 53, 37, 81, 248, 177, 79, 54, 18], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3247, + "sample": { + "_tag": "ByteArray", + "bytearray": "f4a0b93b28602049ab443c" + }, + "cborHex": "4bf4a0b93b28602049ab443c", + "cborBytes": [75, 244, 160, 185, 59, 40, 96, 32, 73, 171, 68, 60], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3248, + "sample": { + "_tag": "ByteArray", + "bytearray": "d5d91cf9e9" + }, + "cborHex": "45d5d91cf9e9", + "cborBytes": [69, 213, 217, 28, 249, 233], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3249, + "sample": { + "_tag": "ByteArray", + "bytearray": "3217b0d11cf28c30be7d6602" + }, + "cborHex": "4c3217b0d11cf28c30be7d6602", + "cborBytes": [76, 50, 23, 176, 209, 28, 242, 140, 48, 190, 125, 102, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3250, + "sample": { + "_tag": "ByteArray", + "bytearray": "b55a05cd" + }, + "cborHex": "44b55a05cd", + "cborBytes": [68, 181, 90, 5, 205], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3251, + "sample": { + "_tag": "ByteArray", + "bytearray": "0082" + }, + "cborHex": "420082", + "cborBytes": [66, 0, 130], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3252, + "sample": { + "_tag": "ByteArray", + "bytearray": "4905e6010410067104ff" + }, + "cborHex": "4a4905e6010410067104ff", + "cborBytes": [74, 73, 5, 230, 1, 4, 16, 6, 113, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3253, + "sample": { + "_tag": "ByteArray", + "bytearray": "4166cf69f7ee" + }, + "cborHex": "464166cf69f7ee", + "cborBytes": [70, 65, 102, 207, 105, 247, 238], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3254, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd21" + }, + "cborHex": "42fd21", + "cborBytes": [66, 253, 33], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3255, + "sample": { + "_tag": "ByteArray", + "bytearray": "0eda" + }, + "cborHex": "420eda", + "cborBytes": [66, 14, 218], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3256, + "sample": { + "_tag": "ByteArray", + "bytearray": "2bdc96" + }, + "cborHex": "432bdc96", + "cborBytes": [67, 43, 220, 150], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3257, + "sample": { + "_tag": "ByteArray", + "bytearray": "070701060b06045efa1dfae6" + }, + "cborHex": "4c070701060b06045efa1dfae6", + "cborBytes": [76, 7, 7, 1, 6, 11, 6, 4, 94, 250, 29, 250, 230], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3258, + "sample": { + "_tag": "ByteArray", + "bytearray": "c7562fc8b54631" + }, + "cborHex": "47c7562fc8b54631", + "cborBytes": [71, 199, 86, 47, 200, 181, 70, 49], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3259, + "sample": { + "_tag": "ByteArray", + "bytearray": "b539962a" + }, + "cborHex": "44b539962a", + "cborBytes": [68, 181, 57, 150, 42], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3260, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbb4fe" + }, + "cborHex": "43fbb4fe", + "cborBytes": [67, 251, 180, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3261, + "sample": { + "_tag": "ByteArray", + "bytearray": "c112571e1728e0" + }, + "cborHex": "47c112571e1728e0", + "cborBytes": [71, 193, 18, 87, 30, 23, 40, 224], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3262, + "sample": { + "_tag": "ByteArray", + "bytearray": "06f3fb" + }, + "cborHex": "4306f3fb", + "cborBytes": [67, 6, 243, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3263, + "sample": { + "_tag": "ByteArray", + "bytearray": "86fd613118f8" + }, + "cborHex": "4686fd613118f8", + "cborBytes": [70, 134, 253, 97, 49, 24, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3264, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe0200" + }, + "cborHex": "43fe0200", + "cborBytes": [67, 254, 2, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3265, + "sample": { + "_tag": "ByteArray", + "bytearray": "159e6c1cd351" + }, + "cborHex": "46159e6c1cd351", + "cborBytes": [70, 21, 158, 108, 28, 211, 81], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3266, + "sample": { + "_tag": "ByteArray", + "bytearray": "75aa63945702fd" + }, + "cborHex": "4775aa63945702fd", + "cborBytes": [71, 117, 170, 99, 148, 87, 2, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3267, + "sample": { + "_tag": "ByteArray", + "bytearray": "65689cdb2307db137e" + }, + "cborHex": "4965689cdb2307db137e", + "cborBytes": [73, 101, 104, 156, 219, 35, 7, 219, 19, 126], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3268, + "sample": { + "_tag": "ByteArray", + "bytearray": "c8357834b0d517d44175" + }, + "cborHex": "4ac8357834b0d517d44175", + "cborBytes": [74, 200, 53, 120, 52, 176, 213, 23, 212, 65, 117], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3269, + "sample": { + "_tag": "ByteArray", + "bytearray": "b649eb6552743bb7" + }, + "cborHex": "48b649eb6552743bb7", + "cborBytes": [72, 182, 73, 235, 101, 82, 116, 59, 183], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3270, + "sample": { + "_tag": "ByteArray", + "bytearray": "1f0616083bca04f5" + }, + "cborHex": "481f0616083bca04f5", + "cborBytes": [72, 31, 6, 22, 8, 59, 202, 4, 245], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3271, + "sample": { + "_tag": "ByteArray", + "bytearray": "3fbe" + }, + "cborHex": "423fbe", + "cborBytes": [66, 63, 190], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3272, + "sample": { + "_tag": "ByteArray", + "bytearray": "aaab69f7cb2fe2b9" + }, + "cborHex": "48aaab69f7cb2fe2b9", + "cborBytes": [72, 170, 171, 105, 247, 203, 47, 226, 185], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3273, + "sample": { + "_tag": "ByteArray", + "bytearray": "4a003bfc" + }, + "cborHex": "444a003bfc", + "cborBytes": [68, 74, 0, 59, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3274, + "sample": { + "_tag": "ByteArray", + "bytearray": "f47c5515" + }, + "cborHex": "44f47c5515", + "cborBytes": [68, 244, 124, 85, 21], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3275, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd6c" + }, + "cborHex": "42fd6c", + "cborBytes": [66, 253, 108], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3276, + "sample": { + "_tag": "ByteArray", + "bytearray": "ddba19" + }, + "cborHex": "43ddba19", + "cborBytes": [67, 221, 186, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3277, + "sample": { + "_tag": "ByteArray", + "bytearray": "a772c5bcd3040701fe" + }, + "cborHex": "49a772c5bcd3040701fe", + "cborBytes": [73, 167, 114, 197, 188, 211, 4, 7, 1, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3278, + "sample": { + "_tag": "ByteArray", + "bytearray": "d9683aee96" + }, + "cborHex": "45d9683aee96", + "cborBytes": [69, 217, 104, 58, 238, 150], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3279, + "sample": { + "_tag": "ByteArray", + "bytearray": "0ec5" + }, + "cborHex": "420ec5", + "cborBytes": [66, 14, 197], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3280, + "sample": { + "_tag": "ByteArray", + "bytearray": "8faa" + }, + "cborHex": "428faa", + "cborBytes": [66, 143, 170], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3281, + "sample": { + "_tag": "ByteArray", + "bytearray": "2e04cc4b01f83307c6" + }, + "cborHex": "492e04cc4b01f83307c6", + "cborBytes": [73, 46, 4, 204, 75, 1, 248, 51, 7, 198], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3282, + "sample": { + "_tag": "ByteArray", + "bytearray": "c497989685999cd9265e4667" + }, + "cborHex": "4cc497989685999cd9265e4667", + "cborBytes": [76, 196, 151, 152, 150, 133, 153, 156, 217, 38, 94, 70, 103], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3283, + "sample": { + "_tag": "ByteArray", + "bytearray": "d117697d71d72d4ddf08" + }, + "cborHex": "4ad117697d71d72d4ddf08", + "cborBytes": [74, 209, 23, 105, 125, 113, 215, 45, 77, 223, 8], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3284, + "sample": { + "_tag": "ByteArray", + "bytearray": "07f4fecffad80704f5fb07" + }, + "cborHex": "4b07f4fecffad80704f5fb07", + "cborBytes": [75, 7, 244, 254, 207, 250, 216, 7, 4, 245, 251, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3285, + "sample": { + "_tag": "ByteArray", + "bytearray": "5de5c161f7e719b85d35" + }, + "cborHex": "4a5de5c161f7e719b85d35", + "cborBytes": [74, 93, 229, 193, 97, 247, 231, 25, 184, 93, 53], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3286, + "sample": { + "_tag": "ByteArray", + "bytearray": "00cfed5023fa6b57da49" + }, + "cborHex": "4a00cfed5023fa6b57da49", + "cborBytes": [74, 0, 207, 237, 80, 35, 250, 107, 87, 218, 73], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3287, + "sample": { + "_tag": "ByteArray", + "bytearray": "42df6b0994490e1c1397" + }, + "cborHex": "4a42df6b0994490e1c1397", + "cborBytes": [74, 66, 223, 107, 9, 148, 73, 14, 28, 19, 151], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3288, + "sample": { + "_tag": "ByteArray", + "bytearray": "d065bd" + }, + "cborHex": "43d065bd", + "cborBytes": [67, 208, 101, 189], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3289, + "sample": { + "_tag": "ByteArray", + "bytearray": "a27e9d2b" + }, + "cborHex": "44a27e9d2b", + "cborBytes": [68, 162, 126, 157, 43], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3290, + "sample": { + "_tag": "ByteArray", + "bytearray": "bc4522ef9ca3eb94f2" + }, + "cborHex": "49bc4522ef9ca3eb94f2", + "cborBytes": [73, 188, 69, 34, 239, 156, 163, 235, 148, 242], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3291, + "sample": { + "_tag": "ByteArray", + "bytearray": "038d633abf7e37" + }, + "cborHex": "47038d633abf7e37", + "cborBytes": [71, 3, 141, 99, 58, 191, 126, 55], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3292, + "sample": { + "_tag": "ByteArray", + "bytearray": "07ec00060706fc0404" + }, + "cborHex": "4907ec00060706fc0404", + "cborBytes": [73, 7, 236, 0, 6, 7, 6, 252, 4, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3293, + "sample": { + "_tag": "ByteArray", + "bytearray": "1245f8aed72a372cf60a" + }, + "cborHex": "4a1245f8aed72a372cf60a", + "cborBytes": [74, 18, 69, 248, 174, 215, 42, 55, 44, 246, 10], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3294, + "sample": { + "_tag": "ByteArray", + "bytearray": "12debce525255d" + }, + "cborHex": "4712debce525255d", + "cborBytes": [71, 18, 222, 188, 229, 37, 37, 93], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3295, + "sample": { + "_tag": "ByteArray", + "bytearray": "836745818e83f7" + }, + "cborHex": "47836745818e83f7", + "cborBytes": [71, 131, 103, 69, 129, 142, 131, 247], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3296, + "sample": { + "_tag": "ByteArray", + "bytearray": "b7e006f4a77f3c394846" + }, + "cborHex": "4ab7e006f4a77f3c394846", + "cborBytes": [74, 183, 224, 6, 244, 167, 127, 60, 57, 72, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3297, + "sample": { + "_tag": "ByteArray", + "bytearray": "a8b4da749e8ff80ee4bcd4" + }, + "cborHex": "4ba8b4da749e8ff80ee4bcd4", + "cborBytes": [75, 168, 180, 218, 116, 158, 143, 248, 14, 228, 188, 212], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3298, + "sample": { + "_tag": "ByteArray", + "bytearray": "02830401b20106033e" + }, + "cborHex": "4902830401b20106033e", + "cborBytes": [73, 2, 131, 4, 1, 178, 1, 6, 3, 62], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3299, + "sample": { + "_tag": "ByteArray", + "bytearray": "8cd7" + }, + "cborHex": "428cd7", + "cborBytes": [66, 140, 215], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3300, + "sample": { + "_tag": "ByteArray", + "bytearray": "83e48bbfb1fc8f595dfd05fd" + }, + "cborHex": "4c83e48bbfb1fc8f595dfd05fd", + "cborBytes": [76, 131, 228, 139, 191, 177, 252, 143, 89, 93, 253, 5, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3301, + "sample": { + "_tag": "ByteArray", + "bytearray": "26f9ee87b2" + }, + "cborHex": "4526f9ee87b2", + "cborBytes": [69, 38, 249, 238, 135, 178], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3302, + "sample": { + "_tag": "ByteArray", + "bytearray": "9001c741" + }, + "cborHex": "449001c741", + "cborBytes": [68, 144, 1, 199, 65], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3303, + "sample": { + "_tag": "ByteArray", + "bytearray": "0603ff17fd2f3b" + }, + "cborHex": "470603ff17fd2f3b", + "cborBytes": [71, 6, 3, 255, 23, 253, 47, 59], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3304, + "sample": { + "_tag": "ByteArray", + "bytearray": "780541ac623cf73b7f4d54b8" + }, + "cborHex": "4c780541ac623cf73b7f4d54b8", + "cborBytes": [76, 120, 5, 65, 172, 98, 60, 247, 59, 127, 77, 84, 184], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3305, + "sample": { + "_tag": "ByteArray", + "bytearray": "53015d0706ff050689fcfd" + }, + "cborHex": "4b53015d0706ff050689fcfd", + "cborBytes": [75, 83, 1, 93, 7, 6, 255, 5, 6, 137, 252, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3306, + "sample": { + "_tag": "ByteArray", + "bytearray": "05d706064f030101" + }, + "cborHex": "4805d706064f030101", + "cborBytes": [72, 5, 215, 6, 6, 79, 3, 1, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3307, + "sample": { + "_tag": "ByteArray", + "bytearray": "b96aa77ad4f53f65" + }, + "cborHex": "48b96aa77ad4f53f65", + "cborBytes": [72, 185, 106, 167, 122, 212, 245, 63, 101], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3308, + "sample": { + "_tag": "ByteArray", + "bytearray": "d4fbfa" + }, + "cborHex": "43d4fbfa", + "cborBytes": [67, 212, 251, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3309, + "sample": { + "_tag": "ByteArray", + "bytearray": "076ff90355fe14bcff" + }, + "cborHex": "49076ff90355fe14bcff", + "cborBytes": [73, 7, 111, 249, 3, 85, 254, 20, 188, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3310, + "sample": { + "_tag": "ByteArray", + "bytearray": "c34de083c0" + }, + "cborHex": "45c34de083c0", + "cborBytes": [69, 195, 77, 224, 131, 192], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3311, + "sample": { + "_tag": "ByteArray", + "bytearray": "9dcd3f76e7e853e7f8f968c5" + }, + "cborHex": "4c9dcd3f76e7e853e7f8f968c5", + "cborBytes": [76, 157, 205, 63, 118, 231, 232, 83, 231, 248, 249, 104, 197], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3312, + "sample": { + "_tag": "ByteArray", + "bytearray": "52f9f1fd" + }, + "cborHex": "4452f9f1fd", + "cborBytes": [68, 82, 249, 241, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3313, + "sample": { + "_tag": "ByteArray", + "bytearray": "95103d01e1f3ac276d653c" + }, + "cborHex": "4b95103d01e1f3ac276d653c", + "cborBytes": [75, 149, 16, 61, 1, 225, 243, 172, 39, 109, 101, 60], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3314, + "sample": { + "_tag": "ByteArray", + "bytearray": "276882a57ee8d19d81d7" + }, + "cborHex": "4a276882a57ee8d19d81d7", + "cborBytes": [74, 39, 104, 130, 165, 126, 232, 209, 157, 129, 215], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3315, + "sample": { + "_tag": "ByteArray", + "bytearray": "4d41d9f2" + }, + "cborHex": "444d41d9f2", + "cborBytes": [68, 77, 65, 217, 242], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3316, + "sample": { + "_tag": "ByteArray", + "bytearray": "8cc1bf27324a2f92" + }, + "cborHex": "488cc1bf27324a2f92", + "cborBytes": [72, 140, 193, 191, 39, 50, 74, 47, 146], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3317, + "sample": { + "_tag": "ByteArray", + "bytearray": "0fd5" + }, + "cborHex": "420fd5", + "cborBytes": [66, 15, 213], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3318, + "sample": { + "_tag": "ByteArray", + "bytearray": "4c" + }, + "cborHex": "414c", + "cborBytes": [65, 76], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3319, + "sample": { + "_tag": "ByteArray", + "bytearray": "b004f9" + }, + "cborHex": "43b004f9", + "cborBytes": [67, 176, 4, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3320, + "sample": { + "_tag": "ByteArray", + "bytearray": "1cf14487f93c5e5839b0b418" + }, + "cborHex": "4c1cf14487f93c5e5839b0b418", + "cborBytes": [76, 28, 241, 68, 135, 249, 60, 94, 88, 57, 176, 180, 24], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3321, + "sample": { + "_tag": "ByteArray", + "bytearray": "5edfa4e0ffde09" + }, + "cborHex": "475edfa4e0ffde09", + "cborBytes": [71, 94, 223, 164, 224, 255, 222, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3322, + "sample": { + "_tag": "ByteArray", + "bytearray": "253b" + }, + "cborHex": "42253b", + "cborBytes": [66, 37, 59], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3323, + "sample": { + "_tag": "ByteArray", + "bytearray": "7400d932" + }, + "cborHex": "447400d932", + "cborBytes": [68, 116, 0, 217, 50], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3324, + "sample": { + "_tag": "ByteArray", + "bytearray": "60fa00" + }, + "cborHex": "4360fa00", + "cborBytes": [67, 96, 250, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3325, + "sample": { + "_tag": "ByteArray", + "bytearray": "ab8c35" + }, + "cborHex": "43ab8c35", + "cborBytes": [67, 171, 140, 53], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3326, + "sample": { + "_tag": "ByteArray", + "bytearray": "0507a4f306" + }, + "cborHex": "450507a4f306", + "cborBytes": [69, 5, 7, 164, 243, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3327, + "sample": { + "_tag": "ByteArray", + "bytearray": "0917bf63bf0c" + }, + "cborHex": "460917bf63bf0c", + "cborBytes": [70, 9, 23, 191, 99, 191, 12], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3328, + "sample": { + "_tag": "ByteArray", + "bytearray": "02cc" + }, + "cborHex": "4202cc", + "cborBytes": [66, 2, 204], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3329, + "sample": { + "_tag": "ByteArray", + "bytearray": "e62f78c719d60e3a22bb15" + }, + "cborHex": "4be62f78c719d60e3a22bb15", + "cborBytes": [75, 230, 47, 120, 199, 25, 214, 14, 58, 34, 187, 21], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3330, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbfecff8fe05" + }, + "cborHex": "46fbfecff8fe05", + "cborBytes": [70, 251, 254, 207, 248, 254, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3331, + "sample": { + "_tag": "ByteArray", + "bytearray": "a86454f806e3" + }, + "cborHex": "46a86454f806e3", + "cborBytes": [70, 168, 100, 84, 248, 6, 227], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3332, + "sample": { + "_tag": "ByteArray", + "bytearray": "67156398b3663b4bebcc56" + }, + "cborHex": "4b67156398b3663b4bebcc56", + "cborBytes": [75, 103, 21, 99, 152, 179, 102, 59, 75, 235, 204, 86], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3333, + "sample": { + "_tag": "ByteArray", + "bytearray": "a3824f2c0ef1a0eec661eed6" + }, + "cborHex": "4ca3824f2c0ef1a0eec661eed6", + "cborBytes": [76, 163, 130, 79, 44, 14, 241, 160, 238, 198, 97, 238, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3334, + "sample": { + "_tag": "ByteArray", + "bytearray": "3913f8a4224ebb829fa3e3" + }, + "cborHex": "4b3913f8a4224ebb829fa3e3", + "cborBytes": [75, 57, 19, 248, 164, 34, 78, 187, 130, 159, 163, 227], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3335, + "sample": { + "_tag": "ByteArray", + "bytearray": "107d" + }, + "cborHex": "42107d", + "cborBytes": [66, 16, 125], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3336, + "sample": { + "_tag": "ByteArray", + "bytearray": "54e00a157c" + }, + "cborHex": "4554e00a157c", + "cborBytes": [69, 84, 224, 10, 21, 124], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3337, + "sample": { + "_tag": "ByteArray", + "bytearray": "181905" + }, + "cborHex": "43181905", + "cborBytes": [67, 24, 25, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3338, + "sample": { + "_tag": "ByteArray", + "bytearray": "1d0603fa07" + }, + "cborHex": "451d0603fa07", + "cborBytes": [69, 29, 6, 3, 250, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3339, + "sample": { + "_tag": "ByteArray", + "bytearray": "2e" + }, + "cborHex": "412e", + "cborBytes": [65, 46], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3340, + "sample": { + "_tag": "ByteArray", + "bytearray": "1dc91306a760" + }, + "cborHex": "461dc91306a760", + "cborBytes": [70, 29, 201, 19, 6, 167, 96], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3341, + "sample": { + "_tag": "ByteArray", + "bytearray": "49e2b2d7c20294f61bee" + }, + "cborHex": "4a49e2b2d7c20294f61bee", + "cborBytes": [74, 73, 226, 178, 215, 194, 2, 148, 246, 27, 238], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3342, + "sample": { + "_tag": "ByteArray", + "bytearray": "2f2f7a7b76d5cf936c96" + }, + "cborHex": "4a2f2f7a7b76d5cf936c96", + "cborBytes": [74, 47, 47, 122, 123, 118, 213, 207, 147, 108, 150], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3343, + "sample": { + "_tag": "ByteArray", + "bytearray": "a7c9239aff278048" + }, + "cborHex": "48a7c9239aff278048", + "cborBytes": [72, 167, 201, 35, 154, 255, 39, 128, 72], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3344, + "sample": { + "_tag": "ByteArray", + "bytearray": "a4454bcb5848aa1ae227abe8" + }, + "cborHex": "4ca4454bcb5848aa1ae227abe8", + "cborBytes": [76, 164, 69, 75, 203, 88, 72, 170, 26, 226, 39, 171, 232], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3345, + "sample": { + "_tag": "ByteArray", + "bytearray": "82df1419e9ecb02c" + }, + "cborHex": "4882df1419e9ecb02c", + "cborBytes": [72, 130, 223, 20, 25, 233, 236, 176, 44], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3346, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe290604b9fef905e3" + }, + "cborHex": "49fe290604b9fef905e3", + "cborBytes": [73, 254, 41, 6, 4, 185, 254, 249, 5, 227], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3347, + "sample": { + "_tag": "ByteArray", + "bytearray": "0603c1" + }, + "cborHex": "430603c1", + "cborBytes": [67, 6, 3, 193], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3348, + "sample": { + "_tag": "ByteArray", + "bytearray": "0e7f1a40" + }, + "cborHex": "440e7f1a40", + "cborBytes": [68, 14, 127, 26, 64], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3349, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd046d" + }, + "cborHex": "43fd046d", + "cborBytes": [67, 253, 4, 109], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3350, + "sample": { + "_tag": "ByteArray", + "bytearray": "011ecb1fd9c21513fc" + }, + "cborHex": "49011ecb1fd9c21513fc", + "cborBytes": [73, 1, 30, 203, 31, 217, 194, 21, 19, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3351, + "sample": { + "_tag": "ByteArray", + "bytearray": "09f4bb6521" + }, + "cborHex": "4509f4bb6521", + "cborBytes": [69, 9, 244, 187, 101, 33], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3352, + "sample": { + "_tag": "ByteArray", + "bytearray": "03010637" + }, + "cborHex": "4403010637", + "cborBytes": [68, 3, 1, 6, 55], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3353, + "sample": { + "_tag": "ByteArray", + "bytearray": "1c687d62" + }, + "cborHex": "441c687d62", + "cborBytes": [68, 28, 104, 125, 98], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3354, + "sample": { + "_tag": "ByteArray", + "bytearray": "93a2f3da6abb" + }, + "cborHex": "4693a2f3da6abb", + "cborBytes": [70, 147, 162, 243, 218, 106, 187], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3355, + "sample": { + "_tag": "ByteArray", + "bytearray": "245952" + }, + "cborHex": "43245952", + "cborBytes": [67, 36, 89, 82], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3356, + "sample": { + "_tag": "ByteArray", + "bytearray": "540ff4b6d699" + }, + "cborHex": "46540ff4b6d699", + "cborBytes": [70, 84, 15, 244, 182, 214, 153], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3357, + "sample": { + "_tag": "ByteArray", + "bytearray": "2387fab9fbfca98a" + }, + "cborHex": "482387fab9fbfca98a", + "cborBytes": [72, 35, 135, 250, 185, 251, 252, 169, 138], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3358, + "sample": { + "_tag": "ByteArray", + "bytearray": "8ff87c02" + }, + "cborHex": "448ff87c02", + "cborBytes": [68, 143, 248, 124, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3359, + "sample": { + "_tag": "ByteArray", + "bytearray": "61c3f54908a3032499099d" + }, + "cborHex": "4b61c3f54908a3032499099d", + "cborBytes": [75, 97, 195, 245, 73, 8, 163, 3, 36, 153, 9, 157], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3360, + "sample": { + "_tag": "ByteArray", + "bytearray": "22d10c700899ed5f6ab9b9" + }, + "cborHex": "4b22d10c700899ed5f6ab9b9", + "cborBytes": [75, 34, 209, 12, 112, 8, 153, 237, 95, 106, 185, 185], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3361, + "sample": { + "_tag": "ByteArray", + "bytearray": "321aec3345be" + }, + "cborHex": "46321aec3345be", + "cborBytes": [70, 50, 26, 236, 51, 69, 190], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3362, + "sample": { + "_tag": "ByteArray", + "bytearray": "537103" + }, + "cborHex": "43537103", + "cborBytes": [67, 83, 113, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3363, + "sample": { + "_tag": "ByteArray", + "bytearray": "cf0106" + }, + "cborHex": "43cf0106", + "cborBytes": [67, 207, 1, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3364, + "sample": { + "_tag": "ByteArray", + "bytearray": "f903fa" + }, + "cborHex": "43f903fa", + "cborBytes": [67, 249, 3, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3365, + "sample": { + "_tag": "ByteArray", + "bytearray": "02f8" + }, + "cborHex": "4202f8", + "cborBytes": [66, 2, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3366, + "sample": { + "_tag": "ByteArray", + "bytearray": "f3757547" + }, + "cborHex": "44f3757547", + "cborBytes": [68, 243, 117, 117, 71], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3367, + "sample": { + "_tag": "ByteArray", + "bytearray": "ffbc8a030614" + }, + "cborHex": "46ffbc8a030614", + "cborBytes": [70, 255, 188, 138, 3, 6, 20], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3368, + "sample": { + "_tag": "ByteArray", + "bytearray": "9209d02481dc1c7043d78655" + }, + "cborHex": "4c9209d02481dc1c7043d78655", + "cborBytes": [76, 146, 9, 208, 36, 129, 220, 28, 112, 67, 215, 134, 85], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3369, + "sample": { + "_tag": "ByteArray", + "bytearray": "927969d383" + }, + "cborHex": "45927969d383", + "cborBytes": [69, 146, 121, 105, 211, 131], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3370, + "sample": { + "_tag": "ByteArray", + "bytearray": "07f88afe" + }, + "cborHex": "4407f88afe", + "cborBytes": [68, 7, 248, 138, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3371, + "sample": { + "_tag": "ByteArray", + "bytearray": "21b41151769f582210" + }, + "cborHex": "4921b41151769f582210", + "cborBytes": [73, 33, 180, 17, 81, 118, 159, 88, 34, 16], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3372, + "sample": { + "_tag": "ByteArray", + "bytearray": "03fd03a7fe7501fa" + }, + "cborHex": "4803fd03a7fe7501fa", + "cborBytes": [72, 3, 253, 3, 167, 254, 117, 1, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3373, + "sample": { + "_tag": "ByteArray", + "bytearray": "ab29b81b78d349" + }, + "cborHex": "47ab29b81b78d349", + "cborBytes": [71, 171, 41, 184, 27, 120, 211, 73], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3374, + "sample": { + "_tag": "ByteArray", + "bytearray": "01028d" + }, + "cborHex": "4301028d", + "cborBytes": [67, 1, 2, 141], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3375, + "sample": { + "_tag": "ByteArray", + "bytearray": "b6bd13aeabec00" + }, + "cborHex": "47b6bd13aeabec00", + "cborBytes": [71, 182, 189, 19, 174, 171, 236, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3376, + "sample": { + "_tag": "ByteArray", + "bytearray": "6e3d" + }, + "cborHex": "426e3d", + "cborBytes": [66, 110, 61], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3377, + "sample": { + "_tag": "ByteArray", + "bytearray": "6756483344e370f258" + }, + "cborHex": "496756483344e370f258", + "cborBytes": [73, 103, 86, 72, 51, 68, 227, 112, 242, 88], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3378, + "sample": { + "_tag": "ByteArray", + "bytearray": "b5c71e" + }, + "cborHex": "43b5c71e", + "cborBytes": [67, 181, 199, 30], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3379, + "sample": { + "_tag": "ByteArray", + "bytearray": "1421" + }, + "cborHex": "421421", + "cborBytes": [66, 20, 33], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3380, + "sample": { + "_tag": "ByteArray", + "bytearray": "d8d83c94f2" + }, + "cborHex": "45d8d83c94f2", + "cborBytes": [69, 216, 216, 60, 148, 242], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3381, + "sample": { + "_tag": "ByteArray", + "bytearray": "04132f05034006bdd8040603" + }, + "cborHex": "4c04132f05034006bdd8040603", + "cborBytes": [76, 4, 19, 47, 5, 3, 64, 6, 189, 216, 4, 6, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3382, + "sample": { + "_tag": "ByteArray", + "bytearray": "01fcb10400fb4b066a" + }, + "cborHex": "4901fcb10400fb4b066a", + "cborBytes": [73, 1, 252, 177, 4, 0, 251, 75, 6, 106], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3383, + "sample": { + "_tag": "ByteArray", + "bytearray": "fdc0fe" + }, + "cborHex": "43fdc0fe", + "cborBytes": [67, 253, 192, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3384, + "sample": { + "_tag": "ByteArray", + "bytearray": "3dbdbc2dea8d28e649" + }, + "cborHex": "493dbdbc2dea8d28e649", + "cborBytes": [73, 61, 189, 188, 45, 234, 141, 40, 230, 73], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3385, + "sample": { + "_tag": "ByteArray", + "bytearray": "b720f628c8cb3f087cdf" + }, + "cborHex": "4ab720f628c8cb3f087cdf", + "cborBytes": [74, 183, 32, 246, 40, 200, 203, 63, 8, 124, 223], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3386, + "sample": { + "_tag": "ByteArray", + "bytearray": "b5968306ad332dfa34" + }, + "cborHex": "49b5968306ad332dfa34", + "cborBytes": [73, 181, 150, 131, 6, 173, 51, 45, 250, 52], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3387, + "sample": { + "_tag": "ByteArray", + "bytearray": "05c8fe" + }, + "cborHex": "4305c8fe", + "cborBytes": [67, 5, 200, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3388, + "sample": { + "_tag": "ByteArray", + "bytearray": "0d1f0c" + }, + "cborHex": "430d1f0c", + "cborBytes": [67, 13, 31, 12], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3389, + "sample": { + "_tag": "ByteArray", + "bytearray": "bf0304" + }, + "cborHex": "43bf0304", + "cborBytes": [67, 191, 3, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3390, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb4005" + }, + "cborHex": "43fb4005", + "cborBytes": [67, 251, 64, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3391, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcee83da26030002fb05" + }, + "cborHex": "4afcee83da26030002fb05", + "cborBytes": [74, 252, 238, 131, 218, 38, 3, 0, 2, 251, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3392, + "sample": { + "_tag": "ByteArray", + "bytearray": "59afe465f4c356b5" + }, + "cborHex": "4859afe465f4c356b5", + "cborBytes": [72, 89, 175, 228, 101, 244, 195, 86, 181], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3393, + "sample": { + "_tag": "ByteArray", + "bytearray": "03030783d3fe" + }, + "cborHex": "4603030783d3fe", + "cborBytes": [70, 3, 3, 7, 131, 211, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3394, + "sample": { + "_tag": "ByteArray", + "bytearray": "7213c7" + }, + "cborHex": "437213c7", + "cborBytes": [67, 114, 19, 199], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3395, + "sample": { + "_tag": "ByteArray", + "bytearray": "d5f8be27" + }, + "cborHex": "44d5f8be27", + "cborBytes": [68, 213, 248, 190, 39], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3396, + "sample": { + "_tag": "ByteArray", + "bytearray": "dd360043" + }, + "cborHex": "44dd360043", + "cborBytes": [68, 221, 54, 0, 67], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3397, + "sample": { + "_tag": "ByteArray", + "bytearray": "03a5" + }, + "cborHex": "4203a5", + "cborBytes": [66, 3, 165], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3398, + "sample": { + "_tag": "ByteArray", + "bytearray": "039d61fb" + }, + "cborHex": "44039d61fb", + "cborBytes": [68, 3, 157, 97, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3399, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcb40006fc0604c580fe60" + }, + "cborHex": "4bfcb40006fc0604c580fe60", + "cborBytes": [75, 252, 180, 0, 6, 252, 6, 4, 197, 128, 254, 96], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3400, + "sample": { + "_tag": "ByteArray", + "bytearray": "7fa4e8ff723aca5ff3" + }, + "cborHex": "497fa4e8ff723aca5ff3", + "cborBytes": [73, 127, 164, 232, 255, 114, 58, 202, 95, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3401, + "sample": { + "_tag": "ByteArray", + "bytearray": "de2d196d" + }, + "cborHex": "44de2d196d", + "cborBytes": [68, 222, 45, 25, 109], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3402, + "sample": { + "_tag": "ByteArray", + "bytearray": "1cd9" + }, + "cborHex": "421cd9", + "cborBytes": [66, 28, 217], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3403, + "sample": { + "_tag": "ByteArray", + "bytearray": "07044210" + }, + "cborHex": "4407044210", + "cborBytes": [68, 7, 4, 66, 16], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3404, + "sample": { + "_tag": "ByteArray", + "bytearray": "31cd94726e02428564103427" + }, + "cborHex": "4c31cd94726e02428564103427", + "cborBytes": [76, 49, 205, 148, 114, 110, 2, 66, 133, 100, 16, 52, 39], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3405, + "sample": { + "_tag": "ByteArray", + "bytearray": "060619000607facf" + }, + "cborHex": "48060619000607facf", + "cborBytes": [72, 6, 6, 25, 0, 6, 7, 250, 207], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3406, + "sample": { + "_tag": "ByteArray", + "bytearray": "73b3" + }, + "cborHex": "4273b3", + "cborBytes": [66, 115, 179], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3407, + "sample": { + "_tag": "ByteArray", + "bytearray": "352783041c9a8caf" + }, + "cborHex": "48352783041c9a8caf", + "cborBytes": [72, 53, 39, 131, 4, 28, 154, 140, 175], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3408, + "sample": { + "_tag": "ByteArray", + "bytearray": "ab01" + }, + "cborHex": "42ab01", + "cborBytes": [66, 171, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3409, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcf8f9" + }, + "cborHex": "43fcf8f9", + "cborBytes": [67, 252, 248, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3410, + "sample": { + "_tag": "ByteArray", + "bytearray": "9b018bfd921b05fe2d00" + }, + "cborHex": "4a9b018bfd921b05fe2d00", + "cborBytes": [74, 155, 1, 139, 253, 146, 27, 5, 254, 45, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3411, + "sample": { + "_tag": "ByteArray", + "bytearray": "70aa7e5c" + }, + "cborHex": "4470aa7e5c", + "cborBytes": [68, 112, 170, 126, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3412, + "sample": { + "_tag": "ByteArray", + "bytearray": "6241a402" + }, + "cborHex": "446241a402", + "cborBytes": [68, 98, 65, 164, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3413, + "sample": { + "_tag": "ByteArray", + "bytearray": "68c32cce368d7d9c8c82e48f" + }, + "cborHex": "4c68c32cce368d7d9c8c82e48f", + "cborBytes": [76, 104, 195, 44, 206, 54, 141, 125, 156, 140, 130, 228, 143], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3414, + "sample": { + "_tag": "ByteArray", + "bytearray": "e5c4f2faf68b6748" + }, + "cborHex": "48e5c4f2faf68b6748", + "cborBytes": [72, 229, 196, 242, 250, 246, 139, 103, 72], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3415, + "sample": { + "_tag": "ByteArray", + "bytearray": "82000506ebfd0502" + }, + "cborHex": "4882000506ebfd0502", + "cborBytes": [72, 130, 0, 5, 6, 235, 253, 5, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3416, + "sample": { + "_tag": "ByteArray", + "bytearray": "c0f83f4fba9b4fd5" + }, + "cborHex": "48c0f83f4fba9b4fd5", + "cborBytes": [72, 192, 248, 63, 79, 186, 155, 79, 213], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3417, + "sample": { + "_tag": "ByteArray", + "bytearray": "908106f4c0" + }, + "cborHex": "45908106f4c0", + "cborBytes": [69, 144, 129, 6, 244, 192], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3418, + "sample": { + "_tag": "ByteArray", + "bytearray": "0502" + }, + "cborHex": "420502", + "cborBytes": [66, 5, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3419, + "sample": { + "_tag": "ByteArray", + "bytearray": "3a71b009" + }, + "cborHex": "443a71b009", + "cborBytes": [68, 58, 113, 176, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3420, + "sample": { + "_tag": "ByteArray", + "bytearray": "9003" + }, + "cborHex": "429003", + "cborBytes": [66, 144, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3421, + "sample": { + "_tag": "ByteArray", + "bytearray": "bfa4" + }, + "cborHex": "42bfa4", + "cborBytes": [66, 191, 164], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3422, + "sample": { + "_tag": "ByteArray", + "bytearray": "eafbc3" + }, + "cborHex": "43eafbc3", + "cborBytes": [67, 234, 251, 195], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3423, + "sample": { + "_tag": "ByteArray", + "bytearray": "b78e95" + }, + "cborHex": "43b78e95", + "cborBytes": [67, 183, 142, 149], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3424, + "sample": { + "_tag": "ByteArray", + "bytearray": "2e22b70628c682" + }, + "cborHex": "472e22b70628c682", + "cborBytes": [71, 46, 34, 183, 6, 40, 198, 130], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3425, + "sample": { + "_tag": "ByteArray", + "bytearray": "26b589b18f9a34" + }, + "cborHex": "4726b589b18f9a34", + "cborBytes": [71, 38, 181, 137, 177, 143, 154, 52], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3426, + "sample": { + "_tag": "ByteArray", + "bytearray": "020203" + }, + "cborHex": "43020203", + "cborBytes": [67, 2, 2, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3427, + "sample": { + "_tag": "ByteArray", + "bytearray": "6c059fb9" + }, + "cborHex": "446c059fb9", + "cborBytes": [68, 108, 5, 159, 185], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3428, + "sample": { + "_tag": "ByteArray", + "bytearray": "8e5d9f3d" + }, + "cborHex": "448e5d9f3d", + "cborBytes": [68, 142, 93, 159, 61], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3429, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff372dcabdce" + }, + "cborHex": "46ff372dcabdce", + "cborBytes": [70, 255, 55, 45, 202, 189, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3430, + "sample": { + "_tag": "ByteArray", + "bytearray": "0121f95e67616707" + }, + "cborHex": "480121f95e67616707", + "cborBytes": [72, 1, 33, 249, 94, 103, 97, 103, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3431, + "sample": { + "_tag": "ByteArray", + "bytearray": "952147bff6a011e62aef" + }, + "cborHex": "4a952147bff6a011e62aef", + "cborBytes": [74, 149, 33, 71, 191, 246, 160, 17, 230, 42, 239], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3432, + "sample": { + "_tag": "ByteArray", + "bytearray": "c78c4316fc5d" + }, + "cborHex": "46c78c4316fc5d", + "cborBytes": [70, 199, 140, 67, 22, 252, 93], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3433, + "sample": { + "_tag": "ByteArray", + "bytearray": "217740afd4988c308702" + }, + "cborHex": "4a217740afd4988c308702", + "cborBytes": [74, 33, 119, 64, 175, 212, 152, 140, 48, 135, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3434, + "sample": { + "_tag": "ByteArray", + "bytearray": "5656" + }, + "cborHex": "425656", + "cborBytes": [66, 86, 86], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3435, + "sample": { + "_tag": "ByteArray", + "bytearray": "06b9f9dcedfe" + }, + "cborHex": "4606b9f9dcedfe", + "cborBytes": [70, 6, 185, 249, 220, 237, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3436, + "sample": { + "_tag": "ByteArray", + "bytearray": "9cfa" + }, + "cborHex": "429cfa", + "cborBytes": [66, 156, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3437, + "sample": { + "_tag": "ByteArray", + "bytearray": "4403fb11" + }, + "cborHex": "444403fb11", + "cborBytes": [68, 68, 3, 251, 17], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3438, + "sample": { + "_tag": "ByteArray", + "bytearray": "faf916effda0ff0601" + }, + "cborHex": "49faf916effda0ff0601", + "cborBytes": [73, 250, 249, 22, 239, 253, 160, 255, 6, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3439, + "sample": { + "_tag": "ByteArray", + "bytearray": "1d" + }, + "cborHex": "411d", + "cborBytes": [65, 29], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3440, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff538b0498407e5adf6faf" + }, + "cborHex": "4bff538b0498407e5adf6faf", + "cborBytes": [75, 255, 83, 139, 4, 152, 64, 126, 90, 223, 111, 175], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3441, + "sample": { + "_tag": "ByteArray", + "bytearray": "cae404" + }, + "cborHex": "43cae404", + "cborBytes": [67, 202, 228, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3442, + "sample": { + "_tag": "ByteArray", + "bytearray": "82e985" + }, + "cborHex": "4382e985", + "cborBytes": [67, 130, 233, 133], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3443, + "sample": { + "_tag": "ByteArray", + "bytearray": "913db81cc829966a" + }, + "cborHex": "48913db81cc829966a", + "cborBytes": [72, 145, 61, 184, 28, 200, 41, 150, 106], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3444, + "sample": { + "_tag": "ByteArray", + "bytearray": "04fe1fa9ffc7005ac8" + }, + "cborHex": "4904fe1fa9ffc7005ac8", + "cborBytes": [73, 4, 254, 31, 169, 255, 199, 0, 90, 200], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3445, + "sample": { + "_tag": "ByteArray", + "bytearray": "0d4240" + }, + "cborHex": "430d4240", + "cborBytes": [67, 13, 66, 64], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3446, + "sample": { + "_tag": "ByteArray", + "bytearray": "c52937775e7582fa7c" + }, + "cborHex": "49c52937775e7582fa7c", + "cborBytes": [73, 197, 41, 55, 119, 94, 117, 130, 250, 124], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3447, + "sample": { + "_tag": "ByteArray", + "bytearray": "963a30a7b65d026a5fb9ecc4" + }, + "cborHex": "4c963a30a7b65d026a5fb9ecc4", + "cborBytes": [76, 150, 58, 48, 167, 182, 93, 2, 106, 95, 185, 236, 196], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3448, + "sample": { + "_tag": "ByteArray", + "bytearray": "3480c1aea851e42cf33d" + }, + "cborHex": "4a3480c1aea851e42cf33d", + "cborBytes": [74, 52, 128, 193, 174, 168, 81, 228, 44, 243, 61], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3449, + "sample": { + "_tag": "ByteArray", + "bytearray": "23fec14983c7f42e" + }, + "cborHex": "4823fec14983c7f42e", + "cborBytes": [72, 35, 254, 193, 73, 131, 199, 244, 46], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3450, + "sample": { + "_tag": "ByteArray", + "bytearray": "81257e" + }, + "cborHex": "4381257e", + "cborBytes": [67, 129, 37, 126], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3451, + "sample": { + "_tag": "ByteArray", + "bytearray": "698dfe" + }, + "cborHex": "43698dfe", + "cborBytes": [67, 105, 141, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3452, + "sample": { + "_tag": "ByteArray", + "bytearray": "e7e564b4bafa805f5e10" + }, + "cborHex": "4ae7e564b4bafa805f5e10", + "cborBytes": [74, 231, 229, 100, 180, 186, 250, 128, 95, 94, 16], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3453, + "sample": { + "_tag": "ByteArray", + "bytearray": "03fef577b8082907fdd302ec" + }, + "cborHex": "4c03fef577b8082907fdd302ec", + "cborBytes": [76, 3, 254, 245, 119, 184, 8, 41, 7, 253, 211, 2, 236], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3454, + "sample": { + "_tag": "ByteArray", + "bytearray": "59a973958307d2a7f417" + }, + "cborHex": "4a59a973958307d2a7f417", + "cborBytes": [74, 89, 169, 115, 149, 131, 7, 210, 167, 244, 23], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3455, + "sample": { + "_tag": "ByteArray", + "bytearray": "0260f9" + }, + "cborHex": "430260f9", + "cborBytes": [67, 2, 96, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3456, + "sample": { + "_tag": "ByteArray", + "bytearray": "3806" + }, + "cborHex": "423806", + "cborBytes": [66, 56, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3457, + "sample": { + "_tag": "ByteArray", + "bytearray": "0704019d" + }, + "cborHex": "440704019d", + "cborBytes": [68, 7, 4, 1, 157], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3458, + "sample": { + "_tag": "ByteArray", + "bytearray": "a9a805" + }, + "cborHex": "43a9a805", + "cborBytes": [67, 169, 168, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3459, + "sample": { + "_tag": "ByteArray", + "bytearray": "08" + }, + "cborHex": "4108", + "cborBytes": [65, 8], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3460, + "sample": { + "_tag": "ByteArray", + "bytearray": "4166351579944a80a3d0" + }, + "cborHex": "4a4166351579944a80a3d0", + "cborBytes": [74, 65, 102, 53, 21, 121, 148, 74, 128, 163, 208], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3461, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd4c01" + }, + "cborHex": "43fd4c01", + "cborBytes": [67, 253, 76, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3462, + "sample": { + "_tag": "ByteArray", + "bytearray": "8006" + }, + "cborHex": "428006", + "cborBytes": [66, 128, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3463, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe4146" + }, + "cborHex": "43fe4146", + "cborBytes": [67, 254, 65, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3464, + "sample": { + "_tag": "ByteArray", + "bytearray": "37cb108f" + }, + "cborHex": "4437cb108f", + "cborBytes": [68, 55, 203, 16, 143], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3465, + "sample": { + "_tag": "ByteArray", + "bytearray": "52e6c537901e" + }, + "cborHex": "4652e6c537901e", + "cborBytes": [70, 82, 230, 197, 55, 144, 30], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3466, + "sample": { + "_tag": "ByteArray", + "bytearray": "b273" + }, + "cborHex": "42b273", + "cborBytes": [66, 178, 115], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3467, + "sample": { + "_tag": "ByteArray", + "bytearray": "688e0fc54d9c6786b7" + }, + "cborHex": "49688e0fc54d9c6786b7", + "cborBytes": [73, 104, 142, 15, 197, 77, 156, 103, 134, 183], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3468, + "sample": { + "_tag": "ByteArray", + "bytearray": "50acdb65ccae69966f81b4ce" + }, + "cborHex": "4c50acdb65ccae69966f81b4ce", + "cborBytes": [76, 80, 172, 219, 101, 204, 174, 105, 150, 111, 129, 180, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3469, + "sample": { + "_tag": "ByteArray", + "bytearray": "05fb497c9ef803" + }, + "cborHex": "4705fb497c9ef803", + "cborBytes": [71, 5, 251, 73, 124, 158, 248, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3470, + "sample": { + "_tag": "ByteArray", + "bytearray": "4b96818fc98111e3" + }, + "cborHex": "484b96818fc98111e3", + "cborBytes": [72, 75, 150, 129, 143, 201, 129, 17, 227], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3471, + "sample": { + "_tag": "ByteArray", + "bytearray": "74932535ba8afd" + }, + "cborHex": "4774932535ba8afd", + "cborBytes": [71, 116, 147, 37, 53, 186, 138, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3472, + "sample": { + "_tag": "ByteArray", + "bytearray": "a34cfb509f6df1" + }, + "cborHex": "47a34cfb509f6df1", + "cborBytes": [71, 163, 76, 251, 80, 159, 109, 241], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3473, + "sample": { + "_tag": "ByteArray", + "bytearray": "0730" + }, + "cborHex": "420730", + "cborBytes": [66, 7, 48], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3474, + "sample": { + "_tag": "ByteArray", + "bytearray": "391d84df1d2078d0be" + }, + "cborHex": "49391d84df1d2078d0be", + "cborBytes": [73, 57, 29, 132, 223, 29, 32, 120, 208, 190], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3475, + "sample": { + "_tag": "ByteArray", + "bytearray": "0053050048c6b8" + }, + "cborHex": "470053050048c6b8", + "cborBytes": [71, 0, 83, 5, 0, 72, 198, 184], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3476, + "sample": { + "_tag": "ByteArray", + "bytearray": "70" + }, + "cborHex": "4170", + "cborBytes": [65, 112], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3477, + "sample": { + "_tag": "ByteArray", + "bytearray": "7af8e8ed" + }, + "cborHex": "447af8e8ed", + "cborBytes": [68, 122, 248, 232, 237], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3478, + "sample": { + "_tag": "ByteArray", + "bytearray": "75be60" + }, + "cborHex": "4375be60", + "cborBytes": [67, 117, 190, 96], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3479, + "sample": { + "_tag": "ByteArray", + "bytearray": "c105cac6e75337" + }, + "cborHex": "47c105cac6e75337", + "cborBytes": [71, 193, 5, 202, 198, 231, 83, 55], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3480, + "sample": { + "_tag": "ByteArray", + "bytearray": "af9d20" + }, + "cborHex": "43af9d20", + "cborBytes": [67, 175, 157, 32], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3481, + "sample": { + "_tag": "ByteArray", + "bytearray": "e6fd03" + }, + "cborHex": "43e6fd03", + "cborBytes": [67, 230, 253, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3482, + "sample": { + "_tag": "ByteArray", + "bytearray": "54bee340a8f8ec9459" + }, + "cborHex": "4954bee340a8f8ec9459", + "cborBytes": [73, 84, 190, 227, 64, 168, 248, 236, 148, 89], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3483, + "sample": { + "_tag": "ByteArray", + "bytearray": "7d3a01" + }, + "cborHex": "437d3a01", + "cborBytes": [67, 125, 58, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3484, + "sample": { + "_tag": "ByteArray", + "bytearray": "9e7aea3f" + }, + "cborHex": "449e7aea3f", + "cborBytes": [68, 158, 122, 234, 63], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3485, + "sample": { + "_tag": "ByteArray", + "bytearray": "fce7fb" + }, + "cborHex": "43fce7fb", + "cborBytes": [67, 252, 231, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3486, + "sample": { + "_tag": "ByteArray", + "bytearray": "b50438" + }, + "cborHex": "43b50438", + "cborBytes": [67, 181, 4, 56], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3487, + "sample": { + "_tag": "ByteArray", + "bytearray": "0005" + }, + "cborHex": "420005", + "cborBytes": [66, 0, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3488, + "sample": { + "_tag": "ByteArray", + "bytearray": "84bac91a2b" + }, + "cborHex": "4584bac91a2b", + "cborBytes": [69, 132, 186, 201, 26, 43], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3489, + "sample": { + "_tag": "ByteArray", + "bytearray": "4b346d257858" + }, + "cborHex": "464b346d257858", + "cborBytes": [70, 75, 52, 109, 37, 120, 88], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3490, + "sample": { + "_tag": "ByteArray", + "bytearray": "06f88c" + }, + "cborHex": "4306f88c", + "cborBytes": [67, 6, 248, 140], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3491, + "sample": { + "_tag": "ByteArray", + "bytearray": "8651" + }, + "cborHex": "428651", + "cborBytes": [66, 134, 81], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3492, + "sample": { + "_tag": "ByteArray", + "bytearray": "ac001f70" + }, + "cborHex": "44ac001f70", + "cborBytes": [68, 172, 0, 31, 112], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3493, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa019907" + }, + "cborHex": "44fa019907", + "cborBytes": [68, 250, 1, 153, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3494, + "sample": { + "_tag": "ByteArray", + "bytearray": "5b1e" + }, + "cborHex": "425b1e", + "cborBytes": [66, 91, 30], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3495, + "sample": { + "_tag": "ByteArray", + "bytearray": "94" + }, + "cborHex": "4194", + "cborBytes": [65, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3496, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8fe10" + }, + "cborHex": "43f8fe10", + "cborBytes": [67, 248, 254, 16], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3497, + "sample": { + "_tag": "ByteArray", + "bytearray": "ee04" + }, + "cborHex": "42ee04", + "cborBytes": [66, 238, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3498, + "sample": { + "_tag": "ByteArray", + "bytearray": "21fe51fd01" + }, + "cborHex": "4521fe51fd01", + "cborBytes": [69, 33, 254, 81, 253, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3499, + "sample": { + "_tag": "ByteArray", + "bytearray": "8df8280300b3018e01283c" + }, + "cborHex": "4b8df8280300b3018e01283c", + "cborBytes": [75, 141, 248, 40, 3, 0, 179, 1, 142, 1, 40, 60], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3500, + "sample": { + "_tag": "ByteArray", + "bytearray": "01b4" + }, + "cborHex": "4201b4", + "cborBytes": [66, 1, 180], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3501, + "sample": { + "_tag": "ByteArray", + "bytearray": "b10503" + }, + "cborHex": "43b10503", + "cborBytes": [67, 177, 5, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3502, + "sample": { + "_tag": "ByteArray", + "bytearray": "02fd00f10105010006" + }, + "cborHex": "4902fd00f10105010006", + "cborBytes": [73, 2, 253, 0, 241, 1, 5, 1, 0, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3503, + "sample": { + "_tag": "ByteArray", + "bytearray": "189d54" + }, + "cborHex": "43189d54", + "cborBytes": [67, 24, 157, 84], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3504, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9e9fd" + }, + "cborHex": "43f9e9fd", + "cborBytes": [67, 249, 233, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3505, + "sample": { + "_tag": "ByteArray", + "bytearray": "01084102e260fefb" + }, + "cborHex": "4801084102e260fefb", + "cborBytes": [72, 1, 8, 65, 2, 226, 96, 254, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3506, + "sample": { + "_tag": "ByteArray", + "bytearray": "24156b92" + }, + "cborHex": "4424156b92", + "cborBytes": [68, 36, 21, 107, 146], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3507, + "sample": { + "_tag": "ByteArray", + "bytearray": "2d502bdffcfce18d3489e4" + }, + "cborHex": "4b2d502bdffcfce18d3489e4", + "cborBytes": [75, 45, 80, 43, 223, 252, 252, 225, 141, 52, 137, 228], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3508, + "sample": { + "_tag": "ByteArray", + "bytearray": "9940320ed6" + }, + "cborHex": "459940320ed6", + "cborBytes": [69, 153, 64, 50, 14, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3509, + "sample": { + "_tag": "ByteArray", + "bytearray": "b7d5156ab3ea7fb5eb" + }, + "cborHex": "49b7d5156ab3ea7fb5eb", + "cborBytes": [73, 183, 213, 21, 106, 179, 234, 127, 181, 235], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3510, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe04" + }, + "cborHex": "42fe04", + "cborBytes": [66, 254, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3511, + "sample": { + "_tag": "ByteArray", + "bytearray": "c2" + }, + "cborHex": "41c2", + "cborBytes": [65, 194], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3512, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8f887" + }, + "cborHex": "43f8f887", + "cborBytes": [67, 248, 248, 135], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3513, + "sample": { + "_tag": "ByteArray", + "bytearray": "51240306" + }, + "cborHex": "4451240306", + "cborBytes": [68, 81, 36, 3, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3514, + "sample": { + "_tag": "ByteArray", + "bytearray": "3f2f36ad8d" + }, + "cborHex": "453f2f36ad8d", + "cborBytes": [69, 63, 47, 54, 173, 141], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3515, + "sample": { + "_tag": "ByteArray", + "bytearray": "e310" + }, + "cborHex": "42e310", + "cborBytes": [66, 227, 16], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3516, + "sample": { + "_tag": "ByteArray", + "bytearray": "d906fe03" + }, + "cborHex": "44d906fe03", + "cborBytes": [68, 217, 6, 254, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3517, + "sample": { + "_tag": "ByteArray", + "bytearray": "5107f9" + }, + "cborHex": "435107f9", + "cborBytes": [67, 81, 7, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3518, + "sample": { + "_tag": "ByteArray", + "bytearray": "3345cc2f18a1de" + }, + "cborHex": "473345cc2f18a1de", + "cborBytes": [71, 51, 69, 204, 47, 24, 161, 222], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3519, + "sample": { + "_tag": "ByteArray", + "bytearray": "1d0307fc0702fa" + }, + "cborHex": "471d0307fc0702fa", + "cborBytes": [71, 29, 3, 7, 252, 7, 2, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3520, + "sample": { + "_tag": "ByteArray", + "bytearray": "5595" + }, + "cborHex": "425595", + "cborBytes": [66, 85, 149], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3521, + "sample": { + "_tag": "ByteArray", + "bytearray": "0d13881e6f24" + }, + "cborHex": "460d13881e6f24", + "cborBytes": [70, 13, 19, 136, 30, 111, 36], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3522, + "sample": { + "_tag": "ByteArray", + "bytearray": "83e59467b1" + }, + "cborHex": "4583e59467b1", + "cborBytes": [69, 131, 229, 148, 103, 177], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3523, + "sample": { + "_tag": "ByteArray", + "bytearray": "faeafa" + }, + "cborHex": "43faeafa", + "cborBytes": [67, 250, 234, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3524, + "sample": { + "_tag": "ByteArray", + "bytearray": "0707194c" + }, + "cborHex": "440707194c", + "cborBytes": [68, 7, 7, 25, 76], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3525, + "sample": { + "_tag": "ByteArray", + "bytearray": "76d7aa95a4" + }, + "cborHex": "4576d7aa95a4", + "cborBytes": [69, 118, 215, 170, 149, 164], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3526, + "sample": { + "_tag": "ByteArray", + "bytearray": "30b295c6e14deb90" + }, + "cborHex": "4830b295c6e14deb90", + "cborBytes": [72, 48, 178, 149, 198, 225, 77, 235, 144], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3527, + "sample": { + "_tag": "ByteArray", + "bytearray": "7f2976e0" + }, + "cborHex": "447f2976e0", + "cborBytes": [68, 127, 41, 118, 224], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3528, + "sample": { + "_tag": "ByteArray", + "bytearray": "e0c7f86ec836af21266f57" + }, + "cborHex": "4be0c7f86ec836af21266f57", + "cborBytes": [75, 224, 199, 248, 110, 200, 54, 175, 33, 38, 111, 87], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3529, + "sample": { + "_tag": "ByteArray", + "bytearray": "d4d4b2777cfc45ae" + }, + "cborHex": "48d4d4b2777cfc45ae", + "cborBytes": [72, 212, 212, 178, 119, 124, 252, 69, 174], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3530, + "sample": { + "_tag": "ByteArray", + "bytearray": "64104faaa6813ddb" + }, + "cborHex": "4864104faaa6813ddb", + "cborBytes": [72, 100, 16, 79, 170, 166, 129, 61, 219], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3531, + "sample": { + "_tag": "ByteArray", + "bytearray": "7a05003b" + }, + "cborHex": "447a05003b", + "cborBytes": [68, 122, 5, 0, 59], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3532, + "sample": { + "_tag": "ByteArray", + "bytearray": "99d5" + }, + "cborHex": "4299d5", + "cborBytes": [66, 153, 213], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3533, + "sample": { + "_tag": "ByteArray", + "bytearray": "1610fd8126f10e3bf38bf6" + }, + "cborHex": "4b1610fd8126f10e3bf38bf6", + "cborBytes": [75, 22, 16, 253, 129, 38, 241, 14, 59, 243, 139, 246], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3534, + "sample": { + "_tag": "ByteArray", + "bytearray": "3792" + }, + "cborHex": "423792", + "cborBytes": [66, 55, 146], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3535, + "sample": { + "_tag": "ByteArray", + "bytearray": "49a0f009" + }, + "cborHex": "4449a0f009", + "cborBytes": [68, 73, 160, 240, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3536, + "sample": { + "_tag": "ByteArray", + "bytearray": "a489bc160ff91d" + }, + "cborHex": "47a489bc160ff91d", + "cborBytes": [71, 164, 137, 188, 22, 15, 249, 29], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3537, + "sample": { + "_tag": "ByteArray", + "bytearray": "9780f62efc0260c64d" + }, + "cborHex": "499780f62efc0260c64d", + "cborBytes": [73, 151, 128, 246, 46, 252, 2, 96, 198, 77], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3538, + "sample": { + "_tag": "ByteArray", + "bytearray": "b1fc0304b307da044001" + }, + "cborHex": "4ab1fc0304b307da044001", + "cborBytes": [74, 177, 252, 3, 4, 179, 7, 218, 4, 64, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3539, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa46f92823060b8f01" + }, + "cborHex": "49fa46f92823060b8f01", + "cborBytes": [73, 250, 70, 249, 40, 35, 6, 11, 143, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3540, + "sample": { + "_tag": "ByteArray", + "bytearray": "79dc3276db1df2c4c645aaf1" + }, + "cborHex": "4c79dc3276db1df2c4c645aaf1", + "cborBytes": [76, 121, 220, 50, 118, 219, 29, 242, 196, 198, 69, 170, 241], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3541, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9a1" + }, + "cborHex": "42f9a1", + "cborBytes": [66, 249, 161], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3542, + "sample": { + "_tag": "ByteArray", + "bytearray": "b8c9" + }, + "cborHex": "42b8c9", + "cborBytes": [66, 184, 201], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3543, + "sample": { + "_tag": "ByteArray", + "bytearray": "e0fdfac18e03" + }, + "cborHex": "46e0fdfac18e03", + "cborBytes": [70, 224, 253, 250, 193, 142, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3544, + "sample": { + "_tag": "ByteArray", + "bytearray": "e47392d30edab245c8466f" + }, + "cborHex": "4be47392d30edab245c8466f", + "cborBytes": [75, 228, 115, 146, 211, 14, 218, 178, 69, 200, 70, 111], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3545, + "sample": { + "_tag": "ByteArray", + "bytearray": "b70404" + }, + "cborHex": "43b70404", + "cborBytes": [67, 183, 4, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3546, + "sample": { + "_tag": "ByteArray", + "bytearray": "8b" + }, + "cborHex": "418b", + "cborBytes": [65, 139], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3547, + "sample": { + "_tag": "ByteArray", + "bytearray": "4efe" + }, + "cborHex": "424efe", + "cborBytes": [66, 78, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3548, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc7f8fe538f9c772" + }, + "cborHex": "48fc7f8fe538f9c772", + "cborBytes": [72, 252, 127, 143, 229, 56, 249, 199, 114], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3549, + "sample": { + "_tag": "ByteArray", + "bytearray": "e8b6ff6f932f6e70" + }, + "cborHex": "48e8b6ff6f932f6e70", + "cborBytes": [72, 232, 182, 255, 111, 147, 47, 110, 112], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3550, + "sample": { + "_tag": "ByteArray", + "bytearray": "b3fa21d00006000105fdb73e" + }, + "cborHex": "4cb3fa21d00006000105fdb73e", + "cborBytes": [76, 179, 250, 33, 208, 0, 6, 0, 1, 5, 253, 183, 62], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3551, + "sample": { + "_tag": "ByteArray", + "bytearray": "fffe4a" + }, + "cborHex": "43fffe4a", + "cborBytes": [67, 255, 254, 74], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3552, + "sample": { + "_tag": "ByteArray", + "bytearray": "86f410064c882c1f80bcae01" + }, + "cborHex": "4c86f410064c882c1f80bcae01", + "cborBytes": [76, 134, 244, 16, 6, 76, 136, 44, 31, 128, 188, 174, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3553, + "sample": { + "_tag": "ByteArray", + "bytearray": "0470f4" + }, + "cborHex": "430470f4", + "cborBytes": [67, 4, 112, 244], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3554, + "sample": { + "_tag": "ByteArray", + "bytearray": "7cf805" + }, + "cborHex": "437cf805", + "cborBytes": [67, 124, 248, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3555, + "sample": { + "_tag": "ByteArray", + "bytearray": "140209030102fe02" + }, + "cborHex": "48140209030102fe02", + "cborBytes": [72, 20, 2, 9, 3, 1, 2, 254, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3556, + "sample": { + "_tag": "ByteArray", + "bytearray": "9a2d0d" + }, + "cborHex": "439a2d0d", + "cborBytes": [67, 154, 45, 13], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3557, + "sample": { + "_tag": "ByteArray", + "bytearray": "7e2e3e04" + }, + "cborHex": "447e2e3e04", + "cborBytes": [68, 126, 46, 62, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3558, + "sample": { + "_tag": "ByteArray", + "bytearray": "359dce50" + }, + "cborHex": "44359dce50", + "cborBytes": [68, 53, 157, 206, 80], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3559, + "sample": { + "_tag": "ByteArray", + "bytearray": "ccedcb1acaf30ad0" + }, + "cborHex": "48ccedcb1acaf30ad0", + "cborBytes": [72, 204, 237, 203, 26, 202, 243, 10, 208], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3560, + "sample": { + "_tag": "ByteArray", + "bytearray": "23d510c37d76588b53d386" + }, + "cborHex": "4b23d510c37d76588b53d386", + "cborBytes": [75, 35, 213, 16, 195, 125, 118, 88, 139, 83, 211, 134], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3561, + "sample": { + "_tag": "ByteArray", + "bytearray": "01fa38040302" + }, + "cborHex": "4601fa38040302", + "cborBytes": [70, 1, 250, 56, 4, 3, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3562, + "sample": { + "_tag": "ByteArray", + "bytearray": "f5d085c8683f26e8278ca6" + }, + "cborHex": "4bf5d085c8683f26e8278ca6", + "cborBytes": [75, 245, 208, 133, 200, 104, 63, 38, 232, 39, 140, 166], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3563, + "sample": { + "_tag": "ByteArray", + "bytearray": "8ea2c52f5beb44" + }, + "cborHex": "478ea2c52f5beb44", + "cborBytes": [71, 142, 162, 197, 47, 91, 235, 68], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3564, + "sample": { + "_tag": "ByteArray", + "bytearray": "3a24d3b81c3a" + }, + "cborHex": "463a24d3b81c3a", + "cborBytes": [70, 58, 36, 211, 184, 28, 58], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3565, + "sample": { + "_tag": "ByteArray", + "bytearray": "55422101cf82ac79f119" + }, + "cborHex": "4a55422101cf82ac79f119", + "cborBytes": [74, 85, 66, 33, 1, 207, 130, 172, 121, 241, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3566, + "sample": { + "_tag": "ByteArray", + "bytearray": "5d4b9e783e57" + }, + "cborHex": "465d4b9e783e57", + "cborBytes": [70, 93, 75, 158, 120, 62, 87], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3567, + "sample": { + "_tag": "ByteArray", + "bytearray": "0703" + }, + "cborHex": "420703", + "cborBytes": [66, 7, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3568, + "sample": { + "_tag": "ByteArray", + "bytearray": "67e9a8b3dc6f1b" + }, + "cborHex": "4767e9a8b3dc6f1b", + "cborBytes": [71, 103, 233, 168, 179, 220, 111, 27], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3569, + "sample": { + "_tag": "ByteArray", + "bytearray": "2000010586094cfdf9fd4e" + }, + "cborHex": "4b2000010586094cfdf9fd4e", + "cborBytes": [75, 32, 0, 1, 5, 134, 9, 76, 253, 249, 253, 78], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3570, + "sample": { + "_tag": "ByteArray", + "bytearray": "e9e9" + }, + "cborHex": "42e9e9", + "cborBytes": [66, 233, 233], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3571, + "sample": { + "_tag": "ByteArray", + "bytearray": "7ed8a1f440af" + }, + "cborHex": "467ed8a1f440af", + "cborBytes": [70, 126, 216, 161, 244, 64, 175], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3572, + "sample": { + "_tag": "ByteArray", + "bytearray": "031bc95f05" + }, + "cborHex": "45031bc95f05", + "cborBytes": [69, 3, 27, 201, 95, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3573, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe9dfb18" + }, + "cborHex": "44fe9dfb18", + "cborBytes": [68, 254, 157, 251, 24], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3574, + "sample": { + "_tag": "ByteArray", + "bytearray": "0642" + }, + "cborHex": "420642", + "cborBytes": [66, 6, 66], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3575, + "sample": { + "_tag": "ByteArray", + "bytearray": "d7e50201" + }, + "cborHex": "44d7e50201", + "cborBytes": [68, 215, 229, 2, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3576, + "sample": { + "_tag": "ByteArray", + "bytearray": "9f7ed901f892" + }, + "cborHex": "469f7ed901f892", + "cborBytes": [70, 159, 126, 217, 1, 248, 146], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3577, + "sample": { + "_tag": "ByteArray", + "bytearray": "62648df3a233d8c7" + }, + "cborHex": "4862648df3a233d8c7", + "cborBytes": [72, 98, 100, 141, 243, 162, 51, 216, 199], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3578, + "sample": { + "_tag": "ByteArray", + "bytearray": "ba417243" + }, + "cborHex": "44ba417243", + "cborBytes": [68, 186, 65, 114, 67], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3579, + "sample": { + "_tag": "ByteArray", + "bytearray": "3c9d" + }, + "cborHex": "423c9d", + "cborBytes": [66, 60, 157], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3580, + "sample": { + "_tag": "ByteArray", + "bytearray": "4dd936d00b" + }, + "cborHex": "454dd936d00b", + "cborBytes": [69, 77, 217, 54, 208, 11], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3581, + "sample": { + "_tag": "ByteArray", + "bytearray": "5e18c7eb43d35d" + }, + "cborHex": "475e18c7eb43d35d", + "cborBytes": [71, 94, 24, 199, 235, 67, 211, 93], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3582, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd0a09e0" + }, + "cborHex": "44fd0a09e0", + "cborBytes": [68, 253, 10, 9, 224], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3583, + "sample": { + "_tag": "ByteArray", + "bytearray": "5ef80207ff624407fe055f44" + }, + "cborHex": "4c5ef80207ff624407fe055f44", + "cborBytes": [76, 94, 248, 2, 7, 255, 98, 68, 7, 254, 5, 95, 68], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3584, + "sample": { + "_tag": "ByteArray", + "bytearray": "dff20c53" + }, + "cborHex": "44dff20c53", + "cborBytes": [68, 223, 242, 12, 83], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3585, + "sample": { + "_tag": "ByteArray", + "bytearray": "f900e21f" + }, + "cborHex": "44f900e21f", + "cborBytes": [68, 249, 0, 226, 31], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3586, + "sample": { + "_tag": "ByteArray", + "bytearray": "9aadabcb856a05776b2f" + }, + "cborHex": "4a9aadabcb856a05776b2f", + "cborBytes": [74, 154, 173, 171, 203, 133, 106, 5, 119, 107, 47], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3587, + "sample": { + "_tag": "ByteArray", + "bytearray": "a9" + }, + "cborHex": "41a9", + "cborBytes": [65, 169], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3588, + "sample": { + "_tag": "ByteArray", + "bytearray": "60ea955bdfb75350ab4157ec" + }, + "cborHex": "4c60ea955bdfb75350ab4157ec", + "cborBytes": [76, 96, 234, 149, 91, 223, 183, 83, 80, 171, 65, 87, 236], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3589, + "sample": { + "_tag": "ByteArray", + "bytearray": "34ae7cbf04" + }, + "cborHex": "4534ae7cbf04", + "cborBytes": [69, 52, 174, 124, 191, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3590, + "sample": { + "_tag": "ByteArray", + "bytearray": "153cfd07d0fc8a00f6" + }, + "cborHex": "49153cfd07d0fc8a00f6", + "cborBytes": [73, 21, 60, 253, 7, 208, 252, 138, 0, 246], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3591, + "sample": { + "_tag": "ByteArray", + "bytearray": "025606" + }, + "cborHex": "43025606", + "cborBytes": [67, 2, 86, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3592, + "sample": { + "_tag": "ByteArray", + "bytearray": "ad00fe" + }, + "cborHex": "43ad00fe", + "cborBytes": [67, 173, 0, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3593, + "sample": { + "_tag": "ByteArray", + "bytearray": "fefcfc4b05f8" + }, + "cborHex": "46fefcfc4b05f8", + "cborBytes": [70, 254, 252, 252, 75, 5, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3594, + "sample": { + "_tag": "ByteArray", + "bytearray": "35" + }, + "cborHex": "4135", + "cborBytes": [65, 53], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3595, + "sample": { + "_tag": "ByteArray", + "bytearray": "3a00" + }, + "cborHex": "423a00", + "cborBytes": [66, 58, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3596, + "sample": { + "_tag": "ByteArray", + "bytearray": "aea9b88fab4486b9" + }, + "cborHex": "48aea9b88fab4486b9", + "cborBytes": [72, 174, 169, 184, 143, 171, 68, 134, 185], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3597, + "sample": { + "_tag": "ByteArray", + "bytearray": "e968fec921ace17689" + }, + "cborHex": "49e968fec921ace17689", + "cborBytes": [73, 233, 104, 254, 201, 33, 172, 225, 118, 137], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3598, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd0400" + }, + "cborHex": "43fd0400", + "cborBytes": [67, 253, 4, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3599, + "sample": { + "_tag": "ByteArray", + "bytearray": "b22b" + }, + "cborHex": "42b22b", + "cborBytes": [66, 178, 43], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3600, + "sample": { + "_tag": "ByteArray", + "bytearray": "042604" + }, + "cborHex": "43042604", + "cborBytes": [67, 4, 38, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3601, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc7cfa" + }, + "cborHex": "43fc7cfa", + "cborBytes": [67, 252, 124, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3602, + "sample": { + "_tag": "ByteArray", + "bytearray": "0265fc" + }, + "cborHex": "430265fc", + "cborBytes": [67, 2, 101, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3603, + "sample": { + "_tag": "ByteArray", + "bytearray": "14e9" + }, + "cborHex": "4214e9", + "cborBytes": [66, 20, 233], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3604, + "sample": { + "_tag": "ByteArray", + "bytearray": "7204fdaf" + }, + "cborHex": "447204fdaf", + "cborBytes": [68, 114, 4, 253, 175], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3605, + "sample": { + "_tag": "ByteArray", + "bytearray": "d305f9" + }, + "cborHex": "43d305f9", + "cborBytes": [67, 211, 5, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3606, + "sample": { + "_tag": "ByteArray", + "bytearray": "56ab" + }, + "cborHex": "4256ab", + "cborBytes": [66, 86, 171], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3607, + "sample": { + "_tag": "ByteArray", + "bytearray": "379fce18f962ea9946" + }, + "cborHex": "49379fce18f962ea9946", + "cborBytes": [73, 55, 159, 206, 24, 249, 98, 234, 153, 70], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3608, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8bb1a03f84dfe" + }, + "cborHex": "47f8bb1a03f84dfe", + "cborBytes": [71, 248, 187, 26, 3, 248, 77, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3609, + "sample": { + "_tag": "ByteArray", + "bytearray": "961e" + }, + "cborHex": "42961e", + "cborBytes": [66, 150, 30], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3610, + "sample": { + "_tag": "ByteArray", + "bytearray": "ae3791" + }, + "cborHex": "43ae3791", + "cborBytes": [67, 174, 55, 145], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3611, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbf98a16067503fdca050004" + }, + "cborHex": "4cfbf98a16067503fdca050004", + "cborBytes": [76, 251, 249, 138, 22, 6, 117, 3, 253, 202, 5, 0, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3612, + "sample": { + "_tag": "ByteArray", + "bytearray": "0703f938" + }, + "cborHex": "440703f938", + "cborBytes": [68, 7, 3, 249, 56], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3613, + "sample": { + "_tag": "ByteArray", + "bytearray": "ecbdea" + }, + "cborHex": "43ecbdea", + "cborBytes": [67, 236, 189, 234], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3614, + "sample": { + "_tag": "ByteArray", + "bytearray": "5711d700" + }, + "cborHex": "445711d700", + "cborBytes": [68, 87, 17, 215, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3615, + "sample": { + "_tag": "ByteArray", + "bytearray": "9361b5cb" + }, + "cborHex": "449361b5cb", + "cborBytes": [68, 147, 97, 181, 203], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3616, + "sample": { + "_tag": "ByteArray", + "bytearray": "0850ce" + }, + "cborHex": "430850ce", + "cborBytes": [67, 8, 80, 206], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3617, + "sample": { + "_tag": "ByteArray", + "bytearray": "477404febefb8307" + }, + "cborHex": "48477404febefb8307", + "cborBytes": [72, 71, 116, 4, 254, 190, 251, 131, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3618, + "sample": { + "_tag": "ByteArray", + "bytearray": "641c6f" + }, + "cborHex": "43641c6f", + "cborBytes": [67, 100, 28, 111], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3619, + "sample": { + "_tag": "ByteArray", + "bytearray": "c68bdadee4a818" + }, + "cborHex": "47c68bdadee4a818", + "cborBytes": [71, 198, 139, 218, 222, 228, 168, 24], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3620, + "sample": { + "_tag": "ByteArray", + "bytearray": "b3a51aa6" + }, + "cborHex": "44b3a51aa6", + "cborBytes": [68, 179, 165, 26, 166], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3621, + "sample": { + "_tag": "ByteArray", + "bytearray": "de409ac5b0c9f92c1070" + }, + "cborHex": "4ade409ac5b0c9f92c1070", + "cborBytes": [74, 222, 64, 154, 197, 176, 201, 249, 44, 16, 112], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3622, + "sample": { + "_tag": "ByteArray", + "bytearray": "360102fbfa2eff" + }, + "cborHex": "47360102fbfa2eff", + "cborBytes": [71, 54, 1, 2, 251, 250, 46, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3623, + "sample": { + "_tag": "ByteArray", + "bytearray": "19bb3d7921de5bfc" + }, + "cborHex": "4819bb3d7921de5bfc", + "cborBytes": [72, 25, 187, 61, 121, 33, 222, 91, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3624, + "sample": { + "_tag": "ByteArray", + "bytearray": "e98b2ed9" + }, + "cborHex": "44e98b2ed9", + "cborBytes": [68, 233, 139, 46, 217], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3625, + "sample": { + "_tag": "ByteArray", + "bytearray": "490004" + }, + "cborHex": "43490004", + "cborBytes": [67, 73, 0, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3626, + "sample": { + "_tag": "ByteArray", + "bytearray": "ef7377474c4413" + }, + "cborHex": "47ef7377474c4413", + "cborBytes": [71, 239, 115, 119, 71, 76, 68, 19], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3627, + "sample": { + "_tag": "ByteArray", + "bytearray": "3f2d067b" + }, + "cborHex": "443f2d067b", + "cborBytes": [68, 63, 45, 6, 123], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3628, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc83eef8" + }, + "cborHex": "44fc83eef8", + "cborBytes": [68, 252, 131, 238, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3629, + "sample": { + "_tag": "ByteArray", + "bytearray": "602134dbb80e1b" + }, + "cborHex": "47602134dbb80e1b", + "cborBytes": [71, 96, 33, 52, 219, 184, 14, 27], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3630, + "sample": { + "_tag": "ByteArray", + "bytearray": "5e2559" + }, + "cborHex": "435e2559", + "cborBytes": [67, 94, 37, 89], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3631, + "sample": { + "_tag": "ByteArray", + "bytearray": "ce4f41be76cf5c29" + }, + "cborHex": "48ce4f41be76cf5c29", + "cborBytes": [72, 206, 79, 65, 190, 118, 207, 92, 41], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3632, + "sample": { + "_tag": "ByteArray", + "bytearray": "05ab" + }, + "cborHex": "4205ab", + "cborBytes": [66, 5, 171], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3633, + "sample": { + "_tag": "ByteArray", + "bytearray": "5d0307ee4c6fff" + }, + "cborHex": "475d0307ee4c6fff", + "cborBytes": [71, 93, 3, 7, 238, 76, 111, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3634, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff0622fb897e6643ff0e" + }, + "cborHex": "4aff0622fb897e6643ff0e", + "cborBytes": [74, 255, 6, 34, 251, 137, 126, 102, 67, 255, 14], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3635, + "sample": { + "_tag": "ByteArray", + "bytearray": "d382" + }, + "cborHex": "42d382", + "cborBytes": [66, 211, 130], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3636, + "sample": { + "_tag": "ByteArray", + "bytearray": "6d609fb329a9abd443464b" + }, + "cborHex": "4b6d609fb329a9abd443464b", + "cborBytes": [75, 109, 96, 159, 179, 41, 169, 171, 212, 67, 70, 75], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3637, + "sample": { + "_tag": "ByteArray", + "bytearray": "6b0e1528ffc5d4f776abac" + }, + "cborHex": "4b6b0e1528ffc5d4f776abac", + "cborBytes": [75, 107, 14, 21, 40, 255, 197, 212, 247, 118, 171, 172], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3638, + "sample": { + "_tag": "ByteArray", + "bytearray": "d09b173d87b8c612663c" + }, + "cborHex": "4ad09b173d87b8c612663c", + "cborBytes": [74, 208, 155, 23, 61, 135, 184, 198, 18, 102, 60], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3639, + "sample": { + "_tag": "ByteArray", + "bytearray": "bcb12e3f98045df1" + }, + "cborHex": "48bcb12e3f98045df1", + "cborBytes": [72, 188, 177, 46, 63, 152, 4, 93, 241], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3640, + "sample": { + "_tag": "ByteArray", + "bytearray": "f017a19cda" + }, + "cborHex": "45f017a19cda", + "cborBytes": [69, 240, 23, 161, 156, 218], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3641, + "sample": { + "_tag": "ByteArray", + "bytearray": "bb00de9c037efa44fb" + }, + "cborHex": "49bb00de9c037efa44fb", + "cborBytes": [73, 187, 0, 222, 156, 3, 126, 250, 68, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3642, + "sample": { + "_tag": "ByteArray", + "bytearray": "03825a" + }, + "cborHex": "4303825a", + "cborBytes": [67, 3, 130, 90], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3643, + "sample": { + "_tag": "ByteArray", + "bytearray": "00311c82bfea67ac93f805" + }, + "cborHex": "4b00311c82bfea67ac93f805", + "cborBytes": [75, 0, 49, 28, 130, 191, 234, 103, 172, 147, 248, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3644, + "sample": { + "_tag": "ByteArray", + "bytearray": "5afdc5" + }, + "cborHex": "435afdc5", + "cborBytes": [67, 90, 253, 197], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3645, + "sample": { + "_tag": "ByteArray", + "bytearray": "95195807af6f7f3d2632" + }, + "cborHex": "4a95195807af6f7f3d2632", + "cborBytes": [74, 149, 25, 88, 7, 175, 111, 127, 61, 38, 50], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3646, + "sample": { + "_tag": "ByteArray", + "bytearray": "d2a28cd21fbd781f" + }, + "cborHex": "48d2a28cd21fbd781f", + "cborBytes": [72, 210, 162, 140, 210, 31, 189, 120, 31], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3647, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe580560" + }, + "cborHex": "44fe580560", + "cborBytes": [68, 254, 88, 5, 96], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3648, + "sample": { + "_tag": "ByteArray", + "bytearray": "7606" + }, + "cborHex": "427606", + "cborBytes": [66, 118, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3649, + "sample": { + "_tag": "ByteArray", + "bytearray": "45156be33c6fd3" + }, + "cborHex": "4745156be33c6fd3", + "cborBytes": [71, 69, 21, 107, 227, 60, 111, 211], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3650, + "sample": { + "_tag": "ByteArray", + "bytearray": "0155a105f9a1f903" + }, + "cborHex": "480155a105f9a1f903", + "cborBytes": [72, 1, 85, 161, 5, 249, 161, 249, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3651, + "sample": { + "_tag": "ByteArray", + "bytearray": "6baaa6" + }, + "cborHex": "436baaa6", + "cborBytes": [67, 107, 170, 166], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3652, + "sample": { + "_tag": "ByteArray", + "bytearray": "062acbdbfad0fc3673" + }, + "cborHex": "49062acbdbfad0fc3673", + "cborBytes": [73, 6, 42, 203, 219, 250, 208, 252, 54, 115], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3653, + "sample": { + "_tag": "ByteArray", + "bytearray": "0202fd0006fc0a19fe0705" + }, + "cborHex": "4b0202fd0006fc0a19fe0705", + "cborBytes": [75, 2, 2, 253, 0, 6, 252, 10, 25, 254, 7, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3654, + "sample": { + "_tag": "ByteArray", + "bytearray": "cafec1" + }, + "cborHex": "43cafec1", + "cborBytes": [67, 202, 254, 193], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3655, + "sample": { + "_tag": "ByteArray", + "bytearray": "05eaeada308d05830a27" + }, + "cborHex": "4a05eaeada308d05830a27", + "cborBytes": [74, 5, 234, 234, 218, 48, 141, 5, 131, 10, 39], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3656, + "sample": { + "_tag": "ByteArray", + "bytearray": "8fef8e" + }, + "cborHex": "438fef8e", + "cborBytes": [67, 143, 239, 142], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3657, + "sample": { + "_tag": "ByteArray", + "bytearray": "e3dfd98d9d" + }, + "cborHex": "45e3dfd98d9d", + "cborBytes": [69, 227, 223, 217, 141, 157], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3658, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc36a7be7cf3ce1ea93f1cc7" + }, + "cborHex": "4cfc36a7be7cf3ce1ea93f1cc7", + "cborBytes": [76, 252, 54, 167, 190, 124, 243, 206, 30, 169, 63, 28, 199], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3659, + "sample": { + "_tag": "ByteArray", + "bytearray": "ef0faf" + }, + "cborHex": "43ef0faf", + "cborBytes": [67, 239, 15, 175], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3660, + "sample": { + "_tag": "ByteArray", + "bytearray": "954462949d44" + }, + "cborHex": "46954462949d44", + "cborBytes": [70, 149, 68, 98, 148, 157, 68], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3661, + "sample": { + "_tag": "ByteArray", + "bytearray": "0dd6" + }, + "cborHex": "420dd6", + "cborBytes": [66, 13, 214], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3662, + "sample": { + "_tag": "ByteArray", + "bytearray": "229cd6da" + }, + "cborHex": "44229cd6da", + "cborBytes": [68, 34, 156, 214, 218], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3663, + "sample": { + "_tag": "ByteArray", + "bytearray": "14b9dc971dc1" + }, + "cborHex": "4614b9dc971dc1", + "cborBytes": [70, 20, 185, 220, 151, 29, 193], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3664, + "sample": { + "_tag": "ByteArray", + "bytearray": "e250" + }, + "cborHex": "42e250", + "cborBytes": [66, 226, 80], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3665, + "sample": { + "_tag": "ByteArray", + "bytearray": "135b04a0" + }, + "cborHex": "44135b04a0", + "cborBytes": [68, 19, 91, 4, 160], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3666, + "sample": { + "_tag": "ByteArray", + "bytearray": "0605" + }, + "cborHex": "420605", + "cborBytes": [66, 6, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3667, + "sample": { + "_tag": "ByteArray", + "bytearray": "67ee2ea1f7436fd210" + }, + "cborHex": "4967ee2ea1f7436fd210", + "cborBytes": [73, 103, 238, 46, 161, 247, 67, 111, 210, 16], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3668, + "sample": { + "_tag": "ByteArray", + "bytearray": "97c9c20a" + }, + "cborHex": "4497c9c20a", + "cborBytes": [68, 151, 201, 194, 10], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3669, + "sample": { + "_tag": "ByteArray", + "bytearray": "d31ccc22baff" + }, + "cborHex": "46d31ccc22baff", + "cborBytes": [70, 211, 28, 204, 34, 186, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3670, + "sample": { + "_tag": "ByteArray", + "bytearray": "092d" + }, + "cborHex": "42092d", + "cborBytes": [66, 9, 45], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3671, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd318603" + }, + "cborHex": "44fd318603", + "cborBytes": [68, 253, 49, 134, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3672, + "sample": { + "_tag": "ByteArray", + "bytearray": "785364258ccad4" + }, + "cborHex": "47785364258ccad4", + "cborBytes": [71, 120, 83, 100, 37, 140, 202, 212], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3673, + "sample": { + "_tag": "ByteArray", + "bytearray": "dc2465" + }, + "cborHex": "43dc2465", + "cborBytes": [67, 220, 36, 101], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3674, + "sample": { + "_tag": "ByteArray", + "bytearray": "677685d7" + }, + "cborHex": "44677685d7", + "cborBytes": [68, 103, 118, 133, 215], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3675, + "sample": { + "_tag": "ByteArray", + "bytearray": "589aa5d8d7f4e68b3e48" + }, + "cborHex": "4a589aa5d8d7f4e68b3e48", + "cborBytes": [74, 88, 154, 165, 216, 215, 244, 230, 139, 62, 72], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3676, + "sample": { + "_tag": "ByteArray", + "bytearray": "3703eff30a" + }, + "cborHex": "453703eff30a", + "cborBytes": [69, 55, 3, 239, 243, 10], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3677, + "sample": { + "_tag": "ByteArray", + "bytearray": "f807ef7c02fffb09" + }, + "cborHex": "48f807ef7c02fffb09", + "cborBytes": [72, 248, 7, 239, 124, 2, 255, 251, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3678, + "sample": { + "_tag": "ByteArray", + "bytearray": "dad20377cc06dff82e03" + }, + "cborHex": "4adad20377cc06dff82e03", + "cborBytes": [74, 218, 210, 3, 119, 204, 6, 223, 248, 46, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3679, + "sample": { + "_tag": "ByteArray", + "bytearray": "73f26b4b544f7d64543f" + }, + "cborHex": "4a73f26b4b544f7d64543f", + "cborBytes": [74, 115, 242, 107, 75, 84, 79, 125, 100, 84, 63], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3680, + "sample": { + "_tag": "ByteArray", + "bytearray": "2a3b2cbbc36464" + }, + "cborHex": "472a3b2cbbc36464", + "cborBytes": [71, 42, 59, 44, 187, 195, 100, 100], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3681, + "sample": { + "_tag": "ByteArray", + "bytearray": "5c1f6e9a47b6e07e7b19" + }, + "cborHex": "4a5c1f6e9a47b6e07e7b19", + "cborBytes": [74, 92, 31, 110, 154, 71, 182, 224, 126, 123, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3682, + "sample": { + "_tag": "ByteArray", + "bytearray": "0706b3aecfe11b55f3" + }, + "cborHex": "490706b3aecfe11b55f3", + "cborBytes": [73, 7, 6, 179, 174, 207, 225, 27, 85, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3683, + "sample": { + "_tag": "ByteArray", + "bytearray": "5efcc7" + }, + "cborHex": "435efcc7", + "cborBytes": [67, 94, 252, 199], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3684, + "sample": { + "_tag": "ByteArray", + "bytearray": "6012277dbc00b6" + }, + "cborHex": "476012277dbc00b6", + "cborBytes": [71, 96, 18, 39, 125, 188, 0, 182], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3685, + "sample": { + "_tag": "ByteArray", + "bytearray": "df7b25dcf5fb23236a8c" + }, + "cborHex": "4adf7b25dcf5fb23236a8c", + "cborBytes": [74, 223, 123, 37, 220, 245, 251, 35, 35, 106, 140], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3686, + "sample": { + "_tag": "ByteArray", + "bytearray": "dc067454" + }, + "cborHex": "44dc067454", + "cborBytes": [68, 220, 6, 116, 84], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3687, + "sample": { + "_tag": "ByteArray", + "bytearray": "4501ffff" + }, + "cborHex": "444501ffff", + "cborBytes": [68, 69, 1, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3688, + "sample": { + "_tag": "ByteArray", + "bytearray": "240ec47c517786bfac767d" + }, + "cborHex": "4b240ec47c517786bfac767d", + "cborBytes": [75, 36, 14, 196, 124, 81, 119, 134, 191, 172, 118, 125], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3689, + "sample": { + "_tag": "ByteArray", + "bytearray": "e2f517ae5414d3fcf7" + }, + "cborHex": "49e2f517ae5414d3fcf7", + "cborBytes": [73, 226, 245, 23, 174, 84, 20, 211, 252, 247], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3690, + "sample": { + "_tag": "ByteArray", + "bytearray": "9b69c55e0c55ab25bd43" + }, + "cborHex": "4a9b69c55e0c55ab25bd43", + "cborBytes": [74, 155, 105, 197, 94, 12, 85, 171, 37, 189, 67], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3691, + "sample": { + "_tag": "ByteArray", + "bytearray": "c329" + }, + "cborHex": "42c329", + "cborBytes": [66, 195, 41], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3692, + "sample": { + "_tag": "ByteArray", + "bytearray": "f4b462" + }, + "cborHex": "43f4b462", + "cborBytes": [67, 244, 180, 98], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3693, + "sample": { + "_tag": "ByteArray", + "bytearray": "7c2e90da7f6fbf7c136e88f0" + }, + "cborHex": "4c7c2e90da7f6fbf7c136e88f0", + "cborBytes": [76, 124, 46, 144, 218, 127, 111, 191, 124, 19, 110, 136, 240], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3694, + "sample": { + "_tag": "ByteArray", + "bytearray": "c1a928eca3" + }, + "cborHex": "45c1a928eca3", + "cborBytes": [69, 193, 169, 40, 236, 163], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3695, + "sample": { + "_tag": "ByteArray", + "bytearray": "069c" + }, + "cborHex": "42069c", + "cborBytes": [66, 6, 156], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3696, + "sample": { + "_tag": "ByteArray", + "bytearray": "1704034d04af04fd01070734" + }, + "cborHex": "4c1704034d04af04fd01070734", + "cborBytes": [76, 23, 4, 3, 77, 4, 175, 4, 253, 1, 7, 7, 52], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3697, + "sample": { + "_tag": "ByteArray", + "bytearray": "b53102020101020103e8" + }, + "cborHex": "4ab53102020101020103e8", + "cborBytes": [74, 181, 49, 2, 2, 1, 1, 2, 1, 3, 232], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3698, + "sample": { + "_tag": "ByteArray", + "bytearray": "fffcba00010f69fc" + }, + "cborHex": "48fffcba00010f69fc", + "cborBytes": [72, 255, 252, 186, 0, 1, 15, 105, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3699, + "sample": { + "_tag": "ByteArray", + "bytearray": "ebebe7a0070fd9c122" + }, + "cborHex": "49ebebe7a0070fd9c122", + "cborBytes": [73, 235, 235, 231, 160, 7, 15, 217, 193, 34], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3700, + "sample": { + "_tag": "ByteArray", + "bytearray": "040a" + }, + "cborHex": "42040a", + "cborBytes": [66, 4, 10], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3701, + "sample": { + "_tag": "ByteArray", + "bytearray": "9309dc4a" + }, + "cborHex": "449309dc4a", + "cborBytes": [68, 147, 9, 220, 74], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3702, + "sample": { + "_tag": "ByteArray", + "bytearray": "ac2d" + }, + "cborHex": "42ac2d", + "cborBytes": [66, 172, 45], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3703, + "sample": { + "_tag": "ByteArray", + "bytearray": "a4adfbfa99" + }, + "cborHex": "45a4adfbfa99", + "cborBytes": [69, 164, 173, 251, 250, 153], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3704, + "sample": { + "_tag": "ByteArray", + "bytearray": "21dade" + }, + "cborHex": "4321dade", + "cborBytes": [67, 33, 218, 222], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3705, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb84fc68fb0004" + }, + "cborHex": "47fb84fc68fb0004", + "cborBytes": [71, 251, 132, 252, 104, 251, 0, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3706, + "sample": { + "_tag": "ByteArray", + "bytearray": "0104f9680760" + }, + "cborHex": "460104f9680760", + "cborBytes": [70, 1, 4, 249, 104, 7, 96], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3707, + "sample": { + "_tag": "ByteArray", + "bytearray": "e4ecbf7c5399d491" + }, + "cborHex": "48e4ecbf7c5399d491", + "cborBytes": [72, 228, 236, 191, 124, 83, 153, 212, 145], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3708, + "sample": { + "_tag": "ByteArray", + "bytearray": "ac010702b71bc670040184" + }, + "cborHex": "4bac010702b71bc670040184", + "cborBytes": [75, 172, 1, 7, 2, 183, 27, 198, 112, 4, 1, 132], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3709, + "sample": { + "_tag": "ByteArray", + "bytearray": "55fd68efc3efe2" + }, + "cborHex": "4755fd68efc3efe2", + "cborBytes": [71, 85, 253, 104, 239, 195, 239, 226], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3710, + "sample": { + "_tag": "ByteArray", + "bytearray": "b0abf9dd7b046e48" + }, + "cborHex": "48b0abf9dd7b046e48", + "cborBytes": [72, 176, 171, 249, 221, 123, 4, 110, 72], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3711, + "sample": { + "_tag": "ByteArray", + "bytearray": "ec" + }, + "cborHex": "41ec", + "cborBytes": [65, 236], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3712, + "sample": { + "_tag": "ByteArray", + "bytearray": "d4fb01fa" + }, + "cborHex": "44d4fb01fa", + "cborBytes": [68, 212, 251, 1, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3713, + "sample": { + "_tag": "ByteArray", + "bytearray": "07ff06d968fa059afe" + }, + "cborHex": "4907ff06d968fa059afe", + "cborBytes": [73, 7, 255, 6, 217, 104, 250, 5, 154, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3714, + "sample": { + "_tag": "ByteArray", + "bytearray": "5d63b70854282cdd2181bd" + }, + "cborHex": "4b5d63b70854282cdd2181bd", + "cborBytes": [75, 93, 99, 183, 8, 84, 40, 44, 221, 33, 129, 189], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3715, + "sample": { + "_tag": "ByteArray", + "bytearray": "1f06fffdbb32" + }, + "cborHex": "461f06fffdbb32", + "cborBytes": [70, 31, 6, 255, 253, 187, 50], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3716, + "sample": { + "_tag": "ByteArray", + "bytearray": "454c54f91d87c18ef4075f" + }, + "cborHex": "4b454c54f91d87c18ef4075f", + "cborBytes": [75, 69, 76, 84, 249, 29, 135, 193, 142, 244, 7, 95], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3717, + "sample": { + "_tag": "ByteArray", + "bytearray": "d00cfe261434" + }, + "cborHex": "46d00cfe261434", + "cborBytes": [70, 208, 12, 254, 38, 20, 52], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3718, + "sample": { + "_tag": "ByteArray", + "bytearray": "d9e7a25ee1" + }, + "cborHex": "45d9e7a25ee1", + "cborBytes": [69, 217, 231, 162, 94, 225], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3719, + "sample": { + "_tag": "ByteArray", + "bytearray": "00663b" + }, + "cborHex": "4300663b", + "cborBytes": [67, 0, 102, 59], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3720, + "sample": { + "_tag": "ByteArray", + "bytearray": "6bdd7a" + }, + "cborHex": "436bdd7a", + "cborBytes": [67, 107, 221, 122], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3721, + "sample": { + "_tag": "ByteArray", + "bytearray": "2dd4" + }, + "cborHex": "422dd4", + "cborBytes": [66, 45, 212], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3722, + "sample": { + "_tag": "ByteArray", + "bytearray": "b4ad" + }, + "cborHex": "42b4ad", + "cborBytes": [66, 180, 173], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3723, + "sample": { + "_tag": "ByteArray", + "bytearray": "49c8483ffc06061a" + }, + "cborHex": "4849c8483ffc06061a", + "cborBytes": [72, 73, 200, 72, 63, 252, 6, 6, 26], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3724, + "sample": { + "_tag": "ByteArray", + "bytearray": "a9e905" + }, + "cborHex": "43a9e905", + "cborBytes": [67, 169, 233, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3725, + "sample": { + "_tag": "ByteArray", + "bytearray": "fad5fa42fff8e347d611b4" + }, + "cborHex": "4bfad5fa42fff8e347d611b4", + "cborBytes": [75, 250, 213, 250, 66, 255, 248, 227, 71, 214, 17, 180], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3726, + "sample": { + "_tag": "ByteArray", + "bytearray": "c508" + }, + "cborHex": "42c508", + "cborBytes": [66, 197, 8], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3727, + "sample": { + "_tag": "ByteArray", + "bytearray": "0425030fd69c04" + }, + "cborHex": "470425030fd69c04", + "cborBytes": [71, 4, 37, 3, 15, 214, 156, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3728, + "sample": { + "_tag": "ByteArray", + "bytearray": "233d0cdb178ac2ded4c0" + }, + "cborHex": "4a233d0cdb178ac2ded4c0", + "cborBytes": [74, 35, 61, 12, 219, 23, 138, 194, 222, 212, 192], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3729, + "sample": { + "_tag": "ByteArray", + "bytearray": "4dd4e84905ec6dec" + }, + "cborHex": "484dd4e84905ec6dec", + "cborBytes": [72, 77, 212, 232, 73, 5, 236, 109, 236], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3730, + "sample": { + "_tag": "ByteArray", + "bytearray": "fafa" + }, + "cborHex": "42fafa", + "cborBytes": [66, 250, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3731, + "sample": { + "_tag": "ByteArray", + "bytearray": "4cc25927fd4b3397a1a1be" + }, + "cborHex": "4b4cc25927fd4b3397a1a1be", + "cborBytes": [75, 76, 194, 89, 39, 253, 75, 51, 151, 161, 161, 190], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3732, + "sample": { + "_tag": "ByteArray", + "bytearray": "006e076e068c000201ca" + }, + "cborHex": "4a006e076e068c000201ca", + "cborBytes": [74, 0, 110, 7, 110, 6, 140, 0, 2, 1, 202], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3733, + "sample": { + "_tag": "ByteArray", + "bytearray": "91effe04" + }, + "cborHex": "4491effe04", + "cborBytes": [68, 145, 239, 254, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3734, + "sample": { + "_tag": "ByteArray", + "bytearray": "8cb5ee332c3c296c" + }, + "cborHex": "488cb5ee332c3c296c", + "cborBytes": [72, 140, 181, 238, 51, 44, 60, 41, 108], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3735, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcfa05009c0005e700" + }, + "cborHex": "49fcfa05009c0005e700", + "cborBytes": [73, 252, 250, 5, 0, 156, 0, 5, 231, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3736, + "sample": { + "_tag": "ByteArray", + "bytearray": "4b" + }, + "cborHex": "414b", + "cborBytes": [65, 75], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3737, + "sample": { + "_tag": "ByteArray", + "bytearray": "e407fd05ccfb" + }, + "cborHex": "46e407fd05ccfb", + "cborBytes": [70, 228, 7, 253, 5, 204, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3738, + "sample": { + "_tag": "ByteArray", + "bytearray": "e33d0f2d75b2a304b310cac4" + }, + "cborHex": "4ce33d0f2d75b2a304b310cac4", + "cborBytes": [76, 227, 61, 15, 45, 117, 178, 163, 4, 179, 16, 202, 196], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3739, + "sample": { + "_tag": "ByteArray", + "bytearray": "96fc" + }, + "cborHex": "4296fc", + "cborBytes": [66, 150, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3740, + "sample": { + "_tag": "ByteArray", + "bytearray": "015e" + }, + "cborHex": "42015e", + "cborBytes": [66, 1, 94], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3741, + "sample": { + "_tag": "ByteArray", + "bytearray": "062b0006010601" + }, + "cborHex": "47062b0006010601", + "cborBytes": [71, 6, 43, 0, 6, 1, 6, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3742, + "sample": { + "_tag": "ByteArray", + "bytearray": "6a182a03023d" + }, + "cborHex": "466a182a03023d", + "cborBytes": [70, 106, 24, 42, 3, 2, 61], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3743, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa990724fe0704ff01036f54" + }, + "cborHex": "4cfa990724fe0704ff01036f54", + "cborBytes": [76, 250, 153, 7, 36, 254, 7, 4, 255, 1, 3, 111, 84], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3744, + "sample": { + "_tag": "ByteArray", + "bytearray": "77165ce2" + }, + "cborHex": "4477165ce2", + "cborBytes": [68, 119, 22, 92, 226], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3745, + "sample": { + "_tag": "ByteArray", + "bytearray": "2efdc000023c" + }, + "cborHex": "462efdc000023c", + "cborBytes": [70, 46, 253, 192, 0, 2, 60], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3746, + "sample": { + "_tag": "ByteArray", + "bytearray": "78009e04019cd401" + }, + "cborHex": "4878009e04019cd401", + "cborBytes": [72, 120, 0, 158, 4, 1, 156, 212, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3747, + "sample": { + "_tag": "ByteArray", + "bytearray": "bb" + }, + "cborHex": "41bb", + "cborBytes": [65, 187], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3748, + "sample": { + "_tag": "ByteArray", + "bytearray": "0f8164501d5e66" + }, + "cborHex": "470f8164501d5e66", + "cborBytes": [71, 15, 129, 100, 80, 29, 94, 102], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3749, + "sample": { + "_tag": "ByteArray", + "bytearray": "81a102947c" + }, + "cborHex": "4581a102947c", + "cborBytes": [69, 129, 161, 2, 148, 124], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3750, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd7102730400df05060007" + }, + "cborHex": "4bfd7102730400df05060007", + "cborBytes": [75, 253, 113, 2, 115, 4, 0, 223, 5, 6, 0, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3751, + "sample": { + "_tag": "ByteArray", + "bytearray": "c15002" + }, + "cborHex": "43c15002", + "cborBytes": [67, 193, 80, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3752, + "sample": { + "_tag": "ByteArray", + "bytearray": "c205cae5" + }, + "cborHex": "44c205cae5", + "cborBytes": [68, 194, 5, 202, 229], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3753, + "sample": { + "_tag": "ByteArray", + "bytearray": "07f809040604db01" + }, + "cborHex": "4807f809040604db01", + "cborBytes": [72, 7, 248, 9, 4, 6, 4, 219, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3754, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9f8fb63b402062106" + }, + "cborHex": "49f9f8fb63b402062106", + "cborBytes": [73, 249, 248, 251, 99, 180, 2, 6, 33, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3755, + "sample": { + "_tag": "ByteArray", + "bytearray": "310ae2fb511fbc41b9" + }, + "cborHex": "49310ae2fb511fbc41b9", + "cborBytes": [73, 49, 10, 226, 251, 81, 31, 188, 65, 185], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3756, + "sample": { + "_tag": "ByteArray", + "bytearray": "24353f59296fb9ada80b" + }, + "cborHex": "4a24353f59296fb9ada80b", + "cborBytes": [74, 36, 53, 63, 89, 41, 111, 185, 173, 168, 11], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3757, + "sample": { + "_tag": "ByteArray", + "bytearray": "038f62e85f" + }, + "cborHex": "45038f62e85f", + "cborBytes": [69, 3, 143, 98, 232, 95], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3758, + "sample": { + "_tag": "ByteArray", + "bytearray": "3c01" + }, + "cborHex": "423c01", + "cborBytes": [66, 60, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3759, + "sample": { + "_tag": "ByteArray", + "bytearray": "00fbfdfe50eefdfc58ca" + }, + "cborHex": "4a00fbfdfe50eefdfc58ca", + "cborBytes": [74, 0, 251, 253, 254, 80, 238, 253, 252, 88, 202], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3760, + "sample": { + "_tag": "ByteArray", + "bytearray": "5909" + }, + "cborHex": "425909", + "cborBytes": [66, 89, 9], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3761, + "sample": { + "_tag": "ByteArray", + "bytearray": "0307f8b5f8a2439f010612f9" + }, + "cborHex": "4c0307f8b5f8a2439f010612f9", + "cborBytes": [76, 3, 7, 248, 181, 248, 162, 67, 159, 1, 6, 18, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3762, + "sample": { + "_tag": "ByteArray", + "bytearray": "e80204cebe04eed50653" + }, + "cborHex": "4ae80204cebe04eed50653", + "cborBytes": [74, 232, 2, 4, 206, 190, 4, 238, 213, 6, 83], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3763, + "sample": { + "_tag": "ByteArray", + "bytearray": "6701450604fd050442bf" + }, + "cborHex": "4a6701450604fd050442bf", + "cborBytes": [74, 103, 1, 69, 6, 4, 253, 5, 4, 66, 191], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3764, + "sample": { + "_tag": "ByteArray", + "bytearray": "042b3340" + }, + "cborHex": "44042b3340", + "cborBytes": [68, 4, 43, 51, 64], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3765, + "sample": { + "_tag": "ByteArray", + "bytearray": "84f6" + }, + "cborHex": "4284f6", + "cborBytes": [66, 132, 246], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3766, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc0200fe" + }, + "cborHex": "44fc0200fe", + "cborBytes": [68, 252, 2, 0, 254], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3767, + "sample": { + "_tag": "ByteArray", + "bytearray": "650ed8efd1aba7fa56982b" + }, + "cborHex": "4b650ed8efd1aba7fa56982b", + "cborBytes": [75, 101, 14, 216, 239, 209, 171, 167, 250, 86, 152, 43], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3768, + "sample": { + "_tag": "ByteArray", + "bytearray": "f05db780ba9b4dbf49313272" + }, + "cborHex": "4cf05db780ba9b4dbf49313272", + "cborBytes": [76, 240, 93, 183, 128, 186, 155, 77, 191, 73, 49, 50, 114], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3769, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbd7bfe7" + }, + "cborHex": "44fbd7bfe7", + "cborBytes": [68, 251, 215, 191, 231], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3770, + "sample": { + "_tag": "ByteArray", + "bytearray": "bcf9fafb60ff4dfb" + }, + "cborHex": "48bcf9fafb60ff4dfb", + "cborBytes": [72, 188, 249, 250, 251, 96, 255, 77, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3771, + "sample": { + "_tag": "ByteArray", + "bytearray": "d490ba" + }, + "cborHex": "43d490ba", + "cborBytes": [67, 212, 144, 186], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3772, + "sample": { + "_tag": "ByteArray", + "bytearray": "7636" + }, + "cborHex": "427636", + "cborBytes": [66, 118, 54], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3773, + "sample": { + "_tag": "ByteArray", + "bytearray": "6560" + }, + "cborHex": "426560", + "cborBytes": [66, 101, 96], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3774, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcfd9a" + }, + "cborHex": "43fcfd9a", + "cborBytes": [67, 252, 253, 154], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3775, + "sample": { + "_tag": "ByteArray", + "bytearray": "f2f47c8e7b488b" + }, + "cborHex": "47f2f47c8e7b488b", + "cborBytes": [71, 242, 244, 124, 142, 123, 72, 139], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3776, + "sample": { + "_tag": "ByteArray", + "bytearray": "519b70eb0ea58ee9" + }, + "cborHex": "48519b70eb0ea58ee9", + "cborBytes": [72, 81, 155, 112, 235, 14, 165, 142, 233], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3777, + "sample": { + "_tag": "ByteArray", + "bytearray": "d68706f65a" + }, + "cborHex": "45d68706f65a", + "cborBytes": [69, 214, 135, 6, 246, 90], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3778, + "sample": { + "_tag": "ByteArray", + "bytearray": "0c4b99cc6396808607f1" + }, + "cborHex": "4a0c4b99cc6396808607f1", + "cborBytes": [74, 12, 75, 153, 204, 99, 150, 128, 134, 7, 241], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3779, + "sample": { + "_tag": "ByteArray", + "bytearray": "82b1ee89fdfc255d49" + }, + "cborHex": "4982b1ee89fdfc255d49", + "cborBytes": [73, 130, 177, 238, 137, 253, 252, 37, 93, 73], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3780, + "sample": { + "_tag": "ByteArray", + "bytearray": "00374405" + }, + "cborHex": "4400374405", + "cborBytes": [68, 0, 55, 68, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3781, + "sample": { + "_tag": "ByteArray", + "bytearray": "b5f8" + }, + "cborHex": "42b5f8", + "cborBytes": [66, 181, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3782, + "sample": { + "_tag": "ByteArray", + "bytearray": "81c3c1cea352af094020ca" + }, + "cborHex": "4b81c3c1cea352af094020ca", + "cborBytes": [75, 129, 195, 193, 206, 163, 82, 175, 9, 64, 32, 202], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3783, + "sample": { + "_tag": "ByteArray", + "bytearray": "0506fb24" + }, + "cborHex": "440506fb24", + "cborBytes": [68, 5, 6, 251, 36], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3784, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb075b" + }, + "cborHex": "43fb075b", + "cborBytes": [67, 251, 7, 91], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3785, + "sample": { + "_tag": "ByteArray", + "bytearray": "8927be1b977398" + }, + "cborHex": "478927be1b977398", + "cborBytes": [71, 137, 39, 190, 27, 151, 115, 152], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3786, + "sample": { + "_tag": "ByteArray", + "bytearray": "e2d4034413" + }, + "cborHex": "45e2d4034413", + "cborBytes": [69, 226, 212, 3, 68, 19], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3787, + "sample": { + "_tag": "ByteArray", + "bytearray": "1f77b8165c" + }, + "cborHex": "451f77b8165c", + "cborBytes": [69, 31, 119, 184, 22, 92], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3788, + "sample": { + "_tag": "ByteArray", + "bytearray": "0705fed9fc070d01e2306c" + }, + "cborHex": "4b0705fed9fc070d01e2306c", + "cborBytes": [75, 7, 5, 254, 217, 252, 7, 13, 1, 226, 48, 108], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3789, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb0706" + }, + "cborHex": "43fb0706", + "cborBytes": [67, 251, 7, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3790, + "sample": { + "_tag": "ByteArray", + "bytearray": "4002f448" + }, + "cborHex": "444002f448", + "cborBytes": [68, 64, 2, 244, 72], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3791, + "sample": { + "_tag": "ByteArray", + "bytearray": "c1a9482e" + }, + "cborHex": "44c1a9482e", + "cborBytes": [68, 193, 169, 72, 46], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3792, + "sample": { + "_tag": "ByteArray", + "bytearray": "9ffaf9a8b1160101fa02" + }, + "cborHex": "4a9ffaf9a8b1160101fa02", + "cborBytes": [74, 159, 250, 249, 168, 177, 22, 1, 1, 250, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3793, + "sample": { + "_tag": "ByteArray", + "bytearray": "f90306" + }, + "cborHex": "43f90306", + "cborBytes": [67, 249, 3, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3794, + "sample": { + "_tag": "ByteArray", + "bytearray": "7e64c5e297a090b363bd4eb9" + }, + "cborHex": "4c7e64c5e297a090b363bd4eb9", + "cborBytes": [76, 126, 100, 197, 226, 151, 160, 144, 179, 99, 189, 78, 185], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3795, + "sample": { + "_tag": "ByteArray", + "bytearray": "0284" + }, + "cborHex": "420284", + "cborBytes": [66, 2, 132], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3796, + "sample": { + "_tag": "ByteArray", + "bytearray": "ac3b9d75efcb9ba16d" + }, + "cborHex": "49ac3b9d75efcb9ba16d", + "cborBytes": [73, 172, 59, 157, 117, 239, 203, 155, 161, 109], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3797, + "sample": { + "_tag": "ByteArray", + "bytearray": "36f92b53" + }, + "cborHex": "4436f92b53", + "cborBytes": [68, 54, 249, 43, 83], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3798, + "sample": { + "_tag": "ByteArray", + "bytearray": "3d80" + }, + "cborHex": "423d80", + "cborBytes": [66, 61, 128], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3799, + "sample": { + "_tag": "ByteArray", + "bytearray": "a003fcb787cf060de200fafc" + }, + "cborHex": "4ca003fcb787cf060de200fafc", + "cborBytes": [76, 160, 3, 252, 183, 135, 207, 6, 13, 226, 0, 250, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3800, + "sample": { + "_tag": "ByteArray", + "bytearray": "59fad8ef17" + }, + "cborHex": "4559fad8ef17", + "cborBytes": [69, 89, 250, 216, 239, 23], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3801, + "sample": { + "_tag": "ByteArray", + "bytearray": "45e6c9" + }, + "cborHex": "4345e6c9", + "cborBytes": [67, 69, 230, 201], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3802, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff452095f9aef9fb" + }, + "cborHex": "48ff452095f9aef9fb", + "cborBytes": [72, 255, 69, 32, 149, 249, 174, 249, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3803, + "sample": { + "_tag": "ByteArray", + "bytearray": "124ed8d1" + }, + "cborHex": "44124ed8d1", + "cborBytes": [68, 18, 78, 216, 209], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3804, + "sample": { + "_tag": "ByteArray", + "bytearray": "e006" + }, + "cborHex": "42e006", + "cborBytes": [66, 224, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3805, + "sample": { + "_tag": "ByteArray", + "bytearray": "e450ea4f26c3cb63461e" + }, + "cborHex": "4ae450ea4f26c3cb63461e", + "cborBytes": [74, 228, 80, 234, 79, 38, 195, 203, 99, 70, 30], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3806, + "sample": { + "_tag": "ByteArray", + "bytearray": "9b08efa0" + }, + "cborHex": "449b08efa0", + "cborBytes": [68, 155, 8, 239, 160], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3807, + "sample": { + "_tag": "ByteArray", + "bytearray": "f80649" + }, + "cborHex": "43f80649", + "cborBytes": [67, 248, 6, 73], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3808, + "sample": { + "_tag": "ByteArray", + "bytearray": "0b762d1644d446d798388571" + }, + "cborHex": "4c0b762d1644d446d798388571", + "cborBytes": [76, 11, 118, 45, 22, 68, 212, 70, 215, 152, 56, 133, 113], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3809, + "sample": { + "_tag": "ByteArray", + "bytearray": "020405" + }, + "cborHex": "43020405", + "cborBytes": [67, 2, 4, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3810, + "sample": { + "_tag": "ByteArray", + "bytearray": "47587125" + }, + "cborHex": "4447587125", + "cborBytes": [68, 71, 88, 113, 37], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3811, + "sample": { + "_tag": "ByteArray", + "bytearray": "6b0207" + }, + "cborHex": "436b0207", + "cborBytes": [67, 107, 2, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3812, + "sample": { + "_tag": "ByteArray", + "bytearray": "39" + }, + "cborHex": "4139", + "cborBytes": [65, 57], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3813, + "sample": { + "_tag": "ByteArray", + "bytearray": "00047c" + }, + "cborHex": "4300047c", + "cborBytes": [67, 0, 4, 124], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3814, + "sample": { + "_tag": "ByteArray", + "bytearray": "55ae86" + }, + "cborHex": "4355ae86", + "cborBytes": [67, 85, 174, 134], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3815, + "sample": { + "_tag": "ByteArray", + "bytearray": "0119" + }, + "cborHex": "420119", + "cborBytes": [66, 1, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3816, + "sample": { + "_tag": "ByteArray", + "bytearray": "aa214842cee617da496b5442" + }, + "cborHex": "4caa214842cee617da496b5442", + "cborBytes": [76, 170, 33, 72, 66, 206, 230, 23, 218, 73, 107, 84, 66], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3817, + "sample": { + "_tag": "ByteArray", + "bytearray": "05c707fc" + }, + "cborHex": "4405c707fc", + "cborBytes": [68, 5, 199, 7, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3818, + "sample": { + "_tag": "ByteArray", + "bytearray": "9430753aea131835" + }, + "cborHex": "489430753aea131835", + "cborBytes": [72, 148, 48, 117, 58, 234, 19, 24, 53], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3819, + "sample": { + "_tag": "ByteArray", + "bytearray": "02d7" + }, + "cborHex": "4202d7", + "cborBytes": [66, 2, 215], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3820, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbce417e0ca32b" + }, + "cborHex": "47fbce417e0ca32b", + "cborBytes": [71, 251, 206, 65, 126, 12, 163, 43], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3821, + "sample": { + "_tag": "ByteArray", + "bytearray": "24b921e54f" + }, + "cborHex": "4524b921e54f", + "cborBytes": [69, 36, 185, 33, 229, 79], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3822, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe894c7d84" + }, + "cborHex": "45fe894c7d84", + "cborBytes": [69, 254, 137, 76, 125, 132], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3823, + "sample": { + "_tag": "ByteArray", + "bytearray": "0e1ff091db32" + }, + "cborHex": "460e1ff091db32", + "cborBytes": [70, 14, 31, 240, 145, 219, 50], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3824, + "sample": { + "_tag": "ByteArray", + "bytearray": "5c030306" + }, + "cborHex": "445c030306", + "cborBytes": [68, 92, 3, 3, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3825, + "sample": { + "_tag": "ByteArray", + "bytearray": "7f531dba8a33404bd922" + }, + "cborHex": "4a7f531dba8a33404bd922", + "cborBytes": [74, 127, 83, 29, 186, 138, 51, 64, 75, 217, 34], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3826, + "sample": { + "_tag": "ByteArray", + "bytearray": "4eda1f3690e92f46fb7ca6" + }, + "cborHex": "4b4eda1f3690e92f46fb7ca6", + "cborBytes": [75, 78, 218, 31, 54, 144, 233, 47, 70, 251, 124, 166], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3827, + "sample": { + "_tag": "ByteArray", + "bytearray": "04c7f807" + }, + "cborHex": "4404c7f807", + "cborBytes": [68, 4, 199, 248, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3828, + "sample": { + "_tag": "ByteArray", + "bytearray": "c6ea59c7462a8a1490d704" + }, + "cborHex": "4bc6ea59c7462a8a1490d704", + "cborBytes": [75, 198, 234, 89, 199, 70, 42, 138, 20, 144, 215, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3829, + "sample": { + "_tag": "ByteArray", + "bytearray": "07020487" + }, + "cborHex": "4407020487", + "cborBytes": [68, 7, 2, 4, 135], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3830, + "sample": { + "_tag": "ByteArray", + "bytearray": "0cc590" + }, + "cborHex": "430cc590", + "cborBytes": [67, 12, 197, 144], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3831, + "sample": { + "_tag": "ByteArray", + "bytearray": "8f7c03a8fb04dda40103eb" + }, + "cborHex": "4b8f7c03a8fb04dda40103eb", + "cborBytes": [75, 143, 124, 3, 168, 251, 4, 221, 164, 1, 3, 235], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3832, + "sample": { + "_tag": "ByteArray", + "bytearray": "e5c1f907acb72ff3" + }, + "cborHex": "48e5c1f907acb72ff3", + "cborBytes": [72, 229, 193, 249, 7, 172, 183, 47, 243], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3833, + "sample": { + "_tag": "ByteArray", + "bytearray": "84dae97f4f1473b9e46e491d" + }, + "cborHex": "4c84dae97f4f1473b9e46e491d", + "cborBytes": [76, 132, 218, 233, 127, 79, 20, 115, 185, 228, 110, 73, 29], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3834, + "sample": { + "_tag": "ByteArray", + "bytearray": "bd571501" + }, + "cborHex": "44bd571501", + "cborBytes": [68, 189, 87, 21, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3835, + "sample": { + "_tag": "ByteArray", + "bytearray": "91dc23e8" + }, + "cborHex": "4491dc23e8", + "cborBytes": [68, 145, 220, 35, 232], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3836, + "sample": { + "_tag": "ByteArray", + "bytearray": "3bfb1a7b" + }, + "cborHex": "443bfb1a7b", + "cborBytes": [68, 59, 251, 26, 123], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3837, + "sample": { + "_tag": "ByteArray", + "bytearray": "005304" + }, + "cborHex": "43005304", + "cborBytes": [67, 0, 83, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3838, + "sample": { + "_tag": "ByteArray", + "bytearray": "03008667" + }, + "cborHex": "4403008667", + "cborBytes": [68, 3, 0, 134, 103], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3839, + "sample": { + "_tag": "ByteArray", + "bytearray": "2a236104afdb" + }, + "cborHex": "462a236104afdb", + "cborBytes": [70, 42, 35, 97, 4, 175, 219], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3840, + "sample": { + "_tag": "ByteArray", + "bytearray": "6bc3517edcc39219b0" + }, + "cborHex": "496bc3517edcc39219b0", + "cborBytes": [73, 107, 195, 81, 126, 220, 195, 146, 25, 176], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3841, + "sample": { + "_tag": "ByteArray", + "bytearray": "71037900" + }, + "cborHex": "4471037900", + "cborBytes": [68, 113, 3, 121, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3842, + "sample": { + "_tag": "ByteArray", + "bytearray": "97f9fefa3a060702" + }, + "cborHex": "4897f9fefa3a060702", + "cborBytes": [72, 151, 249, 254, 250, 58, 6, 7, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3843, + "sample": { + "_tag": "ByteArray", + "bytearray": "cec012b05364a5e7a8c815" + }, + "cborHex": "4bcec012b05364a5e7a8c815", + "cborBytes": [75, 206, 192, 18, 176, 83, 100, 165, 231, 168, 200, 21], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3844, + "sample": { + "_tag": "ByteArray", + "bytearray": "4704" + }, + "cborHex": "424704", + "cborBytes": [66, 71, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3845, + "sample": { + "_tag": "ByteArray", + "bytearray": "f0fd0399" + }, + "cborHex": "44f0fd0399", + "cborBytes": [68, 240, 253, 3, 153], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3846, + "sample": { + "_tag": "ByteArray", + "bytearray": "40b3ce5bcdf5" + }, + "cborHex": "4640b3ce5bcdf5", + "cborBytes": [70, 64, 179, 206, 91, 205, 245], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3847, + "sample": { + "_tag": "ByteArray", + "bytearray": "faab" + }, + "cborHex": "42faab", + "cborBytes": [66, 250, 171], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3848, + "sample": { + "_tag": "ByteArray", + "bytearray": "58980e34910f7c49" + }, + "cborHex": "4858980e34910f7c49", + "cborBytes": [72, 88, 152, 14, 52, 145, 15, 124, 73], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3849, + "sample": { + "_tag": "ByteArray", + "bytearray": "b281b11007066db6e6" + }, + "cborHex": "49b281b11007066db6e6", + "cborBytes": [73, 178, 129, 177, 16, 7, 6, 109, 182, 230], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3850, + "sample": { + "_tag": "ByteArray", + "bytearray": "d2d5ca15470e519a" + }, + "cborHex": "48d2d5ca15470e519a", + "cborBytes": [72, 210, 213, 202, 21, 71, 14, 81, 154], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3851, + "sample": { + "_tag": "ByteArray", + "bytearray": "528df1393f7e77" + }, + "cborHex": "47528df1393f7e77", + "cborBytes": [71, 82, 141, 241, 57, 63, 126, 119], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3852, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff0692fef005" + }, + "cborHex": "46ff0692fef005", + "cborBytes": [70, 255, 6, 146, 254, 240, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3853, + "sample": { + "_tag": "ByteArray", + "bytearray": "1217d45c5038fc73d0" + }, + "cborHex": "491217d45c5038fc73d0", + "cborBytes": [73, 18, 23, 212, 92, 80, 56, 252, 115, 208], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3854, + "sample": { + "_tag": "ByteArray", + "bytearray": "0661" + }, + "cborHex": "420661", + "cborBytes": [66, 6, 97], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3855, + "sample": { + "_tag": "ByteArray", + "bytearray": "71f91c034d5e" + }, + "cborHex": "4671f91c034d5e", + "cborBytes": [70, 113, 249, 28, 3, 77, 94], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3856, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc0f02fb" + }, + "cborHex": "44fc0f02fb", + "cborBytes": [68, 252, 15, 2, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3857, + "sample": { + "_tag": "ByteArray", + "bytearray": "2ec5fb8690f46445" + }, + "cborHex": "482ec5fb8690f46445", + "cborBytes": [72, 46, 197, 251, 134, 144, 244, 100, 69], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3858, + "sample": { + "_tag": "ByteArray", + "bytearray": "003648dea5ff" + }, + "cborHex": "46003648dea5ff", + "cborBytes": [70, 0, 54, 72, 222, 165, 255], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3859, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff01fa" + }, + "cborHex": "43ff01fa", + "cborBytes": [67, 255, 1, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3860, + "sample": { + "_tag": "ByteArray", + "bytearray": "b6fb0203" + }, + "cborHex": "44b6fb0203", + "cborBytes": [68, 182, 251, 2, 3], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3861, + "sample": { + "_tag": "ByteArray", + "bytearray": "fac2fb8af8fbcf42" + }, + "cborHex": "48fac2fb8af8fbcf42", + "cborBytes": [72, 250, 194, 251, 138, 248, 251, 207, 66], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3862, + "sample": { + "_tag": "ByteArray", + "bytearray": "0700cc06fcfc04" + }, + "cborHex": "470700cc06fcfc04", + "cborBytes": [71, 7, 0, 204, 6, 252, 252, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3863, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe2403ed3cf8" + }, + "cborHex": "46fe2403ed3cf8", + "cborBytes": [70, 254, 36, 3, 237, 60, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3864, + "sample": { + "_tag": "ByteArray", + "bytearray": "aca39f" + }, + "cborHex": "43aca39f", + "cborBytes": [67, 172, 163, 159], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3865, + "sample": { + "_tag": "ByteArray", + "bytearray": "a9fda0636c26922a" + }, + "cborHex": "48a9fda0636c26922a", + "cborBytes": [72, 169, 253, 160, 99, 108, 38, 146, 42], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3866, + "sample": { + "_tag": "ByteArray", + "bytearray": "21ba055f" + }, + "cborHex": "4421ba055f", + "cborBytes": [68, 33, 186, 5, 95], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3867, + "sample": { + "_tag": "ByteArray", + "bytearray": "305f75" + }, + "cborHex": "43305f75", + "cborBytes": [67, 48, 95, 117], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3868, + "sample": { + "_tag": "ByteArray", + "bytearray": "b4f6985e28d127777f852e" + }, + "cborHex": "4bb4f6985e28d127777f852e", + "cborBytes": [75, 180, 246, 152, 94, 40, 209, 39, 119, 127, 133, 46], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3869, + "sample": { + "_tag": "ByteArray", + "bytearray": "2d45eaedadd9c4f77b" + }, + "cborHex": "492d45eaedadd9c4f77b", + "cborBytes": [73, 45, 69, 234, 237, 173, 217, 196, 247, 123], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3870, + "sample": { + "_tag": "ByteArray", + "bytearray": "521b5666c69e8395cc" + }, + "cborHex": "49521b5666c69e8395cc", + "cborBytes": [73, 82, 27, 86, 102, 198, 158, 131, 149, 204], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3871, + "sample": { + "_tag": "ByteArray", + "bytearray": "2ca09219f7f4b2249b" + }, + "cborHex": "492ca09219f7f4b2249b", + "cborBytes": [73, 44, 160, 146, 25, 247, 244, 178, 36, 155], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3872, + "sample": { + "_tag": "ByteArray", + "bytearray": "e1d3da50b0d968626de38641" + }, + "cborHex": "4ce1d3da50b0d968626de38641", + "cborBytes": [76, 225, 211, 218, 80, 176, 217, 104, 98, 109, 227, 134, 65], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3873, + "sample": { + "_tag": "ByteArray", + "bytearray": "eb05fd" + }, + "cborHex": "43eb05fd", + "cborBytes": [67, 235, 5, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3874, + "sample": { + "_tag": "ByteArray", + "bytearray": "df1c" + }, + "cborHex": "42df1c", + "cborBytes": [66, 223, 28], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3875, + "sample": { + "_tag": "ByteArray", + "bytearray": "4c319f" + }, + "cborHex": "434c319f", + "cborBytes": [67, 76, 49, 159], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3876, + "sample": { + "_tag": "ByteArray", + "bytearray": "3d0502" + }, + "cborHex": "433d0502", + "cborBytes": [67, 61, 5, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3877, + "sample": { + "_tag": "ByteArray", + "bytearray": "3afdcc" + }, + "cborHex": "433afdcc", + "cborBytes": [67, 58, 253, 204], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3878, + "sample": { + "_tag": "ByteArray", + "bytearray": "bf972d598563" + }, + "cborHex": "46bf972d598563", + "cborBytes": [70, 191, 151, 45, 89, 133, 99], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3879, + "sample": { + "_tag": "ByteArray", + "bytearray": "10f8f807254aef" + }, + "cborHex": "4710f8f807254aef", + "cborBytes": [71, 16, 248, 248, 7, 37, 74, 239], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3880, + "sample": { + "_tag": "ByteArray", + "bytearray": "0374e305" + }, + "cborHex": "440374e305", + "cborBytes": [68, 3, 116, 227, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3881, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8f96801" + }, + "cborHex": "44f8f96801", + "cborBytes": [68, 248, 249, 104, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3882, + "sample": { + "_tag": "ByteArray", + "bytearray": "ef619a5a546991b6ecc072" + }, + "cborHex": "4bef619a5a546991b6ecc072", + "cborBytes": [75, 239, 97, 154, 90, 84, 105, 145, 182, 236, 192, 114], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3883, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb83370405b67d00009dfd" + }, + "cborHex": "4bfb83370405b67d00009dfd", + "cborBytes": [75, 251, 131, 55, 4, 5, 182, 125, 0, 0, 157, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3884, + "sample": { + "_tag": "ByteArray", + "bytearray": "89df87d2fe86" + }, + "cborHex": "4689df87d2fe86", + "cborBytes": [70, 137, 223, 135, 210, 254, 134], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3885, + "sample": { + "_tag": "ByteArray", + "bytearray": "0a412f01" + }, + "cborHex": "440a412f01", + "cborBytes": [68, 10, 65, 47, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3886, + "sample": { + "_tag": "ByteArray", + "bytearray": "b8d3" + }, + "cborHex": "42b8d3", + "cborBytes": [66, 184, 211], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3887, + "sample": { + "_tag": "ByteArray", + "bytearray": "bb1046742a6e8a7494" + }, + "cborHex": "49bb1046742a6e8a7494", + "cborBytes": [73, 187, 16, 70, 116, 42, 110, 138, 116, 148], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3888, + "sample": { + "_tag": "ByteArray", + "bytearray": "07078dedfd21faf9" + }, + "cborHex": "4807078dedfd21faf9", + "cborBytes": [72, 7, 7, 141, 237, 253, 33, 250, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3889, + "sample": { + "_tag": "ByteArray", + "bytearray": "03fa0207" + }, + "cborHex": "4403fa0207", + "cborBytes": [68, 3, 250, 2, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3890, + "sample": { + "_tag": "ByteArray", + "bytearray": "3072f8de93012b" + }, + "cborHex": "473072f8de93012b", + "cborBytes": [71, 48, 114, 248, 222, 147, 1, 43], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3891, + "sample": { + "_tag": "ByteArray", + "bytearray": "c795695c7a5224e59f74" + }, + "cborHex": "4ac795695c7a5224e59f74", + "cborBytes": [74, 199, 149, 105, 92, 122, 82, 36, 229, 159, 116], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3892, + "sample": { + "_tag": "ByteArray", + "bytearray": "5db00caa" + }, + "cborHex": "445db00caa", + "cborBytes": [68, 93, 176, 12, 170], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3893, + "sample": { + "_tag": "ByteArray", + "bytearray": "6c624a" + }, + "cborHex": "436c624a", + "cborBytes": [67, 108, 98, 74], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3894, + "sample": { + "_tag": "ByteArray", + "bytearray": "1561ca19" + }, + "cborHex": "441561ca19", + "cborBytes": [68, 21, 97, 202, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3895, + "sample": { + "_tag": "ByteArray", + "bytearray": "2abd00e98f41" + }, + "cborHex": "462abd00e98f41", + "cborBytes": [70, 42, 189, 0, 233, 143, 65], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3896, + "sample": { + "_tag": "ByteArray", + "bytearray": "0500f837" + }, + "cborHex": "440500f837", + "cborBytes": [68, 5, 0, 248, 55], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3897, + "sample": { + "_tag": "ByteArray", + "bytearray": "f50abd138422df8605df75" + }, + "cborHex": "4bf50abd138422df8605df75", + "cborBytes": [75, 245, 10, 189, 19, 132, 34, 223, 134, 5, 223, 117], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3898, + "sample": { + "_tag": "ByteArray", + "bytearray": "835f2f968fea67e53c0ae9" + }, + "cborHex": "4b835f2f968fea67e53c0ae9", + "cborBytes": [75, 131, 95, 47, 150, 143, 234, 103, 229, 60, 10, 233], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3899, + "sample": { + "_tag": "ByteArray", + "bytearray": "4142" + }, + "cborHex": "424142", + "cborBytes": [66, 65, 66], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3900, + "sample": { + "_tag": "ByteArray", + "bytearray": "0602" + }, + "cborHex": "420602", + "cborBytes": [66, 6, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3901, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9ffee950589" + }, + "cborHex": "46f9ffee950589", + "cborBytes": [70, 249, 255, 238, 149, 5, 137], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3902, + "sample": { + "_tag": "ByteArray", + "bytearray": "a8ef4b2b50" + }, + "cborHex": "45a8ef4b2b50", + "cborBytes": [69, 168, 239, 75, 43, 80], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3903, + "sample": { + "_tag": "ByteArray", + "bytearray": "02f806" + }, + "cborHex": "4302f806", + "cborBytes": [67, 2, 248, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3904, + "sample": { + "_tag": "ByteArray", + "bytearray": "11" + }, + "cborHex": "4111", + "cborBytes": [65, 17], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3905, + "sample": { + "_tag": "ByteArray", + "bytearray": "7107" + }, + "cborHex": "427107", + "cborBytes": [66, 113, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3906, + "sample": { + "_tag": "ByteArray", + "bytearray": "3ff101fcc357a3" + }, + "cborHex": "473ff101fcc357a3", + "cborBytes": [71, 63, 241, 1, 252, 195, 87, 163], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3907, + "sample": { + "_tag": "ByteArray", + "bytearray": "57fefbfc" + }, + "cborHex": "4457fefbfc", + "cborBytes": [68, 87, 254, 251, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3908, + "sample": { + "_tag": "ByteArray", + "bytearray": "05fa0e03fe03051e04f81d" + }, + "cborHex": "4b05fa0e03fe03051e04f81d", + "cborBytes": [75, 5, 250, 14, 3, 254, 3, 5, 30, 4, 248, 29], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3909, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc0062" + }, + "cborHex": "43fc0062", + "cborBytes": [67, 252, 0, 98], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3910, + "sample": { + "_tag": "ByteArray", + "bytearray": "3c2c93" + }, + "cborHex": "433c2c93", + "cborBytes": [67, 60, 44, 147], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3911, + "sample": { + "_tag": "ByteArray", + "bytearray": "07fffefdfdfeb6f8fe060705" + }, + "cborHex": "4c07fffefdfdfeb6f8fe060705", + "cborBytes": [76, 7, 255, 254, 253, 253, 254, 182, 248, 254, 6, 7, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3912, + "sample": { + "_tag": "ByteArray", + "bytearray": "a00ce6f9" + }, + "cborHex": "44a00ce6f9", + "cborBytes": [68, 160, 12, 230, 249], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3913, + "sample": { + "_tag": "ByteArray", + "bytearray": "f343b061" + }, + "cborHex": "44f343b061", + "cborBytes": [68, 243, 67, 176, 97], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3914, + "sample": { + "_tag": "ByteArray", + "bytearray": "e03707f87e000700fd" + }, + "cborHex": "49e03707f87e000700fd", + "cborBytes": [73, 224, 55, 7, 248, 126, 0, 7, 0, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3915, + "sample": { + "_tag": "ByteArray", + "bytearray": "a89106" + }, + "cborHex": "43a89106", + "cborBytes": [67, 168, 145, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3916, + "sample": { + "_tag": "ByteArray", + "bytearray": "02f80006" + }, + "cborHex": "4402f80006", + "cborBytes": [68, 2, 248, 0, 6], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3917, + "sample": { + "_tag": "ByteArray", + "bytearray": "c55c00024a60f8fc" + }, + "cborHex": "48c55c00024a60f8fc", + "cborBytes": [72, 197, 92, 0, 2, 74, 96, 248, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3918, + "sample": { + "_tag": "ByteArray", + "bytearray": "2a40356b" + }, + "cborHex": "442a40356b", + "cborBytes": [68, 42, 64, 53, 107], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3919, + "sample": { + "_tag": "ByteArray", + "bytearray": "06078cb700" + }, + "cborHex": "4506078cb700", + "cborBytes": [69, 6, 7, 140, 183, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3920, + "sample": { + "_tag": "ByteArray", + "bytearray": "384559" + }, + "cborHex": "43384559", + "cborBytes": [67, 56, 69, 89], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3921, + "sample": { + "_tag": "ByteArray", + "bytearray": "c547" + }, + "cborHex": "42c547", + "cborBytes": [66, 197, 71], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3922, + "sample": { + "_tag": "ByteArray", + "bytearray": "efe08e4c2522b68fabdec4f8" + }, + "cborHex": "4cefe08e4c2522b68fabdec4f8", + "cborBytes": [76, 239, 224, 142, 76, 37, 34, 182, 143, 171, 222, 196, 248], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3923, + "sample": { + "_tag": "ByteArray", + "bytearray": "0003a9b204" + }, + "cborHex": "450003a9b204", + "cborBytes": [69, 0, 3, 169, 178, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3924, + "sample": { + "_tag": "ByteArray", + "bytearray": "9e7dbe02a1" + }, + "cborHex": "459e7dbe02a1", + "cborBytes": [69, 158, 125, 190, 2, 161], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3925, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa979f81d859995f" + }, + "cborHex": "48fa979f81d859995f", + "cborBytes": [72, 250, 151, 159, 129, 216, 89, 153, 95], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3926, + "sample": { + "_tag": "ByteArray", + "bytearray": "cbf9f4" + }, + "cborHex": "43cbf9f4", + "cborBytes": [67, 203, 249, 244], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3927, + "sample": { + "_tag": "ByteArray", + "bytearray": "d3e8" + }, + "cborHex": "42d3e8", + "cborBytes": [66, 211, 232], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3928, + "sample": { + "_tag": "ByteArray", + "bytearray": "060afffb" + }, + "cborHex": "44060afffb", + "cborBytes": [68, 6, 10, 255, 251], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3929, + "sample": { + "_tag": "ByteArray", + "bytearray": "fffe87040a03310112" + }, + "cborHex": "49fffe87040a03310112", + "cborBytes": [73, 255, 254, 135, 4, 10, 3, 49, 1, 18], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3930, + "sample": { + "_tag": "ByteArray", + "bytearray": "c604" + }, + "cborHex": "42c604", + "cborBytes": [66, 198, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3931, + "sample": { + "_tag": "ByteArray", + "bytearray": "657e5c4cc228548b2bdc" + }, + "cborHex": "4a657e5c4cc228548b2bdc", + "cborBytes": [74, 101, 126, 92, 76, 194, 40, 84, 139, 43, 220], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3932, + "sample": { + "_tag": "ByteArray", + "bytearray": "0337" + }, + "cborHex": "420337", + "cborBytes": [66, 3, 55], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3933, + "sample": { + "_tag": "ByteArray", + "bytearray": "91e596c85701e24d10de1a33" + }, + "cborHex": "4c91e596c85701e24d10de1a33", + "cborBytes": [76, 145, 229, 150, 200, 87, 1, 226, 77, 16, 222, 26, 51], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3934, + "sample": { + "_tag": "ByteArray", + "bytearray": "0490b9981b0308" + }, + "cborHex": "470490b9981b0308", + "cborBytes": [71, 4, 144, 185, 152, 27, 3, 8], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3935, + "sample": { + "_tag": "ByteArray", + "bytearray": "c0cc7414a8a43bb79bf00f35" + }, + "cborHex": "4cc0cc7414a8a43bb79bf00f35", + "cborBytes": [76, 192, 204, 116, 20, 168, 164, 59, 183, 155, 240, 15, 53], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3936, + "sample": { + "_tag": "ByteArray", + "bytearray": "0c95c7d841e627882b" + }, + "cborHex": "490c95c7d841e627882b", + "cborBytes": [73, 12, 149, 199, 216, 65, 230, 39, 136, 43], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3937, + "sample": { + "_tag": "ByteArray", + "bytearray": "0504" + }, + "cborHex": "420504", + "cborBytes": [66, 5, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3938, + "sample": { + "_tag": "ByteArray", + "bytearray": "f370da2512761e8c449715c8" + }, + "cborHex": "4cf370da2512761e8c449715c8", + "cborBytes": [76, 243, 112, 218, 37, 18, 118, 30, 140, 68, 151, 21, 200], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3939, + "sample": { + "_tag": "ByteArray", + "bytearray": "0ddb321b6f01270fde65" + }, + "cborHex": "4a0ddb321b6f01270fde65", + "cborBytes": [74, 13, 219, 50, 27, 111, 1, 39, 15, 222, 101], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3940, + "sample": { + "_tag": "ByteArray", + "bytearray": "ac3383652cb14e438d3275e9" + }, + "cborHex": "4cac3383652cb14e438d3275e9", + "cborBytes": [76, 172, 51, 131, 101, 44, 177, 78, 67, 141, 50, 117, 233], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3941, + "sample": { + "_tag": "ByteArray", + "bytearray": "180e" + }, + "cborHex": "42180e", + "cborBytes": [66, 24, 14], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3942, + "sample": { + "_tag": "ByteArray", + "bytearray": "000703fa" + }, + "cborHex": "44000703fa", + "cborBytes": [68, 0, 7, 3, 250], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3943, + "sample": { + "_tag": "ByteArray", + "bytearray": "800c" + }, + "cborHex": "42800c", + "cborBytes": [66, 128, 12], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3944, + "sample": { + "_tag": "ByteArray", + "bytearray": "4bfd25" + }, + "cborHex": "434bfd25", + "cborBytes": [67, 75, 253, 37], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3945, + "sample": { + "_tag": "ByteArray", + "bytearray": "062ff42225" + }, + "cborHex": "45062ff42225", + "cborBytes": [69, 6, 47, 244, 34, 37], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3946, + "sample": { + "_tag": "ByteArray", + "bytearray": "df" + }, + "cborHex": "41df", + "cborBytes": [65, 223], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3947, + "sample": { + "_tag": "ByteArray", + "bytearray": "27aadcfc9cdd0bb173" + }, + "cborHex": "4927aadcfc9cdd0bb173", + "cborBytes": [73, 39, 170, 220, 252, 156, 221, 11, 177, 115], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3948, + "sample": { + "_tag": "ByteArray", + "bytearray": "020707fed42f857001" + }, + "cborHex": "49020707fed42f857001", + "cborBytes": [73, 2, 7, 7, 254, 212, 47, 133, 112, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3949, + "sample": { + "_tag": "ByteArray", + "bytearray": "5a38e5f697b1276889" + }, + "cborHex": "495a38e5f697b1276889", + "cborBytes": [73, 90, 56, 229, 246, 151, 177, 39, 104, 137], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3950, + "sample": { + "_tag": "ByteArray", + "bytearray": "6362b6c192fa9a88" + }, + "cborHex": "486362b6c192fa9a88", + "cborBytes": [72, 99, 98, 182, 193, 146, 250, 154, 136], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3951, + "sample": { + "_tag": "ByteArray", + "bytearray": "04050b01040104" + }, + "cborHex": "4704050b01040104", + "cborBytes": [71, 4, 5, 11, 1, 4, 1, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3952, + "sample": { + "_tag": "ByteArray", + "bytearray": "5d6864bb9ab3344f2e0f" + }, + "cborHex": "4a5d6864bb9ab3344f2e0f", + "cborBytes": [74, 93, 104, 100, 187, 154, 179, 52, 79, 46, 15], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3953, + "sample": { + "_tag": "ByteArray", + "bytearray": "a2c80783351a" + }, + "cborHex": "46a2c80783351a", + "cborBytes": [70, 162, 200, 7, 131, 53, 26], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3954, + "sample": { + "_tag": "ByteArray", + "bytearray": "bd07fc0004" + }, + "cborHex": "45bd07fc0004", + "cborBytes": [69, 189, 7, 252, 0, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3955, + "sample": { + "_tag": "ByteArray", + "bytearray": "7545c0ee7402d93b" + }, + "cborHex": "487545c0ee7402d93b", + "cborBytes": [72, 117, 69, 192, 238, 116, 2, 217, 59], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3956, + "sample": { + "_tag": "ByteArray", + "bytearray": "16036505e8fe0707" + }, + "cborHex": "4816036505e8fe0707", + "cborBytes": [72, 22, 3, 101, 5, 232, 254, 7, 7], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3957, + "sample": { + "_tag": "ByteArray", + "bytearray": "6274d60477302c75" + }, + "cborHex": "486274d60477302c75", + "cborBytes": [72, 98, 116, 214, 4, 119, 48, 44, 117], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3958, + "sample": { + "_tag": "ByteArray", + "bytearray": "038b" + }, + "cborHex": "42038b", + "cborBytes": [66, 3, 139], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3959, + "sample": { + "_tag": "ByteArray", + "bytearray": "c15d" + }, + "cborHex": "42c15d", + "cborBytes": [66, 193, 93], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3960, + "sample": { + "_tag": "ByteArray", + "bytearray": "d05ca0" + }, + "cborHex": "43d05ca0", + "cborBytes": [67, 208, 92, 160], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3961, + "sample": { + "_tag": "ByteArray", + "bytearray": "b31b9e441b1f9c9f" + }, + "cborHex": "48b31b9e441b1f9c9f", + "cborBytes": [72, 179, 27, 158, 68, 27, 31, 156, 159], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3962, + "sample": { + "_tag": "ByteArray", + "bytearray": "78a62da29e68" + }, + "cborHex": "4678a62da29e68", + "cborBytes": [70, 120, 166, 45, 162, 158, 104], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3963, + "sample": { + "_tag": "ByteArray", + "bytearray": "2f015c59de" + }, + "cborHex": "452f015c59de", + "cborBytes": [69, 47, 1, 92, 89, 222], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3964, + "sample": { + "_tag": "ByteArray", + "bytearray": "ce010000" + }, + "cborHex": "44ce010000", + "cborBytes": [68, 206, 1, 0, 0], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3965, + "sample": { + "_tag": "ByteArray", + "bytearray": "c2b70770a8" + }, + "cborHex": "45c2b70770a8", + "cborBytes": [69, 194, 183, 7, 112, 168], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3966, + "sample": { + "_tag": "ByteArray", + "bytearray": "32c200bff91cc16e" + }, + "cborHex": "4832c200bff91cc16e", + "cborBytes": [72, 50, 194, 0, 191, 249, 28, 193, 110], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3967, + "sample": { + "_tag": "ByteArray", + "bytearray": "05fcfd" + }, + "cborHex": "4305fcfd", + "cborBytes": [67, 5, 252, 253], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3968, + "sample": { + "_tag": "ByteArray", + "bytearray": "7baf1516" + }, + "cborHex": "447baf1516", + "cborBytes": [68, 123, 175, 21, 22], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3969, + "sample": { + "_tag": "ByteArray", + "bytearray": "aafe0bf678d709b098a4" + }, + "cborHex": "4aaafe0bf678d709b098a4", + "cborBytes": [74, 170, 254, 11, 246, 120, 215, 9, 176, 152, 164], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3970, + "sample": { + "_tag": "ByteArray", + "bytearray": "b874fc" + }, + "cborHex": "43b874fc", + "cborBytes": [67, 184, 116, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3971, + "sample": { + "_tag": "ByteArray", + "bytearray": "a4e69d629bbefba1e8fa31e3" + }, + "cborHex": "4ca4e69d629bbefba1e8fa31e3", + "cborBytes": [76, 164, 230, 157, 98, 155, 190, 251, 161, 232, 250, 49, 227], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3972, + "sample": { + "_tag": "ByteArray", + "bytearray": "0e32b5563600616c92b0" + }, + "cborHex": "4a0e32b5563600616c92b0", + "cborBytes": [74, 14, 50, 181, 86, 54, 0, 97, 108, 146, 176], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3973, + "sample": { + "_tag": "ByteArray", + "bytearray": "0100ea248bfe070728" + }, + "cborHex": "490100ea248bfe070728", + "cborBytes": [73, 1, 0, 234, 36, 139, 254, 7, 7, 40], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3974, + "sample": { + "_tag": "ByteArray", + "bytearray": "00e75bfc" + }, + "cborHex": "4400e75bfc", + "cborBytes": [68, 0, 231, 91, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3975, + "sample": { + "_tag": "ByteArray", + "bytearray": "5efe02" + }, + "cborHex": "435efe02", + "cborBytes": [67, 94, 254, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3976, + "sample": { + "_tag": "ByteArray", + "bytearray": "53ba291bb193bf3f" + }, + "cborHex": "4853ba291bb193bf3f", + "cborBytes": [72, 83, 186, 41, 27, 177, 147, 191, 63], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3977, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd8f0705fa690768a61bfb02" + }, + "cborHex": "4cfd8f0705fa690768a61bfb02", + "cborBytes": [76, 253, 143, 7, 5, 250, 105, 7, 104, 166, 27, 251, 2], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3978, + "sample": { + "_tag": "ByteArray", + "bytearray": "0001" + }, + "cborHex": "420001", + "cborBytes": [66, 0, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3979, + "sample": { + "_tag": "ByteArray", + "bytearray": "7fb9db01" + }, + "cborHex": "447fb9db01", + "cborBytes": [68, 127, 185, 219, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3980, + "sample": { + "_tag": "ByteArray", + "bytearray": "ed66b291" + }, + "cborHex": "44ed66b291", + "cborBytes": [68, 237, 102, 178, 145], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3981, + "sample": { + "_tag": "ByteArray", + "bytearray": "02961c" + }, + "cborHex": "4302961c", + "cborBytes": [67, 2, 150, 28], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3982, + "sample": { + "_tag": "ByteArray", + "bytearray": "633b12dbc5cebc" + }, + "cborHex": "47633b12dbc5cebc", + "cborBytes": [71, 99, 59, 18, 219, 197, 206, 188], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3983, + "sample": { + "_tag": "ByteArray", + "bytearray": "6577ced13c6f449bcd473ca2" + }, + "cborHex": "4c6577ced13c6f449bcd473ca2", + "cborBytes": [76, 101, 119, 206, 209, 60, 111, 68, 155, 205, 71, 60, 162], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3984, + "sample": { + "_tag": "ByteArray", + "bytearray": "73e80503d20308" + }, + "cborHex": "4773e80503d20308", + "cborBytes": [71, 115, 232, 5, 3, 210, 3, 8], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3985, + "sample": { + "_tag": "ByteArray", + "bytearray": "dc19" + }, + "cborHex": "42dc19", + "cborBytes": [66, 220, 25], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3986, + "sample": { + "_tag": "ByteArray", + "bytearray": "73ca0eba139cb3ed99cfd4" + }, + "cborHex": "4b73ca0eba139cb3ed99cfd4", + "cborBytes": [75, 115, 202, 14, 186, 19, 156, 179, 237, 153, 207, 212], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3987, + "sample": { + "_tag": "ByteArray", + "bytearray": "b8f13e218be25d96dc01" + }, + "cborHex": "4ab8f13e218be25d96dc01", + "cborBytes": [74, 184, 241, 62, 33, 139, 226, 93, 150, 220, 1], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3988, + "sample": { + "_tag": "ByteArray", + "bytearray": "f92a389a260487" + }, + "cborHex": "47f92a389a260487", + "cborBytes": [71, 249, 42, 56, 154, 38, 4, 135], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3989, + "sample": { + "_tag": "ByteArray", + "bytearray": "5d87206da0763ebb285453" + }, + "cborHex": "4b5d87206da0763ebb285453", + "cborBytes": [75, 93, 135, 32, 109, 160, 118, 62, 187, 40, 84, 83], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3990, + "sample": { + "_tag": "ByteArray", + "bytearray": "c25edd" + }, + "cborHex": "43c25edd", + "cborBytes": [67, 194, 94, 221], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3991, + "sample": { + "_tag": "ByteArray", + "bytearray": "d1fa070603ca03b75d000518" + }, + "cborHex": "4cd1fa070603ca03b75d000518", + "cborBytes": [76, 209, 250, 7, 6, 3, 202, 3, 183, 93, 0, 5, 24], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3992, + "sample": { + "_tag": "ByteArray", + "bytearray": "1300c33ad4cce919d922" + }, + "cborHex": "4a1300c33ad4cce919d922", + "cborBytes": [74, 19, 0, 195, 58, 212, 204, 233, 25, 217, 34], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3993, + "sample": { + "_tag": "ByteArray", + "bytearray": "37e700aa026e056dac" + }, + "cborHex": "4937e700aa026e056dac", + "cborBytes": [73, 55, 231, 0, 170, 2, 110, 5, 109, 172], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3994, + "sample": { + "_tag": "ByteArray", + "bytearray": "0f8d99d18803570ddcb5" + }, + "cborHex": "4a0f8d99d18803570ddcb5", + "cborBytes": [74, 15, 141, 153, 209, 136, 3, 87, 13, 220, 181], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3995, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8fc" + }, + "cborHex": "42f8fc", + "cborBytes": [66, 248, 252], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3996, + "sample": { + "_tag": "ByteArray", + "bytearray": "ed5d07df0403fcc57aec05" + }, + "cborHex": "4bed5d07df0403fcc57aec05", + "cborBytes": [75, 237, 93, 7, 223, 4, 3, 252, 197, 122, 236, 5], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3997, + "sample": { + "_tag": "ByteArray", + "bytearray": "36bef6e706cbbd7d578a55" + }, + "cborHex": "4b36bef6e706cbbd7d578a55", + "cborBytes": [75, 54, 190, 246, 231, 6, 203, 189, 125, 87, 138, 85], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3998, + "sample": { + "_tag": "ByteArray", + "bytearray": "4100fbd4f81a" + }, + "cborHex": "464100fbd4f81a", + "cborBytes": [70, 65, 0, 251, 212, 248, 26], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + }, + { + "index": 3999, + "sample": { + "_tag": "ByteArray", + "bytearray": "cc603dd704" + }, + "cborHex": "45cc603dd704", + "cborBytes": [69, 204, 96, 61, 215, 4], + "roundTripSuccess": true, + "metadata": { + "type": "byteArray", + "seed": 12345 + } + } +] diff --git a/packages/evolution/test/golden/constr.golden.json b/packages/evolution/test/golden/constr.golden.json new file mode 100644 index 00000000..ca0a48f4 --- /dev/null +++ b/packages/evolution/test/golden/constr.golden.json @@ -0,0 +1,372258 @@ +[ + { + "index": 0, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4496640685389581286" + }, + "fields": [] + }, + "cborHex": "d8669f1b3e6746e10f370be680ff", + "cborBytes": [216, 102, 159, 27, 62, 103, 70, 225, 15, 55, 11, 230, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "281214972417391024" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8c28" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4c20692eb3c3966b32" + }, + { + "_tag": "ByteArray", + "bytearray": "10883f12df" + } + ] + } + ] + }, + "cborHex": "d8669f1b03e713870875b9b09f428c289f494c20692eb3c3966b324510883f12dfffffff", + "cborBytes": [ + 216, 102, 159, 27, 3, 231, 19, 135, 8, 117, 185, 176, 159, 66, 140, 40, 159, 73, 76, 32, 105, 46, 179, 195, 150, + 107, 50, 69, 16, 136, 63, 18, 223, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff880ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12150111997886619489" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9054239678095765132" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2653602282037172260" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f8c7e0fd8527f54" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1d9da058ca8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f2d26" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4774239360982949282" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97f36e2641a91cad33" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16819705119332593117" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e36" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e09aa62ee48b23b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17005758733616971120" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dccd29185c28192a8860" + }, + { + "_tag": "ByteArray", + "bytearray": "be07d64d59" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17293214871891614254" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13796576323345291062" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05333c04f4429d11d1" + }, + { + "_tag": "ByteArray", + "bytearray": "e56387c33672" + }, + { + "_tag": "ByteArray", + "bytearray": "927ac45417cb20" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ce4db8c8f4a671ab8a1a6d24" + }, + { + "_tag": "ByteArray", + "bytearray": "3bf05bf45bd2bfac371f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15315521490230532338" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ca90fcdee69c38584d0caf" + }, + { + "_tag": "ByteArray", + "bytearray": "9ddf71d4a6c8e4" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1ba89dde7cef3e5f619f1b7da71f040c252e8c1b24d37d3753fdd824bf480f8c7e0fd8527f5446e1d9da058ca8434f2d261b4241816760139da24997f36e2641a91cad331be96b98b100a36ddd429e36486e09aa62ee48b23bff9f1bec009777c53c7d704adccd29185c28192a886045be07d64d599f1beffdd74d779a1a2e1bbf774911958f97364905333c04f4429d11d146e56387c3367247927ac45417cb20ff9f4cce4db8c8f4a671ab8a1a6d244a3bf05bf45bd2bfac371f1bd48ba9a6770d58f24bca90fcdee69c38584d0caf479ddf71d4a6c8e4ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 168, 157, 222, 124, 239, 62, 95, 97, 159, 27, 125, 167, 31, 4, 12, 37, 46, 140, 27, 36, 211, + 125, 55, 83, 253, 216, 36, 191, 72, 15, 140, 126, 15, 216, 82, 127, 84, 70, 225, 217, 218, 5, 140, 168, 67, 79, + 45, 38, 27, 66, 65, 129, 103, 96, 19, 157, 162, 73, 151, 243, 110, 38, 65, 169, 28, 173, 51, 27, 233, 107, 152, + 177, 0, 163, 109, 221, 66, 158, 54, 72, 110, 9, 170, 98, 238, 72, 178, 59, 255, 159, 27, 236, 0, 151, 119, 197, + 60, 125, 112, 74, 220, 205, 41, 24, 92, 40, 25, 42, 136, 96, 69, 190, 7, 214, 77, 89, 159, 27, 239, 253, 215, 77, + 119, 154, 26, 46, 27, 191, 119, 73, 17, 149, 143, 151, 54, 73, 5, 51, 60, 4, 244, 66, 157, 17, 209, 70, 229, 99, + 135, 195, 54, 114, 71, 146, 122, 196, 84, 23, 203, 32, 255, 159, 76, 206, 77, 184, 200, 244, 166, 113, 171, 138, + 26, 109, 36, 74, 59, 240, 91, 244, 91, 210, 191, 172, 55, 31, 27, 212, 139, 169, 166, 119, 13, 88, 242, 75, 202, + 144, 252, 222, 230, 156, 56, 88, 77, 12, 175, 71, 157, 223, 113, 212, 166, 200, 228, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 4, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8642534375753969278" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12358847448391406301" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7950454218792897708" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13504293425777979826" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14728078062545003194" + } + } + ] + }, + "cborHex": "d8669f1b77f0733981eaee7e9f1bab8372463a9cd2dd1b6e55affd1a280cac1bbb68e3526a23b1b21bcc64a4f71637e2baffff", + "cborBytes": [ + 216, 102, 159, 27, 119, 240, 115, 57, 129, 234, 238, 126, 159, 27, 171, 131, 114, 70, 58, 156, 210, 221, 27, 110, + 85, 175, 253, 26, 40, 12, 172, 27, 187, 104, 227, 82, 106, 35, 177, 178, 27, 204, 100, 164, 247, 22, 55, 226, 186, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 5, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "67275d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9163983089869122603" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15563261515909792944" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9520a39ed1c2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "610005471195102316" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4109120808ad5543" + } + ] + }, + "cborHex": "d87b9f9f4367275d9f1b7f2d02113f55ec2b1bd7fbcfe41a4f84b0469520a39ed1c21b08772cbe7da0fc6cffff484109120808ad5543ff", + "cborBytes": [ + 216, 123, 159, 159, 67, 103, 39, 93, 159, 27, 127, 45, 2, 17, 63, 85, 236, 43, 27, 215, 251, 207, 228, 26, 79, + 132, 176, 70, 149, 32, 163, 158, 209, 194, 27, 8, 119, 44, 190, 125, 160, 252, 108, 255, 255, 72, 65, 9, 18, 8, 8, + 173, 85, 67, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 6, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4631559137484385561" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33e0f83f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8167639147544592503" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c9382a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8165605271224656574" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15018231022603531269" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfd242dd99a1064f6ef8e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d57f86e357dff" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15445134465779310876" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7299262509812810402" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "96" + }, + { + "_tag": "ByteArray", + "bytearray": "f09fa053856c" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9fd8669f1b40469a7f19f8ad1980ffbf4433e0f83f1b71594887daf84077443c9382a51b71520ebb1f6722be4272b71bd06b798b8908f4054bdfd242dd99a1064f6ef8e3473d57f86e357dffff1bd65823f6fceb211c9fd8669f1b654c30945bb802a29f419646f09fa053856cffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 216, 102, 159, 27, 64, 70, 154, 127, 25, 248, 173, + 25, 128, 255, 191, 68, 51, 224, 248, 63, 27, 113, 89, 72, 135, 218, 248, 64, 119, 68, 60, 147, 130, 165, 27, 113, + 82, 14, 187, 31, 103, 34, 190, 66, 114, 183, 27, 208, 107, 121, 139, 137, 8, 244, 5, 75, 223, 210, 66, 221, 153, + 161, 6, 79, 110, 248, 227, 71, 61, 87, 248, 110, 53, 125, 255, 255, 27, 214, 88, 35, 246, 252, 235, 33, 28, 159, + 216, 102, 159, 27, 101, 76, 48, 148, 91, 184, 2, 162, 159, 65, 150, 70, 240, 159, 160, 83, 133, 108, 255, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 7, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14123173970550896303" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3841092710021445532" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11696219889114318594" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11618853268280267716" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7871184805591432322" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "673f30f5579f2012" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7692c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "264502497179315115" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "90" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13719508219026833339" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16449577066531706323" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bc3ff97e5ffbab6af9fd8669f1b354e4d78022bb79c9f1ba2515205198487021ba13e757cf93b53c4ffff1b6d3c10e09ababc829fbf48673f30f5579f201241d5437692c21b03abb39eaa93ababff4190d8669f1bbe657c0940257fbb9f1be448a3303c08d5d3ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 195, 255, 151, 229, 255, 186, 182, 175, 159, 216, 102, 159, 27, 53, 78, 77, 120, 2, 43, 183, + 156, 159, 27, 162, 81, 82, 5, 25, 132, 135, 2, 27, 161, 62, 117, 124, 249, 59, 83, 196, 255, 255, 27, 109, 60, 16, + 224, 154, 186, 188, 130, 159, 191, 72, 103, 63, 48, 245, 87, 159, 32, 18, 65, 213, 67, 118, 146, 194, 27, 3, 171, + 179, 158, 170, 147, 171, 171, 255, 65, 144, 216, 102, 159, 27, 190, 101, 124, 9, 64, 37, 127, 187, 159, 27, 228, + 72, 163, 48, 60, 8, 213, 211, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 8, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7466882054067163697" + }, + "fields": [] + }, + "cborHex": "d8669f1b679fb1aabc69923180ff", + "cborBytes": [216, 102, 159, 27, 103, 159, 177, 170, 188, 105, 146, 49, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 9, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b7a12b322f5d323956ebc1" + } + ] + }, + "cborHex": "d87a9f4bb7a12b322f5d323956ebc1ff", + "cborBytes": [216, 122, 159, 75, 183, 161, 43, 50, 47, 93, 50, 57, 86, 235, 193, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 10, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d905009f13a0ff", + "cborBytes": [217, 5, 0, 159, 19, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 11, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "300354630590947981" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c90f282e934943887daa0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11492792173347516846" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b9108f27dd44dc2526a0acf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4321286506103043323" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a55d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b042b12f1f704628d9fbf4b2c90f282e934943887daa01b9f7e999719c4b1ae4c9b9108f27dd44dc2526a0acf1b3bf84b2ea0f5f4fb42a55d4187ffffff", + "cborBytes": [ + 216, 102, 159, 27, 4, 43, 18, 241, 247, 4, 98, 141, 159, 191, 75, 44, 144, 242, 130, 233, 52, 148, 56, 135, 218, + 160, 27, 159, 126, 153, 151, 25, 196, 177, 174, 76, 155, 145, 8, 242, 125, 212, 77, 194, 82, 106, 10, 207, 27, 59, + 248, 75, 46, 160, 245, 244, 251, 66, 165, 93, 65, 135, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 12, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4182351734222390540" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15626722870407448568" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee68ee382a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18111056405214743921" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bcaa4c24caa9bf95c5a3b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c33800e9846565f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b78d847fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19da96431ce3730c" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "25b65ba865dcdd6f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17591479689454286119" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17186557095554262592" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3a0ab2be4410850c9fbf1bd8dd45a81e1bc7f845ee68ee382a1bfb5765d813e34d7141954b3bcaa4c24caa9bf95c5a3b489c33800e9846565f457b78d847fb4819da96431ce3730cff4825b65ba865dcdd6fd905059fd8669f1bf4217d92eb6bf5279f1bffffffffffffffee0affffffbf1bee82ea9ec07b264041ddffffff", + "cborBytes": [ + 216, 102, 159, 27, 58, 10, 178, 190, 68, 16, 133, 12, 159, 191, 27, 216, 221, 69, 168, 30, 27, 199, 248, 69, 238, + 104, 238, 56, 42, 27, 251, 87, 101, 216, 19, 227, 77, 113, 65, 149, 75, 59, 202, 164, 194, 76, 170, 155, 249, 92, + 90, 59, 72, 156, 51, 128, 14, 152, 70, 86, 95, 69, 123, 120, 216, 71, 251, 72, 25, 218, 150, 67, 28, 227, 115, 12, + 255, 72, 37, 182, 91, 168, 101, 220, 221, 111, 217, 5, 5, 159, 216, 102, 159, 27, 244, 33, 125, 146, 235, 107, + 245, 39, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 10, 255, 255, 255, 191, 27, 238, 130, 234, 158, 192, + 123, 38, 64, 65, 221, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 13, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c4f8" + } + ] + }, + "cborHex": "d905009f42c4f8ff", + "cborBytes": [217, 5, 0, 159, 66, 196, 248, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 14, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1729124339730751854" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2a9542537932f7ecd5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3469610798869206816" + } + }, + { + "_tag": "ByteArray", + "bytearray": "342e052782a9bfd35ba94378" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10936609228907366825" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1545834469114045831" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2012338622927411263" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18274067873806266113" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15887229407163294315" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8374612685077314065" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17632962110477808071" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35fb811de5625823288e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ceed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15074735224024962436" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8040893224126134608" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f13de0b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4fcf0881cdf16e" + } + ] + }, + "cborHex": "d9050b9f9fd8669f1b17ff156cfa22216e9f492a9542537932f7ecd51b302688a3877557204c342e052782a9bfd35ba943781b97c6a426284849a9ffff1b1573e8426d18e587ff1b1bed4350d363183fd8669f1bfd9a87e93b99af019fbf1bdc7ac6f8bf1ba26b1b743899ddd1837a111bf4b4dd9db4f3b1c74a35fb811de5625823288e42ceed1bd13437d11f139584ff1b6f96fdc8ece23950445f13de0bffff474fcf0881cdf16eff", + "cborBytes": [ + 217, 5, 11, 159, 159, 216, 102, 159, 27, 23, 255, 21, 108, 250, 34, 33, 110, 159, 73, 42, 149, 66, 83, 121, 50, + 247, 236, 213, 27, 48, 38, 136, 163, 135, 117, 87, 32, 76, 52, 46, 5, 39, 130, 169, 191, 211, 91, 169, 67, 120, + 27, 151, 198, 164, 38, 40, 72, 73, 169, 255, 255, 27, 21, 115, 232, 66, 109, 24, 229, 135, 255, 27, 27, 237, 67, + 80, 211, 99, 24, 63, 216, 102, 159, 27, 253, 154, 135, 233, 59, 153, 175, 1, 159, 191, 27, 220, 122, 198, 248, + 191, 27, 162, 107, 27, 116, 56, 153, 221, 209, 131, 122, 17, 27, 244, 180, 221, 157, 180, 243, 177, 199, 74, 53, + 251, 129, 29, 229, 98, 88, 35, 40, 142, 66, 206, 237, 27, 209, 52, 55, 209, 31, 19, 149, 132, 255, 27, 111, 150, + 253, 200, 236, 226, 57, 80, 68, 95, 19, 222, 11, 255, 255, 71, 79, 207, 8, 129, 205, 241, 110, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 15, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3255798778464545221" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6075940715703653440" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3254831811504137837" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4efb21" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10150573484125159946" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15793741858473932364" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14559433905707660878" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1e9a3968a9" + }, + { + "_tag": "ByteArray", + "bytearray": "7b29" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "654ce5061d6d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10288233210342267346" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2d2eebbd3287a9c59fd8669f1b545213e3a3d954409f9f1b2d2b7c49a858666d434efb211b8cde14cdc3c7820a1bdb2ea48a9c8e764c1bca0d7fff807bb64eff451e9a3968a9427b29ffffbf46654ce5061d6d1b8ec725986cd3d9d2ffffff", + "cborBytes": [ + 216, 102, 159, 27, 45, 46, 235, 189, 50, 135, 169, 197, 159, 216, 102, 159, 27, 84, 82, 19, 227, 163, 217, 84, 64, + 159, 159, 27, 45, 43, 124, 73, 168, 88, 102, 109, 67, 78, 251, 33, 27, 140, 222, 20, 205, 195, 199, 130, 10, 27, + 219, 46, 164, 138, 156, 142, 118, 76, 27, 202, 13, 127, 255, 128, 123, 182, 78, 255, 69, 30, 154, 57, 104, 169, + 66, 123, 41, 255, 255, 191, 70, 101, 76, 229, 6, 29, 109, 27, 142, 199, 37, 152, 108, 211, 217, 210, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 16, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4587033432922800180" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17373708464673466607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12417256106071605985" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7802714381224630930" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9682433563575193666" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8234426329081676718" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3981131128938667457" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6694350809823635961" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11105565333116153471" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4463856965752229650" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2787761065134040090" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15564165939446749375" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b3fa86a9aa63440349fd905009fd8669f1bf11bcfcc7c0f28ef9f1bac52f4a39772c2e11b6c48cf63a0b9da921b865eea06be3810421b72468f1e520983ae1b373fd1ab38a39dc1ffffd8669f1b5ce71c97e562e9f99f1b9a1ee4d4a647ee7fffff1b3df2ce4283d08f12ffbf1b26b01deb25faa41a1bd7ff06759df518bfff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 63, 168, 106, 154, 166, 52, 64, 52, 159, 217, 5, 0, 159, 216, 102, 159, 27, 241, 27, 207, 204, + 124, 15, 40, 239, 159, 27, 172, 82, 244, 163, 151, 114, 194, 225, 27, 108, 72, 207, 99, 160, 185, 218, 146, 27, + 134, 94, 234, 6, 190, 56, 16, 66, 27, 114, 70, 143, 30, 82, 9, 131, 174, 27, 55, 63, 209, 171, 56, 163, 157, 193, + 255, 255, 216, 102, 159, 27, 92, 231, 28, 151, 229, 98, 233, 249, 159, 27, 154, 30, 228, 212, 166, 71, 238, 127, + 255, 255, 27, 61, 242, 206, 66, 131, 208, 143, 18, 255, 191, 27, 38, 176, 29, 235, 37, 250, 164, 26, 27, 215, 255, + 6, 117, 157, 245, 24, 191, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 17, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10867698309874213974" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07060000" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0005fef86a02ce73f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc93" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47fe9a010297" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b96d1d208862a64569fbf4407060000490005fef86a02ce73f942fc934647fe9a010297ffffff", + "cborBytes": [ + 216, 102, 159, 27, 150, 209, 210, 8, 134, 42, 100, 86, 159, 191, 68, 7, 6, 0, 0, 73, 0, 5, 254, 248, 106, 2, 206, + 115, 249, 66, 252, 147, 70, 71, 254, 154, 1, 2, 151, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 18, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13174061695979645246" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fc5204d52" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa5bd0" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bb6d3ab5035f2693e9fbf450fc5204d520042b6d343aa5bd0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 182, 211, 171, 80, 53, 242, 105, 62, 159, 191, 69, 15, 197, 32, 77, 82, 0, 66, 182, 211, 67, + 170, 91, 208, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 19, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10146535926360234762" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9852843287993784534" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11305874577526787868" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1349620079920123645" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14094050038486168056" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9878256732919990617" + } + }, + { + "_tag": "ByteArray", + "bytearray": "65c9528c57" + }, + { + "_tag": "ByteArray", + "bytearray": "b03125ea7df2fedcc128" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9477181503822961857" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9572811273438933215" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17557880414932350781" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87b9fd8669f1b8ccfbcaa9770db0a9fd8669f1b88bc54c4907618d69f1b9ce68906f49a8f1c1b12bad04fe55f8efdffffd8669f1bc3981fd6268c71f89f1b89169e294dce89594565c9528c574ab03125ea7df2fedcc1281b8385b65d8f451cc1ffffd8669f1b84d975225f2eb0df9f1bf3aa1f3634d4b73dffffffffff", + "cborBytes": [ + 216, 123, 159, 216, 102, 159, 27, 140, 207, 188, 170, 151, 112, 219, 10, 159, 216, 102, 159, 27, 136, 188, 84, + 196, 144, 118, 24, 214, 159, 27, 156, 230, 137, 6, 244, 154, 143, 28, 27, 18, 186, 208, 79, 229, 95, 142, 253, + 255, 255, 216, 102, 159, 27, 195, 152, 31, 214, 38, 140, 113, 248, 159, 27, 137, 22, 158, 41, 77, 206, 137, 89, + 69, 101, 201, 82, 140, 87, 74, 176, 49, 37, 234, 125, 242, 254, 220, 193, 40, 27, 131, 133, 182, 93, 143, 69, 28, + 193, 255, 255, 216, 102, 159, 27, 132, 217, 117, 34, 95, 46, 176, 223, 159, 27, 243, 170, 31, 54, 52, 212, 183, + 61, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 20, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14790422791688365175" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2514329644189245323" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4305cc8687f7fb69a7" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "06a5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17132523633758608634" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13436353308738449362" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b5fc09d84b" + }, + { + "_tag": "ByteArray", + "bytearray": "aa38027009c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6348959361821572122" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c477d22614c7ce44" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5946443980897970774" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2116065709705079659" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8187944586126340864" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4482007771226865352" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0eb9fa3d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11504403259224558208" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7970915559347825481" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "991237973f56dcc8e5e61a59" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02785696eca6d9c1e3" + } + ] + }, + "cborHex": "d905019f9f1bcd42232a806d2477a0ffbf1b22e4b17d6a225f8b494305cc8687f7fb69a7ff4206a59f1bedc2f379102a9cfad8669f1bba7784253bffefd29f45b5fc09d84b46aa38027009c41b581c08e6bec3fc1a48c477d22614c7ce44ffffbf1b5286034b862eea561b1d5dc68d345b2b6b1b71a16c3830a4b3001b3e334a523c847ec8440eb9fa3d1b9fa7d9cfb2ed0a80ffbf1b6e9e6178318fab494c991237973f56dcc8e5e61a59ffff4902785696eca6d9c1e3ff", + "cborBytes": [ + 217, 5, 1, 159, 159, 27, 205, 66, 35, 42, 128, 109, 36, 119, 160, 255, 191, 27, 34, 228, 177, 125, 106, 34, 95, + 139, 73, 67, 5, 204, 134, 135, 247, 251, 105, 167, 255, 66, 6, 165, 159, 27, 237, 194, 243, 121, 16, 42, 156, 250, + 216, 102, 159, 27, 186, 119, 132, 37, 59, 255, 239, 210, 159, 69, 181, 252, 9, 216, 75, 70, 170, 56, 2, 112, 9, + 196, 27, 88, 28, 8, 230, 190, 195, 252, 26, 72, 196, 119, 210, 38, 20, 199, 206, 68, 255, 255, 191, 27, 82, 134, + 3, 75, 134, 46, 234, 86, 27, 29, 93, 198, 141, 52, 91, 43, 107, 27, 113, 161, 108, 56, 48, 164, 179, 0, 27, 62, + 51, 74, 82, 60, 132, 126, 200, 68, 14, 185, 250, 61, 27, 159, 167, 217, 207, 178, 237, 10, 128, 255, 191, 27, 110, + 158, 97, 120, 49, 143, 171, 73, 76, 153, 18, 55, 151, 63, 86, 220, 200, 229, 230, 26, 89, 255, 255, 73, 2, 120, + 86, 150, 236, 166, 217, 193, 227, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 21, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14785973305435503081" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16486685467680027954" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "308f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8171af0a620c11ffbf" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16153559194920478223" + } + } + ] + }, + "cborHex": "d87f9f1bcd325461c0e439e91be4cc791528a9b532bf42308f498171af0a620c11ffbfff1be02cf880a77ae60fff", + "cborBytes": [ + 216, 127, 159, 27, 205, 50, 84, 97, 192, 228, 57, 233, 27, 228, 204, 121, 21, 40, 169, 181, 50, 191, 66, 48, 143, + 73, 129, 113, 175, 10, 98, 12, 17, 255, 191, 255, 27, 224, 44, 248, 128, 167, 122, 230, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 22, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14522593214820348416" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "90" + }, + { + "_tag": "ByteArray", + "bytearray": "aa" + } + ] + }, + "cborHex": "d8669f1bc98a9d95badd72009f419041aaffff", + "cborBytes": [216, 102, 159, 27, 201, 138, 157, 149, 186, 221, 114, 0, 159, 65, 144, 65, 170, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 23, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + }, + "cborHex": "d9050c9f14ff", + "cborBytes": [217, 5, 12, 159, 20, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 24, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "578625157270139352" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5545760008329192641" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "060ebda2f6ceba2f6397e587" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a42896a1b6" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89fd8669f1b0807b083cd30f1d880ff1b4cf67f584a0764c1bf4c060ebda2f6ceba2f6397e58745a42896a1b6ffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 216, 102, 159, 27, 8, 7, 176, 131, 205, 48, 241, + 216, 128, 255, 27, 76, 246, 127, 88, 74, 7, 100, 193, 191, 76, 6, 14, 189, 162, 246, 206, 186, 47, 99, 151, 229, + 135, 69, 164, 40, 150, 161, 182, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 25, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "06fe78" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "466419bf04e46af271dce903" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "910c7f3c1d116854" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d9183632a96948e58fcb84" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11649008219821137527" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3425dcb76ec1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9249904871796351155" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b9916" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15258846040794675034" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2a570bbb9692f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8443008492022622529" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de7cfbe20eb29d75" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "726975565400676973" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18091682511088008768" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "89d518591626b4fd96" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13795587967025495992" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9163887014204173357" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "778280933849011503" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f0b2f6db6ea4f56e" + }, + { + "_tag": "ByteArray", + "bytearray": "8371afa5e4" + } + ] + }, + "cborHex": "d905039f4306fe789f9f4c466419bf04e46af271dce903ff9f48910c7f3c1d116854ff80ff9f4bd9183632a96948e58fcb841ba1a99741c00b5e77bf463425dcb76ec11b805e43790993a0b3433b99161bd3c24fa117f1375a47b2a570bbb9692f1b752b977d929d694148de7cfbe20eb29d751b0a16bc6cd0189a6dffd8669f1bfb129163d68c3e409f4989d518591626b4fd961bbf73c629f2353fb81b7f2caaafe3746c2d1b0acd0262c587952fffffff48f0b2f6db6ea4f56e458371afa5e4ff", + "cborBytes": [ + 217, 5, 3, 159, 67, 6, 254, 120, 159, 159, 76, 70, 100, 25, 191, 4, 228, 106, 242, 113, 220, 233, 3, 255, 159, 72, + 145, 12, 127, 60, 29, 17, 104, 84, 255, 128, 255, 159, 75, 217, 24, 54, 50, 169, 105, 72, 229, 143, 203, 132, 27, + 161, 169, 151, 65, 192, 11, 94, 119, 191, 70, 52, 37, 220, 183, 110, 193, 27, 128, 94, 67, 121, 9, 147, 160, 179, + 67, 59, 153, 22, 27, 211, 194, 79, 161, 23, 241, 55, 90, 71, 178, 165, 112, 187, 185, 105, 47, 27, 117, 43, 151, + 125, 146, 157, 105, 65, 72, 222, 124, 251, 226, 14, 178, 157, 117, 27, 10, 22, 188, 108, 208, 24, 154, 109, 255, + 216, 102, 159, 27, 251, 18, 145, 99, 214, 140, 62, 64, 159, 73, 137, 213, 24, 89, 22, 38, 180, 253, 150, 27, 191, + 115, 198, 41, 242, 53, 63, 184, 27, 127, 44, 170, 175, 227, 116, 108, 45, 27, 10, 205, 2, 98, 197, 135, 149, 47, + 255, 255, 255, 72, 240, 178, 246, 219, 110, 164, 245, 110, 69, 131, 113, 175, 165, 228, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 26, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15759556405148198251" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f1bdab5310d8297256bffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 27, 218, 181, 49, 13, 130, 151, 37, 107, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 27, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14403462719991669438" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17093855885030924491" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18234782333538556383" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2356084487048588440" + } + } + } + ] + } + ] + }, + "cborHex": "d905099fbf1bc7e36107f0af62be1bed39935c3cfd20cb1bfd0ef5eb9b2259df1b20b27e5b9f56ec98ffff", + "cborBytes": [ + 217, 5, 9, 159, 191, 27, 199, 227, 97, 7, 240, 175, 98, 190, 27, 237, 57, 147, 92, 60, 253, 32, 203, 27, 253, 14, + 245, 235, 155, 34, 89, 223, 27, 32, 178, 126, 91, 159, 86, 236, 152, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 28, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11858404379097005012" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3918465636834583281" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17677325073718692184" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "040292" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17355070809106902422" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1201882727002475508" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2678116427357615536" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "06e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "383c7ef6ab363902d8f4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c735109cc" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11113663766718108045" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3559139772346869748" + } + } + ] + }, + "cborHex": "d8669f1ba49183f44b037bd49f9fd8669f1b36612fbc5c19a2f19f1bf552797efe1bc958ffffd8669f1bfffffffffffffff29f430402921bf0d998f324916d961b10adf1f8eca90bf41b252a94b38fc9f5b0ffffd87e9f4206e81bfffffffffffffffdffbf134a383c7ef6ab363902d8f41bfffffffffffffff8457c735109ccffff021b9a3baa50285cd18d1b31649ac40cb327f4ffff", + "cborBytes": [ + 216, 102, 159, 27, 164, 145, 131, 244, 75, 3, 123, 212, 159, 159, 216, 102, 159, 27, 54, 97, 47, 188, 92, 25, 162, + 241, 159, 27, 245, 82, 121, 126, 254, 27, 201, 88, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 242, 159, 67, 4, 2, 146, 27, 240, 217, 152, 243, 36, 145, 109, 150, 27, 16, 173, 241, 248, 236, 169, 11, 244, 27, + 37, 42, 148, 179, 143, 201, 245, 176, 255, 255, 216, 126, 159, 66, 6, 232, 27, 255, 255, 255, 255, 255, 255, 255, + 253, 255, 191, 19, 74, 56, 60, 126, 246, 171, 54, 57, 2, 216, 244, 27, 255, 255, 255, 255, 255, 255, 255, 248, 69, + 124, 115, 81, 9, 204, 255, 255, 2, 27, 154, 59, 170, 80, 40, 92, 209, 141, 27, 49, 100, 154, 196, 12, 179, 39, + 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 29, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5969158267512013488" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14289601917306374700" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "70e518c162451081b5004c60" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12021153540329642322" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1440327982879046877" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b52d6b5d17f23c2b09fd87f9fd8669f1bc64edd3bf6c98a2c9f4c70e518c162451081b5004c601ba6d3b77441c719521b13fd12ab538f7cddffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 82, 214, 181, 209, 127, 35, 194, 176, 159, 216, 127, 159, 216, 102, 159, 27, 198, 78, 221, 59, + 246, 201, 138, 44, 159, 76, 112, 229, 24, 193, 98, 69, 16, 129, 181, 0, 76, 96, 27, 166, 211, 183, 116, 65, 199, + 25, 82, 27, 19, 253, 18, 171, 83, 143, 124, 221, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 30, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [] + }, + "cborHex": "d87b80", + "cborBytes": [216, 123, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 31, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4679840753358304465" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11358230577849771012" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14178607258535690019" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ee133971cb59e70eef6a167" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4506834596099526175" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2055506574682773574" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "91697237822001086" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7560788879801833650" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d7746b2bc0d610be2c37397" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11715163784393659812" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d7a40a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14061856265198981189" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b49f21b253bc18b7efb76f26" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b40f2225ecd5174d19f41fcbf1b9da08a8835b724041bc4c4882e1ecb7f234c6ee133971cb59e70eef6a1671b3e8b7e2fd9f40e1fff9fbf1b1c86a056d17258461b0145c626e743cfbe1b68ed516d6a4fd8b24c3d7746b2bc0d610be2c373971ba2949f646e4e15a4449d7a40a41bc325bfc531c950454cb49f21b253bc18b7efb76f26ffff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 64, 242, 34, 94, 205, 81, 116, 209, 159, 65, 252, 191, 27, 157, 160, 138, 136, 53, 183, 36, 4, + 27, 196, 196, 136, 46, 30, 203, 127, 35, 76, 110, 225, 51, 151, 28, 181, 158, 112, 238, 246, 161, 103, 27, 62, + 139, 126, 47, 217, 244, 14, 31, 255, 159, 191, 27, 28, 134, 160, 86, 209, 114, 88, 70, 27, 1, 69, 198, 38, 231, + 67, 207, 190, 27, 104, 237, 81, 109, 106, 79, 216, 178, 76, 61, 119, 70, 178, 188, 13, 97, 11, 226, 195, 115, 151, + 27, 162, 148, 159, 100, 110, 78, 21, 164, 68, 157, 122, 64, 164, 27, 195, 37, 191, 197, 49, 201, 80, 69, 76, 180, + 159, 33, 178, 83, 188, 24, 183, 239, 183, 111, 38, 255, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 32, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ef333385cd23" + }, + { + "_tag": "ByteArray", + "bytearray": "3c3253" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f46ef333385cd23433c3253ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 70, 239, 51, 51, 133, 205, 35, 67, 60, 50, 83, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 33, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4574237009755068957" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15736511403239341616" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11646358177279179001" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cf0a9d83592f75ec915" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13770224808975837262" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4585848673302840917" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17734579443812358851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7643404119114652955" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9fbf1b3f7af45334e55a1d1bda6351bee1f6fe301ba1a02d0ea3b0f8f94a8cf0a9d83592f75ec9151bbf19aa818846a84e1b3fa435124de986551bf61de20ad5615ac31b6a12d38cc2961d1bffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 191, 27, 63, 122, 244, 83, 52, 229, 90, 29, 27, + 218, 99, 81, 190, 225, 246, 254, 48, 27, 161, 160, 45, 14, 163, 176, 248, 249, 74, 140, 240, 169, 216, 53, 146, + 247, 94, 201, 21, 27, 191, 25, 170, 129, 136, 70, 168, 78, 27, 63, 164, 53, 18, 77, 233, 134, 85, 27, 246, 29, + 226, 10, 213, 97, 90, 195, 27, 106, 18, 211, 140, 194, 150, 29, 27, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 34, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14081016244475810131" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e4f67a2ebea1d18" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17817193616642973156" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e959c5f76d5b75b5a7a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6226848303122255989" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df8c180cab26" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3884403052203557280" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f1bc369d1ab807c51539fbf480e4f67a2ebea1d181bf7436331de5c9de44a5e959c5f76d5b75b5a7a1b566a358a59d8907546df8c180cab261b35e82bfedb0941a0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 27, 195, 105, 209, 171, 128, 124, 81, 83, 159, + 191, 72, 14, 79, 103, 162, 235, 234, 29, 24, 27, 247, 67, 99, 49, 222, 92, 157, 228, 74, 94, 149, 156, 95, 118, + 213, 183, 91, 90, 122, 27, 86, 106, 53, 138, 89, 216, 144, 117, 70, 223, 140, 24, 12, 171, 38, 27, 53, 232, 43, + 254, 219, 9, 65, 160, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 35, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2536156116542590064" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65498cdb6c9718d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17662257059537514472" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e64ff49bad980" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "857197eb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0f814e11510" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4382231529007445460" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5a7354c3371475d4a5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6377699576526010402" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d3954bf07155ad" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8fa5a4a8c4f47c7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14378579222266886308" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "197101712856994884" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17113143049272088834" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ad98784f95" + }, + { + "_tag": "ByteArray", + "bytearray": "a70a71afb168b0bcf8" + }, + { + "_tag": "ByteArray", + "bytearray": "aba7e81229c5ff" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2048429061004227081" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8d4b69" + }, + { + "_tag": "ByteArray", + "bytearray": "f8d168ef" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17018031111267098947" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8ebde5055c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16251723125497578909" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16928507649654786480" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14277482076881402747" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16226256475907467675" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15243605996265868730" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e592803f9a3b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17618885468822317203" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41ab32eb14e8a14b80" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905099fbf1b23323c8d05748c704865498cdb6c9718d31bf51cf1378d5e6fe8472e64ff49bad98044857197eb46b0f814e1151041991b3cd0d05b8a0175d4ff80495a7354c3371475d4a59fd8669f1b588223f96efdf8229f47d3954bf07155adffff9f488fa5a4a8c4f47c7b1bc78af99f2607b8a441bc1b02bc3ef6ab765444ffd8669f1bed7e18ef1a4ed9029f45ad98784f9549a70a71afb168b0bcf847aba7e81229c5ffffffd8669f1b1c6d7b60c0be72099f438d4b6944f8d168ef1bec2c31215b9f2143458ebde5055cffff1be189b813cb48c59dff9f1beaee24042b2809b0bf1bc623ce4db785bb7b1be12f3e4b60d8a99b1bd38c2ae3b7710dba46e592803f9a3b1bf482dafc2b7228934941ab32eb14e8a14b80ffffff", + "cborBytes": [ + 217, 5, 9, 159, 191, 27, 35, 50, 60, 141, 5, 116, 140, 112, 72, 101, 73, 140, 219, 108, 151, 24, 211, 27, 245, 28, + 241, 55, 141, 94, 111, 232, 71, 46, 100, 255, 73, 186, 217, 128, 68, 133, 113, 151, 235, 70, 176, 248, 20, 225, + 21, 16, 65, 153, 27, 60, 208, 208, 91, 138, 1, 117, 212, 255, 128, 73, 90, 115, 84, 195, 55, 20, 117, 212, 165, + 159, 216, 102, 159, 27, 88, 130, 35, 249, 110, 253, 248, 34, 159, 71, 211, 149, 75, 240, 113, 85, 173, 255, 255, + 159, 72, 143, 165, 164, 168, 196, 244, 124, 123, 27, 199, 138, 249, 159, 38, 7, 184, 164, 65, 188, 27, 2, 188, 62, + 246, 171, 118, 84, 68, 255, 216, 102, 159, 27, 237, 126, 24, 239, 26, 78, 217, 2, 159, 69, 173, 152, 120, 79, 149, + 73, 167, 10, 113, 175, 177, 104, 176, 188, 248, 71, 171, 167, 232, 18, 41, 197, 255, 255, 255, 216, 102, 159, 27, + 28, 109, 123, 96, 192, 190, 114, 9, 159, 67, 141, 75, 105, 68, 248, 209, 104, 239, 27, 236, 44, 49, 33, 91, 159, + 33, 67, 69, 142, 189, 229, 5, 92, 255, 255, 27, 225, 137, 184, 19, 203, 72, 197, 157, 255, 159, 27, 234, 238, 36, + 4, 43, 40, 9, 176, 191, 27, 198, 35, 206, 77, 183, 133, 187, 123, 27, 225, 47, 62, 75, 96, 216, 169, 155, 27, 211, + 140, 42, 227, 183, 113, 13, 186, 70, 229, 146, 128, 63, 154, 59, 27, 244, 130, 218, 252, 43, 114, 40, 147, 73, 65, + 171, 50, 235, 20, 232, 161, 75, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 36, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9950029302789922293" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15265296889279124057" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e41d01fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ccd2d601b04f2662e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f86f359202695a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13041335592396731162" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f887" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e327c821dd321bc3dd1ab86" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffe658fb2b835a24" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2222147285237210022" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b8a159aeef1855df59f9fd9050a9f1bd3d93aa44c5b9259ffbf44e41d01fb49ccd2d601b04f2662e547f86f359202695a1bb4fc21a01577331a42f8874c8e327c821dd321bc3dd1ab8648ffe658fb2b835a241b1ed6a72eb7299ba6ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 138, 21, 154, 238, 241, 133, 93, 245, 159, 159, 217, 5, 10, 159, 27, 211, 217, 58, 164, 76, 91, + 146, 89, 255, 191, 68, 228, 29, 1, 251, 73, 204, 210, 214, 1, 176, 79, 38, 98, 229, 71, 248, 111, 53, 146, 2, 105, + 90, 27, 180, 252, 33, 160, 21, 119, 51, 26, 66, 248, 135, 76, 142, 50, 124, 130, 29, 211, 33, 188, 61, 209, 171, + 134, 72, 255, 230, 88, 251, 43, 131, 90, 36, 27, 30, 214, 167, 46, 183, 41, 155, 166, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 37, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9121664163459591563" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e15e5606fc2d9cab" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14134291246742680459" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3291132786725062834" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15660639501760903991" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8078731603616450270" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9933129625481689352" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4181359342332357107" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10047531665176552204" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5809430616055710189" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "178510642059703083" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7d3b883fe8fccf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10868889635071469630" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17213480499527341411" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13718750886797162897" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "70dd778eb0" + } + ] + } + ] + }, + "cborHex": "d8669f1b7e96a93a5f6b6d8b9f04bf0548e15e5606fc2d9cabffd8669f1bc42717009202b38b9fd8669f1b2dac73d5156388b29f1bd955c4a739e8bb371b701d6b972d47c6deffff1b89d990c432beb9081b3a072c2b05fb29f31b8b7000d0bc56630cd8669f1b509f3e5d994781ed9f1b027a327bb098732b477d3b883fe8fccf1b96d60d89895c283e1beee291503a70d563ffffffffd8669f1bbe62cb3f199eb9919f4570dd778eb0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 126, 150, 169, 58, 95, 107, 109, 139, 159, 4, 191, 5, 72, 225, 94, 86, 6, 252, 45, 156, 171, + 255, 216, 102, 159, 27, 196, 39, 23, 0, 146, 2, 179, 139, 159, 216, 102, 159, 27, 45, 172, 115, 213, 21, 99, 136, + 178, 159, 27, 217, 85, 196, 167, 57, 232, 187, 55, 27, 112, 29, 107, 151, 45, 71, 198, 222, 255, 255, 27, 137, + 217, 144, 196, 50, 190, 185, 8, 27, 58, 7, 44, 43, 5, 251, 41, 243, 27, 139, 112, 0, 208, 188, 86, 99, 12, 216, + 102, 159, 27, 80, 159, 62, 93, 153, 71, 129, 237, 159, 27, 2, 122, 50, 123, 176, 152, 115, 43, 71, 125, 59, 136, + 63, 232, 252, 207, 27, 150, 214, 13, 137, 137, 92, 40, 62, 27, 238, 226, 145, 80, 58, 112, 213, 99, 255, 255, 255, + 255, 216, 102, 159, 27, 190, 98, 203, 63, 25, 158, 185, 145, 159, 69, 112, 221, 119, 142, 176, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 38, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "267888b3310b5df4d320" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6685330227640747637" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8376b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2324456056369392265" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15429864562955333878" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11659181802576066770" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e9ea9272ef7ee9" + }, + { + "_tag": "ByteArray", + "bytearray": "defc2899bf0b18dca781" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "30fa11810cb8fccd8b425cee" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a09f4be5d8af778619" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17029353442215283465" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "58f8a1e9" + }, + { + "_tag": "ByteArray", + "bytearray": "c54e5c6989cfe544be0ba18f" + }, + { + "_tag": "ByteArray", + "bytearray": "139eb389bd95775c69" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1477451195902485780" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f4a267888b3310b5df4d3209f9f1b5cc7106bf0b5467543c8376b1b20422077bfe72a891bd621e411af5730f6ffd8669f1ba1cdbc13923eb8d29f47e9ea9272ef7ee94adefc2899bf0b18dca781ffff4c30fa11810cb8fccd8b425ceeffd8669f1bffffffffffffffed80ff49a09f4be5d8af778619d905089fd8669f1bec546abaf5d14b0980ff4458f8a1e94cc54e5c6989cfe544be0ba18f49139eb389bd95775c691b1480f608e8be6514ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 74, 38, 120, 136, 179, 49, 11, 93, 244, 211, 32, + 159, 159, 27, 92, 199, 16, 107, 240, 181, 70, 117, 67, 200, 55, 107, 27, 32, 66, 32, 119, 191, 231, 42, 137, 27, + 214, 33, 228, 17, 175, 87, 48, 246, 255, 216, 102, 159, 27, 161, 205, 188, 19, 146, 62, 184, 210, 159, 71, 233, + 234, 146, 114, 239, 126, 233, 74, 222, 252, 40, 153, 191, 11, 24, 220, 167, 129, 255, 255, 76, 48, 250, 17, 129, + 12, 184, 252, 205, 139, 66, 92, 238, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 128, 255, 73, + 160, 159, 75, 229, 216, 175, 119, 134, 25, 217, 5, 8, 159, 216, 102, 159, 27, 236, 84, 106, 186, 245, 209, 75, 9, + 128, 255, 68, 88, 248, 161, 233, 76, 197, 78, 92, 105, 137, 207, 229, 68, 190, 11, 161, 143, 73, 19, 158, 179, + 137, 189, 149, 119, 92, 105, 27, 20, 128, 246, 8, 232, 190, 101, 20, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 39, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15270207398275598326" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11211570863281165720" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3c444487" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "59e295d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1069560038830229348" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7e625be756aadd0d855d" + } + ] + } + ] + }, + "cborHex": "d8669f1bd3eaacb944c247f69fd8669f1b9b97804c77fe55989f9f443c444487ffbf4459e295d71b0ed7d730446dc764ff4a7e625be756aadd0d855dffffffff", + "cborBytes": [ + 216, 102, 159, 27, 211, 234, 172, 185, 68, 194, 71, 246, 159, 216, 102, 159, 27, 155, 151, 128, 76, 119, 254, 85, + 152, 159, 159, 68, 60, 68, 68, 135, 255, 191, 68, 89, 226, 149, 215, 27, 14, 215, 215, 48, 68, 109, 199, 100, 255, + 74, 126, 98, 91, 231, 86, 170, 221, 13, 133, 93, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 40, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7686041694717717661" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9409321724774950155" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9864851529668033216" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05ebcd32b125" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11892425047930571070" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1041127542874612311" + } + } + } + ] + } + ] + }, + "cborHex": "d87e9fd8669f1b6aaa4e32ee7dac9d9fa0d8669f1b8294a0418693a50b80ffffffbf1b88e6fe3333d4fac04605ebcd32b1251ba50a619283dc093e1b0e72d3fbeeeaa257ffff", + "cborBytes": [ + 216, 126, 159, 216, 102, 159, 27, 106, 170, 78, 50, 238, 125, 172, 157, 159, 160, 216, 102, 159, 27, 130, 148, + 160, 65, 134, 147, 165, 11, 128, 255, 255, 255, 191, 27, 136, 230, 254, 51, 51, 212, 250, 192, 70, 5, 235, 205, + 50, 177, 37, 27, 165, 10, 97, 146, 131, 220, 9, 62, 27, 14, 114, 211, 251, 238, 234, 162, 87, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 41, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f247024be917" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4909733425242577765" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2272892497431371624" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ca77" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6c9a9ab6ecf60dabb83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8828228615766794753" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e600fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16553352933272361074" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "faeabec12e446846fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e270182f20996e3a968" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "871c46c0e03691f2166d" + }, + { + "_tag": "ByteArray", + "bytearray": "5698a4af2945de98" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7208183005624532075" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14369182839799931579" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f79c8f16c5a6d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16825607580842048889" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06079af38374368b8a0e92" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5207484090504475782" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c" + }, + { + "_tag": "ByteArray", + "bytearray": "94142469" + }, + { + "_tag": "ByteArray", + "bytearray": "7fc28211b8b6a2ce849b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a7757e2e" + }, + { + "_tag": "ByteArray", + "bytearray": "d2ea7ae3437b9e05c1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + ] + }, + "cborHex": "d905069f46f247024be917809fd8669f1b4422e08991721b659f1b1f8aefaf220c1f68ffff42ca77bf4ac6c9a9ab6ecf60dabb831b7a842b26eeb7e20143e600fd1be5b952ca155e987249faeabec12e446846fb4a3e270182f20996e3a968ff9f4a871c46c0e03691f2166d485698a4af2945de981b64089c40c641fc6b1bc76997a95ee9e2bb477f79c8f16c5a6dffbf1be98090f2ea35bd794b06079af38374368b8a0e92ffffd905089f9f1b4844b3309c047486418c44941424694a7fc28211b8b6a2ce849bff44a7757e2e49d2ea7ae3437b9e05c1ff1bfffffffffffffffbff", + "cborBytes": [ + 217, 5, 6, 159, 70, 242, 71, 2, 75, 233, 23, 128, 159, 216, 102, 159, 27, 68, 34, 224, 137, 145, 114, 27, 101, + 159, 27, 31, 138, 239, 175, 34, 12, 31, 104, 255, 255, 66, 202, 119, 191, 74, 198, 201, 169, 171, 110, 207, 96, + 218, 187, 131, 27, 122, 132, 43, 38, 238, 183, 226, 1, 67, 230, 0, 253, 27, 229, 185, 82, 202, 21, 94, 152, 114, + 73, 250, 234, 190, 193, 46, 68, 104, 70, 251, 74, 62, 39, 1, 130, 242, 9, 150, 227, 169, 104, 255, 159, 74, 135, + 28, 70, 192, 224, 54, 145, 242, 22, 109, 72, 86, 152, 164, 175, 41, 69, 222, 152, 27, 100, 8, 156, 64, 198, 65, + 252, 107, 27, 199, 105, 151, 169, 94, 233, 226, 187, 71, 127, 121, 200, 241, 108, 90, 109, 255, 191, 27, 233, 128, + 144, 242, 234, 53, 189, 121, 75, 6, 7, 154, 243, 131, 116, 54, 139, 138, 14, 146, 255, 255, 217, 5, 8, 159, 159, + 27, 72, 68, 179, 48, 156, 4, 116, 134, 65, 140, 68, 148, 20, 36, 105, 74, 127, 194, 130, 17, 184, 182, 162, 206, + 132, 155, 255, 68, 167, 117, 126, 46, 73, 210, 234, 122, 227, 67, 123, 158, 5, 193, 255, 27, 255, 255, 255, 255, + 255, 255, 255, 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 42, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10423324196417316281" + } + } + ] + }, + "cborHex": "d9050c9f1b90a71621aa3025b9ff", + "cborBytes": [217, 5, 12, 159, 27, 144, 167, 22, 33, 170, 48, 37, 185, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 43, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7710550071492368179" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13272638865033907470" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f1b6b016070122a5733d8669f1bb831e2b9ee63cd0e80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 27, 107, 1, 96, 112, 18, 42, 87, 51, 216, 102, + 159, 27, 184, 49, 226, 185, 238, 99, 205, 14, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 44, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb2bb7250528" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10196176527431163845" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28bb5228873ed7" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3119973437538581706" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14555849828183185406" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1723f8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "565250041377719093" + } + } + ] + }, + "cborHex": "d905029f41c09f9f46cb2bb7250528ffff9f1b8d801887b0b5dfc54728bb5228873ed7ff9f1b2b4c5f4fa5243cca1bca00c44c6cca17fe431723f8ff1b07d82beaf5980335ff", + "cborBytes": [ + 217, 5, 2, 159, 65, 192, 159, 159, 70, 203, 43, 183, 37, 5, 40, 255, 255, 159, 27, 141, 128, 24, 135, 176, 181, + 223, 197, 71, 40, 187, 82, 40, 135, 62, 215, 255, 159, 27, 43, 76, 95, 79, 165, 36, 60, 202, 27, 202, 0, 196, 76, + 108, 202, 23, 254, 67, 23, 35, 248, 255, 27, 7, 216, 43, 234, 245, 152, 3, 53, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 45, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1555653650620977745" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dffaf2dcf4830a335be063" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2327726918987930461" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2215222868311291903" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11022366448032244940" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "628361206279269632" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b1596cac0c6cd92519f4bdffaf2dcf4830a335be0631b204dbf4ccc63db5d1b1ebe0d76440437ffd8669f1b98f74fe2af2564cc9f1b08b863301ae96d00ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 21, 150, 202, 192, 198, 205, 146, 81, 159, 75, 223, 250, 242, 220, 244, 131, 10, 51, 91, 224, + 99, 27, 32, 77, 191, 76, 204, 99, 219, 93, 27, 30, 190, 13, 118, 68, 4, 55, 255, 216, 102, 159, 27, 152, 247, 79, + 226, 175, 37, 100, 204, 159, 27, 8, 184, 99, 48, 26, 233, 109, 0, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 46, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4370750868151868392" + } + }, + { + "_tag": "ByteArray", + "bytearray": "24948c35cad678" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4673669936255959597" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18011863970705771314" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13299847750308999674" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f1b3ca806c1e1ec1be84724948c35cad6789f1b40dc360b7bf5822d1bf9f6fed9b4930b321bb8928d1033f231faffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 27, 60, 168, 6, 193, 225, 236, 27, 232, 71, 36, + 148, 140, 53, 202, 214, 120, 159, 27, 64, 220, 54, 11, 123, 245, 130, 45, 27, 249, 246, 254, 217, 180, 147, 11, + 50, 27, 184, 146, 141, 16, 51, 242, 49, 250, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 47, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8490074767341229212" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15921623389583848461" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "31c9bf92" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13334421042247615446" + } + }, + { + "_tag": "ByteArray", + "bytearray": "699e1ee9e16ee379e107" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b75d2ce04bfe1949c9f9fd8669f1bdcf4f81dcfb2340d9f4431c9bf921bb90d614a04a9c3d64a699e1ee9e16ee379e107ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 117, 210, 206, 4, 191, 225, 148, 156, 159, 159, 216, 102, 159, 27, 220, 244, 248, 29, 207, 178, + 52, 13, 159, 68, 49, 201, 191, 146, 27, 185, 13, 97, 74, 4, 169, 195, 214, 74, 105, 158, 30, 233, 225, 110, 227, + 121, 225, 7, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 48, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1658337963390061642" + } + }, + { + "_tag": "ByteArray", + "bytearray": "89275514b588a61906" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f1b170399976968cc4a4989275514b588a61906ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 27, 23, 3, 153, 151, 105, 104, 204, 74, 73, 137, + 39, 85, 20, 181, 136, 166, 25, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 49, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15421479096872735373" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "353fe1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10095530713687614310" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bd60419883836128d9f43353fe1d8669f1b8c1a87b21865636680ffffff", + "cborBytes": [ + 216, 102, 159, 27, 214, 4, 25, 136, 56, 54, 18, 141, 159, 67, 53, 63, 225, 216, 102, 159, 27, 140, 26, 135, 178, + 24, 101, 99, 102, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 50, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0320979d1c45b2e89c2c13" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17749012568536524140" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51754a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15812138449891439993" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "61ab" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99fbf4b0320979d1c45b2e89c2c131bf65128e48d90256c4351754a1bdb700024d5133579ff4261abffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 191, 75, 3, 32, 151, 157, 28, 69, 178, 232, 156, + 44, 19, 27, 246, 81, 40, 228, 141, 144, 37, 108, 67, 81, 117, 74, 27, 219, 112, 0, 36, 213, 19, 53, 121, 255, 66, + 97, 171, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 51, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [] + }, + "cborHex": "d87c80", + "cborBytes": [216, 124, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 52, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3702303170801122594" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0903096528" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7149617589404169632" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2a88e3601" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b578dff3f20ea910" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8644" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c769" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15035248307456740861" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8e2ad3ff4aa0aee2823" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5881659048381832451" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15379969951917002186" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18309847190084154059" + } + }, + { + "_tag": "ByteArray", + "bytearray": "46" + } + ] + }, + "cborHex": "d8669f1b3361391e42673d229fbf4509030965284274e2417d1b63388b513851f5a041b445d2a88e360148b578dff3f20ea91042864442c7691bd0a7eeacebc08dfd4af8e2ad3ff4aa0aee28234152ff1b519fd9bdfcc2dd031bd570a12f4831cdca1bfe19a50278a672cb4146ffff", + "cborBytes": [ + 216, 102, 159, 27, 51, 97, 57, 30, 66, 103, 61, 34, 159, 191, 69, 9, 3, 9, 101, 40, 66, 116, 226, 65, 125, 27, 99, + 56, 139, 81, 56, 81, 245, 160, 65, 180, 69, 210, 168, 142, 54, 1, 72, 181, 120, 223, 243, 242, 14, 169, 16, 66, + 134, 68, 66, 199, 105, 27, 208, 167, 238, 172, 235, 192, 141, 253, 74, 248, 226, 173, 63, 244, 170, 10, 238, 40, + 35, 65, 82, 255, 27, 81, 159, 217, 189, 252, 194, 221, 3, 27, 213, 112, 161, 47, 72, 49, 205, 202, 27, 254, 25, + 165, 2, 120, 166, 114, 203, 65, 70, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 53, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16881093234841323913" + }, + "fields": [] + }, + "cborHex": "d8669f1bea45b0db72f7898980ff", + "cborBytes": [216, 102, 159, 27, 234, 69, 176, 219, 114, 247, 137, 137, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 54, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15875157634905396376" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "38bd1c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3026144491838513562" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42217ce9b1816480" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15e4" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12813572667571354673" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3536366833685627152" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16391952817988877348" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14874356644564821951" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d87d9f1bdc4fe3c23dddd4989fbf4338bd1c1b29ff0661d30a219a4842217ce9b18164804215e4ff80d8669f1bb1d2f473b23ebc319f1b3113b2e6154e01101be37bea3d5b30bc24ffffff801bce6c548f7dc1e7bf80ff", + "cborBytes": [ + 216, 125, 159, 27, 220, 79, 227, 194, 61, 221, 212, 152, 159, 191, 67, 56, 189, 28, 27, 41, 255, 6, 97, 211, 10, + 33, 154, 72, 66, 33, 124, 233, 177, 129, 100, 128, 66, 21, 228, 255, 128, 216, 102, 159, 27, 177, 210, 244, 115, + 178, 62, 188, 49, 159, 27, 49, 19, 178, 230, 21, 78, 1, 16, 27, 227, 123, 234, 61, 91, 48, 188, 36, 255, 255, 255, + 128, 27, 206, 108, 84, 143, 125, 193, 231, 191, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 55, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4685320923537823469" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7965052519714711186" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "14580535" + }, + { + "_tag": "ByteArray", + "bytearray": "4b81" + }, + { + "_tag": "ByteArray", + "bytearray": "06a257d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15389071891997105682" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14355737515893431515" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5343474035305619911" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04235e" + }, + { + "_tag": "ByteArray", + "bytearray": "cd" + }, + { + "_tag": "ByteArray", + "bytearray": "2f8232889363b1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4641537691826625100" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1005a97f739b592d861200" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12260537290294734509" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11119679117471155646" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13396270104839436620" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13669568732127640979" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "000205c529064e05ff06dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15315017828859080807" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6075855517629633772" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "046a2bdf" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b41059a8e5a2d56ed9f9f1b6e898d10e6ece6929f4414580535424b814406a257d01bd590f759d96f9e121bc739d335f3939cdbffd8669f1b4a27d552fcea21c79f4304235e41cd472f8232889363b11b406a0df054e99a4c4b1005a97f739b592d861200ffffffa00a9f1baa262db4d772aeadffbf1b9a51093e253285be1bb9e91caf1223b94c1bbdb410565f413d934b000205c529064e05ff06dd1bd489df92a9eb70670e1bffffffffffffffed1b5451c666eae954ec1bfffffffffffffff544046a2bdfffffff", + "cborBytes": [ + 216, 102, 159, 27, 65, 5, 154, 142, 90, 45, 86, 237, 159, 159, 27, 110, 137, 141, 16, 230, 236, 230, 146, 159, 68, + 20, 88, 5, 53, 66, 75, 129, 68, 6, 162, 87, 208, 27, 213, 144, 247, 89, 217, 111, 158, 18, 27, 199, 57, 211, 53, + 243, 147, 156, 219, 255, 216, 102, 159, 27, 74, 39, 213, 82, 252, 234, 33, 199, 159, 67, 4, 35, 94, 65, 205, 71, + 47, 130, 50, 136, 147, 99, 177, 27, 64, 106, 13, 240, 84, 233, 154, 76, 75, 16, 5, 169, 127, 115, 155, 89, 45, + 134, 18, 0, 255, 255, 255, 160, 10, 159, 27, 170, 38, 45, 180, 215, 114, 174, 173, 255, 191, 27, 154, 81, 9, 62, + 37, 50, 133, 190, 27, 185, 233, 28, 175, 18, 35, 185, 76, 27, 189, 180, 16, 86, 95, 65, 61, 147, 75, 0, 2, 5, 197, + 41, 6, 78, 5, 255, 6, 221, 27, 212, 137, 223, 146, 169, 235, 112, 103, 14, 27, 255, 255, 255, 255, 255, 255, 255, + 237, 27, 84, 81, 198, 102, 234, 233, 84, 236, 27, 255, 255, 255, 255, 255, 255, 255, 245, 68, 4, 106, 43, 223, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 56, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8090058666279561165" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21d39c54" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2e10c19c64b6747" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aab30bb71ca8e0f3e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8407039372911608207" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3fa61249d030f6f16e8b4ee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ee41d39e4bea6260045" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6793908502212181856" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33f1e7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6596133313773436472" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d13a9d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1068621153234376409" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17894768603259485429" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b4d2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4273174874486861617" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c951b17ee" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9572246333691095559" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "559cbfaa54fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12480185965502513446" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6954d5c7e30a29c1" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b7045a97e77a9e7cd9fbf4421d39c5448e2e10c19c64b674749aab30bb71ca8e0f3e51b74abcdc46b1e818f4cb3fa61249d030f6f16e8b4ee4a0ee41d39e4bea626004541b91b5e48cfc97edcff60ff9fa0ffbf4333f1e71b5b8a2c4d1295fe3843d13a9d1b0ed48146ee00d6d9ff1bf856fd3bef183cf59f42b4d2bf1b3b4d5de878e9ef31459c951b17ee1b84d7735316316a0746559cbfaa54fe1bad3287034497c126486954d5c7e30a29c1ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 112, 69, 169, 126, 119, 169, 231, 205, 159, 191, 68, 33, 211, 156, 84, 72, 226, 225, 12, 25, + 198, 75, 103, 71, 73, 170, 179, 11, 183, 28, 168, 224, 243, 229, 27, 116, 171, 205, 196, 107, 30, 129, 143, 76, + 179, 250, 97, 36, 157, 3, 15, 111, 22, 232, 180, 238, 74, 14, 228, 29, 57, 228, 190, 166, 38, 0, 69, 65, 185, 27, + 94, 72, 207, 201, 126, 220, 255, 96, 255, 159, 160, 255, 191, 67, 51, 241, 231, 27, 91, 138, 44, 77, 18, 149, 254, + 56, 67, 209, 58, 157, 27, 14, 212, 129, 70, 238, 0, 214, 217, 255, 27, 248, 86, 253, 59, 239, 24, 60, 245, 159, + 66, 180, 210, 191, 27, 59, 77, 93, 232, 120, 233, 239, 49, 69, 156, 149, 27, 23, 238, 27, 132, 215, 115, 83, 22, + 49, 106, 7, 70, 85, 156, 191, 170, 84, 254, 27, 173, 50, 135, 3, 68, 151, 193, 38, 72, 105, 84, 213, 199, 227, 10, + 41, 193, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 57, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1573327990600109665" + }, + "fields": [] + }, + "cborHex": "d8669f1b15d59578bae60e6180ff", + "cborBytes": [216, 102, 159, 27, 21, 213, 149, 120, 186, 230, 14, 97, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 58, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [] + }, + "cborHex": "d8669f1bffffffffffffffff80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 59, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14949487852117785130" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9799623340140074527" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9604186609063248132" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5046907209496435971" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ed" + }, + { + "_tag": "ByteArray", + "bytearray": "b9" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "79d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11079199958913193096" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8830509859974616988" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c2980a006d962bb7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "210801194592340657" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d40d48591a8f6a72" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10373123623460183110" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "2fd850" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2242976970971174130" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e4a82a68c1a2675320" + }, + { + "_tag": "ByteArray", + "bytearray": "31" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5119119293360594056" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7669778233915654600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16759733810467068151" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3639559890472687755" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7efbc771" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bcf773ffee77f7a2a9fd8669f1b87ff4181d9ad161f9fd8669f1b8548ecd5f5c741049f1b460a375e0c649d0341ed41b9ffff9f4279d01b99c139a99a8b1488ff1b7a8c45ee7d5f179cffff48c2980a006d962bb7d8669f1b02ecea91d1e78ab19f8048d40d48591a8f6a72a0d8669f1b8ff4bcf9f38e9c4680ff432fd850ffffd8669f1b1f20a7abda1e54f29f49e4a82a68c1a26753204131d8669f1b470ac3e0039b5c8880ffd8669f1b6a7086aae290c1c89f1be896891a8efe58f71b3282506fea62588b447efbc771ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 207, 119, 63, 254, 231, 127, 122, 42, 159, 216, 102, 159, 27, 135, 255, 65, 129, 217, 173, 22, + 31, 159, 216, 102, 159, 27, 133, 72, 236, 213, 245, 199, 65, 4, 159, 27, 70, 10, 55, 94, 12, 100, 157, 3, 65, 237, + 65, 185, 255, 255, 159, 66, 121, 208, 27, 153, 193, 57, 169, 154, 139, 20, 136, 255, 27, 122, 140, 69, 238, 125, + 95, 23, 156, 255, 255, 72, 194, 152, 10, 0, 109, 150, 43, 183, 216, 102, 159, 27, 2, 236, 234, 145, 209, 231, 138, + 177, 159, 128, 72, 212, 13, 72, 89, 26, 143, 106, 114, 160, 216, 102, 159, 27, 143, 244, 188, 249, 243, 142, 156, + 70, 128, 255, 67, 47, 216, 80, 255, 255, 216, 102, 159, 27, 31, 32, 167, 171, 218, 30, 84, 242, 159, 73, 228, 168, + 42, 104, 193, 162, 103, 83, 32, 65, 49, 216, 102, 159, 27, 71, 10, 195, 224, 3, 155, 92, 136, 128, 255, 216, 102, + 159, 27, 106, 112, 134, 170, 226, 144, 193, 200, 159, 27, 232, 150, 137, 26, 142, 254, 88, 247, 27, 50, 130, 80, + 111, 234, 98, 88, 139, 68, 126, 251, 199, 113, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 60, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "17546deb23e8a1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7477235547015338765" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6751555727406627061" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12806336910168297434" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff306044b11b73632e1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b40eaeb6f93d939364e25231" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18193661032805425369" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0ae8ed281b5e34" + }, + { + "_tag": "ByteArray", + "bytearray": "b05cb590" + }, + { + "_tag": "ByteArray", + "bytearray": "f516a51b6a90fcb19d3c4c" + }, + { + "_tag": "ByteArray", + "bytearray": "01" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "36" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4179479940796255968" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10922476455606485225" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eb475d8263ad389dd4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6249663935609970505" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10277216099107453271" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8fc49601943c2d8e5b54" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "276e34ebbe035b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17521577466786293625" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + }, + "cborHex": "d905019f9f9f4717546deb23e8a11b67c47a1d29c5db0dffbf1b5db25829ad5378f51bb1b93f91a48e0fda4aff306044b11b73632e1d4cb40eaeb6f93d939364e25231ff9f1bfc7cde50b03be0d9470ae8ed281b5e3444b05cb5904bf516a51b6a90fcb19d3c4c4101ff4136ffd8669f1b3a007edcc1080ee09f1b97946e7773fe00e99f49eb475d8263ad389dd41b56bb443cbf9a1f491b8ea001975339b9574a8fc49601943c2d8e5b54ff47276e34ebbe035b1bf32925df6c492779ffff01ff", + "cborBytes": [ + 217, 5, 1, 159, 159, 159, 71, 23, 84, 109, 235, 35, 232, 161, 27, 103, 196, 122, 29, 41, 197, 219, 13, 255, 191, + 27, 93, 178, 88, 41, 173, 83, 120, 245, 27, 177, 185, 63, 145, 164, 142, 15, 218, 74, 255, 48, 96, 68, 177, 27, + 115, 99, 46, 29, 76, 180, 14, 174, 182, 249, 61, 147, 147, 100, 226, 82, 49, 255, 159, 27, 252, 124, 222, 80, 176, + 59, 224, 217, 71, 10, 232, 237, 40, 27, 94, 52, 68, 176, 92, 181, 144, 75, 245, 22, 165, 27, 106, 144, 252, 177, + 157, 60, 76, 65, 1, 255, 65, 54, 255, 216, 102, 159, 27, 58, 0, 126, 220, 193, 8, 14, 224, 159, 27, 151, 148, 110, + 119, 115, 254, 0, 233, 159, 73, 235, 71, 93, 130, 99, 173, 56, 157, 212, 27, 86, 187, 68, 60, 191, 154, 31, 73, + 27, 142, 160, 1, 151, 83, 57, 185, 87, 74, 143, 196, 150, 1, 148, 60, 45, 142, 91, 84, 255, 71, 39, 110, 52, 235, + 190, 3, 91, 27, 243, 41, 37, 223, 108, 73, 39, 121, 255, 255, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 61, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17686308555848567158" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "677b849d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12834113227504221519" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9127982597565301290" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1874094058385564501" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "757002291203779007" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1878412145187198653" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d2ffd32395d4252" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8327084740805076639" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "128d1a0483619af09d7be68d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14991869389405647618" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1252478967943779555" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17926119716105264552" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9582630739652248838" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bf57263eceb4e49769f8044677b849d1bb21bedfb7c87fd4f9f1b7ead1bcf73d3c22affbf1b1a021e9de1bde3551b0a816992b55ba9bf1b1a1175e4cfa996bd480d2ffd32395d42521b738fbf73f643269f4c128d1a0483619af09d7be68d1bd00dd1c7829373021b1161b2fc44efd4e31bf8c65ee7b7949da81b84fc57e302b60506ffffff", + "cborBytes": [ + 216, 102, 159, 27, 245, 114, 99, 236, 235, 78, 73, 118, 159, 128, 68, 103, 123, 132, 157, 27, 178, 27, 237, 251, + 124, 135, 253, 79, 159, 27, 126, 173, 27, 207, 115, 211, 194, 42, 255, 191, 27, 26, 2, 30, 157, 225, 189, 227, 85, + 27, 10, 129, 105, 146, 181, 91, 169, 191, 27, 26, 17, 117, 228, 207, 169, 150, 189, 72, 13, 47, 253, 50, 57, 93, + 66, 82, 27, 115, 143, 191, 115, 246, 67, 38, 159, 76, 18, 141, 26, 4, 131, 97, 154, 240, 157, 123, 230, 141, 27, + 208, 13, 209, 199, 130, 147, 115, 2, 27, 17, 97, 178, 252, 68, 239, 212, 227, 27, 248, 198, 94, 231, 183, 148, + 157, 168, 27, 132, 252, 87, 227, 2, 182, 5, 6, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 62, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16620159929090305560" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2378701579626079245" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebdef79527676b564cf1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9192625023531739503" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb806f940aff" + } + } + ] + } + ] + }, + "cborHex": "d8669f1be6a6ab65eb9bee189fbf1b2102d87bd845e40d4aebdef79527676b564cf11b7f92c3c118f9e96f46bb806f940affffffff", + "cborBytes": [ + 216, 102, 159, 27, 230, 166, 171, 101, 235, 155, 238, 24, 159, 191, 27, 33, 2, 216, 123, 216, 69, 228, 13, 74, + 235, 222, 247, 149, 39, 103, 107, 86, 76, 241, 27, 127, 146, 195, 193, 24, 249, 233, 111, 70, 187, 128, 111, 148, + 10, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 63, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4891772052892828416" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1095576627261168708" + } + }, + { + "_tag": "ByteArray", + "bytearray": "84f4b95e87ad6d36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15259241804571443822" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85b0a369c599fa52550861" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6763501720750271171" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5609794550504033130" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5fa3bc25d0aa4082e9f6d6" + }, + { + "_tag": "ByteArray", + "bytearray": "885b09" + }, + { + "_tag": "ByteArray", + "bytearray": "727aac003a" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b43e310c3aedc43009f129f1b0f3445234c1f5c444884f4b95e87ad6d361bd3c3b7930745826e4b85b0a369c599fa52550861d8669f1bfffffffffffffffe9f1b5ddcc8faff102ac31b4dd9fe6bf5b70b6a4b5fa3bc25d0aa4082e9f6d643885b0945727aac003affffffffff", + "cborBytes": [ + 216, 102, 159, 27, 67, 227, 16, 195, 174, 220, 67, 0, 159, 18, 159, 27, 15, 52, 69, 35, 76, 31, 92, 68, 72, 132, + 244, 185, 94, 135, 173, 109, 54, 27, 211, 195, 183, 147, 7, 69, 130, 110, 75, 133, 176, 163, 105, 197, 153, 250, + 82, 85, 8, 97, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 27, 93, 220, 200, 250, 255, 16, 42, + 195, 27, 77, 217, 254, 107, 245, 183, 11, 106, 75, 95, 163, 188, 37, 208, 170, 64, 130, 233, 246, 214, 67, 136, + 91, 9, 69, 114, 122, 172, 0, 58, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 64, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2901491771686189711" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6307455885661915141" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8933768230407755685" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14116005681458496804" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15070437108127571733" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "788c6aad5a7409b61355" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6eaf0d097904717b2f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81279728" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a84261681bfa9fb809" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98e45da1b2ee" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8061108450714191381" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b3a72432" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11152610127787231514" + } + }, + { + "_tag": "ByteArray", + "bytearray": "48115ab9" + }, + { + "_tag": "ByteArray", + "bytearray": "b0f70ea84b4677030b" + }, + { + "_tag": "ByteArray", + "bytearray": "3596d7bec4ae15" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b28442b64c212fa8f9fd8669f1b578895b5ad5348059fd8669f1b7bfb1edf571fd7a59f1bc3e62060a2bac524ffffa09f1bd124f2b407cf1f15ff4a788c6aad5a7409b61355ffffbf4aa6eaf0d097904717b2f9448127972849a84261681bfa9fb8094698e45da1b2eeff1b6fdecf6d24b806159f9f44b3a724321b9ac607d2792e891a4448115ab949b0f70ea84b4677030b473596d7bec4ae15ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 40, 68, 43, 100, 194, 18, 250, 143, 159, 216, 102, 159, 27, 87, 136, 149, 181, 173, 83, 72, 5, + 159, 216, 102, 159, 27, 123, 251, 30, 223, 87, 31, 215, 165, 159, 27, 195, 230, 32, 96, 162, 186, 197, 36, 255, + 255, 160, 159, 27, 209, 36, 242, 180, 7, 207, 31, 21, 255, 74, 120, 140, 106, 173, 90, 116, 9, 182, 19, 85, 255, + 255, 191, 74, 166, 234, 240, 208, 151, 144, 71, 23, 178, 249, 68, 129, 39, 151, 40, 73, 168, 66, 97, 104, 27, 250, + 159, 184, 9, 70, 152, 228, 93, 161, 178, 238, 255, 27, 111, 222, 207, 109, 36, 184, 6, 21, 159, 159, 68, 179, 167, + 36, 50, 27, 154, 198, 7, 210, 121, 46, 137, 26, 68, 72, 17, 90, 185, 73, 176, 247, 14, 168, 75, 70, 119, 3, 11, + 71, 53, 150, 215, 190, 196, 174, 21, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 65, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9737908806595250752" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "738e857950e96562c63fd86e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15899477813601488006" + } + } + ] + }, + "cborHex": "d8669f1b8724007748420a409f4c738e857950e96562c63fd86e1bdca64ad519ebcc86ffff", + "cborBytes": [ + 216, 102, 159, 27, 135, 36, 0, 119, 72, 66, 10, 64, 159, 76, 115, 142, 133, 121, 80, 233, 101, 98, 198, 63, 216, + 110, 27, 220, 166, 74, 213, 25, 235, 204, 134, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 66, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [] + }, + "cborHex": "d9050380", + "cborBytes": [217, 5, 3, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 67, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11002893733407318305" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "070305f90501f75497f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9bc00fa8bfa20" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4842776611228296270" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6dbc139209f51" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + }, + "cborHex": "d905039fbf031b98b2218e011d6121094a070305f90501f75497f91bfffffffffffffff047c9bc00fa8bfa20ffbf1b4334ffab76d5244e47a6dbc139209f51ff0dff", + "cborBytes": [ + 217, 5, 3, 159, 191, 3, 27, 152, 178, 33, 142, 1, 29, 97, 33, 9, 74, 7, 3, 5, 249, 5, 1, 247, 84, 151, 249, 27, + 255, 255, 255, 255, 255, 255, 255, 240, 71, 201, 188, 0, 250, 139, 250, 32, 255, 191, 27, 67, 52, 255, 171, 118, + 213, 36, 78, 71, 166, 219, 193, 57, 32, 159, 81, 255, 13, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 68, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16202411281240583371" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16238787258115163376" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4058343981771593187" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2428073512728301164" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15299350908306368534" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "687d6351b00780" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10746282974626664184" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78e6a1ac4d87488efc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad06ad" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8fa3f0336be4b6982d10b4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14284235082983553821" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1445398052563785642" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1be0da87375b206ccb9fd8669f1be15bc2f9771804f09fa0ffffd8669f1b3852225971d715e39fbf1b21b23ffeceb48e6c1bd452369777a6a81647687d6351b007801b9522776dde734ef84978e6a1ac4d87488efc43ad06adff4b8fa3f0336be4b6982d10b4d8669f1bc63bcc2079683b1d9f1b140f15deea1b17aaffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 224, 218, 135, 55, 91, 32, 108, 203, 159, 216, 102, 159, 27, 225, 91, 194, 249, 119, 24, 4, + 240, 159, 160, 255, 255, 216, 102, 159, 27, 56, 82, 34, 89, 113, 215, 21, 227, 159, 191, 27, 33, 178, 63, 254, + 206, 180, 142, 108, 27, 212, 82, 54, 151, 119, 166, 168, 22, 71, 104, 125, 99, 81, 176, 7, 128, 27, 149, 34, 119, + 109, 222, 115, 78, 248, 73, 120, 230, 161, 172, 77, 135, 72, 142, 252, 67, 173, 6, 173, 255, 75, 143, 163, 240, + 51, 107, 228, 182, 152, 45, 16, 180, 216, 102, 159, 27, 198, 59, 204, 32, 121, 104, 59, 29, 159, 27, 20, 15, 21, + 222, 234, 27, 23, 170, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 69, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11089663487708005443" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c97860fa3d" + } + ] + }, + "cborHex": "d8669f1b99e6662fbf7484439f45c97860fa3dffff", + "cborBytes": [216, 102, 159, 27, 153, 230, 102, 47, 191, 116, 132, 67, 159, 69, 201, 120, 96, 250, 61, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 70, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1162030488590883105" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4005021717664519345" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3426441870276177447" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18168307512670553610" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12872062361537730778" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8becde152453a49f82" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16300097187792719808" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4bd95471c3d407a4c7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16825524657341147723" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50ea00c2f1968d39" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18274837870154883682" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15886935900735368965" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1153156342921585944" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9fbf1b10205c929aa219211b3794b2085f1e54b11b2f8d2aba19562e271bfc22cb6c46ca060a1bb2a2c084ca21d8da498becde152453a49f821be2359407daba8fc0494bd95471c3d407a4c71be9804587c8652a4b4850ea00c2f1968d391bfd9d4437fa7022621bdc79bc0774bb6f05ff1b1000d5958e546518ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 191, 27, 16, 32, 92, 146, 154, 162, 25, 33, 27, + 55, 148, 178, 8, 95, 30, 84, 177, 27, 47, 141, 42, 186, 25, 86, 46, 39, 27, 252, 34, 203, 108, 70, 202, 6, 10, 27, + 178, 162, 192, 132, 202, 33, 216, 218, 73, 139, 236, 222, 21, 36, 83, 164, 159, 130, 27, 226, 53, 148, 7, 218, + 186, 143, 192, 73, 75, 217, 84, 113, 195, 212, 7, 164, 199, 27, 233, 128, 69, 135, 200, 101, 42, 75, 72, 80, 234, + 0, 194, 241, 150, 141, 57, 27, 253, 157, 68, 55, 250, 112, 34, 98, 27, 220, 121, 188, 7, 116, 187, 111, 5, 255, + 27, 16, 0, 213, 149, 142, 84, 101, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 71, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [] + }, + "cborHex": "d8669f1bffffffffffffffec80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 72, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1756479990419781838" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8974391763889407836" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1765979599309004405" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17378693752139676497" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5728204285541234736" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b70a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10370344833707808621" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f" + } + } + ] + } + ] + }, + "cborHex": "d87e9fbf1b1860453ebc0d78ce1b7c8b71c2c9d1c75c1b18820516c9665e751bf12d85e42c95fb511b4f7eab72c88e383042b70a1b8feaddae8b76176d411fffff", + "cborBytes": [ + 216, 126, 159, 191, 27, 24, 96, 69, 62, 188, 13, 120, 206, 27, 124, 139, 113, 194, 201, 209, 199, 92, 27, 24, 130, + 5, 22, 201, 102, 94, 117, 27, 241, 45, 133, 228, 44, 149, 251, 81, 27, 79, 126, 171, 114, 200, 142, 56, 48, 66, + 183, 10, 27, 143, 234, 221, 174, 139, 118, 23, 109, 65, 31, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 73, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18240700556971402832" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + "cborHex": "d8669f1bfd23fc83608ce6509f0affff", + "cborBytes": [216, 102, 159, 27, 253, 35, 252, 131, 96, 140, 230, 80, 159, 10, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 74, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8900642775382278031" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6479594448270581094" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8031027025618769426" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "151bc231" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b6895fc2b5fdd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a38238ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8517394971642062860" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d765a1dc0b55f484e47c2a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4783999765893990778" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9199167151097005115" + } + } + ] + }, + "cborHex": "d87e9fbf1b7b856f72534ebf8f1b59ec24d201c2dd66ff1b6f73f08793919612bf44151bc231472b6895fc2b5fdd44a38238ab1b7633dd99806c680c4bd765a1dc0b55f484e47c2a1b42642e70bba9c97aff1b7faa01c8de94443bff", + "cborBytes": [ + 216, 126, 159, 191, 27, 123, 133, 111, 114, 83, 78, 191, 143, 27, 89, 236, 36, 210, 1, 194, 221, 102, 255, 27, + 111, 115, 240, 135, 147, 145, 150, 18, 191, 68, 21, 27, 194, 49, 71, 43, 104, 149, 252, 43, 95, 221, 68, 163, 130, + 56, 171, 27, 118, 51, 221, 153, 128, 108, 104, 12, 75, 215, 101, 161, 220, 11, 85, 244, 132, 228, 124, 42, 27, 66, + 100, 46, 112, 187, 169, 201, 122, 255, 27, 127, 170, 1, 200, 222, 148, 68, 59, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 75, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10736736602372256325" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8441085520577965371" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13657153175061436534" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "73cb32316d352d171696ba78" + }, + { + "_tag": "ByteArray", + "bytearray": "5f4c3985a9532a6d1b" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "59714b895de44e186b" + }, + { + "_tag": "ByteArray", + "bytearray": "e2b9389d88240c0d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3481447484474946985" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8034842762581563593" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9223773811732564233" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b58db5d385235420" + } + ] + } + ] + }, + "cborHex": "d905039fd87b9f1b95008d0ddf553245d8669f1b7524c28ee4be2d3b80ff9f1bbd87f4743aa29876ff4c73cb32316d352d171696ba78495f4c3985a9532a6d1bff9f9f4959714b895de44e186b48e2b9389d88240c0d1b3050960aa84e75a91b6f817eec11cad8c9ff1b80016d6980dec90948b58db5d385235420ffff", + "cborBytes": [ + 217, 5, 3, 159, 216, 123, 159, 27, 149, 0, 141, 13, 223, 85, 50, 69, 216, 102, 159, 27, 117, 36, 194, 142, 228, + 190, 45, 59, 128, 255, 159, 27, 189, 135, 244, 116, 58, 162, 152, 118, 255, 76, 115, 203, 50, 49, 109, 53, 45, 23, + 22, 150, 186, 120, 73, 95, 76, 57, 133, 169, 83, 42, 109, 27, 255, 159, 159, 73, 89, 113, 75, 137, 93, 228, 78, + 24, 107, 72, 226, 185, 56, 157, 136, 36, 12, 13, 27, 48, 80, 150, 10, 168, 78, 117, 169, 27, 111, 129, 126, 236, + 17, 202, 216, 201, 255, 27, 128, 1, 109, 105, 128, 222, 201, 9, 72, 181, 141, 181, 211, 133, 35, 84, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 76, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15306559768555671577" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6451596041992250910" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e9f28bd7a7d8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12745035412811057461" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10949338992862873650" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9ee3f32aa512927c9476" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4710585580559553690" + } + } + ] + }, + "cborHex": "d9050d9f9f9f1bd46bd3030a0bd0191b5988ac6b0d43a61eff46e9f28bd7a7d89f1bb0df762e8e608935ff1b97f3ddcd4aecc8324a9ee3f32aa512927c9476ff1b415f5ca0b554549aff", + "cborBytes": [ + 217, 5, 13, 159, 159, 159, 27, 212, 107, 211, 3, 10, 11, 208, 25, 27, 89, 136, 172, 107, 13, 67, 166, 30, 255, 70, + 233, 242, 139, 215, 167, 216, 159, 27, 176, 223, 118, 46, 142, 96, 137, 53, 255, 27, 151, 243, 221, 205, 74, 236, + 200, 50, 74, 158, 227, 243, 42, 165, 18, 146, 124, 148, 118, 255, 27, 65, 95, 92, 160, 181, 84, 84, 154, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 77, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15094491600182135844" + }, + "fields": [] + }, + "cborHex": "d8669f1bd17a6822e5f94c2480ff", + "cborBytes": [216, 102, 159, 27, 209, 122, 104, 34, 229, 249, 76, 36, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 78, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8591881063339858479" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "32" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a02939e1eedd8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1859472522736221608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6107f3fa8b19dc58ded73c34" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11203378178031158639" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8afbb1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc706d845808" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "796962ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efc76fe6e320694e4135" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e58596" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11056823642049324522" + } + } + ] + }, + "cborHex": "d8669f1b773c7e4e2cc71a2f9fbf4132473a02939e1eedd8423a091b19ce2c68534abda84c6107f3fa8b19dc58ded73c341b9b7a651849e9056f438afbb146dc706d84580841c444796962ae4aefc76fe6e320694e413543e58596ff41f81b9971ba85587da5eaffff", + "cborBytes": [ + 216, 102, 159, 27, 119, 60, 126, 78, 44, 199, 26, 47, 159, 191, 65, 50, 71, 58, 2, 147, 158, 30, 237, 216, 66, 58, + 9, 27, 25, 206, 44, 104, 83, 74, 189, 168, 76, 97, 7, 243, 250, 139, 25, 220, 88, 222, 215, 60, 52, 27, 155, 122, + 101, 24, 73, 233, 5, 111, 67, 138, 251, 177, 70, 220, 112, 109, 132, 88, 8, 65, 196, 68, 121, 105, 98, 174, 74, + 239, 199, 111, 230, 227, 32, 105, 78, 65, 53, 67, 229, 133, 150, 255, 65, 248, 27, 153, 113, 186, 133, 88, 125, + 165, 234, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 79, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16661454241311610632" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3245834270642242008" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10265623428730017668" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fb06" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9f9fd8669f1be739605b36cdd7089f1b2d0b85126d6b81d81b8e76d21e6b6157840e42fb06ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 159, 216, 102, 159, 27, 231, 57, 96, 91, 54, 205, + 215, 8, 159, 27, 45, 11, 133, 18, 109, 107, 129, 216, 27, 142, 118, 210, 30, 107, 97, 87, 132, 14, 66, 251, 6, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 80, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5409776602155456821" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b557d8e22f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9db39c20cf4e2277" + }, + { + "_tag": "ByteArray", + "bytearray": "5f3675" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4806515284210432225" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b4b1363284db219359f9f45b557d8e22fff489db39c20cf4e2277435f36759f1b42b42c2f5ad938e1ffffff", + "cborBytes": [ + 216, 102, 159, 27, 75, 19, 99, 40, 77, 178, 25, 53, 159, 159, 69, 181, 87, 216, 226, 47, 255, 72, 157, 179, 156, + 32, 207, 78, 34, 119, 67, 95, 54, 117, 159, 27, 66, 180, 44, 47, 90, 217, 56, 225, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 81, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9fa080ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 160, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 82, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8790725169697383268" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "693680496727962962" + } + } + ] + }, + "cborHex": "d8669f1b79feedf771e5e3649f1b09a072bc8b163552ffff", + "cborBytes": [ + 216, 102, 159, 27, 121, 254, 237, 247, 113, 229, 227, 100, 159, 27, 9, 160, 114, 188, 139, 22, 53, 82, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 83, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13714730550742879197" + }, + "fields": [] + }, + "cborHex": "d8669f1bbe5482c5ab3a0bdd80ff", + "cborBytes": [216, 102, 159, 27, 190, 84, 130, 197, 171, 58, 11, 221, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 84, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6342167157881140829" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8ebcd91" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "806c5c5d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9874338425601433880" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b5803e76d87a7765d9f9fbf0d44c8ebcd9144806c5c5d1b8908b27b49f6a118ffffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 88, 3, 231, 109, 135, 167, 118, 93, 159, 159, 191, 13, 68, 200, 235, 205, 145, 68, 128, 108, + 92, 93, 27, 137, 8, 178, 123, 73, 246, 161, 24, 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 85, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6345045006109339791" + } + }, + { + "_tag": "ByteArray", + "bytearray": "917fabcb2066" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6467215395907986051" + } + }, + { + "_tag": "ByteArray", + "bytearray": "627da3219d4d79b25d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26fb036117fb0e821b5a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "278c700921d842b898" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15061583902278086484" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "daca62cd6d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4555809078294213803" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4d43b94cf71d4fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16313711437381194301" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0c710" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d225445b3" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e117081c88" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14127212670252972165" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0eb351d06207" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6701918965389517467" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1e350ede4476f5390d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "869e54b06a4eb9" + } + ] + } + ] + }, + "cborHex": "d905099f1b580e20d0c903708f46917fabcb20669f1b59c02a234708628349627da3219d4d79b25dbf410e4a26fb036117fb0e821b5a49278c700921d842b8981bd1057ec26a06ef5445daca62cd6d1b3f397c381039f4ab48e4d43b94cf71d4fa1be265f21e5955523d43f0c710457d225445b3ff9f45e117081c881bc40df1130cd37885460eb351d062071b5d01ffca6d7ee29b491e350ede4476f5390dff47869e54b06a4eb9ffff", + "cborBytes": [ + 217, 5, 9, 159, 27, 88, 14, 32, 208, 201, 3, 112, 143, 70, 145, 127, 171, 203, 32, 102, 159, 27, 89, 192, 42, 35, + 71, 8, 98, 131, 73, 98, 125, 163, 33, 157, 77, 121, 178, 93, 191, 65, 14, 74, 38, 251, 3, 97, 23, 251, 14, 130, + 27, 90, 73, 39, 140, 112, 9, 33, 216, 66, 184, 152, 27, 209, 5, 126, 194, 106, 6, 239, 84, 69, 218, 202, 98, 205, + 109, 27, 63, 57, 124, 56, 16, 57, 244, 171, 72, 228, 212, 59, 148, 207, 113, 212, 250, 27, 226, 101, 242, 30, 89, + 85, 82, 61, 67, 240, 199, 16, 69, 125, 34, 84, 69, 179, 255, 159, 69, 225, 23, 8, 28, 136, 27, 196, 13, 241, 19, + 12, 211, 120, 133, 70, 14, 179, 81, 208, 98, 7, 27, 93, 1, 255, 202, 109, 126, 226, 155, 73, 30, 53, 14, 222, 68, + 118, 245, 57, 13, 255, 71, 134, 158, 84, 176, 106, 78, 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 86, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5263356611775429838" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10865249235816716578" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11893536340377918499" + } + } + ] + }, + "cborHex": "d8669f1b490b32f3b313fcce9f1b96c91e9d08f099221ba50e5449736cdc23ffff", + "cborBytes": [ + 216, 102, 159, 27, 73, 11, 50, 243, 179, 19, 252, 206, 159, 27, 150, 201, 30, 157, 8, 240, 153, 34, 27, 165, 14, + 84, 73, 115, 108, 220, 35, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 87, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "85655869040357110" + } + } + ] + }, + "cborHex": "d9050c9f1b01304f8f1f13eef6ff", + "cborBytes": [217, 5, 12, 159, 27, 1, 48, 79, 143, 31, 19, 238, 246, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 88, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "868b99" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "696ba59cb735dbb0c036fc" + } + } + ] + } + ] + }, + "cborHex": "d905069fbf43868b994b696ba59cb735dbb0c036fcffff", + "cborBytes": [ + 217, 5, 6, 159, 191, 67, 134, 139, 153, 75, 105, 107, 165, 156, 183, 53, 219, 176, 192, 54, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 89, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [] + }, + "cborHex": "d9050180", + "cborBytes": [217, 5, 1, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 90, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11601063256941284456" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1040642065463253254" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9118574211207971847" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6314410078229685668" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03af" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9385026853779257940" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64dff0f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10309374739241770713" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11158537043525160133" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11468528434701342248" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15305217590051299538" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14310726217512525971" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9481677242165017341" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17490535118655216743" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13cd715608988ab1b6d163" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1824462150836064920" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2864633994354649327" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15569397953560539423" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2fc9b19a60" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17328654860865682333" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9751738928918510216" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1ba0ff41912ed24c689f9fd8669f1b0e711a71ea4419069f1b7e8baeeecd16c407ffffbf1b57a14a82cf06e5a44203af1b823e50331303ba544464dff0f21b8f1241b434e41ed91b9adb1652145accc51b9f2865d936d716281bd4670e4ec11160d21bc699e9ac60b420931b8395af373626bafd1bf2badd0586f05c674b13cd715608988ab1b6d163ffffd905039fbf1b1951caa8e6ba92981b27c13970bd0468ef1bd8119cf2d4ab711f452fc9b19a60ff1bf07bbfc8e93ebb9d9f1b875522e390893a88ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 160, 255, 65, 145, 46, 210, 76, 104, 159, 159, 216, 102, 159, 27, 14, 113, 26, 113, 234, 68, + 25, 6, 159, 27, 126, 139, 174, 238, 205, 22, 196, 7, 255, 255, 191, 27, 87, 161, 74, 130, 207, 6, 229, 164, 66, 3, + 175, 27, 130, 62, 80, 51, 19, 3, 186, 84, 68, 100, 223, 240, 242, 27, 143, 18, 65, 180, 52, 228, 30, 217, 27, 154, + 219, 22, 82, 20, 90, 204, 197, 27, 159, 40, 101, 217, 54, 215, 22, 40, 27, 212, 103, 14, 78, 193, 17, 96, 210, 27, + 198, 153, 233, 172, 96, 180, 32, 147, 27, 131, 149, 175, 55, 54, 38, 186, 253, 27, 242, 186, 221, 5, 134, 240, 92, + 103, 75, 19, 205, 113, 86, 8, 152, 138, 177, 182, 209, 99, 255, 255, 217, 5, 3, 159, 191, 27, 25, 81, 202, 168, + 230, 186, 146, 152, 27, 39, 193, 57, 112, 189, 4, 104, 239, 27, 216, 17, 156, 242, 212, 171, 113, 31, 69, 47, 201, + 177, 154, 96, 255, 27, 240, 123, 191, 200, 233, 62, 187, 157, 159, 27, 135, 85, 34, 227, 144, 137, 58, 136, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 91, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "392140825022311305" + } + } + ] + }, + "cborHex": "d905059f1b05712a00b1622b89ff", + "cborBytes": [217, 5, 5, 159, 27, 5, 113, 42, 0, 177, 98, 43, 137, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 92, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3622488510361884729" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "542547628602917724" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b3245aa1b7f0dd8399fd8669f1b07878431949b835c80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 50, 69, 170, 27, 127, 13, 216, 57, 159, 216, 102, 159, 27, 7, 135, 132, 49, 148, 155, 131, 92, + 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 93, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5257526918311063712" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdf2185f42b964742872d516" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6075457300876941323" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18121984065434175292" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7083268853747133222" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3974295742713671766" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10057921191059524983" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1310029022770889685" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15229991015846031623" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3e10b1001" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2586bb8dcc645a07baf83b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3029676941154435887" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15057381815688619636" + } + } + ] + }, + "cborHex": "d87c9fbf1b48f67ce06afc30a04cfdf2185f42b964742872d5161b54505c39dad2d80b1bfb7e387e3d7e473c1b624cd37e642fab261b372788ebd8cbb0561b8b94ea08bbfa0d771b122e287493b603d51bd35bcc230fe4b10745b3e10b1001ff4b2586bb8dcc645a07baf83b1b2a0b932045b3c32f1bd0f690fbe38be674ff", + "cborBytes": [ + 216, 124, 159, 191, 27, 72, 246, 124, 224, 106, 252, 48, 160, 76, 253, 242, 24, 95, 66, 185, 100, 116, 40, 114, + 213, 22, 27, 84, 80, 92, 57, 218, 210, 216, 11, 27, 251, 126, 56, 126, 61, 126, 71, 60, 27, 98, 76, 211, 126, 100, + 47, 171, 38, 27, 55, 39, 136, 235, 216, 203, 176, 86, 27, 139, 148, 234, 8, 187, 250, 13, 119, 27, 18, 46, 40, + 116, 147, 182, 3, 213, 27, 211, 91, 204, 35, 15, 228, 177, 7, 69, 179, 225, 11, 16, 1, 255, 75, 37, 134, 187, 141, + 204, 100, 90, 7, 186, 248, 59, 27, 42, 11, 147, 32, 69, 179, 195, 47, 27, 208, 246, 144, 251, 227, 139, 230, 116, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 94, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15255307803596136843" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "520626afae" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8631664664310267198" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1374760440428247998" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11558745846870708521" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bd3b5bd9f0c97a18b9f45520626afaebf1b77c9d54798813d3e1b1314215636fc3bbe1ba068ea1b5bc011294138ffffff", + "cborBytes": [ + 216, 102, 159, 27, 211, 181, 189, 159, 12, 151, 161, 139, 159, 69, 82, 6, 38, 175, 174, 191, 27, 119, 201, 213, + 71, 152, 129, 61, 62, 27, 19, 20, 33, 86, 54, 252, 59, 190, 27, 160, 104, 234, 27, 91, 192, 17, 41, 65, 56, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 95, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6008" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a685ce60d5b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "139989414497917010" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d58ad9cf50224f1a03" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "397c28f04b295e733fde" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bcbe5c6e9787" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "566bd89d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cfff6b1bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78c603154d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8744121504946513539" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a00bb8d71d8a9a344cbe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14447134208474477889" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf4ba099874e9ba282113447" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97fc8029b0fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c69c16b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6ee54b81d5537bb" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7085482982021936092" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7483849721491350290" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6095148373927617288" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12481362007807391797" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3216418666464062931" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a821a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d7a50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c849d4706f2758" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "72381095419845255" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ede2f4445d089964400d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a556b5900a1" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13364630891706417829" + } + } + ] + }, + "cborHex": "d905009f9f4260089f466a685ce60d5b1b01f157a17b769852ff49d58ad9cf50224f1a03ffbf4a397c28f04b295e733fde46bcbe5c6e978744566bd89d452cfff6b1bb4578c603154d1b79595c2e2f30e6834aa00bb8d71d8a9a344cbe1bc87e8804b683f5414cbf4ba099874e9ba2821134474697fc8029b0fa44c69c16b648f6ee54b81d5537bbff9f1b6254b13b4d7e33dcbf1b67dbf9aba9e5e3121b54965127114163081bad36b49df46a78351b2ca303bc5f86add3ffffbf420b8f439a821a431d7a5047c849d4706f2758415f1b0101263908f41a874aede2f4445d089964400d468a556b5900a1ff1bb978b4fcb65f82a5ff", + "cborBytes": [ + 217, 5, 0, 159, 159, 66, 96, 8, 159, 70, 106, 104, 92, 230, 13, 91, 27, 1, 241, 87, 161, 123, 118, 152, 82, 255, + 73, 213, 138, 217, 207, 80, 34, 79, 26, 3, 255, 191, 74, 57, 124, 40, 240, 75, 41, 94, 115, 63, 222, 70, 188, 190, + 92, 110, 151, 135, 68, 86, 107, 216, 157, 69, 44, 255, 246, 177, 187, 69, 120, 198, 3, 21, 77, 27, 121, 89, 92, + 46, 47, 48, 230, 131, 74, 160, 11, 184, 215, 29, 138, 154, 52, 76, 190, 27, 200, 126, 136, 4, 182, 131, 245, 65, + 76, 191, 75, 160, 153, 135, 78, 155, 162, 130, 17, 52, 71, 70, 151, 252, 128, 41, 176, 250, 68, 198, 156, 22, 182, + 72, 246, 238, 84, 184, 29, 85, 55, 187, 255, 159, 27, 98, 84, 177, 59, 77, 126, 51, 220, 191, 27, 103, 219, 249, + 171, 169, 229, 227, 18, 27, 84, 150, 81, 39, 17, 65, 99, 8, 27, 173, 54, 180, 157, 244, 106, 120, 53, 27, 44, 163, + 3, 188, 95, 134, 173, 211, 255, 255, 191, 66, 11, 143, 67, 154, 130, 26, 67, 29, 122, 80, 71, 200, 73, 212, 112, + 111, 39, 88, 65, 95, 27, 1, 1, 38, 57, 8, 244, 26, 135, 74, 237, 226, 244, 68, 93, 8, 153, 100, 64, 13, 70, 138, + 85, 107, 89, 0, 161, 255, 27, 185, 120, 180, 252, 182, 95, 130, 165, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 96, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16882964607085438774" + }, + "fields": [] + }, + "cborHex": "d8669f1bea4c56dc40d1e73680ff", + "cborBytes": [216, 102, 159, 27, 234, 76, 86, 220, 64, 209, 231, 54, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 97, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [] + }, + "cborHex": "d9050880", + "cborBytes": [217, 5, 8, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 98, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "119129241185937512" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11674778209610691484" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12075180699043234306" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14536748660933059432" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fb43cd" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17213526055434657441" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "283524893485709224" + }, + "fields": [] + } + ] + }, + "cborHex": "d8799f9fd8669f1b01a73b69e73fe8689f1ba20524ed0f50f39c1ba793a8de652002021bc9bce7e35c0ce368ffffff43fb43cdd8669f1beee2babf0a1d1ea180ffd8669f1b03ef4863713237a880ffff", + "cborBytes": [ + 216, 121, 159, 159, 216, 102, 159, 27, 1, 167, 59, 105, 231, 63, 232, 104, 159, 27, 162, 5, 36, 237, 15, 80, 243, + 156, 27, 167, 147, 168, 222, 101, 32, 2, 2, 27, 201, 188, 231, 227, 92, 12, 227, 104, 255, 255, 255, 67, 251, 67, + 205, 216, 102, 159, 27, 238, 226, 186, 191, 10, 29, 30, 161, 128, 255, 216, 102, 159, 27, 3, 239, 72, 99, 113, 50, + 55, 168, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 99, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15103264552530631373" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0527a1e90da5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13984234680067647291" + } + }, + { + "_tag": "ByteArray", + "bytearray": "337697c3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14011509870464470133" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ca2b568a4030e4d0b62bf8f3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "655a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15159323388115122580" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a0430c1fd90a4" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "774507139188933850" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "366dd3d57f9c" + }, + { + "_tag": "ByteArray", + "bytearray": "489bb07c850c" + }, + { + "_tag": "ByteArray", + "bytearray": "4b4bc95a8b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6575449533469079467" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5177712858215906734" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10079919891656050400" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9404721073344745072" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "13501923a9e4948ff929a71c" + }, + { + "_tag": "ByteArray", + "bytearray": "79" + }, + { + "_tag": "ByteArray", + "bytearray": "ba" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16932612080603035207" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9107597024452325187" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7491106591080497388" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "170722747154426614" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a26cad2eb1464c15" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14796273371108573403" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b5db2dc11dab12f8d469994" + }, + { + "_tag": "ByteArray", + "bytearray": "4068beee6892b08a" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bd19993170a565acd9f460527a1e90da59f1bc211fb599121673b44337697c31bc272e1fdb3ea0c754cca2b568a4030e4d0b62bf8f3ff9f42655a9f1bd260bc4dcfdf7994479a0430c1fd90a4ffd8669f1b0abf9a23bb5c44da9f46366dd3d57f9c46489bb07c850c454b4bc95a8b1b5b40b08330eeb7ab1b47daee696eee7daeffff1b8be311bc5a8d86e0d8669f1b828447fce4580e709f4c13501923a9e4948ff929a71c417941ba1beafcb8f977d4f647ffffffd8669f1b7e64af3d57e2af439fd8669f1b67f5c1c147f0c0ec9f1b025e876f1b37eaf648a26cad2eb1464c151bcd56ec3cac7f80db4c8b5db2dc11dab12f8d469994484068beee6892b08affffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 209, 153, 147, 23, 10, 86, 90, 205, 159, 70, 5, 39, 161, 233, 13, 165, 159, 27, 194, 17, 251, + 89, 145, 33, 103, 59, 68, 51, 118, 151, 195, 27, 194, 114, 225, 253, 179, 234, 12, 117, 76, 202, 43, 86, 138, 64, + 48, 228, 208, 182, 43, 248, 243, 255, 159, 66, 101, 90, 159, 27, 210, 96, 188, 77, 207, 223, 121, 148, 71, 154, 4, + 48, 193, 253, 144, 164, 255, 216, 102, 159, 27, 10, 191, 154, 35, 187, 92, 68, 218, 159, 70, 54, 109, 211, 213, + 127, 156, 70, 72, 155, 176, 124, 133, 12, 69, 75, 75, 201, 90, 139, 27, 91, 64, 176, 131, 48, 238, 183, 171, 27, + 71, 218, 238, 105, 110, 238, 125, 174, 255, 255, 27, 139, 227, 17, 188, 90, 141, 134, 224, 216, 102, 159, 27, 130, + 132, 71, 252, 228, 88, 14, 112, 159, 76, 19, 80, 25, 35, 169, 228, 148, 143, 249, 41, 167, 28, 65, 121, 65, 186, + 27, 234, 252, 184, 249, 119, 212, 246, 71, 255, 255, 255, 216, 102, 159, 27, 126, 100, 175, 61, 87, 226, 175, 67, + 159, 216, 102, 159, 27, 103, 245, 193, 193, 71, 240, 192, 236, 159, 27, 2, 94, 135, 111, 27, 55, 234, 246, 72, + 162, 108, 173, 46, 177, 70, 76, 21, 27, 205, 86, 236, 60, 172, 127, 128, 219, 76, 139, 93, 178, 220, 17, 218, 177, + 47, 141, 70, 153, 148, 72, 64, 104, 190, 238, 104, 146, 176, 138, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 100, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11567534912207542973" + } + } + ] + }, + "cborHex": "d905049fa01ba08823b7190f5abdff", + "cborBytes": [217, 5, 4, 159, 160, 27, 160, 136, 35, 183, 25, 15, 90, 189, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 101, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14284495606096229681" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2489162315866703220" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5422775159121740673" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9289533708456050404" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b2a575502a6c6d233c" + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9fa01bc63cb9123cfe75311b228b47f029860574d8669f1b4b419146b04383819f1b80eb0db0958a3ee449b2a575502a6c6d233cffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 160, 27, 198, 60, 185, 18, 60, 254, 117, 49, 27, + 34, 139, 71, 240, 41, 134, 5, 116, 216, 102, 159, 27, 75, 65, 145, 70, 176, 67, 131, 129, 159, 27, 128, 235, 13, + 176, 149, 138, 62, 228, 73, 178, 165, 117, 80, 42, 108, 109, 35, 60, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 102, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2774223157086164960" + }, + "fields": [] + }, + "cborHex": "d8669f1b268005434dc897e080ff", + "cborBytes": [216, 102, 159, 27, 38, 128, 5, 67, 77, 200, 151, 224, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 103, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18321023762834362125" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12305390749513287640" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2191266337537023283" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ccedab94a0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16273865993768743466" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15947864148193795444" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5055570125910661577" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cf961263b0da52" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16294792829227977239" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "17aac0fe73bea0c14715f1" + }, + { + "_tag": "ByteArray", + "bytearray": "e688618346fe24c89db1c4e1" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfe415a0b193b8f0d9f9f1baac587b09f1e07d8d8669f1b1e68f11fc92a5d339f45ccedab94a01be1d862e610e5322affffd8669f1bdd5231f287475d749f1b4628fe3e73fb59c9ffff47cf961263b0da52ff9f80d8669f1be222bbbea2b74a179f4b17aac0fe73bea0c14715f14ce688618346fe24c89db1c4e1ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 254, 65, 90, 11, 25, 59, 143, 13, 159, 159, 27, 170, 197, 135, 176, 159, 30, 7, 216, 216, 102, + 159, 27, 30, 104, 241, 31, 201, 42, 93, 51, 159, 69, 204, 237, 171, 148, 160, 27, 225, 216, 98, 230, 16, 229, 50, + 42, 255, 255, 216, 102, 159, 27, 221, 82, 49, 242, 135, 71, 93, 116, 159, 27, 70, 40, 254, 62, 115, 251, 89, 201, + 255, 255, 71, 207, 150, 18, 99, 176, 218, 82, 255, 159, 128, 216, 102, 159, 27, 226, 34, 187, 190, 162, 183, 74, + 23, 159, 75, 23, 170, 192, 254, 115, 190, 160, 193, 71, 21, 241, 76, 230, 136, 97, 131, 70, 254, 36, 200, 157, + 177, 196, 225, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 104, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fd79898c961744ebc0d9c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb231efe73b6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "442ea587b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13087431530165849826" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac581ea00412209edc1fb8d2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6129681250827236976" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0c8fdf9af1e606b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6063326267357385027" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f02ddc024012b86f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1217421072997230548" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2052f10f0917aa892a3edd" + }, + { + "_tag": "ByteArray", + "bytearray": "3fcf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17358130423062477611" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13603843583536895721" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9a08267b85b853e92374" + }, + { + "_tag": "ByteArray", + "bytearray": "33" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f9fbf4b0fd79898c961744ebc0d9c46eb231efe73b645442ea587b11bb59fe5a2f1c84ee24cac581ea00412209edc1fb8d21b5511009f05edf67048d0c8fdf9af1e606b1b5425431d8321d14348f02ddc024012b86f1b10e52604061327d4ff4b2052f10f0917aa892a3edd423fcf1bf0e477a7078a3b2b1bbcca8fa9b8b196e9ff4a9a08267b85b853e923744133ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 159, 191, 75, 15, 215, 152, 152, 201, 97, 116, 78, + 188, 13, 156, 70, 235, 35, 30, 254, 115, 182, 69, 68, 46, 165, 135, 177, 27, 181, 159, 229, 162, 241, 200, 78, + 226, 76, 172, 88, 30, 160, 4, 18, 32, 158, 220, 31, 184, 210, 27, 85, 17, 0, 159, 5, 237, 246, 112, 72, 208, 200, + 253, 249, 175, 30, 96, 107, 27, 84, 37, 67, 29, 131, 33, 209, 67, 72, 240, 45, 220, 2, 64, 18, 184, 111, 27, 16, + 229, 38, 4, 6, 19, 39, 212, 255, 75, 32, 82, 241, 15, 9, 23, 170, 137, 42, 62, 221, 66, 63, 207, 27, 240, 228, + 119, 167, 7, 138, 59, 43, 27, 188, 202, 143, 169, 184, 177, 150, 233, 255, 74, 154, 8, 38, 123, 133, 184, 83, 233, + 35, 116, 65, 51, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 105, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1231239976987250147" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5dd33374d9c243d9a3af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1932015864485894751" + } + } + ] + }, + "cborHex": "d8669f1b11163e3c5595cde39f4a5dd33374d9c243d9a3af1b1acfe6314719da5fffff", + "cborBytes": [ + 216, 102, 159, 27, 17, 22, 62, 60, 85, 149, 205, 227, 159, 74, 93, 211, 51, 116, 217, 194, 67, 217, 163, 175, 27, + 26, 207, 230, 49, 71, 25, 218, 95, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 106, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9319583980608554287" + }, + "fields": [] + }, + "cborHex": "d8669f1b8155d040ca98052f80ff", + "cborBytes": [216, 102, 159, 27, 129, 85, 208, 64, 202, 152, 5, 47, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 107, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4628300492163947205" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13812287731705969901" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3132b5d7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "342f6b7a4aa0b048" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddcc30aa54" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c1a872b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17972535570614510404" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8358dad5cd24663b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11797622140071057424" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f8660a5d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8199993311318671237" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "470ab229dd8d9fcdd3" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "76108ef7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17267719399898960717" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf0e38f408d96a69c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4255167010521914720" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f954" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e1350" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b403b06c69d329ac59fd8669f1bbfaf1a82e7d1fced9f443132b5d7bf48342f6b7a4aa0b04845ddcc30aa54443c1a872b1bf96b45e0ff8ce344488358dad5cd24663b1ba3b992d475381810458f8660a5d91b71cc3a78a1ba7f85ff49470ab229dd8d9fcdd380ffffbf4476108ef71befa3434e5019534d49cf0e38f408d96a69c81b3b0d63d9ea1e9d6042f954433e1350ffffff", + "cborBytes": [ + 216, 102, 159, 27, 64, 59, 6, 198, 157, 50, 154, 197, 159, 216, 102, 159, 27, 191, 175, 26, 130, 231, 209, 252, + 237, 159, 68, 49, 50, 181, 215, 191, 72, 52, 47, 107, 122, 74, 160, 176, 72, 69, 221, 204, 48, 170, 84, 68, 60, + 26, 135, 43, 27, 249, 107, 69, 224, 255, 140, 227, 68, 72, 131, 88, 218, 213, 205, 36, 102, 59, 27, 163, 185, 146, + 212, 117, 56, 24, 16, 69, 143, 134, 96, 165, 217, 27, 113, 204, 58, 120, 161, 186, 127, 133, 255, 73, 71, 10, 178, + 41, 221, 141, 159, 205, 211, 128, 255, 255, 191, 68, 118, 16, 142, 247, 27, 239, 163, 67, 78, 80, 25, 83, 77, 73, + 207, 14, 56, 244, 8, 217, 106, 105, 200, 27, 59, 13, 99, 217, 234, 30, 157, 96, 66, 249, 84, 67, 62, 19, 80, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 108, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4262980644952537661" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7815735233640995825" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9891872928717679010" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "07f8" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19f1b3b29264f72c2fa3da0d8669f1bfffffffffffffff29fd8669f1bfffffffffffffff79f1b6c7711c913ad1bf1ffff1b8946fe04ef8529a2d8669f1bfffffffffffffffd80ff4207f8ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 27, 59, 41, 38, 79, 114, 194, 250, 61, 160, 216, + 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 247, 159, 27, 108, 119, 17, 201, 19, 173, 27, 241, 255, 255, 27, 137, 70, 254, 4, 239, 133, 41, 162, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 128, 255, 66, 7, 248, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 109, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16829726639735047784" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14082153733043206685" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df17ea4a732f437cdd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1969335467130142698" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e2f2849bd19" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "766786164325387703" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "628310264028968437" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1d6a99" + }, + { + "_tag": "ByteArray", + "bytearray": "5653b195dabe" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11657967944756348620" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "62336d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6054333010443372714" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ae427" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a94087d38d600e8c2a2b34f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b03a1ee1a18dbc63ddc999" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41c6cdec3113abe5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e567224bb61c8e9356" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2806649372140194603" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f46459e93b71add52c64b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e192344f628" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd585191cb4f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11659779007987581061" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3149504796151221026" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11418663685708218531" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5479173852103939351" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12588599568407807705" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10083571393755811099" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40b60634b3b4d196" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10864372265861621960" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80c2ba734bb825fc9dd82d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13124571479205777041" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1619268227567713307" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17371678356107318833" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b" + } + } + ] + } + ] + }, + "cborHex": "d8669f1be98f33360c5606689f9f9f1bc36ddc35b27b3a1d49df17ea4a732f437cdd1b1b547c2c61debfea469e2f2849bd19ff1b0aa42bf42f4c8db7d8669f1b08b834db302db5f59f431d6a99465653b195dabeffff1ba1c96c144617c6ccbf4362336d1b54054fcbb76608aa439ae4274c8a94087d38d600e8c2a2b34f4bb03a1ee1a18dbc63ddc9994841c6cdec3113abe549e567224bb61c8e93561b26f338bbd37d4b2b4bf46459e93b71add52c64b9463e192344f62846fd585191cb4f1ba1cfdb3b4aa80085ffff9fa0ffbf1b2bb549ece0fb8b221b9e773e1f9c4a80a31b4c09ef96ad4395171baeb3b09c369546d91b8bf00ac1f01b0d1b4840b60634b3b4d1961b96c601038e49a8c84b80c2ba734bb825fc9dd82d1bb623d8392f488e911b1678cbdfac3ffc1b1bf114996d001e5631417bffffff", + "cborBytes": [ + 216, 102, 159, 27, 233, 143, 51, 54, 12, 86, 6, 104, 159, 159, 159, 27, 195, 109, 220, 53, 178, 123, 58, 29, 73, + 223, 23, 234, 74, 115, 47, 67, 124, 221, 27, 27, 84, 124, 44, 97, 222, 191, 234, 70, 158, 47, 40, 73, 189, 25, + 255, 27, 10, 164, 43, 244, 47, 76, 141, 183, 216, 102, 159, 27, 8, 184, 52, 219, 48, 45, 181, 245, 159, 67, 29, + 106, 153, 70, 86, 83, 177, 149, 218, 190, 255, 255, 27, 161, 201, 108, 20, 70, 23, 198, 204, 191, 67, 98, 51, 109, + 27, 84, 5, 79, 203, 183, 102, 8, 170, 67, 154, 228, 39, 76, 138, 148, 8, 125, 56, 214, 0, 232, 194, 162, 179, 79, + 75, 176, 58, 30, 225, 161, 141, 188, 99, 221, 201, 153, 72, 65, 198, 205, 236, 49, 19, 171, 229, 73, 229, 103, 34, + 75, 182, 28, 142, 147, 86, 27, 38, 243, 56, 187, 211, 125, 75, 43, 75, 244, 100, 89, 233, 59, 113, 173, 213, 44, + 100, 185, 70, 62, 25, 35, 68, 246, 40, 70, 253, 88, 81, 145, 203, 79, 27, 161, 207, 219, 59, 74, 168, 0, 133, 255, + 255, 159, 160, 255, 191, 27, 43, 181, 73, 236, 224, 251, 139, 34, 27, 158, 119, 62, 31, 156, 74, 128, 163, 27, 76, + 9, 239, 150, 173, 67, 149, 23, 27, 174, 179, 176, 156, 54, 149, 70, 217, 27, 139, 240, 10, 193, 240, 27, 13, 27, + 72, 64, 182, 6, 52, 179, 180, 209, 150, 27, 150, 198, 1, 3, 142, 73, 168, 200, 75, 128, 194, 186, 115, 75, 184, + 37, 252, 157, 216, 45, 27, 182, 35, 216, 57, 47, 72, 142, 145, 27, 22, 120, 203, 223, 172, 63, 252, 27, 27, 241, + 20, 153, 109, 0, 30, 86, 49, 65, 123, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 110, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13317580493441387007" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1348343605627696487" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "61c81c5045" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bc4b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "287673e6131c63" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7087" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5e4b969" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6941582617394163980" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c566333e60e1ef776b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0da883238" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee2a1e6d4d85" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1995541716676351306" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f33aa85d40e30cb640" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f50bab087bdfb2b88369bf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3c99f66" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e866a4" + } + } + ] + } + ] + }, + "cborHex": "d9050c9f9f1bb8d18ce6333ec9ffd8669f1b12b6475d909bb5679f4561c81c5045ffff42bc4bffbf47287673e6131c6342708744b5e4b9691b6055749cc8ce310c49c566333e60e1ef776b45e0da88323846ee2a1e6d4d851b1bb1969e54f7954a49f33aa85d40e30cb6404bf50bab087bdfb2b88369bf44f3c99f6643e866a4ffff", + "cborBytes": [ + 217, 5, 12, 159, 159, 27, 184, 209, 140, 230, 51, 62, 201, 255, 216, 102, 159, 27, 18, 182, 71, 93, 144, 155, 181, + 103, 159, 69, 97, 200, 28, 80, 69, 255, 255, 66, 188, 75, 255, 191, 71, 40, 118, 115, 230, 19, 28, 99, 66, 112, + 135, 68, 181, 228, 185, 105, 27, 96, 85, 116, 156, 200, 206, 49, 12, 73, 197, 102, 51, 62, 96, 225, 239, 119, 107, + 69, 224, 218, 136, 50, 56, 70, 238, 42, 30, 109, 77, 133, 27, 27, 177, 150, 158, 84, 247, 149, 74, 73, 243, 58, + 168, 93, 64, 227, 12, 182, 64, 75, 245, 11, 171, 8, 123, 223, 178, 184, 131, 105, 191, 68, 243, 201, 159, 102, 67, + 232, 102, 164, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 111, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3336689311641845602" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8112da39" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d9050d9fd9050c8041009f9f031b2e4e4d401a413f62448112da39ffa0a0ffff", + "cborBytes": [ + 217, 5, 13, 159, 217, 5, 12, 128, 65, 0, 159, 159, 3, 27, 46, 78, 77, 64, 26, 65, 63, 98, 68, 129, 18, 218, 57, + 255, 160, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 112, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18326708228921046072" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af7b121b2e7e5987" + } + ] + }, + "cborHex": "d87f9f1bfe558c08ff11343848af7b121b2e7e5987ff", + "cborBytes": [216, 127, 159, 27, 254, 85, 140, 8, 255, 17, 52, 56, 72, 175, 123, 18, 27, 46, 126, 89, 135, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 113, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16757795266496098993" + }, + "fields": [] + }, + "cborHex": "d8669f1be88fa6021e38f2b180ff", + "cborBytes": [216, 102, 159, 27, 232, 143, 166, 2, 30, 56, 242, 177, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 114, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2dcd0fef4bd82d066b18c7" + } + ] + }, + "cborHex": "d905089f4b2dcd0fef4bd82d066b18c7ff", + "cborBytes": [217, 5, 8, 159, 75, 45, 205, 15, 239, 75, 216, 45, 6, 107, 24, 199, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 115, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "581124854880501086" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2787983355048320357" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65531920bf82baef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14455570540036560446" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d45f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15289252956131524163" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2eaa1d6aeb5677" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5495543788497402759" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16083440685482875826" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15985155129540928564" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16700959079170522181" + } + } + ] + }, + "cborHex": "d8669f1b081091fa014d7d5e9fbf1b26b0e8170d5b5d654865531920bf82baef1bc89c80d1387b163e42d45f1bd42e568ec34f7e43472eaa1d6aeb5677ff801b4c4417f580fdfb879fd8669f1bdf33dc16f8459bb29f1bddd6ade5b7cce434ffffff1be7c5b9cc0a4b3c45ffff", + "cborBytes": [ + 216, 102, 159, 27, 8, 16, 145, 250, 1, 77, 125, 94, 159, 191, 27, 38, 176, 232, 23, 13, 91, 93, 101, 72, 101, 83, + 25, 32, 191, 130, 186, 239, 27, 200, 156, 128, 209, 56, 123, 22, 62, 66, 212, 95, 27, 212, 46, 86, 142, 195, 79, + 126, 67, 71, 46, 170, 29, 106, 235, 86, 119, 255, 128, 27, 76, 68, 23, 245, 128, 253, 251, 135, 159, 216, 102, + 159, 27, 223, 51, 220, 22, 248, 69, 155, 178, 159, 27, 221, 214, 173, 229, 183, 204, 228, 52, 255, 255, 255, 27, + 231, 197, 185, 204, 10, 75, 60, 69, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 116, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13325455053869836796" + } + } + ] + }, + "cborHex": "d87f9f1bb8ed86c52c5869fcff", + "cborBytes": [216, 127, 159, 27, 184, 237, 134, 197, 44, 88, 105, 252, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 117, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [] + }, + "cborHex": "d87980", + "cborBytes": [216, 121, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 118, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8170955573305592899" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14689213033794770481" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + ] + }, + "cborHex": "d8669f1b716510cd6660cc439f1bcbda916d6d6016311bfffffffffffffffbffff", + "cborBytes": [ + 216, 102, 159, 27, 113, 101, 16, 205, 102, 96, 204, 67, 159, 27, 203, 218, 145, 109, 109, 96, 22, 49, 27, 255, + 255, 255, 255, 255, 255, 255, 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 119, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ad56d2a7b2571c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7103656799223763234" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9752912525558840705" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6728165613030638478" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8676456304509171096" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a4" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7409049922031810170" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1041142960222152517" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13774703071653717887" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905079f9f47ad56d2a7b2571c9f1b62954238dc0551221b87594e44d3647d81415a1b5d5f3efa4ab0838e1b7868f70a0377b598ff41a4801b66d23ba635d7767aff9fbf1b0e72e2019070a7451bbf2993765066e77fffffff", + "cborBytes": [ + 217, 5, 7, 159, 159, 71, 173, 86, 210, 167, 178, 87, 28, 159, 27, 98, 149, 66, 56, 220, 5, 81, 34, 27, 135, 89, + 78, 68, 211, 100, 125, 129, 65, 90, 27, 93, 95, 62, 250, 74, 176, 131, 142, 27, 120, 104, 247, 10, 3, 119, 181, + 152, 255, 65, 164, 128, 27, 102, 210, 59, 166, 53, 215, 118, 122, 255, 159, 191, 27, 14, 114, 226, 1, 144, 112, + 167, 69, 27, 191, 41, 147, 118, 80, 102, 231, 127, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 120, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bef544d9adcc5109" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f824" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4772929204442112708" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10267986313631275812" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bc99abc68da7932c" + }, + { + "_tag": "ByteArray", + "bytearray": "2dc2709b3efbff7a72d7cd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "795928247944582391" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f56b6f1d1198c1ea" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f9f0cbf48bef544d9adcc51091bffffffffffffffef42f8240bffff9f4103d8669f1b423cd9d2c8dc22c49f1b8e7f37266e909b2448bc99abc68da7932c4b2dc2709b3efbff7a72d7cd1b0b0bb486456f94f748f56b6f1d1198c1eaffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 159, 12, 191, 72, 190, 245, 68, 217, 173, 204, 81, + 9, 27, 255, 255, 255, 255, 255, 255, 255, 239, 66, 248, 36, 11, 255, 255, 159, 65, 3, 216, 102, 159, 27, 66, 60, + 217, 210, 200, 220, 34, 196, 159, 27, 142, 127, 55, 38, 110, 144, 155, 36, 72, 188, 153, 171, 198, 141, 167, 147, + 44, 75, 45, 194, 112, 155, 62, 251, 255, 122, 114, 215, 205, 27, 11, 11, 180, 134, 69, 111, 148, 247, 72, 245, + 107, 111, 29, 17, 152, 193, 234, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 121, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5131165994836971751" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "681418ad" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10472517079419119593" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16cdaf08b8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15325872365411810393" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18334604315382997507" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7043759921646876364" + } + } + } + ] + } + ] + }, + "cborHex": "d9050b9fbf1b4735904945d250e744681418ad1b9155dacc46fce7e94516cdaf08b81bd4b06fb76558bc5941971bfe71997be3bf62031b61c076544ce536ccffff", + "cborBytes": [ + 217, 5, 11, 159, 191, 27, 71, 53, 144, 73, 69, 210, 80, 231, 68, 104, 20, 24, 173, 27, 145, 85, 218, 204, 70, 252, + 231, 233, 69, 22, 205, 175, 8, 184, 27, 212, 176, 111, 183, 101, 88, 188, 89, 65, 151, 27, 254, 113, 153, 123, + 227, 191, 98, 3, 27, 97, 192, 118, 84, 76, 229, 54, 204, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 122, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15102319631810272110" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16755841064877072347" + } + }, + { + "_tag": "ByteArray", + "bytearray": "13" + } + ] + }, + "cborHex": "d8669f1bd19637b08a759b6e9fa01be888b4ac18e69fdb4113ffff", + "cborBytes": [ + 216, 102, 159, 27, 209, 150, 55, 176, 138, 117, 155, 110, 159, 160, 27, 232, 136, 180, 172, 24, 230, 159, 219, 65, + 19, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 123, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9334199425915054240" + }, + "fields": [] + }, + "cborHex": "d8669f1b8189bcec545268a080ff", + "cborBytes": [216, 102, 159, 27, 129, 137, 188, 236, 84, 82, 104, 160, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 124, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [] + }, + "cborHex": "d9050c80", + "cborBytes": [217, 5, 12, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 125, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12499126831518038184" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1855847413975642566" + } + } + ] + }, + "cborHex": "d905089f1bad75d1a14b2fb8a81b19c14b63eb5871c6ff", + "cborBytes": [ + 217, 5, 8, 159, 27, 173, 117, 209, 161, 75, 47, 184, 168, 27, 25, 193, 75, 99, 235, 88, 113, 198, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 126, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4804377551642044948" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13770798123375819855" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fac08924318bbfea95ad" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16948845086581170149" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16570349440436027292" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "ByteArray", + "bytearray": "97bb35e26aab31" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7549189667477575110" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07e214319c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b42ac93edb47c2a149fd8669f1bbf1bb3eeb16e7c4f9f04bf124afac08924318bbfea95adff1beb3664ceb2cb9fe5bf1be5f5b505c9483f9c41e7ffffffd905069f074797bb35e26aab31ffbf1b68c41c01580cd5c64507e214319c1bfffffffffffffff341adffffff", + "cborBytes": [ + 216, 102, 159, 27, 66, 172, 147, 237, 180, 124, 42, 20, 159, 216, 102, 159, 27, 191, 27, 179, 238, 177, 110, 124, + 79, 159, 4, 191, 18, 74, 250, 192, 137, 36, 49, 139, 191, 234, 149, 173, 255, 27, 235, 54, 100, 206, 178, 203, + 159, 229, 191, 27, 229, 245, 181, 5, 201, 72, 63, 156, 65, 231, 255, 255, 255, 217, 5, 6, 159, 7, 71, 151, 187, + 53, 226, 106, 171, 49, 255, 191, 27, 104, 196, 28, 1, 88, 12, 213, 198, 69, 7, 226, 20, 49, 156, 27, 255, 255, + 255, 255, 255, 255, 255, 243, 65, 173, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 127, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffffc80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 128, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6041080955991595254" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "301d2c6ca3e99e2e070d" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d9050c9fbf1b53d63b1f594198f64a301d2c6ca3e99e2e070dffd8669f1bfffffffffffffffb9fa0ffffff", + "cborBytes": [ + 217, 5, 12, 159, 191, 27, 83, 214, 59, 31, 89, 65, 152, 246, 74, 48, 29, 44, 108, 163, 233, 158, 46, 7, 13, 255, + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 129, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d9050b9f80ff", + "cborBytes": [217, 5, 11, 159, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 130, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "655446867976000903" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "78fa63affc9fdea22f08" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3331390403868202351" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0e1f2f1f" + } + ] + } + ] + }, + "cborHex": "d8669f1b09189d7426da15879f4a78fa63affc9fdea22f08d8669f1b2e3b79ebfeb5956f9f440e1f2f1fffffffff", + "cborBytes": [ + 216, 102, 159, 27, 9, 24, 157, 116, 38, 218, 21, 135, 159, 74, 120, 250, 99, 175, 252, 159, 222, 162, 47, 8, 216, + 102, 159, 27, 46, 59, 121, 235, 254, 181, 149, 111, 159, 68, 14, 31, 47, 31, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 131, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6021967514059071122" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7726973866412175968" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3406582203357707224" + } + }, + { + "_tag": "ByteArray", + "bytearray": "38cad397591b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7866032361304970903" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12692366525042722632" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8680077653576862053" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12161685771282511508" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17001116125752675613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10465164288397157216" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17687780704917032058" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13097931954361025331" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8214389927474646264" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9284828167360617626" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "105f8f6441" + }, + { + "_tag": "ByteArray", + "bytearray": "8ad316096571" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17282737505878373430" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "26" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7952694026449692051" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3246084046039861204" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7436496075055755760" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b5392538c5c6ede929f9f9f1b6b3bb9cad0397260ff1b2f469c77114dbbd84638cad397591bbf1b6d29c2c1af4f56971bb024581b843b07481b7875d4a30c4149651ba8c6fcc60b3776941bebf0190a64a74d1d1b913bbb79360423601bf5779ed655968c7a1bb5c533b777ed4333ff1b71ff601e09ac4cf8ff80d8669f1b80da56066c121c9a9f45105f8f6441468ad3160965711befd89e31983374369f41261b6e5da514f5e7a5931b2d0c683dcb44c7d41b6733bdc7af48f1f0ffa0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 83, 146, 83, 140, 92, 110, 222, 146, 159, 159, 159, 27, 107, 59, 185, 202, 208, 57, 114, 96, + 255, 27, 47, 70, 156, 119, 17, 77, 187, 216, 70, 56, 202, 211, 151, 89, 27, 191, 27, 109, 41, 194, 193, 175, 79, + 86, 151, 27, 176, 36, 88, 27, 132, 59, 7, 72, 27, 120, 117, 212, 163, 12, 65, 73, 101, 27, 168, 198, 252, 198, 11, + 55, 118, 148, 27, 235, 240, 25, 10, 100, 167, 77, 29, 27, 145, 59, 187, 121, 54, 4, 35, 96, 27, 245, 119, 158, + 214, 85, 150, 140, 122, 27, 181, 197, 51, 183, 119, 237, 67, 51, 255, 27, 113, 255, 96, 30, 9, 172, 76, 248, 255, + 128, 216, 102, 159, 27, 128, 218, 86, 6, 108, 18, 28, 154, 159, 69, 16, 95, 143, 100, 65, 70, 138, 211, 22, 9, + 101, 113, 27, 239, 216, 158, 49, 152, 51, 116, 54, 159, 65, 38, 27, 110, 93, 165, 20, 245, 231, 165, 147, 27, 45, + 12, 104, 61, 203, 68, 199, 212, 27, 103, 51, 189, 199, 175, 72, 241, 240, 255, 160, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 132, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21fbfc04fd09b7dc3b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12633476570860070358" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8592844276514199243" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f10bf014921fbfc04fd09b7dc3b0b061baf5320019455a5d60a1bfffffffffffffffe1b773fea57b7e096cbffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 16, 191, 1, 73, 33, 251, 252, 4, 253, 9, 183, 220, + 59, 11, 6, 27, 175, 83, 32, 1, 148, 85, 165, 214, 10, 27, 255, 255, 255, 255, 255, 255, 255, 254, 27, 119, 63, + 234, 87, 183, 224, 150, 203, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 133, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6100584308626757627" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13893147797543108940" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8796384679641564680" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1117098766568971307" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15360456064971093020" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4354670816239993049" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16153739193397516679" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e39fea8e26558afe41" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7186086306570358317" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bd2a7cdf656" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "881aeb49197e20e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "029cfe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff90004a01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + } + ] + } + ] + }, + "cborHex": "d905099f9fbf1b54a9a11b3e0517fb1bc0ce6050148ec14c1b7a130942c9b946081b0f80bb68d85edc2b1bd52b4d686c98b41c1b3c6ee6090bbec0d9ff1be02d9c35d0c399878049e39fea8e26558afe411b63ba1b6c1c6cce2dffbf415b468bd2a7cdf65648881aeb49197e20e943029cfe45ff90004a011bfffffffffffffffaffff", + "cborBytes": [ + 217, 5, 9, 159, 159, 191, 27, 84, 169, 161, 27, 62, 5, 23, 251, 27, 192, 206, 96, 80, 20, 142, 193, 76, 27, 122, + 19, 9, 66, 201, 185, 70, 8, 27, 15, 128, 187, 104, 216, 94, 220, 43, 27, 213, 43, 77, 104, 108, 152, 180, 28, 27, + 60, 110, 230, 9, 11, 190, 192, 217, 255, 27, 224, 45, 156, 53, 208, 195, 153, 135, 128, 73, 227, 159, 234, 142, + 38, 85, 138, 254, 65, 27, 99, 186, 27, 108, 28, 108, 206, 45, 255, 191, 65, 91, 70, 139, 210, 167, 205, 246, 86, + 72, 136, 26, 235, 73, 25, 126, 32, 233, 67, 2, 156, 254, 69, 255, 144, 0, 74, 1, 27, 255, 255, 255, 255, 255, 255, + 255, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 134, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1002384222607542295" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15550835772111789870" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16c844bf6df8995f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14987928962385487070" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b0de92f23bcfa88179f1bffffffffffffffebd8669f1bd7cfaabe2d291f2e80ffbf4816c844bf6df8995f411241321bcfffd1fb59c6a4deffffff", + "cborBytes": [ + 216, 102, 159, 27, 13, 233, 47, 35, 188, 250, 136, 23, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 216, 102, + 159, 27, 215, 207, 170, 190, 45, 41, 31, 46, 128, 255, 191, 72, 22, 200, 68, 191, 109, 248, 153, 95, 65, 18, 65, + 50, 27, 207, 255, 209, 251, 89, 198, 164, 222, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 135, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4638893723976499268" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4240738309122602076" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bb3032090a7e2472fb20" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16472119089762924540" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4898696386528119756" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9648226426120148774" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e522e0f576c8" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f9a3b5" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0a383a1a4705" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f324a65ccdcd9d3df5" + } + ] + }, + "cborHex": "d905029fd8669f1b4060a943986880449f9f1b3ada210614a4b45c0affa09f4abb3032090a7e2472fb201be498b90a033ff7fc1b43fbaa68bd7f8bcc1b85e562d0e96d972646e522e0f576c8ffd8669f1bfffffffffffffff19f43f9a3b5ffff9f460a383a1a4705ffffff8049f324a65ccdcd9d3df5ff", + "cborBytes": [ + 217, 5, 2, 159, 216, 102, 159, 27, 64, 96, 169, 67, 152, 104, 128, 68, 159, 159, 27, 58, 218, 33, 6, 20, 164, 180, + 92, 10, 255, 160, 159, 74, 187, 48, 50, 9, 10, 126, 36, 114, 251, 32, 27, 228, 152, 185, 10, 3, 63, 247, 252, 27, + 67, 251, 170, 104, 189, 127, 139, 204, 27, 133, 229, 98, 208, 233, 109, 151, 38, 70, 229, 34, 224, 245, 118, 200, + 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 67, 249, 163, 181, 255, 255, 159, 70, 10, 56, + 58, 26, 71, 5, 255, 255, 255, 128, 73, 243, 36, 166, 92, 205, 205, 157, 61, 245, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 136, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1567897319908937954" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3552533360170443497" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2065334434169559859" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af39ee757b4131" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2228213885726327405" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d58a578a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17312273623775454558" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17829920657567217566" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0280fee2fd064adc72fb07" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14022362431616654768" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a809371a8c7bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc78" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95" + } + ] + }, + "cborHex": "d905099fbf1b15c24a4e2d7590e21b314d2244d9af22e91b1ca98ab9ab0f1b3347af39ee757b41311b1eec34b9364f826d44d58a578a1bf0418d22ef80255e1bf7709a5effb1779effbf054b0280fee2fd064adc72fb07131bffffffffffffffff1bc2997056804b1db014472a809371a8c7bd42fc78ff0b4195ff", + "cborBytes": [ + 217, 5, 9, 159, 191, 27, 21, 194, 74, 78, 45, 117, 144, 226, 27, 49, 77, 34, 68, 217, 175, 34, 233, 27, 28, 169, + 138, 185, 171, 15, 27, 51, 71, 175, 57, 238, 117, 123, 65, 49, 27, 30, 236, 52, 185, 54, 79, 130, 109, 68, 213, + 138, 87, 138, 27, 240, 65, 141, 34, 239, 128, 37, 94, 27, 247, 112, 154, 94, 255, 177, 119, 158, 255, 191, 5, 75, + 2, 128, 254, 226, 253, 6, 74, 220, 114, 251, 7, 19, 27, 255, 255, 255, 255, 255, 255, 255, 255, 27, 194, 153, 112, + 86, 128, 75, 29, 176, 20, 71, 42, 128, 147, 113, 168, 199, 189, 66, 252, 120, 255, 11, 65, 149, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 137, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10285923300162921205" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "70" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11743686372575236405" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adb845" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4696963733946582568" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af6c188f6eadcdac2d99" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1197176705109777785" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8a1a727718d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f6d8c772174debd1618" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8ebef0be8d1fe2f59fbf41701ba2f9f488fef1513543adb8451b412ef7a164c746284aaf6c188f6eadcdac2d991b109d39ded170dd7946e8a1a727718d4a4f6d8c772174debd1618ffffff", + "cborBytes": [ + 216, 102, 159, 27, 142, 190, 240, 190, 141, 31, 226, 245, 159, 191, 65, 112, 27, 162, 249, 244, 136, 254, 241, 81, + 53, 67, 173, 184, 69, 27, 65, 46, 247, 161, 100, 199, 70, 40, 74, 175, 108, 24, 143, 110, 173, 205, 172, 45, 153, + 27, 16, 157, 57, 222, 209, 112, 221, 121, 70, 232, 161, 167, 39, 113, 141, 74, 79, 109, 140, 119, 33, 116, 222, + 189, 22, 24, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 138, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12213068044761981721" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "69649e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14703515549396481585" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c735" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b2caaf3b713" + } + } + ] + } + ] + }, + "cborHex": "d8669f1ba97d88add9b663199fbf4369649e1bcc0d617d5735b63142c735466b2caaf3b713ffffff", + "cborBytes": [ + 216, 102, 159, 27, 169, 125, 136, 173, 217, 182, 99, 25, 159, 191, 67, 105, 100, 158, 27, 204, 13, 97, 125, 87, + 53, 182, 49, 66, 199, 53, 70, 107, 44, 170, 243, 183, 19, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 139, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2182603142891532553" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec719716aec305c9fe22ea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10420131676421468469" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "673197968798114401" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15759113568241941033" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "917e51975317" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16050292458441101934" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11642595061932240211" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17083461049695904139" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dcd0a6b9f3c020bb36a65c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3657319045442212418" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7465344087996635464" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15018042470497996277" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15873369462694623207" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16531174204098201802" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16147397635524690337" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1176747046945822315" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7559504803203530422" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f41a2bf1b1e4a29fe99b371094bec719716aec305c9fe22ea1b909bbe8d2de5b1351b0957adfc61b9e2611bdab39e4b82197a2946917e519753171bdebe17f3ee83526e1ba192ce8612302d531bed14a5500958a18b4bdcd0a6b9f3c020bb36a65cff1b32c1684b65da9242bf1b679a3ae51b1a19481bd06ace0ed3c34df51bdc49896cf47237e71be56a875a4b5fc8ca1be0171498d06e81a11b1054a5345bb2166bff1b68e8c19108ce3eb6ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 65, 162, 191, 27, 30, 74, 41, 254, 153, 179, 113, + 9, 75, 236, 113, 151, 22, 174, 195, 5, 201, 254, 34, 234, 27, 144, 155, 190, 141, 45, 229, 177, 53, 27, 9, 87, + 173, 252, 97, 185, 226, 97, 27, 218, 179, 158, 75, 130, 25, 122, 41, 70, 145, 126, 81, 151, 83, 23, 27, 222, 190, + 23, 243, 238, 131, 82, 110, 27, 161, 146, 206, 134, 18, 48, 45, 83, 27, 237, 20, 165, 80, 9, 88, 161, 139, 75, + 220, 208, 166, 185, 243, 192, 32, 187, 54, 166, 92, 255, 27, 50, 193, 104, 75, 101, 218, 146, 66, 191, 27, 103, + 154, 58, 229, 27, 26, 25, 72, 27, 208, 106, 206, 14, 211, 195, 77, 245, 27, 220, 73, 137, 108, 244, 114, 55, 231, + 27, 229, 106, 135, 90, 75, 95, 200, 202, 27, 224, 23, 20, 152, 208, 110, 129, 161, 27, 16, 84, 165, 52, 91, 178, + 22, 107, 255, 27, 104, 232, 193, 145, 8, 206, 62, 182, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 140, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15405471716492576882" + }, + "fields": [] + }, + "cborHex": "d8669f1bd5cb3ae78ade087280ff", + "cborBytes": [216, 102, 159, 27, 213, 203, 58, 231, 138, 222, 8, 114, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 141, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15882857826050768729" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8f2d9b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "80630e622933e0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3825024284625679963" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8017482907710809301" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3839761382940231081" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12560661684634591071" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7fd10b" + }, + { + "_tag": "ByteArray", + "bytearray": "c0cb04de4da158" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f862a4252" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a786d435514" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "139fb0b8b7" + }, + { + "_tag": "ByteArray", + "bytearray": "48153c18c41ce877659e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4175888782626132178" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a8b8728f14b91006af928f06" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1232680708833148138" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1196996076155624755" + } + }, + { + "_tag": "ByteArray", + "bytearray": "613b7d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2562409671637869852" + } + }, + { + "_tag": "ByteArray", + "bytearray": "559046fe3a57" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2196059965238124586" + } + }, + { + "_tag": "ByteArray", + "bytearray": "621ba38012a3c7df59" + }, + { + "_tag": "ByteArray", + "bytearray": "b1dcfe80f03885" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "335e317761e9183c" + } + ] + }, + "cborHex": "d8669f1bdc6b3f0ab3c9ff599f438f2d9b9f4780630e622933e0d8669f1b351537522e5b365b9f1b6f43d239e2de64d51b354992a2446a45a91bae506f40c0811f5f437fd10b47c0cb04de4da158ffffbf457f862a4252467a786d435514ff45139fb0b8b74a48153c18c41ce877659effd8669f1b39f3bcb915f810d29f4ca8b8728f14b91006af928f069f1b111b5c92db79fcea1b109c9596dccadd3343613b7d1b238f82052700251c46559046fe3a57ff9f1b1e79f8e73579a02a49621ba38012a3c7df5947b1dcfe80f03885ffffff48335e317761e9183cffff", + "cborBytes": [ + 216, 102, 159, 27, 220, 107, 63, 10, 179, 201, 255, 89, 159, 67, 143, 45, 155, 159, 71, 128, 99, 14, 98, 41, 51, + 224, 216, 102, 159, 27, 53, 21, 55, 82, 46, 91, 54, 91, 159, 27, 111, 67, 210, 57, 226, 222, 100, 213, 27, 53, 73, + 146, 162, 68, 106, 69, 169, 27, 174, 80, 111, 64, 192, 129, 31, 95, 67, 127, 209, 11, 71, 192, 203, 4, 222, 77, + 161, 88, 255, 255, 191, 69, 127, 134, 42, 66, 82, 70, 122, 120, 109, 67, 85, 20, 255, 69, 19, 159, 176, 184, 183, + 74, 72, 21, 60, 24, 196, 28, 232, 119, 101, 158, 255, 216, 102, 159, 27, 57, 243, 188, 185, 21, 248, 16, 210, 159, + 76, 168, 184, 114, 143, 20, 185, 16, 6, 175, 146, 143, 6, 159, 27, 17, 27, 92, 146, 219, 121, 252, 234, 27, 16, + 156, 149, 150, 220, 202, 221, 51, 67, 97, 59, 125, 27, 35, 143, 130, 5, 39, 0, 37, 28, 70, 85, 144, 70, 254, 58, + 87, 255, 159, 27, 30, 121, 248, 231, 53, 121, 160, 42, 73, 98, 27, 163, 128, 18, 163, 199, 223, 89, 71, 177, 220, + 254, 128, 240, 56, 133, 255, 255, 255, 72, 51, 94, 49, 119, 97, 233, 24, 60, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 142, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4459021828319082287" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00f8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16573283550299882827" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16775597872075206684" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13557766319604609573" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11943210172091631712" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bbc47deff728" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bbb73199" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f8bc469144f9b209966f" + }, + { + "_tag": "ByteArray", + "bytearray": "8ec842ed2713c3a11d382903" + }, + { + "_tag": "ByteArray", + "bytearray": "11849796" + }, + { + "_tag": "ByteArray", + "bytearray": "c95b940e9fc0f9" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8905104628938387374" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3de1a0ba5aabf72f9f4200f8d8669f1be60021947973054b80ffd8669f1be8cee5623bd7701c9f1bbc26dca2b3c9b2259f1ba5bece5fa95a886046bbc47deff728ff44bbb731999f4af8bc469144f9b209966f4c8ec842ed2713c3a11d382903441184979647c95b940e9fc0f9ff1b7b95497a8f8f2faeffffffff", + "cborBytes": [ + 216, 102, 159, 27, 61, 225, 160, 186, 90, 171, 247, 47, 159, 66, 0, 248, 216, 102, 159, 27, 230, 0, 33, 148, 121, + 115, 5, 75, 128, 255, 216, 102, 159, 27, 232, 206, 229, 98, 59, 215, 112, 28, 159, 27, 188, 38, 220, 162, 179, + 201, 178, 37, 159, 27, 165, 190, 206, 95, 169, 90, 136, 96, 70, 187, 196, 125, 239, 247, 40, 255, 68, 187, 183, + 49, 153, 159, 74, 248, 188, 70, 145, 68, 249, 178, 9, 150, 111, 76, 142, 200, 66, 237, 39, 19, 195, 161, 29, 56, + 41, 3, 68, 17, 132, 151, 150, 71, 201, 91, 148, 14, 159, 192, 249, 255, 27, 123, 149, 73, 122, 143, 143, 47, 174, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 143, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2050254763101242057" + }, + "fields": [] + }, + "cborHex": "d8669f1b1c73f7d825b3c2c980ff", + "cborBytes": [216, 102, 159, 27, 28, 115, 247, 216, 37, 179, 194, 201, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 144, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7021906654165760008" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13053302540942379427" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "462466162675360694" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c0e2d05353a442fb991540d" + }, + { + "_tag": "ByteArray", + "bytearray": "7e805bc78d" + }, + { + "_tag": "ByteArray", + "bytearray": "ae6d06" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15976984977257970967" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1639517950507488857" + } + }, + { + "_tag": "ByteArray", + "bytearray": "965fb17e4a7c51c49c38b0d0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1275317123532200916" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1731727289199446779" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1764166699821624221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14205075985066660655" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18189442232394531702" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15623282792382030602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11161651625336685570" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15821512377741959179" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "739e3413f876bc47ca9c" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b6172d2e5f78078089fd8669f1bb526a5806a9309a39f9f1b066b028652e723b64c1c0e2d05353a442fb991540d457e805bc78d43ae6d06ff9f1bddb9a72fe736bd17ff1b16c0bce3b2e016594c965fb17e4a7c51c49c38b0d0bf1b11b2d62abc1c1bd41b180854cb60954afb1b187b94443b70eb9d415b1bc5229158c154932f1bfc6de156ac5d43761bd8d10cec8967630a1b9ae627042adac4021bdb914dae7cc1600b4a739e3413f876bc47ca9cffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 97, 114, 210, 229, 247, 128, 120, 8, 159, 216, 102, 159, 27, 181, 38, 165, 128, 106, 147, 9, + 163, 159, 159, 27, 6, 107, 2, 134, 82, 231, 35, 182, 76, 28, 14, 45, 5, 53, 58, 68, 47, 185, 145, 84, 13, 69, 126, + 128, 91, 199, 141, 67, 174, 109, 6, 255, 159, 27, 221, 185, 167, 47, 231, 54, 189, 23, 255, 27, 22, 192, 188, 227, + 178, 224, 22, 89, 76, 150, 95, 177, 126, 74, 124, 81, 196, 156, 56, 176, 208, 191, 27, 17, 178, 214, 42, 188, 28, + 27, 212, 27, 24, 8, 84, 203, 96, 149, 74, 251, 27, 24, 123, 148, 68, 59, 112, 235, 157, 65, 91, 27, 197, 34, 145, + 88, 193, 84, 147, 47, 27, 252, 109, 225, 86, 172, 93, 67, 118, 27, 216, 209, 12, 236, 137, 103, 99, 10, 27, 154, + 230, 39, 4, 42, 218, 196, 2, 27, 219, 145, 77, 174, 124, 193, 96, 11, 74, 115, 158, 52, 19, 248, 118, 188, 71, + 202, 156, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 145, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15965591125443206258" + }, + "fields": [] + }, + "cborHex": "d8669f1bdd912c8a0d2bdc7280ff", + "cborBytes": [216, 102, 159, 27, 221, 145, 44, 138, 13, 43, 220, 114, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 146, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7363688445051911779" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15718099742306969246" + } + } + ] + }, + "cborHex": "d8669f1b663113a053f7be639f1bda21e870045da69effff", + "cborBytes": [ + 216, 102, 159, 27, 102, 49, 19, 160, 83, 247, 190, 99, 159, 27, 218, 33, 232, 112, 4, 93, 166, 158, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 147, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2168906762267385184" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10497097428797233257" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d927028feaf4c8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7225093203720916854" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13120707931417477481" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca9062d2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13294509730766488409" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1754775533162009852" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b1e1981357be3dd609f1b91ad2e7ed82018699f47d927028feaf4c81b6444affd14dfcf76bf1bb6161e58ddca016944ca9062d21bb87f9629ad4f83591b185a370cdaab14fcffffffff", + "cborBytes": [ + 216, 102, 159, 27, 30, 25, 129, 53, 123, 227, 221, 96, 159, 27, 145, 173, 46, 126, 216, 32, 24, 105, 159, 71, 217, + 39, 2, 143, 234, 244, 200, 27, 100, 68, 175, 253, 20, 223, 207, 118, 191, 27, 182, 22, 30, 88, 221, 202, 1, 105, + 68, 202, 144, 98, 210, 27, 184, 127, 150, 41, 173, 79, 131, 89, 27, 24, 90, 55, 12, 218, 171, 20, 252, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 148, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8208710428179236606" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12845178372096200187" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "af9e8c" + } + ] + } + ] + }, + "cborHex": "d8669f1b71eb32a48fab06fe9fd8669f1bb2433dac39530dfb9f43af9e8cffffffff", + "cborBytes": [ + 216, 102, 159, 27, 113, 235, 50, 164, 143, 171, 6, 254, 159, 216, 102, 159, 27, 178, 67, 61, 172, 57, 83, 13, 251, + 159, 67, 175, 158, 140, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 149, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5761653144119259990" + }, + "fields": [] + }, + "cborHex": "d8669f1b4ff581020e3db35680ff", + "cborBytes": [216, 102, 159, 27, 79, 245, 129, 2, 14, 61, 179, 86, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 150, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2223249698608481233" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13518167519366350558" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15051854768350572441" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "63c75b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cb1ce1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14297166893178261516" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5131985000619086389" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13932671237800957616" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10079516421856754394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15069928289484804427" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d181b12a5ae9727dc56" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9e0ff19858dbc0e2edb977d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61656f07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15414340656760094791" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "985a98b075fa0de22476da72" + } + ] + }, + "cborHex": "d8669f1b1eda91d2548d83d19fd8669f1bbb9a2dbc8e0e06de9f801bd0e2ee29e64e2f999f4363c75bff43cb1ce1ffff1bc669bd8a2a5d900cbf1b4738792aea8892351bc15acaac1d6d96b01b8be1a2c8387cfada1bd12323ef755a114b4a1d181b12a5ae9727dc564ce9e0ff19858dbc0e2edb977d4461656f071bd5eabd289d0c0047ff4c985a98b075fa0de22476da72ffff", + "cborBytes": [ + 216, 102, 159, 27, 30, 218, 145, 210, 84, 141, 131, 209, 159, 216, 102, 159, 27, 187, 154, 45, 188, 142, 14, 6, + 222, 159, 128, 27, 208, 226, 238, 41, 230, 78, 47, 153, 159, 67, 99, 199, 91, 255, 67, 203, 28, 225, 255, 255, 27, + 198, 105, 189, 138, 42, 93, 144, 12, 191, 27, 71, 56, 121, 42, 234, 136, 146, 53, 27, 193, 90, 202, 172, 29, 109, + 150, 176, 27, 139, 225, 162, 200, 56, 124, 250, 218, 27, 209, 35, 35, 239, 117, 90, 17, 75, 74, 29, 24, 27, 18, + 165, 174, 151, 39, 220, 86, 76, 233, 224, 255, 25, 133, 141, 188, 14, 46, 219, 151, 125, 68, 97, 101, 111, 7, 27, + 213, 234, 189, 40, 157, 12, 0, 71, 255, 76, 152, 90, 152, 176, 117, 250, 13, 226, 36, 118, 218, 114, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 151, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1099785921238421773" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "77e70626f678" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "208288826047721676" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9028653754607573625" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7076703434601589593" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abc3dfabdff23e1f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7722044058692477054" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10029950215269147044" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10466996164878069943" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10030183688635051566" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14709542573322873019" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b58a8ce727b13fb0ccc2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16382818397006040192" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6443fb098c0ac0f6fc76" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b0f433977ec64510d9f4677e70626f6789fbf1b02e3fd956f41f0cc1b7d4c38c103619a791b62358047a036eb5948abc3dfabdff23e1f1b6b2a36288247e07e1b8b318a946ff861a41b91423d8e30eef0b71b8b325eec31026e2e1bcc22cb09336528bb4ab58a8ce727b13fb0ccc21be35b76883d478c804a6443fb098c0ac0f6fc76ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 15, 67, 57, 119, 236, 100, 81, 13, 159, 70, 119, 231, 6, 38, 246, 120, 159, 191, 27, 2, 227, + 253, 149, 111, 65, 240, 204, 27, 125, 76, 56, 193, 3, 97, 154, 121, 27, 98, 53, 128, 71, 160, 54, 235, 89, 72, + 171, 195, 223, 171, 223, 242, 62, 31, 27, 107, 42, 54, 40, 130, 71, 224, 126, 27, 139, 49, 138, 148, 111, 248, 97, + 164, 27, 145, 66, 61, 142, 48, 238, 240, 183, 27, 139, 50, 94, 236, 49, 2, 110, 46, 27, 204, 34, 203, 9, 51, 101, + 40, 187, 74, 181, 138, 140, 231, 39, 177, 63, 176, 204, 194, 27, 227, 91, 118, 136, 61, 71, 140, 128, 74, 100, 67, + 251, 9, 140, 10, 192, 246, 252, 118, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 152, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2719243761107525352" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9313698705746939417" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5604738854451397259" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a45318" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3462473568081628747" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9bbf2ab4162" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17254579327396643403" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13700196319366941791" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17763149645145372508" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b96e58233903890d73b" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905019f1b25bcb1cb2682dee8d8669f1b8140e7a0750fce199f1b4dc8084afe67c28b43a45318bf1b300d2d5d7daf4e4b46f9bbf2ab41621bef74947ac646824b1bbe20dff738fb0c5f1bf683627d32fef75c4a9b96e58233903890d73bffffffff", + "cborBytes": [ + 217, 5, 1, 159, 27, 37, 188, 177, 203, 38, 130, 222, 232, 216, 102, 159, 27, 129, 64, 231, 160, 117, 15, 206, 25, + 159, 27, 77, 200, 8, 74, 254, 103, 194, 139, 67, 164, 83, 24, 191, 27, 48, 13, 45, 93, 125, 175, 78, 75, 70, 249, + 187, 242, 171, 65, 98, 27, 239, 116, 148, 122, 198, 70, 130, 75, 27, 190, 32, 223, 247, 56, 251, 12, 95, 27, 246, + 131, 98, 125, 50, 254, 247, 92, 74, 155, 150, 229, 130, 51, 144, 56, 144, 215, 59, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 153, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2539149021370957418" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14340134875001035575" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b233cde94fa98be6a9f801bc70264b107a09b3780ffff", + "cborBytes": [ + 216, 102, 159, 27, 35, 60, 222, 148, 250, 152, 190, 106, 159, 128, 27, 199, 2, 100, 177, 7, 160, 155, 55, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 154, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3058035146880611030" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5c9ff8f2" + }, + { + "_tag": "ByteArray", + "bytearray": "866b9917f9a2b8d3f39b25" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0048fa" + }, + { + "_tag": "ByteArray", + "bytearray": "5f" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f9f1b2a7052c3907a72d6d905079f445c9ff8f24b866b9917f9a2b8d3f39b251bfffffffffffffffb430048fa415fffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 159, 27, 42, 112, 82, 195, 144, 122, 114, 214, + 217, 5, 7, 159, 68, 92, 159, 248, 242, 75, 134, 107, 153, 23, 249, 162, 184, 211, 243, 155, 37, 27, 255, 255, 255, + 255, 255, 255, 255, 251, 67, 0, 72, 250, 65, 95, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 155, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3465653102287930371" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16244529034878490634" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17140884668053472802" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cba1f664be9d2e7367" + } + } + ] + } + ] + }, + "cborHex": "d9050d9fbf1b301879227c9a44031be17029170b73980a1bede0a7ca0f44462249cba1f664be9d2e7367ffff", + "cborBytes": [ + 217, 5, 13, 159, 191, 27, 48, 24, 121, 34, 124, 154, 68, 3, 27, 225, 112, 41, 23, 11, 115, 152, 10, 27, 237, 224, + 167, 202, 15, 68, 70, 34, 73, 203, 161, 246, 100, 190, 157, 46, 115, 103, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 156, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6304088096285182764" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8129443238620736904" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52a1d22d4d525a94b8c68df4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12651316448123052988" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5341209191714937293" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13262909010275030030" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3957568799355245600" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13889690200654965636" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3280631907413392747" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17724172706867103352" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d00e509b" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13487849373290413439" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11054855603625699417" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3210306737333300662" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17380322600296845323" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b26404a0f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12809868367474892462" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5632257419986031881" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1f030f6b58c767" + }, + { + "_tag": "ByteArray", + "bytearray": "b6b92fbfb105" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15251167800776004360" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b98873b9cd219c4b770106" + }, + { + "_tag": "ByteArray", + "bytearray": "6b21b9bd42b0515d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14337729979314246181" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87a89816d51238407c56" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d8ec15d7f9ca183" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6cbe1b62ef88c3cb2d13f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "462d7d7edd8648cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e4e736907b2a0868d8016b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50a66c9dd5224d28fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18275934936709500450" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba8d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10828113531172663878" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c95802741d133f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bda45f96ae2d7b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc52d4880da195840b463621" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65af02" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b577c9eb91bd8cb2c9fbf1b70d1958dcbb0ad884c52a1d22d4d525a94b8c68df41baf928147af6e63bc1b4a1fc975ff3859cd1bb80f517995c5540e1b36ec1bdadbbd14201bc0c217a592436b841b2d872556982ffd6b1bf5f8e92b927cc67844d00e509bffd8669f1bbb2e778b16f33d7f9fd8669f1b996abc99b158a8599f1b2c8d4cf7facb6db61bf1334f51f063100b45b26404a0f81bb1c5cb691eda9eaeffffffffd8669f1b4e29cc4851d355099f471f030f6b58c76746b6b92fbfb105d8669f1bd3a7084f872113089f4bb98873b9cd219c4b770106486b21b9bd42b0515d1bc6f9d9739e7e92254a87a89816d51238407c56ffff80ffffbf481d8ec15d7f9ca1834b6cbe1b62ef88c3cb2d13f348462d7d7edd8648cc4c5e4e736907b2a0868d8016b94950a66c9dd5224d28fd1bfda129feb0b88e2242ba8d1b96452fe30525b24647c95802741d133f47bda45f96ae2d7b4cfc52d4880da195840b4636214365af02ffffff", + "cborBytes": [ + 216, 102, 159, 27, 87, 124, 158, 185, 27, 216, 203, 44, 159, 191, 27, 112, 209, 149, 141, 203, 176, 173, 136, 76, + 82, 161, 210, 45, 77, 82, 90, 148, 184, 198, 141, 244, 27, 175, 146, 129, 71, 175, 110, 99, 188, 27, 74, 31, 201, + 117, 255, 56, 89, 205, 27, 184, 15, 81, 121, 149, 197, 84, 14, 27, 54, 236, 27, 218, 219, 189, 20, 32, 27, 192, + 194, 23, 165, 146, 67, 107, 132, 27, 45, 135, 37, 86, 152, 47, 253, 107, 27, 245, 248, 233, 43, 146, 124, 198, + 120, 68, 208, 14, 80, 155, 255, 216, 102, 159, 27, 187, 46, 119, 139, 22, 243, 61, 127, 159, 216, 102, 159, 27, + 153, 106, 188, 153, 177, 88, 168, 89, 159, 27, 44, 141, 76, 247, 250, 203, 109, 182, 27, 241, 51, 79, 81, 240, 99, + 16, 11, 69, 178, 100, 4, 160, 248, 27, 177, 197, 203, 105, 30, 218, 158, 174, 255, 255, 255, 255, 216, 102, 159, + 27, 78, 41, 204, 72, 81, 211, 85, 9, 159, 71, 31, 3, 15, 107, 88, 199, 103, 70, 182, 185, 47, 191, 177, 5, 216, + 102, 159, 27, 211, 167, 8, 79, 135, 33, 19, 8, 159, 75, 185, 136, 115, 185, 205, 33, 156, 75, 119, 1, 6, 72, 107, + 33, 185, 189, 66, 176, 81, 93, 27, 198, 249, 217, 115, 158, 126, 146, 37, 74, 135, 168, 152, 22, 213, 18, 56, 64, + 124, 86, 255, 255, 128, 255, 255, 191, 72, 29, 142, 193, 93, 127, 156, 161, 131, 75, 108, 190, 27, 98, 239, 136, + 195, 203, 45, 19, 243, 72, 70, 45, 125, 126, 221, 134, 72, 204, 76, 94, 78, 115, 105, 7, 178, 160, 134, 141, 128, + 22, 185, 73, 80, 166, 108, 157, 213, 34, 77, 40, 253, 27, 253, 161, 41, 254, 176, 184, 142, 34, 66, 186, 141, 27, + 150, 69, 47, 227, 5, 37, 178, 70, 71, 201, 88, 2, 116, 29, 19, 63, 71, 189, 164, 95, 150, 174, 45, 123, 76, 252, + 82, 212, 136, 13, 161, 149, 132, 11, 70, 54, 33, 67, 101, 175, 2, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 157, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11298758527940188691" + } + } + ] + }, + "cborHex": "d905049f1b9ccd41048cca5a13ff", + "cborBytes": [217, 5, 4, 159, 27, 156, 205, 65, 4, 140, 202, 90, 19, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 158, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [] + }, + "cborHex": "d9050080", + "cborBytes": [217, 5, 0, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 159, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14980609041814790583" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "15f15b7e4ef0ec90043700" + } + ] + }, + "cborHex": "d8669f1bcfe5d08d886021b79f4b15f15b7e4ef0ec90043700ffff", + "cborBytes": [ + 216, 102, 159, 27, 207, 229, 208, 141, 136, 96, 33, 183, 159, 75, 21, 241, 91, 126, 78, 240, 236, 144, 4, 55, 0, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 160, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12366629515964965343" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9749d2b0d3e779e84d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16357431197878080655" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2026317579073084967" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "12" + } + ] + }, + "cborHex": "d8669f1bab9f180607f3e1df9f499749d2b0d3e779e84dd8669f1be3014502536a548f80ffbf1b1c1eed1a2ec7de2741c6ff4112ffff", + "cborBytes": [ + 216, 102, 159, 27, 171, 159, 24, 6, 7, 243, 225, 223, 159, 73, 151, 73, 210, 176, 211, 231, 121, 232, 77, 216, + 102, 159, 27, 227, 1, 69, 2, 83, 106, 84, 143, 128, 255, 191, 27, 28, 30, 237, 26, 46, 199, 222, 39, 65, 198, 255, + 65, 18, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 161, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13456619744736816627" + } + }, + { + "_tag": "ByteArray", + "bytearray": "56109a8bfda5f3ea669084" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16538030280478803263" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b3bd8d32d44d7ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12645047781051763754" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f5d21a92ea50b1042a758c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17364441112373183136" + } + } + ] + }, + "cborHex": "d905059f1bbabf845c928badf34b56109a8bfda5f3ea669084d8669f1be582e2eaf897c53f9fbf482b3bd8d32d44d7ea1baf7c3bf5e56e8c2aff4bf5d21a92ea50b1042a758cffff1bf0fae330e23142a0ff", + "cborBytes": [ + 217, 5, 5, 159, 27, 186, 191, 132, 92, 146, 139, 173, 243, 75, 86, 16, 154, 139, 253, 165, 243, 234, 102, 144, + 132, 216, 102, 159, 27, 229, 130, 226, 234, 248, 151, 197, 63, 159, 191, 72, 43, 59, 216, 211, 45, 68, 215, 234, + 27, 175, 124, 59, 245, 229, 110, 140, 42, 255, 75, 245, 210, 26, 146, 234, 80, 177, 4, 42, 117, 140, 255, 255, 27, + 240, 250, 227, 48, 226, 49, 66, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 162, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14416786512728814404" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16874460324442439050" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6843600679470005707" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8584e279d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16605169914700485366" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4857275247958865384" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ebce6a" + }, + { + "_tag": "ByteArray", + "bytearray": "7aa155759f7ceb183581cd" + }, + { + "_tag": "ByteArray", + "bytearray": "6c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15472748544214553959" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8524938139339313974" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5316626854654910056" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13598079127580999335" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b6a7d4bf8436d498456c4bc6" + }, + { + "_tag": "ByteArray", + "bytearray": "27f808b65c85082d00" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "043cebc989" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09d2480a2e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10519740772612813675" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ce9e2695c7d" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5285591614972570062" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "29446772489232218" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10884994174458298929" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e05aa20e075e059d1bdeab9e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11486562137915150190" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8195833193067173860" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12278747168098151815" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b49ac4e646035f2df875" + } + } + ] + } + ] + }, + "cborHex": "d9050d9f1bc812b6f32dd7f3441bea2e2042a6d07d8a9fd8669f1b5ef95a8f1c6e7dcb80ff9f458584e279d61be6716a0f38b9d2f61b4368821a62e2b5e8ff9f43ebce6a4b7aa155759f7ceb183581cd416cff9f1bd6ba3ed2a4d9d5671b764eaa12177fd3361b49c873f4a3021e68ffd8669f1bbcb614ebbb1e7ea79f4cb6a7d4bf8436d498456c4bc64927f808b65c85082d00ffffff9f45043cebc989bf4509d2480a2e1b91fda07f28c7b36b41d6462ce9e2695c7dffffbf1b495a3191ce3929ce1b00689daefe009f5a1b970f4487cec882314ce05aa20e075e059d1bdeab9e1b9f687767f0e24f6e1b71bd72dd9f1fd7e41baa66df7e6952ed874ab49ac4e646035f2df875ffff", + "cborBytes": [ + 217, 5, 13, 159, 27, 200, 18, 182, 243, 45, 215, 243, 68, 27, 234, 46, 32, 66, 166, 208, 125, 138, 159, 216, 102, + 159, 27, 94, 249, 90, 143, 28, 110, 125, 203, 128, 255, 159, 69, 133, 132, 226, 121, 214, 27, 230, 113, 106, 15, + 56, 185, 210, 246, 27, 67, 104, 130, 26, 98, 226, 181, 232, 255, 159, 67, 235, 206, 106, 75, 122, 161, 85, 117, + 159, 124, 235, 24, 53, 129, 205, 65, 108, 255, 159, 27, 214, 186, 62, 210, 164, 217, 213, 103, 27, 118, 78, 170, + 18, 23, 127, 211, 54, 27, 73, 200, 115, 244, 163, 2, 30, 104, 255, 216, 102, 159, 27, 188, 182, 20, 235, 187, 30, + 126, 167, 159, 76, 182, 167, 212, 191, 132, 54, 212, 152, 69, 108, 75, 198, 73, 39, 248, 8, 182, 92, 133, 8, 45, + 0, 255, 255, 255, 159, 69, 4, 60, 235, 201, 137, 191, 69, 9, 210, 72, 10, 46, 27, 145, 253, 160, 127, 40, 199, + 179, 107, 65, 214, 70, 44, 233, 226, 105, 92, 125, 255, 255, 191, 27, 73, 90, 49, 145, 206, 57, 41, 206, 27, 0, + 104, 157, 174, 254, 0, 159, 90, 27, 151, 15, 68, 135, 206, 200, 130, 49, 76, 224, 90, 162, 14, 7, 94, 5, 157, 27, + 222, 171, 158, 27, 159, 104, 119, 103, 240, 226, 79, 110, 27, 113, 189, 114, 221, 159, 31, 215, 228, 27, 170, 102, + 223, 126, 105, 82, 237, 135, 74, 180, 154, 196, 230, 70, 3, 95, 45, 248, 117, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 163, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1812849004865455373" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04069d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2835809564488146010" + } + } + ] + }, + "cborHex": "d905019f1b19288890a66d050d0bbf4304069d0aff1b275ad1c62df89c5aff", + "cborBytes": [ + 217, 5, 1, 159, 27, 25, 40, 136, 144, 166, 109, 5, 13, 11, 191, 67, 4, 6, 157, 10, 255, 27, 39, 90, 209, 198, 45, + 248, 156, 90, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 164, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4535699849929616755" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4316385242080704845" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0da2069da306fbcd0706de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7901692722882148393" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84678b1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09ffb4" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3ef20afb7ad8ed739fbf141b3be6e1822bf5794d4b0da2069da306fbcd0706de1b6da873aa9fadf8294484678b1d4309ffb4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 62, 242, 10, 251, 122, 216, 237, 115, 159, 191, 20, 27, 59, 230, 225, 130, 43, 245, 121, 77, + 75, 13, 162, 6, 157, 163, 6, 251, 205, 7, 6, 222, 27, 109, 168, 115, 170, 159, 173, 248, 41, 68, 132, 103, 139, + 29, 67, 9, 255, 180, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 165, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2072837665208347769" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13150785287646743946" + } + } + ] + }, + "cborHex": "d8669f1b1cc432dfc7cb2c799f1bb680f98b139e0d8affff", + "cborBytes": [ + 216, 102, 159, 27, 28, 196, 50, 223, 199, 203, 44, 121, 159, 27, 182, 128, 249, 139, 19, 158, 13, 138, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 166, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5835561978642240553" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8c829e377d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10034858675442027057" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17403327801106471422" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6223f19b3bc5f55c36147db1" + }, + { + "_tag": "ByteArray", + "bytearray": "f5fb24486157" + }, + { + "_tag": "ByteArray", + "bytearray": "bca351b4dba6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8648484488791300015" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d14302896494b5bddc" + }, + { + "_tag": "ByteArray", + "bytearray": "31" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13474398996037325615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "706a640633a6ba9dd2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18341211643564101695" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fea2b261" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6021404977569769815" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e4585f4354b861d47" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6186648252797958425" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4c6e994c6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9422971359276121338" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5921919796441855423" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10386798121472267601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82db4daae42855872f2a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12717017157728307228" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7596705933869112252" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3170841174106821990" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8286153340834796290" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1497f6abbba740" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1453347814540508971" + } + } + ] + }, + "cborHex": "d8669f1b50fc14b391bf14299f9f458c829e377dd8669f1b8b42facc60f80a319f1bf1850a6da6a199fe4c6223f19b3bc5f55c36147db146f5fb2448615746bca351b4dba61b780596d227e197afffff49d14302896494b5bddc4131ff9fd8669f1bbafeae7f18af532f9f49706a640633a6ba9dd21bfe8912d05ce5903f44fea2b261ffffbf1b539053eca0d0a957498e4585f4354b861d471b55db63cec250391945e4c6e994c61b82c51e86b6553cfa1b522ee2addf4535bf1b902551dc200c95514a82db4daae42855872f2a1bb07bebba30f1881c1b696cebcc3b5edbbcff1b2c01173f7dd1d5661b72fe548fc2dfd302471497f6abbba740ff1b142b54231cc6ff2bffff", + "cborBytes": [ + 216, 102, 159, 27, 80, 252, 20, 179, 145, 191, 20, 41, 159, 159, 69, 140, 130, 158, 55, 125, 216, 102, 159, 27, + 139, 66, 250, 204, 96, 248, 10, 49, 159, 27, 241, 133, 10, 109, 166, 161, 153, 254, 76, 98, 35, 241, 155, 59, 197, + 245, 92, 54, 20, 125, 177, 70, 245, 251, 36, 72, 97, 87, 70, 188, 163, 81, 180, 219, 166, 27, 120, 5, 150, 210, + 39, 225, 151, 175, 255, 255, 73, 209, 67, 2, 137, 100, 148, 181, 189, 220, 65, 49, 255, 159, 216, 102, 159, 27, + 186, 254, 174, 127, 24, 175, 83, 47, 159, 73, 112, 106, 100, 6, 51, 166, 186, 157, 210, 27, 254, 137, 18, 208, 92, + 229, 144, 63, 68, 254, 162, 178, 97, 255, 255, 191, 27, 83, 144, 83, 236, 160, 208, 169, 87, 73, 142, 69, 133, + 244, 53, 75, 134, 29, 71, 27, 85, 219, 99, 206, 194, 80, 57, 25, 69, 228, 198, 233, 148, 198, 27, 130, 197, 30, + 134, 182, 85, 60, 250, 27, 82, 46, 226, 173, 223, 69, 53, 191, 27, 144, 37, 81, 220, 32, 12, 149, 81, 74, 130, + 219, 77, 170, 228, 40, 85, 135, 47, 42, 27, 176, 123, 235, 186, 48, 241, 136, 28, 27, 105, 108, 235, 204, 59, 94, + 219, 188, 255, 27, 44, 1, 23, 63, 125, 209, 213, 102, 27, 114, 254, 84, 143, 194, 223, 211, 2, 71, 20, 151, 246, + 171, 187, 167, 64, 255, 27, 20, 43, 84, 35, 28, 198, 255, 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 167, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3634963000002876270" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "863518189585977469" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13215131132433760062" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5625899230005981192" + } + }, + { + "_tag": "ByteArray", + "bytearray": "859cb8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18408798435233919588" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3312417398631655321" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12567467965936995726" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f7c0b3fe6d6b17c9e086cc" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14356268194534118818" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15538349430274255269" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04a874369e26" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13023996321914353535" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13879137834529345638" + } + }, + { + "_tag": "ByteArray", + "bytearray": "078f3606100e8f0660365d6d" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b3271fb96f2dc136e9fd8669f1b0bfbd537e35c507d9f9f1bb76593bf88eb7f3e1b4e13358adaa6700843859cb8ff1bff7930a491e272649f1b2df81212f94367991bae689d879bc68d8e4bf7c0b3fe6d6b17c9e086ccffffff9f9f1bc73bb5dc3371d5a2ffd8669f1bd7a34e7b2b63e9a59f4604a874369e261bb4be87a693b2f77f1bc09c9a535fce50664c078f3606100e8f0660365d6dffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 50, 113, 251, 150, 242, 220, 19, 110, 159, 216, 102, 159, 27, 11, 251, 213, 55, 227, 92, 80, + 125, 159, 159, 27, 183, 101, 147, 191, 136, 235, 127, 62, 27, 78, 19, 53, 138, 218, 166, 112, 8, 67, 133, 156, + 184, 255, 27, 255, 121, 48, 164, 145, 226, 114, 100, 159, 27, 45, 248, 18, 18, 249, 67, 103, 153, 27, 174, 104, + 157, 135, 155, 198, 141, 142, 75, 247, 192, 179, 254, 109, 107, 23, 201, 224, 134, 204, 255, 255, 255, 159, 159, + 27, 199, 59, 181, 220, 51, 113, 213, 162, 255, 216, 102, 159, 27, 215, 163, 78, 123, 43, 99, 233, 165, 159, 70, 4, + 168, 116, 54, 158, 38, 27, 180, 190, 135, 166, 147, 178, 247, 127, 27, 192, 156, 154, 83, 95, 206, 80, 102, 76, 7, + 143, 54, 6, 16, 14, 143, 6, 96, 54, 93, 109, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 168, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11816089034711973052" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2706803314496483878" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f794d1f9a6c54aedd37e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "123cd233bd635cedf8bb3774" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "301e36bd2ab4cb038d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3544851213403512194" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "030663a8e7fb0202a705" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12183795021535509757" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "526a9eaeeb4814faf8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5dcdfa0e7406" + } + } + ] + } + ] + }, + "cborHex": "d9050c9fd8669f1bfffffffffffffff99f1ba3fb2e5f6c653cbcffff1b25907f45f569b2261bfffffffffffffff4bf4b2f794d1f9a6c54aedd37e14c123cd233bd635cedf8bb377449301e36bd2ab4cb038d1b3131d765ac875d82ffbf4a030663a8e7fb0202a7051ba915890502cbfcfd49526a9eaeeb4814faf8465dcdfa0e7406ffff", + "cborBytes": [ + 217, 5, 12, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 27, 163, 251, 46, 95, 108, 101, + 60, 188, 255, 255, 27, 37, 144, 127, 69, 245, 105, 178, 38, 27, 255, 255, 255, 255, 255, 255, 255, 244, 191, 75, + 47, 121, 77, 31, 154, 108, 84, 174, 221, 55, 225, 76, 18, 60, 210, 51, 189, 99, 92, 237, 248, 187, 55, 116, 73, + 48, 30, 54, 189, 42, 180, 203, 3, 141, 27, 49, 49, 215, 101, 172, 135, 93, 130, 255, 191, 74, 3, 6, 99, 168, 231, + 251, 2, 2, 167, 5, 27, 169, 21, 137, 5, 2, 203, 252, 253, 73, 82, 106, 158, 174, 235, 72, 20, 250, 248, 70, 93, + 205, 250, 14, 116, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 169, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff180ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 170, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7953243735648098343" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0fd3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17975505815472867407" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15804609098229902130" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1411849730106057534" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ce751a22fd" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17056727015324950809" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70a009037461a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17172111485263689304" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7541943329033557730" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18164192011749131368" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1664347441774006326" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1541ba6187bd7cdc4b2fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e7c8762a44c10c61b010ea3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3565725606993083873" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a11ca0407a57043dd1e5f9c8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb46ba663948" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6168996486073102011" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f1b6e5f990a1b67d8279f9f420fd31bf975d34d053a884f1bdb55403d09e66b32ffd8669f1b1397e5d96733e33e9f45ce751a22fdffffbf1becb5aad99b40a1194770a009037461a41bee4f986a028c36581b68aa5d7fb32c16e2ffff1bfc142c658c4b8468bf1b1718f32e21c510364bc1541ba6187bd7cdc4b2fc4c3e7c8762a44c10c61b010ea31b317c008c2b563de141424ca11ca0407a57043dd1e5f9c846cb46ba6639481b559cad9e8d052ebbffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 27, 110, 95, 153, 10, 27, 103, 216, 39, 159, 159, + 66, 15, 211, 27, 249, 117, 211, 77, 5, 58, 136, 79, 27, 219, 85, 64, 61, 9, 230, 107, 50, 255, 216, 102, 159, 27, + 19, 151, 229, 217, 103, 51, 227, 62, 159, 69, 206, 117, 26, 34, 253, 255, 255, 191, 27, 236, 181, 170, 217, 155, + 64, 161, 25, 71, 112, 160, 9, 3, 116, 97, 164, 27, 238, 79, 152, 106, 2, 140, 54, 88, 27, 104, 170, 93, 127, 179, + 44, 22, 226, 255, 255, 27, 252, 20, 44, 101, 140, 75, 132, 104, 191, 27, 23, 24, 243, 46, 33, 197, 16, 54, 75, + 193, 84, 27, 166, 24, 123, 215, 205, 196, 178, 252, 76, 62, 124, 135, 98, 164, 76, 16, 198, 27, 1, 14, 163, 27, + 49, 124, 0, 140, 43, 86, 61, 225, 65, 66, 76, 161, 28, 160, 64, 122, 87, 4, 61, 209, 229, 249, 200, 70, 203, 70, + 186, 102, 57, 72, 27, 85, 156, 173, 158, 141, 5, 46, 187, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 171, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aacfc8ad" + }, + { + "_tag": "ByteArray", + "bytearray": "5e7f6b" + }, + { + "_tag": "ByteArray", + "bytearray": "610196f9fd1c2bb16258" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2206441632561166291" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1693104296694683773" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d7f08" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9428459167336856553" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "048ace51" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9935345387147438491" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51008f397a5c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5d58f2e38c6735d4707" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19f9f1bffffffffffffffff9f44aacfc8ad435e7f6b4a610196f9fd1c2bb16258ffff1b1e9edaf97e70f7d3bf050c1b177f1d632c2c987d433d7f081b82d89da898637be944048ace511b89e16ffd69bd299b4651008f397a5c1bfffffffffffffff541031bfffffffffffffff64aa5d58f2e38c6735d4707ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, + 159, 68, 170, 207, 200, 173, 67, 94, 127, 107, 74, 97, 1, 150, 249, 253, 28, 43, 177, 98, 88, 255, 255, 27, 30, + 158, 218, 249, 126, 112, 247, 211, 191, 5, 12, 27, 23, 127, 29, 99, 44, 44, 152, 125, 67, 61, 127, 8, 27, 130, + 216, 157, 168, 152, 99, 123, 233, 68, 4, 138, 206, 81, 27, 137, 225, 111, 253, 105, 189, 41, 155, 70, 81, 0, 143, + 57, 122, 92, 27, 255, 255, 255, 255, 255, 255, 255, 245, 65, 3, 27, 255, 255, 255, 255, 255, 255, 255, 246, 74, + 165, 213, 143, 46, 56, 198, 115, 93, 71, 7, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 172, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5570048882042798268" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2257688769109670615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "228892759900282344" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16921201762897592624" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19982509" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e30de0a28eb9c4c1ed28" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3043316965032280631" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11392189011085180432" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3704740323084877197" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d02b890c5abc558c68" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5874463506607182276" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57fc8f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5960852259051983808" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2394eb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13268281722454405528" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ac4f3" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2825920038207387387" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14429746872200409470" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4980242058082743988" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11631352039616926793" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8050796790007730117" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9531" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13885305134915707431" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18406935639442890057" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9651838682246351838" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "df23af7c00c4c1c978" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4903983604571155224" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17456809884012104911" + } + }, + { + "_tag": "ByteArray", + "bytearray": "61f2e8317f8ae8" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17996676049011719194" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ce3a674" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "74" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12772294609770869404" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c5fc80dbdc8bb33" + }, + { + "_tag": "ByteArray", + "bytearray": "48699f3c25a27ed9b0" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5cb561220d6eb8c0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6760700135266480177" + } + } + ] + }, + "cborHex": "d8669f1b4d4cc9f263b900bc9fbf1b1f54ebf9482bbad71b032d30c09d83dde81bead42f59da3981304419982509ff4ae30de0a28eb9c4c1ed289fbf1b2a3c08a7cfab42371b9e192f8c13d73e101b3369e1b1fe8a3d8d49d02b890c5abc558c681b5186496f5d5111c44357fc8f1b52b9338c3360d3c0432394eb1bb82267ed9eb3f198434ac4f3ffbf1b2737af4d690276fb1bc840c254044f317e1b451d5fc3ef7b76b41ba16add0df2e1d4491b6fba2d068b440fc54295311bc0b28373e48ee2271bff729270a0789d49ffd8669f1b85f23824d4ab0bde9f49df23af7c00c4c1c9781b440e731b1ecdab181bf2430c197011cccf4761f2e8317f8ae8ffffbf1bf9c109841f1fbc1a448ce3a674ff9f41741bb1404e46ee07729c481c5fc80dbdc8bb334948699f3c25a27ed9b0ffff485cb561220d6eb8c01b5dd2d4f40b7e7031ffff", + "cborBytes": [ + 216, 102, 159, 27, 77, 76, 201, 242, 99, 185, 0, 188, 159, 191, 27, 31, 84, 235, 249, 72, 43, 186, 215, 27, 3, 45, + 48, 192, 157, 131, 221, 232, 27, 234, 212, 47, 89, 218, 57, 129, 48, 68, 25, 152, 37, 9, 255, 74, 227, 13, 224, + 162, 142, 185, 196, 193, 237, 40, 159, 191, 27, 42, 60, 8, 167, 207, 171, 66, 55, 27, 158, 25, 47, 140, 19, 215, + 62, 16, 27, 51, 105, 225, 177, 254, 138, 61, 141, 73, 208, 43, 137, 12, 90, 188, 85, 140, 104, 27, 81, 134, 73, + 111, 93, 81, 17, 196, 67, 87, 252, 143, 27, 82, 185, 51, 140, 51, 96, 211, 192, 67, 35, 148, 235, 27, 184, 34, + 103, 237, 158, 179, 241, 152, 67, 74, 196, 243, 255, 191, 27, 39, 55, 175, 77, 105, 2, 118, 251, 27, 200, 64, 194, + 84, 4, 79, 49, 126, 27, 69, 29, 95, 195, 239, 123, 118, 180, 27, 161, 106, 221, 13, 242, 225, 212, 73, 27, 111, + 186, 45, 6, 139, 68, 15, 197, 66, 149, 49, 27, 192, 178, 131, 115, 228, 142, 226, 39, 27, 255, 114, 146, 112, 160, + 120, 157, 73, 255, 216, 102, 159, 27, 133, 242, 56, 36, 212, 171, 11, 222, 159, 73, 223, 35, 175, 124, 0, 196, + 193, 201, 120, 27, 68, 14, 115, 27, 30, 205, 171, 24, 27, 242, 67, 12, 25, 112, 17, 204, 207, 71, 97, 242, 232, + 49, 127, 138, 232, 255, 255, 191, 27, 249, 193, 9, 132, 31, 31, 188, 26, 68, 140, 227, 166, 116, 255, 159, 65, + 116, 27, 177, 64, 78, 70, 238, 7, 114, 156, 72, 28, 95, 200, 13, 189, 200, 187, 51, 73, 72, 105, 159, 60, 37, 162, + 126, 217, 176, 255, 255, 72, 92, 181, 97, 34, 13, 110, 184, 192, 27, 93, 210, 212, 244, 11, 126, 112, 49, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 173, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8442323684873717637" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5071171400984246167" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2663011888854887415" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c88cefa616135fa6b4a8e275" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aa0a" + }, + { + "_tag": "ByteArray", + "bytearray": "cff81ce8d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11714685417075837825" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "315068722182711521" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3d74f80cd4759a72c3" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6146353209877190190" + } + } + ] + }, + "cborHex": "d8669f1b752928a97bc3c7859fd8669f1b46606b855ec937979f9f1b24f4eb3423d66bf74cc88cefa616135fa6b4a8e275ff9f42aa0a45cff81ce8d31ba292ec51dc410b81ffd8669f1b045f5955618968e19f493d74f80cd4759a72c3ffffffffa01b554c3badfacfd62effff", + "cborBytes": [ + 216, 102, 159, 27, 117, 41, 40, 169, 123, 195, 199, 133, 159, 216, 102, 159, 27, 70, 96, 107, 133, 94, 201, 55, + 151, 159, 159, 27, 36, 244, 235, 52, 35, 214, 107, 247, 76, 200, 140, 239, 166, 22, 19, 95, 166, 180, 168, 226, + 117, 255, 159, 66, 170, 10, 69, 207, 248, 28, 232, 211, 27, 162, 146, 236, 81, 220, 65, 11, 129, 255, 216, 102, + 159, 27, 4, 95, 89, 85, 97, 137, 104, 225, 159, 73, 61, 116, 248, 12, 212, 117, 154, 114, 195, 255, 255, 255, 255, + 160, 27, 85, 76, 59, 173, 250, 207, 214, 46, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 174, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16616722506202872528" + }, + "fields": [] + }, + "cborHex": "d8669f1be69a75148975fad080ff", + "cborBytes": [216, 102, 159, 27, 230, 154, 117, 20, 137, 117, 250, 208, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 175, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18427596736017117023" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12683552606801449873" + } + } + ] + }, + "cborHex": "d8669f1bffbbf9990a72af5f9f1bb00507e542615391ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 187, 249, 153, 10, 114, 175, 95, 159, 27, 176, 5, 7, 229, 66, 97, 83, 145, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 176, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d69d2994f787101c0fea0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26ffbd3c8b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56d22b1c68af56d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7408f7c5c341" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71a862d07da8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69362b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a027e0edffc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13559408400345304581" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a00b3fd57a8ac4b9812436" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c23b9943e0418a0aa7d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c1e598d" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a38b021404e2482e25b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66f9daa8c7" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1149465671148403144" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6bd032b6d999fbab" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16aa02bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0fe09f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1759de137e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c4e0b37f8c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab3b622925" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6307794364107732134" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6883923114531829710" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7488434194102578163" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "81c56e9b" + }, + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4986013858645799435" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7685ebe29ba5793067ceaa89" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f9fbf4b3d69d2994f787101c0fea04526ffbd3c8b4856d22b1c68af56d5467408f7c5c3414671a862d07da84369362b467a027e0edffc1bbc2cb2196b078e0542b7d44ba00b3fd57a8ac4b98124364ac23b9943e0418a0aa7d8448c1e598dffff9fbf4a4a38b021404e2482e25b4566f9daa8c7ffff9fd8669f1b0ff3b8f0124e79c89f486bd032b6d999fbabffffbf4416aa02bb430fe09f451759de137e465c4e0b37f8c745ab3b6229251b5789c98dd4da34a6ff1b5f889b999ec537ce80ffd8669f1b67ec43395f5f6bf39f9f4481c56e9b41001b4531e12ff9c1f20b4c7685ebe29ba5793067ceaa89ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 159, 191, 75, 61, 105, 210, 153, 79, 120, 113, 1, + 192, 254, 160, 69, 38, 255, 189, 60, 139, 72, 86, 210, 43, 28, 104, 175, 86, 213, 70, 116, 8, 247, 197, 195, 65, + 70, 113, 168, 98, 208, 125, 168, 67, 105, 54, 43, 70, 122, 2, 126, 14, 223, 252, 27, 188, 44, 178, 25, 107, 7, + 142, 5, 66, 183, 212, 75, 160, 11, 63, 213, 122, 138, 196, 185, 129, 36, 54, 74, 194, 59, 153, 67, 224, 65, 138, + 10, 167, 216, 68, 140, 30, 89, 141, 255, 255, 159, 191, 74, 74, 56, 176, 33, 64, 78, 36, 130, 226, 91, 69, 102, + 249, 218, 168, 199, 255, 255, 159, 216, 102, 159, 27, 15, 243, 184, 240, 18, 78, 121, 200, 159, 72, 107, 208, 50, + 182, 217, 153, 251, 171, 255, 255, 191, 68, 22, 170, 2, 187, 67, 15, 224, 159, 69, 23, 89, 222, 19, 126, 70, 92, + 78, 11, 55, 248, 199, 69, 171, 59, 98, 41, 37, 27, 87, 137, 201, 141, 212, 218, 52, 166, 255, 27, 95, 136, 155, + 153, 158, 197, 55, 206, 128, 255, 216, 102, 159, 27, 103, 236, 67, 57, 95, 95, 107, 243, 159, 159, 68, 129, 197, + 110, 155, 65, 0, 27, 69, 49, 225, 47, 249, 193, 242, 11, 76, 118, 133, 235, 226, 155, 165, 121, 48, 103, 206, 170, + 137, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 177, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6111486191905130808" + }, + "fields": [] + }, + "cborHex": "d8669f1b54d05c4fbe35c93880ff", + "cborBytes": [216, 102, 159, 27, 84, 208, 92, 79, 190, 53, 201, 56, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 178, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11063323856639054085" + }, + "fields": [] + }, + "cborHex": "d8669f1b9988d26e7e13510580ff", + "cborBytes": [216, 102, 159, 27, 153, 136, 210, 110, 126, 19, 81, 5, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 179, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5128744901953568557" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a772cd64e7a4f7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10935838103074825570" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13073768042642765467" + } + } + ] + }, + "cborHex": "d8669f1b472cf650a889bf2d9f47a772cd64e7a4f71b97c3e6d06ef4e5621bb56f5ac45993769bffff", + "cborBytes": [ + 216, 102, 159, 27, 71, 44, 246, 80, 168, 137, 191, 45, 159, 71, 167, 114, 205, 100, 231, 164, 247, 27, 151, 195, + 230, 208, 110, 244, 229, 98, 27, 181, 111, 90, 196, 89, 147, 118, 155, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 180, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11390922653384778212" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ec070f7a73" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1942248574409422530" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab34" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ce90ac5d605" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b7951" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b9e14afcd32f321e49f9f45ec070f7a73bf1b1af440c9b72eb6c242ab34467ce90ac5d605430b7951ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 158, 20, 175, 205, 50, 243, 33, 228, 159, 159, 69, 236, 7, 15, 122, 115, 191, 27, 26, 244, 64, + 201, 183, 46, 182, 194, 66, 171, 52, 70, 124, 233, 10, 197, 214, 5, 67, 11, 121, 81, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 181, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4963541823371112771" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7689669814413107521" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1592254187683293284" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "265ff4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15237459887354699410" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3eb4677b235d3450" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8868951558497280504" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9377671c09eb9ca0094e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4863153824829556762" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0a38d234b7271e7a418ad57" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16882136154174566701" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "93d4c769f4ebf15e74c9e9" + } + ] + }, + "cborHex": "d8669f1b44e20afd89d471439f1b6ab731f460232141809f1b1618d2bf60fda864bf43265ff41bd3765509390a5e92483eb4677b235d34501b7b14d873e660a1f84a9377671c09eb9ca0094e1b437d64a3390c481a4cc0a38d234b7271e7a418ad571bea496563075ab12dffff4b93d4c769f4ebf15e74c9e9ffff", + "cborBytes": [ + 216, 102, 159, 27, 68, 226, 10, 253, 137, 212, 113, 67, 159, 27, 106, 183, 49, 244, 96, 35, 33, 65, 128, 159, 27, + 22, 24, 210, 191, 96, 253, 168, 100, 191, 67, 38, 95, 244, 27, 211, 118, 85, 9, 57, 10, 94, 146, 72, 62, 180, 103, + 123, 35, 93, 52, 80, 27, 123, 20, 216, 115, 230, 96, 161, 248, 74, 147, 119, 103, 28, 9, 235, 156, 160, 9, 78, 27, + 67, 125, 100, 163, 57, 12, 72, 26, 76, 192, 163, 141, 35, 75, 114, 113, 231, 164, 24, 173, 87, 27, 234, 73, 101, + 99, 7, 90, 177, 45, 255, 255, 75, 147, 212, 199, 105, 244, 235, 241, 94, 116, 201, 233, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 182, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13649495404691033469" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f801bbd6cbfc09fef8d7dffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 128, 27, 189, 108, 191, 192, 159, 239, 141, 125, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 183, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1735956588037616126" + } + } + ] + }, + "cborHex": "d905039f1b18175b51bf7b31feff", + "cborBytes": [217, 5, 3, 159, 27, 24, 23, 91, 81, 191, 123, 49, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 184, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6668863368318680428" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "13451bbb8d2eab" + }, + { + "_tag": "ByteArray", + "bytearray": "bcbbccd1fbb3552a43f24d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "15a0" + }, + { + "_tag": "ByteArray", + "bytearray": "018f053b8b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15702315497640045109" + } + } + ] + }, + "cborHex": "d8669f1b5c8c8fe67c3ffd6c9fa0d8669f1bffffffffffffffef9f4713451bbb8d2eab4bbcbbccd1fbb3552a43f24dffff4215a045018f053b8b1bd9e9d4c02bf22a35ffff", + "cborBytes": [ + 216, 102, 159, 27, 92, 140, 143, 230, 124, 63, 253, 108, 159, 160, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 239, 159, 71, 19, 69, 27, 187, 141, 46, 171, 75, 188, 187, 204, 209, 251, 179, 85, 42, 67, 242, 77, 255, + 255, 66, 21, 160, 69, 1, 143, 5, 59, 139, 27, 217, 233, 212, 192, 43, 242, 42, 53, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 185, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2284337082361554437" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9585342621646151127" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9549966246221893104" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11214285389714701412" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8568800181278221543" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "68e3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15040767495617099221" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7b478e5b37aa13bbbedf8a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5880337919765971178" + } + }, + { + "_tag": "ByteArray", + "bytearray": "68" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d387f35119bcda6809259e51" + }, + { + "_tag": "ByteArray", + "bytearray": "f5d013ae8795" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5013593732029743004" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c347d5941d5445c58cfe" + }, + { + "_tag": "ByteArray", + "bytearray": "5e1683" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13956146393981316135" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87a9f410abf1b1fb398793569a60541671b8505fa543da15dd71b84884bb3fb06cdf01b9ba1252567cc3c641b76ea7e5d8c6424e7ff4268e39f1bd0bb8a590d7fb5d5ff9f4b7b478e5b37aa13bbbedf8a1b519b282ec2e900ea41689f4cd387f35119bcda6809259e5146f5d013ae8795ffd8669f1b4593dcefa5c1ff9c9f4ac347d5941d5445c58cfe435e16831bc1ae3133d69aec27ffffffff", + "cborBytes": [ + 216, 122, 159, 65, 10, 191, 27, 31, 179, 152, 121, 53, 105, 166, 5, 65, 103, 27, 133, 5, 250, 84, 61, 161, 93, + 215, 27, 132, 136, 75, 179, 251, 6, 205, 240, 27, 155, 161, 37, 37, 103, 204, 60, 100, 27, 118, 234, 126, 93, 140, + 100, 36, 231, 255, 66, 104, 227, 159, 27, 208, 187, 138, 89, 13, 127, 181, 213, 255, 159, 75, 123, 71, 142, 91, + 55, 170, 19, 187, 190, 223, 138, 27, 81, 155, 40, 46, 194, 233, 0, 234, 65, 104, 159, 76, 211, 135, 243, 81, 25, + 188, 218, 104, 9, 37, 158, 81, 70, 245, 208, 19, 174, 135, 149, 255, 216, 102, 159, 27, 69, 147, 220, 239, 165, + 193, 255, 156, 159, 74, 195, 71, 213, 148, 29, 84, 69, 197, 140, 254, 67, 94, 22, 131, 27, 193, 174, 49, 51, 214, + 154, 236, 39, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 186, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d9050b9fa0ff", + "cborBytes": [217, 5, 11, 159, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 187, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0705af06069f19" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9f80470705af06069f19ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 128, 71, 7, 5, 175, 6, 6, 159, 25, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 188, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffffe80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 189, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb161ce8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8240883066153377813" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4011999449581236628" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6785221046780525727" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2436" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15045142469839164271" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2518368427227387481" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e44938aeb5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6228822650626507488" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6f174c65" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3191650094098576309" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12293147970469195302" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "229e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12701961101408375939" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40fcd12ef12c084ce0a0123e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11633576566541945965" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9151f0b7ebe5fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4341cb5d2c20f88d141e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cef2ce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5f40896bc88" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa20c8f9640d4b2b41" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10416098932872937398" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17edbcae5d925191" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "deec5d9ce671d963b35685" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d491b7dd66f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3623825f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ee8dc1e356f6000e25d31" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87d9f44fb161ce89fd8669f1b725d7f7c919aa0159f1b37ad7c3e2f5a31941b5e29f297a7db7c9f422436ffffff9f1bd0cb155d1de8136fd8669f1b22f30abdde7296599f45e44938aeb51b56713932f38002e0ffff446f174c65d8669f1b2c4b04d9ba1673b59f1baa9a08f27f216e26ffff412dffbf42229e1bb0466e52e84694834c40fcd12ef12c084ce0a0123e1ba172c43ffc0a8c6d479151f0b7ebe5fb4a4341cb5d2c20f88d141e43cef2ce46a5f40896bc8849fa20c8f9640d4b2b411b908d6acae7377fb6ff9fbf4817edbcae5d9251914bdeec5d9ce671d963b35685468d491b7dd66f45a3623825f741e94b9ee8dc1e356f6000e25d31ffffff", + "cborBytes": [ + 216, 125, 159, 68, 251, 22, 28, 232, 159, 216, 102, 159, 27, 114, 93, 127, 124, 145, 154, 160, 21, 159, 27, 55, + 173, 124, 62, 47, 90, 49, 148, 27, 94, 41, 242, 151, 167, 219, 124, 159, 66, 36, 54, 255, 255, 255, 159, 27, 208, + 203, 21, 93, 29, 232, 19, 111, 216, 102, 159, 27, 34, 243, 10, 189, 222, 114, 150, 89, 159, 69, 228, 73, 56, 174, + 181, 27, 86, 113, 57, 50, 243, 128, 2, 224, 255, 255, 68, 111, 23, 76, 101, 216, 102, 159, 27, 44, 75, 4, 217, + 186, 22, 115, 181, 159, 27, 170, 154, 8, 242, 127, 33, 110, 38, 255, 255, 65, 45, 255, 191, 66, 34, 158, 27, 176, + 70, 110, 82, 232, 70, 148, 131, 76, 64, 252, 209, 46, 241, 44, 8, 76, 224, 160, 18, 62, 27, 161, 114, 196, 63, + 252, 10, 140, 109, 71, 145, 81, 240, 183, 235, 229, 251, 74, 67, 65, 203, 93, 44, 32, 248, 141, 20, 30, 67, 206, + 242, 206, 70, 165, 244, 8, 150, 188, 136, 73, 250, 32, 200, 249, 100, 13, 75, 43, 65, 27, 144, 141, 106, 202, 231, + 55, 127, 182, 255, 159, 191, 72, 23, 237, 188, 174, 93, 146, 81, 145, 75, 222, 236, 93, 156, 230, 113, 217, 99, + 179, 86, 133, 70, 141, 73, 27, 125, 214, 111, 69, 163, 98, 56, 37, 247, 65, 233, 75, 158, 232, 220, 30, 53, 111, + 96, 0, 226, 93, 49, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 190, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14833823974947818843" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f135eac6e2" + }, + { + "_tag": "ByteArray", + "bytearray": "6da66bb191" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13812474780787735074" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9fd8669f1bcddc544fef700d5b9f1bffffffffffffffee1bfffffffffffffffdffffd9050c9f45f135eac6e2456da66bb191d8669f1bbfafc4a1a9e4fa2280ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 216, 102, 159, 27, 205, 220, 84, 79, 239, 112, 13, + 91, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 27, 255, 255, 255, 255, 255, 255, 255, 253, 255, 255, 217, 5, + 12, 159, 69, 241, 53, 234, 198, 226, 69, 109, 166, 107, 177, 145, 216, 102, 159, 27, 191, 175, 196, 161, 169, 228, + 250, 34, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 191, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4502825699401811706" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14785244693946392611" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6887285785896338034" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14124901215663650459" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ae9320" + }, + { + "_tag": "ByteArray", + "bytearray": "7463f9554e4638" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1750972758248219875" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0006" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14108270568248011757" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc04e6682fe6e113c505d3" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3e7d401dda5846fa9fd8669f1bcd2fbdb6abe760239fd8669f1b5f948dee8ef2c2729f1bc405bad1971d769b43ae9320477463f9554e4638ffff9f1b184cb47252c564e3ffffffbf064200061bc3caa5553f856bed4bbc04e6682fe6e113c505d3ffffff", + "cborBytes": [ + 216, 102, 159, 27, 62, 125, 64, 29, 218, 88, 70, 250, 159, 216, 102, 159, 27, 205, 47, 189, 182, 171, 231, 96, 35, + 159, 216, 102, 159, 27, 95, 148, 141, 238, 142, 242, 194, 114, 159, 27, 196, 5, 186, 209, 151, 29, 118, 155, 67, + 174, 147, 32, 71, 116, 99, 249, 85, 78, 70, 56, 255, 255, 159, 27, 24, 76, 180, 114, 82, 197, 100, 227, 255, 255, + 255, 191, 6, 66, 0, 6, 27, 195, 202, 165, 85, 63, 133, 107, 237, 75, 188, 4, 230, 104, 47, 230, 225, 19, 197, 5, + 211, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 192, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10534204893601590182" + }, + "fields": [] + }, + "cborHex": "d8669f1b92310389c24deba680ff", + "cborBytes": [216, 102, 159, 27, 146, 49, 3, 137, 194, 77, 235, 166, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 193, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18439536039604502533" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17050992753405838719" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6924904156620643457" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d49023541" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3505760694544188844" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffe66454c7a3c0059fd8669f1beca14b91b683c57f9fd8669f1b601a33a406ffdc819f452d490235411b30a6f6c701d545acffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 230, 100, 84, 199, 163, 192, 5, 159, 216, 102, 159, 27, 236, 161, 75, 145, 182, 131, 197, + 127, 159, 216, 102, 159, 27, 96, 26, 51, 164, 6, 255, 220, 129, 159, 69, 45, 73, 2, 53, 65, 27, 48, 166, 246, 199, + 1, 213, 69, 172, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 194, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1789101551889959605" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b60fde" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e4ec169ba76c6b568bf" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6f415f4bfd9fea2d5f" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f1b18d42a61e3804ab5bf43b60fde4a1e4ec169ba76c6b568bfff496f415f4bfd9fea2d5fffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 27, 24, 212, 42, 97, 227, 128, 74, 181, 191, 67, + 182, 15, 222, 74, 30, 78, 193, 105, 186, 118, 198, 181, 104, 191, 255, 73, 111, 65, 95, 75, 253, 159, 234, 45, 95, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 195, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15907178923619706078" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6300" + }, + { + "_tag": "ByteArray", + "bytearray": "8c95d679" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e614d4d62dfaf901dfc06ee4" + } + ] + } + ] + } + ] + }, + "cborHex": "d905079f9fa0d8669f1bdcc1a6f380eee4de9f426300448c95d679ffffff9f9f4ce614d4d62dfaf901dfc06ee4ffffff", + "cborBytes": [ + 217, 5, 7, 159, 159, 160, 216, 102, 159, 27, 220, 193, 166, 243, 128, 238, 228, 222, 159, 66, 99, 0, 68, 140, 149, + 214, 121, 255, 255, 255, 159, 159, 76, 230, 20, 212, 214, 45, 250, 249, 1, 223, 192, 110, 228, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 196, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4409192674751315822" + }, + "fields": [] + }, + "cborHex": "d8669f1b3d30996074ce7f6e80ff", + "cborBytes": [216, 102, 159, 27, 61, 48, 153, 96, 116, 206, 127, 110, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 197, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5939092594064350245" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "ByteArray", + "bytearray": "492f765554b12035a4d42de4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8406295111630441593" + } + } + ] + }, + "cborHex": "d8669f1b526be53f655bdc259f0a114c492f765554b12035a4d42de41b74a928dd95d5cc79ffff", + "cborBytes": [ + 216, 102, 159, 27, 82, 107, 229, 63, 101, 91, 220, 37, 159, 10, 17, 76, 73, 47, 118, 85, 84, 177, 32, 53, 164, + 212, 45, 228, 27, 116, 169, 40, 221, 149, 213, 204, 121, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 198, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5687695726588350943" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b903" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab8b6ec06c30c8be3daf6e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2202978051184915905" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d072e73ac9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8176146771045675926" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d97465bd1932a3c859" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e1a6be87abe0f09c7d861" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17080457201578358837" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7722" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb060502701cfa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4388707798581910706" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b4eeec120edce51df9f42b903bf4bab8b6ec06c30c8be3daf6e1b1e928cdd9cdbf5c145d072e73ac91b7177822b4fa2739649d97465bd1932a3c8594b7e1a6be87abe0f09c7d86141fa1bed09f95425573835ffbf42772247fb060502701cfa42d3f11b3ce7d27d8d761cb2ffffff", + "cborBytes": [ + 216, 102, 159, 27, 78, 238, 193, 32, 237, 206, 81, 223, 159, 66, 185, 3, 191, 75, 171, 139, 110, 192, 108, 48, + 200, 190, 61, 175, 110, 27, 30, 146, 140, 221, 156, 219, 245, 193, 69, 208, 114, 231, 58, 201, 27, 113, 119, 130, + 43, 79, 162, 115, 150, 73, 217, 116, 101, 189, 25, 50, 163, 200, 89, 75, 126, 26, 107, 232, 122, 190, 15, 9, 199, + 216, 97, 65, 250, 27, 237, 9, 249, 84, 37, 87, 56, 53, 255, 191, 66, 119, 34, 71, 251, 6, 5, 2, 112, 28, 250, 66, + 211, 241, 27, 60, 231, 210, 125, 141, 118, 28, 178, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 199, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12991699623753649727" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10533305162631174144" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d5cfe92017" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11181363770122909311" + } + }, + { + "_tag": "ByteArray", + "bytearray": "49083212f1e9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3355771758602075961" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6323250586130579929" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16450961725464721462" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d35cdc5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ca7e945d00d54cbbb2f03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd19b899d060435ba6c2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8039332053922310663" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7d2b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15082641035897431110" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13285394437785672333" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "491313025581381603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8732238113861247452" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5956037230292114252" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5393240366459796781" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7220002737551767012" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acfc8ab62d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8661003328473887274" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17977295462621580357" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9130139567119553182" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13393782502532493551" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17877177642581744155" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aaeb8474940b0f7094c0" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33cd1a2786f455c854b70823" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfe1215e2a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50e9d473f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90055c3e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4064288608031545294" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1be4d2b4d3a53" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5839800855067113709" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bb44bc9f98e698e3f9fd8669f1b922dd13cd16b58009f45d5cfe920171b9b2c2f1b8699367f4649083212f1e9bf1b2e9218a282c3bf391b57c0b2e7f41801d91be44d8e8743df3836445d35cdc54b4ca7e945d00d54cbbb2f034acd19b899d060435ba6c241531b6f9171e8a9736a07ff410dffff427d2bd8669f1bd1504e1c636564469f1bb85f33da252a5a8dbf1b06d17e97fb4cf7e31b792f244c96d3a1dc1b52a8184df4901b4c1b4ad8a389e7223d2d1b64329a3c911ef5e445acfc8ab62d1b783210a3a829722a1bf97c2ef9b7cd0c451b7eb4c5900fe6529e1bb9e04639064ab0ef1bf8187e593ca3da1b4aaaeb8474940b0f7094c0ffffffbf4c33cd1a2786f455c854b7082345dfe1215e2a4550e9d473f34490055c3e41cd1b386740f49a6317ce47e1be4d2b4d3a531b510b23efe54c38edffffff", + "cborBytes": [ + 216, 102, 159, 27, 180, 75, 201, 249, 142, 105, 142, 63, 159, 216, 102, 159, 27, 146, 45, 209, 60, 209, 107, 88, + 0, 159, 69, 213, 207, 233, 32, 23, 27, 155, 44, 47, 27, 134, 153, 54, 127, 70, 73, 8, 50, 18, 241, 233, 191, 27, + 46, 146, 24, 162, 130, 195, 191, 57, 27, 87, 192, 178, 231, 244, 24, 1, 217, 27, 228, 77, 142, 135, 67, 223, 56, + 54, 68, 93, 53, 205, 197, 75, 76, 167, 233, 69, 208, 13, 84, 203, 187, 47, 3, 74, 205, 25, 184, 153, 208, 96, 67, + 91, 166, 194, 65, 83, 27, 111, 145, 113, 232, 169, 115, 106, 7, 255, 65, 13, 255, 255, 66, 125, 43, 216, 102, 159, + 27, 209, 80, 78, 28, 99, 101, 100, 70, 159, 27, 184, 95, 51, 218, 37, 42, 90, 141, 191, 27, 6, 209, 126, 151, 251, + 76, 247, 227, 27, 121, 47, 36, 76, 150, 211, 161, 220, 27, 82, 168, 24, 77, 244, 144, 27, 76, 27, 74, 216, 163, + 137, 231, 34, 61, 45, 27, 100, 50, 154, 60, 145, 30, 245, 228, 69, 172, 252, 138, 182, 45, 27, 120, 50, 16, 163, + 168, 41, 114, 42, 27, 249, 124, 46, 249, 183, 205, 12, 69, 27, 126, 180, 197, 144, 15, 230, 82, 158, 27, 185, 224, + 70, 57, 6, 74, 176, 239, 27, 248, 24, 126, 89, 60, 163, 218, 27, 74, 170, 235, 132, 116, 148, 11, 15, 112, 148, + 192, 255, 255, 255, 191, 76, 51, 205, 26, 39, 134, 244, 85, 200, 84, 183, 8, 35, 69, 223, 225, 33, 94, 42, 69, 80, + 233, 212, 115, 243, 68, 144, 5, 92, 62, 65, 205, 27, 56, 103, 64, 244, 154, 99, 23, 206, 71, 225, 190, 77, 43, 77, + 58, 83, 27, 81, 11, 35, 239, 229, 76, 56, 237, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 200, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + }, + "cborHex": "d9050d9f07ff", + "cborBytes": [217, 5, 13, 159, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 201, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15123824939960274634" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15640092300403039283" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6652203468766034582" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5f5b66a827d059c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e32fc0482733051" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5cf0388e4659" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11205272354969953588" + } + } + ] + } + ] + }, + "cborHex": "d87c9fd8669f1bd1e29ea747868eca9f1bd90cc5151bd85c33d8669f1b5c515fcf596bba9680ffbf48a5f5b66a827d059c484e32fc0482733051ff465cf0388e46591b9b811fd6b97d2534ffffff", + "cborBytes": [ + 216, 124, 159, 216, 102, 159, 27, 209, 226, 158, 167, 71, 134, 142, 202, 159, 27, 217, 12, 197, 21, 27, 216, 92, + 51, 216, 102, 159, 27, 92, 81, 95, 207, 89, 107, 186, 150, 128, 255, 191, 72, 165, 245, 182, 106, 130, 125, 5, + 156, 72, 78, 50, 252, 4, 130, 115, 48, 81, 255, 70, 92, 240, 56, 142, 70, 89, 27, 155, 129, 31, 214, 185, 125, 37, + 52, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 202, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1027564065834775689" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8008865497236437863" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bcf0b12ff09e75b271" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14558036171270273901" + } + }, + { + "_tag": "ByteArray", + "bytearray": "16927c676f5a1e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17273849562031593693" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9ec4819276a9bfc7d4fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "91063275544499820" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9fd8669f1b0e42a412d809b4899f9f1b6f2534bca8a8fb6749bcf0b12ff09e75b2711bca0888c417da3b6d4716927c676f5a1e1befb90aa7e86e18ddff4a9ec4819276a9bfc7d4fa1b014385910ee9d66cffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 216, 102, 159, 27, 14, 66, 164, 18, 216, 9, 180, + 137, 159, 159, 27, 111, 37, 52, 188, 168, 168, 251, 103, 73, 188, 240, 177, 47, 240, 158, 117, 178, 113, 27, 202, + 8, 136, 196, 23, 218, 59, 109, 71, 22, 146, 124, 103, 111, 90, 30, 27, 239, 185, 10, 167, 232, 110, 24, 221, 255, + 74, 158, 196, 129, 146, 118, 169, 191, 199, 212, 250, 27, 1, 67, 133, 145, 14, 233, 214, 108, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 203, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15109615763166198400" + }, + "fields": [] + }, + "cborHex": "d8669f1bd1b0237b8029fa8080ff", + "cborBytes": [216, 102, 159, 27, 209, 176, 35, 123, 128, 41, 250, 128, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 204, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16578530948538358920" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "73668d2a0c1110091ead" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5131850211645208787" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "586427849058186884" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d905089fd8669f1bffffffffffffffec9fd8669f1be612c60f9572dc889f4a73668d2a0c1110091eadffffd8669f1b4737fe93e9a038d380ffd8669f1b082369058d82768480ffffffff", + "cborBytes": [ + 217, 5, 8, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 216, 102, 159, 27, 230, 18, 198, + 15, 149, 114, 220, 136, 159, 74, 115, 102, 141, 42, 12, 17, 16, 9, 30, 173, 255, 255, 216, 102, 159, 27, 71, 55, + 254, 147, 233, 160, 56, 211, 128, 255, 216, 102, 159, 27, 8, 35, 105, 5, 141, 130, 118, 132, 128, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 205, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9247989770940978860" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0059d90403" + } + ] + }, + "cborHex": "d8669f1b805775b2df6216ac9f450059d90403ffff", + "cborBytes": [216, 102, 159, 27, 128, 87, 117, 178, 223, 98, 22, 172, 159, 69, 0, 89, 217, 4, 3, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 206, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "896c076a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3604211060808430982" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14172555168237424001" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13108097862269044549" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d271e6006e" + } + } + ] + } + ] + }, + "cborHex": "d87b9f44896c076abf1b3204badd270535861bc4af07d60a6b0d811bb5e9518e599a874545d271e6006effff", + "cborBytes": [ + 216, 123, 159, 68, 137, 108, 7, 106, 191, 27, 50, 4, 186, 221, 39, 5, 53, 134, 27, 196, 175, 7, 214, 10, 107, 13, + 129, 27, 181, 233, 81, 142, 89, 154, 135, 69, 69, 210, 113, 230, 0, 110, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 207, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7530132107620429267" + }, + "fields": [] + }, + "cborHex": "d8669f1b688067416a7aadd380ff", + "cborBytes": [216, 102, 159, 27, 104, 128, 103, 65, 106, 122, 173, 211, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 208, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9184934851347086134" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7836872424339269121" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f9f9f1b7f7771955ba5fb36ff1b6cc229f2cacbe601ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 159, 159, 27, 127, 119, 113, 149, 91, 165, 251, + 54, 255, 27, 108, 194, 41, 242, 202, 203, 230, 1, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 209, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17167397163684778375" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2865542724430321879" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13883698597845235154" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15934905545123478680" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6799209907402768358" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cd84f95a465183019d59e2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5857620181094692467" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1efe891af4b56e36c8f9a57e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "164ce7e6c587fa1e7dd9" + }, + { + "_tag": "ByteArray", + "bytearray": "04294a4aae4b4306f0ed2b7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6495499779706285658" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10559415256448905702" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b11419efc007ba" + } + ] + } + ] + }, + "cborHex": "d905059f1bee3ed8c37b7ad187d8669f1b27c473ecf25fd8d79f9f1bc0acce50d52775d21bdd24282aa27cbc981b5e5ba563140effe64bcd84f95a465183019d59e21b514a72850b4ef673ffffff4c1efe891af4b56e36c8f9a57e9f4a164ce7e6c587fa1e7dd94c04294a4aae4b4306f0ed2b7c1b5a24a6a290056e5a1b928a943ac47a31e647b11419efc007baffff", + "cborBytes": [ + 217, 5, 5, 159, 27, 238, 62, 216, 195, 123, 122, 209, 135, 216, 102, 159, 27, 39, 196, 115, 236, 242, 95, 216, + 215, 159, 159, 27, 192, 172, 206, 80, 213, 39, 117, 210, 27, 221, 36, 40, 42, 162, 124, 188, 152, 27, 94, 91, 165, + 99, 20, 14, 255, 230, 75, 205, 132, 249, 90, 70, 81, 131, 1, 157, 89, 226, 27, 81, 74, 114, 133, 11, 78, 246, 115, + 255, 255, 255, 76, 30, 254, 137, 26, 244, 181, 110, 54, 200, 249, 165, 126, 159, 74, 22, 76, 231, 230, 197, 135, + 250, 30, 125, 217, 76, 4, 41, 74, 74, 174, 75, 67, 6, 240, 237, 43, 124, 27, 90, 36, 166, 162, 144, 5, 110, 90, + 27, 146, 138, 148, 58, 196, 122, 49, 230, 71, 177, 20, 25, 239, 192, 7, 186, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 210, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5712225902202937990" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13356503649288511962" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3215718378630471129" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ec9c1722d63" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4724299307128276347" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17204112970620660392" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "081dda410cdbe466f02cbe" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2353356521746529428" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a2e0f0ee9a214990e7a4b97f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5453669594208544894" + } + }, + { + "_tag": "ByteArray", + "bytearray": "61a05853" + }, + { + "_tag": "ByteArray", + "bytearray": "4bc84b04f8fbfbc6da" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a5cf" + }, + { + "_tag": "ByteArray", + "bytearray": "3e713e4dce" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9468683894805602921" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14923561874661083180" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17662236526373410307" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4164028596886229904" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f8b8cd" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b550ae45017b1dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91fceae8d7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e31ce3264" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8d286b7f0f80d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1789366573365557706" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d158045ca750f8eff4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7214761535593551077" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "422f" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4800108521642462550" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "80268720312258862" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5443492403889475173" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "755686329043598113" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8762963032348049162" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2029377705687074807" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10087232033409577208" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13999450881637592007" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14269551911134140978" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1b65366c843cfb9377b8706" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5074748932087775172" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17482625192458074908" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13695354827622297322" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "397553818215432608" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17640389390943401243" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "30102128071645790" + } + }, + { + "_tag": "ByteArray", + "bytearray": "692720a4010264a4" + }, + { + "_tag": "ByteArray", + "bytearray": "2c92" + }, + { + "_tag": "ByteArray", + "bytearray": "860de027c087e13cbe" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b4f45e731819762869fd8669f1bb95bd54da10ce1da9fbf1b2ca086d3e7f6ddd9461ec9c1722d631b419015307e01457b1beec149987188eaa8ff4b081dda410cdbe466f02cbe9f1b20a8cd49b48cfc944ca2e0f0ee9a214990e7a4b97f1b4baf5399e526287e4461a05853494bc84b04f8fbfbc6daffffff9f42a5cf453e713e4dced8669f1b836785d5c859a2699f1bcf1b2474e2bc882c1bf51cde8acd6a96031b39c999f267f8d39043f8b8cdffffffbf482b550ae45017b1dd4591fceae8d7455e31ce326447f8d286b7f0f80d41b91b18d51b6b026979ca49d158045ca750f8eff41b641ffb64243494e542d3e142422fffbf1b429d6944b3d30d561b011d2bf9d0c9912e1b4b8b2b801f5e8e651b0a7cbcb664433b211b799c4c7322fc3f0a1b1c29cc456e9347f71b8bfd0c170651b0f81bc2480a679289abc71bc607a1dc1f259a324cc1b65366c843cfb9377b8706ffd8669f1b466d21443d627fc49f1bf29ec2fc51c23b1c1bbe0faca7955baeead8669f1b0584651761d4c1a09f1bf4cf40b032c0351b1b006af1b9dab19a5e48692720a4010264a4422c9249860de027c087e13cbeffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 79, 69, 231, 49, 129, 151, 98, 134, 159, 216, 102, 159, 27, 185, 91, 213, 77, 161, 12, 225, + 218, 159, 191, 27, 44, 160, 134, 211, 231, 246, 221, 217, 70, 30, 201, 193, 114, 45, 99, 27, 65, 144, 21, 48, 126, + 1, 69, 123, 27, 238, 193, 73, 152, 113, 136, 234, 168, 255, 75, 8, 29, 218, 65, 12, 219, 228, 102, 240, 44, 190, + 159, 27, 32, 168, 205, 73, 180, 140, 252, 148, 76, 162, 224, 240, 238, 154, 33, 73, 144, 231, 164, 185, 127, 27, + 75, 175, 83, 153, 229, 38, 40, 126, 68, 97, 160, 88, 83, 73, 75, 200, 75, 4, 248, 251, 251, 198, 218, 255, 255, + 255, 159, 66, 165, 207, 69, 62, 113, 62, 77, 206, 216, 102, 159, 27, 131, 103, 133, 213, 200, 89, 162, 105, 159, + 27, 207, 27, 36, 116, 226, 188, 136, 44, 27, 245, 28, 222, 138, 205, 106, 150, 3, 27, 57, 201, 153, 242, 103, 248, + 211, 144, 67, 248, 184, 205, 255, 255, 255, 191, 72, 43, 85, 10, 228, 80, 23, 177, 221, 69, 145, 252, 234, 232, + 215, 69, 94, 49, 206, 50, 100, 71, 248, 210, 134, 183, 240, 248, 13, 65, 185, 27, 24, 213, 27, 107, 2, 105, 121, + 202, 73, 209, 88, 4, 92, 167, 80, 248, 239, 244, 27, 100, 31, 251, 100, 36, 52, 148, 229, 66, 211, 225, 66, 66, + 47, 255, 191, 27, 66, 157, 105, 68, 179, 211, 13, 86, 27, 1, 29, 43, 249, 208, 201, 145, 46, 27, 75, 139, 43, 128, + 31, 94, 142, 101, 27, 10, 124, 188, 182, 100, 67, 59, 33, 27, 121, 156, 76, 115, 34, 252, 63, 10, 27, 28, 41, 204, + 69, 110, 147, 71, 247, 27, 139, 253, 12, 23, 6, 81, 176, 248, 27, 194, 72, 10, 103, 146, 137, 171, 199, 27, 198, + 7, 161, 220, 31, 37, 154, 50, 76, 193, 182, 83, 102, 200, 67, 207, 185, 55, 123, 135, 6, 255, 216, 102, 159, 27, + 70, 109, 33, 68, 61, 98, 127, 196, 159, 27, 242, 158, 194, 252, 81, 194, 59, 28, 27, 190, 15, 172, 167, 149, 91, + 174, 234, 216, 102, 159, 27, 5, 132, 101, 23, 97, 212, 193, 160, 159, 27, 244, 207, 64, 176, 50, 192, 53, 27, 27, + 0, 106, 241, 185, 218, 177, 154, 94, 72, 105, 39, 32, 164, 1, 2, 100, 164, 66, 44, 146, 73, 134, 13, 224, 39, 192, + 135, 225, 60, 190, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 211, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "38e695" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4730bc7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "455f8bb0e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6391062107772347472" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "810e03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cef0fc212f2f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea944e826e61" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12796599506430267123" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01f90bdc746c3f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffac78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13797453259170682127" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5cf314601c10" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1998236284598917341" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d252a0d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2585817318189924745" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16175311404505943228" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5831744367024908497" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7876273312114976668" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8900362550947262103" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34619ba62a80" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10250187500105133975" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e423ed504ea6f83b24cf496" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c1a5ce" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d87a9fbf4338e69544f4730bc745455f8bb0e81b58b19d202f3ae45043810e0346cef0fc212f2f46ea944e826e611bb196a773a9b70ef342fa7d4701f90bdc746c3f43ffac781bbf7a66a31dec950fff465cf314601c10bf1b1bbb295050d098dd449d252a0d1b23e2ab2690c381891be07a40059ce6ccbc1b50ee849a9967a8d11b6d4e24d8da80a79c1b7b8470957d66ae974634619ba62a801b8e3ffb3938ea6f974c6e423ed504ea6f83b24cf496ff43c1a5ce80ff", + "cborBytes": [ + 216, 122, 159, 191, 67, 56, 230, 149, 68, 244, 115, 11, 199, 69, 69, 95, 139, 176, 232, 27, 88, 177, 157, 32, 47, + 58, 228, 80, 67, 129, 14, 3, 70, 206, 240, 252, 33, 47, 47, 70, 234, 148, 78, 130, 110, 97, 27, 177, 150, 167, + 115, 169, 183, 14, 243, 66, 250, 125, 71, 1, 249, 11, 220, 116, 108, 63, 67, 255, 172, 120, 27, 191, 122, 102, + 163, 29, 236, 149, 15, 255, 70, 92, 243, 20, 96, 28, 16, 191, 27, 27, 187, 41, 80, 80, 208, 152, 221, 68, 157, 37, + 42, 13, 27, 35, 226, 171, 38, 144, 195, 129, 137, 27, 224, 122, 64, 5, 156, 230, 204, 188, 27, 80, 238, 132, 154, + 153, 103, 168, 209, 27, 109, 78, 36, 216, 218, 128, 167, 156, 27, 123, 132, 112, 149, 125, 102, 174, 151, 70, 52, + 97, 155, 166, 42, 128, 27, 142, 63, 251, 57, 56, 234, 111, 151, 76, 110, 66, 62, 213, 4, 234, 111, 131, 178, 76, + 244, 150, 255, 67, 193, 165, 206, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 212, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15841786765222913014" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "50c7285821a3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cceb5c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10195695831446083304" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "534741276047153035" + } + }, + { + "_tag": "ByteArray", + "bytearray": "acc7d3b93b61ba504939ec" + }, + { + "_tag": "ByteArray", + "bytearray": "8267" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11847948133289831299" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bfba338a6486de34d645" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17933175924844491925" + } + } + ] + }, + "cborHex": "d8669f1bdbd955212c98a3f69f4650c7285821a39f43cceb5cd8669f1b8d7e6356ef4656e89f1b076bc85b7d87978b4bacc7d3b93b61ba504939ec428267ffffffbf1ba46c5e0dd9fe2b834abfba338a6486de34d645ff1bf8df707d56f17495ffff", + "cborBytes": [ + 216, 102, 159, 27, 219, 217, 85, 33, 44, 152, 163, 246, 159, 70, 80, 199, 40, 88, 33, 163, 159, 67, 204, 235, 92, + 216, 102, 159, 27, 141, 126, 99, 86, 239, 70, 86, 232, 159, 27, 7, 107, 200, 91, 125, 135, 151, 139, 75, 172, 199, + 211, 185, 59, 97, 186, 80, 73, 57, 236, 66, 130, 103, 255, 255, 255, 191, 27, 164, 108, 94, 13, 217, 254, 43, 131, + 74, 191, 186, 51, 138, 100, 134, 222, 52, 214, 69, 255, 27, 248, 223, 112, 125, 86, 241, 116, 149, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 213, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11086442034164352660" + }, + "fields": [] + }, + "cborHex": "d8669f1b99daf44aa553469480ff", + "cborBytes": [216, 102, 159, 27, 153, 218, 244, 74, 165, 83, 70, 148, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 214, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [] + }, + "cborHex": "d87a80", + "cborBytes": [216, 122, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 215, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0503fe640206" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec06ec03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13103373401672372323" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9fbf1bfffffffffffffff2460503fe64020644ec06ec031bb5d888af25fbd063ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 242, + 70, 5, 3, 254, 100, 2, 6, 68, 236, 6, 236, 3, 27, 181, 216, 136, 175, 37, 251, 208, 99, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 216, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14310369305534509601" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6205" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e1849" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6488457682077589920" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bc698a5105509b2219f426205bf436e18491b5a0ba1e27063a1a0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 198, 152, 165, 16, 85, 9, 178, 33, 159, 66, 98, 5, 191, 67, 110, 24, 73, 27, 90, 11, 161, 226, + 112, 99, 161, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 217, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "922b2529bcc5e46cb1fb9a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4cba2dd99b6809" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed2891ae908dbf990250" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5beecb0c6c18e9c67" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2440543420149068934" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0802ca4b879c4956325e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5015725906715547566" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f9fbf4b922b2529bcc5e46cb1fb9a474cba2dd99b6809ffbf4aed2891ae908dbf99025049a5beecb0c6c18e9c67ff1b21de8d4f60e6f486bf4a0802ca4b879c4956325e1b459b7023408117aeffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 159, 191, 75, 146, 43, 37, 41, 188, 197, 228, 108, + 177, 251, 154, 71, 76, 186, 45, 217, 155, 104, 9, 255, 191, 74, 237, 40, 145, 174, 144, 141, 191, 153, 2, 80, 73, + 165, 190, 236, 176, 198, 193, 142, 156, 103, 255, 27, 33, 222, 141, 79, 96, 230, 244, 134, 191, 74, 8, 2, 202, 75, + 135, 156, 73, 86, 50, 94, 27, 69, 155, 112, 35, 64, 129, 23, 174, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 218, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8401256841549977973" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7815615549611669633" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f03985027dc8f7dd4dd70ae2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13574498042003115495" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13467776158350643691" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b60f2a4cbf39436e1f117b10" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adc26aff18" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b74974295eb6819759f9f1b6c76a4eef79f78814cf03985027dc8f7dd4dd70ae2ff9f9f1bbc624e0c65d4cde71bbae7270f88f711eb4cb60f2a4cbf39436e1f117b10ff80bf41050141f845adc26aff18ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 116, 151, 66, 149, 235, 104, 25, 117, 159, 159, 27, 108, 118, 164, 238, 247, 159, 120, 129, 76, + 240, 57, 133, 2, 125, 200, 247, 221, 77, 215, 10, 226, 255, 159, 159, 27, 188, 98, 78, 12, 101, 212, 205, 231, 27, + 186, 231, 39, 15, 136, 247, 17, 235, 76, 182, 15, 42, 76, 191, 57, 67, 110, 31, 17, 123, 16, 255, 128, 191, 65, 5, + 1, 65, 248, 69, 173, 194, 106, 255, 24, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 219, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11784619390715880727" + } + } + ] + }, + "cborHex": "d87d9f1ba38b60e5f4cce517ff", + "cborBytes": [216, 125, 159, 27, 163, 139, 96, 229, 244, 204, 229, 23, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 220, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1991260347033608069" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9858496300548481289" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eb2c3f586425410cedd9fe" + }, + { + "_tag": "ByteArray", + "bytearray": "58ad" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b1ba260bc48425f859f9f1b88d06a271db1e1099f4beb2c3f586425410cedd9fe4258adffffffff", + "cborBytes": [ + 216, 102, 159, 27, 27, 162, 96, 188, 72, 66, 95, 133, 159, 159, 27, 136, 208, 106, 39, 29, 177, 225, 9, 159, 75, + 235, 44, 63, 88, 100, 37, 65, 12, 237, 217, 254, 66, 88, 173, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 221, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "598b56a9f8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6829178657196526015" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "181a1a0b97d7d05f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4973384153942826105" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6009784578391255376" + } + }, + { + "_tag": "ByteArray", + "bytearray": "15d5b7f37fd3a7b7f0632fe5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13537723579330101249" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "32940e61" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10770939646691422497" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17841688611508269763" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2007810374582065038" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f9f45598b56a9f8d8669f1b5ec61dce61e0c9bf9f48181a1a0b97d7d05f1b45050289b3519c791b53670b3b9ba1a9504c15d5b7f37fd3a7b7f0632fe51bbbdfa7de95668001ffff4432940e619f1b957a108ab236b121ffffd905089f1bf79a69434a1532c3d8669f1b1bdd2ce5d94ed78e80ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 159, 69, 89, 139, 86, 169, 248, 216, 102, 159, 27, + 94, 198, 29, 206, 97, 224, 201, 191, 159, 72, 24, 26, 26, 11, 151, 215, 208, 95, 27, 69, 5, 2, 137, 179, 81, 156, + 121, 27, 83, 103, 11, 59, 155, 161, 169, 80, 76, 21, 213, 183, 243, 127, 211, 167, 183, 240, 99, 47, 229, 27, 187, + 223, 167, 222, 149, 102, 128, 1, 255, 255, 68, 50, 148, 14, 97, 159, 27, 149, 122, 16, 138, 178, 54, 177, 33, 255, + 255, 217, 5, 8, 159, 27, 247, 154, 105, 67, 74, 21, 50, 195, 216, 102, 159, 27, 27, 221, 44, 229, 217, 78, 215, + 142, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 222, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9871689375019860938" + }, + "fields": [] + }, + "cborHex": "d8669f1b88ff492f230e83ca80ff", + "cborBytes": [216, 102, 159, 27, 136, 255, 73, 47, 35, 14, 131, 202, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 223, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "695709053270208373" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9540314329769875019" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e4429" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b09a7a7b2ab31af759fbf1b846601560f80964b430e4429ffffff", + "cborBytes": [ + 216, 102, 159, 27, 9, 167, 167, 178, 171, 49, 175, 117, 159, 191, 27, 132, 102, 1, 86, 15, 128, 150, 75, 67, 14, + 68, 41, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 224, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4208527580603369032" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "23bcad4610ed09e7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14679704519012267676" + } + }, + { + "_tag": "ByteArray", + "bytearray": "53b03da331" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7848557134173609404" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9206387590834534219" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14335345262670105436" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16431076869036542794" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9788666697167906259" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d37bb7d1202fb8" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18190641997035300309" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11123907156650173028" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14339144612541659466" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5807961252738461619" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "297265093638041672" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2050d59623db7f3c588630" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1032589249786370391" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "213a1350faf80880" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a0af59d7e9e7bc4c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9993395687539242723" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b7ae7500b158d4b61a3c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46f05e654953e04a47732a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0c12eeed42a3157c51f58" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3283043435435428582" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7a5b38c3eb67e1d39" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb16bba03c" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3a67b1896d4c46489f9f4823bcad4610ed09e79f1bcbb8c97bcf6c369c4553b03da3311b6cebad214dc69dbc1b7fc3a8bc8041b74bff9f1bc6f160908207cb5c1be406e95b580f8b4a1b87d8547f9d63a5d347d37bb7d1202fb8ffff9f1bfc722484a59765d51b9a600e9f3a8f2264d8669f1bc6fee00d9580794a9f1b509a05fccab56fb31b04201907166b3048ffffffbf4b2050d59623db7f3c5886301b0e547e73a867595748213a1350faf808804146494a0af59d7e9e7bc4c71b8aafac6e37b276e34b7b7ae7500b158d4b61a3c94b46f05e654953e04a47732a4bc0c12eeed42a3157c51f581b2d8fb69c374e8ae649c7a5b38c3eb67e1d3945eb16bba03cffffff", + "cborBytes": [ + 216, 102, 159, 27, 58, 103, 177, 137, 109, 76, 70, 72, 159, 159, 72, 35, 188, 173, 70, 16, 237, 9, 231, 159, 27, + 203, 184, 201, 123, 207, 108, 54, 156, 69, 83, 176, 61, 163, 49, 27, 108, 235, 173, 33, 77, 198, 157, 188, 27, + 127, 195, 168, 188, 128, 65, 183, 75, 255, 159, 27, 198, 241, 96, 144, 130, 7, 203, 92, 27, 228, 6, 233, 91, 88, + 15, 139, 74, 27, 135, 216, 84, 127, 157, 99, 165, 211, 71, 211, 123, 183, 209, 32, 47, 184, 255, 255, 159, 27, + 252, 114, 36, 132, 165, 151, 101, 213, 27, 154, 96, 14, 159, 58, 143, 34, 100, 216, 102, 159, 27, 198, 254, 224, + 13, 149, 128, 121, 74, 159, 27, 80, 154, 5, 252, 202, 181, 111, 179, 27, 4, 32, 25, 7, 22, 107, 48, 72, 255, 255, + 255, 191, 75, 32, 80, 213, 150, 35, 219, 127, 60, 88, 134, 48, 27, 14, 84, 126, 115, 168, 103, 89, 87, 72, 33, 58, + 19, 80, 250, 248, 8, 128, 65, 70, 73, 74, 10, 245, 157, 126, 158, 123, 196, 199, 27, 138, 175, 172, 110, 55, 178, + 118, 227, 75, 123, 122, 231, 80, 11, 21, 141, 75, 97, 163, 201, 75, 70, 240, 94, 101, 73, 83, 224, 74, 71, 115, + 42, 75, 192, 193, 46, 238, 212, 42, 49, 87, 197, 31, 88, 27, 45, 143, 182, 156, 55, 78, 138, 230, 73, 199, 165, + 179, 140, 62, 182, 126, 29, 57, 69, 235, 22, 187, 160, 60, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 225, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "916897604041793641" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25b838d8126f0580" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4084218259282859543" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1de4887d0b2cf19a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6888350211772879863" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14616196909606346317" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13260680652367434301" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10076708175990310191" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15687368792161109416" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ae086cdfb03f8" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9872907940542611890" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a6c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1808461339040567114" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17922681020440009903" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9668092125401927182" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10420809841654859946" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17216021856506085982" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11901121540473112016" + } + } + } + ] + } + ] + }, + "cborHex": "d905069f9fbf1b0cb97983505160694825b838d8126f05801b38ae0ede21b81617481de4887d0b2cf19a1b5f985605853593f71bcad729a63c3f9e4d1bb80766cb9441923d1b8bd7a8b2872d452f1bd9b4bacd1d4fc5a8470ae086cdfb03f8ff1b89039d76882d01b2429a6cffd87a9f1b1918f201978a4f4aff80d8669f1bf8ba276dfdf65caf80ffbf1b862bf69076554e0e1b909e2756d3bb88aa1beeeb98aa0268025e1ba52946fc78a645d0ffff", + "cborBytes": [ + 217, 5, 6, 159, 159, 191, 27, 12, 185, 121, 131, 80, 81, 96, 105, 72, 37, 184, 56, 216, 18, 111, 5, 128, 27, 56, + 174, 14, 222, 33, 184, 22, 23, 72, 29, 228, 136, 125, 11, 44, 241, 154, 27, 95, 152, 86, 5, 133, 53, 147, 247, 27, + 202, 215, 41, 166, 60, 63, 158, 77, 27, 184, 7, 102, 203, 148, 65, 146, 61, 27, 139, 215, 168, 178, 135, 45, 69, + 47, 27, 217, 180, 186, 205, 29, 79, 197, 168, 71, 10, 224, 134, 205, 251, 3, 248, 255, 27, 137, 3, 157, 118, 136, + 45, 1, 178, 66, 154, 108, 255, 216, 122, 159, 27, 25, 24, 242, 1, 151, 138, 79, 74, 255, 128, 216, 102, 159, 27, + 248, 186, 39, 109, 253, 246, 92, 175, 128, 255, 191, 27, 134, 43, 246, 144, 118, 85, 78, 14, 27, 144, 158, 39, 86, + 211, 187, 136, 170, 27, 238, 235, 152, 170, 2, 104, 2, 94, 27, 165, 41, 70, 252, 120, 166, 69, 208, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 226, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12688996670627538556" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6173743698354948516" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "00c3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3387180764659402481" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f279de5f8bd49" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3600808020224705376" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9488703839369387506" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3609402662911956364" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97d5bd65" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8410265632109767343" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14066004459972441416" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ff0" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10996568990646067698" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "07" + } + ] + }, + "cborHex": "d8669f1bb0185f3e24de667c9fa0d8669f1b55ad8b2f0ac0c9a480ff4200c3d8669f1bfffffffffffffff19fa0bf1b2f01aef59b8f46f1477f279de5f8bd491b31f8a3d105df03601b83aea5de5c7f5df21b32172c993637558c4497d5bd651b74b744086c942aaf41921bc3347c880db7b548422ff0ff1b989ba93c1388e1f2ffff4107ffff", + "cborBytes": [ + 216, 102, 159, 27, 176, 24, 95, 62, 36, 222, 102, 124, 159, 160, 216, 102, 159, 27, 85, 173, 139, 47, 10, 192, + 201, 164, 128, 255, 66, 0, 195, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 160, 191, 27, 47, + 1, 174, 245, 155, 143, 70, 241, 71, 127, 39, 157, 229, 248, 189, 73, 27, 49, 248, 163, 209, 5, 223, 3, 96, 27, + 131, 174, 165, 222, 92, 127, 93, 242, 27, 50, 23, 44, 153, 54, 55, 85, 140, 68, 151, 213, 189, 101, 27, 116, 183, + 68, 8, 108, 148, 42, 175, 65, 146, 27, 195, 52, 124, 136, 13, 183, 181, 72, 66, 47, 240, 255, 27, 152, 155, 169, + 60, 19, 136, 225, 242, 255, 255, 65, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 227, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7085934793084321874" + }, + "fields": [] + }, + "cborHex": "d8669f1b62564c26c35f405280ff", + "cborBytes": [216, 102, 159, 27, 98, 86, 76, 38, 195, 95, 64, 82, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 228, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14135740149264444097" + }, + "fields": [] + }, + "cborHex": "d8669f1bc42c3cc57a226ac180ff", + "cborBytes": [216, 102, 159, 27, 196, 44, 60, 197, 122, 34, 106, 193, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 229, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14302060574511545593" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5785188457776558891" + } + } + ] + }, + "cborHex": "d8669f1bc67b205123e13cf99f1b50491e404876332bffff", + "cborBytes": [ + 216, 102, 159, 27, 198, 123, 32, 81, 35, 225, 60, 249, 159, 27, 80, 73, 30, 64, 72, 118, 51, 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 230, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5221101b84ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2798506852272413525" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72ec8da3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10417613840656544838" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8282c616af5478b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13445571956351531748" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88b55078" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9b011" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b40b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15740632127838634742" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12733490832053454991" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2739616369888249028" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10006209773469481109" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7324482317820526850" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ed3f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11650780859808077800" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce60cfb9100e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12130791586054713183" + } + } + ] + } + ] + }, + "cborHex": "d905069fbf465221101b84ba1b26d64b27af319b554472ec8da31b9092cc97db86b446488282c616af5478b11bba984474e4497ae44488b5507843e9b01142b40b1bda71f585d7ec42f6ff1bb0b67272633d488f414e9fbf1b26051292c408c4c41b8add32c617b0b8951b65a5c9dc7d528102439ed3f91ba1afe376a8c7d7e846ce60cfb9100eff1ba8593aad0316af5fffff", + "cborBytes": [ + 217, 5, 6, 159, 191, 70, 82, 33, 16, 27, 132, 186, 27, 38, 214, 75, 39, 175, 49, 155, 85, 68, 114, 236, 141, 163, + 27, 144, 146, 204, 151, 219, 134, 180, 70, 72, 130, 130, 198, 22, 175, 84, 120, 177, 27, 186, 152, 68, 116, 228, + 73, 122, 228, 68, 136, 181, 80, 120, 67, 233, 176, 17, 66, 180, 11, 27, 218, 113, 245, 133, 215, 236, 66, 246, + 255, 27, 176, 182, 114, 114, 99, 61, 72, 143, 65, 78, 159, 191, 27, 38, 5, 18, 146, 196, 8, 196, 196, 27, 138, + 221, 50, 198, 23, 176, 184, 149, 27, 101, 165, 201, 220, 125, 82, 129, 2, 67, 158, 211, 249, 27, 161, 175, 227, + 118, 168, 199, 215, 232, 70, 206, 96, 207, 185, 16, 14, 255, 27, 168, 89, 58, 173, 3, 22, 175, 95, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 231, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10834484065252136404" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "975c06f382e2" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9fbf1b965bd1da91fbd5d446975c06f382e2ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 191, 27, 150, 91, 209, 218, 145, 251, 213, 212, + 70, 151, 92, 6, 243, 130, 226, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 232, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c6ac" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5262040068977756292" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17412876516365998795" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4853150284190640886" + } + }, + { + "_tag": "ByteArray", + "bytearray": "acb157c4" + }, + { + "_tag": "ByteArray", + "bytearray": "44" + }, + { + "_tag": "ByteArray", + "bytearray": "70e7d2cef218be3f81b23e" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16793883845731131581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4843957925046542719" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4779778358727425044" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4bf0935818" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "917156873983464143" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b54007" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f42c6acd8669f1b49068590314a88849fd8669f1bf1a6f6ef2bbc9acb9f1b4359da786ac4eaf644acb157c441444b70e7d2cef218be3f81b23effff80bf1be90fdc613ff9a0bd1b433932118556617fffffffbf1b42552f17c90c3c14454bf0935818ff1b0cba65514d1792cf43b54007ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 66, 198, 172, 216, 102, 159, 27, 73, 6, 133, 144, + 49, 74, 136, 132, 159, 216, 102, 159, 27, 241, 166, 246, 239, 43, 188, 154, 203, 159, 27, 67, 89, 218, 120, 106, + 196, 234, 246, 68, 172, 177, 87, 196, 65, 68, 75, 112, 231, 210, 206, 242, 24, 190, 63, 129, 178, 62, 255, 255, + 128, 191, 27, 233, 15, 220, 97, 63, 249, 160, 189, 27, 67, 57, 50, 17, 133, 86, 97, 127, 255, 255, 255, 191, 27, + 66, 85, 47, 23, 201, 12, 60, 20, 69, 75, 240, 147, 88, 24, 255, 27, 12, 186, 101, 81, 77, 23, 146, 207, 67, 181, + 64, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 233, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11350040791796540177" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "08ee4189e714ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47abc963f222fd7dc8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b90a0e733d8bb1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15655728669943433986" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14644411913688475347" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1528326022060969444" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14167054522568182679" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4604358225986361669" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bcd1ebfd" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aa80cc3555a9009aef40e0" + }, + { + "_tag": "ByteArray", + "bytearray": "bd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "158303078864503323" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13536566557032748331" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4aaaa4197f79" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15902526399907608961" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3671d005fbfacc5e80144d" + }, + { + "_tag": "ByteArray", + "bytearray": "7987" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3691552804106640921" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2001377176063289809" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "959ee646f833a037b004f6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4776834964975972754" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15862542286145689788" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12527629906257049535" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1405281648338819438" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12903305458914543067" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12368441150096785382" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3435581453227399825" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16922959464530220662" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1238086713152225296" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aae2d84fdbd6" + }, + { + "_tag": "ByteArray", + "bytearray": "8a4d89" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16612597827616089407" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14020653217766170313" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e170c2b98254b6002cbb4d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7da659220da4fe" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15391512168613955801" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12983574747304632953" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5117506405149250282" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13127664455355382374" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dc1636f15f8427fa2a" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13975416238051641638" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9532203553084579137" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cad0ee097e24c53731" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7242ca71b9b0" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b9d8371f70d39e3119f9fbf4708ee4189e714ed4947abc963f222fd7dc847b90a0e733d8bb11bd944524717e08b02ff1bcb3b670bcbe666d3d8669f1b1535b46b6dee0de49f1bc49b7d072b448b971b3fe5f7695e90994544bcd1ebfdffff9f4baa80cc3555a9009aef40e041bd1b023267cfbe91c21b1bbbdb8b90565e952b464aaaa4197f79ffd8669f1bdcb11f8169c3b9819f4b3671d005fbfacc5e80144d427987ffffffd8669f1b333b07b7765f9e199fbf1b1bc651f018d3a9d14b959ee646f833a037b004f61b424aba17860ef1921bdc23122a785398bc1baddb15068802f7bf1b13809036b29c596e1bb311bff342f5c5db1baba587b1f8d7bfe6ff1b2fada321148a1a91ffff1beada6df8a7a89676d8669f1b112e914e5291c0109f9f46aae2d84fdbd6438a4d89ffd8669f1be68bcdb4f77ba53f9f1bc2935dd123e3dec94be170c2b98254b6002cbb4dffff477da659220da4fed8669f1bd599a2c5065648d99f1bb42eec7157d322791b470508f636b512eaffff9f1bb62ed544cffaba6649dc1636f15f8427fa2affffffd8669f1bc1f2a706094b49269f1b844930a0b4529d41bf49cad0ee097e24c53731467242ca71b9b0ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 157, 131, 113, 247, 13, 57, 227, 17, 159, 159, 191, 71, 8, 238, 65, 137, 231, 20, 237, 73, 71, + 171, 201, 99, 242, 34, 253, 125, 200, 71, 185, 10, 14, 115, 61, 139, 177, 27, 217, 68, 82, 71, 23, 224, 139, 2, + 255, 27, 203, 59, 103, 11, 203, 230, 102, 211, 216, 102, 159, 27, 21, 53, 180, 107, 109, 238, 13, 228, 159, 27, + 196, 155, 125, 7, 43, 68, 139, 151, 27, 63, 229, 247, 105, 94, 144, 153, 69, 68, 188, 209, 235, 253, 255, 255, + 159, 75, 170, 128, 204, 53, 85, 169, 0, 154, 239, 64, 224, 65, 189, 27, 2, 50, 103, 207, 190, 145, 194, 27, 27, + 187, 219, 139, 144, 86, 94, 149, 43, 70, 74, 170, 164, 25, 127, 121, 255, 216, 102, 159, 27, 220, 177, 31, 129, + 105, 195, 185, 129, 159, 75, 54, 113, 208, 5, 251, 250, 204, 94, 128, 20, 77, 66, 121, 135, 255, 255, 255, 216, + 102, 159, 27, 51, 59, 7, 183, 118, 95, 158, 25, 159, 191, 27, 27, 198, 81, 240, 24, 211, 169, 209, 75, 149, 158, + 230, 70, 248, 51, 160, 55, 176, 4, 246, 27, 66, 74, 186, 23, 134, 14, 241, 146, 27, 220, 35, 18, 42, 120, 83, 152, + 188, 27, 173, 219, 21, 6, 136, 2, 247, 191, 27, 19, 128, 144, 54, 178, 156, 89, 110, 27, 179, 17, 191, 243, 66, + 245, 197, 219, 27, 171, 165, 135, 177, 248, 215, 191, 230, 255, 27, 47, 173, 163, 33, 20, 138, 26, 145, 255, 255, + 27, 234, 218, 109, 248, 167, 168, 150, 118, 216, 102, 159, 27, 17, 46, 145, 78, 82, 145, 192, 16, 159, 159, 70, + 170, 226, 216, 79, 219, 214, 67, 138, 77, 137, 255, 216, 102, 159, 27, 230, 139, 205, 180, 247, 123, 165, 63, 159, + 27, 194, 147, 93, 209, 35, 227, 222, 201, 75, 225, 112, 194, 185, 130, 84, 182, 0, 44, 187, 77, 255, 255, 71, 125, + 166, 89, 34, 13, 164, 254, 216, 102, 159, 27, 213, 153, 162, 197, 6, 86, 72, 217, 159, 27, 180, 46, 236, 113, 87, + 211, 34, 121, 27, 71, 5, 8, 246, 54, 181, 18, 234, 255, 255, 159, 27, 182, 46, 213, 68, 207, 250, 186, 102, 73, + 220, 22, 54, 241, 95, 132, 39, 250, 42, 255, 255, 255, 216, 102, 159, 27, 193, 242, 167, 6, 9, 75, 73, 38, 159, + 27, 132, 73, 48, 160, 180, 82, 157, 65, 191, 73, 202, 208, 238, 9, 126, 36, 197, 55, 49, 70, 114, 66, 202, 113, + 185, 176, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 234, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4002593559203485075" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13327841404250324322" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17522305530642016523" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7367950975820661208" + } + }, + { + "_tag": "ByteArray", + "bytearray": "978638" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2065861dcba7e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8339675238825885692" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68417bcbed0a1c9e69c296" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9aca21c0fb322eeb1fdf67a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69e9f3db2bbbed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab3b08ca2a63" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c8bae48707090bcc" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7488800650075581090" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "526103230099544767" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8674232987302152686" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5159189014441376218" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7273241743010380132" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6413653711f1f5b0c0" + }, + { + "_tag": "ByteArray", + "bytearray": "e455fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5870386767354511982" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1214687000597765350" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09026c0206e17d239a445a" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17922293217062575625" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b378c11a2ac9715939fd8669f1bb8f60124ab157d629fd8669f1bf32bbc0affc7a90b9f1b664038601c4881d843978638ffffbf472065861dcba7e41b73bc7a71b8567ffc4b68417bcbed0a1c9e69c2964ca9aca21c0fb322eeb1fdf67a4769e9f3db2bbbed46ab3b08ca2a63ff48c8bae48707090bccffffbf1b67ed90838d782aa21b074d1819b144dabf1b786110f1a31ec9ee1b47991f12f6e039daffd8669f1b64efbed479ad39649f9f496413653711f1f5b0c043e455fc1b5177cda98a51c26e1b10db6f642fea1ce64b09026c0206e17d239a445aff80ffffd8669f1bf8b8c6b97b685e0980ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 55, 140, 17, 162, 172, 151, 21, 147, 159, 216, 102, 159, 27, 184, 246, 1, 36, 171, 21, 125, 98, + 159, 216, 102, 159, 27, 243, 43, 188, 10, 255, 199, 169, 11, 159, 27, 102, 64, 56, 96, 28, 72, 129, 216, 67, 151, + 134, 56, 255, 255, 191, 71, 32, 101, 134, 29, 203, 167, 228, 27, 115, 188, 122, 113, 184, 86, 127, 252, 75, 104, + 65, 123, 203, 237, 10, 28, 158, 105, 194, 150, 76, 169, 172, 162, 28, 15, 179, 34, 238, 177, 253, 246, 122, 71, + 105, 233, 243, 219, 43, 187, 237, 70, 171, 59, 8, 202, 42, 99, 255, 72, 200, 186, 228, 135, 7, 9, 11, 204, 255, + 255, 191, 27, 103, 237, 144, 131, 141, 120, 42, 162, 27, 7, 77, 24, 25, 177, 68, 218, 191, 27, 120, 97, 16, 241, + 163, 30, 201, 238, 27, 71, 153, 31, 18, 246, 224, 57, 218, 255, 216, 102, 159, 27, 100, 239, 190, 212, 121, 173, + 57, 100, 159, 159, 73, 100, 19, 101, 55, 17, 241, 245, 176, 192, 67, 228, 85, 252, 27, 81, 119, 205, 169, 138, 81, + 194, 110, 27, 16, 219, 111, 100, 47, 234, 28, 230, 75, 9, 2, 108, 2, 6, 225, 125, 35, 154, 68, 90, 255, 128, 255, + 255, 216, 102, 159, 27, 248, 184, 198, 185, 123, 104, 94, 9, 128, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 235, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8512678846681708768" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b299a66f56b13d" + }, + { + "_tag": "ByteArray", + "bytearray": "5f35" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17387479787048863214" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d4afef3cfb394e0c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "986f148763bfb19e0e69a4e2" + } + ] + }, + "cborHex": "d8669f1b76231c4f1771f8e09f47b299a66f56b13d425f35d8669f1bf14cbcbe565505ee9f48d4afef3cfb394e0cffff4c986f148763bfb19e0e69a4e2ffff", + "cborBytes": [ + 216, 102, 159, 27, 118, 35, 28, 79, 23, 113, 248, 224, 159, 71, 178, 153, 166, 111, 86, 177, 61, 66, 95, 53, 216, + 102, 159, 27, 241, 76, 188, 190, 86, 85, 5, 238, 159, 72, 212, 175, 239, 60, 251, 57, 78, 12, 255, 255, 76, 152, + 111, 20, 135, 99, 191, 177, 158, 14, 105, 164, 226, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 236, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13238346613505224013" + }, + "fields": [] + }, + "cborHex": "d8669f1bb7b80e1aef796d4d80ff", + "cborBytes": [216, 102, 159, 27, 183, 184, 14, 26, 239, 121, 109, 77, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 237, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10623764018287925643" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "47fe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12341451421738876180" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10104829209761907026" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7383727876587928540" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c299" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13861424034124316495" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c77db83" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14872074906020665427" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8072214825281057893" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5688f299818078ffe49acc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8851450070922420616" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8b0efb94fe939f011" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11868407366062318176" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13954991271877565939" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16159343075919927583" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cdf4918e37cd4a" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87b9f9f80ffd905009fd8669f1b936f311667a0d98b9f4247fe1bab45a4ae257c3d141b8c3b90a0ebd98152ffff1b66784562122c3bdc9f42c299ffffbf1bc05dabb7d30abf4f447c77db83ff1bce643954d65cd8539fbf1b7006449d7b84f4654b5688f299818078ffe49acc1b7ad6aaf1486fe18849c8b0efb94fe939f0111ba4b50d9e2fc622601bc1aa16a003f05df31be04184e963e0191f47cdf4918e37cd4affffff", + "cborBytes": [ + 216, 123, 159, 159, 128, 255, 217, 5, 0, 159, 216, 102, 159, 27, 147, 111, 49, 22, 103, 160, 217, 139, 159, 66, + 71, 254, 27, 171, 69, 164, 174, 37, 124, 61, 20, 27, 140, 59, 144, 160, 235, 217, 129, 82, 255, 255, 27, 102, 120, + 69, 98, 18, 44, 59, 220, 159, 66, 194, 153, 255, 255, 191, 27, 192, 93, 171, 183, 211, 10, 191, 79, 68, 124, 119, + 219, 131, 255, 27, 206, 100, 57, 84, 214, 92, 216, 83, 159, 191, 27, 112, 6, 68, 157, 123, 132, 244, 101, 75, 86, + 136, 242, 153, 129, 128, 120, 255, 228, 154, 204, 27, 122, 214, 170, 241, 72, 111, 225, 136, 73, 200, 176, 239, + 185, 79, 233, 57, 240, 17, 27, 164, 181, 13, 158, 47, 198, 34, 96, 27, 193, 170, 22, 160, 3, 240, 93, 243, 27, + 224, 65, 132, 233, 99, 224, 25, 31, 71, 205, 244, 145, 142, 55, 205, 74, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 238, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10000180392577678884" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f1b8ac7c715756b3e24ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 27, 138, 199, 199, 21, 117, 107, 62, 36, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 239, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [] + }, + "cborHex": "d9050d80", + "cborBytes": [217, 5, 13, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 240, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9570781878829422802" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0106461283aabb12d12c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14708095445718218395" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "367256" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a7d61605e9dd324e6bd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5e01268" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1745bfe6bd" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b38c176e27d88042d7e8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1277233497087265577" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "780572248d3f0bd0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16984238621742140814" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14822332540798579418" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f472" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8317394888418635523" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2598491752785547829" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fbbf0aa8316f3d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4186348440856006176" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5754257566461643036" + } + }, + { + "_tag": "ByteArray", + "bytearray": "166835a45bc0aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2561483399442221815" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15664023659305220758" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f66a" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9f1b84d23f691e5f98d2bf4a0106461283aabb12d12c1bcc1da6e18c93369b433672564a8a7d61605e9dd324e6bd44b5e01268451745bfe6bdff9f4ab38c176e27d88042d7e8d8669f1b11b9a519391dcb299f48780572248d3f0bd01bebb4230a45690d8e1bcdb380e9ed0332daffff9f42f4721b736d529564d7af031b240fb27b5490923547fbbf0aa8316f3d1b3a18e5ba0b3b8e20ff9f1b4fdb3ac4f30cc91c47166835a45bc0aa1b238c379499d04af7ff1bd961ca86ce33ba96ff42f66affff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 27, 132, 210, 63, 105, 30, 95, 152, 210, 191, 74, + 1, 6, 70, 18, 131, 170, 187, 18, 209, 44, 27, 204, 29, 166, 225, 140, 147, 54, 155, 67, 54, 114, 86, 74, 138, 125, + 97, 96, 94, 157, 211, 36, 230, 189, 68, 181, 224, 18, 104, 69, 23, 69, 191, 230, 189, 255, 159, 74, 179, 140, 23, + 110, 39, 216, 128, 66, 215, 232, 216, 102, 159, 27, 17, 185, 165, 25, 57, 29, 203, 41, 159, 72, 120, 5, 114, 36, + 141, 63, 11, 208, 27, 235, 180, 35, 10, 69, 105, 13, 142, 27, 205, 179, 128, 233, 237, 3, 50, 218, 255, 255, 159, + 66, 244, 114, 27, 115, 109, 82, 149, 100, 215, 175, 3, 27, 36, 15, 178, 123, 84, 144, 146, 53, 71, 251, 191, 10, + 168, 49, 111, 61, 27, 58, 24, 229, 186, 11, 59, 142, 32, 255, 159, 27, 79, 219, 58, 196, 243, 12, 201, 28, 71, 22, + 104, 53, 164, 91, 192, 170, 27, 35, 140, 55, 148, 153, 208, 74, 247, 255, 27, 217, 97, 202, 134, 206, 51, 186, + 150, 255, 66, 246, 106, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 241, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9492243060927410348" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13400087092424372641" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17899955458339784679" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f83925c5353389dc95907f" + } + ] + }, + "cborHex": "d8669f1b83bb38c5983eb0ac9fd905079fbf1bb9f6ac36bf4071a11bf8696aa6bda847e7ffff4bf83925c5353389dc95907fffff", + "cborBytes": [ + 216, 102, 159, 27, 131, 187, 56, 197, 152, 62, 176, 172, 159, 217, 5, 7, 159, 191, 27, 185, 246, 172, 54, 191, 64, + 113, 161, 27, 248, 105, 106, 166, 189, 168, 71, 231, 255, 255, 75, 248, 57, 37, 197, 53, 51, 137, 220, 149, 144, + 127, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 242, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15091281708624150764" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11356787624866269552" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1153096166785859954" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "79c1400586c59b1d" + }, + { + "_tag": "ByteArray", + "bytearray": "c5" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3187499554059445172" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e105bc7ebdcc6095" + } + ] + }, + "cborHex": "d8669f1bd16f00c1c7e480ec9f1b9d9b6a2c89b4c9701b10009edab522c1729fa04879c1400586c59b1d41c5ff1b2c3c45f4d16de3b448e105bc7ebdcc6095ffff", + "cborBytes": [ + 216, 102, 159, 27, 209, 111, 0, 193, 199, 228, 128, 236, 159, 27, 157, 155, 106, 44, 137, 180, 201, 112, 27, 16, + 0, 158, 218, 181, 34, 193, 114, 159, 160, 72, 121, 193, 64, 5, 134, 197, 155, 29, 65, 197, 255, 27, 44, 60, 69, + 244, 209, 109, 227, 180, 72, 225, 5, 188, 126, 189, 204, 96, 149, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 243, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [] + }, + "cborHex": "d87f80", + "cborBytes": [216, 127, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 244, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b613fbbc01fcf92d09" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "081ea426ae" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17870163635672125422" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8977402602942729443" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ca703f24500d61b1d9902a89" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11111613247739824462" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14806458855818966525" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3490136206970474150" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28bfc804476c19a3d8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9010052416326607420" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16347845393347235021" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4064960557092309167" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a7a90630d5df" + }, + { + "_tag": "ByteArray", + "bytearray": "47" + }, + { + "_tag": "ByteArray", + "bytearray": "fd19117217" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13885131361527509422" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10731127369717396601" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "33d2b55f41a121" + }, + { + "_tag": "ByteArray", + "bytearray": "04fbc6a13bdd" + }, + { + "_tag": "ByteArray", + "bytearray": "92ee" + }, + { + "_tag": "ByteArray", + "bytearray": "fb0af2c3347b9f85c859" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2188634797373650085" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cf" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5789331638117685425" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + ] + } + ] + }, + "cborHex": "d905079f49b613fbbc01fcf92d0905bf1bffffffffffffffef45081ea426aeff9f1bf7ff93257e570feed8669f1b7c96241a62118ce39f4cca703f24500d61b1d9902a891b9a346160810e894e1bcd7b1be1a286b5fdffff1b306f746382344ea64928bfc804476c19a3d8d8669f1b7d0a22ef72cc223c9f1be2df36c54977cccd1b3869a416ef7608af46a7a90630d5df414745fd19117217ffffffd8669f1bc0b1e5681f7bb1ae9fd8669f1b94ec9f7c9f7a34799f4733d2b55f41a1214604fbc6a13bdd4292ee4afb0af2c3347b9f85c8591b1e5f97c09883f4a5ffff41cfd8669f1b5057d673a0ef58b180ff1bfffffffffffffff1ffffff", + "cborBytes": [ + 217, 5, 7, 159, 73, 182, 19, 251, 188, 1, 252, 249, 45, 9, 5, 191, 27, 255, 255, 255, 255, 255, 255, 255, 239, 69, + 8, 30, 164, 38, 174, 255, 159, 27, 247, 255, 147, 37, 126, 87, 15, 238, 216, 102, 159, 27, 124, 150, 36, 26, 98, + 17, 140, 227, 159, 76, 202, 112, 63, 36, 80, 13, 97, 177, 217, 144, 42, 137, 27, 154, 52, 97, 96, 129, 14, 137, + 78, 27, 205, 123, 27, 225, 162, 134, 181, 253, 255, 255, 27, 48, 111, 116, 99, 130, 52, 78, 166, 73, 40, 191, 200, + 4, 71, 108, 25, 163, 216, 216, 102, 159, 27, 125, 10, 34, 239, 114, 204, 34, 60, 159, 27, 226, 223, 54, 197, 73, + 119, 204, 205, 27, 56, 105, 164, 22, 239, 118, 8, 175, 70, 167, 169, 6, 48, 213, 223, 65, 71, 69, 253, 25, 17, + 114, 23, 255, 255, 255, 216, 102, 159, 27, 192, 177, 229, 104, 31, 123, 177, 174, 159, 216, 102, 159, 27, 148, + 236, 159, 124, 159, 122, 52, 121, 159, 71, 51, 210, 181, 95, 65, 161, 33, 70, 4, 251, 198, 161, 59, 221, 66, 146, + 238, 74, 251, 10, 242, 195, 52, 123, 159, 133, 200, 89, 27, 30, 95, 151, 192, 152, 131, 244, 165, 255, 255, 65, + 207, 216, 102, 159, 27, 80, 87, 214, 115, 160, 239, 88, 177, 128, 255, 27, 255, 255, 255, 255, 255, 255, 255, 241, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 245, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5cb751bfde6b66294bad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99f15d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3eeb8b2e5e" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d4ccd1513aa0332a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7491739506939269879" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "21efab299f80323b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "683072374708448532" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14222614913110406913" + } + }, + { + "_tag": "ByteArray", + "bytearray": "759420ec74da004eb78d41" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16fe836a148d44" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ae1575494eb67" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8de7fff24709a2db2bb76471" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15198775146726081958" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "984e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d11d8ed0c36311a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13181786004104030295" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4414565200747700060" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29fbf4a5cb751bfde6b66294bad42a5e24399f15d453eeb8b2e5eff9f48d4ccd1513aa0332ad8669f1b67f801637ce012f79f4821efab299f80323b1b097ac2b4aa612d141bc560e0e8a91e77014b759420ec74da004eb78d41ffffffbf4716fe836a148d44475ae1575494eb674c8de7fff24709a2db2bb764711bd2ece57829a4c5a642984e48d11d8ed0c36311a2419b1bb6ef1c87d7d6285742ab0f1b3d43afa9245e1f5cffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 191, 74, 92, 183, 81, 191, 222, 107, 102, 41, 75, + 173, 66, 165, 226, 67, 153, 241, 93, 69, 62, 235, 139, 46, 94, 255, 159, 72, 212, 204, 209, 81, 58, 160, 51, 42, + 216, 102, 159, 27, 103, 248, 1, 99, 124, 224, 18, 247, 159, 72, 33, 239, 171, 41, 159, 128, 50, 59, 27, 9, 122, + 194, 180, 170, 97, 45, 20, 27, 197, 96, 224, 232, 169, 30, 119, 1, 75, 117, 148, 32, 236, 116, 218, 0, 78, 183, + 141, 65, 255, 255, 255, 191, 71, 22, 254, 131, 106, 20, 141, 68, 71, 90, 225, 87, 84, 148, 235, 103, 76, 141, 231, + 255, 242, 71, 9, 162, 219, 43, 183, 100, 113, 27, 210, 236, 229, 120, 41, 164, 197, 166, 66, 152, 78, 72, 209, 29, + 142, 208, 195, 99, 17, 162, 65, 155, 27, 182, 239, 28, 135, 215, 214, 40, 87, 66, 171, 15, 27, 61, 67, 175, 169, + 36, 94, 31, 92, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 246, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5356013068650211555" + }, + "fields": [] + }, + "cborHex": "d8669f1b4a546182313ee8e380ff", + "cborBytes": [216, 102, 159, 27, 74, 84, 97, 130, 49, 62, 232, 227, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 247, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15281197016785587473" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e50105" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f1bd411b7b938438d1143e50105ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 27, 212, 17, 183, 185, 56, 67, 141, 17, 67, 229, + 1, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 248, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6537403773280644652" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4049137689812641581" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1578883268351614085" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6961" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "21096756679922075" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2215261299243763272" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8a3e497dac137d" + } + ] + }, + "cborHex": "d8669f1b5ab986185bb0ee2c9fd8669f1b38316d468feda72d9f1b15e951f79fe7dc854269611b004af3636fd1d19b1b1ebe306a2a184648ffff80478a3e497dac137dffff", + "cborBytes": [ + 216, 102, 159, 27, 90, 185, 134, 24, 91, 176, 238, 44, 159, 216, 102, 159, 27, 56, 49, 109, 70, 143, 237, 167, 45, + 159, 27, 21, 233, 81, 247, 159, 231, 220, 133, 66, 105, 97, 27, 0, 74, 243, 99, 111, 209, 209, 155, 27, 30, 190, + 48, 106, 42, 24, 70, 72, 255, 255, 128, 71, 138, 62, 73, 125, 172, 19, 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 249, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16212292940278359152" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3d08041a4fd18e152536c529" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15697377525721591388" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12392229664436097550" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f6ee4ffaa2bd524988bf3c" + }, + { + "_tag": "ByteArray", + "bytearray": "8e8826" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "450582124129725173" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2536119915071250238" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1846104358642473648" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b6bb29b5ae3f867ded35ffd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5311583826547680248" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e3f40dd5e98b8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12167913121654263520" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16188582119772421875" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17656048707603840122" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7cc1483c9adeaad7" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1623854567039737285" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ab6c3b8f888db2f920" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1be0fda28863dd64709f4c3d08041a4fd18e152536c529d8669f1bd9d849b0fdd5ee5c9f1babfa0b3913c5920e4bf6ee4ffaa2bd524988bf3c438e8826bf1b0640ca0dfae4aaf51b23321ba0359d9f3e1b199eae22132f5ab04c6b6bb29b5ae3f867ded35ffd1b49b689592815a3f8471e3f40dd5e98b81ba8dd1c840a044ee01be0a965aaca467ef31bf506e2c0f9b8bc7a487cc1483c9adeaad7ffd8669f1b168917200b4c9dc59f49ab6c3b8f888db2f920ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 224, 253, 162, 136, 99, 221, 100, 112, 159, 76, 61, 8, 4, 26, 79, 209, 142, 21, 37, 54, 197, + 41, 216, 102, 159, 27, 217, 216, 73, 176, 253, 213, 238, 92, 159, 27, 171, 250, 11, 57, 19, 197, 146, 14, 75, 246, + 238, 79, 250, 162, 189, 82, 73, 136, 191, 60, 67, 142, 136, 38, 191, 27, 6, 64, 202, 13, 250, 228, 170, 245, 27, + 35, 50, 27, 160, 53, 157, 159, 62, 27, 25, 158, 174, 34, 19, 47, 90, 176, 76, 107, 107, 178, 155, 90, 227, 248, + 103, 222, 211, 95, 253, 27, 73, 182, 137, 89, 40, 21, 163, 248, 71, 30, 63, 64, 221, 94, 152, 184, 27, 168, 221, + 28, 132, 10, 4, 78, 224, 27, 224, 169, 101, 170, 202, 70, 126, 243, 27, 245, 6, 226, 192, 249, 184, 188, 122, 72, + 124, 193, 72, 60, 154, 222, 170, 215, 255, 216, 102, 159, 27, 22, 137, 23, 32, 11, 76, 157, 197, 159, 73, 171, + 108, 59, 143, 136, 141, 178, 249, 32, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 250, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8804682641157220194" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4210" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fe274508d41cd09c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "406568699822299495" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18176198801249653918" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da5edfe3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12889327310714605810" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3073826701516243061" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4eeb52" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3911906417815566541" + } + }, + { + "_tag": "ByteArray", + "bytearray": "003981e276e4fe13b02239" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "46d5" + }, + { + "_tag": "ByteArray", + "bytearray": "7be98205d94b306deb80" + }, + { + "_tag": "ByteArray", + "bytearray": "e396cce19c108329945d132e" + }, + { + "_tag": "ByteArray", + "bytearray": "71ff8a4e" + }, + { + "_tag": "ByteArray", + "bytearray": "8aa3b7" + } + ] + } + ] + } + ] + }, + "cborHex": "d905089f1b7a308436823967629f4242109f48fe274508d41cd09cffd8669f1b05a46c1411b359679f1bfc3ed482135dd49e44da5edfe31bb2e016e604e290f2ffffd8669f1b2aa86d1964fc80759f434eeb521b3649e2292c77b8cd4b003981e276e4fe13b02239ffff9f4246d54a7be98205d94b306deb804ce396cce19c108329945d132e4471ff8a4e438aa3b7ffffff", + "cborBytes": [ + 217, 5, 8, 159, 27, 122, 48, 132, 54, 130, 57, 103, 98, 159, 66, 66, 16, 159, 72, 254, 39, 69, 8, 212, 28, 208, + 156, 255, 216, 102, 159, 27, 5, 164, 108, 20, 17, 179, 89, 103, 159, 27, 252, 62, 212, 130, 19, 93, 212, 158, 68, + 218, 94, 223, 227, 27, 178, 224, 22, 230, 4, 226, 144, 242, 255, 255, 216, 102, 159, 27, 42, 168, 109, 25, 100, + 252, 128, 117, 159, 67, 78, 235, 82, 27, 54, 73, 226, 41, 44, 119, 184, 205, 75, 0, 57, 129, 226, 118, 228, 254, + 19, 176, 34, 57, 255, 255, 159, 66, 70, 213, 74, 123, 233, 130, 5, 217, 75, 48, 109, 235, 128, 76, 227, 150, 204, + 225, 156, 16, 131, 41, 148, 93, 19, 46, 68, 113, 255, 138, 78, 67, 138, 163, 183, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 251, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4335385796799826889" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15046596548543410395" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "782a41879c2b3860e4d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13795261390029710266" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c03b77b5a22bfcff46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ceac8b02e6ed6c7159caf8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc59e3309b5d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3035815914885865131" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15743555620177796165" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17693953538264968217" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de5e8c9ad81e81" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9297311865995386704" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9208753958890098077" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "228cabef81" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69de84a54e00ee13d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6629797e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c82ab2666f3840156f2be52" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13070225402239967861" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb51e88686" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ce83ee2" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87a9fbf1b3c2a62698e870bc91bd0d03fd7328c70db4a782a41879c2b3860e4d11bbf729d24d061e3ba49c03b77b5a22bfcff464bceac8b02e6ed6c7159caf846dc59e3309b5d1b2a21627d7a3fdeabffd905019f1bda7c586c724d5c45d8669f1bf58d8cff188cac199f47de5e8c9ad81e811b8106afe202addf50ffffff9f1b7fcc10ef7f9dcd9dbf411345228cabef814969de84a54e00ee13d5446629797e4c9c82ab2666f3840156f2be521bb562c4c11acce27545eb51e88686443ce83ee2ffffff", + "cborBytes": [ + 216, 122, 159, 191, 27, 60, 42, 98, 105, 142, 135, 11, 201, 27, 208, 208, 63, 215, 50, 140, 112, 219, 74, 120, 42, + 65, 135, 156, 43, 56, 96, 228, 209, 27, 191, 114, 157, 36, 208, 97, 227, 186, 73, 192, 59, 119, 181, 162, 43, 252, + 255, 70, 75, 206, 172, 139, 2, 230, 237, 108, 113, 89, 202, 248, 70, 220, 89, 227, 48, 155, 93, 27, 42, 33, 98, + 125, 122, 63, 222, 171, 255, 217, 5, 1, 159, 27, 218, 124, 88, 108, 114, 77, 92, 69, 216, 102, 159, 27, 245, 141, + 140, 255, 24, 140, 172, 25, 159, 71, 222, 94, 140, 154, 216, 30, 129, 27, 129, 6, 175, 226, 2, 173, 223, 80, 255, + 255, 255, 159, 27, 127, 204, 16, 239, 127, 157, 205, 157, 191, 65, 19, 69, 34, 140, 171, 239, 129, 73, 105, 222, + 132, 165, 78, 0, 238, 19, 213, 68, 102, 41, 121, 126, 76, 156, 130, 171, 38, 102, 243, 132, 1, 86, 242, 190, 82, + 27, 181, 98, 196, 193, 26, 204, 226, 117, 69, 235, 81, 232, 134, 134, 68, 60, 232, 62, 226, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 252, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16683466324708476898" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16782431605133377138" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1be787943ac270c7e29fd8669f1be8e72ca0b3437e7280ffffff", + "cborBytes": [ + 216, 102, 159, 27, 231, 135, 148, 58, 194, 112, 199, 226, 159, 216, 102, 159, 27, 232, 231, 44, 160, 179, 67, 126, + 114, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 253, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1650563025516388051" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5170300332670483802" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f385c294" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5846472639988328798" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37ca3f46" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6672303493225486886" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17743235629114512033" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17089969308897074673" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17917837884465800825" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a122cf09d" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12095447368159545809" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c" + } + ] + }, + "cborHex": "d8669f1b16e7fa539f4c5ed39f9fbf1b47c098c256e87d5a44f385c2941b5122d7e3df8b695e4437ca3f461b5c98c8acfb4d9a261bf63ca2cc076cd2a11bed2bc48a37235df141471bf8a8f29f869ee679451a122cf09dffff1ba7dba94c029549d1411cffff", + "cborBytes": [ + 216, 102, 159, 27, 22, 231, 250, 83, 159, 76, 94, 211, 159, 159, 191, 27, 71, 192, 152, 194, 86, 232, 125, 90, 68, + 243, 133, 194, 148, 27, 81, 34, 215, 227, 223, 139, 105, 94, 68, 55, 202, 63, 70, 27, 92, 152, 200, 172, 251, 77, + 154, 38, 27, 246, 60, 162, 204, 7, 108, 210, 161, 27, 237, 43, 196, 138, 55, 35, 93, 241, 65, 71, 27, 248, 168, + 242, 159, 134, 158, 230, 121, 69, 26, 18, 44, 240, 157, 255, 255, 27, 167, 219, 169, 76, 2, 149, 73, 209, 65, 28, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 254, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16954598819813162908" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8483432263153644498" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16766099321275862089" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2823c42f75" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4272587923386695742" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "682fe2233b58a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16528585105022244646" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b24ab5ea86" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16346471341153218213" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ec" + }, + { + "_tag": "ByteArray", + "bytearray": "a3622ca6f09ccad0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17079624631458743525" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3563510612323990317" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14500782465410957283" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7000649097622239558" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e5f2a1297aa8f43f7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6126188604336692498" + } + } + ] + } + ] + }, + "cborHex": "d8669f1beb4ad5cc1c387f9c9fbf1b75bb34b2395c73d21be8ad26808990cc49452823c42f751b3b4b48144516803e47682fe2233b58a71be5615494b0a9d72645b24ab5ea861be2da5513d48a6ea5ff41ec48a3622ca6f09ccad0d8669f1bed07041c4f1c44e59fd8669f1b3174220588e7fb2d9f1bc93d20d2e8087fe3418f1b61274d4364eeb946ffff49e5f2a1297aa8f43f7c1b55049813e488dd12ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 235, 74, 213, 204, 28, 56, 127, 156, 159, 191, 27, 117, 187, 52, 178, 57, 92, 115, 210, 27, + 232, 173, 38, 128, 137, 144, 204, 73, 69, 40, 35, 196, 47, 117, 27, 59, 75, 72, 20, 69, 22, 128, 62, 71, 104, 47, + 226, 35, 59, 88, 167, 27, 229, 97, 84, 148, 176, 169, 215, 38, 69, 178, 74, 181, 234, 134, 27, 226, 218, 85, 19, + 212, 138, 110, 165, 255, 65, 236, 72, 163, 98, 44, 166, 240, 156, 202, 208, 216, 102, 159, 27, 237, 7, 4, 28, 79, + 28, 68, 229, 159, 216, 102, 159, 27, 49, 116, 34, 5, 136, 231, 251, 45, 159, 27, 201, 61, 32, 210, 232, 8, 127, + 227, 65, 143, 27, 97, 39, 77, 67, 100, 238, 185, 70, 255, 255, 73, 229, 242, 161, 41, 122, 168, 244, 63, 124, 27, + 85, 4, 152, 19, 228, 136, 221, 18, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 255, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12216199137149327229" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1ba988a8641b38177d9fa0ffff", + "cborBytes": [216, 102, 159, 27, 169, 136, 168, 100, 27, 56, 23, 125, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 256, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11897652752811206374" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00fd" + } + ] + }, + "cborHex": "d8669f1ba51cf4246842a6e69f4200fdffff", + "cborBytes": [216, 102, 159, 27, 165, 28, 244, 36, 104, 66, 166, 230, 159, 66, 0, 253, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 257, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16185130428314254531" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3787628611356762215" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "63" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10598125135936952270" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17400105582721060787" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10968178192046629663" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6891849176846425267" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11413479015785912304" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83194883" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14910299357795454305" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c2c" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1be09d225f3f097cc39f801b34905c278106a0679f4163bf1b93141aa8eca917ce1bf17997d678614fb31b9836cbf42a20231f1b5fa4c44fcf7fdcb31b9e64d2b1934b57f044831948831bceec06448c220d61425c2cff80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 224, 157, 34, 95, 63, 9, 124, 195, 159, 128, 27, 52, 144, 92, 39, 129, 6, 160, 103, 159, 65, + 99, 191, 27, 147, 20, 26, 168, 236, 169, 23, 206, 27, 241, 121, 151, 214, 120, 97, 79, 179, 27, 152, 54, 203, 244, + 42, 32, 35, 31, 27, 95, 164, 196, 79, 207, 127, 220, 179, 27, 158, 100, 210, 177, 147, 75, 87, 240, 68, 131, 25, + 72, 131, 27, 206, 236, 6, 68, 140, 34, 13, 97, 66, 92, 44, 255, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 258, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "233462605727580821" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "781429340225253439" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc03062afcf9" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10752323935637332064" + } + } + ] + }, + "cborHex": "d8669f1b033d6d00c2bac2959fbf1b0ad831d84131b03f46fc03062afcf9ff1b9537eda6b597e060ffff", + "cborBytes": [ + 216, 102, 159, 27, 3, 61, 109, 0, 194, 186, 194, 149, 159, 191, 27, 10, 216, 49, 216, 65, 49, 176, 63, 70, 252, 3, + 6, 42, 252, 249, 255, 27, 149, 55, 237, 166, 181, 151, 224, 96, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 259, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7598343305656943794" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13108571715260050830" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "28ece452885ebe954c5d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9135049792301426661" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10772525270588488665" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6482860526606269818" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12100758091718796065" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d900a94b5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0101fb" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6972bcfa8f2644b29fd905099f13d8669f1bb5eb0085d8ceed8e9f4a28ece452885ebe954c5d1b7ec63762f3a1e7e51b957fb2a887587bd9ffff801b59f7bf4d20c4bd7affbf1ba7ee875f31d52321456d900a94b51bfffffffffffffff0430101fbffffff", + "cborBytes": [ + 216, 102, 159, 27, 105, 114, 188, 250, 143, 38, 68, 178, 159, 217, 5, 9, 159, 19, 216, 102, 159, 27, 181, 235, 0, + 133, 216, 206, 237, 142, 159, 74, 40, 236, 228, 82, 136, 94, 190, 149, 76, 93, 27, 126, 198, 55, 98, 243, 161, + 231, 229, 27, 149, 127, 178, 168, 135, 88, 123, 217, 255, 255, 128, 27, 89, 247, 191, 77, 32, 196, 189, 122, 255, + 191, 27, 167, 238, 135, 95, 49, 213, 35, 33, 69, 109, 144, 10, 148, 181, 27, 255, 255, 255, 255, 255, 255, 255, + 240, 67, 1, 1, 251, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 260, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9423297056741174638" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "373187817892773310" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2537791465805940677" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11011485983342046945" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17268309412421316489" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4882891221466563521" + } + }, + { + "_tag": "ByteArray", + "bytearray": "efc8a5fa45f0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16828726751666004195" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8849347904712797249" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15398914302385504731" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7076774248907459504" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b82c646bf100aad6e9fa01b052dd457d8007dbe1b23380be4716187c5d8669f1b98d0a829164baee19fd8669f1befa55beb4ee82f899f1b43c383b1fc6343c146efc8a5fa45f01be98ba5d1772a60e3ffff1b7acf33089240ec41ffffd8669f1bd5b3eef8985ec1db9f1b6235c0af5dc2cbb0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 130, 198, 70, 191, 16, 10, 173, 110, 159, 160, 27, 5, 45, 212, 87, 216, 0, 125, 190, 27, 35, + 56, 11, 228, 113, 97, 135, 197, 216, 102, 159, 27, 152, 208, 168, 41, 22, 75, 174, 225, 159, 216, 102, 159, 27, + 239, 165, 91, 235, 78, 232, 47, 137, 159, 27, 67, 195, 131, 177, 252, 99, 67, 193, 70, 239, 200, 165, 250, 69, + 240, 27, 233, 139, 165, 209, 119, 42, 96, 227, 255, 255, 27, 122, 207, 51, 8, 146, 64, 236, 65, 255, 255, 216, + 102, 159, 27, 213, 179, 238, 248, 152, 94, 193, 219, 159, 27, 98, 53, 192, 175, 93, 194, 203, 176, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 261, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3135ce97051c00fd68" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e04fab3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f87c6d03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84d78af8dbb7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7043115514217948178" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9584" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14134579168836362497" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9478905301559878945" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "903390c6a4" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d12375" + } + ] + }, + "cborHex": "d905089fbf420a06493135ce97051c00fd68441e04fab308414644f87c6d034684d78af8dbb71b61be2c3e8100e4124295841bc4281cdda820a101ffbf1b838bd6267f0b252145903390c6a4ff1bffffffffffffffee43d12375ff", + "cborBytes": [ + 217, 5, 8, 159, 191, 66, 10, 6, 73, 49, 53, 206, 151, 5, 28, 0, 253, 104, 68, 30, 4, 250, 179, 8, 65, 70, 68, 248, + 124, 109, 3, 70, 132, 215, 138, 248, 219, 183, 27, 97, 190, 44, 62, 129, 0, 228, 18, 66, 149, 132, 27, 196, 40, + 28, 221, 168, 32, 161, 1, 255, 191, 27, 131, 139, 214, 38, 127, 11, 37, 33, 69, 144, 51, 144, 198, 164, 255, 27, + 255, 255, 255, 255, 255, 255, 255, 238, 67, 209, 35, 117, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 262, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10647808626207531552" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6000470933442178556" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1851471307186400214" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5715415699782530161" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ac678a4750e7847791" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e2d10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8587814058964450985" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40c5f38c983cc6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43b64f2c9473f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64f7f943449067" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10364580384244524393" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97a02b21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13530010510890522223" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b96f6660" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8399120722583917129" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d59b85e97bff2e8dda" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73a983bb0b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "484f3991351cb72cf4" + }, + { + "_tag": "ByteArray", + "bytearray": "b03f72" + }, + { + "_tag": "ByteArray", + "bytearray": "605a34b22649ca81f1b3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4884498811840493589" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8fe153" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1934463662041660180" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1268771553362897390" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2817e019653305" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4317608441646819980" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28a76c4ee440" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16183168406574020196" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "277ee4da" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2690173760751189914" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8483184246765553569" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4618921748048423848" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a55da715ea9595063f3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5736879241194639557" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8716844664549869976" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6604348373016487112" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13329409774750172416" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14351233322015989272" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f41d7da9aa64c2c50ad9c9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16393587629150688710" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5886937819224458253" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6535903621802902353" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9876665737187711926" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f84c1177" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12635778841014125184" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7fdc313f2b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14602722516203516386" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14932897572304578285" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15199066002504240622" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b73f72f26e9fd6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3306192235521748830" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17606346564771524759" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b93c49d87f170a2209f1b5345f485a8e0adfcd8669f1b19b1bf5828ac6bd69fd8669f1b4f513c4c213a74719f49ac678a4750e7847791ffffffff9fbf432e2d101b772e0b62edae7ea94740c5f38c983cc64743b64f2c9473f34764f7f9434490671b8fd662f210e065694497a02b211bbbc440dfe4ee566f44b96f66601b748fabcbf73c924949d59b85e97bff2e8dda4573a983bb0bff9f49484f3991351cb72cf443b03f724a605a34b22649ca81f1b31b43c939ca4991f815438fe153ffbf1b1ad898738ee4fb141b119b95016b50e9ee472817e0196533051b3beb3a0083962a8c4628a76c4ee4401be09629ec762b3664ff44277ee4daffbf1b25556ac841a6bf9a1b75ba532068a687a11b4019b4db95c0aba84a5a55da715ea9595063f31b4f9d7d464ab810c51b78f87409e0c109981b5ba75bda9a93a4c81bb8fb9391619a85001bc729d2ab97831e184bf41d7da9aa64c2c50ad9c9ffd8669f1be381b9177dc3d5c69fbf1b51b29ac199afc40d1b5ab431b71fc043511b8910f728be585bb644f84c11771baf5b4de89f0b4280457fdc313f2b1bcaa74ac28be8b1e21bcf3c4f396081e6edff1bd2edee004cfb4dee9f47b73f72f26e9fd61b2de1f4523d6daf5e1bf4564eeb11a03097ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 147, 196, 157, 135, 241, 112, 162, 32, 159, 27, 83, 69, 244, 133, 168, 224, 173, 252, 216, 102, + 159, 27, 25, 177, 191, 88, 40, 172, 107, 214, 159, 216, 102, 159, 27, 79, 81, 60, 76, 33, 58, 116, 113, 159, 73, + 172, 103, 138, 71, 80, 231, 132, 119, 145, 255, 255, 255, 255, 159, 191, 67, 46, 45, 16, 27, 119, 46, 11, 98, 237, + 174, 126, 169, 71, 64, 197, 243, 140, 152, 60, 198, 71, 67, 182, 79, 44, 148, 115, 243, 71, 100, 247, 249, 67, 68, + 144, 103, 27, 143, 214, 98, 242, 16, 224, 101, 105, 68, 151, 160, 43, 33, 27, 187, 196, 64, 223, 228, 238, 86, + 111, 68, 185, 111, 102, 96, 27, 116, 143, 171, 203, 247, 60, 146, 73, 73, 213, 155, 133, 233, 123, 255, 46, 141, + 218, 69, 115, 169, 131, 187, 11, 255, 159, 73, 72, 79, 57, 145, 53, 28, 183, 44, 244, 67, 176, 63, 114, 74, 96, + 90, 52, 178, 38, 73, 202, 129, 241, 179, 27, 67, 201, 57, 202, 73, 145, 248, 21, 67, 143, 225, 83, 255, 191, 27, + 26, 216, 152, 115, 142, 228, 251, 20, 27, 17, 155, 149, 1, 107, 80, 233, 238, 71, 40, 23, 224, 25, 101, 51, 5, 27, + 59, 235, 58, 0, 131, 150, 42, 140, 70, 40, 167, 108, 78, 228, 64, 27, 224, 150, 41, 236, 118, 43, 54, 100, 255, + 68, 39, 126, 228, 218, 255, 191, 27, 37, 85, 106, 200, 65, 166, 191, 154, 27, 117, 186, 83, 32, 104, 166, 135, + 161, 27, 64, 25, 180, 219, 149, 192, 171, 168, 74, 90, 85, 218, 113, 94, 169, 89, 80, 99, 243, 27, 79, 157, 125, + 70, 74, 184, 16, 197, 27, 120, 248, 116, 9, 224, 193, 9, 152, 27, 91, 167, 91, 218, 154, 147, 164, 200, 27, 184, + 251, 147, 145, 97, 154, 133, 0, 27, 199, 41, 210, 171, 151, 131, 30, 24, 75, 244, 29, 125, 169, 170, 100, 194, + 197, 10, 217, 201, 255, 216, 102, 159, 27, 227, 129, 185, 23, 125, 195, 213, 198, 159, 191, 27, 81, 178, 154, 193, + 153, 175, 196, 13, 27, 90, 180, 49, 183, 31, 192, 67, 81, 27, 137, 16, 247, 40, 190, 88, 91, 182, 68, 248, 76, 17, + 119, 27, 175, 91, 77, 232, 159, 11, 66, 128, 69, 127, 220, 49, 63, 43, 27, 202, 167, 74, 194, 139, 232, 177, 226, + 27, 207, 60, 79, 57, 96, 129, 230, 237, 255, 27, 210, 237, 238, 0, 76, 251, 77, 238, 159, 71, 183, 63, 114, 242, + 110, 159, 214, 27, 45, 225, 244, 82, 61, 109, 175, 94, 27, 244, 86, 78, 235, 17, 160, 48, 151, 255, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 263, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11380977031204120163" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f83327e9ab83aee53c75a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11d608" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11947458458019685027" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6379242640946534215" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15980892902891753558" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00b8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1001ba95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be9597cf553955d366ceb8f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d61946ca9e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "749b2424" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31cd59ebdb9a03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5288675976822560346" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bbe8d146d43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a955dc5ac5a57d93e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8881add4a5aec47e46646fe5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04ad6f6367ffd0a622" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a80f8b5c52f9ad803ce52a29" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17008022131427641327" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14654197252267289032" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17759893275016745678" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15060845075725375809" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f201" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9577246876413962284" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9885665511398611398" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + } + ] + }, + "cborHex": "d905089fd87c9fbf1b9df15a4f95cd26634bf83327e9ab83aee53c75a24311d6081ba5cde62aceffe2a3ffd8669f1b58879f621da4974780ff1bddc7896cbe6c90564200b8bf441001ba954cbe9597cf553955d366ceb8f3462d61946ca9e144749b24244731cd59ebdb9a031b496526c7c2a6965a466bbe8d146d43495a955dc5ac5a57d93e4c8881add4a5aec47e46646fe54904ad6f6367ffd0a62241bc4ca80f8b5c52f9ad803ce52a29ffff1bec08a20423ba07efd8669f1bcb5e2ac279e5a9c89f1bf677d0d67238d2ced8669f1bd102deccf3cd594180ff42f201ffffd8669f1b84e9374aaadfa82c9f1b8930f067f73e99c613ffffff", + "cborBytes": [ + 217, 5, 8, 159, 216, 124, 159, 191, 27, 157, 241, 90, 79, 149, 205, 38, 99, 75, 248, 51, 39, 233, 171, 131, 174, + 229, 60, 117, 162, 67, 17, 214, 8, 27, 165, 205, 230, 42, 206, 255, 226, 163, 255, 216, 102, 159, 27, 88, 135, + 159, 98, 29, 164, 151, 71, 128, 255, 27, 221, 199, 137, 108, 190, 108, 144, 86, 66, 0, 184, 191, 68, 16, 1, 186, + 149, 76, 190, 149, 151, 207, 85, 57, 85, 211, 102, 206, 184, 243, 70, 45, 97, 148, 108, 169, 225, 68, 116, 155, + 36, 36, 71, 49, 205, 89, 235, 219, 154, 3, 27, 73, 101, 38, 199, 194, 166, 150, 90, 70, 107, 190, 141, 20, 109, + 67, 73, 90, 149, 93, 197, 172, 90, 87, 217, 62, 76, 136, 129, 173, 212, 165, 174, 196, 126, 70, 100, 111, 229, 73, + 4, 173, 111, 99, 103, 255, 208, 166, 34, 65, 188, 76, 168, 15, 139, 92, 82, 249, 173, 128, 60, 229, 42, 41, 255, + 255, 27, 236, 8, 162, 4, 35, 186, 7, 239, 216, 102, 159, 27, 203, 94, 42, 194, 121, 229, 169, 200, 159, 27, 246, + 119, 208, 214, 114, 56, 210, 206, 216, 102, 159, 27, 209, 2, 222, 204, 243, 205, 89, 65, 128, 255, 66, 242, 1, + 255, 255, 216, 102, 159, 27, 132, 233, 55, 74, 170, 223, 168, 44, 159, 27, 137, 48, 240, 103, 247, 62, 153, 198, + 19, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 264, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13345370796469689945" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1031223859" + }, + { + "_tag": "ByteArray", + "bytearray": "46cef252b13f50fe0ab649fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8465477317305758325" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5885459704708512042" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6602031057112215c5" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7c48138203d4024c26d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15813657612714051236" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13087311954545722995" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5469081935777640152" + } + }, + { + "_tag": "ByteArray", + "bytearray": "625a0c15104f002a" + }, + { + "_tag": "ByteArray", + "bytearray": "b7d6401b056121" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2806223779675017802" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12749568681628676445" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16445127999543411386" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e1bb18be0b2a1ed09c70" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14047392234181260093" + } + }, + { + "_tag": "ByteArray", + "bytearray": "727718f4" + } + ] + } + ] + } + ] + }, + "cborHex": "d87c9fd8669f1bb934480857729e599f9f4510312238594c46cef252b13f50fe0ab649fb1b757b6ac4a022f2751b51ad5a6b3f06b92a496602031057112215c5ffbf4ae7c48138203d4024c26d1bdb7565d07d7906a4ff9f1bb59f78e2136bc6731b4be6150b4d882ed848625a0c15104f002a47b7d6401b0561211b26f1b5a8dbc8924affffffd8669f1bb0ef912a73ec315d9f80d8669f1be438d4c91a9d82ba9f4ae1bb18be0b2a1ed09c701bc2f25ccf8af4733d44727718f4ffffffffff", + "cborBytes": [ + 216, 124, 159, 216, 102, 159, 27, 185, 52, 72, 8, 87, 114, 158, 89, 159, 159, 69, 16, 49, 34, 56, 89, 76, 70, 206, + 242, 82, 177, 63, 80, 254, 10, 182, 73, 251, 27, 117, 123, 106, 196, 160, 34, 242, 117, 27, 81, 173, 90, 107, 63, + 6, 185, 42, 73, 102, 2, 3, 16, 87, 17, 34, 21, 197, 255, 191, 74, 231, 196, 129, 56, 32, 61, 64, 36, 194, 109, 27, + 219, 117, 101, 208, 125, 121, 6, 164, 255, 159, 27, 181, 159, 120, 226, 19, 107, 198, 115, 27, 75, 230, 21, 11, + 77, 136, 46, 216, 72, 98, 90, 12, 21, 16, 79, 0, 42, 71, 183, 214, 64, 27, 5, 97, 33, 27, 38, 241, 181, 168, 219, + 200, 146, 74, 255, 255, 255, 216, 102, 159, 27, 176, 239, 145, 42, 115, 236, 49, 93, 159, 128, 216, 102, 159, 27, + 228, 56, 212, 201, 26, 157, 130, 186, 159, 74, 225, 187, 24, 190, 11, 42, 30, 208, 156, 112, 27, 194, 242, 92, + 207, 138, 244, 115, 61, 68, 114, 119, 24, 244, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 265, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0300" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f420300ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 66, 3, 0, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 266, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14523814784774169058" + }, + "fields": [] + }, + "cborHex": "d8669f1bc98ef498a607e1e280ff", + "cborBytes": [216, 102, 159, 27, 201, 142, 244, 152, 166, 7, 225, 226, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 267, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10864613381985902375" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "533104612172274248" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "56f797" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14837571184155426427" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78fc02c71f32563f4f95f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb7d89528c7fcd97" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d94f09763a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "40a2d717f0ba" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2626843974286695634" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4812775263742509333" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11103841900209934439" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7173237797698214912" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9773835670239979270" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7850567688009576886" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b96c6dc4ec7399f279f1b0765f7d1fca69a48bf4356f7971bcde9a4611127fe7b4b78fc02c71f32563f4f95f848bb7d89528c7fcd9745d94f09763a4157ff4640a2d717f0ba9f1b24746cad4fbbdcd2d8669f1b42ca699a6b28c1159f1b9a18c560a81c90671b638c75c585351c001b87a3a3c211b227061b6cf2d1b7d8f871b6ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 150, 198, 220, 78, 199, 57, 159, 39, 159, 27, 7, 101, 247, 209, 252, 166, 154, 72, 191, 67, 86, + 247, 151, 27, 205, 233, 164, 97, 17, 39, 254, 123, 75, 120, 252, 2, 199, 31, 50, 86, 63, 79, 149, 248, 72, 187, + 125, 137, 82, 140, 127, 205, 151, 69, 217, 79, 9, 118, 58, 65, 87, 255, 70, 64, 162, 215, 23, 240, 186, 159, 27, + 36, 116, 108, 173, 79, 187, 220, 210, 216, 102, 159, 27, 66, 202, 105, 154, 107, 40, 193, 21, 159, 27, 154, 24, + 197, 96, 168, 28, 144, 103, 27, 99, 140, 117, 197, 133, 53, 28, 0, 27, 135, 163, 163, 194, 17, 178, 39, 6, 27, + 108, 242, 209, 183, 216, 248, 113, 182, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 268, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14856821395932564735" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5431187043134757592" + } + } + ] + }, + "cborHex": "d8669f1bce2e085843fbccff9f1b4b5f73d70ec05ad8ffff", + "cborBytes": [ + 216, 102, 159, 27, 206, 46, 8, 88, 67, 251, 204, 255, 159, 27, 75, 95, 115, 215, 14, 192, 90, 216, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 269, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "94669109642075404" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ba7f9be67cb4137d6951" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9fd8669f1b0150550dbb6b1d0c9fa04aba7f9be67cb4137d695180ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 216, 102, 159, 27, 1, 80, 85, 13, 187, 107, 29, + 12, 159, 160, 74, 186, 127, 155, 230, 124, 180, 19, 125, 105, 81, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 270, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12738056986536735586" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f16a6425a330d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "912237923908231438" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17269588264166611866" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "30" + }, + { + "_tag": "ByteArray", + "bytearray": "a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18114923758040807017" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "51058d0790009e22fe" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2079239552379391098" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17186622285299399998" + } + } + ] + }, + "cborHex": "d8669f1bb0c6ab57133473629fd8669f1bfffffffffffffff49fbf479f16a6425a330d1b0ca8eb8efd30a10eff1befa9e7072ee7db9a9f413041a81bfb65232e534e7669ff4951058d0790009e22feffffbf0b0d1b1cdaf15b4a840c7a1bfffffffffffffff8ff1bee8325e8ec153d3effff", + "cborBytes": [ + 216, 102, 159, 27, 176, 198, 171, 87, 19, 52, 115, 98, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 244, 159, 191, 71, 159, 22, 166, 66, 90, 51, 13, 27, 12, 168, 235, 142, 253, 48, 161, 14, 255, 27, 239, 169, 231, + 7, 46, 231, 219, 154, 159, 65, 48, 65, 168, 27, 251, 101, 35, 46, 83, 78, 118, 105, 255, 73, 81, 5, 141, 7, 144, + 0, 158, 34, 254, 255, 255, 191, 11, 13, 27, 28, 218, 241, 91, 74, 132, 12, 122, 27, 255, 255, 255, 255, 255, 255, + 255, 248, 255, 27, 238, 131, 37, 232, 236, 21, 61, 62, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 271, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2240413102325599126" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7204091875735068014" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7809969392882438258" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04aa9e2076b1672f42" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1245592709276094229" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b1f178bd8aa3f8b969fd8669f1b63fa13645e775d6e80ff1b6c6295c8a96e50724904aa9e2076b1672f42d8669f1b11493bf83b37cf159fa0a0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 31, 23, 139, 216, 170, 63, 139, 150, 159, 216, 102, 159, 27, 99, 250, 19, 100, 94, 119, 93, + 110, 128, 255, 27, 108, 98, 149, 200, 169, 110, 80, 114, 73, 4, 170, 158, 32, 118, 177, 103, 47, 66, 216, 102, + 159, 27, 17, 73, 59, 248, 59, 55, 207, 21, 159, 160, 160, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 272, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9702544524932856853" + }, + "fields": [] + }, + "cborHex": "d8669f1b86a65cd6d208bc1580ff", + "cborBytes": [216, 102, 159, 27, 134, 166, 92, 214, 210, 8, 188, 21, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 273, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1405652266853412979" + }, + "fields": [] + }, + "cborHex": "d8669f1b1381e14a0b85307380ff", + "cborBytes": [216, 102, 159, 27, 19, 129, 225, 74, 11, 133, 48, 115, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 274, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [] + }, + "cborHex": "d9050a80", + "cborBytes": [217, 5, 10, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 275, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15559789709056477577" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1a246c78c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3181569631983014412" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e851bed4ee0ae01f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5553931771181029499" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f14d0a359" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10848234545726539167" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7479390288708920801" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16484340886363888183" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4577418772998169009" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17698716796866311827" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4078681654393600294" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17068721243245689545" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13410555567001062081" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5509997345424838045" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8820993843572141413" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11c1415bc10a6d23de42d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11013125359419773021" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca30325c6948b4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17258880389398421723" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbce8ae4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11406455131484340152" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3fc675a33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e650b238" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb88e649f158f69d5b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4707997498078008159" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3303486330079808277" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4792753238127127710" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050c9fd9050b80d8669f1bd7ef7a4d141709899fbf45e1a246c78c1b2c2734b93e84920cff48e851bed4ee0ae01fbf1b4d1387851800587b451f14d0a359ffffffd9050d9fbf1b968cabd7ca26c59f1b67cc21d70f0065e11be4c424b2c82ada371b3f86421f30c2a1b1ff1bf59e7927a974b6939f1b389a635ada0879261bece0478969d2bac91bba1bdd3c6bbc4ac11b4c77716477648d9d1b7a6a772a44066d65ffbf4b11c1415bc10a6d23de42d31b98d67b2a130fd05d414f47ca30325c6948b4418e1bef83dc45cf0c60db44bbce8ae41b9e4bde82128e3fb845c3fc675a3344e650b23849fb88e649f158f69d5b1b41562ac7cc5e135fff9f1b2dd8575088c40b151b428347ad4eabac9effffff", + "cborBytes": [ + 217, 5, 12, 159, 217, 5, 11, 128, 216, 102, 159, 27, 215, 239, 122, 77, 20, 23, 9, 137, 159, 191, 69, 225, 162, + 70, 199, 140, 27, 44, 39, 52, 185, 62, 132, 146, 12, 255, 72, 232, 81, 190, 212, 238, 10, 224, 31, 191, 27, 77, + 19, 135, 133, 24, 0, 88, 123, 69, 31, 20, 208, 163, 89, 255, 255, 255, 217, 5, 13, 159, 191, 27, 150, 140, 171, + 215, 202, 38, 197, 159, 27, 103, 204, 33, 215, 15, 0, 101, 225, 27, 228, 196, 36, 178, 200, 42, 218, 55, 27, 63, + 134, 66, 31, 48, 194, 161, 177, 255, 27, 245, 158, 121, 39, 169, 116, 182, 147, 159, 27, 56, 154, 99, 90, 218, 8, + 121, 38, 27, 236, 224, 71, 137, 105, 210, 186, 201, 27, 186, 27, 221, 60, 107, 188, 74, 193, 27, 76, 119, 113, + 100, 119, 100, 141, 157, 27, 122, 106, 119, 42, 68, 6, 109, 101, 255, 191, 75, 17, 193, 65, 91, 193, 10, 109, 35, + 222, 66, 211, 27, 152, 214, 123, 42, 19, 15, 208, 93, 65, 79, 71, 202, 48, 50, 92, 105, 72, 180, 65, 142, 27, 239, + 131, 220, 69, 207, 12, 96, 219, 68, 187, 206, 138, 228, 27, 158, 75, 222, 130, 18, 142, 63, 184, 69, 195, 252, + 103, 90, 51, 68, 230, 80, 178, 56, 73, 251, 136, 230, 73, 241, 88, 246, 157, 91, 27, 65, 86, 42, 199, 204, 94, 19, + 95, 255, 159, 27, 45, 216, 87, 80, 136, 196, 11, 21, 27, 66, 131, 71, 173, 78, 171, 172, 158, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 276, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1362df0b4d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d29a98ef3078" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d92ec19cd4b7f6830aaa6132" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa53c8fd3a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df611d1a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17038143402193666598" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "00026f0202d60366ff9e02fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6490628134271242501" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10624720029689132071" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8430432918906519134" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce386bbffda4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11383733366282794340" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5553362633970828523" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13084542286350612467" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15806441675815526051" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13818728549887657675" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "623fd8f618c2ad19165320" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79fbf451362df0b4d46d29a98ef30784cd92ec19cd4b7f6830aaa613245aa53c8fd3a44df611d1a1bec73a526ffeb4226ff4c00026f0202d60366ff9e02fc03bf1b5a1357e63864d1051b93729693279934271b74feea12ca2ebe5e46ce386bbffda41b9dfb252edb0c35641b4d1181e482c244eb1bb595a1e2728177f31bdb5bc2f541ea1ea31bbfc5fc66bf9a46cb4b623fd8f618c2ad19165320ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 191, 69, 19, 98, 223, 11, 77, 70, 210, 154, 152, + 239, 48, 120, 76, 217, 46, 193, 156, 212, 183, 246, 131, 10, 170, 97, 50, 69, 170, 83, 200, 253, 58, 68, 223, 97, + 29, 26, 27, 236, 115, 165, 38, 255, 235, 66, 38, 255, 76, 0, 2, 111, 2, 2, 214, 3, 102, 255, 158, 2, 252, 3, 191, + 27, 90, 19, 87, 230, 56, 100, 209, 5, 27, 147, 114, 150, 147, 39, 153, 52, 39, 27, 116, 254, 234, 18, 202, 46, + 190, 94, 70, 206, 56, 107, 191, 253, 164, 27, 157, 251, 37, 46, 219, 12, 53, 100, 27, 77, 17, 129, 228, 130, 194, + 68, 235, 27, 181, 149, 161, 226, 114, 129, 119, 243, 27, 219, 91, 194, 245, 65, 234, 30, 163, 27, 191, 197, 252, + 102, 191, 154, 70, 203, 75, 98, 63, 216, 246, 24, 194, 173, 25, 22, 83, 32, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 277, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15250364366655155525" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3195270927499232243" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "919e49b2d927" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5023773088474804032" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a828" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16252294866337125720" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c77878725389de70ec874003" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd1fe8" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7052373923813333260" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8217906653313288034" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15022251603143321672" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "813784563584105279" + } + }, + { + "_tag": "ByteArray", + "bytearray": "10" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2554301928604044489" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "251758264446358245" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12987411262425366323" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5701982273928273185" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17664890177696221188" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14612636045510308723" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4409213353790595236" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8701521949072484592" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ce6309647866c0fcc0c1a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13671491592320438886" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7888908033773940671" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc19de6f1958f453" + }, + { + "_tag": "ByteArray", + "bytearray": "c1454da32c21affe" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10818064307663295385" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10042761462949455231" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cbb731c1cf657c00adb159" + }, + { + "_tag": "ByteArray", + "bytearray": "00d6ecab51" + }, + { + "_tag": "ByteArray", + "bytearray": "b2b83037d6292cd97f8ace70" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12608497810541364747" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6622813989404671160" + } + } + ] + }, + "cborHex": "d8669f1bd3a42d9771c16d459f1b2c57e1fab2b983f39fbf46919e49b2d9271b45b80701c2b52f4042a8281be18bc01294edd5584cc77878725389de70ec87400343bd1fe8ff1b61df10b7f81f190cd8669f1b720bde8f940ec7629f1bd079c23de3e668481b0b4b24bfbc207b3f4110ffffd8669f1b2372b4121f8a0cc980ffffd8669f1b037e6ccec19812e59f9f1bb43c8dbba0c57f331b4f2182aaf1119d211bf5264c0625dec8041bcaca830ff4b5f373ff801b3d30ac2f2b98e0a4d8669f1b78c2041c2bbae8f09f4bce6309647866c0fcc0c1a81bbdbae52b25ffd2661b6d7b080f3ad22fbf48cc19de6f1958f45348c1454da32c21affeffffd8669f1b96217c2bd79a53999f1b8b5f0e577b15a57f4bcbb731c1cf657c00adb1594500d6ecab514cb2b83037d6292cd97f8ace701baefa61f4bc9bc60bffffffff1b5be8f63bf3f3fcb8ffff", + "cborBytes": [ + 216, 102, 159, 27, 211, 164, 45, 151, 113, 193, 109, 69, 159, 27, 44, 87, 225, 250, 178, 185, 131, 243, 159, 191, + 70, 145, 158, 73, 178, 217, 39, 27, 69, 184, 7, 1, 194, 181, 47, 64, 66, 168, 40, 27, 225, 139, 192, 18, 148, 237, + 213, 88, 76, 199, 120, 120, 114, 83, 137, 222, 112, 236, 135, 64, 3, 67, 189, 31, 232, 255, 27, 97, 223, 16, 183, + 248, 31, 25, 12, 216, 102, 159, 27, 114, 11, 222, 143, 148, 14, 199, 98, 159, 27, 208, 121, 194, 61, 227, 230, + 104, 72, 27, 11, 75, 36, 191, 188, 32, 123, 63, 65, 16, 255, 255, 216, 102, 159, 27, 35, 114, 180, 18, 31, 138, + 12, 201, 128, 255, 255, 216, 102, 159, 27, 3, 126, 108, 206, 193, 152, 18, 229, 159, 159, 27, 180, 60, 141, 187, + 160, 197, 127, 51, 27, 79, 33, 130, 170, 241, 17, 157, 33, 27, 245, 38, 76, 6, 37, 222, 200, 4, 27, 202, 202, 131, + 15, 244, 181, 243, 115, 255, 128, 27, 61, 48, 172, 47, 43, 152, 224, 164, 216, 102, 159, 27, 120, 194, 4, 28, 43, + 186, 232, 240, 159, 75, 206, 99, 9, 100, 120, 102, 192, 252, 192, 193, 168, 27, 189, 186, 229, 43, 37, 255, 210, + 102, 27, 109, 123, 8, 15, 58, 210, 47, 191, 72, 204, 25, 222, 111, 25, 88, 244, 83, 72, 193, 69, 77, 163, 44, 33, + 175, 254, 255, 255, 216, 102, 159, 27, 150, 33, 124, 43, 215, 154, 83, 153, 159, 27, 139, 95, 14, 87, 123, 21, + 165, 127, 75, 203, 183, 49, 193, 207, 101, 124, 0, 173, 177, 89, 69, 0, 214, 236, 171, 81, 76, 178, 184, 48, 55, + 214, 41, 44, 217, 127, 138, 206, 112, 27, 174, 250, 97, 244, 188, 155, 198, 11, 255, 255, 255, 255, 27, 91, 232, + 246, 59, 243, 243, 252, 184, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 278, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18237937113714868826" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15726539440253656460" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "292596736152564534" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10076001775369801953" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3225079193682639654" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17208686627441475160" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16863512198989697646" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b2a75cae4653f14524e54f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13217214881309348854" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b578" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8660169747565022053" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4958077377987688862" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9742669715028669895" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905019f9f416d1bfd1a2b2d1ae3425aff1bda3fe44c527d5d8c1b040f832e68cff336d8669f1b8bd5263ad11f50e19f1b2cc1c8707ff4fb26d8669f1beed1894fe7a9fe5880ff9f1bea073aff8e3f526e4bb2a75cae4653f14524e54f1bb76cfae8207353f642b5781b782f1a807a328b65ff80d8669f1b44cea11b33db399e9f1b8734ea7ca83d75c7ffffffffff", + "cborBytes": [ + 217, 5, 1, 159, 159, 65, 109, 27, 253, 26, 43, 45, 26, 227, 66, 90, 255, 27, 218, 63, 228, 76, 82, 125, 93, 140, + 27, 4, 15, 131, 46, 104, 207, 243, 54, 216, 102, 159, 27, 139, 213, 38, 58, 209, 31, 80, 225, 159, 27, 44, 193, + 200, 112, 127, 244, 251, 38, 216, 102, 159, 27, 238, 209, 137, 79, 231, 169, 254, 88, 128, 255, 159, 27, 234, 7, + 58, 255, 142, 63, 82, 110, 75, 178, 167, 92, 174, 70, 83, 241, 69, 36, 229, 79, 27, 183, 108, 250, 232, 32, 115, + 83, 246, 66, 181, 120, 27, 120, 47, 26, 128, 122, 50, 139, 101, 255, 128, 216, 102, 159, 27, 68, 206, 161, 27, 51, + 219, 57, 158, 159, 27, 135, 52, 234, 124, 168, 61, 117, 199, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 279, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1747920732183044391" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19f4c986c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd47ea7884ab93993c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61e2b7204b9e2655f1cc3ecd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14020754397945720426" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88ed25a4865a02f77f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0139" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe4c4d20f544c2641454be84" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1847773804909276080" + } + } + } + ] + } + ] + }, + "cborHex": "d905039fa09fd8669f1b1841dca5214fa12780ffd87d80ff00bf4519f4c986c649dd47ea7884ab93993c4c61e2b7204b9e2655f1cc3ecd1bc293b9d6fc8cee6a4988ed25a4865a02f77f4201394cfe4c4d20f544c2641454be841b19a49c7c52e3abb0ffff", + "cborBytes": [ + 217, 5, 3, 159, 160, 159, 216, 102, 159, 27, 24, 65, 220, 165, 33, 79, 161, 39, 128, 255, 216, 125, 128, 255, 0, + 191, 69, 25, 244, 201, 134, 198, 73, 221, 71, 234, 120, 132, 171, 147, 153, 60, 76, 97, 226, 183, 32, 75, 158, 38, + 85, 241, 204, 62, 205, 27, 194, 147, 185, 214, 252, 140, 238, 106, 73, 136, 237, 37, 164, 134, 90, 2, 247, 127, + 66, 1, 57, 76, 254, 76, 77, 32, 245, 68, 194, 100, 20, 84, 190, 132, 27, 25, 164, 156, 124, 82, 227, 171, 176, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 280, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5b8c4a1ca1a4717a98cc5420" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9012747735653205869" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15271594431551037468" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17919681497935405692" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9e7e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1844473553448696400" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d047a22db5bf22d1687c7ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4390353985227532338" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13721934459548021799" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10646355157205075559" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc107c4c6af873" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8913681623504166584" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7654497380182204992" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2306" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "923731575945215985" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "798090619267271874" + } + }, + { + "_tag": "ByteArray", + "bytearray": "acc51e7ebe41" + }, + { + "_tag": "ByteArray", + "bytearray": "24c3e9953814e832b238" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19f4c5b8c4a1ca1a4717a98cc5420d8669f1b7d13b65061d0c76d9fbf1bd3ef9a391e6ee01c1bf8af7f613c94627cffffff429e7ebf1b1998e2eca6e97a504c2d047a22db5bf22d1687c7ba1b3cedabb03fb528321bbe6e1ab0648d34274271f51b93bf739bd1db466747dc107c4c6af8731b7bb3c235b9e49eb8ffd8669f1b6a3a3ccfdfeb22409f422306d8669f1b0cd1c0f96406bff19f1b0b13633093ff4cc246acc51e7ebe414a24c3e9953814e832b238ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 76, 91, 140, 74, 28, 161, 164, 113, 122, 152, 204, + 84, 32, 216, 102, 159, 27, 125, 19, 182, 80, 97, 208, 199, 109, 159, 191, 27, 211, 239, 154, 57, 30, 110, 224, 28, + 27, 248, 175, 127, 97, 60, 148, 98, 124, 255, 255, 255, 66, 158, 126, 191, 27, 25, 152, 226, 236, 166, 233, 122, + 80, 76, 45, 4, 122, 34, 219, 91, 242, 45, 22, 135, 199, 186, 27, 60, 237, 171, 176, 63, 181, 40, 50, 27, 190, 110, + 26, 176, 100, 141, 52, 39, 66, 113, 245, 27, 147, 191, 115, 155, 209, 219, 70, 103, 71, 220, 16, 124, 76, 106, + 248, 115, 27, 123, 179, 194, 53, 185, 228, 158, 184, 255, 216, 102, 159, 27, 106, 58, 60, 207, 223, 235, 34, 64, + 159, 66, 35, 6, 216, 102, 159, 27, 12, 209, 192, 249, 100, 6, 191, 241, 159, 27, 11, 19, 99, 48, 147, 255, 76, + 194, 70, 172, 197, 30, 126, 190, 65, 74, 36, 195, 233, 149, 56, 20, 232, 50, 178, 56, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 281, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1997747683058625952" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12824379720496844668" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14516243064992674886" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4872" + } + ] + }, + "cborHex": "d8669f1b1bb96ceee791ada09f1bb1f95968c8f00f7c1bc9740e28421db446424872ffff", + "cborBytes": [ + 216, 102, 159, 27, 27, 185, 108, 238, 231, 145, 173, 160, 159, 27, 177, 249, 89, 104, 200, 240, 15, 124, 27, 201, + 116, 14, 40, 66, 29, 180, 70, 66, 72, 114, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 282, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9c0207" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "16ff052f" + }, + { + "_tag": "ByteArray", + "bytearray": "cfdd47168a4d040b05fa5f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + } + ] + }, + "cborHex": "d905009f9fd905029f439c02071bfffffffffffffff2ff804416ff052f4bcfdd47168a4d040b05fa5f03ffff", + "cborBytes": [ + 217, 5, 0, 159, 159, 217, 5, 2, 159, 67, 156, 2, 7, 27, 255, 255, 255, 255, 255, 255, 255, 242, 255, 128, 68, 22, + 255, 5, 47, 75, 207, 221, 71, 22, 138, 77, 4, 11, 5, 250, 95, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 283, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16922591680592593646" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14893383960120302037" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc5029b515f367430b30" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6432242253610754898" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12335028452335292701" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16962413743163265802" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16552979324853360131" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1158157034002943650" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11468798506831891917" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bd84477dee7987ac7657fe94" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12695994805677592992" + } + }, + { + "_tag": "ByteArray", + "bytearray": "42b4d540856f2bd27586" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15040837513291558445" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2d6ea1d1c758" + }, + { + "_tag": "ByteArray", + "bytearray": "6c76ad9934e3a6aac9abef" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9fd8669f1bead91f7948b3c2ee9f9f1bceafedcd9e7899d54acc5029b515f367430b301b5943ea400bba23521bab2ed3060bc8111dffffff9fd8669f1beb66996dbe73530a80ffd8669f1be5b7fefe984516039f1b101299afaddd8ea21b9f295b7a483ecdcd4cbd84477dee7987ac7657fe941bb0313c026e9e11a04a42b4d540856f2bd27586ffff1bd0bbca07501cee2dff462d6ea1d1c7584b6c76ad9934e3a6aac9abefffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 216, 102, 159, 27, 234, 217, 31, 121, 72, 179, + 194, 238, 159, 159, 27, 206, 175, 237, 205, 158, 120, 153, 213, 74, 204, 80, 41, 181, 21, 243, 103, 67, 11, 48, + 27, 89, 67, 234, 64, 11, 186, 35, 82, 27, 171, 46, 211, 6, 11, 200, 17, 29, 255, 255, 255, 159, 216, 102, 159, 27, + 235, 102, 153, 109, 190, 115, 83, 10, 128, 255, 216, 102, 159, 27, 229, 183, 254, 254, 152, 69, 22, 3, 159, 27, + 16, 18, 153, 175, 173, 221, 142, 162, 27, 159, 41, 91, 122, 72, 62, 205, 205, 76, 189, 132, 71, 125, 238, 121, + 135, 172, 118, 87, 254, 148, 27, 176, 49, 60, 2, 110, 158, 17, 160, 74, 66, 180, 213, 64, 133, 111, 43, 210, 117, + 134, 255, 255, 27, 208, 187, 202, 7, 80, 28, 238, 45, 255, 70, 45, 110, 161, 209, 199, 88, 75, 108, 118, 173, 153, + 52, 227, 166, 170, 201, 171, 239, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 284, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3994901321573133050" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd60" + }, + { + "_tag": "ByteArray", + "bytearray": "78698042b9028755" + } + ] + }, + "cborHex": "d8669f1b3770bd96091aeafa9f42fd604878698042b9028755ffff", + "cborBytes": [ + 216, 102, 159, 27, 55, 112, 189, 150, 9, 26, 234, 250, 159, 66, 253, 96, 72, 120, 105, 128, 66, 185, 2, 135, 85, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 285, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16040264203167739195" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4207978748813923753" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb" + }, + { + "_tag": "ByteArray", + "bytearray": "d3c7cd538b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4499527621988800015" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10848330542862972710" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13155559607473102558" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2667789527083245187" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b70af0158ae1efca5" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11388804278242189304" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14243786962181962780" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "173808352920925887" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6859313753216356269" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2e5ad9a3066574eafe6244" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14787343814549941763" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8fd5e16c9e44" + }, + { + "_tag": "ByteArray", + "bytearray": "edb04d59fe3c31" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "791089749690493035" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10873641604390257828" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11121664495634245234" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7dd6d0b" + }, + { + "_tag": "ByteArray", + "bytearray": "3d" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f1bde9a774ecd3a2d3bd8669f1b3a65be60917255a99f41fb45d3c7cd538bd8669f1b3e7188885db3560f9f091b968d0326dd5e37261bb691efc308e95ede1b2505e470b94dde83492b70af0158ae1efca5ffffbf1000ffffffd8669f1b9e0d29268d131ff89fd8669f1bc5ac18c679323c1c80ffd8669f1b02697dc6aed8f6bf9f1b5f312d842f698fad4b2e5ad9a3066574eafe62441bcd3732da45d1ae03468fd5e16c9e4447edb04d59fe3c31ffffd8669f1b0afa83ef9bc1286b9f1b96e6ef6d9c9704a41b9a5816ef055a667244d7dd6d0b413dffffffff07ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 27, 222, 154, 119, 78, 205, 58, 45, 59, 216, 102, + 159, 27, 58, 101, 190, 96, 145, 114, 85, 169, 159, 65, 251, 69, 211, 199, 205, 83, 139, 216, 102, 159, 27, 62, + 113, 136, 136, 93, 179, 86, 15, 159, 9, 27, 150, 141, 3, 38, 221, 94, 55, 38, 27, 182, 145, 239, 195, 8, 233, 94, + 222, 27, 37, 5, 228, 112, 185, 77, 222, 131, 73, 43, 112, 175, 1, 88, 174, 30, 252, 165, 255, 255, 191, 16, 0, + 255, 255, 255, 216, 102, 159, 27, 158, 13, 41, 38, 141, 19, 31, 248, 159, 216, 102, 159, 27, 197, 172, 24, 198, + 121, 50, 60, 28, 128, 255, 216, 102, 159, 27, 2, 105, 125, 198, 174, 216, 246, 191, 159, 27, 95, 49, 45, 132, 47, + 105, 143, 173, 75, 46, 90, 217, 163, 6, 101, 116, 234, 254, 98, 68, 27, 205, 55, 50, 218, 69, 209, 174, 3, 70, + 143, 213, 225, 108, 158, 68, 71, 237, 176, 77, 89, 254, 60, 49, 255, 255, 216, 102, 159, 27, 10, 250, 131, 239, + 155, 193, 40, 107, 159, 27, 150, 230, 239, 109, 156, 151, 4, 164, 27, 154, 88, 22, 239, 5, 90, 102, 114, 68, 215, + 221, 109, 11, 65, 61, 255, 255, 255, 255, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 286, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87d9fa0ff", + "cborBytes": [216, 125, 159, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 287, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11784733848519256136" + }, + "fields": [] + } + ] + }, + "cborHex": "d905019fd8669f1ba38bc8ff3d83284880ffff", + "cborBytes": [217, 5, 1, 159, 216, 102, 159, 27, 163, 139, 200, 255, 61, 131, 40, 72, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 288, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2932676860511568444" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "13" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4123415558803125494" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5aa0b66bf4d0bd44197cac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6791119682515712794" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f34f3d29e2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10641092458086625579" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "814846e95b84a40cde" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15953901391636082786" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6505136704628876796" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6cdb098674" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f9fd8669f1b28b2f6110fccc23c9f4113ffffbf1b3939509a9bc774f64b5aa0b66bf4d0bd44197cac1b5e3ee75ecf833b1a45f34f3d29e21b93acc1363257712b49814846e95b84a40cde1bdd67a4c9ce1430621b5a46e35dfec265fcff456cdb098674ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 159, 216, 102, 159, 27, 40, 178, 246, 17, 15, 204, + 194, 60, 159, 65, 19, 255, 255, 191, 27, 57, 57, 80, 154, 155, 199, 116, 246, 75, 90, 160, 182, 107, 244, 208, + 189, 68, 25, 124, 172, 27, 94, 62, 231, 94, 207, 131, 59, 26, 69, 243, 79, 61, 41, 226, 27, 147, 172, 193, 54, 50, + 87, 113, 43, 73, 129, 72, 70, 233, 91, 132, 164, 12, 222, 27, 221, 103, 164, 201, 206, 20, 48, 98, 27, 90, 70, + 227, 93, 254, 194, 101, 252, 255, 69, 108, 219, 9, 134, 116, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 289, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6756399244423901806" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13976915045646469725" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "743d459fff448d72277841" + }, + { + "_tag": "ByteArray", + "bytearray": "a25f173b729d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30355923fcb14063d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5593572377304035770" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40aea5430813" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "866f299cf6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a0d1430" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a8f77b05b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff8d58546445" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17543524105350930434" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "12b7deeac83d73" + }, + { + "_tag": "ByteArray", + "bytearray": "ee5f035c4a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18224181568245739277" + } + }, + { + "_tag": "ByteArray", + "bytearray": "060bafa882" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3349d0ac6f84a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd9c2c76321e394aff8936b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a20" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "498477271968962311" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13458936821573027324" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6289718858196599757" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2edf9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "801ec9190688" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16176586082718344276" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7e7030522287a22b04a3b71d" + }, + { + "_tag": "ByteArray", + "bytearray": "fac447f249d13e74" + }, + { + "_tag": "ByteArray", + "bytearray": "e78a0ab374be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5126542534086199907" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4551046625837749479" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb52b2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9188426016211947674" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e759affa2a429307dce9ae4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15776920420530989046" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17776304669660166783" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5dc38d50dc9ab26e9fd8669f1bc1f7fa2e5f920a5d9f4b743d459fff448d7227784146a25f173b729dbf4930355923fcb14063d01b4da05c70eea4f1ba4640aea543081345866f299cf6444a0d1430454a8f77b05b46ff8d585464451bf3771e3967f1e002ff9f4712b7deeac83d7345ee5f035c4a1bfce94c9499822f0d45060bafa882ffffffbf473349d0ac6f84a94cfd9c2c76321e394aff8936b5428a201b06eaf2701450d70742a6c61bbac7bfbb104905fc41bf1b574991fa27e243cd43c2edf946801ec9190688ff9fd8669f1be07ec755c2f464549f4c7e7030522287a22b04a3b71d48fac447f249d13e7446e78a0ab374be1b47252345ee238a63ffffd8669f1b3f2890cb314c94e79f43fb52b21b7f83d8c78545509a4c8e759affa2a429307dce9ae41bdaf2e188635b27f61bf6b21eea06363a7fffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 93, 195, 141, 80, 220, 154, 178, 110, 159, 216, 102, 159, 27, 193, 247, 250, 46, 95, 146, 10, + 93, 159, 75, 116, 61, 69, 159, 255, 68, 141, 114, 39, 120, 65, 70, 162, 95, 23, 59, 114, 157, 191, 73, 48, 53, 89, + 35, 252, 177, 64, 99, 208, 27, 77, 160, 92, 112, 238, 164, 241, 186, 70, 64, 174, 165, 67, 8, 19, 69, 134, 111, + 41, 156, 246, 68, 74, 13, 20, 48, 69, 74, 143, 119, 176, 91, 70, 255, 141, 88, 84, 100, 69, 27, 243, 119, 30, 57, + 103, 241, 224, 2, 255, 159, 71, 18, 183, 222, 234, 200, 61, 115, 69, 238, 95, 3, 92, 74, 27, 252, 233, 76, 148, + 153, 130, 47, 13, 69, 6, 11, 175, 168, 130, 255, 255, 255, 191, 71, 51, 73, 208, 172, 111, 132, 169, 76, 253, 156, + 44, 118, 50, 30, 57, 74, 255, 137, 54, 181, 66, 138, 32, 27, 6, 234, 242, 112, 20, 80, 215, 7, 66, 166, 198, 27, + 186, 199, 191, 187, 16, 73, 5, 252, 65, 191, 27, 87, 73, 145, 250, 39, 226, 67, 205, 67, 194, 237, 249, 70, 128, + 30, 201, 25, 6, 136, 255, 159, 216, 102, 159, 27, 224, 126, 199, 85, 194, 244, 100, 84, 159, 76, 126, 112, 48, 82, + 34, 135, 162, 43, 4, 163, 183, 29, 72, 250, 196, 71, 242, 73, 209, 62, 116, 70, 231, 138, 10, 179, 116, 190, 27, + 71, 37, 35, 69, 238, 35, 138, 99, 255, 255, 216, 102, 159, 27, 63, 40, 144, 203, 49, 76, 148, 231, 159, 67, 251, + 82, 178, 27, 127, 131, 216, 199, 133, 69, 80, 154, 76, 142, 117, 154, 255, 162, 164, 41, 48, 125, 206, 154, 228, + 27, 218, 242, 225, 136, 99, 91, 39, 246, 27, 246, 178, 30, 234, 6, 54, 58, 127, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 290, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff680ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 291, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15846624149515993191" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f801d6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "38ff65" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "221d229135" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b36" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "676d58" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca1a86aeca15f0fc33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f96c72338e4ca0cb6473" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce373c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ce4" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3360927327114608578" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16512496259260813263" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7353202415696342601" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6579542767706130497" + } + }, + { + "_tag": "ByteArray", + "bytearray": "897c488c636e7473" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9847497221368774690" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bdbea84b4790700679f43f801d6bf4338ff6545221d229135426b3643676d5849ca1a86aeca15f0fc334af96c72338e4ca0cb647343ce373c426ce4ffd8669f1b2ea46998d891bfc29f1be5282bdc60350fcfd8669f1b660bd2a35d1fee4980ff1b5b4f3b498d9d484148897c488c636e74731b88a9568c6e550022ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 219, 234, 132, 180, 121, 7, 0, 103, 159, 67, 248, 1, 214, 191, 67, 56, 255, 101, 69, 34, 29, + 34, 145, 53, 66, 107, 54, 67, 103, 109, 88, 73, 202, 26, 134, 174, 202, 21, 240, 252, 51, 74, 249, 108, 114, 51, + 142, 76, 160, 203, 100, 115, 67, 206, 55, 60, 66, 108, 228, 255, 216, 102, 159, 27, 46, 164, 105, 152, 216, 145, + 191, 194, 159, 27, 229, 40, 43, 220, 96, 53, 15, 207, 216, 102, 159, 27, 102, 11, 210, 163, 93, 31, 238, 73, 128, + 255, 27, 91, 79, 59, 73, 141, 157, 72, 65, 72, 137, 124, 72, 140, 99, 110, 116, 115, 27, 136, 169, 86, 140, 110, + 85, 0, 34, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 292, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18408971383380199996" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5794895260664433255" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c8fac96545" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16195212997479333957" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8705142198465435322" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6092917311245862073" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10409557547891966184" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5506508543008317117" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6422569036430244343" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10949874186718476545" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3ac53ce4" + }, + { + "_tag": "ByteArray", + "bytearray": "3884c3e3747063d398c23579" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "63ae" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "43fbdc03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15528981816153128602" + } + } + ] + }, + "cborHex": "d9050b9f1bff79cdf032b54a3cd8669f1b506b9a89727f8a679f45c8fac96545d8669f1be0c0f46a508b804580ffffffd8669f1b78cee0b52acb96ba9f1b548e64034ea344b9d8669f1b90762d70071640e89f1b4c6b0c585aaa1ebd1b59218c82a9d8f9f7ffffd8669f1b97f5c48ed292f9019f443ac53ce44c3884c3e3747063d398c23579ffff4263aeffff4443fbdc031bd78206af8b4ebe9aff", + "cborBytes": [ + 217, 5, 11, 159, 27, 255, 121, 205, 240, 50, 181, 74, 60, 216, 102, 159, 27, 80, 107, 154, 137, 114, 127, 138, + 103, 159, 69, 200, 250, 201, 101, 69, 216, 102, 159, 27, 224, 192, 244, 106, 80, 139, 128, 69, 128, 255, 255, 255, + 216, 102, 159, 27, 120, 206, 224, 181, 42, 203, 150, 186, 159, 27, 84, 142, 100, 3, 78, 163, 68, 185, 216, 102, + 159, 27, 144, 118, 45, 112, 7, 22, 64, 232, 159, 27, 76, 107, 12, 88, 90, 170, 30, 189, 27, 89, 33, 140, 130, 169, + 216, 249, 247, 255, 255, 216, 102, 159, 27, 151, 245, 196, 142, 210, 146, 249, 1, 159, 68, 58, 197, 60, 228, 76, + 56, 132, 195, 227, 116, 112, 99, 211, 152, 194, 53, 121, 255, 255, 66, 99, 174, 255, 255, 68, 67, 251, 220, 3, 27, + 215, 130, 6, 175, 139, 78, 190, 154, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 293, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12022379876670608140" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18304301267115147665" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f2586036" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16221129072878558833" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f4215bdbfae76600" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1556186313115525369" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c71f1593" + }, + { + "_tag": "ByteArray", + "bytearray": "193f1ea4829a3340b5ab7a" + }, + { + "_tag": "ByteArray", + "bytearray": "5dbb58" + }, + { + "_tag": "ByteArray", + "bytearray": "8c9b0e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1294162845625648001" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12457492744889664415" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc4a0072eeca5cd46983877b" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "410691332152670495" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9812332241417555478" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7467091873401191625" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3193056095609128067" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5677897398716728249" + } + }, + { + "_tag": "ByteArray", + "bytearray": "21930e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2114727766291526133" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "251f347822f552" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a72dd079d04b518b9f9ec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64ea5aa52ac3ebb9fa0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf19df89" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9cbf219" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2dd16dabf96" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd645913db97680cd4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14816021965109399071" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1add1fd253" + }, + { + "_tag": "ByteArray", + "bytearray": "22091a0147d8f36c0866e7d1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15334466655697900823" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10039775604681502529" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2448339366973849240" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16252032376160849372" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2743928329225675499" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16904210931215603681" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5346430182777418473" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff0e15b0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6576898554789899541" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13517757544708467949" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13046593663877411399" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d4c1d9818ec608b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13663708626334705115" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b93eeeaecb65" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17392355605237979980" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6189433774870058222" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11675601485925215064" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4825625723959615006" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7739925998594178344" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19f9f1ba6d812ccefc1930c9f1bfe05f105a821819144f25860361be11d06f2d4b01e7148f4215bdbfae76600ffd8669f1b1598af34ed9360f99f44c71f15934b193f1ea4829a3340b5ab7a435dbb58438c9b0e1b11f5ca4057068381ffffd8669f1bace1e7a61b27839f9f4cfc4a0072eeca5cd46983877bffffff9fd8669f1b05b31197354ab91f9f1b882c682f83ce4e161b67a0707f1b48bcc9ffff9f1b2c500399f6ad84831b4ecbf199f1a003b94321930eff1b1d5905b2fa7631f5bf47251f347822f5524b3a72dd079d04b518b9f9ec4a64ea5aa52ac3ebb9fa0f44cf19df8944e9cbf21946c2dd16dabf9649fd645913db97680cd41bcd9d157a86bb0e1fffff451add1fd2534c22091a0147d8f36c0866e7d1d8669f1bd4cef82d88f215179f9f1b8b5472b82dac6f411b21fa3faeb214be981be18ad156d3370ddcffbf1b2614644708a0a2eb1bea97d247936197e11b4a3255ecb4dff2e944ff0e15b01b5b45d663c2082d151bbb98b8dde4346ced1bb50ecfd040467247488d4c1d9818ec608b1bbd9f3e9a2b1ee5db46b93eeeaecb65ff9f1bf15e0f46397bdb4c1b55e54939a7ef54ee1ba20811b103986b58ff9f414d1b42f8110757999e1e1b6b69bdb016043d28ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 159, 27, 166, 216, 18, 204, 239, 193, 147, 12, + 159, 27, 254, 5, 241, 5, 168, 33, 129, 145, 68, 242, 88, 96, 54, 27, 225, 29, 6, 242, 212, 176, 30, 113, 72, 244, + 33, 91, 219, 250, 231, 102, 0, 255, 216, 102, 159, 27, 21, 152, 175, 52, 237, 147, 96, 249, 159, 68, 199, 31, 21, + 147, 75, 25, 63, 30, 164, 130, 154, 51, 64, 181, 171, 122, 67, 93, 187, 88, 67, 140, 155, 14, 27, 17, 245, 202, + 64, 87, 6, 131, 129, 255, 255, 216, 102, 159, 27, 172, 225, 231, 166, 27, 39, 131, 159, 159, 76, 252, 74, 0, 114, + 238, 202, 92, 212, 105, 131, 135, 123, 255, 255, 255, 159, 216, 102, 159, 27, 5, 179, 17, 151, 53, 74, 185, 31, + 159, 27, 136, 44, 104, 47, 131, 206, 78, 22, 27, 103, 160, 112, 127, 27, 72, 188, 201, 255, 255, 159, 27, 44, 80, + 3, 153, 246, 173, 132, 131, 27, 78, 203, 241, 153, 241, 160, 3, 185, 67, 33, 147, 14, 255, 27, 29, 89, 5, 178, + 250, 118, 49, 245, 191, 71, 37, 31, 52, 120, 34, 245, 82, 75, 58, 114, 221, 7, 157, 4, 181, 24, 185, 249, 236, 74, + 100, 234, 90, 165, 42, 195, 235, 185, 250, 15, 68, 207, 25, 223, 137, 68, 233, 203, 242, 25, 70, 194, 221, 22, + 218, 191, 150, 73, 253, 100, 89, 19, 219, 151, 104, 12, 212, 27, 205, 157, 21, 122, 134, 187, 14, 31, 255, 255, + 69, 26, 221, 31, 210, 83, 76, 34, 9, 26, 1, 71, 216, 243, 108, 8, 102, 231, 209, 216, 102, 159, 27, 212, 206, 248, + 45, 136, 242, 21, 23, 159, 159, 27, 139, 84, 114, 184, 45, 172, 111, 65, 27, 33, 250, 63, 174, 178, 20, 190, 152, + 27, 225, 138, 209, 86, 211, 55, 13, 220, 255, 191, 27, 38, 20, 100, 71, 8, 160, 162, 235, 27, 234, 151, 210, 71, + 147, 97, 151, 225, 27, 74, 50, 85, 236, 180, 223, 242, 233, 68, 255, 14, 21, 176, 27, 91, 69, 214, 99, 194, 8, 45, + 21, 27, 187, 152, 184, 221, 228, 52, 108, 237, 27, 181, 14, 207, 208, 64, 70, 114, 71, 72, 141, 76, 29, 152, 24, + 236, 96, 139, 27, 189, 159, 62, 154, 43, 30, 229, 219, 70, 185, 62, 238, 174, 203, 101, 255, 159, 27, 241, 94, 15, + 70, 57, 123, 219, 76, 27, 85, 229, 73, 57, 167, 239, 84, 238, 27, 162, 8, 17, 177, 3, 152, 107, 88, 255, 159, 65, + 77, 27, 66, 248, 17, 7, 87, 153, 158, 30, 27, 107, 105, 189, 176, 22, 4, 61, 40, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 294, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "121555955692548409" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9563807357251500891" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2be8de03b00259" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8334690196064588184" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7817139763047236577" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8df28b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7900174116842773035" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2345779904973981117" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11240422112974867706" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "deac9a70165b9290" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11641921912691836990" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15694591348266765552" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1367583354196779183" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11774411631915956632" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3476350353033554628" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17835523582726487647" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6511908002037886687" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34c63430dfe9554db0d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6944704409624561408" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11888664335389498000" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11496586174251327098" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1471905285783419361" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bd2db6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14310382612249530818" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13631730367151793991" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b01afda7f676331399fbf1b84b9781ec53e3b5b472be8de03b00259ff80a0d8669f1b73aac493015c51989fbf1b6c7c0f32900303e1438df28b1b6da30e809a261a2b1b208de265253945bd1b9bfe005b81500cfa48deac9a70165b92901ba1906a4c4cd5483e1bd9ce63ad805c0cf0ffbf1b12faa1d09ba2e0af1ba3671cfee793f9981b303e7a3a435e6ac41bf7848233ab83be5f1b5a5ef1d3877deedf4a34c63430dfe9554db0d31b60608bddadc2c7001ba4fd053964bf1a901b9f8c1436c5eade7a4155ffd8669f1b146d420f1623f9e19f43bd2db61bc698b12a8b0f51c2ffff1bbd2da28b7ffce747ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 1, 175, 218, 127, 103, 99, 49, 57, 159, 191, 27, 132, 185, 120, 30, 197, 62, 59, 91, 71, 43, + 232, 222, 3, 176, 2, 89, 255, 128, 160, 216, 102, 159, 27, 115, 170, 196, 147, 1, 92, 81, 152, 159, 191, 27, 108, + 124, 15, 50, 144, 3, 3, 225, 67, 141, 242, 139, 27, 109, 163, 14, 128, 154, 38, 26, 43, 27, 32, 141, 226, 101, 37, + 57, 69, 189, 27, 155, 254, 0, 91, 129, 80, 12, 250, 72, 222, 172, 154, 112, 22, 91, 146, 144, 27, 161, 144, 106, + 76, 76, 213, 72, 62, 27, 217, 206, 99, 173, 128, 92, 12, 240, 255, 191, 27, 18, 250, 161, 208, 155, 162, 224, 175, + 27, 163, 103, 28, 254, 231, 147, 249, 152, 27, 48, 62, 122, 58, 67, 94, 106, 196, 27, 247, 132, 130, 51, 171, 131, + 190, 95, 27, 90, 94, 241, 211, 135, 125, 238, 223, 74, 52, 198, 52, 48, 223, 233, 85, 77, 176, 211, 27, 96, 96, + 139, 221, 173, 194, 199, 0, 27, 164, 253, 5, 57, 100, 191, 26, 144, 27, 159, 140, 20, 54, 197, 234, 222, 122, 65, + 85, 255, 216, 102, 159, 27, 20, 109, 66, 15, 22, 35, 249, 225, 159, 67, 189, 45, 182, 27, 198, 152, 177, 42, 139, + 15, 81, 194, 255, 255, 27, 189, 45, 162, 139, 127, 252, 231, 71, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 295, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5ad69d" + }, + { + "_tag": "ByteArray", + "bytearray": "7af06ac6e9e4" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f435ad69d467af06ac6e9e4ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 67, 90, 214, 157, 70, 122, 240, 106, 198, 233, + 228, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 296, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8877177372592954327" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c0ba228902def" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4744370131816415307" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a4e2c0dd10" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10495311964651344064" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f8827d7a7e750a622feb" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17116614256121211521" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f9f9f1b7b3211c97d89dbd7475c0ba228902def1b41d7637f85e4004b45a4e2c0dd10ff1b91a6d6a013f350c04af8827d7a7e750a622febffd8669f1bed8a6dfa6d7dea8180ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 159, 159, 27, 123, 50, 17, 201, 125, 137, 219, + 215, 71, 92, 11, 162, 40, 144, 45, 239, 27, 65, 215, 99, 127, 133, 228, 0, 75, 69, 164, 226, 192, 221, 16, 255, + 27, 145, 166, 214, 160, 19, 243, 80, 192, 74, 248, 130, 125, 122, 126, 117, 10, 98, 47, 235, 255, 216, 102, 159, + 27, 237, 138, 109, 250, 109, 125, 234, 129, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 297, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4385363037774372951" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09fd8669f1b3cdbf072bdab605780ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 216, 102, 159, 27, 60, 219, 240, 114, 189, 171, + 96, 87, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 298, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15234428370745756942" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f1bd36b8fe3426f0d0effff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 27, 211, 107, 143, 227, 66, 111, 13, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 299, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5b8e004e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3446657168996981093" + } + }, + { + "_tag": "ByteArray", + "bytearray": "025cf9307252fe45" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14941801686264857550" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11755379570801797288" + } + }, + { + "_tag": "ByteArray", + "bytearray": "26f7" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7115" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7918688415649205735" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8799f445b8e004e1b2fd4fc6f1c9e596548025cf9307252fe45d8669f1bcf5bf177f62643ce9f1ba3237f6fdd8668a84226f7a09f4271151b6de4d528b5c58de7ffffffff", + "cborBytes": [ + 216, 121, 159, 68, 91, 142, 0, 78, 27, 47, 212, 252, 111, 28, 158, 89, 101, 72, 2, 92, 249, 48, 114, 82, 254, 69, + 216, 102, 159, 27, 207, 91, 241, 119, 246, 38, 67, 206, 159, 27, 163, 35, 127, 111, 221, 134, 104, 168, 66, 38, + 247, 160, 159, 66, 113, 21, 27, 109, 228, 213, 40, 181, 197, 141, 231, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 300, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5049938133969005422" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "385de32c9044" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2026794795919089636" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3076094712062099632" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14095007110478235877" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13841605895337943830" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16108573718556853502" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd03d72fd8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18166187399414398137" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7482931634700914001" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b4614fbfa24ebeb6e9f46385de32c9044bf1b1c209f20e35e1fe41b2ab07bd7bfeb40b01bc39b8649d6a908e51bc0174339d09223161bdf8d26733cc644fe45dd03d72fd81bfc1b4330f145bcb91b67d8b6acece18d51ffffff", + "cborBytes": [ + 216, 102, 159, 27, 70, 20, 251, 250, 36, 235, 235, 110, 159, 70, 56, 93, 227, 44, 144, 68, 191, 27, 28, 32, 159, + 32, 227, 94, 31, 228, 27, 42, 176, 123, 215, 191, 235, 64, 176, 27, 195, 155, 134, 73, 214, 169, 8, 229, 27, 192, + 23, 67, 57, 208, 146, 35, 22, 27, 223, 141, 38, 115, 60, 198, 68, 254, 69, 221, 3, 215, 47, 216, 27, 252, 27, 67, + 48, 241, 69, 188, 185, 27, 103, 216, 182, 172, 236, 225, 141, 81, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 301, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15625603974183864964" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d681f32" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0343b4f7a61a1303dbd5951" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52a030de24" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7049887e04f4a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d61cb3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10064825327478583638" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebe951c202fc2694" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e411be1296fb6e9379" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0d6b26aabaf796d42fe6c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "110990383019756636" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffc9d76809a35cc6542fce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d7479b4" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "27d0d696569229c8f0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8a3301c51ed8" + }, + { + "_tag": "ByteArray", + "bytearray": "16" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11752310351097134816" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5844329583239243010" + } + }, + { + "_tag": "ByteArray", + "bytearray": "27662210574b013c51" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4480796740071837229" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8654752642663574279" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15502471875723988145" + } + } + ] + }, + "cborHex": "d8669f1bd8d94c06ca294a849f9fbf442d681f324cb0343b4f7a61a1303dbd59514552a030de2447d7049887e04f4a43d61cb31b8bad714f42b7315648ebe951c202fc269449e411be1296fb6e93794bf0d6b26aabaf796d42fe6c1b018a512a51608c5c4bffc9d76809a35cc6542fce443d7479b4ff4927d0d696569229c8f09f468a3301c51ed841161ba31897ff774a7ee01b511b3aca974825024927662210574b013c51ff1b3e2efce512b5ce2d1b781bdbac74d5eb07ff1bd723d8090d030cb1ffff", + "cborBytes": [ + 216, 102, 159, 27, 216, 217, 76, 6, 202, 41, 74, 132, 159, 159, 191, 68, 45, 104, 31, 50, 76, 176, 52, 59, 79, + 122, 97, 161, 48, 61, 189, 89, 81, 69, 82, 160, 48, 222, 36, 71, 215, 4, 152, 135, 224, 79, 74, 67, 214, 28, 179, + 27, 139, 173, 113, 79, 66, 183, 49, 86, 72, 235, 233, 81, 194, 2, 252, 38, 148, 73, 228, 17, 190, 18, 150, 251, + 110, 147, 121, 75, 240, 214, 178, 106, 171, 175, 121, 109, 66, 254, 108, 27, 1, 138, 81, 42, 81, 96, 140, 92, 75, + 255, 201, 215, 104, 9, 163, 92, 198, 84, 47, 206, 68, 61, 116, 121, 180, 255, 73, 39, 208, 214, 150, 86, 146, 41, + 200, 240, 159, 70, 138, 51, 1, 197, 30, 216, 65, 22, 27, 163, 24, 151, 255, 119, 74, 126, 224, 27, 81, 27, 58, + 202, 151, 72, 37, 2, 73, 39, 102, 34, 16, 87, 75, 1, 60, 81, 255, 27, 62, 46, 252, 229, 18, 181, 206, 45, 27, 120, + 27, 219, 172, 116, 213, 235, 7, 255, 27, 215, 35, 216, 9, 13, 3, 12, 177, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 302, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12102373368325843595" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2806183210008240602" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9598404065449227961" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6301432436017029550" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c540ed775b4e6ca42407ef07" + }, + { + "_tag": "ByteArray", + "bytearray": "aedab3a8" + }, + { + "_tag": "ByteArray", + "bytearray": "2d2cc6186dc7d4cb" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18421061928322509449" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e7" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3887747583567717599" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4e51487d0e7097c9c6" + } + ] + }, + "cborHex": "d8669f1ba7f444751635aa8b9fd8669f1b26f190c2ff34e1da80ff9fd8669f1b853461a49bc436b99f1b57732f6a04eb61ae4cc540ed775b4e6ca42407ef0744aedab3a8482d2cc6186dc7d4cbffffd8669f1bffa4c2398f22aa899f41e7ffff1b35f40dd43eefe4dfff494e51487d0e7097c9c6ffff", + "cborBytes": [ + 216, 102, 159, 27, 167, 244, 68, 117, 22, 53, 170, 139, 159, 216, 102, 159, 27, 38, 241, 144, 194, 255, 52, 225, + 218, 128, 255, 159, 216, 102, 159, 27, 133, 52, 97, 164, 155, 196, 54, 185, 159, 27, 87, 115, 47, 106, 4, 235, 97, + 174, 76, 197, 64, 237, 119, 91, 78, 108, 164, 36, 7, 239, 7, 68, 174, 218, 179, 168, 72, 45, 44, 198, 24, 109, + 199, 212, 203, 255, 255, 216, 102, 159, 27, 255, 164, 194, 57, 143, 34, 170, 137, 159, 65, 231, 255, 255, 27, 53, + 244, 13, 212, 62, 239, 228, 223, 255, 73, 78, 81, 72, 125, 14, 112, 151, 201, 198, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 303, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18107029994181239616" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4007132650967032037" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f1bfb4917d834842340d8669f1b379c31ea54c260e580ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 27, 251, 73, 23, 216, 52, 132, 35, 64, 216, 102, + 159, 27, 55, 156, 49, 234, 84, 194, 96, 229, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 304, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10349306107853570954" + }, + "fields": [] + }, + "cborHex": "d8669f1b8fa01f127664838a80ff", + "cborBytes": [216, 102, 159, 27, 143, 160, 31, 18, 118, 100, 131, 138, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 305, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "27204047667f" + }, + { + "_tag": "ByteArray", + "bytearray": "a627c58ec75105d185" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9485802367650516334" + } + } + ] + }, + "cborHex": "d905069f4627204047667f49a627c58ec75105d1851b83a456fed55e4d6eff", + "cborBytes": [ + 217, 5, 6, 159, 70, 39, 32, 64, 71, 102, 127, 73, 166, 39, 197, 142, 199, 81, 5, 209, 133, 27, 131, 164, 86, 254, + 213, 94, 77, 110, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 306, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17733113842692035714" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6322453421290643839" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6055324967034298531" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11053095817898302183" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c60d2d8ffc44a4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4712460596982265662" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10099187637374144444" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bf618ad15fb3894829fd8669f1b57bddde38cfb617f9f1b5408d5f99ba220a3d8669f1b99647c15a62f1ae780ff47c60d2d8ffc44a4d8669f1b416605f1fd27373e80ff1b8c2785a5fdb3cfbcffffffff", + "cborBytes": [ + 216, 102, 159, 27, 246, 24, 173, 21, 251, 56, 148, 130, 159, 216, 102, 159, 27, 87, 189, 221, 227, 140, 251, 97, + 127, 159, 27, 84, 8, 213, 249, 155, 162, 32, 163, 216, 102, 159, 27, 153, 100, 124, 21, 166, 47, 26, 231, 128, + 255, 71, 198, 13, 45, 143, 252, 68, 164, 216, 102, 159, 27, 65, 102, 5, 241, 253, 39, 55, 62, 128, 255, 27, 140, + 39, 133, 165, 253, 179, 207, 188, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 307, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11671512002523139734" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6030973916281018785" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3afa0fd822a0c41422" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1013068036378528838" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9af9ccb9a4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10418243504581170383" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14057818260678952559" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7550bbafb9eb0585dd9e81" + }, + { + "_tag": "ByteArray", + "bytearray": "f99557bbf9d9869995111750" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6873877635291821344" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9646503284296492630" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16227589547804410582" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17839107720764514437" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3ce5181607094efebaaa4fb6" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05f910f70bff3bfc" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1ba1f98a53f6198e969fd8669f1b53b252d2c99399a19f493afa0fd822a0c41422d8669f1b0e0f2402f9a50c4680ff9f459af9ccb9a41b90950944ea14d4cf1bc317673a00c4c66f4b7550bbafb9eb0585dd9e814cf99557bbf9d9869995111750ffd8669f1b5f64eb4a391235209f1b85df43a0b121a6561be133fab75db942d61bf7913df4d618e0854c3ce5181607094efebaaa4fb6ffffffff4805f910f70bff3bfc80ffff", + "cborBytes": [ + 216, 102, 159, 27, 161, 249, 138, 83, 246, 25, 142, 150, 159, 216, 102, 159, 27, 83, 178, 82, 210, 201, 147, 153, + 161, 159, 73, 58, 250, 15, 216, 34, 160, 196, 20, 34, 216, 102, 159, 27, 14, 15, 36, 2, 249, 165, 12, 70, 128, + 255, 159, 69, 154, 249, 204, 185, 164, 27, 144, 149, 9, 68, 234, 20, 212, 207, 27, 195, 23, 103, 58, 0, 196, 198, + 111, 75, 117, 80, 187, 175, 185, 235, 5, 133, 221, 158, 129, 76, 249, 149, 87, 187, 249, 217, 134, 153, 149, 17, + 23, 80, 255, 216, 102, 159, 27, 95, 100, 235, 74, 57, 18, 53, 32, 159, 27, 133, 223, 67, 160, 177, 33, 166, 86, + 27, 225, 51, 250, 183, 93, 185, 66, 214, 27, 247, 145, 61, 244, 214, 24, 224, 133, 76, 60, 229, 24, 22, 7, 9, 78, + 254, 186, 170, 79, 182, 255, 255, 255, 255, 72, 5, 249, 16, 247, 11, 255, 59, 252, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 308, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "698840843241326932" + }, + "fields": [] + }, + "cborHex": "d8669f1b09b2c80b57ef095480ff", + "cborBytes": [216, 102, 159, 27, 9, 178, 200, 11, 87, 239, 9, 84, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 309, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2961821208615774996" + }, + "fields": [] + }, + "cborHex": "d8669f1b291a80b263c2eb1480ff", + "cborBytes": [216, 102, 159, 27, 41, 26, 128, 178, 99, 194, 235, 20, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 310, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0a9a630b648b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3243681540979885990" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c85bb9fcd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8987759794280964568" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db23d07a0f" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9996823907036928703" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "505879594144843881" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17877104270567318085" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9144845921422581910" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dbc8da7edcceb9d3778ef7f6" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13183629423564002544" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13516176173380695628" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a2c6c9231ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72f65d9c73cc9bd28d9733" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c88a29b704ebe28a0dbc9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6006849804545343959" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905019f809f460a9a630b648bbf1b2d03df2cfe9907a6451c85bb9fcd1b7cbaefe9e8a7a1d845db23d07a0fff1b8abbda60c5119abfd8669f1b07053ecf841f48699f1bf8183b9dfbc8a2451b7ee904ea0012a0964cdbc8da7edcceb9d3778ef7f6ffffbf1bb6f5a91c61eb94f01bbb931a9e2ff4764c465a2c6c9231ea4b72f65d9c73cc9bd28d97334b8c88a29b704ebe28a0dbc91b535c9e12530cc1d7ffffff", + "cborBytes": [ + 217, 5, 1, 159, 128, 159, 70, 10, 154, 99, 11, 100, 139, 191, 27, 45, 3, 223, 44, 254, 153, 7, 166, 69, 28, 133, + 187, 159, 205, 27, 124, 186, 239, 233, 232, 167, 161, 216, 69, 219, 35, 208, 122, 15, 255, 27, 138, 187, 218, 96, + 197, 17, 154, 191, 216, 102, 159, 27, 7, 5, 62, 207, 132, 31, 72, 105, 159, 27, 248, 24, 59, 157, 251, 200, 162, + 69, 27, 126, 233, 4, 234, 0, 18, 160, 150, 76, 219, 200, 218, 126, 220, 206, 185, 211, 119, 142, 247, 246, 255, + 255, 191, 27, 182, 245, 169, 28, 97, 235, 148, 240, 27, 187, 147, 26, 158, 47, 244, 118, 76, 70, 90, 44, 108, 146, + 49, 234, 75, 114, 246, 93, 156, 115, 204, 155, 210, 141, 151, 51, 75, 140, 136, 162, 155, 112, 78, 190, 40, 160, + 219, 201, 27, 83, 92, 158, 18, 83, 12, 193, 215, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 311, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11870560154076960372" + }, + "fields": [] + }, + "cborHex": "d8669f1ba4bcb39134a9d67480ff", + "cborBytes": [216, 102, 159, 27, 164, 188, 179, 145, 52, 169, 214, 116, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 312, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4363120967638249845" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "daf2744e60ddd7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "908906514105256570" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a30bc8621023ceb13c6fe3" + } + ] + }, + "cborHex": "d8669f1b3c8ceb673c22f1759f9f9f47daf2744e60ddd71b0c9d15a8b3484a7affff4ba30bc8621023ceb13c6fe3ffff", + "cborBytes": [ + 216, 102, 159, 27, 60, 140, 235, 103, 60, 34, 241, 117, 159, 159, 159, 71, 218, 242, 116, 78, 96, 221, 215, 27, + 12, 157, 21, 168, 179, 72, 74, 122, 255, 255, 75, 163, 11, 200, 98, 16, 35, 206, 177, 60, 111, 227, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 313, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6428161037114289797" + }, + "fields": [] + }, + "cborHex": "d8669f1b59356a67c8342e8580ff", + "cborBytes": [216, 102, 159, 27, 89, 53, 106, 103, 200, 52, 46, 133, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 314, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10031618403420616592" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "655757540683874" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0fdb46579d752135ab768e7c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6993441095701829513" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c724858a0058e1f6d41228" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ee505d064fc2f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b602" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64a9066dab5a5b6f1f63e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ce8eb" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8b3777c9c22837909f80bf1b00025468734570624c0fdb46579d752135ab768e7c1b610db19faaed17894bc724858a0058e1f6d41228470ee505d064fc2f42b6024b64a9066dab5a5b6f1f63e8439ce8ebffffff", + "cborBytes": [ + 216, 102, 159, 27, 139, 55, 119, 201, 194, 40, 55, 144, 159, 128, 191, 27, 0, 2, 84, 104, 115, 69, 112, 98, 76, + 15, 219, 70, 87, 157, 117, 33, 53, 171, 118, 142, 124, 27, 97, 13, 177, 159, 170, 237, 23, 137, 75, 199, 36, 133, + 138, 0, 88, 225, 246, 212, 18, 40, 71, 14, 229, 5, 208, 100, 252, 47, 66, 182, 2, 75, 100, 169, 6, 109, 171, 90, + 91, 111, 31, 99, 232, 67, 156, 232, 235, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 315, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "1fe8ee4415ed6580c0ea50" + }, + { + "_tag": "ByteArray", + "bytearray": "6d900b2e78c4742f7454" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12450918569501364564" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3e17" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c9891eb4901894d408a09a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16428035574575830888" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b374e887e03b4f4ebc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11094270181901573599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "86e7c8c5f26b5627" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14099795069848484886" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15275136688335544882" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f9fa04b1fe8ee4415ed6580c0ea504a6d900b2e78c4742f7454ff9fd8669f1bacca8c789e7191549f423e17ffff4bc9891eb4901894d408a09a1be3fc1b50cc12976849b374e887e03b4f4ebcd8669f1b99f6c3f352739ddf9f4886e7c8c5f26b5627ffffff1bc3ac88e9801f7c161bd3fc2fe30bc6e232ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 159, 160, 75, 31, 232, 238, 68, 21, 237, 101, 128, + 192, 234, 80, 74, 109, 144, 11, 46, 120, 196, 116, 47, 116, 84, 255, 159, 216, 102, 159, 27, 172, 202, 140, 120, + 158, 113, 145, 84, 159, 66, 62, 23, 255, 255, 75, 201, 137, 30, 180, 144, 24, 148, 212, 8, 160, 154, 27, 227, 252, + 27, 80, 204, 18, 151, 104, 73, 179, 116, 232, 135, 224, 59, 79, 78, 188, 216, 102, 159, 27, 153, 246, 195, 243, + 82, 115, 157, 223, 159, 72, 134, 231, 200, 197, 242, 107, 86, 39, 255, 255, 255, 27, 195, 172, 136, 233, 128, 31, + 124, 22, 27, 211, 252, 47, 227, 11, 198, 226, 50, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 316, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "056c" + }, + { + "_tag": "ByteArray", + "bytearray": "423d5795cd9c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4513998540773353175" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f42056c46423d5795cd9cd8669f1b3ea4f1c1b36d66d780ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 66, 5, 108, 70, 66, 61, 87, 149, 205, 156, 216, + 102, 159, 27, 62, 164, 241, 193, 179, 109, 102, 215, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 317, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1820861879057428781" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "706098966634904644" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f87ca2ba803274" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c0c469fe2d6804ef" + }, + { + "_tag": "ByteArray", + "bytearray": "7b7eb182c1fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16194374614307114174" + } + } + ] + }, + "cborHex": "d8669f1b1945003b4e44b12d9fd8669f1b09cc9144e28b3c449f47f87ca2ba803274ffff48c0c469fe2d6804ef467b7eb182c1fb1be0bdf9e905610cbeffff", + "cborBytes": [ + 216, 102, 159, 27, 25, 69, 0, 59, 78, 68, 177, 45, 159, 216, 102, 159, 27, 9, 204, 145, 68, 226, 139, 60, 68, 159, + 71, 248, 124, 162, 186, 128, 50, 116, 255, 255, 72, 192, 196, 105, 254, 45, 104, 4, 239, 70, 123, 126, 177, 130, + 193, 251, 27, 224, 189, 249, 233, 5, 97, 12, 190, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 318, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17035884839291109573" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1780490411642613935" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11159410426665533040" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3902252256589875734" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5413733112255944227" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8464427787154078408" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12959050002873827304" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17923119437275490838" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6873806227999049261" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1aba8a3cedfc34f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7176674001143752115" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "382b8dceed012039acc78b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5015289751708865659" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "41a3f712743ca83f499b8eb2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9897139258139564656" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "74328398bf88f14db55ae7" + } + ] + } + ] + }, + "cborHex": "d8669f1bec6b9f005868c0c59f9fbf1b18b592988ff270af1b9ade30a870307e701b362795c09a018a161b4b21719518c916231b7577b039d843bac81bb3d7cb514fd1bfe8ffff1bf8bbb62addb46a161b5f64aa586ac0462d9fbf481aba8a3cedfc34f41b6398aafafaf465b34b382b8dceed012039acc78b1b4599e3750043947bff4c41a3f712743ca83f499b8eb2d8669f1b8959b3b7cdfb5a7080ff4b74328398bf88f14db55ae7ffffff", + "cborBytes": [ + 216, 102, 159, 27, 236, 107, 159, 0, 88, 104, 192, 197, 159, 159, 191, 27, 24, 181, 146, 152, 143, 242, 112, 175, + 27, 154, 222, 48, 168, 112, 48, 126, 112, 27, 54, 39, 149, 192, 154, 1, 138, 22, 27, 75, 33, 113, 149, 24, 201, + 22, 35, 27, 117, 119, 176, 57, 216, 67, 186, 200, 27, 179, 215, 203, 81, 79, 209, 191, 232, 255, 255, 27, 248, + 187, 182, 42, 221, 180, 106, 22, 27, 95, 100, 170, 88, 106, 192, 70, 45, 159, 191, 72, 26, 186, 138, 60, 237, 252, + 52, 244, 27, 99, 152, 170, 250, 250, 244, 101, 179, 75, 56, 43, 141, 206, 237, 1, 32, 57, 172, 199, 139, 27, 69, + 153, 227, 117, 0, 67, 148, 123, 255, 76, 65, 163, 247, 18, 116, 60, 168, 63, 73, 155, 142, 178, 216, 102, 159, 27, + 137, 89, 179, 183, 205, 251, 90, 112, 128, 255, 75, 116, 50, 131, 152, 191, 136, 241, 77, 181, 90, 231, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 319, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13427330796779537243" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3106fa2f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bed06ece0fddc7044d31f6ad" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8152857627884317087" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13172448613102959375" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3362397696803908651" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905009f1bba577637f7b5035b443106fa2f9f4cbed06ece0fddc7044d31f6add8669f1b7124c4d11e60e99f80ffbf1bb6cdf0391616bb0f413bff1b2ea9a2e3f796ac2bff80ff", + "cborBytes": [ + 217, 5, 0, 159, 27, 186, 87, 118, 55, 247, 181, 3, 91, 68, 49, 6, 250, 47, 159, 76, 190, 208, 110, 206, 15, 221, + 199, 4, 77, 49, 246, 173, 216, 102, 159, 27, 113, 36, 196, 209, 30, 96, 233, 159, 128, 255, 191, 27, 182, 205, + 240, 57, 22, 22, 187, 15, 65, 59, 255, 27, 46, 169, 162, 227, 247, 150, 172, 43, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 320, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17857104126466924474" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4492153975195135542" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8677625363086180971" + } + }, + { + "_tag": "ByteArray", + "bytearray": "24151705a601" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc2df44b10ca6d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11742387217321120420" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2333173980940283217" + } + } + ] + }, + "cborHex": "d905039f9fd8669f1bf7d12d978f391fba9f1b3e57563d6fdd6e361b786d1e4aacac026b4624151705a601ffffff47fc2df44b10ca6dd8669f1ba2f556f5d78352a480ff1b2061195fbd212d51ff", + "cborBytes": [ + 217, 5, 3, 159, 159, 216, 102, 159, 27, 247, 209, 45, 151, 143, 57, 31, 186, 159, 27, 62, 87, 86, 61, 111, 221, + 110, 54, 27, 120, 109, 30, 74, 172, 172, 2, 107, 70, 36, 21, 23, 5, 166, 1, 255, 255, 255, 71, 252, 45, 244, 75, + 16, 202, 109, 216, 102, 159, 27, 162, 245, 86, 245, 215, 131, 82, 164, 128, 255, 27, 32, 97, 25, 95, 189, 33, 45, + 81, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 321, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17481888665942356681" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c14f71cd3bf71d2f81e4" + }, + { + "_tag": "ByteArray", + "bytearray": "91273334926d2613ae" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5684176913823057832" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b87ae9899c" + }, + { + "_tag": "ByteArray", + "bytearray": "0f709b2a3105eb21" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10086949588335896839" + } + }, + { + "_tag": "ByteArray", + "bytearray": "48659e01721c337c29e62d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "54f39c240d9a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11591694481472888894" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05d0" + }, + { + "_tag": "ByteArray", + "bytearray": "1b6d73faa5fb23bc" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2415258037067678043" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9c36af02a42" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10838501369233110683" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e743b685ba2db66a96" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14938995565228434360" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8828882900204363628" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1b12a6d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2423518612112398338" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4157bcce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4873203194184721251" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4db4a9adcfeec5bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a99bf9fb982ed42a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a37402d3fe2c5816c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17879460793992487763" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddb14f8040" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "baacf2cbe6c05c8d1843" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc46298b94ba905b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67df6b386d0207305d" + } + } + ] + } + ] + }, + "cborHex": "d87a9f9f1bf29c251e606bf2c94ac14f71cd3bf71d2f81e44991273334926d2613aed8669f1b4ee240c97ce647a89f45b87ae9899c480f709b2a3105eb211b8bfc0b352808a9074b48659e01721c337c29e62dffff9f4654f39c240d9a1ba0ddf8b7290c203e4205d0481b6d73faa5fb23bcffffbf1b2184b8635c53815b46c9c36af02a421b966a17920ab9769b49e743b685ba2db66a961bcf51f950fe93a3b81b7a867e3866339f6cff441b12a6d31b21a211565d81d802bf444157bcce1b43a1187c5bade363484db4a9adcfeec5bf48a99bf9fb982ed42a49a37402d3fe2c5816c41bf8209adcd972235345ddb14f80404abaacf2cbe6c05c8d184348fc46298b94ba905b4967df6b386d0207305dffff", + "cborBytes": [ + 216, 122, 159, 159, 27, 242, 156, 37, 30, 96, 107, 242, 201, 74, 193, 79, 113, 205, 59, 247, 29, 47, 129, 228, 73, + 145, 39, 51, 52, 146, 109, 38, 19, 174, 216, 102, 159, 27, 78, 226, 64, 201, 124, 230, 71, 168, 159, 69, 184, 122, + 233, 137, 156, 72, 15, 112, 155, 42, 49, 5, 235, 33, 27, 139, 252, 11, 53, 40, 8, 169, 7, 75, 72, 101, 158, 1, + 114, 28, 51, 124, 41, 230, 45, 255, 255, 159, 70, 84, 243, 156, 36, 13, 154, 27, 160, 221, 248, 183, 41, 12, 32, + 62, 66, 5, 208, 72, 27, 109, 115, 250, 165, 251, 35, 188, 255, 255, 191, 27, 33, 132, 184, 99, 92, 83, 129, 91, + 70, 201, 195, 106, 240, 42, 66, 27, 150, 106, 23, 146, 10, 185, 118, 155, 73, 231, 67, 182, 133, 186, 45, 182, + 106, 150, 27, 207, 81, 249, 80, 254, 147, 163, 184, 27, 122, 134, 126, 56, 102, 51, 159, 108, 255, 68, 27, 18, + 166, 211, 27, 33, 162, 17, 86, 93, 129, 216, 2, 191, 68, 65, 87, 188, 206, 27, 67, 161, 24, 124, 91, 173, 227, 99, + 72, 77, 180, 169, 173, 207, 238, 197, 191, 72, 169, 155, 249, 251, 152, 46, 212, 42, 73, 163, 116, 2, 211, 254, + 44, 88, 22, 196, 27, 248, 32, 154, 220, 217, 114, 35, 83, 69, 221, 177, 79, 128, 64, 74, 186, 172, 242, 203, 230, + 192, 92, 141, 24, 67, 72, 252, 70, 41, 139, 148, 186, 144, 91, 73, 103, 223, 107, 56, 109, 2, 7, 48, 93, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 322, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11723858228625381530" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15027965024727633408" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14298755450265524077" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11240113529070340037" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18349383880793056925" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12876120020378864400" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d921ff5b0c546b591b1c12" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "434129cf0c" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "607534065251973605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac26e182293d7cbc0d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1173198173582532881" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9b3451d8c0402319a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7960315625604922938" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4475305913285180642" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8818250084169798777" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc298300" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12074256583191395898" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e30322848552ad" + } + } + ] + } + ] + }, + "cborHex": "d8669f1ba2b382f17a41989a9fd8669f1bd08e0e9183e28e009f1bc66f6252ef41d76d9f1b9bfce7b3b74cc7c51bfea61b6b9df2e69d1bb2b12af01bfa4b104bd921ff5b0c546b591b1c12ff9f45434129cf0cffffffbf1b086e6503744af9e549ac26e182293d7cbc0d1b10480985e386211149e9b3451d8c0402319a1b6e78b8e2cc2c3e3a1b3e1b7b0456917ce21b7a60b7baff7fd47944dc2983001ba7906063e80b7e3a47e30322848552adffffff", + "cborBytes": [ + 216, 102, 159, 27, 162, 179, 130, 241, 122, 65, 152, 154, 159, 216, 102, 159, 27, 208, 142, 14, 145, 131, 226, + 142, 0, 159, 27, 198, 111, 98, 82, 239, 65, 215, 109, 159, 27, 155, 252, 231, 179, 183, 76, 199, 197, 27, 254, + 166, 27, 107, 157, 242, 230, 157, 27, 178, 177, 42, 240, 27, 250, 75, 16, 75, 217, 33, 255, 91, 12, 84, 107, 89, + 27, 28, 18, 255, 159, 69, 67, 65, 41, 207, 12, 255, 255, 255, 191, 27, 8, 110, 101, 3, 116, 74, 249, 229, 73, 172, + 38, 225, 130, 41, 61, 124, 188, 13, 27, 16, 72, 9, 133, 227, 134, 33, 17, 73, 233, 179, 69, 29, 140, 4, 2, 49, + 154, 27, 110, 120, 184, 226, 204, 44, 62, 58, 27, 62, 27, 123, 4, 86, 145, 124, 226, 27, 122, 96, 183, 186, 255, + 127, 212, 121, 68, 220, 41, 131, 0, 27, 167, 144, 96, 99, 232, 11, 126, 58, 71, 227, 3, 34, 132, 133, 82, 173, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 323, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "91" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14563632420578183360" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87f9f4191bf1bffffffffffffffef11ff1bca1c6a866becc8c09fa0d8669f1bfffffffffffffff29f0affffffff", + "cborBytes": [ + 216, 127, 159, 65, 145, 191, 27, 255, 255, 255, 255, 255, 255, 255, 239, 17, 255, 27, 202, 28, 106, 134, 107, 236, + 200, 192, 159, 160, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 10, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 324, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4958469800145911309" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6884848437191484011" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a1e5c5bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10232420758055901875" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4071415561286229583" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b44d006031b32fe0d9f9f1b5f8be52d1733a26b9f44a1e5c5bc1b8e00dc773c415ab31b388092e1b7769e4fffa0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 68, 208, 6, 3, 27, 50, 254, 13, 159, 159, 27, 95, 139, 229, 45, 23, 51, 162, 107, 159, 68, 161, + 229, 197, 188, 27, 142, 0, 220, 119, 60, 65, 90, 179, 27, 56, 128, 146, 225, 183, 118, 158, 79, 255, 160, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 325, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10171230902939855121" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6651681027142049095" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7e75544b" + }, + { + "_tag": "ByteArray", + "bytearray": "0f93" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2275479574969749653" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8191461264341542314" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4208324391047662394" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1481841820802683073" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9244151669691537626" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5ac25b31" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e35c92e8dfc2ba6b" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fa09c721a929f0a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b64de299fdfc289bd3f3e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "453195688c0dc1b6ab63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9386485670085387073" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12836437460217484984" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90c5a4c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9282587185000164718" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62426bb69eaf6b4a668e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfbd7377" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "499a730aa2be33" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4c8d01785178bf445211ed" + }, + { + "_tag": "ByteArray", + "bytearray": "ee3721ae45" + }, + { + "_tag": "ByteArray", + "bytearray": "7b8860731ba7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14652231963759118162" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b8d27789de234a9119fd8669f1b5c4f84a6ee01dd4780ff447e75544b420f939fd8669f1b1f94209e0fba90959f1b71adea9ea47325aa1b3a66f8bcac020b3a1b14908f48ee4310c11b8049d2f749cc58da445ac25b31ffff48e35c92e8dfc2ba6bff9fbf483fa09c721a929f0a4b0b64de299fdfc289bd3f3e4a453195688c0dc1b6ab631b82437efc36bbe341414c1bb2242fdc15c7d6b84490c5a4c91b80d25fdd0e872d6e41d64a62426bb69eaf6b4a668e44dfbd737747499a730aa2be33ff9f4b4c8d01785178bf445211ed45ee3721ae45467b8860731ba71bcb572f57167c8752ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 141, 39, 120, 157, 226, 52, 169, 17, 159, 216, 102, 159, 27, 92, 79, 132, 166, 238, 1, 221, 71, + 128, 255, 68, 126, 117, 84, 75, 66, 15, 147, 159, 216, 102, 159, 27, 31, 148, 32, 158, 15, 186, 144, 149, 159, 27, + 113, 173, 234, 158, 164, 115, 37, 170, 27, 58, 102, 248, 188, 172, 2, 11, 58, 27, 20, 144, 143, 72, 238, 67, 16, + 193, 27, 128, 73, 210, 247, 73, 204, 88, 218, 68, 90, 194, 91, 49, 255, 255, 72, 227, 92, 146, 232, 223, 194, 186, + 107, 255, 159, 191, 72, 63, 160, 156, 114, 26, 146, 159, 10, 75, 11, 100, 222, 41, 159, 223, 194, 137, 189, 63, + 62, 74, 69, 49, 149, 104, 140, 13, 193, 182, 171, 99, 27, 130, 67, 126, 252, 54, 187, 227, 65, 65, 76, 27, 178, + 36, 47, 220, 21, 199, 214, 184, 68, 144, 197, 164, 201, 27, 128, 210, 95, 221, 14, 135, 45, 110, 65, 214, 74, 98, + 66, 107, 182, 158, 175, 107, 74, 102, 142, 68, 223, 189, 115, 119, 71, 73, 154, 115, 10, 162, 190, 51, 255, 159, + 75, 76, 141, 1, 120, 81, 120, 191, 68, 82, 17, 237, 69, 238, 55, 33, 174, 69, 70, 123, 136, 96, 115, 27, 167, 27, + 203, 87, 47, 87, 22, 124, 135, 82, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 326, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15026335620833756406" + } + } + ] + }, + "cborHex": "d905089f1bffffffffffffffee1bd08844a25b9844f6ff", + "cborBytes": [ + 217, 5, 8, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 27, 208, 136, 68, 162, 91, 152, 68, 246, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 327, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18034960675067045382" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15548037880597953803" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b1053d3b87f6b3d774aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72fad5e2" + }, + { + "_tag": "ByteArray", + "bytearray": "58af343eb30bee" + } + ] + }, + "cborHex": "d8669f1bfa490d2e3f82a6069fd8669f1bd7c5ba134b5bbd0b80ff4ab1053d3b87f6b3d774aa1bfffffffffffffff54472fad5e24758af343eb30beeffff", + "cborBytes": [ + 216, 102, 159, 27, 250, 73, 13, 46, 63, 130, 166, 6, 159, 216, 102, 159, 27, 215, 197, 186, 19, 75, 91, 189, 11, + 128, 255, 74, 177, 5, 61, 59, 135, 246, 179, 215, 116, 170, 27, 255, 255, 255, 255, 255, 255, 255, 245, 68, 114, + 250, 213, 226, 71, 88, 175, 52, 62, 179, 11, 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 328, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13188485629147373966" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f0fa" + } + ] + }, + "cborHex": "d8669f1bb706e9cddaac618e9fd9050a9fa0ff42f0faffff", + "cborBytes": [ + 216, 102, 159, 27, 183, 6, 233, 205, 218, 172, 97, 142, 159, 217, 5, 10, 159, 160, 255, 66, 240, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 329, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17659754218456472113" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "86af86e2819420" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17417461251174107050" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7421293850649929011" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17691479267564457762" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1447521148722308076" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17031385913022309120" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9728586196392519174" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1727492148164262668" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b0ca54281" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22e5a4ddc93026" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d70f16b1c8369804" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15149871877309771357" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12776485935517155324" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ed06700e6" + } + ] + }, + "cborHex": "d8669f1bf5140ce573cdda319fbf4786af86e28194201bf1b740b9ed5d07aa42d6c41b66fdbb6ffdc7a533ffd8669f1bf584c2a90e5e0f229fbf1b1416a0d0c27563ec1bec5ba340724963001b8702e199f2bea6061b17f948f4c39b7b0cffa0ffffbf457b0ca542814722e5a4ddc9302648d70f16b1c83698041bd23f283477baae5dff1bb14f324400463ffc454ed06700e6ffff", + "cborBytes": [ + 216, 102, 159, 27, 245, 20, 12, 229, 115, 205, 218, 49, 159, 191, 71, 134, 175, 134, 226, 129, 148, 32, 27, 241, + 183, 64, 185, 237, 93, 7, 170, 66, 214, 196, 27, 102, 253, 187, 111, 253, 199, 165, 51, 255, 216, 102, 159, 27, + 245, 132, 194, 169, 14, 94, 15, 34, 159, 191, 27, 20, 22, 160, 208, 194, 117, 99, 236, 27, 236, 91, 163, 64, 114, + 73, 99, 0, 27, 135, 2, 225, 153, 242, 190, 166, 6, 27, 23, 249, 72, 244, 195, 155, 123, 12, 255, 160, 255, 255, + 191, 69, 123, 12, 165, 66, 129, 71, 34, 229, 164, 221, 201, 48, 38, 72, 215, 15, 22, 177, 200, 54, 152, 4, 27, + 210, 63, 40, 52, 119, 186, 174, 93, 255, 27, 177, 79, 50, 68, 0, 70, 63, 252, 69, 78, 208, 103, 0, 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 330, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01f96b5e03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9314a1f217d7035881" + } + } + ] + } + ] + }, + "cborHex": "d87b9f416fbf4501f96b5e0300412c499314a1f217d7035881ffff", + "cborBytes": [ + 216, 123, 159, 65, 111, 191, 69, 1, 249, 107, 94, 3, 0, 65, 44, 73, 147, 20, 161, 242, 23, 215, 3, 88, 129, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 331, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05be" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9392870861400380216" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050c9f9f4205bed8669f1b825a2e486ae313389f1bfffffffffffffff8ffffffff", + "cborBytes": [ + 217, 5, 12, 159, 159, 66, 5, 190, 216, 102, 159, 27, 130, 90, 46, 72, 106, 227, 19, 56, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 248, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 332, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15436221869154504441" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11927185367243061679" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15492988686097405092" + } + } + ] + }, + "cborHex": "d8669f1bd6387a0161120ef99fd8669f1ba585dfe608c279af80ff1bd702271fe7fb54a4ffff", + "cborBytes": [ + 216, 102, 159, 27, 214, 56, 122, 1, 97, 18, 14, 249, 159, 216, 102, 159, 27, 165, 133, 223, 230, 8, 194, 121, 175, + 128, 255, 27, 215, 2, 39, 31, 231, 251, 84, 164, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 333, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d4b18af29f59cf691a70" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5649514037751101211" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13731459558979592393" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16245552599690759000" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3571624503538295215" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a965537e84c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0503e100fa0701b5038177" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "92" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f804ad4b18af29f59cf691a709f1b4e671b15bdbcb71b1bbe8ff1b76c9ee0c91be173cc044c7dcb581b3190f5900c7b21afffbf1bfffffffffffffffe464a965537e84c4b0503e100fa0701b5038177414fff4192ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 128, 74, 212, 177, 138, 242, 159, 89, 207, 105, + 26, 112, 159, 27, 78, 103, 27, 21, 189, 188, 183, 27, 27, 190, 143, 241, 183, 108, 158, 224, 201, 27, 225, 115, + 204, 4, 76, 125, 203, 88, 27, 49, 144, 245, 144, 12, 123, 33, 175, 255, 191, 27, 255, 255, 255, 255, 255, 255, + 255, 254, 70, 74, 150, 85, 55, 232, 76, 75, 5, 3, 225, 0, 250, 7, 1, 181, 3, 129, 119, 65, 79, 255, 65, 146, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 334, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6557537216143493165" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7093333802534157700" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7ac5c324b435a6ef125cc7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2057634430635950857" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4886279549212479934" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5053026755696544553" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "703d7c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6939625206952542563" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8936436538265375040" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7717242300737332036" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8df8f162fa9aa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12565874895551575197" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11747180103224826497" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2583378987791552870" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "81faf9" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5b010d5ad1a3082d9fd8669f1b62709582e551bd8480ff9f4b7ac5c324b435a6ef125cc7bf1b1c8e2f9ce3ab43091b43cf8d5c8410d1be1b461ff50fedd64b2943703d7c1b604e805ba6c0c1631b7c0499af2d2111401b6b1926fc1d11234447a8df8f162fa9aa1bae62f4a40159b49d1ba3065e108d409a81ffd8669f1b23da01808786116680ff9f4381faf9ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 91, 1, 13, 90, 209, 163, 8, 45, 159, 216, 102, 159, 27, 98, 112, 149, 130, 229, 81, 189, 132, + 128, 255, 159, 75, 122, 197, 195, 36, 180, 53, 166, 239, 18, 92, 199, 191, 27, 28, 142, 47, 156, 227, 171, 67, 9, + 27, 67, 207, 141, 92, 132, 16, 209, 190, 27, 70, 31, 245, 15, 237, 214, 75, 41, 67, 112, 61, 124, 27, 96, 78, 128, + 91, 166, 192, 193, 99, 27, 124, 4, 153, 175, 45, 33, 17, 64, 27, 107, 25, 38, 252, 29, 17, 35, 68, 71, 168, 223, + 143, 22, 47, 169, 170, 27, 174, 98, 244, 164, 1, 89, 180, 157, 27, 163, 6, 94, 16, 141, 64, 154, 129, 255, 216, + 102, 159, 27, 35, 218, 1, 128, 135, 134, 17, 102, 128, 255, 159, 67, 129, 250, 249, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 335, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12190509387499175598" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "180671777752354932" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12762791527086417092" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d" + }, + { + "_tag": "ByteArray", + "bytearray": "64" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5401577240668395355" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17993839180913023978" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "83e887f3f1bd66" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "156200806824199439" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13360251146580367540" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16019512105067421887" + } + } + ] + }, + "cborHex": "d8669f1ba92d63b328f3feae9fa0d8669f1b0281e0064dde10749fd8669f1bb11e8b461259e4c49f412d4164ffff801b4af641e1b0dfd75bd8669f1bf9b6f5664bd39bea9f4783e887f3f1bd661b022aefce6462c50f1bb96925a1d5ed98b4ffffffff1bde50bd62719d20bfffff", + "cborBytes": [ + 216, 102, 159, 27, 169, 45, 99, 179, 40, 243, 254, 174, 159, 160, 216, 102, 159, 27, 2, 129, 224, 6, 77, 222, 16, + 116, 159, 216, 102, 159, 27, 177, 30, 139, 70, 18, 89, 228, 196, 159, 65, 45, 65, 100, 255, 255, 128, 27, 74, 246, + 65, 225, 176, 223, 215, 91, 216, 102, 159, 27, 249, 182, 245, 102, 75, 211, 155, 234, 159, 71, 131, 232, 135, 243, + 241, 189, 102, 27, 2, 42, 239, 206, 100, 98, 197, 15, 27, 185, 105, 37, 161, 213, 237, 152, 180, 255, 255, 255, + 255, 27, 222, 80, 189, 98, 113, 157, 32, 191, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 336, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14765680002795586162" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bccea3bbb09b842729f80ffff", + "cborBytes": [216, 102, 159, 27, 204, 234, 59, 187, 9, 184, 66, 114, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 337, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6237956046411068361" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0448983c09b9aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10900212809142620931" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8298702210930454587" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10807103991693191553" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "86dd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10549750369062842067" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ac9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8022767271499069026" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17957772562315233967" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b5691abf95ed4f3c99f80470448983c09b9aa1b974555cc511bd303d8669f1b732ae9b14342303b9fd8669f1b95fa8bd26b9429819f4286dd1b92683e10d1096ed3424ac91b6f569853b554f662ffff1bf936d300460e4aafffffffff", + "cborBytes": [ + 216, 102, 159, 27, 86, 145, 171, 249, 94, 212, 243, 201, 159, 128, 71, 4, 72, 152, 60, 9, 185, 170, 27, 151, 69, + 85, 204, 81, 27, 211, 3, 216, 102, 159, 27, 115, 42, 233, 177, 67, 66, 48, 59, 159, 216, 102, 159, 27, 149, 250, + 139, 210, 107, 148, 41, 129, 159, 66, 134, 221, 27, 146, 104, 62, 16, 209, 9, 110, 211, 66, 74, 201, 27, 111, 86, + 152, 83, 181, 84, 246, 98, 255, 255, 27, 249, 54, 211, 0, 70, 14, 74, 175, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 338, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [] + }, + "cborHex": "d9050b80", + "cborBytes": [217, 5, 11, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 339, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "418012896977979202" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17533274610417372854" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6f74d4e165" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7665879261919594867" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4023403034376245989" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1596764240972722697" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5690966329025931854" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10962133476416873360" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "420690cecd3695b574b9f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11785167847325154660" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cea4d3aeafb168fa2e382d5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3590137351666382709" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5b023" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3567116269970339906" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3157880" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0ca18b1ed7d6b70cf017e" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a8253fdf1c505e4b84" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13909102359354049759" + }, + "fields": [] + } + ] + }, + "cborHex": "d905099f9f1b05cd1483dbe78742ff1bf352b45ce74d8eb69f456f74d4e165d8669f1b6a62ac92b9c049739f1b37d5ffbe2c3992e51b1628d89dfd39b209ffff1b4efa5fb9664caa4ed8669f1b98215251223ee39080ffbf4b420690cecd3695b574b9f91ba38d53b7762bbd6441624c1cea4d3aeafb168fa2e382d54273e31b31d2bae664efb77543d5b0231b3180f1592019384244f31578804bf0ca18b1ed7d6b70cf017effff49a8253fdf1c505e4b84d8669f1bc1070ee6f9d884df80ffff", + "cborBytes": [ + 217, 5, 9, 159, 159, 27, 5, 205, 20, 131, 219, 231, 135, 66, 255, 27, 243, 82, 180, 92, 231, 77, 142, 182, 159, + 69, 111, 116, 212, 225, 101, 216, 102, 159, 27, 106, 98, 172, 146, 185, 192, 73, 115, 159, 27, 55, 213, 255, 190, + 44, 57, 146, 229, 27, 22, 40, 216, 157, 253, 57, 178, 9, 255, 255, 27, 78, 250, 95, 185, 102, 76, 170, 78, 216, + 102, 159, 27, 152, 33, 82, 81, 34, 62, 227, 144, 128, 255, 191, 75, 66, 6, 144, 206, 205, 54, 149, 181, 116, 185, + 249, 27, 163, 141, 83, 183, 118, 43, 189, 100, 65, 98, 76, 28, 234, 77, 58, 234, 251, 22, 143, 162, 227, 130, 213, + 66, 115, 227, 27, 49, 210, 186, 230, 100, 239, 183, 117, 67, 213, 176, 35, 27, 49, 128, 241, 89, 32, 25, 56, 66, + 68, 243, 21, 120, 128, 75, 240, 202, 24, 177, 237, 125, 107, 112, 207, 1, 126, 255, 255, 73, 168, 37, 63, 223, 28, + 80, 94, 75, 132, 216, 102, 159, 27, 193, 7, 14, 230, 249, 216, 132, 223, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 340, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4337636769457737126" + }, + "fields": [] + }, + "cborHex": "d8669f1b3c3261a8f8338da680ff", + "cborBytes": [216, 102, 159, 27, 60, 50, 97, 168, 248, 51, 141, 166, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 341, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11746770750663735439" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11634214604008426975" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2223390637013036419" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9dead87c7117439" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12507762667603693609" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12596328267411871907" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3383519828848373891" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14820681032059668849" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4814344073808197919" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e300807901" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5964377067935244416" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17146519554082323613" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16671177632956492237" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2547996270183887002" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14953297401681003594" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16329389695147343739" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f1ba304e9c2bb42b88fd8669f1ba175088aa8958ddf9fbf1b1edb12011c176d8348f9dead87c71174391bad947fe0916910291baecf25d22d4bd8a3ffbf1b2ef4ad5b90ff70831bcdada2e0154949711b42cffc6d79d8391f45e3008079011b52c5b957b8c420801bedf4acb0335dbc9d1be75bebbabfcf29cd1b235c4d1b9d54b09aff1bcf84c8c2c7f7c44affffd8669f1be29da569322e7f7b80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 27, 163, 4, 233, 194, 187, 66, 184, 143, 216, 102, + 159, 27, 161, 117, 8, 138, 168, 149, 141, 223, 159, 191, 27, 30, 219, 18, 1, 28, 23, 109, 131, 72, 249, 222, 173, + 135, 199, 17, 116, 57, 27, 173, 148, 127, 224, 145, 105, 16, 41, 27, 174, 207, 37, 210, 45, 75, 216, 163, 255, + 191, 27, 46, 244, 173, 91, 144, 255, 112, 131, 27, 205, 173, 162, 224, 21, 73, 73, 113, 27, 66, 207, 252, 109, + 121, 216, 57, 31, 69, 227, 0, 128, 121, 1, 27, 82, 197, 185, 87, 184, 196, 32, 128, 27, 237, 244, 172, 176, 51, + 93, 188, 157, 27, 231, 91, 235, 186, 191, 207, 41, 205, 27, 35, 92, 77, 27, 157, 84, 176, 154, 255, 27, 207, 132, + 200, 194, 199, 247, 196, 74, 255, 255, 216, 102, 159, 27, 226, 157, 165, 105, 50, 46, 127, 123, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 342, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8184461169871796237" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14309446908984426951" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14203338986510589504" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12515428712736679539" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5f7a1d007feca7bc1787995" + }, + { + "_tag": "ByteArray", + "bytearray": "618eecbc6623" + }, + { + "_tag": "ByteArray", + "bytearray": "4e40e790e25ba13bcb39d25b" + }, + { + "_tag": "ByteArray", + "bytearray": "b9e5611548b021f2856e26" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0e3963" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4843116558037941665" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2517721296648658713" + }, + "fields": [] + } + ] + }, + "cborHex": "d87e9fd8669f1b71950c12242fb80d9fd8669f1bc6955e26265401c780ffd8669f1bc51c658e436b9e409f1badafbc1aca64e6734cf5f7a1d007feca7bc178799546618eecbc66234c4e40e790e25ba13bcb39d25b4bb9e5611548b021f2856e26ffff430e3963ffff1b433634d97fa9fda1d8669f1b22f0be2e0a2ddf1980ffff", + "cborBytes": [ + 216, 126, 159, 216, 102, 159, 27, 113, 149, 12, 18, 36, 47, 184, 13, 159, 216, 102, 159, 27, 198, 149, 94, 38, 38, + 84, 1, 199, 128, 255, 216, 102, 159, 27, 197, 28, 101, 142, 67, 107, 158, 64, 159, 27, 173, 175, 188, 26, 202, + 100, 230, 115, 76, 245, 247, 161, 208, 7, 254, 202, 123, 193, 120, 121, 149, 70, 97, 142, 236, 188, 102, 35, 76, + 78, 64, 231, 144, 226, 91, 161, 59, 203, 57, 210, 91, 75, 185, 229, 97, 21, 72, 176, 33, 242, 133, 110, 38, 255, + 255, 67, 14, 57, 99, 255, 255, 27, 67, 54, 52, 217, 127, 169, 253, 161, 216, 102, 159, 27, 34, 240, 190, 46, 10, + 45, 223, 25, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 343, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "95a406a6915b" + } + ] + }, + "cborHex": "d9050b9f4695a406a6915bff", + "cborBytes": [217, 5, 11, 159, 70, 149, 164, 6, 166, 145, 91, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 344, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ed7646104b87456221d32e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f6b56406aa0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6aff8a02fce5070407" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46d73c4fdbe341ba9888" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd018501029a36bb0714ff02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d528add4e06b606d317798" + } + } + ] + } + ] + }, + "cborHex": "d905099fbf4c2ed7646104b87456221d32e6464f6b56406aa0496aff8a02fce50704074a46d73c4fdbe341ba98884ccd018501029a36bb0714ff024bd528add4e06b606d317798ffff", + "cborBytes": [ + 217, 5, 9, 159, 191, 76, 46, 215, 100, 97, 4, 184, 116, 86, 34, 29, 50, 230, 70, 79, 107, 86, 64, 106, 160, 73, + 106, 255, 138, 2, 252, 229, 7, 4, 7, 74, 70, 215, 60, 79, 219, 227, 65, 186, 152, 136, 76, 205, 1, 133, 1, 2, 154, + 54, 187, 7, 20, 255, 2, 75, 213, 40, 173, 212, 224, 107, 96, 109, 49, 119, 152, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 345, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a795b84b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d4dbefacfd4295b9b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "697659" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "483247177264267193" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "171a7bdf72ea0f8d3598ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11845640250119749706" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "26ab8632443c667503776cb2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16313722178801669493" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a79177" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18259132674628432723" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4c3e7a42b66" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91c65e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5c115c9ef3e6a8f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7731674645914019363" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c813147d9d0f5399c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd3025617ef5e8" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6246915717184958071" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4352431881986249119" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3291469041794827653" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c721d55bf9" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dd" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "169cc9275aba9745f9b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6503" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17642449354456439688" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4713d4477d707c89f47e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "476338352799364223" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5f26fbcddce00bfb16c44" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4fdbc6a52771a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fff8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "263596" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "43717384875489663" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15424721040508042306" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cc98ca954823e0f2dbb12f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16837737884820657501" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c352e6e944568" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11549573586801597489" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3eecc5cccbd5d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6626d24774874f99f5e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f07e8274238129f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4066e347706d3122e8dc" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "686dcd1546f589" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10820705861931853748" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df62ea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12918728262333740547" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f18292e5b028167530f7c5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18248557049013139217" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "edcf0e04885890a1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdac3919086b0ce3e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d905019f9fbf44a795b84b497d4dbefacfd4295b9bff436976591b06b4d6bf538bffb9bf4b171a7bdf72ea0f8d3598ad1ba4642b0bed75004a4c26ab8632443c667503776cb21be265fbe347e2957543a791771bfd65786d31f4b35346b4c3e7a42b664391c65e48b5c115c9ef3e6a8f1b6b4c6d205499662349c813147d9d0f5399c447fd3025617ef5e8ffff9f1bfffffffffffffff91b56b180bf489d2e77ffd8669f1b3c66f1bc8ae0119f9f9f1b2dada5a79160458545c721d55bf9ff41ddffffbf4a169cc9275aba9745f9b942650341421bf4d69236d4321b884a4713d4477d707c89f47e1b069c4b354780347f4bc5f26fbcddce00bfb16c441247d4fdbc6a52771a1bffffffffffffffee42fff805ff9fbf432635961b009b50badc03397f414b1bd60f9e100af9bc424c4cc98ca954823e0f2dbb12f31be9aba96565df555d478c352e6e9445681ba04853fc248b1c3147d3eecc5cccbd5d4a6626d24774874f99f5e848f07e8274238129f24a4066e347706d3122e8dcff8047686dcd1546f589bf1b962adea69f6f67b443df62ea1bb3488ae88233b6034bf18292e5b028167530f7c51bfd3fe5f379e0f71148edcf0e04885890a149bdac3919086b0ce3e2419dff80ffff", + "cborBytes": [ + 217, 5, 1, 159, 159, 191, 68, 167, 149, 184, 75, 73, 125, 77, 190, 250, 207, 212, 41, 91, 155, 255, 67, 105, 118, + 89, 27, 6, 180, 214, 191, 83, 139, 255, 185, 191, 75, 23, 26, 123, 223, 114, 234, 15, 141, 53, 152, 173, 27, 164, + 100, 43, 11, 237, 117, 0, 74, 76, 38, 171, 134, 50, 68, 60, 102, 117, 3, 119, 108, 178, 27, 226, 101, 251, 227, + 71, 226, 149, 117, 67, 167, 145, 119, 27, 253, 101, 120, 109, 49, 244, 179, 83, 70, 180, 195, 231, 164, 43, 102, + 67, 145, 198, 94, 72, 181, 193, 21, 201, 239, 62, 106, 143, 27, 107, 76, 109, 32, 84, 153, 102, 35, 73, 200, 19, + 20, 125, 157, 15, 83, 153, 196, 71, 253, 48, 37, 97, 126, 245, 232, 255, 255, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 249, 27, 86, 177, 128, 191, 72, 157, 46, 119, 255, 216, 102, 159, 27, 60, 102, 241, 188, 138, 224, 17, + 159, 159, 159, 27, 45, 173, 165, 167, 145, 96, 69, 133, 69, 199, 33, 213, 91, 249, 255, 65, 221, 255, 255, 191, + 74, 22, 156, 201, 39, 90, 186, 151, 69, 249, 185, 66, 101, 3, 65, 66, 27, 244, 214, 146, 54, 212, 50, 27, 136, 74, + 71, 19, 212, 71, 125, 112, 124, 137, 244, 126, 27, 6, 156, 75, 53, 71, 128, 52, 127, 75, 197, 242, 111, 188, 221, + 206, 0, 191, 177, 108, 68, 18, 71, 212, 253, 188, 106, 82, 119, 26, 27, 255, 255, 255, 255, 255, 255, 255, 238, + 66, 255, 248, 5, 255, 159, 191, 67, 38, 53, 150, 27, 0, 155, 80, 186, 220, 3, 57, 127, 65, 75, 27, 214, 15, 158, + 16, 10, 249, 188, 66, 76, 76, 201, 140, 169, 84, 130, 62, 15, 45, 187, 18, 243, 27, 233, 171, 169, 101, 101, 223, + 85, 93, 71, 140, 53, 46, 110, 148, 69, 104, 27, 160, 72, 83, 252, 36, 139, 28, 49, 71, 211, 238, 204, 92, 204, + 189, 93, 74, 102, 38, 210, 71, 116, 135, 79, 153, 245, 232, 72, 240, 126, 130, 116, 35, 129, 41, 242, 74, 64, 102, + 227, 71, 112, 109, 49, 34, 232, 220, 255, 128, 71, 104, 109, 205, 21, 70, 245, 137, 191, 27, 150, 42, 222, 166, + 159, 111, 103, 180, 67, 223, 98, 234, 27, 179, 72, 138, 232, 130, 51, 182, 3, 75, 241, 130, 146, 229, 176, 40, 22, + 117, 48, 247, 197, 27, 253, 63, 229, 243, 121, 224, 247, 17, 72, 237, 207, 14, 4, 136, 88, 144, 161, 73, 189, 172, + 57, 25, 8, 107, 12, 227, 226, 65, 157, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 346, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2608329729441780756" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "21a13a21b6cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9263716950570252531" + } + } + ] + }, + "cborHex": "d8669f1b2432a611c477d4149f4621a13a21b6cc1b808f557c3a8138f3ffff", + "cborBytes": [ + 216, 102, 159, 27, 36, 50, 166, 17, 196, 119, 212, 20, 159, 70, 33, 161, 58, 33, 182, 204, 27, 128, 143, 85, 124, + 58, 129, 56, 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 347, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7890495228954104419" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17777242336720158813" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6317199091664897187" + } + } + ] + }, + "cborHex": "d8669f1b6d80ab9ae7b952639fd8669f1bf6b573b7a63d805d80ff1b57ab331a9a1b44a3ffff", + "cborBytes": [ + 216, 102, 159, 27, 109, 128, 171, 154, 231, 185, 82, 99, 159, 216, 102, 159, 27, 246, 181, 115, 183, 166, 61, 128, + 93, 128, 255, 27, 87, 171, 51, 26, 154, 27, 68, 163, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 348, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c0078df6a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0dfc29782f772aaf152b35" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47b84cb1d329cecb93eb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e836001e67d5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5aa558ed81f428170ed4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11575161673600452801" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c836cb7ce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad4d70ea36c68114" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8515360209297077283" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "07ea1c8abd9a" + } + ] + }, + "cborHex": "d905089fbf453c0078df6a4b0dfc29782f772aaf152b354a47b84cb1d329cecb93eb46e836001e67d54a5aa558ed81f428170ed41ba0a33c36dcabc8c14171450c836cb7ce48ad4d70ea36c681141b762ca2fe79a5f423ff4607ea1c8abd9aff", + "cborBytes": [ + 217, 5, 8, 159, 191, 69, 60, 0, 120, 223, 106, 75, 13, 252, 41, 120, 47, 119, 42, 175, 21, 43, 53, 74, 71, 184, + 76, 177, 211, 41, 206, 203, 147, 235, 70, 232, 54, 0, 30, 103, 213, 74, 90, 165, 88, 237, 129, 244, 40, 23, 14, + 212, 27, 160, 163, 60, 54, 220, 171, 200, 193, 65, 113, 69, 12, 131, 108, 183, 206, 72, 173, 77, 112, 234, 54, + 198, 129, 20, 27, 118, 44, 162, 254, 121, 165, 244, 35, 255, 70, 7, 234, 28, 138, 189, 154, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 349, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6854252952465053792" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8332500419409443581" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8962228134849557137" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "049f47cca5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9193653357061230855" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13177032863823902172" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7499344424160439136" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11486484608011280319" + } + }, + { + "_tag": "ByteArray", + "bytearray": "42c082e5e0160a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7248422552840976470" + } + }, + { + "_tag": "ByteArray", + "bytearray": "44592b" + }, + { + "_tag": "ByteArray", + "bytearray": "78" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7239196019444127647" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4640998081524541180" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7996785018991152691" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10451231127942642051" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8903134877076077109" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a11c0aae8261de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9660412952215267606" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2681921565912468975" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ce6b6049c997881a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4663791192687089444" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1655503773104488719" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dd285e5f7d145bd1370ef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3730359994912427725" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13593318284872737540" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4067992982327564391" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1381212600875035687" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7081d1617510e0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9393771625371368832" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15978410952514722507" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12907752679696769445" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1676159670114253239" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14719271658388112434" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bab4428eb7ce6e8eba" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "178c7b053d887d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "185f" + }, + { + "_tag": "ByteArray", + "bytearray": "2efdae4cfeb8a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8731719552359540072" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9ce6e200c1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "960293411400838239" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8435099577141481046" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13478366656651852938" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3401145090314430952" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f1b5f1f32beb05a1860d8669f1b73a2fcfbe5b17afd9fd8669f1b7c603b0135b8329180ff9f45049f47cca51b7f966b04a7b651071bb6de399321df35dcffd8669f1b681306054263ab609f1b9f6830e49a811fbf4742c082e5e0160a1b649791e8740438564344592b4178ffffffffd8669f1b6476ca6cbe63979f9fbf1b4068232a848a26fc1b6efa499b22220e331b910a3b567e86b9831b7b8e49fff782ba3547a11c0aae8261de1b8610ae65a05fa916ffd8669f1b253819746bac0def9f48ce6b6049c997881a1b40b91d6142b59724ffffbf1b16f987e91036410f4b2dd285e5f7d145bd1370ef1b33c4e6a6ad154ecd1bbca52af5a8a963041b38746a10746a986741e1ffbf1b132b0d8ae2732c27477081d1617510e01b825d6185df677d801bddbeb81aa3d9dacb1bb3218cac89ec21a51b1742ea56dbfef9b71bcc455b9656b2c43249bab4428eb7ce6e8ebaff47178c7b053d887dffff9f9f42185f472efdae4cfeb8a81b792d4cab94b92568459ce6e200c1ffd8669f1b0d53a5c512b1ec5f9f41c41b750f7e5fd490ce561bbb0cc7101233fc8a1b2f334b7089c169e8ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 27, 95, 31, 50, 190, 176, 90, 24, 96, 216, 102, + 159, 27, 115, 162, 252, 251, 229, 177, 122, 253, 159, 216, 102, 159, 27, 124, 96, 59, 1, 53, 184, 50, 145, 128, + 255, 159, 69, 4, 159, 71, 204, 165, 27, 127, 150, 107, 4, 167, 182, 81, 7, 27, 182, 222, 57, 147, 33, 223, 53, + 220, 255, 216, 102, 159, 27, 104, 19, 6, 5, 66, 99, 171, 96, 159, 27, 159, 104, 48, 228, 154, 129, 31, 191, 71, + 66, 192, 130, 229, 224, 22, 10, 27, 100, 151, 145, 232, 116, 4, 56, 86, 67, 68, 89, 43, 65, 120, 255, 255, 255, + 255, 216, 102, 159, 27, 100, 118, 202, 108, 190, 99, 151, 159, 159, 191, 27, 64, 104, 35, 42, 132, 138, 38, 252, + 27, 110, 250, 73, 155, 34, 34, 14, 51, 27, 145, 10, 59, 86, 126, 134, 185, 131, 27, 123, 142, 73, 255, 247, 130, + 186, 53, 71, 161, 28, 10, 174, 130, 97, 222, 27, 134, 16, 174, 101, 160, 95, 169, 22, 255, 216, 102, 159, 27, 37, + 56, 25, 116, 107, 172, 13, 239, 159, 72, 206, 107, 96, 73, 201, 151, 136, 26, 27, 64, 185, 29, 97, 66, 181, 151, + 36, 255, 255, 191, 27, 22, 249, 135, 233, 16, 54, 65, 15, 75, 45, 210, 133, 229, 247, 209, 69, 189, 19, 112, 239, + 27, 51, 196, 230, 166, 173, 21, 78, 205, 27, 188, 165, 42, 245, 168, 169, 99, 4, 27, 56, 116, 106, 16, 116, 106, + 152, 103, 65, 225, 255, 191, 27, 19, 43, 13, 138, 226, 115, 44, 39, 71, 112, 129, 209, 97, 117, 16, 224, 27, 130, + 93, 97, 133, 223, 103, 125, 128, 27, 221, 190, 184, 26, 163, 217, 218, 203, 27, 179, 33, 140, 172, 137, 236, 33, + 165, 27, 23, 66, 234, 86, 219, 254, 249, 183, 27, 204, 69, 91, 150, 86, 178, 196, 50, 73, 186, 180, 66, 142, 183, + 206, 110, 142, 186, 255, 71, 23, 140, 123, 5, 61, 136, 125, 255, 255, 159, 159, 66, 24, 95, 71, 46, 253, 174, 76, + 254, 184, 168, 27, 121, 45, 76, 171, 148, 185, 37, 104, 69, 156, 230, 226, 0, 193, 255, 216, 102, 159, 27, 13, 83, + 165, 197, 18, 177, 236, 95, 159, 65, 196, 27, 117, 15, 126, 95, 212, 144, 206, 86, 27, 187, 12, 199, 16, 18, 51, + 252, 138, 27, 47, 51, 75, 112, 137, 193, 105, 232, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 350, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8324775842345975810" + }, + "fields": [] + }, + "cborHex": "d8669f1b73878b85a5c9000280ff", + "cborBytes": [216, 102, 159, 27, 115, 135, 139, 133, 165, 201, 0, 2, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 351, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17619826479459137034" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f6d59ce497b6bb8109d2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2748000671512488420" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15136520632952390859" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "337f0ae129cea57900073337" + } + ] + }, + "cborHex": "d9050a9f1bf48632d4482ef60a4af6d59ce497b6bb8109d2bf1b2622dc0d1c0969e41bd20fb951a67f84cbff4c337f0ae129cea57900073337ff", + "cborBytes": [ + 217, 5, 10, 159, 27, 244, 134, 50, 212, 72, 46, 246, 10, 74, 246, 213, 156, 228, 151, 182, 187, 129, 9, 210, 191, + 27, 38, 34, 220, 13, 28, 9, 105, 228, 27, 210, 15, 185, 81, 166, 127, 132, 203, 255, 76, 51, 127, 10, 225, 41, + 206, 165, 121, 0, 7, 51, 55, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 352, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11465109295942687078" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1834459010893746724" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4719398947685534678" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13063567187501147273" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7904599232753480398" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3aeea5410fcd885a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16428832701252467911" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6377340170233534430" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e528b76e738cc" + }, + { + "_tag": "ByteArray", + "bytearray": "297a2c7008e1c0b7ce497435" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7289306395028680978" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85c4ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8326770863854337403" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1b0f6778e1b557ee3671f6" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5116784246507389820" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3859572829744228217" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7254715314609690863" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c71" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15583366019713696650" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fc6c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12966925617859577222" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "17bbd9c10e09962bf7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1aa953a91efb2f04f298b6" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b9f1c4028efb159669fa0d8669f1b19754ec0435612249fbf1b417eac56a6260bd61bb54b1d24ae7464891b6db2c71f3018b2ce483aeea5410fcd885a1be3fef04c50797cc71b5880dd18a29957deff9f478e528b76e738cc4c297a2c7008e1c0b7ce4974351b6528d18bbeaaf1124385c4ab1b738ea1fbca1c3d7bff4b1b0f6778e1b557ee3671f69f1b470278298d63437c1b358ff50a2da767791b64aded2439e598ef422c71ffffffd8669f1bd8433cd4a9ed838a9fbf430fc6c21bb3f3c625d16ec5864917bbd9c10e09962bf74b1aa953a91efb2f04f298b6ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 159, 28, 64, 40, 239, 177, 89, 102, 159, 160, 216, 102, 159, 27, 25, 117, 78, 192, 67, 86, 18, + 36, 159, 191, 27, 65, 126, 172, 86, 166, 38, 11, 214, 27, 181, 75, 29, 36, 174, 116, 100, 137, 27, 109, 178, 199, + 31, 48, 24, 178, 206, 72, 58, 238, 165, 65, 15, 205, 136, 90, 27, 227, 254, 240, 76, 80, 121, 124, 199, 27, 88, + 128, 221, 24, 162, 153, 87, 222, 255, 159, 71, 142, 82, 139, 118, 231, 56, 204, 76, 41, 122, 44, 112, 8, 225, 192, + 183, 206, 73, 116, 53, 27, 101, 40, 209, 139, 190, 170, 241, 18, 67, 133, 196, 171, 27, 115, 142, 161, 251, 202, + 28, 61, 123, 255, 75, 27, 15, 103, 120, 225, 181, 87, 238, 54, 113, 246, 159, 27, 71, 2, 120, 41, 141, 99, 67, + 124, 27, 53, 143, 245, 10, 45, 167, 103, 121, 27, 100, 173, 237, 36, 57, 229, 152, 239, 66, 44, 113, 255, 255, + 255, 216, 102, 159, 27, 216, 67, 60, 212, 169, 237, 131, 138, 159, 191, 67, 15, 198, 194, 27, 179, 243, 198, 37, + 209, 110, 197, 134, 73, 23, 187, 217, 193, 14, 9, 150, 43, 247, 75, 26, 169, 83, 169, 30, 251, 47, 4, 242, 152, + 182, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 353, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8794060371118806451" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e5718518e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5871015f4e2f8f032e698aa8" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2462567636204679498" + } + }, + { + "_tag": "ByteArray", + "bytearray": "386377a5" + }, + { + "_tag": "ByteArray", + "bytearray": "dbea7bb15acb4530a1e474bf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4166231408834107782" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7a0ac75089e055b39fbf451e5718518e4c5871015f4e2f8f032e698aa8ffd8669f1bfffffffffffffff79f1b222ccc37c75a714a44386377a54cdbea7bb15acb4530a1e474bf1b39d16d6487a1d986ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 122, 10, 199, 80, 137, 224, 85, 179, 159, 191, 69, 30, 87, 24, 81, 142, 76, 88, 113, 1, 95, 78, + 47, 143, 3, 46, 105, 138, 168, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 27, 34, 44, + 204, 55, 199, 90, 113, 74, 68, 56, 99, 119, 165, 76, 219, 234, 123, 177, 90, 203, 69, 48, 161, 228, 116, 191, 27, + 57, 209, 109, 100, 135, 161, 217, 134, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 354, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16482799726843469405" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4655370556938026981" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0007076b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2dc827" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65d20358cadecb82417f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c34399571" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce5c6df5870442" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5fffd63172c131e4b0b6a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f0748" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f906d7fddc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2779751438361086957" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3152952726514011684" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09cc071677ee87fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8584821873733321542" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1405c6e6" + }, + { + "_tag": "ByteArray", + "bytearray": "fa89" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1be4beab059e691e5d9fa09fd8669f1b409b32db381a7fe580ffbf4204fa440007076b432dc82741344a65d20358cadecb82417f02458c3439957147ce5c6df58704424bc5fffd63172c131e4b0b6a437f074845f906d7fddc1b2693a9349764cbedffbf1b2bc189ccb9778e244809cc071677ee87fc1b77236a0283e0c34641a1ff11ff441405c6e642fa8980ffff", + "cborBytes": [ + 216, 102, 159, 27, 228, 190, 171, 5, 158, 105, 30, 93, 159, 160, 159, 216, 102, 159, 27, 64, 155, 50, 219, 56, 26, + 127, 229, 128, 255, 191, 66, 4, 250, 68, 0, 7, 7, 107, 67, 45, 200, 39, 65, 52, 74, 101, 210, 3, 88, 202, 222, + 203, 130, 65, 127, 2, 69, 140, 52, 57, 149, 113, 71, 206, 92, 109, 245, 135, 4, 66, 75, 197, 255, 253, 99, 23, 44, + 19, 30, 75, 11, 106, 67, 127, 7, 72, 69, 249, 6, 215, 253, 220, 27, 38, 147, 169, 52, 151, 100, 203, 237, 255, + 191, 27, 43, 193, 137, 204, 185, 119, 142, 36, 72, 9, 204, 7, 22, 119, 238, 135, 252, 27, 119, 35, 106, 2, 131, + 224, 195, 70, 65, 161, 255, 17, 255, 68, 20, 5, 198, 230, 66, 250, 137, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 355, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5848558302363191490" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8213015572234313098" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16357655179637628693" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17441887492006300428" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11432530515096310022" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13409328110462576928" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bc71e52479e1" + } + ] + } + ] + }, + "cborHex": "d905029fd8669f1b512a40c9fc8508c29f9f1b71fa7e2605c71d8a1be30210b824a11f151bf20e08434d5d4b0c1b9ea881ee6c2111061bba1780deecc82920ff46bc71e52479e1ffffff", + "cborBytes": [ + 217, 5, 2, 159, 216, 102, 159, 27, 81, 42, 64, 201, 252, 133, 8, 194, 159, 159, 27, 113, 250, 126, 38, 5, 199, 29, + 138, 27, 227, 2, 16, 184, 36, 161, 31, 21, 27, 242, 14, 8, 67, 77, 93, 75, 12, 27, 158, 168, 129, 238, 108, 33, + 17, 6, 27, 186, 23, 128, 222, 236, 200, 41, 32, 255, 70, 188, 113, 229, 36, 121, 225, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 356, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13729618091572636459" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13191698191833780994" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cc522a9b603" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18035320063171231573" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b4f5d3b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15962987571104899888" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d99b02c4d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7276777621404452546" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f5c498a98ed02d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14975729201879690482" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6b5fb96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b3d1173c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5cf05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13937331797249362532" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7796512776979772757" + } + } + ] + }, + "cborHex": "d8669f1bbe8966e961f6ab2b9f1bb712539ce46a5302bf460cc522a9b6031bfa4a540acfcbff55441b4f5d3b1bdd87ec9ed1aee330455d99b02c4d1b64fc4eb1515306c2488f5c498a98ed02d51bcfd47a5d427bacf244e6b5fb96459b3d1173c343f5cf051bc16b596d2bce0a64ff1b6c32c7101eac7555ffff", + "cborBytes": [ + 216, 102, 159, 27, 190, 137, 102, 233, 97, 246, 171, 43, 159, 27, 183, 18, 83, 156, 228, 106, 83, 2, 191, 70, 12, + 197, 34, 169, 182, 3, 27, 250, 74, 84, 10, 207, 203, 255, 85, 68, 27, 79, 93, 59, 27, 221, 135, 236, 158, 209, + 174, 227, 48, 69, 93, 153, 176, 44, 77, 27, 100, 252, 78, 177, 81, 83, 6, 194, 72, 143, 92, 73, 138, 152, 237, 2, + 213, 27, 207, 212, 122, 93, 66, 123, 172, 242, 68, 230, 181, 251, 150, 69, 155, 61, 17, 115, 195, 67, 245, 207, 5, + 27, 193, 107, 89, 109, 43, 206, 10, 100, 255, 27, 108, 50, 199, 16, 30, 172, 117, 85, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 357, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5efefb" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79f435efefbffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 67, 94, 254, 251, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 358, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8375347819946672520" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17223396556090383979" + } + } + ] + }, + "cborHex": "d9050c9f1b743b3677be4381881bef05cbea0f741e6bff", + "cborBytes": [ + 217, 5, 12, 159, 27, 116, 59, 54, 119, 190, 67, 129, 136, 27, 239, 5, 203, 234, 15, 116, 30, 107, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 359, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7713927328823276057" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1693694355142912188" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11353531919409231431" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fd" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9fd87e9fbf1b6b0d600911b072191b1781360adc60a8bc1b9d8fd9208a72364741fbff41fdff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 216, 126, 159, 191, 27, 107, 13, 96, 9, 17, 176, + 114, 25, 27, 23, 129, 54, 10, 220, 96, 168, 188, 27, 157, 143, 217, 32, 138, 114, 54, 71, 65, 251, 255, 65, 253, + 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 360, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1336382111586563516" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5280234219640863019" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e465fa6" + } + ] + }, + "cborHex": "d8669f1b128bc873354db5bc9f1b4947290c008e392b449e465fa6ffff", + "cborBytes": [ + 216, 102, 159, 27, 18, 139, 200, 115, 53, 77, 181, 188, 159, 27, 73, 71, 41, 12, 0, 142, 57, 43, 68, 158, 70, 95, + 166, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 361, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3752776328520771099" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2588658201357178098" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "6538e3907856" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10603735535215142173" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16516275862884059738" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4148295308343147631" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09f2dded0b11c18352" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17930415843842222983" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16279455411969709304" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15563591178894257547" + } + } + ] + }, + "cborHex": "d8669f1b34148a300ef9a61b9fd8669f1b23ecc2eb38cbd4f29f80466538e39078569f1b93280949ccaf651dffffff1be5359963eb900a5abf1b3991b49ab5367c6f4909f2dded0b11c183521bf8d5a235e7406b871be1ec3e71e743d4f8ff1bd7fcfbb7bf652d8bffff", + "cborBytes": [ + 216, 102, 159, 27, 52, 20, 138, 48, 14, 249, 166, 27, 159, 216, 102, 159, 27, 35, 236, 194, 235, 56, 203, 212, + 242, 159, 128, 70, 101, 56, 227, 144, 120, 86, 159, 27, 147, 40, 9, 73, 204, 175, 101, 29, 255, 255, 255, 27, 229, + 53, 153, 99, 235, 144, 10, 90, 191, 27, 57, 145, 180, 154, 181, 54, 124, 111, 73, 9, 242, 221, 237, 11, 17, 193, + 131, 82, 27, 248, 213, 162, 53, 231, 64, 107, 135, 27, 225, 236, 62, 113, 231, 67, 212, 248, 255, 27, 215, 252, + 251, 183, 191, 101, 45, 139, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 362, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10282271441751433462" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3870772691108772657" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1280639914041713308" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62" + }, + { + "_tag": "ByteArray", + "bytearray": "d93a305aa4223788ac89" + }, + { + "_tag": "ByteArray", + "bytearray": "d484" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12949993725638615581" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17224760882456334446" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8153021957581900490" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5d8c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03b98d978a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6422456611468446916" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7844a8ee717c7fc1d6b0358b" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f9fd8669f1b8eb1f76601bce0f680ffd8669f1b35b7bf411bd23b319f1b11c5bf3779a4a29c41624ad93a305aa4223788ac8942d4841bb3b79eae743a221dffffff1bef0aa4c30bda906ed8669f1b71255a461ba10aca9f425d8cbf4503b98d978a1b59212642afef8cc4ff4c7844a8ee717c7fc1d6b0358b80ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 159, 216, 102, 159, 27, 142, 177, 247, 102, 1, + 188, 224, 246, 128, 255, 216, 102, 159, 27, 53, 183, 191, 65, 27, 210, 59, 49, 159, 27, 17, 197, 191, 55, 121, + 164, 162, 156, 65, 98, 74, 217, 58, 48, 90, 164, 34, 55, 136, 172, 137, 66, 212, 132, 27, 179, 183, 158, 174, 116, + 58, 34, 29, 255, 255, 255, 27, 239, 10, 164, 195, 11, 218, 144, 110, 216, 102, 159, 27, 113, 37, 90, 70, 27, 161, + 10, 202, 159, 66, 93, 140, 191, 69, 3, 185, 141, 151, 138, 27, 89, 33, 38, 66, 175, 239, 140, 196, 255, 76, 120, + 68, 168, 238, 113, 124, 127, 193, 214, 176, 53, 139, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 363, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "63382335541166512" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "daedb7e49e7618b8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13391989868416703128" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16345051678612953553" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b00e12de5faf741b09f48daedb7e49e7618b8d8669f1bb9d9e7d4de9b9a989fbf41b01be2d549e6e32099d1ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 0, 225, 45, 229, 250, 247, 65, 176, 159, 72, 218, 237, 183, 228, 158, 118, 24, 184, 216, 102, + 159, 27, 185, 217, 231, 212, 222, 155, 154, 152, 159, 191, 65, 176, 27, 226, 213, 73, 230, 227, 32, 153, 209, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 364, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16258938202013314839" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8443296770503421868" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18331110375073331143" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4075447311449847719" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2115267473705179389" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15792624607712644775" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14256984938605267825" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15984753236951842247" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f01a523c01f0b7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17665462618983280470" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3009173897573037903" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3370c892f9" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dd7a95cf93fb11f669cdebb1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17208910000442432502" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16737433273301655125" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c25c3046" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1923929393326193381" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6279409926640977962" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff09" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7568309482919373738" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4007c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7059c831d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e61" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8871897806232144704" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c276eb56cba04ea5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d3cb9db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8831a8cbd937cea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18010021438041647440" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8799fd8669f1be1a35a26b4082f179f9f1b752c9dada30f2facff1bfe652fc384b937c7bf1b388ee5bcb3c9f7a71b1d5af08f672298fd1bdb2aac6865ce0ea71bc5dafc43d1a94b711bddd54060ceca3dc747f01a523c01f0b71bf52854a80570af561b29c2bbb77037f74fff9f453370c892f9ffffff4cdd7a95cf93fb11f669cdebb19fd8669f1beed25477fc09dbf680ffd8669f1be8474ee222f2de559f44c25c30461b1ab32b96fe23fae5ffffd8669f1b5724f20efc7f482a9f42ff09ffffbf41051b6908096047a12baa434007c945e7059c831d427e611b7b1f500ca808cb4048c276eb56cba04ea5449d3cb9db48f8831a8cbd937cea1bf9f07313a3a46950ffffff", + "cborBytes": [ + 216, 121, 159, 216, 102, 159, 27, 225, 163, 90, 38, 180, 8, 47, 23, 159, 159, 27, 117, 44, 157, 173, 163, 15, 47, + 172, 255, 27, 254, 101, 47, 195, 132, 185, 55, 199, 191, 27, 56, 142, 229, 188, 179, 201, 247, 167, 27, 29, 90, + 240, 143, 103, 34, 152, 253, 27, 219, 42, 172, 104, 101, 206, 14, 167, 27, 197, 218, 252, 67, 209, 169, 75, 113, + 27, 221, 213, 64, 96, 206, 202, 61, 199, 71, 240, 26, 82, 60, 1, 240, 183, 27, 245, 40, 84, 168, 5, 112, 175, 86, + 27, 41, 194, 187, 183, 112, 55, 247, 79, 255, 159, 69, 51, 112, 200, 146, 249, 255, 255, 255, 76, 221, 122, 149, + 207, 147, 251, 17, 246, 105, 205, 235, 177, 159, 216, 102, 159, 27, 238, 210, 84, 119, 252, 9, 219, 246, 128, 255, + 216, 102, 159, 27, 232, 71, 78, 226, 34, 242, 222, 85, 159, 68, 194, 92, 48, 70, 27, 26, 179, 43, 150, 254, 35, + 250, 229, 255, 255, 216, 102, 159, 27, 87, 36, 242, 14, 252, 127, 72, 42, 159, 66, 255, 9, 255, 255, 191, 65, 5, + 27, 105, 8, 9, 96, 71, 161, 43, 170, 67, 64, 7, 201, 69, 231, 5, 156, 131, 29, 66, 126, 97, 27, 123, 31, 80, 12, + 168, 8, 203, 64, 72, 194, 118, 235, 86, 203, 160, 78, 165, 68, 157, 60, 185, 219, 72, 248, 131, 26, 140, 189, 147, + 124, 234, 27, 249, 240, 115, 19, 163, 164, 105, 80, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 365, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10111615363535373516" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d6379f27" + }, + { + "_tag": "ByteArray", + "bytearray": "09d33cfd3e25a3387a2685" + }, + { + "_tag": "ByteArray", + "bytearray": "80dcb001f2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bf044c572c2ff52480eb" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15139085602771983515" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16980c" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17023704485297366272" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17466697626159015632" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10764234179725790053" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16039036046826005487" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d35" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b6e561830a135d35f42441e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8915439068355489354" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7daca120203b" + }, + { + "_tag": "ByteArray", + "bytearray": "692198" + }, + { + "_tag": "ByteArray", + "bytearray": "82876fd20dc0c52c85381e" + }, + { + "_tag": "ByteArray", + "bytearray": "3f761b75" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "308f465c76580e90fe42e78f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49726488" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d533019" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "772ff034b4e704" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "334b3a1c37a5b48ba8303437" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa5dc5437b55491c88b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9f9f1b8c53ac9978e884cc41da9f44d6379f274b09d33cfd3e25a3387a26854580dcb001f2ff9f4abf044c572c2ff52480ebffbf1bd218d62539745c9b4316980cffffd8669f1bec405908af5fa50080ffd8669f1bf2662cf2ce5de6d080ffbf1b95623df481ac8b6541441bde961a4e5ebfe3ef429d354c9b6e561830a135d35f42441e1b7bba0098bdf7ee4aff9f467daca120203b436921984b82876fd20dc0c52c85381e443f761b75bf4c308f465c76580e90fe42e78f4449726488443d53301947772ff034b4e704419c4c334b3a1c37a5b48ba83034374afa5dc5437b55491c88b8414cffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 159, 27, 140, 83, 172, 153, 120, 232, 132, 204, + 65, 218, 159, 68, 214, 55, 159, 39, 75, 9, 211, 60, 253, 62, 37, 163, 56, 122, 38, 133, 69, 128, 220, 176, 1, 242, + 255, 159, 74, 191, 4, 76, 87, 44, 47, 245, 36, 128, 235, 255, 191, 27, 210, 24, 214, 37, 57, 116, 92, 155, 67, 22, + 152, 12, 255, 255, 216, 102, 159, 27, 236, 64, 89, 8, 175, 95, 165, 0, 128, 255, 216, 102, 159, 27, 242, 102, 44, + 242, 206, 93, 230, 208, 128, 255, 191, 27, 149, 98, 61, 244, 129, 172, 139, 101, 65, 68, 27, 222, 150, 26, 78, 94, + 191, 227, 239, 66, 157, 53, 76, 155, 110, 86, 24, 48, 161, 53, 211, 95, 66, 68, 30, 27, 123, 186, 0, 152, 189, + 247, 238, 74, 255, 159, 70, 125, 172, 161, 32, 32, 59, 67, 105, 33, 152, 75, 130, 135, 111, 210, 13, 192, 197, 44, + 133, 56, 30, 68, 63, 118, 27, 117, 191, 76, 48, 143, 70, 92, 118, 88, 14, 144, 254, 66, 231, 143, 68, 73, 114, + 100, 136, 68, 61, 83, 48, 25, 71, 119, 47, 240, 52, 180, 231, 4, 65, 156, 76, 51, 75, 58, 28, 55, 165, 180, 139, + 168, 48, 52, 55, 74, 250, 93, 197, 67, 123, 85, 73, 28, 136, 184, 65, 76, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 366, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7044443197845438898" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa53" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f3222f" + }, + { + "_tag": "ByteArray", + "bytearray": "4ba5e079fa08baadbe21" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12799925258856033337" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3654127885670444758" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fe89935fab" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e7f646659a9b04d3" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11725388606018106464" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25a13df7312f9f0fb657b7ad" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15249858151208990697" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e64591c0d" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b61c2e3c3effe81b29f42aa539f43f3222f4a4ba5e079fa08baadbe21ff1bb1a27834bda9ec39d8669f1b32b611f39d3c6ed69f45fe89935fab9f48e7f646659a9b04d3ffbf1ba2b8f2d03b1f34604c25a13df7312f9f0fb657b7ad1bd3a26130f9e837e9452e64591c0dffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 97, 194, 227, 195, 239, 254, 129, 178, 159, 66, 170, 83, 159, 67, 243, 34, 47, 74, 75, 165, + 224, 121, 250, 8, 186, 173, 190, 33, 255, 27, 177, 162, 120, 52, 189, 169, 236, 57, 216, 102, 159, 27, 50, 182, + 17, 243, 157, 60, 110, 214, 159, 69, 254, 137, 147, 95, 171, 159, 72, 231, 246, 70, 101, 154, 155, 4, 211, 255, + 191, 27, 162, 184, 242, 208, 59, 31, 52, 96, 76, 37, 161, 61, 247, 49, 47, 159, 15, 182, 87, 183, 173, 27, 211, + 162, 97, 48, 249, 232, 55, 233, 69, 46, 100, 89, 28, 13, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 367, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "380001222409143555" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8788916278478037835" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2673611307604470185" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16806462326968025843" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6736906979932499078" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "364ac6316b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8642317380130681330" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc312000939c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1276832165690323596" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b8e3" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14115070213821521868" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2950725834254485433" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bc2b0fb49eabd964" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2462496710407109817" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ad284b" + } + ] + }, + "cborHex": "d905099fbf1b0546091933e945031b79f880ca2354e34b1b251a9351a13b69a91be93c8c7121ea02f31b5d7e4d345fb9ec8645364ac6316b1b77efadde46dfb1f246fc312000939cff9fd8669f1b11b83816f9c3b28c9f42b8e3ffffff9f1bc3e2cd931a875fcc9f1b28f315833c4e87b9ff9f48bc2b0fb49eabd9641b222c8bb614623cb9ffff1443ad284bff", + "cborBytes": [ + 217, 5, 9, 159, 191, 27, 5, 70, 9, 25, 51, 233, 69, 3, 27, 121, 248, 128, 202, 35, 84, 227, 75, 27, 37, 26, 147, + 81, 161, 59, 105, 169, 27, 233, 60, 140, 113, 33, 234, 2, 243, 27, 93, 126, 77, 52, 95, 185, 236, 134, 69, 54, 74, + 198, 49, 107, 27, 119, 239, 173, 222, 70, 223, 177, 242, 70, 252, 49, 32, 0, 147, 156, 255, 159, 216, 102, 159, + 27, 17, 184, 56, 22, 249, 195, 178, 140, 159, 66, 184, 227, 255, 255, 255, 159, 27, 195, 226, 205, 147, 26, 135, + 95, 204, 159, 27, 40, 243, 21, 131, 60, 78, 135, 185, 255, 159, 72, 188, 43, 15, 180, 158, 171, 217, 100, 27, 34, + 44, 139, 182, 20, 98, 60, 185, 255, 255, 20, 67, 173, 40, 75, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 368, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8813646368830012921" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8d15e21afdf34e207f55" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2774065004831794957" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17164983772663222160" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "29cf92887dfde0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e984" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35ee9b02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1535785639845726113" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b8454c37870b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16110153702633456356" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7a505cacfe063df99f4a8d15e21afdf34e207f55801b267f756c9cd7670d1bee3645cc18ef8f90bf4729cf92887dfde042e9844435ee9b021b155034e70a2687a1477b8454c37870b21bdf92c36ff26942e4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 122, 80, 92, 172, 254, 6, 61, 249, 159, 74, 141, 21, 226, 26, 253, 243, 78, 32, 127, 85, 128, + 27, 38, 127, 117, 108, 156, 215, 103, 13, 27, 238, 54, 69, 204, 24, 239, 143, 144, 191, 71, 41, 207, 146, 136, + 125, 253, 224, 66, 233, 132, 68, 53, 238, 155, 2, 27, 21, 80, 52, 231, 10, 38, 135, 161, 71, 123, 132, 84, 195, + 120, 112, 178, 27, 223, 146, 195, 111, 242, 105, 66, 228, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 369, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3f302ca3ffb2a1" + } + ] + }, + "cborHex": "d87e9f473f302ca3ffb2a1ff", + "cborBytes": [216, 126, 159, 71, 63, 48, 44, 163, 255, 178, 161, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 370, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10103623337647178059" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5580347274437643783" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8c3747e4f0ce814b9f9f1b4d716047b82cce07ffffff", + "cborBytes": [ + 216, 102, 159, 27, 140, 55, 71, 228, 240, 206, 129, 75, 159, 159, 27, 77, 113, 96, 71, 184, 44, 206, 7, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 371, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16514089704371966364" + }, + "fields": [] + }, + "cborHex": "d8669f1be52dd5173a06d19c80ff", + "cborBytes": [216, 102, 159, 27, 229, 45, 213, 23, 58, 6, 209, 156, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 372, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17184320535189209459" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "200106d4" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bee7af87af66741739f44200106d4a0d9050180ffff", + "cborBytes": [ + 216, 102, 159, 27, 238, 122, 248, 122, 246, 103, 65, 115, 159, 68, 32, 1, 6, 212, 160, 217, 5, 1, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 373, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14721465722937537049" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "14" + }, + { + "_tag": "ByteArray", + "bytearray": "f8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a6e7a10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7767797089358670826" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5358366767696980986" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14319651794699680755" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5569191870292040080" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3915838298659247105" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bcc4d2713ccc7f2199fd87c9f411441f8bf443a6e7a101b6bccc24c16896beaff1b4a5cbe2f74d62bfad8669f1bc6b99f70425bfbf39f1b4d49be7fcac019901b3657da2f85745401ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 204, 77, 39, 19, 204, 199, 242, 25, 159, 216, 124, 159, 65, 20, 65, 248, 191, 68, 58, 110, 122, + 16, 27, 107, 204, 194, 76, 22, 137, 107, 234, 255, 27, 74, 92, 190, 47, 116, 214, 43, 250, 216, 102, 159, 27, 198, + 185, 159, 112, 66, 91, 251, 243, 159, 27, 77, 73, 190, 127, 202, 192, 25, 144, 27, 54, 87, 218, 47, 133, 116, 84, + 1, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 374, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6780466199788849009" + }, + "fields": [] + }, + "cborHex": "d8669f1b5e190e1591f5077180ff", + "cborBytes": [216, 102, 159, 27, 94, 25, 14, 21, 145, 245, 7, 113, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 375, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5802494207079976788" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8693721454019922522" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1225058696533539884" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9340866797484413590" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16194213266585808150" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2658729820154314752" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16437638716243554506" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e10149397" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17291075769174199877" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c85a002bd4f26252b2586dcb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17539418885946541216" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c30fbc1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17777300042004377591" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17898729990131119837" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "abc8d19177004483525eea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12138724244350363673" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6181987518627286002" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13189489520283980880" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14155068969274744748" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1523ac6f38bcce4a87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e119c7c2b3266cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "257e7100c8ebeb8e47" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e603b06f0bd2602b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2eaa5362a3e81105b1c904" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6580130340920615705" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41b712e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14418090275163953347" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f3f6d79a7edc7226a570c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7019367904905870709" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8736966122188841554" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9572736115856628411" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14342354390677280809" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2261908446952219452" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e83b57" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18046951935428005624" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1bf85535c88e73" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6881506191841615866" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3bf990c3a" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "505e67ae6d9fe14c3a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6493623010338129411" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85832e20348eab09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8502127952318686882" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6011d151c7ae7dcda5d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1052c8a8d6113a902b33759" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13423526506028623010" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0364129ad5" + } + ] + } + ] + }, + "cborHex": "d8669f1b508699bd08438f549fd8669f1b78a64d99e30cca5a9fbf1b11004864d3e27c2c1b81a16cdcbe4c92961be0bd672a53c3ed161b24e5b4af540940001be41e395273e7b0ca454e101493971beff63dcccdfe0e454cc85a002bd4f26252b2586dcb1bf368888c879f04a0447c30fbc11bf6b5a83335352ff71bf8651018306576ddff9f4babc8d19177004483525eea1ba8756962f2ece8191b55cad4e505ad8bf21bb70a7ad6794394501bc470e83b14c69facffbf491523ac6f38bcce4a87489e119c7c2b3266cb49257e7100c8ebeb8e4748e603b06f0bd2602b4b2eaa5362a3e81105b1c9041b5b5151ae9a57e3194441b712e81bc81758b706a958c34b5f3f6d79a7edc7226a570c1b6169cdeb57b13d75ff9f1b793ff065cfb02252ffffff9fbf1b84d930c7622fdabb1bc70a47544b155829ff1b1f63e9bf970ae33c9f43e83b571bfa73a72b1dbc0ef8471bf85535c88e731b5f80056bf45edffa45f3bf990c3affff49505e67ae6d9fe14c3abf415f1b5a1dfbb92481c6034885832e20348eab091b75fda05390dfe6a24ad6011d151c7ae7dcda5d4cd1052c8a8d6113a902b33759ffd8669f1bba49f23c80e064a29f450364129ad5ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 80, 134, 153, 189, 8, 67, 143, 84, 159, 216, 102, 159, 27, 120, 166, 77, 153, 227, 12, 202, 90, + 159, 191, 27, 17, 0, 72, 100, 211, 226, 124, 44, 27, 129, 161, 108, 220, 190, 76, 146, 150, 27, 224, 189, 103, 42, + 83, 195, 237, 22, 27, 36, 229, 180, 175, 84, 9, 64, 0, 27, 228, 30, 57, 82, 115, 231, 176, 202, 69, 78, 16, 20, + 147, 151, 27, 239, 246, 61, 204, 205, 254, 14, 69, 76, 200, 90, 0, 43, 212, 242, 98, 82, 178, 88, 109, 203, 27, + 243, 104, 136, 140, 135, 159, 4, 160, 68, 124, 48, 251, 193, 27, 246, 181, 168, 51, 53, 53, 47, 247, 27, 248, 101, + 16, 24, 48, 101, 118, 221, 255, 159, 75, 171, 200, 209, 145, 119, 0, 68, 131, 82, 94, 234, 27, 168, 117, 105, 98, + 242, 236, 232, 25, 27, 85, 202, 212, 229, 5, 173, 139, 242, 27, 183, 10, 122, 214, 121, 67, 148, 80, 27, 196, 112, + 232, 59, 20, 198, 159, 172, 255, 191, 73, 21, 35, 172, 111, 56, 188, 206, 74, 135, 72, 158, 17, 156, 124, 43, 50, + 102, 203, 73, 37, 126, 113, 0, 200, 235, 235, 142, 71, 72, 230, 3, 176, 111, 11, 210, 96, 43, 75, 46, 170, 83, 98, + 163, 232, 17, 5, 177, 201, 4, 27, 91, 81, 81, 174, 154, 87, 227, 25, 68, 65, 183, 18, 232, 27, 200, 23, 88, 183, + 6, 169, 88, 195, 75, 95, 63, 109, 121, 167, 237, 199, 34, 106, 87, 12, 27, 97, 105, 205, 235, 87, 177, 61, 117, + 255, 159, 27, 121, 63, 240, 101, 207, 176, 34, 82, 255, 255, 255, 159, 191, 27, 132, 217, 48, 199, 98, 47, 218, + 187, 27, 199, 10, 71, 84, 75, 21, 88, 41, 255, 27, 31, 99, 233, 191, 151, 10, 227, 60, 159, 67, 232, 59, 87, 27, + 250, 115, 167, 43, 29, 188, 14, 248, 71, 27, 248, 85, 53, 200, 142, 115, 27, 95, 128, 5, 107, 244, 94, 223, 250, + 69, 243, 191, 153, 12, 58, 255, 255, 73, 80, 94, 103, 174, 109, 159, 225, 76, 58, 191, 65, 95, 27, 90, 29, 251, + 185, 36, 129, 198, 3, 72, 133, 131, 46, 32, 52, 142, 171, 9, 27, 117, 253, 160, 83, 144, 223, 230, 162, 74, 214, + 1, 29, 21, 28, 122, 231, 220, 218, 93, 76, 209, 5, 44, 138, 141, 97, 19, 169, 2, 179, 55, 89, 255, 216, 102, 159, + 27, 186, 73, 242, 60, 128, 224, 100, 162, 159, 69, 3, 100, 18, 154, 213, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 376, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11559537910904643311" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "594862217816784935" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "338853434271080001" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19807c4dd1d946d988cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18cfcd9b8237ce2acb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2fc1e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59154d2c23" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17145456461131967471" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2e3cf43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fccbb" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "178679386902213536" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "385271d585c12c" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2782526110385840235" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10536372162525603104" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6c78d54055b140b8406" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "df4d0a6868e0f9cedd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1cff3f60d0ee81cfb0b2fcf" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cce4bf9cde" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8c9c361e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2137512832807403702" + } + }, + { + "_tag": "ByteArray", + "bytearray": "96f0e2f9cd64a00bb1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9531111795065280019" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17747662117403652630" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10160958592209913182" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e931" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11403983475751130200" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16367278244431580200" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a4d004" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3934547138174035283" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87f9fd8669f1ba06bba7c2321deef80ff9f1b084160090f454027a0bf1b04b3d96734a61e414a19807c4dd1d946d988cb4918cfcd9b8237ce2acb43c2fc1e4559154d2c231bedf0e5cf95b26bef44a2e3cf43431fccbbff1b027acbf4a8fdb3a09f47385271d585c12cffffd8669f1b269d84c143cc206b9fbf1b9238b6a860a725204aa6c78d54055b140b8406ffbf49df4d0a6868e0f9cedd4cd1cff3f60d0ee81cfb0b2fcfff45cce4bf9cde9f448c9c361e1b1da9f898ae5300b64996f0e2f9cd64a00bb11b84454fadfb66d6131bf64c5caa25807216ffd8669f1b8d02fa012a20055e9f42e9311b9e43168ce09214581be32440d88352cc2843a4d0041b369a51c6aae4a553ffffffffff", + "cborBytes": [ + 216, 127, 159, 216, 102, 159, 27, 160, 107, 186, 124, 35, 33, 222, 239, 128, 255, 159, 27, 8, 65, 96, 9, 15, 69, + 64, 39, 160, 191, 27, 4, 179, 217, 103, 52, 166, 30, 65, 74, 25, 128, 124, 77, 209, 217, 70, 217, 136, 203, 73, + 24, 207, 205, 155, 130, 55, 206, 42, 203, 67, 194, 252, 30, 69, 89, 21, 77, 44, 35, 27, 237, 240, 229, 207, 149, + 178, 107, 239, 68, 162, 227, 207, 67, 67, 31, 204, 187, 255, 27, 2, 122, 203, 244, 168, 253, 179, 160, 159, 71, + 56, 82, 113, 213, 133, 193, 44, 255, 255, 216, 102, 159, 27, 38, 157, 132, 193, 67, 204, 32, 107, 159, 191, 27, + 146, 56, 182, 168, 96, 167, 37, 32, 74, 166, 199, 141, 84, 5, 91, 20, 11, 132, 6, 255, 191, 73, 223, 77, 10, 104, + 104, 224, 249, 206, 221, 76, 209, 207, 243, 246, 13, 14, 232, 28, 251, 11, 47, 207, 255, 69, 204, 228, 191, 156, + 222, 159, 68, 140, 156, 54, 30, 27, 29, 169, 248, 152, 174, 83, 0, 182, 73, 150, 240, 226, 249, 205, 100, 160, 11, + 177, 27, 132, 69, 79, 173, 251, 102, 214, 19, 27, 246, 76, 92, 170, 37, 128, 114, 22, 255, 216, 102, 159, 27, 141, + 2, 250, 1, 42, 32, 5, 94, 159, 66, 233, 49, 27, 158, 67, 22, 140, 224, 146, 20, 88, 27, 227, 36, 64, 216, 131, 82, + 204, 40, 67, 164, 208, 4, 27, 54, 154, 81, 198, 170, 228, 165, 83, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 377, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [] + }, + "cborHex": "d9050980", + "cborBytes": [217, 5, 9, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 378, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [] + }, + "cborHex": "d9050480", + "cborBytes": [217, 5, 4, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 379, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5872529142207146961" + } + } + ] + } + ] + }, + "cborHex": "d9050a9f9f1b517f6a240e62ebd1ffff", + "cborBytes": [217, 5, 10, 159, 159, 27, 81, 127, 106, 36, 14, 98, 235, 209, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 380, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fea005000907" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9d85fa72c3" + } + ] + } + ] + }, + "cborHex": "d905049f9f9f46fea005000907ff459d85fa72c3ffff", + "cborBytes": [217, 5, 4, 159, 159, 159, 70, 254, 160, 5, 0, 9, 7, 255, 69, 157, 133, 250, 114, 195, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 381, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aae4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "787820bc" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "470a095561fac5eb1c0a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "749037951362606934" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7a821193dbedd0e1712f7cdc" + }, + { + "_tag": "ByteArray", + "bytearray": "acf6e2cbfb57aa" + }, + { + "_tag": "ByteArray", + "bytearray": "fcba08f0cc1d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9101569383170930680" + } + }, + { + "_tag": "ByteArray", + "bytearray": "66b2" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "702ae7d0f990ed" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b85f6089af8dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b218805b4f2d29abc285dc6e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14013211438518772534" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b85ee3af6a2d95d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ee67dc39008ffc7424d16" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17333182426211381212" + } + } + ] + }, + "cborHex": "d8799f9fbf42aae444787820bcff4a470a095561fac5eb1c0ad8669f1b0a651e0c564127569f4c7a821193dbedd0e1712f7cdc47acf6e2cbfb57aa46fcba08f0cc1d1b7e4f4521be7977f84266b2ffff47702ae7d0f990ed80ffbf473b85f6089af8dd41494cb218805b4f2d29abc285dc6e1bc278ed8ee35a233648b85ee3af6a2d95d34b0ee67dc39008ffc7424d16ff1bf08bd594dd5f6fdcff", + "cborBytes": [ + 216, 121, 159, 159, 191, 66, 170, 228, 68, 120, 120, 32, 188, 255, 74, 71, 10, 9, 85, 97, 250, 197, 235, 28, 10, + 216, 102, 159, 27, 10, 101, 30, 12, 86, 65, 39, 86, 159, 76, 122, 130, 17, 147, 219, 237, 208, 225, 113, 47, 124, + 220, 71, 172, 246, 226, 203, 251, 87, 170, 70, 252, 186, 8, 240, 204, 29, 27, 126, 79, 69, 33, 190, 121, 119, 248, + 66, 102, 178, 255, 255, 71, 112, 42, 231, 208, 249, 144, 237, 128, 255, 191, 71, 59, 133, 246, 8, 154, 248, 221, + 65, 73, 76, 178, 24, 128, 91, 79, 45, 41, 171, 194, 133, 220, 110, 27, 194, 120, 237, 142, 227, 90, 35, 54, 72, + 184, 94, 227, 175, 106, 45, 149, 211, 75, 14, 230, 125, 195, 144, 8, 255, 199, 66, 77, 22, 255, 27, 240, 139, 213, + 148, 221, 95, 111, 220, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 382, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d905009fd8669f1bffffffffffffffeb80ff9f80ffff", + "cborBytes": [ + 217, 5, 0, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 128, 255, 159, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 383, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8770433367053371613" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc043558" + } + ] + }, + "cborHex": "d8669f1b79b6d6adf97308dd9f44fc043558ffff", + "cborBytes": [216, 102, 159, 27, 121, 182, 214, 173, 249, 115, 8, 221, 159, 68, 252, 4, 53, 88, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 384, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a9118d8754028fd8078bba2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c2a213d21833b7c76" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1298012730279966827" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b74895f81ceaf4df184" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4394719990310980568" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85f5153cf5c47c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aab6eeabd43795d77d8e06ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06f9" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + "cborHex": "d905049fbf41024c7a9118d8754028fd8078bba2495c2a213d21833b7c761b120377b37645b86b4a6b74895f81ceaf4df1841b3cfd2e8c05cb4bd84785f5153cf5c47c0f4caab6eeabd43795d77d8e06ed0541ff4206f9ff0fff", + "cborBytes": [ + 217, 5, 4, 159, 191, 65, 2, 76, 122, 145, 24, 216, 117, 64, 40, 253, 128, 120, 187, 162, 73, 92, 42, 33, 61, 33, + 131, 59, 124, 118, 27, 18, 3, 119, 179, 118, 69, 184, 107, 74, 107, 116, 137, 95, 129, 206, 175, 77, 241, 132, 27, + 60, 253, 46, 140, 5, 203, 75, 216, 71, 133, 245, 21, 60, 245, 196, 124, 15, 76, 170, 182, 238, 171, 212, 55, 149, + 215, 125, 142, 6, 237, 5, 65, 255, 66, 6, 249, 255, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 385, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "200654" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a" + } + } + ] + } + ] + }, + "cborHex": "d87e9fbf43200654413affff", + "cborBytes": [216, 126, 159, 191, 67, 32, 6, 84, 65, 58, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 386, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7bcb954633cfa8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6114872886454186345" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13963996473166689619" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12080911642569593927" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b8248b0ad227662691b7dbb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2cf2605b31d9532b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10294070309547921198" + } + } + } + ] + } + ] + }, + "cborHex": "d87c9f477bcb954633cfa8bf1b54dc647e03c4f16941b11bc1ca14ced3e875531ba7a80521aa3dd4474c0b8248b0ad227662691b7dbb4135482cf2605b31d9532b1b8edbe267fd7fcf2effff", + "cborBytes": [ + 216, 124, 159, 71, 123, 203, 149, 70, 51, 207, 168, 191, 27, 84, 220, 100, 126, 3, 196, 241, 105, 65, 177, 27, + 193, 202, 20, 206, 211, 232, 117, 83, 27, 167, 168, 5, 33, 170, 61, 212, 71, 76, 11, 130, 72, 176, 173, 34, 118, + 98, 105, 27, 125, 187, 65, 53, 72, 44, 242, 96, 91, 49, 217, 83, 43, 27, 142, 219, 226, 103, 253, 127, 207, 46, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 387, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3639833523978269474" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b147087cc601" + }, + { + "_tag": "ByteArray", + "bytearray": "558d0603" + } + ] + }, + "cborHex": "d8669f1b3283494e2e4873229f46b147087cc60144558d0603ffff", + "cborBytes": [ + 216, 102, 159, 27, 50, 131, 73, 78, 46, 72, 115, 34, 159, 70, 177, 71, 8, 124, 198, 1, 68, 85, 141, 6, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 388, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7120082446547711132" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "adf6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18378807413919412054" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b62cf9d42e5f8749c9fbf42adf61bff0ea3f7c5fb6f56ffffff", + "cborBytes": [ + 216, 102, 159, 27, 98, 207, 157, 66, 229, 248, 116, 156, 159, 191, 66, 173, 246, 27, 255, 14, 163, 247, 197, 251, + 111, 86, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 389, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1284899983706597189" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11615928091548730515" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a399b7af42f9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6105523553366454082" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5e4e" + }, + { + "_tag": "ByteArray", + "bytearray": "c0f7a2c6c34a1ce8" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf69ec5dc092be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85a040513b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df7753e27f69fbdae5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4092512631564810147" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f1b11d4e1ba3cbca7454102809f1ba134110e313e449346a399b7af42f9d8669f1b54bb2d52c6302f429f425e4e48c0f7a2c6c34a1ce8ffffffbf47cf69ec5dc092be4585a040513b49df7753e27f69fbdae51b38cb868e2b3837a3ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 27, 17, 212, 225, 186, 60, 188, 167, 69, 65, 2, + 128, 159, 27, 161, 52, 17, 14, 49, 62, 68, 147, 70, 163, 153, 183, 175, 66, 249, 216, 102, 159, 27, 84, 187, 45, + 82, 198, 48, 47, 66, 159, 66, 94, 78, 72, 192, 247, 162, 198, 195, 74, 28, 232, 255, 255, 255, 191, 71, 207, 105, + 236, 93, 192, 146, 190, 69, 133, 160, 64, 81, 59, 73, 223, 119, 83, 226, 127, 105, 251, 218, 229, 27, 56, 203, + 134, 142, 43, 56, 55, 163, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 390, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4449547412191386119" + }, + "fields": [] + }, + "cborHex": "d8669f1b3dbff7cbf2ed1a0780ff", + "cborBytes": [216, 102, 159, 27, 61, 191, 247, 203, 242, 237, 26, 7, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 391, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2741962993453036488" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8078695354334020962" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4576fb8d278e75e22bc1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9990072081686912244" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12666876599909362062" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10862999187676572186" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9839321619265049366" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "570871879030465818" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d81d163d141e31817cb6cfd1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8265410852514727996" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87b5f675b07301cb7f94ca27" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15507218332049969322" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13563794921296010379" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6c15" + } + ] + }, + "cborHex": "d8669f1b260d68d0a408f3c89fbf1b701d4a9f3bad85624a4576fb8d278e75e22bc11b8aa3dda0ed7edcf41bafc9c927d74e298e1b96c12034e0d1aa1a1b888c4ae1bb1d5316ffbf1b07ec24f309dee51a4cd81d163d141e31817cb6cfd11b72b4a360dacc883c4c87b5f675b07301cb7f94ca271bd734b4e9884390aa1bbc3c479dea189c8bff426c15ffff", + "cborBytes": [ + 216, 102, 159, 27, 38, 13, 104, 208, 164, 8, 243, 200, 159, 191, 27, 112, 29, 74, 159, 59, 173, 133, 98, 74, 69, + 118, 251, 141, 39, 142, 117, 226, 43, 193, 27, 138, 163, 221, 160, 237, 126, 220, 244, 27, 175, 201, 201, 39, 215, + 78, 41, 142, 27, 150, 193, 32, 52, 224, 209, 170, 26, 27, 136, 140, 74, 225, 187, 29, 83, 22, 255, 191, 27, 7, + 236, 36, 243, 9, 222, 229, 26, 76, 216, 29, 22, 61, 20, 30, 49, 129, 124, 182, 207, 209, 27, 114, 180, 163, 96, + 218, 204, 136, 60, 76, 135, 181, 246, 117, 176, 115, 1, 203, 127, 148, 202, 39, 27, 215, 52, 180, 233, 136, 67, + 144, 170, 27, 188, 60, 71, 157, 234, 24, 156, 139, 255, 66, 108, 21, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 392, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905029f80ff", + "cborBytes": [217, 5, 2, 159, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 393, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3706247545228825419" + }, + "fields": [] + }, + "cborHex": "d8669f1b336f3c817f07134b80ff", + "cborBytes": [216, 102, 159, 27, 51, 111, 60, 129, 127, 7, 19, 75, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 394, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8324990291423223522" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b5924e" + }, + { + "_tag": "ByteArray", + "bytearray": "4a2c05" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5978262736167155862" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6234740487570952104" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6b37" + }, + { + "_tag": "ByteArray", + "bytearray": "433d53f33276" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13935669031305238039" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2855383951208321348" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d7ff2ffd2c5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11063258043159865127" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a4e0abf48fbfd2b60a24" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06fd01ff020dbb04" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18166215610915845379" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebcfb574fcf307" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10602155569980558443" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f9f9f1b73884e8ff6db5ee2ff809f43b5924e434a2c05ffd8669f1b52f70e48cb32b8969f1b56863f70bc698fa8426b3746433d53f33276ffffff80d8669f1bfffffffffffffff69f9f1bc16571264e5c56171b27a05c933d1f9144460d7ff2ffd2c51b998896931906e7274aa4e0abf48fbfd2b60a24ffbf41154806fd01ff020dbb04ffbf1bfc1b5cd971cb750347ebcfb574fcf307ffa0d8669f1b93226c517a1ecc6b80ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 159, 159, 27, 115, 136, 78, 143, 246, 219, 94, + 226, 255, 128, 159, 67, 181, 146, 78, 67, 74, 44, 5, 255, 216, 102, 159, 27, 82, 247, 14, 72, 203, 50, 184, 150, + 159, 27, 86, 134, 63, 112, 188, 105, 143, 168, 66, 107, 55, 70, 67, 61, 83, 243, 50, 118, 255, 255, 255, 128, 216, + 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 159, 27, 193, 101, 113, 38, 78, 92, 86, 23, 27, 39, + 160, 92, 147, 61, 31, 145, 68, 70, 13, 127, 242, 255, 210, 197, 27, 153, 136, 150, 147, 25, 6, 231, 39, 74, 164, + 224, 171, 244, 143, 191, 210, 182, 10, 36, 255, 191, 65, 21, 72, 6, 253, 1, 255, 2, 13, 187, 4, 255, 191, 27, 252, + 27, 92, 217, 113, 203, 117, 3, 71, 235, 207, 181, 116, 252, 243, 7, 255, 160, 216, 102, 159, 27, 147, 34, 108, 81, + 122, 30, 204, 107, 128, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 395, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6297549854812579347" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b5765643a236aa6139fa0ffff", + "cborBytes": [216, 102, 159, 27, 87, 101, 100, 58, 35, 106, 166, 19, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 396, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8e8156a03e" + } + ] + }, + "cborHex": "d905049f458e8156a03eff", + "cborBytes": [217, 5, 4, 159, 69, 142, 129, 86, 160, 62, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 397, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13283808211410029424" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3152867062999766664" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15533590687929180020" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3162983809351453801" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9627923329799314494" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15168943017301901190" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2923491306293090993" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2687286020536538629" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3560622641075569751" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95c6c409" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4092473640967398230" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6979473878018026065" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6475664165239789789" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e945c0507c9d76" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8141004839722849871" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7792411260174857105" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12343460954879404721" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16709629159889268339" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bb859913009830b709f1b2bc13be3a2215688d8669f1bd792666e20559f749f1b2be52d0432b48c699f1b859d4141ed625c3effffffa01bd282e94e446bff86bf1b289253da8f8adab11b254b2865d7f416051b3169df6d5485c4574495c6c4091b38cb6317f682e3561b60dc12836261ea511b59de2e3fadd818dd47e945c0507c9d761b70faa8c4d26a964f1b6c2434c15279f3911bab4cc8570a7daab11be7e4873083b56e73ffffff", + "cborBytes": [ + 216, 102, 159, 27, 184, 89, 145, 48, 9, 131, 11, 112, 159, 27, 43, 193, 59, 227, 162, 33, 86, 136, 216, 102, 159, + 27, 215, 146, 102, 110, 32, 85, 159, 116, 159, 27, 43, 229, 45, 4, 50, 180, 140, 105, 159, 27, 133, 157, 65, 65, + 237, 98, 92, 62, 255, 255, 255, 160, 27, 210, 130, 233, 78, 68, 107, 255, 134, 191, 27, 40, 146, 83, 218, 143, + 138, 218, 177, 27, 37, 75, 40, 101, 215, 244, 22, 5, 27, 49, 105, 223, 109, 84, 133, 196, 87, 68, 149, 198, 196, + 9, 27, 56, 203, 99, 23, 246, 130, 227, 86, 27, 96, 220, 18, 131, 98, 97, 234, 81, 27, 89, 222, 46, 63, 173, 216, + 24, 221, 71, 233, 69, 192, 80, 124, 157, 118, 27, 112, 250, 168, 196, 210, 106, 150, 79, 27, 108, 36, 52, 193, 82, + 121, 243, 145, 27, 171, 76, 200, 87, 10, 125, 170, 177, 27, 231, 228, 135, 48, 131, 181, 110, 115, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 398, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffffa80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 399, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14352846926468968031" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "3b9b60" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3059227081256759717" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14980880102817296350" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "45b2cabb0b85e8f5ca9e32" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8028621607018112615" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "395002142900846590" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5664278316770668778" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4799054911676425655" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05d5e9eadf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2789089862654280563" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14231185165848339588" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1103695881342404655" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "deed9a8df7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3475364549819580142" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10160634560979252876" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15735449984667031496" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3158071485593696288" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16964994914299491732" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6396344730965161028" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e1c54499a9c6691004e3e9" + }, + { + "_tag": "ByteArray", + "bytearray": "a9a82fdfc37de38d02f7f999" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13197400548628455910" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "29" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0756" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17274803368547148256" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d4ba8c4d787776a4" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bc72f8e3c27bd6e5f9fd87f80433b9b60d8669f1b2a748ed2699071a59f80ffffd8669f1bcfe6c714d7246fde9f9f4b45b2cabb0b85e8f5ca9e321b6f6b64d06a572667ffd8669f1b057b545b2d1f7ffe9f1b4e9b8f1e541030ea1b4299ab04041125b74505d5e9eadf1b26b4d673ee26c3731bc57f53821f32e484ffffbf1b0f511d8e7379c82f45deed9a8df71b303af9a510fb3eee1b8d01d34cc3b9b68c1bda5f8c641d0117c81b2bd3b948b21a3820ffffffd8669f1beb6fc4fd7b2135949f9f1b58c461a4be1eb4444be1c54499a9c6691004e3e94ca9a82fdfc37de38d02f7f999ffd8669f1bb72695e04b8b61e69f4129ffff420756d8669f1befbc6e234af961e09f48d4ba8c4d787776a4ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 199, 47, 142, 60, 39, 189, 110, 95, 159, 216, 127, 128, 67, 59, 155, 96, 216, 102, 159, 27, 42, + 116, 142, 210, 105, 144, 113, 165, 159, 128, 255, 255, 216, 102, 159, 27, 207, 230, 199, 20, 215, 36, 111, 222, + 159, 159, 75, 69, 178, 202, 187, 11, 133, 232, 245, 202, 158, 50, 27, 111, 107, 100, 208, 106, 87, 38, 103, 255, + 216, 102, 159, 27, 5, 123, 84, 91, 45, 31, 127, 254, 159, 27, 78, 155, 143, 30, 84, 16, 48, 234, 27, 66, 153, 171, + 4, 4, 17, 37, 183, 69, 5, 213, 233, 234, 223, 27, 38, 180, 214, 115, 238, 38, 195, 115, 27, 197, 127, 83, 130, 31, + 50, 228, 132, 255, 255, 191, 27, 15, 81, 29, 142, 115, 121, 200, 47, 69, 222, 237, 154, 141, 247, 27, 48, 58, 249, + 165, 16, 251, 62, 238, 27, 141, 1, 211, 76, 195, 185, 182, 140, 27, 218, 95, 140, 100, 29, 1, 23, 200, 27, 43, + 211, 185, 72, 178, 26, 56, 32, 255, 255, 255, 216, 102, 159, 27, 235, 111, 196, 253, 123, 33, 53, 148, 159, 159, + 27, 88, 196, 97, 164, 190, 30, 180, 68, 75, 225, 197, 68, 153, 169, 198, 105, 16, 4, 227, 233, 76, 169, 168, 47, + 223, 195, 125, 227, 141, 2, 247, 249, 153, 255, 216, 102, 159, 27, 183, 38, 149, 224, 75, 139, 97, 230, 159, 65, + 41, 255, 255, 66, 7, 86, 216, 102, 159, 27, 239, 188, 110, 35, 74, 249, 97, 224, 159, 72, 212, 186, 140, 77, 120, + 119, 118, 164, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 400, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9981370651214102026" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3518381764403099120" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10212186238215120610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2f0130affc7a26b3a87" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10751427249233814113" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f222467bb49eb" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15647936444903353708" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15146767647181926768" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10495658030996997847" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5191340937786008642" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16965074477007162967" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59fbf1b8a84f3b945203e0a1b30d3cd92d37575f01b8db8f946f4f1e6e24aa2f0130affc7a26b3a871b9534be1ea3096261470f222467bb49ebff1bd928a34a525a6d6cd8669f1bd23420ec91a871709fd8669f1b91a8115eed8d46d79f1b480b5913f8ada4421beb700d5a1e0ece57ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 191, 27, 138, 132, 243, 185, 69, 32, 62, 10, 27, + 48, 211, 205, 146, 211, 117, 117, 240, 27, 141, 184, 249, 70, 244, 241, 230, 226, 74, 162, 240, 19, 10, 255, 199, + 162, 107, 58, 135, 27, 149, 52, 190, 30, 163, 9, 98, 97, 71, 15, 34, 36, 103, 187, 73, 235, 255, 27, 217, 40, 163, + 74, 82, 90, 109, 108, 216, 102, 159, 27, 210, 52, 32, 236, 145, 168, 113, 112, 159, 216, 102, 159, 27, 145, 168, + 17, 94, 237, 141, 70, 215, 159, 27, 72, 11, 89, 19, 248, 173, 164, 66, 27, 235, 112, 13, 90, 30, 14, 206, 87, 255, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 401, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6217608475589747915" + }, + "fields": [] + }, + "cborHex": "d8669f1b564961f75bfc24cb80ff", + "cborBytes": [216, 102, 159, 27, 86, 73, 97, 247, 91, 252, 36, 203, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 402, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "372853887570497158" + }, + "fields": [] + }, + "cborHex": "d8669f1b052ca4a2a1c34e8680ff", + "cborBytes": [216, 102, 159, 27, 5, 44, 164, 162, 161, 195, 78, 134, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 403, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d967" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3653393816274260271" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "da455e088ad8b0428386bc" + }, + { + "_tag": "ByteArray", + "bytearray": "5c4b69d4075acd2a88d9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14593915113840862100" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7079948264537678680" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "251c972270" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ead35e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5954676753990705719" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bad6cbeac9bc2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c5edae136b80072cae030c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "398472833f515c9fb863" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46d68a73af9ed0ce34" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "469951ef57d8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4984208650210323906" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9591df5f6aa12fada0a47430" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a5f2da246e7e46128" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1769234351582708474" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0739fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2016385864661466466" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "894ee3346d60d2a7ae2a6381" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97fb06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01b6abf906c06b3927ea05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3361f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb802f01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff91" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16347547417005048769" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6377046977852014682" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15f376eeb1cf2a0f6c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13108539663175401831" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8475096563835177077" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13290336054928331683" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6888603205574484264" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87b9f42d9679fd8669f1b32b37651c3a2d12f9f4bda455e088ad8b0428386bc4a5c4b69d4075acd2a88d91bca88007962b063941b6241076f77e96358ffff45251c972270bf440ead35e31b52a342f561e46237471bad6cbeac9bc24c9c5edae136b80072cae030c34a398472833f515c9fb8634946d68a73af9ed0ce3446469951ef57d81b452b775c22372dc24c9591df5f6aa12fada0a47430496a5f2da246e7e4612842af001b188d9544da8182faffffbf430739fe1b1bfba442b943fd624c894ee3346d60d2a7ae2a63811bfffffffffffffff74397fb064b01b6abf906c06b3927ea0543e3361f413644fb802f010f42ff911be2de27c34370c3c1ff809fbf1b587fd27076d9005a4915f376eeb1cf2a0f6c1bb5eae35f23b041671b759d976bfc8788751bb870c23a0b91d3a31b5f993c1e3ae26128ffffff", + "cborBytes": [ + 216, 123, 159, 66, 217, 103, 159, 216, 102, 159, 27, 50, 179, 118, 81, 195, 162, 209, 47, 159, 75, 218, 69, 94, 8, + 138, 216, 176, 66, 131, 134, 188, 74, 92, 75, 105, 212, 7, 90, 205, 42, 136, 217, 27, 202, 136, 0, 121, 98, 176, + 99, 148, 27, 98, 65, 7, 111, 119, 233, 99, 88, 255, 255, 69, 37, 28, 151, 34, 112, 191, 68, 14, 173, 53, 227, 27, + 82, 163, 66, 245, 97, 228, 98, 55, 71, 27, 173, 108, 190, 172, 155, 194, 76, 156, 94, 218, 225, 54, 184, 0, 114, + 202, 224, 48, 195, 74, 57, 132, 114, 131, 63, 81, 92, 159, 184, 99, 73, 70, 214, 138, 115, 175, 158, 208, 206, 52, + 70, 70, 153, 81, 239, 87, 216, 27, 69, 43, 119, 92, 34, 55, 45, 194, 76, 149, 145, 223, 95, 106, 161, 47, 173, + 160, 164, 116, 48, 73, 106, 95, 45, 162, 70, 231, 228, 97, 40, 66, 175, 0, 27, 24, 141, 149, 68, 218, 129, 130, + 250, 255, 255, 191, 67, 7, 57, 254, 27, 27, 251, 164, 66, 185, 67, 253, 98, 76, 137, 78, 227, 52, 109, 96, 210, + 167, 174, 42, 99, 129, 27, 255, 255, 255, 255, 255, 255, 255, 247, 67, 151, 251, 6, 75, 1, 182, 171, 249, 6, 192, + 107, 57, 39, 234, 5, 67, 227, 54, 31, 65, 54, 68, 251, 128, 47, 1, 15, 66, 255, 145, 27, 226, 222, 39, 195, 67, + 112, 195, 193, 255, 128, 159, 191, 27, 88, 127, 210, 112, 118, 217, 0, 90, 73, 21, 243, 118, 238, 177, 207, 42, + 15, 108, 27, 181, 234, 227, 95, 35, 176, 65, 103, 27, 117, 157, 151, 107, 252, 135, 136, 117, 27, 184, 112, 194, + 58, 11, 145, 211, 163, 27, 95, 153, 60, 30, 58, 226, 97, 40, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 404, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2642516096051461866" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13642477072093798989" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6026287459312730379" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee6153e2dedb409c05" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13340026205038997011" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b24ac1a6382663eea9fd87b9fd8669f1bbd53d09dba8fe24d9f1b53a1ac83feba010b49ee6153e2dedb409c051bb9214b27adc06e13ffffa0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 36, 172, 26, 99, 130, 102, 62, 234, 159, 216, 123, 159, 216, 102, 159, 27, 189, 83, 208, 157, + 186, 143, 226, 77, 159, 27, 83, 161, 172, 131, 254, 186, 1, 11, 73, 238, 97, 83, 226, 222, 219, 64, 156, 5, 27, + 185, 33, 75, 39, 173, 192, 110, 19, 255, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 405, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5700075619159468360" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2531fd17e4c0f053ae22" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7016702631415256106" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "19e1bb396e0dabc682" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0430b3" + }, + { + "_tag": "ByteArray", + "bytearray": "1b92" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "516cdd606cf08521400ffa9a" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11567688086408793306" + } + } + ] + }, + "cborHex": "d8669f1b4f1abc9348dd69489f4a2531fd17e4c0f053ae22d9050b9fd8669f1b616055de000e142a9f4919e1bb396e0dabc682ffff430430b3421b92bf41b34c516cdd606cf08521400ffa9affff1ba088af06beea0cdaffff", + "cborBytes": [ + 216, 102, 159, 27, 79, 26, 188, 147, 72, 221, 105, 72, 159, 74, 37, 49, 253, 23, 228, 192, 240, 83, 174, 34, 217, + 5, 11, 159, 216, 102, 159, 27, 97, 96, 85, 222, 0, 14, 20, 42, 159, 73, 25, 225, 187, 57, 110, 13, 171, 198, 130, + 255, 255, 67, 4, 48, 179, 66, 27, 146, 191, 65, 179, 76, 81, 108, 221, 96, 108, 240, 133, 33, 64, 15, 250, 154, + 255, 255, 27, 160, 136, 175, 6, 190, 234, 12, 218, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 406, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12425707245886573734" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14206999999427153318" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bac115d70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8acb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9853ef3ac14a9c6f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3368385343850099750" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7832398991246400090" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15611741563282128883" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8502008530106101172" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "300fec51817701" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8605500137522043787" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14477555806258360559" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13479385000410632508" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e2e5694cf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14226652328264981170" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15167636081087789339" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5ce456196f03a92aecb2a2" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f80bf1bac70fae7ea110ca61bc529673a41d48da6459bac115d70428acb49e9853ef3ac14a9c6f11b2ebee89faed13426ffbf1b6cb245627c5e9a5a1bd8a80c3cbca1fff31b75fd33b66a50adb447300fec518177011b776ce0c7fb939b8b1bc8ea9c4ce7ec70ef1bbb10653db434513c450e2e5694cf1bc56f38eaa137dab21bd27e44a777a2b91bff4b5ce456196f03a92aecb2a2ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 128, 191, 27, 172, 112, 250, 231, 234, 17, 12, + 166, 27, 197, 41, 103, 58, 65, 212, 141, 166, 69, 155, 172, 17, 93, 112, 66, 138, 203, 73, 233, 133, 62, 243, 172, + 20, 169, 198, 241, 27, 46, 190, 232, 159, 174, 209, 52, 38, 255, 191, 27, 108, 178, 69, 98, 124, 94, 154, 90, 27, + 216, 168, 12, 60, 188, 161, 255, 243, 27, 117, 253, 51, 182, 106, 80, 173, 180, 71, 48, 15, 236, 81, 129, 119, 1, + 27, 119, 108, 224, 199, 251, 147, 155, 139, 27, 200, 234, 156, 76, 231, 236, 112, 239, 27, 187, 16, 101, 61, 180, + 52, 81, 60, 69, 14, 46, 86, 148, 207, 27, 197, 111, 56, 234, 161, 55, 218, 178, 27, 210, 126, 68, 167, 119, 162, + 185, 27, 255, 75, 92, 228, 86, 25, 111, 3, 169, 42, 236, 178, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 407, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11231356481283147467" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c9de8b0e" + } + ] + }, + "cborHex": "d905029fa0d8669f1b9bddcb36a4a9c6cb80ff44c9de8b0eff", + "cborBytes": [ + 217, 5, 2, 159, 160, 216, 102, 159, 27, 155, 221, 203, 54, 164, 169, 198, 203, 128, 255, 68, 201, 222, 139, 14, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 408, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13895432663715091833" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15252394890834893292" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3350778983333564030" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905089fd905029fd8669f1bc0d67e62f11915799f1bd3ab6457b23259ec1b2e805bbb6e710e7effffffff", + "cborBytes": [ + 217, 5, 8, 159, 217, 5, 2, 159, 216, 102, 159, 27, 192, 214, 126, 98, 241, 25, 21, 121, 159, 27, 211, 171, 100, + 87, 178, 50, 89, 236, 27, 46, 128, 91, 187, 110, 113, 14, 126, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 409, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff080ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 410, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17570094802264563514" + }, + "fields": [] + }, + "cborHex": "d8669f1bf3d58421deea9f3a80ff", + "cborBytes": [216, 102, 159, 27, 243, 213, 132, 33, 222, 234, 159, 58, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 411, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8533392155256310274" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14804906337815394936" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a8fc952f7fbef" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2764279961867320265" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8878137456469028317" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17374378636854080145" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82fc1354ff4073c6fdb371" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cf4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed4cbe89ec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d31119" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050d9fd8669f1b766cb2f40f284a029f9f1bcd7597dfde6a7a78478a8fc952f7fbefffbf1b265cb1fac2d4fbc91b7b357afa6fed2ddd1bf11e31511ad2b2914b82fc1354ff4073c6fdb371423cf445ed4cbe89ec41d243d31119ffffffff", + "cborBytes": [ + 217, 5, 13, 159, 216, 102, 159, 27, 118, 108, 178, 244, 15, 40, 74, 2, 159, 159, 27, 205, 117, 151, 223, 222, 106, + 122, 120, 71, 138, 143, 201, 82, 247, 251, 239, 255, 191, 27, 38, 92, 177, 250, 194, 212, 251, 201, 27, 123, 53, + 122, 250, 111, 237, 45, 221, 27, 241, 30, 49, 81, 26, 210, 178, 145, 75, 130, 252, 19, 84, 255, 64, 115, 198, 253, + 179, 113, 66, 60, 244, 69, 237, 76, 190, 137, 236, 65, 210, 67, 211, 17, 25, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 412, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11463923758839076104" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14761622638635448049" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8059703014468011258" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7792940778930406961" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24a5c5bdaf2324" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86001ac9d874ab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d8eb388626958b74d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0d62f6ff12b77293c379ec8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9dbd5a9262d3fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3544636245225418307" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1990512661747090364" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b9f1809eb91c395089f1bccdbd194543af6f1d8669f1bfffffffffffffffa9fbf1b6fd9d1308482c4fa1b6c26165983cd8631ffffffbf4724a5c5bdaf23244786001ac9d874ab497d8eb388626958b74d4ce0d62f6ff12b77293c379ec8479dbd5a9262d3fa1b313113e27ea2ae43ff9fd8669f1b1b9fb8b83c5a43bc80ffa0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 159, 24, 9, 235, 145, 195, 149, 8, 159, 27, 204, 219, 209, 148, 84, 58, 246, 241, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 191, 27, 111, 217, 209, 48, 132, 130, 196, 250, 27, 108, 38, + 22, 89, 131, 205, 134, 49, 255, 255, 255, 191, 71, 36, 165, 197, 189, 175, 35, 36, 71, 134, 0, 26, 201, 216, 116, + 171, 73, 125, 142, 179, 136, 98, 105, 88, 183, 77, 76, 224, 214, 47, 111, 241, 43, 119, 41, 60, 55, 158, 200, 71, + 157, 189, 90, 146, 98, 211, 250, 27, 49, 49, 19, 226, 126, 162, 174, 67, 255, 159, 216, 102, 159, 27, 27, 159, + 184, 184, 60, 90, 67, 188, 128, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 413, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c5410abc8baa1b2689248" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1028ea93c95e75d5b94d8f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75115af4f766" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8ccf4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11430226025152615794" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eda928f32839c83f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11045757312862365219" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "545c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17247783205113810387" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050b9f8080d8669f1bfffffffffffffff49fbf4b0c5410abc8baa1b26892484b1028ea93c95e75d5b94d8f41b74675115af4f76643d8ccf41b9ea052028ba5957248eda928f32839c83f1b994a69c0cc55a62341fd42545cff9f1bef5c6f713fc1cdd3ffffffff", + "cborBytes": [ + 217, 5, 11, 159, 128, 128, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 191, 75, 12, 84, 16, + 171, 200, 186, 161, 178, 104, 146, 72, 75, 16, 40, 234, 147, 201, 94, 117, 213, 185, 77, 143, 65, 183, 70, 117, + 17, 90, 244, 247, 102, 67, 216, 204, 244, 27, 158, 160, 82, 2, 139, 165, 149, 114, 72, 237, 169, 40, 243, 40, 57, + 200, 63, 27, 153, 74, 105, 192, 204, 85, 166, 35, 65, 253, 66, 84, 92, 255, 159, 27, 239, 92, 111, 113, 63, 193, + 205, 211, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 414, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5295045449844246874" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15518747610868054817" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13663579360462952899" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7558713841707203403" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5029274741537376563" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "380b14a90e1e72" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5625109498074870955" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15832537683448083758" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "235217414602488134" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "683c95f7c4" + } + ] + } + ] + } + ] + }, + "cborHex": "d87a9fd8669f1b497bc7c84383c95a9f1bd75daabaf0bb7b21a0ffff9fd8669f1bbd9ec9091cc0d9c39f1b68e5f230f5c93b4bffffa01b45cb92bb2f2e09339f47380b14a90e1e721b4e1067490f6db4ab1bdbb8792382e8b52effd8669f1b0343a8fe0a5df9469f45683c95f7c4ffffffff", + "cborBytes": [ + 216, 122, 159, 216, 102, 159, 27, 73, 123, 199, 200, 67, 131, 201, 90, 159, 27, 215, 93, 170, 186, 240, 187, 123, + 33, 160, 255, 255, 159, 216, 102, 159, 27, 189, 158, 201, 9, 28, 192, 217, 195, 159, 27, 104, 229, 242, 48, 245, + 201, 59, 75, 255, 255, 160, 27, 69, 203, 146, 187, 47, 46, 9, 51, 159, 71, 56, 11, 20, 169, 14, 30, 114, 27, 78, + 16, 103, 73, 15, 109, 180, 171, 27, 219, 184, 121, 35, 130, 232, 181, 46, 255, 216, 102, 159, 27, 3, 67, 168, 254, + 10, 93, 249, 70, 159, 69, 104, 60, 149, 247, 196, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 415, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16829837522145944449" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9e9af3ef886b53df2ca5e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4562298498383512676" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05a03dd08598d9f09b9f25" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11801746445594458628" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1799" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08bd3da86a8b8cf700dbcf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "26defb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4044008623787306718" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0d67f4fb39f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2535358675722126305" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e29f669946996cd0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11911850731088112082" + } + } + } + ] + } + ] + }, + "cborHex": "d905049fd8669f1bfffffffffffffffa9fbf42bc001be98f980edf0ca3814bd9e9af3ef886b53df2ca5e1b3f508a4feb728464ff80ffffbf4b05a03dd08598d9f09b9f251ba3c839dd2ae2fa044217994b08bd3da86a8b8cf700dbcf4326defb1b381f346ad1756ede46a0d67f4fb39f1b232f67485c9f43e148e29f669946996cd01ba54f6520d3fbe9d2ffff", + "cborBytes": [ + 217, 5, 4, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 191, 66, 188, 0, 27, 233, 143, + 152, 14, 223, 12, 163, 129, 75, 217, 233, 175, 62, 248, 134, 181, 61, 242, 202, 94, 27, 63, 80, 138, 79, 235, 114, + 132, 100, 255, 128, 255, 255, 191, 75, 5, 160, 61, 208, 133, 152, 217, 240, 155, 159, 37, 27, 163, 200, 57, 221, + 42, 226, 250, 4, 66, 23, 153, 75, 8, 189, 61, 168, 106, 139, 140, 247, 0, 219, 207, 67, 38, 222, 251, 27, 56, 31, + 52, 106, 209, 117, 110, 222, 70, 160, 214, 127, 79, 179, 159, 27, 35, 47, 103, 72, 92, 159, 67, 225, 72, 226, 159, + 102, 153, 70, 153, 108, 208, 27, 165, 79, 101, 32, 211, 251, 233, 210, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 416, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16862501224061031560" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "697338" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "915fde1a2547" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8433" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9b492e69fa6a0a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14039064302315592611" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9787529852655515819" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14051391518657374328" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1036537080377178302" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8985853283699336706" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12505829726715753006" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efbf748ce10ab2496cab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13851349053445817928" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11509407975897905693" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10097131535329983460" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "19c13cfd99da7b9a" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16577214151267698126" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8698919c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1494004991489010433" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ae9c24a7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4948039654638786910" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fcb0a4433762324a27faf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15050237441718653138" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f5181794c936b51e531" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "548870958977131031" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b172569c1c7916afc9e2a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a1a72affef0db0d4e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d12ddc8334af" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7684185735885136416" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f29be930ae82edf91f2f4e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ecbdca5c08855aa9a4f" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bea03a3859cbf54889fa0bf43697338415346915fde1a254742843348f9b492e69fa6a0a01bc2d4c699ce635ba3ff1b87d44a8b601038abd8669f1bc3009223858268789fbf1b0e6284fb9866f8be1b7cb429f3d2ad26021bad8da1e0b269b22e4aefbf748ce10ab2496cab1bc039e0939694c6484124ff9f1b9fb9a1931a713a1dffd8669f1b8c2037a26dbcfbe49f4819c13cfd99da7b9affffffff9fd8669f1be60e1870d3e3c5ce9f448698919cffff1b14bbc59fca5ceb0144ae9c24a7bf410f1b44aaf7d99d4a995e4b0fcb0a4433762324a27faf1bd0dd2f36b2ec90d24a9f5181794c936b51e5311b079dfb3aa95c22174bb172569c1c7916afc9e2a4492a1a72affef0db0d4e46d12ddc8334af1b6aa3b636d78ea2204bf29be930ae82edf91f2f4e4a3ecbdca5c08855aa9a4fffffffff", + "cborBytes": [ + 216, 102, 159, 27, 234, 3, 163, 133, 156, 191, 84, 136, 159, 160, 191, 67, 105, 115, 56, 65, 83, 70, 145, 95, 222, + 26, 37, 71, 66, 132, 51, 72, 249, 180, 146, 230, 159, 166, 160, 160, 27, 194, 212, 198, 153, 206, 99, 91, 163, + 255, 27, 135, 212, 74, 139, 96, 16, 56, 171, 216, 102, 159, 27, 195, 0, 146, 35, 133, 130, 104, 120, 159, 191, 27, + 14, 98, 132, 251, 152, 102, 248, 190, 27, 124, 180, 41, 243, 210, 173, 38, 2, 27, 173, 141, 161, 224, 178, 105, + 178, 46, 74, 239, 191, 116, 140, 225, 10, 178, 73, 108, 171, 27, 192, 57, 224, 147, 150, 148, 198, 72, 65, 36, + 255, 159, 27, 159, 185, 161, 147, 26, 113, 58, 29, 255, 216, 102, 159, 27, 140, 32, 55, 162, 109, 188, 251, 228, + 159, 72, 25, 193, 60, 253, 153, 218, 123, 154, 255, 255, 255, 255, 159, 216, 102, 159, 27, 230, 14, 24, 112, 211, + 227, 197, 206, 159, 68, 134, 152, 145, 156, 255, 255, 27, 20, 187, 197, 159, 202, 92, 235, 1, 68, 174, 156, 36, + 167, 191, 65, 15, 27, 68, 170, 247, 217, 157, 74, 153, 94, 75, 15, 203, 10, 68, 51, 118, 35, 36, 162, 127, 175, + 27, 208, 221, 47, 54, 178, 236, 144, 210, 74, 159, 81, 129, 121, 76, 147, 107, 81, 229, 49, 27, 7, 157, 251, 58, + 169, 92, 34, 23, 75, 177, 114, 86, 156, 28, 121, 22, 175, 201, 226, 164, 73, 42, 26, 114, 175, 254, 240, 219, 13, + 78, 70, 209, 45, 220, 131, 52, 175, 27, 106, 163, 182, 54, 215, 142, 162, 32, 75, 242, 155, 233, 48, 174, 130, + 237, 249, 31, 47, 78, 74, 62, 203, 220, 165, 192, 136, 85, 170, 154, 79, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 417, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15850051992465449968" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8736384351457580738" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7755454557881397477" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6366bcc3af9fe2eef7912" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "094c22e4dccd5d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6322991251102702314" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9f1bdbf6b24f5a6023f0d8669f1b793ddf47c1e916c29fbf1b6ba0e8d48a3470e54bb6366bcc3af9fe2eef7912ff47094c22e4dccd5d1b57bfc70acfe11aeaffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 27, 219, 246, 178, 79, 90, 96, 35, 240, 216, 102, + 159, 27, 121, 61, 223, 71, 193, 233, 22, 194, 159, 191, 27, 107, 160, 232, 212, 138, 52, 112, 229, 75, 182, 54, + 107, 204, 58, 249, 254, 46, 239, 121, 18, 255, 71, 9, 76, 34, 228, 220, 205, 93, 27, 87, 191, 199, 10, 207, 225, + 26, 234, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 418, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4735656819953562823" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9539434332484319452" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0107079587" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "03a0a20082c9ee6770" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47d22e0346ab1d2f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58ec9458592b8a4ce82e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9da" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b41b86ec9837cf4c79fbf1b8462e0fbb9e4b8dc4501070795874903a0a20082c9ee67704847d22e0346ab1d2f4a58ec9458592b8a4ce82e42b9daffffff", + "cborBytes": [ + 216, 102, 159, 27, 65, 184, 110, 201, 131, 124, 244, 199, 159, 191, 27, 132, 98, 224, 251, 185, 228, 184, 220, 69, + 1, 7, 7, 149, 135, 73, 3, 160, 162, 0, 130, 201, 238, 103, 112, 72, 71, 210, 46, 3, 70, 171, 29, 47, 74, 88, 236, + 148, 88, 89, 43, 138, 76, 232, 46, 66, 185, 218, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 419, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "54dcf94d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15933008261161162944" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adcbb6fc43351cb302d654" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "47cfb35709316efe31" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d905059fd87d9fbf4454dcf94d1bdd1d6a98c9e018c041e94badcbb6fc43351cb302d654ff4947cfb35709316efe31d87a80ffff", + "cborBytes": [ + 217, 5, 5, 159, 216, 125, 159, 191, 68, 84, 220, 249, 77, 27, 221, 29, 106, 152, 201, 224, 24, 192, 65, 233, 75, + 173, 203, 182, 252, 67, 53, 28, 179, 2, 214, 84, 255, 73, 71, 207, 179, 87, 9, 49, 110, 254, 49, 216, 122, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 420, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10589619161764658644" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10720454186148849405" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b5a1f7e6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16768533438973433776" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11107866557004213011" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "28224a4cabc3386924" + }, + { + "_tag": "ByteArray", + "bytearray": "88ee12ec5da712ebb56125ea" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14267754745367401757" + } + } + ] + }, + "cborHex": "d8669f1b92f5e2857ba6fdd49fd8669f1b94c6b4486c4066fd9f44b5a1f7e61be8b5cc51ba4557b0d8669f1b9a2711c816ad6b139f4928224a4cabc33869244c88ee12ec5da712ebb56125eaffffffff1bc6013f58dc04951dffff", + "cborBytes": [ + 216, 102, 159, 27, 146, 245, 226, 133, 123, 166, 253, 212, 159, 216, 102, 159, 27, 148, 198, 180, 72, 108, 64, + 102, 253, 159, 68, 181, 161, 247, 230, 27, 232, 181, 204, 81, 186, 69, 87, 176, 216, 102, 159, 27, 154, 39, 17, + 200, 22, 173, 107, 19, 159, 73, 40, 34, 74, 76, 171, 195, 56, 105, 36, 76, 136, 238, 18, 236, 93, 167, 18, 235, + 181, 97, 37, 234, 255, 255, 255, 255, 27, 198, 1, 63, 88, 220, 4, 149, 29, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 421, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11602673590269401854" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7802832877818402656" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "359244751299344757" + } + } + ] + }, + "cborHex": "d8669f1ba104fa2820d05afe9fd8669f1b6c493b29441ad76080ff061bfffffffffffffffc1b04fc4b32ac9ef975ffff", + "cborBytes": [ + 216, 102, 159, 27, 161, 4, 250, 40, 32, 208, 90, 254, 159, 216, 102, 159, 27, 108, 73, 59, 41, 68, 26, 215, 96, + 128, 255, 6, 27, 255, 255, 255, 255, 255, 255, 255, 252, 27, 4, 252, 75, 50, 172, 158, 249, 117, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 422, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9e14698d6fc0dfd7a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f" + } + } + ] + } + ] + }, + "cborHex": "d9050b9fbf49f9e14698d6fc0dfd7a412fffff", + "cborBytes": [217, 5, 11, 159, 191, 73, 249, 225, 70, 152, 214, 252, 13, 253, 122, 65, 47, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 423, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "122223072085945912" + }, + "fields": [] + }, + "cborHex": "d8669f1b01b2393c8b0a2e3880ff", + "cborBytes": [216, 102, 159, 27, 1, 178, 57, 60, 139, 10, 46, 56, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 424, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "497343155385549747" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15002470808233289764" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13922582691917839158" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bc032b7e55755b6b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "77fbe69e44" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9377837926746302265" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7525834240024326105" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4902259576151490877" + } + }, + { + "_tag": "ByteArray", + "bytearray": "213d2f5236900ca5" + }, + { + "_tag": "ByteArray", + "bytearray": "5e996a3d5e75dd9e81" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12680314321951912921" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10002918897677395220" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6096306826147707492" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a232531acfebded5210903e3" + }, + { + "_tag": "ByteArray", + "bytearray": "d9e7" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17698512154777908538" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3862896097875537085" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12635074151286057322" + } + }, + { + "_tag": "ByteArray", + "bytearray": "232572d98baa1572d2" + }, + { + "_tag": "ByteArray", + "bytearray": "cdd55806" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12528350112908448319" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d31869ed98" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2e011876f4fb311" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a4ceb2ff7" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5b" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16697248735048947662" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10195002979128874051" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12309292652716688304" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a81c8ed3cb697f9e140ea47d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11412866059916023047" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4816560702267060372" + } + } + ] + }, + "cborHex": "d8669f1b06e6eaf6fc3a43b39f9f1bd0337bb6ade9a824d8669f1bc136f3317bc3bb369f48bc032b7e55755b6bffff4577fbe69e44d8669f1b8224c5e890e627399f1b6871225e231f2fd91b4408531c7944413d48213d2f5236900ca5495e996a3d5e75dd9e811baff986b1503df3d9ffff1b8ad181bd5d1a6514ff9fd8669f1b549a6ec23e52ba649f4ca232531acfebded5210903e342d9e7ffffff9fd8669f1bf59dbf08b678753a9f1b359bc388d61d2cbd1baf58ccff4220296a49232572d98baa1572d244cdd55806ffffbf1baddda40cb5a2123f45d31869ed9848f2e011876f4fb311452a4ceb2ff7ff415b801be7b88b423aeed7ceffd8669f1b8d7bed31af0694439fd8669f1baad36473418103b09f4ca81c8ed3cb697f9e140ea47d1b9e62a536aa681507ffffffff1b42d7dc7081bbf094ffff", + "cborBytes": [ + 216, 102, 159, 27, 6, 230, 234, 246, 252, 58, 67, 179, 159, 159, 27, 208, 51, 123, 182, 173, 233, 168, 36, 216, + 102, 159, 27, 193, 54, 243, 49, 123, 195, 187, 54, 159, 72, 188, 3, 43, 126, 85, 117, 91, 107, 255, 255, 69, 119, + 251, 230, 158, 68, 216, 102, 159, 27, 130, 36, 197, 232, 144, 230, 39, 57, 159, 27, 104, 113, 34, 94, 35, 31, 47, + 217, 27, 68, 8, 83, 28, 121, 68, 65, 61, 72, 33, 61, 47, 82, 54, 144, 12, 165, 73, 94, 153, 106, 61, 94, 117, 221, + 158, 129, 27, 175, 249, 134, 177, 80, 61, 243, 217, 255, 255, 27, 138, 209, 129, 189, 93, 26, 101, 20, 255, 159, + 216, 102, 159, 27, 84, 154, 110, 194, 62, 82, 186, 100, 159, 76, 162, 50, 83, 26, 207, 235, 222, 213, 33, 9, 3, + 227, 66, 217, 231, 255, 255, 255, 159, 216, 102, 159, 27, 245, 157, 191, 8, 182, 120, 117, 58, 159, 27, 53, 155, + 195, 136, 214, 29, 44, 189, 27, 175, 88, 204, 255, 66, 32, 41, 106, 73, 35, 37, 114, 217, 139, 170, 21, 114, 210, + 68, 205, 213, 88, 6, 255, 255, 191, 27, 173, 221, 164, 12, 181, 162, 18, 63, 69, 211, 24, 105, 237, 152, 72, 242, + 224, 17, 135, 111, 79, 179, 17, 69, 42, 76, 235, 47, 247, 255, 65, 91, 128, 27, 231, 184, 139, 66, 58, 238, 215, + 206, 255, 216, 102, 159, 27, 141, 123, 237, 49, 175, 6, 148, 67, 159, 216, 102, 159, 27, 170, 211, 100, 115, 65, + 129, 3, 176, 159, 76, 168, 28, 142, 211, 203, 105, 127, 158, 20, 14, 164, 125, 27, 158, 98, 165, 54, 170, 104, 21, + 7, 255, 255, 255, 255, 27, 66, 215, 220, 112, 129, 187, 240, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 425, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1134422668059233553" + }, + "fields": [] + }, + "cborHex": "d8669f1b0fbe4767fad24d1180ff", + "cborBytes": [216, 102, 159, 27, 15, 190, 71, 103, 250, 210, 77, 17, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 426, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17008072477386869542" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ec" + } + ] + }, + "cborHex": "d8669f1bec08cfce38be0b269f41ecffff", + "cborBytes": [216, 102, 159, 27, 236, 8, 207, 206, 56, 190, 11, 38, 159, 65, 236, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 427, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10660079070243339782" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10696226392843658553" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3f1c122ef9be74" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13825092506905507303" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3650199072013729359" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9b288620807502" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8051203421862562460" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4e2387c0da639438c9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "191011775200075333" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a34231a5ccae34e000" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2593723211056117805" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5593240999221174466" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6255232743268967891" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0e9b7c596ca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7248601950081736723" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df6bd179cea8a2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9266847089107608182" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b04856f66" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14159700959621206820" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21fc788e0fa9d5b1cb64" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8085944145606520201" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11378398638608020868" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13395069498544171654" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17259487933658271243" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c150fedb6621a826057ad723" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3795ff623b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b9" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "41610728382e217b669346" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8454122899359219830" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d31935a5a5" + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9fd8669f1b93f0356f536e3e069fd8669f1b9470a13bb69aa53980ff9f473f1c122ef9be741bbfdc9862f50475e7ff1b32a81cb766d6be4f479b2886208075021b6fbb9edae6870a9cffff9f494e2387c0da639438c9bf1b02a69c3290b79e4549a34231a5ccae34e0001b23fec184b0af782d1b4d9f2f0df5baa0c21b56cf0d09d1f065d346c0e9b7c596ca1b64983511a0d3601347df6bd179cea8a21b809a7454661f2276459b04856f661bc4815d005ffad3244a21fc788e0fa9d5b1cb64ffbf1b70370b5bf886ad891b9de83146c704f5841bb9e4d8bd22652a861bef8604d4bad78e0b4cc150fedb6621a826057ad723453795ff623bff41b9ff4b41610728382e217b669346d8669f1b755313fc2fcd40769f45d31935a5a5ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 216, 102, 159, 27, 147, 240, 53, 111, 83, 110, 62, + 6, 159, 216, 102, 159, 27, 148, 112, 161, 59, 182, 154, 165, 57, 128, 255, 159, 71, 63, 28, 18, 46, 249, 190, 116, + 27, 191, 220, 152, 98, 245, 4, 117, 231, 255, 27, 50, 168, 28, 183, 102, 214, 190, 79, 71, 155, 40, 134, 32, 128, + 117, 2, 27, 111, 187, 158, 218, 230, 135, 10, 156, 255, 255, 159, 73, 78, 35, 135, 192, 218, 99, 148, 56, 201, + 191, 27, 2, 166, 156, 50, 144, 183, 158, 69, 73, 163, 66, 49, 165, 204, 174, 52, 224, 0, 27, 35, 254, 193, 132, + 176, 175, 120, 45, 27, 77, 159, 47, 13, 245, 186, 160, 194, 27, 86, 207, 13, 9, 209, 240, 101, 211, 70, 192, 233, + 183, 197, 150, 202, 27, 100, 152, 53, 17, 160, 211, 96, 19, 71, 223, 107, 209, 121, 206, 168, 162, 27, 128, 154, + 116, 84, 102, 31, 34, 118, 69, 155, 4, 133, 111, 102, 27, 196, 129, 93, 0, 95, 250, 211, 36, 74, 33, 252, 120, + 142, 15, 169, 213, 177, 203, 100, 255, 191, 27, 112, 55, 11, 91, 248, 134, 173, 137, 27, 157, 232, 49, 70, 199, 4, + 245, 132, 27, 185, 228, 216, 189, 34, 101, 42, 134, 27, 239, 134, 4, 212, 186, 215, 142, 11, 76, 193, 80, 254, + 219, 102, 33, 168, 38, 5, 122, 215, 35, 69, 55, 149, 255, 98, 59, 255, 65, 185, 255, 75, 65, 97, 7, 40, 56, 46, + 33, 123, 102, 147, 70, 216, 102, 159, 27, 117, 83, 19, 252, 47, 205, 64, 118, 159, 69, 211, 25, 53, 165, 165, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 428, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17909424680032824771" + }, + "fields": [] + }, + "cborHex": "d8669f1bf88b0edbb8f86dc380ff", + "cborBytes": [216, 102, 159, 27, 248, 139, 14, 219, 184, 248, 109, 195, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 429, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6911380011864692894" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1893609216982402038" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7927606851211767399" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12296412691490781460" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bdff96b82059cce387d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13427437640533780639" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2869065095063995229" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8606073283410182648" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a12460b264eccb79" + }, + { + "_tag": "ByteArray", + "bytearray": "b6437a580d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8799370395675193273" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17736521262482994024" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c521f0032b49bdb6" + }, + { + "_tag": "ByteArray", + "bytearray": "52ebc59815a543" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e3bf09b7558e946c3e489" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "136026538707672402" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ad60f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7547714087980808564" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9179e52d10d505" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10cf84c3b1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "909750750063048242" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4914071724590669426" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16148542975226073733" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1567989566228167417" + } + }, + { + "_tag": "ByteArray", + "bytearray": "99585db0e0199046" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12219032908930819786" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5cffc2acbe2578ccb79f" + }, + { + "_tag": "ByteArray", + "bytearray": "ff9c34630e07" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5fea2780b2ee189e9fd8669f1b1a47738cd1a443f69fd8669f1b6e04846dcd6e2e679f1baaa5a23197e9b9144abdff96b82059cce387d31bba57d76477b9a89f1b27d0f780c4c3035dffff9f1b776eea0de8a4c1f848a12460b264eccb7945b6437a580d1b7a1da4c0f94eefb9ffd8669f1bf624c81db976336880ff9f48c521f0032b49bdb64752ebc59815a543ffbf4b6e3bf09b7558e946c3e4891b01e3436a8fb25d52ffffffbf433ad60f1b68beddf9384eb974479179e52d10d5054510cf84c3b14294f91b0ca0157cb3a73632ff1b44324a3299049e729f1be01b2646fe7ad2859f1b15c29e33f28c7af94899585db0e01990461ba992b9b103a126ca4a5cffc2acbe2578ccb79f46ff9c34630e07ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 95, 234, 39, 128, 178, 238, 24, 158, 159, 216, 102, 159, 27, 26, 71, 115, 140, 209, 164, 67, + 246, 159, 216, 102, 159, 27, 110, 4, 132, 109, 205, 110, 46, 103, 159, 27, 170, 165, 162, 49, 151, 233, 185, 20, + 74, 189, 255, 150, 184, 32, 89, 204, 227, 135, 211, 27, 186, 87, 215, 100, 119, 185, 168, 159, 27, 39, 208, 247, + 128, 196, 195, 3, 93, 255, 255, 159, 27, 119, 110, 234, 13, 232, 164, 193, 248, 72, 161, 36, 96, 178, 100, 236, + 203, 121, 69, 182, 67, 122, 88, 13, 27, 122, 29, 164, 192, 249, 78, 239, 185, 255, 216, 102, 159, 27, 246, 36, + 200, 29, 185, 118, 51, 104, 128, 255, 159, 72, 197, 33, 240, 3, 43, 73, 189, 182, 71, 82, 235, 197, 152, 21, 165, + 67, 255, 191, 75, 110, 59, 240, 155, 117, 88, 233, 70, 195, 228, 137, 27, 1, 227, 67, 106, 143, 178, 93, 82, 255, + 255, 255, 191, 67, 58, 214, 15, 27, 104, 190, 221, 249, 56, 78, 185, 116, 71, 145, 121, 229, 45, 16, 213, 5, 69, + 16, 207, 132, 195, 177, 66, 148, 249, 27, 12, 160, 21, 124, 179, 167, 54, 50, 255, 27, 68, 50, 74, 50, 153, 4, + 158, 114, 159, 27, 224, 27, 38, 70, 254, 122, 210, 133, 159, 27, 21, 194, 158, 51, 242, 140, 122, 249, 72, 153, + 88, 93, 176, 224, 25, 144, 70, 27, 169, 146, 185, 177, 3, 161, 38, 202, 74, 92, 255, 194, 172, 190, 37, 120, 204, + 183, 159, 70, 255, 156, 52, 99, 14, 7, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 430, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7400993027161813408" + }, + "fields": [] + }, + "cborHex": "d8669f1b66b59bf2311f71a080ff", + "cborBytes": [216, 102, 159, 27, 102, 181, 155, 242, 49, 31, 113, 160, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 431, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15077025356592360520" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b95df19168721d1d9d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d368a2df422e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d8531" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3343612733845720034" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcb2c088a0335d34" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b88d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb59ef1e20" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f9ec09a" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c7eb27" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14624531442583731696" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14217038168344225954" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14198596191950391624" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "406133f0c0ffbe661b" + } + ] + }, + "cborHex": "d8669f1bd13c5aae293eac489fbf4a3b95df19168721d1d9d546d368a2df422e439d85311b2e66e610f358cbe248bcb2c088a0335d3442b88d45fb59ef1e20443f9ec09aff0843c7eb279f9f1bcaf4c5dce9bbfdf0031bc54d10e39653e8a21bffffffffffffffef1bc50b8c025a6ac948ffff49406133f0c0ffbe661bffff", + "cborBytes": [ + 216, 102, 159, 27, 209, 60, 90, 174, 41, 62, 172, 72, 159, 191, 74, 59, 149, 223, 25, 22, 135, 33, 209, 217, 213, + 70, 211, 104, 162, 223, 66, 46, 67, 157, 133, 49, 27, 46, 102, 230, 16, 243, 88, 203, 226, 72, 188, 178, 192, 136, + 160, 51, 93, 52, 66, 184, 141, 69, 251, 89, 239, 30, 32, 68, 63, 158, 192, 154, 255, 8, 67, 199, 235, 39, 159, + 159, 27, 202, 244, 197, 220, 233, 187, 253, 240, 3, 27, 197, 77, 16, 227, 150, 83, 232, 162, 27, 255, 255, 255, + 255, 255, 255, 255, 239, 27, 197, 11, 140, 2, 90, 106, 201, 72, 255, 255, 73, 64, 97, 51, 240, 192, 255, 190, 102, + 27, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 432, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3281275040351025124" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5796172856940621195" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00" + } + ] + } + ] + }, + "cborHex": "d8799f9f1b2d896e43a67a77e41b5070248102b4ed8b4100ffff", + "cborBytes": [ + 216, 121, 159, 159, 27, 45, 137, 110, 67, 166, 122, 119, 228, 27, 80, 112, 36, 129, 2, 180, 237, 139, 65, 0, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 433, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14728857373545008856" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1ad525309c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12991190632549221529" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2913464676108956981" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1370890667275585446" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5825144440349678450" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13419228896067419630" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ee2c6db7ee90c32" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11023447291208424236" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db60" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5681094546764645340" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bcc6769be918b0ed89f809f451ad525309cffd8669f1bb449fb0cce7a849980ffd8669f1b286eb4afcd1f75359fa0ffffd8669f1b130661cc70dc07a69f1b50d712016c625b721bba3aad9535c17deebf487ee2c6db7ee90c321b98fb26e818b85b2c42db601b4ed74d63fb50c3dcffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 204, 103, 105, 190, 145, 139, 14, 216, 159, 128, 159, 69, 26, 213, 37, 48, 156, 255, 216, 102, + 159, 27, 180, 73, 251, 12, 206, 122, 132, 153, 128, 255, 216, 102, 159, 27, 40, 110, 180, 175, 205, 31, 117, 53, + 159, 160, 255, 255, 216, 102, 159, 27, 19, 6, 97, 204, 112, 220, 7, 166, 159, 27, 80, 215, 18, 1, 108, 98, 91, + 114, 27, 186, 58, 173, 149, 53, 193, 125, 238, 191, 72, 126, 226, 198, 219, 126, 233, 12, 50, 27, 152, 251, 38, + 232, 24, 184, 91, 44, 66, 219, 96, 27, 78, 215, 77, 99, 251, 80, 195, 220, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 434, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1076130750277564860" + } + } + ] + }, + "cborHex": "d87c9f1b0eef2f373e2b39bcff", + "cborBytes": [216, 124, 159, 27, 14, 239, 47, 55, 62, 43, 57, 188, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 435, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11832330296319313760" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "51" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d635" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9211227252714487056" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15665400927801254069" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3044777160947156572" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5587800512946332461" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28fc3c9b6a" + }, + { + "_tag": "ByteArray", + "bytearray": "da78de8bee218e" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1ba434e1b6d13487609f41519f42d635d8669f1b7fd4da621771bd109f1bd966af251dab20b51b2a4138b22a7a465c1b4d8bdaf609e9632d4528fc3c9b6a47da78de8bee218effffffffff", + "cborBytes": [ + 216, 102, 159, 27, 164, 52, 225, 182, 209, 52, 135, 96, 159, 65, 81, 159, 66, 214, 53, 216, 102, 159, 27, 127, + 212, 218, 98, 23, 113, 189, 16, 159, 27, 217, 102, 175, 37, 29, 171, 32, 181, 27, 42, 65, 56, 178, 42, 122, 70, + 92, 27, 77, 139, 218, 246, 9, 233, 99, 45, 69, 40, 252, 60, 155, 106, 71, 218, 120, 222, 139, 238, 33, 142, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 436, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15028413518358203771" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9614157556022189890" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9415153331594899196" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2960727068093917522" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13011491878955785892" + } + }, + { + "_tag": "ByteArray", + "bytearray": "206f577ec215e63cebcb47" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17655614655942293886" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06d25777" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2624946961341146920" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2910684ed78f85e421f6fc38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "360bab96c01c42cd53" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34a00482b8e0fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d6fcc2a4489a26e89a9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7579530966587779744" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e038fb6978d07ca5a29" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff22" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1e5af5260" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16141833373494477109" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bd08fa678936b4d7b9f9fbf1b856c595bf5571f421b82a958124b8caefcffd8669f1b29169d94f29f29529f1bb4921aed130a1ea44b206f577ec215e63cebcb47ffff1bf50557fc729ef97effbf4406d257771b246daf5a90fae7284c2910684ed78f85e421f6fc3849360bab96c01c42cd534734a00482b8e0fd4a5d6fcc2a4489a26e89a941601b692fe7418b89aaa04a6e038fb6978d07ca5a2942ff2245c1e5af52601be0034fee1aaf0135ffffff", + "cborBytes": [ + 216, 102, 159, 27, 208, 143, 166, 120, 147, 107, 77, 123, 159, 159, 191, 27, 133, 108, 89, 91, 245, 87, 31, 66, + 27, 130, 169, 88, 18, 75, 140, 174, 252, 255, 216, 102, 159, 27, 41, 22, 157, 148, 242, 159, 41, 82, 159, 27, 180, + 146, 26, 237, 19, 10, 30, 164, 75, 32, 111, 87, 126, 194, 21, 230, 60, 235, 203, 71, 255, 255, 27, 245, 5, 87, + 252, 114, 158, 249, 126, 255, 191, 68, 6, 210, 87, 119, 27, 36, 109, 175, 90, 144, 250, 231, 40, 76, 41, 16, 104, + 78, 215, 143, 133, 228, 33, 246, 252, 56, 73, 54, 11, 171, 150, 192, 28, 66, 205, 83, 71, 52, 160, 4, 130, 184, + 224, 253, 74, 93, 111, 204, 42, 68, 137, 162, 110, 137, 169, 65, 96, 27, 105, 47, 231, 65, 139, 137, 170, 160, 74, + 110, 3, 143, 182, 151, 141, 7, 202, 90, 41, 66, 255, 34, 69, 193, 229, 175, 82, 96, 27, 224, 3, 79, 238, 26, 175, + 1, 53, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 437, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10527262185652912992" + }, + "fields": [] + }, + "cborHex": "d8669f1b9218592e993e836080ff", + "cborBytes": [216, 102, 159, 27, 146, 24, 89, 46, 153, 62, 131, 96, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 438, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14083904781429079785" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6758014173522858140" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16464927651812002289" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18212303760045216799" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13927723512910188066" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e43f99b1" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1073610073525948" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7221210915575941364" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3048781337936956846" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f98639196040183d7d55" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5077542775831127366" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4615179082253929055" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5387673823226428879" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4225574532322896054" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7350753565059552899" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b32bbfc664bf1d09ff965bfa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8895660125514394307" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17776961015467191922" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79f9fd8669f1bc37414c76b817ee99f1b5dc94a15d7e2909cffffd8669f1be47f2c76e2c2c9f180ffd8669f1bfcbf19c6df01941f9f1bc14936be24de0e2244e43f99b1ffffffbf1b0003d071530f4ebc1b6436e5116f13c8f41b2a4f727945928dae4af98639196040183d7d551b46770e40ad43e5461b400c68ec4c8f0a5f1b4ac4dccc0f14fdcf1b3aa441a62b0b28b61b66031f6be4cf96834cb32bbfc664bf1d09ff965bfa1b7b73bbc0bfe46ac31bf6b473db70e3ae72ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 159, 216, 102, 159, 27, 195, 116, 20, 199, 107, + 129, 126, 233, 159, 27, 93, 201, 74, 21, 215, 226, 144, 156, 255, 255, 216, 102, 159, 27, 228, 127, 44, 118, 226, + 194, 201, 241, 128, 255, 216, 102, 159, 27, 252, 191, 25, 198, 223, 1, 148, 31, 159, 27, 193, 73, 54, 190, 36, + 222, 14, 34, 68, 228, 63, 153, 177, 255, 255, 255, 191, 27, 0, 3, 208, 113, 83, 15, 78, 188, 27, 100, 54, 229, 17, + 111, 19, 200, 244, 27, 42, 79, 114, 121, 69, 146, 141, 174, 74, 249, 134, 57, 25, 96, 64, 24, 61, 125, 85, 27, 70, + 119, 14, 64, 173, 67, 229, 70, 27, 64, 12, 104, 236, 76, 143, 10, 95, 27, 74, 196, 220, 204, 15, 20, 253, 207, 27, + 58, 164, 65, 166, 43, 11, 40, 182, 27, 102, 3, 31, 107, 228, 207, 150, 131, 76, 179, 43, 191, 198, 100, 191, 29, + 9, 255, 150, 91, 250, 27, 123, 115, 187, 192, 191, 228, 106, 195, 27, 246, 180, 115, 219, 112, 227, 174, 114, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 439, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17573608045984777061" + }, + "fields": [] + }, + "cborHex": "d8669f1bf3e1ff68aade836580ff", + "cborBytes": [216, 102, 159, 27, 243, 225, 255, 104, 170, 222, 131, 101, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 440, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15495731944840485625" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6197353045612960025" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12780408697336824090" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1309255430801022025" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ca85032135dcffec88fa76" + }, + { + "_tag": "ByteArray", + "bytearray": "1a97fa7ae41fbf8ad6b39587" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2341487572757663969" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9a32ce" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18433179705812107858" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e66a08d2c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0722" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f93a" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "af59" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4309385568313991061" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bd70be61a9ae3daf99fd8669f1b56016bc28f7219199f1bb15d21ff2913011ad8669f1b122b68e0a9255c499f4bca85032135dcffec88fa764c1a97fa7ae41fbf8ad6b39587ffff1b207ea28aac3650e1ffff439a32cea0bf1bffcfcf477ddec252458e66a08d2c42072242f93affbf42af591b3bce03579f8cdf95ffffff", + "cborBytes": [ + 216, 102, 159, 27, 215, 11, 230, 26, 154, 227, 218, 249, 159, 216, 102, 159, 27, 86, 1, 107, 194, 143, 114, 25, + 25, 159, 27, 177, 93, 33, 255, 41, 19, 1, 26, 216, 102, 159, 27, 18, 43, 104, 224, 169, 37, 92, 73, 159, 75, 202, + 133, 3, 33, 53, 220, 255, 236, 136, 250, 118, 76, 26, 151, 250, 122, 228, 31, 191, 138, 214, 179, 149, 135, 255, + 255, 27, 32, 126, 162, 138, 172, 54, 80, 225, 255, 255, 67, 154, 50, 206, 160, 191, 27, 255, 207, 207, 71, 125, + 222, 194, 82, 69, 142, 102, 160, 141, 44, 66, 7, 34, 66, 249, 58, 255, 191, 66, 175, 89, 27, 59, 206, 3, 87, 159, + 140, 223, 149, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 441, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1277677439763052530" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "938706221271479694" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f9f1b11bb38dcae9b77f2ff1b0d06f455b355f58effff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 159, 27, 17, 187, 56, 220, 174, 155, 119, 242, + 255, 27, 13, 6, 244, 85, 179, 85, 245, 142, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 442, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [] + }, + "cborHex": "d87e80", + "cborBytes": [216, 126, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 443, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15411977637789599494" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14222799456792218843" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "95a891b19a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15975549655479742975" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10167931479280405976" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87e9f9fd8669f1bd5e2580162b687069f1bc56188c015b80cdbffff4595a891b19ad8669f1bddb48dc5027bf1ff9f1b8d1bbfcef3054dd8ffffffff", + "cborBytes": [ + 216, 126, 159, 159, 216, 102, 159, 27, 213, 226, 88, 1, 98, 182, 135, 6, 159, 27, 197, 97, 136, 192, 21, 184, 12, + 219, 255, 255, 69, 149, 168, 145, 177, 154, 216, 102, 159, 27, 221, 180, 141, 197, 2, 123, 241, 255, 159, 27, 141, + 27, 191, 206, 243, 5, 77, 216, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 444, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "399005148511354003" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ca6fc6205fed0505b8" + }, + { + "_tag": "ByteArray", + "bytearray": "b23aaed9" + } + ] + }, + "cborHex": "d8669f1b05898d118c923c939f49ca6fc6205fed0505b844b23aaed9ffff", + "cborBytes": [ + 216, 102, 159, 27, 5, 137, 141, 17, 140, 146, 60, 147, 159, 73, 202, 111, 198, 32, 95, 237, 5, 5, 184, 68, 178, + 58, 174, 217, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 445, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13866370417238998421" + }, + "fields": [] + }, + "cborHex": "d8669f1bc06f3e6d6383fd9580ff", + "cborBytes": [216, 102, 159, 27, 192, 111, 62, 109, 99, 131, 253, 149, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 446, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "56c2f8ea4912e904fc7da795" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3798607617881577392" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7ffa5ec032b9b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1384399047708378619" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7a7898024018" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13104768479848640147" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13814199104411071904" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74a694f7b4e557" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14045398951409882033" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8799f4c56c2f8ea4912e904fc7da7959fd8669f1b34b75d80a8ec97b09f477ffa5ec032b9b91b13365f995a0c05fbffff467a7898024018bf1bb5dd7d80191d2e931bbfb5e4e50af0f5a04774a694f7b4e5571bc2eb47ee3b6e13b1ffffff", + "cborBytes": [ + 216, 121, 159, 76, 86, 194, 248, 234, 73, 18, 233, 4, 252, 125, 167, 149, 159, 216, 102, 159, 27, 52, 183, 93, + 128, 168, 236, 151, 176, 159, 71, 127, 250, 94, 192, 50, 185, 185, 27, 19, 54, 95, 153, 90, 12, 5, 251, 255, 255, + 70, 122, 120, 152, 2, 64, 24, 191, 27, 181, 221, 125, 128, 25, 29, 46, 147, 27, 191, 181, 228, 229, 10, 240, 245, + 160, 71, 116, 166, 148, 247, 180, 229, 87, 27, 194, 235, 71, 238, 59, 110, 19, 177, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 447, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4688397571273332292" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d43b080c8e6346709e84801f" + }, + { + "_tag": "ByteArray", + "bytearray": "fd0200" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8221" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e888e12306211c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6191999937320289715" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0643" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b411088c0398d16449f4cd43b080c8e6346709e84801f43fd0200bf429d2d42822147e888e12306211c1b55ee6722e93785b342fe05420643ffffff", + "cborBytes": [ + 216, 102, 159, 27, 65, 16, 136, 192, 57, 141, 22, 68, 159, 76, 212, 59, 8, 12, 142, 99, 70, 112, 158, 132, 128, + 31, 67, 253, 2, 0, 191, 66, 157, 45, 66, 130, 33, 71, 232, 136, 225, 35, 6, 33, 28, 27, 85, 238, 103, 34, 233, 55, + 133, 179, 66, 254, 5, 66, 6, 67, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 448, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17722542357453592800" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6109977315387779373" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4217033921264673964" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12287723012816427807" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15258392495211716341" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12350859704717318156" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d0046e51f48e6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12422414804387159520" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16621405209338449613" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16022695035005230754" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12375224383820654456" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4945161626329328925" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b8acbf408f" + }, + { + "_tag": "ByteArray", + "bytearray": "40d150087dce6d6ff1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3d34de42ab" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12064194655717379924" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3254365748602480335" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17306294070161993302" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a890b43" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c05c2422f39d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a10b53f500abc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1a9e2881c1e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf5f31e6044d5d8e09fbf1b54caffff0d62292d1b3a85ea0232c0e4ac1baa86c2fa1d50db1f1bd3c0b321c8949ef51bab671176ba5c980c473d0046e51f48e61bac654872a40cdde01be6ab17f952720ecd1bde5c0c3e11e6dea21babbda102a561e778ff1b44a0be4c6e40ad1d45b8acbf408f4940d150087dce6d6ff19f453d34de42abbf1ba76ca11edb334f541b2d29d467eea626cfffbf1bf02c4ec39e746e56443a890b43470c05c2422f39d3479a10b53f500abc46e1a9e2881c1e417dffffffff", + "cborBytes": [ + 216, 102, 159, 27, 245, 243, 30, 96, 68, 213, 216, 224, 159, 191, 27, 84, 202, 255, 255, 13, 98, 41, 45, 27, 58, + 133, 234, 2, 50, 192, 228, 172, 27, 170, 134, 194, 250, 29, 80, 219, 31, 27, 211, 192, 179, 33, 200, 148, 158, + 245, 27, 171, 103, 17, 118, 186, 92, 152, 12, 71, 61, 0, 70, 229, 31, 72, 230, 27, 172, 101, 72, 114, 164, 12, + 221, 224, 27, 230, 171, 23, 249, 82, 114, 14, 205, 27, 222, 92, 12, 62, 17, 230, 222, 162, 27, 171, 189, 161, 2, + 165, 97, 231, 120, 255, 27, 68, 160, 190, 76, 110, 64, 173, 29, 69, 184, 172, 191, 64, 143, 73, 64, 209, 80, 8, + 125, 206, 109, 111, 241, 159, 69, 61, 52, 222, 66, 171, 191, 27, 167, 108, 161, 30, 219, 51, 79, 84, 27, 45, 41, + 212, 103, 238, 166, 38, 207, 255, 191, 27, 240, 44, 78, 195, 158, 116, 110, 86, 68, 58, 137, 11, 67, 71, 12, 5, + 194, 66, 47, 57, 211, 71, 154, 16, 181, 63, 80, 10, 188, 70, 225, 169, 226, 136, 28, 30, 65, 125, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 449, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4360487669061577560" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2032456346181891096" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e335005093f718fcdd971a48" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10298252499543273095" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2310656079634665890" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11148467155902887952" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f654ac6cd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17687011938030670146" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10581758886277991216" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1945694037545704683" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12252252089790425008" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "905819054909413273" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "359116791741467228" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9689" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7945911562673932867" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4924752926023393399" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16208193336956364466" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "434b7863dceb5063e3" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "251714a59b36be26612abf5c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + ] + }, + "cborHex": "d8669f1b3c83906ea1e2eb589f9fbf1b1c34bc4747a8f4184ce335005093f718fcdd971a481b8eeabe15fa8e2e871b2011197648b891a21b9ab74fcfa9b37810458f654ac6cd1bf574e3a5d86951421b92d9f5a47b6ecb30ff1b1b007e6b1d81dcebd8669f1baa08be5c467ee7b09f1b0c921da196a7d799ffffbf1b04fbd6d1c4a0ca5c4296891b6e458c778dd94a431b44583cb19a30a0771be0ef11f71c2326b249434b7863dceb5063e3ff4c251714a59b36be26612abf5cff1bffffffffffffffeeffff", + "cborBytes": [ + 216, 102, 159, 27, 60, 131, 144, 110, 161, 226, 235, 88, 159, 159, 191, 27, 28, 52, 188, 71, 71, 168, 244, 24, 76, + 227, 53, 0, 80, 147, 247, 24, 252, 221, 151, 26, 72, 27, 142, 234, 190, 21, 250, 142, 46, 135, 27, 32, 17, 25, + 118, 72, 184, 145, 162, 27, 154, 183, 79, 207, 169, 179, 120, 16, 69, 143, 101, 74, 198, 205, 27, 245, 116, 227, + 165, 216, 105, 81, 66, 27, 146, 217, 245, 164, 123, 110, 203, 48, 255, 27, 27, 0, 126, 107, 29, 129, 220, 235, + 216, 102, 159, 27, 170, 8, 190, 92, 70, 126, 231, 176, 159, 27, 12, 146, 29, 161, 150, 167, 215, 153, 255, 255, + 191, 27, 4, 251, 214, 209, 196, 160, 202, 92, 66, 150, 137, 27, 110, 69, 140, 119, 141, 217, 74, 67, 27, 68, 88, + 60, 177, 154, 48, 160, 119, 27, 224, 239, 17, 247, 28, 35, 38, 178, 73, 67, 75, 120, 99, 220, 235, 80, 99, 227, + 255, 76, 37, 23, 20, 165, 155, 54, 190, 38, 97, 42, 191, 92, 255, 27, 255, 255, 255, 255, 255, 255, 255, 238, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 450, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11292790735855250934" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7623133746508696203" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3dc7" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11467840747572821754" + } + }, + { + "_tag": "ByteArray", + "bytearray": "939e2cae7277e6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1a9aa7ae" + } + ] + }, + "cborHex": "d8669f1b9cb80d57ad796df69f9f9f1b69cacfc0dbf18a8b423dc7ff1b9f25f46693d3fefa47939e2cae7277e6ff441a9aa7aeffff", + "cborBytes": [ + 216, 102, 159, 27, 156, 184, 13, 87, 173, 121, 109, 246, 159, 159, 159, 27, 105, 202, 207, 192, 219, 241, 138, + 139, 66, 61, 199, 255, 27, 159, 37, 244, 102, 147, 211, 254, 250, 71, 147, 158, 44, 174, 114, 119, 230, 255, 68, + 26, 154, 167, 174, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 451, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13175569370141019345" + }, + "fields": [] + }, + "cborHex": "d8669f1bb6d90688f4c5ccd180ff", + "cborBytes": [216, 102, 159, 27, 182, 217, 6, 136, 244, 197, 204, 209, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 452, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9140704572307963645" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9047531376807009102" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1441321069343330147" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8050176847878416726" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2565294507026265950" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12374067536120881916" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7210640344651163371" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48722afa35d700bae0996d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10855097899093766766" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "205059377802979067" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7eda4e6105347efd9f1b7d8f49d9f0c85b4ebf1b140099e0497ecf631b6fb7f93104dde9561b2399c1c33b8fb75e1babb984dd0d2da2fc1b641157309a0866eb4b48722afa35d700bae0996d1b96a50e06c592b26e1b02d8846aebcf26fbffffff", + "cborBytes": [ + 216, 102, 159, 27, 126, 218, 78, 97, 5, 52, 126, 253, 159, 27, 125, 143, 73, 217, 240, 200, 91, 78, 191, 27, 20, + 0, 153, 224, 73, 126, 207, 99, 27, 111, 183, 249, 49, 4, 221, 233, 86, 27, 35, 153, 193, 195, 59, 143, 183, 94, + 27, 171, 185, 132, 221, 13, 45, 162, 252, 27, 100, 17, 87, 48, 154, 8, 102, 235, 75, 72, 114, 42, 250, 53, 215, 0, + 186, 224, 153, 109, 27, 150, 165, 14, 6, 197, 146, 178, 110, 27, 2, 216, 132, 106, 235, 207, 38, 251, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 453, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8244954293270319400" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "51d36f49b9c93848b98e" + } + ] + }, + "cborHex": "d8669f1b726bf63effb591289f4a51d36f49b9c93848b98effff", + "cborBytes": [ + 216, 102, 159, 27, 114, 107, 246, 62, 255, 181, 145, 40, 159, 74, 81, 211, 111, 73, 185, 201, 56, 72, 185, 142, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 454, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "03" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14660595972102573219" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5a4fee466c9f7b" + }, + { + "_tag": "ByteArray", + "bytearray": "b27703" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "995c2c55465e9cf3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "299b740a9814" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c566d5b8de8807f6e180f7bb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17646498089717289969" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d208f12fa4f5934e2d19" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18bf" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3687315066301917835" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12948545428469428698" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7140033082922867422" + } + }, + { + "_tag": "ByteArray", + "bytearray": "53793f77e4161ac811a7c1e2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16187118248876698132" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4887713193916286723" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ab6436e2b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b67d04d6d9fd048d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2bd" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7221711392843012704" + }, + "fields": [] + } + ] + }, + "cborHex": "d905019f4103d8669f1bcb74e65c88b24ca39f9f475a4fee466c9f7b43b27703ffbf48995c2c55465e9cf346299b740a98144cc566d5b8de8807f6e180f7bb1bf4e4f484773553f14ad208f12fa4f5934e2d194218bfffffffd8669f1b332bf9843ddf2a8b9f9f1bb3b279767dedb1da1b63167e4268279ade4c53793f77e4161ac811a7c1e21be0a43248c989ea14ffbf1b43d4a540ef5ec703450ab6436e2b48b67d04d6d9fd048d42d2bdffffffd8669f1b6438ac3fe0cc9a6080ffff", + "cborBytes": [ + 217, 5, 1, 159, 65, 3, 216, 102, 159, 27, 203, 116, 230, 92, 136, 178, 76, 163, 159, 159, 71, 90, 79, 238, 70, + 108, 159, 123, 67, 178, 119, 3, 255, 191, 72, 153, 92, 44, 85, 70, 94, 156, 243, 70, 41, 155, 116, 10, 152, 20, + 76, 197, 102, 213, 184, 222, 136, 7, 246, 225, 128, 247, 187, 27, 244, 228, 244, 132, 119, 53, 83, 241, 74, 210, + 8, 241, 47, 164, 245, 147, 78, 45, 25, 66, 24, 191, 255, 255, 255, 216, 102, 159, 27, 51, 43, 249, 132, 61, 223, + 42, 139, 159, 159, 27, 179, 178, 121, 118, 125, 237, 177, 218, 27, 99, 22, 126, 66, 104, 39, 154, 222, 76, 83, + 121, 63, 119, 228, 22, 26, 200, 17, 167, 193, 226, 27, 224, 164, 50, 72, 201, 137, 234, 20, 255, 191, 27, 67, 212, + 165, 64, 239, 94, 199, 3, 69, 10, 182, 67, 110, 43, 72, 182, 125, 4, 214, 217, 253, 4, 141, 66, 210, 189, 255, + 255, 255, 216, 102, 159, 27, 100, 56, 172, 63, 224, 204, 154, 96, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 455, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11639195722393033250" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "97" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7127852665107055224" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14518337637181391994" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8796127090105837668" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6713496482112907665" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aca302e63d8401ccf0ac" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13684881434056307144" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13589649016523339980" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d854c6470e206d9ce0bca" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14302126282665246797" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16427587983687683484" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11715742321856126253" + } + } + ] + } + ] + }, + "cborHex": "d8669f1ba186bad7a87b9a229f4197d8669f1b62eb383be30702789fd8669f1bc97b7f28d961847a9f1b7a121efc0cf2e864ffffd8669f1b5d2b217b192ca9919f4aaca302e63d8401ccf0ac1bbdea77289e43b1c81bbc9821c78c1c38cc4b6d854c6470e206d9ce0bcaffffffff1bc67b5c14030a404dd8669f1be3fa843bec2e0d9c9f1ba296ad91ae3e9d2dffffffff", + "cborBytes": [ + 216, 102, 159, 27, 161, 134, 186, 215, 168, 123, 154, 34, 159, 65, 151, 216, 102, 159, 27, 98, 235, 56, 59, 227, + 7, 2, 120, 159, 216, 102, 159, 27, 201, 123, 127, 40, 217, 97, 132, 122, 159, 27, 122, 18, 30, 252, 12, 242, 232, + 100, 255, 255, 216, 102, 159, 27, 93, 43, 33, 123, 25, 44, 169, 145, 159, 74, 172, 163, 2, 230, 61, 132, 1, 204, + 240, 172, 27, 189, 234, 119, 40, 158, 67, 177, 200, 27, 188, 152, 33, 199, 140, 28, 56, 204, 75, 109, 133, 76, + 100, 112, 226, 6, 217, 206, 11, 202, 255, 255, 255, 255, 27, 198, 123, 92, 20, 3, 10, 64, 77, 216, 102, 159, 27, + 227, 250, 132, 59, 236, 46, 13, 156, 159, 27, 162, 150, 173, 145, 174, 62, 157, 45, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 456, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6534745906296832973" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17979852658916884809" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "681958390726524699" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16994847769704843001" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5610431541497713611" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e92f2b2183593887e820ba" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7266227172103138062" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7378027946664779569" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e5a2946da042a063f588b59" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17038485686759731590" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df217465bc26c833031ad93f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a20ddffe3e3343c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5904162888255646808" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7d0ed233c142" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15633960659985024804" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14443629757677571150" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cdb0d20de2244b3f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc5cd30198bec5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12038124456582284276" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5ab014c77a42c3cd9f1bf98544bb609a81491b0976cd8b0ed9ff1bd8669f1bebd9d4010518c6f99f1b4ddc41c2fb9e53cb4be92f2b2183593887e820babf1b64d6d31d6a7fab0e1b66640553b7dbdf314c9e5a2946da042a063f588b591bec74dc7555e431864cdf217465bc26c833031ad93f486a20ddffe3e3343cff9f1b51efccdd8285ac58ff80ffff467d0ed233c142d8669f1bd8f6fc6352d6c7249fbf1bc87214bd2da20c4e48cdb0d20de2244b3f47cc5cd30198bec51ba71002699c8783f4ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 90, 176, 20, 199, 122, 66, 195, 205, 159, 27, 249, 133, 68, 187, 96, 154, 129, 73, 27, 9, 118, + 205, 139, 14, 217, 255, 27, 216, 102, 159, 27, 235, 217, 212, 1, 5, 24, 198, 249, 159, 27, 77, 220, 65, 194, 251, + 158, 83, 203, 75, 233, 47, 43, 33, 131, 89, 56, 135, 232, 32, 186, 191, 27, 100, 214, 211, 29, 106, 127, 171, 14, + 27, 102, 100, 5, 83, 183, 219, 223, 49, 76, 158, 90, 41, 70, 218, 4, 42, 6, 63, 88, 139, 89, 27, 236, 116, 220, + 117, 85, 228, 49, 134, 76, 223, 33, 116, 101, 188, 38, 200, 51, 3, 26, 217, 63, 72, 106, 32, 221, 255, 227, 227, + 52, 60, 255, 159, 27, 81, 239, 204, 221, 130, 133, 172, 88, 255, 128, 255, 255, 70, 125, 14, 210, 51, 193, 66, + 216, 102, 159, 27, 216, 246, 252, 99, 82, 214, 199, 36, 159, 191, 27, 200, 114, 20, 189, 45, 162, 12, 78, 72, 205, + 176, 210, 13, 226, 36, 75, 63, 71, 204, 92, 211, 1, 152, 190, 197, 27, 167, 16, 2, 105, 156, 135, 131, 244, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 457, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7973001758220326250" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b46e3c3b32c0b36c2858f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14074919670920381432" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b8ca3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1926e57a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8215158979406579936" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f69d773e14d357" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a328f1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1959b73" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4a4de9c6d0cdd74ea8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12836192661072087502" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3da224ee2cb47ccbdd06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e19e05f6a6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f9b00f927f750" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1138039936152467156" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccf3c2161e93d6f40ca512d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "817188907061370168" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5827" + }, + { + "_tag": "ByteArray", + "bytearray": "03dee597b85863" + }, + { + "_tag": "ByteArray", + "bytearray": "7888cdad0d60cb3049ec4e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10996076595183338396" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5069448843509238345" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905059f9fbf1b6ea5cadb3849956a4b6b46e3c3b32c0b36c2858f1bc35428de5b5e03f8432b8ca3441926e57a1b72021b90e4e3c8e0ff47f69d773e14d357bf43a328f144c1959b73ff494a4de9c6d0cdd74ea81bb223513757ad89ceff9fbf4a3da224ee2cb47ccbdd0645e19e05f6a6475f9b00f927f7501b0fcb214ad69376d44cccf3c2161e93d6f40ca512d01b0b573cfb37c85d38ff9f4258274703dee597b858634b7888cdad0d60cb3049ec4e1b9899e96752e3c39c1b465a4cdd34620a49ffffff", + "cborBytes": [ + 217, 5, 5, 159, 159, 191, 27, 110, 165, 202, 219, 56, 73, 149, 106, 75, 107, 70, 227, 195, 179, 44, 11, 54, 194, + 133, 143, 27, 195, 84, 40, 222, 91, 94, 3, 248, 67, 43, 140, 163, 68, 25, 38, 229, 122, 27, 114, 2, 27, 144, 228, + 227, 200, 224, 255, 71, 246, 157, 119, 62, 20, 211, 87, 191, 67, 163, 40, 241, 68, 193, 149, 155, 115, 255, 73, + 74, 77, 233, 198, 208, 205, 215, 78, 168, 27, 178, 35, 81, 55, 87, 173, 137, 206, 255, 159, 191, 74, 61, 162, 36, + 238, 44, 180, 124, 203, 221, 6, 69, 225, 158, 5, 246, 166, 71, 95, 155, 0, 249, 39, 247, 80, 27, 15, 203, 33, 74, + 214, 147, 118, 212, 76, 204, 243, 194, 22, 30, 147, 214, 244, 12, 165, 18, 208, 27, 11, 87, 60, 251, 55, 200, 93, + 56, 255, 159, 66, 88, 39, 71, 3, 222, 229, 151, 184, 88, 99, 75, 120, 136, 205, 173, 13, 96, 203, 48, 73, 236, 78, + 27, 152, 153, 233, 103, 82, 227, 195, 156, 27, 70, 90, 76, 221, 52, 98, 10, 73, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 458, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13591186100585536010" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d5c08924c17c3b95dff0c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6924611436402535213" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c2c4f06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1028046535486252725" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5690490262703076583" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "071392c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6097427602768874008" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30cea72332cdf7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "914bb8182a15417783192dbe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3169a4df07a9d9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a85e6362f8904cf4ea88" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e59ad53377343a37" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af8a90b3f2c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0bf563706650f1" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13374304553617327963" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16578717110611631092" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3532ed279a66e6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4067061400869353272" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e1b611392c703fda" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13305919596980038558" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13755213371316826495" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2979376394342203449" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6395094515797935221" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4158193268304124750" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12208581929591394424" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6175911563169372306" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "599430315299784655" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15033154583431894869" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8085ed14ac3cb8477820efb7" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10192573138449651906" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "494372763899681801" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6914842020531824240" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17b5873ea169837d3236" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29fd8669f1bbc9d97bfd1a09a0a9fbf4b5d5c08924c17c3b95dff0c1b60192969ca616b2d447c2c4f061b0e445ae0903aa6b5ff1b4ef8aebe923c74e7ffffbf44071392c91b549e6a1962b34a184730cea72332cdf741234c914bb8182a15417783192dbe473169a4df07a9d94aa85e6362f8904cf4ea8848e59ad53377343a3746af8a90b3f2c2470bf563706650f1ffd8669f1bb99b1321a440075b9f9f1be6136f5fd1b25bf4473532ed279a66e61b38711acbbe85373848e1b611392c703fdaff9f1bb8a81f602be76b9e1bbee455aed70af17fffbf1b2958df0b94f380391b58bff094572f44751b39b4debf18b01b4e1ba96d9894c48c50781b55b53ed866f018921b08519ab2230b47cf1bd0a07e71cefe57554c8085ed14ac3cb8477820efb7ff1b8d734b44507ad8c21b06dc5d68d2de5c09ffff1b5ff6742e67be66704a17b5873ea169837d3236ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 216, 102, 159, 27, 188, 157, 151, 191, 209, 160, + 154, 10, 159, 191, 75, 93, 92, 8, 146, 76, 23, 195, 185, 93, 255, 12, 27, 96, 25, 41, 105, 202, 97, 107, 45, 68, + 124, 44, 79, 6, 27, 14, 68, 90, 224, 144, 58, 166, 181, 255, 27, 78, 248, 174, 190, 146, 60, 116, 231, 255, 255, + 191, 68, 7, 19, 146, 201, 27, 84, 158, 106, 25, 98, 179, 74, 24, 71, 48, 206, 167, 35, 50, 205, 247, 65, 35, 76, + 145, 75, 184, 24, 42, 21, 65, 119, 131, 25, 45, 190, 71, 49, 105, 164, 223, 7, 169, 217, 74, 168, 94, 99, 98, 248, + 144, 76, 244, 234, 136, 72, 229, 154, 213, 51, 119, 52, 58, 55, 70, 175, 138, 144, 179, 242, 194, 71, 11, 245, 99, + 112, 102, 80, 241, 255, 216, 102, 159, 27, 185, 155, 19, 33, 164, 64, 7, 91, 159, 159, 27, 230, 19, 111, 95, 209, + 178, 91, 244, 71, 53, 50, 237, 39, 154, 102, 230, 27, 56, 113, 26, 203, 190, 133, 55, 56, 72, 225, 182, 17, 57, + 44, 112, 63, 218, 255, 159, 27, 184, 168, 31, 96, 43, 231, 107, 158, 27, 190, 228, 85, 174, 215, 10, 241, 127, + 255, 191, 27, 41, 88, 223, 11, 148, 243, 128, 57, 27, 88, 191, 240, 148, 87, 47, 68, 117, 27, 57, 180, 222, 191, + 24, 176, 27, 78, 27, 169, 109, 152, 148, 196, 140, 80, 120, 27, 85, 181, 62, 216, 102, 240, 24, 146, 27, 8, 81, + 154, 178, 35, 11, 71, 207, 27, 208, 160, 126, 113, 206, 254, 87, 85, 76, 128, 133, 237, 20, 172, 60, 184, 71, 120, + 32, 239, 183, 255, 27, 141, 115, 75, 68, 80, 122, 216, 194, 27, 6, 220, 93, 104, 210, 222, 92, 9, 255, 255, 27, + 95, 246, 116, 46, 103, 190, 102, 112, 74, 23, 181, 135, 62, 161, 105, 131, 125, 50, 54, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 459, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16803639028052033764" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "649638725709412210" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4463276034530603444" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16103976278639938173" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15865866661451997404" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d43d0d" + }, + { + "_tag": "ByteArray", + "bytearray": "9a9409e69b900cfcec83ca58" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c95b61b9a90caa9f167b3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15807604267827992920" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1047927071518794976" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b901e369836c43345842a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2513438007826711226" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a57069dcdbf5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4572168498109220582" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14088320111134097654" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9093026773673758890" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f72a3364eb6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9243835584685733208" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0aa14cf7b6c2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16465829457715101380" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11940978457189189352" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1be93284aaa0ee80e49f1b0903fafaa63f37729f1b3df0bde7ecb5f1b41bdf7cd11a57a68a7dffd8669f1bdc2ee1aae98f20dc9f9f43d43d0d4c9a9409e69b900cfcec83ca58ffffffbf4bc95b61b9a90caa9f167b3f1bdb5fe4544dd61958ffbf1b0e8afc1e9064a4e04bb901e369836c43345842a41b22e1868d257a02ba46a57069dcdbf51b3f739b064f0806e61bc383c47f7a23c0f61b7e30ebac79f0d0aa463f72a3364eb61b8048b37d034ef558460aa14cf7b6c21be48260a6ef457ec41ba5b6e0a40b5a86e8ffffff", + "cborBytes": [ + 216, 102, 159, 27, 233, 50, 132, 170, 160, 238, 128, 228, 159, 27, 9, 3, 250, 250, 166, 63, 55, 114, 159, 27, 61, + 240, 189, 231, 236, 181, 241, 180, 27, 223, 124, 209, 26, 87, 166, 138, 125, 255, 216, 102, 159, 27, 220, 46, 225, + 170, 233, 143, 32, 220, 159, 159, 67, 212, 61, 13, 76, 154, 148, 9, 230, 155, 144, 12, 252, 236, 131, 202, 88, + 255, 255, 255, 191, 75, 201, 91, 97, 185, 169, 12, 170, 159, 22, 123, 63, 27, 219, 95, 228, 84, 77, 214, 25, 88, + 255, 191, 27, 14, 138, 252, 30, 144, 100, 164, 224, 75, 185, 1, 227, 105, 131, 108, 67, 52, 88, 66, 164, 27, 34, + 225, 134, 141, 37, 122, 2, 186, 70, 165, 112, 105, 220, 219, 245, 27, 63, 115, 155, 6, 79, 8, 6, 230, 27, 195, + 131, 196, 127, 122, 35, 192, 246, 27, 126, 48, 235, 172, 121, 240, 208, 170, 70, 63, 114, 163, 54, 78, 182, 27, + 128, 72, 179, 125, 3, 78, 245, 88, 70, 10, 161, 76, 247, 182, 194, 27, 228, 130, 96, 166, 239, 69, 126, 196, 27, + 165, 182, 224, 164, 11, 90, 134, 232, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 460, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14771252751410737887" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17484079280134030190" + } + } + ] + }, + "cborHex": "d8669f1bccfe081daf5932df9f1bfffffffffffffffa1bf2a3ed787d28036effff", + "cborBytes": [ + 216, 102, 159, 27, 204, 254, 8, 29, 175, 89, 50, 223, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 27, 242, + 163, 237, 120, 125, 40, 3, 110, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 461, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3924363489071714128" + }, + "fields": [] + }, + "cborHex": "d8669f1b367623cd17a1cf5080ff", + "cborBytes": [216, 102, 159, 27, 54, 118, 35, 205, 23, 161, 207, 80, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 462, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bdadfac8fa3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12193105869275337027" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15351923595356058889" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18172272906231510262" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf2ae0149682e2455fd82d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "724fc1a285" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "236778464434826180" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "179604" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1449063627418223575" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10313462530882715756" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4970461374436575202" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6496610647988795612" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7588464646273213456" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf04" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9fbf462bdadfac8fa31ba9369d2faee31143ffbf1bd50cfd2c0822b5091bfc30e1ed696274f6ffbf4bcf2ae0149682e2455fd82d45724fc1a285ff9fbf14081b034934c24719abc4431796041b141c1bb11133c3d71b8f20c7875d90c06c1b44faa049111787e21b5a2898f6bd6478dcffbf1b694fa463efb9a41042cf04ffff4102ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 191, 70, 43, 218, 223, 172, 143, 163, 27, 169, 54, + 157, 47, 174, 227, 17, 67, 255, 191, 27, 213, 12, 253, 44, 8, 34, 181, 9, 27, 252, 48, 225, 237, 105, 98, 116, + 246, 255, 191, 75, 207, 42, 224, 20, 150, 130, 226, 69, 95, 216, 45, 69, 114, 79, 193, 162, 133, 255, 159, 191, + 20, 8, 27, 3, 73, 52, 194, 71, 25, 171, 196, 67, 23, 150, 4, 27, 20, 28, 27, 177, 17, 51, 195, 215, 27, 143, 32, + 199, 135, 93, 144, 192, 108, 27, 68, 250, 160, 73, 17, 23, 135, 226, 27, 90, 40, 152, 246, 189, 100, 120, 220, + 255, 191, 27, 105, 79, 164, 99, 239, 185, 164, 16, 66, 207, 4, 255, 255, 65, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 463, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11791851688287062095" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e273bd6e06a318808044" + }, + { + "_tag": "ByteArray", + "bytearray": "6522e905dcf1f510" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2610675586838150597" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a088356d7dc3b3298dc57" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da0d44" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a530da7be5576a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a40ec3057660" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9038035039028294918" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "20a7b0318682" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9741228041142646283" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11714581171129183177" + } + }, + { + "_tag": "ByteArray", + "bytearray": "38b5b5b86081b0dae77b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12823405639758935787" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1299" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "522dcdd073370a5265cf1e74" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a81" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a98dc5b191e471c" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3400043036511721793" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10189272654556209856" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14307565201583969424" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fddef51f6974b234" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9592374177530411994" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15500141009319408529" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14019449876846082867" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16849765775614654533" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15006519910562243057" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d09bf6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4824175142856668107" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d39392b3" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14789650447287985450" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b23c4c4e94d43c91c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f4cc8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6062200f885879" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c400196729c9b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a519f55cf5c50b2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f15ccf872007cb03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9cdba7dca180ff8a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11796451823217120004" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3db3e2c162f83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15982738771882320117" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f9fd8669f1ba3a512a27470c84f9f4ae273bd6e06a318808044486522e905dcf1f5101b243afb9d4145bdc5ffffff9fbf4b0a088356d7dc3b3298dc5743da0d4447a530da7be5576a46a40ec3057660ffd8669f1b7d6d8cfb80d0b5069f4620a7b03186821b872fcb4acc61b60b1ba2928d8235a26bc94a38b5b5b86081b0dae77b1bb1f5e37cf09276ebffffbf4212994c522dcdd073370a5265cf1e74422a81489a98dc5b191e471cffffd8669f1b2f2f6120a45259419f1b8d67917e866ca2c01bc68eaebf0127149048fddef51f6974b234bf1b851ef57dec547bda1bd71b901fecf2b3911bc28f17627fcdfb331be9d664b2f40bb845ffffff9f9f1bd041de59c7e3a1f143d09bf61b42f2e9bb9c3db3cb44d39392b3ff1bcd3f64b90ecc252abf493b23c4c4e94d43c91c435f4cc8476062200f885879475c400196729c9b48a519f55cf5c50b2d48f15ccf872007cb0349c9cdba7dca180ff8a71ba3b56a6ed4dd930447e3db3e2c162f831bddce183b9be8a0f5ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 159, 216, 102, 159, 27, 163, 165, 18, 162, 116, + 112, 200, 79, 159, 74, 226, 115, 189, 110, 6, 163, 24, 128, 128, 68, 72, 101, 34, 233, 5, 220, 241, 245, 16, 27, + 36, 58, 251, 157, 65, 69, 189, 197, 255, 255, 255, 159, 191, 75, 10, 8, 131, 86, 215, 220, 59, 50, 152, 220, 87, + 67, 218, 13, 68, 71, 165, 48, 218, 123, 229, 87, 106, 70, 164, 14, 195, 5, 118, 96, 255, 216, 102, 159, 27, 125, + 109, 140, 251, 128, 208, 181, 6, 159, 70, 32, 167, 176, 49, 134, 130, 27, 135, 47, 203, 74, 204, 97, 182, 11, 27, + 162, 146, 141, 130, 53, 162, 107, 201, 74, 56, 181, 181, 184, 96, 129, 176, 218, 231, 123, 27, 177, 245, 227, 124, + 240, 146, 118, 235, 255, 255, 191, 66, 18, 153, 76, 82, 45, 205, 208, 115, 55, 10, 82, 101, 207, 30, 116, 66, 42, + 129, 72, 154, 152, 220, 91, 25, 30, 71, 28, 255, 255, 216, 102, 159, 27, 47, 47, 97, 32, 164, 82, 89, 65, 159, 27, + 141, 103, 145, 126, 134, 108, 162, 192, 27, 198, 142, 174, 191, 1, 39, 20, 144, 72, 253, 222, 245, 31, 105, 116, + 178, 52, 191, 27, 133, 30, 245, 125, 236, 84, 123, 218, 27, 215, 27, 144, 31, 236, 242, 179, 145, 27, 194, 143, + 23, 98, 127, 205, 251, 51, 27, 233, 214, 100, 178, 244, 11, 184, 69, 255, 255, 255, 159, 159, 27, 208, 65, 222, + 89, 199, 227, 161, 241, 67, 208, 155, 246, 27, 66, 242, 233, 187, 156, 61, 179, 203, 68, 211, 147, 146, 179, 255, + 27, 205, 63, 100, 185, 14, 204, 37, 42, 191, 73, 59, 35, 196, 196, 233, 77, 67, 201, 28, 67, 95, 76, 200, 71, 96, + 98, 32, 15, 136, 88, 121, 71, 92, 64, 1, 150, 114, 156, 155, 72, 165, 25, 245, 92, 245, 197, 11, 45, 72, 241, 92, + 207, 135, 32, 7, 203, 3, 73, 201, 205, 186, 125, 202, 24, 15, 248, 167, 27, 163, 181, 106, 110, 212, 221, 147, 4, + 71, 227, 219, 62, 44, 22, 47, 131, 27, 221, 206, 24, 59, 155, 232, 160, 245, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 464, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16919806852469354822" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a4399c92f9d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15388391198680853055" + } + } + } + ] + } + ] + }, + "cborHex": "d905059f80bf1beacf3aaff5a7f146460a4399c92f9d4255e91bd58e8c43961eaa3fffff", + "cborBytes": [ + 217, 5, 5, 159, 128, 191, 27, 234, 207, 58, 175, 245, 167, 241, 70, 70, 10, 67, 153, 201, 47, 157, 66, 85, 233, + 27, 213, 142, 140, 67, 150, 30, 170, 63, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 465, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d2600fbabbd38d4a5907" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2994730234642816123" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d1cbecc2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2819165569792714955" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9011324132920342564" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e3c2e9f0bdd70842857c729" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1224451172990882794" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16563871117414657486" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d905089f4ad2600fbabbd38d4a5907d8669f1b298f6b481a01dc7b9f44d1cbecc2d8669f1b271fb0262e81a8cb9f1b7d0ea78e0a9f38244c4e3c2e9f0bdd70842857c729ffff1b10fe1fdabaee93ea1be5deb105aada6dcea0ffffff", + "cborBytes": [ + 217, 5, 8, 159, 74, 210, 96, 15, 186, 187, 211, 141, 74, 89, 7, 216, 102, 159, 27, 41, 143, 107, 72, 26, 1, 220, + 123, 159, 68, 209, 203, 236, 194, 216, 102, 159, 27, 39, 31, 176, 38, 46, 129, 168, 203, 159, 27, 125, 14, 167, + 142, 10, 159, 56, 36, 76, 78, 60, 46, 159, 11, 221, 112, 132, 40, 87, 199, 41, 255, 255, 27, 16, 254, 31, 218, + 186, 238, 147, 234, 27, 229, 222, 177, 5, 170, 218, 109, 206, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 466, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + }, + "cborHex": "d9050580", + "cborBytes": [217, 5, 5, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 467, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6059946390005123961" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6847270020756556785" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6875996044704876225" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7067493198780552330" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51d2c6" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b541941227e2a8b799f0b80bf1b5f0663ce34604bf11b5f6c71f8d9a006c11b6214c79e7dcdd48a4351d2c6ffffff", + "cborBytes": [ + 216, 102, 159, 27, 84, 25, 65, 34, 126, 42, 139, 121, 159, 11, 128, 191, 27, 95, 6, 99, 206, 52, 96, 75, 241, 27, + 95, 108, 113, 248, 217, 160, 6, 193, 27, 98, 20, 199, 158, 125, 205, 212, 138, 67, 81, 210, 198, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 468, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d8cca1fb457435" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5447458310063263400" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "505f11d8fb74d7e8bacf9450" + }, + { + "_tag": "ByteArray", + "bytearray": "4dc0f42ca4bb1059a373" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12985307224060863119" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b5a9bb137e50507b7c" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3f6e0135" + } + ] + }, + "cborHex": "d87b9fd9050c9f47d8cca1fb4574351b4b9942789c120ea89f4c505f11d8fb74d7e8bacf94504a4dc0f42ca4bb1059a373ffa0d8669f1bb435141f0576228f9f49b5a9bb137e50507b7cffffff443f6e0135ff", + "cborBytes": [ + 216, 123, 159, 217, 5, 12, 159, 71, 216, 204, 161, 251, 69, 116, 53, 27, 75, 153, 66, 120, 156, 18, 14, 168, 159, + 76, 80, 95, 17, 216, 251, 116, 215, 232, 186, 207, 148, 80, 74, 77, 192, 244, 44, 164, 187, 16, 89, 163, 115, 255, + 160, 216, 102, 159, 27, 180, 53, 20, 31, 5, 118, 34, 143, 159, 73, 181, 169, 187, 19, 126, 80, 80, 123, 124, 255, + 255, 255, 68, 63, 110, 1, 53, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 469, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6837073112012053962" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8543881458292782786" + } + }, + { + "_tag": "ByteArray", + "bytearray": "34e90191126c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3805" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12050460400233188998" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d19d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05c8b136" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3fde6fc4b96e8d456fcdc45f" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7126499306862175839" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9fd9050a9f9f1b5ee229c560da5dcaff9f1b7691f6eb3c9676c24634e90191126cff423805bf1ba73bd5e34fcf8e8642d19d4405c8b1364c3fde6fc4b96e8d456fcdc45fffff80d87f9f0f80ff1b62e6695c9d96665fffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 217, 5, 10, 159, 159, 27, 94, 226, 41, 197, 96, + 218, 93, 202, 255, 159, 27, 118, 145, 246, 235, 60, 150, 118, 194, 70, 52, 233, 1, 145, 18, 108, 255, 66, 56, 5, + 191, 27, 167, 59, 213, 227, 79, 207, 142, 134, 66, 209, 157, 68, 5, 200, 177, 54, 76, 63, 222, 111, 196, 185, 110, + 141, 69, 111, 205, 196, 95, 255, 255, 128, 216, 127, 159, 15, 128, 255, 27, 98, 230, 105, 92, 157, 150, 102, 95, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 470, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3881532508407324356" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17610912727965704014" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "88" + }, + { + "_tag": "ByteArray", + "bytearray": "a27e95e3c27055c76165" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12645791228094017059" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1e1ff086dc2c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b9b639a639b880" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b35ddf9404bbfdec49f9fd8669f1bf46687d1c8cd1f4e9f41884aa27e95e3c27055c761651baf7ee01f264b6e23461e1ff086dc2cffff47b9b639a639b880ffa080ffff", + "cborBytes": [ + 216, 102, 159, 27, 53, 221, 249, 64, 75, 191, 222, 196, 159, 159, 216, 102, 159, 27, 244, 102, 135, 209, 200, 205, + 31, 78, 159, 65, 136, 74, 162, 126, 149, 227, 194, 112, 85, 199, 97, 101, 27, 175, 126, 224, 31, 38, 75, 110, 35, + 70, 30, 31, 240, 134, 220, 44, 255, 255, 71, 185, 182, 57, 166, 57, 184, 128, 255, 160, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 471, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "043cfa27a44a0a5cf3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8237556" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5018569534660318242" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "521d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "612ab3f7cf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e44eae6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "318752751ced506da1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15908838290834822356" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d9050b9fbf49043cfa27a44a0a5cf344f8237556411f1b45a58a66fa06942242521d45612ab3f7cf448e44eae649318752751ced506da141ec1bdcc78c230a5794d4ff9f80ffff", + "cborBytes": [ + 217, 5, 11, 159, 191, 73, 4, 60, 250, 39, 164, 74, 10, 92, 243, 68, 248, 35, 117, 86, 65, 31, 27, 69, 165, 138, + 102, 250, 6, 148, 34, 66, 82, 29, 69, 97, 42, 179, 247, 207, 68, 142, 68, 234, 230, 73, 49, 135, 82, 117, 28, 237, + 80, 109, 161, 65, 236, 27, 220, 199, 140, 35, 10, 87, 148, 212, 255, 159, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 472, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12333395516962500118" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3701736533003179338" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17430974105216176036" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12868794398881425792" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33e381" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0347" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e46952d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f43ab2e016" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4945159444906993773" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12987212748448559862" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12575528014785934624" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16902679527181143128" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0224716bad47f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8690711151827308932" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0629e3c237bdb388" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad52631a50c1" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bab2905e0a6f1ee169fd8669f1b335f35c39dbd954a9f9f41011bf1e742986e714fa4ffbf1bb2972452f0dd29804333e38142034744e46952d645f43ab2e0161b44a0bc508759686dffbf1bb43bd92f7db372f61bae854019f849f5201bea926179c9e64c58418e470224716bad47f21b789b9bbf4a315184480629e3c237bdb38846ad52631a50c1ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 171, 41, 5, 224, 166, 241, 238, 22, 159, 216, 102, 159, 27, 51, 95, 53, 195, 157, 189, 149, 74, + 159, 159, 65, 1, 27, 241, 231, 66, 152, 110, 113, 79, 164, 255, 191, 27, 178, 151, 36, 82, 240, 221, 41, 128, 67, + 51, 227, 129, 66, 3, 71, 68, 228, 105, 82, 214, 69, 244, 58, 178, 224, 22, 27, 68, 160, 188, 80, 135, 89, 104, + 109, 255, 191, 27, 180, 59, 217, 47, 125, 179, 114, 246, 27, 174, 133, 64, 25, 248, 73, 245, 32, 27, 234, 146, 97, + 121, 201, 230, 76, 88, 65, 142, 71, 2, 36, 113, 107, 173, 71, 242, 27, 120, 155, 155, 191, 74, 49, 81, 132, 72, 6, + 41, 227, 194, 55, 189, 179, 136, 70, 173, 82, 99, 26, 80, 193, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 473, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13587251089129476608" + }, + "fields": [] + }, + "cborHex": "d8669f1bbc8f9ce0919a120080ff", + "cborBytes": [216, 102, 159, 27, 188, 143, 156, 224, 145, 154, 18, 0, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 474, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14001737056342245938" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7923307272367381376" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "42b84d21a8aadc44910c62" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d71" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbb169" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b95aa8c00911c3b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9f3726415d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0e534bfcf57d572c7038890" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "33ec637d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15157271834702271219" + } + }, + { + "_tag": "ByteArray", + "bytearray": "15d62b80767ae8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17531360365073305753" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1154" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13995973959671008617" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bc25029ab19b402329fd8669f1b6df53dfc17ba1b809fa04b42b84d21a8aadc44910c62bf424d7143cbb16948b95aa8c00911c3b7414446f9f3726415d04cf0e534bfcf57d572c7038890ff4433ec637d9f1bd259726d4f7652f34715d62b80767ae81bf34be75ded8e90994211541bc23bb02997cecd69ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 194, 80, 41, 171, 25, 180, 2, 50, 159, 216, 102, 159, 27, 109, 245, 61, 252, 23, 186, 27, 128, + 159, 160, 75, 66, 184, 77, 33, 168, 170, 220, 68, 145, 12, 98, 191, 66, 77, 113, 67, 203, 177, 105, 72, 185, 90, + 168, 192, 9, 17, 195, 183, 65, 68, 70, 249, 243, 114, 100, 21, 208, 76, 240, 229, 52, 191, 207, 87, 213, 114, 199, + 3, 136, 144, 255, 68, 51, 236, 99, 125, 159, 27, 210, 89, 114, 109, 79, 118, 82, 243, 71, 21, 214, 43, 128, 118, + 122, 232, 27, 243, 75, 231, 93, 237, 142, 144, 153, 66, 17, 84, 27, 194, 59, 176, 41, 151, 206, 205, 105, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 475, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9501610602039432693" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9774206681839349333" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "827910151915455123" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9534442778193903833" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12200212338739379503" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13264897351346597886" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14190785720669367667" + } + }, + { + "_tag": "ByteArray", + "bytearray": "586fb9eab3fc06f0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "881756305524857424" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87d9f1b83dc808038a555f580d8669f1b87a4f530f048ae559f1b0b7d53e58edc4293ffffd8669f1b84512530ed8940d99fa0d8669f1ba94fdc7b8ae5fd2f9f1bb81661dc5108affe1bc4efcc6d4c2eed7348586fb9eab3fc06f01b0c3ca0b029451a50ffffffffff", + "cborBytes": [ + 216, 125, 159, 27, 131, 220, 128, 128, 56, 165, 85, 245, 128, 216, 102, 159, 27, 135, 164, 245, 48, 240, 72, 174, + 85, 159, 27, 11, 125, 83, 229, 142, 220, 66, 147, 255, 255, 216, 102, 159, 27, 132, 81, 37, 48, 237, 137, 64, 217, + 159, 160, 216, 102, 159, 27, 169, 79, 220, 123, 138, 229, 253, 47, 159, 27, 184, 22, 97, 220, 81, 8, 175, 254, 27, + 196, 239, 204, 109, 76, 46, 237, 115, 72, 88, 111, 185, 234, 179, 252, 6, 240, 27, 12, 60, 160, 176, 41, 69, 26, + 80, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 476, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8353275369790148421" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10785891460878715420" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1359445340196670176" + } + } + } + ] + } + ] + }, + "cborHex": "d87f9f1b73eccbb0f75c8f45bf1b95af2f2337984a1c1b12ddb85591fb8ae0ffff", + "cborBytes": [ + 216, 127, 159, 27, 115, 236, 203, 176, 247, 92, 143, 69, 191, 27, 149, 175, 47, 35, 55, 152, 74, 28, 27, 18, 221, + 184, 85, 145, 251, 138, 224, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 477, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10680477995237767274" + } + } + ] + }, + "cborHex": "d905079f801b9438ae262985f86aff", + "cborBytes": [217, 5, 7, 159, 128, 27, 148, 56, 174, 38, 41, 133, 248, 106, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 478, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4939408331278324551" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3501714180741670422" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9504476128729000432" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3ed76efb" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1298970535452150469" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14664401877061126920" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3823632249348394466" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10175852209336710866" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5528039638809757464" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a48ef16b7e2a690c05a9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1de1cd0d3a10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d30ec0bfebf0f1b7211bb238" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87b9fd87f9f1b448c4db50a7313471b3098967e980e26161b83e6aeaea51269f0443ed76efbbf1b1206ded1db530ac51bcb826bcfd5cccb081b35104545b6238de21b8d37e3aba06376d21b4cb78ac33f88c7184aa48ef16b7e2a690c05a9461de1cd0d3a104cd30ec0bfebf0f1b7211bb238ffffff", + "cborBytes": [ + 216, 123, 159, 216, 127, 159, 27, 68, 140, 77, 181, 10, 115, 19, 71, 27, 48, 152, 150, 126, 152, 14, 38, 22, 27, + 131, 230, 174, 174, 165, 18, 105, 240, 68, 62, 215, 110, 251, 191, 27, 18, 6, 222, 209, 219, 83, 10, 197, 27, 203, + 130, 107, 207, 213, 204, 203, 8, 27, 53, 16, 69, 69, 182, 35, 141, 226, 27, 141, 55, 227, 171, 160, 99, 118, 210, + 27, 76, 183, 138, 195, 63, 136, 199, 24, 74, 164, 142, 241, 107, 126, 42, 105, 12, 5, 169, 70, 29, 225, 205, 13, + 58, 16, 76, 211, 14, 192, 191, 235, 240, 241, 183, 33, 27, 178, 56, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 479, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fea201fc0907c306d9fef9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [] + } + ] + }, + "cborHex": "d9050d9f4bfea201fc0907c306d9fef9d87f80ff", + "cborBytes": [217, 5, 13, 159, 75, 254, 162, 1, 252, 9, 7, 195, 6, 217, 254, 249, 216, 127, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 480, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3274266076864054476" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6474036146479396704" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6203208939666556876" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17308177209419059930" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "056104" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cbb452b11e42d46148" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3938602995505175228" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5f75c2f8e8adc9d48e" + }, + { + "_tag": "ByteArray", + "bytearray": "f3ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13717820569480916511" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6000fd70fd03" + } + ] + } + ] + }, + "cborHex": "d8669f1b2d7087a62b9804cc9fbf0d1bfffffffffffffff21b59d8659305f177601b561639aa245a47cc1bf032ff7824ef52da43056104ff49cbb452b11e42d46148d8669f1b36a8ba8e8a601abc9f495f75c2f8e8adc9d48e42f3ca1bbe5f7d20b874ee1f466000fd70fd03ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 45, 112, 135, 166, 43, 152, 4, 204, 159, 191, 13, 27, 255, 255, 255, 255, 255, 255, 255, 242, + 27, 89, 216, 101, 147, 5, 241, 119, 96, 27, 86, 22, 57, 170, 36, 90, 71, 204, 27, 240, 50, 255, 120, 36, 239, 82, + 218, 67, 5, 97, 4, 255, 73, 203, 180, 82, 177, 30, 66, 212, 97, 72, 216, 102, 159, 27, 54, 168, 186, 142, 138, 96, + 26, 188, 159, 73, 95, 117, 194, 248, 232, 173, 201, 212, 142, 66, 243, 202, 27, 190, 95, 125, 32, 184, 116, 238, + 31, 70, 96, 0, 253, 112, 253, 3, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 481, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13439642900775854795" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07ff48797b04" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10131581412725543712" + } + }, + { + "_tag": "ByteArray", + "bytearray": "86a35a30ec27e7" + } + ] + } + ] + }, + "cborHex": "d8669f1bba83340310d862cb9f4607ff48797b049f1b8c9a9b9d8e74d3204786a35a30ec27e7ffffff", + "cborBytes": [ + 216, 102, 159, 27, 186, 131, 52, 3, 16, 216, 98, 203, 159, 70, 7, 255, 72, 121, 123, 4, 159, 27, 140, 154, 155, + 157, 142, 116, 211, 32, 71, 134, 163, 90, 48, 236, 39, 231, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 482, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4036" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18101589179577835865" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4839573863786611710" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ade87c4c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12343705412806368307" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b849383929c088d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14400193215809741883" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bea606b017" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17246734504323235448" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7771df20882bd1e6f1b99a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11293512897279222742" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3b34b205c7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9577293123306150088" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e663af18fd04b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff8d90" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5414739674698833897" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9fbf4240361bfb35c373d6caa159418e1b43299ec9b74403fe44ade87c4c1bab4da6ac5663dc3348b849383929c088d61bc7d7c36f2d54643b45bea606b0171bef58b5a791a8be784cd7771df20882bd1e6f1b99a01b9cba9e24fc9ee3d6ff453b34b205c79fa0ff9fbf4206b91b84e9615a5c7458c847e663af18fd04b21043ff8d901bffffffffffffffffffd8669f1b4b25050bada35fe980ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 191, 66, 64, 54, 27, 251, 53, 195, 115, 214, 202, + 161, 89, 65, 142, 27, 67, 41, 158, 201, 183, 68, 3, 254, 68, 173, 232, 124, 76, 27, 171, 77, 166, 172, 86, 99, + 220, 51, 72, 184, 73, 56, 57, 41, 192, 136, 214, 27, 199, 215, 195, 111, 45, 84, 100, 59, 69, 190, 166, 6, 176, + 23, 27, 239, 88, 181, 167, 145, 168, 190, 120, 76, 215, 119, 29, 242, 8, 130, 189, 30, 111, 27, 153, 160, 27, 156, + 186, 158, 36, 252, 158, 227, 214, 255, 69, 59, 52, 178, 5, 199, 159, 160, 255, 159, 191, 66, 6, 185, 27, 132, 233, + 97, 90, 92, 116, 88, 200, 71, 230, 99, 175, 24, 253, 4, 178, 16, 67, 255, 141, 144, 27, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 216, 102, 159, 27, 75, 37, 5, 11, 173, 163, 95, 233, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 483, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10723782499691898197" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b94d2875dceafa5559f80ffff", + "cborBytes": [216, 102, 159, 27, 148, 210, 135, 93, 206, 175, 165, 85, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 484, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8586036171820508931" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13696910451782386041" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13849972166447337179" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14743034760551417944" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4166465897485164579" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15318529150906201223" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4069122091332254567" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17864448039916311630" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9e8" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9986819263358374204" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cddb94" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "57719ad09467fce4be60bf" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "074b6b3043" + }, + { + "_tag": "ByteArray", + "bytearray": "1a31b3058dd2852bf3" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b7727ba68520427039f80bf1bbe15337c8ed301791bc034fc4e1a240edb1bcc99c800b5e748581b39d242a8ac61e0231bd496591a093af4871b38786cfba18dbb671bf7eb44d7a7a2944e42c9e8ffbf1b8a984f352481113c43cddb94ff9f4b57719ad09467fce4be60bf9f45074b6b3043491a31b3058dd2852bf3ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 119, 39, 186, 104, 82, 4, 39, 3, 159, 128, 191, 27, 190, 21, 51, 124, 142, 211, 1, 121, 27, + 192, 52, 252, 78, 26, 36, 14, 219, 27, 204, 153, 200, 0, 181, 231, 72, 88, 27, 57, 210, 66, 168, 172, 97, 224, 35, + 27, 212, 150, 89, 26, 9, 58, 244, 135, 27, 56, 120, 108, 251, 161, 141, 187, 103, 27, 247, 235, 68, 215, 167, 162, + 148, 78, 66, 201, 232, 255, 191, 27, 138, 152, 79, 53, 36, 129, 17, 60, 67, 205, 219, 148, 255, 159, 75, 87, 113, + 154, 208, 148, 103, 252, 228, 190, 96, 191, 159, 69, 7, 75, 107, 48, 67, 73, 26, 49, 179, 5, 141, 210, 133, 43, + 243, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 485, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4832329185572267526" + }, + "fields": [] + }, + "cborHex": "d8669f1b430fe1ca9fc9a60680ff", + "cborBytes": [216, 102, 159, 27, 67, 15, 225, 202, 159, 201, 166, 6, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 486, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7ca116b17c124424" + } + ] + } + ] + }, + "cborHex": "d905079f9fa0487ca116b17c124424ffff", + "cborBytes": [217, 5, 7, 159, 159, 160, 72, 124, 161, 22, 177, 124, 18, 68, 36, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 487, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2818007764846283906" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11479837556252630323" + } + } + ] + }, + "cborHex": "d8669f1b271b9321b5f48c829f1b9f50936f43a05d33ffff", + "cborBytes": [ + 216, 102, 159, 27, 39, 27, 147, 33, 181, 244, 140, 130, 159, 27, 159, 80, 147, 111, 67, 160, 93, 51, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 488, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + } + ] + }, + "cborHex": "d87d9f9f06ffff", + "cborBytes": [216, 125, 159, 159, 6, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 489, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "faee48fea2d0fa87589ad628" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3528352229714151095" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7328550194229714090" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9514642899053226568" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13575293396316764713" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be20" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ba786b957" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95fd94313e6db2d2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7d120a626d6bff72dd3dddf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14573418084499435540" + } + } + } + ] + } + ] + }, + "cborHex": "d905019fd8799f4cfaee48fea2d0fa87589ad6281b30f739a8ae91c6b7ffbf1b65b43d92c5ae9caa1b840acd4e52c2aa481bbc65216b412aba2942be20450ba786b9574895fd94313e6db2d24cf7d120a626d6bff72dd3dddf1bca3f2e88d9d7b014ffff", + "cborBytes": [ + 217, 5, 1, 159, 216, 121, 159, 76, 250, 238, 72, 254, 162, 208, 250, 135, 88, 154, 214, 40, 27, 48, 247, 57, 168, + 174, 145, 198, 183, 255, 191, 27, 101, 180, 61, 146, 197, 174, 156, 170, 27, 132, 10, 205, 78, 82, 194, 170, 72, + 27, 188, 101, 33, 107, 65, 42, 186, 41, 66, 190, 32, 69, 11, 167, 134, 185, 87, 72, 149, 253, 148, 49, 62, 109, + 178, 210, 76, 247, 209, 32, 166, 38, 214, 191, 247, 45, 211, 221, 223, 27, 202, 63, 46, 136, 217, 215, 176, 20, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 490, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12447808114107013874" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16388077421913372092" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10374688646480580911" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13749205086877025718" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17579540571683933173" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "560036213350513817" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92777f902ac950d1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3702029641661281195" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "453881639178013674" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5352189374491825874" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1f10f24ef2b74f51d200b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9412587835647182015" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5af65aabf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16447235138253038557" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0d51a4ed0572008" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13705514743601916692" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "731de4d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1699a2f30cdd8b868f6c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18370103663795298907" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d2" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6564384807480385327" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8239f9dd20385de65240" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f9fd8669f1bacbf7f874992daf29f1be36e259664bef5bcffffa0d8669f1b8ffa4c5b44c0d12f9f1bbecefd2e1b4c85b61bf3f7130271c9cbf5ffffbf1b07c5a5f8061cbc994892777f902ac950d11b336040584b2ff3ab1b064c82f231470bea1b4a46cbe1053496d24bc1f10f24ef2b74f51d200b1b82a03ac438e9c4bf45f5af65aabf1be440513790e523dd48d0d51a4ed0572008ffffbf1bbe33c50b5c456b1444731de4d14a1699a2f30cdd8b868f6c1bfeefb7f4079ee25bff41d29f1b5b196133ead6df2f4a8239f9dd20385de65240ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 159, 216, 102, 159, 27, 172, 191, 127, 135, 73, + 146, 218, 242, 159, 27, 227, 110, 37, 150, 100, 190, 245, 188, 255, 255, 160, 216, 102, 159, 27, 143, 250, 76, 91, + 68, 192, 209, 47, 159, 27, 190, 206, 253, 46, 27, 76, 133, 182, 27, 243, 247, 19, 2, 113, 201, 203, 245, 255, 255, + 191, 27, 7, 197, 165, 248, 6, 28, 188, 153, 72, 146, 119, 127, 144, 42, 201, 80, 209, 27, 51, 96, 64, 88, 75, 47, + 243, 171, 27, 6, 76, 130, 242, 49, 71, 11, 234, 27, 74, 70, 203, 225, 5, 52, 150, 210, 75, 193, 241, 15, 36, 239, + 43, 116, 245, 29, 32, 11, 27, 130, 160, 58, 196, 56, 233, 196, 191, 69, 245, 175, 101, 170, 191, 27, 228, 64, 81, + 55, 144, 229, 35, 221, 72, 208, 213, 26, 78, 208, 87, 32, 8, 255, 255, 191, 27, 190, 51, 197, 11, 92, 69, 107, 20, + 68, 115, 29, 228, 209, 74, 22, 153, 162, 243, 12, 221, 139, 134, 143, 108, 27, 254, 239, 183, 244, 7, 158, 226, + 91, 255, 65, 210, 159, 27, 91, 25, 97, 51, 234, 214, 223, 47, 74, 130, 57, 249, 221, 32, 56, 93, 230, 82, 64, 255, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 491, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7559403787880623799" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "99047f1b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6008480836104718348" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5246945552132988" + } + ] + }, + "cborHex": "d8669f1b68e865b1925deeb79f4499047f1bd8669f1bfffffffffffffff99f0affffd8669f1b5362697c73c3880c80ffd9050a80485246945552132988ffff", + "cborBytes": [ + 216, 102, 159, 27, 104, 232, 101, 177, 146, 93, 238, 183, 159, 68, 153, 4, 127, 27, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 249, 159, 10, 255, 255, 216, 102, 159, 27, 83, 98, 105, 124, 115, 195, 136, 12, 128, 255, + 217, 5, 10, 128, 72, 82, 70, 148, 85, 82, 19, 41, 136, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 492, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8513337935483281235" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "28a3312176cb9717" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3881110396905881193" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12147849135627040670" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5200108563902497942" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5331156072575991269" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2171cbaeef18a7" + }, + { + "_tag": "ByteArray", + "bytearray": "8711c91e3004073b" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c5f7402003204c35" + }, + { + "_tag": "ByteArray", + "bytearray": "3f5cc0c4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11568725437829180993" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eb7989176a8d414d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c884" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af4f96d81ad6c896f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbbf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2141250828118304264" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9841961610086439737" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ec315e17a2bc2de2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3870424451099409596" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12163474090294602052" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17707906700424578363" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3192490448522439249" + } + }, + { + "_tag": "ByteArray", + "bytearray": "314c097de23c750609c125" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2225645490176726194" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10897831845487757856" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8799fd8669f1b762573bf29569f539f9f4828a3312176cb97171b35dc7957cda67e691ba895d46d4215f79e1b482a7f3000e004961b49fc1233cc0efde5ff472171cbaeef18a7488711c91e3004073bffff8048c5f7402003204c35443f5cc0c4d8669f1ba08c5e7df1d56e419f48eb7989176a8d414dbf42c88449af4f96d81ad6c896f642dbbf41c2ffd8669f1b1db740488900a6089f1b8895abf07e3bdb3948ec315e17a2bc2de21b35b6828829c43cbc1ba8cd573d82ad6944ffffd8669f1bf5bf1f52d291053b9f1b2c4e0125fd01ea514b314c097de23c750609c1251b1ee314c805ef14b21b973ce053043cca20ffffa0ffffff", + "cborBytes": [ + 216, 121, 159, 216, 102, 159, 27, 118, 37, 115, 191, 41, 86, 159, 83, 159, 159, 72, 40, 163, 49, 33, 118, 203, + 151, 23, 27, 53, 220, 121, 87, 205, 166, 126, 105, 27, 168, 149, 212, 109, 66, 21, 247, 158, 27, 72, 42, 127, 48, + 0, 224, 4, 150, 27, 73, 252, 18, 51, 204, 14, 253, 229, 255, 71, 33, 113, 203, 174, 239, 24, 167, 72, 135, 17, + 201, 30, 48, 4, 7, 59, 255, 255, 128, 72, 197, 247, 64, 32, 3, 32, 76, 53, 68, 63, 92, 192, 196, 216, 102, 159, + 27, 160, 140, 94, 125, 241, 213, 110, 65, 159, 72, 235, 121, 137, 23, 106, 141, 65, 77, 191, 66, 200, 132, 73, + 175, 79, 150, 216, 26, 214, 200, 150, 246, 66, 219, 191, 65, 194, 255, 216, 102, 159, 27, 29, 183, 64, 72, 137, 0, + 166, 8, 159, 27, 136, 149, 171, 240, 126, 59, 219, 57, 72, 236, 49, 94, 23, 162, 188, 45, 226, 27, 53, 182, 130, + 136, 41, 196, 60, 188, 27, 168, 205, 87, 61, 130, 173, 105, 68, 255, 255, 216, 102, 159, 27, 245, 191, 31, 82, + 210, 145, 5, 59, 159, 27, 44, 78, 1, 37, 253, 1, 234, 81, 75, 49, 76, 9, 125, 226, 60, 117, 6, 9, 193, 37, 27, 30, + 227, 20, 200, 5, 239, 20, 178, 27, 151, 60, 224, 83, 4, 60, 202, 32, 255, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 493, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9181604156449584001" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b0c4375b13905f200c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6094969198445928030" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cb82549de8a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10906385389559739329" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66cb87a3079f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16730782328054985323" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "817bd9505936e7c447" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6500dceaf12092774816df0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1876e93" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7f6b9c55856d73819f8049b0c4375b13905f200cbf1b5495ae3186511e5e469cb82549de8a1b975b43ba3037f3c14666cb87a3079f1be82fade24619b26b49817bd9505936e7c4474cf6500dceaf12092774816df044d1876e93ffffff", + "cborBytes": [ + 216, 102, 159, 27, 127, 107, 156, 85, 133, 109, 115, 129, 159, 128, 73, 176, 196, 55, 91, 19, 144, 95, 32, 12, + 191, 27, 84, 149, 174, 49, 134, 81, 30, 94, 70, 156, 184, 37, 73, 222, 138, 27, 151, 91, 67, 186, 48, 55, 243, + 193, 70, 102, 203, 135, 163, 7, 159, 27, 232, 47, 173, 226, 70, 25, 178, 107, 73, 129, 123, 217, 80, 89, 54, 231, + 196, 71, 76, 246, 80, 13, 206, 175, 18, 9, 39, 116, 129, 109, 240, 68, 209, 135, 110, 147, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 494, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ec8c2de62a53532b798324e0" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19f4cec8c2de62a53532b798324e0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 76, 236, 140, 45, 230, 42, 83, 83, 43, 121, 131, + 36, 224, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 495, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10429214748927023403" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8404544288851456542" + } + } + ] + }, + "cborHex": "d8669f1b90bc038ecc0f592b9f41271b74a2f0806407721effff", + "cborBytes": [ + 216, 102, 159, 27, 144, 188, 3, 142, 204, 15, 89, 43, 159, 65, 39, 27, 116, 162, 240, 128, 100, 7, 114, 30, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 496, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12192305577604502218" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8f8" + } + ] + }, + "cborHex": "d8669f1ba933c553422152ca9f42f8f8ffff", + "cborBytes": [216, 102, 159, 27, 169, 51, 197, 83, 66, 33, 82, 202, 159, 66, 248, 248, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 497, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15291745546795154333" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1509026677224314399" + } + } + ] + }, + "cborHex": "d87d9f1bd437318e4062fb9d1b14f123c48c8b161fff", + "cborBytes": [216, 125, 159, 27, 212, 55, 49, 142, 64, 98, 251, 157, 27, 20, 241, 35, 196, 140, 139, 22, 31, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 498, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10097004157062923952" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12385158485352714765" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62fe" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "936424705802583820" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7363675592191229715" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2914338786655720394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13240482197967000140" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3930967999912277522" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13744726957419534801" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5829795378205815612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "178004088825069307" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10622991500636713133" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15756085447891895019" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b8c1fc3c8dd60c6b09fd8799f9f1babe0ec05e65d120d4262feffd8669f1b0cfed94efc433f0c9f1b663107efc9c5bf13ffffbf1b2871cfaf85c1d3ca1bb7bfa46870b4d24c1b368d9a919a32f6121bbebf145857ba19d11b50e79802472bf33c1b027865c692fc3efb1b936c727c9f71f0ad1bdaa8dc3c4c4c42ebffffffff", + "cborBytes": [ + 216, 102, 159, 27, 140, 31, 195, 200, 221, 96, 198, 176, 159, 216, 121, 159, 159, 27, 171, 224, 236, 5, 230, 93, + 18, 13, 66, 98, 254, 255, 216, 102, 159, 27, 12, 254, 217, 78, 252, 67, 63, 12, 159, 27, 102, 49, 7, 239, 201, + 197, 191, 19, 255, 255, 191, 27, 40, 113, 207, 175, 133, 193, 211, 202, 27, 183, 191, 164, 104, 112, 180, 210, 76, + 27, 54, 141, 154, 145, 154, 50, 246, 18, 27, 190, 191, 20, 88, 87, 186, 25, 209, 27, 80, 231, 152, 2, 71, 43, 243, + 60, 27, 2, 120, 101, 198, 146, 252, 62, 251, 27, 147, 108, 114, 124, 159, 113, 240, 173, 27, 218, 168, 220, 60, + 76, 76, 66, 235, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 499, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16488468050398679637" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5981739095093867461" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eab8f4b357b1762ecd42c22a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8220499658190684506" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f9cbcff0e120d4996" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10800967840048277132" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15800614517179714900" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12668590471204998908" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d" + } + } + ] + } + ] + }, + "cborHex": "d8669f1be4d2ce550a6412559fbf1b53036803ae22f3c54ceab8f4b357b1762ecd42c22a1b721514e292ad015a490f9cbcff0e120d49961b95e4bf06487ee68c1bdb470f3029608d541bafcfdfe999128efc413dffffff", + "cborBytes": [ + 216, 102, 159, 27, 228, 210, 206, 85, 10, 100, 18, 85, 159, 191, 27, 83, 3, 104, 3, 174, 34, 243, 197, 76, 234, + 184, 244, 179, 87, 177, 118, 46, 205, 66, 194, 42, 27, 114, 21, 20, 226, 146, 173, 1, 90, 73, 15, 156, 188, 255, + 14, 18, 13, 73, 150, 27, 149, 228, 191, 6, 72, 126, 230, 140, 27, 219, 71, 15, 48, 41, 96, 141, 84, 27, 175, 207, + 223, 233, 153, 18, 142, 252, 65, 61, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 500, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4194814962943501930" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + }, + "cborHex": "d8669f1b3a36f9fbd4bda66a9f07ffff", + "cborBytes": [216, 102, 159, 27, 58, 54, 249, 251, 212, 189, 166, 106, 159, 7, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 501, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [] + }, + "cborHex": "d9050780", + "cborBytes": [217, 5, 7, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 502, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7300705066983457467" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "303572654639746380" + } + } + ] + }, + "cborHex": "d8669f1b65515093df7182bb9f1b043681b893530d4cffff", + "cborBytes": [ + 216, 102, 159, 27, 101, 81, 80, 147, 223, 113, 130, 187, 159, 27, 4, 54, 129, 184, 147, 83, 13, 76, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 503, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "673261562566448420" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce6a0bf204090525" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10296568635350041511" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbd94f82ec" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12525896081133154190" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2908081098697800583" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10479488999265780355" + } + } + } + ] + } + ] + }, + "cborHex": "d9050a9fbf1b0957e7d2f5b2952448ce6a0bf2040905251b8ee4c29ecb77c3a745cbd94f82ec1badd4ec1ee9662f8e1b285b945a01e8fb8742c2a41b916e9fb8dcd9c283ffff", + "cborBytes": [ + 217, 5, 10, 159, 191, 27, 9, 87, 231, 210, 245, 178, 149, 36, 72, 206, 106, 11, 242, 4, 9, 5, 37, 27, 142, 228, + 194, 158, 203, 119, 195, 167, 69, 203, 217, 79, 130, 236, 27, 173, 212, 236, 30, 233, 102, 47, 142, 27, 40, 91, + 148, 90, 1, 232, 251, 135, 66, 194, 164, 27, 145, 110, 159, 184, 220, 217, 194, 131, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 504, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8077915937241088813" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0604fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d31a624ae2191064e5a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07fc03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63e76c00a455fc8f085f57e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d810c1b36a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea67d330d151c377" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68b017fd0f00fa050546bd" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b701a85bf0cb8c32d9f9fbf430604fd4a7d31a624ae2191064e5a4307fc03419d4c63e76c00a455fc8f085f57e745d810c1b36a48ea67d330d151c3774b68b017fd0f00fa050546bdff80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 112, 26, 133, 191, 12, 184, 195, 45, 159, 159, 191, 67, 6, 4, 253, 74, 125, 49, 166, 36, 174, + 33, 145, 6, 78, 90, 67, 7, 252, 3, 65, 157, 76, 99, 231, 108, 0, 164, 85, 252, 143, 8, 95, 87, 231, 69, 216, 16, + 193, 179, 106, 72, 234, 103, 211, 48, 209, 81, 195, 119, 75, 104, 176, 23, 253, 15, 0, 250, 5, 5, 70, 189, 255, + 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 505, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "187188617041929964" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ce14258dad53" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3881232560149582523" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1b69" + }, + { + "_tag": "ByteArray", + "bytearray": "562265b571b948bb47afc668" + }, + { + "_tag": "ByteArray", + "bytearray": "b3478668f868db76f1aff26b" + }, + { + "_tag": "ByteArray", + "bytearray": "3c6de01f" + }, + { + "_tag": "ByteArray", + "bytearray": "169f8988d8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3512632705532685524" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2745898579901360005" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f7dbb36315e5c494" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11970201234613906008" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "160abb75590b0d54975d34" + }, + { + "_tag": "ByteArray", + "bytearray": "5db7661eb2a34cfd" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6064926610463798117" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4250076917550667771" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7400f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11917193495027710739" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93e42cd3de0da5ec94044ad6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7783632625986080414" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9aa14521f628b3c70a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17398228796183009928" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "89b4e55bd993293c1fb9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1258026588864622742" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8099002598998796584" + } + } + ] + }, + "cborHex": "d905039fd8669f1b0299070e30c7e6ec9f808046ce14258dad53d8669f1b35dce873266552bb9f421b694c562265b571b948bb47afc6684cb3478668f868db76f1aff26b443c6de01f45169f8988d8ffff1b30bf60d5bfb1ecd4ffff9f1b261b6435c445278548f7dbb36315e5c4941ba61eb29a1f1aaa589f4b160abb75590b0d54975d34485db7661eb2a34cfdffd8669f1b542af29e6d8233659f1b3afb4e704ab1d7fbffffffbf437400f11ba5626057feb8fb134c93e42cd3de0da5ec94044ad61b6c0504a2460a8e9e499aa14521f628b3c70a1bf172ece90d75da88ffbf4a89b4e55bd993293c1fb91b117568846b45b096ff1b70656ff41449e928ff", + "cborBytes": [ + 217, 5, 3, 159, 216, 102, 159, 27, 2, 153, 7, 14, 48, 199, 230, 236, 159, 128, 128, 70, 206, 20, 37, 141, 173, 83, + 216, 102, 159, 27, 53, 220, 232, 115, 38, 101, 82, 187, 159, 66, 27, 105, 76, 86, 34, 101, 181, 113, 185, 72, 187, + 71, 175, 198, 104, 76, 179, 71, 134, 104, 248, 104, 219, 118, 241, 175, 242, 107, 68, 60, 109, 224, 31, 69, 22, + 159, 137, 136, 216, 255, 255, 27, 48, 191, 96, 213, 191, 177, 236, 212, 255, 255, 159, 27, 38, 27, 100, 53, 196, + 69, 39, 133, 72, 247, 219, 179, 99, 21, 229, 196, 148, 27, 166, 30, 178, 154, 31, 26, 170, 88, 159, 75, 22, 10, + 187, 117, 89, 11, 13, 84, 151, 93, 52, 72, 93, 183, 102, 30, 178, 163, 76, 253, 255, 216, 102, 159, 27, 84, 42, + 242, 158, 109, 130, 51, 101, 159, 27, 58, 251, 78, 112, 74, 177, 215, 251, 255, 255, 255, 191, 67, 116, 0, 241, + 27, 165, 98, 96, 87, 254, 184, 251, 19, 76, 147, 228, 44, 211, 222, 13, 165, 236, 148, 4, 74, 214, 27, 108, 5, 4, + 162, 70, 10, 142, 158, 73, 154, 161, 69, 33, 246, 40, 179, 199, 10, 27, 241, 114, 236, 233, 13, 117, 218, 136, + 255, 191, 74, 137, 180, 229, 91, 217, 147, 41, 60, 31, 185, 27, 17, 117, 104, 132, 107, 69, 176, 150, 255, 27, + 112, 101, 111, 244, 20, 73, 233, 40, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 506, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8627412910316273214" + }, + "fields": [] + }, + "cborHex": "d8669f1b77baba54fa053e3e80ff", + "cborBytes": [216, 102, 159, 27, 119, 186, 186, 84, 250, 5, 62, 62, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 507, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8329252418250411924" + }, + "fields": [] + }, + "cborHex": "d8669f1b739772f1b2610f9480ff", + "cborBytes": [216, 102, 159, 27, 115, 151, 114, 241, 178, 97, 15, 148, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 508, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7648610242156925192" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f0263394a8" + } + ] + }, + "cborHex": "d8669f1b6a25527dbd2d91089f45f0263394a8ffff", + "cborBytes": [216, 102, 159, 27, 106, 37, 82, 125, 189, 45, 145, 8, 159, 69, 240, 38, 51, 148, 168, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 509, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1ee18f1e3759cf4b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13073895116125530405" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "860e" + } + ] + }, + "cborHex": "d905069f481ee18f1e3759cf4bd8669f1bb56fce56f360692580ff42860eff", + "cborBytes": [ + 217, 5, 6, 159, 72, 30, 225, 143, 30, 55, 89, 207, 75, 216, 102, 159, 27, 181, 111, 206, 86, 243, 96, 105, 37, + 128, 255, 66, 134, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 510, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3051958484842203613" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ca06b744317884594d3be55" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96a5a1d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "17fddd509fe8578b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6769773154126997629" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "653e7d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10647707762474561221" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99212033ffc44c13b5b29ba9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ddd53b3dd7d69" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1372426836146533386" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db3056" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3824407888615849533" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16080881400157244227" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3888195854003423832" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17305319461253358856" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17116062238119202079" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd3445159fb9dd" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1498193403359136374" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5374505071976417067" + } + } + ] + }, + "cborHex": "d8669f1b2a5abc126e4249dd9fbf4c0ca06b744317884594d3be554496a5a1d14817fddd509fe8578b1b5df310d0ddb7287d43653e7d1b93c441cbc6772ec54c99212033ffc44c13b5b29ba9476ddd53b3dd7d69ffbf1b130bd6efa0ba340a43db30561b351306b64d263e3d1bdf2ac46eeb8f0b431b35f5a58757054a581bf028d85ccca925081bed8877ebb8928d1f47fd3445159fb9ddffa01b14caa6f66c0e0a761b4a9613e33ab0872bffff", + "cborBytes": [ + 216, 102, 159, 27, 42, 90, 188, 18, 110, 66, 73, 221, 159, 191, 76, 12, 160, 107, 116, 67, 23, 136, 69, 148, 211, + 190, 85, 68, 150, 165, 161, 209, 72, 23, 253, 221, 80, 159, 232, 87, 139, 27, 93, 243, 16, 208, 221, 183, 40, 125, + 67, 101, 62, 125, 27, 147, 196, 65, 203, 198, 119, 46, 197, 76, 153, 33, 32, 51, 255, 196, 76, 19, 181, 178, 155, + 169, 71, 109, 221, 83, 179, 221, 125, 105, 255, 191, 27, 19, 11, 214, 239, 160, 186, 52, 10, 67, 219, 48, 86, 27, + 53, 19, 6, 182, 77, 38, 62, 61, 27, 223, 42, 196, 110, 235, 143, 11, 67, 27, 53, 245, 165, 135, 87, 5, 74, 88, 27, + 240, 40, 216, 92, 204, 169, 37, 8, 27, 237, 136, 119, 235, 184, 146, 141, 31, 71, 253, 52, 69, 21, 159, 185, 221, + 255, 160, 27, 20, 202, 166, 246, 108, 14, 10, 118, 27, 74, 150, 19, 227, 58, 176, 135, 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 511, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "19061b" + }, + { + "_tag": "ByteArray", + "bytearray": "f9b1d0d301f76b8c155b" + }, + { + "_tag": "ByteArray", + "bytearray": "2613dd1a7c9a0ff382bfcc3c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8611713134319490107" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7255403182322434696" + } + } + ] + }, + "cborHex": "d87a9f4319061b4af9b1d0d301f76b8c155b4c2613dd1a7c9a0ff382bfcc3cd8669f1b7782f37806add43b80ff1b64b05ec0e8914288ff", + "cborBytes": [ + 216, 122, 159, 67, 25, 6, 27, 74, 249, 177, 208, 211, 1, 247, 107, 140, 21, 91, 76, 38, 19, 221, 26, 124, 154, 15, + 243, 130, 191, 204, 60, 216, 102, 159, 27, 119, 130, 243, 120, 6, 173, 212, 59, 128, 255, 27, 100, 176, 94, 192, + 232, 145, 66, 136, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 512, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49fd8669f1bfffffffffffffff89f1bfffffffffffffff8ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 248, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 513, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [] + }, + "cborHex": "d87d80", + "cborBytes": [216, 125, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 514, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11420757146675750660" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "318d4315ac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5438012903288085775" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d0d317f4c133952" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0552affdfd0038fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "996a4e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7b70103" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e06" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f92506c174f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff06fbfe" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "01" + }, + { + "_tag": "ByteArray", + "bytearray": "f48b41" + } + ] + }, + "cborHex": "d8669f1b9e7eae1d799ca7049fbf45318d4315ac1b4b77b3ec787a1d0f483d0d317f4c133952480552affdfd0038fa41e543996a4e44f7b70103423e0646f92506c174f944ff06fbfeff410143f48b41ffff", + "cborBytes": [ + 216, 102, 159, 27, 158, 126, 174, 29, 121, 156, 167, 4, 159, 191, 69, 49, 141, 67, 21, 172, 27, 75, 119, 179, 236, + 120, 122, 29, 15, 72, 61, 13, 49, 127, 76, 19, 57, 82, 72, 5, 82, 175, 253, 253, 0, 56, 250, 65, 229, 67, 153, + 106, 78, 68, 247, 183, 1, 3, 66, 62, 6, 70, 249, 37, 6, 193, 116, 249, 68, 255, 6, 251, 254, 255, 65, 1, 67, 244, + 139, 65, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 515, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8236886880418267511" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28899fa4ad63ff1c5c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1347133715973269100" + } + }, + { + "_tag": "ByteArray", + "bytearray": "63a68fd6fa72" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8577519465862485918" + } + }, + { + "_tag": "ByteArray", + "bytearray": "07c3e395110a32e284e609" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5900071114267993460" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905049f1bfffffffffffffff39f1b724f4cfa126801774928899fa4ad63ff1c5c9f1b12b1fafa2d89e66c4663a68fd6fa721b7709788230bb579e4b07c3e395110a32e284e6091b51e1436b237ca574ffffff", + "cborBytes": [ + 217, 5, 4, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 27, 114, 79, 76, 250, 18, 104, 1, 119, 73, 40, + 137, 159, 164, 173, 99, 255, 28, 92, 159, 27, 18, 177, 250, 250, 45, 137, 230, 108, 70, 99, 166, 143, 214, 250, + 114, 27, 119, 9, 120, 130, 48, 187, 87, 158, 75, 7, 195, 227, 149, 17, 10, 50, 226, 132, 230, 9, 27, 81, 225, 67, + 107, 35, 124, 165, 116, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 516, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [] + }, + "cborHex": "d8669f1bffffffffffffffee80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 517, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3984406920197000399" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16654296693492675513" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4871f3ea667fbf5bab31" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11031558702637658077" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16364771762365765529" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "843073546837477293" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3836427322275642302" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2388947381732443545" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17207335389532493709" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12834889220325029115" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2259651624435025554" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3325715467593961419" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16406155873743890546" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6dcfcbfafa58f57823ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16548369710323153346" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13875140791271736018" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c30798618efa05791046" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13312810819804929001" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7b0dadd0595b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16277120676881327647" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bc3759653a3ca182d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11005662256244320459" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a92" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "787a4a1d4d07c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ed652d0ce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "694051fc49ac9266037e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "edb811ab639e44" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b2dac91ce7a171fef98" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10381146760030854137" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5a3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1247" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d05b42c66c0e24dd6abfaf2e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6840762093108990229" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16813533834080050484" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b0717b6a83e31df093" + }, + { + "_tag": "ByteArray", + "bytearray": "b6eaea30d33b6e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6468616318100676980" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e26cdd801" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9f9f9f1b374b74fbcef34ccf1be71ff29abf97f3b94a4871f3ea667fbf5bab311b9917f8313d962fddffd8669f1be31b5936ae2797999f1b0bb332ec8ec6c7ad1b353dba52c6d7bbbe1b21273efc8b430599ffffd8669f1beeccbc5e5017978d80ffd8669f1bb21eafbe64f6b4fb80ffd8669f1b1f5be52e269586929f1b2e275098edf5cfcb1be3ae5fd7f83168724a6dcfcbfafa58f57823ca1be5a79e9313a539c2ffffff1bc08e67093848c2d2bf4ac30798618efa0579104641f4ff80d8669f1bb8c09ae804731be99fbf47c7b0dadd0595b21be1e3f30407ad661fffbf491bc3759653a3ca182d1b98bbf782f55de8cb422a9247787a4a1d4d07c6455ed652d0ce41304a694051fc49ac9266037e47edb811ab639e444a6b2dac91ce7a171fef981b90113dfa00d61bf942c5a3421247ff4cd05b42c66c0e24dd6abfaf2ed8669f1b5eef44e138b811159f1be955abf0af5a5d3449b0717b6a83e31df09347b6eaea30d33b6e1b59c52444e4afa174454e26cdd801ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 159, 159, 27, 55, 75, 116, 251, 206, 243, 76, 207, + 27, 231, 31, 242, 154, 191, 151, 243, 185, 74, 72, 113, 243, 234, 102, 127, 191, 91, 171, 49, 27, 153, 23, 248, + 49, 61, 150, 47, 221, 255, 216, 102, 159, 27, 227, 27, 89, 54, 174, 39, 151, 153, 159, 27, 11, 179, 50, 236, 142, + 198, 199, 173, 27, 53, 61, 186, 82, 198, 215, 187, 190, 27, 33, 39, 62, 252, 139, 67, 5, 153, 255, 255, 216, 102, + 159, 27, 238, 204, 188, 94, 80, 23, 151, 141, 128, 255, 216, 102, 159, 27, 178, 30, 175, 190, 100, 246, 180, 251, + 128, 255, 216, 102, 159, 27, 31, 91, 229, 46, 38, 149, 134, 146, 159, 27, 46, 39, 80, 152, 237, 245, 207, 203, 27, + 227, 174, 95, 215, 248, 49, 104, 114, 74, 109, 207, 203, 250, 250, 88, 245, 120, 35, 202, 27, 229, 167, 158, 147, + 19, 165, 57, 194, 255, 255, 255, 27, 192, 142, 103, 9, 56, 72, 194, 210, 191, 74, 195, 7, 152, 97, 142, 250, 5, + 121, 16, 70, 65, 244, 255, 128, 216, 102, 159, 27, 184, 192, 154, 232, 4, 115, 27, 233, 159, 191, 71, 199, 176, + 218, 221, 5, 149, 178, 27, 225, 227, 243, 4, 7, 173, 102, 31, 255, 191, 73, 27, 195, 117, 150, 83, 163, 202, 24, + 45, 27, 152, 187, 247, 130, 245, 93, 232, 203, 66, 42, 146, 71, 120, 122, 74, 29, 77, 7, 198, 69, 94, 214, 82, + 208, 206, 65, 48, 74, 105, 64, 81, 252, 73, 172, 146, 102, 3, 126, 71, 237, 184, 17, 171, 99, 158, 68, 74, 107, + 45, 172, 145, 206, 122, 23, 31, 239, 152, 27, 144, 17, 61, 250, 0, 214, 27, 249, 66, 197, 163, 66, 18, 71, 255, + 76, 208, 91, 66, 198, 108, 14, 36, 221, 106, 191, 175, 46, 216, 102, 159, 27, 94, 239, 68, 225, 56, 184, 17, 21, + 159, 27, 233, 85, 171, 240, 175, 90, 93, 52, 73, 176, 113, 123, 106, 131, 227, 29, 240, 147, 71, 182, 234, 234, + 48, 211, 59, 110, 27, 89, 197, 36, 68, 228, 175, 161, 116, 69, 78, 38, 205, 216, 1, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 518, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1577041208576487227" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10016897666173165390" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5214901267591206593" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10853699212551958941" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7e90" + }, + { + "_tag": "ByteArray", + "bytearray": "6ab6c31a86" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18383042304585706011" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15667695545776479921" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16383349902034504194" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3221869808342821948" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9009463759050010131" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4fa9fd59" + }, + { + "_tag": "ByteArray", + "bytearray": "d17c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14790130721737253630" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b15e2c69fa95aaf3b9f1b8b032b5b07b0df4e9f1b485f0d12b98216c19f1b96a015edaf18b19d427e90456ab6c31a86ffd8669f1bff1daf9417cf2a1b9f1bd96ed6167efa1eb1ffffd8669f1be35d59eee5b28a029f1b2cb661853ed46c3c4287f81b7d080b8dfeee6e13444fa9fd5942d17cffff1bcd411987aabda2feffffff", + "cborBytes": [ + 216, 102, 159, 27, 21, 226, 198, 159, 169, 90, 175, 59, 159, 27, 139, 3, 43, 91, 7, 176, 223, 78, 159, 27, 72, 95, + 13, 18, 185, 130, 22, 193, 159, 27, 150, 160, 21, 237, 175, 24, 177, 157, 66, 126, 144, 69, 106, 182, 195, 26, + 134, 255, 216, 102, 159, 27, 255, 29, 175, 148, 23, 207, 42, 27, 159, 27, 217, 110, 214, 22, 126, 250, 30, 177, + 255, 255, 216, 102, 159, 27, 227, 93, 89, 238, 229, 178, 138, 2, 159, 27, 44, 182, 97, 133, 62, 212, 108, 60, 66, + 135, 248, 27, 125, 8, 11, 141, 254, 238, 110, 19, 68, 79, 169, 253, 89, 66, 209, 124, 255, 255, 27, 205, 65, 25, + 135, 170, 189, 162, 254, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 519, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3882124943832218439" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2192601267465165078" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "275b0e5af94801" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14905461452619236561" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da08cd03c21f93c3e1a9" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bbd47644b1c4" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5093369852766537290" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10086055304131242011" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11117595379686262908" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14226751542846728841" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d01758b5a0b63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15481193838709981827" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad48ee60d3b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac4e2d53d567afcfc8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7bce38cca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "108011455347698372" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "457390208616826706" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10632176925023408299" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15154635793701777132" + } + }, + { + "_tag": "ByteArray", + "bytearray": "69d14fee55f6b920f157" + } + ] + } + ] + } + ] + }, + "cborHex": "d905029fd8669f1b35e014116acd7b479fbf1b1e6daf3c6155191647275b0e5af948011bcedad637f8a5c4d14ada08cd03c21f93c3e1a9ffffff46bbd47644b1c4a0d8669f1b46af48e52fd5464a9f80d8669f1b8bf8dddc63afe81b9f1b9a49a21822b9487c1bc56f9326d31eaa89ffffbf475d01758b5a0b631bd6d83fc5ff46428346ad48ee60d3b549ac4e2d53d567afcfc845c7bce38cca1b017fbbd8abac2ac4ffd8669f1b0658f9f8ac5907529f1b938d1494e52010ab1bd25014f63003aeec4a69d14fee55f6b920f157ffffffffff", + "cborBytes": [ + 217, 5, 2, 159, 216, 102, 159, 27, 53, 224, 20, 17, 106, 205, 123, 71, 159, 191, 27, 30, 109, 175, 60, 97, 85, 25, + 22, 71, 39, 91, 14, 90, 249, 72, 1, 27, 206, 218, 214, 55, 248, 165, 196, 209, 74, 218, 8, 205, 3, 194, 31, 147, + 195, 225, 169, 255, 255, 255, 70, 187, 212, 118, 68, 177, 196, 160, 216, 102, 159, 27, 70, 175, 72, 229, 47, 213, + 70, 74, 159, 128, 216, 102, 159, 27, 139, 248, 221, 220, 99, 175, 232, 27, 159, 27, 154, 73, 162, 24, 34, 185, 72, + 124, 27, 197, 111, 147, 38, 211, 30, 170, 137, 255, 255, 191, 71, 93, 1, 117, 139, 90, 11, 99, 27, 214, 216, 63, + 197, 255, 70, 66, 131, 70, 173, 72, 238, 96, 211, 181, 73, 172, 78, 45, 83, 213, 103, 175, 207, 200, 69, 199, 188, + 227, 140, 202, 27, 1, 127, 187, 216, 171, 172, 42, 196, 255, 216, 102, 159, 27, 6, 88, 249, 248, 172, 89, 7, 82, + 159, 27, 147, 141, 20, 148, 229, 32, 16, 171, 27, 210, 80, 20, 246, 48, 3, 174, 236, 74, 105, 209, 79, 238, 85, + 246, 185, 32, 241, 87, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 520, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18073391224506316115" + }, + "fields": [] + }, + "cborHex": "d8669f1bfad1958fcf5c755380ff", + "cborBytes": [216, 102, 159, 27, 250, 209, 149, 143, 207, 92, 117, 83, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 521, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [] + } + ] + }, + "cborHex": "d905049fd8669f1bfffffffffffffffd80ffff", + "cborBytes": [217, 5, 4, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 522, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4014475817964553156" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "009703" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "af" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9245011822003824710" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0743" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10062049140380857884" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a043fff70c7ac6877d34a6" + }, + { + "_tag": "ByteArray", + "bytearray": "80160fc1d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4163462502668655673" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16678285964599282" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b37b6487ca12c43c49f43009703bf41af1bfffffffffffffffcff9f9f04ff1b804ce1451ad328464207439f1b8ba39461d4ecf61c4ba043fff70c7ac6877d34a64580160fc1d01b39c7971653395c391b003b40d00e61dff2ffffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 55, 182, 72, 124, 161, 44, 67, 196, 159, 67, 0, 151, 3, 191, 65, 175, 27, 255, 255, 255, 255, + 255, 255, 255, 252, 255, 159, 159, 4, 255, 27, 128, 76, 225, 69, 26, 211, 40, 70, 66, 7, 67, 159, 27, 139, 163, + 148, 97, 212, 236, 246, 28, 75, 160, 67, 255, 247, 12, 122, 198, 135, 125, 52, 166, 69, 128, 22, 15, 193, 208, 27, + 57, 199, 151, 22, 83, 57, 92, 57, 27, 0, 59, 64, 208, 14, 97, 223, 242, 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 523, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4157351654522831920" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0a464641" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2059790130505670588" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6585987762348972760" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10923767281362471019" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10741696997775818161" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12902136435584061604" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d500fe9e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13354173365969063509" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2763856bd60b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18233406058944098271" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4448638431912386324" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15370469981971488826" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4343719778782909710" + } + } + ] + }, + "cborHex": "d8669f1b39b1e14d9e3744309f440a464641bf1b1c95d835e0a55fbc1b5b6620f9cde15ad81b979904773ea5086b1b95122c81ed4ebdb11bb30d98bace9cd0a444d500fe9e1bb9538dec43918e55462763856bd60b1bfd0a1234b4d16fdf1b3dbcbd157c49df14ff1bd54ee1032a37203a1b3c47fe1ff231950effff", + "cborBytes": [ + 216, 102, 159, 27, 57, 177, 225, 77, 158, 55, 68, 48, 159, 68, 10, 70, 70, 65, 191, 27, 28, 149, 216, 53, 224, + 165, 95, 188, 27, 91, 102, 32, 249, 205, 225, 90, 216, 27, 151, 153, 4, 119, 62, 165, 8, 107, 27, 149, 18, 44, + 129, 237, 78, 189, 177, 27, 179, 13, 152, 186, 206, 156, 208, 164, 68, 213, 0, 254, 158, 27, 185, 83, 141, 236, + 67, 145, 142, 85, 70, 39, 99, 133, 107, 214, 11, 27, 253, 10, 18, 52, 180, 209, 111, 223, 27, 61, 188, 189, 21, + 124, 73, 223, 20, 255, 27, 213, 78, 225, 3, 42, 55, 32, 58, 27, 60, 71, 254, 31, 242, 49, 149, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 524, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17739366177869628533" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17495695503012257131" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e0745cc4" + }, + { + "_tag": "ByteArray", + "bytearray": "3dd2700e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11123499290392082956" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15067682442782507988" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "83ecf2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15012326110617237803" + } + }, + { + "_tag": "ByteArray", + "bytearray": "69a42354" + }, + { + "_tag": "ByteArray", + "bytearray": "99" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6f0f892d6882856bd6" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12102267270922113333" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18175965890093315405" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c76c3175156f7b9d85c6978" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10717570152862686475" + } + }, + { + "_tag": "ByteArray", + "bytearray": "756f30f1f3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12659431074990173226" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf62ee38d347f84759f1bf2cd325d2371dd6b44e0745cc4443dd2700ed8669f1b9a5e9bab77213a0c9f1bd11b2959867103d49f4383ecf21bd0567f0f13a9792b4469a423544199ff496f0f892d6882856bd680d8669f1ba7f3e3f65c2611359f1bfc3e00ad38a0f54d4c5c76c3175156f7b9d85c69781b94bc754518b59d0b45756f30f1f31bafaf557d7b54ac2affffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 246, 46, 227, 141, 52, 127, 132, 117, 159, 27, 242, 205, 50, 93, 35, 113, 221, 107, 68, 224, + 116, 92, 196, 68, 61, 210, 112, 14, 216, 102, 159, 27, 154, 94, 155, 171, 119, 33, 58, 12, 159, 27, 209, 27, 41, + 89, 134, 113, 3, 212, 159, 67, 131, 236, 242, 27, 208, 86, 127, 15, 19, 169, 121, 43, 68, 105, 164, 35, 84, 65, + 153, 255, 73, 111, 15, 137, 45, 104, 130, 133, 107, 214, 128, 216, 102, 159, 27, 167, 243, 227, 246, 92, 38, 17, + 53, 159, 27, 252, 62, 0, 173, 56, 160, 245, 77, 76, 92, 118, 195, 23, 81, 86, 247, 185, 216, 92, 105, 120, 27, + 148, 188, 117, 69, 24, 181, 157, 11, 69, 117, 111, 48, 241, 243, 27, 175, 175, 85, 125, 123, 84, 172, 42, 255, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 525, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "462143a97ac3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "520548976414580309" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "48ccc76525c2b983" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "812223" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12354086018601414287" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "646e1dfece40506e786b62a0" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f46462143a97ac3d8669f1b07395c893b625e559f4848ccc76525c2b983bf438122231bab7287c7775b6e8fffffff4c646e1dfece40506e786b62a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 70, 70, 33, 67, 169, 122, 195, 216, 102, 159, 27, + 7, 57, 92, 137, 59, 98, 94, 85, 159, 72, 72, 204, 199, 101, 37, 194, 185, 131, 191, 67, 129, 34, 35, 27, 171, 114, + 135, 199, 119, 91, 110, 143, 255, 255, 255, 76, 100, 110, 29, 254, 206, 64, 80, 110, 120, 107, 98, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 526, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8570389477349019485" + }, + "fields": [] + }, + "cborHex": "d8669f1b76f023d260224f5d80ff", + "cborBytes": [216, 102, 159, 27, 118, 240, 35, 210, 96, 34, 79, 93, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 527, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7288752008337464789" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "423609" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67482a" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10952342486631939587" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4661870566451781797" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3432784120203924298" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "06f123a35608" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8353336122436154999" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8752977839804106710" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f92e589f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13067537108219798242" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7280744214357103305" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "93f1ad5df2f6d760774ea00a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14990928795103667325" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8e9e913bd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15402478910007515752" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b6526d95588de9dd59fbf434236094367482aff9fd8669f1b97fe8976ae1d7e039f1b40b24a949e3520a541c01b2fa3b2f83b5b534affff4606f123a356089f1b73ed02f20b3ef6771b7978d2f85463c7d644f92e589f1bb55937c3e0ad22e2ff1b650a6649b53c52c99f4c93f1ad5df2f6d760774ea00a1bd00a7a505554247d45c8e9e913bd1bd5c098f67b719a68ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 101, 38, 217, 85, 136, 222, 157, 213, 159, 191, 67, 66, 54, 9, 67, 103, 72, 42, 255, 159, 216, + 102, 159, 27, 151, 254, 137, 118, 174, 29, 126, 3, 159, 27, 64, 178, 74, 148, 158, 53, 32, 165, 65, 192, 27, 47, + 163, 178, 248, 59, 91, 83, 74, 255, 255, 70, 6, 241, 35, 163, 86, 8, 159, 27, 115, 237, 2, 242, 11, 62, 246, 119, + 27, 121, 120, 210, 248, 84, 99, 199, 214, 68, 249, 46, 88, 159, 27, 181, 89, 55, 195, 224, 173, 34, 226, 255, 27, + 101, 10, 102, 73, 181, 60, 82, 201, 159, 76, 147, 241, 173, 93, 242, 246, 215, 96, 119, 78, 160, 10, 27, 208, 10, + 122, 80, 85, 84, 36, 125, 69, 200, 233, 233, 19, 189, 27, 213, 192, 152, 246, 123, 113, 154, 104, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 528, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10612569086598247183" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5488793248468029966" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8013157124101547512" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c309a2d7679721a07e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10720524302652224256" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12476048822063045111" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7728ed08e1ebcd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2894880341433974497" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe10c901c7d573ded6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11509987646113484023" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b93476b5b40faf30f9f1b4c2c1c60ec7fd20ebf1b6f3473f2e776a5f849c309a2d7679721a07e1b94c6f40db18733001bad23d44d7f7f99f7477728ed08e1ebcd1b282cae55326efee149fe10c901c7d573ded61b9fbbb0c817ba8cf7ffffff", + "cborBytes": [ + 216, 102, 159, 27, 147, 71, 107, 91, 64, 250, 243, 15, 159, 27, 76, 44, 28, 96, 236, 127, 210, 14, 191, 27, 111, + 52, 115, 242, 231, 118, 165, 248, 73, 195, 9, 162, 215, 103, 151, 33, 160, 126, 27, 148, 198, 244, 13, 177, 135, + 51, 0, 27, 173, 35, 212, 77, 127, 127, 153, 247, 71, 119, 40, 237, 8, 225, 235, 205, 27, 40, 44, 174, 85, 50, 110, + 254, 225, 73, 254, 16, 201, 1, 199, 213, 115, 222, 214, 27, 159, 187, 176, 200, 23, 186, 140, 247, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 529, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17045231985072164567" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2701422100022188159" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "758a266100a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cca2c0ab60c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb82ee97d368fffebbabb94e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16923f944ea7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "464756763088791825" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7542885765927817258" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6581208366671489707" + } + } + ] + }, + "cborHex": "d8669f1bec8cd42e505a4ed79f1b257d61165436587fbf411146758a266100a2469cca2c0ab60c4209e44ccb82ee97d368fffebbabb94e4616923f944ea741f01b067325d04ade2911ff1b68adb6a3e37a502a1b5b55262408486aabffff", + "cborBytes": [ + 216, 102, 159, 27, 236, 140, 212, 46, 80, 90, 78, 215, 159, 27, 37, 125, 97, 22, 84, 54, 88, 127, 191, 65, 17, 70, + 117, 138, 38, 97, 0, 162, 70, 156, 202, 44, 10, 182, 12, 66, 9, 228, 76, 203, 130, 238, 151, 211, 104, 255, 254, + 187, 171, 185, 78, 70, 22, 146, 63, 148, 78, 167, 65, 240, 27, 6, 115, 37, 208, 74, 222, 41, 17, 255, 27, 104, + 173, 182, 163, 227, 122, 80, 42, 27, 91, 85, 38, 36, 8, 72, 106, 171, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 530, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12308268581489774215" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3470458655944615146" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14911681963148049963" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3615131337771150345" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "111058182058038159" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1593" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8335730444218263614" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee07e46e9766" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3903084480209907081" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1baacfc11017cc8e879fbf1b30298bc2a34224ea1bcef0efbd7109fe2b1b322b86cc443b6c091b018a8ed402f8538f4215931b73ae76aca709e83e46ee07e46e97661b362a8aa7c3406d89ffffff", + "cborBytes": [ + 216, 102, 159, 27, 170, 207, 193, 16, 23, 204, 142, 135, 159, 191, 27, 48, 41, 139, 194, 163, 66, 36, 234, 27, + 206, 240, 239, 189, 113, 9, 254, 43, 27, 50, 43, 134, 204, 68, 59, 108, 9, 27, 1, 138, 142, 212, 2, 248, 83, 143, + 66, 21, 147, 27, 115, 174, 118, 172, 167, 9, 232, 62, 70, 238, 7, 228, 110, 151, 102, 27, 54, 42, 138, 167, 195, + 64, 109, 137, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 531, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffffd80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 532, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4332934675774760569" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1764392507686784849" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12eed1402abe62171a3e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2583296005007460202" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16654787477669294476" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9398624597405915588" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15040015297264832521" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11111975112368091730" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14684237976136642331" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00230ff17697" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14066992573205734375" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8341682654588415605" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b4937be13cb2b03164" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7111099794635977046" + } + } + ] + }, + "cborHex": "d905099f1b3c21ad217886e679bf1b187c61a339080f514a12eed1402abe62171a3e1b23d9b6079827c76a1be721b0f8581a318c1b826e9f4679a0d9c41bd0b8de3a39e950091b9a35aa7dadae725241cc1bcbc8e4a38cecef1b4600230ff17697ffd8669f1bc337ff3717fc63e79f1b73c39c2d9fc7ae75ffff49b4937be13cb2b031641b62afb39645a17156ff", + "cborBytes": [ + 217, 5, 9, 159, 27, 60, 33, 173, 33, 120, 134, 230, 121, 191, 27, 24, 124, 97, 163, 57, 8, 15, 81, 74, 18, 238, + 209, 64, 42, 190, 98, 23, 26, 62, 27, 35, 217, 182, 7, 152, 39, 199, 106, 27, 231, 33, 176, 248, 88, 26, 49, 140, + 27, 130, 110, 159, 70, 121, 160, 217, 196, 27, 208, 184, 222, 58, 57, 233, 80, 9, 27, 154, 53, 170, 125, 173, 174, + 114, 82, 65, 204, 27, 203, 200, 228, 163, 140, 236, 239, 27, 70, 0, 35, 15, 241, 118, 151, 255, 216, 102, 159, 27, + 195, 55, 255, 55, 23, 252, 99, 231, 159, 27, 115, 195, 156, 45, 159, 199, 174, 117, 255, 255, 73, 180, 147, 123, + 225, 60, 178, 176, 49, 100, 27, 98, 175, 179, 150, 69, 161, 113, 86, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 533, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12286134701482469951" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1113af" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e6ce0300" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9668058196944583854" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02fae1ff" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fb03" + }, + { + "_tag": "ByteArray", + "bytearray": "c221" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b37cd627c44f7d20da42" + } + ] + }, + "cborHex": "d8669f1baa811e6a90766a3f9f9fd8669f1bffffffffffffffec9f12431113afffff809f44e6ce03001b862bd7b4e0af7caeff4402fae1ffff42fb0342c2210c4ab37cd627c44f7d20da42ffff", + "cborBytes": [ + 216, 102, 159, 27, 170, 129, 30, 106, 144, 118, 106, 63, 159, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 236, 159, 18, 67, 17, 19, 175, 255, 255, 128, 159, 68, 230, 206, 3, 0, 27, 134, 43, 215, 180, 224, 175, + 124, 174, 255, 68, 2, 250, 225, 255, 255, 66, 251, 3, 66, 194, 33, 12, 74, 179, 124, 214, 39, 196, 79, 125, 32, + 218, 66, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 534, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16085698165545079566" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5583798571684007445" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "986b60b1315b794ec946a3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7874019414328160051" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18083978719459632708" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8e92ac370e4" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905039f9f1bdf3be1418177930ed8669f1b4d7da3377a8f0e1580ff4b986b60b1315b794ec946a31b6d4622f0618f2f33bf1bfaf732d5131d664446b8e92ac370e4ffffff", + "cborBytes": [ + 217, 5, 3, 159, 159, 27, 223, 59, 225, 65, 129, 119, 147, 14, 216, 102, 159, 27, 77, 125, 163, 55, 122, 143, 14, + 21, 128, 255, 75, 152, 107, 96, 177, 49, 91, 121, 78, 201, 70, 163, 27, 109, 70, 34, 240, 97, 143, 47, 51, 191, + 27, 250, 247, 50, 213, 19, 29, 102, 68, 70, 184, 233, 42, 195, 112, 228, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 535, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5262078301593368918" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2705129769268940453" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19cf00df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0fd975fce317e75" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6604ea2ff58def504" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bfa3" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4471613157963961619" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16547948488250021508" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6428817447786007697" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4521537552210742146" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7266236633193982181" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7423314277096334449" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f129b14a783242edca4f63e2" + }, + { + "_tag": "ByteArray", + "bytearray": "bb28c0e9" + }, + { + "_tag": "ByteArray", + "bytearray": "1bd3d903424dfd5ef7" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ae" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16604522926944645299" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "53f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dceff64bb28ffc05f9f17ff0" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b4906a855eac379569f1b258a8d31589c0ea59fbf4419cf00df48e0fd975fce317e75ffbf49c6604ea2ff58def50442bfa3ffd8669f1b3e0e5c79bd6795139f1be5a61f79ab9ad6841b5937bf684d1e4c911b3ebfba72961c4b82ffffd8669f1b64d6dbb83f7528e59f1b6704e9012e69a4714cf129b14a783242edca4f63e244bb28c0e9491bd3d903424dfd5ef7ffff41aeff1be66f1da0a55d70b3bf4253f54cdceff64bb28ffc05f9f17ff0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 73, 6, 168, 85, 234, 195, 121, 86, 159, 27, 37, 138, 141, 49, 88, 156, 14, 165, 159, 191, 68, + 25, 207, 0, 223, 72, 224, 253, 151, 95, 206, 49, 126, 117, 255, 191, 73, 198, 96, 78, 162, 255, 88, 222, 245, 4, + 66, 191, 163, 255, 216, 102, 159, 27, 62, 14, 92, 121, 189, 103, 149, 19, 159, 27, 229, 166, 31, 121, 171, 154, + 214, 132, 27, 89, 55, 191, 104, 77, 30, 76, 145, 27, 62, 191, 186, 114, 150, 28, 75, 130, 255, 255, 216, 102, 159, + 27, 100, 214, 219, 184, 63, 117, 40, 229, 159, 27, 103, 4, 233, 1, 46, 105, 164, 113, 76, 241, 41, 177, 74, 120, + 50, 66, 237, 202, 79, 99, 226, 68, 187, 40, 192, 233, 73, 27, 211, 217, 3, 66, 77, 253, 94, 247, 255, 255, 65, + 174, 255, 27, 230, 111, 29, 160, 165, 93, 112, 179, 191, 66, 83, 245, 76, 220, 239, 246, 75, 178, 143, 252, 5, + 249, 241, 127, 240, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 536, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5504418972154454547" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "acbe2a8071" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "946173833736754892" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1899118979354795382" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b75b5e4cba91951f1a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4719745241804720406" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca8a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8608821666389711139" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11326835487679323227" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd26fe2a753226c454623a" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16650406569814601579" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11184113348475884207" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2448215574520392626" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b4c639fe43a2fe2139f9fbf45acbe2a80711b0d217c16b7a616ccffbf1b1a5b06a656a51d7649b75b5e4cba91951f1a1b417fe74a881c491642ca8a1b7778adb1afd8592341401b9d3100dd286a1c5b4bfd26fe2a753226c454623affff1be712208ebfa12f6bd8669f1b9b35f3d59f9c12af80ffa09f1b21f9cf1804ddebb2ffffff", + "cborBytes": [ + 216, 102, 159, 27, 76, 99, 159, 228, 58, 47, 226, 19, 159, 159, 191, 69, 172, 190, 42, 128, 113, 27, 13, 33, 124, + 22, 183, 166, 22, 204, 255, 191, 27, 26, 91, 6, 166, 86, 165, 29, 118, 73, 183, 91, 94, 76, 186, 145, 149, 31, 26, + 27, 65, 127, 231, 74, 136, 28, 73, 22, 66, 202, 138, 27, 119, 120, 173, 177, 175, 216, 89, 35, 65, 64, 27, 157, + 49, 0, 221, 40, 106, 28, 91, 75, 253, 38, 254, 42, 117, 50, 38, 196, 84, 98, 58, 255, 255, 27, 231, 18, 32, 142, + 191, 161, 47, 107, 216, 102, 159, 27, 155, 53, 243, 213, 159, 156, 18, 175, 128, 255, 160, 159, 27, 33, 249, 207, + 24, 4, 221, 235, 178, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 537, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6400820416637000468" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14506570174804626581" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "20c446c04f607e9fc3b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9129447825094245470" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f104776c2412444625" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9567ea5efdbace911d" + }, + { + "_tag": "ByteArray", + "bytearray": "4138c5a7b2841cdd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16500289614308099300" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2788820281332040432" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5299748196433545276" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5422457980798897089" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11746025949473491328" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6240793444165391615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10377458199946444799" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7979021778505517153" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17420161175382849144" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9122909765168681729" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10272991800282443521" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "948411" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17216465487817686447" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3887203430107594699" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a5a49180f193f88857" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10542199258603788983" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8547639697361674731" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7754440245398919299" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10066025396246298741" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16633104894689180783" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b58d4484184b75b149f80d8669f1bc951b0b702818c959f4a20c446c04f607e9fc3b91b7eb2506d52347c5e49f104776c24124446259f499567ea5efdbace911d484138c5a7b2841cdd1be4fccdfb5fe6c4e41b26b3e145233382f0ffffffd8669f1b498c7ce7c770483c80ffbf1b4b4070cddb000bc11ba302445e30e349801b569bc092841094ff1b900423402f45bfff1b6ebb2e086aed48611bf1c0d84b04bef6781b7e9b16189ed2530141541b8e90ff9d1c55ef01439484111beeed2c24f9253daf1b35f21eeca53e3fcbff9f49a5a49180f193f88857bf1b924d6a5ee8771ab71b769f5104754521ebff9f1b6b9d4e5182fed8831b8bb1b4c40b5240751be6d4a8c697c27c6fffffffff", + "cborBytes": [ + 216, 102, 159, 27, 88, 212, 72, 65, 132, 183, 91, 20, 159, 128, 216, 102, 159, 27, 201, 81, 176, 183, 2, 129, 140, + 149, 159, 74, 32, 196, 70, 192, 79, 96, 126, 159, 195, 185, 27, 126, 178, 80, 109, 82, 52, 124, 94, 73, 241, 4, + 119, 108, 36, 18, 68, 70, 37, 159, 73, 149, 103, 234, 94, 253, 186, 206, 145, 29, 72, 65, 56, 197, 167, 178, 132, + 28, 221, 27, 228, 252, 205, 251, 95, 230, 196, 228, 27, 38, 179, 225, 69, 35, 51, 130, 240, 255, 255, 255, 216, + 102, 159, 27, 73, 140, 124, 231, 199, 112, 72, 60, 128, 255, 191, 27, 75, 64, 112, 205, 219, 0, 11, 193, 27, 163, + 2, 68, 94, 48, 227, 73, 128, 27, 86, 155, 192, 146, 132, 16, 148, 255, 27, 144, 4, 35, 64, 47, 69, 191, 255, 27, + 110, 187, 46, 8, 106, 237, 72, 97, 27, 241, 192, 216, 75, 4, 190, 246, 120, 27, 126, 155, 22, 24, 158, 210, 83, 1, + 65, 84, 27, 142, 144, 255, 157, 28, 85, 239, 1, 67, 148, 132, 17, 27, 238, 237, 44, 36, 249, 37, 61, 175, 27, 53, + 242, 30, 236, 165, 62, 63, 203, 255, 159, 73, 165, 164, 145, 128, 241, 147, 248, 136, 87, 191, 27, 146, 77, 106, + 94, 232, 119, 26, 183, 27, 118, 159, 81, 4, 117, 69, 33, 235, 255, 159, 27, 107, 157, 78, 81, 130, 254, 216, 131, + 27, 139, 177, 180, 196, 11, 82, 64, 117, 27, 230, 212, 168, 198, 151, 194, 124, 111, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 538, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2480908822782145167" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5592324408489278950" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17566073040951637995" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7912019966987113115" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11106689913158242240" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12249977220872200508" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3062118468158153015" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2967" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16558966280393192898" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "260340b45fc053" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5707860335202765877" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45f76680cb27cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8109101377205537382" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53a816d4" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b226df56e0e0ff28f9fbf1b4d9bed6b8cbffde61bf3c73a5c987cf7eb1b6dcd243d8410929b1b9a22e3a158360fc01baa00a96114b6e13c1b2a7ed485e2bae1374229671be5cd44194e81f5c2ff9fbf47260340b45fc0531b4f3664bbbb4d8c354745f76680cb27cb1b708950bd1bf78a6641f94453a816d4ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 34, 109, 245, 110, 14, 15, 242, 143, 159, 191, 27, 77, 155, 237, 107, 140, 191, 253, 230, 27, + 243, 199, 58, 92, 152, 124, 247, 235, 27, 109, 205, 36, 61, 132, 16, 146, 155, 27, 154, 34, 227, 161, 88, 54, 15, + 192, 27, 170, 0, 169, 97, 20, 182, 225, 60, 27, 42, 126, 212, 133, 226, 186, 225, 55, 66, 41, 103, 27, 229, 205, + 68, 25, 78, 129, 245, 194, 255, 159, 191, 71, 38, 3, 64, 180, 95, 192, 83, 27, 79, 54, 100, 187, 187, 77, 140, 53, + 71, 69, 247, 102, 128, 203, 39, 203, 27, 112, 137, 80, 189, 27, 247, 138, 102, 65, 249, 68, 83, 168, 22, 212, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 539, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10461965460295968236" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17614572644895335393" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d7c8" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1856369136358419160" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f8" + }, + { + "_tag": "ByteArray", + "bytearray": "78930129" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8169052c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c7eb032" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b91305e280158e5ec9fd8669f1bf473887e994ca3e19f42d7c8ffff9f1b19c325e4e0a46ad8a041f84478930129bf448169052c448c7eb032ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 145, 48, 94, 40, 1, 88, 229, 236, 159, 216, 102, 159, 27, 244, 115, 136, 126, 153, 76, 163, + 225, 159, 66, 215, 200, 255, 255, 159, 27, 25, 195, 37, 228, 224, 164, 106, 216, 160, 65, 248, 68, 120, 147, 1, + 41, 191, 68, 129, 105, 5, 44, 68, 140, 126, 176, 50, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 540, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13117203875725787474" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3048f50d1907621369bb2994" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1657736746302910576" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "505fa6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a53f1c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7618d9c65c3df7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4373635295672993985" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe3c473f2e4b9e56b1d295" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ab508da8d9f74" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bb609ab6d530341529fbf4c3048f50d1907621369bb29941b170176c9a67f307043505fa6445a53f1c9477618d9c65c3df71b3cb24620ffb308c14bfe3c473f2e4b9e56b1d295470ab508da8d9f74ffffff", + "cborBytes": [ + 216, 102, 159, 27, 182, 9, 171, 109, 83, 3, 65, 82, 159, 191, 76, 48, 72, 245, 13, 25, 7, 98, 19, 105, 187, 41, + 148, 27, 23, 1, 118, 201, 166, 127, 48, 112, 67, 80, 95, 166, 68, 90, 83, 241, 201, 71, 118, 24, 217, 198, 92, 61, + 247, 27, 60, 178, 70, 32, 255, 179, 8, 193, 75, 254, 60, 71, 63, 46, 75, 158, 86, 177, 210, 149, 71, 10, 181, 8, + 218, 141, 159, 116, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 541, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15499298150846594731" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5c06bbff0270b0044d06fd00" + } + ] + }, + "cborHex": "d8669f1bd718918ca5147eab9f4c5c06bbff0270b0044d06fd00ffff", + "cborBytes": [ + 216, 102, 159, 27, 215, 24, 145, 140, 165, 20, 126, 171, 159, 76, 92, 6, 187, 255, 2, 112, 176, 4, 77, 6, 253, 0, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 542, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d04a8e28f8979463c45a1c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6250352371160576384" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0318cee2ccb1dedf003342" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7241744864315806443" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f891" + }, + { + "_tag": "ByteArray", + "bytearray": "dacfb44d9a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6627462742774263864" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15995658546327924720" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4347661971036839105" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13769360671663986548" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6037787850122765044" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8352344096832639577" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9259926868111034948" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14fcb8b365c451975d66d8a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10242729505708411478" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52a8ba3b" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6870656978571273906" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6312239861823202257" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a6e2f7a107" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3827168486513561561" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe2b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5610826255480693496" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "957653f61a16019d62" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9943869139457329221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "820d3e96" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12301164379054648669" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13890394157634004952" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7185832530961133891" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16664369128272251213" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d41a035757dd25" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7759838622462146652" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23a06f8a4348a09bef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7101626b546d4e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "266d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16940013056807187153" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60f644" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29a0f80590d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5a28ae10adb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "814ff4c5a2d4" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4330896846585931886" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8121628982630076533" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9239736493328719914" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05e219f2aa0c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4af" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "358d35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54c4" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f380ba9e3a71" + } + ] + } + ] + }, + "cborHex": "d87b9f4bd04a8e28f8979463c45a1c1b56bdb65da40bf1804b0318cee2ccb1dedf0033429f9f1b647fd895ef8d92eb42f89145dacfb44d9a1b5bf97a40313230381bddfbfeb302512ff0ffbf1b3c55ff871b201cc11bbf169893e2c417741b53ca880f63bca2f41b73e97cb4158a52591b8081de6ce3da8a444c14fcb8b365c451975d66d8a71b8e257c3796298a564452a8ba3bffd8669f1b5f597a1ea54ca6b29f1b579994b5ed0863d1ffff45a6e2f7a107bf1b351cd5761635cfd942fe2b1b4ddda8c07e5ca2f849957653f61a16019d621b89ffb84c2652c84544820d3e961baab683d4113dad5d41f31bc0c497e453efa7d81b63b9349d5f6271431be743bb6e38a7494d47d41a035757dd25ffffd8669f1b6bb07c1d1e36785c9fbf4923a06f8a4348a09bef48b7101626b546d4e242266d1beb17041f8578b2d14360f6444629a0f80590d646c5a28ae10adb46814ff4c5a2d4ffd8669f1b3c1a6fbc639d286e80ffbf1b70b5d2878b2ed0751b803a2362ef12602a4605e219f2aa0c42d4af43358d354254c4ff46f380ba9e3a71ffffff", + "cborBytes": [ + 216, 123, 159, 75, 208, 74, 142, 40, 248, 151, 148, 99, 196, 90, 28, 27, 86, 189, 182, 93, 164, 11, 241, 128, 75, + 3, 24, 206, 226, 204, 177, 222, 223, 0, 51, 66, 159, 159, 27, 100, 127, 216, 149, 239, 141, 146, 235, 66, 248, + 145, 69, 218, 207, 180, 77, 154, 27, 91, 249, 122, 64, 49, 50, 48, 56, 27, 221, 251, 254, 179, 2, 81, 47, 240, + 255, 191, 27, 60, 85, 255, 135, 27, 32, 28, 193, 27, 191, 22, 152, 147, 226, 196, 23, 116, 27, 83, 202, 136, 15, + 99, 188, 162, 244, 27, 115, 233, 124, 180, 21, 138, 82, 89, 27, 128, 129, 222, 108, 227, 218, 138, 68, 76, 20, + 252, 184, 179, 101, 196, 81, 151, 93, 102, 216, 167, 27, 142, 37, 124, 55, 150, 41, 138, 86, 68, 82, 168, 186, 59, + 255, 216, 102, 159, 27, 95, 89, 122, 30, 165, 76, 166, 178, 159, 27, 87, 153, 148, 181, 237, 8, 99, 209, 255, 255, + 69, 166, 226, 247, 161, 7, 191, 27, 53, 28, 213, 118, 22, 53, 207, 217, 66, 254, 43, 27, 77, 221, 168, 192, 126, + 92, 162, 248, 73, 149, 118, 83, 246, 26, 22, 1, 157, 98, 27, 137, 255, 184, 76, 38, 82, 200, 69, 68, 130, 13, 62, + 150, 27, 170, 182, 131, 212, 17, 61, 173, 93, 65, 243, 27, 192, 196, 151, 228, 83, 239, 167, 216, 27, 99, 185, 52, + 157, 95, 98, 113, 67, 27, 231, 67, 187, 110, 56, 167, 73, 77, 71, 212, 26, 3, 87, 87, 221, 37, 255, 255, 216, 102, + 159, 27, 107, 176, 124, 29, 30, 54, 120, 92, 159, 191, 73, 35, 160, 111, 138, 67, 72, 160, 155, 239, 72, 183, 16, + 22, 38, 181, 70, 212, 226, 66, 38, 109, 27, 235, 23, 4, 31, 133, 120, 178, 209, 67, 96, 246, 68, 70, 41, 160, 248, + 5, 144, 214, 70, 197, 162, 138, 225, 10, 219, 70, 129, 79, 244, 197, 162, 212, 255, 216, 102, 159, 27, 60, 26, + 111, 188, 99, 157, 40, 110, 128, 255, 191, 27, 112, 181, 210, 135, 139, 46, 208, 117, 27, 128, 58, 35, 98, 239, + 18, 96, 42, 70, 5, 226, 25, 242, 170, 12, 66, 212, 175, 67, 53, 141, 53, 66, 84, 196, 255, 70, 243, 128, 186, 158, + 58, 113, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 543, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5052945872337595729" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "925805957410598299" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1678771189369012773" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66bed0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1949525449878794117" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cde6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4692656391731197054" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02032710fb3972962c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10007840229302765498" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce293c952835" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17691230227091032171" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c72b55dc46ea63b05" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13852094979673179021" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6952570692988435777" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "370576" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8568262800410813805" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3069446027155529504" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13396933427537434023" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2711de6a9591b4099bee" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b461fab7fcdf56d519fbf1b0cd91f9cf6662d9b41f71b174c3180918002254366bed01b1b0e1b11509bef8542cde61b411faa20221ab47e4902032710fb3972962c1b8ae2fdaa2c7487ba46ce293c9528351bf583e028cd6a086b493c72b55dc46ea63b05ffd8669f1bc03c86fe1264438d80ff9fbf1b607c7e357f5dfd41433705761b76e8959ed0ae256d1b2a98dce629d6df201bb9eb77f8ebecd5a74a2711de6a9591b4099beeffffffff", + "cborBytes": [ + 216, 102, 159, 27, 70, 31, 171, 127, 205, 245, 109, 81, 159, 191, 27, 12, 217, 31, 156, 246, 102, 45, 155, 65, + 247, 27, 23, 76, 49, 128, 145, 128, 2, 37, 67, 102, 190, 208, 27, 27, 14, 27, 17, 80, 155, 239, 133, 66, 205, 230, + 27, 65, 31, 170, 32, 34, 26, 180, 126, 73, 2, 3, 39, 16, 251, 57, 114, 150, 44, 27, 138, 226, 253, 170, 44, 116, + 135, 186, 70, 206, 41, 60, 149, 40, 53, 27, 245, 131, 224, 40, 205, 106, 8, 107, 73, 60, 114, 181, 93, 196, 110, + 166, 59, 5, 255, 216, 102, 159, 27, 192, 60, 134, 254, 18, 100, 67, 141, 128, 255, 159, 191, 27, 96, 124, 126, 53, + 127, 93, 253, 65, 67, 55, 5, 118, 27, 118, 232, 149, 158, 208, 174, 37, 109, 27, 42, 152, 220, 230, 41, 214, 223, + 32, 27, 185, 235, 119, 248, 235, 236, 213, 167, 74, 39, 17, 222, 106, 149, 145, 180, 9, 155, 238, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 544, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15668512435085035641" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7507480031539641577" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17895940072393871876" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bd971bd0b5c08c8799f1b682fed4ff6423ce9d8669f1bf85b26add8b7120480ffffff", + "cborBytes": [ + 216, 102, 159, 27, 217, 113, 189, 11, 92, 8, 200, 121, 159, 27, 104, 47, 237, 79, 246, 66, 60, 233, 216, 102, 159, + 27, 248, 91, 38, 173, 216, 183, 18, 4, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 545, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12990196554508122516" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c3f3a2e5fcab34" + }, + { + "_tag": "ByteArray", + "bytearray": "cd502b5565078ec091b5c9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1080043915674753915" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a842d0f05f" + }, + { + "_tag": "ByteArray", + "bytearray": "0b040a539d" + }, + { + "_tag": "ByteArray", + "bytearray": "d465fbd0248ecbc1b703bd4c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8959257368512848649" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5bc920e61ab69486460ea" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b605" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bd" + }, + { + "_tag": "ByteArray", + "bytearray": "6cb4f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10539189644197075235" + } + }, + { + "_tag": "ByteArray", + "bytearray": "478f85" + }, + { + "_tag": "ByteArray", + "bytearray": "ac3819" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6673525191981463743" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c6cfbb82d09844d4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14681022851947672618" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6637259937052197719" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "988c3f2723edb9cff110" + } + ] + } + ] + }, + "cborHex": "d87b9f9f9f1bb44672f0f9f5b99447c3f3a2e5fcab344bcd502b5565078ec091b5c91b0efd16380f9d9b7bff9f45a842d0f05f450b040a539d4cd465fbd0248ecbc1b703bd4c1b7c55ad1bc58263094bf5bc920e61ab69486460eaffff42b605809f9f41bd436cb4f91b9242b92472d7992343478f8543ac3819ffd8669f1b5c9d1fcde3acf8bf9f48c6cfbb82d09844d41bcbbd78801dbbb42a1b5c1c48bf3ded8357ffff4a988c3f2723edb9cff110ffff", + "cborBytes": [ + 216, 123, 159, 159, 159, 27, 180, 70, 114, 240, 249, 245, 185, 148, 71, 195, 243, 162, 229, 252, 171, 52, 75, 205, + 80, 43, 85, 101, 7, 142, 192, 145, 181, 201, 27, 14, 253, 22, 56, 15, 157, 155, 123, 255, 159, 69, 168, 66, 208, + 240, 95, 69, 11, 4, 10, 83, 157, 76, 212, 101, 251, 208, 36, 142, 203, 193, 183, 3, 189, 76, 27, 124, 85, 173, 27, + 197, 130, 99, 9, 75, 245, 188, 146, 14, 97, 171, 105, 72, 100, 96, 234, 255, 255, 66, 182, 5, 128, 159, 159, 65, + 189, 67, 108, 180, 249, 27, 146, 66, 185, 36, 114, 215, 153, 35, 67, 71, 143, 133, 67, 172, 56, 25, 255, 216, 102, + 159, 27, 92, 157, 31, 205, 227, 172, 248, 191, 159, 72, 198, 207, 187, 130, 208, 152, 68, 212, 27, 203, 189, 120, + 128, 29, 187, 180, 42, 27, 92, 28, 72, 191, 61, 237, 131, 87, 255, 255, 74, 152, 140, 63, 39, 35, 237, 185, 207, + 241, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 546, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17564514338647149408" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2984411758338663276" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12460841406198987307" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0db39d0c" + } + ] + }, + "cborHex": "d8669f1bf3c1b0baef518b609fbf1b296ac2ae9f46636c1bacedcd3d12f83a2bff440db39d0cffff", + "cborBytes": [ + 216, 102, 159, 27, 243, 193, 176, 186, 239, 81, 139, 96, 159, 191, 27, 41, 106, 194, 174, 159, 70, 99, 108, 27, + 172, 237, 205, 61, 18, 248, 58, 43, 255, 68, 13, 179, 157, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 547, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3448823878030390108" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12728782435912653276" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7676558849571089077" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c2335336" + } + ] + }, + "cborHex": "d8669f1b2fdcaf0b5ee2f35c9f1bb0a5b82f7bce19dc1b6a889d99fe10eab544c2335336ffff", + "cborBytes": [ + 216, 102, 159, 27, 47, 220, 175, 11, 94, 226, 243, 92, 159, 27, 176, 165, 184, 47, 123, 206, 25, 220, 27, 106, + 136, 157, 153, 254, 16, 234, 181, 68, 194, 51, 83, 54, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 548, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff780ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 549, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3829322073857209211" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6713604951547265569" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b60c9d5285507056b2f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12189310487787096940" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3621639730334217118" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13077580561642070663" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c81795d8" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "15f99c31d8180faf7cdd" + }, + { + "_tag": "ByteArray", + "bytearray": "6bdaec7546" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7641304036595681722" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ed0291dc6bfd5c6aa95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86bb212dc3a55c9621755fb1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8643ba593cb4484c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5455486629667833367" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87057d4debb73de40f09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3130932654491326712" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7e11578f9ce203a5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4691929111373234733" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b35247c2336d2337b9fbf1b5d2b84221b4742214a8b60c9d5285507056b2f1ba929214e917e4b6c1b3242a6257f03339e1bb57ce63b9a3aa28744c81795d8ff4a15f99c31d8180faf7cdd456bdaec75461b6a0b5d89320b49babf4a6ed0291dc6bfd5c6aa954c86bb212dc3a55c9621755fb1488643ba593cb4484c1b4bb5c82f6e3e86174a87057d4debb73de40f091b2b734ea92ea058f849a7e11578f9ce203a5c1b411d14aafab7422dffffff", + "cborBytes": [ + 216, 102, 159, 27, 53, 36, 124, 35, 54, 210, 51, 123, 159, 191, 27, 93, 43, 132, 34, 27, 71, 66, 33, 74, 139, 96, + 201, 213, 40, 85, 7, 5, 107, 47, 27, 169, 41, 33, 78, 145, 126, 75, 108, 27, 50, 66, 166, 37, 127, 3, 51, 158, 27, + 181, 124, 230, 59, 154, 58, 162, 135, 68, 200, 23, 149, 216, 255, 74, 21, 249, 156, 49, 216, 24, 15, 175, 124, + 221, 69, 107, 218, 236, 117, 70, 27, 106, 11, 93, 137, 50, 11, 73, 186, 191, 74, 110, 208, 41, 29, 198, 191, 213, + 198, 170, 149, 76, 134, 187, 33, 45, 195, 165, 92, 150, 33, 117, 95, 177, 72, 134, 67, 186, 89, 60, 180, 72, 76, + 27, 75, 181, 200, 47, 110, 62, 134, 23, 74, 135, 5, 125, 77, 235, 183, 61, 228, 15, 9, 27, 43, 115, 78, 169, 46, + 160, 88, 248, 73, 167, 225, 21, 120, 249, 206, 32, 58, 92, 27, 65, 29, 20, 170, 250, 183, 66, 45, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 550, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "070421b1eb9e" + } + ] + }, + "cborHex": "d905099f46070421b1eb9eff", + "cborBytes": [217, 5, 9, 159, 70, 7, 4, 33, 177, 235, 158, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 551, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18147146467026842390" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7141648172474144408" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "451579694203145899" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "371e39d3f0c08e53588db75b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5935083574337625106" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0fe5ea0b271f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16184477374052474449" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa9d2e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17108791521087643578" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7515890584267092786" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8579845171630134541" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "680f9ee97d88" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f0f132f088888ad91bbc4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4070387039a5f7cda54453" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90400815bed1410f967df8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e8dc6c67a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14036417004908665873" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "913d4f4e3a4994aae17a4fbf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8daab9df450c337d9d" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfbd79d90661eb3169f9f1b631c3b2cbf239698bf1b06445556dcc20eab4c371e39d3f0c08e53588db75b1b525da710c0a65c12460fe5ea0b271f1be09ad06c33be9e5143aa9d2e1bed6ea33dfea4dfba1b684dceaa5df17332ff80d8669f1b7711bbb9c2dd550d80ffbf411d46680f9ee97d884b2f0f132f088888ad91bbc441d44b4070387039a5f7cda544534b90400815bed1410f967df8458e8dc6c67a1bc2cb5ee5d8d55c114c913d4f4e3a4994aae17a4fbf498daab9df450c337d9dffffffff", + "cborBytes": [ + 216, 102, 159, 27, 251, 215, 157, 144, 102, 30, 179, 22, 159, 159, 27, 99, 28, 59, 44, 191, 35, 150, 152, 191, 27, + 6, 68, 85, 86, 220, 194, 14, 171, 76, 55, 30, 57, 211, 240, 192, 142, 83, 88, 141, 183, 91, 27, 82, 93, 167, 16, + 192, 166, 92, 18, 70, 15, 229, 234, 11, 39, 31, 27, 224, 154, 208, 108, 51, 190, 158, 81, 67, 170, 157, 46, 27, + 237, 110, 163, 61, 254, 164, 223, 186, 27, 104, 77, 206, 170, 93, 241, 115, 50, 255, 128, 216, 102, 159, 27, 119, + 17, 187, 185, 194, 221, 85, 13, 128, 255, 191, 65, 29, 70, 104, 15, 158, 233, 125, 136, 75, 47, 15, 19, 47, 8, + 136, 136, 173, 145, 187, 196, 65, 212, 75, 64, 112, 56, 112, 57, 165, 247, 205, 165, 68, 83, 75, 144, 64, 8, 21, + 190, 209, 65, 15, 150, 125, 248, 69, 142, 141, 198, 198, 122, 27, 194, 203, 94, 229, 216, 213, 92, 17, 76, 145, + 61, 79, 78, 58, 73, 148, 170, 225, 122, 79, 191, 73, 141, 170, 185, 223, 69, 12, 51, 125, 157, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 552, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8771527071971287023" + }, + "fields": [] + }, + "cborHex": "d8669f1b79bab965fe921fef80ff", + "cborBytes": [216, 102, 159, 27, 121, 186, 185, 101, 254, 146, 31, 239, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 553, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7382841368908205084" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3310747262424465345" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12379719038618743420" + } + }, + { + "_tag": "ByteArray", + "bytearray": "30ce2fad38e5cb56d4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13481741112427459135" + } + } + ] + }, + "cborHex": "d8669f1b66751f1bead50c1c9f1b2df2231815e83fc11babcd98e00402b27c4930ce2fad38e5cb56d41bbb18c41cc804b23fffff", + "cborBytes": [ + 216, 102, 159, 27, 102, 117, 31, 27, 234, 213, 12, 28, 159, 27, 45, 242, 35, 24, 21, 232, 63, 193, 27, 171, 205, + 152, 224, 4, 2, 178, 124, 73, 48, 206, 47, 173, 56, 229, 203, 86, 212, 27, 187, 24, 196, 28, 200, 4, 178, 63, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 554, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1641076185453224150" + }, + "fields": [] + }, + "cborHex": "d8669f1b16c646188b4ae0d680ff", + "cborBytes": [216, 102, 159, 27, 22, 198, 70, 24, 139, 74, 224, 214, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 555, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11770367154481719401" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050d9f418b9fd8669f1ba358be909ecee8699f1203ffffffff", + "cborBytes": [ + 217, 5, 13, 159, 65, 139, 159, 216, 102, 159, 27, 163, 88, 190, 144, 158, 206, 232, 105, 159, 18, 3, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 556, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c7a93e6c8b17bab9c5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "83d7e65f4b9b9ece68a0e3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6373031491295044151" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14957866978648930685" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4299832055240168844" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16515482127131972542" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d83ed90e22da59" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6304920877781426148" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14526136254864062893" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7bd5474fc25a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17089497662778074538" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10422407941530918482" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "72d5cd" + } + ] + } + ] + } + ] + }, + "cborHex": "d8799f49c7a93e6c8b17bab9c59f4b83d7e65f4b9b9ece68a0e3d8669f1b58718e602504e2379f1bcf9504c453ea397d1b3bac1279066d958cffffd8669f1be532c77dea0393be9f47d83ed90e22da591b577f9422291b1fe4ffff1bc99733f6061879adff467bd5474fc25a9f1bed2a17948bc165aad8669f1b90a3d4cd73291e529f4372d5cdffffffff", + "cborBytes": [ + 216, 121, 159, 73, 199, 169, 62, 108, 139, 23, 186, 185, 197, 159, 75, 131, 215, 230, 95, 75, 155, 158, 206, 104, + 160, 227, 216, 102, 159, 27, 88, 113, 142, 96, 37, 4, 226, 55, 159, 27, 207, 149, 4, 196, 83, 234, 57, 125, 27, + 59, 172, 18, 121, 6, 109, 149, 140, 255, 255, 216, 102, 159, 27, 229, 50, 199, 125, 234, 3, 147, 190, 159, 71, + 216, 62, 217, 14, 34, 218, 89, 27, 87, 127, 148, 34, 41, 27, 31, 228, 255, 255, 27, 201, 151, 51, 246, 6, 24, 121, + 173, 255, 70, 123, 213, 71, 79, 194, 90, 159, 27, 237, 42, 23, 148, 139, 193, 101, 170, 216, 102, 159, 27, 144, + 163, 212, 205, 115, 41, 30, 82, 159, 67, 114, 213, 205, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 557, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1dec" + }, + { + "_tag": "ByteArray", + "bytearray": "7de743cdaa6cb1adcd" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7849996591645166174" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "741473983077416888" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8472914684006730527" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0e10e2d866288aab3ac89ea5" + }, + { + "_tag": "ByteArray", + "bytearray": "e50c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16971832243088117194" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8849302291975801070" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c23365e6724326e8" + } + ] + } + ] + } + ] + }, + "cborHex": "d9050b9f421dec497de743cdaa6cb1adcdd8669f1b6cf0ca4f1d098a5e9f1b0a4a3ea8bb85ffb8d8669f1b7595d70380698b1f9f4c0e10e2d866288aab3ac89ea542e50c1beb880f8124c9cdca1b7acf098c874488ee48c23365e6724326e8ffffffffff", + "cborBytes": [ + 217, 5, 11, 159, 66, 29, 236, 73, 125, 231, 67, 205, 170, 108, 177, 173, 205, 216, 102, 159, 27, 108, 240, 202, + 79, 29, 9, 138, 94, 159, 27, 10, 74, 62, 168, 187, 133, 255, 184, 216, 102, 159, 27, 117, 149, 215, 3, 128, 105, + 139, 31, 159, 76, 14, 16, 226, 216, 102, 40, 138, 171, 58, 200, 158, 165, 66, 229, 12, 27, 235, 136, 15, 129, 36, + 201, 205, 202, 27, 122, 207, 9, 140, 135, 68, 136, 238, 72, 194, 51, 101, 230, 114, 67, 38, 232, 255, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 558, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18121522492213099504" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2497473657316830723" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5844231123785322774" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfb7c94b1d99cfbf09f1b22a8cf0f2443ee039f80d8669f1b511ae13e3681911680ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 251, 124, 148, 177, 217, 156, 251, 240, 159, 27, 34, 168, 207, 15, 36, 67, 238, 3, 159, 128, + 216, 102, 159, 27, 81, 26, 225, 62, 54, 129, 145, 22, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 559, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15176831372377117052" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11664604357586184428" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7713517913523533781" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8845568232836864616" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9939568454471592600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12969855508777575298" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8517877082604991134" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13482424633150467731" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7129231531299098310" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "344108694261659109" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "945855729735458558" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14089011095637228370" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "91d9694e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "101638909642267817" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bd29eefb90e8ad17c9fbf1ba1e0ffdc8b65e8ec4138ffd8669f1b6b0bebaca42eb7d580ffd8669f1b7ac1c57122b89a689fa0d8669f1b89f070d8e5752a989f1bb3fe2ede34d4a3821b76359413b51c729e1bbb1b31c559e8ee931b62f01e4e3098cec61b04c68508c596f5e5ffff1b0d205ac65ba65efed8669f1bc38638f1d7fe7b529f4491d9694e1b0169180cc095dca9ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 210, 158, 239, 185, 14, 138, 209, 124, 159, 191, 27, 161, 224, 255, 220, 139, 101, 232, 236, + 65, 56, 255, 216, 102, 159, 27, 107, 11, 235, 172, 164, 46, 183, 213, 128, 255, 216, 102, 159, 27, 122, 193, 197, + 113, 34, 184, 154, 104, 159, 160, 216, 102, 159, 27, 137, 240, 112, 216, 229, 117, 42, 152, 159, 27, 179, 254, 46, + 222, 52, 212, 163, 130, 27, 118, 53, 148, 19, 181, 28, 114, 158, 27, 187, 27, 49, 197, 89, 232, 238, 147, 27, 98, + 240, 30, 78, 48, 152, 206, 198, 27, 4, 198, 133, 8, 197, 150, 245, 229, 255, 255, 27, 13, 32, 90, 198, 91, 166, + 94, 254, 216, 102, 159, 27, 195, 134, 56, 241, 215, 254, 123, 82, 159, 68, 145, 217, 105, 78, 27, 1, 105, 24, 12, + 192, 149, 220, 169, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 560, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10269265511086717301" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6ca79bbc972" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2405766805703428184" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4449c9cd0dce5c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9990984252927107645" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "33641180802539244" + }, + "fields": [] + } + ] + }, + "cborHex": "d87e9fd8669f1b8e83c292cc7e79759fbf46b6ca79bbc9721b21630029da61085841f1474449c9cd0dce5cff1b8aa71b3e583de23dffffd8669f1b00778479c78f5eec80ffff", + "cborBytes": [ + 216, 126, 159, 216, 102, 159, 27, 142, 131, 194, 146, 204, 126, 121, 117, 159, 191, 70, 182, 202, 121, 187, 201, + 114, 27, 33, 99, 0, 41, 218, 97, 8, 88, 65, 241, 71, 68, 73, 201, 205, 13, 206, 92, 255, 27, 138, 167, 27, 62, 88, + 61, 226, 61, 255, 255, 216, 102, 159, 27, 0, 119, 132, 121, 199, 143, 94, 236, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 561, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eccb884db53e2d" + } + ] + } + ] + }, + "cborHex": "d87f9fd87f9f47eccb884db53e2dffff", + "cborBytes": [216, 127, 159, 216, 127, 159, 71, 236, 203, 136, 77, 181, 62, 45, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 562, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9810385711405446011" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2eae3dec0c4d0c7109e1a945" + }, + { + "_tag": "ByteArray", + "bytearray": "13b73be7b2ed4ebdfc6b" + }, + { + "_tag": "ByteArray", + "bytearray": "b3e3de9a9212" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13875274734066306346" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4071376132808785949" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11247609480686801939" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5169804915577376697" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a820a34d47d213908da17d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30eb550f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cbbd5f106" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d096c13f9029423" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "675da0d5c9187050" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bea8981a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7560178906dc1519f7e780" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16429138573195260391" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3201501242749046725" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b88257dd3ade3b37b9f4c2eae3dec0c4d0c7109e1a9454a13b73be7b2ed4ebdfc6b46b3e3de9a9212bf1bc08ee0db34f98d2a1b38806f058f12401dffd8669f1b9c17893af4a714139f1b47bed62e0f0ecfb9bf4c0a820a34d47d213908da17d74430eb550f451cbbd5f106483d096c13f902942348675da0d5c918705044bea8981a4b7560178906dc1519f7e7801be400067cacf8b1e741d51b2c6e046b02074fc5ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 136, 37, 125, 211, 173, 227, 179, 123, 159, 76, 46, 174, 61, 236, 12, 77, 12, 113, 9, 225, 169, + 69, 74, 19, 183, 59, 231, 178, 237, 78, 189, 252, 107, 70, 179, 227, 222, 154, 146, 18, 191, 27, 192, 142, 224, + 219, 52, 249, 141, 42, 27, 56, 128, 111, 5, 143, 18, 64, 29, 255, 216, 102, 159, 27, 156, 23, 137, 58, 244, 167, + 20, 19, 159, 27, 71, 190, 214, 46, 15, 14, 207, 185, 191, 76, 10, 130, 10, 52, 212, 125, 33, 57, 8, 218, 23, 215, + 68, 48, 235, 85, 15, 69, 28, 187, 213, 241, 6, 72, 61, 9, 108, 19, 249, 2, 148, 35, 72, 103, 93, 160, 213, 201, + 24, 112, 80, 68, 190, 168, 152, 26, 75, 117, 96, 23, 137, 6, 220, 21, 25, 247, 231, 128, 27, 228, 0, 6, 124, 172, + 248, 177, 231, 65, 213, 27, 44, 110, 4, 107, 2, 7, 79, 197, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 563, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1660290930829545142" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17480919898861756251" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb2ade9919b4c0f14bef" + } + ] + }, + "cborHex": "d8669f1b170a89ce13e5ceb69f1bf298b407b6b65f5b4acb2ade9919b4c0f14befffff", + "cborBytes": [ + 216, 102, 159, 27, 23, 10, 137, 206, 19, 229, 206, 182, 159, 27, 242, 152, 180, 7, 182, 182, 95, 91, 74, 203, 42, + 222, 153, 25, 180, 192, 241, 75, 239, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 564, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3026692500486610031" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7abb009efcf0830c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b14a17c885cc6bc099afab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "382672485809985263" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "196e" + }, + { + "_tag": "ByteArray", + "bytearray": "7a8e917e52366957" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18402142118817482950" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fbaa" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b2a00f8cb07d7dc6f9f9fa0bf487abb009efcf0830c4bb14a17c885cc6bc099afab41e51b054f86992e0516efff42196e487a8e917e52366957a0ff1bff618ac2225ec8c642fbaa80ffff", + "cborBytes": [ + 216, 102, 159, 27, 42, 0, 248, 203, 7, 215, 220, 111, 159, 159, 160, 191, 72, 122, 187, 0, 158, 252, 240, 131, 12, + 75, 177, 74, 23, 200, 133, 204, 107, 192, 153, 175, 171, 65, 229, 27, 5, 79, 134, 153, 46, 5, 22, 239, 255, 66, + 25, 110, 72, 122, 142, 145, 126, 82, 54, 105, 87, 160, 255, 27, 255, 97, 138, 194, 34, 94, 200, 198, 66, 251, 170, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 565, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6513967197203030636" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18130444082891959509" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3677058468559566615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0905" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7762262826964547693" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "510cb852da" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10238470541930081523" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10510373408759297390" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15105969726577107992" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13305500853206237854" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17085329754630806671" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf8851" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13002496912468566741" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f96eb643379d63e0ed6a27" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15581586790576450031" + } + } + ] + }, + "cborHex": "d8669f1b5a6642a743d5626c9fd8669f1bfb9c46d58cdbacd59fbf1b33078931fcd5b7174209051b6bb918ea3670f86d45510cb852da1b8e165ab64f0b2cf31b91dc58edcdcf356e1bd1a32f6e746ee4181bb8a6a287ca03c29e1bed1b48e3cf2e5c8f43cf8851ffffffd8669f1bb472260d3ccd62d59f4bf96eb643379d63e0ed6a27ffff1bd83ceaa1993a69efffff", + "cborBytes": [ + 216, 102, 159, 27, 90, 102, 66, 167, 67, 213, 98, 108, 159, 216, 102, 159, 27, 251, 156, 70, 213, 140, 219, 172, + 213, 159, 191, 27, 51, 7, 137, 49, 252, 213, 183, 23, 66, 9, 5, 27, 107, 185, 24, 234, 54, 112, 248, 109, 69, 81, + 12, 184, 82, 218, 27, 142, 22, 90, 182, 79, 11, 44, 243, 27, 145, 220, 88, 237, 205, 207, 53, 110, 27, 209, 163, + 47, 110, 116, 110, 228, 24, 27, 184, 166, 162, 135, 202, 3, 194, 158, 27, 237, 27, 72, 227, 207, 46, 92, 143, 67, + 207, 136, 81, 255, 255, 255, 216, 102, 159, 27, 180, 114, 38, 13, 60, 205, 98, 213, 159, 75, 249, 110, 182, 67, + 55, 157, 99, 224, 237, 106, 39, 255, 255, 27, 216, 60, 234, 161, 153, 58, 105, 239, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 566, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9d21249cdeb0732b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b2014674dd33" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3795955930463556186" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2013203072635754891" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17310099631821376612" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7a" + }, + { + "_tag": "ByteArray", + "bytearray": "db760a08b577" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03236cff2afa457b" + }, + { + "_tag": "ByteArray", + "bytearray": "230604" + }, + { + "_tag": "ByteArray", + "bytearray": "06f981179dbb0504030300" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4070178650102083941" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f489d21249cdeb0732b9f46b2014674dd33d8669f1b34adf1ce9251525a9f1bfffffffffffffff81bfffffffffffffff2ffffffd8669f1b1bf05587352dd98b9f1bf039d3e6fd554c64417a46db760a08b5779f4803236cff2afa457b432306044b06f981179dbb05040303001b387c2deae3b6b165ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 72, 157, 33, 36, 156, 222, 176, 115, 43, 159, 70, + 178, 1, 70, 116, 221, 51, 216, 102, 159, 27, 52, 173, 241, 206, 146, 81, 82, 90, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 248, 27, 255, 255, 255, 255, 255, 255, 255, 242, 255, 255, 255, 216, 102, 159, 27, 27, 240, 85, 135, 53, + 45, 217, 139, 159, 27, 240, 57, 211, 230, 253, 85, 76, 100, 65, 122, 70, 219, 118, 10, 8, 181, 119, 159, 72, 3, + 35, 108, 255, 42, 250, 69, 123, 67, 35, 6, 4, 75, 6, 249, 129, 23, 157, 187, 5, 4, 3, 3, 0, 27, 56, 124, 45, 234, + 227, 182, 177, 101, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 567, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4182192702358817410" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b3a0a221ac6540a829f80ffff", + "cborBytes": [216, 102, 159, 27, 58, 10, 34, 26, 198, 84, 10, 130, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 568, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17719070534000916606" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12571238299498147645" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7296822609172006183" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "562eafec3308713b6f1b14" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9219f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12709830784593419372" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1c1d40" + } + ] + } + ] + }, + "cborHex": "d9050d9f1bf5e6c8c56137387ed8669f1bae7602a0cc5f6f3d9fbf1b65438580b8bc85274b562eafec3308713b6f1b1443b9219f1bb06263c24f03dc6cff431c1d40ffffff", + "cborBytes": [ + 217, 5, 13, 159, 27, 245, 230, 200, 197, 97, 55, 56, 126, 216, 102, 159, 27, 174, 118, 2, 160, 204, 95, 111, 61, + 159, 191, 27, 101, 67, 133, 128, 184, 188, 133, 39, 75, 86, 46, 175, 236, 51, 8, 113, 59, 111, 27, 20, 67, 185, + 33, 159, 27, 176, 98, 99, 194, 79, 3, 220, 108, 255, 67, 28, 29, 64, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 569, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2222474004771658764" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12275265459405993637" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18148865269985352641" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b3041bd5d5aebdae78f753" + }, + { + "_tag": "ByteArray", + "bytearray": "f911063c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b780a36c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "992a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7388836" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2064935991710750600" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b1ed7d05508f45c0c9fd8669f1baa5a80e5ef8436a59fd905099f1bfbddb8ce65e69bc11bfffffffffffffff54bb3041bd5d5aebdae78f75344f911063c0affbf1044b780a36c42992a1244b73888360641ed41d9ffd8669f1b1ca820580dd6978880ffffffd9050780ffff", + "cborBytes": [ + 216, 102, 159, 27, 30, 215, 208, 85, 8, 244, 92, 12, 159, 216, 102, 159, 27, 170, 90, 128, 229, 239, 132, 54, 165, + 159, 217, 5, 9, 159, 27, 251, 221, 184, 206, 101, 230, 155, 193, 27, 255, 255, 255, 255, 255, 255, 255, 245, 75, + 179, 4, 27, 213, 213, 174, 189, 174, 120, 247, 83, 68, 249, 17, 6, 60, 10, 255, 191, 16, 68, 183, 128, 163, 108, + 66, 153, 42, 18, 68, 183, 56, 136, 54, 6, 65, 237, 65, 217, 255, 216, 102, 159, 27, 28, 168, 32, 88, 13, 214, 151, + 136, 128, 255, 255, 255, 217, 5, 7, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 570, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10273517503780851452" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6780718979079830597" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff05bc02" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8528414307758635787" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16955200865795015060" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e409d5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15035717628552060278" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13000692464286617248" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16634664034059520422" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8258300587886564808" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6655323094534358962" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f556fb91f47d26bd0a1cb0" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15871300238931107757" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b8e92ddbcfe9d8efc9fbf1b5e19f3fc55cd7c4544ff05bc021b765b03a09f4ffb0b0bff9fd8669f1beb4cf95add1b819480ff43e409d59f1bd0a9998540ec9d761bb46bbcea67e6cea01be6da32ce041589a6ff1b729b60a15d60d5c8ffd8669f1b5c5c7517d32c87b29f9f4bf556fb91f47d26bd0a1cb0ffd8669f1bdc422f7a410f9fad80ff80ffffd8669f1bfffffffffffffff680ffffff", + "cborBytes": [ + 216, 102, 159, 27, 142, 146, 221, 188, 254, 157, 142, 252, 159, 191, 27, 94, 25, 243, 252, 85, 205, 124, 69, 68, + 255, 5, 188, 2, 27, 118, 91, 3, 160, 159, 79, 251, 11, 11, 255, 159, 216, 102, 159, 27, 235, 76, 249, 90, 221, 27, + 129, 148, 128, 255, 67, 228, 9, 213, 159, 27, 208, 169, 153, 133, 64, 236, 157, 118, 27, 180, 107, 188, 234, 103, + 230, 206, 160, 27, 230, 218, 50, 206, 4, 21, 137, 166, 255, 27, 114, 155, 96, 161, 93, 96, 213, 200, 255, 216, + 102, 159, 27, 92, 92, 117, 23, 211, 44, 135, 178, 159, 159, 75, 245, 86, 251, 145, 244, 125, 38, 189, 10, 28, 176, + 255, 216, 102, 159, 27, 220, 66, 47, 122, 65, 15, 159, 173, 128, 255, 128, 255, 255, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 246, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 571, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2816662225332238501" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16533511372408006071" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ec" + }, + { + "_tag": "ByteArray", + "bytearray": "aedc697bb08fc89ab7d9" + }, + { + "_tag": "ByteArray", + "bytearray": "6574206b2ead7454" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7010716574575747874" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b671fbe4982dd7a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14139023438638234424" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63f556" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7938c11880" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10500697341992934314" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14099621711746411837" + } + } + ] + }, + "cborHex": "d8669f1b2716cb5ee13078a59f9f1be572d4feb242a5b741ec4aaedc697bb08fc89ab7d9486574206b2ead74541b614b11948887e322ffbf482b671fbe4982dd7a1bc437e6e7daf43b384363f5564158457938c118804164ffd8669f1b91b9f898f3609baa80ff1bc3abeb3e6c07ad3dffff", + "cborBytes": [ + 216, 102, 159, 27, 39, 22, 203, 94, 225, 48, 120, 165, 159, 159, 27, 229, 114, 212, 254, 178, 66, 165, 183, 65, + 236, 74, 174, 220, 105, 123, 176, 143, 200, 154, 183, 217, 72, 101, 116, 32, 107, 46, 173, 116, 84, 27, 97, 75, + 17, 148, 136, 135, 227, 34, 255, 191, 72, 43, 103, 31, 190, 73, 130, 221, 122, 27, 196, 55, 230, 231, 218, 244, + 59, 56, 67, 99, 245, 86, 65, 88, 69, 121, 56, 193, 24, 128, 65, 100, 255, 216, 102, 159, 27, 145, 185, 248, 152, + 243, 96, 155, 170, 128, 255, 27, 195, 171, 235, 62, 108, 7, 173, 61, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 572, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0625c18db6848c5d" + }, + { + "_tag": "ByteArray", + "bytearray": "fa2abe09784da3909579053c" + } + ] + }, + "cborHex": "d8799f480625c18db6848c5d4cfa2abe09784da3909579053cff", + "cborBytes": [ + 216, 121, 159, 72, 6, 37, 193, 141, 182, 132, 140, 93, 76, 250, 42, 190, 9, 120, 77, 163, 144, 149, 121, 5, 60, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 573, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12757692649735471473" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15316906944937453905" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "09030738fbc213f900" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12990852561849942079" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "648aa8de0e09a943a5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7667698444023541252" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8454054759960696412" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11139312287144195835" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12447777616469086919" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bb10c6ddf2d1841719fd8669f1bd49095b6c6b5e9519f9f4909030738fbc213f9001bb448c793968a003fffd905069f49648aa8de0e09a943a51b6a69231c10d6ae041b7552d6033f28565c1b9a96c981ad5fb6fb1bacbf63ca80b2d2c7ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 177, 12, 109, 223, 45, 24, 65, 113, 159, 216, 102, 159, 27, 212, 144, 149, 182, 198, 181, 233, + 81, 159, 159, 73, 9, 3, 7, 56, 251, 194, 19, 249, 0, 27, 180, 72, 199, 147, 150, 138, 0, 63, 255, 217, 5, 6, 159, + 73, 100, 138, 168, 222, 14, 9, 169, 67, 165, 27, 106, 105, 35, 28, 16, 214, 174, 4, 27, 117, 82, 214, 3, 63, 40, + 86, 92, 27, 154, 150, 201, 129, 173, 95, 182, 251, 27, 172, 191, 99, 202, 128, 178, 210, 199, 255, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 574, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10741851280759864692" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "ByteArray", + "bytearray": "baae20" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b9512b8d3bbc43d749f1bfffffffffffffff943baae20a080ffff", + "cborBytes": [ + 216, 102, 159, 27, 149, 18, 184, 211, 187, 196, 61, 116, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 67, 186, + 174, 32, 160, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 575, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13883554706543486128" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "85" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10462476455805750721" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0a76617c67ff8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12899478614317120203" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08dc7f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17906747405029695464" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31e5536dd8e8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11913357396281850971" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57bb772d403e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12689569408149162913" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17254913989191124166" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13102693971074504177" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6813898989324530303" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4983958019255055598" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13719975886176664516" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "74a1e25a6819983f" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8996979269324880864" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a689bc83dcf615e352a" + }, + { + "_tag": "ByteArray", + "bytearray": "05fdc074fb5ad9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14513805544150372727" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9029178867837549275" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8565904028418129873" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10712130779579899879" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16394572824154469264" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14796124430539178278" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12461991860537467862" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bc0ac4b72873a24b09f4185bf1b91322ee76b308dc147c0a76617c67ff81bb3042774921ebacb4308dc7f1bf8818be40f715fe84631e5536dd8e8ff9fbf1ba554bf6ea7a6fc5b4657bb772d403e1bb01a6824fd650ba11bef75c4da4ba7c4c6ffd8669f1bb5d61ebee28c55f19f1b5e8fd5077a14f27f1b452a9369912834eeffffffd8669f1bbe6725607e7c3bc49f4874a1e25a6819983f80ffffd8669f1b7cdbb0fa37a9bbe09fa09f4a6a689bc83dcf615e352a4705fdc074fb5ad91bc96b653eb62d91771b7d4e165776ebbadbff9f1b76e0345469f33fd1ff9f1b94a9223050635fe71be385391f13fff3901bcd5664c6bec441261bacf1e392192523d6ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 192, 172, 75, 114, 135, 58, 36, 176, 159, 65, 133, 191, 27, 145, 50, 46, 231, 107, 48, 141, + 193, 71, 192, 167, 102, 23, 198, 127, 248, 27, 179, 4, 39, 116, 146, 30, 186, 203, 67, 8, 220, 127, 27, 248, 129, + 139, 228, 15, 113, 95, 232, 70, 49, 229, 83, 109, 216, 232, 255, 159, 191, 27, 165, 84, 191, 110, 167, 166, 252, + 91, 70, 87, 187, 119, 45, 64, 62, 27, 176, 26, 104, 36, 253, 101, 11, 161, 27, 239, 117, 196, 218, 75, 167, 196, + 198, 255, 216, 102, 159, 27, 181, 214, 30, 190, 226, 140, 85, 241, 159, 27, 94, 143, 213, 7, 122, 20, 242, 127, + 27, 69, 42, 147, 105, 145, 40, 52, 238, 255, 255, 255, 216, 102, 159, 27, 190, 103, 37, 96, 126, 124, 59, 196, + 159, 72, 116, 161, 226, 90, 104, 25, 152, 63, 128, 255, 255, 216, 102, 159, 27, 124, 219, 176, 250, 55, 169, 187, + 224, 159, 160, 159, 74, 106, 104, 155, 200, 61, 207, 97, 94, 53, 42, 71, 5, 253, 192, 116, 251, 90, 217, 27, 201, + 107, 101, 62, 182, 45, 145, 119, 27, 125, 78, 22, 87, 118, 235, 186, 219, 255, 159, 27, 118, 224, 52, 84, 105, + 243, 63, 209, 255, 159, 27, 148, 169, 34, 48, 80, 99, 95, 231, 27, 227, 133, 57, 31, 19, 255, 243, 144, 27, 205, + 86, 100, 198, 190, 196, 65, 38, 27, 172, 241, 227, 146, 25, 37, 35, 214, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 576, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c468e629" + }, + { + "_tag": "ByteArray", + "bytearray": "b2cf8758cda2fe2327c6c8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17633311327314829488" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "493dc1256a65e589cb2f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "118387eace8d9f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c7aa77f" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "19fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8206338803782604977" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f9f9f44c468e6294bb2cf8758cda2fe2327c6c81bf4b61b3a1678e0b0ffbf4a493dc1256a65e589cb2f47118387eace8d9f41a7445c7aa77fff4219fb1b71e2c5a9b9f758b1ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 159, 159, 68, 196, 104, 230, 41, 75, 178, 207, + 135, 88, 205, 162, 254, 35, 39, 198, 200, 27, 244, 182, 27, 58, 22, 120, 224, 176, 255, 191, 74, 73, 61, 193, 37, + 106, 101, 229, 137, 203, 47, 71, 17, 131, 135, 234, 206, 141, 159, 65, 167, 68, 92, 122, 167, 127, 255, 66, 25, + 251, 27, 113, 226, 197, 169, 185, 247, 88, 177, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 577, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "891103210135792163" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03b4fe03fc80fefaad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c343e78" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07037705fa2f6a072b69" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4f83a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e67d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3061c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "062c" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b0c5dd5a5fa5aaa239fbf4903b4fe03fc80fefaad449c343e784a07037705fa2f6a072b6943c4f83a434e67d61143b3061c42062cffffff", + "cborBytes": [ + 216, 102, 159, 27, 12, 93, 213, 165, 250, 90, 170, 35, 159, 191, 73, 3, 180, 254, 3, 252, 128, 254, 250, 173, 68, + 156, 52, 62, 120, 74, 7, 3, 119, 5, 250, 47, 106, 7, 43, 105, 67, 196, 248, 58, 67, 78, 103, 214, 17, 67, 179, 6, + 28, 66, 6, 44, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 578, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7941506115201731684" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "892b" + }, + { + "_tag": "ByteArray", + "bytearray": "5a26c4c982268f2000" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9949480304231815317" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b6e35e5bc62310c649f42892b495a26c4c982268f20001b8a13a79f417b9895a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 110, 53, 229, 188, 98, 49, 12, 100, 159, 66, 137, 43, 73, 90, 38, 196, 201, 130, 38, 143, 32, + 0, 27, 138, 19, 167, 159, 65, 123, 152, 149, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 579, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "428b588e6cd4465c946b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8163174810386307408" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7df048ad3fc21a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7513668337366958508" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "591189409702713849" + } + } + ] + } + ] + }, + "cborHex": "d905059f9fa0bf4a428b588e6cd4465c946b1b71496c3d5c7e1950477df048ad3fc21a1b6845e98b30db81acff1b083453a2c84d99f9ffff", + "cborBytes": [ + 217, 5, 5, 159, 159, 160, 191, 74, 66, 139, 88, 142, 108, 212, 70, 92, 148, 107, 27, 113, 73, 108, 61, 92, 126, + 25, 80, 71, 125, 240, 72, 173, 63, 194, 26, 27, 104, 69, 233, 139, 48, 219, 129, 172, 255, 27, 8, 52, 83, 162, + 200, 77, 153, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 580, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12007812400523722757" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "350072844635410738" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12393555805173352444" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15370748760380952226" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "034c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17723489789374504096" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12884395270140248797" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + "cborHex": "d9050d9fbf131bfffffffffffffff81ba6a451c216bf40051b04dbb565be0111321babfec157475687fc011bd54fde8f52484ea242034c1bf5f67c0f73ee1ca01bb2ce913bd66ec2ddff04ff", + "cborBytes": [ + 217, 5, 13, 159, 191, 19, 27, 255, 255, 255, 255, 255, 255, 255, 248, 27, 166, 164, 81, 194, 22, 191, 64, 5, 27, + 4, 219, 181, 101, 190, 1, 17, 50, 27, 171, 254, 193, 87, 71, 86, 135, 252, 1, 27, 213, 79, 222, 143, 82, 72, 78, + 162, 66, 3, 76, 27, 245, 246, 124, 15, 115, 238, 28, 160, 27, 178, 206, 145, 59, 214, 110, 194, 221, 255, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 581, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10489408012596231921" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b7020bd18c" + }, + { + "_tag": "ByteArray", + "bytearray": "75a6aa59e0fcae" + } + ] + } + ] + }, + "cborHex": "d9050d9f418ad8669f1b9191dd031eef3ef19f45b7020bd18c4775a6aa59e0fcaeffffff", + "cborBytes": [ + 217, 5, 13, 159, 65, 138, 216, 102, 159, 27, 145, 145, 221, 3, 30, 239, 62, 241, 159, 69, 183, 2, 11, 209, 140, + 71, 117, 166, 170, 89, 224, 252, 174, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 582, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [] + }, + "cborHex": "d8669f1bffffffffffffffef80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 583, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10606715789061979193" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15627355680000371506" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7599994848093115987" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "285117622473435980" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7807743698270012859" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d75c1d3" + }, + { + "_tag": "ByteArray", + "bytearray": "223d132cc4a05a83" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3648809742564884715" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7484464454379223364" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6138101695615029799" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87a9f1b93329fd03890fc399f9f1bd8df8531951aeb321b69789b0c3f639653ff1b03f4f0f78ebbab4c9f1b6c5aad86c0adc5bb446d75c1d348223d132cc4a05a831b32a32d20ee9080ebff9f1b67de28c4514fb9441b552eeaf89a5b5227ffffff", + "cborBytes": [ + 216, 122, 159, 27, 147, 50, 159, 208, 56, 144, 252, 57, 159, 159, 27, 216, 223, 133, 49, 149, 26, 235, 50, 27, + 105, 120, 155, 12, 63, 99, 150, 83, 255, 27, 3, 244, 240, 247, 142, 187, 171, 76, 159, 27, 108, 90, 173, 134, 192, + 173, 197, 187, 68, 109, 117, 193, 211, 72, 34, 61, 19, 44, 196, 160, 90, 131, 27, 50, 163, 45, 32, 238, 144, 128, + 235, 255, 159, 27, 103, 222, 40, 196, 81, 79, 185, 68, 27, 85, 46, 234, 248, 154, 91, 82, 39, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 584, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5275681735669693691" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "99803630" + } + ] + }, + "cborHex": "d8669f1b4936fc963a9bbcfb9f4499803630ffff", + "cborBytes": [216, 102, 159, 27, 73, 54, 252, 150, 58, 155, 188, 251, 159, 68, 153, 128, 54, 48, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 585, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3150154882834396796" + }, + "fields": [] + }, + "cborHex": "d8669f1b2bb7992cface767c80ff", + "cborBytes": [216, 102, 159, 27, 43, 183, 153, 44, 250, 206, 118, 124, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 586, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "862928983051294154" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b9725a5d" + }, + { + "_tag": "ByteArray", + "bytearray": "f558f317c6acab3198ed09" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6139314909667603464" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7498853570096419520" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15724322923053647602" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1026695008591195076" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4af17b3bd732" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6628307677666764748" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11683859299782496716" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8202084719561029440" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d86f5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12390293077882093497" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3026670507475091030" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13248293716930954840" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17121101126882844738" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ffa4bd1e9f13418a833" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15425070638285289816" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0c9490bc920" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17311021580236107518" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2526692988344270462" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1896253154880409646" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18137182157896800864" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2594865405900897616" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12676112315257546755" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11235759672324644044" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5053045885858529062" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8556169353516233287" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4843533184576818309" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5444204130498046087" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17017230408768349461" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5158490511244606875" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2162838547287079124" + } + }, + { + "_tag": "ByteArray", + "bytearray": "76a9f6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12108004900493263415" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3732274246240410414" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8998914777528954689" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf0a60b955c289e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14214043240535844008" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b0bf9bd568d2955ca9f9f9f44b9725a5d4bf558f317c6acab3198ed091b55333a6202ff34081b68114797644452c0ff1bda380463322506f2bf1b0e3f8dabafbeabc4464af17b3bd7321b5bfc7ab6ed5267cc1ba2256821212e11cc1b71d3a8988f183740432d86f51babf329e86224bfb91b2a00e4ca62343e561bb7db64f16db58658418d1bed9a5ec36f6460424a6ffa4bd1e9f13418a833ffd8669f1bd610dc051e4d79589f46c0c9490bc9201bf03d1a68d5182efe1b23109de2cabafe7e1b1a50d83294dc502e1bfbb43713e3fdda60ffffd8669f1b2402d056a6ac3d509f1bafea98fd63e168031b9bed6fe47291dcccffffffd8669f1b462006760458bf269f1b76bd9eb1ca6b3247d8669f1b4337afc4ec848c859f1b4b8db2cfe30ce887ffff9f1bec2958e5479ce515ffffff9f9f1b4796a3ca03f53d9b1b1e03f233159178d44376a9f61ba808464e58970237ff1b33cbb3a70b7f9b2e417f1b7ce2914fd6a06f41a0ffbf48cf0a60b955c289e81bc5426d049e2e64a8ffffff", + "cborBytes": [ + 216, 102, 159, 27, 11, 249, 189, 86, 141, 41, 85, 202, 159, 159, 159, 68, 185, 114, 90, 93, 75, 245, 88, 243, 23, + 198, 172, 171, 49, 152, 237, 9, 27, 85, 51, 58, 98, 2, 255, 52, 8, 27, 104, 17, 71, 151, 100, 68, 82, 192, 255, + 27, 218, 56, 4, 99, 50, 37, 6, 242, 191, 27, 14, 63, 141, 171, 175, 190, 171, 196, 70, 74, 241, 123, 59, 215, 50, + 27, 91, 252, 122, 182, 237, 82, 103, 204, 27, 162, 37, 104, 33, 33, 46, 17, 204, 27, 113, 211, 168, 152, 143, 24, + 55, 64, 67, 45, 134, 245, 27, 171, 243, 41, 232, 98, 36, 191, 185, 27, 42, 0, 228, 202, 98, 52, 62, 86, 27, 183, + 219, 100, 241, 109, 181, 134, 88, 65, 141, 27, 237, 154, 94, 195, 111, 100, 96, 66, 74, 111, 250, 75, 209, 233, + 241, 52, 24, 168, 51, 255, 216, 102, 159, 27, 214, 16, 220, 5, 30, 77, 121, 88, 159, 70, 192, 201, 73, 11, 201, + 32, 27, 240, 61, 26, 104, 213, 24, 46, 254, 27, 35, 16, 157, 226, 202, 186, 254, 126, 27, 26, 80, 216, 50, 148, + 220, 80, 46, 27, 251, 180, 55, 19, 227, 253, 218, 96, 255, 255, 216, 102, 159, 27, 36, 2, 208, 86, 166, 172, 61, + 80, 159, 27, 175, 234, 152, 253, 99, 225, 104, 3, 27, 155, 237, 111, 228, 114, 145, 220, 204, 255, 255, 255, 216, + 102, 159, 27, 70, 32, 6, 118, 4, 88, 191, 38, 159, 27, 118, 189, 158, 177, 202, 107, 50, 71, 216, 102, 159, 27, + 67, 55, 175, 196, 236, 132, 140, 133, 159, 27, 75, 141, 178, 207, 227, 12, 232, 135, 255, 255, 159, 27, 236, 41, + 88, 229, 71, 156, 229, 21, 255, 255, 255, 159, 159, 27, 71, 150, 163, 202, 3, 245, 61, 155, 27, 30, 3, 242, 51, + 21, 145, 120, 212, 67, 118, 169, 246, 27, 168, 8, 70, 78, 88, 151, 2, 55, 255, 27, 51, 203, 179, 167, 11, 127, + 155, 46, 65, 127, 27, 124, 226, 145, 79, 214, 160, 111, 65, 160, 255, 191, 72, 207, 10, 96, 185, 85, 194, 137, + 232, 27, 197, 66, 109, 4, 158, 46, 100, 168, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 587, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4018592166282128843" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e3d5d855777bb8f9c814" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b37c4e848a869edcb9f4ae3d5d855777bb8f9c814a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 55, 196, 232, 72, 168, 105, 237, 203, 159, 74, 227, 213, 216, 85, 119, 123, 184, 249, 200, 20, + 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 588, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c4c2ed3679d" + } + ] + }, + "cborHex": "d87b9f467c4c2ed3679dff", + "cborBytes": [216, 123, 159, 70, 124, 76, 46, 211, 103, 157, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 589, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13979848109528642743" + }, + "fields": [] + }, + "cborHex": "d8669f1bc20265c9865ef4b780ff", + "cborBytes": [216, 102, 159, 27, 194, 2, 101, 201, 134, 94, 244, 183, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 590, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1990319694953869269" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13d9fabdff3b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "982148f6ad022cf348" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cb0226c2af27c05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10732050181315963301" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5585ba27761337aeee3647e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82fad06f836f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc8a5b4c02bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad91371273" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3b911114abd79" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9936798763280384319" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2ff5368fc540fef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7d24a7d623458" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6403124953153963705" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4337613149155759424" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ca2f1ecd7a" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b1b9f0937a7306fd59fbf4613d9fabdff3b49982148f6ad022cf348484cb0226c2af27c051b94efe6c7710129a54c5585ba27761337aeee3647e24682fad06f836f46cc8a5b4c02bc45ad9137127347d3b911114abd791b89e699d3e9de413f48e2ff5368fc540fef47c7d24a7d623458ffd8669f1bfffffffffffffff69f1b58dc78383d2e86b9089f1b3c324c2d707e154045ca2f1ecd7affffffffff", + "cborBytes": [ + 216, 102, 159, 27, 27, 159, 9, 55, 167, 48, 111, 213, 159, 191, 70, 19, 217, 250, 189, 255, 59, 73, 152, 33, 72, + 246, 173, 2, 44, 243, 72, 72, 76, 176, 34, 108, 42, 242, 124, 5, 27, 148, 239, 230, 199, 113, 1, 41, 165, 76, 85, + 133, 186, 39, 118, 19, 55, 174, 238, 54, 71, 226, 70, 130, 250, 208, 111, 131, 111, 70, 204, 138, 91, 76, 2, 188, + 69, 173, 145, 55, 18, 115, 71, 211, 185, 17, 17, 74, 189, 121, 27, 137, 230, 153, 211, 233, 222, 65, 63, 72, 226, + 255, 83, 104, 252, 84, 15, 239, 71, 199, 210, 74, 125, 98, 52, 88, 255, 216, 102, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 246, 159, 27, 88, 220, 120, 56, 61, 46, 134, 185, 8, 159, 27, 60, 50, 76, 45, 112, 126, 21, 64, 69, + 202, 47, 30, 205, 122, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 591, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9142cfe8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddb3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13805960024955727835" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4d7363012" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4baf785218a791" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff624d832e273f24b048f2" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4585720270341782289" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9500628021009722792" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "760fa6d4179f70c37b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8086812533511037587" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "daf958103fb8cb8467909e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14918857484033209381" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6102874079937540870" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1233912746516251502" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8700423924697388062" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9273609749114772089" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5335104386008608461" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11274682528119595765" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6fbbc15c7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15173868989206149520" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0591becab788180d86a9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17156202422871868355" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e980b91" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "78cf" + }, + { + "_tag": "ByteArray", + "bytearray": "0de9d11949" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f449142cfe8bf42ddb31bbf989f7edebaafdbffbf45b4d7363012474baf785218a79141d34bff624d832e273f24b048f2ff1b3fa3c04a2907bb11d8669f1b83d902d93f682da89fbf49760fa6d4179f70c37b1b703a2127491a22934bdaf958103fb8cb8467909e1bcf0a6dd6967a3425ff1b54b1c3a42b9db306bf1b111fbd1afbed836e1b78be1d7672e5d41e1b80b27aeee195da791b4a0a192c27abeecd1b9c77b80603df22f545e6fbbc15c71bd294697379f2b9904a0591becab788180d86a91bee171334c5f943c3443e980b91ff9f4278cf450de9d11949ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 68, 145, 66, 207, 232, 191, 66, 221, 179, 27, 191, + 152, 159, 126, 222, 186, 175, 219, 255, 191, 69, 180, 215, 54, 48, 18, 71, 75, 175, 120, 82, 24, 167, 145, 65, + 211, 75, 255, 98, 77, 131, 46, 39, 63, 36, 176, 72, 242, 255, 27, 63, 163, 192, 74, 41, 7, 187, 17, 216, 102, 159, + 27, 131, 217, 2, 217, 63, 104, 45, 168, 159, 191, 73, 118, 15, 166, 212, 23, 159, 112, 195, 123, 27, 112, 58, 33, + 39, 73, 26, 34, 147, 75, 218, 249, 88, 16, 63, 184, 203, 132, 103, 144, 158, 27, 207, 10, 109, 214, 150, 122, 52, + 37, 255, 27, 84, 177, 195, 164, 43, 157, 179, 6, 191, 27, 17, 31, 189, 26, 251, 237, 131, 110, 27, 120, 190, 29, + 118, 114, 229, 212, 30, 27, 128, 178, 122, 238, 225, 149, 218, 121, 27, 74, 10, 25, 44, 39, 171, 238, 205, 27, + 156, 119, 184, 6, 3, 223, 34, 245, 69, 230, 251, 188, 21, 199, 27, 210, 148, 105, 115, 121, 242, 185, 144, 74, 5, + 145, 190, 202, 183, 136, 24, 13, 134, 169, 27, 238, 23, 19, 52, 197, 249, 67, 195, 68, 62, 152, 11, 145, 255, 159, + 66, 120, 207, 69, 13, 233, 209, 25, 73, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 592, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16085887439101188734" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10910443210825675215" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17296539708695606871" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10587018298745684745" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7427428911989889023" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7314765098247374241" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5596146171852424427" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5708061721839116403" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f54070" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9187766957675225851" + } + } + ] + }, + "cborHex": "d8669f1bdf3c8d66308b5a7e9f809f1b9769ae4b535631cfd8669f1bf009a7395c3d76579f1b92eca50cdf4c03091b6713873e459f97ff1b6583441a0075c5a1ffffff1b4da9814b2c6d04ebbf1b4f371be4b639a07343f54070ff1b7f81815e7f4da2fbffff", + "cborBytes": [ + 216, 102, 159, 27, 223, 60, 141, 102, 48, 139, 90, 126, 159, 128, 159, 27, 151, 105, 174, 75, 83, 86, 49, 207, + 216, 102, 159, 27, 240, 9, 167, 57, 92, 61, 118, 87, 159, 27, 146, 236, 165, 12, 223, 76, 3, 9, 27, 103, 19, 135, + 62, 69, 159, 151, 255, 27, 101, 131, 68, 26, 0, 117, 197, 161, 255, 255, 255, 27, 77, 169, 129, 75, 44, 109, 4, + 235, 191, 27, 79, 55, 27, 228, 182, 57, 160, 115, 67, 245, 64, 112, 255, 27, 127, 129, 129, 94, 127, 77, 162, 251, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 593, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fa33898f7f2a" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9fa046fa33898f7f2affff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 160, 70, 250, 51, 137, 143, 127, 42, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 594, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15516955684371293720" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1d5242" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89fd8669f1bd7574cfb8a6de6189f9f431d5242ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 216, 102, 159, 27, 215, 87, 76, 251, 138, 109, + 230, 24, 159, 159, 67, 29, 82, 66, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 595, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "018796fd0ad519c3" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4927515569183115188" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1ba77692c6bb0c54" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7513952329360565635" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f3059d53" + }, + { + "_tag": "ByteArray", + "bytearray": "47cba3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6888385301844742890" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10413066286691446826" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "744c02b5bef8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5394769813863536999" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16596682541769493831" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f166a535bb953b02d0b19e" + }, + { + "_tag": "ByteArray", + "bytearray": "147ce1dd1175c7603d" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f9f9f48018796fd0ad519c3ff1b44620d4d965dc7b4481ba77692c6bb0c54d8669f1b6846ebd53ac165839f44f3059d534347cba31b5f9875ef907a52ea1b9082a49df0d6f02affff46744c02b5bef8ff1b4ade1290205619671be65342d6b8190d474bf166a535bb953b02d0b19e49147ce1dd1175c7603dffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 159, 159, 72, 1, 135, 150, 253, 10, 213, 25, 195, + 255, 27, 68, 98, 13, 77, 150, 93, 199, 180, 72, 27, 167, 118, 146, 198, 187, 12, 84, 216, 102, 159, 27, 104, 70, + 235, 213, 58, 193, 101, 131, 159, 68, 243, 5, 157, 83, 67, 71, 203, 163, 27, 95, 152, 117, 239, 144, 122, 82, 234, + 27, 144, 130, 164, 157, 240, 214, 240, 42, 255, 255, 70, 116, 76, 2, 181, 190, 248, 255, 27, 74, 222, 18, 144, 32, + 86, 25, 103, 27, 230, 83, 66, 214, 184, 25, 13, 71, 75, 241, 102, 165, 53, 187, 149, 59, 2, 208, 177, 158, 73, 20, + 124, 225, 221, 17, 117, 199, 96, 61, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 596, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "411030441582078327" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11366619349176346670" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15587145256546098176" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7097726227234040314" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16977281725809602175" + } + }, + { + "_tag": "ByteArray", + "bytearray": "13a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2905906507332423407" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a19919637e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3213699999760193373" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fb0111" + }, + { + "_tag": "ByteArray", + "bytearray": "5e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15422145539374346842" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2a6f" + }, + { + "_tag": "ByteArray", + "bytearray": "30cc33b2fcd0afbf83256e47" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13443673708304642191" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4d1ebcf1a06a55" + }, + { + "_tag": "ByteArray", + "bytearray": "15852797df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1123325436253723935" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2877051751869266912" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b05b44602465f29779fd8669f1b9dbe58133cbce82e9f9f1bd850aa06ced85c001b62803065f74229faff9f1beb9b6bc7b69cae7f4213a81b2853da92800b8eefff9f45a19919637eff9f041b2c995b1f7461175d0343fb0111415eff09ffffd87e80d8669f1bd60677a874c8725a9f9f422a6f4c30cc33b2fcd0afbf83256e471bba91860293c1b08fff9f474d1ebcf1a06a554515852797df1b0f96da885b105d1f1b27ed575336953be0ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 5, 180, 70, 2, 70, 95, 41, 119, 159, 216, 102, 159, 27, 157, 190, 88, 19, 60, 188, 232, 46, + 159, 159, 27, 216, 80, 170, 6, 206, 216, 92, 0, 27, 98, 128, 48, 101, 247, 66, 41, 250, 255, 159, 27, 235, 155, + 107, 199, 182, 156, 174, 127, 66, 19, 168, 27, 40, 83, 218, 146, 128, 11, 142, 239, 255, 159, 69, 161, 153, 25, + 99, 126, 255, 159, 4, 27, 44, 153, 91, 31, 116, 97, 23, 93, 3, 67, 251, 1, 17, 65, 94, 255, 9, 255, 255, 216, 126, + 128, 216, 102, 159, 27, 214, 6, 119, 168, 116, 200, 114, 90, 159, 159, 66, 42, 111, 76, 48, 204, 51, 178, 252, + 208, 175, 191, 131, 37, 110, 71, 27, 186, 145, 134, 2, 147, 193, 176, 143, 255, 159, 71, 77, 30, 188, 241, 160, + 106, 85, 69, 21, 133, 39, 151, 223, 27, 15, 150, 218, 136, 91, 16, 93, 31, 27, 39, 237, 87, 83, 54, 149, 59, 224, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 597, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f4107d8669f1bfffffffffffffffb80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 65, 7, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 251, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 598, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07d164be395094733b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12227017257004872067" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ab1b918c33f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16814381473623675616" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40b3ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e543375ddcf66ee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "911928c246d94e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b76448898" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6259b2d2dad1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e52084edaa85d8c223" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "115c686c" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "745e3149de324956a461" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "efc1c0775f9d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9282789965393204112" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1485698442921247756" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f6c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3e1f274c25e370" + }, + { + "_tag": "ByteArray", + "bytearray": "33b163b879eb69" + }, + { + "_tag": "ByteArray", + "bytearray": "26fb593d3cde772ae8453f3e" + }, + { + "_tag": "ByteArray", + "bytearray": "e9" + } + ] + } + ] + } + ] + }, + "cborHex": "d905009fbf4907d164be395094733b1ba9af1769ea58b183460ab1b918c33f1be958aedd253f92e04340b3ed486e543375ddcf66ee47911928c246d94e455b7644889841e0466259b2d2dad149e52084edaa85d8c22344115c686cff4a745e3149de324956a461bf46efc1c0775f9d1b80d3184a8bd29390ff9f9f1b149e42dcbdac040c428f6cff9f473e1f274c25e3704733b163b879eb694c26fb593d3cde772ae8453f3e41e9ffffff", + "cborBytes": [ + 217, 5, 0, 159, 191, 73, 7, 209, 100, 190, 57, 80, 148, 115, 59, 27, 169, 175, 23, 105, 234, 88, 177, 131, 70, 10, + 177, 185, 24, 195, 63, 27, 233, 88, 174, 221, 37, 63, 146, 224, 67, 64, 179, 237, 72, 110, 84, 51, 117, 221, 207, + 102, 238, 71, 145, 25, 40, 194, 70, 217, 78, 69, 91, 118, 68, 136, 152, 65, 224, 70, 98, 89, 178, 210, 218, 209, + 73, 229, 32, 132, 237, 170, 133, 216, 194, 35, 68, 17, 92, 104, 108, 255, 74, 116, 94, 49, 73, 222, 50, 73, 86, + 164, 97, 191, 70, 239, 193, 192, 119, 95, 157, 27, 128, 211, 24, 74, 139, 210, 147, 144, 255, 159, 159, 27, 20, + 158, 66, 220, 189, 172, 4, 12, 66, 143, 108, 255, 159, 71, 62, 31, 39, 76, 37, 227, 112, 71, 51, 177, 99, 184, + 121, 235, 105, 76, 38, 251, 89, 61, 60, 222, 119, 42, 232, 69, 63, 62, 65, 233, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 599, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1342284985339406946" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f1b12a0c1151a7eea62ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 27, 18, 160, 193, 21, 26, 126, 234, 98, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 600, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9261693528541256901" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14252856071802372069" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17274901632038018883" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2442348270629467713" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3377578224636928009" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4875825664461740945" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6845086545203289925" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16658287887876379739" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6505077301566a389dd0b45a" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12515435913411460163" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1067983439332778357" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9221812255322375468" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9988203717661408048" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3954556240604649002" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f585fffc919a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce50f833786e8de39a8c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b32db795" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13986d7e5224cc2c7b6df0b4" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "6a" + } + ] + }, + "cborHex": "d905069fa0d8669f1b80882531933c5cc59fd8669f1bc5cc51151a8cbfe59f1befbcc7820b711f431b21e4f6cfe0a8b641ffffbf1b2edf918008942009419c1b43aa699bccf99b911b5efea1f22fa5df451be72e20931b10545b4c6505077301566a389dd0b45aff1badafc2a7540e7c43bf1b0ed23d47976e21751b7ffa75630fd5852c1b8a9d3a5c8771bb301b36e167f2dd8b562a475f585fffc919a24ace50f833786e8de39a8c44b32db7954c13986d7e5224cc2c7b6df0b4ffffffa0416aff", + "cborBytes": [ + 217, 5, 6, 159, 160, 216, 102, 159, 27, 128, 136, 37, 49, 147, 60, 92, 197, 159, 216, 102, 159, 27, 197, 204, 81, + 21, 26, 140, 191, 229, 159, 27, 239, 188, 199, 130, 11, 113, 31, 67, 27, 33, 228, 246, 207, 224, 168, 182, 65, + 255, 255, 191, 27, 46, 223, 145, 128, 8, 148, 32, 9, 65, 156, 27, 67, 170, 105, 155, 204, 249, 155, 145, 27, 94, + 254, 161, 242, 47, 165, 223, 69, 27, 231, 46, 32, 147, 27, 16, 84, 91, 76, 101, 5, 7, 115, 1, 86, 106, 56, 157, + 208, 180, 90, 255, 27, 173, 175, 194, 167, 84, 14, 124, 67, 191, 27, 14, 210, 61, 71, 151, 110, 33, 117, 27, 127, + 250, 117, 99, 15, 213, 133, 44, 27, 138, 157, 58, 92, 135, 113, 187, 48, 27, 54, 225, 103, 242, 221, 139, 86, 42, + 71, 95, 88, 95, 255, 201, 25, 162, 74, 206, 80, 248, 51, 120, 110, 141, 227, 154, 140, 68, 179, 45, 183, 149, 76, + 19, 152, 109, 126, 82, 36, 204, 44, 123, 109, 240, 180, 255, 255, 255, 160, 65, 106, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 601, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18403448284277528202" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "560409181394444120" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea6bb473910b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18289675259770270142" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9073980304771232868" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2288767291108676413" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10243189644600849436" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bff662eb57aa2568a9f9f9f1b07c6f92e69e21f5846ea6bb473910b1bfdd1fabef3db71be41ffff9f1b7ded4102dcc7b4641b1fc355b99010d33d1b8e271eb60564b41cffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 102, 46, 181, 122, 162, 86, 138, 159, 159, 159, 27, 7, 198, 249, 46, 105, 226, 31, 88, 70, + 234, 107, 180, 115, 145, 11, 27, 253, 209, 250, 190, 243, 219, 113, 190, 65, 255, 255, 159, 27, 125, 237, 65, 2, + 220, 199, 180, 100, 27, 31, 195, 85, 185, 144, 16, 211, 61, 27, 142, 39, 30, 182, 5, 100, 180, 28, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 602, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9755574489725445679" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ba5e637935cd2e89906c21" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15047834157834055983" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9627351903475602825" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3546081306903159670" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "121a5a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4842444970839370660" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eda5cbd852c6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5394141613025936123" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e8554f835" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5521268073402233271" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5614211566656033045" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5571666122845681826" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5db" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7175773889115346180" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71f6624401d6" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7bf6b23ffabce4d91c54c759" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4672588341223901545" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "039fc65dce5dc012bf4c67" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1226719423974860877" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17310593505526230934" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3171933736099168710" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8057443165740345920" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4705d4b501dc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8332983211526167008" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16601289373724395353" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0230" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c3146e8dc1a96" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29e539ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13756586958251436747" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c4c30e11535bc8f83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17137431500914961721" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b601a6823a6b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12682179567835792380" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f15198968e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16025406670637944648" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8762c34fa7f2a62f9f9f4bba5e637935cd2e89906c211bd0d4a57090b0312fffd8669f1b859b398c5e5815899fbf1b31363629229da37643121a5a1b4333d20b6b41eba446eda5cbd852c61b4adbd737b89042fb451e8554f8351b4c9f7c0f50d871b71b4de9afacac6c11151b4d5288d19b4b78a242f5db1b63957855513e55044671f6624401d6ff4c7bf6b23ffabce4d91c54c759d8669f1b40d85e57044849699f4b039fc65dce5dc012bf4c67ffffffffbf1b11062ed11117e84d1bf03b9513ec132f961b2c04f8ed6744c1c61b6fd1c9de7bda2a40464705d4b501dc1b73a4b414b24f99e0ff1be663a0ba5e4f4759bf420230478c3146e8dc1a964429e539ea1bbee936f3f8592acb492c4c30e11535bc8f831bedd46326eea02d3946b601a6823a6b1bb000271fb691c3fc45f15198968e1bde65ae75f08ccf48ffffff", + "cborBytes": [ + 216, 102, 159, 27, 135, 98, 195, 79, 167, 242, 166, 47, 159, 159, 75, 186, 94, 99, 121, 53, 205, 46, 137, 144, + 108, 33, 27, 208, 212, 165, 112, 144, 176, 49, 47, 255, 216, 102, 159, 27, 133, 155, 57, 140, 94, 88, 21, 137, + 159, 191, 27, 49, 54, 54, 41, 34, 157, 163, 118, 67, 18, 26, 90, 27, 67, 51, 210, 11, 107, 65, 235, 164, 70, 237, + 165, 203, 216, 82, 198, 27, 74, 219, 215, 55, 184, 144, 66, 251, 69, 30, 133, 84, 248, 53, 27, 76, 159, 124, 15, + 80, 216, 113, 183, 27, 77, 233, 175, 172, 172, 108, 17, 21, 27, 77, 82, 136, 209, 155, 75, 120, 162, 66, 245, 219, + 27, 99, 149, 120, 85, 81, 62, 85, 4, 70, 113, 246, 98, 68, 1, 214, 255, 76, 123, 246, 178, 63, 250, 188, 228, 217, + 28, 84, 199, 89, 216, 102, 159, 27, 64, 216, 94, 87, 4, 72, 73, 105, 159, 75, 3, 159, 198, 93, 206, 93, 192, 18, + 191, 76, 103, 255, 255, 255, 255, 191, 27, 17, 6, 46, 209, 17, 23, 232, 77, 27, 240, 59, 149, 19, 236, 19, 47, + 150, 27, 44, 4, 248, 237, 103, 68, 193, 198, 27, 111, 209, 201, 222, 123, 218, 42, 64, 70, 71, 5, 212, 181, 1, + 220, 27, 115, 164, 180, 20, 178, 79, 153, 224, 255, 27, 230, 99, 160, 186, 94, 79, 71, 89, 191, 66, 2, 48, 71, + 140, 49, 70, 232, 220, 26, 150, 68, 41, 229, 57, 234, 27, 190, 233, 54, 243, 248, 89, 42, 203, 73, 44, 76, 48, + 225, 21, 53, 188, 143, 131, 27, 237, 212, 99, 38, 238, 160, 45, 57, 70, 182, 1, 166, 130, 58, 107, 27, 176, 0, 39, + 31, 182, 145, 195, 252, 69, 241, 81, 152, 150, 142, 27, 222, 101, 174, 117, 240, 140, 207, 72, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 603, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "41206a5a9e4110" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9098913246048692170" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5390762723732890844" + } + }, + { + "_tag": "ByteArray", + "bytearray": "688f29657503" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2291455530567447253" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8443203086430866507" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5829255834432133761" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49bd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5335746604564977387" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905059f9f4741206a5a9e41101b7e45d563a0d427ca9f1b4acfd622c08424dc46688f29657503ffbf1b1fcce2aa1613b2d51b752c48791d318c4b1b50e5ad4bf4335a814249bd411e1b4a0c6144509796ebffffff", + "cborBytes": [ + 217, 5, 5, 159, 159, 71, 65, 32, 106, 90, 158, 65, 16, 27, 126, 69, 213, 99, 160, 212, 39, 202, 159, 27, 74, 207, + 214, 34, 192, 132, 36, 220, 70, 104, 143, 41, 101, 117, 3, 255, 191, 27, 31, 204, 226, 170, 22, 19, 178, 213, 27, + 117, 44, 72, 121, 29, 49, 140, 75, 27, 80, 229, 173, 75, 244, 51, 90, 129, 66, 73, 189, 65, 30, 27, 74, 12, 97, + 68, 80, 151, 150, 235, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 604, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14739221549277591547" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3063886611752946202" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "288482376327727545" + } + } + ] + }, + "cborHex": "d8669f1bcc8c3be8467937fb9f1b2a851ca3e59c0a1a1b0400e5315cf989b9ffff", + "cborBytes": [ + 216, 102, 159, 27, 204, 140, 59, 232, 70, 121, 55, 251, 159, 27, 42, 133, 28, 163, 229, 156, 10, 26, 27, 4, 0, + 229, 49, 92, 249, 137, 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 605, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2029879898927284064" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "34798e6fe314c811430324a3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93e77e7d3e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "354230209dfc5b41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cb54e29f5c1e7e7cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a71f686a515118cdc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b65a8b242d12c7a618" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bcbc4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24dd45210bf0d8c7ec019ef2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c170" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a23e8366338a41c153" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb9bb6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11819800085780318704" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0511d43d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12067326435280814989" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "100363c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7921633528296869202" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "498638a47ba0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "580545765654386369" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b1c2b950368443f609fbf4c34798e6fe314c811430324a34593e77e7d3e48354230209dfc5b41498cb54e29f5c1e7e7cb493a71f686a515118cdc49b65a8b242d12c7a618439bcbc44c24dd45210bf0d8c7ec019ef242c17049a23e8366338a41c15343fb9bb61ba4085d8dd51149f0ff80bf440511d43d1ba777c1751b98038d44100363c21b6def4bb92ef58d5246498638a47ba01b080e834c49afd6c1ffffff", + "cborBytes": [ + 216, 102, 159, 27, 28, 43, 149, 3, 104, 68, 63, 96, 159, 191, 76, 52, 121, 142, 111, 227, 20, 200, 17, 67, 3, 36, + 163, 69, 147, 231, 126, 125, 62, 72, 53, 66, 48, 32, 157, 252, 91, 65, 73, 140, 181, 78, 41, 245, 193, 231, 231, + 203, 73, 58, 113, 246, 134, 165, 21, 17, 140, 220, 73, 182, 90, 139, 36, 45, 18, 199, 166, 24, 67, 155, 203, 196, + 76, 36, 221, 69, 33, 11, 240, 216, 199, 236, 1, 158, 242, 66, 193, 112, 73, 162, 62, 131, 102, 51, 138, 65, 193, + 83, 67, 251, 155, 182, 27, 164, 8, 93, 141, 213, 17, 73, 240, 255, 128, 191, 68, 5, 17, 212, 61, 27, 167, 119, + 193, 117, 27, 152, 3, 141, 68, 16, 3, 99, 194, 27, 109, 239, 75, 185, 46, 245, 141, 82, 70, 73, 134, 56, 164, 123, + 160, 27, 8, 14, 131, 76, 73, 175, 214, 193, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 606, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9873899291915215648" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0503" + } + ] + }, + "cborHex": "d8669f1b89072317829663209f420503ffff", + "cborBytes": [216, 102, 159, 27, 137, 7, 35, 23, 130, 150, 99, 32, 159, 66, 5, 3, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 607, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1122786000799600034" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a110fe05f8d2620301" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9fd8669f1b0f94efeb40710da280ff1149a110fe05f8d2620301d9050980ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 216, 102, 159, 27, 15, 148, 239, 235, 64, 113, 13, + 162, 128, 255, 17, 73, 161, 16, 254, 5, 248, 210, 98, 3, 1, 217, 5, 9, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 608, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5744264743349652233" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1765963286025832851" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11731422889305459071" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9918374818662915163" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1252723584930776309" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16263088615596830698" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17089990501212648225" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac753f8c4b7c0ab14ee3a081" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff7066d15794aa813a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba60b52d4e14cdd8f2234d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14904164871053800662" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1870240930701554323" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4348085510963834884" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11176331694383161191" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10433892920651380547" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3283062412835285212" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e4780a79d57caee94" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2916933051928241554" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ea093f4c3f95f7f36" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3516703314936114130" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f62" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1691091149204394263" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8ec82ad5a7a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12706123444130509257" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b4fb7ba5983280b099fd8669f1b1881f6408df389939f1ba2ce62f64af0497fbf1b89a5255907951c5b1b11629176998d84f5ffbf1be1b218ee2b592fea1bed2bd7d06f9473214cac753f8c4b7c0ab14ee3a08149ff7066d15794aa813a4bba60b52d4e14cdd8f2234d1bced63afc0d0474d6ff9f1b19f46e37aedcb2931b3c5780bc2e05b004ffffff1b9b1a4e7617a5df67bf1b90cca25487e377431b2d8fc7debc7be8dc491e4780a79d57caee941b287b0727f9c76592497ea093f4c3f95f7f361b30cdd7085b34abd2ffbf429f621b1777f670bf22911746e8ec82ad5a7a1bb05537f3d7a971c9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 79, 183, 186, 89, 131, 40, 11, 9, 159, 216, 102, 159, 27, 24, 129, 246, 64, 141, 243, 137, 147, + 159, 27, 162, 206, 98, 246, 74, 240, 73, 127, 191, 27, 137, 165, 37, 89, 7, 149, 28, 91, 27, 17, 98, 145, 118, + 153, 141, 132, 245, 255, 191, 27, 225, 178, 24, 238, 43, 89, 47, 234, 27, 237, 43, 215, 208, 111, 148, 115, 33, + 76, 172, 117, 63, 140, 75, 124, 10, 177, 78, 227, 160, 129, 73, 255, 112, 102, 209, 87, 148, 170, 129, 58, 75, + 186, 96, 181, 45, 78, 20, 205, 216, 242, 35, 77, 27, 206, 214, 58, 252, 13, 4, 116, 214, 255, 159, 27, 25, 244, + 110, 55, 174, 220, 178, 147, 27, 60, 87, 128, 188, 46, 5, 176, 4, 255, 255, 255, 27, 155, 26, 78, 118, 23, 165, + 223, 103, 191, 27, 144, 204, 162, 84, 135, 227, 119, 67, 27, 45, 143, 199, 222, 188, 123, 232, 220, 73, 30, 71, + 128, 167, 157, 87, 202, 238, 148, 27, 40, 123, 7, 39, 249, 199, 101, 146, 73, 126, 160, 147, 244, 195, 249, 95, + 127, 54, 27, 48, 205, 215, 8, 91, 52, 171, 210, 255, 191, 66, 159, 98, 27, 23, 119, 246, 112, 191, 34, 145, 23, + 70, 232, 236, 130, 173, 90, 122, 27, 176, 85, 55, 243, 215, 169, 113, 201, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 609, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15839970312505418606" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11378243328134221265" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17667544647909138870" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9457857974829957665" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e19837457340ade8815a2fd9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8763333303948065404" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4adc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17891225411369825107" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc" + }, + { + "_tag": "ByteArray", + "bytearray": "8f2929216b20aa" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "493e8598b36240d77cb2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10189342853277835264" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16386155312989165038" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8935571464198787867" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6350806816402531368" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14054059877984940809" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d1c1218878e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f86cdec9cb" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1728110307315799036" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4733600fca6a9f016dab92" + } + ] + }, + "cborHex": "d8669f1bdbd2e113519e636e9f1b9de7a405bd660dd1d8669f1bf52fba4027fa61b69fd8669f1b83410fb7ddd5c2219f4ce19837457340ade8815a2fd91b799d9d35b62cba7cffff9f424adc1bf84a66b84923f35341cc478f2929216b20aaffffff9f4a493e8598b36240d77cb2d8669f1b8d67d156f04a60009f1be3675170891955ee1b7c0186e76caf931bffff9f1b58229926c8cd64281bc30a0cff575cb309ffbf464d1c1218878e45f86cdec9cbff1b17fb7b2b283fd3fcff4b4733600fca6a9f016dab92ffff", + "cborBytes": [ + 216, 102, 159, 27, 219, 210, 225, 19, 81, 158, 99, 110, 159, 27, 157, 231, 164, 5, 189, 102, 13, 209, 216, 102, + 159, 27, 245, 47, 186, 64, 39, 250, 97, 182, 159, 216, 102, 159, 27, 131, 65, 15, 183, 221, 213, 194, 33, 159, 76, + 225, 152, 55, 69, 115, 64, 173, 232, 129, 90, 47, 217, 27, 121, 157, 157, 53, 182, 44, 186, 124, 255, 255, 159, + 66, 74, 220, 27, 248, 74, 102, 184, 73, 35, 243, 83, 65, 204, 71, 143, 41, 41, 33, 107, 32, 170, 255, 255, 255, + 159, 74, 73, 62, 133, 152, 179, 98, 64, 215, 124, 178, 216, 102, 159, 27, 141, 103, 209, 86, 240, 74, 96, 0, 159, + 27, 227, 103, 81, 112, 137, 25, 85, 238, 27, 124, 1, 134, 231, 108, 175, 147, 27, 255, 255, 159, 27, 88, 34, 153, + 38, 200, 205, 100, 40, 27, 195, 10, 12, 255, 87, 92, 179, 9, 255, 191, 70, 77, 28, 18, 24, 135, 142, 69, 248, 108, + 222, 201, 203, 255, 27, 23, 251, 123, 43, 40, 63, 211, 252, 255, 75, 71, 51, 96, 15, 202, 106, 159, 1, 109, 171, + 146, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 610, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9628" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "868fcf434807e3" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0e4b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "37fc45ad6c3fdf8d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10494658281353968415" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cacf7826c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4675168916799250078" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "94459750577338824" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3d12f2" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17513101961446217739" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10123972380917202698" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1000531637866761257" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14652198939271917748" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8119299400674135983" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "524070500861019811" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "284c5b391fc0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16721291064574389855" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1d259e0e36a9ac" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11063610746274691878" + } + } + ] + }, + "cborHex": "d87c9f9fbf42962847868fcf434807e3ff420e4bbf4837fc45ad6c3fdf8d1b91a4841a9336fb1f458cacf7826c1b40e1895c16c45e9eff1b014f96a486bbf9c8433d12f2ffd8669f1bf30b09720f32d80b9f1b8c7f933dc86f7f0a419cd8669f1b0de29a393d968c2980ffffffd8669f1bcb57114df9a870b49f1b70ad8bc97a394faf80d8669f1b0745df58091506a380ff46284c5b391fc0d8669f1be80df5a149deae5f9f471d259e0e36a9acffffffff1b9989d75b30e5bb26ff", + "cborBytes": [ + 216, 124, 159, 159, 191, 66, 150, 40, 71, 134, 143, 207, 67, 72, 7, 227, 255, 66, 14, 75, 191, 72, 55, 252, 69, + 173, 108, 63, 223, 141, 27, 145, 164, 132, 26, 147, 54, 251, 31, 69, 140, 172, 247, 130, 108, 27, 64, 225, 137, + 92, 22, 196, 94, 158, 255, 27, 1, 79, 150, 164, 134, 187, 249, 200, 67, 61, 18, 242, 255, 216, 102, 159, 27, 243, + 11, 9, 114, 15, 50, 216, 11, 159, 27, 140, 127, 147, 61, 200, 111, 127, 10, 65, 156, 216, 102, 159, 27, 13, 226, + 154, 57, 61, 150, 140, 41, 128, 255, 255, 255, 216, 102, 159, 27, 203, 87, 17, 77, 249, 168, 112, 180, 159, 27, + 112, 173, 139, 201, 122, 57, 79, 175, 128, 216, 102, 159, 27, 7, 69, 223, 88, 9, 21, 6, 163, 128, 255, 70, 40, 76, + 91, 57, 31, 192, 216, 102, 159, 27, 232, 13, 245, 161, 73, 222, 174, 95, 159, 71, 29, 37, 158, 14, 54, 169, 172, + 255, 255, 255, 255, 27, 153, 137, 215, 91, 48, 229, 187, 38, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 611, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7147503533268928347" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + }, + "cborHex": "d8669f1b633108982b58075b9f01ffff", + "cborBytes": [216, 102, 159, 27, 99, 49, 8, 152, 43, 88, 7, 91, 159, 1, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 612, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "26b2bc052303c055b2fd47c2" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19fd9050b9f4c26b2bc052303c055b2fd47c2ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 217, 5, 11, 159, 76, 38, 178, 188, 5, 35, 3, 192, + 85, 178, 253, 71, 194, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 613, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4002236631874505572" + }, + "fields": [] + }, + "cborHex": "d8669f1b378acd030def8b6480ff", + "cborBytes": [216, 102, 159, 27, 55, 138, 205, 3, 13, 239, 139, 100, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 614, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3743241310902508392" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12044390060600155733" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17254149268019779496" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2508460189606279505" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2277322666132721852" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4749815208371364180" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "683808825346018528" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac1a80b9" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7676529381760101634" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14809268803336047722" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9102686432031956675" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18026530042568491933" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11804232936447219182" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2881352703170297799" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14268347458929213684" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c139df" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17805941404699594393" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de6c2d" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19f1b33f2aa23c4e95b681ba72644f23a515e551bef730d57c5e297a8d8669f1b22cfd74086b0f9519f801b1f9aace629c950bcd8669f1b41eabbc433b921549f1b097d6080f106cce044ac1a80b9ffffbf1b6a8882ccfba8ed021bcd851783861e8c6a1b7e533d14f3085ec31bfa2b1990a833c39d1ba3d10f506ee715ee1b27fc9f047913bfc71bc6035a6abd52c0f443c139df1bf71b695e1e8a0e9943de6c2dffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 27, 51, 242, 170, 35, 196, 233, 91, 104, 27, 167, + 38, 68, 242, 58, 81, 94, 85, 27, 239, 115, 13, 87, 197, 226, 151, 168, 216, 102, 159, 27, 34, 207, 215, 64, 134, + 176, 249, 81, 159, 128, 27, 31, 154, 172, 230, 41, 201, 80, 188, 216, 102, 159, 27, 65, 234, 187, 196, 51, 185, + 33, 84, 159, 27, 9, 125, 96, 128, 241, 6, 204, 224, 68, 172, 26, 128, 185, 255, 255, 191, 27, 106, 136, 130, 204, + 251, 168, 237, 2, 27, 205, 133, 23, 131, 134, 30, 140, 106, 27, 126, 83, 61, 20, 243, 8, 94, 195, 27, 250, 43, 25, + 144, 168, 51, 195, 157, 27, 163, 209, 15, 80, 110, 231, 21, 238, 27, 39, 252, 159, 4, 121, 19, 191, 199, 27, 198, + 3, 90, 106, 189, 82, 192, 244, 67, 193, 57, 223, 27, 247, 27, 105, 94, 30, 138, 14, 153, 67, 222, 108, 45, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 615, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "50be43" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15882306111811403713" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aab2fe8aeee408a16519eb" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4547438095570514256" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9669708730466990159" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b7c8ed0345674ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11611046198355388230" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4262182318" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "581ec322751b50d1bdb021" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4296a0d777d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "582261918621049001" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15876492113276364383" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9633133125005543632" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9258559738858924087" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3661442436420534029" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "658387314220334542" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9fd8669f1bffffffffffffffef9f4350be431bdc694942b888bfc14baab2fe8aeee408a16519ebbf1b3f1bbedac48f31501b8631b4dba8fa784f482b7c8ed0345674ad1ba122b8ffdb9f67464542621823184b581ec322751b50d1bdb021464296a0d777d31b08149c2149a520a9ffd8669f1bdc54a175b320e65f9f1b85afc389e60108d01b807d03074e6b68371b32d00e7f2c62ff0d1b09230fc624b9fdceffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 239, 159, 67, 80, 190, 67, 27, 220, 105, 73, 66, 184, 136, 191, 193, 75, 170, 178, 254, 138, 238, 228, 8, + 161, 101, 25, 235, 191, 27, 63, 27, 190, 218, 196, 143, 49, 80, 27, 134, 49, 180, 219, 168, 250, 120, 79, 72, 43, + 124, 142, 208, 52, 86, 116, 173, 27, 161, 34, 184, 255, 219, 159, 103, 70, 69, 66, 98, 24, 35, 24, 75, 88, 30, + 195, 34, 117, 27, 80, 209, 189, 176, 33, 70, 66, 150, 160, 215, 119, 211, 27, 8, 20, 156, 33, 73, 165, 32, 169, + 255, 216, 102, 159, 27, 220, 84, 161, 117, 179, 32, 230, 95, 159, 27, 133, 175, 195, 137, 230, 1, 8, 208, 27, 128, + 125, 3, 7, 78, 107, 104, 55, 27, 50, 208, 14, 127, 44, 98, 255, 13, 27, 9, 35, 15, 198, 36, 185, 253, 206, 255, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 616, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9086959723337471400" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5703680173483848006" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12be43fcaec1fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17551367780724237542" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f26e7960cb54712" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7079668072980383006" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8754cda0b8000c59d85abd1a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f809c7206b6bcd58a96ad8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4db0f48e80d9fe1f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0612" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d291c3f7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18068483997996399225" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12743467233201108006" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5432554222590043443" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "873246cb" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01ff72023c2002" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cad442107b6" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7e1b5db93dcfd5a89fd8669f1b4f278ae5fcf171469fbf4712be43fcaec1fe1bf392fc01644de4e6486f26e7960cb547121b6240089a49ab851e4c8754cda0b8000c59d85abd1a4bf809c7206b6bcd58a96ad849e4db0f48e80d9fe1f6420612ffffff44d291c3f79f9f1bfac026771a67ba791bb0d9e3ee49c83426ffffd8669f1b4b644f48548725339f44873246cbffffbf4701ff72023c2002461cad442107b6ffffff", + "cborBytes": [ + 216, 102, 159, 27, 126, 27, 93, 185, 61, 207, 213, 168, 159, 216, 102, 159, 27, 79, 39, 138, 229, 252, 241, 113, + 70, 159, 191, 71, 18, 190, 67, 252, 174, 193, 254, 27, 243, 146, 252, 1, 100, 77, 228, 230, 72, 111, 38, 231, 150, + 12, 181, 71, 18, 27, 98, 64, 8, 154, 73, 171, 133, 30, 76, 135, 84, 205, 160, 184, 0, 12, 89, 216, 90, 189, 26, + 75, 248, 9, 199, 32, 107, 107, 205, 88, 169, 106, 216, 73, 228, 219, 15, 72, 232, 13, 159, 225, 246, 66, 6, 18, + 255, 255, 255, 68, 210, 145, 195, 247, 159, 159, 27, 250, 192, 38, 119, 26, 103, 186, 121, 27, 176, 217, 227, 238, + 73, 200, 52, 38, 255, 255, 216, 102, 159, 27, 75, 100, 79, 72, 84, 135, 37, 51, 159, 68, 135, 50, 70, 203, 255, + 255, 191, 71, 1, 255, 114, 2, 60, 32, 2, 70, 28, 173, 68, 33, 7, 182, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 617, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11097305343685030631" + }, + "fields": [] + }, + "cborHex": "d8669f1b9a018c69fe63f2e780ff", + "cborBytes": [216, 102, 159, 27, 154, 1, 140, 105, 254, 99, 242, 231, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 618, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13048943091745214517" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + }, + "cborHex": "d905099fd8669f1bb517289b0dc2d03580ff00ff", + "cborBytes": [217, 5, 9, 159, 216, 102, 159, 27, 181, 23, 40, 155, 13, 194, 208, 53, 128, 255, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 619, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7264330823794401238" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11842887548016797621" + } + } + ] + }, + "cborHex": "d905019f1b64d016656b2f9fd61ba45a637a867027b5ff", + "cborBytes": [ + 217, 5, 1, 159, 27, 100, 208, 22, 101, 107, 47, 159, 214, 27, 164, 90, 99, 122, 134, 112, 39, 181, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 620, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10780213500399458429" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17400237370061154789" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "106754944038448798" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7496439631246211785" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4307304210017740502" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10700676841350664259" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15393981370276641772" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14085853928983067163" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4340710178796238978" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a12afa680d326" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7919608673625482130" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5511470089447180613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4481234403723548100" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14049762279280392068" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4d407d838a7" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9fd8669f1b959b0310062e187d9f809f1bf17a0fb299f8e9e51b017b450e556dae9e1b6808b42074973ac91b3bc69e5ba1a6e6d6ffffff1b948070e480f49043d8669f1bd5a2687ed651fbec9fd8669f1bc37b0184b3137a1b9f1b3c3d4ce8d8127882471a12afa680d326ffffffff1b6de81a20f78ca392bf1b4c7cacd867b089451b3e308af2953395c41bc2fac85aab30b78446d4d407d838a7ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 216, 102, 159, 27, 149, 155, 3, 16, 6, 46, 24, + 125, 159, 128, 159, 27, 241, 122, 15, 178, 153, 248, 233, 229, 27, 1, 123, 69, 14, 85, 109, 174, 158, 27, 104, 8, + 180, 32, 116, 151, 58, 201, 27, 59, 198, 158, 91, 161, 166, 230, 214, 255, 255, 255, 27, 148, 128, 112, 228, 128, + 244, 144, 67, 216, 102, 159, 27, 213, 162, 104, 126, 214, 81, 251, 236, 159, 216, 102, 159, 27, 195, 123, 1, 132, + 179, 19, 122, 27, 159, 27, 60, 61, 76, 232, 216, 18, 120, 130, 71, 26, 18, 175, 166, 128, 211, 38, 255, 255, 255, + 255, 27, 109, 232, 26, 32, 247, 140, 163, 146, 191, 27, 76, 124, 172, 216, 103, 176, 137, 69, 27, 62, 48, 138, + 242, 149, 51, 149, 196, 27, 194, 250, 200, 90, 171, 48, 183, 132, 70, 212, 212, 7, 216, 56, 167, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 621, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12463066875223526870" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5343137843522231556" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4133735150907105617" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1017086822722138966" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9006331925233961808" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5690497206293865972" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da898ecdf2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "602db6a0b2d8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb82db85aeddebc327" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12f35537" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8035018463365126755" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bacf5b54a75a2cdd69f801b4a26a38f3d16dd04bf1b395dfa37e15d21511b0e1d6b13961573561b7cfceb2b1cd48b501b4ef8b50f407fa5f445da898ecdf246602db6a0b2d849eb82db85aeddebc3274412f35537ffbf41f41b6f821eb898955a63ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 172, 245, 181, 74, 117, 162, 205, 214, 159, 128, 27, 74, 38, 163, 143, 61, 22, 221, 4, 191, 27, + 57, 93, 250, 55, 225, 93, 33, 81, 27, 14, 29, 107, 19, 150, 21, 115, 86, 27, 124, 252, 235, 43, 28, 212, 139, 80, + 27, 78, 248, 181, 15, 64, 127, 165, 244, 69, 218, 137, 142, 205, 242, 70, 96, 45, 182, 160, 178, 216, 73, 235, + 130, 219, 133, 174, 221, 235, 195, 39, 68, 18, 243, 85, 55, 255, 191, 65, 244, 27, 111, 130, 30, 184, 152, 149, + 90, 99, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 622, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2982370677237957567" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14959138510930181422" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9485585419944845313" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb691d69b26b8a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "149314dc3415ff5e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8dc900" + } + } + ] + } + ] + }, + "cborHex": "d905069fd8669f1bfffffffffffffffa9fd8669f1b29638254654f43bf80ffd8669f1bcf99893801dbfd2e80ff1b83a391aec26fe00147cb691d69b26b8affff10bf48149314dc3415ff5e438dc900ffff", + "cborBytes": [ + 217, 5, 6, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 216, 102, 159, 27, 41, 99, 130, + 84, 101, 79, 67, 191, 128, 255, 216, 102, 159, 27, 207, 153, 137, 56, 1, 219, 253, 46, 128, 255, 27, 131, 163, + 145, 174, 194, 111, 224, 1, 71, 203, 105, 29, 105, 178, 107, 138, 255, 255, 16, 191, 72, 20, 147, 20, 220, 52, 21, + 255, 94, 67, 141, 201, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 623, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7462225763557799780" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "14365cba" + }, + { + "_tag": "ByteArray", + "bytearray": "16" + } + ] + }, + "cborHex": "d8669f1b678f26cb9ea177649f4414365cba4116ffff", + "cborBytes": [216, 102, 159, 27, 103, 143, 38, 203, 158, 161, 119, 100, 159, 68, 20, 54, 92, 186, 65, 22, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 624, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7872704681395166933" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "248f496167a3f65fa029e265" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13224017378216034451" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14564691461497875194" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14629172073551283133" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13f05e94b7b248" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15612092483074853377" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88b8aa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17899443446438420707" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2139191268262700698" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18090784988360016383" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e300ac03f7fdc9" + } + } + ] + } + ] + }, + "cborHex": "d905089f0fbf1b6d417732441d1ed54c248f496167a3f65fa029e2651bb78525bddc28c0931bca202db799beeafa1bcb05427e0216c3bd4713f05e94b7b2481bd8a94b659e390a014388b8aa1bf86798faae27e0e31b1dafef1fe36a669a1bfb0f61190b2b01ff47e300ac03f7fdc9ffff", + "cborBytes": [ + 217, 5, 8, 159, 15, 191, 27, 109, 65, 119, 50, 68, 29, 30, 213, 76, 36, 143, 73, 97, 103, 163, 246, 95, 160, 41, + 226, 101, 27, 183, 133, 37, 189, 220, 40, 192, 147, 27, 202, 32, 45, 183, 153, 190, 234, 250, 27, 203, 5, 66, 126, + 2, 22, 195, 189, 71, 19, 240, 94, 148, 183, 178, 72, 27, 216, 169, 75, 101, 158, 57, 10, 1, 67, 136, 184, 170, 27, + 248, 103, 152, 250, 174, 39, 224, 227, 27, 29, 175, 239, 31, 227, 106, 102, 154, 27, 251, 15, 97, 25, 11, 43, 1, + 255, 71, 227, 0, 172, 3, 247, 253, 201, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 625, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3485993627432819641" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9661549280418562259" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10897795166987932212" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80e92a28194121" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e8da8c5628c5d1bf097" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3a945" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8478739392348013236" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea8ca8c779" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "173406d1e6d5a298367d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6462888537642941764" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10a9c539ffa62723" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7512662223343980767" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1587506905455307869" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7601744087246292113" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "87270c47" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7986778879369175081" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2188488812168624562" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "608c65ba2b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8f07800fb5" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9f809f1b3060bcbc0c689bb9ffd8669f1b8614b7e1a74780d39fbf41191b973cbef72348d2344780e92a281941214a0e8da8c5628c5d1bf09743c3a9451b75aa888e1803c2b445ea8ca8c7794a173406d1e6d5a298367dffbf1b59b0cae21526bd444810a9c539ffa627231b6842567d03ea10df1b1607f51e9a24ac5dffd8669f1b697ed1f8b9bdc4919f4487270c471b6ed6bd1334646029ffffffffd8669f1b1e5f12fac43a39b29f45608c65ba2bffff458f07800fb5ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 128, 159, 27, 48, 96, 188, 188, 12, 104, 155, 185, + 255, 216, 102, 159, 27, 134, 20, 183, 225, 167, 71, 128, 211, 159, 191, 65, 25, 27, 151, 60, 190, 247, 35, 72, + 210, 52, 71, 128, 233, 42, 40, 25, 65, 33, 74, 14, 141, 168, 197, 98, 140, 93, 27, 240, 151, 67, 195, 169, 69, 27, + 117, 170, 136, 142, 24, 3, 194, 180, 69, 234, 140, 168, 199, 121, 74, 23, 52, 6, 209, 230, 213, 162, 152, 54, 125, + 255, 191, 27, 89, 176, 202, 226, 21, 38, 189, 68, 72, 16, 169, 197, 57, 255, 166, 39, 35, 27, 104, 66, 86, 125, 3, + 234, 16, 223, 27, 22, 7, 245, 30, 154, 36, 172, 93, 255, 216, 102, 159, 27, 105, 126, 209, 248, 185, 189, 196, + 145, 159, 68, 135, 39, 12, 71, 27, 110, 214, 189, 19, 52, 100, 96, 41, 255, 255, 255, 255, 216, 102, 159, 27, 30, + 95, 18, 250, 196, 58, 57, 178, 159, 69, 96, 140, 101, 186, 43, 255, 255, 69, 143, 7, 128, 15, 181, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 626, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15629002157599734689" + }, + "fields": [] + }, + "cborHex": "d8669f1bd8e55ea8058bbba180ff", + "cborBytes": [216, 102, 159, 27, 216, 229, 94, 168, 5, 139, 187, 161, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 627, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9297035082293523162" + }, + "fields": [] + }, + "cborHex": "d8669f1b8105b426487332da80ff", + "cborBytes": [216, 102, 159, 27, 129, 5, 180, 38, 72, 115, 50, 218, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 628, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a55bf08e4c8fdd2e5e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b8b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97d3dffc279ca66a5828" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8632243349270970022" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8273267850422711328" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9874908433437018049" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6226106935203648120" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17141590034537509431" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2633" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1446b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8367835671964109646" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9052108728289016215" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8250235798706550165" + } + }, + { + "_tag": "ByteArray", + "bytearray": "205936" + }, + { + "_tag": "ByteArray", + "bytearray": "21ef2d0273fcff629f5bff3d" + }, + { + "_tag": "ByteArray", + "bytearray": "f3cbd349979957d6d56a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2057366193149806184" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15005212743677588246" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4627320121265351298" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1378014387860251690" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3764" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4622879875028731112" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0db464e8a1c5d4e595f2" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "747156730448193462" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3bef92ccb5687cf083868" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "578835128536696547" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36818a4a4c75" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "619353554408665885" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdaa0d3d5e2a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1183140425170214126" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6aa79708d9d1fb04450" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3557398464201255677" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14064846740357693586" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5482728916510855730" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13303768609407335897" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11903192799324711416" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e138827e" + } + } + ] + } + ] + }, + "cborHex": "d905009fbf4a0a55bf08e4c8fdd2e5e1421b8b42c3e64a97d3dffc279ca66a5828ff9fbf1b77cbe39730063ea61b72d08d46bc1af4201b890ab8e69485c7c11b566793452e68d2781bede32950fdfbf237422633431446b11b742086357e434b4eff1b7d9f8ceda1e139979f1b727eb9bf4f1d7595432059364c21ef2d0273fcff629f5bff3d4af3cbd349979957d6d56aff1b1c8d3ba6fb9786689f1bd03d397d461133161b40378b223a09ea82ffffbf1b131fb0c8e3c9a42a4237641b4027c4c0d663c4e84a0db464e8a1c5d4e595f2ffbf1b0a5e6f1675e827b64bc3bef92ccb5687cf083868ffbf1b08086f7b8bf286e34636818a4a4c751b089862c6b8e7731d46bdaa0d3d5e2a1b106b5bf2b9acdcee4af6aa79708d9d1fb044501b315e6b0e273c6afd1bc3305f977354c0921b4c1690e69c6452321bb8a07b1059b77dd91ba530a2c900bca9f844e138827effff", + "cborBytes": [ + 217, 5, 0, 159, 191, 74, 10, 85, 191, 8, 228, 200, 253, 210, 229, 225, 66, 27, 139, 66, 195, 230, 74, 151, 211, + 223, 252, 39, 156, 166, 106, 88, 40, 255, 159, 191, 27, 119, 203, 227, 151, 48, 6, 62, 166, 27, 114, 208, 141, 70, + 188, 26, 244, 32, 27, 137, 10, 184, 230, 148, 133, 199, 193, 27, 86, 103, 147, 69, 46, 104, 210, 120, 27, 237, + 227, 41, 80, 253, 251, 242, 55, 66, 38, 51, 67, 20, 70, 177, 27, 116, 32, 134, 53, 126, 67, 75, 78, 255, 27, 125, + 159, 140, 237, 161, 225, 57, 151, 159, 27, 114, 126, 185, 191, 79, 29, 117, 149, 67, 32, 89, 54, 76, 33, 239, 45, + 2, 115, 252, 255, 98, 159, 91, 255, 61, 74, 243, 203, 211, 73, 151, 153, 87, 214, 213, 106, 255, 27, 28, 141, 59, + 166, 251, 151, 134, 104, 159, 27, 208, 61, 57, 125, 70, 17, 51, 22, 27, 64, 55, 139, 34, 58, 9, 234, 130, 255, + 255, 191, 27, 19, 31, 176, 200, 227, 201, 164, 42, 66, 55, 100, 27, 64, 39, 196, 192, 214, 99, 196, 232, 74, 13, + 180, 100, 232, 161, 197, 212, 229, 149, 242, 255, 191, 27, 10, 94, 111, 22, 117, 232, 39, 182, 75, 195, 190, 249, + 44, 203, 86, 135, 207, 8, 56, 104, 255, 191, 27, 8, 8, 111, 123, 139, 242, 134, 227, 70, 54, 129, 138, 74, 76, + 117, 27, 8, 152, 98, 198, 184, 231, 115, 29, 70, 189, 170, 13, 61, 94, 42, 27, 16, 107, 91, 242, 185, 172, 220, + 238, 74, 246, 170, 121, 112, 141, 157, 31, 176, 68, 80, 27, 49, 94, 107, 14, 39, 60, 106, 253, 27, 195, 48, 95, + 151, 115, 84, 192, 146, 27, 76, 22, 144, 230, 156, 100, 82, 50, 27, 184, 160, 123, 16, 89, 183, 125, 217, 27, 165, + 48, 162, 201, 0, 188, 169, 248, 68, 225, 56, 130, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 629, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2756545746323170888" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8644422976724321812" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6107550203081160102" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4f" + }, + { + "_tag": "ByteArray", + "bytearray": "953dcaeb85c4f5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13244571238515399826" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c01778c184c5e55a3dc5a8c7" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "962529165764444703" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14638369765670079314" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10174592947734390732" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7fe09b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18419741570196256951" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1218548725887335732" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15723099509305622204" + } + } + ] + }, + "cborHex": "d8669f1b264137c060b4e6489fd8669f1b77f728e5afe0c6149fd8669f1b54c2608cee8475a69f414f47953dcaeb85c4f51bb7ce2b5e6210dc924cc01778c184c5e55a3dc5a8c7ffffbf1b0d5b972d3357c21f1bcb25efbe95954b521b8d336a60efe727cc437fe09b1bffa0115dba0b38b71b10e9279c2c04fd34ffffff1bda33abb2fc47bebcffff", + "cborBytes": [ + 216, 102, 159, 27, 38, 65, 55, 192, 96, 180, 230, 72, 159, 216, 102, 159, 27, 119, 247, 40, 229, 175, 224, 198, + 20, 159, 216, 102, 159, 27, 84, 194, 96, 140, 238, 132, 117, 166, 159, 65, 79, 71, 149, 61, 202, 235, 133, 196, + 245, 27, 183, 206, 43, 94, 98, 16, 220, 146, 76, 192, 23, 120, 193, 132, 197, 229, 90, 61, 197, 168, 199, 255, + 255, 191, 27, 13, 91, 151, 45, 51, 87, 194, 31, 27, 203, 37, 239, 190, 149, 149, 75, 82, 27, 141, 51, 106, 96, + 239, 231, 39, 204, 67, 127, 224, 155, 27, 255, 160, 17, 93, 186, 11, 56, 183, 27, 16, 233, 39, 156, 44, 4, 253, + 52, 255, 255, 255, 27, 218, 51, 171, 178, 252, 71, 190, 188, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 630, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb07d70d3a" + }, + { + "_tag": "ByteArray", + "bytearray": "17b92a5868901329650309" + } + ] + }, + "cborHex": "d9050a9f45fb07d70d3a4b17b92a5868901329650309ff", + "cborBytes": [217, 5, 10, 159, 69, 251, 7, 215, 13, 58, 75, 23, 185, 42, 88, 104, 144, 19, 41, 101, 3, 9, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 631, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16675653411063290892" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10847161947722556501" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3226747387743600989" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "96d606bf0cc7f4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10724889072024341869" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3c304e22" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11577202197290075117" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "da4da73ec52596" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5935193100559852631" + } + }, + { + "_tag": "ByteArray", + "bytearray": "15f628b388a83a8606ebb9e5" + }, + { + "_tag": "ByteArray", + "bytearray": "f9216e3feb92dbb1802b26f2" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1be76bd26d0bf55c0c9f1bfffffffffffffff6d8669f1b9688dc521b2324559f1bfffffffffffffff2ffff41b6d8669f1b2cc7b5a73260815d9f9f4796d606bf0cc7f41b94d675c9c17acd6dff443c304e221ba0aa7c0f4e58c3ed9f47da4da73ec525961b525e0aadd03824574c15f628b388a83a8606ebb9e54cf9216e3feb92dbb1802b26f2ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 231, 107, 210, 109, 11, 245, 92, 12, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 216, 102, + 159, 27, 150, 136, 220, 82, 27, 35, 36, 85, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 255, 255, 65, 182, + 216, 102, 159, 27, 44, 199, 181, 167, 50, 96, 129, 93, 159, 159, 71, 150, 214, 6, 191, 12, 199, 244, 27, 148, 214, + 117, 201, 193, 122, 205, 109, 255, 68, 60, 48, 78, 34, 27, 160, 170, 124, 15, 78, 88, 195, 237, 159, 71, 218, 77, + 167, 62, 197, 37, 150, 27, 82, 94, 10, 173, 208, 56, 36, 87, 76, 21, 246, 40, 179, 136, 168, 58, 134, 6, 235, 185, + 229, 76, 249, 33, 110, 63, 235, 146, 219, 177, 128, 43, 38, 242, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 632, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9825495282677495010" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "37993203780087203" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9503722825596283286" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5962610266348883623" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6623888091345152253" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12313876305019689814" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d1428de8346d0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fda1bf389973" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12702350806549093416" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11207102577596694374" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11235316325418384922" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3956573658445947117" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5161521320685429026" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10450853462181002524" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15851952504547533996" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4f727915916595" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7884135357915753103" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14906276011370716517" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18334245977174064946" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f683" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b885b2be6e244b4e29fbf1b0086fa9e1730eda31b83e4018e977029961b52bf72722bd28ea71b5becc71fcc9168fd1baae3ad41f8cc5b56478d1428de8346d046fda1bf3899731bb047d0c234c15c28ff9fbf1b9b87a06aa303ff661b9bebdcabb3b5be1aff1b36e892c78f56a0edd8669f1b47a1684b540f61229f1b9108e3da54f5bd1cffff80ffd8669f1bdbfd72d0cdeb64ac9f474f7279159165951b6d6a135609aa6a8fd8669f1bceddbb0e35ad9d6580ff1bfe705393c6183f3242f683ffff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 136, 91, 43, 230, 226, 68, 180, 226, 159, 191, 27, 0, 134, 250, 158, 23, 48, 237, 163, 27, 131, + 228, 1, 142, 151, 112, 41, 150, 27, 82, 191, 114, 114, 43, 210, 142, 167, 27, 91, 236, 199, 31, 204, 145, 104, + 253, 27, 170, 227, 173, 65, 248, 204, 91, 86, 71, 141, 20, 40, 222, 131, 70, 208, 70, 253, 161, 191, 56, 153, 115, + 27, 176, 71, 208, 194, 52, 193, 92, 40, 255, 159, 191, 27, 155, 135, 160, 106, 163, 3, 255, 102, 27, 155, 235, + 220, 171, 179, 181, 190, 26, 255, 27, 54, 232, 146, 199, 143, 86, 160, 237, 216, 102, 159, 27, 71, 161, 104, 75, + 84, 15, 97, 34, 159, 27, 145, 8, 227, 218, 84, 245, 189, 28, 255, 255, 128, 255, 216, 102, 159, 27, 219, 253, 114, + 208, 205, 235, 100, 172, 159, 71, 79, 114, 121, 21, 145, 101, 149, 27, 109, 106, 19, 86, 9, 170, 106, 143, 216, + 102, 159, 27, 206, 221, 187, 14, 53, 173, 157, 101, 128, 255, 27, 254, 112, 83, 147, 198, 24, 63, 50, 66, 246, + 131, 255, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 633, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1945048186210778053" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d45f80147b66a02c60777" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50be00" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9466e8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "688446031801563611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15542925174692271011" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5031536637922878579" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf8d5ec5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15500600300673408766" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2551" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8510144472834593078" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8016665682791732468" + } + } + ] + }, + "cborHex": "d8669f1b1afe3305221c7bc59fbf0c1bfffffffffffffff04b8d45f80147b66a02c607774350be00ff439466e8bf1b098dda04b48f39db1bd7b39018b00253a31b45d39be9f9c1a47344cf8d5ec51bd71d31d906f39efe041bfffffffffffffff6422551ffd8669f1b761a1b4f328f513680ff1b6f40eaf6e1dd94f4ffff", + "cborBytes": [ + 216, 102, 159, 27, 26, 254, 51, 5, 34, 28, 123, 197, 159, 191, 12, 27, 255, 255, 255, 255, 255, 255, 255, 240, 75, + 141, 69, 248, 1, 71, 182, 106, 2, 198, 7, 119, 67, 80, 190, 0, 255, 67, 148, 102, 232, 191, 27, 9, 141, 218, 4, + 180, 143, 57, 219, 27, 215, 179, 144, 24, 176, 2, 83, 163, 27, 69, 211, 155, 233, 249, 193, 164, 115, 68, 207, + 141, 94, 197, 27, 215, 29, 49, 217, 6, 243, 158, 254, 4, 27, 255, 255, 255, 255, 255, 255, 255, 246, 66, 37, 81, + 255, 216, 102, 159, 27, 118, 26, 27, 79, 50, 143, 81, 54, 128, 255, 27, 111, 64, 234, 246, 225, 221, 148, 244, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 634, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17342657673438620476" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10034219394755041366" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b54b5a385555" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ab7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3f0438226cbb9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3f73217b0d11cf28c30" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17350659064998653798" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1931404637952642742" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9128860824604184181" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10932711063710205825" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0701060b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14069831580245747798" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12804127358036880863" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5fa7fe6ad0a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46a7b59604" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed6669ee01fd21f801fd0104" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1728e0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6267947848179660744" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99fd8669f1bf0ad7f44c682eb3c9fbf1b8b40b5603eb5985646b54b5a385555426ab747c3f0438226cbb94ad3f73217b0d11cf28c301bf0c9ec7dec27ef66ff1b1acdba4902b58eb6d8669f1b7eb03a8d9e830e7580ffd8669f1b97b8cac9d86e078180ffffffd8669f1bffffffffffffffef9fbf440701060b1bc3421546ee1ee85641111bb1b165fe32a62ddf41ad1bffffffffffffffed46d5fa7fe6ad0a4546a7b596044ced6669ee01fd21f801fd01041bfffffffffffffff6ff9f431728e01b56fc395be16c37c8ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 216, 102, 159, 27, 240, 173, 127, 68, 198, 130, + 235, 60, 159, 191, 27, 139, 64, 181, 96, 62, 181, 152, 86, 70, 181, 75, 90, 56, 85, 85, 66, 106, 183, 71, 195, + 240, 67, 130, 38, 203, 185, 74, 211, 247, 50, 23, 176, 209, 28, 242, 140, 48, 27, 240, 201, 236, 125, 236, 39, + 239, 102, 255, 27, 26, 205, 186, 73, 2, 181, 142, 182, 216, 102, 159, 27, 126, 176, 58, 141, 158, 131, 14, 117, + 128, 255, 216, 102, 159, 27, 151, 184, 202, 201, 216, 110, 7, 129, 128, 255, 255, 255, 216, 102, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 239, 159, 191, 68, 7, 1, 6, 11, 27, 195, 66, 21, 70, 238, 30, 232, 86, 65, 17, 27, + 177, 177, 101, 254, 50, 166, 45, 223, 65, 173, 27, 255, 255, 255, 255, 255, 255, 255, 237, 70, 213, 250, 127, 230, + 173, 10, 69, 70, 167, 181, 150, 4, 76, 237, 102, 105, 238, 1, 253, 33, 248, 1, 253, 1, 4, 27, 255, 255, 255, 255, + 255, 255, 255, 246, 255, 159, 67, 23, 40, 224, 27, 86, 252, 57, 91, 225, 108, 55, 200, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 635, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "695010320252769170" + }, + "fields": [] + }, + "cborHex": "d8669f1b09a52c3435e5939280ff", + "cborBytes": [216, 102, 159, 27, 9, 165, 44, 52, 53, 229, 147, 146, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 636, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9218242417641251467" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17030249827875588449" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f812827c6cf428883c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5591397326908858212" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "faac60" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13336703469597139477" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "796311865640206364" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17113569729965371666" + } + } + ] + } + ] + }, + "cborHex": "d905079fd8669f1b7fedc6a374f1e28b9f1bec5799fd02ae896149f812827c6cf428883cbf1b4d98a23e8c789f6443faac60ff1bb9157d250c0ea2151b0b0d116c39e9c01cffff9f1bed7f9cff7176b112ffff", + "cborBytes": [ + 217, 5, 7, 159, 216, 102, 159, 27, 127, 237, 198, 163, 116, 241, 226, 139, 159, 27, 236, 87, 153, 253, 2, 174, + 137, 97, 73, 248, 18, 130, 124, 108, 244, 40, 136, 60, 191, 27, 77, 152, 162, 62, 140, 120, 159, 100, 67, 250, + 172, 96, 255, 27, 185, 21, 125, 37, 12, 14, 162, 21, 27, 11, 13, 17, 108, 57, 233, 192, 28, 255, 255, 159, 27, + 237, 127, 156, 255, 113, 118, 177, 18, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 637, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5812244367852159479" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f3b865689cdb2307db13" + } + ] + }, + "cborHex": "d8669f1b50a93d753d97c1f79f0c804af3b865689cdb2307db13ffff", + "cborBytes": [ + 216, 102, 159, 27, 80, 169, 61, 117, 61, 151, 193, 247, 159, 12, 128, 74, 243, 184, 101, 104, 156, 219, 35, 7, + 219, 19, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 638, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "49eb6552743bb740db8f91" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6726b1162b08133bef" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be493faaab69f7cb2fe2" + }, + { + "_tag": "ByteArray", + "bytearray": "a034f82e93dd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17202606391220048645" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16223067093490579771" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bac06f87f4" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15f0a45d545a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6cdb8add" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5972284483495120478" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "89" + }, + { + "_tag": "ByteArray", + "bytearray": "f1645907b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1184850059007605404" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8611250609861637838" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0dd99b6857" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "eed196dd" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a18faa7e09f01f2e8e34340f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10524284592719613259" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6700701370953101313" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6d336a7bef" + }, + { + "_tag": "ByteArray", + "bytearray": "09a7c497989685999cd926" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18234117519451368039" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d117697d71d72d4ddf08" + } + ] + } + ] + } + ] + }, + "cborHex": "d905029f13bf4b49eb6552743bb740db8f91496726b1162b08133befff9f809f4abe493faaab69f7cb2fe246a034f82e93dd1beebbef5e978913051be123e9916ad5b93b45bac06f87f4ffbf4615f0a45d545a446cdb8addff9f1b52e1d118604dce5effffd905059f9f418945f1645907b61b10716ed9df3fba9c1b77814ece28ab36ce450dd99b6857ff44eed196dd9f4ca18faa7e09f01f2e8e34340f1b920dc513b82b4d4bffd8669f1b5cfdac6521a1f0019f456d336a7bef4b09a7c497989685999cd9261bfd0c994683a02a674ad117697d71d72d4ddf08ffffffff", + "cborBytes": [ + 217, 5, 2, 159, 19, 191, 75, 73, 235, 101, 82, 116, 59, 183, 64, 219, 143, 145, 73, 103, 38, 177, 22, 43, 8, 19, + 59, 239, 255, 159, 128, 159, 74, 190, 73, 63, 170, 171, 105, 247, 203, 47, 226, 70, 160, 52, 248, 46, 147, 221, + 27, 238, 187, 239, 94, 151, 137, 19, 5, 27, 225, 35, 233, 145, 106, 213, 185, 59, 69, 186, 192, 111, 135, 244, + 255, 191, 70, 21, 240, 164, 93, 84, 90, 68, 108, 219, 138, 221, 255, 159, 27, 82, 225, 209, 24, 96, 77, 206, 94, + 255, 255, 217, 5, 5, 159, 159, 65, 137, 69, 241, 100, 89, 7, 182, 27, 16, 113, 110, 217, 223, 63, 186, 156, 27, + 119, 129, 78, 206, 40, 171, 54, 206, 69, 13, 217, 155, 104, 87, 255, 68, 238, 209, 150, 221, 159, 76, 161, 143, + 170, 126, 9, 240, 31, 46, 142, 52, 52, 15, 27, 146, 13, 197, 19, 184, 43, 77, 75, 255, 216, 102, 159, 27, 92, 253, + 172, 101, 33, 161, 240, 1, 159, 69, 109, 51, 106, 123, 239, 75, 9, 167, 196, 151, 152, 150, 133, 153, 156, 217, + 38, 27, 253, 12, 153, 70, 131, 160, 42, 103, 74, 209, 23, 105, 125, 113, 215, 45, 77, 223, 8, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 639, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fffad8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "61" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8463be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f757815de5c161" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19b85d35d3e900cf" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3430502951666794719" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "49" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4898a4c53d8392d065bd314f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11475522039760730781" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3752946364195953660" + } + }, + { + "_tag": "ByteArray", + "bytearray": "22ef" + } + ] + } + ] + }, + "cborHex": "d905009f43fffad8bf4161438463be47f757815de5c1614819b85d35d3e900cfffd8669f1bffffffffffffffef9fa0d8669f1b2f9b98424b0740df9f4149ffff9f4c4898a4c53d8392d065bd314f1b9f413e7ec81aba9dff1b341524d592fe5bfc4222efffffff", + "cborBytes": [ + 217, 5, 0, 159, 67, 255, 250, 216, 191, 65, 97, 67, 132, 99, 190, 71, 247, 87, 129, 93, 229, 193, 97, 72, 25, 184, + 93, 53, 211, 233, 0, 207, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 160, 216, 102, 159, + 27, 47, 155, 152, 66, 75, 7, 64, 223, 159, 65, 73, 255, 255, 159, 76, 72, 152, 164, 197, 61, 131, 146, 208, 101, + 189, 49, 79, 27, 159, 65, 62, 126, 200, 26, 186, 157, 255, 27, 52, 21, 36, 213, 146, 254, 91, 252, 66, 34, 239, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 640, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + "cborHex": "d87f9f0fff", + "cborBytes": [216, 127, 159, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 641, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7185462658446116158" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c202f5becfaa450f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16447150429743192886" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4683666355137880672" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5222cf52a13660" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13426773902798377125" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f8aed72a372cf60a0b6e" + }, + { + "_tag": "ByteArray", + "bytearray": "bce525255d630a" + } + ] + }, + "cborHex": "d905089fbf1b63b7e437b783c53e495c202f5becfaa450f81be440042cd4419b361b40ffb9bc20712260475222cf52a13660419e419f1bba557bb9fbc850a5ff4af8aed72a372cf60a0b6e47bce525255d630aff", + "cborBytes": [ + 217, 5, 8, 159, 191, 27, 99, 183, 228, 55, 183, 131, 197, 62, 73, 92, 32, 47, 91, 236, 250, 164, 80, 248, 27, 228, + 64, 4, 44, 212, 65, 155, 54, 27, 64, 255, 185, 188, 32, 113, 34, 96, 71, 82, 34, 207, 82, 161, 54, 96, 65, 158, + 65, 159, 27, 186, 85, 123, 185, 251, 200, 80, 165, 255, 74, 248, 174, 215, 42, 55, 44, 246, 10, 11, 110, 71, 188, + 229, 37, 37, 93, 99, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 642, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1599844837411995717" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10977445988708676249" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14945004838639313888" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4608906712593116217" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b1633ca673daf40459f1b9857b8f73a0472991bcf6752b7fd9723e041a7d8669f1b3ff6203c6f06ac3980ffffff", + "cborBytes": [ + 216, 102, 159, 27, 22, 51, 202, 103, 61, 175, 64, 69, 159, 27, 152, 87, 184, 247, 58, 4, 114, 153, 27, 207, 103, + 82, 183, 253, 151, 35, 224, 65, 167, 216, 102, 159, 27, 63, 246, 32, 60, 111, 6, 172, 57, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 643, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02fb" + } + ] + }, + "cborHex": "d87f9f4202fbff", + "cborBytes": [216, 127, 159, 66, 2, 251, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 644, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7062176670869877643" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afb1fcc3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97c7618375" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ec87b78a8864d2bbcd5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9032042431124055369" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a58" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13592240483810719375" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5871794315248745871" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5da4579d2479" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "282006784991494925" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15227894261111664121" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "571111110676591026" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7797585479500950991" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "60" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17a6483d2b2f5d3b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1411869262e1ace" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12916870790184043899" + } + } + } + ] + } + ] + }, + "cborHex": "d87c9fbf1b6201e443e03ff38b44afb1fcc341054597c76183754a3ec87b78a8864d2bbcd51b7d5842bcbf67a549428a581bbca156b48b38b68fffd8669f1b517ccdd1d28f3d8f9f465da4579d24799f1b03e9e3ad43ab030d1bd35459264ec52df91b07ecfe877f2831b21b6c3696ae2365edcfff4160ffffbf414c4817a6483d2b2f5d3b48e1411869262e1ace1bb341f18c128a057bffff", + "cborBytes": [ + 216, 124, 159, 191, 27, 98, 1, 228, 67, 224, 63, 243, 139, 68, 175, 177, 252, 195, 65, 5, 69, 151, 199, 97, 131, + 117, 74, 62, 200, 123, 120, 168, 134, 77, 43, 188, 213, 27, 125, 88, 66, 188, 191, 103, 165, 73, 66, 138, 88, 27, + 188, 161, 86, 180, 139, 56, 182, 143, 255, 216, 102, 159, 27, 81, 124, 205, 209, 210, 143, 61, 143, 159, 70, 93, + 164, 87, 157, 36, 121, 159, 27, 3, 233, 227, 173, 67, 171, 3, 13, 27, 211, 84, 89, 38, 78, 197, 45, 249, 27, 7, + 236, 254, 135, 127, 40, 49, 178, 27, 108, 54, 150, 174, 35, 101, 237, 207, 255, 65, 96, 255, 255, 191, 65, 76, 72, + 23, 166, 72, 61, 43, 47, 93, 59, 72, 225, 65, 24, 105, 38, 46, 26, 206, 27, 179, 65, 241, 140, 18, 138, 5, 123, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 645, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17052836143409569144" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10165768272285517884" + } + } + ] + }, + "cborHex": "d8669f1beca7d81f64de9d789f1b8d1410621283c83cffff", + "cborBytes": [ + 216, 102, 159, 27, 236, 167, 216, 31, 100, 222, 157, 120, 159, 27, 141, 20, 16, 98, 18, 131, 200, 60, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 646, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5790243990089501823" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4516897860960924535" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4554711522673483603" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b505b143b20200c7f9f1b3eaf3eac494c3377d8669f1b3f3595ff7b54df5380ffffff", + "cborBytes": [ + 216, 102, 159, 27, 80, 91, 20, 59, 32, 32, 12, 127, 159, 27, 62, 175, 62, 172, 73, 76, 51, 119, 216, 102, 159, 27, + 63, 53, 149, 255, 123, 84, 223, 83, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 647, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14604734412224096165" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12220593552228239481" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e29d7c610e0b89d8041c56" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7116819174407553946" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0ce94defd7f26a8e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f504733ce85019c7cc1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b96aa77ad4f53f65" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7255241358718906580" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11900745799012167379" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2093837387131058626" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5185900397341121760" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1965621933347533167" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11516341488100491965" + } + } + ] + }, + "cborHex": "d8669f1bcaae7091978a67a59f9f9f1ba998451698fe48794be29d7c610e0b89d8041c561b62c405552540439a480ce94defd7f26a8effbf4a4f504733ce85019c7cc148b96aa77ad4f53f65ff9f1b64afcb936a29b0d41ba527f1405857aed31b1d0ece028d60f9c21b47f804ef70131ce0ffff80d8669f1b1b474abbebe5716f80ff1b9fd243913652c2bdffff", + "cborBytes": [ + 216, 102, 159, 27, 202, 174, 112, 145, 151, 138, 103, 165, 159, 159, 159, 27, 169, 152, 69, 22, 152, 254, 72, 121, + 75, 226, 157, 124, 97, 14, 11, 137, 216, 4, 28, 86, 27, 98, 196, 5, 85, 37, 64, 67, 154, 72, 12, 233, 77, 239, + 215, 242, 106, 142, 255, 191, 74, 79, 80, 71, 51, 206, 133, 1, 156, 124, 193, 72, 185, 106, 167, 122, 212, 245, + 63, 101, 255, 159, 27, 100, 175, 203, 147, 106, 41, 176, 212, 27, 165, 39, 241, 64, 88, 87, 174, 211, 27, 29, 14, + 206, 2, 141, 96, 249, 194, 27, 71, 248, 4, 239, 112, 19, 28, 224, 255, 255, 128, 216, 102, 159, 27, 27, 71, 74, + 187, 235, 229, 113, 111, 128, 255, 27, 159, 210, 67, 145, 54, 82, 194, 189, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 648, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13680217111885799509" + }, + "fields": [] + }, + "cborHex": "d8669f1bbdd9e4fb7c2c605580ff", + "cborBytes": [216, 102, 159, 27, 189, 217, 228, 251, 124, 44, 96, 85, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 649, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8877224972930743739" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41d9f2b3bb8cc1bf2732" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12299011254853349957" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52f9f1fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01f3fd3cb1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8151" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93cd76e8e7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2924456186190899653" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d55d944c50681ab9b02c0644" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + ] + }, + "cborHex": "d8669f1b7b323d144ec37dbb9fbf4a41d9f2b3bb8cc1bf27321baaaedd92c610b2454452f9f1fd4501f3fd3cb141824281514593cd76e8e71b2895c1682b1a29c54cd55d944c50681ab9b02c064414ff1bfffffffffffffff8ffff", + "cborBytes": [ + 216, 102, 159, 27, 123, 50, 61, 20, 78, 195, 125, 187, 159, 191, 74, 65, 217, 242, 179, 187, 140, 193, 191, 39, + 50, 27, 170, 174, 221, 146, 198, 16, 178, 69, 68, 82, 249, 241, 253, 69, 1, 243, 253, 60, 177, 65, 130, 66, 129, + 81, 69, 147, 205, 118, 232, 231, 27, 40, 149, 193, 104, 43, 26, 41, 197, 76, 213, 93, 148, 76, 80, 104, 26, 185, + 176, 44, 6, 68, 20, 255, 27, 255, 255, 255, 255, 255, 255, 255, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 650, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6260696148497176636" + }, + "fields": [] + }, + "cborHex": "d8669f1b56e275f9f9d4983c80ff", + "cborBytes": [216, 102, 159, 27, 86, 226, 117, 249, 249, 212, 152, 60, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 651, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6081863777141634085" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "851472418433266683" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4841201850835062633" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9f32563e862f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15741287687768037898" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8635043425062484523" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "715588159591971954" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3959678426912940341" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15688026971956021060" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4609846392688568038" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9031329247948054742" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5147174818667285026" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10143558539753539939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ba502cc4f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13655978731272782463" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bbf304ea86df710917" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c97dee810b4edace51cf5d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2472127359611961031" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb64b754b4" + } + } + ] + } + ] + }, + "cborHex": "d905089fd8669f1b54671ee1d8d7b4259f1b0bd109a73cc1f3fbd8669f1b432f676efcfccf699f469f32563e862f1bda7449c048a4da0a1b77d5d63ea2ebfa2b1b09ee47a3c9f47c72ffff1b36f39a8cccec61351bd9b711698a2f8744ffffbf1b3ff976dec15166e641c71b7d55ba19d98a20d61b476e703a077fca221b8cc528bfc063c963457ba502cc4f1bbd83c84db9cdc27f49bbf304ea86df710917ff4bc97dee810b4edace51cf5dbf1b224ec2bc5531fec745fb64b754b4ffff", + "cborBytes": [ + 217, 5, 8, 159, 216, 102, 159, 27, 84, 103, 30, 225, 216, 215, 180, 37, 159, 27, 11, 209, 9, 167, 60, 193, 243, + 251, 216, 102, 159, 27, 67, 47, 103, 110, 252, 252, 207, 105, 159, 70, 159, 50, 86, 62, 134, 47, 27, 218, 116, 73, + 192, 72, 164, 218, 10, 27, 119, 213, 214, 62, 162, 235, 250, 43, 27, 9, 238, 71, 163, 201, 244, 124, 114, 255, + 255, 27, 54, 243, 154, 140, 204, 236, 97, 53, 27, 217, 183, 17, 105, 138, 47, 135, 68, 255, 255, 191, 27, 63, 249, + 118, 222, 193, 81, 102, 230, 65, 199, 27, 125, 85, 186, 25, 217, 138, 32, 214, 27, 71, 110, 112, 58, 7, 127, 202, + 34, 27, 140, 197, 40, 191, 192, 99, 201, 99, 69, 123, 165, 2, 204, 79, 27, 189, 131, 200, 77, 185, 205, 194, 127, + 73, 187, 243, 4, 234, 134, 223, 113, 9, 23, 255, 75, 201, 125, 238, 129, 11, 78, 218, 206, 81, 207, 93, 191, 27, + 34, 78, 194, 188, 85, 49, 254, 199, 69, 251, 100, 183, 84, 180, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 652, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "67156398b3663b4bebcc56" + } + ] + }, + "cborHex": "d87c9f4b67156398b3663b4bebcc56ff", + "cborBytes": [216, 124, 159, 75, 103, 21, 99, 152, 179, 102, 59, 75, 235, 204, 86, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 653, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15344925956723211427" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eec661eed6" + }, + { + "_tag": "ByteArray", + "bytearray": "0202a319109d0004" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1716616173342239267" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16777412513944521927" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3749418037769578955" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12133037345742606761" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4662672729052654486" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3531668219183743009" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4698403506470379430" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9371474567749358083" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4803825867286907619" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2b2d7c20294" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4947769364185352477" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06a7603659a48007" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14615406705350957851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4886280214245089609" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "936c96ca4e501b4a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7c9239aff278048" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb5848aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1086721981282853927" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bd4f420db53287ca39f45eec661eed6480202a319109d0004d8669f1bfffffffffffffff69fd8669f1b17d2a5508bc12a2380ffd8669f1be8d557ca77db4cc780ffbf1b34089bd70fb2a9cb1ba861352eaf8951a91b40b52424a715ab961b31030188a4fbc0211b413415188e9ddfa61b820e2a77984ed2031b42aa9e2cae780ae346e2b2d7c202941b44aa0205b6d4091d4806a7603659a480071bcad45af6784e5b1b1b43cf8df75b192149ffffff9fbf48936c96ca4e501b4a48a7c9239aff278048ffbf44cb5848aa1b0f14cfe25ff92427ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 212, 244, 32, 219, 83, 40, 124, 163, 159, 69, 238, 198, 97, 238, 214, 72, 2, 2, 163, 25, 16, + 157, 0, 4, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 216, 102, 159, 27, 23, 210, 165, 80, + 139, 193, 42, 35, 128, 255, 216, 102, 159, 27, 232, 213, 87, 202, 119, 219, 76, 199, 128, 255, 191, 27, 52, 8, + 155, 215, 15, 178, 169, 203, 27, 168, 97, 53, 46, 175, 137, 81, 169, 27, 64, 181, 36, 36, 167, 21, 171, 150, 27, + 49, 3, 1, 136, 164, 251, 192, 33, 27, 65, 52, 21, 24, 142, 157, 223, 166, 27, 130, 14, 42, 119, 152, 78, 210, 3, + 27, 66, 170, 158, 44, 174, 120, 10, 227, 70, 226, 178, 215, 194, 2, 148, 27, 68, 170, 2, 5, 182, 212, 9, 29, 72, + 6, 167, 96, 54, 89, 164, 128, 7, 27, 202, 212, 90, 246, 120, 78, 91, 27, 27, 67, 207, 141, 247, 91, 25, 33, 73, + 255, 255, 255, 159, 191, 72, 147, 108, 150, 202, 78, 80, 27, 74, 72, 167, 201, 35, 154, 255, 39, 128, 72, 255, + 191, 68, 203, 88, 72, 170, 27, 15, 20, 207, 226, 95, 249, 36, 39, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 654, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8971380363933296273" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "19e9ecb02c0257f402" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11162506964454728572" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7944757832519646046" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6274196815367900825" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3573687273200543877" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b7c80bee89928a6919f4919e9ecb02c0257f4029fa0801b9ae930f15325e37c9f1b6e417327d1d5fb5e1b57126cc2eee40e991b319849a40973e885ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 124, 128, 190, 232, 153, 40, 166, 145, 159, 73, 25, 233, 236, 176, 44, 2, 87, 244, 2, 159, 160, + 128, 27, 154, 233, 48, 241, 83, 37, 227, 124, 159, 27, 110, 65, 115, 39, 209, 213, 251, 94, 27, 87, 18, 108, 194, + 238, 228, 14, 153, 27, 49, 152, 73, 164, 9, 115, 232, 133, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 655, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "606743380682694062" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b086b95e3db695dae9f1bfffffffffffffff4a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 8, 107, 149, 227, 219, 105, 93, 174, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 160, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 656, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1848207639474371199" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "011ecb1fd9c21513fc" + }, + { + "_tag": "ByteArray", + "bytearray": "09f4bb6521" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9071434126358691007" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13526420413660400267" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12197361067307045609" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f71c" + } + ] + } + ] + }, + "cborHex": "d8669f1b19a6270e4e087a7f9f9fd9050c9f49011ecb1fd9c21513fc4509f4bb65211b7de4354680f73cbf1bbbb77fb33ed20a8b1ba945bb442e0412e9ff42f71cffffff", + "cborBytes": [ + 216, 102, 159, 27, 25, 166, 39, 14, 78, 8, 122, 127, 159, 159, 217, 5, 12, 159, 73, 1, 30, 203, 31, 217, 194, 21, + 19, 252, 69, 9, 244, 187, 101, 33, 27, 125, 228, 53, 70, 128, 247, 60, 191, 27, 187, 183, 127, 179, 62, 210, 10, + 139, 27, 169, 69, 187, 68, 46, 4, 18, 233, 255, 66, 247, 28, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 657, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24bf59095201a1540ff4b6d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "172387fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6abb6c2a08c18e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "470169503802948966" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbfca98abe12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9123166521663071162" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7392320151306738199" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f6ab9b9817d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13263466052729658604" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a102094a61c3f54908" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2499099d4b9a22d10c700899" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11252873622010873657" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "537771128d73142a0eaf" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17121474369961207184" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10274239681737665411" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6717701546111045540" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6fab065d126a422103024e" + }, + { + "_tag": "ByteArray", + "bytearray": "8b87f37575" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8717162819902700603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14229436054531569971" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16649860638295317456" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17575018825573084124" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e2717bcf58af4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17614647537948753772" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "43" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9fbf4c24bf59095201a1540ff4b6d644172387fa476abb6c2a08c18e1b068660ac32657d6646fbfca98abe121b7e9bff9d6676a3baffd8669f1b6696cc02ec999a179f80bf465f6ab9b9817d1bb8114c1a23675cec49a102094a61c3f549084c2499099d4b9a22d10c700899ff9f1b9c2a3cf05e524739ffffff4a537771128d73142a0eaf9fd8669f1bed9bb239dc7e25909f1b8e956e8e27322b831b5d3a11f6db0a8fa44b6fab065d126a422103024e458b87f37575ffffbf1b78f99566318afc3b1bc5791cb3687d79331be71030092959dbd01bf3e7028163162bdc470e2717bcf58af41bf473cc9bff24ff6cffff4143ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 191, 76, 36, 191, 89, 9, 82, 1, 161, 84, 15, 244, + 182, 214, 68, 23, 35, 135, 250, 71, 106, 187, 108, 42, 8, 193, 142, 27, 6, 134, 96, 172, 50, 101, 125, 102, 70, + 251, 252, 169, 138, 190, 18, 27, 126, 155, 255, 157, 102, 118, 163, 186, 255, 216, 102, 159, 27, 102, 150, 204, 2, + 236, 153, 154, 23, 159, 128, 191, 70, 95, 106, 185, 185, 129, 125, 27, 184, 17, 76, 26, 35, 103, 92, 236, 73, 161, + 2, 9, 74, 97, 195, 245, 73, 8, 76, 36, 153, 9, 157, 75, 154, 34, 209, 12, 112, 8, 153, 255, 159, 27, 156, 42, 60, + 240, 94, 82, 71, 57, 255, 255, 255, 74, 83, 119, 113, 18, 141, 115, 20, 42, 14, 175, 159, 216, 102, 159, 27, 237, + 155, 178, 57, 220, 126, 37, 144, 159, 27, 142, 149, 110, 142, 39, 50, 43, 131, 27, 93, 58, 17, 246, 219, 10, 143, + 164, 75, 111, 171, 6, 93, 18, 106, 66, 33, 3, 2, 78, 69, 139, 135, 243, 117, 117, 255, 255, 191, 27, 120, 249, + 149, 102, 49, 138, 252, 59, 27, 197, 121, 28, 179, 104, 125, 121, 51, 27, 231, 16, 48, 9, 41, 89, 219, 208, 27, + 243, 231, 2, 129, 99, 22, 43, 220, 71, 14, 39, 23, 188, 245, 138, 244, 27, 244, 115, 204, 155, 255, 36, 255, 108, + 255, 255, 65, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 658, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1978264986952861013" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10513255602012478184" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7757deabe8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12902684495441795466" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8538585103192429926" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16243238066422776728" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14157688469547198979" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12928750226807626529" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7749712682320301400" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12973709513771181436" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9293826573720389843" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8023411078851974195" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14935356788011350838" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff834da724" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17881910247490434590" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ef5c1d628e2" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ab29b81b78d349" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4418931512454772822" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3344e370f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8138477031836469690" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ecdf05296" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a96e3dba0a14595bdda46756" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b78d132eb6bd13" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8372380460950793452" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11747928558861506078" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "21" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4617978460787521955" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5887529196265792820" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6132231070588130494" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e7c79e83ef447b104" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6148681058072865852" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4519946007522013536" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6861559959126131987" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "760165feabd37f40330657bd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18047444818696276696" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18227772470173051212" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18233249645129885961" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17425032208537233754" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b1b7435863aeb05559f9fbf1b91e69644b6d6dae8457757deabe81bb30f8b2fefbf998a1b767f25e9783a15661be16b92f6073b83981bc47a36a704012a03ffffd8669f1bb36c25d4f29e9b219fbf1b6b8c829ff50a8d581bb40be010ab6fe57c1b80fa4e072ab088d31b6f58e1ddc9e7d4331bcf450bde2722bb3645ff834da7241bf8294ea0af15b61e460ef5c1d628e2ff47ab29b81b78d349ffffd8669f1b3d5332cc4ea578569fbf453344e370f21b70f1adbdaf49c9ba453ecdf052964ca96e3dba0a14595bdda4675647b78d132eb6bd131b7430ababa364acecffd8669f1ba30906c7f59b561e9f4121ffffffffbf1b40165af167a539a31b51b4b49c4c29e5341b551a0fab3304d4be497e7c79e83ef447b1041b555480d85f9b2c3c1b3eba12f2364b71601b5f39286dc0c1c5134c760165feabd37f40330657bd1bfa75677171db0ad81bfcf60e7c9b4f294c1bfd0983f2c6fbe9091bf1d22678cd9a295affffff", + "cborBytes": [ + 216, 102, 159, 27, 27, 116, 53, 134, 58, 235, 5, 85, 159, 159, 191, 27, 145, 230, 150, 68, 182, 214, 218, 232, 69, + 119, 87, 222, 171, 232, 27, 179, 15, 139, 47, 239, 191, 153, 138, 27, 118, 127, 37, 233, 120, 58, 21, 102, 27, + 225, 107, 146, 246, 7, 59, 131, 152, 27, 196, 122, 54, 167, 4, 1, 42, 3, 255, 255, 216, 102, 159, 27, 179, 108, + 37, 212, 242, 158, 155, 33, 159, 191, 27, 107, 140, 130, 159, 245, 10, 141, 88, 27, 180, 11, 224, 16, 171, 111, + 229, 124, 27, 128, 250, 78, 7, 42, 176, 136, 211, 27, 111, 88, 225, 221, 201, 231, 212, 51, 27, 207, 69, 11, 222, + 39, 34, 187, 54, 69, 255, 131, 77, 167, 36, 27, 248, 41, 78, 160, 175, 21, 182, 30, 70, 14, 245, 193, 214, 40, + 226, 255, 71, 171, 41, 184, 27, 120, 211, 73, 255, 255, 216, 102, 159, 27, 61, 83, 50, 204, 78, 165, 120, 86, 159, + 191, 69, 51, 68, 227, 112, 242, 27, 112, 241, 173, 189, 175, 73, 201, 186, 69, 62, 205, 240, 82, 150, 76, 169, + 110, 61, 186, 10, 20, 89, 91, 221, 164, 103, 86, 71, 183, 141, 19, 46, 182, 189, 19, 27, 116, 48, 171, 171, 163, + 100, 172, 236, 255, 216, 102, 159, 27, 163, 9, 6, 199, 245, 155, 86, 30, 159, 65, 33, 255, 255, 255, 255, 191, 27, + 64, 22, 90, 241, 103, 165, 57, 163, 27, 81, 180, 180, 156, 76, 41, 229, 52, 27, 85, 26, 15, 171, 51, 4, 212, 190, + 73, 126, 124, 121, 232, 62, 244, 71, 177, 4, 27, 85, 84, 128, 216, 95, 155, 44, 60, 27, 62, 186, 18, 242, 54, 75, + 113, 96, 27, 95, 57, 40, 109, 192, 193, 197, 19, 76, 118, 1, 101, 254, 171, 211, 127, 64, 51, 6, 87, 189, 27, 250, + 117, 103, 113, 113, 219, 10, 216, 27, 252, 246, 14, 124, 155, 79, 41, 76, 27, 253, 9, 131, 242, 198, 251, 233, 9, + 27, 241, 210, 38, 120, 205, 154, 41, 90, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 659, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12042402526258925706" + } + } + ] + }, + "cborHex": "d905019fa01ba71f354b53ee108aff", + "cborBytes": [217, 5, 1, 159, 160, 27, 167, 31, 53, 75, 83, 238, 16, 138, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 660, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7496588710359786837" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0fed4bd022803b70007" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b68093bb6a432e5559f4ac0fed4bd022803b70007d8669f1bfffffffffffffff380ffffff", + "cborBytes": [ + 216, 102, 159, 27, 104, 9, 59, 182, 164, 50, 229, 85, 159, 74, 192, 254, 212, 189, 2, 40, 3, 183, 0, 7, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 661, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9624020485453315566" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d96f5833c24" + }, + { + "_tag": "ByteArray", + "bytearray": "ad2b33652d884f5ab334882a" + } + ] + }, + "cborHex": "d8669f1b858f63a42a86fdee9f462d96f5833c244cad2b33652d884f5ab334882affff", + "cborBytes": [ + 216, 102, 159, 27, 133, 143, 99, 164, 42, 134, 253, 238, 159, 70, 45, 150, 245, 131, 60, 36, 76, 173, 43, 51, 101, + 45, 136, 79, 90, 179, 52, 136, 42, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 662, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1643bf1ef3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "159444" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "660d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2fc80" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16354732477790748887" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c67704fbee6983a1dad5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17949619325206973079" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da17b088fa629e1b8be418d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59afe465f4c356b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6e8ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "407a4c6dc669" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5199726661353476521" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7271934317371109659" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1556284206174825559" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3fd3d62c" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89fbf451643bf1ef34315944442660d415643b2fc801be2f7ae89974300d74ac67704fbee6983a1dad51bf919dbacd472ca974cda17b088fa629e1b8be418d54859afe465f4c356b543e6e8ab46407a4c6dc669ff1b482923d9631a11a9d8669f1b64eb19bbb8e0b11b80ffbf1b1599083d6e99ec57443fd3d62cff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 191, 69, 22, 67, 191, 30, 243, 67, 21, 148, 68, + 66, 102, 13, 65, 86, 67, 178, 252, 128, 27, 226, 247, 174, 137, 151, 67, 0, 215, 74, 198, 119, 4, 251, 238, 105, + 131, 161, 218, 213, 27, 249, 25, 219, 172, 212, 114, 202, 151, 76, 218, 23, 176, 136, 250, 98, 158, 27, 139, 228, + 24, 213, 72, 89, 175, 228, 101, 244, 195, 86, 181, 67, 230, 232, 171, 70, 64, 122, 76, 109, 198, 105, 255, 27, 72, + 41, 35, 217, 99, 26, 17, 169, 216, 102, 159, 27, 100, 235, 25, 187, 184, 224, 177, 27, 128, 255, 191, 27, 21, 153, + 8, 61, 110, 153, 236, 87, 68, 63, 211, 214, 44, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 663, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d54bd5f8" + }, + { + "_tag": "ByteArray", + "bytearray": "e103dd36" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "38ff8db9034ba5d5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2413590003482787138" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d2761f48d73" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12511397732197722505" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15487337774308839030" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14232341311721396900" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10665571661293624899" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4250392494133739283" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17583037260348889837" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14807301284795035798" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fa4e8ff723aca5ff3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1635505106006930275" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80be1bb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a1deb726f6ebee9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2167122785979718169" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd94726e024285641034" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de712dd319bd6d1d4d1c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0530cf75ff6e264ab426f" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c886" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15574156621454689484" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5401300581470694931" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12084235184603379642" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "739db3231f352783041c9a8c" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12738414297482388664" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17750622379418761950" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abde8061d2823634" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87e9f9f44d54bd5f844e103dd36ff4838ff8db9034ba5d59fbf1b217ecb5207067d42469d2761f48d731bada169f2ff45e9891bd6ee13a67a2ace76ff9f1bc5836f044f455aa41b9403b8ead5e11e431b3afc6d7430d3ff131bf4037f3ab78d9aed1bcd7e1a10ea64b096ffbf497fa4e8ff723aca5ff31b16b27b3a87e173634480be1bb6411b488a1deb726f6ebee91b1e132ab122f9da1941bd4acd94726e0242856410344ade712dd319bd6d1d4d1c4bf0530cf75ff6e264ab426fff42c886ffd8669f1bd82284ee8a1ac4cc9f1b4af54642f3abee13bf1ba7b3d3e0188fb7ba4c739db3231f352783041c9a8cffbf1bb0c7f0500331e4b81bf656e101db5abade48abde8061d28236344128ffffffa0ff", + "cborBytes": [ + 216, 126, 159, 159, 68, 213, 75, 213, 248, 68, 225, 3, 221, 54, 255, 72, 56, 255, 141, 185, 3, 75, 165, 213, 159, + 191, 27, 33, 126, 203, 82, 7, 6, 125, 66, 70, 157, 39, 97, 244, 141, 115, 27, 173, 161, 105, 242, 255, 69, 233, + 137, 27, 214, 238, 19, 166, 122, 42, 206, 118, 255, 159, 27, 197, 131, 111, 4, 79, 69, 90, 164, 27, 148, 3, 184, + 234, 213, 225, 30, 67, 27, 58, 252, 109, 116, 48, 211, 255, 19, 27, 244, 3, 127, 58, 183, 141, 154, 237, 27, 205, + 126, 26, 16, 234, 100, 176, 150, 255, 191, 73, 127, 164, 232, 255, 114, 58, 202, 95, 243, 27, 22, 178, 123, 58, + 135, 225, 115, 99, 68, 128, 190, 27, 182, 65, 27, 72, 138, 29, 235, 114, 111, 110, 190, 233, 27, 30, 19, 42, 177, + 34, 249, 218, 25, 65, 189, 74, 205, 148, 114, 110, 2, 66, 133, 100, 16, 52, 74, 222, 113, 45, 211, 25, 189, 109, + 29, 77, 28, 75, 240, 83, 12, 247, 95, 246, 226, 100, 171, 66, 111, 255, 66, 200, 134, 255, 216, 102, 159, 27, 216, + 34, 132, 238, 138, 26, 196, 204, 159, 27, 74, 245, 70, 66, 243, 171, 238, 19, 191, 27, 167, 179, 211, 224, 24, + 143, 183, 186, 76, 115, 157, 179, 35, 31, 53, 39, 131, 4, 28, 154, 140, 255, 191, 27, 176, 199, 240, 80, 3, 49, + 228, 184, 27, 246, 86, 225, 1, 219, 90, 186, 222, 72, 171, 222, 128, 97, 210, 130, 54, 52, 65, 40, 255, 255, 255, + 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 664, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11351444744886508594" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7b251192a91b62fd55e8ea" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "87a09d1370" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "385812043376680391" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8717568291170224590" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15834012583549395325" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11407623636879923303" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15209100427783490724" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03d548d86a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0f83f4fba9b4fd5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b3a71b00940" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16122825958433473829" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f4c9f3812" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbb3e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2faf68b6748eabb17" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "288cd8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc4d82e1ce27eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9811717505020623757" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff78b1900f818c8cb66ff4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6444974db2de83f72" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5971899664730520936" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15526645974950162552" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a185bfa4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15069889423485437806" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c7b733fc307b6" + }, + { + "_tag": "ByteArray", + "bytearray": "9517522e22b706" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8225b2" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17135832073096236075" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16321258496308793657" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bf9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59673b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e5d9f3d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff372dcabdce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a3458f6d6a021eae4b902d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82da9bb36c62ee5dcd9f4bb9" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9110444768587453643" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2147bff6a011e62aef09" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8294650039767168790" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10294628814971156607" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7740afd4988c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13465512780188849154" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "56663b" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14431575952995957615" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17892977888245865985" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b" + }, + { + "_tag": "ByteArray", + "bytearray": "f5d69cbc19d19c68d9" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b9d886eda5a6f5c329f4b7b251192a91b62fd55e8ea9f4587a09d1370bf1b055aae026388ddc741c31b78fb062c546909ce1bdbbdb68d7386e17d1b9e500541ef93d8671bd3119441ff46cca4ffbf4503d548d86a48c0f83f4fba9b4fd5468b3a71b009401bdfbfc8c96bdfc525458f4c9f381243cbb3e549f2faf68b6748eabb1743288cd847fc4d82e1ce27eb1b882a39160b3c7b8d4bff78b1900f818c8cb66ff449e6444974db2de83f72ffd8669f1b52e0731ac6897d689f1bd779ba402227307844a185bfa41bd12300964344076e475c7b733fc307b6479517522e22b706ffff438225b2ffbf1bedceb47b1fa58c2b1be280c220efcfd139428bf94359673b448e5d9f3d46ff372dcabdce4c9a3458f6d6a021eae4b902d24c82da9bb36c62ee5dcd9f4bb9ff9f9f1b7e6ecd3f717894cb4a2147bff6a011e62aef09ff9f1b731c8443a48077161b8eddde5d2adb387f467740afd4988cffd8669f1bbadf1c87bda394029f4356663bffffd8669f1bc84741de1364bb6f80ff9f1bf850a0969ad05e01410b49f5d69cbc19d19c68d9ffffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 157, 136, 110, 218, 90, 111, 92, 50, 159, 75, 123, 37, 17, 146, 169, 27, 98, 253, 85, 232, 234, + 159, 69, 135, 160, 157, 19, 112, 191, 27, 5, 90, 174, 2, 99, 136, 221, 199, 65, 195, 27, 120, 251, 6, 44, 84, 105, + 9, 206, 27, 219, 189, 182, 141, 115, 134, 225, 125, 27, 158, 80, 5, 65, 239, 147, 216, 103, 27, 211, 17, 148, 65, + 255, 70, 204, 164, 255, 191, 69, 3, 213, 72, 216, 106, 72, 192, 248, 63, 79, 186, 155, 79, 213, 70, 139, 58, 113, + 176, 9, 64, 27, 223, 191, 200, 201, 107, 223, 197, 37, 69, 143, 76, 159, 56, 18, 67, 203, 179, 229, 73, 242, 250, + 246, 139, 103, 72, 234, 187, 23, 67, 40, 140, 216, 71, 252, 77, 130, 225, 206, 39, 235, 27, 136, 42, 57, 22, 11, + 60, 123, 141, 75, 255, 120, 177, 144, 15, 129, 140, 140, 182, 111, 244, 73, 230, 68, 73, 116, 219, 45, 232, 63, + 114, 255, 216, 102, 159, 27, 82, 224, 115, 26, 198, 137, 125, 104, 159, 27, 215, 121, 186, 64, 34, 39, 48, 120, + 68, 161, 133, 191, 164, 27, 209, 35, 0, 150, 67, 68, 7, 110, 71, 92, 123, 115, 63, 195, 7, 182, 71, 149, 23, 82, + 46, 34, 183, 6, 255, 255, 67, 130, 37, 178, 255, 191, 27, 237, 206, 180, 123, 31, 165, 140, 43, 27, 226, 128, 194, + 32, 239, 207, 209, 57, 66, 139, 249, 67, 89, 103, 59, 68, 142, 93, 159, 61, 70, 255, 55, 45, 202, 189, 206, 76, + 154, 52, 88, 246, 214, 160, 33, 234, 228, 185, 2, 210, 76, 130, 218, 155, 179, 108, 98, 238, 93, 205, 159, 75, + 185, 255, 159, 159, 27, 126, 110, 205, 63, 113, 120, 148, 203, 74, 33, 71, 191, 246, 160, 17, 230, 42, 239, 9, + 255, 159, 27, 115, 28, 132, 67, 164, 128, 119, 22, 27, 142, 221, 222, 93, 42, 219, 56, 127, 70, 119, 64, 175, 212, + 152, 140, 255, 216, 102, 159, 27, 186, 223, 28, 135, 189, 163, 148, 2, 159, 67, 86, 102, 59, 255, 255, 216, 102, + 159, 27, 200, 71, 65, 222, 19, 100, 187, 111, 128, 255, 159, 27, 248, 80, 160, 150, 154, 208, 94, 1, 65, 11, 73, + 245, 214, 156, 188, 25, 209, 156, 104, 217, 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 665, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1958617449019350352" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1340366539053558661" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cd11c22fec863b6a9205017f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10766169393213040111" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bd1da0761b5f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16641585158865505982" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b1b2e683153ae1d509fd8669f1b1299f044051b6b859f4ccd11c22fec863b6a9205017f1b95691e05822565ef46bd1da0761b5fd8669f1be6f2c987f5974ebe80ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 27, 46, 104, 49, 83, 174, 29, 80, 159, 216, 102, 159, 27, 18, 153, 240, 68, 5, 27, 107, 133, + 159, 76, 205, 17, 194, 47, 236, 134, 59, 106, 146, 5, 1, 127, 27, 149, 105, 30, 5, 130, 37, 101, 239, 70, 189, 29, + 160, 118, 27, 95, 216, 102, 159, 27, 230, 242, 201, 135, 245, 151, 78, 190, 128, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 666, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8478740678242482845" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11920279574651397514" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10363976313190042884" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10553358273994089391" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2593701225997163107" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1cc829966a4e8f448e" + }, + { + "_tag": "ByteArray", + "bytearray": "4ee67e911f59a97c4b" + }, + { + "_tag": "ByteArray", + "bytearray": "c7823e98475ab9c8" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b75aa89b97d4c3a9d9f1ba56d571de670e58ad8669f1b8fd43d8bd0414d0480ffd8669f1b92750f6fa4d8e3af80ffd9050680d87a9fd8669f1b23fead85e50e5a639f491cc829966a4e8f448e494ee67e911f59a97c4b48c7823e98475ab9c8ffffa0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 117, 170, 137, 185, 125, 76, 58, 157, 159, 27, 165, 109, 87, 29, 230, 112, 229, 138, 216, 102, + 159, 27, 143, 212, 61, 139, 208, 65, 77, 4, 128, 255, 216, 102, 159, 27, 146, 117, 15, 111, 164, 216, 227, 175, + 128, 255, 217, 5, 6, 128, 216, 122, 159, 216, 102, 159, 27, 35, 254, 173, 133, 229, 14, 90, 99, 159, 73, 28, 200, + 41, 150, 106, 78, 143, 68, 142, 73, 78, 230, 126, 145, 31, 89, 169, 124, 75, 72, 199, 130, 62, 152, 71, 90, 185, + 200, 255, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 667, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "816708883804310934" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5447539364703564711" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12070538930736114048" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a851e4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12421905742356230530" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2676921021748841179" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13570231568906076765" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18434819228396208479" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17984346353427577324" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7917725771111191049" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3db5f723fec14983c7f42e23" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15235689849598206788" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1741073711001425769" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11580975986055406358" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6b8d4a4716bf" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e564b4bafa805f5e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3280335c44b667f5f377a3b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6ea9782786597d370fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14706579844431657708" + } + } + } + ] + } + ] + }, + "cborHex": "d905079fbf1b0b558867180fcd961b4b998c309d1cf3a71ba7832b347e0ca98043a851e41bac637975668731821b2526557c811d8adb1bbc5325b6b870425d1bffd5a26a9718c15f1bf9953bb929a479ec1b6de169a39009d209ff4c3db5f723fec14983c7f42e239f9f1bd3700b32315363441b18298950c802d7691ba0b7e44cf9296316466b8d4a4716bfffff48e564b4bafa805f5ebf4c3280335c44b667f5f377a3b841674ac6ea9782786597d370fc1bcc1844732044baecffff", + "cborBytes": [ + 217, 5, 7, 159, 191, 27, 11, 85, 136, 103, 24, 15, 205, 150, 27, 75, 153, 140, 48, 157, 28, 243, 167, 27, 167, + 131, 43, 52, 126, 12, 169, 128, 67, 168, 81, 228, 27, 172, 99, 121, 117, 102, 135, 49, 130, 27, 37, 38, 85, 124, + 129, 29, 138, 219, 27, 188, 83, 37, 182, 184, 112, 66, 93, 27, 255, 213, 162, 106, 151, 24, 193, 95, 27, 249, 149, + 59, 185, 41, 164, 121, 236, 27, 109, 225, 105, 163, 144, 9, 210, 9, 255, 76, 61, 181, 247, 35, 254, 193, 73, 131, + 199, 244, 46, 35, 159, 159, 27, 211, 112, 11, 50, 49, 83, 99, 68, 27, 24, 41, 137, 80, 200, 2, 215, 105, 27, 160, + 183, 228, 76, 249, 41, 99, 22, 70, 107, 141, 74, 71, 22, 191, 255, 255, 72, 229, 100, 180, 186, 250, 128, 95, 94, + 191, 76, 50, 128, 51, 92, 68, 182, 103, 245, 243, 119, 163, 184, 65, 103, 74, 198, 234, 151, 130, 120, 101, 151, + 211, 112, 252, 27, 204, 24, 68, 115, 32, 68, 186, 236, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 668, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4305607002064792921" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7357418906353355783" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9ed42262" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4094011061678578752" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6778540413132811268" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9531319580731138661" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9dbfa6a9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14397243132397942911" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11387627212226781228" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14701979118104118629" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9913173119746930629" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17349432194302467589" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8406375849339707268" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18409555704944413446" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22ce" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4760144046255354682" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6941c74671a337cb108fe1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6635" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "944a80a3d0a0aa6a87fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d29069842b4d5380e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3805411488155148482" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6c537901ebbd1b273ad3c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9838742920471194127" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17322340934290258844" + } + } + ] + }, + "cborHex": "d8669f1b3bc096c19c81ad599f1b661acd8398ef4c079f449ed42262ffbf1b38d0d95e9ddf1c401b5e1236976c692c041b84460ca8da346265449dbfa6a91bc7cd48595b82f87f1b9e08fa9d8359602c1bcc07ec1d0dce85651b8992aa6e1f7777c51bf0c590a8d41fde051b74a9724bcc50df841bff7be16029fa4b064222ceffbf1b420f6dca2cbdb33a4b6941c74671a337cb108fe14266354a944a80a3d0a0aa6a87fd49d29069842b4d5380e21b34cf899627ada0c24be6c537901ebbd1b273ad3c1b888a3c8eeb132a0fff1bf065514d52943b9cffff", + "cborBytes": [ + 216, 102, 159, 27, 59, 192, 150, 193, 156, 129, 173, 89, 159, 27, 102, 26, 205, 131, 152, 239, 76, 7, 159, 68, + 158, 212, 34, 98, 255, 191, 27, 56, 208, 217, 94, 157, 223, 28, 64, 27, 94, 18, 54, 151, 108, 105, 44, 4, 27, 132, + 70, 12, 168, 218, 52, 98, 101, 68, 157, 191, 166, 169, 27, 199, 205, 72, 89, 91, 130, 248, 127, 27, 158, 8, 250, + 157, 131, 89, 96, 44, 27, 204, 7, 236, 29, 13, 206, 133, 101, 27, 137, 146, 170, 110, 31, 119, 119, 197, 27, 240, + 197, 144, 168, 212, 31, 222, 5, 27, 116, 169, 114, 75, 204, 80, 223, 132, 27, 255, 123, 225, 96, 41, 250, 75, 6, + 66, 34, 206, 255, 191, 27, 66, 15, 109, 202, 44, 189, 179, 58, 75, 105, 65, 199, 70, 113, 163, 55, 203, 16, 143, + 225, 66, 102, 53, 74, 148, 74, 128, 163, 208, 160, 170, 106, 135, 253, 73, 210, 144, 105, 132, 43, 77, 83, 128, + 226, 27, 52, 207, 137, 150, 39, 173, 160, 194, 75, 230, 197, 55, 144, 30, 187, 209, 178, 115, 173, 60, 27, 136, + 138, 60, 142, 235, 19, 42, 15, 255, 27, 240, 101, 81, 77, 82, 148, 59, 156, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 669, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2888739782689172663" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16301373329158956763" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5082554821763679849" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6222066412697991553" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4270842700125141958" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11e36d767493" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba8a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8eeb2d49557cff9e9c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e60ab998f4b96818f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e94070d7fe6a34cfb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6668474936631781229" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8809542fe77530" + }, + { + "_tag": "ByteArray", + "bytearray": "391d84df1d2078d0be" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17306005684004449533" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1925686603061801555" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13175354990572842845" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13603657848351641504" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8834839637385396934" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1928604661106961504" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17523495649992267078" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a7d3a01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f7af8e8ed49d675" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16644808756633817951" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bee340a8f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11302597539176414809" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c105cac6e75337" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af9d20" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2c4b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2405895697621727408" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e66a43e6dec815" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16571526034894190731" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9e7aea3f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18063780060088919494" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4641072685605710903" + } + }, + { + "_tag": "ByteArray", + "bytearray": "710b72" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12084931616915968447" + } + }, + { + "_tag": "ByteArray", + "bytearray": "241c2b38008661d081701a" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b2816dd86f3ba2cb79fd8669f1be23a1cacab8be6db9f1b4688dcae8eac4669ffff1b5659386fb9c0b981d8669f1b3b4514ced0877bc69fbf4611e36d76749342ba8a498eeb2d49557cff9e9c493e60ab998f4b96818f499e94070d7fe6a34cfb1b5c8b2e9faf88676dff478809542fe7753049391d84df1d2078d0be9f1bf02b487a7bf9ecfd1b1ab969c3443a32531bb6d8438ed2c3af5dffd8669f1bbcc9e6bce0f44fa09f1b7a9ba7d759e5c2c6ffffffff1b1ac3c7b899716c609f1bf32ff67340e45546bf446a7d3a0141e4488f7af8e8ed49d6751be6fe3d604d78535f45bee340a8f81b9cdae49401d07e5947c105cac6e7533743af9d2043e2c4b51b21637563d76238b047e66a43e6dec8151be5f9e3210801788bff449e7aea3fd8669f1bfaaf7042366265c69f1b40686704a24bec3743710b721ba7b64d46e129d1bf4b241c2b38008661d081701affffffffff", + "cborBytes": [ + 216, 102, 159, 27, 40, 22, 221, 134, 243, 186, 44, 183, 159, 216, 102, 159, 27, 226, 58, 28, 172, 171, 139, 230, + 219, 159, 27, 70, 136, 220, 174, 142, 172, 70, 105, 255, 255, 27, 86, 89, 56, 111, 185, 192, 185, 129, 216, 102, + 159, 27, 59, 69, 20, 206, 208, 135, 123, 198, 159, 191, 70, 17, 227, 109, 118, 116, 147, 66, 186, 138, 73, 142, + 235, 45, 73, 85, 124, 255, 158, 156, 73, 62, 96, 171, 153, 143, 75, 150, 129, 143, 73, 158, 148, 7, 13, 127, 230, + 163, 76, 251, 27, 92, 139, 46, 159, 175, 136, 103, 109, 255, 71, 136, 9, 84, 47, 231, 117, 48, 73, 57, 29, 132, + 223, 29, 32, 120, 208, 190, 159, 27, 240, 43, 72, 122, 123, 249, 236, 253, 27, 26, 185, 105, 195, 68, 58, 50, 83, + 27, 182, 216, 67, 142, 210, 195, 175, 93, 255, 216, 102, 159, 27, 188, 201, 230, 188, 224, 244, 79, 160, 159, 27, + 122, 155, 167, 215, 89, 229, 194, 198, 255, 255, 255, 255, 27, 26, 195, 199, 184, 153, 113, 108, 96, 159, 27, 243, + 47, 246, 115, 64, 228, 85, 70, 191, 68, 106, 125, 58, 1, 65, 228, 72, 143, 122, 248, 232, 237, 73, 214, 117, 27, + 230, 254, 61, 96, 77, 120, 83, 95, 69, 190, 227, 64, 168, 248, 27, 156, 218, 228, 148, 1, 208, 126, 89, 71, 193, + 5, 202, 198, 231, 83, 55, 67, 175, 157, 32, 67, 226, 196, 181, 27, 33, 99, 117, 99, 215, 98, 56, 176, 71, 230, + 106, 67, 230, 222, 200, 21, 27, 229, 249, 227, 33, 8, 1, 120, 139, 255, 68, 158, 122, 234, 63, 216, 102, 159, 27, + 250, 175, 112, 66, 54, 98, 101, 198, 159, 27, 64, 104, 103, 4, 162, 75, 236, 55, 67, 113, 11, 114, 27, 167, 182, + 77, 70, 225, 41, 209, 191, 75, 36, 28, 43, 56, 0, 134, 97, 208, 129, 112, 26, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 670, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8195374144519742947" + }, + "fields": [] + }, + "cborHex": "d8669f1b71bbd15d0d8525e380ff", + "cborBytes": [216, 102, 159, 27, 113, 187, 209, 93, 13, 133, 37, 227, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 671, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17668461477387461675" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "587cfc42ba" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11527271854324908684" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8651" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17893840943065264175" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b60360ed1f53706812" + }, + { + "_tag": "ByteArray", + "bytearray": "1a9a4636096799" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9827165018079746263" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11799278316757870677" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1e30" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1394c70cf7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9462051986309067710" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3878064307963166860" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dc598123eece01b450" + }, + { + "_tag": "ByteArray", + "bytearray": "97" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12943476783417425687" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6722763786032703009" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf532fc1a275a642b9fa045587cfc42ba9f9f1b9ff918ad6a65028c4286511bf853b18836bef02f49b60360ed1f53706812471a9a4636096799ffd8669f1b88611a8473c9d8d780ff1ba3bf751d24526855421e30ff451394c70cf7d8669f1b834ff626423b33be9f1b35d1a6f0f444008c9f49dc598123eece01b45041971bb3a0778e9a1c7f171b5d4c0e0b6f56e621ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 245, 50, 252, 26, 39, 90, 100, 43, 159, 160, 69, 88, 124, 252, 66, 186, 159, 159, 27, 159, 249, + 24, 173, 106, 101, 2, 140, 66, 134, 81, 27, 248, 83, 177, 136, 54, 190, 240, 47, 73, 182, 3, 96, 237, 31, 83, 112, + 104, 18, 71, 26, 154, 70, 54, 9, 103, 153, 255, 216, 102, 159, 27, 136, 97, 26, 132, 115, 201, 216, 215, 128, 255, + 27, 163, 191, 117, 29, 36, 82, 104, 85, 66, 30, 48, 255, 69, 19, 148, 199, 12, 247, 216, 102, 159, 27, 131, 79, + 246, 38, 66, 59, 51, 190, 159, 27, 53, 209, 166, 240, 244, 68, 0, 140, 159, 73, 220, 89, 129, 35, 238, 206, 1, + 180, 80, 65, 151, 27, 179, 160, 119, 142, 154, 28, 127, 23, 27, 93, 76, 14, 11, 111, 86, 230, 33, 255, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 672, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18186684367552621789" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1409389649441914489" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16696792568453345478" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2440540937217054093" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6760704048862941072" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a2c803c60f202bb3b6" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6663397021527290737" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "71f9281d" + }, + { + "_tag": "ByteArray", + "bytearray": "0501" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17609278685994743603" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05b0f3934a5f10a2fd2270c7" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3080616939802447367" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29b10cb245106909f441c0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12000065156893748794" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "970453752306797338" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14186712765193772957" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5008533867789123928" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f1bfc6415133a1facddd8669f1b138f286b3d18fe799fd8669f1be7b6ec60ab0b30c69f41d51b21de8b0d469f158d1b5dd2d88340054f90ffff49a2c803c60f202bb3b6ffffd8669f1b5c7924497187b3719f4471f9281d4205019f1bf460b9aabd92f7334c05b0f3934a5f10a2fd2270c7ffbf1b2ac08cc8f1f9ce074b29b10cb245106909f441c01ba688cbae5e31ae3a1b0d77be8bc9310b1a1bc4e1541873dfdf9d1b4581e30433158158ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 27, 252, 100, 21, 19, 58, 31, 172, 221, 216, 102, + 159, 27, 19, 143, 40, 107, 61, 24, 254, 121, 159, 216, 102, 159, 27, 231, 182, 236, 96, 171, 11, 48, 198, 159, 65, + 213, 27, 33, 222, 139, 13, 70, 159, 21, 141, 27, 93, 210, 216, 131, 64, 5, 79, 144, 255, 255, 73, 162, 200, 3, + 198, 15, 32, 43, 179, 182, 255, 255, 216, 102, 159, 27, 92, 121, 36, 73, 113, 135, 179, 113, 159, 68, 113, 249, + 40, 29, 66, 5, 1, 159, 27, 244, 96, 185, 170, 189, 146, 247, 51, 76, 5, 176, 243, 147, 74, 95, 16, 162, 253, 34, + 112, 199, 255, 191, 27, 42, 192, 140, 200, 241, 249, 206, 7, 75, 41, 177, 12, 178, 69, 16, 105, 9, 244, 65, 192, + 27, 166, 136, 203, 174, 94, 49, 174, 58, 27, 13, 119, 190, 139, 201, 49, 11, 26, 27, 196, 225, 84, 24, 115, 223, + 223, 157, 27, 69, 129, 227, 4, 51, 21, 129, 88, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 673, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f80ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 674, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "086741c8" + }, + { + "_tag": "ByteArray", + "bytearray": "a9e239" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "451885502031471160" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12581413637654560171" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14907277590050334175" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d87b9f9f44086741c843a9e239d8669f1b06456b784bbc22389f1bae9a290b54a7bdab1bcee149fc6b1765dfffff80ffff", + "cborBytes": [ + 216, 123, 159, 159, 68, 8, 103, 65, 200, 67, 169, 226, 57, 216, 102, 159, 27, 6, 69, 107, 120, 75, 188, 34, 56, + 159, 27, 174, 154, 41, 11, 84, 167, 189, 171, 27, 206, 225, 73, 252, 107, 23, 101, 223, 255, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 675, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10703456618065097713" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6296362681776276722" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14763792420930830049" + } + }, + { + "_tag": "ByteArray", + "bytearray": "89" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16170210848082912892" + } + }, + { + "_tag": "ByteArray", + "bytearray": "32" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "994229913456613703" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13823477688191581653" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "766535983635678387" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b5eb748955cad80e625edc62" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "483123420560965970" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11777342972298634144" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5110839211007935286" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c1cade0ed19e0978b56" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7767925422664869604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8694461794212254599" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11310421796393454026" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "511d246ee533c4e2bea7e83f" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6223726132538856951" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "10824af343d9c218967e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "822002467642941472" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12262570620879167907" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b948a5115b492f3f19f1b57612c7fe04d04f29f9f1bcce386fc232fbee141891be0682117c726667c41321b0dcc36d6b0a61947ff1bbfd6dbb7ad327dd51b0aa3486a7428c4b34cb5eb748955cad80e625edc62ff9fbf1b06b46630f93541521ba3718708c5cda3a01b46ed592f1c4403364a5c1cade0ed19e0978b561b6bcd370403aa66e41b78a8eeefc53a13871b9cf6b0b2d9de09ca4c511d246ee533c4e2bea7e83fff1b565f1df15d4b55f7ff4a10824af343d9c218967ebf1b0b6856e3a05a20201baa2d670282a4e1a3ffffff", + "cborBytes": [ + 216, 102, 159, 27, 148, 138, 81, 21, 180, 146, 243, 241, 159, 27, 87, 97, 44, 127, 224, 77, 4, 242, 159, 159, 27, + 204, 227, 134, 252, 35, 47, 190, 225, 65, 137, 27, 224, 104, 33, 23, 199, 38, 102, 124, 65, 50, 27, 13, 204, 54, + 214, 176, 166, 25, 71, 255, 27, 191, 214, 219, 183, 173, 50, 125, 213, 27, 10, 163, 72, 106, 116, 40, 196, 179, + 76, 181, 235, 116, 137, 85, 202, 216, 14, 98, 94, 220, 98, 255, 159, 191, 27, 6, 180, 102, 48, 249, 53, 65, 82, + 27, 163, 113, 135, 8, 197, 205, 163, 160, 27, 70, 237, 89, 47, 28, 68, 3, 54, 74, 92, 28, 173, 224, 237, 25, 224, + 151, 139, 86, 27, 107, 205, 55, 4, 3, 170, 102, 228, 27, 120, 168, 238, 239, 197, 58, 19, 135, 27, 156, 246, 176, + 178, 217, 222, 9, 202, 76, 81, 29, 36, 110, 229, 51, 196, 226, 190, 167, 232, 63, 255, 27, 86, 95, 29, 241, 93, + 75, 85, 247, 255, 74, 16, 130, 74, 243, 67, 217, 194, 24, 150, 126, 191, 27, 11, 104, 86, 227, 160, 90, 32, 32, + 27, 170, 45, 103, 2, 130, 164, 225, 163, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 676, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8923250711117327427" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e50e3345cc2f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16203518947219759838" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "72d2671d559555250d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e6f24312c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e59467b1e41a8a9857dac7ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9220124348641226962" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f42b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f3722484480b57f24dbfa" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1610fd8126f10e3bf38bf6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3792" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2976e04126e0c7f86ec836af" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f579987d4d4b2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cfc45ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64104faaa6813ddb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fb7625d8f2519dd4cd9b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10465216369496964266" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94bb6d7a007db538bad81f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d99d55d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a43d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b295c6e14deb902d07" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f0091f3aa4" + }, + { + "_tag": "ByteArray", + "bytearray": "16" + }, + { + "_tag": "ByteArray", + "bytearray": "1d0b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17391922053331259694" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17800928336146491232" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b7bd5c13e8de66c439f46e50e3345cc2fd8669f1be0de76a1f05862de9fbf4972d2671d559555250d451e6f24312c4ce59467b1e41a8a9857dac7ea1b7ff4763ea9b0b0d242f42b4b1f3722484480b57f24dbfaffbf4b1610fd8126f10e3bf38bf64237924c2976e04126e0c7f86ec836af476f579987d4d4b2447cfc45ae4864104faaa6813ddb4b7fb7625d8f2519dd4cd9b81b913bead749783caa4b94bb6d7a007db538bad81f444d99d55d42a43d49b295c6e14deb902d07ff9f45f0091f3aa44116421d0bffbf1bf15c84f60e17912e1bf7099a0224326760ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 123, 213, 193, 62, 141, 230, 108, 67, 159, 70, 229, 14, 51, 69, 204, 47, 216, 102, 159, 27, + 224, 222, 118, 161, 240, 88, 98, 222, 159, 191, 73, 114, 210, 103, 29, 85, 149, 85, 37, 13, 69, 30, 111, 36, 49, + 44, 76, 229, 148, 103, 177, 228, 26, 138, 152, 87, 218, 199, 234, 27, 127, 244, 118, 62, 169, 176, 176, 210, 66, + 244, 43, 75, 31, 55, 34, 72, 68, 128, 181, 127, 36, 219, 250, 255, 191, 75, 22, 16, 253, 129, 38, 241, 14, 59, + 243, 139, 246, 66, 55, 146, 76, 41, 118, 224, 65, 38, 224, 199, 248, 110, 200, 54, 175, 71, 111, 87, 153, 135, + 212, 212, 178, 68, 124, 252, 69, 174, 72, 100, 16, 79, 170, 166, 129, 61, 219, 75, 127, 183, 98, 93, 143, 37, 25, + 221, 76, 217, 184, 27, 145, 59, 234, 215, 73, 120, 60, 170, 75, 148, 187, 109, 122, 0, 125, 181, 56, 186, 216, 31, + 68, 77, 153, 213, 93, 66, 164, 61, 73, 178, 149, 198, 225, 77, 235, 144, 45, 7, 255, 159, 69, 240, 9, 31, 58, 164, + 65, 22, 66, 29, 11, 255, 191, 27, 241, 92, 132, 246, 14, 23, 145, 46, 27, 247, 9, 154, 2, 36, 50, 103, 96, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 677, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a28bb4fe15f3043b4485" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "164042081190834943" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17969020326720683256" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8266063003260877868" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86ca3afb4694a3a949" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16545054652862683639" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6582000943015903547" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1230244876729120281" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9f4aa28bb4fe15f3043b4485bf1b0246cb67599872ff1bf95ec8c87ff5bcf81b72b6f481885cfc2c4986ca3afb4694a3a9491be59bd78c1d4dd9f71b5b57f6fc17bfc13bff9fd8669f1b1112b532802ef61980ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 74, 162, 139, 180, 254, 21, 243, 4, 59, 68, 133, + 191, 27, 2, 70, 203, 103, 89, 152, 114, 255, 27, 249, 94, 200, 200, 127, 245, 188, 248, 27, 114, 182, 244, 129, + 136, 92, 252, 44, 73, 134, 202, 58, 251, 70, 148, 163, 169, 73, 27, 229, 155, 215, 140, 29, 77, 217, 247, 27, 91, + 87, 246, 252, 23, 191, 193, 59, 255, 159, 216, 102, 159, 27, 17, 18, 181, 50, 128, 46, 246, 25, 128, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 678, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3321501530617070763" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4198944820305324231" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17848387054671150811" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4c645aaf130d4" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aa8704022960e8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "72ade1b8b3" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0edab245" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14974604302293529967" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42d2c7b72678a498bb0cd3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6715988044313342294" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e440cb3f19a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1054171563228882066" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3e01ffd5e08" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5243101726767538881" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5bb4e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5524596294557108870" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3fc7f8fe538f9c772918be8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17503783107695850607" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7724818156603108206" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10974943737702558746" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f5099c6654af92786f41006" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3419087022225569324" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80bcae017c165222" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6563419026716977529" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b09ed59966a7bdec06ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f3e182e0c521434920492c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b357faed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0fa38e0b8802e66" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2e18580b4558c4ab9fd8669f1b3a45a6112dc3e8c79fbf1bf7b235761f5abedb47c4c645aaf130d4ff47aa8704022960e89f4572ade1b8b3ffbf440edab2451bcfd07b462a3df56f4b42d2c7b72678a498bb0cd31b5d33fb8b21113156468e440cb3f19a1b0ea12b739693649246c3e01ffd5e081b48c33d3dc93762c143d5bb4e1b4cab4f0f30840a864cf3fc7f8fe538f9c772918be81bf2e9edff57b1b46fffd8669f1b6b34112f82d0eb6e80ffffffbf410b1b984ed52e83a8ac1a4c4f5099c6654af92786f410061b2f73098817e7362c4880bcae017c1652221b5b15f2d48f8169794ab09ed59966a7bdec06ad4c7f3e182e0c521434920492c044b357faed48d0fa38e0b8802e66ffffff", + "cborBytes": [ + 216, 102, 159, 27, 46, 24, 88, 11, 69, 88, 196, 171, 159, 216, 102, 159, 27, 58, 69, 166, 17, 45, 195, 232, 199, + 159, 191, 27, 247, 178, 53, 118, 31, 90, 190, 219, 71, 196, 198, 69, 170, 241, 48, 212, 255, 71, 170, 135, 4, 2, + 41, 96, 232, 159, 69, 114, 173, 225, 184, 179, 255, 191, 68, 14, 218, 178, 69, 27, 207, 208, 123, 70, 42, 61, 245, + 111, 75, 66, 210, 199, 183, 38, 120, 164, 152, 187, 12, 211, 27, 93, 51, 251, 139, 33, 17, 49, 86, 70, 142, 68, + 12, 179, 241, 154, 27, 14, 161, 43, 115, 150, 147, 100, 146, 70, 195, 224, 31, 253, 94, 8, 27, 72, 195, 61, 61, + 201, 55, 98, 193, 67, 213, 187, 78, 27, 76, 171, 79, 15, 48, 132, 10, 134, 76, 243, 252, 127, 143, 229, 56, 249, + 199, 114, 145, 139, 232, 27, 242, 233, 237, 255, 87, 177, 180, 111, 255, 216, 102, 159, 27, 107, 52, 17, 47, 130, + 208, 235, 110, 128, 255, 255, 255, 191, 65, 11, 27, 152, 78, 213, 46, 131, 168, 172, 26, 76, 79, 80, 153, 198, + 101, 74, 249, 39, 134, 244, 16, 6, 27, 47, 115, 9, 136, 23, 231, 54, 44, 72, 128, 188, 174, 1, 124, 22, 82, 34, + 27, 91, 21, 242, 212, 143, 129, 105, 121, 74, 176, 158, 213, 153, 102, 167, 189, 236, 6, 173, 76, 127, 62, 24, 46, + 12, 82, 20, 52, 146, 4, 146, 192, 68, 179, 87, 250, 237, 72, 208, 250, 56, 224, 184, 128, 46, 102, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 679, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15207918366373298132" + } + } + ] + }, + "cborHex": "d905079f1bd30d612de0d1bfd4ff", + "cborBytes": [217, 5, 7, 159, 27, 211, 13, 97, 45, 224, 209, 191, 212, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 680, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1508968262087954943" + }, + "fields": [] + }, + "cborHex": "d8669f1b14f0eea3b71751ff80ff", + "cborBytes": [216, 102, 159, 27, 20, 240, 238, 163, 183, 23, 81, 255, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 681, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "745513946341367348" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "359dce50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7933786412201616058" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4430530590939299350" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11746850842946963245" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dee7b57e892ed33e5a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15780229417670405898" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9628234771691713458" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2664004303567878893" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "554b065602" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a96b8f1667e9a8b3dc6f1b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "854201" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1900" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d50503d3071051fa380403" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0c8fefcfe055b44680103" + } + } + ] + } + ] + }, + "cborHex": "d87e9fbf1b0a5898fbfac6de3444359dce501b6e1a78b4f71922ba1b3d7c681937703e161ba305329aab5a072d49dee7b57e892ed33e5a1bdafea30c5269ef0a1b859e5c8324bfb3b2ff1b24f871ccb2467aedbf45554b0656024ba96b8f1667e9a8b3dc6f1b438542014219004bd50503d3071051fa3804034bd0c8fefcfe055b44680103ffff", + "cborBytes": [ + 216, 126, 159, 191, 27, 10, 88, 152, 251, 250, 198, 222, 52, 68, 53, 157, 206, 80, 27, 110, 26, 120, 180, 247, 25, + 34, 186, 27, 61, 124, 104, 25, 55, 112, 62, 22, 27, 163, 5, 50, 154, 171, 90, 7, 45, 73, 222, 231, 181, 126, 137, + 46, 211, 62, 90, 27, 218, 254, 163, 12, 82, 105, 239, 10, 27, 133, 158, 92, 131, 36, 191, 179, 178, 255, 27, 36, + 248, 113, 204, 178, 70, 122, 237, 191, 69, 85, 75, 6, 86, 2, 75, 169, 107, 143, 22, 103, 233, 168, 179, 220, 111, + 27, 67, 133, 66, 1, 66, 25, 0, 75, 213, 5, 3, 211, 7, 16, 81, 250, 56, 4, 3, 75, 208, 200, 254, 252, 254, 5, 91, + 68, 104, 1, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 682, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6483988882229282435" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11612950062298146182" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ce8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16022148362852513795" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "537496378920240529" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cd545d9d7fe9dfb" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10334232572419420012" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9062626275353889752" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18380497597782746871" + } + }, + { + "_tag": "ByteArray", + "bytearray": "21e54645" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b59fbc188e4dbc6839fbf1bfffffffffffffff51ba1297c8db9a1a586424ce81bde5a1b0c0a6e3803ff1bffffffffffffffef9fa0ffd8799fbf1b0775921bdd998591482cd545d9d7fe9dfbff9f1b8f6a91c58154af6c1b7dc4ea94e2970bd8ff9f1bff14a52e5ec2e6f74421e54645ff01ffffff", + "cborBytes": [ + 216, 102, 159, 27, 89, 251, 193, 136, 228, 219, 198, 131, 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 245, + 27, 161, 41, 124, 141, 185, 161, 165, 134, 66, 76, 232, 27, 222, 90, 27, 12, 10, 110, 56, 3, 255, 27, 255, 255, + 255, 255, 255, 255, 255, 239, 159, 160, 255, 216, 121, 159, 191, 27, 7, 117, 146, 27, 221, 153, 133, 145, 72, 44, + 213, 69, 217, 215, 254, 157, 251, 255, 159, 27, 143, 106, 145, 197, 129, 84, 175, 108, 27, 125, 196, 234, 148, + 226, 151, 11, 216, 255, 159, 27, 255, 20, 165, 46, 94, 194, 230, 247, 68, 33, 229, 70, 69, 255, 1, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 683, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9800147791412071613" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4012712623395764631" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f1b88011e7e2d720cbda01b37b004dee73af997ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 27, 136, 1, 30, 126, 45, 114, 12, 189, 160, 27, + 55, 176, 4, 222, 231, 58, 249, 151, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 684, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c9d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4dd936d00b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8fa95e8c19487c9a3204" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9123987109251768370" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a233d8c7b707ba41" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15259666974330580389" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b25e18c7eb43d35d39dbfd0a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9fbf423c9d454dd936d00b4a8fa95e8c19487c9a32041b7e9ee9ef5631e03248a233d8c7b707ba411bd3c53a4393bbeda54cb25e18c7eb43d35d39dbfd0a41ccffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 191, 66, 60, 157, 69, 77, 217, 54, 208, 11, 74, + 143, 169, 94, 140, 25, 72, 124, 154, 50, 4, 27, 126, 158, 233, 239, 86, 49, 224, 50, 72, 162, 51, 216, 199, 183, + 7, 186, 65, 27, 211, 197, 58, 67, 147, 187, 237, 165, 76, 178, 94, 24, 199, 235, 67, 211, 93, 57, 219, 253, 10, + 65, 204, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 685, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dff20c53" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15914843685046275875" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2579345709366626481" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7426717403272771152" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1f1f278d9aadabcb856a05" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14626223102499825967" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "241791461859862380" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2834ba9a842af7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3191748607302502240" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ec7f96c476654" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42c564ef4b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60ea955bdfb75350ab4157ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34ae7cbf04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d1496" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0384384898ab41b78db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aef45afbad80c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17748608427600858626" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7249d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c22" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "da301de0359040b17f3ad4" + } + ] + }, + "cborHex": "d87b9fd879809f9f44dff20c531bdcdce202d70d4f231b23cbad41b7b9c8b11b671100213d48f650ff4b1f1f278d9aadabcb856a051bcafac86b2e1d292f1b035b040db1e1276c80ffbf472834ba9a842af71b2c4b5e729e9d0760474ec7f96c4766544542c564ef4b4c60ea955bdfb75350ab4157ec4534ae7cbf04438d14964ad0384384898ab41b78db47aef45afbad80c81bf64fb95428a74e0243e7249d423c22ff4bda301de0359040b17f3ad4ff", + "cborBytes": [ + 216, 123, 159, 216, 121, 128, 159, 159, 68, 223, 242, 12, 83, 27, 220, 220, 226, 2, 215, 13, 79, 35, 27, 35, 203, + 173, 65, 183, 185, 200, 177, 27, 103, 17, 0, 33, 61, 72, 246, 80, 255, 75, 31, 31, 39, 141, 154, 173, 171, 203, + 133, 106, 5, 27, 202, 250, 200, 107, 46, 29, 41, 47, 27, 3, 91, 4, 13, 177, 225, 39, 108, 128, 255, 191, 71, 40, + 52, 186, 154, 132, 42, 247, 27, 44, 75, 94, 114, 158, 157, 7, 96, 71, 78, 199, 249, 108, 71, 102, 84, 69, 66, 197, + 100, 239, 75, 76, 96, 234, 149, 91, 223, 183, 83, 80, 171, 65, 87, 236, 69, 52, 174, 124, 191, 4, 67, 141, 20, + 150, 74, 208, 56, 67, 132, 137, 138, 180, 27, 120, 219, 71, 174, 244, 90, 251, 173, 128, 200, 27, 246, 79, 185, + 84, 40, 167, 78, 2, 67, 231, 36, 157, 66, 60, 34, 255, 75, 218, 48, 29, 224, 53, 144, 64, 177, 127, 58, 212, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 686, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16921024600089105077" + }, + "fields": [] + }, + "cborHex": "d8669f1bead38e38ebf512b580ff", + "cborBytes": [216, 102, 159, 27, 234, 211, 142, 56, 235, 245, 18, 181, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 687, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14728852948121219215" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2157162322705938603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1301667335263726268" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6440988588547735396" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06eedc2a80f8730db22b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fec921ace1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10936274303179642950" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14299445805207117450" + } + } + ] + }, + "cborHex": "d8669f1bcc6765b831baf08f9fbf1b1defc7b40fbe78ab1b1210738b7e1faabc1b5962fcfed6bb7f644a06eedc2a80f8730db22b45fec921ace11b97c573892f415846ff1bc671d632b851de8affff", + "cborBytes": [ + 216, 102, 159, 27, 204, 103, 101, 184, 49, 186, 240, 143, 159, 191, 27, 29, 239, 199, 180, 15, 190, 120, 171, 27, + 18, 16, 115, 139, 126, 31, 170, 188, 27, 89, 98, 252, 254, 214, 187, 127, 100, 74, 6, 238, 220, 42, 128, 248, 115, + 13, 178, 43, 69, 254, 201, 33, 172, 225, 27, 151, 197, 115, 137, 47, 65, 88, 70, 255, 27, 198, 113, 214, 50, 184, + 81, 222, 138, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 688, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10755790669973289004" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f2" + } + ] + }, + "cborHex": "d905039f1b95443ea0b237f82c41f2ff", + "cborBytes": [217, 5, 3, 159, 27, 149, 68, 62, 160, 178, 55, 248, 44, 65, 242, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 689, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7460236648562875418" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1405e95a808be372c489" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7677142941097354381" + } + }, + { + "_tag": "ByteArray", + "bytearray": "afda750a57d3284f" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "019556ab7924379fce18" + }, + { + "_tag": "ByteArray", + "bytearray": "ea994642b3aa69" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17684512873494989499" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea850b9a45203f4d8eb08e" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89fd8669f1bffffffffffffffff9fd8669f1b678815b4b1f0dc1a9f4a1405e95a808be372c4891b6a8ab0d46601648d48afda750a57d3284fffff9f4a019556ab7924379fce1847ea994642b3aa691bf56c02c30a7dcabb4bea850b9a45203f4d8eb08effffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 255, 159, 216, 102, 159, 27, 103, 136, 21, 180, 177, 240, 220, 26, 159, 74, 20, 5, 233, 90, 128, 139, 227, + 114, 196, 137, 27, 106, 138, 176, 212, 102, 1, 100, 141, 72, 175, 218, 117, 10, 87, 211, 40, 79, 255, 255, 159, + 74, 1, 149, 86, 171, 121, 36, 55, 159, 206, 24, 71, 234, 153, 70, 66, 179, 170, 105, 27, 245, 108, 2, 195, 10, + 125, 202, 187, 75, 234, 133, 11, 154, 69, 32, 63, 77, 142, 176, 142, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 690, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5608005311787963235" + }, + "fields": [] + }, + "cborHex": "d8669f1b4dd3a31e5ba0136380ff", + "cborBytes": [216, 102, 159, 27, 77, 211, 163, 30, 91, 160, 19, 99, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 691, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16496805474419548723" + }, + "fields": [] + }, + "cborHex": "d8669f1be4f06d2cd77f223380ff", + "cborBytes": [216, 102, 159, 27, 228, 240, 109, 44, 215, 127, 34, 51, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 692, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12372942291023908460" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54052de5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15974817729784556020" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17213172317940071687" + } + } + } + ] + } + ] + }, + "cborHex": "d905029fbf1babb5857582e34e6c4454052de51bddb1f416476ba9f41beee179061c67bd07ffff", + "cborBytes": [ + 217, 5, 2, 159, 191, 27, 171, 181, 133, 117, 130, 227, 78, 108, 68, 84, 5, 45, 229, 27, 221, 177, 244, 22, 71, + 107, 169, 244, 27, 238, 225, 121, 6, 28, 103, 189, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 693, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3667060781408411340" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18401871043277767088" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12830640435426722642" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1224473059844808287" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57551139d7da" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2103580433980008203" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f9361b5cb000626" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3015853360484421124" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3448962115552886062" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10954939189400828689" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3796ecbdea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12825883621838457352" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7ce8a51ab97475174" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13160221414678231928" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10400914349337488928" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "26c68bdadee4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11830994809097271679" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e311833a25d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "641c6f" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3751882331798089894" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12573448412391036544" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4383736249307454855" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11943709512382843702" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11893674052322675103" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de409ac5b0c9f92c1070" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17085800427791757029" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "219a1e62c350060adf" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ee" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f9fd8669f1b32e4045a0d9d5ecc9f1bff609437711e41b01bb20f977f125f8352ffffbf1b10fe33c2a915de5f4657551139d7da1b1d316b426bd7270b480f9361b5cb0006261b29da76a716578e041b2fdd2cc54d4f3d2e1b9807c326a83dfb11453796ecbdea1bb1feb1331a2e8a0849c7ce8a51ab974751741bb6a27fa69b627b781b9057787e8b862e20ffffbf4626c68bdadee41ba430231877bbb97f46e311833a25d743641c6fffbf1b34115d1a39e3b0a61bae7ddcb6ce4456801b3cd628e488f95d871ba5c0948562088b361ba50ed18902f9499f4ade409ac5b0c9f92c10701bed1cf4f6f1beaee549219a1e62c350060adfff41eeffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 159, 216, 102, 159, 27, 50, 228, 4, 90, 13, 157, + 94, 204, 159, 27, 255, 96, 148, 55, 113, 30, 65, 176, 27, 178, 15, 151, 127, 18, 95, 131, 82, 255, 255, 191, 27, + 16, 254, 51, 194, 169, 21, 222, 95, 70, 87, 85, 17, 57, 215, 218, 27, 29, 49, 107, 66, 107, 215, 39, 11, 72, 15, + 147, 97, 181, 203, 0, 6, 38, 27, 41, 218, 118, 167, 22, 87, 142, 4, 27, 47, 221, 44, 197, 77, 79, 61, 46, 27, 152, + 7, 195, 38, 168, 61, 251, 17, 69, 55, 150, 236, 189, 234, 27, 177, 254, 177, 51, 26, 46, 138, 8, 73, 199, 206, + 138, 81, 171, 151, 71, 81, 116, 27, 182, 162, 127, 166, 155, 98, 123, 120, 27, 144, 87, 120, 126, 139, 134, 46, + 32, 255, 255, 191, 70, 38, 198, 139, 218, 222, 228, 27, 164, 48, 35, 24, 119, 187, 185, 127, 70, 227, 17, 131, 58, + 37, 215, 67, 100, 28, 111, 255, 191, 27, 52, 17, 93, 26, 57, 227, 176, 166, 27, 174, 125, 220, 182, 206, 68, 86, + 128, 27, 60, 214, 40, 228, 136, 249, 93, 135, 27, 165, 192, 148, 133, 98, 8, 139, 54, 27, 165, 14, 209, 137, 2, + 249, 73, 159, 74, 222, 64, 154, 197, 176, 201, 249, 44, 16, 112, 27, 237, 28, 244, 246, 241, 190, 174, 229, 73, + 33, 154, 30, 98, 195, 80, 6, 10, 223, 255, 65, 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 694, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6626782357350725867" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7442201586822871435" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "77eab1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1c" + }, + { + "_tag": "ByteArray", + "bytearray": "2405097101a86e4dd1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7181206139670487411" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c4413f4" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dd2d7d06417b76e4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13724774316173407779" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "51ee146b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7044007113000295111" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7078939553577317551" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a602134dbb80e1b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17471365397074753118" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10553586878479336155" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17729555447048410998" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "296ebcf18e" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5bf70f719db738eb9f9f80ff41d5d8669f1b674802e9a96cf98b9f4377eab19f411c492405097101a86e4dd11b63a8c4efb5e9e173444c4413f4ffffff9f48dd2d7d06417b76e4d8669f1bbe78318609ebb6239f4451ee146b1b61c1572605b51ac71b623d7204a57034af480a602134dbb80e1bffff1bf276c242e9b1365effd8669f1b9275df59c5fc02db9fbf1bf60c08be6ee9977645296ebcf18effffffffff", + "cborBytes": [ + 216, 102, 159, 27, 91, 247, 15, 113, 157, 183, 56, 235, 159, 159, 128, 255, 65, 213, 216, 102, 159, 27, 103, 72, + 2, 233, 169, 108, 249, 139, 159, 67, 119, 234, 177, 159, 65, 28, 73, 36, 5, 9, 113, 1, 168, 110, 77, 209, 27, 99, + 168, 196, 239, 181, 233, 225, 115, 68, 76, 68, 19, 244, 255, 255, 255, 159, 72, 221, 45, 125, 6, 65, 123, 118, + 228, 216, 102, 159, 27, 190, 120, 49, 134, 9, 235, 182, 35, 159, 68, 81, 238, 20, 107, 27, 97, 193, 87, 38, 5, + 181, 26, 199, 27, 98, 61, 114, 4, 165, 112, 52, 175, 72, 10, 96, 33, 52, 219, 184, 14, 27, 255, 255, 27, 242, 118, + 194, 66, 233, 177, 54, 94, 255, 216, 102, 159, 27, 146, 117, 223, 89, 197, 252, 2, 219, 159, 191, 27, 246, 12, 8, + 190, 110, 233, 151, 118, 69, 41, 110, 188, 241, 142, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 695, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [] + }, + "cborHex": "d9050680", + "cborBytes": [217, 5, 6, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 696, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15211923754331044391" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11623764076179207687" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2409746741949300046" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16140474571167328607" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf4c916f321fdf6e734d80" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17531094462111701026" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14106424947061303635" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b1660b43c7ff33" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4679580637704002515" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "626b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9808869766611888424" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "663c5797bcb12e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d609fb329a9abd443464b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5d4f776" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9791d09b173d87b8c6" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9560f017a19cda0a2db0" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15999936781815259254" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1681580785474486145" + } + } + ] + }, + "cborHex": "d8669f1bd31b9c0eef3a7a279fbf1ba14fe7d7899bb6071b217123e4f88afd4e1bdffe7c1b48a7695f4bcf4c916f321fdf6e734d801bf34af58791fc58221bc3c416c0144c2953ff9f47b1660b43c7ff33a01b40f135cbe8249bd3bf42626b1b88201b1546f8692847663c5797bcb12e410441a74b6d609fb329a9abd443464b44c5d4f776499791d09b173d87b8c6ff4a9560f017a19cda0a2db0ff1bde0b31bb54ce20761b17562cd0a3543f81ffff", + "cborBytes": [ + 216, 102, 159, 27, 211, 27, 156, 14, 239, 58, 122, 39, 159, 191, 27, 161, 79, 231, 215, 137, 155, 182, 7, 27, 33, + 113, 35, 228, 248, 138, 253, 78, 27, 223, 254, 124, 27, 72, 167, 105, 95, 75, 207, 76, 145, 111, 50, 31, 223, 110, + 115, 77, 128, 27, 243, 74, 245, 135, 145, 252, 88, 34, 27, 195, 196, 22, 192, 20, 76, 41, 83, 255, 159, 71, 177, + 102, 11, 67, 199, 255, 51, 160, 27, 64, 241, 53, 203, 232, 36, 155, 211, 191, 66, 98, 107, 27, 136, 32, 27, 21, + 70, 248, 105, 40, 71, 102, 60, 87, 151, 188, 177, 46, 65, 4, 65, 167, 75, 109, 96, 159, 179, 41, 169, 171, 212, + 67, 70, 75, 68, 197, 212, 247, 118, 73, 151, 145, 208, 155, 23, 61, 135, 184, 198, 255, 74, 149, 96, 240, 23, 161, + 156, 218, 10, 45, 176, 255, 27, 222, 11, 49, 187, 84, 206, 32, 118, 27, 23, 86, 44, 208, 163, 84, 63, 129, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 697, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11108966604011304590" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bd02ae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14744721532517150594" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f8" + }, + { + "_tag": "ByteArray", + "bytearray": "5afdc5" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "195807af6f7f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15947035614139590280" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60742251bd76a42b7613" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "781f38fce30a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2536508034974798143" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3875890937411019285" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6f" + }, + { + "_tag": "ByteArray", + "bytearray": "dfd3289ad9" + }, + { + "_tag": "ByteArray", + "bytearray": "99a1" + } + ] + } + ] + } + ] + }, + "cborHex": "d87c9f9fd8669f1b9a2afa44bdc5768e9f43bd02ae1bcc9fc61ce9bcef8241f8435afdc5ffff46195807af6f7fffd8669f1bffffffffffffffeb9fbf1bdd4f4066694b26884a60742251bd76a42b761346781f38fce30a1b23337c9e6a98d13fffd8669f1b35c9ee45b08a22159f416f45dfd3289ad94299a1ffffffffff", + "cborBytes": [ + 216, 124, 159, 159, 216, 102, 159, 27, 154, 42, 250, 68, 189, 197, 118, 142, 159, 67, 189, 2, 174, 27, 204, 159, + 198, 28, 233, 188, 239, 130, 65, 248, 67, 90, 253, 197, 255, 255, 70, 25, 88, 7, 175, 111, 127, 255, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 191, 27, 221, 79, 64, 102, 105, 75, 38, 136, 74, 96, 116, + 34, 81, 189, 118, 164, 43, 118, 19, 70, 120, 31, 56, 252, 227, 10, 27, 35, 51, 124, 158, 106, 152, 209, 63, 255, + 216, 102, 159, 27, 53, 201, 238, 69, 176, 138, 34, 21, 159, 65, 111, 69, 223, 211, 40, 154, 217, 66, 153, 161, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 698, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12820483996347736075" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a932a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15464946237030906534" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87f9f801bb1eb8244d2e3200bbf1bfffffffffffffff80843a932a91bd69e86aa70bdbaa6ff0ba0ff", + "cborBytes": [ + 216, 127, 159, 128, 27, 177, 235, 130, 68, 210, 227, 32, 11, 191, 27, 255, 255, 255, 255, 255, 255, 255, 248, 8, + 67, 169, 50, 169, 27, 214, 158, 134, 170, 112, 189, 186, 166, 255, 11, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 699, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10739976769730453097" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfbe720e22" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7246551423807702717" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11794788157936364505" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b950c0ff81fbb1e699fbf45bfbe720e221bfffffffffffffff5ff9f1b6490ec2046a8c6bdd8669f1ba3af815692c7ebd980ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 149, 12, 15, 248, 31, 187, 30, 105, 159, 191, 69, 191, 190, 114, 14, 34, 27, 255, 255, 255, + 255, 255, 255, 255, 245, 255, 159, 27, 100, 144, 236, 32, 70, 168, 198, 189, 216, 102, 159, 27, 163, 175, 129, 86, + 146, 199, 235, 217, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 700, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16915864394052488909" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e70857554c3aa2a3ca70" + } + ] + }, + "cborHex": "d8669f1beac1390ad42d4ecd9f804ae70857554c3aa2a3ca70ffff", + "cborBytes": [ + 216, 102, 159, 27, 234, 193, 57, 10, 212, 45, 78, 205, 159, 128, 74, 231, 8, 87, 85, 76, 58, 162, 163, 202, 112, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 701, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18142579599997122538" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29fd8669f1bfbc76405cf13b7ea80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 216, 102, 159, 27, 251, 199, 100, 5, 207, 19, 183, + 234, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 702, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f2e710f34a45328fef8e598c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17354648512129195225" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4211395545021394172" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14151469634929970622" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1ea93f1cc7a5a6ef0fafad" + }, + { + "_tag": "ByteArray", + "bytearray": "4462949d444ba90dd613" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12858370492959019738" + } + }, + { + "_tag": "ByteArray", + "bytearray": "14b9dc971dc1" + }, + { + "_tag": "ByteArray", + "bytearray": "e250" + }, + { + "_tag": "ByteArray", + "bytearray": "135b04a0" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6158740367160335353" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9228591439616500638" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12488045972864015773" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16963758420683987694" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17868518198384322551" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d210317b97c9c20a5159d31c" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "baff57" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4052905455337124397" + } + } + ] + }, + "cborHex": "d9050d9f4cf2e710f34a45328fef8e598c1bf0d818df7738dcd99f1b3a71e1ef6da9acfcd8669f1bc4641ea7bfba4dbe9f4b1ea93f1cc7a5a6ef0fafad4a4462949d444ba90dd613ffff9f1bb2721bd6372fd2da4614b9dc971dc142e25044135b04a0ff1b55783dbbc8735bf9d8669f1b80128b04e78d639e9f1bad4e73a5d74e9d9d1beb6b6067e0691aee1bf7f9baa1454ce7f74cd210317b97c9c20a5159d31cffffff43baff571b383ed009d59cb22dff", + "cborBytes": [ + 217, 5, 13, 159, 76, 242, 231, 16, 243, 74, 69, 50, 143, 239, 142, 89, 140, 27, 240, 216, 24, 223, 119, 56, 220, + 217, 159, 27, 58, 113, 225, 239, 109, 169, 172, 252, 216, 102, 159, 27, 196, 100, 30, 167, 191, 186, 77, 190, 159, + 75, 30, 169, 63, 28, 199, 165, 166, 239, 15, 175, 173, 74, 68, 98, 148, 157, 68, 75, 169, 13, 214, 19, 255, 255, + 159, 27, 178, 114, 27, 214, 55, 47, 210, 218, 70, 20, 185, 220, 151, 29, 193, 66, 226, 80, 68, 19, 91, 4, 160, + 255, 27, 85, 120, 61, 187, 200, 115, 91, 249, 216, 102, 159, 27, 128, 18, 139, 4, 231, 141, 99, 158, 159, 27, 173, + 78, 115, 165, 215, 78, 157, 157, 27, 235, 107, 96, 103, 224, 105, 26, 238, 27, 247, 249, 186, 161, 69, 76, 231, + 247, 76, 210, 16, 49, 123, 151, 201, 194, 10, 81, 89, 211, 28, 255, 255, 255, 67, 186, 255, 87, 27, 56, 62, 208, + 9, 213, 156, 178, 45, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 703, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18001202771964084614" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8351375255568524746" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dc2465" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4251145736034344919" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19fd8669f1bf9d11e8bf0b241869f9f1b73e60b8c262625caff43dc24659f1b3aff1a85fcbe5fd7ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 216, 102, 159, 27, 249, 209, 30, 139, 240, 178, + 65, 134, 159, 159, 27, 115, 230, 11, 140, 38, 38, 37, 202, 255, 67, 220, 36, 101, 159, 27, 58, 255, 26, 133, 252, + 190, 95, 215, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 704, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15227059813749471832" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd03f3ff" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "30a48a00621f94d67b" + }, + { + "_tag": "ByteArray", + "bytearray": "9dcdb1daddd2ca13436177" + }, + { + "_tag": "ByteArray", + "bytearray": "07f8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6b4b544f7d64543fc1922a" + }, + { + "_tag": "ByteArray", + "bytearray": "bbc36464b8a3150a58" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12053075543227448684" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "73704798608581998" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15620963213324752822" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6327407386290872187" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12656666606849732359" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17030183213541798271" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "045403" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6012277dbc00b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b25dcf5fb23236a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d35feca7872b2e240ec47c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bfac76" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4e2f517ae5414d3fcf75da5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e0c55ab25bd438ad645" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f37b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bd35162396429ba589f44fd03f3ff9f9f4930a48a00621f94d67b4b9dcdb1daddd2ca134361774207f8ff1bfffffffffffffff49f4b6b4b544f7d64543fc1922a49bbc36464b8a3150a581ba7452058bd053d6cff9f1b0105da1fb34e656e1bd8c8cf4773aa97b61b57cf777e690cdf7bffff1bafa5833895d3af07bf41031bec575d6726fab17f43045403415f476012277dbc00b6487b25dcf5fb23236a4bd35feca7872b2e240ec47c43bfac764cd4e2f517ae5414d3fcf75da54a5e0c55ab25bd438ad64542f37b11ffffff", + "cborBytes": [ + 216, 102, 159, 27, 211, 81, 98, 57, 100, 41, 186, 88, 159, 68, 253, 3, 243, 255, 159, 159, 73, 48, 164, 138, 0, + 98, 31, 148, 214, 123, 75, 157, 205, 177, 218, 221, 210, 202, 19, 67, 97, 119, 66, 7, 248, 255, 27, 255, 255, 255, + 255, 255, 255, 255, 244, 159, 75, 107, 75, 84, 79, 125, 100, 84, 63, 193, 146, 42, 73, 187, 195, 100, 100, 184, + 163, 21, 10, 88, 27, 167, 69, 32, 88, 189, 5, 61, 108, 255, 159, 27, 1, 5, 218, 31, 179, 78, 101, 110, 27, 216, + 200, 207, 71, 115, 170, 151, 182, 27, 87, 207, 119, 126, 105, 12, 223, 123, 255, 255, 27, 175, 165, 131, 56, 149, + 211, 175, 7, 191, 65, 3, 27, 236, 87, 93, 103, 38, 250, 177, 127, 67, 4, 84, 3, 65, 95, 71, 96, 18, 39, 125, 188, + 0, 182, 72, 123, 37, 220, 245, 251, 35, 35, 106, 75, 211, 95, 236, 167, 135, 43, 46, 36, 14, 196, 124, 67, 191, + 172, 118, 76, 212, 226, 245, 23, 174, 84, 20, 211, 252, 247, 93, 165, 74, 94, 12, 85, 171, 37, 189, 67, 138, 214, + 69, 66, 243, 123, 17, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 705, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4476895526977826639" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5256014077745933236" + } + } + ] + }, + "cborHex": "d8669f1b3e2120c31e0c6f4f9f1b48f11cf4c67fabb4ffff", + "cborBytes": [ + 216, 102, 159, 27, 62, 33, 32, 195, 30, 12, 111, 79, 159, 27, 72, 241, 28, 244, 198, 127, 171, 180, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 706, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17115992430012019080" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4721446915461061599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14355765993539892585" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4729466634693071006" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f655eb5b17" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14497982835103026321" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c91cfb" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12076112275085751414" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "840347d334e611b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7931" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10215440377281476530" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bed88386e412431889fa0bf1b4185f2f44deb9bdf1bc739ed1c6b93f5691b41a270d8b1f1509e45f655eb5b171bc9332e932e06cc9143c91cfbff13bf1ba796f821d838747648840347d334e611b94279311b8dc488e6400b77b2ffffff", + "cborBytes": [ + 216, 102, 159, 27, 237, 136, 56, 110, 65, 36, 49, 136, 159, 160, 191, 27, 65, 133, 242, 244, 77, 235, 155, 223, + 27, 199, 57, 237, 28, 107, 147, 245, 105, 27, 65, 162, 112, 216, 177, 241, 80, 158, 69, 246, 85, 235, 91, 23, 27, + 201, 51, 46, 147, 46, 6, 204, 145, 67, 201, 28, 251, 255, 19, 191, 27, 167, 150, 248, 33, 216, 56, 116, 118, 72, + 132, 3, 71, 211, 52, 230, 17, 185, 66, 121, 49, 27, 141, 196, 136, 230, 64, 11, 119, 178, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 707, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9129291123076288460" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11745741937408401732" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f24be0c804b997" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7eb1c1e84a16cfcc9fbf1ba301420f7aa2e14447f24be0c804b997ffffff", + "cborBytes": [ + 216, 102, 159, 27, 126, 177, 193, 232, 74, 22, 207, 204, 159, 191, 27, 163, 1, 66, 15, 122, 162, 225, 68, 71, 242, + 75, 224, 200, 4, 185, 151, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 708, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4908483641694276457" + }, + "fields": [] + }, + "cborHex": "d8669f1b441e6fdda900cb6980ff", + "cborBytes": [216, 102, 159, 27, 68, 30, 111, 221, 169, 0, 203, 105, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 709, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3720378462943153643" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16223675632487478287" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18129721616071438370" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0eb8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5052683731744702474" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "839309dc4a6515ac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64a4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8458ecb44f68a68323c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8591099043613721857" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbfa995d0621dade1c5f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14194628126047649787" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "77e1fe4c21046a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6886428216576230778" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13804004995118957160" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13348780208748147073" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12969811761345899662" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7821557646524616612" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f920fb97" + }, + { + "_tag": "ByteArray", + "bytearray": "ec" + }, + { + "_tag": "ByteArray", + "bytearray": "53" + }, + { + "_tag": "ByteArray", + "bytearray": "91f8175675" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cda12a1b57a4d16227b79b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15093375160271955568" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1795178745300010196" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16928237548555890017" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14242637489082367229" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "407442579167357307" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14343444117709165128" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9141277576371287007" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4632755597568116473" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18305724801403877800" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14629697725441143532" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1307859637247726187" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11820629143487623299" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12254713195024058337" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11421601345636113274" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11010294365058540616" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5801683088515629152" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0979f71f98" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22b4975c140d0d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34a1911da387a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e91f4c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b465d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0854282cdd2181bd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77235fad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93324c1796654595" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14436477228424677716" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7d997683ed2fa0293152b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2238012034879237364" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5425847117828875259" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2750386173670610595" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5968310579240551399" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12227369051913237985" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d2bad93881660b3b4f36" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2318867673793820794" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "512d" + }, + { + "_tag": "ByteArray", + "bytearray": "7f69b4adca1f17b949" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "153f6cdb6ca002eefc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d51aa8fe6a3fa969e96c9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3545145351728505636" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7d542289a8f42d42ef7d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9123787279466824277" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b33a1708029bd8deb9f1be1261307f193b40fd8669f1bfb99b5c122a8b0229f420eb81b461ebd157109c00abf48839309dc4a6515ac4264a44a8458ecb44f68a68323c61b7739b71004cb45014afbfa995d0621dade1c5f1bc4fd731303d6bffbff4777e1fe4c21046affffd8669f1b5f9181fa2440c57a9f1bbf91ad6803c882681bb94064dfff32b181d8669f1bb3fe071476b4ac8e9f1b6c8bc13d37570fa444f920fb9741ec41534591f8175675ffff4bcda12a1b57a4d16227b79b9f1bd17670bd79b6e6701b18e9c18ebdf044d41beaed2e5c5b1a6d6141011bc5a80355e96a7cfdffffff9fbf1b05a786ddf5a3a97b1bc70e266e23b892481b7edc5785ecdab3df1b404adaabac4006f91bfe0affb80fbc79a81bcb072091e04272ecff1b122673692638d26b9f1ba40b4f93df35b0831baa117cb8fdb387e1ff1b9e81ade8dcc39b7a1b98cc6c63d5cca448ffd8669f1b5083b807c65d80609fbf450979f71f984722b4975c140d0d4734a1911da387a1448e91f4c6434b465d480854282cdd2181bd4477235fad410c4893324c17966545951bc858ab8d3044c9544bc7d997683ed2fa0293152b1b1f0f04169606acf4ff9f1b4b4c7b34cfc463fb1b262b55a71cc856a31b52d3b2d9b0d6c3e71ba9b0575e8ce4b5e1ff4ad2bad93881660b3b4f36d8669f1b202e45dd099df87a9f42512d497f69b4adca1f17b949ffffbf49153f6cdb6ca002eefc4bd51aa8fe6a3fa969e96c9e4236cf1b3132e2ea16e7a3244bc7d542289a8f42d42ef7d01b7e9e3430d6d90255ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 51, 161, 112, 128, 41, 189, 141, 235, 159, 27, 225, 38, 19, 7, 241, 147, 180, 15, 216, 102, + 159, 27, 251, 153, 181, 193, 34, 168, 176, 34, 159, 66, 14, 184, 27, 70, 30, 189, 21, 113, 9, 192, 10, 191, 72, + 131, 147, 9, 220, 74, 101, 21, 172, 66, 100, 164, 74, 132, 88, 236, 180, 79, 104, 166, 131, 35, 198, 27, 119, 57, + 183, 16, 4, 203, 69, 1, 74, 251, 250, 153, 93, 6, 33, 218, 222, 28, 95, 27, 196, 253, 115, 19, 3, 214, 191, 251, + 255, 71, 119, 225, 254, 76, 33, 4, 106, 255, 255, 216, 102, 159, 27, 95, 145, 129, 250, 36, 64, 197, 122, 159, 27, + 191, 145, 173, 104, 3, 200, 130, 104, 27, 185, 64, 100, 223, 255, 50, 177, 129, 216, 102, 159, 27, 179, 254, 7, + 20, 118, 180, 172, 142, 159, 27, 108, 139, 193, 61, 55, 87, 15, 164, 68, 249, 32, 251, 151, 65, 236, 65, 83, 69, + 145, 248, 23, 86, 117, 255, 255, 75, 205, 161, 42, 27, 87, 164, 209, 98, 39, 183, 155, 159, 27, 209, 118, 112, + 189, 121, 182, 230, 112, 27, 24, 233, 193, 142, 189, 240, 68, 212, 27, 234, 237, 46, 92, 91, 26, 109, 97, 65, 1, + 27, 197, 168, 3, 85, 233, 106, 124, 253, 255, 255, 255, 159, 191, 27, 5, 167, 134, 221, 245, 163, 169, 123, 27, + 199, 14, 38, 110, 35, 184, 146, 72, 27, 126, 220, 87, 133, 236, 218, 179, 223, 27, 64, 74, 218, 171, 172, 64, 6, + 249, 27, 254, 10, 255, 184, 15, 188, 121, 168, 27, 203, 7, 32, 145, 224, 66, 114, 236, 255, 27, 18, 38, 115, 105, + 38, 56, 210, 107, 159, 27, 164, 11, 79, 147, 223, 53, 176, 131, 27, 170, 17, 124, 184, 253, 179, 135, 225, 255, + 27, 158, 129, 173, 232, 220, 195, 155, 122, 27, 152, 204, 108, 99, 213, 204, 164, 72, 255, 216, 102, 159, 27, 80, + 131, 184, 7, 198, 93, 128, 96, 159, 191, 69, 9, 121, 247, 31, 152, 71, 34, 180, 151, 92, 20, 13, 13, 71, 52, 161, + 145, 29, 163, 135, 161, 68, 142, 145, 244, 198, 67, 75, 70, 93, 72, 8, 84, 40, 44, 221, 33, 129, 189, 68, 119, 35, + 95, 173, 65, 12, 72, 147, 50, 76, 23, 150, 101, 69, 149, 27, 200, 88, 171, 141, 48, 68, 201, 84, 75, 199, 217, + 151, 104, 62, 210, 250, 2, 147, 21, 43, 27, 31, 15, 4, 22, 150, 6, 172, 244, 255, 159, 27, 75, 76, 123, 52, 207, + 196, 99, 251, 27, 38, 43, 85, 167, 28, 200, 86, 163, 27, 82, 211, 178, 217, 176, 214, 195, 231, 27, 169, 176, 87, + 94, 140, 228, 181, 225, 255, 74, 210, 186, 217, 56, 129, 102, 11, 59, 79, 54, 216, 102, 159, 27, 32, 46, 69, 221, + 9, 157, 248, 122, 159, 66, 81, 45, 73, 127, 105, 180, 173, 202, 31, 23, 185, 73, 255, 255, 191, 73, 21, 63, 108, + 219, 108, 160, 2, 238, 252, 75, 213, 26, 168, 254, 106, 63, 169, 105, 233, 108, 158, 66, 54, 207, 27, 49, 50, 226, + 234, 22, 231, 163, 36, 75, 199, 213, 66, 40, 154, 143, 66, 212, 46, 247, 208, 27, 126, 158, 52, 48, 214, 217, 2, + 85, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 710, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16112713646754006599" + }, + "fields": [] + }, + "cborHex": "d8669f1bdf9bdbb1625c864780ff", + "cborBytes": [216, 102, 159, 27, 223, 155, 219, 177, 98, 92, 134, 71, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 711, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16996876438731897191" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1579236574135439035" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d5d63b9c58246c16" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15611011333703730474" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bebe1091155d239679fd87a9f9f1b15ea934c09a5cebb48d5d63b9c58246c161bd8a57418ea02052affffffff", + "cborBytes": [ + 216, 102, 159, 27, 235, 225, 9, 17, 85, 210, 57, 103, 159, 216, 122, 159, 159, 27, 21, 234, 147, 76, 9, 165, 206, + 187, 72, 213, 214, 59, 156, 88, 36, 108, 22, 27, 216, 165, 116, 24, 234, 2, 5, 42, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 712, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7397962567706374110" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4065310930552364637" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d4e8" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10025053924821640172" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17674134132360440309" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14304915805731259114" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4181666766269991005" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17428759695101396145" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9649767385273833240" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e307656ef8c7a6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cc25927fd4b3397a1a1be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10717563599863805752" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1893740117982042186" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11375231573945574839" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "91f9ef2c903e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5765288856661760204" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b5ee332c3c296c122f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "917896456494651538" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1145078019281098216" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16644454483452779761" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00cf9ce4" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4045253399916036677" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66d4c800a424e94b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15051810565328847187" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4e707a8" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6989271987171829917" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15194139824881888131" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e33d0f2d75b2a304b310cac4" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d87c9f9f9f1b66aad7c25dc66fde1b386ae2c09d161e5d42d4e8ffbf1b8b20256dfb2123ec1bf547235a0ff369f5ff1bc6854522767b82eabf1b3a0843c4bc94485d1bf1df6499e62a04b11b85eadc4f6c65971847e307656ef8c7a6411a41e24b4cc25927fd4b3397a1a1be1b94bc6f4f5b89f738ffff1b1a47ea9a9539d84ad8669f1b9ddcf0d912d565b780ff9f4691f9ef2c903ed8669f1b50026bab58d798cc9f49b5ee332c3c296c122f1b0cbd05f6c5f418921b0fe42264435b95e81be6fcfb2aa65c5cf14400cf9ce4ffffbf1b3823a088d86fc2454866d4c800a424e94b1bd0e2c5f614e5c15344e4e707a8ffff9f1b60fee1d771f7289dbf1bd2dc6dab31b36b834ce33d0f2d75b2a304b310cac4ff80ffff", + "cborBytes": [ + 216, 124, 159, 159, 159, 27, 102, 170, 215, 194, 93, 198, 111, 222, 27, 56, 106, 226, 192, 157, 22, 30, 93, 66, + 212, 232, 255, 191, 27, 139, 32, 37, 109, 251, 33, 35, 236, 27, 245, 71, 35, 90, 15, 243, 105, 245, 255, 27, 198, + 133, 69, 34, 118, 123, 130, 234, 191, 27, 58, 8, 67, 196, 188, 148, 72, 93, 27, 241, 223, 100, 153, 230, 42, 4, + 177, 27, 133, 234, 220, 79, 108, 101, 151, 24, 71, 227, 7, 101, 110, 248, 199, 166, 65, 26, 65, 226, 75, 76, 194, + 89, 39, 253, 75, 51, 151, 161, 161, 190, 27, 148, 188, 111, 79, 91, 137, 247, 56, 255, 255, 27, 26, 71, 234, 154, + 149, 57, 216, 74, 216, 102, 159, 27, 157, 220, 240, 217, 18, 213, 101, 183, 128, 255, 159, 70, 145, 249, 239, 44, + 144, 62, 216, 102, 159, 27, 80, 2, 107, 171, 88, 215, 152, 204, 159, 73, 181, 238, 51, 44, 60, 41, 108, 18, 47, + 27, 12, 189, 5, 246, 197, 244, 24, 146, 27, 15, 228, 34, 100, 67, 91, 149, 232, 27, 230, 252, 251, 42, 166, 92, + 92, 241, 68, 0, 207, 156, 228, 255, 255, 191, 27, 56, 35, 160, 136, 216, 111, 194, 69, 72, 102, 212, 200, 0, 164, + 36, 233, 75, 27, 208, 226, 197, 246, 20, 229, 193, 83, 68, 228, 231, 7, 168, 255, 255, 159, 27, 96, 254, 225, 215, + 113, 247, 40, 157, 191, 27, 210, 220, 109, 171, 49, 179, 107, 131, 76, 227, 61, 15, 45, 117, 178, 163, 4, 179, 16, + 202, 196, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 713, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9313601422054377366" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "39daf0a46e1f2b1a1d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + }, + "cborHex": "d8669f1b81408f25d51fc7969f9f4939daf0a46e1f2b1a1dff09ffff", + "cborBytes": [ + 216, 102, 159, 27, 129, 64, 143, 37, 213, 31, 199, 150, 159, 159, 73, 57, 218, 240, 164, 110, 31, 43, 26, 29, 255, + 9, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 714, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16610603742921305642" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12580648351511938713" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5890937084268807679" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17912506240930383340" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc01476a7b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "289c4e56a55fda9524" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10613286209587852319" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15093372834814018321" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6700426573322519318" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15050470175036326902" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2eae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11659063233802972503" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11163786792827818494" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "143825" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73fdf2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a73cd2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7978b63bb8d39e12" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4600a195b9ce5d422c339" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1028228588091590040" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb99520f8164" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17557721977012048478" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb7152e8827973968d34" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7a481" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "947cc4" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d905019f1be684b818f1992e2abf1bae97710543f906991b51c0d0110e0485ff1bf8960185879f85ec45cc01476a7b49289c4e56a55fda95241b9349f7937609341fff1bd1766ea0099ec311a09f410b1b5cfcb277d27a0316d8669f1bd0de02e225a6c3f69f422eae1ba1cd503d20a4ad571b9aedbcf096b311feffffbf431438254373fdf243a73cd2487978b63bb8d39e124bb4600a195b9ce5d422c3391b0e450073fd19c59846bb99520f81641bf3a98f1d00df525e42ca384acb7152e8827973968d3443f7a48143947cc4ff80ffff", + "cborBytes": [ + 217, 5, 1, 159, 27, 230, 132, 184, 24, 241, 153, 46, 42, 191, 27, 174, 151, 113, 5, 67, 249, 6, 153, 27, 81, 192, + 208, 17, 14, 4, 133, 255, 27, 248, 150, 1, 133, 135, 159, 133, 236, 69, 204, 1, 71, 106, 123, 73, 40, 156, 78, 86, + 165, 95, 218, 149, 36, 27, 147, 73, 247, 147, 118, 9, 52, 31, 255, 27, 209, 118, 110, 160, 9, 158, 195, 17, 160, + 159, 65, 11, 27, 92, 252, 178, 119, 210, 122, 3, 22, 216, 102, 159, 27, 208, 222, 2, 226, 37, 166, 195, 246, 159, + 66, 46, 174, 27, 161, 205, 80, 61, 32, 164, 173, 87, 27, 154, 237, 188, 240, 150, 179, 17, 254, 255, 255, 191, 67, + 20, 56, 37, 67, 115, 253, 242, 67, 167, 60, 210, 72, 121, 120, 182, 59, 184, 211, 158, 18, 75, 180, 96, 10, 25, + 91, 156, 229, 212, 34, 195, 57, 27, 14, 69, 0, 115, 253, 25, 197, 152, 70, 187, 153, 82, 15, 129, 100, 27, 243, + 169, 143, 29, 0, 223, 82, 94, 66, 202, 56, 74, 203, 113, 82, 232, 130, 121, 115, 150, 141, 52, 67, 247, 164, 129, + 67, 148, 124, 196, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 715, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4877870473457241282" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12419227175563059856" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4990168790903494640" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13782222934297545350" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "756715830262997590" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0503" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a570ac5f133163" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "380a01" + } + ] + } + ] + }, + "cborHex": "d905019fbf1b43b1ad59fec90cc21bffffffffffffffec1bac59f550f85062900f1bffffffffffffffee1b4540a413870b17f0ffbf131bbf444abcc60c0a861b0a806509d2bda256420503ff47a570ac5f133163a09f43380a01ffff", + "cborBytes": [ + 217, 5, 1, 159, 191, 27, 67, 177, 173, 89, 254, 201, 12, 194, 27, 255, 255, 255, 255, 255, 255, 255, 236, 27, 172, + 89, 245, 80, 248, 80, 98, 144, 15, 27, 255, 255, 255, 255, 255, 255, 255, 238, 27, 69, 64, 164, 19, 135, 11, 23, + 240, 255, 191, 19, 27, 191, 68, 74, 188, 198, 12, 10, 134, 27, 10, 128, 101, 9, 210, 189, 162, 86, 66, 5, 3, 255, + 71, 165, 112, 172, 95, 19, 49, 99, 160, 159, 67, 56, 10, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 716, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16289302958393057345" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17967050396587585077" + } + }, + { + "_tag": "ByteArray", + "bytearray": "296fb9ada80b21a0038f" + }, + { + "_tag": "ByteArray", + "bytearray": "5fcc1331f33c4d010e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "003c42eb40e40d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7296527524427591504" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bc8ebd" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11511579886505885540" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1be20f3abc79bce0419f1bf957c9246624ee354a296fb9ada80b21a0038f495fcc1331f33c4d010e9f47003c42eb40e40d9f1b6542791ff35def5043bc8ebdff1b9fc158ea72b6ff64ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 226, 15, 58, 188, 121, 188, 224, 65, 159, 27, 249, 87, 201, 36, 102, 36, 238, 53, 74, 41, 111, + 185, 173, 168, 11, 33, 160, 3, 143, 73, 95, 204, 19, 49, 243, 60, 77, 1, 14, 159, 71, 0, 60, 66, 235, 64, 228, 13, + 159, 27, 101, 66, 121, 31, 243, 93, 239, 80, 67, 188, 142, 189, 255, 27, 159, 193, 88, 234, 114, 182, 255, 100, + 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 717, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14050488438904385616" + }, + "fields": [] + }, + "cborHex": "d8669f1bc2fd5ccae1a0f05080ff", + "cborBytes": [216, 102, 159, 27, 194, 253, 92, 202, 225, 160, 240, 80, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 718, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3253943753846229122" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17708882752899913512" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14482126191893892707" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "151019312804180583" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0612" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17059630670145527006" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "278980740941612423" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2d28549a9f1b08829f1bf5c29709bfa41728d8669f1bc8fad90abc374e6380ffbf1b02188743cdeab2674206121becbffbb56d621cde081bfffffffffffffffc1b03df23817b000587ffffff", + "cborBytes": [ + 216, 102, 159, 27, 45, 40, 84, 154, 159, 27, 8, 130, 159, 27, 245, 194, 151, 9, 191, 164, 23, 40, 216, 102, 159, + 27, 200, 250, 217, 10, 188, 55, 78, 99, 128, 255, 191, 27, 2, 24, 135, 67, 205, 234, 178, 103, 66, 6, 18, 27, 236, + 191, 251, 181, 109, 98, 28, 222, 8, 27, 255, 255, 255, 255, 255, 255, 255, 252, 27, 3, 223, 35, 129, 123, 0, 5, + 135, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 719, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8114007457019344417" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17406992636791805693" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13055362156411929261" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f59d967d01439" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13112537858395649605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17822750607769902926" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18100658646644263918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a8a" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d87b9fbf1b709abecad48236211bf1920f93b3d0d6fd1bb52df6b60302c2ad470f59d967d014391bb5f917b58188b6451bf757213fb0809f4e1bfb32752341d58bee422a8aff80ff", + "cborBytes": [ + 216, 123, 159, 191, 27, 112, 154, 190, 202, 212, 130, 54, 33, 27, 241, 146, 15, 147, 179, 208, 214, 253, 27, 181, + 45, 246, 182, 3, 2, 194, 173, 71, 15, 89, 217, 103, 208, 20, 57, 27, 181, 249, 23, 181, 129, 136, 182, 69, 27, + 247, 87, 33, 63, 176, 128, 159, 78, 27, 251, 50, 117, 35, 65, 213, 139, 238, 66, 42, 138, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 720, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14295691622795109127" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2328811523004004403" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b" + } + ] + }, + "cborHex": "d8669f1bc6647fca033ae3079f80a01b205199bdd97d7833414bffff", + "cborBytes": [ + 216, 102, 159, 27, 198, 100, 127, 202, 3, 58, 227, 7, 159, 128, 160, 27, 32, 81, 153, 189, 217, 125, 120, 51, 65, + 75, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 721, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9e3ff232fd" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19f459e3ff232fdffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 69, 158, 63, 242, 50, 253, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 722, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2001839226598463393" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12471671885220661178" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf4931327278" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b5cbe7d733" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9986134373392416883" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6400440333402479559" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c5928ad54371609a4b" + }, + { + "_tag": "ByteArray", + "bytearray": "4d54917b1f1ad490bab9" + }, + { + "_tag": "ByteArray", + "bytearray": "36dd656560c2a870d4a280" + }, + { + "_tag": "ByteArray", + "bytearray": "fcfd9a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5570035395623918578" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7b488b85ff519b70eb0ea5" + } + ] + } + ] + }, + "cborHex": "d87e9f809f9f1b1bc7f62b9ed817a1415dff1bad14478079cdc7ba46bf4931327278ff45b5cbe7d7339fd8669f1b8a95e04dc55f80739f1b58d2ee927e899bc749c5928ad54371609a4b4a4d54917b1f1ad490bab94b36dd656560c2a870d4a28043fcfd9affffd8669f1b4d4cbdae56841bf280ff4b7b488b85ff519b70eb0ea5ffff", + "cborBytes": [ + 216, 126, 159, 128, 159, 159, 27, 27, 199, 246, 43, 158, 216, 23, 161, 65, 93, 255, 27, 173, 20, 71, 128, 121, + 205, 199, 186, 70, 191, 73, 49, 50, 114, 120, 255, 69, 181, 203, 231, 215, 51, 159, 216, 102, 159, 27, 138, 149, + 224, 77, 197, 95, 128, 115, 159, 27, 88, 210, 238, 146, 126, 137, 155, 199, 73, 197, 146, 138, 213, 67, 113, 96, + 154, 75, 74, 77, 84, 145, 123, 31, 26, 212, 144, 186, 185, 75, 54, 221, 101, 101, 96, 194, 168, 112, 212, 162, + 128, 67, 252, 253, 154, 255, 255, 216, 102, 159, 27, 77, 76, 189, 174, 86, 132, 27, 242, 128, 255, 75, 123, 72, + 139, 133, 255, 81, 155, 112, 235, 14, 165, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 723, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0701" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16517311540316566295" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e481e903097d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce5209fafb0506fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee56a28c9e637ed7d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e89" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe076901fd05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00374405" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9fbf4207011be53947555d077317475e481e903097d548ce5209fafb0506fb49ee56a28c9e637ed7d7422e8946fe076901fd054400374405ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 191, 66, 7, 1, 27, 229, 57, 71, 85, 93, 7, 115, + 23, 71, 94, 72, 30, 144, 48, 151, 213, 72, 206, 82, 9, 250, 251, 5, 6, 251, 73, 238, 86, 162, 140, 158, 99, 126, + 215, 215, 66, 46, 137, 70, 254, 7, 105, 1, 253, 5, 68, 0, 55, 68, 5, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 724, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9156204790217513755" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8954797671840471668" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8165c1a491a220c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9371130879173410516" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7140350683700147638" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4329619189123636695" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "37e9b7a82b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1608a321" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fc1a9482e86b5e1dd9f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "724468683232695330" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c0eebfafbc7a0cefe32ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40a45fd28ff4c148" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e229301f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13655053693517231278" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc2f47130d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9679219417256365153" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7f115fbebba51b1b9fbf1b7c45d509b98bda7448b8165c1a491a220c1b820cf1e25cd33ed44113ff801b63179f1d99aa35b61b3c15e5b6946dddd7bf4537e9b7a82b441608a3214a3fc1a9482e86b5e1dd9f1b0a0dd46dd2fad4224b9c0eebfafbc7a0cefe32ec4840a45fd28ff4c14844e229301f1bbd807efc96faf4ae45fc2f47130d1b86537ec6fca10c61ffffff", + "cborBytes": [ + 216, 102, 159, 27, 127, 17, 95, 190, 187, 165, 27, 27, 159, 191, 27, 124, 69, 213, 9, 185, 139, 218, 116, 72, 184, + 22, 92, 26, 73, 26, 34, 12, 27, 130, 12, 241, 226, 92, 211, 62, 212, 65, 19, 255, 128, 27, 99, 23, 159, 29, 153, + 170, 53, 182, 27, 60, 21, 229, 182, 148, 109, 221, 215, 191, 69, 55, 233, 183, 168, 43, 68, 22, 8, 163, 33, 74, + 63, 193, 169, 72, 46, 134, 181, 225, 221, 159, 27, 10, 13, 212, 109, 210, 250, 212, 34, 75, 156, 14, 235, 250, + 251, 199, 160, 206, 254, 50, 236, 72, 64, 164, 95, 210, 143, 244, 193, 72, 68, 226, 41, 48, 31, 27, 189, 128, 126, + 252, 150, 250, 244, 174, 69, 252, 47, 71, 19, 13, 27, 134, 83, 126, 198, 252, 161, 12, 97, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 725, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16196323879259102050" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13834012524235829814" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2799282761544899710" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5881140113302197986" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4107798050220126131" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10970141683050520910" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14563629715921447822" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1aa431" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c753e35d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75efcb9ba16d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "679058187682941675" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d651cb47a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13224097269562369283" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8117805414352189367" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dbcf94316e030da5e2e2f9d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6378533028546943514" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17183885790124096076" + } + }, + { + "_tag": "ByteArray", + "bytearray": "59fad8ef17" + } + ] + } + ] + } + ] + }, + "cborHex": "d905039fd8669f1be0c4e6c1a26a5b629f1bbffc49185561b2361b26d90cd723c21c7ed8669f1b519e01c5ffad96e29f1b3901d4900869afb3ffff1b983dc5bd09eea14e1bca1c6810b1d22b8effffd905069fbf431aa43144c753e35d4675efcb9ba16d1b096c7fd2eaa98aeb45d651cb47a01bb7856e67037a6503ff9f1b70a83d03ae3477b74cdbcf94316e030da5e2e2f9d81b588519fe9aa31a1a1bee796d14fd3aba4c4559fad8ef17ffffff", + "cborBytes": [ + 217, 5, 3, 159, 216, 102, 159, 27, 224, 196, 230, 193, 162, 106, 91, 98, 159, 27, 191, 252, 73, 24, 85, 97, 178, + 54, 27, 38, 217, 12, 215, 35, 194, 28, 126, 216, 102, 159, 27, 81, 158, 1, 197, 255, 173, 150, 226, 159, 27, 57, + 1, 212, 144, 8, 105, 175, 179, 255, 255, 27, 152, 61, 197, 189, 9, 238, 161, 78, 27, 202, 28, 104, 16, 177, 210, + 43, 142, 255, 255, 217, 5, 6, 159, 191, 67, 26, 164, 49, 68, 199, 83, 227, 93, 70, 117, 239, 203, 155, 161, 109, + 27, 9, 108, 127, 210, 234, 169, 138, 235, 69, 214, 81, 203, 71, 160, 27, 183, 133, 110, 103, 3, 122, 101, 3, 255, + 159, 27, 112, 168, 61, 3, 174, 52, 119, 183, 76, 219, 207, 148, 49, 110, 3, 13, 165, 226, 226, 249, 216, 27, 88, + 133, 25, 254, 154, 163, 26, 26, 27, 238, 121, 109, 20, 253, 58, 186, 76, 69, 89, 250, 216, 239, 23, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 726, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5997284757350388549" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10696624020370907873" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8578400728122610078" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7512954e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8aee313fae06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7501303256061702594" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02050226cb460308a0faf806" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9765997293327023135" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "44d446" + }, + { + "_tag": "ByteArray", + "bytearray": "38" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce5f8e862ab24e327c24d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77475871258a" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b533aa2b63abc13459f9f1b94720adf961e62e1bf1b770c9a030cb3519e447512954e468aee313fae061b6819fb915a09f1c2ffff9f4c02050226cb460308a0faf806d8669f1b8787cacbba2efc1f9f4344d4464138ffffbf4bce5f8e862ab24e327c24d94677475871258aff09d8669f1bfffffffffffffff980ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 83, 58, 162, 182, 58, 188, 19, 69, 159, 159, 27, 148, 114, 10, 223, 150, 30, 98, 225, 191, 27, + 119, 12, 154, 3, 12, 179, 81, 158, 68, 117, 18, 149, 78, 70, 138, 238, 49, 63, 174, 6, 27, 104, 25, 251, 145, 90, + 9, 241, 194, 255, 255, 159, 76, 2, 5, 2, 38, 203, 70, 3, 8, 160, 250, 248, 6, 216, 102, 159, 27, 135, 135, 202, + 203, 186, 46, 252, 31, 159, 67, 68, 212, 70, 65, 56, 255, 255, 191, 75, 206, 95, 142, 134, 42, 178, 78, 50, 124, + 36, 217, 70, 119, 71, 88, 113, 37, 138, 255, 9, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 128, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 727, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "066df8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18014136477831005564" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55ae86" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14347183843287602169" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11106339443794529961" + } + } + ] + }, + "cborHex": "d905029f43066df8bf1bf9ff11af0086057c4355ae86ff1bc71b6fb0da6193f91b9a21a4e156484ea9ff", + "cborBytes": [ + 217, 5, 2, 159, 67, 6, 109, 248, 191, 27, 249, 255, 17, 175, 0, 134, 5, 124, 67, 85, 174, 134, 255, 27, 199, 27, + 111, 176, 218, 97, 147, 249, 27, 154, 33, 164, 225, 86, 72, 78, 169, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 728, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14189803498461439979" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6478233239473567718" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10808039089201089131" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ca32b0d4824b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4fc528fe894c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30753aea131835a65a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "643a2bd74b8efbce41" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "531dba8a33404bd9226f564e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1181541926799200310" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "675c20a6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d0b8276aee3ad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8425" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ff091db32289b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfe04375" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a492477a9f34db0b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4218751253179120687" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17063876185274790780" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3422556568969876249" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3143353170685032903" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3787720086330218183" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17602995525018912906" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9709180531450606235" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11245857262919363546" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16916176057065364003" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8106100849309368554" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7482894130969048279" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10818208860582341395" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13640329047583547992" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3711131564982396942" + } + } + ] + }, + "cborHex": "d8669f1bc4ec4f19de63a7eb9f9fd8669f1b59e74ecee2f337e69f1b95fdde49c65e0a6bffffbf470ca32b0d4824b9464fc528fe894c4930753aea131835a65a49643a2bd74b8efbce414c531dba8a33404bd9226f564e1b1065ae1f5218d03644675c20a6476d0b8276aee3ad428425471ff091db32289b44dfe0437548a492477a9f34db0bff1b3a8c03e9b179bc2fd8669f1beccf10fb728d337c80ffffbf1b2f7f5d10e52113191b2b9f6f0df64779c71b3490af59ae5316c71bf44a672a538b088a1b86bdf0407d40729b1b9c114f98f70e2bda1beac2547f87595a231b707ea7c64493c0eaffd8669f1b67d89490e843f4d79fd8669f1b9621ffa430fe6b1380ffd8669f1bbd4c2effcca8e25880ffffff1b3380967ef583e80effff", + "cborBytes": [ + 216, 102, 159, 27, 196, 236, 79, 25, 222, 99, 167, 235, 159, 159, 216, 102, 159, 27, 89, 231, 78, 206, 226, 243, + 55, 230, 159, 27, 149, 253, 222, 73, 198, 94, 10, 107, 255, 255, 191, 71, 12, 163, 43, 13, 72, 36, 185, 70, 79, + 197, 40, 254, 137, 76, 73, 48, 117, 58, 234, 19, 24, 53, 166, 90, 73, 100, 58, 43, 215, 75, 142, 251, 206, 65, 76, + 83, 29, 186, 138, 51, 64, 75, 217, 34, 111, 86, 78, 27, 16, 101, 174, 31, 82, 24, 208, 54, 68, 103, 92, 32, 166, + 71, 109, 11, 130, 118, 174, 227, 173, 66, 132, 37, 71, 31, 240, 145, 219, 50, 40, 155, 68, 223, 224, 67, 117, 72, + 164, 146, 71, 122, 159, 52, 219, 11, 255, 27, 58, 140, 3, 233, 177, 121, 188, 47, 216, 102, 159, 27, 236, 207, 16, + 251, 114, 141, 51, 124, 128, 255, 255, 191, 27, 47, 127, 93, 16, 229, 33, 19, 25, 27, 43, 159, 111, 13, 246, 71, + 121, 199, 27, 52, 144, 175, 89, 174, 83, 22, 199, 27, 244, 74, 103, 42, 83, 139, 8, 138, 27, 134, 189, 240, 64, + 125, 64, 114, 155, 27, 156, 17, 79, 152, 247, 14, 43, 218, 27, 234, 194, 84, 127, 135, 89, 90, 35, 27, 112, 126, + 167, 198, 68, 147, 192, 234, 255, 216, 102, 159, 27, 103, 216, 148, 144, 232, 67, 244, 215, 159, 216, 102, 159, + 27, 150, 33, 255, 164, 48, 254, 107, 19, 128, 255, 216, 102, 159, 27, 189, 76, 46, 255, 204, 168, 226, 88, 128, + 255, 255, 255, 27, 51, 128, 150, 126, 245, 131, 232, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 729, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9020179839269767824" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ad8fa97cd47c6b17a83c32" + } + ] + }, + "cborHex": "d905069fd8669f1b7d2e1dc5d9d08a9080ff4bad8fa97cd47c6b17a83c32ff", + "cborBytes": [ + 217, 5, 6, 159, 216, 102, 159, 27, 125, 46, 29, 197, 217, 208, 138, 144, 128, 255, 75, 173, 143, 169, 124, 212, + 124, 107, 23, 168, 60, 50, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 730, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16822101192829189613" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9955719233171116225" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acb72ff317ef84dae97f4f14" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14095963865016612793" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15302293023476380233" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1290539165298541575" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56365bff1a1d7bb4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13929662590612040914" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6278492804402346232" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14248335166712486983" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dcbd23c9e892" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16315553804144886103" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4029" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "84446c30224ba82c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16513762134035560739" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7e02b007" + }, + { + "_tag": "ByteArray", + "bytearray": "43d37979c49da81c35" + }, + { + "_tag": "ByteArray", + "bytearray": "44f91184e50e6a77622d3af0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00e1aefafce705" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9afe17f0fd0399a106cd" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7336529875428674943" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1be9741be856423ded9fd8669f1bfffffffffffffffb80ff9fbf1b8a29d1e518b050c14cacb72ff317ef84dae97f4f141bc39eec739d0eb7b91bd45caa6e093f7249ffbf1b11e8ea88845944074856365bff1a1d7bb41bc1501a52da7a6cd21b5721aff0d33f78f81bc5bc4157dc9a9c4746dcbd23c9e8921be26c7dbdc9d44157424029ff4884446c30224ba82cff0a9f1be52cab2ad07c79239f447e02b0074943d37979c49da81c354c44f91184e50e6a77622d3af01bffffffffffffffef4700e1aefafce705ff4a9afe17f0fd0399a106cdff9f80d8669f1b65d0970d14f78d7f80ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 233, 116, 27, 232, 86, 66, 61, 237, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 251, 128, 255, 159, 191, 27, 138, 41, 209, 229, 24, 176, 80, 193, 76, 172, 183, 47, 243, 23, 239, 132, 218, 233, + 127, 79, 20, 27, 195, 158, 236, 115, 157, 14, 183, 185, 27, 212, 92, 170, 110, 9, 63, 114, 73, 255, 191, 27, 17, + 232, 234, 136, 132, 89, 68, 7, 72, 86, 54, 91, 255, 26, 29, 123, 180, 27, 193, 80, 26, 82, 218, 122, 108, 210, 27, + 87, 33, 175, 240, 211, 63, 120, 248, 27, 197, 188, 65, 87, 220, 154, 156, 71, 70, 220, 189, 35, 201, 232, 146, 27, + 226, 108, 125, 189, 201, 212, 65, 87, 66, 64, 41, 255, 72, 132, 68, 108, 48, 34, 75, 168, 44, 255, 10, 159, 27, + 229, 44, 171, 42, 208, 124, 121, 35, 159, 68, 126, 2, 176, 7, 73, 67, 211, 121, 121, 196, 157, 168, 28, 53, 76, + 68, 249, 17, 132, 229, 14, 106, 119, 98, 45, 58, 240, 27, 255, 255, 255, 255, 255, 255, 255, 239, 71, 0, 225, 174, + 250, 252, 231, 5, 255, 74, 154, 254, 23, 240, 253, 3, 153, 161, 6, 205, 255, 159, 128, 216, 102, 159, 27, 101, + 208, 151, 13, 20, 247, 141, 127, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 731, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fa008b26013f0421ff0692fe" + }, + { + "_tag": "ByteArray", + "bytearray": "ef070003" + }, + { + "_tag": "ByteArray", + "bytearray": "0661" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ec79a1c71c48" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10737936444333492307" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9940339890969831591" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11320944764747892064" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11952366400401648948" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11437427559148834567" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15940344206168679228" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bafdda269e63fbaf2ec5fb86" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18d9cdf6e45061366548" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87a54a17bf8b60" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55b6ea70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00da10" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8aa17efee0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f19061c1af6af" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15641821497382659047" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f4a9e2586" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15985336670081286639" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "38" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11675643839915528318" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14573383774297656090" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cbe7a30605f66db" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "719182864475554723" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e83256b924ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12378949911905197775" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a9fda0636c26922a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17900558125890493839" + } + }, + { + "_tag": "ByteArray", + "bytearray": "37ba623c8d855f8b8630" + }, + { + "_tag": "ByteArray", + "bytearray": "451e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9989246714979243416" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12527761994164677329" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5799684261297738582" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12840089943162026910" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13049018493489571611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5418714552493411909" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13315959014392323488" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14953991565299898103" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13775229139197505517" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4f77b19a852" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14037540770429789618" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17102943621390469665" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17074338621427744917" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1549765870131508360" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59fd905019fd9050c804cfa008b26013f0421ff0692fe44ef070003420661ff9f46ec79a1c71c48bf1b9504d04dd93808531b89f32e76f3e6e8a71b9d1c1348589dc5601ba5df55ea31412d341b9eb9e7c457544f071bdd377a999623e33cff4cbafdda269e63fbaf2ec5fb86bf4a18d9cdf6e450613665484787a54a17bf8b604455b6ea704300da10458aa17efee0476f19061c1af6afff9f1bd912e9c7278fe3e7ffffbf1bfffffffffffffffe1bfffffffffffffffdffd905059fbf451f4a9e25861bddd75301eb3881efff4138bf1ba20838365224907e1bca3f0f5462740b1a483cbe7a30605f66db1b09fb0d013d9d03a341cc41c846e83256b924ce1babcadd5bbf765ecfff9f48a9fda0636c26922a1bf86b8ec636ef5d8f4a37ba623c8d855f8b863042451e1b8aa0eef644135598ff1baddb8d28a4d32ad1ffbf1b507c9e1b8c1353561bb23129c60a3cfb9e1bb5176d2ee3f2e71b1b4b33242d089c0e451bb8cbca2c3083dda01bcf87401957e356f71bbf2b71eaf57a2fed46c4f77b19a8521bc2cf5cf4e587e5b21bed59dc9bbe830a211becf43c8330ef00951b1581dfd90e367488ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 217, 5, 1, 159, 217, 5, 12, 128, 76, 250, 0, 139, + 38, 1, 63, 4, 33, 255, 6, 146, 254, 68, 239, 7, 0, 3, 66, 6, 97, 255, 159, 70, 236, 121, 161, 199, 28, 72, 191, + 27, 149, 4, 208, 77, 217, 56, 8, 83, 27, 137, 243, 46, 118, 243, 230, 232, 167, 27, 157, 28, 19, 72, 88, 157, 197, + 96, 27, 165, 223, 85, 234, 49, 65, 45, 52, 27, 158, 185, 231, 196, 87, 84, 79, 7, 27, 221, 55, 122, 153, 150, 35, + 227, 60, 255, 76, 186, 253, 218, 38, 158, 99, 251, 175, 46, 197, 251, 134, 191, 74, 24, 217, 205, 246, 228, 80, + 97, 54, 101, 72, 71, 135, 165, 74, 23, 191, 139, 96, 68, 85, 182, 234, 112, 67, 0, 218, 16, 69, 138, 161, 126, + 254, 224, 71, 111, 25, 6, 28, 26, 246, 175, 255, 159, 27, 217, 18, 233, 199, 39, 143, 227, 231, 255, 255, 191, 27, + 255, 255, 255, 255, 255, 255, 255, 254, 27, 255, 255, 255, 255, 255, 255, 255, 253, 255, 217, 5, 5, 159, 191, 69, + 31, 74, 158, 37, 134, 27, 221, 215, 83, 1, 235, 56, 129, 239, 255, 65, 56, 191, 27, 162, 8, 56, 54, 82, 36, 144, + 126, 27, 202, 63, 15, 84, 98, 116, 11, 26, 72, 60, 190, 122, 48, 96, 95, 102, 219, 27, 9, 251, 13, 1, 61, 157, 3, + 163, 65, 204, 65, 200, 70, 232, 50, 86, 185, 36, 206, 27, 171, 202, 221, 91, 191, 118, 94, 207, 255, 159, 72, 169, + 253, 160, 99, 108, 38, 146, 42, 27, 248, 107, 142, 198, 54, 239, 93, 143, 74, 55, 186, 98, 60, 141, 133, 95, 139, + 134, 48, 66, 69, 30, 27, 138, 160, 238, 246, 68, 19, 85, 152, 255, 27, 173, 219, 141, 40, 164, 211, 42, 209, 255, + 191, 27, 80, 124, 158, 27, 140, 19, 83, 86, 27, 178, 49, 41, 198, 10, 60, 251, 158, 27, 181, 23, 109, 46, 227, + 242, 231, 27, 27, 75, 51, 36, 45, 8, 156, 14, 69, 27, 184, 203, 202, 44, 48, 131, 221, 160, 27, 207, 135, 64, 25, + 87, 227, 86, 247, 27, 191, 43, 113, 234, 245, 122, 47, 237, 70, 196, 247, 123, 25, 168, 82, 27, 194, 207, 92, 244, + 229, 135, 229, 178, 27, 237, 89, 220, 155, 190, 131, 10, 33, 27, 236, 244, 60, 131, 48, 239, 0, 149, 27, 21, 129, + 223, 217, 14, 54, 116, 136, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 732, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4090815345361237459" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "86ee" + } + ] + }, + "cborHex": "d8669f1b38c57ee1edf935d39f4286eeffff", + "cborBytes": [216, 102, 159, 27, 56, 197, 126, 225, 237, 249, 53, 211, 159, 66, 134, 238, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 733, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17616616584103515845" + }, + "fields": [] + }, + "cborHex": "d8669f1bf47acb7247bed6c580ff", + "cborBytes": [216, 102, 159, 27, 244, 122, 203, 114, 71, 190, 214, 197, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 734, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "273101220567576284" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a90acb3dc63445" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3651378226148449322" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8787111585552665754" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a21ef48e45b0c17" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbf8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "975963010404" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6425495547446155617" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ef619a5a546991b6ecc072" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12620070043452347070" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12542410268406321267" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905059f1b03ca401cf7a7eedc9f9f47a90acb3dc634451b32ac4d269e2c9c2a1b79f2176e52960c9affbf0341ff11484a21ef48e45b0c17417342fbf84697596301040401ffff9f9f1b592bf2281b61d9614bef619a5a546991b6ecc0721baf237ed72c8692be1bae0f97afc3921073ffffff", + "cborBytes": [ + 217, 5, 5, 159, 27, 3, 202, 64, 28, 247, 167, 238, 220, 159, 159, 71, 169, 10, 203, 61, 198, 52, 69, 27, 50, 172, + 77, 38, 158, 44, 156, 42, 27, 121, 242, 23, 110, 82, 150, 12, 154, 255, 191, 3, 65, 255, 17, 72, 74, 33, 239, 72, + 228, 91, 12, 23, 65, 115, 66, 251, 248, 70, 151, 89, 99, 1, 4, 4, 1, 255, 255, 159, 159, 27, 89, 43, 242, 40, 27, + 97, 217, 97, 75, 239, 97, 154, 90, 84, 105, 145, 182, 236, 192, 114, 27, 175, 35, 126, 215, 44, 134, 146, 190, 27, + 174, 15, 151, 175, 195, 146, 16, 115, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 735, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17006339326947393331" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "050db64f7d023b78" + }, + { + "_tag": "ByteArray", + "bytearray": "287f9d72" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ad5e809ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14743877861118480771" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55b8d3edacbb1046" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3136205369795372142" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "749412c1b74010" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1470f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89df87d2fe86" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a412f01" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bec02a783b0747f339f48050db64f7d023b7844287f9d72bf453ad5e809ff1bcc9cc6cc5bb691834855b8d3edacbb10461b2b860a2ae153646e47749412c1b7401043d1470f4689df87d2fe86440a412f01ffffff", + "cborBytes": [ + 216, 102, 159, 27, 236, 2, 167, 131, 176, 116, 127, 51, 159, 72, 5, 13, 182, 79, 125, 2, 59, 120, 68, 40, 127, + 157, 114, 191, 69, 58, 213, 232, 9, 255, 27, 204, 156, 198, 204, 91, 182, 145, 131, 72, 85, 184, 211, 237, 172, + 187, 16, 70, 27, 43, 134, 10, 42, 225, 83, 100, 110, 71, 116, 148, 18, 193, 183, 64, 16, 67, 209, 71, 15, 70, 137, + 223, 135, 210, 254, 134, 68, 10, 65, 47, 1, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 736, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5130080708599196397" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fce3fa02078600" + } + ] + }, + "cborHex": "d8669f1b4731b5396123aaed9fa047fce3fa02078600ffff", + "cborBytes": [ + 216, 102, 159, 27, 71, 49, 181, 57, 97, 35, 170, 237, 159, 160, 71, 252, 227, 250, 2, 7, 134, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 737, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1418888725194342805" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11542918614195524900" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7566286655051517556" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10894521929462210778" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6262434927068202826" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1561ca19" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4399751899721836265" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16879637027433307453" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16998780243688347840" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa7c24be1e5a67b2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd138422df8605" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89c6835f2f968fea67e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e98f41204af3ee1195" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13851357111197793448" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14880009997839578021" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11280429369578556068" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8151902141552574046" + } + } + ] + } + ] + }, + "cborHex": "d87e9f1b13b0e7c7290401959f1ba030af52965e55241b6900d99ff71fce749f410c1b97311df9234c60da1b56e8a362e8e6474aff441561ca19ffbf1b3d0f0f0abac526e91bea408471bdb15d3d1bebe7cc9177f8d8c048aa7c24be1e5a67b247bd138422df86054a89c6835f2f968fea67e549e98f41204af3ee11951bc039e7e7ae067ca8ff1bce806a415f7d33a5d8669f1b9c8c22becf9d0aa49f1b71215fce9efcbe5effffff", + "cborBytes": [ + 216, 126, 159, 27, 19, 176, 231, 199, 41, 4, 1, 149, 159, 27, 160, 48, 175, 82, 150, 94, 85, 36, 27, 105, 0, 217, + 159, 247, 31, 206, 116, 159, 65, 12, 27, 151, 49, 29, 249, 35, 76, 96, 218, 27, 86, 232, 163, 98, 232, 230, 71, + 74, 255, 68, 21, 97, 202, 25, 255, 191, 27, 61, 15, 15, 10, 186, 197, 38, 233, 27, 234, 64, 132, 113, 189, 177, + 93, 61, 27, 235, 231, 204, 145, 119, 248, 216, 192, 72, 170, 124, 36, 190, 30, 90, 103, 178, 71, 189, 19, 132, 34, + 223, 134, 5, 74, 137, 198, 131, 95, 47, 150, 143, 234, 103, 229, 73, 233, 143, 65, 32, 74, 243, 238, 17, 149, 27, + 192, 57, 231, 231, 174, 6, 124, 168, 255, 27, 206, 128, 106, 65, 95, 125, 51, 165, 216, 102, 159, 27, 156, 140, + 34, 190, 207, 157, 10, 164, 159, 27, 113, 33, 95, 206, 158, 252, 190, 94, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 738, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "381430253722060960" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11627624694148878278" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1948753843702560299" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13075716497529268094" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2297515904771067736" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11802139268355198846" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16326201249682834187" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7611483215570948591" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16911049512528889081" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d17de7" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6528610994958902289" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c93571326e57" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cacd4ed9fb762a8c38df466a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5032261618273400058" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0c1745b946fc33957" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15508874008308628503" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13128584041880171583" + } + } + ] + }, + "cborHex": "d9050b9f9fbf1b054b1ccb7bb0c8a01ba15d9f0db44dcfc61b1b0b5d4bc091762b1bb57646e05af2677e1b1fe26a8ae9b08f581ba3c99f2258000f7e1be292518962e2430b1b69a16ba83df451ef1beab01deedd53c4f943d17de7ff1b5a9a491c1f3c241146c93571326e57ffbf4ccacd4ed9fb762a8c38df466a1b45d62f479e04b4fa49e0c1745b946fc33957411affbf1bd73a96bdb3863c17051bffffffffffffffeb12ffa01bb63219a0bc21343fff", + "cborBytes": [ + 217, 5, 11, 159, 159, 191, 27, 5, 75, 28, 203, 123, 176, 200, 160, 27, 161, 93, 159, 13, 180, 77, 207, 198, 27, + 27, 11, 93, 75, 192, 145, 118, 43, 27, 181, 118, 70, 224, 90, 242, 103, 126, 27, 31, 226, 106, 138, 233, 176, 143, + 88, 27, 163, 201, 159, 34, 88, 0, 15, 126, 27, 226, 146, 81, 137, 98, 226, 67, 11, 27, 105, 161, 107, 168, 61, + 244, 81, 239, 27, 234, 176, 29, 238, 221, 83, 196, 249, 67, 209, 125, 231, 255, 27, 90, 154, 73, 28, 31, 60, 36, + 17, 70, 201, 53, 113, 50, 110, 87, 255, 191, 76, 202, 205, 78, 217, 251, 118, 42, 140, 56, 223, 70, 106, 27, 69, + 214, 47, 71, 158, 4, 180, 250, 73, 224, 193, 116, 91, 148, 111, 195, 57, 87, 65, 26, 255, 191, 27, 215, 58, 150, + 189, 179, 134, 60, 23, 5, 27, 255, 255, 255, 255, 255, 255, 255, 235, 18, 255, 160, 27, 182, 50, 25, 160, 188, 33, + 52, 63, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 739, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f0880ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 8, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 740, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6801062608384001987" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12109127357126897043" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "858226850377967287" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fcefe0a7a64c69a548cce5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5262072101097817374" + } + }, + { + "_tag": "ByteArray", + "bytearray": "802818" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11074144771027848058" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7c1f6facc2ad60" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3572044411752030665" + } + } + ] + }, + "cborHex": "d9050d9fd8669f1b5e623a68a3eb87c39f9f1ba80c432ca5836d931b0be908c5f97b26b7ff9f4bfcefe0a7a64c69a548cce51b4906a2b2406dc51e43802818ff1b99af43fef45d4b7a477c1f6facc2ad60ffff1b319273778c6621c9ff", + "cborBytes": [ + 217, 5, 13, 159, 216, 102, 159, 27, 94, 98, 58, 104, 163, 235, 135, 195, 159, 159, 27, 168, 12, 67, 44, 165, 131, + 109, 147, 27, 11, 233, 8, 197, 249, 123, 38, 183, 255, 159, 75, 252, 239, 224, 167, 166, 76, 105, 165, 72, 204, + 229, 27, 73, 6, 162, 178, 64, 109, 197, 30, 67, 128, 40, 24, 255, 27, 153, 175, 67, 254, 244, 93, 75, 122, 71, + 124, 31, 111, 172, 194, 173, 96, 255, 255, 27, 49, 146, 115, 119, 140, 102, 33, 201, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 741, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13195319391732615039" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5799894379212330208" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12241674630767008170" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10602974746199653100" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16059774227392161184" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2607667948585842543" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2aa8" + }, + { + "_tag": "ByteArray", + "bytearray": "f6fc7f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16690326647051477306" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "963593853539961096" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3086825408115420408" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2942803772034190569" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15784252419269373482" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3875350000242270693" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "208015156046700103" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8610294576267920375" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5d55c8a4718c4d7f235" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10145257049494494144" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12469980818895786581" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10302774369327465002" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14365470392372090731" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16684946488189651798" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9651424175736823623" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1267960499573134775" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9804938477700103330" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d625e638" + } + ] + }, + "cborHex": "d8669f1bb71f3113320bc77f9f9f9f1b507d5d356fbc54e0ffd8669f1ba9e32a37aec759aa9f42f8d31b9325555acdaafaec1bdedfc7924caee5a0ffffd8669f1b24304c2ee7a1776f80ff9f422aa843f6fc7f1be79ff3a806bd613a1b0d5f5f8123ffc9081b2ad69b5a9e5eacf8ffbf1b28d6f07063c70ce91bdb0cedf25fa6ae2a1b35c8024af0c021e51b02e304aeac0f9e471b777de94c3dec03f74ac5d55c8a4718c4d7f2351b8ccb3188de259bc01bad0e457c6a37d2551b8efaceb3d4c3422a1bc75c6735d8bad76b1be78cd66e2cf20b561b85f0bf2703691f47ffffd8669f1b1198b35b3e4895b79f1b88122398bfdfbca280ffff44d625e638ffff", + "cborBytes": [ + 216, 102, 159, 27, 183, 31, 49, 19, 50, 11, 199, 127, 159, 159, 159, 27, 80, 125, 93, 53, 111, 188, 84, 224, 255, + 216, 102, 159, 27, 169, 227, 42, 55, 174, 199, 89, 170, 159, 66, 248, 211, 27, 147, 37, 85, 90, 205, 170, 250, + 236, 27, 222, 223, 199, 146, 76, 174, 229, 160, 255, 255, 216, 102, 159, 27, 36, 48, 76, 46, 231, 161, 119, 111, + 128, 255, 159, 66, 42, 168, 67, 246, 252, 127, 27, 231, 159, 243, 168, 6, 189, 97, 58, 27, 13, 95, 95, 129, 35, + 255, 201, 8, 27, 42, 214, 155, 90, 158, 94, 172, 248, 255, 191, 27, 40, 214, 240, 112, 99, 199, 12, 233, 27, 219, + 12, 237, 242, 95, 166, 174, 42, 27, 53, 200, 2, 74, 240, 192, 33, 229, 27, 2, 227, 4, 174, 172, 15, 158, 71, 27, + 119, 125, 233, 76, 61, 236, 3, 247, 74, 197, 213, 92, 138, 71, 24, 196, 215, 242, 53, 27, 140, 203, 49, 136, 222, + 37, 155, 192, 27, 173, 14, 69, 124, 106, 55, 210, 85, 27, 142, 250, 206, 179, 212, 195, 66, 42, 27, 199, 92, 103, + 53, 216, 186, 215, 107, 27, 231, 140, 214, 110, 44, 242, 11, 86, 27, 133, 240, 191, 39, 3, 105, 31, 71, 255, 255, + 216, 102, 159, 27, 17, 152, 179, 91, 62, 72, 149, 183, 159, 27, 136, 18, 35, 152, 191, 223, 188, 162, 128, 255, + 255, 68, 214, 37, 230, 56, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 742, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "274777134584677141" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02a13d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "979f81d859995ffa748edd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c2522" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11453521982232456619" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4f8b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1230907698" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfa91db210c56443" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5533502956396887421" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2d721a9f40b7dd3e8e63779" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8455084425653598807" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9393860849555293817" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "94f80625" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18108481478111691109" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8590431894847935600" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15368258155282390391" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18087217140571154278" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "040914e1" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1325684832285038989" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26c66c5369657e5c4cc228" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1327650307662951083" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9a9891236" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5088541795559675191" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91e596c85701e24d10de1a33" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15095769444609884811" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15366335825740932145" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11824794254395442123" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5935696695002709102" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9821880204254572944" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12812220877852808377" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b03d034591b51c3159f9fbf4302a13d4b979f81d859995ffa748edd434c25221b9ef3158f3a17edab43c4f8b045123090769848dfa91db210c564431b4ccaf39eff9c3d7d4cf2d721a9f40b7dd3e8e637791b75567e7cf9053a57ffd8669f1b825db2abff3146799f4494f806251bfb4e3ff624968165ffff809f1b7737584b5798d4701bd547055e221b5d771bfb02b428bf19a766ff44040914e1ffbf1b1265c754c879198d4b26c66c5369657e5c4cc2281b126cc2ebae3032ab45e9a98912361b469e21cd851015374c91e596c85701e24d10de1a331bd17ef2543d2b028b41fe1bd5403104e8a5a4311ba41a1bb9535203cbffbf1b525fd4b20818bc6e1b884e5401d908f1901bb1ce2701a04294b9418bffffff", + "cborBytes": [ + 216, 102, 159, 27, 3, 208, 52, 89, 27, 81, 195, 21, 159, 159, 191, 67, 2, 161, 61, 75, 151, 159, 129, 216, 89, + 153, 95, 250, 116, 142, 221, 67, 76, 37, 34, 27, 158, 243, 21, 143, 58, 23, 237, 171, 67, 196, 248, 176, 69, 18, + 48, 144, 118, 152, 72, 223, 169, 29, 178, 16, 197, 100, 67, 27, 76, 202, 243, 158, 255, 156, 61, 125, 76, 242, + 215, 33, 169, 244, 11, 125, 211, 232, 230, 55, 121, 27, 117, 86, 126, 124, 249, 5, 58, 87, 255, 216, 102, 159, 27, + 130, 93, 178, 171, 255, 49, 70, 121, 159, 68, 148, 248, 6, 37, 27, 251, 78, 63, 246, 36, 150, 129, 101, 255, 255, + 128, 159, 27, 119, 55, 88, 75, 87, 152, 212, 112, 27, 213, 71, 5, 94, 34, 27, 93, 119, 27, 251, 2, 180, 40, 191, + 25, 167, 102, 255, 68, 4, 9, 20, 225, 255, 191, 27, 18, 101, 199, 84, 200, 121, 25, 141, 75, 38, 198, 108, 83, + 105, 101, 126, 92, 76, 194, 40, 27, 18, 108, 194, 235, 174, 48, 50, 171, 69, 233, 169, 137, 18, 54, 27, 70, 158, + 33, 205, 133, 16, 21, 55, 76, 145, 229, 150, 200, 87, 1, 226, 77, 16, 222, 26, 51, 27, 209, 126, 242, 84, 61, 43, + 2, 139, 65, 254, 27, 213, 64, 49, 4, 232, 165, 164, 49, 27, 164, 26, 27, 185, 83, 82, 3, 203, 255, 191, 27, 82, + 95, 212, 178, 8, 24, 188, 110, 27, 136, 78, 84, 1, 217, 8, 241, 144, 27, 177, 206, 39, 1, 160, 66, 148, 185, 65, + 139, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 743, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8451979101016112942" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11714005347381475188" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9363364311029490103" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f35a2afe0bd5c2910" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b754b76363d173f2e9fa01ba29081cccbb2f774bf1b81f15a3b4d7ba1b7490f35a2afe0bd5c2910ffffff", + "cborBytes": [ + 216, 102, 159, 27, 117, 75, 118, 54, 61, 23, 63, 46, 159, 160, 27, 162, 144, 129, 204, 203, 178, 247, 116, 191, + 27, 129, 241, 90, 59, 77, 123, 161, 183, 73, 15, 53, 162, 175, 224, 189, 92, 41, 16, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 744, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12424590910354864507" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "251276" + }, + { + "_tag": "ByteArray", + "bytearray": "449715c8c5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3651373303967226563" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10459157719366182408" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4210151893578144684" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "652cb14e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5113352895207787533" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b6f01" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6142951070819028533" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "650424961950805760" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9803315114229820687" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16922072626331197895" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14650060342714254221" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12087710283331426281" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905019f001bac6d039acb3fb97b059f4325127645449715c8c5bf1b32ac48ac954f9ac31b91266487e09b26081b3a6d76d74329dbac44652cb14e1b46f6475dd2134c0d431b6f011b55402573c0c60e351b0906c60e8a1fef001b880c5f27fce2ed0f1bead747658bd521c71bcb4f78432985438d1ba7c02c7591ce57e9ffffff", + "cborBytes": [ + 217, 5, 1, 159, 0, 27, 172, 109, 3, 154, 203, 63, 185, 123, 5, 159, 67, 37, 18, 118, 69, 68, 151, 21, 200, 197, + 191, 27, 50, 172, 72, 172, 149, 79, 154, 195, 27, 145, 38, 100, 135, 224, 155, 38, 8, 27, 58, 109, 118, 215, 67, + 41, 219, 172, 68, 101, 44, 177, 78, 27, 70, 246, 71, 93, 210, 19, 76, 13, 67, 27, 111, 1, 27, 85, 64, 37, 115, + 192, 198, 14, 53, 27, 9, 6, 198, 14, 138, 31, 239, 0, 27, 136, 12, 95, 39, 252, 226, 237, 15, 27, 234, 215, 71, + 101, 139, 213, 33, 199, 27, 203, 79, 120, 67, 41, 133, 67, 141, 27, 167, 192, 44, 117, 145, 206, 87, 233, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 745, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2027" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd25acfc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10801472090452773820" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905069f9fbf4220271344fd25acfc1b95e689a33abbcbbcffffff", + "cborBytes": [ + 217, 5, 6, 159, 159, 191, 66, 32, 39, 19, 68, 253, 37, 172, 252, 27, 149, 230, 137, 163, 58, 187, 203, 188, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 746, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17008743440938944177" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0783351a12b12041bd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5213351605785167871" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "355d6864bb9ab3344f2e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7da2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a88cc65c2a2d1fc5aa1e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a03769dacfd42a1881da999c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8081df2907e2fb0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16e13eb1d4c72f11" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5704701c9245a38e5f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "276889c16b6362b6c192" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a4a69fd09620ec33af7545c0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8715933628870607618" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11169816375312268731" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bec0b320b18ebc6b19fbf490783351a12b12041bd1b48598ba9f80987ff4a355d6864bb9ab3344f2e427da24b9a88cc65c2a2d1fc5aa1e54ca03769dacfd42a1881da999c48b8081df2907e2fb04816e13eb1d4c72f114ae5704701c9245a38e5f64a276889c16b6362b6c192ff4ca4a69fd09620ec33af7545c0d8669f1b78f53774dab6c3029f1b9b0328d028d43dbbffffffff", + "cborBytes": [ + 216, 102, 159, 27, 236, 11, 50, 11, 24, 235, 198, 177, 159, 191, 73, 7, 131, 53, 26, 18, 177, 32, 65, 189, 27, 72, + 89, 139, 169, 248, 9, 135, 255, 74, 53, 93, 104, 100, 187, 154, 179, 52, 79, 46, 66, 125, 162, 75, 154, 136, 204, + 101, 194, 162, 209, 252, 90, 161, 229, 76, 160, 55, 105, 218, 207, 212, 42, 24, 129, 218, 153, 156, 72, 184, 8, + 29, 242, 144, 126, 47, 176, 72, 22, 225, 62, 177, 212, 199, 47, 17, 74, 229, 112, 71, 1, 201, 36, 90, 56, 229, + 246, 74, 39, 104, 137, 193, 107, 99, 98, 182, 193, 146, 255, 76, 164, 166, 159, 208, 150, 32, 236, 51, 175, 117, + 69, 192, 216, 102, 159, 27, 120, 245, 55, 116, 218, 182, 195, 2, 159, 27, 155, 3, 40, 208, 40, 212, 61, 187, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 747, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14237735140913630998" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6b2de9e8c210e68e7ba78a" + } + ] + }, + "cborHex": "d8669f1bc59698ad0840cf169f4b6b2de9e8c210e68e7ba78affff", + "cborBytes": [ + 216, 102, 159, 27, 197, 150, 152, 173, 8, 64, 207, 22, 159, 75, 107, 45, 233, 232, 194, 16, 230, 142, 123, 167, + 138, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 748, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11662868887242081162" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4001441336900291373" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8ba5e1c1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11513427481082324126" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8f" + }, + { + "_tag": "ByteArray", + "bytearray": "1b9e441b1f9c9f2b5578a62d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "97" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "366913109465536815" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9b" + } + ] + } + ] + } + ] + }, + "cborHex": "d905029fd8669f1ba1dad575de05038a9f1b3787f9b203818b2d448ba5e1c1ffffd8669f1b9fc7e94b1521e49e9f418f4c1b9e441b1f9c9f2b5578a62dbf41971b051789877120992fff9f419bffffffff", + "cborBytes": [ + 217, 5, 2, 159, 216, 102, 159, 27, 161, 218, 213, 117, 222, 5, 3, 138, 159, 27, 55, 135, 249, 178, 3, 129, 139, + 45, 68, 139, 165, 225, 193, 255, 255, 216, 102, 159, 27, 159, 199, 233, 75, 21, 33, 228, 158, 159, 65, 143, 76, + 27, 158, 68, 27, 31, 156, 159, 43, 85, 120, 166, 45, 191, 65, 151, 27, 5, 23, 137, 135, 113, 32, 153, 47, 255, + 159, 65, 155, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 749, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17983058311859014110" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + ] + }, + "cborHex": "d8669f1bf990a8419d7e09de9f1bfffffffffffffff8ffff", + "cborBytes": [ + 216, 102, 159, 27, 249, 144, 168, 65, 157, 126, 9, 222, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 750, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13909226584321223180" + }, + "fields": [] + }, + "cborHex": "d8669f1bc1077fe25ae2ea0c80ff", + "cborBytes": [216, 102, 159, 27, 193, 7, 127, 226, 90, 226, 234, 12, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 751, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14365967616564038904" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af151627" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffb0fcfd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7035288323419099652" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87d9f9fbf1bc75e2b6ee0108cf8121bfffffffffffffff60f41fd44af15162744ffb0fcfd1b61a25d74a1d95204ffffff", + "cborBytes": [ + 216, 125, 159, 159, 191, 27, 199, 94, 43, 110, 224, 16, 140, 248, 18, 27, 255, 255, 255, 255, 255, 255, 255, 246, + 15, 65, 253, 68, 175, 21, 22, 39, 68, 255, 176, 252, 253, 27, 97, 162, 93, 116, 161, 217, 82, 4, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 752, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12991169403654933755" + }, + "fields": [] + }, + "cborHex": "d8669f1bb449e7be11c68cfb80ff", + "cborBytes": [216, 102, 159, 27, 180, 73, 231, 190, 17, 198, 140, 251, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 753, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b5563600616c92" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2008314460671375753" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2948b9b0efeaad24" + }, + { + "_tag": "ByteArray", + "bytearray": "8c835e3461a71ee97ff328ce" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f83438d3e7d95bf66f0c046c" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f47b5563600616c92d8669f1b1bdef75c8998f9899f482948b9b0efeaad244c8c835e3461a71ee97ff328ceffff4cf83438d3e7d95bf66f0c046cffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 71, 181, 86, 54, 0, 97, 108, 146, 216, 102, 159, + 27, 27, 222, 247, 92, 137, 152, 249, 137, 159, 72, 41, 72, 185, 176, 239, 234, 173, 36, 76, 140, 131, 94, 52, 97, + 167, 30, 233, 127, 243, 40, 206, 255, 255, 76, 248, 52, 56, 211, 231, 217, 91, 246, 111, 12, 4, 108, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 754, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff480ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 755, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14231863808464928041" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7377842402279932863" + } + } + ] + } + ] + }, + "cborHex": "d87a9fd8669f1bc581bcbaeb4a3d299f1b66635c934cb5c3bfffffff", + "cborBytes": [ + 216, 122, 159, 216, 102, 159, 27, 197, 129, 188, 186, 235, 74, 61, 41, 159, 27, 102, 99, 92, 147, 76, 181, 195, + 191, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 756, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14689379906104156759" + }, + "fields": [] + }, + "cborHex": "d8669f1bcbdb29326a19625780ff", + "cborBytes": [216, 102, 159, 27, 203, 219, 41, 50, 106, 25, 98, 87, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 757, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ac2c0a8b69329a470b68" + }, + { + "_tag": "ByteArray", + "bytearray": "251b02fcbbb8aa" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "109b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3439050263661342287" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f62b057f81b9f9" + }, + { + "_tag": "ByteArray", + "bytearray": "4c793b83ed66b29168f89a" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17968484217907996822" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6184916613207108402" + } + }, + { + "_tag": "ByteArray", + "bytearray": "12dbc5cebcf9b365" + }, + { + "_tag": "ByteArray", + "bytearray": "d13c6f449bcd47" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9609190750491798899" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b662cd9c3ba3a5d23c" + }, + { + "_tag": "ByteArray", + "bytearray": "29082290f9f3dc6b" + }, + { + "_tag": "ByteArray", + "bytearray": "a673ca0eba13" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2673179619738353901" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13797948873936180265" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13886518434254731070" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e25d96dc011cb39e208ae979" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3254275921159473720" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13731961793631691814" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18294586567724158364" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e1465d87" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16617256190049299774" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7826711154620053433" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11466129873562039773" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14791084847213516931" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "862840695104772810" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa5f2680" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17766569600617409061" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16103137181911731733" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7355d28dc7036fbad87" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13302099848519210601" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c33ad4cce9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2256" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12716420131134871727" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9f9f4aac2c0a8b69329a470b6847251b02fcbbb8aa9f42109b1b2fb9f5fe723f6e4f47f62b057f81b9f94b4c793b83ed66b29168f89aff80d8669f1bf95ce131f09e68969f1b55d53ce3ff9f2b324812dbc5cebcf9b36547d13c6f449bcd47ffffff9f9f1b855ab4136e086d7349b662cd9c3ba3a5d23c4829082290f9f3dc6b46a673ca0eba131b25190ab3775180edff9f1bbf7c29656bf794291bc0b6d2f128aab73e4ce25d96dc011cb39e208ae979ffd8669f1b2d2982b559d14a389f1bbe91ba7f0aa724261bfde36d8df1d4cd9c44e1465d87ffff9f1be69c5a767d8cad3effff9fd8669f1b6c9e1053d2b737b99f1b9f1fe05eae28f5dd1bcd447d4d50d31883ffffbf1b0bf96d0a69789aca44fa5f26801bf68f88eba20dea251bdf79d5f2e93bce154ab7355d28dc7036fbad871bb89a8d55adc3d66945c33ad4cce9422256ffff1bb079ccbc1aeb98afffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 159, 74, 172, 44, 10, 139, 105, 50, 154, 71, 11, + 104, 71, 37, 27, 2, 252, 187, 184, 170, 159, 66, 16, 155, 27, 47, 185, 245, 254, 114, 63, 110, 79, 71, 246, 43, 5, + 127, 129, 185, 249, 75, 76, 121, 59, 131, 237, 102, 178, 145, 104, 248, 154, 255, 128, 216, 102, 159, 27, 249, 92, + 225, 49, 240, 158, 104, 150, 159, 27, 85, 213, 60, 227, 255, 159, 43, 50, 72, 18, 219, 197, 206, 188, 249, 179, + 101, 71, 209, 60, 111, 68, 155, 205, 71, 255, 255, 255, 159, 159, 27, 133, 90, 180, 19, 110, 8, 109, 115, 73, 182, + 98, 205, 156, 59, 163, 165, 210, 60, 72, 41, 8, 34, 144, 249, 243, 220, 107, 70, 166, 115, 202, 14, 186, 19, 27, + 37, 25, 10, 179, 119, 81, 128, 237, 255, 159, 27, 191, 124, 41, 101, 107, 247, 148, 41, 27, 192, 182, 210, 241, + 40, 170, 183, 62, 76, 226, 93, 150, 220, 1, 28, 179, 158, 32, 138, 233, 121, 255, 216, 102, 159, 27, 45, 41, 130, + 181, 89, 209, 74, 56, 159, 27, 190, 145, 186, 127, 10, 167, 36, 38, 27, 253, 227, 109, 141, 241, 212, 205, 156, + 68, 225, 70, 93, 135, 255, 255, 159, 27, 230, 156, 90, 118, 125, 140, 173, 62, 255, 255, 159, 216, 102, 159, 27, + 108, 158, 16, 83, 210, 183, 55, 185, 159, 27, 159, 31, 224, 94, 174, 40, 245, 221, 27, 205, 68, 125, 77, 80, 211, + 24, 131, 255, 255, 191, 27, 11, 249, 109, 10, 105, 120, 154, 202, 68, 250, 95, 38, 128, 27, 246, 143, 136, 235, + 162, 13, 234, 37, 27, 223, 121, 213, 242, 233, 59, 206, 21, 74, 183, 53, 93, 40, 220, 112, 54, 251, 173, 135, 27, + 184, 154, 141, 85, 173, 195, 214, 105, 69, 195, 58, 212, 204, 233, 66, 34, 86, 255, 255, 27, 176, 121, 204, 188, + 26, 235, 152, 175, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 758, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8877594929413658343" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b7b338d8d838296e79f80ffff", + "cborBytes": [216, 102, 159, 27, 123, 51, 141, 141, 131, 130, 150, 231, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 759, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5788636799171700396" + } + } + ] + }, + "cborHex": "d905079f1b50555e7fd46226acff", + "cborBytes": [217, 5, 7, 159, 27, 80, 85, 94, 127, 212, 98, 38, 172, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 760, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14872505455084750351" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15808561068332232707" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dcb5a6ccc50499cc44a3" + }, + { + "_tag": "ByteArray", + "bytearray": "1e1900ce2008ea" + } + ] + }, + "cborHex": "d8669f1bce65c0e9da62c60f9f1bdb634a88c80330034adcb5a6ccc50499cc44a3471e1900ce2008eaffff", + "cborBytes": [ + 216, 102, 159, 27, 206, 101, 192, 233, 218, 98, 198, 15, 159, 27, 219, 99, 74, 136, 200, 3, 48, 3, 74, 220, 181, + 166, 204, 197, 4, 153, 204, 68, 163, 71, 30, 25, 0, 206, 32, 8, 234, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 761, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10303220748776421762" + } + } + ] + }, + "cborHex": "d905089f1b8efc64aea540b982ff", + "cborBytes": [217, 5, 8, 159, 27, 142, 252, 100, 174, 165, 64, 185, 130, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 762, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7295802823961105119" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eb6266ccc9c5f5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16548986056915553260" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b653fe603797e52df9f47eb6266ccc9c5f5d8669f1be5a9cf2373580bec80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 101, 63, 230, 3, 121, 126, 82, 223, 159, 71, 235, 98, 102, 204, 201, 197, 245, 216, 102, 159, + 27, 229, 169, 207, 35, 115, 88, 11, 236, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 763, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1831201808567258762" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1097540769564856269" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3c482adcf379d4de59a08d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6672598689561854940" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14900478640816609597" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8222880244630316944" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14490933727378813400" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16994389945083061765" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9fd8669f1b1969bc57bfb44e8a9fd8669f1b0f3b3f83d06c0fcd9f4b3c482adcf379d4de59a08d1b5c99d527bc1243dc1bcec92260b12b593dffffd8669f1b721d8a040bc4679080ff1bc91a2372e42431d8ffff1bebd8339d6b256605a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 216, 102, 159, 27, 25, 105, 188, 87, 191, 180, 78, + 138, 159, 216, 102, 159, 27, 15, 59, 63, 131, 208, 108, 15, 205, 159, 75, 60, 72, 42, 220, 243, 121, 212, 222, 89, + 160, 141, 27, 92, 153, 213, 39, 188, 18, 67, 220, 27, 206, 201, 34, 96, 177, 43, 89, 61, 255, 255, 216, 102, 159, + 27, 114, 29, 138, 4, 11, 196, 103, 144, 128, 255, 27, 201, 26, 35, 114, 228, 36, 49, 216, 255, 255, 27, 235, 216, + 51, 157, 107, 37, 102, 5, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 764, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15024255816092821924" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4670172989676807264" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16813461722509153472" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "73195c53" + }, + { + "_tag": "ByteArray", + "bytearray": "4c2cf191c17e56f6760a916e" + } + ] + }, + "cborHex": "d8669f1bd080e11014cf29a49f1b40cfc997294f6460d8669f1be9556a5ae6c914c080ff4473195c534c4c2cf191c17e56f6760a916effff", + "cborBytes": [ + 216, 102, 159, 27, 208, 128, 225, 16, 20, 207, 41, 164, 159, 27, 64, 207, 201, 151, 41, 79, 100, 96, 216, 102, + 159, 27, 233, 85, 106, 90, 230, 201, 20, 192, 128, 255, 68, 115, 25, 92, 83, 76, 76, 44, 241, 145, 193, 126, 86, + 246, 118, 10, 145, 110, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 765, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4844678693343806082" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10820401871577163501" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fff126282e24a2" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "323314a1d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "793a67b09c404b91" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6fd1ace0d84ee87ebc9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ceb0100a6fad" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11413516347742141" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de" + } + ] + } + ] + }, + "cborHex": "d8669f1b433bc19a77a942829f9f9f1b9629ca2c5a5426ed47fff126282e24a2ffffbf45323314a1d848793a67b09c404b914ac6fd1ace0d84ee87ebc946ceb0100a6fadffd8669f1b00288c885b8b97bd9f41deffffffff", + "cborBytes": [ + 216, 102, 159, 27, 67, 59, 193, 154, 119, 169, 66, 130, 159, 159, 159, 27, 150, 41, 202, 44, 90, 84, 38, 237, 71, + 255, 241, 38, 40, 46, 36, 162, 255, 255, 191, 69, 50, 51, 20, 161, 216, 72, 121, 58, 103, 176, 156, 64, 75, 145, + 74, 198, 253, 26, 206, 13, 132, 238, 135, 235, 201, 70, 206, 176, 16, 10, 111, 173, 255, 216, 102, 159, 27, 0, 40, + 140, 136, 91, 139, 151, 189, 159, 65, 222, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 766, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c6d7526db1943ecce1430" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2018928753108852840" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7557586589991539336" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d90212d11e4b30acc67" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "81" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10549070759329654888" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1718099582561145156" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f27a1095d4abeb0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f21eb6e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bec104437c66e5bc3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17244441927084902070" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90d1cc18ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "963ead7d1d767cd478bfbf4d" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15839666117780888887" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10400342049186574008" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99bb89a2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14700685323795140015" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6aeeede5d6b834435cd0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e9c87cc330d7eae56" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b285052" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98daa387e0ff43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a94c77f2e73" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905059f9fbf4b4c6d7526db1943ecce14301b1c04ad0113e02068ffa09f1b68e1f0f637b392884a2d90212d11e4b30acc67ffff9f9f41811b9265d3f6d84de8681b17d7ea77ab4dd144ffbf486f27a1095d4abeb044f21eb6e5498bec104437c66e5bc31bef50909155bf86b64590d1cc18ab4c963ead7d1d767cd478bfbf4dffffd8669f1bdbd1cc69771edd3780ffbf1b90556ffd8852eeb84499bb89a21bcc03536a179b8daf4a6aeeede5d6b834435cd0494e9c87cc330d7eae56446b2850524798daa387e0ff43461a94c77f2e73ff80ff", + "cborBytes": [ + 217, 5, 5, 159, 159, 191, 75, 76, 109, 117, 38, 219, 25, 67, 236, 206, 20, 48, 27, 28, 4, 173, 1, 19, 224, 32, + 104, 255, 160, 159, 27, 104, 225, 240, 246, 55, 179, 146, 136, 74, 45, 144, 33, 45, 17, 228, 179, 10, 204, 103, + 255, 255, 159, 159, 65, 129, 27, 146, 101, 211, 246, 216, 77, 232, 104, 27, 23, 215, 234, 119, 171, 77, 209, 68, + 255, 191, 72, 111, 39, 161, 9, 93, 74, 190, 176, 68, 242, 30, 182, 229, 73, 139, 236, 16, 68, 55, 198, 110, 91, + 195, 27, 239, 80, 144, 145, 85, 191, 134, 182, 69, 144, 209, 204, 24, 171, 76, 150, 62, 173, 125, 29, 118, 124, + 212, 120, 191, 191, 77, 255, 255, 216, 102, 159, 27, 219, 209, 204, 105, 119, 30, 221, 55, 128, 255, 191, 27, 144, + 85, 111, 253, 136, 82, 238, 184, 68, 153, 187, 137, 162, 27, 204, 3, 83, 106, 23, 155, 141, 175, 74, 106, 238, + 237, 229, 214, 184, 52, 67, 92, 208, 73, 78, 156, 135, 204, 51, 13, 126, 174, 86, 68, 107, 40, 80, 82, 71, 152, + 218, 163, 135, 224, 255, 67, 70, 26, 148, 199, 127, 46, 115, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 767, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2103457061739982594" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4f824461bf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17901427633362908131" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15484086227169885605" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10782962719526494344" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9137043572838134375" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "50ff33b4afb0d0" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "58" + }, + { + "_tag": "ByteArray", + "bytearray": "00ed3110d4be6e26" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "959106820758642531" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14240469296119424934" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15240221736313292763" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5460481464939596977" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "438201987383796390" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "574142582242573692" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1d1b421b2e" + }, + { + "_tag": "ByteArray", + "bytearray": "d7bde6f83773" + }, + { + "_tag": "ByteArray", + "bytearray": "47aba4c3" + }, + { + "_tag": "ByteArray", + "bytearray": "484275e76d3999b236959c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4761522970819273642" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13362990068707316080" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "132253309755453345" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11610093588971622271" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "eddc6a8406a5ce" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f9fd8669f1b1d30fb0d954c6f029f454f824461bf1bf86ea59632f533e31bd6e28662a9fabda5ffff1b95a4c7767ba82088d8669f1b7ecd4cb8284872679f4750ff33b4afb0d0ffff9f41584800ed3110d4be6e26ffff9f9f1b0d4f6e9268f91f631bc5a04f60260e27a61bd38024ec4b2407db1b4bc786f624544cb1ff1b0614ce62c5e1a2a6d8669f1b07f7c3a2f8fe7d7c9f451d1b421b2e46d7bde6f837734447aba4c34b484275e76d3999b236959cffff9f1b421453ea118ba3aa1bb972e0aad65f51701b01d5dbaf3c57efa11ba11f569b33b18f7fffff47eddc6a8406a5ceffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 159, 216, 102, 159, 27, 29, 48, 251, 13, 149, 76, + 111, 2, 159, 69, 79, 130, 68, 97, 191, 27, 248, 110, 165, 150, 50, 245, 51, 227, 27, 214, 226, 134, 98, 169, 250, + 189, 165, 255, 255, 27, 149, 164, 199, 118, 123, 168, 32, 136, 216, 102, 159, 27, 126, 205, 76, 184, 40, 72, 114, + 103, 159, 71, 80, 255, 51, 180, 175, 176, 208, 255, 255, 159, 65, 88, 72, 0, 237, 49, 16, 212, 190, 110, 38, 255, + 255, 159, 159, 27, 13, 79, 110, 146, 104, 249, 31, 99, 27, 197, 160, 79, 96, 38, 14, 39, 166, 27, 211, 128, 36, + 236, 75, 36, 7, 219, 27, 75, 199, 134, 246, 36, 84, 76, 177, 255, 27, 6, 20, 206, 98, 197, 225, 162, 166, 216, + 102, 159, 27, 7, 247, 195, 162, 248, 254, 125, 124, 159, 69, 29, 27, 66, 27, 46, 70, 215, 189, 230, 248, 55, 115, + 68, 71, 171, 164, 195, 75, 72, 66, 117, 231, 109, 57, 153, 178, 54, 149, 156, 255, 255, 159, 27, 66, 20, 83, 234, + 17, 139, 163, 170, 27, 185, 114, 224, 170, 214, 95, 81, 112, 27, 1, 213, 219, 175, 60, 87, 239, 161, 27, 161, 31, + 86, 155, 51, 177, 143, 127, 255, 255, 71, 237, 220, 106, 132, 6, 165, 206, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 768, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2763358992586553330" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3494979858009534735" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2667115274204723905" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11472990443347020071" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6275c6672e190763e3f1bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17596079423348353144" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1795169596300705460" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4621233484786901793" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e6d6d1ae65" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13252168774013546764" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4393a872fe9a33d9ce9f" + }, + { + "_tag": "ByteArray", + "bytearray": "07fb6d5a4ede" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7cd78ba3f146df60" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2026205434050576196" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15460289776672999713" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2244472525757248524" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95cb7a1e95" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10793166984957943487" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b9357a17248" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14147921558432157790" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2951071362199655139" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b26596c5ce400b7f29f13d8669f1b3080a9a9e5cdb10f9f80d8669f1b25037f35fdfdbac19f1b9f3840058f2689274b6275c6672e190763e3f1bc1bf431d501ec3d2878ffff9f1b18e9b93c9315beb41b4021eb5ebcdd2321ff9f45e6d6d1ae651bb7e929497699f10c4a4393a872fe9a33d9ce9f4607fb6d5a4edeff487cd78ba3f146df60ffffbf1b1c1e871b628cff441bd68dfba3c73289211b1f25f7ded5e2740c4595cb7a1e951b95c908302be45ebf465b9357a172481bc45783b2d070905e1b28f44fc4babd12e3ffffff", + "cborBytes": [ + 216, 102, 159, 27, 38, 89, 108, 92, 228, 0, 183, 242, 159, 19, 216, 102, 159, 27, 48, 128, 169, 169, 229, 205, + 177, 15, 159, 128, 216, 102, 159, 27, 37, 3, 127, 53, 253, 253, 186, 193, 159, 27, 159, 56, 64, 5, 143, 38, 137, + 39, 75, 98, 117, 198, 103, 46, 25, 7, 99, 227, 241, 188, 27, 244, 49, 213, 1, 236, 61, 40, 120, 255, 255, 159, 27, + 24, 233, 185, 60, 147, 21, 190, 180, 27, 64, 33, 235, 94, 188, 221, 35, 33, 255, 159, 69, 230, 214, 209, 174, 101, + 27, 183, 233, 41, 73, 118, 153, 241, 12, 74, 67, 147, 168, 114, 254, 154, 51, 217, 206, 159, 70, 7, 251, 109, 90, + 78, 222, 255, 72, 124, 215, 139, 163, 241, 70, 223, 96, 255, 255, 191, 27, 28, 30, 135, 27, 98, 140, 255, 68, 27, + 214, 141, 251, 163, 199, 50, 137, 33, 27, 31, 37, 247, 222, 213, 226, 116, 12, 69, 149, 203, 122, 30, 149, 27, + 149, 201, 8, 48, 43, 228, 94, 191, 70, 91, 147, 87, 161, 114, 72, 27, 196, 87, 131, 178, 208, 112, 144, 94, 27, + 40, 244, 79, 196, 186, 189, 18, 227, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 769, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6685114952283043777" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4251283332292337821" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16787616682877067164" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12626298785220580128" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9de58e5bec83df28" + }, + { + "_tag": "ByteArray", + "bytearray": "115b9766" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6001308283433098721" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14807726833608080893" + } + }, + { + "_tag": "ByteArray", + "bytearray": "32b9e8598c235ec99dc456f0" + }, + { + "_tag": "ByteArray", + "bytearray": "04af946a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6038588989828735297" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9898633138267128406" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16156107451350113218" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3100f7bd0ba8d2397453c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f845bf78f26" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d44" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2624146538491974672" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1054306635235278199" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17326795077115680064" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a77d9d165" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b5cc64ca13d7bb7c19fd8669f1b3aff97aa9cd2e09d9fd8669f1be8f9986db04f1f9c9f1baf399fd92104d320489de58e5bec83df2844115b97661b5348ee1665a39de1ffff1bcd7f9d19b83abdfd4c32b9e8598c235ec99dc456f04404af946affffbf1b53cd60b14353a1411b895f0264e05282561be0360620d6c3dbc24bc3100f7bd0ba8d2397453c467f845bf78f26421d44ff1b246ad75f996294101b0ea1a64c7d893d77bf1bf075245243779540457a77d9d165ffffff", + "cborBytes": [ + 216, 102, 159, 27, 92, 198, 76, 161, 61, 123, 183, 193, 159, 216, 102, 159, 27, 58, 255, 151, 170, 156, 210, 224, + 157, 159, 216, 102, 159, 27, 232, 249, 152, 109, 176, 79, 31, 156, 159, 27, 175, 57, 159, 217, 33, 4, 211, 32, 72, + 157, 229, 142, 91, 236, 131, 223, 40, 68, 17, 91, 151, 102, 27, 83, 72, 238, 22, 101, 163, 157, 225, 255, 255, 27, + 205, 127, 157, 25, 184, 58, 189, 253, 76, 50, 185, 232, 89, 140, 35, 94, 201, 157, 196, 86, 240, 68, 4, 175, 148, + 106, 255, 255, 191, 27, 83, 205, 96, 177, 67, 83, 161, 65, 27, 137, 95, 2, 100, 224, 82, 130, 86, 27, 224, 54, 6, + 32, 214, 195, 219, 194, 75, 195, 16, 15, 123, 208, 186, 141, 35, 151, 69, 60, 70, 127, 132, 91, 247, 143, 38, 66, + 29, 68, 255, 27, 36, 106, 215, 95, 153, 98, 148, 16, 27, 14, 161, 166, 76, 125, 137, 61, 119, 191, 27, 240, 117, + 36, 82, 67, 119, 149, 64, 69, 122, 119, 217, 209, 101, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 770, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff280ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 771, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14761300733070117686" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4920bbebfe6b46" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7911693222044622130" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b21e370b965eb43c63a69d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4242218636421379950" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e705e0988755" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19c44c33b0" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4296569663180540717" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17960592405809269944" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f45a35ef5fad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "37" + } + ] + }, + "cborHex": "d8669f1bccdaacced95b8b369fbf474920bbebfe6b461b6dcbfb1147d5dd324bb21e370b965eb43c63a69d1b3adf635fa370376e46e705e09887554519c44c33b0ffbf1b3ba07b582e988b2d1bf940d7a23fd70cb846f45a35ef5fad41eaff4137ffff", + "cborBytes": [ + 216, 102, 159, 27, 204, 218, 172, 206, 217, 91, 139, 54, 159, 191, 71, 73, 32, 187, 235, 254, 107, 70, 27, 109, + 203, 251, 17, 71, 213, 221, 50, 75, 178, 30, 55, 11, 150, 94, 180, 60, 99, 166, 157, 27, 58, 223, 99, 95, 163, + 112, 55, 110, 70, 231, 5, 224, 152, 135, 85, 69, 25, 196, 76, 51, 176, 255, 191, 27, 59, 160, 123, 88, 46, 152, + 139, 45, 27, 249, 64, 215, 162, 63, 215, 12, 184, 70, 244, 90, 53, 239, 95, 173, 65, 234, 255, 65, 55, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 772, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14390138277655057764" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16113479350924061722" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3394498523084922227" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9024083379390793284" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14203278026184300755" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17989005252546610442" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13326459826001875516" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "188052ab96" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14337312816852722275" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42074c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7893599634395245173" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e7d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15672287343299190457" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9dd4aea1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1860729941682466171" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd19ddabedb6bc1f3ef85fa8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17038126067011168634" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7237498090364394621" + } + } + ] + }, + "cborHex": "d8669f1bc7b40a85746195649f9f1bdf9e9418c76bac1ad8669f1b2f1bae6c03109d739f1b7d3bfc059c184644ffffd8669f1bc51c2e1cd4d398d39f1bf9a5c8f7a4ad450affff1bb8f1189aea5b123cbf45188052ab961bc6f85e0b6a2962634342074c1b6d8bb30b9f482a754186420e7d429c631bd97f264dab32deb9449dd4aea11b19d2a405fceaad7b4cdd19ddabedb6bc1f3ef85fa81bec739562d686297affff1b6470c22ad2bcdc7dffff", + "cborBytes": [ + 216, 102, 159, 27, 199, 180, 10, 133, 116, 97, 149, 100, 159, 159, 27, 223, 158, 148, 24, 199, 107, 172, 26, 216, + 102, 159, 27, 47, 27, 174, 108, 3, 16, 157, 115, 159, 27, 125, 59, 252, 5, 156, 24, 70, 68, 255, 255, 216, 102, + 159, 27, 197, 28, 46, 28, 212, 211, 152, 211, 159, 27, 249, 165, 200, 247, 164, 173, 69, 10, 255, 255, 27, 184, + 241, 24, 154, 234, 91, 18, 60, 191, 69, 24, 128, 82, 171, 150, 27, 198, 248, 94, 11, 106, 41, 98, 99, 67, 66, 7, + 76, 27, 109, 139, 179, 11, 159, 72, 42, 117, 65, 134, 66, 14, 125, 66, 156, 99, 27, 217, 127, 38, 77, 171, 50, + 222, 185, 68, 157, 212, 174, 161, 27, 25, 210, 164, 5, 252, 234, 173, 123, 76, 221, 25, 221, 171, 237, 182, 188, + 31, 62, 248, 95, 168, 27, 236, 115, 149, 98, 214, 134, 41, 122, 255, 255, 27, 100, 112, 194, 42, 210, 188, 220, + 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 773, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "293560967799156575" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12961436665918881720" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5267191676237017027" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4d4be28372f79e83" + }, + { + "_tag": "ByteArray", + "bytearray": "c7321cb8e553066da3" + }, + { + "_tag": "ByteArray", + "bytearray": "a4ce" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + }, + "cborHex": "d8669f1b0412f0251596af5f9fd8669f1bfffffffffffffff79f9f1bb3e045f99ad17fb81b4918d2ec3a006fc3484d4be28372f79e8349c7321cb8e553066da342a4ceffffff13ffff", + "cborBytes": [ + 216, 102, 159, 27, 4, 18, 240, 37, 21, 150, 175, 95, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 247, 159, 159, 27, 179, 224, 69, 249, 154, 209, 127, 184, 27, 73, 24, 210, 236, 58, 0, 111, 195, 72, 77, 75, 226, + 131, 114, 247, 158, 131, 73, 199, 50, 28, 184, 229, 83, 6, 109, 163, 66, 164, 206, 255, 255, 255, 19, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 774, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1664151448922273014" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6759463934374880055" + } + }, + { + "_tag": "ByteArray", + "bytearray": "96" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11842391479359395066" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2363061034893969298" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9f9f1b171840ecfd76b4f69f1b5dce70a2987aa3374196ff1ba458a04e8a5454faff1b20cb477dbf6c0792ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 159, 27, 23, 24, 64, 236, 253, 118, 180, 246, 159, + 27, 93, 206, 112, 162, 152, 122, 163, 55, 65, 150, 255, 27, 164, 88, 160, 78, 138, 84, 84, 250, 255, 27, 32, 203, + 71, 125, 191, 108, 7, 146, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 775, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11392962529390047274" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dc092b33b5b0e96c6a2ff6" + } + ] + }, + "cborHex": "d8669f1b9e1bef0ed7a1302a9f4bdc092b33b5b0e96c6a2ff6ffff", + "cborBytes": [ + 216, 102, 159, 27, 158, 27, 239, 14, 215, 161, 48, 42, 159, 75, 220, 9, 43, 51, 181, 176, 233, 108, 106, 47, 246, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 776, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9498036976560224259" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16470998033252541215" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11751174284135296119" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "31c25c65" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5808964421262338198" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14614466325176408187" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10362635065477375502" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1977836590344072984" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3988502267698106415" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2719655578654841612" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14684397012244154828" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aaebbebd00" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4e6cb85a55" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4052293158617649532" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5510852990407087372" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12907371091154672041" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8692482675363602664" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e74a246ea09e6d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9720892043043670036" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef8aee0da6ba9a1ddbe6e532" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2554331987203217468" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "add1295246" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2443993324615534789" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10116037627780112317" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15232268486617079814" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3eebd21d46ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11228484968565574738" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea846ecb424cd51d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6783c8c3ce6e4ce88066024c" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b83cfce4eb365b8039f1be494bd71b42ce31fd8669f1ba3148ec04396ec779f4431c25c651b509d965d2a3968969f1bcad103b1260c587b1b8fcf79b03ec9260effbf1b1b72afe65f3a6f181b375a01ae33fc502f1b25be2856e5219b0c41251bcbc97548079ec9cc45aaebbebd00ffffff454e6cb85a559fbf1b383ca3286526917c1b4c7a7b98d69d150c1bb320319f086b99a91b78a1e6f04148e0e847e74a246ea09e6d1b86e78bcf458a08144cef8aee0da6ba9a1ddbe6e5321b2372cf68afaa583cff45add12952461b21eacefadb2288c5ffbf1b8c6362a01a519fbd1bd363e37c0c302006463eebd21d46ae1b9bd397967d2a0c5242d1f3418048ea846ecb424cd51d4c6783c8c3ce6e4ce88066024cffffff", + "cborBytes": [ + 216, 102, 159, 27, 131, 207, 206, 78, 179, 101, 184, 3, 159, 27, 228, 148, 189, 113, 180, 44, 227, 31, 216, 102, + 159, 27, 163, 20, 142, 192, 67, 150, 236, 119, 159, 68, 49, 194, 92, 101, 27, 80, 157, 150, 93, 42, 57, 104, 150, + 159, 27, 202, 209, 3, 177, 38, 12, 88, 123, 27, 143, 207, 121, 176, 62, 201, 38, 14, 255, 191, 27, 27, 114, 175, + 230, 95, 58, 111, 24, 27, 55, 90, 1, 174, 51, 252, 80, 47, 27, 37, 190, 40, 86, 229, 33, 155, 12, 65, 37, 27, 203, + 201, 117, 72, 7, 158, 201, 204, 69, 170, 235, 190, 189, 0, 255, 255, 255, 69, 78, 108, 184, 90, 85, 159, 191, 27, + 56, 60, 163, 40, 101, 38, 145, 124, 27, 76, 122, 123, 152, 214, 157, 21, 12, 27, 179, 32, 49, 159, 8, 107, 153, + 169, 27, 120, 161, 230, 240, 65, 72, 224, 232, 71, 231, 74, 36, 110, 160, 158, 109, 27, 134, 231, 139, 207, 69, + 138, 8, 20, 76, 239, 138, 238, 13, 166, 186, 154, 29, 219, 230, 229, 50, 27, 35, 114, 207, 104, 175, 170, 88, 60, + 255, 69, 173, 209, 41, 82, 70, 27, 33, 234, 206, 250, 219, 34, 136, 197, 255, 191, 27, 140, 99, 98, 160, 26, 81, + 159, 189, 27, 211, 99, 227, 124, 12, 48, 32, 6, 70, 62, 235, 210, 29, 70, 174, 27, 155, 211, 151, 150, 125, 42, + 12, 82, 66, 209, 243, 65, 128, 72, 234, 132, 110, 203, 66, 76, 213, 29, 76, 103, 131, 200, 195, 206, 110, 76, 232, + 128, 102, 2, 76, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 777, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a1d9836bc268e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8759445617900400501" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "856767857651234550" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16372154882454103780" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4041280012034181071" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16593472136532017382" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d87e9f47a1d9836bc268e81b798fcd61444e2f751b0be3d9d3c24636f6d8669f1be335941f485aa6e49fbf1b381582c2632f07cf1be647dafe005540e6ff80ffffff", + "cborBytes": [ + 216, 126, 159, 71, 161, 217, 131, 107, 194, 104, 232, 27, 121, 143, 205, 97, 68, 78, 47, 117, 27, 11, 227, 217, + 211, 194, 70, 54, 246, 216, 102, 159, 27, 227, 53, 148, 31, 72, 90, 166, 228, 159, 191, 27, 56, 21, 130, 194, 99, + 47, 7, 207, 27, 230, 71, 218, 254, 0, 85, 64, 230, 255, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 778, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6554931788993010661" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ad777327d7cf5164c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4cb6ab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a2780414cf96d4f27b793f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a4a27d5b158eb77f4a764" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b060ab355939375925fa54f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c70c4b31e740" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cf78624848324e29d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9609617940379355172" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9160cb71bbedca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5583065017212700710" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9902401803726382148" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13864642225192112088" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "449125864e08f5deab" + }, + { + "_tag": "ByteArray", + "bytearray": "56cd415f69361820a0bfe9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10129581351782604513" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "00f724" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4860655201891782920" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7819283612577060700" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15029143226953123935" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15407180690563200446" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f82426f13d0e50c4acd759" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14617269409673980380" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9089db99" + }, + { + "_tag": "ByteArray", + "bytearray": "590e1eb2a292c4bb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5729813915642511582" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df5d574adc80d6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8856648702356634119" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b5af7cbbb89d81be59fbf490ad777327d7cf5164c434cb6ab4c4a2780414cf96d4f27b793f94b3a4a27d5b158eb77f4a7644c4b060ab355939375925fa54f46c70c4b31e740494cf78624848324e29d1b855c389a53884824479160cb71bbedca1b4d7b080d84df882642a6a81b896c65f9ae4c6444ffd8669f1bc0691aa552750fd89f9f49449125864e08f5deab4b56cd415f69361820a0bfe91b8c938092146c5ee141f3ff4300f724d8669f1b437484273c6a11089f1b6c83ad046db0575c1bd0923e231902485f1bd5d14d351346f5be4bf82426f13d0e50c4acd759ffffd8669f1bcadaf9151dcd29dc9f449089db9948590e1eb2a292c4bb1b4f846365fef640de47df5d574adc80d6ffff1b7ae92311fc643a07ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 90, 247, 203, 187, 137, 216, 27, 229, 159, 191, 73, 10, 215, 119, 50, 125, 124, 245, 22, 76, + 67, 76, 182, 171, 76, 74, 39, 128, 65, 76, 249, 109, 79, 39, 183, 147, 249, 75, 58, 74, 39, 213, 177, 88, 235, + 119, 244, 167, 100, 76, 75, 6, 10, 179, 85, 147, 147, 117, 146, 95, 165, 79, 70, 199, 12, 75, 49, 231, 64, 73, 76, + 247, 134, 36, 132, 131, 36, 226, 157, 27, 133, 92, 56, 154, 83, 136, 72, 36, 71, 145, 96, 203, 113, 187, 237, 202, + 27, 77, 123, 8, 13, 132, 223, 136, 38, 66, 166, 168, 27, 137, 108, 101, 249, 174, 76, 100, 68, 255, 216, 102, 159, + 27, 192, 105, 26, 165, 82, 117, 15, 216, 159, 159, 73, 68, 145, 37, 134, 78, 8, 245, 222, 171, 75, 86, 205, 65, + 95, 105, 54, 24, 32, 160, 191, 233, 27, 140, 147, 128, 146, 20, 108, 94, 225, 65, 243, 255, 67, 0, 247, 36, 216, + 102, 159, 27, 67, 116, 132, 39, 60, 106, 17, 8, 159, 27, 108, 131, 173, 4, 109, 176, 87, 92, 27, 208, 146, 62, 35, + 25, 2, 72, 95, 27, 213, 209, 77, 53, 19, 70, 245, 190, 75, 248, 36, 38, 241, 61, 14, 80, 196, 172, 215, 89, 255, + 255, 216, 102, 159, 27, 202, 218, 249, 21, 29, 205, 41, 220, 159, 68, 144, 137, 219, 153, 72, 89, 14, 30, 178, + 162, 146, 196, 187, 27, 79, 132, 99, 101, 254, 246, 64, 222, 71, 223, 93, 87, 74, 220, 128, 214, 255, 255, 27, + 122, 233, 35, 17, 252, 100, 58, 7, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 779, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10833383718121539055" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2102350961779171198" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11547561868597315570" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6043186792890895341" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13425578281280458026" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8303028281691558131" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc783cc06d46fe08a267" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10367601418284497894" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ff3b12c15f6" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4141980800303646366" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a1d08" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85dafc13" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "109613110918291547" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3838722775596854804" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10584485737668445605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10619932725046698297" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17569803339937284555" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c2b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11025429651585905590" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87b9fd8669f1b9657e9180a2285ef9fbf1b1d2d0d0f9e0c5f7e1ba0412e567f96c7f21b53ddb65eb5980bed1bba513c50a7ebcd2a1b733a483b1a3f50f34afc783cc06d46fe08a2671b8fe11e8f5daefbe6466ff3b12c15f6ffffff1b397b4597bc96469ebf437a1d0841df4485dafc131b01856c8b2b02a05b41a21b3545e206a6a6ee14ff9fd8669f1b92e3a5b30bea85a59f1b9361948beef461391bf3d47b0c826f01cb42c2b81b990231da56d633b6ffffffff", + "cborBytes": [ + 216, 123, 159, 216, 102, 159, 27, 150, 87, 233, 24, 10, 34, 133, 239, 159, 191, 27, 29, 45, 13, 15, 158, 12, 95, + 126, 27, 160, 65, 46, 86, 127, 150, 199, 242, 27, 83, 221, 182, 94, 181, 152, 11, 237, 27, 186, 81, 60, 80, 167, + 235, 205, 42, 27, 115, 58, 72, 59, 26, 63, 80, 243, 74, 252, 120, 60, 192, 109, 70, 254, 8, 162, 103, 27, 143, + 225, 30, 143, 93, 174, 251, 230, 70, 111, 243, 177, 44, 21, 246, 255, 255, 255, 27, 57, 123, 69, 151, 188, 150, + 70, 158, 191, 67, 122, 29, 8, 65, 223, 68, 133, 218, 252, 19, 27, 1, 133, 108, 139, 43, 2, 160, 91, 65, 162, 27, + 53, 69, 226, 6, 166, 166, 238, 20, 255, 159, 216, 102, 159, 27, 146, 227, 165, 179, 11, 234, 133, 165, 159, 27, + 147, 97, 148, 139, 238, 244, 97, 57, 27, 243, 212, 123, 12, 130, 111, 1, 203, 66, 194, 184, 27, 153, 2, 49, 218, + 86, 214, 51, 182, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 780, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a6fd4a94f320db" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8d99c3bab2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11300985890024002699" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12481553747028839289" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0402034df906" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12642864707646648456" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9124591731194087745" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13423791513840816095" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37faf807eef9f92590fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "045cff" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f47a6fd4a94f320dbd8669f1bfffffffffffffff99f9f458d99c3bab21b9cd52acab295148bffffffbf1bad376300b8998b79460402034df9061baf747a778299f0881b7ea10fd5da4a49411bba4ae34271628fdf4a37faf807eef9f92590fc1bfffffffffffffffb43045cffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 71, 166, 253, 74, 148, 243, 32, 219, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 159, 69, 141, 153, 195, 186, 178, 27, 156, 213, 42, 202, + 178, 149, 20, 139, 255, 255, 255, 191, 27, 173, 55, 99, 0, 184, 153, 139, 121, 70, 4, 2, 3, 77, 249, 6, 27, 175, + 116, 122, 119, 130, 153, 240, 136, 27, 126, 161, 15, 213, 218, 74, 73, 65, 27, 186, 74, 227, 66, 113, 98, 143, + 223, 74, 55, 250, 248, 7, 238, 249, 249, 37, 144, 252, 27, 255, 255, 255, 255, 255, 255, 255, 251, 67, 4, 92, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 781, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7170616498975164090" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15352614566907340459" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa283f02111d68a686" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2194467820399832645" + } + }, + { + "_tag": "ByteArray", + "bytearray": "406defa97fcb" + }, + { + "_tag": "ByteArray", + "bytearray": "82a54126" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5996068179333285117" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8928577720009572065" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6df8" + } + ] + } + ] + }, + "cborHex": "d8669f1b638325b6d9f846ba9f9fd8669f1bd50f719b61ffe6ab9f49fa283f02111d68a6861b1e7450db19f52e4546406defa97fcb4482a54126ffff1b5336503d962f04fd1b7be8ae2176a33ee1426df8ffffff", + "cborBytes": [ + 216, 102, 159, 27, 99, 131, 37, 182, 217, 248, 70, 186, 159, 159, 216, 102, 159, 27, 213, 15, 113, 155, 97, 255, + 230, 171, 159, 73, 250, 40, 63, 2, 17, 29, 104, 166, 134, 27, 30, 116, 80, 219, 25, 245, 46, 69, 70, 64, 109, 239, + 169, 127, 203, 68, 130, 165, 65, 38, 255, 255, 27, 83, 54, 80, 61, 150, 47, 4, 253, 27, 123, 232, 174, 33, 118, + 163, 62, 225, 66, 109, 248, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 782, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3079" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8216a221bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2944169530277189122" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f9ef69254" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b39b90f920" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aaea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb3d6dfc532c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17104431164685167851" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3082884599951811735" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10033949472218230834" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5690202659285410420" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c69e058325" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9228357734851812982" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10903360948078660110" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17798464979892552595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15395486323771663776" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18267997034639107978" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6dd888791c10b635" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "501765791524354632" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "936ab3fc32918e94b566" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3211838709382597515" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18322200915985000348" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f9e0b1218dffb0e8f3a50f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16446394600366595614" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11511783425093524293" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15387422045983592704" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13785751500828760309" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e2dbbcf321e351f0beb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13911714991765249184" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9fbf423079458216a221bb413c1b28dbca96c2b35602459f9ef6925445b39b90f92042aaea46fb3d6dfc532cffd8669f1bed5f2585682e2ceb9fbf1b2ac89b35b7a664971b8b3fbfe201c930321b4ef7a92baeb0a27445c69e0583251b8011b67746121e761b9750850388184a0e1bf700d99951b9c3931bd5a7c13e20cb65a01bfd84f683d78da78a486dd888791c10b635ffd8669f1b06f6a15434407a489f4a936ab3fc32918e94b5661b2c92be4a04994b8b1bfe4588a86c9f679cffff9f4bf9e0b1218dffb0e8f3a50f1be43d54c096c0de1eff1b9fc2120877eddb45ffffbf1bd58b1ad323ddd1001bbf50d3f330b4d8f54a4e2dbbcf321e351f0beb1bc1105713dca4dca0ff05ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 191, 66, 48, 121, 69, 130, 22, 162, 33, 187, 65, + 60, 27, 40, 219, 202, 150, 194, 179, 86, 2, 69, 159, 158, 246, 146, 84, 69, 179, 155, 144, 249, 32, 66, 170, 234, + 70, 251, 61, 109, 252, 83, 44, 255, 216, 102, 159, 27, 237, 95, 37, 133, 104, 46, 44, 235, 159, 191, 27, 42, 200, + 155, 53, 183, 166, 100, 151, 27, 139, 63, 191, 226, 1, 201, 48, 50, 27, 78, 247, 169, 43, 174, 176, 162, 116, 69, + 198, 158, 5, 131, 37, 27, 128, 17, 182, 119, 70, 18, 30, 118, 27, 151, 80, 133, 3, 136, 24, 74, 14, 27, 247, 0, + 217, 153, 81, 185, 195, 147, 27, 213, 167, 193, 62, 32, 203, 101, 160, 27, 253, 132, 246, 131, 215, 141, 167, 138, + 72, 109, 216, 136, 121, 28, 16, 182, 53, 255, 216, 102, 159, 27, 6, 246, 161, 84, 52, 64, 122, 72, 159, 74, 147, + 106, 179, 252, 50, 145, 142, 148, 181, 102, 27, 44, 146, 190, 74, 4, 153, 75, 139, 27, 254, 69, 136, 168, 108, + 159, 103, 156, 255, 255, 159, 75, 249, 224, 177, 33, 141, 255, 176, 232, 243, 165, 15, 27, 228, 61, 84, 192, 150, + 192, 222, 30, 255, 27, 159, 194, 18, 8, 119, 237, 219, 69, 255, 255, 191, 27, 213, 139, 26, 211, 35, 221, 209, 0, + 27, 191, 80, 211, 243, 48, 180, 216, 245, 74, 78, 45, 187, 207, 50, 30, 53, 31, 11, 235, 27, 193, 16, 87, 19, 220, + 164, 220, 160, 255, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 783, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11274134340861143121" + }, + "fields": [] + }, + "cborHex": "d8669f1b9c75c573390fa85180ff", + "cborBytes": [216, 102, 159, 27, 156, 117, 197, 115, 57, 15, 168, 81, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 784, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3592223301608484430" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "81f72a42a04a8ec0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1477189919907438579" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18254707249677148006" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3660249723884967140" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c27e7bdbaa262" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3930667707955956378" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10172903150145073920" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10778858961944973477" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8961226757399864310" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7e1e591cf1328feebd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2977157052564170714" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3671976585781601087" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b31da240f76412e4e9f4881f72a42a04a8ec0bf1b14800867d9dedff31bfd55bf86a7c11f661b32cbd1bb256294e4478c27e7bdbaa2621b368c89746ed04a9a1b8d2d698446d973001b9596331df6c410a51b7c5cac41da8b63f6ff497e1e591cf1328feebd1b2950fc90cea2e7dad8669f1b32f57b3ff310633f80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 49, 218, 36, 15, 118, 65, 46, 78, 159, 72, 129, 247, 42, 66, 160, 74, 142, 192, 191, 27, 20, + 128, 8, 103, 217, 222, 223, 243, 27, 253, 85, 191, 134, 167, 193, 31, 102, 27, 50, 203, 209, 187, 37, 98, 148, + 228, 71, 140, 39, 231, 189, 186, 162, 98, 27, 54, 140, 137, 116, 110, 208, 74, 154, 27, 141, 45, 105, 132, 70, + 217, 115, 0, 27, 149, 150, 51, 29, 246, 196, 16, 165, 27, 124, 92, 172, 65, 218, 139, 99, 246, 255, 73, 126, 30, + 89, 28, 241, 50, 143, 238, 189, 27, 41, 80, 252, 144, 206, 162, 231, 218, 216, 102, 159, 27, 50, 245, 123, 63, + 243, 16, 99, 63, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 785, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9921065445385380329" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13013274320067149899" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10972931047613557485" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15852140360190899883" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3733907488327802881" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "487041455250849557" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a77b55" + }, + { + "_tag": "ByteArray", + "bytearray": "e94beab8" + }, + { + "_tag": "ByteArray", + "bytearray": "b99d84" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7730754148328126934" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7c897e5dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9270741528214355026" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3949291154387960663" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18048896949561389663" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c545731e44e" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8207003841229179993" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed790427c65be1bbfd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8379388777461345739" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5682261060603211537" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14420209623081893305" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d52c4347" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17944694113118426660" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36dff46fb4" + } + } + ] + } + ] + }, + "cborHex": "d8799f9f1b89aeb475619921e9ffd8669f1bb498700bfc50c04b80ff1b9847aea695dc6aedd8669f1bdbfe1dab5acfb6ab9f1b33d18113d9f320011b06c2519f831dbf159f43a77b5544e94beab843b99d84ffbf1b6b4927f048f9b9d645a7c897e5dd1b80a84a4d29adbc521b36ceb36173e303571bfa7a9026023cf25f466c545731e44effffffbf1b71e52282d2bb4c5949ed790427c65be1bbfd1b744991b27b7a6dcb1b4edb72542649ef111bc81ee0402a773db944d52c43471bf9085c38877796244536dff46fb4ffff", + "cborBytes": [ + 216, 121, 159, 159, 27, 137, 174, 180, 117, 97, 153, 33, 233, 255, 216, 102, 159, 27, 180, 152, 112, 11, 252, 80, + 192, 75, 128, 255, 27, 152, 71, 174, 166, 149, 220, 106, 237, 216, 102, 159, 27, 219, 254, 29, 171, 90, 207, 182, + 171, 159, 27, 51, 209, 129, 19, 217, 243, 32, 1, 27, 6, 194, 81, 159, 131, 29, 191, 21, 159, 67, 167, 123, 85, 68, + 233, 75, 234, 184, 67, 185, 157, 132, 255, 191, 27, 107, 73, 39, 240, 72, 249, 185, 214, 69, 167, 200, 151, 229, + 221, 27, 128, 168, 74, 77, 41, 173, 188, 82, 27, 54, 206, 179, 97, 115, 227, 3, 87, 27, 250, 122, 144, 38, 2, 60, + 242, 95, 70, 108, 84, 87, 49, 228, 78, 255, 255, 255, 191, 27, 113, 229, 34, 130, 210, 187, 76, 89, 73, 237, 121, + 4, 39, 198, 91, 225, 187, 253, 27, 116, 73, 145, 178, 123, 122, 109, 203, 27, 78, 219, 114, 84, 38, 73, 239, 17, + 27, 200, 30, 224, 64, 42, 119, 61, 185, 68, 213, 44, 67, 71, 27, 249, 8, 92, 56, 135, 119, 150, 36, 69, 54, 223, + 244, 111, 180, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 786, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "71d700d1d167" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4616936920503365292" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f4671d700d1d1671b4012a7aae8fd2eacffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 70, 113, 215, 0, 209, 209, 103, 27, 64, 18, 167, + 170, 232, 253, 46, 172, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 787, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10295193137954598777" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5247440321253403142" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14811078316735951984" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "622edc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13752020259552586323" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "981ea13f838177" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14786533148106327891" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba2be53f9425234d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "283198471438986351" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddb6180c0040" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49d929927690" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c10920631" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "493170610560368682" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "408284713311386842" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3880494929384804366" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9063441401157497742" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17914299187589987867" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "650326110af1bf6a" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8edfdf9cd9d2af799f1b48d2a72b885eea069f1bcd8b8541b1897470bf43622edc1bbed8fd90929b6a5347981ea13f8381771bcd34518e486a875348ba2be53f9425234d1b03ee1f82630dec6f46ddb6180c00404649d929927690ffbf452c109206311b06d8180eb01d002aff9f1b05aa84c89825bcda1b35da49941aaf900e1b7dc7cfef268fb38effffbf1bf89c6032745ebe1b48650326110af1bf6affffff", + "cborBytes": [ + 216, 102, 159, 27, 142, 223, 223, 156, 217, 210, 175, 121, 159, 27, 72, 210, 167, 43, 136, 94, 234, 6, 159, 27, + 205, 139, 133, 65, 177, 137, 116, 112, 191, 67, 98, 46, 220, 27, 190, 216, 253, 144, 146, 155, 106, 83, 71, 152, + 30, 161, 63, 131, 129, 119, 27, 205, 52, 81, 142, 72, 106, 135, 83, 72, 186, 43, 229, 63, 148, 37, 35, 77, 27, 3, + 238, 31, 130, 99, 13, 236, 111, 70, 221, 182, 24, 12, 0, 64, 70, 73, 217, 41, 146, 118, 144, 255, 191, 69, 44, 16, + 146, 6, 49, 27, 6, 216, 24, 14, 176, 29, 0, 42, 255, 159, 27, 5, 170, 132, 200, 152, 37, 188, 218, 27, 53, 218, + 73, 148, 26, 175, 144, 14, 27, 125, 199, 207, 239, 38, 143, 179, 142, 255, 255, 191, 27, 248, 156, 96, 50, 116, + 94, 190, 27, 72, 101, 3, 38, 17, 10, 241, 191, 106, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 788, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10408553481283922587" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11878309652610620360" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4717223671161578863" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b2694a092294b705813d7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10072487824271889411" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ed1f4efbe29ce7b791da6dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10436378760232464137" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16861804961145362588" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14060527058816905339" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8619235140833713900" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1830330555210321560" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e86739b730ab" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6756618500362873287" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3904612573628516949" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3822748882029624499" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10688489496355681544" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10235747937647804581" + } + } + ] + }, + "cborHex": "d8669f1b90729c3e8d956a9b9fd8669f1ba4d83bb1eff31bc89f80bf1b4176f1ef9da6656f4b1b2694a092294b705813d71b8bc8aa4f522c54034c5ed1f4efbe29ce7b791da6dd1b90d5773029166f091bea012a4644fd189c1bc32106dd378cb07b1b779dacb1a4f51eecff1b1966a3f144dace9846e86739b730abd8669f1b5dc454ba5cf629c79f1b362ff872bca6ca551b350d21dabae5bcb31b945524911fc63508ffffffff1b8e0cae8499ef40a5ffff", + "cborBytes": [ + 216, 102, 159, 27, 144, 114, 156, 62, 141, 149, 106, 155, 159, 216, 102, 159, 27, 164, 216, 59, 177, 239, 243, 27, + 200, 159, 128, 191, 27, 65, 118, 241, 239, 157, 166, 101, 111, 75, 27, 38, 148, 160, 146, 41, 75, 112, 88, 19, + 215, 27, 139, 200, 170, 79, 82, 44, 84, 3, 76, 94, 209, 244, 239, 190, 41, 206, 123, 121, 29, 166, 221, 27, 144, + 213, 119, 48, 41, 22, 111, 9, 27, 234, 1, 42, 70, 68, 253, 24, 156, 27, 195, 33, 6, 221, 55, 140, 176, 123, 27, + 119, 157, 172, 177, 164, 245, 30, 236, 255, 27, 25, 102, 163, 241, 68, 218, 206, 152, 70, 232, 103, 57, 183, 48, + 171, 216, 102, 159, 27, 93, 196, 84, 186, 92, 246, 41, 199, 159, 27, 54, 47, 248, 114, 188, 166, 202, 85, 27, 53, + 13, 33, 218, 186, 229, 188, 179, 27, 148, 85, 36, 145, 31, 198, 53, 8, 255, 255, 255, 255, 27, 142, 12, 174, 132, + 153, 239, 64, 165, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 789, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11507298051707603211" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18427778408248786904" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11b86faeb981be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12601470888575856113" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fb1d8cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5898188683152870941" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ea5f8f4cc1390d500d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14719990447779167515" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56111c4f7d0a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4a8da9c3919a1030a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63551cebe206e98b5417" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c636500b7c5196" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b321611cb03811e94e1519c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb7a3a9e444f81" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14452690524837961904" + } + }, + { + "_tag": "ByteArray", + "bytearray": "abdce5" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4763168333182260940" + } + }, + { + "_tag": "ByteArray", + "bytearray": "596332d5fac757f291" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8168285696427802619" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16669245779076308081" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4220513456116758180" + } + }, + { + "_tag": "ByteArray", + "bytearray": "40fc5400cb" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13636996454441422780" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1932354b515bf9" + } + ] + }, + "cborHex": "d8669f1b9fb2229c1893890b9fd8669f1bffbc9ed3e7483fd89fbf4711b86faeb981be1baee16b01f8fd6df1443fb1d8cd1b51da935b7d8e4e1d4a4ea5f8f4cc1390d500d41bcc47e95289053d1b4656111c4f7d0a49f4a8da9c3919a1030a4a63551cebe206e98b541747c636500b7c51964cb321611cb03811e94e1519c147cb7a3a9e444f81ff9f1bc89245756d9ee0b043abdce5ffffff9f9f1b421a2c5cd8b7d6cc49596332d5fac757f2911b715b94903f7bbffbff1be7550eb7f785dc711b3a9246a0899876a44540fc5400cbff1bbd405805fe3e0fbc471932354b515bf9ffff", + "cborBytes": [ + 216, 102, 159, 27, 159, 178, 34, 156, 24, 147, 137, 11, 159, 216, 102, 159, 27, 255, 188, 158, 211, 231, 72, 63, + 216, 159, 191, 71, 17, 184, 111, 174, 185, 129, 190, 27, 174, 225, 107, 1, 248, 253, 109, 241, 68, 63, 177, 216, + 205, 27, 81, 218, 147, 91, 125, 142, 78, 29, 74, 78, 165, 248, 244, 204, 19, 144, 213, 0, 212, 27, 204, 71, 233, + 82, 137, 5, 61, 27, 70, 86, 17, 28, 79, 125, 10, 73, 244, 168, 218, 156, 57, 25, 161, 3, 10, 74, 99, 85, 28, 235, + 226, 6, 233, 139, 84, 23, 71, 198, 54, 80, 11, 124, 81, 150, 76, 179, 33, 97, 28, 176, 56, 17, 233, 78, 21, 25, + 193, 71, 203, 122, 58, 158, 68, 79, 129, 255, 159, 27, 200, 146, 69, 117, 109, 158, 224, 176, 67, 171, 220, 229, + 255, 255, 255, 159, 159, 27, 66, 26, 44, 92, 216, 183, 214, 204, 73, 89, 99, 50, 213, 250, 199, 87, 242, 145, 27, + 113, 91, 148, 144, 63, 123, 191, 251, 255, 27, 231, 85, 14, 183, 247, 133, 220, 113, 27, 58, 146, 70, 160, 137, + 152, 118, 164, 69, 64, 252, 84, 0, 203, 255, 27, 189, 64, 88, 5, 254, 62, 15, 188, 71, 25, 50, 53, 75, 81, 91, + 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 790, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17726506640540633588" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3230690560677511037" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5799493233369209262" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5262776565859314752" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b43973acc63b362e72e3c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9669195971488331880" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efcba5e26b1e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18084025511629379242" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9268671973141398472" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17544331147643952414" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01a37cfe47" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b66fb283ca73fa720bd8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "253f190929cd998bc2f771" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "710eafafae7f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48e7699b2bcaa4c025" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17843416917819150113" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e62881fa366c0780cd634f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09a54d4063" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15706403865532357430" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12014898079545727617" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14579479304078107896" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14945016576626179461" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2139b826" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13165246825554286447" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "71196c379d88" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11125298536281362603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d0e7b2b7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "57300839220673165" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7986280980068008155" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4575948361319257181" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e5c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14788487776638876721" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "daa963" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b2434e25e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4727279949039649071" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b2a26b1e682020b507ca" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6725305367546136635" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d009f7523c1f1150748e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15658233181011261004" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13993597964154844572" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3ed3d47" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7851421427359651522" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db8cf6be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3509471945552828269" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bf60133deda0709f49fbf1b2cd5b7f2b063ff7d1b507bf05e6440d9ae1b490923673c4b6c404b1b43973acc63b362e72e3c1b862fe281a833386846efcba5e26b1e1bfaf75d63b9c556aa1b80a0f00d52b643c8ffd8669f1bf379fc3995239d1e9fbf4501a37cfe474ab66fb283ca73fa720bd84b253f190929cd998bc2f77146710eafafae7f4948e7699b2bcaa4c0251bf7a08d25f5ce4f214be62881fa366c0780cd634f4509a54d4063ff1bd9f85b197fe0db36d8669f1ba6bd7e254bd89a819f1bca54b72e81bc24f81bcf675d64f420bd85442139b826ffffd8669f1bb6b45a3c4180976f80ff4671196c379d88ffffd8669f1b9a6500130b3950ab9f44d0e7b2b79f1b00cb92cf47147a8d1b6ed4f83cfd6980dbffbf1b3f8108ca4af7145d426e5c1bcd3b4347b3c43c3143daa96341fc450b2434e25eff1b419aac114455c12f4ab2a26b1e682020b507caffffbf1b5d5515997e9d883b4ad009f7523c1f1150748e1bd94d381e0469364c1bc2333f350714359c44a3ed3d471b6cf5da3087a996c244db8cf6be1b30b42623f7e0176dffffff", + "cborBytes": [ + 216, 102, 159, 27, 246, 1, 51, 222, 218, 7, 9, 244, 159, 191, 27, 44, 213, 183, 242, 176, 99, 255, 125, 27, 80, + 123, 240, 94, 100, 64, 217, 174, 27, 73, 9, 35, 103, 60, 75, 108, 64, 75, 27, 67, 151, 58, 204, 99, 179, 98, 231, + 46, 60, 27, 134, 47, 226, 129, 168, 51, 56, 104, 70, 239, 203, 165, 226, 107, 30, 27, 250, 247, 93, 99, 185, 197, + 86, 170, 27, 128, 160, 240, 13, 82, 182, 67, 200, 255, 216, 102, 159, 27, 243, 121, 252, 57, 149, 35, 157, 30, + 159, 191, 69, 1, 163, 124, 254, 71, 74, 182, 111, 178, 131, 202, 115, 250, 114, 11, 216, 75, 37, 63, 25, 9, 41, + 205, 153, 139, 194, 247, 113, 70, 113, 14, 175, 175, 174, 127, 73, 72, 231, 105, 155, 43, 202, 164, 192, 37, 27, + 247, 160, 141, 37, 245, 206, 79, 33, 75, 230, 40, 129, 250, 54, 108, 7, 128, 205, 99, 79, 69, 9, 165, 77, 64, 99, + 255, 27, 217, 248, 91, 25, 127, 224, 219, 54, 216, 102, 159, 27, 166, 189, 126, 37, 75, 216, 154, 129, 159, 27, + 202, 84, 183, 46, 129, 188, 36, 248, 27, 207, 103, 93, 100, 244, 32, 189, 133, 68, 33, 57, 184, 38, 255, 255, 216, + 102, 159, 27, 182, 180, 90, 60, 65, 128, 151, 111, 128, 255, 70, 113, 25, 108, 55, 157, 136, 255, 255, 216, 102, + 159, 27, 154, 101, 0, 19, 11, 57, 80, 171, 159, 68, 208, 231, 178, 183, 159, 27, 0, 203, 146, 207, 71, 20, 122, + 141, 27, 110, 212, 248, 60, 253, 105, 128, 219, 255, 191, 27, 63, 129, 8, 202, 74, 247, 20, 93, 66, 110, 92, 27, + 205, 59, 67, 71, 179, 196, 60, 49, 67, 218, 169, 99, 65, 252, 69, 11, 36, 52, 226, 94, 255, 27, 65, 154, 172, 17, + 68, 85, 193, 47, 74, 178, 162, 107, 30, 104, 32, 32, 181, 7, 202, 255, 255, 191, 27, 93, 85, 21, 153, 126, 157, + 136, 59, 74, 208, 9, 247, 82, 60, 31, 17, 80, 116, 142, 27, 217, 77, 56, 30, 4, 105, 54, 76, 27, 194, 51, 63, 53, + 7, 20, 53, 156, 68, 163, 237, 61, 71, 27, 108, 245, 218, 48, 135, 169, 150, 194, 68, 219, 140, 246, 190, 27, 48, + 180, 38, 35, 247, 224, 23, 109, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 791, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17951571488712598720" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15826514683297833041" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12135070808808633207" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3703425826308573074" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10853982728802954265" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5280485879445801860" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9754329979236695993" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5307660468221353959" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ecfec29" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6093244766543682247" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7596061435642229566" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13154471331548001124" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14027321424504007692" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1823f581644235" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7156993166219313971" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15625997996349542670" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16881346194539430218" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10416302799436996665" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c114bcc" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5006764392004079060" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8725963365121741332" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6bf13a4490f9915348f2" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6690476152050424251" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7772265430845221233" + } + } + ] + }, + "cborHex": "d905019f1bf920cb2850bea4c0d8669f1bdba313408278a0519f1ba8686e9b33403377bf1b3365362add2147921b96a117c8f4866c191b49480dee1dd54b841b875e576f7a58bfb91b49a899131cb79fe7446ecfec291b548f8dd4ef581ac7427c051b696aa1a14b7fb33e1bb68e11fb0cfa73641bc2ab0e8401c9ac0c471823f581644235ff9f1b6352bf5d846683331bd8dab2633961510e1bea4696ec37ea414a1b908e243549596039441c114bccffd8669f1b457b99b0037a4dd49f1b7918d972cd275214ffff4a6bf13a4490f9915348f2ffff1b5cd9589cd53019bb1b6bdca23ae993e971ff", + "cborBytes": [ + 217, 5, 1, 159, 27, 249, 32, 203, 40, 80, 190, 164, 192, 216, 102, 159, 27, 219, 163, 19, 64, 130, 120, 160, 81, + 159, 27, 168, 104, 110, 155, 51, 64, 51, 119, 191, 27, 51, 101, 54, 42, 221, 33, 71, 146, 27, 150, 161, 23, 200, + 244, 134, 108, 25, 27, 73, 72, 13, 238, 29, 213, 75, 132, 27, 135, 94, 87, 111, 122, 88, 191, 185, 27, 73, 168, + 153, 19, 28, 183, 159, 231, 68, 110, 207, 236, 41, 27, 84, 143, 141, 212, 239, 88, 26, 199, 66, 124, 5, 27, 105, + 106, 161, 161, 75, 127, 179, 62, 27, 182, 142, 17, 251, 12, 250, 115, 100, 27, 194, 171, 14, 132, 1, 201, 172, 12, + 71, 24, 35, 245, 129, 100, 66, 53, 255, 159, 27, 99, 82, 191, 93, 132, 102, 131, 51, 27, 216, 218, 178, 99, 57, + 97, 81, 14, 27, 234, 70, 150, 236, 55, 234, 65, 74, 27, 144, 142, 36, 53, 73, 89, 96, 57, 68, 28, 17, 75, 204, + 255, 216, 102, 159, 27, 69, 123, 153, 176, 3, 122, 77, 212, 159, 27, 121, 24, 217, 114, 205, 39, 82, 20, 255, 255, + 74, 107, 241, 58, 68, 144, 249, 145, 83, 72, 242, 255, 255, 27, 92, 217, 88, 156, 213, 48, 25, 187, 27, 107, 220, + 162, 58, 233, 147, 233, 113, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 792, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12514012432570897903" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + } + ] + }, + "cborHex": "d8669f1badaab4015e35d5ef9f809f8014ffffff", + "cborBytes": [216, 102, 159, 27, 173, 170, 180, 1, 94, 53, 213, 239, 159, 128, 159, 128, 20, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 793, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11870519084429619781" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15777807955956839308" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "268e611c230b036bde" + }, + { + "_tag": "ByteArray", + "bytearray": "a776e5c77bb220" + }, + { + "_tag": "ByteArray", + "bytearray": "33b0c98733" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8344248412833354142" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1936546692987191744" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "54420757885831321" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5339267020971890551" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8658736038605859223" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6174827060496516906" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13261212971682786916" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7580271988880601534" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed7cfac926d0dc3e28" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9732611823279595659" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "065553f54cf2ca5854" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7066" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02ca" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15038816543857576819" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16672960358972652146" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9094497307097280598" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7735416a506553cb0ea558" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60b40f3b66930a31f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14255654047422075389" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfcedf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "753911536902021368" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1ba4bc8e36eeec32459fa0d8669f1bfffffffffffffffa9fd8669f1bdaf608bdd523b38c9f49268e611c230b036bde47a776e5c77bb2204533b0c987331b73ccb9b8c48c919effffbf1b1adffef4fe7581c01b00c15764163148991b4a18e31121fcd7771b782a028d18f9a9971b55b1647ef25d472a1bb8094aefd3f46e641b693289363e1271be49ed7cfac926d0dc3e281b87112ee33f58e08b49065553f54cf2ca5854ff427066ffff4202ca9f1bd0b49bf7b2e60b73a01be762411bfebbfa72bf1b7e36251db847b0564b7735416a506553cb0ea5584960b40f3b66930a31f51bc5d641d39173d1fd43dfcedf1b0a766e8c651d20f8ffffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 164, 188, 142, 54, 238, 236, 50, 69, 159, 160, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 250, 159, 216, 102, 159, 27, 218, 246, 8, 189, 213, 35, 179, 140, 159, 73, 38, 142, 97, 28, 35, 11, 3, 107, + 222, 71, 167, 118, 229, 199, 123, 178, 32, 69, 51, 176, 201, 135, 51, 27, 115, 204, 185, 184, 196, 140, 145, 158, + 255, 255, 191, 27, 26, 223, 254, 244, 254, 117, 129, 192, 27, 0, 193, 87, 100, 22, 49, 72, 153, 27, 74, 24, 227, + 17, 33, 252, 215, 119, 27, 120, 42, 2, 141, 24, 249, 169, 151, 27, 85, 177, 100, 126, 242, 93, 71, 42, 27, 184, 9, + 74, 239, 211, 244, 110, 100, 27, 105, 50, 137, 54, 62, 18, 113, 190, 73, 237, 124, 250, 201, 38, 208, 220, 62, 40, + 27, 135, 17, 46, 227, 63, 88, 224, 139, 73, 6, 85, 83, 245, 76, 242, 202, 88, 84, 255, 66, 112, 102, 255, 255, 66, + 2, 202, 159, 27, 208, 180, 155, 247, 178, 230, 11, 115, 160, 27, 231, 98, 65, 27, 254, 187, 250, 114, 191, 27, + 126, 54, 37, 29, 184, 71, 176, 86, 75, 119, 53, 65, 106, 80, 101, 83, 203, 14, 165, 88, 73, 96, 180, 15, 59, 102, + 147, 10, 49, 245, 27, 197, 214, 65, 211, 145, 115, 209, 253, 67, 223, 206, 223, 27, 10, 118, 110, 140, 101, 29, + 32, 248, 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 794, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18017493340645043200" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16559945538713584249" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7319971956363712537" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f07f1ff4a79c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8682163880428169882" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6316306770807484560" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a504bfe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14541920221852708865" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1956513409942251373" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53eec3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b8a5eeaf3ef89" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd58c793fb25b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11849117195185879089" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2189151960754047076" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "89c25e2257e7d3ed8968d522" + }, + { + "_tag": "ByteArray", + "bytearray": "fe2572cd70cebfdfd1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12037794765098961464" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b475eb690cd11c7a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1621814995168081462" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27bfd4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2205073815016003750" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b3e435314" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12872777926257393597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18015536943674685214" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfa0afebb881d2c009f9fd8669f1be5d0bebaa6d682799f1b6595c3b620e15819476f07f1ff4a79c71b787d3e0c96a5ea9affffbf1b57a8078af65ff090444a504bfe1bc9cf47653799b0011b1b26ee948de5676d4353eec3475b8a5eeaf3ef8947fd58c793fb25b51ba470854f4906f831ffd8669f1b1e616e1c1418486480ff9f4c89c25e2257e7d3ed8968d52249fe2572cd70cebfdfd11ba70ed68f54c7ca38ff48b475eb690cd11c7affbf1b1681d825366536364327bfd41b1e99fef3a78b58a6458b3e4353141bb2a54b522f0fbfbd1bfa040b665da7f71effffff", + "cborBytes": [ + 216, 102, 159, 27, 250, 10, 254, 187, 136, 29, 44, 0, 159, 159, 216, 102, 159, 27, 229, 208, 190, 186, 166, 214, + 130, 121, 159, 27, 101, 149, 195, 182, 32, 225, 88, 25, 71, 111, 7, 241, 255, 74, 121, 199, 27, 120, 125, 62, 12, + 150, 165, 234, 154, 255, 255, 191, 27, 87, 168, 7, 138, 246, 95, 240, 144, 68, 74, 80, 75, 254, 27, 201, 207, 71, + 101, 55, 153, 176, 1, 27, 27, 38, 238, 148, 141, 229, 103, 109, 67, 83, 238, 195, 71, 91, 138, 94, 234, 243, 239, + 137, 71, 253, 88, 199, 147, 251, 37, 181, 27, 164, 112, 133, 79, 73, 6, 248, 49, 255, 216, 102, 159, 27, 30, 97, + 110, 28, 20, 24, 72, 100, 128, 255, 159, 76, 137, 194, 94, 34, 87, 231, 211, 237, 137, 104, 213, 34, 73, 254, 37, + 114, 205, 112, 206, 191, 223, 209, 27, 167, 14, 214, 143, 84, 199, 202, 56, 255, 72, 180, 117, 235, 105, 12, 209, + 28, 122, 255, 191, 27, 22, 129, 216, 37, 54, 101, 54, 54, 67, 39, 191, 212, 27, 30, 153, 254, 243, 167, 139, 88, + 166, 69, 139, 62, 67, 83, 20, 27, 178, 165, 75, 82, 47, 15, 191, 189, 27, 250, 4, 11, 102, 93, 167, 247, 30, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 795, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [] + }, + "cborHex": "d8669f1bffffffffffffffeb80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 796, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7aa3aa5b40096bcd95e338" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "89f0a8f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12468733158459932172" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17698572284900336005" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f84d271c8ce80c1f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22fe18023d" + } + } + ] + } + ] + }, + "cborHex": "d905069f4b7aa3aa5b40096bcd95e338bf4489f0a8f81bad09d6bed5237e0c41c21bf59df5b8d90ee18548f84d271c8ce80c1f4522fe18023dffff", + "cborBytes": [ + 217, 5, 6, 159, 75, 122, 163, 170, 91, 64, 9, 107, 205, 149, 227, 56, 191, 68, 137, 240, 168, 248, 27, 173, 9, + 214, 190, 213, 35, 126, 12, 65, 194, 27, 245, 157, 245, 184, 217, 14, 225, 133, 72, 248, 77, 39, 28, 140, 232, 12, + 31, 69, 34, 254, 24, 2, 61, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 797, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "103792271532540939" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bae1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "766094728337327740" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8549716876540169769" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2e5e2e8569c0b883eb624a76" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "75db" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4144818655538800551" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15226985897800240307" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "116218202997480885" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04940605fc53389c" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b0170be856320c40b9f9f42bae1d8669f1b0aa1b718b2d8867c9f1b76a6b2336c56ce294c2e5e2e8569c0b883eb624a76ffff9f4275dbff9f1b39855a9b65cd67a7ff1bd3511eff7e440cb3ffbf1b019ce3d702195db54804940605fc53389cffffff", + "cborBytes": [ + 216, 102, 159, 27, 1, 112, 190, 133, 99, 32, 196, 11, 159, 159, 66, 186, 225, 216, 102, 159, 27, 10, 161, 183, 24, + 178, 216, 134, 124, 159, 27, 118, 166, 178, 51, 108, 86, 206, 41, 76, 46, 94, 46, 133, 105, 192, 184, 131, 235, + 98, 74, 118, 255, 255, 159, 66, 117, 219, 255, 159, 27, 57, 133, 90, 155, 101, 205, 103, 167, 255, 27, 211, 81, + 30, 255, 126, 68, 12, 179, 255, 191, 27, 1, 156, 227, 215, 2, 25, 93, 181, 72, 4, 148, 6, 5, 252, 83, 56, 156, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 798, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8183447352582179174" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed1821d3f5155f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14578006691599234460" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7227999440399843158" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8829811566341621467" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8072253458614885702" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "345100787275631186" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10799035861183504448" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4673888247473456384" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12557637384698952068" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14885953863766039797" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14527189526928319435" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2263843770429754549" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15738610264885699800" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1550937444986266608" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15258382548545227875" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7589ed6f7891df6615" + }, + { + "_tag": "ByteArray", + "bytearray": "1f3b8bf7328db6d513d0" + }, + { + "_tag": "ByteArray", + "bytearray": "c3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2306072599954836410" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "786855" + } + ] + } + ] + }, + "cborHex": "d8669f1b7191720268c589669f47ed1821d3f5155fd8669f1bca4f7bd9320a359c80ff9fbf1b644f033209c13f561b7a89cad6556d86db1b700667c081a89d461b04ca0b566d458a521b95dde1e6668c20401b40dcfc99068745001bae45b0ab0d2579841bce95882b80a0dcf51bc99af1e8095663cb1b1f6ac9ea33724cb51bda6ac6a630d424d81b15860963954223f0ffd8669f1bd3c0aa15e50ecc639f497589ed6f7891df66154a1f3b8bf7328db6d513d041c3ffff9f1b2000d0cfc291cbbaff43786855ffffff", + "cborBytes": [ + 216, 102, 159, 27, 113, 145, 114, 2, 104, 197, 137, 102, 159, 71, 237, 24, 33, 211, 245, 21, 95, 216, 102, 159, + 27, 202, 79, 123, 217, 50, 10, 53, 156, 128, 255, 159, 191, 27, 100, 79, 3, 50, 9, 193, 63, 86, 27, 122, 137, 202, + 214, 85, 109, 134, 219, 27, 112, 6, 103, 192, 129, 168, 157, 70, 27, 4, 202, 11, 86, 109, 69, 138, 82, 27, 149, + 221, 225, 230, 102, 140, 32, 64, 27, 64, 220, 252, 153, 6, 135, 69, 0, 27, 174, 69, 176, 171, 13, 37, 121, 132, + 27, 206, 149, 136, 43, 128, 160, 220, 245, 27, 201, 154, 241, 232, 9, 86, 99, 203, 27, 31, 106, 201, 234, 51, 114, + 76, 181, 27, 218, 106, 198, 166, 48, 212, 36, 216, 27, 21, 134, 9, 99, 149, 66, 35, 240, 255, 216, 102, 159, 27, + 211, 192, 170, 21, 229, 14, 204, 99, 159, 73, 117, 137, 237, 111, 120, 145, 223, 102, 21, 74, 31, 59, 139, 247, + 50, 141, 182, 213, 19, 208, 65, 195, 255, 255, 159, 27, 32, 0, 208, 207, 194, 145, 203, 186, 255, 67, 120, 104, + 85, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 799, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dec3e6f9b176b2fe05" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ce60007" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3417283220572413739" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5171778750036033661" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13672836786189348885" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1ae7cfdf36c27" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39db6059048e202478020696" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac67da0cac88e83c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "00660537fe036a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9724828237574197318" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11413222162781146242" + } + }, + { + "_tag": "ByteArray", + "bytearray": "60fdb4af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5063879508861950276" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0fe603f904dd" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3aab32c2d97fe96cc0ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c2206249" + } + ] + }, + "cborHex": "d87f9f49dec3e6f9b176b2fe059fbf03447ce6000707121b2f6ca0fbcb1f1f2b1b47c5d95f34cfc07d1bbdbfac9d80b5b01547e1ae7cfdf36c271bffffffffffffffec4c39db6059048e2024780206961bffffffffffffffef48ac67da0cac88e83cff9f4700660537fe036affd8669f1b86f587c1fa4c50469f1b9e63e916532f8c824460fdb4af1b464683956f189944ffff460fe603f904dd9f4a3aab32c2d97fe96cc0ca14ffff8044c2206249ff", + "cborBytes": [ + 216, 127, 159, 73, 222, 195, 230, 249, 177, 118, 178, 254, 5, 159, 191, 3, 68, 124, 230, 0, 7, 7, 18, 27, 47, 108, + 160, 251, 203, 31, 31, 43, 27, 71, 197, 217, 95, 52, 207, 192, 125, 27, 189, 191, 172, 157, 128, 181, 176, 21, 71, + 225, 174, 124, 253, 243, 108, 39, 27, 255, 255, 255, 255, 255, 255, 255, 236, 76, 57, 219, 96, 89, 4, 142, 32, 36, + 120, 2, 6, 150, 27, 255, 255, 255, 255, 255, 255, 255, 239, 72, 172, 103, 218, 12, 172, 136, 232, 60, 255, 159, + 71, 0, 102, 5, 55, 254, 3, 106, 255, 216, 102, 159, 27, 134, 245, 135, 193, 250, 76, 80, 70, 159, 27, 158, 99, + 233, 22, 83, 47, 140, 130, 68, 96, 253, 180, 175, 27, 70, 70, 131, 149, 111, 24, 153, 68, 255, 255, 70, 15, 230, + 3, 249, 4, 221, 159, 74, 58, 171, 50, 194, 217, 127, 233, 108, 192, 202, 20, 255, 255, 128, 68, 194, 32, 98, 73, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 800, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5915392073196879311" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4931991228289890451" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3216c1feb740bd7b5bcc8096" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8809747563752264433" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2bb777" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15319505677370649679" + } + }, + { + "_tag": "ByteArray", + "bytearray": "08dedfd97534" + } + ] + } + ] + } + ] + }, + "cborHex": "d905039f41fa9f1b5217b1bfde0fbdcfbf1b4471f3e42d8fb8934c3216c1feb740bd7b5bcc8096ffd8669f1b7a4282bbb25112f19f432bb7771bd499d13f5241ec4f4608dedfd97534ffffffff", + "cborBytes": [ + 217, 5, 3, 159, 65, 250, 159, 27, 82, 23, 177, 191, 222, 15, 189, 207, 191, 27, 68, 113, 243, 228, 45, 143, 184, + 147, 76, 50, 22, 193, 254, 183, 64, 189, 123, 91, 204, 128, 150, 255, 216, 102, 159, 27, 122, 66, 130, 187, 178, + 81, 18, 241, 159, 67, 43, 183, 119, 27, 212, 153, 209, 63, 82, 65, 236, 79, 70, 8, 222, 223, 217, 117, 52, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 801, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9203341477813732279" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3653418121871658546" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f7cd90903a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "075dd911508f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7991" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f59fcb596c22f1c7c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15765532343893084455" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab1d3e33d989a849f30d3518" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c72bcfd2b6c68ab61997d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2af" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e23d2c266463925c144bae8" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9528529971609866200" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8411858078834617647" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "519016095420152651" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7545384332595223290" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10809103896607662800" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17526432378740936453" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7316556509523635329" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b88f38a21553c16b8cbaba7f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13450036395478240203" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c2b0a7340cc06a8e" + }, + { + "_tag": "ByteArray", + "bytearray": "de9519f97a2a3701fc1d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8911433507465282676" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "57" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11518602950078049285" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fc5b64ec935b2f62f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bff185352ed747b5506c44cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e3b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd5f372c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9ad5222f6cc39" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82865d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15385732675166880000" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9657335575539687107" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b7fb8d6500bb4c3b79fd8669f1b32b38c6cda228e329f45f7cd90903affffbf46075dd911508f413f428cab427991498f59fcb596c22f1c7c1bdaca6c232cadc9274cab1d3e33d989a849f30d35184b8c72bcfd2b6c68ab61997d42d2af4c8e23d2c266463925c144bae8ffd8669f1b843c23865d780fd89f1b74bcec5ad1efed2f1b0733ea63903a7b4bffff9f9f1b68b69712c622dafa1b9601a6b9919722d01bf33a6563b2c20f05ff1b6589a161713a6c81ff9f9f4cb88f38a21553c16b8cbaba7f1bbaa820d7208e4bcb48c2b0a7340cc06a8e4ade9519f97a2a3701fc1dff1b7babc58f6bfb4474bf41571b9fda4c5adc2b2c05497fc5b64ec935b2f62f4cbff185352ed747b5506c44cd429e3b44cd5f372c47e9ad5222f6cc394382865dffbf1bd5851a59d87141001b8605bf8a08c91ec3ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 127, 184, 214, 80, 11, 180, 195, 183, 159, 216, 102, 159, 27, 50, 179, 140, 108, 218, 34, 142, + 50, 159, 69, 247, 205, 144, 144, 58, 255, 255, 191, 70, 7, 93, 217, 17, 80, 143, 65, 63, 66, 140, 171, 66, 121, + 145, 73, 143, 89, 252, 181, 150, 194, 47, 28, 124, 27, 218, 202, 108, 35, 44, 173, 201, 39, 76, 171, 29, 62, 51, + 217, 137, 168, 73, 243, 13, 53, 24, 75, 140, 114, 188, 253, 43, 108, 104, 171, 97, 153, 125, 66, 210, 175, 76, + 142, 35, 210, 194, 102, 70, 57, 37, 193, 68, 186, 232, 255, 216, 102, 159, 27, 132, 60, 35, 134, 93, 120, 15, 216, + 159, 27, 116, 188, 236, 90, 209, 239, 237, 47, 27, 7, 51, 234, 99, 144, 58, 123, 75, 255, 255, 159, 159, 27, 104, + 182, 151, 18, 198, 34, 218, 250, 27, 150, 1, 166, 185, 145, 151, 34, 208, 27, 243, 58, 101, 99, 178, 194, 15, 5, + 255, 27, 101, 137, 161, 97, 113, 58, 108, 129, 255, 159, 159, 76, 184, 143, 56, 162, 21, 83, 193, 107, 140, 186, + 186, 127, 27, 186, 168, 32, 215, 32, 142, 75, 203, 72, 194, 176, 167, 52, 12, 192, 106, 142, 74, 222, 149, 25, + 249, 122, 42, 55, 1, 252, 29, 255, 27, 123, 171, 197, 143, 107, 251, 68, 116, 191, 65, 87, 27, 159, 218, 76, 90, + 220, 43, 44, 5, 73, 127, 197, 182, 78, 201, 53, 178, 246, 47, 76, 191, 241, 133, 53, 46, 215, 71, 181, 80, 108, + 68, 205, 66, 158, 59, 68, 205, 95, 55, 44, 71, 233, 173, 82, 34, 246, 204, 57, 67, 130, 134, 93, 255, 191, 27, + 213, 133, 26, 89, 216, 113, 65, 0, 27, 134, 5, 191, 138, 8, 201, 30, 195, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 802, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6469928767498023206" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3bf9fc61" + } + ] + }, + "cborHex": "d8669f1b59c9cdef54ccf1269f443bf9fc61ffff", + "cborBytes": [216, 102, 159, 27, 89, 201, 205, 239, 84, 204, 241, 38, 159, 68, 59, 249, 252, 97, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 803, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3ac72e893570" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e28dbc0e0bc124" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "81e588e48e73c1c90b58" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9379477793521936264" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afdbf76b5c330f8384a6e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb4f89c4ab3d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c85ea5337e051a18834dcfb4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9c887f263d1d3c3cf5b23" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7426ed53848" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1f40f80163a84e034e6b3" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11068265222764530737" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2ee3e31d1f3cfb88" + }, + { + "_tag": "ByteArray", + "bytearray": "15ad44" + }, + { + "_tag": "ByteArray", + "bytearray": "6758a3b39ab6bbc569a652c3" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13808292502283002883" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1746628083405649929" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d87b9f463ac72e8935708047e28dbc0e0bc1249fbf4a81e588e48e73c1c90b581b822a995bcd8a27884bafdbf76b5c330f8384a6e346fb4f89c4ab3d4cc85ea5337e051a18834dcfb44bd9c887f263d1d3c3cf5b2346d7426ed538484bd1f40f80163a84e034e6b3ffd8669f1b999a6093f2b08c319f482ee3e31d1f3cfb884315ad444c6758a3b39ab6bbc569a652c3ffffa01bbfa0e8df1144a403d8669f1b183d44fce21d780980ffffff", + "cborBytes": [ + 216, 123, 159, 70, 58, 199, 46, 137, 53, 112, 128, 71, 226, 141, 188, 14, 11, 193, 36, 159, 191, 74, 129, 229, + 136, 228, 142, 115, 193, 201, 11, 88, 27, 130, 42, 153, 91, 205, 138, 39, 136, 75, 175, 219, 247, 107, 92, 51, 15, + 131, 132, 166, 227, 70, 251, 79, 137, 196, 171, 61, 76, 200, 94, 165, 51, 126, 5, 26, 24, 131, 77, 207, 180, 75, + 217, 200, 135, 242, 99, 209, 211, 195, 207, 91, 35, 70, 215, 66, 110, 213, 56, 72, 75, 209, 244, 15, 128, 22, 58, + 132, 224, 52, 230, 179, 255, 216, 102, 159, 27, 153, 154, 96, 147, 242, 176, 140, 49, 159, 72, 46, 227, 227, 29, + 31, 60, 251, 136, 67, 21, 173, 68, 76, 103, 88, 163, 179, 154, 182, 187, 197, 105, 166, 82, 195, 255, 255, 160, + 27, 191, 160, 232, 223, 17, 68, 164, 3, 216, 102, 159, 27, 24, 61, 68, 252, 226, 29, 120, 9, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 804, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2509161124590389015" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07dbfd" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6004986409197299918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5750117a649f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73db8025d39d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1179332619416321215" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97a06f272d26af2c250a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6893cb0ae000" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b22d254bfab6e07179f4307dbfdbf1b5355ff52c940e8ce465750117a649f4673db8025d39d1b105dd4c4dc573cbf4a97a06f272d26af2c250a466893cb0ae000ffffff", + "cborBytes": [ + 216, 102, 159, 27, 34, 210, 84, 191, 171, 110, 7, 23, 159, 67, 7, 219, 253, 191, 27, 83, 85, 255, 82, 201, 64, + 232, 206, 70, 87, 80, 17, 122, 100, 159, 70, 115, 219, 128, 37, 211, 157, 27, 16, 93, 212, 196, 220, 87, 60, 191, + 74, 151, 160, 111, 39, 45, 38, 175, 44, 37, 10, 70, 104, 147, 203, 10, 224, 0, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 805, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7318249001280243328" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11252554721938764170" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5972934ff9a0bd876a5574" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec7b4911417ec8a4d0d7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "682e2d540121cb9a8869bf9f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3067034517486220284" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0f03c5c8f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6390388572550982160" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14670142730362709100" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2268558325561255814" + } + }, + { + "_tag": "ByteArray", + "bytearray": "83" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7933062113141902184" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10983375370599779144" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e89e382b917865ee16" + } + ] + } + ] + }, + "cborHex": "d8669f1b658fa4b1632a86809fd8669f1b9c291ae6a8cdf18a9fbf4b5972934ff9a0bd876a55744aec7b4911417ec8a4d0d74c682e2d540121cb9a8869bf9f1b2a904ba4d0a0b3fc45a0f03c5c8f1b58af388c8b9dea1041a11bcb96d116678c646cff1b1f7b89c71b5567864183ffffd8669f1b6e17e5f5f2eecb689f1b986cc9b5075fcb4849e89e382b917865ee16ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 101, 143, 164, 177, 99, 42, 134, 128, 159, 216, 102, 159, 27, 156, 41, 26, 230, 168, 205, 241, + 138, 159, 191, 75, 89, 114, 147, 79, 249, 160, 189, 135, 106, 85, 116, 74, 236, 123, 73, 17, 65, 126, 200, 164, + 208, 215, 76, 104, 46, 45, 84, 1, 33, 203, 154, 136, 105, 191, 159, 27, 42, 144, 75, 164, 208, 160, 179, 252, 69, + 160, 240, 60, 92, 143, 27, 88, 175, 56, 140, 139, 157, 234, 16, 65, 161, 27, 203, 150, 209, 22, 103, 140, 100, + 108, 255, 27, 31, 123, 137, 199, 27, 85, 103, 134, 65, 131, 255, 255, 216, 102, 159, 27, 110, 23, 229, 245, 242, + 238, 203, 104, 159, 27, 152, 108, 201, 181, 7, 95, 203, 72, 73, 232, 158, 56, 43, 145, 120, 101, 238, 22, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 806, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f7dec620d286d4b5b28c5b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3225480121938462642" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8e7979f3780d8d1de08a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24e8d94f9e0fad642fbf94ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0559036ec0ff91" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4561327886709221771" + } + } + } + ] + } + ] + }, + "cborHex": "d905039f4bf7dec620d286d4b5b28c5bd8669f1b2cc33514e239c7b29f4a8e7979f3780d8d1de08affffbf4c24e8d94f9e0fad642fbf94ff470559036ec0ff9141951b3f4d178bc762e98bffff", + "cborBytes": [ + 217, 5, 3, 159, 75, 247, 222, 198, 32, 210, 134, 212, 181, 178, 140, 91, 216, 102, 159, 27, 44, 195, 53, 20, 226, + 57, 199, 178, 159, 74, 142, 121, 121, 243, 120, 13, 141, 29, 224, 138, 255, 255, 191, 76, 36, 232, 217, 79, 158, + 15, 173, 100, 47, 191, 148, 255, 71, 5, 89, 3, 110, 192, 255, 145, 65, 149, 27, 63, 77, 23, 139, 199, 98, 233, + 139, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 807, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1196360474679294437" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14157520583339187988" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5782186626732682968" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "617a48a4862a398a" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1011441266375554446" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4076573706418530996" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9fbf1b109a53835c93b9e51bc4799df5f6369f141b503e741a076a6ed848617a48a4862a398affd8669f1b0e095c79117c758e9f1b3892e62ff7c62ab4ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 191, 27, 16, 154, 83, 131, 92, 147, 185, 229, 27, + 196, 121, 157, 245, 246, 54, 159, 20, 27, 80, 62, 116, 26, 7, 106, 110, 216, 72, 97, 122, 72, 164, 134, 42, 57, + 138, 255, 216, 102, 159, 27, 14, 9, 92, 121, 17, 124, 117, 142, 159, 27, 56, 146, 230, 47, 247, 198, 42, 180, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 808, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15319894170121321329" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "923bd31baf0bff30" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7820da8ddf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4064618853039622041" + } + } + ] + }, + "cborHex": "d9050d9fbf1bd49b329456a8bb7148923bd31baf0bff30ff457820da8ddf1b38686d4fc2c84799ff", + "cborBytes": [ + 217, 5, 13, 159, 191, 27, 212, 155, 50, 148, 86, 168, 187, 113, 72, 146, 59, 211, 27, 175, 11, 255, 48, 255, 69, + 120, 32, 218, 141, 223, 27, 56, 104, 109, 79, 194, 200, 71, 153, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 809, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13243802105429609388" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "855d47ea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10292704432274126770" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "07d2eb7f48a7c6" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10325131796702584249" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "913797323332737387" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b1" + }, + { + "_tag": "ByteArray", + "bytearray": "7d69291fb9b0b9f76a512d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6743401425330685464" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "62" + }, + { + "_tag": "ByteArray", + "bytearray": "96" + }, + { + "_tag": "ByteArray", + "bytearray": "def8f0aae27d9667fe" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9626955260364438224" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79f99f66644f51623ae15559" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb52880ede" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "605a8d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1764135144861954999" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "361f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3683047769159768824" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8ce2e80" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12370535433139278030" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ce2b36c68d79c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12584669736128224769" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7990671004620098841" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bb7cb6fd8a1b3cbac9f44855d47ea1b8ed70825e7c9b7b29f4707d2eb7f48a7c69f1b8f4a3caa098c5db91b0cae75d2f5f3596b41b14b7d69291fb9b0b9f76a512dffd8669f1b5d955fde46b2c6189f4162419649def8f0aae27d9667feffffffbf1b8599d0cdb299bad04c79f99f66644f51623ae1555945eb52880ede43605a8dffbf1b187b7791454773b742361f1b331cd06eb3901af844f8ce2e801babacf86f3da650ce470ce2b36c68d79c1baea5ba72d5881e011b6ee490f13b650d19ffffff", + "cborBytes": [ + 216, 102, 159, 27, 183, 203, 111, 216, 161, 179, 203, 172, 159, 68, 133, 93, 71, 234, 27, 142, 215, 8, 37, 231, + 201, 183, 178, 159, 71, 7, 210, 235, 127, 72, 167, 198, 159, 27, 143, 74, 60, 170, 9, 140, 93, 185, 27, 12, 174, + 117, 210, 245, 243, 89, 107, 65, 177, 75, 125, 105, 41, 31, 185, 176, 185, 247, 106, 81, 45, 255, 216, 102, 159, + 27, 93, 149, 95, 222, 70, 178, 198, 24, 159, 65, 98, 65, 150, 73, 222, 248, 240, 170, 226, 125, 150, 103, 254, + 255, 255, 255, 191, 27, 133, 153, 208, 205, 178, 153, 186, 208, 76, 121, 249, 159, 102, 100, 79, 81, 98, 58, 225, + 85, 89, 69, 235, 82, 136, 14, 222, 67, 96, 90, 141, 255, 191, 27, 24, 123, 119, 145, 69, 71, 115, 183, 66, 54, 31, + 27, 51, 28, 208, 110, 179, 144, 26, 248, 68, 248, 206, 46, 128, 27, 171, 172, 248, 111, 61, 166, 80, 206, 71, 12, + 226, 179, 108, 104, 215, 156, 27, 174, 165, 186, 114, 213, 136, 30, 1, 27, 110, 228, 144, 241, 59, 101, 13, 25, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 810, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1085030913056801005" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "52e9f937db8c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6999763429834884874" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18094579561320566139" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8d675" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "55" + } + ] + }, + "cborHex": "d8669f1b0f0ecddddf1180ed9f9f9f4652e9f937db8c1b612427c0cb14070a1bfb1cdc3de88e4d7b43c8d675ffff4155ffff", + "cborBytes": [ + 216, 102, 159, 27, 15, 14, 205, 221, 223, 17, 128, 237, 159, 159, 159, 70, 82, 233, 249, 55, 219, 140, 27, 97, 36, + 39, 192, 203, 20, 7, 10, 27, 251, 28, 220, 61, 232, 142, 77, 123, 67, 200, 214, 117, 255, 255, 65, 85, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 811, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2122846559444256371" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f9fa0ff1b1d75ddb2d055c673ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 159, 160, 255, 27, 29, 117, 221, 178, 208, 85, + 198, 115, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 812, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5232409423058146335" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8af21bde62" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39dc0ccb94ade9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a7962afec32e625d361" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0302f50602faad" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17888783186582592911" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07e300ffee2e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "374542226838549686" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14546616661204715248" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11413035387361356788" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13666767129071724462" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12024624649277064239" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f71f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ae264a43f568a9846" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee79" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "09bc9f92784712e1" + }, + { + "_tag": "ByteArray", + "bytearray": "f8040104" + }, + { + "_tag": "ByteArray", + "bytearray": "68" + } + ] + }, + "cborHex": "d905079f9fbf1b489d40a5d4c9941f458af21bde624739dc0ccb94ade94a7a7962afec32e625d361ff470302f50602faadd8669f1bf841b987843c5d8f9f4607e300ffee2e02ffffbf1b0532a42bc01874b61bc9dff6c836e2c6f01b9e633f3748a2ebf41bbdaa1c4b544e27ae1ba6e00c68c990c42f42f71f493ae264a43f568a984642ee79ffff4809bc9f92784712e144f80401044168ff", + "cborBytes": [ + 217, 5, 7, 159, 159, 191, 27, 72, 157, 64, 165, 212, 201, 148, 31, 69, 138, 242, 27, 222, 98, 71, 57, 220, 12, + 203, 148, 173, 233, 74, 122, 121, 98, 175, 236, 50, 230, 37, 211, 97, 255, 71, 3, 2, 245, 6, 2, 250, 173, 216, + 102, 159, 27, 248, 65, 185, 135, 132, 60, 93, 143, 159, 70, 7, 227, 0, 255, 238, 46, 2, 255, 255, 191, 27, 5, 50, + 164, 43, 192, 24, 116, 182, 27, 201, 223, 246, 200, 54, 226, 198, 240, 27, 158, 99, 63, 55, 72, 162, 235, 244, 27, + 189, 170, 28, 75, 84, 78, 39, 174, 27, 166, 224, 12, 104, 201, 144, 196, 47, 66, 247, 31, 73, 58, 226, 100, 164, + 63, 86, 138, 152, 70, 66, 238, 121, 255, 255, 72, 9, 188, 159, 146, 120, 71, 18, 225, 68, 248, 4, 1, 4, 65, 104, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 813, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9640339291397137362" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f629c859f504e10a86" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3918997812823372700" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "450047dcb88e6f" + }, + { + "_tag": "ByteArray", + "bytearray": "4cc7b8c5e90696" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "268ead3ac43709b98e8543" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ce9d0bf295ed2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3f47c58ca7b5a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "982426" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a7ade58bdae3186391f467b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd20a461ac5c6112" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6467499586182194023" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d117" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "708162792690924253" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da7c7b08f1d0789ffa9af524" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11835696156414200684" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14311410751526907096" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11118252592076070866" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "97cf484ca3276f7a73d3d5ec" + }, + { + "_tag": "ByteArray", + "bytearray": "3369005c8014bbd4edb65e78" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2356659321934368638" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7222155286485829010" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "48b035" + }, + { + "_tag": "ByteArray", + "bytearray": "c78fcc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1403990059364295712" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2d2d80d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "316f44" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12297455554514572036" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba2bf053840e344c30569c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15656204682471571411" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5c6fd97a" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29fd8669f1b85c95d8241f7a3d29fbf49f629c859f504e10a861b366313bf3cdeb39cff9f47450047dcb88e6f474cc7b8c5e90696ff4b268ead3ac43709b98e8543ffffbf473ce9d0bf295ed247f3f47c58ca7b5a439824264c6a7ade58bdae3186391f467b48bd20a461ac5c61121b59c12c9b7b60236742d1171b09d3e64ed57dbadd4cda7c7b08f1d0789ffa9af5241ba440d6f230864b6cffd8669f1bc69c5840df77acd89f4100ffff9fd8669f1b9a4bf7d351c29fd29f4c97cf484ca3276f7a73d3d5ec4c3369005c8014bbd4edb65e781b20b4892acc82cf7e1b643a3ff7ebb28592ffff4348b03543c78fccbf1b137bf9853496a42044a2d2d80d43316f441baaa956ac0ffed3044bba2bf053840e344c30569c1bd946033565867fd3ffff445c6fd97affff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 216, 102, 159, 27, 133, 201, 93, 130, 65, 247, + 163, 210, 159, 191, 73, 246, 41, 200, 89, 245, 4, 225, 10, 134, 27, 54, 99, 19, 191, 60, 222, 179, 156, 255, 159, + 71, 69, 0, 71, 220, 184, 142, 111, 71, 76, 199, 184, 197, 233, 6, 150, 255, 75, 38, 142, 173, 58, 196, 55, 9, 185, + 142, 133, 67, 255, 255, 191, 71, 60, 233, 208, 191, 41, 94, 210, 71, 243, 244, 124, 88, 202, 123, 90, 67, 152, 36, + 38, 76, 106, 122, 222, 88, 189, 174, 49, 134, 57, 31, 70, 123, 72, 189, 32, 164, 97, 172, 92, 97, 18, 27, 89, 193, + 44, 155, 123, 96, 35, 103, 66, 209, 23, 27, 9, 211, 230, 78, 213, 125, 186, 221, 76, 218, 124, 123, 8, 241, 208, + 120, 159, 250, 154, 245, 36, 27, 164, 64, 214, 242, 48, 134, 75, 108, 255, 216, 102, 159, 27, 198, 156, 88, 64, + 223, 119, 172, 216, 159, 65, 0, 255, 255, 159, 216, 102, 159, 27, 154, 75, 247, 211, 81, 194, 159, 210, 159, 76, + 151, 207, 72, 76, 163, 39, 111, 122, 115, 211, 213, 236, 76, 51, 105, 0, 92, 128, 20, 187, 212, 237, 182, 94, 120, + 27, 32, 180, 137, 42, 204, 130, 207, 126, 27, 100, 58, 63, 247, 235, 178, 133, 146, 255, 255, 67, 72, 176, 53, 67, + 199, 143, 204, 191, 27, 19, 123, 249, 133, 52, 150, 164, 32, 68, 162, 210, 216, 13, 67, 49, 111, 68, 27, 170, 169, + 86, 172, 15, 254, 211, 4, 75, 186, 43, 240, 83, 132, 14, 52, 76, 48, 86, 156, 27, 217, 70, 3, 53, 101, 134, 127, + 211, 255, 255, 68, 92, 111, 217, 122, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 814, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14145623856301733970" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11032026856097382579" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11040719514763640852" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2908906594682662573" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "468462999909359493" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4676537235761542560" + } + }, + { + "_tag": "ByteArray", + "bytearray": "27c238c8db" + }, + { + "_tag": "ByteArray", + "bytearray": "3d570730" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13564045860717006880" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3003680443054656609" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3821055261654265603" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10365781481459070694" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a48a4234" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6617079992350748130" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00021f180da2885097a5" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b8" + }, + { + "_tag": "ByteArray", + "bytearray": "ef078e7a40" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19fd8669f1bc44f59f35927f8529fd8669f1b9919a1f9b64100b39f1b993883e70635c014ffff9f1b285e8322c4d9eead1b0680509dcc02df851b40e665d6ac7435a04527c238c8db443d570730ffd8669f1bbc3d2bd84d2510209f1b29af3772e30f8c611b35071d84020a2f03ffffffffd8669f1b8fdaa7564db0b6e69f44a48a4234bf1b5bd49731ba692de24a00021f180da2885097a5ffffff41b845ef078e7a40ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 216, 102, 159, 27, 196, 79, 89, 243, 89, 39, 248, + 82, 159, 216, 102, 159, 27, 153, 25, 161, 249, 182, 65, 0, 179, 159, 27, 153, 56, 131, 231, 6, 53, 192, 20, 255, + 255, 159, 27, 40, 94, 131, 34, 196, 217, 238, 173, 27, 6, 128, 80, 157, 204, 2, 223, 133, 27, 64, 230, 101, 214, + 172, 116, 53, 160, 69, 39, 194, 56, 200, 219, 68, 61, 87, 7, 48, 255, 216, 102, 159, 27, 188, 61, 43, 216, 77, 37, + 16, 32, 159, 27, 41, 175, 55, 114, 227, 15, 140, 97, 27, 53, 7, 29, 132, 2, 10, 47, 3, 255, 255, 255, 255, 216, + 102, 159, 27, 143, 218, 167, 86, 77, 176, 182, 230, 159, 68, 164, 138, 66, 52, 191, 27, 91, 212, 151, 49, 186, + 105, 45, 226, 74, 0, 2, 31, 24, 13, 162, 136, 80, 151, 165, 255, 255, 255, 65, 184, 69, 239, 7, 142, 122, 64, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 815, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3544e40d49" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "16ca50089e75" + }, + { + "_tag": "ByteArray", + "bytearray": "0628812a9972ce973858b7ce" + }, + { + "_tag": "ByteArray", + "bytearray": "ba7bd3f7" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10853899497884308505" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14773058719044443188" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "405c27e802db5cd026224ebc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6302757554694116637" + } + }, + { + "_tag": "ByteArray", + "bytearray": "261c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4161958389267141783" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14894683319533491770" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6369504676161698021" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d519" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12783408678934698951" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f552773366c53f6ce424" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c71485f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee2d6c503cc0" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905019f453544e40d499f9f4616ca50089e754c0628812a9972ce973858b7ce44ba7bd3f7ff9f1b96a0cc163f2f5419ffffd8669f1bcd0472a24aa19c349f4c405c27e802db5cd026224ebc1b5777e49a40f3d51d42261cbf1b39c23f1aa23994971bceb48b904ebad63a1b586506c181ceb8e542d5191bb167ca76ce8c5bc74af552773366c53f6ce424448c71485f46ee2d6c503cc0ffffffff", + "cborBytes": [ + 217, 5, 1, 159, 69, 53, 68, 228, 13, 73, 159, 159, 70, 22, 202, 80, 8, 158, 117, 76, 6, 40, 129, 42, 153, 114, + 206, 151, 56, 88, 183, 206, 68, 186, 123, 211, 247, 255, 159, 27, 150, 160, 204, 22, 63, 47, 84, 25, 255, 255, + 216, 102, 159, 27, 205, 4, 114, 162, 74, 161, 156, 52, 159, 76, 64, 92, 39, 232, 2, 219, 92, 208, 38, 34, 78, 188, + 27, 87, 119, 228, 154, 64, 243, 213, 29, 66, 38, 28, 191, 27, 57, 194, 63, 26, 162, 57, 148, 151, 27, 206, 180, + 139, 144, 78, 186, 214, 58, 27, 88, 101, 6, 193, 129, 206, 184, 229, 66, 213, 25, 27, 177, 103, 202, 118, 206, + 140, 91, 199, 74, 245, 82, 119, 51, 102, 197, 63, 108, 228, 36, 68, 140, 113, 72, 95, 70, 238, 45, 108, 80, 60, + 192, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 816, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15893289850472390864" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12568048381606395215" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13032793894257452023" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15286906998399201840" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9108286820371381548" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18258521272245210995" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38237f12" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8400342998070631074" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "30924029f288bb6e82899109" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10312259522376545718" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13511230072513039951" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18430748289327956503" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13220070803822166464" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1557290381338203726" + } + } + } + ] + } + ] + }, + "cborHex": "d905069fd8669f1bdc904ee9a9ba60d09fbf1bae6aad6a29927d4f1bb4ddc8ff021863f71bd42600ebea0472301b7e67229af89bbd2c1bfd634c5bfc16cf734438237f12ffd8669f1b7494037327709aa29f4c30924029f288bb6e82899109ffffffffd8669f1b8f1c81661ee4b5b680ffbf1bbb81882a56b70e4f1bffc72beb3a080217ffbf1bb777205a675541c01b159c9b59d7cbd64effff", + "cborBytes": [ + 217, 5, 6, 159, 216, 102, 159, 27, 220, 144, 78, 233, 169, 186, 96, 208, 159, 191, 27, 174, 106, 173, 106, 41, + 146, 125, 79, 27, 180, 221, 200, 255, 2, 24, 99, 247, 27, 212, 38, 0, 235, 234, 4, 114, 48, 27, 126, 103, 34, 154, + 248, 155, 189, 44, 27, 253, 99, 76, 91, 252, 22, 207, 115, 68, 56, 35, 127, 18, 255, 216, 102, 159, 27, 116, 148, + 3, 115, 39, 112, 154, 162, 159, 76, 48, 146, 64, 41, 242, 136, 187, 110, 130, 137, 145, 9, 255, 255, 255, 255, + 216, 102, 159, 27, 143, 28, 129, 102, 30, 228, 181, 182, 128, 255, 191, 27, 187, 129, 136, 42, 86, 183, 14, 79, + 27, 255, 199, 43, 235, 58, 8, 2, 23, 255, 191, 27, 183, 119, 32, 90, 103, 85, 65, 192, 27, 21, 156, 155, 89, 215, + 203, 214, 78, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 817, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10328558919293784748" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fbff06ed" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f1b8f56699d3232d2ac44fbff06edffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 27, 143, 86, 105, 157, 50, 50, 210, 172, 68, 251, + 255, 6, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 818, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10705841893556930538" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4495409634938533783" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10058929688164496591" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15372174842708806888" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8416280036956596052" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9416087562840978916" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18170972044060072820" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9086ba" + }, + { + "_tag": "ByteArray", + "bytearray": "809382e96d630b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11353891271893007426" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16017112725325614999" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbc2402343646aa4e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22308cb0f4d234" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5718448865643082709" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e26e7c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e22fd31efa110db4e5671822" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9103798521081609186" + } + } + ] + }, + "cborHex": "d8669f1b9492ca7aeef4c7ea9f9fbf1b3e62e73eca6137971b8b987f41c3acf4cf1bd554ef92fcdacce81b74cca21a2d026754ff809f1b82aca9bff51c35e4ffd8669f1bfc2c42ccd5c11b749f439086ba47809382e96d630b1b9d911ff4cf973c42ffffbf1bde483729506c0f9749cbc2402343646aa4e84722308cb0f4d2341b4f5c02f216e433d5443e26e7c441a8416d4ce22fd31efa110db4e5671822ffff1b7e5730855bcbbbe2ffff", + "cborBytes": [ + 216, 102, 159, 27, 148, 146, 202, 122, 238, 244, 199, 234, 159, 159, 191, 27, 62, 98, 231, 62, 202, 97, 55, 151, + 27, 139, 152, 127, 65, 195, 172, 244, 207, 27, 213, 84, 239, 146, 252, 218, 204, 232, 27, 116, 204, 162, 26, 45, + 2, 103, 84, 255, 128, 159, 27, 130, 172, 169, 191, 245, 28, 53, 228, 255, 216, 102, 159, 27, 252, 44, 66, 204, + 213, 193, 27, 116, 159, 67, 144, 134, 186, 71, 128, 147, 130, 233, 109, 99, 11, 27, 157, 145, 31, 244, 207, 151, + 60, 66, 255, 255, 191, 27, 222, 72, 55, 41, 80, 108, 15, 151, 73, 203, 194, 64, 35, 67, 100, 106, 164, 232, 71, + 34, 48, 140, 176, 244, 210, 52, 27, 79, 92, 2, 242, 22, 228, 51, 213, 68, 62, 38, 231, 196, 65, 168, 65, 109, 76, + 226, 47, 211, 30, 250, 17, 13, 180, 229, 103, 24, 34, 255, 255, 27, 126, 87, 48, 133, 91, 203, 187, 226, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 819, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14391277227961407072" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16029464541886982379" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4d4223551467a1d378b95ffa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14051980105625146786" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18002804005189311180" + } + }, + { + "_tag": "ByteArray", + "bytearray": "035c5c58711963cec36fd658" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4026880382762677902" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16512867372517319629" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5641166280664374479" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4857708553260608976" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3946937106090061849" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5111378551429928894" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9625856431327816041" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7832856474987091992" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11554866249370359991" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8151001963539396950" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16593363500990296196" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16075155374950928205" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15678621967443108158" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16653003841227025634" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17517617538336852718" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3314751245069468222" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9cfc" + }, + { + "_tag": "ByteArray", + "bytearray": "771bf6b62183a770ef6e28b0" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9fd8669f1bc7b81663fcced6609fd8669f1bde741912b6e4a8eb9f4c4d4223551467a1d378b95ffa1bc302a9749aa495a21bf9d6cedc1a49dacc4c035c5c58711963cec36fd658ffffd8669f1b37e25a5f6f8ef68e9f1be5297d62ea0863cdffffffff1b4e4972d815e95ccfd8669f1b436a0c312379add09fbf1b36c65662df4e701941e01b46ef43b6168817be1b8595e96ca03429691b6cb3e576b83958181ba05b21a22cded8b71b711e2d199846f9561be6477830517570841bdf166ca4c9294f4d1bd995a79c4915213eff9f1be71b5ac31f8d6ce21bf31b1456bbb88aeeff9f1b2e005cb1f126423e429cfc4c771bf6b62183a770ef6e28b0ffa0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 216, 102, 159, 27, 199, 184, 22, 99, 252, 206, + 214, 96, 159, 216, 102, 159, 27, 222, 116, 25, 18, 182, 228, 168, 235, 159, 76, 77, 66, 35, 85, 20, 103, 161, 211, + 120, 185, 95, 250, 27, 195, 2, 169, 116, 154, 164, 149, 162, 27, 249, 214, 206, 220, 26, 73, 218, 204, 76, 3, 92, + 92, 88, 113, 25, 99, 206, 195, 111, 214, 88, 255, 255, 216, 102, 159, 27, 55, 226, 90, 95, 111, 142, 246, 142, + 159, 27, 229, 41, 125, 98, 234, 8, 99, 205, 255, 255, 255, 255, 27, 78, 73, 114, 216, 21, 233, 92, 207, 216, 102, + 159, 27, 67, 106, 12, 49, 35, 121, 173, 208, 159, 191, 27, 54, 198, 86, 98, 223, 78, 112, 25, 65, 224, 27, 70, + 239, 67, 182, 22, 136, 23, 190, 27, 133, 149, 233, 108, 160, 52, 41, 105, 27, 108, 179, 229, 118, 184, 57, 88, 24, + 27, 160, 91, 33, 162, 44, 222, 216, 183, 27, 113, 30, 45, 25, 152, 70, 249, 86, 27, 230, 71, 120, 48, 81, 117, + 112, 132, 27, 223, 22, 108, 164, 201, 41, 79, 77, 27, 217, 149, 167, 156, 73, 21, 33, 62, 255, 159, 27, 231, 27, + 90, 195, 31, 141, 108, 226, 27, 243, 27, 20, 86, 187, 184, 138, 238, 255, 159, 27, 46, 0, 92, 177, 241, 38, 66, + 62, 66, 156, 252, 76, 119, 27, 246, 182, 33, 131, 167, 112, 239, 110, 40, 176, 255, 160, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 820, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7946355333459840218" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4124653924830406552" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9453020828807362339" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3048276524858603569" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13225091635878619346" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "323dd6ab96d988fc8b5b0e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2191776731380641425" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12192612756235894850" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b3dd" + }, + { + "_tag": "ByteArray", + "bytearray": "e378acabca56e5555f75d9" + }, + { + "_tag": "ByteArray", + "bytearray": "1e10a44350b16e006c" + }, + { + "_tag": "ByteArray", + "bytearray": "633a0586bf640a511b" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23d0a327379834" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d89978261" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d8c7fb" + } + ] + } + ] + }, + "cborHex": "d8669f1b6e472012fde78cda9fd8669f1b393db6e42aefe7989fbf1b832fe05c0b6e77231b2a4da759515bf8311bb788f6c5f688e8d24b323dd6ab96d988fc8b5b0eff1b1e6ac1531ce8ee91d8669f1ba934dcb3db5640429f42b3dd4be378acabca56e5555f75d9491e10a44350b16e006c49633a0586bf640a511bffffffff9fbf4723d0a327379834455d89978261ff43d8c7fbffffff", + "cborBytes": [ + 216, 102, 159, 27, 110, 71, 32, 18, 253, 231, 140, 218, 159, 216, 102, 159, 27, 57, 61, 182, 228, 42, 239, 231, + 152, 159, 191, 27, 131, 47, 224, 92, 11, 110, 119, 35, 27, 42, 77, 167, 89, 81, 91, 248, 49, 27, 183, 136, 246, + 197, 246, 136, 232, 210, 75, 50, 61, 214, 171, 150, 217, 136, 252, 139, 91, 14, 255, 27, 30, 106, 193, 83, 28, + 232, 238, 145, 216, 102, 159, 27, 169, 52, 220, 179, 219, 86, 64, 66, 159, 66, 179, 221, 75, 227, 120, 172, 171, + 202, 86, 229, 85, 95, 117, 217, 73, 30, 16, 164, 67, 80, 177, 110, 0, 108, 73, 99, 58, 5, 134, 191, 100, 10, 81, + 27, 255, 255, 255, 255, 159, 191, 71, 35, 208, 163, 39, 55, 152, 52, 69, 93, 137, 151, 130, 97, 255, 67, 216, 199, + 251, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 821, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1098967818572302679" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1084740594067582104" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58b4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2748116904946877671" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10636968042167308238" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3624903696390917113" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21287c03" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14980118028930315001" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6349aa097f9cabde03ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16668244352896012454" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "551549565189306219" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17195316609235122850" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65bbb7588af321c337" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1180042699706407459" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14117336444327704378" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c02b5101" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6129934733050235083" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ef719c51" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8a4464" + }, + { + "_tag": "ByteArray", + "bytearray": "0407020001be4a00011edd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2370095577149988124" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "d905079f9f1b0f4051688d968957bf1b0f0dc5d2b6d82c984258b41b262345c3d09ac4e71b939e1a13c8908fce1b324e3eb4d0618bf94421287c031bcfe411faafd0f2f94a6349aa097f9cabde03ff1be7517fed43c710a61b07a77f684521376b1beea20959f5d57aa24965bbb7588af321c337ff1b10605a954fcb1a23d8669f1bc3eadab302d4373a9f44c02b51011b5511e72973c9c8cbffff44ef719c51ff438a44644b0407020001be4a00011edd1b20e4455ebfbfdd1c0eff", + "cborBytes": [ + 217, 5, 7, 159, 159, 27, 15, 64, 81, 104, 141, 150, 137, 87, 191, 27, 15, 13, 197, 210, 182, 216, 44, 152, 66, 88, + 180, 27, 38, 35, 69, 195, 208, 154, 196, 231, 27, 147, 158, 26, 19, 200, 144, 143, 206, 27, 50, 78, 62, 180, 208, + 97, 139, 249, 68, 33, 40, 124, 3, 27, 207, 228, 17, 250, 175, 208, 242, 249, 74, 99, 73, 170, 9, 127, 156, 171, + 222, 3, 255, 27, 231, 81, 127, 237, 67, 199, 16, 166, 27, 7, 167, 127, 104, 69, 33, 55, 107, 27, 238, 162, 9, 89, + 245, 213, 122, 162, 73, 101, 187, 183, 88, 138, 243, 33, 195, 55, 255, 27, 16, 96, 90, 149, 79, 203, 26, 35, 216, + 102, 159, 27, 195, 234, 218, 179, 2, 212, 55, 58, 159, 68, 192, 43, 81, 1, 27, 85, 17, 231, 41, 115, 201, 200, + 203, 255, 255, 68, 239, 113, 156, 81, 255, 67, 138, 68, 100, 75, 4, 7, 2, 0, 1, 190, 74, 0, 1, 30, 221, 27, 32, + 228, 69, 94, 191, 191, 221, 28, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 822, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4417802897240523898" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9872985115051180015" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11036428347785586969" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17979304198330822442" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4008741538575482054" + } + } + ] + }, + "cborHex": "d8669f1b3d4f305419b6847a9fd8669f1b8903e3a71f583fef80ffd8669f1b9929451bdacfa9199fd8669f1bf98351e8f232af2a80ffffff1b37a1e930ab24fcc6ffff", + "cborBytes": [ + 216, 102, 159, 27, 61, 79, 48, 84, 25, 182, 132, 122, 159, 216, 102, 159, 27, 137, 3, 227, 167, 31, 88, 63, 239, + 128, 255, 216, 102, 159, 27, 153, 41, 69, 27, 218, 207, 169, 25, 159, 216, 102, 159, 27, 249, 131, 81, 232, 242, + 50, 175, 42, 128, 255, 255, 255, 27, 55, 161, 233, 48, 171, 36, 252, 198, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 823, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "214580550386082117" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b30700224dbc018e3756" + } + ] + }, + "cborHex": "d905039f1b02fa57dfa97861454ab30700224dbc018e3756ff", + "cborBytes": [ + 217, 5, 3, 159, 27, 2, 250, 87, 223, 169, 120, 97, 69, 74, 179, 7, 0, 34, 77, 188, 1, 142, 55, 86, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 824, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14365292647451791247" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01d3f852fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1832526733230748012" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2daa4c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8924581194493649968" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8559470360307509515" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8e81e6adc31e25b6a70899" + }, + { + "_tag": "ByteArray", + "bytearray": "b4f018097aeb80" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2843714495870459941" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ec7c28e3" + }, + { + "_tag": "ByteArray", + "bytearray": "d88006377d24" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10077130057519733270" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5477559343990337744" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8806707967542353522" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6548473626418786237" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11427636279307615523" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10431204945472604346" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dcf40ff6" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fe17a18622164d3fde6fb8a8" + }, + { + "_tag": "ByteArray", + "bytearray": "d1e1ca3d8047" + }, + { + "_tag": "ByteArray", + "bytearray": "947a965714014f9ade3701" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ede49b73" + }, + { + "_tag": "ByteArray", + "bytearray": "9900" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11898489373222212829" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6daa13b0ad" + }, + { + "_tag": "ByteArray", + "bytearray": "66" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6908029623278349390" + } + }, + { + "_tag": "ByteArray", + "bytearray": "99ae3174a208" + } + ] + }, + "cborHex": "d8669f1bc75bc58d61e50f8f9fbf4501d3f852fb1b196e715acfa0316c432daa4c1b7bda7b4fdaece430ffd8669f1b76c958f1539d290b9f4b8e81e6adc31e25b6a7089947b4f018097aeb80ffff9fd8669f1b2776e74470fce02580ff9f44ec7c28e346d88006377d241b8bd9286579e01a16ffbf1b4c043333b6aa70d01b7a37b63c8df6de721b5ae0da1163b4afbd1b9e971ea65a7f3d231b90c315a18a3148ba44dcf40ff6ff9f4cfe17a18622164d3fde6fb8a846d1e1ca3d80474b947a965714014f9ade3701ff9f44ede49b734299001ba51fed0b46ab94dd456daa13b0ad4166ffff1b5fde40579161ac4e4699ae3174a208ffff", + "cborBytes": [ + 216, 102, 159, 27, 199, 91, 197, 141, 97, 229, 15, 143, 159, 191, 69, 1, 211, 248, 82, 251, 27, 25, 110, 113, 90, + 207, 160, 49, 108, 67, 45, 170, 76, 27, 123, 218, 123, 79, 218, 236, 228, 48, 255, 216, 102, 159, 27, 118, 201, + 88, 241, 83, 157, 41, 11, 159, 75, 142, 129, 230, 173, 195, 30, 37, 182, 167, 8, 153, 71, 180, 240, 24, 9, 122, + 235, 128, 255, 255, 159, 216, 102, 159, 27, 39, 118, 231, 68, 112, 252, 224, 37, 128, 255, 159, 68, 236, 124, 40, + 227, 70, 216, 128, 6, 55, 125, 36, 27, 139, 217, 40, 101, 121, 224, 26, 22, 255, 191, 27, 76, 4, 51, 51, 182, 170, + 112, 208, 27, 122, 55, 182, 60, 141, 246, 222, 114, 27, 90, 224, 218, 17, 99, 180, 175, 189, 27, 158, 151, 30, + 166, 90, 127, 61, 35, 27, 144, 195, 21, 161, 138, 49, 72, 186, 68, 220, 244, 15, 246, 255, 159, 76, 254, 23, 161, + 134, 34, 22, 77, 63, 222, 111, 184, 168, 70, 209, 225, 202, 61, 128, 71, 75, 148, 122, 150, 87, 20, 1, 79, 154, + 222, 55, 1, 255, 159, 68, 237, 228, 155, 115, 66, 153, 0, 27, 165, 31, 237, 11, 70, 171, 148, 221, 69, 109, 170, + 19, 176, 173, 65, 102, 255, 255, 27, 95, 222, 64, 87, 145, 97, 172, 78, 70, 153, 174, 49, 116, 162, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 825, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9103681773909226225" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3ba4ff0b8dd7637191" + } + ] + } + ] + }, + "cborHex": "d905049fd8669f1b7e56c6570a0eb2f19f493ba4ff0b8dd7637191ffffff", + "cborBytes": [ + 217, 5, 4, 159, 216, 102, 159, 27, 126, 86, 198, 87, 10, 14, 178, 241, 159, 73, 59, 164, 255, 11, 141, 215, 99, + 113, 145, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 826, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b5a1044d12794a06fb" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3995541898305982210" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4982761043918664894" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df7d014e46610f38ddff2e40" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13277592845699247179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5621007130279797825" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15667568714886902513" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3386095587590669913" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11843686012854446582" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + "cborHex": "d9050a9f49b5a1044d12794a06fbbf071b3773042fedb7cf021b452652c5076d34be4cdf7d014e46610f38ddff2e401bb8437c58702bec4b1b4e01d4342043e4411bd96e62bc60db72f10e1bfffffffffffffffd1b2efdd3ff21dc0659ff1ba45d39ad9b73a9f606ff", + "cborBytes": [ + 217, 5, 10, 159, 73, 181, 161, 4, 77, 18, 121, 74, 6, 251, 191, 7, 27, 55, 115, 4, 47, 237, 183, 207, 2, 27, 69, + 38, 82, 197, 7, 109, 52, 190, 76, 223, 125, 1, 78, 70, 97, 15, 56, 221, 255, 46, 64, 27, 184, 67, 124, 88, 112, + 43, 236, 75, 27, 78, 1, 212, 52, 32, 67, 228, 65, 27, 217, 110, 98, 188, 96, 219, 114, 241, 14, 27, 255, 255, 255, + 255, 255, 255, 255, 253, 27, 46, 253, 211, 255, 33, 220, 6, 89, 255, 27, 164, 93, 57, 173, 155, 115, 169, 246, 6, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 827, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14202531187573528688" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0518" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7986876725910979377" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c2" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0392e05784" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5cd1494" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31408235e36bac6ad260" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18426886207819657173" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7830" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "809509393534901525" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8cc84f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14951439608061458608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8eec4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2878878909613817890" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc5aaf75" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6178db9960272" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bc51986ddeaba18709f9f9f4205181b6ed71610e0c2433141c2ffffbf450392e0578444d5cd14944a31408235e36bac6ad2601bffb973604da2afd54278301b0b3bf48123fd5d1544b8cc84f11bcf7e2f1b7f3578b043b8eec41b27f3d51d86e5402244cc5aaf7547f6178db9960272ffffff", + "cborBytes": [ + 216, 102, 159, 27, 197, 25, 134, 221, 234, 186, 24, 112, 159, 159, 159, 66, 5, 24, 27, 110, 215, 22, 16, 224, 194, + 67, 49, 65, 194, 255, 255, 191, 69, 3, 146, 224, 87, 132, 68, 213, 205, 20, 148, 74, 49, 64, 130, 53, 227, 107, + 172, 106, 210, 96, 27, 255, 185, 115, 96, 77, 162, 175, 213, 66, 120, 48, 27, 11, 59, 244, 129, 35, 253, 93, 21, + 68, 184, 204, 132, 241, 27, 207, 126, 47, 27, 127, 53, 120, 176, 67, 184, 238, 196, 27, 39, 243, 213, 29, 134, + 229, 64, 34, 68, 204, 90, 175, 117, 71, 246, 23, 141, 185, 150, 2, 114, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 828, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0d714290e9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9735069767384171053" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10208992493680112843" + } + }, + { + "_tag": "ByteArray", + "bytearray": "189460b8d92238e87f89" + } + ] + }, + "cborHex": "d9050c9f450d714290e91b8719ea5ff494022d1b8dada0955c6eb4cb4a189460b8d92238e87f89ff", + "cborBytes": [ + 217, 5, 12, 159, 69, 13, 113, 66, 144, 233, 27, 135, 25, 234, 95, 244, 148, 2, 45, 27, 141, 173, 160, 149, 92, + 110, 180, 203, 74, 24, 148, 96, 184, 217, 34, 56, 232, 127, 137, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 829, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9241499452052867008" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5199353490909486900" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dc9435b34d908fc2ee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "740616675024383876" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13546416887030257777" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1c50f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1481326748449379445" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3884794207440921258" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e658df13c41" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14203003418657076319" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12506319400782800510" + } + } + ] + }, + "cborHex": "d8669f1b804066c9bf9407c09f1b4827d073df58df349f49dc9435b34d908fc2ee1b0a4732f1258f2f841bbbfe8a6302ca98719f431c50f91b148ebad44d9c14751b35e98fbfc802e2aa466e658df13c411bc51b345bc8b6b45fffff1bad8f5f3bd33c267effff", + "cborBytes": [ + 216, 102, 159, 27, 128, 64, 102, 201, 191, 148, 7, 192, 159, 27, 72, 39, 208, 115, 223, 88, 223, 52, 159, 73, 220, + 148, 53, 179, 77, 144, 143, 194, 238, 27, 10, 71, 50, 241, 37, 143, 47, 132, 27, 187, 254, 138, 99, 2, 202, 152, + 113, 159, 67, 28, 80, 249, 27, 20, 142, 186, 212, 77, 156, 20, 117, 27, 53, 233, 143, 191, 200, 2, 226, 170, 70, + 110, 101, 141, 241, 60, 65, 27, 197, 27, 52, 91, 200, 182, 180, 95, 255, 255, 27, 173, 143, 95, 59, 211, 60, 38, + 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 830, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1296665203169923025" + }, + "fields": [] + }, + "cborHex": "d8669f1b11feae21db8d8fd180ff", + "cborBytes": [216, 102, 159, 27, 17, 254, 174, 33, 219, 141, 143, 209, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 831, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5129280621010325377" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d5d03f06e25ca5462f6a87" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01dd53e604ceeefe6303" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0206dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf0705056c010403fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5379462988338995926" + } + } + } + ] + } + ] + }, + "cborHex": "d905049f1b472edd8c789d8f814bd5d03f06e25ca5462f6a87bf4a01dd53e604ceeefe630341fd430206dc49bf0705056c010403fe41a61b4aa7b116164ea2d6ffff", + "cborBytes": [ + 217, 5, 4, 159, 27, 71, 46, 221, 140, 120, 157, 143, 129, 75, 213, 208, 63, 6, 226, 92, 165, 70, 47, 106, 135, + 191, 74, 1, 221, 83, 230, 4, 206, 238, 254, 99, 3, 65, 253, 67, 2, 6, 220, 73, 191, 7, 5, 5, 108, 1, 4, 3, 254, + 65, 166, 27, 74, 167, 177, 22, 22, 78, 162, 214, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 832, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13271821500023241849" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11873493536625113724" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9789480300829670720" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6187611091451441174" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d2faeddcaff2da14f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17668583944453555363" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ce605e17d7601" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9272275827550249943" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5022575941809533437" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf38a37eb6217971" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eadd509d89a0b520df" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4088952589113770742" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10974418575139108578" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d85d57e235" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16758849593272012775" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13921267327262893842" + } + }, + { + "_tag": "ByteArray", + "bytearray": "058672a4f3" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "339f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1190239406110798221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc9be71150" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2155605077481673159" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7fdfb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4547122247448092370" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8051b24f89eaab509" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9185984090866815910" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6016065648825190144" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18184612286863549061" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08bc58b1d7898d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bb82efb564f46fc799f1ba4c71f768d6fba7cd9050b9f1b87db38777aa2fd409f1b55decf811a3af01649d2faeddcaff2da14f91bf5336b7c3d5304a3474ce605e17d76011b80adbdbd1092e3d7ff1b45b3c63554faf1fd48bf38a37eb6217971ffd8669f1bffffffffffffffff9f49eadd509d89a0b520dfd8669f1b38bee0b7318a42f69f1b984cf78c939d76e245d85d57e2351be89364e9b32d8fe71bc13246e048c1a71245058672a4f3ffffffff42339fbf1b1084946f06e7f18d45bc9be711501b1dea3f65a752d1c743e7fdfb1b3f1a9f97a56b5ed249f8051b24f89eaab5091b7f7b2bdc788193a61b537d5bd547a7c7001bfc5cb88758b4a2854708bc58b1d7898d1bfffffffffffffff412ffffff", + "cborBytes": [ + 216, 102, 159, 27, 184, 46, 251, 86, 79, 70, 252, 121, 159, 27, 164, 199, 31, 118, 141, 111, 186, 124, 217, 5, 11, + 159, 27, 135, 219, 56, 119, 122, 162, 253, 64, 159, 27, 85, 222, 207, 129, 26, 58, 240, 22, 73, 210, 250, 237, + 220, 175, 242, 218, 20, 249, 27, 245, 51, 107, 124, 61, 83, 4, 163, 71, 76, 230, 5, 225, 125, 118, 1, 27, 128, + 173, 189, 189, 16, 146, 227, 215, 255, 27, 69, 179, 198, 53, 84, 250, 241, 253, 72, 191, 56, 163, 126, 182, 33, + 121, 113, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 73, 234, 221, 80, 157, 137, 160, + 181, 32, 223, 216, 102, 159, 27, 56, 190, 224, 183, 49, 138, 66, 246, 159, 27, 152, 76, 247, 140, 147, 157, 118, + 226, 69, 216, 93, 87, 226, 53, 27, 232, 147, 100, 233, 179, 45, 143, 231, 27, 193, 50, 70, 224, 72, 193, 167, 18, + 69, 5, 134, 114, 164, 243, 255, 255, 255, 255, 66, 51, 159, 191, 27, 16, 132, 148, 111, 6, 231, 241, 141, 69, 188, + 155, 231, 17, 80, 27, 29, 234, 63, 101, 167, 82, 209, 199, 67, 231, 253, 251, 27, 63, 26, 159, 151, 165, 107, 94, + 210, 73, 248, 5, 27, 36, 248, 158, 170, 181, 9, 27, 127, 123, 43, 220, 120, 129, 147, 166, 27, 83, 125, 91, 213, + 71, 167, 199, 0, 27, 252, 92, 184, 135, 88, 180, 162, 133, 71, 8, 188, 88, 177, 215, 137, 141, 27, 255, 255, 255, + 255, 255, 255, 255, 244, 18, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 833, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4958391854067126740" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16498618337124211252" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1239754619655502855" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2046435368179605253" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3151" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5254910214218153251" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3422120327926304119" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16846990432181916231" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f501961daca7674" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9f8e85f934a13592f5e6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13603283328085077817" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7435190430894583526" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "72" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b44cfbf1ededc91d49fd8669f1be4f6ddf6d508da349f1b11347e4211373c07bf1b1c66661ff8241f054231511b48ed30ff850b7d231b2f7dd04e9cb0cd771be9cc8889f49b9247489f501961daca7674ff4a9f8e85f934a13592f5e6d8669f1bbcc8921d15812f399f1b672f1a4db6daeee6ffff9f4172ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 68, 207, 191, 30, 222, 220, 145, 212, 159, 216, 102, 159, 27, 228, 246, 221, 246, 213, 8, 218, + 52, 159, 27, 17, 52, 126, 66, 17, 55, 60, 7, 191, 27, 28, 102, 102, 31, 248, 36, 31, 5, 66, 49, 81, 27, 72, 237, + 48, 255, 133, 11, 125, 35, 27, 47, 125, 208, 78, 156, 176, 205, 119, 27, 233, 204, 136, 137, 244, 155, 146, 71, + 72, 159, 80, 25, 97, 218, 202, 118, 116, 255, 74, 159, 142, 133, 249, 52, 161, 53, 146, 245, 230, 216, 102, 159, + 27, 188, 200, 146, 29, 21, 129, 47, 57, 159, 27, 103, 47, 26, 77, 182, 218, 238, 230, 255, 255, 159, 65, 114, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 834, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3883639618175660851" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10f2451f48f36cd7d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "269431b681" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6b68d5aca8d2acc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3628748190692754372" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9431882532349891028" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2ead6bcd076d5497addd9c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5752332568279971365" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3394947993332684063" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12714388679019195181" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16553876209208558604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4395664362683619848" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13619913353992533660" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5735416608973990765" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "632ad24601" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10869565071130698588" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18290094214570249179" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11011676103063153355" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13883394323003341389" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11577227556492553310" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7025645" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16135479238814873584" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f60a88a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17357327799863682408" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15924962804342167437" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14668120768688567840" + } + } + ] + }, + "cborHex": "d8669f1b35e575a804fe73339fbf4910f2451f48f36cd7d645269431b68148a6b68d5aca8d2acc1b325be740e59543c441d11b82e4c730dfed51d44cd2ead6bcd076d5497addd9c01b4fd463fe623cf625ff9fbf1b2f1d47367585151f1bb0729523cd2feb2d1be5bb2eb4c1aa840c1b3d008972d999da08ffff1bbd03a708b852f69cbf1b4f984b04b0c52b6d45632ad246011b96d873d7bfbd235c1bfdd377c877e30bdb1b98d15512c8bcaacb1bc0abb9945349fa4d1ba0aa931fb49a2c5e44d70256451bdfecbce0d64037f0447f60a88a1bf0e19dabc0e325681bdd00d54be61f978dff1bcb8fa21fc4363620ffff", + "cborBytes": [ + 216, 102, 159, 27, 53, 229, 117, 168, 4, 254, 115, 51, 159, 191, 73, 16, 242, 69, 31, 72, 243, 108, 215, 214, 69, + 38, 148, 49, 182, 129, 72, 166, 182, 141, 90, 202, 141, 42, 204, 27, 50, 91, 231, 64, 229, 149, 67, 196, 65, 209, + 27, 130, 228, 199, 48, 223, 237, 81, 212, 76, 210, 234, 214, 188, 208, 118, 213, 73, 122, 221, 217, 192, 27, 79, + 212, 99, 254, 98, 60, 246, 37, 255, 159, 191, 27, 47, 29, 71, 54, 117, 133, 21, 31, 27, 176, 114, 149, 35, 205, + 47, 235, 45, 27, 229, 187, 46, 180, 193, 170, 132, 12, 27, 61, 0, 137, 114, 217, 153, 218, 8, 255, 255, 27, 189, + 3, 167, 8, 184, 82, 246, 156, 191, 27, 79, 152, 75, 4, 176, 197, 43, 109, 69, 99, 42, 210, 70, 1, 27, 150, 216, + 115, 215, 191, 189, 35, 92, 27, 253, 211, 119, 200, 119, 227, 11, 219, 27, 152, 209, 85, 18, 200, 188, 170, 203, + 27, 192, 171, 185, 148, 83, 73, 250, 77, 27, 160, 170, 147, 31, 180, 154, 44, 94, 68, 215, 2, 86, 69, 27, 223, + 236, 188, 224, 214, 64, 55, 240, 68, 127, 96, 168, 138, 27, 240, 225, 157, 171, 192, 227, 37, 104, 27, 221, 0, + 213, 75, 230, 31, 151, 141, 255, 27, 203, 143, 162, 31, 196, 54, 54, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 835, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18383384460921408793" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17746516494901690706" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "52484476615192365" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c761c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10282474928852574511" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12060285460479271962" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13201027324667999893" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "807444f02e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14486156626055062874" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1561076868341787890" + } + } + } + ] + } + ] + }, + "cborHex": "d905039f9f1bff1ee6c492a80d191bf6484aba1f39c152ffbf1b00ba765a78deef2d437c761c1b8eb2b0780a1e212f1ba75ebdba69ace41a1bb7337868e50fb69545807444f02e1bc9092ab350aee55a1b15aa0f240c976cf2ffff", + "cborBytes": [ + 217, 5, 3, 159, 159, 27, 255, 30, 230, 196, 146, 168, 13, 25, 27, 246, 72, 74, 186, 31, 57, 193, 82, 255, 191, 27, + 0, 186, 118, 90, 120, 222, 239, 45, 67, 124, 118, 28, 27, 142, 178, 176, 120, 10, 30, 33, 47, 27, 167, 94, 189, + 186, 105, 172, 228, 26, 27, 183, 51, 120, 104, 229, 15, 182, 149, 69, 128, 116, 68, 240, 46, 27, 201, 9, 42, 179, + 80, 174, 229, 90, 27, 21, 170, 15, 36, 12, 151, 108, 242, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 836, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18154024432241745600" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11485557722394539268" + } + }, + { + "_tag": "ByteArray", + "bytearray": "78a426ac99" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8638648542499571688" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11023108684917268115" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14622567238652445688" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13142783143738793870" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16331216125680872380" + } + }, + { + "_tag": "ByteArray", + "bytearray": "10c7d0f6293cf26ced" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7103432653637779204" + } + }, + { + "_tag": "ByteArray", + "bytearray": "007210" + }, + { + "_tag": "ByteArray", + "bytearray": "6ec31fa8" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1041035034564485763" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13993462837920724609" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8046877604258189894" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8daaf34205d93ad19ee53" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af584ce86071c0176e724a73" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfbf00d0977881ec09f9f9f1b9f64e5e53a9235044578a426ac991b77e2a514732207e81b98f9f2f22d045e931bcaedcb6e0c24c3f8ffd8669f1bb6648ba2c28adf8e9f1be2a4228a3156ebbc4910c7d0f6293cf26ced1b6294765ce5fd7f0443007210446ec31fa8ffffffbf1b0e727fd929f3e2831bc232c44f7fe4f6811b6fac408c00db12464ba8daaf34205d93ad19ee5341b14caf584ce86071c0176e724a73ffffff", + "cborBytes": [ + 216, 102, 159, 27, 251, 240, 13, 9, 119, 136, 30, 192, 159, 159, 159, 27, 159, 100, 229, 229, 58, 146, 53, 4, 69, + 120, 164, 38, 172, 153, 27, 119, 226, 165, 20, 115, 34, 7, 232, 27, 152, 249, 242, 242, 45, 4, 94, 147, 27, 202, + 237, 203, 110, 12, 36, 195, 248, 255, 216, 102, 159, 27, 182, 100, 139, 162, 194, 138, 223, 142, 159, 27, 226, + 164, 34, 138, 49, 86, 235, 188, 73, 16, 199, 208, 246, 41, 60, 242, 108, 237, 27, 98, 148, 118, 92, 229, 253, 127, + 4, 67, 0, 114, 16, 68, 110, 195, 31, 168, 255, 255, 255, 191, 27, 14, 114, 127, 217, 41, 243, 226, 131, 27, 194, + 50, 196, 79, 127, 228, 246, 129, 27, 111, 172, 64, 140, 0, 219, 18, 70, 75, 168, 218, 175, 52, 32, 93, 147, 173, + 25, 238, 83, 65, 177, 76, 175, 88, 76, 232, 96, 113, 192, 23, 110, 114, 74, 115, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 837, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4212831184519567126" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1267435541674255537" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad653f22cd92491fce3b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4027610738049348747" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18072602857325062132" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4548256791368516160" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "414b7667a506f564a59c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8960604610446849462" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68f6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12273877567866511234" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b87d9bf1ac864a99" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17906979285545475344" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4193113351478245446" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "610834624611513419" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9326321ffd7019e9682855" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9e93ffc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10840c7c6eb7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d04f4762" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17404739783176350459" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d95c6fb70e1c34255bd59b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4402110587727666615" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e78ab38ea82a0573b6d660" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a81a4" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6584177320789567613" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "54026edcaf0382cc7a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5239916809199057599" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8149707096796988292" + } + } + ] + }, + "cborHex": "d8669f1b3a76fba44bfa17169fbf1b1196d5e8f532e4b14aad653f22cd92491fce3b1b37e4f2a086faf48b1bfacec88bc591e7f41b3f1ea7743cc742404a414b7667a506f564a59c1b7c5a766afa6975b64268f61baa55929e41519f8248b87d9bf1ac864a991bf8825ec8f3375d101b3a30ee6089cef846ff9f1b087a1edad07a744b4b9326321ffd7019e9682855bf44b9e93ffc4610840c7c6eb744d04f47621bf18a0e9e5855eafb4bd95c6fb70e1c34255bd59b1b3d177041937e5db74be78ab38ea82a0573b6d660436a81a4ffd8669f1b5b5fb26387d8687d9f4954026edcaf0382cc7a1b48b7ec9360e87abfffffff1b7119936cf0108384ffff", + "cborBytes": [ + 216, 102, 159, 27, 58, 118, 251, 164, 75, 250, 23, 22, 159, 191, 27, 17, 150, 213, 232, 245, 50, 228, 177, 74, + 173, 101, 63, 34, 205, 146, 73, 31, 206, 59, 27, 55, 228, 242, 160, 134, 250, 244, 139, 27, 250, 206, 200, 139, + 197, 145, 231, 244, 27, 63, 30, 167, 116, 60, 199, 66, 64, 74, 65, 75, 118, 103, 165, 6, 245, 100, 165, 156, 27, + 124, 90, 118, 106, 250, 105, 117, 182, 66, 104, 246, 27, 170, 85, 146, 158, 65, 81, 159, 130, 72, 184, 125, 155, + 241, 172, 134, 74, 153, 27, 248, 130, 94, 200, 243, 55, 93, 16, 27, 58, 48, 238, 96, 137, 206, 248, 70, 255, 159, + 27, 8, 122, 30, 218, 208, 122, 116, 75, 75, 147, 38, 50, 31, 253, 112, 25, 233, 104, 40, 85, 191, 68, 185, 233, + 63, 252, 70, 16, 132, 12, 124, 110, 183, 68, 208, 79, 71, 98, 27, 241, 138, 14, 158, 88, 85, 234, 251, 75, 217, + 92, 111, 183, 14, 28, 52, 37, 91, 213, 155, 27, 61, 23, 112, 65, 147, 126, 93, 183, 75, 231, 138, 179, 142, 168, + 42, 5, 115, 182, 214, 96, 67, 106, 129, 164, 255, 216, 102, 159, 27, 91, 95, 178, 99, 135, 216, 104, 125, 159, 73, + 84, 2, 110, 220, 175, 3, 130, 204, 122, 27, 72, 183, 236, 147, 96, 232, 122, 191, 255, 255, 255, 27, 113, 25, 147, + 108, 240, 16, 131, 132, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 838, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13418312059786484647" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16727971913078149111" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bba376bb9a0e9dba79f1be825b1d38bbc0ff7808080ffff", + "cborBytes": [ + 216, 102, 159, 27, 186, 55, 107, 185, 160, 233, 219, 167, 159, 27, 232, 37, 177, 211, 139, 188, 15, 247, 128, 128, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 839, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff980ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 840, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5261" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4414379971712450942" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5780635790501654699" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9943409785230337540" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "931724118017113346" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12827852132881979196" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2eb68f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14806487095802574434" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15157959001604141325" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2710657692838586812" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9690311535181344444" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dec124b6657e8958da48" + }, + { + "_tag": "ByteArray", + "bytearray": "0c655d29e4e0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "610183137019561171" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "423eb8de0d6ca6496ba143" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3301983399443097499" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e853ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5610678052518834349" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15654923785400237541" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2662272655383869396" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7c71ce2be2414a982d81ace5" + }, + { + "_tag": "ByteArray", + "bytearray": "abba87bec674c27916fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16509300449839128031" + } + }, + { + "_tag": "ByteArray", + "bytearray": "37" + } + ] + } + ] + } + ] + }, + "cborHex": "d87e9fbf4230fb425261ffbf1b3d4307322585017e1b5038f19fd4c2b0ab1b89fe168468cc26041b0cee26261b12fd021bb205af8ccbaad73c432eb68fffd8669f1bcd7b3590c4b7b66280ff9fd8669f1bd25be366d28cb10d9f1b259e30cf5952e9bc1b867ae6fff15aaebcffff4adec124b6657e8958da48460c655d29e4e0bf1b0877ce5489fc04d34b423eb8de0d6ca6496ba1431b2dd300683a0ae79b43e853ba1b4ddd21f64d7730ad41f21bd941763d4e983de51b24f24adfef6437d4ff9f4c7c71ce2be2414a982d81ace54aabba87bec674c27916fa1be51cd14a02db9ddf4137ffffff", + "cborBytes": [ + 216, 126, 159, 191, 66, 48, 251, 66, 82, 97, 255, 191, 27, 61, 67, 7, 50, 37, 133, 1, 126, 27, 80, 56, 241, 159, + 212, 194, 176, 171, 27, 137, 254, 22, 132, 104, 204, 38, 4, 27, 12, 238, 38, 38, 27, 18, 253, 2, 27, 178, 5, 175, + 140, 203, 170, 215, 60, 67, 46, 182, 143, 255, 216, 102, 159, 27, 205, 123, 53, 144, 196, 183, 182, 98, 128, 255, + 159, 216, 102, 159, 27, 210, 91, 227, 102, 210, 140, 177, 13, 159, 27, 37, 158, 48, 207, 89, 82, 233, 188, 27, + 134, 122, 230, 255, 241, 90, 174, 188, 255, 255, 74, 222, 193, 36, 182, 101, 126, 137, 88, 218, 72, 70, 12, 101, + 93, 41, 228, 224, 191, 27, 8, 119, 206, 84, 137, 252, 4, 211, 75, 66, 62, 184, 222, 13, 108, 166, 73, 107, 161, + 67, 27, 45, 211, 0, 104, 58, 10, 231, 155, 67, 232, 83, 186, 27, 77, 221, 33, 246, 77, 119, 48, 173, 65, 242, 27, + 217, 65, 118, 61, 78, 152, 61, 229, 27, 36, 242, 74, 223, 239, 100, 55, 212, 255, 159, 76, 124, 113, 206, 43, 226, + 65, 74, 152, 45, 129, 172, 229, 74, 171, 186, 135, 190, 198, 116, 194, 121, 22, 250, 27, 229, 28, 209, 74, 2, 219, + 157, 223, 65, 55, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 841, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "24d0dba843a2252be7" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9f094924d0dba843a2252be7ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 9, 73, 36, 208, 219, 168, 67, 162, 37, 43, 231, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 842, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2461162963912743699" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1275c972f3f0c76de5329a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3068019384227774725" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11426069563801210314" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04afb690" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5457600516465174579" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7dca2de2cd2b86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14591207396588002584" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16149218912343616180" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2478904325064193430" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "543870251703618540" + } + }, + { + "_tag": "ByteArray", + "bytearray": "68a61e063934f22e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5701923693946526524" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14662112971744400818" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16152029878597568475" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7040238218926969092" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ecddebcf" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "375542958177743883" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "00ae7cea1c686e131c30e526" + }, + { + "_tag": "ByteArray", + "bytearray": "46771c02beac9897" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12599675561888996490" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "149017522967073399" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15581417100545569139" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14141154684739079829" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3393288508149033028" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ce8b6c5d" + }, + { + "_tag": "ByteArray", + "bytearray": "a1d66a5941a6656f4e92" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13032620011306275808" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905079fd8669f1b2227cead065ddb139f4b1275c972f3f0c76de5329ad8669f1b2a93cb5ff8e8c1059f1b9e918dbaf9460dca4404afb6901b4bbd4ac10de52833477dca2de2cd2b861bca7e61d1d5ae1d18ffffd8669f1be01d8d09de42eab49f1b2266d6598fa175961b078c371cc4b24bec4868a61e063934f22e1b4f214d63ba10db3c1bcb7a4a108978d5b2ffff9f1be0278998f34dc7db1b61b3f35bfd45510444ecddebcfff9f1b05363254ac15740bffffff4c00ae7cea1c686e131c30e5264846771c02beac9897d8669f1baedb0a2ae7905c8a9f1b02116aa5c9c2d2771bd83c504c8f3731731bc43f794341b94e95d8669f1b2f1761eb74a368449f44ce8b6c5d4aa1d66a5941a6656f4e921bb4dd2ad9ba8ed3e0ffffffffff", + "cborBytes": [ + 217, 5, 7, 159, 216, 102, 159, 27, 34, 39, 206, 173, 6, 93, 219, 19, 159, 75, 18, 117, 201, 114, 243, 240, 199, + 109, 229, 50, 154, 216, 102, 159, 27, 42, 147, 203, 95, 248, 232, 193, 5, 159, 27, 158, 145, 141, 186, 249, 70, + 13, 202, 68, 4, 175, 182, 144, 27, 75, 189, 74, 193, 13, 229, 40, 51, 71, 125, 202, 45, 226, 205, 43, 134, 27, + 202, 126, 97, 209, 213, 174, 29, 24, 255, 255, 216, 102, 159, 27, 224, 29, 141, 9, 222, 66, 234, 180, 159, 27, 34, + 102, 214, 89, 143, 161, 117, 150, 27, 7, 140, 55, 28, 196, 178, 75, 236, 72, 104, 166, 30, 6, 57, 52, 242, 46, 27, + 79, 33, 77, 99, 186, 16, 219, 60, 27, 203, 122, 74, 16, 137, 120, 213, 178, 255, 255, 159, 27, 224, 39, 137, 152, + 243, 77, 199, 219, 27, 97, 179, 243, 91, 253, 69, 81, 4, 68, 236, 221, 235, 207, 255, 159, 27, 5, 54, 50, 84, 172, + 21, 116, 11, 255, 255, 255, 76, 0, 174, 124, 234, 28, 104, 110, 19, 28, 48, 229, 38, 72, 70, 119, 28, 2, 190, 172, + 152, 151, 216, 102, 159, 27, 174, 219, 10, 42, 231, 144, 92, 138, 159, 27, 2, 17, 106, 165, 201, 194, 210, 119, + 27, 216, 60, 80, 76, 143, 55, 49, 115, 27, 196, 63, 121, 67, 65, 185, 78, 149, 216, 102, 159, 27, 47, 23, 97, 235, + 116, 163, 104, 68, 159, 68, 206, 139, 108, 93, 74, 161, 214, 106, 89, 65, 166, 101, 111, 78, 146, 27, 180, 221, + 42, 217, 186, 142, 211, 224, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 843, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5566134463882928996" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8ad59000" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5546501523416751617" + } + } + ] + }, + "cborHex": "d9050d9f1b4d3ee1cde3cd2364448ad590001b4cf921bfb96b1e01ff", + "cborBytes": [ + 217, 5, 13, 159, 27, 77, 62, 225, 205, 227, 205, 35, 100, 68, 138, 213, 144, 0, 27, 76, 249, 33, 191, 185, 107, + 30, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 844, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2137040394604902561" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13389672428805656916" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f05b5372698a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1762777054905986530" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "882644" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46083d628efd5d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a40aa7d86c4278377f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9208051809551247195" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b24ae1a3b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4452967539902560419" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ede5c08d7b5388c6050eccd6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12849899139487728923" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "28" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab10606356ab94b2e240" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bee25cab3f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b66d9e8e10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "44b521539f15972d3f" + } + ] + }, + "cborHex": "d905089fd8669f1b1da84aea9715f8a19f9f1bb9d1ac21e9cd9154ffbf476f05b5372698a51b1876a4644fe16de2438826444746083d628efd5d49a40aa7d86c4278377f1b7fc992559db1e75b45b24ae1a3b81b3dcc1e627c3cb8a34cede5c08d7b5388c6050eccd61bb254032f88c3851bffffff4128bf4aab10606356ab94b2e24045bee25cab3f45b66d9e8e1041ecff4944b521539f15972d3fff", + "cborBytes": [ + 217, 5, 8, 159, 216, 102, 159, 27, 29, 168, 74, 234, 151, 21, 248, 161, 159, 159, 27, 185, 209, 172, 33, 233, 205, + 145, 84, 255, 191, 71, 111, 5, 181, 55, 38, 152, 165, 27, 24, 118, 164, 100, 79, 225, 109, 226, 67, 136, 38, 68, + 71, 70, 8, 61, 98, 142, 253, 93, 73, 164, 10, 167, 216, 108, 66, 120, 55, 127, 27, 127, 201, 146, 85, 157, 177, + 231, 91, 69, 178, 74, 225, 163, 184, 27, 61, 204, 30, 98, 124, 60, 184, 163, 76, 237, 229, 192, 141, 123, 83, 136, + 198, 5, 14, 204, 214, 27, 178, 84, 3, 47, 136, 195, 133, 27, 255, 255, 255, 65, 40, 191, 74, 171, 16, 96, 99, 86, + 171, 148, 178, 226, 64, 69, 190, 226, 92, 171, 63, 69, 182, 109, 158, 142, 16, 65, 236, 255, 73, 68, 181, 33, 83, + 159, 21, 151, 45, 63, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 845, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3055113309055882901" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16324064504107957152" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb2c71b1b7da016af4474536" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "18110a54" + } + ] + }, + "cborHex": "d905039f1b2a65f15e2ed81695bf1be28aba2d89eafba04ccb2c71b1b7da016af4474536ff4418110a54ff", + "cborBytes": [ + 217, 5, 3, 159, 27, 42, 101, 241, 94, 46, 216, 22, 149, 191, 27, 226, 138, 186, 45, 137, 234, 251, 160, 76, 203, + 44, 113, 177, 183, 218, 1, 106, 244, 71, 69, 54, 255, 68, 24, 17, 10, 84, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 846, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15594482227571953165" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "72c5a71cf9" + }, + { + "_tag": "ByteArray", + "bytearray": "74c60afa" + }, + { + "_tag": "ByteArray", + "bytearray": "ef74c143e2366cf139" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3025610706231401005" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b8ff0" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8921773665447789302" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3500766807608982945" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02924c2ba8cfed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4716747469870318246" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74da45da3f6265a4ab2eb0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14929320350854695052" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf3d87b04946b2193d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd85d07d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16804628082911616818" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9fd8669f1bd86abaf67e918e0d9f4572c5a71cf94474c60afa49ef74c143e2366cf139bf1b29fd20e82d8a9a2d439b8ff0ffffffa09fd8669f1b7bd081e10f7342f69f1b309538dd1902fda1ffffbf4702924c2ba8cfed1b417540d55cd7c2a64b74da45da3f6265a4ab2eb01bcf2f99c29ab4488c49bf3d87b04946b2193d41ad44cd85d07d1be9360834e8801f32ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 216, 102, 159, 27, 216, 106, 186, 246, 126, 145, + 142, 13, 159, 69, 114, 197, 167, 28, 249, 68, 116, 198, 10, 250, 73, 239, 116, 193, 67, 226, 54, 108, 241, 57, + 191, 27, 41, 253, 32, 232, 45, 138, 154, 45, 67, 155, 143, 240, 255, 255, 255, 160, 159, 216, 102, 159, 27, 123, + 208, 129, 225, 15, 115, 66, 246, 159, 27, 48, 149, 56, 221, 25, 2, 253, 161, 255, 255, 191, 71, 2, 146, 76, 43, + 168, 207, 237, 27, 65, 117, 64, 213, 92, 215, 194, 166, 75, 116, 218, 69, 218, 63, 98, 101, 164, 171, 46, 176, 27, + 207, 47, 153, 194, 154, 180, 72, 140, 73, 191, 61, 135, 176, 73, 70, 178, 25, 61, 65, 173, 68, 205, 133, 208, 125, + 27, 233, 54, 8, 52, 232, 128, 31, 50, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 847, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17501716721151855598" + }, + "fields": [] + }, + "cborHex": "d8669f1bf2e296a13bc54bee80ff", + "cborBytes": [216, 102, 159, 27, 242, 226, 150, 161, 59, 197, 75, 238, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 848, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6135378853082405604" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17626165542327058673" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5380341611361279656" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12693154649870613645" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12823961792802351468" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1081005679957544893" + } + }, + { + "_tag": "ByteArray", + "bytearray": "129cbf88" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12766024758419863071" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6621" + } + ] + } + ] + }, + "cborHex": "d905099f1b55253e8f6c6b9ae4d8669f1bf49cb82c5ea280f180ffa09fd8669f1b4aaad03073711ea89f1bb02724e720a2bc8d1bb1f7dd4e692a696c1b0f0080f0420c8fbd44129cbf881bb12a07e16775361fffff426621ffff", + "cborBytes": [ + 217, 5, 9, 159, 27, 85, 37, 62, 143, 108, 107, 154, 228, 216, 102, 159, 27, 244, 156, 184, 44, 94, 162, 128, 241, + 128, 255, 160, 159, 216, 102, 159, 27, 74, 170, 208, 48, 115, 113, 30, 168, 159, 27, 176, 39, 36, 231, 32, 162, + 188, 141, 27, 177, 247, 221, 78, 105, 42, 105, 108, 27, 15, 0, 128, 240, 66, 12, 143, 189, 68, 18, 156, 191, 136, + 27, 177, 42, 7, 225, 103, 117, 54, 31, 255, 255, 66, 102, 33, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 849, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "48" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4271660745033165321" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17191750287878619343" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8d93" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4533365885045183272" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dfc3891e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6038664922251993402" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d795c6a75d1bd77a34" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2244666397047829446" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f6baf76809d2d1637f26" + }, + { + "_tag": "ByteArray", + "bytearray": "a2a1e44125332a" + }, + { + "_tag": "ByteArray", + "bytearray": "213d75" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "459ff04657" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12417778247457842951" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3956a6d46911a3ee89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bfe281a5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5364575cc52b06a6622d48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "551243f3961e47fb6931b57c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f5958a6f52662" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da7afe45cb29c70e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4617d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "699089948721020154" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc180240e6e7aadf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8768574138492811477" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f41489fd8669f1b3b47fcd0bcaeaa099f1bee955dcd103980cf428d93ffffd8669f1b3ee9c040eefe13289f44dfc3891e1b53cda5c0a871213affff49d795c6a75d1bd77a34d8669f1b1f26a832034ab3c69f4af6baf76809d2d1637f2647a2a1e44125332a43213d75ffff45459ff04657ff41c71bac54cf861b4c2707bf493956a6d46911a3ee8944bfe281a54b5364575cc52b06a6622d484c551243f3961e47fb6931b57c475f5958a6f5266248da7afe45cb29c70e43f4617d1b09b3aa9abb8ffcfa48fc180240e6e7aadf1b79b03bb8978a78d5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 65, 72, 159, 216, 102, 159, 27, 59, 71, 252, 208, + 188, 174, 170, 9, 159, 27, 238, 149, 93, 205, 16, 57, 128, 207, 66, 141, 147, 255, 255, 216, 102, 159, 27, 62, + 233, 192, 64, 238, 254, 19, 40, 159, 68, 223, 195, 137, 30, 27, 83, 205, 165, 192, 168, 113, 33, 58, 255, 255, 73, + 215, 149, 198, 167, 93, 27, 215, 122, 52, 216, 102, 159, 27, 31, 38, 168, 50, 3, 74, 179, 198, 159, 74, 246, 186, + 247, 104, 9, 210, 209, 99, 127, 38, 71, 162, 161, 228, 65, 37, 51, 42, 67, 33, 61, 117, 255, 255, 69, 69, 159, + 240, 70, 87, 255, 65, 199, 27, 172, 84, 207, 134, 27, 76, 39, 7, 191, 73, 57, 86, 166, 212, 105, 17, 163, 238, + 137, 68, 191, 226, 129, 165, 75, 83, 100, 87, 92, 197, 43, 6, 166, 98, 45, 72, 76, 85, 18, 67, 243, 150, 30, 71, + 251, 105, 49, 181, 124, 71, 95, 89, 88, 166, 245, 38, 98, 72, 218, 122, 254, 69, 203, 41, 199, 14, 67, 244, 97, + 125, 27, 9, 179, 170, 154, 187, 143, 252, 250, 72, 252, 24, 2, 64, 230, 231, 170, 223, 27, 121, 176, 59, 184, 151, + 138, 120, 213, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 850, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11212724551578954718" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1916857269154441917" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c89a5d8990c10d4cbbb2dfeb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3313027523591123849" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f1b9b9b9992752a2bde1b1a9a0b87c5136abd4cc89a5d8990c10d4cbbb2dfeb1b2dfa3cfac2bdb389ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 27, 155, 155, 153, 146, 117, 42, 43, 222, 27, 26, + 154, 11, 135, 197, 19, 106, 189, 76, 200, 154, 93, 137, 144, 193, 13, 76, 187, 178, 223, 235, 27, 45, 250, 60, + 250, 194, 189, 179, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 851, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10897055307243010343" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16911020163376386926" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1ed28f3bddda5be3b225" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14397621045508040479" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7dc4e52f325bf4b0eb0d5f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15736322030249432783" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0256" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10327275183022682800" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12049266417079182321" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13575955779752759149" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15844991480570090730" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7167339102971563586" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17366862030412548301" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13322060941128192763" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "896520" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5568693036752943250" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b973a1e111e0139279fd8669f1beab0033d7b84936e9f809f4a1ed28f3bddda5be3b2251bc7cea00f1c31e71f4b7dc4e52f325bf4b0eb0d5f1bda62a5830c2bd6cf420256ff9f1b8f51da100dc632b01ba73797f7720c63f11bbc677bda6a930f6dff1bdbe4b7cd1c7894ead8669f1b637780f0a1630e4280ffffff80d8669f1bf1037d00c9f588cd9fa0d8669f1bb8e177d7b80d52fb9f438965201b4d47f8d00ed9b892ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 151, 58, 30, 17, 30, 1, 57, 39, 159, 216, 102, 159, 27, 234, 176, 3, 61, 123, 132, 147, 110, + 159, 128, 159, 74, 30, 210, 143, 59, 221, 218, 91, 227, 178, 37, 27, 199, 206, 160, 15, 28, 49, 231, 31, 75, 125, + 196, 229, 47, 50, 91, 244, 176, 235, 13, 95, 27, 218, 98, 165, 131, 12, 43, 214, 207, 66, 2, 86, 255, 159, 27, + 143, 81, 218, 16, 13, 198, 50, 176, 27, 167, 55, 151, 247, 114, 12, 99, 241, 27, 188, 103, 123, 218, 106, 147, 15, + 109, 255, 27, 219, 228, 183, 205, 28, 120, 148, 234, 216, 102, 159, 27, 99, 119, 128, 240, 161, 99, 14, 66, 128, + 255, 255, 255, 128, 216, 102, 159, 27, 241, 3, 125, 0, 201, 245, 136, 205, 159, 160, 216, 102, 159, 27, 184, 225, + 119, 215, 184, 13, 82, 251, 159, 67, 137, 101, 32, 27, 77, 71, 248, 208, 14, 217, 184, 146, 255, 255, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 852, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14530359827126738398" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17517574994547712659" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13330025456441785695" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10830354609205323443" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f466e5ed5349358" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7981206670347529237" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ec" + }, + { + "_tag": "ByteArray", + "bytearray": "34ce9fd1" + }, + { + "_tag": "ByteArray", + "bytearray": "7dae75a22db52a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "832d9459" + }, + { + "_tag": "ByteArray", + "bytearray": "cf6b5d7b66" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18150546477402468222" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16977608321609462248" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b21a93" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10991504342860271752" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3abf06460b85ad8710ea" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f1bc9a63547127eddde41ead8669f1bf31aeda53c4822939f9f1bb8fdc386f2207d5f1b964d2622a932a6b3484f466e5ed5349358ff9f1b6ec2f12e310aec1541ec4434ce9fd1477dae75a22db52aff9f44832d945945cf6b5d7b661bfbe3b1db00caaf7effffffd8669f1beb9c94d1393f71e89f43b21a931b9889aaf6df599088ffff4a3abf06460b85ad8710eaffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 27, 201, 166, 53, 71, 18, 126, 221, 222, 65, 234, + 216, 102, 159, 27, 243, 26, 237, 165, 60, 72, 34, 147, 159, 159, 27, 184, 253, 195, 134, 242, 32, 125, 95, 27, + 150, 77, 38, 34, 169, 50, 166, 179, 72, 79, 70, 110, 94, 213, 52, 147, 88, 255, 159, 27, 110, 194, 241, 46, 49, + 10, 236, 21, 65, 236, 68, 52, 206, 159, 209, 71, 125, 174, 117, 162, 45, 181, 42, 255, 159, 68, 131, 45, 148, 89, + 69, 207, 107, 93, 123, 102, 27, 251, 227, 177, 219, 0, 202, 175, 126, 255, 255, 255, 216, 102, 159, 27, 235, 156, + 148, 209, 57, 63, 113, 232, 159, 67, 178, 26, 147, 27, 152, 137, 170, 246, 223, 89, 144, 136, 255, 255, 74, 58, + 191, 6, 70, 11, 133, 173, 135, 16, 234, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 853, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "408224515546104721" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff0117" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10546110232292487712" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7e1e06ba11e7be765eb7eff3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12267621569379025075" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cb0e2781" + }, + { + "_tag": "ByteArray", + "bytearray": "620b964d5ac146b206d35dd6" + }, + { + "_tag": "ByteArray", + "bytearray": "4d57247ea822" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b05aa4e08b5bb43919f43ff0117d8669f1b925b4f616de7f2209f4c7e1e06ba11e7be765eb7eff3d8669f1baa3f58d219c1c0b39f44cb0e27814c620b964d5ac146b206d35dd6464d57247ea822ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 5, 170, 78, 8, 181, 187, 67, 145, 159, 67, 255, 1, 23, 216, 102, 159, 27, 146, 91, 79, 97, 109, + 231, 242, 32, 159, 76, 126, 30, 6, 186, 17, 231, 190, 118, 94, 183, 239, 243, 216, 102, 159, 27, 170, 63, 88, 210, + 25, 193, 192, 179, 159, 68, 203, 14, 39, 129, 76, 98, 11, 150, 77, 90, 193, 70, 178, 6, 211, 93, 214, 70, 77, 87, + 36, 126, 168, 34, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 854, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9fa0ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 855, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5732438076952743764" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16536084500395891013" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe5037" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17827092891744116461" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12979546861474975899" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b4f8db60f29b10f549fbf1be57bf93dbdf0994543fe5037ffd8669f1bf7668e88764c9eed9f1bb4209d1a17c0909bffffffff", + "cborBytes": [ + 216, 102, 159, 27, 79, 141, 182, 15, 41, 177, 15, 84, 159, 191, 27, 229, 123, 249, 61, 189, 240, 153, 69, 67, 254, + 80, 55, 255, 216, 102, 159, 27, 247, 102, 142, 136, 118, 76, 158, 237, 159, 27, 180, 32, 157, 26, 23, 192, 144, + 155, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 856, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9759175664080102111" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2110497657017766265" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "59690f142046ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8662365737094686529" + } + }, + { + "_tag": "ByteArray", + "bytearray": "988259d64824c1" + }, + { + "_tag": "ByteArray", + "bytearray": "6eea30fd651ba8fbf6" + }, + { + "_tag": "ByteArray", + "bytearray": "804a" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5131699536961683609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0a71f4a7e1e10c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1114591423061877512" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2866838908673205314" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8596942483657395283" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3ea37f2aacc5d0407e33" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "606721049467050951" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4059345333557243911" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b1b1abee8c6adf804" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "580728577124562629" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13716184241361161315" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4812786007963830620" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8734888384778309869" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14911694077816284664" + } + }, + { + "_tag": "ByteArray", + "bytearray": "220c241286" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "957127290167757062" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0808af9fd02674639f1889" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11345421576636117049" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1469181714347346101" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15597042342909171109" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba04b66f4a1950aa336974ca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16649892008111955378" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9ed30ee7a43" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18214732727594505575" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4816970151037937180" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8888474031493032781" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4026974635549770840" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7e" + }, + { + "_tag": "ByteArray", + "bytearray": "f7" + }, + { + "_tag": "ByteArray", + "bytearray": "d67184ffbdbf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "604584228317189120" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18265090734697410607" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "614495243104" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7dc00bda4c7f9306871b72" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8be0c6d693dd9a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17293965832802935248" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cd5754e78c0d36cb2cd9e11" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc88977aacd4b1f446f948" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58395eff812e0f77a100" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5ab5092ebdfd6231ab70" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7029708645545137282" + } + }, + { + "_tag": "ByteArray", + "bytearray": "395dd80c22a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13911689104453638760" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4758019db0b0" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19fd8669f1b876f8e8f6621a2df9fd8669f1b1d49fe6fe9d691799f4759690f142046ed1b7836e7be220b274147988259d64824c1496eea30fd651ba8fbf642804affffa0d8669f1b4737758a3aa340999f470a71f4a7e1e10cffff9f1b0f77d2fe714ce3081b27c90ecc5bbc24421b774e79a3ecdd0c534a3ea37f2aacc5d0407e33ffbf1b086b8194773c5bc71b3855b112d351b007499b1b1abee8c6adf8041b080f2990666d76c5ffffffd8669f1bbe59ace564248c639fd8669f1b42ca736000a7895c9f1b79388eb4df6590ed1bcef0fac21b8925f845220c241286ffffbf1b0d486633074809064b0808af9fd02674639f18891b9d7308d03672b0391b146394fc322c48b51bd873d35fcbd3d5a54cba04b66f4a1950aa336974ca1be7104c910420ddb246a9ed30ee7a431bfcc7bae8f2f3d5671b42d950d4ba46a61cff1b7b5a3409da6d2b4dd8669f1b37e2b0185f73c4589f417e41f746d67184ffbdbf1b0863ea2705a65400ffffffffd8669f1bfd7aa34027eaf02f9fbf466144952431044b7dc00bda4c7f9306871b72478be0c6d693dd9a1bf000824c2df621d04c9cd5754e78c0d36cb2cd9e1141474bbc88977aacd4b1f446f9484a58395eff812e0f77a100ff9f4a5ab5092ebdfd6231ab701b618e8ac4a435d48246395dd80c22a81bc1103f8880a19a68ffffff9f464758019db0b0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 216, 102, 159, 27, 135, 111, 142, 143, 102, 33, + 162, 223, 159, 216, 102, 159, 27, 29, 73, 254, 111, 233, 214, 145, 121, 159, 71, 89, 105, 15, 20, 32, 70, 237, 27, + 120, 54, 231, 190, 34, 11, 39, 65, 71, 152, 130, 89, 214, 72, 36, 193, 73, 110, 234, 48, 253, 101, 27, 168, 251, + 246, 66, 128, 74, 255, 255, 160, 216, 102, 159, 27, 71, 55, 117, 138, 58, 163, 64, 153, 159, 71, 10, 113, 244, + 167, 225, 225, 12, 255, 255, 159, 27, 15, 119, 210, 254, 113, 76, 227, 8, 27, 39, 201, 14, 204, 91, 188, 36, 66, + 27, 119, 78, 121, 163, 236, 221, 12, 83, 74, 62, 163, 127, 42, 172, 197, 208, 64, 126, 51, 255, 191, 27, 8, 107, + 129, 148, 119, 60, 91, 199, 27, 56, 85, 177, 18, 211, 81, 176, 7, 73, 155, 27, 26, 190, 232, 198, 173, 248, 4, 27, + 8, 15, 41, 144, 102, 109, 118, 197, 255, 255, 255, 216, 102, 159, 27, 190, 89, 172, 229, 100, 36, 140, 99, 159, + 216, 102, 159, 27, 66, 202, 115, 96, 0, 167, 137, 92, 159, 27, 121, 56, 142, 180, 223, 101, 144, 237, 27, 206, + 240, 250, 194, 27, 137, 37, 248, 69, 34, 12, 36, 18, 134, 255, 255, 191, 27, 13, 72, 102, 51, 7, 72, 9, 6, 75, 8, + 8, 175, 159, 208, 38, 116, 99, 159, 24, 137, 27, 157, 115, 8, 208, 54, 114, 176, 57, 27, 20, 99, 148, 252, 50, 44, + 72, 181, 27, 216, 115, 211, 95, 203, 211, 213, 165, 76, 186, 4, 182, 111, 74, 25, 80, 170, 51, 105, 116, 202, 27, + 231, 16, 76, 145, 4, 32, 221, 178, 70, 169, 237, 48, 238, 122, 67, 27, 252, 199, 186, 232, 242, 243, 213, 103, 27, + 66, 217, 80, 212, 186, 70, 166, 28, 255, 27, 123, 90, 52, 9, 218, 109, 43, 77, 216, 102, 159, 27, 55, 226, 176, + 24, 95, 115, 196, 88, 159, 65, 126, 65, 247, 70, 214, 113, 132, 255, 189, 191, 27, 8, 99, 234, 39, 5, 166, 84, 0, + 255, 255, 255, 255, 216, 102, 159, 27, 253, 122, 163, 64, 39, 234, 240, 47, 159, 191, 70, 97, 68, 149, 36, 49, 4, + 75, 125, 192, 11, 218, 76, 127, 147, 6, 135, 27, 114, 71, 139, 224, 198, 214, 147, 221, 154, 27, 240, 0, 130, 76, + 45, 246, 33, 208, 76, 156, 213, 117, 78, 120, 192, 211, 108, 178, 205, 158, 17, 65, 71, 75, 188, 136, 151, 122, + 172, 212, 177, 244, 70, 249, 72, 74, 88, 57, 94, 255, 129, 46, 15, 119, 161, 0, 255, 159, 74, 90, 181, 9, 46, 189, + 253, 98, 49, 171, 112, 27, 97, 142, 138, 196, 164, 53, 212, 130, 70, 57, 93, 216, 12, 34, 168, 27, 193, 16, 63, + 136, 128, 161, 154, 104, 255, 255, 255, 159, 70, 71, 88, 1, 157, 176, 176, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 857, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3920945406412322770" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18160943194779278458" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17054215323098580386" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8350381615906488974" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3669ff12b4e7f7d29fd8669f1bfc08a19d66dddc7a9f1becacbe7ab05085a21b73e283d6630f028effffffff", + "cborBytes": [ + 216, 102, 159, 27, 54, 105, 255, 18, 180, 231, 247, 210, 159, 216, 102, 159, 27, 252, 8, 161, 157, 102, 221, 220, + 122, 159, 27, 236, 172, 190, 122, 176, 80, 133, 162, 27, 115, 226, 131, 214, 99, 15, 2, 142, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 858, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2017516017837189222" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5105037395711000435" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f55c8d6a6cf187d42faed10" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6158666953828432373" + } + } + ] + }, + "cborHex": "d9050a9f1b1bffa82103d8a8661b46d8bc76b8707f734c4f55c8d6a6cf187d42faed101b5577faf6e8e179f5ff", + "cborBytes": [ + 217, 5, 10, 159, 27, 27, 255, 168, 33, 3, 216, 168, 102, 27, 70, 216, 188, 118, 184, 112, 127, 115, 76, 79, 85, + 200, 214, 166, 207, 24, 125, 66, 250, 237, 16, 27, 85, 119, 250, 246, 232, 225, 121, 245, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 859, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7905004164959734457" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5682882127028711966" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17271038421423569406" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ea2398574dc81b9a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15367381393783793719" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14051552981275011140" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10181113051966800121" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11829291370380702895" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12139472556187054002" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f44f14fc4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfc9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15624583162157354759" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0dccceb5cc3c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cab9dfb4b767bd67041661" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "147d12a854" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8659863577808975816" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10005582826179897421" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87a79b2a1cbd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2588155992537606490" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a622165bafdc45f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "409706499289679177" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6db43767d0688ab99f80d8669f1b4edda72f71f6721e9f1befaf0df03b1339fe8048ea2398574dc81b9ad8669f1bd543e7f5306e28379f1bc30124fcf77a6844ffffffffbf1b8d4a9461009300f91ba42a15d3bc22b4af1ba87811f8e021efb2453f44f14fc442dfc91bd8d5ab9a77f04f07ffbf460dccceb5cc3c4bcab9dfb4b767bd6704166145147d12a8541b782e040ac6a5b7c8413a1b8adaf8918d33a84d4687a79b2a1cbd1b23eafa299e80a95a48a622165bafdc45f21b05af91e3f0548549ffffff", + "cborBytes": [ + 216, 102, 159, 27, 109, 180, 55, 103, 208, 104, 138, 185, 159, 128, 216, 102, 159, 27, 78, 221, 167, 47, 113, 246, + 114, 30, 159, 27, 239, 175, 13, 240, 59, 19, 57, 254, 128, 72, 234, 35, 152, 87, 77, 200, 27, 154, 216, 102, 159, + 27, 213, 67, 231, 245, 48, 110, 40, 55, 159, 27, 195, 1, 36, 252, 247, 122, 104, 68, 255, 255, 255, 255, 191, 27, + 141, 74, 148, 97, 0, 147, 0, 249, 27, 164, 42, 21, 211, 188, 34, 180, 175, 27, 168, 120, 17, 248, 224, 33, 239, + 178, 69, 63, 68, 241, 79, 196, 66, 223, 201, 27, 216, 213, 171, 154, 119, 240, 79, 7, 255, 191, 70, 13, 204, 206, + 181, 204, 60, 75, 202, 185, 223, 180, 183, 103, 189, 103, 4, 22, 97, 69, 20, 125, 18, 168, 84, 27, 120, 46, 4, 10, + 198, 165, 183, 200, 65, 58, 27, 138, 218, 248, 145, 141, 51, 168, 77, 70, 135, 167, 155, 42, 28, 189, 27, 35, 234, + 250, 41, 158, 128, 169, 90, 72, 166, 34, 22, 91, 175, 220, 69, 242, 27, 5, 175, 145, 227, 240, 84, 133, 73, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 860, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3247550944848533732" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8883990574344411153" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4349402624092337477" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2d119e60c9ae58e49fbf1b7b4a465ba3b798111b3c5c2ea47a2cf545ffffff", + "cborBytes": [ + 216, 102, 159, 27, 45, 17, 158, 96, 201, 174, 88, 228, 159, 191, 27, 123, 74, 70, 91, 163, 183, 152, 17, 27, 60, + 92, 46, 164, 122, 44, 245, 69, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 861, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7473953895145920193" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7593bacd3cefbd9e1bd43f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9124200391549558840" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0c1e35a222c745c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12735937990096063841" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da4d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd36" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18106735032184302664" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2633524868546221696" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "88" + }, + { + "_tag": "ByteArray", + "bytearray": "fdf83cf4d7" + }, + { + "_tag": "ByteArray", + "bytearray": "45eb1b6a63b0c6e05f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12772499065900444001" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "780216496791579952" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2644763820741832511" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14019085256056371545" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "34f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8866c8889604e938b476" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6eb92a26ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7ec5f17c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7524c58b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b29c8d962204841130e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eab6789eb1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9988713927612028798" + } + } + } + ] + } + ] + }, + "cborHex": "d87e9fd8669f1bffffffffffffffee9fbf1b67b8d1780bd1d6c14cf7593bacd3cefbd9e1bd43f21b7e9fabe9fdcaa03848b0c1e35a222c745c1bb0bf241fc5140d6142da4d42cd361bfb480b9403776c48ffd8669f1b248c28ea38dad6809f418845fdf83cf4d74945eb1b6a63b0c6e05f1bb141083a950129611b0ad3e2c523296d30ffff9f1b24b416aeb21f2f3fffd8669f1bc28dcbc39b27f95980ff80ffffbf4234f24a8866c8889604e938b476456eb92a26ec45e7ec5f17c9447524c58b4a5b29c8d962204841130e45eab6789eb11b8a9f0a650a4fd77effff", + "cborBytes": [ + 216, 126, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 191, 27, 103, 184, 209, 120, 11, + 209, 214, 193, 76, 247, 89, 59, 172, 211, 206, 251, 217, 225, 189, 67, 242, 27, 126, 159, 171, 233, 253, 202, 160, + 56, 72, 176, 193, 227, 90, 34, 44, 116, 92, 27, 176, 191, 36, 31, 197, 20, 13, 97, 66, 218, 77, 66, 205, 54, 27, + 251, 72, 11, 148, 3, 119, 108, 72, 255, 216, 102, 159, 27, 36, 140, 40, 234, 56, 218, 214, 128, 159, 65, 136, 69, + 253, 248, 60, 244, 215, 73, 69, 235, 27, 106, 99, 176, 198, 224, 95, 27, 177, 65, 8, 58, 149, 1, 41, 97, 27, 10, + 211, 226, 197, 35, 41, 109, 48, 255, 255, 159, 27, 36, 180, 22, 174, 178, 31, 47, 63, 255, 216, 102, 159, 27, 194, + 141, 203, 195, 155, 39, 249, 89, 128, 255, 128, 255, 255, 191, 66, 52, 242, 74, 136, 102, 200, 136, 150, 4, 233, + 56, 180, 118, 69, 110, 185, 42, 38, 236, 69, 231, 236, 95, 23, 201, 68, 117, 36, 197, 139, 74, 91, 41, 200, 217, + 98, 32, 72, 65, 19, 14, 69, 234, 182, 120, 158, 177, 27, 138, 159, 10, 101, 10, 79, 215, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 862, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16511440126579485943" + }, + "fields": [] + }, + "cborHex": "d8669f1be5246b5052e6acf780ff", + "cborBytes": [216, 102, 159, 27, 229, 36, 107, 80, 82, 230, 172, 247, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 863, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10964652170201686399" + }, + "fields": [] + }, + "cborHex": "d8669f1b982a450e3a96617f80ff", + "cborBytes": [216, 102, 159, 27, 152, 42, 69, 14, 58, 150, 97, 127, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 864, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "84502c13d3f14b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "454355869660284883" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5364558825662484784" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8694098556073145475" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a1052095c82fa63d" + }, + { + "_tag": "ByteArray", + "bytearray": "a032dd55df74" + }, + { + "_tag": "ByteArray", + "bytearray": "2f4b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15429136479708901735" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6f8a2aab68" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10147303172350013285" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7d" + }, + { + "_tag": "ByteArray", + "bytearray": "4e1456721c" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "849915695118530154" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6710692400644474797" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1529725118240997158" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0437050d509e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9397353239611246335" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34dff1f64d7e" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10980338858322024755" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd40ccf269b903" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7badace5042ca07f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2427981718398103248" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6389a81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9212550502999725971" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e975762037075c51ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e95bdee8" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17485729432149902623" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10957972400428707521" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2e3441da485d183bd1c5b44b" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9fbf4784502c13d3f14b1b064e324194b707d3ff80d8669f1b4a72bdd44c4c91309f1b78a7a492ccf9f48348a1052095c82fa63d46a032dd55df74422f4bd8669f1bd61f4de19811f1679f456f8a2aab681b8cd27678f81def65417d454e1456721cffffffff9fbf1b0bcb81d25891b66a1b5d212b2f0153c7ad1b153aace3e4bf3f26460437050d509e1b826a1afb6be506ff4634dff1f64d7effbf1b98620003ebb3d93347fd40ccf269b903487badace5042ca07f1b21b1ec824642eed044b6389a811b7fd98ddf4ea5179349e975762037075c51ff44e95bdee8ff1bf2a9ca4671e3451fffd8669f1b981289d722166ec19f4c2e3441da485d183bd1c5b44bffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 191, 71, 132, 80, 44, 19, 211, 241, 75, 27, 6, 78, + 50, 65, 148, 183, 7, 211, 255, 128, 216, 102, 159, 27, 74, 114, 189, 212, 76, 76, 145, 48, 159, 27, 120, 167, 164, + 146, 204, 249, 244, 131, 72, 161, 5, 32, 149, 200, 47, 166, 61, 70, 160, 50, 221, 85, 223, 116, 66, 47, 75, 216, + 102, 159, 27, 214, 31, 77, 225, 152, 17, 241, 103, 159, 69, 111, 138, 42, 171, 104, 27, 140, 210, 118, 120, 248, + 29, 239, 101, 65, 125, 69, 78, 20, 86, 114, 28, 255, 255, 255, 255, 159, 191, 27, 11, 203, 129, 210, 88, 145, 182, + 106, 27, 93, 33, 43, 47, 1, 83, 199, 173, 27, 21, 58, 172, 227, 228, 191, 63, 38, 70, 4, 55, 5, 13, 80, 158, 27, + 130, 106, 26, 251, 107, 229, 6, 255, 70, 52, 223, 241, 246, 77, 126, 255, 191, 27, 152, 98, 0, 3, 235, 179, 217, + 51, 71, 253, 64, 204, 242, 105, 185, 3, 72, 123, 173, 172, 229, 4, 44, 160, 127, 27, 33, 177, 236, 130, 70, 66, + 238, 208, 68, 182, 56, 154, 129, 27, 127, 217, 141, 223, 78, 165, 23, 147, 73, 233, 117, 118, 32, 55, 7, 92, 81, + 255, 68, 233, 91, 222, 232, 255, 27, 242, 169, 202, 70, 113, 227, 69, 31, 255, 216, 102, 159, 27, 152, 18, 137, + 215, 34, 22, 110, 193, 159, 76, 46, 52, 65, 218, 72, 93, 24, 59, 209, 197, 180, 75, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 865, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10452507299327619242" + }, + "fields": [] + }, + "cborHex": "d8669f1b910ec4024c99b0aa80ff", + "cborBytes": [216, 102, 159, 27, 145, 14, 196, 2, 76, 153, 176, 170, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 866, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16018642411742094865" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bde4da6672fe4e6119f80ffff", + "cborBytes": [216, 102, 159, 27, 222, 77, 166, 103, 47, 228, 230, 17, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 867, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15885037647616251767" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2397956004019866774" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13731771774727134261" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bce1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12558255707868139562" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "897dcaf19bb0a1" + } + ] + }, + "cborHex": "d8669f1bdc72fd93f5df97779fd8669f1b21474047de9e8c969fd8669f1bbe910dacd1589c359f42bce11bae47e307a200902affffffff47897dcaf19bb0a1ffff", + "cborBytes": [ + 216, 102, 159, 27, 220, 114, 253, 147, 245, 223, 151, 119, 159, 216, 102, 159, 27, 33, 71, 64, 71, 222, 158, 140, + 150, 159, 216, 102, 159, 27, 190, 145, 13, 172, 209, 88, 156, 53, 159, 66, 188, 225, 27, 174, 71, 227, 7, 162, 0, + 144, 42, 255, 255, 255, 255, 71, 137, 125, 202, 241, 155, 176, 161, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 868, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1973890018821833165" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1218219236415768476" + } + }, + { + "_tag": "ByteArray", + "bytearray": "885a9ab99b8bd9b9483f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15758700258564473392" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16026281332934552104" + } + }, + { + "_tag": "ByteArray", + "bytearray": "119d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9823371174068524355" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64e07e2f72aa22d6ca648898" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10519389299794372120" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18333560572412202427" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea" + }, + { + "_tag": "ByteArray", + "bytearray": "fa21072587f5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10648447108325368162" + } + }, + { + "_tag": "ByteArray", + "bytearray": "65b6b0c11b" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "06" + }, + { + "_tag": "ByteArray", + "bytearray": "c5660d4e5f2f" + }, + { + "_tag": "ByteArray", + "bytearray": "118cb6287cfc42" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3044345407364407178" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17228918120961581612" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10397509993700285625" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6c7e8347b799280a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6827703709533945688" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3d30751898" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18261859093285751237" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18399802733582692822" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2397093293951349781" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d5c2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4571049417888931880" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17439709017384163555" + } + } + ] + }, + "cborHex": "d8669f1b1b64aa83959081cd9fa09f9f1b10e7fbf0ed1c079c4a885a9ab99b8bd9b9483f1bdab2266459978230ff9f41c01bde68c9f62009aa2842119d1b8853a0094f2a95434c64e07e2f72aa22d6ca648898ffd8669f1b91fc60d58449e6189f1bfe6de4348abc8dbb41ea46fa21072587f51b93c6e23a2544e1624565b6b0c11bffff9f410646c5660d4e5f2f47118cb6287cfc421b2a3fb004b38c1f8affffd8669f1bef1969bf9034a22c9fd8669f1b904b60403b145cb99f486c7e8347b799280a1b5ec0e0595e633f58453d307518981bfd6f28170188c9c51bff593b19907531d6ffff1b21442fa68770f4159f42d5c21b3f6fa13a2406a028ffffff1bf2064af3a75c18e3ffff", + "cborBytes": [ + 216, 102, 159, 27, 27, 100, 170, 131, 149, 144, 129, 205, 159, 160, 159, 159, 27, 16, 231, 251, 240, 237, 28, 7, + 156, 74, 136, 90, 154, 185, 155, 139, 217, 185, 72, 63, 27, 218, 178, 38, 100, 89, 151, 130, 48, 255, 159, 65, + 192, 27, 222, 104, 201, 246, 32, 9, 170, 40, 66, 17, 157, 27, 136, 83, 160, 9, 79, 42, 149, 67, 76, 100, 224, 126, + 47, 114, 170, 34, 214, 202, 100, 136, 152, 255, 216, 102, 159, 27, 145, 252, 96, 213, 132, 73, 230, 24, 159, 27, + 254, 109, 228, 52, 138, 188, 141, 187, 65, 234, 70, 250, 33, 7, 37, 135, 245, 27, 147, 198, 226, 58, 37, 68, 225, + 98, 69, 101, 182, 176, 193, 27, 255, 255, 159, 65, 6, 70, 197, 102, 13, 78, 95, 47, 71, 17, 140, 182, 40, 124, + 252, 66, 27, 42, 63, 176, 4, 179, 140, 31, 138, 255, 255, 216, 102, 159, 27, 239, 25, 105, 191, 144, 52, 162, 44, + 159, 216, 102, 159, 27, 144, 75, 96, 64, 59, 20, 92, 185, 159, 72, 108, 126, 131, 71, 183, 153, 40, 10, 27, 94, + 192, 224, 89, 94, 99, 63, 88, 69, 61, 48, 117, 24, 152, 27, 253, 111, 40, 23, 1, 136, 201, 197, 27, 255, 89, 59, + 25, 144, 117, 49, 214, 255, 255, 27, 33, 68, 47, 166, 135, 112, 244, 21, 159, 66, 213, 194, 27, 63, 111, 161, 58, + 36, 6, 160, 40, 255, 255, 255, 27, 242, 6, 74, 243, 167, 92, 24, 227, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 869, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14488144969247203920" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2357263683193841832" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f108" + }, + { + "_tag": "ByteArray", + "bytearray": "fddc155592e1e4" + } + ] + }, + "cborHex": "d8669f1bc9103b168a57a2509fd8669f1b20b6aed49eb2a8a880ff42f10847fddc155592e1e4ffff", + "cborBytes": [ + 216, 102, 159, 27, 201, 16, 59, 22, 138, 87, 162, 80, 159, 216, 102, 159, 27, 32, 182, 174, 212, 158, 178, 168, + 168, 128, 255, 66, 241, 8, 71, 253, 220, 21, 85, 146, 225, 228, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 870, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17546027992179673507" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17806489442832890966" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "381634433023901427" + } + }, + { + "_tag": "ByteArray", + "bytearray": "27cea0e2" + } + ] + }, + "cborHex": "d905049f1bf380037efcee09a31bf71d5bce30cc3c561b054bd67eae727ef34427cea0e2ff", + "cborBytes": [ + 217, 5, 4, 159, 27, 243, 128, 3, 126, 252, 238, 9, 163, 27, 247, 29, 91, 206, 48, 204, 60, 86, 27, 5, 75, 214, + 126, 174, 114, 126, 243, 68, 39, 206, 160, 226, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 871, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1734766769151358369" + }, + "fields": [] + }, + "cborHex": "d8669f1b1813212f736b35a180ff", + "cborBytes": [216, 102, 159, 27, 24, 19, 33, 47, 115, 107, 53, 161, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 872, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14456436228476022220" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7170093053338561549" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "018c7c896240d08f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12049485504060547027" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11681166576008979381" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d703" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "539169857465168541" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7492248589532842225" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14637172831357389525" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e3129e4ede4982" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bc89f94280466adcc9f9f80bf1b638149a4aabdac0d48018c7c896240d08f41511ba7385f399bbf5fd341ed1ba21bd71c852e63b5ff42d7031b077b8420f3cf329dd8669f1b67f9d0658406c8f19f1bcb21af23990e4ad547e3129e4ede4982ffffffd8669f1bfffffffffffffffb80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 200, 159, 148, 40, 4, 102, 173, 204, 159, 159, 128, 191, 27, 99, 129, 73, 164, 170, 189, 172, + 13, 72, 1, 140, 124, 137, 98, 64, 208, 143, 65, 81, 27, 167, 56, 95, 57, 155, 191, 95, 211, 65, 237, 27, 162, 27, + 215, 28, 133, 46, 99, 181, 255, 66, 215, 3, 27, 7, 123, 132, 32, 243, 207, 50, 157, 216, 102, 159, 27, 103, 249, + 208, 101, 132, 6, 200, 241, 159, 27, 203, 33, 175, 35, 153, 14, 74, 213, 71, 227, 18, 158, 78, 222, 73, 130, 255, + 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 873, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8014a885" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "149f62c13fc6a11845" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8944a6bff51bf" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "154d488b23d857" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3366415560911385835" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44892558be8197a8a4ae56" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15909711568532997789" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecae0deeea53" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5242838228733801551" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f715aee89dec275cc9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7046082989165297932" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f36e08db2b3e12e587" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f036a1a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e95c9656652232efc46785c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7072c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9506438212411479259" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f448014a885bf49149f62c13fc6a1184547d8944a6bff51bfffbf47154d488b23d8571b2eb7e91dda7874eb4b44892558be8197a8a4ae561bdccaa660d955069d46ecae0deeea531b48c24d975e84344f41ff49f715aee89dec275cc9ffd8669f1b61c8b7259b1ec10c9f49f36e08db2b3e12e587ffffbf440f036a1a4ce95c9656652232efc46785c5413943a7072c41b51b83eda72fd9fc54dbffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 68, 128, 20, 168, 133, 191, 73, 20, 159, 98, 193, + 63, 198, 161, 24, 69, 71, 216, 148, 74, 107, 255, 81, 191, 255, 191, 71, 21, 77, 72, 139, 35, 216, 87, 27, 46, + 183, 233, 29, 218, 120, 116, 235, 75, 68, 137, 37, 88, 190, 129, 151, 168, 164, 174, 86, 27, 220, 202, 166, 96, + 217, 85, 6, 157, 70, 236, 174, 13, 238, 234, 83, 27, 72, 194, 77, 151, 94, 132, 52, 79, 65, 255, 73, 247, 21, 174, + 232, 157, 236, 39, 92, 201, 255, 216, 102, 159, 27, 97, 200, 183, 37, 155, 30, 193, 12, 159, 73, 243, 110, 8, 219, + 43, 62, 18, 229, 135, 255, 255, 191, 68, 15, 3, 106, 26, 76, 233, 92, 150, 86, 101, 34, 50, 239, 196, 103, 133, + 197, 65, 57, 67, 167, 7, 44, 65, 181, 27, 131, 237, 167, 47, 217, 252, 84, 219, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 874, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0200f803" + }, + { + "_tag": "ByteArray", + "bytearray": "fde1f6fdad9c7b52759f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14124613751173687418" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3fa61d0196b11b8ec6c8330a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "325510811979041938" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f2e63a595b26777b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2221124024677758485" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9292de116c4a1ce445" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4995777513706397584" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d44c4d5f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7900284023051616821" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6969086558807317584" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11385251220461240242" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17260267180229912259" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f92d7d70979be4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4515144424957103442" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15797357231978817567" + } + }, + { + "_tag": "ByteArray", + "bytearray": "91ca5e1301e1c6" + }, + { + "_tag": "ByteArray", + "bytearray": "ad89" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13596243403685915641" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050d9f440200f8034afde1f6fdad9c7b52759fd8669f1bc404b55f0c4e287a9f4c3fa61d0196b11b8ec6c8330affff1b0484725bde8f4c929f48f2e63a595b26777bbf1b1ed304884d00f615499292de116c4a1ce4451b4554912e115a9f9044d44c4d5f1b6da3727622af82351b60b72b4d2aa8dc501b9e0089a9d22cbfb21bef88c98d35efe6c3ff47f92d7d70979be4d8669f1b3ea903eea7274d529f1bdb3b7cb45a0ba81f4791ca5e1301e1c642ad89ffff9f1bbcaf8f56f4726bf9ffffff", + "cborBytes": [ + 217, 5, 13, 159, 68, 2, 0, 248, 3, 74, 253, 225, 246, 253, 173, 156, 123, 82, 117, 159, 216, 102, 159, 27, 196, 4, + 181, 95, 12, 78, 40, 122, 159, 76, 63, 166, 29, 1, 150, 177, 27, 142, 198, 200, 51, 10, 255, 255, 27, 4, 132, 114, + 91, 222, 143, 76, 146, 159, 72, 242, 230, 58, 89, 91, 38, 119, 123, 191, 27, 30, 211, 4, 136, 77, 0, 246, 21, 73, + 146, 146, 222, 17, 108, 74, 28, 228, 69, 27, 69, 84, 145, 46, 17, 90, 159, 144, 68, 212, 76, 77, 95, 27, 109, 163, + 114, 118, 34, 175, 130, 53, 27, 96, 183, 43, 77, 42, 168, 220, 80, 27, 158, 0, 137, 169, 210, 44, 191, 178, 27, + 239, 136, 201, 141, 53, 239, 230, 195, 255, 71, 249, 45, 125, 112, 151, 155, 228, 216, 102, 159, 27, 62, 169, 3, + 238, 167, 39, 77, 82, 159, 27, 219, 59, 124, 180, 90, 11, 168, 31, 71, 145, 202, 94, 19, 1, 225, 198, 66, 173, + 137, 255, 255, 159, 27, 188, 175, 143, 86, 244, 114, 107, 249, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 875, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17795860291242868921" + }, + "fields": [] + }, + "cborHex": "d8669f1bf6f798a5fc02c0b980ff", + "cborBytes": [216, 102, 159, 27, 246, 247, 152, 165, 252, 2, 192, 185, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 876, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ae7dce5e30cd864b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10572442608378716947" + } + } + ] + }, + "cborHex": "d9050d9f48ae7dce5e30cd864b1b92b8dc89809e2313ff", + "cborBytes": [ + 217, 5, 13, 159, 72, 174, 125, 206, 94, 48, 205, 134, 75, 27, 146, 184, 220, 137, 128, 158, 35, 19, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 877, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2175440794534013006" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1183501271339650653" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0137114fca7e0dcc1d6a9f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be1571" + }, + { + "_tag": "ByteArray", + "bytearray": "d2f060ce942186" + }, + { + "_tag": "ByteArray", + "bytearray": "c687d6201535b52b88619ab8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8014122444342995901" + } + }, + { + "_tag": "ByteArray", + "bytearray": "319395" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a6aaea1908ed68c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12005821633386429985" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f7d0620" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1217135d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "affe7960f71e942c36ca7b4b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc27" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b80c991e2055a3ebe58e2291" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9911116979627863392" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e12a738d76e20fd8e59b6585" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa02faa6fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b74d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "111f" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9f16f959" + }, + { + "_tag": "ByteArray", + "bytearray": "acfc289bff75" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b1e30b7e06c17e84e9fd905079f1b106ca422c56c4e5d4b0137114fca7e0dcc1d6a9f9f43be157147d2f060ce9421864cc687d6201535b52b88619ab8ff1b6f37e1e7098cabbd43319395ffbf483a6aaea1908ed68c1ba69d3f2a7eb2be21446f7d0620441217135d4caffe7960f71e942c36ca7b4b42fc274cb80c991e2055a3ebe58e22911b898b5c61b20fad604ce12a738d76e20fd8e59b65850045fa02faa6fb4168ff9f42b74dff9f9f42111fff9f449f16f95946acfc289bff75ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 30, 48, 183, 224, 108, 23, 232, 78, 159, 217, 5, 7, 159, 27, 16, 108, 164, 34, 197, 108, 78, + 93, 75, 1, 55, 17, 79, 202, 126, 13, 204, 29, 106, 159, 159, 67, 190, 21, 113, 71, 210, 240, 96, 206, 148, 33, + 134, 76, 198, 135, 214, 32, 21, 53, 181, 43, 136, 97, 154, 184, 255, 27, 111, 55, 225, 231, 9, 140, 171, 189, 67, + 49, 147, 149, 255, 191, 72, 58, 106, 174, 161, 144, 142, 214, 140, 27, 166, 157, 63, 42, 126, 178, 190, 33, 68, + 111, 125, 6, 32, 68, 18, 23, 19, 93, 76, 175, 254, 121, 96, 247, 30, 148, 44, 54, 202, 123, 75, 66, 252, 39, 76, + 184, 12, 153, 30, 32, 85, 163, 235, 229, 142, 34, 145, 27, 137, 139, 92, 97, 178, 15, 173, 96, 76, 225, 42, 115, + 141, 118, 226, 15, 216, 229, 155, 101, 133, 0, 69, 250, 2, 250, 166, 251, 65, 104, 255, 159, 66, 183, 77, 255, + 159, 159, 66, 17, 31, 255, 159, 68, 159, 22, 249, 89, 70, 172, 252, 40, 155, 255, 117, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 878, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4180236968195651377" + }, + "fields": [] + }, + "cborHex": "d8669f1b3a032f5fee41f73180ff", + "cborBytes": [216, 102, 159, 27, 58, 3, 47, 95, 238, 65, 247, 49, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 879, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3199548419804680654" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17366874480995756868" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3692683151880887494" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22a93dd09eebd76f7951a5ce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ad5cdbae5" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2c671455fc1ed1ce9fbf1bf1038853aa8c6b441b333f0bc30fee1cc64c22a93dd09eebd76f7951a5ce456ad5cdbae5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 44, 103, 20, 85, 252, 30, 209, 206, 159, 191, 27, 241, 3, 136, 83, 170, 140, 107, 68, 27, 51, + 63, 11, 195, 15, 238, 28, 198, 76, 34, 169, 61, 208, 158, 235, 215, 111, 121, 81, 165, 206, 69, 106, 213, 205, + 186, 229, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 880, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "744871594368050020" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13775907769967042094" + } + } + ] + }, + "cborHex": "d8669f1b0a5650c4c19623649f1bbf2ddb20ff6dde2effff", + "cborBytes": [ + 216, 102, 159, 27, 10, 86, 80, 196, 193, 150, 35, 100, 159, 27, 191, 45, 219, 32, 255, 109, 222, 46, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 881, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "960489538230375224" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10844947626188743236" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5151239588135198343" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a27e7cfa67" + }, + { + "_tag": "ByteArray", + "bytearray": "5ac1ed64b637cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11774218711946371596" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14311133970731177297" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4218349510857424391" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6110833758032790009" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5738699441445661027" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a1bcec34ae4d1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13432765137617478645" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2902578659422326318" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f863" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11702479470358944435" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09fd8669f1b0d54582568b353389f9f1b9680fe6832b222441b477ce11cebba5e8745a27e7cfa67475ac1ed64b637cc1ba3666d893952220cffffff417b9fd8669f1bc69b5c85d275155180ffffbf1b3a8a9687c5197e071b54ce0aed250281f91b4fa3f4bcb019e963473a1bcec34ae4d11bba6ac4b90af0e3f51b284807e9877f4e2e41a242f863ff1ba2678f136e0bdab3ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 216, 102, 159, 27, 13, 84, 88, 37, 104, 179, 83, + 56, 159, 159, 27, 150, 128, 254, 104, 50, 178, 34, 68, 27, 71, 124, 225, 28, 235, 186, 94, 135, 69, 162, 126, 124, + 250, 103, 71, 90, 193, 237, 100, 182, 55, 204, 27, 163, 102, 109, 137, 57, 82, 34, 12, 255, 255, 255, 65, 123, + 159, 216, 102, 159, 27, 198, 155, 92, 133, 210, 117, 21, 81, 128, 255, 255, 191, 27, 58, 138, 150, 135, 197, 25, + 126, 7, 27, 84, 206, 10, 237, 37, 2, 129, 249, 27, 79, 163, 244, 188, 176, 25, 233, 99, 71, 58, 27, 206, 195, 74, + 228, 209, 27, 186, 106, 196, 185, 10, 240, 227, 245, 27, 40, 72, 7, 233, 135, 127, 78, 46, 65, 162, 66, 248, 99, + 255, 27, 162, 103, 143, 19, 110, 11, 218, 179, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 882, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17956055910024073514" + }, + "fields": [] + }, + "cborHex": "d8669f1bf930b9b70409d12a80ff", + "cborBytes": [216, 102, 159, 27, 249, 48, 185, 183, 4, 9, 209, 42, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 883, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2632980477303722781" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f9c00364" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "84f43d476394c38de3d3e220" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1917d13b6376b428e578" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f8017f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15243137458085332279" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fb360602ff0766079bfb07" + } + ] + }, + "cborHex": "d8669f1b248a39cb423a131d9f44f9c00364bf4c84f43d476394c38de3d3e2204a1917d13b6376b428e578ff43f8017f1bd38a80c1aba085374bfb360602ff0766079bfb07ffff", + "cborBytes": [ + 216, 102, 159, 27, 36, 138, 57, 203, 66, 58, 19, 29, 159, 68, 249, 192, 3, 100, 191, 76, 132, 244, 61, 71, 99, + 148, 195, 141, 227, 211, 226, 32, 74, 25, 23, 209, 59, 99, 118, 180, 40, 229, 120, 255, 67, 248, 1, 127, 27, 211, + 138, 128, 193, 171, 160, 133, 55, 75, 251, 54, 6, 2, 255, 7, 102, 7, 155, 251, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 884, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17247808824149894891" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5f9e6a8671a0d2cd9cba" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9731800186682264171" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e502a59c6b91e8df00" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6531952485512089792" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f544467b19" + }, + { + "_tag": "ByteArray", + "bytearray": "50455f937db756b181a04b89" + }, + { + "_tag": "ByteArray", + "bytearray": "8f4e13566ef1b4df37" + }, + { + "_tag": "ByteArray", + "bytearray": "480ea03087ab" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16476824614185101310" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6182990857616061047" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3760968184773383522" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "be59" + }, + { + "_tag": "ByteArray", + "bytearray": "ace4ed83d22e8b0202f8bf" + }, + { + "_tag": "ByteArray", + "bytearray": "4b43f939a8af8b9ec1fdcd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12409089009322547939" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "18805e95c717dc" + }, + { + "_tag": "ByteArray", + "bytearray": "5890212a4a42" + }, + { + "_tag": "ByteArray", + "bytearray": "6c8d097bf86f86" + } + ] + }, + "cborHex": "d8669f1bef5c86be254d66eb9f4a5f9e6a8671a0d2cd9cbad8669f1b870e4cb56046ca6b9f9f49e502a59c6b91e8df00ffd8669f1b5aa6282d84ad90c09f45f544467b194c50455f937db756b181a04b89498f4e13566ef1b4df3746480ea03087abffff1be4a970b04aea67fed8669f1b55ce656d15b1727780ffd8669f1b3431a4a338f695629f42be594bace4ed83d22e8b0202f8bf4b4b43f939a8af8b9ec1fdcd1bac35f0b532dfdae3ffffffff4718805e95c717dc465890212a4a42476c8d097bf86f86ffff", + "cborBytes": [ + 216, 102, 159, 27, 239, 92, 134, 190, 37, 77, 102, 235, 159, 74, 95, 158, 106, 134, 113, 160, 210, 205, 156, 186, + 216, 102, 159, 27, 135, 14, 76, 181, 96, 70, 202, 107, 159, 159, 73, 229, 2, 165, 156, 107, 145, 232, 223, 0, 255, + 216, 102, 159, 27, 90, 166, 40, 45, 132, 173, 144, 192, 159, 69, 245, 68, 70, 123, 25, 76, 80, 69, 95, 147, 125, + 183, 86, 177, 129, 160, 75, 137, 73, 143, 78, 19, 86, 110, 241, 180, 223, 55, 70, 72, 14, 160, 48, 135, 171, 255, + 255, 27, 228, 169, 112, 176, 74, 234, 103, 254, 216, 102, 159, 27, 85, 206, 101, 109, 21, 177, 114, 119, 128, 255, + 216, 102, 159, 27, 52, 49, 164, 163, 56, 246, 149, 98, 159, 66, 190, 89, 75, 172, 228, 237, 131, 210, 46, 139, 2, + 2, 248, 191, 75, 75, 67, 249, 57, 168, 175, 139, 158, 193, 253, 205, 27, 172, 53, 240, 181, 50, 223, 218, 227, + 255, 255, 255, 255, 71, 24, 128, 94, 149, 199, 23, 220, 70, 88, 144, 33, 42, 74, 66, 71, 108, 141, 9, 123, 248, + 111, 134, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 885, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9168503119984980915" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5458191701355353992" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e39c325f717452c9e8c6b573" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13358773631155375212" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15236641308349760916" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18012941536307930507" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af142e58e136" + } + ] + }, + "cborHex": "d8669f1b7f3d1102c4c3f3b39f1b4bbf646f034557884ce39c325f717452c9e8c6b5739f80a01bb963e5d6f7df0c6c1bd3736c8af23b0594ff1bf9fad2e3ff83658b46af142e58e136ffff", + "cborBytes": [ + 216, 102, 159, 27, 127, 61, 17, 2, 196, 195, 243, 179, 159, 27, 75, 191, 100, 111, 3, 69, 87, 136, 76, 227, 156, + 50, 95, 113, 116, 82, 201, 232, 198, 181, 115, 159, 128, 160, 27, 185, 99, 229, 214, 247, 223, 12, 108, 27, 211, + 115, 108, 138, 242, 59, 5, 148, 255, 27, 249, 250, 210, 227, 255, 131, 101, 139, 70, 175, 20, 46, 88, 225, 54, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 886, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5680284568720022688" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12722475357557750100" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f497" + }, + { + "_tag": "ByteArray", + "bytearray": "11d92391baad" + }, + { + "_tag": "ByteArray", + "bytearray": "8dd1" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1107555327034340688" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b5ea869" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5086170858501101056" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09fd8669f1bffffffffffffffed9f9f1b4ed46cb845b09ca01bb08f4fee5ee3f95442f4974611d92391baad428dd1ffffff1b0f5ed3b3acf93550448b5ea8699f1b4695b572b7e6d600ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 237, 159, 159, 27, 78, 212, 108, 184, 69, 176, 156, 160, 27, 176, 143, 79, 238, 94, 227, 249, 84, 66, 244, + 151, 70, 17, 217, 35, 145, 186, 173, 66, 141, 209, 255, 255, 255, 27, 15, 94, 211, 179, 172, 249, 53, 80, 68, 139, + 94, 168, 105, 159, 27, 70, 149, 181, 114, 183, 230, 214, 0, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 887, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10867089413890845110" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15029797504144009055" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "82a8ca7be4" + } + ] + }, + "cborHex": "d8669f1b96cfa83ee15f29b69fd8669f1bd0949132e08e675f80ff4582a8ca7be4ffff", + "cborBytes": [ + 216, 102, 159, 27, 150, 207, 168, 62, 225, 95, 41, 182, 159, 216, 102, 159, 27, 208, 148, 145, 50, 224, 142, 103, + 95, 128, 255, 69, 130, 168, 202, 123, 228, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 888, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16583627111083830698" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1649224063158260942" + } + } + ] + }, + "cborHex": "d8669f1be624e0fe63b06daa9f1b16e3388c279314ceffff", + "cborBytes": [ + 216, 102, 159, 27, 230, 36, 224, 254, 99, 176, 109, 170, 159, 27, 22, 227, 56, 140, 39, 147, 20, 206, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 889, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18443974320956437697" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7afd44f1c124" + }, + { + "_tag": "ByteArray", + "bytearray": "7c965f88" + } + ] + }, + "cborHex": "d8669f1bfff628ecaf08f4c19f80467afd44f1c124447c965f88ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 246, 40, 236, 175, 8, 244, 193, 159, 128, 70, 122, 253, 68, 241, 193, 36, 68, 124, 150, + 95, 136, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 890, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f0af75fab867" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15254093099632914464" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d564e7d588a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5db91b257affdcf373320" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b04a60546bf8dd79fe02a7c9" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3584db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1eb35a6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a2083ae4e30605be02ede" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7815d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e50438efc71652b576edd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e9e1a676587635948ae18" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5433392328415297631" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0cfc5f99530172293a6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38633f1ac622" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd2f7c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9501683011353052425" + } + } + } + ] + } + ] + }, + "cborHex": "d87e9f1bfffffffffffffff146f0af75fab86780d87f9f1bd3b16cdabe5b7020466d564e7d588abf4bb5db91b257affdcf3733204cb04a60546bf8dd79fe02a7c9ffffbf433584db44b1eb35a64b3a2083ae4e30605be02ede43a7815d417a4b5e50438efc71652b576edd4b7e9e1a676587635948ae181b4b6749890c86c05f4ae0cfc5f99530172293a64638633f1ac62243fd2f7c1b83dcc25b54100509ffff", + "cborBytes": [ + 216, 126, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 70, 240, 175, 117, 250, 184, 103, 128, 216, 127, 159, + 27, 211, 177, 108, 218, 190, 91, 112, 32, 70, 109, 86, 78, 125, 88, 138, 191, 75, 181, 219, 145, 178, 87, 175, + 253, 207, 55, 51, 32, 76, 176, 74, 96, 84, 107, 248, 221, 121, 254, 2, 167, 201, 255, 255, 191, 67, 53, 132, 219, + 68, 177, 235, 53, 166, 75, 58, 32, 131, 174, 78, 48, 96, 91, 224, 46, 222, 67, 167, 129, 93, 65, 122, 75, 94, 80, + 67, 142, 252, 113, 101, 43, 87, 110, 221, 75, 126, 158, 26, 103, 101, 135, 99, 89, 72, 174, 24, 27, 75, 103, 73, + 137, 12, 134, 192, 95, 74, 224, 207, 197, 249, 149, 48, 23, 34, 147, 166, 70, 56, 99, 63, 26, 198, 34, 67, 253, + 47, 124, 27, 131, 220, 194, 91, 84, 16, 5, 9, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 891, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1425068971139304070" + }, + "fields": [] + }, + "cborHex": "d8669f1b13c6dcadcd308a8680ff", + "cborBytes": [216, 102, 159, 27, 19, 198, 220, 173, 205, 48, 138, 134, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 892, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11080021774876049703" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6158883503366013050" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7570121205873249512" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3677504175333830191" + } + }, + { + "_tag": "ByteArray", + "bytearray": "331dd23b27" + }, + { + "_tag": "ByteArray", + "bytearray": "14c3e2651bb5810c9ff9ba64" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11438399442827146039" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3992760226366974721" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "757035808607411191" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4556813134845230991" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9eb1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5108855998182618580" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a40ff8f49789" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11662600721873434769" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c98735d09a8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12759823298973367106" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10493600332788371757" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16287281662269508319" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16187904716319174290" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17398253498318331472" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "022903e10644" + } + ] + }, + "cborHex": "d8669f1b99c425198b1481279f9f9f1b5578bfea4725007a1b690e7920e6ba0ce81b33091e902ec9ee2f45331dd23b274c14c3e2651bb5810c9ff9ba64ff1b9ebd5bb0a4bcf337bf1b3769224575e96b011b0a81880e964b9bf71b3f3d0d673248bf8f429eb11b46e64d76644c75d446a40ff8f497891ba1d9e190c07af891461c98735d09a81bb113ffaf9c0f7b421b91a0c1e7bac5912d1be2080c60cc4ecadf1be0a6fd9282132e92ff1bf173036077761e50ff46022903e10644ffff", + "cborBytes": [ + 216, 102, 159, 27, 153, 196, 37, 25, 139, 20, 129, 39, 159, 159, 159, 27, 85, 120, 191, 234, 71, 37, 0, 122, 27, + 105, 14, 121, 32, 230, 186, 12, 232, 27, 51, 9, 30, 144, 46, 201, 238, 47, 69, 51, 29, 210, 59, 39, 76, 20, 195, + 226, 101, 27, 181, 129, 12, 159, 249, 186, 100, 255, 27, 158, 189, 91, 176, 164, 188, 243, 55, 191, 27, 55, 105, + 34, 69, 117, 233, 107, 1, 27, 10, 129, 136, 14, 150, 75, 155, 247, 27, 63, 61, 13, 103, 50, 72, 191, 143, 66, 158, + 177, 27, 70, 230, 77, 118, 100, 76, 117, 212, 70, 164, 15, 248, 244, 151, 137, 27, 161, 217, 225, 144, 192, 122, + 248, 145, 70, 28, 152, 115, 93, 9, 168, 27, 177, 19, 255, 175, 156, 15, 123, 66, 27, 145, 160, 193, 231, 186, 197, + 145, 45, 27, 226, 8, 12, 96, 204, 78, 202, 223, 27, 224, 166, 253, 146, 130, 19, 46, 146, 255, 27, 241, 115, 3, + 96, 119, 118, 30, 80, 255, 70, 2, 41, 3, 225, 6, 68, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 893, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14430040768325296836" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5825937161325318980" + } + } + ] + }, + "cborHex": "d8669f1bc841cda00a6f22c49f1b50d9e2fb288b1344ffff", + "cborBytes": [ + 216, 102, 159, 27, 200, 65, 205, 160, 10, 111, 34, 196, 159, 27, 80, 217, 226, 251, 40, 139, 19, 68, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 894, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11968185093237198413" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9b129638da2ebe6269b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f5491c17d46a72bf19250" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1621133258767116886" + } + } + ] + }, + "cborHex": "d8669f1ba61788eea0874e4d9fbf4ac9b129638da2ebe6269b4b2f5491c17d46a72bf19250ff1b167f6c1c1662aa56ffff", + "cborBytes": [ + 216, 102, 159, 27, 166, 23, 136, 238, 160, 135, 78, 77, 159, 191, 74, 201, 177, 41, 99, 141, 162, 235, 230, 38, + 155, 75, 47, 84, 145, 193, 125, 70, 167, 43, 241, 146, 80, 255, 27, 22, 127, 108, 28, 22, 98, 170, 86, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 895, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11291463787920319805" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19124217429826785" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6186040365806943115" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9984baa49b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6308010030508661056" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15357128294242266982" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ea390311a983b0f7d76de5dc" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9248141792258370897" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d5a6db5b5ccd1f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdc664af7e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5635654093249869369" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9b0ae94b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3568072346481130442" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5550552210914072013" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e26efeaf54" + } + ] + }, + "cborHex": "d8669f1b9cb3567d892d653d9fd8669f1b0043f15fda831ce19fbf1b55d93af00a267b8b459984baa49b1b578a8db39411d9401bd51f7ad16c692f66ff4cea390311a983b0f7d76de5dcffffbf1b8057fff618012d51484d5a6db5b5ccd1f245bdc664af7e1b4e35dd89f122763945d9b0ae94b31b318456e508e6fbcaff1b4d0785d3e6cad5cd45e26efeaf54ffff", + "cborBytes": [ + 216, 102, 159, 27, 156, 179, 86, 125, 137, 45, 101, 61, 159, 216, 102, 159, 27, 0, 67, 241, 95, 218, 131, 28, 225, + 159, 191, 27, 85, 217, 58, 240, 10, 38, 123, 139, 69, 153, 132, 186, 164, 155, 27, 87, 138, 141, 179, 148, 17, + 217, 64, 27, 213, 31, 122, 209, 108, 105, 47, 102, 255, 76, 234, 57, 3, 17, 169, 131, 176, 247, 215, 109, 229, + 220, 255, 255, 191, 27, 128, 87, 255, 246, 24, 1, 45, 81, 72, 77, 90, 109, 181, 181, 204, 209, 242, 69, 189, 198, + 100, 175, 126, 27, 78, 53, 221, 137, 241, 34, 118, 57, 69, 217, 176, 174, 148, 179, 27, 49, 132, 86, 229, 8, 230, + 251, 202, 255, 27, 77, 7, 133, 211, 230, 202, 213, 205, 69, 226, 110, 254, 175, 84, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 896, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2855327260206878728" + }, + "fields": [] + }, + "cborHex": "d8669f1b27a02903d61ed00880ff", + "cborBytes": [216, 102, 159, 27, 39, 160, 41, 3, 214, 30, 208, 8, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 897, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18043761583726189785" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "708194" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b9cd09e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5853132800422046683" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c66796392c9607891a4aa1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9454526449089481201" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3187a61f7300b8ae6e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87359787" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4c1a670fc5cb01737" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f28be0f21c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "98d9e6bf4a" + } + ] + }, + "cborHex": "d8669f1bfa68518f79d6dcd99f9f43708194ffbf444b9cd09e1b513a81455057ebdb4bc66796392c9607891a4aa11b833539b6958389f14ad3187a61f7300b8ae6e3448735978749e4c1a670fc5cb0173741d145f28be0f21c4139ff4598d9e6bf4affff", + "cborBytes": [ + 216, 102, 159, 27, 250, 104, 81, 143, 121, 214, 220, 217, 159, 159, 67, 112, 129, 148, 255, 191, 68, 75, 156, 208, + 158, 27, 81, 58, 129, 69, 80, 87, 235, 219, 75, 198, 103, 150, 57, 44, 150, 7, 137, 26, 74, 161, 27, 131, 53, 57, + 182, 149, 131, 137, 241, 74, 211, 24, 122, 97, 247, 48, 11, 138, 230, 227, 68, 135, 53, 151, 135, 73, 228, 193, + 166, 112, 252, 92, 176, 23, 55, 65, 209, 69, 242, 139, 224, 242, 28, 65, 57, 255, 69, 152, 217, 230, 191, 74, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 898, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "de095a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "53" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14391917885166132861" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7518032554112406060" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "690624413434dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd5b344a5a02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f9aea88" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "291b4938b63ad2ebe7db" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2066121637672254031" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04eacee8cd7f22" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3001422944029756839" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16057675968883835702" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4637088863402054790" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14735958432011037454" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17107466827165528801" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f9f43de095abf41531bc7ba5d109deb1e7d41581b68556ac695b1522c47690624413434dd46dd5b344a5a02446f9aea884a291b4938b63ad2ebe7dbffbf1b1cac56aec433fa4f4704eacee8cd7f221b29a73243ef99cda71bded853376ba5c3361b405a3fc0beffd4861bcc80a41e94f0ab0effffd8669f1bed69ee70a7faf2e180ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 159, 67, 222, 9, 90, 191, 65, 83, 27, 199, 186, + 93, 16, 157, 235, 30, 125, 65, 88, 27, 104, 85, 106, 198, 149, 177, 82, 44, 71, 105, 6, 36, 65, 52, 52, 221, 70, + 221, 91, 52, 74, 90, 2, 68, 111, 154, 234, 136, 74, 41, 27, 73, 56, 182, 58, 210, 235, 231, 219, 255, 191, 27, 28, + 172, 86, 174, 196, 51, 250, 79, 71, 4, 234, 206, 232, 205, 127, 34, 27, 41, 167, 50, 67, 239, 153, 205, 167, 27, + 222, 216, 83, 55, 107, 165, 195, 54, 27, 64, 90, 63, 192, 190, 255, 212, 134, 27, 204, 128, 164, 30, 148, 240, + 171, 14, 255, 255, 216, 102, 159, 27, 237, 105, 238, 112, 167, 250, 242, 225, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 899, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16929773468494441441" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12282245564105434598" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14654224693869104766" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9015091607024980776" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3627569031948524758" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14230225014722058255" + } + }, + { + "_tag": "ByteArray", + "bytearray": "866233ba" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16863820935215198451" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebe5c9de4fc4731b46fcf2" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1beaf2a3459571abe19fa09f1baa734d44349f25e61bcb5e43b7b8d34e7e9f1b7d1c0a0d765453281b3257b6d09b7fdcd61bc57bea418462d80f44866233baffbf1bea0853cacf4c30f34bebe5c9de4fc4731b46fcf2ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 234, 242, 163, 69, 149, 113, 171, 225, 159, 160, 159, 27, 170, 115, 77, 68, 52, 159, 37, 230, + 27, 203, 94, 67, 183, 184, 211, 78, 126, 159, 27, 125, 28, 10, 13, 118, 84, 83, 40, 27, 50, 87, 182, 208, 155, + 127, 220, 214, 27, 197, 123, 234, 65, 132, 98, 216, 15, 68, 134, 98, 51, 186, 255, 191, 27, 234, 8, 83, 202, 207, + 76, 48, 243, 75, 235, 229, 201, 222, 79, 196, 115, 27, 70, 252, 242, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 900, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7210846123104287350" + }, + "fields": [] + }, + "cborHex": "d8669f1b6412125821a23a7680ff", + "cborBytes": [216, 102, 159, 27, 100, 18, 18, 88, 33, 162, 58, 118, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 901, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13918561348658698571" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4716950552445135989" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a0584c46d4" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "09d820b1" + }, + { + "_tag": "ByteArray", + "bytearray": "07f790e84370e33c7aa3b0" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7331593f455a80eb7d8caa65" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11956853529448964387" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18208490376440380067" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6839829402835250679" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13604657495168582857" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7045727017385511344" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8228061971934903542" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12777217070215330420" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f811f2fc674ddadd7377" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13043762765783804088" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf85bbeecc18b8a725" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17195485069487527443" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6574046757827796653" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18268208464845894654" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91cd2870be92442cc2a2" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3103fdb354e73fa3c7581a" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f9fd8669f1bc128a9cd8b48994b9f1b4175f98935932c7545a0584c46d4ffffff9f9f4409d820b14b07f790e84370e33c7aa3b0ff4c7331593f455a80eb7d8caa65d8669f1ba5ef46ef562e61239f1bfcb18d864fd8faa3ffffbf1b5eebf49a58446df71bbccd73e94a6104c91b61c7736477a2c9b01b722ff2c4f3147cf61bb151cb3a903dfa744af811f2fc674ddadd73771bb504c1206d02a8b849bf85bbeecc18b8a7251beea2a290ab5656131b5b3bb4b209225ead1bfd85b6cf45ec73fe4a91cd2870be92442cc2a2ff4b3103fdb354e73fa3c7581affffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 159, 216, 102, 159, 27, 193, 40, 169, 205, 139, + 72, 153, 75, 159, 27, 65, 117, 249, 137, 53, 147, 44, 117, 69, 160, 88, 76, 70, 212, 255, 255, 255, 159, 159, 68, + 9, 216, 32, 177, 75, 7, 247, 144, 232, 67, 112, 227, 60, 122, 163, 176, 255, 76, 115, 49, 89, 63, 69, 90, 128, + 235, 125, 140, 170, 101, 216, 102, 159, 27, 165, 239, 70, 239, 86, 46, 97, 35, 159, 27, 252, 177, 141, 134, 79, + 216, 250, 163, 255, 255, 191, 27, 94, 235, 244, 154, 88, 68, 109, 247, 27, 188, 205, 115, 233, 74, 97, 4, 201, 27, + 97, 199, 115, 100, 119, 162, 201, 176, 27, 114, 47, 242, 196, 243, 20, 124, 246, 27, 177, 81, 203, 58, 144, 61, + 250, 116, 74, 248, 17, 242, 252, 103, 77, 218, 221, 115, 119, 27, 181, 4, 193, 32, 109, 2, 168, 184, 73, 191, 133, + 187, 238, 204, 24, 184, 167, 37, 27, 238, 162, 162, 144, 171, 86, 86, 19, 27, 91, 59, 180, 178, 9, 34, 94, 173, + 27, 253, 133, 182, 207, 69, 236, 115, 254, 74, 145, 205, 40, 112, 190, 146, 68, 44, 194, 162, 255, 75, 49, 3, 253, + 179, 84, 231, 63, 163, 199, 88, 26, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 902, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3239029596528851343" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11588477321221499014" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11427770711247470437" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a333baf9dc29afe179daf21" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14257056760323537873" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16595734958753768251" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2065077195649580080" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5804347478452935491" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13595283259089724169" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2662139987455067517" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "17d38c6b8f5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18000947727888400453" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "12261f28f4508c5ed639d1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "573607868474592840" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "615051256093663239" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10681899693901071334" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5569273853646332013" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10587692739112371052" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13720470793381857498" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8659" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17807619014321918570" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7cac0f8de9ab15daae5d3a" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f4afa282d9" + }, + { + "_tag": "ByteArray", + "bytearray": "a6e8" + } + ] + }, + "cborHex": "d905019f9fbf1b2cf35841c614398f1ba0d28ab9ab13e8861b9e9798ea3a84bf654c6a333baf9dc29afe179daf211bc5db3d961daa7bd11be64fe5045b0ce33bffbf1b1ca8a0c4a873fc301b508d2f47661f1b431bbcac2617dedba3091b24f1d236c69f457d4617d38c6b8f5c1bf9d03695dd29c045ff4b12261f28f4508c5ed639d1bf1b07f5dd5138cc0e4841361b088919dbd61ee0071b943dbb2d2d53c3e61b4d4a09100775e06d1b92ef0a7341c6836c1bbe68e77e0ea5c8da4286591bf7215f250c26526a4b7cac0f8de9ab15daae5d3affff45f4afa282d942a6e8ff", + "cborBytes": [ + 217, 5, 1, 159, 159, 191, 27, 44, 243, 88, 65, 198, 20, 57, 143, 27, 160, 210, 138, 185, 171, 19, 232, 134, 27, + 158, 151, 152, 234, 58, 132, 191, 101, 76, 106, 51, 59, 175, 157, 194, 154, 254, 23, 157, 175, 33, 27, 197, 219, + 61, 150, 29, 170, 123, 209, 27, 230, 79, 229, 4, 91, 12, 227, 59, 255, 191, 27, 28, 168, 160, 196, 168, 115, 252, + 48, 27, 80, 141, 47, 71, 102, 31, 27, 67, 27, 188, 172, 38, 23, 222, 219, 163, 9, 27, 36, 241, 210, 54, 198, 159, + 69, 125, 70, 23, 211, 140, 107, 143, 92, 27, 249, 208, 54, 149, 221, 41, 192, 69, 255, 75, 18, 38, 31, 40, 244, + 80, 140, 94, 214, 57, 209, 191, 27, 7, 245, 221, 81, 56, 204, 14, 72, 65, 54, 27, 8, 137, 25, 219, 214, 30, 224, + 7, 27, 148, 61, 187, 45, 45, 83, 195, 230, 27, 77, 74, 9, 16, 7, 117, 224, 109, 27, 146, 239, 10, 115, 65, 198, + 131, 108, 27, 190, 104, 231, 126, 14, 165, 200, 218, 66, 134, 89, 27, 247, 33, 95, 37, 12, 38, 82, 106, 75, 124, + 172, 15, 141, 233, 171, 21, 218, 174, 93, 58, 255, 255, 69, 244, 175, 162, 130, 217, 66, 166, 232, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 903, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4406108521278081081" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4350663214954564909" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b3d25a45b049a08399f9fd8669f1b3c60a924a8b9cd2d80ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 61, 37, 164, 91, 4, 154, 8, 57, 159, 159, 216, 102, 159, 27, 60, 96, 169, 36, 168, 185, 205, + 45, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 904, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7055979997596611888" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e8c604fef8" + }, + { + "_tag": "ByteArray", + "bytearray": "06acfa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14481623463738458507" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa1e31c722e786506e20" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4158618008664186998" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15273757553890589649" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5928697131367271265" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4efad" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "62e4" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16143454494878684330" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b61ebe06c7301f5309f45e8c604fef84306acfa1bc8f90fd03717c18b9f1bfffffffffffffff54afa1e31c722e786506e20bf1b39b6610baaf8a0761bd3f7499249167bd11b5246f6a120060b6143d4efadff9f4262e4ff1be0091254d6ed54aaffffff", + "cborBytes": [ + 216, 102, 159, 27, 97, 235, 224, 108, 115, 1, 245, 48, 159, 69, 232, 198, 4, 254, 248, 67, 6, 172, 250, 27, 200, + 249, 15, 208, 55, 23, 193, 139, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 74, 250, 30, 49, 199, 34, 231, + 134, 80, 110, 32, 191, 27, 57, 182, 97, 11, 170, 248, 160, 118, 27, 211, 247, 73, 146, 73, 22, 123, 209, 27, 82, + 70, 246, 161, 32, 6, 11, 97, 67, 212, 239, 173, 255, 159, 66, 98, 228, 255, 27, 224, 9, 18, 84, 214, 237, 84, 170, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 905, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9490010751925051871" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13399949386539914909" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b87f768b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1915615839553159394" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2a8abb54ae10060529" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14829427041428524076" + } + }, + { + "_tag": "ByteArray", + "bytearray": "78c340cc" + }, + { + "_tag": "ByteArray", + "bytearray": "979075a4271a009a4406" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1946524233389499411" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b83b34a7fa72161df9f41ebd8669f1bb9f62ef898ecd69d9f44b87f768bd8669f1b1a95a274eaad80e29f492a8abb54ae100605291bcdccb55312eb4c2c4478c340cc4a979075a4271a009a44061b1b03717a25dee413ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 131, 179, 74, 127, 167, 33, 97, 223, 159, 65, 235, 216, 102, 159, 27, 185, 246, 46, 248, 152, + 236, 214, 157, 159, 68, 184, 127, 118, 139, 216, 102, 159, 27, 26, 149, 162, 116, 234, 173, 128, 226, 159, 73, 42, + 138, 187, 84, 174, 16, 6, 5, 41, 27, 205, 204, 181, 83, 18, 235, 76, 44, 68, 120, 195, 64, 204, 74, 151, 144, 117, + 164, 39, 26, 0, 154, 68, 6, 27, 27, 3, 113, 122, 37, 222, 228, 19, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 906, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "35c3413a" + }, + { + "_tag": "ByteArray", + "bytearray": "dc" + } + ] + }, + "cborHex": "d9050a9f4435c3413a41dcff", + "cborBytes": [217, 5, 10, 159, 68, 53, 195, 65, 58, 65, 220, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 907, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11580696677099116325" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d137e64d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11794006481063280471" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3ac52c9755f5eccf112e2fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "13" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4928254439487080342" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c05e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0633ba91d2" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "678500273239462213" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2307936032753563276" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d009fdd0a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4632706327608881929" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4a78a83a7422ae4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6034775639112231508" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5698215860805961716" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11335690482008264392" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f183a58976" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17106450458019413580" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2729165517119478632" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6468719996515693515" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7145069722041339200" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed0faa4186c185e23e5e802e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d585e59ecf90dd16d0" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16823304227382265305" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9227575461941737614" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9960953450979639719" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4563037396197657332" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5390263804318352136" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5721751179545368779" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5813566172228283323" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12952793279208627564" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7493482725204552818" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14026076761858107661" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cc50c625a063759a72fa182a" + }, + { + "_tag": "ByteArray", + "bytearray": "2a0628add60aa633cfe70540" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18329518447002662930" + } + }, + { + "_tag": "ByteArray", + "bytearray": "35" + } + ] + } + ] + } + ] + }, + "cborHex": "d87c9fbf1ba0b6e6454a0a172544d137e64d1ba3acba683e6e7f574cc3ac52c9755f5eccf112e2fb41131b4464ad4d3c5e8796438c05e9450633ba91d2ffbf1b096a84675671914541be1b20076f980499b68c45d009fdd0a41b404aaddc1dd4f30948d4a78a83a7422ae41b53bfd4785c772a541b4f1421228cd607f41b9d50766f2fe10ec845f183a589761bed66520ec610be4c1b25dff193fd26db68ffd8669f1b59c5829067c8b3cb9f1b6328630e55ac4d40bf4ced0faa4186c185e23e5e802e49d585e59ecf90dd16d0ff9f1be978620fa57285d91b800eeefe2b25f88e1b8a3c6a6365d7c1a71b3f532a55f92f4af41b4ace105f060a8308ffd8669f1b4f67be61f5f958cb9f1b50adefa1cde4ebbb1bb3c190dc504c1d6c1b67fe32d61e57ec721bc2a6a28066e9e90dffff9f4ccc50c625a063759a72fa182a4c2a0628add60aa633cfe705401bfe5f87e9e19038124135ffffffff", + "cborBytes": [ + 216, 124, 159, 191, 27, 160, 182, 230, 69, 74, 10, 23, 37, 68, 209, 55, 230, 77, 27, 163, 172, 186, 104, 62, 110, + 127, 87, 76, 195, 172, 82, 201, 117, 95, 94, 204, 241, 18, 226, 251, 65, 19, 27, 68, 100, 173, 77, 60, 94, 135, + 150, 67, 140, 5, 233, 69, 6, 51, 186, 145, 210, 255, 191, 27, 9, 106, 132, 103, 86, 113, 145, 69, 65, 190, 27, 32, + 7, 111, 152, 4, 153, 182, 140, 69, 208, 9, 253, 208, 164, 27, 64, 74, 173, 220, 29, 212, 243, 9, 72, 212, 167, + 138, 131, 167, 66, 42, 228, 27, 83, 191, 212, 120, 92, 119, 42, 84, 27, 79, 20, 33, 34, 140, 214, 7, 244, 27, 157, + 80, 118, 111, 47, 225, 14, 200, 69, 241, 131, 165, 137, 118, 27, 237, 102, 82, 14, 198, 16, 190, 76, 27, 37, 223, + 241, 147, 253, 38, 219, 104, 255, 216, 102, 159, 27, 89, 197, 130, 144, 103, 200, 179, 203, 159, 27, 99, 40, 99, + 14, 85, 172, 77, 64, 191, 76, 237, 15, 170, 65, 134, 193, 133, 226, 62, 94, 128, 46, 73, 213, 133, 229, 158, 207, + 144, 221, 22, 208, 255, 159, 27, 233, 120, 98, 15, 165, 114, 133, 217, 27, 128, 14, 238, 254, 43, 37, 248, 142, + 27, 138, 60, 106, 99, 101, 215, 193, 167, 27, 63, 83, 42, 85, 249, 47, 74, 244, 27, 74, 206, 16, 95, 6, 10, 131, + 8, 255, 216, 102, 159, 27, 79, 103, 190, 97, 245, 249, 88, 203, 159, 27, 80, 173, 239, 161, 205, 228, 235, 187, + 27, 179, 193, 144, 220, 80, 76, 29, 108, 27, 103, 254, 50, 214, 30, 87, 236, 114, 27, 194, 166, 162, 128, 102, + 233, 233, 13, 255, 255, 159, 76, 204, 80, 198, 37, 160, 99, 117, 154, 114, 250, 24, 42, 76, 42, 6, 40, 173, 214, + 10, 166, 51, 207, 231, 5, 64, 27, 254, 95, 135, 233, 225, 144, 56, 18, 65, 53, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 908, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7227854622514424973" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17170208592979539654" + } + }, + { + "_tag": "ByteArray", + "bytearray": "90" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8002369372921143862" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f8fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3888467510146576731" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16260142847431270226" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59fd87d9fd8669f1b644e7f7bff232c8d80ff0c9f1bee48d5be5fe7b6c641901b6f0e208bda6e223642f8fd1b35f69c9936ef315bffd9050b801be1a7a1c5123fdf52ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 216, 125, 159, 216, 102, 159, 27, 100, 78, 127, + 123, 255, 35, 44, 141, 128, 255, 12, 159, 27, 238, 72, 213, 190, 95, 231, 182, 198, 65, 144, 27, 111, 14, 32, 139, + 218, 110, 34, 54, 66, 248, 253, 27, 53, 246, 156, 153, 54, 239, 49, 91, 255, 217, 5, 11, 128, 27, 225, 167, 161, + 197, 18, 63, 223, 82, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 909, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11464882822226577739" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10013666975877348870" + } + }, + { + "_tag": "ByteArray", + "bytearray": "25a310ad54bd5bd94c04" + } + ] + }, + "cborHex": "d8669f1b9f1b722eea4b094b9f1b8af7b10f543abe064a25a310ad54bd5bd94c04ffff", + "cborBytes": [ + 216, 102, 159, 27, 159, 27, 114, 46, 234, 75, 9, 75, 159, 27, 138, 247, 177, 15, 84, 58, 190, 6, 74, 37, 163, 16, + 173, 84, 189, 91, 217, 76, 4, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 910, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17686933449634270457" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9598664331865377280" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "85ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12169603630472301535" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7194422858823603133" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ab7f0ba10ce8402502" + } + ] + }, + "cborHex": "d8669f1bf5749c43576cccf99f9f1b85354e5a9b0c4a00ff80bf4285ba1ba8e31e064b9b0bdfff9fa01b63d7b978f02193bdff49ab7f0ba10ce8402502ffff", + "cborBytes": [ + 216, 102, 159, 27, 245, 116, 156, 67, 87, 108, 204, 249, 159, 159, 27, 133, 53, 78, 90, 155, 12, 74, 0, 255, 128, + 191, 66, 133, 186, 27, 168, 227, 30, 6, 75, 155, 11, 223, 255, 159, 160, 27, 99, 215, 185, 120, 240, 33, 147, 189, + 255, 73, 171, 127, 11, 161, 12, 232, 64, 37, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 911, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8151063535151042615" + }, + "fields": [] + } + ] + }, + "cborHex": "d9050b9fd8669f1b711e65195a51503780ffff", + "cborBytes": [217, 5, 11, 159, 216, 102, 159, 27, 113, 30, 101, 25, 90, 81, 80, 55, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 912, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5675084068707382522" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0352fe5d4104fb5a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4357192037062830879" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3972083902421268850" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b4ec1f2e481c834fa9fbf05480352fe5d4104fb5a1b3c77db12834a6b1f1b371fad43a5ddf972ffffff", + "cborBytes": [ + 216, 102, 159, 27, 78, 193, 242, 228, 129, 200, 52, 250, 159, 191, 5, 72, 3, 82, 254, 93, 65, 4, 251, 90, 27, 60, + 119, 219, 18, 131, 74, 107, 31, 27, 55, 31, 173, 67, 165, 221, 249, 114, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 913, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4915131021305782214" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17613397702871538666" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14364012751819106483" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1eb81cdf0b749722360e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16557781500969358868" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13812373186286750075" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1391496200262268147" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12105892434314242770" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4064672047055913225" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "759e599688ae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6395570100833542707" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd1642" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18291913584012441100" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10904598741817607290" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17911020194654217637" + } + } + ] + }, + "cborHex": "d87d9fbf1b44360d9f556f1fc61bf46f5be41756dbea1bc757397e755be8b34a1eb81cdf0b749722360e1be5c90e8c59d016141bbfaf683b59c0897bffbf1b134f966bf2f034f31ba800c5077c63aad21b38689db0f53a410946759e599688ae1b58c1a11f1c4ae23343fd16421bfdd9ee7d6d34360c1b9754eac7d835c47aff1bf890b9f86b3665a5ff", + "cborBytes": [ + 216, 125, 159, 191, 27, 68, 54, 13, 159, 85, 111, 31, 198, 27, 244, 111, 91, 228, 23, 86, 219, 234, 27, 199, 87, + 57, 126, 117, 91, 232, 179, 74, 30, 184, 28, 223, 11, 116, 151, 34, 54, 14, 27, 229, 201, 14, 140, 89, 208, 22, + 20, 27, 191, 175, 104, 59, 89, 192, 137, 123, 255, 191, 27, 19, 79, 150, 107, 242, 240, 52, 243, 27, 168, 0, 197, + 7, 124, 99, 170, 210, 27, 56, 104, 157, 176, 245, 58, 65, 9, 70, 117, 158, 89, 150, 136, 174, 27, 88, 193, 161, + 31, 28, 74, 226, 51, 67, 253, 22, 66, 27, 253, 217, 238, 125, 109, 52, 54, 12, 27, 151, 84, 234, 199, 216, 53, + 196, 122, 255, 27, 248, 144, 185, 248, 107, 54, 101, 165, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 914, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2dbe65036b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad050f0604a9fe8e4af8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4504018040239016757" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c40c40" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bafefc0276b6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca02fc86103cffd7fe07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f95dee30026a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04e5fdfd48f80efb04f90707" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14834351086178230454" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2f092857eece0f" + }, + { + "_tag": "ByteArray", + "bytearray": "0018f3" + }, + { + "_tag": "ByteArray", + "bytearray": "703f62e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4632610023248500155" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b086" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + }, + "cborHex": "d905079f9fbf452dbe65036b417b4aad050f0604a9fe8e4af81b3e817c8b5665cb3543c40c4046bafefc0276b641ef4aca02fc86103cffd7fe0746f95dee30026a4c04e5fdfd48f80efb04f90707ffd8669f1bfffffffffffffff99f1bcdde33b7951560b6472f092857eece0f430018f344703f62e31b404a564582a415bbffffff42b08605ff", + "cborBytes": [ + 217, 5, 7, 159, 159, 191, 69, 45, 190, 101, 3, 107, 65, 123, 74, 173, 5, 15, 6, 4, 169, 254, 142, 74, 248, 27, 62, + 129, 124, 139, 86, 101, 203, 53, 67, 196, 12, 64, 70, 186, 254, 252, 2, 118, 182, 65, 239, 74, 202, 2, 252, 134, + 16, 60, 255, 215, 254, 7, 70, 249, 93, 238, 48, 2, 106, 76, 4, 229, 253, 253, 72, 248, 14, 251, 4, 249, 7, 7, 255, + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 27, 205, 222, 51, 183, 149, 21, 96, 182, 71, 47, + 9, 40, 87, 238, 206, 15, 67, 0, 24, 243, 68, 112, 63, 98, 227, 27, 64, 74, 86, 69, 130, 164, 21, 187, 255, 255, + 255, 66, 176, 134, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 915, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2125093161031214948" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10187165283606490662" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9681336808863351286" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6d9df39146" + }, + { + "_tag": "ByteArray", + "bytearray": "3310" + } + ] + }, + "cborHex": "d8669f1b1d7dd8f881e0a7649fbf1b8d6014d9fd8e6e261b865b0488a336c1f6ff456d9df39146423310ffff", + "cborBytes": [ + 216, 102, 159, 27, 29, 125, 216, 248, 129, 224, 167, 100, 159, 191, 27, 141, 96, 20, 217, 253, 142, 110, 38, 27, + 134, 91, 4, 136, 163, 54, 193, 246, 255, 69, 109, 157, 243, 145, 70, 66, 51, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 916, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5097397429857059734" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10068539766784444491" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8244540909299040930" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8609e09287de0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17332423736961326178" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6648" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74d1e8f934" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ff832724ffb553d2bba388d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b53cfbe7ffd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9443733190c8a34a93" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9177436159571662895" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b46bd97f48d9e83969fd8669f1b8bbaa3928e14c84b9f1b726a7e468af202a247c8609e09287de01bf089238ec220dc62ffffbf41064266484574d1e8f9344c6ff832724ffb553d2bba388d4178467b53cfbe7ffd499443733190c8a34a931b7f5ccd902018182fffffff", + "cborBytes": [ + 216, 102, 159, 27, 70, 189, 151, 244, 141, 158, 131, 150, 159, 216, 102, 159, 27, 139, 186, 163, 146, 142, 20, + 200, 75, 159, 27, 114, 106, 126, 70, 138, 242, 2, 162, 71, 200, 96, 158, 9, 40, 125, 224, 27, 240, 137, 35, 142, + 194, 32, 220, 98, 255, 255, 191, 65, 6, 66, 102, 72, 69, 116, 209, 232, 249, 52, 76, 111, 248, 50, 114, 79, 251, + 85, 61, 43, 186, 56, 141, 65, 120, 70, 123, 83, 207, 190, 127, 253, 73, 148, 67, 115, 49, 144, 200, 163, 74, 147, + 27, 127, 92, 205, 144, 32, 24, 24, 47, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 917, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16758772977094941183" + }, + "fields": [] + }, + "cborHex": "d8669f1be8931f3b1b28d9ff80ff", + "cborBytes": [216, 102, 159, 27, 232, 147, 31, 59, 27, 40, 217, 255, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 918, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [] + }, + "cborHex": "d9050280", + "cborBytes": [217, 5, 2, 128], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 919, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "162039992430118797" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10478189439493499580" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18207479532070872428" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12843369894960425471" + } + }, + { + "_tag": "ByteArray", + "bytearray": "70d827fe" + }, + { + "_tag": "ByteArray", + "bytearray": "37a4ac" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14885832036656259331" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16304407228310612133" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4604428443414463154" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1024550782023415747" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f7ba19f7274a0eedb43b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17744775846489217048" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13234356841009779356" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7673608151391432368" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14959607979661443359" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13783033971218544939" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2047866040916227086" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f313ae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3451137419197677331" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ece25461b68" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4435271088142735594" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1307257004982373029" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5144301635227982988" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "305953225672391308" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10301745495975819051" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16037297180678891861" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50ddb5670b28d7500a730678" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "463788032981454978" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9573167345471408592" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4601584802252000688" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19189906822061841" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8110090924248561390" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "218e32fa28" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14048685505342918158" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40ee696496e047" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14554852037977760286" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1358845642316778723" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4938519745753448535" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3172201290251668767" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8127401581922534825" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8757176485338478099" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4839618339407793756" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9de09fc5" + }, + { + "_tag": "ByteArray", + "bytearray": "efa7a209463d4d07f5d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14386018271724901715" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d6b7a3e9c368a2c0bf691af" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6006750438018146883" + } + } + ] + } + ] + }, + "cborHex": "d8799f9f9f1b023fae83bc34478d1b916a01c786426abcffff9fd8669f1bfcadf62ac447a56c9f1bb23cd0df540fe9ff4470d827fe4337a4acffff9f1bce95195e6b06a1031be244e3fd5cc3e8a51b3fe63746236c82b21b0e37ef8208dab7c34af7ba19f7274a0eedb43bff1bf6421b9dd4ebd81880ff9f9f1bb7a9e16da326129c1b6a7e21f5093a6eb0ff9f1bcf9b3432b6d1c11f1bbf472c5f059f792bffffd87d9fbf1b1c6b7b506c65b40e43f313ae1b2fe4e732a655ff13464ece25461b681b3d8d3f8e3b4ed8ea1b12244f51e41d8aa51b47643b14e1399c8c1b043ef6d676167a8c1b8ef726f2961e772b41c51bde8fecd10bbd29554c50ddb5670b28d7500a730678ffbf1b066fb4c23cefd0821b84dab8fada3149d01b3fdc1cff56110db01b00442d1e5b66df111b708cd4b9fbf476ee45218e32fa281bc2f6f508b324ce0e4740ee696496e0471bc9fd38d04a08e21e1b12db96e986e10ce3ff1b4489258b19e30057d8669f1b2c05ec44357c8d1f80ffffd8669f1b70ca54ad8d70c5a99fd8669f1b7987bd9dac00f6139f1b4329c73d00de0e5c449de09fc54aefa7a209463d4d07f5d81bc7a56765d27115534c0d6b7a3e9c368a2c0bf691afffffa01b535c43b2c07e6243ffffff", + "cborBytes": [ + 216, 121, 159, 159, 159, 27, 2, 63, 174, 131, 188, 52, 71, 141, 27, 145, 106, 1, 199, 134, 66, 106, 188, 255, 255, + 159, 216, 102, 159, 27, 252, 173, 246, 42, 196, 71, 165, 108, 159, 27, 178, 60, 208, 223, 84, 15, 233, 255, 68, + 112, 216, 39, 254, 67, 55, 164, 172, 255, 255, 159, 27, 206, 149, 25, 94, 107, 6, 161, 3, 27, 226, 68, 227, 253, + 92, 195, 232, 165, 27, 63, 230, 55, 70, 35, 108, 130, 178, 27, 14, 55, 239, 130, 8, 218, 183, 195, 74, 247, 186, + 25, 247, 39, 74, 14, 237, 180, 59, 255, 27, 246, 66, 27, 157, 212, 235, 216, 24, 128, 255, 159, 159, 27, 183, 169, + 225, 109, 163, 38, 18, 156, 27, 106, 126, 33, 245, 9, 58, 110, 176, 255, 159, 27, 207, 155, 52, 50, 182, 209, 193, + 31, 27, 191, 71, 44, 95, 5, 159, 121, 43, 255, 255, 216, 125, 159, 191, 27, 28, 107, 123, 80, 108, 101, 180, 14, + 67, 243, 19, 174, 27, 47, 228, 231, 50, 166, 85, 255, 19, 70, 78, 206, 37, 70, 27, 104, 27, 61, 141, 63, 142, 59, + 78, 216, 234, 27, 18, 36, 79, 81, 228, 29, 138, 165, 27, 71, 100, 59, 20, 225, 57, 156, 140, 27, 4, 62, 246, 214, + 118, 22, 122, 140, 27, 142, 247, 38, 242, 150, 30, 119, 43, 65, 197, 27, 222, 143, 236, 209, 11, 189, 41, 85, 76, + 80, 221, 181, 103, 11, 40, 215, 80, 10, 115, 6, 120, 255, 191, 27, 6, 111, 180, 194, 60, 239, 208, 130, 27, 132, + 218, 184, 250, 218, 49, 73, 208, 27, 63, 220, 28, 255, 86, 17, 13, 176, 27, 0, 68, 45, 30, 91, 102, 223, 17, 27, + 112, 140, 212, 185, 251, 244, 118, 238, 69, 33, 142, 50, 250, 40, 27, 194, 246, 245, 8, 179, 36, 206, 14, 71, 64, + 238, 105, 100, 150, 224, 71, 27, 201, 253, 56, 208, 74, 8, 226, 30, 27, 18, 219, 150, 233, 134, 225, 12, 227, 255, + 27, 68, 137, 37, 139, 25, 227, 0, 87, 216, 102, 159, 27, 44, 5, 236, 68, 53, 124, 141, 31, 128, 255, 255, 216, + 102, 159, 27, 112, 202, 84, 173, 141, 112, 197, 169, 159, 216, 102, 159, 27, 121, 135, 189, 157, 172, 0, 246, 19, + 159, 27, 67, 41, 199, 61, 0, 222, 14, 92, 68, 157, 224, 159, 197, 74, 239, 167, 162, 9, 70, 61, 77, 7, 245, 216, + 27, 199, 165, 103, 101, 210, 113, 21, 83, 76, 13, 107, 122, 62, 156, 54, 138, 44, 11, 246, 145, 175, 255, 255, + 160, 27, 83, 92, 67, 178, 192, 126, 98, 67, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 920, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12949591195906442514" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "452776468181376257" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5178917e6ef0209d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "db731b032bb3" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8987d67778" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83e165fa93f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9cd6e7ab739dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba87ba08636b7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07e582fb" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "10b0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5304955109769994539" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17522711469366471628" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14926792869164047806" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62a0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10325609519688680208" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2998264368499378326" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d2407fe37b31c7b3811" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15ff76daf1d70f82" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13228808728788583395" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2fbdf6b260ff392d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21311e1fbed6b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80f39eff32ca0923" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9060494259932021992" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4f73628a19883c1232d4d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17627261125102722430" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15124829597614450369" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bb3b63095328785129fbf1b064895cc849b5d01485178917e6ef0209dff9f46db731b032bb3bf458987d677784683e165fa93f647a9cd6e7ab739dc411347ba87ba08636b7d4407e582fbffff4210b09fd8669f1b499efc90c33be12b80ff1bf32d2d3df9406bcc9f1bcf269f076a5b5dbe4262a01b8f4bef26966f83101b299bf98ec31dc8964a5d2407fe37b31c7b3811ffbf4815ff76daf1d70f821bb7962b731907c3e3482fbdf6b260ff392d4721311e1fbed6b94880f39eff32ca09231b7dbd57865cb6c4e84bf4f73628a19883c1232d4d1bf4a09c999cccdd7effff9f9f1bd1e630625e1fa6c1ff80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 179, 182, 48, 149, 50, 135, 133, 18, 159, 191, 27, 6, 72, 149, 204, 132, 155, 93, 1, 72, 81, + 120, 145, 126, 110, 240, 32, 157, 255, 159, 70, 219, 115, 27, 3, 43, 179, 191, 69, 137, 135, 214, 119, 120, 70, + 131, 225, 101, 250, 147, 246, 71, 169, 205, 110, 122, 183, 57, 220, 65, 19, 71, 186, 135, 186, 8, 99, 107, 125, + 68, 7, 229, 130, 251, 255, 255, 66, 16, 176, 159, 216, 102, 159, 27, 73, 158, 252, 144, 195, 59, 225, 43, 128, + 255, 27, 243, 45, 45, 61, 249, 64, 107, 204, 159, 27, 207, 38, 159, 7, 106, 91, 93, 190, 66, 98, 160, 27, 143, 75, + 239, 38, 150, 111, 131, 16, 27, 41, 155, 249, 142, 195, 29, 200, 150, 74, 93, 36, 7, 254, 55, 179, 28, 123, 56, + 17, 255, 191, 72, 21, 255, 118, 218, 241, 215, 15, 130, 27, 183, 150, 43, 115, 25, 7, 195, 227, 72, 47, 189, 246, + 178, 96, 255, 57, 45, 71, 33, 49, 30, 31, 190, 214, 185, 72, 128, 243, 158, 255, 50, 202, 9, 35, 27, 125, 189, 87, + 134, 92, 182, 196, 232, 75, 244, 247, 54, 40, 161, 152, 131, 193, 35, 45, 77, 27, 244, 160, 156, 153, 156, 204, + 221, 126, 255, 255, 159, 159, 27, 209, 230, 48, 98, 94, 31, 166, 193, 255, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 921, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4161396567664487189" + }, + "fields": [] + }, + "cborHex": "d8669f1b39c04021592beb1580ff", + "cborBytes": [216, 102, 159, 27, 57, 192, 64, 33, 89, 43, 235, 21, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 922, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "98b7dda8fcbbfeceeba009" + }, + { + "_tag": "ByteArray", + "bytearray": "3603053e63" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9fd8669f1bfffffffffffffff79f4b98b7dda8fcbbfeceeba009453603053e63ffff1bfffffffffffffff4d8669f1bfffffffffffffff880ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 247, 159, 75, 152, 183, 221, 168, 252, 187, 254, 206, 235, 160, 9, 69, 54, 3, 5, 62, 99, 255, 255, 27, 255, + 255, 255, 255, 255, 255, 255, 244, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 923, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4825422842978167387" + }, + "fields": [] + }, + "cborHex": "d8669f1b42f758826ec4ea5b80ff", + "cborBytes": [216, 102, 159, 27, 66, 247, 88, 130, 110, 196, 234, 91, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 924, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13087916996439308238" + } + } + ] + }, + "cborHex": "d905069fa01bb5a19f2a5e8ff7ceff", + "cborBytes": [217, 5, 6, 159, 160, 27, 181, 161, 159, 42, 94, 143, 247, 206, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 925, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6846115261916632040" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "52" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6822979382580445667" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8470430662028247129" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13245619942808115509" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00025e7a" + }, + { + "_tag": "ByteArray", + "bytearray": "00dad6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "271d86f10361" + }, + { + "_tag": "ByteArray", + "bytearray": "56240ed6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12715977542296434512" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8899d503" + } + ] + }, + "cborHex": "d8669f1b5f02498ef5ebd3e89f41521b5eb01799488581e39fd8669f1b758d03cf10c540599f1bb7d1e528e0e859354400025e7a4300dad6ffff46271d86f103614456240ed6ff1bb0783a33dc6c7750448899d503ffff", + "cborBytes": [ + 216, 102, 159, 27, 95, 2, 73, 142, 245, 235, 211, 232, 159, 65, 82, 27, 94, 176, 23, 153, 72, 133, 129, 227, 159, + 216, 102, 159, 27, 117, 141, 3, 207, 16, 197, 64, 89, 159, 27, 183, 209, 229, 40, 224, 232, 89, 53, 68, 0, 2, 94, + 122, 67, 0, 218, 214, 255, 255, 70, 39, 29, 134, 241, 3, 97, 68, 86, 36, 14, 214, 255, 27, 176, 120, 58, 51, 220, + 108, 119, 80, 68, 136, 153, 213, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 926, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16817388786414211452" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11892292802334159602" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6155671469122080995" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3357387924360599021" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15568794231555015972" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1be9635dffb7db517c9fd8669f1ba509e94bb00ff2f29fd8669f1b556d5696470750e39f1b2e97d6876cb315ed1bd80f77ddd8fcc524ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 233, 99, 93, 255, 183, 219, 81, 124, 159, 216, 102, 159, 27, 165, 9, 233, 75, 176, 15, 242, + 242, 159, 216, 102, 159, 27, 85, 109, 86, 150, 71, 7, 80, 227, 159, 27, 46, 151, 214, 135, 108, 179, 21, 237, 27, + 216, 15, 119, 221, 216, 252, 197, 36, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 927, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13115936586582639837" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4638081527674940741" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6964738168749926331" + } + }, + { + "_tag": "ByteArray", + "bytearray": "98" + }, + { + "_tag": "ByteArray", + "bytearray": "963d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7683304943407468094" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9154067053540817038" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1079921660458088938" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a9bc9bfb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17141755100049844139" + } + }, + { + "_tag": "ByteArray", + "bytearray": "243a7bfc35792ffb" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12217880021176177088" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4884754816891641632" + } + } + ] + }, + "cborHex": "d8669f1bb6052ad593cec4dd9fd8669f1b405dc693685dad459f9f1b60a7b876b5f1a7bb419842963dff1b6aa095235cce0e3ed8669f1b7f09c77c2068388e9f1b0efca7074cdab9ea44a9bc9bfb1bede3bf714d3627ab48243a7bfc35792ffbffffffff801ba98ea1256a8c51c01b43ca22a01bb45f20ffff", + "cborBytes": [ + 216, 102, 159, 27, 182, 5, 42, 213, 147, 206, 196, 221, 159, 216, 102, 159, 27, 64, 93, 198, 147, 104, 93, 173, + 69, 159, 159, 27, 96, 167, 184, 118, 181, 241, 167, 187, 65, 152, 66, 150, 61, 255, 27, 106, 160, 149, 35, 92, + 206, 14, 62, 216, 102, 159, 27, 127, 9, 199, 124, 32, 104, 56, 142, 159, 27, 14, 252, 167, 7, 76, 218, 185, 234, + 68, 169, 188, 155, 251, 27, 237, 227, 191, 113, 77, 54, 39, 171, 72, 36, 58, 123, 252, 53, 121, 47, 251, 255, 255, + 255, 255, 128, 27, 169, 142, 161, 37, 106, 140, 81, 192, 27, 67, 202, 34, 160, 27, 180, 95, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 928, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "437b624067f4" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d0b4d1f3145c941fb46379" + }, + { + "_tag": "ByteArray", + "bytearray": "6efa3f8206fa9dd6b6b760a1" + }, + { + "_tag": "ByteArray", + "bytearray": "ae0e1f7a1318a7573e" + } + ] + }, + "cborHex": "d905069f9f46437b624067f4ff1bfffffffffffffff14bd0b4d1f3145c941fb463794c6efa3f8206fa9dd6b6b760a149ae0e1f7a1318a7573eff", + "cborBytes": [ + 217, 5, 6, 159, 159, 70, 67, 123, 98, 64, 103, 244, 255, 27, 255, 255, 255, 255, 255, 255, 255, 241, 75, 208, 180, + 209, 243, 20, 92, 148, 31, 180, 99, 121, 76, 110, 250, 63, 130, 6, 250, 157, 214, 182, 183, 96, 161, 73, 174, 14, + 31, 122, 19, 24, 167, 87, 62, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 929, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87a9fa0ff", + "cborBytes": [216, 122, 159, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 930, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7186191813116498124" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7487196803907687638" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17878531778882894015" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3414154675372301947" + } + }, + { + "_tag": "ByteArray", + "bytearray": "596806" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12971526740785865167" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bdf7" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "168a71319d6cb921e349" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "912810307372078884" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2878" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2661160766281480375" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2aa7aed02c4cad96a6f2ed19" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5be3c620" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56a3a1815b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3971687034252925974" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df56e9e5459b6a9c65" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f51506" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3b2a35079e1a2883096173c" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "06" + } + ] + }, + "cborHex": "d8669f1b63ba7b6144a110cc9f1b67e7ddd3045b94d61bffffffffffffffecd8669f1bfffffffffffffff19fd8669f1bf81d4deda9d8f8bf9f1b2f61839699ce1e7b435968061bb4041ed83b05a1cfffff42bdf7ffffbf4a168a71319d6cb921e3491b0caaf423663a57244228781b24ee579e1469f8b74c2aa7aed02c4cad96a6f2ed19445be3c6204556a3a1815b1b371e445093ab9c1649df56e9e5459b6a9c65416543f515064cf3b2a35079e1a2883096173cff4106ffff", + "cborBytes": [ + 216, 102, 159, 27, 99, 186, 123, 97, 68, 161, 16, 204, 159, 27, 103, 231, 221, 211, 4, 91, 148, 214, 27, 255, 255, + 255, 255, 255, 255, 255, 236, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 216, 102, 159, 27, + 248, 29, 77, 237, 169, 216, 248, 191, 159, 27, 47, 97, 131, 150, 153, 206, 30, 123, 67, 89, 104, 6, 27, 180, 4, + 30, 216, 59, 5, 161, 207, 255, 255, 66, 189, 247, 255, 255, 191, 74, 22, 138, 113, 49, 157, 108, 185, 33, 227, 73, + 27, 12, 170, 244, 35, 102, 58, 87, 36, 66, 40, 120, 27, 36, 238, 87, 158, 20, 105, 248, 183, 76, 42, 167, 174, + 208, 44, 76, 173, 150, 166, 242, 237, 25, 68, 91, 227, 198, 32, 69, 86, 163, 161, 129, 91, 27, 55, 30, 68, 80, + 147, 171, 156, 22, 73, 223, 86, 233, 229, 69, 155, 106, 156, 101, 65, 101, 67, 245, 21, 6, 76, 243, 178, 163, 80, + 121, 225, 162, 136, 48, 150, 23, 60, 255, 65, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 931, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4089374932356871791" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b17e7368" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6568968443309590804" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acbe9778" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11406053317123780895" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13961761832334723392" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11487112691177570525" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1718036293912847139" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13956242809196315959" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1821684324815295294" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15474428611151326792" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f19bfe37" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7316347245857326823" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14468054875956297022" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5552134264812269316" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17512332798696166049" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13344509572252621674" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f524cd13" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa22ffac08de" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14326805237778254147" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2181850296298291551" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17961041779580052979" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6cf08a2b804da3a9af6985" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18393240290191255975" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb3de7846569dd29e0f3e3" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905019fbf1b38c060d5a484b66f44b17e73681b5b29a9fecc38091444acbe97781b9e4a710f6054311f1bc1c22469f6eb09401b9f6a6c219c8540dd1b17d7b0e821e763231bc1ae88e4413f05371b1947ec3de183533e1bd6c036d5b5d0ee4844f19bfe37ff1b6588e30e72bbc6e7d8669f1bc8c8db41303bbd3e9fa0bf1b4d0d24b28768ef041bf3084de566b512a11bb93138c0f3eadb6a44f524cd13ff9f46fa22ffac08deffbf1bc6d3097503fa89431b1e477d48d7f0c15f1bf94270563bd1a5f34b6cf08a2b804da3a9af69851bff41ea97a540a9a74bfb3de7846569dd29e0f3e3ffffffff", + "cborBytes": [ + 217, 5, 1, 159, 191, 27, 56, 192, 96, 213, 164, 132, 182, 111, 68, 177, 126, 115, 104, 27, 91, 41, 169, 254, 204, + 56, 9, 20, 68, 172, 190, 151, 120, 27, 158, 74, 113, 15, 96, 84, 49, 31, 27, 193, 194, 36, 105, 246, 235, 9, 64, + 27, 159, 106, 108, 33, 156, 133, 64, 221, 27, 23, 215, 176, 232, 33, 231, 99, 35, 27, 193, 174, 136, 228, 65, 63, + 5, 55, 27, 25, 71, 236, 61, 225, 131, 83, 62, 27, 214, 192, 54, 213, 181, 208, 238, 72, 68, 241, 155, 254, 55, + 255, 27, 101, 136, 227, 14, 114, 187, 198, 231, 216, 102, 159, 27, 200, 200, 219, 65, 48, 59, 189, 62, 159, 160, + 191, 27, 77, 13, 36, 178, 135, 104, 239, 4, 27, 243, 8, 77, 229, 102, 181, 18, 161, 27, 185, 49, 56, 192, 243, + 234, 219, 106, 68, 245, 36, 205, 19, 255, 159, 70, 250, 34, 255, 172, 8, 222, 255, 191, 27, 198, 211, 9, 117, 3, + 250, 137, 67, 27, 30, 71, 125, 72, 215, 240, 193, 95, 27, 249, 66, 112, 86, 59, 209, 165, 243, 75, 108, 240, 138, + 43, 128, 77, 163, 169, 175, 105, 133, 27, 255, 65, 234, 151, 165, 64, 169, 167, 75, 251, 61, 231, 132, 101, 105, + 221, 41, 224, 243, 227, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 932, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "040102b4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4366052717254541143" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "180e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bebccb5716a7f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a82003cf8de136ce9730" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cded29e97454eabbe82a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fc217" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8100306619925708023" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8353651726863802260" + } + } + ] + } + ] + }, + "cborHex": "d905039f9f80ffbf44040102b41b3c9755d06295ff5742180e1bfffffffffffffffe47bebccb5716a7f04aa82003cf8de136ce97304acded29e97454eabbe82a435fc217ff9f1b706a11f41c6abcf71b73ee21fc6d0b9f94ffff", + "cborBytes": [ + 217, 5, 3, 159, 159, 128, 255, 191, 68, 4, 1, 2, 180, 27, 60, 151, 85, 208, 98, 149, 255, 87, 66, 24, 14, 27, 255, + 255, 255, 255, 255, 255, 255, 254, 71, 190, 188, 203, 87, 22, 167, 240, 74, 168, 32, 3, 207, 141, 225, 54, 206, + 151, 48, 74, 205, 237, 41, 233, 116, 84, 234, 187, 232, 42, 67, 95, 194, 23, 255, 159, 27, 112, 106, 17, 244, 28, + 106, 188, 247, 27, 115, 238, 33, 252, 109, 11, 159, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 933, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2194665694882288681" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2096703509412569696" + } + } + ] + }, + "cborHex": "d8669f1b1e7504d25831d4299f1b1d18fcbba5d9e260ffff", + "cborBytes": [ + 216, 102, 159, 27, 30, 117, 4, 210, 88, 49, 212, 41, 159, 27, 29, 24, 252, 187, 165, 217, 226, 96, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 934, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "483935860513171795" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f39d921c2cc5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5804086039313537176" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33f2b339baa67cc8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5903392650841739852" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba8fff32a14695a19c901a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6003880877390790839" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10529031244023463248" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7494890266530607732" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8208019423852302173" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc4b8f67368bb86ae49dd6" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "191598909184903809" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c069b886b784668aa5ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8aba4c97c0" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8191816246764959141" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e3c3fb50a7f34d1bcad3c325" + }, + { + "_tag": "ByteArray", + "bytearray": "32b423" + }, + { + "_tag": "ByteArray", + "bytearray": "0a0b46a54f2e9f5d1d3fb7" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7206079228613564698" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17901033548860365961" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e04adb52f6bce7a7e4c487" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "583031914043225098" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3863867588160394227" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15524258819425229102" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18383005584352760868" + } + } + ] + }, + "cborHex": "d8799fbf1b06b74919e3f5e95346f39d921c2cc51b508c41805b1658984833f2b339baa67cc81b51ed1056a312d24c4bba8fff32a14695a19c901a1b535211d91aa380b71b921ea2219901fd501b680332fcdf16f27441b11b71e8be2d94390f5d4bfc4b8f67368bb86ae49dd6ffd8669f1b02a8b23159518a8180ffbf4ac069b886b784668aa5ab458aba4c97c0ff9f9f1b71af2d796db2f5a54ce3c3fb50a7f34d1bcad3c3254332b4234b0a0b46a54f2e9f5d1d3fb7ff9f1b640122e104d5191a1bf86d3f2b402c1c894be04adb52f6bce7a7e4c4871b0817586fd143340affd8669f1b359f37198b7213f380ffd8669f1bd7713f252d10d92e80ffff1bff1d8e2e7f5e5424ff", + "cborBytes": [ + 216, 121, 159, 191, 27, 6, 183, 73, 25, 227, 245, 233, 83, 70, 243, 157, 146, 28, 44, 197, 27, 80, 140, 65, 128, + 91, 22, 88, 152, 72, 51, 242, 179, 57, 186, 166, 124, 200, 27, 81, 237, 16, 86, 163, 18, 210, 76, 75, 186, 143, + 255, 50, 161, 70, 149, 161, 156, 144, 26, 27, 83, 82, 17, 217, 26, 163, 128, 183, 27, 146, 30, 162, 33, 153, 1, + 253, 80, 27, 104, 3, 50, 252, 223, 22, 242, 116, 65, 177, 27, 113, 232, 190, 45, 148, 57, 15, 93, 75, 252, 75, + 143, 103, 54, 139, 184, 106, 228, 157, 214, 255, 216, 102, 159, 27, 2, 168, 178, 49, 89, 81, 138, 129, 128, 255, + 191, 74, 192, 105, 184, 134, 183, 132, 102, 138, 165, 171, 69, 138, 186, 76, 151, 192, 255, 159, 159, 27, 113, + 175, 45, 121, 109, 178, 245, 165, 76, 227, 195, 251, 80, 167, 243, 77, 27, 202, 211, 195, 37, 67, 50, 180, 35, 75, + 10, 11, 70, 165, 79, 46, 159, 93, 29, 63, 183, 255, 159, 27, 100, 1, 34, 225, 4, 213, 25, 26, 27, 248, 109, 63, + 43, 64, 44, 28, 137, 75, 224, 74, 219, 82, 246, 188, 231, 167, 228, 196, 135, 27, 8, 23, 88, 111, 209, 67, 52, 10, + 255, 216, 102, 159, 27, 53, 159, 55, 25, 139, 114, 19, 243, 128, 255, 216, 102, 159, 27, 215, 113, 63, 37, 45, 16, + 217, 46, 128, 255, 255, 27, 255, 29, 142, 46, 127, 94, 84, 36, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 935, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8411940844819812426" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9534564069712397739" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4cf621b2c69e3b7197bd" + } + ] + }, + "cborHex": "d8669f1b74bd37a14715904a9f9f1b845193814f6905abff4a4cf621b2c69e3b7197bdffff", + "cborBytes": [ + 216, 102, 159, 27, 116, 189, 55, 161, 71, 21, 144, 74, 159, 159, 27, 132, 81, 147, 129, 79, 105, 5, 171, 255, 74, + 76, 246, 33, 178, 198, 158, 59, 113, 151, 189, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 936, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2679414127474422699" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "58482146" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9937714516073495427" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8382005299236174656" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "714313796759382705" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17569140283153412616" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4149093306647836416" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15921556504707843727" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3353fde9" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b252f30f3ea46b3ab9f44584821469fd8669f1b89e9dab339cdbb839f1b7452dd68ee69fb40ffffffd8669f1b09e9c09d1200eab19f1bf3d22000925d72081b39948a612ab1f700415cffffbf1bdcf4bb48f66bc68f443353fde9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 37, 47, 48, 243, 234, 70, 179, 171, 159, 68, 88, 72, 33, 70, 159, 216, 102, 159, 27, 137, 233, + 218, 179, 57, 205, 187, 131, 159, 27, 116, 82, 221, 104, 238, 105, 251, 64, 255, 255, 255, 216, 102, 159, 27, 9, + 233, 192, 157, 18, 0, 234, 177, 159, 27, 243, 210, 32, 0, 146, 93, 114, 8, 27, 57, 148, 138, 97, 42, 177, 247, 0, + 65, 92, 255, 255, 191, 27, 220, 244, 187, 72, 246, 107, 198, 143, 68, 51, 83, 253, 233, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 937, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1612577140536360581" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e4a9cc0025b5ad49e84" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1736568097388616988" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58f36df231" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1900796235946225404" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7247651812219299178" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6778350271351351583" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3388197626437557333" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7213777733788964627" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c471c7bbd3228" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13262212697744171033" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2cf6f852d8520b7062f" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6982131221130068584" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d38f781f576d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7845392796044782315" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "335b36c8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10137659793641709209" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14256062173251564768" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13526555899619752475" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2434704840180000821" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13687599792215594436" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3475859517502831017" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11554429478619060357" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9fbf1b1661065d9295be854a3e4a9cc0025b5ad49e841b1819877bdd1fdd1c4558f36df2311b1a60fc1b11f96efc1b6494d4ec6b0c256a1b5e1189a89711e91f1b2f054bca30a1dc551b641c7ca0ef1d1713470c471c7bbd32281bb80cd82eb0b760194ab2cf6f852d8520b7062fffbf1b60e5835a4a9f426846d38f781f576d1b6ce06f2e6ba86aeb44335b36c81b8cb033dee5c61e991bc5d7b503c48af4e01bbbb7faec874cba1b1b21c9cf270bda68351bbdf41f7db2b895c41b303cbbd0b5eab9a9ff1ba05994648f641885ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 191, 27, 22, 97, 6, 93, 146, 149, 190, 133, 74, + 62, 74, 156, 192, 2, 91, 90, 212, 158, 132, 27, 24, 25, 135, 123, 221, 31, 221, 28, 69, 88, 243, 109, 242, 49, 27, + 26, 96, 252, 27, 17, 249, 110, 252, 27, 100, 148, 212, 236, 107, 12, 37, 106, 27, 94, 17, 137, 168, 151, 17, 233, + 31, 27, 47, 5, 75, 202, 48, 161, 220, 85, 27, 100, 28, 124, 160, 239, 29, 23, 19, 71, 12, 71, 28, 123, 189, 50, + 40, 27, 184, 12, 216, 46, 176, 183, 96, 25, 74, 178, 207, 111, 133, 45, 133, 32, 183, 6, 47, 255, 191, 27, 96, + 229, 131, 90, 74, 159, 66, 104, 70, 211, 143, 120, 31, 87, 109, 27, 108, 224, 111, 46, 107, 168, 106, 235, 68, 51, + 91, 54, 200, 27, 140, 176, 51, 222, 229, 198, 30, 153, 27, 197, 215, 181, 3, 196, 138, 244, 224, 27, 187, 183, + 250, 236, 135, 76, 186, 27, 27, 33, 201, 207, 39, 11, 218, 104, 53, 27, 189, 244, 31, 125, 178, 184, 149, 196, 27, + 48, 60, 187, 208, 181, 234, 185, 169, 255, 27, 160, 89, 148, 100, 143, 100, 24, 133, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 938, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "132921655777167331" + }, + "fields": [] + }, + "cborHex": "d8669f1b01d83b8aab8e07e380ff", + "cborBytes": [216, 102, 159, 27, 1, 216, 59, 138, 171, 142, 7, 227, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 939, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16658016798720646448" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18380030905644477098" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa760506fa07f0fd06ecff13" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1be72d2a053e3bdd309f9fd8669f1bff12fcba23a3eaaa9f4cfa760506fa07f0fd06ecff1313ffff9f03ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 231, 45, 42, 5, 62, 59, 221, 48, 159, 159, 216, 102, 159, 27, 255, 18, 252, 186, 35, 163, 234, + 170, 159, 76, 250, 118, 5, 6, 250, 7, 240, 253, 6, 236, 255, 19, 19, 255, 255, 159, 3, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 940, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fe0a84c9901c15c289" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8a798484b8f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "284344679620867563" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3198864775506698938" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13881258385461682765" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a0ec0eac6a64c09" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8321996413964442402" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10954365147238979224" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "602007438039550565" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf9369" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4456052080480663993" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15117092857769540328" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8414598795431243507" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16374660464482326045" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14002765690966294462" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14983758111750230946" + }, + "fields": [] + } + ] + }, + "cborHex": "d87e9fa049fe0a84c9901c15c289bf46b8a798484b8f1b03f231fac692f5ebffd8669f1b2c64a690a49622ba9f1bc0a422f49cdb224d481a0ec0eac6a64c09d8669f1b737daba58c6cdb229f1b9805b9100d1956981b085ac293487d8a6543bf9369ffff1b3dd713c20db0b9b9d8669f1bd1cab3dc3ff2bae89f1b74c6a905a11beef31be33e7aef8f1a161d1bc253d134c312bfbeffffffffd8669f1bcff1009d834013a280ffff", + "cborBytes": [ + 216, 126, 159, 160, 73, 254, 10, 132, 201, 144, 28, 21, 194, 137, 191, 70, 184, 167, 152, 72, 75, 143, 27, 3, 242, + 49, 250, 198, 146, 245, 235, 255, 216, 102, 159, 27, 44, 100, 166, 144, 164, 150, 34, 186, 159, 27, 192, 164, 34, + 244, 156, 219, 34, 77, 72, 26, 14, 192, 234, 198, 166, 76, 9, 216, 102, 159, 27, 115, 125, 171, 165, 140, 108, + 219, 34, 159, 27, 152, 5, 185, 16, 13, 25, 86, 152, 27, 8, 90, 194, 147, 72, 125, 138, 101, 67, 191, 147, 105, + 255, 255, 27, 61, 215, 19, 194, 13, 176, 185, 185, 216, 102, 159, 27, 209, 202, 179, 220, 63, 242, 186, 232, 159, + 27, 116, 198, 169, 5, 161, 27, 238, 243, 27, 227, 62, 122, 239, 143, 26, 22, 29, 27, 194, 83, 209, 52, 195, 18, + 191, 190, 255, 255, 255, 255, 216, 102, 159, 27, 207, 241, 0, 157, 131, 64, 19, 162, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 941, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13811903190332229431" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6986468857050056029" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fac11b26" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "51ac55f6ac5835111658" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "457407000093889293" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6035142992391177001" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11121610727380654930" + } + } + ] + }, + "cborHex": "d8669f1bbfadbcc5e3d647379fd8669f1b60f4ec68dacc455d9f44fac11b269f4a51ac55f6ac58351116581b0659093e3e5f930dffffff1b53c12293762a03291b9a57e6081fb29b52ffff", + "cborBytes": [ + 216, 102, 159, 27, 191, 173, 188, 197, 227, 214, 71, 55, 159, 216, 102, 159, 27, 96, 244, 236, 104, 218, 204, 69, + 93, 159, 68, 250, 193, 27, 38, 159, 74, 81, 172, 85, 246, 172, 88, 53, 17, 22, 88, 27, 6, 89, 9, 62, 62, 95, 147, + 13, 255, 255, 255, 27, 83, 193, 34, 147, 118, 42, 3, 41, 27, 154, 87, 230, 8, 31, 178, 155, 82, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 942, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "66b0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a81581f7d000f435a3231305" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0854ee3c1fa6" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2719098811409792981" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f1542" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "335595319441560696" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "55de" + }, + { + "_tag": "ByteArray", + "bytearray": "fc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7466391200661834129" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f4266b0bf4ca81581f7d000f435a3231305460854ee3c1fa6ffbf1b25bc2df66b447fd5436f1542ff41a6d8669f1b04a8462a3b9914789f4255de41fcd8669f1b679df33d058d099180ff80ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 66, 102, 176, 191, 76, 168, 21, 129, 247, 208, 0, + 244, 53, 163, 35, 19, 5, 70, 8, 84, 238, 60, 31, 166, 255, 191, 27, 37, 188, 45, 246, 107, 68, 127, 213, 67, 111, + 21, 66, 255, 65, 166, 216, 102, 159, 27, 4, 168, 70, 42, 59, 153, 20, 120, 159, 66, 85, 222, 65, 252, 216, 102, + 159, 27, 103, 157, 243, 61, 5, 141, 9, 145, 128, 255, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 943, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15670732059770155175" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8422" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "280cd645de0129fe8c2665de" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ebf7b1458ff6f1aed66ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15522399331164953328" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "222d7a406918a3f209eed2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14295948113553264203" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f20d7d620ffc1da50181" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17897165352124646127" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13416925715468556104" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bafce4b4362ac527a087e9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8012330941222658782" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "54a43a4a0c9f871a253bf5" + }, + { + "_tag": "ByteArray", + "bytearray": "2c27" + }, + { + "_tag": "ByteArray", + "bytearray": "e72741e1c4ea" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "75df3637168a20" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9517277730137832966" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bd9799fc800ecf0a79f4284229f4c280cd645de0129fe8c2665debf4b1ebf7b1458ff6f1aed66ce1bd76aa3f353d91af0423e1d4b222d7a406918a3f209eed241ac1bc6656910ebc20e4b4af20d7d620ffc1da501811bf85f811083d182efff1bba327eda304e9748ff9f4bbafce4b4362ac527a087e9d8669f1b6f31848a3672a2de9f4b54a43a4a0c9f871a253bf5422c2746e72741e1c4eaffffbf4775df3637168a201b841429abbd99fe06ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 217, 121, 159, 200, 0, 236, 240, 167, 159, 66, 132, 34, 159, 76, 40, 12, 214, 69, 222, 1, 41, + 254, 140, 38, 101, 222, 191, 75, 30, 191, 123, 20, 88, 255, 111, 26, 237, 102, 206, 27, 215, 106, 163, 243, 83, + 217, 26, 240, 66, 62, 29, 75, 34, 45, 122, 64, 105, 24, 163, 242, 9, 238, 210, 65, 172, 27, 198, 101, 105, 16, + 235, 194, 14, 75, 74, 242, 13, 125, 98, 15, 252, 29, 165, 1, 129, 27, 248, 95, 129, 16, 131, 209, 130, 239, 255, + 27, 186, 50, 126, 218, 48, 78, 151, 72, 255, 159, 75, 186, 252, 228, 180, 54, 42, 197, 39, 160, 135, 233, 216, + 102, 159, 27, 111, 49, 132, 138, 54, 114, 162, 222, 159, 75, 84, 164, 58, 74, 12, 159, 135, 26, 37, 59, 245, 66, + 44, 39, 70, 231, 39, 65, 225, 196, 234, 255, 255, 191, 71, 117, 223, 54, 55, 22, 138, 32, 27, 132, 20, 41, 171, + 189, 153, 254, 6, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 944, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11863248472238931051" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "2f9224a7ee7843042338e2" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8799fa0d8669f1ba4a2b9a19dff3c6b80ff9f804b2f9224a7ee7843042338e280ffff", + "cborBytes": [ + 216, 121, 159, 160, 216, 102, 159, 27, 164, 162, 185, 161, 157, 255, 60, 107, 128, 255, 159, 128, 75, 47, 146, 36, + 167, 238, 120, 67, 4, 35, 56, 226, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 945, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16301557112941604506" + }, + "fields": [] + }, + "cborHex": "d8669f1be23ac3d32aa06e9a80ff", + "cborBytes": [216, 102, 159, 27, 226, 58, 195, 211, 42, 160, 110, 154, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 946, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12025588563268377717" + }, + "fields": [] + }, + "cborHex": "d8669f1ba6e37915809c9c7580ff", + "cborBytes": [216, 102, 159, 27, 166, 227, 121, 21, 128, 156, 156, 117, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 947, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4497155604575251632" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "29e85e" + }, + { + "_tag": "ByteArray", + "bytearray": "83e2d21c2357200fa42919f0" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10261680853355869650" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15123042933564755598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b68da740f1df4491" + }, + { + "_tag": "ByteArray", + "bytearray": "9ce68ff2f30ffb3e297f12" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05252501b146cc1c67af" + }, + { + "_tag": "ByteArray", + "bytearray": "12b77995b04230fcf65cf0" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9a4b7e587c96" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18085226987573895309" + } + } + ] + }, + "cborHex": "d87b9fd8669f1b3e691b32065d6cb09f4329e85e4c83e2d21c2357200fa42919f0ffff1b8e68d05e0eb435d29fd8669f1bd1dfd76c3a1bce8e9f48b68da740f1df44914b9ce68ff2f30ffb3e297f12ffff4a05252501b146cc1c67af4b12b77995b04230fcf65cf0ff469a4b7e587c961bfafba22024a6608dff", + "cborBytes": [ + 216, 123, 159, 216, 102, 159, 27, 62, 105, 27, 50, 6, 93, 108, 176, 159, 67, 41, 232, 94, 76, 131, 226, 210, 28, + 35, 87, 32, 15, 164, 41, 25, 240, 255, 255, 27, 142, 104, 208, 94, 14, 180, 53, 210, 159, 216, 102, 159, 27, 209, + 223, 215, 108, 58, 27, 206, 142, 159, 72, 182, 141, 167, 64, 241, 223, 68, 145, 75, 156, 230, 143, 242, 243, 15, + 251, 62, 41, 127, 18, 255, 255, 74, 5, 37, 37, 1, 177, 70, 204, 28, 103, 175, 75, 18, 183, 121, 149, 176, 66, 48, + 252, 246, 92, 240, 255, 70, 154, 75, 126, 88, 124, 150, 27, 250, 251, 162, 32, 36, 166, 96, 141, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 948, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16626147410333972094" + }, + "fields": [] + }, + "cborHex": "d8669f1be6bbf0fb083cb67e80ff", + "cborBytes": [216, 102, 159, 27, 230, 187, 240, 251, 8, 60, 182, 126, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 949, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6386846591434677009" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8eb5d41b1061b4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11011978325442738605" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1647724518215736787" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16345716982391071772" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "08327e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "139abfa7a21e4683c4" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3059654496805450056" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6943159768334025571" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "099cb4e46ba7fd" + }, + { + "_tag": "ByteArray", + "bytearray": "8edb5018e72382" + }, + { + "_tag": "ByteArray", + "bytearray": "ec31fefc2036dffe60" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14498751521806159023" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12008813371631930503" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "366306" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3f5934b033d5f1b534" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b1a4" + } + ] + } + ] + }, + "cborHex": "d8669f1b58a2a322cd60db119fa0478eb5d41b1061b4d8669f1b98d267f16a50b9ad80ffbf1b16dde4b823f35dd31be2d7a6fdfe7d641c4308327e49139abfa7a21e4683c4ffd8669f1b2a76138dd983f1489fd8669f1b605b0f05da5543639f47099cb4e46ba7fd478edb5018e7238249ec31fefc2036dffe601bc935e9b0ffe90cafffffd8669f1ba6a7e022d6150c879f43366306ffff9f493f5934b033d5f1b534ff42b1a4ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 88, 162, 163, 34, 205, 96, 219, 17, 159, 160, 71, 142, 181, 212, 27, 16, 97, 180, 216, 102, + 159, 27, 152, 210, 103, 241, 106, 80, 185, 173, 128, 255, 191, 27, 22, 221, 228, 184, 35, 243, 93, 211, 27, 226, + 215, 166, 253, 254, 125, 100, 28, 67, 8, 50, 126, 73, 19, 154, 191, 167, 162, 30, 70, 131, 196, 255, 216, 102, + 159, 27, 42, 118, 19, 141, 217, 131, 241, 72, 159, 216, 102, 159, 27, 96, 91, 15, 5, 218, 85, 67, 99, 159, 71, 9, + 156, 180, 228, 107, 167, 253, 71, 142, 219, 80, 24, 231, 35, 130, 73, 236, 49, 254, 252, 32, 54, 223, 254, 96, 27, + 201, 53, 233, 176, 255, 233, 12, 175, 255, 255, 216, 102, 159, 27, 166, 167, 224, 34, 214, 21, 12, 135, 159, 67, + 54, 99, 6, 255, 255, 159, 73, 63, 89, 52, 176, 51, 213, 241, 181, 52, 255, 66, 177, 164, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 950, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3884690829070966835" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "101807ea45662b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e166d17e75d420425198359e" + }, + { + "_tag": "ByteArray", + "bytearray": "2b5a47268db09c" + }, + { + "_tag": "ByteArray", + "bytearray": "8a" + }, + { + "_tag": "ByteArray", + "bytearray": "1f341157" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3b00" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8821774895398760682" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a826a6557907b1054733" + }, + { + "_tag": "ByteArray", + "bytearray": "06083291cdba06" + } + ] + }, + "cborHex": "d8669f1b35e931ba20fe20339fd87c9f47101807ea45662b9f4ce166d17e75d420425198359e472b5a47268db09c418a441f341157ffff423b009f1b7a6d3d8710b3b0eaff4aa826a6557907b10547334706083291cdba06ffff", + "cborBytes": [ + 216, 102, 159, 27, 53, 233, 49, 186, 32, 254, 32, 51, 159, 216, 124, 159, 71, 16, 24, 7, 234, 69, 102, 43, 159, + 76, 225, 102, 209, 126, 117, 212, 32, 66, 81, 152, 53, 158, 71, 43, 90, 71, 38, 141, 176, 156, 65, 138, 68, 31, + 52, 17, 87, 255, 255, 66, 59, 0, 159, 27, 122, 109, 61, 135, 16, 179, 176, 234, 255, 74, 168, 38, 166, 85, 121, 7, + 177, 5, 71, 51, 71, 6, 8, 50, 145, 205, 186, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 951, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9136726033189422341" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10715171856302785538" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "489701005256106369" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2396131381658640361" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6636428817976397234" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5805298166673143907" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9761349975695171405" + } + }, + { + "_tag": "ByteArray", + "bytearray": "db41b6d591b0f2a385" + } + ] + } + ] + } + ] + }, + "cborHex": "d905089fbf0a1b7ecc2beb3251c505134107ffd8669f1b94b3f0082a30c4029f1b06cbc478407121811b2140c4cbdeeddfe91b5c1954d940a60db2d8669f1b50908fecbfc778639f1b87774815c5941f4d49db41b6d591b0f2a385ffffffffff", + "cborBytes": [ + 217, 5, 8, 159, 191, 10, 27, 126, 204, 43, 235, 50, 81, 197, 5, 19, 65, 7, 255, 216, 102, 159, 27, 148, 179, 240, + 8, 42, 48, 196, 2, 159, 27, 6, 203, 196, 120, 64, 113, 33, 129, 27, 33, 64, 196, 203, 222, 237, 223, 233, 27, 92, + 25, 84, 217, 64, 166, 13, 178, 216, 102, 159, 27, 80, 144, 143, 236, 191, 199, 120, 99, 159, 27, 135, 119, 72, 21, + 197, 148, 31, 77, 73, 219, 65, 182, 213, 145, 176, 242, 163, 133, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 952, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1572616289556255784" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1069938480731960145" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3958246930642791654" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3269623103487925026" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4630677236114152741" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5750256871540489406" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72bd408a8cec2e44f4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6008865863485264814" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "321d9c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14402786616908902179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15106241396299651772" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15853572689336443276" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6817368286951439242" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7706129878299567554" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11698238642401925549" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9fd8669f1b15d30e2eeafe54289fa0bf1b0ed92f61238cb3511b36ee849c9a3e6ce61b2d6008e3b0cedb221b4043786970125d251b4fcd0428936b7cbe4972bd408a8cec2e44f41b5363c7aaa00293ae43321d9c1bc7e0fa1e6c9aef231bd1a426837dbddabc1bdc03345d78bba18c1b5e9c285646c0fb8affd8669f1b6af1ac4ba511e5c29f1ba2587e10ba1d59adffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 216, 102, 159, 27, 21, 211, 14, 46, 234, 254, 84, + 40, 159, 160, 191, 27, 14, 217, 47, 97, 35, 140, 179, 81, 27, 54, 238, 132, 156, 154, 62, 108, 230, 27, 45, 96, 8, + 227, 176, 206, 219, 34, 27, 64, 67, 120, 105, 112, 18, 93, 37, 27, 79, 205, 4, 40, 147, 107, 124, 190, 73, 114, + 189, 64, 138, 140, 236, 46, 68, 244, 27, 83, 99, 199, 170, 160, 2, 147, 174, 67, 50, 29, 156, 27, 199, 224, 250, + 30, 108, 154, 239, 35, 27, 209, 164, 38, 131, 125, 189, 218, 188, 27, 220, 3, 52, 93, 120, 187, 161, 140, 27, 94, + 156, 40, 86, 70, 192, 251, 138, 255, 216, 102, 159, 27, 106, 241, 172, 75, 165, 17, 229, 194, 159, 27, 162, 88, + 126, 16, 186, 29, 89, 173, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 953, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7514592589793049510" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14623306308877954814" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13396303731091826158" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10676879355922355015" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "808389c761d70119a2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16766569844902645839" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5349c4f82188b944a608b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18324840435523360007" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10954140672742955382" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b684932257a65bba69f1bcaf06b9c3e662efe031bb9e93b444af7e5eebf1b942be534a774134749808389c761d70119a21be8aed270db32d04f4bb5349c4f82188b944a608b1bfe4ee949751595071b9804ece782809976ffffff", + "cborBytes": [ + 216, 102, 159, 27, 104, 73, 50, 37, 122, 101, 187, 166, 159, 27, 202, 240, 107, 156, 62, 102, 46, 254, 3, 27, 185, + 233, 59, 68, 74, 247, 229, 238, 191, 27, 148, 43, 229, 52, 167, 116, 19, 71, 73, 128, 131, 137, 199, 97, 215, 1, + 25, 162, 27, 232, 174, 210, 112, 219, 50, 208, 79, 75, 181, 52, 156, 79, 130, 24, 139, 148, 74, 96, 139, 27, 254, + 78, 233, 73, 117, 21, 149, 7, 27, 152, 4, 236, 231, 130, 128, 153, 118, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 954, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17170348202141167798" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a77fe9cd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abd21fce37c962d228" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6cdb564ace" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3633757395425461337" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "35cbd7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16726370502731175124" + } + }, + { + "_tag": "ByteArray", + "bytearray": "13" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "df4d793073a76f939830ed2a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8872340779485758340" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5969650118059173025" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "219a6cabd93cb68b371cfd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1806436947206499017" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2507352e862e06ac04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5107977575388672167" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdc740" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "025f2c245893" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a99e99e2436ad4775e0c244a" + }, + { + "_tag": "ByteArray", + "bytearray": "a6895ff1bb1119ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8049102416047845029" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e83" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8299097757592628285" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2577679815700561610" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14531946695038986037" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11045575252219269349" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9afa9aba4c97ef86" + }, + { + "_tag": "ByteArray", + "bytearray": "ee98" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0e39105a" + } + ] + } + ] + }, + "cborHex": "d905019fd8669f1bee4954b7aa6430b680ffbf44a77fe9cd417849abd21fce37c962d228456cdb564aceffd8669f1b326db319424884599f099f4335cbd71be820015a24dd14d4411305ffffff4cdf4d793073a76f939830ed2a9fbf1b7b20e2ee677603841b52d87527604924a14b219a6cabd93cb68b371cfd1b1911c0d523626ac9492507352e862e06ac041b46e32e8aa5b3f0a743bdc74046025f2c245893ff9f4ca99e99e2436ad4775e0c244a48a6895ff1bb1119ed1b6fb428005d452ea5424e831b732c5170a58cac3dff9f1b23c5c2229f86beca1bc9abd8868cb5e7351b9949c42b806010e5489afa9aba4c97ef8642ee98ff440e39105affff", + "cborBytes": [ + 217, 5, 1, 159, 216, 102, 159, 27, 238, 73, 84, 183, 170, 100, 48, 182, 128, 255, 191, 68, 167, 127, 233, 205, 65, + 120, 73, 171, 210, 31, 206, 55, 201, 98, 210, 40, 69, 108, 219, 86, 74, 206, 255, 216, 102, 159, 27, 50, 109, 179, + 25, 66, 72, 132, 89, 159, 9, 159, 67, 53, 203, 215, 27, 232, 32, 1, 90, 36, 221, 20, 212, 65, 19, 5, 255, 255, + 255, 76, 223, 77, 121, 48, 115, 167, 111, 147, 152, 48, 237, 42, 159, 191, 27, 123, 32, 226, 238, 103, 118, 3, + 132, 27, 82, 216, 117, 39, 96, 73, 36, 161, 75, 33, 154, 108, 171, 217, 60, 182, 139, 55, 28, 253, 27, 25, 17, + 192, 213, 35, 98, 106, 201, 73, 37, 7, 53, 46, 134, 46, 6, 172, 4, 27, 70, 227, 46, 138, 165, 179, 240, 167, 67, + 189, 199, 64, 70, 2, 95, 44, 36, 88, 147, 255, 159, 76, 169, 158, 153, 226, 67, 106, 212, 119, 94, 12, 36, 74, 72, + 166, 137, 95, 241, 187, 17, 25, 237, 27, 111, 180, 40, 0, 93, 69, 46, 165, 66, 78, 131, 27, 115, 44, 81, 112, 165, + 140, 172, 61, 255, 159, 27, 35, 197, 194, 34, 159, 134, 190, 202, 27, 201, 171, 216, 134, 140, 181, 231, 53, 27, + 153, 73, 196, 43, 128, 96, 16, 229, 72, 154, 250, 154, 186, 76, 151, 239, 134, 66, 238, 152, 255, 68, 14, 57, 16, + 90, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 955, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10979641412527944532" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "446644078343404485" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1041069292460839114" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4518423274797112022" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5468781559434736686" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7568151942578611869" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11682323671930308416" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7992301822389653074" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c00a1c9f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9532047383685499140" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c8a37647bde022af21b27" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8177716094457630428" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1ec681716f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3692018398800546664" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15978599559864986467" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11290388717161698754" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "361686966839632431" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b13d70" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "480964135860470644" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b985f85b12ae573549fbf1b0632cc6c3eb0bbc51b0e729f0173b210ca1b3eb4aa075f239ad61b4be503da7c50742e1b69077a180f94a69d1ba21ff37be88b07401b6eea5c29953e0e5244c00a1c9f1b8448a297aec409044b4c8a37647bde022af21b27ffd8669f1b717d1575e4244edc9f451ec681716f9f1b333caf2c2cb68b681bddbf63a435f72b631b9caf84b81e8055c21b0504f8614a5d622f43b13d70ff1b06acba5553aa8374ffffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 152, 95, 133, 177, 42, 229, 115, 84, 159, 191, 27, 6, 50, 204, 108, 62, 176, 187, 197, 27, 14, + 114, 159, 1, 115, 178, 16, 202, 27, 62, 180, 170, 7, 95, 35, 154, 214, 27, 75, 229, 3, 218, 124, 80, 116, 46, 27, + 105, 7, 122, 24, 15, 148, 166, 157, 27, 162, 31, 243, 123, 232, 139, 7, 64, 27, 110, 234, 92, 41, 149, 62, 14, 82, + 68, 192, 10, 28, 159, 27, 132, 72, 162, 151, 174, 196, 9, 4, 75, 76, 138, 55, 100, 123, 222, 2, 42, 242, 27, 39, + 255, 216, 102, 159, 27, 113, 125, 21, 117, 228, 36, 78, 220, 159, 69, 30, 198, 129, 113, 111, 159, 27, 51, 60, + 175, 44, 44, 182, 139, 104, 27, 221, 191, 99, 164, 53, 247, 43, 99, 27, 156, 175, 132, 184, 30, 128, 85, 194, 27, + 5, 4, 248, 97, 74, 93, 98, 47, 67, 177, 61, 112, 255, 27, 6, 172, 186, 85, 83, 170, 131, 116, 255, 255, 160, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 956, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5393107015915506888" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + "cborHex": "d8669f1b4ad82a41cf4f8cc89f0fffff", + "cborBytes": [216, 102, 159, 27, 74, 216, 42, 65, 207, 79, 140, 200, 159, 15, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 957, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15218571891356708288" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bd3333a80f50fadc09f80ffff", + "cborBytes": [216, 102, 159, 27, 211, 51, 58, 128, 245, 15, 173, 192, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 958, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9023b03871da5a4f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7689415516028426175" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12739779772643280850" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16331101532201900804" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7330376642817756249" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6959234707778374735" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16645505514356263725" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "22c3f16905367ba1e7c082" + }, + { + "_tag": "ByteArray", + "bytearray": "80d3" + }, + { + "_tag": "ByteArray", + "bytearray": "569448dd615912ae3dfc" + }, + { + "_tag": "ByteArray", + "bytearray": "046641" + } + ] + } + ] + } + ] + }, + "cborHex": "d905009f9f9f489023b03871da5a4fffbf1b6ab64aabeb4057bf1bb0ccca34791c07d24264d31be2a3ba5151bb5b04ffd8669f1b65babab7f8f90c599f1b60942b1859b30c4f1be700b712da02cb2dffff9f4b22c3f16905367ba1e7c0824280d34a569448dd615912ae3dfc43046641ffffff", + "cborBytes": [ + 217, 5, 0, 159, 159, 159, 72, 144, 35, 176, 56, 113, 218, 90, 79, 255, 191, 27, 106, 182, 74, 171, 235, 64, 87, + 191, 27, 176, 204, 202, 52, 121, 28, 7, 210, 66, 100, 211, 27, 226, 163, 186, 81, 81, 187, 91, 4, 255, 216, 102, + 159, 27, 101, 186, 186, 183, 248, 249, 12, 89, 159, 27, 96, 148, 43, 24, 89, 179, 12, 79, 27, 231, 0, 183, 18, + 218, 2, 203, 45, 255, 255, 159, 75, 34, 195, 241, 105, 5, 54, 123, 161, 231, 192, 130, 66, 128, 211, 74, 86, 148, + 72, 221, 97, 89, 18, 174, 61, 252, 67, 4, 102, 65, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 959, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12178590550332363326" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "704ae91ad22b" + }, + { + "_tag": "ByteArray", + "bytearray": "6bade1df06" + }, + { + "_tag": "ByteArray", + "bytearray": "18d1" + } + ] + }, + "cborHex": "d8669f1ba9030b94a17d523e9f46704ae91ad22b456bade1df064218d1ffff", + "cborBytes": [ + 216, 102, 159, 27, 169, 3, 11, 148, 161, 125, 82, 62, 159, 70, 112, 74, 233, 26, 210, 43, 69, 107, 173, 225, 223, + 6, 66, 24, 209, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 960, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16350262095272254845" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1115922365229181578" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "36125d9cc0bf" + }, + { + "_tag": "ByteArray", + "bytearray": "175f27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "354424381585600678" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1870561508021497843" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3265692910354111630" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15681052661495157220" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e362f6c3907a3eec46418" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9273836580638456626" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3890252500553841471" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1bda7973a1" + }, + { + "_tag": "ByteArray", + "bytearray": "e075" + }, + { + "_tag": "ByteArray", + "bytearray": "bb08b6" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1be2e7ccbf8d3c9d7d9f1b0f7c8d7a90662a8a9f9f4636125d9cc0bf43175f271b04eb2b18e425b0a61b19f591c7e823eff31b2d5212664b2b1c8eff1bd99e4a50589cd1e44b9e362f6c3907a3eec46418ff9fd8669f1b80b3493c35fa7b329f1b35fcf409ae163b3f451bda7973a142e07543bb08b6ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 226, 231, 204, 191, 141, 60, 157, 125, 159, 27, 15, 124, 141, 122, 144, 102, 42, 138, 159, 159, + 70, 54, 18, 93, 156, 192, 191, 67, 23, 95, 39, 27, 4, 235, 43, 24, 228, 37, 176, 166, 27, 25, 245, 145, 199, 232, + 35, 239, 243, 27, 45, 82, 18, 102, 75, 43, 28, 142, 255, 27, 217, 158, 74, 80, 88, 156, 209, 228, 75, 158, 54, 47, + 108, 57, 7, 163, 238, 196, 100, 24, 255, 159, 216, 102, 159, 27, 128, 179, 73, 60, 53, 250, 123, 50, 159, 27, 53, + 252, 244, 9, 174, 22, 59, 63, 69, 27, 218, 121, 115, 161, 66, 224, 117, 67, 187, 8, 182, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 961, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a5298" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6768fa1de9e987798b81eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4981955797488751292" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8514bb3b5325" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6840158306961754816" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db6a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7005170632777081522" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9964309910329263958" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15899862780692377027" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12431044468652764521" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12164344233165692047" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905009f9f436a5298bf4b6768fa1de9e987798b81eb1b45237666fc03d2bc468514bb3b53251b5eed1fbd4de48ac042db6a1b61375d9355ad22b2ff9f1b8a485711fd1487561bdca7a8f53c9fadc31bac83f114ed21ed691ba8d06ea16f699c8fffffff", + "cborBytes": [ + 217, 5, 0, 159, 159, 67, 106, 82, 152, 191, 75, 103, 104, 250, 29, 233, 233, 135, 121, 139, 129, 235, 27, 69, 35, + 118, 102, 252, 3, 210, 188, 70, 133, 20, 187, 59, 83, 37, 27, 94, 237, 31, 189, 77, 228, 138, 192, 66, 219, 106, + 27, 97, 55, 93, 147, 85, 173, 34, 178, 255, 159, 27, 138, 72, 87, 17, 253, 20, 135, 86, 27, 220, 167, 168, 245, + 60, 159, 173, 195, 27, 172, 131, 241, 20, 237, 33, 237, 105, 27, 168, 208, 110, 161, 111, 105, 156, 143, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 962, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17274217504677247201" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d3fba4963c5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17435614054590857821" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1019303509847244747" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11071723148573618696" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59fd9050680bf1befba594c3b1f38e1462d3fba4963c51bf1f7be9ad4b2425d1b0e254b2446c0ffcbff1b99a6a98b0a333208ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 217, 5, 6, 128, 191, 27, 239, 186, 89, 76, 59, 31, + 56, 225, 70, 45, 63, 186, 73, 99, 197, 27, 241, 247, 190, 154, 212, 178, 66, 93, 27, 14, 37, 75, 36, 70, 192, 255, + 203, 255, 27, 153, 166, 169, 139, 10, 51, 50, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 963, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15689412630072026670" + }, + "fields": [] + }, + "cborHex": "d8669f1bd9bbfda935f8662e80ff", + "cborBytes": [216, 102, 159, 27, 217, 187, 253, 169, 53, 248, 102, 46, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 964, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16129177237353552123" + } + }, + { + "_tag": "ByteArray", + "bytearray": "546d17009d2c570d879b03c8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5390485798285908399" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11612038231757796201" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1dbb288f38" + }, + { + "_tag": "ByteArray", + "bytearray": "037b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14922701284935610530" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2087347586701196783" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "187201512783447179" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10900463917755575911" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b833" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "42cc" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13822407471522586637" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "20b1373be8bede1376e40b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5283178214215273886" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09b965c5fea3ab47129314" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16368752584773630870" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15903218076020529492" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8799f1bdfd6593dc7c658fb4c546d17009d2c570d879b03c81b4aceda46059e99af9fd8669f1ba1263f3fa22db3699f451dbb288f3842037b1bcf1815c139da30a21b1cf7bf922417fdefffff9f1b029912c8b6df848b1b97463a2e18c8ae6742b833ff4242ccff9fd8669f1bbfd30e5c70cf200d9f4b20b1373be8bede1376e40b1b49519e9827624d9e4b09b965c5fea3ab471293141be3297dc01fb07b961bdcb39494cec65954ffffffff", + "cborBytes": [ + 216, 121, 159, 27, 223, 214, 89, 61, 199, 198, 88, 251, 76, 84, 109, 23, 0, 157, 44, 87, 13, 135, 155, 3, 200, 27, + 74, 206, 218, 70, 5, 158, 153, 175, 159, 216, 102, 159, 27, 161, 38, 63, 63, 162, 45, 179, 105, 159, 69, 29, 187, + 40, 143, 56, 66, 3, 123, 27, 207, 24, 21, 193, 57, 218, 48, 162, 27, 28, 247, 191, 146, 36, 23, 253, 239, 255, + 255, 159, 27, 2, 153, 18, 200, 182, 223, 132, 139, 27, 151, 70, 58, 46, 24, 200, 174, 103, 66, 184, 51, 255, 66, + 66, 204, 255, 159, 216, 102, 159, 27, 191, 211, 14, 92, 112, 207, 32, 13, 159, 75, 32, 177, 55, 59, 232, 190, 222, + 19, 118, 228, 11, 27, 73, 81, 158, 152, 39, 98, 77, 158, 75, 9, 185, 101, 197, 254, 163, 171, 71, 18, 147, 20, 27, + 227, 41, 125, 192, 31, 176, 123, 150, 27, 220, 179, 148, 148, 206, 198, 89, 84, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 965, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "315256899811681768" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fafcffc403066e" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09fbf1b0460047ae64425e847fafcffc403066effffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 191, 27, 4, 96, 4, 122, 230, 68, 37, 232, 71, 250, + 252, 255, 196, 3, 6, 110, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 966, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11648850308281605757" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3059416186399239154" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c1b5c9f89e237c77e01992" + }, + { + "_tag": "ByteArray", + "bytearray": "6852df217d6a32" + }, + { + "_tag": "ByteArray", + "bytearray": "4c1cfc2042" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9665127129654572007" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dbf83213e6d5" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10781880443420420499" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cba69c5e969967" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15402590635614219319" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6205622277598254435" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8891719096427039343" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7975ade829167127" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7626561488514905068" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "86c1f8a0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13535019732420886602" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17723965199237785195" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13264976497195230626" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5271011001150213039" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15751213470619915734" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2e5cd47dad6c6093a9acea" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11294790636104621451" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8831038134760076250" + } + } + ] + } + ] + }, + "cborHex": "d905089f1ba1a907a31ad31e7dd8669f1b2a753acfe2682bf29f9f4bc1b5c9f89e237c77e01992476852df217d6a32454c1cfc20421b86216dea980d33e746dbf83213e6d5ff1b95a0ef2370ce299347cba69c5e969967ffffd8669f1bd5c0fe93a08b2c379f1b561ecc952a7e9563bf1b7b65bb6869174a6f487975ade829167127ff41c2d8669f1b69d6fd443c9af3ec9f4486c1f8a01bbbd60cbc2ad9804a1bf5f82c716ff4266b1bb816a9d7e53a25a2ffff1b492664941abc0bafffffd8669f1bda978d32b1a5d5d69f4b2e5cd47dad6c6093a9acead8669f1b9cbf283dbd6c9d8b80ff1b7a8e26650c4d73daffffff", + "cborBytes": [ + 217, 5, 8, 159, 27, 161, 169, 7, 163, 26, 211, 30, 125, 216, 102, 159, 27, 42, 117, 58, 207, 226, 104, 43, 242, + 159, 159, 75, 193, 181, 201, 248, 158, 35, 124, 119, 224, 25, 146, 71, 104, 82, 223, 33, 125, 106, 50, 69, 76, 28, + 252, 32, 66, 27, 134, 33, 109, 234, 152, 13, 51, 231, 70, 219, 248, 50, 19, 230, 213, 255, 27, 149, 160, 239, 35, + 112, 206, 41, 147, 71, 203, 166, 156, 94, 150, 153, 103, 255, 255, 216, 102, 159, 27, 213, 192, 254, 147, 160, + 139, 44, 55, 159, 27, 86, 30, 204, 149, 42, 126, 149, 99, 191, 27, 123, 101, 187, 104, 105, 23, 74, 111, 72, 121, + 117, 173, 232, 41, 22, 113, 39, 255, 65, 194, 216, 102, 159, 27, 105, 214, 253, 68, 60, 154, 243, 236, 159, 68, + 134, 193, 248, 160, 27, 187, 214, 12, 188, 42, 217, 128, 74, 27, 245, 248, 44, 113, 111, 244, 38, 107, 27, 184, + 22, 169, 215, 229, 58, 37, 162, 255, 255, 27, 73, 38, 100, 148, 26, 188, 11, 175, 255, 255, 216, 102, 159, 27, + 218, 151, 141, 50, 177, 165, 213, 214, 159, 75, 46, 92, 212, 125, 173, 108, 96, 147, 169, 172, 234, 216, 102, 159, + 27, 156, 191, 40, 61, 189, 108, 157, 139, 128, 255, 27, 122, 142, 38, 101, 12, 77, 115, 218, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 967, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8358375819743662902" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2583260358283506900" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6c2692249f90654dcd207cff" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14214851854486868764" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15637389879420197820" + } + }, + { + "_tag": "ByteArray", + "bytearray": "47d943db119c47a19765c9" + }, + { + "_tag": "ByteArray", + "bytearray": "9e30073d57c4" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5e54" + }, + { + "_tag": "ByteArray", + "bytearray": "8cc63455204f34a2c1" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17955071916554153330" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ebf1443ff7c3d8dcc72f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2258242332628897179" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0562" + } + ] + }, + "cborHex": "d8669f1b73feea86030913369f9f1b23d9959bf1d634d44c6c2692249f90654dcd207cff9f1bc5454c72b97e131c1bd9032b3eb1211bbc4b47d943db119c47a19765c9469e30073d57c4ff425e54498cc63455204f34a2c1ff9fd8669f1bf92d3ac72ecd6d729f4aebf1443ff7c3d8dcc72fffff1b1f56e36fd5184d9bff420562ffff", + "cborBytes": [ + 216, 102, 159, 27, 115, 254, 234, 134, 3, 9, 19, 54, 159, 159, 27, 35, 217, 149, 155, 241, 214, 52, 212, 76, 108, + 38, 146, 36, 159, 144, 101, 77, 205, 32, 124, 255, 159, 27, 197, 69, 76, 114, 185, 126, 19, 28, 27, 217, 3, 43, + 62, 177, 33, 27, 188, 75, 71, 217, 67, 219, 17, 156, 71, 161, 151, 101, 201, 70, 158, 48, 7, 61, 87, 196, 255, 66, + 94, 84, 73, 140, 198, 52, 85, 32, 79, 52, 162, 193, 255, 159, 216, 102, 159, 27, 249, 45, 58, 199, 46, 205, 109, + 114, 159, 74, 235, 241, 68, 63, 247, 195, 216, 220, 199, 47, 255, 255, 27, 31, 86, 227, 111, 213, 24, 77, 155, + 255, 66, 5, 98, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 968, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3383910305718897785" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9fd8669f1b2ef6107e8c288c7980ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 216, 102, 159, 27, 46, 246, 16, 126, 140, 40, 140, + 121, 128, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 969, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2167428958109554041" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16536486824239225442" + } + } + ] + }, + "cborHex": "d8669f1b1e1441276403d5799f1be57d67270fb4da62ffff", + "cborBytes": [ + 216, 102, 159, 27, 30, 20, 65, 39, 100, 3, 213, 121, 159, 27, 229, 125, 103, 39, 15, 180, 218, 98, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 970, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f2a0fbb10ac546a8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14748779974863976608" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8164956693175252804" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13968772722260422635" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6187406226852281958" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "565f4dcd180d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99f0d1ad8f86c736" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95e5a6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd6a3e205d9a89c00f0f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c563cb3d1b4b33b806" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8fd520b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c79426bb16" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13617751459470603860" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4364181091a9be31df597" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6eecbce4d1d0036ec29e7317" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11347155190975491851" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "65d81abe03" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c6db15" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3687193792564349737" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14792180378881021210" + } + } + ] + } + ] + }, + "cborHex": "d905039f48f2a0fbb10ac546a8d8669f1bccae313ea82978a09fd8669f1b714fc0da4728b7449f1bc1db0cc7fa7fafeb1b55de152e5891fe66ffffffff9fbf46565f4dcd180d4899f0d1ad8f86c7364395e5a64add6a3e205d9a89c00f0f49c563cb3d1b4b33b80644b8fd520b45c79426bb161bbcfbf8cd6d4d76544bd4364181091a9be31df5974c6eecbce4d1d0036ec29e7317ffd8669f1b9d793186c152ef0b9f4565d81abe03ffff43c6db15d8669f1b332b8b37ffd2cb2980ff1bcd4861aea8b4d51affff", + "cborBytes": [ + 217, 5, 3, 159, 72, 242, 160, 251, 177, 10, 197, 70, 168, 216, 102, 159, 27, 204, 174, 49, 62, 168, 41, 120, 160, + 159, 216, 102, 159, 27, 113, 79, 192, 218, 71, 40, 183, 68, 159, 27, 193, 219, 12, 199, 250, 127, 175, 235, 27, + 85, 222, 21, 46, 88, 145, 254, 102, 255, 255, 255, 255, 159, 191, 70, 86, 95, 77, 205, 24, 13, 72, 153, 240, 209, + 173, 143, 134, 199, 54, 67, 149, 229, 166, 74, 221, 106, 62, 32, 93, 154, 137, 192, 15, 15, 73, 197, 99, 203, 61, + 27, 75, 51, 184, 6, 68, 184, 253, 82, 11, 69, 199, 148, 38, 187, 22, 27, 188, 251, 248, 205, 109, 77, 118, 84, 75, + 212, 54, 65, 129, 9, 26, 155, 227, 29, 245, 151, 76, 110, 236, 188, 228, 209, 208, 3, 110, 194, 158, 115, 23, 255, + 216, 102, 159, 27, 157, 121, 49, 134, 193, 82, 239, 11, 159, 69, 101, 216, 26, 190, 3, 255, 255, 67, 198, 219, 21, + 216, 102, 159, 27, 51, 43, 139, 55, 255, 210, 203, 41, 128, 255, 27, 205, 72, 97, 174, 168, 180, 213, 26, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 971, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1466840495924544403" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "74c3f00c0286011e0e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14721031284444757900" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10630789274483970188" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2915870752911144301" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aee7ca05268069ce" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "326142449493539575" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14863262064040742110" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5396986877444492964" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "778090504141629662" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17307225427495274041" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7512737bfd3d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17347440693163851149" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b145b43a8cdbd83939f9f4974c3f00c0286011e0e9f1bcc4b9bf534bdff8c1b9388268553a6508c1b287741003638356d48aee7ca05268069ceff1b0486b0d4703cfaf7ff1bce44ea192ab00cded8669f1b4ae5f2f877860ea49fd8669f1b0acc5530e67768de9f1bf02f9dd42576c639467512737bfd3dffff1bf0be7d66562ffd8dffffffff", + "cborBytes": [ + 216, 102, 159, 27, 20, 91, 67, 168, 205, 189, 131, 147, 159, 159, 73, 116, 195, 240, 12, 2, 134, 1, 30, 14, 159, + 27, 204, 75, 155, 245, 52, 189, 255, 140, 27, 147, 136, 38, 133, 83, 166, 80, 140, 27, 40, 119, 65, 0, 54, 56, 53, + 109, 72, 174, 231, 202, 5, 38, 128, 105, 206, 255, 27, 4, 134, 176, 212, 112, 60, 250, 247, 255, 27, 206, 68, 234, + 25, 42, 176, 12, 222, 216, 102, 159, 27, 74, 229, 242, 248, 119, 134, 14, 164, 159, 216, 102, 159, 27, 10, 204, + 85, 48, 230, 119, 104, 222, 159, 27, 240, 47, 157, 212, 37, 118, 198, 57, 70, 117, 18, 115, 123, 253, 61, 255, + 255, 27, 240, 190, 125, 102, 86, 47, 253, 141, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 972, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12802513850947073013" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1274834331269396864" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5859949341178053568" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9804465958143866500" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a2409" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16969351753450822888" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13638773926836983048" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4425942812424877127" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17067549905386771515" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1961927218991290005" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6282523103651388527" + } + }, + { + "_tag": "ByteArray", + "bytearray": "460929e73024d4a88eec4e" + }, + { + "_tag": "ByteArray", + "bytearray": "b9a0" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "47728005253948196" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58add1cc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8806728997025702129" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ab9e9c21cc0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07d2c12e2806" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ef879e6da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "671d2b14bba1b862f5a2" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a41810" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1675044428975514942" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4348817850498314344" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b8d75ee16" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20e2622bfb30" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8812601610301109835" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12243081145760352880" + }, + "fields": [] + } + ] + }, + "cborHex": "d905019fd8669f1bb1abaa844db7f3f59fbf1b11b11f11e6c8f9801b5152b8e0e2b3c3c01b881075d7b7933684432a24091beb7f3f8325169ce81bbd46a8a008fa5508ffffff9fd8669f1b3d6c1b89cac734479f1becdc1e3610d4943b1b1b3a2a69332556951b57300179fe535c6f4b460929e73024d4a88eec4e42b9a0ffffbf1b00a9905e2effe3244458add1cc1b7a37c95cdcd960f141b2463ab9e9c21cc04607d2c12e2806453ef879e6da4a671d2b14bba1b862f5a2ff9f43a418101b173ef4088c15253effbf1b3c5a1acb43d47068453b8d75ee164620e2622bfb301b7a4ca6793108764bffffd8669f1ba9e8296f79540a7080ffff", + "cborBytes": [ + 217, 5, 1, 159, 216, 102, 159, 27, 177, 171, 170, 132, 77, 183, 243, 245, 159, 191, 27, 17, 177, 31, 17, 230, 200, + 249, 128, 27, 81, 82, 184, 224, 226, 179, 195, 192, 27, 136, 16, 117, 215, 183, 147, 54, 132, 67, 42, 36, 9, 27, + 235, 127, 63, 131, 37, 22, 156, 232, 27, 189, 70, 168, 160, 8, 250, 85, 8, 255, 255, 255, 159, 216, 102, 159, 27, + 61, 108, 27, 137, 202, 199, 52, 71, 159, 27, 236, 220, 30, 54, 16, 212, 148, 59, 27, 27, 58, 42, 105, 51, 37, 86, + 149, 27, 87, 48, 1, 121, 254, 83, 92, 111, 75, 70, 9, 41, 231, 48, 36, 212, 168, 142, 236, 78, 66, 185, 160, 255, + 255, 191, 27, 0, 169, 144, 94, 46, 255, 227, 36, 68, 88, 173, 209, 204, 27, 122, 55, 201, 92, 220, 217, 96, 241, + 65, 178, 70, 58, 185, 233, 194, 28, 192, 70, 7, 210, 193, 46, 40, 6, 69, 62, 248, 121, 230, 218, 74, 103, 29, 43, + 20, 187, 161, 184, 98, 245, 162, 255, 159, 67, 164, 24, 16, 27, 23, 62, 244, 8, 140, 21, 37, 62, 255, 191, 27, 60, + 90, 26, 203, 67, 212, 112, 104, 69, 59, 141, 117, 238, 22, 70, 32, 226, 98, 43, 251, 48, 27, 122, 76, 166, 121, + 49, 8, 118, 75, 255, 255, 216, 102, 159, 27, 169, 232, 41, 111, 121, 84, 10, 112, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 973, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13944814128696877364" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17336024435864227280" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "20f1b5d1385c26a99fa1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2201156972415183786" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e06e77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc7e740bda" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bc185ee9137d361349f1bf095ee5fcd2dcdd0bf4a20f1b5d1385c26a99fa11b1e8c149aabae6baa43e06e7745cc7e740bdaffffff", + "cborBytes": [ + 216, 102, 159, 27, 193, 133, 238, 145, 55, 211, 97, 52, 159, 27, 240, 149, 238, 95, 205, 45, 205, 208, 191, 74, + 32, 241, 181, 209, 56, 92, 38, 169, 159, 161, 27, 30, 140, 20, 154, 171, 174, 107, 170, 67, 224, 110, 119, 69, + 204, 126, 116, 11, 218, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 974, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5793930528518742368" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5122252960140820260" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10672782557958288795" + } + } + ] + }, + "cborHex": "d8669f1b50682d1e3da6a1609f1b4715e5edaae2ff241b941d57308c16b59bffff", + "cborBytes": [ + 216, 102, 159, 27, 80, 104, 45, 30, 61, 166, 161, 96, 159, 27, 71, 21, 229, 237, 170, 226, 255, 36, 27, 148, 29, + 87, 48, 140, 22, 181, 155, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 975, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13487330966549109995" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15052335439821340570" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1248892827848538340" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5075576861059742174" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "013355180360d715c5d0af1c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9089999364231567296" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2907" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4020301" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3324643966686194724" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11107357640118524163" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4574221117821986904" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90ea7b30f660055ef2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5710143312857495051" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4ff0b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8290213304961910130" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1974a46" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9204682686863925380" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9765149224100942874" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11439024795319962632" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09b772959da36f482b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16050414544198576335" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c30f2627a3c5409bd256" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f9fd8669f1bbb2ca00e1d491ceb9f1bd0e4a354f292ff9a1b1154f568f671f8e4ffffffd8669f1b4670124379a879de9fbf0d0f4c013355180360d715c5d0af1c1b7e262a42c98c97c042290744e4020301ffbf1b2e238212aef9ec241b9a2542eca47c5903ff0cbf1b3f7ae5df13dea8584990ea7b30f660055ef21b4f3e8116e371760b43c4ff0b1b730cc113d278c57244c1974a461b7fbd9a229cb660841b8784c77b3937d41a1b9ebf9471ddee8c084909b772959da36f482b1bdebe86fd3cb828cf4ac30f2627a3c5409bd256ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 159, 216, 102, 159, 27, 187, 44, 160, 14, 29, 73, + 28, 235, 159, 27, 208, 228, 163, 84, 242, 146, 255, 154, 27, 17, 84, 245, 104, 246, 113, 248, 228, 255, 255, 255, + 216, 102, 159, 27, 70, 112, 18, 67, 121, 168, 121, 222, 159, 191, 13, 15, 76, 1, 51, 85, 24, 3, 96, 215, 21, 197, + 208, 175, 28, 27, 126, 38, 42, 66, 201, 140, 151, 192, 66, 41, 7, 68, 228, 2, 3, 1, 255, 191, 27, 46, 35, 130, 18, + 174, 249, 236, 36, 27, 154, 37, 66, 236, 164, 124, 89, 3, 255, 12, 191, 27, 63, 122, 229, 223, 19, 222, 168, 88, + 73, 144, 234, 123, 48, 246, 96, 5, 94, 242, 27, 79, 62, 129, 22, 227, 113, 118, 11, 67, 196, 255, 11, 27, 115, 12, + 193, 19, 210, 120, 197, 114, 68, 193, 151, 74, 70, 27, 127, 189, 154, 34, 156, 182, 96, 132, 27, 135, 132, 199, + 123, 57, 55, 212, 26, 27, 158, 191, 148, 113, 221, 238, 140, 8, 73, 9, 183, 114, 149, 157, 163, 111, 72, 43, 27, + 222, 190, 134, 253, 60, 184, 40, 207, 74, 195, 15, 38, 39, 163, 197, 64, 155, 210, 86, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 976, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13095717354955194656" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "077afb1bba4dc46dd051f907" + }, + { + "_tag": "ByteArray", + "bytearray": "09d7a9feed98f540" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13454901204444686629" + } + }, + { + "_tag": "ByteArray", + "bytearray": "42882766" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17469083046169805833" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f9fd8669f1bb5bd558cdd05c1209f4c077afb1bba4dc46dd051f9074809d7a9feed98f540ffff1bbab9695bbae6a92544428827661bf26ea679aec00409ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 159, 216, 102, 159, 27, 181, 189, 85, 140, 221, 5, + 193, 32, 159, 76, 7, 122, 251, 27, 186, 77, 196, 109, 208, 81, 249, 7, 72, 9, 215, 169, 254, 237, 152, 245, 64, + 255, 255, 27, 186, 185, 105, 91, 186, 230, 169, 37, 68, 66, 136, 39, 102, 27, 242, 110, 166, 121, 174, 192, 4, 9, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 977, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f1a0af83d9f8bc80d901" + }, + { + "_tag": "ByteArray", + "bytearray": "a760f141f943c991a8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ea9f3486055c7255f80" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e631a1dba662" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ad71ad50ac5e7fd43b3c606" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "298b1501" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a433e8e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d1f292e7c15e9a0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57ab87544b2e9aed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26feed4ae0e5a87a58671c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1db9a99e309" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7249288379458190498" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b8322ecc67f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3" + } + } + ] + } + ] + }, + "cborHex": "d9050c9f9f4af1a0af83d9f8bc80d90149a760f141f943c991a8bf4a1ea9f3486055c7255f8046e631a1dba662413a4c1ad71ad50ac5e7fd43b3c6064249a244298b1501444a433e8e488d1f292e7c15e9a04857ab87544b2e9aed4b26feed4ae0e5a87a58671c46f1db9a99e3091b649aa55f6bf8fca2ffffbf461b8322ecc67f41c3ffff", + "cborBytes": [ + 217, 5, 12, 159, 159, 74, 241, 160, 175, 131, 217, 248, 188, 128, 217, 1, 73, 167, 96, 241, 65, 249, 67, 201, 145, + 168, 191, 74, 30, 169, 243, 72, 96, 85, 199, 37, 95, 128, 70, 230, 49, 161, 219, 166, 98, 65, 58, 76, 26, 215, 26, + 213, 10, 197, 231, 253, 67, 179, 198, 6, 66, 73, 162, 68, 41, 139, 21, 1, 68, 74, 67, 62, 142, 72, 141, 31, 41, + 46, 124, 21, 233, 160, 72, 87, 171, 135, 84, 75, 46, 154, 237, 75, 38, 254, 237, 74, 224, 229, 168, 122, 88, 103, + 28, 70, 241, 219, 154, 153, 227, 9, 27, 100, 154, 165, 95, 107, 248, 252, 162, 255, 255, 191, 70, 27, 131, 34, + 236, 198, 127, 65, 195, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 978, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c726fe2f1bed4b" + } + ] + }, + "cborHex": "d9050d9f47c726fe2f1bed4bff", + "cborBytes": [217, 5, 13, 159, 71, 199, 38, 254, 47, 27, 237, 75, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 979, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11328508622260680702" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "114438572552810529" + } + } + ] + }, + "cborHex": "d8669f1b9d36f29228cc37fe9f801b01969146819cf021ffff", + "cborBytes": [ + 216, 102, 159, 27, 157, 54, 242, 146, 40, 204, 55, 254, 159, 128, 27, 1, 150, 145, 70, 129, 156, 240, 33, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 980, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2814363734777934308" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10611350845734575794" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ff9c10c0d539cb86bb342c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14575206008722756943" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6563862008638192024" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b250e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9356692877054097983" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fe" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89fd8669f1b270ea0e7d82e31e49fd8669f1b9343175f730cdeb280ff4bff9c10c0d539cb86bb342cbf1bca4588a4660f154f1b5b1785b8538fb998431b250e1b81d9a699093cba3fff41feffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 216, 102, 159, 27, 39, 14, 160, 231, 216, 46, 49, + 228, 159, 216, 102, 159, 27, 147, 67, 23, 95, 115, 12, 222, 178, 128, 255, 75, 255, 156, 16, 192, 213, 57, 203, + 134, 187, 52, 44, 191, 27, 202, 69, 136, 164, 102, 15, 21, 79, 27, 91, 23, 133, 184, 83, 143, 185, 152, 67, 27, + 37, 14, 27, 129, 217, 166, 153, 9, 60, 186, 63, 255, 65, 254, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 981, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13971861517080594916" + }, + "fields": [] + }, + "cborHex": "d8669f1bc1e60606108a09e480ff", + "cborBytes": [216, 102, 159, 27, 193, 230, 6, 6, 16, 138, 9, 228, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 982, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a6f22b21a4e6be8d68a19e" + } + ] + }, + "cborHex": "d87f9f4ba6f22b21a4e6be8d68a19eff", + "cborBytes": [216, 127, 159, 75, 166, 242, 43, 33, 164, 230, 190, 141, 104, 161, 158, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 983, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0401289db7" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69fd905069f450401289db7ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 217, 5, 6, 159, 69, 4, 1, 40, 157, 183, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 984, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6088611515183687553" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16402802877109975860" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10049467629151655871" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8129083934927215450" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2780756294393689476" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "09e58c635df2" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10050699770789986218" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8494907884485077338" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b547f17ea09e067819fd8669f1be3a2764f9ae53b349fd8669f1b8b76e190795f17bf9f1b70d04ec4e2abdb5affffd8669f1b26973b1dde4475849f4609e58c635df2ffff1b8b7b4230ce097faad8669f1b75e3f9b68665e95a80ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 84, 127, 23, 234, 9, 224, 103, 129, 159, 216, 102, 159, 27, 227, 162, 118, 79, 154, 229, 59, + 52, 159, 216, 102, 159, 27, 139, 118, 225, 144, 121, 95, 23, 191, 159, 27, 112, 208, 78, 196, 226, 171, 219, 90, + 255, 255, 216, 102, 159, 27, 38, 151, 59, 29, 222, 68, 117, 132, 159, 70, 9, 229, 140, 99, 93, 242, 255, 255, 27, + 139, 123, 66, 48, 206, 9, 127, 170, 216, 102, 159, 27, 117, 227, 249, 182, 134, 101, 233, 90, 128, 255, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 985, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16762643430897765887" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "88ce835b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8347654657869226822" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "782983756050062953" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8887624689153861217" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae2f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11470534818333418913" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13599388167186772892" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11768623996726033242" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11643565100167680912" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11507863576976493086" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15797843537008350299" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12473445190977186952" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e308ac34663357" + }, + { + "_tag": "ByteArray", + "bytearray": "082920c5f68bfdff96675f7e" + }, + { + "_tag": "ByteArray", + "bytearray": "830ff5336723b192" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11041263309693507443" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cc20c9" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2080736956522139117" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "615709635614168935" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5133526521581570757" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0f6110" + }, + { + "_tag": "ByteArray", + "bytearray": "105d28813f57d0ba2916" + } + ] + }, + "cborHex": "d8669f1be8a0df635b324dff9f4488ce835bbf1b73d8d3aefdee23461b0addb793e443de691b7b572f90ee01e66142ae2f1b9f2f86a4ce8365a11bbcbabb7c43d1739c1ba3528d2c13fe3b5a1ba19640c4b2a15390ffd8669f1b9fb424f3b5570a1e9fd8669f1bdb3d36ff1095545b9f1bad1a9450657fec8847e308ac346633574c082920c5f68bfdff96675f7e48830ff5336723b192ffffd8669f1b993a727b25d5d7739f43cc20c9ffff1b1ce0433cdc878ded1b088b70a6c39157671b473df32c3bea8ac5ffff430f61104a105d28813f57d0ba2916ffff", + "cborBytes": [ + 216, 102, 159, 27, 232, 160, 223, 99, 91, 50, 77, 255, 159, 68, 136, 206, 131, 91, 191, 27, 115, 216, 211, 174, + 253, 238, 35, 70, 27, 10, 221, 183, 147, 228, 67, 222, 105, 27, 123, 87, 47, 144, 238, 1, 230, 97, 66, 174, 47, + 27, 159, 47, 134, 164, 206, 131, 101, 161, 27, 188, 186, 187, 124, 67, 209, 115, 156, 27, 163, 82, 141, 44, 19, + 254, 59, 90, 27, 161, 150, 64, 196, 178, 161, 83, 144, 255, 216, 102, 159, 27, 159, 180, 36, 243, 181, 87, 10, 30, + 159, 216, 102, 159, 27, 219, 61, 54, 255, 16, 149, 84, 91, 159, 27, 173, 26, 148, 80, 101, 127, 236, 136, 71, 227, + 8, 172, 52, 102, 51, 87, 76, 8, 41, 32, 197, 246, 139, 253, 255, 150, 103, 95, 126, 72, 131, 15, 245, 51, 103, 35, + 177, 146, 255, 255, 216, 102, 159, 27, 153, 58, 114, 123, 37, 213, 215, 115, 159, 67, 204, 32, 201, 255, 255, 27, + 28, 224, 67, 60, 220, 135, 141, 237, 27, 8, 139, 112, 166, 195, 145, 87, 103, 27, 71, 61, 243, 44, 59, 234, 138, + 197, 255, 255, 67, 15, 97, 16, 74, 16, 93, 40, 129, 63, 87, 208, 186, 41, 22, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 986, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f37c6a36a2fe05da" + } + ] + }, + "cborHex": "d87b9f48f37c6a36a2fe05daff", + "cborBytes": [216, 123, 159, 72, 243, 124, 106, 54, 162, 254, 5, 218, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 987, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4a2cde7526700cfba4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4950359216846355653" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d87a9f494a2cde7526700cfba4d8669f1b44b3357ac6b53cc59f80ffffff", + "cborBytes": [ + 216, 122, 159, 73, 74, 44, 222, 117, 38, 112, 12, 251, 164, 216, 102, 159, 27, 68, 179, 53, 122, 198, 181, 60, + 197, 159, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 988, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16299804197581651394" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10970438413857548536" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0475845bb92156ba26dd" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "afac427ba7056745e1" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1be234898ec1467dc29f9f9f1b983ed39d104768f84a0475845bb92156ba26ddff9f49afac427ba7056745e1ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 226, 52, 137, 142, 193, 70, 125, 194, 159, 159, 159, 27, 152, 62, 211, 157, 16, 71, 104, 248, + 74, 4, 117, 132, 91, 185, 33, 86, 186, 38, 221, 255, 159, 73, 175, 172, 66, 123, 167, 5, 103, 69, 225, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 989, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c353e5afde9cc312320f3d" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16659319602043587513" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11742773477179945456" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cc41" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2841551498240245515" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5801484758708950757" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6629415571002445983" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1193705633056575192" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905049f4bc353e5afde9cc312320f3d80d8669f1be731cae9c7828bb99f80d8669f1ba2f6b642f93071f09f42cc411b276f38084f96bf0bffff9f1b508303a684b096e51b5c006a56720b509f1b1090e4f2e0b84ed8ffffffff", + "cborBytes": [ + 217, 5, 4, 159, 75, 195, 83, 229, 175, 222, 156, 195, 18, 50, 15, 61, 128, 216, 102, 159, 27, 231, 49, 202, 233, + 199, 130, 139, 185, 159, 128, 216, 102, 159, 27, 162, 246, 182, 66, 249, 48, 113, 240, 159, 66, 204, 65, 27, 39, + 111, 56, 8, 79, 150, 191, 11, 255, 255, 159, 27, 80, 131, 3, 166, 132, 176, 150, 229, 27, 92, 0, 106, 86, 114, 11, + 80, 159, 27, 16, 144, 228, 242, 224, 184, 78, 216, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 990, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16238936211701406947" + }, + "fields": [] + }, + "cborHex": "d8669f1be15c4a726cb09ce380ff", + "cborBytes": [216, 102, 159, 27, 225, 92, 74, 114, 108, 176, 156, 227, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 991, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3191168394031552922" + }, + "fields": [] + }, + "cborHex": "d8669f1b2c494ebf30b4599a80ff", + "cborBytes": [216, 102, 159, 27, 44, 73, 78, 191, 48, 180, 89, 154, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 992, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a1a7c7e2cb635f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "422cf869ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14233668007994795877" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16841955615763598922" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d3d7858b6df518a4772" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6945527501492302969" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14591765223916860142" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2753290a4a2b34" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6213298541073037851" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b110eb551d39c48082d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11201946164225358714" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd300deab1b13cdaf24524" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16367967837456349739" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16692336894844441144" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f47a1a7c7e2cb635fbf45422cf869ea41bfffd8669f1bc58825a3db5f27659f1be9baa566687c0e4a4a2d3d7858b6df518a47721b60637876b027b4791bca805d29217672eeffffbf472753290a4a2b341b563a121a881c7a1b4a6b110eb551d39c48082d1b9b754eaf97b3bb7a4bfd300deab1b13cdaf245241be326b406e69aba2bff1be7a717f750599238ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 71, 161, 167, 199, 226, 203, 99, 95, 191, 69, 66, + 44, 248, 105, 234, 65, 191, 255, 216, 102, 159, 27, 197, 136, 37, 163, 219, 95, 39, 101, 159, 27, 233, 186, 165, + 102, 104, 124, 14, 74, 74, 45, 61, 120, 88, 182, 223, 81, 138, 71, 114, 27, 96, 99, 120, 118, 176, 39, 180, 121, + 27, 202, 128, 93, 41, 33, 118, 114, 238, 255, 255, 191, 71, 39, 83, 41, 10, 74, 43, 52, 27, 86, 58, 18, 26, 136, + 28, 122, 27, 74, 107, 17, 14, 181, 81, 211, 156, 72, 8, 45, 27, 155, 117, 78, 175, 151, 179, 187, 122, 75, 253, + 48, 13, 234, 177, 177, 60, 218, 242, 69, 36, 27, 227, 38, 180, 6, 230, 154, 186, 43, 255, 27, 231, 167, 23, 247, + 80, 89, 146, 56, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 993, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1038665158588052783" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff36fb" + }, + { + "_tag": "ByteArray", + "bytearray": "1e13" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0706c005fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7605" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0765ba8bfa05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51adbd938ebf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "802cb4a1c4d3b3dffe3a7f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87bda00a0fcbe9f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12c20cb274821b7290b2c5b1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9ad8169d647ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2527b9" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b0e6a14756a37352f9fd905099f43ff36fb421e13ffbf450706c005fe427605413b460765ba8bfa054651adbd938ebf4b802cb4a1c4d3b3dffe3a7f4887bda00a0fcbe9f34c12c20cb274821b7290b2c5b147b9ad8169d647ec432527b9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 14, 106, 20, 117, 106, 55, 53, 47, 159, 217, 5, 9, 159, 67, 255, 54, 251, 66, 30, 19, 255, 191, + 69, 7, 6, 192, 5, 254, 66, 118, 5, 65, 59, 70, 7, 101, 186, 139, 250, 5, 70, 81, 173, 189, 147, 142, 191, 75, 128, + 44, 180, 161, 196, 211, 179, 223, 254, 58, 127, 72, 135, 189, 160, 10, 15, 203, 233, 243, 76, 18, 194, 12, 178, + 116, 130, 27, 114, 144, 178, 197, 177, 71, 185, 173, 129, 105, 214, 71, 236, 67, 37, 39, 185, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 994, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10144158136612400031" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "df" + }, + { + "_tag": "ByteArray", + "bytearray": "2194a34e93" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1eb7e4b78ee31f2e6ac2" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "64818bc12d246a74cdb0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8cc74a14462bab9f9f9f41df452194a34e9380ff4a1eb7e4b78ee31f2e6ac280bf4a64818bc12d246a74cdb04107ffffff", + "cborBytes": [ + 216, 102, 159, 27, 140, 199, 74, 20, 70, 43, 171, 159, 159, 159, 65, 223, 69, 33, 148, 163, 78, 147, 128, 255, 74, + 30, 183, 228, 183, 142, 227, 31, 46, 106, 194, 128, 191, 74, 100, 129, 139, 193, 45, 36, 106, 116, 205, 176, 65, + 7, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 995, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17357188570001446090" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fbf9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18242114673082161086" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16629579258307456330" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a7255" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2904199700138915616" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40bd4b9fa8d62610ece8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "995754890c711ba9b321" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "513fd0524640d0" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bf0e11f0ac66814ca9f42fbf9bf1bfd2902a4f100d7be1be6c8223a679ead4a431a72551b284dca3d7b9377204a40bd4b9fa8d62610ece84a995754890c711ba9b321414547513fd0524640d0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 240, 225, 31, 10, 198, 104, 20, 202, 159, 66, 251, 249, 191, 27, 253, 41, 2, 164, 241, 0, 215, + 190, 27, 230, 200, 34, 58, 103, 158, 173, 74, 67, 26, 114, 85, 27, 40, 77, 202, 61, 123, 147, 119, 32, 74, 64, + 189, 75, 159, 168, 214, 38, 16, 236, 232, 74, 153, 87, 84, 137, 12, 113, 27, 169, 179, 33, 65, 69, 71, 81, 63, + 208, 82, 70, 64, 208, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 996, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8585" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55116d4db7c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98b6ff7fb17ec726c871fc7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "171f81ca34" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "233614339760632092" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8515238439103875569" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "887813da8eca7f94db552a62" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9194833644976985893" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6473932423621004000" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f9fbf4285854655116d4db7c04c98b6ff7fb17ec726c871fc7f45171f81ca34ff801b033df70117deb11cbf1b762c343ea489c9f14c887813da8eca7f94db552a621b7f9a9c7bd9a9d7251b59d8073d29d04ae0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 159, 191, 66, 133, 133, 70, 85, 17, 109, 77, 183, + 192, 76, 152, 182, 255, 127, 177, 126, 199, 38, 200, 113, 252, 127, 69, 23, 31, 129, 202, 52, 255, 128, 27, 3, 61, + 247, 1, 23, 222, 177, 28, 191, 27, 118, 44, 52, 62, 164, 137, 201, 241, 76, 136, 120, 19, 218, 142, 202, 127, 148, + 219, 85, 42, 98, 27, 127, 154, 156, 123, 217, 169, 215, 37, 27, 89, 216, 7, 61, 41, 208, 74, 224, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 997, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "35305395f8cee1dadb17" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f4a35305395f8cee1dadb17ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 74, 53, 48, 83, 149, 248, 206, 225, 218, 219, 23, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 998, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2052641488980286621" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14638209376536565629" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdb47c8ac8cd83fa098c05c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cca3b5a708f4d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4ae9a" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "57a34897" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fbf04b0a58b0cf46" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13841821236153460110" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4215" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6818884145741501331" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbb5c3a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca09a1f90756350939db1008" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4045303369509592573" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17723444097765563292" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3729428264278971359" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c14368e8ce6fe008e1276e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13250775816487798158" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b0" + }, + { + "_tag": "ByteArray", + "bytearray": "57876f" + } + ] + } + ] + } + ] + }, + "cborHex": "d8799fd8669f1b1c7c728f11e61c9d9fbf1bcb255ddf1441177d4cbdb47c8ac8cd83fa098c05c5474cca3b5a708f4d43d4ae9aff9f4457a34897ffffff48fbf04b0a58b0cf46d8669f1bc0180713c162a58e9fbf4242151b5ea18b00a777139344bbb5c3a24cca09a1f90756350939db1008ff1b3823cdfb4c4f5dfdd8669f1bf5f652810bcf5b9c9f1b33c1973f3ba653df4bc14368e8ce6fe008e1276e1bb7e436664417858e41b04357876fffffffffff", + "cborBytes": [ + 216, 121, 159, 216, 102, 159, 27, 28, 124, 114, 143, 17, 230, 28, 157, 159, 191, 27, 203, 37, 93, 223, 20, 65, 23, + 125, 76, 189, 180, 124, 138, 200, 205, 131, 250, 9, 140, 5, 197, 71, 76, 202, 59, 90, 112, 143, 77, 67, 212, 174, + 154, 255, 159, 68, 87, 163, 72, 151, 255, 255, 255, 72, 251, 240, 75, 10, 88, 176, 207, 70, 216, 102, 159, 27, + 192, 24, 7, 19, 193, 98, 165, 142, 159, 191, 66, 66, 21, 27, 94, 161, 139, 0, 167, 119, 19, 147, 68, 187, 181, + 195, 162, 76, 202, 9, 161, 249, 7, 86, 53, 9, 57, 219, 16, 8, 255, 27, 56, 35, 205, 251, 76, 79, 93, 253, 216, + 102, 159, 27, 245, 246, 82, 129, 11, 207, 91, 156, 159, 27, 51, 193, 151, 63, 59, 166, 83, 223, 75, 193, 67, 104, + 232, 206, 111, 224, 8, 225, 39, 110, 27, 183, 228, 54, 102, 68, 23, 133, 142, 65, 176, 67, 87, 135, 111, 255, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 999, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4974867425636873743" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ee19301c1995f0ed54c1" + } + ] + }, + "cborHex": "d8669f1b450a4790cdbf760f9f4aee19301c1995f0ed54c1ffff", + "cborBytes": [ + 216, 102, 159, 27, 69, 10, 71, 144, 205, 191, 118, 15, 159, 74, 238, 25, 48, 28, 25, 149, 240, 237, 84, 193, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1000, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12511910750916949425" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "781321" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "018a41e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "750dbadd12" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bada33c8979cbb5b19fa043781321bf44018a41e545750dbadd12ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 173, 163, 60, 137, 121, 203, 181, 177, 159, 160, 67, 120, 19, 33, 191, 68, 1, 138, 65, 229, 69, + 117, 13, 186, 221, 18, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1001, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2087253964079956347" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d56d5e3d02053f76da44" + } + ] + }, + "cborHex": "d87e9f1b1cf76a6bed03017b4ad56d5e3d02053f76da44ff", + "cborBytes": [ + 216, 126, 159, 27, 28, 247, 106, 107, 237, 3, 1, 123, 74, 213, 109, 94, 61, 2, 5, 63, 118, 218, 68, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1002, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3411306575416917089" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8655461301440422989" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8987318577795172779" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5972484125199595997" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11209855040309803290" + } + }, + { + "_tag": "ByteArray", + "bytearray": "57f2d0f524" + }, + { + "_tag": "ByteArray", + "bytearray": "c2b10f5c0f0efdd5bc7448d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "470018593512210749" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6e3672d330" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6672598947734550469" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13395794220374914757" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aac174c218d9b505b8318f01" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4849367977089807643" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11056500268342815773" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "182b6f80d1f1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1805552608" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2920533945760627298" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c97118" + }, + { + "_tag": "ByteArray", + "bytearray": "18e1645dcc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5469997361563461629" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17527402581817766626" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3e8240f9b7689a42d1" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10853549710931620591" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2918601858383047326" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14079213074619694683" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e55d8500f82c7604db0a7a60" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6822463261731800854" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6485055364548365651" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5154453597692615766" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17393800158818977859" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2472385449548027429" + } + } + ] + }, + "cborHex": "d8669f1b2f576541a7adfc619fd8669f1b781e6031ef7f244d80ffd8669f1b7cb95ea130c009ab9f9f1b52e286ab152e79dd1b9b9167c44d49b91a4557f2d0f5244cc2b10f5c0f0efdd5bc7448d81b0685d76ba81fc13dff456e3672d3309f1b5c99d563d85cf7c51bb9e76bde95ad76c54caac174c218d9b505b8318f01ffbf1b434c6a7b6b97b51b1b9970946a0995ac1d46182b6f80d1f1451805552608ffd8669f1b2887d22667883a629f43c971184518e1645dcc1b4be9559e7a5067fd1bf33dd7c8b48332e2493e8240f9b7689a42d1ffffffffd8669f1b969f8df5201f72ef9f1b2880f4ed41b76a9e1bc36369b24dbdfe5b4ce55d8500f82c7604db0a7a609f1b5eae423088ad47161b59ff8b7ea8a58d531b47884c3cd5b3dc56ffffff1bf16331169089c8431b224fad7794279625ffff", + "cborBytes": [ + 216, 102, 159, 27, 47, 87, 101, 65, 167, 173, 252, 97, 159, 216, 102, 159, 27, 120, 30, 96, 49, 239, 127, 36, 77, + 128, 255, 216, 102, 159, 27, 124, 185, 94, 161, 48, 192, 9, 171, 159, 159, 27, 82, 226, 134, 171, 21, 46, 121, + 221, 27, 155, 145, 103, 196, 77, 73, 185, 26, 69, 87, 242, 208, 245, 36, 76, 194, 177, 15, 92, 15, 14, 253, 213, + 188, 116, 72, 216, 27, 6, 133, 215, 107, 168, 31, 193, 61, 255, 69, 110, 54, 114, 211, 48, 159, 27, 92, 153, 213, + 99, 216, 92, 247, 197, 27, 185, 231, 107, 222, 149, 173, 118, 197, 76, 170, 193, 116, 194, 24, 217, 181, 5, 184, + 49, 143, 1, 255, 191, 27, 67, 76, 106, 123, 107, 151, 181, 27, 27, 153, 112, 148, 106, 9, 149, 172, 29, 70, 24, + 43, 111, 128, 209, 241, 69, 24, 5, 85, 38, 8, 255, 216, 102, 159, 27, 40, 135, 210, 38, 103, 136, 58, 98, 159, 67, + 201, 113, 24, 69, 24, 225, 100, 93, 204, 27, 75, 233, 85, 158, 122, 80, 103, 253, 27, 243, 61, 215, 200, 180, 131, + 50, 226, 73, 62, 130, 64, 249, 183, 104, 154, 66, 209, 255, 255, 255, 255, 216, 102, 159, 27, 150, 159, 141, 245, + 32, 31, 114, 239, 159, 27, 40, 128, 244, 237, 65, 183, 106, 158, 27, 195, 99, 105, 178, 77, 189, 254, 91, 76, 229, + 93, 133, 0, 248, 44, 118, 4, 219, 10, 122, 96, 159, 27, 94, 174, 66, 48, 136, 173, 71, 22, 27, 89, 255, 139, 126, + 168, 165, 141, 83, 27, 71, 136, 76, 60, 213, 179, 220, 86, 255, 255, 255, 27, 241, 99, 49, 22, 144, 137, 200, 67, + 27, 34, 79, 173, 119, 148, 39, 150, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1003, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9480374803499865634" + }, + "fields": [] + }, + "cborHex": "d8669f1b83910ea7942c562280ff", + "cborBytes": [216, 102, 159, 27, 131, 145, 14, 167, 148, 44, 86, 34, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1004, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17753551373482636383" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5751451578045141558" + } + }, + { + "_tag": "ByteArray", + "bytearray": "22842b55de" + } + ] + }, + "cborHex": "d8669f1bf66148e96e14b45f9f1b4fd142bcdc3d92364522842b55deffff", + "cborBytes": [ + 216, 102, 159, 27, 246, 97, 72, 233, 110, 20, 180, 95, 159, 27, 79, 209, 66, 188, 220, 61, 146, 54, 69, 34, 132, + 43, 85, 222, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1005, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15466437520890628281" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14960314142983649795" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14650951191419014480" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5013354110328057424" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bd6a3d2fb057588b99f9fd8669f1bcf9db6732ccafa039f1bcb52a27c0a1dcd501b459303005f592e50ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 214, 163, 210, 251, 5, 117, 136, 185, 159, 159, 216, 102, 159, 27, 207, 157, 182, 115, 44, 202, + 250, 3, 159, 27, 203, 82, 162, 124, 10, 29, 205, 80, 27, 69, 147, 3, 0, 95, 89, 46, 80, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1006, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5128117663917894709" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c48c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8771419303359024381" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6149737150676277157" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3557fb669232f9231b944d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8358661836867346678" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e327ca5e156535" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1751669897866277591" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4785851926114432502" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "435546013354101338" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bce0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14446168683112561313" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d5" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ed36" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "130eb1b33e787afd20" + } + ] + } + ] + }, + "cborHex": "d8669f1b472abbd86c3b6c359fbf42c48c1b79ba576228b80cfdffd8669f1b5558415b181517a59f9f4b3557fb669232f9231b944d1b73ffeea79017a0f6ffffff47e327ca5e156535d8669f1b184f2e7dca1072d79f9f1b426ac2f863ab75f61b060b5ecaa14f0a5a42bce01bc87b19e0d24bfaa141d5ff9f42ed36ff49130eb1b33e787afd20ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 71, 42, 187, 216, 108, 59, 108, 53, 159, 191, 66, 196, 140, 27, 121, 186, 87, 98, 40, 184, 12, + 253, 255, 216, 102, 159, 27, 85, 88, 65, 91, 24, 21, 23, 165, 159, 159, 75, 53, 87, 251, 102, 146, 50, 249, 35, + 27, 148, 77, 27, 115, 255, 238, 167, 144, 23, 160, 246, 255, 255, 255, 71, 227, 39, 202, 94, 21, 101, 53, 216, + 102, 159, 27, 24, 79, 46, 125, 202, 16, 114, 215, 159, 159, 27, 66, 106, 194, 248, 99, 171, 117, 246, 27, 6, 11, + 94, 202, 161, 79, 10, 90, 66, 188, 224, 27, 200, 123, 25, 224, 210, 75, 250, 161, 65, 213, 255, 159, 66, 237, 54, + 255, 73, 19, 14, 177, 179, 62, 120, 122, 253, 32, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1007, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "096e5dccfc9d3433d8554331" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19f4c096e5dccfc9d3433d8554331ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 76, 9, 110, 93, 204, 252, 157, 52, 51, 216, 85, + 67, 49, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1008, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15961830182608930946" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ee46f146" + }, + { + "_tag": "ByteArray", + "bytearray": "01c887eff0efdd" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4b6b1b8d28" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2661000597373937440" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5214662488116020197" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15125443477314729870" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3994009098659643326" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17794711417254632338" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1499327318818067317" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd5b124c41e61307" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f997000ee3822930a5c728a" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050a9f9f1bdd83cffb4f8388829f44ee46f1464701c887eff0efddff454b6b1b8d28d8669f1b24edc5f1d99367209f1b485e33e78bb5c3e51bd1e85eb45f97f78e1b376d921d33493fbeffffbf1bf6f383c0ea0cdb921b14ceae40b030937548cd5b124c41e613074c6f997000ee3822930a5c728affffff", + "cborBytes": [ + 217, 5, 10, 159, 159, 27, 221, 131, 207, 251, 79, 131, 136, 130, 159, 68, 238, 70, 241, 70, 71, 1, 200, 135, 239, + 240, 239, 221, 255, 69, 75, 107, 27, 141, 40, 216, 102, 159, 27, 36, 237, 197, 241, 217, 147, 103, 32, 159, 27, + 72, 94, 51, 231, 139, 181, 195, 229, 27, 209, 232, 94, 180, 95, 151, 247, 142, 27, 55, 109, 146, 29, 51, 73, 63, + 190, 255, 255, 191, 27, 246, 243, 131, 192, 234, 12, 219, 146, 27, 20, 206, 174, 64, 176, 48, 147, 117, 72, 205, + 91, 18, 76, 65, 230, 19, 7, 76, 111, 153, 112, 0, 238, 56, 34, 147, 10, 92, 114, 138, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1009, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "948117205780377365" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "67b712b7f30718" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8141282751314599957" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1704838106450292350" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4d64585d52ac" + }, + { + "_tag": "ByteArray", + "bytearray": "3e262fda58a55a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2152958680869298583" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "623a70891d5f3bb967" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4949796062625039030" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e669c52d5e25b02ce8fa6c2c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16715425554651827212" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10112603037083821377" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17133505654452471420" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abd3d22ecc002e7b" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87f9f9fd8669f1b0d28639347f9af159f4767b712b7f307181b70fba587281f20151b17a8cd39a684ee7e464d64585d52ac473e262fda58a55affffbf1b1de0d8836d4ee19749623a70891d5f3bb9671b44b1354b376482b64ce669c52d5e25b02ce8fa6c2c1be7f91efad6824c0c1b8c572ee223eae5411bedc6709d92c9467c48abd3d22ecc002e7bffffff", + "cborBytes": [ + 216, 127, 159, 159, 216, 102, 159, 27, 13, 40, 99, 147, 71, 249, 175, 21, 159, 71, 103, 183, 18, 183, 243, 7, 24, + 27, 112, 251, 165, 135, 40, 31, 32, 21, 27, 23, 168, 205, 57, 166, 132, 238, 126, 70, 77, 100, 88, 93, 82, 172, + 71, 62, 38, 47, 218, 88, 165, 90, 255, 255, 191, 27, 29, 224, 216, 131, 109, 78, 225, 151, 73, 98, 58, 112, 137, + 29, 95, 59, 185, 103, 27, 68, 177, 53, 75, 55, 100, 130, 182, 76, 230, 105, 197, 45, 94, 37, 176, 44, 232, 250, + 108, 44, 27, 231, 249, 30, 250, 214, 130, 76, 12, 27, 140, 87, 46, 226, 35, 234, 229, 65, 27, 237, 198, 112, 157, + 146, 201, 70, 124, 72, 171, 211, 210, 46, 204, 0, 46, 123, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1010, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9935282908073296703" + }, + "fields": [] + }, + "cborHex": "d8669f1b89e1372a5eb8033f80ff", + "cborBytes": [216, 102, 159, 27, 137, 225, 55, 42, 94, 184, 3, 63, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1011, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6010343239365228183" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8762842121559192996" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1e11" + }, + { + "_tag": "ByteArray", + "bytearray": "500bb68cba" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "336607516280237035" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "54c5b7241ca6cabde6fa96" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14022236685049166069" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10717638039395097715" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7957730499768305283" + } + }, + { + "_tag": "ByteArray", + "bytearray": "22b05583d3a6b4" + } + ] + }, + "cborHex": "d8669f1b536907550088f6979f9f1b799bde7b665db5a4421e1145500bb68cbad8669f1b04abdec0ac9c2beb9f4b54c5b7241ca6cabde6fa96ffffff1bc298fdf8d8ce78f51b94bcb303295bdc731b6e6f89ba48fb46834722b05583d3a6b4ffff", + "cborBytes": [ + 216, 102, 159, 27, 83, 105, 7, 85, 0, 136, 246, 151, 159, 159, 27, 121, 155, 222, 123, 102, 93, 181, 164, 66, 30, + 17, 69, 80, 11, 182, 140, 186, 216, 102, 159, 27, 4, 171, 222, 192, 172, 156, 43, 235, 159, 75, 84, 197, 183, 36, + 28, 166, 202, 189, 230, 250, 150, 255, 255, 255, 27, 194, 152, 253, 248, 216, 206, 120, 245, 27, 148, 188, 179, 3, + 41, 91, 220, 115, 27, 110, 111, 137, 186, 72, 251, 70, 131, 71, 34, 176, 85, 131, 211, 166, 180, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1012, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8438395546283234170" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1220264810388990649" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2549505364900411959" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2149520630840688058" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9624b785" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10782454593001339207" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11482220473441771790" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6afdb37baedf0a4803" + } + ] + }, + "cborHex": "d905099f1b751b340a7273537abf1b10ef40613b252ab91b2361a99f1bd77a371b1dd4a1a006a1fdba449624b7851b95a2f9530e9fb9471b9f590aaf6836e10eff496afdb37baedf0a4803ff", + "cborBytes": [ + 217, 5, 9, 159, 27, 117, 27, 52, 10, 114, 115, 83, 122, 191, 27, 16, 239, 64, 97, 59, 37, 42, 185, 27, 35, 97, + 169, 159, 27, 215, 122, 55, 27, 29, 212, 161, 160, 6, 161, 253, 186, 68, 150, 36, 183, 133, 27, 149, 162, 249, 83, + 14, 159, 185, 71, 27, 159, 89, 10, 175, 104, 54, 225, 14, 255, 73, 106, 253, 179, 123, 174, 223, 10, 72, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1013, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3528773381547300858" + } + } + ] + }, + "cborHex": "d87b9fd90504801b30f8b8b1bbfb17faff", + "cborBytes": [216, 123, 159, 217, 5, 4, 128, 27, 48, 248, 184, 177, 187, 251, 23, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1014, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16916579314228374376" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17275967842057705511" + } + } + ] + }, + "cborHex": "d8669f1beac3c342274dab689f1befc0913868ebd827ffff", + "cborBytes": [ + 216, 102, 159, 27, 234, 195, 195, 66, 39, 77, 171, 104, 159, 27, 239, 192, 145, 56, 104, 235, 216, 39, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1015, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "57" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6add2e995df1b1c581" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3083102f1261abc6460e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e09bcc000ac6ca7c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14764667483928289849" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebf5ad75d2ab571848a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "725b" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9298676655224078754" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d66852878b" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6869980684779426355" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc23d2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10932920065817785514" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11374303340776780606" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11018570019932266290" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17524201813434225274" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11497999742835911222" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "108a7812" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15416433837405621615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10671537727010215305" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f9fbf4157496add2e995df1b1c58141a04a3083102f1261abc6460e48e09bcc000ac6ca7c1bcce6a2d99e4e62394aebf5ad75d2ab571848a542725bffd8669f1b810b8926c3d941a29f45d66852878bffffffbf1b5f571308ba12923343bc23d21b97b988dff0cf34aa1b9dd9a49ff289f33e1b98e9d30de2d4df321bf33278b3be00d27a1b9f9119d8db446a3644108a78121bd5f22ce535dfcd6f1b9418eb05c19f9589ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 159, 191, 65, 87, 73, 106, 221, 46, 153, 93, 241, + 177, 197, 129, 65, 160, 74, 48, 131, 16, 47, 18, 97, 171, 198, 70, 14, 72, 224, 155, 204, 0, 10, 198, 202, 124, + 27, 204, 230, 162, 217, 158, 78, 98, 57, 74, 235, 245, 173, 117, 210, 171, 87, 24, 72, 165, 66, 114, 91, 255, 216, + 102, 159, 27, 129, 11, 137, 38, 195, 217, 65, 162, 159, 69, 214, 104, 82, 135, 139, 255, 255, 255, 191, 27, 95, + 87, 19, 8, 186, 18, 146, 51, 67, 188, 35, 210, 27, 151, 185, 136, 223, 240, 207, 52, 170, 27, 157, 217, 164, 159, + 242, 137, 243, 62, 27, 152, 233, 211, 13, 226, 212, 223, 50, 27, 243, 50, 120, 179, 190, 0, 210, 122, 27, 159, + 145, 25, 216, 219, 68, 106, 54, 68, 16, 138, 120, 18, 27, 213, 242, 44, 229, 53, 223, 205, 111, 27, 148, 24, 235, + 5, 193, 159, 149, 137, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1016, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8615781340588364092" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8754436514665897158" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05fe06ca26" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17523354564904383010" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d81449d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8662310247251804034" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7791677b1c35513c9f1b797e01a0895e9cc6bf4505fe06ca261bf32f762252587222446d81449d1b7836b54665ab7f82ffffff", + "cborBytes": [ + 216, 102, 159, 27, 119, 145, 103, 123, 28, 53, 81, 60, 159, 27, 121, 126, 1, 160, 137, 94, 156, 198, 191, 69, 5, + 254, 6, 202, 38, 27, 243, 47, 118, 34, 82, 88, 114, 34, 68, 109, 129, 68, 157, 27, 120, 54, 181, 70, 101, 171, + 127, 130, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1017, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3433724485597610570" + }, + "fields": [] + }, + "cborHex": "d8669f1b2fa70a3a1c9b424a80ff", + "cborBytes": [216, 102, 159, 27, 47, 167, 10, 58, 28, 155, 66, 74, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1018, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6548664812413779927" + }, + "fields": [] + }, + "cborHex": "d8669f1b5ae187f35905ffd780ff", + "cborBytes": [216, 102, 159, 27, 90, 225, 135, 243, 89, 5, 255, 215, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1019, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2337205725105355346" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1839335675911485629" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca2b640b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8508119325357205231" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10133245111779074087" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12229325709354161773" + } + }, + { + "_tag": "ByteArray", + "bytearray": "54a937" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5300680934548395777" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17617937379740632917" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7196251981788171777" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "984bc1d44477cbd5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8312115823455918104" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "701631284307994092" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12178383686132417310" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5097831049981486317" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14471206636058090292" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4901677906968367791" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15551444862522808002" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e08d64d8" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7115510452031034919" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "69a539dd430d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13940034582072482829" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16048712600510966286" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1990800409867552477" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "360346533417803613" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3" + }, + { + "_tag": "ByteArray", + "bytearray": "d4" + }, + { + "_tag": "ByteArray", + "bytearray": "97" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12762080380231759182" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3678660173653899831" + } + }, + { + "_tag": "ByteArray", + "bytearray": "32" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14930976459004299574" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e6787ef243cd29" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2898ce5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45a95691c432952a46ce9dde" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3606095463122808215" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9024129436191889482" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14074559191775339328" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17814922362152697821" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3006240471c667518" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "146d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9986246691d2e" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b206f6c3953e9fa529fbf1b1986a20d516838bd44ca2b640b1b7612e972ce8d66ef1b8ca084bdad8e2027ff1ba9b74af05c9b566d4354a937bf1b498fcd39cb7157011bf47f7cb3fa8447551b63de390cd0af4e0148984bc1d44477cbd51b735a914d4cfe58181b09bcb1ef887aa5ec1ba9024f704e55c31e1b46bf22549b1a64ed1bc8d40dc385849b341b44064216103ad2af1bd7d1d4b516bed6c244e08d64d8ffd8669f1b62bf5f0e78e396279f9f4669a539dd430d1bc174f3984d175c0d1bdeb87b1497caaa0effd8669f1b1ba0be6cd0db86dd9f1b0500354350695f5d41f341d44197ffff9f1bb11c047d4ab2354e1b330d39f004047a3741321bcf357bfb54abc93647e6787ef243cd29ffbf44b2898ce54c45a95691c432952a46ce9ddeffbf1b320b6cb7c1952d9741501b7d3c25e90b5d184a1bc352e103c3fa63401bf73b518039463fdd49f3006240471c66751842146d47d9986246691d2effffffffff", + "cborBytes": [ + 216, 102, 159, 27, 32, 111, 108, 57, 83, 233, 250, 82, 159, 191, 27, 25, 134, 162, 13, 81, 104, 56, 189, 68, 202, + 43, 100, 11, 27, 118, 18, 233, 114, 206, 141, 102, 239, 27, 140, 160, 132, 189, 173, 142, 32, 39, 255, 27, 169, + 183, 74, 240, 92, 155, 86, 109, 67, 84, 169, 55, 191, 27, 73, 143, 205, 57, 203, 113, 87, 1, 27, 244, 127, 124, + 179, 250, 132, 71, 85, 27, 99, 222, 57, 12, 208, 175, 78, 1, 72, 152, 75, 193, 212, 68, 119, 203, 213, 27, 115, + 90, 145, 77, 76, 254, 88, 24, 27, 9, 188, 177, 239, 136, 122, 165, 236, 27, 169, 2, 79, 112, 78, 85, 195, 30, 27, + 70, 191, 34, 84, 155, 26, 100, 237, 27, 200, 212, 13, 195, 133, 132, 155, 52, 27, 68, 6, 66, 22, 16, 58, 210, 175, + 27, 215, 209, 212, 181, 22, 190, 214, 194, 68, 224, 141, 100, 216, 255, 216, 102, 159, 27, 98, 191, 95, 14, 120, + 227, 150, 39, 159, 159, 70, 105, 165, 57, 221, 67, 13, 27, 193, 116, 243, 152, 77, 23, 92, 13, 27, 222, 184, 123, + 20, 151, 202, 170, 14, 255, 216, 102, 159, 27, 27, 160, 190, 108, 208, 219, 134, 221, 159, 27, 5, 0, 53, 67, 80, + 105, 95, 93, 65, 243, 65, 212, 65, 151, 255, 255, 159, 27, 177, 28, 4, 125, 74, 178, 53, 78, 27, 51, 13, 57, 240, + 4, 4, 122, 55, 65, 50, 27, 207, 53, 123, 251, 84, 171, 201, 54, 71, 230, 120, 126, 242, 67, 205, 41, 255, 191, 68, + 178, 137, 140, 229, 76, 69, 169, 86, 145, 196, 50, 149, 42, 70, 206, 157, 222, 255, 191, 27, 50, 11, 108, 183, + 193, 149, 45, 151, 65, 80, 27, 125, 60, 37, 233, 11, 93, 24, 74, 27, 195, 82, 225, 3, 195, 250, 99, 64, 27, 247, + 59, 81, 128, 57, 70, 63, 221, 73, 243, 0, 98, 64, 71, 28, 102, 117, 24, 66, 20, 109, 71, 217, 152, 98, 70, 105, + 29, 46, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1020, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13623253507122256236" + }, + "fields": [] + }, + "cborHex": "d8669f1bbd0f84e2b91dd96c80ff", + "cborBytes": [216, 102, 159, 27, 189, 15, 132, 226, 185, 29, 217, 108, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1021, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1359709535079100696" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "094545ac41" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12811265532138394319" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37537f8b718eb2469799" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "840a8249f61698c610bbd1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d283056f19991" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13f45cbcb9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a83a1b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d27a7173" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a3f55652987" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17199209910519399405" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "efdec1d4c84c2d5eb6452e65" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f22" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b12dea89e3c19f1189fbf45094545ac411bb1cac21fde5092cf4a37537f8b718eb24697994b840a8249f61698c610bbd1474d283056f199914513f45cbcb9416743a83a1b44d27a7173466a3f55652987ff1beeafde49cde303edbf4cefdec1d4c84c2d5eb6452e65429f22ffffff", + "cborBytes": [ + 216, 102, 159, 27, 18, 222, 168, 158, 60, 25, 241, 24, 159, 191, 69, 9, 69, 69, 172, 65, 27, 177, 202, 194, 31, + 222, 80, 146, 207, 74, 55, 83, 127, 139, 113, 142, 178, 70, 151, 153, 75, 132, 10, 130, 73, 246, 22, 152, 198, 16, + 187, 209, 71, 77, 40, 48, 86, 241, 153, 145, 69, 19, 244, 92, 188, 185, 65, 103, 67, 168, 58, 27, 68, 210, 122, + 113, 115, 70, 106, 63, 85, 101, 41, 135, 255, 27, 238, 175, 222, 73, 205, 227, 3, 237, 191, 76, 239, 222, 193, + 212, 200, 76, 45, 94, 182, 69, 46, 101, 66, 159, 34, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1022, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3940251238900949092" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6705426124765735895" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15859155665120801416" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2832297171444227796" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16011700316268790620" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8ac4f7f4da296ce3e3ccb7" + }, + { + "_tag": "ByteArray", + "bytearray": "104509a7bb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2273556137643670326" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14722424241033738926" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15311735727942403989" + } + } + ] + }, + "cborHex": "d8669f1b36ae95a01c7be0649fd8669f1b5d0e75889a492bd79f1bdc170a0d512632881b274e57457246ded4d8669f1bde34fc9aa136035c9f4b8ac4f7f4da296ce3e3ccb745104509a7bb1b1f8d4b42e928fb361bcc508ed82f6a7aaeffffffff1bd47e3684feaa0795ffff", + "cborBytes": [ + 216, 102, 159, 27, 54, 174, 149, 160, 28, 123, 224, 100, 159, 216, 102, 159, 27, 93, 14, 117, 136, 154, 73, 43, + 215, 159, 27, 220, 23, 10, 13, 81, 38, 50, 136, 27, 39, 78, 87, 69, 114, 70, 222, 212, 216, 102, 159, 27, 222, 52, + 252, 154, 161, 54, 3, 92, 159, 75, 138, 196, 247, 244, 218, 41, 108, 227, 227, 204, 183, 69, 16, 69, 9, 167, 187, + 27, 31, 141, 75, 66, 233, 40, 251, 54, 27, 204, 80, 142, 216, 47, 106, 122, 174, 255, 255, 255, 255, 27, 212, 126, + 54, 132, 254, 170, 7, 149, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1023, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17550871418786235634" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a3c17b52f269" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1137430526862821540" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ece0c3736b34cd14664fb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1608649999453149172" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "326e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5189897540349836257" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17091440936225825234" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12924602821337574825" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10454159003149647464" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16297968177873495001" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e43dddd3bae6afde6f2acf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16700054497112683111" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6844253548350086764" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bf39138911f4f44f29f46a3c17b52f269bf1b0fc8f709ae5808a44b1ece0c3736b34cd14664fb1b165312a6c95657f442326e1b48063850d139bbe11bed30fefa274f61d21bb35d69c9dcd66da91b9114a239902fbe681be22e03b51ac523d94be43dddd3bae6afde6f2acf1be7c283159e10f2671b5efbac56fe1d1e6cffffff", + "cborBytes": [ + 216, 102, 159, 27, 243, 145, 56, 145, 31, 79, 68, 242, 159, 70, 163, 193, 123, 82, 242, 105, 191, 27, 15, 200, + 247, 9, 174, 88, 8, 164, 75, 30, 206, 12, 55, 54, 179, 76, 209, 70, 100, 251, 27, 22, 83, 18, 166, 201, 86, 87, + 244, 66, 50, 110, 27, 72, 6, 56, 80, 209, 57, 187, 225, 27, 237, 48, 254, 250, 39, 79, 97, 210, 27, 179, 93, 105, + 201, 220, 214, 109, 169, 27, 145, 20, 162, 57, 144, 47, 190, 104, 27, 226, 46, 3, 181, 26, 197, 35, 217, 75, 228, + 61, 221, 211, 186, 230, 175, 222, 111, 42, 207, 27, 231, 194, 131, 21, 158, 16, 242, 103, 27, 94, 251, 172, 86, + 254, 29, 30, 108, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1024, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3224553046128851142" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3140822403651135367" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b2cbfe9e939e9f8c69f1b2b967155d836e78780a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 44, 191, 233, 233, 57, 233, 248, 198, 159, 27, 43, 150, 113, 85, 216, 54, 231, 135, 128, 160, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1025, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10583623599182179011" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3a843" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81e5f9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11810482124070014044" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17726483560674048347" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3289db9e" + }, + { + "_tag": "ByteArray", + "bytearray": "e6e5be666f6f6cbbb787" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1962637587651754875" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9735791912258125849" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ee7512e85f" + }, + { + "_tag": "ByteArray", + "bytearray": "f000c6882917adffefb40b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12574931775888348991" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6818646847777274921" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79f01a0d8669f1b92e09596c9b1eac39fbf43a3a8434381e5f9ffd8669f1ba3e742eacf4b4c5c9f1bf6011ee126c7395b443289db9e4ae6e5be666f6f6cbbb787ffffd8669f1b1b3cb07ccacffb7b9f1b871c7b2969444019ffff9f45ee7512e85f4bf000c6882917adffefb40b1bae8321d34898d73fffd8669f1b5ea0b32e6a99fc2980ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 1, 160, 216, 102, 159, 27, 146, 224, 149, 150, + 201, 177, 234, 195, 159, 191, 67, 163, 168, 67, 67, 129, 229, 249, 255, 216, 102, 159, 27, 163, 231, 66, 234, 207, + 75, 76, 92, 159, 27, 246, 1, 30, 225, 38, 199, 57, 91, 68, 50, 137, 219, 158, 74, 230, 229, 190, 102, 111, 111, + 108, 187, 183, 135, 255, 255, 216, 102, 159, 27, 27, 60, 176, 124, 202, 207, 251, 123, 159, 27, 135, 28, 123, 41, + 105, 68, 64, 25, 255, 255, 159, 69, 238, 117, 18, 232, 95, 75, 240, 0, 198, 136, 41, 23, 173, 255, 239, 180, 11, + 27, 174, 131, 33, 211, 72, 152, 215, 63, 255, 216, 102, 159, 27, 94, 160, 179, 46, 106, 153, 252, 41, 128, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1026, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5976826452105898796" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bb73986f665532e3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1048727479959766812" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16237780685545823335" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1670767228590751938" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "1102c5a7497d86d2b9d0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1859889439165883518" + } + }, + { + "_tag": "ByteArray", + "bytearray": "93" + }, + { + "_tag": "ByteArray", + "bytearray": "fe072f2962b18ced" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b52f1f3fdd9ee2b2c9f48bb73986f665532e3d8669f1b0e8dd4162d31471c80ff1be1582f8086a85c67a09f1b172fc1f13a8400c2a04a1102c5a7497d86d2b9d09f1b19cfa7973efba47e419348fe072f2962b18cedffffffff", + "cborBytes": [ + 216, 102, 159, 27, 82, 241, 243, 253, 217, 238, 43, 44, 159, 72, 187, 115, 152, 111, 102, 85, 50, 227, 216, 102, + 159, 27, 14, 141, 212, 22, 45, 49, 71, 28, 128, 255, 27, 225, 88, 47, 128, 134, 168, 92, 103, 160, 159, 27, 23, + 47, 193, 241, 58, 132, 0, 194, 160, 74, 17, 2, 197, 167, 73, 125, 134, 210, 185, 208, 159, 27, 25, 207, 167, 151, + 62, 251, 164, 126, 65, 147, 72, 254, 7, 47, 41, 98, 177, 140, 237, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1027, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10109244803429223497" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "55054828233877304" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3436986689622834145" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b1b25f5a8dbe36bc37c5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2593329806399770850" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8c4b40966fdccc499f1b00c39813180ce7389f1b2fb2a12f2cb6fbe14ab1b25f5a8dbe36bc37c51b23fd5bb807e410e2ffffff", + "cborBytes": [ + 216, 102, 159, 27, 140, 75, 64, 150, 111, 220, 204, 73, 159, 27, 0, 195, 152, 19, 24, 12, 231, 56, 159, 27, 47, + 178, 161, 47, 44, 182, 251, 225, 74, 177, 178, 95, 90, 141, 190, 54, 188, 55, 197, 27, 35, 253, 91, 184, 7, 228, + 16, 226, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1028, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ad3381" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f43ad3381ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 67, 173, 51, 129, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1029, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ac76e163f993a1be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9501748521164733982" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9554172167942556855" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1910594657084975983" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10020433809338509176" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5aaee15cd45e3469" + }, + { + "_tag": "ByteArray", + "bytearray": "fd" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2614692475982756131" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5009246416995693854" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "316417e0b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2184516137483467598" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40e25c8a02baa2f2f8d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8d53803" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17144330420026243054" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dc941fcf8e6db291ee85d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "252312432591481456" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f9f9f48ac76e163f993a1be1b83dcfdf0051dfe1effff9fd8669f1b84973cf77123ccb79f1b1a83cbb7c54f2b6f1b8b0fbb7584efa778485aaee15cd45e346941fdffffbf1b244940f423d6b9231b45846b137d6d351e45316417e0b81b1e50f5da5ccf7b4e4a40e25c8a02baa2f2f8d544b8d5380341b71bedece5aeb59677eeff4bdc941fcf8e6db291ee85d01b038064d21507aa70ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 159, 159, 72, 172, 118, 225, 99, 249, 147, 161, + 190, 27, 131, 220, 253, 240, 5, 29, 254, 30, 255, 255, 159, 216, 102, 159, 27, 132, 151, 60, 247, 113, 35, 204, + 183, 159, 27, 26, 131, 203, 183, 197, 79, 43, 111, 27, 139, 15, 187, 117, 132, 239, 167, 120, 72, 90, 174, 225, + 92, 212, 94, 52, 105, 65, 253, 255, 255, 191, 27, 36, 73, 64, 244, 35, 214, 185, 35, 27, 69, 132, 107, 19, 125, + 109, 53, 30, 69, 49, 100, 23, 224, 184, 27, 30, 80, 245, 218, 92, 207, 123, 78, 74, 64, 226, 92, 138, 2, 186, 162, + 242, 248, 213, 68, 184, 213, 56, 3, 65, 183, 27, 237, 236, 229, 174, 181, 150, 119, 238, 255, 75, 220, 148, 31, + 207, 142, 109, 178, 145, 238, 133, 208, 27, 3, 128, 100, 210, 21, 7, 170, 112, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1030, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9240223544884567606" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f95fff225afa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14661635735056993866" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b803bde5b760b9e369fbf46f95fff225afa1bcb789805363ece4affffff", + "cborBytes": [ + 216, 102, 159, 27, 128, 59, 222, 91, 118, 11, 158, 54, 159, 191, 70, 249, 95, 255, 34, 90, 250, 27, 203, 120, 152, + 5, 54, 62, 206, 74, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1031, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15617331063726650525" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8410966445614261285" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c58fc3eb2022fc" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15021338948943959336" + } + } + ] + }, + "cborHex": "d8669f1bd8bbe7dbb919b49d9fbf1b74b9c16b4891642547c58fc3eb2022fcff1bd0768430068b5528ffff", + "cborBytes": [ + 216, 102, 159, 27, 216, 187, 231, 219, 185, 25, 180, 157, 159, 191, 27, 116, 185, 193, 107, 72, 145, 100, 37, 71, + 197, 143, 195, 235, 32, 34, 252, 255, 27, 208, 118, 132, 48, 6, 139, 85, 40, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1032, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8228145490492237280" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12434637566692732239" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14795741479763812466" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "547686382726353179" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ebe0c9cedc747d634" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12308902791059658265" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9173005362620699059" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6be6a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9418497668078105506" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b72303ebaa105a5e09f1bac90b4fc4172ad4f9fbf1bcd55087c11d5a0721b0799c5dd02b9111b496ebe0c9cedc747d6341baad201df83ecd619ffff801b7f4d0fc6d1c291b39f9f436be6a71b82b539ba4fa3f3a2ffa0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 114, 48, 62, 186, 161, 5, 165, 224, 159, 27, 172, 144, 180, 252, 65, 114, 173, 79, 159, 191, + 27, 205, 85, 8, 124, 17, 213, 160, 114, 27, 7, 153, 197, 221, 2, 185, 17, 27, 73, 110, 190, 12, 156, 237, 199, 71, + 214, 52, 27, 170, 210, 1, 223, 131, 236, 214, 25, 255, 255, 128, 27, 127, 77, 15, 198, 209, 194, 145, 179, 159, + 159, 67, 107, 230, 167, 27, 130, 181, 57, 186, 79, 163, 243, 162, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1033, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3292736080542048675" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dbf0fd805f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17461870681852995386" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8415341705166304674" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "12a6b52915e7032fecdb306e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5557677214140134295" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "22" + }, + { + "_tag": "ByteArray", + "bytearray": "00f8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9127057311640304027" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905099fbf1b2db2260503d221a345dbf0fd805f1bf25506de41a7e73a1b74c94cb1c7f7b5a24c12a6b52915e7032fecdb306e1b4d20d5fafd1af397ff41224200f8bf1b7ea9d24488f3b99b0fff80ff", + "cborBytes": [ + 217, 5, 9, 159, 191, 27, 45, 178, 38, 5, 3, 210, 33, 163, 69, 219, 240, 253, 128, 95, 27, 242, 85, 6, 222, 65, + 167, 231, 58, 27, 116, 201, 76, 177, 199, 247, 181, 162, 76, 18, 166, 181, 41, 21, 231, 3, 47, 236, 219, 48, 110, + 27, 77, 32, 213, 250, 253, 26, 243, 151, 255, 65, 34, 66, 0, 248, 191, 27, 126, 169, 210, 68, 136, 243, 185, 155, + 15, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1034, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7750919697899040180" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16379809922773014163" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14568512217902785815" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9907238950486500524" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10857545251485916559" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39f8a33025" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b72bd873e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a68866834b6c21465a088" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18007382292934624267" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfdb4b063feed0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa3b642172d040d1da" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a594778093849ba7" + }, + { + "_tag": "ByteArray", + "bytearray": "ee6efb0213c0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "70904487121205002" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "119397bea5f157273a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15765092481730663758" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d2449e942e4812368c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4cf51e8cc9" + } + ] + } + ] + }, + "cborHex": "d8669f1b6b90cc662bd9adb49f1be350c6573f4dd693d8669f1bca2dc0acc608a5179fbf1b897d9555aca964ac1b96adbfe1678c1d8f4539f8a3302545b72bd873e54b8a68866834b6c21465a0881bf9e712c9c907040b47dfdb4b063feed049aa3b642172d040d1daff48a594778093849ba746ee6efb0213c01b00fbe7415fd7370a9f49119397bea5f157273a1bdac8dc15c8bcd54effffff9f9f49d2449e942e4812368cff454cf51e8cc9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 107, 144, 204, 102, 43, 217, 173, 180, 159, 27, 227, 80, 198, 87, 63, 77, 214, 147, 216, 102, + 159, 27, 202, 45, 192, 172, 198, 8, 165, 23, 159, 191, 27, 137, 125, 149, 85, 172, 169, 100, 172, 27, 150, 173, + 191, 225, 103, 140, 29, 143, 69, 57, 248, 163, 48, 37, 69, 183, 43, 216, 115, 229, 75, 138, 104, 134, 104, 52, + 182, 194, 20, 101, 160, 136, 27, 249, 231, 18, 201, 201, 7, 4, 11, 71, 223, 219, 75, 6, 63, 238, 208, 73, 170, 59, + 100, 33, 114, 208, 64, 209, 218, 255, 72, 165, 148, 119, 128, 147, 132, 155, 167, 70, 238, 110, 251, 2, 19, 192, + 27, 0, 251, 231, 65, 95, 215, 55, 10, 159, 73, 17, 147, 151, 190, 165, 241, 87, 39, 58, 27, 218, 200, 220, 21, + 200, 188, 213, 78, 255, 255, 255, 159, 159, 73, 210, 68, 158, 148, 46, 72, 18, 54, 140, 255, 69, 76, 245, 30, 140, + 201, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1035, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4860783279764660963" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14068392974663717161" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9518779541016297919" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9191288387869382418" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13702702870682742980" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fb12dc39dcdca7e60d" + } + ] + }, + "cborHex": "d8669f1b4374f8a3b087e2e39f1bc33cf8df776e9129bf1b84197f8f558841bf1b7f8e04175b209712ff1bbe29c7a92dc530c449fb12dc39dcdca7e60dffff", + "cborBytes": [ + 216, 102, 159, 27, 67, 116, 248, 163, 176, 135, 226, 227, 159, 27, 195, 60, 248, 223, 119, 110, 145, 41, 191, 27, + 132, 25, 127, 143, 85, 136, 65, 191, 27, 127, 142, 4, 23, 91, 32, 151, 18, 255, 27, 190, 41, 199, 169, 45, 197, + 48, 196, 73, 251, 18, 220, 57, 220, 220, 167, 230, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1036, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12851045270779051292" + }, + "fields": [] + }, + "cborHex": "d8669f1bb2581596053fbd1c80ff", + "cborBytes": [216, 102, 159, 27, 178, 88, 21, 150, 5, 63, 189, 28, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1037, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5498596451965052157" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "066e" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "18867301" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "888e5e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6411517119425523337" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7698239159112105814" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "941d368dfe5776a9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13905309616973995380" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d1d6e352deb19d48656" + }, + { + "_tag": "ByteArray", + "bytearray": "cdc280" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15461046472797256192" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cdbd67c2b562" + }, + { + "_tag": "ByteArray", + "bytearray": "138caf2f41dcad43bd" + }, + { + "_tag": "ByteArray", + "bytearray": "af3177f2d606b9549dd240" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b4c4ef0571a99a4fd9f9fd87d9f42066eff4418867301d8669f1bfffffffffffffff89f43888e5e1b58fa48d9b6b1ae891b6ad5a3ba6ae0ff56ffffff9f48941d368dfe5776a99f1bc0f9956c538edd744a2d1d6e352deb19d4865643cdc280ffd8669f1bd690abd9d2e2fa009f46cdbd67c2b56249138caf2f41dcad43bd4baf3177f2d606b9549dd240ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 76, 78, 240, 87, 26, 153, 164, 253, 159, 159, 216, 125, 159, 66, 6, 110, 255, 68, 24, 134, 115, + 1, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 67, 136, 142, 94, 27, 88, 250, 72, 217, 182, + 177, 174, 137, 27, 106, 213, 163, 186, 106, 224, 255, 86, 255, 255, 255, 159, 72, 148, 29, 54, 141, 254, 87, 118, + 169, 159, 27, 192, 249, 149, 108, 83, 142, 221, 116, 74, 45, 29, 110, 53, 45, 235, 25, 212, 134, 86, 67, 205, 194, + 128, 255, 216, 102, 159, 27, 214, 144, 171, 217, 210, 226, 250, 0, 159, 70, 205, 189, 103, 194, 181, 98, 73, 19, + 140, 175, 47, 65, 220, 173, 67, 189, 75, 175, 49, 119, 242, 214, 6, 185, 84, 157, 210, 64, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1038, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15317584841888753683" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1542a9e65da4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11988468222632979417" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5336917605832329715" + } + } + ] + }, + "cborHex": "d8669f1bd492fe41f5afe8139f1bfffffffffffffffd461542a9e65da41ba65f9854b318ebd9801b4a108a494b2a09f3ffff", + "cborBytes": [ + 216, 102, 159, 27, 212, 146, 254, 65, 245, 175, 232, 19, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 70, 21, + 66, 169, 230, 93, 164, 27, 166, 95, 152, 84, 179, 24, 235, 217, 128, 27, 74, 16, 138, 73, 75, 42, 9, 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1039, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3905ff8711f5dfdc7fc96138" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fbc3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3165605123134237835" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4cee" + }, + { + "_tag": "ByteArray", + "bytearray": "9efac280fe68b3" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1635194389139976471" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ecb915dddfeeb708d8d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13556919306062145858" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3506bb64bdd99a7f5850" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2f7acb665852a3901e29651" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88090b32729333" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17828823871976962747" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a336ac53d51605b4ae02092" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe66d37df0acd6a215b83b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9693622123182608403" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aafe95b78aba34155d43" + } + ] + }, + "cborHex": "d87f9f9f4c3905ff8711f5dfdc7fc96138a0d9050d9f42fbc31b2bee7d165f92ac8b424cee479efac280fe68b3ffbf1b16b160a21f6671174a5ecb915dddfeeb708d8d4222e11bbc23da47fe7829424a3506bb64bdd99a7f58504cb2f7acb665852a3901e296514788090b327293331bf76cb4d9b430fabbffbf04074c5a336ac53d51605b4ae0209241034bfe66d37df0acd6a215b83b1b8686a9f6472ad013ffff4aaafe95b78aba34155d43ff", + "cborBytes": [ + 216, 127, 159, 159, 76, 57, 5, 255, 135, 17, 245, 223, 220, 127, 201, 97, 56, 160, 217, 5, 13, 159, 66, 251, 195, + 27, 43, 238, 125, 22, 95, 146, 172, 139, 66, 76, 238, 71, 158, 250, 194, 128, 254, 104, 179, 255, 191, 27, 22, + 177, 96, 162, 31, 102, 113, 23, 74, 94, 203, 145, 93, 221, 254, 235, 112, 141, 141, 66, 34, 225, 27, 188, 35, 218, + 71, 254, 120, 41, 66, 74, 53, 6, 187, 100, 189, 217, 154, 127, 88, 80, 76, 178, 247, 172, 182, 101, 133, 42, 57, + 1, 226, 150, 81, 71, 136, 9, 11, 50, 114, 147, 51, 27, 247, 108, 180, 217, 180, 48, 250, 187, 255, 191, 4, 7, 76, + 90, 51, 106, 197, 61, 81, 96, 91, 74, 224, 32, 146, 65, 3, 75, 254, 102, 211, 125, 240, 172, 214, 162, 21, 184, + 59, 27, 134, 134, 169, 246, 71, 42, 208, 19, 255, 255, 74, 170, 254, 149, 183, 138, 186, 52, 21, 93, 67, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1040, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13920454709498838827" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7ca932709945c83" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13157413132322288340" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7afded" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17248024432505531842" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7371871404133279177" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b883c2f8" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0740b1060405d001f90602" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4181105440636268062" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "19c5" + }, + { + "_tag": "ByteArray", + "bytearray": "07cb2bfacd" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4205796071282442658" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfe5eaca8dbc685eb2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9340318150762078159" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06fb020703c3042f" + } + ] + } + ] + }, + "cborHex": "d87c9fbf041bc12f63cdf7977f2b0c1bffffffffffffffeb1048b7ca932709945c831bb69885886b2132d4437afded1bef5d4ad660c02dc21b664e25fbf53965c91bfffffffffffffff144b883c2f8ffbf4b0740b1060405d001f906021bfffffffffffffff6ffd8669f1bfffffffffffffff580ff9fd8669f1b3a06453eed93ee1e9f4219c54507cb2bfacdffffbf1b3a5dfd3e5a8601a249dfe5eaca8dbc685eb21b819f79def94e9fcf418fff801bffffffffffffffeb4806fb020703c3042fffff", + "cborBytes": [ + 216, 124, 159, 191, 4, 27, 193, 47, 99, 205, 247, 151, 127, 43, 12, 27, 255, 255, 255, 255, 255, 255, 255, 235, + 16, 72, 183, 202, 147, 39, 9, 148, 92, 131, 27, 182, 152, 133, 136, 107, 33, 50, 212, 67, 122, 253, 237, 27, 239, + 93, 74, 214, 96, 192, 45, 194, 27, 102, 78, 37, 251, 245, 57, 101, 201, 27, 255, 255, 255, 255, 255, 255, 255, + 241, 68, 184, 131, 194, 248, 255, 191, 75, 7, 64, 177, 6, 4, 5, 208, 1, 249, 6, 2, 27, 255, 255, 255, 255, 255, + 255, 255, 246, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 128, 255, 159, 216, 102, 159, 27, + 58, 6, 69, 62, 237, 147, 238, 30, 159, 66, 25, 197, 69, 7, 203, 43, 250, 205, 255, 255, 191, 27, 58, 93, 253, 62, + 90, 134, 1, 162, 73, 223, 229, 234, 202, 141, 188, 104, 94, 178, 27, 129, 159, 121, 222, 249, 78, 159, 207, 65, + 143, 255, 128, 27, 255, 255, 255, 255, 255, 255, 255, 235, 72, 6, 251, 2, 7, 3, 195, 4, 47, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1041, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2803509175935076349" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4444624488745670125" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7274987764430537814" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13111558952046013634" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3591848813403105672" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16488975650557450154" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10846872128384761708" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e86f3860bdb7141b73835" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4228692365408010782" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16520138240699057537" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b26e810bdec2887fd9f9fd8669f1b3dae7a6c83b015ed9f1b64f5f2d3c43204561bb5f59d661c4bacc21b31d8cf7721cce9881be4d49bfde98ad7aaffffbf414d1b9687d4bb48757f6c4b5e86f3860bdb7141b738351b3aaf554d408d021eff1be5435233d536c581ffffff", + "cborBytes": [ + 216, 102, 159, 27, 38, 232, 16, 189, 236, 40, 135, 253, 159, 159, 216, 102, 159, 27, 61, 174, 122, 108, 131, 176, + 21, 237, 159, 27, 100, 245, 242, 211, 196, 50, 4, 86, 27, 181, 245, 157, 102, 28, 75, 172, 194, 27, 49, 216, 207, + 119, 33, 204, 233, 136, 27, 228, 212, 155, 253, 233, 138, 215, 170, 255, 255, 191, 65, 77, 27, 150, 135, 212, 187, + 72, 117, 127, 108, 75, 94, 134, 243, 134, 11, 219, 113, 65, 183, 56, 53, 27, 58, 175, 85, 77, 64, 141, 2, 30, 255, + 27, 229, 67, 82, 51, 213, 54, 197, 129, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1042, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9386107885011125988" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2594694638251695226" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8540180091440750828" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "73fb68fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14961784423998284356" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12344799456517158647" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6689843969789211955" + } + }, + { + "_tag": "ByteArray", + "bytearray": "525522cd3577" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15021122284714127629" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4583245270546887498" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "116554132014874776" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8939592155348165154" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa47dd27" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12199798111119669736" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17270630690700150282" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7719610396255021164" + } + } + ] + }, + "cborHex": "d8669f1b824227644594c6e49fd8669f1b24023506b59a5c7a9f1b7684d08b9c3060ec9f4473fb68fd1bcfa2efa9a663e2441bab5189b33d23f6f71b5cd719a56e13353346525522cd3577ff1bd075bf21f416f10dffffbf1b3f9af54a5d6fb34a1b019e155d93d9c0981b7c0fcfb38865622244fa47dd271ba94e63bea8c4f9e81befad9b1c0624460aff1b6b2190c15131686cffff", + "cborBytes": [ + 216, 102, 159, 27, 130, 66, 39, 100, 69, 148, 198, 228, 159, 216, 102, 159, 27, 36, 2, 53, 6, 181, 154, 92, 122, + 159, 27, 118, 132, 208, 139, 156, 48, 96, 236, 159, 68, 115, 251, 104, 253, 27, 207, 162, 239, 169, 166, 99, 226, + 68, 27, 171, 81, 137, 179, 61, 35, 246, 247, 27, 92, 215, 25, 165, 110, 19, 53, 51, 70, 82, 85, 34, 205, 53, 119, + 255, 27, 208, 117, 191, 33, 244, 22, 241, 13, 255, 255, 191, 27, 63, 154, 245, 74, 93, 111, 179, 74, 27, 1, 158, + 21, 93, 147, 217, 192, 152, 27, 124, 15, 207, 179, 136, 101, 98, 34, 68, 250, 71, 221, 39, 27, 169, 78, 99, 190, + 168, 196, 249, 232, 27, 239, 173, 155, 28, 6, 36, 70, 10, 255, 27, 107, 33, 144, 193, 81, 49, 104, 108, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1043, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5761652865280126943" + }, + "fields": [] + }, + "cborHex": "d8669f1b4ff580c122222fdf80ff", + "cborBytes": [216, 102, 159, 27, 79, 245, 128, 193, 34, 34, 47, 223, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1044, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15193580622756580922" + }, + "fields": [] + }, + "cborHex": "d8669f1bd2da7113cdaa0e3a80ff", + "cborBytes": [216, 102, 159, 27, 210, 218, 113, 19, 205, 170, 14, 58, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1045, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3186241580315437654" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0631e80595ba2635014a3e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "39" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05320a03c1ac6cfbf9a8a5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6227732482901392383" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2c37cdd5fb47ea569f4b0631e80595ba2635014a3ebf41394b05320a03c1ac6cfbf9a8a542cc811b566d59b27f7fbbffffffff", + "cborBytes": [ + 216, 102, 159, 27, 44, 55, 205, 213, 251, 71, 234, 86, 159, 75, 6, 49, 232, 5, 149, 186, 38, 53, 1, 74, 62, 191, + 65, 57, 75, 5, 50, 10, 3, 193, 172, 108, 251, 249, 168, 165, 66, 204, 129, 27, 86, 109, 89, 178, 127, 127, 187, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1046, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6257718638196819897" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18136853256745501891" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "327877c6bc" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11202451758063482942" + } + } + ] + }, + "cborHex": "d8669f1b56d7e1f2561007b99fd8669f1bfbb30bf19fb3c4c39f45327877c6bcffffa01b9b771a8554d2f83effff", + "cborBytes": [ + 216, 102, 159, 27, 86, 215, 225, 242, 86, 16, 7, 185, 159, 216, 102, 159, 27, 251, 179, 11, 241, 159, 179, 196, + 195, 159, 69, 50, 120, 119, 198, 188, 255, 255, 160, 27, 155, 119, 26, 133, 84, 210, 248, 62, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1047, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10962978964605529729" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4770601c927e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1059547928219972274" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fbc6d06ad45d1513c2a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1793348622936396080" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18011528208512296647" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7767020633544944163" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad8554766725e264b616" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10795415156830572186" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "223188096962192757" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14351622470280570802" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4347484708671100791" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1a902c112a07664bb9876f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10865870510218818813" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11637757266126699145" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d905069f9f1b98245348b1646e81464770601c927ebf1b0eb4453a1c0d72b24a6fbc6d06ad45d1513c2a1b18e341122c8f51301bf9f5cd79fa4da6c71b6bca001d61936a234aad8554766725e264b6161b95d104e379c10e9a1b0318ec644586e5751bc72b34993b9667b21b3c555e4efec89777ffff4b1a902c112a07664bb9876f1b96cb53a8c0fc34fd1ba1819e92f5b3fa89a0ff", + "cborBytes": [ + 217, 5, 6, 159, 159, 27, 152, 36, 83, 72, 177, 100, 110, 129, 70, 71, 112, 96, 28, 146, 126, 191, 27, 14, 180, 69, + 58, 28, 13, 114, 178, 74, 111, 188, 109, 6, 173, 69, 209, 81, 60, 42, 27, 24, 227, 65, 18, 44, 143, 81, 48, 27, + 249, 245, 205, 121, 250, 77, 166, 199, 27, 107, 202, 0, 29, 97, 147, 106, 35, 74, 173, 133, 84, 118, 103, 37, 226, + 100, 182, 22, 27, 149, 209, 4, 227, 121, 193, 14, 154, 27, 3, 24, 236, 100, 69, 134, 229, 117, 27, 199, 43, 52, + 153, 59, 150, 103, 178, 27, 60, 85, 94, 78, 254, 200, 151, 119, 255, 255, 75, 26, 144, 44, 17, 42, 7, 102, 75, + 185, 135, 111, 27, 150, 203, 83, 168, 192, 252, 52, 253, 27, 161, 129, 158, 146, 245, 179, 250, 137, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1048, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3008944321841488593" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12596648920037882363" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3838126437605551553" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7f55a87d" + }, + { + "_tag": "ByteArray", + "bytearray": "bb59bcaf880aa6253f" + }, + { + "_tag": "ByteArray", + "bytearray": "15" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16586947952723458432" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "00a76d3d295e30eb89edb3" + } + ] + } + ] + }, + "cborHex": "d905049fd8669f1b29c1eaeb2c4a62d19f1baed04973ef2a79fbd8669f1b3543c3a8e483adc19f447f55a87d49bb59bcaf880aa6253f41151be630ad4815f97980ffff4b00a76d3d295e30eb89edb3ffffff", + "cborBytes": [ + 217, 5, 4, 159, 216, 102, 159, 27, 41, 193, 234, 235, 44, 74, 98, 209, 159, 27, 174, 208, 73, 115, 239, 42, 121, + 251, 216, 102, 159, 27, 53, 67, 195, 168, 228, 131, 173, 193, 159, 68, 127, 85, 168, 125, 73, 187, 89, 188, 175, + 136, 10, 166, 37, 63, 65, 21, 27, 230, 48, 173, 72, 21, 249, 121, 128, 255, 255, 75, 0, 167, 109, 61, 41, 94, 48, + 235, 137, 237, 179, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1049, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4118251245882279088" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "295333921596817845" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16663264743277565426" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1971652114252477360" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5909952015628019973" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10029786833200078340" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40daaa6e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13158482198428415462" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c663985e840fc09c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13506618813205603939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a95ae737f8951a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16893037717782072805" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f74cc63c5ef3b9077" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "60e30f0a73" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3432979707503250543" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10074732807559401330" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4896949412467566701" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e29464217fb579f77c99c353" + }, + { + "_tag": "ByteArray", + "bytearray": "6a8abe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18202285011775583308" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6564963760733764196" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c69ea5d2ade11ec9a55ec0" + } + ] + } + ] + }, + "cborHex": "d8669f1b3926f7b04e9f84b09fbf1b04193ca30ee6c1b51be73fceff8d5995f21b1b5cb726d2aab3b01b52045e0bc31ca9051b8b30f5fc15c7de044440daaa6e1bb69c51d7c4a075e648c663985e840fc09c1bbb71263fddba6663488a95ae737f8951a41bea70204d19ad0de5490f74cc63c5ef3b9077ff4560e30f0a73d8669f1b2fa464daf2db0c6f9f1b8bd0a41c398d4f72a01b43f5758ba52fe86d9f4ce29464217fb579f77c99c353436a8abe1bfc9b81c7434cf44c1b5b1b6fc1f9d93a64ff4bc69ea5d2ade11ec9a55ec0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 57, 38, 247, 176, 78, 159, 132, 176, 159, 191, 27, 4, 25, 60, 163, 14, 230, 193, 181, 27, 231, + 63, 206, 255, 141, 89, 149, 242, 27, 27, 92, 183, 38, 210, 170, 179, 176, 27, 82, 4, 94, 11, 195, 28, 169, 5, 27, + 139, 48, 245, 252, 21, 199, 222, 4, 68, 64, 218, 170, 110, 27, 182, 156, 81, 215, 196, 160, 117, 230, 72, 198, 99, + 152, 94, 132, 15, 192, 156, 27, 187, 113, 38, 63, 221, 186, 102, 99, 72, 138, 149, 174, 115, 127, 137, 81, 164, + 27, 234, 112, 32, 77, 25, 173, 13, 229, 73, 15, 116, 204, 99, 197, 239, 59, 144, 119, 255, 69, 96, 227, 15, 10, + 115, 216, 102, 159, 27, 47, 164, 100, 218, 242, 219, 12, 111, 159, 27, 139, 208, 164, 28, 57, 141, 79, 114, 160, + 27, 67, 245, 117, 139, 165, 47, 232, 109, 159, 76, 226, 148, 100, 33, 127, 181, 121, 247, 124, 153, 195, 83, 67, + 106, 138, 190, 27, 252, 155, 129, 199, 67, 76, 244, 76, 27, 91, 27, 111, 193, 249, 217, 58, 100, 255, 75, 198, + 158, 165, 210, 173, 225, 30, 201, 165, 94, 192, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1050, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ffadf1cc2855629a" + } + ] + }, + "cborHex": "d87c9f48ffadf1cc2855629aff", + "cborBytes": [216, 124, 159, 72, 255, 173, 241, 204, 40, 85, 98, 154, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1051, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14001149958831729069" + }, + "fields": [] + }, + "cborHex": "d8669f1bc24e13b4cf23e9ad80ff", + "cborBytes": [216, 102, 159, 27, 194, 78, 19, 180, 207, 35, 233, 173, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1052, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13335043347397611698" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14248670884964585765" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5068468592232899971" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11871296966529574773" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3559050039266253188" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0d8c26" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15749754266966354705" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8619133877791714378" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1152027139162420372" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9935058542697183562" + } + } + ] + }, + "cborHex": "d87d9f1bb90f9745ba1210b2d8669f1bc5bd72ad5bc3d12580ffd8669f1b4656d154ab4425839f9f1ba4bf51b1b92ae7751b31644927704e1984ffffff9f430d8c269f1bda925e0f5e38eb11ff1b779d5098814f6c4a1b0ffcd2945162b494ff1b89e06b1b3c2cf94aff", + "cborBytes": [ + 216, 125, 159, 27, 185, 15, 151, 69, 186, 18, 16, 178, 216, 102, 159, 27, 197, 189, 114, 173, 91, 195, 209, 37, + 128, 255, 216, 102, 159, 27, 70, 86, 209, 84, 171, 68, 37, 131, 159, 159, 27, 164, 191, 81, 177, 185, 42, 231, + 117, 27, 49, 100, 73, 39, 112, 78, 25, 132, 255, 255, 255, 159, 67, 13, 140, 38, 159, 27, 218, 146, 94, 15, 94, + 56, 235, 17, 255, 27, 119, 157, 80, 152, 129, 79, 108, 74, 27, 15, 252, 210, 148, 81, 98, 180, 148, 255, 27, 137, + 224, 107, 27, 60, 44, 249, 74, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1053, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14795737090897491288" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b45f64" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14826017439333871327" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9bc6cd63b1b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16636558511395639069" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3617928598407363910" + } + } + } + ] + } + ] + }, + "cborHex": "d905029fbf1bcd55047e3504355843b45f641bcdc0984f393deedf46b9bc6cd63b1b1be6e0edd264bd0f1d1b323576e442cc3d46ffff", + "cborBytes": [ + 217, 5, 2, 159, 191, 27, 205, 85, 4, 126, 53, 4, 53, 88, 67, 180, 95, 100, 27, 205, 192, 152, 79, 57, 61, 238, + 223, 70, 185, 188, 108, 214, 59, 27, 27, 230, 224, 237, 210, 100, 189, 15, 29, 27, 50, 53, 118, 228, 66, 204, 61, + 70, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1054, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aca265db96b93979" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4665875507746277129" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1301419825242647083" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c1d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8856136465633674066" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14360943016258015913" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12283400205296065462" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2965" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13839592294378295753" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b0915" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14060758485515202214" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3037130843060852697" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16607895172390868048" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b651" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14904872318301822412" + } + } + ] + }, + "cborHex": "d8799fbf0748aca265db96b939791b40c0850dad69870909ffbf1b120f926f933d2a2b427c1d1b7ae75131947a83521bc74c5195f3af92a91baa7767680ea1dbb64229651bc0101bddcea6d1c9430b09151bc321d95871b16ea61b2a260e690d0657d91be67b18aab948545042b651ff1bced8be6772eeddccff", + "cborBytes": [ + 216, 121, 159, 191, 7, 72, 172, 162, 101, 219, 150, 185, 57, 121, 27, 64, 192, 133, 13, 173, 105, 135, 9, 9, 255, + 191, 27, 18, 15, 146, 111, 147, 61, 42, 43, 66, 124, 29, 27, 122, 231, 81, 49, 148, 122, 131, 82, 27, 199, 76, 81, + 149, 243, 175, 146, 169, 27, 170, 119, 103, 104, 14, 161, 219, 182, 66, 41, 101, 27, 192, 16, 27, 221, 206, 166, + 209, 201, 67, 11, 9, 21, 27, 195, 33, 217, 88, 113, 177, 110, 166, 27, 42, 38, 14, 105, 13, 6, 87, 217, 27, 230, + 123, 24, 170, 185, 72, 84, 80, 66, 182, 81, 255, 27, 206, 216, 190, 103, 114, 238, 221, 204, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1055, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12835400152338177034" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d92c5c1617565d268a" + }, + { + "_tag": "ByteArray", + "bytearray": "a709c638805b450be6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8479195274374386304" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "288717411893242581" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e8b63" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b470d31a3c37a1ef9e437e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77867ee01a0803f94150b60b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8301a55896cc8f33b274" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3a7c88d59255ccf9a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3232951279616711876" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3992b859b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13441353716330982603" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b960599" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b55e802" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3565fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7830797556306690633" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b33" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1145737472510873627" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6068550668897361528" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1244833061583732045" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12550716881968399589" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16624681209346112011" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ed551ff73" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cc9ee33d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1524333291123067914" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + }, + "cborHex": "d8669f1bb220806f061c9c0a9f9f9f49d92c5c1617565d268a49a709c638805b450be61b75ac272d664192801b0401baf4d85dead5ffff9fbf435e8b634bb470d31a3c37a1ef9e437e4c77867ee01a0803f94150b60b4223de4a8301a55896cc8f33b274416149c3a7c88d59255ccf9a1b2cddc00f55b2dcc445f3992b859b1bba8947fd5a48eccbffbf441b960599446b55e802433565fa1b6cac94e35ba84249425b331b0fe67a292edd501b41f51b5437d2ae49161e78ffbf1b11468912f85c3d4d1bae2d1a81f23984e51be6b6bb7a832fba0b458ed551ff73ffbf416d412c458cc9ee33d31b1527850d50b14c0affff07ffff", + "cborBytes": [ + 216, 102, 159, 27, 178, 32, 128, 111, 6, 28, 156, 10, 159, 159, 159, 73, 217, 44, 92, 22, 23, 86, 93, 38, 138, 73, + 167, 9, 198, 56, 128, 91, 69, 11, 230, 27, 117, 172, 39, 45, 102, 65, 146, 128, 27, 4, 1, 186, 244, 216, 93, 234, + 213, 255, 255, 159, 191, 67, 94, 139, 99, 75, 180, 112, 211, 26, 60, 55, 161, 239, 158, 67, 126, 76, 119, 134, + 126, 224, 26, 8, 3, 249, 65, 80, 182, 11, 66, 35, 222, 74, 131, 1, 165, 88, 150, 204, 143, 51, 178, 116, 65, 97, + 73, 195, 167, 200, 141, 89, 37, 92, 207, 154, 27, 44, 221, 192, 15, 85, 178, 220, 196, 69, 243, 153, 43, 133, 155, + 27, 186, 137, 71, 253, 90, 72, 236, 203, 255, 191, 68, 27, 150, 5, 153, 68, 107, 85, 232, 2, 67, 53, 101, 250, 27, + 108, 172, 148, 227, 91, 168, 66, 73, 66, 91, 51, 27, 15, 230, 122, 41, 46, 221, 80, 27, 65, 245, 27, 84, 55, 210, + 174, 73, 22, 30, 120, 255, 191, 27, 17, 70, 137, 18, 248, 92, 61, 77, 27, 174, 45, 26, 129, 242, 57, 132, 229, 27, + 230, 182, 187, 122, 131, 47, 186, 11, 69, 142, 213, 81, 255, 115, 255, 191, 65, 109, 65, 44, 69, 140, 201, 238, + 51, 211, 27, 21, 39, 133, 13, 80, 177, 76, 10, 255, 255, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1056, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7671619287974453280" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10128725016209347838" + } + } + ] + }, + "cborHex": "d8669f1b6a771118afc0a0209fa01b8c9075bceac554feffff", + "cborBytes": [ + 216, 102, 159, 27, 106, 119, 17, 24, 175, 192, 160, 32, 159, 160, 27, 140, 144, 117, 188, 234, 197, 84, 254, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1057, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b9d1" + }, + { + "_tag": "ByteArray", + "bytearray": "14fcba03fe0263f86ea207fb" + } + ] + }, + "cborHex": "d905049f42b9d14c14fcba03fe0263f86ea207fbff", + "cborBytes": [217, 5, 4, 159, 66, 185, 209, 76, 20, 252, 186, 3, 254, 2, 99, 248, 110, 162, 7, 251, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1058, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10632078160322215880" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2783644172547222603" + } + } + ] + }, + "cborHex": "d8669f1b938cbac17231bfc89f1b26a17da065c36c4bffff", + "cborBytes": [ + 216, 102, 159, 27, 147, 140, 186, 193, 114, 49, 191, 200, 159, 27, 38, 161, 125, 160, 101, 195, 108, 75, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1059, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8111dac444" + }, + { + "_tag": "ByteArray", + "bytearray": "5d4e414b9d26fdbcd4fc59" + } + ] + }, + "cborHex": "d905049f458111dac4444b5d4e414b9d26fdbcd4fc59ff", + "cborBytes": [217, 5, 4, 159, 69, 129, 17, 218, 196, 68, 75, 93, 78, 65, 75, 157, 38, 253, 188, 212, 252, 89, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1060, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4020656409315954908" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64f1e12a58" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7213950847544386429" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa6168b14710e3a3ad" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15717769144371979944" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f68847f8fcbf023ea16ac335" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17630716396498372795" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "894332027055732371" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10317947219688939240" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9fbf1b37cc3db3b12cd0dc4564f1e12a581b641d1a131f02e37d49fa6168b14710e3a3ad1bda20bbc2afe326a84cf68847f8fcbf023ea16ac3351bf4ace326acf0c8bb1b0c694e3d7fe97693ff1b8f30b65458c9dee8ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 191, 27, 55, 204, 61, 179, 177, 44, 208, 220, 69, + 100, 241, 225, 42, 88, 27, 100, 29, 26, 19, 31, 2, 227, 125, 73, 250, 97, 104, 177, 71, 16, 227, 163, 173, 27, + 218, 32, 187, 194, 175, 227, 38, 168, 76, 246, 136, 71, 248, 252, 191, 2, 62, 161, 106, 195, 53, 27, 244, 172, + 227, 38, 172, 240, 200, 187, 27, 12, 105, 78, 61, 127, 233, 118, 147, 255, 27, 143, 48, 182, 84, 88, 201, 222, + 232, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1061, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12430648405157324527" + }, + "fields": [] + }, + "cborHex": "d8669f1bac8288dd352da6ef80ff", + "cborBytes": [216, 102, 159, 27, 172, 130, 136, 221, 53, 45, 166, 239, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1062, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2036057528123802661" + }, + "fields": [] + }, + "cborHex": "d8669f1b1c418788ca14442580ff", + "cborBytes": [216, 102, 159, 27, 28, 65, 135, 136, 202, 20, 68, 37, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1063, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6832834459587473861" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "13abae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18287072989373388121" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "90ad0b22addd13fdbf2742" + } + ] + } + ] + }, + "cborHex": "d8669f1b5ed31abd34c271c59fd905069fd8669f1bfffffffffffffffa9f4313abae1bfdc8bbfea93dd559ffff4b90ad0b22addd13fdbf2742ffffff", + "cborBytes": [ + 216, 102, 159, 27, 94, 211, 26, 189, 52, 194, 113, 197, 159, 217, 5, 6, 159, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 250, 159, 67, 19, 171, 174, 27, 253, 200, 187, 254, 169, 61, 213, 89, 255, 255, 75, 144, 173, + 11, 34, 173, 221, 19, 253, 191, 39, 66, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1064, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2754784945920830085" + } + } + ] + }, + "cborHex": "d87c9f1b263af65016346a85ff", + "cborBytes": [216, 124, 159, 27, 38, 58, 246, 80, 22, 52, 106, 133, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1065, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d87d9f80ff", + "cborBytes": [216, 125, 159, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1066, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15093115341812059442" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "914f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2217268517132533662" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14542962404748660117" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14975061068379076092" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06e53a08" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905049f1bd175846fc6b4cd329f42914fbf1b1ec551f7ff577f9e1bc9d2fb4154e78d951bcfd21ab34e8435fc4406e53a08ffffff", + "cborBytes": [ + 217, 5, 4, 159, 27, 209, 117, 132, 111, 198, 180, 205, 50, 159, 66, 145, 79, 191, 27, 30, 197, 81, 247, 255, 87, + 127, 158, 27, 201, 210, 251, 65, 84, 231, 141, 149, 27, 207, 210, 26, 179, 78, 132, 53, 252, 68, 6, 229, 58, 8, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1067, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6523796594444507248" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14401710517313185291" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e396db81d74971caf68" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18373173933928543015" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "027800" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2601fc3c57d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce03f1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62ffd9def7764e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d15273" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18055809540156243783" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2987867218704565552" + } + }, + { + "_tag": "ByteArray", + "bytearray": "56ccde7e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16056772637496451987" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1283002009994419833" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c5" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fba354d80b5dfea38b" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8166965566748232854" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "146565926776030929" + } + }, + { + "_tag": "ByteArray", + "bytearray": "43f8cf70fd489ca7327744e6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "07e5" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d118199002139" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12352335987691486950" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cf174623484" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7286478877528303386" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90bf27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10731083239043019292" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b44f45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9dff5f0e1b806" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce2cd214bb579a95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "358d4ba5707c213e271ed8" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b5a892e7026c498709fbf1bc7dd27697675a60b4a2e396db81d74971caf681bfefaa0590046f32743027800462601fc3c57d043ce03f14762ffd9def7764e43d15273ff1bfa931f1ced1f3f47d8669f1bfffffffffffffff99f1b29770967aeeb85304456ccde7e1bded51da4313023939f1b11ce2387cbd45e7941c5ff49fba354d80b5dfea38bffff9f9f011b7156e3e99ae00c9641041b0208b4ef11a946d14c43f8cf70fd489ca7327744e6ff4207e5ffbf474d1181990021391bab6c5022a49ffee6468cf1746234841b651ec5ef0676271a4390bf271b94ec7759a64eb21c43b44f4547f9dff5f0e1b80648ce2cd214bb579a954b358d4ba5707c213e271ed8ffffff", + "cborBytes": [ + 216, 102, 159, 27, 90, 137, 46, 112, 38, 196, 152, 112, 159, 191, 27, 199, 221, 39, 105, 118, 117, 166, 11, 74, + 46, 57, 109, 184, 29, 116, 151, 28, 175, 104, 27, 254, 250, 160, 89, 0, 70, 243, 39, 67, 2, 120, 0, 70, 38, 1, + 252, 60, 87, 208, 67, 206, 3, 241, 71, 98, 255, 217, 222, 247, 118, 78, 67, 209, 82, 115, 255, 27, 250, 147, 31, + 28, 237, 31, 63, 71, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 27, 41, 119, 9, 103, 174, + 235, 133, 48, 68, 86, 204, 222, 126, 27, 222, 213, 29, 164, 49, 48, 35, 147, 159, 27, 17, 206, 35, 135, 203, 212, + 94, 121, 65, 197, 255, 73, 251, 163, 84, 216, 11, 93, 254, 163, 139, 255, 255, 159, 159, 1, 27, 113, 86, 227, 233, + 154, 224, 12, 150, 65, 4, 27, 2, 8, 180, 239, 17, 169, 70, 209, 76, 67, 248, 207, 112, 253, 72, 156, 167, 50, 119, + 68, 230, 255, 66, 7, 229, 255, 191, 71, 77, 17, 129, 153, 0, 33, 57, 27, 171, 108, 80, 34, 164, 159, 254, 230, 70, + 140, 241, 116, 98, 52, 132, 27, 101, 30, 197, 239, 6, 118, 39, 26, 67, 144, 191, 39, 27, 148, 236, 119, 89, 166, + 78, 178, 28, 67, 180, 79, 69, 71, 249, 223, 245, 240, 225, 184, 6, 72, 206, 44, 210, 20, 187, 87, 154, 149, 75, + 53, 141, 75, 165, 112, 124, 33, 62, 39, 30, 216, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1068, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8" + } + ] + }, + "cborHex": "d87d9f41f8ff", + "cborBytes": [216, 125, 159, 65, 248, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1069, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1741681092117697415" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5588872305778998655" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8248398640950430723" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bead16e48da251dc74b24" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10291518854521146334" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4001868458c93b0773" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17488500067322873992" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65d180c2f287" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d27c37de6f7d2afe0ef" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "45cb01bcfa6aa11d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8441208852484612356" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16719045465895207391" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1183893084569653809" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15926648831492385439" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4035d5a0" + }, + { + "_tag": "ByteArray", + "bytearray": "b763" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4622330923271982106" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9699448641054732218" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7348529115376114905" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "870785373724513322" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7e39" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9082899991070085820" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c3e0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11349475283324205324" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b89dc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14693234221723144451" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b182bb1b9b7b093879f1b4d8fa9c040f9bd7fd8669f1b727832dcafaa4c039fbf4b3bead16e48da251dc74b241b8ed2d1df12f7cbde494001868458c93b07731bf2b3a227372cc8884665d180c2f2874a2d27c37de6f7d2afe0efff4845cb01bcfa6aa11d1b752532ba573a61041be805fb451a4a01df9f1b106e087ce5d0d2311bdd06d2baaf7e6a9f444035d5a042b763ffffffd8669f1b4025d17c0bee0c1a9fd8669f1b869b5d262f366fba80ffd8669f1b65fb384bd79bdcd980ffd8669f1b0c15a6af0c74942a9f427e39ffffd8669f1b7e0cf16b2a2192bc9f42c3e01b9d816fa3599d790c434b89dc1bcbe8daad336bd103ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 24, 43, 177, 185, 183, 176, 147, 135, 159, 27, 77, 143, 169, 192, 64, 249, 189, 127, 216, 102, + 159, 27, 114, 120, 50, 220, 175, 170, 76, 3, 159, 191, 75, 59, 234, 209, 110, 72, 218, 37, 29, 199, 75, 36, 27, + 142, 210, 209, 223, 18, 247, 203, 222, 73, 64, 1, 134, 132, 88, 201, 59, 7, 115, 27, 242, 179, 162, 39, 55, 44, + 200, 136, 70, 101, 209, 128, 194, 242, 135, 74, 45, 39, 195, 125, 230, 247, 210, 175, 224, 239, 255, 72, 69, 203, + 1, 188, 250, 106, 161, 29, 27, 117, 37, 50, 186, 87, 58, 97, 4, 27, 232, 5, 251, 69, 26, 74, 1, 223, 159, 27, 16, + 110, 8, 124, 229, 208, 210, 49, 27, 221, 6, 210, 186, 175, 126, 106, 159, 68, 64, 53, 213, 160, 66, 183, 99, 255, + 255, 255, 216, 102, 159, 27, 64, 37, 209, 124, 11, 238, 12, 26, 159, 216, 102, 159, 27, 134, 155, 93, 38, 47, 54, + 111, 186, 128, 255, 216, 102, 159, 27, 101, 251, 56, 75, 215, 155, 220, 217, 128, 255, 216, 102, 159, 27, 12, 21, + 166, 175, 12, 116, 148, 42, 159, 66, 126, 57, 255, 255, 216, 102, 159, 27, 126, 12, 241, 107, 42, 33, 146, 188, + 159, 66, 195, 224, 27, 157, 129, 111, 163, 89, 157, 121, 12, 67, 75, 137, 220, 27, 203, 232, 218, 173, 51, 107, + 209, 3, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1070, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "31f8c73fd4c68da3d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14712958991263022199" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6642d67f2b6d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c4a3aec2ab6484ab4f7e5e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12345137427733089340" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5bd3bf42c53b2f91e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11504660298555110879" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed3d0931f44f513db28a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16918621197674084913" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8074630345048749386" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "358a31" + }, + { + "_tag": "ByteArray", + "bytearray": "b5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17873714781829172832" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a3828" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7717426167834952182" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2231544862959395055" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f2724" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9963415987751975287" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9154827845116533966" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "be" + } + ] + }, + "cborHex": "d905089f9fbf4931f8c73fd4c68da3d91bcc2eee3ffd1f3c774135466642d67f2b6d4c3c4a3aec2ab6484ab4f7e5e41bab52bd154b690c3c49d5bd3bf42c53b2f91e1b9fa8c39654eab5df4aed3d0931f44f513db28a1beacb045730c1fa31ffd8669f1b700ed9848138754a9f43358a3141b51bf80c30e523938e60430a38281b6b19ce36021b41f6ffff9f1b1ef80a3ac90ae0ef437f27241b8a452a0d6b6779771b7f0c7b6bb8069cceffff41beff", + "cborBytes": [ + 217, 5, 8, 159, 159, 191, 73, 49, 248, 199, 63, 212, 198, 141, 163, 217, 27, 204, 46, 238, 63, 253, 31, 60, 119, + 65, 53, 70, 102, 66, 214, 127, 43, 109, 76, 60, 74, 58, 236, 42, 182, 72, 74, 180, 247, 229, 228, 27, 171, 82, + 189, 21, 75, 105, 12, 60, 73, 213, 189, 59, 244, 44, 83, 178, 249, 30, 27, 159, 168, 195, 150, 84, 234, 181, 223, + 74, 237, 61, 9, 49, 244, 79, 81, 61, 178, 138, 27, 234, 203, 4, 87, 48, 193, 250, 49, 255, 216, 102, 159, 27, 112, + 14, 217, 132, 129, 56, 117, 74, 159, 67, 53, 138, 49, 65, 181, 27, 248, 12, 48, 229, 35, 147, 142, 96, 67, 10, 56, + 40, 27, 107, 25, 206, 54, 2, 27, 65, 246, 255, 255, 159, 27, 30, 248, 10, 58, 201, 10, 224, 239, 67, 127, 39, 36, + 27, 138, 69, 42, 13, 107, 103, 121, 119, 27, 127, 12, 123, 107, 184, 6, 156, 206, 255, 255, 65, 190, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1071, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16637759420374305513" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1382363095830260322" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16841504213400713133" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3740066144645385340" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4926541a6f95" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6219053754288233937" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10428577798546083455" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15305774927808972745" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4104203476715025859" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15577735116459827971" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5177988529704115655" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13690584468332922460" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b4ac33e936338593" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1289338760346741843" + } + }, + { + "_tag": "ByteArray", + "bytearray": "99ab5005690bf3" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17405465917891408697" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5250144506248328251" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aa9b7c563a976113" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "666843331558293612" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1be6e5320acdd1cae99f9fbf1b132f23e95d926a621be9b90ada1afe77ad1b33e76257c40d8c7c464926541a6f951b564e84708768ddd11b90b9c0413add4e7f1bd4690934102247c91b38f50f512b85b5c3ff1bd82f3b8dd5b76303ffd8669f1b47dbe922340f9dc79fd8669f1bbdfeba09c276c65c9f48b4ac33e9363385931b11e4a6c5759c2c534799ab5005690bf3ffffa01bf18ca308c215f3391b48dc429caa66743bffff48aa9b7c563a9761139fd8669f1b09411a7a1a5ec06c80ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 230, 229, 50, 10, 205, 209, 202, 233, 159, 159, 191, 27, 19, 47, 35, 233, 93, 146, 106, 98, 27, + 233, 185, 10, 218, 26, 254, 119, 173, 27, 51, 231, 98, 87, 196, 13, 140, 124, 70, 73, 38, 84, 26, 111, 149, 27, + 86, 78, 132, 112, 135, 104, 221, 209, 27, 144, 185, 192, 65, 58, 221, 78, 127, 27, 212, 105, 9, 52, 16, 34, 71, + 201, 27, 56, 245, 15, 81, 43, 133, 181, 195, 255, 27, 216, 47, 59, 141, 213, 183, 99, 3, 255, 216, 102, 159, 27, + 71, 219, 233, 34, 52, 15, 157, 199, 159, 216, 102, 159, 27, 189, 254, 186, 9, 194, 118, 198, 92, 159, 72, 180, + 172, 51, 233, 54, 51, 133, 147, 27, 17, 228, 166, 197, 117, 156, 44, 83, 71, 153, 171, 80, 5, 105, 11, 243, 255, + 255, 160, 27, 241, 140, 163, 8, 194, 21, 243, 57, 27, 72, 220, 66, 156, 170, 102, 116, 59, 255, 255, 72, 170, 155, + 124, 86, 58, 151, 97, 19, 159, 216, 102, 159, 27, 9, 65, 26, 122, 26, 94, 192, 108, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1072, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "489428818543404023" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12b48747c8dc94" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b061db7183cb9b918" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b9d0c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ec7193bdb1ea540ec1989" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f8df46e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5a2df31eae3c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfce4d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6441930853845999527" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2671051069181115666" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15700199915824658405" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8423818843607959266" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "980861534896711268" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f770b18445ecaec2c9deda12" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5347684593076344454" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "984690593606197973" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7435389683596471035" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1479450199635397265" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11835583217164288420" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13850179413614365897" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15411821020545606702" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24633ade050681e733" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18415718611171108465" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7047" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4223988c6379caf89ea9e5" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "17b1834c4aa65db3b09b" + }, + { + "_tag": "ByteArray", + "bytearray": "9e" + } + ] + } + ] + }, + "cborHex": "d8669f1b06caccead81e63f79fbf4712b48747c8dc94492b061db7183cb9b918433b9d0c4b3ec7193bdb1ea540ec1989446f8df46e47a5a2df31eae3c543dfce4d1b596655fb131e9fa7ff1b25117acbab77bd121bd9e250a3e558b7e5d8669f1b74e76a9b617e86e29fbf1b0d9cb85e815ce6644cf770b18445ecaec2c9deda121b4a36cacddd2516861b0daa52e0b590e2d51b672fcf85d95f2afb1b1488101e3c260a911ba440703a78a701a41bc035b8cb97e98cc91bd5e1c9901784e42e4924633ade050681e7331bff91c68196676671427047ff9f4b4223988c6379caf89ea9e5ff4a17b1834c4aa65db3b09b419effffffff", + "cborBytes": [ + 216, 102, 159, 27, 6, 202, 204, 234, 216, 30, 99, 247, 159, 191, 71, 18, 180, 135, 71, 200, 220, 148, 73, 43, 6, + 29, 183, 24, 60, 185, 185, 24, 67, 59, 157, 12, 75, 62, 199, 25, 59, 219, 30, 165, 64, 236, 25, 137, 68, 111, 141, + 244, 110, 71, 165, 162, 223, 49, 234, 227, 197, 67, 223, 206, 77, 27, 89, 102, 85, 251, 19, 30, 159, 167, 255, 27, + 37, 17, 122, 203, 171, 119, 189, 18, 27, 217, 226, 80, 163, 229, 88, 183, 229, 216, 102, 159, 27, 116, 231, 106, + 155, 97, 126, 134, 226, 159, 191, 27, 13, 156, 184, 94, 129, 92, 230, 100, 76, 247, 112, 177, 132, 69, 236, 174, + 194, 201, 222, 218, 18, 27, 74, 54, 202, 205, 221, 37, 22, 134, 27, 13, 170, 82, 224, 181, 144, 226, 213, 27, 103, + 47, 207, 133, 217, 95, 42, 251, 27, 20, 136, 16, 30, 60, 38, 10, 145, 27, 164, 64, 112, 58, 120, 167, 1, 164, 27, + 192, 53, 184, 203, 151, 233, 140, 201, 27, 213, 225, 201, 144, 23, 132, 228, 46, 73, 36, 99, 58, 222, 5, 6, 129, + 231, 51, 27, 255, 145, 198, 129, 150, 103, 102, 113, 66, 112, 71, 255, 159, 75, 66, 35, 152, 140, 99, 121, 202, + 248, 158, 169, 229, 255, 74, 23, 177, 131, 76, 74, 166, 93, 179, 176, 155, 65, 158, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1073, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10752872913282399833" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9458047393159370353" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d4d61d8d66d8b4356d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11700468896276140340" + } + }, + { + "_tag": "ByteArray", + "bytearray": "056b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "52beab1b4761c6dc" + }, + { + "_tag": "ByteArray", + "bytearray": "bef7fd3e74d3950c75" + } + ] + } + ] + }, + "cborHex": "d8669f1b9539e0f1871dfe599f1b8341bbfe4212d6719f49d4d61d8d66d8b4356dff1ba2606a782c0bd13442056b9f4852beab1b4761c6dc49bef7fd3e74d3950c75ffffff", + "cborBytes": [ + 216, 102, 159, 27, 149, 57, 224, 241, 135, 29, 254, 89, 159, 27, 131, 65, 187, 254, 66, 18, 214, 113, 159, 73, + 212, 214, 29, 141, 102, 216, 180, 53, 109, 255, 27, 162, 96, 106, 120, 44, 11, 209, 52, 66, 5, 107, 159, 72, 82, + 190, 171, 27, 71, 97, 198, 220, 73, 190, 247, 253, 62, 116, 211, 149, 12, 117, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1074, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16335511731771233072" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4921005515354580423" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "228acf8d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16364552415577304185" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4b74" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5075195608448897935" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1be2b3655eec7353309fd8669f1b444aec719072a5c79f44228acf8d1be31a91b806beec79ffff424b741b466eb7842f38138fa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 226, 179, 101, 94, 236, 115, 83, 48, 159, 216, 102, 159, 27, 68, 74, 236, 113, 144, 114, 165, + 199, 159, 68, 34, 138, 207, 141, 27, 227, 26, 145, 184, 6, 190, 236, 121, 255, 255, 66, 75, 116, 27, 70, 110, 183, + 132, 47, 56, 19, 143, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1075, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3596093898035937479" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14528353963627205059" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2241431852188679191" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9316415688595484300" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "587911297261683415" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15250403495734794993" + } + } + ] + }, + "cborHex": "d8669f1b31e7e458eb61c0c79f1bc99f14f4952351c31b1f1b2a64d9f3bc171b814a8eb5529c2e8c1b0828ae35c0b8c2d71bd3a4512de4a5daf1ffff", + "cborBytes": [ + 216, 102, 159, 27, 49, 231, 228, 88, 235, 97, 192, 199, 159, 27, 201, 159, 20, 244, 149, 35, 81, 195, 27, 31, 27, + 42, 100, 217, 243, 188, 23, 27, 129, 74, 142, 181, 82, 156, 46, 140, 27, 8, 40, 174, 53, 192, 184, 194, 215, 27, + 211, 164, 81, 45, 228, 165, 218, 241, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1076, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6314671511878383657" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b7bd8701" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15183475530403523005" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + }, + "cborHex": "d87a9f9fd9050c9f1b57a2384892ca382944b7bd87011bd2b68a8ca589a9bdffff0607ff", + "cborBytes": [ + 216, 122, 159, 159, 217, 5, 12, 159, 27, 87, 162, 56, 72, 146, 202, 56, 41, 68, 183, 189, 135, 1, 27, 210, 182, + 138, 140, 165, 137, 169, 189, 255, 255, 6, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1077, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1737016088923940496" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "058abb9baed54902" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6063569260826763696" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b181b1eee057326909fbf48058abb9baed549021b5426201dd68ea1b0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 24, 27, 30, 238, 5, 115, 38, 144, 159, 191, 72, 5, 138, 187, 155, 174, 213, 73, 2, 27, 84, 38, + 32, 29, 214, 142, 161, 176, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1078, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7683272057195606012" + }, + "fields": [] + }, + "cborHex": "d8669f1b6aa0773a71d42ffc80ff", + "cborBytes": [216, 102, 159, 27, 106, 160, 119, 58, 113, 212, 47, 252, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1079, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f80ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1080, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2433404805179945251" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "675890488803505589" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3196254866612877471" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7991423148311923715" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2954792062790081394" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14715691036004015139" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c92" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15182591787678469625" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17796651673577571444" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15904459821023077810" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10860801032079679924" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "13e2a7" + }, + { + "_tag": "ByteArray", + "bytearray": "22d423eaf783a5dac0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2160054759536218062" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18073361136317495075" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8403738221511241851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2860333275813669092" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e084" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2b0c6e13d263e82222ee840c" + }, + { + "_tag": "ByteArray", + "bytearray": "a81eed468d83be" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a35" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2172310109055462852" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64b827ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14991565788633684570" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ec17eff2a7c0b7c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28b44c70806d0ffe5f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92334a23554a4d50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17028989264432700553" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "88741c48a222b10f" + } + ] + }, + "cborHex": "d8669f1b21c530c70f7ab1239f9fbf1b09613ed18c32b5b51b2c5b60dde012f89f1b6ee73d0354f74c031b290187b9d7bf1b721bcc38a307b96b5c23425c921bd2b366ca42568df91bf6fa68680af3c4741bdcb7fdf1188da5b21b96b950fee54e21b4ff4313e2a74922d423eaf783a5dac0bf1b1dfa0e5bfd8c4fce1bfad17a325b8df7231b74a01363368cf07b1b27b1f1f5ac1a68e4ffff9f809f42e084ff4c2b0c6e13d263e82222ee840c47a81eed468d83beffbf424a351b1e259888e83dadc44464b827ce1bd00cbda7f268da5a487ec17eff2a7c0b7c4928b44c70806d0ffe5f4892334a23554a4d501bec531f8336739c89ff4888741c48a222b10fffff", + "cborBytes": [ + 216, 102, 159, 27, 33, 197, 48, 199, 15, 122, 177, 35, 159, 159, 191, 27, 9, 97, 62, 209, 140, 50, 181, 181, 27, + 44, 91, 96, 221, 224, 18, 248, 159, 27, 110, 231, 61, 3, 84, 247, 76, 3, 27, 41, 1, 135, 185, 215, 191, 27, 114, + 27, 204, 56, 163, 7, 185, 107, 92, 35, 66, 92, 146, 27, 210, 179, 102, 202, 66, 86, 141, 249, 27, 246, 250, 104, + 104, 10, 243, 196, 116, 27, 220, 183, 253, 241, 24, 141, 165, 178, 27, 150, 185, 80, 254, 229, 78, 33, 180, 255, + 67, 19, 226, 167, 73, 34, 212, 35, 234, 247, 131, 165, 218, 192, 191, 27, 29, 250, 14, 91, 253, 140, 79, 206, 27, + 250, 209, 122, 50, 91, 141, 247, 35, 27, 116, 160, 19, 99, 54, 140, 240, 123, 27, 39, 177, 241, 245, 172, 26, 104, + 228, 255, 255, 159, 128, 159, 66, 224, 132, 255, 76, 43, 12, 110, 19, 210, 99, 232, 34, 34, 238, 132, 12, 71, 168, + 30, 237, 70, 141, 131, 190, 255, 191, 66, 74, 53, 27, 30, 37, 152, 136, 232, 61, 173, 196, 68, 100, 184, 39, 206, + 27, 208, 12, 189, 167, 242, 104, 218, 90, 72, 126, 193, 126, 255, 42, 124, 11, 124, 73, 40, 180, 76, 112, 128, + 109, 15, 254, 95, 72, 146, 51, 74, 35, 85, 74, 77, 80, 27, 236, 83, 31, 131, 54, 115, 156, 137, 255, 72, 136, 116, + 28, 72, 162, 34, 177, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1081, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39fa002ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 160, 2, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1082, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5344297694693708394" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14565020278879032091" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5543483447364497720" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16921951945669076944" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6753827833172108230" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a3820c6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11505497883361503789" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8917302039761037364" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13668233751670704960" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3747983392607515311" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16818430808095971829" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9098478687668776390" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17968546571087683022" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb2c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1541501463979893610" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d1f580c57354" + }, + { + "_tag": "ByteArray", + "bytearray": "b5fd5ad884b73f" + }, + { + "_tag": "ByteArray", + "bytearray": "cceb" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4623985530164961057" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a4ffdd5c87" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8932083049659683721" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5938508c2773bde2c63a" + }, + { + "_tag": "ByteArray", + "bytearray": "64bafd50546cb5" + } + ] + }, + "cborHex": "d87d9f1b4a2ac2702228526ad8669f1bca2158c65cf2131b9fbf1b4cee68d3226b31381bead6d9a363d5e7d01b5dba6aa1865ea3c6447a3820c61b9fabbd5dbdc56a2d1b7bc09ef592d2a8341bbdaf522e03564b401b34038309b46f32af1be96711b64c0bd9f51b7e444a291ef5adc61bf95d19e7abbe9dce42bb2cff9f1b1564836a0d44236a46d1f580c5735447b5fd5ad884b73f42ccebffd8669f1b402bb2573c075f219f45a4ffdd5c871b7bf522359f40d389ffffffff4a5938508c2773bde2c63a4764bafd50546cb5ff", + "cborBytes": [ + 216, 125, 159, 27, 74, 42, 194, 112, 34, 40, 82, 106, 216, 102, 159, 27, 202, 33, 88, 198, 92, 242, 19, 27, 159, + 191, 27, 76, 238, 104, 211, 34, 107, 49, 56, 27, 234, 214, 217, 163, 99, 213, 231, 208, 27, 93, 186, 106, 161, + 134, 94, 163, 198, 68, 122, 56, 32, 198, 27, 159, 171, 189, 93, 189, 197, 106, 45, 27, 123, 192, 158, 245, 146, + 210, 168, 52, 27, 189, 175, 82, 46, 3, 86, 75, 64, 27, 52, 3, 131, 9, 180, 111, 50, 175, 27, 233, 103, 17, 182, + 76, 11, 217, 245, 27, 126, 68, 74, 41, 30, 245, 173, 198, 27, 249, 93, 25, 231, 171, 190, 157, 206, 66, 187, 44, + 255, 159, 27, 21, 100, 131, 106, 13, 68, 35, 106, 70, 209, 245, 128, 197, 115, 84, 71, 181, 253, 90, 216, 132, + 183, 63, 66, 204, 235, 255, 216, 102, 159, 27, 64, 43, 178, 87, 60, 7, 95, 33, 159, 69, 164, 255, 221, 92, 135, + 27, 123, 245, 34, 53, 159, 64, 211, 137, 255, 255, 255, 255, 74, 89, 56, 80, 140, 39, 115, 189, 226, 198, 58, 71, + 100, 186, 253, 80, 84, 108, 181, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1083, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8536947449206195079" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16266779995801485699" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "be2c473030de181cf4" + }, + { + "_tag": "ByteArray", + "bytearray": "774d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6100033179691049261" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9960bbfbaccdbba3ee945fc8" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bfded3a7ba14df1933" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14143833704520253404" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "55be640c9e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16555380658321002793" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b78fc46a93d7" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "38aa" + } + ] + }, + "cborHex": "d87b9f9f809f1b76795479701cc3871be1bf3638992d8183ffd8669f1bfffffffffffffffd9f49be2c473030de181cf442774d1b54a7abdb8994e12dffff4c9960bbfbaccdbba3ee945fc8ff49bfded3a7ba14df1933d8669f1bc448fdd128207fdc9f4555be640c9ebf1be5c086fe9c98912946b78fc46a93d7ffffff4238aaff", + "cborBytes": [ + 216, 123, 159, 159, 128, 159, 27, 118, 121, 84, 121, 112, 28, 195, 135, 27, 225, 191, 54, 56, 153, 45, 129, 131, + 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 73, 190, 44, 71, 48, 48, 222, 24, 28, 244, + 66, 119, 77, 27, 84, 167, 171, 219, 137, 148, 225, 45, 255, 255, 76, 153, 96, 187, 251, 172, 205, 187, 163, 238, + 148, 95, 200, 255, 73, 191, 222, 211, 167, 186, 20, 223, 25, 51, 216, 102, 159, 27, 196, 72, 253, 209, 40, 32, + 127, 220, 159, 69, 85, 190, 100, 12, 158, 191, 27, 229, 192, 134, 254, 156, 152, 145, 41, 70, 183, 143, 196, 106, + 147, 215, 255, 255, 255, 66, 56, 170, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1084, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10216711952832239086" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40cd66d3db59" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74841d5800785304edd3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8455612057677977381" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f0fbf1b8dc90d64010d95ee4640cd66d3db594a74841d5800785304edd31b75585e5de067d725ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 15, 191, 27, 141, 201, 13, 100, 1, 13, 149, 238, + 70, 64, 205, 102, 211, 219, 89, 74, 116, 132, 29, 88, 0, 120, 83, 4, 237, 211, 27, 117, 88, 94, 93, 224, 103, 215, + 37, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1085, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13259481494928402927" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17261381430894643148" + } + } + ] + }, + "cborHex": "d8669f1bb803242afb12a9ef9fa01bef8cbef4e8ffc7ccffff", + "cborBytes": [ + 216, 102, 159, 27, 184, 3, 36, 42, 251, 18, 169, 239, 159, 160, 27, 239, 140, 190, 244, 232, 255, 199, 204, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1086, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc7fc34b8132d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "278925030940297186" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9f069fbf47cc7fc34b8132d11b03def0d67c2947e2ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 6, 159, 191, 71, 204, 127, 195, 75, 129, 50, 209, + 27, 3, 222, 240, 214, 124, 41, 71, 226, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1087, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1947887429181004541" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10113287384741460646" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9255d12d95fad62534" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05ed0c9b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5169826793741395302" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5849308832408275949" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6671087644970763428" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17516889103773409432" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5453385197704995055" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e9a1b1a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8223630064459292468" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4676016721857331199" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17637323488785201540" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b1b08494be6c85afd9fbf1b8c599d4b3ef43aa6499255d12d95fad625344405ed0c9b1b47beea13f740a566ffd8669f1bfffffffffffffff79f1b512ceb6461400bedd8669f1b5c9476de3ffac4a49f1bf3187dd4d85320981b4bae50f1ac9460ef444e9a1b1a1b722033f914519f341b40e48c6f1617bfffffff1bf4c45c4439b1f984ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 27, 8, 73, 75, 230, 200, 90, 253, 159, 191, 27, 140, 89, 157, 75, 62, 244, 58, 166, 73, 146, + 85, 209, 45, 149, 250, 214, 37, 52, 68, 5, 237, 12, 155, 27, 71, 190, 234, 19, 247, 64, 165, 102, 255, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 27, 81, 44, 235, 100, 97, 64, 11, 237, 216, 102, 159, 27, + 92, 148, 118, 222, 63, 250, 196, 164, 159, 27, 243, 24, 125, 212, 216, 83, 32, 152, 27, 75, 174, 80, 241, 172, + 148, 96, 239, 68, 78, 154, 27, 26, 27, 114, 32, 51, 249, 20, 81, 159, 52, 27, 64, 228, 140, 111, 22, 23, 191, 255, + 255, 255, 27, 244, 196, 92, 68, 57, 177, 249, 132, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1088, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13110144461326632035" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12912219699119240968" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bb5f096ed536dc4639f1bb3316b678bcdb708d9050c80ffff", + "cborBytes": [ + 216, 102, 159, 27, 181, 240, 150, 237, 83, 109, 196, 99, 159, 27, 179, 49, 107, 103, 139, 205, 183, 8, 217, 5, 12, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1089, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15564281868218803010" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6452577039095382877" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12548648477911788993" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7135007586846876407" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06e6c64fdbba" + }, + { + "_tag": "ByteArray", + "bytearray": "584d6cb555" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4998744721007362569" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "790105979874532794" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5394017055000538366" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac6c6da0cea26d59a411409a" + }, + { + "_tag": "ByteArray", + "bytearray": "ca8617a386d9ca" + } + ] + } + ] + } + ] + }, + "cborHex": "d9050c9fd8669f1bd7ff6fe5633c23429fa0d8669f1b598c28a13d1f435d9f1bae25c14e192dadc11b6304a398ebb9a2f74606e6c64fdbba45584d6cb555ffffd8669f1b455f1bd6da80c2099f1b0af70533d9555dba1b4adb65eecbb4acfe4cac6c6da0cea26d59a411409a47ca8617a386d9caffffffffff", + "cborBytes": [ + 217, 5, 12, 159, 216, 102, 159, 27, 215, 255, 111, 229, 99, 60, 35, 66, 159, 160, 216, 102, 159, 27, 89, 140, 40, + 161, 61, 31, 67, 93, 159, 27, 174, 37, 193, 78, 25, 45, 173, 193, 27, 99, 4, 163, 152, 235, 185, 162, 247, 70, 6, + 230, 198, 79, 219, 186, 69, 88, 77, 108, 181, 85, 255, 255, 216, 102, 159, 27, 69, 95, 27, 214, 218, 128, 194, 9, + 159, 27, 10, 247, 5, 51, 217, 85, 93, 186, 27, 74, 219, 101, 238, 203, 180, 172, 254, 76, 172, 108, 109, 160, 206, + 162, 109, 89, 164, 17, 64, 154, 71, 202, 134, 23, 163, 134, 217, 202, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1090, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5665422722613735332" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3695022130738946829" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f1b4e9f9ff313d16fa41b33475b0d03e6e30dffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 27, 78, 159, 159, 243, 19, 209, 111, 164, 27, 51, + 71, 91, 13, 3, 230, 227, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1091, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2436943191852140274" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5528829998253059992" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a740779afd263430e35a1dd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16663390270680083689" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7134054823234242984" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7370097780291627302" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13915851147258106190" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7280729325680714793" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4192715174584513782" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "965be2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14458823875469364594" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1dd548" + }, + { + "_tag": "ByteArray", + "bytearray": "46d0fc5dfb50118167ef" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10417044093178309922" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "d905089f9f9f1b21d1c2ebe82746f2ffffd8669f1bfffffffffffffff080ffd8669f1b4cba59972565af989f9f4c9a740779afd263430e35a1dd1be740412a2d962ce91b630141105b0a09a81b6647d8e1fa2d6926ffd8669f1bc11f08e39b88114e9f1b650a58bf2af7e429ffff1b3a2f843cc17ff4f69f43965be21bc8a80fb56749cd72ff9f431dd5484a46d0fc5dfb50118167ef1b9090c6692f796d22ffffff0eff", + "cborBytes": [ + 217, 5, 8, 159, 159, 159, 27, 33, 209, 194, 235, 232, 39, 70, 242, 255, 255, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 240, 128, 255, 216, 102, 159, 27, 76, 186, 89, 151, 37, 101, 175, 152, 159, 159, 76, 154, 116, + 7, 121, 175, 210, 99, 67, 14, 53, 161, 221, 27, 231, 64, 65, 42, 45, 150, 44, 233, 27, 99, 1, 65, 16, 91, 10, 9, + 168, 27, 102, 71, 216, 225, 250, 45, 105, 38, 255, 216, 102, 159, 27, 193, 31, 8, 227, 155, 136, 17, 78, 159, 27, + 101, 10, 88, 191, 42, 247, 228, 41, 255, 255, 27, 58, 47, 132, 60, 193, 127, 244, 246, 159, 67, 150, 91, 226, 27, + 200, 168, 15, 181, 103, 73, 205, 114, 255, 159, 67, 29, 213, 72, 74, 70, 208, 252, 93, 251, 80, 17, 129, 103, 239, + 27, 144, 144, 198, 105, 47, 121, 109, 34, 255, 255, 255, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1092, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7711521175748496698" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7a05d98dca159f03c0e539" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8251777150695763250" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12728647452548179585" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14230219160072187279" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a6d8b5506fbe2e" + }, + { + "_tag": "ByteArray", + "bytearray": "772bce942d477c88" + }, + { + "_tag": "ByteArray", + "bytearray": "7f" + }, + { + "_tag": "ByteArray", + "bytearray": "fc165c3308" + } + ] + } + ] + } + ] + }, + "cborHex": "d9050a9f1b6b04d3a6e6644d3a9f9f4b7a05d98dca159f03c0e5391b7284339948e7ed32ffd8669f1bb0a53d6b3850a6819f1bc57be4ee600f6d8f47a6d8b5506fbe2e48772bce942d477c88417f45fc165c3308ffffffff", + "cborBytes": [ + 217, 5, 10, 159, 27, 107, 4, 211, 166, 230, 100, 77, 58, 159, 159, 75, 122, 5, 217, 141, 202, 21, 159, 3, 192, + 229, 57, 27, 114, 132, 51, 153, 72, 231, 237, 50, 255, 216, 102, 159, 27, 176, 165, 61, 107, 56, 80, 166, 129, + 159, 27, 197, 123, 228, 238, 96, 15, 109, 143, 71, 166, 216, 181, 80, 111, 190, 46, 72, 119, 43, 206, 148, 45, 71, + 124, 136, 65, 127, 69, 252, 22, 92, 51, 8, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1093, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b89cb04b90f11fbe" + } + ] + }, + "cborHex": "d905039f48b89cb04b90f11fbeff", + "cborBytes": [217, 5, 3, 159, 72, 184, 156, 176, 75, 144, 241, 31, 190, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1094, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4065911208285492782" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5204065a384" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8799607650663980329" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3658978107904700967" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905029f0a9fbf1b386d04b3aa22d62e46a5204065a3841b7a1e7c8934a2dd291b32c74d33fa973227ffffff", + "cborBytes": [ + 217, 5, 2, 159, 10, 159, 191, 27, 56, 109, 4, 179, 170, 34, 214, 46, 70, 165, 32, 64, 101, 163, 132, 27, 122, 30, + 124, 137, 52, 162, 221, 41, 27, 50, 199, 77, 51, 250, 151, 50, 39, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1095, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "98367885576008250" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9686269562346050349" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2437633702639799810" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4599c5648e173a" + } + ] + }, + "cborHex": "d87d9f1b015d79121d10723a1b866c8ad8ce50932d1b21d436effa5d8e02474599c5648e173aff", + "cborBytes": [ + 216, 125, 159, 27, 1, 93, 121, 18, 29, 16, 114, 58, 27, 134, 108, 138, 216, 206, 80, 147, 45, 27, 33, 212, 54, + 239, 250, 93, 142, 2, 71, 69, 153, 197, 100, 142, 23, 58, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1096, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9168773435580659254" + }, + "fields": [] + }, + "cborHex": "d8669f1b7f3e06dc85d2b63680ff", + "cborBytes": [216, 102, 159, 27, 127, 62, 6, 220, 133, 210, 182, 54, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1097, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2692354362499501694" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16524926904508580047" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14619156156236761517" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "011ab725e422027f6955" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "341049190017278361" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6406252889219679077" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3854783734913820571" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9241" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4630467404338268056" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3940951722504963551" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13396072031884179633" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14993700677150055091" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "09ec42" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "855674438707808897" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d9d63e2144be9d07b" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f1b255d2a072a418e7e1be5545577828780cfd8669f1bcae1ad11887509ad9fa09f4a011ab725e422027f69551b04bba66e6dea2199ffffff1b58e7950f9b424365d8669f1b357ef162257de79b9f9f4292411b4042b9922b9b87981b36b112b628df45dfff1bb9e868899e0078b1a0d8669f1bd01453536a101ab39f4309ec42ffffd8669f1b0bdff75e528f8a819f492d9d63e2144be9d07bffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 27, 37, 93, 42, 7, 42, 65, 142, 126, 27, 229, 84, + 85, 119, 130, 135, 128, 207, 216, 102, 159, 27, 202, 225, 173, 17, 136, 117, 9, 173, 159, 160, 159, 74, 1, 26, + 183, 37, 228, 34, 2, 127, 105, 85, 27, 4, 187, 166, 110, 109, 234, 33, 153, 255, 255, 255, 27, 88, 231, 149, 15, + 155, 66, 67, 101, 216, 102, 159, 27, 53, 126, 241, 98, 37, 125, 231, 155, 159, 159, 66, 146, 65, 27, 64, 66, 185, + 146, 43, 155, 135, 152, 27, 54, 177, 18, 182, 40, 223, 69, 223, 255, 27, 185, 232, 104, 137, 158, 0, 120, 177, + 160, 216, 102, 159, 27, 208, 20, 83, 83, 106, 16, 26, 179, 159, 67, 9, 236, 66, 255, 255, 216, 102, 159, 27, 11, + 223, 247, 94, 82, 143, 138, 129, 159, 73, 45, 157, 99, 226, 20, 75, 233, 208, 123, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1098, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16877008044188319869" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a5f1dadefe8a0514dca" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9074521349102135357" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "65badc" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "051255fd5e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7230393840638870311" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b2400a2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13434988186399988314" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4391c76b9eae0669f9e5f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8f0af" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6025816444799997463" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "880506" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "06abfb01fb" + }, + { + "_tag": "ByteArray", + "bytearray": "0783f7f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "675230418812042766" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "26feecb44ea700" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12069343098808967035" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c57903ff" + } + ] + }, + "cborHex": "d87d9f9fbf1bea372d65e141407d4a3a5f1dadefe8a0514dcaff80d8669f1b7def2d168fee683d9f4365badcffffbf45051255fd5e1b645784e3c973c327444b2400a21bba72aa92ebf0da5a41954bc4391c76b9eae0669f9e5f43a8f0af1b53a000216202d617ffff43880506d905099f4506abfb01fb440783f7f91b095ee67d06d47e0ebf4726feecb44ea7001ba77eeb9a2cd21f7bffff44c57903ffff", + "cborBytes": [ + 216, 125, 159, 159, 191, 27, 234, 55, 45, 101, 225, 65, 64, 125, 74, 58, 95, 29, 173, 239, 232, 160, 81, 77, 202, + 255, 128, 216, 102, 159, 27, 125, 239, 45, 22, 143, 238, 104, 61, 159, 67, 101, 186, 220, 255, 255, 191, 69, 5, + 18, 85, 253, 94, 27, 100, 87, 132, 227, 201, 115, 195, 39, 68, 75, 36, 0, 162, 27, 186, 114, 170, 146, 235, 240, + 218, 90, 65, 149, 75, 196, 57, 28, 118, 185, 234, 224, 102, 159, 158, 95, 67, 168, 240, 175, 27, 83, 160, 0, 33, + 98, 2, 214, 23, 255, 255, 67, 136, 5, 6, 217, 5, 9, 159, 69, 6, 171, 251, 1, 251, 68, 7, 131, 247, 249, 27, 9, 94, + 230, 125, 6, 212, 126, 14, 191, 71, 38, 254, 236, 180, 78, 167, 0, 27, 167, 126, 235, 154, 44, 210, 31, 123, 255, + 255, 68, 197, 121, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1099, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8687089449083064524" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11517874709569823288" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1e9434ee46bbe68d6102" + }, + { + "_tag": "ByteArray", + "bytearray": "0a2d398dfc0b6bdb0b85" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff0581" + }, + { + "_tag": "ByteArray", + "bytearray": "fdd7" + }, + { + "_tag": "ByteArray", + "bytearray": "02fc1fc2" + }, + { + "_tag": "ByteArray", + "bytearray": "a6a105" + }, + { + "_tag": "ByteArray", + "bytearray": "be" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b788ebdd3e8a3d0cc9f9fd8669f1b9fd7b606275d62389f4a1e9434ee46bbe68d61024a0a2d398dfc0b6bdb0b85ffffff9f9f43ff058142fdd74402fc1fc243a6a10541beffffffff", + "cborBytes": [ + 216, 102, 159, 27, 120, 142, 189, 211, 232, 163, 208, 204, 159, 159, 216, 102, 159, 27, 159, 215, 182, 6, 39, 93, + 98, 56, 159, 74, 30, 148, 52, 238, 70, 187, 230, 141, 97, 2, 74, 10, 45, 57, 141, 252, 11, 107, 219, 11, 133, 255, + 255, 255, 159, 159, 67, 255, 5, 129, 66, 253, 215, 68, 2, 252, 31, 194, 67, 166, 161, 5, 65, 190, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1100, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0402fb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10709791406713596233" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f430402fbd8669f1b94a0d28a9fb1e94980ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 67, 4, 2, 251, 216, 102, 159, 27, 148, 160, 210, + 138, 159, 177, 233, 73, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1101, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c24815dd369179" + }, + { + "_tag": "ByteArray", + "bytearray": "e67268ef356f0a" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ab2d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3984563601598195342" + } + }, + { + "_tag": "ByteArray", + "bytearray": "71d8a6dada0ef8b404e4" + }, + { + "_tag": "ByteArray", + "bytearray": "068fdffecd34d450e6c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3045487798675831376" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4b7c0dc6a8f07828e5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8326" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8486022744747575808" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7a99677d92bd3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "809538579397128133" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d87a9f9fd9050d9f0947c24815dd36917947e67268ef356f0affff9f42ab2dd8669f1bfffffffffffffff29f1b374c037c0a36268e4a71d8a6dada0ef8b404e44a068fdffecd34d450e6c71b2a43bf0467dbfa50ffff494b7c0dc6a8f07828e5bf4283261b75c468b9b8908a0047a7a99677d92bd31b0b3c0f0c80f0afc5ffa0ffff", + "cborBytes": [ + 216, 122, 159, 159, 217, 5, 13, 159, 9, 71, 194, 72, 21, 221, 54, 145, 121, 71, 230, 114, 104, 239, 53, 111, 10, + 255, 255, 159, 66, 171, 45, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 55, 76, 3, 124, + 10, 54, 38, 142, 74, 113, 216, 166, 218, 218, 14, 248, 180, 4, 228, 74, 6, 143, 223, 254, 205, 52, 212, 80, 230, + 199, 27, 42, 67, 191, 4, 103, 219, 250, 80, 255, 255, 73, 75, 124, 13, 198, 168, 240, 120, 40, 229, 191, 66, 131, + 38, 27, 117, 196, 104, 185, 184, 144, 138, 0, 71, 167, 169, 150, 119, 217, 43, 211, 27, 11, 60, 15, 12, 128, 240, + 175, 197, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1102, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "433c84ddfe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9130696935701370282" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab1bd1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11214298647334593062" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2578931868839971372" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "26e8ae4cb3" + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9fbf45433c84ddfe1b7eb6c07c8c3a55aa43ab1bd11b9ba131342f85a226ff80d8669f1b23ca34def6240a2c9f4526e8ae4cb3ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 191, 69, 67, 60, 132, 221, 254, 27, 126, 182, 192, + 124, 140, 58, 85, 170, 67, 171, 27, 209, 27, 155, 161, 49, 52, 47, 133, 162, 38, 255, 128, 216, 102, 159, 27, 35, + 202, 52, 222, 246, 36, 10, 44, 159, 69, 38, 232, 174, 76, 179, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1103, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18359192247120780700" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "396fb520d070" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f1bfec8f413dcbd5d9cbf412e46396fb520d070ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 27, 254, 200, 244, 19, 220, 189, 93, 156, 191, 65, + 46, 70, 57, 111, 181, 32, 208, 112, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1104, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1335693104547732859" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16005967118564389411" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11872991188271628670" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2208835402491370972" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5503136205474656694" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16891120089559024430" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6bebbc757bc9fb71" + }, + { + "_tag": "ByteArray", + "bytearray": "8e32" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9128814273393582565" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b128955cd41819d7b9f9fd8669f1bde209e4a849cf2239f1ba4c556947646017e1b1ea75c187cce1ddcffff80ffd87f9fd8669f1b4c5f1138d5e871b69f1bea69503a7ca1432e486bebbc757bc9fb71428e321b7eb010371223e1e5ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 18, 137, 85, 205, 65, 129, 157, 123, 159, 159, 216, 102, 159, 27, 222, 32, 158, 74, 132, 156, + 242, 35, 159, 27, 164, 197, 86, 148, 118, 70, 1, 126, 27, 30, 167, 92, 24, 124, 206, 29, 220, 255, 255, 128, 255, + 216, 127, 159, 216, 102, 159, 27, 76, 95, 17, 56, 213, 232, 113, 182, 159, 27, 234, 105, 80, 58, 124, 161, 67, 46, + 72, 107, 235, 188, 117, 123, 201, 251, 113, 66, 142, 50, 27, 126, 176, 16, 55, 18, 35, 225, 229, 255, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1105, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9477983565206923958" + }, + "fields": [] + }, + "cborHex": "d8669f1b83888fd607262ab680ff", + "cborBytes": [216, 102, 159, 27, 131, 136, 143, 214, 7, 38, 42, 182, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1106, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11527364735618525314" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "edd3894361" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10698381432931016176" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "248154" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6778723392387149973" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17158330067417440944" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10486847347570840791" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12455341924024265095" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7a73e2b33d4a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17446716193875531030" + } + } + ] + }, + "cborHex": "d8669f1b9ff96d2706e828829f45edd3894361d8669f1b9478493b157cddf09f9f432481541b5e12dd0299ddf0951bee1ea2499f5222b0ff1b9188c419d5b514d7ffffd8669f1bacda437d197f29879f467a73e2b33d4affff1bf21f2ff111019516ffff", + "cborBytes": [ + 216, 102, 159, 27, 159, 249, 109, 39, 6, 232, 40, 130, 159, 69, 237, 211, 137, 67, 97, 216, 102, 159, 27, 148, + 120, 73, 59, 21, 124, 221, 240, 159, 159, 67, 36, 129, 84, 27, 94, 18, 221, 2, 153, 221, 240, 149, 27, 238, 30, + 162, 73, 159, 82, 34, 176, 255, 27, 145, 136, 196, 25, 213, 181, 20, 215, 255, 255, 216, 102, 159, 27, 172, 218, + 67, 125, 25, 127, 41, 135, 159, 70, 122, 115, 226, 179, 61, 74, 255, 255, 27, 242, 31, 47, 241, 17, 1, 149, 22, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1107, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3467255457314468125" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2664746163947492944" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b150b61c57778f8a00f4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6547459634746507104" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4589841cb56dec333a7ed0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12854337857828905575" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ce34f10" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16409945187846294703" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38bb801b89c5aede619d8b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "db" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13381357809877611951" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3154385600081169444" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2ed3675cd6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9875060137333319707" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9336365333449474097" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050a9f1b301e2a77d6c3711dbf1b24fb148486acd6504ab150b61c57778f8a00f41b5add3fd90e463f604b4589841cb56dec333a7ed01bb263c82d2ebf6267445ce34f101be3bbd63469358caf4b38bb801b89c5aede619d8bff41dbd8669f1bb9b42207d62775af9fd8669f1b2bc6a0fd99720c249f452ed3675cd61b890b42dfe55f681b1b81916ecdf9870031ffffffffff", + "cborBytes": [ + 217, 5, 10, 159, 27, 48, 30, 42, 119, 214, 195, 113, 29, 191, 27, 36, 251, 20, 132, 134, 172, 214, 80, 74, 177, + 80, 182, 28, 87, 119, 143, 138, 0, 244, 27, 90, 221, 63, 217, 14, 70, 63, 96, 75, 69, 137, 132, 28, 181, 109, 236, + 51, 58, 126, 208, 27, 178, 99, 200, 45, 46, 191, 98, 103, 68, 92, 227, 79, 16, 27, 227, 187, 214, 52, 105, 53, + 140, 175, 75, 56, 187, 128, 27, 137, 197, 174, 222, 97, 157, 139, 255, 65, 219, 216, 102, 159, 27, 185, 180, 34, + 7, 214, 39, 117, 175, 159, 216, 102, 159, 27, 43, 198, 160, 253, 153, 114, 12, 36, 159, 69, 46, 211, 103, 92, 214, + 27, 137, 11, 66, 223, 229, 95, 104, 27, 27, 129, 145, 110, 205, 249, 135, 0, 49, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1108, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [] + } + ] + }, + "cborHex": "d87a9fd9050280ff", + "cborBytes": [216, 122, 159, 217, 5, 2, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1109, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11919893117707077798" + }, + "fields": [] + }, + "cborHex": "d8669f1ba56bf7a2e18dc8a680ff", + "cborBytes": [216, 102, 159, 27, 165, 107, 247, 162, 225, 141, 200, 166, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1110, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9263562159415231321" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11826364062712446568" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7988621126457070925" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12436151635545534587" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c174cd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "137807777493471695" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3961" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14970196420470016606" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1194502023516288898" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe40f14c8581482f268087" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1750985982232115635" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14822831558882398655" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15292334099997149757" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "481870618665587063" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3138309768224882092" + } + } + ] + }, + "cborHex": "d905009fd8669f1b808ec8b41ab203599fd8669f1ba41faf74ce6bbe689f1b6edd4896c7a7954dffffd8669f1bac961605e195b07b9f43c174cd1b01e9977188c8d1cf4239611bcfc0d25433f08a5effffffffbf1b1093b942fb2c77824bfe40f14c8581482f2680871b184cc07945a239b31bcdb546c4a0a291bf1bd43948d778ec4a3d1b06aff2c64d429177ff1b2b8d841b522ebdacff", + "cborBytes": [ + 217, 5, 0, 159, 216, 102, 159, 27, 128, 142, 200, 180, 26, 178, 3, 89, 159, 216, 102, 159, 27, 164, 31, 175, 116, + 206, 107, 190, 104, 159, 27, 110, 221, 72, 150, 199, 167, 149, 77, 255, 255, 216, 102, 159, 27, 172, 150, 22, 5, + 225, 149, 176, 123, 159, 67, 193, 116, 205, 27, 1, 233, 151, 113, 136, 200, 209, 207, 66, 57, 97, 27, 207, 192, + 210, 84, 51, 240, 138, 94, 255, 255, 255, 255, 191, 27, 16, 147, 185, 66, 251, 44, 119, 130, 75, 254, 64, 241, 76, + 133, 129, 72, 47, 38, 128, 135, 27, 24, 76, 192, 121, 69, 162, 57, 179, 27, 205, 181, 70, 196, 160, 162, 145, 191, + 27, 212, 57, 72, 215, 120, 236, 74, 61, 27, 6, 175, 242, 198, 77, 66, 145, 119, 255, 27, 43, 141, 132, 27, 82, 46, + 189, 172, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1111, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15788779201626546293" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04cf83002bf0529955204d42" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5488387915178081612" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1a6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2aca032a248c745407" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15562233905999817230" + } + } + ] + }, + "cborHex": "d9050c9fd8669f1bdb1d03080606a07580ff9f4c04cf83002bf0529955204d429f1b4c2aabbae9bc7d4c42c1a6ff492aca032a248c745407ff1bd7f8294906a8aa0eff", + "cborBytes": [ + 217, 5, 12, 159, 216, 102, 159, 27, 219, 29, 3, 8, 6, 6, 160, 117, 128, 255, 159, 76, 4, 207, 131, 0, 43, 240, 82, + 153, 85, 32, 77, 66, 159, 27, 76, 42, 171, 186, 233, 188, 125, 76, 66, 193, 166, 255, 73, 42, 202, 3, 42, 36, 140, + 116, 84, 7, 255, 27, 215, 248, 41, 73, 6, 168, 170, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1112, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18209936932124400731" + }, + "fields": [] + }, + "cborHex": "d8669f1bfcb6b128cd8a9c5b80ff", + "cborBytes": [216, 102, 159, 27, 252, 182, 177, 40, 205, 138, 156, 91, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1113, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "23688cb7412db6da82a35573" + } + ] + }, + "cborHex": "d9050a9f804c23688cb7412db6da82a35573ff", + "cborBytes": [217, 5, 10, 159, 128, 76, 35, 104, 140, 183, 65, 45, 182, 218, 130, 163, 85, 115, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1114, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11710824827587651371" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "30" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12708748265176069077" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2372213165525587942" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1738803290959895830" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12316807910222099313" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7082529098517496520" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2e135fe9" + } + ] + }, + "cborHex": "d8669f1ba2853522532fe72b9f41301bb05e8b369dae73d59fd8669f1b20ebcb4e36a857e69f1b182178616bf1dd164109ffff1baaee17897f8273711b624a32b0b480c2c8ff442e135fe9ffff", + "cborBytes": [ + 216, 102, 159, 27, 162, 133, 53, 34, 83, 47, 231, 43, 159, 65, 48, 27, 176, 94, 139, 54, 157, 174, 115, 213, 159, + 216, 102, 159, 27, 32, 235, 203, 78, 54, 168, 87, 230, 159, 27, 24, 33, 120, 97, 107, 241, 221, 22, 65, 9, 255, + 255, 27, 170, 238, 23, 137, 127, 130, 115, 113, 27, 98, 74, 50, 176, 180, 128, 194, 200, 255, 68, 46, 19, 95, 233, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1115, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15920437717325004636" + }, + "fields": [] + }, + "cborHex": "d8669f1bdcf0c1c0f9e33f5c80ff", + "cborBytes": [216, 102, 159, 27, 220, 240, 193, 192, 249, 227, 63, 92, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1116, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6595659540083592221" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4401123661846243112" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1522911908949599224" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4421926287475321761" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11544753067416860040" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5b887d680a194c1d9f9fbf1b3d13eea6fce967281b1522784ffd2723f81b3d5dd687b3edaba11ba03733bf82fbb588ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 91, 136, 125, 104, 10, 25, 76, 29, 159, 159, 191, 27, 61, 19, 238, 166, 252, 233, 103, 40, 27, + 21, 34, 120, 79, 253, 39, 35, 248, 27, 61, 93, 214, 135, 179, 237, 171, 161, 27, 160, 55, 51, 191, 130, 251, 181, + 136, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1117, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16400656422407192403" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "00ae02fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10415975780985849012" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4527300370891621166" + } + }, + { + "_tag": "ByteArray", + "bytearray": "052000ee03057c64f8" + } + ] + } + ] + }, + "cborHex": "d905069f9f1be39ad61f2ccf3f539f4400ae02fb1b908cfac95ebbc4b41207ffff9f1b3ed433b35e7d432e49052000ee03057c64f8ffff", + "cborBytes": [ + 217, 5, 6, 159, 159, 27, 227, 154, 214, 31, 44, 207, 63, 83, 159, 68, 0, 174, 2, 251, 27, 144, 140, 250, 201, 94, + 187, 196, 180, 18, 7, 255, 255, 159, 27, 62, 212, 51, 179, 94, 125, 67, 46, 73, 5, 32, 0, 238, 3, 5, 124, 100, + 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1118, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4786194843815451659" + }, + "fields": [] + }, + "cborHex": "d8669f1b426bfada236d1c0b80ff", + "cborBytes": [216, 102, 159, 27, 66, 107, 250, 218, 35, 109, 28, 11, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1119, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2691987956444816676" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d413e4e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d23bc747d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6a0e3c54219bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30e4e307" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a157a656b44aca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7b36a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b77278174f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1611449050092893132" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18123082537145166842" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b255bdcc89b85e5249f9fbf44d413e4e3459d23bc747d47f6a0e3c54219bb4430e4e307ffbf47a157a656b44aca43f7b36a45b77278174f1b165d045f8c6d73cc42ea121bfb821f8c1d9f6bfaffffffff", + "cborBytes": [ + 216, 102, 159, 27, 37, 91, 220, 200, 155, 133, 229, 36, 159, 159, 191, 68, 212, 19, 228, 227, 69, 157, 35, 188, + 116, 125, 71, 246, 160, 227, 197, 66, 25, 187, 68, 48, 228, 227, 7, 255, 191, 71, 161, 87, 166, 86, 180, 74, 202, + 67, 247, 179, 106, 69, 183, 114, 120, 23, 79, 27, 22, 93, 4, 95, 140, 109, 115, 204, 66, 234, 18, 27, 251, 130, + 31, 140, 29, 159, 107, 250, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1120, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c6cf1b762a55a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11388969641193960927" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14109895389867980235" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1036647342704379104" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1553816963565497793" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4310624086434400324" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1efae9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16195465011621274201" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e3f358e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10568607533067463358" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a68a27fc10667d2dbb9eed" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6946842875972586129" + } + } + ] + }, + "cborHex": "d9050d9fd905009f477c6cf1b762a55a1b9e0dbf8c1d12f5df1bc3d06b198300b5cbd8669f1b0e62e9440b3f44e09f1b1590444bbf4c2dc11b3bd269c4982a4844ffffffbf431efae91be0c1d99eedf42259446e3f358e1b92ab3c8e7300eabeff4ba68a27fc10667d2dbb9eedd90500801b606824ca2ccc8a91ff", + "cborBytes": [ + 217, 5, 13, 159, 217, 5, 0, 159, 71, 124, 108, 241, 183, 98, 165, 90, 27, 158, 13, 191, 140, 29, 18, 245, 223, 27, + 195, 208, 107, 25, 131, 0, 181, 203, 216, 102, 159, 27, 14, 98, 233, 68, 11, 63, 68, 224, 159, 27, 21, 144, 68, + 75, 191, 76, 45, 193, 27, 59, 210, 105, 196, 152, 42, 72, 68, 255, 255, 255, 191, 67, 30, 250, 233, 27, 224, 193, + 217, 158, 237, 244, 34, 89, 68, 110, 63, 53, 142, 27, 146, 171, 60, 142, 115, 0, 234, 190, 255, 75, 166, 138, 39, + 252, 16, 102, 125, 45, 187, 158, 237, 217, 5, 0, 128, 27, 96, 104, 36, 202, 44, 204, 138, 145, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1121, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8367545989677302379" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1909304406965438598" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "15cb73e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce3440e1" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3840420827682808651" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16028435231228293312" + } + }, + { + "_tag": "ByteArray", + "bytearray": "61fb12cdb17fef6f" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14513042671905935859" + } + } + ] + }, + "cborHex": "d905009fa0bf1b741f7ebe9475c26b1b1a7f363e014348864415cb73e544ce3440e1ff1bfffffffffffffffd9fd8669f1b354bea65360ba34b9f1bde7070eba6b7f0c04861fb12cdb17fef6fffffff1bc968af6aad0a11f3ff", + "cborBytes": [ + 217, 5, 0, 159, 160, 191, 27, 116, 31, 126, 190, 148, 117, 194, 107, 27, 26, 127, 54, 62, 1, 67, 72, 134, 68, 21, + 203, 115, 229, 68, 206, 52, 64, 225, 255, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 216, 102, 159, 27, 53, + 75, 234, 101, 54, 11, 163, 75, 159, 27, 222, 112, 112, 235, 166, 183, 240, 192, 72, 97, 251, 18, 205, 177, 127, + 239, 111, 255, 255, 255, 27, 201, 104, 175, 106, 173, 10, 17, 243, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1122, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10591084361297709566" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15196740778463710856" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17786243471856328526" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d8e03d44fef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16875065208689524864" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7535c879a800" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a17379d9efd5a5f4" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b92fb171cd55849fe9fbf1bd2e5ab38e405ce881bf6d56e33bc9b5f4e464d8e03d44fef1bea3046663d7e0080467535c879a80048a17379d9efd5a5f4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 146, 251, 23, 28, 213, 88, 73, 254, 159, 191, 27, 210, 229, 171, 56, 228, 5, 206, 136, 27, 246, + 213, 110, 51, 188, 155, 95, 78, 70, 77, 142, 3, 212, 79, 239, 27, 234, 48, 70, 102, 61, 126, 0, 128, 70, 117, 53, + 200, 121, 168, 0, 72, 161, 115, 121, 217, 239, 213, 165, 244, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1123, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eef0d3c5bda263eaf6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "185467814709512007" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5234261144928434736" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11634867668081159509" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6764193821137255206" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3738060122394373674" + } + } + } + ] + } + ] + }, + "cborHex": "d87c9f49eef0d3c5bda263eaf6d8669f1b0292e9fead0747479f1b48a3d4c76d16ba30ffff1ba1775a7ffca7ad55bf1b5ddf3e712cc73b261b33e041e0505eae2affff", + "cborBytes": [ + 216, 124, 159, 73, 238, 240, 211, 197, 189, 162, 99, 234, 246, 216, 102, 159, 27, 2, 146, 233, 254, 173, 7, 71, + 71, 159, 27, 72, 163, 212, 199, 109, 22, 186, 48, 255, 255, 27, 161, 119, 90, 127, 252, 167, 173, 85, 191, 27, 93, + 223, 62, 113, 44, 199, 59, 38, 27, 51, 224, 65, 224, 80, 94, 174, 42, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1124, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6217270832272728501" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1478486740502601917" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6553450129494305899" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97600258e4958ed82ed4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17872850627946931784" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7355501718927365966" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dddd3475c853f1d10846" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e26d8e457daae015fca19a" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11910027156999476406" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5052335633021702143" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15380794478075242820" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13230770819903406799" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8070916935955272407" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9194281993365922426" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1847625733118045243" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5308841040059740348" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9edc8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7192116869502128185" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6508855821647114606" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10203222792417762947" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "682c1767eda23fdf" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7999628426761601382" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7856831635065626156" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14913006747045016667" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10642197281331530489" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49f87a47" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c71903598a2d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "344091fdf71c31cd6b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d2b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a78cd0f1" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b56482ee1a60361b59fd8669f1b1484a3db6cc860bd9fbf1b5af2882bcdbeec6b4a97600258e4958ed82ed41bf8091ef3a264e6481b6613fdd79d70d74e4adddd3475c853f1d108464be26d8e457daae015fca19aff9f1ba548ea98e63594b61b461d807d644e8fffffd8669f1bd5738f163cf6e9449f1bb79d23f608f242cf1b7001a831134c52d71b7f98a6c27358a27affff1b19a415d0ac5f2c3bbf1b49accacc69c6b0bc43b9edc81b63cf882ff5c4d0391b5a5419e26782716e1b8d9921121a3ade8348682c1767eda23fdfffffff1b6f0463ab983e0166bf1b6d0912beac235e2c1bcef5a49fba9f345b1b93b0ae0ae764caf94449f87a47475c71903598a2d849344091fdf71c31cd6b429d2b44a78cd0f1ffffff", + "cborBytes": [ + 216, 102, 159, 27, 86, 72, 46, 225, 166, 3, 97, 181, 159, 216, 102, 159, 27, 20, 132, 163, 219, 108, 200, 96, 189, + 159, 191, 27, 90, 242, 136, 43, 205, 190, 236, 107, 74, 151, 96, 2, 88, 228, 149, 142, 216, 46, 212, 27, 248, 9, + 30, 243, 162, 100, 230, 72, 27, 102, 19, 253, 215, 157, 112, 215, 78, 74, 221, 221, 52, 117, 200, 83, 241, 209, 8, + 70, 75, 226, 109, 142, 69, 125, 170, 224, 21, 252, 161, 154, 255, 159, 27, 165, 72, 234, 152, 230, 53, 148, 182, + 27, 70, 29, 128, 125, 100, 78, 143, 255, 255, 216, 102, 159, 27, 213, 115, 143, 22, 60, 246, 233, 68, 159, 27, + 183, 157, 35, 246, 8, 242, 66, 207, 27, 112, 1, 168, 49, 19, 76, 82, 215, 27, 127, 152, 166, 194, 115, 88, 162, + 122, 255, 255, 27, 25, 164, 21, 208, 172, 95, 44, 59, 191, 27, 73, 172, 202, 204, 105, 198, 176, 188, 67, 185, + 237, 200, 27, 99, 207, 136, 47, 245, 196, 208, 57, 27, 90, 84, 25, 226, 103, 130, 113, 110, 27, 141, 153, 33, 18, + 26, 58, 222, 131, 72, 104, 44, 23, 103, 237, 162, 63, 223, 255, 255, 255, 27, 111, 4, 99, 171, 152, 62, 1, 102, + 191, 27, 109, 9, 18, 190, 172, 35, 94, 44, 27, 206, 245, 164, 159, 186, 159, 52, 91, 27, 147, 176, 174, 10, 231, + 100, 202, 249, 68, 73, 248, 122, 71, 71, 92, 113, 144, 53, 152, 162, 216, 73, 52, 64, 145, 253, 247, 28, 49, 205, + 107, 66, 157, 43, 68, 167, 140, 208, 241, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1125, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "df938a7fb13365" + } + ] + }, + "cborHex": "d87b9f8047df938a7fb13365ff", + "cborBytes": [216, 123, 159, 128, 71, 223, 147, 138, 127, 177, 51, 101, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1126, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15265684631202743556" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13147093682956132812" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1347471209387669726" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5de18cb39d4b9c6445c3" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "923873823082670066" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11739456853372692148" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6390660588168287290" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "649cd1ccb248e75e9b6d22" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1533626216503033549" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15473303616843453306" + } + }, + { + "_tag": "ByteArray", + "bytearray": "50afad" + }, + { + "_tag": "ByteArray", + "bytearray": "a47b5f7ec961" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "86a6c4c416b7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6765748407600782653" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c7744035e2943d0016b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2fedaa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7cdcf32c07cfd9dcf8210" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "895e084b827d0d93faedc2b6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ae748bf34a1b968829091" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "641530283920751391" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccaf96" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7784062409998832389" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "492aa285830d0d7d44e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13240661687822549838" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "825f13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a545fc1c39dff83645" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bd3da9b4a7ffac5049f9f1bb673dc0c6161e1ccbf1b12b32decfc9e38de4a5de18cb39d4b9c6445c3ffff9fd8669f1b0cd24258e21fe7f29f1ba2eaedcf514de6b4ffffd8669f1b58b02ff21ddc143a80ff9f4b649cd1ccb248e75e9b6d22ff9f1b154888eb1ce3becd1bd6bc37a88fb8937a4350afad46a47b5f7ec961ffff4686a6c4c416b7d8669f1b5de4c4548ab59d3d9fbf4a1c7744035e2943d0016b432fedaa415a4bd7cdcf32c07cfd9dcf821041894c895e084b827d0d93faedc2b64b8ae748bf34a1b9688290911b08e72c64edc07b1f43ccaf961b6c068b8529739305ffbf4a492aa285830d0d7d44e51bb7c047a72dc9834e43825f13415941c649a545fc1c39dff83645ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 211, 218, 155, 74, 127, 250, 197, 4, 159, 159, 27, 182, 115, 220, 12, 97, 97, 225, 204, 191, + 27, 18, 179, 45, 236, 252, 158, 56, 222, 74, 93, 225, 140, 179, 157, 75, 156, 100, 69, 195, 255, 255, 159, 216, + 102, 159, 27, 12, 210, 66, 88, 226, 31, 231, 242, 159, 27, 162, 234, 237, 207, 81, 77, 230, 180, 255, 255, 216, + 102, 159, 27, 88, 176, 47, 242, 29, 220, 20, 58, 128, 255, 159, 75, 100, 156, 209, 204, 178, 72, 231, 94, 155, + 109, 34, 255, 159, 27, 21, 72, 136, 235, 28, 227, 190, 205, 27, 214, 188, 55, 168, 143, 184, 147, 122, 67, 80, + 175, 173, 70, 164, 123, 95, 126, 201, 97, 255, 255, 70, 134, 166, 196, 196, 22, 183, 216, 102, 159, 27, 93, 228, + 196, 84, 138, 181, 157, 61, 159, 191, 74, 28, 119, 68, 3, 94, 41, 67, 208, 1, 107, 67, 47, 237, 170, 65, 90, 75, + 215, 205, 207, 50, 192, 124, 253, 157, 207, 130, 16, 65, 137, 76, 137, 94, 8, 75, 130, 125, 13, 147, 250, 237, + 194, 182, 75, 138, 231, 72, 191, 52, 161, 185, 104, 130, 144, 145, 27, 8, 231, 44, 100, 237, 192, 123, 31, 67, + 204, 175, 150, 27, 108, 6, 139, 133, 41, 115, 147, 5, 255, 191, 74, 73, 42, 162, 133, 131, 13, 13, 125, 68, 229, + 27, 183, 192, 71, 167, 45, 201, 131, 78, 67, 130, 95, 19, 65, 89, 65, 198, 73, 165, 69, 252, 28, 57, 223, 248, 54, + 69, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1127, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18036390290319901579" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3848580523736505293" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7283355204272995586" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10442653289360163732" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12888414889050795453" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3962696366649498705" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14485948767941072304" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11369699721855595524" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2459333412480686162" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a59a9e689314" + }, + { + "_tag": "ByteArray", + "bytearray": "9fefc05144965315" + }, + { + "_tag": "ByteArray", + "bytearray": "61fb654da5563796" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "19f73047390e5af0d6ede8" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bfa4e21687cd2838b9fbf1b3568e7987ecd1bcd1b6513acf82baf3d021b90ebc1d6d0e083941bb2dcd90e4bba6dbdff9fbf1b36fe5359a6dfdc511bc9086da793a295b01b9dc949a8640f74041b22214eb563291852ff9f46a59a9e689314489fefc051449653154861fb654da5563796ff4b19f73047390e5af0d6ede8ffd87c80a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 250, 78, 33, 104, 124, 210, 131, 139, 159, 191, 27, 53, 104, 231, 152, 126, 205, 27, 205, 27, + 101, 19, 172, 248, 43, 175, 61, 2, 27, 144, 235, 193, 214, 208, 224, 131, 148, 27, 178, 220, 217, 14, 75, 186, + 109, 189, 255, 159, 191, 27, 54, 254, 83, 89, 166, 223, 220, 81, 27, 201, 8, 109, 167, 147, 162, 149, 176, 27, + 157, 201, 73, 168, 100, 15, 116, 4, 27, 34, 33, 78, 181, 99, 41, 24, 82, 255, 159, 70, 165, 154, 158, 104, 147, + 20, 72, 159, 239, 192, 81, 68, 150, 83, 21, 72, 97, 251, 101, 77, 165, 86, 55, 150, 255, 75, 25, 247, 48, 71, 57, + 14, 90, 240, 214, 237, 232, 255, 216, 124, 128, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1128, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17016150747049241110" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + "cborHex": "d8669f1bec2582f2f25e2a169f02ffff", + "cborBytes": [216, 102, 159, 27, 236, 37, 130, 242, 242, 94, 42, 22, 159, 2, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1129, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17642504945522416052" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bda6" + } + ] + }, + "cborHex": "d905029f1bf4d6c4c621ef99b442bda6ff", + "cborBytes": [217, 5, 2, 159, 27, 244, 214, 196, 198, 33, 239, 153, 180, 66, 189, 166, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1130, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2255e46d659cc9ab287752" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9eab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1219482319124977562" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e88b514c135162a040db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0390018fa2b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + }, + "cborHex": "d87e9f4b2255e46d659cc9ab287752bf429eab1b10ec78b54950579a4ae88b514c135162a040db46f0390018fa2bff03ff", + "cborBytes": [ + 216, 126, 159, 75, 34, 85, 228, 109, 101, 156, 201, 171, 40, 119, 82, 191, 66, 158, 171, 27, 16, 236, 120, 181, + 73, 80, 87, 154, 74, 232, 139, 81, 76, 19, 81, 98, 160, 64, 219, 70, 240, 57, 0, 24, 250, 43, 255, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1131, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13761919795460691022" + }, + "fields": [] + }, + "cborHex": "d8669f1bbefc2923e3d9d44e80ff", + "cborBytes": [216, 102, 159, 27, 190, 252, 41, 35, 227, 217, 212, 78, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1132, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11674951860586883981" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10658128162309478962" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fdc75ef54b466f85e3" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59fd8669f1ba205c2dc54112b8d9f1b93e947182d0b1a32ffff49fdc75ef54b466f85e3ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 216, 102, 159, 27, 162, 5, 194, 220, 84, 17, 43, + 141, 159, 27, 147, 233, 71, 24, 45, 11, 26, 50, 255, 255, 73, 253, 199, 94, 245, 75, 70, 111, 133, 227, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1133, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a3773a085ac7e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14529281882791557624" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7ee8bba58d9f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ce6081" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09fbf473a3773a085ac7e1bc9a260e4994f39f8ff9f467ee8bba58d9fff43ce6081ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 191, 71, 58, 55, 115, 160, 133, 172, 126, 27, 201, + 162, 96, 228, 153, 79, 57, 248, 255, 159, 70, 126, 232, 187, 165, 141, 159, 255, 67, 206, 96, 129, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1134, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13791975094791005535" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18056480500205230067" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc028738d4ce08826f0e0b76" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2573938739736203248" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "471e807218d664" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2690526654570355507" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5ced22811" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3843332787595944018" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2252292186183784556" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15709179038116694564" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18233146838566488002" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17135141644567416608" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bbf66f046940d655f9fd9050480d9050c9f9f1bfa958158fc8017f34ccc028738d4ce08826f0e0b76ffffbf1b23b877a57f97cff047471e807218d6641b2556abbcc062db3345d5ced228111b355642ceb644a0521b1f41bfcf67df586c1bda02371ab7f54a2441d71bfd092672424ac7c21bedcc408a34718f20ffffff", + "cborBytes": [ + 216, 102, 159, 27, 191, 102, 240, 70, 148, 13, 101, 95, 159, 217, 5, 4, 128, 217, 5, 12, 159, 159, 27, 250, 149, + 129, 88, 252, 128, 23, 243, 76, 204, 2, 135, 56, 212, 206, 8, 130, 111, 14, 11, 118, 255, 255, 191, 27, 35, 184, + 119, 165, 127, 151, 207, 240, 71, 71, 30, 128, 114, 24, 214, 100, 27, 37, 86, 171, 188, 192, 98, 219, 51, 69, 213, + 206, 210, 40, 17, 27, 53, 86, 66, 206, 182, 68, 160, 82, 27, 31, 65, 191, 207, 103, 223, 88, 108, 27, 218, 2, 55, + 26, 183, 245, 74, 36, 65, 215, 27, 253, 9, 38, 114, 66, 74, 199, 194, 27, 237, 204, 64, 138, 52, 113, 143, 32, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1135, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15491491769629179099" + }, + "fields": [] + }, + "cborHex": "d8669f1bd6fcd5afe1a27cdb80ff", + "cborBytes": [216, 102, 159, 27, 214, 252, 213, 175, 225, 162, 124, 219, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1136, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11320765256995471212" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "15bacaf8c17db5" + } + ] + }, + "cborHex": "d8669f1b9d1b700570cc7f6c9f4715bacaf8c17db5ffff", + "cborBytes": [ + 216, 102, 159, 27, 157, 27, 112, 5, 112, 204, 127, 108, 159, 71, 21, 186, 202, 248, 193, 125, 181, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1137, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14843574860728525525" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3824483571775648237" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10192509617747312795" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5227703550260573211" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b121ab6896fcfb43" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11237668848857413197" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16786312635937036408" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12239392697699898772" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8281" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18371397399829186806" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5463571540830117381" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9276690294514346595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17898665503091288370" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c62fcbe" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3029537941086039876" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1231936227231661924" + } + }, + { + "_tag": "ByteArray", + "bytearray": "86f2f1265e94c4ff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2023486664966966400" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11372951052331402022" + } + }, + { + "_tag": "ByteArray", + "bytearray": "38fd54262c35e423" + } + ] + } + ] + }, + "cborHex": "d905079f1bcdfef8b0f2a462d5bf1b35134b8ba90131ed1b8d73117ebf94c09b1b488c88ae7054741b48b121ab6896fcfb431b9bf438473f9e764d1be8f4f66799ad98781ba9db0ecfbce995944282811bfef450996c5a88f641cbffbf1b4bd2815e801cde051b80bd6cac3fd76a631bf864d571a14b6932447c62fcbeffd8669f1b2a0b14b4cc006f449f9f1b1118b778ba13ff644886f2f1265e94c4ff1b1c14de66a1188c80ff1b9dd4d6b9c21e43264838fd54262c35e423ffffff", + "cborBytes": [ + 217, 5, 7, 159, 27, 205, 254, 248, 176, 242, 164, 98, 213, 191, 27, 53, 19, 75, 139, 169, 1, 49, 237, 27, 141, + 115, 17, 126, 191, 148, 192, 155, 27, 72, 140, 136, 174, 112, 84, 116, 27, 72, 177, 33, 171, 104, 150, 252, 251, + 67, 27, 155, 244, 56, 71, 63, 158, 118, 77, 27, 232, 244, 246, 103, 153, 173, 152, 120, 27, 169, 219, 14, 207, + 188, 233, 149, 148, 66, 130, 129, 27, 254, 244, 80, 153, 108, 90, 136, 246, 65, 203, 255, 191, 27, 75, 210, 129, + 94, 128, 28, 222, 5, 27, 128, 189, 108, 172, 63, 215, 106, 99, 27, 248, 100, 213, 113, 161, 75, 105, 50, 68, 124, + 98, 252, 190, 255, 216, 102, 159, 27, 42, 11, 20, 180, 204, 0, 111, 68, 159, 159, 27, 17, 24, 183, 120, 186, 19, + 255, 100, 72, 134, 242, 241, 38, 94, 148, 196, 255, 27, 28, 20, 222, 102, 161, 24, 140, 128, 255, 27, 157, 212, + 214, 185, 194, 30, 67, 38, 72, 56, 253, 84, 38, 44, 53, 228, 35, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1138, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18320550820118712417" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18387178081025757287" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "506364158241028365" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2333646569726213803" + } + }, + { + "_tag": "ByteArray", + "bytearray": "688328" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8428253904433866094" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3040492049036054886" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3352311083137198005" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14283eb3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7287475126514175097" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12717835016741706202" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10084706319517001838" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14327209446942634236" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13851200013708258027" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3051953380471416260" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14569540882589242462" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a93f8027a30eae744ba5713" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16716988493661659088" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5429164339245830027" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a35014f66f2d5a75acbae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "121231387904462744" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f9b10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6085374998761413772" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6937b5732fcb9d29635073fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2227eebaab5e508" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5feac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b66" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbc9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12681704417861195247" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "776451bf0a6428c4b2ead3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4589780220297855570" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93a234e7a0b0e040" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "620050811605912643" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6b7113c98063abcc8da6a7ad" + } + ] + }, + "cborHex": "d8669f1bfe3fabe78aaad0619f9fd8669f1bff2c610b956390679f1b0706f784e2f2390d1b2062c730e3d6feab43688328ffffa09f1b74f72c457294656e1b2a31ff68cd319166ffbf1b2e85cd2b36ff67b54414283eb31b65225004515f4c791bb07ed390d4e9d9da1b8bf412f76ef2a86e1bc6d479154ba2f0fc1bc039590691f76aeb1b2a5ab76dfa0d25c41bca31683d6f43545e4c2a93f8027a30eae744ba57131be7feac76eefedfd01b4b5844339bf74f8bffffbf4b1a35014f66f2d5a75acbae1b01aeb34e13ac4f98435f9b101b54739851d6379c8c4c6937b5732fcb9d29635073fc48e2227eebaab5e50843b5feac424b6642cbc91baffe76fa3d1e55efffbf4b776451bf0a6428c4b2ead31b3fb22ccaebf7c2524893a234e7a0b0e0401b089adced90768c43ff4c6b7113c98063abcc8da6a7adffff", + "cborBytes": [ + 216, 102, 159, 27, 254, 63, 171, 231, 138, 170, 208, 97, 159, 159, 216, 102, 159, 27, 255, 44, 97, 11, 149, 99, + 144, 103, 159, 27, 7, 6, 247, 132, 226, 242, 57, 13, 27, 32, 98, 199, 48, 227, 214, 254, 171, 67, 104, 131, 40, + 255, 255, 160, 159, 27, 116, 247, 44, 69, 114, 148, 101, 110, 27, 42, 49, 255, 104, 205, 49, 145, 102, 255, 191, + 27, 46, 133, 205, 43, 54, 255, 103, 181, 68, 20, 40, 62, 179, 27, 101, 34, 80, 4, 81, 95, 76, 121, 27, 176, 126, + 211, 144, 212, 233, 217, 218, 27, 139, 244, 18, 247, 110, 242, 168, 110, 27, 198, 212, 121, 21, 75, 162, 240, 252, + 27, 192, 57, 89, 6, 145, 247, 106, 235, 27, 42, 90, 183, 109, 250, 13, 37, 196, 27, 202, 49, 104, 61, 111, 67, 84, + 94, 76, 42, 147, 248, 2, 122, 48, 234, 231, 68, 186, 87, 19, 27, 231, 254, 172, 118, 238, 254, 223, 208, 27, 75, + 88, 68, 51, 155, 247, 79, 139, 255, 255, 191, 75, 26, 53, 1, 79, 102, 242, 213, 167, 90, 203, 174, 27, 1, 174, + 179, 78, 19, 172, 79, 152, 67, 95, 155, 16, 27, 84, 115, 152, 81, 214, 55, 156, 140, 76, 105, 55, 181, 115, 47, + 203, 157, 41, 99, 80, 115, 252, 72, 226, 34, 126, 235, 170, 181, 229, 8, 67, 181, 254, 172, 66, 75, 102, 66, 203, + 201, 27, 175, 254, 118, 250, 61, 30, 85, 239, 255, 191, 75, 119, 100, 81, 191, 10, 100, 40, 196, 178, 234, 211, + 27, 63, 178, 44, 202, 235, 247, 194, 82, 72, 147, 162, 52, 231, 160, 176, 224, 64, 27, 8, 154, 220, 237, 144, 118, + 140, 67, 255, 76, 107, 113, 19, 201, 128, 99, 171, 204, 141, 166, 167, 173, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1139, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5745917682768909655" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "635035057147057764" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3006205967018632693" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11458754551296845039" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13974606337027303641" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2302264908203704709" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1127620990623111558" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e6a4" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5453857104780754847" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6c6ef93e025c4d0f3c" + }, + { + "_tag": "ByteArray", + "bytearray": "c7d5f0d7f4d534" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5831264698" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9117866885150274786" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85ab215819d035df4e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3bd0709" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2b35801e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf5bc0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9a70fa3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f487a2fa0c60e7f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebf41b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7e9b805" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b4fbd99b0761395579fd8669f1b08d01905192b96649f41a1d8669f1b29b8306641ce25f59f1b9f05ac8da67064ef1bc1efc66c426f68d91b1ff349bc705441851b0fa61d510b5d598642e6a4ffffd8669f1b4baffe241a327f9f80ffa0ffff496c6ef93e025c4d0f3c47c7d5f0d7f4d534bf4558312646981b7e892b9f9eadf4e24985ab215819d035df4e44e3bd070945b2b35801e143bf5bc044b9a70fa348f487a2fa0c60e7f743ebf41b44b7e9b805ffffff", + "cborBytes": [ + 216, 102, 159, 27, 79, 189, 153, 176, 118, 19, 149, 87, 159, 216, 102, 159, 27, 8, 208, 25, 5, 25, 43, 150, 100, + 159, 65, 161, 216, 102, 159, 27, 41, 184, 48, 102, 65, 206, 37, 245, 159, 27, 159, 5, 172, 141, 166, 112, 100, + 239, 27, 193, 239, 198, 108, 66, 111, 104, 217, 27, 31, 243, 73, 188, 112, 84, 65, 133, 27, 15, 166, 29, 81, 11, + 93, 89, 134, 66, 230, 164, 255, 255, 216, 102, 159, 27, 75, 175, 254, 36, 26, 50, 127, 159, 128, 255, 160, 255, + 255, 73, 108, 110, 249, 62, 2, 92, 77, 15, 60, 71, 199, 213, 240, 215, 244, 213, 52, 191, 69, 88, 49, 38, 70, 152, + 27, 126, 137, 43, 159, 158, 173, 244, 226, 73, 133, 171, 33, 88, 25, 208, 53, 223, 78, 68, 227, 189, 7, 9, 69, + 178, 179, 88, 1, 225, 67, 191, 91, 192, 68, 185, 167, 15, 163, 72, 244, 135, 162, 250, 12, 96, 231, 247, 67, 235, + 244, 27, 68, 183, 233, 184, 5, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1140, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10612082092889560731" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3094428512318931059" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b05f79b2fe03f2b4f511" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5368415555838146281" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f5b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5719151812080964799" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17101730999295427547" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10421277705881028274" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f02e42274c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16153963421305056474" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4260233344992044823" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16998811272365693015" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8eb" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b9345b07031f7569b9fbf1b2af19e56439c40734ab05f79b2fe03f2b4f5111b4a8071814469f6e9423f5b1b4f5e82458f9e14bf1bed558dbc294a43db1b909fd0dbf4bc86b245f02e42274c1be02e6824f18aacda1b3b1f63a7d48667171bebe7e8c9e543585742b8ebffffff", + "cborBytes": [ + 216, 102, 159, 27, 147, 69, 176, 112, 49, 247, 86, 155, 159, 191, 27, 42, 241, 158, 86, 67, 156, 64, 115, 74, 176, + 95, 121, 178, 254, 3, 242, 180, 245, 17, 27, 74, 128, 113, 129, 68, 105, 246, 233, 66, 63, 91, 27, 79, 94, 130, + 69, 143, 158, 20, 191, 27, 237, 85, 141, 188, 41, 74, 67, 219, 27, 144, 159, 208, 219, 244, 188, 134, 178, 69, + 240, 46, 66, 39, 76, 27, 224, 46, 104, 36, 241, 138, 172, 218, 27, 59, 31, 99, 167, 212, 134, 103, 23, 27, 235, + 231, 232, 201, 229, 67, 88, 87, 66, 184, 235, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1141, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12911537619723012356" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04e901" + }, + { + "_tag": "ByteArray", + "bytearray": "1cb24515bf617e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2148608509060571618" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "80dfa983c1ba" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bd10cc7ae861c0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5426314786571893288" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5299c28ba8c8935d2179" + }, + { + "_tag": "ByteArray", + "bytearray": "93f6" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "005d81cd7516" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3864826824697908394" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "62b5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8592715978894875877" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11590358355359892010" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11657979922083569524" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3843286836894996314" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6417151077862372850" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bb32eff0e8faec9049f4304e901471cb24515bf617e1b1dd1640e1fefe1e2d8669f1bfffffffffffffffb9f4680dfa983c1ba9f47bd10cc7ae861c01b4b4e248c6d113a284a5299c28ba8c8935d21794293f6ff9f46005d81cd7516ffffff9f1b35a29f8534850caa9f4262b51b773f75a819da1ce51ba0d939840eb5022a1ba1c976f8f66d5f741b35561903fb0f975aff9f41a31b590e4ce7e20075f2ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 179, 46, 255, 14, 143, 174, 201, 4, 159, 67, 4, 233, 1, 71, 28, 178, 69, 21, 191, 97, 126, 27, + 29, 209, 100, 14, 31, 239, 225, 226, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 70, 128, 223, + 169, 131, 193, 186, 159, 71, 189, 16, 204, 122, 232, 97, 192, 27, 75, 78, 36, 140, 109, 17, 58, 40, 74, 82, 153, + 194, 139, 168, 200, 147, 93, 33, 121, 66, 147, 246, 255, 159, 70, 0, 93, 129, 205, 117, 22, 255, 255, 255, 159, + 27, 53, 162, 159, 133, 52, 133, 12, 170, 159, 66, 98, 181, 27, 119, 63, 117, 168, 25, 218, 28, 229, 27, 160, 217, + 57, 132, 14, 181, 2, 42, 27, 161, 201, 118, 248, 246, 109, 95, 116, 27, 53, 86, 25, 3, 251, 15, 151, 90, 255, 159, + 65, 163, 27, 89, 14, 76, 231, 226, 0, 117, 242, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1142, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9348861737600443807" + }, + "fields": [] + }, + "cborHex": "d8669f1b81bdd437cbea659f80ff", + "cborBytes": [216, 102, 159, 27, 129, 189, 212, 55, 203, 234, 101, 159, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1143, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15493480954883144566" + }, + "fields": [] + }, + "cborHex": "d8669f1bd703e6d72a16fb7680ff", + "cborBytes": [216, 102, 159, 27, 215, 3, 230, 215, 42, 22, 251, 118, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1144, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17922415703399885669" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d5cd48aaa5ef85e3edbea09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14449055167593378054" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5beddaac0fdd9ae6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "261dc671b1a0e68e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b176a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8582962b71574ae1574676" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8bcc1437" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7689417778545824760" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16835052068742163835" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f272a298ff20f01a047" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2380074293544067560" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98e2fc66405da3d237d334" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17259019032297663218" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad4574632e2d02b398a34c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8416773535086418984" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1566452783710487397" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18254963849970604724" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c80811b22e07f734" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8902369628046903703" + } + }, + { + "_tag": "ByteArray", + "bytearray": "104ee0259e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12415751205277854143" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11062278087549788522" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8759b4980cd63103e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13782624225361347170" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2333038f" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1256755547353167920" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d2dfe56a3a" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f50b43cc3feec7a52b" + } + ] + }, + "cborHex": "d8669f1bf8b936200e086b659f9fbf4c4d5cd48aaa5ef85e3edbea091bc8855b1edc6cf106485beddaac0fdd9ae648261dc671b1a0e68e438b176a4b8582962b71574ae1574676ff448bcc14371b6ab64cbab3cc13f8ff1be9a21ea91c94ed7b9fbf4a1f272a298ff20f01a0471b2107b8f5b5bba1e84b98e2fc66405da3d237d3341bef845a5e1fceeaf24bad4574632e2d02b398a34c1b74ce62efa9bc1c2842d0e81b15bd2881e27c4365ff9f1bfd56a8e711185ab448c80811b22e07f7341b7b8b92028af6499745104ee0259e1bac4d9bf09236e9bfffbf1b99851b4f66fe216a498759b4980cd63103e91bbf45b7b5a15b4262442333038fffa0d8669f1b1170e483017cb8309f45d2dfe56a3affffff49f50b43cc3feec7a52bffff", + "cborBytes": [ + 216, 102, 159, 27, 248, 185, 54, 32, 14, 8, 107, 101, 159, 159, 191, 76, 77, 92, 212, 138, 170, 94, 248, 94, 62, + 219, 234, 9, 27, 200, 133, 91, 30, 220, 108, 241, 6, 72, 91, 237, 218, 172, 15, 221, 154, 230, 72, 38, 29, 198, + 113, 177, 160, 230, 142, 67, 139, 23, 106, 75, 133, 130, 150, 43, 113, 87, 74, 225, 87, 70, 118, 255, 68, 139, + 204, 20, 55, 27, 106, 182, 76, 186, 179, 204, 19, 248, 255, 27, 233, 162, 30, 169, 28, 148, 237, 123, 159, 191, + 74, 31, 39, 42, 41, 143, 242, 15, 1, 160, 71, 27, 33, 7, 184, 245, 181, 187, 161, 232, 75, 152, 226, 252, 102, 64, + 93, 163, 210, 55, 211, 52, 27, 239, 132, 90, 94, 31, 206, 234, 242, 75, 173, 69, 116, 99, 46, 45, 2, 179, 152, + 163, 76, 27, 116, 206, 98, 239, 169, 188, 28, 40, 66, 208, 232, 27, 21, 189, 40, 129, 226, 124, 67, 101, 255, 159, + 27, 253, 86, 168, 231, 17, 24, 90, 180, 72, 200, 8, 17, 178, 46, 7, 247, 52, 27, 123, 139, 146, 2, 138, 246, 73, + 151, 69, 16, 78, 224, 37, 158, 27, 172, 77, 155, 240, 146, 54, 233, 191, 255, 191, 27, 153, 133, 27, 79, 102, 254, + 33, 106, 73, 135, 89, 180, 152, 12, 214, 49, 3, 233, 27, 191, 69, 183, 181, 161, 91, 66, 98, 68, 35, 51, 3, 143, + 255, 160, 216, 102, 159, 27, 17, 112, 228, 131, 1, 124, 184, 48, 159, 69, 210, 223, 229, 106, 58, 255, 255, 255, + 73, 245, 11, 67, 204, 63, 238, 199, 165, 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1145, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10885853599891531088" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17716477121335952426" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8875054588786048994" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5656121698511601746" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18239735341324728272" + } + } + ] + }, + "cborHex": "d87d9fd8669f1b9712522c627125509f1bf5dd92137090842a1b7b2a87205ecaffe21b4e7e94b7a629c052ffff1bfd208ea798cc77d0ff", + "cborBytes": [ + 216, 125, 159, 216, 102, 159, 27, 151, 18, 82, 44, 98, 113, 37, 80, 159, 27, 245, 221, 146, 19, 112, 144, 132, 42, + 27, 123, 42, 135, 32, 94, 202, 255, 226, 27, 78, 126, 148, 183, 166, 41, 192, 82, 255, 255, 27, 253, 32, 142, 167, + 152, 204, 119, 208, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1146, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6921629182351577995" + }, + "fields": [] + }, + "cborHex": "d8669f1b600e9111a90b138b80ff", + "cborBytes": [216, 102, 159, 27, 96, 14, 145, 17, 169, 11, 19, 139, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1147, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1478761661994978160" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9036128697982430583" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b3757" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10510847355363426702" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "646a15aec25f70" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11869059226302687983" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8220022413152410403" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14015911077701633171" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9d1f54b4b56bb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16370983906055330201" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17185766747674144762" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b14859de592ad4b709fbf0806ffbf1b7d66c72ce3f4ad77430b37571b91de07fb18ca818e47646a15aec25f701ba4b75e7b39d82aef1b721362d54db2db231bc28284dd9dde449347a9d1f54b4b56bb1be3316b20181099991bee801bcd8bd66ffaffffff", + "cborBytes": [ + 216, 102, 159, 27, 20, 133, 157, 229, 146, 173, 75, 112, 159, 191, 8, 6, 255, 191, 27, 125, 102, 199, 44, 227, + 244, 173, 119, 67, 11, 55, 87, 27, 145, 222, 7, 251, 24, 202, 129, 142, 71, 100, 106, 21, 174, 194, 95, 112, 27, + 164, 183, 94, 123, 57, 216, 42, 239, 27, 114, 19, 98, 213, 77, 178, 219, 35, 27, 194, 130, 132, 221, 157, 222, 68, + 147, 71, 169, 209, 245, 75, 75, 86, 187, 27, 227, 49, 107, 32, 24, 16, 153, 153, 27, 238, 128, 27, 205, 139, 214, + 111, 250, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1148, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5256022815500427296" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15016430096915849122" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ad299e587cd78cdc67612b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7262499769572675414" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d4df579af" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "128ba0287c5012a268d78845" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "766c06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15012827208347980024" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8799f1b48f124e7314060201bd065139cd9275fa29fbf4c0ad299e587cd78cdc67612b51b64c9950fe2bc4f56450d4df579af4c128ba0287c5012a268d7884543766c061bd05846cdfbe690f8ffffff", + "cborBytes": [ + 216, 121, 159, 27, 72, 241, 36, 231, 49, 64, 96, 32, 27, 208, 101, 19, 156, 217, 39, 95, 162, 159, 191, 76, 10, + 210, 153, 229, 135, 205, 120, 205, 198, 118, 18, 181, 27, 100, 201, 149, 15, 226, 188, 79, 86, 69, 13, 77, 245, + 121, 175, 76, 18, 139, 160, 40, 124, 80, 18, 162, 104, 215, 136, 69, 67, 118, 108, 6, 27, 208, 88, 70, 205, 251, + 230, 144, 248, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1149, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4223872442936625542" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13739452680804442699" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1937090654856791011" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e67326ab7c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3089025004628020867" + } + }, + { + "_tag": "ByteArray", + "bytearray": "26404f04" + }, + { + "_tag": "ByteArray", + "bytearray": "4392400d36f2e86f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15853945478826262868" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7368153874389741835" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10941875677050720685" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "501049038933077642" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2413728426802962378" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16136590117297105701" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2524527499822997032" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6425886162955099162" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5919012493213058581" + } + }, + { + "_tag": "ByteArray", + "bytearray": "67a97ba174eef46b" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "63288459792605743" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4763647424128397200" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7053ce1" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27103bda64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "843379906681555638" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d531" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11232403479880921165" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6347273248990827120" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15720168131056957815" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f41d8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "13b3461195752e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16287678370277029718" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3a9e359b99cc89869f9f9f1bbeac576b1fa3224b1b1ae1edaffc77c3e345e67326ab7cff1b2ade6be017270e834426404f04484392400d36f2e86f1bdc04876a49d98154ffd8669f1b6640f0e91d6b310b9f9f1b97d959f4ab1851ad1b06f415723ca82e8a1b217f493737da5fcaffd8669f1bdff0af376392ab259f1b2308ec62b4a79e281b592d556b5e095c1a1b52248e80971046154867a97ba174eef46bffffd8669f1b00e0d884d451e22f9f1b421be017e660af9044d7053ce1ffffbf4527103bda641b0bb4498e8474cab6ffffff42d531bf1b9be183740029f04d1b58160b64027012701bda2941a04d10f977439f41d84713b3461195752e1be209752e942cf756ffffff", + "cborBytes": [ + 216, 102, 159, 27, 58, 158, 53, 155, 153, 204, 137, 134, 159, 159, 159, 27, 190, 172, 87, 107, 31, 163, 34, 75, + 27, 26, 225, 237, 175, 252, 119, 195, 227, 69, 230, 115, 38, 171, 124, 255, 27, 42, 222, 107, 224, 23, 39, 14, + 131, 68, 38, 64, 79, 4, 72, 67, 146, 64, 13, 54, 242, 232, 111, 27, 220, 4, 135, 106, 73, 217, 129, 84, 255, 216, + 102, 159, 27, 102, 64, 240, 233, 29, 107, 49, 11, 159, 159, 27, 151, 217, 89, 244, 171, 24, 81, 173, 27, 6, 244, + 21, 114, 60, 168, 46, 138, 27, 33, 127, 73, 55, 55, 218, 95, 202, 255, 216, 102, 159, 27, 223, 240, 175, 55, 99, + 146, 171, 37, 159, 27, 35, 8, 236, 98, 180, 167, 158, 40, 27, 89, 45, 85, 107, 94, 9, 92, 26, 27, 82, 36, 142, + 128, 151, 16, 70, 21, 72, 103, 169, 123, 161, 116, 238, 244, 107, 255, 255, 216, 102, 159, 27, 0, 224, 216, 132, + 212, 81, 226, 47, 159, 27, 66, 27, 224, 23, 230, 96, 175, 144, 68, 215, 5, 60, 225, 255, 255, 191, 69, 39, 16, 59, + 218, 100, 27, 11, 180, 73, 142, 132, 116, 202, 182, 255, 255, 255, 66, 213, 49, 191, 27, 155, 225, 131, 116, 0, + 41, 240, 77, 27, 88, 22, 11, 100, 2, 112, 18, 112, 27, 218, 41, 65, 160, 77, 16, 249, 119, 67, 159, 65, 216, 71, + 19, 179, 70, 17, 149, 117, 46, 27, 226, 9, 117, 46, 148, 44, 247, 86, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1150, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11890966483949499469" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6527609288986290815" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14771060621366225888" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4735eb4309f59dbc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16028152666420733683" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17444376316073497926" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3dd5441d0347a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6588380821285645647" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15436058487684282363" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4483650026547402118" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f7f91d3d0218008035c7" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "be6a" + } + ] + } + ] + }, + "cborHex": "d8669f1ba50533041fe2b44d9f1b5a96ba1046916a7f9fbf1bccfd595fec4b6be0484735eb4309f59dbc1bde6f6fede7bce6f31bf216dfd5cfcc554647a3dd5441d0347a1b5b6ea17341ba2d4fff1bd637e5692a9337fb1b3e391ff1998755869f4af7f91d3d0218008035c7ff42be6affffff", + "cborBytes": [ + 216, 102, 159, 27, 165, 5, 51, 4, 31, 226, 180, 77, 159, 27, 90, 150, 186, 16, 70, 145, 106, 127, 159, 191, 27, + 204, 253, 89, 95, 236, 75, 107, 224, 72, 71, 53, 235, 67, 9, 245, 157, 188, 27, 222, 111, 111, 237, 231, 188, 230, + 243, 27, 242, 22, 223, 213, 207, 204, 85, 70, 71, 163, 221, 84, 65, 208, 52, 122, 27, 91, 110, 161, 115, 65, 186, + 45, 79, 255, 27, 214, 55, 229, 105, 42, 147, 55, 251, 27, 62, 57, 31, 241, 153, 135, 85, 134, 159, 74, 247, 249, + 29, 61, 2, 24, 0, 128, 53, 199, 255, 66, 190, 106, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1151, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d31b7d8a498db8996a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f905ff6e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10055889247495332122" + }, + "fields": [] + } + ] + }, + "cborHex": "d905049f9fd8669f1bffffffffffffffec9f1412ffff49d31b7d8a498db8996aff44f905ff6ed8669f1b8b8db1fe01a1211a80ffff", + "cborBytes": [ + 217, 5, 4, 159, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 20, 18, 255, 255, 73, 211, + 27, 125, 138, 73, 141, 184, 153, 106, 255, 68, 249, 5, 255, 110, 216, 102, 159, 27, 139, 141, 177, 254, 1, 161, + 33, 26, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1152, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13667754453643167253" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17177235370463846246" + } + }, + { + "_tag": "ByteArray", + "bytearray": "acb7b9b0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8712852297336246758" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1231666315046670829" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9c68" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1029829067461212835" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15471967246956129481" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6448123502981231428" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9197963885652914838" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7211593581388809124" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14046489364017430393" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "77f77118f359" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8554192719490254965" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7231893544915387554" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bbdad9e42beaa06159f1bee61cc8f7fc5df6644acb7b9b0d8669f1b78ea4500732c51e69fd8669f1b1117c1fce62bd1ed9f429c68ffff1b0e4ab014a165baa3d8669f1bd6b7783cb34c6cc99f1b597c56298f0b33441b7fa5bb6bcd36b296ffffffffd8669f1b6414ba27532ac3a49f1bc2ef27a7b38fbf799f4677f77118f3591b76b698f4d17308751b645cd8dce61f44a2ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 189, 173, 158, 66, 190, 170, 6, 21, 159, 27, 238, 97, 204, 143, 127, 197, 223, 102, 68, 172, + 183, 185, 176, 216, 102, 159, 27, 120, 234, 69, 0, 115, 44, 81, 230, 159, 216, 102, 159, 27, 17, 23, 193, 252, + 230, 43, 209, 237, 159, 66, 156, 104, 255, 255, 27, 14, 74, 176, 20, 161, 101, 186, 163, 216, 102, 159, 27, 214, + 183, 120, 60, 179, 76, 108, 201, 159, 27, 89, 124, 86, 41, 143, 11, 51, 68, 27, 127, 165, 187, 107, 205, 54, 178, + 150, 255, 255, 255, 255, 216, 102, 159, 27, 100, 20, 186, 39, 83, 42, 195, 164, 159, 27, 194, 239, 39, 167, 179, + 143, 191, 121, 159, 70, 119, 247, 113, 24, 243, 89, 27, 118, 182, 152, 244, 209, 115, 8, 117, 27, 100, 92, 216, + 220, 230, 31, 68, 162, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1153, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2157942963929387511" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13111073254006232766" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10451452956436488036" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14317503901825753383" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17972340737296061613" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2536071069632491055" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8696462605569176666" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2876548032925818060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16312598307128544907" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4994710465785385824" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fccd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7484914610300135246" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53e73d1d2c387e460b05e24f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10810639113866906614" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05168c88" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2941551453508965290" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "106c330d9b8431099d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5307839956855605405" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15132095983275320300" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6254678489239816534" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10511178071643224824" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8b1aad" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6248426044908405380" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eb160a5c2d114ebf0731" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9496009321518555139" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f7dcd642c48dc245" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4dadc39b378af9e31697c011" + } + ] + } + ] + }, + "cborHex": "d8669f1b1df28db1429091f79f1bb5f3e3a8b92a96bed8669f1b910b0516f71a5f649fd8669f1bc6b1fdf0fa97e1279f1bf96a94add4d054adffffbf1b2331ef337e96ee2f1b78b00aa9f76b345a1b27eb8d3201e45ccc1be261fdbb84090e8b1b4550c6b49d10536042fccd1b67dfc22e6912274e4c53e73d1d2c387e460b05e24f1b96071aff30fb0bf64405168c88ffbf1b28d27d7642ef93aa49106c330d9b8431099d1b49a93c519100c89d1bd200011f9e3da3ec1b56cd14f27f6a89561b91df34c3fb2b7af8ffffff438b1aadd8669f1b56b6de61dc1082849f4aeb160a5c2d114ebf07319f1b83c89a2a78e9600348f7dcd642c48dc245ff4c4dadc39b378af9e31697c011ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 29, 242, 141, 177, 66, 144, 145, 247, 159, 27, 181, 243, 227, 168, 185, 42, 150, 190, 216, 102, + 159, 27, 145, 11, 5, 22, 247, 26, 95, 100, 159, 216, 102, 159, 27, 198, 177, 253, 240, 250, 151, 225, 39, 159, 27, + 249, 106, 148, 173, 212, 208, 84, 173, 255, 255, 191, 27, 35, 49, 239, 51, 126, 150, 238, 47, 27, 120, 176, 10, + 169, 247, 107, 52, 90, 27, 39, 235, 141, 50, 1, 228, 92, 204, 27, 226, 97, 253, 187, 132, 9, 14, 139, 27, 69, 80, + 198, 180, 157, 16, 83, 96, 66, 252, 205, 27, 103, 223, 194, 46, 105, 18, 39, 78, 76, 83, 231, 61, 29, 44, 56, 126, + 70, 11, 5, 226, 79, 27, 150, 7, 26, 255, 48, 251, 11, 246, 68, 5, 22, 140, 136, 255, 191, 27, 40, 210, 125, 118, + 66, 239, 147, 170, 73, 16, 108, 51, 13, 155, 132, 49, 9, 157, 27, 73, 169, 60, 81, 145, 0, 200, 157, 27, 210, 0, + 1, 31, 158, 61, 163, 236, 27, 86, 205, 20, 242, 127, 106, 137, 86, 27, 145, 223, 52, 195, 251, 43, 122, 248, 255, + 255, 255, 67, 139, 26, 173, 216, 102, 159, 27, 86, 182, 222, 97, 220, 16, 130, 132, 159, 74, 235, 22, 10, 92, 45, + 17, 78, 191, 7, 49, 159, 27, 131, 200, 154, 42, 120, 233, 96, 3, 72, 247, 220, 214, 66, 196, 141, 194, 69, 255, + 76, 77, 173, 195, 155, 55, 138, 249, 227, 22, 151, 192, 17, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1154, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9670062855647593118" + }, + "fields": [] + }, + "cborHex": "d8669f1b8632f6eeda93029e80ff", + "cborBytes": [216, 102, 159, 27, 134, 50, 246, 238, 218, 147, 2, 158, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1155, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4849575544437681533" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9542688874039900987" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7551637623177293687" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8885524736488068328" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17226869785160363038" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15178229843638324382" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9382675726168893034" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b90bc2366c60" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "479963176c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8638280134039672628" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17156661897514565774" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13361258656741246010" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4629304713373314991" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8053081913983119899" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "86a516c7c12484a00b8deb00" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14668077380351374125" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2ca9f7ba8bdabf414983e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c43b03fda30a2bdbc2c99" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7408648677749824237" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b434d274375a12d7d9f1b846e70f8bb387b3bd8669f1b68ccce6871f52f779fd8669f1b7b4fb9ab995154e880ff9f1bef1222cc3864ac1e1bd2a3e7a0054b8c9e1b8235f5dc84fa266a46b90bc2366c60ff45479963176cffffd8669f1b77e15603abbf973480ff9f9f1bee18b5188cd5c08e1bb96cb9f5132cc43a1b403e981c15a86faf1b6fc24b556e16321bff4c86a516c7c12484a00b8deb00ffbf1bcb8f7aa9a1c9332d4ba2ca9f7ba8bdabf414983e412242c1cd4b7c43b03fda30a2bdbc2c991b66d0ceb83ef21aedffffff", + "cborBytes": [ + 216, 102, 159, 27, 67, 77, 39, 67, 117, 161, 45, 125, 159, 27, 132, 110, 112, 248, 187, 56, 123, 59, 216, 102, + 159, 27, 104, 204, 206, 104, 113, 245, 47, 119, 159, 216, 102, 159, 27, 123, 79, 185, 171, 153, 81, 84, 232, 128, + 255, 159, 27, 239, 18, 34, 204, 56, 100, 172, 30, 27, 210, 163, 231, 160, 5, 75, 140, 158, 27, 130, 53, 245, 220, + 132, 250, 38, 106, 70, 185, 11, 194, 54, 108, 96, 255, 69, 71, 153, 99, 23, 108, 255, 255, 216, 102, 159, 27, 119, + 225, 86, 3, 171, 191, 151, 52, 128, 255, 159, 159, 27, 238, 24, 181, 24, 140, 213, 192, 142, 27, 185, 108, 185, + 245, 19, 44, 196, 58, 27, 64, 62, 152, 28, 21, 168, 111, 175, 27, 111, 194, 75, 85, 110, 22, 50, 27, 255, 76, 134, + 165, 22, 199, 193, 36, 132, 160, 11, 141, 235, 0, 255, 191, 27, 203, 143, 122, 169, 161, 201, 51, 45, 75, 162, + 202, 159, 123, 168, 189, 171, 244, 20, 152, 62, 65, 34, 66, 193, 205, 75, 124, 67, 176, 63, 218, 48, 162, 189, + 188, 44, 153, 27, 102, 208, 206, 184, 62, 242, 26, 237, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1156, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + }, + "cborHex": "d87c9f12ff", + "cborBytes": [216, 124, 159, 18, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1157, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15703338120876830089" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10844936838566755232" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3e03f8021e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8364722921204732456" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e4fb" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6784070134334887713" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14810088432800251887" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7188386878812158050" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a45abf60bd400952c25" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7821185555263413617" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bd9ed76d232b6ad899fd8669f1b9680f4988251bba09f453e03f8021ed8669f1b7415772dbaf9d2289f42e4fbffffffffbf1b5e25dbd7f85e17211bcd8800f6612e3fef1b63c247c7d3ad78624a7a45abf60bd400952c251b6c8a6ed2f7e45d7141d0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 217, 237, 118, 210, 50, 182, 173, 137, 159, 216, 102, 159, 27, 150, 128, 244, 152, 130, 81, + 187, 160, 159, 69, 62, 3, 248, 2, 30, 216, 102, 159, 27, 116, 21, 119, 45, 186, 249, 210, 40, 159, 66, 228, 251, + 255, 255, 255, 255, 191, 27, 94, 37, 219, 215, 248, 94, 23, 33, 27, 205, 136, 0, 246, 97, 46, 63, 239, 27, 99, + 194, 71, 199, 211, 173, 120, 98, 74, 122, 69, 171, 246, 11, 212, 0, 149, 44, 37, 27, 108, 138, 110, 210, 247, 228, + 93, 113, 65, 208, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1158, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b8d616e41fb5a4" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + ] + }, + "cborHex": "d9050d9fd90500808047b8d616e41fb5a4801bfffffffffffffffdff", + "cborBytes": [ + 217, 5, 13, 159, 217, 5, 0, 128, 128, 71, 184, 214, 22, 228, 31, 181, 164, 128, 27, 255, 255, 255, 255, 255, 255, + 255, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1159, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3834737515623582557" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e05f6f19012e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3537b974019b8b5d9fbf0946e05f6f19012e1bfffffffffffffffc41fcffffff", + "cborBytes": [ + 216, 102, 159, 27, 53, 55, 185, 116, 1, 155, 139, 93, 159, 191, 9, 70, 224, 95, 111, 25, 1, 46, 27, 255, 255, 255, + 255, 255, 255, 255, 252, 65, 252, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1160, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1f" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f411fffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 65, 31, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1161, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2143cb" + } + ] + }, + "cborHex": "d905039f432143cbff", + "cborBytes": [217, 5, 3, 159, 67, 33, 67, 203, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1162, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2233818250285702231" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17672175338048750536" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "9199401e5344b8c51d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e871b659" + }, + { + "_tag": "ByteArray", + "bytearray": "2744341b1267792c" + }, + { + "_tag": "ByteArray", + "bytearray": "8314437fd27d5e9a1fe4" + }, + { + "_tag": "ByteArray", + "bytearray": "0584a8f81ce8f0ac827ba05c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "330a" + }, + { + "_tag": "ByteArray", + "bytearray": "57e2bae8b58f3a15ce8f" + }, + { + "_tag": "ByteArray", + "bytearray": "b80af8891e53b2ef2fd5aa" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29fd8669f1b1f001ddd05105c579f1bf5402dd6b8d083c880499199401e5344b8c51d9f44e871b659482744341b1267792c4a8314437fd27d5e9a1fe44c0584a8f81ce8f0ac827ba05cff9f42330a4a57e2bae8b58f3a15ce8f4bb80af8891e53b2ef2fd5aaffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 216, 102, 159, 27, 31, 0, 29, 221, 5, 16, 92, 87, + 159, 27, 245, 64, 45, 214, 184, 208, 131, 200, 128, 73, 145, 153, 64, 30, 83, 68, 184, 197, 29, 159, 68, 232, 113, + 182, 89, 72, 39, 68, 52, 27, 18, 103, 121, 44, 74, 131, 20, 67, 127, 210, 125, 94, 154, 31, 228, 76, 5, 132, 168, + 248, 28, 232, 240, 172, 130, 123, 160, 92, 255, 159, 66, 51, 10, 74, 87, 226, 186, 232, 181, 143, 58, 21, 206, + 143, 75, 184, 10, 248, 137, 30, 83, 178, 239, 47, 213, 170, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1163, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3804500639136534257" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6871ec7b533e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c728" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d4a4154a5977b7a42e882" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d53cb8d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06604086" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14317221370832982719" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05fa" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "858e3f143f2099a79c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "94256178051213083" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba33ce2543c56eaec330" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7355086579006292498" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e28c1eee4a2fbc82069a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf68" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edc8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18cba7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fecc93d305d64b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13236270a47c7d2b7c7bfd" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b34cc4d2c977acef19fbf466871ec7b533e42c7284b7d4a4154a5977b7a42e882443d53cb8dffbf0d0e4406604086416eff1bc6b0fcfb1b2192bf4205fabf49858e3f143f2099a79c1b014edd7e9aa0e71b4aba33ce2543c56eaec3301b6612844651e9c2124ae28c1eee4a2fbc82069a42cf6842edc84318cba747fecc93d305d64b4b13236270a47c7d2b7c7bfdffffff", + "cborBytes": [ + 216, 102, 159, 27, 52, 204, 77, 44, 151, 122, 206, 241, 159, 191, 70, 104, 113, 236, 123, 83, 62, 66, 199, 40, 75, + 125, 74, 65, 84, 165, 151, 123, 122, 66, 232, 130, 68, 61, 83, 203, 141, 255, 191, 13, 14, 68, 6, 96, 64, 134, 65, + 110, 255, 27, 198, 176, 252, 251, 27, 33, 146, 191, 66, 5, 250, 191, 73, 133, 142, 63, 20, 63, 32, 153, 167, 156, + 27, 1, 78, 221, 126, 154, 160, 231, 27, 74, 186, 51, 206, 37, 67, 197, 110, 174, 195, 48, 27, 102, 18, 132, 70, + 81, 233, 194, 18, 74, 226, 140, 30, 238, 74, 47, 188, 130, 6, 154, 66, 207, 104, 66, 237, 200, 67, 24, 203, 167, + 71, 254, 204, 147, 211, 5, 214, 75, 75, 19, 35, 98, 112, 164, 124, 125, 43, 124, 123, 253, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1164, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13607488691510209923" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bbcd782de8e9c6d839fa0ffff", + "cborBytes": [216, 102, 159, 27, 188, 215, 130, 222, 142, 156, 109, 131, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1165, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4830300415671136016" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5281932056645170359" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4536992435354018966" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b4308aca2d27fef109fd8669f1b494d31387c1574b79f1b3ef6a294f9e92496ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 67, 8, 172, 162, 210, 127, 239, 16, 159, 216, 102, 159, 27, 73, 77, 49, 56, 124, 21, 116, 183, + 159, 27, 62, 246, 162, 148, 249, 233, 36, 150, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1166, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3356992341719110882" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14674258599660120056" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3a73fe" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3395172946819042825" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e0522bb86a9333387c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00c237" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae953e6a51762e69040d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f7104" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10358220413012066437" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afea4b4f1df85da4f4b002" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "832f5cce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b82194556b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5456455610027210516" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3260424376568046422" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12858935524076657414" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13643204387239675751" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1008733277629780830" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00183e" + }, + { + "_tag": "ByteArray", + "bytearray": "7b731f4e3a62f5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16938238583757666650" + } + }, + { + "_tag": "ByteArray", + "bytearray": "97cf6c6c" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7b9bfabf8a5a09a7a5111b" + } + ] + }, + "cborHex": "d9050a9f1b2e966ebfa9dfd4e21bcba57072e6f667f8433a73fed8669f1b2f1e13ce862a4e099fbf4a3e0522bb86a9333387c24300c2374266ea4aae953e6a51762e69040d437f71041b8fbfca95dec8c0854bafea4b4f1df85da4f4b00244832f5cce45b82194556b1b4bb93977c05bf714ff1b2d3f5ab22e5ce3561bb2741dbac63d9b06d8669f1bbd56661afb78c7679f1b0dffbd924e3d135e4300183e477b731f4e3a62f51beb10b63fd1b0f95a4497cf6c6cffffffff4b7b9bfabf8a5a09a7a5111bff", + "cborBytes": [ + 217, 5, 10, 159, 27, 46, 150, 110, 191, 169, 223, 212, 226, 27, 203, 165, 112, 114, 230, 246, 103, 248, 67, 58, + 115, 254, 216, 102, 159, 27, 47, 30, 19, 206, 134, 42, 78, 9, 159, 191, 74, 62, 5, 34, 187, 134, 169, 51, 51, 135, + 194, 67, 0, 194, 55, 66, 102, 234, 74, 174, 149, 62, 106, 81, 118, 46, 105, 4, 13, 67, 127, 113, 4, 27, 143, 191, + 202, 149, 222, 200, 192, 133, 75, 175, 234, 75, 79, 29, 248, 93, 164, 244, 176, 2, 68, 131, 47, 92, 206, 69, 184, + 33, 148, 85, 107, 27, 75, 185, 57, 119, 192, 91, 247, 20, 255, 27, 45, 63, 90, 178, 46, 92, 227, 86, 27, 178, 116, + 29, 186, 198, 61, 155, 6, 216, 102, 159, 27, 189, 86, 102, 26, 251, 120, 199, 103, 159, 27, 13, 255, 189, 146, 78, + 61, 19, 94, 67, 0, 24, 62, 71, 123, 115, 31, 78, 58, 98, 245, 27, 235, 16, 182, 63, 209, 176, 249, 90, 68, 151, + 207, 108, 108, 255, 255, 255, 255, 75, 123, 155, 250, 191, 138, 90, 9, 167, 165, 17, 27, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1167, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17281227294982508633" + }, + "fields": [] + }, + "cborHex": "d8669f1befd340aa3837905980ff", + "cborBytes": [216, 102, 159, 27, 239, 211, 64, 170, 56, 55, 144, 89, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1168, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1429590273298110326" + }, + "fields": [] + } + ] + }, + "cborHex": "d87f9fd8669f1b13d6ecc77e49977680ffff", + "cborBytes": [216, 127, 159, 216, 102, 159, 27, 19, 214, 236, 199, 126, 73, 151, 118, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1169, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14651867339040119431" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4e50d9672b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3370586755416371332" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0350cecc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3422589437110641500" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6434723297438159060" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15627022187393911367" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8452523022796444282" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c754e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c94c859ce853" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15964597911111775792" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b88ed188ee0765" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14547837750766068820" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4355" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16103600193056597483" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb0ff2a86193" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "391395a41cdd9380848429" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "518e541139124d44d6efc71f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c56888b14c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7396d9f7226c5c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10112824288338345232" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de8ecb12d04cad370c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c21db05227dcbb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0c4580a287876" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2999985109123244286" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f1bcb55e3b747a25a879f9f454e50d9672bffbf1b2ec6bacbc13ab084440350cecc1b2f7f7af59afbe35c1b594cbabf13bb50d41bd8de55e248c30a471b754d64e7e597d27a439c754e46c94c859ce853ff1bdd8da53751c2b630ff47b88ed188ee07659fbf1bc9e44d5b486de4544243551bdf7b7b0e180ce5eb46fb0ff2a86193ffbf4b391395a41cdd93808484294c518e541139124d44d6efc71f45c56888b14c477396d9f7226c5c41da1b8c57f81c36597d1049de8ecb12d04cad370c47c21db05227dcbb47f0c4580a2878761b29a2168fe8c0a0feffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 27, 203, 85, 227, 183, 71, 162, 90, 135, 159, 159, + 69, 78, 80, 217, 103, 43, 255, 191, 27, 46, 198, 186, 203, 193, 58, 176, 132, 68, 3, 80, 206, 204, 27, 47, 127, + 122, 245, 154, 251, 227, 92, 27, 89, 76, 186, 191, 19, 187, 80, 212, 27, 216, 222, 85, 226, 72, 195, 10, 71, 27, + 117, 77, 100, 231, 229, 151, 210, 122, 67, 156, 117, 78, 70, 201, 76, 133, 156, 232, 83, 255, 27, 221, 141, 165, + 55, 81, 194, 182, 48, 255, 71, 184, 142, 209, 136, 238, 7, 101, 159, 191, 27, 201, 228, 77, 91, 72, 109, 228, 84, + 66, 67, 85, 27, 223, 123, 123, 14, 24, 12, 229, 235, 70, 251, 15, 242, 168, 97, 147, 255, 191, 75, 57, 19, 149, + 164, 28, 221, 147, 128, 132, 132, 41, 76, 81, 142, 84, 17, 57, 18, 77, 68, 214, 239, 199, 31, 69, 197, 104, 136, + 177, 76, 71, 115, 150, 217, 247, 34, 108, 92, 65, 218, 27, 140, 87, 248, 28, 54, 89, 125, 16, 73, 222, 142, 203, + 18, 208, 76, 173, 55, 12, 71, 194, 29, 176, 82, 39, 220, 187, 71, 240, 196, 88, 10, 40, 120, 118, 27, 41, 162, 22, + 143, 232, 192, 160, 254, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1170, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14936970174874741376" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13935952828403700908" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3716572126337737988" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dbb9c925a3d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14915158245363261342" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28f75e6b5358" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bbf04fdefd9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29d1a56b4203" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aa7be8622eaca94bb709a6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16c1f451810030" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10805019348264296668" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4dd41e22d554705d01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1c18d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10692235967570714587" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe7fb4112379ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afe8159e8285bef6fde8" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15517871193145164863" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa429b7ca7c29a91cafce2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7822353903391107621" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2637760097899769073" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f497ea" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16927722644909864353" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5514212610147882309" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6145302020788680053" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2aa92fc3e3b4d18e" + } + ] + } + ] + }, + "cborHex": "d8669f1bcf4ac73c0e036a809fa0d8669f1bc1667342f79a54ac9f04ffffa0d905099fbf1b3393eaa85c7aa504462dbb9c925a3d1bcefd4966779d9f9e4628f75e6b5358468bbf04fdefd94629d1a56b4203ff4baa7be8622eaca94bb709a6bf4716c1f4518100301b95f323d98c8420dc494dd41e22d554705d0143b1c18d41a71b946273f66db51fdb47fe7fb4112379ed4aafe8159e8285bef6fde8ffd8669f1bd75a8da209af443f9f4bfa429b7ca7c29a91cafce21b6c8e956e37046a251b249b34d56603ecf143f497eaffff80ffd8669f1beaeb5a0f023035a19f1b4c866b2743d815451b55487fa0f2997575482aa92fc3e3b4d18effffffff", + "cborBytes": [ + 216, 102, 159, 27, 207, 74, 199, 60, 14, 3, 106, 128, 159, 160, 216, 102, 159, 27, 193, 102, 115, 66, 247, 154, + 84, 172, 159, 4, 255, 255, 160, 217, 5, 9, 159, 191, 27, 51, 147, 234, 168, 92, 122, 165, 4, 70, 45, 187, 156, + 146, 90, 61, 27, 206, 253, 73, 102, 119, 157, 159, 158, 70, 40, 247, 94, 107, 83, 88, 70, 139, 191, 4, 253, 239, + 217, 70, 41, 209, 165, 107, 66, 3, 255, 75, 170, 123, 232, 98, 46, 172, 169, 75, 183, 9, 166, 191, 71, 22, 193, + 244, 81, 129, 0, 48, 27, 149, 243, 35, 217, 140, 132, 32, 220, 73, 77, 212, 30, 34, 213, 84, 112, 93, 1, 67, 177, + 193, 141, 65, 167, 27, 148, 98, 115, 246, 109, 181, 31, 219, 71, 254, 127, 180, 17, 35, 121, 237, 74, 175, 232, + 21, 158, 130, 133, 190, 246, 253, 232, 255, 216, 102, 159, 27, 215, 90, 141, 162, 9, 175, 68, 63, 159, 75, 250, + 66, 155, 124, 167, 194, 154, 145, 202, 252, 226, 27, 108, 142, 149, 110, 55, 4, 106, 37, 27, 36, 155, 52, 213, + 102, 3, 236, 241, 67, 244, 151, 234, 255, 255, 128, 255, 216, 102, 159, 27, 234, 235, 90, 15, 2, 48, 53, 161, 159, + 27, 76, 134, 107, 39, 67, 216, 21, 69, 27, 85, 72, 127, 160, 242, 153, 117, 117, 72, 42, 169, 47, 195, 227, 180, + 209, 142, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1171, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5449989380918703306" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12923028834544513260" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3081989565133912505" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7270e35a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9442953660479450613" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1f61b" + }, + { + "_tag": "ByteArray", + "bytearray": "b75627eca155" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "811221244582958698" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff82880f23ca35e8" + }, + { + "_tag": "ByteArray", + "bytearray": "8640" + }, + { + "_tag": "ByteArray", + "bytearray": "e944f44abc42" + }, + { + "_tag": "ByteArray", + "bytearray": "51724ccd0c3e549e394b4b89" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16301336037130335122" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1239881018625120588" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16000482916817562801" + } + }, + { + "_tag": "ByteArray", + "bytearray": "302afe68022b60e52e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10946319636874047876" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10084377156823685505" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12169538795592772089" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6672037593278120262" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905029f9fd8669f1b4ba24077774f74ca9f1bb357d2418127f0ecffffd8669f1b2ac56d2e2f4479b99f447270e35a1b830c1c52c35a2df543c1f61b46b75627eca155ffffd8669f1b0b42096c859e166a9f48ff82880f23ca35e842864046e944f44abc424c51724ccd0c3e549e394b4b891be239fac1f16d7392ffffd8669f1b1134f1379ee6594c9f1bde0d22704b9decb149302afe68022b60e52e1b97e923b6b1c2b1841b8bf2e798458a1981ffff9f1ba8e2e30ebfa469f91b5c97d6d753650146ffff80ff", + "cborBytes": [ + 217, 5, 2, 159, 159, 216, 102, 159, 27, 75, 162, 64, 119, 119, 79, 116, 202, 159, 27, 179, 87, 210, 65, 129, 39, + 240, 236, 255, 255, 216, 102, 159, 27, 42, 197, 109, 46, 47, 68, 121, 185, 159, 68, 114, 112, 227, 90, 27, 131, + 12, 28, 82, 195, 90, 45, 245, 67, 193, 246, 27, 70, 183, 86, 39, 236, 161, 85, 255, 255, 216, 102, 159, 27, 11, + 66, 9, 108, 133, 158, 22, 106, 159, 72, 255, 130, 136, 15, 35, 202, 53, 232, 66, 134, 64, 70, 233, 68, 244, 74, + 188, 66, 76, 81, 114, 76, 205, 12, 62, 84, 158, 57, 75, 75, 137, 27, 226, 57, 250, 193, 241, 109, 115, 146, 255, + 255, 216, 102, 159, 27, 17, 52, 241, 55, 158, 230, 89, 76, 159, 27, 222, 13, 34, 112, 75, 157, 236, 177, 73, 48, + 42, 254, 104, 2, 43, 96, 229, 46, 27, 151, 233, 35, 182, 177, 194, 177, 132, 27, 139, 242, 231, 152, 69, 138, 25, + 129, 255, 255, 159, 27, 168, 226, 227, 14, 191, 164, 105, 249, 27, 92, 151, 214, 215, 83, 101, 1, 70, 255, 255, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1172, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17564503980874194405" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "189feb1797" + } + ] + }, + "cborHex": "d8669f1bf3c1a74f53f0dde59f45189feb1797ffff", + "cborBytes": [216, 102, 159, 27, 243, 193, 167, 79, 83, 240, 221, 229, 159, 69, 24, 159, 235, 23, 151, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1173, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12486885841540977882" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a5fa30" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13393540072957501088" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f96c" + } + ] + } + ] + }, + "cborHex": "d8669f1bad4a5483b7e794da9f43a5fa30d8669f1bb9df69bbfd975ea09f42f96cffffffff", + "cborBytes": [ + 216, 102, 159, 27, 173, 74, 84, 131, 183, 231, 148, 218, 159, 67, 165, 250, 48, 216, 102, 159, 27, 185, 223, 105, + 187, 253, 151, 94, 160, 159, 66, 249, 108, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1174, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7065894540266767232" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5486541875966393093" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1304497828323358036" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4058910615130777372" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9b" + }, + { + "_tag": "ByteArray", + "bytearray": "0b05445cb05f717c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ada03b07ec1e547b9bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9ab9fac4eb7cc306b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e62dcdbb2fcd693709c7a60e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8432011225956792770" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1342078643939727239" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9783992567410543911" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15642114966603104731" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "70b8072fcd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9626276663835230226" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16440215245696748438" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6702969445839649138" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4082546e" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b3eb184865b0b1a3d090dcfc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446457535296126202" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9fd8669f1b620f19a5ccf903809fd8669f1b4c241cc46a483b059f1b121a81dd037b75541b385425b30deea71c419b480b05445cb05f717cffffbf4a8ada03b07ec1e547b9bc49d9ab9fac4eb7cc306bff4ce62dcdbb2fcd693709c7a60e9f1b750485890942b9c21b12a0056a80aa5787ffd8669f1b87c7b966f9914d2780ffffffd8669f1bd913f4afc83301db80ff9f4570b8072fcd1b8597679fa1880012d8669f1be42760a976b74b969f1b5d05bb327791b972444082546effffff4cb3eb184865b0b1a3d090dcfc1bfffefb6513a73cfaffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 216, 102, 159, 27, 98, 15, 25, 165, 204, 249, 3, + 128, 159, 216, 102, 159, 27, 76, 36, 28, 196, 106, 72, 59, 5, 159, 27, 18, 26, 129, 221, 3, 123, 117, 84, 27, 56, + 84, 37, 179, 13, 238, 167, 28, 65, 155, 72, 11, 5, 68, 92, 176, 95, 113, 124, 255, 255, 191, 74, 138, 218, 3, 176, + 126, 193, 229, 71, 185, 188, 73, 217, 171, 159, 172, 78, 183, 204, 48, 107, 255, 76, 230, 45, 205, 187, 47, 205, + 105, 55, 9, 199, 166, 14, 159, 27, 117, 4, 133, 137, 9, 66, 185, 194, 27, 18, 160, 5, 106, 128, 170, 87, 135, 255, + 216, 102, 159, 27, 135, 199, 185, 102, 249, 145, 77, 39, 128, 255, 255, 255, 216, 102, 159, 27, 217, 19, 244, 175, + 200, 51, 1, 219, 128, 255, 159, 69, 112, 184, 7, 47, 205, 27, 133, 151, 103, 159, 161, 136, 0, 18, 216, 102, 159, + 27, 228, 39, 96, 169, 118, 183, 75, 150, 159, 27, 93, 5, 187, 50, 119, 145, 185, 114, 68, 64, 130, 84, 110, 255, + 255, 255, 76, 179, 235, 24, 72, 101, 176, 177, 163, 208, 144, 220, 252, 27, 255, 254, 251, 101, 19, 167, 60, 250, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1175, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3816758999029622254" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c420" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16215358732186928972" + } + }, + { + "_tag": "ByteArray", + "bytearray": "417d768dd052212afe2146" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "57f156e38b95fe3a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "95050c8d9a71" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12885462677013866037" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e6ec00839fee298" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b7e281c62bd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf5a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6075285497176407493" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7c4392c103c64b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "001c" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f1b34f7da166a6fa5ee9f9f42c4201be10886dab187c74c4b417d768dd052212afe2146ff4857f156e38b95fe3a9f4695050c8d9a711bb2d25c08ddf72635ffffbf486e6ec00839fee298460b7e281c62bd42cf5a1b544fbff8b0483dc548e7c4392c103c64b142001cffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 27, 52, 247, 218, 22, 106, 111, 165, 238, 159, + 159, 66, 196, 32, 27, 225, 8, 134, 218, 177, 135, 199, 76, 75, 65, 125, 118, 141, 208, 82, 33, 42, 254, 33, 70, + 255, 72, 87, 241, 86, 227, 139, 149, 254, 58, 159, 70, 149, 5, 12, 141, 154, 113, 27, 178, 210, 92, 8, 221, 247, + 38, 53, 255, 255, 191, 72, 110, 110, 192, 8, 57, 254, 226, 152, 70, 11, 126, 40, 28, 98, 189, 66, 207, 90, 27, 84, + 79, 191, 248, 176, 72, 61, 197, 72, 231, 196, 57, 44, 16, 60, 100, 177, 66, 0, 28, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1176, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15047331988145852885" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17168350124212096439" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cdd148" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "da7640202248" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11270769422612271938" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6242316679436401228" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ebbb27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12405478165114136962" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4056190681106110260" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13550324334813533661" + } + }, + { + "_tag": "ByteArray", + "bytearray": "25c959" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17632288374681633803" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4154825786044953119" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4880342975129543123" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03cf2a534cf4bb14e262" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8e1bcdde678050" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4495385685976882248" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16763178381110801306" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17607550800382529261" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18389350071255241620" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15731726897783772541" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15621741553581113871" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8b18a69a386" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "9834ff2560f7cb69c213218c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9161754081348362119" + } + } + ] + }, + "cborHex": "d8669f1bd0d2dcb812ce51d59fd8669f1bee423b79e5320db79f43cdd1489f46da76402022481b9c69d11324239342ffffff9fd8669f1b56a129f25d4d7a4c9f43ebbb271bac291caa047e29821b384a7bef109457341bbc0c6c3097e455dd4325c959ffffd8669f1bf4b278db5e26040b9f1b39a8e80a08d7b21f1b43ba761426ab61d34a03cf2a534cf4bb14e262ffff478e1bcdde678050d8669f1b3e62d176bd071c489f416f1be8a2c5ec289df39a1bf45a962a05720eedffffffd8669f1bff341875777913949f1bda52524365dc157dffffd8669f1bd8cb932cea29420f9f46f8b18a69a386a0a04c9834ff2560f7cb69c213218cffff1b7f2516cbc2411f87ffff", + "cborBytes": [ + 216, 102, 159, 27, 208, 210, 220, 184, 18, 206, 81, 213, 159, 216, 102, 159, 27, 238, 66, 59, 121, 229, 50, 13, + 183, 159, 67, 205, 209, 72, 159, 70, 218, 118, 64, 32, 34, 72, 27, 156, 105, 209, 19, 36, 35, 147, 66, 255, 255, + 255, 159, 216, 102, 159, 27, 86, 161, 41, 242, 93, 77, 122, 76, 159, 67, 235, 187, 39, 27, 172, 41, 28, 170, 4, + 126, 41, 130, 27, 56, 74, 123, 239, 16, 148, 87, 52, 27, 188, 12, 108, 48, 151, 228, 85, 221, 67, 37, 201, 89, + 255, 255, 216, 102, 159, 27, 244, 178, 120, 219, 94, 38, 4, 11, 159, 27, 57, 168, 232, 10, 8, 215, 178, 31, 27, + 67, 186, 118, 20, 38, 171, 97, 211, 74, 3, 207, 42, 83, 76, 244, 187, 20, 226, 98, 255, 255, 71, 142, 27, 205, + 222, 103, 128, 80, 216, 102, 159, 27, 62, 98, 209, 118, 189, 7, 28, 72, 159, 65, 111, 27, 232, 162, 197, 236, 40, + 157, 243, 154, 27, 244, 90, 150, 42, 5, 114, 14, 237, 255, 255, 255, 216, 102, 159, 27, 255, 52, 24, 117, 119, + 121, 19, 148, 159, 27, 218, 82, 82, 67, 101, 220, 21, 125, 255, 255, 216, 102, 159, 27, 216, 203, 147, 44, 234, + 41, 66, 15, 159, 70, 248, 177, 138, 105, 163, 134, 160, 160, 76, 152, 52, 255, 37, 96, 247, 203, 105, 194, 19, 33, + 140, 255, 255, 27, 127, 37, 22, 203, 194, 65, 31, 135, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1177, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17923635164632405133" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6db30ac566da440d96e6c2c8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1296340037914458488" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddac1c94b0df7e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7728041842109201775" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6311783202963833881" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9914164624554845964" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56b5196a3b2918" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17321827241284355780" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "482221442106096616" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17706611069396289883" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8d02d25ed" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18077428524555682920" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cc688f768e97bafa6281c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3811328368403949032" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5877314981516405558" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3428911751684590857" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bf8bd8b37ff9d548d9f4c6db30ac566da440d96e6c2c8bf1b11fd86656c01f97847ddac1c94b0df7e1b6b3f851c48463d6f1b5797f561bfefc4191b89963032d355e70c4756b5196a3b29181bf0637e19d97046c41b06b131d8bfcf7be81bf5ba84f4375d895b45b8d02d25ed1bfadfed76faa7c4684b8cc688f768e97bafa6281cffd8669f1b34e48ef5311625e89f1b51906ad61a5deb361b2f95f1122d528d09ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 248, 189, 139, 55, 255, 157, 84, 141, 159, 76, 109, 179, 10, 197, 102, 218, 68, 13, 150, 230, + 194, 200, 191, 27, 17, 253, 134, 101, 108, 1, 249, 120, 71, 221, 172, 28, 148, 176, 223, 126, 27, 107, 63, 133, + 28, 72, 70, 61, 111, 27, 87, 151, 245, 97, 191, 239, 196, 25, 27, 137, 150, 48, 50, 211, 85, 231, 12, 71, 86, 181, + 25, 106, 59, 41, 24, 27, 240, 99, 126, 25, 217, 112, 70, 196, 27, 6, 177, 49, 216, 191, 207, 123, 232, 27, 245, + 186, 132, 244, 55, 93, 137, 91, 69, 184, 208, 45, 37, 237, 27, 250, 223, 237, 118, 250, 167, 196, 104, 75, 140, + 198, 136, 247, 104, 233, 123, 175, 166, 40, 28, 255, 216, 102, 159, 27, 52, 228, 142, 245, 49, 22, 37, 232, 159, + 27, 81, 144, 106, 214, 26, 93, 235, 54, 27, 47, 149, 241, 18, 45, 82, 141, 9, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1178, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16048348796611776514" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b75e605a9155ba709c" + } + ] + }, + "cborHex": "d8669f1bdeb73033e59cd0029f49b75e605a9155ba709cffff", + "cborBytes": [ + 216, 102, 159, 27, 222, 183, 48, 51, 229, 156, 208, 2, 159, 73, 183, 94, 96, 90, 145, 85, 186, 112, 156, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1179, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "230728088324597405" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0db542" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "505358199046535337" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "163202582607058491" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3457553155436107188" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "651a39d9ae32" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3926193742487399241" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b93eb7e63b59a185b9c9b199" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12801002817702599763" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8edf" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8f7f82f47556bdefc9a8" + } + ] + }, + "cborHex": "d905089fbf1b0333b5f9504ae69d430db5421b0703649ac27ff8a91b0243cfe25ab8563b1b2ffbb246a5ccd5b446651a39d9ae321b367ca4682c52ab494cb93eb7e63b59a185b9c9b1991bb1a64c3d75f01c53428edfff4a8f7f82f47556bdefc9a8ff", + "cborBytes": [ + 217, 5, 8, 159, 191, 27, 3, 51, 181, 249, 80, 74, 230, 157, 67, 13, 181, 66, 27, 7, 3, 100, 154, 194, 127, 248, + 169, 27, 2, 67, 207, 226, 90, 184, 86, 59, 27, 47, 251, 178, 70, 165, 204, 213, 180, 70, 101, 26, 57, 217, 174, + 50, 27, 54, 124, 164, 104, 44, 82, 171, 73, 76, 185, 62, 183, 230, 59, 89, 161, 133, 185, 201, 177, 153, 27, 177, + 166, 76, 61, 117, 240, 28, 83, 66, 142, 223, 255, 74, 143, 127, 130, 244, 117, 86, 189, 239, 201, 168, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1180, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9717942347715858047" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5993796724206836208" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "180101876992511535" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e390e891bea439" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5751304843679861159" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1929749697778288670" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7028394368889248847" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f01b9e73ef3bd29a9a198b20" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12781200620581408892" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de620841" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16848383551493650697" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "282fd98a67dea4e1" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16290827050583795841" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3179965713590803397" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df6a5c42df00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7872451469852379687" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13836965120150351086" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11112553080686696225" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b86dd1113cf544e7f9f9fd8669f1b532e3e5d3a3f99f09f1b027fd9b3f1850e2fffff47e390e891bea439bf1b4fd0bd489a8589a71b1ac7d920397e081e1b6189df70c2ffdc4f4cf01b9e73ef3bd29a9a198b201bb15ff23f28c1d07c44de6208411be9d17b92d250390948282fd98a67dea4e1ffd8669f1be214a4e3d75f28819f1b2c2181f7e4805bc546df6a5c42df001b6d4090e6dc0d8a271bc006c67724082ceeffff1b9a37b8266a00d721ffffff", + "cborBytes": [ + 216, 102, 159, 27, 134, 221, 17, 19, 207, 84, 78, 127, 159, 159, 216, 102, 159, 27, 83, 46, 62, 93, 58, 63, 153, + 240, 159, 27, 2, 127, 217, 179, 241, 133, 14, 47, 255, 255, 71, 227, 144, 232, 145, 190, 164, 57, 191, 27, 79, + 208, 189, 72, 154, 133, 137, 167, 27, 26, 199, 217, 32, 57, 126, 8, 30, 27, 97, 137, 223, 112, 194, 255, 220, 79, + 76, 240, 27, 158, 115, 239, 59, 210, 154, 154, 25, 139, 32, 27, 177, 95, 242, 63, 40, 193, 208, 124, 68, 222, 98, + 8, 65, 27, 233, 209, 123, 146, 210, 80, 57, 9, 72, 40, 47, 217, 138, 103, 222, 164, 225, 255, 216, 102, 159, 27, + 226, 20, 164, 227, 215, 95, 40, 129, 159, 27, 44, 33, 129, 247, 228, 128, 91, 197, 70, 223, 106, 92, 66, 223, 0, + 27, 109, 64, 144, 230, 220, 13, 138, 39, 27, 192, 6, 198, 119, 36, 8, 44, 238, 255, 255, 27, 154, 55, 184, 38, + 106, 0, 215, 33, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1181, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7659288921334048552" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dfe00cd04747f136" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9300714070349770325" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac5d85" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14523728969986140589" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17974513441128970022" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6a4b42b17c3367289f9f48dfe00cd04747f1369f1b8112c62b70acee5543ac5d85ffff1bc98ea68c5612e9ad9f1bf9724cbddcf9f726ffffff", + "cborBytes": [ + 216, 102, 159, 27, 106, 75, 66, 177, 124, 51, 103, 40, 159, 159, 72, 223, 224, 12, 208, 71, 71, 241, 54, 159, 27, + 129, 18, 198, 43, 112, 172, 238, 85, 67, 172, 93, 133, 255, 255, 27, 201, 142, 166, 140, 86, 18, 233, 173, 159, + 27, 249, 114, 76, 189, 220, 249, 247, 38, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1182, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8098520753219088071" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a426ecc42711f41138ef" + } + ] + }, + "cborHex": "d8669f1b7063b9b79dc0aec79f4aa426ecc42711f41138efffff", + "cborBytes": [ + 216, 102, 159, 27, 112, 99, 185, 183, 157, 192, 174, 199, 159, 74, 164, 38, 236, 196, 39, 17, 244, 17, 56, 239, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1183, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed70c5af8156ae0b1d486f38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f13a7acc91131e19dc5f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7051c694" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5665a3f994c5d52d710" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6c2" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ab0cfa2bf45aecc040b4b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1875127146908951610" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6857977415632666895" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a2e9" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7eb5e716f273fc3f8744fe" + }, + { + "_tag": "ByteArray", + "bytearray": "05e404" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10692822861596047245" + } + } + ] + }, + "cborHex": "d9050a9f80bf4ced70c5af8156ae0b1d486f3841eb4af13a7acc91131e19dc5f447051c6944af5665a3f994c5d52d71042b6c2ff9f9f4bab0cfa2bf45aecc040b4b81b1a05ca348c33243a1b5f2c6e1fd86fc10f42a2e9ff4b7eb5e716f273fc3f8744fe4305e404ff1b946489bd579bb78dff", + "cborBytes": [ + 217, 5, 10, 159, 128, 191, 76, 237, 112, 197, 175, 129, 86, 174, 11, 29, 72, 111, 56, 65, 235, 74, 241, 58, 122, + 204, 145, 19, 30, 25, 220, 95, 68, 112, 81, 198, 148, 74, 245, 102, 90, 63, 153, 76, 93, 82, 215, 16, 66, 182, + 194, 255, 159, 159, 75, 171, 12, 250, 43, 244, 90, 236, 192, 64, 180, 184, 27, 26, 5, 202, 52, 140, 51, 36, 58, + 27, 95, 44, 110, 31, 216, 111, 193, 15, 66, 162, 233, 255, 75, 126, 181, 231, 22, 242, 115, 252, 63, 135, 68, 254, + 67, 5, 228, 4, 255, 27, 148, 100, 137, 189, 87, 155, 183, 141, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1184, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17209156318408238186" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10357727821752386825" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "34ba2846fb6d8450922c8a2d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e8713968deccc6be99" + }, + { + "_tag": "ByteArray", + "bytearray": "136da560d18d547d47581cc3" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3038654461822761568" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10083606562645180529" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4325080691889220117" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82339ebecae4eab964" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9449021807441765580" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc98abaa" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1beed3347e5ae4646a9f1b8fbe0a9387bb45099f4c34ba2846fb6d8450922c8a2d9f49e8713968deccc6be994c136da560d18d547d47581cc3ffbf1b2a2b78223019fa601b8bf02abe554380711b3c05c5f958f52a154982339ebecae4eab9641b8321ab45537c64cc44dc98abaaffffffff", + "cborBytes": [ + 216, 102, 159, 27, 238, 211, 52, 126, 90, 228, 100, 106, 159, 27, 143, 190, 10, 147, 135, 187, 69, 9, 159, 76, 52, + 186, 40, 70, 251, 109, 132, 80, 146, 44, 138, 45, 159, 73, 232, 113, 57, 104, 222, 204, 198, 190, 153, 76, 19, + 109, 165, 96, 209, 141, 84, 125, 71, 88, 28, 195, 255, 191, 27, 42, 43, 120, 34, 48, 25, 250, 96, 27, 139, 240, + 42, 190, 85, 67, 128, 113, 27, 60, 5, 197, 249, 88, 245, 42, 21, 73, 130, 51, 158, 190, 202, 228, 234, 185, 100, + 27, 131, 33, 171, 69, 83, 124, 100, 204, 68, 220, 152, 171, 170, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1185, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9626509109135295846" + }, + "fields": [] + }, + "cborHex": "d8669f1b85983b080512456680ff", + "cborBytes": [216, 102, 159, 27, 133, 152, 59, 8, 5, 18, 69, 102, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1186, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2a13ea102d604e3a0ca637" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5341837939883910649" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10085127572496043488" + } + }, + { + "_tag": "ByteArray", + "bytearray": "14a61f3fc5eb4772c5fd9c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13355675643301105538" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c3a49b1c4895ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10380113959490509976" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3231318241980434730" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18015377900561257039" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d87d9f4b2a13ea102d604e3a0ca6379fd8669f1b4a22054dd67c25f99f1b8bf59218091fcde04b14a61f3fc5eb4772c5fd9c1bb958e43c764c8f82ffff47c3a49b1c4895ca1b900d92a663815c98ff1b2cd7f2d2217bc92a9fd8669f1bfa037ac04160524f80ffffff", + "cborBytes": [ + 216, 125, 159, 75, 42, 19, 234, 16, 45, 96, 78, 58, 12, 166, 55, 159, 216, 102, 159, 27, 74, 34, 5, 77, 214, 124, + 37, 249, 159, 27, 139, 245, 146, 24, 9, 31, 205, 224, 75, 20, 166, 31, 63, 197, 235, 71, 114, 197, 253, 156, 27, + 185, 88, 228, 60, 118, 76, 143, 130, 255, 255, 71, 195, 164, 155, 28, 72, 149, 202, 27, 144, 13, 146, 166, 99, + 129, 92, 152, 255, 27, 44, 215, 242, 210, 33, 123, 201, 42, 159, 216, 102, 159, 27, 250, 3, 122, 192, 65, 96, 82, + 79, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1187, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3266436725635293446" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4c" + } + ] + }, + "cborHex": "d8669f1b2d54b6e548c821069f414cffff", + "cborBytes": [216, 102, 159, 27, 45, 84, 182, 229, 72, 200, 33, 6, 159, 65, 76, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1188, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "853834315711507020" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c2f997" + } + ] + }, + "cborHex": "d8669f1b0bd96dc94d05ea4c9f43c2f997ffff", + "cborBytes": [216, 102, 159, 27, 11, 217, 109, 201, 77, 5, 234, 76, 159, 67, 194, 249, 151, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1189, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16896652470607986088" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9867398260672163514" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16458268304305245504" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14753021010690425404" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1570370068233887151" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9961753027762055019" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12648224520547398556" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12457976206144861714" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b5be6988b8cb451" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6760873090091987230" + } + }, + { + "_tag": "ByteArray", + "bytearray": "15ace39d16bb7dfbc930bc89" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14270152086359286746" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "031dbd9aeb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "374941030449999010" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3720597345657556901" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "66" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16690623503142312192" + } + }, + { + "_tag": "ByteArray", + "bytearray": "92" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8891461668000309138" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f9f9f1bea7cf7e653d0bda8ffd8669f1b88f00a7038abeeba9f1be46783d2b82f4d401bccbd4271c213c23c1b15cb1341c2fc9daf1b8a3f41995fede76bffff1baf878530329cf39c9f1bace39f5ab3887612488b5be6988b8cb4511b5dd372413a6e311e4c15ace39d16bb7dfbc930bc891bc609c3b74e3ea3daffff45031dbd9aeb1b05340ee173b0eca2d8669f1b33a23792c42e0fa59f9f41661be7a101a5389559004192ffffff1b7b64d1472f291f92ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 159, 159, 27, 234, 124, 247, 230, 83, 208, 189, + 168, 255, 216, 102, 159, 27, 136, 240, 10, 112, 56, 171, 238, 186, 159, 27, 228, 103, 131, 210, 184, 47, 77, 64, + 27, 204, 189, 66, 113, 194, 19, 194, 60, 27, 21, 203, 19, 65, 194, 252, 157, 175, 27, 138, 63, 65, 153, 95, 237, + 231, 107, 255, 255, 27, 175, 135, 133, 48, 50, 156, 243, 156, 159, 27, 172, 227, 159, 90, 179, 136, 118, 18, 72, + 139, 91, 230, 152, 139, 140, 180, 81, 27, 93, 211, 114, 65, 58, 110, 49, 30, 76, 21, 172, 227, 157, 22, 187, 125, + 251, 201, 48, 188, 137, 27, 198, 9, 195, 183, 78, 62, 163, 218, 255, 255, 69, 3, 29, 189, 154, 235, 27, 5, 52, 14, + 225, 115, 176, 236, 162, 216, 102, 159, 27, 51, 162, 55, 146, 196, 46, 15, 165, 159, 159, 65, 102, 27, 231, 161, + 1, 165, 56, 149, 89, 0, 65, 146, 255, 255, 255, 27, 123, 100, 209, 71, 47, 41, 31, 146, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1190, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9989444808390935635" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1270419916029430957" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "baab143a48ea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5678444677482797814" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2245881019235911693" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10644980345992536272" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50fe16" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13812217518296983554" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18445173694360979366" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16550512486164755474" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8aa1a3207b8304539fbf1b11a1702ec2840cad46baab143a48ea1b4ecde3593611daf61b1f2af8e34759480d1b93ba9139a3e660d04350fe161bbfaedaa71284e802418f1bfffa6bbf90c407a61be5af3b6af4847412ffffff", + "cborBytes": [ + 216, 102, 159, 27, 138, 161, 163, 32, 123, 131, 4, 83, 159, 191, 27, 17, 161, 112, 46, 194, 132, 12, 173, 70, 186, + 171, 20, 58, 72, 234, 27, 78, 205, 227, 89, 54, 17, 218, 246, 27, 31, 42, 248, 227, 71, 89, 72, 13, 27, 147, 186, + 145, 57, 163, 230, 96, 208, 67, 80, 254, 22, 27, 191, 174, 218, 167, 18, 132, 232, 2, 65, 143, 27, 255, 250, 107, + 191, 144, 196, 7, 166, 27, 229, 175, 59, 106, 244, 132, 116, 18, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1191, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15730638452985968242" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "395e430302030576f803" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17453459306944670187" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e8ba47514a11d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d40d1256e61f1b89ace11926" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10471770635869130783" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "37627947194979513" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cfdb1f" + }, + { + "_tag": "ByteArray", + "bytearray": "287cfa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13756411228863058494" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "509309120406346729" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5057e0fc04994b" + }, + { + "_tag": "ByteArray", + "bytearray": "e5c51bd8b91b449d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16660580561818362746" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8787933043615337736" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dd0f76423e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a1dc5a18e3b9aff46c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3869578218102487211" + } + }, + { + "_tag": "ByteArray", + "bytearray": "199306" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17640962551617332333" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31334118f7c110de263f801d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17120446551085481037" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9dbd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11292167575307113592" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10880602841221898225" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bda4e7454185436729fbf4a395e430302030576f8031bf23724c46c2c29eb475e8ba47514a11d4cd40d1256e61f1b89ace11926ff9fd8669f1b915333e95858901f9f1b0085ae6b2a2f14b943cfdb1f43287cfa1bbee89720c893d23effffd8669f1b07116df252afdbe99f475057e0fc04994b48e5c51bd8b91b449d1be73645bfdaf6237a1b79f5028aee9c0d0845dd0f76423effff9f49a1dc5a18e3b9aff46c1b35b380e3309678ab431993061bf4d149f9911ea46d4c31334118f7c110de263f801dff9f1bed980b6e2182fc4d429dbd1b9cb5d694ce5d54781b96ffaaa2dd231ff1ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 218, 78, 116, 84, 24, 84, 54, 114, 159, 191, 74, 57, 94, 67, 3, 2, 3, 5, 118, 248, 3, 27, 242, + 55, 36, 196, 108, 44, 41, 235, 71, 94, 139, 164, 117, 20, 161, 29, 76, 212, 13, 18, 86, 230, 31, 27, 137, 172, + 225, 25, 38, 255, 159, 216, 102, 159, 27, 145, 83, 51, 233, 88, 88, 144, 31, 159, 27, 0, 133, 174, 107, 42, 47, + 20, 185, 67, 207, 219, 31, 67, 40, 124, 250, 27, 190, 232, 151, 32, 200, 147, 210, 62, 255, 255, 216, 102, 159, + 27, 7, 17, 109, 242, 82, 175, 219, 233, 159, 71, 80, 87, 224, 252, 4, 153, 75, 72, 229, 197, 27, 216, 185, 27, 68, + 157, 27, 231, 54, 69, 191, 218, 246, 35, 122, 27, 121, 245, 2, 138, 238, 156, 13, 8, 69, 221, 15, 118, 66, 62, + 255, 255, 159, 73, 161, 220, 90, 24, 227, 185, 175, 244, 108, 27, 53, 179, 128, 227, 48, 150, 120, 171, 67, 25, + 147, 6, 27, 244, 209, 73, 249, 145, 30, 164, 109, 76, 49, 51, 65, 24, 247, 193, 16, 222, 38, 63, 128, 29, 255, + 159, 27, 237, 152, 11, 110, 33, 130, 252, 77, 66, 157, 189, 27, 156, 181, 214, 148, 206, 93, 84, 120, 27, 150, + 255, 170, 162, 221, 35, 31, 241, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1192, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7a8a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17871691243118251059" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "90884043374991019" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "329b315473d34dff81e371f3" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d9050b9f427a8a1bf805007f5185cc33d8669f1b0142e28e511e16ab80ff4c329b315473d34dff81e371f3a0ff", + "cborBytes": [ + 217, 5, 11, 159, 66, 122, 138, 27, 248, 5, 0, 127, 81, 133, 204, 51, 216, 102, 159, 27, 1, 66, 226, 142, 81, 30, + 22, 171, 128, 255, 76, 50, 155, 49, 84, 115, 211, 77, 255, 129, 227, 113, 243, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1193, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1191886281945055490" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4dc22de733ecb5f55ef3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16885430127342923108" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11108150793560334422" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12586677455865703246" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12338014474611741042" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa5dff7a1bc7e414" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14278158548871978613" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13120595373322169972" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15978170332402174322" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3275f4df3318a1c3a66504" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15655284778725204481" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "33" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6deac61877bc72a0be0a12" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4713953541915484822" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c4ee28" + }, + { + "_tag": "ByteArray", + "bytearray": "e87b" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9f9f9f1b108a6e422fff01024a4dc22de733ecb5f55ef31bea55193cebf42d641b9a28144b11a320561baeacdc75834aeb4effd8669f1bab396ecb88dc51729f48aa5dff7a1bc7e4141bc626358d20389e751bb615b7f9e4806e74ffff1bddbddd42e78449724b3275f4df3318a1c3a66504ff801bd942be8f9d7ee2019f41339f4b6deac61877bc72a0be0a121b416b53c55191229643c4ee2842e87bffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 159, 159, 27, 16, 138, 110, 66, 47, 255, 1, 2, 74, + 77, 194, 45, 231, 51, 236, 181, 245, 94, 243, 27, 234, 85, 25, 60, 235, 244, 45, 100, 27, 154, 40, 20, 75, 17, + 163, 32, 86, 27, 174, 172, 220, 117, 131, 74, 235, 78, 255, 216, 102, 159, 27, 171, 57, 110, 203, 136, 220, 81, + 114, 159, 72, 170, 93, 255, 122, 27, 199, 228, 20, 27, 198, 38, 53, 141, 32, 56, 158, 117, 27, 182, 21, 183, 249, + 228, 128, 110, 116, 255, 255, 27, 221, 189, 221, 66, 231, 132, 73, 114, 75, 50, 117, 244, 223, 51, 24, 161, 195, + 166, 101, 4, 255, 128, 27, 217, 66, 190, 143, 157, 126, 226, 1, 159, 65, 51, 159, 75, 109, 234, 198, 24, 119, 188, + 114, 160, 190, 10, 18, 27, 65, 107, 83, 197, 81, 145, 34, 150, 67, 196, 238, 40, 66, 232, 123, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1194, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17023099786629473859" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8367542973699976816" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9431108012482475809" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4130855721285478854" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "26b68960c8a36fd4d9" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5674599640381232044" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f1bec3e33104e13e643bf1b741f7c005e33ee701b82e206c4ea5bb721ffd8669f1b3953bf646d9c69c69f4926b68960c8a36fd4d9ffffd8669f1b4ec03a4ebf7b93ac80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 27, 236, 62, 51, 16, 78, 19, 230, 67, 191, 27, + 116, 31, 124, 0, 94, 51, 238, 112, 27, 130, 226, 6, 196, 234, 91, 183, 33, 255, 216, 102, 159, 27, 57, 83, 191, + 100, 109, 156, 105, 198, 159, 73, 38, 182, 137, 96, 200, 163, 111, 212, 217, 255, 255, 216, 102, 159, 27, 78, 192, + 58, 78, 191, 123, 147, 172, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1195, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13068021377863322875" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4513492714606180523" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14020973298816841676" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9fd8669f1bfffffffffffffff19f1bb55af034b0c10cfbffff9fd8669f1b3ea325b5de6a38ab80ffd8669f1bc29480edd136f7cc80ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 241, 159, 27, 181, 90, 240, 52, 176, 193, 12, 251, 255, 255, 159, 216, 102, 159, 27, 62, 163, 37, 181, 222, + 106, 56, 171, 128, 255, 216, 102, 159, 27, 194, 148, 128, 237, 209, 54, 247, 204, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1196, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "554370375446404140" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9124b7a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2586932904470092661" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cc98663af19a6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4265905472354033466" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6711834508743800147" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16399576822941841185" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16978054843499143730" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56e136d2fd" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11568348254167792655" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3737719792793513874" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16585497521974594178" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17799078243785314276" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "07fb84fd" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9fbf1b07b184eb567b9c2c44f9124b7a1b23e6a1c53cb59b75472cc98663af19a61b3b338a6ce50e9f3a415a1b5d2539ecc4e1f5531be397003b562d77211beb9e2aed33dde2324556e136d2fdff1ba08b077207ae7c0f1b33df0c5927676f929fd8669f1be62b861f5c6aca829f414effff1bf703075bf2350fe4ff4407fb84fdffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 191, 27, 7, 177, 132, 235, 86, 123, 156, 44, 68, + 249, 18, 75, 122, 27, 35, 230, 161, 197, 60, 181, 155, 117, 71, 44, 201, 134, 99, 175, 25, 166, 27, 59, 51, 138, + 108, 229, 14, 159, 58, 65, 90, 27, 93, 37, 57, 236, 196, 225, 245, 83, 27, 227, 151, 0, 59, 86, 45, 119, 33, 27, + 235, 158, 42, 237, 51, 221, 226, 50, 69, 86, 225, 54, 210, 253, 255, 27, 160, 139, 7, 114, 7, 174, 124, 15, 27, + 51, 223, 12, 89, 39, 103, 111, 146, 159, 216, 102, 159, 27, 230, 43, 134, 31, 92, 106, 202, 130, 159, 65, 78, 255, + 255, 27, 247, 3, 7, 91, 242, 53, 15, 228, 255, 68, 7, 251, 132, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1197, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8614279426024876615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2454003d9f4ec941" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15607025245904345204" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14579955982209561488" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3db3b3e708bc54c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab235c4fe2e013c9ea68" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da097bb178" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ffacb1515e3" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17359098037595249059" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8259271308544856500" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "30" + }, + { + "_tag": "ByteArray", + "bytearray": "d593f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15697331065030480920" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5052996715695104229" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8ee3649660e69ef6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "25" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "94723160436985620" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dda1103f58" + }, + { + "_tag": "ByteArray", + "bytearray": "1c68ef3a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "363829637491573985" + } + }, + { + "_tag": "ByteArray", + "bytearray": "81" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16117419107804861924" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15388502186459745682" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3241991762498392737" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89fbf1b778c117f602b2a47482454003d9f4ec9411bd8974ac586ae98741bca5668b7c86eb390483db3b3e708bc54c04aab235c4fe2e013c9ea6845da097bb178468ffacb1515e3ffd8669f1bf0e7e7b1580b99a39fd8669f1b729ed37ee16451b49f413043d593f81bd9d81f6f84d894181b461fd9bdb238e0e5488ee3649660e69ef6ffff41259f1b0150863669d94f1445dda1103f58441c68ef3a1b050c9520ad71c4e14181ffd8669f1bdfac9348e8cd55e480ff9f411d1bd58ef134f1414d921b2cfdde54c87592a1ffffff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 191, 27, 119, 140, 17, 127, 96, 43, 42, 71, 72, + 36, 84, 0, 61, 159, 78, 201, 65, 27, 216, 151, 74, 197, 134, 174, 152, 116, 27, 202, 86, 104, 183, 200, 110, 179, + 144, 72, 61, 179, 179, 231, 8, 188, 84, 192, 74, 171, 35, 92, 79, 226, 224, 19, 201, 234, 104, 69, 218, 9, 123, + 177, 120, 70, 143, 250, 203, 21, 21, 227, 255, 216, 102, 159, 27, 240, 231, 231, 177, 88, 11, 153, 163, 159, 216, + 102, 159, 27, 114, 158, 211, 126, 225, 100, 81, 180, 159, 65, 48, 67, 213, 147, 248, 27, 217, 216, 31, 111, 132, + 216, 148, 24, 27, 70, 31, 217, 189, 178, 56, 224, 229, 72, 142, 227, 100, 150, 96, 230, 158, 246, 255, 255, 65, + 37, 159, 27, 1, 80, 134, 54, 105, 217, 79, 20, 69, 221, 161, 16, 63, 88, 68, 28, 104, 239, 58, 27, 5, 12, 149, 32, + 173, 113, 196, 225, 65, 129, 255, 216, 102, 159, 27, 223, 172, 147, 72, 232, 205, 85, 228, 128, 255, 159, 65, 29, + 27, 213, 142, 241, 52, 241, 65, 77, 146, 27, 44, 253, 222, 84, 200, 117, 146, 161, 255, 255, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1198, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7076202694853270503" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10147481558780305481" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ffd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53afb9e5ca" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6959190396862798321" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2885571942395003184" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1bf24b05dbfa1b360b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1044486443420741368" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7226897935676784335" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2295489089582493381" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1350332058449406192" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4089727015325442380" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16516399550402135191" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10165261219278311285" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "832182931493723505" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07a040" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17151038732894347926" + } + }, + { + "_tag": "ByteArray", + "bytearray": "778587135aba8f45212568fd" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7914963657998438614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14055322710449730762" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b6233b8dc11641be79fa0bf1b8cd318b6cbed6049421ffd41104553afb9e5caffd8669f1b609402cb695119f19f9f1b280b9c64a849c130491bf24b05dbfa1b360bffbf1b0e7ec2e2e8cdeef81b644b1961fc04becfffbf1b1fdb372a3a596ec51b12bd57da50b2e8f01b38c1a10d58caa14c41b31be53609e22a2404971b8d12433898234f75ffd8669f1b0b8c81f793d39d719f4307a0401bee04badb832222964c778587135aba8f45212568fdffffbf1b6dd79982fd1f90d61bc30e89896fd634caffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 98, 51, 184, 220, 17, 100, 27, 231, 159, 160, 191, 27, 140, 211, 24, 182, 203, 237, 96, 73, 66, + 31, 253, 65, 16, 69, 83, 175, 185, 229, 202, 255, 216, 102, 159, 27, 96, 148, 2, 203, 105, 81, 25, 241, 159, 159, + 27, 40, 11, 156, 100, 168, 73, 193, 48, 73, 27, 242, 75, 5, 219, 250, 27, 54, 11, 255, 191, 27, 14, 126, 194, 226, + 232, 205, 238, 248, 27, 100, 75, 25, 97, 252, 4, 190, 207, 255, 191, 27, 31, 219, 55, 42, 58, 89, 110, 197, 27, + 18, 189, 87, 218, 80, 178, 232, 240, 27, 56, 193, 161, 13, 88, 202, 161, 76, 65, 179, 27, 229, 54, 9, 226, 42, 36, + 4, 151, 27, 141, 18, 67, 56, 152, 35, 79, 117, 255, 216, 102, 159, 27, 11, 140, 129, 247, 147, 211, 157, 113, 159, + 67, 7, 160, 64, 27, 238, 4, 186, 219, 131, 34, 34, 150, 76, 119, 133, 135, 19, 90, 186, 143, 69, 33, 37, 104, 253, + 255, 255, 191, 27, 109, 215, 153, 130, 253, 31, 144, 214, 27, 195, 14, 137, 137, 111, 214, 52, 202, 255, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1199, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a5b65d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "736182d122" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5671867577720893246" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5837249176447471263" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11793189370990833846" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c604036c033c55fa0702fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18308498958934907698" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "663c" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0110a36c0217" + } + ] + }, + "cborHex": "d9050c9fa0bf1bfffffffffffffff514ff43a5b65dbf0c45736182d12212071b4eb68582d71bef3e0f1b51021332eb97ce9f41031ba3a9d33ffad230b64bc604036c033c55fa0702fc1bfe14daccf1ec9b3242663cff460110a36c0217ff", + "cborBytes": [ + 217, 5, 12, 159, 160, 191, 27, 255, 255, 255, 255, 255, 255, 255, 245, 20, 255, 67, 165, 182, 93, 191, 12, 69, + 115, 97, 130, 209, 34, 18, 7, 27, 78, 182, 133, 130, 215, 27, 239, 62, 15, 27, 81, 2, 19, 50, 235, 151, 206, 159, + 65, 3, 27, 163, 169, 211, 63, 250, 210, 48, 182, 75, 198, 4, 3, 108, 3, 60, 85, 250, 7, 2, 252, 27, 254, 20, 218, + 204, 241, 236, 155, 50, 66, 102, 60, 255, 70, 1, 16, 163, 108, 2, 23, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1200, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1718b3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16306136046382728834" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5754853708170407816" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11590232662140293952" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10493665827828211257" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12595910206883727053" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3057964982363229899" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7172e5" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17952330848138120095" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17482312212443646286" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "af99d8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5144418532850331504" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8922203027622509394" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f809f431718b39f1be24b08572fd5c6821b4fdd58f501d62f88ffffd8669f1ba0d8c732d300934080ff1b91a0fd78fb5b1e39d8669f1baecda998e00586cd9fd8669f1b2a7012f31d580ecb9f437172e5ffff1bf9237dca758f4b9fd8669f1bf29da654fb2d494e9f43af99d8ffff1b4764a5663a7aef701b7bd20861bb5abb52ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 128, 159, 67, 23, 24, 179, 159, 27, 226, 75, 8, + 87, 47, 213, 198, 130, 27, 79, 221, 88, 245, 1, 214, 47, 136, 255, 255, 216, 102, 159, 27, 160, 216, 199, 50, 211, + 0, 147, 64, 128, 255, 27, 145, 160, 253, 120, 251, 91, 30, 57, 216, 102, 159, 27, 174, 205, 169, 152, 224, 5, 134, + 205, 159, 216, 102, 159, 27, 42, 112, 18, 243, 29, 88, 14, 203, 159, 67, 113, 114, 229, 255, 255, 27, 249, 35, + 125, 202, 117, 143, 75, 159, 216, 102, 159, 27, 242, 157, 166, 84, 251, 45, 73, 78, 159, 67, 175, 153, 216, 255, + 255, 27, 71, 100, 165, 102, 58, 122, 239, 112, 27, 123, 210, 8, 97, 187, 90, 187, 82, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1201, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16870098533701609212" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5811011744410383242" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1345400222746240838" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4a6a1c81f043db9c934ac8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1953490546749979743" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10139315182701334458" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4b0e31c1d3fb" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8052212951644821100" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "592ae98a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17426819572844949482" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19df8e538ca9ae1ef4f92f55" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bea1ea13c1b1f66fc9fd8669f1b50a4dc64bb34338a9f80d8669f1b12abd25fd58567469f4b4a6a1c81f043db9c934ac81b1b1c314d5f1dbc5f1b8cb6157032a34fbaffff464b0e31c1d3fbffffbf1b6fbf35045e96d66c44592ae98a1bf1d88011fc3f6fea4c19df8e538ca9ae1ef4f92f55ffffff", + "cborBytes": [ + 216, 102, 159, 27, 234, 30, 161, 60, 27, 31, 102, 252, 159, 216, 102, 159, 27, 80, 164, 220, 100, 187, 52, 51, + 138, 159, 128, 216, 102, 159, 27, 18, 171, 210, 95, 213, 133, 103, 70, 159, 75, 74, 106, 28, 129, 240, 67, 219, + 156, 147, 74, 200, 27, 27, 28, 49, 77, 95, 29, 188, 95, 27, 140, 182, 21, 112, 50, 163, 79, 186, 255, 255, 70, 75, + 14, 49, 193, 211, 251, 255, 255, 191, 27, 111, 191, 53, 4, 94, 150, 214, 108, 68, 89, 42, 233, 138, 27, 241, 216, + 128, 17, 252, 63, 111, 234, 76, 25, 223, 142, 83, 140, 169, 174, 30, 244, 249, 47, 85, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1202, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9767010885888492337" + }, + "fields": [] + }, + "cborHex": "d8669f1b878b64a722c1c33180ff", + "cborBytes": [216, 102, 159, 27, 135, 139, 100, 167, 34, 193, 195, 49, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1203, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f7e441b83bc7d15f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5128881723174932585" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14434012595901591676" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [] + } + ] + }, + "cborHex": "d905099fd8799f48f7e441b83bc7d15fd8669f1b472d72c0d4d5d0699f1bc84fe9fb363a707cffffffd8669f1bfffffffffffffff580ffff", + "cborBytes": [ + 217, 5, 9, 159, 216, 121, 159, 72, 247, 228, 65, 184, 59, 199, 209, 95, 216, 102, 159, 27, 71, 45, 114, 192, 212, + 213, 208, 105, 159, 27, 200, 79, 233, 251, 54, 58, 112, 124, 255, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 245, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1204, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "211780538269735695" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2373062220340702423" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb10" + } + ] + } + ] + }, + "cborHex": "d8669f1b02f0654709e89b0f9fd8669f1b20eecf84314eacd79f42fb10ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 2, 240, 101, 71, 9, 232, 155, 15, 159, 216, 102, 159, 27, 32, 238, 207, 132, 49, 78, 172, 215, + 159, 66, 251, 16, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1205, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14713278798825304052" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2332641980601661054" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18105975309619905998" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3663253073496629795" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee0cbec49b424b9288f560" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6260846082129278195" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7839455623336820333" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a5202f7b55c7bfc748c36" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16754505772474818048" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8938530584678165553" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18282204376125323624" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "212ff4" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "332e00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10117541848776363666" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e9181dff4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2e387aab092a3dc45e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e901" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3179e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bcc30111cfd44aff49fd8669f1b205f3585c1ecf67e9f41f81bfb45589d51e345cebf1b32d67d42f81fe2234bee0cbec49b424b9288f5601b56e2fe571eb634f3419d1b6ccb575aad6dfe6d4b5a5202f7b55c7bfc748c36ffd8669f1be883f63b1b97de009f1b7c0c0a3559b4ec311bfdb770044e0ab968ffff43212ff4ffffbf43332e001b8c68bab4d876ce92458e9181dff4084ae2e387aab092a3dc45e641fe42e90143b3179e42ec211bfffffffffffffff6ffffff", + "cborBytes": [ + 216, 102, 159, 27, 204, 48, 17, 28, 253, 68, 175, 244, 159, 216, 102, 159, 27, 32, 95, 53, 133, 193, 236, 246, + 126, 159, 65, 248, 27, 251, 69, 88, 157, 81, 227, 69, 206, 191, 27, 50, 214, 125, 66, 248, 31, 226, 35, 75, 238, + 12, 190, 196, 155, 66, 75, 146, 136, 245, 96, 27, 86, 226, 254, 87, 30, 182, 52, 243, 65, 157, 27, 108, 203, 87, + 90, 173, 109, 254, 109, 75, 90, 82, 2, 247, 181, 92, 123, 252, 116, 140, 54, 255, 216, 102, 159, 27, 232, 131, + 246, 59, 27, 151, 222, 0, 159, 27, 124, 12, 10, 53, 89, 180, 236, 49, 27, 253, 183, 112, 4, 78, 10, 185, 104, 255, + 255, 67, 33, 47, 244, 255, 255, 191, 67, 51, 46, 0, 27, 140, 104, 186, 180, 216, 118, 206, 146, 69, 142, 145, 129, + 223, 244, 8, 74, 226, 227, 135, 170, 176, 146, 163, 220, 69, 230, 65, 254, 66, 233, 1, 67, 179, 23, 158, 66, 236, + 33, 27, 255, 255, 255, 255, 255, 255, 255, 246, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1206, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4750008140684081581" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "608904204876270348" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02f919feb1" + } + ] + }, + "cborHex": "d8669f1b41eb6b3cc1b039ad9fd8669f1b08734325f1e44b0c9fd9050280ffff4502f919feb1ffff", + "cborBytes": [ + 216, 102, 159, 27, 65, 235, 107, 60, 193, 176, 57, 173, 159, 216, 102, 159, 27, 8, 115, 67, 37, 241, 228, 75, 12, + 159, 217, 5, 2, 128, 255, 255, 69, 2, 249, 25, 254, 177, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1207, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7721189885451700662" + }, + "fields": [] + }, + "cborHex": "d8669f1b6b272d4acdb009b680ff", + "cborBytes": [216, 102, 159, 27, 107, 39, 45, 74, 205, 176, 9, 182, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1208, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14072505308291256153" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f52bfc0feeddca0a3368d84" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12520541231018426344" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec4725b62061" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b2ccce486e1d54be9f5a3e3b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16557273591952955748" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "92b250fe144a94218fb0" + }, + { + "_tag": "ByteArray", + "bytearray": "f0eba9c41ca302c03ff596" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8864797866752893814" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13339312034485850841" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10821584475668916713" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e5272f6753d3f9" + }, + { + "_tag": "ByteArray", + "bytearray": "e3b1a67c04db04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7423394579965090329" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9393436601622789135" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bc34b9504c07fcf599fbf4c9f52bfc0feeddca0a3368d841badc1e5e9b67c3fe846ec4725b6206141b7ff4cb2ccce486e1d54be9f5a3e3bd8669f1be5c7409b914fd9649f4a92b250fe144a94218fb04bf0eba9c41ca302c03ff5969f1b7b0616b12d726376ffd8669f1bb91ec19ee39f52d99f1b962dfdbed320a9e947e5272f6753d3f947e3b1a67c04db041b6705320a26611a191b825c30d213e0fc0fffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 195, 75, 149, 4, 192, 127, 207, 89, 159, 191, 76, 159, 82, 191, 192, 254, 237, 220, 160, 163, + 54, 141, 132, 27, 173, 193, 229, 233, 182, 124, 63, 232, 70, 236, 71, 37, 182, 32, 97, 65, 183, 255, 76, 178, 204, + 206, 72, 110, 29, 84, 190, 159, 90, 62, 59, 216, 102, 159, 27, 229, 199, 64, 155, 145, 79, 217, 100, 159, 74, 146, + 178, 80, 254, 20, 74, 148, 33, 143, 176, 75, 240, 235, 169, 196, 28, 163, 2, 192, 63, 245, 150, 159, 27, 123, 6, + 22, 177, 45, 114, 99, 118, 255, 216, 102, 159, 27, 185, 30, 193, 158, 227, 159, 82, 217, 159, 27, 150, 45, 253, + 190, 211, 32, 169, 233, 71, 229, 39, 47, 103, 83, 211, 249, 71, 227, 177, 166, 124, 4, 219, 4, 27, 103, 5, 50, 10, + 38, 97, 26, 25, 27, 130, 92, 48, 210, 19, 224, 252, 15, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1209, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11109651736191810037" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa02049576fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b9a2d69648203b9f59f46fa02049576fd0b80ffff", + "cborBytes": [ + 216, 102, 159, 27, 154, 45, 105, 100, 130, 3, 185, 245, 159, 70, 250, 2, 4, 149, 118, 253, 11, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1210, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8102784188477768890" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4679ba" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15211154611643619082" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b7072df49fdde84ba9f9f9f434679ba1bd318e086f290170affa0ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 112, 114, 223, 73, 253, 222, 132, 186, 159, 159, 159, 67, 70, 121, 186, 27, 211, 24, 224, 134, + 242, 144, 23, 10, 255, 160, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1211, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8094555818977713141" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11906127001226119131" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9428734074555653845" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b4b86fc8d6b02afd90" + }, + { + "_tag": "ByteArray", + "bytearray": "ae9a48a037d953ab835bb36e" + }, + { + "_tag": "ByteArray", + "bytearray": "f96b2754e029b9" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11591075340742994125" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc2a" + } + ] + }, + "cborHex": "d8669f1b7055a3a16cbcdbf59f1ba53b0f6d1ec507dbd8669f1b82d997af6b82ded59f9f49b4b86fc8d6b02afd904cae9a48a037d953ab835bb36e47f96b2754e029b9ff9f1ba0dbc59c39c6a8cdffffff42fc2affff", + "cborBytes": [ + 216, 102, 159, 27, 112, 85, 163, 161, 108, 188, 219, 245, 159, 27, 165, 59, 15, 109, 30, 197, 7, 219, 216, 102, + 159, 27, 130, 217, 151, 175, 107, 130, 222, 213, 159, 159, 73, 180, 184, 111, 200, 214, 176, 42, 253, 144, 76, + 174, 154, 72, 160, 55, 217, 83, 171, 131, 91, 179, 110, 71, 249, 107, 39, 84, 224, 41, 185, 255, 159, 27, 160, + 219, 197, 156, 57, 198, 168, 205, 255, 255, 255, 66, 252, 42, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1212, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15039141356664245041" + }, + "fields": [] + }, + "cborHex": "d8669f1bd0b5c36212dbcb3180ff", + "cborBytes": [216, 102, 159, 27, 208, 181, 195, 98, 18, 219, 203, 49, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1213, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13843017784212322699" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16462242905185581340" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "de12e29bd8ace9" + }, + { + "_tag": "ByteArray", + "bytearray": "3adcf29b52ad1487ebcc2f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18388550198702540328" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04831a010f" + }, + { + "_tag": "ByteArray", + "bytearray": "47d7da" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15148038707983551398" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f9fd8669f1bc01c4754cf63f98b9f1be475a2b399c7f91cffff47de12e29bd8ace94b3adcf29b52ad1487ebcc2f9f1bff3140faa01a86284504831a010f4347d7daff1bd238a4f2793a0ba6ffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 159, 216, 102, 159, 27, 192, 28, 71, 84, 207, 99, + 249, 139, 159, 27, 228, 117, 162, 179, 153, 199, 249, 28, 255, 255, 71, 222, 18, 226, 155, 216, 172, 233, 75, 58, + 220, 242, 155, 82, 173, 20, 135, 235, 204, 47, 159, 27, 255, 49, 64, 250, 160, 26, 134, 40, 69, 4, 131, 26, 1, 15, + 67, 71, 215, 218, 255, 27, 210, 56, 164, 242, 121, 58, 11, 166, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1214, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16955600607799233335" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "322436758403551241" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4d222fb122fa" + }, + { + "_tag": "ByteArray", + "bytearray": "9a1d2ca44807e796d6175f8a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f6bbff498a72408c44" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6899747007256854228" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cebb4516ee967794f0957f85" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1716362680853564511" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09fd8669f1beb4e64eb0d454b379fd8669f1b04798685ff2c10099f464d222fb122fa4c9a1d2ca44807e796d6175f8affff49f6bbff498a72408c44809f1b5fc0d358bf9bfed44ccebb4516ee967794f0957f851b17d1bec3ba038c5fffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 216, 102, 159, 27, 235, 78, 100, 235, 13, 69, 75, + 55, 159, 216, 102, 159, 27, 4, 121, 134, 133, 255, 44, 16, 9, 159, 70, 77, 34, 47, 177, 34, 250, 76, 154, 29, 44, + 164, 72, 7, 231, 150, 214, 23, 95, 138, 255, 255, 73, 246, 187, 255, 73, 138, 114, 64, 140, 68, 128, 159, 27, 95, + 192, 211, 88, 191, 155, 254, 212, 76, 206, 187, 69, 22, 238, 150, 119, 148, 240, 149, 127, 133, 27, 23, 209, 190, + 195, 186, 3, 140, 95, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1215, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12687394593622832458" + }, + "fields": [] + }, + "cborHex": "d8669f1bb012ae298619b54a80ff", + "cborBytes": [216, 102, 159, 27, 176, 18, 174, 41, 134, 25, 181, 74, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1216, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10793368459634047282" + }, + "fields": [] + }, + "cborHex": "d8669f1b95c9bf6da664793280ff", + "cborBytes": [216, 102, 159, 27, 149, 201, 191, 109, 166, 100, 121, 50, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1217, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6099181387445168945" + }, + "fields": [] + }, + "cborHex": "d8669f1b54a4a5283357eb3180ff", + "cborBytes": [216, 102, 159, 27, 84, 164, 165, 40, 51, 87, 235, 49, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1218, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1504643864643508731" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3760417390790960945" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8948775538671289201" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14712133626561553891" + } + } + ] + }, + "cborHex": "d9050a9f1b14e1919f798c19fb1b342fafb1814be7311b7c306ff0953503711bcc2bff95cb47e5e3ff", + "cborBytes": [ + 217, 5, 10, 159, 27, 20, 225, 145, 159, 121, 140, 25, 251, 27, 52, 47, 175, 177, 129, 75, 231, 49, 27, 124, 48, + 111, 240, 149, 53, 3, 113, 27, 204, 43, 255, 149, 203, 71, 229, 227, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1219, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "599cda5a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15467997317133869704" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f34" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15294405484239939671" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "730bab28f6665eb38e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17296942856033949576" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95d8bea38087" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b0d5e625889a3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aea70151c5e90d4d038f8c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ff49290" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15295206326154707878" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1321946113456999764" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17433409868360004457" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "384324e942" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16286937101240895617" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5ab2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16440377737533585207" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "752166914666444947" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "73f4fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4545811459888615794" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1405974253357832767" + } + } + ] + }, + "cborHex": "d905089fbf44599cda5a1bd6a95d9b6275a288426f341bd440a4c132e8685749730bab28f6665eb38e1bf00b15e26a2257884695d8bea38087470b0d5e625889a34baea70151c5e90d4d038f8c446ff49290ffd8669f1bd4437d1dbcc243a69f1b12587efc78d00d54d8669f1bf1efe9e8bb6333699f45384324e9421be206d3006e980881425ab21be427f4728aedf737ffff1b0a703bd2e07eb893bf4373f4fd1b3f15f770228f9172ffffff1b138306225ebd1a3fff", + "cborBytes": [ + 217, 5, 8, 159, 191, 68, 89, 156, 218, 90, 27, 214, 169, 93, 155, 98, 117, 162, 136, 66, 111, 52, 27, 212, 64, + 164, 193, 50, 232, 104, 87, 73, 115, 11, 171, 40, 246, 102, 94, 179, 142, 27, 240, 11, 21, 226, 106, 34, 87, 136, + 70, 149, 216, 190, 163, 128, 135, 71, 11, 13, 94, 98, 88, 137, 163, 75, 174, 167, 1, 81, 197, 233, 13, 77, 3, 143, + 140, 68, 111, 244, 146, 144, 255, 216, 102, 159, 27, 212, 67, 125, 29, 188, 194, 67, 166, 159, 27, 18, 88, 126, + 252, 120, 208, 13, 84, 216, 102, 159, 27, 241, 239, 233, 232, 187, 99, 51, 105, 159, 69, 56, 67, 36, 233, 66, 27, + 226, 6, 211, 0, 110, 152, 8, 129, 66, 90, 178, 27, 228, 39, 244, 114, 138, 237, 247, 55, 255, 255, 27, 10, 112, + 59, 210, 224, 126, 184, 147, 191, 67, 115, 244, 253, 27, 63, 21, 247, 112, 34, 143, 145, 114, 255, 255, 255, 27, + 19, 131, 6, 34, 94, 189, 26, 63, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1220, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17031887189563949276" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04ae0903e1" + }, + { + "_tag": "ByteArray", + "bytearray": "dbd0fe7001c503" + } + ] + } + ] + }, + "cborHex": "d8669f1bec5d6b28fc7c40dc9f9f4504ae0903e147dbd0fe7001c503ffffff", + "cborBytes": [ + 216, 102, 159, 27, 236, 93, 107, 40, 252, 124, 64, 220, 159, 159, 69, 4, 174, 9, 3, 225, 71, 219, 208, 254, 112, + 1, 197, 3, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1221, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7710080652861929847" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00b3" + } + ] + }, + "cborHex": "d8669f1b6affb581077279779f4200b3ffff", + "cborBytes": [216, 102, 159, 27, 106, 255, 181, 129, 7, 114, 121, 119, 159, 66, 0, 179, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1222, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2135282306862476620" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "2b05fe006750" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17958791770816506273" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfe2d45070d62f82" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8521530122382446848" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b1da20bf1e3b6ed4c9f80462b05fe006750bf1bf93a71f73eb9e9a1416b48cfe2d45070d62f821b76428e7f4f659100ffd9050d9fbf071bffffffffffffffecffffffff", + "cborBytes": [ + 216, 102, 159, 27, 29, 162, 11, 241, 227, 182, 237, 76, 159, 128, 70, 43, 5, 254, 0, 103, 80, 191, 27, 249, 58, + 113, 247, 62, 185, 233, 161, 65, 107, 72, 207, 226, 212, 80, 112, 214, 47, 130, 27, 118, 66, 142, 127, 79, 101, + 145, 0, 255, 217, 5, 13, 159, 191, 7, 27, 255, 255, 255, 255, 255, 255, 255, 236, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1223, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15948017899034790768" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5994026534703510864" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7557746e9fabeebe8c3e98" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "091c6376e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2951334838558240383" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18173c3e14807d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a746e7276f6642ffe8ce2f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "946c1db62eacc8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83ca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1f40a3647395ba3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2006765480930085360" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3b1565e36363532" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d943cd24e023c" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ba0330836fb3dd06778d" + } + ] + }, + "cborHex": "d8669f1bdd52bdc86f8a4b709f1b532f0f602744b5504b7557746e9fabeebe8c3e9880bf45091c6376e91b28f53f66197fae7f4718173c3e14807d4c0a746e7276f6642ffe8ce2f647946c1db62eacc84283ca48a1f40a3647395ba31b1bd97692965a89f048a3b1565e36363532473d943cd24e023cff4aba0330836fb3dd06778dffff", + "cborBytes": [ + 216, 102, 159, 27, 221, 82, 189, 200, 111, 138, 75, 112, 159, 27, 83, 47, 15, 96, 39, 68, 181, 80, 75, 117, 87, + 116, 110, 159, 171, 238, 190, 140, 62, 152, 128, 191, 69, 9, 28, 99, 118, 233, 27, 40, 245, 63, 102, 25, 127, 174, + 127, 71, 24, 23, 60, 62, 20, 128, 125, 76, 10, 116, 110, 114, 118, 246, 100, 47, 254, 140, 226, 246, 71, 148, 108, + 29, 182, 46, 172, 200, 66, 131, 202, 72, 161, 244, 10, 54, 71, 57, 91, 163, 27, 27, 217, 118, 146, 150, 90, 137, + 240, 72, 163, 177, 86, 94, 54, 54, 53, 50, 71, 61, 148, 60, 210, 78, 2, 60, 255, 74, 186, 3, 48, 131, 111, 179, + 221, 6, 119, 141, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1224, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2078586794289404012" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18075579325995628197" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9811446466068725242" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18098490079464392358" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1914520257848528235" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8879765" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6758585635517566084" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4765784510910230265" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18056491867351907914" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7404726203469295777" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16480245295118344627" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "306570523800640908" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c1" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "23e5eb15d810" + } + ] + }, + "cborHex": "d8669f1b1cd89fad3470186c9fd8669f1bfad95ba0e35d36a59f1b88294293dec9bdfa1bfb2ac0d65d6806a6bf1b1a91be07ec59cd6b44d88797651b5dcb51d3b5150c841b422377c330dceef91bfa958baf9b3d7e4a1b66c2df4008d070a1ffffff9fd8669f1be4b597c7a2d4e1b39f1b0441284461be1d8cffff41c1ff4623e5eb15d810ffff", + "cborBytes": [ + 216, 102, 159, 27, 28, 216, 159, 173, 52, 112, 24, 108, 159, 216, 102, 159, 27, 250, 217, 91, 160, 227, 93, 54, + 165, 159, 27, 136, 41, 66, 147, 222, 201, 189, 250, 27, 251, 42, 192, 214, 93, 104, 6, 166, 191, 27, 26, 145, 190, + 7, 236, 89, 205, 107, 68, 216, 135, 151, 101, 27, 93, 203, 81, 211, 181, 21, 12, 132, 27, 66, 35, 119, 195, 48, + 220, 238, 249, 27, 250, 149, 139, 175, 155, 61, 126, 74, 27, 102, 194, 223, 64, 8, 208, 112, 161, 255, 255, 255, + 159, 216, 102, 159, 27, 228, 181, 151, 199, 162, 212, 225, 179, 159, 27, 4, 65, 40, 68, 97, 190, 29, 140, 255, + 255, 65, 193, 255, 70, 35, 229, 235, 21, 216, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1225, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10676593794141480447" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13232043297876600273" + } + } + ] + }, + "cborHex": "d905029f1b942ae17d1ef165ff1bb7a1a945e685e5d1ff", + "cborBytes": [ + 217, 5, 2, 159, 27, 148, 42, 225, 125, 30, 241, 101, 255, 27, 183, 161, 169, 69, 230, 133, 229, 209, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1226, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7283912089818905641" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b6515a77430d43c299f80ffff", + "cborBytes": [216, 102, 159, 27, 101, 21, 167, 116, 48, 212, 60, 41, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1227, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "422716685102760114" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12841093024382070729" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17757859867172055941" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b32039e7832d75f3a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9703382747367579208" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c37576be9f3da0a068ca2f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1a2657c2d2f9801e60d8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5151320488243341625" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "690a9af6b88f815e29c8c2" + }, + { + "_tag": "ByteArray", + "bytearray": "4be20c" + } + ] + } + ] + }, + "cborHex": "d8669f1b05ddca95e02e40b29f9fd8669f1bb234ba12160a2fc99f1bf6709776c9f4ab85498b32039e7832d75f3a1b86a95732b07f9e484bc37576be9f3da0a068ca2fffff4a1a2657c2d2f9801e60d89f41ee1b477d2ab0f1efa939ff4b690a9af6b88f815e29c8c2434be20cffffff", + "cborBytes": [ + 216, 102, 159, 27, 5, 221, 202, 149, 224, 46, 64, 178, 159, 159, 216, 102, 159, 27, 178, 52, 186, 18, 22, 10, 47, + 201, 159, 27, 246, 112, 151, 118, 201, 244, 171, 133, 73, 139, 50, 3, 158, 120, 50, 215, 95, 58, 27, 134, 169, 87, + 50, 176, 127, 158, 72, 75, 195, 117, 118, 190, 159, 61, 160, 160, 104, 202, 47, 255, 255, 74, 26, 38, 87, 194, + 210, 249, 128, 30, 96, 216, 159, 65, 238, 27, 71, 125, 42, 176, 241, 239, 169, 57, 255, 75, 105, 10, 154, 246, + 184, 143, 129, 94, 41, 200, 194, 67, 75, 226, 12, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1228, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5166147897080303759" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b6cbd1a415fde" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d86d308b120a690313c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73022ca2c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7812000511664483265" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79cbea89671d6e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aec8c6478d4393f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dedaf98f6c7648c8a237" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3340840415225195213" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b47b1d824169a508f9fbf470b6cbd1a415fde4a4d86d308b120a690313c4573022ca2c01b6c69cd135aee6bc14779cbea89671d6e48aec8c6478d4393f94adedaf98f6c7648c8a2371b2e5d0ca838c42acdffffff", + "cborBytes": [ + 216, 102, 159, 27, 71, 177, 216, 36, 22, 154, 80, 143, 159, 191, 71, 11, 108, 189, 26, 65, 95, 222, 74, 77, 134, + 211, 8, 177, 32, 166, 144, 49, 60, 69, 115, 2, 44, 162, 192, 27, 108, 105, 205, 19, 90, 238, 107, 193, 71, 121, + 203, 234, 137, 103, 29, 110, 72, 174, 200, 198, 71, 141, 67, 147, 249, 74, 222, 218, 249, 143, 108, 118, 72, 200, + 162, 55, 27, 46, 93, 12, 168, 56, 196, 42, 205, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1229, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3979179540697470459" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7ac6debc03" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4316740065986269286" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9183821091478724827" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10a5df4bb330313dc610cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "79590032220360639" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a8f3cd64d9b793785" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14154615927410021234" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b9e76b4d4527b5ee40de3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "953ed3ae51" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "038f9e33aa3b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6159c6e63e654f925" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15182658285047111008" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3738e2b5acc655fb9f457ac6debc039f1b3be824380cced0661b7f737c9fee5460dbffbf4b10a5df4bb330313dc610cb1b011ac2b66e280fbf493a8f3cd64d9b7937851bc46f4c310d5c5372415f4b3b9e76b4d4527b5ee40de345953ed3ae5146038f9e33aa3b49c6159c6e63e654f9251bd2b3a344e25fdd60ffffff", + "cborBytes": [ + 216, 102, 159, 27, 55, 56, 226, 181, 172, 198, 85, 251, 159, 69, 122, 198, 222, 188, 3, 159, 27, 59, 232, 36, 56, + 12, 206, 208, 102, 27, 127, 115, 124, 159, 238, 84, 96, 219, 255, 191, 75, 16, 165, 223, 75, 179, 48, 49, 61, 198, + 16, 203, 27, 1, 26, 194, 182, 110, 40, 15, 191, 73, 58, 143, 60, 214, 77, 155, 121, 55, 133, 27, 196, 111, 76, 49, + 13, 92, 83, 114, 65, 95, 75, 59, 158, 118, 180, 212, 82, 123, 94, 228, 13, 227, 69, 149, 62, 211, 174, 81, 70, 3, + 143, 158, 51, 170, 59, 73, 198, 21, 156, 110, 99, 230, 84, 249, 37, 27, 210, 179, 163, 68, 226, 95, 221, 96, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1230, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12079662890894125420" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4026272993743756669" + } + } + ] + }, + "cborHex": "d8669f1ba7a395660236696c9f1b37e031f4a8d85d7dffff", + "cborBytes": [ + 216, 102, 159, 27, 167, 163, 149, 102, 2, 54, 105, 108, 159, 27, 55, 224, 49, 244, 168, 216, 93, 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1231, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13336677071333404940" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10504705559395448547" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1bedc6b5ba23e46aaca980c8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6239629565746650342" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "42771352864040449" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7109338284070504299" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17547821769844388767" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11627979656186913782" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11127366460413288574" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15388698000852434063" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea16dbd0be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "220365847477947893" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd2607dc4eb709d5ae40d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16716662304884727405" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2983988519843745385" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11238454384174980480" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f3ba6e9b" + }, + { + "_tag": "ByteArray", + "bytearray": "f28aa2e2f9a9648422bf5b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4787191851829640255" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7006fe4535" + }, + { + "_tag": "ByteArray", + "bytearray": "a3b573c84fc2" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9d0200c4" + } + ] + } + ] + }, + "cborHex": "d8669f1bb9156522b8ecb10c9f9fd8669f1b91c8360cc9d636e39f4c1bedc6b5ba23e46aaca980c81b56979e07f45a9ce6ffffbf1b0097f4519e0626011b62a97180a21b876b1bf38662ed6570f39f1ba15ee1e3be7d63f6ffd8669f1b9a6c58d72687a07e9f1bd58fa34c8892bc8f45ea16dbd0be1b030ee5921b8d0df54bfd2607dc4eb709d5ae40d31be7fd83cc30d11e6dffffffd8669f1b296941bfbb214e699fd8669f1b9bf702b7f12e5d809f44f3ba6e9b4bf28aa2e2f9a9648422bf5b1b426f85a027f33c3fffff149f457006fe453546a3b573c84fc2ff449d0200c4ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 185, 21, 101, 34, 184, 236, 177, 12, 159, 159, 216, 102, 159, 27, 145, 200, 54, 12, 201, 214, + 54, 227, 159, 76, 27, 237, 198, 181, 186, 35, 228, 106, 172, 169, 128, 200, 27, 86, 151, 158, 7, 244, 90, 156, + 230, 255, 255, 191, 27, 0, 151, 244, 81, 158, 6, 38, 1, 27, 98, 169, 113, 128, 162, 27, 135, 107, 27, 243, 134, + 98, 237, 101, 112, 243, 159, 27, 161, 94, 225, 227, 190, 125, 99, 246, 255, 216, 102, 159, 27, 154, 108, 88, 215, + 38, 135, 160, 126, 159, 27, 213, 143, 163, 76, 136, 146, 188, 143, 69, 234, 22, 219, 208, 190, 27, 3, 14, 229, + 146, 27, 141, 13, 245, 75, 253, 38, 7, 220, 78, 183, 9, 213, 174, 64, 211, 27, 231, 253, 131, 204, 48, 209, 30, + 109, 255, 255, 255, 216, 102, 159, 27, 41, 105, 65, 191, 187, 33, 78, 105, 159, 216, 102, 159, 27, 155, 247, 2, + 183, 241, 46, 93, 128, 159, 68, 243, 186, 110, 155, 75, 242, 138, 162, 226, 249, 169, 100, 132, 34, 191, 91, 27, + 66, 111, 133, 160, 39, 243, 60, 63, 255, 255, 20, 159, 69, 112, 6, 254, 69, 53, 70, 163, 181, 115, 200, 79, 194, + 255, 68, 157, 2, 0, 196, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1232, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "47" + }, + { + "_tag": "ByteArray", + "bytearray": "a90c1e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17623785143795732169" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4727880815318205661" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13460105217116814286" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b9288e6a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e9695053d804746d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "022f21b8ee9c71" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc396d9eb725929f90b0e1d8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3723244425849f3182246e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5218787548538675437" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c610a2fd6f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "205382be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1d9ef07212ef5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d20" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f18f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94cc0db6137efd7c" + } + } + ] + } + ] + }, + "cborHex": "d905079f9f9f414743a90c1eff9f1bf4944336a5c04ec91b419cce8d596d04dd1bbacbe66159a13bce44b9288e6aff48e9695053d804746dffbf47022f21b8ee9c714cdc396d9eb725929f90b0e1d84b3723244425849f3182246e1b486cdba004e120ed45c610a2fd6f44205382be47e1d9ef07212ef5427d2042f18f4894cc0db6137efd7cffff", + "cborBytes": [ + 217, 5, 7, 159, 159, 159, 65, 71, 67, 169, 12, 30, 255, 159, 27, 244, 148, 67, 54, 165, 192, 78, 201, 27, 65, 156, + 206, 141, 89, 109, 4, 221, 27, 186, 203, 230, 97, 89, 161, 59, 206, 68, 185, 40, 142, 106, 255, 72, 233, 105, 80, + 83, 216, 4, 116, 109, 255, 191, 71, 2, 47, 33, 184, 238, 156, 113, 76, 220, 57, 109, 158, 183, 37, 146, 159, 144, + 176, 225, 216, 75, 55, 35, 36, 68, 37, 132, 159, 49, 130, 36, 110, 27, 72, 108, 219, 160, 4, 225, 32, 237, 69, + 198, 16, 162, 253, 111, 68, 32, 83, 130, 190, 71, 225, 217, 239, 7, 33, 46, 245, 66, 125, 32, 66, 241, 143, 72, + 148, 204, 13, 182, 19, 126, 253, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1233, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2072889368745014409" + }, + "fields": [] + }, + "cborHex": "d8669f1b1cc461e5f2baf48980ff", + "cborBytes": [216, 102, 159, 27, 28, 196, 97, 229, 242, 186, 244, 137, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1234, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3919218847763727489" + }, + "fields": [] + }, + "cborHex": "d8669f1b3663dcc6f1f9048180ff", + "cborBytes": [216, 102, 159, 27, 54, 99, 220, 198, 241, 249, 4, 129, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1235, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "80" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21d7078a2b7a9e2f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14229060396146727432" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13311359856487077664" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b2411b0e" + }, + { + "_tag": "ByteArray", + "bytearray": "072358d8f3dba089cb0fd0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11935074365353653860" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6522523007100704820" + } + }, + { + "_tag": "ByteArray", + "bytearray": "15e0f46f47d4" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10711768943435025839" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7494503747675333773" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15129801155358248968" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14750457372222405665" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eb5b" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1804650223155526153" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7468376670370815293" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14666735601551071555" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5849837731223077921" + } + } + } + ] + } + ] + }, + "cborHex": "d87d9f9fbf41804821d7078a2b7a9e2fffd8669f1bc577c70a9fe79a089f1bb8bb73434b4e972044b2411b0e4b072358d8f3dba089cb0fd01ba5a1e6e68ac67664ffff9f1b5a84a81dfd8cd8344615e0f46f47d4ffd8669f1b94a7d919c5818daf9f1b6801d3737005a48d1bd1f7d9fd5b6c500841b91bccb426d429dbbc2142eb5bffffa0ffbf1b190b67d10703ba091b67a5010336445d3d1bcb8ab6526906d9431b512ecc6c3b3a8421ffff", + "cborBytes": [ + 216, 125, 159, 159, 191, 65, 128, 72, 33, 215, 7, 138, 43, 122, 158, 47, 255, 216, 102, 159, 27, 197, 119, 199, + 10, 159, 231, 154, 8, 159, 27, 184, 187, 115, 67, 75, 78, 151, 32, 68, 178, 65, 27, 14, 75, 7, 35, 88, 216, 243, + 219, 160, 137, 203, 15, 208, 27, 165, 161, 230, 230, 138, 198, 118, 100, 255, 255, 159, 27, 90, 132, 168, 29, 253, + 140, 216, 52, 70, 21, 224, 244, 111, 71, 212, 255, 216, 102, 159, 27, 148, 167, 217, 25, 197, 129, 141, 175, 159, + 27, 104, 1, 211, 115, 112, 5, 164, 141, 27, 209, 247, 217, 253, 91, 108, 80, 8, 65, 185, 27, 204, 180, 38, 212, + 41, 219, 188, 33, 66, 235, 91, 255, 255, 160, 255, 191, 27, 25, 11, 103, 209, 7, 3, 186, 9, 27, 103, 165, 1, 3, + 54, 68, 93, 61, 27, 203, 138, 182, 82, 105, 6, 217, 67, 27, 81, 46, 204, 108, 59, 58, 132, 33, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1236, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5461113900718500543" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4739847923343308621" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "614c47" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5531295258979104141" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87c08b4eceeb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b13b00d6d514336690" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92e21b85797e1e7884" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d5137" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b147e9ece788c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7087674148311455950" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4f761e59331a0a8cef59a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10220791711172320125" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "21f0bfd3dc3f76d823c9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13897264672322594105" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11813516669579029248" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1c867971dbd938f1948f1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17387453094473397360" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17261381299137597699" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0f069bf2ebed" + } + ] + }, + "cborHex": "d8799f9f80bf1b4bc9c62892462abf1b41c75292d040374dffbf43614c471b4cc31bbb6340758d4687c08b4eceeb49b13b00d6d5143366904992e21b85797e1e7884439d513747b147e9ece788c11b625c7a15f5d2d8ce4bd4f761e59331a0a8cef59a1b8dd78be8c3aedb7dff80ff4a21f0bfd3dc3f76d823c99f9f1bc0dd0096af5fa5391ba3f20ad1fe69eb004bc1c867971dbd938f1948f1ffd8669f1bf14ca4777cda747080ffd8669f1bef8cbed63baad10380ffa0ff460f069bf2ebedff", + "cborBytes": [ + 216, 121, 159, 159, 128, 191, 27, 75, 201, 198, 40, 146, 70, 42, 191, 27, 65, 199, 82, 146, 208, 64, 55, 77, 255, + 191, 67, 97, 76, 71, 27, 76, 195, 27, 187, 99, 64, 117, 141, 70, 135, 192, 139, 78, 206, 235, 73, 177, 59, 0, 214, + 213, 20, 51, 102, 144, 73, 146, 226, 27, 133, 121, 126, 30, 120, 132, 67, 157, 81, 55, 71, 177, 71, 233, 236, 231, + 136, 193, 27, 98, 92, 122, 21, 245, 210, 216, 206, 75, 212, 247, 97, 229, 147, 49, 160, 168, 206, 245, 154, 27, + 141, 215, 139, 232, 195, 174, 219, 125, 255, 128, 255, 74, 33, 240, 191, 211, 220, 63, 118, 216, 35, 201, 159, + 159, 27, 192, 221, 0, 150, 175, 95, 165, 57, 27, 163, 242, 10, 209, 254, 105, 235, 0, 75, 193, 200, 103, 151, 29, + 189, 147, 143, 25, 72, 241, 255, 216, 102, 159, 27, 241, 76, 164, 119, 124, 218, 116, 112, 128, 255, 216, 102, + 159, 27, 239, 140, 190, 214, 59, 170, 209, 3, 128, 255, 160, 255, 70, 15, 6, 155, 242, 235, 237, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1237, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bc90c90eb6ff0a3924d2906e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2979045905476632943" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11084981474395454313" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8358e35552ce608d0ee3" + }, + { + "_tag": "ByteArray", + "bytearray": "a45f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14986030047380998721" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "437692676831385576" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5705854767221747741" + }, + "fields": [] + } + ] + }, + "cborHex": "d87d9f9f4cbc90c90eb6ff0a3924d2906effd8669f1bfffffffffffffff09f1b2957b277a584416f9f1b99d5c3eb93207b694a8358e35552ce608d0ee342a45f1bcff912edbf798a411b0612ff2bab5317e8ffffffd8669f1b4f2f44ae0c38b01d80ffff", + "cborBytes": [ + 216, 125, 159, 159, 76, 188, 144, 201, 14, 182, 255, 10, 57, 36, 210, 144, 110, 255, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 240, 159, 27, 41, 87, 178, 119, 165, 132, 65, 111, 159, 27, 153, 213, 195, 235, 147, 32, + 123, 105, 74, 131, 88, 227, 85, 82, 206, 96, 141, 14, 227, 66, 164, 95, 27, 207, 249, 18, 237, 191, 121, 138, 65, + 27, 6, 18, 255, 43, 171, 83, 23, 232, 255, 255, 255, 216, 102, 159, 27, 79, 47, 68, 174, 12, 56, 176, 29, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1238, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0386e84e74615897" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "086f9992" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e1c060697b07f9451" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16101990939336961270" + } + } + } + ] + } + ] + }, + "cborHex": "d905029fbf480386e84e7461589744086f9992498e1c060697b07f94511bdf75c37283bcecf6ffff", + "cborBytes": [ + 217, 5, 2, 159, 191, 72, 3, 134, 232, 78, 116, 97, 88, 151, 68, 8, 111, 153, 146, 73, 142, 28, 6, 6, 151, 176, + 127, 148, 81, 27, 223, 117, 195, 114, 131, 188, 236, 246, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1239, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8348884184916524758" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9509832251086185777" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9345050986141430448" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16612971459857561606" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0ccbe306ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8072740056817768193" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2469398173392845308" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11483138496799848065" + } + }, + { + "_tag": "ByteArray", + "bytearray": "79da09" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6080115932633189367" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10294918393292634511" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2058068363238066397" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce6c9c9272f4f1ce9b312110" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12602588891366995429" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7688750605347338642" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa6d0895" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6195237507542810364" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6254553079557927621" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3143060178345277677" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10430339125092849019" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11504232841379654866" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c810a1dd1cf3c6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8286930689065552807" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4479092876846042149" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13584606324580927684" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17329187202235131443" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15707058526857224463" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13499786273844628912" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba292976bca3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19d4b91e420d2ad884" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f6676c3e612608c007ce2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b64aa24d0f1fb3251c65f5db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07f04f9f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd85238277911183eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15544199435297382724" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4987458285137451785" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06590c2e4345ea425bcebe" + } + ] + }, + "cborHex": "d8669f1b73dd31ee90d37ed69f9f9f1b83f9b60c0f8ba5311b81b04a5c14dfb2b01be68d218600833806450ccbe306ed1b7008224f7ab09701ffd8669f1b2245108e261439fc9f1b9f5c4d9f605e36814379da09ffff1b5460e93a15cb4bf7d8669f1b8edee5bbdfd7b98f9f1b1c8fba45b24648dd4cce6c9c9272f4f1ce9b3121101baee563d34836b5e51b6ab3edf0564c399244fa6d0895ffff1b55f9e7b07843fefcff1b56cca2e347e032c59f9f1b2b9e64945df238ed1b90c0022c0604957bffd8669f1b9fa73ed133d12cd29f47c810a1dd1cf3c61b7301178e40090ba71b3e28ef3d80640c251bbc86377a562bc8c4ffffd8669f1bf07da3f24b7866339f1bd9faae82b798610fffffbf1bbb58e01754340db046ba292976bca34919d4b91e420d2ad8844b4f6676c3e612608c007ce24cb64aa24d0f1fb3251c65f5db4407f04f9f49dd85238277911183eb1bd7b817079aba6144ffff1b453702e2b9b25b094b06590c2e4345ea425bcebeffff", + "cborBytes": [ + 216, 102, 159, 27, 115, 221, 49, 238, 144, 211, 126, 214, 159, 159, 159, 27, 131, 249, 182, 12, 15, 139, 165, 49, + 27, 129, 176, 74, 92, 20, 223, 178, 176, 27, 230, 141, 33, 134, 0, 131, 56, 6, 69, 12, 203, 227, 6, 237, 27, 112, + 8, 34, 79, 122, 176, 151, 1, 255, 216, 102, 159, 27, 34, 69, 16, 142, 38, 20, 57, 252, 159, 27, 159, 92, 77, 159, + 96, 94, 54, 129, 67, 121, 218, 9, 255, 255, 27, 84, 96, 233, 58, 21, 203, 75, 247, 216, 102, 159, 27, 142, 222, + 229, 187, 223, 215, 185, 143, 159, 27, 28, 143, 186, 69, 178, 70, 72, 221, 76, 206, 108, 156, 146, 114, 244, 241, + 206, 155, 49, 33, 16, 27, 174, 229, 99, 211, 72, 54, 181, 229, 27, 106, 179, 237, 240, 86, 76, 57, 146, 68, 250, + 109, 8, 149, 255, 255, 27, 85, 249, 231, 176, 120, 67, 254, 252, 255, 27, 86, 204, 162, 227, 71, 224, 50, 197, + 159, 159, 27, 43, 158, 100, 148, 93, 242, 56, 237, 27, 144, 192, 2, 44, 6, 4, 149, 123, 255, 216, 102, 159, 27, + 159, 167, 62, 209, 51, 209, 44, 210, 159, 71, 200, 16, 161, 221, 28, 243, 198, 27, 115, 1, 23, 142, 64, 9, 11, + 167, 27, 62, 40, 239, 61, 128, 100, 12, 37, 27, 188, 134, 55, 122, 86, 43, 200, 196, 255, 255, 216, 102, 159, 27, + 240, 125, 163, 242, 75, 120, 102, 51, 159, 27, 217, 250, 174, 130, 183, 152, 97, 15, 255, 255, 191, 27, 187, 88, + 224, 23, 84, 52, 13, 176, 70, 186, 41, 41, 118, 188, 163, 73, 25, 212, 185, 30, 66, 13, 42, 216, 132, 75, 79, 102, + 118, 195, 230, 18, 96, 140, 0, 124, 226, 76, 182, 74, 162, 77, 15, 31, 179, 37, 28, 101, 245, 219, 68, 7, 240, 79, + 159, 73, 221, 133, 35, 130, 119, 145, 17, 131, 235, 27, 215, 184, 23, 7, 154, 186, 97, 68, 255, 255, 27, 69, 55, + 2, 226, 185, 178, 91, 9, 75, 6, 89, 12, 46, 67, 69, 234, 66, 91, 206, 190, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1240, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13935027271344462948" + }, + "fields": [] + }, + "cborHex": "d8669f1bc1632978ebde1c6480ff", + "cborBytes": [216, 102, 159, 27, 193, 99, 41, 120, 235, 222, 28, 100, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1241, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12178007629374284436" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10920974768047989998" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15136089173066215951" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15768594854147360445" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d2da1d0" + }, + { + "_tag": "ByteArray", + "bytearray": "1e0f99955a9e10" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c7863dd5c5e23db8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4793186147676554089" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "421a45f79d30aafe5f9b93" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5119586087488590867" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14998293210675423045" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "12430f54d6fd907c1ba2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17882576519633364146" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21f8ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7230417750427679386" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a3cc" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15590540853435493510" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1702890256928221909" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3981911255157694724" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2a4a41df14140d" + }, + { + "_tag": "ByteArray", + "bytearray": "e545f8bd5d59c7989d" + }, + { + "_tag": "ByteArray", + "bytearray": "7b0b88" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23c3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aef1e30af9d70e4cf1759357" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f483ece97660fe422" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc3301d4e2b1003e637b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4187859fbe2c449" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43ce9d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8083244334951545430" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10398454333445315629" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03d2fee79b" + }, + { + "_tag": "ByteArray", + "bytearray": "39a9202b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8286417245196614089" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3549113764326777477" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8493437546130512623" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c43a4d0a1b82c22174d83899" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5814609858567294116" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1436eed371f" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1ba900f96ac4d9e2949f1b978f18b0928124eed8669f1bd20e30e8913f720f9f9f1bdad54d79688186bd449d2da1d0471e0f99955a9e10ff8048c7863dd5c5e23db8bf1b4284d167ea9583694b421a45f79d30aafe5f9b931b470c6c6bfdca14131bd024a435f37627454a12430f54d6fd907c1ba21bf82bac99417ce4b24321f8ec1b64579aa2b7ebba9aff42a3ccffff1bd85cba4dd13cec861b17a1e1aa97ae2ad59f9f1b3742973082cde104472a4a41df14140d49e545f8bd5d59c7989d437b0b88ffbf4223c34caef1e30af9d70e4cf1759357494f483ece97660fe4224acc3301d4e2b1003e637b48f4187859fbe2c4494343ce9dff9f1b702d73e55179ba561b904ebb1f76211c2d4503d2fee79b4439a9202bffbf1b72ff4494c89d79c91b3140fc2a2625a2851b75dec072b3131aef4cc43a4d0a1b82c22174d83899415b1b50b1a4dbf7634ca441bb46e1436eed371fffffffff", + "cborBytes": [ + 216, 102, 159, 27, 169, 0, 249, 106, 196, 217, 226, 148, 159, 27, 151, 143, 24, 176, 146, 129, 36, 238, 216, 102, + 159, 27, 210, 14, 48, 232, 145, 63, 114, 15, 159, 159, 27, 218, 213, 77, 121, 104, 129, 134, 189, 68, 157, 45, + 161, 208, 71, 30, 15, 153, 149, 90, 158, 16, 255, 128, 72, 199, 134, 61, 213, 197, 226, 61, 184, 191, 27, 66, 132, + 209, 103, 234, 149, 131, 105, 75, 66, 26, 69, 247, 157, 48, 170, 254, 95, 155, 147, 27, 71, 12, 108, 107, 253, + 202, 20, 19, 27, 208, 36, 164, 53, 243, 118, 39, 69, 74, 18, 67, 15, 84, 214, 253, 144, 124, 27, 162, 27, 248, 43, + 172, 153, 65, 124, 228, 178, 67, 33, 248, 236, 27, 100, 87, 154, 162, 183, 235, 186, 154, 255, 66, 163, 204, 255, + 255, 27, 216, 92, 186, 77, 209, 60, 236, 134, 27, 23, 161, 225, 170, 151, 174, 42, 213, 159, 159, 27, 55, 66, 151, + 48, 130, 205, 225, 4, 71, 42, 74, 65, 223, 20, 20, 13, 73, 229, 69, 248, 189, 93, 89, 199, 152, 157, 67, 123, 11, + 136, 255, 191, 66, 35, 195, 76, 174, 241, 227, 10, 249, 215, 14, 76, 241, 117, 147, 87, 73, 79, 72, 62, 206, 151, + 102, 15, 228, 34, 74, 204, 51, 1, 212, 226, 177, 0, 62, 99, 123, 72, 244, 24, 120, 89, 251, 226, 196, 73, 67, 67, + 206, 157, 255, 159, 27, 112, 45, 115, 229, 81, 121, 186, 86, 27, 144, 78, 187, 31, 118, 33, 28, 45, 69, 3, 210, + 254, 231, 155, 68, 57, 169, 32, 43, 255, 191, 27, 114, 255, 68, 148, 200, 157, 121, 201, 27, 49, 64, 252, 42, 38, + 37, 162, 133, 27, 117, 222, 192, 114, 179, 19, 26, 239, 76, 196, 58, 77, 10, 27, 130, 194, 33, 116, 216, 56, 153, + 65, 91, 27, 80, 177, 164, 219, 247, 99, 76, 164, 65, 187, 70, 225, 67, 110, 237, 55, 31, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1242, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13451844589767307286" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13558127514509712635" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a7a62d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "545a878da946be7669788474" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14668055961622604202" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6736024a22c0bda844a25201" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e80e5515ad27f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2889573787548712871" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eec3e17a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8ace499e6917f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11156521997631201621" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15924913924849849664" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17680470711707795619" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c6d" + }, + { + "_tag": "ByteArray", + "bytearray": "b6026601e3a70cd822ec86" + }, + { + "_tag": "ByteArray", + "bytearray": "07c0ed25e137" + }, + { + "_tag": "ByteArray", + "bytearray": "d5b10e766f9eab080c8b8aac" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "29d309e5c3bb5a98" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc1755" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aea745486c6ecb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2501071414936899202" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8450802556036783721" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15618197832818544833" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9977542234314358884" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc4f13aace231b93912a" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905059f9f9f1bbaae8d622ad730161bbc282523f1cd1cfbffbf444a7a62d2413e4c545a878da946be76697884741bcb8f672eb210e9aa4c6736024a22c0bda844a25201413a47e80e5515ad27f41b2819d40cd71effa744eec3e17a47e8ace499e6917fffd8669f1b9ad3eda5a5a3a15580ffff9fd8669f1bdd00a8d74158d5409f1bf55da66fe90a80a3422c6d4bb6026601e3a70cd822ec864607c0ed25e1374cd5b10e766f9eab080c8b8aacffffbf4829d309e5c3bb5a9843dc175547aea745486c6ecb1b22b597335d328e82ffbf1b7547482683891e691bd8befc2e20ecd0c11b8a7759cc7fc3c0644adc4f13aace231b93912affffff", + "cborBytes": [ + 217, 5, 5, 159, 159, 159, 27, 186, 174, 141, 98, 42, 215, 48, 22, 27, 188, 40, 37, 35, 241, 205, 28, 251, 255, + 191, 68, 74, 122, 98, 210, 65, 62, 76, 84, 90, 135, 141, 169, 70, 190, 118, 105, 120, 132, 116, 27, 203, 143, 103, + 46, 178, 16, 233, 170, 76, 103, 54, 2, 74, 34, 192, 189, 168, 68, 162, 82, 1, 65, 58, 71, 232, 14, 85, 21, 173, + 39, 244, 27, 40, 25, 212, 12, 215, 30, 255, 167, 68, 238, 195, 225, 122, 71, 232, 172, 228, 153, 230, 145, 127, + 255, 216, 102, 159, 27, 154, 211, 237, 165, 165, 163, 161, 85, 128, 255, 255, 159, 216, 102, 159, 27, 221, 0, 168, + 215, 65, 88, 213, 64, 159, 27, 245, 93, 166, 111, 233, 10, 128, 163, 66, 44, 109, 75, 182, 2, 102, 1, 227, 167, + 12, 216, 34, 236, 134, 70, 7, 192, 237, 37, 225, 55, 76, 213, 177, 14, 118, 111, 158, 171, 8, 12, 139, 138, 172, + 255, 255, 191, 72, 41, 211, 9, 229, 195, 187, 90, 152, 67, 220, 23, 85, 71, 174, 167, 69, 72, 108, 110, 203, 27, + 34, 181, 151, 51, 93, 50, 142, 130, 255, 191, 27, 117, 71, 72, 38, 131, 137, 30, 105, 27, 216, 190, 252, 46, 32, + 236, 208, 193, 27, 138, 119, 89, 204, 127, 195, 192, 100, 74, 220, 79, 19, 170, 206, 35, 27, 147, 145, 42, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1243, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8587395042239608382" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6916319621431838106" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6e65b7fe6b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7876005857368342495" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6780736571962995955" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "15d1da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7408002611487149838" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78ad1392" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16826700520551948393" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9c6b9d42f79d" + }, + { + "_tag": "ByteArray", + "bytearray": "89" + }, + { + "_tag": "ByteArray", + "bytearray": "a7706bc0fd81" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9146029170508446482" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15506574531237133222" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3710478933562520559" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "75a49f510702c1e84be6e654" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5666881848552836" + } + }, + { + "_tag": "ByteArray", + "bytearray": "876eb207077bf52abb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5332259063620197594" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11326349695783978022" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05c876782f5748d315b002e8" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15325911773368457985" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed6bf42a7e9693583d7b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16644763098283932883" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9aee06a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64c15fe0a61d3af4c51097" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef45862a84ed9dd4e0610f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a85bc284038cd3d9a7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4eaf49d05" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b772c8e4afea4763e9fd8669f1b5ffbb40d2c82459a9f456e65b7fe6bbf1b6d4d31993155ffdf1b5e1a03fc7f5ab4f34315d1da1b66ce832038db8f0e4478ad13921be98472f8c5612069ff9f469c6b9d42f79d418946a7706bc0fd81ffffffd8669f1b7eed3912a5843b129fd8669f1bd7326b60f9823ba680ff1b337e44ee5d9073ef9f4c75a49f510702c1e84be6e6541b001421ffbf912d8449876eb207077bf52abb1b49fffd5de9705cda1b9d2f4709eb0ec426ff4c05c876782f5748d315b002e8ffffbf1bd4b0938ec69a9b014aed6bf42a7e9693583d7b1be6fe13d9a3be7cd344a9aee06a4b64c15fe0a61d3af4c510974bef45862a84ed9dd4e0610f49a85bc284038cd3d9a745b4eaf49d05ffffff", + "cborBytes": [ + 216, 102, 159, 27, 119, 44, 142, 74, 254, 164, 118, 62, 159, 216, 102, 159, 27, 95, 251, 180, 13, 44, 130, 69, + 154, 159, 69, 110, 101, 183, 254, 107, 191, 27, 109, 77, 49, 153, 49, 85, 255, 223, 27, 94, 26, 3, 252, 127, 90, + 180, 243, 67, 21, 209, 218, 27, 102, 206, 131, 32, 56, 219, 143, 14, 68, 120, 173, 19, 146, 27, 233, 132, 114, + 248, 197, 97, 32, 105, 255, 159, 70, 156, 107, 157, 66, 247, 157, 65, 137, 70, 167, 112, 107, 192, 253, 129, 255, + 255, 255, 216, 102, 159, 27, 126, 237, 57, 18, 165, 132, 59, 18, 159, 216, 102, 159, 27, 215, 50, 107, 96, 249, + 130, 59, 166, 128, 255, 27, 51, 126, 68, 238, 93, 144, 115, 239, 159, 76, 117, 164, 159, 81, 7, 2, 193, 232, 75, + 230, 230, 84, 27, 0, 20, 33, 255, 191, 145, 45, 132, 73, 135, 110, 178, 7, 7, 123, 245, 42, 187, 27, 73, 255, 253, + 93, 233, 112, 92, 218, 27, 157, 47, 71, 9, 235, 14, 196, 38, 255, 76, 5, 200, 118, 120, 47, 87, 72, 211, 21, 176, + 2, 232, 255, 255, 191, 27, 212, 176, 147, 142, 198, 154, 155, 1, 74, 237, 107, 244, 42, 126, 150, 147, 88, 61, + 123, 27, 230, 254, 19, 217, 163, 190, 124, 211, 68, 169, 174, 224, 106, 75, 100, 193, 95, 224, 166, 29, 58, 244, + 197, 16, 151, 75, 239, 69, 134, 42, 132, 237, 157, 212, 224, 97, 15, 73, 168, 91, 194, 132, 3, 140, 211, 217, 167, + 69, 180, 234, 244, 157, 5, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1244, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8812994933656319770" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "48f9fd670302fefe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + "cborHex": "d8669f1b7a4e0c32ebe6f71a9f4848f9fd670302fefe06ffff", + "cborBytes": [ + 216, 102, 159, 27, 122, 78, 12, 50, 235, 230, 247, 26, 159, 72, 72, 249, 253, 103, 3, 2, 254, 254, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1245, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "61e4c30a4279e9" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9f4761e4c30a4279e980ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 71, 97, 228, 195, 10, 66, 121, 233, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1246, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "662d79312b77" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5823490661268887970" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80d084" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a55fb7ba602f68c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "400f52149c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9aa01dec7a82bc7c9c1521f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "007904b3034b" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4411419604370391864" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "988bc80bacd85fdd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10720152387181625801" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "412f7d4d0e6ab42120c7fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17665562886249196906" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + } + ] + } + ] + }, + "cborHex": "d905079f1bffffffffffffffff9fbf46662d79312b771b50d131e6f9bc99a24380d08403488a55fb7ba602f68c45400f52149c4c9aa01dec7a82bc7c9c1521f746007904b3034bffffbf1b3d3882c1e9b1033848988bc80bacd85fdd1b94c5a1cc600441c94b412f7d4d0e6ab42120c7fe1bf528afd950352d6a0dffff", + "cborBytes": [ + 217, 5, 7, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 191, 70, 102, 45, 121, 49, 43, 119, 27, 80, 209, + 49, 230, 249, 188, 153, 162, 67, 128, 208, 132, 3, 72, 138, 85, 251, 123, 166, 2, 246, 140, 69, 64, 15, 82, 20, + 156, 76, 154, 160, 29, 236, 122, 130, 188, 124, 156, 21, 33, 247, 70, 0, 121, 4, 179, 3, 75, 255, 255, 191, 27, + 61, 56, 130, 193, 233, 177, 3, 56, 72, 152, 139, 200, 11, 172, 216, 95, 221, 27, 148, 197, 161, 204, 96, 4, 65, + 201, 75, 65, 47, 125, 77, 14, 106, 180, 33, 32, 199, 254, 27, 245, 40, 175, 217, 80, 53, 45, 106, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1247, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7a990e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15118369676531112392" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "649649645950858304" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1698072518229550159" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eb7d" + }, + { + "_tag": "ByteArray", + "bytearray": "9b710183271163dba7b7d4" + }, + { + "_tag": "ByteArray", + "bytearray": "030d780ea0cbfc27" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15921745960718331195" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15166024750488058000" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6159604125035978023" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e117af498c31" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3e613018edd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e73f7" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8e6b4eac4af798" + } + ] + }, + "cborHex": "d87c9f437a990ed8669f1bd1cf3d1ec8ac99c89f9f1b090404e9375bf4401b1790c3f563ece44fff9f42eb7d4b9b710183271163dba7b7d448030d780ea0cbfc27ffd8669f1bdcf5679820a06d3b80ff1bd2788b28539f7890ffffbf1b557b4f5115ccdd2746e117af498c3146f3e613018edd435e73f7ff478e6b4eac4af798ff", + "cborBytes": [ + 216, 124, 159, 67, 122, 153, 14, 216, 102, 159, 27, 209, 207, 61, 30, 200, 172, 153, 200, 159, 159, 27, 9, 4, 4, + 233, 55, 91, 244, 64, 27, 23, 144, 195, 245, 99, 236, 228, 79, 255, 159, 66, 235, 125, 75, 155, 113, 1, 131, 39, + 17, 99, 219, 167, 183, 212, 72, 3, 13, 120, 14, 160, 203, 252, 39, 255, 216, 102, 159, 27, 220, 245, 103, 152, 32, + 160, 109, 59, 128, 255, 27, 210, 120, 139, 40, 83, 159, 120, 144, 255, 255, 191, 27, 85, 123, 79, 81, 21, 204, + 221, 39, 70, 225, 23, 175, 73, 140, 49, 70, 243, 230, 19, 1, 142, 221, 67, 94, 115, 247, 255, 71, 142, 107, 78, + 172, 74, 247, 152, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1248, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "37529e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3901821112753760276" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78a2c71471" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e046230" + } + ] + }, + "cborHex": "d905039fbf4337529e1b36260da11acea8144578a2c714711bfffffffffffffff8ff0f449e046230ff", + "cborBytes": [ + 217, 5, 3, 159, 191, 67, 55, 82, 158, 27, 54, 38, 13, 161, 26, 206, 168, 20, 69, 120, 162, 199, 20, 113, 27, 255, + 255, 255, 255, 255, 255, 255, 248, 255, 15, 68, 158, 4, 98, 48, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1249, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10557586534157959490" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5556159345339597588" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "08" + }, + { + "_tag": "ByteArray", + "bytearray": "ee9de3f2" + }, + { + "_tag": "ByteArray", + "bytearray": "0415f9b8d5" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6500690115534987768" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1733347961473763170" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d142b3abc006a80fad4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "344aabbd85dd96fba77d41cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7791022893399681920" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6571389793650787835" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15361573478055340449" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16227771541574172916" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3118166644982723855" + } + }, + { + "_tag": "ByteArray", + "bytearray": "be" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8fd7a0f77dc18603" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5076811836432487058" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b77e0d21c537ceb3656" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1818274286652924572" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5beac8ebf1ad1d32240fde" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6759400243714579331" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96a3986203384d26fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cd7db0c9409d9d46a8c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b53a53" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc7c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf955bb253fa12a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70255f8f7dd3361770a23b27" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "336380325094022467" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a0b93f806a6e" + }, + { + "_tag": "ByteArray", + "bytearray": "44923ac663d04b2b4c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4057591420645695938" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16260229785944542740" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bdb557a4725e25d352b8a9" + }, + { + "_tag": "ByteArray", + "bytearray": "b74ef6c833ae6c796ef530" + }, + { + "_tag": "ByteArray", + "bytearray": "d49a3e" + }, + { + "_tag": "ByteArray", + "bytearray": "c28e3f3f6c67" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2303096486892766872" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10635646426944832667" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "31c7298750" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10485436764933096369" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07ef4e595f5b6100a0f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "244596ef8f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a00052c56" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e39c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b08b5e961a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fff71846cfc42b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17705882462143134299" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de4e97d24c4159c1d0fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17975366736084263908" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14928513632001549390" + } + } + ] + }, + "cborHex": "d8669f1b928415042deec1429fd8669f1b4d1b717c9e6f03149f9f410844ee9de3f2450415f9b8d5ff1b5a371737cb5b21f8bf1b180e16c98bca87624a3d142b3abc006a80fad44c344aabbd85dd96fba77d41cc1b6c1f460afe062b80ffd8669f1b5b3244335b2ec5fb9f1bd52f45b06e8ce9a11be134a03d17b8c0f4ffff9f1b2b45f40af8aab50f41beffffff9f9f488fd7a0f77dc18603ffd8669f1b46747577960e929280ffbf4a0b77e0d21c537ceb36561b193bced4802ca29c4b5beac8ebf1ad1d32240fde1b5dce36b5754bdb834996a3986203384d26fc4a9cd7db0c9409d9d46a8c43b53a5342bc7c48cf955bb253fa12a54c70255f8f7dd3361770a23b27ffd8669f1b04ab101f9aa8dd439f46a0b93f806a6e4944923ac663d04b2b4c1b384f75e6274261c2ffffd8669f1be1a7f0d705734e149f4bbdb557a4725e25d352b8a94bb74ef6c833ae6c796ef53043d49a3e46c28e3f3f6c671b1ff63e0d70b18698ffffff9fd8669f1b9399681342b3049b9f4531c7298750ffffbf41051b9183c12ef8a883b14a07ef4e595f5b6100a0f745244596ef8f451a00052c56433e39c9465b08b5e961a4411e486fff71846cfc42b91bf5b7ee4a1edc3a5b4ade4e97d24c4159c1d0fd1bf97554cf13ace3e4ffffa01bcf2cbc0dbc07644effff", + "cborBytes": [ + 216, 102, 159, 27, 146, 132, 21, 4, 45, 238, 193, 66, 159, 216, 102, 159, 27, 77, 27, 113, 124, 158, 111, 3, 20, + 159, 159, 65, 8, 68, 238, 157, 227, 242, 69, 4, 21, 249, 184, 213, 255, 27, 90, 55, 23, 55, 203, 91, 33, 248, 191, + 27, 24, 14, 22, 201, 139, 202, 135, 98, 74, 61, 20, 43, 58, 188, 0, 106, 128, 250, 212, 76, 52, 74, 171, 189, 133, + 221, 150, 251, 167, 125, 65, 204, 27, 108, 31, 70, 10, 254, 6, 43, 128, 255, 216, 102, 159, 27, 91, 50, 68, 51, + 91, 46, 197, 251, 159, 27, 213, 47, 69, 176, 110, 140, 233, 161, 27, 225, 52, 160, 61, 23, 184, 192, 244, 255, + 255, 159, 27, 43, 69, 244, 10, 248, 170, 181, 15, 65, 190, 255, 255, 255, 159, 159, 72, 143, 215, 160, 247, 125, + 193, 134, 3, 255, 216, 102, 159, 27, 70, 116, 117, 119, 150, 14, 146, 146, 128, 255, 191, 74, 11, 119, 224, 210, + 28, 83, 124, 235, 54, 86, 27, 25, 59, 206, 212, 128, 44, 162, 156, 75, 91, 234, 200, 235, 241, 173, 29, 50, 36, + 15, 222, 27, 93, 206, 54, 181, 117, 75, 219, 131, 73, 150, 163, 152, 98, 3, 56, 77, 38, 252, 74, 156, 215, 219, + 12, 148, 9, 217, 212, 106, 140, 67, 181, 58, 83, 66, 188, 124, 72, 207, 149, 91, 178, 83, 250, 18, 165, 76, 112, + 37, 95, 143, 125, 211, 54, 23, 112, 162, 59, 39, 255, 216, 102, 159, 27, 4, 171, 16, 31, 154, 168, 221, 67, 159, + 70, 160, 185, 63, 128, 106, 110, 73, 68, 146, 58, 198, 99, 208, 75, 43, 76, 27, 56, 79, 117, 230, 39, 66, 97, 194, + 255, 255, 216, 102, 159, 27, 225, 167, 240, 215, 5, 115, 78, 20, 159, 75, 189, 181, 87, 164, 114, 94, 37, 211, 82, + 184, 169, 75, 183, 78, 246, 200, 51, 174, 108, 121, 110, 245, 48, 67, 212, 154, 62, 70, 194, 142, 63, 63, 108, + 103, 27, 31, 246, 62, 13, 112, 177, 134, 152, 255, 255, 255, 159, 216, 102, 159, 27, 147, 153, 104, 19, 66, 179, + 4, 155, 159, 69, 49, 199, 41, 135, 80, 255, 255, 191, 65, 5, 27, 145, 131, 193, 46, 248, 168, 131, 177, 74, 7, + 239, 78, 89, 95, 91, 97, 0, 160, 247, 69, 36, 69, 150, 239, 143, 69, 26, 0, 5, 44, 86, 67, 62, 57, 201, 70, 91, 8, + 181, 233, 97, 164, 65, 30, 72, 111, 255, 113, 132, 108, 252, 66, 185, 27, 245, 183, 238, 74, 30, 220, 58, 91, 74, + 222, 78, 151, 210, 76, 65, 89, 193, 208, 253, 27, 249, 117, 84, 207, 19, 172, 227, 228, 255, 255, 160, 27, 207, + 44, 188, 13, 188, 7, 100, 78, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1250, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7976012530481934601" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17207761107703172822" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10681531515620847618" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0d95ce90120e27e3e4e47a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5745925258746603839" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6eb07d234370b1099f1beece3f8e8c6e0ed6d8669f1b943c6c51fdb870029f4b0d95ce90120e27e3e4e47a1b4fbda0946189293fffffffff", + "cborBytes": [ + 216, 102, 159, 27, 110, 176, 125, 35, 67, 112, 177, 9, 159, 27, 238, 206, 63, 142, 140, 110, 14, 214, 216, 102, + 159, 27, 148, 60, 108, 81, 253, 184, 112, 2, 159, 75, 13, 149, 206, 144, 18, 14, 39, 227, 228, 228, 122, 27, 79, + 189, 160, 148, 97, 137, 41, 63, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1251, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a0c5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9cc68dcd99969812c8415b27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8648299286206326286" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12499104801917985417" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3897ab1b68d1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1574699209136002087" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14823906603243537664" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11532711270551850296" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18109950191686946982" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88be59939e0b8199d70f98fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4228485777526544086" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "db0fcae9bfbdcf644b70be" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1339050247990183984" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11e6a8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3921059208077309963" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01aa9b06b65155465a532b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6193477317554339209" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0788e04e3a22fdc379f523" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11332798843376657729" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9029213120500673917" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17241125152557567316" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14147258791609953112" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17481316342832374913" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2487170009793404401" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8435462990969405174" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eeb03b22b6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10629273029088005939" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5a38a471458dff298e68" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4525846821313044595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11890486517592050352" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5269230135811537799" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7078668535999134914" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f42a0c59f4c9cc68dcd99969812c8415b271b7804ee615197a60e1bad75bd9820b36289463897ab1b68d1bf1b15da74966ca3d4271bcdb91883e5e605001ba00c6bcc32630d381bfb5377bfab8490a64c88be59939e0b8199d70f98fd1b3aae99694342d6d6ffff4bdb0fcae9bfbdcf644b70bebf1b1295431b1fda88304311e6a81b366a669338b8f80b4b01aa9b06b65155465a532b1b55f3a6ce4d43fd894b0788e04e3a22fdc379f5231b9d4630811a6c65411b7d4e357e88bd2d7d1bef44c7fa963f0d541bc45528ea636eeb581bf29a1c9804c124811b228433f241bd9df1ffd8669f1b7510c8e5b4af7ef69f45eeb03b22b6d8669f1b9382c380ef6e4f3380ffa04a5a38a471458dff298e68d8669f1b3ecf09b47c31e0739f1ba5037e7d3fa54ab01b492010e414d47b871b623c7b8772f67cc2ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 66, 160, 197, 159, 76, 156, 198, 141, 205, 153, + 150, 152, 18, 200, 65, 91, 39, 27, 120, 4, 238, 97, 81, 151, 166, 14, 27, 173, 117, 189, 152, 32, 179, 98, 137, + 70, 56, 151, 171, 27, 104, 209, 191, 27, 21, 218, 116, 150, 108, 163, 212, 39, 27, 205, 185, 24, 131, 229, 230, 5, + 0, 27, 160, 12, 107, 204, 50, 99, 13, 56, 27, 251, 83, 119, 191, 171, 132, 144, 166, 76, 136, 190, 89, 147, 158, + 11, 129, 153, 215, 15, 152, 253, 27, 58, 174, 153, 105, 67, 66, 214, 214, 255, 255, 75, 219, 15, 202, 233, 191, + 189, 207, 100, 75, 112, 190, 191, 27, 18, 149, 67, 27, 31, 218, 136, 48, 67, 17, 230, 168, 27, 54, 106, 102, 147, + 56, 184, 248, 11, 75, 1, 170, 155, 6, 182, 81, 85, 70, 90, 83, 43, 27, 85, 243, 166, 206, 77, 67, 253, 137, 75, 7, + 136, 224, 78, 58, 34, 253, 195, 121, 245, 35, 27, 157, 70, 48, 129, 26, 108, 101, 65, 27, 125, 78, 53, 126, 136, + 189, 45, 125, 27, 239, 68, 199, 250, 150, 63, 13, 84, 27, 196, 85, 40, 234, 99, 110, 235, 88, 27, 242, 154, 28, + 152, 4, 193, 36, 129, 27, 34, 132, 51, 242, 65, 189, 157, 241, 255, 216, 102, 159, 27, 117, 16, 200, 229, 180, + 175, 126, 246, 159, 69, 238, 176, 59, 34, 182, 216, 102, 159, 27, 147, 130, 195, 128, 239, 110, 79, 51, 128, 255, + 160, 74, 90, 56, 164, 113, 69, 141, 255, 41, 142, 104, 216, 102, 159, 27, 62, 207, 9, 180, 124, 49, 224, 115, 159, + 27, 165, 3, 126, 125, 63, 165, 74, 176, 27, 73, 32, 16, 228, 20, 212, 123, 135, 27, 98, 60, 123, 135, 114, 246, + 124, 194, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1252, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7772327909058577349" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14150545786020456116" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4c617b2662" + }, + { + "_tag": "ByteArray", + "bytearray": "a025f5e18e6f260183" + }, + { + "_tag": "ByteArray", + "bytearray": "af01aa0dad63" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3539308247451780570" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17756102167039452243" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "98f6b15b6fb905338391" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ec7c84d0b26bec0b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3310d49e83b5961f47" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5667494367741627240" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2b7e251b820b40827" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12132950743680104001" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc039e09f7c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e70caf5e82" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e71d39d2c7cf069dab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7608c511fbc6415750542" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea78d054" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13644633219248479147" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6bdcdb0dc14a83c59fd8669f1bc460d66b69a666b49f454c617b266249a025f5e18e6f26018346af01aa0dad63d8669f1b311e261957f945da9f1bf66a58d855ee2453415dffff4a98f6b15b6fb905338391ffff48ec7c84d0b26bec0bbf493310d49e83b5961f471b4ea6fc198bc44b6849a2b7e251b820b408271ba860e66b125d364146bc039e09f7c945e70caf5e8249e71d39d2c7cf069dab4be7608c511fbc641575054244ea78d0541bbd5b799edbccdbabffffff", + "cborBytes": [ + 216, 102, 159, 27, 107, 220, 219, 13, 193, 74, 131, 197, 159, 216, 102, 159, 27, 196, 96, 214, 107, 105, 166, 102, + 180, 159, 69, 76, 97, 123, 38, 98, 73, 160, 37, 245, 225, 142, 111, 38, 1, 131, 70, 175, 1, 170, 13, 173, 99, 216, + 102, 159, 27, 49, 30, 38, 25, 87, 249, 69, 218, 159, 27, 246, 106, 88, 216, 85, 238, 36, 83, 65, 93, 255, 255, 74, + 152, 246, 177, 91, 111, 185, 5, 51, 131, 145, 255, 255, 72, 236, 124, 132, 208, 178, 107, 236, 11, 191, 73, 51, + 16, 212, 158, 131, 181, 150, 31, 71, 27, 78, 166, 252, 25, 139, 196, 75, 104, 73, 162, 183, 226, 81, 184, 32, 180, + 8, 39, 27, 168, 96, 230, 107, 18, 93, 54, 65, 70, 188, 3, 158, 9, 247, 201, 69, 231, 12, 175, 94, 130, 73, 231, + 29, 57, 210, 199, 207, 6, 157, 171, 75, 231, 96, 140, 81, 31, 188, 100, 21, 117, 5, 66, 68, 234, 120, 208, 84, 27, + 189, 91, 121, 158, 219, 204, 219, 171, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1253, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17166840855801308895" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4128227070067997825" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8825552682881903019" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "544660b7378aa9c60e95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d6999d9c7bef672f23b22" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8269763774674442262" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05" + } + ] + }, + "cborHex": "d8669f1bee3cdecdf5b326df9fbf1b394a68a5df8dfc8141891b7a7aa967c1abe9ab4a544660b7378aa9c60e954b9d6999d9c7bef672f23b221b72c41a5685dd1816ff4105ffff", + "cborBytes": [ + 216, 102, 159, 27, 238, 60, 222, 205, 245, 179, 38, 223, 159, 191, 27, 57, 74, 104, 165, 223, 141, 252, 129, 65, + 137, 27, 122, 122, 169, 103, 193, 171, 233, 171, 74, 84, 70, 96, 183, 55, 138, 169, 198, 14, 149, 75, 157, 105, + 153, 217, 199, 190, 246, 114, 242, 59, 34, 27, 114, 196, 26, 86, 133, 221, 24, 22, 255, 65, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1254, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16435648927068985793" + }, + "fields": [] + }, + "cborHex": "d8669f1be417279e8efa19c180ff", + "cborBytes": [216, 102, 159, 27, 228, 23, 39, 158, 142, 250, 25, 193, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1255, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "317a1ae6" + }, + { + "_tag": "ByteArray", + "bytearray": "9ac277031344f31c8cb161" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4241981466847167513" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12509976281662085386" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14779657435247147731" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15103061734256457095" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71a2b548f2e97391199c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9683341458686839471" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c37a9f8f106a3a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3868209885609477485" + } + } + ] + }, + "cborHex": "d8799f9f44317a1ae64b9ac277031344f31c8cb161ffd8669f1b3ade8bab4b3744199fa0bf1bad9c5d25c107d90a1bcd1be421a1ddfad31bd198daa0bb26b5874a71a2b548f2e97391199cff1b866223c08bd78aaf47c37a9f8f106a3affff1b35aea4657468456dff", + "cborBytes": [ + 216, 121, 159, 159, 68, 49, 122, 26, 230, 75, 154, 194, 119, 3, 19, 68, 243, 28, 140, 177, 97, 255, 216, 102, 159, + 27, 58, 222, 139, 171, 75, 55, 68, 25, 159, 160, 191, 27, 173, 156, 93, 37, 193, 7, 217, 10, 27, 205, 27, 228, 33, + 161, 221, 250, 211, 27, 209, 152, 218, 160, 187, 38, 181, 135, 74, 113, 162, 181, 72, 242, 233, 115, 145, 25, 156, + 255, 27, 134, 98, 35, 192, 139, 215, 138, 175, 71, 195, 122, 159, 143, 16, 106, 58, 255, 255, 27, 53, 174, 164, + 101, 116, 104, 69, 109, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1256, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6997064092724038664" + }, + "fields": [] + }, + "cborHex": "d8669f1b611a90b865750c0880ff", + "cborBytes": [216, 102, 159, 27, 97, 26, 144, 184, 101, 117, 12, 8, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1257, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1192182526289888445" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0dbeffeeaca47ff0daf1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5234648003684880861" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d2e0ec4addcaed9b1c5ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad8d5961a30df412c4d3ee7f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42ff5714c0de3f4d762d2a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c368c8a5f291" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78b7de4ad3aa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e2fe32cc6fe3dc8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "920d507bcd52" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c45f85d127c333cc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db7afab3fe34c8c45b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bea9ad8e429743b961fbf3" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16286513807809453778" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12714897018500237084" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9004774255414293873" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f9fd8669f1b108b7bb0f2efc4bd80ffbf4a0dbeffeeaca47ff0daf11b48a5349fffd851dd4b3d2e0ec4addcaed9b1c5ed4cad8d5961a30df412c4d3ee7f4b42ff5714c0de3f4d762d2a46c368c8a5f2914678b7de4ad3aa480e2fe32cc6fe3dc846920d507bcd5248c45f85d127c333cc49db7afab3fe34c8c45b4bbea9ad8e429743b961fbf3ff9f1be2055204bffa1ed21bb0746378cf61471c1b7cf76279d88d3571ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 159, 216, 102, 159, 27, 16, 139, 123, 176, 242, + 239, 196, 189, 128, 255, 191, 74, 13, 190, 255, 238, 172, 164, 127, 240, 218, 241, 27, 72, 165, 52, 159, 255, 216, + 81, 221, 75, 61, 46, 14, 196, 173, 220, 174, 217, 177, 197, 237, 76, 173, 141, 89, 97, 163, 13, 244, 18, 196, 211, + 238, 127, 75, 66, 255, 87, 20, 192, 222, 63, 77, 118, 45, 42, 70, 195, 104, 200, 165, 242, 145, 70, 120, 183, 222, + 74, 211, 170, 72, 14, 47, 227, 44, 198, 254, 61, 200, 70, 146, 13, 80, 123, 205, 82, 72, 196, 95, 133, 209, 39, + 195, 51, 204, 73, 219, 122, 250, 179, 254, 52, 200, 196, 91, 75, 190, 169, 173, 142, 66, 151, 67, 185, 97, 251, + 243, 255, 159, 27, 226, 5, 82, 4, 191, 250, 30, 210, 27, 176, 116, 99, 120, 207, 97, 71, 28, 27, 124, 247, 98, + 121, 216, 141, 53, 113, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1258, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17438889307192764454" + }, + "fields": [] + }, + "cborHex": "d8669f1bf203616e0095282680ff", + "cborBytes": [216, 102, 159, 27, 242, 3, 97, 110, 0, 149, 40, 38, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1259, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1637380728527873488" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11201340362773532746" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2021582668799967081" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c7fa40fa143c1189ff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5544659609093553994" + } + } + ] + }, + "cborHex": "d8669f1b16b92518edf965d09f80d905099f80d8669f1b9b7327b6735c904a9f1b1c0e1ab9f9e87f6911ffffff49c7fa40fa143c1189ff1b4cf29689a07a3f4affff", + "cborBytes": [ + 216, 102, 159, 27, 22, 185, 37, 24, 237, 249, 101, 208, 159, 128, 217, 5, 9, 159, 128, 216, 102, 159, 27, 155, + 115, 39, 182, 115, 92, 144, 74, 159, 27, 28, 14, 26, 185, 249, 232, 127, 105, 17, 255, 255, 255, 73, 199, 250, 64, + 250, 20, 60, 17, 137, 255, 27, 76, 242, 150, 137, 160, 122, 63, 74, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1260, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4025699470014677647" + }, + "fields": [] + }, + "cborHex": "d8669f1b37de2856c2b4028f80ff", + "cborBytes": [216, 102, 159, 27, 55, 222, 40, 86, 194, 180, 2, 143, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1261, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2dc47ed02fc189b255d821" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "943a28142d05f6ffde54b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f774a96119ff83aa0422a94" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7875739040885844603" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4151ce5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3740974151283253222" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10250025693162403224" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11254778119644857582" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c9600ec846b1290595f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30a568" + } + } + ] + } + ] + }, + "cborHex": "d87e9fbf4b2dc47ed02fc189b255d8214b943a28142d05f6ffde54b54c7f774a96119ff83aa0422a941b6d4c3eee23ad2a7b44c4151ce54159ff1b33ea9c2b89281fe6bf1b8e3f680f9b9275981b9c310111c74544ee4a6c9600ec846b1290595f4330a568ffff", + "cborBytes": [ + 216, 126, 159, 191, 75, 45, 196, 126, 208, 47, 193, 137, 178, 85, 216, 33, 75, 148, 58, 40, 20, 45, 5, 246, 255, + 222, 84, 181, 76, 127, 119, 74, 150, 17, 159, 248, 58, 160, 66, 42, 148, 27, 109, 76, 62, 238, 35, 173, 42, 123, + 68, 196, 21, 28, 229, 65, 89, 255, 27, 51, 234, 156, 43, 137, 40, 31, 230, 191, 27, 142, 63, 104, 15, 155, 146, + 117, 152, 27, 156, 49, 1, 17, 199, 69, 68, 238, 74, 108, 150, 0, 236, 132, 107, 18, 144, 89, 95, 67, 48, 165, 104, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1262, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a6471483c16c4bd6de649f" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d87b9f4ba6471483c16c4bd6de649f80ff", + "cborBytes": [216, 123, 159, 75, 166, 71, 20, 131, 193, 108, 75, 214, 222, 100, 159, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1263, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16426732746131811210" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0b20d2c02926660c84" + }, + { + "_tag": "ByteArray", + "bytearray": "f41769ed36e8097722" + } + ] + }, + "cborHex": "d8669f1be3f77a666976ab8a9f490b20d2c02926660c8449f41769ed36e8097722ffff", + "cborBytes": [ + 216, 102, 159, 27, 227, 247, 122, 102, 105, 118, 171, 138, 159, 73, 11, 32, 210, 192, 41, 38, 102, 12, 132, 73, + 244, 23, 105, 237, 54, 232, 9, 119, 34, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1264, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10364046953868395031" + }, + "fields": [] + }, + "cborHex": "d8669f1b8fd47dcb20cb821780ff", + "cborBytes": [216, 102, 159, 27, 143, 212, 125, 203, 32, 203, 130, 23, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1265, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9148f79aba8d46" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f479148f79aba8d46ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 71, 145, 72, 247, 154, 186, 141, 70, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1266, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6526087684239893801" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "763448052874979027" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5a721dabd60b7b7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3813252281137064754" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e42f24" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4650879421653876808" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6077ecff607e7c649ff46fea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7555071757960234163" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4610389946225992463" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15032008466513534617" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba2a5cd716470a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16210249864818330484" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f272bb9541c10d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "869018957084303652" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12271060975700422699" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7131658890628576525" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70022521dc7aad825e06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9018728105236813098" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de7ed964be95b6" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a53aeaa343" + } + ] + }, + "cborHex": "d8669f1b5a91522c102ba5299fbf1b0a984ff58c13a6d348a5a721dabd60b7b71b34eb64bf081f6b3243e42f241b408b3e314cda80484c6077ecff607e7c649ff46fea1b68d901bc41ce44b31b3ffb653aacd5230f1bd09c6c0eab341e9947ba2a5cd716470a1be0f6605dd0d20b7447f272bb9541c10dffbf1b0c0f6023201721241baa4b90f149c8302b1b62f8bdf9d32c350d4a70022521dc7aad825e061b7d28f56dae78d52a47de7ed964be95b6ff45a53aeaa343ffff", + "cborBytes": [ + 216, 102, 159, 27, 90, 145, 82, 44, 16, 43, 165, 41, 159, 191, 27, 10, 152, 79, 245, 140, 19, 166, 211, 72, 165, + 167, 33, 218, 189, 96, 183, 183, 27, 52, 235, 100, 191, 8, 31, 107, 50, 67, 228, 47, 36, 27, 64, 139, 62, 49, 76, + 218, 128, 72, 76, 96, 119, 236, 255, 96, 126, 124, 100, 159, 244, 111, 234, 27, 104, 217, 1, 188, 65, 206, 68, + 179, 27, 63, 251, 101, 58, 172, 213, 35, 15, 27, 208, 156, 108, 14, 171, 52, 30, 153, 71, 186, 42, 92, 215, 22, + 71, 10, 27, 224, 246, 96, 93, 208, 210, 11, 116, 71, 242, 114, 187, 149, 65, 193, 13, 255, 191, 27, 12, 15, 96, + 35, 32, 23, 33, 36, 27, 170, 75, 144, 241, 73, 200, 48, 43, 27, 98, 248, 189, 249, 211, 44, 53, 13, 74, 112, 2, + 37, 33, 220, 122, 173, 130, 94, 6, 27, 125, 40, 245, 109, 174, 120, 213, 42, 71, 222, 126, 217, 100, 190, 149, + 182, 255, 69, 165, 58, 234, 163, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1267, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10790409473628634861" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9214090164163100554" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14019293876607991563" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16019343543199824187" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19afef9373b49edb27" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac4a24" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b95bf3c3f08a4feed9fbf1b7fdf062f9b5cbf8a1bc28e8980dd073f0b1bde502414135f793b4919afef9373b49edb2743ac4a2441a5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 149, 191, 60, 63, 8, 164, 254, 237, 159, 191, 27, 127, 223, 6, 47, 155, 92, 191, 138, 27, 194, + 142, 137, 128, 221, 7, 63, 11, 27, 222, 80, 36, 20, 19, 95, 121, 59, 73, 25, 175, 239, 147, 115, 180, 158, 219, + 39, 67, 172, 74, 36, 65, 165, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1268, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18039424677781506392" + }, + "fields": [] + }, + "cborHex": "d8669f1bfa58e92adf95095880ff", + "cborBytes": [216, 102, 159, 27, 250, 88, 233, 42, 223, 149, 9, 88, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1269, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "28fb3b6de1d29157ce05" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17735613093383950638" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10734658779752177582" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2301401617115132748" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5558638324" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "769355854208135281" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15995895772487144965" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2679213664078611770" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08f323db279b24f5ba637972" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3607392261839095606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1661577207722597186" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13263808856293358811" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1933967114379558724" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13261072445266974274" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7ad3acda74" + }, + { + "_tag": "ByteArray", + "bytearray": "1e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11017299370840352361" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "611d6e79188e496f6963a9c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43994944" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "933112974df0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f1c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10165690064834519148" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8204351450977507644" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10323146027706053188" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11338551684287767071" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "574196010247221043" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "130a90d44b1ffc41f6fd861d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92a26eef7550a655" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bad0513b67b505704841ab80" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5090795945171994040" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10138867445495449884" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "12b71490cfcd4f3e227407" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11831746146368311949" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16588754254816704695" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bd623c305badf6aa" + }, + { + "_tag": "ByteArray", + "bytearray": "79ea585e39" + }, + { + "_tag": "ByteArray", + "bytearray": "8c0412bb" + } + ] + } + ] + } + ] + }, + "cborHex": "d87c9f4a28fb3b6de1d29157ce051bf6218e2420ead12e1b94f92b4918281faed8669f1b1ff03893d1a8334c9f455558638324bf1b0aad4d12bbf170711bddfcd6748744d6051b252e7aa1e4c7453a4c08f323db279b24f5ba6379721b321008263c6987361b170f1baac130db421bb81283e1500bbcdb1b1ad6d4d80be17f44ff9f1bb808cb20f8dbd642457ad3acda74411effbf1b98e54f67d712e6694c611d6e79188e496f6963a9c1444399494446933112974df0426f1c1b8d13c940fb2de06cffbf1b71dbb62d17f9993c1b8f432e9e29e772441b9d5aa0aec161221f1b07f7f43aa63b6f334c130a90d44b1ffc41f6fd861d4892a26eef7550a6554cbad0513b67b505704841ab801b46a623f09ff9c5b8ffffffd8669f1b8cb47e394187491c9fa04b12b71490cfcd4f3e227407d8669f1ba432ce6ecee1528d9f1be637181a909978b748bd623c305badf6aa4579ea585e39448c0412bbffffffffff", + "cborBytes": [ + 216, 124, 159, 74, 40, 251, 59, 109, 225, 210, 145, 87, 206, 5, 27, 246, 33, 142, 36, 32, 234, 209, 46, 27, 148, + 249, 43, 73, 24, 40, 31, 174, 216, 102, 159, 27, 31, 240, 56, 147, 209, 168, 51, 76, 159, 69, 85, 88, 99, 131, 36, + 191, 27, 10, 173, 77, 18, 187, 241, 112, 113, 27, 221, 252, 214, 116, 135, 68, 214, 5, 27, 37, 46, 122, 161, 228, + 199, 69, 58, 76, 8, 243, 35, 219, 39, 155, 36, 245, 186, 99, 121, 114, 27, 50, 16, 8, 38, 60, 105, 135, 54, 27, + 23, 15, 27, 170, 193, 48, 219, 66, 27, 184, 18, 131, 225, 80, 11, 188, 219, 27, 26, 214, 212, 216, 11, 225, 127, + 68, 255, 159, 27, 184, 8, 203, 32, 248, 219, 214, 66, 69, 122, 211, 172, 218, 116, 65, 30, 255, 191, 27, 152, 229, + 79, 103, 215, 18, 230, 105, 76, 97, 29, 110, 121, 24, 142, 73, 111, 105, 99, 169, 193, 68, 67, 153, 73, 68, 70, + 147, 49, 18, 151, 77, 240, 66, 111, 28, 27, 141, 19, 201, 64, 251, 45, 224, 108, 255, 191, 27, 113, 219, 182, 45, + 23, 249, 153, 60, 27, 143, 67, 46, 158, 41, 231, 114, 68, 27, 157, 90, 160, 174, 193, 97, 34, 31, 27, 7, 247, 244, + 58, 166, 59, 111, 51, 76, 19, 10, 144, 212, 75, 31, 252, 65, 246, 253, 134, 29, 72, 146, 162, 110, 239, 117, 80, + 166, 85, 76, 186, 208, 81, 59, 103, 181, 5, 112, 72, 65, 171, 128, 27, 70, 166, 35, 240, 159, 249, 197, 184, 255, + 255, 255, 216, 102, 159, 27, 140, 180, 126, 57, 65, 135, 73, 28, 159, 160, 75, 18, 183, 20, 144, 207, 205, 79, 62, + 34, 116, 7, 216, 102, 159, 27, 164, 50, 206, 110, 206, 225, 82, 141, 159, 27, 230, 55, 24, 26, 144, 153, 120, 183, + 72, 189, 98, 60, 48, 91, 173, 246, 170, 69, 121, 234, 88, 94, 57, 68, 140, 4, 18, 187, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1270, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11071660901459474371" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0b27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7811495875605530845" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5383f831" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bea27cdf28291" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cb8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9f6b0f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18340888630791450824" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbcb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ca3d99be877b6cd8b32fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2aa630fed07082cf85b2263" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5b4626c9457" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4f2924b25b16c7e2364" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13308891576452974171" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2422448962704131126" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "291b2c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7819689331638480583" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d901f8a0e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10050607997250969306" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14368445853413533737" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10307290259173464821" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14677383396153692552" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15025389920661061509" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15515775217384128243" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18370908156839075551" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b145c8624fb" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b99a670ee0112b7c39f9f420b271b6c68021c9de588ddbf445383f831412c477bea27cdf28291428cb844b9f6b0f21bfe87ed09175330c842bbcb4b3ca3d99be877b6cd8b32fe4cd2aa630fed07082cf85b226346b5b4626c94574ae4f2924b25b16c7e23641bb8b2ae6010ab065bffbf1b219e447f347e443643291b2c1b6c851e0442392ec7454d901f8a0e1b8b7aeeb91cd81eda1bc766f9605b25e8291b8f0ad9e15ee0daf51bcbb08a6f47f511881bd084e88660bcbf851bd7531b5aa6fd7ef31bfef293a2a9b81edf462b145c8624fbffffd9050080ffff", + "cborBytes": [ + 216, 102, 159, 27, 153, 166, 112, 238, 1, 18, 183, 195, 159, 159, 66, 11, 39, 27, 108, 104, 2, 28, 157, 229, 136, + 221, 191, 68, 83, 131, 248, 49, 65, 44, 71, 123, 234, 39, 205, 242, 130, 145, 66, 140, 184, 68, 185, 246, 176, + 242, 27, 254, 135, 237, 9, 23, 83, 48, 200, 66, 187, 203, 75, 60, 163, 217, 155, 232, 119, 182, 205, 139, 50, 254, + 76, 210, 170, 99, 15, 237, 7, 8, 44, 248, 91, 34, 99, 70, 181, 180, 98, 108, 148, 87, 74, 228, 242, 146, 75, 37, + 177, 108, 126, 35, 100, 27, 184, 178, 174, 96, 16, 171, 6, 91, 255, 191, 27, 33, 158, 68, 127, 52, 126, 68, 54, + 67, 41, 27, 44, 27, 108, 133, 30, 4, 66, 57, 46, 199, 69, 77, 144, 31, 138, 14, 27, 139, 122, 238, 185, 28, 216, + 30, 218, 27, 199, 102, 249, 96, 91, 37, 232, 41, 27, 143, 10, 217, 225, 94, 224, 218, 245, 27, 203, 176, 138, 111, + 71, 245, 17, 136, 27, 208, 132, 232, 134, 96, 188, 191, 133, 27, 215, 83, 27, 90, 166, 253, 126, 243, 27, 254, + 242, 147, 162, 169, 184, 30, 223, 70, 43, 20, 92, 134, 36, 251, 255, 255, 217, 5, 0, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1271, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12001524487630960987" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3c540baa1be4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11319627121945636718" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "292549ccb6e75d76f8241b11" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1ba68dfaef4865395b9f463c540baa1be4d8669f1b9d1764e4b9726f6e9f4c292549ccb6e75d76f8241b11a0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 166, 141, 250, 239, 72, 101, 57, 91, 159, 70, 60, 84, 11, 170, 27, 228, 216, 102, 159, 27, 157, + 23, 100, 228, 185, 114, 111, 110, 159, 76, 41, 37, 73, 204, 182, 231, 93, 118, 248, 36, 27, 17, 160, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1272, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5288969696818435198" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13041037572569566072" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b496631eac6ab147e9f9f1bb4fb1293ef880b7880ffffff", + "cborBytes": [ + 216, 102, 159, 27, 73, 102, 49, 234, 198, 171, 20, 126, 159, 159, 27, 180, 251, 18, 147, 239, 136, 11, 120, 128, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1273, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8598109502579977351" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd33375d440e94f45cf809" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e836738292b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3706564476456074851" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2048805821749236942" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2205" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8881504018154806452" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11619078366545396088" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2231141254814360620" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13557330059548607017" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6456192110548445151" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14515765994947144163" + } + } + ] + }, + "cborHex": "d8669f1b77529f09b130ac879fbf4bcd33375d440e94f45cf809466e836738292bff1b33705cc0cc3efe63d8669f1b1c6ed20a331d94ce9f4222051b7b4170d929525cb4bf1ba13f4236bf5d41781b1ef69b2670ede42c1bbc254fdbfe1ec2291b59990084a6eb67dfffffff1bc9725c43bb84e9e3ffff", + "cborBytes": [ + 216, 102, 159, 27, 119, 82, 159, 9, 177, 48, 172, 135, 159, 191, 75, 205, 51, 55, 93, 68, 14, 148, 244, 92, 248, + 9, 70, 110, 131, 103, 56, 41, 43, 255, 27, 51, 112, 92, 192, 204, 62, 254, 99, 216, 102, 159, 27, 28, 110, 210, + 10, 51, 29, 148, 206, 159, 66, 34, 5, 27, 123, 65, 112, 217, 41, 82, 92, 180, 191, 27, 161, 63, 66, 54, 191, 93, + 65, 120, 27, 30, 246, 155, 38, 112, 237, 228, 44, 27, 188, 37, 79, 219, 254, 30, 194, 41, 27, 89, 153, 0, 132, + 166, 235, 103, 223, 255, 255, 255, 27, 201, 114, 92, 67, 187, 132, 233, 227, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1274, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17174594591237142592" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14327730024484664739" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48d9461a0b801322" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11403091544390970637" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79fbf1bee586ac92c08f8401bc6d6528bb31b75a341824848d9461a0b801322ff1b9e3feb57ecaf2d0dffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 191, 27, 238, 88, 106, 201, 44, 8, 248, 64, 27, + 198, 214, 82, 139, 179, 27, 117, 163, 65, 130, 72, 72, 217, 70, 26, 11, 128, 19, 34, 255, 27, 158, 63, 235, 87, + 236, 175, 45, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1275, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5669782760161727512" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c600bb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5207694419126679393" + } + }, + { + "_tag": "ByteArray", + "bytearray": "722821b8dc9487" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17896297936679482078" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5ca404" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13412457285360529766" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "051c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12284592016964281633" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7393f2d7a17dcef2d843" + }, + { + "_tag": "ByteArray", + "bytearray": "7b1050bf7b25790d4442ef10" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4618bfde0e2d955e98da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13749949613953163468" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2985554042744537085" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14888358451022243844" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3569073073572155188" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12604897532144903721" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3661467610139899134" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2435443881841843590" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29521d0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47d17c40676175a5cba8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10937465111977846829" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8109419488409509034" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5160016759415495990" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3543760080746073120" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5961996676638178917" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5009050785317048043" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12875900719880773851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3971916492993679515" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6eb559539857b70ec0354" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "425b041293cf8a6cda41ac" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69fd8669f1b4eaf1d616d12d4189f9f43c600bb1b4845727b8ed4776147722821b8dc94871bf85c6c279e5632deffffff435ca404d905099fd8669f1bba229ed6bb03b1669f42051c1baa7ba35a55c165214a7393f2d7a17dcef2d8434c7b1050bf7b25790d4442ef10ffffbf4a4618bfde0e2d955e98da1bbed1a252d332a0ccffff9fd8669f1b296ed1956f84fffd9f1bce9e132119dda8044155ffffbf1b3187e50cf7ae0f341baeed978599b1e6291b32d0256462fcb4fe1b21cc6f4e9794dd864429521d0f41084a47d17c40676175a5cba81b97c9ae91f6aae82dff1b708a720f25475caabf1b479c0fe75c05dd361b312df7048e144c201b52bd4463af13fe651b4583b92670b6ceeb1bb2b0637c3bb0a0db1b371f15019a67509b4ba6eb559539857b70ec0354419bffff4b425b041293cf8a6cda41acffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 216, 102, 159, 27, 78, 175, 29, 97, 109, 18, 212, + 24, 159, 159, 67, 198, 0, 187, 27, 72, 69, 114, 123, 142, 212, 119, 97, 71, 114, 40, 33, 184, 220, 148, 135, 27, + 248, 92, 108, 39, 158, 86, 50, 222, 255, 255, 255, 67, 92, 164, 4, 217, 5, 9, 159, 216, 102, 159, 27, 186, 34, + 158, 214, 187, 3, 177, 102, 159, 66, 5, 28, 27, 170, 123, 163, 90, 85, 193, 101, 33, 74, 115, 147, 242, 215, 161, + 125, 206, 242, 216, 67, 76, 123, 16, 80, 191, 123, 37, 121, 13, 68, 66, 239, 16, 255, 255, 191, 74, 70, 24, 191, + 222, 14, 45, 149, 94, 152, 218, 27, 190, 209, 162, 82, 211, 50, 160, 204, 255, 255, 159, 216, 102, 159, 27, 41, + 110, 209, 149, 111, 132, 255, 253, 159, 27, 206, 158, 19, 33, 25, 221, 168, 4, 65, 85, 255, 255, 191, 27, 49, 135, + 229, 12, 247, 174, 15, 52, 27, 174, 237, 151, 133, 153, 177, 230, 41, 27, 50, 208, 37, 100, 98, 252, 180, 254, 27, + 33, 204, 111, 78, 151, 148, 221, 134, 68, 41, 82, 29, 15, 65, 8, 74, 71, 209, 124, 64, 103, 97, 117, 165, 203, + 168, 27, 151, 201, 174, 145, 246, 170, 232, 45, 255, 27, 112, 138, 114, 15, 37, 71, 92, 170, 191, 27, 71, 156, 15, + 231, 92, 5, 221, 54, 27, 49, 45, 247, 4, 142, 20, 76, 32, 27, 82, 189, 68, 99, 175, 19, 254, 101, 27, 69, 131, + 185, 38, 112, 182, 206, 235, 27, 178, 176, 99, 124, 59, 176, 160, 219, 27, 55, 31, 21, 1, 154, 103, 80, 155, 75, + 166, 235, 85, 149, 57, 133, 123, 112, 236, 3, 84, 65, 155, 255, 255, 75, 66, 91, 4, 18, 147, 207, 138, 108, 218, + 65, 172, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1276, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1667387448605757943" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5351098497386171105" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4112175700765387374" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14146682697207762601" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9745532885419068494" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16170294088451756919" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16077553325571702594" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0853" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17160426290518641694" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e9ce2e0487fc87806" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18045414526119411568" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17604944117360452966" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1837809667632190565" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1c688ee4e1f262ab71" + }, + { + "_tag": "ByteArray", + "bytearray": "39cf58e8bd70df" + } + ] + } + ] + } + ] + }, + "cborHex": "d9050b9f9fa0bf1b1723c00ce11751f71b4a42ebbb66d44ae11b391162033a1d2a6e1bc4531cf5f53bcea91b873f1686764a8c4e1be0686cccafc413771bdf1ef1912c19ff424208531bee2614ca98a34c1e495e9ce2e0487fc878061bfa6e30e71e057f701bf451536655df6566ff1b19813627d3fed4659f491c688ee4e1f262ab714739cf58e8bd70dfffffff", + "cborBytes": [ + 217, 5, 11, 159, 159, 160, 191, 27, 23, 35, 192, 12, 225, 23, 81, 247, 27, 74, 66, 235, 187, 102, 212, 74, 225, + 27, 57, 17, 98, 3, 58, 29, 42, 110, 27, 196, 83, 28, 245, 245, 59, 206, 169, 27, 135, 63, 22, 134, 118, 74, 140, + 78, 27, 224, 104, 108, 204, 175, 196, 19, 119, 27, 223, 30, 241, 145, 44, 25, 255, 66, 66, 8, 83, 27, 238, 38, 20, + 202, 152, 163, 76, 30, 73, 94, 156, 226, 224, 72, 127, 200, 120, 6, 27, 250, 110, 48, 231, 30, 5, 127, 112, 27, + 244, 81, 83, 102, 85, 223, 101, 102, 255, 27, 25, 129, 54, 39, 211, 254, 212, 101, 159, 73, 28, 104, 142, 228, + 225, 242, 98, 171, 113, 71, 57, 207, 88, 232, 189, 112, 223, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1277, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18302463434732253382" + }, + "fields": [] + }, + "cborHex": "d8669f1bfdff6985f5cab0c680ff", + "cborBytes": [216, 102, 159, 27, 253, 255, 105, 133, 245, 202, 176, 198, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1278, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0dd479123b272c2d08e231" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11ad30113bbb824f12" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f51" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17652071353885889733" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4140" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13de35f7a8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a92610a14cbe583c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4951c03d5aa81f" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11479905899348077021" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17300648523713516118" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13132394255105154336" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9290071144089944111" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17730554875105058699" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8af3411753012bca" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16723243823316848527" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ada13ee54" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17176174815236589587" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "721fc75ece3a7bb209065a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c8c37af0597142f617a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "490c1a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b53004" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1565843470253533470" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5443059161922578495" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2863739021432784624" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c5fefb6f1f0" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "001a618874" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6be421fc96" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50ee3a8964154a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ac2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87e0e36e50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e36240b04d17b981864bc45" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d1b3b3021f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14662215276461387439" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de6c4544c5e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "151945d63b858a" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6374918607395985232" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "494223645604004272" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12543142029257751710" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc034cef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97db" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12489781551164011511" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17250905321081229529" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a62a4a9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c2ef9cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a8638c9d07713a35c" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1ece6c7e7d24ab" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f9fbf4b0dd479123b272c2d08e2314911ad30113bbb824f12421f511bf4f8c15f263794c54241404513de35f7a848a92610a14cbe583c474951c03d5aa81fffbf1b9f50d197a18da9dd1bf018402b67d492561bb63fa2ff21ec5d201b80ecf67c1196802f1bf60f95b7e9351f8b488af3411753012bcaffbf1be814e5a75d0bcf8f450ada13ee541bee5e07fdbe3008134b721fc75ece3a7bb209065a4a1c8c37af0597142f617a417e43490c1a43b53004ffd8669f1b15bafe570a53a91e9f1b4b89a1781dd4a83f1b27be0b779ded06f0468c5fefb6f1f0ffffbf45001a618874456be421fc964750ee3a8964154a423ac24587e0e36e504c0e36240b04d17b981864bc45469d1b3b3021f91bcb7aa71c35c96eaf46de6c4544c5e747151945d63b858affffbf1b587842b299dd97501b06dbd5c983d341b01bae1231381d2e3c9e42ddad44bc034cef4297dbffbf1bad549e25a75bb3f741b71bef6786fd84f150d9441a62a4a9447c2ef9cc493a8638c9d07713a35cff471ece6c7e7d24abffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 159, 191, 75, 13, 212, 121, 18, 59, 39, 44, 45, 8, + 226, 49, 73, 17, 173, 48, 17, 59, 187, 130, 79, 18, 66, 31, 81, 27, 244, 248, 193, 95, 38, 55, 148, 197, 66, 65, + 64, 69, 19, 222, 53, 247, 168, 72, 169, 38, 16, 161, 76, 190, 88, 60, 71, 73, 81, 192, 61, 90, 168, 31, 255, 191, + 27, 159, 80, 209, 151, 161, 141, 169, 221, 27, 240, 24, 64, 43, 103, 212, 146, 86, 27, 182, 63, 162, 255, 33, 236, + 93, 32, 27, 128, 236, 246, 124, 17, 150, 128, 47, 27, 246, 15, 149, 183, 233, 53, 31, 139, 72, 138, 243, 65, 23, + 83, 1, 43, 202, 255, 191, 27, 232, 20, 229, 167, 93, 11, 207, 143, 69, 10, 218, 19, 238, 84, 27, 238, 94, 7, 253, + 190, 48, 8, 19, 75, 114, 31, 199, 94, 206, 58, 123, 178, 9, 6, 90, 74, 28, 140, 55, 175, 5, 151, 20, 47, 97, 122, + 65, 126, 67, 73, 12, 26, 67, 181, 48, 4, 255, 216, 102, 159, 27, 21, 186, 254, 87, 10, 83, 169, 30, 159, 27, 75, + 137, 161, 120, 29, 212, 168, 63, 27, 39, 190, 11, 119, 157, 237, 6, 240, 70, 140, 95, 239, 182, 241, 240, 255, + 255, 191, 69, 0, 26, 97, 136, 116, 69, 107, 228, 33, 252, 150, 71, 80, 238, 58, 137, 100, 21, 74, 66, 58, 194, 69, + 135, 224, 227, 110, 80, 76, 14, 54, 36, 11, 4, 209, 123, 152, 24, 100, 188, 69, 70, 157, 27, 59, 48, 33, 249, 27, + 203, 122, 167, 28, 53, 201, 110, 175, 70, 222, 108, 69, 68, 197, 231, 71, 21, 25, 69, 214, 59, 133, 138, 255, 255, + 191, 27, 88, 120, 66, 178, 153, 221, 151, 80, 27, 6, 219, 213, 201, 131, 211, 65, 176, 27, 174, 18, 49, 56, 29, + 46, 60, 158, 66, 221, 173, 68, 188, 3, 76, 239, 66, 151, 219, 255, 191, 27, 173, 84, 158, 37, 167, 91, 179, 247, + 65, 183, 27, 239, 103, 134, 253, 132, 241, 80, 217, 68, 26, 98, 164, 169, 68, 124, 46, 249, 204, 73, 58, 134, 56, + 201, 208, 119, 19, 163, 92, 255, 71, 30, 206, 108, 126, 125, 36, 171, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1279, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1249420770934089747" + }, + "fields": [] + }, + "cborHex": "d8669f1b1156d5924a85681380ff", + "cborBytes": [216, 102, 159, 27, 17, 86, 213, 146, 74, 133, 104, 19, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1280, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7159187016072208334" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2665113022549999417" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f1b635a8aa8fd929fced8669f1b24fc622c735c3f3980ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 27, 99, 90, 138, 168, 253, 146, 159, 206, 216, + 102, 159, 27, 36, 252, 98, 44, 115, 92, 63, 57, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1281, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f0cffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 12, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1282, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10895820776299818280" + }, + "fields": [] + }, + "cborHex": "d8669f1b9735bb447babed2880ff", + "cborBytes": [216, 102, 159, 27, 151, 53, 187, 68, 123, 171, 237, 40, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1283, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9032597927874271071" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10359359821431156012" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b31ae434e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8860558619124733986" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17608269459317989975" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7784888819225464437" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1060860547491961807" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "642a7d3137a9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7938156093395742217" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5000484336201710714" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9695675024119422079" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01056b46ede4f70963971f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17694921921066723903" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7b91d6d72" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15935024447492235390" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f1b7d5a3bf569e0175f9f9f1b8fc3d6df10dbad2c452b31ae434eff1b7af7071e6c749822d8669f1bf45d23c7d80222579f1b6c097b228dd80e75ffffbf1b0eb8ef0c197c1bcf46642a7d3137a91b6e29fee8a674ae091b45654a0294353c7a1b868df5108643dc7f4b01056b46ede4f70963971f1bf590fdbc49746a3f45d7b91d6d72ff1bdd24944ebff0a07effffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 27, 125, 90, 59, 245, 105, 224, 23, 95, 159, 159, + 27, 143, 195, 214, 223, 16, 219, 173, 44, 69, 43, 49, 174, 67, 78, 255, 27, 122, 247, 7, 30, 108, 116, 152, 34, + 216, 102, 159, 27, 244, 93, 35, 199, 216, 2, 34, 87, 159, 27, 108, 9, 123, 34, 141, 216, 14, 117, 255, 255, 191, + 27, 14, 184, 239, 12, 25, 124, 27, 207, 70, 100, 42, 125, 49, 55, 169, 27, 110, 41, 254, 232, 166, 116, 174, 9, + 27, 69, 101, 74, 2, 148, 53, 60, 122, 27, 134, 141, 245, 16, 134, 67, 220, 127, 75, 1, 5, 107, 70, 237, 228, 247, + 9, 99, 151, 31, 27, 245, 144, 253, 188, 73, 116, 106, 63, 69, 215, 185, 29, 109, 114, 255, 27, 221, 36, 148, 78, + 191, 240, 160, 126, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1284, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17774483888902731858" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9771445462477986156" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce3d61032b5deaa4f8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13258230360283136635" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11503130898214988997" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6981097122793706547" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cc097bcc8c7a94" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf6aba6ec77f378529f9f1b879b25e0751a596c49ce3d61032b5deaa4f8d8669f1bb7feb2447ef9c27b80ff1b9fa3549b10ecacc5d8669f1b60e1d6d8829ed4339f47cc097bcc8c7a94ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 246, 171, 166, 236, 119, 243, 120, 82, 159, 159, 27, 135, 155, 37, 224, 117, 26, 89, 108, 73, + 206, 61, 97, 3, 43, 93, 234, 164, 248, 216, 102, 159, 27, 183, 254, 178, 68, 126, 249, 194, 123, 128, 255, 27, + 159, 163, 84, 155, 16, 236, 172, 197, 216, 102, 159, 27, 96, 225, 214, 216, 130, 158, 212, 51, 159, 71, 204, 9, + 123, 204, 140, 122, 148, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1285, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18323250663518615438" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12478994140329806229" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e8cdd94347" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6662581611404967827" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3357333918044272160" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16316770857329321952" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16074829766923371732" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d89fe5a52dba9277f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dda888dc6ea0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "885210612109dd6d5742cc" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18389773475365365948" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ea7bf13c405f338df310f15c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15930717773182999620" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3cb0eaea5ee09a8b714c38" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d905009f1bfe494365d177b78ed8669f1bad2e4b0dd88a09959f45e8cdd943471b5c763eacfad7bf93d8669f1b2e97a569196636209f1be270d0a5108f67e01bdf1544814257c4d4ffffffffbf415f491d89fe5a52dba9277f46dda888dc6ea04b885210612109dd6d5742ccffd8669f1bff35998aeb0da8bc9f4cea7bf13c405f338df310f15c1bdd154768ff931c444b3cb0eaea5ee09a8b714c38a0ffffff", + "cborBytes": [ + 217, 5, 0, 159, 27, 254, 73, 67, 101, 209, 119, 183, 142, 216, 102, 159, 27, 173, 46, 75, 13, 216, 138, 9, 149, + 159, 69, 232, 205, 217, 67, 71, 27, 92, 118, 62, 172, 250, 215, 191, 147, 216, 102, 159, 27, 46, 151, 165, 105, + 25, 102, 54, 32, 159, 27, 226, 112, 208, 165, 16, 143, 103, 224, 27, 223, 21, 68, 129, 66, 87, 196, 212, 255, 255, + 255, 255, 191, 65, 95, 73, 29, 137, 254, 90, 82, 219, 169, 39, 127, 70, 221, 168, 136, 220, 110, 160, 75, 136, 82, + 16, 97, 33, 9, 221, 109, 87, 66, 204, 255, 216, 102, 159, 27, 255, 53, 153, 138, 235, 13, 168, 188, 159, 76, 234, + 123, 241, 60, 64, 95, 51, 141, 243, 16, 241, 92, 27, 221, 21, 71, 104, 255, 147, 28, 68, 75, 60, 176, 234, 234, + 94, 224, 154, 139, 113, 76, 56, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1286, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1d5f4ff158e80b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14133111760490433051" + } + }, + { + "_tag": "ByteArray", + "bytearray": "21eee6627a853ebc0d65ea" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "73b4" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "743748bbd63882105e95" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6573239345950647471" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2594122276265132042" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "498de2c6c5fc4f2d7ab5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad4b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14806481804925421557" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c15f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c1444d251ac6eb2" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8799fd8669f1bffffffffffffffed9f9f471d5f4ff158e80b1bc422e64406ed8a1b4b21eee6627a853ebc0d65eaff9f4273b4ff4a743748bbd63882105e95bf1b5b38d65bcf0264af1b24002c774cb6000a4a498de2c6c5fc4f2d7ab5419f42ad4b1bcd7b30c0e3dd47f542c15f485c1444d251ac6eb2ffffffff", + "cborBytes": [ + 216, 121, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 159, 71, 29, 95, 79, 241, 88, 232, + 11, 27, 196, 34, 230, 68, 6, 237, 138, 27, 75, 33, 238, 230, 98, 122, 133, 62, 188, 13, 101, 234, 255, 159, 66, + 115, 180, 255, 74, 116, 55, 72, 187, 214, 56, 130, 16, 94, 149, 191, 27, 91, 56, 214, 91, 207, 2, 100, 175, 27, + 36, 0, 44, 119, 76, 182, 0, 10, 74, 73, 141, 226, 198, 197, 252, 79, 45, 122, 181, 65, 159, 66, 173, 75, 27, 205, + 123, 48, 192, 227, 221, 71, 245, 66, 193, 95, 72, 92, 20, 68, 210, 81, 172, 110, 178, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1287, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5393988517485127900" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a192cdfa16caa6b334" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17956217151350984294" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16345455008849527364" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4918599538802035240" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5046094723364540126" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18433556424865912089" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09b7bb80" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec671d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f1b4adb4bfa633ca8dc9f49a192cdfa16caa6b334ffd8669f1bf9314c5cf00d4e669fd8669f1be2d6b8ba869b02449f1b444260387eb20a281b4607546a611dcedeffff1bffd125e73b4095194409b7bb80bf43ec671d4123ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 27, 74, 219, 75, 250, 99, 60, 168, 220, 159, 73, + 161, 146, 205, 250, 22, 202, 166, 179, 52, 255, 216, 102, 159, 27, 249, 49, 76, 92, 240, 13, 78, 102, 159, 216, + 102, 159, 27, 226, 214, 184, 186, 134, 155, 2, 68, 159, 27, 68, 66, 96, 56, 126, 178, 10, 40, 27, 70, 7, 84, 106, + 97, 29, 206, 222, 255, 255, 27, 255, 209, 37, 231, 59, 64, 149, 25, 68, 9, 183, 187, 128, 191, 67, 236, 103, 29, + 65, 35, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1288, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "27522b20ead681" + } + ] + }, + "cborHex": "d87e9f4727522b20ead681ff", + "cborBytes": [216, 126, 159, 71, 39, 82, 43, 32, 234, 214, 129, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1289, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f9" + } + ] + }, + "cborHex": "d905009f41f9ff", + "cborBytes": [217, 5, 0, 159, 65, 249, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1290, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16640904736561310063" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3592321337775305083" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1148786949072598054" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1e" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "934ad0a84c7f74" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1696859114485147453" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9899d4ef6899961" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1c5bc1bd08d48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "433582e21aac4bae36ef5674" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "15877cb8ce0cd02c5f7ac2a0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8182295015119605088" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0af572" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "968d9d117ea1019b" + } + ] + }, + "cborHex": "d8669f1be6f05eb0cbda296f9fd8669f1b31da7d394927317b80ffd8669f1b0ff14fa4c613b42680ff9f9f411effff9f47934ad0a84c7f74bf1b178c745fd0c5673d48f9899d4ef689996147d1c5bc1bd08d484c433582e21aac4bae36ef5674ff4c15877cb8ce0cd02c5f7ac2a0d8669f1b718d59f6efa74d609f430af572ffffff48968d9d117ea1019bffff", + "cborBytes": [ + 216, 102, 159, 27, 230, 240, 94, 176, 203, 218, 41, 111, 159, 216, 102, 159, 27, 49, 218, 125, 57, 73, 39, 49, + 123, 128, 255, 216, 102, 159, 27, 15, 241, 79, 164, 198, 19, 180, 38, 128, 255, 159, 159, 65, 30, 255, 255, 159, + 71, 147, 74, 208, 168, 76, 127, 116, 191, 27, 23, 140, 116, 95, 208, 197, 103, 61, 72, 249, 137, 157, 78, 246, + 137, 153, 97, 71, 209, 197, 188, 27, 208, 141, 72, 76, 67, 53, 130, 226, 26, 172, 75, 174, 54, 239, 86, 116, 255, + 76, 21, 135, 124, 184, 206, 12, 208, 44, 95, 122, 194, 160, 216, 102, 159, 27, 113, 141, 89, 246, 239, 167, 77, + 96, 159, 67, 10, 245, 114, 255, 255, 255, 72, 150, 141, 157, 17, 126, 161, 1, 155, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1291, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "65575167841051332" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "06f5f2620519ad" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "786bf0348e5241" + } + ] + }, + "cborHex": "d9050d9f9fd8669f1b00e8f8448940a2c49f4706f5f2620519adffffff47786bf0348e5241ff", + "cborBytes": [ + 217, 5, 13, 159, 159, 216, 102, 159, 27, 0, 232, 248, 68, 137, 64, 162, 196, 159, 71, 6, 245, 242, 98, 5, 25, 173, + 255, 255, 255, 71, 120, 107, 240, 52, 142, 82, 65, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1292, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1550299557379134876" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2e086f32" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14414068026551322907" + } + } + ] + }, + "cborHex": "d8669f1b1583c53bcd07559c9f442e086f321bc8090e804ae8491bffff", + "cborBytes": [ + 216, 102, 159, 27, 21, 131, 197, 59, 205, 7, 85, 156, 159, 68, 46, 8, 111, 50, 27, 200, 9, 14, 128, 74, 232, 73, + 27, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1293, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11691584296038757242" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + }, + "cborHex": "d8669f1ba240d9f8faecf37a9f09ffff", + "cborBytes": [216, 102, 159, 27, 162, 64, 217, 248, 250, 236, 243, 122, 159, 9, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1294, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9312661287909360995" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "feb6ebfe" + }, + { + "_tag": "ByteArray", + "bytearray": "a05cbed4f64e2b8b05b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11998508797529825305" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b77806fd" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc0082dffb05e70700" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f9fd8669f1b813d3819cb5e85639f44feb6ebfe4aa05cbed4f64e2b8b05b01ba683442e372a201944b77806fdffffff49fc0082dffb05e70700ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 159, 216, 102, 159, 27, 129, 61, 56, 25, 203, 94, + 133, 99, 159, 68, 254, 182, 235, 254, 74, 160, 92, 190, 212, 246, 78, 43, 139, 5, 176, 27, 166, 131, 68, 46, 55, + 42, 32, 25, 68, 183, 120, 6, 253, 255, 255, 255, 73, 252, 0, 130, 223, 251, 5, 231, 7, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1295, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4341712407234442477" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87e9f1b3c40dc6e561d74eda0ff", + "cborBytes": [216, 126, 159, 27, 60, 64, 220, 110, 86, 29, 116, 237, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1296, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "281937066571352198" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17129555080587700536" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3891386033268893331" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5141783e0dbf871d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12170607001584524850" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4656193116434750471" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17212305571894458738" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14986261716000549758" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b7f0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "645277f31fd7d6dcf052951e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4403d9" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1631369923235108031" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6823518bb3e8515dbb4f5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6348382351196513918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18cbbb2e34b11a4c69225935" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10955224914388736124" + } + } + ] + }, + "cborHex": "d87c9fbf1b03e9a444ae0048861bedb86796eaeae9381b3600fafad4e8a693485141783e0dbf871d1ba8e6ae95d653de321b409e1ef846b65c071beede64b9123ef9721bcff9e5a14d3fab7eff42b7f0bf4c645277f31fd7d6dcf052951e434403d9ffbf1b16a3ca4d43af54bf4ba6823518bb3e8515dbb4f51b5819fc1cfd6d667e4c18cbbb2e34b11a4c69225935ff1b9808c70430a6587cff", + "cborBytes": [ + 216, 124, 159, 191, 27, 3, 233, 164, 68, 174, 0, 72, 134, 27, 237, 184, 103, 150, 234, 234, 233, 56, 27, 54, 0, + 250, 250, 212, 232, 166, 147, 72, 81, 65, 120, 62, 13, 191, 135, 29, 27, 168, 230, 174, 149, 214, 83, 222, 50, 27, + 64, 158, 30, 248, 70, 182, 92, 7, 27, 238, 222, 100, 185, 18, 62, 249, 114, 27, 207, 249, 229, 161, 77, 63, 171, + 126, 255, 66, 183, 240, 191, 76, 100, 82, 119, 243, 31, 215, 214, 220, 240, 82, 149, 30, 67, 68, 3, 217, 255, 191, + 27, 22, 163, 202, 77, 67, 175, 84, 191, 75, 166, 130, 53, 24, 187, 62, 133, 21, 219, 180, 245, 27, 88, 25, 252, + 28, 253, 109, 102, 126, 76, 24, 203, 187, 46, 52, 177, 26, 76, 105, 34, 89, 53, 255, 27, 152, 8, 199, 4, 48, 166, + 88, 124, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1297, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fda224727bc74845fc9f" + } + ] + }, + "cborHex": "d905069f4afda224727bc74845fc9fff", + "cborBytes": [217, 5, 6, 159, 74, 253, 162, 36, 114, 123, 199, 72, 69, 252, 159, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1298, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18005181926998791129" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10087157886191239112" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13522868209190433008" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "360d2e54b871" + }, + { + "_tag": "ByteArray", + "bytearray": "cef1849d7c37332ea9975867" + }, + { + "_tag": "ByteArray", + "bytearray": "1cbafefa8da702" + }, + { + "_tag": "ByteArray", + "bytearray": "96a03f37cf491a82bb814cab" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6455100236689062701" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14828559862811409575" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "67858a2e0df78c2ca605c0ee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce1fbafca0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc271cfe751e6a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c81eef95b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfc51950" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12158516971525202285" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7591303188679428075" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "709125588494461867" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3968496744732704755" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8ce15aae3e2c7be1" + }, + { + "_tag": "ByteArray", + "bytearray": "71522f2972f5" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fe86173f32451d76b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ec400dfa438" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ce77b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9963761544938329593" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44b6291fb05ba18c2979" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3913116170675271151" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "680a0c06b06e8a0fc0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15240052230097196052" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be19c3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3330b04e1589cda58e72" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf91" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17740658403186538444" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15951133519213421605" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fcfba6542c011ea06b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9586263766997311272" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "45305df18e" + }, + { + "_tag": "ByteArray", + "bytearray": "9f05d30f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4389931412357375290" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d000" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13939032003486759307" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d9050d9f80d8669f1bf9df41912b0bd3d99fd8669f1b8bfcc8a747b57fc880ffd8669f1bbbaae0fd3137f0f09f46360d2e54b8714ccef1849d7c37332ea9975867471cbafefa8da7024c96a03f37cf491a82bb814cabffffffffd8669f1b59951f76f5643b2d9f1bcdc9a0a1517d3ca7bf4c67858a2e0df78c2ca605c0ee45ce1fbafca047bc271cfe751e6a457c81eef95b44bfc519501ba8bbbac45b51616dffd8669f1b6959ba07978707eb9f1b09d751f7335a2babffff1b3712eec36a163ff39f488ce15aae3e2c7be14671522f2972f5ffffffd9050c9fbf491fe86173f32451d76b460ec400dfa438433ce77b1b8a466455b8bf15f94a44b6291fb05ba18c29791b364e2e6cb5efb5ef49680a0c06b06e8a0fc01bd37f8ac20d57d41443be19c34a3330b04e1589cda58e7242cf911bf6337ad2db7b77ccff1bdd5dcf6c498ae425ff9f49fcfba6542c011ea06bd8669f1b8509401b1b129f289f4545305df18e449f05d30f1b3cec2b5c55e3e53a42d000ffff1bc17163c148a1398b80ffff", + "cborBytes": [ + 217, 5, 13, 159, 128, 216, 102, 159, 27, 249, 223, 65, 145, 43, 11, 211, 217, 159, 216, 102, 159, 27, 139, 252, + 200, 167, 71, 181, 127, 200, 128, 255, 216, 102, 159, 27, 187, 170, 224, 253, 49, 55, 240, 240, 159, 70, 54, 13, + 46, 84, 184, 113, 76, 206, 241, 132, 157, 124, 55, 51, 46, 169, 151, 88, 103, 71, 28, 186, 254, 250, 141, 167, 2, + 76, 150, 160, 63, 55, 207, 73, 26, 130, 187, 129, 76, 171, 255, 255, 255, 255, 216, 102, 159, 27, 89, 149, 31, + 118, 245, 100, 59, 45, 159, 27, 205, 201, 160, 161, 81, 125, 60, 167, 191, 76, 103, 133, 138, 46, 13, 247, 140, + 44, 166, 5, 192, 238, 69, 206, 31, 186, 252, 160, 71, 188, 39, 28, 254, 117, 30, 106, 69, 124, 129, 238, 249, 91, + 68, 191, 197, 25, 80, 27, 168, 187, 186, 196, 91, 81, 97, 109, 255, 216, 102, 159, 27, 105, 89, 186, 7, 151, 135, + 7, 235, 159, 27, 9, 215, 81, 247, 51, 90, 43, 171, 255, 255, 27, 55, 18, 238, 195, 106, 22, 63, 243, 159, 72, 140, + 225, 90, 174, 62, 44, 123, 225, 70, 113, 82, 47, 41, 114, 245, 255, 255, 255, 217, 5, 12, 159, 191, 73, 31, 232, + 97, 115, 243, 36, 81, 215, 107, 70, 14, 196, 0, 223, 164, 56, 67, 60, 231, 123, 27, 138, 70, 100, 85, 184, 191, + 21, 249, 74, 68, 182, 41, 31, 176, 91, 161, 140, 41, 121, 27, 54, 78, 46, 108, 181, 239, 181, 239, 73, 104, 10, + 12, 6, 176, 110, 138, 15, 192, 27, 211, 127, 138, 194, 13, 87, 212, 20, 67, 190, 25, 195, 74, 51, 48, 176, 78, 21, + 137, 205, 165, 142, 114, 66, 207, 145, 27, 246, 51, 122, 210, 219, 123, 119, 204, 255, 27, 221, 93, 207, 108, 73, + 138, 228, 37, 255, 159, 73, 252, 251, 166, 84, 44, 1, 30, 160, 107, 216, 102, 159, 27, 133, 9, 64, 27, 27, 18, + 159, 40, 159, 69, 69, 48, 93, 241, 142, 68, 159, 5, 211, 15, 27, 60, 236, 43, 92, 85, 227, 229, 58, 66, 208, 0, + 255, 255, 27, 193, 113, 99, 193, 72, 161, 57, 139, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1299, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7003590704347039227" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "ByteArray", + "bytearray": "700187794080bddab359f7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04" + }, + { + "_tag": "ByteArray", + "bytearray": "65" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "46d1" + }, + { + "_tag": "ByteArray", + "bytearray": "23fe32c4b735" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1788293870752069576" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7384336346027641711" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f68696a6d0738f7927c4" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10865000705823285635" + } + } + ] + }, + "cborHex": "d905029fd8669f1b6131c0a394d545fb9f9f1bffffffffffffffed4b700187794080bddab359f70241044165ff9f4246d14623fe32c4b7351b18d14bccf82f77c8ffd8669f1b667a6ec866fbcb6f9f4af68696a6d0738f7927c4ffff80ffff1b96c83c93a2f72183ff", + "cborBytes": [ + 217, 5, 2, 159, 216, 102, 159, 27, 97, 49, 192, 163, 148, 213, 69, 251, 159, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 237, 75, 112, 1, 135, 121, 64, 128, 189, 218, 179, 89, 247, 2, 65, 4, 65, 101, 255, 159, 66, 70, 209, + 70, 35, 254, 50, 196, 183, 53, 27, 24, 209, 75, 204, 248, 47, 119, 200, 255, 216, 102, 159, 27, 102, 122, 110, + 200, 102, 251, 203, 111, 159, 74, 246, 134, 150, 166, 208, 115, 143, 121, 39, 196, 255, 255, 128, 255, 255, 27, + 150, 200, 60, 147, 162, 247, 33, 131, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1300, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4612df0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13589058965676463018" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17123579580236890524" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc3d7d89fa4843" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4599975978467574275" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6890915487055177501" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa8f12" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ec423d375" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3155577303460358640" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8720433583308708656" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6169771152183991247" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4155367106123364986" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12870658701801348333" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15505068732827119446" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14235269887545512060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5792691620285619204" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15367542740522846883" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16221360730421853094" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64f8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb9cedef19cc9f6a4bea" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5612199463989455434" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "125931861195382963" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8820910945010749078" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4589712614357738285" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11151681641091134441" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12353982275820776349" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1035c436aff7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13244395255742091402" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f22900c8664" + } + } + ] + } + ] + }, + "cborHex": "d87e9fbf444612df0f1bbc960921a0fb93aa41c21beda32ce75327019c47cc3d7d89fa48431b3fd665c7dbe3c20341f91b5fa173203729671d43fa8f12459ec423d375ffbf1b2bcadcd6aa0a29f01b7905342424809b301b559f6e2c8f611bcf1b39aad45defd37a7a1bb29dc3e5ca28dced1bd72d11dcf62d2f561bc58dd68a80f7107c1b5063c65670819c041bd5447ab3a77f4aa341f21be11dd9a3ce43fba64264f8ff9f4acb9cedef19cc9f6a4beaffbf1b4de289ad83baaa4a1b01bf665c4c7460b31b7a6a2bc4f0b88e961b3fb1ef4e2fec232d1b9ac2bb5e517b73e941421bab72296cf7c4eb9d461035c436aff71bb7cd8b503360508a464f22900c8664ffff", + "cborBytes": [ + 216, 126, 159, 191, 68, 70, 18, 223, 15, 27, 188, 150, 9, 33, 160, 251, 147, 170, 65, 194, 27, 237, 163, 44, 231, + 83, 39, 1, 156, 71, 204, 61, 125, 137, 250, 72, 67, 27, 63, 214, 101, 199, 219, 227, 194, 3, 65, 249, 27, 95, 161, + 115, 32, 55, 41, 103, 29, 67, 250, 143, 18, 69, 158, 196, 35, 211, 117, 255, 191, 27, 43, 202, 220, 214, 170, 10, + 41, 240, 27, 121, 5, 52, 36, 36, 128, 155, 48, 27, 85, 159, 110, 44, 143, 97, 27, 207, 27, 57, 170, 212, 93, 239, + 211, 122, 122, 27, 178, 157, 195, 229, 202, 40, 220, 237, 27, 215, 45, 17, 220, 246, 45, 47, 86, 27, 197, 141, + 214, 138, 128, 247, 16, 124, 27, 80, 99, 198, 86, 112, 129, 156, 4, 27, 213, 68, 122, 179, 167, 127, 74, 163, 65, + 242, 27, 225, 29, 217, 163, 206, 67, 251, 166, 66, 100, 248, 255, 159, 74, 203, 156, 237, 239, 25, 204, 159, 106, + 75, 234, 255, 191, 27, 77, 226, 137, 173, 131, 186, 170, 74, 27, 1, 191, 102, 92, 76, 116, 96, 179, 27, 122, 106, + 43, 196, 240, 184, 142, 150, 27, 63, 177, 239, 78, 47, 236, 35, 45, 27, 154, 194, 187, 94, 81, 123, 115, 233, 65, + 66, 27, 171, 114, 41, 108, 247, 196, 235, 157, 70, 16, 53, 196, 54, 175, 247, 27, 183, 205, 139, 80, 51, 96, 80, + 138, 70, 79, 34, 144, 12, 134, 100, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1301, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1222228749308102993" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15426176129948909328" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b10f63a9264c789519f1bd614c9757436ff1006d9050580ffff", + "cborBytes": [ + 216, 102, 159, 27, 16, 246, 58, 146, 100, 199, 137, 81, 159, 27, 214, 20, 201, 117, 116, 54, 255, 16, 6, 217, 5, + 5, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1302, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8339271783693733514" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16164071812357463083" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14474492468568609061" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "84a452f9729081b684c679" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16938895561419316422" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a147c0aee539" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79ba3e22ca63775f45992d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab725eca2d2a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3110ce1452affd95b186" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad7e6dd60907be8ab922cf5b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c82f869988d45d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2c3ec262d196846b5a645e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "742f5e140d8a9b0ac4" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f1b73bb0b810080ce8a4109bf1be05251ac23789c2b1bc8dfba3605195125ffbf4b84a452f9729081b684c6791beb130bc459d6dcc646a147c0aee5394b79ba3e22ca63775f45992d46ab725eca2d2a4a3110ce1452affd95b1864cad7e6dd60907be8ab922cf5b47c82f869988d45d4cf2c3ec262d196846b5a645e649742f5e140d8a9b0ac4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 27, 115, 187, 11, 129, 0, 128, 206, 138, 65, 9, + 191, 27, 224, 82, 81, 172, 35, 120, 156, 43, 27, 200, 223, 186, 54, 5, 25, 81, 37, 255, 191, 75, 132, 164, 82, + 249, 114, 144, 129, 182, 132, 198, 121, 27, 235, 19, 11, 196, 89, 214, 220, 198, 70, 161, 71, 192, 174, 229, 57, + 75, 121, 186, 62, 34, 202, 99, 119, 95, 69, 153, 45, 70, 171, 114, 94, 202, 45, 42, 74, 49, 16, 206, 20, 82, 175, + 253, 149, 177, 134, 76, 173, 126, 109, 214, 9, 7, 190, 138, 185, 34, 207, 91, 71, 200, 47, 134, 153, 136, 212, 93, + 76, 242, 195, 236, 38, 45, 25, 104, 70, 181, 166, 69, 230, 73, 116, 47, 94, 20, 13, 138, 155, 10, 196, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1303, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14873771470537690426" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1210bf7dbf45" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18376266586166123812" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3271831923259700476" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7610203200862006442" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bce6a40590bbd0d3a9fbf461210bf7dbf451bfffffffffffffff2ffd8669f1bff059d19364fdd249f9f1b2d67e1cc9ead74fc1b699cdf7d97ebacaaffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 206, 106, 64, 89, 11, 189, 13, 58, 159, 191, 70, 18, 16, 191, 125, 191, 69, 27, 255, 255, 255, + 255, 255, 255, 255, 242, 255, 216, 102, 159, 27, 255, 5, 157, 25, 54, 79, 221, 36, 159, 159, 27, 45, 103, 225, + 204, 158, 173, 116, 252, 27, 105, 156, 223, 125, 151, 235, 172, 170, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1304, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14679629182185960077" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb957ec4de" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ef5ddec1e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "018bf488971dde" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4137ebb728c811446" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12007221087498854922" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9263fb35" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c4e2e8" + }, + { + "_tag": "ByteArray", + "bytearray": "ee1cdd9402cdd50eda69" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2465794124566304468" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10324720464047092103" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2842009301611334331" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3213228623226185806" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8733895488276005853" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18004619652879341038" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2036" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bcbb884f716a6f28d9f9f45cb957ec4debf450ef5ddec1e47018bf488971dde49b4137ebb728c8114461ba6a237f64bf2e20aff449263fb359f43c4e2e84aee1cdd9402cdd50eda69ffffbf1b223842b1240516d41b8f48c68f30bbb1871b2770d866f6e64abb1b2c97ae688d83a84e1b793507ac241403dd412b1bf9dd422e85e3d5ee422036ffffff", + "cborBytes": [ + 216, 102, 159, 27, 203, 184, 132, 247, 22, 166, 242, 141, 159, 159, 69, 203, 149, 126, 196, 222, 191, 69, 14, 245, + 221, 236, 30, 71, 1, 139, 244, 136, 151, 29, 222, 73, 180, 19, 126, 187, 114, 140, 129, 20, 70, 27, 166, 162, 55, + 246, 75, 242, 226, 10, 255, 68, 146, 99, 251, 53, 159, 67, 196, 226, 232, 74, 238, 28, 221, 148, 2, 205, 213, 14, + 218, 105, 255, 255, 191, 27, 34, 56, 66, 177, 36, 5, 22, 212, 27, 143, 72, 198, 143, 48, 187, 177, 135, 27, 39, + 112, 216, 102, 246, 230, 74, 187, 27, 44, 151, 174, 104, 141, 131, 168, 78, 27, 121, 53, 7, 172, 36, 20, 3, 221, + 65, 43, 27, 249, 221, 66, 46, 133, 227, 213, 238, 66, 32, 54, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1305, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11740685736598012937" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d94a6ff273161caddc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "423a3fa423" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3994350601120612808" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85866b02ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7937774815313941219" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddcab90cd702" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16ae" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9fbf1ba2ef4b78fd6b840949d94a6ff273161caddc45423a3fa4231b376ec8b5702981c84585866b02ce1b6e28a4236dd452e346ddcab90cd7024216aeffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 191, 27, 162, 239, 75, 120, 253, 107, 132, 9, 73, + 217, 74, 111, 242, 115, 22, 28, 173, 220, 69, 66, 58, 63, 164, 35, 27, 55, 110, 200, 181, 112, 41, 129, 200, 69, + 133, 134, 107, 2, 206, 27, 110, 40, 164, 35, 109, 212, 82, 227, 70, 221, 202, 185, 12, 215, 2, 66, 22, 174, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1306, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8903846816989456317" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13600127240792827755" + } + }, + { + "_tag": "ByteArray", + "bytearray": "165cfca64fa2" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1813107630012943234" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6ead5e606e94266c324765" + }, + { + "_tag": "ByteArray", + "bytearray": "69ae63abd113c24591" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3057326090875555711" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "556b7fde74c7920d437e" + } + ] + } + ] + } + ] + }, + "cborHex": "d905089f9fd8669f1b7b90d181652627bd9f1bbcbd5bab3f91e76b46165cfca64fa2ffffd8669f1b192973c88278cb829f4b6ead5e606e94266c3247654969ae63abd113c24591ffffd8669f1b2a6dcde1992bcf7f9f4a556b7fde74c7920d437effffffff", + "cborBytes": [ + 217, 5, 8, 159, 159, 216, 102, 159, 27, 123, 144, 209, 129, 101, 38, 39, 189, 159, 27, 188, 189, 91, 171, 63, 145, + 231, 107, 70, 22, 92, 252, 166, 79, 162, 255, 255, 216, 102, 159, 27, 25, 41, 115, 200, 130, 120, 203, 130, 159, + 75, 110, 173, 94, 96, 110, 148, 38, 108, 50, 71, 101, 73, 105, 174, 99, 171, 209, 19, 194, 69, 145, 255, 255, 216, + 102, 159, 27, 42, 109, 205, 225, 153, 43, 207, 127, 159, 74, 85, 107, 127, 222, 116, 199, 146, 13, 67, 126, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1307, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5285402874248148482" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "66bc06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2623338215349302574" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bbf2222637c52e94" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7018de69b581df90f5651" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16164670782546694317" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbfc393e3e85fcd8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d689250e0ff920d422" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b495985e92e63b6029fbf4366bc061b2467f835339a352e41a148bbf2222637c52e944bd7018de69b581df90f56511be054726ec0d4d0ad48fbfc393e3e85fcd849d689250e0ff920d422ffffff", + "cborBytes": [ + 216, 102, 159, 27, 73, 89, 133, 233, 46, 99, 182, 2, 159, 191, 67, 102, 188, 6, 27, 36, 103, 248, 53, 51, 154, 53, + 46, 65, 161, 72, 187, 242, 34, 38, 55, 197, 46, 148, 75, 215, 1, 141, 230, 155, 88, 29, 249, 15, 86, 81, 27, 224, + 84, 114, 110, 192, 212, 208, 173, 72, 251, 252, 57, 62, 62, 133, 252, 216, 73, 214, 137, 37, 14, 15, 249, 32, 212, + 34, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1308, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "320e39" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13137514993673804080" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9cbab5505861f2193a82df91" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f115b4e8fcbb834260" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5749176227239808221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "820430fc246953b8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15363854210515729180" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5af7e23e12b4d343bc881581" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "562941235024238229" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c6" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "62d0749c83a4426dd506" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "400749966936433275" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17560126877814651603" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9f43320e399f1bb651d447fd4b99304c9cbab5505861f2193a82df91ff49f115b4e8fcbb834260bf1b4fc92d5177bfccdd48820430fc246953b81bd5376000d6adfb1c4c5af7e23e12b4d343bc881581ffd8669f1b07cff812170a16959f41c69f4a62d0749c83a4426dd5061b058fbff8befee27b1bf3b21a5b9aee7ad3ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 67, 50, 14, 57, 159, 27, 182, 81, 212, 71, 253, + 75, 153, 48, 76, 156, 186, 181, 80, 88, 97, 242, 25, 58, 130, 223, 145, 255, 73, 241, 21, 180, 232, 252, 187, 131, + 66, 96, 191, 27, 79, 201, 45, 81, 119, 191, 204, 221, 72, 130, 4, 48, 252, 36, 105, 83, 184, 27, 213, 55, 96, 0, + 214, 173, 251, 28, 76, 90, 247, 226, 62, 18, 180, 211, 67, 188, 136, 21, 129, 255, 216, 102, 159, 27, 7, 207, 248, + 18, 23, 10, 22, 149, 159, 65, 198, 159, 74, 98, 208, 116, 156, 131, 164, 66, 109, 213, 6, 27, 5, 143, 191, 248, + 190, 254, 226, 123, 27, 243, 178, 26, 91, 154, 238, 122, 211, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1309, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11045094563970058192" + }, + "fields": [] + }, + "cborHex": "d8669f1b99480efc8c0887d080ff", + "cborBytes": [216, 102, 159, 27, 153, 72, 14, 252, 140, 8, 135, 208, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1310, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15507743528046050281" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8dc99ebe1b3c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae765ee358" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90f5c8eecd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15393262401130686851" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b517cb9a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16589784660312583859" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc181969f3755b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8588345830568571690" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbe85fea6ee7ed99c70434c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12981876535590618801" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d7a881" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17857241165018656560" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4fd3d8f3e88da1" + }, + { + "_tag": "ByteArray", + "bytearray": "0f7f1f8b59ce61" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12696074188376643751" + } + }, + { + "_tag": "ByteArray", + "bytearray": "526ccc57f93443739421cf" + }, + { + "_tag": "ByteArray", + "bytearray": "965a60b5ebcf6c60e89418" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f9f413dd8669f1bd7369293410c3be980ffbf468dc99ebe1b3c45ae765ee3584590f5c8eecd1bd59fda98c9c5698344b517cb9a1be63ac1408a27eeb347dc181969f3755b1b772fef07a73f332a4cfbe85fea6ee7ed99c70434c81bb428e3ed9ddb86b1ff43d7a881d8669f1bf7d1aa3a556b6f309f474fd3d8f3e88da1470f7f1f8b59ce611bb0318435283218a74b526ccc57f93443739421cf4b965a60b5ebcf6c60e89418ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 159, 65, 61, 216, 102, 159, 27, 215, 54, 146, 147, + 65, 12, 59, 233, 128, 255, 191, 70, 141, 201, 158, 190, 27, 60, 69, 174, 118, 94, 227, 88, 69, 144, 245, 200, 238, + 205, 27, 213, 159, 218, 152, 201, 197, 105, 131, 68, 181, 23, 203, 154, 27, 230, 58, 193, 64, 138, 39, 238, 179, + 71, 220, 24, 25, 105, 243, 117, 91, 27, 119, 47, 239, 7, 167, 63, 51, 42, 76, 251, 232, 95, 234, 110, 231, 237, + 153, 199, 4, 52, 200, 27, 180, 40, 227, 237, 157, 219, 134, 177, 255, 67, 215, 168, 129, 216, 102, 159, 27, 247, + 209, 170, 58, 85, 107, 111, 48, 159, 71, 79, 211, 216, 243, 232, 141, 161, 71, 15, 127, 31, 139, 89, 206, 97, 27, + 176, 49, 132, 53, 40, 50, 24, 167, 75, 82, 108, 204, 87, 249, 52, 67, 115, 148, 33, 207, 75, 150, 90, 96, 181, + 235, 207, 108, 96, 232, 148, 24, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1311, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15824161386914783047" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4796820953791933775" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6464545751008897579" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8799f1bdb9ab6f0ff821f47d8669f1b4291bb3e29eb2d4f9f1b59b6ae1c23256a2ba0ffffff", + "cborBytes": [ + 216, 121, 159, 27, 219, 154, 182, 240, 255, 130, 31, 71, 216, 102, 159, 27, 66, 145, 187, 62, 41, 235, 45, 79, + 159, 27, 89, 182, 174, 28, 35, 37, 106, 43, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1312, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffffb80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1313, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13726998421893388886" + }, + "fields": [] + }, + "cborHex": "d8669f1bbe801856014d9a5680ff", + "cborBytes": [216, 102, 159, 27, 190, 128, 24, 86, 1, 77, 154, 86, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1314, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4862801600439762280" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10681013138386764602" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7b387e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d2fb" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11002934619421018531" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1925cde442efb2018949" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "206edfc7" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9246301196812347703" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01521037" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "07531a03f9ee7afc02" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16601064403224727856" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11422624022354533457" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bafb26" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3d" + } + ] + }, + "cborHex": "d8669f1b437c244a9769bd689f9f1b943a94dbe2d2c33a437b387eff9f9f42d2fbff11bf1bfffffffffffffff71b98b246bd857009a34a1925cde442efb201894944206edfc7ffbf1b805175f31244e9374401521037ff4907531a03f9ee7afc02ffd8669f1be662d41e579791309fd8669f1b9e85500757491c519f43bafb26ffff05ffff413dffff", + "cborBytes": [ + 216, 102, 159, 27, 67, 124, 36, 74, 151, 105, 189, 104, 159, 159, 27, 148, 58, 148, 219, 226, 210, 195, 58, 67, + 123, 56, 126, 255, 159, 159, 66, 210, 251, 255, 17, 191, 27, 255, 255, 255, 255, 255, 255, 255, 247, 27, 152, 178, + 70, 189, 133, 112, 9, 163, 74, 25, 37, 205, 228, 66, 239, 178, 1, 137, 73, 68, 32, 110, 223, 199, 255, 191, 27, + 128, 81, 117, 243, 18, 68, 233, 55, 68, 1, 82, 16, 55, 255, 73, 7, 83, 26, 3, 249, 238, 122, 252, 2, 255, 216, + 102, 159, 27, 230, 98, 212, 30, 87, 151, 145, 48, 159, 216, 102, 159, 27, 158, 133, 80, 7, 87, 73, 28, 81, 159, + 67, 186, 251, 38, 255, 255, 5, 255, 255, 65, 61, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1315, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5180432580185931332" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30c875" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9771cd4cf210030d1b57" + }, + { + "_tag": "ByteArray", + "bytearray": "680391fd" + } + ] + }, + "cborHex": "d905089f1b47e497fc0cd7be44bf4330c8754166ff4a9771cd4cf210030d1b5744680391fdff", + "cborBytes": [ + 217, 5, 8, 159, 27, 71, 228, 151, 252, 12, 215, 190, 68, 191, 67, 48, 200, 117, 65, 102, 255, 74, 151, 113, 205, + 76, 242, 16, 3, 13, 27, 87, 68, 104, 3, 145, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1316, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a676ff1bd3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5051901049037547426" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f45a676ff1bd31b461bf53cec4e67a2ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 69, 166, 118, 255, 27, 211, 27, 70, 27, 245, 60, + 236, 78, 103, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1317, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6379440059239671947" + }, + "fields": [] + }, + "cborHex": "d8669f1b588852ef24e0a88b80ff", + "cborBytes": [216, 102, 159, 27, 88, 136, 82, 239, 36, 224, 168, 139, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1318, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1685554798877333276" + }, + "fields": [] + }, + "cborHex": "d8669f1b17644b28bc89d71c80ff", + "cborBytes": [216, 102, 159, 27, 23, 100, 75, 40, 188, 137, 215, 28, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1319, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f0bdc4b8b8d77ed75186" + } + ] + }, + "cborHex": "d87d9f4af0bdc4b8b8d77ed75186ff", + "cborBytes": [216, 125, 159, 74, 240, 189, 196, 184, 184, 215, 126, 215, 81, 134, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1320, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13180982239450690997" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2970161409812674883" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "163796e978" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5143786390540761880" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3667394361816066997" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7143020410349215857" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8338987805142156044" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8273039074625796938" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a31397898157cb048" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7860778040925078983" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3836647587991300245" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b49542711faf0dc8e630581" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4169520163210701933" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8657675cd24" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6041901705075143769" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16677747601330404921" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7318448076876206622" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0fff8c905f6458060c7c0a8d" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bb6ec4182cd30f5b59fbf1b29382210cd75394345163796e978ffbf1b4762667820abbb181b32e533bdcb512bb51b63211b37c63ae0711b73ba093a17d0030c1b72cfbd34b7ff3b4a495a31397898157cb048ff1b6d1717fae387c5c7bf1b353e82a76294a8954c7b49542711faf0dc8e6305811b39dd1c7f5400ac6d46e8657675cd241b53d92596e2d4b4591be7734314b6ebfe391b659059c04958d21e4c0fff8c905f6458060c7c0a8dffffff", + "cborBytes": [ + 216, 102, 159, 27, 182, 236, 65, 130, 205, 48, 245, 181, 159, 191, 27, 41, 56, 34, 16, 205, 117, 57, 67, 69, 22, + 55, 150, 233, 120, 255, 191, 27, 71, 98, 102, 120, 32, 171, 187, 24, 27, 50, 229, 51, 189, 203, 81, 43, 181, 27, + 99, 33, 27, 55, 198, 58, 224, 113, 27, 115, 186, 9, 58, 23, 208, 3, 12, 27, 114, 207, 189, 52, 183, 255, 59, 74, + 73, 90, 49, 57, 120, 152, 21, 124, 176, 72, 255, 27, 109, 23, 23, 250, 227, 135, 197, 199, 191, 27, 53, 62, 130, + 167, 98, 148, 168, 149, 76, 123, 73, 84, 39, 17, 250, 240, 220, 142, 99, 5, 129, 27, 57, 221, 28, 127, 84, 0, 172, + 109, 70, 232, 101, 118, 117, 205, 36, 27, 83, 217, 37, 150, 226, 212, 180, 89, 27, 231, 115, 67, 20, 182, 235, + 254, 57, 27, 101, 144, 89, 192, 73, 88, 210, 30, 76, 15, 255, 140, 144, 95, 100, 88, 6, 12, 124, 10, 141, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1321, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "085b5cddc8c938" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8109702336576491564" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "36227691911183762" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5647ff5d8285" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2161303135018690076" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f9f47085b5cddc8c9381b708b734eddcc102cd8669f1b0080b4e4d365fd929f465647ff5d8285ffff1b1dfe7dc00eba261cffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 159, 71, 8, 91, 92, 221, 200, 201, 56, 27, 112, + 139, 115, 78, 221, 204, 16, 44, 216, 102, 159, 27, 0, 128, 180, 228, 211, 101, 253, 146, 159, 70, 86, 71, 255, 93, + 130, 133, 255, 255, 27, 29, 254, 125, 192, 14, 186, 38, 28, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1322, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9803216473273709155" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10297010635230658032" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17300387914584693033" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16821796313937556785" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6262889301057547888" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b880c057159bcb2639f9f1b8ee6549de957bdf0d8669f1bf01753259d48192980ffbf1be973069f303935311b56ea40a319212e70ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 136, 12, 5, 113, 89, 188, 178, 99, 159, 159, 27, 142, 230, 84, 157, 233, 87, 189, 240, 216, + 102, 159, 27, 240, 23, 83, 37, 157, 72, 25, 41, 128, 255, 191, 27, 233, 115, 6, 159, 48, 57, 53, 49, 27, 86, 234, + 64, 163, 25, 33, 46, 112, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1323, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15374780537450542288" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17478438875000290257" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4313551767382820554" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bd55e3170925434d09f80d8669f1bf28fe38d54c53bd19fd8669f1b3bdcd07a6f1c86ca80ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 213, 94, 49, 112, 146, 84, 52, 208, 159, 128, 216, 102, 159, 27, 242, 143, 227, 141, 84, 197, + 59, 209, 159, 216, 102, 159, 27, 59, 220, 208, 122, 111, 28, 134, 202, 128, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1324, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13327142851877639033" + }, + "fields": [] + }, + "cborHex": "d8669f1bb8f385d0450d937980ff", + "cborBytes": [216, 102, 159, 27, 184, 243, 133, 208, 69, 13, 147, 121, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1325, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d2a7dd551aabcc30" + }, + { + "_tag": "ByteArray", + "bytearray": "f3f3d52f2b35ec3b" + }, + { + "_tag": "ByteArray", + "bytearray": "35f06fac51" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6627643708650205561" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "71d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9dcd7abd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f149c4efc3b1f89f71bf1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba014e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c481a878cd36e388c3" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6123749966909459697" + } + } + ] + }, + "cborHex": "d9050d9f80d9050d9f9f48d2a7dd551aabcc3048f3f3d52f2b35ec3b4535f06fac511b5bfa1ed697f2b179ffffbf4271d6449dcd7abd41b74b8f149c4efc3b1f89f71bf143ba014e49c481a878cd36e388c3ffa01b54fbee265ef2ccf1ff", + "cborBytes": [ + 217, 5, 13, 159, 128, 217, 5, 13, 159, 159, 72, 210, 167, 221, 85, 26, 171, 204, 48, 72, 243, 243, 213, 47, 43, + 53, 236, 59, 69, 53, 240, 111, 172, 81, 27, 91, 250, 30, 214, 151, 242, 177, 121, 255, 255, 191, 66, 113, 214, 68, + 157, 205, 122, 189, 65, 183, 75, 143, 20, 156, 78, 252, 59, 31, 137, 247, 27, 241, 67, 186, 1, 78, 73, 196, 129, + 168, 120, 205, 54, 227, 136, 195, 255, 160, 27, 84, 251, 238, 38, 94, 242, 204, 241, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1326, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a8f38d114cc3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10297368037019067105" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24f150e6a70d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6492593029696891813" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3665afac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17087146943200322267" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aba173dda16cc6d86bb15b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17670816392741735925" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14805234265312688664" + } + }, + { + "_tag": "ByteArray", + "bytearray": "38d3710a4f2d7383" + } + ] + }, + "cborHex": "d9050d9f46a8f38d114cc31b8ee799abfffba2e1bf411f41fa4624f150e6a70d1b5a1a52f61642aba5443665afac1bed21bd9cfe5b62db4baba173dda16cc6d86bb15b1bf53b59e29c854df5ff1bcd76c21f70677a184838d3710a4f2d7383ff", + "cborBytes": [ + 217, 5, 13, 159, 70, 168, 243, 141, 17, 76, 195, 27, 142, 231, 153, 171, 255, 251, 162, 225, 191, 65, 31, 65, 250, + 70, 36, 241, 80, 230, 167, 13, 27, 90, 26, 82, 246, 22, 66, 171, 165, 68, 54, 101, 175, 172, 27, 237, 33, 189, + 156, 254, 91, 98, 219, 75, 171, 161, 115, 221, 161, 108, 198, 216, 107, 177, 91, 27, 245, 59, 89, 226, 156, 133, + 77, 245, 255, 27, 205, 118, 194, 31, 112, 103, 122, 24, 72, 56, 211, 113, 10, 79, 45, 115, 131, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1327, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9666929188228647031" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11042741976231898781" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d769098c" + }, + { + "_tag": "ByteArray", + "bytearray": "0b62e69db81f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10382644598857462838" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9185728680922469072" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15308441551553542962" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16349816766388319219" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac8dd8cd49b439" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1118236420128486054" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2639000180698632094" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7785845355537183648" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f9f1b8627d4e10d394877ff9fd8669f1b993fb3520798ee9d80ff44d769098c460b62e69db81fd8669f1b90169040c806f4369f1b7f7a4391358052d01bd472827bc92dbb321be2e637b9574d33f347ac8dd8cd49b439ffffffbf1b0f84c61974a9b2a61b249f9caeacbbcf9eff1b6c0ce11984eb33a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 159, 27, 134, 39, 212, 225, 13, 57, 72, 119, 255, + 159, 216, 102, 159, 27, 153, 63, 179, 82, 7, 152, 238, 157, 128, 255, 68, 215, 105, 9, 140, 70, 11, 98, 230, 157, + 184, 31, 216, 102, 159, 27, 144, 22, 144, 64, 200, 6, 244, 54, 159, 27, 127, 122, 67, 145, 53, 128, 82, 208, 27, + 212, 114, 130, 123, 201, 45, 187, 50, 27, 226, 230, 55, 185, 87, 77, 51, 243, 71, 172, 141, 216, 205, 73, 180, 57, + 255, 255, 255, 191, 27, 15, 132, 198, 25, 116, 169, 178, 166, 27, 36, 159, 156, 174, 172, 187, 207, 158, 255, 27, + 108, 12, 225, 25, 132, 235, 51, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1328, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9631734447808736123" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12824287367672619215" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7648267701893666275" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f0" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12844832568785202468" + }, + "fields": [] + } + ] + }, + "cborHex": "d905019f9fd8669f1b85aacb72fc886b7b9f1bb1f9056a37a7e0cf1b6a241af3de7715e3ffff9f41f0ffffd8669f1bb242032a9dcf6d2480ffff", + "cborBytes": [ + 217, 5, 1, 159, 159, 216, 102, 159, 27, 133, 170, 203, 114, 252, 136, 107, 123, 159, 27, 177, 249, 5, 106, 55, + 167, 224, 207, 27, 106, 36, 26, 243, 222, 119, 21, 227, 255, 255, 159, 65, 240, 255, 255, 216, 102, 159, 27, 178, + 66, 3, 42, 157, 207, 109, 36, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1329, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9560589198443778607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14797176400738818561" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "d8669f1b84ae0938c8ad922f9f1bcd5a2189a4d49a010effff", + "cborBytes": [ + 216, 102, 159, 27, 132, 174, 9, 56, 200, 173, 146, 47, 159, 27, 205, 90, 33, 137, 164, 212, 154, 1, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1330, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8285868666632867178" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14981439650581256208" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e6981f6116bc" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15755567706937526903" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ce447bb4db3f81882939" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8408119780699092520" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5539709004855818411" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2324772429951931460" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7267398533152023610" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "85793c8be9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10164141187843192486" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6c2f8029dfc8a879" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8782483914806878914" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8900985561950343423" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0561" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8b547e6" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d5858375" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12994984038467671562" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d3c6fc3a34d533" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "315505641902332054" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17614900636298195270" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6171659495013211458" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f654875dbf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "705909bed4c7fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17564403368568464608" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10837208771311831286" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "846941464952627343" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10112992986494470345" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17" + } + ] + } + ] + }, + "cborHex": "d905079f9f9f1b72fd51a6e2310d6a1bcfe8c3fcb4d9181046e6981f6116bcffd8669f1bdaa7055a56a08a779f4ace447bb4db3f818829391b74afa464758136281b4ce0fffd4176b8ab1b2043403536e814441b64dafc7629b8a43affff9f4585793c8be91b8d0e488ef44f76a6486c2f8029dfc8a879ffbf1b79e1a696c3a562c21b7b86a7358aee50ff42056144c8b547e6ff9f44d58583751bb4577521f2bc960a47d3c6fc3a34d5331b0460e6b5ae385896ffffd8669f1bf474b2cd0c5b31469fbf1b55a6239ca2eddd4245f654875dbf47705909bed4c7fe1bf3c14bcdb332a4e0ff1b96657ff5a2ca08f61b0bc0f0c66c0ce08f1b8c58918a500508c94117ffffff", + "cborBytes": [ + 217, 5, 7, 159, 159, 159, 27, 114, 253, 81, 166, 226, 49, 13, 106, 27, 207, 232, 195, 252, 180, 217, 24, 16, 70, + 230, 152, 31, 97, 22, 188, 255, 216, 102, 159, 27, 218, 167, 5, 90, 86, 160, 138, 119, 159, 74, 206, 68, 123, 180, + 219, 63, 129, 136, 41, 57, 27, 116, 175, 164, 100, 117, 129, 54, 40, 27, 76, 224, 255, 253, 65, 118, 184, 171, 27, + 32, 67, 64, 53, 54, 232, 20, 68, 27, 100, 218, 252, 118, 41, 184, 164, 58, 255, 255, 159, 69, 133, 121, 60, 139, + 233, 27, 141, 14, 72, 142, 244, 79, 118, 166, 72, 108, 47, 128, 41, 223, 200, 168, 121, 255, 191, 27, 121, 225, + 166, 150, 195, 165, 98, 194, 27, 123, 134, 167, 53, 138, 238, 80, 255, 66, 5, 97, 68, 200, 181, 71, 230, 255, 159, + 68, 213, 133, 131, 117, 27, 180, 87, 117, 33, 242, 188, 150, 10, 71, 211, 198, 252, 58, 52, 213, 51, 27, 4, 96, + 230, 181, 174, 56, 88, 150, 255, 255, 216, 102, 159, 27, 244, 116, 178, 205, 12, 91, 49, 70, 159, 191, 27, 85, + 166, 35, 156, 162, 237, 221, 66, 69, 246, 84, 135, 93, 191, 71, 112, 89, 9, 190, 212, 199, 254, 27, 243, 193, 75, + 205, 179, 50, 164, 224, 255, 27, 150, 101, 127, 245, 162, 202, 8, 246, 27, 11, 192, 240, 198, 108, 12, 224, 143, + 27, 140, 88, 145, 138, 80, 5, 8, 201, 65, 23, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1331, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8167930050248993747" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87c9f1b715a511aeb546bd3a0ff", + "cborBytes": [216, 124, 159, 27, 113, 90, 81, 26, 235, 84, 107, 211, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1332, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18157578055674246010" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3411566018470986589" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12353487258722739228" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bf97ac" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a7dfd8cc3e3205569cdafec7" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5707678425286852194" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0af8649ab50f736d" + }, + { + "_tag": "ByteArray", + "bytearray": "bc" + }, + { + "_tag": "ByteArray", + "bytearray": "f497ac" + }, + { + "_tag": "ByteArray", + "bytearray": "c43e39d7d8fddc43f8" + }, + { + "_tag": "ByteArray", + "bytearray": "b58abcd1f2f02fe636acf139" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "76e1b5df0e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2236978864495094247" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14901922257058955141" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8939402385042873510" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17698336049096038299" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7538291497859910858" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13575663264319763791" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7798320961963790156" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b3f8d4233f67" + } + ] + } + ] + }, + "cborHex": "d8669f1bfbfcad09e5e4337a9fd8669f1b2f585137f2c1c35d9fa0d8669f1bab706735d17ba41c9f43bf97acffff4ca7dfd8cc3e3205569cdafec7ffffd8669f1b4f35bf4987623e6280ff9f9f480af8649ab50f736d41bc43f497ac49c43e39d7d8fddc43f84cb58abcd1f2f02fe636acf139ff4576e1b5df0e9f1b1f0b586cdc4969e7ffd8669f1bcece4356ca7c7f859f1b7c0f231b30c29ca61bf59d1edde9dc179b1b689d642d7f498cca1bbc6671cfdc19754f1b6c393398fe558f4cffff46b3f8d4233f67ffffff", + "cborBytes": [ + 216, 102, 159, 27, 251, 252, 173, 9, 229, 228, 51, 122, 159, 216, 102, 159, 27, 47, 88, 81, 55, 242, 193, 195, 93, + 159, 160, 216, 102, 159, 27, 171, 112, 103, 53, 209, 123, 164, 28, 159, 67, 191, 151, 172, 255, 255, 76, 167, 223, + 216, 204, 62, 50, 5, 86, 156, 218, 254, 199, 255, 255, 216, 102, 159, 27, 79, 53, 191, 73, 135, 98, 62, 98, 128, + 255, 159, 159, 72, 10, 248, 100, 154, 181, 15, 115, 109, 65, 188, 67, 244, 151, 172, 73, 196, 62, 57, 215, 216, + 253, 220, 67, 248, 76, 181, 138, 188, 209, 242, 240, 47, 230, 54, 172, 241, 57, 255, 69, 118, 225, 181, 223, 14, + 159, 27, 31, 11, 88, 108, 220, 73, 105, 231, 255, 216, 102, 159, 27, 206, 206, 67, 86, 202, 124, 127, 133, 159, + 27, 124, 15, 35, 27, 48, 194, 156, 166, 27, 245, 157, 30, 221, 233, 220, 23, 155, 27, 104, 157, 100, 45, 127, 73, + 140, 202, 27, 188, 102, 113, 207, 220, 25, 117, 79, 27, 108, 57, 51, 152, 254, 85, 143, 76, 255, 255, 70, 179, + 248, 212, 35, 63, 103, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1333, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12547097762271822350" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2e76089" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8792567844265484526" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17508805800484734493" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10721532592881873993" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13165308317787890396" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13990610805395750771" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3df6dcdd6157" + }, + { + "_tag": "ByteArray", + "bytearray": "349fbb0c6a80318f0d18ede1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8185144705149384467" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12084258011496200689" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15395401984211653554" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f62111e21f1fad27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16176825356867255830" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b0bed57371" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "140c108c27" + } + ] + } + ] + }, + "cborHex": "d8669f1bae203eeffa4f820e9fbf44a2e760891b7a0579de8cf760eeff1bf2fbc61c2331061dd8669f1b94ca89168e7f34499fd8669f1bb6b49229883e22dc9f1bc228a266ee5aff73463df6dcdd61574c349fbb0c6a80318f0d18ede1ffffd8669f1b719779be199937139f1ba7b3e8a2e56639f11bd5a774894b4793b248f62111e21f1fad271be07fa0f41d9abe1645b0bed57371ffff45140c108c27ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 174, 32, 62, 239, 250, 79, 130, 14, 159, 191, 68, 162, 231, 96, 137, 27, 122, 5, 121, 222, 140, + 247, 96, 238, 255, 27, 242, 251, 198, 28, 35, 49, 6, 29, 216, 102, 159, 27, 148, 202, 137, 22, 142, 127, 52, 73, + 159, 216, 102, 159, 27, 182, 180, 146, 41, 136, 62, 34, 220, 159, 27, 194, 40, 162, 102, 238, 90, 255, 115, 70, + 61, 246, 220, 221, 97, 87, 76, 52, 159, 187, 12, 106, 128, 49, 143, 13, 24, 237, 225, 255, 255, 216, 102, 159, 27, + 113, 151, 121, 190, 25, 153, 55, 19, 159, 27, 167, 179, 232, 162, 229, 102, 57, 241, 27, 213, 167, 116, 137, 75, + 71, 147, 178, 72, 246, 33, 17, 226, 31, 31, 173, 39, 27, 224, 127, 160, 244, 29, 154, 190, 22, 69, 176, 190, 213, + 115, 113, 255, 255, 69, 20, 12, 16, 140, 39, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1334, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3286103410281840251" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "610776704548409369" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "195056611350562965" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f13499839" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9575355774378591962" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9710760798425461892" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1353347981518125857" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1391bfe16f8811e292" + }, + { + "_tag": "ByteArray", + "bytearray": "f6dd29fb" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ac92" + } + ] + } + ] + }, + "cborHex": "d87c9fd8669f1b2d9a95a4210c7e7b9f1b0879ea2d3fb11019bf1b02b4faf45ea44895451f13499839ffd8669f1b84e27f5829d246da9f1b86c38d7f10f034841b12c80ed19fe13b21491391bfe16f8811e29244f6dd29fbffff42ac92ffffff", + "cborBytes": [ + 216, 124, 159, 216, 102, 159, 27, 45, 154, 149, 164, 33, 12, 126, 123, 159, 27, 8, 121, 234, 45, 63, 177, 16, 25, + 191, 27, 2, 180, 250, 244, 94, 164, 72, 149, 69, 31, 19, 73, 152, 57, 255, 216, 102, 159, 27, 132, 226, 127, 88, + 41, 210, 70, 218, 159, 27, 134, 195, 141, 127, 16, 240, 52, 132, 27, 18, 200, 14, 209, 159, 225, 59, 33, 73, 19, + 145, 191, 225, 111, 136, 17, 226, 146, 68, 246, 221, 41, 251, 255, 255, 66, 172, 146, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1335, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9fa0ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1336, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5888143567839200231" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "307652311802763918" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10079331479088811304" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2352644809278605817" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10061688052642300400" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5984617406033703190" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "923541299ed3c467e4bd37fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10342844695449491277" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3142953405933931771" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11737699246433832080" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11861284069205949873" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14942813716065072311" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3051466895146894414" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc3da41eefc306a6ed7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9782882007089372358" + } + } + ] + }, + "cborHex": "d905089f1b51b6e360d38e83e7bf1b04450025c754da8e1b8be0fa93e0804d281b20a645fd3bb7c9f91b8ba24bf98a8941f01b530da1d2ab4231164c923541299ed3c467e4bd37fe1b8f892a73a74cd74d1b2b9e03787a4bccfb1ba2e4af46900f0c901ba49bbf0465053db11bcf5f89e782e4b4b71b2a58fcf94918444eff4afc3da41eefc306a6ed7c1b87c3c75a801f5cc6ff", + "cborBytes": [ + 217, 5, 8, 159, 27, 81, 182, 227, 96, 211, 142, 131, 231, 191, 27, 4, 69, 0, 37, 199, 84, 218, 142, 27, 139, 224, + 250, 147, 224, 128, 77, 40, 27, 32, 166, 69, 253, 59, 183, 201, 249, 27, 139, 162, 75, 249, 138, 137, 65, 240, 27, + 83, 13, 161, 210, 171, 66, 49, 22, 76, 146, 53, 65, 41, 158, 211, 196, 103, 228, 189, 55, 254, 27, 143, 137, 42, + 115, 167, 76, 215, 77, 27, 43, 158, 3, 120, 122, 75, 204, 251, 27, 162, 228, 175, 70, 144, 15, 12, 144, 27, 164, + 155, 191, 4, 101, 5, 61, 177, 27, 207, 95, 137, 231, 130, 228, 180, 183, 27, 42, 88, 252, 249, 73, 24, 68, 78, + 255, 74, 252, 61, 164, 30, 239, 195, 6, 166, 237, 124, 27, 135, 195, 199, 90, 128, 31, 92, 198, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1337, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7861107715756956291" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a2a9f9bd3b5f58613" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1800fefa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "122586a15869" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6d5032f912290c54574" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f830" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0301e60308079603f871" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "042d6f4e" + } + ] + }, + "cborHex": "d8669f1b6d1843d14ac69a839fbf41030f490a2a9f9bd3b5f58613441800fefa46122586a158691bfffffffffffffff84ac6d5032f912290c54574414b42f8304a0301e60308079603f871ff44042d6f4effff", + "cborBytes": [ + 216, 102, 159, 27, 109, 24, 67, 209, 74, 198, 154, 131, 159, 191, 65, 3, 15, 73, 10, 42, 159, 155, 211, 181, 245, + 134, 19, 68, 24, 0, 254, 250, 70, 18, 37, 134, 161, 88, 105, 27, 255, 255, 255, 255, 255, 255, 255, 248, 74, 198, + 213, 3, 47, 145, 34, 144, 197, 69, 116, 65, 75, 66, 248, 48, 74, 3, 1, 230, 3, 8, 7, 150, 3, 248, 113, 255, 68, 4, + 45, 111, 78, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1338, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13023270282693684968" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18049624687013780783" + } + } + ] + }, + "cborHex": "d905049f1bb4bbf35265dbaee81bfa7d26059693dd2fff", + "cborBytes": [ + 217, 5, 4, 159, 27, 180, 187, 243, 82, 101, 219, 174, 232, 27, 250, 125, 38, 5, 150, 147, 221, 47, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1339, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "388975483489367302" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f9f809f1b0565eb242fb83506ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 159, 128, 159, 27, 5, 101, 235, 36, 47, 184, 53, + 6, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1340, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0339c217" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e78cf9990105b7d7f905" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02dbfb5f087f05062afa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83a4401c9e43342b9856b4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05050571045afb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88a95795dd5357" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f47197238380cbb8f01" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1580d8d20" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8833d5538c25f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "faaa8a9083e330" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6865011288263325053" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "065f0700" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10417952423385733391" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3bde" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c86a92c0104a6db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0700" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1826286956181669426" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11190520045782381368" + } + }, + { + "_tag": "ByteArray", + "bytearray": "98" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15679283249272690382" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7ba000714e0035f3225a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6964a642838cd898f4" + }, + { + "_tag": "ByteArray", + "bytearray": "41d9b54c366ecee5597f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3432329827197289678" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5807698913065937931" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6818400776903998523" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a4db1ab8d" + } + ] + } + ] + }, + "cborHex": "d905029f9f9f440339c217071bfffffffffffffff14ae78cf9990105b7d7f905ffbf4a02dbfb5f087f05062afa4b83a4401c9e43342b9856b44705050571045afb1bfffffffffffffff24788a95795dd53574a7f47197238380cbb8f0145f1580d8d20478833d5538c25f747faaa8a9083e3300441ff05ffd8669f1b5f456b64effb757d9f44065f0700001b909400884ad3990f423bdeffffbf483c86a92c0104a6db42070041e913ff80ff9f9f1b1958464f81234632ff9f1b9b4cb6b114bf333841981bd998010af5a196ce4a7ba000714e0035f3225aff496964a642838cd898f44a41d9b54c366ecee5597f1b2fa215cae61284ceff9f1b5099176413b7ac0b1b5e9fd361939c3c3b451a4db1ab8dffff", + "cborBytes": [ + 217, 5, 2, 159, 159, 159, 68, 3, 57, 194, 23, 7, 27, 255, 255, 255, 255, 255, 255, 255, 241, 74, 231, 140, 249, + 153, 1, 5, 183, 215, 249, 5, 255, 191, 74, 2, 219, 251, 95, 8, 127, 5, 6, 42, 250, 75, 131, 164, 64, 28, 158, 67, + 52, 43, 152, 86, 180, 71, 5, 5, 5, 113, 4, 90, 251, 27, 255, 255, 255, 255, 255, 255, 255, 242, 71, 136, 169, 87, + 149, 221, 83, 87, 74, 127, 71, 25, 114, 56, 56, 12, 187, 143, 1, 69, 241, 88, 13, 141, 32, 71, 136, 51, 213, 83, + 140, 37, 247, 71, 250, 170, 138, 144, 131, 227, 48, 4, 65, 255, 5, 255, 216, 102, 159, 27, 95, 69, 107, 100, 239, + 251, 117, 125, 159, 68, 6, 95, 7, 0, 0, 27, 144, 148, 0, 136, 74, 211, 153, 15, 66, 59, 222, 255, 255, 191, 72, + 60, 134, 169, 44, 1, 4, 166, 219, 66, 7, 0, 65, 233, 19, 255, 128, 255, 159, 159, 27, 25, 88, 70, 79, 129, 35, 70, + 50, 255, 159, 27, 155, 76, 182, 177, 20, 191, 51, 56, 65, 152, 27, 217, 152, 1, 10, 245, 161, 150, 206, 74, 123, + 160, 0, 113, 78, 0, 53, 243, 34, 90, 255, 73, 105, 100, 166, 66, 131, 140, 216, 152, 244, 74, 65, 217, 181, 76, + 54, 110, 206, 229, 89, 127, 27, 47, 162, 21, 202, 230, 18, 132, 206, 255, 159, 27, 80, 153, 23, 100, 19, 183, 172, + 11, 27, 94, 159, 211, 97, 147, 156, 60, 59, 69, 26, 77, 177, 171, 141, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1341, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16371618484988080310" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1270192268064648856" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "73cfdf48d65694a5502f66bf" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6618698897336219442" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "db8468748b0c77a73d8806e7" + }, + { + "_tag": "ByteArray", + "bytearray": "809e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7134523704247793370" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2976884701645862178" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "13fd0d80" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "08" + } + ] + }, + "cborHex": "d8669f1be333ac4583eef0b69fd8669f1b11a0a1235670ee989f4c73cfdf48d65694a5502f66bfd8669f1b5bda57946afeb7329f4cdb8468748b0c77a73d8806e742809e1b6302eb82394b36da1b295004dd2ae57522ffff9f4413fd0d80ffffff4108ffff", + "cborBytes": [ + 216, 102, 159, 27, 227, 51, 172, 69, 131, 238, 240, 182, 159, 216, 102, 159, 27, 17, 160, 161, 35, 86, 112, 238, + 152, 159, 76, 115, 207, 223, 72, 214, 86, 148, 165, 80, 47, 102, 191, 216, 102, 159, 27, 91, 218, 87, 148, 106, + 254, 183, 50, 159, 76, 219, 132, 104, 116, 139, 12, 119, 167, 61, 136, 6, 231, 66, 128, 158, 27, 99, 2, 235, 130, + 57, 75, 54, 218, 27, 41, 80, 4, 221, 42, 229, 117, 34, 255, 255, 159, 68, 19, 253, 13, 128, 255, 255, 255, 65, 8, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1342, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11732236042486312004" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f7ff06e214f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "15b8273122c4b3e6aa463aca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2388450777320056700" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "23511bb32c368347b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f34f9dacb46317fb207dc027" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13035606909436697222" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93d6be33955cb5ede22ef3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d829f680aed4a25d404e1d87" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c863" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16713565635640571773" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "d8669f1ba2d14685456e6c449f41b6bf4104466f7ff06e214f4c15b8273122c4b3e6aa463aca1b21257b53d1aae77c4923511bb32c368347b44cf34f9dacb46317fb207dc02741371bb4e7c76b249a1a864b93d6be33955cb5ede22ef34cd829f680aed4a25d404e1d8742c8631be7f28364b288377dff0effff", + "cborBytes": [ + 216, 102, 159, 27, 162, 209, 70, 133, 69, 110, 108, 68, 159, 65, 182, 191, 65, 4, 70, 111, 127, 240, 110, 33, 79, + 76, 21, 184, 39, 49, 34, 196, 179, 230, 170, 70, 58, 202, 27, 33, 37, 123, 83, 209, 170, 231, 124, 73, 35, 81, 27, + 179, 44, 54, 131, 71, 180, 76, 243, 79, 157, 172, 180, 99, 23, 251, 32, 125, 192, 39, 65, 55, 27, 180, 231, 199, + 107, 36, 154, 26, 134, 75, 147, 214, 190, 51, 149, 92, 181, 237, 226, 46, 243, 76, 216, 41, 246, 128, 174, 212, + 162, 93, 64, 78, 29, 135, 66, 200, 99, 27, 231, 242, 131, 100, 178, 136, 55, 125, 255, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1343, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4444043375507946642" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8832540410253815785" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17190e4714471ba024237817" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12104057448170131211" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a011d8c02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13698877845824076786" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "478b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4881237116535855785" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54af44a28ec721ea1605d823" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04366cbe875a2ed458eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6762abb7ba6472746b72" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdf49cc7d63a68b842d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14169631391845254955" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15104068676442888961" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79bb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16181152867593737253" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d507978532b302882582" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18016427499233344720" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10195433210227524423" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d524fa056aea0556" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11459795454358947711" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "033eb357" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87495625c980b51d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ddc98a146c1018ef75b422f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15130784368654608243" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e817c368894db87d82f11" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5931360137494538020" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f6613" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "199285012552789760" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7064c5bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4451078577936272690" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f768e926cf908f93bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29f1703b220478" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b417f8cf3926954843df939" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1119612112757033275" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16097582622128773299" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5555473169527787273" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15531125231275610665" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "44d4765ef50624c8c6e8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3409921206124084862" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "630c80" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09fd8669f1b3dac69e78b943c929f1b7a937cb4d1762fe9bf4c17190e4714471ba0242378171ba7fa401e7b1a0f0b451a011d8c021bbe1c30d22dcffbf242478b1b43bda34bab925aa94c54af44a28ec721ea1605d8234a04366cbe875a2ed458eb4a6762abb7ba6472746b7241f94abdf49cc7d63a68b842d91bc4a4a4ad4d29072bffbf1bd19c6e6fba7b9b014279bb1be08f00cd3937d4254ad507978532b3028825821bfa07355afd61fcd01b8d7d747caad5034748d524fa056aea05561b9f095f3fc7b3877fffffff809fbf44033eb3574887495625c980b51d4c3ddc98a146c1018ef75b422f1bd1fb58378ab0e7734b5e817c368894db87d82f111b52506c9e8e462724435f66131b02c400a9be44af00447064c5bf1b3dc56862413e0d3249f768e926cf908f93bb4729f1703b220478ffbf4c2b417f8cf3926954843df9391b0f89a948db1b893bff1bdf661a1b2e7c98b3bf1b4d190169dceacf091bd789a41c444a1229ff4a44d4765ef50624c8c6e8ff1b2f5279453b18fe7e9f43630c80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 216, 102, 159, 27, 61, 172, 105, 231, 139, 148, + 60, 146, 159, 27, 122, 147, 124, 180, 209, 118, 47, 233, 191, 76, 23, 25, 14, 71, 20, 71, 27, 160, 36, 35, 120, + 23, 27, 167, 250, 64, 30, 123, 26, 15, 11, 69, 26, 1, 29, 140, 2, 27, 190, 28, 48, 210, 45, 207, 251, 242, 66, 71, + 139, 27, 67, 189, 163, 75, 171, 146, 90, 169, 76, 84, 175, 68, 162, 142, 199, 33, 234, 22, 5, 216, 35, 74, 4, 54, + 108, 190, 135, 90, 46, 212, 88, 235, 74, 103, 98, 171, 183, 186, 100, 114, 116, 107, 114, 65, 249, 74, 189, 244, + 156, 199, 214, 58, 104, 184, 66, 217, 27, 196, 164, 164, 173, 77, 41, 7, 43, 255, 191, 27, 209, 156, 110, 111, + 186, 123, 155, 1, 66, 121, 187, 27, 224, 143, 0, 205, 57, 55, 212, 37, 74, 213, 7, 151, 133, 50, 179, 2, 136, 37, + 130, 27, 250, 7, 53, 90, 253, 97, 252, 208, 27, 141, 125, 116, 124, 170, 213, 3, 71, 72, 213, 36, 250, 5, 106, + 234, 5, 86, 27, 159, 9, 95, 63, 199, 179, 135, 127, 255, 255, 255, 128, 159, 191, 68, 3, 62, 179, 87, 72, 135, 73, + 86, 37, 201, 128, 181, 29, 76, 61, 220, 152, 161, 70, 193, 1, 142, 247, 91, 66, 47, 27, 209, 251, 88, 55, 138, + 176, 231, 115, 75, 94, 129, 124, 54, 136, 148, 219, 135, 216, 47, 17, 27, 82, 80, 108, 158, 142, 70, 39, 36, 67, + 95, 102, 19, 27, 2, 196, 0, 169, 190, 68, 175, 0, 68, 112, 100, 197, 191, 27, 61, 197, 104, 98, 65, 62, 13, 50, + 73, 247, 104, 233, 38, 207, 144, 143, 147, 187, 71, 41, 241, 112, 59, 34, 4, 120, 255, 191, 76, 43, 65, 127, 140, + 243, 146, 105, 84, 132, 61, 249, 57, 27, 15, 137, 169, 72, 219, 27, 137, 59, 255, 27, 223, 102, 26, 27, 46, 124, + 152, 179, 191, 27, 77, 25, 1, 105, 220, 234, 207, 9, 27, 215, 137, 164, 28, 68, 74, 18, 41, 255, 74, 68, 212, 118, + 94, 245, 6, 36, 200, 198, 232, 255, 27, 47, 82, 121, 69, 59, 24, 254, 126, 159, 67, 99, 12, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1344, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4704976379667995882" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6350229896804148768" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3604" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7242583696753387890" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "653234395990609217" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0faf5953d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11431173269177960155" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "325909b57501ae" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5327888871425459748" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a8841ff04a4c6f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3439624704959310176" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b414b6f16dab6dcea9f9fbf1b58208c723913a6204236041b6482d37fd50569721b0910c138e0164d41450faf5953d11b9ea3af85fb4b06dbff47325909b57501ae9f1b49f076b34012462447a8841ff04a4c6f1b2fbc0071fbc1e960ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 65, 75, 111, 22, 218, 182, 220, 234, 159, 159, 191, 27, 88, 32, 140, 114, 57, 19, 166, 32, 66, + 54, 4, 27, 100, 130, 211, 127, 213, 5, 105, 114, 27, 9, 16, 193, 56, 224, 22, 77, 65, 69, 15, 175, 89, 83, 209, + 27, 158, 163, 175, 133, 251, 75, 6, 219, 255, 71, 50, 89, 9, 181, 117, 1, 174, 159, 27, 73, 240, 118, 179, 64, 18, + 70, 36, 71, 168, 132, 31, 240, 74, 76, 111, 27, 47, 188, 0, 113, 251, 193, 233, 96, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1345, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9656132354828773011" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0706fb" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0556" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16887497183750185724" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f2392b4a0d8cdd0e1db3008" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98183a223a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f24192c70" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13271667936654427433" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "124761dfee7da3136094" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9071457301889332511" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aeacacb8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30d784fa" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5468c4efd504c07490e43879" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15194873378969447994" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "077c6ff22d087c0a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0df155a51761216a907f45" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18e96e6f3bd2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8196008824076523016" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9c4c26609c760" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62497c5ec3421de75ff7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbe3bac89f9f" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8579916282158710564" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13429093374819176717" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77930d4089" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11272105280678888558" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b8601793761b9a6939f430706fbbf4205561bea5c7136fed6e2fc4c6f2392b4a0d8cdd0e1db30084214c54598183a223a1bfffffffffffffffcffbf450f24192c701bb82e6fac0d3a85294a124761dfee7da31360941b7de44a5a7a3cb51f44aeacacb84430d784faffd8669f1bfffffffffffffffc9f4c5468c4efd504c07490e43879bf41041bd2df08d510836e3a48077c6ff22d087c0a4b0df155a51761216a907f454618e96e6f3bd21b71be1299e70c5608412f47a9c4c26609c7604a62497c5ec3421de75ff746fbe3bac89f9fffbf1b7711fc6678a8ff241bba5db94625a6110d4577930d40891b9c6e9007d5ab846effffffffff", + "cborBytes": [ + 216, 102, 159, 27, 134, 1, 121, 55, 97, 185, 166, 147, 159, 67, 7, 6, 251, 191, 66, 5, 86, 27, 234, 92, 113, 54, + 254, 214, 226, 252, 76, 111, 35, 146, 180, 160, 216, 205, 208, 225, 219, 48, 8, 66, 20, 197, 69, 152, 24, 58, 34, + 58, 27, 255, 255, 255, 255, 255, 255, 255, 252, 255, 191, 69, 15, 36, 25, 44, 112, 27, 184, 46, 111, 172, 13, 58, + 133, 41, 74, 18, 71, 97, 223, 238, 125, 163, 19, 96, 148, 27, 125, 228, 74, 90, 122, 60, 181, 31, 68, 174, 172, + 172, 184, 68, 48, 215, 132, 250, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 76, 84, 104, + 196, 239, 213, 4, 192, 116, 144, 228, 56, 121, 191, 65, 4, 27, 210, 223, 8, 213, 16, 131, 110, 58, 72, 7, 124, + 111, 242, 45, 8, 124, 10, 75, 13, 241, 85, 165, 23, 97, 33, 106, 144, 127, 69, 70, 24, 233, 110, 111, 59, 210, 27, + 113, 190, 18, 153, 231, 12, 86, 8, 65, 47, 71, 169, 196, 194, 102, 9, 199, 96, 74, 98, 73, 124, 94, 195, 66, 29, + 231, 95, 247, 70, 251, 227, 186, 200, 159, 159, 255, 191, 27, 119, 17, 252, 102, 120, 168, 255, 36, 27, 186, 93, + 185, 70, 37, 166, 17, 13, 69, 119, 147, 13, 64, 137, 27, 156, 110, 144, 7, 213, 171, 132, 110, 255, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1346, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6242979216371224927" + }, + "fields": [] + }, + "cborHex": "d8669f1b56a3848543f4115f80ff", + "cborBytes": [216, 102, 159, 27, 86, 163, 132, 133, 67, 244, 17, 95, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1347, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10305742199244704504" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15408556031285771905" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1240655342717907614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dbd41a397521f61e5975b0" + }, + { + "_tag": "ByteArray", + "bytearray": "188e96d8e16ed09dea14" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f1b8f0559ed94bbcaf81bd5d630128a7dbe81d8669f1b1137b175ff64329e9f4bdbd41a397521f61e5975b04a188e96d8e16ed09dea14ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 27, 143, 5, 89, 237, 148, 187, 202, 248, 27, 213, + 214, 48, 18, 138, 125, 190, 129, 216, 102, 159, 27, 17, 55, 177, 117, 255, 100, 50, 158, 159, 75, 219, 212, 26, + 57, 117, 33, 246, 30, 89, 117, 176, 74, 24, 142, 150, 216, 225, 110, 208, 157, 234, 20, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1348, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11299596915576803327" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7713778619851811167" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1802194433689753028" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12283288916048368283" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8738222750298519916" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f7c0dec3d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16843224649767790990" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "94c524ab9a4ee3be" + } + ] + }, + "cborHex": "d87c9f1b9cd03b86e20e0fff9fd8669f1b6b0cd8c91045295f80ffffd8669f1b1902ae49fc4395c49f1baa770230828e529bd8669f1b7944674b57c7b96c9f45f7c0dec3d31be9bf27946983298effffffff4894c524ab9a4ee3beff", + "cborBytes": [ + 216, 124, 159, 27, 156, 208, 59, 134, 226, 14, 15, 255, 159, 216, 102, 159, 27, 107, 12, 216, 201, 16, 69, 41, 95, + 128, 255, 255, 216, 102, 159, 27, 25, 2, 174, 73, 252, 67, 149, 196, 159, 27, 170, 119, 2, 48, 130, 142, 82, 155, + 216, 102, 159, 27, 121, 68, 103, 75, 87, 199, 185, 108, 159, 69, 247, 192, 222, 195, 211, 27, 233, 191, 39, 148, + 105, 131, 41, 142, 255, 255, 255, 255, 72, 148, 197, 36, 171, 154, 78, 227, 190, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1349, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8bae09874d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "53d145705362eaa32ead0c14" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "633696426952848880" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9483448597723436535" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a2be6b93c80d" + }, + { + "_tag": "ByteArray", + "bytearray": "d0" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "800466885146756723" + }, + "fields": [] + } + ] + }, + "cborHex": "d905029fd9050b9f458bae09874d9f4c53d145705362eaa32ead0c141b08cb578af7f575f01b839bfa4110fb55f746a2be6b93c80d41d0ffffd8669f1b0b1bd46417a2c67380ffff", + "cborBytes": [ + 217, 5, 2, 159, 217, 5, 11, 159, 69, 139, 174, 9, 135, 77, 159, 76, 83, 209, 69, 112, 83, 98, 234, 163, 46, 173, + 12, 20, 27, 8, 203, 87, 138, 247, 245, 117, 240, 27, 131, 155, 250, 65, 16, 251, 85, 247, 70, 162, 190, 107, 147, + 200, 13, 65, 208, 255, 255, 216, 102, 159, 27, 11, 27, 212, 100, 23, 162, 198, 115, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1350, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1214031532463544522" + }, + "fields": [] + }, + "cborHex": "d8669f1b10d91b3f1e9cd8ca80ff", + "cborBytes": [216, 102, 159, 27, 16, 217, 27, 63, 30, 156, 216, 202, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1351, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17586368267078701461" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4640677326845327559" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3996446978902655510" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15675962187282621394" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "33fb72f1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ed4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18002b0d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31adadb1d08fb022e019cd1a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10299163566606889698" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57e993ee95c4cf9e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11184448557722848521" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17325628963733103756" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffb58abc45a70fc3cd70" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf40f54c3286d91959fa09f1b4066ff70ffd338c71b37763b5a6d2d0216ffd8669f1bd98c348df56fa3d280ff9f4433fb72f1bf421ed44418002b0d4c31adadb1d08fb022e019cd1a1b8eedfab24f3fb2e24857e993ee95c4cf9e1b9b3724b49bb34d09ffbf1bf070ffbf5587e48c4affb58abc45a70fc3cd70ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 244, 15, 84, 195, 40, 109, 145, 149, 159, 160, 159, 27, 64, 102, 255, 112, 255, 211, 56, 199, + 27, 55, 118, 59, 90, 109, 45, 2, 22, 255, 216, 102, 159, 27, 217, 140, 52, 141, 245, 111, 163, 210, 128, 255, 159, + 68, 51, 251, 114, 241, 191, 66, 30, 212, 68, 24, 0, 43, 13, 76, 49, 173, 173, 177, 208, 143, 176, 34, 224, 25, + 205, 26, 27, 142, 237, 250, 178, 79, 63, 178, 226, 72, 87, 233, 147, 238, 149, 196, 207, 158, 27, 155, 55, 36, + 180, 155, 179, 77, 9, 255, 191, 27, 240, 112, 255, 191, 85, 135, 228, 140, 74, 255, 181, 138, 188, 69, 167, 15, + 195, 205, 112, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1352, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8738417470517661380" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f4689aa5cd1707" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15001036869798027593" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6a5dbf9dec6fa28b3ee602" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49fd8669f1b794518642d45cec49f9f47f4689aa5cd17071bd02e638dded96149ffffff4b6a5dbf9dec6fa28b3ee602ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 216, 102, 159, 27, 121, 69, 24, 100, 45, 69, 206, + 196, 159, 159, 71, 244, 104, 154, 165, 205, 23, 7, 27, 208, 46, 99, 141, 222, 217, 97, 73, 255, 255, 255, 75, 106, + 93, 191, 157, 236, 111, 162, 139, 62, 230, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1353, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb429b114cda" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "282254306401599625" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10084793364380897783" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1019865358245789333" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e70" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2482804719716299863" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6258013266812523593" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1431b57" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10779869101126281930" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7393892677351268809" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "159f7e1c9ab038" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5644356089e2780c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14586117105652965984" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "90ecd192101af5147cd279c7" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11749207149787504291" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8ca3910fad057c7b5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10192275841955541594" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10570928496919467899" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12006793751130857568" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f46fb429b114cdabf1b03eac4cbd56440891b8bf462222523d1f71b0e274a23ccf77e95426e701b2274b1bcf55a7457410b1b56d8ede8e80ad44944c1431b571b9599c9d551d76aca1b669c62372ce261c9ff47159f7e1c9ab0389f485644356089e2780c1bca6c4c3a1eb1a2609f4c90ecd192101af5147cd279c7ffd8669f1ba30d91a71b905ea39f49f8ca3910fad057c7b51b8d723ce0948e325a1b92b37b75f4f0577b1ba6a0b34d4b88e060ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 70, 251, 66, 155, 17, 76, 218, 191, 27, 3, 234, + 196, 203, 213, 100, 64, 137, 27, 139, 244, 98, 34, 37, 35, 209, 247, 27, 14, 39, 74, 35, 204, 247, 126, 149, 66, + 110, 112, 27, 34, 116, 177, 188, 245, 90, 116, 87, 65, 11, 27, 86, 216, 237, 232, 232, 10, 212, 73, 68, 193, 67, + 27, 87, 27, 149, 153, 201, 213, 81, 215, 106, 202, 27, 102, 156, 98, 55, 44, 226, 97, 201, 255, 71, 21, 159, 126, + 28, 154, 176, 56, 159, 72, 86, 68, 53, 96, 137, 226, 120, 12, 27, 202, 108, 76, 58, 30, 177, 162, 96, 159, 76, + 144, 236, 209, 146, 16, 26, 245, 20, 124, 210, 121, 199, 255, 216, 102, 159, 27, 163, 13, 145, 167, 27, 144, 94, + 163, 159, 73, 248, 202, 57, 16, 250, 208, 87, 199, 181, 27, 141, 114, 60, 224, 148, 142, 50, 90, 27, 146, 179, + 123, 117, 244, 240, 87, 123, 27, 166, 160, 179, 77, 75, 136, 224, 96, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1354, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2628702194338779290" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + ] + }, + "cborHex": "d905039fd8669f1b247b06b7e1da509a80ff1bffffffffffffffedff", + "cborBytes": [ + 217, 5, 3, 159, 216, 102, 159, 27, 36, 123, 6, 183, 225, 218, 80, 154, 128, 255, 27, 255, 255, 255, 255, 255, 255, + 255, 237, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1355, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6189974051883037371" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b55e7349ab35fb2bb9f80ffff", + "cborBytes": [216, 102, 159, 27, 85, 231, 52, 154, 179, 95, 178, 187, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1356, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15665193822038703911" + }, + "fields": [] + }, + "cborHex": "d8669f1bd965f2c88c42bf2780ff", + "cborBytes": [216, 102, 159, 27, 217, 101, 242, 200, 140, 66, 191, 39, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1357, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7291682289331289581" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "2d99919498d26f41" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4138b3ec5de45f3cc1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8fb13ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5409753c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2041601436081472167" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fafa4e4d58abf66b00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2103018740944294211" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "770c76eec89737fc7fcfc2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "690b8c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1237438406915027735" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c4d472c3738343b54ded1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c71b23f7f532059" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a863" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9604467003544665262" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b65314268be993ded9f80482d99919498d26f41bf494138b3ec5de45f3cc144e8fb13ff445409753c1b1c5539b0729042a749fafa4e4d58abf66b001b1d2f6c6711f95143ff4b770c76eec89737fc7fcfc2bf43690b8c1b112c43acc39873174b6c4d472c3738343b54ded1488c71b23f7f53205942a8631b8549ebda633d7caeffffff", + "cborBytes": [ + 216, 102, 159, 27, 101, 49, 66, 104, 190, 153, 61, 237, 159, 128, 72, 45, 153, 145, 148, 152, 210, 111, 65, 191, + 73, 65, 56, 179, 236, 93, 228, 95, 60, 193, 68, 232, 251, 19, 255, 68, 84, 9, 117, 60, 27, 28, 85, 57, 176, 114, + 144, 66, 167, 73, 250, 250, 78, 77, 88, 171, 246, 107, 0, 27, 29, 47, 108, 103, 17, 249, 81, 67, 255, 75, 119, 12, + 118, 238, 200, 151, 55, 252, 127, 207, 194, 191, 67, 105, 11, 140, 27, 17, 44, 67, 172, 195, 152, 115, 23, 75, + 108, 77, 71, 44, 55, 56, 52, 59, 84, 222, 209, 72, 140, 113, 178, 63, 127, 83, 32, 89, 66, 168, 99, 27, 133, 73, + 235, 218, 99, 61, 124, 174, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1358, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2520768965585513957" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d061f04f1df0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19fbf1b22fb9204c28dade546d061f04f1df041061bfffffffffffffff5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 191, 27, 34, 251, 146, 4, 194, 141, 173, 229, 70, + 208, 97, 240, 79, 29, 240, 65, 6, 27, 255, 255, 255, 255, 255, 255, 255, 245, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1359, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17318743770139985410" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10588385994935082973" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5560115565827441839" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8138833957240326858" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7289441276657552625" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12120807418669150849" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "490d10d0463b" + }, + { + "_tag": "ByteArray", + "bytearray": "75fcabd9" + }, + { + "_tag": "ByteArray", + "bytearray": "f3ba15f36b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2739998699195195985" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c584d4" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "58b36351b6d21a9a" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bf05889b3473406029f1b92f180f674d39fdd1b4d297fa5fb43c4af1b70f2f25cdb324aca1b65294c38523e4cf1d8669f1ba835c220e4b1b2819f9f46490d10d0463b4475fcabd945f3ba15f36b1b26066e4cbe8fe25143c584d4ff9f4858b36351b6d21a9aff80ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 240, 88, 137, 179, 71, 52, 6, 2, 159, 27, 146, 241, 128, 246, 116, 211, 159, 221, 27, 77, 41, + 127, 165, 251, 67, 196, 175, 27, 112, 242, 242, 92, 219, 50, 74, 202, 27, 101, 41, 76, 56, 82, 62, 76, 241, 216, + 102, 159, 27, 168, 53, 194, 32, 228, 177, 178, 129, 159, 159, 70, 73, 13, 16, 208, 70, 59, 68, 117, 252, 171, 217, + 69, 243, 186, 21, 243, 107, 27, 38, 6, 110, 76, 190, 143, 226, 81, 67, 197, 132, 212, 255, 159, 72, 88, 179, 99, + 81, 182, 210, 26, 154, 255, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1360, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12953733195107429843" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5e2f90e619" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16537162050985602674" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2569705886470693468" + } + }, + { + "_tag": "ByteArray", + "bytearray": "07a0787bfa1992b0db" + }, + { + "_tag": "ByteArray", + "bytearray": "57c9" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7812981552476140750" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b52cfc173774eee580" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2200837214762457548" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7807701920486563574" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10124363964776134633" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "693110509594991612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8387004466655494108" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13771928904826997863" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16804757952674395760" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d87b9fd8669f1bb3c4e7b589906dd39f9f455e2f90e6191be57fcd448a112e721b23a96de38c50e25c4907a0787bfa1992b0db4257c9ffd8669f1b6c6d4953b80534ce9f49b52cfc173774eee5801b1e8af1c94a6059cc1b6c5a87879abc9ef61b8c80f762813f37e9ffffbf1b099e6c56127fdbfc1b7464a0204c9d7fdc1bbf1fb85f4425cc671be9367e529193f670ff80ffffff", + "cborBytes": [ + 216, 123, 159, 216, 102, 159, 27, 179, 196, 231, 181, 137, 144, 109, 211, 159, 159, 69, 94, 47, 144, 230, 25, 27, + 229, 127, 205, 68, 138, 17, 46, 114, 27, 35, 169, 109, 227, 140, 80, 226, 92, 73, 7, 160, 120, 123, 250, 25, 146, + 176, 219, 66, 87, 201, 255, 216, 102, 159, 27, 108, 109, 73, 83, 184, 5, 52, 206, 159, 73, 181, 44, 252, 23, 55, + 116, 238, 229, 128, 27, 30, 138, 241, 201, 74, 96, 89, 204, 27, 108, 90, 135, 135, 154, 188, 158, 246, 27, 140, + 128, 247, 98, 129, 63, 55, 233, 255, 255, 191, 27, 9, 158, 108, 86, 18, 127, 219, 252, 27, 116, 100, 160, 32, 76, + 157, 127, 220, 27, 191, 31, 184, 95, 68, 37, 204, 103, 27, 233, 54, 126, 82, 145, 147, 246, 112, 255, 128, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1361, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f67848e206055c0793ff" + }, + { + "_tag": "ByteArray", + "bytearray": "6ca349ca" + } + ] + }, + "cborHex": "d905049f4af67848e206055c0793ff446ca349caff", + "cborBytes": [217, 5, 4, 159, 74, 246, 120, 72, 226, 6, 5, 92, 7, 147, 255, 68, 108, 163, 73, 202, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1362, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10008435273238486531" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9fd8669f1b8ae51adaa2de9e0380ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 216, 102, 159, 27, 138, 229, 26, 218, 162, 222, + 158, 3, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1363, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6191851887462388941" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d1954b3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7925741926202947217" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2286d6949bc309" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9356237847826596188" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3fda67" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2493788919800294228" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16738703300960360970" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17999578142601927848" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13391d27cea7cbe65b6ff442" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4212446348451786886" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14501435225432302863" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b464fca524" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "414e1a1ab4701c0a18bb86" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee30f40641a602633817" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5377a8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be54e672" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11730800570030709876" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c15a2160d77660609d4d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12825866349724622569" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3311200712001398229" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3780671556305991412" + } + }, + { + "_tag": "ByteArray", + "bytearray": "be45ddfd0195f3a22d" + }, + { + "_tag": "ByteArray", + "bytearray": "e4a79d0c79b08bfd52" + } + ] + } + ] + } + ] + }, + "cborHex": "d905099f9f1b55ede07c5e0714cd440d1954b39f1b6dfde44a1cbf3691472286d6949bc3091b81d808c049c5015c433fda67ffffd8669f1b229bb7cf55806b549f809f1be84bd1f77e669a0affa01bf9cb58f470ac5ca8ffffbf4c13391d27cea7cbe65b6ff4421b3a759da2aadc308641851bc93f7281713aa50f45b464fca5244b414e1a1ab4701c0a18bb864aee30f40641a602633817435377a841f644be54e672ff9f9f1ba2cc2cf74ba15c74ff4ac15a2160d77660609d4dd8669f1bb1fea17d9ff8dee99f1b2df3bf810add25d51b3477a4bfe60ab6f449be45ddfd0195f3a22d49e4a79d0c79b08bfd52ffffffff", + "cborBytes": [ + 217, 5, 9, 159, 159, 27, 85, 237, 224, 124, 94, 7, 20, 205, 68, 13, 25, 84, 179, 159, 27, 109, 253, 228, 74, 28, + 191, 54, 145, 71, 34, 134, 214, 148, 155, 195, 9, 27, 129, 216, 8, 192, 73, 197, 1, 92, 67, 63, 218, 103, 255, + 255, 216, 102, 159, 27, 34, 155, 183, 207, 85, 128, 107, 84, 159, 128, 159, 27, 232, 75, 209, 247, 126, 102, 154, + 10, 255, 160, 27, 249, 203, 88, 244, 112, 172, 92, 168, 255, 255, 191, 76, 19, 57, 29, 39, 206, 167, 203, 230, 91, + 111, 244, 66, 27, 58, 117, 157, 162, 170, 220, 48, 134, 65, 133, 27, 201, 63, 114, 129, 113, 58, 165, 15, 69, 180, + 100, 252, 165, 36, 75, 65, 78, 26, 26, 180, 112, 28, 10, 24, 187, 134, 74, 238, 48, 244, 6, 65, 166, 2, 99, 56, + 23, 67, 83, 119, 168, 65, 246, 68, 190, 84, 230, 114, 255, 159, 159, 27, 162, 204, 44, 247, 75, 161, 92, 116, 255, + 74, 193, 90, 33, 96, 215, 118, 96, 96, 157, 77, 216, 102, 159, 27, 177, 254, 161, 125, 159, 248, 222, 233, 159, + 27, 45, 243, 191, 129, 10, 221, 37, 213, 27, 52, 119, 164, 191, 230, 10, 182, 244, 73, 190, 69, 221, 253, 1, 149, + 243, 162, 45, 73, 228, 167, 157, 12, 121, 176, 139, 253, 82, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1364, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12156974100741318662" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3830850567505616583" + } + } + ] + }, + "cborHex": "d8669f1ba8b63f88c24f68069f1b3529ea4b5fc69ec7ffff", + "cborBytes": [ + 216, 102, 159, 27, 168, 182, 63, 136, 194, 79, 104, 6, 159, 27, 53, 41, 234, 75, 95, 198, 158, 199, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1365, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5587960280818322814" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b4d8c6c44e52b0d7e9f80ffff", + "cborBytes": [216, 102, 159, 27, 77, 140, 108, 68, 229, 43, 13, 126, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1366, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14255096040932688438" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8325182274121514306" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c628b55c45d08830ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4274081552232541969" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bc5d446528edec2369fd8669f1b7388fd2b6b643d429f9f49c628b55c45d08830ab1b3b509686d5deef11ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 197, 212, 70, 82, 142, 222, 194, 54, 159, 216, 102, 159, 27, 115, 136, 253, 43, 107, 100, 61, + 66, 159, 159, 73, 198, 40, 181, 92, 69, 208, 136, 48, 171, 27, 59, 80, 150, 134, 213, 222, 239, 17, 255, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1367, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8428623915444408420" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15120574806305189210" + } + } + ] + }, + "cborHex": "d8669f1b74f87ccb596d10649f1bd1d712ac918aad5affff", + "cborBytes": [ + 216, 102, 159, 27, 116, 248, 124, 203, 89, 109, 16, 100, 159, 27, 209, 215, 18, 172, 145, 138, 173, 90, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1368, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2479580385926211048" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e9899ef9d4f1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "837885240706315423" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2051619242941180462" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "837b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6056907152748711880" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f299901f8751545c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7029535692227114365" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd7927a89df90c243b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10617592323270265211" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b76d6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14456680888150013236" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17767034940329284732" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16988747976342875918" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "504196958869656150" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "963af77c7e39f1a09a1966" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9429818523450979804" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16847959630131616793" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ee06" + }, + { + "_tag": "ByteArray", + "bytearray": "6a073076d117aa" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4087523514891316142" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3092082867962522347" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2535482999384342916" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b22693d393f2865e89f46e9899ef9d4f1d8669f1b0ba0c42fe6d7b49f9fbf1b1c78d0d4dddd6a2e42837b1b540e74f6ed1c0fc848f299901f8751545c1b618ded77cf20757d49bd7927a89df90c243b1b935943f6ae70497b431b76d61bc8a072ac495c35341bf6913024fa47d47c1bebc42846348daf0e1b06ff447676421256ff9f4b963af77c7e39f1a09a1966ff1b82dd71fc5ab1b5dc1be9cffa04f01ddc19ffff9f9f42ee06476a073076d117aaffd87b9f1b38b9ccfaec272bae1b2ae948fc60fa2aeb1b232fd85ab8588184ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 34, 105, 61, 57, 63, 40, 101, 232, 159, 70, 233, 137, 158, 249, 212, 241, 216, 102, 159, 27, + 11, 160, 196, 47, 230, 215, 180, 159, 159, 191, 27, 28, 120, 208, 212, 221, 221, 106, 46, 66, 131, 123, 27, 84, + 14, 116, 246, 237, 28, 15, 200, 72, 242, 153, 144, 31, 135, 81, 84, 92, 27, 97, 141, 237, 119, 207, 32, 117, 125, + 73, 189, 121, 39, 168, 157, 249, 12, 36, 59, 27, 147, 89, 67, 246, 174, 112, 73, 123, 67, 27, 118, 214, 27, 200, + 160, 114, 172, 73, 92, 53, 52, 27, 246, 145, 48, 36, 250, 71, 212, 124, 27, 235, 196, 40, 70, 52, 141, 175, 14, + 27, 6, 255, 68, 118, 118, 66, 18, 86, 255, 159, 75, 150, 58, 247, 124, 126, 57, 241, 160, 154, 25, 102, 255, 27, + 130, 221, 113, 252, 90, 177, 181, 220, 27, 233, 207, 250, 4, 240, 29, 220, 25, 255, 255, 159, 159, 66, 238, 6, 71, + 106, 7, 48, 118, 209, 23, 170, 255, 216, 123, 159, 27, 56, 185, 204, 250, 236, 39, 43, 174, 27, 42, 233, 72, 252, + 96, 250, 42, 235, 27, 35, 47, 216, 90, 184, 88, 129, 132, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1369, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1627607605778503399" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb00f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3701537222448053450" + } + } + } + ] + } + ] + }, + "cborHex": "d9050d9fbf1b16966c7e7826d6e70a43fb00f91b335e807e02e6fccaffff", + "cborBytes": [ + 217, 5, 13, 159, 191, 27, 22, 150, 108, 126, 120, 38, 214, 231, 10, 67, 251, 0, 249, 27, 51, 94, 128, 126, 2, 230, + 252, 202, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1370, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7635100436303986690" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "75f0bae48c45bc21351b" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3429600126154654189" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "ByteArray", + "bytearray": "20b7380b87090d6ad154" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ae490b966060" + } + ] + }, + "cborHex": "d8669f1b69f55364f25440029f4a75f0bae48c45bc21351ba0d8669f1b2f986324d91541ed9f1bfffffffffffffffbd9050d9f074a20b7380b87090d6ad154ffffff46ae490b966060ffff", + "cborBytes": [ + 216, 102, 159, 27, 105, 245, 83, 100, 242, 84, 64, 2, 159, 74, 117, 240, 186, 228, 140, 69, 188, 33, 53, 27, 160, + 216, 102, 159, 27, 47, 152, 99, 36, 217, 21, 65, 237, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 217, 5, 13, + 159, 7, 74, 32, 183, 56, 11, 135, 9, 13, 106, 209, 84, 255, 255, 255, 70, 174, 73, 11, 150, 96, 96, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1371, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "216371122929940658" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "31613b2a550d610c4b224cf9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b607" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2470028065666088967" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13113854578267354532" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5264334744965391037" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b0300b463d1e438b29f9f4c31613b2a550d610c4b224cf99f42b6071b22474d705f45c0071bb5fdc5423dc175a41b490eac8f1468a2bdffffffff", + "cborBytes": [ + 216, 102, 159, 27, 3, 0, 180, 99, 209, 228, 56, 178, 159, 159, 76, 49, 97, 59, 42, 85, 13, 97, 12, 75, 34, 76, + 249, 159, 66, 182, 7, 27, 34, 71, 77, 112, 95, 69, 192, 7, 27, 181, 253, 197, 66, 61, 193, 117, 164, 27, 73, 14, + 172, 143, 20, 104, 162, 189, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1372, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18091091576182611377" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c90a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d262a2e491" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5016ac5dc7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2997083467075828753" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7e6a9baae1069c5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "590936133472057729" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15700095907163987755" + } + }, + { + "_tag": "ByteArray", + "bytearray": "93" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "188f1c82c3388d50bc225fdd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5007ae7af" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "562377047ef70bd98b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c84af2c0ebd784705080df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "758f74cb9d2b49" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a78f7489e96baf9c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e53816" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9726728234867049182" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfb1077f0156d1db19f9fbf432c90a945d262a2e491455016ac5dc71b2997c788b9403c1148d7e6a9baae1069c51b08336d48508b7981ff1bd9e1f20b7e12df2b4193bf4c188f1c82c3388d50bc225fdd45c5007ae7af49562377047ef70bd98b4bc84af2c0ebd784705080df47758f74cb9d2b4948a78f7489e96baf9c43e538161b86fc47cb920342deffffffff", + "cborBytes": [ + 216, 102, 159, 27, 251, 16, 119, 240, 21, 109, 29, 177, 159, 159, 191, 67, 44, 144, 169, 69, 210, 98, 162, 228, + 145, 69, 80, 22, 172, 93, 199, 27, 41, 151, 199, 136, 185, 64, 60, 17, 72, 215, 230, 169, 186, 174, 16, 105, 197, + 27, 8, 51, 109, 72, 80, 139, 121, 129, 255, 27, 217, 225, 242, 11, 126, 18, 223, 43, 65, 147, 191, 76, 24, 143, + 28, 130, 195, 56, 141, 80, 188, 34, 95, 221, 69, 197, 0, 122, 231, 175, 73, 86, 35, 119, 4, 126, 247, 11, 217, + 139, 75, 200, 74, 242, 192, 235, 215, 132, 112, 80, 128, 223, 71, 117, 143, 116, 203, 157, 43, 73, 72, 167, 143, + 116, 137, 233, 107, 175, 156, 67, 229, 56, 22, 27, 134, 252, 71, 203, 146, 3, 66, 222, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1373, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c2d6e4dc60fd220b7d31e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9822817094581732629" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "886af3461da1ba36" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4615790235866371999" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c41a1afcdb480e702519304d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12342870512501415793" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5e0b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cfe2ac35382d3b9743" + } + } + ] + } + ] + }, + "cborHex": "d905089fbf4b5c2d6e4dc60fd220b7d31e1b8851a81aa02dc51548886af3461da1ba361b400e94c39688179f4cc41a1afcdb480e702519304d1bab4aaf55f64a5f7143d5e0b049cfe2ac35382d3b9743ffff", + "cborBytes": [ + 217, 5, 8, 159, 191, 75, 92, 45, 110, 77, 198, 15, 210, 32, 183, 211, 30, 27, 136, 81, 168, 26, 160, 45, 197, 21, + 72, 136, 106, 243, 70, 29, 161, 186, 54, 27, 64, 14, 148, 195, 150, 136, 23, 159, 76, 196, 26, 26, 252, 219, 72, + 14, 112, 37, 25, 48, 77, 27, 171, 74, 175, 85, 246, 74, 95, 113, 67, 213, 224, 176, 73, 207, 226, 172, 53, 56, 45, + 59, 151, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1374, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cd139" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7961927155883996575" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ebd073e27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60ffa6993b78" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "daf7a00a5758c23f0a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6615" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8235016118555490620" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16076292266746125106" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7074532874366811616" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10390048135394003858" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f5780553956bd9dd60c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4963206480038161750" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bed9cfa9c4456a99a3f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3891661638297754511" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cecd22f020e3b8af9d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1706814dac22b642868c27a" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69fbf431cd1391b6e7e72906e00759f454ebd073e274660ffa6993b7849daf7a00a5758c23f0a426615ff9fd8669f1b7248a787621db93c9f1bdf1a76a408c31b321b622dca2ab074fde01b9030ddbaf55e8b92ffffbf4a1f5780553956bd9dd60c1b44e0d9ff55976d564abed9cfa9c4456a99a3f81b3601f5a420c09b8f49cecd22f020e3b8af9d4cc1706814dac22b642868c27affffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 191, 67, 28, 209, 57, 27, 110, 126, 114, 144, 110, + 0, 117, 159, 69, 78, 189, 7, 62, 39, 70, 96, 255, 166, 153, 59, 120, 73, 218, 247, 160, 10, 87, 88, 194, 63, 10, + 66, 102, 21, 255, 159, 216, 102, 159, 27, 114, 72, 167, 135, 98, 29, 185, 60, 159, 27, 223, 26, 118, 164, 8, 195, + 27, 50, 27, 98, 45, 202, 42, 176, 116, 253, 224, 27, 144, 48, 221, 186, 245, 94, 139, 146, 255, 255, 191, 74, 31, + 87, 128, 85, 57, 86, 189, 157, 214, 12, 27, 68, 224, 217, 255, 85, 151, 109, 86, 74, 190, 217, 207, 169, 196, 69, + 106, 153, 163, 248, 27, 54, 1, 245, 164, 32, 192, 155, 143, 73, 206, 205, 34, 240, 32, 227, 184, 175, 157, 76, + 193, 112, 104, 20, 218, 194, 43, 100, 40, 104, 194, 122, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1375, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5408755041639519963" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8578086295412032967" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2422565812542360099" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b77259a5fb675c41b8e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "60" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18431812164517986914" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5434240899454496279" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cce990ee53" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15984040095733601313" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13924169634731928441" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1265704416055585298" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1094948007680177924" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b4b0fc20db606d6db9f1b770b7c097aae45c7bf1b219eaec56d97ca234a7b77259a5fb675c41b8eff4160d8669f1bffcaf381f8d182629fd8669f1b4b6a4d4e63e26e179f45cce990ee531bddd2b7c7adcd54211bc13c9682667a2b791b1190af75dda2ea12ffff1b0f320969654c770480ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 75, 15, 194, 13, 182, 6, 214, 219, 159, 27, 119, 11, 124, 9, 122, 174, 69, 199, 191, 27, 33, + 158, 174, 197, 109, 151, 202, 35, 74, 123, 119, 37, 154, 95, 182, 117, 196, 27, 142, 255, 65, 96, 216, 102, 159, + 27, 255, 202, 243, 129, 248, 209, 130, 98, 159, 216, 102, 159, 27, 75, 106, 77, 78, 99, 226, 110, 23, 159, 69, + 204, 233, 144, 238, 83, 27, 221, 210, 183, 199, 173, 205, 84, 33, 27, 193, 60, 150, 130, 102, 122, 43, 121, 27, + 17, 144, 175, 117, 221, 162, 234, 18, 255, 255, 27, 15, 50, 9, 105, 101, 76, 119, 4, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1376, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16605454396010819658" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11189208362544220933" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8906f9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6350003917958576986" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fe" + }, + { + "_tag": "ByteArray", + "bytearray": "6d" + }, + { + "_tag": "ByteArray", + "bytearray": "06fae5e54bd1c74a114afda6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9237089280243706246" + } + } + ] + }, + "cborHex": "d8669f1be6726ccb302c704a9f1b9b480db907474b05438906f9d8669f1b581fbeeb6c427b5a9f41fe416d4c06fae5e54bd1c74a114afda6ffff1b8030bbc29b7ea986ffff", + "cborBytes": [ + 216, 102, 159, 27, 230, 114, 108, 203, 48, 44, 112, 74, 159, 27, 155, 72, 13, 185, 7, 71, 75, 5, 67, 137, 6, 249, + 216, 102, 159, 27, 88, 31, 190, 235, 108, 66, 123, 90, 159, 65, 254, 65, 109, 76, 6, 250, 229, 229, 75, 209, 199, + 74, 17, 74, 253, 166, 255, 255, 27, 128, 48, 187, 194, 155, 126, 169, 134, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1377, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0225009907036419fcc835" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cc9d749737" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11994133476196617104" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5523451763897489542" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12609167365450886862" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28485a6b5f1212" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12949526892626947753" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b00febcc30a8929ed72" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17055128253705750557" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11545542091015974185" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f9fa04b0225009907036419fcc835ff45cc9d749737bf1ba673b8d955520b901b4ca73e1d611d58861baefcc2e9a325eece4728485a6b5f12121bb3b5f6196c65aea94a5b00febcc30a8929ed721becaffcc8e8dc081d1ba03a015c6253ed29ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 159, 160, 75, 2, 37, 0, 153, 7, 3, 100, 25, 252, + 200, 53, 255, 69, 204, 157, 116, 151, 55, 191, 27, 166, 115, 184, 217, 85, 82, 11, 144, 27, 76, 167, 62, 29, 97, + 29, 88, 134, 27, 174, 252, 194, 233, 163, 37, 238, 206, 71, 40, 72, 90, 107, 95, 18, 18, 27, 179, 181, 246, 25, + 108, 101, 174, 169, 74, 91, 0, 254, 188, 195, 10, 137, 41, 237, 114, 27, 236, 175, 252, 200, 232, 220, 8, 29, 27, + 160, 58, 1, 92, 98, 83, 237, 41, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1378, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "066b69" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5319191700710167503" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aeb4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27485f05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9853625221085155078" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "974067db8fd20b1c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "949a2eaf63c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3729" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5849662948072904577" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6394355292101516329" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3578a23e4e29d0e8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10222357578832523293" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6523589026470443409" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3950945570460043089" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6951101970034511441" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1567181576195386424" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5341817111073626044" + } + }, + { + "_tag": "ByteArray", + "bytearray": "296783ea775f3c8f71c81fef" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "952e6a7913" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13242539360165116213" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6d03660" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d13c9f56f2f50d751d" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050b9f43066b691b49d190ab650913cfbf411742aeb44427485f051b88bf1bee8c9c4f06417648974067db8fd20b1c46949a2eaf63c6423729ffd8669f1b512e2d755ba657819fbf1b58bd504269599c29483578a23e4e29d0e81b8ddd1c0ebd55b01d1b5a8871a7f7683991ffbf1b36d49410362c87511b60774669c96cce51ff9f1b15bfbf571ba9ac381b4a21f25c40a597bc4c296783ea775f3c8f71c81fefffbf45952e6a79131bb7c6f362d6c5393544b6d0366049d13c9f56f2f50d751dffffffff", + "cborBytes": [ + 217, 5, 11, 159, 67, 6, 107, 105, 27, 73, 209, 144, 171, 101, 9, 19, 207, 191, 65, 23, 66, 174, 180, 68, 39, 72, + 95, 5, 27, 136, 191, 27, 238, 140, 156, 79, 6, 65, 118, 72, 151, 64, 103, 219, 143, 210, 11, 28, 70, 148, 154, 46, + 175, 99, 198, 66, 55, 41, 255, 216, 102, 159, 27, 81, 46, 45, 117, 91, 166, 87, 129, 159, 191, 27, 88, 189, 80, + 66, 105, 89, 156, 41, 72, 53, 120, 162, 62, 78, 41, 208, 232, 27, 141, 221, 28, 14, 189, 85, 176, 29, 27, 90, 136, + 113, 167, 247, 104, 57, 145, 255, 191, 27, 54, 212, 148, 16, 54, 44, 135, 81, 27, 96, 119, 70, 105, 201, 108, 206, + 81, 255, 159, 27, 21, 191, 191, 87, 27, 169, 172, 56, 27, 74, 33, 242, 92, 64, 165, 151, 188, 76, 41, 103, 131, + 234, 119, 95, 60, 143, 113, 200, 31, 239, 255, 191, 69, 149, 46, 106, 121, 19, 27, 183, 198, 243, 98, 214, 197, + 57, 53, 68, 182, 208, 54, 96, 73, 209, 60, 159, 86, 242, 245, 13, 117, 29, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1379, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b02494ac33f87014460f94" + }, + { + "_tag": "ByteArray", + "bytearray": "51c7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12926302825937129014" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13439297888712650577" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7928114325088977672" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10870948875565018963" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7911006781261644024" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4431371006746561230" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "856df0c5ed51dc29c5ca67" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4842219719915286523" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71cda43b20de946cbe72315c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7037656074514285435" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "707c4d6d56e0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9302012925804771023" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16731573999196526746" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11929634083116053271" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d03b89272d8a" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e7fc0cd25b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17434108899449144472" + } + } + ] + }, + "cborHex": "d905029f4bb02494ac33f87014460f944251c79fd8669f1bb36373ef071c4e369f1bba81fa39af5fef511b6e0651f9459d43081b96dd5e67d37c2f531b6dc98ac0d4ce80f8ffffbf1b3d7f6473c5180ace4b856df0c5ed51dc29c5ca671b4333052e19f12ffb4c71cda43b20de946cbe72315c1b61aac6e9a4cb437b46707c4d6d56e01b81176378caaf76cf1be8327de79345589a1ba58e92fe2086731746d03b89272d8aff45e7fc0cd25bff1bf1f265ac97248498ff", + "cborBytes": [ + 217, 5, 2, 159, 75, 176, 36, 148, 172, 51, 248, 112, 20, 70, 15, 148, 66, 81, 199, 159, 216, 102, 159, 27, 179, + 99, 115, 239, 7, 28, 78, 54, 159, 27, 186, 129, 250, 57, 175, 95, 239, 81, 27, 110, 6, 81, 249, 69, 157, 67, 8, + 27, 150, 221, 94, 103, 211, 124, 47, 83, 27, 109, 201, 138, 192, 212, 206, 128, 248, 255, 255, 191, 27, 61, 127, + 100, 115, 197, 24, 10, 206, 75, 133, 109, 240, 197, 237, 81, 220, 41, 197, 202, 103, 27, 67, 51, 5, 46, 25, 241, + 47, 251, 76, 113, 205, 164, 59, 32, 222, 148, 108, 190, 114, 49, 92, 27, 97, 170, 198, 233, 164, 203, 67, 123, 70, + 112, 124, 77, 109, 86, 224, 27, 129, 23, 99, 120, 202, 175, 118, 207, 27, 232, 50, 125, 231, 147, 69, 88, 154, 27, + 165, 142, 146, 254, 32, 134, 115, 23, 70, 208, 59, 137, 39, 45, 138, 255, 69, 231, 252, 12, 210, 91, 255, 27, 241, + 242, 101, 172, 151, 36, 132, 152, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1380, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17904648123857543403" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8057271940973567188" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9840926591964900720" + } + } + ] + }, + "cborHex": "d8669f1bf87a169b12e4a0eb9fa01b6fd12e241c739cd41b8891fe988ec36d70ffff", + "cborBytes": [ + 216, 102, 159, 27, 248, 122, 22, 155, 18, 228, 160, 235, 159, 160, 27, 111, 209, 46, 36, 28, 115, 156, 212, 27, + 136, 145, 254, 152, 142, 195, 109, 112, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1381, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11562589666226404007" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "39a225a19393ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15361963067398079508" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88b8350c1c3fd1b3719b7d94" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39f161c7e3e00d976257" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad5e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b73e85067f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8411474605744570103" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15913323357768227060" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "08b1377623" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8924750266653425067" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c0daf768c619c75d6da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd1929" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "389492537037988348" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c94367207ac37fe35d82f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5592461306007670859" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8284229763594526301" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16187377034467360659" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14606451522909057953" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5962526084086330678" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13770661675013588651" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3597291151178898249" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13264997658753457361" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c91e72" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14896570292659820856" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12342031496206457100" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4390fe20b5120fc1" + }, + { + "_tag": "ByteArray", + "bytearray": "2625c7c11a43ed2625cf" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "648563108151441239" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17747848230281067979" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6130586855408547834" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9624854132522987128" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14533104416276633508" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14064341500475004385" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "535e1029339062" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8573993253183680576" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5928940206172638635" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6479503611694625734" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11166539960790279051" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15766132628677063863" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1ba076920a4b06faa79fbf4739a225a19393ee1bd530a804c4eec4144c88b8350c1c3fd1b3719b7d944a39f161c7e3e00d97625742ad5e45b73e85067fffd8669f1b74bb8f96889fbef79f9f1bdcd77b480fb398f4ffbf4508b13776231b7bdb151508f33dab4a0c0daf768c619c75d6da4216db43bd19291b0567c16618d0a1fc4bc94367207ac37fe35d82f41b4d9c69ed7cb4504bff9f1b72f77f1408c51e5d1be0a51da600be3f93413a1bcab48a4593f533a11b52bf25e1f5f77536ffd8669f1bbf1b37d5554546ab9f1b31ec253e23ac9b491bb816bd16f4635cd143c91e721bcebb3fc179a019381bab47b4414211990cffffffff9f484390fe20b5120fc14a2625c7c11a43ed2625cfd8669f1b090028b5ebca37579f1bf64d05eeed72bdcb1b55143843854e37fa1b859259d6bffbae78ffff1bc9aff57787d457a480ff9fd8669f1bc32e94141f98d5e19f47535e10293390621b76fcf16fd29bf0401b5247d3b463738dabffffd8669f1b59ebd23477eb33c69f1b9af784ee751be38b1bdacc8e17ddfdf4b7ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 160, 118, 146, 10, 75, 6, 250, 167, 159, 191, 71, 57, 162, 37, 161, 147, 147, 238, 27, 213, 48, + 168, 4, 196, 238, 196, 20, 76, 136, 184, 53, 12, 28, 63, 209, 179, 113, 155, 125, 148, 74, 57, 241, 97, 199, 227, + 224, 13, 151, 98, 87, 66, 173, 94, 69, 183, 62, 133, 6, 127, 255, 216, 102, 159, 27, 116, 187, 143, 150, 136, 159, + 190, 247, 159, 159, 27, 220, 215, 123, 72, 15, 179, 152, 244, 255, 191, 69, 8, 177, 55, 118, 35, 27, 123, 219, 21, + 21, 8, 243, 61, 171, 74, 12, 13, 175, 118, 140, 97, 156, 117, 214, 218, 66, 22, 219, 67, 189, 25, 41, 27, 5, 103, + 193, 102, 24, 208, 161, 252, 75, 201, 67, 103, 32, 122, 195, 127, 227, 93, 130, 244, 27, 77, 156, 105, 237, 124, + 180, 80, 75, 255, 159, 27, 114, 247, 127, 20, 8, 197, 30, 93, 27, 224, 165, 29, 166, 0, 190, 63, 147, 65, 58, 27, + 202, 180, 138, 69, 147, 245, 51, 161, 27, 82, 191, 37, 225, 245, 247, 117, 54, 255, 216, 102, 159, 27, 191, 27, + 55, 213, 85, 69, 70, 171, 159, 27, 49, 236, 37, 62, 35, 172, 155, 73, 27, 184, 22, 189, 22, 244, 99, 92, 209, 67, + 201, 30, 114, 27, 206, 187, 63, 193, 121, 160, 25, 56, 27, 171, 71, 180, 65, 66, 17, 153, 12, 255, 255, 255, 255, + 159, 72, 67, 144, 254, 32, 181, 18, 15, 193, 74, 38, 37, 199, 193, 26, 67, 237, 38, 37, 207, 216, 102, 159, 27, 9, + 0, 40, 181, 235, 202, 55, 87, 159, 27, 246, 77, 5, 238, 237, 114, 189, 203, 27, 85, 20, 56, 67, 133, 78, 55, 250, + 27, 133, 146, 89, 214, 191, 251, 174, 120, 255, 255, 27, 201, 175, 245, 119, 135, 212, 87, 164, 128, 255, 159, + 216, 102, 159, 27, 195, 46, 148, 20, 31, 152, 213, 225, 159, 71, 83, 94, 16, 41, 51, 144, 98, 27, 118, 252, 241, + 111, 210, 155, 240, 64, 27, 82, 71, 211, 180, 99, 115, 141, 171, 255, 255, 216, 102, 159, 27, 89, 235, 210, 52, + 119, 235, 51, 198, 159, 27, 154, 247, 132, 238, 117, 27, 227, 139, 27, 218, 204, 142, 23, 221, 253, 244, 183, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1382, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10137454540345797047" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "78b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fdd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bcbba80ea528c8a4cb1347c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13983912276949430554" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7475233976555621063" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3330703423496604923" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "254d772b25c9d465597e" + }, + { + "_tag": "ByteArray", + "bytearray": "ea0eca" + } + ] + }, + "cborHex": "d8669f1b8caf7931a3fb69b79fbf4278b5426fdd4c7bcbba80ea528c8a4cb1347c1bc210d6203dcb711affa09f9f1b67bd5db239874ac7ff1b2e39091de9b14cfbff4a254d772b25c9d465597e43ea0ecaffff", + "cborBytes": [ + 216, 102, 159, 27, 140, 175, 121, 49, 163, 251, 105, 183, 159, 191, 66, 120, 181, 66, 111, 221, 76, 123, 203, 186, + 128, 234, 82, 140, 138, 76, 177, 52, 124, 27, 194, 16, 214, 32, 61, 203, 113, 26, 255, 160, 159, 159, 27, 103, + 189, 93, 178, 57, 135, 74, 199, 255, 27, 46, 57, 9, 29, 233, 177, 76, 251, 255, 74, 37, 77, 119, 43, 37, 201, 212, + 101, 89, 126, 67, 234, 14, 202, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1383, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "47fb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb41" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9ec9" + }, + { + "_tag": "ByteArray", + "bytearray": "46a9ddc84cc77a60" + }, + { + "_tag": "ByteArray", + "bytearray": "275400c7f2e2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15486231384998754215" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14020967398965798806" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6187490846229570952" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7953932900835905192" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050d9f4247fbd87c9f42fb41d9050a9f429ec94846a9ddc84cc77a6046275400c7f2e21bd6ea2565245b37a7ff1bc2947b9026b06796bf1b55de6224547ea5881b6e620bd4e19dcea8ffffff", + "cborBytes": [ + 217, 5, 13, 159, 66, 71, 251, 216, 124, 159, 66, 251, 65, 217, 5, 10, 159, 66, 158, 201, 72, 70, 169, 221, 200, + 76, 199, 122, 96, 70, 39, 84, 0, 199, 242, 226, 27, 214, 234, 37, 101, 36, 91, 55, 167, 255, 27, 194, 148, 123, + 144, 38, 176, 103, 150, 191, 27, 85, 222, 98, 36, 84, 126, 165, 136, 27, 110, 98, 11, 212, 225, 157, 206, 168, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1384, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10550521216281046620" + } + } + ] + }, + "cborHex": "d87f9f801b926afb25aba76e5cff", + "cborBytes": [216, 127, 159, 128, 27, 146, 106, 251, 37, 171, 167, 110, 92, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1385, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13126796505089764728" + }, + "fields": [] + }, + "cborHex": "d8669f1bb62bbfdf64b6ed7880ff", + "cborBytes": [216, 102, 159, 27, 182, 43, 191, 223, 100, 182, 237, 120, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1386, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "50a9" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6648019805358768121" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f0e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8defcc1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df6a412f0007a6c4d423fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e1701cf00008afbff04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe0506" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f06" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1970205404166714256" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f4250a9a01b5c4282ca4e2bbff9bf423f0e0a44c8defcc141064bdf6a412f0007a6c4d423fa4a7e1701cf00008afbff0443fe0506429f06ff1b1b57936061e97390ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 66, 80, 169, 160, 27, 92, 66, 130, 202, 78, 43, + 191, 249, 191, 66, 63, 14, 10, 68, 200, 222, 252, 193, 65, 6, 75, 223, 106, 65, 47, 0, 7, 166, 196, 212, 35, 250, + 74, 126, 23, 1, 207, 0, 0, 138, 251, 255, 4, 67, 254, 5, 6, 66, 159, 6, 255, 27, 27, 87, 147, 96, 97, 233, 115, + 144, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1387, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11229887905716396201" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "235173788759767734" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b99d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15082393059229878265" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "caf00073259d" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "022d0202c103acf8ef0703e4" + } + ] + }, + "cborHex": "d8669f1b9bd8938d3fae60a99fbf1b034381509b823ab642b99d1bd14f6c93d236c7f946caf00073259dff4c022d0202c103acf8ef0703e4ffff", + "cborBytes": [ + 216, 102, 159, 27, 155, 216, 147, 141, 63, 174, 96, 169, 159, 191, 27, 3, 67, 129, 80, 155, 130, 58, 182, 66, 185, + 157, 27, 209, 79, 108, 147, 210, 54, 199, 249, 70, 202, 240, 0, 115, 37, 157, 255, 76, 2, 45, 2, 2, 193, 3, 172, + 248, 239, 7, 3, 228, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1388, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3583443038686727309" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d034e18f7a6f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10703432807492266106" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8fefa315" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3487042355453806944" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92fd6f6c4242cba8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0902f70f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4357b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15114100445121988069" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6e33f1365" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f621e6e5b2227c8b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1801044689358817787" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2275cfb4056284baea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04bbb1ef991efe2ae13b38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecf6c2152f1a01f2c801f71d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b164b1863a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44e788" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b39592" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9578651382586968294" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "22c2a2ea0d2dc8" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bcdb65" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15249736616444760185" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6289229386698572923" + } + }, + { + "_tag": "ByteArray", + "bytearray": "600800c48bc9a4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1630388026288179638" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "905370859414822396" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b694d85d8aedcb46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6bf4" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79f1b31baf27531c4cc8dbf471d034e18f7a6f71b948a3b6ddfd6a87a448fefa3151b3064768c1190c9604892fd6f6c4242cba845c0902f70f343c4357b1bd1c01246e311c5e545e6e33f136548f621e6e5b2227c8bff9fbf1b18fe989a45d609fb492275cfb4056284baea4b04bbb1ef991efe2ae13b384cecf6c2152f1a01f2c801f71d45b164b1863a4344e78843b395921b84ee34aebe6688e6ff4722c2a2ea0d2dc8ff9f43bcdb65d8669f1bd3a1f2a7f57510799f1b5747d4ce311dc47b47600800c48bc9a41b16a04d4590f509b6ffff1b0c9085fff1691dfcff9fbf48b694d85d8aedcb46426bf4ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 27, 49, 186, 242, 117, 49, 196, 204, 141, 191, 71, + 29, 3, 78, 24, 247, 166, 247, 27, 148, 138, 59, 109, 223, 214, 168, 122, 68, 143, 239, 163, 21, 27, 48, 100, 118, + 140, 17, 144, 201, 96, 72, 146, 253, 111, 108, 66, 66, 203, 168, 69, 192, 144, 47, 112, 243, 67, 196, 53, 123, 27, + 209, 192, 18, 70, 227, 17, 197, 229, 69, 230, 227, 63, 19, 101, 72, 246, 33, 230, 229, 178, 34, 124, 139, 255, + 159, 191, 27, 24, 254, 152, 154, 69, 214, 9, 251, 73, 34, 117, 207, 180, 5, 98, 132, 186, 234, 75, 4, 187, 177, + 239, 153, 30, 254, 42, 225, 59, 56, 76, 236, 246, 194, 21, 47, 26, 1, 242, 200, 1, 247, 29, 69, 177, 100, 177, + 134, 58, 67, 68, 231, 136, 67, 179, 149, 146, 27, 132, 238, 52, 174, 190, 102, 136, 230, 255, 71, 34, 194, 162, + 234, 13, 45, 200, 255, 159, 67, 188, 219, 101, 216, 102, 159, 27, 211, 161, 242, 167, 245, 117, 16, 121, 159, 27, + 87, 71, 212, 206, 49, 29, 196, 123, 71, 96, 8, 0, 196, 139, 201, 164, 27, 22, 160, 77, 69, 144, 245, 9, 182, 255, + 255, 27, 12, 144, 133, 255, 241, 105, 29, 252, 255, 159, 191, 72, 182, 148, 216, 93, 138, 237, 203, 70, 66, 107, + 244, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1389, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1208525264291212409" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15220432574306165526" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff1772d2d694a75ed55264" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fab2f8bb89" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9473303790810335367" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6a7070550a61" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "2c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "54685c44" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17872330806299207989" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e2fd2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11564836557765574416" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7dbb88cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9787367131713026103" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed08" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9329386719600119114" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa6915ec6d38545cbe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfb154" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5488f7f0abe9cf" + } + ] + } + ] + }, + "cborHex": "d8669f1b10c58b532829ac799f809f9f1bfffffffffffffff91bd339d6c8f74da3164bff1772d2d694a75ed552641bfffffffffffffffa45fab2f8bb89ffd8669f1bfffffffffffffff99f1b8377ef9b249c88870f1bfffffffffffffffd466a7070550a61ffffffa0412c9fbf4454685c441bf807462d39bc2935435e2fd21ba07e8d937f117f10447dbb88cb41b141d81b87d3b68cf416b83742ed081b8178a3cad2030d4a49fa6915ec6d38545cbe43dfb154ff475488f7f0abe9cfffffff", + "cborBytes": [ + 216, 102, 159, 27, 16, 197, 139, 83, 40, 41, 172, 121, 159, 128, 159, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 249, 27, 211, 57, 214, 200, 247, 77, 163, 22, 75, 255, 23, 114, 210, 214, 148, 167, 94, 213, 82, 100, 27, 255, + 255, 255, 255, 255, 255, 255, 250, 69, 250, 178, 248, 187, 137, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 249, 159, 27, 131, 119, 239, 155, 36, 156, 136, 135, 15, 27, 255, 255, 255, 255, 255, 255, 255, 253, 70, + 106, 112, 112, 85, 10, 97, 255, 255, 255, 160, 65, 44, 159, 191, 68, 84, 104, 92, 68, 27, 248, 7, 70, 45, 57, 188, + 41, 53, 67, 94, 47, 210, 27, 160, 126, 141, 147, 127, 17, 127, 16, 68, 125, 187, 136, 203, 65, 177, 65, 216, 27, + 135, 211, 182, 140, 244, 22, 184, 55, 66, 237, 8, 27, 129, 120, 163, 202, 210, 3, 13, 74, 73, 250, 105, 21, 236, + 109, 56, 84, 92, 190, 67, 223, 177, 84, 255, 71, 84, 136, 247, 240, 171, 233, 207, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1390, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "451c49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7240098218285596144" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cc7e9ceaf67a9af6a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2383946287732985303" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d90ac819" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "624ed9535d3f210a97" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e67bb17a027c03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12646349916178213910" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5250c5283a52fac1c3563" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d19979ae6c2e" + } + } + ] + } + ] + }, + "cborHex": "d87e9fbf43451c491b6479fef847d9fdf0498cc7e9ceaf67a9af6a1b21157a849bef8dd744d90ac81949624ed9535d3f210a9747e67bb17a027c031baf80dc3edb17ec164bf5250c5283a52fac1c356346d19979ae6c2effff", + "cborBytes": [ + 216, 126, 159, 191, 67, 69, 28, 73, 27, 100, 121, 254, 248, 71, 217, 253, 240, 73, 140, 199, 233, 206, 175, 103, + 169, 175, 106, 27, 33, 21, 122, 132, 155, 239, 141, 215, 68, 217, 10, 200, 25, 73, 98, 78, 217, 83, 93, 63, 33, + 10, 151, 71, 230, 123, 177, 122, 2, 124, 3, 27, 175, 128, 220, 62, 219, 23, 236, 22, 75, 245, 37, 12, 82, 131, + 165, 47, 172, 28, 53, 99, 70, 209, 153, 121, 174, 108, 46, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1391, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4671087095963421862" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2061518957122344550" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6892342945042763547" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17593041647271918699" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8104964122362384056" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6455041329157788029" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff00a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad5a40dc" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13168259542986951501" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "24b574" + }, + { + "_tag": "ByteArray", + "bytearray": "4f42eaafa8742829ab1535" + }, + { + "_tag": "ByteArray", + "bytearray": "fb00d77a4d3d24de0941" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1c4708b5e52ef192cbdc" + }, + { + "_tag": "ByteArray", + "bytearray": "e84c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17603165098407872130" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7772605775997348249" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13702453525067636994" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1854399288704106524" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d20617b43b96190b573e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d318fd939" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f0d8207ca938533" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7424a33453426eaacb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8900c835dcd5f127ed5f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "744064fec257df0d2fd60d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "047388" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17494622949225363371" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dab20482ff0055facc9bdb48" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1614525573556727830" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7392261278027856324" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18092632151826907458" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e8f809759a09942c3a50d9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16880807787342637769" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00675f2b6c" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b40d308f71dcf8ca69fd8669f1b1c9bfc91b102d6669fbf1b5fa685642d718f1b1bf4270a2a904bbc6b1b707a9ded66b20eb81b5994e9e37aea517d43ff00a944ad5a40dcffd8669f1bb6bf0e4931e28b4d9f4324b5744b4f42eaafa8742829ab15354afb00d77a4d3d24de0941ffff9f4a1c4708b5e52ef192cbdc42e84c1bf44b01643527c6821b6bddd7c5b178a999ffffff1bbe28e4e1e0f4a102bf1b19bc2653faf2001c4ad20617b43b96190b573e454d318fd939482f0d8207ca938533497424a33453426eaacb4a8900c835dcd5f127ed5f4b744064fec257df0d2fd60d43047388ff80d8669f1bf2c962e1bff977ab9f4cdab20482ff0055facc9bdb48a01b1667f2747ca1f0169f1b669696776bb9b9c41bfb15f1154d7441424be8f809759a09942c3a50d91bea44ad3e8634aac94500675f2b6cffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 64, 211, 8, 247, 29, 207, 140, 166, 159, 216, 102, 159, 27, 28, 155, 252, 145, 177, 2, 214, + 102, 159, 191, 27, 95, 166, 133, 100, 45, 113, 143, 27, 27, 244, 39, 10, 42, 144, 75, 188, 107, 27, 112, 122, 157, + 237, 102, 178, 14, 184, 27, 89, 148, 233, 227, 122, 234, 81, 125, 67, 255, 0, 169, 68, 173, 90, 64, 220, 255, 216, + 102, 159, 27, 182, 191, 14, 73, 49, 226, 139, 77, 159, 67, 36, 181, 116, 75, 79, 66, 234, 175, 168, 116, 40, 41, + 171, 21, 53, 74, 251, 0, 215, 122, 77, 61, 36, 222, 9, 65, 255, 255, 159, 74, 28, 71, 8, 181, 229, 46, 241, 146, + 203, 220, 66, 232, 76, 27, 244, 75, 1, 100, 53, 39, 198, 130, 27, 107, 221, 215, 197, 177, 120, 169, 153, 255, + 255, 255, 27, 190, 40, 228, 225, 224, 244, 161, 2, 191, 27, 25, 188, 38, 83, 250, 242, 0, 28, 74, 210, 6, 23, 180, + 59, 150, 25, 11, 87, 62, 69, 77, 49, 143, 217, 57, 72, 47, 13, 130, 7, 202, 147, 133, 51, 73, 116, 36, 163, 52, + 83, 66, 110, 170, 203, 74, 137, 0, 200, 53, 220, 213, 241, 39, 237, 95, 75, 116, 64, 100, 254, 194, 87, 223, 13, + 47, 214, 13, 67, 4, 115, 136, 255, 128, 216, 102, 159, 27, 242, 201, 98, 225, 191, 249, 119, 171, 159, 76, 218, + 178, 4, 130, 255, 0, 85, 250, 204, 155, 219, 72, 160, 27, 22, 103, 242, 116, 124, 161, 240, 22, 159, 27, 102, 150, + 150, 119, 107, 185, 185, 196, 27, 251, 21, 241, 21, 77, 116, 65, 66, 75, 232, 248, 9, 117, 154, 9, 148, 44, 58, + 80, 217, 27, 234, 68, 173, 62, 134, 52, 170, 201, 69, 0, 103, 95, 43, 108, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1392, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11331100977407168494" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14917044661767793217" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "563814298753784288" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12348264423855752490" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1178327492172015260" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "82de531109" + }, + { + "_tag": "ByteArray", + "bytearray": "d295da9ffdf85cd8b252" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "81f9017a" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14676369484044547838" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14683987196703476096" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3594729699052690385" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14803508195900769496" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17454434943629864937" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b00a12dec7294a" + }, + { + "_tag": "ByteArray", + "bytearray": "0c3c27bb829eb47dc5c5b0" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "efd006388c" + } + ] + } + ] + }, + "cborHex": "d8669f1b9d40284de06f8fee9fd8669f1bcf03fd16034e6a419fd8669f1b07d3121e148159e09f416f1bab5dd911d084052affff1b105a429c6ffd669c41eaffff9f4582de5311094ad295da9ffdf85cd8b2529f4481f9017affffd8669f1bcbacf04978dbb6fe9f1bcbc8008e69e509801b31e30b9d97951bd19f1bcd70a045963fc4d81bf23a9c1a8a392fe947b00a12dec7294a4b0c3c27bb829eb47dc5c5b0ff45efd006388cffffffff", + "cborBytes": [ + 216, 102, 159, 27, 157, 64, 40, 77, 224, 111, 143, 238, 159, 216, 102, 159, 27, 207, 3, 253, 22, 3, 78, 106, 65, + 159, 216, 102, 159, 27, 7, 211, 18, 30, 20, 129, 89, 224, 159, 65, 111, 27, 171, 93, 217, 17, 208, 132, 5, 42, + 255, 255, 27, 16, 90, 66, 156, 111, 253, 102, 156, 65, 234, 255, 255, 159, 69, 130, 222, 83, 17, 9, 74, 210, 149, + 218, 159, 253, 248, 92, 216, 178, 82, 159, 68, 129, 249, 1, 122, 255, 255, 216, 102, 159, 27, 203, 172, 240, 73, + 120, 219, 182, 254, 159, 27, 203, 200, 0, 142, 105, 229, 9, 128, 27, 49, 227, 11, 157, 151, 149, 27, 209, 159, 27, + 205, 112, 160, 69, 150, 63, 196, 216, 27, 242, 58, 156, 26, 138, 57, 47, 233, 71, 176, 10, 18, 222, 199, 41, 74, + 75, 12, 60, 39, 187, 130, 158, 180, 125, 197, 197, 176, 255, 69, 239, 208, 6, 56, 140, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1393, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11301216939284560883" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de0006a3ff05f7" + } + ] + }, + "cborHex": "d8669f1b9cd5fcee0baefbf39f47de0006a3ff05f7ffff", + "cborBytes": [ + 216, 102, 159, 27, 156, 213, 252, 238, 11, 174, 251, 243, 159, 71, 222, 0, 6, 163, 255, 5, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1394, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13432728120420538532" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1151147290988198129" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15968136674817781680" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2613e5ea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16399215089593223786" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16741349052560257786" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c90727b5183c8c8c6db2ca8e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2046542fe07fe629ffa5" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "81826acbdae3e0d5d4" + } + ] + }, + "cborHex": "d9050c9fbf1bba6aa30e4e1118a41b0ff9b25cb38138f11bdd9a37b3f366afb0442613e5ea1be395b73cba6e0a6a1be85538438aad32fa4cc90727b5183c8c8c6db2ca8e4a2046542fe07fe629ffa5ff4981826acbdae3e0d5d4ff", + "cborBytes": [ + 217, 5, 12, 159, 191, 27, 186, 106, 163, 14, 78, 17, 24, 164, 27, 15, 249, 178, 92, 179, 129, 56, 241, 27, 221, + 154, 55, 179, 243, 102, 175, 176, 68, 38, 19, 229, 234, 27, 227, 149, 183, 60, 186, 110, 10, 106, 27, 232, 85, 56, + 67, 138, 173, 50, 250, 76, 201, 7, 39, 181, 24, 60, 140, 140, 109, 178, 202, 142, 74, 32, 70, 84, 47, 224, 127, + 230, 41, 255, 165, 255, 73, 129, 130, 106, 203, 218, 227, 224, 213, 212, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1395, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12000141461358611911" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6162004186257932086" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8030dcb2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4d5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9dc9b7a5db7a017117158dc8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8969309581310313749" + } + }, + { + "_tag": "ByteArray", + "bytearray": "acee" + }, + { + "_tag": "ByteArray", + "bytearray": "e875a078f48a1cac48" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9fac" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4124178987059529848" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39fbf1ba689111462b78dc71b5583d628e25fbf36448030dcb242e4d54c9dc9b7a5db7a017117158dc84185ff0bd8669f1bfffffffffffffffd9f9f1b7c79638af282451542acee49e875a078f48a1cac48ff429facffff1b393c06f019d04878ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 191, 27, 166, 137, 17, 20, 98, 183, 141, 199, 27, + 85, 131, 214, 40, 226, 95, 191, 54, 68, 128, 48, 220, 178, 66, 228, 213, 76, 157, 201, 183, 165, 219, 122, 1, 113, + 23, 21, 141, 200, 65, 133, 255, 11, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 159, 27, 124, + 121, 99, 138, 242, 130, 69, 21, 66, 172, 238, 73, 232, 117, 160, 120, 244, 138, 28, 172, 72, 255, 66, 159, 172, + 255, 255, 27, 57, 60, 6, 240, 25, 208, 72, 120, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1396, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15172400400946358958" + }, + "fields": [] + }, + "cborHex": "d8669f1bd28f31c72066eaae80ff", + "cborBytes": [216, 102, 159, 27, 210, 143, 49, 199, 32, 102, 234, 174, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1397, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4038056126010859510" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b380a0ea6edf79ff69fa0ffff", + "cborBytes": [216, 102, 159, 27, 56, 10, 14, 166, 237, 247, 159, 246, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1398, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12717054613768736567" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "688304460089682711" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8aed65cb9831" + } + ] + }, + "cborHex": "d8669f1bb07c0dcb1aed8f379f1b098d594278f66b1780468aed65cb9831ffff", + "cborBytes": [ + 216, 102, 159, 27, 176, 124, 13, 203, 26, 237, 143, 55, 159, 27, 9, 141, 89, 66, 120, 246, 107, 23, 128, 70, 138, + 237, 101, 203, 152, 49, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1399, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3234894380485272690" + }, + "fields": [] + }, + "cborHex": "d8669f1b2ce4a74cc2bb647280ff", + "cborBytes": [216, 102, 159, 27, 44, 228, 167, 76, 194, 187, 100, 114, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1400, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11622280159187656309" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1ba14aa23a30735e759fa080ffff", + "cborBytes": [216, 102, 159, 27, 161, 74, 162, 58, 48, 115, 94, 117, 159, 160, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1401, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14919370974258345470" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8db392750b7b54b47859d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "688621749860309183" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16496686177797308733" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4338ba160b8a39c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4f57d5213e4652e3a3e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9098035237447388075" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5230969374847140196" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd4e5468c2d6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13157526491006308078" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2091316071735348716" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13227824560419268617" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b603bdd1e5e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13264069982710480706" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13626686503794727081" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14175989380132040800" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff334c" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d9050c9fbf1bcf0c40dad8f135fe4be8db392750b7b54b47859dff1b098e79d5410818bfbf1be4f000aceeb4813d484338ba160b8a39c94aa4f57d5213e4652e3a3e1b7e42b6d85209cbabffbf1b489822ee7ab6016446fd4e5468c2d61bb698eca1cb390eee1b1d05d8e310d9cdec1bb792ac5a8afa6809469b603bdd1e5e1bb813715f8b613f421bbd1bb72d8c4b58a91bc4bb3b3bce7af06043ff334cff80ff", + "cborBytes": [ + 217, 5, 12, 159, 191, 27, 207, 12, 64, 218, 216, 241, 53, 254, 75, 232, 219, 57, 39, 80, 183, 181, 75, 71, 133, + 157, 255, 27, 9, 142, 121, 213, 65, 8, 24, 191, 191, 27, 228, 240, 0, 172, 238, 180, 129, 61, 72, 67, 56, 186, 22, + 11, 138, 57, 201, 74, 164, 245, 125, 82, 19, 228, 101, 46, 58, 62, 27, 126, 66, 182, 216, 82, 9, 203, 171, 255, + 191, 27, 72, 152, 34, 238, 122, 182, 1, 100, 70, 253, 78, 84, 104, 194, 214, 27, 182, 152, 236, 161, 203, 57, 14, + 238, 27, 29, 5, 216, 227, 16, 217, 205, 236, 27, 183, 146, 172, 90, 138, 250, 104, 9, 70, 155, 96, 59, 221, 30, + 94, 27, 184, 19, 113, 95, 139, 97, 63, 66, 27, 189, 27, 183, 45, 140, 75, 88, 169, 27, 196, 187, 59, 59, 206, 122, + 240, 96, 67, 255, 51, 76, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1402, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "34b298d1cee9c01993" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18153700919949695971" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "882ef81a08" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fa06ce020553" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "888228387338806254" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4467218961082080595" + } + }, + { + "_tag": "ByteArray", + "bytearray": "890a866652fda086755d33" + }, + { + "_tag": "ByteArray", + "bytearray": "8c" + }, + { + "_tag": "ByteArray", + "bytearray": "98" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d905039f4934b298d1cee9c019939f1bfbeee6cde4489be39f45882ef81a08ff46fa06ce020553d8669f1b0c539f0322bf63ee9f41f61b3dfebffa0d2fdd534b890a866652fda086755d33418c4198ffff80ffff", + "cborBytes": [ + 217, 5, 3, 159, 73, 52, 178, 152, 209, 206, 233, 192, 25, 147, 159, 27, 251, 238, 230, 205, 228, 72, 155, 227, + 159, 69, 136, 46, 248, 26, 8, 255, 70, 250, 6, 206, 2, 5, 83, 216, 102, 159, 27, 12, 83, 159, 3, 34, 191, 99, 238, + 159, 65, 246, 27, 61, 254, 191, 250, 13, 47, 221, 83, 75, 137, 10, 134, 102, 82, 253, 160, 134, 117, 93, 51, 65, + 140, 65, 152, 255, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1403, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6273966478619609355" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2091514411677529188" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1983119502358061822" + } + }, + { + "_tag": "ByteArray", + "bytearray": "246b658c32e1" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b57119b457ad4890b9fd8669f1b1d068d46aea6346480ff1b1b8574ae2d33a2fe46246b658c32e180ffff", + "cborBytes": [ + 216, 102, 159, 27, 87, 17, 155, 69, 122, 212, 137, 11, 159, 216, 102, 159, 27, 29, 6, 141, 70, 174, 166, 52, 100, + 128, 255, 27, 27, 133, 116, 174, 45, 51, 162, 254, 70, 36, 107, 101, 140, 50, 225, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1404, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1285523614588938835" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fe1c" + } + ] + }, + "cborHex": "d8669f1b11d718ea9df32a539f42fe1cffff", + "cborBytes": [216, 102, 159, 27, 17, 215, 24, 234, 157, 243, 42, 83, 159, 66, 254, 28, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1405, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1952073568701089104" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "3868b64f750aca80" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1612250605162330301" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1916db59" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9165042506135537499" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4035ac9f567ae55056377d7c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "956361c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1ee805347949fc22c82" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ff1278bad2394b99a34243e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c14bcdd7b4672a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4c0fc2feb8f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "505167259378804177" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10614833359998500690" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3416990992862389640" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d9050d9fd8669f1b1b17289175db855080ff483868b64f750aca80d8669f1b165fdd62219bf8bd9fbf441916db591b7f30c599d190875b4c4035ac9f567ae55056377d7c4252c144956361c54aa1ee805347949fc22c824c9ff1278bad2394b99a34243e47c14bcdd7b4672a46e4c0fc2feb8f1b0702b6f2276e65d1ffd8669f1b934f76b37cad3f5280ff9f1b2f6b97343a45a588ffffff80ff", + "cborBytes": [ + 217, 5, 13, 159, 216, 102, 159, 27, 27, 23, 40, 145, 117, 219, 133, 80, 128, 255, 72, 56, 104, 182, 79, 117, 10, + 202, 128, 216, 102, 159, 27, 22, 95, 221, 98, 33, 155, 248, 189, 159, 191, 68, 25, 22, 219, 89, 27, 127, 48, 197, + 153, 209, 144, 135, 91, 76, 64, 53, 172, 159, 86, 122, 229, 80, 86, 55, 125, 124, 66, 82, 193, 68, 149, 99, 97, + 197, 74, 161, 238, 128, 83, 71, 148, 159, 194, 44, 130, 76, 159, 241, 39, 139, 173, 35, 148, 185, 154, 52, 36, 62, + 71, 193, 75, 205, 215, 180, 103, 42, 70, 228, 192, 252, 47, 235, 143, 27, 7, 2, 182, 242, 39, 110, 101, 209, 255, + 216, 102, 159, 27, 147, 79, 118, 179, 124, 173, 63, 82, 128, 255, 159, 27, 47, 107, 151, 52, 58, 69, 165, 136, + 255, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1406, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3462176317579003903" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "925394b7" + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f9f1b300c1f04771107ffa044925394b7ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 159, 27, 48, 12, 31, 4, 119, 17, 7, 255, 160, 68, + 146, 83, 148, 183, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1407, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16857124126838081962" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11709967305461773589" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2022741987969521505" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "38842233734427938" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9c998c7082d6b08bf88e8c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f555e3451b5b201087" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13876811204351707624" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15501659670153667385" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1be9f089149ad9c9aa9fd87a9fa0d8669f1ba2822938e57cb5159f1b1c12391f0130d7611b0089fece4805f522ffff4b9c998c7082d6b08bf88e8cbf49f555e3451b5b2010871bc0945644928b49e8ff41c2ff9f809f1bd720f556b4822339ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 233, 240, 137, 20, 154, 217, 201, 170, 159, 216, 122, 159, 160, 216, 102, 159, 27, 162, 130, + 41, 56, 229, 124, 181, 21, 159, 27, 28, 18, 57, 31, 1, 48, 215, 97, 27, 0, 137, 254, 206, 72, 5, 245, 34, 255, + 255, 75, 156, 153, 140, 112, 130, 214, 176, 139, 248, 142, 140, 191, 73, 245, 85, 227, 69, 27, 91, 32, 16, 135, + 27, 192, 148, 86, 68, 146, 139, 73, 232, 255, 65, 194, 255, 159, 128, 159, 27, 215, 32, 245, 86, 180, 130, 35, 57, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1408, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16621962350141297418" + } + } + ] + }, + "cborHex": "d9050a9f041be6ad12b0c616d30aff", + "cborBytes": [217, 5, 10, 159, 4, 27, 230, 173, 18, 176, 198, 22, 211, 10, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1409, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04fc0203" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6420767038965637835" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2914608853196719828" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16176320140110553551" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e52fc0be444c87" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5569408205652346103" + } + }, + { + "_tag": "ByteArray", + "bytearray": "79cc8564ba59" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13661419343551584702" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + ] + }, + "cborHex": "d905009f4404fc02031b591b259a6f1562cbd8669f1b2872c54f49ffc6d49fd8669f1be07dd5762c4961cf9f47e52fc0be444c871b4d4a83414b0dc4f74679cc8564ba591bbd971c82fc0ad9beffffffff1bffffffffffffffebff", + "cborBytes": [ + 217, 5, 0, 159, 68, 4, 252, 2, 3, 27, 89, 27, 37, 154, 111, 21, 98, 203, 216, 102, 159, 27, 40, 114, 197, 79, 73, + 255, 198, 212, 159, 216, 102, 159, 27, 224, 125, 213, 118, 44, 73, 97, 207, 159, 71, 229, 47, 192, 190, 68, 76, + 135, 27, 77, 74, 131, 65, 75, 13, 196, 247, 70, 121, 204, 133, 100, 186, 89, 27, 189, 151, 28, 130, 252, 10, 217, + 190, 255, 255, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1410, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1723362587440181535" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8640421637460108546" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15338582046803078351" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16256855166020224596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16153519078599410946" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b995130dfcc6b1bc41" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2849123469810130844" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "44f2d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15778225001092746339" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12706800396841277510" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3429905911052949425" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5082545007350909395" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5067767038981595227" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11866549352122747508" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "797176" + }, + { + "_tag": "ByteArray", + "bytearray": "3362e4d56f60fd81dd3ce4bb" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7324490672993651480" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17444998734386309099" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f9fbf1b17ea9d247b91f11f1b77e8f1b34a68a5021bd4dd971ab1e1accf1be19bf3a4179c06541be02cd4045869c50249b995130dfcc6b1bc41ffd8669f1b278a1eb35342df9c9f4344f2d61bdaf7840ab8520c631bb0579fa32d8458461b2f997940f152d7b1ffff9f1b4688d3c1761609d31b4654534592ee605b1ba4ae73c39aeb0a74ff437971764c3362e4d56f60fd81dd3ce4bbff1b65a5d175d472cb181bf21915ebde3c27ebffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 159, 191, 27, 23, 234, 157, 36, 123, 145, 241, 31, + 27, 119, 232, 241, 179, 74, 104, 165, 2, 27, 212, 221, 151, 26, 177, 225, 172, 207, 27, 225, 155, 243, 164, 23, + 156, 6, 84, 27, 224, 44, 212, 4, 88, 105, 197, 2, 73, 185, 149, 19, 13, 252, 198, 177, 188, 65, 255, 216, 102, + 159, 27, 39, 138, 30, 179, 83, 66, 223, 156, 159, 67, 68, 242, 214, 27, 218, 247, 132, 10, 184, 82, 12, 99, 27, + 176, 87, 159, 163, 45, 132, 88, 70, 27, 47, 153, 121, 64, 241, 82, 215, 177, 255, 255, 159, 27, 70, 136, 211, 193, + 118, 22, 9, 211, 27, 70, 84, 83, 69, 146, 238, 96, 91, 27, 164, 174, 115, 195, 154, 235, 10, 116, 255, 67, 121, + 113, 118, 76, 51, 98, 228, 213, 111, 96, 253, 129, 221, 60, 228, 187, 255, 27, 101, 165, 209, 117, 212, 114, 203, + 24, 27, 242, 25, 21, 235, 222, 60, 39, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1411, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7265269129845869037" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2798304333467883100" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16863719293887755716" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4995896538799029571" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18431464914274341505" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16435612654429084692" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14756643438038331235" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d9791bde0ff1d86e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3448569864438762548" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15382570380977723535" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "342f" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4047153fe661c6ae7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d246621d2d7fb25fb3e8e71" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85608922ac9d1d4af268e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "664c4f8e45989ac76a60163e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "528721b8dd01d515e3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86deef8c9e1fb74fe15a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2099713705862853385" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3f6dcb5a90154cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12178887009107640158" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbfd8b8ea2f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4583ff7bde2f3d8" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b64d36bc7d21309ed9fd8669f1b26d592f719ca165c9f1bea07f7599814b5c4bf1b4554fd6ec1b83d431bffc9b7af7965d2811be41706a12d291c141bccca2105d95faf63491d9791bde0ff1d86e61b2fdbc80538fd4c34ffbf1bd579de42da9f588f42342fff80bf413e49f4047153fe661c6ae74c5d246621d2d7fb25fb3e8e714b85608922ac9d1d4af268e54c664c4f8e45989ac76a60163e49528721b8dd01d515e34a86deef8c9e1fb74fe15a1b1d23ae7d9ff9730948c3f6dcb5a90154cf1ba9041935517aff5e46cbfd8b8ea2f848e4583ff7bde2f3d8ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 100, 211, 107, 199, 210, 19, 9, 237, 159, 216, 102, 159, 27, 38, 213, 146, 247, 25, 202, 22, + 92, 159, 27, 234, 7, 247, 89, 152, 20, 181, 196, 191, 27, 69, 84, 253, 110, 193, 184, 61, 67, 27, 255, 201, 183, + 175, 121, 101, 210, 129, 27, 228, 23, 6, 161, 45, 41, 28, 20, 27, 204, 202, 33, 5, 217, 95, 175, 99, 73, 29, 151, + 145, 189, 224, 255, 29, 134, 230, 27, 47, 219, 200, 5, 56, 253, 76, 52, 255, 191, 27, 213, 121, 222, 66, 218, 159, + 88, 143, 66, 52, 47, 255, 128, 191, 65, 62, 73, 244, 4, 113, 83, 254, 102, 28, 106, 231, 76, 93, 36, 102, 33, 210, + 215, 251, 37, 251, 62, 142, 113, 75, 133, 96, 137, 34, 172, 157, 29, 74, 242, 104, 229, 76, 102, 76, 79, 142, 69, + 152, 154, 199, 106, 96, 22, 62, 73, 82, 135, 33, 184, 221, 1, 213, 21, 227, 74, 134, 222, 239, 140, 158, 31, 183, + 79, 225, 90, 27, 29, 35, 174, 125, 159, 249, 115, 9, 72, 195, 246, 220, 181, 169, 1, 84, 207, 27, 169, 4, 25, 53, + 81, 122, 255, 94, 70, 203, 253, 139, 142, 162, 248, 72, 228, 88, 63, 247, 189, 226, 243, 216, 255, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1412, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16219354337859186704" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5a28" + }, + { + "_tag": "ByteArray", + "bytearray": "f836114c60aa63cd9804" + } + ] + }, + "cborHex": "d8669f1be116b8d62249b0109f80425a284af836114c60aa63cd9804ffff", + "cborBytes": [ + 216, 102, 159, 27, 225, 22, 184, 214, 34, 73, 176, 16, 159, 128, 66, 90, 40, 74, 248, 54, 17, 76, 96, 170, 99, + 205, 152, 4, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1413, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7854450767216066177" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0160aba1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9632295463260219059" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10748100855869448811" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14217873488948285180" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13033376504345785199" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10752610073738491717" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1aff02b6ab60448071" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10679302121035906654" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8021" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09b1cab61a51" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cebfc9380459807" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11094507891852872974" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a580ef3d0ba722" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11878099021989881574" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6d009d5badb53e819fbf01440160aba11b85acc9b0933b66b30b1b9528ecc8542ba26b1bc550089bd234cefcffbf1bb4dfdae07d73f36f1b9538f1e46d783745ffbf491aff02b6ab604480711b943480b29d6bbe5e4280214609b1cab61a51488cebfc93804598071b99f79c257ba88d0e47a580ef3d0ba7221ba4d77c20ac9f26e6ffffff", + "cborBytes": [ + 216, 102, 159, 27, 109, 0, 157, 91, 173, 181, 62, 129, 159, 191, 1, 68, 1, 96, 171, 161, 27, 133, 172, 201, 176, + 147, 59, 102, 179, 11, 27, 149, 40, 236, 200, 84, 43, 162, 107, 27, 197, 80, 8, 155, 210, 52, 206, 252, 255, 191, + 27, 180, 223, 218, 224, 125, 115, 243, 111, 27, 149, 56, 241, 228, 109, 120, 55, 69, 255, 191, 73, 26, 255, 2, + 182, 171, 96, 68, 128, 113, 27, 148, 52, 128, 178, 157, 107, 190, 94, 66, 128, 33, 70, 9, 177, 202, 182, 26, 81, + 72, 140, 235, 252, 147, 128, 69, 152, 7, 27, 153, 247, 156, 37, 123, 168, 141, 14, 71, 165, 128, 239, 61, 11, 167, + 34, 27, 164, 215, 124, 32, 172, 159, 38, 230, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1414, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8127987271648314299" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7843392f4f3b555485" + }, + { + "_tag": "ByteArray", + "bytearray": "0c4a0e53f6c798c1550d7e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17978674524953009633" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16148765240563518746" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44815ddf64cb" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "919854666439416507" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905069f9f9f1b70cc695c117e83bb497843392f4f3b5554854b0c4a0e53f6c798c1550d7e1bf9811539b0305de1ffbf1be01bf06d2cf6cd1a4644815ddf64cbffffd8669f1b0cc3faf20e1b5abb9fd8669f1bfffffffffffffffe9f09ffffffffff", + "cborBytes": [ + 217, 5, 6, 159, 159, 159, 27, 112, 204, 105, 92, 17, 126, 131, 187, 73, 120, 67, 57, 47, 79, 59, 85, 84, 133, 75, + 12, 74, 14, 83, 246, 199, 152, 193, 85, 13, 126, 27, 249, 129, 21, 57, 176, 48, 93, 225, 255, 191, 27, 224, 27, + 240, 109, 44, 246, 205, 26, 70, 68, 129, 93, 223, 100, 203, 255, 255, 216, 102, 159, 27, 12, 195, 250, 242, 14, + 27, 90, 187, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 9, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1415, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3582371820642194723" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17184323909500589353" + } + } + ] + }, + "cborHex": "d8669f1b31b72430cebf55239f1bee7afb8c9b08d529ffff", + "cborBytes": [ + 216, 102, 159, 27, 49, 183, 36, 48, 206, 191, 85, 35, 159, 27, 238, 122, 251, 140, 155, 8, 213, 41, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1416, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13177037438672919876" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11270063907577720195" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "792042488793946077" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "938620162627706459" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "318e50717bd712a1f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3167142185955129973" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11346753702372623090" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78bf4db75bd5f0b4cf3d29" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f688eb35cf4b9d3152cf7a2" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10187408974266851170" + } + } + ] + }, + "cborHex": "d905069f1bb6de3dbc4c1f5d44d8669f1b9c674f699f1eed839fbf1b0afde672779457dd1b0d06a6109c719e5bffbf49318e50717bd712a1f71b2bf3f309b3027a754256c61b9d77c45fe7c4c2f24b78bf4db75bd5f0b4cf3d294c9f688eb35cf4b9d3152cf7a2ffffff801b8d60f27ca4cd5f62ff", + "cborBytes": [ + 217, 5, 6, 159, 27, 182, 222, 61, 188, 76, 31, 93, 68, 216, 102, 159, 27, 156, 103, 79, 105, 159, 30, 237, 131, + 159, 191, 27, 10, 253, 230, 114, 119, 148, 87, 221, 27, 13, 6, 166, 16, 156, 113, 158, 91, 255, 191, 73, 49, 142, + 80, 113, 123, 215, 18, 161, 247, 27, 43, 243, 243, 9, 179, 2, 122, 117, 66, 86, 198, 27, 157, 119, 196, 95, 231, + 196, 194, 242, 75, 120, 191, 77, 183, 91, 213, 240, 180, 207, 61, 41, 76, 159, 104, 142, 179, 92, 244, 185, 211, + 21, 44, 247, 162, 255, 255, 255, 128, 27, 141, 96, 242, 124, 164, 205, 95, 98, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1417, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "240003987006018059" + }, + "fields": [] + }, + "cborHex": "d8669f1b0354aa5ac62bd20b80ff", + "cborBytes": [216, 102, 159, 27, 3, 84, 170, 90, 198, 43, 210, 11, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1418, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "009d3fc8d605d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16030463420673100723" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c29478d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e0174" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "23ca487e8799dac39f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15327529507442153149" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82b5d4ea0b3b1f7e0fe7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2343600871189574519" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94e9ea6a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae6176" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bbeae27009aa715ee651713a" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11806268462622752015" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7828900861677678147" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14165261973332157665" + } + }, + { + "_tag": "ByteArray", + "bytearray": "84" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cdf30c9dd2c6" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11084561233882846217" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5136766019369122235" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c33c17" + } + ] + }, + "cborHex": "d87f9f80bf47009d3fc8d605d61bde77a58c4e1d0bb3441c29478d436e01744923ca487e8799dac39f1bd4b652e0d76856bd4a82b5d4ea0b3b1f7e0fe71b208624934e8cf3774494e9ea6a43ae617642e0ea4cbbeae27009aa715ee651713affd8669f1ba3d84a9d4d86bd0f9fd8669f1b6ca5d7daba0c2e439f1bc4951eb6c6cfe4e14184ffff46cdf30c9dd2c69f1b99d445b6b4a714091b4749757a96cb39bbff80ffff43c33c17ff", + "cborBytes": [ + 216, 127, 159, 128, 191, 71, 0, 157, 63, 200, 214, 5, 214, 27, 222, 119, 165, 140, 78, 29, 11, 179, 68, 28, 41, + 71, 141, 67, 110, 1, 116, 73, 35, 202, 72, 126, 135, 153, 218, 195, 159, 27, 212, 182, 82, 224, 215, 104, 86, 189, + 74, 130, 181, 212, 234, 11, 59, 31, 126, 15, 231, 27, 32, 134, 36, 147, 78, 140, 243, 119, 68, 148, 233, 234, 106, + 67, 174, 97, 118, 66, 224, 234, 76, 187, 234, 226, 112, 9, 170, 113, 94, 230, 81, 113, 58, 255, 216, 102, 159, 27, + 163, 216, 74, 157, 77, 134, 189, 15, 159, 216, 102, 159, 27, 108, 165, 215, 218, 186, 12, 46, 67, 159, 27, 196, + 149, 30, 182, 198, 207, 228, 225, 65, 132, 255, 255, 70, 205, 243, 12, 157, 210, 198, 159, 27, 153, 212, 69, 182, + 180, 167, 20, 9, 27, 71, 73, 117, 122, 150, 203, 57, 187, 255, 128, 255, 255, 67, 195, 60, 23, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1419, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15427060350642118469" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16347681337573370650" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "283f9958f7879c89623c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "188772200759778377" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "18cb253dbf990bcf7ca396" + }, + { + "_tag": "ByteArray", + "bytearray": "6a49754a2be0994a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10851454841289585991" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10481230075264452634" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11806479432384891577" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4ab28f155343ace93b3c" + } + ] + }, + "cborHex": "d905099fd8669f1bd617eda720895f459fbf1be2dea1901357eb1a4a283f9958f7879c89623cffd8669f1b029ea75101c15c499f4b18cb253dbf990bcf7ca396486a49754a2be0994a1b96981caf474235471b9174cf38b547481a1ba3d90a7d8741cab9ffffffff4a4ab28f155343ace93b3cff", + "cborBytes": [ + 217, 5, 9, 159, 216, 102, 159, 27, 214, 23, 237, 167, 32, 137, 95, 69, 159, 191, 27, 226, 222, 161, 144, 19, 87, + 235, 26, 74, 40, 63, 153, 88, 247, 135, 156, 137, 98, 60, 255, 216, 102, 159, 27, 2, 158, 167, 81, 1, 193, 92, 73, + 159, 75, 24, 203, 37, 61, 191, 153, 11, 207, 124, 163, 150, 72, 106, 73, 117, 74, 43, 224, 153, 74, 27, 150, 152, + 28, 175, 71, 66, 53, 71, 27, 145, 116, 207, 56, 181, 71, 72, 26, 27, 163, 217, 10, 125, 135, 65, 202, 185, 255, + 255, 255, 255, 74, 74, 178, 143, 21, 83, 67, 172, 233, 59, 60, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1420, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7999720248105826834" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11110818509873269095" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea73" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "164adeab3b09fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15414444114610201087" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20acc95264515ce2f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13586339551988506578" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5839cc62e614405ae579cf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6215844deaa3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d8c60028c4a6a" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6f04b72e6ad8fa129f9f1b9a318e912cd4c96742ea73ffbf47164adeab3b09fe1bd5eb1b40c573a1ff4920acc95264515ce2f61bbc8c5fd6ca1d5fd2412e4b5839cc62e614405ae579cf466215844deaa3472d8c60028c4a6affffff", + "cborBytes": [ + 216, 102, 159, 27, 111, 4, 183, 46, 106, 216, 250, 18, 159, 159, 27, 154, 49, 142, 145, 44, 212, 201, 103, 66, + 234, 115, 255, 191, 71, 22, 74, 222, 171, 59, 9, 254, 27, 213, 235, 27, 64, 197, 115, 161, 255, 73, 32, 172, 201, + 82, 100, 81, 92, 226, 246, 27, 188, 140, 95, 214, 202, 29, 95, 210, 65, 46, 75, 88, 57, 204, 98, 230, 20, 64, 90, + 229, 121, 207, 70, 98, 21, 132, 77, 234, 163, 71, 45, 140, 96, 2, 140, 74, 106, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1421, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4038037081206143016" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5b13be5df547873e1eaf70" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5291289087522289360" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3700539782639994905" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7992440133403314032" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff98e986b909b6db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d92f5f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39db56052d7d" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "823d85e98d8e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2982505853603405695" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fc9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8175411399010041636" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15949710852466165659" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9779344338271349288" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1520698534887538763" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14430004336622368128" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18438361244297508817" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17918474891410061001" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4c5cdade21" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1670714253123161176" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4f" + }, + { + "_tag": "ByteArray", + "bytearray": "5a64f67b054bc6713b7b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13824677349384474120" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ac0c1e91b1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13316579253390497207" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7fe0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9305684206981473312" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7999239724800243078" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e6" + } + ] + } + ] + }, + "cborHex": "d8669f1b3809fd54b725b8289f9f9f4b5b13be5df547873e1eaf70ffbf1b496e6f6401aab6d01b335af553757548191b6eead9f4a014877048ff98e986b909b6db43d92f5f4639db56052d7dff46823d85e98d8ebf1b2963fd45988ddf7f429fc91b7174e55a2aac3f241bdd58c183df70479b1b87b735dccae42a281b151a9b42ae6dc04bff1bc841ac7d9fb8f580ffd8669f1bffe237dc6eaeb7d19fd8669f1bf8ab35fa4340b6c980ffffff454c5cdade21d8669f1b172f91c2ea968c589f414f4a5a64f67b054bc6713b7bd8669f1bbfdb1ecd90734e0880ff45ac0c1e91b1d8669f1bb8cdfe46d5ad55b79f427fe01b81246e7b8d17e4201b6f030225dde97586ffffffff9f41e6ffffff", + "cborBytes": [ + 216, 102, 159, 27, 56, 9, 253, 84, 183, 37, 184, 40, 159, 159, 159, 75, 91, 19, 190, 93, 245, 71, 135, 62, 30, + 175, 112, 255, 191, 27, 73, 110, 111, 100, 1, 170, 182, 208, 27, 51, 90, 245, 83, 117, 117, 72, 25, 27, 110, 234, + 217, 244, 160, 20, 135, 112, 72, 255, 152, 233, 134, 185, 9, 182, 219, 67, 217, 47, 95, 70, 57, 219, 86, 5, 45, + 125, 255, 70, 130, 61, 133, 233, 141, 142, 191, 27, 41, 99, 253, 69, 152, 141, 223, 127, 66, 159, 201, 27, 113, + 116, 229, 90, 42, 172, 63, 36, 27, 221, 88, 193, 131, 223, 112, 71, 155, 27, 135, 183, 53, 220, 202, 228, 42, 40, + 27, 21, 26, 155, 66, 174, 109, 192, 75, 255, 27, 200, 65, 172, 125, 159, 184, 245, 128, 255, 216, 102, 159, 27, + 255, 226, 55, 220, 110, 174, 183, 209, 159, 216, 102, 159, 27, 248, 171, 53, 250, 67, 64, 182, 201, 128, 255, 255, + 255, 69, 76, 92, 218, 222, 33, 216, 102, 159, 27, 23, 47, 145, 194, 234, 150, 140, 88, 159, 65, 79, 74, 90, 100, + 246, 123, 5, 75, 198, 113, 59, 123, 216, 102, 159, 27, 191, 219, 30, 205, 144, 115, 78, 8, 128, 255, 69, 172, 12, + 30, 145, 177, 216, 102, 159, 27, 184, 205, 254, 70, 213, 173, 85, 183, 159, 66, 127, 224, 27, 129, 36, 110, 123, + 141, 23, 228, 32, 27, 111, 3, 2, 37, 221, 233, 117, 134, 255, 255, 255, 255, 159, 65, 230, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1422, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6a449a8295" + } + ] + }, + "cborHex": "d87a9f456a449a8295ff", + "cborBytes": [216, 122, 159, 69, 106, 68, 154, 130, 149, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1423, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7898747847027474200" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a8af40" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7217279464465507753" + } + } + ] + }, + "cborHex": "d8669f1b6d9dfd5148743f189f43a8af401b6428ed6f243025a9ffff", + "cborBytes": [ + 216, 102, 159, 27, 109, 157, 253, 81, 72, 116, 63, 24, 159, 67, 168, 175, 64, 27, 100, 40, 237, 111, 36, 48, 37, + 169, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1424, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4993333604363237362" + }, + "fields": [] + }, + "cborHex": "d8669f1b454be275151777f280ff", + "cborBytes": [216, 102, 159, 27, 69, 75, 226, 117, 21, 23, 119, 242, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1425, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff0656" + } + ] + }, + "cborHex": "d905019f43ff0656ff", + "cborBytes": [217, 5, 1, 159, 67, 255, 6, 86, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1426, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6566466055791380268" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2531894246100292579" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8775464049603380214" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c8734a8418bcee" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11723044501722586896" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e05130226c59060cef7a70d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14697542028579064749" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6013859708959233452" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cff1" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11587534104290225730" + } + }, + { + "_tag": "ByteArray", + "bytearray": "60af6e7a25e17b80262842" + }, + { + "_tag": "ByteArray", + "bytearray": "b3b10634cc6156d41f7d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e7b5e82a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10124773762209366542" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcd4a1e729225230310b84d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10122107419902641526" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8915462907000529" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4191485051293083645" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14554982094185926601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16227102149877299102" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2971aa02be5bf7" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5b20c6164d1b072c9f9f9f1b23231866fba9d3e31b79c8b60f07d203f6ff47c8734a8418bceed8669f1ba2b09edceb455f109f4ce05130226c59060cef7a70d11bcbf8289aa4d44bad1b5375858ae18c95ac42cff1ffffff1ba0cf30dfdcf16e424b60af6e7a25e17b802628424ab3b10634cc6156d41f7d9f44e7b5e82abf413d1b8c826c17e7af420e4cfcd4a1e729225230310b84d91b8c78f311b5a48576ffbf1b001fac90f79476d11b3a2b25725baf27fd1bc9fdaf195c1f8fc941061be1323f6e3169f79e472971aa02be5bf7ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 91, 32, 198, 22, 77, 27, 7, 44, 159, 159, 159, 27, 35, 35, 24, 102, 251, 169, 211, 227, 27, + 121, 200, 182, 15, 7, 210, 3, 246, 255, 71, 200, 115, 74, 132, 24, 188, 238, 216, 102, 159, 27, 162, 176, 158, + 220, 235, 69, 95, 16, 159, 76, 224, 81, 48, 34, 108, 89, 6, 12, 239, 122, 112, 209, 27, 203, 248, 40, 154, 164, + 212, 75, 173, 27, 83, 117, 133, 138, 225, 140, 149, 172, 66, 207, 241, 255, 255, 255, 27, 160, 207, 48, 223, 220, + 241, 110, 66, 75, 96, 175, 110, 122, 37, 225, 123, 128, 38, 40, 66, 74, 179, 177, 6, 52, 204, 97, 86, 212, 31, + 125, 159, 68, 231, 181, 232, 42, 191, 65, 61, 27, 140, 130, 108, 23, 231, 175, 66, 14, 76, 252, 212, 161, 231, 41, + 34, 82, 48, 49, 11, 132, 217, 27, 140, 120, 243, 17, 181, 164, 133, 118, 255, 191, 27, 0, 31, 172, 144, 247, 148, + 118, 209, 27, 58, 43, 37, 114, 91, 175, 39, 253, 27, 201, 253, 175, 25, 92, 31, 143, 201, 65, 6, 27, 225, 50, 63, + 110, 49, 105, 247, 158, 71, 41, 113, 170, 2, 190, 91, 247, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1427, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4393339461224653313" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b8930f51191ae9ff88b6557f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "64935255965812167" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8393280649850137403" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1485345616537865667" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45ddb39cad1c1cef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3244418731535230829" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6372332217787228954" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9670445162628072858" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9cc0b0c1a6d7fdc57281d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10391913933049060827" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55839240" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10927382047307074756" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe4985a3e1dc4b97" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5e1ee3ac53a16ef051c677" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14098375694777117781" + } + } + ] + }, + "cborHex": "d8669f1b3cf846f68c0062019f4cb8930f51191ae9ff88b6557fbf1b00e6b245713dc5c71b747aec48127a2b3b1b149d01f7f26c4dc34845ddb39cad1c1cef1b2d067da58bc7e76d1b586f1263d7fc231a1b863452a3a257459a4bc9cc0b0c1a6d7fdc57281d1b90377ea9d3d25ddb44558392401b97a5dc1386b80cc448fe4985a3e1dc4b97ff4b5e1ee3ac53a16ef051c6771bc3a77dff7d30ec55ffff", + "cborBytes": [ + 216, 102, 159, 27, 60, 248, 70, 246, 140, 0, 98, 1, 159, 76, 184, 147, 15, 81, 25, 26, 233, 255, 136, 182, 85, + 127, 191, 27, 0, 230, 178, 69, 113, 61, 197, 199, 27, 116, 122, 236, 72, 18, 122, 43, 59, 27, 20, 157, 1, 247, + 242, 108, 77, 195, 72, 69, 221, 179, 156, 173, 28, 28, 239, 27, 45, 6, 125, 165, 139, 199, 231, 109, 27, 88, 111, + 18, 99, 215, 252, 35, 26, 27, 134, 52, 82, 163, 162, 87, 69, 154, 75, 201, 204, 11, 12, 26, 109, 127, 220, 87, 40, + 29, 27, 144, 55, 126, 169, 211, 210, 93, 219, 68, 85, 131, 146, 64, 27, 151, 165, 220, 19, 134, 184, 12, 196, 72, + 254, 73, 133, 163, 225, 220, 75, 151, 255, 75, 94, 30, 227, 172, 83, 161, 110, 240, 81, 198, 119, 27, 195, 167, + 125, 255, 125, 48, 236, 85, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1428, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17034639712850382749" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3836636113023902848" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14304210576728335941" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "695394430098683461" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8384699135018412611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dcebd6c445494bf3fe35ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5921906575115604463" + } + }, + { + "_tag": "ByteArray", + "bytearray": "351068" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6009357881130814721" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4845877907018733096" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6272971651763445970" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16270012001083280905" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7822079897219615167" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13235132112344860087" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9954629558559101812" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91e6804af3e8e02c04db7f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13319459617046371074" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f05e8ae44d08c387a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17696569640429884924" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11096592987201603173" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4486191165521842911" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12076178171914777278" + } + } + ] + }, + "cborHex": "d8669f1bec673290c1358f9d9f9f9f1b353e7837a939a4801bc682c3bb8a472645ffd8669f1b09a6898cc0d1364580ffd8669f1b745c6f70734c2a439f4bdcebd6c445494bf3fe35ca1b522ed6a78ad0d1ef43351068ffffbf1b5365872768ff0d011b4340044828c3d6281b570e127b4d74a0d21be1cab1b677e94e091b6c8d9c392e7fc9bf1bb7aca2888fae45b71b8a25f2d77484d3744b91e6804af3e8e02c04db7f1bb8d839f3c2359b02494f05e8ae44d08c387a1bf596d853d8c915fc1b99ff0487933e0665ff1b3e4227189f6cd2dfff1ba7973410a54e72beffff", + "cborBytes": [ + 216, 102, 159, 27, 236, 103, 50, 144, 193, 53, 143, 157, 159, 159, 159, 27, 53, 62, 120, 55, 169, 57, 164, 128, + 27, 198, 130, 195, 187, 138, 71, 38, 69, 255, 216, 102, 159, 27, 9, 166, 137, 140, 192, 209, 54, 69, 128, 255, + 216, 102, 159, 27, 116, 92, 111, 112, 115, 76, 42, 67, 159, 75, 220, 235, 214, 196, 69, 73, 75, 243, 254, 53, 202, + 27, 82, 46, 214, 167, 138, 208, 209, 239, 67, 53, 16, 104, 255, 255, 191, 27, 83, 101, 135, 39, 104, 255, 13, 1, + 27, 67, 64, 4, 72, 40, 195, 214, 40, 27, 87, 14, 18, 123, 77, 116, 160, 210, 27, 225, 202, 177, 182, 119, 233, 78, + 9, 27, 108, 141, 156, 57, 46, 127, 201, 191, 27, 183, 172, 162, 136, 143, 174, 69, 183, 27, 138, 37, 242, 215, + 116, 132, 211, 116, 75, 145, 230, 128, 74, 243, 232, 224, 44, 4, 219, 127, 27, 184, 216, 57, 243, 194, 53, 155, 2, + 73, 79, 5, 232, 174, 68, 208, 140, 56, 122, 27, 245, 150, 216, 83, 216, 201, 21, 252, 27, 153, 255, 4, 135, 147, + 62, 6, 101, 255, 27, 62, 66, 39, 24, 159, 108, 210, 223, 255, 27, 167, 151, 52, 16, 165, 78, 114, 190, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1429, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3899204058780338444" + }, + "fields": [] + }, + "cborHex": "d8669f1b361cc16ebe5d090c80ff", + "cborBytes": [216, 102, 159, 27, 54, 28, 193, 110, 190, 93, 9, 12, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1430, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13653078448207599705" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8730160411673705198" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4549720457687466106" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d905049fd8669f1bbd797a82f3f498599f1b7927c2a3d9fd3aeed8669f1b3f23daa69bca007a80ffffffff", + "cborBytes": [ + 217, 5, 4, 159, 216, 102, 159, 27, 189, 121, 122, 130, 243, 244, 152, 89, 159, 27, 121, 39, 194, 163, 217, 253, + 58, 238, 216, 102, 159, 27, 63, 35, 218, 166, 155, 202, 0, 122, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1431, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14392637636275244997" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2118870545021322629" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18437166405238950845" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6289631055064113331" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "772707bacf" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11132619114197236886" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14124396489946641310" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3616023025217436584" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2faa509c36447432ea64" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "63" + }, + { + "_tag": "ByteArray", + "bytearray": "f83c700c6e" + } + ] + }, + "cborHex": "d905069fbf1bc7bcebacbb1a8fc51b1d67bd88d108c5851bffddf92949088bbd1b5749421ee55ca0b3ff45772707bacfd8669f1b9a7f0219e9733c969fa0d8669f1bc403efc5fa0b339e9f4200ab1b322eb1c86db7fba84a2faa509c36447432ea64ffffffff416345f83c700c6eff", + "cborBytes": [ + 217, 5, 6, 159, 191, 27, 199, 188, 235, 172, 187, 26, 143, 197, 27, 29, 103, 189, 136, 209, 8, 197, 133, 27, 255, + 221, 249, 41, 73, 8, 139, 189, 27, 87, 73, 66, 30, 229, 92, 160, 179, 255, 69, 119, 39, 7, 186, 207, 216, 102, + 159, 27, 154, 127, 2, 25, 233, 115, 60, 150, 159, 160, 216, 102, 159, 27, 196, 3, 239, 197, 250, 11, 51, 158, 159, + 66, 0, 171, 27, 50, 46, 177, 200, 109, 183, 251, 168, 74, 47, 170, 80, 156, 54, 68, 116, 50, 234, 100, 255, 255, + 255, 255, 65, 99, 69, 248, 60, 112, 12, 110, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1432, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13656232780324920486" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17460158056769701552" + } + } + ] + }, + "cborHex": "d87e9f1bbd84af5c214fdca641fd1bf24ef13ea7eec6b0ff", + "cborBytes": [ + 216, 126, 159, 27, 189, 132, 175, 92, 33, 79, 220, 166, 65, 253, 27, 242, 78, 241, 62, 167, 238, 198, 176, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1433, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "835ea4efb28bb80f1d4b90" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f6d2cbcaae717" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b59d928e078c5c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18308753449901254364" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905009f4b835ea4efb28bb80f1d4b90bf470f6d2cbcaae71747b59d928e078c5cff9f9f1bfe15c2423d9266dcffffff", + "cborBytes": [ + 217, 5, 0, 159, 75, 131, 94, 164, 239, 178, 139, 184, 15, 29, 75, 144, 191, 71, 15, 109, 44, 188, 170, 231, 23, + 71, 181, 157, 146, 142, 7, 140, 92, 255, 159, 159, 27, 254, 21, 194, 66, 61, 146, 102, 220, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1434, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9386183543874408534" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b9f82b95036f0e688e1331" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6059594064567141680" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13657083968207122240" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6738216719554825861" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15446352256179041445" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17168395105088122138" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b845b5e8b61a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87246360daf07c46" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2290906836127460023" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b82426c33f94050569f9f4bb9f82b95036f0e688e1331ffbf1b541800b2559705301bbd87b582c0aaef401b5d82f467e4a9ce851bd65c7789e91af4a51bee426462d2552d1a46b845b5e8b61a4887246360daf07c461b1fcaefa134e42ab7ffffff", + "cborBytes": [ + 216, 102, 159, 27, 130, 66, 108, 51, 249, 64, 80, 86, 159, 159, 75, 185, 248, 43, 149, 3, 111, 14, 104, 142, 19, + 49, 255, 191, 27, 84, 24, 0, 178, 85, 151, 5, 48, 27, 189, 135, 181, 130, 192, 170, 239, 64, 27, 93, 130, 244, + 103, 228, 169, 206, 133, 27, 214, 92, 119, 137, 233, 26, 244, 165, 27, 238, 66, 100, 98, 210, 85, 45, 26, 70, 184, + 69, 181, 232, 182, 26, 72, 135, 36, 99, 96, 218, 240, 124, 70, 27, 31, 202, 239, 161, 52, 228, 42, 183, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1435, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8237114974589397605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b900" + } + ] + }, + "cborHex": "d8669f1b72501c6d6273aa659f42b900ffff", + "cborBytes": [216, 102, 159, 27, 114, 80, 28, 109, 98, 115, 170, 101, 159, 66, 185, 0, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1436, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e370516d3e3bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4590ffc65868f0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3592688387934885511" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "54c8f79187" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3944049032802137209" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89fbf475e370516d3e3bd474590ffc65868f041f31b31dbcb0dcf879687ffa04554c8f791871b36bc13b2e8e4f479ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 191, 71, 94, 55, 5, 22, 211, 227, 189, 71, 69, + 144, 255, 198, 88, 104, 240, 65, 243, 27, 49, 219, 203, 13, 207, 135, 150, 135, 255, 160, 69, 84, 200, 247, 145, + 135, 27, 54, 188, 19, 178, 232, 228, 244, 121, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1437, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8147597064220941700" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e0f41056a4d1f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "295742424316577217" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18122755335819773891" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11745697750902176886" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8087696035039872120" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7034617306666099248" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2848851464235436724" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8a01" + }, + { + "_tag": "ByteArray", + "bytearray": "0ecfdfeafa" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10014745463065649422" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fde1444dfeb1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16518834867260858364" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5001551567399936540" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f1b7112145cb1e79d84bf474e0f41056a4d1f1b041ab02b026705c141e81bfb80f5f59eda47c3ff1ba30119df81a0fc76d8669f1b703d44b183e304789f1b619ffb2b5ea5e23080d8669f1b27892750179acab49f428a01450ecfdfeafaffffd8669f1b8afb85f031fba10e9f46fde1444dfeb11be53eb0ca8e6b9ffc1b456914a6b4abe21cffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 27, 113, 18, 20, 92, 177, 231, 157, 132, 191, 71, + 78, 15, 65, 5, 106, 77, 31, 27, 4, 26, 176, 43, 2, 103, 5, 193, 65, 232, 27, 251, 128, 245, 245, 158, 218, 71, + 195, 255, 27, 163, 1, 25, 223, 129, 160, 252, 118, 216, 102, 159, 27, 112, 61, 68, 177, 131, 227, 4, 120, 159, 27, + 97, 159, 251, 43, 94, 165, 226, 48, 128, 216, 102, 159, 27, 39, 137, 39, 80, 23, 154, 202, 180, 159, 66, 138, 1, + 69, 14, 207, 223, 234, 250, 255, 255, 216, 102, 159, 27, 138, 251, 133, 240, 49, 251, 161, 14, 159, 70, 253, 225, + 68, 77, 254, 177, 27, 229, 62, 176, 202, 142, 107, 159, 252, 27, 69, 105, 20, 166, 180, 171, 226, 28, 255, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1438, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4931042901311037141" + }, + "fields": [] + }, + "cborHex": "d8669f1b446e956498db1ed580ff", + "cborBytes": [216, 102, 159, 27, 68, 110, 149, 100, 152, 219, 30, 213, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1439, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7229384187158685295" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17292219733669095149" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9545624810277114217" + } + } + ] + }, + "cborHex": "d8669f1b6453ee9d846b666f9f1beffa4e3acb58a6ed1b8478df30a7b91169ffff", + "cborBytes": [ + 216, 102, 159, 27, 100, 83, 238, 157, 132, 107, 102, 111, 159, 27, 239, 250, 78, 58, 203, 88, 166, 237, 27, 132, + 120, 223, 48, 167, 185, 17, 105, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1440, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16663003992596628066" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1be73ee1d8cda342629fa0a0ffff", + "cborBytes": [216, 102, 159, 27, 231, 62, 225, 216, 205, 163, 66, 98, 159, 160, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1441, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14225129895836145948" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f1bc569d045b51a591cffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 27, 197, 105, 208, 69, 181, 26, 89, 28, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1442, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15063475671319021462" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1111745d007e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2863762800630588367" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3684842930835955468" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16670705732127813895" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6750179727312813221" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3721074682718961644" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14071966474081214213" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6d34b7dee635" + }, + { + "_tag": "ByteArray", + "bytearray": "a4c855" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7dde262f0f33e1156bdf1f13" + }, + { + "_tag": "ByteArray", + "bytearray": "90bdcf43b21b8dfaf9" + }, + { + "_tag": "ByteArray", + "bytearray": "eae9f5485c831a64c4" + }, + { + "_tag": "ByteArray", + "bytearray": "8f584ae61c66b7" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15732709091871016379" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1366312554705785985" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "555467" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12185526680194841533" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16305957557222624234" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10538433236585491543" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0d937f6f1f43" + } + ] + } + ] + }, + "cborHex": "d905099fd8669f1bd10c375037b587969f9f461111745d007e1b27be2118249063cf1b3323311f59961f0c1be75a3e89c68bf1071b5dad74b2b085fca5ff1b33a3e9b57629bfecd8669f1bc349aaf3a2d11f059f466d34b7dee63543a4c855ffff9f4c7dde262f0f33e1156bdf1f134990bdcf43b21b8dfaf949eae9f5485c831a64c4478f584ae61c66b7ffffffd8669f1bda55cf904787c5bb9f1b12f61e078b6514819f435554671ba91baff4360efbbd1be24a660170d9cbeaff9f1b9240093193d92c57ff460d937f6f1f43ffffff", + "cborBytes": [ + 217, 5, 9, 159, 216, 102, 159, 27, 209, 12, 55, 80, 55, 181, 135, 150, 159, 159, 70, 17, 17, 116, 93, 0, 126, 27, + 39, 190, 33, 24, 36, 144, 99, 207, 27, 51, 35, 49, 31, 89, 150, 31, 12, 27, 231, 90, 62, 137, 198, 139, 241, 7, + 27, 93, 173, 116, 178, 176, 133, 252, 165, 255, 27, 51, 163, 233, 181, 118, 41, 191, 236, 216, 102, 159, 27, 195, + 73, 170, 243, 162, 209, 31, 5, 159, 70, 109, 52, 183, 222, 230, 53, 67, 164, 200, 85, 255, 255, 159, 76, 125, 222, + 38, 47, 15, 51, 225, 21, 107, 223, 31, 19, 73, 144, 189, 207, 67, 178, 27, 141, 250, 249, 73, 234, 233, 245, 72, + 92, 131, 26, 100, 196, 71, 143, 88, 74, 230, 28, 102, 183, 255, 255, 255, 216, 102, 159, 27, 218, 85, 207, 144, + 71, 135, 197, 187, 159, 27, 18, 246, 30, 7, 139, 101, 20, 129, 159, 67, 85, 84, 103, 27, 169, 27, 175, 244, 54, + 14, 251, 189, 27, 226, 74, 102, 1, 112, 217, 203, 234, 255, 159, 27, 146, 64, 9, 49, 147, 217, 44, 87, 255, 70, + 13, 147, 127, 111, 31, 67, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1443, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1644475443544203533" + } + } + ] + }, + "cborHex": "d9050c9fa01b16d259b3fe4e210dff", + "cborBytes": [217, 5, 12, 159, 160, 27, 22, 210, 89, 179, 254, 78, 33, 13, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1444, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2476033484964630065" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "14449a5feecf35" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a0b854" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10272300693776998018" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5586074307087510042" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11807928178290528802" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "998485793023058458" + } + } + ] + }, + "cborHex": "d8669f1b225ca356034a0e319f4714449a5feecf35809f43a0b854d8669f1b8e8e8b0e56939e8280ff1b4d85b8fc6ae32a1a1ba3de301df8551222ff1b0ddb5589de69e21affff", + "cborBytes": [ + 216, 102, 159, 27, 34, 92, 163, 86, 3, 74, 14, 49, 159, 71, 20, 68, 154, 95, 238, 207, 53, 128, 159, 67, 160, 184, + 84, 216, 102, 159, 27, 142, 142, 139, 14, 86, 147, 158, 130, 128, 255, 27, 77, 133, 184, 252, 106, 227, 42, 26, + 27, 163, 222, 48, 29, 248, 85, 18, 34, 255, 27, 13, 219, 85, 137, 222, 105, 226, 26, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1445, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4790928653564995979" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9fd8669f1b427ccc3a1bfb698b80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 216, 102, 159, 27, 66, 124, 204, 58, 27, 251, 105, + 139, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1446, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8365912331193289217" + }, + "fields": [] + }, + "cborHex": "d8669f1b7419b0f0d2d60a0180ff", + "cborBytes": [216, 102, 159, 27, 116, 25, 176, 240, 210, 214, 10, 1, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1447, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8646894005808983349" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "95924954889bd5" + }, + { + "_tag": "ByteArray", + "bytearray": "c8726db4c8" + }, + { + "_tag": "ByteArray", + "bytearray": "d0a8d24d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "226186807107859486" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e804" + }, + { + "_tag": "ByteArray", + "bytearray": "44" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3960515752556529976" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e669d762018dfa65cedf" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "61dd50e4cedd0a81f7a4" + }, + { + "_tag": "ByteArray", + "bytearray": "71e4f7f8a072cb7c316d81" + }, + { + "_tag": "ByteArray", + "bytearray": "4ae658f8ddb8" + }, + { + "_tag": "ByteArray", + "bytearray": "2a178cb800d42309" + }, + { + "_tag": "ByteArray", + "bytearray": "09" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9f80809f80d8669f1b77fff048fab2ed359f4795924954889bd545c8726db4c844d0a8d24d1b032393b3e28b341effff42e80441449f1b36f69417de7889384ae669d762018dfa65cedfffff9f9f4a61dd50e4cedd0a81f7a44b71e4f7f8a072cb7c316d81464ae658f8ddb8482a178cb800d423094109ff80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 128, 128, 159, 128, 216, 102, 159, 27, 119, 255, + 240, 72, 250, 178, 237, 53, 159, 71, 149, 146, 73, 84, 136, 155, 213, 69, 200, 114, 109, 180, 200, 68, 208, 168, + 210, 77, 27, 3, 35, 147, 179, 226, 139, 52, 30, 255, 255, 66, 232, 4, 65, 68, 159, 27, 54, 246, 148, 23, 222, 120, + 137, 56, 74, 230, 105, 215, 98, 1, 141, 250, 101, 206, 223, 255, 255, 159, 159, 74, 97, 221, 80, 228, 206, 221, + 10, 129, 247, 164, 75, 113, 228, 247, 248, 160, 114, 203, 124, 49, 109, 129, 70, 74, 230, 88, 248, 221, 184, 72, + 42, 23, 140, 184, 0, 212, 35, 9, 65, 9, 255, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1448, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0dc0214b10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14615656633552177327" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39baab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4605472262093446853" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a74d2e866b543cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea40" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9482d8af80fae75a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a210" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9de87d543" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7bf28147dde565673" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5bd433b1cd0932431" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59fbf450dc0214b101bcad53e4569f588af4339baab1b3fe9ec9f1cfe9ec5485a74d2e866b543cf42ea4049a9482d8af80fae75a942a21045c9de87d543416a49d7bf28147dde56567349d5bd433b1cd0932431ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 191, 69, 13, 192, 33, 75, 16, 27, 202, 213, 62, + 69, 105, 245, 136, 175, 67, 57, 186, 171, 27, 63, 233, 236, 159, 28, 254, 158, 197, 72, 90, 116, 210, 232, 102, + 181, 67, 207, 66, 234, 64, 73, 169, 72, 45, 138, 248, 15, 174, 117, 169, 66, 162, 16, 69, 201, 222, 135, 213, 67, + 65, 106, 73, 215, 191, 40, 20, 125, 222, 86, 86, 115, 73, 213, 189, 67, 59, 28, 208, 147, 36, 49, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1449, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9745452491983439471" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "557630768bdea8eaf8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a892ad2455cdb16e1811" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56ba3eaa0e95c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1077564654711380286" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7a304" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af0bfd" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ad7651b3d4471" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09fc35250420deed" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d9050b9fd8669f1b873ecd68681e466f80ffbf49557630768bdea8eaf84aa892ad2455cdb16e18114756ba3eaa0e95c11b0ef447582296993e43b7a30443af0bfdff9fbf474ad7651b3d44714809fc35250420deedffffa0ff", + "cborBytes": [ + 217, 5, 11, 159, 216, 102, 159, 27, 135, 62, 205, 104, 104, 30, 70, 111, 128, 255, 191, 73, 85, 118, 48, 118, 139, + 222, 168, 234, 248, 74, 168, 146, 173, 36, 85, 205, 177, 110, 24, 17, 71, 86, 186, 62, 170, 14, 149, 193, 27, 14, + 244, 71, 88, 34, 150, 153, 62, 67, 183, 163, 4, 67, 175, 11, 253, 255, 159, 191, 71, 74, 215, 101, 27, 61, 68, + 113, 72, 9, 252, 53, 37, 4, 32, 222, 237, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1450, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2726558293146618927" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5784863255309893108" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15697631227193115139" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2690960671154521483" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14215167765348401472" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8021955938403629086" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2941612120993009421" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10955884210377940499" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7514833269109829875" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc286f84621239d7f2409e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4489798654663133998" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3996711011931454645" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "45ff470741d8ef9a96fbcd03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11198871383546174200" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8a1399" + } + ] + }, + "cborHex": "d8669f1b25d6ae525a664c2f9f1b5047f67b2ef4bdf4d8669f1bd9d9306e77ecc2039fd8669f1b255836791cb6458b80ff1bc5466bc4742cc140ffff9f1b6f53b66c8062381ed8669f1b28d2b4a382c58f0d80ffd8669f1b980b1ea47fe35e139f1b684a0d0aff9430f3ffffbf4bfc286f84621239d7f2409e1b3e4ef816a4390b2effd8669f1b37772b7d6810fcb59f4c45ff470741d8ef9a96fbcd031b9b6a62306d8e9af8ffffff438a1399ffff", + "cborBytes": [ + 216, 102, 159, 27, 37, 214, 174, 82, 90, 102, 76, 47, 159, 27, 80, 71, 246, 123, 46, 244, 189, 244, 216, 102, 159, + 27, 217, 217, 48, 110, 119, 236, 194, 3, 159, 216, 102, 159, 27, 37, 88, 54, 121, 28, 182, 69, 139, 128, 255, 27, + 197, 70, 107, 196, 116, 44, 193, 64, 255, 255, 159, 27, 111, 83, 182, 108, 128, 98, 56, 30, 216, 102, 159, 27, 40, + 210, 180, 163, 130, 197, 143, 13, 128, 255, 216, 102, 159, 27, 152, 11, 30, 164, 127, 227, 94, 19, 159, 27, 104, + 74, 13, 10, 255, 148, 48, 243, 255, 255, 191, 75, 252, 40, 111, 132, 98, 18, 57, 215, 242, 64, 158, 27, 62, 78, + 248, 22, 164, 57, 11, 46, 255, 216, 102, 159, 27, 55, 119, 43, 125, 104, 16, 252, 181, 159, 76, 69, 255, 71, 7, + 65, 216, 239, 154, 150, 251, 205, 3, 27, 155, 106, 98, 48, 109, 142, 154, 248, 255, 255, 255, 67, 138, 19, 153, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1451, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2804310583525262566" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3709411907654596480" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8920419746367915637" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4614696057056529405" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3b7335ddd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4995848087698287264" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f878d230328b65f873bcde" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11966110656052681288" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15521653665735699843" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13302072658847850078" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1b30c1c94" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16755120293406858147" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13890218645191232209" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1bb0b072" + }, + { + "_tag": "ByteArray", + "bytearray": "ae" + }, + { + "_tag": "ByteArray", + "bytearray": "aff8e794d6ba" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12195775138956040723" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b26eae99e2ae444e69f9fbf1b337a7a7a095b37801b7bcbb27f35a3c6751b400ab19d3b400bfd45d3b7335ddd1b4554d15ddb122aa04bf878d230328b65f873bcde1ba6102a3e15095a481bd767fdc590d0ed831bb89a749b170fde5e45a1b30c1c941be886252269745ba31bc0c3f843a7218ad1ff441bb0b07241ae46aff8e794d6ba1ba94018df7603da13ffffff", + "cborBytes": [ + 216, 102, 159, 27, 38, 234, 233, 158, 42, 228, 68, 230, 159, 159, 191, 27, 51, 122, 122, 122, 9, 91, 55, 128, 27, + 123, 203, 178, 127, 53, 163, 198, 117, 27, 64, 10, 177, 157, 59, 64, 11, 253, 69, 211, 183, 51, 93, 221, 27, 69, + 84, 209, 93, 219, 18, 42, 160, 75, 248, 120, 210, 48, 50, 139, 101, 248, 115, 188, 222, 27, 166, 16, 42, 62, 21, + 9, 90, 72, 27, 215, 103, 253, 197, 144, 208, 237, 131, 27, 184, 154, 116, 155, 23, 15, 222, 94, 69, 161, 179, 12, + 28, 148, 27, 232, 134, 37, 34, 105, 116, 91, 163, 27, 192, 195, 248, 67, 167, 33, 138, 209, 255, 68, 27, 176, 176, + 114, 65, 174, 70, 175, 248, 231, 148, 214, 186, 27, 169, 64, 24, 223, 118, 3, 218, 19, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1452, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2459694097495828805" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7514540236917882320" + } + }, + { + "_tag": "ByteArray", + "bytearray": "259ad5c32e72edf38cf0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8746026608360933022" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9432278988924997981" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18360193200677371758" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12154194635860755915" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "657217101797544552" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6a4a3cf20cb16475" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8032980859141435644" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11516314657843776527" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6624567665110478990" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4448943146843307864" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4188243325096876608" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18147791861709763743" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ba" + }, + { + "_tag": "ByteArray", + "bytearray": "4202" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17971310566926495865" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8234925710505109870" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905009fd8669f1b222296bfe95d29459f1b684902881fdebdd04a259ad5c32e72edf38cf09f1b796020dca377c69effffff9fd8669f1b82e62fc41d41515d9f1bfecc827085eabf6e1ba8ac5fa0297045cb1b091ee778d4f45268486a4a3cf20cb16475ffff1b6f7ae187e4a330fc1b9fd22b2a4e670c0fd8669f1b5bef31316572f08e80ffff801b3dbdd2387580ff58d8669f1b3a1fa11d294cda409f9f1bfbd9e88c0eef749f41ba4242021bf966ebbe99e0b0791b7248554d9e63696effffffff", + "cborBytes": [ + 217, 5, 0, 159, 216, 102, 159, 27, 34, 34, 150, 191, 233, 93, 41, 69, 159, 27, 104, 73, 2, 136, 31, 222, 189, 208, + 74, 37, 154, 213, 195, 46, 114, 237, 243, 140, 240, 159, 27, 121, 96, 32, 220, 163, 119, 198, 158, 255, 255, 255, + 159, 216, 102, 159, 27, 130, 230, 47, 196, 29, 65, 81, 93, 159, 27, 254, 204, 130, 112, 133, 234, 191, 110, 27, + 168, 172, 95, 160, 41, 112, 69, 203, 27, 9, 30, 231, 120, 212, 244, 82, 104, 72, 106, 74, 60, 242, 12, 177, 100, + 117, 255, 255, 27, 111, 122, 225, 135, 228, 163, 48, 252, 27, 159, 210, 43, 42, 78, 103, 12, 15, 216, 102, 159, + 27, 91, 239, 49, 49, 101, 114, 240, 142, 128, 255, 255, 128, 27, 61, 189, 210, 56, 117, 128, 255, 88, 216, 102, + 159, 27, 58, 31, 161, 29, 41, 76, 218, 64, 159, 159, 27, 251, 217, 232, 140, 14, 239, 116, 159, 65, 186, 66, 66, + 2, 27, 249, 102, 235, 190, 153, 224, 176, 121, 27, 114, 72, 85, 77, 158, 99, 105, 110, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1453, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7097080366821370893" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "94739b729fc5994275e5a5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3313810362221805272" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01a0666d1f01" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7488113958245321918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "854ce1e52483a264" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "87889a07252c5d8b53f12f11" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11519096627024498118" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "191896345291293781" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14286335927281467573" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b627de4fddec96c0d9f4b94739b729fc5994275e5a5d8669f1b2dfd04f7953d3ed89f4601a0666d1f01ffffbf1b67eb1ff8a6db4cbe48854ce1e52483a264ff9f4c87889a07252c5d8b53f12f1180d8669f1b9fdc0d59fb320dc69f1b02a9c0b596c88455ffff1bc64342d5678340b580ffffff", + "cborBytes": [ + 216, 102, 159, 27, 98, 125, 228, 253, 222, 201, 108, 13, 159, 75, 148, 115, 155, 114, 159, 197, 153, 66, 117, 229, + 165, 216, 102, 159, 27, 45, 253, 4, 247, 149, 61, 62, 216, 159, 70, 1, 160, 102, 109, 31, 1, 255, 255, 191, 27, + 103, 235, 31, 248, 166, 219, 76, 190, 72, 133, 76, 225, 229, 36, 131, 162, 100, 255, 159, 76, 135, 136, 154, 7, + 37, 44, 93, 139, 83, 241, 47, 17, 128, 216, 102, 159, 27, 159, 220, 13, 89, 251, 50, 13, 198, 159, 27, 2, 169, + 192, 181, 150, 200, 132, 85, 255, 255, 27, 198, 67, 66, 213, 103, 131, 64, 181, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1454, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17776117267719470533" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bf6b174791c1b3dc59f80ffff", + "cborBytes": [216, 102, 159, 27, 246, 177, 116, 121, 28, 27, 61, 197, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1455, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1786811391059514416" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9352885966661837239" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6105552600521552269" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7054c2f79f" + }, + { + "_tag": "ByteArray", + "bytearray": "553860230fb06a7019" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1b405f7ca436fd04484a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11632297834591440491" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13191172508075225218" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c9e50d525857030015674" + }, + { + "_tag": "ByteArray", + "bytearray": "8a3e1d0f4a" + }, + { + "_tag": "ByteArray", + "bytearray": "88b302c639958b7490498fd6" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2393031911514981319" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4171098761232898612" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c2a3bcb30f29cf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4314594951334903547" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050c9f1b18cc077e44b954309f9f1b81cc203ba39d61b7ffd8669f1b54bb47bdd78cb18d9f457054c2f79f49553860230fb06a7019ffffff9f4a1b405f7ca436fd04484a9f1ba16e3940005e4e6b1bb71075819ab8f0824b8c9e50d525857030015674458a3e1d0f4a4c88b302c639958b7490498fd6ff9f1b2135c1d83e0643c71b39e2b839525bda34ff9f47c2a3bcb30f29cf1b3be0853fa002befbffffff", + "cborBytes": [ + 217, 5, 12, 159, 27, 24, 204, 7, 126, 68, 185, 84, 48, 159, 159, 27, 129, 204, 32, 59, 163, 157, 97, 183, 255, + 216, 102, 159, 27, 84, 187, 71, 189, 215, 140, 177, 141, 159, 69, 112, 84, 194, 247, 159, 73, 85, 56, 96, 35, 15, + 176, 106, 112, 25, 255, 255, 255, 159, 74, 27, 64, 95, 124, 164, 54, 253, 4, 72, 74, 159, 27, 161, 110, 57, 64, 0, + 94, 78, 107, 27, 183, 16, 117, 129, 154, 184, 240, 130, 75, 140, 158, 80, 213, 37, 133, 112, 48, 1, 86, 116, 69, + 138, 62, 29, 15, 74, 76, 136, 179, 2, 198, 57, 149, 139, 116, 144, 73, 143, 214, 255, 159, 27, 33, 53, 193, 216, + 62, 6, 67, 199, 27, 57, 226, 184, 57, 82, 91, 218, 52, 255, 159, 71, 194, 163, 188, 179, 15, 41, 207, 27, 59, 224, + 133, 63, 160, 2, 190, 251, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1456, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7d857e36c50f623681f9f07d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2939161668743512081" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13982930524166199606" + } + }, + { + "_tag": "ByteArray", + "bytearray": "67c14cccf3b45b1c45" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6984625969210154294" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f168738f2ded135e9a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3c2e0eb98b8e82376a55" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f80a0804c7d857e36c50f623681f9f07d9fa0d8669f1b28c9fff722e6c0119f1bc20d593a1be499364967c14cccf3b45b1c45ffffd8669f1b60ee605017bd5d369f49f168738f2ded135e9affff4a3c2e0eb98b8e82376a55ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 128, 160, 128, 76, 125, 133, 126, 54, 197, 15, 98, + 54, 129, 249, 240, 125, 159, 160, 216, 102, 159, 27, 40, 201, 255, 247, 34, 230, 192, 17, 159, 27, 194, 13, 89, + 58, 27, 228, 153, 54, 73, 103, 193, 76, 204, 243, 180, 91, 28, 69, 255, 255, 216, 102, 159, 27, 96, 238, 96, 80, + 23, 189, 93, 54, 159, 73, 241, 104, 115, 143, 45, 237, 19, 94, 154, 255, 255, 74, 60, 46, 14, 185, 139, 142, 130, + 55, 106, 85, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1457, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5809469995906643525" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a7c142262c5618324" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14848326637577965107" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55873ea5958057" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17726594236814537888" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3047864999614729671" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9fbf1b509f622e6f4e3645496a7c142262c56183241bce0fda6835ce0e334755873ea59580571bf6018389f2d134a01b2a4c3111a161cdc7ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 191, 27, 80, 159, 98, 46, 111, 78, 54, 69, 73, + 106, 124, 20, 34, 98, 197, 97, 131, 36, 27, 206, 15, 218, 104, 53, 206, 14, 51, 71, 85, 135, 62, 165, 149, 128, + 87, 27, 246, 1, 131, 137, 242, 209, 52, 160, 27, 42, 76, 49, 17, 161, 97, 205, 199, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1458, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5244025948470589090" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9132729083616864579" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8703925259840068808" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4801805026190159843" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13737641134159542841" + } + } + ] + }, + "cborHex": "d8669f1b48c685d0eb8536a29fa0d8669f1b7ebdf8b6dadca9439f1b78ca8de890511cc8ffff9f1b42a3703af2bfefe3ff1bbea5e7d38d5fba39ffff", + "cborBytes": [ + 216, 102, 159, 27, 72, 198, 133, 208, 235, 133, 54, 162, 159, 160, 216, 102, 159, 27, 126, 189, 248, 182, 218, + 220, 169, 67, 159, 27, 120, 202, 141, 232, 144, 81, 28, 200, 255, 255, 159, 27, 66, 163, 112, 58, 242, 191, 239, + 227, 255, 27, 190, 165, 231, 211, 141, 95, 186, 57, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1459, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8165208922594177796" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2733374678812234236" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3018259029532826399" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f6613512" + }, + { + "_tag": "ByteArray", + "bytearray": "a7a99a7539deb56ae7a4d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14697337911069257104" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55a1d71a2c" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4e6760821bd18dfa27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7044037041990229147" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f70c1a1791c06ce88" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9017920348678214334" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14495580583477012537" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9615288707308814895" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17735262598427621343" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3a7196076b94" + }, + { + "_tag": "ByteArray", + "bytearray": "cf9b58df75f302c80b" + }, + { + "_tag": "ByteArray", + "bytearray": "9d" + }, + { + "_tag": "ByteArray", + "bytearray": "7b99" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17775755236173047725" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01648e8a0f23" + }, + { + "_tag": "ByteArray", + "bytearray": "6fdc675438e1e08acf" + }, + { + "_tag": "ByteArray", + "bytearray": "6b50" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17315271971900691826" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10121687897350763632" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17193494200004755096" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b04b2e70f87c27" + }, + { + "_tag": "ByteArray", + "bytearray": "9eb7cf8994b3007b1f45c1" + }, + { + "_tag": "ByteArray", + "bytearray": "25aa1958151466185b7b" + }, + { + "_tag": "ByteArray", + "bytearray": "4b33a1" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b7150a641041373049fd8669f1b25eee5c9d0a691fc9fd8669f1b29e302988f6b5b1f9f44f66135124ba7a99a7539deb56ae7a4d51bcbf76ef5d52a2d904555a1d71a2cffffa09f494e6760821bd18dfa271b61c1725e68855c9b496f70c1a1791c06ce881b7d2616c733bb52be1bc92aa5bd63326839ffa0ffff9fd8669f1b85705e22a3f7822f9f1bf6204f5e298cb7df463a7196076b9449cf9b58df75f302c80b419d427b99ffff9f1bf6b02b35126267ad4601648e8a0f23496fdc675438e1e08acf426b501bf04c341e426b1572ff1b8c77758400f674709f1bee9b8fe13f05be9847b04b2e70f87c274b9eb7cf8994b3007b1f45c14a25aa1958151466185b7b434b33a1ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 113, 80, 166, 65, 4, 19, 115, 4, 159, 216, 102, 159, 27, 37, 238, 229, 201, 208, 166, 145, 252, + 159, 216, 102, 159, 27, 41, 227, 2, 152, 143, 107, 91, 31, 159, 68, 246, 97, 53, 18, 75, 167, 169, 154, 117, 57, + 222, 181, 106, 231, 164, 213, 27, 203, 247, 110, 245, 213, 42, 45, 144, 69, 85, 161, 215, 26, 44, 255, 255, 160, + 159, 73, 78, 103, 96, 130, 27, 209, 141, 250, 39, 27, 97, 193, 114, 94, 104, 133, 92, 155, 73, 111, 112, 193, 161, + 121, 28, 6, 206, 136, 27, 125, 38, 22, 199, 51, 187, 82, 190, 27, 201, 42, 165, 189, 99, 50, 104, 57, 255, 160, + 255, 255, 159, 216, 102, 159, 27, 133, 112, 94, 34, 163, 247, 130, 47, 159, 27, 246, 32, 79, 94, 41, 140, 183, + 223, 70, 58, 113, 150, 7, 107, 148, 73, 207, 155, 88, 223, 117, 243, 2, 200, 11, 65, 157, 66, 123, 153, 255, 255, + 159, 27, 246, 176, 43, 53, 18, 98, 103, 173, 70, 1, 100, 142, 138, 15, 35, 73, 111, 220, 103, 84, 56, 225, 224, + 138, 207, 66, 107, 80, 27, 240, 76, 52, 30, 66, 107, 21, 114, 255, 27, 140, 119, 117, 132, 0, 246, 116, 112, 159, + 27, 238, 155, 143, 225, 63, 5, 190, 152, 71, 176, 75, 46, 112, 248, 124, 39, 75, 158, 183, 207, 137, 148, 179, 0, + 123, 31, 69, 193, 74, 37, 170, 25, 88, 21, 20, 102, 24, 91, 123, 67, 75, 51, 161, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1460, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14615008314589684378" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "849690834018488249" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dafe62ea6dcf" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bcad2f0a0e47fa29a9fd87b9fd8669f1b0bcab54fca93cfb99f46dafe62ea6dcfffffff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 202, 210, 240, 160, 228, 127, 162, 154, 159, 216, 123, 159, 216, 102, 159, 27, 11, 202, 181, + 79, 202, 147, 207, 185, 159, 70, 218, 254, 98, 234, 109, 207, 255, 255, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1461, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2672818330652421544" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1745757455653405387" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16965590343615513429" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2859352468035703105" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16653990164482178061" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10985358941752264311" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b94d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13579424269874349905" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "883d31048aaa70b1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14622051945137643616" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8546533084568847025" + } + } + ] + }, + "cborHex": "d8669f1b2517c21c4bb0ada89fbf1b183a2d28103602cb1beb71e287ac0003551b27ae75eb90e791411be71edbd166cf3c0d1b9873d5c12d4e067742b94d1bbc73ce6d342dc75148883d31048aaa70b11bcaebf6c5ed3d20604132ff1b769b628f16d982b1ffff", + "cborBytes": [ + 216, 102, 159, 27, 37, 23, 194, 28, 75, 176, 173, 168, 159, 191, 27, 24, 58, 45, 40, 16, 54, 2, 203, 27, 235, 113, + 226, 135, 172, 0, 3, 85, 27, 39, 174, 117, 235, 144, 231, 145, 65, 27, 231, 30, 219, 209, 102, 207, 60, 13, 27, + 152, 115, 213, 193, 45, 78, 6, 119, 66, 185, 77, 27, 188, 115, 206, 109, 52, 45, 199, 81, 72, 136, 61, 49, 4, 138, + 170, 112, 177, 27, 202, 235, 246, 197, 237, 61, 32, 96, 65, 50, 255, 27, 118, 155, 98, 143, 22, 217, 130, 177, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1462, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9269298989399534407" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "06f9b703" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ce9a9fa0161463091aaa" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d87b9fd8669f1b80a32a51ec0beb4780ff4406f9b703d9050b9f4ace9a9fa0161463091aaa80ffff", + "cborBytes": [ + 216, 123, 159, 216, 102, 159, 27, 128, 163, 42, 81, 236, 11, 235, 71, 128, 255, 68, 6, 249, 183, 3, 217, 5, 11, + 159, 74, 206, 154, 159, 160, 22, 20, 99, 9, 26, 170, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1463, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "46831146577ae3d23bfe" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11094023347868881787" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d02ff9c727a9d4a779f191fb" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9412301874489773750" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0648de" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5168868301972803883" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3662603631652755634" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14055790585302953197" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10894542549191730666" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16075530663400188954" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7039152942363142732" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11002657278187921983" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050a9f4a46831146577ae3d23bfe9f1b99f5e374cb9d537b4cd02ff9c727a9d4a779f191fb9f1b829f36afb3b4ceb6430648deffbf1b47bb8255b5dd912b1b32d42e9901b7d8b21bc31033110a432ced1b973130ba0af3a5eaff9f1bdf17c1f76fde2c1a1b61b0184e59336a4c1b98b14a7ffbc1e23fffffff", + "cborBytes": [ + 217, 5, 10, 159, 74, 70, 131, 17, 70, 87, 122, 227, 210, 59, 254, 159, 27, 153, 245, 227, 116, 203, 157, 83, 123, + 76, 208, 47, 249, 199, 39, 169, 212, 167, 121, 241, 145, 251, 159, 27, 130, 159, 54, 175, 179, 180, 206, 182, 67, + 6, 72, 222, 255, 191, 27, 71, 187, 130, 85, 181, 221, 145, 43, 27, 50, 212, 46, 153, 1, 183, 216, 178, 27, 195, + 16, 51, 17, 10, 67, 44, 237, 27, 151, 49, 48, 186, 10, 243, 165, 234, 255, 159, 27, 223, 23, 193, 247, 111, 222, + 44, 26, 27, 97, 176, 24, 78, 89, 51, 106, 76, 27, 152, 177, 74, 127, 251, 193, 226, 63, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1464, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16293816360522219672" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6809298465277931458" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61c28f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07072604dae9077103048cfc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5631d0fc08" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8149c90123" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0502" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ede2d8e0f478b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74ca5b9000083e04f9" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "eb1b26716c9298880deead9d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3606066978fe031e07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f400" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d29587980632c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "febf07972c0706" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1be21f43a6cc6000989f1b5e7f7ce08080efc2bf41024361c28f4c07072604dae9077103048cfc0d412b01455631d0fc08458149c9012342d9c642050247ede2d8e0f478b64974ca5b9000083e04f9ff4ceb1b26716c9298880deead9dbf414f493606066978fe031e0742f400473d29587980632c47febf07972c07060effffff", + "cborBytes": [ + 216, 102, 159, 27, 226, 31, 67, 166, 204, 96, 0, 152, 159, 27, 94, 127, 124, 224, 128, 128, 239, 194, 191, 65, 2, + 67, 97, 194, 143, 76, 7, 7, 38, 4, 218, 233, 7, 113, 3, 4, 140, 252, 13, 65, 43, 1, 69, 86, 49, 208, 252, 8, 69, + 129, 73, 201, 1, 35, 66, 217, 198, 66, 5, 2, 71, 237, 226, 216, 224, 244, 120, 182, 73, 116, 202, 91, 144, 0, 8, + 62, 4, 249, 255, 76, 235, 27, 38, 113, 108, 146, 152, 136, 13, 238, 173, 157, 191, 65, 79, 73, 54, 6, 6, 105, 120, + 254, 3, 30, 7, 66, 244, 0, 71, 61, 41, 88, 121, 128, 99, 44, 71, 254, 191, 7, 151, 44, 7, 6, 14, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1465, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3964683047221668913" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14768999151311312300" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dbedcf0ba1" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "88023d4f0125066f3e1f63" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "92de1d28f4" + } + ] + }, + "cborHex": "d8669f1b37056239c4a92c319fd87a9fd905089f41011bccf6067a85f4d5ac45dbedcf0ba1ffff804b88023d4f0125066f3e1f639fd9050880ff4592de1d28f4ffff", + "cborBytes": [ + 216, 102, 159, 27, 55, 5, 98, 57, 196, 169, 44, 49, 159, 216, 122, 159, 217, 5, 8, 159, 65, 1, 27, 204, 246, 6, + 122, 133, 244, 213, 172, 69, 219, 237, 207, 11, 161, 255, 255, 128, 75, 136, 2, 61, 79, 1, 37, 6, 111, 62, 31, 99, + 159, 217, 5, 8, 128, 255, 69, 146, 222, 29, 40, 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1466, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2190132940662167210" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15445067031851366714" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7459368854083960345" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15416471804031036570" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15332881729992165787" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b0fc" + }, + { + "_tag": "ByteArray", + "bytearray": "4b26ea0958f1ca4f150d65e1" + }, + { + "_tag": "ByteArray", + "bytearray": "84" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11531612394688924553" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "ByteArray", + "bytearray": "340e0c0405ff397b062dfda5" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1130390286554313213" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "55258816888363706" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2450805754166796959" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d67ac92f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17452307763218024499" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3acffdf6638739571" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905059fd8669f1b1e64ea4e430cd6aa9fa0d8669f1bd657e6a24d98f93a9f1b678500738c497e191bd5f24f6d01186c9affffd8669f1bd4c956b24342899b9f42b0fc4c4b26ea0958f1ca4f150d65e14184ffff1ba008846038eccb89ffff9fa09f034c340e0c0405ff397b062dfda5ffbf1b0faff3f9ff9f31fd1b00c45199e756daba1b220302d93698629f44d67ac92f1bf2330d71c167083349a3acffdf6638739571ffffff", + "cborBytes": [ + 217, 5, 5, 159, 216, 102, 159, 27, 30, 100, 234, 78, 67, 12, 214, 170, 159, 160, 216, 102, 159, 27, 214, 87, 230, + 162, 77, 152, 249, 58, 159, 27, 103, 133, 0, 115, 140, 73, 126, 25, 27, 213, 242, 79, 109, 1, 24, 108, 154, 255, + 255, 216, 102, 159, 27, 212, 201, 86, 178, 67, 66, 137, 155, 159, 66, 176, 252, 76, 75, 38, 234, 9, 88, 241, 202, + 79, 21, 13, 101, 225, 65, 132, 255, 255, 27, 160, 8, 132, 96, 56, 236, 203, 137, 255, 255, 159, 160, 159, 3, 76, + 52, 14, 12, 4, 5, 255, 57, 123, 6, 45, 253, 165, 255, 191, 27, 15, 175, 243, 249, 255, 159, 49, 253, 27, 0, 196, + 81, 153, 231, 86, 218, 186, 27, 34, 3, 2, 217, 54, 152, 98, 159, 68, 214, 122, 201, 47, 27, 242, 51, 13, 113, 193, + 103, 8, 51, 73, 163, 172, 255, 223, 102, 56, 115, 149, 113, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1467, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1482326715671984729" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5528765260143143135" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13260069242395469625" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "89daf84774c2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10449030517229579446" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13558233079163263720" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ef7bc0017d038d07e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2626ba81528ad184743b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ac57ae9fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "556bb38f7e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c9de4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2bc9ade5377f238c917f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11758849334644955177" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a559" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9dcdba80" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dca45fa3bf2caccb6ac3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6564919541074775308" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f77d015aec2f7dd25540e2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "673943817689866047" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "122cbbb6ef" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5242599984691230706" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7095097898737000854" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4825352120611838759" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "809739664106104388" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b03bdfe3937bc038" + } + ] + }, + "cborHex": "d8669f1b1492484b50b33a599fd8669f1b4cba1eb6215a28df9fd8669f1bb8053ab89a10a7399f4689daf84774c21b910269e4e2af6cb61bbc288526a17a1ae8ffffbf490ef7bc0017d038d07e4a2626ba81528ad184743b453ac57ae9fe45556bb38f7e4179436c9de44ba2bc9ade5377f238c917f91ba32fd32b36d9d82942a559449dcdba804adca45fa3bf2caccb6ac31b5b1b478a48c84d0cff4bf77d015aec2f7dd25540e2d8669f1b095a5454dbf99f3f9f45122cbbb6efffff9f1b48c174e8dafd37f21b6276d9f28cd6e196ffffff9fd8669f1b42f71830193f1b2780ff1b0b3cc5ef2f96a644ff48b03bdfe3937bc038ffff", + "cborBytes": [ + 216, 102, 159, 27, 20, 146, 72, 75, 80, 179, 58, 89, 159, 216, 102, 159, 27, 76, 186, 30, 182, 33, 90, 40, 223, + 159, 216, 102, 159, 27, 184, 5, 58, 184, 154, 16, 167, 57, 159, 70, 137, 218, 248, 71, 116, 194, 27, 145, 2, 105, + 228, 226, 175, 108, 182, 27, 188, 40, 133, 38, 161, 122, 26, 232, 255, 255, 191, 73, 14, 247, 188, 0, 23, 208, 56, + 208, 126, 74, 38, 38, 186, 129, 82, 138, 209, 132, 116, 59, 69, 58, 197, 122, 233, 254, 69, 85, 107, 179, 143, + 126, 65, 121, 67, 108, 157, 228, 75, 162, 188, 154, 222, 83, 119, 242, 56, 201, 23, 249, 27, 163, 47, 211, 43, 54, + 217, 216, 41, 66, 165, 89, 68, 157, 205, 186, 128, 74, 220, 164, 95, 163, 191, 44, 172, 203, 106, 195, 27, 91, 27, + 71, 138, 72, 200, 77, 12, 255, 75, 247, 125, 1, 90, 236, 47, 125, 210, 85, 64, 226, 216, 102, 159, 27, 9, 90, 84, + 84, 219, 249, 159, 63, 159, 69, 18, 44, 187, 182, 239, 255, 255, 159, 27, 72, 193, 116, 232, 218, 253, 55, 242, + 27, 98, 118, 217, 242, 140, 214, 225, 150, 255, 255, 255, 159, 216, 102, 159, 27, 66, 247, 24, 48, 25, 63, 27, 39, + 128, 255, 27, 11, 60, 197, 239, 47, 150, 166, 68, 255, 72, 176, 59, 223, 227, 147, 123, 192, 56, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1468, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13b91f3946f60f2966" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2560231693df3575094a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e1256b5490d5ef353" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12215511055242567503" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bcfba9ea5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41fc834cbd10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "201990278158782329" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b58304fe0fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afb8be5ae8ae2cf99235" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cba5a5696df0aa7545fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8e286b0c0947d5a49540a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10234180684815234912" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbe00b75965ef97d45" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7879294374814161453" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4283435902392517264" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "67" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "270026eda2502c35aa3603f4" + } + ] + }, + "cborHex": "d8799fbf4913b91f3946f60f29664a2560231693df3575094a494e1256b5490d5ef3531ba98636958d971f4fffbf451bcfba9ea5410d4641fc834cbd101b02cd9d1679bc8f79467b58304fe0fb4aafb8be5ae8ae2cf992354acba5a5696df0aa7545fa4bf8e286b0c0947d5a49540a41d61b8e071d1c1d93776049dbe00b75965ef97d451b6d58e07cd3881a2dffd8669f1b3b71d2423442c2909f4167ffff4c270026eda2502c35aa3603f4ff", + "cborBytes": [ + 216, 121, 159, 191, 73, 19, 185, 31, 57, 70, 246, 15, 41, 102, 74, 37, 96, 35, 22, 147, 223, 53, 117, 9, 74, 73, + 78, 18, 86, 181, 73, 13, 94, 243, 83, 27, 169, 134, 54, 149, 141, 151, 31, 79, 255, 191, 69, 27, 207, 186, 158, + 165, 65, 13, 70, 65, 252, 131, 76, 189, 16, 27, 2, 205, 157, 22, 121, 188, 143, 121, 70, 123, 88, 48, 79, 224, + 251, 74, 175, 184, 190, 90, 232, 174, 44, 249, 146, 53, 74, 203, 165, 165, 105, 109, 240, 170, 117, 69, 250, 75, + 248, 226, 134, 176, 192, 148, 125, 90, 73, 84, 10, 65, 214, 27, 142, 7, 29, 28, 29, 147, 119, 96, 73, 219, 224, + 11, 117, 150, 94, 249, 125, 69, 27, 109, 88, 224, 124, 211, 136, 26, 45, 255, 216, 102, 159, 27, 59, 113, 210, 66, + 52, 66, 194, 144, 159, 65, 103, 255, 255, 76, 39, 0, 38, 237, 162, 80, 44, 53, 170, 54, 3, 244, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1469, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "901332202621547765" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "26a2d9daf3c5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11851925664264452467" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bcbc3f7a25c3edd87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be02d7b21947ca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a217c2fb3d6fd0a426de1f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11735500063013003861" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0daa12a3f8602ab1ff3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b8e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1b8351a15700afaa63d2c61" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b179f8129184da3f131d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b9616e63e393" + } + ] + }, + "cborHex": "d87b9fbf410f1b0c822cdce1e0b4f54626a2d9daf3c51ba47a7f98f2d17973492bcbc3f7a25c3edd8747be02d7b21947ca4ba217c2fb3d6fd0a426de1f1ba2dcdf214576e2554ad0daa12a3f8602ab1ff3425b8e4cd1b8351a15700afaa63d2c614ab179f8129184da3f131dff9fa0ff46b9616e63e393ff", + "cborBytes": [ + 216, 123, 159, 191, 65, 15, 27, 12, 130, 44, 220, 225, 224, 180, 245, 70, 38, 162, 217, 218, 243, 197, 27, 164, + 122, 127, 152, 242, 209, 121, 115, 73, 43, 203, 195, 247, 162, 92, 62, 221, 135, 71, 190, 2, 215, 178, 25, 71, + 202, 75, 162, 23, 194, 251, 61, 111, 208, 164, 38, 222, 31, 27, 162, 220, 223, 33, 69, 118, 226, 85, 74, 208, 218, + 161, 42, 63, 134, 2, 171, 31, 243, 66, 91, 142, 76, 209, 184, 53, 26, 21, 112, 10, 250, 166, 61, 44, 97, 74, 177, + 121, 248, 18, 145, 132, 218, 63, 19, 29, 255, 159, 160, 255, 70, 185, 97, 110, 99, 227, 147, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1470, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4717653191933829567" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17317526511517231159" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c126d1b691073e18" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0987" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f021c59802a7ca7e6e1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "541504a957" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1a29088d8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e1e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a51c238b7dfc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65c6e8f55f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "634c033d94cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b06c3f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a94ba2fba175cab1de7b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14685972578506245130" + } + } + ] + }, + "cborHex": "d8799f1b4178789536b421bfd8669f1bf054369c2b64e8379f48c126d1b691073e18ffffbf4209874a0f021c59802a7ca7e6e145541504a95745e1a29088d8425e1e46a51c238b7dfc4565c6e8f55f46634c033d94cb43b06c3f4aa94ba2fba175cab1de7bff1bcbcf0e4022fe040aff", + "cborBytes": [ + 216, 121, 159, 27, 65, 120, 120, 149, 54, 180, 33, 191, 216, 102, 159, 27, 240, 84, 54, 156, 43, 100, 232, 55, + 159, 72, 193, 38, 209, 182, 145, 7, 62, 24, 255, 255, 191, 66, 9, 135, 74, 15, 2, 28, 89, 128, 42, 124, 167, 230, + 225, 69, 84, 21, 4, 169, 87, 69, 225, 162, 144, 136, 216, 66, 94, 30, 70, 165, 28, 35, 139, 125, 252, 69, 101, + 198, 232, 245, 95, 70, 99, 76, 3, 61, 148, 203, 67, 176, 108, 63, 74, 169, 75, 162, 251, 161, 117, 202, 177, 222, + 123, 255, 27, 203, 207, 14, 64, 34, 254, 4, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1471, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ccfbbb388133" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "823994219659085409" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10106012018900902847" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7668189373349857082" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6330915461964604705" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17135593028115955768" + } + }, + { + "_tag": "ByteArray", + "bytearray": "563318432dff489134" + }, + { + "_tag": "ByteArray", + "bytearray": "2e13dabe664e9787" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4345739464474611253" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a1519e6a80c" + } + ] + }, + "cborHex": "d9050c9f46ccfbbb3881339f9f1b0b6f6a6087c146611b8c3fc463226aa3bf1b6a6ae19b74f1873aff1b57dbee11ed6da5211bedcddb122083003849563318432dff489134482e13dabe664e9787ff1b3c4f2b04aa67ce35468a1519e6a80cff", + "cborBytes": [ + 217, 5, 12, 159, 70, 204, 251, 187, 56, 129, 51, 159, 159, 27, 11, 111, 106, 96, 135, 193, 70, 97, 27, 140, 63, + 196, 99, 34, 106, 163, 191, 27, 106, 106, 225, 155, 116, 241, 135, 58, 255, 27, 87, 219, 238, 17, 237, 109, 165, + 33, 27, 237, 205, 219, 18, 32, 131, 0, 56, 73, 86, 51, 24, 67, 45, 255, 72, 145, 52, 72, 46, 19, 218, 190, 102, + 78, 151, 135, 255, 27, 60, 79, 43, 4, 170, 103, 206, 53, 70, 138, 21, 25, 230, 168, 12, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1472, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5809241724182315525" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c7cc5020f43a3827dadbcc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28de6a9fa24bf4" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "945614227186583067" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c014b03e46" + } + ] + }, + "cborHex": "d8669f1b509e9291c843c2059f4bc7cc5020f43a3827dadbccbf424e464728de6a9fa24bf4ffa01b0d1f7f212a03061b45c014b03e46ffff", + "cborBytes": [ + 216, 102, 159, 27, 80, 158, 146, 145, 200, 67, 194, 5, 159, 75, 199, 204, 80, 32, 244, 58, 56, 39, 218, 219, 204, + 191, 66, 78, 70, 71, 40, 222, 106, 159, 162, 75, 244, 255, 160, 27, 13, 31, 127, 33, 42, 3, 6, 27, 69, 192, 20, + 176, 62, 70, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1473, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "220697810339145705" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8839d2cfbb09d9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8196361679680595457" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10091321986622224629" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fdaa7989b63e7d4d384a0c" + }, + { + "_tag": "ByteArray", + "bytearray": "e13876b3d58a3ae239" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8275324328326902251" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fbaae211d5" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c802d372777891" + }, + { + "_tag": "ByteArray", + "bytearray": "fd1a89" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1c78e9c8c04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4585fb643e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af85a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8023862287405138973" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1356489932116365087" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8984697808297945587" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12986962477914124641" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9161685365540902457" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf059b44d5fd90402fe3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11948201525966482909" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4df3a446998ae1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14834095094297908608" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8484041644178307555" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "40e3f1231fe70115b832c01c" + } + ] + }, + "cborHex": "d8669f1b0310137d3bf8a7e99f9f478839d2cfbb09d99f1b71bf53857ffc6601413fffd8669f1b8c0b93e176b4f8f59f4bfdaa7989b63e7d4d384a0c49e13876b3d58a3ae2391b72d7dba1cf12b1eb45fbaae211d5ffff47c802d37277789143fd1a89ff9fbf46a1c78e9c8c04454585fb643e43af85a14158ffffbf1b6f5a7c3cf76fc41d1b12d3386801308f1f1b7cb00f0dbdd469f31bb43af590d765f1611b7f24d84c9cf5d6394acf059b44d5fd90402fe31ba5d089fbcc032ddd474df3a446998ae11bcddd4ae4d3fdd5801b75bd5eecccde79e3ff4c40e3f1231fe70115b832c01cffff", + "cborBytes": [ + 216, 102, 159, 27, 3, 16, 19, 125, 59, 248, 167, 233, 159, 159, 71, 136, 57, 210, 207, 187, 9, 217, 159, 27, 113, + 191, 83, 133, 127, 252, 102, 1, 65, 63, 255, 216, 102, 159, 27, 140, 11, 147, 225, 118, 180, 248, 245, 159, 75, + 253, 170, 121, 137, 182, 62, 125, 77, 56, 74, 12, 73, 225, 56, 118, 179, 213, 138, 58, 226, 57, 27, 114, 215, 219, + 161, 207, 18, 177, 235, 69, 251, 170, 226, 17, 213, 255, 255, 71, 200, 2, 211, 114, 119, 120, 145, 67, 253, 26, + 137, 255, 159, 191, 70, 161, 199, 142, 156, 140, 4, 69, 69, 133, 251, 100, 62, 67, 175, 133, 161, 65, 88, 255, + 255, 191, 27, 111, 90, 124, 60, 247, 111, 196, 29, 27, 18, 211, 56, 104, 1, 48, 143, 31, 27, 124, 176, 15, 13, + 189, 212, 105, 243, 27, 180, 58, 245, 144, 215, 101, 241, 97, 27, 127, 36, 216, 76, 156, 245, 214, 57, 74, 207, 5, + 155, 68, 213, 253, 144, 64, 47, 227, 27, 165, 208, 137, 251, 204, 3, 45, 221, 71, 77, 243, 164, 70, 153, 138, 225, + 27, 205, 221, 74, 228, 211, 253, 213, 128, 27, 117, 189, 94, 236, 204, 222, 121, 227, 255, 76, 64, 227, 241, 35, + 31, 231, 1, 21, 184, 50, 192, 28, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1474, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3966616076314180834" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16528119936428219286" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff1a37" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16556485709738113115" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "80e348f77c" + }, + { + "_tag": "ByteArray", + "bytearray": "00" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4591365928651096721" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12736013288838111090" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5641661145395581957" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6864964127066977715" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e08f456f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15101161763334887332" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ae8b143be349e528486fcc2" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6987356954559238911" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10275355957952279838" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b370c404e2d0f7ce29fd8669f1bffffffffffffffff9fd8669f1be55fad832fdb1b969f43ff1a371be5c4740871c5785b410bffff4580e348f77c4100ffff1b3fb7cefc6b1482911bb0bf689b9fd99f72bf1b4e4b34ebc26d5405417d1b5f4540805da075b344e08f456f1bd1921a9d474997a44c8ae8b143be349e528486fcc2ffd8669f1b60f814212b5bd2ff9f1bfffffffffffffff3d8669f1bfffffffffffffff29f1b8e9965cd7670751effffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 55, 12, 64, 78, 45, 15, 124, 226, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 255, 159, 216, 102, 159, 27, 229, 95, 173, 131, 47, 219, 27, 150, 159, 67, 255, 26, 55, 27, 229, 196, 116, 8, 113, + 197, 120, 91, 65, 11, 255, 255, 69, 128, 227, 72, 247, 124, 65, 0, 255, 255, 27, 63, 183, 206, 252, 107, 20, 130, + 145, 27, 176, 191, 104, 155, 159, 217, 159, 114, 191, 27, 78, 75, 52, 235, 194, 109, 84, 5, 65, 125, 27, 95, 69, + 64, 128, 93, 160, 117, 179, 68, 224, 143, 69, 111, 27, 209, 146, 26, 157, 71, 73, 151, 164, 76, 138, 232, 177, 67, + 190, 52, 158, 82, 132, 134, 252, 194, 255, 216, 102, 159, 27, 96, 248, 20, 33, 43, 91, 210, 255, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 243, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 142, 153, + 101, 205, 118, 112, 117, 30, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1475, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "319c86cc478ee052" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc7c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42f033d2308d87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce2f3a2403665c71b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2697974841487218998" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d87c9f9fbf48319c86cc478ee05242cc7c4742f033d2308d8741c149ce2f3a2403665c71b91b257121d2e7c95936ffa0ff80ff", + "cborBytes": [ + 216, 124, 159, 159, 191, 72, 49, 156, 134, 204, 71, 142, 224, 82, 66, 204, 124, 71, 66, 240, 51, 210, 48, 141, + 135, 65, 193, 73, 206, 47, 58, 36, 3, 102, 92, 113, 185, 27, 37, 113, 33, 210, 231, 201, 89, 54, 255, 160, 255, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1476, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1720405309491212523" + }, + "fields": [] + }, + "cborHex": "d8669f1b17e01b838deb70eb80ff", + "cborBytes": [216, 102, 159, 27, 23, 224, 27, 131, 141, 235, 112, 235, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1477, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4880667989039955085" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f801b43bb9dad5958bc8dffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 128, 27, 67, 187, 157, 173, 89, 88, 188, 141, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1478, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12081213731395338789" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0165e5032aeb9512" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6dafd1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15513561106613723835" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ced148d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15327412182020047669" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c70555fda2" + } + ] + } + ] + }, + "cborHex": "d8669f1ba7a917e1336402259f809fa0480165e5032aeb9512bf436dafd14229fc4284fc1bd74b3da1d106e2bb44ced148d51bd4b5e82be34cc335ff45c70555fda2ffffff", + "cborBytes": [ + 216, 102, 159, 27, 167, 169, 23, 225, 51, 100, 2, 37, 159, 128, 159, 160, 72, 1, 101, 229, 3, 42, 235, 149, 18, + 191, 67, 109, 175, 209, 66, 41, 252, 66, 132, 252, 27, 215, 75, 61, 161, 209, 6, 226, 187, 68, 206, 209, 72, 213, + 27, 212, 181, 232, 43, 227, 76, 195, 53, 255, 69, 199, 5, 85, 253, 162, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1479, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11661246775252730287" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5155599924556605374" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7a5c818715" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16101599715459105210" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5188869965672772151" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6168751797449095977" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7197399134677185243" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "13299d" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5fe8bd016333" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6024107226483279306" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9601929750900957355" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6187916463234555490" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17734705234004291342" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6870903520387795452" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17212614115888012341" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8877130008097347640" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c24259dee200ed5498bf426" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9fbf1bfffffffffffffff41ba1d512287d1bc1afff9fd8669f1b478c5ed0db3a27be9f457a5c8187151bdf745fa19b7881ba1b480291bdf19e72371b559bcf138a817b291b63e24c61292332dbffff4313299da0465fe8bd016333bf1b5399ed9afb6645ca1b8540e83c38b4e0ab1b55dfe53d02e31e621bf61e5472a5162f0e1b5f5a5a5922b209fc1beedf7d5791611c351b7b31e6b5959a58384c6c24259dee200ed5498bf426ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 244, + 27, 161, 213, 18, 40, 125, 27, 193, 175, 255, 159, 216, 102, 159, 27, 71, 140, 94, 208, 219, 58, 39, 190, 159, 69, + 122, 92, 129, 135, 21, 27, 223, 116, 95, 161, 155, 120, 129, 186, 27, 72, 2, 145, 189, 241, 158, 114, 55, 27, 85, + 155, 207, 19, 138, 129, 123, 41, 27, 99, 226, 76, 97, 41, 35, 50, 219, 255, 255, 67, 19, 41, 157, 160, 70, 95, + 232, 189, 1, 99, 51, 191, 27, 83, 153, 237, 154, 251, 102, 69, 202, 27, 133, 64, 232, 60, 56, 180, 224, 171, 27, + 85, 223, 229, 61, 2, 227, 30, 98, 27, 246, 30, 84, 114, 165, 22, 47, 14, 27, 95, 90, 90, 89, 34, 178, 9, 252, 27, + 238, 223, 125, 87, 145, 97, 28, 53, 27, 123, 49, 230, 181, 149, 154, 88, 56, 76, 108, 36, 37, 157, 238, 32, 14, + 213, 73, 139, 244, 38, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1480, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12144117282224120086" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6472426742087875689" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4799774788345919952" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8368646158479893704" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18f86a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8733470966637062257" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9191273539628921146" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9164647327431998826" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f81e1106fef9346c03" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8303556767873623208" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1ba88892536da6a1169fbf0b1b59d2add45ce2fc691b429c39bd5d3bf9d01bffffffffffffffee1b742367579721a4c84318f86a1b793385927e96e8711b7f8df6963b07713a1b7f2f5e301b513d6a49f81e1106fef9346c031bffffffffffffffee1b733c28e2e165e4a8ffffff", + "cborBytes": [ + 216, 102, 159, 27, 168, 136, 146, 83, 109, 166, 161, 22, 159, 191, 11, 27, 89, 210, 173, 212, 92, 226, 252, 105, + 27, 66, 156, 57, 189, 93, 59, 249, 208, 27, 255, 255, 255, 255, 255, 255, 255, 238, 27, 116, 35, 103, 87, 151, 33, + 164, 200, 67, 24, 248, 106, 27, 121, 51, 133, 146, 126, 150, 232, 113, 27, 127, 141, 246, 150, 59, 7, 113, 58, 27, + 127, 47, 94, 48, 27, 81, 61, 106, 73, 248, 30, 17, 6, 254, 249, 52, 108, 3, 27, 255, 255, 255, 255, 255, 255, 255, + 238, 27, 115, 60, 40, 226, 225, 101, 228, 168, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1481, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16965192775619893631" + }, + "fields": [] + }, + "cborHex": "d8669f1beb7078f1a8d8d97f80ff", + "cborBytes": [216, 102, 159, 27, 235, 112, 120, 241, 168, 216, 217, 127, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1482, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "365781238649749052" + }, + "fields": [] + }, + "cborHex": "d8669f1b051384193b387e3c80ff", + "cborBytes": [216, 102, 159, 27, 5, 19, 132, 25, 59, 56, 126, 60, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1483, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14976855804791239128" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10817413798098306020" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11226386717680634122" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11013126395243745742" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4cb86e95d0014a73" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9c861" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4513669899162595878" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f786bb7336" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4560374659190719131" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6762107042157473656" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10173197409946381787" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17683123413212520463" + } + } + ] + }, + "cborHex": "d8669f1bcfd87b00f0d431d89fbf1b961f2c89480f03e41b9bcc233d6284890a1b98d67c1b3efb51ce484cb86e95d0014a7343d9c8611b3ea3c6dbdcf5b22645f786bb73361b3f49b49733c1829bff1b5dd7d48714f6af781b8d2e7524f9c72ddb1bf567130e1bece00fffff", + "cborBytes": [ + 216, 102, 159, 27, 207, 216, 123, 0, 240, 212, 49, 216, 159, 191, 27, 150, 31, 44, 137, 72, 15, 3, 228, 27, 155, + 204, 35, 61, 98, 132, 137, 10, 27, 152, 214, 124, 27, 62, 251, 81, 206, 72, 76, 184, 110, 149, 208, 1, 74, 115, + 67, 217, 200, 97, 27, 62, 163, 198, 219, 220, 245, 178, 38, 69, 247, 134, 187, 115, 54, 27, 63, 73, 180, 151, 51, + 193, 130, 155, 255, 27, 93, 215, 212, 135, 20, 246, 175, 120, 27, 141, 46, 117, 36, 249, 199, 45, 219, 27, 245, + 103, 19, 14, 27, 236, 224, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1484, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fde0050908be222" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "192a2b056b06c005058290a7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "daae7be57c664e167cf8b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2802037801724905108" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f81dfd1f4a02517f73" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10655842551569617426" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbd181" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f9fbf487fde0050908be2224c192a2b056b06c005058290a74bdaae7be57c664e167cf8b71b26e2d688eb07869449f81dfd1f4a02517f731bfffffffffffffffbffffbf100b1b93e12857f4cc921243fbd181ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 159, 191, 72, 127, 222, 0, 80, 144, 139, 226, 34, + 76, 25, 42, 43, 5, 107, 6, 192, 5, 5, 130, 144, 167, 75, 218, 174, 123, 229, 124, 102, 78, 22, 124, 248, 183, 27, + 38, 226, 214, 136, 235, 7, 134, 148, 73, 248, 29, 253, 31, 74, 2, 81, 127, 115, 27, 255, 255, 255, 255, 255, 255, + 255, 251, 255, 255, 191, 16, 11, 27, 147, 225, 40, 87, 244, 204, 146, 18, 67, 251, 209, 129, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1485, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18286924428004690184" + } + } + ] + }, + "cborHex": "d905079fa00d011bfdc834e105a20908ff", + "cborBytes": [217, 5, 7, 159, 160, 13, 1, 27, 253, 200, 52, 225, 5, 162, 9, 8, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1486, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d87b9f80ff", + "cborBytes": [216, 123, 159, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1487, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14136954432175904040" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3083738635097252667" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14685090911513012145" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ab33f86" + }, + { + "_tag": "ByteArray", + "bytearray": "ba1cf96309d5" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6988653131159449697" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fefa0402" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12536506445101776355" + } + }, + { + "_tag": "ByteArray", + "bytearray": "22" + }, + { + "_tag": "ByteArray", + "bytearray": "e6729c3568c5d32fa89d7a6b" + }, + { + "_tag": "ByteArray", + "bytearray": "01fc1e32" + } + ] + } + ] + } + ] + }, + "cborHex": "d905099f9fd8669f1bc4308d27bfba95289f1b2acba3f3451ea33b1bcbcbec610b0ce7b1444ab33f8646ba1cf96309d5ffffd8669f1b60fcaefecd2e30619f44fefa04021badfa9e30c8afbde341224ce6729c3568c5d32fa89d7a6b4401fc1e32ffffffff", + "cborBytes": [ + 217, 5, 9, 159, 159, 216, 102, 159, 27, 196, 48, 141, 39, 191, 186, 149, 40, 159, 27, 42, 203, 163, 243, 69, 30, + 163, 59, 27, 203, 203, 236, 97, 11, 12, 231, 177, 68, 74, 179, 63, 134, 70, 186, 28, 249, 99, 9, 213, 255, 255, + 216, 102, 159, 27, 96, 252, 174, 254, 205, 46, 48, 97, 159, 68, 254, 250, 4, 2, 27, 173, 250, 158, 48, 200, 175, + 189, 227, 65, 34, 76, 230, 114, 156, 53, 104, 197, 211, 47, 168, 157, 122, 107, 68, 1, 252, 30, 50, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1488, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "253370092429895949" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "064b83" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12525907734083259899" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c4e048a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17124161685828154310" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3874406951596756239" + } + } + } + ] + } + ] + }, + "cborHex": "d905019fbf1b038426c1b3fde90d43064b831badd4f6b81359cdfb445c4e048a1beda53e53582433c61b35c4a898513a8d0fffff", + "cborBytes": [ + 217, 5, 1, 159, 191, 27, 3, 132, 38, 193, 179, 253, 233, 13, 67, 6, 75, 131, 27, 173, 212, 246, 184, 19, 89, 205, + 251, 68, 92, 78, 4, 138, 27, 237, 165, 62, 83, 88, 36, 51, 198, 27, 53, 196, 168, 152, 81, 58, 141, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1489, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7708474826252673966" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed296dd87b791ee063cefd91" + } + ] + }, + "cborHex": "d8669f1b6afa010362d4e3ae9f4ced296dd87b791ee063cefd91ffff", + "cborBytes": [ + 216, 102, 159, 27, 106, 250, 1, 3, 98, 212, 227, 174, 159, 76, 237, 41, 109, 216, 123, 121, 30, 224, 99, 206, 253, + 145, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1490, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5285044595220719719" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "6a1a7ae1e889e7cb392617" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d357" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "df01ab0605a4" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "ByteArray", + "bytearray": "adfa" + } + ] + } + ] + } + ] + }, + "cborHex": "d905039f9fd8669f1b4958400ed83aa86780ff4b6a1a7ae1e889e7cb392617ff42d3579f030e9f46df01ab0605a4ffa0d8669f1bfffffffffffffff29f414d0442adfaffffffff", + "cborBytes": [ + 217, 5, 3, 159, 159, 216, 102, 159, 27, 73, 88, 64, 14, 216, 58, 168, 103, 128, 255, 75, 106, 26, 122, 225, 232, + 137, 231, 203, 57, 38, 23, 255, 66, 211, 87, 159, 3, 14, 159, 70, 223, 1, 171, 6, 5, 164, 255, 160, 216, 102, 159, + 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 65, 77, 4, 66, 173, 250, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1491, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15780098902815111841" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3462462101017395327" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2513eb8e14" + }, + { + "_tag": "ByteArray", + "bytearray": "76c0152148cc15" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11439549979634922623" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13738826177413092389" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13334210382398639204" + } + }, + { + "_tag": "ByteArray", + "bytearray": "354f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8419584474825418316" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8077359744688382770" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1042482330292642150" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03fd8357c34c8be9133f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2bd76095f0b8e9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62e94d523e2eea2ec6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6680614fb803c361" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8ba6b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6322a1e69481f6e0f708b7" + } + ] + }, + "cborHex": "d8669f1bdafe2c5876d37aa19fd8669f1b300d22ef9b65007f9f9f452513eb8e144776c0152148cc151b9ec17218de77747fffd8669f1bbeaa1d9def8b94259f1bb90ca1b1f3324c6442354fffffd8669f1b74d85f78925ce64c9f1b70188be46130e332ffffffff1b0e77a427f5b6e166bf4a03fd8357c34c8be9133f472bd76095f0b8e941424962e94d523e2eea2ec6486680614fb803c36143d8ba6bff4b6322a1e69481f6e0f708b7ffff", + "cborBytes": [ + 216, 102, 159, 27, 218, 254, 44, 88, 118, 211, 122, 161, 159, 216, 102, 159, 27, 48, 13, 34, 239, 155, 101, 0, + 127, 159, 159, 69, 37, 19, 235, 142, 20, 71, 118, 192, 21, 33, 72, 204, 21, 27, 158, 193, 114, 24, 222, 119, 116, + 127, 255, 216, 102, 159, 27, 190, 170, 29, 157, 239, 139, 148, 37, 159, 27, 185, 12, 161, 177, 243, 50, 76, 100, + 66, 53, 79, 255, 255, 216, 102, 159, 27, 116, 216, 95, 120, 146, 92, 230, 76, 159, 27, 112, 24, 139, 228, 97, 48, + 227, 50, 255, 255, 255, 255, 27, 14, 119, 164, 39, 245, 182, 225, 102, 191, 74, 3, 253, 131, 87, 195, 76, 139, + 233, 19, 63, 71, 43, 215, 96, 149, 240, 184, 233, 65, 66, 73, 98, 233, 77, 82, 62, 46, 234, 46, 198, 72, 102, 128, + 97, 79, 184, 3, 195, 97, 67, 216, 186, 107, 255, 75, 99, 34, 161, 230, 148, 129, 246, 224, 247, 8, 183, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1492, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16637026030143773719" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0707418c87" + } + ] + }, + "cborHex": "d8669f1be6e2970715a59c179f450707418c87ffff", + "cborBytes": [216, 102, 159, 27, 230, 226, 151, 7, 21, 165, 156, 23, 159, 69, 7, 7, 65, 140, 135, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1493, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18082449518236659321" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f39ba77e9b" + }, + { + "_tag": "ByteArray", + "bytearray": "392e739bbdd772b0bc18" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15157676922768138681" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17940413839804151581" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ca91c0315f0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6177704609783878872" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be203195541ddab87841a269" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5466072794397509472" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1039546346948902761" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15040542693187851953" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7056639458479162177" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4cb79090d79bbf191af3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10121883040274768760" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1661989766911974693" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12284052376223715426" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3305260915943136860" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14229540235869331900" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e67a6d45" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15372667907214396743" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5363988201480170805" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7e21" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f2070cb2b09adea2b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9703515752037033970" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48af" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1903032148890017989" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c86ee6fddaa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2106165913973739738" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "695d82a48fed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20d1b4bb33" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac31380a0324fdbdd868a0c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7e24e8a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d223" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b680f6659876fec" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfaf1c4082b6dee799f45f39ba77e9b4a392e739bbdd772b0bc18bf1bd25ae2da39bb21b91bf8f92755bd07371d460ca91c0315f01b55bb9d9c997614d84cbe203195541ddab87841a269417cff9f1b4bdb643efa7d8760bf1b0e6d35e51171bf691bd0babde4288f16b11b61ee383326a7c3414a4cb79090d79bbf191af31b8c7826ff41a0e3781b171092e32d1f5d251baa79b88d6f1b90621b2ddea54a80c5de5c1bc5797b74041ea1bc44e67a6d451bd556b003838fcd471b4a70b6d9809cad35ff427e21ffbf491f2070cb2b09adea2b1b86a9d02a409327f24248af1b1a68eda81ebce0c5464c86ee6fddaa1b1d3a9abd6470d0da46695d82a48fed4520d1b4bb334cac31380a0324fdbdd868a0c644d7e24e8a42d223486b680f6659876fecffffff", + "cborBytes": [ + 216, 102, 159, 27, 250, 241, 196, 8, 43, 109, 238, 121, 159, 69, 243, 155, 167, 126, 155, 74, 57, 46, 115, 155, + 189, 215, 114, 176, 188, 24, 191, 27, 210, 90, 226, 218, 57, 187, 33, 185, 27, 248, 249, 39, 85, 189, 7, 55, 29, + 70, 12, 169, 28, 3, 21, 240, 27, 85, 187, 157, 156, 153, 118, 20, 216, 76, 190, 32, 49, 149, 84, 29, 218, 184, + 120, 65, 162, 105, 65, 124, 255, 159, 27, 75, 219, 100, 62, 250, 125, 135, 96, 191, 27, 14, 109, 53, 229, 17, 113, + 191, 105, 27, 208, 186, 189, 228, 40, 143, 22, 177, 27, 97, 238, 56, 51, 38, 167, 195, 65, 74, 76, 183, 144, 144, + 215, 155, 191, 25, 26, 243, 27, 140, 120, 38, 255, 65, 160, 227, 120, 27, 23, 16, 146, 227, 45, 31, 93, 37, 27, + 170, 121, 184, 141, 111, 27, 144, 98, 27, 45, 222, 165, 74, 128, 197, 222, 92, 27, 197, 121, 123, 116, 4, 30, 161, + 188, 68, 230, 122, 109, 69, 27, 213, 86, 176, 3, 131, 143, 205, 71, 27, 74, 112, 182, 217, 128, 156, 173, 53, 255, + 66, 126, 33, 255, 191, 73, 31, 32, 112, 203, 43, 9, 173, 234, 43, 27, 134, 169, 208, 42, 64, 147, 39, 242, 66, 72, + 175, 27, 26, 104, 237, 168, 30, 188, 224, 197, 70, 76, 134, 238, 111, 221, 170, 27, 29, 58, 154, 189, 100, 112, + 208, 218, 70, 105, 93, 130, 164, 143, 237, 69, 32, 209, 180, 187, 51, 76, 172, 49, 56, 10, 3, 36, 253, 189, 216, + 104, 160, 198, 68, 215, 226, 78, 138, 66, 210, 35, 72, 107, 104, 15, 102, 89, 135, 111, 236, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1494, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13696534658912598240" + }, + "fields": [] + }, + "cborHex": "d8669f1bbe13ddb4764fb8e080ff", + "cborBytes": [216, 102, 159, 27, 190, 19, 221, 180, 118, 79, 184, 224, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1495, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4653809391832671684" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7161726020940262105" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + ] + }, + "cborHex": "d8669f1b4095a6fc249025c49f80a0bf1b63638fdf20d0ead91bfffffffffffffffdff1bfffffffffffffffeffff", + "cborBytes": [ + 216, 102, 159, 27, 64, 149, 166, 252, 36, 144, 37, 196, 159, 128, 160, 191, 27, 99, 99, 143, 223, 32, 208, 234, + 217, 27, 255, 255, 255, 255, 255, 255, 255, 253, 255, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1496, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4008179787133910178" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5961761692803774578" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "371849137b492b1a5eac42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "429540917b3e81d68f" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + "cborHex": "d8669f1b379fea47b8047ca29f1b52bc6eac3f19b872bf4b371849137b492b1a5eac4249429540917b3e81d68fff0affff", + "cborBytes": [ + 216, 102, 159, 27, 55, 159, 234, 71, 184, 4, 124, 162, 159, 27, 82, 188, 110, 172, 63, 25, 184, 114, 191, 75, 55, + 24, 73, 19, 123, 73, 43, 26, 94, 172, 66, 73, 66, 149, 64, 145, 123, 62, 129, 214, 143, 255, 10, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1497, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + }, + "cborHex": "d87e9f0dff", + "cborBytes": [216, 126, 159, 13, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1498, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11700402813872031065" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1ba2602e5e29d2c5599f80ffff", + "cborBytes": [216, 102, 159, 27, 162, 96, 46, 94, 41, 210, 197, 89, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1499, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8838819a5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17556011273215008993" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ece082" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25953683b4b2" + } + } + ] + } + ] + }, + "cborHex": "d905009fbf458838819a5c1bf3a37b3cbcbbe0e143ece0824625953683b4b2ffff", + "cborBytes": [ + 217, 5, 0, 159, 191, 69, 136, 56, 129, 154, 92, 27, 243, 163, 123, 60, 188, 187, 224, 225, 67, 236, 224, 130, 70, + 37, 149, 54, 131, 180, 178, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1500, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18029152955923659075" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "92294d738cfd74dbe8f73620" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1b4eaa6a8ff1aa44ff" + } + ] + }, + "cborHex": "d8669f1bfa346b17430379439f9f4c92294d738cfd74dbe8f73620ff491b4eaa6a8ff1aa44ffffff", + "cborBytes": [ + 216, 102, 159, 27, 250, 52, 107, 23, 67, 3, 121, 67, 159, 159, 76, 146, 41, 77, 115, 140, 253, 116, 219, 232, 247, + 54, 32, 255, 73, 27, 78, 170, 106, 143, 241, 170, 68, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1501, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5d" + }, + { + "_tag": "ByteArray", + "bytearray": "ea1bf87e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1244500614779431464" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12677296117340317505" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3174875769679147484" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cffbba690e" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18271101376859887293" + } + } + ] + }, + "cborHex": "d905099fd905099f415d44ea1bf87e1b11455ab72aaeea289f1bafeecda6ca822741ffff1b2c0f6cb0f9b871dc9f45cffbba690effa01bfd8ffde5d6e256bdff", + "cborBytes": [ + 217, 5, 9, 159, 217, 5, 9, 159, 65, 93, 68, 234, 27, 248, 126, 27, 17, 69, 90, 183, 42, 174, 234, 40, 159, 27, + 175, 238, 205, 166, 202, 130, 39, 65, 255, 255, 27, 44, 15, 108, 176, 249, 184, 113, 220, 159, 69, 207, 251, 186, + 105, 14, 255, 160, 27, 253, 143, 253, 229, 214, 226, 86, 189, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1502, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02e8fb" + } + ] + }, + "cborHex": "d905009f4302e8fbff", + "cborBytes": [217, 5, 0, 159, 67, 2, 232, 251, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1503, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9002152970840894099" + }, + "fields": [] + }, + "cborHex": "d8669f1b7cee126e78b2ea9380ff", + "cborBytes": [216, 102, 159, 27, 124, 238, 18, 110, 120, 178, 234, 147, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1504, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4625446105625902617" + }, + "fields": [] + }, + "cborHex": "d8669f1b4030e2b9f58bbe1980ff", + "cborBytes": [216, 102, 159, 27, 64, 48, 226, 185, 245, 139, 190, 25, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1505, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10548727991981364674" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3906648757312979944" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6709903157719741392" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "262f60" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3dc263ab61c12727c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d392fe9e30097c30c36774a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8742058245437333159" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d3c47f5a68f4d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4519985ee50ab3c9fd7c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66247a924930d1c3865d6e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3384235833467533940" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fb187d4a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15945563143669701513" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ab0c3a3a95fa" + }, + { + "_tag": "ByteArray", + "bytearray": "5a5a921707" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9751086939871796660" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b92649c381a44d5c29f418dd8669f1b36373458b1dc83e89f1b5d1e5d5f112833d0bf43262f60493dc263ab61c12727c74c4d392fe9e30097c30c36774a1b795207a825111ea7475d3c47f5a68f4d4a4519985ee50ab3c9fd7c4b66247a924930d1c3865d6e1b2ef7388f61fafa74ff44fb187d4ad8669f1bdd4a053229fe5b899f46ab0c3a3a95fa455a5a9217071b8752d1e889025db4ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 146, 100, 156, 56, 26, 68, 213, 194, 159, 65, 141, 216, 102, 159, 27, 54, 55, 52, 88, 177, 220, + 131, 232, 159, 27, 93, 30, 93, 95, 17, 40, 51, 208, 191, 67, 38, 47, 96, 73, 61, 194, 99, 171, 97, 193, 39, 39, + 199, 76, 77, 57, 47, 233, 227, 0, 151, 195, 12, 54, 119, 74, 27, 121, 82, 7, 168, 37, 17, 30, 167, 71, 93, 60, 71, + 245, 166, 143, 77, 74, 69, 25, 152, 94, 229, 10, 179, 201, 253, 124, 75, 102, 36, 122, 146, 73, 48, 209, 195, 134, + 93, 110, 27, 46, 247, 56, 143, 97, 250, 250, 116, 255, 68, 251, 24, 125, 74, 216, 102, 159, 27, 221, 74, 5, 50, + 41, 254, 91, 137, 159, 70, 171, 12, 58, 58, 149, 250, 69, 90, 90, 146, 23, 7, 27, 135, 82, 209, 232, 137, 2, 93, + 180, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1506, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1482448097452273053" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7b768e5b0fbac5" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5490184321062193160" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "960006fd0402" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17847543678196156003" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c978f00e5be8621995b60244" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f9f1b1492b6b0b698ad9d477b768e5b0fbac5ff1b4c310d8d4054c808a0bf1bfffffffffffffffd0f46960006fd04021bf7af366a3c268663ff4cc978f00e5be8621995b60244ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 159, 27, 20, 146, 182, 176, 182, 152, 173, 157, + 71, 123, 118, 142, 91, 15, 186, 197, 255, 27, 76, 49, 13, 141, 64, 84, 200, 8, 160, 191, 27, 255, 255, 255, 255, + 255, 255, 255, 253, 15, 70, 150, 0, 6, 253, 4, 2, 27, 247, 175, 54, 106, 60, 38, 134, 99, 255, 76, 201, 120, 240, + 14, 91, 232, 98, 25, 149, 182, 2, 68, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1507, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3928049485549267936" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11654773236338768491" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8011770603236843061" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8321480005268265037" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11438899086233730186" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7368347057816760367" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11679243330230171279" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "586198a7287d49" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14724262298807887937" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16812920857811255781" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10292206094600278073" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9fbf1b36833c320651ebe01ba1be128241b3ba6b1b6f2f86ea5bd95e351b737bd5f9c787d84d1b9ebf221cf0807c8a1b6641a09c22f6702f1ba21501edf7b8368f47586198a7287d491bcc57168c5c1ee84141681be9537e71069881e51b8ed542e99fc29039ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 191, 27, 54, 131, 60, 50, 6, 81, 235, 224, 27, + 161, 190, 18, 130, 65, 179, 186, 107, 27, 111, 47, 134, 234, 91, 217, 94, 53, 27, 115, 123, 213, 249, 199, 135, + 216, 77, 27, 158, 191, 34, 28, 240, 128, 124, 138, 27, 102, 65, 160, 156, 34, 246, 112, 47, 27, 162, 21, 1, 237, + 247, 184, 54, 143, 71, 88, 97, 152, 167, 40, 125, 73, 27, 204, 87, 22, 140, 92, 30, 232, 65, 65, 104, 27, 233, 83, + 126, 113, 6, 152, 129, 229, 27, 142, 213, 66, 233, 159, 194, 144, 57, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1508, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16847413665953384169" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43e7b6210b6936c06d62d5d6" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8405767991613943842" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17357053027076177200" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "251115625964030661" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06ef" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f9fa0ff9fbf1be9ce0977bf3686e94c43e7b6210b6936c06d62d5d6ff1b74a74973e47f7022ff1bf0e0a3c43a7e7d301b037c2454d322cac54206efffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 159, 160, 255, 159, 191, 27, 233, 206, 9, 119, + 191, 54, 134, 233, 76, 67, 231, 182, 33, 11, 105, 54, 192, 109, 98, 213, 214, 255, 27, 116, 167, 73, 115, 228, + 127, 112, 34, 255, 27, 240, 224, 163, 196, 58, 126, 125, 48, 27, 3, 124, 36, 84, 211, 34, 202, 197, 66, 6, 239, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1509, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5350893812524463743" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1060723041080547625" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b4a4231927e5b367f9fd8669f1b0eb871fc64ad992980ffffff", + "cborBytes": [ + 216, 102, 159, 27, 74, 66, 49, 146, 126, 91, 54, 127, 159, 216, 102, 159, 27, 14, 184, 113, 252, 100, 173, 153, + 41, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1510, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12529062672069604970" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3733179432923020683" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64b27cdff9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8027304743509203382" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5782999252503863221" + } + }, + { + "_tag": "ByteArray", + "bytearray": "772479a46d87681daebb31d2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ec7c03e5c8240ae1582e60" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "857322290359537844" + } + }, + { + "_tag": "ByteArray", + "bytearray": "82fb67374affec8e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18268302378337540138" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3217450987103252516" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "27fbfe" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f9fd8669f1bade02c1e5150b66a9f1b33ceeaea3e2bbd8b4564b27cdff91b6f66b7223cac99b61b5041572e35d79fb54c772479a46d87681daebb31d2ffff9f4bec7c03e5c8240ae1582e601b0be5d214aee790b44882fb67374affec8effd8669f1bfd860c39363b982a9f1b2ca6aea04084f024ffffff4327fbfeffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 159, 216, 102, 159, 27, 173, 224, 44, 30, 81, 80, + 182, 106, 159, 27, 51, 206, 234, 234, 62, 43, 189, 139, 69, 100, 178, 124, 223, 249, 27, 111, 102, 183, 34, 60, + 172, 153, 182, 27, 80, 65, 87, 46, 53, 215, 159, 181, 76, 119, 36, 121, 164, 109, 135, 104, 29, 174, 187, 49, 210, + 255, 255, 159, 75, 236, 124, 3, 229, 200, 36, 10, 225, 88, 46, 96, 27, 11, 229, 210, 20, 174, 231, 144, 180, 72, + 130, 251, 103, 55, 74, 255, 236, 142, 255, 216, 102, 159, 27, 253, 134, 12, 57, 54, 59, 152, 42, 159, 27, 44, 166, + 174, 160, 64, 132, 240, 36, 255, 255, 255, 67, 39, 251, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1511, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b28" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "754b1807f679ea55e8193742" + } + ] + }, + "cborHex": "d8799f1bfffffffffffffffb420b28d8669f1bfffffffffffffff980ff4c754b1807f679ea55e8193742ff", + "cborBytes": [ + 216, 121, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 66, 11, 40, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 249, 128, 255, 76, 117, 75, 24, 7, 246, 121, 234, 85, 232, 25, 55, 66, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1512, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2617299834709410467" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23c60c226aeb6ade" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13220195559017724966" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16151764308095441585" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3231b1a38d5fbc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5438701968748301159" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16871717330515581121" + } + }, + { + "_tag": "ByteArray", + "bytearray": "07f0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14568847641669079689" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12875075487026075084" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13490327147550541905" + } + }, + { + "_tag": "ByteArray", + "bytearray": "51f794876c" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "51552132418026441" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aedceb7e" + }, + { + "_tag": "ByteArray", + "bytearray": "8ad2607f" + }, + { + "_tag": "ByteArray", + "bytearray": "727a2bb47d6add9ba3" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6994243915308713132" + } + } + ] + } + ] + }, + "cborHex": "d9050c9f9fbf1b24528455268b02a34823c60c226aeb6ade1bb77791d13c72bc261be026980fffdc9ab1ff9f473231b1a38d5fbc1b4b7a26a00675cb671bea2461859c2ed8c14207f01bca2ef1bdb4791289ffffd8669f1bb2ad74f0bc8755cc9f9f1bbb374510dd8f08514551f794876cffa0a09f1b00b726642c30bbc944aedceb7e448ad2607f49727a2bb47d6add9ba3ff1b61108bc8ac69c4acffffff", + "cborBytes": [ + 217, 5, 12, 159, 159, 191, 27, 36, 82, 132, 85, 38, 139, 2, 163, 72, 35, 198, 12, 34, 106, 235, 106, 222, 27, 183, + 119, 145, 209, 60, 114, 188, 38, 27, 224, 38, 152, 15, 255, 220, 154, 177, 255, 159, 71, 50, 49, 177, 163, 141, + 95, 188, 27, 75, 122, 38, 160, 6, 117, 203, 103, 27, 234, 36, 97, 133, 156, 46, 216, 193, 66, 7, 240, 27, 202, 46, + 241, 189, 180, 121, 18, 137, 255, 255, 216, 102, 159, 27, 178, 173, 116, 240, 188, 135, 85, 204, 159, 159, 27, + 187, 55, 69, 16, 221, 143, 8, 81, 69, 81, 247, 148, 135, 108, 255, 160, 160, 159, 27, 0, 183, 38, 100, 44, 48, + 187, 201, 68, 174, 220, 235, 126, 68, 138, 210, 96, 127, 73, 114, 122, 43, 180, 125, 106, 221, 155, 163, 255, 27, + 97, 16, 139, 200, 172, 105, 196, 172, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1513, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04f9f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8b4bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0196fff900ffde8100" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "03" + }, + { + "_tag": "ByteArray", + "bytearray": "5b4433ed59816e404bb4f498" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2231892117640770623" + } + } + ] + }, + "cborHex": "d9050c9f07bf4304f9f841b543d8b4bf490196fff900ffde8100ff41034c5b4433ed59816e404bb4f4981b1ef9460e50f8f43fff", + "cborBytes": [ + 217, 5, 12, 159, 7, 191, 67, 4, 249, 248, 65, 181, 67, 216, 180, 191, 73, 1, 150, 255, 249, 0, 255, 222, 129, 0, + 255, 65, 3, 76, 91, 68, 51, 237, 89, 129, 110, 64, 75, 180, 244, 152, 27, 30, 249, 70, 14, 80, 248, 244, 63, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1514, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15407342278117261932" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10970248344100561602" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2294689157780261195" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6592506455503106043" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16784110384157560968" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cb9084d134b4" + }, + { + "_tag": "ByteArray", + "bytearray": "65a8a2664a080012d9f186" + }, + { + "_tag": "ByteArray", + "bytearray": "462bfbd8012641a88cfe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6682388363123109086" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bd5d1e02b9c09826c9f1b983e26beffee62c24255aa1b1fd85fa1976ec94bd8669f1b5b7d49b153bb6ffb9fd8669f1be8ed2377e6a810889f46cb9084d134b44b65a8a2664a080012d9f1864a462bfbd8012641a88cfe1b5cbc9ccfbb282cdeffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 213, 209, 224, 43, 156, 9, 130, 108, 159, 27, 152, 62, 38, 190, 255, 238, 98, 194, 66, 85, 170, + 27, 31, 216, 95, 161, 151, 110, 201, 75, 216, 102, 159, 27, 91, 125, 73, 177, 83, 187, 111, 251, 159, 216, 102, + 159, 27, 232, 237, 35, 119, 230, 168, 16, 136, 159, 70, 203, 144, 132, 209, 52, 180, 75, 101, 168, 162, 102, 74, + 8, 0, 18, 217, 241, 134, 74, 70, 43, 251, 216, 1, 38, 65, 168, 140, 254, 27, 92, 188, 156, 207, 187, 40, 44, 222, + 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1515, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12445285643759083232" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9503699818644369984" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "975622295358532155" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4323345382651929619" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4660576592168274671" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4927584683147172271" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8876465122790857992" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "657b91" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10308190033212168686" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "850ea1f03fd085e42a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11590784736087412647" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e63e712d0ec1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13226747564478661271" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8120342838473948453" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5894933566790657484" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2892941364373023564" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1642999633931253433" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1197863247586150022" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b9f61fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16901282123877183280" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c98bed7d69e7ea466" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2217772118240167503" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8570760142270149621" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f8dd25" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "167367771260083231" + } + } + ] + }, + "cborHex": "d8669f1bacb6895ae4875ee09fd8669f1b83e3eca1de3df2409fbf1b0d8a1b4efdcbea3b1b3bff9bb82e4b24131b40adb1b7c0b0caef1b44624c296fa499af1b7b2f89ffe917dd0843657b911b8f0e0c3856d559ee49850ea1f03fd085e42a1ba0dabd4e8e828fa746e63e712d0ec11bb78ed8d4e28382971b70b140c9c5a07d25ff9f1b51cf02d8a71565cc1b2825cad7eb7ceb4c1b16cd1b764a91b6b9ff1b109faa46f1de4686bf442b9f61fe1bea8d6a8b7a5bef30495c98bed7d69e7ea4661b1ec71bfdc478864fffffffd8669f1b76f174f08716b3f580ff43f8dd251b02529c19e8ce5c1fffff", + "cborBytes": [ + 216, 102, 159, 27, 172, 182, 137, 90, 228, 135, 94, 224, 159, 216, 102, 159, 27, 131, 227, 236, 161, 222, 61, 242, + 64, 159, 191, 27, 13, 138, 27, 78, 253, 203, 234, 59, 27, 59, 255, 155, 184, 46, 75, 36, 19, 27, 64, 173, 177, + 183, 192, 176, 202, 239, 27, 68, 98, 76, 41, 111, 164, 153, 175, 27, 123, 47, 137, 255, 233, 23, 221, 8, 67, 101, + 123, 145, 27, 143, 14, 12, 56, 86, 213, 89, 238, 73, 133, 14, 161, 240, 63, 208, 133, 228, 42, 27, 160, 218, 189, + 78, 142, 130, 143, 167, 70, 230, 62, 113, 45, 14, 193, 27, 183, 142, 216, 212, 226, 131, 130, 151, 27, 112, 177, + 64, 201, 197, 160, 125, 37, 255, 159, 27, 81, 207, 2, 216, 167, 21, 101, 204, 27, 40, 37, 202, 215, 235, 124, 235, + 76, 27, 22, 205, 27, 118, 74, 145, 182, 185, 255, 27, 16, 159, 170, 70, 241, 222, 70, 134, 191, 68, 43, 159, 97, + 254, 27, 234, 141, 106, 139, 122, 91, 239, 48, 73, 92, 152, 190, 215, 214, 158, 126, 164, 102, 27, 30, 199, 27, + 253, 196, 120, 134, 79, 255, 255, 255, 216, 102, 159, 27, 118, 241, 116, 240, 135, 22, 179, 245, 128, 255, 67, + 248, 221, 37, 27, 2, 82, 156, 25, 232, 206, 92, 31, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1516, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6736258249057011554" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11280396882585853923" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3555172048636888292" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12850343818213088832" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11160233155879585660" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "250104556762323104" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12274666921492262259" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15513239583668941931" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7058454328577201889" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4784728971095540045" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17283176598650525729" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15542843092493754755" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "565ac4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16985407595594514903" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7981043" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16069132307207580282" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8086068435534296488" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17500006722450026067" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2d0d09763a194b9c7a4023" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1122314272759618460" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10416201991059141992" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8171518833087305508" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17194756183362871966" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9563000622918335047" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7501130264422645939" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16135825114374815896" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1329395488859008165" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16324186117058269842" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "271a1bf53a" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5d7bff2ff25687629fd8669f1b9c8c0532d7f41fe39f9f411d1b31568224626644e41bb255979e5e3a5e401b9ae11ced02bd477c1b03788cc4ee8658a0ff1baa586087f7c8ad73bf1bd74a19356c1db46b1b61f4aad0862996e1ffbf1b4266c5a60cab814d1befda2d8bd8e898211bd7b345716fb9618343565ac41bebb84a3734a201d744c7981043ff1bdf0106b20bdc6a7affffa0d8669f1b70377c66798535a89f1bf2dc83652294ee539f4b2d0d09763a194b9c7a4023ffbf1b0f9342e282301b9c1b908dc88601cbf5681b71671115899557241beea00ba5a4cba29e1b84b69a664be2fa471b68195e3b98d800b31bdfedf773442340981b1272f6275772aca51be28b28c8c29f129245271a1bf53affffffffff", + "cborBytes": [ + 216, 102, 159, 27, 93, 123, 255, 47, 242, 86, 135, 98, 159, 216, 102, 159, 27, 156, 140, 5, 50, 215, 244, 31, 227, + 159, 159, 65, 29, 27, 49, 86, 130, 36, 98, 102, 68, 228, 27, 178, 85, 151, 158, 94, 58, 94, 64, 27, 154, 225, 28, + 237, 2, 189, 71, 124, 27, 3, 120, 140, 196, 238, 134, 88, 160, 255, 27, 170, 88, 96, 135, 247, 200, 173, 115, 191, + 27, 215, 74, 25, 53, 108, 29, 180, 107, 27, 97, 244, 170, 208, 134, 41, 150, 225, 255, 191, 27, 66, 102, 197, 166, + 12, 171, 129, 77, 27, 239, 218, 45, 139, 216, 232, 152, 33, 27, 215, 179, 69, 113, 111, 185, 97, 131, 67, 86, 90, + 196, 27, 235, 184, 74, 55, 52, 162, 1, 215, 68, 199, 152, 16, 67, 255, 27, 223, 1, 6, 178, 11, 220, 106, 122, 255, + 255, 160, 216, 102, 159, 27, 112, 55, 124, 102, 121, 133, 53, 168, 159, 27, 242, 220, 131, 101, 34, 148, 238, 83, + 159, 75, 45, 13, 9, 118, 58, 25, 75, 156, 122, 64, 35, 255, 191, 27, 15, 147, 66, 226, 130, 48, 27, 156, 27, 144, + 141, 200, 134, 1, 203, 245, 104, 27, 113, 103, 17, 21, 137, 149, 87, 36, 27, 238, 160, 11, 165, 164, 203, 162, + 158, 27, 132, 182, 154, 102, 75, 226, 250, 71, 27, 104, 25, 94, 59, 152, 216, 0, 179, 27, 223, 237, 247, 115, 68, + 35, 64, 152, 27, 18, 114, 246, 39, 87, 114, 172, 165, 27, 226, 139, 40, 200, 194, 159, 18, 146, 69, 39, 26, 27, + 245, 58, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1517, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "df38" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7996471573101626323" + } + }, + { + "_tag": "ByteArray", + "bytearray": "77ed240fd3933e05" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7fc5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01b1" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9f9f42df381b6ef92c87533b43d34877ed240fd3933e05ffbf0a427fc50d4201b1ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 159, 66, 223, 56, 27, 110, 249, 44, 135, 83, 59, + 67, 211, 72, 119, 237, 36, 15, 211, 147, 62, 5, 255, 191, 10, 66, 127, 197, 13, 66, 1, 177, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1518, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17485113922148162417" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0be7c5f2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14882471865480478848" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6675995187596618837" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14020288452824592498" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11601367525478575712" + } + }, + { + "_tag": "ByteArray", + "bytearray": "93" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a61ecfbfd598af41c7c5e" + } + ] + } + ] + }, + "cborHex": "d905059f1bf2a79a78dae0db719f440be7c5f2d8669f1bce89294f99b580809f1b5ca5e6408ee9ec551bc2921210af1ef072ffff1ba100564c38e72e604193ff9f4b6a61ecfbfd598af41c7c5effff", + "cborBytes": [ + 217, 5, 5, 159, 27, 242, 167, 154, 120, 218, 224, 219, 113, 159, 68, 11, 231, 197, 242, 216, 102, 159, 27, 206, + 137, 41, 79, 153, 181, 128, 128, 159, 27, 92, 165, 230, 64, 142, 233, 236, 85, 27, 194, 146, 18, 16, 175, 30, 240, + 114, 255, 255, 27, 161, 0, 86, 76, 56, 231, 46, 96, 65, 147, 255, 159, 75, 106, 97, 236, 251, 253, 89, 138, 244, + 28, 124, 94, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1519, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8360" + } + ] + }, + "cborHex": "d87e9f428360ff", + "cborBytes": [216, 126, 159, 66, 131, 96, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1520, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "62655986876286049" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c0502969ee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12841829779051547048" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10709087912225843400" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3580874044234365652" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13360730864808536608" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12417796322255115425" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa25bf09b7b1c3da25" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9011564512278750684" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6a" + }, + { + "_tag": "ByteArray", + "bytearray": "609a87b8725bacbc" + }, + { + "_tag": "ByteArray", + "bytearray": "10b7fc1681e074245f13" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b00de9949c0d004619f8045c0502969ee1bb2375825266689a81b949e52b78ca6a8c89f9f1b31b1d1f890017ad41bb96ad9eef082aa20ffd8669f1bac54dff6792b14a19f49fa25bf09b7b1c3da25ffff9f1b7d0f822db8e425dc416a48609a87b8725bacbc4a10b7fc1681e074245f13ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 0, 222, 153, 73, 192, 208, 4, 97, 159, 128, 69, 192, 80, 41, 105, 238, 27, 178, 55, 88, 37, 38, + 102, 137, 168, 27, 148, 158, 82, 183, 140, 166, 168, 200, 159, 159, 27, 49, 177, 209, 248, 144, 1, 122, 212, 27, + 185, 106, 217, 238, 240, 130, 170, 32, 255, 216, 102, 159, 27, 172, 84, 223, 246, 121, 43, 20, 161, 159, 73, 250, + 37, 191, 9, 183, 177, 195, 218, 37, 255, 255, 159, 27, 125, 15, 130, 45, 184, 228, 37, 220, 65, 106, 72, 96, 154, + 135, 184, 114, 91, 172, 188, 74, 16, 183, 252, 22, 129, 224, 116, 36, 95, 19, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1521, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3369526409465480870" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10265458507623958542" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2517552187159737958" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc8f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a402c4f9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3075152850542906322" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "272a4f3c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10766085399969883382" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2730396127792933709" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10989154082053710849" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7171035301742240218" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15521364097771420970" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96cd6a1da9d9f3679a88" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18257873009448867115" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "483940677375258269" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5627699365173185937" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14747058898150997096" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11660474549894515380" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7142827506538581857" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "26004ffd459c503c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83ea79" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2ec2f66ab97cc6a69f9f1b8e763c1fbb70080e1b22f024602b29f66642fc8fff44a402c4f9bf1b2aad233986a3cbd244272a4f3c1b9568d1a14eb964f61b25e450cfdd332b4d1b9881516a22d864011b6384a29cf821e1da1bd766f669452abd2a4a96cd6a1da9d9f3679a881bfd60fec48a64552b1b06b74d7b67506e9dff1bfffffffffffffff7bf1b4e199ac17bd6cd911bcca813ef420dbc681ba1d253d2c2f20ab41b63206bc5db1f0f614826004ffd459c503c4383ea79ffffff", + "cborBytes": [ + 216, 102, 159, 27, 46, 194, 246, 106, 185, 124, 198, 166, 159, 159, 27, 142, 118, 60, 31, 187, 112, 8, 14, 27, 34, + 240, 36, 96, 43, 41, 246, 102, 66, 252, 143, 255, 68, 164, 2, 196, 249, 191, 27, 42, 173, 35, 57, 134, 163, 203, + 210, 68, 39, 42, 79, 60, 27, 149, 104, 209, 161, 78, 185, 100, 246, 27, 37, 228, 80, 207, 221, 51, 43, 77, 27, + 152, 129, 81, 106, 34, 216, 100, 1, 27, 99, 132, 162, 156, 248, 33, 225, 218, 27, 215, 102, 246, 105, 69, 42, 189, + 42, 74, 150, 205, 106, 29, 169, 217, 243, 103, 154, 136, 27, 253, 96, 254, 196, 138, 100, 85, 43, 27, 6, 183, 77, + 123, 103, 80, 110, 157, 255, 27, 255, 255, 255, 255, 255, 255, 255, 247, 191, 27, 78, 25, 154, 193, 123, 214, 205, + 145, 27, 204, 168, 19, 239, 66, 13, 188, 104, 27, 161, 210, 83, 210, 194, 242, 10, 180, 27, 99, 32, 107, 197, 219, + 31, 15, 97, 72, 38, 0, 79, 253, 69, 156, 80, 60, 67, 131, 234, 121, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1522, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "06" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4941743310255925792" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2528080528124725725" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ea437d8b0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12993030380771866151" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "441325502401221610" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6cf6d832" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5812426884498432752" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9221" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74d8b791" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2743912257390897125" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11790029533059994471" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12617682558696265764" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5083807731761362130" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4156797366215904602" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1229264649593875799" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1eb9b22856a7c0444cb7ccdd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3234400744697449726" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3513958978188476213" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3957383254211208794" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5611536033713198477" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10227482636082870452" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aab388bd5c42da1d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11774092954057525656" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8562250640207251176" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17179800086763023439" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1847676008661482678" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8166ab4ecb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5548984568098521337" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f4106d8669f1b4494995bb2f7aa209fbf1b23158bd89274c9dd458ea437d8b01bb450844a91c3f6271b061fe734c8f213ea446cf6d8321b50a9e374b575a2f04292214474d8b791ff1b261455a9049fe7e5d8669f1ba39e9964e167d3679f1baf1b036f8fbb9824ffffd8669f1b468d5032660534d29f1b39afe92e50940d5affffbf1b110f39af95fced574c1eb9b22856a7c0444cb7ccdd1b2ce2e65738f34cfe1b30c41712aa37ff351b36eb731a4356a65a1b4de02e4a9dc7958d1b8def51451e31f8b448aab388bd5c42da1d1ba365fb28ef0749981b76d33997af6a06e81bee6ae9280bbc2c4f1b19a4438a5c477cb6ffffff458166ab4ecb1b4d01f4109da300f980ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 65, 6, 216, 102, 159, 27, 68, 148, 153, 91, 178, + 247, 170, 32, 159, 191, 27, 35, 21, 139, 216, 146, 116, 201, 221, 69, 142, 164, 55, 216, 176, 27, 180, 80, 132, + 74, 145, 195, 246, 39, 27, 6, 31, 231, 52, 200, 242, 19, 234, 68, 108, 246, 216, 50, 27, 80, 169, 227, 116, 181, + 117, 162, 240, 66, 146, 33, 68, 116, 216, 183, 145, 255, 27, 38, 20, 85, 169, 4, 159, 231, 229, 216, 102, 159, 27, + 163, 158, 153, 100, 225, 103, 211, 103, 159, 27, 175, 27, 3, 111, 143, 187, 152, 36, 255, 255, 216, 102, 159, 27, + 70, 141, 80, 50, 102, 5, 52, 210, 159, 27, 57, 175, 233, 46, 80, 148, 13, 90, 255, 255, 191, 27, 17, 15, 57, 175, + 149, 252, 237, 87, 76, 30, 185, 178, 40, 86, 167, 192, 68, 76, 183, 204, 221, 27, 44, 226, 230, 87, 56, 243, 76, + 254, 27, 48, 196, 23, 18, 170, 55, 255, 53, 27, 54, 235, 115, 26, 67, 86, 166, 90, 27, 77, 224, 46, 74, 157, 199, + 149, 141, 27, 141, 239, 81, 69, 30, 49, 248, 180, 72, 170, 179, 136, 189, 92, 66, 218, 29, 27, 163, 101, 251, 40, + 239, 7, 73, 152, 27, 118, 211, 57, 151, 175, 106, 6, 232, 27, 238, 106, 233, 40, 11, 188, 44, 79, 27, 25, 164, 67, + 138, 92, 71, 124, 182, 255, 255, 255, 69, 129, 102, 171, 78, 203, 27, 77, 1, 244, 16, 157, 163, 0, 249, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1523, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11724583293702064345" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11118911687584092162" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "448556218948799893" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17782365115185740917" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4866923046719627516" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5cce20109c40ae" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b75cbccfdc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "829224300423243805" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fb859dec3e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16883130141225630476" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4bbdb004ea" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "249430403210361196" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "692d05a997fdfde19375" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4205556518698319784" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd8c0dcf342df4c902cd3d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6460218079876883833" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4521165519739705175" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12879224933824086384" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3b4eb4bf6" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16772793428182935842" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12163414572452480561" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10530581224453114476" + } + } + ] + } + ] + }, + "cborHex": "d8669f1ba2b61662d89748d99fd8669f1b9a4e4f44f36390029fbf1b063997812c3c4d951bf6c7a6db74f1bc75ffd8669f1b438ac8b994e2a0fc9f475cce20109c40aeffffffff45b75cbccfdcd8669f1b0b81ff1b99d9681d9f9f45fb859dec3e1bea4ced69ac71bb0c454bbdb004eaffbf1b037627a15389396c4a692d05a997fdfde193751b3a5d235f2bd77fa84bbd8c0dcf342df4c902cd3d1b59a74e1dae9e25791b3ebe681606d457571bb2bc32d71af0417045a3b4eb4bf6ffbf1be8c4eec1c1d9a9221ba8cd211beed70631ff1b922423d489ed0a6cffffffff", + "cborBytes": [ + 216, 102, 159, 27, 162, 182, 22, 98, 216, 151, 72, 217, 159, 216, 102, 159, 27, 154, 78, 79, 68, 243, 99, 144, 2, + 159, 191, 27, 6, 57, 151, 129, 44, 60, 77, 149, 27, 246, 199, 166, 219, 116, 241, 188, 117, 255, 216, 102, 159, + 27, 67, 138, 200, 185, 148, 226, 160, 252, 159, 71, 92, 206, 32, 16, 156, 64, 174, 255, 255, 255, 255, 69, 183, + 92, 188, 207, 220, 216, 102, 159, 27, 11, 129, 255, 27, 153, 217, 104, 29, 159, 159, 69, 251, 133, 157, 236, 62, + 27, 234, 76, 237, 105, 172, 113, 187, 12, 69, 75, 189, 176, 4, 234, 255, 191, 27, 3, 118, 39, 161, 83, 137, 57, + 108, 74, 105, 45, 5, 169, 151, 253, 253, 225, 147, 117, 27, 58, 93, 35, 95, 43, 215, 127, 168, 75, 189, 140, 13, + 207, 52, 45, 244, 201, 2, 205, 61, 27, 89, 167, 78, 29, 174, 158, 37, 121, 27, 62, 190, 104, 22, 6, 212, 87, 87, + 27, 178, 188, 50, 215, 26, 240, 65, 112, 69, 163, 180, 235, 75, 246, 255, 191, 27, 232, 196, 238, 193, 193, 217, + 169, 34, 27, 168, 205, 33, 27, 238, 215, 6, 49, 255, 27, 146, 36, 35, 212, 137, 237, 10, 108, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1524, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10467383956716882518" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18085186115723707094" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11265257586294592998" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "534ee952aa852a008338eadd" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10062033011226925415" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dbbb42015cd0d0" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15433210460785181062" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1c425705" + } + ] + }, + "cborHex": "d905049f1b91439e4003bb8a56a0d8669f1bfafb7cf3ec89c2d69fd8669f1b9c563c16be5d15e69f4c534ee952aa852a008338eaddffffbf1b8ba385b6786f596747dbbb42015cd0d0ff1bd62dc7253af18186ffff441c425705ff", + "cborBytes": [ + 217, 5, 4, 159, 27, 145, 67, 158, 64, 3, 187, 138, 86, 160, 216, 102, 159, 27, 250, 251, 124, 243, 236, 137, 194, + 214, 159, 216, 102, 159, 27, 156, 86, 60, 22, 190, 93, 21, 230, 159, 76, 83, 78, 233, 82, 170, 133, 42, 0, 131, + 56, 234, 221, 255, 255, 191, 27, 139, 163, 133, 182, 120, 111, 89, 103, 71, 219, 187, 66, 1, 92, 208, 208, 255, + 27, 214, 45, 199, 37, 58, 241, 129, 134, 255, 255, 68, 28, 66, 87, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1525, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "610017779408269362" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14015473398248688660" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13087133115872419788" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15764557398136069933" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1027120611169808152" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15337924476072979713" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15040628025141550354" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11520395923089855395" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a7847ac29d7926d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15879873252202276640" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "69802430059713881" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "50555f326d8c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1705309780315831847" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d732" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7734802670167040509" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2565526672030415327" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02b74cf5a8cc2738338e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16420225746660020448" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3729998643931490962" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1293b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0671" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "334c2b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10045780078339377430" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050d9fd8669f1b087737f0384d70329fbf1bc280f6cc6d8ccc141bb59ed63af3d39fcc1bdac6f56ded281f2d1b0e4110c102422f18ffd8669f1bd4db410c14196d0180ffffff1bd0bb0b800d58dd129fd8669f1b9fe0ab0deba113a39f48a7847ac29d7926d61bdc60a49673be6720ffffd8669f1b00f7fcf0b82b15599f4650555f326d8c1b17aa7a35c7b97e2742d732ffff1b6b578a0c3b0ca1fdbf1b239a94ea5c29b9df4a02b74cf5a8cc2738338e1be3e05c518964d0e01b33c39e011839aa92431293b942067143334c2b1b8b69c7c1a51d4916ffffff", + "cborBytes": [ + 217, 5, 13, 159, 216, 102, 159, 27, 8, 119, 55, 240, 56, 77, 112, 50, 159, 191, 27, 194, 128, 246, 204, 109, 140, + 204, 20, 27, 181, 158, 214, 58, 243, 211, 159, 204, 27, 218, 198, 245, 109, 237, 40, 31, 45, 27, 14, 65, 16, 193, + 2, 66, 47, 24, 255, 216, 102, 159, 27, 212, 219, 65, 12, 20, 25, 109, 1, 128, 255, 255, 255, 27, 208, 187, 11, + 128, 13, 88, 221, 18, 159, 216, 102, 159, 27, 159, 224, 171, 13, 235, 161, 19, 163, 159, 72, 167, 132, 122, 194, + 157, 121, 38, 214, 27, 220, 96, 164, 150, 115, 190, 103, 32, 255, 255, 216, 102, 159, 27, 0, 247, 252, 240, 184, + 43, 21, 89, 159, 70, 80, 85, 95, 50, 109, 140, 27, 23, 170, 122, 53, 199, 185, 126, 39, 66, 215, 50, 255, 255, 27, + 107, 87, 138, 12, 59, 12, 161, 253, 191, 27, 35, 154, 148, 234, 92, 41, 185, 223, 74, 2, 183, 76, 245, 168, 204, + 39, 56, 51, 142, 27, 227, 224, 92, 81, 137, 100, 208, 224, 27, 51, 195, 158, 1, 24, 57, 170, 146, 67, 18, 147, + 185, 66, 6, 113, 67, 51, 76, 43, 27, 139, 105, 199, 193, 165, 29, 73, 22, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1526, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23c2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b36949c07ecaa731258c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9458358334575587299" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf5b33" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13076621556622120677" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5d05a0399" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9282568075924148715" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5bf3bd6cce" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2898802034195946195" + } + }, + { + "_tag": "ByteArray", + "bytearray": "773ebf33d7e5365dd8acf1" + }, + { + "_tag": "ByteArray", + "bytearray": "b78a8e3ccaf1bc00" + }, + { + "_tag": "ByteArray", + "bytearray": "373f" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16524646327133400991" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6588168731667142635" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8598475015143462229" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "378211d5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4692489791500050871" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6120498961189621080" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d621204a0" + }, + { + "_tag": "ByteArray", + "bytearray": "b67b09ebb4e1e8ccd4f55939" + } + ] + } + ] + } + ] + }, + "cborHex": "d87c9f9fbf4209d74223c24ab36949c07ecaa731258c1b8342d6caf2bbafe343bf5b331bb5797e05d8ad56e545f5d05a0399414bff1b80d24e7be0d711eb455bf3bd6cce9f1b283a9d17726ddad34b773ebf33d7e5365dd8acf148b78a8e3ccaf1bc0042373fffff9f1be55356487fbfef9f1b5b6de08e4b5b17eb9f1b7753eb7837b29555ff44378211d5d8669f1b411f129a7e81e1b79f1b54f061609ddacd58456d621204a04cb67b09ebb4e1e8ccd4f55939ffffffff", + "cborBytes": [ + 216, 124, 159, 159, 191, 66, 9, 215, 66, 35, 194, 74, 179, 105, 73, 192, 126, 202, 167, 49, 37, 140, 27, 131, 66, + 214, 202, 242, 187, 175, 227, 67, 191, 91, 51, 27, 181, 121, 126, 5, 216, 173, 86, 229, 69, 245, 208, 90, 3, 153, + 65, 75, 255, 27, 128, 210, 78, 123, 224, 215, 17, 235, 69, 91, 243, 189, 108, 206, 159, 27, 40, 58, 157, 23, 114, + 109, 218, 211, 75, 119, 62, 191, 51, 215, 229, 54, 93, 216, 172, 241, 72, 183, 138, 142, 60, 202, 241, 188, 0, 66, + 55, 63, 255, 255, 159, 27, 229, 83, 86, 72, 127, 191, 239, 159, 27, 91, 109, 224, 142, 75, 91, 23, 235, 159, 27, + 119, 83, 235, 120, 55, 178, 149, 85, 255, 68, 55, 130, 17, 213, 216, 102, 159, 27, 65, 31, 18, 154, 126, 129, 225, + 183, 159, 27, 84, 240, 97, 96, 157, 218, 205, 88, 69, 109, 98, 18, 4, 160, 76, 182, 123, 9, 235, 180, 225, 232, + 204, 212, 245, 89, 57, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1527, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d2f71be4945f114fb3be21b5" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9f4cd2f71be4945f114fb3be21b5ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 76, 210, 247, 27, 228, 148, 95, 17, 79, 179, 190, + 33, 181, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1528, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8795146974796939002" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7985808773574789794" + }, + "fields": [] + } + ] + }, + "cborHex": "d87e9f1b7a0ea3932c1f7efad8669f1b6ed34ac4d91f8aa280ffff", + "cborBytes": [ + 216, 126, 159, 27, 122, 14, 163, 147, 44, 31, 126, 250, 216, 102, 159, 27, 110, 211, 74, 196, 217, 31, 138, 162, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1529, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15706550816121697242" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2383205079600919292" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bc3a5e8c" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "78" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9607210129657034001" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "55f04b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12362417698740953598" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10528628928741229771" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10312053496416020631" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13519967063127526540" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "747198503864581925" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12886488621180977079" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10064464976720932372" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9748111826945811497" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9be4714b2d56f7905785" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10321934591755934386" + } + }, + { + "_tag": "ByteArray", + "bytearray": "390663646ea18ccc" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bd9f8e0c0198e33da9fd8669f1b2112d864a484f2fc9f44bc3a5e8ca041781b8553aab634bdf511ffff4355f04b1bab902165ea74e1fe9fbf1b921d343a4585c4cb1b8f1bc604f6b3a8971bbba092697cb28c8c1b0a5e9514978d3f25ff9f1bb2d601201b9affb7ff9f1b8bac29928fcfae141b8748400f13e3a4294a9be4714b2d56f79057851b8f3ee0d2c06ddab248390663646ea18cccffffffff", + "cborBytes": [ + 216, 102, 159, 27, 217, 248, 224, 192, 25, 142, 51, 218, 159, 216, 102, 159, 27, 33, 18, 216, 100, 164, 132, 242, + 252, 159, 68, 188, 58, 94, 140, 160, 65, 120, 27, 133, 83, 170, 182, 52, 189, 245, 17, 255, 255, 67, 85, 240, 75, + 27, 171, 144, 33, 101, 234, 116, 225, 254, 159, 191, 27, 146, 29, 52, 58, 69, 133, 196, 203, 27, 143, 27, 198, 4, + 246, 179, 168, 151, 27, 187, 160, 146, 105, 124, 178, 140, 140, 27, 10, 94, 149, 20, 151, 141, 63, 37, 255, 159, + 27, 178, 214, 1, 32, 27, 154, 255, 183, 255, 159, 27, 139, 172, 41, 146, 143, 207, 174, 20, 27, 135, 72, 64, 15, + 19, 227, 164, 41, 74, 155, 228, 113, 75, 45, 86, 247, 144, 87, 133, 27, 143, 62, 224, 210, 192, 109, 218, 178, 72, + 57, 6, 99, 100, 110, 161, 140, 204, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1530, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7335896247065857813" + }, + "fields": [] + }, + "cborHex": "d8669f1b65ce56c4fb7b4f1580ff", + "cborBytes": [216, 102, 159, 27, 101, 206, 86, 196, 251, 123, 79, 21, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1531, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a76c3aa1c9967dff1036dc09" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3248651168936462701" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1289a7eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15557603519217795208" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6f505428a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9667731514932254827" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c853169d6432cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f549ac1d36ef" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3213555192808835769" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18377685406816118099" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dd224fce" + }, + { + "_tag": "ByteArray", + "bytearray": "dba2015a48355aadcada" + }, + { + "_tag": "ByteArray", + "bytearray": "605c40" + }, + { + "_tag": "ByteArray", + "bytearray": "85" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1338564053390500744" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10203887320060787943" + } + }, + { + "_tag": "ByteArray", + "bytearray": "96028c21ab902a4de5" + }, + { + "_tag": "ByteArray", + "bytearray": "c097" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14065131999410292790" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15432459145524631309" + } + } + ] + } + ] + }, + "cborHex": "d9050c9f4ca76c3aa1c9967dff1036dc091b2d158706ab9d896dbf441289a7eb1bd7e7b5f91758008845a6f505428a1b862aae974b62d86b47c853169d6432cc46f549ac1d36efffd8669f1b2c98d76bf57b8ab99fd8669f1bff0aa7822327a5539f44dd224fce4adba2015a48355aadcada43605c404185ffffd8669f1b129388ea1f72a3889f1b8d9b7d748055fce74996028c21ab902a4de542c0971bc33163087fd48836ffff1bd62b1bd403b9570dffffff", + "cborBytes": [ + 217, 5, 12, 159, 76, 167, 108, 58, 161, 201, 150, 125, 255, 16, 54, 220, 9, 27, 45, 21, 135, 6, 171, 157, 137, + 109, 191, 68, 18, 137, 167, 235, 27, 215, 231, 181, 249, 23, 88, 0, 136, 69, 166, 245, 5, 66, 138, 27, 134, 42, + 174, 151, 75, 98, 216, 107, 71, 200, 83, 22, 157, 100, 50, 204, 70, 245, 73, 172, 29, 54, 239, 255, 216, 102, 159, + 27, 44, 152, 215, 107, 245, 123, 138, 185, 159, 216, 102, 159, 27, 255, 10, 167, 130, 35, 39, 165, 83, 159, 68, + 221, 34, 79, 206, 74, 219, 162, 1, 90, 72, 53, 90, 173, 202, 218, 67, 96, 92, 64, 65, 133, 255, 255, 216, 102, + 159, 27, 18, 147, 136, 234, 31, 114, 163, 136, 159, 27, 141, 155, 125, 116, 128, 85, 252, 231, 73, 150, 2, 140, + 33, 171, 144, 42, 77, 229, 66, 192, 151, 27, 195, 49, 99, 8, 127, 212, 136, 54, 255, 255, 27, 214, 43, 27, 212, 3, + 185, 87, 13, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1532, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7256789364728479822" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05" + }, + { + "_tag": "ByteArray", + "bytearray": "558585" + } + ] + } + ] + }, + "cborHex": "d8669f1b64b54b7aa679404e9f9f410543558585ffffff", + "cborBytes": [ + 216, 102, 159, 27, 100, 181, 75, 122, 166, 121, 64, 78, 159, 159, 65, 5, 67, 85, 133, 133, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1533, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4759635825169368725" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14745022926967280818" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d5c13a0eef879a92" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1408980837933850119" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ed9fee91d045a1bf304b" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6ce7b0c2b296252ceb3ac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6319810239390512833" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a5e2b933" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1458308186294352114" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d58de79485756ee62d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8649879912763891776" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2820420612906185906" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11105420161528683539" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de5315" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14616681561115150920" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e310b02335d39d26624a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17326857224350227053" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c62ffb0ece" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15186427195582128580" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b420d9f90bb7186959f9fd8669f1bcca0d83ac6e014b29f48d5c13a0eef879a921b138db49b64611e074aed9fee91d045a1bf304bffffffbf4bb6ce7b0c2b296252ceb3ac1b57b479edcebf76c1ff44a5e2b933bf1b143cf391a91e78f249d58de79485756ee62d1b780a8bf39e1420401b2724259aad7674b21b9a1e60cc4160dc1343de53151bcad8e26ff5454a484ae310b02335d39d26624a1bf0755cd80b4e5a6d45c62ffb0eceffd8669f1bd2c10712c00121c49f80ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 66, 13, 159, 144, 187, 113, 134, 149, 159, 159, 216, 102, 159, 27, 204, 160, 216, 58, 198, 224, + 20, 178, 159, 72, 213, 193, 58, 14, 239, 135, 154, 146, 27, 19, 141, 180, 155, 100, 97, 30, 7, 74, 237, 159, 238, + 145, 208, 69, 161, 191, 48, 75, 255, 255, 255, 191, 75, 182, 206, 123, 12, 43, 41, 98, 82, 206, 179, 172, 27, 87, + 180, 121, 237, 206, 191, 118, 193, 255, 68, 165, 226, 185, 51, 191, 27, 20, 60, 243, 145, 169, 30, 120, 242, 73, + 213, 141, 231, 148, 133, 117, 110, 230, 45, 27, 120, 10, 139, 243, 158, 20, 32, 64, 27, 39, 36, 37, 154, 173, 118, + 116, 178, 27, 154, 30, 96, 204, 65, 96, 220, 19, 67, 222, 83, 21, 27, 202, 216, 226, 111, 245, 69, 74, 72, 74, + 227, 16, 176, 35, 53, 211, 157, 38, 98, 74, 27, 240, 117, 92, 216, 11, 78, 90, 109, 69, 198, 47, 251, 14, 206, + 255, 216, 102, 159, 27, 210, 193, 7, 18, 192, 1, 33, 196, 159, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1534, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8020754728927435516" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11752615916303923998" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11785895367959574244" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1875485536218775112" + } + } + } + ] + } + ] + }, + "cborHex": "d905069fbf1b6f4f71ee20411afc1ba319ade868e5bb1e1ba38fe9648f26f6e41b1a0710288fb3fe48ffff", + "cborBytes": [ + 217, 5, 6, 159, 191, 27, 111, 79, 113, 238, 32, 65, 26, 252, 27, 163, 25, 173, 232, 104, 229, 187, 30, 27, 163, + 143, 233, 100, 143, 38, 246, 228, 27, 26, 7, 16, 40, 143, 179, 254, 72, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1535, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2169529769251996665" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17911588345498612239" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13389333238330625994" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8977609828201578613" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7274473397752363660" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7072704657155041871" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4696554429404655776" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0d806c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "200539344186959840" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b1e1bb7d499e683f99f1bf892beb35878b20fd8669f1bb9d077a3fa070fca9fd8669f1b7c96e092c602c0759f1b64f41f03710efa8cffffffff1b62274b69b2fa2a4f9fd8669f1b412d835ec0f3b0a09f430d806cffff1b02c8757895c0e7e0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 30, 27, 183, 212, 153, 230, 131, 249, 159, 27, 248, 146, 190, 179, 88, 120, 178, 15, 216, 102, + 159, 27, 185, 208, 119, 163, 250, 7, 15, 202, 159, 216, 102, 159, 27, 124, 150, 224, 146, 198, 2, 192, 117, 159, + 27, 100, 244, 31, 3, 113, 14, 250, 140, 255, 255, 255, 255, 27, 98, 39, 75, 105, 178, 250, 42, 79, 159, 216, 102, + 159, 27, 65, 45, 131, 94, 192, 243, 176, 160, 159, 67, 13, 128, 108, 255, 255, 27, 2, 200, 117, 120, 149, 192, + 231, 224, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1536, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2994667810838888263" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "09983d8bfabd6e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6790018545824963252" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff685e3daf006af82a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2864470260545243270" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3425908333045604863" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "879348110381621605" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4002010305588046228" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0492fa440205d13ffb00" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8943800295640929771" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f04e3344bb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b21fe203" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b298f3281ed593f479f4709983d8bfabd6ed8669f1b5e3afde472361ab49f49ff685e3daf006af82abf071b27c0a4867d7848861b2f8b457a483be1ff1b0c341272893521651b3789ff2b5c0729944a0492fa440205d13ffb001b7c1ec2fb8bb615eb45f04e3344bb1bfffffffffffffff044b21fe2031bfffffffffffffffa0cffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 41, 143, 50, 129, 237, 89, 63, 71, 159, 71, 9, 152, 61, 139, 250, 189, 110, 216, 102, 159, 27, + 94, 58, 253, 228, 114, 54, 26, 180, 159, 73, 255, 104, 94, 61, 175, 0, 106, 248, 42, 191, 7, 27, 39, 192, 164, + 134, 125, 120, 72, 134, 27, 47, 139, 69, 122, 72, 59, 225, 255, 27, 12, 52, 18, 114, 137, 53, 33, 101, 27, 55, + 137, 255, 43, 92, 7, 41, 148, 74, 4, 146, 250, 68, 2, 5, 209, 63, 251, 0, 27, 124, 30, 194, 251, 139, 182, 21, + 235, 69, 240, 78, 51, 68, 187, 27, 255, 255, 255, 255, 255, 255, 255, 240, 68, 178, 31, 226, 3, 27, 255, 255, 255, + 255, 255, 255, 255, 250, 12, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1537, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6214396343762783062" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2a9d1774048563b0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2572150849236704954" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "426f68793406" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac6e706c057051f4fe252ada" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17752511759414473920" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4548176867729770700" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a34c1dacfba3c0853e6e64c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2105427474450845414" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "548bf1baa9e2e712d32b7ef8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "838bd629065fef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "589c49103157" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c89ae39dcfba62a6ef8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81033369bd1b50ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ff84420" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "826ab2b453064a32" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14083674853987829586" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14447397771756292815" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d56a0b6a93" + } + ] + }, + "cborHex": "d8669f1b563df88ca3778b569f482a9d1774048563b0bf1b23b21d91cd791eba46426f687934064cac6e706c057051f4fe252ada1bf65d97636ad834c0ffd8669f1b3f1e5ec390ae88cc9fbf4c2a34c1dacfba3c0853e6e64c1b1d37fb220afd8ee64c548bf1baa9e2e712d32b7ef847838bd629065fef46589c491031574a7c89ae39dcfba62a6ef84881033369bd1b50ed445ff8442048826ab2b453064a321bc37343a9440bc752ff1bc87f77ba524dcacf80ffff45d56a0b6a93ffff", + "cborBytes": [ + 216, 102, 159, 27, 86, 61, 248, 140, 163, 119, 139, 86, 159, 72, 42, 157, 23, 116, 4, 133, 99, 176, 191, 27, 35, + 178, 29, 145, 205, 121, 30, 186, 70, 66, 111, 104, 121, 52, 6, 76, 172, 110, 112, 108, 5, 112, 81, 244, 254, 37, + 42, 218, 27, 246, 93, 151, 99, 106, 216, 52, 192, 255, 216, 102, 159, 27, 63, 30, 94, 195, 144, 174, 136, 204, + 159, 191, 76, 42, 52, 193, 218, 207, 186, 60, 8, 83, 230, 230, 76, 27, 29, 55, 251, 34, 10, 253, 142, 230, 76, 84, + 139, 241, 186, 169, 226, 231, 18, 211, 43, 126, 248, 71, 131, 139, 214, 41, 6, 95, 239, 70, 88, 156, 73, 16, 49, + 87, 74, 124, 137, 174, 57, 220, 251, 166, 42, 110, 248, 72, 129, 3, 51, 105, 189, 27, 80, 237, 68, 95, 248, 68, + 32, 72, 130, 106, 178, 180, 83, 6, 74, 50, 27, 195, 115, 67, 169, 68, 11, 199, 82, 255, 27, 200, 127, 119, 186, + 82, 77, 202, 207, 128, 255, 255, 69, 213, 106, 11, 106, 147, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1538, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8481468156352167735" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "744d438cc2f9223187" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21bea53ac797fdb372efe8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5506231048258198783" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2beac67eacf067" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83c6c5a8b8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38f428259cd517d9fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1b0046500af33" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "505b0b06d8edb36ba1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "801f407a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "596a1fa2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17435188291189494251" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fe835396f8dd7b91ccee829f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3390178732806563759" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1958bad79942d9ae1925" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2e8f617b56f0e4ccee675" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "26a38e77847fc4e45b43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b63710dc8010afe3bcccb0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9817140361032843945" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e791d6b78a87af07c73b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3175860827814442357" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3f66c21ec17585339b6deaa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1dd46a17c617cc9b8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10285078846194746687" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "75eb94108377b6" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "625e16aead571644a59a1c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10511442806911015403" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b740b1346a8ec98a014bc80a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "934714029a" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15035235204417712066" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13607423571834957403" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6105109341363711250" + } + }, + { + "_tag": "ByteArray", + "bytearray": "56343f6f38" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3f6bcfc4bc7e9a0520cbea8d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "301832919354723481" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5901413595257183405" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2585269886504137744" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14392808611408064577" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4298263085967568833" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "224fcb884b" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b75b43a59f9287f379f9f49744d438cc2f9223187bf4b21bea53ac797fdb372efe81b4c6a0ff712a81cff472beac67eacf0674583c6c5a8b84938f428259cd517d9fd47a1b0046500af3349505b0b06d8edb36ba144801f407a44596a1fa21bf1f63b60106651ebff4cfe835396f8dd7b91ccee829fffd8669f1b2f0c55987604e7af9fbf4a1958bad79942d9ae19254ba2e8f617b56f0e4ccee6754a26a38e77847fc4e45b434bb63710dc8010afe3bcccb041561b883d7d25198342a94ae791d6b78a87af07c73b1b2c12ec98b1f535754cf3f66c21ec17585339b6deaa49b1dd46a17c617cc9b8ff9f1b8ebbf0b7ca52853fff4775eb94108377b6ffffbf4b625e16aead571644a59a1c1b91e0258a76c419eb4cb740b1346a8ec98a014bc80a45934714029affd8669f1bd0a7e2c221c3efc29f80d8669f1bbcd747a4b37fee5b9f1b54b9b49986e72d124556343f6f38ffff4c3f6bcfc4bc7e9a0520cbea8dbf1b04305370e3a84c991b51e60865d9f71cad1b23e0b943b197f4101bc7bd872cfb2930411b3ba67f80e6456fc145224fcb884bffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 117, 180, 58, 89, 249, 40, 127, 55, 159, 159, 73, 116, 77, 67, 140, 194, 249, 34, 49, 135, 191, + 75, 33, 190, 165, 58, 199, 151, 253, 179, 114, 239, 232, 27, 76, 106, 15, 247, 18, 168, 28, 255, 71, 43, 234, 198, + 126, 172, 240, 103, 69, 131, 198, 197, 168, 184, 73, 56, 244, 40, 37, 156, 213, 23, 217, 253, 71, 161, 176, 4, + 101, 0, 175, 51, 73, 80, 91, 11, 6, 216, 237, 179, 107, 161, 68, 128, 31, 64, 122, 68, 89, 106, 31, 162, 27, 241, + 246, 59, 96, 16, 102, 81, 235, 255, 76, 254, 131, 83, 150, 248, 221, 123, 145, 204, 238, 130, 159, 255, 216, 102, + 159, 27, 47, 12, 85, 152, 118, 4, 231, 175, 159, 191, 74, 25, 88, 186, 215, 153, 66, 217, 174, 25, 37, 75, 162, + 232, 246, 23, 181, 111, 14, 76, 206, 230, 117, 74, 38, 163, 142, 119, 132, 127, 196, 228, 91, 67, 75, 182, 55, 16, + 220, 128, 16, 175, 227, 188, 204, 176, 65, 86, 27, 136, 61, 125, 37, 25, 131, 66, 169, 74, 231, 145, 214, 183, + 138, 135, 175, 7, 199, 59, 27, 44, 18, 236, 152, 177, 245, 53, 117, 76, 243, 246, 108, 33, 236, 23, 88, 83, 57, + 182, 222, 170, 73, 177, 221, 70, 161, 124, 97, 124, 201, 184, 255, 159, 27, 142, 187, 240, 183, 202, 82, 133, 63, + 255, 71, 117, 235, 148, 16, 131, 119, 182, 255, 255, 191, 75, 98, 94, 22, 174, 173, 87, 22, 68, 165, 154, 28, 27, + 145, 224, 37, 138, 118, 196, 25, 235, 76, 183, 64, 177, 52, 106, 142, 201, 138, 1, 75, 200, 10, 69, 147, 71, 20, + 2, 154, 255, 216, 102, 159, 27, 208, 167, 226, 194, 33, 195, 239, 194, 159, 128, 216, 102, 159, 27, 188, 215, 71, + 164, 179, 127, 238, 91, 159, 27, 84, 185, 180, 153, 134, 231, 45, 18, 69, 86, 52, 63, 111, 56, 255, 255, 76, 63, + 107, 207, 196, 188, 126, 154, 5, 32, 203, 234, 141, 191, 27, 4, 48, 83, 112, 227, 168, 76, 153, 27, 81, 230, 8, + 101, 217, 247, 28, 173, 27, 35, 224, 185, 67, 177, 151, 244, 16, 27, 199, 189, 135, 44, 251, 41, 48, 65, 27, 59, + 166, 127, 128, 230, 69, 111, 193, 69, 34, 79, 203, 136, 75, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1539, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6833090606856028401" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "275976935678641557" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b5ed403b423b640f19fd8669f1b03d4778f9153859580ffffff", + "cborBytes": [ + 216, 102, 159, 27, 94, 212, 3, 180, 35, 182, 64, 241, 159, 216, 102, 159, 27, 3, 212, 119, 143, 145, 83, 133, 149, + 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1540, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12685317415254001717" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15475771367951151508" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38454920f8d2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adc1f5052cb023b5e9c057" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3782139391441680451" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1c52b5adabdf35526" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44ee07b1cbc2d6" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9768915689403423847" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6983768049112222952" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2e9a94370e82" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4339588763136010218" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18182000626752458442" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bb00b4cfabf4a88359f9fbf1bd6c4fc10a3e3b1944638454920f8d24badc1f5052cb023b5e9c0571b347cdbbce5e4b84349c1c52b5adabdf355264744ee07b1cbc2d6ff809f1b8792290fc3a19c671b60eb540a010e8ce8462e9a94370e821b3c3950fce9ffa7ea1bfc53713cd7828ecaffffffff", + "cborBytes": [ + 216, 102, 159, 27, 176, 11, 76, 250, 191, 74, 136, 53, 159, 159, 191, 27, 214, 196, 252, 16, 163, 227, 177, 148, + 70, 56, 69, 73, 32, 248, 210, 75, 173, 193, 245, 5, 44, 176, 35, 181, 233, 192, 87, 27, 52, 124, 219, 188, 229, + 228, 184, 67, 73, 193, 197, 43, 90, 218, 189, 243, 85, 38, 71, 68, 238, 7, 177, 203, 194, 214, 255, 128, 159, 27, + 135, 146, 41, 15, 195, 161, 156, 103, 27, 96, 235, 84, 10, 1, 14, 140, 232, 70, 46, 154, 148, 55, 14, 130, 27, 60, + 57, 80, 252, 233, 255, 167, 234, 27, 252, 83, 113, 60, 215, 130, 142, 202, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1541, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8401026667775223380" + }, + "fields": [] + }, + "cborHex": "d8669f1b7496713e6953665480ff", + "cborBytes": [216, 102, 159, 27, 116, 150, 113, 62, 105, 83, 102, 84, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1542, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4136484225358188202" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10757208583915279651" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a73d1454247da4" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "52571c28acff89a6cab958" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7676905329166036593" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16443102994770317822" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f64cf9cc7dfe158bf0625f5d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2806738709641042701" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14125927995886004828" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3786162195818388484" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14405295308584654646" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11249269901705457739" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eda6eb522d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13331898479167442907" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab829c48c181eadf4e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17708792116083388892" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13417517360089627045" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17719329520442585380" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13557257199792935998" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9066957839755896410" + }, + "fields": [] + } + ] + }, + "cborHex": "d9050b9fd8669f1b3967be7ca77b4eaa9f809f1b95494836830d952347a73d1454247da4ff9f4b52571c28acff89a6cab9581b6a89d8b90f3eae711be431a30df07251feffffff4cf64cf9cc7dfe158bf0625f5dbf1b26f389fc557e1b0d1bc40960ab7d87ea5c1b348b267507c49c041bc7e9e3c2b8ca17361b9c1d6f5fd9a5b04b45eda6eb522d1bb9046b0808588fdb49ab829c48c181eadf4e1bf5c2449ab86371dc1bba3498f32fc779a51bf5e7b4515c12b1241bbc250d980243d43eff80d8669f1b7dd44e1dd017e65a80ffff", + "cborBytes": [ + 217, 5, 11, 159, 216, 102, 159, 27, 57, 103, 190, 124, 167, 123, 78, 170, 159, 128, 159, 27, 149, 73, 72, 54, 131, + 13, 149, 35, 71, 167, 61, 20, 84, 36, 125, 164, 255, 159, 75, 82, 87, 28, 40, 172, 255, 137, 166, 202, 185, 88, + 27, 106, 137, 216, 185, 15, 62, 174, 113, 27, 228, 49, 163, 13, 240, 114, 81, 254, 255, 255, 255, 76, 246, 76, + 249, 204, 125, 254, 21, 139, 240, 98, 95, 93, 191, 27, 38, 243, 137, 252, 85, 126, 27, 13, 27, 196, 9, 96, 171, + 125, 135, 234, 92, 27, 52, 139, 38, 117, 7, 196, 156, 4, 27, 199, 233, 227, 194, 184, 202, 23, 54, 27, 156, 29, + 111, 95, 217, 165, 176, 75, 69, 237, 166, 235, 82, 45, 27, 185, 4, 107, 8, 8, 88, 143, 219, 73, 171, 130, 156, 72, + 193, 129, 234, 223, 78, 27, 245, 194, 68, 154, 184, 99, 113, 220, 27, 186, 52, 152, 243, 47, 199, 121, 165, 27, + 245, 231, 180, 81, 92, 18, 177, 36, 27, 188, 37, 13, 152, 2, 67, 212, 62, 255, 128, 216, 102, 159, 27, 125, 212, + 78, 29, 208, 23, 230, 90, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1543, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10646178831284506180" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17823023169440437898" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "99e1357152fd683a4fe6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfab8609301cb9fe5d9606" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee70c2e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17963875582699200003" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "232d0ac0da3b33b4bda1ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2da7a202eb582" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d82b5c6cd0675" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16445496853886974501" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9378e97047b4c0a807f9e92f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7966041408844158775" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfd6757c0e0e2c0b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b93bed33dbdff0e449fd8669f1bf7581924660dd68a9f80a0ffffbf4a99e1357152fd683a4fe64bdfab8609301cb9fe5d960644ee70c2e91bf94c81aa70195e03ffbf4b232d0ac0da3b33b4bda1ae47b2da7a202eb582475d82b5c6cd06751be43a2441b2bcba254c9378e97047b4c0a807f9e92f1b6e8d10749835573748dfd6757c0e0e2c0b4175ffffff", + "cborBytes": [ + 216, 102, 159, 27, 147, 190, 211, 61, 189, 255, 14, 68, 159, 216, 102, 159, 27, 247, 88, 25, 36, 102, 13, 214, + 138, 159, 128, 160, 255, 255, 191, 74, 153, 225, 53, 113, 82, 253, 104, 58, 79, 230, 75, 223, 171, 134, 9, 48, 28, + 185, 254, 93, 150, 6, 68, 238, 112, 194, 233, 27, 249, 76, 129, 170, 112, 25, 94, 3, 255, 191, 75, 35, 45, 10, + 192, 218, 59, 51, 180, 189, 161, 174, 71, 178, 218, 122, 32, 46, 181, 130, 71, 93, 130, 181, 198, 205, 6, 117, 27, + 228, 58, 36, 65, 178, 188, 186, 37, 76, 147, 120, 233, 112, 71, 180, 192, 168, 7, 249, 233, 47, 27, 110, 141, 16, + 116, 152, 53, 87, 55, 72, 223, 214, 117, 124, 14, 14, 44, 11, 65, 117, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1544, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12498239320940321576" + }, + "fields": [] + }, + "cborHex": "d8669f1bad72aa71a2779b2880ff", + "cborBytes": [216, 102, 159, 27, 173, 114, 170, 113, 162, 119, 155, 40, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1545, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0fa3cbc3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9914429956434852120" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1605690944566769783" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa59114958e40007dae62771" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "93e663" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12694666115792906974" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae49f8bd5d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14674886851165596784" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a4af1152de08b4fe1b71aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6176809747771664445" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11804720144418788952" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4946249050790360770" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e3b44fa167b8e8df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + } + ] + }, + "cborHex": "d905069f9f440fa3cbc39f1b8997218437ca79181b16488f6821f6b877ffffd87f9f4caa59114958e40007dae6277180ffbf4393e6631bb02c8392b6062ade45ae49f8bd5d1bcba7abd71ac6ac70ffd905049f9f004ba4af1152de08b4fe1b71aa1b55b86fbd4d19a83dffd8669f1ba3d2ca6d60fad6589f1b44a49b4e2af8f6c2ffff48e3b44fa167b8e8df13ffff", + "cborBytes": [ + 217, 5, 6, 159, 159, 68, 15, 163, 203, 195, 159, 27, 137, 151, 33, 132, 55, 202, 121, 24, 27, 22, 72, 143, 104, + 33, 246, 184, 119, 255, 255, 216, 127, 159, 76, 170, 89, 17, 73, 88, 228, 0, 7, 218, 230, 39, 113, 128, 255, 191, + 67, 147, 230, 99, 27, 176, 44, 131, 146, 182, 6, 42, 222, 69, 174, 73, 248, 189, 93, 27, 203, 167, 171, 215, 26, + 198, 172, 112, 255, 217, 5, 4, 159, 159, 0, 75, 164, 175, 17, 82, 222, 8, 180, 254, 27, 113, 170, 27, 85, 184, + 111, 189, 77, 25, 168, 61, 255, 216, 102, 159, 27, 163, 210, 202, 109, 96, 250, 214, 88, 159, 27, 68, 164, 155, + 78, 42, 248, 246, 194, 255, 255, 72, 227, 180, 79, 161, 103, 184, 232, 223, 19, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1546, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4115951030704793125" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11750205294905852677" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11021610160446944189" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13002034473244478529" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5469792187493564370" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15294595698143876328" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf283e50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16329341140452126631" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1224514398394561270" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17268518001042247739" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "833a" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14031535973264487214" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "239234783875059552" + } + }, + { + "_tag": "ByteArray", + "bytearray": "68c4252011" + }, + { + "_tag": "ByteArray", + "bytearray": "fd4d0ff02fe0cf4c72736d" + }, + { + "_tag": "ByteArray", + "bytearray": "46e1e13a" + }, + { + "_tag": "ByteArray", + "bytearray": "45113e4ca800" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15481511943582846128" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1161007766792575853" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "028b" + }, + { + "_tag": "ByteArray", + "bytearray": "861a2eef7fb347" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2299891774538880108" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14795018537698482627" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "be8d5a" + }, + { + "_tag": "ByteArray", + "bytearray": "6e47e7e4ca2db7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18284102210802357161" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2231915961429172526" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a6ee" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3865424350816277989" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9442b3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5432139013951265183" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5937610117277899177" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8682888408753329382" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "091ade3b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14160412212551692216" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3454570428728591766" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16993113104871428580" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c21824118b7ee" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18323715952213529839" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2541024729474388640" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5643811662604874200" + } + } + ] + }, + "cborHex": "d8669f1b391ecba7ba0fe6259fbf1ba3111d75e0c703051b98f4a00bc246b3bd1bb4708177371ecc411b4be89b03aac2bfd21bd44151c0d31554e844bf283e501be29d79402cd22fa71b10fe595b8aa8b2f61befa619a1218fd03b42833aff9fd8669f1bc2ba07a01b8b732e9f1b0351eec4b6ca4f604568c42520114bfd4d0ff02fe0cf4c72736d4446e1e13a4645113e4ca800ffff1bd6d961168f390cb0d8669f1b101cba69a1241b6d9f42028b47861a2eef7fb3471b1feadb62333b946cffffd8669f1bcd5276f900d659c39f43be8d5a476e47e7e4ca2db71bfdbe2e165fcf13a91b1ef95bbde182a12e42a6eeffffbf1b35a4bef7988c95e5439442b31b4b62d5a7091b199f1b5266a0f15f1d59a91b787fd100fc1954e644091ade3b1bc483e3e1da3f2fb81b2ff1198077efc5961bebd3aa55e3e591e4475c21824118b7ee1bfe4aea9348d894ef1b234388874dcdd2a0ffff1b4e52d8ce10c531d8ffff", + "cborBytes": [ + 216, 102, 159, 27, 57, 30, 203, 167, 186, 15, 230, 37, 159, 191, 27, 163, 17, 29, 117, 224, 199, 3, 5, 27, 152, + 244, 160, 11, 194, 70, 179, 189, 27, 180, 112, 129, 119, 55, 30, 204, 65, 27, 75, 232, 155, 3, 170, 194, 191, 210, + 27, 212, 65, 81, 192, 211, 21, 84, 232, 68, 191, 40, 62, 80, 27, 226, 157, 121, 64, 44, 210, 47, 167, 27, 16, 254, + 89, 91, 138, 168, 178, 246, 27, 239, 166, 25, 161, 33, 143, 208, 59, 66, 131, 58, 255, 159, 216, 102, 159, 27, + 194, 186, 7, 160, 27, 139, 115, 46, 159, 27, 3, 81, 238, 196, 182, 202, 79, 96, 69, 104, 196, 37, 32, 17, 75, 253, + 77, 15, 240, 47, 224, 207, 76, 114, 115, 109, 68, 70, 225, 225, 58, 70, 69, 17, 62, 76, 168, 0, 255, 255, 27, 214, + 217, 97, 22, 143, 57, 12, 176, 216, 102, 159, 27, 16, 28, 186, 105, 161, 36, 27, 109, 159, 66, 2, 139, 71, 134, + 26, 46, 239, 127, 179, 71, 27, 31, 234, 219, 98, 51, 59, 148, 108, 255, 255, 216, 102, 159, 27, 205, 82, 118, 249, + 0, 214, 89, 195, 159, 67, 190, 141, 90, 71, 110, 71, 231, 228, 202, 45, 183, 27, 253, 190, 46, 22, 95, 207, 19, + 169, 27, 30, 249, 91, 189, 225, 130, 161, 46, 66, 166, 238, 255, 255, 191, 27, 53, 164, 190, 247, 152, 140, 149, + 229, 67, 148, 66, 179, 27, 75, 98, 213, 167, 9, 27, 25, 159, 27, 82, 102, 160, 241, 95, 29, 89, 169, 27, 120, 127, + 209, 0, 252, 25, 84, 230, 68, 9, 26, 222, 59, 27, 196, 131, 227, 225, 218, 63, 47, 184, 27, 47, 241, 25, 128, 119, + 239, 197, 150, 27, 235, 211, 170, 85, 227, 229, 145, 228, 71, 92, 33, 130, 65, 24, 183, 238, 27, 254, 74, 234, + 147, 72, 216, 148, 239, 27, 35, 67, 136, 135, 77, 205, 210, 160, 255, 255, 27, 78, 82, 216, 206, 16, 197, 49, 216, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1547, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16092492469740388123" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "72bd5752739b6bad67926c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10744187461117813903" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8560285453148159183" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13403304991501709570" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d82" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15720802952000168433" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8dbf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16589387169075696105" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bdf5404a3b9863f1b9f9f4b72bd5752739b6bad67926cbf1b951b05921c22248f1b76cc3e43ead6fccf1bba021ae042adf102428d821bda2b82fe11e1e1f1428dbf1be63957bc662e11e941d6ffffa09f13ffffff", + "cborBytes": [ + 216, 102, 159, 27, 223, 84, 4, 163, 185, 134, 63, 27, 159, 159, 75, 114, 189, 87, 82, 115, 155, 107, 173, 103, + 146, 108, 191, 27, 149, 27, 5, 146, 28, 34, 36, 143, 27, 118, 204, 62, 67, 234, 214, 252, 207, 27, 186, 2, 26, + 224, 66, 173, 241, 2, 66, 141, 130, 27, 218, 43, 130, 254, 17, 225, 225, 241, 66, 141, 191, 27, 230, 57, 87, 188, + 102, 46, 17, 233, 65, 214, 255, 255, 160, 159, 19, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1548, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5742045961220962847" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0301185ed8ddab36a3286a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5d4c1e4aad32ccf5e1c5282" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25229869" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a8d7decc38c355d3d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4966f9718da4bd10b8bb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11793126515413436954" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cd34aa83433ed4d14" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec14c82e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8747a17796" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7e05b0ee5d1018082fc6a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea4f6c4e41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7af302f5af1093bb" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17232851575912337447" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "78d0645f98" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6c6d174983db5db84" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97944300860f03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d213ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd01" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd521024e51c18267d08cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15970507220571841379" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "382513835127266327" + } + }, + { + "_tag": "ByteArray", + "bytearray": "528f1ac593" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14476227281208836990" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0608bb77784f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16091489856863347086" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7042642894250777360" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18245415959952027169" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3141887292086272426" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7666c46719" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c5699" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "95d4bd2cc8ab8ee2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99fd8669f1b4fafd8610a8aba1f9fbf4b0301185ed8ddab36a3286a4cf5d4c1e4aad32ccf5e1c52824425229869490a8d7decc38c355d3d4a4966f9718da4bd10b8bb1ba3a99a1546754a1a494cd34aa83433ed4d1444ec14c82e458747a177964bb7e05b0ee5d1018082fc6a45ea4f6c4e41487af302f5af1093bbff1bef27633469491027bf4578d0645f9849c6c6d174983db5db844797944300860f03415643d213ff42bd014bfd521024e51c18267d08cc1bdda2a3b3a4fee363ff1b054ef64e706edc1745528f1ac593ffffbf1bc8e5e4039045837e47c0608bb77784f21bdf5074c4b924218e1b61bc7e6617bf1b101bfd34bd25b02eee211b2b9a39d8811dc1aa457666c46719431c5699ffbf4895d4bd2cc8ab8ee24127ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 216, 102, 159, 27, 79, 175, 216, 97, 10, 138, 186, + 31, 159, 191, 75, 3, 1, 24, 94, 216, 221, 171, 54, 163, 40, 106, 76, 245, 212, 193, 228, 170, 211, 44, 207, 94, + 28, 82, 130, 68, 37, 34, 152, 105, 73, 10, 141, 125, 236, 195, 140, 53, 93, 61, 74, 73, 102, 249, 113, 141, 164, + 189, 16, 184, 187, 27, 163, 169, 154, 21, 70, 117, 74, 26, 73, 76, 211, 74, 168, 52, 51, 237, 77, 20, 68, 236, 20, + 200, 46, 69, 135, 71, 161, 119, 150, 75, 183, 224, 91, 14, 229, 209, 1, 128, 130, 252, 106, 69, 234, 79, 108, 78, + 65, 72, 122, 243, 2, 245, 175, 16, 147, 187, 255, 27, 239, 39, 99, 52, 105, 73, 16, 39, 191, 69, 120, 208, 100, + 95, 152, 73, 198, 198, 209, 116, 152, 61, 181, 219, 132, 71, 151, 148, 67, 0, 134, 15, 3, 65, 86, 67, 210, 19, + 255, 66, 189, 1, 75, 253, 82, 16, 36, 229, 28, 24, 38, 125, 8, 204, 27, 221, 162, 163, 179, 164, 254, 227, 99, + 255, 27, 5, 78, 246, 78, 112, 110, 220, 23, 69, 82, 143, 26, 197, 147, 255, 255, 191, 27, 200, 229, 228, 3, 144, + 69, 131, 126, 71, 192, 96, 139, 183, 119, 132, 242, 27, 223, 80, 116, 196, 185, 36, 33, 142, 27, 97, 188, 126, + 102, 23, 191, 27, 16, 27, 253, 52, 189, 37, 176, 46, 238, 33, 27, 43, 154, 57, 216, 129, 29, 193, 170, 69, 118, + 102, 196, 103, 25, 67, 28, 86, 153, 255, 191, 72, 149, 212, 189, 44, 200, 171, 142, 226, 65, 39, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1549, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10498949622802271707" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e43c24fe366009a4f3b3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17391494071346867066" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5301" + }, + { + "_tag": "ByteArray", + "bytearray": "f27097affe04e8" + }, + { + "_tag": "ByteArray", + "bytearray": "f39fb3d012ac64ac84df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4887158597028701202" + } + }, + { + "_tag": "ByteArray", + "bytearray": "044bdb7fdf" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4688af36e368" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11953014498813636665" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b91b3c30e5dd9cddb9f4ae43c24fe366009a4f3b3d8669f1bf15affb6bbf12b7a9f9f42530147f27097affe04e84af39fb3d012ac64ac84df1b43d2acd9c8e4641245044bdb7fdfff464688af36e3681ba5e1a35b5ce17039ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 145, 179, 195, 14, 93, 217, 205, 219, 159, 74, 228, 60, 36, 254, 54, 96, 9, 164, 243, 179, 216, + 102, 159, 27, 241, 90, 255, 182, 187, 241, 43, 122, 159, 159, 66, 83, 1, 71, 242, 112, 151, 175, 254, 4, 232, 74, + 243, 159, 179, 208, 18, 172, 100, 172, 132, 223, 27, 67, 210, 172, 217, 200, 228, 100, 18, 69, 4, 75, 219, 127, + 223, 255, 70, 70, 136, 175, 54, 227, 104, 27, 165, 225, 163, 91, 92, 225, 112, 57, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1550, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15600406662178962528" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14863275161025404843" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e794" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17762170073549210038" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16584505576493072653" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38e89f157ff05a44b41eeb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a8136" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "594a1bcf020b48658ba93b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7882c7" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4975de7f51e521ff6799012" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8340ef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0232f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10222969906550165816" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18057089185774093998" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "35fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "431034905206842063" + } + }, + { + "_tag": "ByteArray", + "bytearray": "105223f4b0e721" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7855758362214253463" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d87d605e309cbb" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b052e09c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17531973548337538503" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13108345637708930452" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10118516489850393628" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cfa2913e8164ec74" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6520032928935299648" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14592075946477931000" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17001417898437526663" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9781653639110282997" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17873197017118839725" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5218df82c18c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f26" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1256644540256696357" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9177092377283713666" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37258b3041b434bbcd4f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4064611678956278217" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bd87fc7346ad07c609f9f80ffbf1bce44f6028bce5fab42e7941bf67fe792e9f981b61be627fff40e5ac10d4b38e89f157ff05a44b41eeb432a81364b594a1bcf020b48658ba93b437882c7ff9fbf4ce4975de7f51e521ff6799012438340ef43f0232f1b8ddf48f7656e5138ffd8669f1bfa97aaf1a39cc6ae9f4235fb1b05fb57f66aa5e2cf47105223f4b0e7211b6d05429bdd15c39747d87d605e309cbbffff44b052e09cffd8669f1bf34e150dc83425c79fd8669f1bb5ea32e810ae9d9480ff1b8c6c31232777141cffff9f48cfa2913e8164ec74d8669f1b5a7bcf677d09ca409f1bca8177c2dd56c9f81bebf12b80525644871b87bf6a28cb134ef51bf80a59fda5f093adffff465218df82c18cbf420f261b11707f8d26ef382541221b7f5b94e512f0da8241954a37258b3041b434bbcd4fffd8669f1b386866c96a17d1c980ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 216, 127, 199, 52, 106, 208, 124, 96, 159, 159, 128, 255, 191, 27, 206, 68, 246, 2, 139, 206, + 95, 171, 66, 231, 148, 27, 246, 127, 231, 146, 233, 249, 129, 182, 27, 230, 39, 255, 244, 14, 90, 193, 13, 75, 56, + 232, 159, 21, 127, 240, 90, 68, 180, 30, 235, 67, 42, 129, 54, 75, 89, 74, 27, 207, 2, 11, 72, 101, 139, 169, 59, + 67, 120, 130, 199, 255, 159, 191, 76, 228, 151, 93, 231, 245, 30, 82, 31, 246, 121, 144, 18, 67, 131, 64, 239, 67, + 240, 35, 47, 27, 141, 223, 72, 247, 101, 110, 81, 56, 255, 216, 102, 159, 27, 250, 151, 170, 241, 163, 156, 198, + 174, 159, 66, 53, 251, 27, 5, 251, 87, 246, 106, 165, 226, 207, 71, 16, 82, 35, 244, 176, 231, 33, 27, 109, 5, 66, + 155, 221, 21, 195, 151, 71, 216, 125, 96, 94, 48, 156, 187, 255, 255, 68, 176, 82, 224, 156, 255, 216, 102, 159, + 27, 243, 78, 21, 13, 200, 52, 37, 199, 159, 216, 102, 159, 27, 181, 234, 50, 232, 16, 174, 157, 148, 128, 255, 27, + 140, 108, 49, 35, 39, 119, 20, 28, 255, 255, 159, 72, 207, 162, 145, 62, 129, 100, 236, 116, 216, 102, 159, 27, + 90, 123, 207, 103, 125, 9, 202, 64, 159, 27, 202, 129, 119, 194, 221, 86, 201, 248, 27, 235, 241, 43, 128, 82, 86, + 68, 135, 27, 135, 191, 106, 40, 203, 19, 78, 245, 27, 248, 10, 89, 253, 165, 240, 147, 173, 255, 255, 70, 82, 24, + 223, 130, 193, 140, 191, 66, 15, 38, 27, 17, 112, 127, 141, 38, 239, 56, 37, 65, 34, 27, 127, 91, 148, 229, 18, + 240, 218, 130, 65, 149, 74, 55, 37, 139, 48, 65, 180, 52, 187, 205, 79, 255, 216, 102, 159, 27, 56, 104, 102, 201, + 106, 23, 209, 201, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1551, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5929398175327449833" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + ] + }, + "cborHex": "d905069fd8669f1b52497439a43df2e980ff1bffffffffffffffeeff", + "cborBytes": [ + 217, 5, 6, 159, 216, 102, 159, 27, 82, 73, 116, 57, 164, 61, 242, 233, 128, 255, 27, 255, 255, 255, 255, 255, 255, + 255, 238, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1552, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7085193853806680524" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12253968359242187141" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07" + }, + { + "_tag": "ByteArray", + "bytearray": "6f7265e05bf94b01778110" + }, + { + "_tag": "ByteArray", + "bytearray": "0bf80402" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2521901366012019096" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9077203339446925042" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13867845740122142100" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16490010139716447489" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1509d0a30b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17227709094078423116" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8719149506662191607" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17408923037403114281" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c72c9384d" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b6253aa4564ed99cc9fd8669f1bfffffffffffffffa9fd8669f1baa0ed74c6581c1859f41074b6f7265e05bf94b01778110440bf80402ffffbf1b22ff97ee47b80198416c1b7df8b45819b936f21bc0747c39c3e4f5941be4d848dab0636d01451509d0a30b1bef151e250e4fa04c1b7900a447c01f51f71bf198eb441e86eb29459c72c9384dffffffa080ffff", + "cborBytes": [ + 216, 102, 159, 27, 98, 83, 170, 69, 100, 237, 153, 204, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 250, 159, 216, 102, 159, 27, 170, 14, 215, 76, 101, 129, 193, 133, 159, 65, 7, 75, 111, 114, 101, 224, 91, 249, + 75, 1, 119, 129, 16, 68, 11, 248, 4, 2, 255, 255, 191, 27, 34, 255, 151, 238, 71, 184, 1, 152, 65, 108, 27, 125, + 248, 180, 88, 25, 185, 54, 242, 27, 192, 116, 124, 57, 195, 228, 245, 148, 27, 228, 216, 72, 218, 176, 99, 109, 1, + 69, 21, 9, 208, 163, 11, 27, 239, 21, 30, 37, 14, 79, 160, 76, 27, 121, 0, 164, 71, 192, 31, 81, 247, 27, 241, + 152, 235, 68, 30, 134, 235, 41, 69, 156, 114, 201, 56, 77, 255, 255, 255, 160, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1553, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7283080798733277579" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d22ffbaadc45621cbeee8f89" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1832702097573187029" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8604094036415927242" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a0101be0304ad044502de" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3104879514360933875" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5669117859331082668" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3882003662702261767" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13717485268469726024" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2d0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15982069581764169512" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12923262881412082724" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6512b36626f7198b9fbf0e4cd22ffbaadc45621cbeee8f891bfffffffffffffff71b196f10d900f68dd5ff1b7767e1f08ea0d3cabf0f4b1a0101be0304ad044502de120c1b2b16bf77cbdeedf341001b4eacc0a8234089ac1b35dfa5c3742236071bbe5e4c2c5ecabb4842b2d01bddcbb79ba4a10f281bb358a71ec98eec24ffffff", + "cborBytes": [ + 216, 102, 159, 27, 101, 18, 179, 102, 38, 247, 25, 139, 159, 191, 14, 76, 210, 47, 251, 170, 220, 69, 98, 28, 190, + 238, 143, 137, 27, 255, 255, 255, 255, 255, 255, 255, 247, 27, 25, 111, 16, 217, 0, 246, 141, 213, 255, 27, 119, + 103, 225, 240, 142, 160, 211, 202, 191, 15, 75, 26, 1, 1, 190, 3, 4, 173, 4, 69, 2, 222, 18, 12, 27, 43, 22, 191, + 119, 203, 222, 237, 243, 65, 0, 27, 78, 172, 192, 168, 35, 64, 137, 172, 27, 53, 223, 165, 195, 116, 34, 54, 7, + 27, 190, 94, 76, 44, 94, 202, 187, 72, 66, 178, 208, 27, 221, 203, 183, 155, 164, 161, 15, 40, 27, 179, 88, 167, + 30, 201, 142, 236, 36, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1554, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12981436777421068170" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "affc0001bf31" + }, + { + "_tag": "ByteArray", + "bytearray": "07044e07" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bb42753f8705fd78a9f46affc0001bf314407044e0780ffff", + "cborBytes": [ + 216, 102, 159, 27, 180, 39, 83, 248, 112, 95, 215, 138, 159, 70, 175, 252, 0, 1, 191, 49, 68, 7, 4, 78, 7, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1555, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "162e35e686" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4e619a73ae5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14678430173921099863" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93c0099e176b6940ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1212274a79ba710f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9470776454e98c9b453c8a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a22f39530dc5a3faf36665" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0d479d237" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6528093029258563131" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c18a0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15359195349554163378" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "01ff8bfa" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f9fbf45162e35e68646b4e619a73ae5415c1bcbb4427938f140574993c0099e176b6940ab49a1212274a79ba710f64b9470776454e98c9b453c8a4ba22f39530dc5a3faf3666545b0d479d2371b5a987205d5a90e3b43c18a0f1bd526d2cb3e01eeb2ffff4401ff8bfaffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 159, 191, 69, 22, 46, 53, 230, 134, 70, 180, 230, + 25, 167, 58, 229, 65, 92, 27, 203, 180, 66, 121, 56, 241, 64, 87, 73, 147, 192, 9, 158, 23, 107, 105, 64, 171, 73, + 161, 33, 34, 116, 167, 155, 167, 16, 246, 75, 148, 112, 119, 100, 84, 233, 140, 155, 69, 60, 138, 75, 162, 47, 57, + 83, 13, 197, 163, 250, 243, 102, 101, 69, 176, 212, 121, 210, 55, 27, 90, 152, 114, 5, 213, 169, 14, 59, 67, 193, + 138, 15, 27, 213, 38, 210, 203, 62, 1, 238, 178, 255, 255, 68, 1, 255, 139, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1556, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6182336675679277497" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10450887507241351531" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "004ec0" + } + ] + } + ] + }, + "cborHex": "d8669f1b55cc12737bbb91b99f1b910902d110b0396b809fa043004ec0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 85, 204, 18, 115, 123, 187, 145, 185, 159, 27, 145, 9, 2, 209, 16, 176, 57, 107, 128, 159, 160, + 67, 0, 78, 192, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1557, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17007437296620283228" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6345703312285019446" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12927962943748623468" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17457274723369246741" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02933f1581b19a8ebd07" + }, + { + "_tag": "ByteArray", + "bytearray": "151d152e05" + }, + { + "_tag": "ByteArray", + "bytearray": "8d943d36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14209763506348861276" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1653560911745443076" + } + } + ] + }, + "cborHex": "d9050d9f9f1bec068e1cacc8255cd8669f1b5810778aa2c4ad3680ffff9fd8669f1bb36959cd538ccc6c9f1bf244b2de48d460154a02933f1581b19a8ebd0745151d152e05448d943d361bc533389f5a3ba75cffffff1b16f2a0e3670ee504ff", + "cborBytes": [ + 217, 5, 13, 159, 159, 27, 236, 6, 142, 28, 172, 200, 37, 92, 216, 102, 159, 27, 88, 16, 119, 138, 162, 196, 173, + 54, 128, 255, 255, 159, 216, 102, 159, 27, 179, 105, 89, 205, 83, 140, 204, 108, 159, 27, 242, 68, 178, 222, 72, + 212, 96, 21, 74, 2, 147, 63, 21, 129, 177, 154, 142, 189, 7, 69, 21, 29, 21, 46, 5, 68, 141, 148, 61, 54, 27, 197, + 51, 56, 159, 90, 59, 167, 92, 255, 255, 255, 27, 22, 242, 160, 227, 103, 14, 229, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1558, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8896791406492082213" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15586409962618592631" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11449250288774337853" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12303377611080523595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f5e4c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16766381943291444576" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9718171676942195741" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17811474531367780362" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5433015131754973023" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17640563674088298493" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1bbb84e59acd469f" + } + } + ] + } + ] + }, + "cborHex": "d905019fbf1b7b77c0a5a0b560251bd84e0d47d97d9d771b9ee3e87a16eed53d41111baabe60c04df2df4b435f5e4c1be8ae278b9a68fd601b86dde1a6ae66dc1d1bf72f11b79018000a1b4b65f27a1b93c75fffbf1bf4cfdf32a7b157fd481bbb84e59acd469fffff", + "cborBytes": [ + 217, 5, 1, 159, 191, 27, 123, 119, 192, 165, 160, 181, 96, 37, 27, 216, 78, 13, 71, 217, 125, 157, 119, 27, 158, + 227, 232, 122, 22, 238, 213, 61, 65, 17, 27, 170, 190, 96, 192, 77, 242, 223, 75, 67, 95, 94, 76, 27, 232, 174, + 39, 139, 154, 104, 253, 96, 27, 134, 221, 225, 166, 174, 102, 220, 29, 27, 247, 47, 17, 183, 144, 24, 0, 10, 27, + 75, 101, 242, 122, 27, 147, 199, 95, 255, 191, 27, 244, 207, 223, 50, 167, 177, 87, 253, 72, 27, 187, 132, 229, + 154, 205, 70, 159, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1559, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3553899855082960208" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1708" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "023dfe310dd5ce52" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "39c7754d3be9f2e6392225df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04fc06fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9c8ee8cee1184" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf5fb7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4bff7bf7104205fbfd0306" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4162663053034334913" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3151fd16bd8835509f9fbf42170848023dfe310dd5ce52ffff1bfffffffffffffffebf4c39c7754d3be9f2e6392225df4404fc06fa414b1047a9c8ee8cee11841bfffffffffffffff443cf5fb74b4bff7bf7104205fbfd0306ffd87d809f1b39c4bffdf3c12ac1ffffff", + "cborBytes": [ + 216, 102, 159, 27, 49, 81, 253, 22, 189, 136, 53, 80, 159, 159, 191, 66, 23, 8, 72, 2, 61, 254, 49, 13, 213, 206, + 82, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 254, 191, 76, 57, 199, 117, 77, 59, 233, 242, 230, 57, 34, + 37, 223, 68, 4, 252, 6, 250, 65, 75, 16, 71, 169, 200, 238, 140, 238, 17, 132, 27, 255, 255, 255, 255, 255, 255, + 255, 244, 67, 207, 95, 183, 75, 75, 255, 123, 247, 16, 66, 5, 251, 253, 3, 6, 255, 216, 125, 128, 159, 27, 57, + 196, 191, 253, 243, 193, 42, 193, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1560, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3152598009298574446" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f1b2bc0472fafd85c6effff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 27, 43, 192, 71, 47, 175, 216, 92, 110, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1561, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3147939673257963325" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9061c73269" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "900481536207135322" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5962535084646807917" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8471949580641135838" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17376413634692719654" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17357796495978421372" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11127892291939672036" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6020518921442705673" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17780099277631257208" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8b0ee7f62168b8011276" + }, + { + "_tag": "ByteArray", + "bytearray": "780d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6772750508373596591" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00c5b1c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1612043931714037826" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccab16f63227" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4433801617749613549" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f95eaf71adfd62e918" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d441a83c357d1f90e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12643084904990697206" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3319962953770303495" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3050154639812760145" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5442364617789533837" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1fc7bce1a2a0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12157785635930790740" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b3d6738aca46596f84" + }, + { + "_tag": "ByteArray", + "bytearray": "0d2e" + } + ] + } + ] + }, + "cborHex": "d905099f1b2bafba744ee66f3d459061c73269bf1b0c7f272fac6ca25a1b52bf2e11912d396d1b75926941dd226cde1bf1256c22f61d2426ffd8669f1bf0e347f292505c7c9fbf1b9a6e3714d7df1fe41b538d2e0f9c1c4109ffd8669f1bf6bf9a170a63fa789f4a8b0ee7f62168b801127642780d1b5dfda4b42bf459af4400c5b1c71b165f216a3823a842ffffbf46ccab16f632271b3d8807147e849bed49f95eaf71adfd62e918496d441a83c357d1f90eff1baf7542bc3312e6f61b2e12e0b76eef8007ffffd8669f1b2a54537c080c92519f1b4b8729c8f57fee8d461fc7bce1a2a01ba8b9219f05005b5449b3d6738aca46596f84420d2effffff", + "cborBytes": [ + 217, 5, 9, 159, 27, 43, 175, 186, 116, 78, 230, 111, 61, 69, 144, 97, 199, 50, 105, 191, 27, 12, 127, 39, 47, 172, + 108, 162, 90, 27, 82, 191, 46, 17, 145, 45, 57, 109, 27, 117, 146, 105, 65, 221, 34, 108, 222, 27, 241, 37, 108, + 34, 246, 29, 36, 38, 255, 216, 102, 159, 27, 240, 227, 71, 242, 146, 80, 92, 124, 159, 191, 27, 154, 110, 55, 20, + 215, 223, 31, 228, 27, 83, 141, 46, 15, 156, 28, 65, 9, 255, 216, 102, 159, 27, 246, 191, 154, 23, 10, 99, 250, + 120, 159, 74, 139, 14, 231, 246, 33, 104, 184, 1, 18, 118, 66, 120, 13, 27, 93, 253, 164, 180, 43, 244, 89, 175, + 68, 0, 197, 177, 199, 27, 22, 95, 33, 106, 56, 35, 168, 66, 255, 255, 191, 70, 204, 171, 22, 246, 50, 39, 27, 61, + 136, 7, 20, 126, 132, 155, 237, 73, 249, 94, 175, 113, 173, 253, 98, 233, 24, 73, 109, 68, 26, 131, 195, 87, 209, + 249, 14, 255, 27, 175, 117, 66, 188, 51, 18, 230, 246, 27, 46, 18, 224, 183, 110, 239, 128, 7, 255, 255, 216, 102, + 159, 27, 42, 84, 83, 124, 8, 12, 146, 81, 159, 27, 75, 135, 41, 200, 245, 127, 238, 141, 70, 31, 199, 188, 225, + 162, 160, 27, 168, 185, 33, 159, 5, 0, 91, 84, 73, 179, 214, 115, 138, 202, 70, 89, 111, 132, 66, 13, 46, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1562, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10940398341686820083" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "21f67a13586212b0d4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4c273536b71642789960" + }, + { + "_tag": "ByteArray", + "bytearray": "1b2c8d45" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6944040617997049502" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2764700511867502559" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12974831575834509550" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5205609663668560862" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7547652128556752687" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8191253426393036700" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b3c3b9cc1124744a75731" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15130626723844950863" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9267283874227478455" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16786859210270464426" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3355379636411937210" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18340161785601828087" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7769435032159921643" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "952773701042953546" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12866642648868544818" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0b29ea276432" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3779041054880472999" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3976936211137960030" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12693902470185224684" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8256926327524010980" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63a70306" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9126496010677229394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fc80f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03f986a98098fa11030505f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2644718541094982495" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b4da8c0334280bdf40" + }, + { + "_tag": "ByteArray", + "bytearray": "3af2566e29cd0e91b75b9b00" + }, + { + "_tag": "ByteArray", + "bytearray": "a902fcd2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4993889816976510689" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e4801f00797" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30dbdbde" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd7c7286" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "235c4731" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9f1bffffffffffffffed1b97d41a53b983fcf39f4921f67a13586212b0d49f4a4c273536b71642789960441b2c8d451b605e3026a5991e9effbf1b265e3077b033ffdf1bb40fdc931a2340ee1b483e0a689a4e23de1b68bea59f2ad89f2f1b71ad2d97995bb79c4b0b3c3b9cc1124744a757311bd1fac8d6ffcf8b4f1b809c01955c08dfb71be8f6e782daaa59aa1b2e90b40072e9b1ba1bfe8557f941fda4f71b6bd293ff5d5e25ebffbf1b0d38eea211ffdd4a1bb28f7f5199b36132ff9f460b29ea2764321b3471d9d133c49fa7ffff1b3730ea69cf44185e9f1bb029cd0a9cd809ecbf1b72967ebf70a3abe44463a703061b7ea7d3c4786f975211433fc80f4c03f986a98098fa11030505f941c31b24b3ed8034db135fff9f0649b4da8c0334280bdf404c3af2566e29cd0e91b75b9b0044a902fcd21b454ddc546c534ee1ffbf462e4801f007974430dbdbde44bd7c728644235c4731ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 27, + 151, 212, 26, 83, 185, 131, 252, 243, 159, 73, 33, 246, 122, 19, 88, 98, 18, 176, 212, 159, 74, 76, 39, 53, 54, + 183, 22, 66, 120, 153, 96, 68, 27, 44, 141, 69, 27, 96, 94, 48, 38, 165, 153, 30, 158, 255, 191, 27, 38, 94, 48, + 119, 176, 51, 255, 223, 27, 180, 15, 220, 147, 26, 35, 64, 238, 27, 72, 62, 10, 104, 154, 78, 35, 222, 27, 104, + 190, 165, 159, 42, 216, 159, 47, 27, 113, 173, 45, 151, 153, 91, 183, 156, 75, 11, 60, 59, 156, 193, 18, 71, 68, + 167, 87, 49, 27, 209, 250, 200, 214, 255, 207, 139, 79, 27, 128, 156, 1, 149, 92, 8, 223, 183, 27, 232, 246, 231, + 130, 218, 170, 89, 170, 27, 46, 144, 180, 0, 114, 233, 177, 186, 27, 254, 133, 87, 249, 65, 253, 164, 247, 27, + 107, 210, 147, 255, 93, 94, 37, 235, 255, 191, 27, 13, 56, 238, 162, 17, 255, 221, 74, 27, 178, 143, 127, 81, 153, + 179, 97, 50, 255, 159, 70, 11, 41, 234, 39, 100, 50, 27, 52, 113, 217, 209, 51, 196, 159, 167, 255, 255, 27, 55, + 48, 234, 105, 207, 68, 24, 94, 159, 27, 176, 41, 205, 10, 156, 216, 9, 236, 191, 27, 114, 150, 126, 191, 112, 163, + 171, 228, 68, 99, 167, 3, 6, 27, 126, 167, 211, 196, 120, 111, 151, 82, 17, 67, 63, 200, 15, 76, 3, 249, 134, 169, + 128, 152, 250, 17, 3, 5, 5, 249, 65, 195, 27, 36, 179, 237, 128, 52, 219, 19, 95, 255, 159, 6, 73, 180, 218, 140, + 3, 52, 40, 11, 223, 64, 76, 58, 242, 86, 110, 41, 205, 14, 145, 183, 91, 155, 0, 68, 169, 2, 252, 210, 27, 69, 77, + 220, 84, 108, 83, 78, 225, 255, 191, 70, 46, 72, 1, 240, 7, 151, 68, 48, 219, 219, 222, 68, 189, 124, 114, 134, + 68, 35, 92, 71, 49, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1563, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f90190" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18377415371003738048" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6020213642702337117" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11542548883011710297" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6340630902147681234" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e0e30d355c49c73cdf8720" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ca74ff" + }, + { + "_tag": "ByteArray", + "bytearray": "4a50cb732e" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f9f43f90190d8669f1bff09b1e9867b37c09f1b538c18695d3bb45d1ba02f5f0dd67ead591b57fe72361e608bd24be0e30d355c49c73cdf8720ffffff43ca74ff454a50cb732effff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 159, 67, 249, 1, 144, 216, 102, 159, 27, 255, 9, + 177, 233, 134, 123, 55, 192, 159, 27, 83, 140, 24, 105, 93, 59, 180, 93, 27, 160, 47, 95, 13, 214, 126, 173, 89, + 27, 87, 254, 114, 54, 30, 96, 139, 210, 75, 224, 227, 13, 53, 92, 73, 199, 60, 223, 135, 32, 255, 255, 255, 67, + 202, 116, 255, 69, 74, 80, 203, 115, 46, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1564, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17299724110158664666" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b4479649a592f0" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27ce111e878e560f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a0b613300abda16" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6a6c8fa7c6c2" + } + ] + }, + "cborHex": "d8669f1bf014f76b9a4493da9f47b4479649a592f0a0bf4827ce111e878e560f486a0b613300abda16ff466a6c8fa7c6c2ffff", + "cborBytes": [ + 216, 102, 159, 27, 240, 20, 247, 107, 154, 68, 147, 218, 159, 71, 180, 71, 150, 73, 165, 146, 240, 160, 191, 72, + 39, 206, 17, 30, 135, 142, 86, 15, 72, 106, 11, 97, 51, 0, 171, 218, 22, 255, 70, 106, 108, 143, 167, 198, 194, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1565, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11671856457741232928" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7294743152628920364" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18358665991063691130" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "812e0ae8c277" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d5103" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10944928328438176384" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a508b2f88da5555141da1062" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "79a1cb276ccea307ad146e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "285224883642782876" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38d1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3136094350158129651" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4aab1208" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6484126814928133200" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70f81f89c4ab58ec" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12646078048940281491" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f57267120cc975" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13955396829806674820" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f70825f22ff83193" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3b01f5510ac3d6e2" + }, + { + "_tag": "ByteArray", + "bytearray": "8247" + }, + { + "_tag": "ByteArray", + "bytearray": "70dd498d9605127a17f6a316" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9fbf1ba1fac39bb103eb201b653c223f8428f02c1bfec7157353655f7a46812e0ae8c277430d51031b97e4325374aada8041ea4ca508b2f88da5555141da1062ff4b79a1cb276ccea307ad146e9fa0bf1b03f552853ea1549c4238d11b2b85a5321b48e9f3444aab12081b59fc3efbda605c504870f81f89c4ab58ec1baf7fe4fbd4f34e9347f57267120cc9751bc1ab877a543d438448f70825f22ff83193ff483b01f5510ac3d6e24282474c70dd498d9605127a17f6a316ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 191, 27, 161, 250, 195, 155, 177, 3, 235, 32, 27, + 101, 60, 34, 63, 132, 40, 240, 44, 27, 254, 199, 21, 115, 83, 101, 95, 122, 70, 129, 46, 10, 232, 194, 119, 67, + 13, 81, 3, 27, 151, 228, 50, 83, 116, 170, 218, 128, 65, 234, 76, 165, 8, 178, 248, 141, 165, 85, 81, 65, 218, 16, + 98, 255, 75, 121, 161, 203, 39, 108, 206, 163, 7, 173, 20, 110, 159, 160, 191, 27, 3, 245, 82, 133, 62, 161, 84, + 156, 66, 56, 209, 27, 43, 133, 165, 50, 27, 72, 233, 243, 68, 74, 171, 18, 8, 27, 89, 252, 62, 251, 218, 96, 92, + 80, 72, 112, 248, 31, 137, 196, 171, 88, 236, 27, 175, 127, 228, 251, 212, 243, 78, 147, 71, 245, 114, 103, 18, + 12, 201, 117, 27, 193, 171, 135, 122, 84, 61, 67, 132, 72, 247, 8, 37, 242, 47, 248, 49, 147, 255, 72, 59, 1, 245, + 81, 10, 195, 214, 226, 66, 130, 71, 76, 112, 221, 73, 141, 150, 5, 18, 122, 23, 246, 163, 22, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1566, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5097094273219138901" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2692577601960668773" + } + }, + { + "_tag": "ByteArray", + "bytearray": "63824516" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4232680030127303611" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6519857641067111207" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3534525063891424181" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d9050d9fd8669f1b46bc843c65e795559f9f1b255df5102709ee6544638245161b3abd800fcba0abbb1b5a7b2ffb19ebe3271b310d27d1a2f693b5ffa0a0ffffff", + "cborBytes": [ + 217, 5, 13, 159, 216, 102, 159, 27, 70, 188, 132, 60, 101, 231, 149, 85, 159, 159, 27, 37, 93, 245, 16, 39, 9, + 238, 101, 68, 99, 130, 69, 22, 27, 58, 189, 128, 15, 203, 160, 171, 187, 27, 90, 123, 47, 251, 25, 235, 227, 39, + 27, 49, 13, 39, 209, 162, 246, 147, 181, 255, 160, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1567, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14518169583256123910" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15222680697751336315" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12589665006692275723" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10296662029631364555" + } + }, + { + "_tag": "ByteArray", + "bytearray": "219d1f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "333b031fb5af6c9a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15484914779125731188" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bc97ae650bedcba069f05d8669f1bffffffffffffffef9fd8669f1bd341d370fea9f57b9f1baeb7799ee50f160b1b8ee5178fd86e1dcb43219d1fffff48333b031fb5af6c9a1bd6e577f2f2fc4f74ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 201, 122, 230, 80, 190, 220, 186, 6, 159, 5, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 239, 159, 216, 102, 159, 27, 211, 65, 211, 112, 254, 169, 245, 123, 159, 27, 174, 183, 121, 158, 229, 15, 22, + 11, 27, 142, 229, 23, 143, 216, 110, 29, 203, 67, 33, 157, 31, 255, 255, 72, 51, 59, 3, 31, 181, 175, 108, 154, + 27, 214, 229, 119, 242, 242, 252, 79, 116, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1568, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6872398402903671396" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10214430042295261585" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b5f5fa9ef980902649f1b8dc0f2014e16599180ffff", + "cborBytes": [ + 216, 102, 159, 27, 95, 95, 169, 239, 152, 9, 2, 100, 159, 27, 141, 192, 242, 1, 78, 22, 89, 145, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1569, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7955426428227947353" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6665229540768577063" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb49d8eeddc4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e54e105" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7140434995779608882" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1097215417495309474" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ce83a34d" + } + ] + }, + "cborHex": "d905019f9fbf1b6e675a2fd3480b591b5c7fa6f413f3762746fb49d8eeddc4442e54e105ffd8669f1b6317ebcc093621329f1b0f3a179be1e3cca2ffffff44ce83a34dff", + "cborBytes": [ + 217, 5, 1, 159, 159, 191, 27, 110, 103, 90, 47, 211, 72, 11, 89, 27, 92, 127, 166, 244, 19, 243, 118, 39, 70, 251, + 73, 216, 238, 221, 196, 68, 46, 84, 225, 5, 255, 216, 102, 159, 27, 99, 23, 235, 204, 9, 54, 33, 50, 159, 27, 15, + 58, 23, 155, 225, 227, 204, 162, 255, 255, 255, 68, 206, 131, 163, 77, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1570, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3681819054378129177" + }, + "fields": [] + }, + "cborHex": "d8669f1b331872ec3f79171980ff", + "cborBytes": [216, 102, 159, 27, 51, 24, 114, 236, 63, 121, 23, 25, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1571, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "320f396d0bbe623421" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "65fe53" + }, + { + "_tag": "ByteArray", + "bytearray": "ce92" + }, + { + "_tag": "ByteArray", + "bytearray": "d43e4c80d2" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10693503155209485237" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5ec50a15d7c5010424d240" + }, + { + "_tag": "ByteArray", + "bytearray": "287b9d0d475515d3" + }, + { + "_tag": "ByteArray", + "bytearray": "ccb9667a984bd52f99ec55" + }, + { + "_tag": "ByteArray", + "bytearray": "da8e70726223d5f50425" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9fd905069f49320f396d0bbe6234219f4365fe5342ce9245d43e4c80d2ff80ff9fd8669f1b9466f4768ac7bbb59f4b5ec50a15d7c5010424d24048287b9d0d475515d34bccb9667a984bd52f99ec554ada8e70726223d5f50425ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 217, 5, 6, 159, 73, 50, 15, 57, 109, 11, 190, 98, + 52, 33, 159, 67, 101, 254, 83, 66, 206, 146, 69, 212, 62, 76, 128, 210, 255, 128, 255, 159, 216, 102, 159, 27, + 148, 102, 244, 118, 138, 199, 187, 181, 159, 75, 94, 197, 10, 21, 215, 197, 1, 4, 36, 210, 64, 72, 40, 123, 157, + 13, 71, 85, 21, 211, 75, 204, 185, 102, 122, 152, 75, 213, 47, 153, 236, 85, 74, 218, 142, 112, 114, 98, 35, 213, + 245, 4, 37, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1572, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd72cb" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "433768809465781764" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6e39" + } + ] + }, + "cborHex": "d87d9f43fd72cb9fd8669f1b06050e6f1ada1e0480ffff426e39ff", + "cborBytes": [ + 216, 125, 159, 67, 253, 114, 203, 159, 216, 102, 159, 27, 6, 5, 14, 111, 26, 218, 30, 4, 128, 255, 255, 66, 110, + 57, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1573, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8270051119429050643" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14716030798573460997" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6086274367293133586" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0fef87a1d9a5" + } + ] + } + ] + } + ] + }, + "cborHex": "d87a9f9f9f1b72c51fad2fe3e1131bcc39d80adcadde051b5476ca4a64129312460fef87a1d9a5ffffff", + "cborBytes": [ + 216, 122, 159, 159, 159, 27, 114, 197, 31, 173, 47, 227, 225, 19, 27, 204, 57, 216, 10, 220, 173, 222, 5, 27, 84, + 118, 202, 74, 100, 18, 147, 18, 70, 15, 239, 135, 161, 217, 165, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1574, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13032146372369976365" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9803739804816065493" + } + } + ] + }, + "cborHex": "d8669f1bb4db7c1412020c2d9f1b880de168f86b43d5ffff", + "cborBytes": [ + 216, 102, 159, 27, 180, 219, 124, 20, 18, 2, 12, 45, 159, 27, 136, 13, 225, 104, 248, 107, 67, 213, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1575, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8681924178213249597" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1394776951647893620" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8309220116724670227" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16319691780347976530" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17756342045424593349" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4416427693577722605" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18445516112845015581" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a099cc90c7a7" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "594816311291651326" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13677269786922093632" + } + } + ] + }, + "cborHex": "d8669f1b787c640a9146a23d9fd8669f1b135b3e3f67dff8749f1b735047ac09e75f131be27b31357380db52d8669f1bf66b33035fdda9c59f1b3d4a4d968be5daed1bfffba32d14df0a1d46a099cc90c7a7ffffffff1b084136489d25a4fe1bbdcf6c67eaac8c40ffff", + "cborBytes": [ + 216, 102, 159, 27, 120, 124, 100, 10, 145, 70, 162, 61, 159, 216, 102, 159, 27, 19, 91, 62, 63, 103, 223, 248, + 116, 159, 27, 115, 80, 71, 172, 9, 231, 95, 19, 27, 226, 123, 49, 53, 115, 128, 219, 82, 216, 102, 159, 27, 246, + 107, 51, 3, 95, 221, 169, 197, 159, 27, 61, 74, 77, 150, 139, 229, 218, 237, 27, 255, 251, 163, 45, 20, 223, 10, + 29, 70, 160, 153, 204, 144, 199, 167, 255, 255, 255, 255, 27, 8, 65, 54, 72, 157, 37, 164, 254, 27, 189, 207, 108, + 103, 234, 172, 140, 64, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1576, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11974368904795732795" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15104622476155025094" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9fe6" + } + ] + } + ] + }, + "cborHex": "d8669f1ba62d811373d53b3b9fd8669f1bd19e661d4599f6c69f429fe6ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 166, 45, 129, 19, 115, 213, 59, 59, 159, 216, 102, 159, 27, 209, 158, 102, 29, 69, 153, 246, + 198, 159, 66, 159, 230, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1577, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5814093573762971941" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4aff4f" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "883e25f6e24f3e2b1f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + }, + "cborHex": "d87e9f9f1b50afcf4d0b05f925ffbf4101434aff4fff49883e25f6e24f3e2b1f1bffffffffffffffefff", + "cborBytes": [ + 216, 126, 159, 159, 27, 80, 175, 207, 77, 11, 5, 249, 37, 255, 191, 65, 1, 67, 74, 255, 79, 255, 73, 136, 62, 37, + 246, 226, 79, 62, 43, 31, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1578, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03479f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18af28c80969a50d6982d57b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a9f2bd4e848f122" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32196670c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0227" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73000807" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "016e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6597068139209766905" + } + } + } + ] + } + ] + }, + "cborHex": "d87d9f01bf4303479f4c18af28c80969a50d6982d57b481a9f2bd4e848f12241494532196670c4420227447300080742016e41fd1b5b8d7e8514a537f9ffff", + "cborBytes": [ + 216, 125, 159, 1, 191, 67, 3, 71, 159, 76, 24, 175, 40, 200, 9, 105, 165, 13, 105, 130, 213, 123, 72, 26, 159, 43, + 212, 232, 72, 241, 34, 65, 73, 69, 50, 25, 102, 112, 196, 66, 2, 39, 68, 115, 0, 8, 7, 66, 1, 110, 65, 253, 27, + 91, 141, 126, 133, 20, 165, 55, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1579, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16940452749835240715" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8772863969693476740" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5493852798051870539" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6660084913487333234" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4206" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67c9f0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "969d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "950c278d804399a86f3778" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2043253148052253721" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aeafb4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9765715843865181190" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14858287469498106443" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16392250183183835895" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11d2c70297f1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16586262020549772926" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8949962743839829080" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1beb1894058838050b9f1b79bf794cc0672784bf1b4c3e16031c2ae74b1b5c6d5ff13259c7724242064367c9f042969d4b950c278d804399a86f3778ffbf1b1c5b17e99bda6c1943aeafb41b8786cad1aafcfc061bce333dbb1e12824b1be37cf8b1160122f74611d2c70297f11be62e3d6e0e6c067e1b7c34a7b2538dac58ffffff", + "cborBytes": [ + 216, 102, 159, 27, 235, 24, 148, 5, 136, 56, 5, 11, 159, 27, 121, 191, 121, 76, 192, 103, 39, 132, 191, 27, 76, + 62, 22, 3, 28, 42, 231, 75, 27, 92, 109, 95, 241, 50, 89, 199, 114, 66, 66, 6, 67, 103, 201, 240, 66, 150, 157, + 75, 149, 12, 39, 141, 128, 67, 153, 168, 111, 55, 120, 255, 191, 27, 28, 91, 23, 233, 155, 218, 108, 25, 67, 174, + 175, 180, 27, 135, 134, 202, 209, 170, 252, 252, 6, 27, 206, 51, 61, 187, 30, 18, 130, 75, 27, 227, 124, 248, 177, + 22, 1, 34, 247, 70, 17, 210, 199, 2, 151, 241, 27, 230, 46, 61, 110, 14, 108, 6, 126, 27, 124, 52, 167, 178, 83, + 141, 172, 88, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1580, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1c8c9e10c91b4fbacffc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18373529128824317263" + } + } + ] + }, + "cborHex": "d905099f4a1c8c9e10c91b4fbacffc1bfefbe36541dda54fff", + "cborBytes": [ + 217, 5, 9, 159, 74, 28, 140, 158, 16, 201, 27, 79, 186, 207, 252, 27, 254, 251, 227, 101, 65, 221, 165, 79, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1581, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3327753638489515889" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10658965427136941761" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5013355233099786974" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10467244256597769437" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16545336340859960946" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9bdcf8026e" + }, + { + "_tag": "ByteArray", + "bytearray": "226ee9f9" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b2e2e8e4d922e67719fa0d8669f1b93ec409515aacec19fd8669f1b45930405c9c22ade9f1b91431f318bc1fcdd1be59cd7bdb651be72459bdcf8026e44226ee9f9ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 46, 46, 142, 77, 146, 46, 103, 113, 159, 160, 216, 102, 159, 27, 147, 236, 64, 149, 21, 170, + 206, 193, 159, 216, 102, 159, 27, 69, 147, 4, 5, 201, 194, 42, 222, 159, 27, 145, 67, 31, 49, 139, 193, 252, 221, + 27, 229, 156, 215, 189, 182, 81, 190, 114, 69, 155, 220, 248, 2, 110, 68, 34, 110, 233, 249, 255, 255, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1582, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9218590074295405984" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6291169238790482662" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15123300119313552048" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13799133906756278478" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b6d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1df98dae4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5f14dab3ec733b17abef6c0" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7fef02d49451cda09fbf1b574eb91733f8aae61bd1e0c154f34e92b01bbf805f2d604198ce421b6d45b1df98dae44cb5f14dab3ec733b17abef6c0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 127, 239, 2, 212, 148, 81, 205, 160, 159, 191, 27, 87, 78, 185, 23, 51, 248, 170, 230, 27, 209, + 224, 193, 84, 243, 78, 146, 176, 27, 191, 128, 95, 45, 96, 65, 152, 206, 66, 27, 109, 69, 177, 223, 152, 218, 228, + 76, 181, 241, 77, 171, 62, 199, 51, 177, 122, 190, 246, 192, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1583, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "35ea" + }, + { + "_tag": "ByteArray", + "bytearray": "fd3f1cc06084" + }, + { + "_tag": "ByteArray", + "bytearray": "01cd51" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6022487132684485812" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4308200577773711684" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7777571005280979339" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0ad75276c1148d9dceeced91" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10759405674114514274" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6173f5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15066489149063629978" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f5fffaa0ac0fd0" + }, + { + "_tag": "ByteArray", + "bytearray": "9a64b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5707127432052008566" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905039f4235ea46fd3f1cc060844301cd51a0d8669f1b53942c23800504b49fd8669f1b3bc9cd998355b14480ffd8669f1b6bef7b9f3926898b9f4c0ad75276c1148d9dceeced911b955116746feafd62ffff436173f5d8669f1bd116ec0e2e370c9a9f47f5fffaa0ac0fd0439a64b71b4f33ca296b58e676ffffffffff", + "cborBytes": [ + 217, 5, 3, 159, 66, 53, 234, 70, 253, 63, 28, 192, 96, 132, 67, 1, 205, 81, 160, 216, 102, 159, 27, 83, 148, 44, + 35, 128, 5, 4, 180, 159, 216, 102, 159, 27, 59, 201, 205, 153, 131, 85, 177, 68, 128, 255, 216, 102, 159, 27, 107, + 239, 123, 159, 57, 38, 137, 139, 159, 76, 10, 215, 82, 118, 193, 20, 141, 157, 206, 236, 237, 145, 27, 149, 81, + 22, 116, 111, 234, 253, 98, 255, 255, 67, 97, 115, 245, 216, 102, 159, 27, 209, 22, 236, 14, 46, 55, 12, 154, 159, + 71, 245, 255, 250, 160, 172, 15, 208, 67, 154, 100, 183, 27, 79, 51, 202, 41, 107, 88, 230, 118, 255, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1584, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6649259333034779713" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "159731071251084294" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6885107321661739434" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2643724054319266182" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12874632578531295356" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6944744753647985231" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14358909441889141565" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10549831147619202735" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9338388762264036099" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11752463950143635209" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4312367899293351836" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16361930528243312171" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "261144212919178006" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b5c46ea2254fd24419fbf1b02377a90218374061b5f8cd0a15416d1aa1b24b0650535daf9861bb2abe21e1107807c1b6060b08f00f2224f1bc745180f85ce033d1b926887888a31b6af1b81989f1a353f63031ba31923b207e53f091b3bd89bc1aa2d7f9c1be31141204f8fe62b1b039fc5472e325316ffffff", + "cborBytes": [ + 216, 102, 159, 27, 92, 70, 234, 34, 84, 253, 36, 65, 159, 191, 27, 2, 55, 122, 144, 33, 131, 116, 6, 27, 95, 140, + 208, 161, 84, 22, 209, 170, 27, 36, 176, 101, 5, 53, 218, 249, 134, 27, 178, 171, 226, 30, 17, 7, 128, 124, 27, + 96, 96, 176, 143, 0, 242, 34, 79, 27, 199, 69, 24, 15, 133, 206, 3, 61, 27, 146, 104, 135, 136, 138, 49, 182, 175, + 27, 129, 152, 159, 26, 53, 63, 99, 3, 27, 163, 25, 35, 178, 7, 229, 63, 9, 27, 59, 216, 155, 193, 170, 45, 127, + 156, 27, 227, 17, 65, 32, 79, 143, 230, 43, 27, 3, 159, 197, 71, 46, 50, 83, 22, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1585, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8666766776771193740" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + }, + "cborHex": "d8669f1b78468a77089aab8c9f801bffffffffffffffefffff", + "cborBytes": [ + 216, 102, 159, 27, 120, 70, 138, 119, 8, 154, 171, 140, 159, 128, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1586, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed6c768ada3950" + } + ] + } + ] + }, + "cborHex": "d87b9fa0d905059f47ed6c768ada3950ffff", + "cborBytes": [216, 123, 159, 160, 217, 5, 5, 159, 71, 237, 108, 118, 138, 218, 57, 80, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1587, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05618d72" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "743ebcda743f9fa63320" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2875" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11333308408542238944" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cff77793050758420383d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5860945438322504858" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2d4b208e875ec95f237a01b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "185d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "39" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1060618542059544537" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b383d20e8b8913fabd9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3628975618280697842" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "147787499231102622" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "751769086987891513" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0793815021d831d6a0a7c8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1668246749054649552" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64c062b17f375a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4278995133131899488" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de1555618b93e7b0b4dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5301114147153757052" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "423dea97a6839eeb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17460449643249940804" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7414652880611078254" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17412207839264871150" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4152175993965232302" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11573801520581889664" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64" + } + ] + } + ] + } + ] + }, + "cborHex": "d9050c9f9fbf4405618d724a743ebcda743f9fa633204228751b9d47fff37d1b98e04b3cff77793050758420383d1b515642d2d328b49a4ca2d4b208e875ec95f237a01b42185dff9f41391b0eb812f1d1a6dfd94a4b383d20e8b8913fabd91b325cb619022caff2ffffbf1b020d0bf291e9c69e41101b0a6ed200670873394b0793815021d831d6a0a7c81b1726cd945b1a44d04764c062b17f375a1b3b620b6709f3c2604ade1555618b93e7b0b4dd1b4991573af6e5c37c48423dea97a6839eeb1bf24ffa70ec8239441b66e62382a9a6706effd8669f1bf1a496c6a6a792ee9f9f1b399f7e113d33c0ae1ba09e67298f28ce804164ffffffff", + "cborBytes": [ + 217, 5, 12, 159, 159, 191, 68, 5, 97, 141, 114, 74, 116, 62, 188, 218, 116, 63, 159, 166, 51, 32, 66, 40, 117, 27, + 157, 71, 255, 243, 125, 27, 152, 224, 75, 60, 255, 119, 121, 48, 80, 117, 132, 32, 56, 61, 27, 81, 86, 66, 210, + 211, 40, 180, 154, 76, 162, 212, 178, 8, 232, 117, 236, 149, 242, 55, 160, 27, 66, 24, 93, 255, 159, 65, 57, 27, + 14, 184, 18, 241, 209, 166, 223, 217, 74, 75, 56, 61, 32, 232, 184, 145, 63, 171, 217, 27, 50, 92, 182, 25, 2, 44, + 175, 242, 255, 255, 191, 27, 2, 13, 11, 242, 145, 233, 198, 158, 65, 16, 27, 10, 110, 210, 0, 103, 8, 115, 57, 75, + 7, 147, 129, 80, 33, 216, 49, 214, 160, 167, 200, 27, 23, 38, 205, 148, 91, 26, 68, 208, 71, 100, 192, 98, 177, + 127, 55, 90, 27, 59, 98, 11, 103, 9, 243, 194, 96, 74, 222, 21, 85, 97, 139, 147, 231, 176, 180, 221, 27, 73, 145, + 87, 58, 246, 229, 195, 124, 72, 66, 61, 234, 151, 166, 131, 158, 235, 27, 242, 79, 250, 112, 236, 130, 57, 68, 27, + 102, 230, 35, 130, 169, 166, 112, 110, 255, 216, 102, 159, 27, 241, 164, 150, 198, 166, 167, 146, 238, 159, 159, + 27, 57, 159, 126, 17, 61, 51, 192, 174, 27, 160, 158, 103, 41, 143, 40, 206, 128, 65, 100, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1588, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15591738657985084431" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29fd8669f1bd860fbb36bed3c0f9f8080ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 216, 102, 159, 27, 216, 96, 251, 179, 107, 237, + 60, 15, 159, 128, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1589, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1021034361246158212" + }, + "fields": [] + }, + "cborHex": "d8669f1b0e2b7157858b8d8480ff", + "cborBytes": [216, 102, 159, 27, 14, 43, 113, 87, 133, 139, 141, 132, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1590, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13265414325959690442" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15218012142795260735" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1292982203359940276" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3857148453080968590" + } + }, + { + "_tag": "ByteArray", + "bytearray": "46acba1304f124" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13037190620784921448" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10047877464257037000" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13813023601667055254" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10370517726619325641" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bf2433c14ccc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4847279923330873604" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fcf491" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ab6b619bc8" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d562d949" + } + ] + }, + "cborHex": "d8669f1bb818380bd93488ca9fd9050b9f1bd3313d6a56e4833f809f1b11f19876a42bceb41b35875814ffd6ad8e4746acba1304f124ff1bb4ed67cbacf08b681b8b713b515bb182c8ffd8669f1bbfb1b7c7fb739e969fd8669f1b8feb7aed500954c99f46bf2433c14ccc1b4344ff688504f90443fcf491ffff45ab6b619bc8ffff44d562d949ffff", + "cborBytes": [ + 216, 102, 159, 27, 184, 24, 56, 11, 217, 52, 136, 202, 159, 217, 5, 11, 159, 27, 211, 49, 61, 106, 86, 228, 131, + 63, 128, 159, 27, 17, 241, 152, 118, 164, 43, 206, 180, 27, 53, 135, 88, 20, 255, 214, 173, 142, 71, 70, 172, 186, + 19, 4, 241, 36, 255, 27, 180, 237, 103, 203, 172, 240, 139, 104, 27, 139, 113, 59, 81, 91, 177, 130, 200, 255, + 216, 102, 159, 27, 191, 177, 183, 199, 251, 115, 158, 150, 159, 216, 102, 159, 27, 143, 235, 122, 237, 80, 9, 84, + 201, 159, 70, 191, 36, 51, 193, 76, 204, 27, 67, 68, 255, 104, 133, 4, 249, 4, 67, 252, 244, 145, 255, 255, 69, + 171, 107, 97, 155, 200, 255, 255, 68, 213, 98, 217, 73, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1591, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1369877535415787160" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "39" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1262589690412446369" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "574514a30518" + }, + { + "_tag": "ByteArray", + "bytearray": "cea0e8968499e287" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7401218205451046248" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b1302c85c4c3ede989f9f4139d8669f1b11859ea24a1ab2a19f46574514a3051848cea0e8968499e2871b66b668be99104d68ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 19, 2, 200, 92, 76, 62, 222, 152, 159, 159, 65, 57, 216, 102, 159, 27, 17, 133, 158, 162, 74, + 26, 178, 161, 159, 70, 87, 69, 20, 163, 5, 24, 72, 206, 160, 232, 150, 132, 153, 226, 135, 27, 102, 182, 104, 190, + 153, 16, 77, 104, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1592, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15547688901658080488" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14245678598403592042" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cd499deaa799a2e92a7477" + } + ] + }, + "cborHex": "d8669f1bd7c47cae4d9cf4e89fa01bc5b2d1355a3b0f6a4bcd499deaa799a2e92a7477ffff", + "cborBytes": [ + 216, 102, 159, 27, 215, 196, 124, 174, 77, 156, 244, 232, 159, 160, 27, 197, 178, 209, 53, 90, 59, 15, 106, 75, + 205, 73, 157, 234, 167, 153, 162, 233, 42, 116, 119, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1593, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10917242506349838069" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12187346655643629207" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15125078027997570349" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "77fdc0765e0b99359548" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10524700091489071644" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2fe1cdd73aee1d1636b0ce56" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3443941467679445458" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a3100f35" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "859506384082447367" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "56" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "50e7c819a28c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18218904157872043125" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a96af8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12552143845675683995" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7950645339893926724" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6377833d637d9e42" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9719009156567468001" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "552f41eb8048f2e205" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0c87db5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14436881758770809179" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5736583202088522575" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4988c137be85edaf840" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21b4f733" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8af053eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41aa504ac4d7d54048f1a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "604517b7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "818b753298f8c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12257015591481671399" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b9781d637adc6fef59fd8669f1ba9222736442ef6979f1bd1e7125492dc652d9f4a77fdc0765e0b993595481b920f3ef890ba321c4c2fe1cdd73aee1d1636b0ce561b2fcb5684a04551d244a3100f35ff9f1b0bed9480a16a2c07ff4156bf4650e7c819a28c1bfcd68ccdbed9b47543a96af81bae322c52d31ad09bffffffbf1b6e565dcff37e0b44486377833d637d9e421b86e0db5599f907e149552f41eb8048f2e20544e0c87db51bc85a1b783fd9c95bffbf1b4f9c700750f5934f4ac4988c137be85edaf8404421b4f733448af053eb4b41aa504ac4d7d54048f1a844604517b747818b753298f8c61baa19aabd70b07ee7ffffff", + "cborBytes": [ + 216, 102, 159, 27, 151, 129, 214, 55, 173, 198, 254, 245, 159, 216, 102, 159, 27, 169, 34, 39, 54, 68, 46, 246, + 151, 159, 27, 209, 231, 18, 84, 146, 220, 101, 45, 159, 74, 119, 253, 192, 118, 94, 11, 153, 53, 149, 72, 27, 146, + 15, 62, 248, 144, 186, 50, 28, 76, 47, 225, 205, 215, 58, 238, 29, 22, 54, 176, 206, 86, 27, 47, 203, 86, 132, + 160, 69, 81, 210, 68, 163, 16, 15, 53, 255, 159, 27, 11, 237, 148, 128, 161, 106, 44, 7, 255, 65, 86, 191, 70, 80, + 231, 200, 25, 162, 140, 27, 252, 214, 140, 205, 190, 217, 180, 117, 67, 169, 106, 248, 27, 174, 50, 44, 82, 211, + 26, 208, 155, 255, 255, 255, 191, 27, 110, 86, 93, 207, 243, 126, 11, 68, 72, 99, 119, 131, 61, 99, 125, 158, 66, + 27, 134, 224, 219, 85, 153, 249, 7, 225, 73, 85, 47, 65, 235, 128, 72, 242, 226, 5, 68, 224, 200, 125, 181, 27, + 200, 90, 27, 120, 63, 217, 201, 91, 255, 191, 27, 79, 156, 112, 7, 80, 245, 147, 79, 74, 196, 152, 140, 19, 123, + 232, 94, 218, 248, 64, 68, 33, 180, 247, 51, 68, 138, 240, 83, 235, 75, 65, 170, 80, 74, 196, 215, 213, 64, 72, + 241, 168, 68, 96, 69, 23, 183, 71, 129, 139, 117, 50, 152, 248, 198, 27, 170, 25, 170, 189, 112, 176, 126, 231, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1594, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4075706767537157331" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5601194849889371362" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1722437825483410674" + } + } + ] + }, + "cborHex": "d87b9f9f1b388fd1b607b534d3ff9f1b4dbb710a216744e2ff1b17e754138fa28cf2ff", + "cborBytes": [ + 216, 123, 159, 159, 27, 56, 143, 209, 182, 7, 181, 52, 211, 255, 159, 27, 77, 187, 113, 10, 33, 103, 68, 226, 255, + 27, 23, 231, 84, 19, 143, 162, 140, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1595, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0be9dee3ddf19760" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4dc923464366d7dac161b1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "16ef720e04d6a6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3ead9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f28daf886aebe9dd791" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14355582548087791318" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9695fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39cde9fb6728e9d8d68e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cf733b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0052ea52ffbafd9f02" + }, + { + "_tag": "ByteArray", + "bytearray": "f60502fdfa1c8dc6" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99fbf480be9dee3ddf197604b4dc923464366d7dac161b14716ef720e04d6a643a3ead94a6f28daf886aebe9dd7911bc7394644b291ded6439695fb4a39cde9fb6728e9d8d68eff43cf733b0d490052ea52ffbafd9f0248f60502fdfa1c8dc6ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 191, 72, 11, 233, 222, 227, 221, 241, 151, 96, 75, + 77, 201, 35, 70, 67, 102, 215, 218, 193, 97, 177, 71, 22, 239, 114, 14, 4, 214, 166, 67, 163, 234, 217, 74, 111, + 40, 218, 248, 134, 174, 190, 157, 215, 145, 27, 199, 57, 70, 68, 178, 145, 222, 214, 67, 150, 149, 251, 74, 57, + 205, 233, 251, 103, 40, 233, 216, 214, 142, 255, 67, 207, 115, 59, 13, 73, 0, 82, 234, 82, 255, 186, 253, 159, 2, + 72, 246, 5, 2, 253, 250, 28, 141, 198, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1596, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4183810776037329376" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18424939641998748246" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1508433182006373788" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4971389917528622902" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01c2fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3a0fe1bbe92809e09f9f1bffb288fc21592a561b14ef07fcace6ed9c1b44fdecca5a4087364301c2fc1bfffffffffffffffcffffff", + "cborBytes": [ + 216, 102, 159, 27, 58, 15, 225, 187, 233, 40, 9, 224, 159, 159, 27, 255, 178, 136, 252, 33, 89, 42, 86, 27, 20, + 239, 7, 252, 172, 230, 237, 156, 27, 68, 253, 236, 202, 90, 64, 135, 54, 67, 1, 194, 252, 27, 255, 255, 255, 255, + 255, 255, 255, 252, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1597, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1263144893984709804" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1541654113760001064" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ab1524ddb58deb1ae6" + }, + { + "_tag": "ByteArray", + "bytearray": "2d85e5e1277c065e084f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "550b5ec718f002471f62f7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c448" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12644202553887338772" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4876487542346569107" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17" + }, + { + "_tag": "ByteArray", + "bytearray": "dd111d93cbfd379c83edb4" + }, + { + "_tag": "ByteArray", + "bytearray": "37b69a62d6109b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e9e8978e2b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13364301135646774566" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10120527831738192149" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17647576272713692334" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12443295630920604550" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7605780907772978993" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18221979702548580868" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4903078677155944181" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3469994731701442005" + } + } + ] + }, + "cborHex": "d8669f1b11879796b1ce9cac9fd8669f1b15650e3f992f3c289f49ab1524ddb58deb1ae64a2d85e5e1277c065e084fffff4b550b5ec718f002471f62f79f42c448d8669f1baf793b3b1c8ab1149f1b43acc395412f559341174bdd111d93cbfd379c83edb44737b69a62d6109bffff45e9e8978e2b1bb977891365935526d8669f1b8c7356712e3591159f1bf4e8c91e81b634aeffffffd8669f1bacaf7772ec315b869f801b698d29703f41a7311bfce179fecac94a041b440b3c1449ac16f580ffff1b3027e5d2db8a95d5ffff", + "cborBytes": [ + 216, 102, 159, 27, 17, 135, 151, 150, 177, 206, 156, 172, 159, 216, 102, 159, 27, 21, 101, 14, 63, 153, 47, 60, + 40, 159, 73, 171, 21, 36, 221, 181, 141, 235, 26, 230, 74, 45, 133, 229, 225, 39, 124, 6, 94, 8, 79, 255, 255, 75, + 85, 11, 94, 199, 24, 240, 2, 71, 31, 98, 247, 159, 66, 196, 72, 216, 102, 159, 27, 175, 121, 59, 59, 28, 138, 177, + 20, 159, 27, 67, 172, 195, 149, 65, 47, 85, 147, 65, 23, 75, 221, 17, 29, 147, 203, 253, 55, 156, 131, 237, 180, + 71, 55, 182, 154, 98, 214, 16, 155, 255, 255, 69, 233, 232, 151, 142, 43, 27, 185, 119, 137, 19, 101, 147, 85, 38, + 216, 102, 159, 27, 140, 115, 86, 113, 46, 53, 145, 21, 159, 27, 244, 232, 201, 30, 129, 182, 52, 174, 255, 255, + 255, 216, 102, 159, 27, 172, 175, 119, 114, 236, 49, 91, 134, 159, 128, 27, 105, 141, 41, 112, 63, 65, 167, 49, + 27, 252, 225, 121, 254, 202, 201, 74, 4, 27, 68, 11, 60, 20, 73, 172, 22, 245, 128, 255, 255, 27, 48, 39, 229, + 210, 219, 138, 149, 213, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1598, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0405" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11661129438013923075" + } + } + ] + }, + "cborHex": "d905059f80804204051ba1d4a770c8ab9f03ff", + "cborBytes": [217, 5, 5, 159, 128, 128, 66, 4, 5, 27, 161, 212, 167, 112, 200, 171, 159, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1599, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e2039774134359ee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11379674495640360297" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0759da0cff" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0205ff" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49fd905099f48e2039774134359ee1b9decb9a964375569450759da0cffff430205ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 217, 5, 9, 159, 72, 226, 3, 151, 116, 19, 67, 89, + 238, 27, 157, 236, 185, 169, 100, 55, 85, 105, 69, 7, 89, 218, 12, 255, 255, 67, 2, 5, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1600, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2821750519465715681" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4882c4aab6f2173c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16044548775934178477" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10453261997622248611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15437116113405524868" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a20db416f2bf4a28d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d7f1a3ebc30a236" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e475f241" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd928d59bcebee0f" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d1" + }, + { + "_tag": "ByteArray", + "bytearray": "fbfa52d84c" + } + ] + } + ] + }, + "cborHex": "d905079f9f9f1b2728df25ad8727e1484882c4aab6f2173c1bdea9b01aa2fc34adffbf1b91117267305d44a3417c1bd63ba750d7febb8449a20db416f2bf4a28d3485d7f1a3ebc30a236416c44e475f24148dd928d59bcebee0fff41d145fbfa52d84cffff", + "cborBytes": [ + 217, 5, 7, 159, 159, 159, 27, 39, 40, 223, 37, 173, 135, 39, 225, 72, 72, 130, 196, 170, 182, 242, 23, 60, 27, + 222, 169, 176, 26, 162, 252, 52, 173, 255, 191, 27, 145, 17, 114, 103, 48, 93, 68, 163, 65, 124, 27, 214, 59, 167, + 80, 215, 254, 187, 132, 73, 162, 13, 180, 22, 242, 191, 74, 40, 211, 72, 93, 127, 26, 62, 188, 48, 162, 54, 65, + 108, 68, 228, 117, 242, 65, 72, 221, 146, 141, 89, 188, 235, 238, 15, 255, 65, 209, 69, 251, 250, 82, 216, 76, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1601, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "800c74" + }, + { + "_tag": "ByteArray", + "bytearray": "c762d6ecd916" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "604405569910146985" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5654764212394839577" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "881493166835840102" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14372459746225254596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2533962078586642486" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8245574289796574225" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3988202682915384291" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14238417085171130949" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6862051379835011220" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2565267180599577595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14050787459973054175" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6e191f326fcf634e2" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d56be66b97a7f6a6eb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14729193502321897761" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16006436730045687884" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f9f43800c7446c762d6ecd916ff9fbf1b086347a9dec307a91b4e79c2174862ce191b0c3bb15d692f34661bc7753bfd9a5b70c41b232a7115c077a0361b726e2a21306b2c111b3758f135af6e6be31bc59904e68d7a62451b5f3ae75f8d8b80941b2399a8e8cd9b0bfb1bc2fe6cc02634fedf49c6e191f326fcf634e2ffa049d56be66b97a7f6a6eb1bcc689b73a5e37121ffd8669f1bde2249667623684c80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 159, 67, 128, 12, 116, 70, 199, 98, 214, 236, 217, + 22, 255, 159, 191, 27, 8, 99, 71, 169, 222, 195, 7, 169, 27, 78, 121, 194, 23, 72, 98, 206, 25, 27, 12, 59, 177, + 93, 105, 47, 52, 102, 27, 199, 117, 59, 253, 154, 91, 112, 196, 27, 35, 42, 113, 21, 192, 119, 160, 54, 27, 114, + 110, 42, 33, 48, 107, 44, 17, 27, 55, 88, 241, 53, 175, 110, 107, 227, 27, 197, 153, 4, 230, 141, 122, 98, 69, 27, + 95, 58, 231, 95, 141, 139, 128, 148, 27, 35, 153, 168, 232, 205, 155, 11, 251, 27, 194, 254, 108, 192, 38, 52, + 254, 223, 73, 198, 225, 145, 243, 38, 252, 246, 52, 226, 255, 160, 73, 213, 107, 230, 107, 151, 167, 246, 166, + 235, 27, 204, 104, 155, 115, 165, 227, 113, 33, 255, 216, 102, 159, 27, 222, 34, 73, 102, 118, 35, 104, 76, 128, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1602, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5939503562001358902" + }, + "fields": [] + }, + "cborHex": "d8669f1b526d5b055342203680ff", + "cborBytes": [216, 102, 159, 27, 82, 109, 91, 5, 83, 66, 32, 54, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1603, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9944567995193137306" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de4d778e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4518666255455070651" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8739542248485509830" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11466399347746117434" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6589245721800768341" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1821844254038853929" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b8a0233e72e34989a9f44de4d778ed8669f1b3eb58704b6f1a9bb9f1b7949175ef47f5ac6d8669f1b9f20d574872d973a9f1b5b71b41299b27b551b19487db24e128929ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 138, 2, 51, 231, 46, 52, 152, 154, 159, 68, 222, 77, 119, 142, 216, 102, 159, 27, 62, 181, 135, + 4, 182, 241, 169, 187, 159, 27, 121, 73, 23, 94, 244, 127, 90, 198, 216, 102, 159, 27, 159, 32, 213, 116, 135, 45, + 151, 58, 159, 27, 91, 113, 180, 18, 153, 178, 123, 85, 27, 25, 72, 125, 178, 78, 18, 137, 41, 255, 255, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1604, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b4042f0de8cf3fa9b4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c982cd793958f2ed3e3baf1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "363a97c58224" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "576bf3d68329279e5c1f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32a3e37452489cfbdd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "616b23501c05019103" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17025336328225908861" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f21f91f457acec580" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2965310065467759759" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca7132c4ac0b90" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c10cf78489cda0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc457e9d9bffc0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68ed2f1d45ac10223eb17f5b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4356494761255745714" + } + } + ] + }, + "cborHex": "d87d9f49b4042f0de8cf3fa9b4bf4c1c982cd793958f2ed3e3baf146363a97c582244a576bf3d68329279e5c1f4932a3e37452489cfbdd49616b23501c050191031bec46252fb975687d497f21f91f457acec5801b2926e5cb2d189c8f47ca7132c4ac0b9047c10cf78489cda047cc457e9d9bffc04c68ed2f1d45ac10223eb17f5bff1b3c7560e7567fb8b2ff", + "cborBytes": [ + 216, 125, 159, 73, 180, 4, 47, 13, 232, 207, 63, 169, 180, 191, 76, 28, 152, 44, 215, 147, 149, 143, 46, 211, 227, + 186, 241, 70, 54, 58, 151, 197, 130, 36, 74, 87, 107, 243, 214, 131, 41, 39, 158, 92, 31, 73, 50, 163, 227, 116, + 82, 72, 156, 251, 221, 73, 97, 107, 35, 80, 28, 5, 1, 145, 3, 27, 236, 70, 37, 47, 185, 117, 104, 125, 73, 127, + 33, 249, 31, 69, 122, 206, 197, 128, 27, 41, 38, 229, 203, 45, 24, 156, 143, 71, 202, 113, 50, 196, 172, 11, 144, + 71, 193, 12, 247, 132, 137, 205, 160, 71, 204, 69, 126, 157, 155, 255, 192, 76, 104, 237, 47, 29, 69, 172, 16, 34, + 62, 177, 127, 91, 255, 27, 60, 117, 96, 231, 86, 127, 184, 178, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1605, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8164157346661050477" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4900420627116310214" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10667016127542807190" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7225653456860180333" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af18da45" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8272402764775100856" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13961075526962049425" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15205291614904558780" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5842901235874757867" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "361527030431818516" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d905069f9fa01b714ce9d9ea20a86da0bf1b4401ca98c943bec61b9408daa6d78d4a961b6446ad892e396f6d44af18da451b72cd7a7c496111b81bc1bfb4390af8f1911bd3040c29a49ca4bc1b511627b78e017cebffd8669f1b050466eb3197231480ffffff", + "cborBytes": [ + 217, 5, 6, 159, 159, 160, 27, 113, 76, 233, 217, 234, 32, 168, 109, 160, 191, 27, 68, 1, 202, 152, 201, 67, 190, + 198, 27, 148, 8, 218, 166, 215, 141, 74, 150, 27, 100, 70, 173, 137, 46, 57, 111, 109, 68, 175, 24, 218, 69, 27, + 114, 205, 122, 124, 73, 97, 17, 184, 27, 193, 191, 180, 57, 10, 248, 241, 145, 27, 211, 4, 12, 41, 164, 156, 164, + 188, 27, 81, 22, 39, 183, 142, 1, 124, 235, 255, 216, 102, 159, 27, 5, 4, 102, 235, 49, 151, 35, 20, 128, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1606, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9562165903653948785" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bce42421c831c75788" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1796893682340582860" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10703171794331472789" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14829439683522592053" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6638858822805340328" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15252326709258208091" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53498ac0e9" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f7ffec" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6270894359948485456" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1537157608880359602" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6491318970698762964" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11877485708376832873" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15839656388328202532" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e31b3b11d6c4cb094" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16540689407245051438" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b961378040" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16781213177896105307" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c98532df0635c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16985023908166115366" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11278274066923041365" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b84b3a33a12a54d719f49bce42421c831c75788bf1b18efd948a30dd5cc1b94894e0a031b93951bcdccc0d28a71fd351b5c21f6ecd747c0a81bd3ab2654ef89c35b4553498ac0e9ff43f7ffecbf1b5706b1321cbae3501b155514b3791a48b21b5a15cc361c410ad41ba4d54e5278947b691bdbd1c390268ca124493e31b3b11d6c4cb0941be58c55612ae8662e45b9613780401be8e2d8798099f55b479c98532df0635c1bebb6ed4103c220261b9c847a824e72b255ffffff", + "cborBytes": [ + 216, 102, 159, 27, 132, 179, 163, 58, 18, 165, 77, 113, 159, 73, 188, 228, 36, 33, 200, 49, 199, 87, 136, 191, 27, + 24, 239, 217, 72, 163, 13, 213, 204, 27, 148, 137, 78, 10, 3, 27, 147, 149, 27, 205, 204, 192, 210, 138, 113, 253, + 53, 27, 92, 33, 246, 236, 215, 71, 192, 168, 27, 211, 171, 38, 84, 239, 137, 195, 91, 69, 83, 73, 138, 192, 233, + 255, 67, 247, 255, 236, 191, 27, 87, 6, 177, 50, 28, 186, 227, 80, 27, 21, 85, 20, 179, 121, 26, 72, 178, 27, 90, + 21, 204, 54, 28, 65, 10, 212, 27, 164, 213, 78, 82, 120, 148, 123, 105, 27, 219, 209, 195, 144, 38, 140, 161, 36, + 73, 62, 49, 179, 177, 29, 108, 76, 176, 148, 27, 229, 140, 85, 97, 42, 232, 102, 46, 69, 185, 97, 55, 128, 64, 27, + 232, 226, 216, 121, 128, 153, 245, 91, 71, 156, 152, 83, 45, 240, 99, 92, 27, 235, 182, 237, 65, 3, 194, 32, 38, + 27, 156, 132, 122, 130, 78, 114, 178, 85, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1607, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4003515349042870977" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7936077377382337205" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2262426365931998927" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3251857936437050490" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10141245939298539770" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2f504ecb74" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cf70d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7614382252698490764" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f7c11d11e25263aa86b219f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b05ad2e6b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13287527831705359484" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2721424241681651778" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6931713221689311548" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e58cea9f4164e6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13756917985144952135" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4981893807763512862" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6364695f02bb2ba7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16439001941984095013" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9eb98304c2cbdd17ba7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03335ab4b0886fa35f" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13637121731822332668" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12855200295149160195" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3480314231462397209" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15646651566003116849" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82905a" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e4" + } + ] + } + ] + }, + "cborHex": "d8669f1b378f57ff98863ac19fd8669f1b6e229c53dce34ab59fd8669f1b1f65c0caffdacecf9f1b2d20eb90695d7c7a1b8cbcf1737fc318fa452f504ecb74ffffbf437cf70d1b69abb850ec21d78c4c8f7c11d11e25263aa86b219f456b05ad2e6bff1bb866c8299fea147cffff1b25c470edd8925842d8669f1b6032647307ab813c9f47e58cea9f4164e6bf1bbeea64052cbf55471b45233e05e0765e1e486364695f02bb2ba71be423112b2deb2b254a9eb98304c2cbdd17ba7f4903335ab4b0886fa35fff1bbd40c9f66807aafcbf1bb266d88f04dcc7031b304c8f5aa10d85191bd92412b323ecdb314382905aff41e4ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 55, 143, 87, 255, 152, 134, 58, 193, 159, 216, 102, 159, 27, 110, 34, 156, 83, 220, 227, 74, + 181, 159, 216, 102, 159, 27, 31, 101, 192, 202, 255, 218, 206, 207, 159, 27, 45, 32, 235, 144, 105, 93, 124, 122, + 27, 140, 188, 241, 115, 127, 195, 24, 250, 69, 47, 80, 78, 203, 116, 255, 255, 191, 67, 124, 247, 13, 27, 105, + 171, 184, 80, 236, 33, 215, 140, 76, 143, 124, 17, 209, 30, 37, 38, 58, 168, 107, 33, 159, 69, 107, 5, 173, 46, + 107, 255, 27, 184, 102, 200, 41, 159, 234, 20, 124, 255, 255, 27, 37, 196, 112, 237, 216, 146, 88, 66, 216, 102, + 159, 27, 96, 50, 100, 115, 7, 171, 129, 60, 159, 71, 229, 140, 234, 159, 65, 100, 230, 191, 27, 190, 234, 100, 5, + 44, 191, 85, 71, 27, 69, 35, 62, 5, 224, 118, 94, 30, 72, 99, 100, 105, 95, 2, 187, 43, 167, 27, 228, 35, 17, 43, + 45, 235, 43, 37, 74, 158, 185, 131, 4, 194, 203, 221, 23, 186, 127, 73, 3, 51, 90, 180, 176, 136, 111, 163, 95, + 255, 27, 189, 64, 201, 246, 104, 7, 170, 252, 191, 27, 178, 102, 216, 143, 4, 220, 199, 3, 27, 48, 76, 143, 90, + 161, 13, 133, 25, 27, 217, 36, 18, 179, 35, 236, 219, 49, 67, 130, 144, 90, 255, 65, 228, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1608, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13271775897108873568" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "629124464a4f77dd5ca538" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15237063475595421763" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6664986683885661982" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "56832bb9cc0d4c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7890972111555574852" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "227093630020055242" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9423117236910739726" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5755963325384762594" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17354378586066805836" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15767743057826236763" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13214457308626327559" + } + }, + { + "_tag": "ByteArray", + "bytearray": "afa5bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5268729930824332128" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28b690aa8855e235f0e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5172994680419324282" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d1beee" + }, + { + "_tag": "ByteArray", + "bytearray": "3594d7531895b6" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bb82ed1dc8dc401609fbf0008114b629124464a4f77dd5ca5381bfffffffffffffffd1bd374ec806af1a843ffd8669f1b5c7eca138db6af1e9f9f4756832bb9cc0d4c1b6d825d53c9c8bc441b0326cc740c1970ca1b82c5a3337eecd10e1b4fe14a25e5bc24e2ff1bf0d723606828644c1bdad246c51f5d495b9f1bb7632ee8b43c980743afa5bc1b491e49f50840b3604a28b690aa8855e235f0e81b47ca2b410f61117aff9f43d1beee473594d7531895b6ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 184, 46, 209, 220, 141, 196, 1, 96, 159, 191, 0, 8, 17, 75, 98, 145, 36, 70, 74, 79, 119, 221, + 92, 165, 56, 27, 255, 255, 255, 255, 255, 255, 255, 253, 27, 211, 116, 236, 128, 106, 241, 168, 67, 255, 216, 102, + 159, 27, 92, 126, 202, 19, 141, 182, 175, 30, 159, 159, 71, 86, 131, 43, 185, 204, 13, 76, 27, 109, 130, 93, 83, + 201, 200, 188, 68, 27, 3, 38, 204, 116, 12, 25, 112, 202, 27, 130, 197, 163, 51, 126, 236, 209, 14, 27, 79, 225, + 74, 37, 229, 188, 36, 226, 255, 27, 240, 215, 35, 96, 104, 40, 100, 76, 27, 218, 210, 70, 197, 31, 93, 73, 91, + 159, 27, 183, 99, 46, 232, 180, 60, 152, 7, 67, 175, 165, 188, 27, 73, 30, 73, 245, 8, 64, 179, 96, 74, 40, 182, + 144, 170, 136, 85, 226, 53, 240, 232, 27, 71, 202, 43, 65, 15, 97, 17, 122, 255, 159, 67, 209, 190, 238, 71, 53, + 148, 215, 83, 24, 149, 182, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1609, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05fc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2212445871004359445" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12171120860929621016" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff04fc51fa02ba5dc901" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13495973370010054819" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04fe07" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10934767169466105943" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f806" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9097276085157051712" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f89803ed" + } + ] + }, + "cborHex": "d905069f12054205fcd8669f1bfffffffffffffffd9fbf0c1b1eb42fcc31fe9b151ba8e881f00a0e7c184aff04fc51fa02ba5dc9011bbb4b54467994b0a34304fe07ff021bfffffffffffffffed8669f1b97c018ce45a180579f42f8061b7e40046667713d4000ffffffff44f89803edff", + "cborBytes": [ + 217, 5, 6, 159, 18, 5, 66, 5, 252, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 191, 12, 27, + 30, 180, 47, 204, 49, 254, 155, 21, 27, 168, 232, 129, 240, 10, 14, 124, 24, 74, 255, 4, 252, 81, 250, 2, 186, 93, + 201, 1, 27, 187, 75, 84, 70, 121, 148, 176, 163, 67, 4, 254, 7, 255, 2, 27, 255, 255, 255, 255, 255, 255, 255, + 254, 216, 102, 159, 27, 151, 192, 24, 206, 69, 161, 128, 87, 159, 66, 248, 6, 27, 126, 64, 4, 102, 103, 113, 61, + 64, 0, 255, 255, 255, 255, 68, 248, 152, 3, 237, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1610, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5843656852933544150" + }, + "fields": [] + }, + "cborHex": "d8669f1b5118d6f25c6188d680ff", + "cborBytes": [216, 102, 159, 27, 81, 24, 214, 242, 92, 97, 136, 214, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1611, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13146393049677269878" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2082635869541948753" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c7e1ec58741804" + }, + { + "_tag": "ByteArray", + "bytearray": "bfcbbfb0" + }, + { + "_tag": "ByteArray", + "bytearray": "2e8c7ce855848c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10698869396966057665" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "695add82ec651573" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "26d75612e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15573350334966067311" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "589b89f154ce8e9400b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6593007827492840268" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9fd8669f1bb6715ed37bad8b769fd8669f1b1ce7024a0088dd519f47c7e1ec5874180444bfcbbfb0472e8c7ce855848c1b947a05081075a6c1ffff48695add82ec651573bf4526d75612e41bd81fa79e565cf06f4a589b89f154ce8e9400b21b5b7f11b01714a34cffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 216, 102, 159, 27, 182, 113, 94, 211, 123, 173, + 139, 118, 159, 216, 102, 159, 27, 28, 231, 2, 74, 0, 136, 221, 81, 159, 71, 199, 225, 236, 88, 116, 24, 4, 68, + 191, 203, 191, 176, 71, 46, 140, 124, 232, 85, 132, 140, 27, 148, 122, 5, 8, 16, 117, 166, 193, 255, 255, 72, 105, + 90, 221, 130, 236, 101, 21, 115, 191, 69, 38, 215, 86, 18, 228, 27, 216, 31, 167, 158, 86, 92, 240, 111, 74, 88, + 155, 137, 241, 84, 206, 142, 148, 0, 178, 27, 91, 127, 17, 176, 23, 20, 163, 76, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1612, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12049151287202392353" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + ] + }, + "cborHex": "d8669f1ba7372f41aea3a9219f1bfffffffffffffff9ffff", + "cborBytes": [ + 216, 102, 159, 27, 167, 55, 47, 65, 174, 163, 169, 33, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1613, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11707098220954998411" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14282878798372473992" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "514032393095477657" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1037245350249036247" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5425358062229781311" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8013223980584403532" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1376583607201371106" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15218759151508893831" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16246802803663236098" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15664158240661107589" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11718567079088711154" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1758842858525632692" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3197953150035201398" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3943707401786323594" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16157789341373481427" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8892986205424678760" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9767354241118795509" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11690565447707455685" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3033982985992241872" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "59c44ebb6d5b403f0c06013e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18135687961370247390" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8985355536065708276" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11963298838660095384" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f1ba277f7ce1aa1568b1bc636fa97daf30c881b072235bcf17ff9999fbf1b0e6509268684f9d71b4b4abe69ae81fb3f1b6f34b0c12460024c1b131a9b7f4edd13e21bd333e4d0dbe9b0871be1783d12182aec021bd96244ed781cf3851ba2a0b6abb9ab65f2ffbf1b1868aa42d62728b41b2c6169724c308d761b36badcfcbd8d728a1be03bffcc6028c1d31b7b6a3bd636c977681b878c9ceec14a76f51ba23d3b55de0ef0c541c6ff1b2a1adf7376a582d09f4c59c44ebb6d5b403f0c06013e1bfbaee81d26cd40de1b7cb26540ebc940f41ba6062ce8d42d9d98ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 27, 162, 119, 247, 206, 26, 161, 86, 139, 27, 198, + 54, 250, 151, 218, 243, 12, 136, 27, 7, 34, 53, 188, 241, 127, 249, 153, 159, 191, 27, 14, 101, 9, 38, 134, 132, + 249, 215, 27, 75, 74, 190, 105, 174, 129, 251, 63, 27, 111, 52, 176, 193, 36, 96, 2, 76, 27, 19, 26, 155, 127, 78, + 221, 19, 226, 27, 211, 51, 228, 208, 219, 233, 176, 135, 27, 225, 120, 61, 18, 24, 42, 236, 2, 27, 217, 98, 68, + 237, 120, 28, 243, 133, 27, 162, 160, 182, 171, 185, 171, 101, 242, 255, 191, 27, 24, 104, 170, 66, 214, 39, 40, + 180, 27, 44, 97, 105, 114, 76, 48, 141, 118, 27, 54, 186, 220, 252, 189, 141, 114, 138, 27, 224, 59, 255, 204, 96, + 40, 193, 211, 27, 123, 106, 59, 214, 54, 201, 119, 104, 27, 135, 140, 156, 238, 193, 74, 118, 245, 27, 162, 61, + 59, 85, 222, 14, 240, 197, 65, 198, 255, 27, 42, 26, 223, 115, 118, 165, 130, 208, 159, 76, 89, 196, 78, 187, 109, + 91, 64, 63, 12, 6, 1, 62, 27, 251, 174, 232, 29, 38, 205, 64, 222, 27, 124, 178, 101, 64, 235, 201, 64, 244, 27, + 166, 6, 44, 232, 212, 45, 157, 152, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1614, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7805208902941257035" + }, + "fields": [] + }, + "cborHex": "d8669f1b6c51ac24b987ad4b80ff", + "cborBytes": [216, 102, 159, 27, 108, 81, 172, 36, 185, 135, 173, 75, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1615, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4638331382122444200" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14370509071274865530" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2589962756010940496" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2509cdc7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12293437894543933252" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f09e18955326281" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14164670628197347163" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15679099340160051880" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18174755389411188077" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8876953050524203243" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1098261305900444267" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4c932f5cac" + } + ] + } + ] + }, + "cborHex": "d8669f1b405ea9d12df475a89fd8669f1bc76e4ddcb2ddf37a80ffbf1b23f1656785861850442509cdc71baa9b10a1b49dff44489f09e189553262811bc49304e3821caf5b1bd99759c7484d2aa81bfc39b3bb91785d6d1b7b3145c47050b8ebffd8669f1b0f3dced6c0c0aa6b9f454c932f5cacffffffff", + "cborBytes": [ + 216, 102, 159, 27, 64, 94, 169, 209, 45, 244, 117, 168, 159, 216, 102, 159, 27, 199, 110, 77, 220, 178, 221, 243, + 122, 128, 255, 191, 27, 35, 241, 101, 103, 133, 134, 24, 80, 68, 37, 9, 205, 199, 27, 170, 155, 16, 161, 180, 157, + 255, 68, 72, 159, 9, 225, 137, 85, 50, 98, 129, 27, 196, 147, 4, 227, 130, 28, 175, 91, 27, 217, 151, 89, 199, 72, + 77, 42, 168, 27, 252, 57, 179, 187, 145, 120, 93, 109, 27, 123, 49, 69, 196, 112, 80, 184, 235, 255, 216, 102, + 159, 27, 15, 61, 206, 214, 192, 192, 170, 107, 159, 69, 76, 147, 47, 92, 172, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1616, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "144909906039266455" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4807651560131422967" + } + } + ] + }, + "cborHex": "d8669f1b0202d2cab1e7dc979f1b42b8359f357c6af7ffff", + "cborBytes": [ + 216, 102, 159, 27, 2, 2, 210, 202, 177, 231, 220, 151, 159, 27, 66, 184, 53, 159, 53, 124, 106, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1617, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3937747041766191859" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15805758058581421392" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15779957613877812873" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16236418995597329010" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f581485b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5157217188672989083" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8680e8cd0ef2ad50e9bd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8015530603010823362" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "236836ad2b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12662048983934182869" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "38d3be9c381d9693755d4238" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16985241922828331598" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3635785521244250846" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + "cborHex": "d8669f1b36a5b01247d1b2f39fa0bf1bdb59553637836d501bdafdabd811e85e89ff9fd8669f1be153590d60fbc2729f44f581485b1b47921db58064679b4a8680e8cd0ef2ad50e9bd1b6f3ce29d86bb94c2ffff45236836ad2bd8669f1bafb8a276e7fe25d59f4c38d3be9c381d9693755d42381bebb7b38982416a4e1b3274e7ab1945a2deffffff0bffff", + "cborBytes": [ + 216, 102, 159, 27, 54, 165, 176, 18, 71, 209, 178, 243, 159, 160, 191, 27, 219, 89, 85, 54, 55, 131, 109, 80, 27, + 218, 253, 171, 216, 17, 232, 94, 137, 255, 159, 216, 102, 159, 27, 225, 83, 89, 13, 96, 251, 194, 114, 159, 68, + 245, 129, 72, 91, 27, 71, 146, 29, 181, 128, 100, 103, 155, 74, 134, 128, 232, 205, 14, 242, 173, 80, 233, 189, + 27, 111, 60, 226, 157, 134, 187, 148, 194, 255, 255, 69, 35, 104, 54, 173, 43, 216, 102, 159, 27, 175, 184, 162, + 118, 231, 254, 37, 213, 159, 76, 56, 211, 190, 156, 56, 29, 150, 147, 117, 93, 66, 56, 27, 235, 183, 179, 137, + 130, 65, 106, 78, 27, 50, 116, 231, 171, 25, 69, 162, 222, 255, 255, 255, 11, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1618, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4832493530700098574" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d905009f1b4310774334c0ac0ea0ff", + "cborBytes": [217, 5, 0, 159, 27, 67, 16, 119, 67, 52, 192, 172, 14, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1619, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11614046707691696106" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "35fc03" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11817115580501928144" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3155821551624079697" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c77304344588782d3d62d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7285864545496745666" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "317d4539e0e4be" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13167607233310627478" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d41be8781c0df96c61e3" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8934892267218738721" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ddd6" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "313f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6cf12766f188" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62bb6eb568f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9b430382d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15292997644041126230" + } + } + ] + }, + "cborHex": "d8669f1ba12d61f260c22fea9f4335fc03d8669f1ba3fed402bd8d28d09fbf1b2bcbbafb1f1349514bc77304344588782d3d62d31b651c9733b3f246c247317d4539e0e4be1bb6bcbd03835816964ad41be8781c0df96c61e3ffd8669f1b7bff1d2d8df51e219f42ddd6ffffffffbf42313f466cf12766f1884662bb6eb568f945c9b430382dff1bd43ba454dbf50156ffff", + "cborBytes": [ + 216, 102, 159, 27, 161, 45, 97, 242, 96, 194, 47, 234, 159, 67, 53, 252, 3, 216, 102, 159, 27, 163, 254, 212, 2, + 189, 141, 40, 208, 159, 191, 27, 43, 203, 186, 251, 31, 19, 73, 81, 75, 199, 115, 4, 52, 69, 136, 120, 45, 61, 98, + 211, 27, 101, 28, 151, 51, 179, 242, 70, 194, 71, 49, 125, 69, 57, 224, 228, 190, 27, 182, 188, 189, 3, 131, 88, + 22, 150, 74, 212, 27, 232, 120, 28, 13, 249, 108, 97, 227, 255, 216, 102, 159, 27, 123, 255, 29, 45, 141, 245, 30, + 33, 159, 66, 221, 214, 255, 255, 255, 255, 191, 66, 49, 63, 70, 108, 241, 39, 102, 241, 136, 70, 98, 187, 110, + 181, 104, 249, 69, 201, 180, 48, 56, 45, 255, 27, 212, 59, 164, 84, 219, 245, 1, 86, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1620, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6710802845643657294" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3998496706804173160" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d0c55bbb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9783863054637713034" + } + }, + { + "_tag": "ByteArray", + "bytearray": "56f8" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "678a7a9a5065ac4dcaa7bb" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2f239171f4f362ece3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11921499855678414852" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1662454274297076263" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13770812304959938673" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "34fe" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4624312182164118676" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7075052909883002548" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9333572115367004381" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7988753946414577116" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09fd8669f1b5d218fa1fc45504e9fd8669f1b377d8391e4a1c9689f44d0c55bbb1b87c7439c6ebfc68a4256f8ffff4b678a7a9a5065ac4dcaa7bbffff9f492f239171f4f362ece31ba571acf4b79520041b1712395abace9a271bbf1bc0d499b72071ff4234fe9f80bf1b402cdb6dd4675c9441821b622fa322e4ab8eb41b8187826335f108ddff1b6eddc163560a75dcffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 216, 102, 159, 27, 93, 33, 143, 161, 252, 69, 80, + 78, 159, 216, 102, 159, 27, 55, 125, 131, 145, 228, 161, 201, 104, 159, 68, 208, 197, 91, 187, 27, 135, 199, 67, + 156, 110, 191, 198, 138, 66, 86, 248, 255, 255, 75, 103, 138, 122, 154, 80, 101, 172, 77, 202, 167, 187, 255, 255, + 159, 73, 47, 35, 145, 113, 244, 243, 98, 236, 227, 27, 165, 113, 172, 244, 183, 149, 32, 4, 27, 23, 18, 57, 90, + 186, 206, 154, 39, 27, 191, 27, 192, 212, 153, 183, 32, 113, 255, 66, 52, 254, 159, 128, 191, 27, 64, 44, 219, + 109, 212, 103, 92, 148, 65, 130, 27, 98, 47, 163, 34, 228, 171, 142, 180, 27, 129, 135, 130, 99, 53, 241, 8, 221, + 255, 27, 110, 221, 193, 99, 86, 10, 117, 220, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1621, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9217245815795213560" + } + } + ] + }, + "cborHex": "d905099f1b7fea3c3c01ede4f8ff", + "cborBytes": [217, 5, 9, 159, 27, 127, 234, 60, 60, 1, 237, 228, 248, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1622, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8348035837161354356" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "704e4c123232c3c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10251647868527519190" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3928557378806782323" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15917495676889140126" + } + }, + { + "_tag": "ByteArray", + "bytearray": "91beaf15b9521d1ffb" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5437425459480792621" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eee8025dd3d09da28f4f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13838298964669361982" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a059afe9ab" + } + ] + }, + "cborHex": "d8669f1b73da2e5d363bb4749f9fbf48704e4c123232c3c11b8e452b6bbdf925d6ff1b36850a1f238499731bdce64dfbcecb0b9e4991beaf15b9521d1ffbffbf1b4b759da58d048e2d4aeee8025dd3d09da28f4f41881bc00b839704c5ef3eff45a059afe9abffff", + "cborBytes": [ + 216, 102, 159, 27, 115, 218, 46, 93, 54, 59, 180, 116, 159, 159, 191, 72, 112, 78, 76, 18, 50, 50, 195, 193, 27, + 142, 69, 43, 107, 189, 249, 37, 214, 255, 27, 54, 133, 10, 31, 35, 132, 153, 115, 27, 220, 230, 77, 251, 206, 203, + 11, 158, 73, 145, 190, 175, 21, 185, 82, 29, 31, 251, 255, 191, 27, 75, 117, 157, 165, 141, 4, 142, 45, 74, 238, + 232, 2, 93, 211, 208, 157, 162, 143, 79, 65, 136, 27, 192, 11, 131, 151, 4, 197, 239, 62, 255, 69, 160, 89, 175, + 233, 171, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1623, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13164342489690535472" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d210a76157141c27627a0391" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6347777436460730024" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17599578174415926558" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bb6b123bf2795f6309f4cd210a76157141c27627a0391bf1b5817d5f24d7b46a81bf43e431a62c7751effffff", + "cborBytes": [ + 216, 102, 159, 27, 182, 177, 35, 191, 39, 149, 246, 48, 159, 76, 210, 16, 167, 97, 87, 20, 28, 39, 98, 122, 3, + 145, 191, 27, 88, 23, 213, 242, 77, 123, 70, 168, 27, 244, 62, 67, 26, 98, 199, 117, 30, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1624, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0128e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33372f4c94ee05af" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c529c0a33288ea7734" + } + ] + } + ] + }, + "cborHex": "d87c9fbf430128e54833372f4c94ee05afff9f49c529c0a33288ea7734ffff", + "cborBytes": [ + 216, 124, 159, 191, 67, 1, 40, 229, 72, 51, 55, 47, 76, 148, 238, 5, 175, 255, 159, 73, 197, 41, 192, 163, 50, + 136, 234, 119, 52, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1625, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10987284923648049742" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7653559957530290943" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4698424927228181182" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12308879577418001226" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0594afb711855fd4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13104056527956965378" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17574196552912255351" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16789435496780498538" + } + }, + { + "_tag": "ByteArray", + "bytearray": "161d747baae22d793b0654" + } + ] + }, + "cborHex": "d8669f1b987aad6cc80c024e9fbf1b6a36e83b27bf2aff1b41342893f746babe1baad1ecc2ab0f6b4a480594afb711855fd41bb5daf5fbe18378021bf3e416a71d3ab977ff1be9000ea14cef866a4b161d747baae22d793b0654ffff", + "cborBytes": [ + 216, 102, 159, 27, 152, 122, 173, 108, 200, 12, 2, 78, 159, 191, 27, 106, 54, 232, 59, 39, 191, 42, 255, 27, 65, + 52, 40, 147, 247, 70, 186, 190, 27, 170, 209, 236, 194, 171, 15, 107, 74, 72, 5, 148, 175, 183, 17, 133, 95, 212, + 27, 181, 218, 245, 251, 225, 131, 120, 2, 27, 243, 228, 22, 167, 29, 58, 185, 119, 255, 27, 233, 0, 14, 161, 76, + 239, 134, 106, 75, 22, 29, 116, 123, 170, 226, 45, 121, 59, 6, 84, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1626, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1227644077019035870" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d7cb1a62bc34" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1f772d87840cf8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ee4441" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5525937893980740553" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7bbc76ca39be6ad83a10" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16456691754070416768" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "156484126128442606" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14660101247875395594" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4887162056307013170" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8ed55de228d161468b" + }, + { + "_tag": "ByteArray", + "bytearray": "65ed5cec6be41cce10db" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8891275864177674962" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7653086345848482348" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3328951868242036769" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5528894728834089520" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ea489a5b662bbee7" + }, + { + "_tag": "ByteArray", + "bytearray": "05ad0ae3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9963511395879443136" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee97b93141" + }, + { + "_tag": "ByteArray", + "bytearray": "47d5e5" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3711794988485323711" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11801919495621383738" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11407434383554539164" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9764708439746314628" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b110977c8a154f8de9f46d7cb1a62bc349f471f772d87840cf89f43ee44411b4cb0133ca5979bc94a7bbc76ca39be6ad83a101be461e9f583779d801b022bf17bcedf8ceeffd8669f1bcb73246992dfb00a9f1b43d2afff35f27632498ed55de228d161468b4a65ed5cec6be41cce10db1b7b64284a5c508ad2ffffffd8669f1b6a35397bd7b0ea2c9fd8669f1b2e32d0162cf0882180ffd8669f1b4cba947668af82309f48ea489a5b662bbee74405ad0ae31b8a4580d35af35ac045ee97b931414347d5e5ffffffffbf1b3382f1e047be2bbf1ba3c8d7408445163a1b9e4f5921f6586e9c1b878336971e568184ffffff", + "cborBytes": [ + 216, 102, 159, 27, 17, 9, 119, 200, 161, 84, 248, 222, 159, 70, 215, 203, 26, 98, 188, 52, 159, 71, 31, 119, 45, + 135, 132, 12, 248, 159, 67, 238, 68, 65, 27, 76, 176, 19, 60, 165, 151, 155, 201, 74, 123, 188, 118, 202, 57, 190, + 106, 216, 58, 16, 27, 228, 97, 233, 245, 131, 119, 157, 128, 27, 2, 43, 241, 123, 206, 223, 140, 238, 255, 216, + 102, 159, 27, 203, 115, 36, 105, 146, 223, 176, 10, 159, 27, 67, 210, 175, 255, 53, 242, 118, 50, 73, 142, 213, + 93, 226, 40, 209, 97, 70, 139, 74, 101, 237, 92, 236, 107, 228, 28, 206, 16, 219, 27, 123, 100, 40, 74, 92, 80, + 138, 210, 255, 255, 255, 216, 102, 159, 27, 106, 53, 57, 123, 215, 176, 234, 44, 159, 216, 102, 159, 27, 46, 50, + 208, 22, 44, 240, 136, 33, 128, 255, 216, 102, 159, 27, 76, 186, 148, 118, 104, 175, 130, 48, 159, 72, 234, 72, + 154, 91, 102, 43, 190, 231, 68, 5, 173, 10, 227, 27, 138, 69, 128, 211, 90, 243, 90, 192, 69, 238, 151, 185, 49, + 65, 67, 71, 213, 229, 255, 255, 255, 255, 191, 27, 51, 130, 241, 224, 71, 190, 43, 191, 27, 163, 200, 215, 64, + 132, 69, 22, 58, 27, 158, 79, 89, 33, 246, 88, 110, 156, 27, 135, 131, 54, 151, 30, 86, 129, 132, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1627, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12197812976024126509" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6654823013749482019" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ad8ef88" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6796457662564172775" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1731983073658044953" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46892d05334d5d580669c7a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3575005370172793354" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10141216180575180438" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6807630276369839833" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a9648a467f7ca" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da90" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "610821458634071675" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6664966541429160739" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6931419174315691114" + } + } + ] + }, + "cborHex": "d8669f1ba94756466091842d9f1b5c5aae45b1a1e223444ad8ef88d8669f1b5e51de3c241e83e79fbf1b18093d6dd66082194c46892d05334d5d580669c7a41b319cf8716743620a1b8cbcd662c1a096961b5e798fab0137f6d9472a9648a467f7caffbf419d42da90ff80d8669f1b087a12e15f11de7b80ffffffd8669f1b5c7eb7c1c5bfbb2380ff1b60315903ca6b0c6affff", + "cborBytes": [ + 216, 102, 159, 27, 169, 71, 86, 70, 96, 145, 132, 45, 159, 27, 92, 90, 174, 69, 177, 161, 226, 35, 68, 74, 216, + 239, 136, 216, 102, 159, 27, 94, 81, 222, 60, 36, 30, 131, 231, 159, 191, 27, 24, 9, 61, 109, 214, 96, 130, 25, + 76, 70, 137, 45, 5, 51, 77, 93, 88, 6, 105, 199, 164, 27, 49, 156, 248, 113, 103, 67, 98, 10, 27, 140, 188, 214, + 98, 193, 160, 150, 150, 27, 94, 121, 143, 171, 1, 55, 246, 217, 71, 42, 150, 72, 164, 103, 247, 202, 255, 191, 65, + 157, 66, 218, 144, 255, 128, 216, 102, 159, 27, 8, 122, 18, 225, 95, 17, 222, 123, 128, 255, 255, 255, 216, 102, + 159, 27, 92, 126, 183, 193, 197, 191, 187, 35, 128, 255, 27, 96, 49, 89, 3, 202, 107, 12, 106, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1628, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9949082158048975036" + } + } + ] + }, + "cborHex": "d905079f1b8a123d829faf98bcff", + "cborBytes": [217, 5, 7, 159, 27, 138, 18, 61, 130, 159, 175, 152, 188, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1629, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15560209603426467903" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + }, + "cborHex": "d8669f1bd7f0f8315adb403f9f12ffff", + "cborBytes": [216, 102, 159, 27, 215, 240, 248, 49, 90, 219, 64, 63, 159, 18, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1630, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17209408407857807270" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b000" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3165473208959125056" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17784522854861553513" + } + } + ] + }, + "cborHex": "d8669f1beed419c480fc3fa69f8042b0001b2bee051cb6064640801bf6cf514f5fd6bf69ffff", + "cborBytes": [ + 216, 102, 159, 27, 238, 212, 25, 196, 128, 252, 63, 166, 159, 128, 66, 176, 0, 27, 43, 238, 5, 28, 182, 6, 70, 64, + 128, 27, 246, 207, 81, 79, 95, 214, 191, 105, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1631, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15712064399507469573" + }, + "fields": [] + }, + "cborHex": "d8669f1bda0c775344b4350580ff", + "cborBytes": [216, 102, 159, 27, 218, 12, 119, 83, 68, 180, 53, 5, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1632, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1618216978608749883" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17948466619431279270" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f801b16750fc4b37afd3b1bf915c34b9a285aa6ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 128, 27, 22, 117, 15, 196, 179, 122, 253, 59, 27, + 249, 21, 195, 75, 154, 40, 90, 166, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1633, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2191057054603054467" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6276152254654387220" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5db80206" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11786528406468902065" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "149f07e0" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9191807393879736449" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "882d4de7fe7c8d32" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ff10842395d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b29127ce0e2db2f78f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8287655641405372351" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd4fc4a6d073002bb29d9d71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2978645649909774601" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14464620029884964280" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f1b1e6832c84e3a8d83bf1b57195f391ef11414445db802061ba392292352a13cb144149f07e0ff1b7f8fdc1fdc02c081bf48882d4de7fe7c8d32465ff10842395d49b29127ce0e2db2f78f1b7303aae55ebab7bf4cdd4fc4a6d073002bb29d9d711b2956466fe2a27909ff1bc8bca747c44b1db8ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 27, 30, 104, 50, 200, 78, 58, 141, 131, 191, 27, + 87, 25, 95, 57, 30, 241, 20, 20, 68, 93, 184, 2, 6, 27, 163, 146, 41, 35, 82, 161, 60, 177, 68, 20, 159, 7, 224, + 255, 27, 127, 143, 220, 31, 220, 2, 192, 129, 191, 72, 136, 45, 77, 231, 254, 124, 141, 50, 70, 95, 241, 8, 66, + 57, 93, 73, 178, 145, 39, 206, 14, 45, 178, 247, 143, 27, 115, 3, 170, 229, 94, 186, 183, 191, 76, 221, 79, 196, + 166, 208, 115, 0, 43, 178, 157, 157, 113, 27, 41, 86, 70, 111, 226, 162, 121, 9, 255, 27, 200, 188, 167, 71, 196, + 75, 29, 184, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1634, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15185453507580796950" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04fa00" + }, + { + "_tag": "ByteArray", + "bytearray": "0304fa9fe304060006ff" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "38426bfb3a97335bc10211" + }, + { + "_tag": "ByteArray", + "bytearray": "63ce0683" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8253559643149677190" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16567902393786945753" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13406194983832479649" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15084624352424661654" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17297636999946146285" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14471354488390713281" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ea27ef9a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0133a9" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bd2bd9182589020169f9f4304fa004a0304fa9fe304060006ffffd905039f9f4b38426bfb3a97335bc102114463ce0683ff9f1b728a88c4266fb286ff1be5ed03725703d0d9a0bf1bba0c5f4f08f567a11bd15759ed407a92961bf00d8d34637191ed1bc8d4943c13487fc1452ea27ef9a5430133a9ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 210, 189, 145, 130, 88, 144, 32, 22, 159, 159, 67, 4, 250, 0, 74, 3, 4, 250, 159, 227, 4, 6, 0, + 6, 255, 255, 217, 5, 3, 159, 159, 75, 56, 66, 107, 251, 58, 151, 51, 91, 193, 2, 17, 68, 99, 206, 6, 131, 255, + 159, 27, 114, 138, 136, 196, 38, 111, 178, 134, 255, 27, 229, 237, 3, 114, 87, 3, 208, 217, 160, 191, 27, 186, 12, + 95, 79, 8, 245, 103, 161, 27, 209, 87, 89, 237, 64, 122, 146, 150, 27, 240, 13, 141, 52, 99, 113, 145, 237, 27, + 200, 212, 148, 60, 19, 72, 127, 193, 69, 46, 162, 126, 249, 165, 67, 1, 51, 169, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1635, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7706883050151797167" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f7" + }, + { + "_tag": "ByteArray", + "bytearray": "631fe7261610" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7038708046573471182" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4090072070096183399" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7903886957993654524" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ccebf4dc96c9" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "954175ad8648" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9fd8669f1b6af4594d21c6e1af9f41f746631fe72616101b61ae83acf9b205ceffffd8669f1b38c2dae0abd460679f9f1b6db03f4fcc0df8fc46ccebf4dc96c9ffffff46954175ad8648ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 216, 102, 159, 27, 106, 244, 89, 77, 33, 198, 225, + 175, 159, 65, 247, 70, 99, 31, 231, 38, 22, 16, 27, 97, 174, 131, 172, 249, 178, 5, 206, 255, 255, 216, 102, 159, + 27, 56, 194, 218, 224, 171, 212, 96, 103, 159, 159, 27, 109, 176, 63, 79, 204, 13, 248, 252, 70, 204, 235, 244, + 220, 150, 201, 255, 255, 255, 70, 149, 65, 117, 173, 134, 72, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1636, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "307960953010620710" + } + } + ] + }, + "cborHex": "d905069f1b044618dae8e38926ff", + "cborBytes": [217, 5, 6, 159, 27, 4, 70, 24, 218, 232, 227, 137, 38, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1637, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8712870394331515553" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10007514456465306202" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + ] + }, + "cborHex": "d8669f1b78ea5575fc25caa19fd8669f1b8ae1d5604633725a80ff1bfffffffffffffff1ffff", + "cborBytes": [ + 216, 102, 159, 27, 120, 234, 85, 117, 252, 37, 202, 161, 159, 216, 102, 159, 27, 138, 225, 213, 96, 70, 51, 114, + 90, 128, 255, 27, 255, 255, 255, 255, 255, 255, 255, 241, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1638, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8659598708740898811" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13432912921295484010" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12495511962865251289" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1506d4cbf83e" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14475935904894970899" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1495728829611433413" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0dfd9fa111ba0f" + }, + { + "_tag": "ByteArray", + "bytearray": "96e43a0e34f90c8ca49eed" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14615243659276140319" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2782225025505589218" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c91780373" + } + ] + }, + "cborHex": "d87b9f9fd8669f1b782d132523eebffb80ff1bba6b4b219c92746a9f1bad68f9ed193a33d9461506d4cbf83effffd8669f1bc8e4db023a966c139f801b14c1e572214cddc5470dfd9fa111ba0f4b96e43a0e34f90c8ca49eed9f1bcad3c6ac58ef3f1fffffff1b269c72eb7a7677e2452c91780373ff", + "cborBytes": [ + 216, 123, 159, 159, 216, 102, 159, 27, 120, 45, 19, 37, 35, 238, 191, 251, 128, 255, 27, 186, 107, 75, 33, 156, + 146, 116, 106, 159, 27, 173, 104, 249, 237, 25, 58, 51, 217, 70, 21, 6, 212, 203, 248, 62, 255, 255, 216, 102, + 159, 27, 200, 228, 219, 2, 58, 150, 108, 19, 159, 128, 27, 20, 193, 229, 114, 33, 76, 221, 197, 71, 13, 253, 159, + 161, 17, 186, 15, 75, 150, 228, 58, 14, 52, 249, 12, 140, 164, 158, 237, 159, 27, 202, 211, 198, 172, 88, 239, 63, + 31, 255, 255, 255, 27, 38, 156, 114, 235, 122, 118, 119, 226, 69, 44, 145, 120, 3, 115, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1639, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6839420891270430530" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1419654362186846572" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9392055711475276944" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3530439545562949628" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7deb2bcff0c435a6cf" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5789306907018684805" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12510872826647724966" + } + }, + { + "_tag": "ByteArray", + "bytearray": "27b2389f5bf5c92f81bc" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "379315034d654d2adb05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3aedf7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41129f738c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1643e2fe6042a9b4c870" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "571e0d9dee73" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9bcff86779604" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea5a842f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a83cf361514c18b9a16" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7815956419336647360" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2ba950d98de3" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15168151306797729706" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6473697142497410480" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c0aabac8d90" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9723558051974436983" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70a354d396" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5914e50c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "879291a6aa72fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f84bb16ea15ef80e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94ac425732634269b5" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b5eea8110558f3f429fbf1b13b3a01ee9fb116c1b825748e889299c90ffd8669f1b30fea40fc64567fc9f497deb2bcff0c435a6cfd8669f1b5057bff5789069859f1bad9f8c8ce66cc3a64a27b2389f5bf5c92f81bcffffbf4a379315034d654d2adb05433aedf74541129f738c4a1643e2fe6042a9b4c87046571e0d9dee7347a9bcff86779604419a44ea5a842f42e0dd4a7a83cf361514c18b9a16ff1b6c77daf3e27eb2c0462ba950d98de3ffff1bd280193fcd0e47aabf41041b59d731408204fdb0460c0aabac8d901b86f10487d8d358774570a354d396445914e50c47879291a6aa72fc41f948f84bb16ea15ef80e4994ac425732634269b5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 94, 234, 129, 16, 85, 143, 63, 66, 159, 191, 27, 19, 179, 160, 30, 233, 251, 17, 108, 27, 130, + 87, 72, 232, 137, 41, 156, 144, 255, 216, 102, 159, 27, 48, 254, 164, 15, 198, 69, 103, 252, 159, 73, 125, 235, + 43, 207, 240, 196, 53, 166, 207, 216, 102, 159, 27, 80, 87, 191, 245, 120, 144, 105, 133, 159, 27, 173, 159, 140, + 140, 230, 108, 195, 166, 74, 39, 178, 56, 159, 91, 245, 201, 47, 129, 188, 255, 255, 191, 74, 55, 147, 21, 3, 77, + 101, 77, 42, 219, 5, 67, 58, 237, 247, 69, 65, 18, 159, 115, 140, 74, 22, 67, 226, 254, 96, 66, 169, 180, 200, + 112, 70, 87, 30, 13, 157, 238, 115, 71, 169, 188, 255, 134, 119, 150, 4, 65, 154, 68, 234, 90, 132, 47, 66, 224, + 221, 74, 122, 131, 207, 54, 21, 20, 193, 139, 154, 22, 255, 27, 108, 119, 218, 243, 226, 126, 178, 192, 70, 43, + 169, 80, 217, 141, 227, 255, 255, 27, 210, 128, 25, 63, 205, 14, 71, 170, 191, 65, 4, 27, 89, 215, 49, 64, 130, 4, + 253, 176, 70, 12, 10, 171, 172, 141, 144, 27, 134, 241, 4, 135, 216, 211, 88, 119, 69, 112, 163, 84, 211, 150, 68, + 89, 20, 229, 12, 71, 135, 146, 145, 166, 170, 114, 252, 65, 249, 72, 248, 75, 177, 110, 161, 94, 248, 14, 73, 148, + 172, 66, 87, 50, 99, 66, 105, 181, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1640, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6448290370964610281" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7598016673599034568" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6132677232344570904" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56e59d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c60d41703f97e6fff13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6794c18ac11e3121637fad3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d66936191e7ef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f67f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a573a0bbcdea147d4baf4050" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8741760573861206550" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b597ceded89eadce99f9fa01b697193e89b5d94c8bf1b551ba57354061c184356e59d4a2c60d41703f97e6fff134ca6794c18ac11e3121637fad3476d66936191e7ef436f67f64ca573a0bbcdea147d4baf40501b7950f8ed14831a16ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 89, 124, 237, 237, 137, 234, 220, 233, 159, 159, 160, 27, 105, 113, 147, 232, 155, 93, 148, + 200, 191, 27, 85, 27, 165, 115, 84, 6, 28, 24, 67, 86, 229, 157, 74, 44, 96, 212, 23, 3, 249, 126, 111, 255, 19, + 76, 166, 121, 76, 24, 172, 17, 227, 18, 22, 55, 250, 211, 71, 109, 102, 147, 97, 145, 231, 239, 67, 111, 103, 246, + 76, 165, 115, 160, 187, 205, 234, 20, 125, 75, 175, 64, 80, 27, 121, 80, 248, 237, 20, 131, 26, 22, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1641, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2377384955400370997" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3426742059807459531" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb52c223b3e98c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6013233688851673574" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3902697127181861696" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7603742496522074420" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17157824461694392314" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11606543827386038343" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1192144404617213567" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11782282896334726756" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12344222468237592830" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c6d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9832040436628741037" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8813369425113500895" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2567949103760837089" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06" + }, + { + "_tag": "ByteArray", + "bytearray": "ff04ff" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b20fe2b0560ff3b359fbf1b2f8e3bbf6bb6c8cb47fb52c223b3e98c1b53734c2e376a71e61b36292a5c1b9cc3401b6985eb83a4bd79341bee1cd6711dcd57fa1ba112ba1ded58f8471b108b59050e2db67fffd8669f1ba38313de773126649fd87b9f1bab4f7ceeafb288feff9f42c6d61b88726caf4a885badffd8669f1b7a4f60cc022dccdf9f1b23a3301ab2f289e1410643ff04ffffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 32, 254, 43, 5, 96, 255, 59, 53, 159, 191, 27, 47, 142, 59, 191, 107, 182, 200, 203, 71, 251, + 82, 194, 35, 179, 233, 140, 27, 83, 115, 76, 46, 55, 106, 113, 230, 27, 54, 41, 42, 92, 27, 156, 195, 64, 27, 105, + 133, 235, 131, 164, 189, 121, 52, 27, 238, 28, 214, 113, 29, 205, 87, 250, 27, 161, 18, 186, 29, 237, 88, 248, 71, + 27, 16, 139, 89, 5, 14, 45, 182, 127, 255, 216, 102, 159, 27, 163, 131, 19, 222, 119, 49, 38, 100, 159, 216, 123, + 159, 27, 171, 79, 124, 238, 175, 178, 136, 254, 255, 159, 66, 198, 214, 27, 136, 114, 108, 175, 74, 136, 91, 173, + 255, 216, 102, 159, 27, 122, 79, 96, 204, 2, 45, 204, 223, 159, 27, 35, 163, 48, 26, 178, 242, 137, 225, 65, 6, + 67, 255, 4, 255, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1642, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "44" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1279575247749784263" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1d1303a072ef60d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12b3" + } + } + ] + } + ] + }, + "cborHex": "d8799fbf41441b11c1f6e8898222c748b1d1303a072ef60d4212b3ffff", + "cborBytes": [ + 216, 121, 159, 191, 65, 68, 27, 17, 193, 246, 232, 137, 130, 34, 199, 72, 177, 209, 48, 58, 7, 46, 246, 13, 66, + 18, 179, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1643, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15344882939599441487" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6311733374494876550" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12035609001681749881" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8988385165062680585" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11795741489163225411" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d06146de58" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12044450221193538648" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6259883110242203606" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12168830863949580554" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4719458807114583573" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10543129532803308110" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c82c456924b7f7738c3afb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16972246542631410070" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2839080749409272318" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "389d5da8f768" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2214190015222661705" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9d565a5cc33" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11164005209026845320" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "ByteArray", + "bytearray": "107c4871b923" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8856209893010732119" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "078a8e2b" + }, + { + "_tag": "ByteArray", + "bytearray": "7ed8937626e066a744" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2456589649159366217" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1360338875120850950" + } + }, + { + "_tag": "ByteArray", + "bytearray": "847279" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fe74adca7d74a669e90d" + } + ] + } + ] + }, + "cborHex": "d87c9fd8669f1bd4f3f9bb9ec6ce4f9f80bf1b5797c81027bea3861ba707129ea0bc07791b7cbd28af63f3b00941051ba3b2e4634be9494345d06146de581ba7267ba9751dac581b56df9285c17437d61ba8e05f329186490a1b417ee2c7c2274e15ffbf1b9250b8733fabda4e4bc82c456924b7f7738c3afb1beb89884ec5e599961b276670e6453081fe46389d5da8f7681b1eba62166a90424946a9d565a5cc331b9aee839692a7da88ffffff9f1bffffffffffffffef46107c4871b923d8669f1b7ae793f9b93474579f44078a8e2b497ed8937626e066a7441b22178f45350ba6491b12e0e4ffe1bb980643847279ffff4afe74adca7d74a669e90dffff", + "cborBytes": [ + 216, 124, 159, 216, 102, 159, 27, 212, 243, 249, 187, 158, 198, 206, 79, 159, 128, 191, 27, 87, 151, 200, 16, 39, + 190, 163, 134, 27, 167, 7, 18, 158, 160, 188, 7, 121, 27, 124, 189, 40, 175, 99, 243, 176, 9, 65, 5, 27, 163, 178, + 228, 99, 75, 233, 73, 67, 69, 208, 97, 70, 222, 88, 27, 167, 38, 123, 169, 117, 29, 172, 88, 27, 86, 223, 146, + 133, 193, 116, 55, 214, 27, 168, 224, 95, 50, 145, 134, 73, 10, 27, 65, 126, 226, 199, 194, 39, 78, 21, 255, 191, + 27, 146, 80, 184, 115, 63, 171, 218, 78, 75, 200, 44, 69, 105, 36, 183, 247, 115, 140, 58, 251, 27, 235, 137, 136, + 78, 197, 229, 153, 150, 27, 39, 102, 112, 230, 69, 48, 129, 254, 70, 56, 157, 93, 168, 247, 104, 27, 30, 186, 98, + 22, 106, 144, 66, 73, 70, 169, 213, 101, 165, 204, 51, 27, 154, 238, 131, 150, 146, 167, 218, 136, 255, 255, 255, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 70, 16, 124, 72, 113, 185, 35, 216, 102, 159, 27, 122, 231, 147, + 249, 185, 52, 116, 87, 159, 68, 7, 138, 142, 43, 73, 126, 216, 147, 118, 38, 224, 102, 167, 68, 27, 34, 23, 143, + 69, 53, 11, 166, 73, 27, 18, 224, 228, 255, 225, 187, 152, 6, 67, 132, 114, 121, 255, 255, 74, 254, 116, 173, 202, + 125, 116, 166, 105, 233, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1644, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fed05d38ee21" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13390402558137887598" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7244595098949096911" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "47" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c54b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "262503f8402903ba55" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87d9f9f46fed05d38ee211bb9d4442e654a6b6ed8669f1b6489f8dbe66595cf9f4147ffffffbf42c54b49262503f8402903ba55ffa0ff", + "cborBytes": [ + 216, 125, 159, 159, 70, 254, 208, 93, 56, 238, 33, 27, 185, 212, 68, 46, 101, 74, 107, 110, 216, 102, 159, 27, + 100, 137, 248, 219, 230, 101, 149, 207, 159, 65, 71, 255, 255, 255, 191, 66, 197, 75, 73, 38, 37, 3, 248, 64, 41, + 3, 186, 85, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1645, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "493be8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13024663841143124000" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5147" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "291ea2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a663fea65ed808744e4bc7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc78b57b" + } + } + ] + } + ] + }, + "cborHex": "d9050b9f80bf412d412e43493be81bb4c0e6c18235f02042514743291ea24ba663fea65ed808744e4bc744dc78b57bffff", + "cborBytes": [ + 217, 5, 11, 159, 128, 191, 65, 45, 65, 46, 67, 73, 59, 232, 27, 180, 192, 230, 193, 130, 53, 240, 32, 66, 81, 71, + 67, 41, 30, 162, 75, 166, 99, 254, 166, 94, 216, 8, 116, 78, 75, 199, 68, 220, 120, 181, 123, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1646, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5207" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6518394344413396495" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14059951415078666676" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9539424458862821379" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e54b083aa2544162b5858a7f" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1898130226655675043" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6b5628366f9fd0e2" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "42f6a1f8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14338158390472733409" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7223752564797274554" + } + } + ] + } + ] + }, + "cborHex": "d8799f4252079fd8669f1b5a75fd1eccacfe0f80ffd8669f1bc31efb51b703c1b49f417b1b8462d800d83100034ce54b083aa2544162b5858a7fffff801b1a578362693e42a3486b5628366f9fd0e2ff4442f6a1f89f1bc6fb5f16dd69f2e11b643fecaf420ef9baffff", + "cborBytes": [ + 216, 121, 159, 66, 82, 7, 159, 216, 102, 159, 27, 90, 117, 253, 30, 204, 172, 254, 15, 128, 255, 216, 102, 159, + 27, 195, 30, 251, 81, 183, 3, 193, 180, 159, 65, 123, 27, 132, 98, 216, 0, 216, 49, 0, 3, 76, 229, 75, 8, 58, 162, + 84, 65, 98, 181, 133, 138, 127, 255, 255, 128, 27, 26, 87, 131, 98, 105, 62, 66, 163, 72, 107, 86, 40, 54, 111, + 159, 208, 226, 255, 68, 66, 246, 161, 248, 159, 27, 198, 251, 95, 22, 221, 105, 242, 225, 27, 100, 63, 236, 175, + 66, 14, 249, 186, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1647, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5846009636167276449" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bc7850" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9132104083279182338" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + "cborHex": "d8669f1b512132ca6542d7a19f43bc78501b7ebbc0479fbffa0202ffff", + "cborBytes": [ + 216, 102, 159, 27, 81, 33, 50, 202, 101, 66, 215, 161, 159, 67, 188, 120, 80, 27, 126, 187, 192, 71, 159, 191, + 250, 2, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1648, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0608487561" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8305105475699579991" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4ada2996ed339da0b2a408ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15777455559651048160" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b1e446b6467ea012c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5905471357389963423" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5552444445291730003" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "81ebe0c36a63" + }, + { + "_tag": "ByteArray", + "bytearray": "d140c9508163e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17841233748825799726" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87b9f80d905069f9f450608487561ffd8669f1b7341a96d85399c579f4c4ada2996ed339da0b2a408ca1bdaf4c83d2c833ae049b1e446b6467ea012c71b51f472e93879009fffffd8669f1b4d0e3ece0cb454539f4681ebe0c36a6347d140c9508163e31bf798cb915178fc2effffffff", + "cborBytes": [ + 216, 123, 159, 128, 217, 5, 6, 159, 159, 69, 6, 8, 72, 117, 97, 255, 216, 102, 159, 27, 115, 65, 169, 109, 133, + 57, 156, 87, 159, 76, 74, 218, 41, 150, 237, 51, 157, 160, 178, 164, 8, 202, 27, 218, 244, 200, 61, 44, 131, 58, + 224, 73, 177, 228, 70, 182, 70, 126, 160, 18, 199, 27, 81, 244, 114, 233, 56, 121, 0, 159, 255, 255, 216, 102, + 159, 27, 77, 14, 62, 206, 12, 180, 84, 83, 159, 70, 129, 235, 224, 195, 106, 99, 71, 209, 64, 201, 80, 129, 99, + 227, 27, 247, 152, 203, 145, 81, 120, 252, 46, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1649, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11288356161284848971" + }, + "fields": [] + }, + "cborHex": "d8669f1b9ca84c1ed379bd4b80ff", + "cborBytes": [216, 102, 159, 27, 156, 168, 76, 30, 211, 121, 189, 75, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1650, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15450661743742913292" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1663757638363899274" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9536f7fe8ae7a0" + }, + { + "_tag": "ByteArray", + "bytearray": "29d5b088e3a6a72e58" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ac976babd0293aa632ee723b" + }, + { + "_tag": "ByteArray", + "bytearray": "ed4c0cfc7e" + }, + { + "_tag": "ByteArray", + "bytearray": "f779d0" + }, + { + "_tag": "ByteArray", + "bytearray": "824bcc79cc" + } + ] + }, + "cborHex": "d8669f1bd66bc6feac838b0c9f9f1b1716dac1d305e58a9f479536f7fe8ae7a04929d5b088e3a6a72e58ffff4cac976babd0293aa632ee723b45ed4c0cfc7e43f779d045824bcc79ccffff", + "cborBytes": [ + 216, 102, 159, 27, 214, 107, 198, 254, 172, 131, 139, 12, 159, 159, 27, 23, 22, 218, 193, 211, 5, 229, 138, 159, + 71, 149, 54, 247, 254, 138, 231, 160, 73, 41, 213, 176, 136, 227, 166, 167, 46, 88, 255, 255, 76, 172, 151, 107, + 171, 208, 41, 58, 166, 50, 238, 114, 59, 69, 237, 76, 12, 252, 126, 67, 247, 121, 208, 69, 130, 75, 204, 121, 204, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1651, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2257055342755306408" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14723763897446278345" + } + } + ] + }, + "cborHex": "d8669f1b1f52abe03753dba89f1bcc5551414001a4c9ffff", + "cborBytes": [ + 216, 102, 159, 27, 31, 82, 171, 224, 55, 83, 219, 168, 159, 27, 204, 85, 81, 65, 64, 1, 164, 201, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1652, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3499dfcf971fdd" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2892057722949960463" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4d3de743f709" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14957701799033097482" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18116680047204820568" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12871805740986315202" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16486253443216712885" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16582334815260992408" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fc12fe" + } + ] + }, + "cborHex": "d9050d9f9f473499dfcf971fddd8669f1b2822a72d1e5b830f9f464d3de743f7091bcf946e897396cd0a1bfb6b6084430ce6581bb2a1d71fa952b1c21be4caf0289ffe24b5ffff1be62049a85239639880ffd905098043fc12feff", + "cborBytes": [ + 217, 5, 13, 159, 159, 71, 52, 153, 223, 207, 151, 31, 221, 216, 102, 159, 27, 40, 34, 167, 45, 30, 91, 131, 15, + 159, 70, 77, 61, 231, 67, 247, 9, 27, 207, 148, 110, 137, 115, 150, 205, 10, 27, 251, 107, 96, 132, 67, 12, 230, + 88, 27, 178, 161, 215, 31, 169, 82, 177, 194, 27, 228, 202, 240, 40, 159, 254, 36, 181, 255, 255, 27, 230, 32, 73, + 168, 82, 57, 99, 152, 128, 255, 217, 5, 9, 128, 67, 252, 18, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1653, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5363670573799866326" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03422be1e69ab84d8b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58de9e4c35c3ceb70440" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d8be4606807c2fe2e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6614968237419328392" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "739b70630fc0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16013218252846167869" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97a778e2a3fa1c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1713661706594180165" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0d445a27e70" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14131594980461750216" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2027979317845974198" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18234039603465758381" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13870653356400067403" + } + }, + { + "_tag": "ByteArray", + "bytearray": "84d1" + }, + { + "_tag": "ByteArray", + "bytearray": "395b6480145338080dc9" + }, + { + "_tag": "ByteArray", + "bytearray": "eebe74d99772aab391bc1e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18267239551436919756" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13818023592782984170" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13115775651059979169" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16018468411584892832" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b4a6f95f80b8e7fd69fbf4903422be1e69ab84d8b4a58de9e4c35c3ceb70440492d8be4606807c2fe2e1b5bcd169077def38846739b70630fc01bde3a6128c7b2773d4797a778e2a3fa1c1b17c8263e26bc5c4546d0d445a27e701bc41d82c3281da7c8ffd8669f1b1c24d471e40c5cb69fd8669f1bfd0c526948fb26ad9f1bc07e75bcdece434b4284d14a395b6480145338080dc94beebe74d99772aab391bc1effff1bfd8245968a5d13cc1bbfc37b3f21cbf3ea1bb6049876db25d3a19f1bde4d08269e554fa0ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 74, 111, 149, 248, 11, 142, 127, 214, 159, 191, 73, 3, 66, 43, 225, 230, 154, 184, 77, 139, 74, + 88, 222, 158, 76, 53, 195, 206, 183, 4, 64, 73, 45, 139, 228, 96, 104, 7, 194, 254, 46, 27, 91, 205, 22, 144, 119, + 222, 243, 136, 70, 115, 155, 112, 99, 15, 192, 27, 222, 58, 97, 40, 199, 178, 119, 61, 71, 151, 167, 120, 226, + 163, 250, 28, 27, 23, 200, 38, 62, 38, 188, 92, 69, 70, 208, 212, 69, 162, 126, 112, 27, 196, 29, 130, 195, 40, + 29, 167, 200, 255, 216, 102, 159, 27, 28, 36, 212, 113, 228, 12, 92, 182, 159, 216, 102, 159, 27, 253, 12, 82, + 105, 72, 251, 38, 173, 159, 27, 192, 126, 117, 188, 222, 206, 67, 75, 66, 132, 209, 74, 57, 91, 100, 128, 20, 83, + 56, 8, 13, 201, 75, 238, 190, 116, 217, 151, 114, 170, 179, 145, 188, 30, 255, 255, 27, 253, 130, 69, 150, 138, + 93, 19, 204, 27, 191, 195, 123, 63, 33, 203, 243, 234, 27, 182, 4, 152, 118, 219, 37, 211, 161, 159, 27, 222, 77, + 8, 38, 158, 85, 79, 160, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1654, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13015224858816241608" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3608697358276342385" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6864815404889929071" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6509940498467430954" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81a51aa184db6cf87207973b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7612269532992834226" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a1011c3be301e908d01fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16057738670388112769" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65501720d806" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17898350328271962373" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4437270422f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18396081616414618826" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16436702466590647296" + } + } + } + ] + } + ] + }, + "cborHex": "d87e9f1bb49f5e0d2d935fc8bf1b3214ab20adf3b2711b5f44b93d4917f56f1b5a57f4646814a22a4c81a51aa184db6cf87207973b1b69a436cf08910ab24b0a1011c3be301e908d01fe1bded88c3e40896d814665501720d8061bf863b6cb46258105464437270422f21bff4c02c3757cb4ca1be41ae5ced7ec2400ffff", + "cborBytes": [ + 216, 126, 159, 27, 180, 159, 94, 13, 45, 147, 95, 200, 191, 27, 50, 20, 171, 32, 173, 243, 178, 113, 27, 95, 68, + 185, 61, 73, 23, 245, 111, 27, 90, 87, 244, 100, 104, 20, 162, 42, 76, 129, 165, 26, 161, 132, 219, 108, 248, 114, + 7, 151, 59, 27, 105, 164, 54, 207, 8, 145, 10, 178, 75, 10, 16, 17, 195, 190, 48, 30, 144, 141, 1, 254, 27, 222, + 216, 140, 62, 64, 137, 109, 129, 70, 101, 80, 23, 32, 216, 6, 27, 248, 99, 182, 203, 70, 37, 129, 5, 70, 68, 55, + 39, 4, 34, 242, 27, 255, 76, 2, 195, 117, 124, 180, 202, 27, 228, 26, 229, 206, 215, 236, 36, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1655, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4945137111535763502" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8716715895862059926" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13767267111656532572" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17124715155206517608" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06665011" + }, + { + "_tag": "ByteArray", + "bytearray": "1094dc" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5ebf35bf9fba141a25fa" + } + ] + } + ] + }, + "cborHex": "d8669f1b44a0a800a2b0c02e9f1b78f7feec94dbe3969fd8669f1bbf0f287ef634aa5c9f1beda735b3f9d533684406665011431094dcffff4a5ebf35bf9fba141a25faffffff", + "cborBytes": [ + 216, 102, 159, 27, 68, 160, 168, 0, 162, 176, 192, 46, 159, 27, 120, 247, 254, 236, 148, 219, 227, 150, 159, 216, + 102, 159, 27, 191, 15, 40, 126, 246, 52, 170, 92, 159, 27, 237, 167, 53, 179, 249, 213, 51, 104, 68, 6, 102, 80, + 17, 67, 16, 148, 220, 255, 255, 74, 94, 191, 53, 191, 159, 186, 20, 26, 37, 250, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1656, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4410166650781188386" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9222" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17378757105684526956" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12362117418569758161" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9090673688243878515" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9bc5b210d4d9cbc58f11b0cd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6825379374685327770" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5bd5feed75989a13" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "45a7b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5947211334986007182" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d386c3b6c9082856d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18105749219671956352" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4f2858170" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "298e70a803a8bbef614e51" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5ee7d720ba1e999a814a485" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e433ba2e7066239e756" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff4807ba8ffdc8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6219252425093823157" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3226849680393559743" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0a3a0ec744af3a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13454964779501593880" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18361085929173634920" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "981462245479540621" + } + }, + { + "_tag": "ByteArray", + "bytearray": "baaf9f6ac0a747df59d42d" + }, + { + "_tag": "ByteArray", + "bytearray": "14" + }, + { + "_tag": "ByteArray", + "bytearray": "d9a78c28ce2920232b" + }, + { + "_tag": "ByteArray", + "bytearray": "65b0e0f2dacedb9cd1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17791777985240780281" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "76a9c8cbe6ae3c602f11cd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d1ca767" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1c9e58511" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b51a50545d1fe6085c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3a1c0cf3f80d0e7c7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e06b58e7cde072bac6555" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3d340f33ec1641229fbf4292221bf12dbf82d21f376cff1bab8f104b7d84f5d1d8669f1b7e288f8e14c43a739f4c9bc5b210d4d9cbc58f11b0cd1b5eb89e60fd65919a485bd5feed75989a13bf4345a7b31b5288bd331204828e499d386c3b6c9082856d1bfb448afca6da5b8045e4f28581704b298e70a803a8bbef614e514ce5ee7d720ba1e999a814a4854a7e433ba2e7066239e75647ff4807ba8ffdc81b564f39212e343ab5ff80ffff9fd8669f1b2cc812b00f70debf9f470a3a0ec744af3affff1bbab9a32df395a518a0d8669f1bfecfae5f12d14f689f1b0d9edab65643e78d4bbaaf9f6ac0a747df59d42d411449d9a78c28ce2920232b4965b0e0f2dacedb9cd1ffff1bf6e917d00ce44df9ffbf4b76a9c8cbe6ae3c602f11cd449d1ca76745c1c9e5851149b51a50545d1fe6085c49d3a1c0cf3f80d0e7c74b7e06b58e7cde072bac6555ffffff", + "cborBytes": [ + 216, 102, 159, 27, 61, 52, 15, 51, 236, 22, 65, 34, 159, 191, 66, 146, 34, 27, 241, 45, 191, 130, 210, 31, 55, + 108, 255, 27, 171, 143, 16, 75, 125, 132, 245, 209, 216, 102, 159, 27, 126, 40, 143, 142, 20, 196, 58, 115, 159, + 76, 155, 197, 178, 16, 212, 217, 203, 197, 143, 17, 176, 205, 27, 94, 184, 158, 96, 253, 101, 145, 154, 72, 91, + 213, 254, 237, 117, 152, 154, 19, 191, 67, 69, 167, 179, 27, 82, 136, 189, 51, 18, 4, 130, 142, 73, 157, 56, 108, + 59, 108, 144, 130, 133, 109, 27, 251, 68, 138, 252, 166, 218, 91, 128, 69, 228, 242, 133, 129, 112, 75, 41, 142, + 112, 168, 3, 168, 187, 239, 97, 78, 81, 76, 229, 238, 125, 114, 11, 161, 233, 153, 168, 20, 164, 133, 74, 126, 67, + 59, 162, 231, 6, 98, 57, 231, 86, 71, 255, 72, 7, 186, 143, 253, 200, 27, 86, 79, 57, 33, 46, 52, 58, 181, 255, + 128, 255, 255, 159, 216, 102, 159, 27, 44, 200, 18, 176, 15, 112, 222, 191, 159, 71, 10, 58, 14, 199, 68, 175, 58, + 255, 255, 27, 186, 185, 163, 45, 243, 149, 165, 24, 160, 216, 102, 159, 27, 254, 207, 174, 95, 18, 209, 79, 104, + 159, 27, 13, 158, 218, 182, 86, 67, 231, 141, 75, 186, 175, 159, 106, 192, 167, 71, 223, 89, 212, 45, 65, 20, 73, + 217, 167, 140, 40, 206, 41, 32, 35, 43, 73, 101, 176, 224, 242, 218, 206, 219, 156, 209, 255, 255, 27, 246, 233, + 23, 208, 12, 228, 77, 249, 255, 191, 75, 118, 169, 200, 203, 230, 174, 60, 96, 47, 17, 205, 68, 157, 28, 167, 103, + 69, 193, 201, 229, 133, 17, 73, 181, 26, 80, 84, 93, 31, 230, 8, 92, 73, 211, 161, 192, 207, 63, 128, 208, 231, + 199, 75, 126, 6, 181, 142, 124, 222, 7, 43, 172, 101, 85, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1657, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16494310825930315544" + } + } + ] + } + ] + }, + "cborHex": "d905059f9fa01be4e7904e3a74d718ffff", + "cborBytes": [217, 5, 5, 159, 159, 160, 27, 228, 231, 144, 78, 58, 116, 215, 24, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1658, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13860868845852599953" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4979722459524990542" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8841305474671187027" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "13464780b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0613608a44ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "176e3c03d3b6bf860f029e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "531059572350719566" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2988195748344951560" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9b2dee46d9d50e20594796" + }, + { + "_tag": "ByteArray", + "bytearray": "0df19e0bca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11357957245960173788" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5334889683229126946" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bc05bb2c6fb52a6919fbf1b451b87317805864e1b7ab2a07c687e14534513464780b0460613608a44ae4b176e3c03d3b6bf860f029e1b075eb3de0c89164effd8669f1b29783433736ef3089f9f4b9b2dee46d9d50e20594796450df19e0bca1b9d9f91f02b87b8dcff1b4a0955e6c4c4b122ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 192, 91, 178, 198, 251, 82, 166, 145, 159, 191, 27, 69, 27, 135, 49, 120, 5, 134, 78, 27, 122, + 178, 160, 124, 104, 126, 20, 83, 69, 19, 70, 71, 128, 176, 70, 6, 19, 96, 138, 68, 174, 75, 23, 110, 60, 3, 211, + 182, 191, 134, 15, 2, 158, 27, 7, 94, 179, 222, 12, 137, 22, 78, 255, 216, 102, 159, 27, 41, 120, 52, 51, 115, + 110, 243, 8, 159, 159, 75, 155, 45, 238, 70, 217, 213, 14, 32, 89, 71, 150, 69, 13, 241, 158, 11, 202, 27, 157, + 159, 145, 240, 43, 135, 184, 220, 255, 27, 74, 9, 85, 230, 196, 196, 177, 34, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1659, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3442818406388087194" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1440077166919823283" + } + }, + { + "_tag": "ByteArray", + "bytearray": "20c2aca4b3b38578" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11822755105306429706" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17959784385007032218" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f9fd" + }, + { + "_tag": "ByteArray", + "bytearray": "fa2e185e2692e2901f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "56240768cb3a48f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec672d968774" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "866fb451dc6fc4bd1a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11859774908419956525" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5813472366205302563" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb7355" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6367867272657276837" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc87c03f1283" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5078176967228014508" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe90fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18195686956570688315" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6719102781964924144" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13208704363168838208" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9716299152740877251" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13189956220339230988" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16274832821081942693" + } + } + ] + }, + "cborHex": "d8669f1b2fc759198af0399a9fd9050c9f9f1b13fc2e8daf682fb34820c2aca4b3b385781ba412dd20ee39c90affd8669f1bfffffffffffffff79f1bf93df8be3ef3979a42f9fd49fa2e185e2692e2901fffffbf4856240768cb3a48f946ec672d96877449866fb451dc6fc4bd1a1ba496627184765f2d42ab371b50ad9a50e337772343fb73551b585f358bcb928fa546fc87c03f12831b46794f0bde323fac43fe90fd1bfc8410e1d29abb3bff09bf1b5d3f0c61805bb4f01bb74ebea2b5d4b2401b86d73a99aa8c83c31bb70c234c8c46190cffff1be1dbd23917752aa5ffff", + "cborBytes": [ + 216, 102, 159, 27, 47, 199, 89, 25, 138, 240, 57, 154, 159, 217, 5, 12, 159, 159, 27, 19, 252, 46, 141, 175, 104, + 47, 179, 72, 32, 194, 172, 164, 179, 179, 133, 120, 27, 164, 18, 221, 32, 238, 57, 201, 10, 255, 216, 102, 159, + 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 27, 249, 61, 248, 190, 62, 243, 151, 154, 66, 249, 253, 73, 250, + 46, 24, 94, 38, 146, 226, 144, 31, 255, 255, 191, 72, 86, 36, 7, 104, 203, 58, 72, 249, 70, 236, 103, 45, 150, + 135, 116, 73, 134, 111, 180, 81, 220, 111, 196, 189, 26, 27, 164, 150, 98, 113, 132, 118, 95, 45, 66, 171, 55, 27, + 80, 173, 154, 80, 227, 55, 119, 35, 67, 251, 115, 85, 27, 88, 95, 53, 139, 203, 146, 143, 165, 70, 252, 135, 192, + 63, 18, 131, 27, 70, 121, 79, 11, 222, 50, 63, 172, 67, 254, 144, 253, 27, 252, 132, 16, 225, 210, 154, 187, 59, + 255, 9, 191, 27, 93, 63, 12, 97, 128, 91, 180, 240, 27, 183, 78, 190, 162, 181, 212, 178, 64, 27, 134, 215, 58, + 153, 170, 140, 131, 195, 27, 183, 12, 35, 76, 140, 70, 25, 12, 255, 255, 27, 225, 219, 210, 57, 23, 117, 42, 165, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1660, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16115785836316439649" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9426759860894632641" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2774b2" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eca114a2cd51c059ae578f26" + }, + { + "_tag": "ByteArray", + "bytearray": "ff36e4139d" + }, + { + "_tag": "ByteArray", + "bytearray": "3a2cefe620" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff13fefc2b07" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cc15208518" + } + ] + }, + "cborHex": "d8669f1bdfa6c5d541e9b4619fd8669f1b82d29425fb890ac19f432774b29f4ceca114a2cd51c059ae578f2645ff36e4139d453a2cefe620ff9f46ff13fefc2b07ff0dffff45cc15208518ffff", + "cborBytes": [ + 216, 102, 159, 27, 223, 166, 197, 213, 65, 233, 180, 97, 159, 216, 102, 159, 27, 130, 210, 148, 37, 251, 137, 10, + 193, 159, 67, 39, 116, 178, 159, 76, 236, 161, 20, 162, 205, 81, 192, 89, 174, 87, 143, 38, 69, 255, 54, 228, 19, + 157, 69, 58, 44, 239, 230, 32, 255, 159, 70, 255, 19, 254, 252, 43, 7, 255, 13, 255, 255, 69, 204, 21, 32, 133, + 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1661, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87b9fa0ff", + "cborBytes": [216, 123, 159, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1662, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "979386251449223047" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ee29f104045414cccbab9f" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11727181633049526594" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6146273024830155219" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "65b6807f7e0b0d3fe9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4059cf4dbce9861ac8a2ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4226901571489550477" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2b5d3ee1a1a31bc70c53e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2946080409907463621" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a985cc089c79" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7244245574505075298" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10847377754328780620" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12238378077863449152" + } + }, + { + "_tag": "ByteArray", + "bytearray": "891b808f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15470357370510758921" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1623698533285530106" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "34e21fa243aa2de24f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4083217208875397003" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1965232305616541025" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7237166404128837363" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1804" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7524352245565106595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b125b34c53468361" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14914174444223751824" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3173895122527182564" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b0d977a9b4f8847879f4bee29f104045414cccbab9f801ba2bf518fde670142d8669f1b554bf2c0719129d39fbf4965b6807f7e0b0d3fe94b4059cf4dbce9861ac8a2ff41a01b3aa8f8958d2cd08d4ba2b5d3ee1a1a31bc70c53e1b28e29486184585c546a985cc089c791b6488baf7e6121262ffd8669f1b9689a0987f3dcf4c9f1ba9d7740525fa924044891b808f1bd6b1c01021a3d4091b168889369ace89faffff4934e21fa243aa2de24fffffbf1b38aa806aebc7af8b1b1b45e85ea56555611b646f94801a7d8ef34218041b686bde8069d229a348b125b34c534683611bcef9caa36a2a66901b2c0bf0cc4493dee4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 13, 151, 122, 155, 79, 136, 71, 135, 159, 75, 238, 41, 241, 4, 4, 84, 20, 204, 203, 171, 159, + 128, 27, 162, 191, 81, 143, 222, 103, 1, 66, 216, 102, 159, 27, 85, 75, 242, 192, 113, 145, 41, 211, 159, 191, 73, + 101, 182, 128, 127, 126, 11, 13, 63, 233, 75, 64, 89, 207, 77, 188, 233, 134, 26, 200, 162, 255, 65, 160, 27, 58, + 168, 248, 149, 141, 44, 208, 141, 75, 162, 181, 211, 238, 26, 26, 49, 188, 112, 197, 62, 27, 40, 226, 148, 134, + 24, 69, 133, 197, 70, 169, 133, 204, 8, 156, 121, 27, 100, 136, 186, 247, 230, 18, 18, 98, 255, 216, 102, 159, 27, + 150, 137, 160, 152, 127, 61, 207, 76, 159, 27, 169, 215, 116, 5, 37, 250, 146, 64, 68, 137, 27, 128, 143, 27, 214, + 177, 192, 16, 33, 163, 212, 9, 27, 22, 136, 137, 54, 154, 206, 137, 250, 255, 255, 73, 52, 226, 31, 162, 67, 170, + 45, 226, 79, 255, 255, 191, 27, 56, 170, 128, 106, 235, 199, 175, 139, 27, 27, 69, 232, 94, 165, 101, 85, 97, 27, + 100, 111, 148, 128, 26, 125, 142, 243, 66, 24, 4, 27, 104, 107, 222, 128, 105, 210, 41, 163, 72, 177, 37, 179, 76, + 83, 70, 131, 97, 27, 206, 249, 202, 163, 106, 42, 102, 144, 27, 44, 11, 240, 204, 68, 147, 222, 228, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1663, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "81264a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "50e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4409035388263388642" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc12b3749b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5045665776021963458" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bafbf50e9d7dce5a37593a" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d2d05d1a2667" + } + ] + } + ] + }, + "cborHex": "d905089f4381264abf4250e81b3d300a535790d5e245fc12b3749b1b4605ce4a4b2282c2ff9f4bbafbf50e9d7dce5a37593aa046d2d05d1a2667ffff", + "cborBytes": [ + 217, 5, 8, 159, 67, 129, 38, 74, 191, 66, 80, 232, 27, 61, 48, 10, 83, 87, 144, 213, 226, 69, 252, 18, 179, 116, + 155, 27, 70, 5, 206, 74, 75, 34, 130, 194, 255, 159, 75, 186, 251, 245, 14, 157, 125, 206, 90, 55, 89, 58, 160, + 70, 210, 208, 93, 26, 38, 103, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1664, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9419936410998899596" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15885483961076733011" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f338ad291d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5893060602658335262" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16926744070020331616" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b3c10d63dec25239a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15985447053763804024" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fad5d1e42660aafa" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2690763620043310717" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a7a2c6a950d2bd" + }, + { + "_tag": "ByteArray", + "bytearray": "400057" + }, + { + "_tag": "ByteArray", + "bytearray": "282e8c71" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2203186418548838586" + } + }, + { + "_tag": "ByteArray", + "bytearray": "81d0" + } + ] + } + ] + }, + "cborHex": "d8669f1b82ba5641c05b838c9fd8669f1bdc74937f6924d4539f9f45f338ad291dffbf1b51c85b65354caa1e1beae7e00cc982f860497b3c10d63dec25239a1bddd7b7669f67fb78ff9f48fad5d1e42660aafaff1b255783419339c67dffff9f47a7a2c6a950d2bd4340005744282e8c711b1e934a5feb9190ba4281d0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 130, 186, 86, 65, 192, 91, 131, 140, 159, 216, 102, 159, 27, 220, 116, 147, 127, 105, 36, 212, + 83, 159, 159, 69, 243, 56, 173, 41, 29, 255, 191, 27, 81, 200, 91, 101, 53, 76, 170, 30, 27, 234, 231, 224, 12, + 201, 130, 248, 96, 73, 123, 60, 16, 214, 61, 236, 37, 35, 154, 27, 221, 215, 183, 102, 159, 103, 251, 120, 255, + 159, 72, 250, 213, 209, 228, 38, 96, 170, 250, 255, 27, 37, 87, 131, 65, 147, 57, 198, 125, 255, 255, 159, 71, + 167, 162, 198, 169, 80, 210, 189, 67, 64, 0, 87, 68, 40, 46, 140, 113, 27, 30, 147, 74, 95, 235, 145, 144, 186, + 66, 129, 208, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1665, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17686173338599052658" + }, + "fields": [] + }, + "cborHex": "d8669f1bf571e8f2332e557280ff", + "cborBytes": [216, 102, 159, 27, 245, 113, 232, 242, 51, 46, 85, 114, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1666, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5d132b3ae1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9616232352a4" + } + ] + } + ] + }, + "cborHex": "d905029f455d132b3ae19f469616232352a4ffff", + "cborBytes": [217, 5, 2, 159, 69, 93, 19, 43, 58, 225, 159, 70, 150, 22, 35, 35, 82, 164, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1667, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6593875876593884935" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12808331465627884373" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bb38a78f9a4a3f84d577f3bd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9407463240642267360" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2666132673752238572" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4faa1ee" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11646384981862700493" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68fb7d885a2e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14946064564419580910" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17582543204865119047" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1226253323928464497" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18416296224040123880" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac1101" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1035819945211720210" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d89339b8810fbc711224b1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1050931192913549942" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11097427923950166955" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3956710020860503626" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "361cea1270788d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5946599211433031919" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5930863928951255200" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6265307078740088126" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12370747947449399010" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17558282157372463976" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15283918805441535559" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5b82272c85655f079f9fd8669f1bb1c0559b46355b559f4cbb38a78f9a4a3f84d577f3bd1b828e05f9780708e0ffffbf1b2500018a7f1089ec44a4faa1ee1ba1a0456f915ed5cd4668fb7d885a2e1bcf6b1688a04853ee41dc1bf401bde375f193471b110486e6b165ec711bff93d3d790477de843ac1101ffbf1b0e5ff8c08d9bf2124bd89339b8810fbc711224b11b0e95a85a14fd5a761b9a01fbe66f8ce3ab1b36e90ecce89e664a47361cea1270788d1b52869079f31578ef1b524ea952005130a01b56f2d797d50b153e1babadb9b7159d36e21bf3ab8c982843db681bd41b632d06415e47ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 91, 130, 39, 44, 133, 101, 95, 7, 159, 159, 216, 102, 159, 27, 177, 192, 85, 155, 70, 53, 91, + 85, 159, 76, 187, 56, 167, 143, 154, 74, 63, 132, 213, 119, 243, 189, 27, 130, 142, 5, 249, 120, 7, 8, 224, 255, + 255, 191, 27, 37, 0, 1, 138, 127, 16, 137, 236, 68, 164, 250, 161, 238, 27, 161, 160, 69, 111, 145, 94, 213, 205, + 70, 104, 251, 125, 136, 90, 46, 27, 207, 107, 22, 136, 160, 72, 83, 238, 65, 220, 27, 244, 1, 189, 227, 117, 241, + 147, 71, 27, 17, 4, 134, 230, 177, 101, 236, 113, 27, 255, 147, 211, 215, 144, 71, 125, 232, 67, 172, 17, 1, 255, + 191, 27, 14, 95, 248, 192, 141, 155, 242, 18, 75, 216, 147, 57, 184, 129, 15, 188, 113, 18, 36, 177, 27, 14, 149, + 168, 90, 20, 253, 90, 118, 27, 154, 1, 251, 230, 111, 140, 227, 171, 27, 54, 233, 14, 204, 232, 158, 102, 74, 71, + 54, 28, 234, 18, 112, 120, 141, 27, 82, 134, 144, 121, 243, 21, 120, 239, 27, 82, 78, 169, 82, 0, 81, 48, 160, 27, + 86, 242, 215, 151, 213, 11, 21, 62, 27, 171, 173, 185, 183, 21, 157, 54, 226, 27, 243, 171, 140, 152, 40, 67, 219, + 104, 27, 212, 27, 99, 45, 6, 65, 94, 71, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1668, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8599352197293060996" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "23017633599176841" + } + } + ] + }, + "cborHex": "d8669f1b775709431a20b3849f1b0051c66a723fc089ffff", + "cborBytes": [ + 216, 102, 159, 27, 119, 87, 9, 67, 26, 32, 179, 132, 159, 27, 0, 81, 198, 106, 114, 63, 192, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1669, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17212132160531288534" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9216536095563406069" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3803497634442073288" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7d01" + } + ] + } + ] + }, + "cborHex": "d8669f1beeddc701978b51d69fd8669f1b7fe7b6bf639f5af580ffd9050d9f1b34c8bcf25cf554c8427d01ffffff", + "cborBytes": [ + 216, 102, 159, 27, 238, 221, 199, 1, 151, 139, 81, 214, 159, 216, 102, 159, 27, 127, 231, 182, 191, 99, 159, 90, + 245, 128, 255, 217, 5, 13, 159, 27, 52, 200, 188, 242, 92, 245, 84, 200, 66, 125, 1, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1670, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10850868408116822775" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8656541235453443159" + } + }, + { + "_tag": "ByteArray", + "bytearray": "86e2d7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2935220214631310771" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7494731288033324617" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc3b787c" + }, + { + "_tag": "ByteArray", + "bytearray": "92673307532bb2acd02f" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14033724080840281723" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0aaa4f54" + }, + { + "_tag": "ByteArray", + "bytearray": "07933cb8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11908804869681506486" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17542996451919842624" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13938636431332239803" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b96960753aa4fc2f79f1bfffffffffffffffba0d87d9f1b78223663aab93c574386e2d7d8669f1b28bbff3bd6a525b39f414c1b6802a265ce3b6e4944cc3b787c4a92673307532bb2acd02fffffff9fd8669f1bc2c1cdb29a548e7b9f440aaa4f544407933cb81ba54492eef4cee8b641e61bf3753e53849ecd40ffff06a01bc16ffbfbf6e069bbffffff", + "cborBytes": [ + 216, 102, 159, 27, 150, 150, 7, 83, 170, 79, 194, 247, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 160, 216, + 125, 159, 27, 120, 34, 54, 99, 170, 185, 60, 87, 67, 134, 226, 215, 216, 102, 159, 27, 40, 187, 255, 59, 214, 165, + 37, 179, 159, 65, 76, 27, 104, 2, 162, 101, 206, 59, 110, 73, 68, 204, 59, 120, 124, 74, 146, 103, 51, 7, 83, 43, + 178, 172, 208, 47, 255, 255, 255, 159, 216, 102, 159, 27, 194, 193, 205, 178, 154, 84, 142, 123, 159, 68, 10, 170, + 79, 84, 68, 7, 147, 60, 184, 27, 165, 68, 146, 238, 244, 206, 232, 182, 65, 230, 27, 243, 117, 62, 83, 132, 158, + 205, 64, 255, 255, 6, 160, 27, 193, 111, 251, 251, 246, 224, 105, 187, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1671, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7276819067841283888" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f15d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09a7b107" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4045899840682564007" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "660320590288633924" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ea122bf3443d8f92593" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6735903077010735645" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15019944600262265191" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9daf30de483cf24b4c0e" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "999384d2f51a263007aa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13763120352158881268" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16011115444196596790" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "200602" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b64fc7463517807309f42f15dbf4409a7b10712ff1b3825ec7810b199a7bf1b0929ee140e07c0444a1ea122bf3443d8f925931b5d7abc2902af821d1bd0719008ecadc9674241b04a9daf30de483cf24b4c0eff9fbf114a999384d2f51a263007aa1bbf006d0a476115f41bde32e8aa7d1bdc364320060203ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 100, 252, 116, 99, 81, 120, 7, 48, 159, 66, 241, 93, 191, 68, 9, 167, 177, 7, 18, 255, 27, 56, + 37, 236, 120, 16, 177, 153, 167, 191, 27, 9, 41, 238, 20, 14, 7, 192, 68, 74, 30, 161, 34, 191, 52, 67, 216, 249, + 37, 147, 27, 93, 122, 188, 41, 2, 175, 130, 29, 27, 208, 113, 144, 8, 236, 173, 201, 103, 66, 65, 176, 74, 157, + 175, 48, 222, 72, 60, 242, 75, 76, 14, 255, 159, 191, 17, 74, 153, 147, 132, 210, 245, 26, 38, 48, 7, 170, 27, + 191, 0, 109, 10, 71, 97, 21, 244, 27, 222, 50, 232, 170, 125, 27, 220, 54, 67, 32, 6, 2, 3, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1672, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3298732886788590877" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17782464915517248052" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e34c8484332400" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "66034814413516892" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13928280940977012039" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4755125286839171546" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14963309182112705660" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7119169926445933161" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9be70a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12897635363370971978" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17953856481535127340" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17618366186710602652" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10386631117517321618" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4133843077740926024" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14372453415864795369" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1835878588073206359" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4518851236811772001" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3106703799123180110" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6774782614287660674" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "21e90d39bb5ed105926544" + } + ] + } + ] + }, + "cborHex": "d8669f1b2dc7741545eecd1d9fd8669f1bf6c801a0084092349f47e34c8484332400bf1b00ea9a5057ed305c1bc14b31b87ac73d471b41fd99413086b9da1bcfa85a6c102b2c7c1b62cc5f5441742269439be70a1bb2fd9b07443e334a1bf928e958aa3eef2c1bf48102b361a3939c1b9024b9f87ca37592ffa0d8669f1b395e5c608df494489f1bc775363bb37880e91b197a59d954d962571b3eb62f420b0010611b2b1d3aa53117fa4e1b5e04dce4b31bb682ffff4b21e90d39bb5ed105926544ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 45, 199, 116, 21, 69, 238, 205, 29, 159, 216, 102, 159, 27, 246, 200, 1, 160, 8, 64, 146, 52, + 159, 71, 227, 76, 132, 132, 51, 36, 0, 191, 27, 0, 234, 154, 80, 87, 237, 48, 92, 27, 193, 75, 49, 184, 122, 199, + 61, 71, 27, 65, 253, 153, 65, 48, 134, 185, 218, 27, 207, 168, 90, 108, 16, 43, 44, 124, 27, 98, 204, 95, 84, 65, + 116, 34, 105, 67, 155, 231, 10, 27, 178, 253, 155, 7, 68, 62, 51, 74, 27, 249, 40, 233, 88, 170, 62, 239, 44, 27, + 244, 129, 2, 179, 97, 163, 147, 156, 27, 144, 36, 185, 248, 124, 163, 117, 146, 255, 160, 216, 102, 159, 27, 57, + 94, 92, 96, 141, 244, 148, 72, 159, 27, 199, 117, 54, 59, 179, 120, 128, 233, 27, 25, 122, 89, 217, 84, 217, 98, + 87, 27, 62, 182, 47, 66, 11, 0, 16, 97, 27, 43, 29, 58, 165, 49, 23, 250, 78, 27, 94, 4, 220, 228, 179, 27, 182, + 130, 255, 255, 75, 33, 233, 13, 57, 187, 94, 209, 5, 146, 101, 68, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1673, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1419453960539563302" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2105866103565428237" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12939420532353742335" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "71cf4545ac2dd2bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10546685385486555639" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1465160121640249643" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3defbde4646ebb88" + }, + { + "_tag": "ByteArray", + "bytearray": "351c79b81fedd66e" + }, + { + "_tag": "ByteArray", + "bytearray": "57efdcecdcd6c230e8a8" + }, + { + "_tag": "ByteArray", + "bytearray": "5594bdc004277964c417" + }, + { + "_tag": "ByteArray", + "bytearray": "d43a5f23406a8fff0b42" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4913248072460077390" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2c7b6ab3dc4b0a68f35211" + }, + { + "_tag": "ByteArray", + "bytearray": "0705388750a28a58" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b13b2e9db44fb65269f1b1d398a10578da60d9fd8669f1bb3920e6b0e5735ff9f4871cf4545ac2dd2bc1b925d5a7ab7bad9f7ffffd8669f1b14554b5e2d6f692b9f483defbde4646ebb8848351c79b81fedd66e4a57efdcecdcd6c230e8a84a5594bdc004277964c4174ad43a5f23406a8fff0b42ffff1b442f5d17245b094e9f4b2c7b6ab3dc4b0a68f35211480705388750a28a58ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 19, 178, 233, 219, 68, 251, 101, 38, 159, 27, 29, 57, 138, 16, 87, 141, 166, 13, 159, 216, 102, + 159, 27, 179, 146, 14, 107, 14, 87, 53, 255, 159, 72, 113, 207, 69, 69, 172, 45, 210, 188, 27, 146, 93, 90, 122, + 183, 186, 217, 247, 255, 255, 216, 102, 159, 27, 20, 85, 75, 94, 45, 111, 105, 43, 159, 72, 61, 239, 189, 228, + 100, 110, 187, 136, 72, 53, 28, 121, 184, 31, 237, 214, 110, 74, 87, 239, 220, 236, 220, 214, 194, 48, 232, 168, + 74, 85, 148, 189, 192, 4, 39, 121, 100, 196, 23, 74, 212, 58, 95, 35, 64, 106, 143, 255, 11, 66, 255, 255, 27, 68, + 47, 93, 23, 36, 91, 9, 78, 159, 75, 44, 123, 106, 179, 220, 75, 10, 104, 243, 82, 17, 72, 7, 5, 56, 135, 80, 162, + 138, 88, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1674, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5b9a3f75" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8841964518689033741" + }, + "fields": [] + } + ] + }, + "cborHex": "d905019f445b9a3f75d8669f1b7ab4f7e20d114e0d80ffff", + "cborBytes": [ + 217, 5, 1, 159, 68, 91, 154, 63, 117, 216, 102, 159, 27, 122, 180, 247, 226, 13, 17, 78, 13, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1675, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16915442479478576146" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a8d033504f61eecf4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "575c126e6f24" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a860d7f4916ce7cfc1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdfd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b124741a0b978fd0f520" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8618" + } + } + ] + } + ] + }, + "cborHex": "d8669f1beabfb9502fdf94129fbf499a8d033504f61eecf446575c126e6f2449a860d7f4916ce7cfc142fdfd4ab124741a0b978fd0f520428618ffffff", + "cborBytes": [ + 216, 102, 159, 27, 234, 191, 185, 80, 47, 223, 148, 18, 159, 191, 73, 154, 141, 3, 53, 4, 246, 30, 236, 244, 70, + 87, 92, 18, 110, 111, 36, 73, 168, 96, 215, 244, 145, 108, 231, 207, 193, 66, 253, 253, 74, 177, 36, 116, 26, 11, + 151, 143, 208, 245, 32, 66, 134, 24, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1676, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10075688257807764736" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "31853e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16852738817971500696" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8640589315955077407" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "750879570731144668" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9934102317436211194" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1596709c8dcc0ad0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15511746762895762609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8f1195457e2ea921872c" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15102998140703552784" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6564167960538251423" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1af0e48fc8d0111075" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "00566d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5993135556610447939" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c1bc16f444b209968" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16797225361160060002" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37e1f5179f55" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3331119231496066270" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4705a84cf09e1e288f9f76cf" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7671071878246570856" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15463002325251286619" + } + } + } + ] + } + ] + }, + "cborHex": "d905039fd8669f1b8bd409165234cd009f9f4331853effd8669f1be9e0f4aa51a0b6989f419dffffbf1b77e98a33fb89b11f1b0a6ba8fdc28715dc1b89dd056cb12b8ffa481596709c8dcc0ad01bd744cb7f0037a4b14150ffffff9f4a8f1195457e2ea921872ca01bd198a0ca34053510bf1b5b189bfb4de2009f491af0e48fc8d01110754300566d1b532be50926875a43492c1bc16f444b2099681be91bbb787020bc624637e1f5179f551b2e3a834ac1cb94deffff4c4705a84cf09e1e288f9f76cfbf1b6a751f3aed601b681bd6979eb035a4665bffff", + "cborBytes": [ + 217, 5, 3, 159, 216, 102, 159, 27, 139, 212, 9, 22, 82, 52, 205, 0, 159, 159, 67, 49, 133, 62, 255, 216, 102, 159, + 27, 233, 224, 244, 170, 81, 160, 182, 152, 159, 65, 157, 255, 255, 191, 27, 119, 233, 138, 51, 251, 137, 177, 31, + 27, 10, 107, 168, 253, 194, 135, 21, 220, 27, 137, 221, 5, 108, 177, 43, 143, 250, 72, 21, 150, 112, 156, 141, + 204, 10, 208, 27, 215, 68, 203, 127, 0, 55, 164, 177, 65, 80, 255, 255, 255, 159, 74, 143, 17, 149, 69, 126, 46, + 169, 33, 135, 44, 160, 27, 209, 152, 160, 202, 52, 5, 53, 16, 191, 27, 91, 24, 155, 251, 77, 226, 0, 159, 73, 26, + 240, 228, 143, 200, 208, 17, 16, 117, 67, 0, 86, 109, 27, 83, 43, 229, 9, 38, 135, 90, 67, 73, 44, 27, 193, 111, + 68, 75, 32, 153, 104, 27, 233, 27, 187, 120, 112, 32, 188, 98, 70, 55, 225, 245, 23, 159, 85, 27, 46, 58, 131, 74, + 193, 203, 148, 222, 255, 255, 76, 71, 5, 168, 76, 240, 158, 30, 40, 143, 159, 118, 207, 191, 27, 106, 117, 31, 58, + 237, 96, 27, 104, 27, 214, 151, 158, 176, 53, 164, 102, 91, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1677, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "22a49d40229b20baaabc794b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8271676202498167793" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14156048003016067178" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10088347265648421042" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1118ac592dfcae18be7c982e" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12938548249558611948" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3902862820959469799" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e4f639fa4d69e653b37045f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b58f" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12842503028675556355" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3244336369857199410" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14960439797408802239" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7791614681524884392" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13075579257389120277" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "213b0f8b0480987ec58a8d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17218750279111753064" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d905039fd905049fa04c22a49d40229b20baaabc794bbf1b72cae5ae52f493f11bc47462a82326886a1b8c01026343c1e8b24c1118ac592dfcae18be7c982effbf1bb38ef514e43177ec1b3629c10eb25e40e74c9e4f639fa4d69e653b37045f42b58fffffd8669f1bb239bc764b15b4039fbf1b2d0632bd3937fd321bcf9e28bb602b25bf1b6c216045670253a81bb575ca0ea524fb15ff4b213b0f8b0480987ec58a8dd8669f1beef54a26669d3d6880ffffffff", + "cborBytes": [ + 217, 5, 3, 159, 217, 5, 4, 159, 160, 76, 34, 164, 157, 64, 34, 155, 32, 186, 170, 188, 121, 75, 191, 27, 114, 202, + 229, 174, 82, 244, 147, 241, 27, 196, 116, 98, 168, 35, 38, 136, 106, 27, 140, 1, 2, 99, 67, 193, 232, 178, 76, + 17, 24, 172, 89, 45, 252, 174, 24, 190, 124, 152, 46, 255, 191, 27, 179, 142, 245, 20, 228, 49, 119, 236, 27, 54, + 41, 193, 14, 178, 94, 64, 231, 76, 158, 79, 99, 159, 164, 214, 158, 101, 59, 55, 4, 95, 66, 181, 143, 255, 255, + 216, 102, 159, 27, 178, 57, 188, 118, 75, 21, 180, 3, 159, 191, 27, 45, 6, 50, 189, 57, 55, 253, 50, 27, 207, 158, + 40, 187, 96, 43, 37, 191, 27, 108, 33, 96, 69, 103, 2, 83, 168, 27, 181, 117, 202, 14, 165, 36, 251, 21, 255, 75, + 33, 59, 15, 139, 4, 128, 152, 126, 197, 138, 141, 216, 102, 159, 27, 238, 245, 74, 38, 102, 157, 61, 104, 128, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1678, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7934525965505866761" + }, + "fields": [] + }, + "cborHex": "d8669f1b6e1d1953a3172c0980ff", + "cborBytes": [216, 102, 159, 27, 110, 29, 25, 83, 163, 23, 44, 9, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1679, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16255633911784431443" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17948561803399099986" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7a6a4f52fa0e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9497892274858287574" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11488707099920393202" + } + }, + { + "_tag": "ByteArray", + "bytearray": "79" + }, + { + "_tag": "ByteArray", + "bytearray": "2f6b4fc9954647215a515bae" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1be1979ceaaeb45f539fd8669f1bf91619dd58bf76529f467a6a4f52fa0ed9050c9f1b83cf4ab3b5dae1d61b9f70163cd34363f241794c2f6b4fc9954647215a515baeffffff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 225, 151, 156, 234, 174, 180, 95, 83, 159, 216, 102, 159, 27, 249, 22, 25, 221, 88, 191, 118, + 82, 159, 70, 122, 106, 79, 82, 250, 14, 217, 5, 12, 159, 27, 131, 207, 74, 179, 181, 218, 225, 214, 27, 159, 112, + 22, 60, 211, 67, 99, 242, 65, 121, 76, 47, 107, 79, 201, 149, 70, 71, 33, 90, 81, 91, 174, 255, 255, 255, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1680, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5486984979900265604" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6245c27f" + }, + { + "_tag": "ByteArray", + "bytearray": "448a2e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6462087321522751443" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1339744633428629953" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8697981185989542776" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16571336987607458778" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11346795215575873462" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ddd6841ef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12363998294718857252" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6125503992642153761" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13971867900297537603" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d4c462459" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d5b880b5d2e3785153b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25342d0e90af544a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f8fd6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15836726375953280936" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17319012818355288685" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3425168929897191644" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3460338073838695730" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a86368209e18f7901e" + }, + { + "_tag": "ByteArray", + "bytearray": "ddfba4" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12706630563544475797" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14176579100835598704" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3bf85f30" + }, + { + "_tag": "ByteArray", + "bytearray": "f7be3fd3178c" + }, + { + "_tag": "ByteArray", + "bytearray": "a130d8b74b12" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "be9ace7cf5feef" + } + ] + } + ] + }, + "cborHex": "d8669f1b4c25afc496dbf4849f9f9f446245c27f43448a2effbf1b59adf22e6aeb47d31b1297baa5553fd9c11b78b56fce05f003781be5f9373107a263da1b9d77ea21738077b6458ddd6841ef1bab95bef11840c0241b5502296d4fac2d211bc1e60bd445eae843452d4c462459ffbf4a1d5b880b5d2e3785153b4825342d0e90af544a435f8fd61bdbc75abb7bc12fa8ffa0ffd8669f1bf0597e65f280fa6d9fd8669f1b2f88a4fe923a18dc9f1b30059724fdea353249a86368209e18f7901e43ddfba4ffff1bb057052cc830a8959f1bc4bd5394db885170443bf85f3046f7be3fd3178c46a130d8b74b12ff47be9ace7cf5feefffffffff", + "cborBytes": [ + 216, 102, 159, 27, 76, 37, 175, 196, 150, 219, 244, 132, 159, 159, 159, 68, 98, 69, 194, 127, 67, 68, 138, 46, + 255, 191, 27, 89, 173, 242, 46, 106, 235, 71, 211, 27, 18, 151, 186, 165, 85, 63, 217, 193, 27, 120, 181, 111, + 206, 5, 240, 3, 120, 27, 229, 249, 55, 49, 7, 162, 99, 218, 27, 157, 119, 234, 33, 115, 128, 119, 182, 69, 141, + 221, 104, 65, 239, 27, 171, 149, 190, 241, 24, 64, 192, 36, 27, 85, 2, 41, 109, 79, 172, 45, 33, 27, 193, 230, 11, + 212, 69, 234, 232, 67, 69, 45, 76, 70, 36, 89, 255, 191, 74, 29, 91, 136, 11, 93, 46, 55, 133, 21, 59, 72, 37, 52, + 45, 14, 144, 175, 84, 74, 67, 95, 143, 214, 27, 219, 199, 90, 187, 123, 193, 47, 168, 255, 160, 255, 216, 102, + 159, 27, 240, 89, 126, 101, 242, 128, 250, 109, 159, 216, 102, 159, 27, 47, 136, 164, 254, 146, 58, 24, 220, 159, + 27, 48, 5, 151, 36, 253, 234, 53, 50, 73, 168, 99, 104, 32, 158, 24, 247, 144, 30, 67, 221, 251, 164, 255, 255, + 27, 176, 87, 5, 44, 200, 48, 168, 149, 159, 27, 196, 189, 83, 148, 219, 136, 81, 112, 68, 59, 248, 95, 48, 70, + 247, 190, 63, 211, 23, 140, 70, 161, 48, 216, 183, 75, 18, 255, 71, 190, 154, 206, 124, 245, 254, 239, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1681, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12118624096015933963" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12388768692303768948" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd9aa36eb2196276fe1b39" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10173085878267261300" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8065618392339486494" + } + } + ] + } + ] + }, + "cborHex": "d8669f1ba82e00687984e20b9f1babedbf7cb53f2d744bfd9aa36eb2196276fe1b39d8669f1b8d2e0fb4fba9b1749f1b6feed531c140971effffffff", + "cborBytes": [ + 216, 102, 159, 27, 168, 46, 0, 104, 121, 132, 226, 11, 159, 27, 171, 237, 191, 124, 181, 63, 45, 116, 75, 253, + 154, 163, 110, 178, 25, 98, 118, 254, 27, 57, 216, 102, 159, 27, 141, 46, 15, 180, 251, 169, 177, 116, 159, 27, + 111, 238, 213, 49, 193, 64, 151, 30, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1682, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13641843269533149048" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16721565366424878731" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6cbaf0d7db2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a009bd63aec118d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15700634519049236837" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59fbf1bbd51902d1213a7781be80eef1b2a3abe8b466cbaf0d7db2d4126488a009bd63aec118d1bd9e3dbe8d82a7165ffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 191, 27, 189, 81, 144, 45, 18, 19, 167, 120, 27, + 232, 14, 239, 27, 42, 58, 190, 139, 70, 108, 186, 240, 215, 219, 45, 65, 38, 72, 138, 0, 155, 214, 58, 236, 17, + 141, 27, 217, 227, 219, 232, 216, 42, 113, 101, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1683, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3e33ca3e1608bcfc" + }, + { + "_tag": "ByteArray", + "bytearray": "e9050707c0e300" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15068087708079785137" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4804984960133648088" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7825167944935788429" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17055449503535408537" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10116449572505740049" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13191112594808197711" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9242077667714363593" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10732754635203686765" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a27e35174a" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f483e33ca3e1608bcfc47e9050707c0e300d8669f1bd11c99efb48684b19f9f1b42aebc5d03dc4ed81b6c9894c951abcf8d1becb120f5b6d72599ffa0ffff80d8669f1b8c64d949755b63119fd8669f1bb7103f03f5b9524f9f1b804274ac12af70c9ffffd8799f1b94f26779e4be316d45a27e35174affffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 72, 62, 51, 202, 62, 22, 8, 188, 252, 71, 233, 5, + 7, 7, 192, 227, 0, 216, 102, 159, 27, 209, 28, 153, 239, 180, 134, 132, 177, 159, 159, 27, 66, 174, 188, 93, 3, + 220, 78, 216, 27, 108, 152, 148, 201, 81, 171, 207, 141, 27, 236, 177, 32, 245, 182, 215, 37, 153, 255, 160, 255, + 255, 128, 216, 102, 159, 27, 140, 100, 217, 73, 117, 91, 99, 17, 159, 216, 102, 159, 27, 183, 16, 63, 3, 245, 185, + 82, 79, 159, 27, 128, 66, 116, 172, 18, 175, 112, 201, 255, 255, 216, 121, 159, 27, 148, 242, 103, 121, 228, 190, + 49, 109, 69, 162, 126, 53, 23, 74, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1684, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18394128122579403782" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "623828c6352faef827" + } + ] + }, + "cborHex": "d8669f1bff4512123b5e44069f49623828c6352faef827ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 69, 18, 18, 59, 94, 68, 6, 159, 73, 98, 56, 40, 198, 53, 47, 174, 248, 39, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1685, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e7bc60" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4156497780459786156" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5478384398065094603" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d9050c9f43e7bc601b39aed8b592014fac1b4c07219595b64fcba0ff", + "cborBytes": [ + 217, 5, 12, 159, 67, 231, 188, 96, 27, 57, 174, 216, 181, 146, 1, 79, 172, 27, 76, 7, 33, 149, 149, 182, 79, 203, + 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1686, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "732825345377932162" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16090090943538686566" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3e2d5bfdbe7ee65b64" + }, + { + "_tag": "ByteArray", + "bytearray": "4f241357e3" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16814057880909245190" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ffeb08" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7281516364350773025" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11360644796021694058" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11935353896219363441" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2658892078872672185" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce17dd8df539c05146" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6040122537247581542" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3445478016718565148" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7260482983159445750" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "073e95e1aed0539d6e14" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13630422341083890970" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14bae327cba3b10f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16158382001808264483" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19029e96d8b503e72a3a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16219648542181805738" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12522797936243284734" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3dd54e739ae47815" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0107c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73fdf9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "208019" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + } + ] + }, + "cborHex": "d87d9f039fd8669f1b0a2b84c4d9a793829f1bdf4b7c76d55a6a66493e2d5bfdbe7ee65b64454f241357e3ffffffd8669f1be957888ed873eb069fa0a0a0a043ffeb08ffff9f1b650d248de35257219f1b9da91e402e435e6a1ba5a2e521e4bac871ffa0bf1b24e64842214e37b949ce17dd8df539c051461b53d2d372187925661b2fd0cc0053ed6f1c1b64c26ace34fcb8f64a073e95e1aed0539d6e141bbd28fce6f2da851a4814bae327cba3b10f1be03e1ad1e2d8cd234a19029e96d8b503e72a3a1be117c469ea6dceaa1badc9ea5fd7c69afeff483dd54e739ae47815ffbf430107c84373fdf94320801908ffff", + "cborBytes": [ + 216, 125, 159, 3, 159, 216, 102, 159, 27, 10, 43, 132, 196, 217, 167, 147, 130, 159, 27, 223, 75, 124, 118, 213, + 90, 106, 102, 73, 62, 45, 91, 253, 190, 126, 230, 91, 100, 69, 79, 36, 19, 87, 227, 255, 255, 255, 216, 102, 159, + 27, 233, 87, 136, 142, 216, 115, 235, 6, 159, 160, 160, 160, 160, 67, 255, 235, 8, 255, 255, 159, 27, 101, 13, 36, + 141, 227, 82, 87, 33, 159, 27, 157, 169, 30, 64, 46, 67, 94, 106, 27, 165, 162, 229, 33, 228, 186, 200, 113, 255, + 160, 191, 27, 36, 230, 72, 66, 33, 78, 55, 185, 73, 206, 23, 221, 141, 245, 57, 192, 81, 70, 27, 83, 210, 211, + 114, 24, 121, 37, 102, 27, 47, 208, 204, 0, 83, 237, 111, 28, 27, 100, 194, 106, 206, 52, 252, 184, 246, 74, 7, + 62, 149, 225, 174, 208, 83, 157, 110, 20, 27, 189, 40, 252, 230, 242, 218, 133, 26, 72, 20, 186, 227, 39, 203, + 163, 177, 15, 27, 224, 62, 26, 209, 226, 216, 205, 35, 74, 25, 2, 158, 150, 216, 181, 3, 231, 42, 58, 27, 225, 23, + 196, 105, 234, 109, 206, 170, 27, 173, 201, 234, 95, 215, 198, 154, 254, 255, 72, 61, 213, 78, 115, 154, 228, 120, + 21, 255, 191, 67, 1, 7, 200, 67, 115, 253, 249, 67, 32, 128, 25, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1687, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12793311403769607345" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14968380865740811468" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6732e848db" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "491892431359270466" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ce" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "82d971c6b76cb70cb17f" + }, + { + "_tag": "ByteArray", + "bytearray": "f09a8e8bd20482d3" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7114196701847034000" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3d5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12293703815276729148" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1147657895866952703" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17262789459838920515" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15632687433369725905" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1d" + } + ] + } + ] + }, + "cborHex": "d8669f1bb18af8f09aa434b19f1bcfba5f176d3c2ccc456732e848db1b06d38d8f66df5e42809f9f41ceff9f4a82d971c6b76cb70cb17f48f09a8e8bd20482d3ffbf1b62bab4352bd9189042a3d51baa9c027c336f133c1b0fed4cc696d26bff1bef91bf8d320e67431bd8f2766526b72bd1ff411dffffff", + "cborBytes": [ + 216, 102, 159, 27, 177, 138, 248, 240, 154, 164, 52, 177, 159, 27, 207, 186, 95, 23, 109, 60, 44, 204, 69, 103, + 50, 232, 72, 219, 27, 6, 211, 141, 143, 102, 223, 94, 66, 128, 159, 159, 65, 206, 255, 159, 74, 130, 217, 113, + 198, 183, 108, 183, 12, 177, 127, 72, 240, 154, 142, 139, 210, 4, 130, 211, 255, 191, 27, 98, 186, 180, 53, 43, + 217, 24, 144, 66, 163, 213, 27, 170, 156, 2, 124, 51, 111, 19, 60, 27, 15, 237, 76, 198, 150, 210, 107, 255, 27, + 239, 145, 191, 141, 50, 14, 103, 67, 27, 216, 242, 118, 101, 38, 183, 43, 209, 255, 65, 29, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1688, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16372719005221206473" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9855849496676228532" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7806358884173796863" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2525901335505173484" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8051385720809105368" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d78a7ef4595c919c3c19f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4251351983762052890" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6525095527973974220" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15769249840059322328" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59434b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17071675607812340639" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55943f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "08bddacc2cd836b09a0de868" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5826301356797168117" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3185666793040763646" + } + } + ] + } + ] + }, + "cborHex": "d8669f1be3379530597f39c99f1b88c702e611195db41b6c55c20b9864d5ff9f1b230dcde1c0787bec1b6fbc44a7ae7aa7d8bf4b7d78a7ef4595c919c3c19f1b3affd61ac74a171a41fd4106ffbf1b5a8dcbcfae60f0cc41771bdad7a12e331f0fd84359434b1beceac684045afb9f4355943f4c08bddacc2cd836b09a0de8681b50db2e37064589f5ff1b2c35c311e3f3dafeffffff", + "cborBytes": [ + 216, 102, 159, 27, 227, 55, 149, 48, 89, 127, 57, 201, 159, 27, 136, 199, 2, 230, 17, 25, 93, 180, 27, 108, 85, + 194, 11, 152, 100, 213, 255, 159, 27, 35, 13, 205, 225, 192, 120, 123, 236, 27, 111, 188, 68, 167, 174, 122, 167, + 216, 191, 75, 125, 120, 167, 239, 69, 149, 201, 25, 195, 193, 159, 27, 58, 255, 214, 26, 199, 74, 23, 26, 65, 253, + 65, 6, 255, 191, 27, 90, 141, 203, 207, 174, 96, 240, 204, 65, 119, 27, 218, 215, 161, 46, 51, 31, 15, 216, 67, + 89, 67, 75, 27, 236, 234, 198, 132, 4, 90, 251, 159, 67, 85, 148, 63, 76, 8, 189, 218, 204, 44, 216, 54, 176, 154, + 13, 232, 104, 27, 80, 219, 46, 55, 6, 69, 137, 245, 255, 27, 44, 53, 195, 17, 227, 243, 218, 254, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1689, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7487626169543506543" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13100365268591073821" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14440174019165395082" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5454606708114064658" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d53bb7c7f7a3ab5285bdeb" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12202518646893679760" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4534271793657624060" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050a9f1b67e964547e8f3a6fd8669f1bb5cdd8cd963c5a1d9f9f1bc865cdc35b2d988a1b4bb2a7e6ba9a05124bd53bb7c7f7a3ab5285bdebffd8669f1ba9580e0ec12d94909f1b3eecf82c380935fcffffffffff", + "cborBytes": [ + 217, 5, 10, 159, 27, 103, 233, 100, 84, 126, 143, 58, 111, 216, 102, 159, 27, 181, 205, 216, 205, 150, 60, 90, 29, + 159, 159, 27, 200, 101, 205, 195, 91, 45, 152, 138, 27, 75, 178, 167, 230, 186, 154, 5, 18, 75, 213, 59, 183, 199, + 247, 163, 171, 82, 133, 189, 235, 255, 216, 102, 159, 27, 169, 88, 14, 14, 193, 45, 148, 144, 159, 27, 62, 236, + 248, 44, 56, 9, 53, 252, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1690, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2601776364411187362" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5a" + }, + { + "_tag": "ByteArray", + "bytearray": "47e28fe24f6c1303" + } + ] + }, + "cborHex": "d8669f1b241b5dd191bc70a29f415a4847e28fe24f6c1303ffff", + "cborBytes": [ + 216, 102, 159, 27, 36, 27, 93, 209, 145, 188, 112, 162, 159, 65, 90, 72, 71, 226, 143, 226, 79, 108, 19, 3, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1691, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bf712c61a92b09cec3" + } + ] + } + ] + } + ] + }, + "cborHex": "d905019f9f9f49bf712c61a92b09cec3ffffff", + "cborBytes": [217, 5, 1, 159, 159, 159, 73, 191, 113, 44, 97, 169, 43, 9, 206, 195, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1692, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a184e3ee78bd81a49bdd0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14387400937603485861" + } + } + } + ] + } + ] + }, + "cborHex": "d87b9fbf4b3a184e3ee78bd81a49bdd01bc7aa50eccefa50a5ffff", + "cborBytes": [ + 216, 123, 159, 191, 75, 58, 24, 78, 62, 231, 139, 216, 26, 73, 189, 208, 27, 199, 170, 80, 236, 206, 250, 80, 165, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1693, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7526678749178127120" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8344308972154627792" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b6663d29c55439948c6e1d20" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10632941488892727950" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4523151054633526799" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9169320670031128261" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "19130a09f83c3d1524cd7a24" + }, + { + "_tag": "ByteArray", + "bytearray": "8984e969" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1258119488698462415" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b68742271bf3e63109f1b73ccf0ccd561a6d04cb6663d29c55439948c6e1d20d8669f1b938fcbf2caf6d28e9f9f1b3ec575eb64dd660f1b7f3ff89178da26c5ff9f4c19130a09f83c3d1524cd7a24448984e9691b1175bd0258de30cf4109ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 104, 116, 34, 113, 191, 62, 99, 16, 159, 27, 115, 204, 240, 204, 213, 97, 166, 208, 76, 182, + 102, 61, 41, 197, 84, 57, 148, 140, 110, 29, 32, 216, 102, 159, 27, 147, 143, 203, 242, 202, 246, 210, 142, 159, + 159, 27, 62, 197, 117, 235, 100, 221, 102, 15, 27, 127, 63, 248, 145, 120, 218, 38, 197, 255, 159, 76, 25, 19, 10, + 9, 248, 60, 61, 21, 36, 205, 122, 36, 68, 137, 132, 233, 105, 27, 17, 117, 189, 2, 88, 222, 48, 207, 65, 9, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1694, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17813082577106633823" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "375375809796198212" + } + } + ] + }, + "cborHex": "d905059f1bf734c839e324045f1b05359a4f682d4f44ff", + "cborBytes": [217, 5, 5, 159, 27, 247, 52, 200, 57, 227, 36, 4, 95, 27, 5, 53, 154, 79, 104, 45, 79, 68, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1695, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "106b55c3c89747e62d830b0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13456153650847814282" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bc61dd699ab6502f69cca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ce44c1f93c86f16" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4604e9fa25c9e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85359ca765d652" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15630558989137472087" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aeff90a7d5108c5d12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4790520116547222673" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd7cb536a253f9012637" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2197901613813912005" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8547009826605813657" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14677568449465783565" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7661125cb3b27ee60aff016" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18426729346071307661" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cf5c73e0b281edf486" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "035e594c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8391842173793014760" + } + } + } + ] + } + ] + }, + "cborHex": "d9050c9fbf4c106b55c3c89747e62d830b0f1bbabddc73a1dc128a4b3bc61dd699ab6502f69cca41be487ce44c1f93c86f16474604e9fa25c9e54785359ca765d6521bd8eae6961c53ea5749aeff90a7d5108c5d121b427b58aa2c28fc914abd7cb536a253f90126371b1e8083df6ea2d1c5ffa09fd8669f1b769d14273e9ccf999f1bcbb132bd5ce3950d4cd7661125cb3b27ee60aff0161bffb8e4b614d8a58d49cf5c73e0b281edf486ffffffbf44035e594c1b7475cffec41313e8ffff", + "cborBytes": [ + 217, 5, 12, 159, 191, 76, 16, 107, 85, 195, 200, 151, 71, 230, 45, 131, 11, 15, 27, 186, 189, 220, 115, 161, 220, + 18, 138, 75, 59, 198, 29, 214, 153, 171, 101, 2, 246, 156, 202, 65, 190, 72, 124, 228, 76, 31, 147, 200, 111, 22, + 71, 70, 4, 233, 250, 37, 201, 229, 71, 133, 53, 156, 167, 101, 214, 82, 27, 216, 234, 230, 150, 28, 83, 234, 87, + 73, 174, 255, 144, 167, 213, 16, 140, 93, 18, 27, 66, 123, 88, 170, 44, 40, 252, 145, 74, 189, 124, 181, 54, 162, + 83, 249, 1, 38, 55, 27, 30, 128, 131, 223, 110, 162, 209, 197, 255, 160, 159, 216, 102, 159, 27, 118, 157, 20, 39, + 62, 156, 207, 153, 159, 27, 203, 177, 50, 189, 92, 227, 149, 13, 76, 215, 102, 17, 37, 203, 59, 39, 238, 96, 175, + 240, 22, 27, 255, 184, 228, 182, 20, 216, 165, 141, 73, 207, 92, 115, 224, 178, 129, 237, 244, 134, 255, 255, 255, + 191, 68, 3, 94, 89, 76, 27, 116, 117, 207, 254, 196, 19, 19, 232, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1696, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff380ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1697, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17842976990862264750" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2436086833010194230" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7346a51f1931cd787a0ce6a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6097757044534276112" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12864344839907230166" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f9fd8669f1bf79efd097bd049ae9f1b21ceb811539437364cd7346a51f1931cd787a0ce6a1b549f95b98619f010ffff1bb287557942ccc1d6ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 159, 216, 102, 159, 27, 247, 158, 253, 9, 123, + 208, 73, 174, 159, 27, 33, 206, 184, 17, 83, 148, 55, 54, 76, 215, 52, 106, 81, 241, 147, 28, 215, 135, 160, 206, + 106, 27, 84, 159, 149, 185, 134, 25, 240, 16, 255, 255, 27, 178, 135, 85, 121, 66, 204, 193, 214, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1698, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8949477884430795974" + } + } + ] + }, + "cborHex": "d905039f1b7c32eeb832b644c6ff", + "cborBytes": [217, 5, 3, 159, 27, 124, 50, 238, 184, 50, 182, 68, 198, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1699, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13296266225875949058" + }, + "fields": [] + }, + "cborHex": "d8669f1bb885d3af905c160280ff", + "cborBytes": [216, 102, 159, 27, 184, 133, 211, 175, 144, 92, 22, 2, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1700, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2553828778120230188" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9f1b237105be3106b52cffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 27, 35, 113, 5, 190, 49, 6, 181, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1701, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1313990137399948520" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4666377308294828498" + } + }, + { + "_tag": "ByteArray", + "bytearray": "621a6e971e" + }, + { + "_tag": "ByteArray", + "bytearray": "7e4ba0538033108d0b644cb9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8269219758558636842" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fd5ad903" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8383710798603261407" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1297635047306884226" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9f1bffffffffffffffee9f9f1b123c3b11721734e81b40c24d7038db51d245621a6e971e4c7e4ba0538033108d0b644cb91b72c22b8ee6876b2affd87d8044fd5ad903d8669f1b7458ec8d725a95df9f1b120220334ad2f482ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, + 159, 27, 18, 60, 59, 17, 114, 23, 52, 232, 27, 64, 194, 77, 112, 56, 219, 81, 210, 69, 98, 26, 110, 151, 30, 76, + 126, 75, 160, 83, 128, 51, 16, 141, 11, 100, 76, 185, 27, 114, 194, 43, 142, 230, 135, 107, 42, 255, 216, 125, + 128, 68, 253, 90, 217, 3, 216, 102, 159, 27, 116, 88, 236, 141, 114, 90, 149, 223, 159, 27, 18, 2, 32, 51, 74, + 210, 244, 130, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1702, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dad2ac2904b0d436a4fadc2a" + } + ] + }, + "cborHex": "d905099f4cdad2ac2904b0d436a4fadc2aff", + "cborBytes": [217, 5, 9, 159, 76, 218, 210, 172, 41, 4, 176, 212, 54, 164, 250, 220, 42, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1703, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "010205" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae72f22ecc3a1f4290fb83" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d9050b9fbf430102054bae72f22ecc3a1f4290fb83ff80ff", + "cborBytes": [ + 217, 5, 11, 159, 191, 67, 1, 2, 5, 75, 174, 114, 242, 46, 204, 58, 31, 66, 144, 251, 131, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1704, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10993702927598198237" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5f95102daa131f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4989650859778821418" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10402955131687679344" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6874292756153195788" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3937579569094928222" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9117477638839603925" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "200165aed977dc29" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "74bc" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f9882" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17655166305415056739" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13674046122786629445" + } + } + ] + }, + "cborHex": "d8669f1b98917a90c5a99ddd9f9f9f475f95102daa131f1b453ecd054a56cd2aff9f1b905eb893369235701b5f6664d7148d5d0c1b36a517c182bd275effd8669f1b7e87c99b269a12d59f48200165aed977dc29ffffff4274bca0bf433f98821bf503c036b4b5cd63ff1bbdc3f8801f012745ffff", + "cborBytes": [ + 216, 102, 159, 27, 152, 145, 122, 144, 197, 169, 157, 221, 159, 159, 159, 71, 95, 149, 16, 45, 170, 19, 31, 27, + 69, 62, 205, 5, 74, 86, 205, 42, 255, 159, 27, 144, 94, 184, 147, 54, 146, 53, 112, 27, 95, 102, 100, 215, 20, + 141, 93, 12, 27, 54, 165, 23, 193, 130, 189, 39, 94, 255, 216, 102, 159, 27, 126, 135, 201, 155, 38, 154, 18, 213, + 159, 72, 32, 1, 101, 174, 217, 119, 220, 41, 255, 255, 255, 66, 116, 188, 160, 191, 67, 63, 152, 130, 27, 245, 3, + 192, 54, 180, 181, 205, 99, 255, 27, 189, 195, 248, 128, 31, 1, 39, 69, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1705, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3008717083461179693" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3527630241751788419" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11508721889903677618" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac90eb0c79b80dbe825a2b6d" + } + ] + } + ] + }, + "cborHex": "d8669f1b29c11c3f1d5a592d9fd8669f1b30f4a903c28a6b839f1b9fb73195427890b24cac90eb0c79b80dbe825a2b6dffffffff", + "cborBytes": [ + 216, 102, 159, 27, 41, 193, 28, 63, 29, 90, 89, 45, 159, 216, 102, 159, 27, 48, 244, 169, 3, 194, 138, 107, 131, + 159, 27, 159, 183, 49, 149, 66, 120, 144, 178, 76, 172, 144, 235, 12, 121, 184, 13, 190, 130, 90, 43, 109, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1706, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4322697352921999636" + }, + "fields": [] + }, + "cborHex": "d8669f1b3bfd4e57006fe91480ff", + "cborBytes": [216, 102, 159, 27, 59, 253, 78, 87, 0, 111, 233, 20, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1707, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2198405315783225490" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15536712886101269301" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7606695612683618377" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3598060709106773028" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a4e781e17c7db4add387daa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e7ae9ba2a162c3bed343a65" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2883104801265356500" + } + } + ] + }, + "cborHex": "d87c9fbf1b1e824dfcaf96f0921bd79d7e0d894cdb351b6990695b948788491b31eee126ce996c24ffbf4c2a4e781e17c7db4add387daa4c1e7ae9ba2a162c3bed343a65ff1b2802d88a99a50ed4ff", + "cborBytes": [ + 216, 124, 159, 191, 27, 30, 130, 77, 252, 175, 150, 240, 146, 27, 215, 157, 126, 13, 137, 76, 219, 53, 27, 105, + 144, 105, 91, 148, 135, 136, 73, 27, 49, 238, 225, 38, 206, 153, 108, 36, 255, 191, 76, 42, 78, 120, 30, 23, 199, + 219, 74, 221, 56, 125, 170, 76, 30, 122, 233, 186, 42, 22, 44, 59, 237, 52, 58, 101, 255, 27, 40, 2, 216, 138, + 153, 165, 14, 212, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1708, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8718036574993114509" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "93" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "005d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "010502372c6c3806fdff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0301f8df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d00507dd8a04021de81c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0507bad3c5bd01bf1fbb0503" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05f9f80344" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d93a3c4b117" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd7004" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bea6e66a8651f3ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2aa44016c8641885cce6c8" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b78fcb0132753e58d9fa04193bf42005d4a010502372c6c3806fdff440301f8df4ad00507dd8a04021de81c4c0507bad3c5bd01bf1fbb05031bfffffffffffffff641244505f9f80344467d93a3c4b11743fd700448bea6e66a8651f3ab4b2aa44016c8641885cce6c8ffffff", + "cborBytes": [ + 216, 102, 159, 27, 120, 252, 176, 19, 39, 83, 229, 141, 159, 160, 65, 147, 191, 66, 0, 93, 74, 1, 5, 2, 55, 44, + 108, 56, 6, 253, 255, 68, 3, 1, 248, 223, 74, 208, 5, 7, 221, 138, 4, 2, 29, 232, 28, 76, 5, 7, 186, 211, 197, + 189, 1, 191, 31, 187, 5, 3, 27, 255, 255, 255, 255, 255, 255, 255, 246, 65, 36, 69, 5, 249, 248, 3, 68, 70, 125, + 147, 163, 196, 177, 23, 67, 253, 112, 4, 72, 190, 166, 230, 106, 134, 81, 243, 171, 75, 42, 164, 64, 22, 200, 100, + 24, 133, 204, 230, 200, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1709, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9499734349709336962" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "984756937915331804" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12873335684543373574" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6276412554201568549" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12949524158894754919" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7987569084817776290" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b83d5d60f2f0061829fd8669f1b0daa8f37b28b74dc9fd8669f1bb2a74699679161069f1b571a4bf6d4fc95251bb3b5f39ced42cc67ffffffff1b6ed98bc33f749ea280ffff", + "cborBytes": [ + 216, 102, 159, 27, 131, 213, 214, 15, 47, 0, 97, 130, 159, 216, 102, 159, 27, 13, 170, 143, 55, 178, 139, 116, + 220, 159, 216, 102, 159, 27, 178, 167, 70, 153, 103, 145, 97, 6, 159, 27, 87, 26, 75, 246, 212, 252, 149, 37, 27, + 179, 181, 243, 156, 237, 66, 204, 103, 255, 255, 255, 255, 27, 110, 217, 139, 195, 63, 116, 158, 162, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1710, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17265801450326464535" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ba8828a8727d656fe2a2" + }, + { + "_tag": "ByteArray", + "bytearray": "b9bdd78fd034220f55cc37" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13844206512421680471" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14911445443069706319" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9042243302588956460" + } + }, + { + "_tag": "ByteArray", + "bytearray": "19937b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2ff0fb6256d37595" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7df60922f80817c96ff0" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2203528890845271136" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d88627c890adccb6b8989" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15316866463327734274" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15537124425470722289" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27caff77b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b0ed7d6e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d20c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ceb1aae0940fa7cd0d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6040d0fd88cf356c9e992b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c9d5680403f86e" + }, + { + "_tag": "ByteArray", + "bytearray": "075e06a1" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a24d7b5a5cae28030eb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fef9fe" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "add4fe0593fb" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79fd8669f1bef9c72f0e12218179f4aba8828a8727d656fe2a24bb9bdd78fd034220f55cc37d8669f1bc02080792a0b355780ffd8669f1bcef018a051c9804f9f1b7d7c806037783f2c4319937bffff482ff0fb6256d37595ffff1bfffffffffffffff1d87c9f9f4a7df60922f80817c96ff0ff9f1b1e9481d9f72494604b6d88627c890adccb6b8989ffbf1bd49070e56abe4a021bd79ef458833a40f14527caff77b4413c452b0ed7d6e7433d20c149ceb1aae0940fa7cd0d4b6040d0fd88cf356c9e992bff47c9d5680403f86e44075e06a1ff9fbf0c4a5a24d7b5a5cae28030eb1bfffffffffffffff943fef9feffff46add4fe0593fbffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 216, 102, 159, 27, 239, 156, 114, 240, 225, 34, + 24, 23, 159, 74, 186, 136, 40, 168, 114, 125, 101, 111, 226, 162, 75, 185, 189, 215, 143, 208, 52, 34, 15, 85, + 204, 55, 216, 102, 159, 27, 192, 32, 128, 121, 42, 11, 53, 87, 128, 255, 216, 102, 159, 27, 206, 240, 24, 160, 81, + 201, 128, 79, 159, 27, 125, 124, 128, 96, 55, 120, 63, 44, 67, 25, 147, 123, 255, 255, 72, 47, 240, 251, 98, 86, + 211, 117, 149, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 241, 216, 124, 159, 159, 74, 125, 246, 9, 34, 248, + 8, 23, 201, 111, 240, 255, 159, 27, 30, 148, 129, 217, 247, 36, 148, 96, 75, 109, 136, 98, 124, 137, 10, 220, 203, + 107, 137, 137, 255, 191, 27, 212, 144, 112, 229, 106, 190, 74, 2, 27, 215, 158, 244, 88, 131, 58, 64, 241, 69, 39, + 202, 255, 119, 180, 65, 60, 69, 43, 14, 215, 214, 231, 67, 61, 32, 193, 73, 206, 177, 170, 224, 148, 15, 167, 205, + 13, 75, 96, 64, 208, 253, 136, 207, 53, 108, 158, 153, 43, 255, 71, 201, 213, 104, 4, 3, 248, 110, 68, 7, 94, 6, + 161, 255, 159, 191, 12, 74, 90, 36, 215, 181, 165, 202, 226, 128, 48, 235, 27, 255, 255, 255, 255, 255, 255, 255, + 249, 67, 254, 249, 254, 255, 255, 70, 173, 212, 254, 5, 147, 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1711, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16908790278346230330" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6210887621925161994" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3424273835662148432" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2572083523271723094" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6100002688471405402" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4059874697339440632" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5061" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9213840144894828876" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17355912674123381382" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cb0e57099300077934e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75eab415c3989fefbab1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbd63f0c43297e8be1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "048ea341b453a567f3" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13652699304472526638" + } + }, + { + "_tag": "ByteArray", + "bytearray": "567bd112" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1beaa8172bea67ca3a9f9fd8669f1b56318162acb84c0a9f1b2f8576e9344e83501b23b1e056413f08561b54a790203f44135affffbf1b38579286ef838df84250611b7fde22cb75b0a14c1bf0dc969f1dd2fa864a8cb0e57099300077934e4a75eab415c3989fefbab149bbd63f0c43297e8be149048ea341b453a567f3ff9f1bbd7821aeac4ebf2e44567bd112ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 234, 168, 23, 43, 234, 103, 202, 58, 159, 159, 216, 102, 159, 27, 86, 49, 129, 98, 172, 184, + 76, 10, 159, 27, 47, 133, 118, 233, 52, 78, 131, 80, 27, 35, 177, 224, 86, 65, 63, 8, 86, 27, 84, 167, 144, 32, + 63, 68, 19, 90, 255, 255, 191, 27, 56, 87, 146, 134, 239, 131, 141, 248, 66, 80, 97, 27, 127, 222, 34, 203, 117, + 176, 161, 76, 27, 240, 220, 150, 159, 29, 210, 250, 134, 74, 140, 176, 229, 112, 153, 48, 0, 119, 147, 78, 74, + 117, 234, 180, 21, 195, 152, 159, 239, 186, 177, 73, 187, 214, 63, 12, 67, 41, 126, 139, 225, 73, 4, 142, 163, 65, + 180, 83, 165, 103, 243, 255, 159, 27, 189, 120, 33, 174, 172, 78, 191, 46, 68, 86, 123, 209, 18, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1712, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13340241079474745181" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1291709a44" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4052087934168685819" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "178623154906746825" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3828322757965876544" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e57259ffdb0007a54a6ff13" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15848166675517979053" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "edbd6e18de70" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "03e8eefc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4709658073107658567" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f9f9f1bb9220e95082a6f5d451291709a44ffd9050d9f1b383be881dac55cfbffffbf111b027a98d020e04fc91b3520ef43da198d404c1e57259ffdb0007a54a6ff131bdbefff9fcb6eb9ad46edbd6e18de704403e8eefc1b415c11108d21f747ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 159, 159, 27, 185, 34, 14, 149, 8, 42, 111, 93, + 69, 18, 145, 112, 154, 68, 255, 217, 5, 13, 159, 27, 56, 59, 232, 129, 218, 197, 92, 251, 255, 255, 191, 17, 27, + 2, 122, 152, 208, 32, 224, 79, 201, 27, 53, 32, 239, 67, 218, 25, 141, 64, 76, 30, 87, 37, 159, 253, 176, 0, 122, + 84, 166, 255, 19, 27, 219, 239, 255, 159, 203, 110, 185, 173, 70, 237, 189, 110, 24, 222, 112, 68, 3, 232, 238, + 252, 27, 65, 92, 17, 16, 141, 33, 247, 71, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1713, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17921251073936989360" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8a06d321af86d5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3141754548958593504" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5043775523318921853" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8975028288405953979" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3257317921627653149" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13837430542320221632" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19e2a97cca49" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bf8b512e6a09a1cb09f478a06d321af86d5bf1b2b99c11dd62501e01b45ff171d8a3bfa7d1b7c8db4ad3384ddbb1b2d3451644721441d1bc0086dc3af233dc04619e2a97cca49ffffff", + "cborBytes": [ + 216, 102, 159, 27, 248, 181, 18, 230, 160, 154, 28, 176, 159, 71, 138, 6, 211, 33, 175, 134, 213, 191, 27, 43, + 153, 193, 29, 214, 37, 1, 224, 27, 69, 255, 23, 29, 138, 59, 250, 125, 27, 124, 141, 180, 173, 51, 132, 221, 187, + 27, 45, 52, 81, 100, 71, 33, 68, 29, 27, 192, 8, 109, 195, 175, 35, 61, 192, 70, 25, 226, 169, 124, 202, 73, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1714, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2203875496256799664" + }, + "fields": [] + }, + "cborHex": "d8669f1b1e95bd16539303b080ff", + "cborBytes": [216, 102, 159, 27, 30, 149, 189, 22, 83, 147, 3, 176, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1715, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cae465a8254e648020085ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6117647703721819330" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e30278592c66a358c08" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1065a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc16bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d82265" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2279476803476559363" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15813832247815735026" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c7962d1fa3cdf9bafb" + }, + { + "_tag": "ByteArray", + "bytearray": "2af163" + }, + { + "_tag": "ByteArray", + "bytearray": "4a8a3ce170a263" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9fbf4c7cae465a8254e648020085ec1b54e6402c8152bcc24a9e30278592c66a358c0843b1065a43bc16bf43d82265ff1b1fa2541358f69603a0d8669f1bdb7604a4e4ac86f29f8049c7962d1fa3cdf9bafb432af163474a8a3ce170a263ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 191, 76, 124, 174, 70, 90, 130, 84, 230, 72, 2, 0, + 133, 236, 27, 84, 230, 64, 44, 129, 82, 188, 194, 74, 158, 48, 39, 133, 146, 198, 106, 53, 140, 8, 67, 177, 6, 90, + 67, 188, 22, 191, 67, 216, 34, 101, 255, 27, 31, 162, 84, 19, 88, 246, 150, 3, 160, 216, 102, 159, 27, 219, 118, + 4, 164, 228, 172, 134, 242, 159, 128, 73, 199, 150, 45, 31, 163, 205, 249, 186, 251, 67, 42, 241, 99, 71, 74, 138, + 60, 225, 112, 162, 99, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1716, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12999674338771612676" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "09a2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8190761948238523788" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14708490863806145511" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12728410544824277177" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99eb22d00f31d7112e6efa6f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14824868265189496780" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11932693115181275099" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15565999527908295557" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b01517070a246e5670" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b6f641ef99c8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2228687687672709632" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "10e0817348060c9f" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bb4681eef963e34049f4209a2bf1b71ab6e986c8b2d8c1bcc1f0e82ff3e63e71bb0a465f3d79658b94c99eb22d00f31d7112e6efa6f1bcdbc83244494d7cc1ba599712a882117db1bd8058a1932df438549b01517070a246e5670ff46b6f641ef99c81b1eede3a4d304c2009f9f4810e0817348060c9fffffffff", + "cborBytes": [ + 216, 102, 159, 27, 180, 104, 30, 239, 150, 62, 52, 4, 159, 66, 9, 162, 191, 27, 113, 171, 110, 152, 108, 139, 45, + 140, 27, 204, 31, 14, 130, 255, 62, 99, 231, 27, 176, 164, 101, 243, 215, 150, 88, 185, 76, 153, 235, 34, 208, 15, + 49, 215, 17, 46, 110, 250, 111, 27, 205, 188, 131, 36, 68, 148, 215, 204, 27, 165, 153, 113, 42, 136, 33, 23, 219, + 27, 216, 5, 138, 25, 50, 223, 67, 133, 73, 176, 21, 23, 7, 10, 36, 110, 86, 112, 255, 70, 182, 246, 65, 239, 153, + 200, 27, 30, 237, 227, 164, 211, 4, 194, 0, 159, 159, 72, 16, 224, 129, 115, 72, 6, 12, 159, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1717, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9078391280427172661" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "4597" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3748794359328720063" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15149293059982052261" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "08" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f4362716958a5e0a" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "050b48a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0605" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11321861197605064412" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e8" + }, + { + "_tag": "ByteArray", + "bytearray": "ada6519a90f40ebf31" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10001974789300126348" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2045517014832587358" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15868328112099892075" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1a4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7bce4c057" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11346526488006691154" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9fd87e9fd8669f1b7dfcecc529dd833580ffd8669f1bfffffffffffffff780ff424597d8669f1b3406649b9bc6c4bf80ffd8669f1bd23d19c60e854ba59f41081348f4362716958a5e0affffffbf44050b48a8420605ff9fd8669f1b9d1f54c5ff874edc9f41e849ada6519a90f40ebf31ffffbf1b8ace271400a5828c1b1c6322e32b1d225e1bdc37a0580d0f1b6b42d1a445b7bce4c0574131ff1b9d76f5b970330952ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 216, 126, 159, 216, 102, 159, 27, 125, 252, 236, + 197, 41, 221, 131, 53, 128, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 128, 255, 66, 69, 151, + 216, 102, 159, 27, 52, 6, 100, 155, 155, 198, 196, 191, 128, 255, 216, 102, 159, 27, 210, 61, 25, 198, 14, 133, + 75, 165, 159, 65, 8, 19, 72, 244, 54, 39, 22, 149, 138, 94, 10, 255, 255, 255, 191, 68, 5, 11, 72, 168, 66, 6, 5, + 255, 159, 216, 102, 159, 27, 157, 31, 84, 197, 255, 135, 78, 220, 159, 65, 232, 73, 173, 166, 81, 154, 144, 244, + 14, 191, 49, 255, 255, 191, 27, 138, 206, 39, 20, 0, 165, 130, 140, 27, 28, 99, 34, 227, 43, 29, 34, 94, 27, 220, + 55, 160, 88, 13, 15, 27, 107, 66, 209, 164, 69, 183, 188, 228, 192, 87, 65, 49, 255, 27, 157, 118, 245, 185, 112, + 51, 9, 82, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1718, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c1bd6f6281694acac7f3" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6179158640693735955" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3158348083098364198" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12806152939079042046" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8922663694473513012" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11092437019698708635" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905059f4ac1bd6f6281694acac7f3bf1b55c0c80b8d55f2131b2bd4b4d9121d2926ffd8669f1bb1b8983f892183fe9fbf1b7bd3ab5b175e48341b99f040b2fc88c09bffffffff", + "cborBytes": [ + 217, 5, 5, 159, 74, 193, 189, 111, 98, 129, 105, 74, 202, 199, 243, 191, 27, 85, 192, 200, 11, 141, 85, 242, 19, + 27, 43, 212, 180, 217, 18, 29, 41, 38, 255, 216, 102, 159, 27, 177, 184, 152, 63, 137, 33, 131, 254, 159, 191, 27, + 123, 211, 171, 91, 23, 94, 72, 52, 27, 153, 240, 64, 178, 252, 136, 192, 155, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1719, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2412782468702110223" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10573255055865265022" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6374850f8911dad5da9805" + }, + { + "_tag": "ByteArray", + "bytearray": "5e6ce8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6066785444692333917" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10440279784365154526" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15433510230377695106" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8af689486174" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12663817122224273737" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11789038262062216251" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d3e2ca64f92683ea40292e5d" + }, + { + "_tag": "ByteArray", + "bytearray": "f1" + }, + { + "_tag": "ByteArray", + "bytearray": "f3ab4986" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5974077786335615944" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7475534395644636398" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "652c59c4f02a753779be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8290845341541942448" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4839ed3687e45f3f4785fe" + }, + { + "_tag": "ByteArray", + "bytearray": "f8cb67ac" + }, + { + "_tag": "ByteArray", + "bytearray": "37ace2b538b7f8" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fa2d72" + }, + { + "_tag": "ByteArray", + "bytearray": "cfd29a42bd26d949" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aac59725f5f51871b4a05bd7" + } + ] + }, + "cborHex": "d87b9fd8669f1b217becdf2f47820f9fd8669f1b92bbbf742c73bb7e9f4b6374850f8911dad5da9805435e6ce81b54318d37ff65955dffff9f1b90e353261ec6e0deff1bd62ed7c8c7050782468af689486174ffffd8669f1bafbeea93aeaff9499fd8669f1ba39b13d69db4f43b9f4cd3e2ca64f92683ea40292e5d41f144f3ab49861b52e830183b161bc8ffffffffd8669f1b67be6eecfe9cecee9f9f4a652c59c4f02a753779be1b730effe94e4f44b04b4839ed3687e45f3f4785fe44f8cb67ac4737ace2b538b7f8ff43fa2d7248cfd29a42bd26d949ffff4caac59725f5f51871b4a05bd7ff", + "cborBytes": [ + 216, 123, 159, 216, 102, 159, 27, 33, 123, 236, 223, 47, 71, 130, 15, 159, 216, 102, 159, 27, 146, 187, 191, 116, + 44, 115, 187, 126, 159, 75, 99, 116, 133, 15, 137, 17, 218, 213, 218, 152, 5, 67, 94, 108, 232, 27, 84, 49, 141, + 55, 255, 101, 149, 93, 255, 255, 159, 27, 144, 227, 83, 38, 30, 198, 224, 222, 255, 27, 214, 46, 215, 200, 199, 5, + 7, 130, 70, 138, 246, 137, 72, 97, 116, 255, 255, 216, 102, 159, 27, 175, 190, 234, 147, 174, 175, 249, 73, 159, + 216, 102, 159, 27, 163, 155, 19, 214, 157, 180, 244, 59, 159, 76, 211, 226, 202, 100, 249, 38, 131, 234, 64, 41, + 46, 93, 65, 241, 68, 243, 171, 73, 134, 27, 82, 232, 48, 24, 59, 22, 27, 200, 255, 255, 255, 255, 216, 102, 159, + 27, 103, 190, 110, 236, 254, 156, 236, 238, 159, 159, 74, 101, 44, 89, 196, 240, 42, 117, 55, 121, 190, 27, 115, + 14, 255, 233, 78, 79, 68, 176, 75, 72, 57, 237, 54, 135, 228, 95, 63, 71, 133, 254, 68, 248, 203, 103, 172, 71, + 55, 172, 226, 181, 56, 183, 248, 255, 67, 250, 45, 114, 72, 207, 210, 154, 66, 189, 38, 217, 73, 255, 255, 76, + 170, 197, 151, 37, 245, 245, 24, 113, 180, 160, 91, 215, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1720, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12153332223614942261" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c21ea8038131" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15317902421426739384" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "41a9f7c4d28a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5477130816646926960" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21b03bd3903b3c40e7f90a9d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5626311486345701279" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9680849369071045561" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8252164939252475231" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12388824248470470415" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17795415830745481399" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4968950032109040956" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11176380932310417275" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "276133" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b63ab81f10f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "324d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8182316184125566141" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b8990cc6a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13909807838332976170" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c4fbdf51fbc17871b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "daf397aa296a320d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b05d9ad310" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b86d70ba9424" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1ba8a94f4429e07c359f46c21ea8038131d8669f1bd4941f18353c98b89f4641a9f7c4d28abf1b4c02ad756a95d2704c21b03bd3903b3c40e7f90a9d1b4e14ac7cc355e79f41771b86594935b78b4bb91b7285944a5813a55f1babedf203e2d3ff0f41ee1bf6f60469f5f280b71b44f541ba4286753cff9f1b9b1a7b3e30cfbf7bffffff9fbf43276133468b63ab81f10f42324d1b718d6d37babbecbd454b8990cc6a1bc109908819c7fc2a494c4fbdf51fbc17871b48daf397aa296a320d45b05d9ad31046b86d70ba9424ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 168, 169, 79, 68, 41, 224, 124, 53, 159, 70, 194, 30, 168, 3, 129, 49, 216, 102, 159, 27, 212, + 148, 31, 24, 53, 60, 152, 184, 159, 70, 65, 169, 247, 196, 210, 138, 191, 27, 76, 2, 173, 117, 106, 149, 210, 112, + 76, 33, 176, 59, 211, 144, 59, 60, 64, 231, 249, 10, 157, 27, 78, 20, 172, 124, 195, 85, 231, 159, 65, 119, 27, + 134, 89, 73, 53, 183, 139, 75, 185, 27, 114, 133, 148, 74, 88, 19, 165, 95, 27, 171, 237, 242, 3, 226, 211, 255, + 15, 65, 238, 27, 246, 246, 4, 105, 245, 242, 128, 183, 27, 68, 245, 65, 186, 66, 134, 117, 60, 255, 159, 27, 155, + 26, 123, 62, 48, 207, 191, 123, 255, 255, 255, 159, 191, 67, 39, 97, 51, 70, 139, 99, 171, 129, 241, 15, 66, 50, + 77, 27, 113, 141, 109, 55, 186, 187, 236, 189, 69, 75, 137, 144, 204, 106, 27, 193, 9, 144, 136, 25, 199, 252, 42, + 73, 76, 79, 189, 245, 31, 188, 23, 135, 27, 72, 218, 243, 151, 170, 41, 106, 50, 13, 69, 176, 93, 154, 211, 16, + 70, 184, 109, 112, 186, 148, 36, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1721, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16893162604758662851" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2434862186193693904" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11833128418128908389" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c3740e8ae0f3ef006319bb9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8438f0458" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15055247501103506545" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "83875253423751739" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f738666c518b324605d4c62e" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14251377115969098289" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "97e45d075039efc13a0d451e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2429929648278878056" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16488147715928428341" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c00af35b7b276d2536" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17224974281220700691" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0130ca9030aed5a76927" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3307726664914267873" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6607c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3557560682416786017" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5793f3116bbbd3303c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfc87d84fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16436271876841419517" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6059576247656552162" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07c1181ea5cf0f7bd623" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16946749895256445179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8957971440382334568" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a50efc1b1f8c31c5a47ffb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "207d11de9ae0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edcfb765ee6af0d7e86da6fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d71f3" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bea7091e29d8d7ec39f9f9f1b21ca5e42051b2cd0ffbf1ba437b79a082750654c0c3740e8ae0f3ef006319bb945c8438f04581bd0eefbd60cdca471ffbf1b0129fc193dc4c23b4cf738666c518b324605d4c62effffd8669f1bc5c70ffadd7812319f4c97e45d075039efc13a0d451e1b21b8d8240ada3768bf1be4d1aafd5c150f3549c00af35b7b276d2536ff1bef0b66d8d1663a134a0130ca9030aed5a76927ffffbf1b2de767e06c4d6ee143a6607c1b315efe9786594a61495793f3116bbbd3303c45bfc87d84fb1be4195e305ae032fdff9fbf1b5417f07e02f696e24a07c1181ea5cf0f7bd6231beb2ef33df42610fb1b7c511b904c1556684ba50efc1b1f8c31c5a47ffb46207d11de9ae04cedcfb765ee6af0d7e86da6fe430d71f3ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 234, 112, 145, 226, 157, 141, 126, 195, 159, 159, 159, 27, 33, 202, 94, 66, 5, 27, 44, 208, + 255, 191, 27, 164, 55, 183, 154, 8, 39, 80, 101, 76, 12, 55, 64, 232, 174, 15, 62, 240, 6, 49, 155, 185, 69, 200, + 67, 143, 4, 88, 27, 208, 238, 251, 214, 12, 220, 164, 113, 255, 191, 27, 1, 41, 252, 25, 61, 196, 194, 59, 76, + 247, 56, 102, 108, 81, 139, 50, 70, 5, 212, 198, 46, 255, 255, 216, 102, 159, 27, 197, 199, 15, 250, 221, 120, 18, + 49, 159, 76, 151, 228, 93, 7, 80, 57, 239, 193, 58, 13, 69, 30, 27, 33, 184, 216, 36, 10, 218, 55, 104, 191, 27, + 228, 209, 170, 253, 92, 21, 15, 53, 73, 192, 10, 243, 91, 123, 39, 109, 37, 54, 255, 27, 239, 11, 102, 216, 209, + 102, 58, 19, 74, 1, 48, 202, 144, 48, 174, 213, 167, 105, 39, 255, 255, 191, 27, 45, 231, 103, 224, 108, 77, 110, + 225, 67, 166, 96, 124, 27, 49, 94, 254, 151, 134, 89, 74, 97, 73, 87, 147, 243, 17, 107, 187, 211, 48, 60, 69, + 191, 200, 125, 132, 251, 27, 228, 25, 94, 48, 90, 224, 50, 253, 255, 159, 191, 27, 84, 23, 240, 126, 2, 246, 150, + 226, 74, 7, 193, 24, 30, 165, 207, 15, 123, 214, 35, 27, 235, 46, 243, 61, 244, 38, 16, 251, 27, 124, 81, 27, 144, + 76, 21, 86, 104, 75, 165, 14, 252, 27, 31, 140, 49, 197, 164, 127, 251, 70, 32, 125, 17, 222, 154, 224, 76, 237, + 207, 183, 101, 238, 106, 240, 215, 232, 109, 166, 254, 67, 13, 113, 243, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1722, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04a6" + } + ] + }, + "cborHex": "d9050a9f4105d9050c80044204a6ff", + "cborBytes": [217, 5, 10, 159, 65, 5, 217, 5, 12, 128, 4, 66, 4, 166, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1723, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10657873102434507659" + }, + "fields": [] + }, + "cborHex": "d8669f1b93e85f1e6bcc9b8b80ff", + "cborBytes": [216, 102, 159, 27, 147, 232, 95, 30, 107, 204, 155, 139, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1724, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "375518061508485574" + }, + "fields": [] + }, + "cborHex": "d8669f1b05361baff6f4e1c680ff", + "cborBytes": [216, 102, 159, 27, 5, 54, 27, 175, 246, 244, 225, 198, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1725, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6771316142412615867" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18192134040307058476" + } + } + ] + }, + "cborHex": "d8669f1b5df88c27d25f50bb9f1bfc7771860acb472cffff", + "cborBytes": [ + 216, 102, 159, 27, 93, 248, 140, 39, 210, 95, 80, 187, 159, 27, 252, 119, 113, 134, 10, 203, 71, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1726, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9989986966461043696" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0907ee6cc3fef8" + } + ] + }, + "cborHex": "d8669f1b8aa390377eb153f09f470907ee6cc3fef8ffff", + "cborBytes": [ + 216, 102, 159, 27, 138, 163, 144, 55, 126, 177, 83, 240, 159, 71, 9, 7, 238, 108, 195, 254, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1727, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2399001814946300026" + }, + "fields": [] + }, + "cborHex": "d8669f1b214af770b364407a80ff", + "cborBytes": [216, 102, 159, 27, 33, 74, 247, 112, 179, 100, 64, 122, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1728, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7464530922541167004" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b6797575344fc319c9fa0ffff", + "cborBytes": [216, 102, 159, 27, 103, 151, 87, 83, 68, 252, 49, 156, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1729, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16100372813119796081" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bdf7003c5255cb3719f9f80ffffff", + "cborBytes": [216, 102, 159, 27, 223, 112, 3, 197, 37, 92, 179, 113, 159, 159, 128, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1730, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1704119294390508205" + } + } + ] + }, + "cborHex": "d905009f1b17a63f782d091aadff", + "cborBytes": [217, 5, 0, 159, 27, 23, 166, 63, 120, 45, 9, 26, 173, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1731, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10700462718047730864" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1506631141206814424" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11046495525049414824" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05030402" + }, + { + "_tag": "ByteArray", + "bytearray": "af29" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17408857053823801126" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10947989443649414455" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7458270711525814046" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff76e46da47bdcc552dfffa2" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6082881395495645284" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10720169523080753669" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3dfa5df1ae0ce9" + }, + { + "_tag": "ByteArray", + "bytearray": "373f9dcfc8775b17" + } + ] + } + ] + } + ] + }, + "cborHex": "d905099fbf1b947fae26098bbcb01b14e8a10a5b2c6ed8ff9fd8669f1b994d0927378334a89f01440503040242af2914ffffffd8669f1bf198af411eb897269f11ffffd8669f1b97ef1264e17325379fbf1b678119b24f322f1e4cff76e46da47bdcc552dfffa2ffffffd87a9f1b546abc669559b064d8669f1b94c5b162233272059f473dfa5df1ae0ce948373f9dcfc8775b17ffffffff", + "cborBytes": [ + 217, 5, 9, 159, 191, 27, 148, 127, 174, 38, 9, 139, 188, 176, 27, 20, 232, 161, 10, 91, 44, 110, 216, 255, 159, + 216, 102, 159, 27, 153, 77, 9, 39, 55, 131, 52, 168, 159, 1, 68, 5, 3, 4, 2, 66, 175, 41, 20, 255, 255, 255, 216, + 102, 159, 27, 241, 152, 175, 65, 30, 184, 151, 38, 159, 17, 255, 255, 216, 102, 159, 27, 151, 239, 18, 100, 225, + 115, 37, 55, 159, 191, 27, 103, 129, 25, 178, 79, 50, 47, 30, 76, 255, 118, 228, 109, 164, 123, 220, 197, 82, 223, + 255, 162, 255, 255, 255, 216, 122, 159, 27, 84, 106, 188, 102, 149, 89, 176, 100, 216, 102, 159, 27, 148, 197, + 177, 98, 35, 50, 114, 5, 159, 71, 61, 250, 93, 241, 174, 12, 233, 72, 55, 63, 157, 207, 200, 119, 91, 23, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1732, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13819610693755227446" + }, + "fields": [] + }, + "cborHex": "d8669f1bbfc91eb4df784d3680ff", + "cborBytes": [216, 102, 159, 27, 191, 201, 30, 180, 223, 120, 77, 54, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1733, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4821028961831628011" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6101720792343299683" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d146b372560b9172fc768" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17623555081211627661" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5e64be2cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7046281926865374946" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b42e7bc4c41d82ceb9f1b54adaabb7a3cc663bf4b9d146b372560b9172fc7681bf49371f90726488d45d5e64be2cb1b61c96c146610cee2ffffff", + "cborBytes": [ + 216, 102, 159, 27, 66, 231, 188, 76, 65, 216, 44, 235, 159, 27, 84, 173, 170, 187, 122, 60, 198, 99, 191, 75, 157, + 20, 107, 55, 37, 96, 185, 23, 47, 199, 104, 27, 244, 147, 113, 249, 7, 38, 72, 141, 69, 213, 230, 75, 226, 203, + 27, 97, 201, 108, 20, 102, 16, 206, 226, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1734, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13365216711705156138" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3768" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4022776000511123016" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8912584262915139343" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11281883467012661785" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "021c58d1915cb7" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8caf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + ] + }, + "cborHex": "d8669f1bb97ac9c98f4cda2a9f01423768d8669f1b37d3c575796e9e489fd8669f1b7bafdc2a8dcb270f9f1b9c914d3d40a46219ffff47021c58d1915cb7ffff428caf1bffffffffffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 185, 122, 201, 201, 143, 76, 218, 42, 159, 1, 66, 55, 104, 216, 102, 159, 27, 55, 211, 197, + 117, 121, 110, 158, 72, 159, 216, 102, 159, 27, 123, 175, 220, 42, 141, 203, 39, 15, 159, 27, 156, 145, 77, 61, + 64, 164, 98, 25, 255, 255, 71, 2, 28, 88, 209, 145, 92, 183, 255, 255, 66, 140, 175, 27, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1735, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7819120348004038824" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f1b6c8318876ecf38a8ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 27, 108, 131, 24, 135, 110, 207, 56, 168, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1736, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5e01fa630bad" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9547783631833263737" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12cc889a477e5d7a9481" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7021279184191412265" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a102485c29bc3352bbea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16487474536114698400" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a707a34f5bee82d225bf655f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b215359ed0ceb90dfa54" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6e9e99b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b225d328" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5488f30d667196616e64a3e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1787079702336269776" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f465e01fa630badd8669f1bfffffffffffffffc9f1b84808aa077b5ee79ffffbf4a12cc889a477e5d7a94811b61709837ba92d8294aa102485c29bc3352bbea1be4cf46bc786a38a04ca707a34f5bee82d225bf655f4ab215359ed0ceb90dfa5444d6e9e99b44b225d3284ce5488f30d667196616e64a3e1b18ccfb855b106dd0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 70, 94, 1, 250, 99, 11, 173, 216, 102, 159, 27, + 255, 255, 255, 255, 255, 255, 255, 252, 159, 27, 132, 128, 138, 160, 119, 181, 238, 121, 255, 255, 191, 74, 18, + 204, 136, 154, 71, 126, 93, 122, 148, 129, 27, 97, 112, 152, 55, 186, 146, 216, 41, 74, 161, 2, 72, 92, 41, 188, + 51, 82, 187, 234, 27, 228, 207, 70, 188, 120, 106, 56, 160, 76, 167, 7, 163, 79, 91, 238, 130, 210, 37, 191, 101, + 95, 74, 178, 21, 53, 158, 208, 206, 185, 13, 250, 84, 68, 214, 233, 233, 155, 68, 178, 37, 211, 40, 76, 229, 72, + 143, 48, 214, 103, 25, 102, 22, 230, 74, 62, 27, 24, 204, 251, 133, 91, 16, 109, 208, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1737, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9386198936956700836" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2954357449108280314" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "21662862276415967" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6295313912202821738" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0da9d3b3019d6a64351" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8016936959565465974" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8678423577232742367" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12241985437950668270" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1598052375739147567" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17836240582690838596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27c411c8e3b3" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14054095553727557970" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2568566744891713731" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7467222777097562620" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c705dfd150d08951a83" + }, + { + "_tag": "ByteArray", + "bytearray": "77bb91ce3c57" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b82427a33f47408a49fbf1b28fffc7275a0d3fa1b004cf6422acdd1df1b575d72a62e6c806a4ae0da9d3b3019d6a643511b6f41e1b06d9989761b786ff443635517df1ba9e444e51e8dedee1b162d6c2b3c66a52f1bf7870e4f3bb198444627c411c8e3b3ff9fd8669f1bc30a2d71bf53f1529f1b23a561d87b26e8c31b67a0e78d7f9b29fc4a9c705dfd150d08951a834677bb91ce3c57ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 130, 66, 122, 51, 244, 116, 8, 164, 159, 191, 27, 40, 255, 252, 114, 117, 160, 211, 250, 27, 0, + 76, 246, 66, 42, 205, 209, 223, 27, 87, 93, 114, 166, 46, 108, 128, 106, 74, 224, 218, 157, 59, 48, 25, 214, 166, + 67, 81, 27, 111, 65, 225, 176, 109, 153, 137, 118, 27, 120, 111, 244, 67, 99, 85, 23, 223, 27, 169, 228, 68, 229, + 30, 141, 237, 238, 27, 22, 45, 108, 43, 60, 102, 165, 47, 27, 247, 135, 14, 79, 59, 177, 152, 68, 70, 39, 196, 17, + 200, 227, 179, 255, 159, 216, 102, 159, 27, 195, 10, 45, 113, 191, 83, 241, 82, 159, 27, 35, 165, 97, 216, 123, + 38, 232, 195, 27, 103, 160, 231, 141, 127, 155, 41, 252, 74, 156, 112, 93, 253, 21, 13, 8, 149, 26, 131, 70, 119, + 187, 145, 206, 60, 87, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1738, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3612565086197046188" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40a6517b24" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12095275392971544924" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15118008393820044925" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16225216331291290500" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4496408581022295362" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "926676990156206995" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee78efda88ac3a0244556a" + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9fbf1b322268ce42c0dbac4540a6517b241ba7db0ce2ea97995c1bd1cdf48919047e7d1be12b8c49d67beb841b3e6673c80cda2542ff9f1b0cdc37d013c9f3934bee78efda88ac3a0244556affffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 191, 27, 50, 34, 104, 206, 66, 192, 219, 172, 69, + 64, 166, 81, 123, 36, 27, 167, 219, 12, 226, 234, 151, 153, 92, 27, 209, 205, 244, 137, 25, 4, 126, 125, 27, 225, + 43, 140, 73, 214, 123, 235, 132, 27, 62, 102, 115, 200, 12, 218, 37, 66, 255, 159, 27, 12, 220, 55, 208, 19, 201, + 243, 147, 75, 238, 120, 239, 218, 136, 172, 58, 2, 68, 85, 106, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1739, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18125551082528933854" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3a0cc63d1ca2daf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e1d630824ecb5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1bf1c64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8320626132844376144" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fae0c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a9ffc40fd5b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9770479821328447284" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da" + } + ] + } + ] + }, + "cborHex": "d8669f1bfb8ae4ad205587de9f9fbf48b3a0cc63d1ca2daf470e1d630824ecb544f1bf1c641b7378cd621d05705043fae0c5461a9ffc40fd5bff1b8797b7a19b67773441daffffff", + "cborBytes": [ + 216, 102, 159, 27, 251, 138, 228, 173, 32, 85, 135, 222, 159, 159, 191, 72, 179, 160, 204, 99, 209, 202, 45, 175, + 71, 14, 29, 99, 8, 36, 236, 181, 68, 241, 191, 28, 100, 27, 115, 120, 205, 98, 29, 5, 112, 80, 67, 250, 224, 197, + 70, 26, 159, 252, 64, 253, 91, 255, 27, 135, 151, 183, 161, 155, 103, 119, 52, 65, 218, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1740, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14143857287753724404" + }, + "fields": [] + }, + "cborHex": "d8669f1bc44913440e6171f480ff", + "cborBytes": [216, 102, 159, 27, 196, 73, 19, 68, 14, 97, 113, 244, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1741, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6375ae998a91" + }, + { + "_tag": "ByteArray", + "bytearray": "1d3f3c" + }, + { + "_tag": "ByteArray", + "bytearray": "a2367957d381" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11897215297256747496" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d9dad6" + }, + { + "_tag": "ByteArray", + "bytearray": "591ecdbf3a6367647fed" + } + ] + } + ] + }, + "cborHex": "d87e9f466375ae998a91431d3f3c46a2367957d3811ba51b66475954f1e89f43d9dad64a591ecdbf3a6367647fedffff", + "cborBytes": [ + 216, 126, 159, 70, 99, 117, 174, 153, 138, 145, 67, 29, 63, 60, 70, 162, 54, 121, 87, 211, 129, 27, 165, 27, 102, + 71, 89, 84, 241, 232, 159, 67, 217, 218, 214, 74, 89, 30, 205, 191, 58, 99, 103, 100, 127, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1742, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5392101456628482636" + }, + "fields": [] + }, + "cborHex": "d8669f1b4ad497b4cb35024c80ff", + "cborBytes": [216, 102, 159, 27, 74, 212, 151, 180, 203, 53, 2, 76, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1743, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8412462862603090575" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9043165925843402683" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10772361979405935951" + } + }, + { + "_tag": "ByteArray", + "bytearray": "229d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12992020398266190798" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0006280404" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6623485516699705043" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b74bf1267039f7a8f9f1b7d7fc77f2ecfffbb9f9f1b957f1e25566a254f42229d1bb44cedb7b1490bce4500062804041b5beb58fc15d49ed3ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 116, 191, 18, 103, 3, 159, 122, 143, 159, 27, 125, 127, 199, 127, 46, 207, 255, 187, 159, 159, + 27, 149, 127, 30, 37, 86, 106, 37, 79, 66, 34, 157, 27, 180, 76, 237, 183, 177, 73, 11, 206, 69, 0, 6, 40, 4, 4, + 27, 91, 235, 88, 252, 21, 212, 158, 211, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1744, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7507731887617627357" + }, + "fields": [] + }, + "cborHex": "d8669f1b6830d25fc65254dd80ff", + "cborBytes": [216, 102, 159, 27, 104, 48, 210, 95, 198, 82, 84, 221, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1745, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3125952819721073455" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17062479911855153809" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5614527879836337982" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f7ccc692d9fdc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9971555804596681178" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3947892457569039513" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15846683832064321698" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4986261300966189582" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16427041901883555909" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "082380cd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17037762910958285208" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17086978835488894487" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "589177cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da320e8b6b3d812c919311" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17462492104886121987" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7002" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16932649408391958178" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ffeca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12733861252327799695" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "920b875df176bc0913" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "614f04c4005f28" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c822bf4f217dd5db78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3984212248575262631" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d905089fbf1b2b619d870c1af32f1becca1b14355d62911b4deacf5c132c073e479f7ccc692d9fdc1b8a62152c36f839da1b36c9bb45f8d8b4991bdbeabafc661ea8a21b4532c23c215dea0e1be3f89393583a004544082380cd1bec724b18fafe71981bed2124b85deeee17ffbf44589177cb4bda320e8b6b3d812c919311ffd8669f1bf2573c0c94ccf6039fbf4270021beafcdaec856e4ea2438ffeca1bb0b7c357941bfb8f49920b875df176bc091347614f04c4005f2849c822bf4f217dd5db781b374ac3ee4a16bfa7ff80ffffff", + "cborBytes": [ + 217, 5, 8, 159, 191, 27, 43, 97, 157, 135, 12, 26, 243, 47, 27, 236, 202, 27, 20, 53, 93, 98, 145, 27, 77, 234, + 207, 92, 19, 44, 7, 62, 71, 159, 124, 204, 105, 45, 159, 220, 27, 138, 98, 21, 44, 54, 248, 57, 218, 27, 54, 201, + 187, 69, 248, 216, 180, 153, 27, 219, 234, 186, 252, 102, 30, 168, 162, 27, 69, 50, 194, 60, 33, 93, 234, 14, 27, + 227, 248, 147, 147, 88, 58, 0, 69, 68, 8, 35, 128, 205, 27, 236, 114, 75, 24, 250, 254, 113, 152, 27, 237, 33, 36, + 184, 93, 238, 238, 23, 255, 191, 68, 88, 145, 119, 203, 75, 218, 50, 14, 139, 107, 61, 129, 44, 145, 147, 17, 255, + 216, 102, 159, 27, 242, 87, 60, 12, 148, 204, 246, 3, 159, 191, 66, 112, 2, 27, 234, 252, 218, 236, 133, 110, 78, + 162, 67, 143, 254, 202, 27, 176, 183, 195, 87, 148, 27, 251, 143, 73, 146, 11, 135, 93, 241, 118, 188, 9, 19, 71, + 97, 79, 4, 196, 0, 95, 40, 73, 200, 34, 191, 79, 33, 125, 213, 219, 120, 27, 55, 74, 195, 238, 74, 22, 191, 167, + 255, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1746, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8816156040102131651" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6701ba5a0202fa" + }, + { + "_tag": "ByteArray", + "bytearray": "1f35c7f6cc630b4219dce99e" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b7a5947355eb3b7c39f809f9f476701ba5a0202fa4c1f35c7f6cc630b4219dce99effffffff", + "cborBytes": [ + 216, 102, 159, 27, 122, 89, 71, 53, 94, 179, 183, 195, 159, 128, 159, 159, 71, 103, 1, 186, 90, 2, 2, 250, 76, 31, + 53, 199, 246, 204, 99, 11, 66, 25, 220, 233, 158, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1747, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9788528825683965480" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "06120707f994ae02920392" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b87d7d71ae89076289f4b06120707f994ae0292039280ffff", + "cborBytes": [ + 216, 102, 159, 27, 135, 215, 215, 26, 232, 144, 118, 40, 159, 75, 6, 18, 7, 7, 249, 148, 174, 2, 146, 3, 146, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1748, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10563417542612307087" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6010881642968116734" + } + }, + { + "_tag": "ByteArray", + "bytearray": "21" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2374451980099862207" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "6eb450" + }, + { + "_tag": "ByteArray", + "bytearray": "9160673b5af96db4c961" + }, + { + "_tag": "ByteArray", + "bytearray": "c9cd25" + }, + { + "_tag": "ByteArray", + "bytearray": "5d42c0c1529350721c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7835548580428827877" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10519334346597458659" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3046086579062360571" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b9298cc49a1894c8f9f9f1b536af101dc07edfe4121ff9fd8669f1b20f3bf7eda133ebf80ff436eb4504a9160673b5af96db4c96143c9cd25495d42c0c1529350721cff1b6cbd75eb5cc6cce5410ad8669f1b91fc2edaba81e2e39f1b2a45df9ad418c9fbffffffff", + "cborBytes": [ + 216, 102, 159, 27, 146, 152, 204, 73, 161, 137, 76, 143, 159, 159, 27, 83, 106, 241, 1, 220, 7, 237, 254, 65, 33, + 255, 159, 216, 102, 159, 27, 32, 243, 191, 126, 218, 19, 62, 191, 128, 255, 67, 110, 180, 80, 74, 145, 96, 103, + 59, 90, 249, 109, 180, 201, 97, 67, 201, 205, 37, 73, 93, 66, 192, 193, 82, 147, 80, 114, 28, 255, 27, 108, 189, + 117, 235, 92, 198, 204, 229, 65, 10, 216, 102, 159, 27, 145, 252, 46, 218, 186, 129, 226, 227, 159, 27, 42, 69, + 223, 154, 212, 24, 201, 251, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1749, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14062115563483885985" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fa6a5bc2b0138a7d42" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13770881366827340184" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16311748184322937721" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12752368120275753582" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fead96deb41916265d" + } + ] + }, + "cborHex": "d905029fd8669f1bc326ab99c7f2f1a180ff49fa6a5bc2b0138a7d42d8669f1bbf1bffa451ca11989fd8669f1be25ef88ce03113799f1bb0f9833d8e0d5a6effff80ffff49fead96deb41916265dff", + "cborBytes": [ + 217, 5, 2, 159, 216, 102, 159, 27, 195, 38, 171, 153, 199, 242, 241, 161, 128, 255, 73, 250, 106, 91, 194, 176, + 19, 138, 125, 66, 216, 102, 159, 27, 191, 27, 255, 164, 81, 202, 17, 152, 159, 216, 102, 159, 27, 226, 94, 248, + 140, 224, 49, 19, 121, 159, 27, 176, 249, 131, 61, 142, 13, 90, 110, 255, 255, 128, 255, 255, 73, 254, 173, 150, + 222, 180, 25, 22, 38, 93, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1750, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5476259938992409142" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ee6659e2c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "677812035670407118" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12197241261758918559" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c7d1cc56f319308fe7" + }, + { + "_tag": "ByteArray", + "bytearray": "21" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2159164362762381003" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fbbb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14580230182005805204" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b4bff956669584a369f9f415f9f45ee6659e2c41b096812748a9e77ce1ba9454e4dc6e0af9f49c7d1cc56f319308fe74121ffd8669f1bfffffffffffffff19f1b1df6e48c562266cbffffff42fbbbd9050d9fd8669f1bca576219e5e2909480ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 75, 255, 149, 102, 105, 88, 74, 54, 159, 159, 65, 95, 159, 69, 238, 102, 89, 226, 196, 27, 9, + 104, 18, 116, 138, 158, 119, 206, 27, 169, 69, 78, 77, 198, 224, 175, 159, 73, 199, 209, 204, 86, 243, 25, 48, + 143, 231, 65, 33, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 27, 29, 246, 228, 140, 86, + 34, 102, 203, 255, 255, 255, 66, 251, 187, 217, 5, 13, 159, 216, 102, 159, 27, 202, 87, 98, 25, 229, 226, 144, + 148, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1751, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5551595918907630461" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16529426794216757835" + } + } + ] + }, + "cborHex": "d8669f1b4d0b3b131aff637d9f1be5645217ba1d1a4bffff", + "cborBytes": [ + 216, 102, 159, 27, 77, 11, 59, 19, 26, 255, 99, 125, 159, 27, 229, 100, 82, 23, 186, 29, 26, 75, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1752, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ee98d1537c4c88" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9731720715266434413" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7b7ef2bd" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7681296345064913724" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "91" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5969453789593592903" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10856032927801265872" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9aeb0e6b71a2a2cacfd8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01cbd5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5352e9a6742a137e01c5b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94073d061eab85d2b9d798e4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6397ce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c78c8d4e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16660572848672721851" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "df6eb4e8c5a485" + } + ] + } + ] + }, + "cborHex": "d905099f47ee98d1537c4c88d8669f1b870e046dfec4256d9f447b7ef2bdd8669f1b6a9972541e19bb3c9f41911b52d7c29817d5e447ffffbf1b96a8606e1b89ced04a9aeb0e6b71a2a2cacfd84301cbd54b5352e9a6742a137e01c5b94c94073d061eab85d2b9d798e4436397ce44c78c8d4e1be7363ebbffa7cbbbff47df6eb4e8c5a485ffffff", + "cborBytes": [ + 217, 5, 9, 159, 71, 238, 152, 209, 83, 124, 76, 136, 216, 102, 159, 27, 135, 14, 4, 109, 254, 196, 37, 109, 159, + 68, 123, 126, 242, 189, 216, 102, 159, 27, 106, 153, 114, 84, 30, 25, 187, 60, 159, 65, 145, 27, 82, 215, 194, + 152, 23, 213, 228, 71, 255, 255, 191, 27, 150, 168, 96, 110, 27, 137, 206, 208, 74, 154, 235, 14, 107, 113, 162, + 162, 202, 207, 216, 67, 1, 203, 213, 75, 83, 82, 233, 166, 116, 42, 19, 126, 1, 197, 185, 76, 148, 7, 61, 6, 30, + 171, 133, 210, 185, 215, 152, 228, 67, 99, 151, 206, 68, 199, 140, 141, 78, 27, 231, 54, 62, 187, 255, 167, 203, + 187, 255, 71, 223, 110, 180, 232, 197, 164, 133, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1753, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3905363373181434633" + }, + "fields": [] + }, + "cborHex": "d8669f1b3632a34be14cfb0980ff", + "cborBytes": [216, 102, 159, 27, 54, 50, 163, 75, 225, 76, 251, 9, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1754, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13931053851810896882" + }, + "fields": [] + }, + "cborHex": "d8669f1bc1550bab18069bf280ff", + "cborBytes": [216, 102, 159, 27, 193, 85, 11, 171, 24, 6, 155, 242, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1755, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "318b9b25169a0070bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "33d026828bea19df564b58f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3231398230490100618" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "835d66c1d542bf436bbbfa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d78007b7d9e1c57a55e2afc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aac28b16d059" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d37d729b0edbd7f9ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2eae7b67bcbe95982" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "300632132120709392" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0d91" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13584142192923048211" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d905049fbf49318b9b25169a0070bd422cac4c33d026828bea19df564b58f91b2cd83b91e830338a4b835d66c1d542bf436bbbfa4272f94c9d78007b7d9e1c57a55e2afc46aac28b16d05949d37d729b0edbd7f9ec49f2eae7b67bcbe95982ffd8669f1b042c0f54d31f89109f9f420d91ffffff1bbc84915a4392f913a0ff", + "cborBytes": [ + 217, 5, 4, 159, 191, 73, 49, 139, 155, 37, 22, 154, 0, 112, 189, 66, 44, 172, 76, 51, 208, 38, 130, 139, 234, 25, + 223, 86, 75, 88, 249, 27, 44, 216, 59, 145, 232, 48, 51, 138, 75, 131, 93, 102, 193, 213, 66, 191, 67, 107, 187, + 250, 66, 114, 249, 76, 157, 120, 0, 123, 125, 158, 28, 87, 165, 94, 42, 252, 70, 170, 194, 139, 22, 208, 89, 73, + 211, 125, 114, 155, 14, 219, 215, 249, 236, 73, 242, 234, 231, 182, 123, 203, 233, 89, 130, 255, 216, 102, 159, + 27, 4, 44, 15, 84, 211, 31, 137, 16, 159, 159, 66, 13, 145, 255, 255, 255, 27, 188, 132, 145, 90, 67, 146, 249, + 19, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1756, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5284347278333784080" + }, + "fields": [] + }, + "cborHex": "d8669f1b4955c5da1ae3301080ff", + "cborBytes": [216, 102, 159, 27, 73, 85, 197, 218, 26, 227, 48, 16, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1757, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0caa759ded" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bee7c1d250e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f948e2337e33f7a89f59" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "96a4ba296d258c5cb1d1" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f1bfffffffffffffff880450caa759dedbf467bee7c1d250e4af948e2337e33f7a89f59ff4a96a4ba296d258c5cb1d1ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 128, + 69, 12, 170, 117, 157, 237, 191, 70, 123, 238, 124, 29, 37, 14, 74, 249, 72, 226, 51, 126, 51, 247, 168, 159, 89, + 255, 74, 150, 164, 186, 41, 109, 37, 140, 92, 177, 209, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1758, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3800352203827813158" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18116219733873449326" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11477113023469348964" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7927151397428325306" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98d9dc09980d" + } + } + ] + } + ] + }, + "cborHex": "d9050d9fd905019f80bf1b34bd9031ba879b261bfb69bddd3672d96effd8669f1b9f46e57c8ae6686480ff1bfffffffffffffff8ffbf1b6e02e6323474ebba031bfffffffffffffff64698d9dc09980dffff", + "cborBytes": [ + 217, 5, 13, 159, 217, 5, 1, 159, 128, 191, 27, 52, 189, 144, 49, 186, 135, 155, 38, 27, 251, 105, 189, 221, 54, + 114, 217, 110, 255, 216, 102, 159, 27, 159, 70, 229, 124, 138, 230, 104, 100, 128, 255, 27, 255, 255, 255, 255, + 255, 255, 255, 248, 255, 191, 27, 110, 2, 230, 50, 52, 116, 235, 186, 3, 27, 255, 255, 255, 255, 255, 255, 255, + 246, 70, 152, 217, 220, 9, 152, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1759, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1048406969969031777" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff05fb03" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8410495574410299407" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f970c675860" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14402151806813815666" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c561c53987c90af200c9e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17383511713156750136" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "538df3" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10828926672824950565" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0458fe3456b5" + } + ] + } + ] + }, + "cborHex": "d8669f1b0e8cb095a10c3a619f44ff05fb039fbf1b74b8152a09b8880f461f970c6758601bc7deb8c32e6343724b9c561c53987c90af200c9e1bf13ea3cd238cdb3843538df3ff1b9648136f507bdf25460458fe3456b5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 14, 140, 176, 149, 161, 12, 58, 97, 159, 68, 255, 5, 251, 3, 159, 191, 27, 116, 184, 21, 42, 9, + 184, 136, 15, 70, 31, 151, 12, 103, 88, 96, 27, 199, 222, 184, 195, 46, 99, 67, 114, 75, 156, 86, 28, 83, 152, + 124, 144, 175, 32, 12, 158, 27, 241, 62, 163, 205, 35, 140, 219, 56, 67, 83, 141, 243, 255, 27, 150, 72, 19, 111, + 80, 123, 223, 37, 70, 4, 88, 254, 52, 86, 181, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1760, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9681837564682331373" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16462507239514131173" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "58caa224c8b530" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5198377401441001886" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b347461e8f133" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7689fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "913e70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a81d347cefb7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e734bc4ad7aeaa2cea0678" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3863253120404379511" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2745980785219053848" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e2b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18a79a5653737e0bc0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7b1ea0a60ad1fd795b17cef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d54d223eb670bc20a1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14702869941967209993" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "755570" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6113519619209388202" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bc413b558" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12517953253279947254" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c2ff00ec03e89330addda21" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0159e47001bac" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12604760327657855135" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a7306" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7372949963825239028" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e5e8b7105" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73c07129cbaafa51e2" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7944069339220488362" + } + } + ] + }, + "cborHex": "d87e9fd8669f1b865ccbf7efec64ed9f1be476931cbb894ae5bf4758caa224c8b5301b482458b4554f219e475b347461e8f133437689fc43913e7046a81d347cefb74be734bc4ad7aeaa2cea06781b359d083e9f1f5777ff1b261baef9af07a918ffffbf4100420e2b4918a79a5653737e0bc04ca7b1ea0a60ad1fd795b17cef4a2d54d223eb670bc20a1e1bcc0b165025b94609437555701b54d795b3ee5b60aa457bc413b5581badb8b42930b259f64c7c2ff00ec03e89330addda2147d0159e47001bacff9f80bf1baeed1abc30fb989f430a7306411e1b6651faedb48853f4456e5e8b71054973c07129cbaafa51e2ffff1b6e3f00f97b4f30aaff", + "cborBytes": [ + 216, 126, 159, 216, 102, 159, 27, 134, 92, 203, 247, 239, 236, 100, 237, 159, 27, 228, 118, 147, 28, 187, 137, 74, + 229, 191, 71, 88, 202, 162, 36, 200, 181, 48, 27, 72, 36, 88, 180, 85, 79, 33, 158, 71, 91, 52, 116, 97, 232, 241, + 51, 67, 118, 137, 252, 67, 145, 62, 112, 70, 168, 29, 52, 124, 239, 183, 75, 231, 52, 188, 74, 215, 174, 170, 44, + 234, 6, 120, 27, 53, 157, 8, 62, 159, 31, 87, 119, 255, 27, 38, 27, 174, 249, 175, 7, 169, 24, 255, 255, 191, 65, + 0, 66, 14, 43, 73, 24, 167, 154, 86, 83, 115, 126, 11, 192, 76, 167, 177, 234, 10, 96, 173, 31, 215, 149, 177, + 124, 239, 74, 45, 84, 210, 35, 235, 103, 11, 194, 10, 30, 27, 204, 11, 22, 80, 37, 185, 70, 9, 67, 117, 85, 112, + 27, 84, 215, 149, 179, 238, 91, 96, 170, 69, 123, 196, 19, 181, 88, 27, 173, 184, 180, 41, 48, 178, 89, 246, 76, + 124, 47, 240, 14, 192, 62, 137, 51, 10, 221, 218, 33, 71, 208, 21, 158, 71, 0, 27, 172, 255, 159, 128, 191, 27, + 174, 237, 26, 188, 48, 251, 152, 159, 67, 10, 115, 6, 65, 30, 27, 102, 81, 250, 237, 180, 136, 83, 244, 69, 110, + 94, 139, 113, 5, 73, 115, 192, 113, 41, 203, 170, 250, 81, 226, 255, 255, 27, 110, 63, 0, 249, 123, 79, 48, 170, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1761, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18285933075180701374" + }, + "fields": [] + }, + "cborHex": "d8669f1bfdc4af3fb4b646be80ff", + "cborBytes": [216, 102, 159, 27, 253, 196, 175, 63, 180, 182, 70, 190, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1762, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12270956504695980542" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9639567307716098237" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d8fea5" + }, + { + "_tag": "ByteArray", + "bytearray": "a7b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11429623397504944805" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1717979654360358409" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e1db72a3e114d456da538e" + }, + { + "_tag": "ByteArray", + "bytearray": "c2b9f76563" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15070737956339629180" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62bdd2be0723c81d" + }, + { + "_tag": "ByteArray", + "bytearray": "c499947e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13179526032044901323" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4216477317529172508" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2870519150919787883" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "59bfc16b81deb2dd7cf1a3" + }, + { + "_tag": "ByteArray", + "bytearray": "7ba60486" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8023f9d639079e560d2099" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16361678402208926283" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15724986452779679901" + } + }, + { + "_tag": "ByteArray", + "bytearray": "38a23f0641c68e4d05ba" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11825450182305127766" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12859664163265937741" + } + } + ] + } + ] + }, + "cborHex": "d8669f1baa4b31ed3cac41fe9f1b85c69f64cce2f8bd9f9f43d8fea542a7b61b9e9e2dec5cc68aa51b17d77d64b57f5e09ff9f4be1db72a3e114d456da538e45c2b9f765631bd1260452b69ebc7c4862bdd2be0723c81d44c499947eff1bb6e71519180cc3cbff1b3a83efc7cad17a1cd8669f1b27d621f58787a56b9f4b59bfc16b81deb2dd7cf1a3447ba604869f4b8023f9d639079e560d20991be3105bd1a4d80a4bff9f1bda3a5fdd3fc3409d4a38a23f0641c68e4d05ba1ba41c704971601d56ff1bb276b46c4e49814dffffffff", + "cborBytes": [ + 216, 102, 159, 27, 170, 75, 49, 237, 60, 172, 65, 254, 159, 27, 133, 198, 159, 100, 204, 226, 248, 189, 159, 159, + 67, 216, 254, 165, 66, 167, 182, 27, 158, 158, 45, 236, 92, 198, 138, 165, 27, 23, 215, 125, 100, 181, 127, 94, 9, + 255, 159, 75, 225, 219, 114, 163, 225, 20, 212, 86, 218, 83, 142, 69, 194, 185, 247, 101, 99, 27, 209, 38, 4, 82, + 182, 158, 188, 124, 72, 98, 189, 210, 190, 7, 35, 200, 29, 68, 196, 153, 148, 126, 255, 27, 182, 231, 21, 25, 24, + 12, 195, 203, 255, 27, 58, 131, 239, 199, 202, 209, 122, 28, 216, 102, 159, 27, 39, 214, 33, 245, 135, 135, 165, + 107, 159, 75, 89, 191, 193, 107, 129, 222, 178, 221, 124, 241, 163, 68, 123, 166, 4, 134, 159, 75, 128, 35, 249, + 214, 57, 7, 158, 86, 13, 32, 153, 27, 227, 16, 91, 209, 164, 216, 10, 75, 255, 159, 27, 218, 58, 95, 221, 63, 195, + 64, 157, 74, 56, 162, 63, 6, 65, 198, 142, 77, 5, 186, 27, 164, 28, 112, 73, 113, 96, 29, 86, 255, 27, 178, 118, + 180, 108, 78, 73, 129, 77, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1763, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7484570622420092227" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13170257438864198237" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b67de89537dac85439f1bb6c6275c93f24a5dbf1bfffffffffffffff61bffffffffffffffedffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 103, 222, 137, 83, 125, 172, 133, 67, 159, 27, 182, 198, 39, 92, 147, 242, 74, 93, 191, 27, + 255, 255, 255, 255, 255, 255, 255, 246, 27, 255, 255, 255, 255, 255, 255, 255, 237, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1764, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5522850147471370122" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17926996490538293445" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8251543647998828894" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2297646404327168184" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13386464530403113852" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12368053402314084927" + } + }, + { + "_tag": "ByteArray", + "bytearray": "506bfe5e21" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12508039124807712549" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bddc9149" + }, + { + "_tag": "ByteArray", + "bytearray": "ab497efba9aa3a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15837358269419288989" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9cc534f44290b02ee8" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "728be2925c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6802750986644869494" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9ec4eb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3684213528048661949" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3004419413658204253" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fbdd0b12dc518" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3577784940856374257" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17042161215258109101" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3688541832758317144" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14114925891430417843" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5526653372312990781" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dabed47529d576369c6bc8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15669329033390495554" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a6de707e156fd" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b4ca51af2a3bea78a9f1bf8c97c53ac3598c59fd8669f1b72835f3ab399e15e9f1b1fe2e13b355fd8b81bb9c64690dd0b3b7cffff1baba4270a67fe123f45506bfe5e21d8669f1bad957b5046d9ff259f44bddc914947ab497efba9aa3a1bdbc9996fa554f99d499cc534f44290b02ee8ffffff9f45728be2925cd8669f1b5e6839fad667d1769f439ec4eb1b3320f4af180775bdffffffbf1b29b1d789e362785d476fbdd0b12dc5181b31a6d872a27c73f11bec81eb55006624ad1b3330554110ba50581bc3e24a506dac85b31b4cb29df5ed6e343d4bdabed47529d576369c6bc81bd974a3bc77f49742474a6de707e156fdffffff", + "cborBytes": [ + 216, 102, 159, 27, 76, 165, 26, 242, 163, 190, 167, 138, 159, 27, 248, 201, 124, 83, 172, 53, 152, 197, 159, 216, + 102, 159, 27, 114, 131, 95, 58, 179, 153, 225, 94, 159, 27, 31, 226, 225, 59, 53, 95, 216, 184, 27, 185, 198, 70, + 144, 221, 11, 59, 124, 255, 255, 27, 171, 164, 39, 10, 103, 254, 18, 63, 69, 80, 107, 254, 94, 33, 216, 102, 159, + 27, 173, 149, 123, 80, 70, 217, 255, 37, 159, 68, 189, 220, 145, 73, 71, 171, 73, 126, 251, 169, 170, 58, 27, 219, + 201, 153, 111, 165, 84, 249, 157, 73, 156, 197, 52, 244, 66, 144, 176, 46, 232, 255, 255, 255, 159, 69, 114, 139, + 226, 146, 92, 216, 102, 159, 27, 94, 104, 57, 250, 214, 103, 209, 118, 159, 67, 158, 196, 235, 27, 51, 32, 244, + 175, 24, 7, 117, 189, 255, 255, 255, 191, 27, 41, 177, 215, 137, 227, 98, 120, 93, 71, 111, 189, 208, 177, 45, + 197, 24, 27, 49, 166, 216, 114, 162, 124, 115, 241, 27, 236, 129, 235, 85, 0, 102, 36, 173, 27, 51, 48, 85, 65, + 16, 186, 80, 88, 27, 195, 226, 74, 80, 109, 172, 133, 179, 27, 76, 178, 157, 245, 237, 110, 52, 61, 75, 218, 190, + 212, 117, 41, 213, 118, 54, 156, 107, 200, 27, 217, 116, 163, 188, 119, 244, 151, 66, 71, 74, 109, 231, 7, 225, + 86, 253, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1765, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11019445318038485130" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9422705603706313738" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d8612f82ee47eaa0efe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb58b1a2c34ba9e3" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b98ecef221b86788a9f1b82c42cd2abff5c0abf4a1d8612f82ee47eaa0efe48fb58b1a2c34ba9e3ffffff", + "cborBytes": [ + 216, 102, 159, 27, 152, 236, 239, 34, 27, 134, 120, 138, 159, 27, 130, 196, 44, 210, 171, 255, 92, 10, 191, 74, + 29, 134, 18, 248, 46, 228, 126, 170, 14, 254, 72, 251, 88, 177, 162, 195, 75, 169, 227, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1766, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16273523075642060964" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2790761548427706300" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13621883725516763663" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3954979364163944901" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "726419115f88ba26fb97a0e3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5687304422870962237" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64037c4e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5841766227527590605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6917127867419927825" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13957402929675518261" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9562603283817499655" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1964951793824133260" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14927333370952236536" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4695244007718235742" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c6463904" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6714540484405846797" + } + }, + { + "_tag": "ByteArray", + "bytearray": "61b5c545" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "390677247541923375" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "211987079487297929" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6219294766082605397" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8a" + } + ] + }, + "cborHex": "d8669f1be1d72b0437c470a49fbf1b26bac6d79ada3fbc1bbd0aa7139719f20f1b36e2e8c6fefe01c54c726419115f88ba26fb97a0e31b4eed5d3d6ebb503d4464037c4e1b51121f6ed4a7e2cd1b5ffe93259b8525111bc1b2a803da4e41351b84b5310593ed0c07ff9f1b1b44e93ee7a7708cff9fa09f1bcf288a9ccb713df81b4128db8c6dd3ae5e44c6463904ff9f1b5d2ed6fed2fd630d4461b5c5451b056bf6e301904e2f1b02f1212029d01989ff1b564f5fa375ccc155ff418affff", + "cborBytes": [ + 216, 102, 159, 27, 225, 215, 43, 4, 55, 196, 112, 164, 159, 191, 27, 38, 186, 198, 215, 154, 218, 63, 188, 27, + 189, 10, 167, 19, 151, 25, 242, 15, 27, 54, 226, 232, 198, 254, 254, 1, 197, 76, 114, 100, 25, 17, 95, 136, 186, + 38, 251, 151, 160, 227, 27, 78, 237, 93, 61, 110, 187, 80, 61, 68, 100, 3, 124, 78, 27, 81, 18, 31, 110, 212, 167, + 226, 205, 27, 95, 254, 147, 37, 155, 133, 37, 17, 27, 193, 178, 168, 3, 218, 78, 65, 53, 27, 132, 181, 49, 5, 147, + 237, 12, 7, 255, 159, 27, 27, 68, 233, 62, 231, 167, 112, 140, 255, 159, 160, 159, 27, 207, 40, 138, 156, 203, + 113, 61, 248, 27, 65, 40, 219, 140, 109, 211, 174, 94, 68, 198, 70, 57, 4, 255, 159, 27, 93, 46, 214, 254, 210, + 253, 99, 13, 68, 97, 181, 197, 69, 27, 5, 107, 246, 227, 1, 144, 78, 47, 27, 2, 241, 33, 32, 41, 208, 25, 137, + 255, 27, 86, 79, 95, 163, 117, 204, 193, 85, 255, 65, 138, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1767, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "513a10c0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13004772600411800466" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f32ce482da16529b" + }, + { + "_tag": "ByteArray", + "bytearray": "f9" + } + ] + }, + "cborHex": "d905009f44513a10c01bb47a3bc72047439248f32ce482da16529b41f9ff", + "cborBytes": [ + 217, 5, 0, 159, 68, 81, 58, 16, 192, 27, 180, 122, 59, 199, 32, 71, 67, 146, 72, 243, 44, 228, 130, 218, 22, 82, + 155, 65, 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1768, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14089054614484993420" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c4840919f146916bf3aa7f1b" + }, + { + "_tag": "ByteArray", + "bytearray": "6aa57c0333541df5c94a" + }, + { + "_tag": "ByteArray", + "bytearray": "0aee" + } + ] + }, + "cborHex": "d8669f1bc38660865d74c58c9f4cc4840919f146916bf3aa7f1b4a6aa57c0333541df5c94a420aeeffff", + "cborBytes": [ + 216, 102, 159, 27, 195, 134, 96, 134, 93, 116, 197, 140, 159, 76, 196, 132, 9, 25, 241, 70, 145, 107, 243, 170, + 127, 27, 74, 106, 165, 124, 3, 51, 84, 29, 245, 201, 74, 66, 10, 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1769, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10689101746592856816" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6194287119995094822" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15281068903567535536" + } + } + ] + }, + "cborHex": "d8669f1b94575167bdacbaf09f1b55f687512015c7261bd411433489692db0ffff", + "cborBytes": [ + 216, 102, 159, 27, 148, 87, 81, 103, 189, 172, 186, 240, 159, 27, 85, 246, 135, 81, 32, 21, 199, 38, 27, 212, 17, + 67, 52, 137, 105, 45, 176, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1770, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14724380213469392142" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e7fd26" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5043180947383414271" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2022070909000461696" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9268791512074672004" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7838dd8b08930b51de05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15588100246395902636" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c833406bc7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16633492430876672253" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12225068148151470275" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db6e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5bf9ec9b8f6e" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1021412006989928465" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a52f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4437126641350640132" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16027050817200876081" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6792544895177484993" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b61f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15937187243260042636" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15110343714730414560" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18062566975261301894" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1411397955506182087" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12929296365148293918" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2220930390844026198" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18371181631607186834" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5620817383838261834" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18136623189106162008" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12130376228359558582" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b357827087145d8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17789933668656433061" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4de0aae7" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f01cf184c8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17640402118115184502" + } + }, + { + "_tag": "ByteArray", + "bytearray": "58d2729bb009f60d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11755527098603448805" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bcc5781ca81a22d0e9f43e7fd26809fbf1b45fcfa5a0ace6dff1b1c0fd6c7419fad80ffbf1b80a15cc5a65dd7844a7838dd8b08930b51de051bd8540e95b59b5aac45c833406bc71be6d6093ce48d80fd1ba9a82ab5a582c8c342db6e465bf9ec9b8f6effffbf1b0e2cc8cf05f4181142a52f1b3d93d72be12082041bde6b85cda4646a311b5e43f797fdf26ac142b61f1bdd2c435be166dd8c1bd1b2b98cee9011e0ffd8669f1bfaab20f6e426dc869fbf1b13964af66ea897c71bb36e168ab069cb1e1b1ed2546c6920ad561bfef38c5bf820a5921b4e0127a15705224a1bfbb23ab2d3c8f9581ba857c0e90336d5b6485b357827087145d81bf6e28a6aa20747a5444de0aae7ff45f01cf184c81bf4cf4c43794dcf764858d2729bb009f60d9f1ba324059cdbbca9e5ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 204, 87, 129, 202, 129, 162, 45, 14, 159, 67, 231, 253, 38, 128, 159, 191, 27, 69, 252, 250, + 90, 10, 206, 109, 255, 27, 28, 15, 214, 199, 65, 159, 173, 128, 255, 191, 27, 128, 161, 92, 197, 166, 93, 215, + 132, 74, 120, 56, 221, 139, 8, 147, 11, 81, 222, 5, 27, 216, 84, 14, 149, 181, 155, 90, 172, 69, 200, 51, 64, 107, + 199, 27, 230, 214, 9, 60, 228, 141, 128, 253, 27, 169, 168, 42, 181, 165, 130, 200, 195, 66, 219, 110, 70, 91, + 249, 236, 155, 143, 110, 255, 255, 191, 27, 14, 44, 200, 207, 5, 244, 24, 17, 66, 165, 47, 27, 61, 147, 215, 43, + 225, 32, 130, 4, 27, 222, 107, 133, 205, 164, 100, 106, 49, 27, 94, 67, 247, 151, 253, 242, 106, 193, 66, 182, 31, + 27, 221, 44, 67, 91, 225, 102, 221, 140, 27, 209, 178, 185, 140, 238, 144, 17, 224, 255, 216, 102, 159, 27, 250, + 171, 32, 246, 228, 38, 220, 134, 159, 191, 27, 19, 150, 74, 246, 110, 168, 151, 199, 27, 179, 110, 22, 138, 176, + 105, 203, 30, 27, 30, 210, 84, 108, 105, 32, 173, 86, 27, 254, 243, 140, 91, 248, 32, 165, 146, 27, 78, 1, 39, + 161, 87, 5, 34, 74, 27, 251, 178, 58, 178, 211, 200, 249, 88, 27, 168, 87, 192, 233, 3, 54, 213, 182, 72, 91, 53, + 120, 39, 8, 113, 69, 216, 27, 246, 226, 138, 106, 162, 7, 71, 165, 68, 77, 224, 170, 231, 255, 69, 240, 28, 241, + 132, 200, 27, 244, 207, 76, 67, 121, 77, 207, 118, 72, 88, 210, 114, 155, 176, 9, 246, 13, 159, 27, 163, 36, 5, + 156, 219, 188, 169, 229, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1771, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3409472354058354090" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9553607116896743317" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7048" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3263418363831003409" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c5f16" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4148983769828132168" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8406f45155481819b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6953697931402010562" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "174ee64ce8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14449101790251642128" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14463651714418403751" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4950572713614984302" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15273992640855067752" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "647307394063156038" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12701809252210500319" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14469381613712199082" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "56885033" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3491940105622769345" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5983849255190834284" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12953820439979724798" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f28" + }, + { + "_tag": "ByteArray", + "bytearray": "b38e6ea5e6ffaf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9934210822796438877" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "27b44bd6807c9c9000ea64" + } + ] + } + ] + }, + "cborHex": "d8669f1b2f50e10ab729bdaa9fd8669f1b84953b0e3e462f959f427048bf1b2d49fdb629a22911434c5f161b399426c1a377854849c8406f45155481819b1b60807f6d2495dfc245174ee64ce81bc88585860b68ed1041841bc8b9369a40e0e9a71b44b3f7a75dc3446e1bd3f81f61bc18cc681b08fbb2a5339e4346ffd8669f1bb045e437c2c6e2df80ffffff1bc8cd91ea64e24daa9f44568850331b3075dd066495cec1d8669f1b530ae7319d22ac6c9f1bb3c5370ed12f8ffe426f2847b38e6ea5e6ffaf1b89dd681c109f6d5d41c1ffff4b27b44bd6807c9c9000ea64ffffff", + "cborBytes": [ + 216, 102, 159, 27, 47, 80, 225, 10, 183, 41, 189, 170, 159, 216, 102, 159, 27, 132, 149, 59, 14, 62, 70, 47, 149, + 159, 66, 112, 72, 191, 27, 45, 73, 253, 182, 41, 162, 41, 17, 67, 76, 95, 22, 27, 57, 148, 38, 193, 163, 119, 133, + 72, 73, 200, 64, 111, 69, 21, 84, 129, 129, 155, 27, 96, 128, 127, 109, 36, 149, 223, 194, 69, 23, 78, 230, 76, + 232, 27, 200, 133, 133, 134, 11, 104, 237, 16, 65, 132, 27, 200, 185, 54, 154, 64, 224, 233, 167, 27, 68, 179, + 247, 167, 93, 195, 68, 110, 27, 211, 248, 31, 97, 188, 24, 204, 104, 27, 8, 251, 178, 165, 51, 158, 67, 70, 255, + 216, 102, 159, 27, 176, 69, 228, 55, 194, 198, 226, 223, 128, 255, 255, 255, 27, 200, 205, 145, 234, 100, 226, 77, + 170, 159, 68, 86, 136, 80, 51, 27, 48, 117, 221, 6, 100, 149, 206, 193, 216, 102, 159, 27, 83, 10, 231, 49, 157, + 34, 172, 108, 159, 27, 179, 197, 55, 14, 209, 47, 143, 254, 66, 111, 40, 71, 179, 142, 110, 165, 230, 255, 175, + 27, 137, 221, 104, 28, 16, 159, 109, 93, 65, 193, 255, 255, 75, 39, 180, 75, 214, 128, 124, 156, 144, 0, 234, 100, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1772, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13359399579303942209" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1755777559783034658" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5419513788209101060" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56d34056209d17f539" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55fdf13f4a88434aa53412" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "590e8d3b5d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3785282407384068457" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2a322c347bfddf6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a421f38ac0c68af0af4" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4354f550d8d05d77a1e6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1008013675950012557" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4006991087894765941" + } + }, + { + "_tag": "ByteArray", + "bytearray": "167007801e8661" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17328228113431084925" + } + }, + { + "_tag": "ByteArray", + "bytearray": "84f9768274a44e70f07788" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21682180427d9d9d80" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12156242798272141726" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f8fb5e438cb86f68938" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17022484092551819926" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a42967e4d210b0a72e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1816266127744957287" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bebd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8517195528197614623" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd508da4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14656594497577189871" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bb9661f22e0ea18419f9fbf1b185dc6635b784f221b4b35fb139988f9044956d34056209d17f5394b55fdf13f4a88434aa5341245590e8d3b5d1b3488064b52a9b16948d2a322c347bfddf64a1a421f38ac0c68af0af4ff9f4a4354f550d8d05d77a1e6ff1b0dfd2f18fbbc788d1b379bb12a1c1fa17547167007801e8661ff1bf07a3ba907ff3f7d4b84f9768274a44e70f07788bf4921682180427d9d9d801ba8b3a66b2269599e4a3f8fb5e438cb86f689381bec3c0317db49f29649a42967e4d210b0a72e1b1934ac6b91cffb6742bebd1b76332834f4c3ac1f44cd508da41bcb66af0aa50881efffffff", + "cborBytes": [ + 216, 102, 159, 27, 185, 102, 31, 34, 224, 234, 24, 65, 159, 159, 191, 27, 24, 93, 198, 99, 91, 120, 79, 34, 27, + 75, 53, 251, 19, 153, 136, 249, 4, 73, 86, 211, 64, 86, 32, 157, 23, 245, 57, 75, 85, 253, 241, 63, 74, 136, 67, + 74, 165, 52, 18, 69, 89, 14, 141, 59, 93, 27, 52, 136, 6, 75, 82, 169, 177, 105, 72, 210, 163, 34, 195, 71, 191, + 221, 246, 74, 26, 66, 31, 56, 172, 12, 104, 175, 10, 244, 255, 159, 74, 67, 84, 245, 80, 216, 208, 93, 119, 161, + 230, 255, 27, 13, 253, 47, 24, 251, 188, 120, 141, 27, 55, 155, 177, 42, 28, 31, 161, 117, 71, 22, 112, 7, 128, + 30, 134, 97, 255, 27, 240, 122, 59, 169, 7, 255, 63, 125, 75, 132, 249, 118, 130, 116, 164, 78, 112, 240, 119, + 136, 191, 73, 33, 104, 33, 128, 66, 125, 157, 157, 128, 27, 168, 179, 166, 107, 34, 105, 89, 158, 74, 63, 143, + 181, 228, 56, 203, 134, 246, 137, 56, 27, 236, 60, 3, 23, 219, 73, 242, 150, 73, 164, 41, 103, 228, 210, 16, 176, + 167, 46, 27, 25, 52, 172, 107, 145, 207, 251, 103, 66, 190, 189, 27, 118, 51, 40, 52, 244, 195, 172, 31, 68, 205, + 80, 141, 164, 27, 203, 102, 175, 10, 165, 8, 129, 239, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1773, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3c1104" + } + ] + }, + "cborHex": "d87d9f433c1104ff", + "cborBytes": [216, 125, 159, 67, 60, 17, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1774, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16264157467432649309" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10297650512545651525" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3410087172380211997" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5ff4cf034ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10031216823437129103" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3841733265111615389" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d599b93dc38e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9015654612428277601" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "04" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12425925771645828759" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5627092904809141903" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4664687892545422420" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17006755334241155381" + } + }, + { + "_tag": "ByteArray", + "bytearray": "940c5c04674522ef" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "105e961fa22ecffe105d8f04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a5d5aa1895433c6f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4256c194ea1a7300ad75" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c2272f559" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "457ba72c219bfc7ee690bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5999385829262151554" + } + } + } + ] + } + ] + }, + "cborHex": "d905009f9f1be1b5e50ba157025dd8669f1b8ee89a94f5671b459f1b2f53103742d6bb1d46f5ff4cf034ca1b8b360a8da1e4758f1b3550940cdcc7879d46d599b93dc38effff1b7d1e0a1a5f664761ffa041049fd8669f1bac71c1a768523e9780ff809f1b4e17732eed45168fffd8669f1b40bc4cec773c44549f1bec0421deef6c793548940c5c04674522efffffffbf4c105e961fa22ecffe105d8f04496a5d5aa1895433c6f94a4256c194ea1a7300ad75454c2272f5594b457ba72c219bfc7ee690bf1b534219a027aecf82ffff", + "cborBytes": [ + 217, 5, 0, 159, 159, 27, 225, 181, 229, 11, 161, 87, 2, 93, 216, 102, 159, 27, 142, 232, 154, 148, 245, 103, 27, + 69, 159, 27, 47, 83, 16, 55, 66, 214, 187, 29, 70, 245, 255, 76, 240, 52, 202, 27, 139, 54, 10, 141, 161, 228, + 117, 143, 27, 53, 80, 148, 12, 220, 199, 135, 157, 70, 213, 153, 185, 61, 195, 142, 255, 255, 27, 125, 30, 10, 26, + 95, 102, 71, 97, 255, 160, 65, 4, 159, 216, 102, 159, 27, 172, 113, 193, 167, 104, 82, 62, 151, 128, 255, 128, + 159, 27, 78, 23, 115, 46, 237, 69, 22, 143, 255, 216, 102, 159, 27, 64, 188, 76, 236, 119, 60, 68, 84, 159, 27, + 236, 4, 33, 222, 239, 108, 121, 53, 72, 148, 12, 92, 4, 103, 69, 34, 239, 255, 255, 255, 191, 76, 16, 94, 150, 31, + 162, 46, 207, 254, 16, 93, 143, 4, 73, 106, 93, 90, 161, 137, 84, 51, 198, 249, 74, 66, 86, 193, 148, 234, 26, + 115, 0, 173, 117, 69, 76, 34, 114, 245, 89, 75, 69, 123, 167, 44, 33, 155, 252, 126, 230, 144, 191, 27, 83, 66, + 25, 160, 39, 174, 207, 130, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1775, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "582548579834215086" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14523835539011889285" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a170534c20a47d0c213553" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15356277457911762830" + } + } + ] + }, + "cborHex": "d8669f1b0815a0d8cd6d3aae9f9f9f1bc98f0778deff68854ba170534c20a47d0c213553ffff1bd51c74fca72b4f8effff", + "cborBytes": [ + 216, 102, 159, 27, 8, 21, 160, 216, 205, 109, 58, 174, 159, 159, 159, 27, 201, 143, 7, 120, 222, 255, 104, 133, + 75, 161, 112, 83, 76, 32, 164, 125, 12, 33, 53, 83, 255, 255, 27, 213, 28, 116, 252, 167, 43, 79, 142, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1776, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "243469091189022856" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9358048807616658557" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14193418548375121835" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5689081428656157073" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6320c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88b4b42cec555f6e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8899028160870448342" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4212037157493874585" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a80095b7121fd8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10595099610197493151" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9011246262095963499" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13760549280351929538" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb1a02015670faa1ae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14153819355798917459" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e095431d050b21ed" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15960490386532944437" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12575512715033850527" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1b0fb8ea8d50b2dd4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80a80e8d526b4181fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d96500" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a30a02ff61f2b01eb33e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff45aee9e6a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12637218097094919105" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2667345679229220119" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16692750982725846311" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1946827885603873231" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6b5e91440ca3" + }, + { + "_tag": "ByteArray", + "bytearray": "f40f0b4aecafe935c3eb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9676557131908637043" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b48da4246cca2d43b" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d905039fbf1b0360f9d9361be0881b81de77cf38c23c7d1bc4f926f84456efab1b4ef3ad6ad5527191ffbf436320c54888b4b42cec555f6eff1b7b7fb2f696e17cd6bf1b3a74297a792b1f9947a80095b7121fd81b93095af5d1b3859f1b7d0e60bb53cbe56b1bbef74aa9f9a244c249eb1a02015670faa1ae1bc46c77b6c571515348e095431d050b21ed1bdd7f0d71ba554a351bae85322fb800329fff9fbf49c1b0fb8ea8d50b2dd44980a80e8d526b4181fe43d965004aa30a02ff61f2b01eb33e46ff45aee9e6a41baf606ae78a7b03c1ff1b250450c357a175171be7a89093a96d45279f1b1b0485a5b03e61cf466b5e91440ca34af40f0b4aecafe935c3eb1b864a0971602fe173490b48da4246cca2d43bff80ffff", + "cborBytes": [ + 217, 5, 3, 159, 191, 27, 3, 96, 249, 217, 54, 27, 224, 136, 27, 129, 222, 119, 207, 56, 194, 60, 125, 27, 196, + 249, 38, 248, 68, 86, 239, 171, 27, 78, 243, 173, 106, 213, 82, 113, 145, 255, 191, 67, 99, 32, 197, 72, 136, 180, + 180, 44, 236, 85, 95, 110, 255, 27, 123, 127, 178, 246, 150, 225, 124, 214, 191, 27, 58, 116, 41, 122, 121, 43, + 31, 153, 71, 168, 0, 149, 183, 18, 31, 216, 27, 147, 9, 90, 245, 209, 179, 133, 159, 27, 125, 14, 96, 187, 83, + 203, 229, 107, 27, 190, 247, 74, 169, 249, 162, 68, 194, 73, 235, 26, 2, 1, 86, 112, 250, 161, 174, 27, 196, 108, + 119, 182, 197, 113, 81, 83, 72, 224, 149, 67, 29, 5, 11, 33, 237, 27, 221, 127, 13, 113, 186, 85, 74, 53, 27, 174, + 133, 50, 47, 184, 0, 50, 159, 255, 159, 191, 73, 193, 176, 251, 142, 168, 213, 11, 45, 212, 73, 128, 168, 14, 141, + 82, 107, 65, 129, 254, 67, 217, 101, 0, 74, 163, 10, 2, 255, 97, 242, 176, 30, 179, 62, 70, 255, 69, 174, 233, + 230, 164, 27, 175, 96, 106, 231, 138, 123, 3, 193, 255, 27, 37, 4, 80, 195, 87, 161, 117, 23, 27, 231, 168, 144, + 147, 169, 109, 69, 39, 159, 27, 27, 4, 133, 165, 176, 62, 97, 207, 70, 107, 94, 145, 68, 12, 163, 74, 244, 15, 11, + 74, 236, 175, 233, 53, 195, 235, 27, 134, 74, 9, 113, 96, 47, 225, 115, 73, 11, 72, 218, 66, 70, 204, 162, 212, + 59, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1777, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "992594625731339435" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4713088130081581888" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11825479453589168545" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8cbf15b431ed56c996" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10853803621085885915" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b807d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14989067194576969184" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3476838430355956244" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20877222711483406" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0b18b8f242aa5" + }, + { + "_tag": "ByteArray", + "bytearray": "7f8eb311" + }, + { + "_tag": "ByteArray", + "bytearray": "3ef1a2" + }, + { + "_tag": "ByteArray", + "bytearray": "18d2e7086f5354a2f399da" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cd7ca4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6174549669089066021" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f5bef6" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8469073943632859996" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10753797861462993975" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6413b2d8be9f4611db" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9ce8ff73df" + } + ] + } + ] + }, + "cborHex": "d87b9fd8669f1b0dc6678d98ada4ab80ff9f1b416840aeec9f6b401ba41c8ae8b1dce1a19f498cbf15b431ed56c9961b96a074e330ac35db415fff43b807d61bd003dd32af389de0ffd8669f1b304036219ecb22149fd8669f1b004a2bb9339d5c0e9f47c0b18b8f242aa5447f8eb311433ef1a24b18d2e7086f5354a2f399daffff43cd7ca4d8669f1b55b06835ba0f3c259f43f5bef6ffff9f1b758831e172c0d35c1b953d2a2dcedb6c37496413b2d8be9f4611dbff459ce8ff73dfffffff", + "cborBytes": [ + 216, 123, 159, 216, 102, 159, 27, 13, 198, 103, 141, 152, 173, 164, 171, 128, 255, 159, 27, 65, 104, 64, 174, 236, + 159, 107, 64, 27, 164, 28, 138, 232, 177, 220, 225, 161, 159, 73, 140, 191, 21, 180, 49, 237, 86, 201, 150, 27, + 150, 160, 116, 227, 48, 172, 53, 219, 65, 95, 255, 67, 184, 7, 214, 27, 208, 3, 221, 50, 175, 56, 157, 224, 255, + 216, 102, 159, 27, 48, 64, 54, 33, 158, 203, 34, 20, 159, 216, 102, 159, 27, 0, 74, 43, 185, 51, 157, 92, 14, 159, + 71, 192, 177, 139, 143, 36, 42, 165, 68, 127, 142, 179, 17, 67, 62, 241, 162, 75, 24, 210, 231, 8, 111, 83, 84, + 162, 243, 153, 218, 255, 255, 67, 205, 124, 164, 216, 102, 159, 27, 85, 176, 104, 53, 186, 15, 60, 37, 159, 67, + 245, 190, 246, 255, 255, 159, 27, 117, 136, 49, 225, 114, 192, 211, 92, 27, 149, 61, 42, 45, 206, 219, 108, 55, + 73, 100, 19, 178, 216, 190, 159, 70, 17, 219, 255, 69, 156, 232, 255, 115, 223, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1778, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9728863443158532499" + }, + "fields": [] + }, + "cborHex": "d8669f1b8703ddc17dbf819380ff", + "cborBytes": [216, 102, 159, 27, 135, 3, 221, 193, 125, 191, 129, 147, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1779, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8810640654159419294" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17931136747971661129" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5252550259966738391" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4586355030546043245" + } + }, + { + "_tag": "ByteArray", + "bytearray": "36877e" + }, + { + "_tag": "ByteArray", + "bytearray": "54e9c2d73c37feecc0cd6b92" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9672163716203853070" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b409" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "498298878726920144" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "971ac6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4369525820966726773" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5079d0d516dd26cddd66eb22" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10610098361730620220" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2511952594448757307" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14076687908786884392" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13045171440437673329" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15380999888357586458" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6104284853669019569" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15856994345471616659" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11674006904427708450" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3841291903112066951" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6264298582689879546" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11141031563762886849" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d161e81812897eb9639941dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14456301004770563747" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15318920562725295122" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8312465243294805955" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5180074628843816885" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14889693966510084282" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2526337864321677148" + } + }, + { + "_tag": "ByteArray", + "bytearray": "564226a02afa25c121f9" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15351913711310742585" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1a2b477c6940101a9e3f8c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17606169143373598527" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6415017830083539220" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17575960086036841328" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c50afa2e" + }, + { + "_tag": "ByteArray", + "bytearray": "38fee1e020deed76758136ea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12407268908149382904" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "617493972236849508" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "654853284489910344" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "700c6e1c5146c5e9d174a30c" + } + ] + }, + "cborHex": "d8669f1b7a45aefe82c9979e9fd8669f1bf8d831de79cdcd499f9f1b48e4cea1da33ffd71b3fa60199c985d16d4336877e4c54e9c2d73c37feecc0cd6b92ff9f1b863a6da791c0b50effffff9f8042b409bf1b06ea5030aa7e57d043971ac61b3ca3ac955b9e6c754c5079d0d516dd26cddd66eb221b933ea43ecae85b3c1b22dc3f9364bd323b1bc35a711251474f281bb509c24f0d5bbd711bd57449e80be0761a1b54b6c6bb86bd3fb11bdc0f5c57df36a6931ba202676d93df0022ffbf1b354f02a2439437871b56ef425f0c3695fa1b9a9ce52df58068c14cd161e81812897eb9639941dd1bc89f192bcb78d6a31bd497bd16b3ab1412ffd8669f1b735bcf18f25e2fc380ffffd8669f1b47e3526e023fc7b59f1bcea2d1c6081c50ba1b230f5ae70983375c4a564226a02afa25c121f9ffffd8669f1bd50cf42eb92024399f9f4b1a2b477c6940101a9e3f8cff1bf455ad8dee3a0f3fd8669f1b5906b8ba6ded31149f1bf3ea5a93aaab837044c50afa2e4c38fee1e020deed76758136ea1bac2f7955defe1ef8ffff9f1b0891c77f021f51641b09168197ba04d848ffffff4c700c6e1c5146c5e9d174a30cffff", + "cborBytes": [ + 216, 102, 159, 27, 122, 69, 174, 254, 130, 201, 151, 158, 159, 216, 102, 159, 27, 248, 216, 49, 222, 121, 205, + 205, 73, 159, 159, 27, 72, 228, 206, 161, 218, 51, 255, 215, 27, 63, 166, 1, 153, 201, 133, 209, 109, 67, 54, 135, + 126, 76, 84, 233, 194, 215, 60, 55, 254, 236, 192, 205, 107, 146, 255, 159, 27, 134, 58, 109, 167, 145, 192, 181, + 14, 255, 255, 255, 159, 128, 66, 180, 9, 191, 27, 6, 234, 80, 48, 170, 126, 87, 208, 67, 151, 26, 198, 27, 60, + 163, 172, 149, 91, 158, 108, 117, 76, 80, 121, 208, 213, 22, 221, 38, 205, 221, 102, 235, 34, 27, 147, 62, 164, + 62, 202, 232, 91, 60, 27, 34, 220, 63, 147, 100, 189, 50, 59, 27, 195, 90, 113, 18, 81, 71, 79, 40, 27, 181, 9, + 194, 79, 13, 91, 189, 113, 27, 213, 116, 73, 232, 11, 224, 118, 26, 27, 84, 182, 198, 187, 134, 189, 63, 177, 27, + 220, 15, 92, 87, 223, 54, 166, 147, 27, 162, 2, 103, 109, 147, 223, 0, 34, 255, 191, 27, 53, 79, 2, 162, 67, 148, + 55, 135, 27, 86, 239, 66, 95, 12, 54, 149, 250, 27, 154, 156, 229, 45, 245, 128, 104, 193, 76, 209, 97, 232, 24, + 18, 137, 126, 185, 99, 153, 65, 221, 27, 200, 159, 25, 43, 203, 120, 214, 163, 27, 212, 151, 189, 22, 179, 171, + 20, 18, 255, 216, 102, 159, 27, 115, 91, 207, 24, 242, 94, 47, 195, 128, 255, 255, 216, 102, 159, 27, 71, 227, 82, + 110, 2, 63, 199, 181, 159, 27, 206, 162, 209, 198, 8, 28, 80, 186, 27, 35, 15, 90, 231, 9, 131, 55, 92, 74, 86, + 66, 38, 160, 42, 250, 37, 193, 33, 249, 255, 255, 216, 102, 159, 27, 213, 12, 244, 46, 185, 32, 36, 57, 159, 159, + 75, 26, 43, 71, 124, 105, 64, 16, 26, 158, 63, 140, 255, 27, 244, 85, 173, 141, 238, 58, 15, 63, 216, 102, 159, + 27, 89, 6, 184, 186, 109, 237, 49, 20, 159, 27, 243, 234, 90, 147, 170, 171, 131, 112, 68, 197, 10, 250, 46, 76, + 56, 254, 225, 224, 32, 222, 237, 118, 117, 129, 54, 234, 27, 172, 47, 121, 85, 222, 254, 30, 248, 255, 255, 159, + 27, 8, 145, 199, 127, 2, 31, 81, 100, 27, 9, 22, 129, 151, 186, 4, 216, 72, 255, 255, 255, 76, 112, 12, 110, 28, + 81, 70, 197, 233, 209, 116, 163, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1780, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16541627399163117712" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8977138747503156840" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dd6090d3cd68" + }, + { + "_tag": "ByteArray", + "bytearray": "fb03fd6526ab" + }, + { + "_tag": "ByteArray", + "bytearray": "450b7a300c29dae6" + }, + { + "_tag": "ByteArray", + "bytearray": "7c50d6b1f0cd" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12523857822016189130" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2704921597474290863" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12651945014800564876" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd9a9a6b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "221a73b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6437222598376168309" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac060924e2171cfce7d8abed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dd6" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9882160963945216360" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bb3f13" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2426032758013323794" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2494741706097008453" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12965248410195084243" + } + }, + { + "_tag": "ByteArray", + "bytearray": "baddf0519b7c386124a657" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f41725030810cc4dd21bb125" + }, + { + "_tag": "ByteArray", + "bytearray": "92e6281e4d5acf05578a" + }, + { + "_tag": "ByteArray", + "bytearray": "a6a10ea7db" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ee177155ce" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10079566113732174623" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3935979518576664252" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9212610697174857673" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15380973248617787203" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e6e8f6dbef72dc1b8da0d" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5917520d" + } + ] + }, + "cborHex": "d8669f1be58faa7a6dfc80909fd8669f1b7c953420c0521e689f9f46dd6090d3cd6846fb03fd6526ab48450b7a300c29dae6467c50d6b1f0cdffbf1badcdae55bac5b2ca1b2589cfdc92bcbcaf1baf94bcf544f6428c44fd9a9a6b44221a73b21b59559bd8ec541b754cac060924e2171cfce7d8abed422dd6ffd8669f1b89247d09ed2fb9689f43bb3f131b21aafff092d86a121b229f1a5d2e439f451bb3edd0bc7a6043d34bbaddf0519b7c386124a657ffff9f4cf41725030810cc4dd21bb1254a92e6281e4d5acf05578a45a6a10ea7dbffffff9f45ee177155ceff1b8be1cffa0312231fbf1b369f6884b7f99ebc1b7fd9c49e5b1237c91bd57431ad7fa62f434b2e6e8f6dbef72dc1b8da0dff445917520dffff", + "cborBytes": [ + 216, 102, 159, 27, 229, 143, 170, 122, 109, 252, 128, 144, 159, 216, 102, 159, 27, 124, 149, 52, 32, 192, 82, 30, + 104, 159, 159, 70, 221, 96, 144, 211, 205, 104, 70, 251, 3, 253, 101, 38, 171, 72, 69, 11, 122, 48, 12, 41, 218, + 230, 70, 124, 80, 214, 177, 240, 205, 255, 191, 27, 173, 205, 174, 85, 186, 197, 178, 202, 27, 37, 137, 207, 220, + 146, 188, 188, 175, 27, 175, 148, 188, 245, 68, 246, 66, 140, 68, 253, 154, 154, 107, 68, 34, 26, 115, 178, 27, + 89, 85, 155, 216, 236, 84, 27, 117, 76, 172, 6, 9, 36, 226, 23, 28, 252, 231, 216, 171, 237, 66, 45, 214, 255, + 216, 102, 159, 27, 137, 36, 125, 9, 237, 47, 185, 104, 159, 67, 187, 63, 19, 27, 33, 170, 255, 240, 146, 216, 106, + 18, 27, 34, 159, 26, 93, 46, 67, 159, 69, 27, 179, 237, 208, 188, 122, 96, 67, 211, 75, 186, 221, 240, 81, 155, + 124, 56, 97, 36, 166, 87, 255, 255, 159, 76, 244, 23, 37, 3, 8, 16, 204, 77, 210, 27, 177, 37, 74, 146, 230, 40, + 30, 77, 90, 207, 5, 87, 138, 69, 166, 161, 14, 167, 219, 255, 255, 255, 159, 69, 238, 23, 113, 85, 206, 255, 27, + 139, 225, 207, 250, 3, 18, 35, 31, 191, 27, 54, 159, 104, 132, 183, 249, 158, 188, 27, 127, 217, 196, 158, 91, 18, + 55, 201, 27, 213, 116, 49, 173, 127, 166, 47, 67, 75, 46, 110, 143, 109, 190, 247, 45, 193, 184, 218, 13, 255, 68, + 89, 23, 82, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1781, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9605668352929204296" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "406429907328b790fd5719" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72f240f32ec93acc39dc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10728538623617929319" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85fb7151928534524ee2b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e43" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f54d8819f7f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1753676435038247675" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10707335967769247684" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8869230872411553950" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8295414641404745438" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04b23cc9fd1133ef84f8" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13596721624981976107" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24f7d6b0bb2c905a9502" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13303654217798359123" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cd43f9f4272e5f24b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "554f71" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "218aab6f7649ea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7659be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50346ac8da7a50b7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b916fa1f971d572309a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3709819599572353005" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18440374806511171826" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12011370765661558368" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76c10cd4c4621ddddd940f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17303079518224173849" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f32e6f3a" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12998182377294512872" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ba951c49fed2a4bc2fb257e5" + }, + { + "_tag": "ByteArray", + "bytearray": "822ad870" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8580987709673481094" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6944311051563978697" + } + } + ] + }, + "cborHex": "d8669f1b854e3079568e88489fbf41414b406429907328b790fd57194a72f240f32ec93acc39dc1b94e36d0933ce10674b85fb7151928534524ee2b1426e4346f54d8819f7f51b18564f6d216d9afbffd8669f1b9498195531a63fc49f9f1b7b15d67cbd04c09effbf1b731f3baa558116de4a04b23cc9fd1133ef84f8ffbf4210ab1bbcb1424786ec342b4a24f7d6b0bb2c905a95021bb8a013067a7f98534134491cd43f9f4272e5f24b43554f7147218aab6f7649ea437659be4850346ac8da7a50b74ab916fa1f971d572309a51b337bed45354abfedffd8669f1bffe95f2f6b2938f280ffbf1ba6b0f61288c4d6604b76c10cd4c4621ddddd940f1bf020e3256c16cb1944f32e6f3affffff9fd8669f1bb462d2013c61c2e89f4cba951c49fed2a4bc2fb257e544822ad8701b7715cadba114a386ffffff1b605f261bde4a4fc9ffff", + "cborBytes": [ + 216, 102, 159, 27, 133, 78, 48, 121, 86, 142, 136, 72, 159, 191, 65, 65, 75, 64, 100, 41, 144, 115, 40, 183, 144, + 253, 87, 25, 74, 114, 242, 64, 243, 46, 201, 58, 204, 57, 220, 27, 148, 227, 109, 9, 51, 206, 16, 103, 75, 133, + 251, 113, 81, 146, 133, 52, 82, 78, 226, 177, 66, 110, 67, 70, 245, 77, 136, 25, 247, 245, 27, 24, 86, 79, 109, + 33, 109, 154, 251, 255, 216, 102, 159, 27, 148, 152, 25, 85, 49, 166, 63, 196, 159, 159, 27, 123, 21, 214, 124, + 189, 4, 192, 158, 255, 191, 27, 115, 31, 59, 170, 85, 129, 22, 222, 74, 4, 178, 60, 201, 253, 17, 51, 239, 132, + 248, 255, 191, 66, 16, 171, 27, 188, 177, 66, 71, 134, 236, 52, 43, 74, 36, 247, 214, 176, 187, 44, 144, 90, 149, + 2, 27, 184, 160, 19, 6, 122, 127, 152, 83, 65, 52, 73, 28, 212, 63, 159, 66, 114, 229, 242, 75, 67, 85, 79, 113, + 71, 33, 138, 171, 111, 118, 73, 234, 67, 118, 89, 190, 72, 80, 52, 106, 200, 218, 122, 80, 183, 74, 185, 22, 250, + 31, 151, 29, 87, 35, 9, 165, 27, 51, 123, 237, 69, 53, 74, 191, 237, 255, 216, 102, 159, 27, 255, 233, 95, 47, + 107, 41, 56, 242, 128, 255, 191, 27, 166, 176, 246, 18, 136, 196, 214, 96, 75, 118, 193, 12, 212, 196, 98, 29, + 221, 221, 148, 15, 27, 240, 32, 227, 37, 108, 22, 203, 25, 68, 243, 46, 111, 58, 255, 255, 255, 159, 216, 102, + 159, 27, 180, 98, 210, 1, 60, 97, 194, 232, 159, 76, 186, 149, 28, 73, 254, 210, 164, 188, 47, 178, 87, 229, 68, + 130, 42, 216, 112, 27, 119, 21, 202, 219, 161, 20, 163, 134, 255, 255, 255, 27, 96, 95, 38, 27, 222, 74, 79, 201, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1782, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10555047005441280727" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11606951674128020881" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10708387124367811188" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce03866e1c0979fbfba9" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11446080127717069645" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11900462253209500397" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7893301926583993283" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68560ef201fc4557150a1c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34f5fa6fdb41be8d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca06" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aafd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2722951451773731756" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18251199514199141814" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5db6cf409069" + }, + { + "_tag": "ByteArray", + "bytearray": "a9f5" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5797089665788885966" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13091543261609741431" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16088590972713863993" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17746724991542444985" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7631149516259805173" + } + } + ] + }, + "cborHex": "d9050a9fbf1b927b0f5412e0cad71ba1142d0d2586b5911b949bd55aa94f62744ace03866e1c0979fbfba9ff1b9ed8a53b733bd34d1ba526ef5e317f3aed9fbf1b6d8aa4481ef203c34b68560ef201fc4557150a1c4834f5fa6fdb41be8d42ca0642aafd1b25c9ddeb279b83acffd8669f1bfd494942589f2db69f0affff9f465db6cf40906942a9f5ffbf1b50736656346f3bce1bb5ae813c05e84c771bdf46283fa92a8b391bf649085a876f43b9ffff1b69e74a0db08f47f5ff", + "cborBytes": [ + 217, 5, 10, 159, 191, 27, 146, 123, 15, 84, 18, 224, 202, 215, 27, 161, 20, 45, 13, 37, 134, 181, 145, 27, 148, + 155, 213, 90, 169, 79, 98, 116, 74, 206, 3, 134, 110, 28, 9, 121, 251, 251, 169, 255, 27, 158, 216, 165, 59, 115, + 59, 211, 77, 27, 165, 38, 239, 94, 49, 127, 58, 237, 159, 191, 27, 109, 138, 164, 72, 30, 242, 3, 195, 75, 104, + 86, 14, 242, 1, 252, 69, 87, 21, 10, 28, 72, 52, 245, 250, 111, 219, 65, 190, 141, 66, 202, 6, 66, 170, 253, 27, + 37, 201, 221, 235, 39, 155, 131, 172, 255, 216, 102, 159, 27, 253, 73, 73, 66, 88, 159, 45, 182, 159, 10, 255, + 255, 159, 70, 93, 182, 207, 64, 144, 105, 66, 169, 245, 255, 191, 27, 80, 115, 102, 86, 52, 111, 59, 206, 27, 181, + 174, 129, 60, 5, 232, 76, 119, 27, 223, 70, 40, 63, 169, 42, 139, 57, 27, 246, 73, 8, 90, 135, 111, 67, 185, 255, + 255, 27, 105, 231, 74, 13, 176, 143, 71, 245, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1783, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1722700353233378194" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9525797896893635605" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b17e842d810ea5b929fd8669f1bfffffffffffffffb9f809f1b84326eb7a6821c151bffffffffffffffefffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 23, 232, 66, 216, 16, 234, 91, 146, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 251, 159, 128, 159, 27, 132, 50, 110, 183, 166, 130, 28, 21, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1784, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15077819969940444366" + }, + "fields": [] + }, + "cborHex": "d8669f1bd13f2d607f9754ce80ff", + "cborBytes": [216, 102, 159, 27, 209, 63, 45, 96, 127, 151, 84, 206, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1785, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15643538755255279861" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02613352230aee585c579437" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4f3a304f183f6b5070070" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f72b2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07d14f00b832cc7db1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7232a8850c05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e567cbf31f1bcd" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7125982432024087155" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8795921019978031751" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "63e3f73a84bc2c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4954656102810193422" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10909394173114888521" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6af9bee0a3ad8d04" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f3fa" + } + ] + }, + "cborHex": "d8669f1bd919039d690c20f59f9fbf4c02613352230aee585c5794374bc4f3a304f183f6b5070070433f72b24907d14f00b832cc7db1467232a8850c0547e567cbf31f1bcdff9f1b62e4934450784a731b7a1163909c2ea287ffff4763e3f73a84bc2cd8669f1b44c2797980390e0e9fd8669f1b9765f433333ab1499f486af9bee0a3ad8d04ffffffff42f3faffff", + "cborBytes": [ + 216, 102, 159, 27, 217, 25, 3, 157, 105, 12, 32, 245, 159, 159, 191, 76, 2, 97, 51, 82, 35, 10, 238, 88, 92, 87, + 148, 55, 75, 196, 243, 163, 4, 241, 131, 246, 181, 7, 0, 112, 67, 63, 114, 178, 73, 7, 209, 79, 0, 184, 50, 204, + 125, 177, 70, 114, 50, 168, 133, 12, 5, 71, 229, 103, 203, 243, 31, 27, 205, 255, 159, 27, 98, 228, 147, 68, 80, + 120, 74, 115, 27, 122, 17, 99, 144, 156, 46, 162, 135, 255, 255, 71, 99, 227, 247, 58, 132, 188, 44, 216, 102, + 159, 27, 68, 194, 121, 121, 128, 57, 14, 14, 159, 216, 102, 159, 27, 151, 101, 244, 51, 51, 58, 177, 73, 159, 72, + 106, 249, 190, 224, 163, 173, 141, 4, 255, 255, 255, 255, 66, 243, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1786, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "177fa5f50a11ccbba8e1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "400478220818424939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3abf0578709" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "580170633738204615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3863704726777134691" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4924899872664004084" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7342" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12936857045860837155" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4059106477316832280" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17972564583175656426" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1632555042449436010" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10534141990753663808" + } + } + ] + }, + "cborHex": "d9050c9f4a177fa5f50a11ccbba8e1bf1b058ec8d1ec29a46b46f3abf05787091b080d2e1e151435c741d91b359ea2fa6c8c7e63416f1b4458c257488125f44273421bb388f2f0d88b67231b3854d7d5c5f4fc181bf96b604402f393ea1b16a800295578ad6aff1b9230ca540c65fb40ff", + "cborBytes": [ + 217, 5, 12, 159, 74, 23, 127, 165, 245, 10, 17, 204, 187, 168, 225, 191, 27, 5, 142, 200, 209, 236, 41, 164, 107, + 70, 243, 171, 240, 87, 135, 9, 27, 8, 13, 46, 30, 21, 20, 53, 199, 65, 217, 27, 53, 158, 162, 250, 108, 140, 126, + 99, 65, 111, 27, 68, 88, 194, 87, 72, 129, 37, 244, 66, 115, 66, 27, 179, 136, 242, 240, 216, 139, 103, 35, 27, + 56, 84, 215, 213, 197, 244, 252, 24, 27, 249, 107, 96, 68, 2, 243, 147, 234, 27, 22, 168, 0, 41, 85, 120, 173, + 106, 255, 27, 146, 48, 202, 84, 12, 101, 251, 64, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1787, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3237512090045281899" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15832399892449388306" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1daf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8358982901181591113" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c6b2477d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11063848291359321015" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15809023701134808473" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6014587734829756631" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fdc623f0" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12842957612745454384" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6020806762679654599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c50424a4450fd46f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12490092971566812851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11915620117551933957" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07041f80e4196b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12097730478146824688" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9915ec5dd4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "981bd683fae7ac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a428caa75941" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb2f880bd13782d5ee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "342fc702f1506cd7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10131987337551429374" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcbb93ed77a847e75948" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3298200059478131797" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3890294337984442209" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "78167505874900116" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18048225533806799146" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1324330291155645925" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10190292980758421883" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea86ed27" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16997684413837510939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f53b96fff12ff299473789" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4267010426089782806" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7484272384793469499" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4bc817" + }, + { + "_tag": "ByteArray", + "bytearray": "6976a2cecc" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b6414616fbb1e22a" + } + ] + }, + "cborHex": "d8669f1b2cedf417c32e766b9f9fd8669f1bdbb7fbd18b60e7129f421daf1b740112a92c7e2e4944c6b2477dffff9f1b998aaf66f748ebb71bdb64ef4bdfdf1599ff1b53781bad9cf2f0d744fdc623f0ffd8669f1bb23b59e7651773309fbf1b538e33d9deca58c748c50424a4450fd46f1bad55b961ddd7ceb31ba55cc95d812e6a05ffbf4707041f80e4196b1ba7e3c5c5fa5ba9f0459915ec5dd447981bd683fae7ac46a428caa7594141d049cb2f880bd13782d5ee48342fc702f1506cd741e41b8c9c0ccd4b823efe4afcbb93ed77a847e759481b2dc58f7abf5dc455ff9f1b35fd1a16b746af61ffbf1b0115b4eeb4a6d4941bfa782d7fd8b0692a1b1260f762199f35e5414b1b8d6b3179bb43217b44ea86ed271bebe3e7eab2fa891b4bf53b96fff12ff299473789ff9f1b3b37775ffbf83e161b67dd7a14a1e1623b434bc817456976a2ceccffffff48b6414616fbb1e22affff", + "cborBytes": [ + 216, 102, 159, 27, 44, 237, 244, 23, 195, 46, 118, 107, 159, 159, 216, 102, 159, 27, 219, 183, 251, 209, 139, 96, + 231, 18, 159, 66, 29, 175, 27, 116, 1, 18, 169, 44, 126, 46, 73, 68, 198, 178, 71, 125, 255, 255, 159, 27, 153, + 138, 175, 102, 247, 72, 235, 183, 27, 219, 100, 239, 75, 223, 223, 21, 153, 255, 27, 83, 120, 27, 173, 156, 242, + 240, 215, 68, 253, 198, 35, 240, 255, 216, 102, 159, 27, 178, 59, 89, 231, 101, 23, 115, 48, 159, 191, 27, 83, + 142, 51, 217, 222, 202, 88, 199, 72, 197, 4, 36, 164, 69, 15, 212, 111, 27, 173, 85, 185, 97, 221, 215, 206, 179, + 27, 165, 92, 201, 93, 129, 46, 106, 5, 255, 191, 71, 7, 4, 31, 128, 228, 25, 107, 27, 167, 227, 197, 197, 250, 91, + 169, 240, 69, 153, 21, 236, 93, 212, 71, 152, 27, 214, 131, 250, 231, 172, 70, 164, 40, 202, 167, 89, 65, 65, 208, + 73, 203, 47, 136, 11, 209, 55, 130, 213, 238, 72, 52, 47, 199, 2, 241, 80, 108, 215, 65, 228, 27, 140, 156, 12, + 205, 75, 130, 62, 254, 74, 252, 187, 147, 237, 119, 168, 71, 231, 89, 72, 27, 45, 197, 143, 122, 191, 93, 196, 85, + 255, 159, 27, 53, 253, 26, 22, 183, 70, 175, 97, 255, 191, 27, 1, 21, 180, 238, 180, 166, 212, 148, 27, 250, 120, + 45, 127, 216, 176, 105, 42, 27, 18, 96, 247, 98, 25, 159, 53, 229, 65, 75, 27, 141, 107, 49, 121, 187, 67, 33, + 123, 68, 234, 134, 237, 39, 27, 235, 227, 231, 234, 178, 250, 137, 27, 75, 245, 59, 150, 255, 241, 47, 242, 153, + 71, 55, 137, 255, 159, 27, 59, 55, 119, 95, 251, 248, 62, 22, 27, 103, 221, 122, 20, 161, 225, 98, 59, 67, 75, + 200, 23, 69, 105, 118, 162, 206, 204, 255, 255, 255, 72, 182, 65, 70, 22, 251, 177, 226, 42, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1788, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2ec8b253698e85bb83" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7715330424950889188" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f492ec8b253698e85bb831b6b125c24d7f61ae4ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 73, 46, 200, 178, 83, 105, 142, 133, 187, 131, 27, + 107, 18, 92, 36, 215, 246, 26, 228, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1789, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "106956" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6556427715186889520" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f8220702172e" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f9f090943106956d8669f1b5afd1c44ff3d933080ff46f8220702172effffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 159, 9, 9, 67, 16, 105, 86, 216, 102, 159, 27, 90, + 253, 28, 68, 255, 61, 147, 48, 128, 255, 70, 248, 34, 7, 2, 23, 46, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1790, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "905880275566623093" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9160535248077617275" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fbacd17ba135df18399d" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + "cborHex": "d8669f1b0c92554fa22e79759f1bfffffffffffffff11b7f20c246061c787bd87b9f9f4afbacd17ba135df18399dffff800fffff", + "cborBytes": [ + 216, 102, 159, 27, 12, 146, 85, 79, 162, 46, 121, 117, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 27, 127, + 32, 194, 70, 6, 28, 120, 123, 216, 123, 159, 159, 74, 251, 172, 209, 123, 161, 53, 223, 24, 57, 157, 255, 255, + 128, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1791, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10511854419159030238" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3733342255059762979" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10536647130615184910" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7136266244056457764" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10381241528934445582" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8252692812167604096" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11142622278970887773" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63fa9b4d12fef7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17785663911291614953" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f420ed" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "40062a7e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "389628975597570100" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7809076142184911696" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4108161141908545560" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12061448690807615921" + } + }, + { + "_tag": "ByteArray", + "bytearray": "19" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10937072012393712401" + } + } + ] + }, + "cborHex": "d8669f1b91e19be6689819de9fbf1b33cf7f0039caff231b9239b0bd5ff4fe0e1b63091c56e398a2241b9011942b1babb20e1b7287746355ab6780412d1b9aa28bed3469ce5d4763fa9b4d12fef71bf6d35f18470576e943f420edff4440062a7e1b05683d7d2cb148349f1b6c5f696086e8d3501b39031ecae785a0181ba762dfae143031b14119ff1b97c8490c55980b11ffff", + "cborBytes": [ + 216, 102, 159, 27, 145, 225, 155, 230, 104, 152, 25, 222, 159, 191, 27, 51, 207, 127, 0, 57, 202, 255, 35, 27, + 146, 57, 176, 189, 95, 244, 254, 14, 27, 99, 9, 28, 86, 227, 152, 162, 36, 27, 144, 17, 148, 43, 27, 171, 178, 14, + 27, 114, 135, 116, 99, 85, 171, 103, 128, 65, 45, 27, 154, 162, 139, 237, 52, 105, 206, 93, 71, 99, 250, 155, 77, + 18, 254, 247, 27, 246, 211, 95, 24, 71, 5, 118, 233, 67, 244, 32, 237, 255, 68, 64, 6, 42, 126, 27, 5, 104, 61, + 125, 44, 177, 72, 52, 159, 27, 108, 95, 105, 96, 134, 232, 211, 80, 27, 57, 3, 30, 202, 231, 133, 160, 24, 27, + 167, 98, 223, 174, 20, 48, 49, 177, 65, 25, 255, 27, 151, 200, 73, 12, 85, 152, 11, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1792, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15179044999047481679" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f1b5bd9eef89bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2131017212936974064" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17049331733812402249" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12225499487959109929" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a78e29cf064b40f88d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13812021017976609221" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16215587240137123347" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16418440174316249793" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cde378686e8bbf0bdd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16512813641706245119" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18128280658129652604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10446900511006668828" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bd2a6cd012de5094f9f9f47f1b5bd9eef89bc14ffa0bf1b1d92e4dd5359eef01bec9b64e173aed8491ba9a9b302c585d12949a78e29cf064b40f88d1bbfae27efc6b999c51be10956ae58bae6131be3da0459941f62c149cde378686e8bbf0bdd1be5294c84bc200bff41fd1bfb949735f8670b7c1b90fad8aa2a66381cff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 210, 166, 205, 1, 45, 229, 9, 79, 159, 159, 71, 241, 181, 189, 158, 239, 137, 188, 20, 255, + 160, 191, 27, 29, 146, 228, 221, 83, 89, 238, 240, 27, 236, 155, 100, 225, 115, 174, 216, 73, 27, 169, 169, 179, + 2, 197, 133, 209, 41, 73, 167, 142, 41, 207, 6, 75, 64, 248, 141, 27, 191, 174, 39, 239, 198, 185, 153, 197, 27, + 225, 9, 86, 174, 88, 186, 230, 19, 27, 227, 218, 4, 89, 148, 31, 98, 193, 73, 205, 227, 120, 104, 110, 139, 191, + 11, 221, 27, 229, 41, 76, 132, 188, 32, 11, 255, 65, 253, 27, 251, 148, 151, 53, 248, 103, 11, 124, 27, 144, 250, + 216, 170, 42, 102, 56, 28, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1793, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13405646894629715630" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f1bba0a6cd312b8feaeffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 27, 186, 10, 108, 211, 18, 184, 254, 174, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1794, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8333200980948984668" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e5c4e4f05509bb7f42ab0f" + } + ] + }, + "cborHex": "d8669f1b73a57a241766a35c9f4be5c4e4f05509bb7f42ab0fffff", + "cborBytes": [ + 216, 102, 159, 27, 115, 165, 122, 36, 23, 102, 163, 92, 159, 75, 229, 196, 228, 240, 85, 9, 187, 127, 66, 171, 15, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1795, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eabea27a5a46de3b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8203598405126371237" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3309677368678845265" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8785418866882864620" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "249212db4f81" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12525961043581011254" + } + }, + { + "_tag": "ByteArray", + "bytearray": "15127aeb8b7bf0169e" + }, + { + "_tag": "ByteArray", + "bytearray": "cbe5b7eb907e03559d12" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "42c4518ace4923d2f02272" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3623368828246773443" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "93fe0d7aae6d1c19" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2047610040956969853" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12809755254483441345" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6559854078171000907" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9107498543013980947" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d023aa3e2adb5d043573" + } + ] + } + ] + } + ] + }, + "cborHex": "d87a9f48eabea27a5a46de3bd8669f1b71d90948f184b7a580ff1b2dee560809408b511b79ec13e98b9165ec9fa09f46249212db4f811badd52734290705364915127aeb8b7bf0169e4acbe5b7eb907e03559d12ff4b42c4518ace4923d2f02272d8669f1b3248cac079df4ec39f4893fe0d7aae6d1c19ffffd8669f1b1c6a927bc9c3637d9f1bb1c56488f32dd6c11b5b0948874bc7b04b1b7e6455abd8bc6b134ad023aa3e2adb5d043573ffffffff", + "cborBytes": [ + 216, 122, 159, 72, 234, 190, 162, 122, 90, 70, 222, 59, 216, 102, 159, 27, 113, 217, 9, 72, 241, 132, 183, 165, + 128, 255, 27, 45, 238, 86, 8, 9, 64, 139, 81, 27, 121, 236, 19, 233, 139, 145, 101, 236, 159, 160, 159, 70, 36, + 146, 18, 219, 79, 129, 27, 173, 213, 39, 52, 41, 7, 5, 54, 73, 21, 18, 122, 235, 139, 123, 240, 22, 158, 74, 203, + 229, 183, 235, 144, 126, 3, 85, 157, 18, 255, 75, 66, 196, 81, 138, 206, 73, 35, 210, 240, 34, 114, 216, 102, 159, + 27, 50, 72, 202, 192, 121, 223, 78, 195, 159, 72, 147, 254, 13, 122, 174, 109, 28, 25, 255, 255, 216, 102, 159, + 27, 28, 106, 146, 123, 201, 195, 99, 125, 159, 27, 177, 197, 100, 136, 243, 45, 214, 193, 27, 91, 9, 72, 135, 75, + 199, 176, 75, 27, 126, 100, 85, 171, 216, 188, 107, 19, 74, 208, 35, 170, 62, 42, 219, 93, 4, 53, 115, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1796, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1356324952625364892" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0406fcfc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0203" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbb0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4038760038148742569" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050b9fd8669f1b12d2a25bb93bbf9c9fbf440406fcfc42020342bbb01b380c8edb3ee61da9ffffffff", + "cborBytes": [ + 217, 5, 11, 159, 216, 102, 159, 27, 18, 210, 162, 91, 185, 59, 191, 156, 159, 191, 68, 4, 6, 252, 252, 66, 2, 3, + 66, 187, 176, 27, 56, 12, 142, 219, 62, 230, 29, 169, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1797, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13764280374686377861" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17077144602834700276" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16242741459464331792" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a51c0c9c" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a69f67584e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7e90144929fc4a27c0c512" + }, + { + "_tag": "ByteArray", + "bytearray": "ab" + }, + { + "_tag": "ByteArray", + "bytearray": "a90f37cd5ef11aae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7969224233912270464" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fb31c1add5573ea0" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3653675534122912246" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "63eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7393901976518184671" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d076d78b16318aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16108598303094043639" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16043496522524804399" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18e92941838285b42669" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "911f4276b72a688b436381" + } + ] + } + ] + }, + "cborHex": "d8669f1bbf048c13120fe7859f9fd8669f1becfe3489a5f107f49f1be169cf4cb5e1a210ffff44a51c0c9cff8045a69f67584e9f9f4b7e90144929fc4a27c0c51241ab48a90f37cd5ef11aae1b6e985f37cdc67e8048fb31c1add5573ea0ff1b32b4768a4fee89f6bf4263eb1b669c6aac4e6ccedf487d076d78b16318aa1bdf8d3ccf456173f7ffbf1bdea5f315cc4e452f4a18e92941838285b42669ff4b911f4276b72a688b436381ffffff", + "cborBytes": [ + 216, 102, 159, 27, 191, 4, 140, 19, 18, 15, 231, 133, 159, 159, 216, 102, 159, 27, 236, 254, 52, 137, 165, 241, 7, + 244, 159, 27, 225, 105, 207, 76, 181, 225, 162, 16, 255, 255, 68, 165, 28, 12, 156, 255, 128, 69, 166, 159, 103, + 88, 78, 159, 159, 75, 126, 144, 20, 73, 41, 252, 74, 39, 192, 197, 18, 65, 171, 72, 169, 15, 55, 205, 94, 241, 26, + 174, 27, 110, 152, 95, 55, 205, 198, 126, 128, 72, 251, 49, 193, 173, 213, 87, 62, 160, 255, 27, 50, 180, 118, + 138, 79, 238, 137, 246, 191, 66, 99, 235, 27, 102, 156, 106, 172, 78, 108, 206, 223, 72, 125, 7, 109, 120, 177, + 99, 24, 170, 27, 223, 141, 60, 207, 69, 97, 115, 247, 255, 191, 27, 222, 165, 243, 21, 204, 78, 69, 47, 74, 24, + 233, 41, 65, 131, 130, 133, 180, 38, 105, 255, 75, 145, 31, 66, 118, 183, 42, 104, 139, 67, 99, 129, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1798, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae00ae0b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f92ffa49" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13542173754916414762" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13020309706314471568" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8588750706192927450" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b5" + }, + { + "_tag": "ByteArray", + "bytearray": "fbd407061f3c02" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bf3cc1084785a2dd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5823396408782855403" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4962021312911811028" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11418534729253985759" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050d9f9fbf44ae00ae0b44f92ffa49ffd8669f1bbbef7747d469252a9f1bb4b16eb17e71d8901b77315f431b03cadaffff41b547fbd407061f3c02ff9f9f48bf3cc1084785a2dd1b50d0dc2e1bc99ceb1b44dca4181c06a1d41b9e76c8d698a51ddfffffff", + "cborBytes": [ + 217, 5, 13, 159, 159, 191, 68, 174, 0, 174, 11, 68, 249, 47, 250, 73, 255, 216, 102, 159, 27, 187, 239, 119, 71, + 212, 105, 37, 42, 159, 27, 180, 177, 110, 177, 126, 113, 216, 144, 27, 119, 49, 95, 67, 27, 3, 202, 218, 255, 255, + 65, 181, 71, 251, 212, 7, 6, 31, 60, 2, 255, 159, 159, 72, 191, 60, 193, 8, 71, 133, 162, 221, 27, 80, 208, 220, + 46, 27, 201, 156, 235, 27, 68, 220, 164, 24, 28, 6, 161, 212, 27, 158, 118, 200, 214, 152, 165, 29, 223, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1799, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2522571193089976407" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9500878708659333091" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3063454854409839143" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13850257256157557353" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6116290700778933317" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5638466186327829335" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17735856758532043750" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5290ce50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18331534411246056725" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8817996232796625438" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c6da8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e7c452ccd3211ac7cdc44bd" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18108773448341336737" + } + }, + { + "_tag": "ByteArray", + "bytearray": "541a9ff068" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09955f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ebdeeb09f45" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3066859257223387065" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13211904577005394367" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9697376794852621532" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16238100101689166124" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13139514128528960511" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9892897065378979288" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15446354969147390414" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1574851692366913567" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7709d7d4e07663aa5903c47c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3340127485435130108" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11062527724819040596" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59fbf1b2301f9228cc2e8571b83d9e6d903b627e31b2a8393f58e8b62271bc035ff97b90c32691b54e16dfca2f40c451b4e3fdb1f621f2b571bf6226bc0d78373e6445290ce501bfe66b16c222bb5151b7a5fd0da9e935a1effbf432c6da84c5e7c452ccd3211ac7cdc44bdff9f1bfb4f4981c26932a145541a9ff068bf4309955f460ebdeeb09f45ffffbf1b2a8fac3edaeb17b91bb75a1d368ec399bf1b869400d0e64e7cdc1be1595202646ac92c1bb658ee7bd831ebff1b894aa177556b1dd81bd65c7a01929eb9ce41e3ffd8669f1b15daff453173e01f9fbf4c7709d7d4e07663aa5903c47c1b2e5a844051e130fcff1b9985fe5a9bbfc954ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 191, 27, 35, 1, 249, 34, 140, 194, 232, 87, 27, + 131, 217, 230, 217, 3, 182, 39, 227, 27, 42, 131, 147, 245, 142, 139, 98, 39, 27, 192, 53, 255, 151, 185, 12, 50, + 105, 27, 84, 225, 109, 252, 162, 244, 12, 69, 27, 78, 63, 219, 31, 98, 31, 43, 87, 27, 246, 34, 107, 192, 215, + 131, 115, 230, 68, 82, 144, 206, 80, 27, 254, 102, 177, 108, 34, 43, 181, 21, 27, 122, 95, 208, 218, 158, 147, 90, + 30, 255, 191, 67, 44, 109, 168, 76, 94, 124, 69, 44, 205, 50, 17, 172, 124, 220, 68, 189, 255, 159, 27, 251, 79, + 73, 129, 194, 105, 50, 161, 69, 84, 26, 159, 240, 104, 191, 67, 9, 149, 95, 70, 14, 189, 238, 176, 159, 69, 255, + 255, 191, 27, 42, 143, 172, 62, 218, 235, 23, 185, 27, 183, 90, 29, 54, 142, 195, 153, 191, 27, 134, 148, 0, 208, + 230, 78, 124, 220, 27, 225, 89, 82, 2, 100, 106, 201, 44, 27, 182, 88, 238, 123, 216, 49, 235, 255, 27, 137, 74, + 161, 119, 85, 107, 29, 216, 27, 214, 92, 122, 1, 146, 158, 185, 206, 65, 227, 255, 216, 102, 159, 27, 21, 218, + 255, 69, 49, 115, 224, 31, 159, 191, 76, 119, 9, 215, 212, 224, 118, 99, 170, 89, 3, 196, 124, 27, 46, 90, 132, + 64, 81, 225, 48, 252, 255, 27, 153, 133, 254, 90, 155, 191, 201, 84, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1800, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2628414455830416487" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb310301fd0593" + }, + { + "_tag": "ByteArray", + "bytearray": "dac94236d6c5" + } + ] + }, + "cborHex": "d8669f1b247a01058a460c679f47fb310301fd059346dac94236d6c5ffff", + "cborBytes": [ + 216, 102, 159, 27, 36, 122, 1, 5, 138, 70, 12, 103, 159, 71, 251, 49, 3, 1, 253, 5, 147, 70, 218, 201, 66, 54, + 214, 197, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1801, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14124424617962944036" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15811722728954114661" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5088574659200940656" + } + } + ] + }, + "cborHex": "d8669f1bc404095b0a76b6249fd8669f1bdb6e860c4247b26580ff1b469e3fb12eb9fa70ffff", + "cborBytes": [ + 216, 102, 159, 27, 196, 4, 9, 91, 10, 118, 182, 36, 159, 216, 102, 159, 27, 219, 110, 134, 12, 66, 71, 178, 101, + 128, 255, 27, 70, 158, 63, 177, 46, 185, 250, 112, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1802, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4412229455572243737" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c3451265adc2cda" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11671032983625624682" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "183a0ed0db37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8596666454886782634" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a704e8ab9c3c4a5589d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01fbcdfcdec0cc6e13022560" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "939067" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6330040888597760154" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5414bbc43" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18272217988889040609" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12804759271647152537" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b3d3b635016e615199f80bf4135483c3451265adc2cdaffbf41111ba1f7d6a9aedf6c6a46183a0ed0db371b774d7e97f80b16aa4a4a704e8ab9c3c4a5589d4c01fbcdfcdec0cc6e13022560439390671b57d8d2a67291489a45f5414bbc431bfd93f573563bd6e1ffd8669f1bb1b3a4b70ceb099980ffffff", + "cborBytes": [ + 216, 102, 159, 27, 61, 59, 99, 80, 22, 230, 21, 25, 159, 128, 191, 65, 53, 72, 60, 52, 81, 38, 90, 220, 44, 218, + 255, 191, 65, 17, 27, 161, 247, 214, 169, 174, 223, 108, 106, 70, 24, 58, 14, 208, 219, 55, 27, 119, 77, 126, 151, + 248, 11, 22, 170, 74, 74, 112, 78, 138, 185, 195, 196, 165, 88, 157, 76, 1, 251, 205, 252, 222, 192, 204, 110, 19, + 2, 37, 96, 67, 147, 144, 103, 27, 87, 216, 210, 166, 114, 145, 72, 154, 69, 245, 65, 75, 188, 67, 27, 253, 147, + 245, 115, 86, 59, 214, 225, 255, 216, 102, 159, 27, 177, 179, 164, 183, 12, 235, 9, 153, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1803, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1171623144093093909" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10138356017618799388" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9611804170633084161" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f07a539" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10318763469089639052" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16942995886099193148" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7951296f" + }, + { + "_tag": "ByteArray", + "bytearray": "10aaf9c015" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c100ff" + } + ] + }, + "cborHex": "d905089fbf1b1042710ac24b90151b8cb2ad152c9ccb1c1b8563fcf7b933fd01443f07a5391b8f339cb4385d8a8c1beb219cfd95d8dd3cff9f447951296f4510aaf9c015ffd8669f1bffffffffffffffec9f1bfffffffffffffffdd87a80ffff43c100ffff", + "cborBytes": [ + 217, 5, 8, 159, 191, 27, 16, 66, 113, 10, 194, 75, 144, 21, 27, 140, 178, 173, 21, 44, 156, 203, 28, 27, 133, 99, + 252, 247, 185, 51, 253, 1, 68, 63, 7, 165, 57, 27, 143, 51, 156, 180, 56, 93, 138, 140, 27, 235, 33, 156, 253, + 149, 216, 221, 60, 255, 159, 68, 121, 81, 41, 111, 69, 16, 170, 249, 192, 21, 255, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 236, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 216, 122, 128, 255, 255, 67, 193, + 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1804, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17802856723990377766" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4bb3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "357d5a" + }, + { + "_tag": "ByteArray", + "bytearray": "defa3cce" + }, + { + "_tag": "ByteArray", + "bytearray": "0df4" + }, + { + "_tag": "ByteArray", + "bytearray": "3a8643e5cd1934" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "528f6ab80bc1d722" + }, + { + "_tag": "ByteArray", + "bytearray": "3c2f122a4ea978f610" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5999948180940496822" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "59f91f85a4e88dc7e8eca5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17517189840604652460" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11083283425815679304" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "53ac62c9f4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6778125078209615001" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3218243655247542412" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4118510307771388410" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e88160c6" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10433341001028413341" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01df8046ed857369cd2449" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e5718bd27917f86e554e05" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2113599225582773109" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d7e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "988f0b5fc54c6aa9c78b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73204f28675edefe1c007f81" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b414a9529a75d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa31d44557" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0876063d1f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12994443470386708526" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13417344359581206184" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12043828482533016044" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2868730671326949989" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6054202301072585017" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14325366811610067215" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf71073ddec9ef5269f9f424bb39f43357d5a44defa3cce420df4473a8643e5cd1934ff48528f6ab80bc1d722493c2f122a4ea978f6101b53441914dbb59fb6ff9f80bf4b59f91f85a4e88dc7e8eca51bf3198f59985263acff1b99cfbb8dd4b7d1489f4553ac62c9f41b5e10bcd8b9d9d4991b2ca97f8dafaf388c1b3927e34dda7f91fa44e88160c6ffd8669f1b90caac5cbad1279d9f4b01df8046ed857369cd2449ffffff4be5718bd27917f86e554e05d8669f1b1d55034c1e66e3759fbf424d7e4a988f0b5fc54c6aa9c78b4c73204f28675edefe1c007f81475b414a9529a75d45aa31d44557450876063d1fffd8669f1bb455897d224b402e9f1bba33fb9b5dedc6a8ffffd8669f1ba7244631a51cc1ec9f1b27cfc758acb5f2651b5404d8ea91c8b1391bc6cded375330310fffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 247, 16, 115, 221, 236, 158, 245, 38, 159, 159, 66, 75, 179, 159, 67, 53, 125, 90, 68, 222, + 250, 60, 206, 66, 13, 244, 71, 58, 134, 67, 229, 205, 25, 52, 255, 72, 82, 143, 106, 184, 11, 193, 215, 34, 73, + 60, 47, 18, 42, 78, 169, 120, 246, 16, 27, 83, 68, 25, 20, 219, 181, 159, 182, 255, 159, 128, 191, 75, 89, 249, + 31, 133, 164, 232, 141, 199, 232, 236, 165, 27, 243, 25, 143, 89, 152, 82, 99, 172, 255, 27, 153, 207, 187, 141, + 212, 183, 209, 72, 159, 69, 83, 172, 98, 201, 244, 27, 94, 16, 188, 216, 185, 217, 212, 153, 27, 44, 169, 127, + 141, 175, 175, 56, 140, 27, 57, 39, 227, 77, 218, 127, 145, 250, 68, 232, 129, 96, 198, 255, 216, 102, 159, 27, + 144, 202, 172, 92, 186, 209, 39, 157, 159, 75, 1, 223, 128, 70, 237, 133, 115, 105, 205, 36, 73, 255, 255, 255, + 75, 229, 113, 139, 210, 121, 23, 248, 110, 85, 78, 5, 216, 102, 159, 27, 29, 85, 3, 76, 30, 102, 227, 117, 159, + 191, 66, 77, 126, 74, 152, 143, 11, 95, 197, 76, 106, 169, 199, 139, 76, 115, 32, 79, 40, 103, 94, 222, 254, 28, + 0, 127, 129, 71, 91, 65, 74, 149, 41, 167, 93, 69, 170, 49, 212, 69, 87, 69, 8, 118, 6, 61, 31, 255, 216, 102, + 159, 27, 180, 85, 137, 125, 34, 75, 64, 46, 159, 27, 186, 51, 251, 155, 93, 237, 198, 168, 255, 255, 216, 102, + 159, 27, 167, 36, 70, 49, 165, 28, 193, 236, 159, 27, 39, 207, 199, 88, 172, 181, 242, 101, 27, 84, 4, 216, 234, + 145, 200, 177, 57, 27, 198, 205, 237, 55, 83, 48, 49, 15, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1805, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10069252040961310143" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5704271672192545226" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "963d1e975cbe2803" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9818285317827865173" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8081751668211537997" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10422533164175242240" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2636099707013580477" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15334549950999193330" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ab1e38c2141c" + }, + { + "_tag": "ByteArray", + "bytearray": "177d780c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1377932213047651885" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3918294231269628241" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f15561c0f7cfbc286735" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10835210391886576715" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4498665488990149079" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0626" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "623395954167186973" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "656bdbdf50713d07d20267cd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10183345423708208028" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adb234" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12985722432440172501" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13386021704057312945" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8664639287318875645" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9856181965358639572" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "935529e5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "47e8b8d2b8f44593b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3454657280357577587" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64b55aad97" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1aa88ce5faedbb63" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "219b3e8f1ce729dba266bdc4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2c248d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efe04c7c750e55b09cba" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8497230578840696185" + } + } + ] + }, + "cborHex": "d8669f1b8bbd2b61cf603dbf9fd8669f1b4f29a4dd035c31ca9f48963d1e975cbe28031b88418e7a20902a55d8669f1b70282652c2ab584d9f1b90a446b11e64b4001b24954eb7850e46bdffff9f414b1bd4cf43ef3bca66f246ab1e38c2141c44177d780c1b131f660c1345ee2dffd8669f1b366093d7e449d9519f4af15561c0f7cfbc2867351b965e6671ab053c4b1b3e6e786d629119d7420626ffffffffbf1b08a6bf51428d061d4c656bdbdf50713d07d20267cd1b8d5282b58d3a3b9c43adb2341bb4368dc0416affd51bb9c4b3d1520156b1ff9f1b783efb864b890dfdd8669f1b88c83146f6d029d480ff44935529e5bf4947e8b8d2b8f44593b81b2ff1687e306e33734564b55aad97481aa88ce5faedbb6341d94c219b3e8f1ce729dba266bdc444e2c248d24aefe04c7c750e55b09cbaffff1b75ec3a30f262f579ffff", + "cborBytes": [ + 216, 102, 159, 27, 139, 189, 43, 97, 207, 96, 61, 191, 159, 216, 102, 159, 27, 79, 41, 164, 221, 3, 92, 49, 202, + 159, 72, 150, 61, 30, 151, 92, 190, 40, 3, 27, 136, 65, 142, 122, 32, 144, 42, 85, 216, 102, 159, 27, 112, 40, 38, + 82, 194, 171, 88, 77, 159, 27, 144, 164, 70, 177, 30, 100, 180, 0, 27, 36, 149, 78, 183, 133, 14, 70, 189, 255, + 255, 159, 65, 75, 27, 212, 207, 67, 239, 59, 202, 102, 242, 70, 171, 30, 56, 194, 20, 28, 68, 23, 125, 120, 12, + 27, 19, 31, 102, 12, 19, 69, 238, 45, 255, 216, 102, 159, 27, 54, 96, 147, 215, 228, 73, 217, 81, 159, 74, 241, + 85, 97, 192, 247, 207, 188, 40, 103, 53, 27, 150, 94, 102, 113, 171, 5, 60, 75, 27, 62, 110, 120, 109, 98, 145, + 25, 215, 66, 6, 38, 255, 255, 255, 255, 191, 27, 8, 166, 191, 81, 66, 141, 6, 29, 76, 101, 107, 219, 223, 80, 113, + 61, 7, 210, 2, 103, 205, 27, 141, 82, 130, 181, 141, 58, 59, 156, 67, 173, 178, 52, 27, 180, 54, 141, 192, 65, + 106, 255, 213, 27, 185, 196, 179, 209, 82, 1, 86, 177, 255, 159, 27, 120, 62, 251, 134, 75, 137, 13, 253, 216, + 102, 159, 27, 136, 200, 49, 70, 246, 208, 41, 212, 128, 255, 68, 147, 85, 41, 229, 191, 73, 71, 232, 184, 210, + 184, 244, 69, 147, 184, 27, 47, 241, 104, 126, 48, 110, 51, 115, 69, 100, 181, 90, 173, 151, 72, 26, 168, 140, + 229, 250, 237, 187, 99, 65, 217, 76, 33, 155, 62, 143, 28, 231, 41, 219, 162, 102, 189, 196, 68, 226, 194, 72, + 210, 74, 239, 224, 76, 124, 117, 14, 85, 176, 156, 186, 255, 255, 27, 117, 236, 58, 48, 242, 98, 245, 121, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1806, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1450769545937663293" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "26" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4173441619686914358" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9fd8669f1b14222b372c91b53d9f9f41261b39eb0b0a9044f936ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 216, 102, 159, 27, 20, 34, 43, 55, 44, 145, 181, + 61, 159, 159, 65, 38, 27, 57, 235, 11, 10, 144, 68, 249, 54, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1807, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17859291496302367469" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4712976952707994046" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12678339878483488032" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6321805806846615689" + } + } + ] + }, + "cborHex": "d9050c9f1bf7d8f2fe4941d2ed1b4167db916cc351bed8669f1baff282f25ead6d2080ff1b57bb90e310182089ff", + "cborBytes": [ + 217, 5, 12, 159, 27, 247, 216, 242, 254, 73, 65, 210, 237, 27, 65, 103, 219, 145, 108, 195, 81, 190, 216, 102, + 159, 27, 175, 242, 130, 242, 94, 173, 109, 32, 128, 255, 27, 87, 187, 144, 227, 16, 24, 32, 137, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1808, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "055e7ea49dff8b576e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7152555509161285635" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4740003142757597179" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "160c0467c4db5510a9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13428588991305815001" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3ae295f9ff" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6d12" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a0d8b4" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f9f9f49055e7ea49dff8b576e1b6342fb56f7d25803ffd8669f1b41c7dfbea64d3ffb9f49160c0467c4db5510a91bba5bee8a358113d9453ae295f9ffffff426d12ff43a0d8b4ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 159, 159, 73, 5, 94, 126, 164, 157, 255, 139, 87, + 110, 27, 99, 66, 251, 86, 247, 210, 88, 3, 255, 216, 102, 159, 27, 65, 199, 223, 190, 166, 77, 63, 251, 159, 73, + 22, 12, 4, 103, 196, 219, 85, 16, 169, 27, 186, 91, 238, 138, 53, 129, 19, 217, 69, 58, 226, 149, 249, 255, 255, + 255, 66, 109, 18, 255, 67, 160, 216, 180, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1809, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12933839031997320549" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "868c312deffb25dd91e9445f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3825923230575181561" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "cf8794dcfc144d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16522586365774088198" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8204157134569246454" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14056339288715830530" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "afbb206ae6" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2859944036983949395" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15328882948314128116" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4632789388625891845" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1837349683772885924" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b8c8f0f3792" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39c2f34ee4064d9f83" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1561a08774644c" + } + ] + } + ] + }, + "cborHex": "d8669f1bb37e3a12bc484d659f4c868c312deffb25dd91e9445f9f1b351868e858593ef98047cf8794dcfc144d1be54c04c25ead4806ff9f1b71db0572477c8ef6ffd8669f1bc312261c024625029f9f45afbb206ae6ffbf1b27b08ff2f1ecc8531bd4bb21d359ce5ef41b404af967443ed2051b197f93cd7d758ba4469b8c8f0f37924939c2f34ee4064d9f83ff471561a08774644cffffffff", + "cborBytes": [ + 216, 102, 159, 27, 179, 126, 58, 18, 188, 72, 77, 101, 159, 76, 134, 140, 49, 45, 239, 251, 37, 221, 145, 233, 68, + 95, 159, 27, 53, 24, 104, 232, 88, 89, 62, 249, 128, 71, 207, 135, 148, 220, 252, 20, 77, 27, 229, 76, 4, 194, 94, + 173, 72, 6, 255, 159, 27, 113, 219, 5, 114, 71, 124, 142, 246, 255, 216, 102, 159, 27, 195, 18, 38, 28, 2, 70, 37, + 2, 159, 159, 69, 175, 187, 32, 106, 230, 255, 191, 27, 39, 176, 143, 242, 241, 236, 200, 83, 27, 212, 187, 33, + 211, 89, 206, 94, 244, 27, 64, 74, 249, 103, 68, 62, 210, 5, 27, 25, 127, 147, 205, 125, 117, 139, 164, 70, 155, + 140, 143, 15, 55, 146, 73, 57, 194, 243, 78, 228, 6, 77, 159, 131, 255, 71, 21, 97, 160, 135, 116, 100, 76, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1810, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15582716124003264584" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9122614310517178622" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dbbfd29be4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1266337166564475911" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2301053181417815218" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f1bd840edc106f768481b7e9a0961b94580fe9f45dbbfd29be4d8669f1b1192eef192f344079f1b1feefbad4fb0fcb2ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 27, 216, 64, 237, 193, 6, 247, 104, 72, 27, 126, + 154, 9, 97, 185, 69, 128, 254, 159, 69, 219, 191, 210, 155, 228, 216, 102, 159, 27, 17, 146, 238, 241, 146, 243, + 68, 7, 159, 27, 31, 238, 251, 173, 79, 176, 252, 178, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1811, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "857743268499844918" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e2e8b403" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13394990869145332392" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17132504591638799047" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c9a560bb6e820e6608c5d31" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12791156153699321492" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98d7a51f11b6fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2005992931264798017" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11230455438011643517" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17420125932037831386" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7653645419039095039" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f1b0be750f54b6a6f3644e2e8b4039fbf1bb9e49139cd022aa81bedc2e227796122c74c7c9a560bb6e820e6608c5d311bb18350c057ccc6944798d7a51f11b6fb1b1bd6b7f159fb9d41ff9f1b9bda97b82889b67dff1bf1c0b83d49af7adaff1b6a3735f5369ef8ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 11, 231, 80, 245, 75, 106, 111, 54, 68, 226, + 232, 180, 3, 159, 191, 27, 185, 228, 145, 57, 205, 2, 42, 168, 27, 237, 194, 226, 39, 121, 97, 34, 199, 76, 124, + 154, 86, 11, 182, 232, 32, 230, 96, 140, 93, 49, 27, 177, 131, 80, 192, 87, 204, 198, 148, 71, 152, 215, 165, 31, + 17, 182, 251, 27, 27, 214, 183, 241, 89, 251, 157, 65, 255, 159, 27, 155, 218, 151, 184, 40, 137, 182, 125, 255, + 27, 241, 192, 184, 61, 73, 175, 122, 218, 255, 27, 106, 55, 53, 245, 54, 158, 248, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1812, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12666577561943565613" + }, + "fields": [] + }, + "cborHex": "d8669f1bafc8b92ea394652d80ff", + "cborBytes": [216, 102, 159, 27, 175, 200, 185, 46, 163, 148, 101, 45, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1813, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5134190685054841667" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17046864265035510079" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7271589581193169891" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17012455681898097846" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "332419fda49434306c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5240475690766501221" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17779186622431101310" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8ab74506cd77285ffb" + } + ] + } + ] + }, + "cborHex": "d8669f1b47404f39d7d033439f02a0a01bec92a0bb1bbdf13fd8669f1b64e9e03293734be39fd8669f1bec18624e8c9cacb69f49332419fda49434306c1b48b9e8e022350565ffff1bf6bc5c08f162017e498ab74506cd77285ffbffffffff", + "cborBytes": [ + 216, 102, 159, 27, 71, 64, 79, 57, 215, 208, 51, 67, 159, 2, 160, 160, 27, 236, 146, 160, 187, 27, 189, 241, 63, + 216, 102, 159, 27, 100, 233, 224, 50, 147, 115, 75, 227, 159, 216, 102, 159, 27, 236, 24, 98, 78, 140, 156, 172, + 182, 159, 73, 51, 36, 25, 253, 164, 148, 52, 48, 108, 27, 72, 185, 232, 224, 34, 53, 5, 101, 255, 255, 27, 246, + 188, 92, 8, 241, 98, 1, 126, 73, 138, 183, 69, 6, 205, 119, 40, 95, 251, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1814, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7227640261908886168" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9867119446383100114" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7520921637743300985" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17803763641144597060" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5dd742d898b7d9" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b992da64" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3741896073517976841" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da587a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15482102952672932046" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cdcaf168" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7611233164061826396" + } + } + ] + }, + "cborHex": "d905069f9f9f1b644dbc864763f2981b88ef0cdbb60380d21b685fae61c93d1179ffd8669f1bf713acb407705a449f475dd742d898b7d9ffff9f44b992da641b33ede2a74877cd0943da587a1bd6db7a9b9618b0ceffff44cdcaf1681b69a0883c9693dd5cff", + "cborBytes": [ + 217, 5, 6, 159, 159, 159, 27, 100, 77, 188, 134, 71, 99, 242, 152, 27, 136, 239, 12, 219, 182, 3, 128, 210, 27, + 104, 95, 174, 97, 201, 61, 17, 121, 255, 216, 102, 159, 27, 247, 19, 172, 180, 7, 112, 90, 68, 159, 71, 93, 215, + 66, 216, 152, 183, 217, 255, 255, 159, 68, 185, 146, 218, 100, 27, 51, 237, 226, 167, 72, 119, 205, 9, 67, 218, + 88, 122, 27, 214, 219, 122, 155, 150, 24, 176, 206, 255, 255, 68, 205, 202, 241, 104, 27, 105, 160, 136, 60, 150, + 147, 221, 92, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1815, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d32d" + }, + { + "_tag": "ByteArray", + "bytearray": "80d3d50c8db5db13471e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9749229717707130440" + }, + "fields": [] + } + ] + }, + "cborHex": "d905029f42d32d4a80d3d50c8db5db13471ed8669f1b874c38c64d9d864880ffff", + "cborBytes": [ + 217, 5, 2, 159, 66, 211, 45, 74, 128, 211, 213, 12, 141, 181, 219, 19, 71, 30, 216, 102, 159, 27, 135, 76, 56, + 198, 77, 157, 134, 72, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1816, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2304439725977256053" + }, + "fields": [] + }, + "cborHex": "d8669f1b1ffb03b8a92c407580ff", + "cborBytes": [216, 102, 159, 27, 31, 251, 3, 184, 169, 44, 64, 117, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1817, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9226295553147663560" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17256364622232981722" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2742310651106061981" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e0bc20f7668dd8fb" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2351161250682544148" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f0d8d011ff2e6b" + }, + { + "_tag": "ByteArray", + "bytearray": "6b760d5ab2" + } + ] + }, + "cborHex": "d8669f1b800a62ec2e21f4c89fd8669f1bef7aec321ed090da80ffd8669f1b260ea501fef26e9d9f48e0bc20f7668dd8fbffff1b20a100b35498a01447f0d8d011ff2e6b456b760d5ab2ffff", + "cborBytes": [ + 216, 102, 159, 27, 128, 10, 98, 236, 46, 33, 244, 200, 159, 216, 102, 159, 27, 239, 122, 236, 50, 30, 208, 144, + 218, 128, 255, 216, 102, 159, 27, 38, 14, 165, 1, 254, 242, 110, 157, 159, 72, 224, 188, 32, 247, 102, 141, 216, + 251, 255, 255, 27, 32, 161, 0, 179, 84, 152, 160, 20, 71, 240, 216, 208, 17, 255, 46, 107, 69, 107, 118, 13, 90, + 178, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1818, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4417120103703706929" + }, + "fields": [] + }, + "cborHex": "d8669f1b3d4cc354d77efd3180ff", + "cborBytes": [216, 102, 159, 27, 61, 76, 195, 84, 215, 126, 253, 49, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1819, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11095992292663484080" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cd3253acf56037a8172d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13106958247102005114" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3684499022101939941" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1245525318128077330" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b5e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18044424182661185420" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4da958c524431a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13074585232792789134" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f613ff07" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0003" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1250216756103617614" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b99fce2337aaddeb09f4acd3253acf56037a8172dd905039f1bb5e5451504643f7affd8669f1b3321f856dba906e59fd8669f1b1148fead81c78a1280ff1bfffffffffffffff1420b5e9f1bfa6aac30cffcff8c474da958c524431a1bb57241ff422ea08e44f613ff0713ffffff4200039f1b1159a98407cc1c4effffff", + "cborBytes": [ + 216, 102, 159, 27, 153, 252, 226, 51, 122, 173, 222, 176, 159, 74, 205, 50, 83, 172, 245, 96, 55, 168, 23, 45, + 217, 5, 3, 159, 27, 181, 229, 69, 21, 4, 100, 63, 122, 255, 216, 102, 159, 27, 51, 33, 248, 86, 219, 169, 6, 229, + 159, 216, 102, 159, 27, 17, 72, 254, 173, 129, 199, 138, 18, 128, 255, 27, 255, 255, 255, 255, 255, 255, 255, 241, + 66, 11, 94, 159, 27, 250, 106, 172, 48, 207, 252, 255, 140, 71, 77, 169, 88, 197, 36, 67, 26, 27, 181, 114, 65, + 255, 66, 46, 160, 142, 68, 246, 19, 255, 7, 19, 255, 255, 255, 66, 0, 3, 159, 27, 17, 89, 169, 132, 7, 204, 28, + 78, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1820, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d905029fa0ff", + "cborBytes": [217, 5, 2, 159, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1821, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17193417766260276860" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15263562832958474148" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10202888196959789868" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14178255413359198711" + } + }, + { + "_tag": "ByteArray", + "bytearray": "801af36a4a2172bd661f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10557593574723089816" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "71602c5973c6047f29c1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9030451986991309011" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14679169082963147728" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9fd8669f1bee9b4a5d20d57e7c9fd8669f1bd3d31186d95847a49f1b8d97f0c206d0632c1bc4c3482dc808c1f74a801af36a4a2172bd661f1b92841b6b7050f598ffffffff809f4a71602c5973c6047f29c11b7d529c3c9dd660d3ff1bcbb6e281e3ea3bd0a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 216, 102, 159, 27, 238, 155, 74, 93, 32, 213, 126, + 124, 159, 216, 102, 159, 27, 211, 211, 17, 134, 217, 88, 71, 164, 159, 27, 141, 151, 240, 194, 6, 208, 99, 44, 27, + 196, 195, 72, 45, 200, 8, 193, 247, 74, 128, 26, 243, 106, 74, 33, 114, 189, 102, 31, 27, 146, 132, 27, 107, 112, + 80, 245, 152, 255, 255, 255, 255, 128, 159, 74, 113, 96, 44, 89, 115, 198, 4, 127, 41, 193, 27, 125, 82, 156, 60, + 157, 214, 96, 211, 255, 27, 203, 182, 226, 129, 227, 234, 59, 208, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1822, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2003915826547781625" + }, + "fields": [] + }, + "cborHex": "d8669f1b1bcf56d3b929eff980ff", + "cborBytes": [216, 102, 159, 27, 27, 207, 86, 211, 185, 41, 239, 249, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1823, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "511041201629370457" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3519422430561724582" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1167939490923430397" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13762084365740375034" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c95f2bc877831aa3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8511308722208481208" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c7a96" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16348127860313198830" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "caeeee334c23d6919c785c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9fbfd98fc041" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dd928afca4bf8fb262" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5944101358727189195" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11034941513328329781" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15577603578497749778" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "52b3a48306f052dfb5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5695462252291809652" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14271080369377725223" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13809069407153752209" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "233c9dd56ceb" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2661310245482472291" + } + } + ] + }, + "cborHex": "d8669f1b07179543e8b518599fd8669f1b30d7800dcc2c68a69fd8669f1b10355ac76ba441fd9f1bbefcbed0e4e97bfa48c95f2bc877831aa31b761e3e3020eb9fb8434c7a961be2e037ac40a290eeffff4bcaeeee334c23d6919c785cffff469fbfd98fc0419f9f49dd928afca4bf8fb2621b527db0b14bd9d2cb1b9923fcd73b258435ffd8669f1bd82ec3ebc436531280ff4952b3a48306f052dfb5bf1b4f0a58be1b7fe1741bc60d0ffc09cf4b271bbfa3ab76541d089146233c9dd56cebff80ff1b24eedf916b172363ffff", + "cborBytes": [ + 216, 102, 159, 27, 7, 23, 149, 67, 232, 181, 24, 89, 159, 216, 102, 159, 27, 48, 215, 128, 13, 204, 44, 104, 166, + 159, 216, 102, 159, 27, 16, 53, 90, 199, 107, 164, 65, 253, 159, 27, 190, 252, 190, 208, 228, 233, 123, 250, 72, + 201, 95, 43, 200, 119, 131, 26, 163, 27, 118, 30, 62, 48, 32, 235, 159, 184, 67, 76, 122, 150, 27, 226, 224, 55, + 172, 64, 162, 144, 238, 255, 255, 75, 202, 238, 238, 51, 76, 35, 214, 145, 156, 120, 92, 255, 255, 70, 159, 191, + 217, 143, 192, 65, 159, 159, 73, 221, 146, 138, 252, 164, 191, 143, 178, 98, 27, 82, 125, 176, 177, 75, 217, 210, + 203, 27, 153, 35, 252, 215, 59, 37, 132, 53, 255, 216, 102, 159, 27, 216, 46, 195, 235, 196, 54, 83, 18, 128, 255, + 73, 82, 179, 164, 131, 6, 240, 82, 223, 181, 191, 27, 79, 10, 88, 190, 27, 127, 225, 116, 27, 198, 13, 15, 252, 9, + 207, 75, 39, 27, 191, 163, 171, 118, 84, 29, 8, 145, 70, 35, 60, 157, 213, 108, 235, 255, 128, 255, 27, 36, 238, + 223, 145, 107, 23, 35, 99, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1824, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1779838563129850091" + }, + "fields": [] + }, + "cborHex": "d8669f1b18b341be40e578eb80ff", + "cborBytes": [216, 102, 159, 27, 24, 179, 65, 190, 64, 229, 120, 235, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1825, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13204277282649189195" + }, + "fields": [] + }, + "cborHex": "d8669f1bb73f043ab410ab4b80ff", + "cborBytes": [216, 102, 159, 27, 183, 63, 4, 58, 180, 16, 171, 75, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1826, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18381209104005115201" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13064141740721459446" + } + }, + { + "_tag": "ByteArray", + "bytearray": "67ccf14d" + }, + { + "_tag": "ByteArray", + "bytearray": "f494" + }, + { + "_tag": "ByteArray", + "bytearray": "34dd" + }, + { + "_tag": "ByteArray", + "bytearray": "3df5b8b09571" + } + ] + } + ] + } + ] + }, + "cborHex": "d87e9fd8669f1bff172c4ad266ad419f809f1bb54d27b2470e50f64467ccf14d42f4944234dd463df5b8b09571ffffffff", + "cborBytes": [ + 216, 126, 159, 216, 102, 159, 27, 255, 23, 44, 74, 210, 102, 173, 65, 159, 128, 159, 27, 181, 77, 39, 178, 71, 14, + 80, 246, 68, 103, 204, 241, 77, 66, 244, 148, 66, 52, 221, 70, 61, 245, 184, 176, 149, 113, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1827, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11606060053102621149" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + ] + }, + "cborHex": "d8669f1ba1110220730871dd9f1bfffffffffffffff5ffff", + "cborBytes": [ + 216, 102, 159, 27, 161, 17, 2, 32, 115, 8, 113, 221, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1828, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8316501961106120217" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "214e41cbfcf3c38104" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52e1141c31" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d9025335f3273869b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f5bbb88ce8729fd73" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6086060521393002442" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5abe2f673ec5c1387efb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4077438399931354545" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c425309056b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c81a064e938cf5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d91366" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17902933475031690171" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4544503269103412154" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "852a2f111fd9e8a63297f430" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12453279261784349354" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12776605930766981799" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3185183105828926470" + } + }, + { + "_tag": "ByteArray", + "bytearray": "44dc99" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c2" + }, + { + "_tag": "ByteArray", + "bytearray": "7572f821b0192fdb" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13397485032038724735" + } + } + ] + }, + "cborHex": "d8669f1b736a26788d91de199f9fbf49214e41cbfcf3c381044552e1141c31494d9025335f3273869b41b5494f5bbb88ce8729fd731b547607cc832897ca4a5abe2f673ec5c1387efb1b3895f89f1d720db1467c425309056b47c81a064e938cf543d913661bf873ff2448b6abbbffd8669f1b3f1151a53b82a3ba9f4c852a2f111fd9e8a63297f4301bacd2ef821f651aaa1bb14f9f669283daa71b2c340b28af8234064344dc99ffff9f41c2487572f821b0192fdbffff1bb9ed6da75a47f47fffff", + "cborBytes": [ + 216, 102, 159, 27, 115, 106, 38, 120, 141, 145, 222, 25, 159, 159, 191, 73, 33, 78, 65, 203, 252, 243, 195, 129, + 4, 69, 82, 225, 20, 28, 49, 73, 77, 144, 37, 51, 95, 50, 115, 134, 155, 65, 181, 73, 79, 91, 187, 136, 206, 135, + 41, 253, 115, 27, 84, 118, 7, 204, 131, 40, 151, 202, 74, 90, 190, 47, 103, 62, 197, 193, 56, 126, 251, 27, 56, + 149, 248, 159, 29, 114, 13, 177, 70, 124, 66, 83, 9, 5, 107, 71, 200, 26, 6, 78, 147, 140, 245, 67, 217, 19, 102, + 27, 248, 115, 255, 36, 72, 182, 171, 187, 255, 216, 102, 159, 27, 63, 17, 81, 165, 59, 130, 163, 186, 159, 76, + 133, 42, 47, 17, 31, 217, 232, 166, 50, 151, 244, 48, 27, 172, 210, 239, 130, 31, 101, 26, 170, 27, 177, 79, 159, + 102, 146, 131, 218, 167, 27, 44, 52, 11, 40, 175, 130, 52, 6, 67, 68, 220, 153, 255, 255, 159, 65, 194, 72, 117, + 114, 248, 33, 176, 25, 47, 219, 255, 255, 27, 185, 237, 109, 167, 90, 71, 244, 127, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1829, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14236371883580005983" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6316952100661703519" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2905515886690373101" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6109631731379077789" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8362204177050122669" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bc591c0ccf3251e5f9f1b57aa52778719335f9fd8669f1b2852774e0b6f0ded9f1b54c9c5b0814e029d1b740c8464e85c39adffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 197, 145, 192, 204, 243, 37, 30, 95, 159, 27, 87, 170, 82, 119, 135, 25, 51, 95, 159, 216, 102, + 159, 27, 40, 82, 119, 78, 11, 111, 13, 237, 159, 27, 84, 201, 197, 176, 129, 78, 2, 157, 27, 116, 12, 132, 100, + 232, 92, 57, 173, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1830, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6374868281881434357" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a5386b31" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + }, + "cborHex": "d8669f1b587814ed477298f59f44a5386b3101ffff", + "cborBytes": [216, 102, 159, 27, 88, 120, 20, 237, 71, 114, 152, 245, 159, 68, 165, 56, 107, 49, 1, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1831, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7847998472949061165" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7626824891010956773" + } + }, + { + "_tag": "ByteArray", + "bytearray": "be405c1b35db4c1cb999be1a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8079" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "828e9a15f149051471d4b7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0e3303f41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f12537a22d447d32e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14255705703214732640" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfc0f7e5616a505a1cfb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9272e221317acf27206511" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6ce9b107d9efd62d9f1b69d7ecd468d0bde54cbe405c1b35db4c1cb999be1abf4280794b828e9a15f149051471d4b745a0e3303f41497f12537a22d447d32e41be1bc5d670ce9e9fd5604adfc0f7e5616a505a1cfb4b9272e221317acf27206511ffffff", + "cborBytes": [ + 216, 102, 159, 27, 108, 233, 177, 7, 217, 239, 214, 45, 159, 27, 105, 215, 236, 212, 104, 208, 189, 229, 76, 190, + 64, 92, 27, 53, 219, 76, 28, 185, 153, 190, 26, 191, 66, 128, 121, 75, 130, 142, 154, 21, 241, 73, 5, 20, 113, + 212, 183, 69, 160, 227, 48, 63, 65, 73, 127, 18, 83, 122, 34, 212, 71, 211, 46, 65, 190, 27, 197, 214, 112, 206, + 158, 159, 213, 96, 74, 223, 192, 247, 229, 97, 106, 80, 90, 28, 251, 75, 146, 114, 226, 33, 49, 122, 207, 39, 32, + 101, 17, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1832, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "149781095349931808" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2608265077572404181" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "594881b654a03b1a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7705559448698063910" + } + }, + { + "_tag": "ByteArray", + "bytearray": "21f787069ed2e2bf642107" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12703343244595694124" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "22f6fb0cf5fc2954cef4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2884871996351353218" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "870011417389387299" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c6aefb5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18076990165244336172" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03d0611cf50d4b06616aa285" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1422530526611215672" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "621381c3e01e8c91aa31" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3078393124400481630" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a96c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11012133000247098777" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f45a46dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79fd8669f1b0214211cd666cf209fd8669f1b24326b44d4c283d59f48594881b654a03b1a1b6aefa57e274d8c264b21f787069ed2e2bf642107ffff1bb04b576031fc0a2cffff9fa04a22f6fb0cf5fc2954cef4d8669f1b28091fcbc4fe91829f1b0c12e6c64c074e23444c6aefb51bfade5ec77f9e582cffffffbf4c03d0611cf50d4b06616aa2851b13bdd7fa20cf95384a621381c3e01e8c91aa311b2ab8a63c92e5455e42a96c1b98d2f49e7315bd9944f45a46dd4194ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 216, 102, 159, 27, 2, 20, 33, 28, 214, 102, 207, + 32, 159, 216, 102, 159, 27, 36, 50, 107, 68, 212, 194, 131, 213, 159, 72, 89, 72, 129, 182, 84, 160, 59, 26, 27, + 106, 239, 165, 126, 39, 77, 140, 38, 75, 33, 247, 135, 6, 158, 210, 226, 191, 100, 33, 7, 255, 255, 27, 176, 75, + 87, 96, 49, 252, 10, 44, 255, 255, 159, 160, 74, 34, 246, 251, 12, 245, 252, 41, 84, 206, 244, 216, 102, 159, 27, + 40, 9, 31, 203, 196, 254, 145, 130, 159, 27, 12, 18, 230, 198, 76, 7, 78, 35, 68, 76, 106, 239, 181, 27, 250, 222, + 94, 199, 127, 158, 88, 44, 255, 255, 255, 191, 76, 3, 208, 97, 28, 245, 13, 75, 6, 97, 106, 162, 133, 27, 19, 189, + 215, 250, 32, 207, 149, 56, 74, 98, 19, 129, 195, 224, 30, 140, 145, 170, 49, 27, 42, 184, 166, 60, 146, 229, 69, + 94, 66, 169, 108, 27, 152, 210, 244, 158, 115, 21, 189, 153, 68, 244, 90, 70, 221, 65, 148, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1833, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4089738096797960342" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "36d6a68e59ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3276422283226733131" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "40d7eb439826cf8eeff1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8300857998476260647" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6a769ab04bff680" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8480523942283367145" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "872a54e665a38fd49b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1367949454933604504" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6417877061952304236" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9bc31935f286ace686463bd1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1746147404140569860" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b38c1ab21740648969f4636d6a68e59ed1b2d7830b515e75a4b9f4a40d7eb439826cf8eeff11b7332925eaa23352748d6a769ab04bff6801b75b0df9800fed2e99f49872a54e665a38fd49b1b12fbeec81401b8981b5910e12f39cb746c4c9bc31935f286ace686463bd11b183b8fd00544e504ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 56, 193, 171, 33, 116, 6, 72, 150, 159, 70, 54, 214, 166, 142, 89, 237, 27, 45, 120, 48, 181, + 21, 231, 90, 75, 159, 74, 64, 215, 235, 67, 152, 38, 207, 142, 239, 241, 27, 115, 50, 146, 94, 170, 35, 53, 39, + 72, 214, 167, 105, 171, 4, 191, 246, 128, 27, 117, 176, 223, 152, 0, 254, 210, 233, 159, 73, 135, 42, 84, 230, + 101, 163, 143, 212, 155, 27, 18, 251, 238, 200, 20, 1, 184, 152, 27, 89, 16, 225, 47, 57, 203, 116, 108, 76, 155, + 195, 25, 53, 242, 134, 172, 230, 134, 70, 59, 209, 27, 24, 59, 143, 208, 5, 68, 229, 4, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1834, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5830992571276844304" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "39ae6ce1fcde45b832879c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6849a1cf7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d72af586e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05a2c43e84" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2375138797772276012" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15593658995667832518" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15749205596664161611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b1680ed55bb6626dd7733f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "244189d82674620e" + } + ] + }, + "cborHex": "d8669f1b50ebd8d982e5dd109fbf4b39ae6ce1fcde45b832879c45c6849a1cf745d72af586e24505a2c43e84ff9f1b20f630270d77012c1bd867ce3ce15b0ec6ffd8669f1bda906b0c1bc2e54b9f4bb1680ed55bb6626dd7733fffff48244189d82674620effff", + "cborBytes": [ + 216, 102, 159, 27, 80, 235, 216, 217, 130, 229, 221, 16, 159, 191, 75, 57, 174, 108, 225, 252, 222, 69, 184, 50, + 135, 156, 69, 198, 132, 154, 28, 247, 69, 215, 42, 245, 134, 226, 69, 5, 162, 196, 62, 132, 255, 159, 27, 32, 246, + 48, 39, 13, 119, 1, 44, 27, 216, 103, 206, 60, 225, 91, 14, 198, 255, 216, 102, 159, 27, 218, 144, 107, 12, 27, + 194, 229, 75, 159, 75, 177, 104, 14, 213, 91, 182, 98, 109, 215, 115, 63, 255, 255, 72, 36, 65, 137, 216, 38, 116, + 98, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1835, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2844cca7dec87e39" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c40b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9215bb4" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8019715565042242507" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "199759615547054621" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0e8d55eaa1" + } + ] + } + ] + }, + "cborHex": "d87c9f9f482844cca7dec87e39bf42c40b44b9215bb4ff1b6f4bc0d0ee0393cb1b02c5b04fdd269a1d450e8d55eaa1ffff", + "cborBytes": [ + 216, 124, 159, 159, 72, 40, 68, 204, 167, 222, 200, 126, 57, 191, 66, 196, 11, 68, 185, 33, 91, 180, 255, 27, 111, + 75, 192, 208, 238, 3, 147, 203, 27, 2, 197, 176, 79, 221, 38, 154, 29, 69, 14, 141, 85, 234, 161, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1836, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0390070602fcf8ff" + } + ] + }, + "cborHex": "d87f9f480390070602fcf8ffff", + "cborBytes": [216, 127, 159, 72, 3, 144, 7, 6, 2, 252, 248, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1837, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7431639544831746369" + }, + "fields": [] + }, + "cborHex": "d8669f1b67227ccaa071214180ff", + "cborBytes": [216, 102, 159, 27, 103, 34, 124, 202, 160, 113, 33, 65, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1838, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15656977788814434361" + }, + "fields": [] + }, + "cborHex": "d8669f1bd948c2583e77203980ff", + "cborBytes": [216, 102, 159, 27, 217, 72, 194, 88, 62, 119, 32, 57, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1839, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12715870800050385740" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2993840092777028203" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13834318978064893822" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c32beebfaaa42" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15518558880083927992" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce5ddea31e3b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "405252668139299415" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de728e35bcf2dfc9bd44" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3473390034341963073" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9b5d85" + }, + { + "_tag": "ByteArray", + "bytearray": "9c52fb0c350ac9" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "121e9500f6d531c33906f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12187727683106070892" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f50dd750b2abe02a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4866370570036143411" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68ef28" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5258368407304027824" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14127766025538199933" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d8af8d6b17ae15d3c7" + }, + { + "_tag": "ByteArray", + "bytearray": "c9bde530c1131cbf7f97" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "50" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2ee26e0970926e8c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b3e2" + }, + { + "_tag": "ByteArray", + "bytearray": "8dff34215546" + }, + { + "_tag": "ByteArray", + "bytearray": "5315" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3705696942223412910" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4816590201887862684" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "81b41a293f113f132c7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2874190036977110498" + } + }, + { + "_tag": "ByteArray", + "bytearray": "11" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bb077d91efec3f34c9fd8669f1b298c41b3cc4c1a6b9fbf1bbffd5fd02d00c77e470c32beebfaaa421bd75cff14a162e3b846ce5ddea31e3bff9f1b059fbf2790b8e2574ade728e35bcf2dfc9bd441b3033f5d55b55a541439b5d85479c52fb0c350ac9ffbf4b121e9500f6d531c33906f61ba92381c122bb616c491f50dd750b2abe02a81b4388d240146b65334368ef281b48f97a34d77e3eb041ad1bc40fe8591e09617dff49d8af8d6b17ae15d3c74ac9bde530c1131cbf7f97ffff41509f482ee26e0970926e8c9f42b3e2468dff34215546425315ff9f1b336d47bc3e7a4eaeff1b42d7f744ec272f9c9f4a81b41a293f113f132c7b1b27e32c9c4afccde24111ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 176, 119, 217, 30, 254, 195, 243, 76, 159, 216, 102, 159, 27, 41, 140, 65, 179, 204, 76, 26, + 107, 159, 191, 27, 191, 253, 95, 208, 45, 0, 199, 126, 71, 12, 50, 190, 235, 250, 170, 66, 27, 215, 92, 255, 20, + 161, 98, 227, 184, 70, 206, 93, 222, 163, 30, 59, 255, 159, 27, 5, 159, 191, 39, 144, 184, 226, 87, 74, 222, 114, + 142, 53, 188, 242, 223, 201, 189, 68, 27, 48, 51, 245, 213, 91, 85, 165, 65, 67, 155, 93, 133, 71, 156, 82, 251, + 12, 53, 10, 201, 255, 191, 75, 18, 30, 149, 0, 246, 213, 49, 195, 57, 6, 246, 27, 169, 35, 129, 193, 34, 187, 97, + 108, 73, 31, 80, 221, 117, 11, 42, 190, 2, 168, 27, 67, 136, 210, 64, 20, 107, 101, 51, 67, 104, 239, 40, 27, 72, + 249, 122, 52, 215, 126, 62, 176, 65, 173, 27, 196, 15, 232, 89, 30, 9, 97, 125, 255, 73, 216, 175, 141, 107, 23, + 174, 21, 211, 199, 74, 201, 189, 229, 48, 193, 19, 28, 191, 127, 151, 255, 255, 65, 80, 159, 72, 46, 226, 110, 9, + 112, 146, 110, 140, 159, 66, 179, 226, 70, 141, 255, 52, 33, 85, 70, 66, 83, 21, 255, 159, 27, 51, 109, 71, 188, + 62, 122, 78, 174, 255, 27, 66, 215, 247, 68, 236, 39, 47, 156, 159, 74, 129, 180, 26, 41, 63, 17, 63, 19, 44, 123, + 27, 39, 227, 44, 156, 74, 252, 205, 226, 65, 17, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1840, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3546198628348297453" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0307fc6efc5d9cab8600038c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8323074997018520818" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8318926035421552576" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29fbf110b1b3136a0dd29ad80ed4c0307fc6efc5d9cab8600038c1b7381809cbc396cf2131bfffffffffffffffc1b7372c327560cdfc0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 191, 17, 11, 27, 49, 54, 160, 221, 41, 173, 128, + 237, 76, 3, 7, 252, 110, 252, 93, 156, 171, 134, 0, 3, 140, 27, 115, 129, 128, 156, 188, 57, 108, 242, 19, 27, + 255, 255, 255, 255, 255, 255, 255, 252, 27, 115, 114, 195, 39, 86, 12, 223, 192, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1841, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "299854580258765745" + }, + "fields": [] + }, + "cborHex": "d8669f1b04294c26ec98fbb180ff", + "cborBytes": [216, 102, 159, 27, 4, 41, 76, 38, 236, 152, 251, 177, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1842, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06c110" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "523208233456921827" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c602e9799513cfd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "959119207239820360" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "617a8106" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14386832605506934229" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13675079300134466050" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16013262157580271534" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b8fc3a0c859" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14758377950882032925" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14780244659508728585" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1820224328833837553" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1274964938849064292" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4069367811440208837" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "137463ae3f51b7629eb37b73" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5004219294067949565" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acabc44ded" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7105169394930741232" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6599373593134884347" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10292245701087719198" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10745014365351288585" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12691718767525672138" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1631bcda6e123552b9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14802210900348459408" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15925011938407983346" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6ed737a48f453c716cb2a2" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59fbf4306c11041c9ffbf1b0742cf1dc2c26ce3481c602e9799513cfd1b0d4f79d65cc8a44844617a81061bc7a84c07ae3f95d51bbdc7a42b77cff202ff1bde3a891725c6ffae465b8fc3a0c859d8669f1bccd04a8d9747ed1d9f9f1bcd1dfa356f61d3091b1942bc6213aa29f11b11b195db592d1564ffbf1b38794c76cd4d6bc54c137463ae3f51b7629eb37b731b45728eef39137ffd45acabc44ded1b629aa1eb7dd2eff01b5b95af5166e5e5fb1b8ed566ef3a5fef1e1b951df5a2c13b9f091bb0220af9b786b4ca491631bcda6e123552b91bcd6c04636daf59901bdd0101fbd0a9a8f2ff4b6ed737a48f453c716cb2a2ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 191, 67, 6, 193, 16, 65, 201, 255, 191, 27, 7, 66, + 207, 29, 194, 194, 108, 227, 72, 28, 96, 46, 151, 153, 81, 60, 253, 27, 13, 79, 121, 214, 92, 200, 164, 72, 68, + 97, 122, 129, 6, 27, 199, 168, 76, 7, 174, 63, 149, 213, 27, 189, 199, 164, 43, 119, 207, 242, 2, 255, 27, 222, + 58, 137, 23, 37, 198, 255, 174, 70, 91, 143, 195, 160, 200, 89, 216, 102, 159, 27, 204, 208, 74, 141, 151, 71, + 237, 29, 159, 159, 27, 205, 29, 250, 53, 111, 97, 211, 9, 27, 25, 66, 188, 98, 19, 170, 41, 241, 27, 17, 177, 149, + 219, 89, 45, 21, 100, 255, 191, 27, 56, 121, 76, 118, 205, 77, 107, 197, 76, 19, 116, 99, 174, 63, 81, 183, 98, + 158, 179, 123, 115, 27, 69, 114, 142, 239, 57, 19, 127, 253, 69, 172, 171, 196, 77, 237, 27, 98, 154, 161, 235, + 125, 210, 239, 240, 27, 91, 149, 175, 81, 102, 229, 229, 251, 27, 142, 213, 102, 239, 58, 95, 239, 30, 27, 149, + 29, 245, 162, 193, 59, 159, 9, 27, 176, 34, 10, 249, 183, 134, 180, 202, 73, 22, 49, 188, 218, 110, 18, 53, 82, + 185, 27, 205, 108, 4, 99, 109, 175, 89, 144, 27, 221, 1, 1, 251, 208, 169, 168, 242, 255, 75, 110, 215, 55, 164, + 143, 69, 60, 113, 108, 178, 162, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1843, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15755028348716374809" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8583778445650881489" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "597423864647979751" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bcadf56b93" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4700226617621573648" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0e" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6546794420901260650" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10763053501604091696" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16905800145756665870" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6853480056067530536" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46ebdacb8a0a59" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7047732945914500144" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5938505639128413791" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10879629142361559541" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6bcd8d20f95e900c71" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14206377515118125776" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "573b37e48825be8fc90e2a84" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17431026871194805505" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1510055406539156066" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "663ea172b6dd96" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11103543192069007859" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1855385962603373339" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2084115246932506726" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bdaa51acf3772db199fd8669f1b771fb5047bacebd19fd8669f1b084a79d6f0af12e79f45bcadf56b931b413a8f34b32b7010410effff80d8669f1b5adae2d6e3542d6a9f1b955e0c2275a2d730ffffffffd8669f1bea9d77a96b92b80e9fbf1b5f1c73ccb9211f284746ebdacb8a0a591b61ce93c6190d14301b5269cf6a4ce7365f1b96fc350fee72d1f5496bcd8d20f95e900c711bc5273114d5b662d04c573b37e48825be8fc90e2a841bf1e77295f7dae5011b14f4cb6441ecaa62ff47663ea172b6dd961b9a17b5b43f7ae9f3d8669f1b19bfa7b3e638631b9f1b1cec43c664633866ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 218, 165, 26, 207, 55, 114, 219, 25, 159, 216, 102, 159, 27, 119, 31, 181, 4, 123, 172, 235, + 209, 159, 216, 102, 159, 27, 8, 74, 121, 214, 240, 175, 18, 231, 159, 69, 188, 173, 245, 107, 147, 27, 65, 58, + 143, 52, 179, 43, 112, 16, 65, 14, 255, 255, 128, 216, 102, 159, 27, 90, 218, 226, 214, 227, 84, 45, 106, 159, 27, + 149, 94, 12, 34, 117, 162, 215, 48, 255, 255, 255, 255, 216, 102, 159, 27, 234, 157, 119, 169, 107, 146, 184, 14, + 159, 191, 27, 95, 28, 115, 204, 185, 33, 31, 40, 71, 70, 235, 218, 203, 138, 10, 89, 27, 97, 206, 147, 198, 25, + 13, 20, 48, 27, 82, 105, 207, 106, 76, 231, 54, 95, 27, 150, 252, 53, 15, 238, 114, 209, 245, 73, 107, 205, 141, + 32, 249, 94, 144, 12, 113, 27, 197, 39, 49, 20, 213, 182, 98, 208, 76, 87, 59, 55, 228, 136, 37, 190, 143, 201, + 14, 42, 132, 27, 241, 231, 114, 149, 247, 218, 229, 1, 27, 20, 244, 203, 100, 65, 236, 170, 98, 255, 71, 102, 62, + 161, 114, 182, 221, 150, 27, 154, 23, 181, 180, 63, 122, 233, 243, 216, 102, 159, 27, 25, 191, 167, 179, 230, 56, + 99, 27, 159, 27, 28, 236, 67, 198, 100, 99, 56, 102, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1844, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9414959674909182596" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10116503951315761819" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8888862497700756968" + } + }, + { + "_tag": "ByteArray", + "bytearray": "605f8b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2428115007754134756" + } + } + ] + } + ] + }, + "cborHex": "d905039f9f9f1b82a8a7f11596ca841b8c650abe8302fa9b1b7b5b9558b0bebde843605f8bff1b21b265bc1efae4e4ffff", + "cborBytes": [ + 217, 5, 3, 159, 159, 159, 27, 130, 168, 167, 241, 21, 150, 202, 132, 27, 140, 101, 10, 190, 131, 2, 250, 155, 27, + 123, 91, 149, 88, 176, 190, 189, 232, 67, 96, 95, 139, 255, 27, 33, 178, 101, 188, 30, 250, 228, 228, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1845, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6544439078248250701" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16838249840020237555" + } + } + ] + }, + "cborHex": "d8669f1b5ad284aaf12bfd4d9f1be9ad7b0441af2cf3ffff", + "cborBytes": [ + 216, 102, 159, 27, 90, 210, 132, 170, 241, 43, 253, 77, 159, 27, 233, 173, 123, 4, 65, 175, 44, 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1846, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2826610140602428551" + }, + "fields": [] + }, + "cborHex": "d8669f1b273a22f2651fec8780ff", + "cborBytes": [216, 102, 159, 27, 39, 58, 34, 242, 101, 31, 236, 135, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1847, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "33636b51" + } + ] + }, + "cborHex": "d9050a9f4433636b51ff", + "cborBytes": [217, 5, 10, 159, 68, 51, 99, 107, 81, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1848, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10619836056619274166" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6642932105149229105" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3064087960549418155" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c4536d68" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5fe8a3853b868f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2176385871591127192" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1442157691939366349" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ed9de6d8068e52a823" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2709357491576162618" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8698e2" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9321732373495164787" + } + } + ] + }, + "cborHex": "d8669f1b93613ca08fad4fb69f1b5c306f8dca7528311b2a85d3c4111964ab9f44c4536d68a0475fe8a3853b868fd8669f1b1e34136b525e38989f1b140392c7aa24a5cd49ed9de6d8068e52a8231b25999248a6f0c93a438698e2ffffff1b815d72347d702f73ffff", + "cborBytes": [ + 216, 102, 159, 27, 147, 97, 60, 160, 143, 173, 79, 182, 159, 27, 92, 48, 111, 141, 202, 117, 40, 49, 27, 42, 133, + 211, 196, 17, 25, 100, 171, 159, 68, 196, 83, 109, 104, 160, 71, 95, 232, 163, 133, 59, 134, 143, 216, 102, 159, + 27, 30, 52, 19, 107, 82, 94, 56, 152, 159, 27, 20, 3, 146, 199, 170, 36, 165, 205, 73, 237, 157, 230, 216, 6, 142, + 82, 168, 35, 27, 37, 153, 146, 72, 166, 240, 201, 58, 67, 134, 152, 226, 255, 255, 255, 27, 129, 93, 114, 52, 125, + 112, 47, 115, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1849, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15115816799417783978" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13526132432530542052" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18417113367783899869" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18196790754958120418" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11206547442595933788" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "48a261219d" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4168786977665806080" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17904595255725033558" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15752633191122847443" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10791890499343509347" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16655176619447594662" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6744256971383728853" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f1bd1c62b4ac32dd6aa9fd8669f1bbbb679c869df8de49f1bff96bb07aadb82dd1bfc87fcc7e96415e21b9b85a786327e2e5cffff4548a261219da0ffbf1b39da81ab440b6f001bf879e685c0a288561bda9c986d21e7c6d31b95c47f3b344867631be72312e47990aea61b5d9869fb9d476ad5ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 27, 209, 198, 43, 74, 195, 45, 214, 170, 159, 216, + 102, 159, 27, 187, 182, 121, 200, 105, 223, 141, 228, 159, 27, 255, 150, 187, 7, 170, 219, 130, 221, 27, 252, 135, + 252, 199, 233, 100, 21, 226, 27, 155, 133, 167, 134, 50, 126, 46, 92, 255, 255, 69, 72, 162, 97, 33, 157, 160, + 255, 191, 27, 57, 218, 129, 171, 68, 11, 111, 0, 27, 248, 121, 230, 133, 192, 162, 136, 86, 27, 218, 156, 152, + 109, 33, 231, 198, 211, 27, 149, 196, 127, 59, 52, 72, 103, 99, 27, 231, 35, 18, 228, 121, 144, 174, 166, 27, 93, + 152, 105, 251, 157, 71, 106, 213, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1850, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6185208526600980376" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10694829893356055567" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c276a52b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2267623086840338869" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "940cbcb789060761" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d993685c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a702e4ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "357002648121413331" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "becf0631998a1ba297ba0590" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13820376284130067187" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c75af4782321b315" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3306588110843568802" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6937141335644106886" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4df777c7bf51893d2bd12" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9684721864633488729" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7810338586698059950" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10149183927082545273" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4919960221090783844" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11739366809728219403" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3591360763626670836" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16405556933902214683" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3441930803410217362" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4887794c2766bc3fea52" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2256753822608630235" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e2ded27752e4b6e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a324ae7220f5790f4a58" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da8f13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31d77400da69ac4e334525" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b55d6466261c4c7989fa0d8669f1b946bab1fd6b76c0f9fbf451c276a52b31b1f78372edf97d9b548940cbcb78906076144d993685c44a702e4ec1b04f4540459268ed34cbecf0631998a1ba297ba05901bbfcbd701c5ce42f3ffbf48c75af4782321b3151b2de35c5e255c62a2ffbf1b6045ad4a4bbef0864be4df777c7bf51893d2bd121b86670b3959f015591b6c63e5904baa10ae1b8cd925024ddbf0791b444735c1072b22641ba2ea9bea65dc790b1b31d71396303e4af41be3ac3f1c6bb0261b41f3ff1b2fc431d45ebda992ffffbf4a4887794c2766bc3fea521b1f5199a51617a1db485e2ded27752e4b6e4aa324ae7220f5790f4a5843da8f134b31d77400da69ac4e334525ffffff", + "cborBytes": [ + 216, 102, 159, 27, 85, 214, 70, 98, 97, 196, 199, 152, 159, 160, 216, 102, 159, 27, 148, 107, 171, 31, 214, 183, + 108, 15, 159, 191, 69, 28, 39, 106, 82, 179, 27, 31, 120, 55, 46, 223, 151, 217, 181, 72, 148, 12, 188, 183, 137, + 6, 7, 97, 68, 217, 147, 104, 92, 68, 167, 2, 228, 236, 27, 4, 244, 84, 4, 89, 38, 142, 211, 76, 190, 207, 6, 49, + 153, 138, 27, 162, 151, 186, 5, 144, 27, 191, 203, 215, 1, 197, 206, 66, 243, 255, 191, 72, 199, 90, 244, 120, 35, + 33, 179, 21, 27, 45, 227, 92, 94, 37, 92, 98, 162, 255, 191, 27, 96, 69, 173, 74, 75, 190, 240, 134, 75, 228, 223, + 119, 124, 123, 245, 24, 147, 210, 189, 18, 27, 134, 103, 11, 57, 89, 240, 21, 89, 27, 108, 99, 229, 144, 75, 170, + 16, 174, 27, 140, 217, 37, 2, 77, 219, 240, 121, 27, 68, 71, 53, 193, 7, 43, 34, 100, 27, 162, 234, 155, 234, 101, + 220, 121, 11, 27, 49, 215, 19, 150, 48, 62, 74, 244, 27, 227, 172, 63, 28, 107, 176, 38, 27, 65, 243, 255, 27, 47, + 196, 49, 212, 94, 189, 169, 146, 255, 255, 191, 74, 72, 135, 121, 76, 39, 102, 188, 63, 234, 82, 27, 31, 81, 153, + 165, 22, 23, 161, 219, 72, 94, 45, 237, 39, 117, 46, 75, 110, 74, 163, 36, 174, 114, 32, 245, 121, 15, 74, 88, 67, + 218, 143, 19, 75, 49, 215, 116, 0, 218, 105, 172, 78, 51, 69, 37, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1851, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7283031982488563017" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905029f9f1b651287003c0a2d49ff80ff", + "cborBytes": [217, 5, 2, 159, 159, 27, 101, 18, 135, 0, 60, 10, 45, 73, 255, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1852, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11361631745531150448" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8deb7d1bff532cda" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11650615035138660941" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1577259064142919261" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12812653043326523928" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "936cd6" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4900660048229115079" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10103651001142174370" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e0cab4f790048a9a011d31" + }, + { + "_tag": "ByteArray", + "bytearray": "ac333b70" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6961217327812750486" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17b033d5799a756f55ba3c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3513308399547327447" + } + } + ] + } + ] + }, + "cborHex": "d905079fbf1b9dac9fe0452f8070488deb7d1bff532cda1ba1af4ca59843da4d1b15e38cc31d00f65d1bb1cfb00efdce1a1843936cd6ffd8669f1b4402a4595ba524c79f9f1b8c37610dd99962a24be0cab4f790048a9a011d3144ac333b701b609b36470c92ac964b17b033d5799a756f55ba3cff1b30c1c760056a23d7ffffff", + "cborBytes": [ + 217, 5, 7, 159, 191, 27, 157, 172, 159, 224, 69, 47, 128, 112, 72, 141, 235, 125, 27, 255, 83, 44, 218, 27, 161, + 175, 76, 165, 152, 67, 218, 77, 27, 21, 227, 140, 195, 29, 0, 246, 93, 27, 177, 207, 176, 14, 253, 206, 26, 24, + 67, 147, 108, 214, 255, 216, 102, 159, 27, 68, 2, 164, 89, 91, 165, 36, 199, 159, 159, 27, 140, 55, 97, 13, 217, + 153, 98, 162, 75, 224, 202, 180, 247, 144, 4, 138, 154, 1, 29, 49, 68, 172, 51, 59, 112, 27, 96, 155, 54, 71, 12, + 146, 172, 150, 75, 23, 176, 51, 213, 121, 154, 117, 111, 85, 186, 60, 255, 27, 48, 193, 199, 96, 5, 106, 35, 215, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1853, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0e76c6" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f430e76c6ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 67, 14, 118, 198, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1854, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16621087306545794082" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18371387225723775667" + } + } + ] + } + ] + }, + "cborHex": "d8669f1be6a9f6d7cf6a8c229f9f1bfef44758946a2ab3ffffff", + "cborBytes": [ + 216, 102, 159, 27, 230, 169, 246, 215, 207, 106, 140, 34, 159, 159, 27, 254, 244, 71, 88, 148, 106, 42, 179, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1855, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10149486038433509486" + } + }, + { + "_tag": "ByteArray", + "bytearray": "27b9ef62c9187563a385433a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "42a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7935882385568368039" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "576046c3d838" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60ec233b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7646053df6be94c0913f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15c8427559" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4b5c1b245da0224" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10124125723454166523" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8def73742c4ab10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cc129" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9145374950808529615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2988063696603454355" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12019601883009596324" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "385f60bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7719074088dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af62" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5797620535454151450" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12846007020913644847" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6127504106358374339" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10844676006574057035" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6726353876262719826" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9697792960028338264" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16637126202440813660" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8032502" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5552089640849812652" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79f1b8cda37c7159db06e4c27b9ef62c9187563a385433abf4242a01b6e21eafbcb1505a746576046c3d8384460ec233b4a7646053df6be94c0913f4515c842755948c4b5c1b245da02241b8c801eb49fe155fb48d8def73742c4ab10439cc129ffd8669f1b7eeae61040b2aacf9f1b2977bc19c24a1b931ba6ce343ae2673ba4bf44385f60bf4192467719074088dc42af62ffbf1b50754928ee41331a1bb2462f530fbb552f1b55094485133cffc31b9680075ed40c664b1b5d58cf36743611521b86957b50e7c5e8581be6e2f22243d40c5c44d8032502ffffff1b4d0cfc1cb3faacacffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 27, 140, 218, 55, 199, 21, 157, 176, 110, 76, 39, + 185, 239, 98, 201, 24, 117, 99, 163, 133, 67, 58, 191, 66, 66, 160, 27, 110, 33, 234, 251, 203, 21, 5, 167, 70, + 87, 96, 70, 195, 216, 56, 68, 96, 236, 35, 59, 74, 118, 70, 5, 61, 246, 190, 148, 192, 145, 63, 69, 21, 200, 66, + 117, 89, 72, 196, 181, 193, 178, 69, 218, 2, 36, 27, 140, 128, 30, 180, 159, 225, 85, 251, 72, 216, 222, 247, 55, + 66, 196, 171, 16, 67, 156, 193, 41, 255, 216, 102, 159, 27, 126, 234, 230, 16, 64, 178, 170, 207, 159, 27, 41, + 119, 188, 25, 194, 74, 27, 147, 27, 166, 206, 52, 58, 226, 103, 59, 164, 191, 68, 56, 95, 96, 191, 65, 146, 70, + 119, 25, 7, 64, 136, 220, 66, 175, 98, 255, 191, 27, 80, 117, 73, 40, 238, 65, 51, 26, 27, 178, 70, 47, 83, 15, + 187, 85, 47, 27, 85, 9, 68, 133, 19, 60, 255, 195, 27, 150, 128, 7, 94, 212, 12, 102, 75, 27, 93, 88, 207, 54, + 116, 54, 17, 82, 27, 134, 149, 123, 80, 231, 197, 232, 88, 27, 230, 226, 242, 34, 67, 212, 12, 92, 68, 216, 3, 37, + 2, 255, 255, 255, 27, 77, 12, 252, 28, 179, 250, 172, 172, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1856, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4726645009903506333" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2327741756733911871" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72534e72776d5651f18222" + }, + { + "_tag": "ByteArray", + "bytearray": "f2f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "ByteArray", + "bytearray": "059e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16503490080838809485" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d07f7574" + }, + { + "_tag": "ByteArray", + "bytearray": "8675982b5a4f" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9fd8669f1b41986a97faabd39d9f9f1b204dcccb7af7f33f4b72534e72776d5651f1822242f2f80442059effd8669f1be5082cca0e94778d9f44d07f7574468675982b5a4fffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 216, 102, 159, 27, 65, 152, 106, 151, 250, 171, + 211, 157, 159, 159, 27, 32, 77, 204, 203, 122, 247, 243, 63, 75, 114, 83, 78, 114, 119, 109, 86, 81, 241, 130, 34, + 66, 242, 248, 4, 66, 5, 158, 255, 216, 102, 159, 27, 229, 8, 44, 202, 14, 148, 119, 141, 159, 68, 208, 127, 117, + 116, 70, 134, 117, 152, 43, 90, 79, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1857, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11189138434259459591" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + }, + "cborHex": "d8669f1b9b47ce1f94b49e079f08ffff", + "cborBytes": [216, 102, 159, 27, 155, 71, 206, 31, 148, 180, 158, 7, 159, 8, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1858, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11564322166421158835" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1336d448fdb5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15662071214383608762" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36407ed8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3212299264538107157" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf60b2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1bbc106941d83dfbb6deaa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb08c551abd4db34d6699fd6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "305357fc651e67bc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec279e7c1aea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17945929260853964331" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0ef2e031f8155a7bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef635282b518e65f" + } + } + ] + } + ] + }, + "cborHex": "d8669f1ba07cb9bd6db57bb39fbf461336d448fdb51bd95adac9cc34b3ba4436407ed81b2c9461295f0add1543bf60b24b1bbc106941d83dfbb6deaa4ceb08c551abd4db34d6699fd648305357fc651e67bc46ec279e7c1aea1bf90cbf94c57d2e2b49f0ef2e031f8155a7bf48ef635282b518e65fffffff", + "cborBytes": [ + 216, 102, 159, 27, 160, 124, 185, 189, 109, 181, 123, 179, 159, 191, 70, 19, 54, 212, 72, 253, 181, 27, 217, 90, + 218, 201, 204, 52, 179, 186, 68, 54, 64, 126, 216, 27, 44, 148, 97, 41, 95, 10, 221, 21, 67, 191, 96, 178, 75, 27, + 188, 16, 105, 65, 216, 61, 251, 182, 222, 170, 76, 235, 8, 197, 81, 171, 212, 219, 52, 214, 105, 159, 214, 72, 48, + 83, 87, 252, 101, 30, 103, 188, 70, 236, 39, 158, 124, 26, 234, 27, 249, 12, 191, 148, 197, 125, 46, 43, 73, 240, + 239, 46, 3, 31, 129, 85, 167, 191, 72, 239, 99, 82, 130, 181, 24, 230, 95, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1859, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4992031538777059668" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4647958254896500431" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8c49773e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3908057175514300743" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "473cb87cc35c499d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13085189143594019912" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acfce862" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bb12c03f" + } + ] + } + ] + }, + "cborHex": "d8669f1b4547423c505a71549f1b4080dd6829f34ecfd905069f80448c49773ebf1b363c354b9c72414748473cb87cc35c499d1bb597ee32a2b82c4844acfce862ff44bb12c03fffffff", + "cborBytes": [ + 216, 102, 159, 27, 69, 71, 66, 60, 80, 90, 113, 84, 159, 27, 64, 128, 221, 104, 41, 243, 78, 207, 217, 5, 6, 159, + 128, 68, 140, 73, 119, 62, 191, 27, 54, 60, 53, 75, 156, 114, 65, 71, 72, 71, 60, 184, 124, 195, 92, 73, 157, 27, + 181, 151, 238, 50, 162, 184, 44, 72, 68, 172, 252, 232, 98, 255, 68, 187, 18, 192, 63, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1860, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15051532511477490110" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1338147074783714870" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8a8d294a5f5e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a68b3729a941a81460d5b41" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17947436528880934058" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bd0e1c9129fdbe1be9fbf1b12920dacb9b61e3647b8a8d294a5f5e24c7a68b3729a941a81460d5b410bff9f1bf9121a6ef4d15caaffffff", + "cborBytes": [ + 216, 102, 159, 27, 208, 225, 201, 18, 159, 219, 225, 190, 159, 191, 27, 18, 146, 13, 172, 185, 182, 30, 54, 71, + 184, 168, 210, 148, 165, 245, 226, 76, 122, 104, 179, 114, 154, 148, 26, 129, 70, 13, 91, 65, 11, 255, 159, 27, + 249, 18, 26, 110, 244, 209, 92, 170, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1861, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dd53cefd" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f9f44dd53cefdff0441ae1bffffffffffffffeeffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 159, 68, 221, 83, 206, 253, 255, 4, 65, 174, 27, + 255, 255, 255, 255, 255, 255, 255, 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1862, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6603271028448903520" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8270033287566898727" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7415199357526707775" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11296625593483175971" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "203477244576844644" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11420831167868816520" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e154f2daf9cfdb2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11992406363647638402" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fcd6edf4e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12337759590048228778" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14532844233846114454" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13597145615388464028" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0bc02b553660b338" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13108909115397555441" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e59e35c7ae62853b507aabfd" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11538347157078245129" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85ca8f" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2116e3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "16" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1441252713637941690" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17322674829532841395" + } + }, + { + "_tag": "ByteArray", + "bytearray": "49ac" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a031520d2c9cc5607f7610d2" + }, + { + "_tag": "ByteArray", + "bytearray": "adf16bf93056a1b4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9759ea5ca983860b456f0f4c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18039767170263569403" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e9e3b59a04c0b47c5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5308288317234395866" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15967878108157791119" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15675254314184017091" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11226189876658280713" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5288252443345496177" + } + }, + { + "_tag": "ByteArray", + "bytearray": "424c43" + }, + { + "_tag": "ByteArray", + "bytearray": "cc" + }, + { + "_tag": "ByteArray", + "bytearray": "015e041c9db9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15755945046247789313" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15065378908204006230" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4ce834" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4015857119885780002" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14467191921373723645" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6089402774122174019" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92db96" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8885707664369490821" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4287495406109951064" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12962453864103894628" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "255a0341a9" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17033235851004346465" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1791390319318693671" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4c3189773df0564c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1065566554733379609" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2336910228883950316" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8308536500518124866" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2476034464473794562" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13370180031116629671" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15351465066173832207" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9872280294938945693" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16750161149563680139" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed8b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3c1fd4cb4d" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5ba38803c65341609fbf1b72c50f756214b6271b66e814873c158e3f1b9cc5ad200c26a8231b02d2e579d2e0cb641b9e7ef16fe087cc88481e154f2daf9cfdb21ba66d960c9b59fb82456fcd6edf4e1bab3886fa98fe65aa1bc9af08d5167b48961bbcb2c3e57c7d539c480bc02b553660b338ff9f9f1bb5ec3362f026c4f14ce59e35c7ae62853b507aabfdff1ba020719b48c97f094385ca8fff9f432116e39f41161b14005bb4fbf511ba1bf06680fa5de7c5b34249acff4ca031520d2c9cc5607f7610d248adf16bf93056a1b49f4c9759ea5ca983860b456f0f4c1bfa5a20a99e5053fb499e9e3b59a04c0b47c51b49aad4199a1cbada1bdd994c89b57b4b8fffff9fbf1bd989b0bf68d904c31b9bcb7036c34d9909ff9f1b4963a5943033287143424c4341cc46015e041c9db91bdaa85c8a7e2cd301ff9f41f21bd112fa4c16297b56ff434ce834ff9fbf1b37bb30c60b83e4221bc8c5ca66eae1bbfd1b5481e78f5dd496434392db961b7b50600ad0b59b851b3b803e5b114d84581bb3e3e31c834d5e6445255a0341a9ffbf1bec6235c2b29000611b18dc4c011510772749c4c3189773df0564c41b0ec9a722cb6b8019ffbf1b206e5f78c09acaec1b734dd9ed3cbffd421b225ca43a1295c8021bb98c6be669ba56a71bd50b5c24631c1c0f1b8901629f66eca89d1be87486d1c24ab58b42ed8bff9f453c1fd4cb4dffffffff", + "cborBytes": [ + 216, 102, 159, 27, 91, 163, 136, 3, 198, 83, 65, 96, 159, 191, 27, 114, 197, 15, 117, 98, 20, 182, 39, 27, 102, + 232, 20, 135, 60, 21, 142, 63, 27, 156, 197, 173, 32, 12, 38, 168, 35, 27, 2, 210, 229, 121, 210, 224, 203, 100, + 27, 158, 126, 241, 111, 224, 135, 204, 136, 72, 30, 21, 79, 45, 175, 156, 253, 178, 27, 166, 109, 150, 12, 155, + 89, 251, 130, 69, 111, 205, 110, 223, 78, 27, 171, 56, 134, 250, 152, 254, 101, 170, 27, 201, 175, 8, 213, 22, + 123, 72, 150, 27, 188, 178, 195, 229, 124, 125, 83, 156, 72, 11, 192, 43, 85, 54, 96, 179, 56, 255, 159, 159, 27, + 181, 236, 51, 98, 240, 38, 196, 241, 76, 229, 158, 53, 199, 174, 98, 133, 59, 80, 122, 171, 253, 255, 27, 160, 32, + 113, 155, 72, 201, 127, 9, 67, 133, 202, 143, 255, 159, 67, 33, 22, 227, 159, 65, 22, 27, 20, 0, 91, 180, 251, + 245, 17, 186, 27, 240, 102, 128, 250, 93, 231, 197, 179, 66, 73, 172, 255, 76, 160, 49, 82, 13, 44, 156, 197, 96, + 127, 118, 16, 210, 72, 173, 241, 107, 249, 48, 86, 161, 180, 159, 76, 151, 89, 234, 92, 169, 131, 134, 11, 69, + 111, 15, 76, 27, 250, 90, 32, 169, 158, 80, 83, 251, 73, 158, 158, 59, 89, 160, 76, 11, 71, 197, 27, 73, 170, 212, + 25, 154, 28, 186, 218, 27, 221, 153, 76, 137, 181, 123, 75, 143, 255, 255, 159, 191, 27, 217, 137, 176, 191, 104, + 217, 4, 195, 27, 155, 203, 112, 54, 195, 77, 153, 9, 255, 159, 27, 73, 99, 165, 148, 48, 51, 40, 113, 67, 66, 76, + 67, 65, 204, 70, 1, 94, 4, 28, 157, 185, 27, 218, 168, 92, 138, 126, 44, 211, 1, 255, 159, 65, 242, 27, 209, 18, + 250, 76, 22, 41, 123, 86, 255, 67, 76, 232, 52, 255, 159, 191, 27, 55, 187, 48, 198, 11, 131, 228, 34, 27, 200, + 197, 202, 102, 234, 225, 187, 253, 27, 84, 129, 231, 143, 93, 212, 150, 67, 67, 146, 219, 150, 27, 123, 80, 96, + 10, 208, 181, 155, 133, 27, 59, 128, 62, 91, 17, 77, 132, 88, 27, 179, 227, 227, 28, 131, 77, 94, 100, 69, 37, 90, + 3, 65, 169, 255, 191, 27, 236, 98, 53, 194, 178, 144, 0, 97, 27, 24, 220, 76, 1, 21, 16, 119, 39, 73, 196, 195, + 24, 151, 115, 223, 5, 100, 196, 27, 14, 201, 167, 34, 203, 107, 128, 25, 255, 191, 27, 32, 110, 95, 120, 192, 154, + 202, 236, 27, 115, 77, 217, 237, 60, 191, 253, 66, 27, 34, 92, 164, 58, 18, 149, 200, 2, 27, 185, 140, 107, 230, + 105, 186, 86, 167, 27, 213, 11, 92, 36, 99, 28, 28, 15, 27, 137, 1, 98, 159, 102, 236, 168, 157, 27, 232, 116, + 134, 209, 194, 74, 181, 139, 66, 237, 139, 255, 159, 69, 60, 31, 212, 203, 77, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1863, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10759612142277613876" + }, + "fields": [] + }, + "cborHex": "d8669f1b9551d23c8d6fd93480ff", + "cborBytes": [216, 102, 159, 27, 149, 81, 210, 60, 141, 111, 217, 52, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1864, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10458716478308092611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "23f91beb0ff9fe2f11c260" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "398975797859369963" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1375910494607601831" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4244435377613899852" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6003241482794922835" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7442590697214030360" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1abb4059" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12740339398548252501" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8055950563348929774" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b0229bcaafa6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f225fee266b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb9505" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5719e451e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a3d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e282bea09ef90cae8abc7efa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7d306" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff400624" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15925205593995133552" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b9124d33970140ac39f4b23f91beb0ff9fe2f11c260bf1b0589725fd162c3eb071b1318374e11d170a71bfffffffffffffff31b3ae7437ceac7084c1b534fcc5272e173531b674964ce7c11b218441abb40591bb0cec72e8861e75541fc1bffffffffffffffff1b6fcc7c5ae8855ceeff46b0229bcaafa6bf464f225fee266b43cb9505455719e451e60f428a3d4ce282bea09ef90cae8abc7efa43a7d30644ff40062441fc1bdd01b21cc524c270ffffff", + "cborBytes": [ + 216, 102, 159, 27, 145, 36, 211, 57, 112, 20, 10, 195, 159, 75, 35, 249, 27, 235, 15, 249, 254, 47, 17, 194, 96, + 191, 27, 5, 137, 114, 95, 209, 98, 195, 235, 7, 27, 19, 24, 55, 78, 17, 209, 112, 167, 27, 255, 255, 255, 255, + 255, 255, 255, 243, 27, 58, 231, 67, 124, 234, 199, 8, 76, 27, 83, 79, 204, 82, 114, 225, 115, 83, 27, 103, 73, + 100, 206, 124, 17, 178, 24, 68, 26, 187, 64, 89, 27, 176, 206, 199, 46, 136, 97, 231, 85, 65, 252, 27, 255, 255, + 255, 255, 255, 255, 255, 255, 27, 111, 204, 124, 90, 232, 133, 92, 238, 255, 70, 176, 34, 155, 202, 175, 166, 191, + 70, 79, 34, 95, 238, 38, 107, 67, 203, 149, 5, 69, 87, 25, 228, 81, 230, 15, 66, 138, 61, 76, 226, 130, 190, 160, + 158, 249, 12, 174, 138, 188, 126, 250, 67, 167, 211, 6, 68, 255, 64, 6, 36, 65, 252, 27, 221, 1, 178, 28, 197, 36, + 194, 112, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1865, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5066824620430861709" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4cf0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4ab7fa420b5cad5c7dc6" + }, + { + "_tag": "ByteArray", + "bytearray": "33b1f31c56a9dccca831ea" + }, + { + "_tag": "ByteArray", + "bytearray": "454b4c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10064860572970439733" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17556107147064249027" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12267775278525043248" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e30a7140233cd780" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7084435551675275654" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4303500320190416586" + } + } + ] + }, + "cborHex": "d905019f1b4650fa25a7fc258d9f424cf09f4a4ab7fa420b5cad5c7dc64b33b1f31c56a9dccca831ea43454b4cffd8669f1b8bad915d7dbcd4359f1bf3a3d26f1b760ac31baa3fe49e4ccdd23048e30a7140233cd7801b6250f8996bc0d986ffffff1b3bb91abd83bac6caff", + "cborBytes": [ + 217, 5, 1, 159, 27, 70, 80, 250, 37, 167, 252, 37, 141, 159, 66, 76, 240, 159, 74, 74, 183, 250, 66, 11, 92, 173, + 92, 125, 198, 75, 51, 177, 243, 28, 86, 169, 220, 204, 168, 49, 234, 67, 69, 75, 76, 255, 216, 102, 159, 27, 139, + 173, 145, 93, 125, 188, 212, 53, 159, 27, 243, 163, 210, 111, 27, 118, 10, 195, 27, 170, 63, 228, 158, 76, 205, + 210, 48, 72, 227, 10, 113, 64, 35, 60, 215, 128, 27, 98, 80, 248, 153, 107, 192, 217, 134, 255, 255, 255, 27, 59, + 185, 26, 189, 131, 186, 198, 202, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1866, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10479922586229628145" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1ee7e8f43c67c709dd562552" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6288226460104039186" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9f1b91702a1131cf5cf14c1ee7e8f43c67c709dd5625521b574444a625b69b12ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 27, 145, 112, 42, 17, 49, 207, 92, 241, 76, 30, + 231, 232, 244, 60, 103, 199, 9, 221, 86, 37, 82, 27, 87, 68, 68, 166, 37, 182, 155, 18, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1867, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10592208704097642275" + }, + "fields": [] + }, + "cborHex": "d8669f1b92ff15b24a8a672380ff", + "cborBytes": [216, 102, 159, 27, 146, 255, 21, 178, 74, 138, 103, 35, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1868, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2843380857067023966" + }, + "fields": [] + }, + "cborHex": "d8669f1b2775b7d31aa02e5e80ff", + "cborBytes": [216, 102, 159, 27, 39, 117, 183, 211, 26, 160, 46, 94, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1869, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15582089986314546406" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "17" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13140254691646182084" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2e4c" + }, + { + "_tag": "ByteArray", + "bytearray": "64f99b" + }, + { + "_tag": "ByteArray", + "bytearray": "0bd3aebac99e6768b7" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0292e2c0028f0c5c285e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "931358753018141638" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7192607082250882077" + } + } + ] + }, + "cborHex": "d8669f1bd83eb448fc732ce69f9f41171bb65b9005a1bb12c4422e4c4364f99b490bd3aebac99e6768b7ff4a0292e2c0028f0c5c285e1b0cecd9d9f018dbc61b63d146088285cc1dffff", + "cborBytes": [ + 216, 102, 159, 27, 216, 62, 180, 72, 252, 115, 44, 230, 159, 159, 65, 23, 27, 182, 91, 144, 5, 161, 187, 18, 196, + 66, 46, 76, 67, 100, 249, 155, 73, 11, 211, 174, 186, 201, 158, 103, 104, 183, 255, 74, 2, 146, 226, 192, 2, 143, + 12, 92, 40, 94, 27, 12, 236, 217, 217, 240, 24, 219, 198, 27, 99, 209, 70, 8, 130, 133, 204, 29, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1870, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "486778193967367728" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2033879866279187368" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2675002103165940582" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6910353988720728537" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5334380302937974710" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15708375313099547514" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10520594442114919856" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15764071870740009575" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f1b06c1623037d4c6301b1c39caf66163d3a8bf1b251f843d74a0f3661b5fe6825711e719d91b4a07869f6d7567b641a51bd9ff5c1ee7d0637a1b9200a8e794356db01bdac53bd8452f92674174ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 27, 6, 193, 98, 48, 55, 212, 198, 48, 27, 28, 57, + 202, 246, 97, 99, 211, 168, 191, 27, 37, 31, 132, 61, 116, 160, 243, 102, 27, 95, 230, 130, 87, 17, 231, 25, 217, + 27, 74, 7, 134, 159, 109, 117, 103, 182, 65, 165, 27, 217, 255, 92, 30, 231, 208, 99, 122, 27, 146, 0, 168, 231, + 148, 53, 109, 176, 27, 218, 197, 59, 216, 69, 47, 146, 103, 65, 116, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1871, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13978928992920348084" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3337458362791737122" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f36bb1097c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16344719870774745553" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4549723711761685536" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cf596d5fedd27f67c07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28e4e28e3136257b39947068" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16879248818120502099" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cd778eaf" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9404775774522319177" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04e68ec4a9f901c9d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2072634677607220707" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e9eaafd5c9955fe44" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5252455592286064269" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "964779355858876062" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8498764725826535029" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2580835594938170544" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9673729713812428846" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1e6f0e6244e625415d02d31" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11638240208168054321" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13616892572775547123" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13043644688358317814" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "412a6174" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17784093260700381029" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5cb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17915714417002363472" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13371819997282739992" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8888570754240713679" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8bdc78d40b9b77" + }, + { + "_tag": "ByteArray", + "bytearray": "722bb0d107982798276c0118" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4308158576760927916" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31d3d2d5aaf27d3657ac63" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a69e333223cb96747754b387" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17314458213083088419" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16982648845361515233" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d9050b9f1bc1ff21db036d25b4d8669f1b2e5108b2c6dbb7229f45f36bb1097cbf1be2d41c1fdacc19d11b3f23dd9c41ba1c204a1cf596d5fedd27f67c074c28e4e28e3136257b39947068ff1bea3f235eb7812b5344cd778eafd8669f1b828479bd009a21499f4904e68ec4a9f901c9d31b1cc37a420bef45e3498e9eaafd5c9955fe441b48e4788850b98e8d1b0d6395b66899369effffffffbf1b75f1ad7d6082be751b23d0f84cbbf93cb01b863ffdebccee582e4ca1e6f0e6244e625415d02d311ba18355ceaa866e311bbcf8eba648f100f31bb50455bc62021ef644412a61741bf6cdca98b076ef6542b5cb1bf8a167573ac53a501bb9923f70ca80a718ffd8669f1b7b5a8c01df7193cf9f9f478bdc78d40b9b774c722bb0d107982798276c01181b3bc9a76663e336ac4b31d3d2d5aaf27d3657ac63ff9f4ca69e333223cb96747754b387ffffff9f1bf0495002452986231bebae7d259cf88ae180ffff", + "cborBytes": [ + 217, 5, 11, 159, 27, 193, 255, 33, 219, 3, 109, 37, 180, 216, 102, 159, 27, 46, 81, 8, 178, 198, 219, 183, 34, + 159, 69, 243, 107, 177, 9, 124, 191, 27, 226, 212, 28, 31, 218, 204, 25, 209, 27, 63, 35, 221, 156, 65, 186, 28, + 32, 74, 28, 245, 150, 213, 254, 221, 39, 246, 124, 7, 76, 40, 228, 226, 142, 49, 54, 37, 123, 57, 148, 112, 104, + 255, 27, 234, 63, 35, 94, 183, 129, 43, 83, 68, 205, 119, 142, 175, 216, 102, 159, 27, 130, 132, 121, 189, 0, 154, + 33, 73, 159, 73, 4, 230, 142, 196, 169, 249, 1, 201, 211, 27, 28, 195, 122, 66, 11, 239, 69, 227, 73, 142, 158, + 170, 253, 92, 153, 85, 254, 68, 27, 72, 228, 120, 136, 80, 185, 142, 141, 27, 13, 99, 149, 182, 104, 153, 54, 158, + 255, 255, 255, 255, 191, 27, 117, 241, 173, 125, 96, 130, 190, 117, 27, 35, 208, 248, 76, 187, 249, 60, 176, 27, + 134, 63, 253, 235, 204, 238, 88, 46, 76, 161, 230, 240, 230, 36, 78, 98, 84, 21, 208, 45, 49, 27, 161, 131, 85, + 206, 170, 134, 110, 49, 27, 188, 248, 235, 166, 72, 241, 0, 243, 27, 181, 4, 85, 188, 98, 2, 30, 246, 68, 65, 42, + 97, 116, 27, 246, 205, 202, 152, 176, 118, 239, 101, 66, 181, 203, 27, 248, 161, 103, 87, 58, 197, 58, 80, 27, + 185, 146, 63, 112, 202, 128, 167, 24, 255, 216, 102, 159, 27, 123, 90, 140, 1, 223, 113, 147, 207, 159, 159, 71, + 139, 220, 120, 212, 11, 155, 119, 76, 114, 43, 176, 209, 7, 152, 39, 152, 39, 108, 1, 24, 27, 59, 201, 167, 102, + 99, 227, 54, 172, 75, 49, 211, 210, 213, 170, 242, 125, 54, 87, 172, 99, 255, 159, 76, 166, 158, 51, 50, 35, 203, + 150, 116, 119, 84, 179, 135, 255, 255, 255, 159, 27, 240, 73, 80, 2, 69, 41, 134, 35, 27, 235, 174, 125, 37, 156, + 248, 138, 225, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1872, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6442868554978565088" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "674855988430353694" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12368776911371634241" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6661052798702910955" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "caf98560041792f6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3385261472995684406" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1027106234168218378" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17460405149625274221" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "732794605044523092" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "428e6b8b15f21538c48f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "951595000416912184" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9c2cca2b" + }, + { + "_tag": "ByteArray", + "bytearray": "c0c3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4257067445268092041" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7307166776042199598" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10538849684486381641" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9125224437557074415" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18266674844972235661" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9360229328567765464" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "082c5692a387a7a812" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "520f1af1eb" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5969aad0a2081be09fd8669f1b095d91f228efb51e9f80d8669f1baba6b9117c5c064180ffd8669f1b5c70d03a88cefdeb9f48caf98560041792f61b2efadd5fb1b930361b0e4103ad9a2f930a1bf24fd1f971d0cf6dffffd8669f1b0a2b68cf8f0060549f4a428e6b8b15f21538c48fffffd8669f1b0d34be9c71e343389f449c2cca2b42c0c31b3b1424495c1594891b65684577c0881a2e1b924183f3690c6049ffffffff9f1b7ea34f47484d99efbf1bfd8043fd92223b8d1b81e636fb517989d8ff49082c5692a387a7a8129f45520f1af1ebffffffff", + "cborBytes": [ + 216, 102, 159, 27, 89, 105, 170, 208, 162, 8, 27, 224, 159, 216, 102, 159, 27, 9, 93, 145, 242, 40, 239, 181, 30, + 159, 128, 216, 102, 159, 27, 171, 166, 185, 17, 124, 92, 6, 65, 128, 255, 216, 102, 159, 27, 92, 112, 208, 58, + 136, 206, 253, 235, 159, 72, 202, 249, 133, 96, 4, 23, 146, 246, 27, 46, 250, 221, 95, 177, 185, 48, 54, 27, 14, + 65, 3, 173, 154, 47, 147, 10, 27, 242, 79, 209, 249, 113, 208, 207, 109, 255, 255, 216, 102, 159, 27, 10, 43, 104, + 207, 143, 0, 96, 84, 159, 74, 66, 142, 107, 139, 21, 242, 21, 56, 196, 143, 255, 255, 216, 102, 159, 27, 13, 52, + 190, 156, 113, 227, 67, 56, 159, 68, 156, 44, 202, 43, 66, 192, 195, 27, 59, 20, 36, 73, 92, 21, 148, 137, 27, + 101, 104, 69, 119, 192, 136, 26, 46, 27, 146, 65, 131, 243, 105, 12, 96, 73, 255, 255, 255, 255, 159, 27, 126, + 163, 79, 71, 72, 77, 153, 239, 191, 27, 253, 128, 67, 253, 146, 34, 59, 141, 27, 129, 230, 54, 251, 81, 121, 137, + 216, 255, 73, 8, 44, 86, 146, 163, 135, 167, 168, 18, 159, 69, 82, 15, 26, 241, 235, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1873, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10776694739640713825" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9e94" + } + ] + }, + "cborHex": "d8669f1b958e82c4b11b02619f429e94ffff", + "cborBytes": [216, 102, 159, 27, 149, 142, 130, 196, 177, 27, 2, 97, 159, 66, 158, 148, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1874, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9236140800518292096" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9461754911263192478" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13477119474615841407" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8709554611100792604" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14484896618955611219" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a217" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "764cbc1193cea6422e0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bc31681" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a4b6bf9f4" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b802d5d1f766282809f1b834ee7f615a6759ebf1bbb0858c1dff9f27f1b78de8dc60a87371c1bc904b0bb0d1b1c5342a2174a764cbc1193cea6422e0f443bc3168141f3450a4b6bf9f4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 128, 45, 93, 31, 118, 98, 130, 128, 159, 27, 131, 78, 231, 246, 21, 166, 117, 158, 191, 27, + 187, 8, 88, 193, 223, 249, 242, 127, 27, 120, 222, 141, 198, 10, 135, 55, 28, 27, 201, 4, 176, 187, 13, 27, 28, + 83, 66, 162, 23, 74, 118, 76, 188, 17, 147, 206, 166, 66, 46, 15, 68, 59, 195, 22, 129, 65, 243, 69, 10, 75, 107, + 249, 244, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1875, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3015993181642487286" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1475232896074710591" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6143588467744640734" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a360c1d9821bcfe4aafd" + }, + { + "_tag": "ByteArray", + "bytearray": "fedebcc8" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4289092314288488427" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6e063f5efd68a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10995072818353088448" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15554d2d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14321964386377429029" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95d5f32e00216c0a00f68a9e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15270693108113963940" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13a2c1de99f6e7" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14087015788863891977" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2312675542793221740" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2732028862918001493" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10590881369048649358" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "127755310459869650" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13683526290491384422" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8e49a7870257576d37ffcce" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13783639397522668765" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb544f2a2a7244" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15838861543540840189" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f4da8f5c13b5922" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17504473973753896610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14441858846025495385" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87e9f9fbf1b29daf5d1bcccf5f61b14791480bb80fe3fff9f1b554269294a1b0ede4aa360c1d9821bcfe4aafd44fedebcc8ffbf1b3b85eabc3a05ffeb47b6e063f5efd68a1b98965879517d27c04415554d2d1bc6c1d6ba77d270254c95d5f32e00216c0a00f68a9e1bd3ec667967237ba44713a2c1de99f6e7ff1bc37f2239488d2a09bf1b2018462730ec766c1b25ea1dc6a25783551b92fa5e7e04728e8e1b01c5e0c72a2159d21bbde5a6a9ab7522664cc8e49a7870257576d37ffcce1bbf495300d16afcdd47fb544f2a2a72441bdbcef0a7ed58d6fd488f4da8f5c13b59221bf2ec625621abdea21bc86bca1aadaeb359ffffff", + "cborBytes": [ + 216, 126, 159, 159, 191, 27, 41, 218, 245, 209, 188, 204, 245, 246, 27, 20, 121, 20, 128, 187, 128, 254, 63, 255, + 159, 27, 85, 66, 105, 41, 74, 27, 14, 222, 74, 163, 96, 193, 217, 130, 27, 207, 228, 170, 253, 68, 254, 222, 188, + 200, 255, 191, 27, 59, 133, 234, 188, 58, 5, 255, 235, 71, 182, 224, 99, 245, 239, 214, 138, 27, 152, 150, 88, + 121, 81, 125, 39, 192, 68, 21, 85, 77, 45, 27, 198, 193, 214, 186, 119, 210, 112, 37, 76, 149, 213, 243, 46, 0, + 33, 108, 10, 0, 246, 138, 158, 27, 211, 236, 102, 121, 103, 35, 123, 164, 71, 19, 162, 193, 222, 153, 246, 231, + 255, 27, 195, 127, 34, 57, 72, 141, 42, 9, 191, 27, 32, 24, 70, 39, 48, 236, 118, 108, 27, 37, 234, 29, 198, 162, + 87, 131, 85, 27, 146, 250, 94, 126, 4, 114, 142, 142, 27, 1, 197, 224, 199, 42, 33, 89, 210, 27, 189, 229, 166, + 169, 171, 117, 34, 102, 76, 200, 228, 154, 120, 112, 37, 117, 118, 211, 127, 252, 206, 27, 191, 73, 83, 0, 209, + 106, 252, 221, 71, 251, 84, 79, 42, 42, 114, 68, 27, 219, 206, 240, 167, 237, 88, 214, 253, 72, 143, 77, 168, 245, + 193, 59, 89, 34, 27, 242, 236, 98, 86, 33, 171, 222, 162, 27, 200, 107, 202, 26, 173, 174, 179, 89, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1876, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11834462567031952892" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7170283775518528027" + } + } + ] + }, + "cborHex": "d8669f1ba43c7500c798d5fc9f1b6381f71aa287521bffff", + "cborBytes": [ + 216, 102, 159, 27, 164, 60, 117, 0, 199, 152, 213, 252, 159, 27, 99, 129, 247, 26, 162, 135, 82, 27, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1877, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4164515476682478893" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12117116105864147721" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "ByteArray", + "bytearray": "020164" + } + ] + }, + "cborHex": "d8669f1b39cb54c2f146952d9fa01ba828a4e6283273090e43020164ffff", + "cborBytes": [ + 216, 102, 159, 27, 57, 203, 84, 194, 241, 70, 149, 45, 159, 160, 27, 168, 40, 164, 230, 40, 50, 115, 9, 14, 67, 2, + 1, 100, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1878, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10305440554621004763" + }, + "fields": [] + }, + "cborHex": "d8669f1b8f0447957816ebdb80ff", + "cborBytes": [216, 102, 159, 27, 143, 4, 71, 149, 120, 22, 235, 219, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1879, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6739956784212418065" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b051865edd554e8a31" + }, + { + "_tag": "ByteArray", + "bytearray": "9b6f27f0be01ec1999e6a9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11180817527192110329" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b0fbff55b8650d3e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13735053689504177633" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "214d9a2748d0" + }, + { + "_tag": "ByteArray", + "bytearray": "43cdf35639" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10685555560646780467" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050c9fd8669f1b5d8922fc44771e119fd905059f49b051865edd554e8a314b9b6f27f0be01ec1999e6a91b9b2a3e4d6ebf44f948b0fbff55b8650d3eff07d8669f1bbe9cb68f25d09de19f46214d9a2748d04543cdf356391b944ab82afc0d2633ffffffffff", + "cborBytes": [ + 217, 5, 12, 159, 216, 102, 159, 27, 93, 137, 34, 252, 68, 119, 30, 17, 159, 217, 5, 5, 159, 73, 176, 81, 134, 94, + 221, 85, 78, 138, 49, 75, 155, 111, 39, 240, 190, 1, 236, 25, 153, 230, 169, 27, 155, 42, 62, 77, 110, 191, 68, + 249, 72, 176, 251, 255, 85, 184, 101, 13, 62, 255, 7, 216, 102, 159, 27, 190, 156, 182, 143, 37, 208, 157, 225, + 159, 70, 33, 77, 154, 39, 72, 208, 69, 67, 205, 243, 86, 57, 27, 148, 74, 184, 42, 252, 13, 38, 51, 255, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1880, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8032521741091092994" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3088475879255711821" + } + } + ] + }, + "cborHex": "d8669f1b6f793ff724563a029f1b2adc7872e066204dffff", + "cborBytes": [ + 216, 102, 159, 27, 111, 121, 63, 247, 36, 86, 58, 2, 159, 27, 42, 220, 120, 114, 224, 102, 32, 77, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1881, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7042911069305521533" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "67b53555da61479cdb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6010167826204590234" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7271455" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13393667586017609961" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b61bd724d769f457d9fa0bf4967b53555da61479cdb1b536867cb7168009a44b72714551bb9dfddb4f03e48e9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 97, 189, 114, 77, 118, 159, 69, 125, 159, 160, 191, 73, 103, 181, 53, 85, 218, 97, 71, 156, + 219, 27, 83, 104, 103, 203, 113, 104, 0, 154, 68, 183, 39, 20, 85, 27, 185, 223, 221, 180, 240, 62, 72, 233, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1882, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9472028804086241500" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a119a51e8f0eef88db" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3590077930372623882" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16235245414833929485" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "87cd9bea3b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4353510751596351675" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1769705905428551976" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + ] + }, + "cborHex": "d9050c9f9f1b8373680329d418dc49a119a51e8f0eef88db1b31d284db4bd46e0a1be14f2dafd0773d0dbf4587cd9bea3b1b3c6ac6f672be90bbffffd9050c9f1b188f422509fad928ff1bfffffffffffffffcff", + "cborBytes": [ + 217, 5, 12, 159, 159, 27, 131, 115, 104, 3, 41, 212, 24, 220, 73, 161, 25, 165, 30, 143, 14, 239, 136, 219, 27, + 49, 210, 132, 219, 75, 212, 110, 10, 27, 225, 79, 45, 175, 208, 119, 61, 13, 191, 69, 135, 205, 155, 234, 59, 27, + 60, 106, 198, 246, 114, 190, 144, 187, 255, 255, 217, 5, 12, 159, 27, 24, 143, 66, 37, 9, 250, 217, 40, 255, 27, + 255, 255, 255, 255, 255, 255, 255, 252, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1883, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12645491636624007831" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "812799980363535628" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2403f3" + }, + { + "_tag": "ByteArray", + "bytearray": "390c8b4beeefa6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17545475358665103071" + } + }, + { + "_tag": "ByteArray", + "bytearray": "30" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4c5685" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "425674b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10787978363388730238" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4616a72bf70e5030a47a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4915055555720455529" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3f45fdc9eba3de18752ef14" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84db6f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d648368f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16378947997514945051" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f42d8989c8aa37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14402046519725820641" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15494368485044294711" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3103954642122749478" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6cf5210d0e4dc6b4df" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13930369603707483326" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "627607736480347036" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7d3b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "57cbb50f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15617395513910611095" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bbe9158a852e64a511f24e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "912e5a8d4a320f86ee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6c1d9ff3948c33d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2261410216600551740" + } + } + ] + }, + "cborHex": "d8669f1baf7dcfa51325a2979f9fd8669f1b0b47a5469703550c9f432403f347390c8b4beeefa61bf37e0ce0f89a56df4130ffff434c5685bf44425674b61b95b6992a12629b7e4a4616a72bf70e5030a47a1b4435c8fca20725694ca3f45fdc9eba3de18752ef144384db6f44d648368f1be34db66ca279521b47f42d8989c8aa371bc7de59011ee88ae1ffd8669f1bd7070e0b6212943780ffbf1b2b13764d32a6b626496cf5210d0e4dc6b4df1bc1529d592ae234be1b08b5b5e93f32b39cffff427d3bbf4457cbb50f1bd8bc2279b36bcc97417b4bbbe9158a852e64a511f24e49912e5a8d4a320f86ee48b6c1d9ff3948c33dff1b1f62249c4bea413cffff", + "cborBytes": [ + 216, 102, 159, 27, 175, 125, 207, 165, 19, 37, 162, 151, 159, 159, 216, 102, 159, 27, 11, 71, 165, 70, 151, 3, 85, + 12, 159, 67, 36, 3, 243, 71, 57, 12, 139, 75, 238, 239, 166, 27, 243, 126, 12, 224, 248, 154, 86, 223, 65, 48, + 255, 255, 67, 76, 86, 133, 191, 68, 66, 86, 116, 182, 27, 149, 182, 153, 42, 18, 98, 155, 126, 74, 70, 22, 167, + 43, 247, 14, 80, 48, 164, 122, 27, 68, 53, 200, 252, 162, 7, 37, 105, 76, 163, 244, 95, 220, 158, 186, 61, 225, + 135, 82, 239, 20, 67, 132, 219, 111, 68, 214, 72, 54, 143, 27, 227, 77, 182, 108, 162, 121, 82, 27, 71, 244, 45, + 137, 137, 200, 170, 55, 27, 199, 222, 89, 1, 30, 232, 138, 225, 255, 216, 102, 159, 27, 215, 7, 14, 11, 98, 18, + 148, 55, 128, 255, 191, 27, 43, 19, 118, 77, 50, 166, 182, 38, 73, 108, 245, 33, 13, 14, 77, 198, 180, 223, 27, + 193, 82, 157, 89, 42, 226, 52, 190, 27, 8, 181, 181, 233, 63, 50, 179, 156, 255, 255, 66, 125, 59, 191, 68, 87, + 203, 181, 15, 27, 216, 188, 34, 121, 179, 107, 204, 151, 65, 123, 75, 187, 233, 21, 138, 133, 46, 100, 165, 17, + 242, 78, 73, 145, 46, 90, 141, 74, 50, 15, 134, 238, 72, 182, 193, 217, 255, 57, 72, 195, 61, 255, 27, 31, 98, 36, + 156, 75, 234, 65, 60, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1884, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3920232194719339265" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3750791635720832218" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4226036369418820376" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4700377677902243492" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11789017892928989355" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15954641307449107057" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13356750305178948259" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b8caf589d28" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905069f809fbf1b366776692b4bd3011b340d7d1ec1a584da1b3aa5e5afff171b181b413b18982989e6a41ba39b01500ec1a8ab1bdd6a45bce14722711bb95cb5a2adc812a3461b8caf589d28ffffff", + "cborBytes": [ + 217, 5, 6, 159, 128, 159, 191, 27, 54, 103, 118, 105, 43, 75, 211, 1, 27, 52, 13, 125, 30, 193, 165, 132, 218, 27, + 58, 165, 229, 175, 255, 23, 27, 24, 27, 65, 59, 24, 152, 41, 137, 230, 164, 27, 163, 155, 1, 80, 14, 193, 168, + 171, 27, 221, 106, 69, 188, 225, 71, 34, 113, 27, 185, 92, 181, 162, 173, 200, 18, 163, 70, 27, 140, 175, 88, 157, + 40, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1885, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16496846800023002514" + }, + "fields": [] + }, + "cborHex": "d8669f1be4f092c2b5691d9280ff", + "cborBytes": [216, 102, 159, 27, 228, 240, 146, 194, 181, 105, 29, 146, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1886, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1820283606579128887" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7f0aba49c8c4f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2360631208815518170" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6850242453031904243" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5652294015489812704" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10323264582527648061" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16328863577877672773" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11642457716412615747" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18254360915210728539" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "129f8148063b" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "396894510374673078" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "266afafdb1e5d5c0f919cd5e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94c93abb4ed67810db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d8c826fdb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1516543620788086309" + } + } + } + ] + } + ] + }, + "cborHex": "d87d9f9fbf1b1942f24bc09daa3747f7f0aba49c8c4f1b20c2a593c72661da1b5f10f337864463f31b4e70fb75bf5628e01b8f439a715bee813d1be29bc6e8f93673451ba192519bd3478c431bfd54848960e8f45b46129f8148063bffffbf41041b05820d74502f5ab64c266afafdb1e5d5c0f919cd5e42f9df4994c93abb4ed67810db4105459d8c826fdb1b150bd8635b756625ffff", + "cborBytes": [ + 216, 125, 159, 159, 191, 27, 25, 66, 242, 75, 192, 157, 170, 55, 71, 247, 240, 171, 164, 156, 140, 79, 27, 32, + 194, 165, 147, 199, 38, 97, 218, 27, 95, 16, 243, 55, 134, 68, 99, 243, 27, 78, 112, 251, 117, 191, 86, 40, 224, + 27, 143, 67, 154, 113, 91, 238, 129, 61, 27, 226, 155, 198, 232, 249, 54, 115, 69, 27, 161, 146, 81, 155, 211, 71, + 140, 67, 27, 253, 84, 132, 137, 96, 232, 244, 91, 70, 18, 159, 129, 72, 6, 59, 255, 255, 191, 65, 4, 27, 5, 130, + 13, 116, 80, 47, 90, 182, 76, 38, 106, 250, 253, 177, 229, 213, 192, 249, 25, 205, 94, 66, 249, 223, 73, 148, 201, + 58, 187, 78, 214, 120, 16, 219, 65, 5, 69, 157, 140, 130, 111, 219, 27, 21, 11, 216, 99, 91, 117, 102, 37, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1887, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7017909818837136758" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17133345498821827231" + } + } + ] + }, + "cborHex": "d9050b9f1b61649fcc398375761bedc5def46f501a9fff", + "cborBytes": [ + 217, 5, 11, 159, 27, 97, 100, 159, 204, 57, 131, 117, 118, 27, 237, 197, 222, 244, 111, 80, 26, 159, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1888, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9185063282533161930" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15424893084173187209" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16601907333301806810" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72fb7091647de4" + }, + { + "_tag": "ByteArray", + "bytearray": "283e7d00e5fe54055221227c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16521603202696549499" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7925091783760398061" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1a6812ccd8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9016317526293298745" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17300738883645665806" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8072302122107188965" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11481938147797730090" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11842742815564138791" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10346029581747579495" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cdef80d967" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "76" + }, + { + "_tag": "ByteArray", + "bytearray": "f10f40e877296d53ab2a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14655221459201130661" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7971524592627201650" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3384a9bbc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6455311430753143439" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3cf1aca64bba44c7de7b573c" + }, + { + "_tag": "ByteArray", + "bytearray": "f063c5277b294b4432" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1b77775436b5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17453945729040720259" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9272562968608095589" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b7f77e66412df5bca9fd8669f1bd6103a891485b8899f9f1be665d2c24b6826da4772fb7091647de44c283e7d00e5fe54055221227c1be5488693e0af147b1b6dfb94fd0767c6edff451a6812ccd8ffff1b7d20650508d73e399f1bf0189259f77cf20effd8669f1b70069402dbd4b6e59f9f1b9f5809e9587d832a1ba459dfd8600289271b8f947b16c7bf6a6745cdef80d967ff9f41764af10f40e877296d53ab2a1bcb61ce453c5d80a5ff9f1b6ea08b61cdd5b67245f3384a9bbc1b5995df8b688f4a8f4c3cf1aca64bba44c7de7b573c49f063c5277b294b4432ff461b77775436b5d8669f1bf238df2a646b21839f1b80aec2e44d53bd65ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 127, 119, 230, 100, 18, 223, 91, 202, 159, 216, 102, 159, 27, 214, 16, 58, 137, 20, 133, 184, + 137, 159, 159, 27, 230, 101, 210, 194, 75, 104, 38, 218, 71, 114, 251, 112, 145, 100, 125, 228, 76, 40, 62, 125, + 0, 229, 254, 84, 5, 82, 33, 34, 124, 27, 229, 72, 134, 147, 224, 175, 20, 123, 27, 109, 251, 148, 253, 7, 103, + 198, 237, 255, 69, 26, 104, 18, 204, 216, 255, 255, 27, 125, 32, 101, 5, 8, 215, 62, 57, 159, 27, 240, 24, 146, + 89, 247, 124, 242, 14, 255, 216, 102, 159, 27, 112, 6, 148, 2, 219, 212, 182, 229, 159, 159, 27, 159, 88, 9, 233, + 88, 125, 131, 42, 27, 164, 89, 223, 216, 96, 2, 137, 39, 27, 143, 148, 123, 22, 199, 191, 106, 103, 69, 205, 239, + 128, 217, 103, 255, 159, 65, 118, 74, 241, 15, 64, 232, 119, 41, 109, 83, 171, 42, 27, 203, 97, 206, 69, 60, 93, + 128, 165, 255, 159, 27, 110, 160, 139, 97, 205, 213, 182, 114, 69, 243, 56, 74, 155, 188, 27, 89, 149, 223, 139, + 104, 143, 74, 143, 76, 60, 241, 172, 166, 75, 186, 68, 199, 222, 123, 87, 60, 73, 240, 99, 197, 39, 123, 41, 75, + 68, 50, 255, 70, 27, 119, 119, 84, 54, 181, 216, 102, 159, 27, 242, 56, 223, 42, 100, 107, 33, 131, 159, 27, 128, + 174, 194, 228, 77, 83, 189, 101, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1889, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1146698266023753021" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6539606510635234406" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15841155622745816574" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14128167476785628050" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "553af3996d1e4daa9f3b" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b0fe9e3ff5ae6f53d9fbf1b5ac159791d3eb4661bdbd7171bdd723dfe1bc41155774508c3924a553af3996d1e4daa9f3bffffff", + "cborBytes": [ + 216, 102, 159, 27, 15, 233, 227, 255, 90, 230, 245, 61, 159, 191, 27, 90, 193, 89, 121, 29, 62, 180, 102, 27, 219, + 215, 23, 27, 221, 114, 61, 254, 27, 196, 17, 85, 119, 69, 8, 195, 146, 74, 85, 58, 243, 153, 109, 30, 77, 170, + 159, 59, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1890, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d6d5c2832072" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3308031269285224798" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7388842912353165732" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5164983046706725255" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45c850911eb6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5516279367823144207" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3145317944953903404" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6281431654931293137" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c2bf736393abc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10684199162182277938" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6858277765689481840" + } + } + } + ] + } + ] + }, + "cborHex": "d905039f46d6d5c2832072bf1b2de87ce9a7a1615e1b668a717b23f921a41b47adb4b739de81874645c850911eb61b4c8dc2dbc8ea350f1b2ba66a019ea3992c1b572c20cf4912e3d1474c2bf736393abc1b9445e687db669b321b5f2d7f4a8ae19a70ffff", + "cborBytes": [ + 217, 5, 3, 159, 70, 214, 213, 194, 131, 32, 114, 191, 27, 45, 232, 124, 233, 167, 161, 97, 94, 27, 102, 138, 113, + 123, 35, 249, 33, 164, 27, 71, 173, 180, 183, 57, 222, 129, 135, 70, 69, 200, 80, 145, 30, 182, 27, 76, 141, 194, + 219, 200, 234, 53, 15, 27, 43, 166, 106, 1, 158, 163, 153, 44, 27, 87, 44, 32, 207, 73, 18, 227, 209, 71, 76, 43, + 247, 54, 57, 58, 188, 27, 148, 69, 230, 135, 219, 102, 155, 50, 27, 95, 45, 127, 74, 138, 225, 154, 112, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1891, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13446230278159290760" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8215078464962541193" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81ed" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9744779344604669086" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7aff7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12062694151248819661" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7be335ee4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14200438940872184559" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13059089281891220869" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6352234392324423237" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2418157612916189308" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bba9a9b3261c951889fd8669f1bffffffffffffffef9fa0bf1b7201d256aa0db6894281ed1b873c692f11b9a49e43f7aff71ba7674c6b6f5e35cd45c7be335ee41bc51217fac54f92ef1bb53b3483093cbd85ff1b5827ab8634843e45a09f1b218f058978c6a87cffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 186, 154, 155, 50, 97, 201, 81, 136, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 239, 159, 160, 191, 27, 114, 1, 210, 86, 170, 13, 182, 137, 66, 129, 237, 27, 135, 60, 105, 47, 17, 185, 164, 158, + 67, 247, 175, 247, 27, 167, 103, 76, 107, 111, 94, 53, 205, 69, 199, 190, 51, 94, 228, 27, 197, 18, 23, 250, 197, + 79, 146, 239, 27, 181, 59, 52, 131, 9, 60, 189, 133, 255, 27, 88, 39, 171, 134, 52, 132, 62, 69, 160, 159, 27, 33, + 143, 5, 137, 120, 198, 168, 124, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1892, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "49f33c98" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16324709632590254197" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ca" + }, + { + "_tag": "ByteArray", + "bytearray": "4a678a" + }, + { + "_tag": "ByteArray", + "bytearray": "304dcb" + }, + { + "_tag": "ByteArray", + "bytearray": "9cc28aac5a6676b1a41c" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + ] + }, + "cborHex": "d87a9f9f9f4449f33c98ff9f1be28d04eb37f0907541ca434a678a43304dcb4a9cc28aac5a6676b1a41cffff1bfffffffffffffffcff", + "cborBytes": [ + 216, 122, 159, 159, 159, 68, 73, 243, 60, 152, 255, 159, 27, 226, 141, 4, 235, 55, 240, 144, 117, 65, 202, 67, 74, + 103, 138, 67, 48, 77, 203, 74, 156, 194, 138, 172, 90, 102, 118, 177, 164, 28, 255, 255, 27, 255, 255, 255, 255, + 255, 255, 255, 252, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1893, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c5d03bbeb732" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3739216880282387720" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d817e84e51a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "610403698300145119" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "799389623186899514" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1579948581422537264" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3106941443212346734" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10392014041957857880" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7188478030836239708" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5485445072618168513" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9946043562579041874" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c64192ce29f3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14109737043448471386" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8760776160522470735" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15405256807973601044" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7159072768238775380" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aca88ec44977cb04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f46c5d03bbeb732a09f1b33e45df0ff604508460d817e84e51a1b087896edf6c3cddfbf1b0b1800a07f30423a1b15ed1add27129a301b2b1e12c8049c856e1b9037d9b63fc4fa581b63c29aaecfb18d5c1b4c20373afc52a0c11b8a0771ec7c159e5246c64192ce29f31bc3cfdb159cea9f5a1b799487805ca7054f1bd5ca777240ef3f1441a5ffff9f1b635a22c0980b6c54ffbf48aca88ec44977cb044193ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 70, 197, 208, 59, 190, 183, 50, 160, 159, 27, 51, + 228, 93, 240, 255, 96, 69, 8, 70, 13, 129, 126, 132, 229, 26, 27, 8, 120, 150, 237, 246, 195, 205, 223, 191, 27, + 11, 24, 0, 160, 127, 48, 66, 58, 27, 21, 237, 26, 221, 39, 18, 154, 48, 27, 43, 30, 18, 200, 4, 156, 133, 110, 27, + 144, 55, 217, 182, 63, 196, 250, 88, 27, 99, 194, 154, 174, 207, 177, 141, 92, 27, 76, 32, 55, 58, 252, 82, 160, + 193, 27, 138, 7, 113, 236, 124, 21, 158, 82, 70, 198, 65, 146, 206, 41, 243, 27, 195, 207, 219, 21, 156, 234, 159, + 90, 27, 121, 148, 135, 128, 92, 167, 5, 79, 27, 213, 202, 119, 114, 64, 239, 63, 20, 65, 165, 255, 255, 159, 27, + 99, 90, 34, 192, 152, 11, 108, 84, 255, 191, 72, 172, 168, 142, 196, 73, 119, 203, 4, 65, 147, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1894, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "914621873079151140" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2015450665841129254" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5014452893561752665" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4bf4379f7076928cc8" + }, + { + "_tag": "ByteArray", + "bytearray": "f15ced5b79769eaa9e5153" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12607660665441800591" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3107066032502500772" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3867972202195593471" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "215a069bbff95ecb3fe097" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d330d7e44" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5684280833463907507" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d85a0a286" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0cb9b18b6aa671" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8742fba84dd6b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "daa9214cf77fd80a88078b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a37289c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c178b41f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2df02d0bb86122" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3409206537984293874" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c18e3b70d240d1a83e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6912436824519866482" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10492064274291062434" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3876304869239409095" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff81b47a7a8613f81f4cac" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12922287995962359970" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9fd8669f1b0cb163bf68af6a249f801b1bf851b3c7c8f7261b4596ea56c7ad8c599f494bf4379f7076928cc84bf15ced5b79769eaa9e5153ff80ffffd8669f1baef76893b452d18f9f9f1b2b1e841838fe6da41b35adcc3978f428ffff4b215a069bbff95ecb3fe097bf457d330d7e441b4ee29f4d2a2d74b3457d85a0a286470cb9b18b6aa671478742fba84dd6b34bdaa9214cf77fd80a88078b448a37289c415044c178b41f472df02d0bb86122ff1b2f4fef48967e3bf29f49c18e3b70d240d1a83e1b5fede8ab11d5f872ffffff9fd905049f1b919b4cde3daf76a21b35cb66bdb421c9c74bff81b47a7a8613f81f4cacffff1bb355307794a180a2ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 216, 102, 159, 27, 12, 177, 99, 191, 104, 175, + 106, 36, 159, 128, 27, 27, 248, 81, 179, 199, 200, 247, 38, 27, 69, 150, 234, 86, 199, 173, 140, 89, 159, 73, 75, + 244, 55, 159, 112, 118, 146, 140, 200, 75, 241, 92, 237, 91, 121, 118, 158, 170, 158, 81, 83, 255, 128, 255, 255, + 216, 102, 159, 27, 174, 247, 104, 147, 180, 82, 209, 143, 159, 159, 27, 43, 30, 132, 24, 56, 254, 109, 164, 27, + 53, 173, 204, 57, 120, 244, 40, 255, 255, 75, 33, 90, 6, 155, 191, 249, 94, 203, 63, 224, 151, 191, 69, 125, 51, + 13, 126, 68, 27, 78, 226, 159, 77, 42, 45, 116, 179, 69, 125, 133, 160, 162, 134, 71, 12, 185, 177, 139, 106, 166, + 113, 71, 135, 66, 251, 168, 77, 214, 179, 75, 218, 169, 33, 76, 247, 127, 216, 10, 136, 7, 139, 68, 138, 55, 40, + 156, 65, 80, 68, 193, 120, 180, 31, 71, 45, 240, 45, 11, 184, 97, 34, 255, 27, 47, 79, 239, 72, 150, 126, 59, 242, + 159, 73, 193, 142, 59, 112, 210, 64, 209, 168, 62, 27, 95, 237, 232, 171, 17, 213, 248, 114, 255, 255, 255, 159, + 217, 5, 4, 159, 27, 145, 155, 76, 222, 61, 175, 118, 162, 27, 53, 203, 102, 189, 180, 33, 201, 199, 75, 255, 129, + 180, 122, 122, 134, 19, 248, 31, 76, 172, 255, 255, 27, 179, 85, 48, 119, 148, 161, 128, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1895, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17874106301842668406" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3120525020589955242" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9999476184444297447" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5226318778396305684" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5870612439775373104" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12607437051456090342" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17304360016682002888" + } + } + ] + }, + "cborHex": "d8669f1bf80d94fafee73b769fd8669f1b2b4e54f914fb98aa80ff1b8ac5469c39c7e0e7d8669f1b48879d3d1d43e9149f9f1b51789ae8fecce7301baef69d33842370e6ffffff1bf0256fc0b3cda9c8ffff", + "cborBytes": [ + 216, 102, 159, 27, 248, 13, 148, 250, 254, 231, 59, 118, 159, 216, 102, 159, 27, 43, 78, 84, 249, 20, 251, 152, + 170, 128, 255, 27, 138, 197, 70, 156, 57, 199, 224, 231, 216, 102, 159, 27, 72, 135, 157, 61, 29, 67, 233, 20, + 159, 159, 27, 81, 120, 154, 232, 254, 204, 231, 48, 27, 174, 246, 157, 51, 132, 35, 112, 230, 255, 255, 255, 27, + 240, 37, 111, 192, 179, 205, 169, 200, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1896, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13197587074168535446" + }, + "fields": [] + }, + "cborHex": "d8669f1bb7273f85281a399680ff", + "cborBytes": [216, 102, 159, 27, 183, 39, 63, 133, 40, 26, 57, 150, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1897, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6493797845862821834" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14783516497862588339" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12743583950175856493" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9589558425236340790" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9809" + }, + { + "_tag": "ByteArray", + "bytearray": "a234" + }, + { + "_tag": "ByteArray", + "bytearray": "7d044eea" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10901440060371515416" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2216785216791355411" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a6b6b959b9" + }, + { + "_tag": "ByteArray", + "bytearray": "e8c7721cf8ab45" + }, + { + "_tag": "ByteArray", + "bytearray": "d44c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8526501214983450505" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c46" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13357054005610747978" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c758f2c6ec53f1eb7fedb8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d043e724" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15224243295841017858" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eea6422903" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10113686765392905399" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5a1e9abc35d9afca9fd8669f1bcd2999edaa39f7b39fa0d8669f1bb0da4e159399e76d9f1b8514f4948111003642980942a234447d044eeaffffd8669f1b9749b1fa02a838189f1b1ec39a68de2fa01345a6b6b959b947e8c7721cf8ab4542d44cffffbf1b765437ae00066f89429c461bb95dc9d97223184a4bc758f2c6ec53f1eb7fedb844d043e7241bd347609db6b9e00245eea64229031b8c5b08874cd044b7ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 90, 30, 154, 188, 53, 217, 175, 202, 159, 216, 102, 159, 27, 205, 41, 153, 237, 170, 57, 247, + 179, 159, 160, 216, 102, 159, 27, 176, 218, 78, 21, 147, 153, 231, 109, 159, 27, 133, 20, 244, 148, 129, 17, 0, + 54, 66, 152, 9, 66, 162, 52, 68, 125, 4, 78, 234, 255, 255, 216, 102, 159, 27, 151, 73, 177, 250, 2, 168, 56, 24, + 159, 27, 30, 195, 154, 104, 222, 47, 160, 19, 69, 166, 182, 185, 89, 185, 71, 232, 199, 114, 28, 248, 171, 69, 66, + 212, 76, 255, 255, 191, 27, 118, 84, 55, 174, 0, 6, 111, 137, 66, 156, 70, 27, 185, 93, 201, 217, 114, 35, 24, 74, + 75, 199, 88, 242, 198, 236, 83, 241, 235, 127, 237, 184, 68, 208, 67, 231, 36, 27, 211, 71, 96, 157, 182, 185, + 224, 2, 69, 238, 166, 66, 41, 3, 27, 140, 91, 8, 135, 76, 208, 68, 183, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1898, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16613232141821544033" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6835205022394288737" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd003b57" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15858694991945124623" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1556083719867364264" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17851220707062934329" + } + } + ] + } + ] + }, + "cborHex": "d8669f1be68e0e9cc06006619fd8669f1b5edb86c0dec70a619f44fd003b571bdc1567127c27cb0f1b159851e6137673a81bf7bc46a73b956b39ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 230, 142, 14, 156, 192, 96, 6, 97, 159, 216, 102, 159, 27, 94, 219, 134, 192, 222, 199, 10, 97, + 159, 68, 253, 0, 59, 87, 27, 220, 21, 103, 18, 124, 39, 203, 15, 27, 21, 152, 81, 230, 19, 118, 115, 168, 27, 247, + 188, 70, 167, 59, 149, 107, 57, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1899, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5731499269116666305" + }, + "fields": [] + }, + "cborHex": "d8669f1b4f8a6037ee1c21c180ff", + "cborBytes": [216, 102, 159, 27, 79, 138, 96, 55, 238, 28, 33, 193, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1900, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7611369520474408132" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07fcf3dcbb4ccf4604a831" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2c95b54" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19ef818535ca3745e2440d61" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18138815234044736296" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27d6122fcdb658be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0124129bfd63" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c900a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16704659204896428024" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d540c3294cbe499db7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5053cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbc9590a2db98ecc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15881564018958486933" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4605562678293080746" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15250635123823308370" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "545cabdfe87c971a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4785302179091391201" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "32d5" + } + ] + } + ] + }, + "cborHex": "d8669f1b69a104408a1cc4c49fbf4b07fcf3dcbb4ccf4604a83144a2c95b544c19ef818535ca3745e2440d611bfbba045a0fae33284827d6122fcdb658be460124129bfd63439c900a1be7d2df0ab1cf8ff849d540c3294cbe499db7435053cb48dbc9590a2db98ecc1bdc66a654c3a54d95ff1b3fea3edac674aaaad8669f1bd3a523d802956e529f9f48545cabdfe87c971a1b4268cefa6fa522e1ff4232d5ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 105, 161, 4, 64, 138, 28, 196, 196, 159, 191, 75, 7, 252, 243, 220, 187, 76, 207, 70, 4, 168, + 49, 68, 162, 201, 91, 84, 76, 25, 239, 129, 133, 53, 202, 55, 69, 226, 68, 13, 97, 27, 251, 186, 4, 90, 15, 174, + 51, 40, 72, 39, 214, 18, 47, 205, 182, 88, 190, 70, 1, 36, 18, 155, 253, 99, 67, 156, 144, 10, 27, 231, 210, 223, + 10, 177, 207, 143, 248, 73, 213, 64, 195, 41, 76, 190, 73, 157, 183, 67, 80, 83, 203, 72, 219, 201, 89, 10, 45, + 185, 142, 204, 27, 220, 102, 166, 84, 195, 165, 77, 149, 255, 27, 63, 234, 62, 218, 198, 116, 170, 170, 216, 102, + 159, 27, 211, 165, 35, 216, 2, 149, 110, 82, 159, 159, 72, 84, 92, 171, 223, 232, 124, 151, 26, 27, 66, 104, 206, + 250, 111, 165, 34, 225, 255, 66, 50, 213, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1901, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16676772645772969548" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bb0a7c0005fd0600fc88" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1d8fe4308411eb748066b5" + }, + { + "_tag": "ByteArray", + "bytearray": "c626e60e2fe750f05eb6af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9395198728004622108" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2193494870151629346" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b66bad80828f6a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8481512277389399309" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4bdc19" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10564899284241923093" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15043103107518819921" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15775658083904415780" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6a7dd0e2913b5569927" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18365818864985650240" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3f36cba10578402b0" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1be76fcc5d2f3fc64c9f4abb0a7c0005fd0600fc889f9f4b1d8fe4308411eb748066b54bc626e60e2fe750f05eb6af1b8262737718ead71cff80bf1b1e70dbf678078a2247b66bad80828f6a1b75b4627ab3e8d50d434bdc191b929e0fec7d04bc151bd0c3d693133bee511bdaee6571bd2468244ab6a7dd0e2913b55699271bfee07ef390a3344049c3f36cba10578402b0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 231, 111, 204, 93, 47, 63, 198, 76, 159, 74, 187, 10, 124, 0, 5, 253, 6, 0, 252, 136, 159, 159, + 75, 29, 143, 228, 48, 132, 17, 235, 116, 128, 102, 181, 75, 198, 38, 230, 14, 47, 231, 80, 240, 94, 182, 175, 27, + 130, 98, 115, 119, 24, 234, 215, 28, 255, 128, 191, 27, 30, 112, 219, 246, 120, 7, 138, 34, 71, 182, 107, 173, + 128, 130, 143, 106, 27, 117, 180, 98, 122, 179, 232, 213, 13, 67, 75, 220, 25, 27, 146, 158, 15, 236, 125, 4, 188, + 21, 27, 208, 195, 214, 147, 19, 59, 238, 81, 27, 218, 238, 101, 113, 189, 36, 104, 36, 74, 182, 167, 221, 14, 41, + 19, 181, 86, 153, 39, 27, 254, 224, 126, 243, 144, 163, 52, 64, 73, 195, 243, 108, 186, 16, 87, 132, 2, 176, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1902, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2293079139633266808" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9735016242326944020" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4027667919773552343" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c728c3c5fe7148a323" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8663917496999320215" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3082664020524889883" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9179769894116346754" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5783308159964863952" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11860272296061999820" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10611552075791223488" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12511812315549372415" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fbbc1192985b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1525224186515498723" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10751699797745415338" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9656080943938828781" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9310410847569157107" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ff4e14f2c1a69483" + } + ] + }, + "cborHex": "d9050b9fbf1b1fd2a75407b300781b8719b9b1ae8e39141b37e526a22f56ced749c728c3c5fe7148a3231b783c6b0f63ef9a971b2ac7d2981143771b1b7f6518150aa14b821b504270215552ddd01ba49826d09a2e9acc1b9343ce63f9184ac0ffd8669f1bada2e302b4ad8fff9f46fbbc1192985bd8669f1b152aaf51101726e39f41aa1b9535b600484134aa1b86014a7559e479ed1b81353956524d9bf3ffffffff48ff4e14f2c1a69483ff", + "cborBytes": [ + 217, 5, 11, 159, 191, 27, 31, 210, 167, 84, 7, 179, 0, 120, 27, 135, 25, 185, 177, 174, 142, 57, 20, 27, 55, 229, + 38, 162, 47, 86, 206, 215, 73, 199, 40, 195, 197, 254, 113, 72, 163, 35, 27, 120, 60, 107, 15, 99, 239, 154, 151, + 27, 42, 199, 210, 152, 17, 67, 119, 27, 27, 127, 101, 24, 21, 10, 161, 75, 130, 27, 80, 66, 112, 33, 85, 82, 221, + 208, 27, 164, 152, 38, 208, 154, 46, 154, 204, 27, 147, 67, 206, 99, 249, 24, 74, 192, 255, 216, 102, 159, 27, + 173, 162, 227, 2, 180, 173, 143, 255, 159, 70, 251, 188, 17, 146, 152, 91, 216, 102, 159, 27, 21, 42, 175, 81, 16, + 23, 38, 227, 159, 65, 170, 27, 149, 53, 182, 0, 72, 65, 52, 170, 27, 134, 1, 74, 117, 89, 228, 121, 237, 27, 129, + 53, 57, 86, 82, 77, 155, 243, 255, 255, 255, 255, 72, 255, 78, 20, 242, 193, 166, 148, 131, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1903, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0514fc" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12629770955984664890" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3089821425564650976" + } + }, + { + "_tag": "ByteArray", + "bytearray": "51d2a46756be" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "996317379000220701" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11321272617972878651" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "38048cd917cd" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9fd9050c9f430514fcffd8669f1baf45f5c4e202f93a9f1b2ae140374a2c0de04651d2a46756bed8669f1b0dd3a160a2db3c1d9f1b9d1d3d769fa14d3bffffffff4638048cd917cdffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 217, 5, 12, 159, 67, 5, 20, 252, 255, 216, 102, + 159, 27, 175, 69, 245, 196, 226, 2, 249, 58, 159, 27, 42, 225, 64, 55, 74, 44, 13, 224, 70, 81, 210, 164, 103, 86, + 190, 216, 102, 159, 27, 13, 211, 161, 96, 162, 219, 60, 29, 159, 27, 157, 29, 61, 118, 159, 161, 77, 59, 255, 255, + 255, 255, 70, 56, 4, 140, 217, 23, 205, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1904, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12993264753383797719" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9923461167663354352" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2455550670470117950" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9260685844202926584" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13169917614939425989" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9a6fa1ff791c778387381" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bb4515973b20b73d79fa0d8669f1b89b7375af0f511f09fbf1b2213de532157fa3e0a1b808490b5c83431f81bb6c4f24b279fccc51bfffffffffffffffa4bd9a6fa1ff791c778387381ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 180, 81, 89, 115, 178, 11, 115, 215, 159, 160, 216, 102, 159, 27, 137, 183, 55, 90, 240, 245, + 17, 240, 159, 191, 27, 34, 19, 222, 83, 33, 87, 250, 62, 10, 27, 128, 132, 144, 181, 200, 52, 49, 248, 27, 182, + 196, 242, 75, 39, 159, 204, 197, 27, 255, 255, 255, 255, 255, 255, 255, 250, 75, 217, 166, 250, 31, 247, 145, 199, + 120, 56, 115, 129, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1905, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7843830331724643408" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11556436536314963424" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6049c6184584f7d22154" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11014295660574941932" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9855" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b3f249bbaae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae6ecc905e25702e8e8b63d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bad61f5c042ce3b374fb92" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7562" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe1c8e84f6d001" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9945818368592785456" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15026775454813760887" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2128234184664688268" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e970" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3370827876370497154" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4775800092052929213" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3762827626411231543" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90d9d15ac54548" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4339172708971267691" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16989410475839673287" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13957717848549897429" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8608917217740870221" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0588" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3974070237444214125" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "eca1bb4032" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d263284b1e5433cf" + }, + { + "_tag": "ByteArray", + "bytearray": "b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11020013196563395749" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6cdae220d8e1bc509fd8669f1ba060b5cd186625e09fbf4a6049c6184584f7d221541b98daa38c0bb222ec429855469b3f249bbaae4cae6ecc905e25702e8e8b63d44bbad61f5c042ce3b374fb9241f642756247fe1c8e84f6d0011b8a06a51c6c873030ffffffd905099f1bd089d4a92fbbad7780bf1b1d8901b70fc8268c42e9701b2ec796181a0c3e821b42470ce16517babd1b34383fca374489374790d9d15ac545481b3c37d696c14d466b1bebc682d063b953c71bc1b3c66e9df234d51b77790498f830524dff9f4205881b3726bbd34f508d6dffff45eca1bb4032d8669f1bfffffffffffffff69f8048d263284b1e5433cf41b91b98eef39da14734a5ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 108, 218, 226, 32, 216, 225, 188, 80, 159, 216, 102, 159, 27, 160, 96, 181, 205, 24, 102, 37, + 224, 159, 191, 74, 96, 73, 198, 24, 69, 132, 247, 210, 33, 84, 27, 152, 218, 163, 140, 11, 178, 34, 236, 66, 152, + 85, 70, 155, 63, 36, 155, 186, 174, 76, 174, 110, 204, 144, 94, 37, 112, 46, 142, 139, 99, 212, 75, 186, 214, 31, + 92, 4, 44, 227, 179, 116, 251, 146, 65, 246, 66, 117, 98, 71, 254, 28, 142, 132, 246, 208, 1, 27, 138, 6, 165, 28, + 108, 135, 48, 48, 255, 255, 255, 217, 5, 9, 159, 27, 208, 137, 212, 169, 47, 187, 173, 119, 128, 191, 27, 29, 137, + 1, 183, 15, 200, 38, 140, 66, 233, 112, 27, 46, 199, 150, 24, 26, 12, 62, 130, 27, 66, 71, 12, 225, 101, 23, 186, + 189, 27, 52, 56, 63, 202, 55, 68, 137, 55, 71, 144, 217, 209, 90, 197, 69, 72, 27, 60, 55, 214, 150, 193, 77, 70, + 107, 27, 235, 198, 130, 208, 99, 185, 83, 199, 27, 193, 179, 198, 110, 157, 242, 52, 213, 27, 119, 121, 4, 152, + 248, 48, 82, 77, 255, 159, 66, 5, 136, 27, 55, 38, 187, 211, 79, 80, 141, 109, 255, 255, 69, 236, 161, 187, 64, + 50, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 128, 72, 210, 99, 40, 75, 30, 84, 51, 207, 65, + 185, 27, 152, 238, 243, 157, 161, 71, 52, 165, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1906, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16530681835490880084" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d9b2" + } + ] + }, + "cborHex": "d8669f1be568c78bcb6faa549f42d9b2ffff", + "cborBytes": [216, 102, 159, 27, 229, 104, 199, 139, 203, 111, 170, 84, 159, 66, 217, 178, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1907, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13870388404909809950" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15408842878580294013" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "84a49bb474812e39edaa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4248413513913847606" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9500695034567922234" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7190899047525380832" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eb94b937" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae2a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10145770543021668885" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6460188947310032904" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6014067577748753415" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10444248527991009090" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10893789361342140531" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15013658705901360802" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "378197799722766290" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e64013606d827d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14475131287508159313" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bc07d84c40b58a11e9fd8669f1bd5d734f56196017d9fbf4a84a49bb474812e39edaa1b3af56594f3cdcf36ff9f1b83d93fcc0ebd123a1b63cb3495af71f2e044eb94b937ffbf42ae2a1b8ccd048de56dba15ff1b59a7339eba51b808ffff1b537642991ae88c07bf1b90f16cb340ccef421b972e83b4d4ba50731bd05b3b0c183396a21b053fa0e5234f4fd247e64013606d827d1bc8e1ff36a5110b51ffffff", + "cborBytes": [ + 216, 102, 159, 27, 192, 125, 132, 196, 11, 88, 161, 30, 159, 216, 102, 159, 27, 213, 215, 52, 245, 97, 150, 1, + 125, 159, 191, 74, 132, 164, 155, 180, 116, 129, 46, 57, 237, 170, 27, 58, 245, 101, 148, 243, 205, 207, 54, 255, + 159, 27, 131, 217, 63, 204, 14, 189, 18, 58, 27, 99, 203, 52, 149, 175, 113, 242, 224, 68, 235, 148, 185, 55, 255, + 191, 66, 174, 42, 27, 140, 205, 4, 141, 229, 109, 186, 21, 255, 27, 89, 167, 51, 158, 186, 81, 184, 8, 255, 255, + 27, 83, 118, 66, 153, 26, 232, 140, 7, 191, 27, 144, 241, 108, 179, 64, 204, 239, 66, 27, 151, 46, 131, 180, 212, + 186, 80, 115, 27, 208, 91, 59, 12, 24, 51, 150, 162, 27, 5, 63, 160, 229, 35, 79, 79, 210, 71, 230, 64, 19, 96, + 109, 130, 125, 27, 200, 225, 255, 54, 165, 17, 11, 81, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1908, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10035408554604568261" + }, + "fields": [] + }, + "cborHex": "d8669f1b8b44eee9191f1ec580ff", + "cborBytes": [216, 102, 159, 27, 139, 68, 238, 233, 25, 31, 30, 197, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1909, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12679925047034049833" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15722247619160883853" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "815944329090142061" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13185801296411596387" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13965470827887948022" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + }, + "cborHex": "d8669f1baff824a62f0af5299f1bda30a4e8dad0c28d9f1b0b52d10b53e98f6dd8669f1bb6fd606aef7f96639f1bc1cf51b9c95770f6ffff80ff14ffff", + "cborBytes": [ + 216, 102, 159, 27, 175, 248, 36, 166, 47, 10, 245, 41, 159, 27, 218, 48, 164, 232, 218, 208, 194, 141, 159, 27, + 11, 82, 209, 11, 83, 233, 143, 109, 216, 102, 159, 27, 182, 253, 96, 106, 239, 127, 150, 99, 159, 27, 193, 207, + 81, 185, 201, 87, 112, 246, 255, 255, 128, 255, 20, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1910, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a0ce164070986efb8011731e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f4ca0ce164070986efb8011731e0bffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 76, 160, 206, 22, 64, 112, 152, 110, 251, 128, 17, + 115, 30, 11, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1911, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d1387fb3ccff03b348" + } + ] + }, + "cborHex": "d87b9f49d1387fb3ccff03b348ff", + "cborBytes": [216, 123, 159, 73, 209, 56, 127, 179, 204, 255, 3, 179, 72, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1912, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0e50" + }, + { + "_tag": "ByteArray", + "bytearray": "07050206060505" + } + ] + }, + "cborHex": "d87b9f420e504707050206060505ff", + "cborBytes": [216, 123, 159, 66, 14, 80, 71, 7, 5, 2, 6, 6, 5, 5, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1913, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2708990674936747495" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1712382841039379711" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f60b28da24e0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4433148439292510254" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "156340a09a51ad367343" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12947980105494617899" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32057589e0ee1f93b037" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2513703840075615436" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11789243541383220675" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3148211978989828015" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39f0d2cafe5a71d3a678" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5824719823957844599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12402073873594627972" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6029533333230044667" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15726189532223147915" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10784162636623115535" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45bf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10871824897083724420" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7582307054180329309" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "36685dd391" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e789b7458ea65" + }, + { + "_tag": "ByteArray", + "bytearray": "39dc0397d7" + }, + { + "_tag": "ByteArray", + "bytearray": "d9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16730482028296533576" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ba" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b259844aa7f7355e79fbf1b17c39b1f0fa05cff46f60b28da24e01b3d85b504889b802e4a156340a09a51ad3673431bb3b0774dfad4df2b4a32057589e0ee1f93b037ffbf1b22e278530a3e0ccc1ba39bce89eeb70dc31b2bb0b21d6d5177af4a39f0d2cafe5a71d3a6781b50d58fd1b72ee2771bac1d047aa1c2b7841b53ad349ee88dc5fb1bda3ea60f02a08f8b1b95a90ac7f3f5f50f4245bf1b96e07b247aec52841b6939c417ce5b675dffd8799f4536685dd391809f478e789b7458ea654539dc0397d741d91be82e9cc349abf64841baffffd8669f1bfffffffffffffff680ffffff", + "cborBytes": [ + 216, 102, 159, 27, 37, 152, 68, 170, 127, 115, 85, 231, 159, 191, 27, 23, 195, 155, 31, 15, 160, 92, 255, 70, 246, + 11, 40, 218, 36, 224, 27, 61, 133, 181, 4, 136, 155, 128, 46, 74, 21, 99, 64, 160, 154, 81, 173, 54, 115, 67, 27, + 179, 176, 119, 77, 250, 212, 223, 43, 74, 50, 5, 117, 137, 224, 238, 31, 147, 176, 55, 255, 191, 27, 34, 226, 120, + 83, 10, 62, 12, 204, 27, 163, 155, 206, 137, 238, 183, 13, 195, 27, 43, 176, 178, 29, 109, 81, 119, 175, 74, 57, + 240, 210, 202, 254, 90, 113, 211, 166, 120, 27, 80, 213, 143, 209, 183, 46, 226, 119, 27, 172, 29, 4, 122, 161, + 194, 183, 132, 27, 83, 173, 52, 158, 232, 141, 197, 251, 27, 218, 62, 166, 15, 2, 160, 143, 139, 27, 149, 169, 10, + 199, 243, 245, 245, 15, 66, 69, 191, 27, 150, 224, 123, 36, 122, 236, 82, 132, 27, 105, 57, 196, 23, 206, 91, 103, + 93, 255, 216, 121, 159, 69, 54, 104, 93, 211, 145, 128, 159, 71, 142, 120, 155, 116, 88, 234, 101, 69, 57, 220, 3, + 151, 215, 65, 217, 27, 232, 46, 156, 195, 73, 171, 246, 72, 65, 186, 255, 255, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 246, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1914, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4229927492739760748" + }, + "fields": [] + }, + "cborHex": "d8669f1b3ab3b8a4be69826c80ff", + "cborBytes": [216, 102, 159, 27, 58, 179, 184, 164, 190, 105, 130, 108, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1915, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3454200093865095011" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13692529232736996743" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2729167593410894385" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7198402710424572080" + }, + "fields": [] + } + ] + }, + "cborHex": "d87b9f1b2fefc8af29f32f63d8669f1bbe05a2ca81f0cd879f1b25dff37769c39a31ffffd8669f1b63e5dd205910d0b080ffff", + "cborBytes": [ + 216, 123, 159, 27, 47, 239, 200, 175, 41, 243, 47, 99, 216, 102, 159, 27, 190, 5, 162, 202, 129, 240, 205, 135, + 159, 27, 37, 223, 243, 119, 105, 195, 154, 49, 255, 255, 216, 102, 159, 27, 99, 229, 221, 32, 89, 16, 208, 176, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1916, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8182549851810365385" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11040497850072282855" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17509640841036317692" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4132252922484550086" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3221521175950106056" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3251428354049280541" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7661971750644644286" + } + }, + { + "_tag": "ByteArray", + "bytearray": "962e645422bb75a7" + } + ] + }, + "cborHex": "d9050a9fbf1b718e41bcba14ffc91b9937ba4cb105b6e71bf2febd932aa443fc1b3958b623aec2e9c6ffd8669f1b2cb52470f0e79dc880ff1b2d1f64dc77bd8a1d1b6a54cab65c4079be48962e645422bb75a7ff", + "cborBytes": [ + 217, 5, 10, 159, 191, 27, 113, 142, 65, 188, 186, 20, 255, 201, 27, 153, 55, 186, 76, 177, 5, 182, 231, 27, 242, + 254, 189, 147, 42, 164, 67, 252, 27, 57, 88, 182, 35, 174, 194, 233, 198, 255, 216, 102, 159, 27, 44, 181, 36, + 112, 240, 231, 157, 200, 128, 255, 27, 45, 31, 100, 220, 119, 189, 138, 29, 27, 106, 84, 202, 182, 92, 64, 121, + 190, 72, 150, 46, 100, 84, 34, 187, 117, 167, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1917, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17774846550861997813" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10272433153291018858" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01053bf9" + }, + { + "_tag": "ByteArray", + "bytearray": "0092" + } + ] + } + ] + }, + "cborHex": "d905089fd8669f1bf6acf0c34934e6f580ffd8669f1b8e8f0386f8db626a9f4401053bf9420092ffffff", + "cborBytes": [ + 217, 5, 8, 159, 216, 102, 159, 27, 246, 172, 240, 195, 73, 52, 230, 245, 128, 255, 216, 102, 159, 27, 142, 143, 3, + 134, 248, 219, 98, 106, 159, 68, 1, 5, 59, 249, 66, 0, 146, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1918, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5253736464469625542" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b48e9057a9c3a8ac69f80ffff", + "cborBytes": [216, 102, 159, 27, 72, 233, 5, 122, 156, 58, 138, 198, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1919, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "253c271b" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19fbf41b844253c271bffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 191, 65, 184, 68, 37, 60, 39, 27, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1920, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17850107046720349329" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc7ae02c88" + } + } + ] + } + ] + }, + "cborHex": "d905029fbf1bf7b851c8fa76a49145fc7ae02c88ffff", + "cborBytes": [217, 5, 2, 159, 191, 27, 247, 184, 81, 200, 250, 118, 164, 145, 69, 252, 122, 224, 44, 136, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1921, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4315672255135262135" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6183955040330457456" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "061e77d19d44cdf96657" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12408740162811458185" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7140090" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "089b27e13c0f0d0905" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "393cb5" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3be4590cf658a5b79fbf1b55d1d2585de221704a061e77d19d44cdf966571bac34b36f0a7ff28944e714009049089b27e13c0f0d090543393cb5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 59, 228, 89, 12, 246, 88, 165, 183, 159, 191, 27, 85, 209, 210, 88, 93, 226, 33, 112, 74, 6, + 30, 119, 209, 157, 68, 205, 249, 102, 87, 27, 172, 52, 179, 111, 10, 127, 242, 137, 68, 231, 20, 0, 144, 73, 8, + 155, 39, 225, 60, 15, 13, 9, 5, 67, 57, 60, 181, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1922, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9573519184761380348" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7f74a0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15748684419262712181" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02010b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2800421836664203222" + } + }, + { + "_tag": "ByteArray", + "bytearray": "095ff283bfad0277ba88" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b84dbf8f9d216ddfc9fd905029f9f1bffffffffffffffef1bffffffffffffffefff437f74a01bda8e910a09e20975d8799f4302010b1b26dd18d2bb9de7d64a095ff283bfad0277ba88ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 132, 219, 248, 249, 210, 22, 221, 252, 159, 217, 5, 2, 159, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 239, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255, 67, 127, 116, 160, 27, 218, 142, 145, 10, 9, 226, + 9, 117, 216, 121, 159, 67, 2, 1, 11, 27, 38, 221, 24, 210, 187, 157, 231, 214, 74, 9, 95, 242, 131, 191, 173, 2, + 119, 186, 136, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1923, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4603587260127320092" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17667911419884199350" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11940037468614881348" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17126111445748705407" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd6abef913d0742b32aa5e8e" + }, + { + "_tag": "ByteArray", + "bytearray": "21a0f672d7" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1921447570452836786" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3290426213334969302" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0fb4b3cc46" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7640031836717530356" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2116223392009802583" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8079469409007703202" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c58379c096" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9384004800166897850" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fed4c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14602696439392466887" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4403421728114425253" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3933126707620914216" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6ade0726f4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15087541235079729328" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "61038795677716630" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f44ea5fa2db25da59" + }, + { + "_tag": "ByteArray", + "bytearray": "6392c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6458722617749954991" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "77e498fdec70d962" + } + ] + }, + "cborHex": "d8669f1b3fe33a38e467181c9fa09f1bf53107d3e943ddb69f1ba5b388d111a4f0441bedac2b9f339a687f4cfd6abef913d0742b32aa5e8e4521a0f672d7ff1b1aaa5a629360f1b2bf1b2da9f1352576ebd6450fb4b3cc461b6a06d87a14393cf41b1d5e55f67a1dd3571b70200a9ee18a14a245c58379c0961b823aaea5ac8228ba431fed4c1bcaa7330b10d977c71b3d1c18bb3c7f3da5ffffd8669f1b369545e6e858a4289f456ade0726f4d8669f1bd161b6d0eafc50b09f1b00d8da7615e35096498f44ea5fa2db25da59436392c41b59a1fe0045c461afffffffff4877e498fdec70d962ffff", + "cborBytes": [ + 216, 102, 159, 27, 63, 227, 58, 56, 228, 103, 24, 28, 159, 160, 159, 27, 245, 49, 7, 211, 233, 67, 221, 182, 159, + 27, 165, 179, 136, 209, 17, 164, 240, 68, 27, 237, 172, 43, 159, 51, 154, 104, 127, 76, 253, 106, 190, 249, 19, + 208, 116, 43, 50, 170, 94, 142, 69, 33, 160, 246, 114, 215, 255, 27, 26, 170, 90, 98, 147, 96, 241, 178, 191, 27, + 45, 169, 241, 53, 37, 118, 235, 214, 69, 15, 180, 179, 204, 70, 27, 106, 6, 216, 122, 20, 57, 60, 244, 27, 29, 94, + 85, 246, 122, 29, 211, 87, 27, 112, 32, 10, 158, 225, 138, 20, 162, 69, 197, 131, 121, 192, 150, 27, 130, 58, 174, + 165, 172, 130, 40, 186, 67, 31, 237, 76, 27, 202, 167, 51, 11, 16, 217, 119, 199, 27, 61, 28, 24, 187, 60, 127, + 61, 165, 255, 255, 216, 102, 159, 27, 54, 149, 69, 230, 232, 88, 164, 40, 159, 69, 106, 222, 7, 38, 244, 216, 102, + 159, 27, 209, 97, 182, 208, 234, 252, 80, 176, 159, 27, 0, 216, 218, 118, 21, 227, 80, 150, 73, 143, 68, 234, 95, + 162, 219, 37, 218, 89, 67, 99, 146, 196, 27, 89, 161, 254, 0, 69, 196, 97, 175, 255, 255, 255, 255, 72, 119, 228, + 152, 253, 236, 112, 217, 98, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1924, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17460215104365176909" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0a9c9a9105de63" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4697243f133d43d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92313c28" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85d864bdece00e9d02e8e26d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34b20e579c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2314555c3379d88b2b085" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8425133559898854534" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc80801f718a51cc59" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1e82ce05980e56" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bf24f25211598a84d9f470a9c9a9105de63bf484697243f133d43d84492313c284c85d864bdece00e9d02e8e26d4534b20e579c4bc2314555c3379d88b2b0851b74ec16559efe548642e7e549fc80801f718a51cc59ff471e82ce05980e56a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 242, 79, 37, 33, 21, 152, 168, 77, 159, 71, 10, 156, 154, 145, 5, 222, 99, 191, 72, 70, 151, + 36, 63, 19, 61, 67, 216, 68, 146, 49, 60, 40, 76, 133, 216, 100, 189, 236, 224, 14, 157, 2, 232, 226, 109, 69, 52, + 178, 14, 87, 156, 75, 194, 49, 69, 85, 195, 55, 157, 136, 178, 176, 133, 27, 116, 236, 22, 85, 158, 254, 84, 134, + 66, 231, 229, 73, 252, 128, 128, 31, 113, 138, 81, 204, 89, 255, 71, 30, 130, 206, 5, 152, 14, 86, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1925, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10419267220828515095" + }, + "fields": [] + }, + "cborHex": "d8669f1b9098ac556d5aeb1780ff", + "cborBytes": [216, 102, 159, 27, 144, 152, 172, 85, 109, 90, 235, 23, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1926, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17077341163626525660" + }, + "fields": [] + }, + "cborHex": "d8669f1becfee74f061d73dc80ff", + "cborBytes": [216, 102, 159, 27, 236, 254, 231, 79, 6, 29, 115, 220, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1927, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9041893438542118294" + }, + "fields": [] + }, + "cborHex": "d8669f1b7d7b422d253cfd9680ff", + "cborBytes": [216, 102, 159, 27, 125, 123, 66, 45, 37, 60, 253, 150, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1928, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "adf9fbaf0100" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7cb91b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18216370220766684824" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "69704d" + } + ] + }, + "cborHex": "d87b9f46adf9fbaf0100119fd8669f1bffffffffffffffef9f1bfffffffffffffff8ffff9f437cb91b1bfccd8c3389cd6698ffa0ff4369704dff", + "cborBytes": [ + 216, 123, 159, 70, 173, 249, 251, 175, 1, 0, 17, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 255, 255, 159, 67, 124, 185, 27, 27, 252, 205, 140, 51, 137, 205, + 102, 152, 255, 160, 255, 67, 105, 112, 77, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1929, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4c5cafb47726f662" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e644f5e56899aa398f014c63" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9f484c5cafb47726f66280809f4ce644f5e56899aa398f014c63ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 72, 76, 92, 175, 180, 119, 38, 246, 98, 128, 128, + 159, 76, 230, 68, 245, 229, 104, 153, 170, 57, 143, 1, 76, 99, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1930, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15967395818262480939" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9426036248779541300" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7854954110692752363" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "994106235583262317" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15108782801182408257" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2064983462452918674" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e64abeeacb9e9cc1b98c35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab484ceae65c151cf7b12f" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3195221205709638302" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "78161335895452882" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4387264769657722098" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10645026302714288175" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11250194549424555508" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8556003673421982198" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15645682086612319595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed3ef5351db13b2fdb" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bdd9795e5d797c82b9f1b82d00206e875cb34bf1b6d02672576d5fbeb1b0dcbc65ab0f0ee6d1bd1ad2de86d023e411b1ca84b84b28ff9924be64abeeacb9e9cc1b98c354bab484ceae65c151cf7b12fffbf1b2c57b4c1f11e4a9e1b0115af522537ecd21b3ce2b2103308d4f21b93babb05c5f9982f1b9c20b8562c7c85f41b76bd0802634129f61bd920a0f6a1383d6b49ed3ef5351db13b2fdbffffff", + "cborBytes": [ + 216, 102, 159, 27, 221, 151, 149, 229, 215, 151, 200, 43, 159, 27, 130, 208, 2, 6, 232, 117, 203, 52, 191, 27, + 109, 2, 103, 37, 118, 213, 251, 235, 27, 13, 203, 198, 90, 176, 240, 238, 109, 27, 209, 173, 45, 232, 109, 2, 62, + 65, 27, 28, 168, 75, 132, 178, 143, 249, 146, 75, 230, 74, 190, 234, 203, 158, 156, 193, 185, 140, 53, 75, 171, + 72, 76, 234, 230, 92, 21, 28, 247, 177, 47, 255, 191, 27, 44, 87, 180, 193, 241, 30, 74, 158, 27, 1, 21, 175, 82, + 37, 55, 236, 210, 27, 60, 226, 178, 16, 51, 8, 212, 242, 27, 147, 186, 187, 5, 197, 249, 152, 47, 27, 156, 32, + 184, 86, 44, 124, 133, 244, 27, 118, 189, 8, 2, 99, 65, 41, 246, 27, 217, 32, 160, 246, 161, 56, 61, 107, 73, 237, + 62, 245, 53, 29, 177, 59, 47, 219, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1931, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16093409920664824261" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2012345262181320293" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a803e77e12ce606c425" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5423937320065711282" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "456464421890630011" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7736368401991736158" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d25c7db4c68b1ad1da" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11046912116808685947" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3a224acbe06351" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2d9f578a12" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2070766208342157116" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "95ea841e9e644de6b8ad8a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14324696160088129718" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d4ae1e02" + } + ] + }, + "cborHex": "d905029fd8669f1bdf57470e69f969c59fbf1b1bed495aa5c206654a5a803e77e12ce606c4251b4b45b2415e803cb21b0655aff92765217b1b6b5d1a1294461b5e49d25c7db4c68b1ad1daffa0d8669f1b994e840a8b57197b9f473a224acbe06351ffff9f452d9f578a12ffd8669f1b1cbcd6e5251de73c9f4b95ea841e9e644de6b8ad8a1bc6cb8b43197480b6ffffffff44d4ae1e02ff", + "cborBytes": [ + 217, 5, 2, 159, 216, 102, 159, 27, 223, 87, 71, 14, 105, 249, 105, 197, 159, 191, 27, 27, 237, 73, 90, 165, 194, + 6, 101, 74, 90, 128, 62, 119, 225, 44, 230, 6, 196, 37, 27, 75, 69, 178, 65, 94, 128, 60, 178, 27, 6, 85, 175, + 249, 39, 101, 33, 123, 27, 107, 93, 26, 18, 148, 70, 27, 94, 73, 210, 92, 125, 180, 198, 139, 26, 209, 218, 255, + 160, 216, 102, 159, 27, 153, 78, 132, 10, 139, 87, 25, 123, 159, 71, 58, 34, 74, 203, 224, 99, 81, 255, 255, 159, + 69, 45, 159, 87, 138, 18, 255, 216, 102, 159, 27, 28, 188, 214, 229, 37, 29, 231, 60, 159, 75, 149, 234, 132, 30, + 158, 100, 77, 230, 184, 173, 138, 27, 198, 203, 139, 67, 25, 116, 128, 182, 255, 255, 255, 255, 68, 212, 174, 30, + 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1932, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "125a1cf89dfa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6363324679574380846" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73c38e36ccf7dce0ef2b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7423299954294723789" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b447f1d8a4db04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecbc79c2c578f7eb79e50284" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff14ccce86d145ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17169226807908101892" + } + } + } + ] + } + ] + }, + "cborHex": "d9050d9f41e8bf46125a1cf89dfa1b584f1214ec81e12e4a73c38e36ccf7dce0ef2b1b6704dbfa64e914cd47b447f1d8a4db044cecbc79c2c578f7eb79e5028448ff14ccce86d145ed1bee4558d0b979ef04ffff", + "cborBytes": [ + 217, 5, 13, 159, 65, 232, 191, 70, 18, 90, 28, 248, 157, 250, 27, 88, 79, 18, 20, 236, 129, 225, 46, 74, 115, 195, + 142, 54, 204, 247, 220, 224, 239, 43, 27, 103, 4, 219, 250, 100, 233, 20, 205, 71, 180, 71, 241, 216, 164, 219, 4, + 76, 236, 188, 121, 194, 197, 120, 247, 235, 121, 229, 2, 132, 72, 255, 20, 204, 206, 134, 209, 69, 237, 27, 238, + 69, 88, 208, 185, 121, 239, 4, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1933, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5186662735934726473" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "35e8491531" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b47faba47392521499f9f4535e8491531ff80a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 71, 250, 186, 71, 57, 37, 33, 73, 159, 159, 69, 53, 232, 73, 21, 49, 255, 128, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1934, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13125183968617745325" + }, + "fields": [] + }, + "cborHex": "d8669f1bb62605477d1ccbad80ff", + "cborBytes": [216, 102, 159, 27, 182, 38, 5, 71, 125, 28, 203, 173, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1935, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5510588949141167258" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b2b2c199d933f83e276fb1b9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17844250760690046416" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3886329869040634471" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d1020fa21a02e506d06330e5" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10533526096236960239" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4303692353079826212" + } + }, + { + "_tag": "ByteArray", + "bytearray": "82f8d2249bb43cd0e3" + }, + { + "_tag": "ByteArray", + "bytearray": "082e4cb2f3a563fac287d6aa" + }, + { + "_tag": "ByteArray", + "bytearray": "27373401d7afa672" + }, + { + "_tag": "ByteArray", + "bytearray": "9a02fff2" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b4c798b73f0c09c9a9f4cb2b2c199d933f83e276fb1b9d8669f1bf7a3838621ec95d09fd8669f1b35ef046cdc284a679f4cd1020fa21a02e506d06330e5ffffd8669f1b922e9a2cee82d9ef9f1b3bb9c964a7e357244982f8d2249bb43cd0e34c082e4cb2f3a563fac287d6aa4827373401d7afa672449a02fff2ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 76, 121, 139, 115, 240, 192, 156, 154, 159, 76, 178, 178, 193, 153, 217, 51, 248, 62, 39, 111, + 177, 185, 216, 102, 159, 27, 247, 163, 131, 134, 33, 236, 149, 208, 159, 216, 102, 159, 27, 53, 239, 4, 108, 220, + 40, 74, 103, 159, 76, 209, 2, 15, 162, 26, 2, 229, 6, 208, 99, 48, 229, 255, 255, 216, 102, 159, 27, 146, 46, 154, + 44, 238, 130, 217, 239, 159, 27, 59, 185, 201, 100, 167, 227, 87, 36, 73, 130, 248, 210, 36, 155, 180, 60, 208, + 227, 76, 8, 46, 76, 178, 243, 165, 99, 250, 194, 135, 214, 170, 72, 39, 55, 52, 1, 215, 175, 166, 114, 68, 154, 2, + 255, 242, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1936, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4062625861373809717" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4980168623410300982" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16852353834699402797" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6685" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3a5038829c28e575640" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "378437344956389884" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc65020229090601fb02fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + "cborHex": "d905079f08bf1b386158b23a8054351b451d1cfa17eac8361be9df96866a732e2d4266854ad3a5038829c28e5756401b05407ac29bde19fcff4bfc65020229090601fb02fa0aff", + "cborBytes": [ + 217, 5, 7, 159, 8, 191, 27, 56, 97, 88, 178, 58, 128, 84, 53, 27, 69, 29, 28, 250, 23, 234, 200, 54, 27, 233, 223, + 150, 134, 106, 115, 46, 45, 66, 102, 133, 74, 211, 165, 3, 136, 41, 194, 142, 87, 86, 64, 27, 5, 64, 122, 194, + 155, 222, 25, 252, 255, 75, 252, 101, 2, 2, 41, 9, 6, 1, 251, 2, 250, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1937, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4796083900654072524" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e15fa58cb1c6c3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "20f798" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6491762159667462287" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9365026416637992380" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c9dc58f09f57442b" + }, + { + "_tag": "ByteArray", + "bytearray": "3f7983e2dfa772ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3186286849878533229" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6230599403126135863" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18be6772956bc55d0a6c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17178417862024231900" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "543d563ba1c545" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18266872586542830507" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16659110160566968775" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4708739309441157922" + } + } + ] + }, + "cborHex": "d8669f1b428f1ce59b74b2cc9f47e15fa58cb1c6c39f4320f798d8669f1b5a175f4a154d408f9f1b81f741e86bdb5dbcffff9f48c9dc58f09f57442b483f7983e2dfa772ab1b2c37f7021f82246d1b5677892561181c37ffbf4a18be6772956bc55d0a6c1bee660007c52dfbdc47543d563ba1c5451bfd80f7d5de34d3abff1be7310c6d62b1e1c7ff1b4158cd7437288b22ffff", + "cborBytes": [ + 216, 102, 159, 27, 66, 143, 28, 229, 155, 116, 178, 204, 159, 71, 225, 95, 165, 140, 177, 198, 195, 159, 67, 32, + 247, 152, 216, 102, 159, 27, 90, 23, 95, 74, 21, 77, 64, 143, 159, 27, 129, 247, 65, 232, 107, 219, 93, 188, 255, + 255, 159, 72, 201, 220, 88, 240, 159, 87, 68, 43, 72, 63, 121, 131, 226, 223, 167, 114, 171, 27, 44, 55, 247, 2, + 31, 130, 36, 109, 27, 86, 119, 137, 37, 97, 24, 28, 55, 255, 191, 74, 24, 190, 103, 114, 149, 107, 197, 93, 10, + 108, 27, 238, 102, 0, 7, 197, 45, 251, 220, 71, 84, 61, 86, 59, 161, 197, 69, 27, 253, 128, 247, 213, 222, 52, + 211, 171, 255, 27, 231, 49, 12, 109, 98, 177, 225, 199, 255, 27, 65, 88, 205, 116, 55, 40, 139, 34, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1938, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01" + }, + { + "_tag": "ByteArray", + "bytearray": "a200ca4e" + }, + { + "_tag": "ByteArray", + "bytearray": "27ec410959cc" + } + ] + }, + "cborHex": "d905039f410144a200ca4e4627ec410959ccff", + "cborBytes": [217, 5, 3, 159, 65, 1, 68, 162, 0, 202, 78, 70, 39, 236, 65, 9, 89, 204, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1939, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17568473515078687421" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "750967093283303381" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15261915884449332100" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17514787400681933992" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f12fc33f28" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2197571633163234895" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14931944337355652237" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8745933573069814730" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7713516078756807520" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf3cfc194881f9abd9f809fd8669f1b0a6bf897b128afd580ffd8669f1bd3cd37a2c47e7b8480ffffa0d8669f1bf3110657f6224ca89f45f12fc33f28d8669f1b1e7f57c1d32b6e4f9f1bcf38ec4311fd3c8d1b795fcc3f2bfd3bca1b6b0bea0173904360ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 243, 207, 193, 148, 136, 31, 154, 189, 159, 128, 159, 216, 102, 159, 27, 10, 107, 248, 151, + 177, 40, 175, 213, 128, 255, 216, 102, 159, 27, 211, 205, 55, 162, 196, 126, 123, 132, 128, 255, 255, 160, 216, + 102, 159, 27, 243, 17, 6, 87, 246, 34, 76, 168, 159, 69, 241, 47, 195, 63, 40, 216, 102, 159, 27, 30, 127, 87, + 193, 211, 43, 110, 79, 159, 27, 207, 56, 236, 67, 17, 253, 60, 141, 27, 121, 95, 204, 63, 43, 253, 59, 202, 27, + 107, 11, 234, 1, 115, 144, 67, 96, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1940, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11211902623172361804" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "43bc00cdf0ceaf5422" + }, + { + "_tag": "ByteArray", + "bytearray": "a8ed26" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d4f5da9bc163967166" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3507894919c500ddea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "481961408182894107" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "659015" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9281374866050262329" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8351487106152373021" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "877f8121cae1170c172dea6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e6401c6" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7791019856322549900" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14322763987260325661" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8108203646650479236" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18306924514318916189" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10115964995108660827" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35621dcfb9156d0a47d8f5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10356053541081721245" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2932" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16647980967861171264" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10168039605114564316" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17556414936569288803" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3118346090711039180" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b9b98ae0856757e4c9fd905029f4943bc00cdf0ceaf542243a8ed269f49d4f5da9bc163967166ffbf493507894919c500ddea1b06b04558e2303e1b436590151b80ce11440e2a2539ff1b73e6714664779b1dff9f0fffd8669f1bfffffffffffffff19fbf4c877f8121cae1170c172dea6d440e6401c6ffffffbf1b6c1f4347de1ed88c1bc6c4adf60e68bf1d1b70862041ed20f2841bfe0f42d9fdde9a5d1b8c632090fdbce65b4b35621dcfb9156d0a47d8f51b8fb817d3af1a299d4229321be709827c48d434401b8d1c2225f4f4eedc1bf3a4ea5def9318631b2b46973f6f8f3cccffffff", + "cborBytes": [ + 216, 102, 159, 27, 155, 152, 174, 8, 86, 117, 126, 76, 159, 217, 5, 2, 159, 73, 67, 188, 0, 205, 240, 206, 175, + 84, 34, 67, 168, 237, 38, 159, 73, 212, 245, 218, 155, 193, 99, 150, 113, 102, 255, 191, 73, 53, 7, 137, 73, 25, + 197, 0, 221, 234, 27, 6, 176, 69, 88, 226, 48, 62, 27, 67, 101, 144, 21, 27, 128, 206, 17, 68, 14, 42, 37, 57, + 255, 27, 115, 230, 113, 70, 100, 119, 155, 29, 255, 159, 15, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 241, 159, 191, 76, 135, 127, 129, 33, 202, 225, 23, 12, 23, 45, 234, 109, 68, 14, 100, 1, 198, 255, 255, 255, + 191, 27, 108, 31, 67, 71, 222, 30, 216, 140, 27, 198, 196, 173, 246, 14, 104, 191, 29, 27, 112, 134, 32, 65, 237, + 32, 242, 132, 27, 254, 15, 66, 217, 253, 222, 154, 93, 27, 140, 99, 32, 144, 253, 188, 230, 91, 75, 53, 98, 29, + 207, 185, 21, 109, 10, 71, 216, 245, 27, 143, 184, 23, 211, 175, 26, 41, 157, 66, 41, 50, 27, 231, 9, 130, 124, + 72, 212, 52, 64, 27, 141, 28, 34, 37, 244, 244, 238, 220, 27, 243, 164, 234, 93, 239, 147, 24, 99, 27, 43, 70, + 151, 63, 111, 143, 60, 204, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1941, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8e1811" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13146309721807714099" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14060513311593114540" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1332958601099579391" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3020510956953381610" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12835281413082426592" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7395826619873895395" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8eb8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8445415845475891930" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "131bc599967cd28a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12546918666895642320" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d6564e03172" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18031418407451457324" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8170767086470152934" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b8d5a990237fa0999" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9bf0d11225" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45722b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c246cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15974250949532622875" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d82e8073fc2e93" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16767235715725304936" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfeb4eb4eb05d0d8521fb7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d666ad159e9794570119" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e96baeecbae9b94380ae3c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16046499560494634730" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10252233044445194896" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "181501870359012068" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1fdb4e" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9b81c2aa" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ecd3c5aa05b9" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79f438e18119fd8669f1bb671130a339cf7339f1bc320fa5c7128abac1b127f9ec90ed78fff41ac1b29eb02b64561aaea1bb2201470e2f3ace0ffffbf1b66a3412041f623e3428eb81b753424f73a0bbada48131bc599967cd28a1bae1f9c0d16084ed0461d6564e031721bfa3c7781cc95772c1b7164655fe381c2e6ffbf495b8d5a990237fa0999459bf0d112254297e94345722b43c246cb1bddaff09a77d6a01b47d82e8073fc2e931be8b1300bfd0ca4684bdfeb4eb4eb05d0d8521fb74ad666ad159e97945701194be96baeecbae9b94380ae3c1bdeb09e550fbe96eaffd8669f1b8e473fa2a0ad6a909f1b0284d2fd4cd162e4431fdb4effff449b81c2aaff46ecd3c5aa05b9a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 67, 142, 24, 17, 159, 216, 102, 159, 27, 182, 113, + 19, 10, 51, 156, 247, 51, 159, 27, 195, 32, 250, 92, 113, 40, 171, 172, 27, 18, 127, 158, 201, 14, 215, 143, 255, + 65, 172, 27, 41, 235, 2, 182, 69, 97, 170, 234, 27, 178, 32, 20, 112, 226, 243, 172, 224, 255, 255, 191, 27, 102, + 163, 65, 32, 65, 246, 35, 227, 66, 142, 184, 27, 117, 52, 36, 247, 58, 11, 186, 218, 72, 19, 27, 197, 153, 150, + 124, 210, 138, 27, 174, 31, 156, 13, 22, 8, 78, 208, 70, 29, 101, 100, 224, 49, 114, 27, 250, 60, 119, 129, 204, + 149, 119, 44, 27, 113, 100, 101, 95, 227, 129, 194, 230, 255, 191, 73, 91, 141, 90, 153, 2, 55, 250, 9, 153, 69, + 155, 240, 209, 18, 37, 66, 151, 233, 67, 69, 114, 43, 67, 194, 70, 203, 27, 221, 175, 240, 154, 119, 214, 160, 27, + 71, 216, 46, 128, 115, 252, 46, 147, 27, 232, 177, 48, 11, 253, 12, 164, 104, 75, 223, 235, 78, 180, 235, 5, 208, + 216, 82, 31, 183, 74, 214, 102, 173, 21, 158, 151, 148, 87, 1, 25, 75, 233, 107, 174, 236, 186, 233, 185, 67, 128, + 174, 60, 27, 222, 176, 158, 85, 15, 190, 150, 234, 255, 216, 102, 159, 27, 142, 71, 63, 162, 160, 173, 106, 144, + 159, 27, 2, 132, 210, 253, 76, 209, 98, 228, 67, 31, 219, 78, 255, 255, 68, 155, 129, 194, 170, 255, 70, 236, 211, + 197, 170, 5, 185, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1942, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15562733977080553061" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d5ae852f8b86fa8375a2" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15174722785196423652" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15445489041735788774" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d6ad92c" + }, + { + "_tag": "ByteArray", + "bytearray": "69ad15490d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16526873162583194945" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8666129715564271427" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1732a8e69f8c6080206db5" + }, + { + "_tag": "ByteArray", + "bytearray": "3c76e5c6f2b46c8f031f97" + }, + { + "_tag": "ByteArray", + "bytearray": "829fdedd2819c0c4e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8403928288533060902" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17939591188934453643" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15010000032685112341" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5343934333671330199" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55cc7ef8e5ee45f0cf" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0613" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9612361820235540271" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15913747170332281698" + } + }, + { + "_tag": "ByteArray", + "bytearray": "43fb66ebb503f3ea17" + }, + { + "_tag": "ByteArray", + "bytearray": "b3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6792301011947030362" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8725626396692962316" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12777017427582020026" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0515f63b10eeb9fb32abc7c2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1584388814012017874" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17693021676860908317" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6830663681943825455" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7430579402551809932" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17304603435756517102" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7594951125416247532" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18a1ecc72eb204e5806758e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15894303945832986372" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9125845622417021254" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16204066025913476993" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66296a5a0282cc" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15493335405955064935" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "56bf16e7040acfcf93fe7e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5083129961312305914" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cf17965669b5255da3a5b9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6385170595310248274" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bd7f9f018e5c9de659f4ad5ae852f8b86fa8375a29fa0d8669f1bd29771f958a8b9e480ff1bd659667322d9a8e6445d6ad92c4569ad15490dff1be55b3f9407b53d41d8669f1b7844470fa9aa57439f9f4b1732a8e69f8c6080206db54b3c76e5c6f2b46c8f031f9749829fdedd2819c0c4e81b74a0c040a3de9d26ff9f1bf8f63b23682a698b1bd04e3b80dacc3c151b4a2977f68d7e51974955cc7ef8e5ee45f0cfff420613d8669f1b8565f825a3aaa72f9f1bdcd8fcbc9d088b624943fb66ebb503f3ea1741b3ffff9f1b5e4319c880a1075a1b7917a6fa39a7dc0c1bb15115a7a40069ba4c0515f63b10eeb9fb32abc7c21b15fce13b5d49ecd2ffffffd8669f1bf58a3d793494a31d9fbf1b5ecb646da66c6c2f41f41b671eb899046f578c1bf0264d241f4576ee1b6966afcf0ce380ec4c18a1ecc72eb204e5806758e91bdc93e93a2376f7041b7ea5843e273859461be0e068329f8c67814766296a5a0282ccffd8669f1bd7036276e9ef24679f4b56bf16e7040acfcf93fe7e1b468ae7c4ab2a42faffff4bcf17965669b5255da3a5b9d8669f1b589caed38bbca15280ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 215, 249, 240, 24, 229, 201, 222, 101, 159, 74, 213, 174, 133, 47, 139, 134, 250, 131, 117, + 162, 159, 160, 216, 102, 159, 27, 210, 151, 113, 249, 88, 168, 185, 228, 128, 255, 27, 214, 89, 102, 115, 34, 217, + 168, 230, 68, 93, 106, 217, 44, 69, 105, 173, 21, 73, 13, 255, 27, 229, 91, 63, 148, 7, 181, 61, 65, 216, 102, + 159, 27, 120, 68, 71, 15, 169, 170, 87, 67, 159, 159, 75, 23, 50, 168, 230, 159, 140, 96, 128, 32, 109, 181, 75, + 60, 118, 229, 198, 242, 180, 108, 143, 3, 31, 151, 73, 130, 159, 222, 221, 40, 25, 192, 196, 232, 27, 116, 160, + 192, 64, 163, 222, 157, 38, 255, 159, 27, 248, 246, 59, 35, 104, 42, 105, 139, 27, 208, 78, 59, 128, 218, 204, 60, + 21, 27, 74, 41, 119, 246, 141, 126, 81, 151, 73, 85, 204, 126, 248, 229, 238, 69, 240, 207, 255, 66, 6, 19, 216, + 102, 159, 27, 133, 101, 248, 37, 163, 170, 167, 47, 159, 27, 220, 216, 252, 188, 157, 8, 139, 98, 73, 67, 251, + 102, 235, 181, 3, 243, 234, 23, 65, 179, 255, 255, 159, 27, 94, 67, 25, 200, 128, 161, 7, 90, 27, 121, 23, 166, + 250, 57, 167, 220, 12, 27, 177, 81, 21, 167, 164, 0, 105, 186, 76, 5, 21, 246, 59, 16, 238, 185, 251, 50, 171, + 199, 194, 27, 21, 252, 225, 59, 93, 73, 236, 210, 255, 255, 255, 216, 102, 159, 27, 245, 138, 61, 121, 52, 148, + 163, 29, 159, 191, 27, 94, 203, 100, 109, 166, 108, 108, 47, 65, 244, 27, 103, 30, 184, 153, 4, 111, 87, 140, 27, + 240, 38, 77, 36, 31, 69, 118, 238, 27, 105, 102, 175, 207, 12, 227, 128, 236, 76, 24, 161, 236, 199, 46, 178, 4, + 229, 128, 103, 88, 233, 27, 220, 147, 233, 58, 35, 118, 247, 4, 27, 126, 165, 132, 62, 39, 56, 89, 70, 27, 224, + 224, 104, 50, 159, 140, 103, 129, 71, 102, 41, 106, 90, 2, 130, 204, 255, 216, 102, 159, 27, 215, 3, 98, 118, 233, + 239, 36, 103, 159, 75, 86, 191, 22, 231, 4, 10, 207, 207, 147, 254, 126, 27, 70, 138, 231, 196, 171, 42, 66, 250, + 255, 255, 75, 207, 23, 150, 86, 105, 181, 37, 93, 163, 165, 185, 216, 102, 159, 27, 88, 156, 174, 211, 139, 188, + 161, 82, 128, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1943, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1734396309195140042" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16782048581516177001" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6057013419059231133" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5313666505468306925" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13164185489529007562" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b1811d04105532bca9f1be8e5d045109eae691b540ed59cfaccb99d809f1b49bdef88a15465ed1bb6b094f4b4ba6dcaffffff", + "cborBytes": [ + 216, 102, 159, 27, 24, 17, 208, 65, 5, 83, 43, 202, 159, 27, 232, 229, 208, 69, 16, 158, 174, 105, 27, 84, 14, + 213, 156, 250, 204, 185, 157, 128, 159, 27, 73, 189, 239, 136, 161, 84, 101, 237, 27, 182, 176, 148, 244, 180, + 186, 109, 202, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1944, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15831469911730984911" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9cf54bdb9e662881" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3938641a24a602f9" + }, + { + "_tag": "ByteArray", + "bytearray": "dd5e28feb81ae0c3e375" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11835702959436903081" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17841274682433207940" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d9905ada03f3198b" + }, + { + "_tag": "ByteArray", + "bytearray": "5524" + }, + { + "_tag": "ByteArray", + "bytearray": "3e54ea61c922e70e0686" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "77410f" + } + ] + } + ] + }, + "cborHex": "d9050a9f9fd8669f1bdbb4ae01890297cf9f489cf54bdb9e662881ffff483938641a24a602f94add5e28feb81ae0c3e375d8669f1ba440dd222446b2a99f1bf798f0cbea99fe8448d9905ada03f3198b4255244a3e54ea61c922e70e0686ffff4377410fffff", + "cborBytes": [ + 217, 5, 10, 159, 159, 216, 102, 159, 27, 219, 180, 174, 1, 137, 2, 151, 207, 159, 72, 156, 245, 75, 219, 158, 102, + 40, 129, 255, 255, 72, 57, 56, 100, 26, 36, 166, 2, 249, 74, 221, 94, 40, 254, 184, 26, 224, 195, 227, 117, 216, + 102, 159, 27, 164, 64, 221, 34, 36, 70, 178, 169, 159, 27, 247, 152, 240, 203, 234, 153, 254, 132, 72, 217, 144, + 90, 218, 3, 243, 25, 139, 66, 85, 36, 74, 62, 84, 234, 97, 201, 34, 231, 14, 6, 134, 255, 255, 67, 119, 65, 15, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1945, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11843080494886077077" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9f1ba45b12f6780ac295ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 27, 164, 91, 18, 246, 120, 10, 194, 149, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1946, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4278867442509481728" + }, + "fields": [] + }, + "cborHex": "d8669f1b3b619744bfc3070080ff", + "cborBytes": [216, 102, 159, 27, 59, 97, 151, 68, 191, 195, 7, 0, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1947, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11612613986760308441" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b850ddcbcbc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4427808783258019431" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc98d000f748" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15612519910825157334" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5cde9cc5a178524e2fca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4533896961692971714" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6f86618db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba" + } + } + ] + } + ] + }, + "cborHex": "d8669f1ba1284ae50a94b6d99f801bffffffffffffffef462b850ddcbcbcbf1b3d72bca0fb72e66746fc98d000f7481bd8aad023e57262d64a5cde9cc5a178524e2fca41cb1b3eeba343d9eeb2c245e6f86618db41baffffff", + "cborBytes": [ + 216, 102, 159, 27, 161, 40, 74, 229, 10, 148, 182, 217, 159, 128, 27, 255, 255, 255, 255, 255, 255, 255, 239, 70, + 43, 133, 13, 220, 188, 188, 191, 27, 61, 114, 188, 160, 251, 114, 230, 103, 70, 252, 152, 208, 0, 247, 72, 27, + 216, 170, 208, 35, 229, 114, 98, 214, 74, 92, 222, 156, 197, 161, 120, 82, 78, 47, 202, 65, 203, 27, 62, 235, 163, + 67, 217, 238, 178, 194, 69, 230, 248, 102, 24, 219, 65, 186, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1948, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b1b409044d4d9804f15" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10aa2a3e995afb65" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25482819bc3335" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16665364641410859808" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16279359187022722517" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a28df61c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d76533a0fbfd73954c20" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdca48909150e7529cda965a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14496929538601305902" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf96ef1d63bf1cfa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8219520763981728617" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b8586ab830fa36" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "285fe8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19e3b3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1dcb36613e68e61ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17153022838041145438" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2879014317834635578" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e60d7ce9d44d64cb5146c456" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1118c4e0eaf75d0" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6500718892679156257" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4f26d96e92706" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9941174095632841729" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8461643690198370945" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11493928196452502600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20fd76d6d5d9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11834818079415097287" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "800fb033fdb41d417df0" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb9be0de899bc093" + }, + { + "_tag": "ByteArray", + "bytearray": "58a630c13fe73e" + }, + { + "_tag": "ByteArray", + "bytearray": "89730a3e" + }, + { + "_tag": "ByteArray", + "bytearray": "adb99012d438898507b7" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7866078078227914133" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1440111256463101373" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11907272108205016934" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1149878095101747344" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eccd484a9485ce4e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9951687440055896811" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5014677548876420597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "968838744954832313" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13744931845290342432" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16198480719901775774" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9728498602586231417" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "28fffd453e8feacb3b" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9fbf4a1b1b409044d4d9804f154810aa2a3e995afb654725482819bc33351be74744d82fa64320415e1be1ebe6edc97b35d544a28df61c4ad76533a0fbfd73954c204cbdca48909150e7529cda965a1bc92f709b7a32c72e48bf96ef1d63bf1cfa1b72119a9601140b69ff47b8586ab830fa369fbf43285fe84319e3b349c1dcb36613e68e61ff1bee0bc763fd9af05e41d71b27f45044b5cc093a4ce60d7ce9d44d64cb5146c45648a1118c4e0eaf75d0ffbf1b5a373163fecfd22147e4f26d96e927061b89f6252b5c82bc011b756dcc1ac2330a811b9f82a2cc1765cc484620fd76d6d5d91ba43db856f4e857c74a800fb033fdb41d417df0ff9f48cb9be0de899bc0934758a630c13fe73e4489730a3e4aadb99012d438898507b7ffbf1b6d29ec55fc431d951b13fc4d8ec6864dbd1ba53f20e51d7a07661b0ff53009018ae09048eccd484a9485ce4e1b8a1b7f001c3f8aebffbf1b4597b6a96be7d5f51b0d7201b495ab05b91bbebfceb0847c3820412f1be0cc90643ac2579e1b870291ef6d095279ffff4928fffd453e8feacb3bffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 191, 74, 27, 27, 64, 144, 68, 212, 217, 128, 79, + 21, 72, 16, 170, 42, 62, 153, 90, 251, 101, 71, 37, 72, 40, 25, 188, 51, 53, 27, 231, 71, 68, 216, 47, 166, 67, + 32, 65, 94, 27, 225, 235, 230, 237, 201, 123, 53, 213, 68, 162, 141, 246, 28, 74, 215, 101, 51, 160, 251, 253, + 115, 149, 76, 32, 76, 189, 202, 72, 144, 145, 80, 231, 82, 156, 218, 150, 90, 27, 201, 47, 112, 155, 122, 50, 199, + 46, 72, 191, 150, 239, 29, 99, 191, 28, 250, 27, 114, 17, 154, 150, 1, 20, 11, 105, 255, 71, 184, 88, 106, 184, + 48, 250, 54, 159, 191, 67, 40, 95, 232, 67, 25, 227, 179, 73, 193, 220, 179, 102, 19, 230, 142, 97, 255, 27, 238, + 11, 199, 99, 253, 154, 240, 94, 65, 215, 27, 39, 244, 80, 68, 181, 204, 9, 58, 76, 230, 13, 124, 233, 212, 77, + 100, 203, 81, 70, 196, 86, 72, 161, 17, 140, 78, 14, 175, 117, 208, 255, 191, 27, 90, 55, 49, 99, 254, 207, 210, + 33, 71, 228, 242, 109, 150, 233, 39, 6, 27, 137, 246, 37, 43, 92, 130, 188, 1, 27, 117, 109, 204, 26, 194, 51, 10, + 129, 27, 159, 130, 162, 204, 23, 101, 204, 72, 70, 32, 253, 118, 214, 213, 217, 27, 164, 61, 184, 86, 244, 232, + 87, 199, 74, 128, 15, 176, 51, 253, 180, 29, 65, 125, 240, 255, 159, 72, 203, 155, 224, 222, 137, 155, 192, 147, + 71, 88, 166, 48, 193, 63, 231, 62, 68, 137, 115, 10, 62, 74, 173, 185, 144, 18, 212, 56, 137, 133, 7, 183, 255, + 191, 27, 109, 41, 236, 85, 252, 67, 29, 149, 27, 19, 252, 77, 142, 198, 134, 77, 189, 27, 165, 63, 32, 229, 29, + 122, 7, 102, 27, 15, 245, 48, 9, 1, 138, 224, 144, 72, 236, 205, 72, 74, 148, 133, 206, 78, 27, 138, 27, 127, 0, + 28, 63, 138, 235, 255, 191, 27, 69, 151, 182, 169, 107, 231, 213, 245, 27, 13, 114, 1, 180, 149, 171, 5, 185, 27, + 190, 191, 206, 176, 132, 124, 56, 32, 65, 47, 27, 224, 204, 144, 100, 58, 194, 87, 158, 27, 135, 2, 145, 239, 109, + 9, 82, 121, 255, 255, 73, 40, 255, 253, 69, 62, 143, 234, 203, 59, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1949, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10668827403314274561" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d702c3d2b2a08c03ffcb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14632305683499052348" + } + } + ] + }, + "cborHex": "d8669f1b940f49ff588021019f4ad702c3d2b2a08c03ffcb1bcb10647e6de3ed3cffff", + "cborBytes": [ + 216, 102, 159, 27, 148, 15, 73, 255, 88, 128, 33, 1, 159, 74, 215, 2, 195, 210, 178, 160, 140, 3, 255, 203, 27, + 203, 16, 100, 126, 109, 227, 237, 60, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1950, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8062106396596993361" + } + } + ] + }, + "cborHex": "d905099f1b6fe25b0d86917d51ff", + "cborBytes": [217, 5, 9, 159, 27, 111, 226, 91, 13, 134, 145, 125, 81, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1951, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12046425845270481946" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b50f" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10093738963132444666" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9251158419750096339" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a0d3fcef9e375be8833c30f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34d1afbc1e87c7e344725f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8625f91a043be91daa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4fbd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b05078bad820" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ced9cf1ebf" + } + ] + } + ] + }, + "cborHex": "d905029f9f1ba72d807b486e8c1a42b50f801b8c142a1ba9076ffaff9fbf1b8062b7916a118dd34c1a0d3fcef9e375be8833c30f4b34d1afbc1e87c7e344725f498625f91a043be91daa424fbd46b05078bad820ff45ced9cf1ebfffff", + "cborBytes": [ + 217, 5, 2, 159, 159, 27, 167, 45, 128, 123, 72, 110, 140, 26, 66, 181, 15, 128, 27, 140, 20, 42, 27, 169, 7, 111, + 250, 255, 159, 191, 27, 128, 98, 183, 145, 106, 17, 141, 211, 76, 26, 13, 63, 206, 249, 227, 117, 190, 136, 51, + 195, 15, 75, 52, 209, 175, 188, 30, 135, 199, 227, 68, 114, 95, 73, 134, 37, 249, 26, 4, 59, 233, 29, 170, 66, 79, + 189, 70, 176, 80, 120, 186, 216, 32, 255, 69, 206, 217, 207, 30, 191, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1952, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13030327464524486227" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "64b6664184" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1388196903298319522" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2555509143034558586" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dfde217f9e4293" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13766337318733076417" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5475633736106175189" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15008116769089612440" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16366375836445071178" + } + }, + { + "_tag": "ByteArray", + "bytearray": "49" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4635980389657131123" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "25b806724d723fa2f025" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9696184988580653377" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8419707053175121935" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "991355399470899656" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4076240760404991140" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be78ef82eaae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "212b337c85edb13a28c40b3d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d1d17" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0b052d219ce0f0727c58" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4864725514535888100" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1300582337838368571" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10140594691382815727" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7866840585102337703" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "234c0bb3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12692798730118419998" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc1a893620b7c52c7d88" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14082737873547948430" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c30" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bb4d505ca95ff96539f4564b66641849f9f1b1343ddba8364c4a21b2376fe06a2d6787a47dfde217f9e42931bbf0bdadaad49d7c11b4bfd5bdf30c0ead5ff9f1bd0478aaf612b6a981be3210c1c47d8574a41491b40564f9a1730b873ff9f4a25b806724d723fa2f025ff9f1b868fc4dfe0d32941ffff9f1b74d8cef4915aa80f1b0dc2007bbfa0e1c8bf1b3891b75feee85ca446be78ef82eaae4c212b337c85edb13a28c40b3d439d1d17ff4a0b052d219ce0f0727c58ff1b4382fa14bfb0e4e4bf1b120c98bed800c73b1b8cbaa1250715abef1b6d2ca1d4f3a6a6a744234c0bb31bb025e1321a3cd61e4abc1a893620b7c52c7d881bc36fef7b81c3f18e424c30ffffff", + "cborBytes": [ + 216, 102, 159, 27, 180, 213, 5, 202, 149, 255, 150, 83, 159, 69, 100, 182, 102, 65, 132, 159, 159, 27, 19, 67, + 221, 186, 131, 100, 196, 162, 27, 35, 118, 254, 6, 162, 214, 120, 122, 71, 223, 222, 33, 127, 158, 66, 147, 27, + 191, 11, 218, 218, 173, 73, 215, 193, 27, 75, 253, 91, 223, 48, 192, 234, 213, 255, 159, 27, 208, 71, 138, 175, + 97, 43, 106, 152, 27, 227, 33, 12, 28, 71, 216, 87, 74, 65, 73, 27, 64, 86, 79, 154, 23, 48, 184, 115, 255, 159, + 74, 37, 184, 6, 114, 77, 114, 63, 162, 240, 37, 255, 159, 27, 134, 143, 196, 223, 224, 211, 41, 65, 255, 255, 159, + 27, 116, 216, 206, 244, 145, 90, 168, 15, 27, 13, 194, 0, 123, 191, 160, 225, 200, 191, 27, 56, 145, 183, 95, 238, + 232, 92, 164, 70, 190, 120, 239, 130, 234, 174, 76, 33, 43, 51, 124, 133, 237, 177, 58, 40, 196, 11, 61, 67, 157, + 29, 23, 255, 74, 11, 5, 45, 33, 156, 224, 240, 114, 124, 88, 255, 27, 67, 130, 250, 20, 191, 176, 228, 228, 191, + 27, 18, 12, 152, 190, 216, 0, 199, 59, 27, 140, 186, 161, 37, 7, 21, 171, 239, 27, 109, 44, 161, 212, 243, 166, + 166, 167, 68, 35, 76, 11, 179, 27, 176, 37, 225, 50, 26, 60, 214, 30, 74, 188, 26, 137, 54, 32, 183, 197, 44, 125, + 136, 27, 195, 111, 239, 123, 129, 195, 241, 142, 66, 76, 48, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1953, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4746628123397584453" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "71ad10fc8df7" + } + ] + }, + "cborHex": "d8669f1b41df692127fdf6459f4671ad10fc8df7ffff", + "cborBytes": [ + 216, 102, 159, 27, 65, 223, 105, 33, 39, 253, 246, 69, 159, 70, 113, 173, 16, 252, 141, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1954, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17951550925379498009" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16176207852382899152" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6757743325654875445" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1230691d4b1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b2b023ea0731a5638402e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b8b803a28bd47ac97892a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3a789ca53d525fb" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1989396219952635219" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1331273619081568588" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "591f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4433951784208093677" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8001460826680516961" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9429932706783846210" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5227102695932024561" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12447524004003602357" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "911099011621765934" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f1bf920b8748a947019d8669f1be07d6f56262acbd09fbf1b5dc853c028ecfd3546d1230691d4b14b1b2b023ea0731a5638402e4228de4b5b8b803a28bd47ac97892a48a3a789ca53d525fbff1b1b9bc1525fc81d53ffffbf1b1279a24d9c34a14c42591f1b3d888fa7d8eed1ed1b6f0ae63a727ee1611b82ddd9d5bbb05f421b488a66352383d6f11bacbe7d21bfc85fb51b0ca4dfb94eecc32effffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 27, 249, 32, 184, 116, 138, 148, 112, 25, 216, + 102, 159, 27, 224, 125, 111, 86, 38, 42, 203, 208, 159, 191, 27, 93, 200, 83, 192, 40, 236, 253, 53, 70, 209, 35, + 6, 145, 212, 177, 75, 27, 43, 2, 62, 160, 115, 26, 86, 56, 64, 46, 66, 40, 222, 75, 91, 139, 128, 58, 40, 189, 71, + 172, 151, 137, 42, 72, 163, 167, 137, 202, 83, 213, 37, 251, 255, 27, 27, 155, 193, 82, 95, 200, 29, 83, 255, 255, + 191, 27, 18, 121, 162, 77, 156, 52, 161, 76, 66, 89, 31, 27, 61, 136, 143, 167, 216, 238, 209, 237, 27, 111, 10, + 230, 58, 114, 126, 225, 97, 27, 130, 221, 217, 213, 187, 176, 95, 66, 27, 72, 138, 102, 53, 35, 131, 214, 241, 27, + 172, 190, 125, 33, 191, 200, 95, 181, 27, 12, 164, 223, 185, 78, 236, 195, 46, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1955, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6376326900859995121" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15917690125942224070" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4d134ae240b3bce5d03b1b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2763717623494272578" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8248297320860311043" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c6e1dccdedf39" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7570859561649542752" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17609855451843356979" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b587d4388798703f19f1bdce6fed5818774c69f4b4d134ae240b3bce5d03b1b9f1b265ab28927dce6421b7277d6b643af5e03478c6e1dccdedf391b691118a8c07d9660ff1bf462c63b81196933ffffff", + "cborBytes": [ + 216, 102, 159, 27, 88, 125, 67, 136, 121, 135, 3, 241, 159, 27, 220, 230, 254, 213, 129, 135, 116, 198, 159, 75, + 77, 19, 74, 226, 64, 179, 188, 229, 208, 59, 27, 159, 27, 38, 90, 178, 137, 39, 220, 230, 66, 27, 114, 119, 214, + 182, 67, 175, 94, 3, 71, 140, 110, 29, 204, 222, 223, 57, 27, 105, 17, 24, 168, 192, 125, 150, 96, 255, 27, 244, + 98, 198, 59, 129, 25, 105, 51, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1956, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15145069917579171262" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8287892753046337204" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4091cf0284" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11834587591112931410" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14279997382641781905" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15891368436034335895" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7d8c8bdabf129" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16703385558231861239" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13107560960605365914" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16989365465438243643" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8868656811704260080" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11428718970603638738" + } + }, + { + "_tag": "ByteArray", + "bytearray": "18658b8062dd" + } + ] + }, + "cborHex": "d8669f1bd22e18d917c2d5be9fbf1b7304828c39dc76b4454091cf02841ba43ce6b6378838521bc62cbdf5f9df0c911bdc897b6580ae749747a7d8c8bdabf1291be7ce58aab8ccc7f71bb5e7693f30a9269a1bebc659e096bc4b3b1b7b13cc61d07b15f0ff1b9e9af75a10990fd24618658b8062ddffff", + "cborBytes": [ + 216, 102, 159, 27, 210, 46, 24, 217, 23, 194, 213, 190, 159, 191, 27, 115, 4, 130, 140, 57, 220, 118, 180, 69, 64, + 145, 207, 2, 132, 27, 164, 60, 230, 182, 55, 136, 56, 82, 27, 198, 44, 189, 245, 249, 223, 12, 145, 27, 220, 137, + 123, 101, 128, 174, 116, 151, 71, 167, 216, 200, 189, 171, 241, 41, 27, 231, 206, 88, 170, 184, 204, 199, 247, 27, + 181, 231, 105, 63, 48, 169, 38, 154, 27, 235, 198, 89, 224, 150, 188, 75, 59, 27, 123, 19, 204, 97, 208, 123, 21, + 240, 255, 27, 158, 154, 247, 90, 16, 153, 15, 210, 70, 24, 101, 139, 128, 98, 221, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1957, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7572470394174197051" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5081482379895472000" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b09c482f4b8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6f13c9291303812c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7249631459713435334" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4a487aae11a3fa0368ca7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11432367610352796732" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12756986655559346220" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6916d1b3ecea4d3b9fa09fbf1b46850d4d3a137f80467b09c482f4b8ff9f486f13c9291303812c1b649bdd6704b746c64be4a487aae11a3fa0368ca71b9ea7edc534c2843cff1bb109ebc61903682cffffff", + "cborBytes": [ + 216, 102, 159, 27, 105, 22, 209, 179, 236, 234, 77, 59, 159, 160, 159, 191, 27, 70, 133, 13, 77, 58, 19, 127, 128, + 70, 123, 9, 196, 130, 244, 184, 255, 159, 72, 111, 19, 201, 41, 19, 3, 129, 44, 27, 100, 155, 221, 103, 4, 183, + 70, 198, 75, 228, 164, 135, 170, 225, 26, 63, 160, 54, 140, 167, 27, 158, 167, 237, 197, 52, 194, 132, 60, 255, + 27, 177, 9, 235, 198, 25, 3, 104, 44, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1958, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8032985461962725067" + }, + "fields": [] + }, + "cborHex": "d8669f1b6f7ae5b7922a56cb80ff", + "cborBytes": [216, 102, 159, 27, 111, 122, 229, 183, 146, 42, 86, 203, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1959, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "49" + }, + { + "_tag": "ByteArray", + "bytearray": "b1f04c0544cb" + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f9f80414946b1f04c0544cbffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 159, 128, 65, 73, 70, 177, 240, 76, 5, 68, 203, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1960, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13227199122254032730" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04b83ff8f931003c022262" + }, + { + "_tag": "ByteArray", + "bytearray": "00" + } + ] + }, + "cborHex": "d8669f1bb79073855f4f6f5a9f4b04b83ff8f931003c0222624100ffff", + "cborBytes": [ + 216, 102, 159, 27, 183, 144, 115, 133, 95, 79, 111, 90, 159, 75, 4, 184, 63, 248, 249, 49, 0, 60, 2, 34, 98, 65, + 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1961, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7806978843393585679" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "972277462180565044" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3428796830951174753" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2e12b2eb47254092c0a2b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "417076910830445827" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10217872400891243984" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11551192978348768141" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2533882809828095126" + } + }, + { + "_tag": "ByteArray", + "bytearray": "56f5503148beaf09" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + }, + "cborHex": "d9050d9f80d87e9fd8669f1b6c57f5e51976f20f80ff1b0d7e3933546410341b2f95888d1bd47261ff9f9f1bfffffffffffffff14b2e12b2eb47254092c0a2b71b05c9c13d9a10e503ff1b8dcd2ccfdf63edd09f1ba04e14d01e76fb8d091b232a28fd8e45b4964856f5503148beaf0909ffff12ff", + "cborBytes": [ + 217, 5, 13, 159, 128, 216, 126, 159, 216, 102, 159, 27, 108, 87, 245, 229, 25, 118, 242, 15, 128, 255, 27, 13, + 126, 57, 51, 84, 100, 16, 52, 27, 47, 149, 136, 141, 27, 212, 114, 97, 255, 159, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 241, 75, 46, 18, 178, 235, 71, 37, 64, 146, 192, 162, 183, 27, 5, 201, 193, 61, 154, 16, 229, 3, 255, + 27, 141, 205, 44, 207, 223, 99, 237, 208, 159, 27, 160, 78, 20, 208, 30, 118, 251, 141, 9, 27, 35, 42, 40, 253, + 142, 69, 180, 150, 72, 86, 245, 80, 49, 72, 190, 175, 9, 9, 255, 255, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1962, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5110083538160409596" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18395029988345052573" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "321703f09ac996c345796f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16663356390980564823" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e3a37bd47f7bea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6478810950000908445" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15544674093056809288" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f1b46eaa9e7509f5bfc9f809f1bff48465037f6fd9dffff4b321703f09ac996c345796fd8669f1be7402259f221b7579f47e3a37bd47f7bea1b59e95c3b99b7189d1bd7b9c6ba79de5948ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 27, 70, 234, 169, 231, 80, 159, 91, 252, 159, 128, + 159, 27, 255, 72, 70, 80, 55, 246, 253, 157, 255, 255, 75, 50, 23, 3, 240, 154, 201, 150, 195, 69, 121, 111, 216, + 102, 159, 27, 231, 64, 34, 89, 242, 33, 183, 87, 159, 71, 227, 163, 123, 212, 127, 123, 234, 27, 89, 233, 92, 59, + 153, 183, 24, 157, 27, 215, 185, 198, 186, 121, 222, 89, 72, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1963, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + ] + }, + "cborHex": "d87f9f1bfffffffffffffffaff", + "cborBytes": [216, 127, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1964, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5864769490297317565" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1614312414156393583" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6106827024433109115" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8132774642905434238" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5163d8c74eb868bd9fd8669f1b16673096724b8c6f9f9f1b54bfced2c817587b41a61b70dd6b72ccaec87effffffffff", + "cborBytes": [ + 216, 102, 159, 27, 81, 99, 216, 199, 78, 184, 104, 189, 159, 216, 102, 159, 27, 22, 103, 48, 150, 114, 75, 140, + 111, 159, 159, 27, 84, 191, 206, 210, 200, 23, 88, 123, 65, 166, 27, 112, 221, 107, 114, 204, 174, 200, 126, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1965, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1841054672104478698" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eb04aad7600a9a186df5" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f9a002374b3d546977" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1368764214625857249" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d209" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5552598852668293399" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13946116361946988930" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7910727063685542471" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58669f65abdd03" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9208464398411875608" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13585270757555199090" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3334564548328304192" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10699188985866088296" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12986072232642310938" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "622d73c84f73b1405896" + } + ] + } + ] + }, + "cborHex": "d8669f1b198cbd784edc57ea9f9f9f4aeb04aad7600a9a186df5ffff49f9a002374b3d546977bf1b12fed3cd1a0a6ee142d2091b4d0ecb3cd18901171bc18a8ef1061d01821b6dc88c5a020bb2474758669f65abdd031b7fcb0994f22bc5181bbc8893c6b1945c72ff9fd8669f1b2e46c0ca17b82e409f1b947b27b22751ef681bb437cbe47635731affff4a622d73c84f73b1405896ffffff", + "cborBytes": [ + 216, 102, 159, 27, 25, 140, 189, 120, 78, 220, 87, 234, 159, 159, 159, 74, 235, 4, 170, 215, 96, 10, 154, 24, 109, + 245, 255, 255, 73, 249, 160, 2, 55, 75, 61, 84, 105, 119, 191, 27, 18, 254, 211, 205, 26, 10, 110, 225, 66, 210, + 9, 27, 77, 14, 203, 60, 209, 137, 1, 23, 27, 193, 138, 142, 241, 6, 29, 1, 130, 27, 109, 200, 140, 90, 2, 11, 178, + 71, 71, 88, 102, 159, 101, 171, 221, 3, 27, 127, 203, 9, 148, 242, 43, 197, 24, 27, 188, 136, 147, 198, 177, 148, + 92, 114, 255, 159, 216, 102, 159, 27, 46, 70, 192, 202, 23, 184, 46, 64, 159, 27, 148, 123, 39, 178, 39, 81, 239, + 104, 27, 180, 55, 203, 228, 118, 53, 115, 26, 255, 255, 74, 98, 45, 115, 200, 79, 115, 177, 64, 88, 150, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1966, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "61ba96c6" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "927d" + } + ] + }, + "cborHex": "d905039f4461ba96c6a042927dff", + "cborBytes": [217, 5, 3, 159, 68, 97, 186, 150, 198, 160, 66, 146, 125, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1967, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1412292822263042908" + }, + "fields": [] + }, + "cborHex": "d8669f1b139978d6d5d2935c80ff", + "cborBytes": [216, 102, 159, 27, 19, 153, 120, 214, 213, 210, 147, 92, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1968, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9287920442521530702" + }, + "fields": [] + }, + "cborHex": "d8669f1b80e5526ed695b14e80ff", + "cborBytes": [216, 102, 159, 27, 128, 229, 82, 110, 214, 149, 177, 78, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1969, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6780751795317440005" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3931945376586472432" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1aa93b765981bd" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d97734" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15215841484938792910" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10017382210432946227" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10316595114284800502" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6157823891375601033" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18337194041181364967" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b5e1a11d4f5fcfe059fd905059f9f1b3691137cd7ad1bf0471aa93b765981bdff43d977341bd3298736ac6dcfced8669f1b8b04e40bc82c50339f1b8f2be898c679d9f6417b1b5574fc3422db3589414f1bfe7accd36a0662e7ffffffd8669f1bfffffffffffffff89f0bffffffff", + "cborBytes": [ + 216, 102, 159, 27, 94, 26, 17, 212, 245, 252, 254, 5, 159, 217, 5, 5, 159, 159, 27, 54, 145, 19, 124, 215, 173, + 27, 240, 71, 26, 169, 59, 118, 89, 129, 189, 255, 67, 217, 119, 52, 27, 211, 41, 135, 54, 172, 109, 207, 206, 216, + 102, 159, 27, 139, 4, 228, 11, 200, 44, 80, 51, 159, 27, 143, 43, 232, 152, 198, 121, 217, 246, 65, 123, 27, 85, + 116, 252, 52, 34, 219, 53, 137, 65, 79, 27, 254, 122, 204, 211, 106, 6, 98, 231, 255, 255, 255, 216, 102, 159, 27, + 255, 255, 255, 255, 255, 255, 255, 248, 159, 11, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1970, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2cb2a4a8d0df" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10665490765493513581" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "26ee9d4cef81f65c05cd3614" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18251798514139628318" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f13ca261d7fb7ddbd6e6" + }, + { + "_tag": "ByteArray", + "bytearray": "57" + }, + { + "_tag": "ByteArray", + "bytearray": "334d5bff6f0bb57145c0" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16414372872192129362" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8059034364199307115" + } + }, + { + "_tag": "ByteArray", + "bytearray": "043e2ecc14" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2116630879817120210" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d6" + } + ] + }, + "cborHex": "d905079fd8669f1bfffffffffffffff39f462cb2a4a8d0df80d8669f1b94036f57d0732d6d9f4c26ee9d4cef81f65c05cd36141bfd4b6a0be34b831e4af13ca261d7fb7ddbd6e641574a334d5bff6f0bb57145c0ffffffff9f809f1be3cb912901d1f9521b6fd7710e3ec4076b45043e2ecc14ff1b1d5fc892201f39d2ff41d6ff", + "cborBytes": [ + 217, 5, 7, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 70, 44, 178, 164, 168, 208, 223, + 128, 216, 102, 159, 27, 148, 3, 111, 87, 208, 115, 45, 109, 159, 76, 38, 238, 157, 76, 239, 129, 246, 92, 5, 205, + 54, 20, 27, 253, 75, 106, 11, 227, 75, 131, 30, 74, 241, 60, 162, 97, 215, 251, 125, 219, 214, 230, 65, 87, 74, + 51, 77, 91, 255, 111, 11, 181, 113, 69, 192, 255, 255, 255, 255, 159, 128, 159, 27, 227, 203, 145, 41, 1, 209, + 249, 82, 27, 111, 215, 113, 14, 62, 196, 7, 107, 69, 4, 62, 46, 204, 20, 255, 27, 29, 95, 200, 146, 32, 31, 57, + 210, 255, 65, 214, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1971, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3118255756938598549" + }, + "fields": [] + }, + "cborHex": "d8669f1b2b464516f724589580ff", + "cborBytes": [216, 102, 159, 27, 43, 70, 69, 22, 247, 36, 88, 149, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1972, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14248671828099899172" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5684653355701282477" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12934835959388076543" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb42bfad80" + }, + { + "_tag": "ByteArray", + "bytearray": "32" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "562472900831460886" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "215704041760657987" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d567e68f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3344841683221167548" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a30cf42ece56f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10229680047589619240" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8802995634019965557" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16026871144649808017" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14286553244096831780" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9152832796720334881" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2620470146413788396" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02c6ec9dde80e644e501d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10895154965843351618" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20cddb06deb699453c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7145395948803647492" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "214a0091758f94f0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1342050811892894039" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4401a49f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c8b93c4c998a09" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13797425374292196525" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69fbf1bfffffffffffffffb4166ffd8669f1bc5bd7388f3029f249f9f1b4ee3f21bc1cea6ad1bb381c4c5fb4679ff45cb42bfad8041321b07ce4e1f89d7be16ffbf1b02fe55aee1c2924344d567e68f1b2e6b43ca06513dbc477a30cf42ece56f1b8df71fcdda7af6281b7a2a85e38d131a751bde6ae2645dcf58911bc644087b6b18a124ffbf1b7f0564ef510f88211b245dc7b6dd827cec4b02c6ec9dde80e644e501d71b97335db767ed18424920cddb06deb699453c1b63298bc1ebf4e80448214a0091758f94f01b129fec1a59668957ff9f1bffffffffffffffec444401a49fffd905079f47c8b93c4c998a09ffffff9fd8669f1bbf7a4d46a9a5bcad80ffff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 251, + 65, 102, 255, 216, 102, 159, 27, 197, 189, 115, 136, 243, 2, 159, 36, 159, 159, 27, 78, 227, 242, 27, 193, 206, + 166, 173, 27, 179, 129, 196, 197, 251, 70, 121, 255, 69, 203, 66, 191, 173, 128, 65, 50, 27, 7, 206, 78, 31, 137, + 215, 190, 22, 255, 191, 27, 2, 254, 85, 174, 225, 194, 146, 67, 68, 213, 103, 230, 143, 27, 46, 107, 67, 202, 6, + 81, 61, 188, 71, 122, 48, 207, 66, 236, 229, 111, 27, 141, 247, 31, 205, 218, 122, 246, 40, 27, 122, 42, 133, 227, + 141, 19, 26, 117, 27, 222, 106, 226, 100, 93, 207, 88, 145, 27, 198, 68, 8, 123, 107, 24, 161, 36, 255, 191, 27, + 127, 5, 100, 239, 81, 15, 136, 33, 27, 36, 93, 199, 182, 221, 130, 124, 236, 75, 2, 198, 236, 157, 222, 128, 230, + 68, 229, 1, 215, 27, 151, 51, 93, 183, 103, 237, 24, 66, 73, 32, 205, 219, 6, 222, 182, 153, 69, 60, 27, 99, 41, + 139, 193, 235, 244, 232, 4, 72, 33, 74, 0, 145, 117, 143, 148, 240, 27, 18, 159, 236, 26, 89, 102, 137, 87, 255, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 68, 68, 1, 164, 159, 255, 217, 5, 7, 159, 71, 200, 185, 60, 76, + 153, 138, 9, 255, 255, 255, 159, 216, 102, 159, 27, 191, 122, 77, 70, 169, 165, 188, 173, 128, 255, 255, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1973, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3089716186147283994" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9187719235930893512" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8049972354951632747" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11286028817083814174" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2eb57d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7180776308673567353" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c74b3bf450b1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10152021924144676660" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17694125507997235111" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6359481888726246688" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15227591108876310596" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10768803056219773239" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "61a81e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "702f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17166277485725831444" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2ae0e0805415641a9fd8669f1b7f8155f769af2cc89f9f1b6fb73f34cc9b576bffd8669f1b9ca00769c71a511e9f432eb57d1b63a73e01e2075a7946c74b3bf450b11b8ce33a26fc9eff34ffffd8669f1bf58e2966eb5a77a780ffffff1b58416b15750ee5201bd353456f2d781844d8669f1b95727952f61ed93780ffbf4361a81e419942702f1bee3ade6c24795114ffffff", + "cborBytes": [ + 216, 102, 159, 27, 42, 224, 224, 128, 84, 21, 100, 26, 159, 216, 102, 159, 27, 127, 129, 85, 247, 105, 175, 44, + 200, 159, 159, 27, 111, 183, 63, 52, 204, 155, 87, 107, 255, 216, 102, 159, 27, 156, 160, 7, 105, 199, 26, 81, 30, + 159, 67, 46, 181, 125, 27, 99, 167, 62, 1, 226, 7, 90, 121, 70, 199, 75, 59, 244, 80, 177, 27, 140, 227, 58, 38, + 252, 158, 255, 52, 255, 255, 216, 102, 159, 27, 245, 142, 41, 102, 235, 90, 119, 167, 128, 255, 255, 255, 27, 88, + 65, 107, 21, 117, 14, 229, 32, 27, 211, 83, 69, 111, 45, 120, 24, 68, 216, 102, 159, 27, 149, 114, 121, 82, 246, + 30, 217, 55, 128, 255, 191, 67, 97, 168, 30, 65, 153, 66, 112, 47, 27, 238, 58, 222, 108, 36, 121, 81, 20, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1974, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2727993006695485611" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f184f5f057a0a122e70f1438" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b4f98597e2184b216f1fa" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1680773976061591323" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f16478f07e12062a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9259510897467003188" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11cb18c414f2976dbc6f02" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13561694152119205326" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd397509c3addc6d9d457e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3126dc4abccbfec73720" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1951690002268041051" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13358269298697391646" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7cbae67b2aa6d1722" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17082305977965139944" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "395a41ef0de7a710" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9fd8669f1b25dbc72fa1d590ab9fbf4cf184f5f057a0a122e70f14384b7b4f98597e2184b216f1faffbf1b17534f06aedf3f1b48f16478f07e12062a1b8080641a2d6111344b11cb18c414f2976dbc6f021bbc34d0fa798ebdce4bfd397509c3addc6d9d457eff4a3126dc4abccbfec737209f1b1b15cbb770de2f5bffffffbf1bb9621b26eadd4e1e49d7cbae67b2aa6d17221bed108ac7f124d7e848395a41ef0de7a710ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 216, 102, 159, 27, 37, 219, 199, 47, 161, 213, + 144, 171, 159, 191, 76, 241, 132, 245, 240, 87, 160, 161, 34, 231, 15, 20, 56, 75, 123, 79, 152, 89, 126, 33, 132, + 178, 22, 241, 250, 255, 191, 27, 23, 83, 79, 6, 174, 223, 63, 27, 72, 241, 100, 120, 240, 126, 18, 6, 42, 27, 128, + 128, 100, 26, 45, 97, 17, 52, 75, 17, 203, 24, 196, 20, 242, 151, 109, 188, 111, 2, 27, 188, 52, 208, 250, 121, + 142, 189, 206, 75, 253, 57, 117, 9, 195, 173, 220, 109, 157, 69, 126, 255, 74, 49, 38, 220, 74, 188, 203, 254, + 199, 55, 32, 159, 27, 27, 21, 203, 183, 112, 222, 47, 91, 255, 255, 255, 191, 27, 185, 98, 27, 38, 234, 221, 78, + 30, 73, 215, 203, 174, 103, 178, 170, 109, 23, 34, 27, 237, 16, 138, 199, 241, 36, 215, 232, 72, 57, 90, 65, 239, + 13, 231, 167, 16, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1975, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11786976919586542767" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1b13208eb5" + } + ] + }, + "cborHex": "d905009f1ba393c10eebaf14af451b13208eb5ff", + "cborBytes": [217, 5, 0, 159, 27, 163, 147, 193, 14, 235, 175, 20, 175, 69, 27, 19, 32, 142, 181, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1976, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2783525939866930942" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "17de" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7565574415862300688" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8139137497094624968" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10146392224247673262" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5599184537952707527" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18218901553751505268" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3721346365594283112" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16092571496215203803" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + }, + "cborHex": "d8669f1b26a1121834da8efe9f4217debf1b68fe51d8db4180101b70f4066e3c6316c81b8ccf39f8561171ae1b4db44cabe887e3c71bfcd68a6f6d2bb9741b33a4e0cd8f702c68ffd8669f1bdf544c83827bcfdb80ff1bfffffffffffffffe00ffff", + "cborBytes": [ + 216, 102, 159, 27, 38, 161, 18, 24, 52, 218, 142, 254, 159, 66, 23, 222, 191, 27, 104, 254, 81, 216, 219, 65, 128, + 16, 27, 112, 244, 6, 110, 60, 99, 22, 200, 27, 140, 207, 57, 248, 86, 17, 113, 174, 27, 77, 180, 76, 171, 232, + 135, 227, 199, 27, 252, 214, 138, 111, 109, 43, 185, 116, 27, 51, 164, 224, 205, 143, 112, 44, 104, 255, 216, 102, + 159, 27, 223, 84, 76, 131, 130, 123, 207, 219, 128, 255, 27, 255, 255, 255, 255, 255, 255, 255, 254, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1977, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14473322831326528029" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16288883572168949802" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5418491247444845319" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6304dc49f5e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13899308195079654695" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "56bc1173b8a3be9b2a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6736681429534665744" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "78840b99a6890a740cb021" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6172548230810940800" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1920120147563207269" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14628725410029624072" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15413642888160321457" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9901195282797221368" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3272701834008484930" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6781230341153358058" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12587250829228703230" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14303856679383693707" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f9ce527b84" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1271811677603874328" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1fa2560a101259a88e" + }, + { + "_tag": "ByteArray", + "bytearray": "46d0941493" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "576071548584272711" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b96bd771f4e404a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "248089593544359110" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61c5ed9c842ba7b798a890" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "277715357970107410" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c82c9798c7ba4a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a616a52139973cf060" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15906739307305720833" + } + } + ] + }, + "cborHex": "d8669f1bc8db926ea0c4c21d9fd8669f1be20dbd4e82d3802a9f9f1b4b325914c6836307466304dc49f5e31bc0e4432967660d27ff4956bc1173b8a3be9b2affff9f1b5d7d801154626c10809f4b78840b99a6890a740cb0211b55a94be99073b580ffffbf1b1aa5a319d9935a651bcb03ac410d8bdb081bd5e8428ab3859fb11b89681ca6a2e6d5f8ffd8669f1b2d6af8fa7fd85c429f1b5e1bc511188c00ea1baeaee5f066eafdfed8669f1bc68181dd64c3798b9f45f9ce527b841b11a661fb80c5c618491fa2560a101259a88e4546d0941493ffff1b07fe9e0572932347bf482b96bd771f4e404a1b0371642bbfaebcc64b61c5ed9c842ba7b798a8901b03daa4a58c7a8c1247c82c9798c7ba4a49a616a52139973cf060ffffff1bdcc0171f5ab35c01ffff", + "cborBytes": [ + 216, 102, 159, 27, 200, 219, 146, 110, 160, 196, 194, 29, 159, 216, 102, 159, 27, 226, 13, 189, 78, 130, 211, 128, + 42, 159, 159, 27, 75, 50, 89, 20, 198, 131, 99, 7, 70, 99, 4, 220, 73, 245, 227, 27, 192, 228, 67, 41, 103, 102, + 13, 39, 255, 73, 86, 188, 17, 115, 184, 163, 190, 155, 42, 255, 255, 159, 27, 93, 125, 128, 17, 84, 98, 108, 16, + 128, 159, 75, 120, 132, 11, 153, 166, 137, 10, 116, 12, 176, 33, 27, 85, 169, 75, 233, 144, 115, 181, 128, 255, + 255, 191, 27, 26, 165, 163, 25, 217, 147, 90, 101, 27, 203, 3, 172, 65, 13, 139, 219, 8, 27, 213, 232, 66, 138, + 179, 133, 159, 177, 27, 137, 104, 28, 166, 162, 230, 213, 248, 255, 216, 102, 159, 27, 45, 106, 248, 250, 127, + 216, 92, 66, 159, 27, 94, 27, 197, 17, 24, 140, 0, 234, 27, 174, 174, 229, 240, 102, 234, 253, 254, 216, 102, 159, + 27, 198, 129, 129, 221, 100, 195, 121, 139, 159, 69, 249, 206, 82, 123, 132, 27, 17, 166, 97, 251, 128, 197, 198, + 24, 73, 31, 162, 86, 10, 16, 18, 89, 168, 142, 69, 70, 208, 148, 20, 147, 255, 255, 27, 7, 254, 158, 5, 114, 147, + 35, 71, 191, 72, 43, 150, 189, 119, 31, 78, 64, 74, 27, 3, 113, 100, 43, 191, 174, 188, 198, 75, 97, 197, 237, + 156, 132, 43, 167, 183, 152, 168, 144, 27, 3, 218, 164, 165, 140, 122, 140, 18, 71, 200, 44, 151, 152, 199, 186, + 74, 73, 166, 22, 165, 33, 57, 151, 60, 240, 96, 255, 255, 255, 27, 220, 192, 23, 31, 90, 179, 92, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1978, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [] + } + ] + }, + "cborHex": "d905039fd9050b80ff", + "cborBytes": [217, 5, 3, 159, 217, 5, 11, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1979, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11557359922332890469" + }, + "fields": [] + }, + "cborHex": "d8669f1ba063fd9da7fcf56580ff", + "cborBytes": [216, 102, 159, 27, 160, 99, 253, 157, 167, 252, 245, 101, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1980, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + "cborHex": "d87e9f06ff", + "cborBytes": [216, 126, 159, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1981, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16404471037359218281" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17206502113330585435" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17725495009612466900" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "523122919112967395" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4906659623578722983" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2235817558456757431" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "327433796003990635" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6031166286050235538" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d3910e9752a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10569203730586000179" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d63fe73aa0f255b31d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17875843432771360474" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12612628758592542457" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ee176b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17885291439449093909" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11258807897004514906" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb59dd" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8685696049289610865" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79fd8669f1be3a8637e6dfade699f1beec9c6821413df5b1bf5fd9bcc2be90ad4bf1b07428185f79804e31b4417f4ee592962a71b1f0738393a656cb71b048b474d7a468c6b1b53b301c85d561492468d3910e9752a1b92ad5acb804fdb3349d63fe73aa0f255b31d1bf813c0e44ed616da1baf090f0807c8d6f9ff43ee176bffff1bf83551cdc8b2b715a0d8669f1b9c3f52216f511e5a9f9f43cb59ddff1b7889ca89bcebc671ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 216, 102, 159, 27, 227, 168, 99, 126, 109, 250, + 222, 105, 159, 27, 238, 201, 198, 130, 20, 19, 223, 91, 27, 245, 253, 155, 204, 43, 233, 10, 212, 191, 27, 7, 66, + 129, 133, 247, 152, 4, 227, 27, 68, 23, 244, 238, 89, 41, 98, 167, 27, 31, 7, 56, 57, 58, 101, 108, 183, 27, 4, + 139, 71, 77, 122, 70, 140, 107, 27, 83, 179, 1, 200, 93, 86, 20, 146, 70, 141, 57, 16, 233, 117, 42, 27, 146, 173, + 90, 203, 128, 79, 219, 51, 73, 214, 63, 231, 58, 160, 242, 85, 179, 29, 27, 248, 19, 192, 228, 78, 214, 22, 218, + 27, 175, 9, 15, 8, 7, 200, 214, 249, 255, 67, 238, 23, 107, 255, 255, 27, 248, 53, 81, 205, 200, 178, 183, 21, + 160, 216, 102, 159, 27, 156, 63, 82, 33, 111, 81, 30, 90, 159, 159, 67, 203, 89, 221, 255, 27, 120, 137, 202, 137, + 188, 235, 198, 113, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1982, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11782934582982774366" + }, + "fields": [] + }, + "cborHex": "d8669f1ba3856493165a8e5e80ff", + "cborBytes": [216, 102, 159, 27, 163, 133, 100, 147, 22, 90, 142, 94, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1983, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12974072738609125116" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + ] + }, + "cborHex": "d8669f1bb40d2a6a8ae056fc9f1bfffffffffffffffeffff", + "cborBytes": [ + 216, 102, 159, 27, 180, 13, 42, 106, 138, 224, 86, 252, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1984, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "27cbbcbdf9a564" + }, + { + "_tag": "ByteArray", + "bytearray": "1fa6" + }, + { + "_tag": "ByteArray", + "bytearray": "91f4875d8720" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f4727cbbcbdf9a564421fa64691f4875d8720ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 71, 39, 203, 188, 189, 249, 165, 100, 66, 31, 166, + 70, 145, 244, 135, 93, 135, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1985, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18422495911470032607" + }, + "fields": [] + }, + "cborHex": "d8669f1bffa9da6cc741e6df80ff", + "cborBytes": [216, 102, 159, 27, 255, 169, 218, 108, 199, 65, 230, 223, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1986, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbb4d4b371758de56e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10217899144901007990" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54a22ce78df03e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f85ce1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9400ec01" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3a7a2c782750fbbc" + }, + { + "_tag": "ByteArray", + "bytearray": "402f35a488a1ad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7629840020311793213" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12265728024888942421" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5096296647500046916" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18097866752874385152" + } + } + ] + } + ] + }, + "cborHex": "d8799fd905029f1bffffffffffffffebbf0d49cbb4d4b371758de56e1b8dcd4522b2979a764754a22ce78df03e43f85ce1449400ec01ff9f483a7a2c782750fbbc47402f35a488a1ad1b69e2a312e7be5e3d1baa389ea6eb0f1f551b46b9aeccb0412244ffff9f1bfb2889ecd56e0f00ffff", + "cborBytes": [ + 216, 121, 159, 217, 5, 2, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 191, 13, 73, 203, 180, 212, 179, 113, + 117, 141, 229, 110, 27, 141, 205, 69, 34, 178, 151, 154, 118, 71, 84, 162, 44, 231, 141, 240, 62, 67, 248, 92, + 225, 68, 148, 0, 236, 1, 255, 159, 72, 58, 122, 44, 120, 39, 80, 251, 188, 71, 64, 47, 53, 164, 136, 161, 173, 27, + 105, 226, 163, 18, 231, 190, 94, 61, 27, 170, 56, 158, 166, 235, 15, 31, 85, 27, 70, 185, 174, 204, 176, 65, 34, + 68, 255, 255, 159, 27, 251, 40, 137, 236, 213, 110, 15, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1987, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f462fc20d6" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6218480776889390353" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "621593812750917904" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c69bd8e43c75a4aeb74" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2470391247406159918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d995ab51099" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7122475291723310009" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56535a9e8900df262d45d4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15091516823747478568" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9368542001695012094" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17105695955601256046" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9613ef43fcb4" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5974870630786465019" + } + } + ] + }, + "cborHex": "d905089f45f462fc20d6a0d8669f1b564c7b51d516551180ffbf1b08a05847839961104a5c69bd8e43c75a4aeb741b224897c035e0d82e465d995ab510991b62d81d8a94aa23b94b56535a9e8900df262d45d41bd16fd697c94cc4281b8203bf505a5bb4fe1bed63a3d77d72ee6e469613ef43fcb4ff1b52eb012eb6f0fcfbff", + "cborBytes": [ + 217, 5, 8, 159, 69, 244, 98, 252, 32, 214, 160, 216, 102, 159, 27, 86, 76, 123, 81, 213, 22, 85, 17, 128, 255, + 191, 27, 8, 160, 88, 71, 131, 153, 97, 16, 74, 92, 105, 189, 142, 67, 199, 90, 74, 235, 116, 27, 34, 72, 151, 192, + 53, 224, 216, 46, 70, 93, 153, 90, 181, 16, 153, 27, 98, 216, 29, 138, 148, 170, 35, 185, 75, 86, 83, 90, 158, + 137, 0, 223, 38, 45, 69, 212, 27, 209, 111, 214, 151, 201, 76, 196, 40, 27, 130, 3, 191, 80, 90, 91, 180, 254, 27, + 237, 99, 163, 215, 125, 114, 238, 110, 70, 150, 19, 239, 67, 252, 180, 255, 27, 82, 235, 1, 46, 182, 240, 252, + 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1988, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0763" + }, + { + "_tag": "ByteArray", + "bytearray": "041c9d392a25" + }, + { + "_tag": "ByteArray", + "bytearray": "8a134f5caf98c481f63d4097" + }, + { + "_tag": "ByteArray", + "bytearray": "c3513cb34f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16873001627544464756" + }, + "fields": [] + } + ] + }, + "cborHex": "d87e9f809f13ffd905049fd8669f1bfffffffffffffff79f42076346041c9d392a254c8a134f5caf98c481f63d409745c3513cb34fffff09ffd8669f1bea28f19550602d7480ffff", + "cborBytes": [ + 216, 126, 159, 128, 159, 19, 255, 217, 5, 4, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, + 66, 7, 99, 70, 4, 28, 157, 57, 42, 37, 76, 138, 19, 79, 92, 175, 152, 196, 129, 246, 61, 64, 151, 69, 195, 81, 60, + 179, 79, 255, 255, 9, 255, 216, 102, 159, 27, 234, 40, 241, 149, 80, 96, 45, 116, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1989, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17236218944728168542" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44019e671b5a5bea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0919c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b331" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13330401707471255676" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2326528372328194349" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2863615502467927106" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8623048013755237298" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7894567624673865142" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0da8cfd05f395" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8920520841713093269" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1688978748905082966" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16983973889220639533" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5585322581043842356" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17827011623418135377" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3cffd013f9f86580d979" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ee45c2285879" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21cd4a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f691079f81" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "259d020f0d76" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d9d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67633d1b6bb22c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "573366193765154413" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf9a59c9bdbfd5f537a47d3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13106531849386737114" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb61" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d0eb79e19b7055b33e4" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16965464573238766194" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f9fbf06111bef3359cf0f61785e4844019e671b5a5bea430919c042b331ff1bb8ff19b9b715b87cffd8669f1b20497d3a687d612d9fbf1b27bd9b209de70c421b77ab387b4d04c3b21b6d8f236d6bfc2db647c0da8cfd05f3951b7bcc0e714dc70a951b1770753939abd0561bebb332446d817b2d1b4d830d4b8f160d341bf766449eb49903514a3cffd013f9f86580d979ff46ee45c2285879bf4321cd4a45f691079f8146259d020f0d76420d9d4767633d1b6bb22c1b07f50183f196fe6d4cbf9a59c9bdbfd5f537a47d3f1bb5e3c146900a3dda42eb614a8d0eb79e19b7055b33e4ffffff1beb717024795eea72ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 159, 191, 6, 17, 27, 239, 51, 89, 207, 15, 97, + 120, 94, 72, 68, 1, 158, 103, 27, 90, 91, 234, 67, 9, 25, 192, 66, 179, 49, 255, 27, 184, 255, 25, 185, 183, 21, + 184, 124, 255, 216, 102, 159, 27, 32, 73, 125, 58, 104, 125, 97, 45, 159, 191, 27, 39, 189, 155, 32, 157, 231, 12, + 66, 27, 119, 171, 56, 123, 77, 4, 195, 178, 27, 109, 143, 35, 109, 107, 252, 45, 182, 71, 192, 218, 140, 253, 5, + 243, 149, 27, 123, 204, 14, 113, 77, 199, 10, 149, 27, 23, 112, 117, 57, 57, 171, 208, 86, 27, 235, 179, 50, 68, + 109, 129, 123, 45, 27, 77, 131, 13, 75, 143, 22, 13, 52, 27, 247, 102, 68, 158, 180, 153, 3, 81, 74, 60, 255, 208, + 19, 249, 248, 101, 128, 217, 121, 255, 70, 238, 69, 194, 40, 88, 121, 191, 67, 33, 205, 74, 69, 246, 145, 7, 159, + 129, 70, 37, 157, 2, 15, 13, 118, 66, 13, 157, 71, 103, 99, 61, 27, 107, 178, 44, 27, 7, 245, 1, 131, 241, 150, + 254, 109, 76, 191, 154, 89, 201, 189, 191, 213, 245, 55, 164, 125, 63, 27, 181, 227, 193, 70, 144, 10, 61, 218, + 66, 235, 97, 74, 141, 14, 183, 158, 25, 183, 5, 91, 51, 228, 255, 255, 255, 27, 235, 113, 112, 36, 121, 94, 234, + 114, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1990, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7264854222999812037" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1477174818937630860" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15359904971167461920" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14991494222033088149" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "158774935098120840" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c7befc9994a394531" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "940238592759899047" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9524d5072bf86715a92257d0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5831257830336301919" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "443159080049063477" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9781223959386306815" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "345e140011be7e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8d9971d997" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15556574316790529800" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7f884a73acb922" + }, + { + "_tag": "ByteArray", + "bytearray": "69" + }, + { + "_tag": "ByteArray", + "bytearray": "0e" + }, + { + "_tag": "ByteArray", + "bytearray": "76b56a6487" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "727165045247283242" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10840321850332558994" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c87bb93a30ca7039bbaf" + }, + { + "_tag": "ByteArray", + "bytearray": "826d9b8ec2292c75d2" + }, + { + "_tag": "ByteArray", + "bytearray": "3146d1b642ad45b58b04885d" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b64d1f26ccae677c59f1b147ffaabe1edf08c9f1bd5295830e63172201bd00c7c910c9a6e95bf1b023414f655c25a88499c7befc9994a3945311b0d0c6604bd9123a74c9524d5072bf86715a92257d01b50ecca19f2e90b5f1b06266ad5d95036351b87bde35e2fc2b8ff47345e140011be7eff458d9971d997ff9fd8669f1bd7e40deb3a43bf089f477f884a73acb9224169410e4576b56a6487ffff1b0a1768c1870b902a9f1b96708f49d3fa36924ac87bb93a30ca7039bbaf49826d9b8ec2292c75d24c3146d1b642ad45b58b04885dffffffff", + "cborBytes": [ + 216, 102, 159, 27, 100, 209, 242, 108, 202, 230, 119, 197, 159, 27, 20, 127, 250, 171, 225, 237, 240, 140, 159, + 27, 213, 41, 88, 48, 230, 49, 114, 32, 27, 208, 12, 124, 145, 12, 154, 110, 149, 191, 27, 2, 52, 20, 246, 85, 194, + 90, 136, 73, 156, 123, 239, 201, 153, 74, 57, 69, 49, 27, 13, 12, 102, 4, 189, 145, 35, 167, 76, 149, 36, 213, 7, + 43, 248, 103, 21, 169, 34, 87, 208, 27, 80, 236, 202, 25, 242, 233, 11, 95, 27, 6, 38, 106, 213, 217, 80, 54, 53, + 27, 135, 189, 227, 94, 47, 194, 184, 255, 71, 52, 94, 20, 0, 17, 190, 126, 255, 69, 141, 153, 113, 217, 151, 255, + 159, 216, 102, 159, 27, 215, 228, 13, 235, 58, 67, 191, 8, 159, 71, 127, 136, 74, 115, 172, 185, 34, 65, 105, 65, + 14, 69, 118, 181, 106, 100, 135, 255, 255, 27, 10, 23, 104, 193, 135, 11, 144, 42, 159, 27, 150, 112, 143, 73, + 211, 250, 54, 146, 74, 200, 123, 185, 58, 48, 202, 112, 57, 187, 175, 73, 130, 109, 155, 142, 194, 41, 44, 117, + 210, 76, 49, 70, 209, 182, 66, 173, 69, 181, 139, 4, 136, 93, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1991, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6088212420236427683" + }, + "fields": [] + } + ] + }, + "cborHex": "d905059fd8669f1b547dacf0815041a380ffff", + "cborBytes": [217, 5, 5, 159, 216, 102, 159, 27, 84, 125, 172, 240, 129, 80, 65, 163, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1992, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15891717868580097277" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4391c28394258534b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14771002155939931370" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bfb209061d0b11c97" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3290346116626389514" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8122bc470f095ed2b2192e69" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1d8d6171688033737" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d907cce321c091a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "206131315841279442" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11192678038776256298" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bdc8ab9341b71ccfd9fbf494391c28394258534b11bccfd2433615424ea497bfb209061d0b11c971b2da9a85c2d9a1a0a4c8122bc470f095ed2b2192e6949b1d8d6171688033737488d907cce321c091a1b02dc5356f1cda5d241b41b9b54615ffa93172affffff", + "cborBytes": [ + 216, 102, 159, 27, 220, 138, 185, 52, 27, 113, 204, 253, 159, 191, 73, 67, 145, 194, 131, 148, 37, 133, 52, 177, + 27, 204, 253, 36, 51, 97, 84, 36, 234, 73, 123, 251, 32, 144, 97, 208, 177, 28, 151, 27, 45, 169, 168, 92, 45, + 154, 26, 10, 76, 129, 34, 188, 71, 15, 9, 94, 210, 178, 25, 46, 105, 73, 177, 216, 214, 23, 22, 136, 3, 55, 55, + 72, 141, 144, 124, 206, 50, 28, 9, 26, 27, 2, 220, 83, 86, 241, 205, 165, 210, 65, 180, 27, 155, 84, 97, 95, 250, + 147, 23, 42, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1993, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "329f5bf108" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6862115276657815852" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4147e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5643413294756615738" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c35ff9107b78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5389072665420841784" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b01062be624733e0c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "185248784512072401" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51d7db71" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3ba5de26a38988a87dfe3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55e35ce03f95aa35" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4968099834199041978" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a38820e75a30f38ea525adb9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e972d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "518f1ccf" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10553944303196934910" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b7b2df5b373ce6a7c7ace2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5881" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15650027682967199913" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5812213550175204084" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16500008815803531335" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17979657207388990087" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3033271047814547968" + } + } + } + ] + } + ] + }, + "cborHex": "d905099fbf45329f5bf1081b5f3b217cb0f8712c434147e01b4e516e7dd2af563a46c35ff9107b781b4ac9d509632d4338ffbf493b01062be624733e0c1b029222c9bbea3ad14451d7db714bc3ba5de26a38988a87dfe34855e35ce03f95aa351b44f23c7a221c67ba425e104ca38820e75a30f38ea525adb943e972d944518f1ccfff414f9f1b9277246d334f92fe4bb7b2df5b373ce6a7c7ace2bf4258811bd9301142a04a20a9ffffbf1b50a9216df0e7b2f41be4fbce98e0c880471bf98492f845b66a871b2a1857f270768a00ffff", + "cborBytes": [ + 217, 5, 9, 159, 191, 69, 50, 159, 91, 241, 8, 27, 95, 59, 33, 124, 176, 248, 113, 44, 67, 65, 71, 224, 27, 78, 81, + 110, 125, 210, 175, 86, 58, 70, 195, 95, 249, 16, 123, 120, 27, 74, 201, 213, 9, 99, 45, 67, 56, 255, 191, 73, 59, + 1, 6, 43, 230, 36, 115, 62, 12, 27, 2, 146, 34, 201, 187, 234, 58, 209, 68, 81, 215, 219, 113, 75, 195, 186, 93, + 226, 106, 56, 152, 138, 135, 223, 227, 72, 85, 227, 92, 224, 63, 149, 170, 53, 27, 68, 242, 60, 122, 34, 28, 103, + 186, 66, 94, 16, 76, 163, 136, 32, 231, 90, 48, 243, 142, 165, 37, 173, 185, 67, 233, 114, 217, 68, 81, 143, 28, + 207, 255, 65, 79, 159, 27, 146, 119, 36, 109, 51, 79, 146, 254, 75, 183, 178, 223, 91, 55, 60, 230, 167, 199, 172, + 226, 191, 66, 88, 129, 27, 217, 48, 17, 66, 160, 74, 32, 169, 255, 255, 191, 27, 80, 169, 33, 109, 240, 231, 178, + 244, 27, 228, 251, 206, 152, 224, 200, 128, 71, 27, 249, 132, 146, 248, 69, 182, 106, 135, 27, 42, 24, 87, 242, + 112, 118, 138, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1994, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12681869976418690926" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12966405296302485976" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "748611877807241508" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15134178401870066545" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6533936519384232524" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7349e864cc34e9fde9562296" + }, + { + "_tag": "ByteArray", + "bytearray": "1c8b7f21ac3f" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bafff0d8d5820a76e9fd9050b9fbf1bb3f1eceb03da71d81b0a639a895b56b9241bd20767127adab3711b5aad34a566d9724cff4c7349e864cc34e9fde9562296461c8b7f21ac3f80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 175, 255, 13, 141, 88, 32, 167, 110, 159, 217, 5, 11, 159, 191, 27, 179, 241, 236, 235, 3, 218, + 113, 216, 27, 10, 99, 154, 137, 91, 86, 185, 36, 27, 210, 7, 103, 18, 122, 218, 179, 113, 27, 90, 173, 52, 165, + 102, 217, 114, 76, 255, 76, 115, 73, 232, 100, 204, 52, 233, 253, 233, 86, 34, 150, 70, 28, 139, 127, 33, 172, 63, + 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1995, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7232255416300042949" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2257400024094056918" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10373208087866202428" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11351353879947356891" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc75af29c94d88b001631481" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14126001244336936370" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe3d91" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "45222ab6115ef620" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0950cb3935902082d8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c0be9358649f6ef46" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7617140653507939746" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81e97fdb5ab0ab5d8a7c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c3cd103a816" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9333d464" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15158607052756825302" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f69aa13624175b8324c0a3aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "912750224625127948" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4241517204466405085" + } + } + ] + }, + "cborHex": "d905099fd8669f1b645e21fba5757ac59fbf1b1f53e55c9815a1d61b8ff509cbda79593c1b9d881c363603aadb4cfc75af29c94d88b0016314811bc409a349f96dd5b243fe3d91ff80ffffbf4845222ab6115ef620490950cb3935902082d8497c0be9358649f6ef461b69b5851128870da24a81e97fdb5ab0ab5d8a7c465c3cd103a816449333d4641bd25e30ccfd4d34d64cf69aa13624175b8324c0a3aa1b0caabd7e4b70520cff1b3adce56cc8ed8eddff", + "cborBytes": [ + 217, 5, 9, 159, 216, 102, 159, 27, 100, 94, 33, 251, 165, 117, 122, 197, 159, 191, 27, 31, 83, 229, 92, 152, 21, + 161, 214, 27, 143, 245, 9, 203, 218, 121, 89, 60, 27, 157, 136, 28, 54, 54, 3, 170, 219, 76, 252, 117, 175, 41, + 201, 77, 136, 176, 1, 99, 20, 129, 27, 196, 9, 163, 73, 249, 109, 213, 178, 67, 254, 61, 145, 255, 128, 255, 255, + 191, 72, 69, 34, 42, 182, 17, 94, 246, 32, 73, 9, 80, 203, 57, 53, 144, 32, 130, 216, 73, 124, 11, 233, 53, 134, + 73, 246, 239, 70, 27, 105, 181, 133, 17, 40, 135, 13, 162, 74, 129, 233, 127, 219, 90, 176, 171, 93, 138, 124, 70, + 92, 60, 209, 3, 168, 22, 68, 147, 51, 212, 100, 27, 210, 94, 48, 204, 253, 77, 52, 214, 76, 246, 154, 161, 54, 36, + 23, 91, 131, 36, 192, 163, 170, 27, 12, 170, 189, 126, 75, 112, 82, 12, 255, 27, 58, 220, 229, 108, 200, 237, 142, + 221, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1996, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12832401877058591430" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55ccd4972f4aa8cf" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a2f7ff" + } + ] + }, + "cborHex": "d905029fbf1bb215d984a9221ac64855ccd4972f4aa8cfff43a2f7ffff", + "cborBytes": [ + 217, 5, 2, 159, 191, 27, 178, 21, 217, 132, 169, 34, 26, 198, 72, 85, 204, 212, 151, 47, 74, 168, 207, 255, 67, + 162, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1997, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4275867857598552139" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10582498132607068092" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "827b03465789ed0492" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73f961" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2296b63e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5989908582326897289" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c1c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0268b7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "422f5f0143" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16389930575962553216" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60b75f997d38faa710" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f2cd346e9" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9062456637785734182" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ace19c561ad3ff3c66" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d296d4d1a1c54aa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a19a0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4802999c6156ebdd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9bd7e234ad23f889bab4e6cd" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11735169512467140221" + } + } + ] + }, + "cborHex": "d8669f1b3b56ef2976ac184b9fd8669f1b92dc95fbae4767bc9fbf49827b03465789ed04924373f961ffbf442296b63e1b53206e1ea6a88a89423c1c430268b745422f5f01431be374bb05718fbb804960b75f997d38faa710457f2cd346e9ffffffbf1b7dc4504c0f997c2649ace19c561ad3ff3c66481d296d4d1a1c54aa430a19a0484802999c6156ebdd4c9bd7e234ad23f889bab4e6cdff1ba2dbb27ef9990e7dffff", + "cborBytes": [ + 216, 102, 159, 27, 59, 86, 239, 41, 118, 172, 24, 75, 159, 216, 102, 159, 27, 146, 220, 149, 251, 174, 71, 103, + 188, 159, 191, 73, 130, 123, 3, 70, 87, 137, 237, 4, 146, 67, 115, 249, 97, 255, 191, 68, 34, 150, 182, 62, 27, + 83, 32, 110, 30, 166, 168, 138, 137, 66, 60, 28, 67, 2, 104, 183, 69, 66, 47, 95, 1, 67, 27, 227, 116, 187, 5, + 113, 143, 187, 128, 73, 96, 183, 95, 153, 125, 56, 250, 167, 16, 69, 127, 44, 211, 70, 233, 255, 255, 255, 191, + 27, 125, 196, 80, 76, 15, 153, 124, 38, 73, 172, 225, 156, 86, 26, 211, 255, 60, 102, 72, 29, 41, 109, 77, 26, 28, + 84, 170, 67, 10, 25, 160, 72, 72, 2, 153, 156, 97, 86, 235, 221, 76, 155, 215, 226, 52, 173, 35, 248, 137, 186, + 180, 230, 205, 255, 27, 162, 219, 178, 126, 249, 153, 14, 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1998, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "29" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5917331482680430604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5634844414007862107" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9423215569118127372" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "645716848171929674" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11313133175922620628" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9502866420956788433" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18089296935322051739" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13443120268219772174" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7727c3e482470578" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8225993283933898141" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f4129bf1b521e95a1d367100c1b4e32fd23cd88635b1b82c5fca23f37650c1b08f60c0d60c5d04a1b9d0052af178df8d41b83e0f6a9591df6d11bfb0a17b8b26ee49b1bba8f8ea8c417ed0eff487727c3e4824705781b7228994efda1059dffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 65, 41, 191, 27, 82, 30, 149, 161, 211, 103, 16, + 12, 27, 78, 50, 253, 35, 205, 136, 99, 91, 27, 130, 197, 252, 162, 63, 55, 101, 12, 27, 8, 246, 12, 13, 96, 197, + 208, 74, 27, 157, 0, 82, 175, 23, 141, 248, 212, 27, 131, 224, 246, 169, 89, 29, 246, 209, 27, 251, 10, 23, 184, + 178, 110, 228, 155, 27, 186, 143, 142, 168, 196, 23, 237, 14, 255, 72, 119, 39, 195, 228, 130, 71, 5, 120, 27, + 114, 40, 153, 78, 253, 161, 5, 157, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 1999, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "383d9363fa8b89374e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8055e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "242850e809d0a9f54dd0b6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c1d3f3a55" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53d5036456c609" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c80de0b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18217533621994986814" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb46ecdedc7865" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17524620540051095998" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "898066428123767736" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7700400087556076697" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2543954462085605449" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7734035375396417805" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3831987117997143574" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4522796720664826916" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18065694938812630069" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3a557dc2a468b76570dab3" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9336825648055904326" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15729597912599743754" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e56583" + }, + { + "_tag": "ByteArray", + "bytearray": "24227fa0ee798c38e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14156724756297294696" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17899938199386757923" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29fbf49383d9363fa8b89374e43e8055e423e134b242850e809d0a9f54dd0b6459c1d3f3a554753d5036456c60944c80de0b81bfcd1ae4efebf1d3e47fb46ecdedc78651bf333f588214281beffd8669f1b0c7692a8810563b89f1b6add5114c72ab499d8669f1b234df11ad561e8499f1b6b54d0327ecef10d1b352df3fb2817b6161b3ec433a7968754241bfab63dd4a87fc4354b3a557dc2a468b76570dab3ffff1b819311755220e846d8669f1bda4ac1f6683bcd0a9f43e565834924227fa0ee798c38e81bc476ca290a1423681bf8695af453e49b23ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 191, 73, 56, 61, 147, 99, 250, 139, 137, 55, 78, + 67, 232, 5, 94, 66, 62, 19, 75, 36, 40, 80, 232, 9, 208, 169, 245, 77, 208, 182, 69, 156, 29, 63, 58, 85, 71, 83, + 213, 3, 100, 86, 198, 9, 68, 200, 13, 224, 184, 27, 252, 209, 174, 78, 254, 191, 29, 62, 71, 251, 70, 236, 222, + 220, 120, 101, 27, 243, 51, 245, 136, 33, 66, 129, 190, 255, 216, 102, 159, 27, 12, 118, 146, 168, 129, 5, 99, + 184, 159, 27, 106, 221, 81, 20, 199, 42, 180, 153, 216, 102, 159, 27, 35, 77, 241, 26, 213, 97, 232, 73, 159, 27, + 107, 84, 208, 50, 126, 206, 241, 13, 27, 53, 45, 243, 251, 40, 23, 182, 22, 27, 62, 196, 51, 167, 150, 135, 84, + 36, 27, 250, 182, 61, 212, 168, 127, 196, 53, 75, 58, 85, 125, 194, 164, 104, 183, 101, 112, 218, 179, 255, 255, + 27, 129, 147, 17, 117, 82, 32, 232, 70, 216, 102, 159, 27, 218, 74, 193, 246, 104, 59, 205, 10, 159, 67, 229, 101, + 131, 73, 36, 34, 127, 160, 238, 121, 140, 56, 232, 27, 196, 118, 202, 41, 10, 20, 35, 104, 27, 248, 105, 90, 244, + 83, 228, 155, 35, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2000, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11863567264896891013" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12822716958994935803" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "07" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15672314762235734747" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa240c1d444a6d" + }, + { + "_tag": "ByteArray", + "bytearray": "3c06d6bbb9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3824338933778614189" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14329671899670114284" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "343496273656045965" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12023881792588075283" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1775856705001586323" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7518f0330b1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7459811413400220314" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6df401d5382624e3056016" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8321081819400795233" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3faae4f98ec9c1343ef0094f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12146162399811853870" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17446446546471893568" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17972412219007432992" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0f1edffd7" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2025590685459953694" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6270842147458290974" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1ba4a3db925121b8859fd8669f1bb1f37122f4452ffb80ff9f9f4107ffd8669f1bd97f3f3da32beadb9f47aa240c1d444a6d453c06d6bbb91b3512c7ff809207ad1bc6dd38abbfbbefecffffffbf1b04c4580a7cf0618d1ba6dd68c8fc7fd1131b18a51c43a99d7e9346f7518f0330b11b678692f4eb1ff29a4b6df401d5382624e30560161b737a6bd3e85874614c3faae4f98ec9c1343ef0094f1ba88fd65978fdde2e1bf21e3ab2e34c3a401bf96ad5b0f6d3f92045c0f1edffd7ffbf1b1c1c57ff132e381e1b570681b571cc951effffff", + "cborBytes": [ + 216, 102, 159, 27, 164, 163, 219, 146, 81, 33, 184, 133, 159, 216, 102, 159, 27, 177, 243, 113, 34, 244, 69, 47, + 251, 128, 255, 159, 159, 65, 7, 255, 216, 102, 159, 27, 217, 127, 63, 61, 163, 43, 234, 219, 159, 71, 170, 36, 12, + 29, 68, 74, 109, 69, 60, 6, 214, 187, 185, 27, 53, 18, 199, 255, 128, 146, 7, 173, 27, 198, 221, 56, 171, 191, + 187, 239, 236, 255, 255, 255, 191, 27, 4, 196, 88, 10, 124, 240, 97, 141, 27, 166, 221, 104, 200, 252, 127, 209, + 19, 27, 24, 165, 28, 67, 169, 157, 126, 147, 70, 247, 81, 143, 3, 48, 177, 27, 103, 134, 146, 244, 235, 31, 242, + 154, 75, 109, 244, 1, 213, 56, 38, 36, 227, 5, 96, 22, 27, 115, 122, 107, 211, 232, 88, 116, 97, 76, 63, 170, 228, + 249, 142, 201, 193, 52, 62, 240, 9, 79, 27, 168, 143, 214, 89, 120, 253, 222, 46, 27, 242, 30, 58, 178, 227, 76, + 58, 64, 27, 249, 106, 213, 176, 246, 211, 249, 32, 69, 192, 241, 237, 255, 215, 255, 191, 27, 28, 28, 87, 255, 19, + 46, 56, 30, 27, 87, 6, 129, 181, 113, 204, 149, 30, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2001, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12979921646685691422" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bb421f1f7931a9e1e9f0ea0ffff", + "cborBytes": [216, 102, 159, 27, 180, 33, 241, 247, 147, 26, 158, 30, 159, 14, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2002, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11136060627594131503" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8117" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5260883215213982278" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f1ad387589d6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9192200079361938168" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7867233813201730945" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13816422479985559334" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72ad45" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b8c25f5449b52194a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11760230160932269856" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3ef834ad602d4b8d23f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3844800037453033688" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16382675682425983439" + } + }, + { + "_tag": "ByteArray", + "bytearray": "556d3a5d702ccc898b" + } + ] + } + ] + }, + "cborHex": "d9050d9f1b9a8b3c23b0f6382fa04281171b490269692fa4f2469f46f1ad387589d6bf1b7f91414512af92f81b6d2e077880d4bd811bbfbdcb0b0242c7264372ad45494b8c25f5449b52194a1ba334bb05e333ef204ab3ef834ad602d4b8d23f1b355b794370cbf0d8ff1be35af4bbe96e51cf49556d3a5d702ccc898bffff", + "cborBytes": [ + 217, 5, 13, 159, 27, 154, 139, 60, 35, 176, 246, 56, 47, 160, 66, 129, 23, 27, 73, 2, 105, 105, 47, 164, 242, 70, + 159, 70, 241, 173, 56, 117, 137, 214, 191, 27, 127, 145, 65, 69, 18, 175, 146, 248, 27, 109, 46, 7, 120, 128, 212, + 189, 129, 27, 191, 189, 203, 11, 2, 66, 199, 38, 67, 114, 173, 69, 73, 75, 140, 37, 245, 68, 155, 82, 25, 74, 27, + 163, 52, 187, 5, 227, 51, 239, 32, 74, 179, 239, 131, 74, 214, 2, 212, 184, 210, 63, 27, 53, 91, 121, 67, 112, + 203, 240, 216, 255, 27, 227, 90, 244, 187, 233, 110, 81, 207, 73, 85, 109, 58, 93, 112, 44, 204, 137, 139, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2003, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13278601240181292272" + }, + "fields": [] + }, + "cborHex": "d8669f1bb847117993113cf080ff", + "cborBytes": [216, 102, 159, 27, 184, 71, 17, 121, 147, 17, 60, 240, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2004, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14529234648192719648" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ea" + } + ] + }, + "cborHex": "d8669f1bc9a235eeefd31b209f41eaffff", + "cborBytes": [216, 102, 159, 27, 201, 162, 53, 238, 239, 211, 27, 32, 159, 65, 234, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2005, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7591903058051233865" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17073640484498816229" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e55" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7661016652077130443" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fb572" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8433286746597092444" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14045603825630401621" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4752806411511403215" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17003772769251776198" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f31a90d352f7" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16979565657922131484" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6993c429" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b695bdb9b905878499fbf1becf1c18f8547bce5428e55ffbf1b6a51660e2568e2cb435fb5721b75090d9d53edec5c41181bc2ec02433a9154551b41f55c3ff45612cf1bebf9893e68b656c646f31a90d352f7ffbf1beba3890118ded61c446993c429ffffff", + "cborBytes": [ + 216, 102, 159, 27, 105, 91, 219, 155, 144, 88, 120, 73, 159, 191, 27, 236, 241, 193, 143, 133, 71, 188, 229, 66, + 142, 85, 255, 191, 27, 106, 81, 102, 14, 37, 104, 226, 203, 67, 95, 181, 114, 27, 117, 9, 13, 157, 83, 237, 236, + 92, 65, 24, 27, 194, 236, 2, 67, 58, 145, 84, 85, 27, 65, 245, 92, 63, 244, 86, 18, 207, 27, 235, 249, 137, 62, + 104, 182, 86, 198, 70, 243, 26, 144, 211, 82, 247, 255, 191, 27, 235, 163, 137, 1, 24, 222, 214, 28, 68, 105, 147, + 196, 41, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2006, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2048848898138658833" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2029975249192260734" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5115946046074708436" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3741289892837975291" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8445765807121131174" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6890644838385656762" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9674806915043601947" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2887684796148726945" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15053097785996097543" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78f318622a5c0780a0" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "860580107222767311" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1345649818362934836" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6352396703642435452" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00219f719e52" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25138f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4650353f352604e0c79075db" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4493196905368734004" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9618865533475204810" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12332659484100879467" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "461415" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65bcf4b5b2be4813" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96280200" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5fe2aab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9467c413791ca75" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9886629518945916363" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d54381c5246b2271b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5305729652076256023" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4719516246fba7f438b00aff" + }, + { + "_tag": "ByteArray", + "bytearray": "4a0220e8047480" + } + ] + }, + "cborHex": "d87d9fbf1b1c6ef937b40158111b1c2bebbbdef0947e1b46ff7dd2ce58e1d41b33ebbb55d85de4fb1b75356341059866a61b5fa07cf8e95b23ba1b8643d1a141aaae1b1b28131e05c1bdbca11bd0e758ae7f8438074978f318622a5c0780a0ffd8669f1b0bf1650c47c7d6cf9f1b12acb561579776341b58283f2540f83f7cbf4600219f719e524325138f4c4650353f352604e0c79075db1b3e5b0ac78a634934ffbf1b857d133d6109aeca1bab266875a5af646bffbf434614154865bcf4b5b2be4813449628020044a5fe2aab48a9467c413791ca751b89345d2a76a995cb49d54381c5246b2271b01b49a1bd01f2431b17ffffff4c4719516246fba7f438b00aff474a0220e8047480ff", + "cborBytes": [ + 216, 125, 159, 191, 27, 28, 110, 249, 55, 180, 1, 88, 17, 27, 28, 43, 235, 187, 222, 240, 148, 126, 27, 70, 255, + 125, 210, 206, 88, 225, 212, 27, 51, 235, 187, 85, 216, 93, 228, 251, 27, 117, 53, 99, 65, 5, 152, 102, 166, 27, + 95, 160, 124, 248, 233, 91, 35, 186, 27, 134, 67, 209, 161, 65, 170, 174, 27, 27, 40, 19, 30, 5, 193, 189, 188, + 161, 27, 208, 231, 88, 174, 127, 132, 56, 7, 73, 120, 243, 24, 98, 42, 92, 7, 128, 160, 255, 216, 102, 159, 27, + 11, 241, 101, 12, 71, 199, 214, 207, 159, 27, 18, 172, 181, 97, 87, 151, 118, 52, 27, 88, 40, 63, 37, 64, 248, 63, + 124, 191, 70, 0, 33, 159, 113, 158, 82, 67, 37, 19, 143, 76, 70, 80, 53, 63, 53, 38, 4, 224, 199, 144, 117, 219, + 27, 62, 91, 10, 199, 138, 99, 73, 52, 255, 191, 27, 133, 125, 19, 61, 97, 9, 174, 202, 27, 171, 38, 104, 117, 165, + 175, 100, 107, 255, 191, 67, 70, 20, 21, 72, 101, 188, 244, 181, 178, 190, 72, 19, 68, 150, 40, 2, 0, 68, 165, + 254, 42, 171, 72, 169, 70, 124, 65, 55, 145, 202, 117, 27, 137, 52, 93, 42, 118, 169, 149, 203, 73, 213, 67, 129, + 197, 36, 107, 34, 113, 176, 27, 73, 161, 189, 1, 242, 67, 27, 23, 255, 255, 255, 76, 71, 25, 81, 98, 70, 251, 167, + 244, 56, 176, 10, 255, 71, 74, 2, 32, 232, 4, 116, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2007, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13192044296235210174" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7305963829112189669" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "25b25fb9b17ada16618072e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cca4833" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "316d48a2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8573589550205134313" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9df23f74" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12392581327001934854" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0eab9da974e8d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee91f9" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b717dfd7b7c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12328766655176041683" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "25465c3de9f77ba682" + } + ] + }, + "cborHex": "d8669f1bb7138e649a5155be9fd8669f1b6563ff64d815b2e59fbf4c25b25fb9b17ada16618072e7442cca483344316d48a21b76fb824565fa65e9449df23f741babfb4b0ee616dc0647a0eab9da974e8d43ee91f9ffbf4221cc41f246b717dfd7b7c71bab1893f3c872e4d3ffffffa04925465c3de9f77ba682ffff", + "cborBytes": [ + 216, 102, 159, 27, 183, 19, 142, 100, 154, 81, 85, 190, 159, 216, 102, 159, 27, 101, 99, 255, 100, 216, 21, 178, + 229, 159, 191, 76, 37, 178, 95, 185, 177, 122, 218, 22, 97, 128, 114, 231, 68, 44, 202, 72, 51, 68, 49, 109, 72, + 162, 27, 118, 251, 130, 69, 101, 250, 101, 233, 68, 157, 242, 63, 116, 27, 171, 251, 75, 14, 230, 22, 220, 6, 71, + 160, 234, 185, 218, 151, 78, 141, 67, 238, 145, 249, 255, 191, 66, 33, 204, 65, 242, 70, 183, 23, 223, 215, 183, + 199, 27, 171, 24, 147, 243, 200, 114, 228, 211, 255, 255, 255, 160, 73, 37, 70, 92, 61, 233, 247, 123, 166, 130, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2008, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4590253624442496631" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5808389797761551531" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4575376235042317618" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3959801713014227050" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3486593315956442670" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ca89e9" + }, + { + "_tag": "ByteArray", + "bytearray": "38ca02e587af" + } + ] + }, + "cborHex": "d8669f1b3fb3db59e9d826779fd8669f1b509b8bbf34948cab9f1b3f7f0071c376253280ffffd8669f1b36f40aad9532406a9f1b3062de25e9d5c62effffa043ca89e94638ca02e587afffff", + "cborBytes": [ + 216, 102, 159, 27, 63, 179, 219, 89, 233, 216, 38, 119, 159, 216, 102, 159, 27, 80, 155, 139, 191, 52, 148, 140, + 171, 159, 27, 63, 127, 0, 113, 195, 118, 37, 50, 128, 255, 255, 216, 102, 159, 27, 54, 244, 10, 173, 149, 50, 64, + 106, 159, 27, 48, 98, 222, 37, 233, 213, 198, 46, 255, 255, 160, 67, 202, 137, 233, 70, 56, 202, 2, 229, 135, 175, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2009, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12132952791124847052" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3541851708276676108" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17224701928412313487" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3d54d2" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "876dbf73eaa17bc3a9f9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "713441713211286379" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5894213220279057631" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8298778298844739278" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15676757803929305622" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14714545928841513034" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11e41af4e9d031ab7553cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10284243605652399629" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f1bd1c64fed36" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7310548973283836454" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18299375283069576152" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fe8012efcf7fa6c1" + }, + { + "_tag": "ByteArray", + "bytearray": "a4d2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15397061458202951863" + } + }, + { + "_tag": "ByteArray", + "bytearray": "617466ab" + }, + { + "_tag": "ByteArray", + "bytearray": "754119b056c9532c40" + } + ] + } + ] + } + ] + }, + "cborHex": "d905039f1ba860e847c794a9cc1b31272f5cf6f1160c4106d8669f1bef0a6f24bd00778f9f9f433d54d2ff4a876dbf73eaa17bc3a9f9d8669f1b09e6a7754be7a36b9f1b51cc73b1e924fcdf1b732b2ee4dc5c76ceffffbf1bd98f0829e50a02161bcc34918fafc4c84a4b11e41af4e9d031ab7553cd1b8eb8f912327e660d472f1bd1c64fed361b6574498ee9ae0226ffd8669f1bfdf470dd9eece3d89f48fe8012efcf7fa6c142a4d21bd5ad59d1b10b80b744617466ab49754119b056c9532c40ffffffffff", + "cborBytes": [ + 217, 5, 3, 159, 27, 168, 96, 232, 71, 199, 148, 169, 204, 27, 49, 39, 47, 92, 246, 241, 22, 12, 65, 6, 216, 102, + 159, 27, 239, 10, 111, 36, 189, 0, 119, 143, 159, 159, 67, 61, 84, 210, 255, 74, 135, 109, 191, 115, 234, 161, + 123, 195, 169, 249, 216, 102, 159, 27, 9, 230, 167, 117, 75, 231, 163, 107, 159, 27, 81, 204, 115, 177, 233, 36, + 252, 223, 27, 115, 43, 46, 228, 220, 92, 118, 206, 255, 255, 191, 27, 217, 143, 8, 41, 229, 10, 2, 22, 27, 204, + 52, 145, 143, 175, 196, 200, 74, 75, 17, 228, 26, 244, 233, 208, 49, 171, 117, 83, 205, 27, 142, 184, 249, 18, 50, + 126, 102, 13, 71, 47, 27, 209, 198, 79, 237, 54, 27, 101, 116, 73, 142, 233, 174, 2, 38, 255, 216, 102, 159, 27, + 253, 244, 112, 221, 158, 236, 227, 216, 159, 72, 254, 128, 18, 239, 207, 127, 166, 193, 66, 164, 210, 27, 213, + 173, 89, 209, 177, 11, 128, 183, 68, 97, 116, 102, 171, 73, 117, 65, 25, 176, 86, 201, 83, 44, 64, 255, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2010, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5209400959637449359" + }, + "fields": [] + }, + "cborHex": "d8669f1b484b82927bc4ea8f80ff", + "cborBytes": [216, 102, 159, 27, 72, 75, 130, 146, 123, 196, 234, 143, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2011, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5305510069833858625" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a74b" + } + ] + } + ] + }, + "cborHex": "d87b9fa0d8669f1b49a0f54c78b47e419f42a74bffffff", + "cborBytes": [ + 216, 123, 159, 160, 216, 102, 159, 27, 73, 160, 245, 76, 120, 180, 126, 65, 159, 66, 167, 75, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2012, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16946455181392223958" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6156578910424872710" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18055457622647842235" + } + }, + { + "_tag": "ByteArray", + "bytearray": "960190" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2883988078130611062" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5596093633918234110" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12068398303671254619" + } + }, + { + "_tag": "ByteArray", + "bytearray": "71fc6e39a84cdee63dff" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "803569123418544661" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a26a8429b4f0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9928268650894508988" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8136905677302959" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15051680921015078434" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7427154884452909066" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15163183403430699146" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17415616759500583634" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e38634e3808c53660b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18138423221535414263" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1161618363784045364" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "829841589555453389" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d87b9fd8669f1beb2de73388f61ed69fd8669f1b55708fe66b8937069f1bfa91df0bbf0b25bb43960190ffff1b2805fbe0856fc3769f1b4da95182bb856dfe1ba77b9050ea407e5b4a71fc6e39a84cdee63dffffbf1b0b26d9dc39d59a1546a26a8429b4f01b89c84bbc5b36c3bc1b001ce878fc776caf1bd0e2500ce9a0ce221b67128e04439f800a1bd26e72f7a995e08a41441bf1b0b32bbe5f32d249e38634e3808c53660b1bfbb89fd1895097f71b101ee5bf51eb2334ff1b0b8430876d4c5dcdffff80ff", + "cborBytes": [ + 216, 123, 159, 216, 102, 159, 27, 235, 45, 231, 51, 136, 246, 30, 214, 159, 216, 102, 159, 27, 85, 112, 143, 230, + 107, 137, 55, 6, 159, 27, 250, 145, 223, 11, 191, 11, 37, 187, 67, 150, 1, 144, 255, 255, 27, 40, 5, 251, 224, + 133, 111, 195, 118, 159, 27, 77, 169, 81, 130, 187, 133, 109, 254, 27, 167, 123, 144, 80, 234, 64, 126, 91, 74, + 113, 252, 110, 57, 168, 76, 222, 230, 61, 255, 255, 191, 27, 11, 38, 217, 220, 57, 213, 154, 21, 70, 162, 106, + 132, 41, 180, 240, 27, 137, 200, 75, 188, 91, 54, 195, 188, 27, 0, 28, 232, 120, 252, 119, 108, 175, 27, 208, 226, + 80, 12, 233, 160, 206, 34, 27, 103, 18, 142, 4, 67, 159, 128, 10, 27, 210, 110, 114, 247, 169, 149, 224, 138, 65, + 68, 27, 241, 176, 179, 43, 190, 95, 50, 210, 73, 227, 134, 52, 227, 128, 140, 83, 102, 11, 27, 251, 184, 159, 209, + 137, 80, 151, 247, 27, 16, 30, 229, 191, 81, 235, 35, 52, 255, 27, 11, 132, 48, 135, 109, 76, 93, 205, 255, 255, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2013, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11796126724000268765" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2e07b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + } + ] + }, + "cborHex": "d8669f1ba3b442c1c58741dd9fd8669f1bfffffffffffffffa80ffd8669f1bfffffffffffffffd9f9f432e07b810ff08ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 163, 180, 66, 193, 197, 135, 65, 221, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 250, 128, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 159, 67, 46, 7, 184, 16, 255, + 8, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2014, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7418853866411455979" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18125039803161891276" + } + }, + { + "_tag": "ByteArray", + "bytearray": "71361d01d2b889cbb8d1db1a" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "774263295963004101" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5106766594150291115" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1157101184112773049" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3179" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6908779921631215141" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8371830441729030062" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6305158673457373637" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f1b66f51048e3fcf5eb1bfb8913ab9f47d1cc4c71361d01d2b889cbb8d1db1aa0bf1b0abebc5d8e7f7cc51b46dee1291b28d6ab1b100ed9657839c7b94231791b5fe0eabc042dfe2542cbef1b742eb76e4f0f77ae1b57806c6847e661c5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 102, 245, 16, 72, 227, 252, 245, 235, 27, 251, + 137, 19, 171, 159, 71, 209, 204, 76, 113, 54, 29, 1, 210, 184, 137, 203, 184, 209, 219, 26, 160, 191, 27, 10, 190, + 188, 93, 142, 127, 124, 197, 27, 70, 222, 225, 41, 27, 40, 214, 171, 27, 16, 14, 217, 101, 120, 57, 199, 185, 66, + 49, 121, 27, 95, 224, 234, 188, 4, 45, 254, 37, 66, 203, 239, 27, 116, 46, 183, 110, 79, 15, 119, 174, 27, 87, + 128, 108, 104, 71, 230, 97, 197, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2015, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01018864" + }, + { + "_tag": "ByteArray", + "bytearray": "f95b" + } + ] + }, + "cborHex": "d9050c9f440101886442f95bff", + "cborBytes": [217, 5, 12, 159, 68, 1, 1, 136, 100, 66, 249, 91, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2016, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3082626213510466233" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4384331874995048429" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2ac7b0356f994ab99fd8669f1b3cd8469c72808fed9f08ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 42, 199, 176, 53, 111, 153, 74, 185, 159, 216, 102, 159, 27, 60, 216, 70, 156, 114, 128, 143, + 237, 159, 8, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2017, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16529957617206696747" + }, + "fields": [] + }, + "cborHex": "d8669f1be56634df95de1b2b80ff", + "cborBytes": [216, 102, 159, 27, 229, 102, 52, 223, 149, 222, 27, 43, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2018, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13448590760076611851" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3dd4dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "338e72547a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "732871f5f7f32dd94b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12806156495427285286" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8d3cdc2a6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "792ac80f3d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2dc78cc3c060a03678c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3493604218005402272" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff81e275a56fcb276f62d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14626954733672906460" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3548103727296117125" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e52ecd7fe876f1b0c8044ce3" + }, + { + "_tag": "ByteArray", + "bytearray": "c7e55fb227443e" + }, + { + "_tag": "ByteArray", + "bytearray": "109d1bf179bb6f04e66a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2843015369337661050" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "94c9c934" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2934687913791183628" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8757628205394158823" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "130542470703996975" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5fc81884" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11290762765651766604" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5932528759905434515" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14713253716874993672" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f9fa01193" + }, + { + "_tag": "ByteArray", + "bytearray": "06fed8f221efb6253455e6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14126505582642412755" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13051539484649721856" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07d80754" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d7a3b5b74df1e13e12305" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "859e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18046319383177219837" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4467272954466224182" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "91d37e2106f4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4154987292218170670" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4967650799326611424" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "531187032175163914" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9230953028740935465" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15368829907959276499" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10923443278887939987" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "860fe0b5d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14853152041724210460" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5180b62e7157d8f9ef492d5b" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bbaa2fe0ae7f7910b9f9fbf433dd4dd45338e72547a49732871f5f7f32dd94b1bb1b89b7b9001312645e8d3cdc2a645792ac80f3d4af2dc78cc3c060a03678c1b307bc686c004b2a04bff81e275a56fcb276f62d61bcafd61d5564abedcffd8669f1b313d658a93b979859f4ce52ecd7fe876f1b0c8044ce347c7e55fb227443e4a109d1bf179bb6f04e66a1b27746b6a5c58e67affff9f4494c9c9341b28ba1b1be427db0c1b79895873f175e4e71b01cfc7af7a69e02f445fc81884ff1b9cb0d8ea11e16d4c9f1b52549379a9f3bb931bcc2ffa4d2487a008458f9fa011934b06fed8f221efb6253455e61bc40b6dfb62f93cd3ffffd8669f1bb5206202e28810009fbf4407d807544b0d7a3b5b74df1e13e1230542859e1bfa7167dd91864efdff9f1b3dfef1155dab4836ff4691d37e2106f4bf1b39a97aed9eed1d2e412c1b44f0a4150e0c47e01b075f27ca9a183a0a1b801aeedf386b6f291bd5490d5fad4fe3d31b9797ddc98a3e6f9345860fe0b5d31bce20ff1629d6ed1c4c5180b62e7157d8f9ef492d5bffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 186, 162, 254, 10, 231, 247, 145, 11, 159, 159, 191, 67, 61, 212, 221, 69, 51, 142, 114, 84, + 122, 73, 115, 40, 113, 245, 247, 243, 45, 217, 75, 27, 177, 184, 155, 123, 144, 1, 49, 38, 69, 232, 211, 205, 194, + 166, 69, 121, 42, 200, 15, 61, 74, 242, 220, 120, 204, 60, 6, 10, 3, 103, 140, 27, 48, 123, 198, 134, 192, 4, 178, + 160, 75, 255, 129, 226, 117, 165, 111, 203, 39, 111, 98, 214, 27, 202, 253, 97, 213, 86, 74, 190, 220, 255, 216, + 102, 159, 27, 49, 61, 101, 138, 147, 185, 121, 133, 159, 76, 229, 46, 205, 127, 232, 118, 241, 176, 200, 4, 76, + 227, 71, 199, 229, 95, 178, 39, 68, 62, 74, 16, 157, 27, 241, 121, 187, 111, 4, 230, 106, 27, 39, 116, 107, 106, + 92, 88, 230, 122, 255, 255, 159, 68, 148, 201, 201, 52, 27, 40, 186, 27, 27, 228, 39, 219, 12, 27, 121, 137, 88, + 115, 241, 117, 228, 231, 27, 1, 207, 199, 175, 122, 105, 224, 47, 68, 95, 200, 24, 132, 255, 27, 156, 176, 216, + 234, 17, 225, 109, 76, 159, 27, 82, 84, 147, 121, 169, 243, 187, 147, 27, 204, 47, 250, 77, 36, 135, 160, 8, 69, + 143, 159, 160, 17, 147, 75, 6, 254, 216, 242, 33, 239, 182, 37, 52, 85, 230, 27, 196, 11, 109, 251, 98, 249, 60, + 211, 255, 255, 216, 102, 159, 27, 181, 32, 98, 2, 226, 136, 16, 0, 159, 191, 68, 7, 216, 7, 84, 75, 13, 122, 59, + 91, 116, 223, 30, 19, 225, 35, 5, 66, 133, 158, 27, 250, 113, 103, 221, 145, 134, 78, 253, 255, 159, 27, 61, 254, + 241, 21, 93, 171, 72, 54, 255, 70, 145, 211, 126, 33, 6, 244, 191, 27, 57, 169, 122, 237, 158, 237, 29, 46, 65, + 44, 27, 68, 240, 164, 21, 14, 12, 71, 224, 27, 7, 95, 39, 202, 154, 24, 58, 10, 27, 128, 26, 238, 223, 56, 107, + 111, 41, 27, 213, 73, 13, 95, 173, 79, 227, 211, 27, 151, 151, 221, 201, 138, 62, 111, 147, 69, 134, 15, 224, 181, + 211, 27, 206, 32, 255, 22, 41, 214, 237, 28, 76, 81, 128, 182, 46, 113, 87, 216, 249, 239, 73, 45, 91, 255, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2019, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3417592173200201110" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acfe0a43" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3856872663338647824" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9093108670280766656" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6810374073823765761" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14733362852593531371" + } + } + } + ] + } + ] + }, + "cborHex": "d905009fbf1b2f6db9f96ec0d59644acfe0a431b35865d40b23701101b7e313628841c14c01b5e834f2321cba501091bfffffffffffffff31bcc776b7427c5f9ebffff", + "cborBytes": [ + 217, 5, 0, 159, 191, 27, 47, 109, 185, 249, 110, 192, 213, 150, 68, 172, 254, 10, 67, 27, 53, 134, 93, 64, 178, + 55, 1, 16, 27, 126, 49, 54, 40, 132, 28, 20, 192, 27, 94, 131, 79, 35, 33, 203, 165, 1, 9, 27, 255, 255, 255, 255, + 255, 255, 255, 243, 27, 204, 119, 107, 116, 39, 197, 249, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2020, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "662094177068775390" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17759572744707715274" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9772113268963973656" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5697793835476336906" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10605460832452681988" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12948377028449112962" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80f5" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "910144511943618538" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f2869b223" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7747708680116937658" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a56e9e5a7ccd4d42" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8306764826907745547" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b09303b256809f7de9f071bf676ad512b0330cad8669f1b879d853e457a9a189fbf1b4f12a14e1efa410a4257fa1b932e2a6fdda92104001bb3b1e04dce899382051bfffffffffffffffb4280f5ff9f1b0ca17b9c88abafea454f2869b223ffbf1b6b8563fed594a3ba48a56e9e5a7ccd4d42ff1b73478e99548b9d0bffffffff", + "cborBytes": [ + 216, 102, 159, 27, 9, 48, 59, 37, 104, 9, 247, 222, 159, 7, 27, 246, 118, 173, 81, 43, 3, 48, 202, 216, 102, 159, + 27, 135, 157, 133, 62, 69, 122, 154, 24, 159, 191, 27, 79, 18, 161, 78, 30, 250, 65, 10, 66, 87, 250, 27, 147, 46, + 42, 111, 221, 169, 33, 4, 0, 27, 179, 177, 224, 77, 206, 137, 147, 130, 5, 27, 255, 255, 255, 255, 255, 255, 255, + 251, 66, 128, 245, 255, 159, 27, 12, 161, 123, 156, 136, 171, 175, 234, 69, 79, 40, 105, 178, 35, 255, 191, 27, + 107, 133, 99, 254, 213, 148, 163, 186, 72, 165, 110, 158, 90, 124, 205, 77, 66, 255, 27, 115, 71, 142, 153, 84, + 139, 157, 11, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2021, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9200621342020263829" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "539938975520765855" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7226308371387666169" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5041198246903175545" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "541214a8d099a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14084161218267162900" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2b7" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b7faf2c5d13fedf959fbf1b077e3fa3344db79f1b6449012d59fe4ef91b45f5ef189cfc597947541214a8d099a71bc374fe01c625a91442d2b7ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 127, 175, 44, 93, 19, 254, 223, 149, 159, 191, 27, 7, 126, 63, 163, 52, 77, 183, 159, 27, 100, + 73, 1, 45, 89, 254, 78, 249, 27, 69, 245, 239, 24, 156, 252, 89, 121, 71, 84, 18, 20, 168, 208, 153, 167, 27, 195, + 116, 254, 1, 198, 37, 169, 20, 66, 210, 183, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2022, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4302227834667033365" + }, + "fields": [] + }, + "cborHex": "d8669f1b3bb4956be420631580ff", + "cborBytes": [216, 102, 159, 27, 59, 180, 149, 107, 228, 32, 99, 21, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2023, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9661474496256805072" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8085003107851415735" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf50" + }, + { + "_tag": "ByteArray", + "bytearray": "01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11788378877445672852" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17215811855228543109" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14963183417824597981" + } + } + ] + } + ] + }, + "cborHex": "d905069fd8669f1b861473dd9be208d09f9f1b7033b37d8b69b0b742bf5041011ba398bc21abde0f941beeead9ab46db2085ffa01bcfa7e80a487357ddffffff", + "cborBytes": [ + 217, 5, 6, 159, 216, 102, 159, 27, 134, 20, 115, 221, 155, 226, 8, 208, 159, 159, 27, 112, 51, 179, 125, 139, 105, + 176, 183, 66, 191, 80, 65, 1, 27, 163, 152, 188, 33, 171, 222, 15, 148, 27, 238, 234, 217, 171, 70, 219, 32, 133, + 255, 160, 27, 207, 167, 232, 10, 72, 115, 87, 221, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2024, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17490526753492651625" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "783172165713861435" + }, + "fields": [] + } + ] + }, + "cborHex": "d87f9f1bf2bad569dc654e69d8669f1b0ade62ef6f591b3b80ffff", + "cborBytes": [ + 216, 127, 159, 27, 242, 186, 213, 105, 220, 101, 78, 105, 216, 102, 159, 27, 10, 222, 98, 239, 111, 89, 27, 59, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2025, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3055267705433424721" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9979826558782462402" + } + }, + { + "_tag": "ByteArray", + "bytearray": "58ff622bcf7748cbd3abd26d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8234457369934715928" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d3787080cf457ae0" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fca4753f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "010505" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e5703c838b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "36f75941da01fb6220a673" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13033575165633533040" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bf4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "684011036429006666" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6ed36f013eea9883caacb3b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "966a2aa7b1c6b98d" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69fd8669f1b2a667dca641503519f9f1b8a7f77613c3cd9c24c58ff622bcf7748cbd3abd26d1b7246ab59950e5c1848d3787080cf457ae0ff09bf44fca4753f0fff43010505ffff9f45e5703c838bbf4b36f75941da01fb6220a6731bb4e08f8eecf09470423bf41b097e1869e0cc374a4cf6ed36f013eea9883caacb3b48966a2aa7b1c6b98dffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 216, 102, 159, 27, 42, 102, 125, 202, 100, 21, 3, + 81, 159, 159, 27, 138, 127, 119, 97, 60, 60, 217, 194, 76, 88, 255, 98, 43, 207, 119, 72, 203, 211, 171, 210, 109, + 27, 114, 70, 171, 89, 149, 14, 92, 24, 72, 211, 120, 112, 128, 207, 69, 122, 224, 255, 9, 191, 68, 252, 164, 117, + 63, 15, 255, 67, 1, 5, 5, 255, 255, 159, 69, 229, 112, 60, 131, 139, 191, 75, 54, 247, 89, 65, 218, 1, 251, 98, + 32, 166, 115, 27, 180, 224, 143, 142, 236, 240, 148, 112, 66, 59, 244, 27, 9, 126, 24, 105, 224, 204, 55, 74, 76, + 246, 237, 54, 240, 19, 238, 169, 136, 60, 170, 203, 59, 72, 150, 106, 42, 167, 177, 198, 185, 141, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2026, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1410764618270482480" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4ed2d110" + }, + { + "_tag": "ByteArray", + "bytearray": "1de6" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c9cc897218122a" + }, + { + "_tag": "ByteArray", + "bytearray": "601f931ec3" + }, + { + "_tag": "ByteArray", + "bytearray": "733bc5a07e55" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15005501316143257966" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11551284103583755361" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12172969412410787467" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7e" + }, + { + "_tag": "ByteArray", + "bytearray": "74" + }, + { + "_tag": "ByteArray", + "bytearray": "045d17118f98" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13013296487331847478" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14286299681148882936" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "789266554126555733" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14816505087382252834" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3a5666ecf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "680d1325" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "752919d32b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7697675232630339515" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12385010495488732380" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2532315691051824555" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7643718781544172201" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8997070142749696508" + } + }, + { + "_tag": "ByteArray", + "bytearray": "141f" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cd2da69a82cf33" + }, + { + "_tag": "ByteArray", + "bytearray": "86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18339072755257611896" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "78d743312c2a309d97e1757c" + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f1b13940af21db3a0309f444ed2d110421de6a0ff9f9f47c9cc897218122a45601f931ec346733bc5a07e551bd03e3ff1c960196e1ba04e67b0ddb9ec61ffd8669f1ba8ef132f7870c68b9f417e417446045d17118f981bb49884353440dd361bc64321de31a7cff8ffff1b0af409bfcfcf5a551bcd9ecce0322fed22bf45a3a5666ecf44680d1325ffff9f45752919d32bd8669f1b6ad3a2d70d40f7bb9f1babe0656d53172cdcffffd8669f1b232497b4484ab5ab9f1b6a13f1bbd0ec0aa91b7cdc03a055de61fc42141fffff9f47cd2da69a82cf3341861bfe8179819f2c9678ff4c78d743312c2a309d97e1757cffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 27, 19, 148, 10, 242, 29, 179, 160, 48, 159, 68, + 78, 210, 209, 16, 66, 29, 230, 160, 255, 159, 159, 71, 201, 204, 137, 114, 24, 18, 42, 69, 96, 31, 147, 30, 195, + 70, 115, 59, 197, 160, 126, 85, 27, 208, 62, 63, 241, 201, 96, 25, 110, 27, 160, 78, 103, 176, 221, 185, 236, 97, + 255, 216, 102, 159, 27, 168, 239, 19, 47, 120, 112, 198, 139, 159, 65, 126, 65, 116, 70, 4, 93, 23, 17, 143, 152, + 27, 180, 152, 132, 53, 52, 64, 221, 54, 27, 198, 67, 33, 222, 49, 167, 207, 248, 255, 255, 27, 10, 244, 9, 191, + 207, 207, 90, 85, 27, 205, 158, 204, 224, 50, 47, 237, 34, 191, 69, 163, 165, 102, 110, 207, 68, 104, 13, 19, 37, + 255, 255, 159, 69, 117, 41, 25, 211, 43, 216, 102, 159, 27, 106, 211, 162, 215, 13, 64, 247, 187, 159, 27, 171, + 224, 101, 109, 83, 23, 44, 220, 255, 255, 216, 102, 159, 27, 35, 36, 151, 180, 72, 74, 181, 171, 159, 27, 106, 19, + 241, 187, 208, 236, 10, 169, 27, 124, 220, 3, 160, 85, 222, 97, 252, 66, 20, 31, 255, 255, 159, 71, 205, 45, 166, + 154, 130, 207, 51, 65, 134, 27, 254, 129, 121, 129, 159, 44, 150, 120, 255, 76, 120, 215, 67, 49, 44, 42, 48, 157, + 151, 225, 117, 124, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2027, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11670778801249108164" + }, + "fields": [] + }, + "cborHex": "d8669f1ba1f6ef7c3c9cc0c480ff", + "cborBytes": [216, 102, 159, 27, 161, 246, 239, 124, 60, 156, 192, 196, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2028, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05fcff" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5494117987356903676" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6633054851588762497" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "185532392664136366" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8350900988187400447" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7905751656000242961" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "09b3d5a3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9526977926951491942" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10676234496836810696" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bf26317f4037a5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10546120531271560233" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12713193525119928858" + } + }, + { + "_tag": "ByteArray", + "bytearray": "13e7a555ef06203e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4563513447210486766" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2191957659670190585" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "be6a21bedb375e" + }, + { + "_tag": "ByteArray", + "bytearray": "bb1287c630053692989074" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2628247041025945495" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3593699660187382591" + } + } + ] + } + ] + }, + "cborHex": "d87f9f4305fcffd8669f1b4c3f07334e7e08fc9fbf1b5c0d583e7ca12b811b029324ba6712faae1b73e45c342b5e58ff1b6db6df3ea259c5114409b3d5a31b84369ff2ceee5966ff80ffffd8669f1b94299ab5b2bab7c89f9f47bf26317f4037a51b925b58bf58e52c291bb06e56275991ca1a4813e7a555ef06203eff1b3f54db4d3cb30beed8669f1b1e6b65e0c35699f99f47be6a21bedb375e4bbb1287c6300536929890741b247968c23e52af97ffff1b31df62ccfae9333fffffff", + "cborBytes": [ + 216, 127, 159, 67, 5, 252, 255, 216, 102, 159, 27, 76, 63, 7, 51, 78, 126, 8, 252, 159, 191, 27, 92, 13, 88, 62, + 124, 161, 43, 129, 27, 2, 147, 36, 186, 103, 18, 250, 174, 27, 115, 228, 92, 52, 43, 94, 88, 255, 27, 109, 182, + 223, 62, 162, 89, 197, 17, 68, 9, 179, 213, 163, 27, 132, 54, 159, 242, 206, 238, 89, 102, 255, 128, 255, 255, + 216, 102, 159, 27, 148, 41, 154, 181, 178, 186, 183, 200, 159, 159, 71, 191, 38, 49, 127, 64, 55, 165, 27, 146, + 91, 88, 191, 88, 229, 44, 41, 27, 176, 110, 86, 39, 89, 145, 202, 26, 72, 19, 231, 165, 85, 239, 6, 32, 62, 255, + 27, 63, 84, 219, 77, 60, 179, 11, 238, 216, 102, 159, 27, 30, 107, 101, 224, 195, 86, 153, 249, 159, 71, 190, 106, + 33, 190, 219, 55, 94, 75, 187, 18, 135, 198, 48, 5, 54, 146, 152, 144, 116, 27, 36, 121, 104, 194, 62, 82, 175, + 151, 255, 255, 27, 49, 223, 98, 204, 250, 233, 51, 63, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2029, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16972456278437191407" + }, + "fields": [] + }, + "cborHex": "d8669f1beb8a470fb218deef80ff", + "cborBytes": [216, 102, 159, 27, 235, 138, 71, 15, 178, 24, 222, 239, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2030, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "982842209779139122" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8540111558355649786" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10209164186610855994" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15497194901911073913" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f301d93feba10d5" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16718220933930929227" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5833672714922842349" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6190" + }, + { + "_tag": "ByteArray", + "bytearray": "0f06" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4af412bf04" + } + ] + }, + "cborHex": "d9050c9fd8669f1b0da3c1c8502542329fbf1b7684923701ff04fa1b8dae3cbcbc94703a1bd71118a7d7677479483f301d93feba10d5ff9f1be8030d5ccb73cc4b1b50f55e6d14dd58ed426190420f06ffffff454af412bf04ff", + "cborBytes": [ + 217, 5, 12, 159, 216, 102, 159, 27, 13, 163, 193, 200, 80, 37, 66, 50, 159, 191, 27, 118, 132, 146, 55, 1, 255, 4, + 250, 27, 141, 174, 60, 188, 188, 148, 112, 58, 27, 215, 17, 24, 167, 215, 103, 116, 121, 72, 63, 48, 29, 147, 254, + 186, 16, 213, 255, 159, 27, 232, 3, 13, 92, 203, 115, 204, 75, 27, 80, 245, 94, 109, 20, 221, 88, 237, 66, 97, + 144, 66, 15, 6, 255, 255, 255, 69, 74, 244, 18, 191, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2031, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "355b530958726344842f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ced2" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + "cborHex": "d9050d9fbf4a355b530958726344842f42ced2ff0fff", + "cborBytes": [217, 5, 13, 159, 191, 74, 53, 91, 83, 9, 88, 114, 99, 68, 132, 47, 66, 206, 210, 255, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2032, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9445778321132936713" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4648288596898543460" + }, + "fields": [] + } + ] + }, + "cborHex": "d87a9f1b831625565236de09d8669f1b408209d9e7a2f76480ffff", + "cborBytes": [ + 216, 122, 159, 27, 131, 22, 37, 86, 82, 54, 222, 9, 216, 102, 159, 27, 64, 130, 9, 217, 231, 162, 247, 100, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2033, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c5ca8315c8f555a794cee68" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6af52eb3678c4fdd4f1084" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17753249402649488234" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d4370" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "caf6210144d6f6268a8a68f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11936574573311133438" + } + } + } + ] + } + ] + }, + "cborHex": "d9050d9fbf4c3c5ca8315c8f555a794cee68416e4b6af52eb3678c4fdd4f10841bf66036455dd6ab6a4189439d43704ccaf6210144d6f6268a8a68f91ba5a73b54ed2b86feffff", + "cborBytes": [ + 217, 5, 13, 159, 191, 76, 60, 92, 168, 49, 92, 143, 85, 90, 121, 76, 238, 104, 65, 110, 75, 106, 245, 46, 179, + 103, 140, 79, 221, 79, 16, 132, 27, 246, 96, 54, 69, 93, 214, 171, 106, 65, 137, 67, 157, 67, 112, 76, 202, 246, + 33, 1, 68, 214, 246, 38, 138, 138, 104, 249, 27, 165, 167, 59, 84, 237, 43, 134, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2034, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "912f371877" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9214ffece72b" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12382078647410859894" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4236af2fb8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5718497755284649630" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4b20bb3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6f5456a1fe6d9ed10" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9493934341666620049" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14576854137880992441" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11405686459737302304" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef62bc9a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16411956509935572879" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5769848253500749075" + } + } + } + ] + } + ] + }, + "cborHex": "d87a9f45912f3718779f469214ffece72bffd8669f1babd5faed3fdf9f769fbf454236af2fb81b4f5c2f69189c369e44c4b20bb349a6f5456a1fe6d9ed10ff80ffffbf1b83c13afb93ebc2911bca4b639b5f145ab91b9e492367bc1fe52044ef62bc9a1be3c2fb7dd3de978f1b50129e6aa5d1f513ffff", + "cborBytes": [ + 216, 122, 159, 69, 145, 47, 55, 24, 119, 159, 70, 146, 20, 255, 236, 231, 43, 255, 216, 102, 159, 27, 171, 213, + 250, 237, 63, 223, 159, 118, 159, 191, 69, 66, 54, 175, 47, 184, 27, 79, 92, 47, 105, 24, 156, 54, 158, 68, 196, + 178, 11, 179, 73, 166, 245, 69, 106, 31, 230, 217, 237, 16, 255, 128, 255, 255, 191, 27, 131, 193, 58, 251, 147, + 235, 194, 145, 27, 202, 75, 99, 155, 95, 20, 90, 185, 27, 158, 73, 35, 103, 188, 31, 229, 32, 68, 239, 98, 188, + 154, 27, 227, 194, 251, 125, 211, 222, 151, 143, 27, 80, 18, 158, 106, 165, 209, 245, 19, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2035, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + }, + "cborHex": "d87c9f00ff", + "cborBytes": [216, 124, 159, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2036, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10242973669816825894" + }, + "fields": [] + }, + "cborHex": "d8669f1b8e265a48791c782680ff", + "cborBytes": [216, 102, 159, 27, 142, 38, 90, 72, 121, 28, 120, 38, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2037, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7602486129324935048" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10220951451996156004" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2e52a206" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9882648840587701654" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f428a550b1f29" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbebc52de2a492b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "559651255043810178" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "253967920058704425" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3273bacb892774b41e3c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9052184572380615195" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "188a9a54" + } + ] + } + ] + }, + "cborHex": "d8799f1b698174dadc3f47889f1b8dd81d3152be7064ff442e52a206bf1b892638c28f27ed96477f428a550b1f2948dbebc52de2a492b81b07c447d9eefce382ff9f9f1b0386467a4b71a2294a3273bacb892774b41e3c1b7d9fd1e87604921bff44188a9a54ffff", + "cborBytes": [ + 216, 121, 159, 27, 105, 129, 116, 218, 220, 63, 71, 136, 159, 27, 141, 216, 29, 49, 82, 190, 112, 100, 255, 68, + 46, 82, 162, 6, 191, 27, 137, 38, 56, 194, 143, 39, 237, 150, 71, 127, 66, 138, 85, 11, 31, 41, 72, 219, 235, 197, + 45, 226, 164, 146, 184, 27, 7, 196, 71, 217, 238, 252, 227, 130, 255, 159, 159, 27, 3, 134, 70, 122, 75, 113, 162, + 41, 74, 50, 115, 186, 203, 137, 39, 116, 180, 30, 60, 27, 125, 159, 209, 232, 118, 4, 146, 27, 255, 68, 24, 138, + 154, 84, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2038, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10997336748814750969" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13633207644718953107" + } + }, + { + "_tag": "ByteArray", + "bytearray": "57bf9ab71f0e238e8c" + }, + { + "_tag": "ByteArray", + "bytearray": "f9d240042a" + }, + { + "_tag": "ByteArray", + "bytearray": "05027600" + }, + { + "_tag": "ByteArray", + "bytearray": "e5ba1016" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14893441336668292983" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3e0e" + }, + { + "_tag": "ByteArray", + "bytearray": "b649d585b47c2017b424" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17145017729102854431" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17520647702844263596" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15863385765564479374" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18311600944298063736" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5214328652146950170" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a87a6cf79" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "55270a3370a0c40b9ba54706" + }, + { + "_tag": "ByteArray", + "bytearray": "eae07b6974753a4f895a3b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12596195612889169542" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9805791966555719090" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9193853059533010229" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15146829305723177779" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b989e6381b473d4f99f9f9f1bbd32e21efc9cf2934957bf9ab71f0e238e8c45f9d240042a440502760044e5ba1016ffd9050b9f1bceb021fca33b8777423e0e4ab649d585b47c2017b424ffd8669f1bedef56c952f3391f9f1bf325d841e2cbccac1bdc26114e5375778e1bfe1fe00a3197f7781b485d04484d5c401a450a87a6cf79ffff9f4c55270a3370a0c40b9ba547064beae07b6974753a4f895a3b1baecead2c2397be861b88152bd71beec5b2ffbf1b7f9720a5829a75351bd2345900911b4b33ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 152, 158, 99, 129, 180, 115, 212, 249, 159, 159, 159, 27, 189, 50, 226, 30, 252, 156, 242, 147, + 73, 87, 191, 154, 183, 31, 14, 35, 142, 140, 69, 249, 210, 64, 4, 42, 68, 5, 2, 118, 0, 68, 229, 186, 16, 22, 255, + 217, 5, 11, 159, 27, 206, 176, 33, 252, 163, 59, 135, 119, 66, 62, 14, 74, 182, 73, 213, 133, 180, 124, 32, 23, + 180, 36, 255, 216, 102, 159, 27, 237, 239, 86, 201, 82, 243, 57, 31, 159, 27, 243, 37, 216, 65, 226, 203, 204, + 172, 27, 220, 38, 17, 78, 83, 117, 119, 142, 27, 254, 31, 224, 10, 49, 151, 247, 120, 27, 72, 93, 4, 72, 77, 92, + 64, 26, 69, 10, 135, 166, 207, 121, 255, 255, 159, 76, 85, 39, 10, 51, 112, 160, 196, 11, 155, 165, 71, 6, 75, + 234, 224, 123, 105, 116, 117, 58, 79, 137, 90, 59, 27, 174, 206, 173, 44, 35, 151, 190, 134, 27, 136, 21, 43, 215, + 27, 238, 197, 178, 255, 191, 27, 127, 151, 32, 165, 130, 154, 117, 53, 27, 210, 52, 89, 0, 145, 27, 75, 51, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2039, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "576313323411409231" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05060278fd01ac935f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "caf900e1d1fcf9ff8204" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "15b027718718c282e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9da2fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9105589d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15010753067410660176" + } + } + } + ] + } + ] + }, + "cborHex": "d87c9fbf031b07ff79ea0943094f4905060278fd01ac935f4acaf900e1d1fcf9ff82044915b027718718c282e5439da2fc449105589d1bd050e8626a1e1b50ffff", + "cborBytes": [ + 216, 124, 159, 191, 3, 27, 7, 255, 121, 234, 9, 67, 9, 79, 73, 5, 6, 2, 120, 253, 1, 172, 147, 95, 74, 202, 249, + 0, 225, 209, 252, 249, 255, 130, 4, 73, 21, 176, 39, 113, 135, 24, 194, 130, 229, 67, 157, 162, 252, 68, 145, 5, + 88, 157, 27, 208, 80, 232, 98, 106, 30, 27, 80, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2040, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6356744862322869623" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9331752863207082775" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13530089025234656873" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6750ea5a55398cb4568a79" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3516447474330608375" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5837b1c5d68b45779f1b81810bc98f314b17d87e9f9f1bbbc488487085de694b6750ea5a55398cb4568a791b30ccee58d2cba2f7ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 88, 55, 177, 197, 214, 139, 69, 119, 159, 27, 129, 129, 11, 201, 143, 49, 75, 23, 216, 126, + 159, 159, 27, 187, 196, 136, 72, 112, 133, 222, 105, 75, 103, 80, 234, 90, 85, 57, 140, 180, 86, 138, 121, 27, 48, + 204, 238, 88, 210, 203, 162, 247, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2041, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9039842912324948152" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "35" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15020419121941828312" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3f74504c6ccf5db524" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10895453011169302392" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5368660352401654639" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6736715760951929162" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8387363247917677729" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abb2feb868ed860d5a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec96818b9ff4cadd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfd1886b5b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9bb14ad431fcf0" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e02dfc2fa2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1439445512311522617" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "604cc96412cc2ff42b109ff8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9407971378443616045" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9640375350875664663" + } + }, + { + "_tag": "ByteArray", + "bytearray": "519d170b6b0191eab5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "726602266103669671" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d3ddd" + }, + { + "_tag": "ByteArray", + "bytearray": "04e4f133" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b7d73f93bce7610b89f9f9f41351bd0733f9c1cd3d2d8493f74504c6ccf5db5241b97346cc97db4d7781b4a815025689fc36fffbf1b5d7d9f4abc50a94a1b7465e66f924cbca149abb2feb868ed860d5a48ec96818b9ff4cadd45bfd1886b5b479bb14ad431fcf0ff45e02dfc2fa2d8669f1b13f9f01122dbc5399f4c604cc96412cc2ff42b109ff81b828fd41f852c7f2d1b85c97e4e0260311749519d170b6b0191eab51b0a1568e94c1a63a7ffffff02439d3ddd4404e4f13380ffff", + "cborBytes": [ + 216, 102, 159, 27, 125, 115, 249, 59, 206, 118, 16, 184, 159, 159, 159, 65, 53, 27, 208, 115, 63, 156, 28, 211, + 210, 216, 73, 63, 116, 80, 76, 108, 207, 93, 181, 36, 27, 151, 52, 108, 201, 125, 180, 215, 120, 27, 74, 129, 80, + 37, 104, 159, 195, 111, 255, 191, 27, 93, 125, 159, 74, 188, 80, 169, 74, 27, 116, 101, 230, 111, 146, 76, 188, + 161, 73, 171, 178, 254, 184, 104, 237, 134, 13, 90, 72, 236, 150, 129, 139, 159, 244, 202, 221, 69, 191, 209, 136, + 107, 91, 71, 155, 177, 74, 212, 49, 252, 240, 255, 69, 224, 45, 252, 47, 162, 216, 102, 159, 27, 19, 249, 240, 17, + 34, 219, 197, 57, 159, 76, 96, 76, 201, 100, 18, 204, 47, 244, 43, 16, 159, 248, 27, 130, 143, 212, 31, 133, 44, + 127, 45, 27, 133, 201, 126, 78, 2, 96, 49, 23, 73, 81, 157, 23, 11, 107, 1, 145, 234, 181, 27, 10, 21, 104, 233, + 76, 26, 99, 167, 255, 255, 255, 2, 67, 157, 61, 221, 68, 4, 228, 241, 51, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2042, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2759789020412773005" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2832110523540430154" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8438326573317996383" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2706031237415677762" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17280653787993195961" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2121879435461898548" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cd3eec2e875ceb3296a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7967598538076021422" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3129139833004da3d9f0a134" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6091180727778820582" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2189579681426373939" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7998042864165269509" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b81dd58ff852d927" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10999258880130173418" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15539526437576319052" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11052693723768762461" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15926026077433861384" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14573354775164557447" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96e92a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17287817706596327126" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2df03859b835cc" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8603503886833982494" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1083" + }, + { + "_tag": "ByteArray", + "bytearray": "559de145fb5a71933a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15875666200572270354" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8770213057519878881" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11357707372632515265" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14498930536345662570" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3277ad83e9" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ece61cc3376e6ea34ec3bd3c" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7928529735295896396" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11684516539824077415" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15776814424057652383" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b264cbd7df8ba028d9fd8669f1b274dad841845dd4a9fbf1b751af54f6d5bbf5f1b258dc112c145af421befd1371037d7c5b91b1d726e1ab6e9b1344a7cd3eec2e875ceb3296a1b6e9298a7fef162aeff9f4c3129139833004da3d9f0a134ffbf1b5488389975f641e61b1e62f31e8ed4fd331b6efec19c08eb300548b81dd58ff852d9271b98a537acc6b849ea1bd7a77cf68987204c1b99630e61d06d305d1bdd049c56750d95081bca3ef4f47f6d18874396e92a1befeaaa9bff61ded6472df03859b835ccffd8669f1b7765c933a66e9c1e9f42108349559de145fb5a71933a1bdc51b24be9c91712ffff9f1b79b60e4f29f702e1ffffffd8669f1b9d9eaeae0098a2c19fbf1bc9368c8111f2746a453277ad83e9ff4cece61cc3376e6ea34ec3bd3ca0d8669f1b6e07cbc97f6f0b4c9f41e61ba227bde2c063fa671bdaf281212937249fffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 38, 76, 189, 125, 248, 186, 2, 141, 159, 216, 102, 159, 27, 39, 77, 173, 132, 24, 69, 221, 74, + 159, 191, 27, 117, 26, 245, 79, 109, 91, 191, 95, 27, 37, 141, 193, 18, 193, 69, 175, 66, 27, 239, 209, 55, 16, + 55, 215, 197, 185, 27, 29, 114, 110, 26, 182, 233, 177, 52, 74, 124, 211, 238, 194, 232, 117, 206, 179, 41, 106, + 27, 110, 146, 152, 167, 254, 241, 98, 174, 255, 159, 76, 49, 41, 19, 152, 51, 0, 77, 163, 217, 240, 161, 52, 255, + 191, 27, 84, 136, 56, 153, 117, 246, 65, 230, 27, 30, 98, 243, 30, 142, 212, 253, 51, 27, 110, 254, 193, 156, 8, + 235, 48, 5, 72, 184, 29, 213, 143, 248, 82, 217, 39, 27, 152, 165, 55, 172, 198, 184, 73, 234, 27, 215, 167, 124, + 246, 137, 135, 32, 76, 27, 153, 99, 14, 97, 208, 109, 48, 93, 27, 221, 4, 156, 86, 117, 13, 149, 8, 27, 202, 62, + 244, 244, 127, 109, 24, 135, 67, 150, 233, 42, 27, 239, 234, 170, 155, 255, 97, 222, 214, 71, 45, 240, 56, 89, + 184, 53, 204, 255, 216, 102, 159, 27, 119, 101, 201, 51, 166, 110, 156, 30, 159, 66, 16, 131, 73, 85, 157, 225, + 69, 251, 90, 113, 147, 58, 27, 220, 81, 178, 75, 233, 201, 23, 18, 255, 255, 159, 27, 121, 182, 14, 79, 41, 247, + 2, 225, 255, 255, 255, 216, 102, 159, 27, 157, 158, 174, 174, 0, 152, 162, 193, 159, 191, 27, 201, 54, 140, 129, + 17, 242, 116, 106, 69, 50, 119, 173, 131, 233, 255, 76, 236, 230, 28, 195, 55, 110, 110, 163, 78, 195, 189, 60, + 160, 216, 102, 159, 27, 110, 7, 203, 201, 127, 111, 11, 76, 159, 65, 230, 27, 162, 39, 189, 226, 192, 99, 250, + 103, 27, 218, 242, 129, 33, 41, 55, 36, 159, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2043, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15497538436211948124" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b6" + } + ] + }, + "cborHex": "d8669f1bd712511927603a5c9f41b6ffff", + "cborBytes": [216, 102, 159, 27, 215, 18, 81, 25, 39, 96, 58, 92, 159, 65, 182, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2044, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8536825243318828504" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "762822188526019386" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3520351508716029777" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10934970863201906064" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6295886690151338084" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "463441005944536892" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf55ed" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1862532329468359073" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6033021275949566018" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5955256457904696676" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12466280786157731215" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3850f09cf0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17743615136753560228" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1552132284168362142" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b7678e554299b3dd89f80d8669f1b0a9616bd25e1233a9f1b30dacd0ba9878751ffffd8669f1b97c0d2106a656d909fd8669f1b575f7b96709490649f1b066e7923b5ac7f3c43bf55edffff1b19d90b4918a471a1bf1b53b998e2db5908421b52a5523237c2ad641bad01205369357d8f453850f09cf01bf63dfbf50970aaa41b158a4816c245589effffffffff", + "cborBytes": [ + 216, 102, 159, 27, 118, 120, 229, 84, 41, 155, 61, 216, 159, 128, 216, 102, 159, 27, 10, 150, 22, 189, 37, 225, + 35, 58, 159, 27, 48, 218, 205, 11, 169, 135, 135, 81, 255, 255, 216, 102, 159, 27, 151, 192, 210, 16, 106, 101, + 109, 144, 159, 216, 102, 159, 27, 87, 95, 123, 150, 112, 148, 144, 100, 159, 27, 6, 110, 121, 35, 181, 172, 127, + 60, 67, 191, 85, 237, 255, 255, 27, 25, 217, 11, 73, 24, 164, 113, 161, 191, 27, 83, 185, 152, 226, 219, 89, 8, + 66, 27, 82, 165, 82, 50, 55, 194, 173, 100, 27, 173, 1, 32, 83, 105, 53, 125, 143, 69, 56, 80, 240, 156, 240, 27, + 246, 61, 251, 245, 9, 112, 170, 164, 27, 21, 138, 72, 22, 194, 69, 88, 158, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2045, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16007940080467486121" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8108208799696614820" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "95d210ee" + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f1bde27a0b08200a5a91b708624f1b69cf5a4d905019f4495d210eeffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 27, 222, 39, 160, 176, 130, 0, 165, 169, 27, 112, + 134, 36, 241, 182, 156, 245, 164, 217, 5, 1, 159, 68, 149, 210, 16, 238, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2046, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "003e80" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1885455030166916990" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17519058091684678634" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "657282461433138853" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9918900834e3f9ae" + }, + { + "_tag": "ByteArray", + "bytearray": "30dd7d97aa7a7ac4" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b1" + }, + { + "_tag": "ByteArray", + "bytearray": "5fe790512a1dd2d5ed6b" + }, + { + "_tag": "ByteArray", + "bytearray": "e10773b033c59a52" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12424622797615661417" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16484072490887661514" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f31c5e74d475635b3ee0ae" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf4803d7ad375cbdc29d1c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4781828159354996398" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2257790325299348581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9885407114973286275" + } + } + } + ] + } + ] + }, + "cborHex": "d87e9f9f43003e80d8669f1b1a2a7b5c41128f7e80ffff9fd8669f1bf3203283b24c4bea9f1b091f22ea8ed10ea5489918900834e3f9ae4830dd7d97aa7a7ac4ffff9f41b14a5fe790512a1dd2d5ed6b48e10773b033c59a521bac6d209b201a01691be4c330981725c7caffff4bf31c5e74d475635b3ee0aebf4bcf4803d7ad375cbdc29d1c1b425c77602f5086aeffbf1b1f554856acc804651b893005655c1a0f83ffff", + "cborBytes": [ + 216, 126, 159, 159, 67, 0, 62, 128, 216, 102, 159, 27, 26, 42, 123, 92, 65, 18, 143, 126, 128, 255, 255, 159, 216, + 102, 159, 27, 243, 32, 50, 131, 178, 76, 75, 234, 159, 27, 9, 31, 34, 234, 142, 209, 14, 165, 72, 153, 24, 144, 8, + 52, 227, 249, 174, 72, 48, 221, 125, 151, 170, 122, 122, 196, 255, 255, 159, 65, 177, 74, 95, 231, 144, 81, 42, + 29, 210, 213, 237, 107, 72, 225, 7, 115, 176, 51, 197, 154, 82, 27, 172, 109, 32, 155, 32, 26, 1, 105, 27, 228, + 195, 48, 152, 23, 37, 199, 202, 255, 255, 75, 243, 28, 94, 116, 212, 117, 99, 91, 62, 224, 174, 191, 75, 207, 72, + 3, 215, 173, 55, 92, 189, 194, 157, 28, 27, 66, 92, 119, 96, 47, 80, 134, 174, 255, 191, 27, 31, 85, 72, 86, 172, + 200, 4, 101, 27, 137, 48, 5, 101, 92, 26, 15, 131, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2047, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4127089823206859370" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "375350180378744568" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7735728536696204757" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7639647458505505819" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4897444598630601329" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "71b344a4ca0f531edcd5b4e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12852114046955323631" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7169675877599577457" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b39465e53f45fe26a9fd8669f1b0535830017da96f89f1b6b5ad41e54a12dd51b6a057ae30d6fbc1bd8669f1b43f737ea288852719f4c71b344a4ca0f531edcd5b4e81bb25be1a1dd9480ef1b637fce395f028571ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 57, 70, 94, 83, 244, 95, 226, 106, 159, 216, 102, 159, 27, 5, 53, 131, 0, 23, 218, 150, 248, + 159, 27, 107, 90, 212, 30, 84, 161, 45, 213, 27, 106, 5, 122, 227, 13, 111, 188, 27, 216, 102, 159, 27, 67, 247, + 55, 234, 40, 136, 82, 113, 159, 76, 113, 179, 68, 164, 202, 15, 83, 30, 220, 213, 180, 232, 27, 178, 91, 225, 161, + 221, 148, 128, 239, 27, 99, 127, 206, 57, 95, 2, 133, 113, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2048, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1845442407037327713" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1869513005493438607" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4425390938467737034" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4364254744226701179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12825827929124167346" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8005530413704233915" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16818272397347156080" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11371362833863448050" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3371210885286592191" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14384154164416200950" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4dc71f811360d9e2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18383420996247559424" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "066b97021de37332" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "374122220048676526" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9054244056728654282" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12829579239052134804" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "392671810027048980" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2306201070568709719" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5592108282332259163" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5662760854254925804" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14172118750319395016" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2501458905423385742" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16612906544683762087" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8649098424541872881" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa28cc51d798bf413548" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b199c541774e6d9619fbf1b19f1d82c6368c88f1b3d6a259c9f9a1dca1b3c90f2912af21f7b1bb1fe7e8c21badeb21b6f195b7f036d43bb1be96681a36ba270701b9dcf323fd48295f21b2ec8f270506ffebf1bc79ec800847bc0f6484dc71f811360d9e21bff1f07ff1dcb1d0048066b97021de37332ffd8669f1b0531262d4c94f6ae9f1b7da722ff8700d1ca1bb20bd258096dc994bf1b05730cee45f8d0141b200145a7a7df9e571b4d9b28dac1ef235b1b4e962afe8dda37ec1bc4ad7aea9370c0c81b22b6f79f05ff948e1be68ce67bc2a341a71b7807c531363582f1ffffffd8669f1bffffffffffffffec9f4aaa28cc51d798bf41354880ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 25, 156, 84, 23, 116, 230, 217, 97, 159, 191, 27, 25, 241, 216, 44, 99, 104, 200, 143, 27, 61, + 106, 37, 156, 159, 154, 29, 202, 27, 60, 144, 242, 145, 42, 242, 31, 123, 27, 177, 254, 126, 140, 33, 186, 222, + 178, 27, 111, 25, 91, 127, 3, 109, 67, 187, 27, 233, 102, 129, 163, 107, 162, 112, 112, 27, 157, 207, 50, 63, 212, + 130, 149, 242, 27, 46, 200, 242, 112, 80, 111, 254, 191, 27, 199, 158, 200, 0, 132, 123, 192, 246, 72, 77, 199, + 31, 129, 19, 96, 217, 226, 27, 255, 31, 7, 255, 29, 203, 29, 0, 72, 6, 107, 151, 2, 29, 227, 115, 50, 255, 216, + 102, 159, 27, 5, 49, 38, 45, 76, 148, 246, 174, 159, 27, 125, 167, 34, 255, 135, 0, 209, 202, 27, 178, 11, 210, + 88, 9, 109, 201, 148, 191, 27, 5, 115, 12, 238, 69, 248, 208, 20, 27, 32, 1, 69, 167, 167, 223, 158, 87, 27, 77, + 155, 40, 218, 193, 239, 35, 91, 27, 78, 150, 42, 254, 141, 218, 55, 236, 27, 196, 173, 122, 234, 147, 112, 192, + 200, 27, 34, 182, 247, 159, 5, 255, 148, 142, 27, 230, 140, 230, 123, 194, 163, 65, 167, 27, 120, 7, 197, 49, 54, + 53, 130, 241, 255, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 74, 170, 40, 204, 81, + 215, 152, 191, 65, 53, 72, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2049, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3907" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16348346363131805993" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8930810734450018796" + } + }, + { + "_tag": "ByteArray", + "bytearray": "002650cdc8cc" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905079f4239079f9f1be2e0fe66678541291b7bf09d0ba72389ec46002650cdc8ccff07ff80ff", + "cborBytes": [ + 217, 5, 7, 159, 66, 57, 7, 159, 159, 27, 226, 224, 254, 102, 103, 133, 65, 41, 27, 123, 240, 157, 11, 167, 35, + 137, 236, 70, 0, 38, 80, 205, 200, 204, 255, 7, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2050, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "503aa1fd" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [] + } + ] + }, + "cborHex": "d87c9f44503aa1fdd9050880ff", + "cborBytes": [216, 124, 159, 68, 80, 58, 161, 253, 217, 5, 8, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2051, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c4dd9609d10475" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16958150087141690220" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ffc477" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6650360508821979211" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3239687000495221382" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6478299771878206041" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3fa43c812928" + } + ] + } + ] + } + ] + }, + "cborHex": "d905099f9f47c4dd9609d10475d8669f1beb5773a7f7d70b6c9f43ffc4771b5c4ad3a5cc9ec04b1b2cf5ae298ff7ea861b59e78b51ab4b6a59463fa43c812928ffffffff", + "cborBytes": [ + 217, 5, 9, 159, 159, 71, 196, 221, 150, 9, 209, 4, 117, 216, 102, 159, 27, 235, 87, 115, 167, 247, 215, 11, 108, + 159, 67, 255, 196, 119, 27, 92, 74, 211, 165, 204, 158, 192, 75, 27, 44, 245, 174, 41, 143, 247, 234, 134, 27, 89, + 231, 139, 81, 171, 75, 106, 89, 70, 63, 164, 60, 129, 41, 40, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2052, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5430935260017543335" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ae013770ed971c0d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2535429863736812688" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4a47b252f5" + }, + { + "_tag": "ByteArray", + "bytearray": "2d72" + }, + { + "_tag": "ByteArray", + "bytearray": "dfde7d" + }, + { + "_tag": "ByteArray", + "bytearray": "3a807f7c602bbada57" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12998925931741378797" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17963806657459028275" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10572110303615471058" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa38" + }, + { + "_tag": "ByteArray", + "bytearray": "def6ab0eb9" + }, + { + "_tag": "ByteArray", + "bytearray": "70e407b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10785178552017608832" + } + }, + { + "_tag": "ByteArray", + "bytearray": "73b72c79d5d3e0a3ec4231" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b4b5e8ed83b7d48a79f48ae013770ed971c0d1b232fa8071cf3249041d49f9f454a47b252f5422d7243dfde7d493a807f7c602bbada57ff809f1bb46576437f0ef8ed1bf94c42fa87a48133ffd8669f1b92b7ae4ec53f4dd29f42aa3845def6ab0eb94470e407b91b95aca6c0302be0804b73b72c79d5d3e0a3ec4231ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 75, 94, 142, 216, 59, 125, 72, 167, 159, 72, 174, 1, 55, 112, 237, 151, 28, 13, 27, 35, 47, + 168, 7, 28, 243, 36, 144, 65, 212, 159, 159, 69, 74, 71, 178, 82, 245, 66, 45, 114, 67, 223, 222, 125, 73, 58, + 128, 127, 124, 96, 43, 186, 218, 87, 255, 128, 159, 27, 180, 101, 118, 67, 127, 14, 248, 237, 27, 249, 76, 66, + 250, 135, 164, 129, 51, 255, 216, 102, 159, 27, 146, 183, 174, 78, 197, 63, 77, 210, 159, 66, 170, 56, 69, 222, + 246, 171, 14, 185, 68, 112, 228, 7, 185, 27, 149, 172, 166, 192, 48, 43, 224, 128, 75, 115, 183, 44, 121, 213, + 211, 224, 163, 236, 66, 49, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2053, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11467462291673830010" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4963de8d6531fdbeb2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf9164572c4ee1e1d9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17658614939996053133" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6f9" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ec2a6f29d2" + }, + { + "_tag": "ByteArray", + "bytearray": "32d8ef2c74bf66a8556aa691" + }, + { + "_tag": "ByteArray", + "bytearray": "c068c734" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4808040811719079365" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3539165631056044775" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18362793137283607350" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13687441683373087375" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6383684606720042281" + } + }, + { + "_tag": "ByteArray", + "bytearray": "90876cf77bfd69faf5da" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "186894604356488131" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7ba8377c08" + } + ] + }, + "cborHex": "d8669f1b9f249c327267d27a9f9fbf494963de8d6531fdbeb249bf9164572c4ee1e1d941991bf51000ba83dede8d42bcad42d6f9ff9f45ec2a6f29d24c32d8ef2c74bf66a8556aa69144c068c7341b42b997a4e818b5c51b311da463e05de2e7ffd8669f1bfed5bf116fc52b369f1bbdf38fb11d53da8f1b58976753ddad65294a90876cf77bfd69faf5daffff1b0297fba7071b0bc3ff457ba8377c08ffff", + "cborBytes": [ + 216, 102, 159, 27, 159, 36, 156, 50, 114, 103, 210, 122, 159, 159, 191, 73, 73, 99, 222, 141, 101, 49, 253, 190, + 178, 73, 191, 145, 100, 87, 44, 78, 225, 225, 217, 65, 153, 27, 245, 16, 0, 186, 131, 222, 222, 141, 66, 188, 173, + 66, 214, 249, 255, 159, 69, 236, 42, 111, 41, 210, 76, 50, 216, 239, 44, 116, 191, 102, 168, 85, 106, 166, 145, + 68, 192, 104, 199, 52, 27, 66, 185, 151, 164, 232, 24, 181, 197, 27, 49, 29, 164, 99, 224, 93, 226, 231, 255, 216, + 102, 159, 27, 254, 213, 191, 17, 111, 197, 43, 54, 159, 27, 189, 243, 143, 177, 29, 83, 218, 143, 27, 88, 151, + 103, 83, 221, 173, 101, 41, 74, 144, 135, 108, 247, 123, 253, 105, 250, 245, 218, 255, 255, 27, 2, 151, 251, 167, + 7, 27, 11, 195, 255, 69, 123, 168, 55, 124, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2054, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11501315999910040913" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3313236403940105354" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2a45f2cbb09e166dbaa351" + }, + { + "_tag": "ByteArray", + "bytearray": "2eaaae7a8074881f70fb92" + }, + { + "_tag": "ByteArray", + "bytearray": "d6295fbf" + }, + { + "_tag": "ByteArray", + "bytearray": "2a9b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15496105618976543955" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3e75f7c2fbf7c800d014e4" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4456782089034610189" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16077260036760211495" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7968285299844923651" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4394930152379499093" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b9f9ce1f7202795519fd8669f1b2dfafaf481be1c8a9f1bfffffffffffffff1d905079f4b2a45f2cbb09e166dbaa3514b2eaaae7a8074881f70fb9244d6295fbf422a9b1bd70d39f5650814d3ff4b3e75f7c2fbf7c800d014e4ffff9f1b3dd9abb26a3b360d1bdf1de6d28cad10279f1b6e9509432e3941031b3cfdedb0313bc255ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 159, 156, 225, 247, 32, 39, 149, 81, 159, 216, 102, 159, 27, 45, 250, 250, 244, 129, 190, 28, + 138, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 217, 5, 7, 159, 75, 42, 69, 242, 203, 176, 158, 22, 109, + 186, 163, 81, 75, 46, 170, 174, 122, 128, 116, 136, 31, 112, 251, 146, 68, 214, 41, 95, 191, 66, 42, 155, 27, 215, + 13, 57, 245, 101, 8, 20, 211, 255, 75, 62, 117, 247, 194, 251, 247, 200, 0, 208, 20, 228, 255, 255, 159, 27, 61, + 217, 171, 178, 106, 59, 54, 13, 27, 223, 29, 230, 210, 140, 173, 16, 39, 159, 27, 110, 149, 9, 67, 46, 57, 65, 3, + 27, 60, 253, 237, 176, 49, 59, 194, 85, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2055, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4806ba348e3c6d" + }, + { + "_tag": "ByteArray", + "bytearray": "499e" + }, + { + "_tag": "ByteArray", + "bytearray": "1e" + }, + { + "_tag": "ByteArray", + "bytearray": "d1e1753e93c00772406e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "559611384634028993" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11521593611896226034" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1673167970619081795" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14652439374502095403" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12900887296818017737" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2166303079200432284" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31da25380ac6aa200a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10774758362503587378" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09d2034a118c3c53336579" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f9f9f474806ba348e3c6d42499e411e4ad1e1753e93c00772406e1b07c42396e16033c1ff9f1b9fe4ec58937c00f21b173849678a4fc4431bcb57ebfaaa24ea2bffd8669f1bb30928a5062ff5c99f1b1e10412c4793a09c4931da25380ac6aa200a1b9587a1a4c1b226324b09d2034a118c3c53336579ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 159, 159, 71, 72, 6, 186, 52, 142, 60, 109, 66, + 73, 158, 65, 30, 74, 209, 225, 117, 62, 147, 192, 7, 114, 64, 110, 27, 7, 196, 35, 150, 225, 96, 51, 193, 255, + 159, 27, 159, 228, 236, 88, 147, 124, 0, 242, 27, 23, 56, 73, 103, 138, 79, 196, 67, 27, 203, 87, 235, 250, 170, + 36, 234, 43, 255, 216, 102, 159, 27, 179, 9, 40, 165, 6, 47, 245, 201, 159, 27, 30, 16, 65, 44, 71, 147, 160, 156, + 73, 49, 218, 37, 56, 10, 198, 170, 32, 10, 27, 149, 135, 161, 164, 193, 178, 38, 50, 75, 9, 210, 3, 74, 17, 140, + 60, 83, 51, 101, 121, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2056, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17956724203277387502" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16558912608123804463" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c5c0125a98" + } + ] + } + ] + }, + "cborHex": "d8669f1bf93319862a0206ee9fd8669f1be5cd1348c1f4db2f9f45c5c0125a98ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 249, 51, 25, 134, 42, 2, 6, 238, 159, 216, 102, 159, 27, 229, 205, 19, 72, 193, 244, 219, 47, + 159, 69, 197, 192, 18, 90, 152, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2057, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13618726600016759325" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04e4f651c8438e1d78" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f87015bc589d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc453796e21e08a0d0194c34" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2983571870657335498" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fffe00c12a39f9fbfe7873" + }, + { + "_tag": "ByteArray", + "bytearray": "befc2602" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "d8669f1bbcff6fb007298a1d9fbf4904e4f651c8438e1d7846f87015bc589d4cdc453796e21e08a0d0194c341b2967c6cf0860d0caffd8669f1bfffffffffffffffa9f9f4bfffe00c12a39f9fbfe787344befc2602ffffff0effff", + "cborBytes": [ + 216, 102, 159, 27, 188, 255, 111, 176, 7, 41, 138, 29, 159, 191, 73, 4, 228, 246, 81, 200, 67, 142, 29, 120, 70, + 248, 112, 21, 188, 88, 157, 76, 220, 69, 55, 150, 226, 30, 8, 160, 208, 25, 76, 52, 27, 41, 103, 198, 207, 8, 96, + 208, 202, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 159, 75, 255, 254, 0, 193, 42, 57, + 249, 251, 254, 120, 115, 68, 190, 252, 38, 2, 255, 255, 255, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2058, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18093465131507093694" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0302" + } + ] + }, + "cborHex": "d8669f1bfb18e6ac7f6590be9f420302ffff", + "cborBytes": [216, 102, 159, 27, 251, 24, 230, 172, 127, 101, 144, 190, 159, 66, 3, 2, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2059, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7835031115895567427" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "238f90" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e843ec1992f1cdbef9" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8570497231022232860" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d28d74" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0bd1e6d60ff7fe12942977" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e3f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b349dce89f58a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9999773943085042807" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8881507718823205899" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b6cbb9f49c31674439f43238f909f9f49e843ec1992f1cdbef9ff80a0bf1b76f085d2bb8c951c43d28d744b0bd1e6d60ff7fe12942977426e3f47b349dce89f58a81b8ac6556b8fca8c7741d31b7b417436ca58dc0bffffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 108, 187, 159, 73, 195, 22, 116, 67, 159, 67, 35, 143, 144, 159, 159, 73, 232, 67, 236, 25, + 146, 241, 205, 190, 249, 255, 128, 160, 191, 27, 118, 240, 133, 210, 187, 140, 149, 28, 67, 210, 141, 116, 75, 11, + 209, 230, 214, 15, 247, 254, 18, 148, 41, 119, 66, 110, 63, 71, 179, 73, 220, 232, 159, 88, 168, 27, 138, 198, 85, + 107, 143, 202, 140, 119, 65, 211, 27, 123, 65, 116, 54, 202, 88, 220, 11, 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2060, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "acc3439fbbb477d85a5550b2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14713146978939177850" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed28015db46370" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2546196675216387506" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b45625ae0b9d30fd634ffe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4809468144984574935" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb51030d" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3731112984431649992" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4965792661405511237" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5182469678963045702" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "383217575035587171" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3520540208701301103" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4905227438479718528" + } + } + ] + }, + "cborHex": "d905009f9f4cacc3439fbbb477d85a5550b2bf1bcc2f993947c80b7a47ed28015db46370ff9f1b2355e862c28dadb24bb45625ae0b9d30fd634ffe1b42bea9cbd45ccbd744cb51030dffffbf1b33c7937db5e564c81b44ea0a1d9b512e451b47ebd4b711d335461b0551765aa7aeca63ff1b30db78aacd1ee16f1b4412de5dc5153880ff", + "cborBytes": [ + 217, 5, 0, 159, 159, 76, 172, 195, 67, 159, 187, 180, 119, 216, 90, 85, 80, 178, 191, 27, 204, 47, 153, 57, 71, + 200, 11, 122, 71, 237, 40, 1, 93, 180, 99, 112, 255, 159, 27, 35, 85, 232, 98, 194, 141, 173, 178, 75, 180, 86, + 37, 174, 11, 157, 48, 253, 99, 79, 254, 27, 66, 190, 169, 203, 212, 92, 203, 215, 68, 203, 81, 3, 13, 255, 255, + 191, 27, 51, 199, 147, 125, 181, 229, 100, 200, 27, 68, 234, 10, 29, 155, 81, 46, 69, 27, 71, 235, 212, 183, 17, + 211, 53, 70, 27, 5, 81, 118, 90, 167, 174, 202, 99, 255, 27, 48, 219, 120, 170, 205, 30, 225, 111, 27, 68, 18, + 222, 93, 197, 21, 56, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2061, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13365452076004472357" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "23cef3d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14087012675307769194" + } + } + ] + }, + "cborHex": "d8669f1bb97b9fd994c0f6259f4423cef3d01bc37f1f645a250d6affff", + "cborBytes": [ + 216, 102, 159, 27, 185, 123, 159, 217, 148, 192, 246, 37, 159, 68, 35, 206, 243, 208, 27, 195, 127, 31, 100, 90, + 37, 13, 106, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2062, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "58fca1f680e1be4997c8fba2" + } + ] + }, + "cborHex": "d8799f4c58fca1f680e1be4997c8fba2ff", + "cborBytes": [216, 121, 159, 76, 88, 252, 161, 246, 128, 225, 190, 73, 151, 200, 251, 162, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2063, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e4fd89014bd14556a8f9313" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11085473257819213243" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5636715170df4be3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17862367716948614273" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9fbf4c0e4fd89014bd14556a8f93131b99d78331d3680dbb485636715170df4be31bf7e3e0ccb8209c81ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 191, 76, 14, 79, 216, 144, 20, 189, 20, 85, 106, + 143, 147, 19, 27, 153, 215, 131, 49, 211, 104, 13, 187, 72, 86, 54, 113, 81, 112, 223, 75, 227, 27, 247, 227, 224, + 204, 184, 32, 156, 129, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2064, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13890527014766653991" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14642823950415673389" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1586841258988337772" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc78315208facd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13535300143424866068" + } + }, + { + "_tag": "ByteArray", + "bytearray": "170095" + }, + { + "_tag": "ByteArray", + "bytearray": "30" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6b7dad76a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86f15be54996d48950" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9861b432d93e7b2ad3c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9eff51642da8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "132323862836552917" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10367174916199707276" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06d4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9104" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14124298867024120325" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4995183632533505865" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9fd8669f1bc0c510b98a2232279fd8669f1bcb35c2cd491bb82d9f1b160597b7b4eefa6c47fc78315208facd1bbbd70bc471220714431700954130ffffbf414f45e6b7dad76a4986f15be54996d489504a9861b432d93e7b2ad3c9469eff51642da81b01d61bda27ae24d5ff1b8fdf9aa89c6c728cffffd8669f1bffffffffffffffec80ffbf0d4206d4144291041bc40396fc5e6cca051bffffffffffffffef1bfffffffffffffff01b4552750c55014749ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 216, 102, 159, 27, 192, 197, 16, 185, 138, 34, 50, + 39, 159, 216, 102, 159, 27, 203, 53, 194, 205, 73, 27, 184, 45, 159, 27, 22, 5, 151, 183, 180, 238, 250, 108, 71, + 252, 120, 49, 82, 8, 250, 205, 27, 187, 215, 11, 196, 113, 34, 7, 20, 67, 23, 0, 149, 65, 48, 255, 255, 191, 65, + 79, 69, 230, 183, 218, 215, 106, 73, 134, 241, 91, 229, 73, 150, 212, 137, 80, 74, 152, 97, 180, 50, 217, 62, 123, + 42, 211, 201, 70, 158, 255, 81, 100, 45, 168, 27, 1, 214, 27, 218, 39, 174, 36, 213, 255, 27, 143, 223, 154, 168, + 156, 108, 114, 140, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 128, 255, 191, 13, 66, 6, + 212, 20, 66, 145, 4, 27, 196, 3, 150, 252, 94, 108, 202, 5, 27, 255, 255, 255, 255, 255, 255, 255, 239, 27, 255, + 255, 255, 255, 255, 255, 255, 240, 27, 69, 82, 117, 12, 85, 1, 71, 73, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2065, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11097995186658984031" + } + } + ] + }, + "cborHex": "d9050b9f1b9a03ffd293cdc05fff", + "cborBytes": [217, 5, 11, 159, 27, 154, 3, 255, 210, 147, 205, 192, 95, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2066, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3799403627431125263" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a7fafb54e332b13bb6bd" + } + ] + }, + "cborHex": "d8669f1b34ba3178135ce10f9f4aa7fafb54e332b13bb6bdffff", + "cborBytes": [ + 216, 102, 159, 27, 52, 186, 49, 120, 19, 92, 225, 15, 159, 74, 167, 250, 251, 84, 227, 50, 177, 59, 182, 189, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2067, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2560027588896569919" + }, + "fields": [] + }, + "cborHex": "d8669f1b23870b874b613a3f80ff", + "cborBytes": [216, 102, 159, 27, 35, 135, 11, 135, 75, 97, 58, 63, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2068, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8280725961951960102" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8180015645915852491" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9438214324684762567" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abcc7e23" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13380452120406722920" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2474050981237361826" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0e07a8a4a41e17d590bf" + }, + { + "_tag": "ByteArray", + "bytearray": "65ea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9759904961507990910" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d62c471a4180647767ef631e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17044821860009676170" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11754491118684813869" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f66bcdbabe4d9196ffd8" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9018759706095053830" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2683645831359666324" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8242282160438006222" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f22df28" + }, + { + "_tag": "ByteArray", + "bytearray": "3b9e93852b7d27e9bbb4e792" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1307478512986643994" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f9fbf1b72eb0c63a4805c261b718540e3eff3aecb1b82fb45ec28d6adc744abcc7e231bb9b0ea4f92f709681b2255984264dc0ca2ff9f4a0e07a8a4a41e17d590bf4265ea1b877225da30419d7eff9f4cd62c471a4180647767ef631e1bec8b5f2ca1b08d8a1ba3205764fcb13a2d4af66bcdbabe4d9196ffd8ffd8669f1b7d29122b5466ec069f1b253e39aa412698941b726277f4977251ce444f22df284c3b9e93852b7d27e9bbb4e7921b122518c7be065e1affffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 159, 191, 27, 114, 235, 12, 99, 164, 128, 92, 38, + 27, 113, 133, 64, 227, 239, 243, 174, 203, 27, 130, 251, 69, 236, 40, 214, 173, 199, 68, 171, 204, 126, 35, 27, + 185, 176, 234, 79, 146, 247, 9, 104, 27, 34, 85, 152, 66, 100, 220, 12, 162, 255, 159, 74, 14, 7, 168, 164, 164, + 30, 23, 213, 144, 191, 66, 101, 234, 27, 135, 114, 37, 218, 48, 65, 157, 126, 255, 159, 76, 214, 44, 71, 26, 65, + 128, 100, 119, 103, 239, 99, 30, 27, 236, 139, 95, 44, 161, 176, 141, 138, 27, 163, 32, 87, 100, 252, 177, 58, 45, + 74, 246, 107, 205, 186, 190, 77, 145, 150, 255, 216, 255, 216, 102, 159, 27, 125, 41, 18, 43, 84, 102, 236, 6, + 159, 27, 37, 62, 57, 170, 65, 38, 152, 148, 27, 114, 98, 119, 244, 151, 114, 81, 206, 68, 79, 34, 223, 40, 76, 59, + 158, 147, 133, 43, 125, 39, 233, 187, 180, 231, 146, 27, 18, 37, 24, 199, 190, 6, 94, 26, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2069, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17994262709767345604" + } + }, + { + "_tag": "ByteArray", + "bytearray": "709af0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14072224914287364613" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7c25e366d56be8" + } + ] + } + ] + }, + "cborHex": "d905089f9f9f1bf9b87698cabd95c443709af01bc34a96006f800a05ff477c25e366d56be8ffff", + "cborBytes": [ + 217, 5, 8, 159, 159, 159, 27, 249, 184, 118, 152, 202, 189, 149, 196, 67, 112, 154, 240, 27, 195, 74, 150, 0, 111, + 128, 10, 5, 255, 71, 124, 37, 227, 102, 213, 107, 232, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2070, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8520325573526057224" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0a73c4c333" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15657546264456991332" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b1e9813900d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34e84b1b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dd03" + } + ] + }, + "cborHex": "d8669f1b763e46f76cb271089f450a73c4c333bf1bd94ac75ecb34126410464b1e9813900d4434e84b1bff42dd03ffff", + "cborBytes": [ + 216, 102, 159, 27, 118, 62, 70, 247, 108, 178, 113, 8, 159, 69, 10, 115, 196, 195, 51, 191, 27, 217, 74, 199, 94, + 203, 52, 18, 100, 16, 70, 75, 30, 152, 19, 144, 13, 68, 52, 232, 75, 27, 255, 66, 221, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2071, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2873796225249088906" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7508012052660650799" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12965642058701023762" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7160196123700970358" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9564299126115203730" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7697176389884286200" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13223760468021936760" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10117033244098959597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11682876591066522571" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "357206027d0edb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5506395754828686153" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14694882199169774100" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "37" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4112a4d5b8645eab94" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8dfea9b3564748f1a8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7297262" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed4e42567218f78a65" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b27e1c670dad4958a9f1b6831d12ec830832f80d8669f1bb3ef36c1e9bd2a129f80a0bf1b635e20702b5343761b84bb3761a1acfa92ffbf1b6ad1dd252c9394f81bb7843c154b4d02781b8c66ec22175618ed1ba221ea5c6d3f23cb47357206027d0edb1b4c6aa5c3cf486349ffffffd8669f1bcbeeb580d9b9b2149f4137bf494112a4d5b8645eab94498dfea9b3564748f1a844a729726249ed4e42567218f78a65ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 39, 225, 198, 112, 218, 212, 149, 138, 159, 27, 104, 49, 209, 46, 200, 48, 131, 47, 128, 216, + 102, 159, 27, 179, 239, 54, 193, 233, 189, 42, 18, 159, 128, 160, 191, 27, 99, 94, 32, 112, 43, 83, 67, 118, 27, + 132, 187, 55, 97, 161, 172, 250, 146, 255, 191, 27, 106, 209, 221, 37, 44, 147, 148, 248, 27, 183, 132, 60, 21, + 75, 77, 2, 120, 27, 140, 102, 236, 34, 23, 86, 24, 237, 27, 162, 33, 234, 92, 109, 63, 35, 203, 71, 53, 114, 6, 2, + 125, 14, 219, 27, 76, 106, 165, 195, 207, 72, 99, 73, 255, 255, 255, 216, 102, 159, 27, 203, 238, 181, 128, 217, + 185, 178, 20, 159, 65, 55, 191, 73, 65, 18, 164, 213, 184, 100, 94, 171, 148, 73, 141, 254, 169, 179, 86, 71, 72, + 241, 168, 68, 167, 41, 114, 98, 73, 237, 78, 66, 86, 114, 24, 247, 138, 101, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2072, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16113674594529383846" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7728034882961347872" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bdf9f45ab792915a69fd8669f1b6b3f7ec7fabd152080ffffff", + "cborBytes": [ + 216, 102, 159, 27, 223, 159, 69, 171, 121, 41, 21, 166, 159, 216, 102, 159, 27, 107, 63, 126, 199, 250, 189, 21, + 32, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2073, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1111876189811391288" + }, + "fields": [] + }, + "cborHex": "d8669f1b0f6e2d80efec3b3880ff", + "cborBytes": [216, 102, 159, 27, 15, 110, 45, 128, 239, 236, 59, 56, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2074, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2011192095737555013" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c7e10681ea061b33" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17924919717981627268" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15586819702881591453" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d50d6e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d248f3aeb8667ef30a436c5" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "78e6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16360310847266013954" + } + } + ] + }, + "cborHex": "d8669f1b1be9308e2982a8459f48c7e10681ea061b33bf1bf8c21b8361b0a3841bd84f81eff051209d43d50d6e4c8d248f3aeb8667ef30a436c5ff804278e61be30b8008f242c302ffff", + "cborBytes": [ + 216, 102, 159, 27, 27, 233, 48, 142, 41, 130, 168, 69, 159, 72, 199, 225, 6, 129, 234, 6, 27, 51, 191, 27, 248, + 194, 27, 131, 97, 176, 163, 132, 27, 216, 79, 129, 239, 240, 81, 32, 157, 67, 213, 13, 110, 76, 141, 36, 143, 58, + 235, 134, 103, 239, 48, 164, 54, 197, 255, 128, 66, 120, 230, 27, 227, 11, 128, 8, 242, 66, 195, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2075, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6492426093894129746" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01f602d8060402" + } + ] + }, + "cborHex": "d8669f1b5a19bb22510958529f4701f602d8060402ffff", + "cborBytes": [216, 102, 159, 27, 90, 25, 187, 34, 81, 9, 88, 82, 159, 71, 1, 246, 2, 216, 6, 4, 2, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2076, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9082629771006483455" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "804cbd0e2538550d1607" + }, + { + "_tag": "ByteArray", + "bytearray": "4186fb88c18ffc" + } + ] + }, + "cborHex": "d8669f1b7e0bfba7a73a9bff9f4a804cbd0e2538550d1607474186fb88c18ffcffff", + "cborBytes": [ + 216, 102, 159, 27, 126, 11, 251, 167, 167, 58, 155, 255, 159, 74, 128, 76, 189, 14, 37, 56, 85, 13, 22, 7, 71, 65, + 134, 251, 136, 193, 143, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2077, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7431473663185599752" + }, + "fields": [] + }, + "cborHex": "d8669f1b6721e5ec4bd93d0880ff", + "cborBytes": [216, 102, 159, 27, 103, 33, 229, 236, 75, 217, 61, 8, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2078, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "526940746185005625" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13980862669376299004" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24ad052485f9abe3946391" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2415647174827011701" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4e1b9e7b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0112e30319459407" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3fdc40da7f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13398013976274582927" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6270084402170909871" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3358950395518704724" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7085858513012134031" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f95c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7553910839188466349" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15440612170190264626" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8727906713323632955" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13260025768904984813" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10080442950133556953" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18189290575221784733" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12143359693467802371" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17298999914986088818" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "109725" + } + ] + }, + "cborHex": "d905039f06bf1b075011d11a095a391bc206008625b19ffc4b24ad052485f9abe39463911b21861a4e8e3d6e7545c4e1b9e7b0480112e3031945940746e3fdc40da7f11bb9ef4eb9c790bd8fff1bffffffffffffffeebf1b5703d08b1f1d54af1b2e9d6396970cdc541b625606c66cc4108f42f95c1b68d4e1e2cacd2aad1bd64812f5fec399321b791fc0e9d066f93b1bb805132ea41b88ed1b8be4ed74654d26d91bfc6d57683c74809d1ba885e14d8cf1db031bf01264c4c6422972ff43109725ff", + "cborBytes": [ + 217, 5, 3, 159, 6, 191, 27, 7, 80, 17, 209, 26, 9, 90, 57, 27, 194, 6, 0, 134, 37, 177, 159, 252, 75, 36, 173, 5, + 36, 133, 249, 171, 227, 148, 99, 145, 27, 33, 134, 26, 78, 142, 61, 110, 117, 69, 196, 225, 185, 231, 176, 72, 1, + 18, 227, 3, 25, 69, 148, 7, 70, 227, 253, 196, 13, 167, 241, 27, 185, 239, 78, 185, 199, 144, 189, 143, 255, 27, + 255, 255, 255, 255, 255, 255, 255, 238, 191, 27, 87, 3, 208, 139, 31, 29, 84, 175, 27, 46, 157, 99, 150, 151, 12, + 220, 84, 27, 98, 86, 6, 198, 108, 196, 16, 143, 66, 249, 92, 27, 104, 212, 225, 226, 202, 205, 42, 173, 27, 214, + 72, 18, 245, 254, 195, 153, 50, 27, 121, 31, 192, 233, 208, 102, 249, 59, 27, 184, 5, 19, 46, 164, 27, 136, 237, + 27, 139, 228, 237, 116, 101, 77, 38, 217, 27, 252, 109, 87, 104, 60, 116, 128, 157, 27, 168, 133, 225, 77, 140, + 241, 219, 3, 27, 240, 18, 100, 196, 198, 66, 41, 114, 255, 67, 16, 151, 37, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2079, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1415404634711290665" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15878765390069111151" + } + } + ] + }, + "cborHex": "d8669f1b13a48704216873299f1bdc5cb4fe32d6196fffff", + "cborBytes": [ + 216, 102, 159, 27, 19, 164, 135, 4, 33, 104, 115, 41, 159, 27, 220, 92, 180, 254, 50, 214, 25, 111, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2080, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18403870768630607812" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0d76cf070147fda80389" + } + ] + }, + "cborHex": "d8669f1bff67aef4c86c2fc49f4a0d76cf070147fda80389ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 103, 174, 244, 200, 108, 47, 196, 159, 74, 13, 118, 207, 7, 1, 71, 253, 168, 3, 137, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2081, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14138488786932095630" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12107185721784784131" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14701960189443015274" + } + } + ] + }, + "cborHex": "d8669f1bc43600a48dee5a8e9f1ba8055d4470a9d5031bcc07dae5e1af826affff", + "cborBytes": [ + 216, 102, 159, 27, 196, 54, 0, 164, 141, 238, 90, 142, 159, 27, 168, 5, 93, 68, 112, 169, 213, 3, 27, 204, 7, 218, + 229, 225, 175, 130, 106, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2082, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + { + "_tag": "ByteArray", + "bytearray": "32604d59e073" + }, + { + "_tag": "ByteArray", + "bytearray": "09" + } + ] + }, + "cborHex": "d9050a9f1bfffffffffffffff74632604d59e0734109ff", + "cborBytes": [ + 217, 5, 10, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 70, 50, 96, 77, 89, 224, 115, 65, 9, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2083, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bba0f20c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + }, + "cborHex": "d905029f44bba0f20c0dff", + "cborBytes": [217, 5, 2, 159, 68, 187, 160, 242, 12, 13, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2084, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17888504595282106306" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5821267051209790678" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c0c7ab80931" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53831837ac2a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7650a7b8db6c10905e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa3ff60a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cb09de5781120f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13137966326433981606" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b648555ed5c1acefa6ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5668a2a1d6fc9b7c4ab08" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14158364200969405402" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15346785354797523159" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b05a" + } + ] + }, + "cborHex": "d8669f1bf840bc26ecbb97c29fd87b9f1b50c94b8a6a0b94d6bf463c0c7ab809314653831837ac2a497650a7b8db6c10905e44aa3ff60a488cb09de5781120f21bb6536ec4162424a64ab648555ed5c1acefa6ec41834be5668a2a1d6fc9b7c4ab081bc47c9d39ff6383daffff1bd4fabbf82cdfa0d742b05affff", + "cborBytes": [ + 216, 102, 159, 27, 248, 64, 188, 38, 236, 187, 151, 194, 159, 216, 123, 159, 27, 80, 201, 75, 138, 106, 11, 148, + 214, 191, 70, 60, 12, 122, 184, 9, 49, 70, 83, 131, 24, 55, 172, 42, 73, 118, 80, 167, 184, 219, 108, 16, 144, 94, + 68, 170, 63, 246, 10, 72, 140, 176, 157, 229, 120, 17, 32, 242, 27, 182, 83, 110, 196, 22, 36, 36, 166, 74, 182, + 72, 85, 94, 213, 193, 172, 239, 166, 236, 65, 131, 75, 229, 102, 138, 42, 29, 111, 201, 183, 196, 171, 8, 27, 196, + 124, 157, 57, 255, 99, 131, 218, 255, 255, 27, 212, 250, 187, 248, 44, 223, 160, 215, 66, 176, 90, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2085, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "606d" + } + ] + }, + "cborHex": "d905069f42606dff", + "cborBytes": [217, 5, 6, 159, 66, 96, 109, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2086, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2667643381939384656" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "364085346134053106" + } + } + ] + }, + "cborHex": "d8669f1b25055f85a7eb31509f1b050d7db17c3ed0f2ffff", + "cborBytes": [ + 216, 102, 159, 27, 37, 5, 95, 133, 167, 235, 49, 80, 159, 27, 5, 13, 125, 177, 124, 62, 208, 242, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2087, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a61c5c81e0dc9c667" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17243429491116414344" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bd7a5b7c4725c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2452962991089956512" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b30f72d060cfdb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11902211465902170418" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1ce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c512d9189ba03faf" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "155302f8fd0049f8a3c4" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7654186b" + } + ] + }, + "cborHex": "d87a9f9fbf493a61c5c81e0dc9c6671bef4cf7c3377d1588477bd7a5b7c4725c1b220aacd81318b6a047b30f72d060cfdb1ba52d264482ae213242c1ce48c512d9189ba03fafff4a155302f8fd0049f8a3c4ff14447654186bff", + "cborBytes": [ + 216, 122, 159, 159, 191, 73, 58, 97, 197, 200, 30, 13, 201, 198, 103, 27, 239, 76, 247, 195, 55, 125, 21, 136, 71, + 123, 215, 165, 183, 196, 114, 92, 27, 34, 10, 172, 216, 19, 24, 182, 160, 71, 179, 15, 114, 208, 96, 207, 219, 27, + 165, 45, 38, 68, 130, 174, 33, 50, 66, 193, 206, 72, 197, 18, 217, 24, 155, 160, 63, 175, 255, 74, 21, 83, 2, 248, + 253, 0, 73, 248, 163, 196, 255, 20, 68, 118, 84, 24, 107, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2088, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6edaaf7f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f572ba0a75b09874e3714" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82b2992aa8a9a4f41b46b3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59cd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c65" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69d195" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2906" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2b45ecbb6a826" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c60" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f43798" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5455313105655093519" + } + } + } + ] + } + ] + }, + "cborHex": "d905059fbf410c446edaaf7f4b1f572ba0a75b09874e37144b82b2992aa8a9a4f41b46b34259cd426c654369d19542290647a2b45ecbb6a826426c6043f437981b4bb52a5db91ad90fffff", + "cborBytes": [ + 217, 5, 5, 159, 191, 65, 12, 68, 110, 218, 175, 127, 75, 31, 87, 43, 160, 167, 91, 9, 135, 78, 55, 20, 75, 130, + 178, 153, 42, 168, 169, 164, 244, 27, 70, 179, 66, 89, 205, 66, 108, 101, 67, 105, 209, 149, 66, 41, 6, 71, 162, + 180, 94, 203, 182, 168, 38, 66, 108, 96, 67, 244, 55, 152, 27, 75, 181, 42, 93, 185, 26, 217, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2089, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4891218725327214845" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12248055709772023612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7987544379903128701" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1392444420160128869" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fe" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7084cd83c2ea49" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d541f8fd65" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb78" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe93" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f1b43e1198411de18fdd8669f1ba9f9d5c66a28073c9f1b6ed9754b2fcb347d1b1352f4d2991e876541feffffbf477084cd83c2ea4945d541f8fd6542fb7842fe93ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 27, 67, 225, 25, 132, 17, 222, 24, 253, 216, 102, + 159, 27, 169, 249, 213, 198, 106, 40, 7, 60, 159, 27, 110, 217, 117, 75, 47, 203, 52, 125, 27, 19, 82, 244, 210, + 153, 30, 135, 101, 65, 254, 255, 255, 191, 71, 112, 132, 205, 131, 194, 234, 73, 69, 213, 65, 248, 253, 101, 66, + 251, 120, 66, 254, 147, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2090, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13809716899382138242" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12288527014915415990" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bbfa5f85a5c6195829f9f1baa899e3670d31fb6ffffff", + "cborBytes": [ + 216, 102, 159, 27, 191, 165, 248, 90, 92, 97, 149, 130, 159, 159, 27, 170, 137, 158, 54, 112, 211, 31, 182, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2091, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18164946305925611944" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "542566983944925286" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9687558299317960843" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14661489671940002559" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15358153367646073652" + } + }, + { + "_tag": "ByteArray", + "bytearray": "be096fd9b0bd2460" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "235e8d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6969229474916191135" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7825120643795929431" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17135597281409538538" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ecf08f938dc078bd0a953d18" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7408606638943988467" + } + }, + { + "_tag": "ByteArray", + "bytearray": "988236a11b45fdc7b8b4" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5985a8eba1b2a7105c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10902509606579906071" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "371d91" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17851870735092783988" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8833a863551c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f95f3958974" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc7dd7b3405bc6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a983" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef94f121152c6079" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1562178265180397222" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11951845187858957286" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21a2df8e10afbec597e1562b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4772644973006603514" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55313da2416cce570e4b32" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "743094315741471096" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8bd6eab9bdb8445" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4642247360703946272" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfc16da6c58bd81a89f9f1b078795cc18e470669f1b86711ef243bc008b1bcb78132d3e0ad2ff1bd5231f1dec83733448be096fd9b0bd2460ff9f43235e8d1b60b7ad486a8fcb9f1b6c9869c42a0849571bedcddef06c9099ea4cecf08f938dc078bd0a953d18ffff9f9f1b66d0a87c52db6af34a988236a11b45fdc7b8b4ff495985a8eba1b2a7105cff1b974d7eb9247aa617bf43371d911bf7be95d9ad659b74468833a863551c465f95f395897447bc7dd7b3405bc642a98348ef94f121152c60791b15adf8dafbe9dea641f61ba5dd7bdff0cb83e6ffbf4c21a2df8e10afbec597e1562b1b423bd750ff1cc4fa4b55313da2416cce570e4b321b0a500057d461e17848f8bd6eab9bdb84451b406c9360fe40de20ffffff", + "cborBytes": [ + 216, 102, 159, 27, 252, 22, 218, 108, 88, 189, 129, 168, 159, 159, 27, 7, 135, 149, 204, 24, 228, 112, 102, 159, + 27, 134, 113, 30, 242, 67, 188, 0, 139, 27, 203, 120, 19, 45, 62, 10, 210, 255, 27, 213, 35, 31, 29, 236, 131, + 115, 52, 72, 190, 9, 111, 217, 176, 189, 36, 96, 255, 159, 67, 35, 94, 141, 27, 96, 183, 173, 72, 106, 143, 203, + 159, 27, 108, 152, 105, 196, 42, 8, 73, 87, 27, 237, 205, 222, 240, 108, 144, 153, 234, 76, 236, 240, 143, 147, + 141, 192, 120, 189, 10, 149, 61, 24, 255, 255, 159, 159, 27, 102, 208, 168, 124, 82, 219, 106, 243, 74, 152, 130, + 54, 161, 27, 69, 253, 199, 184, 180, 255, 73, 89, 133, 168, 235, 161, 178, 167, 16, 92, 255, 27, 151, 77, 126, + 185, 36, 122, 166, 23, 191, 67, 55, 29, 145, 27, 247, 190, 149, 217, 173, 101, 155, 116, 70, 136, 51, 168, 99, 85, + 28, 70, 95, 149, 243, 149, 137, 116, 71, 188, 125, 215, 179, 64, 91, 198, 66, 169, 131, 72, 239, 148, 241, 33, 21, + 44, 96, 121, 27, 21, 173, 248, 218, 251, 233, 222, 166, 65, 246, 27, 165, 221, 123, 223, 240, 203, 131, 230, 255, + 191, 76, 33, 162, 223, 142, 16, 175, 190, 197, 151, 225, 86, 43, 27, 66, 59, 215, 80, 255, 28, 196, 250, 75, 85, + 49, 61, 162, 65, 108, 206, 87, 14, 75, 50, 27, 10, 80, 0, 87, 212, 97, 225, 120, 72, 248, 189, 110, 171, 155, 219, + 132, 69, 27, 64, 108, 147, 96, 254, 64, 222, 32, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2092, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14909979204116383579" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4667245791733063957" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aceb2c330cfc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13612348432230303982" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "668366655536874798" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5172efc2f8" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3639015045610119490" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4243818013870233632" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37af89995ec22404" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7135177147870973477" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0811253b83e1480f4d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16214172255660548481" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1951f328" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2ef5" + }, + { + "_tag": "ByteArray", + "bytearray": "f193468a4b" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f9fd8669f1bceeae316f5d1875b9f1b40c56351c7afa11546aceb2c330cfc1bbce8c6c71deec8ee410bffff1b094683ee9afdc52e455172efc2f8ff9f1b328060e755e4a142ffbf1b3ae511ffb82398204837af89995ec224041b63053dcfec558e25490811253b83e1480f4d1be1044fc299a421814117416a441951f328ff422ef545f193468a4bffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 159, 216, 102, 159, 27, 206, 234, 227, 22, 245, + 209, 135, 91, 159, 27, 64, 197, 99, 81, 199, 175, 161, 21, 70, 172, 235, 44, 51, 12, 252, 27, 188, 232, 198, 199, + 29, 238, 200, 238, 65, 11, 255, 255, 27, 9, 70, 131, 238, 154, 253, 197, 46, 69, 81, 114, 239, 194, 248, 255, 159, + 27, 50, 128, 96, 231, 85, 228, 161, 66, 255, 191, 27, 58, 229, 17, 255, 184, 35, 152, 32, 72, 55, 175, 137, 153, + 94, 194, 36, 4, 27, 99, 5, 61, 207, 236, 85, 142, 37, 73, 8, 17, 37, 59, 131, 225, 72, 15, 77, 27, 225, 4, 79, + 194, 153, 164, 33, 129, 65, 23, 65, 106, 68, 25, 81, 243, 40, 255, 66, 46, 245, 69, 241, 147, 70, 138, 75, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2093, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "beb2d199d7534a31" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c1aaec0971898a767b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02f46305" + } + ] + }, + "cborHex": "d9050a9f48beb2d199d7534a319f49c1aaec0971898a767bff4402f46305ff", + "cborBytes": [ + 217, 5, 10, 159, 72, 190, 178, 209, 153, 215, 83, 74, 49, 159, 73, 193, 170, 236, 9, 113, 137, 138, 118, 123, 255, + 68, 2, 244, 99, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2094, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "42890946727273866" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5856441158462710729" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79fd8669f1b00986116bbc2658a9f1b514642347225a3c9ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 216, 102, 159, 27, 0, 152, 97, 22, 187, 194, 101, + 138, 159, 27, 81, 70, 66, 52, 114, 37, 163, 201, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2095, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ea6f" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f42ea6fffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 66, 234, 111, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2096, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5732920929372639835" + }, + "fields": [] + }, + "cborHex": "d8669f1b4f8f6d3600a8925b80ff", + "cborBytes": [216, 102, 159, 27, 79, 143, 109, 54, 0, 168, 146, 91, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2097, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6690618264014938797" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "106951979076621738" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4372790066278690031" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09dc365d6ffd75" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a2dff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2479217c55" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aef81184e8b8bc16cf27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8368172321274142054" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb43c140d92714c003" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14423797530654374593" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7e680f0d7541801e2a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7013453223299954456" + } + } + ] + }, + "cborHex": "d905099f9f1b5cd9d9dcda59e2ad41e81b017bf84220e315aa1b3caf4565b1e5ecef4709dc365d6ffd75ff80bf431a2dff452479217c554aaef81184e8b8bc16cf271b7421b863c4cd1d6649cb43c140d92714c0031bc82b9f6efecf7ac1ff497e680f0d7541801e2a1b6154ca8c379cb718ff", + "cborBytes": [ + 217, 5, 9, 159, 159, 27, 92, 217, 217, 220, 218, 89, 226, 173, 65, 232, 27, 1, 123, 248, 66, 32, 227, 21, 170, 27, + 60, 175, 69, 101, 177, 229, 236, 239, 71, 9, 220, 54, 93, 111, 253, 117, 255, 128, 191, 67, 26, 45, 255, 69, 36, + 121, 33, 124, 85, 74, 174, 248, 17, 132, 232, 184, 188, 22, 207, 39, 27, 116, 33, 184, 99, 196, 205, 29, 102, 73, + 203, 67, 193, 64, 217, 39, 20, 192, 3, 27, 200, 43, 159, 110, 254, 207, 122, 193, 255, 73, 126, 104, 15, 13, 117, + 65, 128, 30, 42, 27, 97, 84, 202, 140, 55, 156, 183, 24, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2098, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a97867083b74" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6841602303917384784" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13243121281043752703" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21ec33956178" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13419147671517308221" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2778503154045744475" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15585811883247631044" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "143507880501373638" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2761666633501294193" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f610" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "983821562998241506" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13410891601011749600" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15897070580794895468" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "42a6e01da4be9874c9d6dc" + } + ] + } + ] + } + ] + }, + "cborHex": "d905029f46a97867083b74bf1b5ef2410c0b7d64501bb7c904a3da0766ff4621ec339561781bba3a63b5a54ca53dffd8669f1b268f39e5c032f55b9f801bd84bed54a5097ac4d8669f1b01fdd7a82fc0eac69f1b2653692bd5e4be7142f6101b0da73c7fc0e138e2ffff1bba1d0edb6f9332e0d8669f1bdc9dbd778997ac6c9f4b42a6e01da4be9874c9d6dcffffffffff", + "cborBytes": [ + 217, 5, 2, 159, 70, 169, 120, 103, 8, 59, 116, 191, 27, 94, 242, 65, 12, 11, 125, 100, 80, 27, 183, 201, 4, 163, + 218, 7, 102, 255, 70, 33, 236, 51, 149, 97, 120, 27, 186, 58, 99, 181, 165, 76, 165, 61, 255, 216, 102, 159, 27, + 38, 143, 57, 229, 192, 50, 245, 91, 159, 128, 27, 216, 75, 237, 84, 165, 9, 122, 196, 216, 102, 159, 27, 1, 253, + 215, 168, 47, 192, 234, 198, 159, 27, 38, 83, 105, 43, 213, 228, 190, 113, 66, 246, 16, 27, 13, 167, 60, 127, 192, + 225, 56, 226, 255, 255, 27, 186, 29, 14, 219, 111, 147, 50, 224, 216, 102, 159, 27, 220, 157, 189, 119, 137, 151, + 172, 108, 159, 75, 66, 166, 224, 29, 164, 190, 152, 116, 201, 214, 220, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2099, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef1b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2801046894510353840" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4819904659975132095" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7138266146426467831" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14338781782145375876" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2630611347878885647" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2e7b523ac50256b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4422e609d08597f7a06" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ea35dacc" + }, + { + "_tag": "ByteArray", + "bytearray": "94b88f80ae832b0cb3" + }, + { + "_tag": "ByteArray", + "bytearray": "a2" + } + ] + } + ] + } + ] + }, + "cborHex": "d905019f9fbf42ef1b1b26df514f5a802db0ffffd87e9fbf1b42e3bdc0551153bf1b6310373d71f235f71bc6fd960f8c9e1e841b2481cf15546eb90f48d2e7b523ac50256b4aa4422e609d08597f7a06ffd905039f44ea35dacc4994b88f80ae832b0cb341a2ffffff", + "cborBytes": [ + 217, 5, 1, 159, 159, 191, 66, 239, 27, 27, 38, 223, 81, 79, 90, 128, 45, 176, 255, 255, 216, 126, 159, 191, 27, + 66, 227, 189, 192, 85, 17, 83, 191, 27, 99, 16, 55, 61, 113, 242, 53, 247, 27, 198, 253, 150, 15, 140, 158, 30, + 132, 27, 36, 129, 207, 21, 84, 110, 185, 15, 72, 210, 231, 181, 35, 172, 80, 37, 107, 74, 164, 66, 46, 96, 157, 8, + 89, 127, 122, 6, 255, 217, 5, 3, 159, 68, 234, 53, 218, 204, 73, 148, 184, 143, 128, 174, 131, 43, 12, 179, 65, + 162, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2100, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8488642043596823842" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2670173141130372972" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17885746102648033650" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11790290218981852772" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3c823f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14102313997953322950" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10603640547128228075" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9668750729401500024" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b75cdb6f6c208dd229f1280d8669f1bfffffffffffffff29fd8669f1b250e5c531ddd676c9f1bf836ef514f29d172ffff1ba39f867c8d2d0664433c823fd8669f1bc3b57bdd2706cfc69f1b9327b2e5a981b8eb1b862e4d8fa7c68178ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 117, 205, 182, 246, 194, 8, 221, 34, 159, 18, 128, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 242, 159, 216, 102, 159, 27, 37, 14, 92, 83, 29, 221, 103, 108, 159, 27, 248, 54, 239, 81, 79, 41, 209, + 114, 255, 255, 27, 163, 159, 134, 124, 141, 45, 6, 100, 67, 60, 130, 63, 216, 102, 159, 27, 195, 181, 123, 221, + 39, 6, 207, 198, 159, 27, 147, 39, 178, 229, 169, 129, 184, 235, 27, 134, 46, 77, 143, 167, 198, 129, 120, 255, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2101, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15466950787378334280" + }, + "fields": [] + }, + "cborHex": "d8669f1bd6a5a5cb30224a4880ff", + "cborBytes": [216, 102, 159, 27, 214, 165, 165, 203, 48, 34, 74, 72, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2102, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17784360921162307135" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11624898419005593670" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8900699405436473739" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13967636458761870959" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18284779832650534891" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c37bc" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3507719593316671483" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdac8753c07f22f37486" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11305555364764023071" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2edb" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9691547151051541971" + } + } + ] + }, + "cborHex": "d8669f1bf6cebe083f37d63f9f9fd8669f1ba153ef854ed418469f1b7b85a2f38992518b1bc1d7035b044bde6f1bfdc09661815c8feb434c37bcffffbf1b30adec62ab515ffb4abdac8753c07f22f374861b9ce566b47145791f422edbffff1b867f4ac92e604dd3ffff", + "cborBytes": [ + 216, 102, 159, 27, 246, 206, 190, 8, 63, 55, 214, 63, 159, 159, 216, 102, 159, 27, 161, 83, 239, 133, 78, 212, 24, + 70, 159, 27, 123, 133, 162, 243, 137, 146, 81, 139, 27, 193, 215, 3, 91, 4, 75, 222, 111, 27, 253, 192, 150, 97, + 129, 92, 143, 235, 67, 76, 55, 188, 255, 255, 191, 27, 48, 173, 236, 98, 171, 81, 95, 251, 74, 189, 172, 135, 83, + 192, 127, 34, 243, 116, 134, 27, 156, 229, 102, 180, 113, 69, 121, 31, 66, 46, 219, 255, 255, 27, 134, 127, 74, + 201, 46, 96, 77, 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2103, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12950196585017825215" + }, + "fields": [] + }, + "cborHex": "d8669f1bb3b8572e5576d7bf80ff", + "cborBytes": [216, 102, 159, 27, 179, 184, 87, 46, 85, 118, 215, 191, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2104, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "864381698318586247" + }, + "fields": [] + }, + "cborHex": "d8669f1b0bfee6932ea0d18780ff", + "cborBytes": [216, 102, 159, 27, 11, 254, 230, 147, 46, 160, 209, 135, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2105, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13216869145790076634" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ddf64d905111" + } + ] + }, + "cborHex": "d8669f1bb76bc0764da356da9f808046ddf64d905111ffff", + "cborBytes": [ + 216, 102, 159, 27, 183, 107, 192, 118, 77, 163, 86, 218, 159, 128, 128, 70, 221, 246, 77, 144, 81, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2106, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6527801429907990496" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9c2d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1003081365543228763" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10528719690709648536" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11259855093092013111" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5453677084610764150" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14782111771259510285" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7478405701005513955" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a1d676848ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd2161" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15503986072497153243" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a28c55e5f17a" + }, + { + "_tag": "ByteArray", + "bytearray": "83d15854" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13498464118207934642" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8174205030468067115" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13442025129720057462" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18399260253782745357" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12658926594844213510" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2318385594812074576" + } + }, + { + "_tag": "ByteArray", + "bytearray": "45" + }, + { + "_tag": "ByteArray", + "bytearray": "407f766ffe6dbed52f9dcac5" + }, + { + "_tag": "ByteArray", + "bytearray": "17a626aee5185507aa1af3f2" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b5a9768d091f3e7e09f429c2d9fbf1b0deba92ffa04955b1b921d86c67068c4981b9c430a8cc61f54371b4baf5a69e3e99d761bcd249c56440b1e0d1b67c8a25cdeb094e3460a1d676848ad43dd2161ffd8669f1bd729393075cbe4db9f46a28c55e5f17a4483d15854ffffff809f1bbb542d98fb23f0b21b71709c2a9a429f2b9f1bba8baaa2f6d68e76ffd8669f1bff574db7a4af210d9f1bafad8aab0b6f41061b202c8f6a47280a5041454c407f766ffe6dbed52f9dcac54c17a626aee5185507aa1af3f2ffffa0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 90, 151, 104, 208, 145, 243, 231, 224, 159, 66, 156, 45, 159, 191, 27, 13, 235, 169, 47, 250, + 4, 149, 91, 27, 146, 29, 134, 198, 112, 104, 196, 152, 27, 156, 67, 10, 140, 198, 31, 84, 55, 27, 75, 175, 90, + 105, 227, 233, 157, 118, 27, 205, 36, 156, 86, 68, 11, 30, 13, 27, 103, 200, 162, 92, 222, 176, 148, 227, 70, 10, + 29, 103, 104, 72, 173, 67, 221, 33, 97, 255, 216, 102, 159, 27, 215, 41, 57, 48, 117, 203, 228, 219, 159, 70, 162, + 140, 85, 229, 241, 122, 68, 131, 209, 88, 84, 255, 255, 255, 128, 159, 27, 187, 84, 45, 152, 251, 35, 240, 178, + 27, 113, 112, 156, 42, 154, 66, 159, 43, 159, 27, 186, 139, 170, 162, 246, 214, 142, 118, 255, 216, 102, 159, 27, + 255, 87, 77, 183, 164, 175, 33, 13, 159, 27, 175, 173, 138, 171, 11, 111, 65, 6, 27, 32, 44, 143, 106, 71, 40, 10, + 80, 65, 69, 76, 64, 127, 118, 111, 254, 109, 190, 213, 47, 157, 202, 197, 76, 23, 166, 38, 174, 229, 24, 85, 7, + 170, 26, 243, 242, 255, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2107, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4072726349206336868" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10266821383323913055" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "976786842608772271" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8933078976423760094" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4070568588529254345" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8965066cb863d4720088d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13766538199282850525" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3011035071815313451" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7828755379569809434" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16430944821390623751" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6180371120231818730" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4187632916171218100" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17375503679666890935" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0c" + }, + { + "_tag": "ByteArray", + "bytearray": "9868cc050c7fb480" + }, + { + "_tag": "ByteArray", + "bytearray": "0cdfd53a324cc85d8bc8d450" + }, + { + "_tag": "ByteArray", + "bytearray": "3862" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16461342892054553509" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13096678200599746450" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6726296c62847f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1628b67794c437a43de0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6894461659188918793" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0663a4ab1275c2186" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12818629360205592273" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "feebe4f9eb332c0b824233" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17855725710295268530" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2405445933938841708" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8004884407394017129" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9439739977129605668" + } + }, + { + "_tag": "ByteArray", + "bytearray": "726ea7248703c461af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16313785058558662948" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10464450822112762941" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11616667261433241763" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b458c946" + } + ] + }, + "cborHex": "d8669f1b38853b094fd135649fd8669f1b8e7b13a6f5680b5f9fd8669f1b0d8e3e7546f8a4af9f1b7bf8abffe43f90de1b387d909081263fc94b8965066cb863d4720088d61bbf0c918dd3199add1b29c95871d5cb682bffff9f1b6ca5538a08afd81aff1be40671429b0844071b55c516c9f18025eaffffd8669f1b3a1d75f3421e5cb49f1bf12230898c09a8b79f410c489868cc050c7fb4804c0cdfd53a324cc85d8bc8d450423862ffffffd8669f1be4727024f6d023a59f1bb5c0bf6f2c599792bf476726296c62847f4a1628b67794c437a43de041aa1b5fae0c59c1817a0949b0663a4ab1275c21861bb1e4eb7cb27276d14bfeebe4f9eb332c0b8242331bf7cc47ee08f57cb2ffd8669f1b2161dc5512d5186c80ffd8669f1b6f170ff4f2c89f699f1b8300b17eccdd3a2449726ea7248703c461af1be26635139d76d9241b9139329465935c3dffffa0ffff1ba136b15397a360a344b458c946ffff", + "cborBytes": [ + 216, 102, 159, 27, 56, 133, 59, 9, 79, 209, 53, 100, 159, 216, 102, 159, 27, 142, 123, 19, 166, 245, 104, 11, 95, + 159, 216, 102, 159, 27, 13, 142, 62, 117, 70, 248, 164, 175, 159, 27, 123, 248, 171, 255, 228, 63, 144, 222, 27, + 56, 125, 144, 144, 129, 38, 63, 201, 75, 137, 101, 6, 108, 184, 99, 212, 114, 0, 136, 214, 27, 191, 12, 145, 141, + 211, 25, 154, 221, 27, 41, 201, 88, 113, 213, 203, 104, 43, 255, 255, 159, 27, 108, 165, 83, 138, 8, 175, 216, 26, + 255, 27, 228, 6, 113, 66, 155, 8, 68, 7, 27, 85, 197, 22, 201, 241, 128, 37, 234, 255, 255, 216, 102, 159, 27, 58, + 29, 117, 243, 66, 30, 92, 180, 159, 27, 241, 34, 48, 137, 140, 9, 168, 183, 159, 65, 12, 72, 152, 104, 204, 5, 12, + 127, 180, 128, 76, 12, 223, 213, 58, 50, 76, 200, 93, 139, 200, 212, 80, 66, 56, 98, 255, 255, 255, 216, 102, 159, + 27, 228, 114, 112, 36, 246, 208, 35, 165, 159, 27, 181, 192, 191, 111, 44, 89, 151, 146, 191, 71, 103, 38, 41, + 108, 98, 132, 127, 74, 22, 40, 182, 119, 148, 196, 55, 164, 61, 224, 65, 170, 27, 95, 174, 12, 89, 193, 129, 122, + 9, 73, 176, 102, 58, 74, 177, 39, 92, 33, 134, 27, 177, 228, 235, 124, 178, 114, 118, 209, 75, 254, 235, 228, 249, + 235, 51, 44, 11, 130, 66, 51, 27, 247, 204, 71, 238, 8, 245, 124, 178, 255, 216, 102, 159, 27, 33, 97, 220, 85, + 18, 213, 24, 108, 128, 255, 216, 102, 159, 27, 111, 23, 15, 244, 242, 200, 159, 105, 159, 27, 131, 0, 177, 126, + 204, 221, 58, 36, 73, 114, 110, 167, 36, 135, 3, 196, 97, 175, 27, 226, 102, 53, 19, 157, 118, 217, 36, 27, 145, + 57, 50, 148, 101, 147, 92, 61, 255, 255, 160, 255, 255, 27, 161, 54, 177, 83, 151, 163, 96, 163, 68, 180, 88, 201, + 70, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2108, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4257590283717619597" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18088124047383233732" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "21" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7154325763952488022" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3723a45c544c59" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f9c9a82639c6f03fda" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16615267719117930796" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11430075694377089515" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6412724036368685669" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "316870d1e569" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b9d2b7543479a09b7b02e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32e953e2bef23d540678" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bcccebbfd9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0e071b2237a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7eabbe5f9bdd5c14647248" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7d5ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd0c541f2b16e49f8aa7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fac8c0657695311b0c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12377552393249654622" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "436784689806413639" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8103743943999897215" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a689" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8fc1e55825" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13000689469333552600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c0f9e8764c3972952" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "273a2dd42323bee8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7020967255885968739" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afe048ba57b7437e5a62" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5cf7d3a0c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4568489069546460508" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a43eb307dc6ce0e274c7eb6b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02d1fb5635cade49e613" + }, + { + "_tag": "ByteArray", + "bytearray": "2f1f8f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6108472465863369" + } + }, + { + "_tag": "ByteArray", + "bytearray": "591b" + }, + { + "_tag": "ByteArray", + "bytearray": "1f240f50d044a019b74cfc" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "286021030155555913" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "97146208047392766" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7769006149735867499" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5661423735964621887" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74f772" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6205592157482935482" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b3b15ffce2c24af8d9f9fd8669f1bfb05ecfc717a84c49f41211b6349456087d02e56ffff473723a45c544c599f49f9c9a82639c6f03fdaff1be69549f5860a012c1b9e9fc948ef2c39ebffd8669f1b58fe9288f65d5a659fbf46316870d1e5694b8b9d2b7543479a09b7b02e4a32e953e2bef23d54067845bcccebbfd946a0e071b2237a4b7eabbe5f9bdd5c1464724843c7d5ab4acd0c541f2b16e49f8aa749fac8c0657695311b0c1babc5e652946e875eff1b060fc55c773d8f471b7076482e7cd63e7f42a689a0ffff458fc1e558259fbf1bb46bba3116c9bdd8495c0f9e8764c397295248273a2dd42323bee81b616f7c8542bb75634aafe048ba57b7437e5a6245e5cf7d3a0c41d91b3f66889a9692555cff4ca43eb307dc6ce0e274c7eb6b9f4a02d1fb5635cade49e613432f1f8f1b0015b39f9372b2c942591b4b1f240f50d044a019b74cfcffd8669f1b03f8269c8cb694499f1b015921f625f0e7fe1b6bd10dee64d4e46b1b4e916ae47122dc3f4374f7721b561eb13047b864baffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 59, 21, 255, 206, 44, 36, 175, 141, 159, 159, 216, 102, 159, 27, 251, 5, 236, 252, 113, 122, + 132, 196, 159, 65, 33, 27, 99, 73, 69, 96, 135, 208, 46, 86, 255, 255, 71, 55, 35, 164, 92, 84, 76, 89, 159, 73, + 249, 201, 168, 38, 57, 198, 240, 63, 218, 255, 27, 230, 149, 73, 245, 134, 10, 1, 44, 27, 158, 159, 201, 72, 239, + 44, 57, 235, 255, 216, 102, 159, 27, 88, 254, 146, 136, 246, 93, 90, 101, 159, 191, 70, 49, 104, 112, 209, 229, + 105, 75, 139, 157, 43, 117, 67, 71, 154, 9, 183, 176, 46, 74, 50, 233, 83, 226, 190, 242, 61, 84, 6, 120, 69, 188, + 204, 235, 191, 217, 70, 160, 224, 113, 178, 35, 122, 75, 126, 171, 190, 95, 155, 221, 92, 20, 100, 114, 72, 67, + 199, 213, 171, 74, 205, 12, 84, 31, 43, 22, 228, 159, 138, 167, 73, 250, 200, 192, 101, 118, 149, 49, 27, 12, 27, + 171, 197, 230, 82, 148, 110, 135, 94, 255, 27, 6, 15, 197, 92, 119, 61, 143, 71, 27, 112, 118, 72, 46, 124, 214, + 62, 127, 66, 166, 137, 160, 255, 255, 69, 143, 193, 229, 88, 37, 159, 191, 27, 180, 107, 186, 49, 22, 201, 189, + 216, 73, 92, 15, 158, 135, 100, 195, 151, 41, 82, 72, 39, 58, 45, 212, 35, 35, 190, 232, 27, 97, 111, 124, 133, + 66, 187, 117, 99, 74, 175, 224, 72, 186, 87, 183, 67, 126, 90, 98, 69, 229, 207, 125, 58, 12, 65, 217, 27, 63, + 102, 136, 154, 150, 146, 85, 92, 255, 76, 164, 62, 179, 7, 220, 108, 224, 226, 116, 199, 235, 107, 159, 74, 2, + 209, 251, 86, 53, 202, 222, 73, 230, 19, 67, 47, 31, 143, 27, 0, 21, 179, 159, 147, 114, 178, 201, 66, 89, 27, 75, + 31, 36, 15, 80, 208, 68, 160, 25, 183, 76, 252, 255, 216, 102, 159, 27, 3, 248, 38, 156, 140, 182, 148, 73, 159, + 27, 1, 89, 33, 246, 37, 240, 231, 254, 27, 107, 209, 13, 238, 100, 212, 228, 107, 27, 78, 145, 106, 228, 113, 34, + 220, 63, 67, 116, 247, 114, 27, 86, 30, 177, 48, 71, 184, 100, 186, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2109, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10320282974893217519" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "06fbfdd5" + } + ] + }, + "cborHex": "d8669f1b8f3902afbc0596ef9f4406fbfdd5ffff", + "cborBytes": [216, 102, 159, 27, 143, 57, 2, 175, 188, 5, 150, 239, 159, 68, 6, 251, 253, 213, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2110, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9974462386984498423" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f5b8008865" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4809447782999148252" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17613534978413607239" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16636392114316912216" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7135931229442484566" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16136436551563613232" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12808136551148905650" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12412035847629359293" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8d3dc222044" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11444323461830558431" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "61256e1543f070824c" + } + ] + }, + "cborHex": "d8669f1b8a6c68b1a9b4b4f79f809f45f5b8008865d8669f1b42be9746ef7446dc9f1bf46fd8be0b42b947ffff1be6e0567c0df826581b6307eba538892956ff1bdff0238c94941430d8669f1bb1bfa45535ed64b29fd8669f1bac4068d7755cc8bd9f46f8d3dc2220441b9ed2678dcd1442dfffffffff4961256e1543f070824cffff", + "cborBytes": [ + 216, 102, 159, 27, 138, 108, 104, 177, 169, 180, 180, 247, 159, 128, 159, 69, 245, 184, 0, 136, 101, 216, 102, + 159, 27, 66, 190, 151, 70, 239, 116, 70, 220, 159, 27, 244, 111, 216, 190, 11, 66, 185, 71, 255, 255, 27, 230, + 224, 86, 124, 13, 248, 38, 88, 27, 99, 7, 235, 165, 56, 137, 41, 86, 255, 27, 223, 240, 35, 140, 148, 148, 20, 48, + 216, 102, 159, 27, 177, 191, 164, 85, 53, 237, 100, 178, 159, 216, 102, 159, 27, 172, 64, 104, 215, 117, 92, 200, + 189, 159, 70, 248, 211, 220, 34, 32, 68, 27, 158, 210, 103, 141, 205, 20, 66, 223, 255, 255, 255, 255, 73, 97, 37, + 110, 21, 67, 240, 112, 130, 76, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2111, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13192495830245824574" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13825998974960128056" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2544626609668523201" + } + } + } + ] + } + ] + }, + "cborHex": "d9050a9fd8669f1bb715290f8e9fd83e80ffbf1bbfdfd0d07f69d0381b2350546b634c84c1ffff", + "cborBytes": [ + 217, 5, 10, 159, 216, 102, 159, 27, 183, 21, 41, 15, 142, 159, 216, 62, 128, 255, 191, 27, 191, 223, 208, 208, + 127, 105, 208, 56, 27, 35, 80, 84, 107, 99, 76, 132, 193, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2112, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6782982992608035468" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d40557d9303bc569" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2778137991142589241" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11028279293777556807" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6741756258140302777" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e943" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8b31cf04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14367866182568971410" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6898414701064740017" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1419594400692885674" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18285010214342731215" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13338569164513146222" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6373332027598486031" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66f85bec6d71f863424c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb" + } + } + ] + } + ] + }, + "cborHex": "d905039fd8669f1b5e21ff180feb028c9fbf48d40557d9303bc5691b268dedc8a3124339ffd8669f1b990c51965d6835479f1b5d8f8798f0b82db942e943ffffffff448b31cf041bc764ea2b385f0c921b5fbc179f0a4bdcb1bf1b13b369960a6ed8aa1bfdc167e96c49a5cf1bb91c1dfbfec8f56e1b58729fb634a0ba0f4a66f85bec6d71f863424c41bbffff", + "cborBytes": [ + 217, 5, 3, 159, 216, 102, 159, 27, 94, 33, 255, 24, 15, 235, 2, 140, 159, 191, 72, 212, 5, 87, 217, 48, 59, 197, + 105, 27, 38, 141, 237, 200, 163, 18, 67, 57, 255, 216, 102, 159, 27, 153, 12, 81, 150, 93, 104, 53, 71, 159, 27, + 93, 143, 135, 152, 240, 184, 45, 185, 66, 233, 67, 255, 255, 255, 255, 68, 139, 49, 207, 4, 27, 199, 100, 234, 43, + 56, 95, 12, 146, 27, 95, 188, 23, 159, 10, 75, 220, 177, 191, 27, 19, 179, 105, 150, 10, 110, 216, 170, 27, 253, + 193, 103, 233, 108, 73, 165, 207, 27, 185, 28, 29, 251, 254, 200, 245, 110, 27, 88, 114, 159, 182, 52, 160, 186, + 15, 74, 102, 248, 91, 236, 109, 113, 248, 99, 66, 76, 65, 187, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2113, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9184937453015757554" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "40642c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14669819656022535487" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b7f7773f31b2f72f29f9f9f4340642c1bcb95ab40cc442d3fffffffff", + "cborBytes": [ + 216, 102, 159, 27, 127, 119, 115, 243, 27, 47, 114, 242, 159, 159, 159, 67, 64, 100, 44, 27, 203, 149, 171, 64, + 204, 68, 45, 63, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2114, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6427879898554571250" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9226783219785924663" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18137755941217025852" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14397495698683308686" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14101705143427883516" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13689982790331116713" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6386758811306762965" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7573342787709116545" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2408133871769974875" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d64e50c45b759f6c73a2970a" + }, + { + "_tag": "ByteArray", + "bytearray": "ff04063046af59c527ce6e" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10486805622730448507" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6554251424439720719" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2308195584349502291" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e5517" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7133281025495289274" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4408054614498699456" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12949588852905559699" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0136c17e0e859441869" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14903730619849319504" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6714939901207708428" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9137778098176379636" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4328639583037721949" + } + } + ] + }, + "cborHex": "d87e9fbf1b59346ab61c3819f21b800c1e73eae000371bfbb640ee3af8bf3c1bc7ce2e0e873baa8effd8669f1bc3b3521d295161fc80ff9fd8669f1bbdfc96d0aee5aca99f1b58a2534ce60922d51b6919eb23dfab20811b216b68ff5e6f785b4cd64e50c45b759f6c73a2970a4bff04063046af59c527ce6effffa0ffd8669f1b91889e27036ade7b9f801b5af560f1d253db0fbf1b20085ba79546fb53437e55171b62fe814c87ae4dba1b3d2c8e5127b768c01bb3b62e73accb46934ac0136c17e0e8594418691bced4b009103b24501b5d3042434b95030cff1b7ecfe8c42a25caf4ffff1b3c126ac443a88d5dff", + "cborBytes": [ + 216, 126, 159, 191, 27, 89, 52, 106, 182, 28, 56, 25, 242, 27, 128, 12, 30, 115, 234, 224, 0, 55, 27, 251, 182, + 64, 238, 58, 248, 191, 60, 27, 199, 206, 46, 14, 135, 59, 170, 142, 255, 216, 102, 159, 27, 195, 179, 82, 29, 41, + 81, 97, 252, 128, 255, 159, 216, 102, 159, 27, 189, 252, 150, 208, 174, 229, 172, 169, 159, 27, 88, 162, 83, 76, + 230, 9, 34, 213, 27, 105, 25, 235, 35, 223, 171, 32, 129, 27, 33, 107, 104, 255, 94, 111, 120, 91, 76, 214, 78, + 80, 196, 91, 117, 159, 108, 115, 162, 151, 10, 75, 255, 4, 6, 48, 70, 175, 89, 197, 39, 206, 110, 255, 255, 160, + 255, 216, 102, 159, 27, 145, 136, 158, 39, 3, 106, 222, 123, 159, 128, 27, 90, 245, 96, 241, 210, 83, 219, 15, + 191, 27, 32, 8, 91, 167, 149, 70, 251, 83, 67, 126, 85, 23, 27, 98, 254, 129, 76, 135, 174, 77, 186, 27, 61, 44, + 142, 81, 39, 183, 104, 192, 27, 179, 182, 46, 115, 172, 203, 70, 147, 74, 192, 19, 108, 23, 224, 232, 89, 68, 24, + 105, 27, 206, 212, 176, 9, 16, 59, 36, 80, 27, 93, 48, 66, 67, 75, 149, 3, 12, 255, 27, 126, 207, 232, 196, 42, + 37, 202, 244, 255, 255, 27, 60, 18, 106, 196, 67, 168, 141, 93, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2115, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10013600917545186701" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2e1c02fdfb216dddfb" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + "cborHex": "d8669f1b8af774faecce758d9f492e1c02fdfb216dddfb800cffff", + "cborBytes": [ + 216, 102, 159, 27, 138, 247, 116, 250, 236, 206, 117, 141, 159, 73, 46, 28, 2, 253, 251, 33, 109, 221, 251, 128, + 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2116, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae921266afce86dfb4a708" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f08010a133fd9c2185" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "160ffc5170c069c3aca7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "39" + }, + { + "_tag": "ByteArray", + "bytearray": "abffafc1f08c6c07550607" + }, + { + "_tag": "ByteArray", + "bytearray": "fc" + }, + { + "_tag": "ByteArray", + "bytearray": "2c4e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14755011506448801496" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050d9fbf4bae921266afce86dfb4a70849f08010a133fd9c2185ffd905099f4a160ffc5170c069c3aca79f41394babffafc1f08c6c0755060741fc422c4e1bccc454ca2aae9ed8ffbf1bffffffffffffffef131bfffffffffffffff21bffffffffffffffeeffffff", + "cborBytes": [ + 217, 5, 13, 159, 191, 75, 174, 146, 18, 102, 175, 206, 134, 223, 180, 167, 8, 73, 240, 128, 16, 161, 51, 253, 156, + 33, 133, 255, 217, 5, 9, 159, 74, 22, 15, 252, 81, 112, 192, 105, 195, 172, 167, 159, 65, 57, 75, 171, 255, 175, + 193, 240, 140, 108, 7, 85, 6, 7, 65, 252, 66, 44, 78, 27, 204, 196, 84, 202, 42, 174, 158, 216, 255, 191, 27, 255, + 255, 255, 255, 255, 255, 255, 239, 19, 27, 255, 255, 255, 255, 255, 255, 255, 242, 27, 255, 255, 255, 255, 255, + 255, 255, 238, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2117, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16754766823187927129" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + "cborHex": "d8669f1be884e3a7b69dd0599f04ffff", + "cborBytes": [216, 102, 159, 27, 232, 132, 227, 167, 182, 157, 208, 89, 159, 4, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2118, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b1743e9bd76124" + }, + { + "_tag": "ByteArray", + "bytearray": "6da20fd46ec679e0a093c9" + } + ] + }, + "cborHex": "d905029f47b1743e9bd761244b6da20fd46ec679e0a093c9ff", + "cborBytes": [ + 217, 5, 2, 159, 71, 177, 116, 62, 155, 215, 97, 36, 75, 109, 162, 15, 212, 110, 198, 121, 224, 160, 147, 201, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2119, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10509898316078142292" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12103225914225884089" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "943944218640802828" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9762258813474306189" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2583976139726414508" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6a1c53897bb11433" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "35c90e342097e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11657423030753739724" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f2834eda8be52" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79a22a69e4fd0463999d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15673653200752509977" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c26fdc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa46" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12428141668227009426" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4abdd879b04ee471" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5846a3035d6d7237edf2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1021650136304370012" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5955f4a78d58" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adce86125c8c8f5c695624" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72534deb9863f8346b0f8f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da51802c00d534a3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "381c952c2c0b5b46f18c82" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9013be255c3e5f7848" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7831115497693996200" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "587540485262377856" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6374359569133185887" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d87d9fd8669f1b91daa8d5ab5053549fd8669f1ba7f74bd7e5bc7bb99f1b0d199043ffde640c1b877a82ab0e8ff88d1b23dc209bcc7a62acffff486a1c53897bb11433bf4735c90e342097e51ba1c77c7b9888c3cc416a475f2834eda8be524a79a22a69e4fd0463999d1bd984008b2384841943c26fdc42aa46ff1bac79a10008e6cb92484abdd879b04ee471ffffbf4a5846a3035d6d7237edf21b0e2da162d326c15c465955f4a78d5841c64badce86125c8c8f5c6956244b72534deb9863f8346b0f8f48da51802c00d534a34b381c952c2c0b5b46f18c82ff9f499013be255c3e5f7848d8669f1b6cadb60ddb1b64a89f1b08275cf55b3983801b587646415ccbab5fffffa080ffff", + "cborBytes": [ + 216, 125, 159, 216, 102, 159, 27, 145, 218, 168, 213, 171, 80, 83, 84, 159, 216, 102, 159, 27, 167, 247, 75, 215, + 229, 188, 123, 185, 159, 27, 13, 25, 144, 67, 255, 222, 100, 12, 27, 135, 122, 130, 171, 14, 143, 248, 141, 27, + 35, 220, 32, 155, 204, 122, 98, 172, 255, 255, 72, 106, 28, 83, 137, 123, 177, 20, 51, 191, 71, 53, 201, 14, 52, + 32, 151, 229, 27, 161, 199, 124, 123, 152, 136, 195, 204, 65, 106, 71, 95, 40, 52, 237, 168, 190, 82, 74, 121, + 162, 42, 105, 228, 253, 4, 99, 153, 157, 27, 217, 132, 0, 139, 35, 132, 132, 25, 67, 194, 111, 220, 66, 170, 70, + 255, 27, 172, 121, 161, 0, 8, 230, 203, 146, 72, 74, 189, 216, 121, 176, 78, 228, 113, 255, 255, 191, 74, 88, 70, + 163, 3, 93, 109, 114, 55, 237, 242, 27, 14, 45, 161, 98, 211, 38, 193, 92, 70, 89, 85, 244, 167, 141, 88, 65, 198, + 75, 173, 206, 134, 18, 92, 140, 143, 92, 105, 86, 36, 75, 114, 83, 77, 235, 152, 99, 248, 52, 107, 15, 143, 72, + 218, 81, 128, 44, 0, 213, 52, 163, 75, 56, 28, 149, 44, 44, 11, 91, 70, 241, 140, 130, 255, 159, 73, 144, 19, 190, + 37, 92, 62, 95, 120, 72, 216, 102, 159, 27, 108, 173, 182, 13, 219, 27, 100, 168, 159, 27, 8, 39, 92, 245, 91, 57, + 131, 128, 27, 88, 118, 70, 65, 92, 203, 171, 95, 255, 255, 160, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2120, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9392968557413101154" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f801b825a87230b056e62ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 128, 27, 130, 90, 135, 35, 11, 5, 110, 98, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2121, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16540213868790260162" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f4defaf8130b0f" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + ] + } + ] + }, + "cborHex": "d8669f1be58aa4e13e3ba1c29f9f47f4defaf8130b0fff9f1bfffffffffffffffbffffff", + "cborBytes": [ + 216, 102, 159, 27, 229, 138, 164, 225, 62, 59, 161, 194, 159, 159, 71, 244, 222, 250, 248, 19, 11, 15, 255, 159, + 27, 255, 255, 255, 255, 255, 255, 255, 251, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2122, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14999391738110117371" + }, + "fields": [] + }, + "cborHex": "d8669f1bd0288b50ccfb85fb80ff", + "cborBytes": [216, 102, 159, 27, 208, 40, 139, 80, 204, 251, 133, 251, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2123, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2767843550027718817" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11431228502124908587" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "40ac68ed8c1397418219cdfe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16933327805461957622" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6121432747" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31f42a8dfb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c486b1b2d6b61bb3c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15074260574007284672" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb7a93162a56" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "febc67e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3958665496227212417" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c1a148ff" + } + ] + }, + "cborHex": "d8669f1b26695b0b494220a19f1b9ea3e1c1e779d02bbf4c40ac68ed8c1397418219cdfe1beaff43ec25ce0bf64561214327474531f42a8dfb499c486b1b2d6b61bb3c1bd13288200d6153c041bc46eb7a93162a5644febc67e31b36f0014b7f37ec81ff44c1a148ffffff", + "cborBytes": [ + 216, 102, 159, 27, 38, 105, 91, 11, 73, 66, 32, 161, 159, 27, 158, 163, 225, 193, 231, 121, 208, 43, 191, 76, 64, + 172, 104, 237, 140, 19, 151, 65, 130, 25, 205, 254, 27, 234, 255, 67, 236, 37, 206, 11, 246, 69, 97, 33, 67, 39, + 71, 69, 49, 244, 42, 141, 251, 73, 156, 72, 107, 27, 45, 107, 97, 187, 60, 27, 209, 50, 136, 32, 13, 97, 83, 192, + 65, 188, 70, 235, 122, 147, 22, 42, 86, 68, 254, 188, 103, 227, 27, 54, 240, 1, 75, 127, 55, 236, 129, 255, 68, + 193, 161, 72, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2124, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7935205953866770433" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f9060506" + }, + { + "_tag": "ByteArray", + "bytearray": "f9e67c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10998805324203770764" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "818f4a6e67" + }, + { + "_tag": "ByteArray", + "bytearray": "9dd115" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4034582317247447325" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b6e1f83c5c3cb28019fd905019fa044f906050643f9e67cd87a9f4101ffd8669f1b98a39b2b0ed7438c9f45818f4a6e67439dd1151b37fdb73dcc9b411dffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 110, 31, 131, 197, 195, 203, 40, 1, 159, 217, 5, 1, 159, 160, 68, 249, 6, 5, 6, 67, 249, 230, + 124, 216, 122, 159, 65, 1, 255, 216, 102, 159, 27, 152, 163, 155, 43, 14, 215, 67, 140, 159, 69, 129, 143, 74, + 110, 103, 67, 157, 209, 21, 27, 55, 253, 183, 61, 204, 155, 65, 29, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2125, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2877164215823086458" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7589365523684129970" + } + } + ] + }, + "cborHex": "d8669f1b27edbd9c4499b37a9f801b6952d7bbcdc9fcb2ffff", + "cborBytes": [ + 216, 102, 159, 27, 39, 237, 189, 156, 68, 153, 179, 122, 159, 128, 27, 105, 82, 215, 187, 205, 201, 252, 178, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2126, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4532653816022881813" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b5911" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11149300136429401392" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5612e7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10265038333774328879" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d76d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9742358839093135169" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5013944183519382346" + } + } + ] + }, + "cborHex": "d8669f1b3ee738a171dcd6159fbf432b59111b9aba45670e16b5304138435612e74258cf1b8e74bdfa6262f42f435d76d91b8733cfbf36888741ff1b45951bab7e4f0b4affff", + "cborBytes": [ + 216, 102, 159, 27, 62, 231, 56, 161, 113, 220, 214, 21, 159, 191, 67, 43, 89, 17, 27, 154, 186, 69, 103, 14, 22, + 181, 48, 65, 56, 67, 86, 18, 231, 66, 88, 207, 27, 142, 116, 189, 250, 98, 98, 244, 47, 67, 93, 118, 217, 27, 135, + 51, 207, 191, 54, 136, 135, 65, 255, 27, 69, 149, 27, 171, 126, 79, 11, 74, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2127, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12499873442045966111" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1196664991210094168" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6394064595147526481" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "263870468831862919" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11188129828133490510" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1829272185858272926" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "235789203301850843" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d" + } + ] + } + ] + } + ] + }, + "cborHex": "d8799f1bad7878ab1a7d371f1b109b687824393e58d8669f1b58bc47df40ab91519fd8669f1b03a974cb197060879f1b9b4438cd2ad94f4e1b1962e15c7395ae9e1b0345b107f8addedb412dffffffffff", + "cborBytes": [ + 216, 121, 159, 27, 173, 120, 120, 171, 26, 125, 55, 31, 27, 16, 155, 104, 120, 36, 57, 62, 88, 216, 102, 159, 27, + 88, 188, 71, 223, 64, 171, 145, 81, 159, 216, 102, 159, 27, 3, 169, 116, 203, 25, 112, 96, 135, 159, 27, 155, 68, + 56, 205, 42, 217, 79, 78, 27, 25, 98, 225, 92, 115, 149, 174, 158, 27, 3, 69, 177, 7, 248, 173, 222, 219, 65, 45, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2128, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "783d" + }, + { + "_tag": "ByteArray", + "bytearray": "de9ba7" + }, + { + "_tag": "ByteArray", + "bytearray": "8013a2ccb5" + }, + { + "_tag": "ByteArray", + "bytearray": "ee44" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f42783d43de9ba7458013a2ccb542ee44a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 66, 120, 61, 67, 222, 155, 167, 69, 128, 19, 162, + 204, 181, 66, 238, 68, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2129, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16883510704319797867" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3dfeb29a06766573" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44562edcba538ccf461fbf04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d21ab7d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16210610421802593832" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c879d9077c3ecb75045" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13753497516296171907" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9898" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c104" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10626947810874569078" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17253232412405566738" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87a9fd8669f1bfffffffffffffff69f1bea4e47886c7c9a6b11bf483dfeb29a067665734c44562edcba538ccf461fbf04444d21ab7d1be0f7a84a87c9ee284a7c879d9077c3ecb750451bbede3d1f360cf18342989842c104ffbf1b937a80bae1cb31761bef6fcb77b0b08d12ffffffff", + "cborBytes": [ + 216, 122, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 27, 234, 78, 71, 136, 108, 124, + 154, 107, 17, 191, 72, 61, 254, 178, 154, 6, 118, 101, 115, 76, 68, 86, 46, 220, 186, 83, 140, 207, 70, 31, 191, + 4, 68, 77, 33, 171, 125, 27, 224, 247, 168, 74, 135, 201, 238, 40, 74, 124, 135, 157, 144, 119, 195, 236, 183, 80, + 69, 27, 190, 222, 61, 31, 54, 12, 241, 131, 66, 152, 152, 66, 193, 4, 255, 191, 27, 147, 122, 128, 186, 225, 203, + 49, 118, 27, 239, 111, 203, 119, 176, 176, 141, 18, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2130, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6414351065318517732" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6094223902056140327" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12963452040839880851" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1f6308e7" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18181002798810747505" + } + } + ] + }, + "cborHex": "d8669f1b59045a4f28f56be49f1b54930859afc04e27d8669f1bb3e76ef2a512e0939f441f6308e7ffff1bfc4fe5b7eb7f5271ffff", + "cborBytes": [ + 216, 102, 159, 27, 89, 4, 90, 79, 40, 245, 107, 228, 159, 27, 84, 147, 8, 89, 175, 192, 78, 39, 216, 102, 159, 27, + 179, 231, 110, 242, 165, 18, 224, 147, 159, 68, 31, 99, 8, 231, 255, 255, 27, 252, 79, 229, 183, 235, 127, 82, + 113, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2131, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9671164863846550446" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2244623836718505165" + } + }, + { + "_tag": "ByteArray", + "bytearray": "114ac81236fb2e4c0f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12401070881647982494" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5345168805437538690" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4189318987438495994" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3331767686224946676" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9093946404160808680" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f9fd8669f1b8636e13421d00bae9f1b1f26817ca9fb1ccd49114ac81236fb2e4c0fffffbf1bac1974435f11779e1b4a2ddab5689a8182ff80ffd8669f1b3a23736c511218fa9f1b2e3cd10ee39025f41b7e343012a27226e8ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 159, 216, 102, 159, 27, 134, 54, 225, 52, 33, 208, + 11, 174, 159, 27, 31, 38, 129, 124, 169, 251, 28, 205, 73, 17, 74, 200, 18, 54, 251, 46, 76, 15, 255, 255, 191, + 27, 172, 25, 116, 67, 95, 17, 119, 158, 27, 74, 45, 218, 181, 104, 154, 129, 130, 255, 128, 255, 216, 102, 159, + 27, 58, 35, 115, 108, 81, 18, 24, 250, 159, 27, 46, 60, 209, 14, 227, 144, 37, 244, 27, 126, 52, 48, 18, 162, 114, + 38, 232, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2132, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "564337351986430741" + } + } + ] + }, + "cborHex": "d905069f1b07d4edd4e6a2c315ff", + "cborBytes": [217, 5, 6, 159, 27, 7, 212, 237, 212, 230, 162, 195, 21, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2133, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15045264127134818417" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d30768231ced6485e77c91a1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14558550981614949327" + } + }, + { + "_tag": "ByteArray", + "bytearray": "50" + } + ] + }, + "cborHex": "d8669f1bd0cb8402a9cc60719f9f4cd30768231ced6485e77c91a1ff1bca0a5cfbb792d3cf4150ffff", + "cborBytes": [ + 216, 102, 159, 27, 208, 203, 132, 2, 169, 204, 96, 113, 159, 159, 76, 211, 7, 104, 35, 28, 237, 100, 133, 231, + 124, 145, 161, 255, 27, 202, 10, 92, 251, 183, 146, 211, 207, 65, 80, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2134, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14118057717151657434" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12999500806051814382" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11075756135529432176" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1488295ab5d7030619de4c2f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18061460782785339436" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "669ae0c3100d95196ca0dc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12756502195373207288" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4060642818646513450" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a467df82c3464f00fecb" + }, + { + "_tag": "ByteArray", + "bytearray": "864d59b5ba56480a428a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "506974760887526121" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "680993320559620053" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8fc5d671af0906d00d98db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bc3ed6ab16d496dda9f9f1bb467811bda1f5beeff1bffffffffffffffecd8669f1b99b4fd85fd15c4709fbf4c1488295ab5d7030619de4c2f1bfaa732e36291a02c4b669ae0c3100d95196ca0dc1bb1083328ebb5eef8ffd8669f1b385a4d211d2a972a9f4aa467df82c3464f00fecb4a864d59b5ba56480a428a1b070922dbe4ca22e91b09735fd1265eafd5ffffffffbf4b8fc5d671af0906d00d98db4103ffffff", + "cborBytes": [ + 216, 102, 159, 27, 195, 237, 106, 177, 109, 73, 109, 218, 159, 159, 27, 180, 103, 129, 27, 218, 31, 91, 238, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 236, 216, 102, 159, 27, 153, 180, 253, 133, 253, 21, 196, 112, 159, 191, + 76, 20, 136, 41, 90, 181, 215, 3, 6, 25, 222, 76, 47, 27, 250, 167, 50, 227, 98, 145, 160, 44, 75, 102, 154, 224, + 195, 16, 13, 149, 25, 108, 160, 220, 27, 177, 8, 51, 40, 235, 181, 238, 248, 255, 216, 102, 159, 27, 56, 90, 77, + 33, 29, 42, 151, 42, 159, 74, 164, 103, 223, 130, 195, 70, 79, 0, 254, 203, 74, 134, 77, 89, 181, 186, 86, 72, 10, + 66, 138, 27, 7, 9, 34, 219, 228, 202, 34, 233, 27, 9, 115, 95, 209, 38, 94, 175, 213, 255, 255, 255, 255, 191, 75, + 143, 197, 214, 113, 175, 9, 6, 208, 13, 152, 219, 65, 3, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2135, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18298826277497019042" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9610164124583457820" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16042376754011814288" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "414449395240068295" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3997117060966704916" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16937407155731478549" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13177063229240733114" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11333962879735430523" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3160478584444444241" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e0e2066" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3884870136228499701" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bc4e67af" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12623714039943213798" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13774232214298899141" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "19556e225c08" + }, + { + "_tag": "ByteArray", + "bytearray": "e9519c01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8889356974018602173" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7435711768778453497" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f9822d56e6c809c0373b5" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "220b413e09fb9a8e355aab" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e63e7cb94d3f3331" + }, + { + "_tag": "ByteArray", + "bytearray": "559cde" + } + ] + }, + "cborHex": "d8669f1bfdf27d8c4ccb1aa29fd8669f1b855e295abefff41c9f1bdea1f8a95fdbb9901b05c06b8774a8e4c7d8669f1b37789cca1092e7149f1beb0dc211e588b8151bb6de553121c16dba1b9d4a53307017fd7b1b2bdc4687120a5e51446e0e2066ffff1b35e9d4ce546c50f5ffff44bc4e67afd8669f1baf30710938ed32e69fd8669f1bbf27e7384b0732c59f4619556e225c0844e9519c011b7b5d5711ee0524bd1b6730f475263b31f94b8f9822d56e6c809c0373b5ffff804b220b413e09fb9a8e355aaba0ffff48e63e7cb94d3f333143559cdeffff", + "cborBytes": [ + 216, 102, 159, 27, 253, 242, 125, 140, 76, 203, 26, 162, 159, 216, 102, 159, 27, 133, 94, 41, 90, 190, 255, 244, + 28, 159, 27, 222, 161, 248, 169, 95, 219, 185, 144, 27, 5, 192, 107, 135, 116, 168, 228, 199, 216, 102, 159, 27, + 55, 120, 156, 202, 16, 146, 231, 20, 159, 27, 235, 13, 194, 17, 229, 136, 184, 21, 27, 182, 222, 85, 49, 33, 193, + 109, 186, 27, 157, 74, 83, 48, 112, 23, 253, 123, 27, 43, 220, 70, 135, 18, 10, 94, 81, 68, 110, 14, 32, 102, 255, + 255, 27, 53, 233, 212, 206, 84, 108, 80, 245, 255, 255, 68, 188, 78, 103, 175, 216, 102, 159, 27, 175, 48, 113, 9, + 56, 237, 50, 230, 159, 216, 102, 159, 27, 191, 39, 231, 56, 75, 7, 50, 197, 159, 70, 25, 85, 110, 34, 92, 8, 68, + 233, 81, 156, 1, 27, 123, 93, 87, 17, 238, 5, 36, 189, 27, 103, 48, 244, 117, 38, 59, 49, 249, 75, 143, 152, 34, + 213, 110, 108, 128, 156, 3, 115, 181, 255, 255, 128, 75, 34, 11, 65, 62, 9, 251, 154, 142, 53, 90, 171, 160, 255, + 255, 72, 230, 62, 124, 185, 77, 63, 51, 49, 67, 85, 156, 222, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2136, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2730029288944030610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b404c5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12926434481539827135" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5961422046138610784" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "ByteArray", + "bytearray": "021f1a007948021c0403fc" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b25e3032c89ebd3929f43b404c51bb363ebac7c8ac5bfd8669f1b52bb39c41846346080ff9f114b021f1a007948021c0403fcffd8669f1bfffffffffffffff780ffffff", + "cborBytes": [ + 216, 102, 159, 27, 37, 227, 3, 44, 137, 235, 211, 146, 159, 67, 180, 4, 197, 27, 179, 99, 235, 172, 124, 138, 197, + 191, 216, 102, 159, 27, 82, 187, 57, 196, 24, 70, 52, 96, 128, 255, 159, 17, 75, 2, 31, 26, 0, 121, 72, 2, 28, 4, + 3, 252, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2137, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5534103421221021876" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87a9f1b4ccd15bd9c2728b4a0ff", + "cborBytes": [216, 122, 159, 27, 76, 205, 21, 189, 156, 39, 40, 180, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2138, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9965322685429842434" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3384161153446944125" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9fd8669f1b8a4bf02f113002029f9f1b2ef6f4a395e19d7dffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 216, 102, 159, 27, 138, 75, 240, 47, 17, 48, 2, 2, + 159, 159, 27, 46, 246, 244, 163, 149, 225, 157, 125, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2139, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12072862103150514113" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "925e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6526752742888301738" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e8606d96fb1ca6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17559335547799844723" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ef829a02e0170977" + }, + { + "_tag": "ByteArray", + "bytearray": "92b1f0794c471d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13656660675534385476" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13542894804045972357" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c9077161c2cf5f8d14aa" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11666783559173798854" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f0a59edb3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f9d7c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34cf28" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9915235503752650332" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac25d8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90eecadf1ea331d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e41b7da9fa643" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17529507174262847521" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8700918596216536699" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14513118982275244205" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4584199368985056545" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6841506097840870501" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11363399785822764497" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7739805267605883975" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2194531059113652387" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9bc990" + }, + { + "_tag": "ByteArray", + "bytearray": "f3d6870b3b7acef6d18ba9" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "56e7b56734cdb9207a2d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8983563138713086259" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17677442976657582941" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2804418911328118178" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1ba78b6c1e388fcfc19f42925ed8669f1b5a93af0a18a9e4aa9f47e8606d96fb1ca6d8669f1bf3af4aa5ba7fb7739f48ef829a02e01709774792b1f0794c471d1bbd8634873f45f1441bbbf2071229a4c3854ac9077161c2cf5f8d14aaffff1ba1e8bdd573ebfbc6bf451f0a59edb3436f9d7c4334cf281b8999fe2851849e5c414143ac25d84890eecadf1ea331d5476e41b7da9fa643ffd8669f1bf34551e6519938219f1b78bfdf5d2313be7b1bc968f4d2117ea0ad1b3f9e5909b7ec95211b5ef1e98c52795465ffffffffd8669f1b9db2e7e63ab73dd19f1b6b694fe236588c47d8669f1b1e748a5f0307f0a39f439bc9904bf3d6870b3b7acef6d18ba9ffffffff9f9f4a56e7b56734cdb9207a2d1b7cac0713e4496933ffd8669f1bf552e4ba68e62b5d9f1b26eb4c243319a5a2ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 167, 139, 108, 30, 56, 143, 207, 193, 159, 66, 146, 94, 216, 102, 159, 27, 90, 147, 175, 10, + 24, 169, 228, 170, 159, 71, 232, 96, 109, 150, 251, 28, 166, 216, 102, 159, 27, 243, 175, 74, 165, 186, 127, 183, + 115, 159, 72, 239, 130, 154, 2, 224, 23, 9, 119, 71, 146, 177, 240, 121, 76, 71, 29, 27, 189, 134, 52, 135, 63, + 69, 241, 68, 27, 187, 242, 7, 18, 41, 164, 195, 133, 74, 201, 7, 113, 97, 194, 207, 95, 141, 20, 170, 255, 255, + 27, 161, 232, 189, 213, 115, 235, 251, 198, 191, 69, 31, 10, 89, 237, 179, 67, 111, 157, 124, 67, 52, 207, 40, 27, + 137, 153, 254, 40, 81, 132, 158, 92, 65, 65, 67, 172, 37, 216, 72, 144, 238, 202, 223, 30, 163, 49, 213, 71, 110, + 65, 183, 218, 159, 166, 67, 255, 216, 102, 159, 27, 243, 69, 81, 230, 81, 153, 56, 33, 159, 27, 120, 191, 223, 93, + 35, 19, 190, 123, 27, 201, 104, 244, 210, 17, 126, 160, 173, 27, 63, 158, 89, 9, 183, 236, 149, 33, 27, 94, 241, + 233, 140, 82, 121, 84, 101, 255, 255, 255, 255, 216, 102, 159, 27, 157, 178, 231, 230, 58, 183, 61, 209, 159, 27, + 107, 105, 79, 226, 54, 88, 140, 71, 216, 102, 159, 27, 30, 116, 138, 95, 3, 7, 240, 163, 159, 67, 155, 201, 144, + 75, 243, 214, 135, 11, 59, 122, 206, 246, 209, 139, 169, 255, 255, 255, 255, 159, 159, 74, 86, 231, 181, 103, 52, + 205, 185, 32, 122, 45, 27, 124, 172, 7, 19, 228, 73, 105, 51, 255, 216, 102, 159, 27, 245, 82, 228, 186, 104, 230, + 43, 93, 159, 27, 38, 235, 76, 36, 51, 25, 165, 162, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2140, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5736359308263326046" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9f81" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11910063116125232587" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2956133223448163967" + } + }, + { + "_tag": "ByteArray", + "bytearray": "750cbfa8ab2bd230" + } + ] + } + ] + } + ] + }, + "cborHex": "d8799f1b4f9ba465f90a815e020b9f9f429f811ba5490b4d49205dcb1b29064b81245bb67f48750cbfa8ab2bd230ffffff", + "cborBytes": [ + 216, 121, 159, 27, 79, 155, 164, 101, 249, 10, 129, 94, 2, 11, 159, 159, 66, 159, 129, 27, 165, 73, 11, 77, 73, + 32, 93, 203, 27, 41, 6, 75, 129, 36, 91, 182, 127, 72, 117, 12, 191, 168, 171, 43, 210, 48, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2141, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1851466551995699826" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0851e9a2d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f8ef8fea1a000ac8c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6094921734446298449" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18112116575985708442" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "484e90fdcc" + }, + { + "_tag": "ByteArray", + "bytearray": "321fdeddc387b1e2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4922852977418399754" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d87e9fd8669f1b19b1bb050138927280ff9fbf450851e9a2d241bb491f8ef8fea1a000ac8c1b54958306737ab551ff1bfb5b2a105217ad9aff45484e90fdcc48321fdeddc387b1e2d8669f1b44517cb3587f700a9f1bfffffffffffffff9a0ffffff", + "cborBytes": [ + 216, 126, 159, 216, 102, 159, 27, 25, 177, 187, 5, 1, 56, 146, 114, 128, 255, 159, 191, 69, 8, 81, 233, 162, 210, + 65, 187, 73, 31, 142, 248, 254, 161, 160, 0, 172, 140, 27, 84, 149, 131, 6, 115, 122, 181, 81, 255, 27, 251, 91, + 42, 16, 82, 23, 173, 154, 255, 69, 72, 78, 144, 253, 204, 72, 50, 31, 222, 221, 195, 135, 177, 226, 216, 102, 159, + 27, 68, 81, 124, 179, 88, 127, 112, 10, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2142, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16458387145885281492" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6585775055190108614" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16531380104989145529" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13173042749366878691" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9fbf1be467efe8ae58ecd41b5b655f850f3c29c6ffd8669f1be56b429e54d679b980ffd8669f1bb6d00c96370c41e380ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 191, 27, 228, 103, 239, 232, 174, 88, 236, 212, + 27, 91, 101, 95, 133, 15, 60, 41, 198, 255, 216, 102, 159, 27, 229, 107, 66, 158, 84, 214, 121, 185, 128, 255, + 216, 102, 159, 27, 182, 208, 12, 150, 55, 12, 65, 227, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2143, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10202903055129595988" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a9b3acbf2c8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7a9f904fef8e37012a900" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d030438169" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1252990688156470018" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bce7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b2a4a8d4137" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0dfb01ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7573698334775544235" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16943469574475246947" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0403cdd8" + }, + { + "_tag": "ByteArray", + "bytearray": "bcb0fadd49" + }, + { + "_tag": "ByteArray", + "bytearray": "10dfe4ddb4" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3ece9e58fed84879d9883a49" + }, + { + "_tag": "ByteArray", + "bytearray": "bef5b055035b57" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9f1b8d97fe4576bf5054bf428b35463a9b3acbf2c84bd7a9f904fef8e37012a90045d030438169ffbf1b116384646a704b0242bce7460b2a4a8d4137440dfb01ae41811b691b2e82204389abff9fd8669f1beb234bcec13c6d639f440403cdd845bcb0fadd494510dfe4ddb4ffffff9f4c3ece9e58fed84879d9883a4947bef5b055035b57ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 27, 141, 151, 254, 69, 118, 191, 80, 84, 191, 66, + 139, 53, 70, 58, 155, 58, 203, 242, 200, 75, 215, 169, 249, 4, 254, 248, 227, 112, 18, 169, 0, 69, 208, 48, 67, + 129, 105, 255, 191, 27, 17, 99, 132, 100, 106, 112, 75, 2, 66, 188, 231, 70, 11, 42, 74, 141, 65, 55, 68, 13, 251, + 1, 174, 65, 129, 27, 105, 27, 46, 130, 32, 67, 137, 171, 255, 159, 216, 102, 159, 27, 235, 35, 75, 206, 193, 60, + 109, 99, 159, 68, 4, 3, 205, 216, 69, 188, 176, 250, 221, 73, 69, 16, 223, 228, 221, 180, 255, 255, 255, 159, 76, + 62, 206, 158, 88, 254, 216, 72, 121, 217, 136, 58, 73, 71, 190, 245, 176, 85, 3, 91, 87, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2144, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2757601831973969348" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5963293952372114147" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18039421523682781996" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f1b2644f8417ac65dc49f9f1b52c1e0413a6002e3ffff1bfa58e64c80a5eb2cffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 27, 38, 68, 248, 65, 122, 198, 93, 196, 159, 159, + 27, 82, 193, 224, 65, 58, 96, 2, 227, 255, 255, 27, 250, 88, 230, 76, 128, 165, 235, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2145, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9805862232959309546" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15824370943143505469" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6418650345741256184" + } + } + ] + }, + "cborHex": "d8669f1b88156bbf47f556ea9f1bdb9b75881c14ee3d1b5913a07b635885f8ffff", + "cborBytes": [ + 216, 102, 159, 27, 136, 21, 107, 191, 71, 245, 86, 234, 159, 27, 219, 155, 117, 136, 28, 20, 238, 61, 27, 89, 19, + 160, 123, 99, 88, 133, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2146, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9354438520309985986" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c3d5" + } + ] + }, + "cborHex": "d8669f1b81d1a445b44eb2c29f42c3d5ffff", + "cborBytes": [216, 102, 159, 27, 129, 209, 164, 69, 180, 78, 178, 194, 159, 66, 195, 213, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2147, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0817c1473e7ebbf8cd6dd481" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17720168765606494406" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72a9a8bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f6f77c84d6c097ad1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8464b763c76c2b46b6cb19" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d24f593ffe03b41a0c4e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99baba986a4b208310eb15" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "881e4f688317eee2a464a6f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a75799e11c932" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71a4c0eaeac0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aacf19407a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e709e3cfdd78b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "520161311999040180" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "121d0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5205b6dbcf08a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34ebd64ff597095ba289" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d56fc5e9ffaaaa13af3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14168451658517741750" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc90584ec03e4c45a6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7fd1b494d" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "314816928324173534" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5ba8121c9b8016df9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2082129388145601882" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8389671039659094720" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2873872326902754756" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2173344128415956218" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7424416599450674474" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13278602226854388627" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "89ff204382e0" + }, + { + "_tag": "ByteArray", + "bytearray": "d0" + }, + { + "_tag": "ByteArray", + "bytearray": "3c7c085c0d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5f5ecea8f4e048ea82644636" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8906314129720116818" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1165285156758846134" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10720433113466111295" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f14b329778fcab61f887" + }, + { + "_tag": "ByteArray", + "bytearray": "b808299d42d898" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13497807396779729948" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17680412284738676707" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13788527162881008439" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82b003ac3aea70803d5805" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0f1a8bbbab27e83056a1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2a1" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9fbf4c0817c1473e7ebbf8cd6dd4811bf5eaaf9b59f280c64472a9a8bf491f6f77c84d6c097ad14b8464b763c76c2b46b6cb194ad24f593ffe03b41a0c4e4b99baba986a4b208310eb154c881e4f688317eee2a464a6f7479a75799e11c9324671a4c0eaeac045aacf19407a476e709e3cfdd78bff1b0737fbf5139a9ab49fbf43121d0e4187475205b6dbcf08a24a34ebd64ff597095ba2894a9d56fc5e9ffaaaa13af31bc4a073b73b3e80b649cc90584ec03e4c45a645f7fd1b494dffffbf1b045e74540e0abede49d5ba8121c9b8016df91b1ce535a59cd1ed5a1b746e195c354332c01b27e20ba7a6dd2dc41b1e2944f84ce9fcfaffd8669f1b6708d38f9ac5652a9fd8669f1bb847125f4d5de3939f4689ff204382e041d0453c7c085c0dffff4c5f5ecea8f4e048ea82644636d8669f1b7b999583680286529f1b102becad16a57ab61b94c6a11e0e7b853f4af14b329778fcab61f88747b808299d42d898ffffbf1bbb51d8501bb2241c1bf55d714c524d27e31bbf5ab0665f58e3374b82b003ac3aea70803d58054ba0f1a8bbbab27e83056a1d42d2a1ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 191, 76, 8, 23, 193, 71, 62, 126, 187, 248, 205, + 109, 212, 129, 27, 245, 234, 175, 155, 89, 242, 128, 198, 68, 114, 169, 168, 191, 73, 31, 111, 119, 200, 77, 108, + 9, 122, 209, 75, 132, 100, 183, 99, 199, 108, 43, 70, 182, 203, 25, 74, 210, 79, 89, 63, 254, 3, 180, 26, 12, 78, + 75, 153, 186, 186, 152, 106, 75, 32, 131, 16, 235, 21, 76, 136, 30, 79, 104, 131, 23, 238, 226, 164, 100, 166, + 247, 71, 154, 117, 121, 158, 17, 201, 50, 70, 113, 164, 192, 234, 234, 192, 69, 170, 207, 25, 64, 122, 71, 110, + 112, 158, 60, 253, 215, 139, 255, 27, 7, 55, 251, 245, 19, 154, 154, 180, 159, 191, 67, 18, 29, 14, 65, 135, 71, + 82, 5, 182, 219, 207, 8, 162, 74, 52, 235, 214, 79, 245, 151, 9, 91, 162, 137, 74, 157, 86, 252, 94, 159, 250, + 170, 161, 58, 243, 27, 196, 160, 115, 183, 59, 62, 128, 182, 73, 204, 144, 88, 78, 192, 62, 76, 69, 166, 69, 247, + 253, 27, 73, 77, 255, 255, 191, 27, 4, 94, 116, 84, 14, 10, 190, 222, 73, 213, 186, 129, 33, 201, 184, 1, 109, + 249, 27, 28, 229, 53, 165, 156, 209, 237, 90, 27, 116, 110, 25, 92, 53, 67, 50, 192, 27, 39, 226, 11, 167, 166, + 221, 45, 196, 27, 30, 41, 68, 248, 76, 233, 252, 250, 255, 216, 102, 159, 27, 103, 8, 211, 143, 154, 197, 101, 42, + 159, 216, 102, 159, 27, 184, 71, 18, 95, 77, 93, 227, 147, 159, 70, 137, 255, 32, 67, 130, 224, 65, 208, 69, 60, + 124, 8, 92, 13, 255, 255, 76, 95, 94, 206, 168, 244, 224, 72, 234, 130, 100, 70, 54, 216, 102, 159, 27, 123, 153, + 149, 131, 104, 2, 134, 82, 159, 27, 16, 43, 236, 173, 22, 165, 122, 182, 27, 148, 198, 161, 30, 14, 123, 133, 63, + 74, 241, 75, 50, 151, 120, 252, 171, 97, 248, 135, 71, 184, 8, 41, 157, 66, 216, 152, 255, 255, 191, 27, 187, 81, + 216, 80, 27, 178, 36, 28, 27, 245, 93, 113, 76, 82, 77, 39, 227, 27, 191, 90, 176, 102, 95, 88, 227, 55, 75, 130, + 176, 3, 172, 58, 234, 112, 128, 61, 88, 5, 75, 160, 241, 168, 187, 186, 178, 126, 131, 5, 106, 29, 66, 210, 161, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2148, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16906577561468405822" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1247375303988171396" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5178411468410165254" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17297166484652228160" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31c7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18222562542536957216" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "44ba096b8340" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6120354964800714960" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2009389755106766358" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14181742507458790162" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3177c6de33b6e8f85b80a0a8" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4621568903385266215" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15806128325983074775" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7439646383002918167" + } + }, + { + "_tag": "ByteArray", + "bytearray": "53" + }, + { + "_tag": "ByteArray", + "bytearray": "2f5bdf3c48512852" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1beaa03ab79eea083e9fbf1b114f913ae7cf52841b47dd69cb4b6598061bf00be146027cfe404231c71bfce38c15cd411d20416fff4644ba096b83401b54efde69d83eb8d01b1be2c9560872ae16d8669f1bc4cfabac252383129f4c3177c6de33b6e8f85b80a0a8a0d8669f1b40231c6e774538279f414affffd8669f1bdb5aa5f7d075f9d79f1b673eeef7e9689d174153482f5bdf3c48512852ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 234, 160, 58, 183, 158, 234, 8, 62, 159, 191, 27, 17, 79, 145, 58, 231, 207, 82, 132, 27, 71, + 221, 105, 203, 75, 101, 152, 6, 27, 240, 11, 225, 70, 2, 124, 254, 64, 66, 49, 199, 27, 252, 227, 140, 21, 205, + 65, 29, 32, 65, 111, 255, 70, 68, 186, 9, 107, 131, 64, 27, 84, 239, 222, 105, 216, 62, 184, 208, 27, 27, 226, + 201, 86, 8, 114, 174, 22, 216, 102, 159, 27, 196, 207, 171, 172, 37, 35, 131, 18, 159, 76, 49, 119, 198, 222, 51, + 182, 232, 248, 91, 128, 160, 168, 160, 216, 102, 159, 27, 64, 35, 28, 110, 119, 69, 56, 39, 159, 65, 74, 255, 255, + 216, 102, 159, 27, 219, 90, 165, 247, 208, 117, 249, 215, 159, 27, 103, 62, 238, 247, 233, 104, 157, 23, 65, 83, + 72, 47, 91, 223, 60, 72, 81, 40, 82, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2149, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12873381201916160625" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bb2a76fff3e676a719f9f06ffffff", + "cborBytes": [216, 102, 159, 27, 178, 167, 111, 255, 62, 103, 106, 113, 159, 159, 6, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2150, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [] + } + ] + }, + "cborHex": "d87d9fd87d80ff", + "cborBytes": [216, 125, 159, 216, 125, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2151, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "89740dc783015c05d2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1688668227207473796" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7187484107293296007" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2077140733622696073" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d85bd2f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0bbf8a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f578c94a539" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10224359366508435354" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17448324960795179545" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16134808502997390825" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15279242241306207875" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cfb2f284c4da52348513c1ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5112409795374117635" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7040729071948790848" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "35" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "652190444735105789" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17710344827740987004" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "604eb4eb9a5a5099b7e0fed6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13582698846958432116" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "782164be4e6b23" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1278298567841960767" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c964b2de" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14610f2e3b142b3edb56" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14951831877214349036" + } + } + ] + } + ] + }, + "cborHex": "d905009f4989740dc783015c05d2bf1b176f5ace4230aa841b63bf12b6f3fb85871b1cd37c7df8133889440d85bd2f44b0bbf8a8467f578c94a539ff1b8de438ac40ac579a9f9f1bf224e71b4dc73a191bdfea5ad8fc1c95e91bd40ac5dd963326834ccfb2f284c4da52348513c1ca1b46f2ed9f47807303ff1b61b5b1c99d45fc40bf41351b090d0bc108570afd414a1bf5c7c8c9932d9e7c4c604eb4eb9a5a5099b7e0fed61bbc7f70a31810af7447782164be4e6b231b11bd6dc6551c533f44c964b2de4a14610f2e3b142b3edb56ff1bcf7f93dfc6b926ecffff", + "cborBytes": [ + 217, 5, 0, 159, 73, 137, 116, 13, 199, 131, 1, 92, 5, 210, 191, 27, 23, 111, 90, 206, 66, 48, 170, 132, 27, 99, + 191, 18, 182, 243, 251, 133, 135, 27, 28, 211, 124, 125, 248, 19, 56, 137, 68, 13, 133, 189, 47, 68, 176, 187, + 248, 168, 70, 127, 87, 140, 148, 165, 57, 255, 27, 141, 228, 56, 172, 64, 172, 87, 154, 159, 159, 27, 242, 36, + 231, 27, 77, 199, 58, 25, 27, 223, 234, 90, 216, 252, 28, 149, 233, 27, 212, 10, 197, 221, 150, 51, 38, 131, 76, + 207, 178, 242, 132, 196, 218, 82, 52, 133, 19, 193, 202, 27, 70, 242, 237, 159, 71, 128, 115, 3, 255, 27, 97, 181, + 177, 201, 157, 69, 252, 64, 191, 65, 53, 27, 9, 13, 11, 193, 8, 87, 10, 253, 65, 74, 27, 245, 199, 200, 201, 147, + 45, 158, 124, 76, 96, 78, 180, 235, 154, 90, 80, 153, 183, 224, 254, 214, 27, 188, 127, 112, 163, 24, 16, 175, + 116, 71, 120, 33, 100, 190, 78, 107, 35, 27, 17, 189, 109, 198, 85, 28, 83, 63, 68, 201, 100, 178, 222, 74, 20, + 97, 15, 46, 59, 20, 43, 62, 219, 86, 255, 27, 207, 127, 147, 223, 198, 185, 38, 236, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2152, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1bc5a4cfb89f3a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8326248396269676787" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5127275661347483235" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7056098573967094904" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11023982283084490384" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "adc924e854619ab2560d15" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11222248537731161359" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "265e935fa7cf32d32218cfae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6568506015068422012" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1203607870238746921" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65358cba9b9009e6274c20" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8209088119978876432" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ac1e4060fe9ba1e50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b94ccabb4b16e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b0cd4d82809" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dea5ccee12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17403447733894457529" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14276266716068569945" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8d91136379d1a2b2ba" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10954308394893390815" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15721007985119667279" + } + }, + { + "_tag": "ByteArray", + "bytearray": "08ee8049bd60ded5664c0490" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f8e9" + } + ] + }, + "cborHex": "d9050d9f471bc5a4cfb89f3ad8669f1b738cc6cd5351e8f39fd8669f1b4727be0c6c1f6e639f1b61ec4c44a972f4781b98fd0d7a99736690ffff4badc924e854619ab2560d15ffff9f1b9bbd6f96489cdd0fbf4c265e935fa7cf32d32218cfae1b5b28056b552b7f7c413d1b10b412fb2271e9294b65358cba9b9009e6274c201b71ec8a26c9385e10497ac1e4060fe9ba1e50478b94ccabb4b16e468b0cd4d828094248b545dea5ccee121bf1857781addb28b9ff1bc61f7cf079ffe359498d91136379d1a2b2bad8669f1b980585725db333df9f1bda2c3d781023244f4c08ee8049bd60ded5664c0490ffffff42f8e9ff", + "cborBytes": [ + 217, 5, 13, 159, 71, 27, 197, 164, 207, 184, 159, 58, 216, 102, 159, 27, 115, 140, 198, 205, 83, 81, 232, 243, + 159, 216, 102, 159, 27, 71, 39, 190, 12, 108, 31, 110, 99, 159, 27, 97, 236, 76, 68, 169, 114, 244, 120, 27, 152, + 253, 13, 122, 153, 115, 102, 144, 255, 255, 75, 173, 201, 36, 232, 84, 97, 154, 178, 86, 13, 21, 255, 255, 159, + 27, 155, 189, 111, 150, 72, 156, 221, 15, 191, 76, 38, 94, 147, 95, 167, 207, 50, 211, 34, 24, 207, 174, 27, 91, + 40, 5, 107, 85, 43, 127, 124, 65, 61, 27, 16, 180, 18, 251, 34, 113, 233, 41, 75, 101, 53, 140, 186, 155, 144, 9, + 230, 39, 76, 32, 27, 113, 236, 138, 38, 201, 56, 94, 16, 73, 122, 193, 228, 6, 15, 233, 186, 30, 80, 71, 139, 148, + 204, 171, 180, 177, 110, 70, 139, 12, 212, 216, 40, 9, 66, 72, 181, 69, 222, 165, 204, 238, 18, 27, 241, 133, 119, + 129, 173, 219, 40, 185, 255, 27, 198, 31, 124, 240, 121, 255, 227, 89, 73, 141, 145, 19, 99, 121, 209, 162, 178, + 186, 216, 102, 159, 27, 152, 5, 133, 114, 93, 179, 51, 223, 159, 27, 218, 44, 61, 120, 16, 35, 36, 79, 76, 8, 238, + 128, 73, 189, 96, 222, 213, 102, 76, 4, 144, 255, 255, 255, 66, 248, 233, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2153, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9253850840393338297" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6700955617665682118" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14541026560520033933" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d912a7d0d14a38aa5a6e" + } + ] + }, + "cborHex": "d8669f1b806c484f72184db99f1b5cfe93a18e9f0ac61bc9cc1a9d7951168d4ad912a7d0d14a38aa5a6effff", + "cborBytes": [ + 216, 102, 159, 27, 128, 108, 72, 79, 114, 24, 77, 185, 159, 27, 92, 254, 147, 161, 142, 159, 10, 198, 27, 201, + 204, 26, 157, 121, 81, 22, 141, 74, 217, 18, 167, 208, 209, 74, 56, 170, 90, 110, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2154, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15899407323559646106" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7b2019e4629d19c9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3011405274299191343" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d9004" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16144570378983998162" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5468323101944942446" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "856d9a4e0512" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d158" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e92fe9fb3b6403c35e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8619714509049597380" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bbf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7497726658822172739" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bc635ddb8f34841d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e880ca017b6186a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f2d5a28f75e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17027376986684431887" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44dda111b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2604" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81bc1fed3c1c6cae634588" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13725660763570726341" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abbd106b649f6eb0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1626501406891355635" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2048730559509126360" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5414d60c384c2d" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4417966483" + } + ] + }, + "cborHex": "d8669f1bdca60ab8dc04539a9f487b2019e4629d19c9bf1b29caa9245157502f436d90041be00d0938daa282d21b4be362e3887d8f6e46856d9a4e051242d15849e92fe9fb3b6403c35e1b779f60ad412e8dc4ffbf422bbf1b680d46abea127043493bc635ddb8f34841d5483e880ca017b6186a463f2d5a28f75e1bec4d65278bfc9e0f4544dda111b84226044b81bc1fed3c1c6cae6345881bbe7b57be282665c548abbd106b649f6eb01b16927e69786eadf3ff9fbf1b1c6e8d96d8075cd8475414d60c384c2dffff454417966483ffff", + "cborBytes": [ + 216, 102, 159, 27, 220, 166, 10, 184, 220, 4, 83, 154, 159, 72, 123, 32, 25, 228, 98, 157, 25, 201, 191, 27, 41, + 202, 169, 36, 81, 87, 80, 47, 67, 109, 144, 4, 27, 224, 13, 9, 56, 218, 162, 130, 210, 27, 75, 227, 98, 227, 136, + 125, 143, 110, 70, 133, 109, 154, 78, 5, 18, 66, 209, 88, 73, 233, 47, 233, 251, 59, 100, 3, 195, 94, 27, 119, + 159, 96, 173, 65, 46, 141, 196, 255, 191, 66, 43, 191, 27, 104, 13, 70, 171, 234, 18, 112, 67, 73, 59, 198, 53, + 221, 184, 243, 72, 65, 213, 72, 62, 136, 12, 160, 23, 182, 24, 106, 70, 63, 45, 90, 40, 247, 94, 27, 236, 77, 101, + 39, 139, 252, 158, 15, 69, 68, 221, 161, 17, 184, 66, 38, 4, 75, 129, 188, 31, 237, 60, 28, 108, 174, 99, 69, 136, + 27, 190, 123, 87, 190, 40, 38, 101, 197, 72, 171, 189, 16, 107, 100, 159, 110, 176, 27, 22, 146, 126, 105, 120, + 110, 173, 243, 255, 159, 191, 27, 28, 110, 141, 150, 216, 7, 92, 216, 71, 84, 20, 214, 12, 56, 76, 45, 255, 255, + 69, 68, 23, 150, 100, 131, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2155, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4323004925077911755" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12013236802372195613" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6945580520925367462" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e3f1c28d9f" + }, + { + "_tag": "ByteArray", + "bytearray": "d9e0b0779a" + }, + { + "_tag": "ByteArray", + "bytearray": "398a4bfcbb2c0b74be55" + }, + { + "_tag": "ByteArray", + "bytearray": "3a" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b3bfe6613398878cb9f9fd8669f1ba6b79739100b551d9f1b6063a8af3ca10ca645e3f1c28d9f45d9e0b0779a4a398a4bfcbb2c0b74be55413affffffffff", + "cborBytes": [ + 216, 102, 159, 27, 59, 254, 102, 19, 57, 136, 120, 203, 159, 159, 216, 102, 159, 27, 166, 183, 151, 57, 16, 11, + 85, 29, 159, 27, 96, 99, 168, 175, 60, 161, 12, 166, 69, 227, 241, 194, 141, 159, 69, 217, 224, 176, 119, 154, 74, + 57, 138, 75, 252, 187, 44, 11, 116, 190, 85, 65, 58, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2156, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10460970672330010212" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b912cd566e2026e649f1bfffffffffffffffdd8669f1bffffffffffffffef80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 145, 44, 213, 102, 226, 2, 110, 100, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2157, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6242216065506160766" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "06" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8440370880468643637" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04930e7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a559c9f8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4dff5a45155f74aaf82a5a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1458165684218476325" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb486cb384a47ac7f1f6252a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1408611977315179568" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6759562487037705729" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72449609f78a7a8a7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5712684075964513134" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b56a0ce705bbb307e9f9f9f13ffff41060dd8669f1b75223898c6e26f3580ff9fbf4404930e7f42b9da414444a559c9f84b4dff5a45155f74aaf82a5a1b143c71f6cf81b7254ccb486cb384a47ac7f1f6252a1b138c6521563b5c30ff9f1b5dceca44acf03e014972449609f78a7a8a7b1b4f4787e665e53b6effffffff", + "cborBytes": [ + 216, 102, 159, 27, 86, 160, 206, 112, 91, 187, 48, 126, 159, 159, 159, 19, 255, 255, 65, 6, 13, 216, 102, 159, 27, + 117, 34, 56, 152, 198, 226, 111, 53, 128, 255, 159, 191, 68, 4, 147, 14, 127, 66, 185, 218, 65, 68, 68, 165, 89, + 201, 248, 75, 77, 255, 90, 69, 21, 95, 116, 170, 248, 42, 90, 27, 20, 60, 113, 246, 207, 129, 183, 37, 76, 203, + 72, 108, 179, 132, 164, 122, 199, 241, 246, 37, 42, 27, 19, 140, 101, 33, 86, 59, 92, 48, 255, 159, 27, 93, 206, + 202, 68, 172, 240, 62, 1, 73, 114, 68, 150, 9, 247, 138, 122, 138, 123, 27, 79, 71, 135, 230, 101, 229, 59, 110, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2158, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7158883567749298807" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b6a989cfe446741d7d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4711180250666223993" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3c79f262a131ca668" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5036495226191375208" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70cb07" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9482980521917724012" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1408841869438826755" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16978793118500394841" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10286712957810652040" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18141296832719686458" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99488008" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1296709799690421573" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b33099449bde0506401f1405" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4779261314597618710" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3483720662920534495" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12696701997965483463" + } + } + ] + }, + "cborHex": "d905019fd8669f1b635976acec13fa779f49b6a989cfe446741d7dbf1b4161797a21cbc97949a3c79f262a131ca6681b45e539b946166b684370cb071b839a508aacdab56c1b138d3637449939031beba0ca623f1017591b8ec1beef0cb633881bfbc2d55a472d0b3a4499488008ffd8669f1b11fed6b14b50c5459f4cb33099449bde0506401f14051b425358d8115b8416ffff1b3058a97c421119dfffff1bb033bf3277b99dc7ff", + "cborBytes": [ + 217, 5, 1, 159, 216, 102, 159, 27, 99, 89, 118, 172, 236, 19, 250, 119, 159, 73, 182, 169, 137, 207, 228, 70, 116, + 29, 125, 191, 27, 65, 97, 121, 122, 33, 203, 201, 121, 73, 163, 199, 159, 38, 42, 19, 28, 166, 104, 27, 69, 229, + 57, 185, 70, 22, 107, 104, 67, 112, 203, 7, 27, 131, 154, 80, 138, 172, 218, 181, 108, 27, 19, 141, 54, 55, 68, + 153, 57, 3, 27, 235, 160, 202, 98, 63, 16, 23, 89, 27, 142, 193, 190, 239, 12, 182, 51, 136, 27, 251, 194, 213, + 90, 71, 45, 11, 58, 68, 153, 72, 128, 8, 255, 216, 102, 159, 27, 17, 254, 214, 177, 75, 80, 197, 69, 159, 76, 179, + 48, 153, 68, 155, 222, 5, 6, 64, 31, 20, 5, 27, 66, 83, 88, 216, 17, 91, 132, 22, 255, 255, 27, 48, 88, 169, 124, + 66, 17, 25, 223, 255, 255, 27, 176, 51, 191, 50, 119, 185, 157, 199, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2159, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9963897239766337067" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f88409b" + } + ] + }, + "cborHex": "d8669f1b8a46dfbfa2c4862b9f09448f88409bffff", + "cborBytes": [216, 102, 159, 27, 138, 70, 223, 191, 162, 196, 134, 43, 159, 9, 68, 143, 136, 64, 155, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2160, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14982764614701346638" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9188363064830357265" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4336526836527183970" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "929197728731482651" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "db07" + }, + { + "_tag": "ByteArray", + "bytearray": "868417cbe43f71" + }, + { + "_tag": "ByteArray", + "bytearray": "e555834cd8684f31ba8d4d25" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10485588907331593789" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10287957512698928492" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9b35a21b29722343f6f50f" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e183ea" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7482605112641444825" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17163125430865959568" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10855389481354407686" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6871632251338061829" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12519171939835598139" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3040a96256fc9e60f8640" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c39e42e737eeeaae5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89497eda28" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2955636218167503359" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22d639611037ff8f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9090457248568350356" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "090c16d65398ae3959" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9933963773508685043" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2536650502389873979" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16116229809790800520" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12af709251dfc0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17556470729083643920" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16615037467607210292" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bcfed7908f490ef4e9f9f1b7f839f8682886f11ff9fa01b3c2e702e9226b862d8669f1b0ce52c694323ca1b9f42db0747868417cbe43f714ce555834cd8684f31ba8d4d251b91844b8e6246a63dffffd8669f1b8ec62ad990bb1d6c9f4b9b35a21b29722343f6f50fffffff43e183eabf1b67d78db49583dbd91bee2faba52e3d1a901b96a617380ea42f061b5f5cf120081f78051badbd088cc3f0553b4bd3040a96256fc9e60f8640497c39e42e737eeeaae54589497eda28ffbf1b2904877b152729ff4822d639611037ff8f1b7e27cab44aca969449090c16d65398ae39591b89dc876b6b958cf31b2333fe313243bd3b1bdfa8599fe32452884712af709251dfc01bf3a51d1c2492e8101be694788bea889934ffffff", + "cborBytes": [ + 216, 102, 159, 27, 207, 237, 121, 8, 244, 144, 239, 78, 159, 159, 27, 127, 131, 159, 134, 130, 136, 111, 17, 255, + 159, 160, 27, 60, 46, 112, 46, 146, 38, 184, 98, 216, 102, 159, 27, 12, 229, 44, 105, 67, 35, 202, 27, 159, 66, + 219, 7, 71, 134, 132, 23, 203, 228, 63, 113, 76, 229, 85, 131, 76, 216, 104, 79, 49, 186, 141, 77, 37, 27, 145, + 132, 75, 142, 98, 70, 166, 61, 255, 255, 216, 102, 159, 27, 142, 198, 42, 217, 144, 187, 29, 108, 159, 75, 155, + 53, 162, 27, 41, 114, 35, 67, 246, 245, 15, 255, 255, 255, 67, 225, 131, 234, 191, 27, 103, 215, 141, 180, 149, + 131, 219, 217, 27, 238, 47, 171, 165, 46, 61, 26, 144, 27, 150, 166, 23, 56, 14, 164, 47, 6, 27, 95, 92, 241, 32, + 8, 31, 120, 5, 27, 173, 189, 8, 140, 195, 240, 85, 59, 75, 211, 4, 10, 150, 37, 111, 201, 230, 15, 134, 64, 73, + 124, 57, 228, 46, 115, 126, 238, 170, 229, 69, 137, 73, 126, 218, 40, 255, 191, 27, 41, 4, 135, 123, 21, 39, 41, + 255, 72, 34, 214, 57, 97, 16, 55, 255, 143, 27, 126, 39, 202, 180, 74, 202, 150, 148, 73, 9, 12, 22, 214, 83, 152, + 174, 57, 89, 27, 137, 220, 135, 107, 107, 149, 140, 243, 27, 35, 51, 254, 49, 50, 67, 189, 59, 27, 223, 168, 89, + 159, 227, 36, 82, 136, 71, 18, 175, 112, 146, 81, 223, 192, 27, 243, 165, 29, 28, 36, 146, 232, 16, 27, 230, 148, + 120, 139, 234, 136, 153, 52, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2161, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8618463908922005315" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "235d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15913280229989244566" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b779aef4338d217439f80bf42235d1bdcd7540e97c15e96ffffff", + "cborBytes": [ + 216, 102, 159, 27, 119, 154, 239, 67, 56, 210, 23, 67, 159, 128, 191, 66, 35, 93, 27, 220, 215, 84, 14, 151, 193, + 94, 150, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2162, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "416157672390932543" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d9ef92" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13396183126279949856" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f9f9f1b05c67d32b96a383f43d9ef92ff1bb9e8cd93cbff8e2080ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 159, 159, 27, 5, 198, 125, 50, 185, 106, 56, 63, + 67, 217, 239, 146, 255, 27, 185, 232, 205, 147, 203, 255, 142, 32, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2163, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11732752493229441310" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7744f1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c343e041" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16403982360384322222" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "58de507675" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "926755994086289977" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6384200661526795208" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0bdd9d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4139b92f47d227" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e50bb07ca3cdd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "26" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90c6b8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35e4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65bc74f329f434" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11684159397120570978" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9198561c56663d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b40c03cc65c8f4" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2789243127955993507" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7334effeb59fb70ab78ae984" + }, + { + "_tag": "ByteArray", + "bytearray": "71653632" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ca427c654a09cb3c1b96372c" + }, + { + "_tag": "ByteArray", + "bytearray": "d99ab3804b6ee9fe94bf28" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6231133507383695412" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1ba2d31c3ad485011e9fbf437744f144c343e041ff9fd8669f1be3a6a70b747b3aae80ffff4558de5076751b0cdc7faa9cfa3239d8669f1b58993cad3d1e53c89fbf430bdd9d474139b92f47d227471e50bb07ca3cdd417d41264390c6b84235e44765bc74f329f434415d1ba2267910fc69f66248e9198561c56663d247b40c03cc65c8f4ffd8669f1b26b561d8ca0433a39f4c7334effeb59fb70ab78ae9844471653632ffff4cca427c654a09cb3c1b96372c4bd99ab3804b6ee9fe94bf28d8669f1b56796ee937a3983480ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 162, 211, 28, 58, 212, 133, 1, 30, 159, 191, 67, 119, 68, 241, 68, 195, 67, 224, 65, 255, 159, + 216, 102, 159, 27, 227, 166, 167, 11, 116, 123, 58, 174, 128, 255, 255, 69, 88, 222, 80, 118, 117, 27, 12, 220, + 127, 170, 156, 250, 50, 57, 216, 102, 159, 27, 88, 153, 60, 173, 61, 30, 83, 200, 159, 191, 67, 11, 221, 157, 71, + 65, 57, 185, 47, 71, 210, 39, 71, 30, 80, 187, 7, 202, 60, 221, 65, 125, 65, 38, 67, 144, 198, 184, 66, 53, 228, + 71, 101, 188, 116, 243, 41, 244, 52, 65, 93, 27, 162, 38, 121, 16, 252, 105, 246, 98, 72, 233, 25, 133, 97, 197, + 102, 99, 210, 71, 180, 12, 3, 204, 101, 200, 244, 255, 216, 102, 159, 27, 38, 181, 97, 216, 202, 4, 51, 163, 159, + 76, 115, 52, 239, 254, 181, 159, 183, 10, 183, 138, 233, 132, 68, 113, 101, 54, 50, 255, 255, 76, 202, 66, 124, + 101, 74, 9, 203, 60, 27, 150, 55, 44, 75, 217, 154, 179, 128, 75, 110, 233, 254, 148, 191, 40, 216, 102, 159, 27, + 86, 121, 110, 233, 55, 163, 152, 52, 128, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2164, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "87008fbd" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f4487008fbdffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 68, 135, 0, 143, 189, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2165, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8775599748074189817" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14145514522520333275" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "807a4926bc1c4a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "33d29b30768a9a64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15126756312480382819" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12957004351863529711" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16466463440607501708" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10323305299026325217" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12508725451998297186" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7950262194485202935" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "65a5" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11108176136921887829" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "72cdd490d767889c11a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "039e95de602aca70af4a" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b79c93179caf833f99f9fbf1bc44ef68317f42bdb47807a4926bc1c4a4833d29b30768a9a641bd1ed08b8a14a7f63ffffa09f1bb3d086cf120420ef9f41bc1be484a141945ddd8cff9f1b8f43bf79685f2ee11bad97eb86473efc624175ffd8669f1b6e550157f5820ff79f4265a5ffffff1b9a282b57c7b33455bf4a72cdd490d767889c11a84a039e95de602aca70af4affffff", + "cborBytes": [ + 216, 102, 159, 27, 121, 201, 49, 121, 202, 248, 51, 249, 159, 159, 191, 27, 196, 78, 246, 131, 23, 244, 43, 219, + 71, 128, 122, 73, 38, 188, 28, 74, 72, 51, 210, 155, 48, 118, 138, 154, 100, 27, 209, 237, 8, 184, 161, 74, 127, + 99, 255, 255, 160, 159, 27, 179, 208, 134, 207, 18, 4, 32, 239, 159, 65, 188, 27, 228, 132, 161, 65, 148, 93, 221, + 140, 255, 159, 27, 143, 67, 191, 121, 104, 95, 46, 225, 27, 173, 151, 235, 134, 71, 62, 252, 98, 65, 117, 255, + 216, 102, 159, 27, 110, 85, 1, 87, 245, 130, 15, 247, 159, 66, 101, 165, 255, 255, 255, 27, 154, 40, 43, 87, 199, + 179, 52, 85, 191, 74, 114, 205, 212, 144, 215, 103, 136, 156, 17, 168, 74, 3, 158, 149, 222, 96, 42, 202, 112, + 175, 74, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2166, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4827263568739600721" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9065418434173557930" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13962249402593420006" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5dc3eaee96cf" + }, + { + "_tag": "ByteArray", + "bytearray": "ab8f973dc2a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14848943778222175851" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "883124890291190268" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "77d0458ddde26d65e752a2" + }, + { + "_tag": "ByteArray", + "bytearray": "7bed334940e2" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ec1d34380fbdf01968c7e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8499715464685689078" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "375a7ed6810269f10252e705" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "958123797b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "394cffc9e7fef3f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2fe5aeef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55890742" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15165099606729727981" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b42fde2a3cbe889519fd8669f1b7dced60905315caa9f419e9f41dc1bc1c3dfdb42fda2e6465dc3eaee96cf46ab8f973dc2a61bce120bb176adf66bffffff9f1b0c417d68a21cb9fc9f4b77d0458ddde26d65e752a2467bed334940e2ffffbf4b2ec1d34380fbdf01968c7e1b75f50e2e847c18f64c375a7ed6810269f10252e70545958123797b48394cffc9e7fef3f7442fe5aeef44558907421bd27541be828a9fedffffff", + "cborBytes": [ + 216, 102, 159, 27, 66, 253, 226, 163, 203, 232, 137, 81, 159, 216, 102, 159, 27, 125, 206, 214, 9, 5, 49, 92, 170, + 159, 65, 158, 159, 65, 220, 27, 193, 195, 223, 219, 66, 253, 162, 230, 70, 93, 195, 234, 238, 150, 207, 70, 171, + 143, 151, 61, 194, 166, 27, 206, 18, 11, 177, 118, 173, 246, 107, 255, 255, 255, 159, 27, 12, 65, 125, 104, 162, + 28, 185, 252, 159, 75, 119, 208, 69, 141, 221, 226, 109, 101, 231, 82, 162, 70, 123, 237, 51, 73, 64, 226, 255, + 255, 191, 75, 46, 193, 211, 67, 128, 251, 223, 1, 150, 140, 126, 27, 117, 245, 14, 46, 132, 124, 24, 246, 76, 55, + 90, 126, 214, 129, 2, 105, 241, 2, 82, 231, 5, 69, 149, 129, 35, 121, 123, 72, 57, 76, 255, 201, 231, 254, 243, + 247, 68, 47, 229, 174, 239, 68, 85, 137, 7, 66, 27, 210, 117, 65, 190, 130, 138, 159, 237, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2167, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "685f4d892da3732c745f" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f4a685f4d892da3732c745fffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 74, 104, 95, 77, 137, 45, 163, 115, 44, 116, 95, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2168, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d302de33" + }, + { + "_tag": "ByteArray", + "bytearray": "3d428d3f41ba67c68d" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9f44d302de33493d428d3f41ba67c68dffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 68, 211, 2, 222, 51, 73, 61, 66, 141, 63, 65, 186, + 103, 198, 141, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2169, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11472689972459975769" + } + } + ] + }, + "cborHex": "d905099f1b9f372ebebaa9b459ff", + "cborBytes": [217, 5, 9, 159, 27, 159, 55, 46, 190, 186, 169, 180, 89, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2170, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "964293235516dfff7d" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5791947949170516327" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72e7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4ff6d099451ea2d79" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4477770741102041602" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f23a5538f00c40" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18350652788317176414" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "343398692346250780" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3e0cb487fbc7ac1d" + }, + { + "_tag": "ByteArray", + "bytearray": "8adb7071" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11884270758818843945" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0d8a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10655544340174347955" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10879756585805604432" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3266793634927068675" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ffff4" + }, + { + "_tag": "ByteArray", + "bytearray": "ca7ba0b61499835ffb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15695433781906147096" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8328116227769938781" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "38bbbe1b2b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14411099481998777627" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6862470725536654869" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d16bbbd3d9" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fb03c8d600bafd8705" + } + ] + }, + "cborHex": "d905059f49964293235516dfff7da09fa0bf1b506121f903dc61674272e749a4ff6d099451ea2d791b3e243cc3c9065a0247f23a5538f00c401bfeaa9d7c2c2d425effff9f1b04c3ff4a91a1c61c9f483e0cb487fbc7ac1d448adb70711ba4ed694a21f58d29ff420d8ad8669f1b93e0191f34841eb39f1b96fca8f8aba8e6501b2d55fb80b455c603434ffff449ca7ba0b61499835ffb1bd9d161ddde2e8718ffffd8669f1b73936995bc64b35d9f4538bbbe1b2b1bc7fe82a0275a5d1b1b5f3c64c41521261545d16bbbd3d9ffffff49fb03c8d600bafd8705ff", + "cborBytes": [ + 217, 5, 5, 159, 73, 150, 66, 147, 35, 85, 22, 223, 255, 125, 160, 159, 160, 191, 27, 80, 97, 33, 249, 3, 220, 97, + 103, 66, 114, 231, 73, 164, 255, 109, 9, 148, 81, 234, 45, 121, 27, 62, 36, 60, 195, 201, 6, 90, 2, 71, 242, 58, + 85, 56, 240, 12, 64, 27, 254, 170, 157, 124, 44, 45, 66, 94, 255, 255, 159, 27, 4, 195, 255, 74, 145, 161, 198, + 28, 159, 72, 62, 12, 180, 135, 251, 199, 172, 29, 68, 138, 219, 112, 113, 27, 164, 237, 105, 74, 33, 245, 141, 41, + 255, 66, 13, 138, 216, 102, 159, 27, 147, 224, 25, 31, 52, 132, 30, 179, 159, 27, 150, 252, 168, 248, 171, 168, + 230, 80, 27, 45, 85, 251, 128, 180, 85, 198, 3, 67, 79, 255, 244, 73, 202, 123, 160, 182, 20, 153, 131, 95, 251, + 27, 217, 209, 97, 221, 222, 46, 135, 24, 255, 255, 216, 102, 159, 27, 115, 147, 105, 149, 188, 100, 179, 93, 159, + 69, 56, 187, 190, 27, 43, 27, 199, 254, 130, 160, 39, 90, 93, 27, 27, 95, 60, 100, 196, 21, 33, 38, 21, 69, 209, + 107, 187, 211, 217, 255, 255, 255, 73, 251, 3, 200, 214, 0, 186, 253, 135, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2171, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16912098058784288204" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afe4f6503d717ad57e917a6f" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5639417854997977576" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4674093589913660964" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1e7cfa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17391634015897954567" + } + }, + { + "_tag": "ByteArray", + "bytearray": "97f99e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8033318218725143526" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17640115728791360630" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12588689584753751318" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c56af3028bb27f79" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18250683655801643608" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905019fbf1beab3d79490692dcc4cafe4f6503d717ad57e917a6fff9f1b4e433ca9032659e8d8669f1b40ddb75b09bbee249f431e7cfa1bf15b7efe1d32a9074397f99effffd8669f1b6f7c145b8ac933e69f1bf4ce47cb4363d476ffffd8669f1baeb4027ac6e835169f48c56af3028bb27f791bfd477416b415a258ffffffff", + "cborBytes": [ + 217, 5, 1, 159, 191, 27, 234, 179, 215, 148, 144, 105, 45, 204, 76, 175, 228, 246, 80, 61, 113, 122, 213, 126, + 145, 122, 111, 255, 159, 27, 78, 67, 60, 169, 3, 38, 89, 232, 216, 102, 159, 27, 64, 221, 183, 91, 9, 187, 238, + 36, 159, 67, 30, 124, 250, 27, 241, 91, 126, 254, 29, 50, 169, 7, 67, 151, 249, 158, 255, 255, 216, 102, 159, 27, + 111, 124, 20, 91, 138, 201, 51, 230, 159, 27, 244, 206, 71, 203, 67, 99, 212, 118, 255, 255, 216, 102, 159, 27, + 174, 180, 2, 122, 198, 232, 53, 22, 159, 72, 197, 106, 243, 2, 139, 178, 127, 121, 27, 253, 71, 116, 22, 180, 21, + 162, 88, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2172, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9db8c9a32d5b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13827412331009344514" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1885696077669738650" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72" + }, + { + "_tag": "ByteArray", + "bytearray": "74ce8a9d662ae637544da253" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9393979999973170549" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6156680277986659218" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9834288886501122970" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3875151098246226286" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3298539738122397024" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905009f469db8c9a32d5bd8669f1bbfe4d64118ab04029f1b1a2b56977fda289a41724c74ce8a9d662ae637544da2531b825e1f09dd865d75ffffd8669f1b5570ec17e50c4b929f1b887a69a35278a39a1b35c74d6475ee616e1b2dc6c46a584ba560ffff80ff", + "cborBytes": [ + 217, 5, 0, 159, 70, 157, 184, 201, 163, 45, 91, 216, 102, 159, 27, 191, 228, 214, 65, 24, 171, 4, 2, 159, 27, 26, + 43, 86, 151, 127, 218, 40, 154, 65, 114, 76, 116, 206, 138, 157, 102, 42, 230, 55, 84, 77, 162, 83, 27, 130, 94, + 31, 9, 221, 134, 93, 117, 255, 255, 216, 102, 159, 27, 85, 112, 236, 23, 229, 12, 75, 146, 159, 27, 136, 122, 105, + 163, 82, 120, 163, 154, 27, 53, 199, 77, 100, 117, 238, 97, 110, 27, 45, 198, 196, 106, 88, 75, 165, 96, 255, 255, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2173, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2538417382278189701" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "459944396250275427" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "758ffe27d1d354e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a27ead79" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38833de5" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9e6908" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9973644928045034440" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e71ea13a5560493549" + }, + { + "_tag": "ByteArray", + "bytearray": "f117bcf70762" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9389827988084598709" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9067714570209220732" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7688d8f5a622e0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4925621266669929714" + } + }, + { + "_tag": "ByteArray", + "bytearray": "67588d5b" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69fd8669f1b233a4528fa5e52859f1b06620cfdd2edde63bf48758ffe27d1d354e7415844a27ead794438833de5ffffff439e69089f9f1b8a6981382c002bc8ff49e71ea13a556049354946f117bcf707629f1b824f5ece43cda7b51b7dd6fe5bd9f4587c477688d8f5a622e01b445b5271e9f884f24467588d5bffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 216, 102, 159, 27, 35, 58, 69, 40, 250, 94, 82, + 133, 159, 27, 6, 98, 12, 253, 210, 237, 222, 99, 191, 72, 117, 143, 254, 39, 209, 211, 84, 231, 65, 88, 68, 162, + 126, 173, 121, 68, 56, 131, 61, 229, 255, 255, 255, 67, 158, 105, 8, 159, 159, 27, 138, 105, 129, 56, 44, 0, 43, + 200, 255, 73, 231, 30, 161, 58, 85, 96, 73, 53, 73, 70, 241, 23, 188, 247, 7, 98, 159, 27, 130, 79, 94, 206, 67, + 205, 167, 181, 27, 125, 214, 254, 91, 217, 244, 88, 124, 71, 118, 136, 216, 245, 166, 34, 224, 27, 68, 91, 82, + 113, 233, 248, 132, 242, 68, 103, 88, 141, 91, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2174, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13308855010213568705" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3781545869433976253" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6141275762977601423" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11253523408367856434" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37020fa330eed0fec19efd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79d1626933f0a1ab65" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99e21c1f710bbd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7609378932735312308" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bb8b28d1e52f520c19f1b347abfeec97535bdd8669f1b553a31c4bffef78f80ffbf41181b9c2c8bea8b4f2b324b37020fa330eed0fec19efd4979d1626933f0a1ab654799e21c1f710bbd1b6999f1d2b70781b4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 184, 178, 141, 30, 82, 245, 32, 193, 159, 27, 52, 122, 191, 238, 201, 117, 53, 189, 216, 102, + 159, 27, 85, 58, 49, 196, 191, 254, 247, 143, 128, 255, 191, 65, 24, 27, 156, 44, 139, 234, 139, 79, 43, 50, 75, + 55, 2, 15, 163, 48, 238, 208, 254, 193, 158, 253, 73, 121, 209, 98, 105, 51, 240, 161, 171, 101, 71, 153, 226, 28, + 31, 113, 11, 189, 27, 105, 153, 241, 210, 183, 7, 129, 180, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2175, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13811683012463135692" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9551289438450883771" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01" + } + ] + }, + "cborHex": "d8669f1bbfacf485bc298bcc9f1b848cff23adce1cbb804103094101ffff", + "cborBytes": [ + 216, 102, 159, 27, 191, 172, 244, 133, 188, 41, 139, 204, 159, 27, 132, 140, 255, 35, 173, 206, 28, 187, 128, 65, + 3, 9, 65, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2176, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16733351328203963538" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1be838ce603b687c929fa0ffff", + "cborBytes": [216, 102, 159, 27, 232, 56, 206, 96, 59, 104, 124, 146, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2177, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6327383007561194013" + }, + "fields": [] + }, + "cborHex": "d8669f1b57cf61524b871a1d80ff", + "cborBytes": [216, 102, 159, 27, 87, 207, 97, 82, 75, 135, 26, 29, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2178, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17017001900196245852" + }, + "fields": [] + }, + "cborHex": "d8669f1bec2889117b58315c80ff", + "cborBytes": [216, 102, 159, 27, 236, 40, 137, 17, 123, 88, 49, 92, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2179, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "45ef74c2efdb68a5e41e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7507209675702750989" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4479805303846705602" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d274020b23d3755065cdecb" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0701019a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "273069348211409187" + } + }, + { + "_tag": "ByteArray", + "bytearray": "186a76d4" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f4a45ef74c2efdb68a5e41ed8669f1b682ef76cd6a34f0d9f9f1b3e2b773056b199c24c2d274020b23d3755065cdecbffd87a9f440701019a1b03ca23201b30412344186a76d4ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 74, 69, 239, 116, 194, 239, 219, 104, 165, 228, + 30, 216, 102, 159, 27, 104, 46, 247, 108, 214, 163, 79, 13, 159, 159, 27, 62, 43, 119, 48, 86, 177, 153, 194, 76, + 45, 39, 64, 32, 178, 61, 55, 85, 6, 92, 222, 203, 255, 216, 122, 159, 68, 7, 1, 1, 154, 27, 3, 202, 35, 32, 27, + 48, 65, 35, 68, 24, 106, 118, 212, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2180, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10288961531702623856" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5127144802304414442" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17409720937161033398" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13868613922007271042" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9530219244076687037" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9376439033306899627" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14321749474205251380" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13714534044455685575" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14316417708344484380" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a77d9d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e9ff645494be0c4463f1798" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64bd2b695d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7940383760889365984" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8077410922725725673" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15455266214040300845" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16136603874724422858" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17663898298264002512" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2092360793721285205" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8f0fa224a8d04210b06" + }, + { + "_tag": "ByteArray", + "bytearray": "14" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "943567297908260021" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99fd8669f1b8ec9bbfff4cb3e709f9f1b472747086d5852ea41c01bf19bc0f3a22a06b61bc07736e20c47c6821b844223e8c2c85ebdffbf1b821fcd9f4e5d64ab1bc6c11344542437341bbe53d00cfbc84dc71bc6ae220dd9fc221c442a77d9d04c8e9ff645494be0c4463f17984564bd2b695d1b6e31e8f5e81745e0ffffffd8669f1b7018ba7031ed55e99fd8669f1bd67c22bc74f7ed2d9f1bdff0bbba8a2424ca1bf522c5ea38a71fd01b1d098f0e5bb62a554ac8f0fa224a8d04210b064114ffffffffd8669f1b0d1839754d7f3cb580ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 216, 102, 159, 27, 142, 201, 187, 255, 244, 203, + 62, 112, 159, 159, 27, 71, 39, 71, 8, 109, 88, 82, 234, 65, 192, 27, 241, 155, 192, 243, 162, 42, 6, 182, 27, 192, + 119, 54, 226, 12, 71, 198, 130, 27, 132, 66, 35, 232, 194, 200, 94, 189, 255, 191, 27, 130, 31, 205, 159, 78, 93, + 100, 171, 27, 198, 193, 19, 68, 84, 36, 55, 52, 27, 190, 83, 208, 12, 251, 200, 77, 199, 27, 198, 174, 34, 13, + 217, 252, 34, 28, 68, 42, 119, 217, 208, 76, 142, 159, 246, 69, 73, 75, 224, 196, 70, 63, 23, 152, 69, 100, 189, + 43, 105, 93, 27, 110, 49, 232, 245, 232, 23, 69, 224, 255, 255, 255, 216, 102, 159, 27, 112, 24, 186, 112, 49, + 237, 85, 233, 159, 216, 102, 159, 27, 214, 124, 34, 188, 116, 247, 237, 45, 159, 27, 223, 240, 187, 186, 138, 36, + 36, 202, 27, 245, 34, 197, 234, 56, 167, 31, 208, 27, 29, 9, 143, 14, 91, 182, 42, 85, 74, 200, 240, 250, 34, 74, + 141, 4, 33, 11, 6, 65, 20, 255, 255, 255, 255, 216, 102, 159, 27, 13, 24, 57, 117, 77, 127, 60, 181, 128, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2181, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6694505179756231073" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abe965" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7182141353547703931" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17896575462212291051" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78434bedfb7f0d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcb34397" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5ec36b5058eba86df7b" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69fbf1b5ce7a8fdf261f9a143abe9651b63ac178228daa67b1bf85d68901122c9eb415d4778434bedfb7f0d44fcb343974aa5ec36b5058eba86df7bffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 191, 27, 92, 231, 168, 253, 242, 97, 249, 161, 67, + 171, 233, 101, 27, 99, 172, 23, 130, 40, 218, 166, 123, 27, 248, 93, 104, 144, 17, 34, 201, 235, 65, 93, 71, 120, + 67, 75, 237, 251, 127, 13, 68, 252, 179, 67, 151, 74, 165, 236, 54, 181, 5, 142, 186, 134, 223, 123, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2182, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4d04bbb215c0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3000195066611649035" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "89" + }, + { + "_tag": "ByteArray", + "bytearray": "5da70c4036b2fb" + }, + { + "_tag": "ByteArray", + "bytearray": "0124936049ae30429a630b" + }, + { + "_tag": "ByteArray", + "bytearray": "2ae442" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d4" + }, + { + "_tag": "ByteArray", + "bytearray": "c437ca259a598dee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6725433452983042965" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f464d04bbb215c09fd8669f1b29a2d58472444a0b9f4189475da70c4036b2fb4b0124936049ae30429a630b432ae442ffff9f41d448c437ca259a598dee1b5d558a17b5954395ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 70, 77, 4, 187, 178, 21, 192, 159, 216, 102, 159, + 27, 41, 162, 213, 132, 114, 68, 74, 11, 159, 65, 137, 71, 93, 167, 12, 64, 54, 178, 251, 75, 1, 36, 147, 96, 73, + 174, 48, 66, 154, 99, 11, 67, 42, 228, 66, 255, 255, 159, 65, 212, 72, 196, 55, 202, 37, 154, 89, 141, 238, 27, + 93, 85, 138, 23, 181, 149, 67, 149, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2183, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8381350291927072894" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6187863902961535369" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6902788555568968244" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5216777453052528272" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3982693477142988920" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16536951577466003204" + } + }, + { + "_tag": "ByteArray", + "bytearray": "69" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6679507455414489832" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "825162" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14524655387691191362" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6a677ff9d4628" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16715236573361864373" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "207c375ce8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3701456600737850267" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4071269455962528505" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f1b745089af286e007e9f1b55dfb56f5e7c09891b5fcba19e6651f234a0ffd8669f1b4865b774317686909f1b37455e9dc25f88781be57f0dd7dab25f044169bf1b5cb260a4228dd2e8438251621bc991f11ec44c0c4247b6a677ff9d46281be7f8731a33d9feb545207c375ce8ff9f1b335e372ace81239b1b38800dffeb8b5af9ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 27, 116, 80, 137, 175, 40, 110, 0, 126, 159, 27, + 85, 223, 181, 111, 94, 124, 9, 137, 27, 95, 203, 161, 158, 102, 81, 242, 52, 160, 255, 216, 102, 159, 27, 72, 101, + 183, 116, 49, 118, 134, 144, 159, 27, 55, 69, 94, 157, 194, 95, 136, 120, 27, 229, 127, 13, 215, 218, 178, 95, 4, + 65, 105, 191, 27, 92, 178, 96, 164, 34, 141, 210, 232, 67, 130, 81, 98, 27, 201, 145, 241, 30, 196, 76, 12, 66, + 71, 182, 166, 119, 255, 157, 70, 40, 27, 231, 248, 115, 26, 51, 217, 254, 181, 69, 32, 124, 55, 92, 232, 255, 159, + 27, 51, 94, 55, 42, 206, 129, 35, 155, 27, 56, 128, 13, 255, 235, 139, 90, 249, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2184, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "537331479746302842" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "410032319053858416" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "95004381586102143" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4092610147179529446" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7044320272793819879" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6567197389199493181" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce37870c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10828534990141447448" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4402538132536076880" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "cd12d2b6d43f18e1fd73" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6537046742293246224" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9707187547126532829" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15073272776917094821" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7d1783" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2419590030106945870" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3874d931b8a85b92079b4e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2593365502180163292" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4111052002110960943" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3164154565845960665" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de657fd47f261027210386" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4256642524052603804" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17504858524773881297" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12093387698387749151" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5040490883959101868" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18276801680192245643" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8913664b4470958d752fe" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7042263692da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7948046549843472791" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "705c25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72718332" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905069fd8669f1b0774fc2248e9d37a9fbf1b05b0ba38c3a286701b015185fb508b977f1b38cbdf3ecacb84e61b61c273f737f55ae71b5b235f3b211bc83d44ce37870c1b9646af339544dd181b3d18f51b1becaa50ff804acd12d2b6d43f18e1fd73ffff809fd8669f1b5ab841609a8371109f41011b86b6dba4aa928add1bd12f05ba9eb591a5ffff437d1783bf1b21941c501699e94e4b3874d931b8a85b92079b4e1b23fd7c2f1a337edc1b390d6403befb752f1b2be955d02fadc7d94bde657fd47f2610272103861b3b12a1d2adfa439c1bf2edc015649d95d11ba7d45809c57b091f1b45f36bc0d7fa19ac1bfda43e4b221f0f8b4ba8913664b4470958d752feffbf467042263692da1b6e4d2239fdb0719743705c254472718332ffffff", + "cborBytes": [ + 217, 5, 6, 159, 216, 102, 159, 27, 7, 116, 252, 34, 72, 233, 211, 122, 159, 191, 27, 5, 176, 186, 56, 195, 162, + 134, 112, 27, 1, 81, 133, 251, 80, 139, 151, 127, 27, 56, 203, 223, 62, 202, 203, 132, 230, 27, 97, 194, 115, 247, + 55, 245, 90, 231, 27, 91, 35, 95, 59, 33, 27, 200, 61, 68, 206, 55, 135, 12, 27, 150, 70, 175, 51, 149, 68, 221, + 24, 27, 61, 24, 245, 27, 27, 236, 170, 80, 255, 128, 74, 205, 18, 210, 182, 212, 63, 24, 225, 253, 115, 255, 255, + 128, 159, 216, 102, 159, 27, 90, 184, 65, 96, 154, 131, 113, 16, 159, 65, 1, 27, 134, 182, 219, 164, 170, 146, + 138, 221, 27, 209, 47, 5, 186, 158, 181, 145, 165, 255, 255, 67, 125, 23, 131, 191, 27, 33, 148, 28, 80, 22, 153, + 233, 78, 75, 56, 116, 217, 49, 184, 168, 91, 146, 7, 155, 78, 27, 35, 253, 124, 47, 26, 51, 126, 220, 27, 57, 13, + 100, 3, 190, 251, 117, 47, 27, 43, 233, 85, 208, 47, 173, 199, 217, 75, 222, 101, 127, 212, 127, 38, 16, 39, 33, + 3, 134, 27, 59, 18, 161, 210, 173, 250, 67, 156, 27, 242, 237, 192, 21, 100, 157, 149, 209, 27, 167, 212, 88, 9, + 197, 123, 9, 31, 27, 69, 243, 107, 192, 215, 250, 25, 172, 27, 253, 164, 62, 75, 34, 31, 15, 139, 75, 168, 145, + 54, 100, 180, 71, 9, 88, 215, 82, 254, 255, 191, 70, 112, 66, 38, 54, 146, 218, 27, 110, 77, 34, 57, 253, 176, + 113, 151, 67, 112, 92, 37, 68, 114, 113, 131, 50, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2185, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "524914651647219506" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7f9f5c2d8cf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "754871052670292254" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8183100486446681238" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3297377786608594206" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18070237811300089291" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3343069277319971293" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2357120210488815440" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6640031485636729403" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11053150627580910890" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7913450069620264335" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12572355963674271664" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11871969762709094328" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9fbf1b0748df1834d4973246c7f9f5c2d8cf1b0a79d73911a3511e1b7190368957fb0c961b2dc2a3a06d11ad1e1bfac6618c955fbdcb1b2e64f7cb9e2dc1dd1b20b62c57c7146f501b5c262174aec95a3b1b9964adef05d89d2a1b6dd238e93b818d8f1bae79fb2344919fb0ff1ba4c1b5994a743fb8ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 191, 27, 7, 72, 223, 24, 52, 212, 151, 50, 70, + 199, 249, 245, 194, 216, 207, 27, 10, 121, 215, 57, 17, 163, 81, 30, 27, 113, 144, 54, 137, 87, 251, 12, 150, 27, + 45, 194, 163, 160, 109, 17, 173, 30, 27, 250, 198, 97, 140, 149, 95, 189, 203, 27, 46, 100, 247, 203, 158, 45, + 193, 221, 27, 32, 182, 44, 87, 199, 20, 111, 80, 27, 92, 38, 33, 116, 174, 201, 90, 59, 27, 153, 100, 173, 239, 5, + 216, 157, 42, 27, 109, 210, 56, 233, 59, 129, 141, 143, 27, 174, 121, 251, 35, 68, 145, 159, 176, 255, 27, 164, + 193, 181, 153, 74, 116, 63, 184, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2186, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15784830926726798636" + }, + "fields": [] + }, + "cborHex": "d8669f1bdb0efc18a3269d2c80ff", + "cborBytes": [216, 102, 159, 27, 219, 14, 252, 24, 163, 38, 157, 44, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2187, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f2fb00f4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2561101643950571970" + } + } + ] + }, + "cborHex": "d905089f44f2fb00f41b238adc603957c1c2ff", + "cborBytes": [217, 5, 8, 159, 68, 242, 251, 0, 244, 27, 35, 138, 220, 96, 57, 87, 193, 194, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2188, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15009652607944138003" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "beeecbc5564b64f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0963fc7948cf41dc9d6714ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed8be22a015aaced" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1592086079570381639" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3052946692848808776" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12246905213516374266" + } + } + ] + }, + "cborHex": "d8669f1bd04cff85ba869d139f9fbf48beeecbc5564b64f74c0963fc7948cf41dc9d6714ff48ed8be22a015aaced1b161839daa8a30b47ffff1b2a5e3ed78974f3481ba9f5bf67a185e0faffff", + "cborBytes": [ + 216, 102, 159, 27, 208, 76, 255, 133, 186, 134, 157, 19, 159, 159, 191, 72, 190, 238, 203, 197, 86, 75, 100, 247, + 76, 9, 99, 252, 121, 72, 207, 65, 220, 157, 103, 20, 255, 72, 237, 139, 226, 42, 1, 90, 172, 237, 27, 22, 24, 57, + 218, 168, 163, 11, 71, 255, 255, 27, 42, 94, 62, 215, 137, 116, 243, 72, 27, 169, 245, 191, 103, 161, 133, 224, + 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2189, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1827084350217600891" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f46eaa9f8cdc4a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8510786533770259302" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af30f115" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8622949472214226887" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0241309bda" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13419082817370815570" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f7a7dcec00e5f58bf5b35" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17682422731827871611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8590058306977857946" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14162242677007743447" + } + } + ] + }, + "cborHex": "d87c9fbf1b195b1b8945653f7b47f46eaa9f8cdc4a1b761c6342a88deb6644af30f1151b77aadedbcf7897c7450241309bda1bba3a28b99cef7c524b2f7a7dcec00e5f58bf5b351bf56495ca02e47f7b1b77360484a34f019aff1bc48a64ae11ec79d7ff", + "cborBytes": [ + 216, 124, 159, 191, 27, 25, 91, 27, 137, 69, 101, 63, 123, 71, 244, 110, 170, 159, 140, 220, 74, 27, 118, 28, 99, + 66, 168, 141, 235, 102, 68, 175, 48, 241, 21, 27, 119, 170, 222, 219, 207, 120, 151, 199, 69, 2, 65, 48, 155, 218, + 27, 186, 58, 40, 185, 156, 239, 124, 82, 75, 47, 122, 125, 206, 192, 14, 95, 88, 191, 91, 53, 27, 245, 100, 149, + 202, 2, 228, 127, 123, 27, 119, 54, 4, 132, 163, 79, 1, 154, 255, 27, 196, 138, 100, 174, 17, 236, 121, 215, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2190, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7347544490617290533" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14839402006717974360" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15542420617674469504" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9294ad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12098775355382489193" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9568986762453368567" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "48d4148c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "39650ff72578a35bbd" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2912624810061701523" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5701512241105469858" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9931176612881433253" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f539b" + } + ] + }, + "cborHex": "d8669f1b65f7b8c9069f3f259fd8669f1bcdf02580a9a4c7589fd8669f1bd7b1c5345a31b0809f439294ad1ba7e77c156ad2e0691b84cbdec30472bef7ffff9f4448d4148cff4939650ff72578a35bbdffff1b286bb8d53fb7a1931b4f1fd72ce5a201a21b89d2a083047702a5438f539bffff", + "cborBytes": [ + 216, 102, 159, 27, 101, 247, 184, 201, 6, 159, 63, 37, 159, 216, 102, 159, 27, 205, 240, 37, 128, 169, 164, 199, + 88, 159, 216, 102, 159, 27, 215, 177, 197, 52, 90, 49, 176, 128, 159, 67, 146, 148, 173, 27, 167, 231, 124, 21, + 106, 210, 224, 105, 27, 132, 203, 222, 195, 4, 114, 190, 247, 255, 255, 159, 68, 72, 212, 20, 140, 255, 73, 57, + 101, 15, 247, 37, 120, 163, 91, 189, 255, 255, 27, 40, 107, 184, 213, 63, 183, 161, 147, 27, 79, 31, 215, 44, 229, + 162, 1, 162, 27, 137, 210, 160, 131, 4, 119, 2, 165, 67, 143, 83, 155, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2191, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16813695597689174226" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00279d9758" + } + ] + }, + "cborHex": "d905059f1be9563f1035cff8d24500279d9758ff", + "cborBytes": [217, 5, 5, 159, 27, 233, 86, 63, 16, 53, 207, 248, 210, 69, 0, 39, 157, 151, 88, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2192, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6522538151931005758" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1e381c19fd3f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11550902410313145303" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13941297477628382558" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12920500770304237144" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16662104134101055561" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5774553305943535338" + } + } + } + ] + } + ] + }, + "cborHex": "d87f9f9f9f1b5a84b5e42bc7cb3e461e381c19fd3f1ba04d0c8af9eb1bd71bc17970311616cd5e1bb34ed6feae251e58ffffbf1be73baf6e2ba938491b502355a309526eeaffff", + "cborBytes": [ + 216, 127, 159, 159, 159, 27, 90, 132, 181, 228, 43, 199, 203, 62, 70, 30, 56, 28, 25, 253, 63, 27, 160, 77, 12, + 138, 249, 235, 27, 215, 27, 193, 121, 112, 49, 22, 22, 205, 94, 27, 179, 78, 214, 254, 174, 37, 30, 88, 255, 255, + 191, 27, 231, 59, 175, 110, 43, 169, 56, 73, 27, 80, 35, 85, 163, 9, 82, 110, 234, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2193, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11351872357352945684" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13750322222345765218" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e9db61fac44f24f0f3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10459692114628701668" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13407838943064003704" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15670318972843396217" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "829403428b2f1d30d0cf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7312537418304991" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6a30d818fc75" + }, + { + "_tag": "ByteArray", + "bytearray": "42ffb56e355998d30180649e" + }, + { + "_tag": "ByteArray", + "bytearray": "d7f99f94a34e54" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ee6c013efbcb726e" + } + ] + } + ] + }, + "cborHex": "d905099f1b9d89f3c3a3993814809f1bbed2f5357a14416249e9db61fac44f24f0f3ff9fd8669f1b91284a8f7865ede480ffd8669f1bba12367b1efa947880ffd8669f1bd9782814b5650c799f4a829403428b2f1d30d0cf1b0019fab6cb398ddf466a30d818fc754c42ffb56e355998d30180649e47d7f99f94a34e54ffff48ee6c013efbcb726effff", + "cborBytes": [ + 217, 5, 9, 159, 27, 157, 137, 243, 195, 163, 153, 56, 20, 128, 159, 27, 190, 210, 245, 53, 122, 20, 65, 98, 73, + 233, 219, 97, 250, 196, 79, 36, 240, 243, 255, 159, 216, 102, 159, 27, 145, 40, 74, 143, 120, 101, 237, 228, 128, + 255, 216, 102, 159, 27, 186, 18, 54, 123, 30, 250, 148, 120, 128, 255, 216, 102, 159, 27, 217, 120, 40, 20, 181, + 101, 12, 121, 159, 74, 130, 148, 3, 66, 139, 47, 29, 48, 208, 207, 27, 0, 25, 250, 182, 203, 57, 141, 223, 70, + 106, 48, 216, 24, 252, 117, 76, 66, 255, 181, 110, 53, 89, 152, 211, 1, 128, 100, 158, 71, 215, 249, 159, 148, + 163, 78, 84, 255, 255, 72, 238, 108, 1, 62, 251, 203, 114, 110, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2194, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14311722948090261672" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6103839481251998761" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "495920648685666267" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6174806016210810702" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "929383575437479360" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1106624990880045340" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1901484435144905860" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8517864496683453148" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50536d278ed97f40a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12926614980261836958" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16134616966784890969" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12937890110739722650" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3779035899092231506" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bc69d7431ccb9f0a89f1b54b531ab2e07ac29bf1b06e1dd33d5b0bfdb1b55b1515b3130b74e1b0ce5d57012088dc01b0f5b8590e8f9991c1b1a636e04eebf148441241b763588a151ba8adc4950536d278ed97f40a51bb3648fd61ebff89e1bdfe9aca57c3438591bb38c9e8201ae319a1b3471d520c6d76552ffffff", + "cborBytes": [ + 216, 102, 159, 27, 198, 157, 116, 49, 204, 185, 240, 168, 159, 27, 84, 181, 49, 171, 46, 7, 172, 41, 191, 27, 6, + 225, 221, 51, 213, 176, 191, 219, 27, 85, 177, 81, 91, 49, 48, 183, 78, 27, 12, 229, 213, 112, 18, 8, 141, 192, + 27, 15, 91, 133, 144, 232, 249, 153, 28, 27, 26, 99, 110, 4, 238, 191, 20, 132, 65, 36, 27, 118, 53, 136, 161, 81, + 186, 138, 220, 73, 80, 83, 109, 39, 142, 217, 127, 64, 165, 27, 179, 100, 143, 214, 30, 191, 248, 158, 27, 223, + 233, 172, 165, 124, 52, 56, 89, 27, 179, 140, 158, 130, 1, 174, 49, 154, 27, 52, 113, 213, 32, 198, 215, 101, 82, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2195, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "851669387740078510" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "857e47b5f7" + } + ] + }, + "cborHex": "d8669f1b0bd1bccbba5261ae9f45857e47b5f7ffff", + "cborBytes": [216, 102, 159, 27, 11, 209, 188, 203, 186, 82, 97, 174, 159, 69, 133, 126, 71, 181, 247, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2196, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3527097235043759270" + }, + "fields": [] + }, + "cborHex": "d8669f1b30f2c43f770bb4a680ff", + "cborBytes": [216, 102, 159, 27, 48, 242, 196, 63, 119, 11, 180, 166, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2197, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7627180219606123725" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10790046682575941473" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13781170239158672293" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de7c6c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15051431575779015141" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15082038390230230168" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12891770598549468433" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0eb5a338dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "645c0dacbc68048a76a35f" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9fbf1b69d92fffcb8244cd1b95bdf24a28d22f611bbf408d51163cdba543de7c6c1bd0e16d45b367f9e541651bd14e2a02027a24981bb2e8c50e4c5db511ff9fbf450eb5a338dd4b645c0dacbc68048a76a35fffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 191, 27, 105, 217, 47, 255, 203, 130, 68, 205, 27, + 149, 189, 242, 74, 40, 210, 47, 97, 27, 191, 64, 141, 81, 22, 60, 219, 165, 67, 222, 124, 108, 27, 208, 225, 109, + 69, 179, 103, 249, 229, 65, 101, 27, 209, 78, 42, 2, 2, 122, 36, 152, 27, 178, 232, 197, 14, 76, 93, 181, 17, 255, + 159, 191, 69, 14, 181, 163, 56, 221, 75, 100, 92, 13, 172, 188, 104, 4, 138, 118, 163, 95, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2198, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17970432706164591069" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13128813829128834572" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5fe8efc2d568" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5464706736911204741" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3936383167716987635" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1836741385476238730" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1427030122024378316" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7d8dc62aa436c2c116620355" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7456785110885822353" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16220597976277226411" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6630855461084822032" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9953683553583355946" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15793451966672827765" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f77e741ba1f020c2ef" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4635849233514591617" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02a4" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2224401612469395696" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f9a5804bbb0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18404257592440700397" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ced3e76c75b052262" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bf963cd55b70089dd9fd8669f1bb632ea9e3f75ce0c9f0b9f111bfffffffffffffff705ff465fe8efc2d5681b4bd689d2ef46c185ffffd8669f1b36a0d7a29b9912f380ffd8669f1b197d6a8f0191ed8a9fd8669f1b13cdd455d30b9fcc9f4c7d8dc62aa436c2c1166203551b677bd28cf4c56f911be11b23eb446c93abffffd8669f1b5c0587e8faeb7a109f1b8a22967481fbd82a1bdb2d9ce2eaba757549f77e741ba1f020c2ef1b4055d850ebe77581ffff4202a4ffffbf1b1edea97b2d0b60f0468f9a5804bbb01bff690ec53836bded495ced3e76c75b052262ffffff", + "cborBytes": [ + 216, 102, 159, 27, 249, 99, 205, 85, 183, 0, 137, 221, 159, 216, 102, 159, 27, 182, 50, 234, 158, 63, 117, 206, + 12, 159, 11, 159, 17, 27, 255, 255, 255, 255, 255, 255, 255, 247, 5, 255, 70, 95, 232, 239, 194, 213, 104, 27, 75, + 214, 137, 210, 239, 70, 193, 133, 255, 255, 216, 102, 159, 27, 54, 160, 215, 162, 155, 153, 18, 243, 128, 255, + 216, 102, 159, 27, 25, 125, 106, 143, 1, 145, 237, 138, 159, 216, 102, 159, 27, 19, 205, 212, 85, 211, 11, 159, + 204, 159, 76, 125, 141, 198, 42, 164, 54, 194, 193, 22, 98, 3, 85, 27, 103, 123, 210, 140, 244, 197, 111, 145, 27, + 225, 27, 35, 235, 68, 108, 147, 171, 255, 255, 216, 102, 159, 27, 92, 5, 135, 232, 250, 235, 122, 16, 159, 27, + 138, 34, 150, 116, 129, 251, 216, 42, 27, 219, 45, 156, 226, 234, 186, 117, 117, 73, 247, 126, 116, 27, 161, 240, + 32, 194, 239, 27, 64, 85, 216, 80, 235, 231, 117, 129, 255, 255, 66, 2, 164, 255, 255, 191, 27, 30, 222, 169, 123, + 45, 11, 96, 240, 70, 143, 154, 88, 4, 187, 176, 27, 255, 105, 14, 197, 56, 54, 189, 237, 73, 92, 237, 62, 118, + 199, 91, 5, 34, 98, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2199, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11690736747164273780" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "097f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44485fb9305350de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "111efb7021006cfc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d68" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86c0dab09385a53d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12007578851256045252" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bdea3d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc50d74010b7a904c1d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e01a5a2a34510b31bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab28" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f31cb334dd314b9feb212e7c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10201356127582405023" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a03a" + } + ] + }, + "cborHex": "d8669f1ba23dd721a1550c749fbf42097f4844485fb9305350de48111efb7021006cfc423d684886c0dab09385a53d1ba6a37d58a99c0ec4448bdea3d34adc50d74010b7a904c1d649e01a5a2a34510b31bb42ab284cf31cb334dd314b9feb212e7c1b8d927f5953cdc19fff42a03affff", + "cborBytes": [ + 216, 102, 159, 27, 162, 61, 215, 33, 161, 85, 12, 116, 159, 191, 66, 9, 127, 72, 68, 72, 95, 185, 48, 83, 80, 222, + 72, 17, 30, 251, 112, 33, 0, 108, 252, 66, 61, 104, 72, 134, 192, 218, 176, 147, 133, 165, 61, 27, 166, 163, 125, + 88, 169, 156, 14, 196, 68, 139, 222, 163, 211, 74, 220, 80, 215, 64, 16, 183, 169, 4, 193, 214, 73, 224, 26, 90, + 42, 52, 81, 11, 49, 187, 66, 171, 40, 76, 243, 28, 179, 52, 221, 49, 75, 159, 235, 33, 46, 124, 27, 141, 146, 127, + 89, 83, 205, 193, 159, 255, 66, 160, 58, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2200, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7087238918787238896" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1465282422210230394" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0bd4ba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22f5ce01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc5f113fb74c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fb96880d1a122877ec5a5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d70f8b957c4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "245dd9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f179" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9015d3ac0ab" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9127228461139623403" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12234396719769977991" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6151063571429449937" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf39" + }, + { + "_tag": "ByteArray", + "bytearray": "87d76beb17" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "199507759780751620" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "120ebfe3d066" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4847257517454260525" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15c84439e7a9896fd205b781" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0c8b71452" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "241c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14197218528687550676" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7602c0e5fe55224355620" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1257703461910515660" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6f568" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4b23f6e7951" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13757601874322984798" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7779183737646675647" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5ba31b690a17229f27" + }, + { + "_tag": "ByteArray", + "bytearray": "8db2f0" + }, + { + "_tag": "ByteArray", + "bytearray": "bc9fdc71" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18033543202507133171" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3aa3143afe69e5bb23" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8803337341138632566" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b625aee3f30a30bf09fd8669f1b1455ba997f76f87a9fa0bf430bd4ba419b4422f5ce0146fc5f113fb74c41b04b9fb96880d1a122877ec5a546d70f8b957c4c43245dd942f17946a9015d3ac0abff80d8669f1b7eaa6ded620ffdeb9f1ba9c94efefb1804871b555cf7ba7de5e0d142bf394587d76beb17ffffffffd8669f1b02c4cb401faa69049f46120ebfe3d0661b4344eb07beb3f92dffff9fbf4c15c84439e7a9896fd205b78145d0c8b71452415942241c41731bc506a7082103f0d44bd7602c0e5fe552243556201b117442a28ff48fcc43e6f56846c4b23f6e7951ff1bbeecd20388450f5ed8669f1b6bf53664bcecf6bf9f495ba31b690a17229f27438db2f044bc9fdc71ffff9f1bfa4403ff331910f3493aa3143afe69e5bb23ff1b7a2bbcab707fff76ffffff", + "cborBytes": [ + 216, 102, 159, 27, 98, 90, 238, 63, 48, 163, 11, 240, 159, 216, 102, 159, 27, 20, 85, 186, 153, 127, 118, 248, + 122, 159, 160, 191, 67, 11, 212, 186, 65, 155, 68, 34, 245, 206, 1, 70, 252, 95, 17, 63, 183, 76, 65, 176, 75, + 159, 185, 104, 128, 209, 161, 34, 135, 126, 197, 165, 70, 215, 15, 139, 149, 124, 76, 67, 36, 93, 217, 66, 241, + 121, 70, 169, 1, 93, 58, 192, 171, 255, 128, 216, 102, 159, 27, 126, 170, 109, 237, 98, 15, 253, 235, 159, 27, + 169, 201, 78, 254, 251, 24, 4, 135, 27, 85, 92, 247, 186, 125, 229, 224, 209, 66, 191, 57, 69, 135, 215, 107, 235, + 23, 255, 255, 255, 255, 216, 102, 159, 27, 2, 196, 203, 64, 31, 170, 105, 4, 159, 70, 18, 14, 191, 227, 208, 102, + 27, 67, 68, 235, 7, 190, 179, 249, 45, 255, 255, 159, 191, 76, 21, 200, 68, 57, 231, 169, 137, 111, 210, 5, 183, + 129, 69, 208, 200, 183, 20, 82, 65, 89, 66, 36, 28, 65, 115, 27, 197, 6, 167, 8, 33, 3, 240, 212, 75, 215, 96, 44, + 14, 95, 229, 82, 36, 53, 86, 32, 27, 17, 116, 66, 162, 143, 244, 143, 204, 67, 230, 245, 104, 70, 196, 178, 63, + 110, 121, 81, 255, 27, 190, 236, 210, 3, 136, 69, 15, 94, 216, 102, 159, 27, 107, 245, 54, 100, 188, 236, 246, + 191, 159, 73, 91, 163, 27, 105, 10, 23, 34, 159, 39, 67, 141, 178, 240, 68, 188, 159, 220, 113, 255, 255, 159, 27, + 250, 68, 3, 255, 51, 25, 16, 243, 73, 58, 163, 20, 58, 254, 105, 229, 187, 35, 255, 27, 122, 43, 188, 171, 112, + 127, 255, 118, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2201, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3310809578455814375" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "edd9ed79f530a6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12509210821737246882" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0cf5b7ffac04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "868714c8ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6233873607214802657" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "911244" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9f01ad57b26" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4644997982847935345" + } + } + ] + }, + "cborHex": "d8669f1b2df25bc52ad1d0e79f47edd9ed79f530a6bf1bad99a4f73a1ef0a2460cf5b7ffac0445868714c8ed1b56832b046cb8a6e14391124446e9f01ad57b26ff1b4076590e1e0ea371ffff", + "cborBytes": [ + 216, 102, 159, 27, 45, 242, 91, 197, 42, 209, 208, 231, 159, 71, 237, 217, 237, 121, 245, 48, 166, 191, 27, 173, + 153, 164, 247, 58, 30, 240, 162, 70, 12, 245, 183, 255, 172, 4, 69, 134, 135, 20, 200, 237, 27, 86, 131, 43, 4, + 108, 184, 166, 225, 67, 145, 18, 68, 70, 233, 240, 26, 213, 123, 38, 255, 27, 64, 118, 89, 14, 30, 14, 163, 113, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2202, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11677149045479582904" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12358553442480722693" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c580211b7aa33bccab7d32" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6023938149015948634" + } + }, + { + "_tag": "ByteArray", + "bytearray": "486a45e55068" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4595019077977326085" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "895546e2d9677d472b5c" + }, + { + "_tag": "ByteArray", + "bytearray": "9f0a50" + }, + { + "_tag": "ByteArray", + "bytearray": "67da2af193929ce5f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12267790056536143145" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9b611ce31dd47b8e59" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2151777146598498177" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fb35fcff" + } + ] + }, + "cborHex": "d8669f1ba20d91304d1a2cb89fd9050d9fd8669f1bab8266e0a4be93059f4bc580211b7aa33bccab7d321b539953d491050d5a46486a45e550681b3fc4c98186fb4205ffff9f4a895546e2d9677d472b5c439f0a504967da2af193929ce5f91baa3ff20f12e7f529499b611ce31dd47b8e59ffff1b1ddca5ea0ace9f8144fb35fcffffff", + "cborBytes": [ + 216, 102, 159, 27, 162, 13, 145, 48, 77, 26, 44, 184, 159, 217, 5, 13, 159, 216, 102, 159, 27, 171, 130, 102, 224, + 164, 190, 147, 5, 159, 75, 197, 128, 33, 27, 122, 163, 59, 204, 171, 125, 50, 27, 83, 153, 83, 212, 145, 5, 13, + 90, 70, 72, 106, 69, 229, 80, 104, 27, 63, 196, 201, 129, 134, 251, 66, 5, 255, 255, 159, 74, 137, 85, 70, 226, + 217, 103, 125, 71, 43, 92, 67, 159, 10, 80, 73, 103, 218, 42, 241, 147, 146, 156, 229, 249, 27, 170, 63, 242, 15, + 18, 231, 245, 41, 73, 155, 97, 28, 227, 29, 212, 123, 142, 89, 255, 255, 27, 29, 220, 165, 234, 10, 206, 159, 129, + 68, 251, 53, 252, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2203, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10086819726875206422" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a57c2095db0234a90b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1263296937396016607" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5841664025156483966" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1576922703076991323" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "586113951632104285" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3331470153140377017" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8d0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5440269038462514485" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1011018788364190629" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8925495025314449004" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3233122904605342872" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10476366737168690071" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "455ba2" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "132d2d9ca612453cf9442450" + } + ] + }, + "cborHex": "d8669f1b8bfb95196dcca3169f49a57c2095db0234a90b1b118821df0f5415df1b5111c27afca17b7ebf1b15e25ad7f327215b1b08224b889cee9b5d1b2e3bc27411bf95b942a8d01b4b7fb7dde01d35351b0e07dc3b3db183a51b7bddba6fac62466c1b2cde5c26e42e3c981b9163880a91a86b9743455ba2ff4c132d2d9ca612453cf9442450ffff", + "cborBytes": [ + 216, 102, 159, 27, 139, 251, 149, 25, 109, 204, 163, 22, 159, 73, 165, 124, 32, 149, 219, 2, 52, 169, 11, 27, 17, + 136, 33, 223, 15, 84, 21, 223, 27, 81, 17, 194, 122, 252, 161, 123, 126, 191, 27, 21, 226, 90, 215, 243, 39, 33, + 91, 27, 8, 34, 75, 136, 156, 238, 155, 93, 27, 46, 59, 194, 116, 17, 191, 149, 185, 66, 168, 208, 27, 75, 127, + 183, 221, 224, 29, 53, 53, 27, 14, 7, 220, 59, 61, 177, 131, 165, 27, 123, 221, 186, 111, 172, 98, 70, 108, 27, + 44, 222, 92, 38, 228, 46, 60, 152, 27, 145, 99, 136, 10, 145, 168, 107, 151, 67, 69, 91, 162, 255, 76, 19, 45, 45, + 156, 166, 18, 69, 60, 249, 68, 36, 80, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2204, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14695361440517136052" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8282684064747500903" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5013777503951117864" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0eed7cb46db42de01060d74e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9214854688611535559" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "badeae8528b4ceb61e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12926713860164713171" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17156717988642747732" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16815663381870190335" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14916973646898535535" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13958860487723760432" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11343822445370291340" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8cd85c8069e1557529dd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6214254357523028643" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e51a343d2f953983b20504ec" + }, + { + "_tag": "ByteArray", + "bytearray": "3206ee" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5dea9cead915" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7985" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dc98045e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8777604757040929220" + } + } + ] + }, + "cborHex": "d9050c9f9fbf1bcbf0695eebff1eb41b72f20145fa103567ffbf1b4594841361d9de284c0eed7cb46db42de01060d74e1b7fe1bd8453888ac749badeae8528b4ceb61e1bb364e9c4643c7ad31bee18e81c489af5541be95d3cc0aaea9eff1bcf03bc7f93401c6fff1bc1b7d5a80802bb30d8669f1b9d6d5a697366348c9f4a8cd85c8069e1557529dd1b563d7769e4155aa34ce51a343d2f953983b20504ec433206eeffffbf465dea9cead915427985ffff44dc98045e1b79d05105523419c4ff", + "cborBytes": [ + 217, 5, 12, 159, 159, 191, 27, 203, 240, 105, 94, 235, 255, 30, 180, 27, 114, 242, 1, 69, 250, 16, 53, 103, 255, + 191, 27, 69, 148, 132, 19, 97, 217, 222, 40, 76, 14, 237, 124, 180, 109, 180, 45, 224, 16, 96, 215, 78, 27, 127, + 225, 189, 132, 83, 136, 138, 199, 73, 186, 222, 174, 133, 40, 180, 206, 182, 30, 27, 179, 100, 233, 196, 100, 60, + 122, 211, 27, 238, 24, 232, 28, 72, 154, 245, 84, 27, 233, 93, 60, 192, 170, 234, 158, 255, 27, 207, 3, 188, 127, + 147, 64, 28, 111, 255, 27, 193, 183, 213, 168, 8, 2, 187, 48, 216, 102, 159, 27, 157, 109, 90, 105, 115, 102, 52, + 140, 159, 74, 140, 216, 92, 128, 105, 225, 85, 117, 41, 221, 27, 86, 61, 119, 105, 228, 21, 90, 163, 76, 229, 26, + 52, 61, 47, 149, 57, 131, 178, 5, 4, 236, 67, 50, 6, 238, 255, 255, 191, 70, 93, 234, 156, 234, 217, 21, 66, 121, + 133, 255, 255, 68, 220, 152, 4, 94, 27, 121, 208, 81, 5, 82, 52, 25, 196, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2205, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17254576474464821771" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "44bbe8627ffe9f26505749ba" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1345175323236489029" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6220461085431422390" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5834733346635488030" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c619bb0d0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7625928988964285039" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3473925098535236556" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8201143019894428674" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14304443375735749379" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16120753981432879907" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11927782374667463971" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bef7491e28649a20b9f9f4c44bbe8627ffe9f26505749ba80bf1b12ab05d45621d7451b565384665847ddb61b50f92310a5559b1e457c619bb0d01b69d4be02f591ea6f1b3035dc78b281b3cc1b71d0502004fb54021bc6839776486b3b031bdfb86c55aec55b234197ffd8669f1ba587fedfa8382d2380ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 239, 116, 145, 226, 134, 73, 162, 11, 159, 159, 76, 68, 187, 232, 98, 127, 254, 159, 38, 80, + 87, 73, 186, 128, 191, 27, 18, 171, 5, 212, 86, 33, 215, 69, 27, 86, 83, 132, 102, 88, 71, 221, 182, 27, 80, 249, + 35, 16, 165, 85, 155, 30, 69, 124, 97, 155, 176, 208, 27, 105, 212, 190, 2, 245, 145, 234, 111, 27, 48, 53, 220, + 120, 178, 129, 179, 204, 27, 113, 208, 80, 32, 4, 251, 84, 2, 27, 198, 131, 151, 118, 72, 107, 59, 3, 27, 223, + 184, 108, 85, 174, 197, 91, 35, 65, 151, 255, 216, 102, 159, 27, 165, 135, 254, 223, 168, 56, 45, 35, 128, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2206, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3594956210677414233" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2521285582251585375" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60a287064031b7" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5507436799425886530" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1313165639335144425" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2018660771958415477" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6721965484486750971" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7e3bd9" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b31e3d9a07082f9599fbf1b22fd67e0f36b6f5f031bfffffffffffffff14760a287064031b7ffd8669f1b4c6e5896e4b1b94280ff0dd8669f1bfffffffffffffff09f801b12394d3107d1ebe99f1b1c03b946da98e0751b5d4937fe5f44f2fbff08d8669f1bfffffffffffffff09f437e3bd9ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 49, 227, 217, 160, 112, 130, 249, 89, 159, 191, 27, 34, 253, 103, 224, 243, 107, 111, 95, 3, + 27, 255, 255, 255, 255, 255, 255, 255, 241, 71, 96, 162, 135, 6, 64, 49, 183, 255, 216, 102, 159, 27, 76, 110, 88, + 150, 228, 177, 185, 66, 128, 255, 13, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 128, 27, 18, + 57, 77, 49, 7, 209, 235, 233, 159, 27, 28, 3, 185, 70, 218, 152, 224, 117, 27, 93, 73, 55, 254, 95, 68, 242, 251, + 255, 8, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 67, 126, 59, 217, 255, 255, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2207, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae5ed5dbe3ef7447159429b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1fdd11f0528" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "54af2669ed9017" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12567213786100348276" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6eb6ed99b0849961" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6757193276362426135" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ced53ecef611f656f1fe72" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc6c8a2ad46f922f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcaefed3c687cb5ad2807b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "167601998593923367" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "45c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59ae36fbcdb671b6c9280141" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "616e7c632bdd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d539e8d6589d847361a98744" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18066689330142484288" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10783522329875599502" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecc5d45255b4c17ffa5adc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9455038253555146227" + } + } + } + ] + } + ] + }, + "cborHex": "d905019fbf4cae5ed5dbe3ef7447159429b70e46b1fdd11f052810ffbf4754af2669ed90171bae67b65ac0e73574486eb6ed99b08499611b5dc65f7bd43d87174bced53ecef611f656f1fe7248fc6c8a2ad46f922f4bfcaefed3c687cb5ad2807b1b0253712135d61927ffbf4245c84c59ae36fbcdb671b6c928014146616e7c632bdd4cd539e8d6589d847361a98744ffbf1bfab9c6396e7b97401b95a6c46cebba508e4becc5d45255b4c17ffa5adc1b83370b3258e25df3ffff", + "cborBytes": [ + 217, 5, 1, 159, 191, 76, 174, 94, 213, 219, 227, 239, 116, 71, 21, 148, 41, 183, 14, 70, 177, 253, 209, 31, 5, 40, + 16, 255, 191, 71, 84, 175, 38, 105, 237, 144, 23, 27, 174, 103, 182, 90, 192, 231, 53, 116, 72, 110, 182, 237, + 153, 176, 132, 153, 97, 27, 93, 198, 95, 123, 212, 61, 135, 23, 75, 206, 213, 62, 206, 246, 17, 246, 86, 241, 254, + 114, 72, 252, 108, 138, 42, 212, 111, 146, 47, 75, 252, 174, 254, 211, 198, 135, 203, 90, 210, 128, 123, 27, 2, + 83, 113, 33, 53, 214, 25, 39, 255, 191, 66, 69, 200, 76, 89, 174, 54, 251, 205, 182, 113, 182, 201, 40, 1, 65, 70, + 97, 110, 124, 99, 43, 221, 76, 213, 57, 232, 214, 88, 157, 132, 115, 97, 169, 135, 68, 255, 191, 27, 250, 185, + 198, 57, 110, 123, 151, 64, 27, 149, 166, 196, 108, 235, 186, 80, 142, 75, 236, 197, 212, 82, 85, 180, 193, 127, + 250, 90, 220, 27, 131, 55, 11, 50, 88, 226, 93, 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2208, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10591649898831133461" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15867859434892913367" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4a9dc7c5580ee4a8cab6d332" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1179831012683553550" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cac761325097dcfd3dd0edb5" + }, + { + "_tag": "ByteArray", + "bytearray": "a5470a6b3bccb9f97b" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "210b0dfd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c1eb679e669c73ebd58" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "582be6f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "951c9c653df16766de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba9e45fe3d77dbaee1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6173398252232515127" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1368ddad965c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ce3f0c07cd9115fc5a84b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e46df473ce608cbf55" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12555510363924250434" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b92fd19774d21bb159fa09fd8669f1bdc35f615a29f6ad79f4c4a9dc7c5580ee4a8cab6d3321b105f9a0e15fe1b0e4ccac761325097dcfd3dd0edb549a5470a6b3bccb9f97bffffffbf44210b0dfd4a5c1eb679e669c73ebd5844582be6f849951c9c653df16766de49ba9e45fe3d77dbaee11b55ac510099561e3747c1368ddad965c44b4ce3f0c07cd9115fc5a84b49e46df473ce608cbf551bae3e22276f70bf42ffffff", + "cborBytes": [ + 216, 102, 159, 27, 146, 253, 25, 119, 77, 33, 187, 21, 159, 160, 159, 216, 102, 159, 27, 220, 53, 246, 21, 162, + 159, 106, 215, 159, 76, 74, 157, 199, 197, 88, 14, 228, 168, 202, 182, 211, 50, 27, 16, 95, 154, 14, 21, 254, 27, + 14, 76, 202, 199, 97, 50, 80, 151, 220, 253, 61, 208, 237, 181, 73, 165, 71, 10, 107, 59, 204, 185, 249, 123, 255, + 255, 255, 191, 68, 33, 11, 13, 253, 74, 92, 30, 182, 121, 230, 105, 199, 62, 189, 88, 68, 88, 43, 230, 248, 73, + 149, 28, 156, 101, 61, 241, 103, 102, 222, 73, 186, 158, 69, 254, 61, 119, 219, 174, 225, 27, 85, 172, 81, 0, 153, + 86, 30, 55, 71, 193, 54, 141, 218, 217, 101, 196, 75, 76, 227, 240, 192, 124, 217, 17, 95, 197, 168, 75, 73, 228, + 109, 244, 115, 206, 96, 140, 191, 85, 27, 174, 62, 34, 39, 111, 112, 191, 66, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2209, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17113544877123911537" + }, + "fields": [] + }, + "cborHex": "d8669f1bed7f8664f0ad3f7180ff", + "cborBytes": [216, 102, 159, 27, 237, 127, 134, 100, 240, 173, 63, 113, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2210, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10262018416861590892" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2213485737566720280" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7305524472179285575" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4611116943899324323" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "120d1468c973de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5771482602455513239" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a509a6af10ca0dba08c2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11302917655871184522" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "948aba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb0e71cb7e387cd13f8636" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "999a00a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12340437071149603104" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4518a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6517080432450539590" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8e6a03612f8d356c9f0cbf12111b1eb7e18cff0ed1181b65626fcd162b5e471bfffffffffffffff21b3ffdfa6e02e76fa3ffbf47120d1468c973de1b50186cd92ab538974b5a509a6af10ca0dba08c2d1b9cdc07b8fbb15e8a43948aba4bfb0e71cb7e387cd13f863644999a00a41bab420a223eef192043b4518a1b5a71521fd4dd1046ffffff", + "cborBytes": [ + 216, 102, 159, 27, 142, 106, 3, 97, 47, 141, 53, 108, 159, 12, 191, 18, 17, 27, 30, 183, 225, 140, 255, 14, 209, + 24, 27, 101, 98, 111, 205, 22, 43, 94, 71, 27, 255, 255, 255, 255, 255, 255, 255, 242, 27, 63, 253, 250, 110, 2, + 231, 111, 163, 255, 191, 71, 18, 13, 20, 104, 201, 115, 222, 27, 80, 24, 108, 217, 42, 181, 56, 151, 75, 90, 80, + 154, 106, 241, 12, 160, 219, 160, 140, 45, 27, 156, 220, 7, 184, 251, 177, 94, 138, 67, 148, 138, 186, 75, 251, + 14, 113, 203, 126, 56, 124, 209, 63, 134, 54, 68, 153, 154, 0, 164, 27, 171, 66, 10, 34, 62, 239, 25, 32, 67, 180, + 81, 138, 27, 90, 113, 82, 31, 212, 221, 16, 70, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2211, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14183646142654739325" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8799fd8669f1bc4d66f04c0c6737d80ff80ff", + "cborBytes": [216, 121, 159, 216, 102, 159, 27, 196, 214, 111, 4, 192, 198, 115, 125, 128, 255, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2212, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4875114816860964492" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd8d" + } + ] + }, + "cborHex": "d8669f1b43a7e318b23dc68c9f1bfffffffffffffff742fd8dffff", + "cborBytes": [ + 216, 102, 159, 27, 67, 167, 227, 24, 178, 61, 198, 140, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 66, 253, + 141, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2213, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9819683697134171460" + }, + "fields": [] + }, + "cborHex": "d8669f1b8846864bae60754480ff", + "cborBytes": [216, 102, 159, 27, 136, 70, 134, 75, 174, 96, 117, 68, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2214, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "972560170775631586" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7c7fd47f180ac64" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + ] + }, + "cborHex": "d9050c9fbf1b0d7f3a528dc656e248e7c7fd47f180ac64ff1bfffffffffffffff0ff", + "cborBytes": [ + 217, 5, 12, 159, 191, 27, 13, 127, 58, 82, 141, 198, 86, 226, 72, 231, 199, 253, 71, 241, 128, 172, 100, 255, 27, + 255, 255, 255, 255, 255, 255, 255, 240, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2215, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1f02fa42fdfe" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905019f461f02fa42fdfe80ff", + "cborBytes": [217, 5, 1, 159, 70, 31, 2, 250, 66, 253, 254, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2216, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16950717220711314379" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2881aea77b85f4a24ab547" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4622ef18f5aa77e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5725de1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "142e5b9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75059771f88e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea7b4267d49400082826f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "972692be66139a573f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d80cde682b4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1699014052349950757" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15550734626769481830" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3376463667545185557" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8aca9f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12166029799613072596" + } + }, + { + "_tag": "ByteArray", + "bytearray": "458564269ccf1fd1a6e7" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16582781968022955418" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2c402" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "674526" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa152ea76b740a75" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfd5981e931f5515bb6a80" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5136709296701208043" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecce9472b564c44d83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10534623789444248992" + } + } + } + ] + } + ] + }, + "cborHex": "d9050b9fd8669f1beb3d0b80e49833cb9fd905009f01ffffffbf4b2881aea77b85f4a24ab54748e4622ef18f5aa77e445725de1b44142e5b9e4675059771f88e4bea7b4267d49400082826f349972692be66139a573f468d80cde682b44298e21b17941c4762b73b25ffd8669f1bd7cf4ec070f630669fd8669f1b2edb9bd0fd0b1d159f438aca9f1ba8d66ba4f4c104d44a458564269ccf1fd1a6e7ffffbf1be621e0572fc2e59a43f2c4024367452648aa152ea76b740a754bdfd5981e931f5515bb6a801b474941e3d05275ebffffffbf49ecce9472b564c44d831b923280858c3435a0ffff", + "cborBytes": [ + 217, 5, 11, 159, 216, 102, 159, 27, 235, 61, 11, 128, 228, 152, 51, 203, 159, 217, 5, 0, 159, 1, 255, 255, 255, + 191, 75, 40, 129, 174, 167, 123, 133, 244, 162, 74, 181, 71, 72, 228, 98, 46, 241, 143, 90, 167, 126, 68, 87, 37, + 222, 27, 68, 20, 46, 91, 158, 70, 117, 5, 151, 113, 248, 142, 75, 234, 123, 66, 103, 212, 148, 0, 8, 40, 38, 243, + 73, 151, 38, 146, 190, 102, 19, 154, 87, 63, 70, 141, 128, 205, 230, 130, 180, 66, 152, 226, 27, 23, 148, 28, 71, + 98, 183, 59, 37, 255, 216, 102, 159, 27, 215, 207, 78, 192, 112, 246, 48, 102, 159, 216, 102, 159, 27, 46, 219, + 155, 208, 253, 11, 29, 21, 159, 67, 138, 202, 159, 27, 168, 214, 107, 164, 244, 193, 4, 212, 74, 69, 133, 100, 38, + 156, 207, 31, 209, 166, 231, 255, 255, 191, 27, 230, 33, 224, 87, 47, 194, 229, 154, 67, 242, 196, 2, 67, 103, 69, + 38, 72, 170, 21, 46, 167, 107, 116, 10, 117, 75, 223, 213, 152, 30, 147, 31, 85, 21, 187, 106, 128, 27, 71, 73, + 65, 227, 208, 82, 117, 235, 255, 255, 255, 191, 73, 236, 206, 148, 114, 181, 100, 196, 77, 131, 27, 146, 50, 128, + 133, 140, 52, 53, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2217, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14025536156146228555" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11407a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11682067628158582672" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "929659ac3c9b51bd02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06d4d4c8940d6e081b2179" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c445a5c98bdd6d7de4ba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9db0bad8b410642e60cf1" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9849581237885259689" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05f33c79" + }, + { + "_tag": "ByteArray", + "bytearray": "4d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13623595572461082190" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7181915431729898559" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5199844558600281928" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13659829575193163739" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32d3723d044a20972df4" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3889435070224454593" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "561a37ccee806e4c201a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15765534013141362196" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11503855892172282693" + } + }, + { + "_tag": "ByteArray", + "bytearray": "24bec4b9370bdcb2d4b8fb" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2385963452716493314" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15137276130351911465" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6728890488794920979" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10421060984393806781" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da97" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22568cf724b4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9215844489190431109" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4da836c53c5bc2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed8dab18291afa631fc0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f0d57bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac4170" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14622397515165048074" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "190775437688953147" + } + }, + { + "_tag": "ByteArray", + "bytearray": "86bd95" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1234550598264008921" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "345855773582041111" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4327173963399636697" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "953631445269052266" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5772983692267609316" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12062045533887242570" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6496019468617559263" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66469864d1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11345191547107228341" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "edcec6672b" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "479d5d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f15e0" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9fd87b9fd8669f1bc2a4b6d2d37e5d4b80ffbf4311407a1ba21f0a9d127b7f9049929659ac3c9b51bd024b06d4d4c8940d6e081b21794ac445a5c98bdd6d7de4ba4bb9db0bad8b410642e60cf1ffd8669f1b88b0bdf35680cfa99f4405f33c79414d1bbd10bbfe0420964effffbf1b63ab4a08a328243f1b48298f137a9e1f481bbd9176a031c377db4a32d3723d044a20972df4ffd8669f1b35fa0c96d9acd3c19f4a561a37ccee806e4c201a1bdaca6da7d3a126141b9fa5e7fbe0369b454b24bec4b9370bdcb2d4b8fbffffff9fd8669f1b211ca51e6e3b2a029f1bd212687098a012291b5d61d23f952038131b909f0bc08d79b3bdffffbf411d42da974622568cf724b41b7fe541bc3b6fd985474da836c53c5bc24aed8dab18291afa631fc0448f0d57bb43ac4170ffffd8669f1bfffffffffffffffc9fd8669f1bcaed311137f79d0a9f1b02a5c53ff351d93b4386bd95ffffffff11d8799f80bf1b1122013a6ac5b0d91b04ccb9fe5fe020171b3c0d35cb19c126d91b0d3bfabf35e77b6a1b501dc214dfbbdce41ba764fe816fefa14a1b5a267f4a10f8acdf4566469864d11b9d72379a4a173ab545edcec6672bffbf43479d5d434f15e0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 216, 123, 159, 216, 102, 159, 27, 194, 164, 182, + 210, 211, 126, 93, 75, 128, 255, 191, 67, 17, 64, 122, 27, 162, 31, 10, 157, 18, 123, 127, 144, 73, 146, 150, 89, + 172, 60, 155, 81, 189, 2, 75, 6, 212, 212, 200, 148, 13, 110, 8, 27, 33, 121, 74, 196, 69, 165, 201, 139, 221, + 109, 125, 228, 186, 75, 185, 219, 11, 173, 139, 65, 6, 66, 230, 12, 241, 255, 216, 102, 159, 27, 136, 176, 189, + 243, 86, 128, 207, 169, 159, 68, 5, 243, 60, 121, 65, 77, 27, 189, 16, 187, 254, 4, 32, 150, 78, 255, 255, 191, + 27, 99, 171, 74, 8, 163, 40, 36, 63, 27, 72, 41, 143, 19, 122, 158, 31, 72, 27, 189, 145, 118, 160, 49, 195, 119, + 219, 74, 50, 211, 114, 61, 4, 74, 32, 151, 45, 244, 255, 216, 102, 159, 27, 53, 250, 12, 150, 217, 172, 211, 193, + 159, 74, 86, 26, 55, 204, 238, 128, 110, 76, 32, 26, 27, 218, 202, 109, 167, 211, 161, 38, 20, 27, 159, 165, 231, + 251, 224, 54, 155, 69, 75, 36, 190, 196, 185, 55, 11, 220, 178, 212, 184, 251, 255, 255, 255, 159, 216, 102, 159, + 27, 33, 28, 165, 30, 110, 59, 42, 2, 159, 27, 210, 18, 104, 112, 152, 160, 18, 41, 27, 93, 97, 210, 63, 149, 32, + 56, 19, 27, 144, 159, 11, 192, 141, 121, 179, 189, 255, 255, 191, 65, 29, 66, 218, 151, 70, 34, 86, 140, 247, 36, + 180, 27, 127, 229, 65, 188, 59, 111, 217, 133, 71, 77, 168, 54, 197, 60, 91, 194, 74, 237, 141, 171, 24, 41, 26, + 250, 99, 31, 192, 68, 143, 13, 87, 187, 67, 172, 65, 112, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 252, 159, 216, 102, 159, 27, 202, 237, 49, 17, 55, 247, 157, 10, 159, 27, 2, 165, 197, 63, 243, 81, 217, + 59, 67, 134, 189, 149, 255, 255, 255, 255, 17, 216, 121, 159, 128, 191, 27, 17, 34, 1, 58, 106, 197, 176, 217, 27, + 4, 204, 185, 254, 95, 224, 32, 23, 27, 60, 13, 53, 203, 25, 193, 38, 217, 27, 13, 59, 250, 191, 53, 231, 123, 106, + 27, 80, 29, 194, 20, 223, 187, 220, 228, 27, 167, 100, 254, 129, 111, 239, 161, 74, 27, 90, 38, 127, 74, 16, 248, + 172, 223, 69, 102, 70, 152, 100, 209, 27, 157, 114, 55, 154, 74, 23, 58, 181, 69, 237, 206, 198, 103, 43, 255, + 191, 67, 71, 157, 93, 67, 79, 21, 224, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2218, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12226215186279265056" + }, + "fields": [] + }, + "cborHex": "d8669f1ba9ac3def45a9732080ff", + "cborBytes": [216, 102, 159, 27, 169, 172, 61, 239, 69, 169, 115, 32, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2219, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6733411353358894176" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6315030982994710998" + } + }, + { + "_tag": "ByteArray", + "bytearray": "431cff4f3a51" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8634694895037894748" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17396634292246682027" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6044455465885460358" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5d71e1f3638a04609f059f9f1b57a37f3876fc51d646431cff4f3a511b77d499422a9cd05c1bf16d42b7acbe19ab1b53e23838a8c56786ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 93, 113, 225, 243, 99, 138, 4, 96, 159, 5, 159, 159, 27, 87, 163, 127, 56, 118, 252, 81, 214, + 70, 67, 28, 255, 79, 58, 81, 27, 119, 212, 153, 66, 42, 156, 208, 92, 27, 241, 109, 66, 183, 172, 190, 25, 171, + 27, 83, 226, 56, 56, 168, 197, 103, 134, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2220, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11423849212900028005" + }, + "fields": [] + }, + "cborHex": "d8669f1b9e89aa553e882e6580ff", + "cborBytes": [216, 102, 159, 27, 158, 137, 170, 85, 62, 136, 46, 101, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2221, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14134555730210284853" + }, + "fields": [] + }, + "cborHex": "d8669f1bc428078c6d25653580ff", + "cborBytes": [216, 102, 159, 27, 196, 40, 7, 140, 109, 37, 101, 53, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2222, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17966520543436781807" + }, + "fields": [] + }, + "cborHex": "d8669f1bf955e73e594eb8ef80ff", + "cborBytes": [216, 102, 159, 27, 249, 85, 231, 62, 89, 78, 184, 239, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2223, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12573901931845127452" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11398518703363016734" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15242454640951911362" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18125119810251578083" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7292004166694488375" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6328858034477612269" + } + } + ] + }, + "cborHex": "d8669f1bae7f7930083a0d1c9fd8669f1b9e2fac5e6799481e9fd8669f1bd38813bceaf163c280ffffff1bfb895c6fb970dae31b65326727a87e49371b57d49ed9c2ea3cedffff", + "cborBytes": [ + 216, 102, 159, 27, 174, 127, 121, 48, 8, 58, 13, 28, 159, 216, 102, 159, 27, 158, 47, 172, 94, 103, 153, 72, 30, + 159, 216, 102, 159, 27, 211, 136, 19, 188, 234, 241, 99, 194, 128, 255, 255, 255, 27, 251, 137, 92, 111, 185, 112, + 218, 227, 27, 101, 50, 103, 39, 168, 126, 73, 55, 27, 87, 212, 158, 217, 194, 234, 60, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2224, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12915833357671622569" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3358298325398073460" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16580179079479454016" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cf17" + }, + { + "_tag": "ByteArray", + "bytearray": "8e" + } + ] + }, + "cborHex": "d8669f1bb33e4201fe2867a99f1b2e9b1288af2430741be618a106f8bc694042cf17418effff", + "cborBytes": [ + 216, 102, 159, 27, 179, 62, 66, 1, 254, 40, 103, 169, 159, 27, 46, 155, 18, 136, 175, 36, 48, 116, 27, 230, 24, + 161, 6, 248, 188, 105, 64, 66, 207, 23, 65, 142, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2225, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4109781303504177989" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11549706043714152772" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10461807063511870838" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "47865028923913978" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17919085584084382327" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14475880199093509466" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42da5685779ac177de948af7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8218927740686522137" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "08559c0fed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6755548800477807918" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9869923819828116057" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f73b3874ba" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5235336075855272739" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b4" + }, + { + "_tag": "ByteArray", + "bytearray": "ca23f6" + }, + { + "_tag": "ByteArray", + "bytearray": "e2761c59b2a2d1f0761791" + }, + { + "_tag": "ByteArray", + "bytearray": "50594e5e1006977d4817ff0f" + }, + { + "_tag": "ByteArray", + "bytearray": "8ed84cddba4557" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6304159084672374097" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3043561024682087010" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5448973436386707691" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5530620077424421312" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1352302115677636370" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16704935541710620985" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1bbe1b488c" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "622e9860" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b3908e0522be88b459f1ba048cc742bc3a944bf1b912fce18614c2d761b00aa0cfd7e2c76fa1bf8ad61663b2c32771bc8e4a85836145d5a4c42da5685779ac177de948af71b720f7f3c02395719ff9f9f4508559c0fed1b5dc087d7734bc52e1b88f9036bc9057a5945f73b3874baffd8669f1b48a7a66c49241b239f41b443ca23f64be2761c59b2a2d1f07617914c50594e5e1006977d4817ff0f478ed84cddba4557ffffd8669f1b577cdf496172d55180ffbf1b2a3ce6a0606652621b4b9ea478725e88eb1b4cc0b5a86e86a9c01b12c4579c01f987121be7d3da5e5f758939451bbe1b488cffff44622e986080ffff", + "cborBytes": [ + 216, 102, 159, 27, 57, 8, 224, 82, 43, 232, 139, 69, 159, 27, 160, 72, 204, 116, 43, 195, 169, 68, 191, 27, 145, + 47, 206, 24, 97, 76, 45, 118, 27, 0, 170, 12, 253, 126, 44, 118, 250, 27, 248, 173, 97, 102, 59, 44, 50, 119, 27, + 200, 228, 168, 88, 54, 20, 93, 90, 76, 66, 218, 86, 133, 119, 154, 193, 119, 222, 148, 138, 247, 27, 114, 15, 127, + 60, 2, 57, 87, 25, 255, 159, 159, 69, 8, 85, 156, 15, 237, 27, 93, 192, 135, 215, 115, 75, 197, 46, 27, 136, 249, + 3, 107, 201, 5, 122, 89, 69, 247, 59, 56, 116, 186, 255, 216, 102, 159, 27, 72, 167, 166, 108, 73, 36, 27, 35, + 159, 65, 180, 67, 202, 35, 246, 75, 226, 118, 28, 89, 178, 162, 209, 240, 118, 23, 145, 76, 80, 89, 78, 94, 16, 6, + 151, 125, 72, 23, 255, 15, 71, 142, 216, 76, 221, 186, 69, 87, 255, 255, 216, 102, 159, 27, 87, 124, 223, 73, 97, + 114, 213, 81, 128, 255, 191, 27, 42, 60, 230, 160, 96, 102, 82, 98, 27, 75, 158, 164, 120, 114, 94, 136, 235, 27, + 76, 192, 181, 168, 110, 134, 169, 192, 27, 18, 196, 87, 156, 1, 249, 135, 18, 27, 231, 211, 218, 94, 95, 117, 137, + 57, 69, 27, 190, 27, 72, 140, 255, 255, 68, 98, 46, 152, 96, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2226, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12230655276103589311" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de7e7212bff3b97a618df1" + } + ] + }, + "cborHex": "d8669f1ba9bc042c3e695dbf9f4bde7e7212bff3b97a618df1ffff", + "cborBytes": [ + 216, 102, 159, 27, 169, 188, 4, 44, 62, 105, 93, 191, 159, 75, 222, 126, 114, 18, 191, 243, 185, 122, 97, 141, + 241, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2227, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11465348745288637488" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3127626580817210421" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4133901476790898072" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d85" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4198460495175632004" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8523386390559726084" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff60b2" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13929443939314210668" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9e0d084f50" + } + ] + }, + "cborHex": "d9050d9f9fd8669f1b9f1d19f014e65c309f1b2b678fcdebadec35ffffd8669f1b395e917da4958d989f422d851b3a43ed93727444841b764926c36cb61a0443ff60b2ffff1bc14f5376218a976cff459e0d084f50ff", + "cborBytes": [ + 217, 5, 13, 159, 159, 216, 102, 159, 27, 159, 29, 25, 240, 20, 230, 92, 48, 159, 27, 43, 103, 143, 205, 235, 173, + 236, 53, 255, 255, 216, 102, 159, 27, 57, 94, 145, 125, 164, 149, 141, 152, 159, 66, 45, 133, 27, 58, 67, 237, + 147, 114, 116, 68, 132, 27, 118, 73, 38, 195, 108, 182, 26, 4, 67, 255, 96, 178, 255, 255, 27, 193, 79, 83, 118, + 33, 138, 151, 108, 255, 69, 158, 13, 8, 79, 80, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2228, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2376075117962588265" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10745033177508852112" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18369970907521423649" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1623908364923663845" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0e86ff" + }, + { + "_tag": "ByteArray", + "bytearray": "07b37e4614934bdf31" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0683" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "79d2568701c9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7998439463990720043" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c268a361b872c0955" + }, + { + "_tag": "ByteArray", + "bytearray": "761c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b20f983bb15cdf0699fd8669f1b951e06becd33b1909fa09f1bfeef3f364d1319211b1689480dd70f75e5430e86ff4907b37e4614934bdf31ff420683d8669f1bfffffffffffffff79f4679d2568701c91b6f002a50a0a1f62b494c268a361b872c095542761cffff9f00ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 32, 249, 131, 187, 21, 205, 240, 105, 159, 216, 102, 159, 27, 149, 30, 6, 190, 205, 51, 177, + 144, 159, 160, 159, 27, 254, 239, 63, 54, 77, 19, 25, 33, 27, 22, 137, 72, 13, 215, 15, 117, 229, 67, 14, 134, + 255, 73, 7, 179, 126, 70, 20, 147, 75, 223, 49, 255, 66, 6, 131, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 247, 159, 70, 121, 210, 86, 135, 1, 201, 27, 111, 0, 42, 80, 160, 161, 246, 43, 73, 76, 38, 138, 54, 27, 135, + 44, 9, 85, 66, 118, 28, 255, 255, 159, 0, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2229, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e72a18d42808a5b3d13f86" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7701418733532659035" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f4be72a18d42808a5b3d13f86d8669f1b6ae0ef88c6c0bd5b80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 75, 231, 42, 24, 212, 40, 8, 165, 179, 209, 63, + 134, 216, 102, 159, 27, 106, 224, 239, 136, 198, 192, 189, 91, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2230, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16669279833477957368" + }, + "fields": [] + }, + "cborHex": "d8669f1be7552db0e00946f880ff", + "cborBytes": [216, 102, 159, 27, 231, 85, 45, 176, 224, 9, 70, 248, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2231, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15312633063021747253" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16484186986206242807" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14282468565566783864" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa81a8482c2839e3fd6ec5" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14217859025842382473" + } + } + ] + } + ] + }, + "cborHex": "d905009f1bd48166a419501c359fd8669f1be4c398ba1bf0a7f780ffa0d8669f1bc635857d164a81789f4bfa81a8482c2839e3fd6ec5ffff1bc54ffb745deaa689ffff", + "cborBytes": [ + 217, 5, 0, 159, 27, 212, 129, 102, 164, 25, 80, 28, 53, 159, 216, 102, 159, 27, 228, 195, 152, 186, 27, 240, 167, + 247, 128, 255, 160, 216, 102, 159, 27, 198, 53, 133, 125, 22, 74, 129, 120, 159, 75, 250, 129, 168, 72, 44, 40, + 57, 227, 253, 110, 197, 255, 255, 27, 197, 79, 251, 116, 93, 234, 166, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2232, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4724248203416252837" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b7d539" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11633890032516880351" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "07b604f31cdc865781" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15472244637379239939" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01790a8b2d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11066935440202095910" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "98e19a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4600225256737058002" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4eb7fe" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e299bbd260" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6270094894992357466" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ae2bed639fb73573a5f2" + }, + { + "_tag": "ByteArray", + "bytearray": "28379bf3efc3fd54509d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9728473522339918230" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16329711853446248054" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2135059866569835294" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2242008150017734683" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5974113221720319385" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16010358696259521424" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6103065005018748973" + } + }, + { + "_tag": "ByteArray", + "bytearray": "39" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d207fe" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11256084833920000651" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7767492656407563193" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9183375746138055027" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7254228936391070209" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f9f9f1b418fe6b5fb6731a543b7d5391ba173e158782057dfff4907b604f31cdc8657811bd6b87485b0eea0039f4501790a8b2dff1b9995a725d16d5d26ff4398e19ad8669f1b3fd7487f7a97acd29f434eb7fe9f45e299bbd260ffd8669f1b5703da162c02785a9f4aae2bed639fb73573a5f24a28379bf3efc3fd54509dffffd8669f1b87027b1ff9dd31969f1be29eca69852636761b1da141a2f916831effffffffd8669f1b1f1d3688a556781b9f1b52e85052ac9aa599d8669f1bde30386861228b909f1b54b271496142982d4139ffff43d207fe9f1b9c35a584e776a28b1b6bcbad6ac4a0cbb91b7f71e795e37f21731b64ac32c878f31201ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 159, 159, 27, 65, 143, 230, 181, 251, 103, 49, + 165, 67, 183, 213, 57, 27, 161, 115, 225, 88, 120, 32, 87, 223, 255, 73, 7, 182, 4, 243, 28, 220, 134, 87, 129, + 27, 214, 184, 116, 133, 176, 238, 160, 3, 159, 69, 1, 121, 10, 139, 45, 255, 27, 153, 149, 167, 37, 209, 109, 93, + 38, 255, 67, 152, 225, 154, 216, 102, 159, 27, 63, 215, 72, 127, 122, 151, 172, 210, 159, 67, 78, 183, 254, 159, + 69, 226, 153, 187, 210, 96, 255, 216, 102, 159, 27, 87, 3, 218, 22, 44, 2, 120, 90, 159, 74, 174, 43, 237, 99, + 159, 183, 53, 115, 165, 242, 74, 40, 55, 155, 243, 239, 195, 253, 84, 80, 157, 255, 255, 216, 102, 159, 27, 135, + 2, 123, 31, 249, 221, 49, 150, 159, 27, 226, 158, 202, 105, 133, 38, 54, 118, 27, 29, 161, 65, 162, 249, 22, 131, + 30, 255, 255, 255, 255, 216, 102, 159, 27, 31, 29, 54, 136, 165, 86, 120, 27, 159, 27, 82, 232, 80, 82, 172, 154, + 165, 153, 216, 102, 159, 27, 222, 48, 56, 104, 97, 34, 139, 144, 159, 27, 84, 178, 113, 73, 97, 66, 152, 45, 65, + 57, 255, 255, 67, 210, 7, 254, 159, 27, 156, 53, 165, 132, 231, 118, 162, 139, 27, 107, 203, 173, 106, 196, 160, + 203, 185, 27, 127, 113, 231, 149, 227, 127, 33, 115, 27, 100, 172, 50, 200, 120, 243, 18, 1, 255, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2233, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0702" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10445114063380272829" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1585452949608909134" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050c9fd905049f0c4207029f1b90f47fe66a37d6bd1bfffffffffffffffa1b1600a90ebd88c94effffff", + "cborBytes": [ + 217, 5, 12, 159, 217, 5, 4, 159, 12, 66, 7, 2, 159, 27, 144, 244, 127, 230, 106, 55, 214, 189, 27, 255, 255, 255, + 255, 255, 255, 255, 250, 27, 22, 0, 169, 14, 189, 136, 201, 78, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2234, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "187381230142443798" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18105169112222627987" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b06" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7078711366675539536" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3720575347173551647" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1197091057631274389" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5041033176325854798" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a8a93ca8c4e81dd88e74" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11427999785794980236" + } + }, + { + "_tag": "ByteArray", + "bytearray": "57d2f5b9b235" + }, + { + "_tag": "ByteArray", + "bytearray": "6594b1" + }, + { + "_tag": "ByteArray", + "bytearray": "50e1d099df4fe7c2" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "161c710714bdd0a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dedffc33b5b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80f6cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dee73cc794eedfe7b3066726" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3cda" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13835536838305775435" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1af1d053d18f48612f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11294251475582096155" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9f50c3db5d1053d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15268449227564538799" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd927a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c243" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e44643b7ef8a82c818" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11306125972466452728" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11716795817970886787" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15892699542178325565" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0e42ba1fa406a06c7589" + }, + { + "_tag": "ByteArray", + "bytearray": "76f3196d240c4d8e754f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12024964195265768031" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c413a0259d55270" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b0299b63c6c3751169f9fbf1bfb427b61dc677893422b06ff9f1b623ca27bbe372650ff1b33a22390d85aee1fff1b109cebf975e8a595d8669f1b45f558f71fdc964e9f9f4aa8a93ca8c4e81dd88e741b9e986941cd8cc98c4657d2f5b9b235436594b14850e1d099df4fe7c2ffbf48161c710714bdd0a2462dedffc33b5b4380f6cf41194cdee73cc794eedfe7b3066726423cdaffa0ffffd8669f1bc001b3735c0bff4b9fbf491af1d053d18f48612f1b9cbd3de0a600931b48c9f50c3db5d1053d1bd3e46dad40125baf43cd927a42c24349e44643b7ef8a82c8181b9ce76dab66ae48f8ff41ad1ba29a6bb7dbefe883d8669f1bdc8e3607cd8d643d9f4a0e42ba1fa406a06c75894a76f3196d240c4d8e754f1ba6e141397f9b6a5f485c413a0259d55270ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 2, 153, 182, 60, 108, 55, 81, 22, 159, 159, 191, 27, 251, 66, 123, 97, 220, 103, 120, 147, 66, + 43, 6, 255, 159, 27, 98, 60, 162, 123, 190, 55, 38, 80, 255, 27, 51, 162, 35, 144, 216, 90, 238, 31, 255, 27, 16, + 156, 235, 249, 117, 232, 165, 149, 216, 102, 159, 27, 69, 245, 88, 247, 31, 220, 150, 78, 159, 159, 74, 168, 169, + 60, 168, 196, 232, 29, 216, 142, 116, 27, 158, 152, 105, 65, 205, 140, 201, 140, 70, 87, 210, 245, 185, 178, 53, + 67, 101, 148, 177, 72, 80, 225, 208, 153, 223, 79, 231, 194, 255, 191, 72, 22, 28, 113, 7, 20, 189, 208, 162, 70, + 45, 237, 255, 195, 59, 91, 67, 128, 246, 207, 65, 25, 76, 222, 231, 60, 199, 148, 238, 223, 231, 179, 6, 103, 38, + 66, 60, 218, 255, 160, 255, 255, 216, 102, 159, 27, 192, 1, 179, 115, 92, 11, 255, 75, 159, 191, 73, 26, 241, 208, + 83, 209, 143, 72, 97, 47, 27, 156, 189, 61, 224, 166, 0, 147, 27, 72, 201, 245, 12, 61, 181, 209, 5, 61, 27, 211, + 228, 109, 173, 64, 18, 91, 175, 67, 205, 146, 122, 66, 194, 67, 73, 228, 70, 67, 183, 239, 138, 130, 200, 24, 27, + 156, 231, 109, 171, 102, 174, 72, 248, 255, 65, 173, 27, 162, 154, 107, 183, 219, 239, 232, 131, 216, 102, 159, + 27, 220, 142, 54, 7, 205, 141, 100, 61, 159, 74, 14, 66, 186, 31, 164, 6, 160, 108, 117, 137, 74, 118, 243, 25, + 109, 36, 12, 77, 142, 117, 79, 27, 166, 225, 65, 57, 127, 155, 106, 95, 72, 92, 65, 58, 2, 89, 213, 82, 112, 255, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2235, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17365056681498555300" + }, + "fields": [] + }, + "cborHex": "d8669f1bf0fd130c3d3eb3a480ff", + "cborBytes": [216, 102, 159, 27, 240, 253, 19, 12, 61, 62, 179, 164, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2236, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4615235043193922437" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16865679102342582962" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3849525949957136958" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3bcd" + } + ] + } + ] + }, + "cborHex": "d8669f1b400c9bd1b88223859f9f1bea0eedc90edbd2b21b356c4374b0d7e23e423bcdffffff", + "cborBytes": [ + 216, 102, 159, 27, 64, 12, 155, 209, 184, 130, 35, 133, 159, 159, 27, 234, 14, 237, 201, 14, 219, 210, 178, 27, + 53, 108, 67, 116, 176, 215, 226, 62, 66, 59, 205, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2237, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1740780692097811972" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2242652311312703795" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12695838668493854120" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1774991557297001369" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87530b73aa" + }, + { + "_tag": "ByteArray", + "bytearray": "70" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1208632517356226080" + } + }, + { + "_tag": "ByteArray", + "bytearray": "20cb720a33a0ec1640b6f0" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17507907287169848122" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eaaee4d8d6c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2316918173581135408" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2282224959728446172" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7198955649774737502" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b18287ed1005946049f9f1b1f1f80652280a133d8669f1bb030ae00e93e95a89f1b18a2096ac40153994587530b73aa41701b10c5ecdef50106204b20cb720a33a0ec1640b6f0ffff80d8669f1bf2f894eab43b533a9f46eaaee4d8d6c41b202758cda5f34e30ffffd8669f1b1fac17825624eadc80ffffd8669f1b63e7d405929d585e80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 24, 40, 126, 209, 0, 89, 70, 4, 159, 159, 27, 31, 31, 128, 101, 34, 128, 161, 51, 216, 102, + 159, 27, 176, 48, 174, 0, 233, 62, 149, 168, 159, 27, 24, 162, 9, 106, 196, 1, 83, 153, 69, 135, 83, 11, 115, 170, + 65, 112, 27, 16, 197, 236, 222, 245, 1, 6, 32, 75, 32, 203, 114, 10, 51, 160, 236, 22, 64, 182, 240, 255, 255, + 128, 216, 102, 159, 27, 242, 248, 148, 234, 180, 59, 83, 58, 159, 70, 234, 174, 228, 216, 214, 196, 27, 32, 39, + 88, 205, 165, 243, 78, 48, 255, 255, 216, 102, 159, 27, 31, 172, 23, 130, 86, 36, 234, 220, 128, 255, 255, 216, + 102, 159, 27, 99, 231, 212, 5, 146, 157, 88, 94, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2238, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14617691263340952148" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2323a3bef8c039d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3766df3bc0e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bf0ce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8f7cd9b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5921658341027214493" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e256c1a0db1a5b2550fdacf9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11678914054500398791" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "91f4d25b9497c8f5304bb227" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13170475999892600166" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "508604884186335465" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0947324657b020e3e417d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5467430fb5e00a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7e96f3f31bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13312638782697075726" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13703398419827608544" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13094997959508466179" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18112589105720074015" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8452752304001445021" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17058540881286797038" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15115927824869339012" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ddfaf2f9a57f8aeaa9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9481222894995001082" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12448944996249737033" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15135858875545548610" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12997375536447014934" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87f9fbf1bcadc78c193c4ba5448d2323a3bef8c039d463766df3bc0e1438bf0ce44d8f7cd9b1b522df4e30a27f49d4ce256c1a0db1a5b2550fdacf91ba213d6747cd036c7ff4c91f4d25b9497c8f5304bb2279fbf1bb6c6ee244867f5661b070eed728cf488e94b0947324657b020e3e417d7475467430fb5e00a46d7e96f3f31bf1bb8bffe7081bf740eff1bbe2c404255794be0d8669f1bb5bac7438ef79a039f1bfb5cd7d3b90e1f1f1b754e356f965eec9dffff1becbc1c8d2f9416eed8669f1bd1c69044e3c7af849f49ddfaf2f9a57f8aeaa91b839411fd447a4efa1bacc3898449d797491bd20d5f743f55f7421bb45ff42ff646c816ffffffff", + "cborBytes": [ + 216, 127, 159, 191, 27, 202, 220, 120, 193, 147, 196, 186, 84, 72, 210, 50, 58, 59, 239, 140, 3, 157, 70, 55, 102, + 223, 59, 192, 225, 67, 139, 240, 206, 68, 216, 247, 205, 155, 27, 82, 45, 244, 227, 10, 39, 244, 157, 76, 226, 86, + 193, 160, 219, 26, 91, 37, 80, 253, 172, 249, 27, 162, 19, 214, 116, 124, 208, 54, 199, 255, 76, 145, 244, 210, + 91, 148, 151, 200, 245, 48, 75, 178, 39, 159, 191, 27, 182, 198, 238, 36, 72, 103, 245, 102, 27, 7, 14, 237, 114, + 140, 244, 136, 233, 75, 9, 71, 50, 70, 87, 176, 32, 227, 228, 23, 215, 71, 84, 103, 67, 15, 181, 224, 10, 70, 215, + 233, 111, 63, 49, 191, 27, 184, 191, 254, 112, 129, 191, 116, 14, 255, 27, 190, 44, 64, 66, 85, 121, 75, 224, 216, + 102, 159, 27, 181, 186, 199, 67, 142, 247, 154, 3, 159, 27, 251, 92, 215, 211, 185, 14, 31, 31, 27, 117, 78, 53, + 111, 150, 94, 236, 157, 255, 255, 27, 236, 188, 28, 141, 47, 148, 22, 238, 216, 102, 159, 27, 209, 198, 144, 68, + 227, 199, 175, 132, 159, 73, 221, 250, 242, 249, 165, 127, 138, 234, 169, 27, 131, 148, 17, 253, 68, 122, 78, 250, + 27, 172, 195, 137, 132, 73, 215, 151, 73, 27, 210, 13, 95, 116, 63, 85, 247, 66, 27, 180, 95, 244, 47, 246, 70, + 200, 22, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2239, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12017063522558331628" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2912442522413720103" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3388002627254138707" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12205896127956342165" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16715998292814228101" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16778821356692310380" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "077f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5df26fbac2ad763ea6737" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14183715019342174203" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16884193965966327345" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6352613688935097520" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3222285237526174579" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5221073795241557138" + } + }, + { + "_tag": "ByteArray", + "bytearray": "27ec" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3595146015530548188" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10706304627964471703" + } + } + ] + }, + "cborHex": "d8669f1ba6c52f9ac964caec9fbf1b286b130b193662271b2f049a706792b7531ba9640ddbd82755951be7fb27e1d53a6a851be8da59203b62096c42077f4bc5df26fbac2ad763ea67371bc4d6ada95b4357fbffd8669f1bea50b4f4ac377e319f80d8669f1b5829047e1442a4b09f1b2cb7db59e3bb9b731b4874faf44f793c924227ecffff1b31e48640d35bfbdcffff1b94946f55aef16997ffff", + "cborBytes": [ + 216, 102, 159, 27, 166, 197, 47, 154, 201, 100, 202, 236, 159, 191, 27, 40, 107, 19, 11, 25, 54, 98, 39, 27, 47, + 4, 154, 112, 103, 146, 183, 83, 27, 169, 100, 13, 219, 216, 39, 85, 149, 27, 231, 251, 39, 225, 213, 58, 106, 133, + 27, 232, 218, 89, 32, 59, 98, 9, 108, 66, 7, 127, 75, 197, 223, 38, 251, 172, 42, 215, 99, 234, 103, 55, 27, 196, + 214, 173, 169, 91, 67, 87, 251, 255, 216, 102, 159, 27, 234, 80, 180, 244, 172, 55, 126, 49, 159, 128, 216, 102, + 159, 27, 88, 41, 4, 126, 20, 66, 164, 176, 159, 27, 44, 183, 219, 89, 227, 187, 155, 115, 27, 72, 116, 250, 244, + 79, 121, 60, 146, 66, 39, 236, 255, 255, 27, 49, 228, 134, 64, 211, 91, 251, 220, 255, 255, 27, 148, 148, 111, 85, + 174, 241, 105, 151, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2240, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15779754248246546060" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "174479229491889873" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2735028758712679684" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "802266864131769955" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75d4032dbd769db030" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2466833273779789980" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17085590923155840458" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4521043138184331060" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62b02c211350ed865327" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10733217529227448431" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10386426766373463016" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16610727657876042945" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07cc332f1230ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4825a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f2b60d4b3e86013" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15986450091621267902" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed57703b21351e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16226178684589159690" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bdafcf2e251b24e8c9fbf1b026bdfef4e8c46d11b25f4c62a4d8bfd041b0b2239765ba406634975d4032dbd769db0301b223bf3caebc2209c1bed1c366bd8579dca1b3ebdf8c7d9b1bf344a62b02c211350ed8653271b94f40c79ce99106f1b9024001d474ca3e8ff1be68528cc247534c1bf4707cc332f1230ea43a4825a485f2b60d4b3e860131bdddb47a89298b9be47ed57703b21351e1be12ef78b2cf3b50affffff", + "cborBytes": [ + 216, 102, 159, 27, 218, 252, 242, 226, 81, 178, 78, 140, 159, 191, 27, 2, 107, 223, 239, 78, 140, 70, 209, 27, 37, + 244, 198, 42, 77, 139, 253, 4, 27, 11, 34, 57, 118, 91, 164, 6, 99, 73, 117, 212, 3, 45, 189, 118, 157, 176, 48, + 27, 34, 59, 243, 202, 235, 194, 32, 156, 27, 237, 28, 54, 107, 216, 87, 157, 202, 27, 62, 189, 248, 199, 217, 177, + 191, 52, 74, 98, 176, 44, 33, 19, 80, 237, 134, 83, 39, 27, 148, 244, 12, 121, 206, 153, 16, 111, 27, 144, 36, 0, + 29, 71, 76, 163, 232, 255, 27, 230, 133, 40, 204, 36, 117, 52, 193, 191, 71, 7, 204, 51, 47, 18, 48, 234, 67, 164, + 130, 90, 72, 95, 43, 96, 212, 179, 232, 96, 19, 27, 221, 219, 71, 168, 146, 152, 185, 190, 71, 237, 87, 112, 59, + 33, 53, 30, 27, 225, 46, 247, 139, 44, 243, 181, 10, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2241, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9169920199548195829" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f29b762fdf3ba7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4643822933250843226" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7f4219d650bfd3f59fbf47f29b762fdf3ba71b40722c5a903aa25affffff", + "cborBytes": [ + 216, 102, 159, 27, 127, 66, 25, 214, 80, 191, 211, 245, 159, 191, 71, 242, 155, 118, 47, 223, 59, 167, 27, 64, + 114, 44, 90, 144, 58, 162, 90, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2242, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13412042613241908123" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + "cborHex": "d8669f1bba2125b25aaf8b9b9f0cffff", + "cborBytes": [216, 102, 159, 27, 186, 33, 37, 178, 90, 175, 139, 155, 159, 12, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2243, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7504" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01cff2bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "438bcde5876b443c7a5f7ee5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d08816062c29" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0a89072ee9c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12901198294219873585" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11122281761137070332" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9684db1fba0c64a1" + }, + { + "_tag": "ByteArray", + "bytearray": "d05119c5535b9c21db03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14191210846343841043" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "55c1c1ee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6a0913dc88647d9fce00451" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "691801387fbc8a77fd4b06c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15166150041185646155" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9e32e9c326737579e3acc74" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10820359915503686904" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3262df4de03f" + } + ] + } + ] + }, + "cborHex": "d9050d9f804275049fbf4401cff2bd4c438bcde5876b443c7a5f7ee546d08816062c2946c0a89072ee9cff1bb30a437ebfd9dd31d8669f1b9a5a4855586190fc9f489684db1fba0c64a14ad05119c5535b9c21db031bc4f14f1394fec513ffffbf4455c1c1ee4cf6a0913dc88647d9fce004514c691801387fbc8a77fd4b06c91bd278fd1bd725764b4ca9e32e9c326737579e3acc741b9629a403b17914f8ff463262df4de03fffff", + "cborBytes": [ + 217, 5, 13, 159, 128, 66, 117, 4, 159, 191, 68, 1, 207, 242, 189, 76, 67, 139, 205, 229, 135, 107, 68, 60, 122, + 95, 126, 229, 70, 208, 136, 22, 6, 44, 41, 70, 192, 168, 144, 114, 238, 156, 255, 27, 179, 10, 67, 126, 191, 217, + 221, 49, 216, 102, 159, 27, 154, 90, 72, 85, 88, 97, 144, 252, 159, 72, 150, 132, 219, 31, 186, 12, 100, 161, 74, + 208, 81, 25, 197, 83, 91, 156, 33, 219, 3, 27, 196, 241, 79, 19, 148, 254, 197, 19, 255, 255, 191, 68, 85, 193, + 193, 238, 76, 246, 160, 145, 61, 200, 134, 71, 217, 252, 224, 4, 81, 76, 105, 24, 1, 56, 127, 188, 138, 119, 253, + 75, 6, 201, 27, 210, 120, 253, 27, 215, 37, 118, 75, 76, 169, 227, 46, 156, 50, 103, 55, 87, 158, 58, 204, 116, + 27, 150, 41, 164, 3, 177, 121, 20, 248, 255, 70, 50, 98, 223, 77, 224, 63, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2244, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11446186841100031193" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17985480410440940367" + } + }, + { + "_tag": "ByteArray", + "bytearray": "77b768f85a1c4472" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6277411677258293659" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2430888244981274709" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10017420249166848889" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd72745a" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4215bd9e9f2bb9aaaa42" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b9ed90649988494d99f1bf999432463143b4f4877b768f85a1c4472d8669f1b571dd8a94bdea19b9f1b21bc3ffabac81855bf1b8b0506a45d65237944fd72745affffff9f4a4215bd9e9f2bb9aaaa42a0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 158, 217, 6, 73, 152, 132, 148, 217, 159, 27, 249, 153, 67, 36, 99, 20, 59, 79, 72, 119, 183, + 104, 248, 90, 28, 68, 114, 216, 102, 159, 27, 87, 29, 216, 169, 75, 222, 161, 155, 159, 27, 33, 188, 63, 250, 186, + 200, 24, 85, 191, 27, 139, 5, 6, 164, 93, 101, 35, 121, 68, 253, 114, 116, 90, 255, 255, 255, 159, 74, 66, 21, + 189, 158, 159, 43, 185, 170, 170, 66, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2245, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5111642964206499005" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17026609476736480113" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3387941938193430854" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f35c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fee3" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b46f034317c2734bd9fd8669f1bec4aab1bb62d73719fd8669f1b2f04633e21aaf9469f42f35cffffd9050c9f42fee3ffffffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 70, 240, 52, 49, 124, 39, 52, 189, 159, 216, 102, 159, 27, 236, 74, 171, 27, 182, 45, 115, 113, + 159, 216, 102, 159, 27, 47, 4, 99, 62, 33, 170, 249, 70, 159, 66, 243, 92, 255, 255, 217, 5, 12, 159, 66, 254, + 227, 255, 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2246, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16583080094026183174" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15051053574040620611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1454266364456821862" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13905435517477419817" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4000d952" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e5e1abbac2411dd7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9035634410841080064" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1be622ef7c0e4832069fd905069fbf1bd0e0157b50108e431b142e978dae3f6466ffd8669f1bc0fa07edd2577b299f444000d952ffff9f48e5e1abbac2411dd71b7d65059fb27a8100ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 230, 34, 239, 124, 14, 72, 50, 6, 159, 217, 5, 6, 159, 191, 27, 208, 224, 21, 123, 80, 16, 142, + 67, 27, 20, 46, 151, 141, 174, 63, 100, 102, 255, 216, 102, 159, 27, 192, 250, 7, 237, 210, 87, 123, 41, 159, 68, + 64, 0, 217, 82, 255, 255, 159, 72, 229, 225, 171, 186, 194, 65, 29, 215, 27, 125, 101, 5, 159, 178, 122, 129, 0, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2247, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5090901215946124557" + }, + "fields": [] + }, + "cborHex": "d8669f1b46a683aee312ad0d80ff", + "cborBytes": [216, 102, 159, 27, 70, 166, 131, 174, 227, 18, 173, 13, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2248, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6678918061353341540" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "991d10" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6633615316228616914" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7531847011687565311" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8175785419816773047" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00b0d95e9d351e43fd01453d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16301297493682290373" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fcf844" + } + ] + } + ] + }, + "cborHex": "d8669f1b5cb0489722e812649f43991d109f1b5c0f55fbd465b2d2d905089f1b68867ef3a23987ffffd8669f1b71763985abff25b79f4c00b0d95e9d351e43fd01453d121be239d7b3d8e5fec5ffff43fcf844ffffff", + "cborBytes": [ + 216, 102, 159, 27, 92, 176, 72, 151, 34, 232, 18, 100, 159, 67, 153, 29, 16, 159, 27, 92, 15, 85, 251, 212, 101, + 178, 210, 217, 5, 8, 159, 27, 104, 134, 126, 243, 162, 57, 135, 255, 255, 216, 102, 159, 27, 113, 118, 57, 133, + 171, 255, 37, 183, 159, 76, 0, 176, 217, 94, 157, 53, 30, 67, 253, 1, 69, 61, 18, 27, 226, 57, 215, 179, 216, 229, + 254, 197, 255, 255, 67, 252, 248, 68, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2249, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d14abe" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6091992a09b06d06" + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f43d14abe9f486091992a09b06d06ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 67, 209, 74, 190, 159, 72, 96, 145, 153, 42, 9, + 176, 109, 6, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2250, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "66852f5a63751d5a9a84ab3a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ed3f2" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a1a4" + } + ] + }, + "cborHex": "d87d9fbf4c66852f5a63751d5a9a84ab3a438ed3f2ff42a1a4ff", + "cborBytes": [ + 216, 125, 159, 191, 76, 102, 133, 47, 90, 99, 117, 29, 90, 154, 132, 171, 58, 67, 142, 211, 242, 255, 66, 161, + 164, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2251, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8157212559971933896" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04f806f6fd86a16e0606" + }, + { + "_tag": "ByteArray", + "bytearray": "0203" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16541166115206606833" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0763eb1ca917724803a87fc0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64c249de5b752f" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5233076293103434113" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b71343d9ac27b5ec89f4a04f806f6fd86a16e06064202039fbf1be58e06f1639e2ff141f54c0763eb1ca917724803a87fc04764c249de5b752fff1b489f9f299cf2b981ffffff", + "cborBytes": [ + 216, 102, 159, 27, 113, 52, 61, 154, 194, 123, 94, 200, 159, 74, 4, 248, 6, 246, 253, 134, 161, 110, 6, 6, 66, 2, + 3, 159, 191, 27, 229, 142, 6, 241, 99, 158, 47, 241, 65, 245, 76, 7, 99, 235, 28, 169, 23, 114, 72, 3, 168, 127, + 192, 71, 100, 194, 73, 222, 91, 117, 47, 255, 27, 72, 159, 159, 41, 156, 242, 185, 129, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2252, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "20763b7ba9cc5640d8" + } + ] + }, + "cborHex": "d905069f4920763b7ba9cc5640d8ff", + "cborBytes": [217, 5, 6, 159, 73, 32, 118, 59, 123, 169, 204, 86, 64, 216, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2253, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17822838791111708324" + } + } + ] + }, + "cborHex": "d905079f1bf757717379440ea4ff", + "cborBytes": [217, 5, 7, 159, 27, 247, 87, 113, 115, 121, 68, 14, 164, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2254, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3794574673878168574" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0702025f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7963568966082315151" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "503276695802103334" + } + } + ] + }, + "cborHex": "d87e9fbf1b34a9098fb633b3fe440702025f1bffffffffffffffec1b6e8447c827a9438fff1b06fbff7d05044626ff", + "cborBytes": [ + 216, 126, 159, 191, 27, 52, 169, 9, 143, 182, 51, 179, 254, 68, 7, 2, 2, 95, 27, 255, 255, 255, 255, 255, 255, + 255, 236, 27, 110, 132, 71, 200, 39, 169, 67, 143, 255, 27, 6, 251, 255, 125, 5, 4, 70, 38, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2255, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6219399056801816048" + }, + "fields": [] + }, + "cborHex": "d8669f1b564fbe7d89125df080ff", + "cborBytes": [216, 102, 159, 27, 86, 79, 190, 125, 137, 18, 93, 240, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2256, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14061917358391818804" + }, + "fields": [] + }, + "cborHex": "d8669f1bc325f7558fd7fa3480ff", + "cborBytes": [216, 102, 159, 27, 195, 37, 247, 85, 143, 215, 250, 52, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2257, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3750767533080217562" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f4fe363d034a352d10" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0107" + }, + { + "_tag": "ByteArray", + "bytearray": "06b54f21" + } + ] + } + ] + }, + "cborHex": "d8669f1b340d6732ec5087da9f49f4fe363d034a352d109f4201074406b54f21ffffff", + "cborBytes": [ + 216, 102, 159, 27, 52, 13, 103, 50, 236, 80, 135, 218, 159, 73, 244, 254, 54, 61, 3, 74, 53, 45, 16, 159, 66, 1, + 7, 68, 6, 181, 79, 33, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2258, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17719223937685709059" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1248629235313326906" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2360685444656905246" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c72d9a53" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13248429924824928646" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2835038030446405884" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "839c5721d21553cb4bbc79" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e839b4e2c5bdac843ac3" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "52b98d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "154363337627693222" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6dd270697989455fb3" + }, + { + "_tag": "ByteArray", + "bytearray": "cb069e771118a7dc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17217698294831760895" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf5e7544a755ae1039fd8669f1b115405ac8b04bb3a80ff9fbf1b20c2d6e78b35bc1e44c72d9a531bb7dbe0d2ccd851861b27581411697b28fc412b4b839c5721d21553cb4bbc7941df4ae839b4e2c5bdac843ac3ff9f4352b98d1b022468a341a470a6496dd270697989455fb348cb069e771118a7dc1beef18d60394bc5ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 245, 231, 84, 74, 117, 90, 225, 3, 159, 216, 102, 159, 27, 17, 84, 5, 172, 139, 4, 187, 58, + 128, 255, 159, 191, 27, 32, 194, 214, 231, 139, 53, 188, 30, 68, 199, 45, 154, 83, 27, 183, 219, 224, 210, 204, + 216, 81, 134, 27, 39, 88, 20, 17, 105, 123, 40, 252, 65, 43, 75, 131, 156, 87, 33, 210, 21, 83, 203, 75, 188, 121, + 65, 223, 74, 232, 57, 180, 226, 197, 189, 172, 132, 58, 195, 255, 159, 67, 82, 185, 141, 27, 2, 36, 104, 163, 65, + 164, 112, 166, 73, 109, 210, 112, 105, 121, 137, 69, 95, 179, 72, 203, 6, 158, 119, 17, 24, 167, 220, 27, 238, + 241, 141, 96, 57, 75, 197, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2259, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12298434095137734341" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07005426067df9d7ff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17157303887405311820" + } + } + ] + }, + "cborHex": "d8669f1baaacd0a64e3cbec59f4907005426067df9d7ff1bee1afcfb7838e74cffff", + "cborBytes": [ + 216, 102, 159, 27, 170, 172, 208, 166, 78, 60, 190, 197, 159, 73, 7, 0, 84, 38, 6, 125, 249, 215, 255, 27, 238, + 26, 252, 251, 120, 56, 231, 76, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2260, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17684204850847356179" + }, + "fields": [] + }, + "cborHex": "d8669f1bf56aea9dedff151380ff", + "cborBytes": [216, 102, 159, 27, 245, 106, 234, 157, 237, 255, 21, 19, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2261, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1500379192799954637" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9297479338145397250" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3968bd20edf39a4b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6186136820352994892" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15319648582185404414" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14784881751518249828" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6740250607081357584" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14313170792615839654" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b14d26aed2f3a86cd9f9fd8669f1b81074832a8b0ba029f483968bd20edf39a4b1b55d992a99d1ace4c1bd49a5337f0fa47fe1bcd2e739e8d6683641b5d8a2e373c320110ffff1bc6a299005f5d07a6ffffff", + "cborBytes": [ + 216, 102, 159, 27, 20, 210, 106, 237, 47, 58, 134, 205, 159, 159, 216, 102, 159, 27, 129, 7, 72, 50, 168, 176, + 186, 2, 159, 72, 57, 104, 189, 32, 237, 243, 154, 75, 27, 85, 217, 146, 169, 157, 26, 206, 76, 27, 212, 154, 83, + 55, 240, 250, 71, 254, 27, 205, 46, 115, 158, 141, 102, 131, 100, 27, 93, 138, 46, 55, 60, 50, 1, 16, 255, 255, + 27, 198, 162, 153, 0, 95, 93, 7, 166, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2262, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17430024451516560942" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bf1e3e2e3f304762e9f809fa0ffffff", + "cborBytes": [216, 102, 159, 27, 241, 227, 226, 227, 243, 4, 118, 46, 159, 128, 159, 160, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2263, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18160223285371199163" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f87e65bc8dbdfbf85dffcaa3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "116448063416626966" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfc0612dc6e53debb9f9f4cf87e65bc8dbdfbf85dffcaa39f1b019db4e58ebaef16ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 252, 6, 18, 220, 110, 83, 222, 187, 159, 159, 76, 248, 126, 101, 188, 141, 189, 251, 248, 93, + 255, 202, 163, 159, 27, 1, 157, 180, 229, 142, 186, 239, 22, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2264, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4616232284072808311" + } + } + ] + }, + "cborHex": "d905029f1b401026cdf4d98f77ff", + "cborBytes": [217, 5, 2, 159, 27, 64, 16, 38, 205, 244, 217, 143, 119, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2265, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79fa0ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2266, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b6fd864ca7d2bf8b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7730f2b3173c08" + }, + { + "_tag": "ByteArray", + "bytearray": "c6" + }, + { + "_tag": "ByteArray", + "bytearray": "c27a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f5f019" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10063371999521601777" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1345864890877177055" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6345044221900230327" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5563456147207796788" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0dfb9c4e74ef9276b5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6479747687174181859" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9f554224f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11112142743187642943" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10933810511690483521" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12671550531488087203" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed89" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f48b6fd864ca7d2bf8b9fa09f477730f2b3173c0841c642c27aff43f5f019ff1b8ba84783fa18f8f1bf1b12ad78fcd0676cdf1b580e201a32820eb71b4d355de3b1c8b834490dfb9c4e74ef9276b51b59ecb030b82d13e345e9f554224f1b9a3642f345225a3f1b97bcb2bb06be47411bafda641256c27ca342ed89ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 72, 182, 253, 134, 76, 167, 210, 191, 139, 159, + 160, 159, 71, 119, 48, 242, 179, 23, 60, 8, 65, 198, 66, 194, 122, 255, 67, 245, 240, 25, 255, 27, 139, 168, 71, + 131, 250, 24, 248, 241, 191, 27, 18, 173, 120, 252, 208, 103, 108, 223, 27, 88, 14, 32, 26, 50, 130, 14, 183, 27, + 77, 53, 93, 227, 177, 200, 184, 52, 73, 13, 251, 156, 78, 116, 239, 146, 118, 181, 27, 89, 236, 176, 48, 184, 45, + 19, 227, 69, 233, 245, 84, 34, 79, 27, 154, 54, 66, 243, 69, 34, 90, 63, 27, 151, 188, 178, 187, 6, 190, 71, 65, + 27, 175, 218, 100, 18, 86, 194, 124, 163, 66, 237, 137, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2267, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "216376382964937599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "91c2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16443848123223308751" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + ] + }, + "cborHex": "d905039fd8669f1b0300b92c8468b37f9f4291c21be43448bead32f9cfffff0d1bfffffffffffffffcff", + "cborBytes": [ + 217, 5, 3, 159, 216, 102, 159, 27, 3, 0, 185, 44, 132, 104, 179, 127, 159, 66, 145, 194, 27, 228, 52, 72, 190, + 173, 50, 249, 207, 255, 255, 13, 27, 255, 255, 255, 255, 255, 255, 255, 252, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2268, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4696425105321529844" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0602" + }, + { + "_tag": "ByteArray", + "bytearray": "bb83a91a43f1396b83" + }, + { + "_tag": "ByteArray", + "bytearray": "00" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13543561045774706640" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "de1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e920c8b3b75e04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f012eb24348dc0dce49e71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6306099286717899238" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d08c2eee1e2bbd5e" + }, + { + "_tag": "ByteArray", + "bytearray": "9907eb04aafee8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4508551195250217266" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c836046357e9d" + }, + { + "_tag": "ByteArray", + "bytearray": "5d" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2525053297527097786" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83dd73731cd1e3be" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5489427996185120088" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6636285285621824933" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9566186705718370072" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8561082673710355599" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10668285453826038263" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12232485957384328079" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16250119241073582930" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16265333170253311608" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16504238479082812446" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "82b3e13b7dbea5edcb2eef" + } + ] + } + ] + }, + "cborHex": "d87a9fbf1b412d0dc024ea91f408ff9f42060249bb83a91a43f1396b834100ffa0d8669f1bbbf46503a73827d09fbf42de1b47e920c8b3b75e044bf012eb24348dc0dce49e711b5783c3e3df2a21e6ff9f48d08c2eee1e2bbd5e479907eb04aafee81b3e91976cbc8d5132478c836046357e9d415dffa0bf1b230aca98860809ba4883dd73731cd1e3be1b4c2e5dada4b2cd581b5c18d24e85a3fda51b84c1ec2001685f181b76cf13554b41d48f1b940d5d18e5c499f741161ba9c2852af1d8d38f1be184055a59ee63521be1ba12574653ae781be50ad5741a10741eff4b82b3e13b7dbea5edcb2eefffffff", + "cborBytes": [ + 216, 122, 159, 191, 27, 65, 45, 13, 192, 36, 234, 145, 244, 8, 255, 159, 66, 6, 2, 73, 187, 131, 169, 26, 67, 241, + 57, 107, 131, 65, 0, 255, 160, 216, 102, 159, 27, 187, 244, 101, 3, 167, 56, 39, 208, 159, 191, 66, 222, 27, 71, + 233, 32, 200, 179, 183, 94, 4, 75, 240, 18, 235, 36, 52, 141, 192, 220, 228, 158, 113, 27, 87, 131, 195, 227, 223, + 42, 33, 230, 255, 159, 72, 208, 140, 46, 238, 30, 43, 189, 94, 71, 153, 7, 235, 4, 170, 254, 232, 27, 62, 145, + 151, 108, 188, 141, 81, 50, 71, 140, 131, 96, 70, 53, 126, 157, 65, 93, 255, 160, 191, 27, 35, 10, 202, 152, 134, + 8, 9, 186, 72, 131, 221, 115, 115, 28, 209, 227, 190, 27, 76, 46, 93, 173, 164, 178, 205, 88, 27, 92, 24, 210, 78, + 133, 163, 253, 165, 27, 132, 193, 236, 32, 1, 104, 95, 24, 27, 118, 207, 19, 85, 75, 65, 212, 143, 27, 148, 13, + 93, 24, 229, 196, 153, 247, 65, 22, 27, 169, 194, 133, 42, 241, 216, 211, 143, 27, 225, 132, 5, 90, 89, 238, 99, + 82, 27, 225, 186, 18, 87, 70, 83, 174, 120, 27, 229, 10, 213, 116, 26, 16, 116, 30, 255, 75, 130, 179, 225, 59, + 125, 190, 165, 237, 203, 46, 239, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2269, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "58952461ae6399852611" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17892624181392077719" + } + } + ] + }, + "cborHex": "d905029f4a58952461ae63998526111bf84f5ee4cf707397ff", + "cborBytes": [ + 217, 5, 2, 159, 74, 88, 149, 36, 97, 174, 99, 153, 133, 38, 17, 27, 248, 79, 94, 228, 207, 112, 115, 151, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2270, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12806959250849568813" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9978656642938428169" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bf767345" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5869534727315537787" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16804379978834864660" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "365658242126545236" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3685388924376074991" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15907611934700733233" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12382094458606436103" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "272505ed9b72d01f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6505644423732568865" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "620083540589836762" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13017819058075355465" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bb1bb75959fca982d9fd8669f1b8a7b4f58f9efdb099f44bf7673451b5174c6bc82763f7bffffd8669f1be935268ead236a149f1b0513143bdf2581541b332521b360984aef1bdcc330c5c09a0331d8669f1babd6094e9491bf079f48272505ed9b72d01f1b5a48b1228f94a3211b089afab1dfec79da1bb4a8957642e44949ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 177, 187, 117, 149, 159, 202, 152, 45, 159, 216, 102, 159, 27, 138, 123, 79, 88, 249, 239, 219, + 9, 159, 68, 191, 118, 115, 69, 27, 81, 116, 198, 188, 130, 118, 63, 123, 255, 255, 216, 102, 159, 27, 233, 53, 38, + 142, 173, 35, 106, 20, 159, 27, 5, 19, 20, 59, 223, 37, 129, 84, 27, 51, 37, 33, 179, 96, 152, 74, 239, 27, 220, + 195, 48, 197, 192, 154, 3, 49, 216, 102, 159, 27, 171, 214, 9, 78, 148, 145, 191, 7, 159, 72, 39, 37, 5, 237, 155, + 114, 208, 31, 27, 90, 72, 177, 34, 143, 148, 163, 33, 27, 8, 154, 250, 177, 223, 236, 121, 218, 27, 180, 168, 149, + 118, 66, 228, 73, 73, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2271, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7487234009680977691" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5199583597171553611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "418892" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "16816fd72c376cdd02444fdd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3174067075693492161" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b67e7ffa9a9421f1b9fbf1b4828a1bba95bb54b434188924c16816fd72c376cdd02444fdd1b2c0c8d303bf937c1ffffff", + "cborBytes": [ + 216, 102, 159, 27, 103, 231, 255, 169, 169, 66, 31, 27, 159, 191, 27, 72, 40, 161, 187, 169, 91, 181, 75, 67, 65, + 136, 146, 76, 22, 129, 111, 215, 44, 55, 108, 221, 2, 68, 79, 221, 27, 44, 12, 141, 48, 59, 249, 55, 193, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2272, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fffa56" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4065999051070598242" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "567052976904820327" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a3c012819522082a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14404509024662372593" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2974788711873118792" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5564698486520643634" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6168436867045826203" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ed75232abb5ad14fd8ef9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8880978039164682242" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78d8c64e60cc7fcf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16481963728358308663" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9821" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17146738330918468160" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12970700246182763713" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18052897070303228416" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15668895066869842308" + } + } + } + ] + } + ] + }, + "cborHex": "d9050b9f139f9f43fffa561b386d549828236c6241551b07de93ad993d566748a3c012819522082aff1bc7e718a3bae8c0f1ffbf1b29489292850a02481b4d39c7ca5b3780321b559ab0a617b09e9b4b5ed75232abb5ad14fd8ef91b7b3f92792274c0024878d8c64e60cc7fcf1be4bbb2af8dab7b374298211bedf573aa26f83a401bb4012f26f5cb9cc11bfa88c63cb21d32001bd973190bc3a5c184ffff", + "cborBytes": [ + 217, 5, 11, 159, 19, 159, 159, 67, 255, 250, 86, 27, 56, 109, 84, 152, 40, 35, 108, 98, 65, 85, 27, 7, 222, 147, + 173, 153, 61, 86, 103, 72, 163, 192, 18, 129, 149, 34, 8, 42, 255, 27, 199, 231, 24, 163, 186, 232, 192, 241, 255, + 191, 27, 41, 72, 146, 146, 133, 10, 2, 72, 27, 77, 57, 199, 202, 91, 55, 128, 50, 27, 85, 154, 176, 166, 23, 176, + 158, 155, 75, 94, 215, 82, 50, 171, 181, 173, 20, 253, 142, 249, 27, 123, 63, 146, 121, 34, 116, 192, 2, 72, 120, + 216, 198, 78, 96, 204, 127, 207, 27, 228, 187, 178, 175, 141, 171, 123, 55, 66, 152, 33, 27, 237, 245, 115, 170, + 38, 248, 58, 64, 27, 180, 1, 47, 38, 245, 203, 156, 193, 27, 250, 136, 198, 60, 178, 29, 50, 0, 27, 217, 115, 25, + 11, 195, 165, 193, 132, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2273, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17030301825770043497" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4580472571128601694" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "790d17fea64c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13729679228064034021" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2188814493844159738" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4849130624522721798" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1076778651619157607" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5859827727881186890" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1760570921603212569" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1410988974632634615" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4835216034749493534" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd790a83d4ebc5884a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6661535041044709544" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8740576524036996705" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bec57c947b6b5b8699f9fd8669f1b3f911b88f98a5c5e9f46790d17fea64c1bbe899e83d4d0ece51b1e603b2f70cebcfaffffa0a0ffd8669f1b434b929c78251a0680ffbf1b0ef17c7a877be6671b51524a459557ae4a1b186ecdece00aa5191b1394d6ff26f888f71b431a235d9384311e49bd790a83d4ebc5884a1b5c7286d3544980a81b794cc409ff57fe61ffffff", + "cborBytes": [ + 216, 102, 159, 27, 236, 87, 201, 71, 182, 181, 184, 105, 159, 159, 216, 102, 159, 27, 63, 145, 27, 136, 249, 138, + 92, 94, 159, 70, 121, 13, 23, 254, 166, 76, 27, 190, 137, 158, 131, 212, 208, 236, 229, 27, 30, 96, 59, 47, 112, + 206, 188, 250, 255, 255, 160, 160, 255, 216, 102, 159, 27, 67, 75, 146, 156, 120, 37, 26, 6, 128, 255, 191, 27, + 14, 241, 124, 122, 135, 123, 230, 103, 27, 81, 82, 74, 69, 149, 87, 174, 74, 27, 24, 110, 205, 236, 224, 10, 165, + 25, 27, 19, 148, 214, 255, 38, 248, 136, 247, 27, 67, 26, 35, 93, 147, 132, 49, 30, 73, 189, 121, 10, 131, 212, + 235, 197, 136, 74, 27, 92, 114, 134, 211, 84, 73, 128, 168, 27, 121, 76, 196, 9, 255, 87, 254, 97, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2274, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7843689573130214893" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f0c70700fdff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + "cborHex": "d8669f1b6cda621beedc9ded9f46f0c70700fdff0cffff", + "cborBytes": [ + 216, 102, 159, 27, 108, 218, 98, 27, 238, 220, 157, 237, 159, 70, 240, 199, 7, 0, 253, 255, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2275, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17705506250839477532" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "beef42" + } + ] + }, + "cborHex": "d8669f1bf5b6982099becd1c9f43beef42ffff", + "cborBytes": [216, 102, 159, 27, 245, 182, 152, 32, 153, 190, 205, 28, 159, 67, 190, 239, 66, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2276, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11970078943079939395" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8631808029474836598" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11997221196464956954" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5b0d21ad7859d75155cf6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e049dc0fffc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3857368120578939869" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3955f45ec55f6205b3183" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c75327e64d25600a" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8897414869971727770" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07b50a6c09e4e0" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab9a20" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16474609059300000270" + } + } + } + ] + } + ] + }, + "cborHex": "d905009fbf1ba61e4360e7a9bd431b77ca57ab663650761ba67eb11d3b14a61a4bc5b0d21ad7859d75155cf6467e049dc0fffc1b35881fde53061bdd4bc3955f45ec55f6205b318348c75327e64d25600affbf1b7b79f7af07f1759a4707b50a6c09e4e0ffbf43ab9a201be4a191a73902420effff", + "cborBytes": [ + 217, 5, 0, 159, 191, 27, 166, 30, 67, 96, 231, 169, 189, 67, 27, 119, 202, 87, 171, 102, 54, 80, 118, 27, 166, + 126, 177, 29, 59, 20, 166, 26, 75, 197, 176, 210, 26, 215, 133, 157, 117, 21, 92, 246, 70, 126, 4, 157, 192, 255, + 252, 27, 53, 136, 31, 222, 83, 6, 27, 221, 75, 195, 149, 95, 69, 236, 85, 246, 32, 91, 49, 131, 72, 199, 83, 39, + 230, 77, 37, 96, 10, 255, 191, 27, 123, 121, 247, 175, 7, 241, 117, 154, 71, 7, 181, 10, 108, 9, 228, 224, 255, + 191, 67, 171, 154, 32, 27, 228, 161, 145, 167, 57, 2, 66, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2277, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11310865402719390255" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c9da5" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9fa0bf1b9cf84427ff584a2f433c9da5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 160, 191, 27, 156, 248, 68, 39, 255, 88, 74, 47, + 67, 60, 157, 165, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2278, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17567596580966622267" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6f4fbadb494b345f8640574b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5707897927179310177" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1922296747664763371" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11021826098113305837" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7314432671837057534" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b270a7447885a2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11295486237742444550" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6091426401293777098" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12447326796783150691" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3613104779004203896" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14216222000794683415" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1272991861652421899" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e2a00f8d652f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11523472942938098107" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10055161915224016220" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3830982533601763987" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10298259701935149991" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d4878cd77d1d74e1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a8166e1d0c3e" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf3cca40365e1e43b9f4c6f4fbadb494b345f8640574bd8669f1b4f3686ec4bb614619fbf1b1aad5eb50d7269eb1b98f56470aa2c5ced1b658215c2f25bf1fe47b270a7447885a21b9cc1a0e31df3b0061b54891809c88d38ca1bacbdc9c5dd75e6631b322453a748cfd3781bc54a2a96c575c8174110ffd8669f1b11aa935a83c17d0b9f46e2a00f8d652f1b9feb99966ea689bb1b8b8b1c7cc3f6c55c1b352a6251200f22931b8eeac4a2ea9093a7ffff48d4878cd77d1d74e19f46a8166e1d0c3effffffffff", + "cborBytes": [ + 216, 102, 159, 27, 243, 204, 164, 3, 101, 225, 228, 59, 159, 76, 111, 79, 186, 219, 73, 75, 52, 95, 134, 64, 87, + 75, 216, 102, 159, 27, 79, 54, 134, 236, 75, 182, 20, 97, 159, 191, 27, 26, 173, 94, 181, 13, 114, 105, 235, 27, + 152, 245, 100, 112, 170, 44, 92, 237, 27, 101, 130, 21, 194, 242, 91, 241, 254, 71, 178, 112, 167, 68, 120, 133, + 162, 27, 156, 193, 160, 227, 29, 243, 176, 6, 27, 84, 137, 24, 9, 200, 141, 56, 202, 27, 172, 189, 201, 197, 221, + 117, 230, 99, 27, 50, 36, 83, 167, 72, 207, 211, 120, 27, 197, 74, 42, 150, 197, 117, 200, 23, 65, 16, 255, 216, + 102, 159, 27, 17, 170, 147, 90, 131, 193, 125, 11, 159, 70, 226, 160, 15, 141, 101, 47, 27, 159, 235, 153, 150, + 110, 166, 137, 187, 27, 139, 139, 28, 124, 195, 246, 197, 92, 27, 53, 42, 98, 81, 32, 15, 34, 147, 27, 142, 234, + 196, 162, 234, 144, 147, 167, 255, 255, 72, 212, 135, 140, 215, 125, 29, 116, 225, 159, 70, 168, 22, 110, 29, 12, + 62, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2279, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6463965944412473661" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "800f4f8df449ab641f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10157661783573360425" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e0e9c1349fd7af66" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11856071553804799540" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b59b49ec764ed893d9f49800f4f8df449ab641f1b8cf7439316736f2948e0e9c1349fd7af66d8669f1ba4893a4314260e3480ffffff", + "cborBytes": [ + 216, 102, 159, 27, 89, 180, 158, 199, 100, 237, 137, 61, 159, 73, 128, 15, 79, 141, 244, 73, 171, 100, 31, 27, + 140, 247, 67, 147, 22, 115, 111, 41, 72, 224, 233, 193, 52, 159, 215, 175, 102, 216, 102, 159, 27, 164, 137, 58, + 67, 20, 38, 14, 52, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2280, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5649332462624888296" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10851398915700995103" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3788481569142778672" + } + }, + { + "_tag": "ByteArray", + "bytearray": "67b410bf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11930790405144392196" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12478726910261254005" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11061647368555457451" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16172143136630050507" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15458301885168920590" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d529cb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17273521004589024323" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c65917b7808e7c8" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "234e786fb0d1f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70e4889909ef0bd1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "321306ca2ece5ad6b449c148" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4082887339456478469" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0a209426e768409" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78f8e1809d3b7ba04374" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbd79799aadc69f2da2b12a2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6765423734279790642" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3138193e3b0a6315" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b14d2a96bcae5ac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37235f9aabdb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16174651130229522068" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91b5d6c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1776782024489257340" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf17001dad314bec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8859133782313344506" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9dfd6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fbeb057ec7ec5ff5842" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b4e6675f17cd6d5e89f80d8669f1b9697e9d2166ab41f9f9f1b349363ea36deab304467b410bf1ba592aea9544532041bad2d58027f3ad775ffbf1b9982ddacb161ebab1be06efe7fc39b0ecb1bd686eba9b83ea80e43d529cb1befb7dfd5aac70443485c65917b7808e7c8ffa0bf47234e786fb0d1f24870e4889909ef0bd14c321306ca2ece5ad6b449c1481b38a95467363e3d05414548b0a209426e7684094a78f8e1809d3b7ba04374413e4ccbd79799aadc69f2da2b12a21b5de39d0aa4be6032ffffffbf421a424180483138193e3b0a6315481b14d2a96bcae5ac4637235f9aabdb1be077e78187337e944491b5d6c01b18a865d664fb497c48cf17001dad314bec1b7af1f73cc0731dfa43d9dfd64a5fbeb057ec7ec5ff5842ffffff", + "cborBytes": [ + 216, 102, 159, 27, 78, 102, 117, 241, 124, 214, 213, 232, 159, 128, 216, 102, 159, 27, 150, 151, 233, 210, 22, + 106, 180, 31, 159, 159, 27, 52, 147, 99, 234, 54, 222, 171, 48, 68, 103, 180, 16, 191, 27, 165, 146, 174, 169, 84, + 69, 50, 4, 27, 173, 45, 88, 2, 127, 58, 215, 117, 255, 191, 27, 153, 130, 221, 172, 177, 97, 235, 171, 27, 224, + 110, 254, 127, 195, 155, 14, 203, 27, 214, 134, 235, 169, 184, 62, 168, 14, 67, 213, 41, 203, 27, 239, 183, 223, + 213, 170, 199, 4, 67, 72, 92, 101, 145, 123, 120, 8, 231, 200, 255, 160, 191, 71, 35, 78, 120, 111, 176, 209, 242, + 72, 112, 228, 136, 153, 9, 239, 11, 209, 76, 50, 19, 6, 202, 46, 206, 90, 214, 180, 73, 193, 72, 27, 56, 169, 84, + 103, 54, 62, 61, 5, 65, 69, 72, 176, 162, 9, 66, 110, 118, 132, 9, 74, 120, 248, 225, 128, 157, 59, 123, 160, 67, + 116, 65, 62, 76, 203, 215, 151, 153, 170, 220, 105, 242, 218, 43, 18, 162, 27, 93, 227, 157, 10, 164, 190, 96, 50, + 255, 255, 255, 191, 66, 26, 66, 65, 128, 72, 49, 56, 25, 62, 59, 10, 99, 21, 72, 27, 20, 210, 169, 107, 202, 229, + 172, 70, 55, 35, 95, 154, 171, 219, 27, 224, 119, 231, 129, 135, 51, 126, 148, 68, 145, 181, 214, 192, 27, 24, + 168, 101, 214, 100, 251, 73, 124, 72, 207, 23, 0, 29, 173, 49, 75, 236, 27, 122, 241, 247, 60, 192, 115, 29, 250, + 67, 217, 223, 214, 74, 95, 190, 176, 87, 236, 126, 197, 255, 88, 66, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2281, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15809772084398708423" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f8ae8cfeca19d4faa753ba" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1605313011004352535" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3e030858" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3911920063232507384" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13965526045194765200" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f8240efd3b480f189" + }, + { + "_tag": "ByteArray", + "bytearray": "99dfdf87597404de502200" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14833323520122429476" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee814b81c2ef4f5b41d7" + }, + { + "_tag": "ByteArray", + "bytearray": "dd221e25dfbd8e7e8b07" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15118391961017899874" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6815757051931986598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e06dec4b4073324d80" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "efdbe6" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17050230048613547679" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8209982144695716159" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1224653248412296686" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6439285401961654551" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07fd90d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10739120371727181272" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6367d54cd0617ac79d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e639605a46" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f792adb7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d09dae26350a173da" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bdb6797f26e78d6c79f9f9f4bf8ae8cfeca19d4faa753baffd8669f1b164737ad9e3a28179f443e0308581b3649ee923eb27df81bc1cf83f2114cc390494f8240efd3b480f1894b99dfdf87597404de502200ffff1bcdda8d26b75820244aee814b81c2ef4f5b41d74add221e25dfbd8e7e8b07ff1bd1cf51634b97db629fd8669f1b5e966eed63c50aa69f49e06dec4b4073324d80ffffff43efdbe69f801bec9e95e4aa4d3e9f1b71efb74322e3493fbf1b10fed7a414a4a5ee1b595ceff4cf4869174407fd90d91b950905146cf5a5d84ad6367d54cd0617ac79d045e639605a4644f792adb7497d09dae26350a173daffffffff", + "cborBytes": [ + 216, 102, 159, 27, 219, 103, 151, 242, 110, 120, 214, 199, 159, 159, 159, 75, 248, 174, 140, 254, 202, 25, 212, + 250, 167, 83, 186, 255, 216, 102, 159, 27, 22, 71, 55, 173, 158, 58, 40, 23, 159, 68, 62, 3, 8, 88, 27, 54, 73, + 238, 146, 62, 178, 125, 248, 27, 193, 207, 131, 242, 17, 76, 195, 144, 73, 79, 130, 64, 239, 211, 180, 128, 241, + 137, 75, 153, 223, 223, 135, 89, 116, 4, 222, 80, 34, 0, 255, 255, 27, 205, 218, 141, 38, 183, 88, 32, 36, 74, + 238, 129, 75, 129, 194, 239, 79, 91, 65, 215, 74, 221, 34, 30, 37, 223, 189, 142, 126, 139, 7, 255, 27, 209, 207, + 81, 99, 75, 151, 219, 98, 159, 216, 102, 159, 27, 94, 150, 110, 237, 99, 197, 10, 166, 159, 73, 224, 109, 236, 75, + 64, 115, 50, 77, 128, 255, 255, 255, 67, 239, 219, 230, 159, 128, 27, 236, 158, 149, 228, 170, 77, 62, 159, 27, + 113, 239, 183, 67, 34, 227, 73, 63, 191, 27, 16, 254, 215, 164, 20, 164, 165, 238, 27, 89, 92, 239, 244, 207, 72, + 105, 23, 68, 7, 253, 144, 217, 27, 149, 9, 5, 20, 108, 245, 165, 216, 74, 214, 54, 125, 84, 205, 6, 23, 172, 121, + 208, 69, 230, 57, 96, 90, 70, 68, 247, 146, 173, 183, 73, 125, 9, 218, 226, 99, 80, 161, 115, 218, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2282, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15076995545969192388" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "503265c413dd9da2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10304686733718093355" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12916413988381298310" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4686144616001285534" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13272069542093484738" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5849012170314806455" + } + }, + { + "_tag": "ByteArray", + "bytearray": "894cb6fb64f9a3" + } + ] + } + ] + }, + "cborHex": "d8669f1bd13c3f9155a3edc49f48503265c413dd9da2d8669f1b8f0199fcdcf27e2b9fd8669f1bb34052169d5a8e869f1b410887b332ddad9effff1bb82fdcee1ac372c21b512bdd945a8cf4b747894cb6fb64f9a3ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 209, 60, 63, 145, 85, 163, 237, 196, 159, 72, 80, 50, 101, 196, 19, 221, 157, 162, 216, 102, + 159, 27, 143, 1, 153, 252, 220, 242, 126, 43, 159, 216, 102, 159, 27, 179, 64, 82, 22, 157, 90, 142, 134, 159, 27, + 65, 8, 135, 179, 50, 221, 173, 158, 255, 255, 27, 184, 47, 220, 238, 26, 195, 114, 194, 27, 81, 43, 221, 148, 90, + 140, 244, 183, 71, 137, 76, 182, 251, 100, 249, 163, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2283, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14393813237180819265" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16278627344406543930" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bc7c118e0a57a67419f1be1e94d52664ffe3a80ffff", + "cborBytes": [ + 216, 102, 159, 27, 199, 193, 24, 224, 165, 122, 103, 65, 159, 27, 225, 233, 77, 82, 102, 79, 254, 58, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2284, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2231291115147343343" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7323595526008290166" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10028312276709922054" + } + } + ] + }, + "cborHex": "d8669f1b1ef7237284d7b5ef9f1b65a2a3542e5d3b761b8b2bb8e225fbd506ffff", + "cborBytes": [ + 216, 102, 159, 27, 30, 247, 35, 114, 132, 215, 181, 239, 159, 27, 101, 162, 163, 84, 46, 93, 59, 118, 27, 139, 43, + 184, 226, 37, 251, 213, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2285, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "87208408433105627" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11368597209253416971" + } + } + ] + }, + "cborHex": "d8669f1b0135d395de151adb9f1b9dc55eedac0c100bffff", + "cborBytes": [ + 216, 102, 159, 27, 1, 53, 211, 149, 222, 21, 26, 219, 159, 27, 157, 197, 94, 237, 172, 12, 16, 11, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2286, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "61fc6ba658807f4c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5909352312574363712" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13739288608408267736" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fc419ed6ad2c6375" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4673799576860999638" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "77f4ce387863" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4b2644364122461d" + } + ] + }, + "cborHex": "d905009f4861fc6ba658807f4c1b52023c9e83a0c840d8669f1bbeabc2320abeebd89f9f48fc419ed6ad2c63751b40dcabf3ca2bbfd6ff4677f4ce387863ffff484b2644364122461dff", + "cborBytes": [ + 217, 5, 0, 159, 72, 97, 252, 107, 166, 88, 128, 127, 76, 27, 82, 2, 60, 158, 131, 160, 200, 64, 216, 102, 159, 27, + 190, 171, 194, 50, 10, 190, 235, 216, 159, 159, 72, 252, 65, 158, 214, 173, 44, 99, 117, 27, 64, 220, 171, 243, + 202, 43, 191, 214, 255, 70, 119, 244, 206, 56, 120, 99, 255, 255, 72, 75, 38, 68, 54, 65, 34, 70, 29, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2287, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9094415121586807166" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7153764033514963277" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b307111488acb5b6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8396730265643064999" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51da185694" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13555926484674186506" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2259071412638903269" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4704827469306094178" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12044192081230833514" + } + }, + { + "_tag": "ByteArray", + "bytearray": "22" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bf1b10d44a52ae7bab" + } + ] + } + ] + }, + "cborHex": "d8669f1b7e35da5e6a1f617e9fbf1b6347467c78a0014d48b307111488acb5b61b74872db0566d1ea74551da185694ff1bbc205350c0508d0ad8669f1b1f59d57b1094ebe59fd8669f1b414ae7a7f57d62629f1ba72590e29056276a4122ffff49bf1b10d44a52ae7babffffffff", + "cborBytes": [ + 216, 102, 159, 27, 126, 53, 218, 94, 106, 31, 97, 126, 159, 191, 27, 99, 71, 70, 124, 120, 160, 1, 77, 72, 179, 7, + 17, 20, 136, 172, 181, 182, 27, 116, 135, 45, 176, 86, 109, 30, 167, 69, 81, 218, 24, 86, 148, 255, 27, 188, 32, + 83, 80, 192, 80, 141, 10, 216, 102, 159, 27, 31, 89, 213, 123, 16, 148, 235, 229, 159, 216, 102, 159, 27, 65, 74, + 231, 167, 245, 125, 98, 98, 159, 27, 167, 37, 144, 226, 144, 86, 39, 106, 65, 34, 255, 255, 73, 191, 27, 16, 212, + 74, 82, 174, 123, 171, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2288, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + }, + "cborHex": "d9050b9f1200ff", + "cborBytes": [217, 5, 11, 159, 18, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2289, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "77837982819084290" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16712516185597124252" + } + }, + { + "_tag": "ByteArray", + "bytearray": "76325d77" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15109023662614663727" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "914efac77fb2a5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b03303a99c78a21cf8abb943" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7255947183775384192" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1ae861adb7b9b7c9b2c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13163995" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9971961092642224480" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f937c3c0e2e7a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7130558075943996726" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6586503728858071303" + } + } + ] + }, + "cborHex": "d8669f1b0114893ba3f6e8029f1be7eec8ec917b9e9c4476325d771bd1ae08f8591e522f9f47914efac77fb2a5bf4cb03303a99c78a21cf8abb9431b64b24d851ded82804ad1ae861adb7b9b7c9b2c441316399541e91b8a6385c7b0f4b96047f937c3c0e2e7a11b62f4d4ca6eef4d36ffa0ff1b5b67f63e9e5f0107ffff", + "cborBytes": [ + 216, 102, 159, 27, 1, 20, 137, 59, 163, 246, 232, 2, 159, 27, 231, 238, 200, 236, 145, 123, 158, 156, 68, 118, 50, + 93, 119, 27, 209, 174, 8, 248, 89, 30, 82, 47, 159, 71, 145, 78, 250, 199, 127, 178, 165, 191, 76, 176, 51, 3, + 169, 156, 120, 162, 28, 248, 171, 185, 67, 27, 100, 178, 77, 133, 29, 237, 130, 128, 74, 209, 174, 134, 26, 219, + 123, 155, 124, 155, 44, 68, 19, 22, 57, 149, 65, 233, 27, 138, 99, 133, 199, 176, 244, 185, 96, 71, 249, 55, 195, + 192, 226, 231, 161, 27, 98, 244, 212, 202, 110, 239, 77, 54, 255, 160, 255, 27, 91, 103, 246, 62, 158, 95, 1, 7, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2290, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11476000481533854131" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9493835470266622198" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3716429616850026328" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4631af0a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15422239053400380842" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afdb8c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38853bdf" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4081383934013019172" + } + } + ] + }, + "cborHex": "d87b9fd8669f1b9f42f1a2b00981b39f1b83c0e10f493ee0f6ffffbf4204cf1b3393690bc9163f58444631af0a1bd606ccb5631615aa43afdb8c4438853bdfff1b38a3fd105ad51424ff", + "cborBytes": [ + 216, 123, 159, 216, 102, 159, 27, 159, 66, 241, 162, 176, 9, 129, 179, 159, 27, 131, 192, 225, 15, 73, 62, 224, + 246, 255, 255, 191, 66, 4, 207, 27, 51, 147, 105, 11, 201, 22, 63, 88, 68, 70, 49, 175, 10, 27, 214, 6, 204, 181, + 99, 22, 21, 170, 67, 175, 219, 140, 68, 56, 133, 59, 223, 255, 27, 56, 163, 253, 16, 90, 213, 20, 36, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2291, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4597216888198969743" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "400492287490823421" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b598ccb8c2eb202d2e73" + }, + { + "_tag": "ByteArray", + "bytearray": "6c06c5a64bb3e96be297f2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2192048383790282534" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18222909585948742762" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5320070565001614808" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da0646d61454" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6408177579735377974" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10270544592115814949" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13353600962912028312" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4139627425167198303" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12191212734228857714" + } + }, + { + "_tag": "ByteArray", + "bytearray": "12e2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10900599831159700263" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "115d30cbdafc1e722e7d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5554123230297038033" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3854c9ae0dac54c71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17606740390523121433" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e68dceea19350ae9e93dea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905089fd8669f1b3fcc98671886b98f80ff9fd8669f1b058ed59d132c94fd9f4ab598ccb8c2eb202d2e734b6c06c5a64bb3e96be297f2ffff9f1b1e6bb8641e49f7261bfce4c7b82489146a1b49d4affdeeeed5d846da0646d61454ff9f1b58ee6b8e89bfe8361b8e884de40edf52251bb95185534aaf8698ffffd8669f1b3972e935e38e485f9f1ba92fe363d4ee03724212e21b9746b5cae6f4fb27bf4a115d30cbdafc1e722e7d1b4d1435a6a4999cd149b3854c9ae0dac54c711bf457b519c5a72f194be68dceea19350ae9e93dea4197ffffffff", + "cborBytes": [ + 217, 5, 8, 159, 216, 102, 159, 27, 63, 204, 152, 103, 24, 134, 185, 143, 128, 255, 159, 216, 102, 159, 27, 5, 142, + 213, 157, 19, 44, 148, 253, 159, 74, 181, 152, 204, 184, 194, 235, 32, 45, 46, 115, 75, 108, 6, 197, 166, 75, 179, + 233, 107, 226, 151, 242, 255, 255, 159, 27, 30, 107, 184, 100, 30, 73, 247, 38, 27, 252, 228, 199, 184, 36, 137, + 20, 106, 27, 73, 212, 175, 253, 238, 238, 213, 216, 70, 218, 6, 70, 214, 20, 84, 255, 159, 27, 88, 238, 107, 142, + 137, 191, 232, 54, 27, 142, 136, 77, 228, 14, 223, 82, 37, 27, 185, 81, 133, 83, 74, 175, 134, 152, 255, 255, 216, + 102, 159, 27, 57, 114, 233, 53, 227, 142, 72, 95, 159, 27, 169, 47, 227, 99, 212, 238, 3, 114, 66, 18, 226, 27, + 151, 70, 181, 202, 230, 244, 251, 39, 191, 74, 17, 93, 48, 203, 218, 252, 30, 114, 46, 125, 27, 77, 20, 53, 166, + 164, 153, 156, 209, 73, 179, 133, 76, 154, 224, 218, 197, 76, 113, 27, 244, 87, 181, 25, 197, 167, 47, 25, 75, + 230, 141, 206, 234, 25, 53, 10, 233, 233, 61, 234, 65, 151, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2292, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11226358018774138417" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f036c4ce2cdf5ae515345" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f1b9bcc09236663fe314b7f036c4ce2cdf5ae515345ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 27, 155, 204, 9, 35, 102, 99, 254, 49, 75, 127, 3, + 108, 76, 226, 205, 245, 174, 81, 83, 69, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2293, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2790e7b0" + } + ] + }, + "cborHex": "d87f9f442790e7b0ff", + "cborBytes": [216, 127, 159, 68, 39, 144, 231, 176, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2294, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5902566089405333626" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14755627464534698883" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9180672325949837892" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16314581015680209219" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98323f67b3ca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c50aa9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6eb51" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a274974cf56bb451" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0c25a02fbe" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5115062867077494797" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4565234708342132462" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "064bec" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9423" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb003c05f301f9" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49fbf1b51ea2095ce45807a1bccc685001596ab831b7f684cd6d37fd2441be26908fed2f351434698323f67b3ca43c50aa943b6eb5148a274974cf56bb451ff450c25a02fbed905039fd8669f1b46fc5a93abf1f80d9f1b3f5af8c793044eeeffff43064becffbf42942347fb003c05f301f9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 191, 27, 81, 234, 32, 149, 206, 69, 128, 122, 27, + 204, 198, 133, 0, 21, 150, 171, 131, 27, 127, 104, 76, 214, 211, 127, 210, 68, 27, 226, 105, 8, 254, 210, 243, 81, + 67, 70, 152, 50, 63, 103, 179, 202, 67, 197, 10, 169, 67, 182, 235, 81, 72, 162, 116, 151, 76, 245, 107, 180, 81, + 255, 69, 12, 37, 160, 47, 190, 217, 5, 3, 159, 216, 102, 159, 27, 70, 252, 90, 147, 171, 241, 248, 13, 159, 27, + 63, 90, 248, 199, 147, 4, 78, 238, 255, 255, 67, 6, 75, 236, 255, 191, 66, 148, 35, 71, 251, 0, 60, 5, 243, 1, + 249, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2295, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18195368324803124595" + }, + "fields": [] + }, + "cborHex": "d8669f1bfc82ef169548dd7380ff", + "cborBytes": [216, 102, 159, 27, 252, 130, 239, 22, 149, 72, 221, 115, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2296, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "373601be21347e" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f47373601be21347effff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 71, 55, 54, 1, 190, 33, 52, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2297, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6019653a82e13d30cb53a8c4" + }, + { + "_tag": "ByteArray", + "bytearray": "79176c87" + }, + { + "_tag": "ByteArray", + "bytearray": "0588bb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10163019996627638410" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14119867676167298769" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a5e630916f1051753912" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0bbe2c21db89c035d30f28" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13474150347330748189" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2aa8b5970afcaefe80c08a0b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e337a95e09a11" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "168619948452309180" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b509" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15657895211005556252" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c362ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2847766709885115503" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e65cab65" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ebf141b7fbbd864b04080" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16769330970029684320" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4469519183690682152" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "445bcb9b" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f9f9f4c6019653a82e13d30cb53a8c44479176c87430588bb1b8d0a4cd7482e988aff1bc3f3d8d75978ded14aa5e630916f1051753912a0bf4b0bbe2c21db89c035d30f281bbafdcc5a0edaff1d4c2aa8b5970afcaefe80c08a0b4298e4477e337a95e09a111b02570ef3218b68bc42b5091bd94c04bc3e46b61c43c362ed1b27854cbc09e29c6f44e65cab654b0ebf141b7fbbd864b04080ffffd8669f1be8b8a1ab659376609fbf41711b3e06ec045cad4f284273cb44445bcb9bffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 159, 159, 76, 96, 25, 101, 58, 130, 225, 61, 48, + 203, 83, 168, 196, 68, 121, 23, 108, 135, 67, 5, 136, 187, 27, 141, 10, 76, 215, 72, 46, 152, 138, 255, 27, 195, + 243, 216, 215, 89, 120, 222, 209, 74, 165, 230, 48, 145, 111, 16, 81, 117, 57, 18, 160, 191, 75, 11, 190, 44, 33, + 219, 137, 192, 53, 211, 15, 40, 27, 186, 253, 204, 90, 14, 218, 255, 29, 76, 42, 168, 181, 151, 10, 252, 174, 254, + 128, 192, 138, 11, 66, 152, 228, 71, 126, 51, 122, 149, 224, 154, 17, 27, 2, 87, 14, 243, 33, 139, 104, 188, 66, + 181, 9, 27, 217, 76, 4, 188, 62, 70, 182, 28, 67, 195, 98, 237, 27, 39, 133, 76, 188, 9, 226, 156, 111, 68, 230, + 92, 171, 101, 75, 14, 191, 20, 27, 127, 187, 216, 100, 176, 64, 128, 255, 255, 216, 102, 159, 27, 232, 184, 161, + 171, 101, 147, 118, 96, 159, 191, 65, 113, 27, 62, 6, 236, 4, 92, 173, 79, 40, 66, 115, 203, 68, 68, 91, 203, 155, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2298, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7859292419098890861" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10466925082081664987" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8600722225195464631" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef9525" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3de4a4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcb75a6af7fd670107de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3868070707204817507" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6d11d0d09a4f526d9f1b9141fce7f01a9fdbbf1b775be74b949537b743ef95251bfffffffffffffff1433de4a44adcb75a6af7fd670107de1b35ae25d075098263ffffff", + "cborBytes": [ + 216, 102, 159, 27, 109, 17, 208, 208, 154, 79, 82, 109, 159, 27, 145, 65, 252, 231, 240, 26, 159, 219, 191, 27, + 119, 91, 231, 75, 148, 149, 55, 183, 67, 239, 149, 37, 27, 255, 255, 255, 255, 255, 255, 255, 241, 67, 61, 228, + 164, 74, 220, 183, 90, 106, 247, 253, 103, 1, 7, 222, 27, 53, 174, 37, 208, 117, 9, 130, 99, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2299, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16577761880370482651" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7cb939" + } + ] + }, + "cborHex": "d8669f1be6100a98f27e8ddb9f437cb939ffff", + "cborBytes": [216, 102, 159, 27, 230, 16, 10, 152, 242, 126, 141, 219, 159, 67, 124, 185, 57, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2300, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17158181622950777134" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4038609634598728939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5db1c65ed7268d4dd3ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7005084038363690141" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f48ad7f7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8123152605244813082" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10990841638479353767" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9467744667604515725" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3109082492698136595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11637820476573068776" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7687764026539362511" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15411632574001847391" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9830418110739883142" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bee1e1b47339dd12e9f9fbf1b380c0610b0ba34eb4a5db1c65ed7268d4dd3ba1b61370ed1806d349d44f48ad7f71b70bb3c4193e7ef1a1b9887503cfc2257a71b83642f9ce8aa7b8d1b2b25ae0df2a890131ba181d81049e7ade81b6ab06ca68ee7c8cf1bd5e11e2bf6381c5f1b886ca9301c37a486ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 238, 30, 27, 71, 51, 157, 209, 46, 159, 159, 191, 27, 56, 12, 6, 16, 176, 186, 52, 235, 74, 93, + 177, 198, 94, 215, 38, 141, 77, 211, 186, 27, 97, 55, 14, 209, 128, 109, 52, 157, 68, 244, 138, 215, 247, 27, 112, + 187, 60, 65, 147, 231, 239, 26, 27, 152, 135, 80, 60, 252, 34, 87, 167, 27, 131, 100, 47, 156, 232, 170, 123, 141, + 27, 43, 37, 174, 13, 242, 168, 144, 19, 27, 161, 129, 216, 16, 73, 231, 173, 232, 27, 106, 176, 108, 166, 142, + 231, 200, 207, 27, 213, 225, 30, 43, 246, 56, 28, 95, 27, 136, 108, 169, 48, 28, 55, 164, 134, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2301, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11363720471662547059" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "80f3342254d9342aa5b8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10821948240290308518" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7620929638204724262" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12831270503210317521" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2912682132282803618" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3672736893808643581" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85d5788941" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8111751394863586432" + } + } + ] + }, + "cborHex": "d8669f1b9db40b8fb847d0739f4a80f3342254d9342aa5b8bf1b962f4896602ae1a61b69c2fb20e77054261bb211d48a28cc76d11b286becf79e5805a2ffbf1b32f82ebef4ef8dfd4585d5788941ff1b7092baea6d1f9c80ffff", + "cborBytes": [ + 216, 102, 159, 27, 157, 180, 11, 143, 184, 71, 208, 115, 159, 74, 128, 243, 52, 34, 84, 217, 52, 42, 165, 184, + 191, 27, 150, 47, 72, 150, 96, 42, 225, 166, 27, 105, 194, 251, 32, 231, 112, 84, 38, 27, 178, 17, 212, 138, 40, + 204, 118, 209, 27, 40, 107, 236, 247, 158, 88, 5, 162, 255, 191, 27, 50, 248, 46, 190, 244, 239, 141, 253, 69, + 133, 213, 120, 137, 65, 255, 27, 112, 146, 186, 234, 109, 31, 156, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2302, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1834359159033318779" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1151978363031709121" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "34a6f93158d108fb58" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a17d7f173aa08f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6697851078093080845" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed44" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7d287" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14976200769896080294" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6200401152514496438" + } + }, + { + "_tag": "ByteArray", + "bytearray": "adaf44e6c7ee52d9cab1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15452595078222288594" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6845477276098864743" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13402878799924110614" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3647287135039321193" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "56968bb6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10056900601004016747" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1126955330499357851" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f3988" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1966543682796969804" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4161577923952816270" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5b4e5da8861" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15416667808581279272" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca7a" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "395ffee194" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5039318785425257403" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc372ba61a5d2e46" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8552873484267119847" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7abe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17798810957933421994" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12023051479482970365" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "571506609324228551" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecb6ed" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b1974f3efb0aa4d7b9fd8669f1b0ffca637bd70e5c19f4934a6f93158d108fb58bf47a17d7f173aa08f1b5cf38c119c34890d42ed4443a7d287ffd8669f1bcfd62740be9663a69f1b560c3fff408c97b64aadaf44e6c7ee52d9cab11bd672a55a2f6396d21b5f0005504fe1a6671bba009741cd172516ffffd8669f1b329dc4533ddef4699f4456968bb61b8b9149d01841c46bffffa0ffffbf1b0fa3bfe6f825ac9b439f39881b1b4a910f7066df4c41ce1b39c0e512a650b08e46f5b4e5da88611bd5f301b0deafde2842ca7aff45395ffee194bf1b45ef41bc6339b3bb48bc372ba61a5d2e461b76b1e91e6e9964e7427abe1bf70214439bf3a5aa1ba6da759ea6d130fdffbf1b07ee663bb38effc743ecb6edffffff", + "cborBytes": [ + 216, 102, 159, 27, 25, 116, 243, 239, 176, 170, 77, 123, 159, 216, 102, 159, 27, 15, 252, 166, 55, 189, 112, 229, + 193, 159, 73, 52, 166, 249, 49, 88, 209, 8, 251, 88, 191, 71, 161, 125, 127, 23, 58, 160, 143, 27, 92, 243, 140, + 17, 156, 52, 137, 13, 66, 237, 68, 67, 167, 210, 135, 255, 216, 102, 159, 27, 207, 214, 39, 64, 190, 150, 99, 166, + 159, 27, 86, 12, 63, 255, 64, 140, 151, 182, 74, 173, 175, 68, 230, 199, 238, 82, 217, 202, 177, 27, 214, 114, + 165, 90, 47, 99, 150, 210, 27, 95, 0, 5, 80, 79, 225, 166, 103, 27, 186, 0, 151, 65, 205, 23, 37, 22, 255, 255, + 216, 102, 159, 27, 50, 157, 196, 83, 61, 222, 244, 105, 159, 68, 86, 150, 139, 182, 27, 139, 145, 73, 208, 24, 65, + 196, 107, 255, 255, 160, 255, 255, 191, 27, 15, 163, 191, 230, 248, 37, 172, 155, 67, 159, 57, 136, 27, 27, 74, + 145, 15, 112, 102, 223, 76, 65, 206, 27, 57, 192, 229, 18, 166, 80, 176, 142, 70, 245, 180, 229, 218, 136, 97, 27, + 213, 243, 1, 176, 222, 175, 222, 40, 66, 202, 122, 255, 69, 57, 95, 254, 225, 148, 191, 27, 69, 239, 65, 188, 99, + 57, 179, 187, 72, 188, 55, 43, 166, 26, 93, 46, 70, 27, 118, 177, 233, 30, 110, 153, 100, 231, 66, 122, 190, 27, + 247, 2, 20, 67, 155, 243, 165, 170, 27, 166, 218, 117, 158, 166, 209, 48, 253, 255, 191, 27, 7, 238, 102, 59, 179, + 142, 255, 199, 67, 236, 182, 237, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2303, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6934551201508779554" + } + }, + { + "_tag": "ByteArray", + "bytearray": "66ee7248100b65" + }, + { + "_tag": "ByteArray", + "bytearray": "ff04fc03" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14842618768561456945" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d7f5b1c29f3a302deaec" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15282212180811924289" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15758210901930980221" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2251102589417246745" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8799f1b603c7993b2b066224766ee7248100b6544ff04fc03d8669f1bcdfb932164a6c7319f4ad7f5b1c29f3a302deaecd8669f1bd4155302837143419f1bdab069532148b37dffff9f1b1f3d85e0d32d5019ffffffff", + "cborBytes": [ + 216, 121, 159, 27, 96, 60, 121, 147, 178, 176, 102, 34, 71, 102, 238, 114, 72, 16, 11, 101, 68, 255, 4, 252, 3, + 216, 102, 159, 27, 205, 251, 147, 33, 100, 166, 199, 49, 159, 74, 215, 245, 177, 194, 159, 58, 48, 45, 234, 236, + 216, 102, 159, 27, 212, 21, 83, 2, 131, 113, 67, 65, 159, 27, 218, 176, 105, 83, 33, 72, 179, 125, 255, 255, 159, + 27, 31, 61, 133, 224, 211, 45, 80, 25, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2304, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "548267417336116927" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4617172373798580710" + } + }, + { + "_tag": "ByteArray", + "bytearray": "71883626bc20dcd87c3d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15256876971285457623" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b079bd64fac3d76bf9f1b40137dcfa702f1e64a71883626bc20dcd87c3dd8669f1bd3bb50c55f4eaad780ffffff", + "cborBytes": [ + 216, 102, 159, 27, 7, 155, 214, 79, 172, 61, 118, 191, 159, 27, 64, 19, 125, 207, 167, 2, 241, 230, 74, 113, 136, + 54, 38, 188, 32, 220, 216, 124, 61, 216, 102, 159, 27, 211, 187, 80, 197, 95, 78, 170, 215, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2305, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9608308620350754746" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11662821614652925671" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8199470172129640311" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95b9f4eb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2712513679580152070" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10683581362696156325" + } + } + ] + }, + "cborHex": "d905029f9f1b855791c880548fbad8669f1ba1daaa775c22a6e79f1b71ca5eadcc32bf774495b9f4eb1b25a4c8d1efc34106ffffff1b9443b4a5347cf4a5ff", + "cborBytes": [ + 217, 5, 2, 159, 159, 27, 133, 87, 145, 200, 128, 84, 143, 186, 216, 102, 159, 27, 161, 218, 170, 119, 92, 34, 166, + 231, 159, 27, 113, 202, 94, 173, 204, 50, 191, 119, 68, 149, 185, 244, 235, 27, 37, 164, 200, 209, 239, 195, 65, + 6, 255, 255, 255, 27, 148, 67, 180, 165, 52, 124, 244, 165, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2306, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7122300805038829060" + }, + "fields": [] + }, + "cborHex": "d8669f1b62d77ed8bbd16e0480ff", + "cborBytes": [216, 102, 159, 27, 98, 215, 126, 216, 187, 209, 110, 4, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2307, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14503678825975319850" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "083d7c6cd2a75b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79c32484a57a7a2da1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a204" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6315694977101723812" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bc9476b0c669d0d2a9fbf47083d7c6cd2a75b4979c32484a57a7a2da142a2041b57a5db1ea3ddf8a4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 201, 71, 107, 12, 102, 157, 13, 42, 159, 191, 71, 8, 61, 124, 108, 210, 167, 91, 73, 121, 195, + 36, 132, 165, 122, 122, 45, 161, 66, 162, 4, 27, 87, 165, 219, 30, 163, 221, 248, 164, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2308, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16693492904953879231" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "490449224060663392" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3744999054700298591" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "709096384298560925" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc28" + }, + { + "_tag": "ByteArray", + "bytearray": "91467588b6" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ce474e70d6ac23149" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84f09bcd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fe93a7c9f8c484460" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "929199c8ca823d1b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "99be79b92fcf" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8688714777208633254" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13396590125590610480" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "4180deb500d3d0d991a6" + } + ] + }, + "cborHex": "d8669f1be7ab3359e4479abf9f9f1b06ce6cf884807660d8669f1b33f8e8cc6395c15f80ff9f1b09d7376791a12d9d42cc284591467588b6ffbf490ce474e70d6ac231494484f09bcd491fe93a7c9f8c48446048929199c8ca823d1bff9f4699be79b92fcfffffbf1b7894840e1a3537a61bb9ea3fbdb5558230ff804a4180deb500d3d0d991a6ffff", + "cborBytes": [ + 216, 102, 159, 27, 231, 171, 51, 89, 228, 71, 154, 191, 159, 159, 27, 6, 206, 108, 248, 132, 128, 118, 96, 216, + 102, 159, 27, 51, 248, 232, 204, 99, 149, 193, 95, 128, 255, 159, 27, 9, 215, 55, 103, 145, 161, 45, 157, 66, 204, + 40, 69, 145, 70, 117, 136, 182, 255, 191, 73, 12, 228, 116, 231, 13, 106, 194, 49, 73, 68, 132, 240, 155, 205, 73, + 31, 233, 58, 124, 159, 140, 72, 68, 96, 72, 146, 145, 153, 200, 202, 130, 61, 27, 255, 159, 70, 153, 190, 121, + 185, 47, 207, 255, 255, 191, 27, 120, 148, 132, 14, 26, 53, 55, 166, 27, 185, 234, 63, 189, 181, 85, 130, 48, 255, + 128, 74, 65, 128, 222, 181, 0, 211, 208, 217, 145, 166, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2309, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12148802714797722237" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa78efffa9872c39f6f65bd6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6075094566976913399" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11392762604768858142" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16815058481919640026" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16376514062222391774" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dac0b857e472" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10989891059442451598" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4ec05438858df8d62f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14343670630163966753" + } + }, + { + "_tag": "ByteArray", + "bytearray": "54" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1364139543952856835" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15071944230555142796" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6257267674919544523" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15840031061007417193" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a471b46e62b829a9985bf73e" + }, + { + "_tag": "ByteArray", + "bytearray": "8c3e18158a59" + } + ] + } + ] + }, + "cborHex": "d8669f1ba89937b3b5d1ca7d9f4caa78efffa9872c39f6f65bd61b544f125249907ff7bf1b9e1b393a439a101e1be95b16996c3d41da1be34510c5e9f479de46dac0b857e472413f1b9883efb10e4f048eff9f494ec05438858df8d62f1bc70ef4712e206b214154ff9f1b12ee65b00d5f9703d8669f1bd12a4d6c50bcca8c80ffd8669f1b56d647cc441d26cb9f1bdbd318536e803f69ffff4ca471b46e62b829a9985bf73e468c3e18158a59ffffff", + "cborBytes": [ + 216, 102, 159, 27, 168, 153, 55, 179, 181, 209, 202, 125, 159, 76, 170, 120, 239, 255, 169, 135, 44, 57, 246, 246, + 91, 214, 27, 84, 79, 18, 82, 73, 144, 127, 247, 191, 27, 158, 27, 57, 58, 67, 154, 16, 30, 27, 233, 91, 22, 153, + 108, 61, 65, 218, 27, 227, 69, 16, 197, 233, 244, 121, 222, 70, 218, 192, 184, 87, 228, 114, 65, 63, 27, 152, 131, + 239, 177, 14, 79, 4, 142, 255, 159, 73, 78, 192, 84, 56, 133, 141, 248, 214, 47, 27, 199, 14, 244, 113, 46, 32, + 107, 33, 65, 84, 255, 159, 27, 18, 238, 101, 176, 13, 95, 151, 3, 216, 102, 159, 27, 209, 42, 77, 108, 80, 188, + 202, 140, 128, 255, 216, 102, 159, 27, 86, 214, 71, 204, 68, 29, 38, 203, 159, 27, 219, 211, 24, 83, 110, 128, 63, + 105, 255, 255, 76, 164, 113, 180, 110, 98, 184, 41, 169, 152, 91, 247, 62, 70, 140, 62, 24, 21, 138, 89, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2310, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12617229441101505682" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "76ad47fc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15431920453325496071" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23451f28e495" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1e2cc552" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "480b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3972941867069188952" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1baf196753e674a4929f4476ad47fcd8669f1bd62931e3f68d1f079f14bf040906040e06144623451f28e4951bfffffffffffffff114ff441e2cc5529f42480b1b3722b9941befab58ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 175, 25, 103, 83, 230, 116, 164, 146, 159, 68, 118, 173, 71, 252, 216, 102, 159, 27, 214, 41, + 49, 227, 246, 141, 31, 7, 159, 20, 191, 4, 9, 6, 4, 14, 6, 20, 70, 35, 69, 31, 40, 228, 149, 27, 255, 255, 255, + 255, 255, 255, 255, 241, 20, 255, 68, 30, 44, 197, 82, 159, 66, 72, 11, 27, 55, 34, 185, 148, 27, 239, 171, 88, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2311, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "764ce014845e2160" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13664230097262939903" + } + } + } + ] + } + ] + }, + "cborHex": "d87a9fbf48764ce014845e21601bbda118e0948f0effffff", + "cborBytes": [ + 216, 122, 159, 191, 72, 118, 76, 224, 20, 132, 94, 33, 96, 27, 189, 161, 24, 224, 148, 143, 14, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2312, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11601748092936603267" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04000491612a87" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1784923583551318255" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f530ca9ec1" + } + } + ] + } + ] + }, + "cborHex": "d8669f1ba101b06bfd0d46839f4704000491612a87bf1b18c5528ad4cb28ef45f530ca9ec1ffffff", + "cborBytes": [ + 216, 102, 159, 27, 161, 1, 176, 107, 253, 13, 70, 131, 159, 71, 4, 0, 4, 145, 97, 42, 135, 191, 27, 24, 197, 82, + 138, 212, 203, 40, 239, 69, 245, 48, 202, 158, 193, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2313, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13460110567711117963" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "251025678101954273" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12557565934801105744" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11631710337731891969" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11500565952308166289" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5586436458707632549" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bbacbeb3f21e7128b9f1b037bd28634c4bee1d8669f1bae456faf535db35080ff1ba16c22ecbabf93011b9f9a37cd0f47be91d8669f1b4d87025c698f41a580ffffff", + "cborBytes": [ + 216, 102, 159, 27, 186, 203, 235, 63, 33, 231, 18, 139, 159, 27, 3, 123, 210, 134, 52, 196, 190, 225, 216, 102, + 159, 27, 174, 69, 111, 175, 83, 93, 179, 80, 128, 255, 27, 161, 108, 34, 236, 186, 191, 147, 1, 27, 159, 154, 55, + 205, 15, 71, 190, 145, 216, 102, 159, 27, 77, 135, 2, 92, 105, 143, 65, 165, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2314, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13444132273908782697" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "badd5eed6a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "007804ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "790727" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12587344868989864301" + } + } + ] + }, + "cborHex": "d87d9fbf1bba932712b3b2966945badd5eed6a44007804ea43790727ff1baeaf3b77bd7a096dff", + "cborBytes": [ + 216, 125, 159, 191, 27, 186, 147, 39, 18, 179, 178, 150, 105, 69, 186, 221, 94, 237, 106, 68, 0, 120, 4, 234, 67, + 121, 7, 39, 255, 27, 174, 175, 59, 119, 189, 122, 9, 109, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2315, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11776972161750494076" + }, + "fields": [] + }, + "cborHex": "d8669f1ba37035c8b6cd6b7c80ff", + "cborBytes": [216, 102, 159, 27, 163, 112, 53, 200, 182, 205, 107, 124, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2316, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13789924643034100638" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1523565420308971841" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2560514798595478263" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13368077910377411320" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11007152940525775818" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bbf5fa7669373f39e9f1b1524caad7595c1411b2388c6a4a46a12f79fbf1bb984f40849cab2f81b98c14347f06f6bcaffffffff", + "cborBytes": [ + 216, 102, 159, 27, 191, 95, 167, 102, 147, 115, 243, 158, 159, 27, 21, 36, 202, 173, 117, 149, 193, 65, 27, 35, + 136, 198, 164, 164, 106, 18, 247, 159, 191, 27, 185, 132, 244, 8, 73, 202, 178, 248, 27, 152, 193, 67, 71, 240, + 111, 107, 202, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2317, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13703323212965064762" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11803538699874248932" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12427613066651362719" + } + } + ] + }, + "cborHex": "d8669f1bbe2bfbdbdf25b03a9f1ba3ce97e8e294a8e41bac77c03d63c1e59fffff", + "cborBytes": [ + 216, 102, 159, 27, 190, 43, 251, 219, 223, 37, 176, 58, 159, 27, 163, 206, 151, 232, 226, 148, 168, 228, 27, 172, + 119, 192, 61, 99, 193, 229, 159, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2318, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10715140491326975152" + }, + "fields": [] + }, + "cborHex": "d8669f1b94b3d3816ff2ecb080ff", + "cborBytes": [216, 102, 159, 27, 148, 179, 211, 129, 111, 242, 236, 176, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2319, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "66af" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10495618583698889641" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10184701571626904126" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12077877401825416375" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "97b344" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14623306183779434164" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7630609479439296445" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10175648311764864763" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9020872934039852049" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6328973015697994345" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5199393973279330132" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a8085013a2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5977873821093009245" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b2" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5649967679485778039" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5313270903977258647" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11427384666588366037" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13349873896828128913" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7698988177052979570" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "61" + }, + { + "_tag": "ByteArray", + "bytearray": "f36b7ac8722d60af73" + } + ] + } + ] + }, + "cborHex": "d905099f804266afd8669f1b91a7ed7e635c5ba99fd8669f1b8d57541e582f2a3e80ffd8669f1ba79d3d81708594b79f4397b3441bcaf06b7f1df23eb4ffffd8669f1b69e55ee491b527bd9f1b8d372a3a060c4efb1b7d3094238d619411ffff1b57d5076ce9b63269ffff9fd8669f1b4827f545689f0f549f45a8085013a21b52f5ac91725b175d41b2ffffff9fbf1b4e68b7ab703018771b49bc87bc7afbae971b9e9639cf33bec4d51bb944479418b34e91ffd8669f1b6ad84cf4bf2cd17280ff416149f36b7ac8722d60af73ffff", + "cborBytes": [ + 217, 5, 9, 159, 128, 66, 102, 175, 216, 102, 159, 27, 145, 167, 237, 126, 99, 92, 91, 169, 159, 216, 102, 159, 27, + 141, 87, 84, 30, 88, 47, 42, 62, 128, 255, 216, 102, 159, 27, 167, 157, 61, 129, 112, 133, 148, 183, 159, 67, 151, + 179, 68, 27, 202, 240, 107, 127, 29, 242, 62, 180, 255, 255, 216, 102, 159, 27, 105, 229, 94, 228, 145, 181, 39, + 189, 159, 27, 141, 55, 42, 58, 6, 12, 78, 251, 27, 125, 48, 148, 35, 141, 97, 148, 17, 255, 255, 27, 87, 213, 7, + 108, 233, 182, 50, 105, 255, 255, 159, 216, 102, 159, 27, 72, 39, 245, 69, 104, 159, 15, 84, 159, 69, 168, 8, 80, + 19, 162, 27, 82, 245, 172, 145, 114, 91, 23, 93, 65, 178, 255, 255, 255, 159, 191, 27, 78, 104, 183, 171, 112, 48, + 24, 119, 27, 73, 188, 135, 188, 122, 251, 174, 151, 27, 158, 150, 57, 207, 51, 190, 196, 213, 27, 185, 68, 71, + 148, 24, 179, 78, 145, 255, 216, 102, 159, 27, 106, 216, 76, 244, 191, 44, 209, 114, 128, 255, 65, 97, 73, 243, + 107, 122, 200, 114, 45, 96, 175, 115, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2320, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4033057430404437755" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06930064" + } + ] + }, + "cborHex": "d8669f1b37f84c5d6a0196fb9f1bffffffffffffffff4406930064ffff", + "cborBytes": [ + 216, 102, 159, 27, 55, 248, 76, 93, 106, 1, 150, 251, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 68, 6, 147, + 0, 100, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2321, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18406814454936109641" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8908297464912432049" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7431703892634697795" + } + } + ] + }, + "cborHex": "d9050b9f1bff72243928fe02491b7ba0a1589d9e4bb11b6722b750c4610043ff", + "cborBytes": [ + 217, 5, 11, 159, 27, 255, 114, 36, 57, 40, 254, 2, 73, 27, 123, 160, 161, 88, 157, 158, 75, 177, 27, 103, 34, 183, + 80, 196, 97, 0, 67, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2322, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f4abfad472f7ed9a84" + } + ] + }, + "cborHex": "d905019f49f4abfad472f7ed9a84ff", + "cborBytes": [217, 5, 1, 159, 73, 244, 171, 250, 212, 114, 247, 237, 154, 132, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2323, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8817848414520762381" + } + } + ] + }, + "cborHex": "d905089f1b7a5f4a69fec0600dff", + "cborBytes": [217, 5, 8, 159, 27, 122, 95, 74, 105, 254, 192, 96, 13, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2324, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1683551311851301402" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16778028954736237821" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14353939484634532742" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a4b76dc5d7b78a9a44d0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13674206682217563786" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1190032700481172110" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13726837473383049544" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "26" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10718537440453235432" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f484ea55" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "01cb25f7b2f5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6038979459065066748" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e498" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15397623684413628117" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b027d472c63fea7b09efab0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5335333765518558939" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4200113878823700427" + } + } + ] + }, + "cborHex": "d8669f1b175d2cff900a2a1a9fd8669f1be8d78870c6459cfd9f1bc7336fe92d184b86804aa4b76dc5d7b78a9a44d09f1bbdc48a8746d9c68aff9f1b1083d86f9f47728e1bbe7f85f442846948ffffff41269f1b94bfe50349f092e844f484ea55804601cb25f7b2f59f1b53cec3d2777434fc42e4981bd5af59292e9d9ed54c0b027d472c63fea7b09efab01b4a0ae9cabbe186dbffff1b3a49cd51d37987cbffff", + "cborBytes": [ + 216, 102, 159, 27, 23, 93, 44, 255, 144, 10, 42, 26, 159, 216, 102, 159, 27, 232, 215, 136, 112, 198, 69, 156, + 253, 159, 27, 199, 51, 111, 233, 45, 24, 75, 134, 128, 74, 164, 183, 109, 197, 215, 183, 138, 154, 68, 208, 159, + 27, 189, 196, 138, 135, 70, 217, 198, 138, 255, 159, 27, 16, 131, 216, 111, 159, 71, 114, 142, 27, 190, 127, 133, + 244, 66, 132, 105, 72, 255, 255, 255, 65, 38, 159, 27, 148, 191, 229, 3, 73, 240, 146, 232, 68, 244, 132, 234, 85, + 128, 70, 1, 203, 37, 247, 178, 245, 159, 27, 83, 206, 195, 210, 119, 116, 52, 252, 66, 228, 152, 27, 213, 175, 89, + 41, 46, 157, 158, 213, 76, 11, 2, 125, 71, 44, 99, 254, 167, 176, 158, 250, 176, 27, 74, 10, 233, 202, 187, 225, + 134, 219, 255, 255, 27, 58, 73, 205, 81, 211, 121, 135, 203, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2325, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3764860833629073607" + }, + "fields": [] + }, + "cborHex": "d8669f1b343f78fb293df0c780ff", + "cborBytes": [216, 102, 159, 27, 52, 63, 120, 251, 41, 61, 240, 199, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2326, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13877518356839559170" + }, + "fields": [] + }, + "cborHex": "d8669f1bc096d96b5762700280ff", + "cborBytes": [216, 102, 159, 27, 192, 150, 217, 107, 87, 98, 112, 2, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2327, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7753978082476103091" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b6b9ba9fbd22715b39fa0ffff", + "cborBytes": [216, 102, 159, 27, 107, 155, 169, 251, 210, 39, 21, 179, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2328, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7227d047c2c79cf4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc35a58c9284" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4adb5230b684bf8e41502d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff00cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5693392269219398687" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc130a50933baf" + }, + { + "_tag": "ByteArray", + "bytearray": "fcb1f3" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4885055890301686110" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1d31291290b3a083f7" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12472368584672041226" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae400589fc1058" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3f611a445431c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + ] + }, + "cborHex": "d87a9fbf1bffffffffffffffeb1bfffffffffffffff9487227d047c2c79cf446bc35a58c92844cf4adb5230b684bf8e41502d01bfffffffffffffff043ff00cd1b4f02fe1a9dc7041fffd905029f47fc130a50933baf43fcb1f3a09f1b43cb3473395c915e491d31291290b3a083f7ffff9f1bad16c125751e590affbf011bffffffffffffffff0947ae400589fc10581147e3f611a445431c124101ff1bfffffffffffffff6ff", + "cborBytes": [ + 216, 122, 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 235, 27, 255, 255, 255, 255, 255, 255, 255, 249, 72, + 114, 39, 208, 71, 194, 199, 156, 244, 70, 188, 53, 165, 140, 146, 132, 76, 244, 173, 181, 35, 11, 104, 75, 248, + 228, 21, 2, 208, 27, 255, 255, 255, 255, 255, 255, 255, 240, 67, 255, 0, 205, 27, 79, 2, 254, 26, 157, 199, 4, 31, + 255, 217, 5, 2, 159, 71, 252, 19, 10, 80, 147, 59, 175, 67, 252, 177, 243, 160, 159, 27, 67, 203, 52, 115, 57, 92, + 145, 94, 73, 29, 49, 41, 18, 144, 179, 160, 131, 247, 255, 255, 159, 27, 173, 22, 193, 37, 117, 30, 89, 10, 255, + 191, 1, 27, 255, 255, 255, 255, 255, 255, 255, 255, 9, 71, 174, 64, 5, 137, 252, 16, 88, 17, 71, 227, 246, 17, + 164, 69, 67, 28, 18, 65, 1, 255, 27, 255, 255, 255, 255, 255, 255, 255, 246, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2329, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2065480612626194446" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c42a9339d0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03c9a713bedcd7f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16780051554037232557" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5674897906269087828" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e74438e15aa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9667f717" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15049124669447171837" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9637529719863104150" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6c8dc2bd6c7081ed0aff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18051187334187215269" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "861417556370700704" + } + }, + { + "_tag": "ByteArray", + "bytearray": "797d2f59fb9bc1eb62eb88" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2a7bf1a8ae873f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6654100807971632374" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bf2cd" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6d15a7978e6b" + }, + { + "_tag": "ByteArray", + "bytearray": "8dfb76624d062ac89ab3c150" + }, + { + "_tag": "ByteArray", + "bytearray": "c73f8239" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16349644477533918809" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "41fc94312f1059e979a2" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3f2454e50ceeed38d3" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3036417362777222191" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b547ee742f839c" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59fd8669f1b1caa0fac7e0a600e9f45c42a9339d0bf4803c9a713bedcd7f91be8deb7fbdf2173ad4253b61b4ec149942fc6e854467e74438e15aa449667f717ffffffd8669f1bd0d93b2736f76efd9fd8669f1b85bf6237e8b5d2969f4a6c8dc2bd6c7081ed0aff1bfa82b33dbc4269a51b0bf45eb41ac2b9a04b797d2f59fb9bc1eb62eb88ffff472a7bf1a8ae873fbf1b5c581d6e0ec9f4f6433bf2cdffffff9f9f466d15a7978e6b4c8dfb76624d062ac89ab3c15044c73f82391be2e59b0737561659ff4a41fc94312f1059e979a29f493f2454e50ceeed38d3ffd8669f1b2a238580fa2a2c2f80ff47b547ee742f839cffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 216, 102, 159, 27, 28, 170, 15, 172, 126, 10, 96, + 14, 159, 69, 196, 42, 147, 57, 208, 191, 72, 3, 201, 167, 19, 190, 220, 215, 249, 27, 232, 222, 183, 251, 223, 33, + 115, 173, 66, 83, 182, 27, 78, 193, 73, 148, 47, 198, 232, 84, 70, 126, 116, 67, 142, 21, 170, 68, 150, 103, 247, + 23, 255, 255, 255, 216, 102, 159, 27, 208, 217, 59, 39, 54, 247, 110, 253, 159, 216, 102, 159, 27, 133, 191, 98, + 55, 232, 181, 210, 150, 159, 74, 108, 141, 194, 189, 108, 112, 129, 237, 10, 255, 27, 250, 130, 179, 61, 188, 66, + 105, 165, 27, 11, 244, 94, 180, 26, 194, 185, 160, 75, 121, 125, 47, 89, 251, 155, 193, 235, 98, 235, 136, 255, + 255, 71, 42, 123, 241, 168, 174, 135, 63, 191, 27, 92, 88, 29, 110, 14, 201, 244, 246, 67, 59, 242, 205, 255, 255, + 255, 159, 159, 70, 109, 21, 167, 151, 142, 107, 76, 141, 251, 118, 98, 77, 6, 42, 200, 154, 179, 193, 80, 68, 199, + 63, 130, 57, 27, 226, 229, 155, 7, 55, 86, 22, 89, 255, 74, 65, 252, 148, 49, 47, 16, 89, 233, 121, 162, 159, 73, + 63, 36, 84, 229, 12, 238, 237, 56, 211, 255, 216, 102, 159, 27, 42, 35, 133, 128, 250, 42, 44, 47, 128, 255, 71, + 181, 71, 238, 116, 47, 131, 156, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2330, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17046339579164363738" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8233115946351348" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5304653966254885087" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "797699399919560025" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d995ae1525f3fbf41f5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1342102813224613554" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2123075851113365807" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3410472597162705328" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15704827480725549870" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14415466960005356135" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6645070323241761407" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4811338726355307067" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15466211892827570591" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "568230534b61b83e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f069c83c0fb59a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95560b83599950ebe6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10162917313741774049" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9c3d6a0bfdd47ad06e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10012143501835148752" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cf4a63f7b8a865bf" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0b59ff35ce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16785502233918534019" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16056542485487773822" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f6d5ff237e6aae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16198908032550330386" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13304707227889543388" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17377752608925294591" + } + } + ] + }, + "cborHex": "d8669f1bec90c38828c60bda9f80bf1b001d3ff9af607af41b499deaad52fd48df1b0b11ff60b9bf65594a4d995ae1525f3fbf41f51b12a01b65da4e36b21b1d76ae3cf0d2812f1b2f546ec1f61641b01bd9f2c162cf70732e1bc80e06d2de7fda671b5c3808407c50ba7fffd8669f1b42c54f147e7d0a3b9fbf412c1bd6a305c5e4e8c19f48568230534b61b83e47f069c83c0fb59a4995560b83599950ebe61b8d09ef738f3edce14ae9c3d6a0bfdd47ad06e51b8af24777e31e9dd0ff48cf4a63f7b8a865bfa0450b59ff35ce1be8f215592d3d7183ffffd8669f1bded44c51c077687e9f9f47f6d5ff237e6aae1be0ce1507b56260121bb8a3d0bb7eeda8dcff80ffff1bf12a2ded319c1fffffff", + "cborBytes": [ + 216, 102, 159, 27, 236, 144, 195, 136, 40, 198, 11, 218, 159, 128, 191, 27, 0, 29, 63, 249, 175, 96, 122, 244, 27, + 73, 157, 234, 173, 82, 253, 72, 223, 27, 11, 17, 255, 96, 185, 191, 101, 89, 74, 77, 153, 90, 225, 82, 95, 63, + 191, 65, 245, 27, 18, 160, 27, 101, 218, 78, 54, 178, 27, 29, 118, 174, 60, 240, 210, 129, 47, 27, 47, 84, 110, + 193, 246, 22, 65, 176, 27, 217, 242, 193, 98, 207, 112, 115, 46, 27, 200, 14, 6, 210, 222, 127, 218, 103, 27, 92, + 56, 8, 64, 124, 80, 186, 127, 255, 216, 102, 159, 27, 66, 197, 79, 20, 126, 125, 10, 59, 159, 191, 65, 44, 27, + 214, 163, 5, 197, 228, 232, 193, 159, 72, 86, 130, 48, 83, 75, 97, 184, 62, 71, 240, 105, 200, 60, 15, 181, 154, + 73, 149, 86, 11, 131, 89, 153, 80, 235, 230, 27, 141, 9, 239, 115, 143, 62, 220, 225, 74, 233, 195, 214, 160, 191, + 221, 71, 173, 6, 229, 27, 138, 242, 71, 119, 227, 30, 157, 208, 255, 72, 207, 74, 99, 247, 184, 168, 101, 191, + 160, 69, 11, 89, 255, 53, 206, 27, 232, 242, 21, 89, 45, 61, 113, 131, 255, 255, 216, 102, 159, 27, 222, 212, 76, + 81, 192, 119, 104, 126, 159, 159, 71, 246, 213, 255, 35, 126, 106, 174, 27, 224, 206, 21, 7, 181, 98, 96, 18, 27, + 184, 163, 208, 187, 126, 237, 168, 220, 255, 128, 255, 255, 27, 241, 42, 45, 237, 49, 156, 31, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2331, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2585627076639056401" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2872885387515428335" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "75997c1570c877" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4282430237675975488" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a839f62b56d86602d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb5fe726" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b025" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13451423210394930561" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd7cab452d0e4956ecc384" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16072049457838827229" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "148aa194ebf244" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1643921363966560718" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fd6580992fb9e2520aef8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14739214843833239313" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a180238db3a7349561f284" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afaee39a5f251a" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b23e1fe2080b3e2119f809f1b27de8a09eb447defbf4775997c1570c8771b3b6e3f9ca4117340499a839f62b56d86602d44cb5fe72642b0251bbaad0e242308cd814bdd7cab452d0e4956ecc3841bdf0b63d41afe26ddffbf47148aa194ebf2441b16d061c549e709ce4b7fd6580992fb9e2520aef81bcc8c35cf0ad847114ba180238db3a7349561f28447afaee39a5f251affffffff", + "cborBytes": [ + 216, 102, 159, 27, 35, 225, 254, 32, 128, 179, 226, 17, 159, 128, 159, 27, 39, 222, 138, 9, 235, 68, 125, 239, + 191, 71, 117, 153, 124, 21, 112, 200, 119, 27, 59, 110, 63, 156, 164, 17, 115, 64, 73, 154, 131, 159, 98, 181, + 109, 134, 96, 45, 68, 203, 95, 231, 38, 66, 176, 37, 27, 186, 173, 14, 36, 35, 8, 205, 129, 75, 221, 124, 171, 69, + 45, 14, 73, 86, 236, 195, 132, 27, 223, 11, 99, 212, 26, 254, 38, 221, 255, 191, 71, 20, 138, 161, 148, 235, 242, + 68, 27, 22, 208, 97, 197, 73, 231, 9, 206, 75, 127, 214, 88, 9, 146, 251, 158, 37, 32, 174, 248, 27, 204, 140, 53, + 207, 10, 216, 71, 17, 75, 161, 128, 35, 141, 179, 167, 52, 149, 97, 242, 132, 71, 175, 174, 227, 154, 95, 37, 26, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2332, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3869367117286636372" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14371048527789802745" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0183" + }, + { + "_tag": "ByteArray", + "bytearray": "75413cb51f2c3e5532c116" + }, + { + "_tag": "ByteArray", + "bytearray": "0eb043be4ba0709f97" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4580570716453432872" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4773745883616693805" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f57304efcb4024fae4ad4054" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "707788371222858115" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5697558100683318568" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b35b2c0e473727b549fd8669f1bc770387eb4cfc4f99f4201834b75413cb51f2c3e5532c116490eb043be4ba0709f97ffffd8669f1b3f9174cc36c36e289fd8669f1b423fc096b8f4ce2d9f4cf57304efcb4024fae4ad4054ffff1b09d291c60ae40983ffff1b4f11cae7d660e52880ffff", + "cborBytes": [ + 216, 102, 159, 27, 53, 178, 192, 228, 115, 114, 123, 84, 159, 216, 102, 159, 27, 199, 112, 56, 126, 180, 207, 196, + 249, 159, 66, 1, 131, 75, 117, 65, 60, 181, 31, 44, 62, 85, 50, 193, 22, 73, 14, 176, 67, 190, 75, 160, 112, 159, + 151, 255, 255, 216, 102, 159, 27, 63, 145, 116, 204, 54, 195, 110, 40, 159, 216, 102, 159, 27, 66, 63, 192, 150, + 184, 244, 206, 45, 159, 76, 245, 115, 4, 239, 203, 64, 36, 250, 228, 173, 64, 84, 255, 255, 27, 9, 210, 145, 198, + 10, 228, 9, 131, 255, 255, 27, 79, 17, 202, 231, 214, 96, 229, 40, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2333, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2197951196172111255" + } + } + ] + }, + "cborHex": "d87c9f1b1e80b0f7b97bcd97ff", + "cborBytes": [216, 124, 159, 27, 30, 128, 176, 247, 185, 123, 205, 151, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2334, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17271566207295353177" + }, + "fields": [] + }, + "cborHex": "d8669f1befb0edf4f47af15980ff", + "cborBytes": [216, 102, 159, 27, 239, 176, 237, 244, 244, 122, 241, 89, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2335, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11196080075421551306" + }, + "fields": [] + }, + "cborHex": "d8669f1b9b6077825c548aca80ff", + "cborBytes": [216, 102, 159, 27, 155, 96, 119, 130, 92, 84, 138, 202, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2336, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10971695584877151757" + }, + "fields": [] + }, + "cborHex": "d8669f1b98434b010053060d80ff", + "cborBytes": [216, 102, 159, 27, 152, 67, 75, 1, 0, 83, 6, 13, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2337, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11258298719827791913" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11913449252904846833" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1859268536920518173" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d5de566277b198dc2c3358" + }, + { + "_tag": "ByteArray", + "bytearray": "1a34" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1548840185439229590" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13911594390708956410" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3106049389514362305" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "031676" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "120a" + }, + { + "_tag": "ByteArray", + "bytearray": "00b3fac2748afe94bb05" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6297028424317611427" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31aa156d6e84" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b9c3d8309629210299fd905029fd8669f1ba55512f9b10945f19f1b19cd72e22d352e1d4bd5de566277b198dc2c3358421a34ffffd8669f1b157e95f14af4969680ff1bc10fe9643d862cfa1b2b1ae77694d28dc1a0ff430316769f42120a4a00b3fac2748afe94bb05d8669f1bfffffffffffffffb9f1b576389fd23fd2da34631aa156d6e84ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 156, 61, 131, 9, 98, 146, 16, 41, 159, 217, 5, 2, 159, 216, 102, 159, 27, 165, 85, 18, 249, + 177, 9, 69, 241, 159, 27, 25, 205, 114, 226, 45, 53, 46, 29, 75, 213, 222, 86, 98, 119, 177, 152, 220, 44, 51, 88, + 66, 26, 52, 255, 255, 216, 102, 159, 27, 21, 126, 149, 241, 74, 244, 150, 150, 128, 255, 27, 193, 15, 233, 100, + 61, 134, 44, 250, 27, 43, 26, 231, 118, 148, 210, 141, 193, 160, 255, 67, 3, 22, 118, 159, 66, 18, 10, 74, 0, 179, + 250, 194, 116, 138, 254, 148, 187, 5, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 27, 87, 99, + 137, 253, 35, 253, 45, 163, 70, 49, 170, 21, 109, 110, 132, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2338, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "43ee970414" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15809671479479975148" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "981694" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b4fe1774027" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8697746023785860864" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3907558790425478888" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "614731a8b70ff5" + }, + { + "_tag": "ByteArray", + "bytearray": "614c64a6062a5790e644a0" + }, + { + "_tag": "ByteArray", + "bytearray": "530f6ef48df6" + }, + { + "_tag": "ByteArray", + "bytearray": "a0b8d7844ccfc022269e" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d147" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "969b31a8581e4bdd5f3e08c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8069" + } + } + ] + } + ] + }, + "cborHex": "d905049f14bf4543ee9704141bdb673c7286073cec43981694467b4fe1774027ffa09fd8669f1b78b499ed0e528f009f1bffffffffffffffef061bfffffffffffffff9ffff1bfffffffffffffffed8669f1b363a70044a4406e89f47614731a8b70ff54b614c64a6062a5790e644a046530f6ef48df64aa0b8d7844ccfc022269effffffbf42d1474c969b31a8581e4bdd5f3e08c041f0428069ffff", + "cborBytes": [ + 217, 5, 4, 159, 20, 191, 69, 67, 238, 151, 4, 20, 27, 219, 103, 60, 114, 134, 7, 60, 236, 67, 152, 22, 148, 70, + 123, 79, 225, 119, 64, 39, 255, 160, 159, 216, 102, 159, 27, 120, 180, 153, 237, 14, 82, 143, 0, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 239, 6, 27, 255, 255, 255, 255, 255, 255, 255, 249, 255, 255, 27, 255, 255, 255, + 255, 255, 255, 255, 254, 216, 102, 159, 27, 54, 58, 112, 4, 74, 68, 6, 232, 159, 71, 97, 71, 49, 168, 183, 15, + 245, 75, 97, 76, 100, 166, 6, 42, 87, 144, 230, 68, 160, 70, 83, 15, 110, 244, 141, 246, 74, 160, 184, 215, 132, + 76, 207, 192, 34, 38, 158, 255, 255, 255, 191, 66, 209, 71, 76, 150, 155, 49, 168, 88, 30, 75, 221, 95, 62, 8, + 192, 65, 240, 66, 128, 105, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2339, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14463827227726425585" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb790956064a09bc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13278825418569463028" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cf1ff49b95f8ee1f8953" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6582567322387602624" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11936889223501404639" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "25" + }, + { + "_tag": "ByteArray", + "bytearray": "740e4fd107635777" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16864623962186834215" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9120260252089458240" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2347542122469842646" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "874524877767029356" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2552841833562116685" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "645476b8d890151a" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bc8b9d63b2141adf19f48fb790956064a09bcd8669f1bb847dd5d2c42b4f49f4acf1ff49b95f8ee1f89531b5b59fa1a9101dcc0d8669f1ba5a8598121fd59df9f412548740e4fd1076357771bea0b2e2418afe1271b7e91ac60c8e81e401b2094251f6114ded6ffffd8669f1b0c22efbe2e8bb26c80ffd8669f1b236d841f413a124d9f48645476b8d890151affffffffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 200, 185, 214, 59, 33, 65, 173, 241, 159, 72, 251, 121, 9, 86, 6, 74, 9, 188, 216, 102, 159, + 27, 184, 71, 221, 93, 44, 66, 180, 244, 159, 74, 207, 31, 244, 155, 149, 248, 238, 31, 137, 83, 27, 91, 89, 250, + 26, 145, 1, 220, 192, 216, 102, 159, 27, 165, 168, 89, 129, 33, 253, 89, 223, 159, 65, 37, 72, 116, 14, 79, 209, + 7, 99, 87, 119, 27, 234, 11, 46, 36, 24, 175, 225, 39, 27, 126, 145, 172, 96, 200, 232, 30, 64, 27, 32, 148, 37, + 31, 97, 20, 222, 214, 255, 255, 216, 102, 159, 27, 12, 34, 239, 190, 46, 139, 178, 108, 128, 255, 216, 102, 159, + 27, 35, 109, 132, 31, 65, 58, 18, 77, 159, 72, 100, 84, 118, 184, 216, 144, 21, 26, 255, 255, 255, 255, 160, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2340, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17045122737829564006" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dcd92c8a74ef" + } + ] + } + ] + }, + "cborHex": "d8669f1bec8c70d23543ce669f9f46dcd92c8a74efffffff", + "cborBytes": [ + 216, 102, 159, 27, 236, 140, 112, 210, 53, 67, 206, 102, 159, 159, 70, 220, 217, 44, 138, 116, 239, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2341, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5689998156655703913" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c314a19d45dcaac1bbb2" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b4ef6ef2d341737699f4ac314a19d45dcaac1bbb280ffff", + "cborBytes": [ + 216, 102, 159, 27, 78, 246, 239, 45, 52, 23, 55, 105, 159, 74, 195, 20, 161, 157, 69, 220, 170, 193, 187, 178, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2342, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6799459571151089309" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe59c0bb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11765331346365366380" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1932076711331395689" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14451664137546011385" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14810147303165142435" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15386466200663952903" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30cb68e93005c3ee86dc" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5565478457828990578" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3328030153360413059" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10668759006110149677" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7803887135284269900" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12938945649337879958" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc9e10f6e399953640114a0c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05040300cffdff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7778305276424830385" + } + } + } + ] + } + ] + }, + "cborHex": "d905099fbf1b5e5c887473172e9d44fe59c0bb1ba346da862ce0406c1b1ad01d8849b678691bc88e9ff703ae92f91bcd883681345e25a31bd587b57d0f210e074a30cb68e93005c3ee86dcff1b4d3c8d2b93fc5e72bf1b2e2f89cab4d611831b940f0bca6171ec2d1b6c4cfa00b5dc134c131bb3905e83bcdecd964cdc9e10f6e399953640114a0c1bfffffffffffffff24705040300cffdff1bfffffffffffffffd1b6bf217700bd93db1ffff", + "cborBytes": [ + 217, 5, 9, 159, 191, 27, 94, 92, 136, 116, 115, 23, 46, 157, 68, 254, 89, 192, 187, 27, 163, 70, 218, 134, 44, + 224, 64, 108, 27, 26, 208, 29, 136, 73, 182, 120, 105, 27, 200, 142, 159, 247, 3, 174, 146, 249, 27, 205, 136, 54, + 129, 52, 94, 37, 163, 27, 213, 135, 181, 125, 15, 33, 14, 7, 74, 48, 203, 104, 233, 48, 5, 195, 238, 134, 220, + 255, 27, 77, 60, 141, 43, 147, 252, 94, 114, 191, 27, 46, 47, 137, 202, 180, 214, 17, 131, 27, 148, 15, 11, 202, + 97, 113, 236, 45, 27, 108, 76, 250, 0, 181, 220, 19, 76, 19, 27, 179, 144, 94, 131, 188, 222, 205, 150, 76, 220, + 158, 16, 246, 227, 153, 149, 54, 64, 17, 74, 12, 27, 255, 255, 255, 255, 255, 255, 255, 242, 71, 5, 4, 3, 0, 207, + 253, 255, 27, 255, 255, 255, 255, 255, 255, 255, 253, 27, 107, 242, 23, 112, 11, 217, 61, 177, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2343, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11578305858933735411" + }, + "fields": [] + }, + "cborHex": "d8669f1ba0ae67d58e91bff380ff", + "cborBytes": [216, 102, 159, 27, 160, 174, 103, 213, 142, 145, 191, 243, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2344, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15157898197120810518" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "820314b61492" + }, + { + "_tag": "ByteArray", + "bytearray": "1172f6d43f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "401326459336724394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3991277297012712763" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14863650813963336418" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc5c2e409ab13775129184c4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15372285253434538927" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1eea9cb5943bd66903" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16277998951170652154" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc6916f619b657" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17327554788961139132" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15984896834730816771" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18035403797425582318" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17767823772481713342" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "48140096afceffbaa4cea639" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + }, + "cborHex": "d8669f1bd25bac19aceb7e169f9f46820314b61492451172f6d43fbf1b0591cc49d7bb0faa1b3763dd8e1086253b1bce464baa0fbafae24ccc5c2e409ab13775129184c41bd55553fdfcf0fbaf491eea9cb5943bd669031be1e711cd32b537fa47cc6916f619b6571bf077d7467625b9bc1bddd5c2fac56575031bfa4aa032b64870ee1bf693fd95468374beff4c48140096afceffbaa4cea639ff11ffff", + "cborBytes": [ + 216, 102, 159, 27, 210, 91, 172, 25, 172, 235, 126, 22, 159, 159, 70, 130, 3, 20, 182, 20, 146, 69, 17, 114, 246, + 212, 63, 191, 27, 5, 145, 204, 73, 215, 187, 15, 170, 27, 55, 99, 221, 142, 16, 134, 37, 59, 27, 206, 70, 75, 170, + 15, 186, 250, 226, 76, 204, 92, 46, 64, 154, 177, 55, 117, 18, 145, 132, 196, 27, 213, 85, 83, 253, 252, 240, 251, + 175, 73, 30, 234, 156, 181, 148, 59, 214, 105, 3, 27, 225, 231, 17, 205, 50, 181, 55, 250, 71, 204, 105, 22, 246, + 25, 182, 87, 27, 240, 119, 215, 70, 118, 37, 185, 188, 27, 221, 213, 194, 250, 197, 101, 117, 3, 27, 250, 74, 160, + 50, 182, 72, 112, 238, 27, 246, 147, 253, 149, 70, 131, 116, 190, 255, 76, 72, 20, 0, 150, 175, 206, 255, 186, + 164, 206, 166, 57, 255, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2345, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16127765076653165322" + }, + "fields": [] + }, + "cborHex": "d8669f1bdfd154e37edccb0a80ff", + "cborBytes": [216, 102, 159, 27, 223, 209, 84, 227, 126, 220, 203, 10, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2346, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e53a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1a0d5de5ddf3e85" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ce6ce2d20895493b7483c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed847d342b7f3825" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3ab57d23725c22c43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71dc1e3412da729e" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d2c9cd7d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14382683673261311640" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "608762cf1a2198a3fdbbaf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12074790403597241676" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9438869601426669422" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0df7d874e0430a2fe12ffce6" + }, + { + "_tag": "ByteArray", + "bytearray": "0c" + } + ] + } + ] + } + ] + }, + "cborHex": "d87d9fbf435e53a848a1a0d5de5ddf3e854b6ce6ce2d20895493b7483c48ed847d342b7f382549d3ab57d23725c22c434871dc1e3412da729effd905029f44d2c9cd7dd8669f1bc7998e991d8d06989f4b608762cf1a2198a3fdbbaf1ba79245e5a7b58d4cffff9f1b82fd99e4aa44ff6e4c0df7d874e0430a2fe12ffce6410cffffff", + "cborBytes": [ + 216, 125, 159, 191, 67, 94, 83, 168, 72, 161, 160, 213, 222, 93, 223, 62, 133, 75, 108, 230, 206, 45, 32, 137, 84, + 147, 183, 72, 60, 72, 237, 132, 125, 52, 43, 127, 56, 37, 73, 211, 171, 87, 210, 55, 37, 194, 44, 67, 72, 113, + 220, 30, 52, 18, 218, 114, 158, 255, 217, 5, 2, 159, 68, 210, 201, 205, 125, 216, 102, 159, 27, 199, 153, 142, + 153, 29, 141, 6, 152, 159, 75, 96, 135, 98, 207, 26, 33, 152, 163, 253, 187, 175, 27, 167, 146, 69, 229, 167, 181, + 141, 76, 255, 255, 159, 27, 130, 253, 153, 228, 170, 68, 255, 110, 76, 13, 247, 216, 116, 224, 67, 10, 47, 225, + 47, 252, 230, 65, 12, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2347, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14385966071589201761" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1f520a5d6a68" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3135915922239313238" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bc7a537ec07e567619f461f520a5d6a681b2b8502ea9e90d55680ffff", + "cborBytes": [ + 216, 102, 159, 27, 199, 165, 55, 236, 7, 229, 103, 97, 159, 70, 31, 82, 10, 93, 106, 104, 27, 43, 133, 2, 234, + 158, 144, 213, 86, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2348, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3081037817831429484" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ec9b93ea5799d5c101023bbf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b2ac20b923f63156c9f4cec9b93ea5799d5c101023bbf1bfffffffffffffffe9f80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 42, 194, 11, 146, 63, 99, 21, 108, 159, 76, 236, 155, 147, 234, 87, 153, 213, 193, 1, 2, 59, + 191, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2349, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e23856aee537ca94ac81bcf5" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87f9f4ce23856aee537ca94ac81bcf5a0ff", + "cborBytes": [216, 127, 159, 76, 226, 56, 86, 174, 229, 55, 202, 148, 172, 129, 188, 245, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2350, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9290889781653871904" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + }, + "cborHex": "d8669f1b80efdf07fac91d209f07ffff", + "cborBytes": [216, 102, 159, 27, 128, 239, 223, 7, 250, 201, 29, 32, 159, 7, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2351, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "dc" + } + ] + }, + "cborHex": "d87b9f8041dcff", + "cborBytes": [216, 123, 159, 128, 65, 220, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2352, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f1bfffffffffffffff8ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2353, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5427980099251557274" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + ] + }, + "cborHex": "d8669f1b4b540f243fc7539a9f1bfffffffffffffffdffff", + "cborBytes": [ + 216, 102, 159, 27, 75, 84, 15, 36, 63, 199, 83, 154, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2354, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11163017333811003128" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c46bfd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13553273947537063876" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12005636172637438801" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11049321265977391399" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02365d70ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17399539110327788403" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b9aeb011ef3553ef89f43c46bfd0d1bbc16e6d8d280bfc49f1ba69c967d8ca283511b995713264bc079274502365d70ca1bf17794a2569aa373ffffff", + "cborBytes": [ + 216, 102, 159, 27, 154, 235, 1, 30, 243, 85, 62, 248, 159, 67, 196, 107, 253, 13, 27, 188, 22, 230, 216, 210, 128, + 191, 196, 159, 27, 166, 156, 150, 125, 140, 162, 131, 81, 27, 153, 87, 19, 38, 75, 192, 121, 39, 69, 2, 54, 93, + 112, 202, 27, 241, 119, 148, 162, 86, 154, 163, 115, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2355, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15681914938928645806" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11053455956430274358" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11011753188601164420" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9027614026928490082" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e10ef28d761dd78e0af1a6" + } + ] + }, + "cborHex": "d8669f1bd9a15a8cf4bbc6ae9f1b9965c3a0ef73bf36d8799f9f1b98d19b2ea8d8f2841b7d4887208c680662ff80ff80804be10ef28d761dd78e0af1a6ffff", + "cborBytes": [ + 216, 102, 159, 27, 217, 161, 90, 140, 244, 187, 198, 174, 159, 27, 153, 101, 195, 160, 239, 115, 191, 54, 216, + 121, 159, 159, 27, 152, 209, 155, 46, 168, 216, 242, 132, 27, 125, 72, 135, 32, 140, 104, 6, 98, 255, 128, 255, + 128, 128, 75, 225, 14, 242, 141, 118, 29, 215, 142, 10, 241, 166, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2356, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8312433d9615d8ef" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4416459647236438855" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e3b61024" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3985651740255264927" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10330653771769161288" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12267464144465895700" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15877861605277143886" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "af4074" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6656249218759632022" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfd6d08c81a0438b3c4153" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8993c91d76b5bf5f0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d20aaf7cd28d86d764" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "958f56b3506a517920" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9f488312433d9615d8ef1b3d4a6aa6565ffb4744e3b61024d8669f1b374fe1241055209f9f9f1b8f5ddadf0bd9a648ffd8669f1baa3ec9a4c1bb21149f1bdc597f01675b934effffffffbf43af40741b5c5fbf65eca3a4964bbfd6d08c81a0438b3c415349e8993c91d76b5bf5f049d20aaf7cd28d86d76449958f56b3506a517920ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 72, 131, 18, 67, 61, 150, 21, 216, 239, 27, 61, + 74, 106, 166, 86, 95, 251, 71, 68, 227, 182, 16, 36, 216, 102, 159, 27, 55, 79, 225, 36, 16, 85, 32, 159, 159, + 159, 27, 143, 93, 218, 223, 11, 217, 166, 72, 255, 216, 102, 159, 27, 170, 62, 201, 164, 193, 187, 33, 20, 159, + 27, 220, 89, 127, 1, 103, 91, 147, 78, 255, 255, 255, 255, 191, 67, 175, 64, 116, 27, 92, 95, 191, 101, 236, 163, + 164, 150, 75, 191, 214, 208, 140, 129, 160, 67, 139, 60, 65, 83, 73, 232, 153, 60, 145, 215, 107, 91, 245, 240, + 73, 210, 10, 175, 124, 210, 141, 134, 215, 100, 73, 149, 143, 86, 179, 80, 106, 81, 121, 32, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2357, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17173930524526594798" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "427b1ddf09643a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2934802675974338707" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10462840610911778804" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6411109575352901999" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b4cd1dda1d0c8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6681058249025196898" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f70c784c971f52223e16a50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16695311875400416417" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7886962449066975355" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18316221644258037294" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4888484112294670417" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18357081074001724985" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1734068318196686027" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fa5b6ec6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11167431635228602050" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10841347097319258218" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5460691860747645962" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "34e9b27d19aff695619c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4015100761251843617" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13070438465509083772" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8358694925943809231" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11144884781358830801" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bee560ed217a54aee9f47427b1ddf09643a9fbf1b28ba837c0b50f8931b91337a19e2ed77f41b58f8d630f703e16f477b4cd1dda1d0c81b5cb7e31468d713624c6f70c784c971f52223e16a501be7b1a9b1f39a3ca11b6d741e8f7d7b607b1bfe304a8abd524e2e1b43d762665b76f0511bfec173fa10eb46391b1810a5f2aa5f5ccbff44fa5b6ec6d8669f1b9afaafe79742aec280ff1b967433bebe6d386ad8669f1b4bc84650bbbaf40a9f4a34e9b27d19aff695619c1b37b880de93d10e211bb5638688c3454a7c1b74000cbfb6bda4cf1b9aaa95a9178cd4d1ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 238, 86, 14, 210, 23, 165, 74, 238, 159, 71, 66, 123, 29, 223, 9, 100, 58, 159, 191, 27, 40, + 186, 131, 124, 11, 80, 248, 147, 27, 145, 51, 122, 25, 226, 237, 119, 244, 27, 88, 248, 214, 48, 247, 3, 225, 111, + 71, 123, 76, 209, 221, 161, 208, 200, 27, 92, 183, 227, 20, 104, 215, 19, 98, 76, 111, 112, 199, 132, 201, 113, + 245, 34, 35, 225, 106, 80, 27, 231, 177, 169, 177, 243, 154, 60, 161, 27, 109, 116, 30, 143, 125, 123, 96, 123, + 27, 254, 48, 74, 138, 189, 82, 78, 46, 27, 67, 215, 98, 102, 91, 118, 240, 81, 27, 254, 193, 115, 250, 16, 235, + 70, 57, 27, 24, 16, 165, 242, 170, 95, 92, 203, 255, 68, 250, 91, 110, 198, 216, 102, 159, 27, 154, 250, 175, 231, + 151, 66, 174, 194, 128, 255, 27, 150, 116, 51, 190, 190, 109, 56, 106, 216, 102, 159, 27, 75, 200, 70, 80, 187, + 186, 244, 10, 159, 74, 52, 233, 178, 125, 25, 175, 246, 149, 97, 156, 27, 55, 184, 128, 222, 147, 209, 14, 33, 27, + 181, 99, 134, 136, 195, 69, 74, 124, 27, 116, 0, 12, 191, 182, 189, 164, 207, 27, 154, 170, 149, 169, 23, 140, + 212, 209, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2358, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "47a182" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bfae438853344173f69" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4286420156453544924" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16668883611486694833" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a045791c08f99182330a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a30164b63e880a98" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4b6054b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7722484988258040503" + } + } + } + ] + } + ] + }, + "cborHex": "d87b9fbf4347a18241074a4bfae438853344173f691b3b7c6c6bff7ce3dc41941be753c55440feadb14aa045791c08f99182330a48a30164b63e880a9844f4b6054b1b6b2bc72e6c683ab7ffff", + "cborBytes": [ + 216, 123, 159, 191, 67, 71, 161, 130, 65, 7, 74, 75, 250, 228, 56, 133, 51, 68, 23, 63, 105, 27, 59, 124, 108, + 107, 255, 124, 227, 220, 65, 148, 27, 231, 83, 197, 84, 64, 254, 173, 177, 74, 160, 69, 121, 28, 8, 249, 145, 130, + 51, 10, 72, 163, 1, 100, 182, 62, 136, 10, 152, 68, 244, 182, 5, 75, 27, 107, 43, 199, 46, 108, 104, 58, 183, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2359, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ee010f7960988318a5e1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4014562625276000378" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0019" + }, + { + "_tag": "ByteArray", + "bytearray": "ff06" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17577676330462312851" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d3cee3be01fe14b950" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14011272962763536200" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb032ee3056e04b7fc07fe02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "072a395e02760400b049db" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10248087196649835485" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "ByteArray", + "bytearray": "db" + }, + { + "_tag": "ByteArray", + "bytearray": "e252a018258a" + } + ] + } + ] + } + ] + }, + "cborHex": "d9050d9f149f4aee010f7960988318a5e19f1b37b697700822b87a42001942ff061bf3f0737df5ff799349d3cee3be01fe14b950ffd8669f1bc2720a86548e374880ffbf4cfb032ee3056e04b7fc07fe024b072a395e02760400b049dbffd8669f1b8e388502378acbdd9f060141db46e252a018258affffffff", + "cborBytes": [ + 217, 5, 13, 159, 20, 159, 74, 238, 1, 15, 121, 96, 152, 131, 24, 165, 225, 159, 27, 55, 182, 151, 112, 8, 34, 184, + 122, 66, 0, 25, 66, 255, 6, 27, 243, 240, 115, 125, 245, 255, 121, 147, 73, 211, 206, 227, 190, 1, 254, 20, 185, + 80, 255, 216, 102, 159, 27, 194, 114, 10, 134, 84, 142, 55, 72, 128, 255, 191, 76, 251, 3, 46, 227, 5, 110, 4, + 183, 252, 7, 254, 2, 75, 7, 42, 57, 94, 2, 118, 4, 0, 176, 73, 219, 255, 216, 102, 159, 27, 142, 56, 133, 2, 55, + 138, 203, 221, 159, 6, 1, 65, 219, 70, 226, 82, 160, 24, 37, 138, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2360, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6831121866583629835" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0357c3ebe3bb443e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "62660895622163542" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "95" + } + ] + }, + "cborHex": "d8669f1b5ecd0525131ee00b9f9fbf480357c3ebe3bb443e1b00de9dc0a8ddec56ffff4195ffff", + "cborBytes": [ + 216, 102, 159, 27, 94, 205, 5, 37, 19, 30, 224, 11, 159, 159, 191, 72, 3, 87, 195, 235, 227, 187, 68, 62, 27, 0, + 222, 157, 192, 168, 221, 236, 86, 255, 255, 65, 149, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2361, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17260472557613349271" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "48f93cadfce274020188fa04" + } + ] + }, + "cborHex": "d8669f1bef8984575bebf9979f804c48f93cadfce274020188fa04ffff", + "cborBytes": [ + 216, 102, 159, 27, 239, 137, 132, 87, 91, 235, 249, 151, 159, 128, 76, 72, 249, 60, 173, 252, 226, 116, 2, 1, 136, + 250, 4, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2362, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18e06c385a5541f0cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12512494533692561223" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8acaeea2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8374662752783710864" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5739275032489655810" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49fbf1bfffffffffffffff1034918e06c385a5541f0cb1bada54f7bfec31747448acaeea21b7438c7671d5e3a90ff1b4fa6003bebd07e02ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 241, + 3, 73, 24, 224, 108, 56, 90, 85, 65, 240, 203, 27, 173, 165, 79, 123, 254, 195, 23, 71, 68, 138, 202, 238, 162, + 27, 116, 56, 199, 103, 29, 94, 58, 144, 255, 27, 79, 166, 0, 59, 235, 208, 126, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2363, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12168605533413809058" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2804617847100072533" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b66c88ca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15119666966867138673" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16948847634504973409" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9cd5b6b8efd95b65c87" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f32e05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff5f082d394a9bf9" + } + } + ] + } + ] + }, + "cborHex": "d8669f1ba8df9242b6fb9ba29fbf1b26ec01128b1ee25544b66c88ca1bd1d3d8ffba52d87141db1beb36671feee37c614aa9cd5b6b8efd95b65c8743f32e0548ff5f082d394a9bf9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 168, 223, 146, 66, 182, 251, 155, 162, 159, 191, 27, 38, 236, 1, 18, 139, 30, 226, 85, 68, 182, + 108, 136, 202, 27, 209, 211, 216, 255, 186, 82, 216, 113, 65, 219, 27, 235, 54, 103, 31, 238, 227, 124, 97, 74, + 169, 205, 91, 107, 142, 253, 149, 182, 92, 135, 67, 243, 46, 5, 72, 255, 95, 8, 45, 57, 74, 155, 249, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2364, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8700178026362077734" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7210133992668595432" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1437284920426663953" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8475714f4d2431" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26602fab1a1cea9f94fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c62aee77d86f9524" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35e344de9e6a056c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fae57c5810" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17072730040323868824" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2775405eaffdebc6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17008978235130906747" + } + } + ] + }, + "cborHex": "d87e9fbf419b1b78bd3dd1c7f88226ffbf1b640f8aaa57fb04e81b13f24305230e9011478475714f4d24314a26602fab1a1cea9f94fc48c62aee77d86f95244835e344de9e6a056c45fae57c58101becee858437a50898ff482775405eaffdebc61bec0c07966154087bff", + "cborBytes": [ + 216, 126, 159, 191, 65, 155, 27, 120, 189, 61, 209, 199, 248, 130, 38, 255, 191, 27, 100, 15, 138, 170, 87, 251, + 4, 232, 27, 19, 242, 67, 5, 35, 14, 144, 17, 71, 132, 117, 113, 79, 77, 36, 49, 74, 38, 96, 47, 171, 26, 28, 234, + 159, 148, 252, 72, 198, 42, 238, 119, 216, 111, 149, 36, 72, 53, 227, 68, 222, 158, 106, 5, 108, 69, 250, 229, + 124, 88, 16, 27, 236, 238, 133, 132, 55, 165, 8, 152, 255, 72, 39, 117, 64, 94, 175, 253, 235, 198, 27, 236, 12, + 7, 150, 97, 84, 8, 123, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2365, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9088265202853290941" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c16" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11618810029156236267" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c462" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4356083233417139000" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15966536169914739205" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1ebce265828aad2c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4921759401391720245" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6720418647272666461" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2441630322110869262" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11340439791374208909" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6c778c6fa3421df6f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16517088595732005815" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7199181646694183639" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "669e8e7ab9d80dc1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "495054782123628091" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11617751641165994403" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1155140986531847232" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e02bcb3d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3005879887176525915" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffc89feb8ab85e12d0f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8664117509338103559" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10253349377334290839" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15934009748982268742" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f6bcec6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16944008226078508841" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1773692858793445304" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9fbf1b7e20010ce09d23bd429c161ba13e4e29949a7beb42c462ffd8669f1b3c73ea9f0bdd13389f4107d8669f1bdd94880d5d31aa059f481ebce265828aad2c1b444d9a1955e48735ffffffffbf1b5d43b9274499355d1b21e269d7763daf0e1b9d6155e7f1908f8d49a6c778c6fa3421df6f1be5387c91084303b71b63e8a19094b7f2d7ff9f48669e8e7ab9d80dc1bf1b06dec9b390d6563b1ba13a8b906c6919a31b1007e29b67b99c4044e02bcb3d1b29b707d4e0a5e85b4affc89feb8ab85e12d0f91b783d20f86456ff071b8e4b36ef21fba9971bdd20f971d7b30346447f6bcec61beb2535b55ab4c7291b189d6c41f507c7b8ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 191, 27, 126, 32, 1, 12, 224, 157, 35, 189, 66, + 156, 22, 27, 161, 62, 78, 41, 148, 154, 123, 235, 66, 196, 98, 255, 216, 102, 159, 27, 60, 115, 234, 159, 11, 221, + 19, 56, 159, 65, 7, 216, 102, 159, 27, 221, 148, 136, 13, 93, 49, 170, 5, 159, 72, 30, 188, 226, 101, 130, 138, + 173, 44, 27, 68, 77, 154, 25, 85, 228, 135, 53, 255, 255, 255, 255, 191, 27, 93, 67, 185, 39, 68, 153, 53, 93, 27, + 33, 226, 105, 215, 118, 61, 175, 14, 27, 157, 97, 85, 231, 241, 144, 143, 141, 73, 166, 199, 120, 198, 250, 52, + 33, 223, 111, 27, 229, 56, 124, 145, 8, 67, 3, 183, 27, 99, 232, 161, 144, 148, 183, 242, 215, 255, 159, 72, 102, + 158, 142, 122, 185, 216, 13, 193, 191, 27, 6, 222, 201, 179, 144, 214, 86, 59, 27, 161, 58, 139, 144, 108, 105, + 25, 163, 27, 16, 7, 226, 155, 103, 185, 156, 64, 68, 224, 43, 203, 61, 27, 41, 183, 7, 212, 224, 165, 232, 91, 74, + 255, 200, 159, 235, 138, 184, 94, 18, 208, 249, 27, 120, 61, 32, 248, 100, 86, 255, 7, 27, 142, 75, 54, 239, 33, + 251, 169, 151, 27, 221, 32, 249, 113, 215, 179, 3, 70, 68, 127, 107, 206, 198, 27, 235, 37, 53, 181, 90, 180, 199, + 41, 27, 24, 157, 108, 65, 245, 7, 199, 184, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2366, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1622336720199760374" + }, + "fields": [] + } + ] + }, + "cborHex": "d905069fd8669f1b1683b2a6c99439f680ffff", + "cborBytes": [217, 5, 6, 159, 216, 102, 159, 27, 22, 131, 178, 166, 201, 148, 57, 246, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2367, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12845683992482786711" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "811d" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d8149ccf45fd" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17606739549988555088" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7259716885658927197" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6841609362918383718" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d8815" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4545863747538223284" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "19" + } + ] + } + ] + }, + "cborHex": "d8669f1bb245098824dbad979fbf0d42811dff46d8149ccf45fdd8669f1bfffffffffffffffb9f1bf457b45611e389501b64bfb20b3b9b005dd8669f1b5ef2477798bca0669f432d88151b3f1626fe4d5780b4ffff4119ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 178, 69, 9, 136, 36, 219, 173, 151, 159, 191, 13, 66, 129, 29, 255, 70, 216, 20, 156, 207, 69, + 253, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 27, 244, 87, 180, 86, 17, 227, 137, 80, 27, + 100, 191, 178, 11, 59, 155, 0, 93, 216, 102, 159, 27, 94, 242, 71, 119, 152, 188, 160, 102, 159, 67, 45, 136, 21, + 27, 63, 22, 38, 254, 77, 87, 128, 180, 255, 255, 65, 25, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2368, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6653688958370073738" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "661438638395751305" + } + } + ] + }, + "cborHex": "d8669f1b5c56a6dad9964c8a9f1b092de6efea4bfb89ffff", + "cborBytes": [ + 216, 102, 159, 27, 92, 86, 166, 218, 217, 150, 76, 138, 159, 27, 9, 45, 230, 239, 234, 75, 251, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2369, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18326232207483233103" + }, + "fields": [] + }, + "cborHex": "d8669f1bfe53db189e5c634f80ff", + "cborBytes": [216, 102, 159, 27, 254, 83, 219, 24, 158, 92, 99, 79, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2370, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a30105070001fd0484e202" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06fa28f9c80702" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14652918694449600922" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f98afe02d54b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5203c39d85367cf4aa" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2844069203047725179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8328534746608636523" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17196618800721134966" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "709a96ef3cfb6670" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8039d9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f11a2c276c73562bc546" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17992382834481931317" + } + } + } + ] + } + ] + }, + "cborHex": "d87a9fbf0e4ba30105070001fd0484e2024706fa28f9c807021bcb599feb0959599a46f98afe02d54b495203c39d85367cf4aaffbf1b277829df2449b87b1b7394e639bf1b126b1beea6a9b00ac9857641d148709a96ef3cfb6670438039d94af11a2c276c73562bc5461bf9b1c8dc3821a435ffff", + "cborBytes": [ + 216, 122, 159, 191, 14, 75, 163, 1, 5, 7, 0, 1, 253, 4, 132, 226, 2, 71, 6, 250, 40, 249, 200, 7, 2, 27, 203, 89, + 159, 235, 9, 89, 89, 154, 70, 249, 138, 254, 2, 213, 75, 73, 82, 3, 195, 157, 133, 54, 124, 244, 170, 255, 191, + 27, 39, 120, 41, 223, 36, 73, 184, 123, 27, 115, 148, 230, 57, 191, 27, 18, 107, 27, 238, 166, 169, 176, 10, 201, + 133, 118, 65, 209, 72, 112, 154, 150, 239, 60, 251, 102, 112, 67, 128, 57, 217, 74, 241, 26, 44, 39, 108, 115, 86, + 43, 197, 70, 27, 249, 177, 200, 220, 56, 33, 164, 53, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2371, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1394905240849487950" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8854778646324167216" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15628292731335087" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1358446118638061152" + } + } + ] + }, + "cborHex": "d8669f1b135bb2ed102a184e9f1b7ae27e43a2ddc230d8669f1b003785d974b271af80ff1b12da2b8c2bee0660ffff", + "cborBytes": [ + 216, 102, 159, 27, 19, 91, 178, 237, 16, 42, 24, 78, 159, 27, 122, 226, 126, 67, 162, 221, 194, 48, 216, 102, 159, + 27, 0, 55, 133, 217, 116, 178, 113, 175, 128, 255, 27, 18, 218, 43, 140, 43, 238, 6, 96, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2372, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6467489954650051484" + }, + "fields": [] + }, + "cborHex": "d8669f1b59c123d8f752d39c80ff", + "cborBytes": [216, 102, 159, 27, 89, 193, 35, 216, 247, 82, 211, 156, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2373, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10725199722511654576" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4599501514615415924" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11622280235918772810" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e04f4f71b" + }, + { + "_tag": "ByteArray", + "bytearray": "d2de40cc79a6c9fe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1702210168229151514" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "729a32c7fd78643f95" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9392388468127664676" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "942578a28a92d7fbf6" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f9f1b94d79052b56cdeb0d8669f1b3fd4b6422285e4749f1ba14aa24c0dfb4a4a454e04f4f71b48d2de40cc79a6c9fe1b179f77211a5b431affff49729a32c7fd78643f95d8669f1b8258778c7b398a2480ffff9f49942578a28a92d7fbf6ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 159, 27, 148, 215, 144, 82, 181, 108, 222, 176, + 216, 102, 159, 27, 63, 212, 182, 66, 34, 133, 228, 116, 159, 27, 161, 74, 162, 76, 13, 251, 74, 74, 69, 78, 4, + 244, 247, 27, 72, 210, 222, 64, 204, 121, 166, 201, 254, 27, 23, 159, 119, 33, 26, 91, 67, 26, 255, 255, 73, 114, + 154, 50, 199, 253, 120, 100, 63, 149, 216, 102, 159, 27, 130, 88, 119, 140, 123, 57, 138, 36, 128, 255, 255, 159, + 73, 148, 37, 120, 162, 138, 146, 215, 251, 246, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2374, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9821006748004926326" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + "cborHex": "d87e9f1b884b399a778c4376800bff", + "cborBytes": [216, 126, 159, 27, 136, 75, 57, 154, 119, 140, 67, 118, 128, 11, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2375, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7671408267866152245" + }, + "fields": [] + }, + "cborHex": "d8669f1b6a76512cbd281d3580ff", + "cborBytes": [216, 102, 159, 27, 106, 118, 81, 44, 189, 40, 29, 53, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2376, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "573064495278471334" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2941135185977683320" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14646796335739304204" + } + } + ] + }, + "cborHex": "d8669f1b07f3ef1f4a7638a69fd8669f1b28d102de6c9a2d7880ff1bcb43dfaa513bf90cffff", + "cborBytes": [ + 216, 102, 159, 27, 7, 243, 239, 31, 74, 118, 56, 166, 159, 216, 102, 159, 27, 40, 209, 2, 222, 108, 154, 45, 120, + 128, 255, 27, 203, 67, 223, 170, 81, 59, 249, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2377, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1284362243829156167" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "822488083707007736" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4215343316420993595" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2127bd5016" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9576321055282157773" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3549024396803679162" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17718929167767814320" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6339643637170121514" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2820194493851363308" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15682277698886733394" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ec0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16267819252644867388" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6480400831604817918" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b11d2f8a7ea5c49479fbf1b0b6a108ded5912f81b3a7fe8699597223bff452127bd5016d8669f1b84e5ed43232fd8cd9fa0bf1b3140aae2a6ada3ba1bf5e64832fd1bc0b01b57faf04c94172b2a1b272357f33b85e7ec1bd9a2a47a972c8e52420ec01be1c2e76b70286d3c1b59ef0238c1f37ffeffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 17, 210, 248, 167, 234, 92, 73, 71, 159, 191, 27, 11, 106, 16, 141, 237, 89, 18, 248, 27, 58, + 127, 232, 105, 149, 151, 34, 59, 255, 69, 33, 39, 189, 80, 22, 216, 102, 159, 27, 132, 229, 237, 67, 35, 47, 216, + 205, 159, 160, 191, 27, 49, 64, 170, 226, 166, 173, 163, 186, 27, 245, 230, 72, 50, 253, 27, 192, 176, 27, 87, + 250, 240, 76, 148, 23, 43, 42, 27, 39, 35, 87, 243, 59, 133, 231, 236, 27, 217, 162, 164, 122, 151, 44, 142, 82, + 66, 14, 192, 27, 225, 194, 231, 107, 112, 40, 109, 60, 27, 89, 239, 2, 56, 193, 243, 127, 254, 255, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2378, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "020b8d" + }, + { + "_tag": "ByteArray", + "bytearray": "f40afac4c0c9026ce919" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6272564024231987064" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17082935095574907018" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15933655511688982945" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3080ec536a3da3447cd9" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10629048217107487580" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4377733800348460998" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78947ec956" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "813e1fe14794dbb5" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5e9ee5a073b11f95b501f7b2" + }, + { + "_tag": "ByteArray", + "bytearray": "bfaf4d8b208d2b" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11932902239243325875" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11416064851100125018" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11400615461379047369" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "487317092471340128" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18361542994705517270" + } + }, + { + "_tag": "ByteArray", + "bytearray": "91b24de52e3a5eb39b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1842413427684818061" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1296498223862497036" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17729449990085996511" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5cbb95eadf5eab33892522f3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14907380058990795270" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905049f43020b8d4af40afac4c0c9026ce9199fbf1b570c9fbf1f3e07781bed12c6f5cccbc88a1bdd1fb7448baab1a14a3080ec536a3da3447cd9ffffd8669f1b9381f709d130db5c9fbf416c1b3cc0d5b27afda7c64578947ec95648813e1fe14794dbb5ff4c5e9ee5a073b11f95b501f7b247bfaf4d8b208d2ba0ffffd8669f1ba59a2f5d058fd1b39fd8669f1b9e6e027f46a5475a9f1b9e371f5bec52ffc91b06c34c504dbafc601bfed14e11ef7c0ad64991b24de52e3a5eb39bffff1b199191403e903c8d9f1b11fe1643f53fbf0c1bf60ba8d4d220efdf4c5cbb95eadf5eab33892522f31bcee1a72e53e35a06ffffffff", + "cborBytes": [ + 217, 5, 4, 159, 67, 2, 11, 141, 74, 244, 10, 250, 196, 192, 201, 2, 108, 233, 25, 159, 191, 27, 87, 12, 159, 191, + 31, 62, 7, 120, 27, 237, 18, 198, 245, 204, 203, 200, 138, 27, 221, 31, 183, 68, 139, 170, 177, 161, 74, 48, 128, + 236, 83, 106, 61, 163, 68, 124, 217, 255, 255, 216, 102, 159, 27, 147, 129, 247, 9, 209, 48, 219, 92, 159, 191, + 65, 108, 27, 60, 192, 213, 178, 122, 253, 167, 198, 69, 120, 148, 126, 201, 86, 72, 129, 62, 31, 225, 71, 148, + 219, 181, 255, 76, 94, 158, 229, 160, 115, 177, 31, 149, 181, 1, 247, 178, 71, 191, 175, 77, 139, 32, 141, 43, + 160, 255, 255, 216, 102, 159, 27, 165, 154, 47, 93, 5, 143, 209, 179, 159, 216, 102, 159, 27, 158, 110, 2, 127, + 70, 165, 71, 90, 159, 27, 158, 55, 31, 91, 236, 82, 255, 201, 27, 6, 195, 76, 80, 77, 186, 252, 96, 27, 254, 209, + 78, 17, 239, 124, 10, 214, 73, 145, 178, 77, 229, 46, 58, 94, 179, 155, 255, 255, 27, 25, 145, 145, 64, 62, 144, + 60, 141, 159, 27, 17, 254, 22, 67, 245, 63, 191, 12, 27, 246, 11, 168, 212, 210, 32, 239, 223, 76, 92, 187, 149, + 234, 223, 94, 171, 51, 137, 37, 34, 243, 27, 206, 225, 167, 46, 83, 227, 90, 6, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2379, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12550366120770650459" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18240791359406220896" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7394359427385214382" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c66262047df3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07b8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffadb71674" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5515603323517358589" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bae2bdb7dfda1c15b9f1bfd244f18f76c26609fd8669f1b669e0ab8e2db45ae80ffbf46c66262047df34207b845ffadb716741b4c8b5bfff43751fdffffffff", + "cborBytes": [ + 216, 102, 159, 27, 174, 43, 219, 125, 253, 161, 193, 91, 159, 27, 253, 36, 79, 24, 247, 108, 38, 96, 159, 216, + 102, 159, 27, 102, 158, 10, 184, 226, 219, 69, 174, 128, 255, 191, 70, 198, 98, 98, 4, 125, 243, 66, 7, 184, 69, + 255, 173, 183, 22, 116, 27, 76, 139, 91, 255, 244, 55, 81, 253, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2380, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "556104011363240838" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17262510330472763953" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2061196748073797014" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "737173932e9a5e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bffb59344c8a0575e0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a4e37561cb6c42185" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "150401643788476459" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10339142510410249905" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4234604599178919147" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3287c172" + }, + { + "_tag": "ByteArray", + "bytearray": "d89f757cbe1a5d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9174051052580165313" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4445018340679798656" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05f3c2a7" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "586648692113357578" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6406673224557993132" + } + }, + { + "_tag": "ByteArray", + "bytearray": "45c577cd87f9ce5be9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "70" + }, + { + "_tag": "ByteArray", + "bytearray": "1a7727720c9c169e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14400084076575021567" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4449086568069733179" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c663" + }, + { + "_tag": "ByteArray", + "bytearray": "69" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7207817857307833545" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2702405d7d48cc53" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1720847662b" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b07b7ada6e779cb869f1bef90c1af53571231d8669f1b1c9ad7858d21059680ff9fbf47737173932e9a5e49bffb59344c8a0575e0497a4e37561cb6c421851b0216557f87a5a02bffd8669f1b8f7c03558724b6b19f1b3ac45672724b7ceb443287c17247d89f757cbe1a5d1b7f50c6d37c56d6c11b3dafe0a15050cf80ffff4405f3c2a7ffd8669f1b082431e0955d3b0a9f1b58e9135a8dc91cac4945c577cd87f9ce5be99f4170481a7727720c9c169effd8669f1bc7d7602c380359ff9f1b3dbe54a950c21b3b42c66341691b640750270e8cf4c9ffffbf482702405d7d48cc5346d1720847662bffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 7, 183, 173, 166, 231, 121, 203, 134, 159, 27, 239, 144, 193, 175, 83, 87, 18, 49, 216, 102, + 159, 27, 28, 154, 215, 133, 141, 33, 5, 150, 128, 255, 159, 191, 71, 115, 113, 115, 147, 46, 154, 94, 73, 191, + 251, 89, 52, 76, 138, 5, 117, 224, 73, 122, 78, 55, 86, 28, 182, 196, 33, 133, 27, 2, 22, 85, 127, 135, 165, 160, + 43, 255, 216, 102, 159, 27, 143, 124, 3, 85, 135, 36, 182, 177, 159, 27, 58, 196, 86, 114, 114, 75, 124, 235, 68, + 50, 135, 193, 114, 71, 216, 159, 117, 124, 190, 26, 93, 27, 127, 80, 198, 211, 124, 86, 214, 193, 27, 61, 175, + 224, 161, 80, 80, 207, 128, 255, 255, 68, 5, 243, 194, 167, 255, 216, 102, 159, 27, 8, 36, 49, 224, 149, 93, 59, + 10, 159, 27, 88, 233, 19, 90, 141, 201, 28, 172, 73, 69, 197, 119, 205, 135, 249, 206, 91, 233, 159, 65, 112, 72, + 26, 119, 39, 114, 12, 156, 22, 158, 255, 216, 102, 159, 27, 199, 215, 96, 44, 56, 3, 89, 255, 159, 27, 61, 190, + 84, 169, 80, 194, 27, 59, 66, 198, 99, 65, 105, 27, 100, 7, 80, 39, 14, 140, 244, 201, 255, 255, 191, 72, 39, 2, + 64, 93, 125, 72, 204, 83, 70, 209, 114, 8, 71, 102, 43, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2381, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8363314249225437289" + } + } + ] + }, + "cborHex": "d905049f1b741075ffba0b8069ff", + "cborBytes": [217, 5, 4, 159, 27, 116, 16, 117, 255, 186, 11, 128, 105, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2382, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11477617704685232003" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13551087140735451902" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b9f48b07dcb7f5f839fd905089fd8669f1bbc0f21f52fe682fe80ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 159, 72, 176, 125, 203, 127, 95, 131, 159, 217, 5, 8, 159, 216, 102, 159, 27, 188, 15, 33, 245, + 47, 230, 130, 254, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2383, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12632375570962137910" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4445744577069977126" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12867792206203896448" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c1b73097d3e724061" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7edbd0e02aca" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f4e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b800079b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f1e5663c76283f49c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15410802067502746102" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e2977029db7c6ea649" + } + ] + }, + "cborHex": "d8669f1baf4f36a7108543369fbf1b3db2752366600e2641571bb29394d5c652c280491c1b73097d3e724061ff467edbd0e02acabf420f4e44b800079b496f1e5663c76283f49c1bd5de2ad4995b49f6ff49e2977029db7c6ea649ffff", + "cborBytes": [ + 216, 102, 159, 27, 175, 79, 54, 167, 16, 133, 67, 54, 159, 191, 27, 61, 178, 117, 35, 102, 96, 14, 38, 65, 87, 27, + 178, 147, 148, 213, 198, 82, 194, 128, 73, 28, 27, 115, 9, 125, 62, 114, 64, 97, 255, 70, 126, 219, 208, 224, 42, + 202, 191, 66, 15, 78, 68, 184, 0, 7, 155, 73, 111, 30, 86, 99, 199, 98, 131, 244, 156, 27, 213, 222, 42, 212, 153, + 91, 73, 246, 255, 73, 226, 151, 112, 41, 219, 124, 110, 166, 73, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2384, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10869614049583459779" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a67acccf3cf3" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f1b96d8a0636f046dc346a67acccf3cf3ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 27, 150, 216, 160, 99, 111, 4, 109, 195, 70, 166, + 122, 204, 207, 60, 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2385, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "383824856411852164" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2872101293656803326" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17499648954342912284" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4ff4b1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "133772417653342994" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b40f5e1c6c4c115d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6231088282221865860" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11255129666458856651" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c3dc" + }, + { + "_tag": "ByteArray", + "bytearray": "f87a74" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02e2deb61bc41860e3" + }, + { + "_tag": "ByteArray", + "bytearray": "6efcbb279b56ae" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "66b959ad82a3e63185" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2470034632465781937" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11552692802764652192" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8ba205c7bdea457c0eff" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b05539eac5e64cd849f80d8669f1b27dbc0e8d75a87fe9fd8669f1bf2db3e01c1a5311c9f434ff4b11b01db414e1af9031248b40f5e1c6c4c115dffff9f1b567945c769eeeb841b9c3240cca63daccbff9f42c3dc43f87a74ff4902e2deb61bc41860e3476efcbb279b56aeffff4966b959ad82a3e631851b22475369530914b1d8669f1ba05368e533ffbea09f9f4a8ba205c7bdea457c0effffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 5, 83, 158, 172, 94, 100, 205, 132, 159, 128, 216, 102, 159, 27, 39, 219, 192, 232, 215, 90, + 135, 254, 159, 216, 102, 159, 27, 242, 219, 62, 1, 193, 165, 49, 28, 159, 67, 79, 244, 177, 27, 1, 219, 65, 78, + 26, 249, 3, 18, 72, 180, 15, 94, 28, 108, 76, 17, 93, 255, 255, 159, 27, 86, 121, 69, 199, 105, 238, 235, 132, 27, + 156, 50, 64, 204, 166, 61, 172, 203, 255, 159, 66, 195, 220, 67, 248, 122, 116, 255, 73, 2, 226, 222, 182, 27, + 196, 24, 96, 227, 71, 110, 252, 187, 39, 155, 86, 174, 255, 255, 73, 102, 185, 89, 173, 130, 163, 230, 49, 133, + 27, 34, 71, 83, 105, 83, 9, 20, 177, 216, 102, 159, 27, 160, 83, 104, 229, 51, 255, 190, 160, 159, 159, 74, 139, + 162, 5, 199, 189, 234, 69, 124, 14, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2386, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3234804663780374816" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "da765a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3218797836100929743" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9723928903245438125" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a6b4c249041ec317505920" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10405465348565016020" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b66801d7643b34583c38b9e7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11910660464790162399" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3e7398c54952b307fe" + }, + { + "_tag": "ByteArray", + "bytearray": "96ba5192526bfc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5195722459437928622" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a73fe17d9" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a0216041b696c3acb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "563281e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e416ea8ef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14872280002226747306" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18315082241498665952" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34d8e2d77b96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56d1c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfeca765518a0212e66ac1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12156444654987147452" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0f2ed13efa3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c28240aee7dda76d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3335863481592214302" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7b97fc939af821537fa14ac4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13703301727180586653" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2ce455b3f667f9209f43da765ad8669f1b2cab7793f89788cf9f9f1b86f255d163191cad4ba6b4c249041ec3175059201b9067a39a9fda9dd44cb66801d7643b34583c38b9e71ba54b2a965c1b4bdfffa09f493e7398c54952b307fe4796ba5192526bfc1b481aea0c7a5110ae451a73fe17d9ffbf491a0216041b696c3acb44563281e5451e416ea8ef1bce64f3dd84def7aa41311bfe2c3e42dc97d3e04634d8e2d77b964356d1c74bdfeca765518a0212e66ac11ba8b45e01903478bc46e0f2ed13efa348c28240aee7dda76dff1b2e4b5e298f80731effff4c7b97fc939af821537fa14ac49f1bbe2be85152987e9dffffff", + "cborBytes": [ + 216, 102, 159, 27, 44, 228, 85, 179, 246, 103, 249, 32, 159, 67, 218, 118, 90, 216, 102, 159, 27, 44, 171, 119, + 147, 248, 151, 136, 207, 159, 159, 27, 134, 242, 85, 209, 99, 25, 28, 173, 75, 166, 180, 194, 73, 4, 30, 195, 23, + 80, 89, 32, 27, 144, 103, 163, 154, 159, 218, 157, 212, 76, 182, 104, 1, 215, 100, 59, 52, 88, 60, 56, 185, 231, + 27, 165, 75, 42, 150, 92, 27, 75, 223, 255, 160, 159, 73, 62, 115, 152, 197, 73, 82, 179, 7, 254, 71, 150, 186, + 81, 146, 82, 107, 252, 27, 72, 26, 234, 12, 122, 81, 16, 174, 69, 26, 115, 254, 23, 217, 255, 191, 73, 26, 2, 22, + 4, 27, 105, 108, 58, 203, 68, 86, 50, 129, 229, 69, 30, 65, 110, 168, 239, 27, 206, 100, 243, 221, 132, 222, 247, + 170, 65, 49, 27, 254, 44, 62, 66, 220, 151, 211, 224, 70, 52, 216, 226, 215, 123, 150, 67, 86, 209, 199, 75, 223, + 236, 167, 101, 81, 138, 2, 18, 230, 106, 193, 27, 168, 180, 94, 1, 144, 52, 120, 188, 70, 224, 242, 237, 19, 239, + 163, 72, 194, 130, 64, 174, 231, 221, 167, 109, 255, 27, 46, 75, 94, 41, 143, 128, 115, 30, 255, 255, 76, 123, + 151, 252, 147, 154, 248, 33, 83, 127, 161, 74, 196, 159, 27, 190, 43, 232, 81, 82, 152, 126, 157, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2387, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5397168320047265726" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0f8f803" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6920000430707723573" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + }, + "cborHex": "d87a9fbf1b4ae697fddd68b7be44c0f8f8031b6008c7ba5de24d3541b4ff08ff", + "cborBytes": [ + 216, 122, 159, 191, 27, 74, 230, 151, 253, 221, 104, 183, 190, 68, 192, 248, 248, 3, 27, 96, 8, 199, 186, 93, 226, + 77, 53, 65, 180, 255, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2388, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d083c6615a8370c5f3a7ac04" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f4cd083c6615a8370c5f3a7ac04ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 76, 208, 131, 198, 97, 90, 131, 112, 197, 243, + 167, 172, 4, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2389, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2720355786257803623" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4585289910303421738" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3066321572481340580" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10376613259886178004" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7872965690688230340" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9785a00025f7856451b1dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14477120426674796509" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0db78b4c174c1aa1d1893b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15257701044059736927" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16175479359762241747" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "db519e106e4144687ca684" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8449677713022174095" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e2eece3fbb26d60" + }, + { + "_tag": "ByteArray", + "bytearray": "6f49ab0a0fa3" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79fbf1b25c0a52cae9329671b3fa238e127d1752a1b2a8dc3395ede14a41b900122c83f1faed41b6d4264953a4f53c44b9785a00025f7856451b1dd1bc8e910533280b7dd4b0db78b4c174c1aa1d1893b1bd3be3e42c4498b5f1be07ad8c6be4a98d3ff9f4bdb519e106e4144687ca6841b7543491c9738c38f488e2eece3fbb26d60466f49ab0a0fa3ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 191, 27, 37, 192, 165, 44, 174, 147, 41, 103, 27, + 63, 162, 56, 225, 39, 209, 117, 42, 27, 42, 141, 195, 57, 94, 222, 20, 164, 27, 144, 1, 34, 200, 63, 31, 174, 212, + 27, 109, 66, 100, 149, 58, 79, 83, 196, 75, 151, 133, 160, 0, 37, 247, 133, 100, 81, 177, 221, 27, 200, 233, 16, + 83, 50, 128, 183, 221, 75, 13, 183, 139, 76, 23, 76, 26, 161, 209, 137, 59, 27, 211, 190, 62, 66, 196, 73, 139, + 95, 27, 224, 122, 216, 198, 190, 74, 152, 211, 255, 159, 75, 219, 81, 158, 16, 110, 65, 68, 104, 124, 166, 132, + 27, 117, 67, 73, 28, 151, 56, 195, 143, 72, 142, 46, 236, 227, 251, 178, 109, 96, 70, 111, 73, 171, 10, 15, 163, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2390, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fc05" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "de" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2604e3fd07fd021f3f0605" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6642747242746552721" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01afef376abe4845d67b" + }, + { + "_tag": "ByteArray", + "bytearray": "ff68431fbff44e" + }, + { + "_tag": "ByteArray", + "bytearray": "6e" + }, + { + "_tag": "ByteArray", + "bytearray": "5a967b1e60dc" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f9f42fc059f41deff1bfffffffffffffffe4b2604e3fd07fd021f3f06059f1b5c2fc76c289d21914a01afef376abe4845d67b47ff68431fbff44e416e465a967b1e60dcffff1bfffffffffffffff5ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 159, 66, 252, 5, 159, 65, 222, 255, 27, 255, 255, + 255, 255, 255, 255, 255, 254, 75, 38, 4, 227, 253, 7, 253, 2, 31, 63, 6, 5, 159, 27, 92, 47, 199, 108, 40, 157, + 33, 145, 74, 1, 175, 239, 55, 106, 190, 72, 69, 214, 123, 71, 255, 104, 67, 31, 191, 244, 78, 65, 110, 70, 90, + 150, 123, 30, 96, 220, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 245, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2391, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7332648928453915598" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "36c79562c7296dfdda2cbe76" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b65c2cd59b324f3ce9f9fd8669f1bfffffffffffffff59f4c36c79562c7296dfdda2cbe76ffff07ffffff", + "cborBytes": [ + 216, 102, 159, 27, 101, 194, 205, 89, 179, 36, 243, 206, 159, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 245, 159, 76, 54, 199, 149, 98, 199, 41, 109, 253, 218, 44, 190, 118, 255, 255, 7, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2392, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2928" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "159b3236d5c3ef0c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e844615781372c01aeb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ef1a17848f3782b15" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c8a9d2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9245191745844710183" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0c1589795" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4d196148e6ad6eff1c5a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16267032936140680586" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4632945060673803320" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17555800973283218060" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5418" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13586446455089174510" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1395776862298280007" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14603395019744091872" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2104944640061034967" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15281998522222837999" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5915710125578003309" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24698aee" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7321770337408796602" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13932c3c7ad117e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7999755339293101437" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11513517439015115760" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "722ed1d9ac63aaa4" + } + ] + } + ] + }, + "cborHex": "d8799fbf42292848159b3236d5c3ef0c4a3e844615781372c01aeb497ef1a17848f3782b15444c8a9d2d1b804d84e8e3728b27419545a0c15897954bf4d196148e6ad6eff1c5a91be1c01c44dc3ead8aff9f1b404b86fc7d5cd4381bf3a2bbf87800d28c425418ff9f1bbc8cc1111b7497eebf1b135ecba93eff90471bcaa9ae65fa8e1ee01b1d3643ff66b351d71bd41490b03f2300ef1b5218d3043542236d4424698aee1b659c2754583e47ba4813932c3c7ad117e91b6f04d718b8998d7d1b9fc83b1c0bc2dbf0ff48722ed1d9ac63aaa4ffff", + "cborBytes": [ + 216, 121, 159, 191, 66, 41, 40, 72, 21, 155, 50, 54, 213, 195, 239, 12, 74, 62, 132, 70, 21, 120, 19, 114, 192, + 26, 235, 73, 126, 241, 161, 120, 72, 243, 120, 43, 21, 68, 76, 138, 157, 45, 27, 128, 77, 132, 232, 227, 114, 139, + 39, 65, 149, 69, 160, 193, 88, 151, 149, 75, 244, 209, 150, 20, 142, 106, 214, 239, 241, 197, 169, 27, 225, 192, + 28, 68, 220, 62, 173, 138, 255, 159, 27, 64, 75, 134, 252, 125, 92, 212, 56, 27, 243, 162, 187, 248, 120, 0, 210, + 140, 66, 84, 24, 255, 159, 27, 188, 140, 193, 17, 27, 116, 151, 238, 191, 27, 19, 94, 203, 169, 62, 255, 144, 71, + 27, 202, 169, 174, 101, 250, 142, 30, 224, 27, 29, 54, 67, 255, 102, 179, 81, 215, 27, 212, 20, 144, 176, 63, 35, + 0, 239, 27, 82, 24, 211, 4, 53, 66, 35, 109, 68, 36, 105, 138, 238, 27, 101, 156, 39, 84, 88, 62, 71, 186, 72, 19, + 147, 44, 60, 122, 209, 23, 233, 27, 111, 4, 215, 24, 184, 153, 141, 125, 27, 159, 200, 59, 28, 11, 194, 219, 240, + 255, 72, 114, 46, 209, 217, 172, 99, 170, 164, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2393, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16324333914189188519" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13712789347597384355" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bed46d99" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b52cea89fd50461" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f6f4cb3b346" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16174817930032104016" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0706fa0390067c5bfd05" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0103fa047f04ffebcb6f42" + } + ] + } + ] + }, + "cborHex": "d8669f1be28baf34761bcda79f121bbe4d9d42174d7aa344bed46d999fbf488b52cea89fd50461462f6f4cb3b346ffbf1be0787f35a22ec2504a0706fa0390067c5bfd05ff4b0103fa047f04ffebcb6f42ffffff", + "cborBytes": [ + 216, 102, 159, 27, 226, 139, 175, 52, 118, 27, 205, 167, 159, 18, 27, 190, 77, 157, 66, 23, 77, 122, 163, 68, 190, + 212, 109, 153, 159, 191, 72, 139, 82, 206, 168, 159, 213, 4, 97, 70, 47, 111, 76, 179, 179, 70, 255, 191, 27, 224, + 120, 127, 53, 162, 46, 194, 80, 74, 7, 6, 250, 3, 144, 6, 124, 91, 253, 5, 255, 75, 1, 3, 250, 4, 127, 4, 255, + 235, 203, 111, 66, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2394, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1777551569674288333" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12500180279777548309" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13750348400886179768" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "820e0c85" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "750581706090801008" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbb31720" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2494298469779272844" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4944089967751195340" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d428a7c14533e4" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "26b5302b1b38d40183" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14284111339376834693" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7445304" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "092e97f0d94fa5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15685533013822224783" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e98d29d2b2ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6596220421086203349" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3973377794009496537" + } + } + ] + }, + "cborHex": "d8669f1b18ab21bc185fbccd9fd8669f1bad798fbc547bd8159f1bbed30d04a4ae67b880bf44820e0c851b0a6a9a15be72e77044dbb317201b229d873e2efe748cff1b449cefa17961eacc9f47d428a7c14533e4ffffff4926b5302b1b38d40183bf1bc63b5b952baf788544e744530447092e97f0d94fa51bd9ae352ba989398f46e98d29d2b2ab1b5b8a7b8653054dd5ff1b3724460d425c7bd9ffff", + "cborBytes": [ + 216, 102, 159, 27, 24, 171, 33, 188, 24, 95, 188, 205, 159, 216, 102, 159, 27, 173, 121, 143, 188, 84, 123, 216, + 21, 159, 27, 190, 211, 13, 4, 164, 174, 103, 184, 128, 191, 68, 130, 14, 12, 133, 27, 10, 106, 154, 21, 190, 114, + 231, 112, 68, 219, 179, 23, 32, 27, 34, 157, 135, 62, 46, 254, 116, 140, 255, 27, 68, 156, 239, 161, 121, 97, 234, + 204, 159, 71, 212, 40, 167, 193, 69, 51, 228, 255, 255, 255, 73, 38, 181, 48, 43, 27, 56, 212, 1, 131, 191, 27, + 198, 59, 91, 149, 43, 175, 120, 133, 68, 231, 68, 83, 4, 71, 9, 46, 151, 240, 217, 79, 165, 27, 217, 174, 53, 43, + 169, 137, 57, 143, 70, 233, 141, 41, 210, 178, 171, 27, 91, 138, 123, 134, 83, 5, 77, 213, 255, 27, 55, 36, 70, + 13, 66, 92, 123, 217, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2395, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3940382526832340740" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12620146436898333832" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5e97f69ef80d3fecb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2890602059713676642" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17011120650315112221" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7117000100837726730" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9200910480590385345" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "61df27b6060ec487" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eaa13fc130dc190fa465bfd1" + }, + { + "_tag": "ByteArray", + "bytearray": "e1f2ba1f6f05" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18387620041675879475" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13078169040067985174" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed9dc5991e9ab05c9ecc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17554902906434670165" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15929237876180927950" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e65" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5262454695489157735" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10026105060474428688" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4338307496042214791" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11010543772303610237" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "be8bfe72c6" + } + ] + }, + "cborHex": "d8669f1b36af0d07f6ff6f049fd8669f1baf23c451e8bca48880ff9fbf49e5e97f69ef80d3fecb1b281d7b421c3f0562ff1bec13a41a49581f1d9f1b62c4a9e25cda1a0a1b7fb0335565c230c1ff4861df27b6060ec4879f4ceaa13fc130dc190fa465bfd146e1f2ba1f6f051bff2df30190f1b433ffff9fd8669f1bb57efd7369c37f169f4aed9dc5991e9ab05c9ecc1bf39f8b2efc82ce551bdd100573a07645ce426e65ffffbf1b4907fea9f337ba6741801b8b23e16e92531d101b3c34c3aeac02b587ff1b98cd4f397c0bd17dff45be8bfe72c6ffff", + "cborBytes": [ + 216, 102, 159, 27, 54, 175, 13, 7, 246, 255, 111, 4, 159, 216, 102, 159, 27, 175, 35, 196, 81, 232, 188, 164, 136, + 128, 255, 159, 191, 73, 229, 233, 127, 105, 239, 128, 211, 254, 203, 27, 40, 29, 123, 66, 28, 63, 5, 98, 255, 27, + 236, 19, 164, 26, 73, 88, 31, 29, 159, 27, 98, 196, 169, 226, 92, 218, 26, 10, 27, 127, 176, 51, 85, 101, 194, 48, + 193, 255, 72, 97, 223, 39, 182, 6, 14, 196, 135, 159, 76, 234, 161, 63, 193, 48, 220, 25, 15, 164, 101, 191, 209, + 70, 225, 242, 186, 31, 111, 5, 27, 255, 45, 243, 1, 144, 241, 180, 51, 255, 255, 159, 216, 102, 159, 27, 181, 126, + 253, 115, 105, 195, 127, 22, 159, 74, 237, 157, 197, 153, 30, 154, 176, 92, 158, 204, 27, 243, 159, 139, 46, 252, + 130, 206, 85, 27, 221, 16, 5, 115, 160, 118, 69, 206, 66, 110, 101, 255, 255, 191, 27, 73, 7, 254, 169, 243, 55, + 186, 103, 65, 128, 27, 139, 35, 225, 110, 146, 83, 29, 16, 27, 60, 52, 195, 174, 172, 2, 181, 135, 255, 27, 152, + 205, 79, 57, 124, 11, 209, 125, 255, 69, 190, 139, 254, 114, 198, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2396, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12267439112624682356" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1053145383373222249" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11211303288585572637" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "95d4fccd11ce" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7065042256105339418" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3921381596083484272" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7741461754454789309" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea4599c5ee785d14979f" + }, + { + "_tag": "ByteArray", + "bytearray": "f7f6d01988f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "342549038773835213" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2092293668588693686" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7291406702733281851" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3547721404580556437" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3791899556098503936" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4734962789111698280" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13591282049829953783" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13571027310515881953" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "395f257aba04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16510897060826489264" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80c8daaf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84d895047350" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1a2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12033515351805258024" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb9bd5cc5bfda732" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c8e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb934cffd7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5291043074314041552" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc3c55" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "194c7ff9efb9d7e7cb7f0c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16694174620212080017" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d3b501de" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10101072959611253212" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6835e8ba8049eb26edf4f02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16340919926758296912" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1baa3eb2e093ba35749f1b0e9d862578cdb169d8669f1b9b968cf0e14fd11d9f4695d4fccd11ced8669f1b620c127fee487a1a9f1b366b8bc9074f76701b6b6f32731c8cccbd4aea4599c5ee785d14979f46f7f6d01988f81b04c0fa892e4415cdffffffff9fa0bf1b1d095201920728b61b653047c3bd51ca3b1b313c09d22212ee9541e41b349f888e513675001b41b5f791ddb213681bbc9def03be41e0f71bbc55f96fc06c87e1ffa0bf46395f257aba041be5227d65f99aa1b04480c8daaf4684d89504735042b1a21ba6ffa274c78fe92848bb9bd5cc5bfda732427c8e45cb934cffd71b496d8fa497c778d043fc3c554b194c7ff9efb9d7e7cb7f0cffd8669f1be7ad9f5e18152d919f44d3b501de1b8c2e3856c7eeb1dc4cd6835e8ba8049eb26edf4f021be2c69c187187cd50ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 170, 62, 178, 224, 147, 186, 53, 116, 159, 27, 14, 157, 134, 37, 120, 205, 177, 105, 216, 102, + 159, 27, 155, 150, 140, 240, 225, 79, 209, 29, 159, 70, 149, 212, 252, 205, 17, 206, 216, 102, 159, 27, 98, 12, + 18, 127, 238, 72, 122, 26, 159, 27, 54, 107, 139, 201, 7, 79, 118, 112, 27, 107, 111, 50, 115, 28, 140, 204, 189, + 74, 234, 69, 153, 197, 238, 120, 93, 20, 151, 159, 70, 247, 246, 208, 25, 136, 248, 27, 4, 192, 250, 137, 46, 68, + 21, 205, 255, 255, 255, 255, 159, 160, 191, 27, 29, 9, 82, 1, 146, 7, 40, 182, 27, 101, 48, 71, 195, 189, 81, 202, + 59, 27, 49, 60, 9, 210, 34, 18, 238, 149, 65, 228, 27, 52, 159, 136, 142, 81, 54, 117, 0, 27, 65, 181, 247, 145, + 221, 178, 19, 104, 27, 188, 157, 239, 3, 190, 65, 224, 247, 27, 188, 85, 249, 111, 192, 108, 135, 225, 255, 160, + 191, 70, 57, 95, 37, 122, 186, 4, 27, 229, 34, 125, 101, 249, 154, 161, 176, 68, 128, 200, 218, 175, 70, 132, 216, + 149, 4, 115, 80, 66, 177, 162, 27, 166, 255, 162, 116, 199, 143, 233, 40, 72, 187, 155, 213, 204, 91, 253, 167, + 50, 66, 124, 142, 69, 203, 147, 76, 255, 215, 27, 73, 109, 143, 164, 151, 199, 120, 208, 67, 252, 60, 85, 75, 25, + 76, 127, 249, 239, 185, 215, 231, 203, 127, 12, 255, 216, 102, 159, 27, 231, 173, 159, 94, 24, 21, 45, 145, 159, + 68, 211, 181, 1, 222, 27, 140, 46, 56, 86, 199, 238, 177, 220, 76, 214, 131, 94, 139, 168, 4, 158, 178, 110, 223, + 79, 2, 27, 226, 198, 156, 24, 113, 135, 205, 80, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2397, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3111763668881228521" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f1b2b2f3491eca1c2e9ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 27, 43, 47, 52, 145, 236, 161, 194, 233, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2398, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "363348972008387587" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a98f1ebeb032e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5323fdf71" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bc0557768b7f4be15eb37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5012233958978031980" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74c323c67719" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b86c2aebf477ec33099676c8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8711f35bd24f956e51735a52" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11322167658400364488" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3793716a80848a54b0dd5e" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b050adff7061034039fbf474a98f1ebeb032e45a5323fdf714b5bc0557768b7f4be15eb371b458f083ad009116c4674c323c677194cb86c2aebf477ec33099676c84c8711f35bd24f956e51735a521b9d206b7f765eb7c841b54b3793716a80848a54b0dd5effffff", + "cborBytes": [ + 216, 102, 159, 27, 5, 10, 223, 247, 6, 16, 52, 3, 159, 191, 71, 74, 152, 241, 235, 235, 3, 46, 69, 165, 50, 63, + 223, 113, 75, 91, 192, 85, 119, 104, 183, 244, 190, 21, 235, 55, 27, 69, 143, 8, 58, 208, 9, 17, 108, 70, 116, + 195, 35, 198, 119, 25, 76, 184, 108, 42, 235, 244, 119, 236, 51, 9, 150, 118, 200, 76, 135, 17, 243, 91, 210, 79, + 149, 110, 81, 115, 90, 82, 27, 157, 32, 107, 127, 118, 94, 183, 200, 65, 181, 75, 55, 147, 113, 106, 128, 132, + 138, 84, 176, 221, 94, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2399, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "47da45" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16887304098594874563" + } + } + ] + }, + "cborHex": "d905029f4347da451bea5bc19adabee4c3ff", + "cborBytes": [217, 5, 2, 159, 67, 71, 218, 69, 27, 234, 91, 193, 154, 218, 190, 228, 195, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2400, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "880873915569098662" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5e" + } + ] + }, + "cborHex": "d8669f1b0c397e28bd674fa69f80415effff", + "cborBytes": [216, 102, 159, 27, 12, 57, 126, 40, 189, 103, 79, 166, 159, 128, 65, 94, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2401, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13181797073987131011" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1432389413619012646" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + ] + }, + "cborHex": "d8669f1bb6ef2699404956839f1b13e0de9522ca9426a01bffffffffffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 182, 239, 38, 153, 64, 73, 86, 131, 159, 27, 19, 224, 222, 149, 34, 202, 148, 38, 160, 27, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2402, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8399806672408938730" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9802584641486979000" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3282346575878757479" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b74921baa1ae408ea9fd8669f1b8809c6cb8c87ffb89fd8669f1b2d8d3cd1f4f91c6780ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 116, 146, 27, 170, 26, 228, 8, 234, 159, 216, 102, 159, 27, 136, 9, 198, 203, 140, 135, 255, + 184, 159, 216, 102, 159, 27, 45, 141, 60, 209, 244, 249, 28, 103, 128, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2403, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8784370526509664621" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1006848278126452592" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30e21d639f862f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4bed412a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4859c27d36ed84c2f87fa0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6063292636095855468" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71aeecc8ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5352" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad17d44b42dba8f010" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11434941324642846344" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "995b34fad79f0dbe86" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aac1e6cc88150baef3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb0eb5c0a3a633b534" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9fd8669f1b79e85a73c805096d9f1b0df90b2ca870df70ffffbf4730e21d639f862f444bed412a4b4859c27d36ed84c2f87fa01b542524871fbc3b6c4571aeecc8ec42535249ad17d44b42dba8f0101b9eb1128cc2c58688ff49995b34fad79f0dbe86bf49aac1e6cc88150baef349eb0eb5c0a3a633b534ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 216, 102, 159, 27, 121, 232, 90, 115, 200, 5, 9, + 109, 159, 27, 13, 249, 11, 44, 168, 112, 223, 112, 255, 255, 191, 71, 48, 226, 29, 99, 159, 134, 47, 68, 75, 237, + 65, 42, 75, 72, 89, 194, 125, 54, 237, 132, 194, 248, 127, 160, 27, 84, 37, 36, 135, 31, 188, 59, 108, 69, 113, + 174, 236, 200, 236, 66, 83, 82, 73, 173, 23, 212, 75, 66, 219, 168, 240, 16, 27, 158, 177, 18, 140, 194, 197, 134, + 136, 255, 73, 153, 91, 52, 250, 215, 159, 13, 190, 134, 191, 73, 170, 193, 230, 204, 136, 21, 11, 174, 243, 73, + 235, 14, 181, 192, 163, 166, 51, 181, 52, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2404, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7365314688915809656" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8233073926632282895" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8296382156603970888" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5791d33bccb221be5994f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "549fd1f0b4b3ee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2241bb1684" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17519620569550203768" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f616" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d40f15265b915246" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "44750fb89249" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3687863335513231701" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bdd79c04a87b" + }, + { + "_tag": "ByteArray", + "bytearray": "5481171120bc9e886ecea453" + }, + { + "_tag": "ByteArray", + "bytearray": "557673c35434cc64" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8578254368382271182" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f90f967" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc99e01929" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9274622285897607814" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12017018439734079595" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d082846" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8398568540693323756" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d486a24f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13649029610419059807" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12011655170349689261" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12879876533155175448" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4833181572488879356" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea312a0027162f183773" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9298607210499546797" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d711a8f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17812292234821429173" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16534746439468623813" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17821552318246610557" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "592750865097d627380b" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2575092338982623057" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "20a2f0" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17485540751492185421" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6636daafbbcb25789fd8669f1b7241c11d96729b0f9fbf1b7322ab9d8544d5484bb5791d33bccb221be5994f411d47549fd1f0b4b3ee452241bb16841bf3223215c7aaab7842f61648d40f15265b915246ff9f4644750fb892491b332dec2a1d74115546bdd79c04a87b4c5481171120bc9e886ecea45348557673c35434cc64ff1b770c14e6045e3eceffffbf444f90f96745bc99e01929415d1b80b613d478d92a86415f1ba6c5069a1fab306b448d0828461b748db59719cbdfec44d486a24f1bbd6b181d71d0fc5f41f11ba6b1f8bca92d69adff1bb2be8377659a9c18bf1b4312e9086b29dcfc4aea312a0027162f1837731b810b49fde7b61ead44d711a8f21bf731f969fbfae7b51be577384827aea7c51bf752df692b20e67d4a592750865097d627380bffd8669f1b23bc90d6c0e397519f4320a2f0a01bf2a91eabce4efd4dffffffff", + "cborBytes": [ + 216, 102, 159, 27, 102, 54, 218, 175, 187, 203, 37, 120, 159, 216, 102, 159, 27, 114, 65, 193, 29, 150, 114, 155, + 15, 159, 191, 27, 115, 34, 171, 157, 133, 68, 213, 72, 75, 181, 121, 29, 51, 188, 203, 34, 27, 229, 153, 79, 65, + 29, 71, 84, 159, 209, 240, 180, 179, 238, 69, 34, 65, 187, 22, 132, 27, 243, 34, 50, 21, 199, 170, 171, 120, 66, + 246, 22, 72, 212, 15, 21, 38, 91, 145, 82, 70, 255, 159, 70, 68, 117, 15, 184, 146, 73, 27, 51, 45, 236, 42, 29, + 116, 17, 85, 70, 189, 215, 156, 4, 168, 123, 76, 84, 129, 23, 17, 32, 188, 158, 136, 110, 206, 164, 83, 72, 85, + 118, 115, 195, 84, 52, 204, 100, 255, 27, 119, 12, 20, 230, 4, 94, 62, 206, 255, 255, 191, 68, 79, 144, 249, 103, + 69, 188, 153, 224, 25, 41, 65, 93, 27, 128, 182, 19, 212, 120, 217, 42, 134, 65, 95, 27, 166, 197, 6, 154, 31, + 171, 48, 107, 68, 141, 8, 40, 70, 27, 116, 141, 181, 151, 25, 203, 223, 236, 68, 212, 134, 162, 79, 27, 189, 107, + 24, 29, 113, 208, 252, 95, 65, 241, 27, 166, 177, 248, 188, 169, 45, 105, 173, 255, 27, 178, 190, 131, 119, 101, + 154, 156, 24, 191, 27, 67, 18, 233, 8, 107, 41, 220, 252, 74, 234, 49, 42, 0, 39, 22, 47, 24, 55, 115, 27, 129, + 11, 73, 253, 231, 182, 30, 173, 68, 215, 17, 168, 242, 27, 247, 49, 249, 105, 251, 250, 231, 181, 27, 229, 119, + 56, 72, 39, 174, 167, 197, 27, 247, 82, 223, 105, 43, 32, 230, 125, 74, 89, 39, 80, 134, 80, 151, 214, 39, 56, 11, + 255, 216, 102, 159, 27, 35, 188, 144, 214, 192, 227, 151, 81, 159, 67, 32, 162, 240, 160, 27, 242, 169, 30, 171, + 206, 78, 253, 77, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2405, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17616118596836258540" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "73ad9ae628cde8850345" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14640802136794704533" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "998cea4b9a379333" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6324018604384619448" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5e2cf3b852ebd657edf" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1026771084195428724" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16395759774475359313" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2585aea7f011e34fb8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca45" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a80a4ddcfcbc7df2052f13bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "297035964afdb0045c1e2c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0ef2507e6af06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4efd5a65eee4194de94523da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee1e0665483d0fb7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11126552700936403276" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4931700152689495030" + } + }, + { + "_tag": "ByteArray", + "bytearray": "beb80a4391cb7fea3d20" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8832416406734892636" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c14fbf872108" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7748283049103203726" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "79" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17349505655961661658" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe8e4205d091" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14917289658146306913" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4dab5e576fd28ffb58" + }, + { + "_tag": "ByteArray", + "bytearray": "0b71a6a65cd9bb2aaddafb52" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10889725599910580354" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9f4881961761f1" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf47906879593f2ec9fbf4a73ad9ae628cde88503451bcb2e93f91e6daa9548998cea4b9a3793331b57c36d6a234e8bb841e24aa5e2cf3b852ebd657edfffd8669f1b0e3fd2dc6b1c79749f1be38970a57c3e1451bf492585aea7f011e34fb842ca454ca80a4ddcfcbc7df2052f13bf4b297035964afdb0045c1e2c47c0ef2507e6af064c4efd5a65eee4194de94523da48ee1e0665483d0fb71b9a6974bb01fa394cffffff9f1b4470eb28dbcc0bf64abeb80a4391cb7fea3d20d8669f1b7a930becffc3ee5c9f46c14fbf8721081b6b876e6188fa1d8effff4179bf1bf0c5d378f439b0da46fe8e4205d091ffffd8669f1bcf04dbe8ad6b3b619f494dab5e576fd28ffb584c0b71a6a65cd9bb2aaddafb521b972013bca425d0829f479f4881961761f1ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 244, 121, 6, 135, 149, 147, 242, 236, 159, 191, 74, 115, 173, 154, 230, 40, 205, 232, 133, 3, + 69, 27, 203, 46, 147, 249, 30, 109, 170, 149, 72, 153, 140, 234, 75, 154, 55, 147, 51, 27, 87, 195, 109, 106, 35, + 78, 139, 184, 65, 226, 74, 165, 226, 207, 59, 133, 46, 189, 101, 126, 223, 255, 216, 102, 159, 27, 14, 63, 210, + 220, 107, 28, 121, 116, 159, 27, 227, 137, 112, 165, 124, 62, 20, 81, 191, 73, 37, 133, 174, 167, 240, 17, 227, + 79, 184, 66, 202, 69, 76, 168, 10, 77, 220, 252, 188, 125, 242, 5, 47, 19, 191, 75, 41, 112, 53, 150, 74, 253, + 176, 4, 92, 30, 44, 71, 192, 239, 37, 7, 230, 175, 6, 76, 78, 253, 90, 101, 238, 228, 25, 77, 233, 69, 35, 218, + 72, 238, 30, 6, 101, 72, 61, 15, 183, 27, 154, 105, 116, 187, 1, 250, 57, 76, 255, 255, 255, 159, 27, 68, 112, + 235, 40, 219, 204, 11, 246, 74, 190, 184, 10, 67, 145, 203, 127, 234, 61, 32, 216, 102, 159, 27, 122, 147, 11, + 236, 255, 195, 238, 92, 159, 70, 193, 79, 191, 135, 33, 8, 27, 107, 135, 110, 97, 136, 250, 29, 142, 255, 255, 65, + 121, 191, 27, 240, 197, 211, 120, 244, 57, 176, 218, 70, 254, 142, 66, 5, 208, 145, 255, 255, 216, 102, 159, 27, + 207, 4, 219, 232, 173, 107, 59, 97, 159, 73, 77, 171, 94, 87, 111, 210, 143, 251, 88, 76, 11, 113, 166, 166, 92, + 217, 187, 42, 173, 218, 251, 82, 27, 151, 32, 19, 188, 164, 37, 208, 130, 159, 71, 159, 72, 129, 150, 23, 97, 241, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2406, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17278716766366972000" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11993598234842494819" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05b7159ecff48f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12291042847055511657" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "10cb76a2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3733767190686238854" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14273623673851378286" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5650832855628932417" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d3e4" + }, + { + "_tag": "ByteArray", + "bytearray": "990210aa8d472185" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5078811448849024916" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1050191779288161444" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9967077299033475152" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15184248189544676409" + } + } + ] + } + ] + }, + "cborHex": "d8669f1befca555a39e3b8609fbf1ba671d20cbe89f763411b4705b7159ecff48f1baa928e5941d980694410cb76a21b33d1017a42dc8886ff1bc616191b41847a6ed8669f1b4e6bca8af4de65419f9f42d3e448990210aa8d472185ff9f41af1b467b901aa1d54794ffffffd8669f1b0e9307dbee819ca49f9f1b8a522bfee1c00850ff1bd2b949475f2dbc39ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 239, 202, 85, 90, 57, 227, 184, 96, 159, 191, 27, 166, 113, 210, 12, 190, 137, 247, 99, 65, 27, + 71, 5, 183, 21, 158, 207, 244, 143, 27, 170, 146, 142, 89, 65, 217, 128, 105, 68, 16, 203, 118, 162, 27, 51, 209, + 1, 122, 66, 220, 136, 134, 255, 27, 198, 22, 25, 27, 65, 132, 122, 110, 216, 102, 159, 27, 78, 107, 202, 138, 244, + 222, 101, 65, 159, 159, 66, 211, 228, 72, 153, 2, 16, 170, 141, 71, 33, 133, 255, 159, 65, 175, 27, 70, 123, 144, + 26, 161, 213, 71, 148, 255, 255, 255, 216, 102, 159, 27, 14, 147, 7, 219, 238, 129, 156, 164, 159, 159, 27, 138, + 82, 43, 254, 225, 192, 8, 80, 255, 27, 210, 185, 73, 71, 95, 45, 188, 57, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2407, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "984001982871790449" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8763145459197738291" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5910917726253269301" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b9bf03c909768a5ba24" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10151047379515930719" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a71a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10485842270479946604" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3fc8aa1408528a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14811033673820322496" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8849258741116789334" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18400955427462177676" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4217653894697813990" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e3612ccfc5ec9f4a39bde9" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f9fbf1b0da7e097075a63711b799cf25db28efd331b5207cc5ac9e2c1354a6b9bf03c909768a5ba241b8cdfc3cf2234f85f42a71a1b918531fd16bb936c473fc8aa1408528a1bcd8b5ca77468bac01b7acee1f08dc96256ffff1bff5d537805ade38cd8669f1b3a881ddf030187e680ff4be3612ccfc5ec9f4a39bde9ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 159, 191, 27, 13, 167, 224, 151, 7, 90, 99, 113, + 27, 121, 156, 242, 93, 178, 142, 253, 51, 27, 82, 7, 204, 90, 201, 226, 193, 53, 74, 107, 155, 240, 60, 144, 151, + 104, 165, 186, 36, 27, 140, 223, 195, 207, 34, 52, 248, 95, 66, 167, 26, 27, 145, 133, 49, 253, 22, 187, 147, 108, + 71, 63, 200, 170, 20, 8, 82, 138, 27, 205, 139, 92, 167, 116, 104, 186, 192, 27, 122, 206, 225, 240, 141, 201, 98, + 86, 255, 255, 27, 255, 93, 83, 120, 5, 173, 227, 140, 216, 102, 159, 27, 58, 136, 29, 223, 3, 1, 135, 230, 128, + 255, 75, 227, 97, 44, 207, 197, 236, 159, 74, 57, 189, 233, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2408, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3764810494349952538" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8077559076687092953" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "116542fb8a7c18a671" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11605674438773894425" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47f011da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4117226678070383934" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a726107dab714bd42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1450590d9c242449c579" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df2e01995b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12910395442643204065" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "57e178215670734909fbdd7a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ee1a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10611417626333075095" + } + }, + { + "_tag": "ByteArray", + "bytearray": "635bbe6bf9fc9e7e3a71" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13861578654679950281" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1287410020467322048" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2073104001946497462" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9763897430467928771" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4394714951895460587" + } + } + ] + }, + "cborHex": "d8669f1b343f4b32a264461a9fd8669f1b7019412efa2a9cd99fbf49116542fb8a7c18a6711ba10fa3699df2ed194447f011da1b392353d98625953e495a726107dab714bd424a1450590d9c242449c57945df2e01995b1bb32af040bc91f7e1ffa04c57e178215670734909fbdd7a9f42ee1a1b9343541c04e6d6974a635bbe6bf9fc9e7e3a711bc05e38583a55e3c9ff1b11ddcc97b63bacc0ffffd8669f1b1cc5251b227631b680ff1b878054fb4e63e2c31b3cfd29f6ecd3aaebffff", + "cborBytes": [ + 216, 102, 159, 27, 52, 63, 75, 50, 162, 100, 70, 26, 159, 216, 102, 159, 27, 112, 25, 65, 46, 250, 42, 156, 217, + 159, 191, 73, 17, 101, 66, 251, 138, 124, 24, 166, 113, 27, 161, 15, 163, 105, 157, 242, 237, 25, 68, 71, 240, 17, + 218, 27, 57, 35, 83, 217, 134, 37, 149, 62, 73, 90, 114, 97, 7, 218, 183, 20, 189, 66, 74, 20, 80, 89, 13, 156, + 36, 36, 73, 197, 121, 69, 223, 46, 1, 153, 91, 27, 179, 42, 240, 64, 188, 145, 247, 225, 255, 160, 76, 87, 225, + 120, 33, 86, 112, 115, 73, 9, 251, 221, 122, 159, 66, 238, 26, 27, 147, 67, 84, 28, 4, 230, 214, 151, 74, 99, 91, + 190, 107, 249, 252, 158, 126, 58, 113, 27, 192, 94, 56, 88, 58, 85, 227, 201, 255, 27, 17, 221, 204, 151, 182, 59, + 172, 192, 255, 255, 216, 102, 159, 27, 28, 197, 37, 27, 34, 118, 49, 182, 128, 255, 27, 135, 128, 84, 251, 78, 99, + 226, 195, 27, 60, 253, 41, 246, 236, 211, 170, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2409, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15498127093613523694" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0320" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bd714687aa2b0f2ee9f420320a0ffff", + "cborBytes": [216, 102, 159, 27, 215, 20, 104, 122, 162, 176, 242, 238, 159, 66, 3, 32, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2410, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d8d779" + }, + { + "_tag": "ByteArray", + "bytearray": "0eccccd05a4eefd0b5f25779" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18405591479525585850" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5900e80e66f6729edd01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8597671420512960226" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80d78e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11469088835081903798" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c95c9a6f0324c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2aee8f7c7647fb7ce7fcb94d" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "456640803505759820" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f94fd3" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "550840351591224996" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f305" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3689021604580152626" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2099746943231482455" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14849464417342367655" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd70711a61421ec62bc886c4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15966306103702806741" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "912147680c23b99d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9653919371339729594" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6299870375067476237" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13747707236714801526" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905079f43d8d7794c0eccccd05a4eefd0b5f257791bff6dcbef021433babf4a5900e80e66f6729edd011b7751109ac333fee24380d78e1b9f2a638798749eb647c95c9a6f0324c54c2aee8f7c7647fb7ce7fcb94dffd8669f1b0656506432e8e64c9f43f94fd3bf1b07a4fa619c8bd6a442f3051b3332099aa5bdd5321b1d23ccb84d865a571bce13e536347ea7a74ccd70711a61421ec62bc886c41bdd93b6cee65b60d548912147680c23b99dffbf1b85f99c8502f78aba1b576da2ba5ce7610d41a71bbec9aae4b073e976ffffffff", + "cborBytes": [ + 217, 5, 7, 159, 67, 216, 215, 121, 76, 14, 204, 204, 208, 90, 78, 239, 208, 181, 242, 87, 121, 27, 255, 109, 203, + 239, 2, 20, 51, 186, 191, 74, 89, 0, 232, 14, 102, 246, 114, 158, 221, 1, 27, 119, 81, 16, 154, 195, 51, 254, 226, + 67, 128, 215, 142, 27, 159, 42, 99, 135, 152, 116, 158, 182, 71, 201, 92, 154, 111, 3, 36, 197, 76, 42, 238, 143, + 124, 118, 71, 251, 124, 231, 252, 185, 77, 255, 216, 102, 159, 27, 6, 86, 80, 100, 50, 232, 230, 76, 159, 67, 249, + 79, 211, 191, 27, 7, 164, 250, 97, 156, 139, 214, 164, 66, 243, 5, 27, 51, 50, 9, 154, 165, 189, 213, 50, 27, 29, + 35, 204, 184, 77, 134, 90, 87, 27, 206, 19, 229, 54, 52, 126, 167, 167, 76, 205, 112, 113, 26, 97, 66, 30, 198, + 43, 200, 134, 196, 27, 221, 147, 182, 206, 230, 91, 96, 213, 72, 145, 33, 71, 104, 12, 35, 185, 157, 255, 191, 27, + 133, 249, 156, 133, 2, 247, 138, 186, 27, 87, 109, 162, 186, 92, 231, 97, 13, 65, 167, 27, 190, 201, 170, 228, + 176, 115, 233, 118, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2411, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12383854536006925978" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1babdc4a1688cd7e9a9f0980d905088080ffff", + "cborBytes": [216, 102, 159, 27, 171, 220, 74, 22, 136, 205, 126, 154, 159, 9, 128, 217, 5, 8, 128, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2412, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02f8d5ff06f90702" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5440498286759927726" + } + } + ] + }, + "cborHex": "d905019f9f4802f8d5ff06f90702d87980ff1b4b80885de7725faeff", + "cborBytes": [ + 217, 5, 1, 159, 159, 72, 2, 248, 213, 255, 6, 249, 7, 2, 216, 121, 128, 255, 27, 75, 128, 136, 93, 231, 114, 95, + 174, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2413, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3360985772540635531" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "435a50978fcb94" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c201" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17857058015207885923" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9087371926026186182" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74f473d70161" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "70359744808243302" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52f1bbfacc1b5225d05ab19b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5580842803857414810" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "457d2c2a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9209194572343622035" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65cb55237a5e2adb828c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11628389640173385163" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9019675216502121648" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2ea49ec0bb6d298b9f47435a50978fcb94bf42c2011bf7d103a772020c63ff1b7e1cd49ea8a5edc64674f473d70161bf1b00f9f7d0abc850664c52f1bbfacc1b5225d05ab19b1b4d7322f627375a9a44457d2c2a1b7fcda1abcfff39934a65cb55237a5e2adb828c1ba16056c4945df5cb1b7d2c52d23500e4b0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 46, 164, 158, 192, 187, 109, 41, 139, 159, 71, 67, 90, 80, 151, 143, 203, 148, 191, 66, 194, 1, + 27, 247, 209, 3, 167, 114, 2, 12, 99, 255, 27, 126, 28, 212, 158, 168, 165, 237, 198, 70, 116, 244, 115, 215, 1, + 97, 191, 27, 0, 249, 247, 208, 171, 200, 80, 102, 76, 82, 241, 187, 250, 204, 27, 82, 37, 208, 90, 177, 155, 27, + 77, 115, 34, 246, 39, 55, 90, 154, 68, 69, 125, 44, 42, 27, 127, 205, 161, 171, 207, 255, 57, 147, 74, 101, 203, + 85, 35, 122, 94, 42, 219, 130, 140, 27, 161, 96, 86, 196, 148, 93, 245, 203, 27, 125, 44, 82, 210, 53, 0, 228, + 176, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2414, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9463214795378937971" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9fb540" + } + ] + }, + "cborHex": "d8669f1b835417b7d7c850739f439fb540ffff", + "cborBytes": [216, 102, 159, 27, 131, 84, 23, 183, 215, 200, 80, 115, 159, 67, 159, 181, 64, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2415, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10142220155498221598" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13249682950800383071" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5020559980934289734" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10107792053685636554" + } + }, + { + "_tag": "ByteArray", + "bytearray": "65844151c6bfc8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17994971822696179407" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9fd8669f1b8cc0677ee247501e9fd8669f1bb7e05471a5019c5f9f1b45ac9cb3dd215946ffffffff1b8c461751c772cdca4765844151c6bfc81bf9bafb8802f826cfffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 216, 102, 159, 27, 140, 192, 103, 126, 226, 71, + 80, 30, 159, 216, 102, 159, 27, 183, 224, 84, 113, 165, 1, 156, 95, 159, 27, 69, 172, 156, 179, 221, 33, 89, 70, + 255, 255, 255, 255, 27, 140, 70, 23, 81, 199, 114, 205, 202, 71, 101, 132, 65, 81, 198, 191, 200, 27, 249, 186, + 251, 136, 2, 248, 38, 207, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2416, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18327999577493704742" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8838389726945903881" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfe5a2282840590269fd87f9f1b7aa844a0fd128509ffffff", + "cborBytes": [ + 216, 102, 159, 27, 254, 90, 34, 130, 132, 5, 144, 38, 159, 216, 127, 159, 27, 122, 168, 68, 160, 253, 18, 133, 9, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2417, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9742924789154310055" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12379118931693261160" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8287296967750321217" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11860507756399360383" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aa62f4ab870956020d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13614998429476162247" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "84211e" + }, + { + "_tag": "ByteArray", + "bytearray": "851de90451ff39" + }, + { + "_tag": "ByteArray", + "bytearray": "83c535a2ef2a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11885346042230891828" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3407701923085710490" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6271066701753878698" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "871229571160299917" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16550119883930703396" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16953303651691041304" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11741906331570593561" + } + }, + { + "_tag": "ByteArray", + "bytearray": "324b8cdd65efd9e7fbfc" + }, + { + "_tag": "ByteArray", + "bytearray": "381929827405d714a941bd" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bb64e1a21d79789d09e5f5b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6710474813081209978" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15462565666342977838" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f4dfa47b1f1bafc555b008" + }, + { + "_tag": "ByteArray", + "bytearray": "7089e65d2a83d866" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3615531408882969637" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10003765980293907080" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "58dc7b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2b1a5840a8af7a0559ee" + } + ] + }, + "cborHex": "d8669f1b8735d279bae3e7a79f9fd8669f1babcb7714bbe3d1689f1b730264af26ee04411ba498fcf6fbf2f97f49aa62f4ab870956020d1bbcf230efae6d8ac7ffff9f4384211e47851de90451ff394683c535a2ef2aff1ba4f13b410fc46534bf1b2f4a96d821f0749a1b57074df090d208aaffff1b0c173aadd2d3598dd8669f1be5add6591fd196249fd8669f1beb463bd9486092189f1ba2f3a198e72cdf194a324b8cdd65efd9e7fbfc4b381929827405d714a941bdffffbf4c7bb64e1a21d79789d09e5f5b1b5d206549f3e94c7affffff9f9f1bd696118ca286412e4bf4dfa47b1f1bafc555b008487089e65d2a83d8661b322cf2a914bcac251b8ad48428278e4288ff4358dc7bff4a2b1a5840a8af7a0559eeffff", + "cborBytes": [ + 216, 102, 159, 27, 135, 53, 210, 121, 186, 227, 231, 167, 159, 159, 216, 102, 159, 27, 171, 203, 119, 20, 187, + 227, 209, 104, 159, 27, 115, 2, 100, 175, 38, 238, 4, 65, 27, 164, 152, 252, 246, 251, 242, 249, 127, 73, 170, 98, + 244, 171, 135, 9, 86, 2, 13, 27, 188, 242, 48, 239, 174, 109, 138, 199, 255, 255, 159, 67, 132, 33, 30, 71, 133, + 29, 233, 4, 81, 255, 57, 70, 131, 197, 53, 162, 239, 42, 255, 27, 164, 241, 59, 65, 15, 196, 101, 52, 191, 27, 47, + 74, 150, 216, 33, 240, 116, 154, 27, 87, 7, 77, 240, 144, 210, 8, 170, 255, 255, 27, 12, 23, 58, 173, 210, 211, + 89, 141, 216, 102, 159, 27, 229, 173, 214, 89, 31, 209, 150, 36, 159, 216, 102, 159, 27, 235, 70, 59, 217, 72, 96, + 146, 24, 159, 27, 162, 243, 161, 152, 231, 44, 223, 25, 74, 50, 75, 140, 221, 101, 239, 217, 231, 251, 252, 75, + 56, 25, 41, 130, 116, 5, 215, 20, 169, 65, 189, 255, 255, 191, 76, 123, 182, 78, 26, 33, 215, 151, 137, 208, 158, + 95, 91, 27, 93, 32, 101, 73, 243, 233, 76, 122, 255, 255, 255, 159, 159, 27, 214, 150, 17, 140, 162, 134, 65, 46, + 75, 244, 223, 164, 123, 31, 27, 175, 197, 85, 176, 8, 72, 112, 137, 230, 93, 42, 131, 216, 102, 27, 50, 44, 242, + 169, 20, 188, 172, 37, 27, 138, 212, 132, 40, 39, 142, 66, 136, 255, 67, 88, 220, 123, 255, 74, 43, 26, 88, 64, + 168, 175, 122, 5, 89, 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2418, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [] + } + ] + }, + "cborHex": "d87a9fd8669f1bffffffffffffffed80ffff", + "cborBytes": [216, 122, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2419, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13265117331708735047" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10660929087122859200" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f04c7a71" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "351633964764143664" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15100965170209868737" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15816695132881866575" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c89026" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14183141636512289342" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b88b5ad22a452" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10431379791025338734" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bb81729ee7c606e479fd8669f1b93f33a854d9664c080ff44f04c7a71d8669f1b04e1413a58baa03080ffd8669f1bd19167d05fe7cbc19fd8669f1bdb80306c4412cf4f9f43c890261bc4d4a42c435e123e478b88b5ad22a4521b90c3b4a6f140f96effffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 184, 23, 41, 238, 124, 96, 110, 71, 159, 216, 102, 159, 27, 147, 243, 58, 133, 77, 150, 100, + 192, 128, 255, 68, 240, 76, 122, 113, 216, 102, 159, 27, 4, 225, 65, 58, 88, 186, 160, 48, 128, 255, 216, 102, + 159, 27, 209, 145, 103, 208, 95, 231, 203, 193, 159, 216, 102, 159, 27, 219, 128, 48, 108, 68, 18, 207, 79, 159, + 67, 200, 144, 38, 27, 196, 212, 164, 44, 67, 94, 18, 62, 71, 139, 136, 181, 173, 34, 164, 82, 27, 144, 195, 180, + 166, 241, 64, 249, 110, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2420, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4859088046500735049" + }, + "fields": [] + }, + "cborHex": "d8669f1b436ef2d57005e84980ff", + "cborBytes": [216, 102, 159, 27, 67, 110, 242, 213, 112, 5, 232, 73, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2421, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7201676924014894664" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4477285487631504778" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11053908919091522172" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b63f17f019b091e489fd8669f1b3e22836de849958a80ffd8669f1b99675f9885f8ea7c80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 99, 241, 127, 1, 155, 9, 30, 72, 159, 216, 102, 159, 27, 62, 34, 131, 109, 232, 73, 149, 138, + 128, 255, 216, 102, 159, 27, 153, 103, 95, 152, 133, 248, 234, 124, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2422, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3354791250806399794" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4886905919305219350" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b2e8e9cde3fe763329f1b43d1c70aaaf0fd16a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 46, 142, 156, 222, 63, 231, 99, 50, 159, 27, 67, 209, 199, 10, 170, 240, 253, 22, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2423, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14203604015469135488" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3166215885669671687" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0e1c996a11d71c220fd71" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aeb0a13b050606974b0406f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3050018337b6e8a4ca44246" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbfd4ffbfb04a6fcfb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2908542930343886973" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "420c4f63" + } + ] + } + ] + }, + "cborHex": "d8669f1bc51d5699205986809fd8669f1b2bf0a8929b8a23079fbf4ba0e1c996a11d71c220fd7141de4caeb0a13b050606974b0406f841f74ce3050018337b6e8a4ca4424641fd49fbfd4ffbfb04a6fcfb1b285d3862911f007dff44420c4f63ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 197, 29, 86, 153, 32, 89, 134, 128, 159, 216, 102, 159, 27, 43, 240, 168, 146, 155, 138, 35, 7, + 159, 191, 75, 160, 225, 201, 150, 161, 29, 113, 194, 32, 253, 113, 65, 222, 76, 174, 176, 161, 59, 5, 6, 6, 151, + 75, 4, 6, 248, 65, 247, 76, 227, 5, 0, 24, 51, 123, 110, 138, 76, 164, 66, 70, 65, 253, 73, 251, 253, 79, 251, + 251, 4, 166, 252, 251, 27, 40, 93, 56, 98, 145, 31, 0, 125, 255, 68, 66, 12, 79, 99, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2424, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6957886066692220007" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2867288027040968884" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f13c0b544af8a8f1cb87ce74" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12483516575405021126" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0b985035b714398f617816" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17514591394388786785" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d9e2449177e68b6516270c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4315876111899349268" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6410996198440191572" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "04da690be630f9877ae48f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16034198153459293989" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6535920109642679273" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17940888949312082268" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7038825172710305122" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "694660ea6ab25dd0ed36" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7230279564286687586" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b608f608360d464679fd8669f1b27caa744e081f0b49f4cf13c0b544af8a8f1cb87ce74d8669f1bad3e5c2f50b797c69f4b0b985035b714398f6178161bf3105413b0a83e614bd9e2449177e68b6516270c1b3be51275105ad1141b58f86f1358684654ffff4b04da690be630f9877ae48fffff1bde84ea448b2a5f25bf1b5ab440b5ff9583e91bf8fad771ca7a515c1b61aeee338779ad624a694660ea6ab25dd0ed361b64571cf4c012f96241e7ffffff", + "cborBytes": [ + 216, 102, 159, 27, 96, 143, 96, 131, 96, 212, 100, 103, 159, 216, 102, 159, 27, 39, 202, 167, 68, 224, 129, 240, + 180, 159, 76, 241, 60, 11, 84, 74, 248, 168, 241, 203, 135, 206, 116, 216, 102, 159, 27, 173, 62, 92, 47, 80, 183, + 151, 198, 159, 75, 11, 152, 80, 53, 183, 20, 57, 143, 97, 120, 22, 27, 243, 16, 84, 19, 176, 168, 62, 97, 75, 217, + 226, 68, 145, 119, 230, 139, 101, 22, 39, 12, 27, 59, 229, 18, 117, 16, 90, 209, 20, 27, 88, 248, 111, 19, 88, + 104, 70, 84, 255, 255, 75, 4, 218, 105, 11, 230, 48, 249, 135, 122, 228, 143, 255, 255, 27, 222, 132, 234, 68, + 139, 42, 95, 37, 191, 27, 90, 180, 64, 181, 255, 149, 131, 233, 27, 248, 250, 215, 113, 202, 122, 81, 92, 27, 97, + 174, 238, 51, 135, 121, 173, 98, 74, 105, 70, 96, 234, 106, 178, 93, 208, 237, 54, 27, 100, 87, 28, 244, 192, 18, + 249, 98, 65, 231, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2425, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5562257927484712899" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0001ff" + } + ] + }, + "cborHex": "d8669f1b4d311c1d6cd3a7c39f430001ffffff", + "cborBytes": [216, 102, 159, 27, 77, 49, 28, 29, 108, 211, 167, 195, 159, 67, 0, 1, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2426, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "45aa9ba3b5c3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1001597405600089861" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8336335745367613900" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17325995601865864397" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9555134134525841393" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "94630040982696113" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3315384366241767651" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8421623898383996777" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2644559947007206160" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9386455882989865339" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2246432387127208659" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13385039964167780735" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ac563d1208db27161" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14397585264293713032" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7c209b0cdad52e85dc6012" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14250583625586594789" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5317580454296109719" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17042725807629352690" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "499238779085542604" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06a3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5b2c16fd0" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10610356709302987492" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3338406166410978954" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b26c70d9f75cc608ab33f82a" + } + ] + }, + "cborHex": "d9050c9f4645aa9ba3b5c3d8669f1b0de66388a0bf07059fd8669f1b73b09d314f0721cc9f1bf0724d33ed31f4cdffff1b849aa7debd9f4ff1bf1b0150318559dab0b11b2e029c83f3b960e31b74df9e50df1e57691b24b35d42a49723101b824363e4dd7c897b1b1f2cee5a9ea66ad31bb9c136ee30a0b97f492ac563d1208db27161ff1bc7ce7f8425a01488ffff9f4b7c209b0cdad52e85dc6012bf1bc5c43e4dfd1653e51b49cbd73fdae142971bec83ecd368213ef21b06eda706457e54cc4206a345d5b2c16fd0ffd8669f1b933f8f36062feae49f1b2e5466b880e6668affffff4cb26c70d9f75cc608ab33f82aff", + "cborBytes": [ + 217, 5, 12, 159, 70, 69, 170, 155, 163, 181, 195, 216, 102, 159, 27, 13, 230, 99, 136, 160, 191, 7, 5, 159, 216, + 102, 159, 27, 115, 176, 157, 49, 79, 7, 33, 204, 159, 27, 240, 114, 77, 51, 237, 49, 244, 205, 255, 255, 27, 132, + 154, 167, 222, 189, 159, 79, 241, 191, 27, 1, 80, 49, 133, 89, 218, 176, 177, 27, 46, 2, 156, 131, 243, 185, 96, + 227, 27, 116, 223, 158, 80, 223, 30, 87, 105, 27, 36, 179, 93, 66, 164, 151, 35, 16, 27, 130, 67, 99, 228, 221, + 124, 137, 123, 27, 31, 44, 238, 90, 158, 166, 106, 211, 27, 185, 193, 54, 238, 48, 160, 185, 127, 73, 42, 197, 99, + 209, 32, 141, 178, 113, 97, 255, 27, 199, 206, 127, 132, 37, 160, 20, 136, 255, 255, 159, 75, 124, 32, 155, 12, + 218, 213, 46, 133, 220, 96, 18, 191, 27, 197, 196, 62, 77, 253, 22, 83, 229, 27, 73, 203, 215, 63, 218, 225, 66, + 151, 27, 236, 131, 236, 211, 104, 33, 62, 242, 27, 6, 237, 167, 6, 69, 126, 84, 204, 66, 6, 163, 69, 213, 178, + 193, 111, 208, 255, 216, 102, 159, 27, 147, 63, 143, 54, 6, 47, 234, 228, 159, 27, 46, 84, 102, 184, 128, 230, + 102, 138, 255, 255, 255, 76, 178, 108, 112, 217, 247, 92, 198, 8, 171, 51, 248, 42, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2427, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9751837692421798077" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11461793271994579617" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4781446384285041450" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02b9e113eab823a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75d4f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11988725032244434038" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "983760979369c0c7f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a459" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c435" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10380462988140035298" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c71ae3b9cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11567155190573294466" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c3f9a45cebee4b8856bd14cf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17879336802124838018" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15068433780348720911" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3804e2e1b4ea1b94" + }, + { + "_tag": "ByteArray", + "bytearray": "44bda1ebcb5e9a108304" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3843065368870471918" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13883935249841064217" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6464065688736828806" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15967915054239152414" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15891636374669355300" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4157e192980d33" + }, + { + "_tag": "ByteArray", + "bytearray": "02c7a7cdda70d7d4" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6003509972153455363" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6c898c07afb1" + }, + { + "_tag": "ByteArray", + "bytearray": "9155" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12197806543897172177" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a4a54b23c345964a00" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b87557cb6bc10f8bd9f1b9f107840f232faa11b425b1c273fe2c32a9fbf4802b9e113eab823a541164375d4f11ba66081e5d8c3547649983760979369c0c7f042a45942c4351b900ed016f42d3ce245c71ae3b9cc412affd8669f1ba086ca5c43efe3829f4cc3f9a45cebee4b8856bd14cf1bf8202a17be3834821bd11dd4afef2e970fffff483804e2e1b4ea1b944a44bda1ebcb5e9a108304ffd8669f1b35554f97702148ee80ffd8669f1bc0ada58cab4d09199f1b59b4f97eedf30d861bdd996e23e389791ed8669f1bdc8a6f15d3d7e9249f474157e192980d334802c7a7cdda70d7d4ffff9f1b5350c082ffb8d303ff9f466c898c07afb14291551ba947506cc7ed18d149a4a54b23c345964a00ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 135, 85, 124, 182, 188, 16, 248, 189, 159, 27, 159, 16, 120, 64, 242, 50, 250, 161, 27, 66, 91, + 28, 39, 63, 226, 195, 42, 159, 191, 72, 2, 185, 225, 19, 234, 184, 35, 165, 65, 22, 67, 117, 212, 241, 27, 166, + 96, 129, 229, 216, 195, 84, 118, 73, 152, 55, 96, 151, 147, 105, 192, 199, 240, 66, 164, 89, 66, 196, 53, 27, 144, + 14, 208, 22, 244, 45, 60, 226, 69, 199, 26, 227, 185, 204, 65, 42, 255, 216, 102, 159, 27, 160, 134, 202, 92, 67, + 239, 227, 130, 159, 76, 195, 249, 164, 92, 235, 238, 75, 136, 86, 189, 20, 207, 27, 248, 32, 42, 23, 190, 56, 52, + 130, 27, 209, 29, 212, 175, 239, 46, 151, 15, 255, 255, 72, 56, 4, 226, 225, 180, 234, 27, 148, 74, 68, 189, 161, + 235, 203, 94, 154, 16, 131, 4, 255, 216, 102, 159, 27, 53, 85, 79, 151, 112, 33, 72, 238, 128, 255, 216, 102, 159, + 27, 192, 173, 165, 140, 171, 77, 9, 25, 159, 27, 89, 180, 249, 126, 237, 243, 13, 134, 27, 221, 153, 110, 35, 227, + 137, 121, 30, 216, 102, 159, 27, 220, 138, 111, 21, 211, 215, 233, 36, 159, 71, 65, 87, 225, 146, 152, 13, 51, 72, + 2, 199, 167, 205, 218, 112, 215, 212, 255, 255, 159, 27, 83, 80, 192, 130, 255, 184, 211, 3, 255, 159, 70, 108, + 137, 140, 7, 175, 177, 66, 145, 85, 27, 169, 71, 80, 108, 199, 237, 24, 209, 73, 164, 165, 75, 35, 195, 69, 150, + 74, 0, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2428, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11442765283743072938" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12842553680377659644" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8250936295727516590" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "08" + }, + { + "_tag": "ByteArray", + "bytearray": "8efbc581ffbbf85f" + }, + { + "_tag": "ByteArray", + "bytearray": "fbaf43a097f763c6e036f106" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13414855540000748004" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02ffdb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03075e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0701fbfa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b9eccde6631ad82aa9f1bfffffffffffffffb1bffffffffffffffedd9050d9fa01bb239ea878fcbc0fcff9fd8669f1b728136d87b374bae9f4108488efbc581ffbbf85f4cfbaf43a097f763c6e036f1061bba2b2409e6ecf1e4ffffffbf07044302ffdb4303075e440701fbfa10ffffff", + "cborBytes": [ + 216, 102, 159, 27, 158, 204, 222, 102, 49, 173, 130, 170, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 27, + 255, 255, 255, 255, 255, 255, 255, 237, 217, 5, 13, 159, 160, 27, 178, 57, 234, 135, 143, 203, 192, 252, 255, 159, + 216, 102, 159, 27, 114, 129, 54, 216, 123, 55, 75, 174, 159, 65, 8, 72, 142, 251, 197, 129, 255, 187, 248, 95, 76, + 251, 175, 67, 160, 151, 247, 99, 198, 224, 54, 241, 6, 27, 186, 43, 36, 9, 230, 236, 241, 228, 255, 255, 255, 191, + 7, 4, 67, 2, 255, 219, 67, 3, 7, 94, 68, 7, 1, 251, 250, 16, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2429, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8024085940876117330" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4211693310362824894" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12153447511731032264" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f727cf9b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3e5f3de0494d20d4efdf340c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22a895134be532ae244c4c73" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4556044036116777135" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24d5a69792b68bd00a86f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "793796f2fadc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29125f082b7d0f2c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18123182762251375252" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3dc33b9fe8b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9eb4aecb2fb6855aa81c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "639c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1508806799901596945" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15228113622380072929" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00b406" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + ] + }, + "cborHex": "d8669f1b6f5b47a6592085529fd905039f1b3a72f0c05310b0be9f1ba8a9b81ec51550c844f727cf9bff4c3e5f3de0494d20d4efdf340cffbf4c22a895134be532ae244c4c731b3f3a51e971c708af4b24d5a69792b68bd00a86f846793796f2fadc4829125f082b7d0f2c1bfb827ab39779d294463dc33b9fe8b74a9eb4aecb2fb6855aa81c42639c1b14f05bca5ed41d11ff1bd35520a855404fe14300b4061bfffffffffffffff2ffff", + "cborBytes": [ + 216, 102, 159, 27, 111, 91, 71, 166, 89, 32, 133, 82, 159, 217, 5, 3, 159, 27, 58, 114, 240, 192, 83, 16, 176, + 190, 159, 27, 168, 169, 184, 30, 197, 21, 80, 200, 68, 247, 39, 207, 155, 255, 76, 62, 95, 61, 224, 73, 77, 32, + 212, 239, 223, 52, 12, 255, 191, 76, 34, 168, 149, 19, 75, 229, 50, 174, 36, 76, 76, 115, 27, 63, 58, 81, 233, + 113, 199, 8, 175, 75, 36, 213, 166, 151, 146, 182, 139, 208, 10, 134, 248, 70, 121, 55, 150, 242, 250, 220, 72, + 41, 18, 95, 8, 43, 125, 15, 44, 27, 251, 130, 122, 179, 151, 121, 210, 148, 70, 61, 195, 59, 159, 232, 183, 74, + 158, 180, 174, 203, 47, 182, 133, 90, 168, 28, 66, 99, 156, 27, 20, 240, 91, 202, 94, 212, 29, 17, 255, 27, 211, + 85, 32, 168, 85, 64, 79, 225, 67, 0, 180, 6, 27, 255, 255, 255, 255, 255, 255, 255, 242, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2430, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4976763581687995405" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb541324e1457a2e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9705590767602215447" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10619418263900610511" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15506376557026238211" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0159a76e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15709241130945576060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13055815386205343235" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16171639328279944038" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee22" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99fbf1b4511041c099d1c0d48eb541324e1457a2e1b86b12f61763daa171b935fc0a59d175fcf1bd731b75282fe5f03440159a76e1bda026f93d4f77c7c1bb52f92ebcbd94e031be06d3449bddcdb6642ee22ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 191, 27, 69, 17, 4, 28, 9, 157, 28, 13, 72, 235, + 84, 19, 36, 225, 69, 122, 46, 27, 134, 177, 47, 97, 118, 61, 170, 23, 27, 147, 95, 192, 165, 157, 23, 95, 207, 27, + 215, 49, 183, 82, 130, 254, 95, 3, 68, 1, 89, 167, 110, 27, 218, 2, 111, 147, 212, 247, 124, 124, 27, 181, 47, + 146, 235, 203, 217, 78, 3, 27, 224, 109, 52, 73, 189, 220, 219, 102, 66, 238, 34, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2431, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9824131974853307017" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1302c800" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0724cbf901d107380098" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dabfe6948f76406292b6ee8b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7434587295204204713" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b885653fb0bb02a899fbf441302c8004a0724cbf901d1073800984cdabfe6948f76406292b6ee8b1b672cf5c13e4760a9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 136, 86, 83, 251, 11, 176, 42, 137, 159, 191, 68, 19, 2, 200, 0, 74, 7, 36, 203, 249, 1, 209, + 7, 56, 0, 152, 76, 218, 191, 230, 148, 143, 118, 64, 98, 146, 182, 238, 139, 27, 103, 44, 245, 193, 62, 71, 96, + 169, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2432, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6377326270478956373" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13387576188140194543" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "466210157926893689" + } + } + ] + }, + "cborHex": "d8669f1b5880d07458aa37559f1bb9ca399cd9930aef1b06784fab25e94879ffff", + "cborBytes": [ + 216, 102, 159, 27, 88, 128, 208, 116, 88, 170, 55, 85, 159, 27, 185, 202, 57, 156, 217, 147, 10, 239, 27, 6, 120, + 79, 171, 37, 233, 72, 121, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2433, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17859388570130726603" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3306340782679994393" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1971" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8057507187380573980" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15301551268733143673" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5223873102609602218" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cabf1f595536357feda9984" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3395058520509808865" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1ef138b820584568" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8973434686224644509" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b9a61004619abb2b3ff" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2385458992256596472" + } + }, + { + "_tag": "ByteArray", + "bytearray": "11d4295c212dd89f19389984" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9265256022602420615" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7cec7fe768e43928f4fb6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11350733488537221119" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87e9fd8669f1bf7d94b480c503ecb9fbf1b2de27b6c920730194219711b6fd20418aef9d71c1bd45a07cecd444a79420c641b487eece8d8c356aa4c1cabf1f595536357feda99841b2f1dabbc92a680e1ff9f481ef138b8205845681b7c880b4dc796b99d4a4b9a61004619abb2b3ffffa09f1b211ada5093b739f84c11d4295c212dd89f193899841b8094cd435c4411874bd7cec7fe768e43928f4fb61b9d85e7f8146437ffffffffff", + "cborBytes": [ + 216, 126, 159, 216, 102, 159, 27, 247, 217, 75, 72, 12, 80, 62, 203, 159, 191, 27, 45, 226, 123, 108, 146, 7, 48, + 25, 66, 25, 113, 27, 111, 210, 4, 24, 174, 249, 215, 28, 27, 212, 90, 7, 206, 205, 68, 74, 121, 66, 12, 100, 27, + 72, 126, 236, 232, 216, 195, 86, 170, 76, 28, 171, 241, 245, 149, 83, 99, 87, 254, 218, 153, 132, 27, 47, 29, 171, + 188, 146, 166, 128, 225, 255, 159, 72, 30, 241, 56, 184, 32, 88, 69, 104, 27, 124, 136, 11, 77, 199, 150, 185, + 157, 74, 75, 154, 97, 0, 70, 25, 171, 178, 179, 255, 255, 160, 159, 27, 33, 26, 218, 80, 147, 183, 57, 248, 76, + 17, 212, 41, 92, 33, 45, 216, 159, 25, 56, 153, 132, 27, 128, 148, 205, 67, 92, 68, 17, 135, 75, 215, 206, 199, + 254, 118, 142, 67, 146, 143, 79, 182, 27, 157, 133, 231, 248, 20, 100, 55, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2434, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "859618073244488832" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "91" + }, + { + "_tag": "ByteArray", + "bytearray": "5d2295bce58bd2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "34864983575002342" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06e37c60fee0e486df" + }, + { + "_tag": "ByteArray", + "bytearray": "c64b0ac724c4" + } + ] + }, + "cborHex": "d8669f1b0bedfa154a3e54809f4191475d2295bce58bd21b007bdd8491167ce64906e37c60fee0e486df46c64b0ac724c4ffff", + "cborBytes": [ + 216, 102, 159, 27, 11, 237, 250, 21, 74, 62, 84, 128, 159, 65, 145, 71, 93, 34, 149, 188, 229, 139, 210, 27, 0, + 123, 221, 132, 145, 22, 124, 230, 73, 6, 227, 124, 96, 254, 224, 228, 134, 223, 70, 198, 75, 10, 199, 36, 196, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2435, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5003164611153911395" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14471075667516089815" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f2534" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3820156354965851990" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b456ecfb4b8a25e639f1bc8d396a6081865d7bf0b438f25341b3503ebf6fc30cf560bffffff", + "cborBytes": [ + 216, 102, 159, 27, 69, 110, 207, 180, 184, 162, 94, 99, 159, 27, 200, 211, 150, 166, 8, 24, 101, 215, 191, 11, 67, + 143, 37, 52, 27, 53, 3, 235, 246, 252, 48, 207, 86, 11, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2436, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9850474013043946996" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e90014f2" + } + ] + }, + "cborHex": "d8669f1b88b3e9ecc0b375f49f44e90014f2ffff", + "cborBytes": [216, 102, 159, 27, 136, 179, 233, 236, 192, 179, 117, 244, 159, 68, 233, 0, 20, 242, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2437, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5556496884456414663" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71dfa6d0d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c4f477766b3685e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bd3b00fec03b68433" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18237402380342656715" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98244720b834c2237604df21" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe4c9275e9e03f7cb593" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14107415106364289228" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bf7459079d5ab544286b6f" + }, + { + "_tag": "ByteArray", + "bytearray": "bb747ccfa2ab1375d0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4800fda2e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76a044c741b1" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14924220246697191702" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb222a20319ddac623d34097" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6933866520722901026" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d21e694f7f7b52679f80" + }, + { + "_tag": "ByteArray", + "bytearray": "abbe548a56672d3daf7a8ac4" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11848904923024465994" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "94cf73b8175add373f60c9fe" + }, + { + "_tag": "ByteArray", + "bytearray": "7e982d2f9890f91c" + }, + { + "_tag": "ByteArray", + "bytearray": "aaab2db7246c143048ba" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16484598339608252009" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "57d5db7f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2457709019961189685" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f39cd043473a4e5a" + }, + { + "_tag": "ByteArray", + "bytearray": "86271c1bed59" + }, + { + "_tag": "ByteArray", + "bytearray": "94a3" + }, + { + "_tag": "ByteArray", + "bytearray": "a45c3d28a28f" + }, + { + "_tag": "ByteArray", + "bytearray": "564e7221c9ddffec1376" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8159732655268013306" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11422315846953915026" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11711641700684776367" + } + }, + { + "_tag": "ByteArray", + "bytearray": "82ef4e39" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79fbf414a1b4d1ca47a1196ddc74571dfa6d0d7482c4f477766b3685e497bd3b00fec03b684331bfd1844d6ca2ffecb4c98244720b834c2237604df214afe4c9275e9e03f7cb59342c3ee1bc3c79b4b81d2b0ccff9f4bbf7459079d5ab544286b6f49bb747ccfa2ab1375d0bf454800fda2e84676a044c741b1ff1bcf1d7b3e12142916ff9f4ccb222a20319ddac623d34097801b603a0add07a988229f4ad21e694f7f7b52679f804cabbe548a56672d3daf7a8ac4ffa0ff9fd8669f1ba46fc43fd240204a9f4c94cf73b8175add373f60c9fe487e982d2f9890f91c4aaaab2db7246c143048baffff9f1be4c50ed9c9580e69ff4457d5db7fd8669f1b221b8955080f65359f48f39cd043473a4e5a4686271c1bed594294a346a45c3d28a28f4a564e7221c9ddffec1376ffffffd8669f1b713d319e2b67a4fa9fd8669f1b9e8437beaa00d2929f1ba2881c1369f7c3af4482ef4e39ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 191, 65, 74, 27, 77, 28, 164, 122, 17, 150, 221, + 199, 69, 113, 223, 166, 208, 215, 72, 44, 79, 71, 119, 102, 179, 104, 94, 73, 123, 211, 176, 15, 236, 3, 182, 132, + 51, 27, 253, 24, 68, 214, 202, 47, 254, 203, 76, 152, 36, 71, 32, 184, 52, 194, 35, 118, 4, 223, 33, 74, 254, 76, + 146, 117, 233, 224, 63, 124, 181, 147, 66, 195, 238, 27, 195, 199, 155, 75, 129, 210, 176, 204, 255, 159, 75, 191, + 116, 89, 7, 157, 90, 181, 68, 40, 107, 111, 73, 187, 116, 124, 207, 162, 171, 19, 117, 208, 191, 69, 72, 0, 253, + 162, 232, 70, 118, 160, 68, 199, 65, 177, 255, 27, 207, 29, 123, 62, 18, 20, 41, 22, 255, 159, 76, 203, 34, 42, + 32, 49, 157, 218, 198, 35, 211, 64, 151, 128, 27, 96, 58, 10, 221, 7, 169, 136, 34, 159, 74, 210, 30, 105, 79, + 127, 123, 82, 103, 159, 128, 76, 171, 190, 84, 138, 86, 103, 45, 61, 175, 122, 138, 196, 255, 160, 255, 159, 216, + 102, 159, 27, 164, 111, 196, 63, 210, 64, 32, 74, 159, 76, 148, 207, 115, 184, 23, 90, 221, 55, 63, 96, 201, 254, + 72, 126, 152, 45, 47, 152, 144, 249, 28, 74, 170, 171, 45, 183, 36, 108, 20, 48, 72, 186, 255, 255, 159, 27, 228, + 197, 14, 217, 201, 88, 14, 105, 255, 68, 87, 213, 219, 127, 216, 102, 159, 27, 34, 27, 137, 85, 8, 15, 101, 53, + 159, 72, 243, 156, 208, 67, 71, 58, 78, 90, 70, 134, 39, 28, 27, 237, 89, 66, 148, 163, 70, 164, 92, 61, 40, 162, + 143, 74, 86, 78, 114, 33, 201, 221, 255, 236, 19, 118, 255, 255, 255, 216, 102, 159, 27, 113, 61, 49, 158, 43, + 103, 164, 250, 159, 216, 102, 159, 27, 158, 132, 55, 190, 170, 0, 210, 146, 159, 27, 162, 136, 28, 19, 105, 247, + 195, 175, 68, 130, 239, 78, 57, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2438, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7439329668932908238" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c68959" + } + ] + }, + "cborHex": "d8669f1b673dceeb2bc534ce9f43c68959ffff", + "cborBytes": [216, 102, 159, 27, 103, 61, 206, 235, 43, 197, 52, 206, 159, 67, 198, 137, 89, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2439, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8916609236683199689" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13668587207879939296" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2020801854298639376" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "19d7a6954a5e9f88e86477" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ea" + }, + { + "_tag": "ByteArray", + "bytearray": "a268324529e4fe724f0771a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12810517297119727799" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10455730141296544222" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16479890558133760559" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4651891165929838070" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "368210884142957101" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16621638967069524549" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6730209325086372501" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f466c6e4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9903195923996357664" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12397262633158258874" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12304169335071990551" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca0695" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17980116900371691043" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e40d62f3fb3" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905019f9fd8669f1b7bbe28dbc97814c99f1bbdb093a57321d4e0ffff1b1c0b54946eebcc10804b19d7a6954a5e9f88e864779f41ea4ca268324529e4fe724f0771a81bb1c8199bd3d190b71b911a372aab5349deffffd8669f1be4b45525fee0722f9f1b408ed65e5f0695f6bf1b051c25d927c6022d1be6abec9348f842451b5d6681b915cb729544f466c6e41b896f383936e634201bac0becae6c9f30ba1baac130d1e938631743ca06951bf986350ee2a6f623464e40d62f3fb3ffffffff", + "cborBytes": [ + 217, 5, 1, 159, 159, 216, 102, 159, 27, 123, 190, 40, 219, 201, 120, 20, 201, 159, 27, 189, 176, 147, 165, 115, + 33, 212, 224, 255, 255, 27, 28, 11, 84, 148, 110, 235, 204, 16, 128, 75, 25, 215, 166, 149, 74, 94, 159, 136, 232, + 100, 119, 159, 65, 234, 76, 162, 104, 50, 69, 41, 228, 254, 114, 79, 7, 113, 168, 27, 177, 200, 25, 155, 211, 209, + 144, 183, 27, 145, 26, 55, 42, 171, 83, 73, 222, 255, 255, 216, 102, 159, 27, 228, 180, 85, 37, 254, 224, 114, 47, + 159, 27, 64, 142, 214, 94, 95, 6, 149, 246, 191, 27, 5, 28, 37, 217, 39, 198, 2, 45, 27, 230, 171, 236, 147, 72, + 248, 66, 69, 27, 93, 102, 129, 185, 21, 203, 114, 149, 68, 244, 102, 198, 228, 27, 137, 111, 56, 57, 54, 230, 52, + 32, 27, 172, 11, 236, 174, 108, 159, 48, 186, 27, 170, 193, 48, 209, 233, 56, 99, 23, 67, 202, 6, 149, 27, 249, + 134, 53, 14, 226, 166, 246, 35, 70, 78, 64, 214, 47, 63, 179, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2440, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1871776211408503828" + }, + "fields": [] + }, + "cborHex": "d8669f1b19f9e28c1407c41480ff", + "cborBytes": [216, 102, 159, 27, 25, 249, 226, 140, 20, 7, 196, 20, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2441, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16512136620607755914" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "356fb9f226e57ac3ae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16002378307938852900" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3065233271362995866" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10962326188231568336" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13565208329480355286" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87d9fa09fd8669f1be526e4c57a0b568a9f49356fb9f226e57ac3ae1bde13de496e1ca0241b2a89e56b854cc69a1b9822019659812bd01bbc414d1aa6d8bdd6ffffffff", + "cborBytes": [ + 216, 125, 159, 160, 159, 216, 102, 159, 27, 229, 38, 228, 197, 122, 11, 86, 138, 159, 73, 53, 111, 185, 242, 38, + 229, 122, 195, 174, 27, 222, 19, 222, 73, 110, 28, 160, 36, 27, 42, 137, 229, 107, 133, 76, 198, 154, 27, 152, 34, + 1, 150, 89, 129, 43, 208, 27, 188, 65, 77, 26, 166, 216, 189, 214, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2442, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6807618419048920109" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "421402426987044333" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4780" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12733053740992523750" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17825753824065074876" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18134004668042021831" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5161e245d3ba" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14575656536252239462" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dc3951" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1117636361656074588" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13145473120019158460" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1b96b003273303e070" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4987755957099333810" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5e7984e241d1342d9fa01b05d91f46500cdded424780d8669f1bb0b4e4ea31d16de69fbf1bf761cca878f5b6bc41d81bfba8ed2ae1eb8bc7465161e245d3baff9f1bca472265036a4e6643dc39511b0f82a4597492015cffd8669f1bb66e1a27ab3015bc9f491b96b003273303e0701b4538119de13e88b24195ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 94, 121, 132, 226, 65, 209, 52, 45, 159, 160, 27, 5, 217, 31, 70, 80, 12, 221, 237, 66, 71, + 128, 216, 102, 159, 27, 176, 180, 228, 234, 49, 209, 109, 230, 159, 191, 27, 247, 97, 204, 168, 120, 245, 182, + 188, 65, 216, 27, 251, 168, 237, 42, 225, 235, 139, 199, 70, 81, 97, 226, 69, 211, 186, 255, 159, 27, 202, 71, 34, + 101, 3, 106, 78, 102, 67, 220, 57, 81, 27, 15, 130, 164, 89, 116, 146, 1, 92, 255, 216, 102, 159, 27, 182, 110, + 26, 39, 171, 48, 21, 188, 159, 73, 27, 150, 176, 3, 39, 51, 3, 224, 112, 27, 69, 56, 17, 157, 225, 62, 136, 178, + 65, 149, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2443, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1245270888515538058" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14232217549736584832" + } + } + ] + }, + "cborHex": "d8669f1b114817467f1a8c8a9f1bc582fe74ba212680ffff", + "cborBytes": [ + 216, 102, 159, 27, 17, 72, 23, 70, 127, 26, 140, 138, 159, 27, 197, 130, 254, 116, 186, 33, 38, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2444, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4199949138508053366" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfc70cf47343fe7374" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6983581588284371158" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3305758878349414800" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdc714d080be0568aa743453" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13871162027621596265" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8662185303277397071" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1736934986520812891" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c32b76322f07" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1109963127304094045" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10014141430781031464" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9fd8669f1b3a49377d3b7afb769fbf49bfc70cf47343fe73741b60eaaa7435a5f0d641d81b2de06a2f691c51904cfdc714d080be0568aa7434531bc080445f1e45bc69ff1b783643a39c75644f1b181ad52ae5855d5b46c32b76322f07d8669f1b0f6761955cbe015d9f1b8af96092f839b428ffffffff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 216, 102, 159, 27, 58, 73, 55, 125, 59, 122, 251, + 118, 159, 191, 73, 191, 199, 12, 244, 115, 67, 254, 115, 116, 27, 96, 234, 170, 116, 53, 165, 240, 214, 65, 216, + 27, 45, 224, 106, 47, 105, 28, 81, 144, 76, 253, 199, 20, 208, 128, 190, 5, 104, 170, 116, 52, 83, 27, 192, 128, + 68, 95, 30, 69, 188, 105, 255, 27, 120, 54, 67, 163, 156, 117, 100, 79, 27, 24, 26, 213, 42, 229, 133, 93, 91, 70, + 195, 43, 118, 50, 47, 7, 216, 102, 159, 27, 15, 103, 97, 149, 92, 190, 1, 93, 159, 27, 138, 249, 96, 146, 248, 57, + 180, 40, 255, 255, 255, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2445, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "ByteArray", + "bytearray": "759097e1fc07d564041c42" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c258" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14302224066336702079" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13174789639221713086" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3a8c9eb4e2e92c3c2" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18395822666351412668" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f104b759097e1fc07d564041c42d8669f1bfffffffffffffff59f42c2581bc67bb5030c0abe7fbf1bb6d6415fb44e98be49e3a8c9eb4e2e92c3c2ff80d8669f1bff4b173ff2f485bc80ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 16, 75, 117, 144, 151, 225, 252, 7, 213, 100, 4, + 28, 66, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 66, 194, 88, 27, 198, 123, 181, 3, 12, 10, + 190, 127, 191, 27, 182, 214, 65, 95, 180, 78, 152, 190, 73, 227, 168, 201, 235, 78, 46, 146, 195, 194, 255, 128, + 216, 102, 159, 27, 255, 75, 23, 63, 242, 244, 133, 188, 128, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2446, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5819006680291900184" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12648749977845195882" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2894293303570266513" + } + }, + { + "_tag": "ByteArray", + "bytearray": "636e99cdde57976be4c6ad" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b4b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3454826875025268886" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c64e578efd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3500456507729147406" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4563d0e941174dd03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd7a0b4d05" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2886166367361000694" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6e83be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6792532813135512379" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8872613421997490202" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b50c143becc6c7b189f1baf896316c231646ad8669f1bfffffffffffffffe9f9f1b282a986ccb18f9914b636e99cdde57976be4c6adffbf423b4b1b2ff202bd065aa09645c64e578efd1b30941ea5c6e6760e49e4563d0e941174dd0345bd7a0b4d05ff1b280db905013b64f69f436e83be1b5e43ec9aec20833b1b7b21dae5ef86001affffffffff", + "cborBytes": [ + 216, 102, 159, 27, 80, 193, 67, 190, 204, 108, 123, 24, 159, 27, 175, 137, 99, 22, 194, 49, 100, 106, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 159, 27, 40, 42, 152, 108, 203, 24, 249, 145, 75, 99, 110, + 153, 205, 222, 87, 151, 107, 228, 198, 173, 255, 191, 66, 59, 75, 27, 47, 242, 2, 189, 6, 90, 160, 150, 69, 198, + 78, 87, 142, 253, 27, 48, 148, 30, 165, 198, 230, 118, 14, 73, 228, 86, 61, 14, 148, 17, 116, 221, 3, 69, 189, + 122, 11, 77, 5, 255, 27, 40, 13, 185, 5, 1, 59, 100, 246, 159, 67, 110, 131, 190, 27, 94, 67, 236, 154, 236, 32, + 131, 59, 27, 123, 33, 218, 229, 239, 134, 0, 26, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2447, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9336533747314615808" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1171781126846821418" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a26ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1271380974421812296" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6628cb7b5b693614" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11575003518182743500" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afc84e3c" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6979" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6a2e2f8b25445" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "036c72b7b1d37ec4e0df" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4813059330556063450" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11706292157993321672" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14208950422922704965" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3890649044101657724" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15304020555487935731" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13948047363524780268" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "043a8ab47473c1" + } + ] + } + ] + }, + "cborHex": "d8669f1b819207f9e22266009fbf1b104300b9fc36342a430a26ba1b11a4da429a9a2448486628cb7b5b6936141ba0a2ac5f6f2dddcc44afc84e3cff426979bf47c6a2e2f8b254454a036c72b7b1d37ec4e0dfffd8669f1bffffffffffffffff9fd8669f1b42cb6bf5e0ac6eda9f1ba2751ab1f22204c81bc53055209d71b8451b35fe5cb12b64747cffffbf1bd462cd9c6d227cf31bc1916b2d5d37e0ecff47043a8ab47473c1ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 129, 146, 7, 249, 226, 34, 102, 0, 159, 191, 27, 16, 67, 0, 185, 252, 54, 52, 42, 67, 10, 38, + 186, 27, 17, 164, 218, 66, 154, 154, 36, 72, 72, 102, 40, 203, 123, 91, 105, 54, 20, 27, 160, 162, 172, 95, 111, + 45, 221, 204, 68, 175, 200, 78, 60, 255, 66, 105, 121, 191, 71, 198, 162, 226, 248, 178, 84, 69, 74, 3, 108, 114, + 183, 177, 211, 126, 196, 224, 223, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 216, 102, + 159, 27, 66, 203, 107, 245, 224, 172, 110, 218, 159, 27, 162, 117, 26, 177, 242, 34, 4, 200, 27, 197, 48, 85, 32, + 157, 113, 184, 69, 27, 53, 254, 92, 177, 43, 100, 116, 124, 255, 255, 191, 27, 212, 98, 205, 156, 109, 34, 124, + 243, 27, 193, 145, 107, 45, 93, 55, 224, 236, 255, 71, 4, 58, 138, 180, 116, 115, 193, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2448, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10729063813170096671" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd3639f95e0b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17956523333197981639" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b94e54ab16c806a1f9fbf46dd3639f95e0b1bf93262d5744767c7ffffff", + "cborBytes": [ + 216, 102, 159, 27, 148, 229, 74, 177, 108, 128, 106, 31, 159, 191, 70, 221, 54, 57, 249, 94, 11, 27, 249, 50, 98, + 213, 116, 71, 103, 199, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2449, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12120217165629133725" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8035979707457644789" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "041c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2120507328916090448" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1019541923641606757" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1f63ad12fdbed40d1a82" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "412847108769285204" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15535156072726270888" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f49685f421882a292613" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3792491675393343134" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b2295c054b9d1c9a18b3bd4a" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f41de1ba833a94be5ea939dd8669f1b6f8588f7ad42a8f59f809f42041cffd8669f1b1d6d8e2e43a7ee509f1b0e2623fa5046c2654a1f63ad12fdbed40d1a821b05baba4210bd84541bd797f623ad1a13a84af49685f421882a292613ffff1b34a1a315d5723e9effff4cb2295c054b9d1c9a18b3bd4affff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 65, 222, 27, 168, 51, 169, 75, 229, 234, 147, 157, + 216, 102, 159, 27, 111, 133, 136, 247, 173, 66, 168, 245, 159, 128, 159, 66, 4, 28, 255, 216, 102, 159, 27, 29, + 109, 142, 46, 67, 167, 238, 80, 159, 27, 14, 38, 35, 250, 80, 70, 194, 101, 74, 31, 99, 173, 18, 253, 190, 212, + 13, 26, 130, 27, 5, 186, 186, 66, 16, 189, 132, 84, 27, 215, 151, 246, 35, 173, 26, 19, 168, 74, 244, 150, 133, + 244, 33, 136, 42, 41, 38, 19, 255, 255, 27, 52, 161, 163, 21, 213, 114, 62, 158, 255, 255, 76, 178, 41, 92, 5, 75, + 157, 28, 154, 24, 179, 189, 74, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2450, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [] + }, + "cborHex": "d8669f1bffffffffffffffed80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2451, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15465832710972344091" + }, + "fields": [] + }, + "cborHex": "d8669f1bd6a1ace8bd1f871b80ff", + "cborBytes": [216, 102, 159, 27, 214, 161, 172, 232, 189, 31, 135, 27, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2452, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4450700371073268840" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10577838909053118037" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3541434824103565576" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13061757910825445173" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00f8fa05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cad9" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "ByteArray", + "bytearray": "657d1d493cacc9b5ba" + } + ] + }, + "cborHex": "d9050d9fbf1b3dc410681b857c680f1b92cc0871a96aa6551b3125b4358de41908ffbf1bb544af9da0e627354400f8fa051bffffffffffffffee42cad9ff1bfffffffffffffff91bfffffffffffffff949657d1d493cacc9b5baff", + "cborBytes": [ + 217, 5, 13, 159, 191, 27, 61, 196, 16, 104, 27, 133, 124, 104, 15, 27, 146, 204, 8, 113, 169, 106, 166, 85, 27, + 49, 37, 180, 53, 141, 228, 25, 8, 255, 191, 27, 181, 68, 175, 157, 160, 230, 39, 53, 68, 0, 248, 250, 5, 27, 255, + 255, 255, 255, 255, 255, 255, 238, 66, 202, 217, 255, 27, 255, 255, 255, 255, 255, 255, 255, 249, 27, 255, 255, + 255, 255, 255, 255, 255, 249, 73, 101, 125, 29, 73, 60, 172, 201, 181, 186, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2453, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "27e6edfbe01e06970c" + } + ] + }, + "cborHex": "d8799f4927e6edfbe01e06970cff", + "cborBytes": [216, 121, 159, 73, 39, 230, 237, 251, 224, 30, 6, 151, 12, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2454, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15625103229381659930" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9923218988525765428" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "914311b937788a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2064639786542611785" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5aa4505fbf8928fa1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11605520720361482452" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8868452999320177933" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11676415275158883966" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e18e12c41f740fff6f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12279152721214038884" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d7c83d9c16ae17c76b23a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15968057822051428643" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5cca20f5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16134288585277820069" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17650941218705123099" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a9e763bd9d95cf" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e325abdb7e8257c42882635" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3572475372299839614" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17711125124423453062" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6531" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9452983096509939997" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8a7e902d68d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10554405297436246797" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af2ebfdae413dea59c9f40" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06b6850f2e0b9291a3fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e671e9c3d9585d50bd85" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14478069107737138035" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1177" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b84" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12176507071791536158" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bd8d7849a0e1a4d1a9fd8669f1b89b65b18377d43349f47914311b937788affff9fbf1b1ca712f26a02bd4949c5aa4505fbf8928fa11ba10f179b4294e8d41b7b1313040bba0d0d1ba20af5d415ca4e7e49e18e12c41f740fff6f1baa6850579abbe3644b0d7c83d9c16ae17c76b23a1bdd99effc9c45e923445cca20f51bdfe881fc351fcca51bf4f4bd850c38271bff47a9e763bd9d95cfbf4c3e325abdb7e8257c428826351b3193fb6c5ec3687e41431bf5ca8e768dc189864265311b832fbe0acf3f411d46a8a7e902d68d1b9278c7b2c930430d4baf2ebfdae413dea59c9f404a06b6850f2e0b9291a3fd4ae671e9c3d9585d50bd851bc8ec6f25383a9373ff421177bf428b841ba8fba4aafb2a981effffffff", + "cborBytes": [ + 216, 102, 159, 27, 216, 215, 132, 154, 14, 26, 77, 26, 159, 216, 102, 159, 27, 137, 182, 91, 24, 55, 125, 67, 52, + 159, 71, 145, 67, 17, 185, 55, 120, 138, 255, 255, 159, 191, 27, 28, 167, 18, 242, 106, 2, 189, 73, 73, 197, 170, + 69, 5, 251, 248, 146, 143, 161, 27, 161, 15, 23, 155, 66, 148, 232, 212, 27, 123, 19, 19, 4, 11, 186, 13, 13, 27, + 162, 10, 245, 212, 21, 202, 78, 126, 73, 225, 142, 18, 196, 31, 116, 15, 255, 111, 27, 170, 104, 80, 87, 154, 187, + 227, 100, 75, 13, 124, 131, 217, 193, 106, 225, 124, 118, 178, 58, 27, 221, 153, 239, 252, 156, 69, 233, 35, 68, + 92, 202, 32, 245, 27, 223, 232, 129, 252, 53, 31, 204, 165, 27, 244, 244, 189, 133, 12, 56, 39, 27, 255, 71, 169, + 231, 99, 189, 157, 149, 207, 191, 76, 62, 50, 90, 189, 183, 232, 37, 124, 66, 136, 38, 53, 27, 49, 147, 251, 108, + 94, 195, 104, 126, 65, 67, 27, 245, 202, 142, 118, 141, 193, 137, 134, 66, 101, 49, 27, 131, 47, 190, 10, 207, 63, + 65, 29, 70, 168, 167, 233, 2, 214, 141, 27, 146, 120, 199, 178, 201, 48, 67, 13, 75, 175, 46, 191, 218, 228, 19, + 222, 165, 156, 159, 64, 74, 6, 182, 133, 15, 46, 11, 146, 145, 163, 253, 74, 230, 113, 233, 195, 217, 88, 93, 80, + 189, 133, 27, 200, 236, 111, 37, 56, 58, 147, 115, 255, 66, 17, 119, 191, 66, 139, 132, 27, 168, 251, 164, 170, + 251, 42, 152, 30, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2455, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16580140840238972860" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8327232104480904570" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15527987996411545587" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d8c8" + }, + { + "_tag": "ByteArray", + "bytearray": "b488117307" + }, + { + "_tag": "ByteArray", + "bytearray": "1889" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16211411761716568375" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "186387227349613077" + } + } + ] + }, + "cborHex": "d905069f1be6187e3fb463ffbcd8669f1b7390457abdd0157a9f9f1bd77e7ecfdaa3c7f342d8c845b4881173074218891be0fa811b04b4a137ff80ffff1b02962e321cd7fa15ff", + "cborBytes": [ + 217, 5, 6, 159, 27, 230, 24, 126, 63, 180, 99, 255, 188, 216, 102, 159, 27, 115, 144, 69, 122, 189, 208, 21, 122, + 159, 159, 27, 215, 126, 126, 207, 218, 163, 199, 243, 66, 216, 200, 69, 180, 136, 17, 115, 7, 66, 24, 137, 27, + 224, 250, 129, 27, 4, 180, 161, 55, 255, 128, 255, 255, 27, 2, 150, 46, 50, 28, 215, 250, 21, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2456, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3487101309809311537" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "739ad8795b6c8c03ac61" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4215792233598616912" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14489490476378946452" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4690517205552867262" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4262984812103795104" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13654848129415905231" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16730cfd0e504cee8700" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14498302730468742708" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cf5ba46667010e00001" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17093448927259681162" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14111823179798383714" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17658122418319433185" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10381810822443281721" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7181312078281837193" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6756189908594395339" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4882992065637162226" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11367768099259604217" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3c602e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3938242954594583812" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3e464d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18099236645921231626" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905069fbf1b3064ac2a72fbbf314a739ad8795b6c8c03ac611b3a8180b3427f05501bc91502d1d4f8fb941b4118108c09d627be1b3b292a19b05501a01bbd7fc406f7bdffcf4a16730cfd0e504cee87001bc93451849faa56344a8cf5ba46667010e000011bed38213bff98618a1bc3d7446a15018c62ff9fd8669f1bf50e40c8604a9de19f1b901399f01509ad391b63a9254977360a89ffffffd8669f1b5dc2ceed10d908cb9fd8669f1b43c3df69995a9cf29f1b9dc26cdb7562dcf9433c602e1b36a77319fbcb8504433e464d1bfb2d67d5e9de130affffffffff", + "cborBytes": [ + 217, 5, 6, 159, 191, 27, 48, 100, 172, 42, 114, 251, 191, 49, 74, 115, 154, 216, 121, 91, 108, 140, 3, 172, 97, + 27, 58, 129, 128, 179, 66, 127, 5, 80, 27, 201, 21, 2, 209, 212, 248, 251, 148, 27, 65, 24, 16, 140, 9, 214, 39, + 190, 27, 59, 41, 42, 25, 176, 85, 1, 160, 27, 189, 127, 196, 6, 247, 189, 255, 207, 74, 22, 115, 12, 253, 14, 80, + 76, 238, 135, 0, 27, 201, 52, 81, 132, 159, 170, 86, 52, 74, 140, 245, 186, 70, 102, 112, 16, 224, 0, 1, 27, 237, + 56, 33, 59, 255, 152, 97, 138, 27, 195, 215, 68, 106, 21, 1, 140, 98, 255, 159, 216, 102, 159, 27, 245, 14, 64, + 200, 96, 74, 157, 225, 159, 27, 144, 19, 153, 240, 21, 9, 173, 57, 27, 99, 169, 37, 73, 119, 54, 10, 137, 255, + 255, 255, 216, 102, 159, 27, 93, 194, 206, 237, 16, 217, 8, 203, 159, 216, 102, 159, 27, 67, 195, 223, 105, 153, + 90, 156, 242, 159, 27, 157, 194, 108, 219, 117, 98, 220, 249, 67, 60, 96, 46, 27, 54, 167, 115, 25, 251, 203, 133, + 4, 67, 62, 70, 77, 27, 251, 45, 103, 213, 233, 222, 19, 10, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2457, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12363443125651725282" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0491cb07" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15404168723055245599" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13076458045069607377" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22fefeed1205aec1bc4cac2b" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bab93c604b9375be29fbf06440491cb070d1bd5c699d6bde3f91f1bb578e94f58ac41d1411f1bffffffffffffffed4c22fefeed1205aec1bc4cac2bffffff", + "cborBytes": [ + 216, 102, 159, 27, 171, 147, 198, 4, 185, 55, 91, 226, 159, 191, 6, 68, 4, 145, 203, 7, 13, 27, 213, 198, 153, + 214, 189, 227, 249, 31, 27, 181, 120, 233, 79, 88, 172, 65, 209, 65, 31, 27, 255, 255, 255, 255, 255, 255, 255, + 237, 76, 34, 254, 254, 237, 18, 5, 174, 193, 188, 76, 172, 43, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2458, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "82080549460988392" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "de902d67f5c21a90e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0e9da07273b62486cc9d1b9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2843407304866561509" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10790959745818038154" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4424051706588521175" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7c19b7d5ae" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d87b9fd8669f1b01239bd3299751e89f1bffffffffffffffffbf49de902d67f5c21a90e14cc0e9da07273b62486cc9d1b9ffd8669f1b2775cfe0f6527de59f1b95c130b743060f8a1b3d656396672b62d741faffff457c19b7d5aea0ffffff", + "cborBytes": [ + 216, 123, 159, 216, 102, 159, 27, 1, 35, 155, 211, 41, 151, 81, 232, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 255, 191, 73, 222, 144, 45, 103, 245, 194, 26, 144, 225, 76, 192, 233, 218, 7, 39, 59, 98, 72, 108, 201, 209, 185, + 255, 216, 102, 159, 27, 39, 117, 207, 224, 246, 82, 125, 229, 159, 27, 149, 193, 48, 183, 67, 6, 15, 138, 27, 61, + 101, 99, 150, 103, 43, 98, 215, 65, 250, 255, 255, 69, 124, 25, 183, 213, 174, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2459, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7ae25c4e02" + } + ] + }, + "cborHex": "d905029f457ae25c4e02ff", + "cborBytes": [217, 5, 2, 159, 69, 122, 226, 92, 78, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2460, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6272195668406582614" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1698177424210338504" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb28851dc63d3bc4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3315123454111041056" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65a9bb71bbd8d65b5dc6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3880915739146905008" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "908027786300465388" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5821762820521922194" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a8eae9f733726007a43" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6743318187309581902" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7cc0b6ab94a2093f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11870932388405087077" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5727301131514383528" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17620475601352559216" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7158bfcf16b0b08112a3ef" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9fd8669f1b570b50ba991e3d569fbf1b1791235eb7a522c848fb28851dc63d3bc41b2e01af379cdac6204a65a9bb71bbd8d65b5dc61b35dbc84d8312e5b01b0c99f675f09fa0ec1b50cb0e70b3c90e924a7a8eae9f733726007a431b5d951429ea04c64e487cc0b6ab94a2093f1ba4be061cc3908b651b4f7b7608d99b8ca8ffd8669f1bf4888133c00e8a709f4b7158bfcf16b0b08112a3efffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 216, 102, 159, 27, 87, 11, 80, 186, 153, 30, 61, + 86, 159, 191, 27, 23, 145, 35, 94, 183, 165, 34, 200, 72, 251, 40, 133, 29, 198, 61, 59, 196, 27, 46, 1, 175, 55, + 156, 218, 198, 32, 74, 101, 169, 187, 113, 187, 216, 214, 91, 93, 198, 27, 53, 219, 200, 77, 131, 18, 229, 176, + 27, 12, 153, 246, 117, 240, 159, 160, 236, 27, 80, 203, 14, 112, 179, 201, 14, 146, 74, 122, 142, 174, 159, 115, + 55, 38, 0, 122, 67, 27, 93, 149, 20, 41, 234, 4, 198, 78, 72, 124, 192, 182, 171, 148, 162, 9, 63, 27, 164, 190, + 6, 28, 195, 144, 139, 101, 27, 79, 123, 118, 8, 217, 155, 140, 168, 255, 216, 102, 159, 27, 244, 136, 129, 51, + 192, 14, 138, 112, 159, 75, 113, 88, 191, 207, 22, 176, 176, 129, 18, 163, 239, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2461, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12310362960858526314" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17790749414522284373" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4873844904591949480" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1154623077387137608" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d764dbb2f80f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3573951247033628205" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2910000589841719626" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2695883875112079558" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1949867938297884125" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13392248040951130962" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be257bbc4711cb9f" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "644272a6e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15525964174553159545" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17ee29ff9f5c21dcb178" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13382534293783403650" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cef917153a68744ad79b8cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9c9e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75e0de40232e6c874a847d15" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9778f9572a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9882c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c002ef06e6c0c8356d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d850d69d2f5592dd688794f1" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "531ddbc9bd9677d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17455266446993668409" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f20e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce38b6d931b23fb8645778" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7604065318529470575" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8926798505811471765" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11402194635367831688" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cd06a4c0fa39729722ff" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2eb0c546e19e973426" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8952057614725495548" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "300fe6fc7809451520d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9802843631248379375" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31b23a230562a7496a3ec6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a9206bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97adc993c570d15a5e443856" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7399" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14894135916379009322" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2790240047909988620" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17938758599080983761" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2294022416378746170" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10328374127299758438" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "19501713f13977aafc" + }, + { + "_tag": "ByteArray", + "bytearray": "0567" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10584457647521099671" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8799fd8669f1baad731e3ca19326a9fd8669f1bf6e570554496e95580ffd8669f1b43a3601e348cfea880ff1b10060b924920f24846d764dbb2f80fffffbf1b319939b93c00f62d1b2862661e5db1614affbf1b2569b419dbc250c61b1b0f528f1d2b2ddd1bb9dad2a358d02b5248be257bbc4711cb9fff9f45644272a6e31bd7774e281bae9779bf4a17ee29ff9f5c21dcb1781bb9b8500957715c824c3cef917153a68744ad79b8cb43a9c9e84c75e0de40232e6c874a847d15459778f9572a41b7439882c641bc410149c002ef06e6c0c8356d4cd850d69d2f5592dd688794f1ffbf48531ddbc9bd9677d51bf23d905a00da393942f20e4bce38b6d931b23fb8645778ff9f1b6987111e7fd1106f1b7be25bf1e0616d951b9e3cbb9c04f6d8884acd06a4c0fa39729722ffffff9fbf492eb0c546e19e9734261b7c3c18f8768b3afc4a300fe6fc7809451520d71b880ab2584d428def4b31b23a230562a7496a3ec6446a9206bb4c97adc993c570d15a5e443856427399419f1bceb299b41428712affd8669f1b26b8ec8a4dbe690c9f1bf8f345e6f9b4bcd1ffff1b1fd6013bc309d53a1b8f55c18bf50989669f4919501713f13977aafc4205671b92e38c26cca96f97ffffff", + "cborBytes": [ + 216, 121, 159, 216, 102, 159, 27, 170, 215, 49, 227, 202, 25, 50, 106, 159, 216, 102, 159, 27, 246, 229, 112, 85, + 68, 150, 233, 85, 128, 255, 216, 102, 159, 27, 67, 163, 96, 30, 52, 140, 254, 168, 128, 255, 27, 16, 6, 11, 146, + 73, 32, 242, 72, 70, 215, 100, 219, 178, 248, 15, 255, 255, 191, 27, 49, 153, 57, 185, 60, 0, 246, 45, 27, 40, 98, + 102, 30, 93, 177, 97, 74, 255, 191, 27, 37, 105, 180, 25, 219, 194, 80, 198, 27, 27, 15, 82, 143, 29, 43, 45, 221, + 27, 185, 218, 210, 163, 88, 208, 43, 82, 72, 190, 37, 123, 188, 71, 17, 203, 159, 255, 159, 69, 100, 66, 114, 166, + 227, 27, 215, 119, 78, 40, 27, 174, 151, 121, 191, 74, 23, 238, 41, 255, 159, 92, 33, 220, 177, 120, 27, 185, 184, + 80, 9, 87, 113, 92, 130, 76, 60, 239, 145, 113, 83, 166, 135, 68, 173, 121, 184, 203, 67, 169, 201, 232, 76, 117, + 224, 222, 64, 35, 46, 108, 135, 74, 132, 125, 21, 69, 151, 120, 249, 87, 42, 65, 183, 67, 152, 130, 198, 65, 188, + 65, 1, 73, 192, 2, 239, 6, 230, 192, 200, 53, 109, 76, 216, 80, 214, 157, 47, 85, 146, 221, 104, 135, 148, 241, + 255, 191, 72, 83, 29, 219, 201, 189, 150, 119, 213, 27, 242, 61, 144, 90, 0, 218, 57, 57, 66, 242, 14, 75, 206, + 56, 182, 217, 49, 178, 63, 184, 100, 87, 120, 255, 159, 27, 105, 135, 17, 30, 127, 209, 16, 111, 27, 123, 226, 91, + 241, 224, 97, 109, 149, 27, 158, 60, 187, 156, 4, 246, 216, 136, 74, 205, 6, 164, 192, 250, 57, 114, 151, 34, 255, + 255, 255, 159, 191, 73, 46, 176, 197, 70, 225, 158, 151, 52, 38, 27, 124, 60, 24, 248, 118, 139, 58, 252, 74, 48, + 15, 230, 252, 120, 9, 69, 21, 32, 215, 27, 136, 10, 178, 88, 77, 66, 141, 239, 75, 49, 178, 58, 35, 5, 98, 167, + 73, 106, 62, 198, 68, 106, 146, 6, 187, 76, 151, 173, 201, 147, 197, 112, 209, 90, 94, 68, 56, 86, 66, 115, 153, + 65, 159, 27, 206, 178, 153, 180, 20, 40, 113, 42, 255, 216, 102, 159, 27, 38, 184, 236, 138, 77, 190, 105, 12, + 159, 27, 248, 243, 69, 230, 249, 180, 188, 209, 255, 255, 27, 31, 214, 1, 59, 195, 9, 213, 58, 27, 143, 85, 193, + 139, 245, 9, 137, 102, 159, 73, 25, 80, 23, 19, 241, 57, 119, 170, 252, 66, 5, 103, 27, 146, 227, 140, 38, 204, + 169, 111, 151, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2462, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14067863171776598421" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18092670742275811198" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b3b3032d07d0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e3cb5f024f2c492" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16457032531734844720" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e67" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11303822084076757771" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afb78182c12fb3ca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f002fd2bb9af86" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8fcdf086b758534" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3027148759109576270" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7611b202b31a59adc6dd809" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5929d3362647990a4f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbc9d1fa26455ab59ca335f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11261080499207225240" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8997532860780347005" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10690825268801710274" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bc33b17051e8b51959fa0d8669f1bfb16142e5773e77e9f46b3b3032d07d0bf480e3cb5f024f2c4921be4631fe4ff1a5530420e671b9cdf3e4b959c630b48afb78182c12fb3ca47f002fd2bb9af8648c8fcdf086b7585341b2a0297c204fda64e4cd7611b202b31a59adc6dd809495929d3362647990a4f4cfbc9d1fa26455ab59ca335f51b9c47650cde533f98ff9f1b7cdda87745b77e7d1bffffffffffffffecff9f1b945d70f086b228c2ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 195, 59, 23, 5, 30, 139, 81, 149, 159, 160, 216, 102, 159, 27, 251, 22, 20, 46, 87, 115, 231, + 126, 159, 70, 179, 179, 3, 45, 7, 208, 191, 72, 14, 60, 181, 240, 36, 242, 196, 146, 27, 228, 99, 31, 228, 255, + 26, 85, 48, 66, 14, 103, 27, 156, 223, 62, 75, 149, 156, 99, 11, 72, 175, 183, 129, 130, 193, 47, 179, 202, 71, + 240, 2, 253, 43, 185, 175, 134, 72, 200, 252, 223, 8, 107, 117, 133, 52, 27, 42, 2, 151, 194, 4, 253, 166, 78, 76, + 215, 97, 27, 32, 43, 49, 165, 154, 220, 109, 216, 9, 73, 89, 41, 211, 54, 38, 71, 153, 10, 79, 76, 251, 201, 209, + 250, 38, 69, 90, 181, 156, 163, 53, 245, 27, 156, 71, 101, 12, 222, 83, 63, 152, 255, 159, 27, 124, 221, 168, 119, + 69, 183, 126, 125, 27, 255, 255, 255, 255, 255, 255, 255, 236, 255, 159, 27, 148, 93, 112, 240, 134, 178, 40, 194, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2463, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6708548709727027088" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa26bd497753318e76" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b52951f7c218" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "241e" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15638092848493846167" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5263391611650250090" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15581973749691318690" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16054267106207688892" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f891" + }, + { + "_tag": "ByteArray", + "bytearray": "7d34" + }, + { + "_tag": "ByteArray", + "bytearray": "6e230bc9448f943dd98227" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5d198d8211af3f909f49fa26bd497753318e769fbf46b52951f7c21842241eff9f1bd905aa976f0d5e97ff1b490b52c8be2f156a1bd83e4a9189d001a2ff1bdecc36dfbabf68bc9f412b9f42f891427d344b6e230bc9448f943dd98227ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 93, 25, 141, 130, 17, 175, 63, 144, 159, 73, 250, 38, 189, 73, 119, 83, 49, 142, 118, 159, 191, + 70, 181, 41, 81, 247, 194, 24, 66, 36, 30, 255, 159, 27, 217, 5, 170, 151, 111, 13, 94, 151, 255, 27, 73, 11, 82, + 200, 190, 47, 21, 106, 27, 216, 62, 74, 145, 137, 208, 1, 162, 255, 27, 222, 204, 54, 223, 186, 191, 104, 188, + 159, 65, 43, 159, 66, 248, 145, 66, 125, 52, 75, 110, 35, 11, 201, 68, 143, 148, 61, 217, 130, 39, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2464, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5885741636894721804" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16165845055901890200" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ee708f026d8467f713" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13840014084279396997" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4283040085413119974" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3796987489645032802" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13614304165157070594" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b51ae5ad5b2d6070c9f09d8669f1be0589e6d930976989f49ee708f026d8467f713089f1bc0119b7b6be06a8508ff1bfffffffffffffff7ffff9f1b3b706a43e1cec7e6ffbf1b34b19c0128e4f5621bbcefb981ac4ee702ffffff", + "cborBytes": [ + 216, 102, 159, 27, 81, 174, 90, 213, 178, 214, 7, 12, 159, 9, 216, 102, 159, 27, 224, 88, 158, 109, 147, 9, 118, + 152, 159, 73, 238, 112, 143, 2, 109, 132, 103, 247, 19, 8, 159, 27, 192, 17, 155, 123, 107, 224, 106, 133, 8, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 247, 255, 255, 159, 27, 59, 112, 106, 67, 225, 206, 199, 230, 255, 191, 27, + 52, 177, 156, 1, 40, 228, 245, 98, 27, 188, 239, 185, 129, 172, 78, 231, 2, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2465, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18020469323293250871" + }, + "fields": [] + }, + "cborHex": "d8669f1bfa15915f7cb7d53780ff", + "cborBytes": [216, 102, 159, 27, 250, 21, 145, 95, 124, 183, 213, 55, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2466, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17580597391559463810" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "47d75d344cba150fe9" + }, + { + "_tag": "ByteArray", + "bytearray": "b841c6c6eb3de40d4b09" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5510237555374910961" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7154641711091396074" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d398d5bfbfdb08f" + }, + { + "_tag": "ByteArray", + "bytearray": "b0eab1b78332239dcc" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5144660503223163153" + } + }, + { + "_tag": "ByteArray", + "bytearray": "92fbff6c9ba3d0c0" + }, + { + "_tag": "ByteArray", + "bytearray": "864f17f7f968ae7c0dd0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14383731942265616934" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8433842925931909545" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bf3fad42e7f0f93829f4947d75d344cba150fe94ab841c6c6eb3de40d4b09d8669f1b4c784bdcb4236df19f9f1b634a64bab4cbadea485d398d5bfbfdb08f49b0eab1b78332239dccff9f1b47658178589959114892fbff6c9ba3d0c04a864f17f7f968ae7c0dd01bc79d47fe432e7a26ffffff1b750b0774eb9cd1a9a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 243, 250, 212, 46, 127, 15, 147, 130, 159, 73, 71, 215, 93, 52, 76, 186, 21, 15, 233, 74, 184, + 65, 198, 198, 235, 61, 228, 13, 75, 9, 216, 102, 159, 27, 76, 120, 75, 220, 180, 35, 109, 241, 159, 159, 27, 99, + 74, 100, 186, 180, 203, 173, 234, 72, 93, 57, 141, 91, 251, 253, 176, 143, 73, 176, 234, 177, 183, 131, 50, 35, + 157, 204, 255, 159, 27, 71, 101, 129, 120, 88, 153, 89, 17, 72, 146, 251, 255, 108, 155, 163, 208, 192, 74, 134, + 79, 23, 247, 249, 104, 174, 124, 13, 208, 27, 199, 157, 71, 254, 67, 46, 122, 38, 255, 255, 255, 27, 117, 11, 7, + 116, 235, 156, 209, 169, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2467, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9720650080345154745" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10948964614387019200" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41aa10e95ddfa0c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11454773517826386345" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "644214cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a318e4edf007156536bb2de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69c2fc93a23e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16874036388814737201" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8220959187199274968" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "dc89" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13202700115306804308" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10819868933531076184" + } + }, + { + "_tag": "ByteArray", + "bytearray": "706660f0461b7b36fe38db" + }, + { + "_tag": "ByteArray", + "bytearray": "59a92fd0b4" + }, + { + "_tag": "ByteArray", + "bytearray": "49b2d824de52959c24b6" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11043470945179737142" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f1b86e6afbef0d864b9d8669f1b97f2894e82dc2dc09fbf4841aa10e95ddfa0c61b9ef787d31097e9a944644214cc4c6a318e4edf007156536bb2de4669c2fc93a23e1bea2c9eb172514f31ffffff1b7216b6d301ff2fd89fa042dc89d8669f1bb73969cdd0def4549f1b9627e5780b6786584b706660f0461b7b36fe38db4559a92fd0b44a49b2d824de52959c24b6ffff9f1b99424a5056c91c36ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 27, 134, 230, 175, 190, 240, 216, 100, 185, 216, + 102, 159, 27, 151, 242, 137, 78, 130, 220, 45, 192, 159, 191, 72, 65, 170, 16, 233, 93, 223, 160, 198, 27, 158, + 247, 135, 211, 16, 151, 233, 169, 68, 100, 66, 20, 204, 76, 106, 49, 142, 78, 223, 0, 113, 86, 83, 107, 178, 222, + 70, 105, 194, 252, 147, 162, 62, 27, 234, 44, 158, 177, 114, 81, 79, 49, 255, 255, 255, 27, 114, 22, 182, 211, 1, + 255, 47, 216, 159, 160, 66, 220, 137, 216, 102, 159, 27, 183, 57, 105, 205, 208, 222, 244, 84, 159, 27, 150, 39, + 229, 120, 11, 103, 134, 88, 75, 112, 102, 96, 240, 70, 27, 123, 54, 254, 56, 219, 69, 89, 169, 47, 208, 180, 74, + 73, 178, 216, 36, 222, 82, 149, 156, 36, 182, 255, 255, 159, 27, 153, 66, 74, 80, 86, 201, 28, 54, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2468, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4864095104936766084" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6365415221353582050" + } + }, + { + "_tag": "ByteArray", + "bytearray": "70" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15082339878868706419" + } + } + ] + }, + "cborHex": "d87e9f1b4380bcba1378ea841b58567f6b1ca50de241701bd14f3c35cdad6473ff", + "cborBytes": [ + 216, 126, 159, 27, 67, 128, 188, 186, 19, 120, 234, 132, 27, 88, 86, 127, 107, 28, 165, 13, 226, 65, 112, 27, 209, + 79, 60, 53, 205, 173, 100, 115, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2469, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12935992411593702089" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb0bcd58fbcb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11811378945397650560" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11338702002214157559" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bb385e08f7e30fac99f46fb0bcd58fbcb1ba3ea72924bf474808041d8d8669f1b9d5b29655ffc3cf780ffffff", + "cborBytes": [ + 216, 102, 159, 27, 179, 133, 224, 143, 126, 48, 250, 201, 159, 70, 251, 11, 205, 88, 251, 203, 27, 163, 234, 114, + 146, 75, 244, 116, 128, 128, 65, 216, 216, 102, 159, 27, 157, 91, 41, 101, 95, 252, 60, 247, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2470, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4970225157658242409" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "146727921978946991" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "659c7d1533d3c72c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5548609558289084105" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "739734b37a766138df6f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14862894732763317197" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8815932773042529985" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9f3b8cafa830" + }, + { + "_tag": "ByteArray", + "bytearray": "90e14f8b73ce" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4049" + }, + { + "_tag": "ByteArray", + "bytearray": "aa22b1d237fcbaee39" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10168339142104631472" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3587372010414885007" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12274702082759200364" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8077631222903171910" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e217" + }, + { + "_tag": "ByteArray", + "bytearray": "ce69eef809172e0977422d" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b44f9c9728feded699f1b02094844842fb5af9f80ff48659c7d1533d3c72cd8669f1b4d009efed7286ec99f9f4a739734b37a766138df6f1bce439c033061c3cd1b7a587c25f4eca6c1469f3b8cafa8304690e14f8b73ceff42404949aa22b1d237fcbaee39ffffd8669f1b8d1d329358d8c8b09f1b31c8e7d635f5488fd8669f1baa588082969c0e6c9f1b701982ccd3bf6b4642e2174bce69eef809172e0977422dffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 68, 249, 201, 114, 143, 237, 237, 105, 159, 27, 2, 9, 72, 68, 132, 47, 181, 175, 159, 128, 255, + 72, 101, 156, 125, 21, 51, 211, 199, 44, 216, 102, 159, 27, 77, 0, 158, 254, 215, 40, 110, 201, 159, 159, 74, 115, + 151, 52, 179, 122, 118, 97, 56, 223, 111, 27, 206, 67, 156, 3, 48, 97, 195, 205, 27, 122, 88, 124, 37, 244, 236, + 166, 193, 70, 159, 59, 140, 175, 168, 48, 70, 144, 225, 79, 139, 115, 206, 255, 66, 64, 73, 73, 170, 34, 177, 210, + 55, 252, 186, 238, 57, 255, 255, 216, 102, 159, 27, 141, 29, 50, 147, 88, 216, 200, 176, 159, 27, 49, 200, 231, + 214, 53, 245, 72, 143, 216, 102, 159, 27, 170, 88, 128, 130, 150, 156, 14, 108, 159, 27, 112, 25, 130, 204, 211, + 191, 107, 70, 66, 226, 23, 75, 206, 105, 238, 248, 9, 23, 46, 9, 119, 66, 45, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2471, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5703187680415336305" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3a3791" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13228713786354700110" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17662005931659282316" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4446119916270772154" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cb17d686fbb0a55b4f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "971f1c0ebe20" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c4a1fecb75bc90" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2016365585163244183" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3c71f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51710a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc7b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd633507d076907f" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2214869429735208560" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15370842373239974746" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "90e5ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17551156844026811812" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13240815004562521295" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14039476636552185487" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8537866605992921709" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b4f25cafa828a47719f433a37919f1bb795d51996fc0f4e9f1bf51c0cd14964c78cffd8669f1b3db3ca81de1bdfba9f49cb17d686fbb0a55b4fffff46971f1c0ebe20ff47c4a1fecb75bc90d8669f1b1bfb91d108fa52979fbf43f3c71f4351710a42fc7b48fd633507d076907fff1b1ebccc02ef3d3670d8669f1bd55033b3437dab5a9f4390e5ca1bf3923c28dd6255a41bb7c0d318039c7ccf1bc2d63d9dda16c68fffff1b767c98714de0ca6da0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 79, 37, 202, 250, 130, 138, 71, 113, 159, 67, 58, 55, 145, 159, 27, 183, 149, 213, 25, 150, + 252, 15, 78, 159, 27, 245, 28, 12, 209, 73, 100, 199, 140, 255, 216, 102, 159, 27, 61, 179, 202, 129, 222, 27, + 223, 186, 159, 73, 203, 23, 214, 134, 251, 176, 165, 91, 79, 255, 255, 70, 151, 31, 28, 14, 190, 32, 255, 71, 196, + 161, 254, 203, 117, 188, 144, 216, 102, 159, 27, 27, 251, 145, 209, 8, 250, 82, 151, 159, 191, 67, 243, 199, 31, + 67, 81, 113, 10, 66, 252, 123, 72, 253, 99, 53, 7, 208, 118, 144, 127, 255, 27, 30, 188, 204, 2, 239, 61, 54, 112, + 216, 102, 159, 27, 213, 80, 51, 179, 67, 125, 171, 90, 159, 67, 144, 229, 202, 27, 243, 146, 60, 40, 221, 98, 85, + 164, 27, 183, 192, 211, 24, 3, 156, 124, 207, 27, 194, 214, 61, 157, 218, 22, 198, 143, 255, 255, 27, 118, 124, + 152, 113, 77, 224, 202, 109, 160, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2472, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14116297059908960078" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fefd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c3" + }, + { + "_tag": "ByteArray", + "bytearray": "33f53fd64926" + } + ] + } + ] + }, + "cborHex": "d8669f1bc3e7296277c3bf4e9f1bffffffffffffffff42fefd02d87f9f41c34633f53fd64926ffffff", + "cborBytes": [ + 216, 102, 159, 27, 195, 231, 41, 98, 119, 195, 191, 78, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 66, 254, + 253, 2, 216, 127, 159, 65, 195, 70, 51, 245, 63, 214, 73, 38, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2473, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2475353903724968259" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10580954451037642331" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "56b433e5535090c9f390643a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "73589208887334305" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6095" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c47efdc6c8185d04cc17" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "660a7788e4a4ce77bd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6897326390950033213" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f1b225a3942ace739431b92d71a034eafde5bbf4c56b433e5535090c9f390643a1b010570fedf0815a14260954ac47efdc6c8185d04cc1749660a7788e4a4ce77bd1b5fb839cf1880f73dffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 27, 34, 90, 57, 66, 172, 231, 57, 67, 27, 146, + 215, 26, 3, 78, 175, 222, 91, 191, 76, 86, 180, 51, 229, 83, 80, 144, 201, 243, 144, 100, 58, 27, 1, 5, 112, 254, + 223, 8, 21, 161, 66, 96, 149, 74, 196, 126, 253, 198, 200, 24, 93, 4, 204, 23, 73, 102, 10, 119, 136, 228, 164, + 206, 119, 189, 27, 95, 184, 57, 207, 24, 128, 247, 61, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2474, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "26" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16536318604706796094" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "86b4" + }, + { + "_tag": "ByteArray", + "bytearray": "1f34c658b491fe386994" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2f7c35afbec64b4435765473" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6275990523319156659" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3798982542189464339" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9321738772098534138" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4854683048194207649" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8402136884320661959" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7896939945500739239" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "420922a3db4108b64726cdb5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9269663850570162821" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16165136281606402302" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12476410964932104726" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "879489209188463720" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6b60fe8845448395e09559" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17074878201183812160" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13210380529915893616" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3942060004179405944" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6fa830a67b325dc5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7603483999912142061" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9798270344990915469" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9c2137" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17131827419501612158" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17746066175736803087" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16755287696631534908" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a70a601d9d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10316655265257586929" + } + }, + { + "_tag": "ByteArray", + "bytearray": "643b6655cdd7" + }, + { + "_tag": "ByteArray", + "bytearray": "3b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11892064512870039249" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13614988502707141013" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3dd2f3bc9344c73243" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14034046967947288051" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5f0696142d35078092ab548" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6855b8211e1354906fce4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c15a7a9af" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c25e35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bfba933c10a9d8982f77fbb" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10200283455567484001" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40765a4d3ffdd9fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14535170405036636446" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6016257817668647911" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050b9f9f4126d8669f1be57cce28663b523e9f4286b44a1f34c658b491fe386994ffff4c2f7c35afbec64b4435765473ffd8669f1b5718cc211c27ffb39fbf1b34b8b27e871d0b131b815d780647eb4afa1b435f4c82d8b9efa11b749a62fad823f1c71b6d97910a682a06a74c420922a3db4108b64726cdb51b80a47628c883a2851be05619cd32edb0fe1bad251dab749112161b0c3492c6a977b468ff4b6b60fe8845448395e09559d8669f1becf62741e49f3a409f1bb754b319b15f9770ffff9f1b36b502b018636c78486fa830a67b325dc51b69850069b62124ed1b87fa72f71e6d7b8dffffff439c21371bedc07a450cb0cc7ed8669f1bf646b12a055def0f9fd8669f1be886bd630332153c9f45a70a601d9d1b8f2c1f4dc3d780f146643b6655cdd7413bffff1ba50919aae7a5bed1bf1bbcf227e86ce2f995493dd2f3bc9344c732431bc2c2f35c9da55df34cc5f0696142d35078092ab5484b6855b8211e1354906fce4c454c15a7a9af43c25e354c8bfba933c10a9d8982f77fbbffbf1b8d8eafc26964d4614840765a4d3ffdd9fc1bc9b74c7905fab91e1b537e0a9c134e7be7ffffffff", + "cborBytes": [ + 217, 5, 11, 159, 159, 65, 38, 216, 102, 159, 27, 229, 124, 206, 40, 102, 59, 82, 62, 159, 66, 134, 180, 74, 31, + 52, 198, 88, 180, 145, 254, 56, 105, 148, 255, 255, 76, 47, 124, 53, 175, 190, 198, 75, 68, 53, 118, 84, 115, 255, + 216, 102, 159, 27, 87, 24, 204, 33, 28, 39, 255, 179, 159, 191, 27, 52, 184, 178, 126, 135, 29, 11, 19, 27, 129, + 93, 120, 6, 71, 235, 74, 250, 27, 67, 95, 76, 130, 216, 185, 239, 161, 27, 116, 154, 98, 250, 216, 35, 241, 199, + 27, 109, 151, 145, 10, 104, 42, 6, 167, 76, 66, 9, 34, 163, 219, 65, 8, 182, 71, 38, 205, 181, 27, 128, 164, 118, + 40, 200, 131, 162, 133, 27, 224, 86, 25, 205, 50, 237, 176, 254, 27, 173, 37, 29, 171, 116, 145, 18, 22, 27, 12, + 52, 146, 198, 169, 119, 180, 104, 255, 75, 107, 96, 254, 136, 69, 68, 131, 149, 224, 149, 89, 216, 102, 159, 27, + 236, 246, 39, 65, 228, 159, 58, 64, 159, 27, 183, 84, 179, 25, 177, 95, 151, 112, 255, 255, 159, 27, 54, 181, 2, + 176, 24, 99, 108, 120, 72, 111, 168, 48, 166, 123, 50, 93, 197, 27, 105, 133, 0, 105, 182, 33, 36, 237, 27, 135, + 250, 114, 247, 30, 109, 123, 141, 255, 255, 255, 67, 156, 33, 55, 27, 237, 192, 122, 69, 12, 176, 204, 126, 216, + 102, 159, 27, 246, 70, 177, 42, 5, 93, 239, 15, 159, 216, 102, 159, 27, 232, 134, 189, 99, 3, 50, 21, 60, 159, 69, + 167, 10, 96, 29, 157, 27, 143, 44, 31, 77, 195, 215, 128, 241, 70, 100, 59, 102, 85, 205, 215, 65, 59, 255, 255, + 27, 165, 9, 25, 170, 231, 165, 190, 209, 191, 27, 188, 242, 39, 232, 108, 226, 249, 149, 73, 61, 210, 243, 188, + 147, 68, 199, 50, 67, 27, 194, 194, 243, 92, 157, 165, 93, 243, 76, 197, 240, 105, 97, 66, 211, 80, 120, 9, 42, + 181, 72, 75, 104, 85, 184, 33, 30, 19, 84, 144, 111, 206, 76, 69, 76, 21, 167, 169, 175, 67, 194, 94, 53, 76, 139, + 251, 169, 51, 193, 10, 157, 137, 130, 247, 127, 187, 255, 191, 27, 141, 142, 175, 194, 105, 100, 212, 97, 72, 64, + 118, 90, 77, 63, 253, 217, 252, 27, 201, 183, 76, 121, 5, 250, 185, 30, 27, 83, 126, 10, 156, 19, 78, 123, 231, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2475, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16810676537479591437" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0fad68ac2af82e076e1cbf7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1658913633037935717" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19c333" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4b713fe26c5ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31a4b006269e9ece23" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74a9a761d7537fac7328" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a26b7f04499ac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5737c40852883e6d7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "717d25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a0a779d14c3facd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "975d2dc2d71714fad0a883" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59d0d075917ca43df248e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a811ef9cc6c33200c5590c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bfb55c1fbcf97952" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8760768931243396461" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8899915286003763365" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1be94b853e7a76f60d9f4cc0fad68ac2af82e076e1cbf7d8669f1b1705a528f24764659fbf4319c33347a4b713fe26c5ff4931a4b006269e9ece234a74a9a761d7537fac7328473a26b7f04499ac49b5737c40852883e6d743717d25480a0a779d14c3facd4b975d2dc2d71714fad0a8834b59d0d075917ca43df248e24ba811ef9cc6c33200c5590c48bfb55c1fbcf97952ffffff1b799480ed2a0a8d6dd8669f1b7b82d9cc8152c8a580ffffff", + "cborBytes": [ + 216, 102, 159, 27, 233, 75, 133, 62, 122, 118, 246, 13, 159, 76, 192, 250, 214, 138, 194, 175, 130, 224, 118, 225, + 203, 247, 216, 102, 159, 27, 23, 5, 165, 40, 242, 71, 100, 101, 159, 191, 67, 25, 195, 51, 71, 164, 183, 19, 254, + 38, 197, 255, 73, 49, 164, 176, 6, 38, 158, 158, 206, 35, 74, 116, 169, 167, 97, 215, 83, 127, 172, 115, 40, 71, + 58, 38, 183, 240, 68, 153, 172, 73, 181, 115, 124, 64, 133, 40, 131, 230, 215, 67, 113, 125, 37, 72, 10, 10, 119, + 157, 20, 195, 250, 205, 75, 151, 93, 45, 194, 215, 23, 20, 250, 208, 168, 131, 75, 89, 208, 208, 117, 145, 124, + 164, 61, 242, 72, 226, 75, 168, 17, 239, 156, 198, 195, 50, 0, 197, 89, 12, 72, 191, 181, 92, 31, 188, 249, 121, + 82, 255, 255, 255, 27, 121, 148, 128, 237, 42, 10, 141, 109, 216, 102, 159, 27, 123, 130, 217, 204, 129, 82, 200, + 165, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2476, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11059206642950960786" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "33" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13461978265697653328" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2389cb89c446c792d41c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "727796812955304477" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7546080451915398108" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15144021713101873862" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16533412202164873477" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8557447885300647084" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5872a315e940872b9f6c2e" + }, + { + "_tag": "ByteArray", + "bytearray": "7c16433dab53ba" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5540672167406401441" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14788958412140783226" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17691437154310612212" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6111047810509557198" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8085457924261835764" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2e6ed7ec1b81f9570e28ca0a" + } + ] + } + ] + }, + "cborHex": "d87f9fd8669f1b997a31d8fabb76929f41331bbad28de874f01250ffff4a2389cb89c446c792d41c9f9f1b0a19a75868dcc21dffa01b68b91030aeefbbdc9f1bd22a5f82f83d62c61be5727accd32569051b76c229832b4344ac4b5872a315e940872b9f6c2e477c16433dab53baffffd8669f1b4ce46bfb0326f7a19fd8669f1bcd3cef5211ad267a9f1bf5849c5bccd4e4f41b54cecd9b1ed9cdce1b70355124bdfe73f4ffff4c2e6ed7ec1b81f9570e28ca0affffff", + "cborBytes": [ + 216, 127, 159, 216, 102, 159, 27, 153, 122, 49, 216, 250, 187, 118, 146, 159, 65, 51, 27, 186, 210, 141, 232, 116, + 240, 18, 80, 255, 255, 74, 35, 137, 203, 137, 196, 70, 199, 146, 212, 28, 159, 159, 27, 10, 25, 167, 88, 104, 220, + 194, 29, 255, 160, 27, 104, 185, 16, 48, 174, 239, 187, 220, 159, 27, 210, 42, 95, 130, 248, 61, 98, 198, 27, 229, + 114, 122, 204, 211, 37, 105, 5, 27, 118, 194, 41, 131, 43, 67, 68, 172, 75, 88, 114, 163, 21, 233, 64, 135, 43, + 159, 108, 46, 71, 124, 22, 67, 61, 171, 83, 186, 255, 255, 216, 102, 159, 27, 76, 228, 107, 251, 3, 38, 247, 161, + 159, 216, 102, 159, 27, 205, 60, 239, 82, 17, 173, 38, 122, 159, 27, 245, 132, 156, 91, 204, 212, 228, 244, 27, + 84, 206, 205, 155, 30, 217, 205, 206, 27, 112, 53, 81, 36, 189, 254, 115, 244, 255, 255, 76, 46, 110, 215, 236, + 27, 129, 249, 87, 14, 40, 202, 10, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2477, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2277305168329940881" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9407826502961941813" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16232745150096529398" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9431431336773548262" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e336c91c94c8" + }, + { + "_tag": "ByteArray", + "bytearray": "8d8d17b646e18342" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2013fba96bf5038f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6938132502263245133" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7e1c7ecb818beaf424" + }, + { + "_tag": "ByteArray", + "bytearray": "888db78f497b0c2d" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a1e5e34f28" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4d1168995a16f34af1" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b1f9a9cfc23779f919f1b828f505c118d4d35d8669f1be1464bb590f2d7f69f9f1b82e32cd4b7dff8e646e336c91c94c8488d8d17b646e18342ff482013fba96bf5038fd8669f1b604932c041fe294d9f497e1c7ecb818beaf42448888db78f497b0c2dffffa045a1e5e34f28ffff9f494d1168995a16f34af180ffffff", + "cborBytes": [ + 216, 102, 159, 27, 31, 154, 156, 252, 35, 119, 159, 145, 159, 27, 130, 143, 80, 92, 17, 141, 77, 53, 216, 102, + 159, 27, 225, 70, 75, 181, 144, 242, 215, 246, 159, 159, 27, 130, 227, 44, 212, 183, 223, 248, 230, 70, 227, 54, + 201, 28, 148, 200, 72, 141, 141, 23, 182, 70, 225, 131, 66, 255, 72, 32, 19, 251, 169, 107, 245, 3, 143, 216, 102, + 159, 27, 96, 73, 50, 192, 65, 254, 41, 77, 159, 73, 126, 28, 126, 203, 129, 139, 234, 244, 36, 72, 136, 141, 183, + 143, 73, 123, 12, 45, 255, 255, 160, 69, 161, 229, 227, 79, 40, 255, 255, 159, 73, 77, 17, 104, 153, 90, 22, 243, + 74, 241, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2478, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9177225351431180778" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fd" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11375826338972344674" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a59" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "23cf422a3cd14fff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b56323ddae2b2800d90" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24a964" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11239898454422840546" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0701fef507040605" + }, + { + "_tag": "ByteArray", + "bytearray": "cd745692b08390" + } + ] + } + ] + }, + "cborHex": "d8669f1b7f5c0dd587c3d1ea9f9f41fdffbf1b9ddf0dc898faa162429a594823cf422a3cd14fff4a6b56323ddae2b2800d904324a9641b9bfc2417bf55e4e2ff41e79f480701fef50704060547cd745692b08390ffffff", + "cborBytes": [ + 216, 102, 159, 27, 127, 92, 13, 213, 135, 195, 209, 234, 159, 159, 65, 253, 255, 191, 27, 157, 223, 13, 200, 152, + 250, 161, 98, 66, 154, 89, 72, 35, 207, 66, 42, 60, 209, 79, 255, 74, 107, 86, 50, 61, 218, 226, 178, 128, 13, + 144, 67, 36, 169, 100, 27, 155, 252, 36, 23, 191, 85, 228, 226, 255, 65, 231, 159, 72, 7, 1, 254, 245, 7, 4, 6, 5, + 71, 205, 116, 86, 146, 176, 131, 144, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2479, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e6685d5cf754" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15880291888534255130" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17556488822626032122" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d1bb26bc" + } + ] + }, + "cborHex": "d9050b9f46e6685d5cf754d8669f1bdc622155d199f61a80ff1bf3a52d90dfbd99fa44d1bb26bcff", + "cborBytes": [ + 217, 5, 11, 159, 70, 230, 104, 93, 92, 247, 84, 216, 102, 159, 27, 220, 98, 33, 85, 209, 153, 246, 26, 128, 255, + 27, 243, 165, 45, 144, 223, 189, 153, 250, 68, 209, 187, 38, 188, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2480, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16806521816680866538" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8819145393176138624" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1be93cc28c291da2ea9fd8669f1b7a63e6025ec953809fa0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 233, 60, 194, 140, 41, 29, 162, 234, 159, 216, 102, 159, 27, 122, 99, 230, 2, 94, 201, 83, 128, + 159, 160, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2481, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "168472907683808969" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de212acb8499e1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8914944749861688220" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "756518d19398" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14573730527554240785" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5211225594832798699" + } + } + ] + }, + "cborHex": "d8669f1b0256893788c546c99f47de212acb8499e19fd8669f1b7bb83f043fbd539c9f46756518d19398ffff1bca404ab32b230111a0ff1b4851fe11786ec3ebffff", + "cborBytes": [ + 216, 102, 159, 27, 2, 86, 137, 55, 136, 197, 70, 201, 159, 71, 222, 33, 42, 203, 132, 153, 225, 159, 216, 102, + 159, 27, 123, 184, 63, 4, 63, 189, 83, 156, 159, 70, 117, 101, 24, 209, 147, 152, 255, 255, 27, 202, 64, 74, 179, + 43, 35, 1, 17, 160, 255, 27, 72, 81, 254, 17, 120, 110, 195, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2482, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4015437312859263020" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "9d5daea256aac69408999f91" + } + ] + }, + "cborHex": "d8669f1b37b9b2f61ad3502c9f804c9d5daea256aac69408999f91ffff", + "cborBytes": [ + 216, 102, 159, 27, 55, 185, 178, 246, 26, 211, 80, 44, 159, 128, 76, 157, 93, 174, 162, 86, 170, 198, 148, 8, 153, + 159, 145, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2483, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3113788385631263866" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1280805181091587863" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "532970891666188917" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fbc6d757ad90245c236abfc9" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7532748880162702095" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9634115332097757801" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "508712080650394892" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cda5a6e7178e50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13453125271448153085" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ccc6" + } + ] + }, + "cborHex": "d8669f1b2b36660a0749dc7a9fd8669f1b11c65586b571a7179f9f1b07657e33c162ea754cfbc6d757ad90245c236abfc9ff9f1b6889b3324051c30f1b85b340d9ced4d269ff1b070f4ef12c1ddd0cbf47cda5a6e7178e501bbab31a281b7f6bfdffffff42ccc6ffff", + "cborBytes": [ + 216, 102, 159, 27, 43, 54, 102, 10, 7, 73, 220, 122, 159, 216, 102, 159, 27, 17, 198, 85, 134, 181, 113, 167, 23, + 159, 159, 27, 7, 101, 126, 51, 193, 98, 234, 117, 76, 251, 198, 215, 87, 173, 144, 36, 92, 35, 106, 191, 201, 255, + 159, 27, 104, 137, 179, 50, 64, 81, 195, 15, 27, 133, 179, 64, 217, 206, 212, 210, 105, 255, 27, 7, 15, 78, 241, + 44, 29, 221, 12, 191, 71, 205, 165, 166, 231, 23, 142, 80, 27, 186, 179, 26, 40, 27, 127, 107, 253, 255, 255, 255, + 66, 204, 198, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2484, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "149607604947820200" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11773561651960026310" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b5c06b10d518" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3792339246600392170" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3105413517355730302" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "634925047621982697" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10903042327807169564" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1966aee88e93f252e9d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "573c145271" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12956431025384907406" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "314a253168844a57bf6d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6273559463199373473" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66390a663a12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "643528162707680011" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9907019103768626290" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d25d13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e5952fa4aa4" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4466889907727598387" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "711fa7b7d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9894939217485050283" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11740114351667242096" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf77e2d7d454" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1182284145432707118" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4341929276162952533" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17609913257771153994" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8061089213882649337" + } + }, + { + "_tag": "ByteArray", + "bytearray": "660c69453ed81074429df8" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0b50473c8535ca58fc0bf1" + }, + { + "_tag": "ByteArray", + "bytearray": "db0227ef91c9" + }, + { + "_tag": "ByteArray", + "bytearray": "00f637" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "355f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc2e87" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11535603119981259723" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a86a4712ccaa537c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10639944450085816889" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17383058409648960228" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16723696918655834577" + } + } + ] + }, + "cborHex": "d87c9f9fd8669f1b02138352f49c9ea89f1ba36417f1863d14c646b5c06b10d518ffffd8669f1b34a11873bd638dea9f1b2b18a5240eaf457e1b08cfb4f7828199e91b974f633af7fe941cffffbf4a1966aee88e93f252e9d745573c14527141241bb3ce7d5f18eae28e4a314a253168844a57bf6d1b57102917d149f8a14666390a663a121b08ee45745526ab0b41891b897ccd629f23447243d25d13462e5952fa4aa4ffd8669f1b3dfd94b458e183339f45711fa7b7d81b8951e2caec4731ab1ba2ed43cd1197647046bf77e2d7d4541b1068512a9017c02effffffd8669f1b3c41a1ac118fcd559fd8669f1bf462face7ee43a4a9f1b6fdebdee38354af94b660c69453ed81074429df8ffffa09f4b0b50473c8535ca58fc0bf146db0227ef91c94300f637ffffffbf42355f43dc2e8741501ba016b1eb5c5eebcb48a86a4712ccaa537c1b93a8ad1ac1410a39ff1bf13d078630fe32e41be81681bdd7c699d1ff", + "cborBytes": [ + 216, 124, 159, 159, 216, 102, 159, 27, 2, 19, 131, 82, 244, 156, 158, 168, 159, 27, 163, 100, 23, 241, 134, 61, + 20, 198, 70, 181, 192, 107, 16, 213, 24, 255, 255, 216, 102, 159, 27, 52, 161, 24, 115, 189, 99, 141, 234, 159, + 27, 43, 24, 165, 36, 14, 175, 69, 126, 27, 8, 207, 180, 247, 130, 129, 153, 233, 27, 151, 79, 99, 58, 247, 254, + 148, 28, 255, 255, 191, 74, 25, 102, 174, 232, 142, 147, 242, 82, 233, 215, 69, 87, 60, 20, 82, 113, 65, 36, 27, + 179, 206, 125, 95, 24, 234, 226, 142, 74, 49, 74, 37, 49, 104, 132, 74, 87, 191, 109, 27, 87, 16, 41, 23, 209, 73, + 248, 161, 70, 102, 57, 10, 102, 58, 18, 27, 8, 238, 69, 116, 85, 38, 171, 11, 65, 137, 27, 137, 124, 205, 98, 159, + 35, 68, 114, 67, 210, 93, 19, 70, 46, 89, 82, 250, 74, 164, 255, 216, 102, 159, 27, 61, 253, 148, 180, 88, 225, + 131, 51, 159, 69, 113, 31, 167, 183, 216, 27, 137, 81, 226, 202, 236, 71, 49, 171, 27, 162, 237, 67, 205, 17, 151, + 100, 112, 70, 191, 119, 226, 215, 212, 84, 27, 16, 104, 81, 42, 144, 23, 192, 46, 255, 255, 255, 216, 102, 159, + 27, 60, 65, 161, 172, 17, 143, 205, 85, 159, 216, 102, 159, 27, 244, 98, 250, 206, 126, 228, 58, 74, 159, 27, 111, + 222, 189, 238, 56, 53, 74, 249, 75, 102, 12, 105, 69, 62, 216, 16, 116, 66, 157, 248, 255, 255, 160, 159, 75, 11, + 80, 71, 60, 133, 53, 202, 88, 252, 11, 241, 70, 219, 2, 39, 239, 145, 201, 67, 0, 246, 55, 255, 255, 255, 191, 66, + 53, 95, 67, 220, 46, 135, 65, 80, 27, 160, 22, 177, 235, 92, 94, 235, 203, 72, 168, 106, 71, 18, 204, 170, 83, + 124, 27, 147, 168, 173, 26, 193, 65, 10, 57, 255, 27, 241, 61, 7, 134, 48, 254, 50, 228, 27, 232, 22, 129, 189, + 215, 198, 153, 209, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2485, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17897977932991578446" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9964382346931782909" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57a9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11315565320487161249" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6961940064925761907" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bf862641a3dbe414e9fbf1b8a4898f3730ac4fd4257a91b9d08f6b4e05dcda11b609dc79a6575c173ffffff", + "cborBytes": [ + 216, 102, 159, 27, 248, 98, 100, 26, 61, 190, 65, 78, 159, 191, 27, 138, 72, 152, 243, 115, 10, 196, 253, 66, 87, + 169, 27, 157, 8, 246, 180, 224, 93, 205, 161, 27, 96, 157, 199, 154, 101, 117, 193, 115, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2486, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "675948849287620480" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16177089687954460889" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14707340489500626822" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d03810" + }, + { + "_tag": "ByteArray", + "bytearray": "37983b51ac" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3793689002769925474" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9677462138422844687" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a2af5081e9c71f668e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14288867887876775972" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51934966bcb6b5ef45be2268" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11104354456211132964" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6b26f5dee9a6866be6da09e" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14395244774199991928" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "75ba7fd6df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13552587758000040014" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1914675742854338901" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7612fb30b878cd3a174b05" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "515abe6aed" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12818534392983356844" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2252" + }, + { + "_tag": "ByteArray", + "bytearray": "591917" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1705304456166943311" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47581ead7ff48c9f79e9e0b2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4245620423838026331" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11686012377782562647" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11354509604495273693" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11494377310658894587" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12811050579422376291" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14510286303731894707" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14517422743841173516" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14958663800189748379" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15325235495010738163" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efad1bb7e21645c54562" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c43273788fb6a5f3517d" + }, + { + "_tag": "ByteArray", + "bytearray": "f8af5f2bbe" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1619408555772089445" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b096173e5a81f67809fd8669f1be080915c7e2910d99f412affffd8669f1bcc1af8409b678f869f43d038104537983b51ac9f1b34a5e40c566845621b864d408a9ffc5d0fffbf4a3a2af5081e9c71f668e11bc64c41a36b61a0244c51934966bcb6b5ef45be22681b9a1a978b667d9224419a4cc6b26f5dee9a6866be6da09effd8669f1bc7c62eda54fd1e789f4575ba7fd6df1bbc1476c2dee6684e1b1a924b7198e3d9554b7612fb30b878cd3a174b05ffffffff45515abe6aedd8669f1bb1e4951d6ae685ac9f42225243591917bf1b17aa755e27b8aa4f4c47581ead7ff48c9f79e9e0b21b3aeb7947fe024a5b1ba22d0e57aa8c2f571b9d93525396b3aedd1b9f843b43a4221afb1bb1c9fea04a0871631bc95ee483b327c9b31bc9783f11a4d4700c1bcf97d978ccce049b1bd4ae2c7c73529ff34aefad1bb7e21645c54562ff9f4ac43273788fb6a5f3517d45f8af5f2bbeff1b16794b8061061465ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 9, 97, 115, 229, 168, 31, 103, 128, 159, 216, 102, 159, 27, 224, 128, 145, 92, 126, 41, 16, + 217, 159, 65, 42, 255, 255, 216, 102, 159, 27, 204, 26, 248, 64, 155, 103, 143, 134, 159, 67, 208, 56, 16, 69, 55, + 152, 59, 81, 172, 159, 27, 52, 165, 228, 12, 86, 104, 69, 98, 27, 134, 77, 64, 138, 159, 252, 93, 15, 255, 191, + 74, 58, 42, 245, 8, 30, 156, 113, 246, 104, 225, 27, 198, 76, 65, 163, 107, 97, 160, 36, 76, 81, 147, 73, 102, + 188, 182, 181, 239, 69, 190, 34, 104, 27, 154, 26, 151, 139, 102, 125, 146, 36, 65, 154, 76, 198, 178, 111, 93, + 238, 154, 104, 102, 190, 109, 160, 158, 255, 216, 102, 159, 27, 199, 198, 46, 218, 84, 253, 30, 120, 159, 69, 117, + 186, 127, 214, 223, 27, 188, 20, 118, 194, 222, 230, 104, 78, 27, 26, 146, 75, 113, 152, 227, 217, 85, 75, 118, + 18, 251, 48, 184, 120, 205, 58, 23, 75, 5, 255, 255, 255, 255, 69, 81, 90, 190, 106, 237, 216, 102, 159, 27, 177, + 228, 149, 29, 106, 230, 133, 172, 159, 66, 34, 82, 67, 89, 25, 23, 191, 27, 23, 170, 117, 94, 39, 184, 170, 79, + 76, 71, 88, 30, 173, 127, 244, 140, 159, 121, 233, 224, 178, 27, 58, 235, 121, 71, 254, 2, 74, 91, 27, 162, 45, + 14, 87, 170, 140, 47, 87, 27, 157, 147, 82, 83, 150, 179, 174, 221, 27, 159, 132, 59, 67, 164, 34, 26, 251, 27, + 177, 201, 254, 160, 74, 8, 113, 99, 27, 201, 94, 228, 131, 179, 39, 201, 179, 27, 201, 120, 63, 17, 164, 212, 112, + 12, 27, 207, 151, 217, 120, 204, 206, 4, 155, 27, 212, 174, 44, 124, 115, 82, 159, 243, 74, 239, 173, 27, 183, + 226, 22, 69, 197, 69, 98, 255, 159, 74, 196, 50, 115, 120, 143, 182, 165, 243, 81, 125, 69, 248, 175, 95, 43, 190, + 255, 27, 22, 121, 75, 128, 97, 6, 20, 101, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2487, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4999" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17181357812813890439" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17818999030717488130" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14359440375245478894" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1916868c5b6682584e7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17334188136987724566" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "75a0" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17669316858359632098" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0202" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1200" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7252035116091844227" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16318523682149475428" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "348232" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8507f371d38f706b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + ] + }, + "cborHex": "d905059f1bffffffffffffffec424999d905059fd8669f1bee7071e667a783879f1bf749cd3596f21c02ffff801bc746faf113e89beebf4ac1916868c5b6682584e71bf08f684526f18b16ff4275a0ffbf061bf53606110e58d0e210420202124212001b64a46783e15026830e1be2770ad46551a464433482321bfffffffffffffff3488507f371d38f706bff1bffffffffffffffebff", + "cborBytes": [ + 217, 5, 5, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 66, 73, 153, 217, 5, 5, 159, 216, 102, 159, 27, 238, + 112, 113, 230, 103, 167, 131, 135, 159, 27, 247, 73, 205, 53, 150, 242, 28, 2, 255, 255, 128, 27, 199, 70, 250, + 241, 19, 232, 155, 238, 191, 74, 193, 145, 104, 104, 197, 182, 104, 37, 132, 231, 27, 240, 143, 104, 69, 38, 241, + 139, 22, 255, 66, 117, 160, 255, 191, 6, 27, 245, 54, 6, 17, 14, 88, 208, 226, 16, 66, 2, 2, 18, 66, 18, 0, 27, + 100, 164, 103, 131, 225, 80, 38, 131, 14, 27, 226, 119, 10, 212, 101, 81, 164, 100, 67, 52, 130, 50, 27, 255, 255, + 255, 255, 255, 255, 255, 243, 72, 133, 7, 243, 113, 211, 143, 112, 107, 255, 27, 255, 255, 255, 255, 255, 255, + 255, 235, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2488, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6095533530185471422" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1501a8b4ae38ada11fa97" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "03b03768db57e4be151a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9dc6bcd7fa525498" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a88f65" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1146508871057321276" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2090" + } + ] + }, + "cborHex": "d905069fbf1b5497af733f3015be4bf1501a8b4ae38ada11fa974a03b03768db57e4be151a489dc6bcd7fa525498ffbf43a88f651b0fe937be6734ad3cff422090ff", + "cborBytes": [ + 217, 5, 6, 159, 191, 27, 84, 151, 175, 115, 63, 48, 21, 190, 75, 241, 80, 26, 139, 74, 227, 138, 218, 17, 250, + 151, 74, 3, 176, 55, 104, 219, 87, 228, 190, 21, 26, 72, 157, 198, 188, 215, 250, 82, 84, 152, 255, 191, 67, 168, + 143, 101, 27, 15, 233, 55, 190, 103, 52, 173, 60, 255, 66, 32, 144, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2489, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5ca9aa1692" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3514550597316202081" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8b4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6752534836633733050" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10427294922820827097" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7531661373489428337" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4a64b0d4cb06095e04c53e7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11844117163531416966" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5648703461156717163" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12825522564188631738" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4455db6aac" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fb" + }, + { + "_tag": "ByteArray", + "bytearray": "f494" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "34d02358307769" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8710198428979563067" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55931c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10139608247807812204" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d543fd15e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd214606002f6a533030d4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0bf52e8419eeac9af6ba5fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15019473501672896544" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7bf11fcccc81f8a54de" + } + } + ] + } + ] + }, + "cborHex": "d9050d9fd8669f1bfffffffffffffff99f455ca9aa1692ffffbf1b30c63125ba2b4e6142b8b41b5db5d2a84f0107ba1b90b5317c72f837d91b6885d61d5f5e37714cb4a64b0d4cb06095e04c53e71ba45ec1ceb265b5861b4e6439deabc4026b1bb1fd68d1d13872ba454455db6aacff41fb42f494bf4734d023583077691b78e0d752927e0a3b4355931c1b8cb71ffabc34a26c455d543fd15e4bbd214606002f6a533030d44cd0bf52e8419eeac9af6ba5fd1bd06fe392bc9af82041e34ad7bf11fcccc81f8a54deffff", + "cborBytes": [ + 217, 5, 13, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 69, 92, 169, 170, 22, 146, 255, + 255, 191, 27, 48, 198, 49, 37, 186, 43, 78, 97, 66, 184, 180, 27, 93, 181, 210, 168, 79, 1, 7, 186, 27, 144, 181, + 49, 124, 114, 248, 55, 217, 27, 104, 133, 214, 29, 95, 94, 55, 113, 76, 180, 166, 75, 13, 76, 176, 96, 149, 224, + 76, 83, 231, 27, 164, 94, 193, 206, 178, 101, 181, 134, 27, 78, 100, 57, 222, 171, 196, 2, 107, 27, 177, 253, 104, + 209, 209, 56, 114, 186, 69, 68, 85, 219, 106, 172, 255, 65, 251, 66, 244, 148, 191, 71, 52, 208, 35, 88, 48, 119, + 105, 27, 120, 224, 215, 82, 146, 126, 10, 59, 67, 85, 147, 28, 27, 140, 183, 31, 250, 188, 52, 162, 108, 69, 93, + 84, 63, 209, 94, 75, 189, 33, 70, 6, 0, 47, 106, 83, 48, 48, 212, 76, 208, 191, 82, 232, 65, 158, 234, 201, 175, + 107, 165, 253, 27, 208, 111, 227, 146, 188, 154, 248, 32, 65, 227, 74, 215, 191, 17, 252, 204, 200, 31, 138, 84, + 222, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2490, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15963306492113729489" + }, + "fields": [] + }, + "cborHex": "d8669f1bdd890ead672037d180ff", + "cborBytes": [216, 102, 159, 27, 221, 137, 14, 173, 103, 32, 55, 209, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2491, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4742196738434823804" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1136611486482674674" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3536893423836015961" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "302629627028264372" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9702caab4206b005a6ac06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2525425556813282583" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b41cfaacef16c767c9f9f1b0fc60e1ffb6db3f2a0ff9fd8669f1b311591d468292d5980ffbf111b0433280ad98755b4410242fc074b9702caab4206b005a6ac061b230c1d29e48c7d17ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 65, 207, 170, 206, 241, 108, 118, 124, 159, 159, 27, 15, 198, 14, 31, 251, 109, 179, 242, 160, + 255, 159, 216, 102, 159, 27, 49, 21, 145, 212, 104, 41, 45, 89, 128, 255, 191, 17, 27, 4, 51, 40, 10, 217, 135, + 85, 180, 65, 2, 66, 252, 7, 75, 151, 2, 202, 171, 66, 6, 176, 5, 166, 172, 6, 27, 35, 12, 29, 41, 228, 140, 125, + 23, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2492, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4027354796003750102" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "dcbd69393db6306777" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8917943878914231004" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44aa2108" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9119043049054687635" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e656f03e5258f1c" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "75f0c9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13423097568320119299" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1986355274f8" + }, + { + "_tag": "ByteArray", + "bytearray": "9c" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4287659086217250028" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7062df6aa91839a5" + } + } + ] + } + ] + }, + "cborHex": "d905069fd8669f1b37e409d96044f0d69fa049dcbd69393db6306777bf1b7bc2e6b5658d4adc4444aa21081b7e8d59569e665193484e656f03e5258f1cffffff9f9f4375f0c91bba486c1ea9216203461986355274f8419cffffbf1b3b80d338cff484ec487062df6aa91839a5ffff", + "cborBytes": [ + 217, 5, 6, 159, 216, 102, 159, 27, 55, 228, 9, 217, 96, 68, 240, 214, 159, 160, 73, 220, 189, 105, 57, 61, 182, + 48, 103, 119, 191, 27, 123, 194, 230, 181, 101, 141, 74, 220, 68, 68, 170, 33, 8, 27, 126, 141, 89, 86, 158, 102, + 81, 147, 72, 78, 101, 111, 3, 229, 37, 143, 28, 255, 255, 255, 159, 159, 67, 117, 240, 201, 27, 186, 72, 108, 30, + 169, 33, 98, 3, 70, 25, 134, 53, 82, 116, 248, 65, 156, 255, 255, 191, 27, 59, 128, 211, 56, 207, 244, 132, 236, + 72, 112, 98, 223, 106, 169, 24, 57, 165, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2493, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18284591174669050690" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5368045872205872703" + } + } + ] + }, + "cborHex": "d8669f1bfdbfeacc256423429fa01b4a7f214796d53e3fffff", + "cborBytes": [ + 216, 102, 159, 27, 253, 191, 234, 204, 37, 100, 35, 66, 159, 160, 27, 74, 127, 33, 71, 150, 213, 62, 63, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2494, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3d44" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c83061d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9814835499776470347" + } + } + } + ] + } + ] + }, + "cborHex": "d905019f423d44bf44c83061d91b88354ce2c511ed4bffff", + "cborBytes": [ + 217, 5, 1, 159, 66, 61, 68, 191, 68, 200, 48, 97, 217, 27, 136, 53, 76, 226, 197, 17, 237, 75, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2495, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16557547910151737231" + }, + "fields": [] + }, + "cborHex": "d8669f1be5c83a19401b0f8f80ff", + "cborBytes": [216, 102, 159, 27, 229, 200, 58, 25, 64, 27, 15, 143, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2496, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19fa0ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2497, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2035671743043626296" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11543301899868227864" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10946240179973266627" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8927274400386337912" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28c0e361fc75fb0650" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00fa2c887c747b4cb6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "910140bfa4555def" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15631052278856012376" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6b53379aa22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "968f9c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8a38db9da9c9" + }, + { + "_tag": "ByteArray", + "bytearray": "2ecfbdad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4932386673357242525" + } + }, + { + "_tag": "ByteArray", + "bytearray": "16567972" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d2f5ba00f2843276637a79" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4522575040803738316" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14418870688679100096" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7564651258748580093" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5544920749654879494" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16093171750859938656" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10865362692393744503" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "69925560d4799f87a5ff03e7" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b356b770116d4a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16864138846858540354" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f768b74bf38221810c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8326894436883923697" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15848878310992301557" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14715993328561688967" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b1c4028aa336a65389f9f1ba0320beb3cbcc918bf1b97e8db72b16a1cc31b7be40cc4b7774c784928c0e361fc75fb06504900fa2c887c747b4cb648910140bfa4555def1bd8eca73b12c5d25846b6b53379aa2243968f9cff9f468a38db9da9c9442ecfbdad1b44735b8be854409d4416567972ff9f4bd2f5ba00f2843276637a79ffffd905029fbf1b3ec36a09b92792cc1bc81a1e7f35027ec01b68fb0a3d976bb0fd1b4cf3840b26df2d061bdf566e712f5b9b601b96c985cd33e93877ff4c69925560d4799f87a5ff03e7a09f47b356b770116d4a1bea0974ee61de754249f768b74bf38221810c1b738f125f60a482f11bdbf286da5716cdf5ff1bcc39b5f6b1f01187ffffff", + "cborBytes": [ + 216, 102, 159, 27, 28, 64, 40, 170, 51, 106, 101, 56, 159, 159, 27, 160, 50, 11, 235, 60, 188, 201, 24, 191, 27, + 151, 232, 219, 114, 177, 106, 28, 195, 27, 123, 228, 12, 196, 183, 119, 76, 120, 73, 40, 192, 227, 97, 252, 117, + 251, 6, 80, 73, 0, 250, 44, 136, 124, 116, 123, 76, 182, 72, 145, 1, 64, 191, 164, 85, 93, 239, 27, 216, 236, 167, + 59, 18, 197, 210, 88, 70, 182, 181, 51, 121, 170, 34, 67, 150, 143, 156, 255, 159, 70, 138, 56, 219, 157, 169, + 201, 68, 46, 207, 189, 173, 27, 68, 115, 91, 139, 232, 84, 64, 157, 68, 22, 86, 121, 114, 255, 159, 75, 210, 245, + 186, 0, 242, 132, 50, 118, 99, 122, 121, 255, 255, 217, 5, 2, 159, 191, 27, 62, 195, 106, 9, 185, 39, 146, 204, + 27, 200, 26, 30, 127, 53, 2, 126, 192, 27, 104, 251, 10, 61, 151, 107, 176, 253, 27, 76, 243, 132, 11, 38, 223, + 45, 6, 27, 223, 86, 110, 113, 47, 91, 155, 96, 27, 150, 201, 133, 205, 51, 233, 56, 119, 255, 76, 105, 146, 85, + 96, 212, 121, 159, 135, 165, 255, 3, 231, 160, 159, 71, 179, 86, 183, 112, 17, 109, 74, 27, 234, 9, 116, 238, 97, + 222, 117, 66, 73, 247, 104, 183, 75, 243, 130, 33, 129, 12, 27, 115, 143, 18, 95, 96, 164, 130, 241, 27, 219, 242, + 134, 218, 87, 22, 205, 245, 255, 27, 204, 57, 181, 246, 177, 240, 17, 135, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2498, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9703138932676011644" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3180261446443971425" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14973350486402989781" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9224099684960590667" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6630876645359174754" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16716439057487155901" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "da6dac271d501b57732e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14208622085487366573" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "634e81556ebb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15650164073761678318" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "791f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5af7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3492e5154" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7838830812284148333" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2082e0d6de13d380e2845c49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5040699021694043123" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "218e93d97e854e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9742236020218299153" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56ce8aa5ddf4b5f5dc322421" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d0073f4c47dc17fce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "873f3aad1601bdae6b30e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f456a7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de8c7668d75caf9e29e08e71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13709577955316199400" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1186026473015911098" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a8e3d476206f62e937bcb9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7884209266783560302" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13565333727268146449" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "566297069651026595" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2929703498009955681" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13151691313843317354" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6419102356200653245" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3b2a824880a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12012685913487771952" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "858e3162a1100aa2c4d8c0f3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13009894774353420338" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9686910623619040262" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13020894775199041721" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aea2c505" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "246293274d9c8830d10f687f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4357198594112142455" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17318432187073417572" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f9fd8669f1b86a87973286aa67c9f1b2c228eef9029b3611bcfcc06ef6778fed51b800295cac6de5b4b1b5c059b2d541144621be7fcb8c15afcd2bdffffff4ada6dac271d501b57732ebf1bc52f2a81993e91ad419146634e81556ebb1bd9308d4e952523ee42791f425af745e3492e51541b6cc91f1784955a6dffbf4c2082e0d6de13d380e2845c491b45f4290dafbb83f347218e93d97e854e1b8733600b372083114c56ce8aa5ddf4b5f5dc322421498d0073f4c47dc17fce4b873f3aad1601bdae6b30e843f456a74cde8c7668d75caf9e29e08e711bbe4234838f25efe8ffd8669f1b10759ccb1a52a2ba9f4ba8e3d476206f62e937bcb9d8669f1b6d6a568e497a226e9f1bbc41bf2719718d111b07dbe42f39e4e2a3ffffbf1b28a865cf281a4d611bb6843191bd38aa6a1b59153b95463681bd46b3b2a824880a1ba6b5a2313fc709304c858e3162a1100aa2c4d8c0f31bb48c6e5e2e8be0321b866ed1e383c544061bb4b382cf757a88b944aea2c505ff4c246293274d9c8830d10f687fbf1b3c77e10931e2bc771bf0576e513133d164ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 159, 216, 102, 159, 27, 134, 168, 121, 115, 40, + 106, 166, 124, 159, 27, 44, 34, 142, 239, 144, 41, 179, 97, 27, 207, 204, 6, 239, 103, 120, 254, 213, 27, 128, 2, + 149, 202, 198, 222, 91, 75, 27, 92, 5, 155, 45, 84, 17, 68, 98, 27, 231, 252, 184, 193, 90, 252, 210, 189, 255, + 255, 255, 74, 218, 109, 172, 39, 29, 80, 27, 87, 115, 46, 191, 27, 197, 47, 42, 129, 153, 62, 145, 173, 65, 145, + 70, 99, 78, 129, 85, 110, 187, 27, 217, 48, 141, 78, 149, 37, 35, 238, 66, 121, 31, 66, 90, 247, 69, 227, 73, 46, + 81, 84, 27, 108, 201, 31, 23, 132, 149, 90, 109, 255, 191, 76, 32, 130, 224, 214, 222, 19, 211, 128, 226, 132, 92, + 73, 27, 69, 244, 41, 13, 175, 187, 131, 243, 71, 33, 142, 147, 217, 126, 133, 78, 27, 135, 51, 96, 11, 55, 32, + 131, 17, 76, 86, 206, 138, 165, 221, 244, 181, 245, 220, 50, 36, 33, 73, 141, 0, 115, 244, 196, 125, 193, 127, + 206, 75, 135, 63, 58, 173, 22, 1, 189, 174, 107, 48, 232, 67, 244, 86, 167, 76, 222, 140, 118, 104, 215, 92, 175, + 158, 41, 224, 142, 113, 27, 190, 66, 52, 131, 143, 37, 239, 232, 255, 216, 102, 159, 27, 16, 117, 156, 203, 26, + 82, 162, 186, 159, 75, 168, 227, 212, 118, 32, 111, 98, 233, 55, 188, 185, 216, 102, 159, 27, 109, 106, 86, 142, + 73, 122, 34, 110, 159, 27, 188, 65, 191, 39, 25, 113, 141, 17, 27, 7, 219, 228, 47, 57, 228, 226, 163, 255, 255, + 191, 27, 40, 168, 101, 207, 40, 26, 77, 97, 27, 182, 132, 49, 145, 189, 56, 170, 106, 27, 89, 21, 59, 149, 70, 54, + 129, 189, 70, 179, 178, 168, 36, 136, 10, 27, 166, 181, 162, 49, 63, 199, 9, 48, 76, 133, 142, 49, 98, 161, 16, + 10, 162, 196, 216, 192, 243, 27, 180, 140, 110, 94, 46, 139, 224, 50, 27, 134, 110, 209, 227, 131, 197, 68, 6, 27, + 180, 179, 130, 207, 117, 122, 136, 185, 68, 174, 162, 197, 5, 255, 76, 36, 98, 147, 39, 77, 156, 136, 48, 209, 15, + 104, 127, 191, 27, 60, 119, 225, 9, 49, 226, 188, 119, 27, 240, 87, 110, 81, 49, 51, 209, 100, 255, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2499, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10097799945046550212" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f8f5c40b09fb8a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4ea9ca1c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23604585cf622f8c30c71169" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "944791b6c3cb5f0f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7938dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87d9f9f1b8c22978cb17566c447f8f5c40b09fb8aff444ea9ca1cbf4c23604585cf622f8c30c7116948944791b6c3cb5f0f437938dd41dbffa0ff", + "cborBytes": [ + 216, 125, 159, 159, 27, 140, 34, 151, 140, 177, 117, 102, 196, 71, 248, 245, 196, 11, 9, 251, 138, 255, 68, 78, + 169, 202, 28, 191, 76, 35, 96, 69, 133, 207, 98, 47, 140, 48, 199, 17, 105, 72, 148, 71, 145, 182, 195, 203, 95, + 15, 67, 121, 56, 221, 65, 219, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2500, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11362221823991366629" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6283607823736434236" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4856540567229567665" + } + }, + { + "_tag": "ByteArray", + "bytearray": "135500ed40186d" + }, + { + "_tag": "ByteArray", + "bytearray": "3e1b9a0bc894a2158b84801d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7130634934494656119" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "712459788599991268" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17248237250063338932" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15529429500823123234" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2101034452748714726" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15815282897691778264" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10713061099565828653" + } + }, + { + "_tag": "ByteArray", + "bytearray": "930890d7" + }, + { + "_tag": "ByteArray", + "bytearray": "0dbc" + }, + { + "_tag": "ByteArray", + "bytearray": "e0" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "564df443da3940144f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8b1b9e775a026ae5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1403430080134499053" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3186546153981650049" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d2702c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9021021524358156754" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b71a86dfb035ceb2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4863317541909013531" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "54696cc1f3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4108990487319776338" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1bed0ef507b5" + } + ] + } + ] + }, + "cborHex": "d8669f1b9daeb88c9e3243e59fd8669f1b5733dc0611acee3c9f9f1b4365e5ea32fe12b147135500ed40186d4c3e1b9a0bc894a2158b84801d1b62f51ab1758b7677ffffff9fd8669f1b09e32a6728409be49f41cf1bef5e0c64d3af8db41bd7839dda4108b5221b1d285fb3f8f1c2e6ffff9f1bdb7b2c00a33a9cd81b94ac704f50ad4a2d44930890d7420dbc41e0ff49564df443da3940144fff488b1b9e775a026ae59fbf1b1379fc38e183caed1b2c38e2d81076a481445d2702c11b7d311b47ee8551d248b71a86dfb035ceb21b437df9899369a41bff4554696cc1f31b39061113ee278c52461bed0ef507b5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 157, 174, 184, 140, 158, 50, 67, 229, 159, 216, 102, 159, 27, 87, 51, 220, 6, 17, 172, 238, 60, + 159, 159, 27, 67, 101, 229, 234, 50, 254, 18, 177, 71, 19, 85, 0, 237, 64, 24, 109, 76, 62, 27, 154, 11, 200, 148, + 162, 21, 139, 132, 128, 29, 27, 98, 245, 26, 177, 117, 139, 118, 119, 255, 255, 255, 159, 216, 102, 159, 27, 9, + 227, 42, 103, 40, 64, 155, 228, 159, 65, 207, 27, 239, 94, 12, 100, 211, 175, 141, 180, 27, 215, 131, 157, 218, + 65, 8, 181, 34, 27, 29, 40, 95, 179, 248, 241, 194, 230, 255, 255, 159, 27, 219, 123, 44, 0, 163, 58, 156, 216, + 27, 148, 172, 112, 79, 80, 173, 74, 45, 68, 147, 8, 144, 215, 66, 13, 188, 65, 224, 255, 73, 86, 77, 244, 67, 218, + 57, 64, 20, 79, 255, 72, 139, 27, 158, 119, 90, 2, 106, 229, 159, 191, 27, 19, 121, 252, 56, 225, 131, 202, 237, + 27, 44, 56, 226, 216, 16, 118, 164, 129, 68, 93, 39, 2, 193, 27, 125, 49, 27, 71, 238, 133, 81, 210, 72, 183, 26, + 134, 223, 176, 53, 206, 178, 27, 67, 125, 249, 137, 147, 105, 164, 27, 255, 69, 84, 105, 108, 193, 243, 27, 57, 6, + 17, 19, 238, 39, 140, 82, 70, 27, 237, 14, 245, 7, 181, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2501, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "16" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3731362529284044564" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10690048266164169717" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8f38a9934ba4" + }, + { + "_tag": "ByteArray", + "bytearray": "01370604da2d" + } + ] + }, + "cborHex": "d905019f411680d87b9fbf1b33c87673662db7141b945aae42807eebf5ffff468f38a9934ba44601370604da2dff", + "cborBytes": [ + 217, 5, 1, 159, 65, 22, 128, 216, 123, 159, 191, 27, 51, 200, 118, 115, 102, 45, 183, 20, 27, 148, 90, 174, 66, + 128, 126, 235, 245, 255, 255, 70, 143, 56, 169, 147, 75, 164, 70, 1, 55, 6, 4, 218, 45, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2502, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3206878250879905271" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4102708107158212127" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6675598788105138326" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18305832166533491714" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8701645007268033950" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16191515020106474246" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11867303791681227805" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9405591034351561570" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12665196728800146832" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3696497370850900845" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16323121853375145095" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13526813731279596034" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11764721666762399221" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9622495109731703761" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e354dd674927ab8e406a01" + }, + { + "_tag": "ByteArray", + "bytearray": "20d9d2" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7adc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13403183809175236942" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5523601055770391527" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0695e41c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6210042825144335142" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d37dfd6344598472" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9359290835220206678" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13246797150841151871" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16100979245116630253" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a07132d6dcd1b2bdcd238b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16985731721285047287" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2af1fd0f88df8a6d510c73" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13788115042581512716" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c79384556cc5c881fee" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05cc3ea3b4236b2e5a3b" + }, + { + "_tag": "ByteArray", + "bytearray": "e38272053f8c8bb778" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14825657963728875214" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c47bf510ab5e4da9c511" + }, + { + "_tag": "ByteArray", + "bytearray": "c36f43" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "88d0f4bcb7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1303661261240618356" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6735242981143916203" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9746452561570003897" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2987724113094576801" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "76056a957174" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1707150925415897908" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2477798607638950724" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5c25e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5bec0460d5b5" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "885fb08eada80e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10142409578874033949" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5121372061728113542" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10506720557005519089" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12236719843287556801" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18177378373359335674" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14081884343386925459" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13802312307236206075" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16307280218448357510" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a025274741c00a" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050d9f9fbf1b2c811ec7459f6df71b38efbf495047ce1f1b5ca47dba9c08f0961bfe0b615df425ec021b78c27407e3c3359e1be0b3d11fdcd923061ba4b121ec40ce4c1d1b82875f36791fab621bafc3d1525e9275901b334c98c61ebbbb6dff1be28760d78fd764879f1bbbb8e56ba3cbea021ba344b00614b6ddf51b8589f851f47ddbd1ff4be354dd674927ab8e406a014320d9d2ff427adcd8669f1bba01aca94d28314e9fbf1b4ca7c5e51a2ab3e7440695e41c1b562e810c18b0fb2648d37dfd63445984721b81e2e16d4ede94561bb7d613d2fb8b217f1bdf722b51191d24ed4ba07132d6dcd1b2bdcd238b1bebb97101994793f74b2af1fd0f88df8a6d510c73ff1bbf593994234a820c4a0c79384556cc5c881fee9f4a05cc3ea3b4236b2e5a3b49e38272053f8c8bb7781bcdbf515e49802ece4ac47bf510ab5e4da9c51143c36f43ff9f4588d0f4bcb71b121789028faf4d741b5d7863ce7706aeabffffffd8669f1b87425af740937bb99f1b297687404fdf0aa19f4676056a957174ffbf1b17b104b8c764db341b2262e8b4a946f34443f5c25e465bec0460d5b5ff47885fb08eada80ebf1b8cc113c6734e571d1b4712c4c185ea03861b91cf5eadfa9bb8f1410a1ba9d18fdd5320e2c11bfc4305529bf378fa1bc36ce73387b669931bbf8ba9ea67d0f5fb1be24f18f5815e688647a025274741c00affffffff", + "cborBytes": [ + 217, 5, 13, 159, 159, 191, 27, 44, 129, 30, 199, 69, 159, 109, 247, 27, 56, 239, 191, 73, 80, 71, 206, 31, 27, 92, + 164, 125, 186, 156, 8, 240, 150, 27, 254, 11, 97, 93, 244, 37, 236, 2, 27, 120, 194, 116, 7, 227, 195, 53, 158, + 27, 224, 179, 209, 31, 220, 217, 35, 6, 27, 164, 177, 33, 236, 64, 206, 76, 29, 27, 130, 135, 95, 54, 121, 31, + 171, 98, 27, 175, 195, 209, 82, 94, 146, 117, 144, 27, 51, 76, 152, 198, 30, 187, 187, 109, 255, 27, 226, 135, 96, + 215, 143, 215, 100, 135, 159, 27, 187, 184, 229, 107, 163, 203, 234, 2, 27, 163, 68, 176, 6, 20, 182, 221, 245, + 27, 133, 137, 248, 81, 244, 125, 219, 209, 255, 75, 227, 84, 221, 103, 73, 39, 171, 142, 64, 106, 1, 67, 32, 217, + 210, 255, 66, 122, 220, 216, 102, 159, 27, 186, 1, 172, 169, 77, 40, 49, 78, 159, 191, 27, 76, 167, 197, 229, 26, + 42, 179, 231, 68, 6, 149, 228, 28, 27, 86, 46, 129, 12, 24, 176, 251, 38, 72, 211, 125, 253, 99, 68, 89, 132, 114, + 27, 129, 226, 225, 109, 78, 222, 148, 86, 27, 183, 214, 19, 210, 251, 139, 33, 127, 27, 223, 114, 43, 81, 25, 29, + 36, 237, 75, 160, 113, 50, 214, 220, 209, 178, 189, 205, 35, 139, 27, 235, 185, 113, 1, 153, 71, 147, 247, 75, 42, + 241, 253, 15, 136, 223, 138, 109, 81, 12, 115, 255, 27, 191, 89, 57, 148, 35, 74, 130, 12, 74, 12, 121, 56, 69, + 86, 204, 92, 136, 31, 238, 159, 74, 5, 204, 62, 163, 180, 35, 107, 46, 90, 59, 73, 227, 130, 114, 5, 63, 140, 139, + 183, 120, 27, 205, 191, 81, 94, 73, 128, 46, 206, 74, 196, 123, 245, 16, 171, 94, 77, 169, 197, 17, 67, 195, 111, + 67, 255, 159, 69, 136, 208, 244, 188, 183, 27, 18, 23, 137, 2, 143, 175, 77, 116, 27, 93, 120, 99, 206, 119, 6, + 174, 171, 255, 255, 255, 216, 102, 159, 27, 135, 66, 90, 247, 64, 147, 123, 185, 159, 27, 41, 118, 135, 64, 79, + 223, 10, 161, 159, 70, 118, 5, 106, 149, 113, 116, 255, 191, 27, 23, 177, 4, 184, 199, 100, 219, 52, 27, 34, 98, + 232, 180, 169, 70, 243, 68, 67, 245, 194, 94, 70, 91, 236, 4, 96, 213, 181, 255, 71, 136, 95, 176, 142, 173, 168, + 14, 191, 27, 140, 193, 19, 198, 115, 78, 87, 29, 27, 71, 18, 196, 193, 133, 234, 3, 134, 27, 145, 207, 94, 173, + 250, 155, 184, 241, 65, 10, 27, 169, 209, 143, 221, 83, 32, 226, 193, 27, 252, 67, 5, 82, 155, 243, 120, 250, 27, + 195, 108, 231, 51, 135, 182, 105, 147, 27, 191, 139, 169, 234, 103, 208, 245, 251, 27, 226, 79, 24, 245, 129, 94, + 104, 134, 71, 160, 37, 39, 71, 65, 192, 10, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2503, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1045558814396750198" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14261479674263399435" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d31a2512ea19" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8e924e223eb9cddd6c3f18" + } + ] + }, + "cborHex": "d8669f1b0e829233bbe599769f9f9f1bc5eaf43403ec6c0b46d31a2512ea19ffff4b8e924e223eb9cddd6c3f18ffff", + "cborBytes": [ + 216, 102, 159, 27, 14, 130, 146, 51, 187, 229, 153, 118, 159, 159, 159, 27, 197, 234, 244, 52, 3, 236, 108, 11, + 70, 211, 26, 37, 18, 234, 25, 255, 255, 75, 142, 146, 78, 34, 62, 185, 205, 221, 108, 63, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2504, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8176831827195335995" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d102c63de389b7898cf3db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38394fb4862ee3fa209342a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a08b11" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "607554c2edfe47" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d062d7a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38cc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b285087b420f9c17e0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f42102f7d5f" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7179f1396016153b9fbf411a4bd102c63de389b7898cf3db4c38394fb4862ee3fa209342a143a08b1147607554c2edfe47442d062d7a419e4238cc49b285087b420f9c17e0461f42102f7d5fffffff", + "cborBytes": [ + 216, 102, 159, 27, 113, 121, 241, 57, 96, 22, 21, 59, 159, 191, 65, 26, 75, 209, 2, 198, 61, 227, 137, 183, 137, + 140, 243, 219, 76, 56, 57, 79, 180, 134, 46, 227, 250, 32, 147, 66, 161, 67, 160, 139, 17, 71, 96, 117, 84, 194, + 237, 254, 71, 68, 45, 6, 45, 122, 65, 158, 66, 56, 204, 73, 178, 133, 8, 123, 66, 15, 156, 23, 224, 70, 31, 66, + 16, 47, 125, 95, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2505, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3138807863026168912" + } + } + ] + }, + "cborHex": "d87c9f1b2b8f491f0de0b450ff", + "cborBytes": [216, 124, 159, 27, 43, 143, 73, 31, 13, 224, 180, 80, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2506, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16303374981007452567" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1be241392a8ef0a9979fd87980ffff", + "cborBytes": [216, 102, 159, 27, 226, 65, 57, 42, 142, 240, 169, 151, 159, 216, 121, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2507, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4581686132893858891" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1790403888769149141" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3684458bfa7583" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5402387332650886951" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3501153" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13867159885861256410" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "178c0669773867" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b3f956b435778bc4b9fbf1b18d8cad9d29028d5473684458bfa75831b4af922a7edb9e72744f35011531bc0720c71e04e7cda47178c0669773867ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 63, 149, 107, 67, 87, 120, 188, 75, 159, 191, 27, 24, 216, 202, 217, 210, 144, 40, 213, 71, 54, + 132, 69, 139, 250, 117, 131, 27, 74, 249, 34, 167, 237, 185, 231, 39, 68, 243, 80, 17, 83, 27, 192, 114, 12, 113, + 224, 78, 124, 218, 71, 23, 140, 6, 105, 119, 56, 103, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2508, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8816933257680406966" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13952813914406310575" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8234387093823059094" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18134120730112006181" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3297096223625100001" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "46" + }, + { + "_tag": "ByteArray", + "bytearray": "1deb5f5207f9bc" + }, + { + "_tag": "ByteArray", + "bytearray": "dc1573fb7746b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8172672759381948195" + } + }, + { + "_tag": "ByteArray", + "bytearray": "38c35fcd" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0707c168" + }, + { + "_tag": "ByteArray", + "bytearray": "696d4c36" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "43794bb6616c4a63" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2657332fa8a3e9c1ba3244" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13418349400902721232" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a55d27403cbacbfdcf4b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6ae9c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c715762d565a2e0140ba0343" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2259840197686239984" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f75edf238526807770" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4084978764027595433" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fba4f2a4e6d6cbdb41f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "536784314983265225" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7391543958922439314" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13399509419929494733" + } + }, + { + "_tag": "ByteArray", + "bytearray": "165040f6c3014e6064de" + }, + { + "_tag": "ByteArray", + "bytearray": "474e" + }, + { + "_tag": "ByteArray", + "bytearray": "e667" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0bea8f97b5065fc288b5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7472266602095605953" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "690b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44cc1efe88" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "deabfe06b3fb3c16bc2b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58909d6e89ea8881" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07017f1d0c1a" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7a5c0a15705e49b69fd8669f1bfffffffffffffff39f1bc1a25a547950d2af1b72466b6f26627496d8669f1bfba956b9b05f982580ffd8669f1b2dc1a38bef74bae19f4146471deb5f5207f9bc47dc1573fb7746b01b716b2a92f078f7234438c35fcdffffffff440707c16844696d4c369fbf4843794bb6616c4a634b2657332fa8a3e9c1ba324441441bba378dafc8e1ded04aa55d27403cbacbfdcf4b43f6ae9c4cc715762d565a2e0140ba03431b1f5c90afc83ca2f049f75edf2385268077701b38b0c28af0e10aa94afba4f2a4e6d6cbdb41f11b07730a7d8f9433c9ffd8669f1b66940a118d41aa929f1bb9f49ed2e365e4cd4a165040f6c3014e6064de42474e42e667ffffa0d8669f1bffffffffffffffed9f4a0bea8f97b5065fc288b507044103ffffffbf101b67b2d2e284ec78c1423f4c42690b4544cc1efe884adeabfe06b3fb3c16bc2b4858909d6e89ea88814607017f1d0c1affffff", + "cborBytes": [ + 216, 102, 159, 27, 122, 92, 10, 21, 112, 94, 73, 182, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 243, 159, 27, 193, 162, 90, 84, 121, 80, 210, 175, 27, 114, 70, 107, 111, 38, 98, 116, 150, 216, 102, 159, 27, + 251, 169, 86, 185, 176, 95, 152, 37, 128, 255, 216, 102, 159, 27, 45, 193, 163, 139, 239, 116, 186, 225, 159, 65, + 70, 71, 29, 235, 95, 82, 7, 249, 188, 71, 220, 21, 115, 251, 119, 70, 176, 27, 113, 107, 42, 146, 240, 120, 247, + 35, 68, 56, 195, 95, 205, 255, 255, 255, 255, 68, 7, 7, 193, 104, 68, 105, 109, 76, 54, 159, 191, 72, 67, 121, 75, + 182, 97, 108, 74, 99, 75, 38, 87, 51, 47, 168, 163, 233, 193, 186, 50, 68, 65, 68, 27, 186, 55, 141, 175, 200, + 225, 222, 208, 74, 165, 93, 39, 64, 60, 186, 203, 253, 207, 75, 67, 246, 174, 156, 76, 199, 21, 118, 45, 86, 90, + 46, 1, 64, 186, 3, 67, 27, 31, 92, 144, 175, 200, 60, 162, 240, 73, 247, 94, 223, 35, 133, 38, 128, 119, 112, 27, + 56, 176, 194, 138, 240, 225, 10, 169, 74, 251, 164, 242, 164, 230, 214, 203, 219, 65, 241, 27, 7, 115, 10, 125, + 143, 148, 51, 201, 255, 216, 102, 159, 27, 102, 148, 10, 17, 141, 65, 170, 146, 159, 27, 185, 244, 158, 210, 227, + 101, 228, 205, 74, 22, 80, 64, 246, 195, 1, 78, 96, 100, 222, 66, 71, 78, 66, 230, 103, 255, 255, 160, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 74, 11, 234, 143, 151, 181, 6, 95, 194, 136, 181, 7, 4, 65, + 3, 255, 255, 255, 191, 16, 27, 103, 178, 210, 226, 132, 236, 120, 193, 66, 63, 76, 66, 105, 11, 69, 68, 204, 30, + 254, 136, 74, 222, 171, 254, 6, 179, 251, 60, 22, 188, 43, 72, 88, 144, 157, 110, 137, 234, 136, 129, 70, 7, 1, + 127, 29, 12, 26, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2509, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d2dea1cb99" + } + ] + }, + "cborHex": "d905009f45d2dea1cb99ff", + "cborBytes": [217, 5, 0, 159, 69, 210, 222, 161, 203, 153, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2510, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18380527738006675867" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cbd608" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5265359851653005780" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a58d771b9ca60e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04eb977dae3e1887ae7371e3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "489622fad5f0d65f5d7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7c5035636" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "871e49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17337512665499231631" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bff14c097f01a219b9f43cbd608bf1b491250e3546181d447a58d771b9ca60e41484c04eb977dae3e1887ae7371e34a489622fad5f0d65f5d7d45e7c503563643871e491bf09b37e943eae58fffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 20, 192, 151, 240, 26, 33, 155, 159, 67, 203, 214, 8, 191, 27, 73, 18, 80, 227, 84, 97, + 129, 212, 71, 165, 141, 119, 27, 156, 166, 14, 65, 72, 76, 4, 235, 151, 125, 174, 62, 24, 135, 174, 115, 113, 227, + 74, 72, 150, 34, 250, 213, 240, 214, 95, 93, 125, 69, 231, 197, 3, 86, 54, 67, 135, 30, 73, 27, 240, 155, 55, 233, + 67, 234, 229, 143, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2511, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3247031927114739832" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b68ad341" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16648991778465866631" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2d0fc6558e06b0789f9f410d9f44b68ad341ff1be70d19cff7db6387ffffff", + "cborBytes": [ + 216, 102, 159, 27, 45, 15, 198, 85, 142, 6, 176, 120, 159, 159, 65, 13, 159, 68, 182, 138, 211, 65, 255, 27, 231, + 13, 25, 207, 247, 219, 99, 135, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2512, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4574881353859766728" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a947b415" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7725534621682659354" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "699a94c72b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10418777542927478226" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13753454427677148175" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16047334468495722080" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6bce15503450f7df0" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "70d253754cb20847" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12273671743999661448" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "98545301d0d97a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6193647951875176990" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dbc2880f38b0b80cf7d0" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18125556522974873121" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7bcb718396fb8202e554f961" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "315742621507308661" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11419866717618683220" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4212215529083927204" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6109529946759527634" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15613384997314283439" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12548535971848910733" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15968259648184385200" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8911527001825669712" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16002105829788351872" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48db5eb5e1f6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17969827558986972158" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3da196ce145828f" + } + } + ] + } + ] + }, + "cborHex": "d9050b9fbf1b3f7d3e5a425e99c844a947b4151b6b369cce8960701a45699a94c72b1b9096eef968026dd21bbede15eedc38440f1bdeb395ad3a91c66049c6bce15503450f7df0ff9f4870d253754cb20847d8669f1baa54d76c26d955889f4798545301d0d97a1b55f441ff33587a1e4adbc2880f38b0b80cf7d0ffff41a01bfb8ae99fd42e8621ff4c7bcb718396fb8202e554f961bf1b0461be3dcb64cc751b9e7b84464df7bd541b3a74cbb4d86e7aa41b54c9691ded367cd21bd8ade2ee8a54c7af1bae255afb3d43f78d1bdd9aa78beb3bfeb01b7bac1a97c61ef2501bde12e6782abdfd804648db5eb5e1f61bf961a6f4e8717bfe48d3da196ce145828fffff", + "cborBytes": [ + 217, 5, 11, 159, 191, 27, 63, 125, 62, 90, 66, 94, 153, 200, 68, 169, 71, 180, 21, 27, 107, 54, 156, 206, 137, 96, + 112, 26, 69, 105, 154, 148, 199, 43, 27, 144, 150, 238, 249, 104, 2, 109, 210, 27, 190, 222, 21, 238, 220, 56, 68, + 15, 27, 222, 179, 149, 173, 58, 145, 198, 96, 73, 198, 188, 225, 85, 3, 69, 15, 125, 240, 255, 159, 72, 112, 210, + 83, 117, 76, 178, 8, 71, 216, 102, 159, 27, 170, 84, 215, 108, 38, 217, 85, 136, 159, 71, 152, 84, 83, 1, 208, + 217, 122, 27, 85, 244, 65, 255, 51, 88, 122, 30, 74, 219, 194, 136, 15, 56, 176, 184, 12, 247, 208, 255, 255, 65, + 160, 27, 251, 138, 233, 159, 212, 46, 134, 33, 255, 76, 123, 203, 113, 131, 150, 251, 130, 2, 229, 84, 249, 97, + 191, 27, 4, 97, 190, 61, 203, 100, 204, 117, 27, 158, 123, 132, 70, 77, 247, 189, 84, 27, 58, 116, 203, 180, 216, + 110, 122, 164, 27, 84, 201, 105, 29, 237, 54, 124, 210, 27, 216, 173, 226, 238, 138, 84, 199, 175, 27, 174, 37, + 90, 251, 61, 67, 247, 141, 27, 221, 154, 167, 139, 235, 59, 254, 176, 27, 123, 172, 26, 151, 198, 30, 242, 80, 27, + 222, 18, 230, 120, 42, 189, 253, 128, 70, 72, 219, 94, 181, 225, 246, 27, 249, 97, 166, 244, 232, 113, 123, 254, + 72, 211, 218, 25, 108, 225, 69, 130, 143, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2513, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17894885361061086459" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15240466622131788289" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3835473898308966104" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11793744456790587380" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de963a9c926cb41b80" + }, + { + "_tag": "ByteArray", + "bytearray": "8e1f023d" + }, + { + "_tag": "ByteArray", + "bytearray": "c353d270c883fb044c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16896086334567210123" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5225013285355390707" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6284801711053805514" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3520245442084679723" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3924798281582813177" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "162f7d0aa60215" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14041933072895357215" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7530077745254793821" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "522d3f25497a845b8a0b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3ce9466d3f93ed83a52f523" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1742025815848598655" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "836106120d7f7a89fd1dca" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4371627488478987350" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "74982732740993874" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "32b5d31fa0d51b" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1758507955412445562" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10683477350399560052" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4427544149584908846" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1711011363520027043" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8502800519981766791" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18055586931594397367" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ea4423a21c98d1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7726342141636325923" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf857676cba6244fb9f1bd38103a5375cda01d8669f1b353a573075fd16d89f9f1ba3abcc18f6bc37f449de963a9c926cb41b80448e1f023d49c353d270c883fb044cff1bea7af5008235dc8b1b4882f9e6544e06f3bf1b573819db9f2117ca1b30da6c9419a5302bffffffbf1b3677af3e1cce9ff947162f7d0aa602151bc2def7bb81bcb11f1b688035d030fc825d4a522d3f25497a845b8a0b4cf3ce9466d3f93ed83a52f523ffd8669f1b182ceb3ff7373c7f9f4b836106120d7f7a89fd1dcaffffd8669f1b3cab2409f51f84569fd8669f1b010a6465ed50a3529f4732b5d31fa0d51bffffd8669f1b186779ab210ea97a9f1b9443560bf47f49741b3d71cbf2275e122e1b17bebbc5114499a31b76000405ed8518871bfa9254a6d4de86b7ffff47ea4423a21c98d1d8669f1b6b397b3ded5d32239f4102ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 248, 87, 103, 108, 186, 98, 68, 251, 159, 27, 211, 129, 3, 165, 55, 92, 218, 1, 216, 102, 159, + 27, 53, 58, 87, 48, 117, 253, 22, 216, 159, 159, 27, 163, 171, 204, 24, 246, 188, 55, 244, 73, 222, 150, 58, 156, + 146, 108, 180, 27, 128, 68, 142, 31, 2, 61, 73, 195, 83, 210, 112, 200, 131, 251, 4, 76, 255, 27, 234, 122, 245, + 0, 130, 53, 220, 139, 27, 72, 130, 249, 230, 84, 78, 6, 243, 191, 27, 87, 56, 25, 219, 159, 33, 23, 202, 27, 48, + 218, 108, 148, 25, 165, 48, 43, 255, 255, 255, 191, 27, 54, 119, 175, 62, 28, 206, 159, 249, 71, 22, 47, 125, 10, + 166, 2, 21, 27, 194, 222, 247, 187, 129, 188, 177, 31, 27, 104, 128, 53, 208, 48, 252, 130, 93, 74, 82, 45, 63, + 37, 73, 122, 132, 91, 138, 11, 76, 243, 206, 148, 102, 211, 249, 62, 216, 58, 82, 245, 35, 255, 216, 102, 159, 27, + 24, 44, 235, 63, 247, 55, 60, 127, 159, 75, 131, 97, 6, 18, 13, 127, 122, 137, 253, 29, 202, 255, 255, 216, 102, + 159, 27, 60, 171, 36, 9, 245, 31, 132, 86, 159, 216, 102, 159, 27, 1, 10, 100, 101, 237, 80, 163, 82, 159, 71, 50, + 181, 211, 31, 160, 213, 27, 255, 255, 216, 102, 159, 27, 24, 103, 121, 171, 33, 14, 169, 122, 159, 27, 148, 67, + 86, 11, 244, 127, 73, 116, 27, 61, 113, 203, 242, 39, 94, 18, 46, 27, 23, 190, 187, 197, 17, 68, 153, 163, 27, + 118, 0, 4, 5, 237, 133, 24, 135, 27, 250, 146, 84, 166, 212, 222, 134, 183, 255, 255, 71, 234, 68, 35, 162, 28, + 152, 209, 216, 102, 159, 27, 107, 57, 123, 61, 237, 93, 50, 35, 159, 65, 2, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2514, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9409202320277349537" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "32e80056fef806692828" + }, + { + "_tag": "ByteArray", + "bytearray": "c0" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "47fcf2079c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "85a3ce563a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5613855406903569539" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14387553741270175596" + } + }, + { + "_tag": "ByteArray", + "bytearray": "94bf0083dc14f96ff788ee" + } + ] + } + ] + }, + "cborHex": "d8669f1b829433a87fe9a4a19f9f9f4a32e80056fef80669282841c0ffbf0813ff4547fcf2079cff4585a3ce563ad8669f1b4de86bbfc4e4ac839f1bc7aadbe62f404f6c4b94bf0083dc14f96ff788eeffffffff", + "cborBytes": [ + 216, 102, 159, 27, 130, 148, 51, 168, 127, 233, 164, 161, 159, 159, 159, 74, 50, 232, 0, 86, 254, 248, 6, 105, 40, + 40, 65, 192, 255, 191, 8, 19, 255, 69, 71, 252, 242, 7, 156, 255, 69, 133, 163, 206, 86, 58, 216, 102, 159, 27, + 77, 232, 107, 191, 196, 228, 172, 131, 159, 27, 199, 170, 219, 230, 47, 64, 79, 108, 75, 148, 191, 0, 131, 220, + 20, 249, 111, 247, 136, 238, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2515, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13040945319193071175" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1507490060" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12988013816717439284" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1376657017306558167" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41c9b3edf15cad0e10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd7a14c4ba78" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4215ffebf9b409a291168a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3504226574736684183" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d9e6ce23a5bd5fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39d3ce3a41f24785162fa5f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adfddded74fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd1a38a3e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9ee3d37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5154492880304911998" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e21ccbaaed97" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b62c79f2bb2ae97d9d5afd" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8109726194674906715" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4737802595513742952" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "795a010fa174acd347" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12773111432427297220" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bb4fabeac85cbce479f4515074900601bfffffffffffffff5d8669f1bb43eb1c0bb4ef1349f1b131ade436e1b2ed7ffff9fbf4941c9b3edf15cad0e1046bd7a14c4ba784b4215ffebf9b409a291168a1b30a18380e7a9f497486d9e6ce23a5bd5fa4c39d3ce3a41f24785162fa5f646adfddded74fa45bd1a38a3e844b9ee3d371b47886ff707dab67e46e21ccbaaed974bb62c79f2bb2ae97d9d5afdff1b708b8901c347365bd8669f1b41c00e5bd185366880ff9f49795a010fa174acd3471bb143352c464f59c4ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 180, 250, 190, 172, 133, 203, 206, 71, 159, 69, 21, 7, 73, 0, 96, 27, 255, 255, 255, 255, 255, + 255, 255, 245, 216, 102, 159, 27, 180, 62, 177, 192, 187, 78, 241, 52, 159, 27, 19, 26, 222, 67, 110, 27, 46, 215, + 255, 255, 159, 191, 73, 65, 201, 179, 237, 241, 92, 173, 14, 16, 70, 189, 122, 20, 196, 186, 120, 75, 66, 21, 255, + 235, 249, 180, 9, 162, 145, 22, 138, 27, 48, 161, 131, 128, 231, 169, 244, 151, 72, 109, 158, 108, 226, 58, 91, + 213, 250, 76, 57, 211, 206, 58, 65, 242, 71, 133, 22, 47, 165, 246, 70, 173, 253, 221, 237, 116, 250, 69, 189, 26, + 56, 163, 232, 68, 185, 238, 61, 55, 27, 71, 136, 111, 247, 7, 218, 182, 126, 70, 226, 28, 203, 170, 237, 151, 75, + 182, 44, 121, 242, 187, 42, 233, 125, 157, 90, 253, 255, 27, 112, 139, 137, 1, 195, 71, 54, 91, 216, 102, 159, 27, + 65, 192, 14, 91, 209, 133, 54, 104, 128, 255, 159, 73, 121, 90, 1, 15, 161, 116, 172, 211, 71, 27, 177, 67, 53, + 44, 70, 79, 89, 196, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2516, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb590129f9fe4d05400172" + } + ] + }, + "cborHex": "d87e9f4bfb590129f9fe4d05400172ff", + "cborBytes": [216, 126, 159, 75, 251, 89, 1, 41, 249, 254, 77, 5, 64, 1, 114, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2517, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9f0c1bfffffffffffffff6ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 12, 27, 255, 255, 255, 255, 255, 255, 255, 246, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2518, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2324275325995089935" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0531950b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2945619677769626104" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d8f4b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10325909736138763996" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb3bc504cd24e1bfe879190e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15438514949928259248" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6385832743917998798" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17157360748224289781" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "878c" + }, + { + "_tag": "ByteArray", + "bytearray": "4147a6f910da" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12149007368433303101" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "655793511861540049" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b20417c182e24800f9fa0bf440531950b1b28e0f17d88dbf1f8431d8f4b1b8f4d00322d4c6edc4cbb3bc504cd24e1bfe879190e1bd6409f8cda080eb0ffbf1b589f090c084a52ce1bfffffffffffffff1ffd8669f1bfffffffffffffff19fd8669f1bee1b30b269239bf59f42878c464147a6f910da1ba899f1d55911fe3d1b0919d8b9788354d1ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 32, 65, 124, 24, 46, 36, 128, 15, 159, 160, 191, 68, 5, 49, 149, 11, 27, 40, 224, 241, 125, + 136, 219, 241, 248, 67, 29, 143, 75, 27, 143, 77, 0, 50, 45, 76, 110, 220, 76, 187, 59, 197, 4, 205, 36, 225, 191, + 232, 121, 25, 14, 27, 214, 64, 159, 140, 218, 8, 14, 176, 255, 191, 27, 88, 159, 9, 12, 8, 74, 82, 206, 27, 255, + 255, 255, 255, 255, 255, 255, 241, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 216, 102, + 159, 27, 238, 27, 48, 178, 105, 35, 155, 245, 159, 66, 135, 140, 70, 65, 71, 166, 249, 16, 218, 27, 168, 153, 241, + 213, 89, 17, 254, 61, 27, 9, 25, 216, 185, 120, 131, 84, 209, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2519, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14945990918875616010" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "593d822847c5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10197305077928772875" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e88d3230ecf92d06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2992569306635092969" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1baa90e4b827f22560" + }, + { + "_tag": "ByteArray", + "bytearray": "02f830050405" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "357205fba501010800fc05fe" + }, + { + "_tag": "ByteArray", + "bytearray": "3dd546cd4db292" + } + ] + }, + "cborHex": "d8669f1bcf6ad38dafcb930a9f9fa0d9050d9f46593d822847c51b8d841af0d43b450bffbf48e88d3230ecf92d0611ff0cd8669f1b2987bdedd7b8c3e99f491baa90e4b827f225604602f830050405ffffff4c357205fba501010800fc05fe473dd546cd4db292ffff", + "cborBytes": [ + 216, 102, 159, 27, 207, 106, 211, 141, 175, 203, 147, 10, 159, 159, 160, 217, 5, 13, 159, 70, 89, 61, 130, 40, 71, + 197, 27, 141, 132, 26, 240, 212, 59, 69, 11, 255, 191, 72, 232, 141, 50, 48, 236, 249, 45, 6, 17, 255, 12, 216, + 102, 159, 27, 41, 135, 189, 237, 215, 184, 195, 233, 159, 73, 27, 170, 144, 228, 184, 39, 242, 37, 96, 70, 2, 248, + 48, 5, 4, 5, 255, 255, 255, 76, 53, 114, 5, 251, 165, 1, 1, 8, 0, 252, 5, 254, 71, 61, 213, 70, 205, 77, 178, 146, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2520, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4934026033748548051" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8032863443430272334" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3672218871413775479" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "ByteArray", + "bytearray": "27e2" + } + ] + }, + "cborHex": "d8669f1b44792e893e1c99d39f9f801b6f7a76bdeae1ed4e1b32f6579b781a9c77ff134227e2ffff", + "cborBytes": [ + 216, 102, 159, 27, 68, 121, 46, 137, 62, 28, 153, 211, 159, 159, 128, 27, 111, 122, 118, 189, 234, 225, 237, 78, + 27, 50, 246, 87, 155, 120, 26, 156, 119, 255, 19, 66, 39, 226, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2521, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4249711755632867722" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4043825688352769850" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75b4055191bfd30182" + } + ] + }, + "cborHex": "d8669f1b3afa0253684c798a9f1bfffffffffffffffc0b1b381e8e09d7ddc73a4975b4055191bfd30182ffff", + "cborBytes": [ + 216, 102, 159, 27, 58, 250, 2, 83, 104, 76, 121, 138, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 11, 27, 56, + 30, 142, 9, 215, 221, 199, 58, 73, 117, 180, 5, 81, 145, 191, 211, 1, 130, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2522, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2910350472506863398" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cd90" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9dfc82e463a214525" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5abcd40cc3ae9cfdbd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d978446131" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c78e50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "365b3e8cf189" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9223854de3a0f36ae1744" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13717458629560323468" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "55" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb3f4ff9eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c84cb93eee760d6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99e412d0f515dd181f714f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10208952679091215116" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2863a455c5a96f269f42cd90bf49e9dfc82e463a21452541c3ffbf495abcd40cc3ae9cfdbd45d97844613143c78e5046365b3e8cf1894be9223854de3a0f36ae17441bbe5e33f2040f4d8cffbf415545cb3f4ff9eb48c84cb93eee760d6d4b99e412d0f515dd181f714f41e91b8dad7c5f4e011b0cffffff", + "cborBytes": [ + 216, 102, 159, 27, 40, 99, 164, 85, 197, 169, 111, 38, 159, 66, 205, 144, 191, 73, 233, 223, 200, 46, 70, 58, 33, + 69, 37, 65, 195, 255, 191, 73, 90, 188, 212, 12, 195, 174, 156, 253, 189, 69, 217, 120, 68, 97, 49, 67, 199, 142, + 80, 70, 54, 91, 62, 140, 241, 137, 75, 233, 34, 56, 84, 222, 58, 15, 54, 174, 23, 68, 27, 190, 94, 51, 242, 4, 15, + 77, 140, 255, 191, 65, 85, 69, 203, 63, 79, 249, 235, 72, 200, 76, 185, 62, 238, 118, 13, 109, 75, 153, 228, 18, + 208, 245, 21, 221, 24, 31, 113, 79, 65, 233, 27, 141, 173, 124, 95, 78, 1, 27, 12, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2523, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8489946979388958334" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15630188487079439411" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8642006680099654984" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15964114296282652272" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13472792956523554680" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15750569368288029596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62ed5c3f7ce1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17989034874655981208" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1097607039577642200" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4739598427370203768" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "797489070238211407" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ad424b0cafc150cc0075bf7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13276536493812593810" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3b999c4b39" + }, + { + "_tag": "ByteArray", + "bytearray": "bbe51ba4cb02314f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14400861704571060265" + } + }, + { + "_tag": "ByteArray", + "bytearray": "720fd0e46d937bda" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10510975959492029642" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d905049fbf1b75d259cbcc61267e1bd8e9959de0c52c331b77ee9349c9e48d481bdd8bed5ef7a99e701bbaf8f9cfe1f8a77841531bda954363eef4eb9c4662ed5c3f7ce11bf9a5e3e893fbbe981b0f3b7bc980fe54d8ffd8669f1b41c66fa88166aa789f801b0b11401587ce1d4f4c4ad424b0cafc150cc0075bf7d8669f1bb83fbb995935b4929f453b999c4b3948bbe51ba4cb02314f1bc7da236bd87c002948720fd0e46d937bda1b91de7cf214316ccaffffa0ffffff", + "cborBytes": [ + 217, 5, 4, 159, 191, 27, 117, 210, 89, 203, 204, 97, 38, 126, 27, 216, 233, 149, 157, 224, 197, 44, 51, 27, 119, + 238, 147, 73, 201, 228, 141, 72, 27, 221, 139, 237, 94, 247, 169, 158, 112, 27, 186, 248, 249, 207, 225, 248, 167, + 120, 65, 83, 27, 218, 149, 67, 99, 238, 244, 235, 156, 70, 98, 237, 92, 63, 124, 225, 27, 249, 165, 227, 232, 147, + 251, 190, 152, 27, 15, 59, 123, 201, 128, 254, 84, 216, 255, 216, 102, 159, 27, 65, 198, 111, 168, 129, 102, 170, + 120, 159, 128, 27, 11, 17, 64, 21, 135, 206, 29, 79, 76, 74, 212, 36, 176, 202, 252, 21, 12, 192, 7, 91, 247, 216, + 102, 159, 27, 184, 63, 187, 153, 89, 53, 180, 146, 159, 69, 59, 153, 156, 75, 57, 72, 187, 229, 27, 164, 203, 2, + 49, 79, 27, 199, 218, 35, 107, 216, 124, 0, 41, 72, 114, 15, 208, 228, 109, 147, 123, 218, 27, 145, 222, 124, 242, + 20, 49, 108, 202, 255, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2524, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3742130868323019535" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6c0e4ff3956f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1197556500142586860" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e880a9830dcce41621" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14742742755759476517" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b5a762d" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b33eeb832b56aeb0f9f466c0e4ff3956fd8669f1b109e934abd757bec80ff49e880a9830dcce416219f1bcc98be6d0c01cf25448b5a762dff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 51, 238, 184, 50, 181, 106, 235, 15, 159, 70, 108, 14, 79, 243, 149, 111, 216, 102, 159, 27, + 16, 158, 147, 74, 189, 117, 123, 236, 128, 255, 73, 232, 128, 169, 131, 13, 204, 228, 22, 33, 159, 27, 204, 152, + 190, 109, 12, 1, 207, 37, 68, 139, 90, 118, 45, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2525, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17939303742270645955" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8f6b887241b3279ea8a2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13052135513062468796" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2258491605343132801" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aacf92540efee982" + }, + { + "_tag": "ByteArray", + "bytearray": "2532241ed56c" + }, + { + "_tag": "ByteArray", + "bytearray": "8328" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5017913095645390417" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9fd8669f1bf8f535b503e0a6c39f4a8f6b887241b3279ea8a21bb522801890596cbc1b1f57c62628addc81ffff48aacf92540efee982462532241ed56c4283281b45a3355fdbb96651ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 216, 102, 159, 27, 248, 245, 53, 181, 3, 224, 166, + 195, 159, 74, 143, 107, 136, 114, 65, 179, 39, 158, 168, 162, 27, 181, 34, 128, 24, 144, 89, 108, 188, 27, 31, 87, + 198, 38, 40, 173, 220, 129, 255, 255, 72, 170, 207, 146, 84, 14, 254, 233, 130, 70, 37, 50, 36, 30, 213, 108, 66, + 131, 40, 27, 69, 163, 53, 95, 219, 185, 102, 81, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2526, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5546120155685279968" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4260065526966633482" + } + } + ] + }, + "cborHex": "d8669f1b4cf7c6e5a14158e09f1b3b1ecb06a6bbc40affff", + "cborBytes": [ + 216, 102, 159, 27, 76, 247, 198, 229, 161, 65, 88, 224, 159, 27, 59, 30, 203, 6, 166, 187, 196, 10, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2527, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6902379840049002530" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d79aa713" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11169290072578919999" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bffa56" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10477812612953665669" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87b69567c940f3efd9" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6456926000980390299" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1295159674517842725" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10292089798200372265" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5759100527658751157" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9348176026256802883" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8608321057533880261" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12206484963962326134" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10180893495029721298" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6330944318155719970" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905039fd905019fd8669f1b5fca2de4e6f038229f44d79aa7131b9b014a24c15d0e3f43bffa561b9168ab0ec235f0854987b69567c940f3efd9ffff1b599b9bfcd56b719bbf1b11f954dca70beb251b8ed4d9244227ac291b4fec6f6ab8dd54b51b81bb64912edc04431b7776e6649ad267c51ba9662566e91f0c761b8d49ccb16b54e8d21b57dc085088730522ffffff", + "cborBytes": [ + 217, 5, 3, 159, 217, 5, 1, 159, 216, 102, 159, 27, 95, 202, 45, 228, 230, 240, 56, 34, 159, 68, 215, 154, 167, 19, + 27, 155, 1, 74, 36, 193, 93, 14, 63, 67, 191, 250, 86, 27, 145, 104, 171, 14, 194, 53, 240, 133, 73, 135, 182, + 149, 103, 201, 64, 243, 239, 217, 255, 255, 27, 89, 155, 155, 252, 213, 107, 113, 155, 191, 27, 17, 249, 84, 220, + 167, 11, 235, 37, 27, 142, 212, 217, 36, 66, 39, 172, 41, 27, 79, 236, 111, 106, 184, 221, 84, 181, 27, 129, 187, + 100, 145, 46, 220, 4, 67, 27, 119, 118, 230, 100, 154, 210, 103, 197, 27, 169, 102, 37, 102, 233, 31, 12, 118, 27, + 141, 73, 204, 177, 107, 84, 232, 210, 27, 87, 220, 8, 80, 136, 115, 5, 34, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2528, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12478287752140838043" + }, + "fields": [] + }, + "cborHex": "d8669f1bad2bc8990776549b80ff", + "cborBytes": [216, 102, 159, 27, 173, 43, 200, 153, 7, 118, 84, 155, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2529, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "510d6efff9c9baa1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9900839368805471857" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6245519807136175834" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16375871278283140957" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6533845786578157557" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6aed6987a0c4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8996363760520594301" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d9e5a31d07b562eaa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14778802538235264951" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f691a676deec" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15529683340456582152" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8012123209315846433" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9916655217201761779" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17128020066165586949" + } + }, + { + "_tag": "ByteArray", + "bytearray": "640c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5552836218820649461" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e379" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13818050266882081939" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b229d" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4988933016368047754" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18197191202160083402" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14222225844861708736" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12671650981201533069" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be44df668ec55b6c17d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2381476830567825933" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16596838815194168721" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "309deca85a4ca42b28" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8174513335346472845" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8672248390228286212" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa391f26664ff33cf26fcc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1672398055387239717" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6f" + }, + { + "_tag": "ByteArray", + "bytearray": "fdf77c13fe25166ae70e575f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9489827098756228430" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19f48510d6efff9c9baa19f1b8966d8f2f3da5671bf1b56ac8b2ca60496da1be342c82a1d96af5d1b5aace220062c7ff5466aed6987a0c41b7cd9812ce807037d493d9e5a31d07b562eaa1bcd18da9b69277fb746f691a676deec1bd78484b7e6375c081b6f30c79bdbef0921ff9f1b899f09611d55cdf31bedb2f380858ffc0542640cffd8669f1b4d0fa31eeeba61f59f42e3791bbfc39381adff8493438b229dffffff1b453c402558d5e68ad8669f1bfc8968fc4a9d81ca9fd8669f1bc55f7f0da65ca9c09f1bafdabf6e1c3f588dffff9f4abe44df668ec55b6c17d61b210cb48f4ed1820d1be653d0f7f6103d91ffbf49309deca85a4ca42b281b7171b4916d05278d4254a41b785a03f69f829b044baa391f26664ff33cf26fcc41d641f51b17358d2bae691525ff9f416f4cfdf77c13fe25166ae70e575fff1b83b2a377913da54effffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 72, 81, 13, 110, 255, 249, 201, 186, 161, 159, 27, + 137, 102, 216, 242, 243, 218, 86, 113, 191, 27, 86, 172, 139, 44, 166, 4, 150, 218, 27, 227, 66, 200, 42, 29, 150, + 175, 93, 27, 90, 172, 226, 32, 6, 44, 127, 245, 70, 106, 237, 105, 135, 160, 196, 27, 124, 217, 129, 44, 232, 7, + 3, 125, 73, 61, 158, 90, 49, 208, 123, 86, 46, 170, 27, 205, 24, 218, 155, 105, 39, 127, 183, 70, 246, 145, 166, + 118, 222, 236, 27, 215, 132, 132, 183, 230, 55, 92, 8, 27, 111, 48, 199, 155, 219, 239, 9, 33, 255, 159, 27, 137, + 159, 9, 97, 29, 85, 205, 243, 27, 237, 178, 243, 128, 133, 143, 252, 5, 66, 100, 12, 255, 216, 102, 159, 27, 77, + 15, 163, 30, 238, 186, 97, 245, 159, 66, 227, 121, 27, 191, 195, 147, 129, 173, 255, 132, 147, 67, 139, 34, 157, + 255, 255, 255, 27, 69, 60, 64, 37, 88, 213, 230, 138, 216, 102, 159, 27, 252, 137, 104, 252, 74, 157, 129, 202, + 159, 216, 102, 159, 27, 197, 95, 127, 13, 166, 92, 169, 192, 159, 27, 175, 218, 191, 110, 28, 63, 88, 141, 255, + 255, 159, 74, 190, 68, 223, 102, 142, 197, 91, 108, 23, 214, 27, 33, 12, 180, 143, 78, 209, 130, 13, 27, 230, 83, + 208, 247, 246, 16, 61, 145, 255, 191, 73, 48, 157, 236, 168, 90, 76, 164, 43, 40, 27, 113, 113, 180, 145, 109, 5, + 39, 141, 66, 84, 164, 27, 120, 90, 3, 246, 159, 130, 155, 4, 75, 170, 57, 31, 38, 102, 79, 243, 60, 242, 111, 204, + 65, 214, 65, 245, 27, 23, 53, 141, 43, 174, 105, 21, 37, 255, 159, 65, 111, 76, 253, 247, 124, 19, 254, 37, 22, + 106, 231, 14, 87, 95, 255, 27, 131, 178, 163, 119, 145, 61, 165, 78, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2530, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17240476839666651783" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2670943827478724979" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2664713701974011925" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4683008418776969884" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5595175548355038154" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16412009042563053476" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6f939db5e10532c0024" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5875035498076485799" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b4a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb203d8f9f890b5ed8df94" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bef427a577aae12879fbf1b2511194283e441731b24faf6fe6246f0151b40fd6358615d729c1b4da60e8447a74bca1be3c32b45087837a44ab6f939db5e10532c0024ff414c1b518851a881a8b8a7bf425b4a4beb203d8f9f890b5ed8df94ffffff", + "cborBytes": [ + 216, 102, 159, 27, 239, 66, 122, 87, 122, 174, 18, 135, 159, 191, 27, 37, 17, 25, 66, 131, 228, 65, 115, 27, 36, + 250, 246, 254, 98, 70, 240, 21, 27, 64, 253, 99, 88, 97, 93, 114, 156, 27, 77, 166, 14, 132, 71, 167, 75, 202, 27, + 227, 195, 43, 69, 8, 120, 55, 164, 74, 182, 249, 57, 219, 94, 16, 83, 44, 0, 36, 255, 65, 76, 27, 81, 136, 81, + 168, 129, 168, 184, 167, 191, 66, 91, 74, 75, 235, 32, 61, 143, 159, 137, 11, 94, 216, 223, 148, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2531, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12230107078148874776" + }, + "fields": [] + }, + "cborHex": "d8669f1ba9ba1196f60de21880ff", + "cborBytes": [216, 102, 159, 27, 169, 186, 17, 150, 246, 13, 226, 24, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2532, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11268944552642161644" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b9c63555d7dcf2bec9fa0d9050280ffff", + "cborBytes": [216, 102, 159, 27, 156, 99, 85, 93, 125, 207, 43, 236, 159, 160, 217, 5, 2, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2533, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14682017121255993905" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fe7ef558" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2019075000045161029" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ff3219f6686aff4" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "584c2b34" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2f20f287e7d451fbc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "931d3bc0dd8b16bde268c8b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1af4cab3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6f21ed93ba96f169a21ca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ba0271702" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bcbc100c87aaab2319fa044fe7ef558bf1b1c053203d8904a45483ff3219f6686aff4ffd905019f44584c2b34bf410049f2f20f287e7d451fbc4c931d3bc0dd8b16bde268c8b3441af4cab34be6f21ed93ba96f169a21ca457ba0271702ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 203, 193, 0, 200, 122, 170, 178, 49, 159, 160, 68, 254, 126, 245, 88, 191, 27, 28, 5, 50, 3, + 216, 144, 74, 69, 72, 63, 243, 33, 159, 102, 134, 175, 244, 255, 217, 5, 1, 159, 68, 88, 76, 43, 52, 191, 65, 0, + 73, 242, 242, 15, 40, 126, 125, 69, 31, 188, 76, 147, 29, 59, 192, 221, 139, 22, 189, 226, 104, 200, 179, 68, 26, + 244, 202, 179, 75, 230, 242, 30, 217, 59, 169, 111, 22, 154, 33, 202, 69, 123, 160, 39, 23, 2, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2534, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2528740376467535437" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49fd8669f1b2317e3f97c88f64d80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 216, 102, 159, 27, 35, 23, 227, 249, 124, 136, + 246, 77, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2535, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "95" + } + ] + }, + "cborHex": "d9050d9f4195ff", + "cborBytes": [217, 5, 13, 159, 65, 149, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2536, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3529470972565386316" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2706477873020020517" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7126243193140047500" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b65444b783ffdc558" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9133871502325470880" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13002526770636118825" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "989dd0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13666077986918619119" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5100167196620607421" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17178783832777554459" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1316311704516531266" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13530998625239029092" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4359263054188019607" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "43" + }, + { + "_tag": "ByteArray", + "bytearray": "22eafce62f" + } + ] + }, + "cborHex": "d905029fbf1b30fb33264ccff44c1b258f574935d027251b62e5806d7e286e8c493b65444b783ffdc5581b7ec207bcf02c56a041fa1bb47241352245db2943989dd01bbda7a985eb11d7ef1b46c76f0b21abcfbd1bee674ce0f9edfa1b1b12447a8569659442ffbf1bbbc7c38f31abd5641b3c7f36a6c35c7f97ff41434522eafce62fff", + "cborBytes": [ + 217, 5, 2, 159, 191, 27, 48, 251, 51, 38, 76, 207, 244, 76, 27, 37, 143, 87, 73, 53, 208, 39, 37, 27, 98, 229, + 128, 109, 126, 40, 110, 140, 73, 59, 101, 68, 75, 120, 63, 253, 197, 88, 27, 126, 194, 7, 188, 240, 44, 86, 160, + 65, 250, 27, 180, 114, 65, 53, 34, 69, 219, 41, 67, 152, 157, 208, 27, 189, 167, 169, 133, 235, 17, 215, 239, 27, + 70, 199, 111, 11, 33, 171, 207, 189, 27, 238, 103, 76, 224, 249, 237, 250, 27, 27, 18, 68, 122, 133, 105, 101, + 148, 66, 255, 191, 27, 187, 199, 195, 143, 49, 171, 213, 100, 27, 60, 127, 54, 166, 195, 92, 127, 151, 255, 65, + 67, 69, 34, 234, 252, 230, 47, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2537, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15199276361734994700" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9878815699341230570" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12363324043883965709" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11277381566835430126" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8733750692553653245" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14104397093462245732" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d9987e5a40db11" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cb538de977541978e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f4d1e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3250a8" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6268676652100092960" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "04" + }, + { + "_tag": "ByteArray", + "bytearray": "22" + } + ] + }, + "cborHex": "d8669f1bd2eead526034bb0c9f41f9d8669f1b89189a89d0c941ea9fd9050d9f1bab9359b6d6bfed0d1b9c814ec8efc392ee1b793483fb427b7bfdffd8669f1bc3bce26d9ede81649f47d9987e5a40db11ffff12bf490cb538de977541978e437f4d1eff433250a8ffff9fd8669f1b56fed033c436042080ffa0ff41044122ffff", + "cborBytes": [ + 216, 102, 159, 27, 210, 238, 173, 82, 96, 52, 187, 12, 159, 65, 249, 216, 102, 159, 27, 137, 24, 154, 137, 208, + 201, 65, 234, 159, 217, 5, 13, 159, 27, 171, 147, 89, 182, 214, 191, 237, 13, 27, 156, 129, 78, 200, 239, 195, + 146, 238, 27, 121, 52, 131, 251, 66, 123, 123, 253, 255, 216, 102, 159, 27, 195, 188, 226, 109, 158, 222, 129, + 100, 159, 71, 217, 152, 126, 90, 64, 219, 17, 255, 255, 18, 191, 73, 12, 181, 56, 222, 151, 117, 65, 151, 142, 67, + 127, 77, 30, 255, 67, 50, 80, 168, 255, 255, 159, 216, 102, 159, 27, 86, 254, 208, 51, 196, 54, 4, 32, 128, 255, + 160, 255, 65, 4, 65, 34, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2538, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11152081510970422625" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "173b55f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c23351f6f39d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3abc58fce7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8de1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18162315058358064797" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a647b812a295" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "071018693220bc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b75bb57edb464b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "480117544133953683" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dda2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17259577518030365653" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1497046443010303619" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16354856588811708370" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12566173484677058453" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "548929746688258014" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b9ac4270c4797f5619fbf44173b55f646c23351f6f39d453abc58fce74125428de11bfc0d81514829169d46a647b812a29547071018693220bc47b75bb57edb464b1b06a9b85cd489889342dda21bef86564eb784a3d5ff1b14c693cee7e426831be2f81f6a709427d2d8669f1bae640434b41bcf959f1b079e30b23dffafdeffffffff", + "cborBytes": [ + 216, 102, 159, 27, 154, 196, 39, 12, 71, 151, 245, 97, 159, 191, 68, 23, 59, 85, 246, 70, 194, 51, 81, 246, 243, + 157, 69, 58, 188, 88, 252, 231, 65, 37, 66, 141, 225, 27, 252, 13, 129, 81, 72, 41, 22, 157, 70, 166, 71, 184, 18, + 162, 149, 71, 7, 16, 24, 105, 50, 32, 188, 71, 183, 91, 181, 126, 219, 70, 75, 27, 6, 169, 184, 92, 212, 137, 136, + 147, 66, 221, 162, 27, 239, 134, 86, 78, 183, 132, 163, 213, 255, 27, 20, 198, 147, 206, 231, 228, 38, 131, 27, + 226, 248, 31, 106, 112, 148, 39, 210, 216, 102, 159, 27, 174, 100, 4, 52, 180, 27, 207, 149, 159, 27, 7, 158, 48, + 178, 61, 255, 175, 222, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2539, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9050572127146367430" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4149e9b5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16179018483236945814" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2661286656509587436" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "350161651269398614" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8395ad27d7752f63cc2e08" + }, + { + "_tag": "ByteArray", + "bytearray": "2adcfa8fcc1a5526734a73" + }, + { + "_tag": "ByteArray", + "bytearray": "1250e21c30ecef9d2d4d7713" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "46664a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72594e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48e5447ce74244cfe4e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6088421046348419781" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c49a40f59" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4516688336257166794" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f4c65b250211f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17143283268067062794" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f51407254e49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2216612458823648979" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7d9a1765cc9c59c69f444149e9b51be0876b9723d13f969fd8669f1b24eeca1d2ebdafec9f1b04dc062aa5e070564b8395ad27d7752f63cc2e084b2adcfa8fcc1a5526734a734c1250e21c30ecef9d2d4d7713ffffffbf4346664a4372594e4a48e5447ce74244cfe4e31b547e6aaf0e9c12c5455c49a40f591b3eae801c83c22dca476f4c65b250211f1bede92d4da508f40a46f51407254e491b1ec2fd4984e386d3ffffff", + "cborBytes": [ + 216, 102, 159, 27, 125, 154, 23, 101, 204, 156, 89, 198, 159, 68, 65, 73, 233, 181, 27, 224, 135, 107, 151, 35, + 209, 63, 150, 159, 216, 102, 159, 27, 36, 238, 202, 29, 46, 189, 175, 236, 159, 27, 4, 220, 6, 42, 165, 224, 112, + 86, 75, 131, 149, 173, 39, 215, 117, 47, 99, 204, 46, 8, 75, 42, 220, 250, 143, 204, 26, 85, 38, 115, 74, 115, 76, + 18, 80, 226, 28, 48, 236, 239, 157, 45, 77, 119, 19, 255, 255, 255, 191, 67, 70, 102, 74, 67, 114, 89, 78, 74, 72, + 229, 68, 124, 231, 66, 68, 207, 228, 227, 27, 84, 126, 106, 175, 14, 156, 18, 197, 69, 92, 73, 164, 15, 89, 27, + 62, 174, 128, 28, 131, 194, 45, 202, 71, 111, 76, 101, 178, 80, 33, 31, 27, 237, 233, 45, 77, 165, 8, 244, 10, 70, + 245, 20, 7, 37, 78, 73, 27, 30, 194, 253, 73, 132, 227, 134, 211, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2540, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17163256188728191977" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14036280053225803805" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14671963188202565491" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9027714432175862708" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5678169708150925776" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11358488855075876479" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "917052202094288331" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bee3022919e2b2be99fd8669f1bc2cae2574c6cd01d9fa01bcb9d48c8c66bef73ffffd8669f1b7d48e271f78273b480ffbf1b4ecce943ecb829d041f51b9da1756f1007ee7f1b0cba061e7a51ddcbffffff", + "cborBytes": [ + 216, 102, 159, 27, 238, 48, 34, 145, 158, 43, 43, 233, 159, 216, 102, 159, 27, 194, 202, 226, 87, 76, 108, 208, + 29, 159, 160, 27, 203, 157, 72, 200, 198, 107, 239, 115, 255, 255, 216, 102, 159, 27, 125, 72, 226, 113, 247, 130, + 115, 180, 128, 255, 191, 27, 78, 204, 233, 67, 236, 184, 41, 208, 65, 245, 27, 157, 161, 117, 111, 16, 7, 238, + 127, 27, 12, 186, 6, 30, 122, 81, 221, 203, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2541, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b4a1bfa759" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7319307267799132238" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7eb2c5b101b2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d995f89223644" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [] + } + ] + }, + "cborHex": "d905009f45b4a1bfa759bf1b6593672e431a284e467eb2c5b101b21bfffffffffffffff9476d995f89223644ff1bffffffffffffffebd8669f1bfffffffffffffffc80ffff", + "cborBytes": [ + 217, 5, 0, 159, 69, 180, 161, 191, 167, 89, 191, 27, 101, 147, 103, 46, 67, 26, 40, 78, 70, 126, 178, 197, 177, 1, + 178, 27, 255, 255, 255, 255, 255, 255, 255, 249, 71, 109, 153, 95, 137, 34, 54, 68, 255, 27, 255, 255, 255, 255, + 255, 255, 255, 235, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2542, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16811973183200552757" + } + } + ] + }, + "cborHex": "d905069f1be9502089560fe735ff", + "cborBytes": [217, 5, 6, 159, 27, 233, 80, 32, 137, 86, 15, 231, 53, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2543, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14663881756383003237" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11654742321382794599" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1385604253160227537" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8776567251445508854" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11012411809247999159" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10938986683435701099" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e46e807deec46cd8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12080093162645155165" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2539efd4d45ec0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "118053853223212145" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33f007a0c8568713" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a6618" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "388cde16fa4c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9993155cfd169d3a1935e5f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cf84a0ee8ba80d10e7248" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4236cf4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6851957515976245645" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905059f1bcb8092c3cd8a42659f1ba1bdf6644ebba567414d9f1b133aa7ba1ce2c2d11b79cca16a39bc6af6ffffd8669f1b98d3f231ba8b34b79f1b97cf166e6ce9d36bffff48e46e807deec46cd89fa01ba7a51cba7516ed5dbf472539efd4d45ec01b01a3695aa1bc547141394833f007a0c8568713435a661846388cde16fa4c4c9993155cfd169d3a1935e5f34b8cf84a0ee8ba80d10e724844a4236cf41b5f170b0ebbd5018dffffff", + "cborBytes": [ + 217, 5, 5, 159, 27, 203, 128, 146, 195, 205, 138, 66, 101, 159, 27, 161, 189, 246, 100, 78, 187, 165, 103, 65, 77, + 159, 27, 19, 58, 167, 186, 28, 226, 194, 209, 27, 121, 204, 161, 106, 57, 188, 106, 246, 255, 255, 216, 102, 159, + 27, 152, 211, 242, 49, 186, 139, 52, 183, 159, 27, 151, 207, 22, 110, 108, 233, 211, 107, 255, 255, 72, 228, 110, + 128, 125, 238, 196, 108, 216, 159, 160, 27, 167, 165, 28, 186, 117, 22, 237, 93, 191, 71, 37, 57, 239, 212, 212, + 94, 192, 27, 1, 163, 105, 90, 161, 188, 84, 113, 65, 57, 72, 51, 240, 7, 160, 200, 86, 135, 19, 67, 90, 102, 24, + 70, 56, 140, 222, 22, 250, 76, 76, 153, 147, 21, 92, 253, 22, 157, 58, 25, 53, 229, 243, 75, 140, 248, 74, 14, + 232, 186, 128, 209, 14, 114, 72, 68, 164, 35, 108, 244, 27, 95, 23, 11, 14, 187, 213, 1, 141, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2544, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "850102" + } + ] + }, + "cborHex": "d905099f43850102ff", + "cborBytes": [217, 5, 9, 159, 67, 133, 1, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2545, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14806603315955442600" + }, + "fields": [] + }, + "cborHex": "d8669f1bcd7b9f4461a523a880ff", + "cborBytes": [216, 102, 159, 27, 205, 123, 159, 68, 97, 165, 35, 168, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2546, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3739253473211181405" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6781006181903077379" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17138947453786617305" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13173969246476970038" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a530" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8773252635601623864" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18157118101012901793" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9422092074855672576" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b33e47f38f3e5e95d9f1b5e1af931f40f90031bedd9c5e7370975d9a0d8669f1bb6d3573b222e28369f42a5301b79c0daca15cb5b381bfbfb0ab65bb06fa11b82c1fed25acbab00ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 51, 228, 127, 56, 243, 229, 233, 93, 159, 27, 94, 26, 249, 49, 244, 15, 144, 3, 27, 237, 217, + 197, 231, 55, 9, 117, 217, 160, 216, 102, 159, 27, 182, 211, 87, 59, 34, 46, 40, 54, 159, 66, 165, 48, 27, 121, + 192, 218, 202, 21, 203, 91, 56, 27, 251, 251, 10, 182, 91, 176, 111, 161, 27, 130, 193, 254, 210, 90, 203, 171, 0, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2547, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16936952539866505053" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8678174763481177378" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "216256c2e8b83b12d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5091911455618278835" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c9cbb40cab07f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "412325631016759654" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1254833300490068075" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a5e21b02dccd" + } + ] + } + ] + }, + "cborHex": "d8669f1beb0c249964649f5d9fd8669f1b786f11f7ec0e1d229fbf49216256c2e8b83b12d71b46aa1a7da3dea5b3476c9cbb40cab07f1b05b8dffa108af16641df1b116a103d080aa06bff46a5e21b02dccdffffffff", + "cborBytes": [ + 216, 102, 159, 27, 235, 12, 36, 153, 100, 100, 159, 93, 159, 216, 102, 159, 27, 120, 111, 17, 247, 236, 14, 29, + 34, 159, 191, 73, 33, 98, 86, 194, 232, 184, 59, 18, 215, 27, 70, 170, 26, 125, 163, 222, 165, 179, 71, 108, 156, + 187, 64, 202, 176, 127, 27, 5, 184, 223, 250, 16, 138, 241, 102, 65, 223, 27, 17, 106, 16, 61, 8, 10, 160, 107, + 255, 70, 165, 226, 27, 2, 220, 205, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2548, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "65c610a0ab07c41781a78495" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de9c0fee6cdce0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a811b854c348755c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7998456570207631018" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17375491883766999981" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcafcc36635a97de3b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5cbaab8637bdf8f96c" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5a0c7ab2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3508768179201737122" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16989187412126904643" + } + }, + { + "_tag": "ByteArray", + "bytearray": "25bceffb9da0ff8f8bd933d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14707486630973946390" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1464302767623607702" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18064918053018630729" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15684687371938167302" + } + }, + { + "_tag": "ByteArray", + "bytearray": "40a2b12273c9bea294d3" + }, + { + "_tag": "ByteArray", + "bytearray": "d37797f6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13453791588960528723" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7133777796445363555" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11127848769297628093" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6502103140269149198" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16771517690284833834" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af4c835564b0" + } + ] + }, + "cborHex": "d87b9fbf4c65c610a0ab07c41781a7849547de9c0fee6cdce048a811b854c348755c1b6f0039df7a9d76aa41c61bf12225cf199d6bad49dcafcc36635a97de3b495cbaab8637bdf8f96cff445a0c7ab2d8669f1b30b1a611988381a29f9f1bebc5b7f0525cb1434c25bceffb9da0ff8f8bd933d01bcc1b7d2ad2023a161b14523f9be3d39596ffd8669f1bfab37b41d6b77a499f1bd9ab3410516dfa064a40a2b12273c9bea294d344d37797f61bbab5782b3e2169531b6300451c07b1dd63ffff9f1b9a6e0f7f7040bbbd1b5a3c1c5b40b1cc0effffff1be8c0667ae19b7c2a46af4c835564b0ff", + "cborBytes": [ + 216, 123, 159, 191, 76, 101, 198, 16, 160, 171, 7, 196, 23, 129, 167, 132, 149, 71, 222, 156, 15, 238, 108, 220, + 224, 72, 168, 17, 184, 84, 195, 72, 117, 92, 27, 111, 0, 57, 223, 122, 157, 118, 170, 65, 198, 27, 241, 34, 37, + 207, 25, 157, 107, 173, 73, 220, 175, 204, 54, 99, 90, 151, 222, 59, 73, 92, 186, 171, 134, 55, 189, 248, 249, + 108, 255, 68, 90, 12, 122, 178, 216, 102, 159, 27, 48, 177, 166, 17, 152, 131, 129, 162, 159, 159, 27, 235, 197, + 183, 240, 82, 92, 177, 67, 76, 37, 188, 239, 251, 157, 160, 255, 143, 139, 217, 51, 208, 27, 204, 27, 125, 42, + 210, 2, 58, 22, 27, 20, 82, 63, 155, 227, 211, 149, 150, 255, 216, 102, 159, 27, 250, 179, 123, 65, 214, 183, 122, + 73, 159, 27, 217, 171, 52, 16, 81, 109, 250, 6, 74, 64, 162, 177, 34, 115, 201, 190, 162, 148, 211, 68, 211, 119, + 151, 246, 27, 186, 181, 120, 43, 62, 33, 105, 83, 27, 99, 0, 69, 28, 7, 177, 221, 99, 255, 255, 159, 27, 154, 110, + 15, 127, 112, 64, 187, 189, 27, 90, 60, 28, 91, 64, 177, 204, 14, 255, 255, 255, 27, 232, 192, 102, 122, 225, 155, + 124, 42, 70, 175, 76, 131, 85, 100, 176, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2549, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7149048256762160122" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c5635c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3389891384906241077" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8537d77cbfa0af3956d7b1f7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18344443796881992186" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5934138154625545954" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd5ddc0cf4cf0d7924725b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f34ee05d936d0f77cec12c" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e5623fafaca9deace3ad7b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "145fd94a5010060494d310" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4280286061554592251" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e166d3c1451" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "707686dd37" + } + } + ] + } + ] + }, + "cborHex": "d87e9f1b63368583226f23fa43c5635cbf1b2f0b5041107e54354c8537d77cbfa0af3956d7b1f71bfe948e70b344e9fa418f41141b525a4b36128c36e24bbd5ddc0cf4cf0d7924725b4bf34ee05d936d0f77cec12cff4be5623fafaca9deace3ad7bbf4b145fd94a5010060494d3101b3b66a17ebc0469fb469e166d3c145145707686dd37ffff", + "cborBytes": [ + 216, 126, 159, 27, 99, 54, 133, 131, 34, 111, 35, 250, 67, 197, 99, 92, 191, 27, 47, 11, 80, 65, 16, 126, 84, 53, + 76, 133, 55, 215, 124, 191, 160, 175, 57, 86, 215, 177, 247, 27, 254, 148, 142, 112, 179, 68, 233, 250, 65, 143, + 65, 20, 27, 82, 90, 75, 54, 18, 140, 54, 226, 75, 189, 93, 220, 12, 244, 207, 13, 121, 36, 114, 91, 75, 243, 78, + 224, 93, 147, 109, 15, 119, 206, 193, 44, 255, 75, 229, 98, 63, 175, 172, 169, 222, 172, 227, 173, 123, 191, 75, + 20, 95, 217, 74, 80, 16, 6, 4, 148, 211, 16, 27, 59, 102, 161, 126, 188, 4, 105, 251, 70, 158, 22, 109, 60, 20, + 81, 69, 112, 118, 134, 221, 55, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2550, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11267850006325052995" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16887983393830737503" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8c28832fa914fdf" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e8b62efa4115" + }, + { + "_tag": "ByteArray", + "bytearray": "e4089743be" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b910360a427aec6e0a17d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5832820055562734237" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1604780514417651230" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2745787920921208502" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aefccdeb3f1550" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3305238263631162007" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14881288326358774296" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1925385574289129185" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13494344547251843241" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4368318090375364492" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3182159123012196329" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8482779670163426024" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ab650be4c0c3c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10699535506109665077" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7135581436562480878" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17073599596762819511" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8926666717306617002" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9110780880986394622" + } + } + ] + }, + "cborHex": "d8669f1b9c5f71e1916346439f1bea5e2b6b99fa165f48c8c28832fa914fdf9f46e8b62efa411545e4089743beff9fbf4bb910360a427aec6e0a17d31b50f256efda974a9dff9f1b1645536018552e1e1b261aff90f71126b647aefccdeb3f15501b2dde90b059c3aa97ffd8669f1bce84f4e36cc8321880ffbf1b1ab857fa8b2a3ee11bbb458ade9facf0a91b3c9f6228aabc7f8c1b2c294cdcd1e917e91b75b8e32a93ff0ae8470ab650be4c0c3c1b947c62daaf588f351b6306ad82b82d9eee1becf19c5f9a4cebb71b7be1e415795cfcaaffff1b7e6ffef0b59d4ffeffff", + "cborBytes": [ + 216, 102, 159, 27, 156, 95, 113, 225, 145, 99, 70, 67, 159, 27, 234, 94, 43, 107, 153, 250, 22, 95, 72, 200, 194, + 136, 50, 250, 145, 79, 223, 159, 70, 232, 182, 46, 250, 65, 21, 69, 228, 8, 151, 67, 190, 255, 159, 191, 75, 185, + 16, 54, 10, 66, 122, 236, 110, 10, 23, 211, 27, 80, 242, 86, 239, 218, 151, 74, 157, 255, 159, 27, 22, 69, 83, 96, + 24, 85, 46, 30, 27, 38, 26, 255, 144, 247, 17, 38, 182, 71, 174, 252, 205, 235, 63, 21, 80, 27, 45, 222, 144, 176, + 89, 195, 170, 151, 255, 216, 102, 159, 27, 206, 132, 244, 227, 108, 200, 50, 24, 128, 255, 191, 27, 26, 184, 87, + 250, 139, 42, 62, 225, 27, 187, 69, 138, 222, 159, 172, 240, 169, 27, 60, 159, 98, 40, 170, 188, 127, 140, 27, 44, + 41, 76, 220, 209, 233, 23, 233, 27, 117, 184, 227, 42, 147, 255, 10, 232, 71, 10, 182, 80, 190, 76, 12, 60, 27, + 148, 124, 98, 218, 175, 88, 143, 53, 27, 99, 6, 173, 130, 184, 45, 158, 238, 27, 236, 241, 156, 95, 154, 76, 235, + 183, 27, 123, 225, 228, 21, 121, 92, 252, 170, 255, 255, 27, 126, 111, 254, 240, 181, 157, 79, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2551, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3956319581992527195" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7cd8ce94f58c72f9" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1a931080d3e48ff873" + }, + { + "_tag": "ByteArray", + "bytearray": "57e24436b887e6670cdf95ab" + }, + { + "_tag": "ByteArray", + "bytearray": "9fadf20aeee7472375fb9c91" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e2a427ed4b1e311a23ec5f91" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16065922588327313584" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18076015289985691481" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49fd8669f1b36e7abb2c696255b9f9f487cd8ce94f58c72f9ff9f491a931080d3e48ff8734c57e24436b887e6670cdf95ab4c9fadf20aeee7472375fb9c91ff809f4ce2a427ed4b1e311a23ec5f91ffffff9f1bdef59f79222c80b0ff1bfadae822aa206f59ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 216, 102, 159, 27, 54, 231, 171, 178, 198, 150, + 37, 91, 159, 159, 72, 124, 216, 206, 148, 245, 140, 114, 249, 255, 159, 73, 26, 147, 16, 128, 211, 228, 143, 248, + 115, 76, 87, 226, 68, 54, 184, 135, 230, 103, 12, 223, 149, 171, 76, 159, 173, 242, 10, 238, 231, 71, 35, 117, + 251, 156, 145, 255, 128, 159, 76, 226, 164, 39, 237, 75, 30, 49, 26, 35, 236, 95, 145, 255, 255, 255, 159, 27, + 222, 245, 159, 121, 34, 44, 128, 176, 255, 27, 250, 218, 232, 34, 170, 32, 111, 89, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2552, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8168517634937975261" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1960336193614899967" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83432f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6651951094338525264" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5949588197304603644" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e611db0f202b" + }, + { + "_tag": "ByteArray", + "bytearray": "0858641b700fcc74a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6819600077052566161" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11942581139949436803" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1709638026026757699" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8010319305736154583" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b715c6782a3fdf1dd9fbf1b1b348361bcc1eaff4383432fffd8669f1b5c507a46d95198509fd8669f1b52912ef1743293fc9f46e611db0f202b490858641b700fcc74a71b5ea4162366f1da91ffff1ba5bc9245b3f73f831b17b9daba03d32e43ffff1b6f2a5ef7d3db6dd7a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 113, 92, 103, 130, 163, 253, 241, 221, 159, 191, 27, 27, 52, 131, 97, 188, 193, 234, 255, 67, + 131, 67, 47, 255, 216, 102, 159, 27, 92, 80, 122, 70, 217, 81, 152, 80, 159, 216, 102, 159, 27, 82, 145, 46, 241, + 116, 50, 147, 252, 159, 70, 230, 17, 219, 15, 32, 43, 73, 8, 88, 100, 27, 112, 15, 204, 116, 167, 27, 94, 164, 22, + 35, 102, 241, 218, 145, 255, 255, 27, 165, 188, 146, 69, 179, 247, 63, 131, 27, 23, 185, 218, 186, 3, 211, 46, 67, + 255, 255, 27, 111, 42, 94, 247, 211, 219, 109, 215, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2553, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4095476334546748842" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16837874763954223375" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15266272668897145404" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17664557881461248012" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b7442a1ed074d838113ee7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2668320271274694278" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17573988908160362149" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5547310309561781795" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11582610582943889798" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "113275655854852074" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c72" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17000833639132288902" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11827497028589278929" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d59" + }, + { + "_tag": "ByteArray", + "bytearray": "7282b8fc9064e9df2cd4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16303603244537098446" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "633663458720282385" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1434334523360753939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0abe8ab7e7969c43e53c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12998656136989970237" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cff53703a12" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "caa8538b446f2a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15115330665711918998" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e93a4d900855cc93bf6" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "832b3d4f0d48d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6961259803152566281" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a878ede0aaf604f6302da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9829415147489213201" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aba2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6a4c14997f31ad1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdd7ed5334" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c992be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bed05ff03ccbc7a349c887b7" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11044486843654559685" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9287280060162258353" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10470818674313685979" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6a043c58760cd997de6e59" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15022972636413483888" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1867804283715500813" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a06bc8" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59fd8669f1b38d60e070aad85aa9fd8669f1be9ac25e30e01790f9f1bd3dcb21bb1de723c1bf5251dcd66d3100c4bb7442a1ed074d838113ee71b2507c7263c4d56861bf3e359cd0d8da6a5ffffd8669f1b4cfc0155ec4ace239f1ba0bdb2f5380cf9861b01926f9bdced87ea429c721bebef181ed9fdd786ffff9f1ba423b5e1fb0d56d1422d594a7282b8fc9064e9df2cd41be24208c54d8a30ceff1b08cb398ef42af711bf1b13e7c7a649ff39134a0abe8ab7e7969c43e53c1bb46480e302bd0f3d462cff53703a12ffffffa047caa8538b446f2ad8669f1bd1c47127f053df969f9f4a8e93a4d900855cc93bf6ffbf47832b3d4f0d48d41b609b5ce89c1d48094b8a878ede0aaf604f6302da1b886918ff87f03b1142aba248b6a4c14997f31ad142be0645bdd7ed533443c992be4cbed05ff03ccbc7a349c887b7ff1b9945e644a28157c5d8669f1b80e30c02338a35b19f1b914fd21b85fe6bdb4b6a043c58760cd997de6e591bd07c520487d6db701b19ebc61998d0bb0dffff43a06bc8ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 216, 102, 159, 27, 56, 214, 14, 7, 10, 173, 133, + 170, 159, 216, 102, 159, 27, 233, 172, 37, 227, 14, 1, 121, 15, 159, 27, 211, 220, 178, 27, 177, 222, 114, 60, 27, + 245, 37, 29, 205, 102, 211, 16, 12, 75, 183, 68, 42, 30, 208, 116, 216, 56, 17, 62, 231, 27, 37, 7, 199, 38, 60, + 77, 86, 134, 27, 243, 227, 89, 205, 13, 141, 166, 165, 255, 255, 216, 102, 159, 27, 76, 252, 1, 85, 236, 74, 206, + 35, 159, 27, 160, 189, 178, 245, 56, 12, 249, 134, 27, 1, 146, 111, 155, 220, 237, 135, 234, 66, 156, 114, 27, + 235, 239, 24, 30, 217, 253, 215, 134, 255, 255, 159, 27, 164, 35, 181, 225, 251, 13, 86, 209, 66, 45, 89, 74, 114, + 130, 184, 252, 144, 100, 233, 223, 44, 212, 27, 226, 66, 8, 197, 77, 138, 48, 206, 255, 27, 8, 203, 57, 142, 244, + 42, 247, 17, 191, 27, 19, 231, 199, 166, 73, 255, 57, 19, 74, 10, 190, 138, 183, 231, 150, 156, 67, 229, 60, 27, + 180, 100, 128, 227, 2, 189, 15, 61, 70, 44, 255, 83, 112, 58, 18, 255, 255, 255, 160, 71, 202, 168, 83, 139, 68, + 111, 42, 216, 102, 159, 27, 209, 196, 113, 39, 240, 83, 223, 150, 159, 159, 74, 142, 147, 164, 217, 0, 133, 92, + 201, 59, 246, 255, 191, 71, 131, 43, 61, 79, 13, 72, 212, 27, 96, 155, 92, 232, 156, 29, 72, 9, 75, 138, 135, 142, + 222, 10, 175, 96, 79, 99, 2, 218, 27, 136, 105, 24, 255, 135, 240, 59, 17, 66, 171, 162, 72, 182, 164, 193, 73, + 151, 243, 26, 209, 66, 190, 6, 69, 189, 215, 237, 83, 52, 67, 201, 146, 190, 76, 190, 208, 95, 240, 60, 203, 199, + 163, 73, 200, 135, 183, 255, 27, 153, 69, 230, 68, 162, 129, 87, 197, 216, 102, 159, 27, 128, 227, 12, 2, 51, 138, + 53, 177, 159, 27, 145, 79, 210, 27, 133, 254, 107, 219, 75, 106, 4, 60, 88, 118, 12, 217, 151, 222, 110, 89, 27, + 208, 124, 82, 4, 135, 214, 219, 112, 27, 25, 235, 198, 25, 152, 208, 187, 13, 255, 255, 67, 160, 107, 200, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2554, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff580ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2555, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11553185703761467595" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13665606621773622411" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5421520252846020845" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7c5181036b84e0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "030bb0" + }, + { + "_tag": "ByteArray", + "bytearray": "2e" + }, + { + "_tag": "ByteArray", + "bytearray": "802e9a310d5a2b448575" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1ba055292fa8d2d8cb9fd8669f1bbda5fcd1ab0aec8b9fd8669f1b4b3d1bf20d7918ed80ff477c5181036b84e09f43030bb0412e4a802e9a310d5a2b448575ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 160, 85, 41, 47, 168, 210, 216, 203, 159, 216, 102, 159, 27, 189, 165, 252, 209, 171, 10, 236, + 139, 159, 216, 102, 159, 27, 75, 61, 27, 242, 13, 121, 24, 237, 128, 255, 71, 124, 81, 129, 3, 107, 132, 224, 159, + 67, 3, 11, 176, 65, 46, 74, 128, 46, 154, 49, 13, 90, 43, 68, 133, 117, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2556, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16370910145040486789" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4602817931026324420" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "53" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18161844186704462404" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "88e20c36588ae1b8" + }, + { + "_tag": "ByteArray", + "bytearray": "8bfa68acb5a3dcf489b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13077770669658034724" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9889071134862429027" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18342033825727468626" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e8e4cc9a4d79462ebe2116be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17200995630653266933" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "94b51d230b9bc876d1048b" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12538772834290339639" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7267374279545460716" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5642127310977561471" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16364547721662780313" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4675ffcd64db6eb0e5a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2799162132346283708" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c27f2a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13523634269572651702" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a73bb9a7f3a21010d64d5099" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14368892919253977805" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9fb46a8292177d625d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7181622836835732858" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e93cf9a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b06f53001a64" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdf67b82968e548edd38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fadf83813" + } + } + ] + } + ] + }, + "cborHex": "d9050b9f9fd8669f1be331280a44fa11859f1b3fe07e85809f5bc4ffff809f41531bfc0bd50fee834244ff9f4888e20c36588ae1b84a8bfa68acb5a3dcf489b01bb57d932292fd5224ffff9fd8669f1b893d09cd780b4b639f1bfe8bfe9590af54524ce8e4cc9a4d79462ebe2116be1beeb636642c225bf5ffff9f4b94b51d230b9bc876d1048bffd8669f1bae02ab75a3318f379f1b64dae6672e1e17ecffff1b4e4cdce56458f37fff9f1be31a8d7323a3539980bf4a4675ffcd64db6eb0e5a01b26d89f20f739a6bc446c27f2a61bbbad99b7862d5ab64ca73bb9a7f3a21010d64d50991bc7688ffafbc24acdff9f499fb46a8292177d625d1b63aa3feb946d4d7affffbf448e93cf9a46b06f53001a644afdf67b82968e548edd38459fadf83813ffff", + "cborBytes": [ + 217, 5, 11, 159, 159, 216, 102, 159, 27, 227, 49, 40, 10, 68, 250, 17, 133, 159, 27, 63, 224, 126, 133, 128, 159, + 91, 196, 255, 255, 128, 159, 65, 83, 27, 252, 11, 213, 15, 238, 131, 66, 68, 255, 159, 72, 136, 226, 12, 54, 88, + 138, 225, 184, 74, 139, 250, 104, 172, 181, 163, 220, 244, 137, 176, 27, 181, 125, 147, 34, 146, 253, 82, 36, 255, + 255, 159, 216, 102, 159, 27, 137, 61, 9, 205, 120, 11, 75, 99, 159, 27, 254, 139, 254, 149, 144, 175, 84, 82, 76, + 232, 228, 204, 154, 77, 121, 70, 46, 190, 33, 22, 190, 27, 238, 182, 54, 100, 44, 34, 91, 245, 255, 255, 159, 75, + 148, 181, 29, 35, 11, 155, 200, 118, 209, 4, 139, 255, 216, 102, 159, 27, 174, 2, 171, 117, 163, 49, 143, 55, 159, + 27, 100, 218, 230, 103, 46, 30, 23, 236, 255, 255, 27, 78, 76, 220, 229, 100, 88, 243, 127, 255, 159, 27, 227, 26, + 141, 115, 35, 163, 83, 153, 128, 191, 74, 70, 117, 255, 205, 100, 219, 110, 176, 229, 160, 27, 38, 216, 159, 32, + 247, 57, 166, 188, 68, 108, 39, 242, 166, 27, 187, 173, 153, 183, 134, 45, 90, 182, 76, 167, 59, 185, 167, 243, + 162, 16, 16, 214, 77, 80, 153, 27, 199, 104, 143, 250, 251, 194, 74, 205, 255, 159, 73, 159, 180, 106, 130, 146, + 23, 125, 98, 93, 27, 99, 170, 63, 235, 148, 109, 77, 122, 255, 255, 191, 68, 142, 147, 207, 154, 70, 176, 111, 83, + 0, 26, 100, 74, 253, 246, 123, 130, 150, 142, 84, 142, 221, 56, 69, 159, 173, 248, 56, 19, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2557, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17408264374938242889" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6535292c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6402592358357283994" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8273702207758818454" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10c07a7340c11da066" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15879491239545703262" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e3308fc2850" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0177" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4094522434075434545" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4353614846602590289" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a61ff75acf39c5edd35b28" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5381044185777297775" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1aa7" + }, + { + "_tag": "ByteArray", + "bytearray": "3f0aea9da1" + }, + { + "_tag": "ByteArray", + "bytearray": "04ca9c45a553aec3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10163487697872632141" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da80b00d8663f4" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5726025173628875643" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "661275e175c49dcff3" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "105517972961631291" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13164080620586562356" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2376320483416398134" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a951f3e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5491346649585658429" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e03edbd920" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15028208625123174279" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1df20cde94fba8c76f72136e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16241206935271593244" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1682431487405702058" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cd0aac6d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c567769113ee11fdb6f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17966929973858555303" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c42df75575c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11984997450050388528" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f4c6d72e5ac4e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1688054726442973407" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdc82a949f7a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4145730835559631041" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5cee50d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11f50d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e691d8b09c45b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "133bcf2c618e7688bf" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf196943750480f499fbf0e446535292c131b58da93d3d984349a1b72d218526ed45c964910c07a7340c11da0661bdc5f4926330c8b5e462e3308fc28501bfffffffffffffffc420177ff9f1b38d2aa75c7ef1e31d8669f1b3c6b25a2f49d38519f4ba61ff75acf39c5edd35b281b4aad4f2d4defd96f421aa7453f0aea9da14804ca9c45a553aec3ffff9f1b8d0bf63676c0394d47da80b00d8663f4ffd8669f1b4f76ed8ec117f37b9f49661275e175c49dcff3ffffbf1b0176e0098fcc1c3b1bb6b0359400aa73341b20fa62e3ae84d936445a951f3e1b4c352eaef315aa3d45e03edbd9201bd08eec1f26eda7874c1df20cde94fba8c76f72136e1be1645ba87479551c1b175932861dbfbbaaffff9f44cd0aac6dbf4a1c567769113ee11fdb6f1bf9575b9e4c2855a7462c42df75575c1ba65343ae7c374230ffbf477f4c6d72e5ac4e1b176d2cd47b0d78df46fdc82a949f7a1b3988983adbea48c1ffbf44b5cee50d4311f50d47e691d8b09c45b549133bcf2c618e7688bfffffffff", + "cborBytes": [ + 216, 102, 159, 27, 241, 150, 148, 55, 80, 72, 15, 73, 159, 191, 14, 68, 101, 53, 41, 44, 19, 27, 88, 218, 147, + 211, 217, 132, 52, 154, 27, 114, 210, 24, 82, 110, 212, 92, 150, 73, 16, 192, 122, 115, 64, 193, 29, 160, 102, 27, + 220, 95, 73, 38, 51, 12, 139, 94, 70, 46, 51, 8, 252, 40, 80, 27, 255, 255, 255, 255, 255, 255, 255, 252, 66, 1, + 119, 255, 159, 27, 56, 210, 170, 117, 199, 239, 30, 49, 216, 102, 159, 27, 60, 107, 37, 162, 244, 157, 56, 81, + 159, 75, 166, 31, 247, 90, 207, 57, 197, 237, 211, 91, 40, 27, 74, 173, 79, 45, 77, 239, 217, 111, 66, 26, 167, + 69, 63, 10, 234, 157, 161, 72, 4, 202, 156, 69, 165, 83, 174, 195, 255, 255, 159, 27, 141, 11, 246, 54, 118, 192, + 57, 77, 71, 218, 128, 176, 13, 134, 99, 244, 255, 216, 102, 159, 27, 79, 118, 237, 142, 193, 23, 243, 123, 159, + 73, 102, 18, 117, 225, 117, 196, 157, 207, 243, 255, 255, 191, 27, 1, 118, 224, 9, 143, 204, 28, 59, 27, 182, 176, + 53, 148, 0, 170, 115, 52, 27, 32, 250, 98, 227, 174, 132, 217, 54, 68, 90, 149, 31, 62, 27, 76, 53, 46, 174, 243, + 21, 170, 61, 69, 224, 62, 219, 217, 32, 27, 208, 142, 236, 31, 38, 237, 167, 135, 76, 29, 242, 12, 222, 148, 251, + 168, 199, 111, 114, 19, 110, 27, 225, 100, 91, 168, 116, 121, 85, 28, 27, 23, 89, 50, 134, 29, 191, 187, 170, 255, + 255, 159, 68, 205, 10, 172, 109, 191, 74, 28, 86, 119, 105, 17, 62, 225, 31, 219, 111, 27, 249, 87, 91, 158, 76, + 40, 85, 167, 70, 44, 66, 223, 117, 87, 92, 27, 166, 83, 67, 174, 124, 55, 66, 48, 255, 191, 71, 127, 76, 109, 114, + 229, 172, 78, 27, 23, 109, 44, 212, 123, 13, 120, 223, 70, 253, 200, 42, 148, 159, 122, 27, 57, 136, 152, 58, 219, + 234, 72, 193, 255, 191, 68, 181, 206, 229, 13, 67, 17, 245, 13, 71, 230, 145, 216, 176, 156, 69, 181, 73, 19, 59, + 207, 44, 97, 142, 118, 136, 191, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2558, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7233346806568559463" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6461804701060822137" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba6c76db3124" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7431938036769600709" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8ab200c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17702832860781053132" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c958e219699269471f0fa9" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f1b64620298beb9a367bf1b59acf123b6adf47946ba6c76db31241b67238c44b25db4c544f8ab200c1bf5ad18b178f784cc4bc958e219699269471f0fa9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 27, 100, 98, 2, 152, 190, 185, 163, 103, 191, 27, + 89, 172, 241, 35, 182, 173, 244, 121, 70, 186, 108, 118, 219, 49, 36, 27, 103, 35, 140, 68, 178, 93, 180, 197, 68, + 248, 171, 32, 12, 27, 245, 173, 24, 177, 120, 247, 132, 204, 75, 201, 88, 226, 25, 105, 146, 105, 71, 31, 15, 169, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2559, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17534056712446175046" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5379507542117736393" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17918691536174580163" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44e962" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6dd3e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5342d3ee9ddd8f82d63120" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b85de127120bd00d6c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca80f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10803425848248324286" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "987386345824dd8b47e1" + }, + { + "_tag": "ByteArray", + "bytearray": "da91ad1b2c2508ed1d35b4dc" + }, + { + "_tag": "ByteArray", + "bytearray": "ebbb" + } + ] + }, + "cborHex": "d8669f1bf3557bae38e867469fbf1b4aa7d99b92765fc91bf8abfb03cd7c01c34344e962436dd3e44b5342d3ee9ddd8f82d631204a8b85de127120bd00d6c543ca80f81b95ed7a91ea1d50beff4a987386345824dd8b47e14cda91ad1b2c2508ed1d35b4dc42ebbbffff", + "cborBytes": [ + 216, 102, 159, 27, 243, 85, 123, 174, 56, 232, 103, 70, 159, 191, 27, 74, 167, 217, 155, 146, 118, 95, 201, 27, + 248, 171, 251, 3, 205, 124, 1, 195, 67, 68, 233, 98, 67, 109, 211, 228, 75, 83, 66, 211, 238, 157, 221, 143, 130, + 214, 49, 32, 74, 139, 133, 222, 18, 113, 32, 189, 0, 214, 197, 67, 202, 128, 248, 27, 149, 237, 122, 145, 234, 29, + 80, 190, 255, 74, 152, 115, 134, 52, 88, 36, 221, 139, 71, 225, 76, 218, 145, 173, 27, 44, 37, 8, 237, 29, 53, + 180, 220, 66, 235, 187, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2560, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4940940444997902056" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7254196191347268956" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13709686891806127168" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45e27c0afcd7186ff5cc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15675586518683578158" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12830033889091213611" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16074688557986624899" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13053821421623039586" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1be5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14479178051906309197" + } + }, + { + "_tag": "ByteArray", + "bytearray": "99e2a0e6733bae0c55f40586" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1756159440158155645" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16441c0ce9842c56" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8532796957258513139" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79f7e81fc86531da2a11" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9171478850770717745" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7093239155342702944" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11410862008907453839" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2233419775985621547" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11988826681522866089" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14719341340046878494" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14680781170183801393" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b53d8a9d66" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8676307726032153971" + } + } + ] + }, + "cborHex": "d87d9f9fbf1b4491bf281075dee81b64ac15006c3edd5c1bbe4297974feef4404a45e27c0afcd7186ff5cc1bd98adee2cc096f2e1bb20d6fd87f81592b1bdf14c4137dd435831bb5287d6bbd39d662ff421be59f1bc8f05fb967820c4d4c99e2a0e6733bae0c55f40586ffffbf1b185f21b4cf93637d4816441c0ce9842c561b766a959fb9ed7af34a79f7e81fc86531da2a111b7f47a36c15324c311b62703f6e2117f9601b9e5b868a2dedd58f1b1efeb373fdf49a2b1ba660de58e9e547a91bcc459af65d37671e1bcbbc9cb1320c8a3145b53d8a9d66ff1b78686fe8641fad73ff", + "cborBytes": [ + 216, 125, 159, 159, 191, 27, 68, 145, 191, 40, 16, 117, 222, 232, 27, 100, 172, 21, 0, 108, 62, 221, 92, 27, 190, + 66, 151, 151, 79, 238, 244, 64, 74, 69, 226, 124, 10, 252, 215, 24, 111, 245, 204, 27, 217, 138, 222, 226, 204, 9, + 111, 46, 27, 178, 13, 111, 216, 127, 129, 89, 43, 27, 223, 20, 196, 19, 125, 212, 53, 131, 27, 181, 40, 125, 107, + 189, 57, 214, 98, 255, 66, 27, 229, 159, 27, 200, 240, 95, 185, 103, 130, 12, 77, 76, 153, 226, 160, 230, 115, 59, + 174, 12, 85, 244, 5, 134, 255, 255, 191, 27, 24, 95, 33, 180, 207, 147, 99, 125, 72, 22, 68, 28, 12, 233, 132, 44, + 86, 27, 118, 106, 149, 159, 185, 237, 122, 243, 74, 121, 247, 232, 31, 200, 101, 49, 218, 42, 17, 27, 127, 71, + 163, 108, 21, 50, 76, 49, 27, 98, 112, 63, 110, 33, 23, 249, 96, 27, 158, 91, 134, 138, 45, 237, 213, 143, 27, 30, + 254, 179, 115, 253, 244, 154, 43, 27, 166, 96, 222, 88, 233, 229, 71, 169, 27, 204, 69, 154, 246, 93, 55, 103, 30, + 27, 203, 188, 156, 177, 50, 12, 138, 49, 69, 181, 61, 138, 157, 102, 255, 27, 120, 104, 111, 232, 100, 31, 173, + 115, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2561, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7681310943086414729" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8815466021873415503" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "70ce4ad057" + }, + { + "_tag": "ByteArray", + "bytearray": "cdf589f870ec" + }, + { + "_tag": "ByteArray", + "bytearray": "07baa1f9f65d06a0be" + }, + { + "_tag": "ByteArray", + "bytearray": "a4a26e81b7b6245d958a88d6" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12540609130529457162" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5f19468812411587f497f09" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6786bdcb5b3fffc81f2575" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7791693508223600561" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "830234a044" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a59cda382c4c2d432975c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bebdc884f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bae9d601102712ff7963" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff653b411b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4e4b3c4a6714f7330" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3373" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6f409db950607" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2501800295921389379" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "331616946405865428" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1671225000596279999" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17596826887071922137" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12480666915249728123" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8697795caf7343" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7911842083970861507" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cfe68800e49a3a1279" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "628c74fa9a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6267691553512538156" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3829517042429748463" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3c08dc821a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91c5f0e2ee52e93dd5819291" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "04592e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1274458683766677528" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3851093940056817190" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1789324621605197269" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5911881558138973828" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d07de29970" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7145704550357686379" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1682031476320415953" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11461597200987003232" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17526456209109348762" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12996585995584525073" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1410182679123585510" + } + } + } + ] + } + ] + }, + "cborHex": "d87c9fd8669f1b6a997f9afbfc8b899fd8669f1b7a56d3a3fb4a754f9f4570ce4ad05746cdf589f870ec4907baa1f9f65d06a0be4ca4a26e81b7b6245d958a88d6ffffbf1bae09318fac3a840a4cb5f19468812411587f497f09ffbf4b6786bdcb5b3fffc81f25751b6c21a7f6ac6287b145830234a04441054ba59cda382c4c2d432975c245bebdc884f34abae9d601102712ff796345ff653b411b49f4e4b3c4a6714f7330423373ffbf47a6f409db9506071b22b82e1d315c8f43ffbf1b049a23db140577d41b17316248944b12bfffffffd8669f1bf4347cd261f6f7d99fd8669f1bad343c6f1b6e2a7b9f478697795caf73431b6dcc8274e611c9c349cfe68800e49a3a1279ffffa045628c74fa9affff1b56fb5042a0d4c02cd8669f1b35252d75df5464ef9fbf46e3c08dc821a84c91c5f0e2ee52e93dd5819291ff4304592effffbf1b11afc96ba6d3201841b11b3571d588d5befe261b18d4f5435aa355d51b520b38f4630e6e8445d07de299701b632aa46dd1f6586b1b1757c6b7471ab0d11b9f0fc5ed9b7119601bf33a7b102366f19a1bb45d261aa7a1d3111b1391f9acd991e9e6ffff", + "cborBytes": [ + 216, 124, 159, 216, 102, 159, 27, 106, 153, 127, 154, 251, 252, 139, 137, 159, 216, 102, 159, 27, 122, 86, 211, + 163, 251, 74, 117, 79, 159, 69, 112, 206, 74, 208, 87, 70, 205, 245, 137, 248, 112, 236, 73, 7, 186, 161, 249, + 246, 93, 6, 160, 190, 76, 164, 162, 110, 129, 183, 182, 36, 93, 149, 138, 136, 214, 255, 255, 191, 27, 174, 9, 49, + 143, 172, 58, 132, 10, 76, 181, 241, 148, 104, 129, 36, 17, 88, 127, 73, 127, 9, 255, 191, 75, 103, 134, 189, 203, + 91, 63, 255, 200, 31, 37, 117, 27, 108, 33, 167, 246, 172, 98, 135, 177, 69, 131, 2, 52, 160, 68, 65, 5, 75, 165, + 156, 218, 56, 44, 76, 45, 67, 41, 117, 194, 69, 190, 189, 200, 132, 243, 74, 186, 233, 214, 1, 16, 39, 18, 255, + 121, 99, 69, 255, 101, 59, 65, 27, 73, 244, 228, 179, 196, 166, 113, 79, 115, 48, 66, 51, 115, 255, 191, 71, 166, + 244, 9, 219, 149, 6, 7, 27, 34, 184, 46, 29, 49, 92, 143, 67, 255, 191, 27, 4, 154, 35, 219, 20, 5, 119, 212, 27, + 23, 49, 98, 72, 148, 75, 18, 191, 255, 255, 255, 216, 102, 159, 27, 244, 52, 124, 210, 97, 246, 247, 217, 159, + 216, 102, 159, 27, 173, 52, 60, 111, 27, 110, 42, 123, 159, 71, 134, 151, 121, 92, 175, 115, 67, 27, 109, 204, + 130, 116, 230, 17, 201, 195, 73, 207, 230, 136, 0, 228, 154, 58, 18, 121, 255, 255, 160, 69, 98, 140, 116, 250, + 154, 255, 255, 27, 86, 251, 80, 66, 160, 212, 192, 44, 216, 102, 159, 27, 53, 37, 45, 117, 223, 84, 100, 239, 159, + 191, 70, 227, 192, 141, 200, 33, 168, 76, 145, 197, 240, 226, 238, 82, 233, 61, 213, 129, 146, 145, 255, 67, 4, + 89, 46, 255, 255, 191, 27, 17, 175, 201, 107, 166, 211, 32, 24, 65, 177, 27, 53, 113, 213, 136, 213, 190, 254, 38, + 27, 24, 212, 245, 67, 90, 163, 85, 213, 27, 82, 11, 56, 244, 99, 14, 110, 132, 69, 208, 125, 226, 153, 112, 27, + 99, 42, 164, 109, 209, 246, 88, 107, 27, 23, 87, 198, 183, 71, 26, 176, 209, 27, 159, 15, 197, 237, 155, 113, 25, + 96, 27, 243, 58, 123, 16, 35, 102, 241, 154, 27, 180, 93, 38, 26, 167, 161, 211, 17, 27, 19, 145, 249, 172, 217, + 145, 233, 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2562, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "385223600164532421" + } + } + ] + }, + "cborHex": "d9050b9f1b055896d2c6e770c5ff", + "cborBytes": [217, 5, 11, 159, 27, 5, 88, 150, 210, 198, 231, 112, 197, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2563, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15018544091356055515" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "984115740623549349" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4377403255185009340" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3041918458907896971" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15445164440033547450" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f4e725ed7945" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8572366610921210524" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11006564136985417751" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c4af114758777" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8477898546429238135" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18437261703367500836" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9f1bd06c964788d1c7dbd8669f1b0da8480d51bcb3a59fd8669f1b3cbfa9116ff0eabc9f1b2a3710b8bae8ac8b1bd6583f39e9b1d4ba46f4e725ed7945ffffd8669f1b76f72a03a860c29c80ffffffbf1bfffffffffffffff11b98bf2bc46e91d817471c4af1147587771b75a78bcf65b71b77ffd8669f1bffde4fd59c22242480ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 27, 208, 108, 150, 71, 136, 209, 199, 219, 216, + 102, 159, 27, 13, 168, 72, 13, 81, 188, 179, 165, 159, 216, 102, 159, 27, 60, 191, 169, 17, 111, 240, 234, 188, + 159, 27, 42, 55, 16, 184, 186, 232, 172, 139, 27, 214, 88, 63, 57, 233, 177, 212, 186, 70, 244, 231, 37, 237, 121, + 69, 255, 255, 216, 102, 159, 27, 118, 247, 42, 3, 168, 96, 194, 156, 128, 255, 255, 255, 191, 27, 255, 255, 255, + 255, 255, 255, 255, 241, 27, 152, 191, 43, 196, 110, 145, 216, 23, 71, 28, 74, 241, 20, 117, 135, 119, 27, 117, + 167, 139, 207, 101, 183, 27, 119, 255, 216, 102, 159, 27, 255, 222, 79, 213, 156, 34, 36, 36, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2564, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6497052686341935687" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8376054922698132364" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9598802927393668684" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1411af33fd" + }, + { + "_tag": "ByteArray", + "bytearray": "5120" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "768413234121029779" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8019351001355938306" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9251435834018493584" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2092774692129248823" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1157e70740630ac3381" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5384442485243617538" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18219064621980102606" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "491e512c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10671713376014792575" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86e8dd8eed9e63f66aaf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10720275042179842979" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b5a2a2afed06892479f0e9fa01b743db992ee958b8cffd8669f1b8535cc67e4477e4c9f9f451411af33fd4251201b0aa9f3c3e47e38931b6f4a753f54fe6a02ff1b8063b3dff4fdf490bf1b1d0b077e974a96374ad1157e70740630ac33811b4ab961e98e77a1021bfcd71ebeb502afceffffffbf44491e512c1b94198ac63a25777f4a86e8dd8eed9e63f66aaf1b94c6115a379d83a3ffffff", + "cborBytes": [ + 216, 102, 159, 27, 90, 42, 42, 254, 208, 104, 146, 71, 159, 14, 159, 160, 27, 116, 61, 185, 146, 238, 149, 139, + 140, 255, 216, 102, 159, 27, 133, 53, 204, 103, 228, 71, 126, 76, 159, 159, 69, 20, 17, 175, 51, 253, 66, 81, 32, + 27, 10, 169, 243, 195, 228, 126, 56, 147, 27, 111, 74, 117, 63, 84, 254, 106, 2, 255, 27, 128, 99, 179, 223, 244, + 253, 244, 144, 191, 27, 29, 11, 7, 126, 151, 74, 150, 55, 74, 209, 21, 126, 112, 116, 6, 48, 172, 51, 129, 27, 74, + 185, 97, 233, 142, 119, 161, 2, 27, 252, 215, 30, 190, 181, 2, 175, 206, 255, 255, 255, 191, 68, 73, 30, 81, 44, + 27, 148, 25, 138, 198, 58, 37, 119, 127, 74, 134, 232, 221, 142, 237, 158, 99, 246, 106, 175, 27, 148, 198, 17, + 90, 55, 157, 131, 163, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2565, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10613101304970822705" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3162558200895565473" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7605332389052606156" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f4b3bf190f04ea77cf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "542371534551590491" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15517150802685970017" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12107290383237449141" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14030174769864669378" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16901603461380637475" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4259323405882078276" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b93494f68000544319fd8669f1b2be3a9ed81e0eea19f9f1b698b91835840e6cc49f4b3bf190f04ea77cf1b0786e4097d3b265bff1bd757fe711043c6611ba805bc74d55f05b5d8669f1bc2b5319e3e6e78c29f1bea8e8eccb21b0323ffffffffd8669f1b3b1c28121f1bb44480ffffff", + "cborBytes": [ + 216, 102, 159, 27, 147, 73, 79, 104, 0, 5, 68, 49, 159, 216, 102, 159, 27, 43, 227, 169, 237, 129, 224, 238, 161, + 159, 159, 27, 105, 139, 145, 131, 88, 64, 230, 204, 73, 244, 179, 191, 25, 15, 4, 234, 119, 207, 27, 7, 134, 228, + 9, 125, 59, 38, 91, 255, 27, 215, 87, 254, 113, 16, 67, 198, 97, 27, 168, 5, 188, 116, 213, 95, 5, 181, 216, 102, + 159, 27, 194, 181, 49, 158, 62, 110, 120, 194, 159, 27, 234, 142, 142, 204, 178, 27, 3, 35, 255, 255, 255, 255, + 216, 102, 159, 27, 59, 28, 40, 18, 31, 27, 180, 68, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2566, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16784938758944097421" + }, + "fields": [] + }, + "cborHex": "d8669f1be8f014deef8c848d80ff", + "cborBytes": [216, 102, 159, 27, 232, 240, 20, 222, 239, 140, 132, 141, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2567, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11651276238551980950" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b0848f" + } + ] + }, + "cborHex": "d8669f1ba1b1a60202d71b969f43b0848fffff", + "cborBytes": [216, 102, 159, 27, 161, 177, 166, 2, 2, 215, 27, 150, 159, 67, 176, 132, 143, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2568, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3720683903791820413" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10536983806345725944" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3265934420732838915" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bffb60266d00e7aabc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8205443928166925318" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "882070893430156c22e0d67f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8552365446344806813" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17029320565319090315" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d56" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17468237670126684105" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6205740042044726927" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2935733701849892078" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "49838fd8" + }, + { + "_tag": "ByteArray", + "bytearray": "9281" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13121307735504472048" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7741551083473063888" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13428769769319638241" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c0cbf890a9bef338" + }, + { + "_tag": "ByteArray", + "bytearray": "fb49" + }, + { + "_tag": "ByteArray", + "bytearray": "d90083a7" + }, + { + "_tag": "ByteArray", + "bytearray": "91d8" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9d31f71461f57d64" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16081122146274353063" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17626497679128383781" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4395050563440088981" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15235317062101986772" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b41162fbaf184b11070e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "71026819199697910" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16314998030975032824" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17778334775874823134" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2565c11da9a1f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c46744a7480" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4783627990390268201" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6df7fcd1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1548172540842669405" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4500831423976558008" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4685f8" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "76c3a8" + } + ] + } + ] + }, + "cborHex": "d8669f1b33a2864c27066e7d9fd8669f1b923ae2f1cd47c7f880ffd8669f1bfffffffffffffff49fbf1b2d52ee0d4f80840349bffb60266d00e7aabc1b71df97c742c684064c882070893430156c22e0d67f1b76b01b0fa2b5119d41871bec544cd43619408b425d561bf26ba59c3bff87c91b561f37b0567e5e8fffd8669f1b28bdd23f65e7c4ee9f4449838fd84292811bb6183fdda35447f01b6b6f83b1a4f3cfd0ffff9f1bba5c92f4decd24e148c0cbf890a9bef33842fb4944d90083a74291d8ff489d31f71461f57d64ffffd905049fd8669f1bdf2b9f63fe599fa79f1bf49de63ffeb1d1251b3cfe5b3393ba17951bd36eb825d7096dd44ab41162fbaf184b11070effffbf1b00fc568407ec83f61be26a8444c376ddf81bf6b95548f5fe23de47e2565c11da9a1f464c46744a74801b4262dc5000d3e129446df7fcd11b157c36b92bf0f55dffd8669f1b3e762a556c09cdb89f434685f8ffff4376c3a8ffffff", + "cborBytes": [ + 216, 102, 159, 27, 51, 162, 134, 76, 39, 6, 110, 125, 159, 216, 102, 159, 27, 146, 58, 226, 241, 205, 71, 199, + 248, 128, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 191, 27, 45, 82, 238, 13, 79, 128, + 132, 3, 73, 191, 251, 96, 38, 109, 0, 231, 170, 188, 27, 113, 223, 151, 199, 66, 198, 132, 6, 76, 136, 32, 112, + 137, 52, 48, 21, 108, 34, 224, 214, 127, 27, 118, 176, 27, 15, 162, 181, 17, 157, 65, 135, 27, 236, 84, 76, 212, + 54, 25, 64, 139, 66, 93, 86, 27, 242, 107, 165, 156, 59, 255, 135, 201, 27, 86, 31, 55, 176, 86, 126, 94, 143, + 255, 216, 102, 159, 27, 40, 189, 210, 63, 101, 231, 196, 238, 159, 68, 73, 131, 143, 216, 66, 146, 129, 27, 182, + 24, 63, 221, 163, 84, 71, 240, 27, 107, 111, 131, 177, 164, 243, 207, 208, 255, 255, 159, 27, 186, 92, 146, 244, + 222, 205, 36, 225, 72, 192, 203, 248, 144, 169, 190, 243, 56, 66, 251, 73, 68, 217, 0, 131, 167, 66, 145, 216, + 255, 72, 157, 49, 247, 20, 97, 245, 125, 100, 255, 255, 217, 5, 4, 159, 216, 102, 159, 27, 223, 43, 159, 99, 254, + 89, 159, 167, 159, 27, 244, 157, 230, 63, 254, 177, 209, 37, 27, 60, 254, 91, 51, 147, 186, 23, 149, 27, 211, 110, + 184, 37, 215, 9, 109, 212, 74, 180, 17, 98, 251, 175, 24, 75, 17, 7, 14, 255, 255, 191, 27, 0, 252, 86, 132, 7, + 236, 131, 246, 27, 226, 106, 132, 68, 195, 118, 221, 248, 27, 246, 185, 85, 72, 245, 254, 35, 222, 71, 226, 86, + 92, 17, 218, 154, 31, 70, 76, 70, 116, 74, 116, 128, 27, 66, 98, 220, 80, 0, 211, 225, 41, 68, 109, 247, 252, 209, + 27, 21, 124, 54, 185, 43, 240, 245, 93, 255, 216, 102, 159, 27, 62, 118, 42, 85, 108, 9, 205, 184, 159, 67, 70, + 133, 248, 255, 255, 67, 118, 195, 168, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2569, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15607650422150428312" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3288430540640099562" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01023005f8fd87f800" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7585b81c0901" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bf48b073e33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13941d424c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5173826709092567681" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9102618036373387853" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cefbbc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9116800850743213770" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4732034146372812852" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13326903163800634074" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d905029f9f1bd899835db6c07698d8669f1b2da2da2763661cea80ffff9fbf4901023005f8fd87f800467585b81c0901465bf48b073e3341e942fa004513941d424cff9f1b47cd1ffad4e40a81ffff9f9f1b7e52fee058197a4d43cefbbc1b7e85621224873eca1b41ab8ffc17920034ff1bb8f2abd18a5dc2daffa09f80ffff", + "cborBytes": [ + 217, 5, 2, 159, 159, 27, 216, 153, 131, 93, 182, 192, 118, 152, 216, 102, 159, 27, 45, 162, 218, 39, 99, 102, 28, + 234, 128, 255, 255, 159, 191, 73, 1, 2, 48, 5, 248, 253, 135, 248, 0, 70, 117, 133, 184, 28, 9, 1, 70, 91, 244, + 139, 7, 62, 51, 65, 233, 66, 250, 0, 69, 19, 148, 29, 66, 76, 255, 159, 27, 71, 205, 31, 250, 212, 228, 10, 129, + 255, 255, 159, 159, 27, 126, 82, 254, 224, 88, 25, 122, 77, 67, 206, 251, 188, 27, 126, 133, 98, 18, 36, 135, 62, + 202, 27, 65, 171, 143, 252, 23, 146, 0, 52, 255, 27, 184, 242, 171, 209, 138, 93, 194, 218, 255, 160, 159, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2570, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12609149325600038322" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b37b6bdc22d80c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9799738641776804259" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5992611" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6776075562532273611" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec20b054afb9e637" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "852e029140c4" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e175ff17936a21b09d" + }, + { + "_tag": "ByteArray", + "bytearray": "1d00bf7b964f6272272e" + }, + { + "_tag": "ByteArray", + "bytearray": "b14f85e005b42b8e34" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f1baefcb281683f1db2bf482b37b6bdc22d80c61b87ffaa5f9ac681a344c59926111b5e0974d2abf0fdcb48ec20b054afb9e63746852e029140c4ff9f49e175ff17936a21b09d4a1d00bf7b964f6272272e49b14f85e005b42b8e34ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 27, 174, 252, 178, 129, 104, 63, 29, 178, 191, 72, + 43, 55, 182, 189, 194, 45, 128, 198, 27, 135, 255, 170, 95, 154, 198, 129, 163, 68, 197, 153, 38, 17, 27, 94, 9, + 116, 210, 171, 240, 253, 203, 72, 236, 32, 176, 84, 175, 185, 230, 55, 70, 133, 46, 2, 145, 64, 196, 255, 159, 73, + 225, 117, 255, 23, 147, 106, 33, 176, 157, 74, 29, 0, 191, 123, 150, 79, 98, 114, 39, 46, 73, 177, 79, 133, 224, + 5, 180, 43, 142, 52, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2571, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2462720031962094299" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5240720266859659939" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3c78e289c4334c8f4d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22e28e11b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11743633976413784355" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "665dbac11eec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "583160970c892bcfd3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6db9d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f6cf10cc30f401a93" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d8ca8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "139c8713" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b49c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15438568355341908050" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0b60daaf64f2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd48effe" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "490d8d73498215dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78349a08" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4910b2107e63b8d9ac20aaf6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e85faf196c" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13048618991981757430" + } + } + ] + }, + "cborHex": "d905049fd8669f1b222d56d22e56dadb9f1b48bac750f15c42a3ffff9f493c78e289c4334c8f4dbf4522e28e11b01ba2f9c4e1905a092346665dbac11eec49583160970c892bcfd3436db9d4494f6cf10cc30f401a93438d8ca844139c871342b49c1bd640d01f44bdb85247f0b60daaf64f2d44cd48effeffbf48490d8d73498215dd4478349a084c4910b2107e63b8d9ac20aaf645e85faf196cffff1bb51601d6b27d03f6ff", + "cborBytes": [ + 217, 5, 4, 159, 216, 102, 159, 27, 34, 45, 86, 210, 46, 86, 218, 219, 159, 27, 72, 186, 199, 80, 241, 92, 66, 163, + 255, 255, 159, 73, 60, 120, 226, 137, 196, 51, 76, 143, 77, 191, 69, 34, 226, 142, 17, 176, 27, 162, 249, 196, + 225, 144, 90, 9, 35, 70, 102, 93, 186, 193, 30, 236, 73, 88, 49, 96, 151, 12, 137, 43, 207, 211, 67, 109, 185, + 212, 73, 79, 108, 241, 12, 195, 15, 64, 26, 147, 67, 141, 140, 168, 68, 19, 156, 135, 19, 66, 180, 156, 27, 214, + 64, 208, 31, 68, 189, 184, 82, 71, 240, 182, 13, 170, 246, 79, 45, 68, 205, 72, 239, 254, 255, 191, 72, 73, 13, + 141, 115, 73, 130, 21, 221, 68, 120, 52, 154, 8, 76, 73, 16, 178, 16, 126, 99, 184, 217, 172, 32, 170, 246, 69, + 232, 95, 175, 25, 108, 255, 255, 27, 181, 22, 1, 214, 178, 125, 3, 246, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2572, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9661665098705833181" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12579940534281498300" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13154594054157174347" + } + }, + { + "_tag": "ByteArray", + "bytearray": "524214cfbe" + }, + { + "_tag": "ByteArray", + "bytearray": "4a" + }, + { + "_tag": "ByteArray", + "bytearray": "f03a3ba7aaf1fb24adef" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14349997657813331653" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17412291892541756686" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1820154234618158315" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cd02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3249767975970350066" + } + } + ] + }, + "cborHex": "d905029fd8669f1b86152137b3268cdd80ffd87a9fa09f1bae94ed43b962eebc1bb68e8198a281064b45524214cfbe414a4af03a3ba7aaf1fb24adefff41fcd8669f1bc7256ed719a6aec59f1bf1a4e338d45d950effff1b19427ca1fed69cebff9f80ff42cd021b2d197ec1922723f2ff", + "cborBytes": [ + 217, 5, 2, 159, 216, 102, 159, 27, 134, 21, 33, 55, 179, 38, 140, 221, 128, 255, 216, 122, 159, 160, 159, 27, 174, + 148, 237, 67, 185, 98, 238, 188, 27, 182, 142, 129, 152, 162, 129, 6, 75, 69, 82, 66, 20, 207, 190, 65, 74, 74, + 240, 58, 59, 167, 170, 241, 251, 36, 173, 239, 255, 65, 252, 216, 102, 159, 27, 199, 37, 110, 215, 25, 166, 174, + 197, 159, 27, 241, 164, 227, 56, 212, 93, 149, 14, 255, 255, 27, 25, 66, 124, 161, 254, 214, 156, 235, 255, 159, + 128, 255, 66, 205, 2, 27, 45, 25, 126, 193, 146, 39, 35, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2573, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6151466855457998920" + }, + "fields": [] + }, + "cborHex": "d8669f1b555e66835f29c84880ff", + "cborBytes": [216, 102, 159, 27, 85, 94, 102, 131, 95, 41, 200, 72, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2574, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "602176377114152094" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15661892694979208135" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2132418944040076555" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16405819564461029802" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "405155009649494844" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f558565d3b" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2794470250907102642" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "842cda0da9f2ab54" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3787533456642261247" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fac88fe135c007" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11920434163981482980" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a38fea534d31be207b56fb5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11945434344437035147" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8417595502387996986" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13654710433195832692" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0b1b88eeb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14495359732002572086" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16822655322456563212" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13076219439056228520" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3740638106753480118" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff550ad47dd271783e4709d2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18238814240350684415" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11854361919377094986" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1405425811254676632" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "912c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9c3989e89a36" + }, + { + "_tag": "ByteArray", + "bytearray": "be5995" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4109350564810276226" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13280007219039404918" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87c9fd8669f1b085b5c397a054c9e9f1bd95a386d028563c79f1b1d97dfbb47d2850b1be3ad2df8dcda79aa1b059f6655ad20cb3c45f558565d3bffffffbf1b26c7f3e330b6edb248842cda0da9f2ab541b3490059c9211c0ff47fac88fe135c0071ba56de3b7088bfbe44c6a38fea534d31be207b56fb51ba5c6b53f23ebb08b1b74d14e82d6c3293a1bbd7f46cb1175357445f0b1b88eeb1bc929dce06583c7361be97613e2b1db9e0cffd8669f1bb578104c8e0110a89fd8669f1b33e96a8a1254b5b69f4cff550ad47dd271783e4709d21bfd1d48eb107044ff1ba483275bcb63b94affffd8669f1b138113543e000c989f42912cffff469c3989e89a3643be5995ffffd8669f1b3907589101113d829fd9050c9f1bb84c103489778376ffffffff", + "cborBytes": [ + 216, 124, 159, 216, 102, 159, 27, 8, 91, 92, 57, 122, 5, 76, 158, 159, 27, 217, 90, 56, 109, 2, 133, 99, 199, 159, + 27, 29, 151, 223, 187, 71, 210, 133, 11, 27, 227, 173, 45, 248, 220, 218, 121, 170, 27, 5, 159, 102, 85, 173, 32, + 203, 60, 69, 245, 88, 86, 93, 59, 255, 255, 255, 191, 27, 38, 199, 243, 227, 48, 182, 237, 178, 72, 132, 44, 218, + 13, 169, 242, 171, 84, 27, 52, 144, 5, 156, 146, 17, 192, 255, 71, 250, 200, 143, 225, 53, 192, 7, 27, 165, 109, + 227, 183, 8, 139, 251, 228, 76, 106, 56, 254, 165, 52, 211, 27, 226, 7, 181, 111, 181, 27, 165, 198, 181, 63, 35, + 235, 176, 139, 27, 116, 209, 78, 130, 214, 195, 41, 58, 27, 189, 127, 70, 203, 17, 117, 53, 116, 69, 240, 177, + 184, 142, 235, 27, 201, 41, 220, 224, 101, 131, 199, 54, 27, 233, 118, 19, 226, 177, 219, 158, 12, 255, 216, 102, + 159, 27, 181, 120, 16, 76, 142, 1, 16, 168, 159, 216, 102, 159, 27, 51, 233, 106, 138, 18, 84, 181, 182, 159, 76, + 255, 85, 10, 212, 125, 210, 113, 120, 62, 71, 9, 210, 27, 253, 29, 72, 235, 16, 112, 68, 255, 27, 164, 131, 39, + 91, 203, 99, 185, 74, 255, 255, 216, 102, 159, 27, 19, 129, 19, 84, 62, 0, 12, 152, 159, 66, 145, 44, 255, 255, + 70, 156, 57, 137, 232, 154, 54, 67, 190, 89, 149, 255, 255, 216, 102, 159, 27, 57, 7, 88, 145, 1, 17, 61, 130, + 159, 217, 5, 12, 159, 27, 184, 76, 16, 52, 137, 119, 131, 118, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2575, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18341708790738904544" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79f1bfe8ad6f775a6e5e04106ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 27, 254, 138, 214, 247, 117, 166, 229, 224, 65, 6, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2576, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "584c24604b8f304ee2e08e" + }, + { + "_tag": "ByteArray", + "bytearray": "ff063d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10102190351062005475" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "52da518100" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9287223384549013222" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87d9f9f4b584c24604b8f304ee2e08e43ff063dff9fa0d8669f1b8c323099c06df6e39f4552da5181001b80e2d87661beb6e6ffffffff", + "cborBytes": [ + 216, 125, 159, 159, 75, 88, 76, 36, 96, 75, 143, 48, 78, 226, 224, 142, 67, 255, 6, 61, 255, 159, 160, 216, 102, + 159, 27, 140, 50, 48, 153, 192, 109, 246, 227, 159, 69, 82, 218, 81, 129, 0, 27, 128, 226, 216, 118, 97, 190, 182, + 230, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2577, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "26921b9a61e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10032905704314921554" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1380661640656218644" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16054905383542780" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15672242099469307912" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7570d97c41cd27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9086615878672974563" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10099604478949796396" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6740732262657053985" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13239144026752642389" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15495030992611509096" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5453248551995808945" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2714354123367098777" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2840695775754824427" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79f4626921b9a61e31b8b3c0a94daae6252d8669f1b1329187276526a149fd8669f1b003909d9f449dffc9f1bd97efd2784ca5008477570d97c41cd271b7e1a24ffaaba02e3ffff1b8c2900c37bbf2a2cbf1b5d8be44769b055211bb7bae3592cd36d551bd70968977247036841a3ffd8669f1b4badd4aa5d9f9cb19f1b25ab52b1a5e9a999ffff80ffff1b276c2dc1e4d1aaebffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 70, 38, 146, 27, 154, 97, 227, 27, 139, 60, 10, + 148, 218, 174, 98, 82, 216, 102, 159, 27, 19, 41, 24, 114, 118, 82, 106, 20, 159, 216, 102, 159, 27, 0, 57, 9, + 217, 244, 73, 223, 252, 159, 27, 217, 126, 253, 39, 132, 202, 80, 8, 71, 117, 112, 217, 124, 65, 205, 39, 27, 126, + 26, 36, 255, 170, 186, 2, 227, 255, 255, 27, 140, 41, 0, 195, 123, 191, 42, 44, 191, 27, 93, 139, 228, 71, 105, + 176, 85, 33, 27, 183, 186, 227, 89, 44, 211, 109, 85, 27, 215, 9, 104, 151, 114, 71, 3, 104, 65, 163, 255, 216, + 102, 159, 27, 75, 173, 212, 170, 93, 159, 156, 177, 159, 27, 37, 171, 82, 177, 165, 233, 169, 153, 255, 255, 128, + 255, 255, 27, 39, 108, 45, 193, 228, 209, 170, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2578, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7747488735465555620" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3476609550515466357" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10696279616659987326" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f3cd2b9788312b6afb7ab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14704426790389048782" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f85d07c486024349852b1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1117ab1467467060d7eeb5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12115150778615811781" + } + } + } + ] + } + ] + }, + "cborHex": "d905079f01d90509800fbf1b6b849bf4fac3c6a41b303f65f7613470751b9470d1a3d9451b7e4b3f3cd2b9788312b6afb7ab1bcc109e422ae065ce4b6f85d07c486024349852b14b1117ab1467467060d7eeb51ba821a971bfb14ec5ffff", + "cborBytes": [ + 217, 5, 7, 159, 1, 217, 5, 9, 128, 15, 191, 27, 107, 132, 155, 244, 250, 195, 198, 164, 27, 48, 63, 101, 247, 97, + 52, 112, 117, 27, 148, 112, 209, 163, 217, 69, 27, 126, 75, 63, 60, 210, 185, 120, 131, 18, 182, 175, 183, 171, + 27, 204, 16, 158, 66, 42, 224, 101, 206, 75, 111, 133, 208, 124, 72, 96, 36, 52, 152, 82, 177, 75, 17, 23, 171, + 20, 103, 70, 112, 96, 215, 238, 181, 27, 168, 33, 169, 113, 191, 177, 78, 197, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2579, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29fa0ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2580, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13756707655420443141" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7fae4c76243e0ed1c9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "056e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc0f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "549ef583207d78" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "956d8c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16963099031723968333" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17069095305480662925" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2305fd0706e40500091ac102" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7253313723452110425" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "808eac32af36447864" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12031135598894201197" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01f60207" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13542728609412564595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2602643254822623392" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0601" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d2407" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7fb55e0e86cd4be4bd06" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb469bc0ed6cd81551" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6aff47895926558d" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bbee9a4b9f83b7a059f497fae4c76243e0ed1c9bf42056e42fc0f47549ef583207d7843956d8cff1beb6908b1ebae074dbf061bece19bbe90766f8d074c2305fd0706e40500091ac1021b64a8f266dad4365949808eac32af364478641ba6f72e1560a5396d4401f602071bbbf16feaf58e46731b241e724038c4d8a01bffffffffffffffff420601ffbf438d24074a7fb55e0e86cd4be4bd0649fb469bc0ed6cd81551486aff47895926558dffffff", + "cborBytes": [ + 216, 102, 159, 27, 190, 233, 164, 185, 248, 59, 122, 5, 159, 73, 127, 174, 76, 118, 36, 62, 14, 209, 201, 191, 66, + 5, 110, 66, 252, 15, 71, 84, 158, 245, 131, 32, 125, 120, 67, 149, 109, 140, 255, 27, 235, 105, 8, 177, 235, 174, + 7, 77, 191, 6, 27, 236, 225, 155, 190, 144, 118, 111, 141, 7, 76, 35, 5, 253, 7, 6, 228, 5, 0, 9, 26, 193, 2, 27, + 100, 168, 242, 102, 218, 212, 54, 89, 73, 128, 142, 172, 50, 175, 54, 68, 120, 100, 27, 166, 247, 46, 21, 96, 165, + 57, 109, 68, 1, 246, 2, 7, 27, 187, 241, 111, 234, 245, 142, 70, 115, 27, 36, 30, 114, 64, 56, 196, 216, 160, 27, + 255, 255, 255, 255, 255, 255, 255, 255, 66, 6, 1, 255, 191, 67, 141, 36, 7, 74, 127, 181, 94, 14, 134, 205, 75, + 228, 189, 6, 73, 251, 70, 155, 192, 237, 108, 216, 21, 81, 72, 106, 255, 71, 137, 89, 38, 85, 141, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2581, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16511580366987296151" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f48cac2d87459f4b108b" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3354852758112263151" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9028907998873834109" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e7eacfa779" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8582010667941143894" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e6a671258e599" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8ae1b93077db4615737f5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8755562899953471514" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d82dcd7045b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "396c3ada54" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9fd8669f1be524eadc96977d979f4af48cac2d87459f4b108b80d8669f1b2e8ed4cf09055bef9f1b7d4d1ffcde8ed27d45e7eacfa7791b77196d3ba93ea556ffffbf472e6a671258e5994ba8ae1b93077db4615737f541b01b798202118c50d01a46d82dcd7045b445396c3ada54ffffffd9050580ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 216, 102, 159, 27, 229, 36, 234, 220, 150, 151, + 125, 151, 159, 74, 244, 140, 172, 45, 135, 69, 159, 75, 16, 139, 128, 216, 102, 159, 27, 46, 142, 212, 207, 9, 5, + 91, 239, 159, 27, 125, 77, 31, 252, 222, 142, 210, 125, 69, 231, 234, 207, 167, 121, 27, 119, 25, 109, 59, 169, + 62, 165, 86, 255, 255, 191, 71, 46, 106, 103, 18, 88, 229, 153, 75, 168, 174, 27, 147, 7, 125, 180, 97, 87, 55, + 245, 65, 176, 27, 121, 130, 2, 17, 140, 80, 208, 26, 70, 216, 45, 205, 112, 69, 180, 69, 57, 108, 58, 218, 84, + 255, 255, 255, 217, 5, 5, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2582, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9817633132897432355" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "280133144392717465" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f61a83244b8e03a62f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14093698543606727435" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b883f3d517d74f3239f9f9f1b03e33b9c5157549949f61a83244b8e03a62fff1bc396e0275f1e830bffffff", + "cborBytes": [ + 216, 102, 159, 27, 136, 63, 61, 81, 125, 116, 243, 35, 159, 159, 159, 27, 3, 227, 59, 156, 81, 87, 84, 153, 73, + 246, 26, 131, 36, 75, 142, 3, 166, 47, 255, 27, 195, 150, 224, 39, 95, 30, 131, 11, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2583, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14372261306791400293" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dbf98e74a2" + } + ] + }, + "cborHex": "d8669f1bc7748782d26493659f45dbf98e74a2ffff", + "cborBytes": [ + 216, 102, 159, 27, 199, 116, 135, 130, 210, 100, 147, 101, 159, 69, 219, 249, 142, 116, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2584, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1669332207033085257" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "47" + }, + { + "_tag": "ByteArray", + "bytearray": "01cf4082a71c11e02d6de897" + }, + { + "_tag": "ByteArray", + "bytearray": "d235c7901f" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14723104547026527814" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "87af93806627" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "469bbe7422d0212abc6299" + }, + { + "_tag": "ByteArray", + "bytearray": "c4c729e4e59422336a70" + } + ] + }, + "cborHex": "d8669f1b172aa8cc3c536d499f9f9f41474c01cf4082a71c11e02d6de89745d235c7901fffffd8669f1bcc52f994447466469f4687af93806627ffff4b469bbe7422d0212abc62994ac4c729e4e59422336a70ffff", + "cborBytes": [ + 216, 102, 159, 27, 23, 42, 168, 204, 60, 83, 109, 73, 159, 159, 159, 65, 71, 76, 1, 207, 64, 130, 167, 28, 17, + 224, 45, 109, 232, 151, 69, 210, 53, 199, 144, 31, 255, 255, 216, 102, 159, 27, 204, 82, 249, 148, 68, 116, 102, + 70, 159, 70, 135, 175, 147, 128, 102, 39, 255, 255, 75, 70, 155, 190, 116, 34, 208, 33, 42, 188, 98, 153, 74, 196, + 199, 41, 228, 229, 148, 34, 51, 106, 112, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2585, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "565296653224056455" + }, + "fields": [] + }, + "cborHex": "d8669f1b07d8564fa023168780ff", + "cborBytes": [216, 102, 159, 27, 7, 216, 86, 79, 160, 35, 22, 135, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2586, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16920042942148054890" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5a7f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13052555620306321701" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "844c953691" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2234570084503110398" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13085188934840415275" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7758632460057794879" + } + }, + { + "_tag": "ByteArray", + "bytearray": "16eca3" + } + ] + }, + "cborHex": "d8669f1bead01168df170f6a9f425a7fd8669f1bb523fe2e676301259f45844c9536919f1b1f02c9a71085c2fe1bb597ee020808f42bffffff1b6bac331d8c8f593f4316eca3ffff", + "cborBytes": [ + 216, 102, 159, 27, 234, 208, 17, 104, 223, 23, 15, 106, 159, 66, 90, 127, 216, 102, 159, 27, 181, 35, 254, 46, + 103, 99, 1, 37, 159, 69, 132, 76, 149, 54, 145, 159, 27, 31, 2, 201, 167, 16, 133, 194, 254, 27, 181, 151, 238, 2, + 8, 8, 244, 43, 255, 255, 255, 27, 107, 172, 51, 29, 140, 143, 89, 63, 67, 22, 236, 163, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2587, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "040e04fce0eb87b9c86c6653" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7924265210435961674" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f12a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11666972247200081606" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d905019fbf4c040e04fce0eb87b9c86c66531b6df8a5396e05834a42f12a1ba1e96971ceb3a6c6ffa0ff", + "cborBytes": [ + 217, 5, 1, 159, 191, 76, 4, 14, 4, 252, 224, 235, 135, 185, 200, 108, 102, 83, 27, 109, 248, 165, 57, 110, 5, 131, + 74, 66, 241, 42, 27, 161, 233, 105, 113, 206, 179, 166, 198, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2588, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + }, + "cborHex": "d905049f01ff", + "cborBytes": [217, 5, 4, 159, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2589, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5852336895700935709" + } + } + ] + }, + "cborHex": "d905099f1b5137ad664e2aa41dff", + "cborBytes": [217, 5, 9, 159, 27, 81, 55, 173, 102, 78, 42, 164, 29, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2590, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15058327991751688222" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "97ab8302f60a84e0e830a63c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15634511295442842361" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bd0f9ed86abae401e9fbf4c97ab8302f60a84e0e830a63c410442fe061bd8f8f13021b3f2f9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 208, 249, 237, 134, 171, 174, 64, 30, 159, 191, 76, 151, 171, 131, 2, 246, 10, 132, 224, 232, + 48, 166, 60, 65, 4, 66, 254, 6, 27, 216, 248, 241, 48, 33, 179, 242, 249, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2591, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8211615064023079780" + }, + "fields": [] + }, + "cborHex": "d8669f1b71f58464cb579b6480ff", + "cborBytes": [216, 102, 159, 27, 113, 245, 132, 100, 203, 87, 155, 100, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2592, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1326390088796612787" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9518cc816044" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b592054f17e951e3d27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15096277767312593236" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c7cfbb6392fce6b53" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e765a2a4965a0c98573" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4613335629110802870" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e92005a1a95b45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb0cd643741ab97f9dc9f2" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b1577283bc2c11a0b4aa80e3" + } + ] + }, + "cborHex": "d8669f1b126848c21c5228b39fbf4104469518cc8160444a3b592054f17e951e3d271bd180c0a5574b5154416a497c7cfbb6392fce6b534a8e765a2a4965a0c985731b4005dc4feacd79b647e92005a1a95b454bfb0cd643741ab97f9dc9f2ff4cb1577283bc2c11a0b4aa80e3ffff", + "cborBytes": [ + 216, 102, 159, 27, 18, 104, 72, 194, 28, 82, 40, 179, 159, 191, 65, 4, 70, 149, 24, 204, 129, 96, 68, 74, 59, 89, + 32, 84, 241, 126, 149, 30, 61, 39, 27, 209, 128, 192, 165, 87, 75, 81, 84, 65, 106, 73, 124, 124, 251, 182, 57, + 47, 206, 107, 83, 74, 142, 118, 90, 42, 73, 101, 160, 201, 133, 115, 27, 64, 5, 220, 79, 234, 205, 121, 182, 71, + 233, 32, 5, 161, 169, 91, 69, 75, 251, 12, 214, 67, 116, 26, 185, 127, 157, 201, 242, 255, 76, 177, 87, 114, 131, + 188, 44, 17, 160, 180, 170, 128, 227, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2593, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15077753947823552671" + } + } + ] + }, + "cborHex": "d905099f1bd13ef15486c4389fff", + "cborBytes": [217, 5, 9, 159, 27, 209, 62, 241, 84, 134, 196, 56, 159, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2594, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14746143534399505070" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2b27" + } + ] + }, + "cborHex": "d8669f1bcca4d36a86ce42ae9f422b27ffff", + "cborBytes": [216, 102, 159, 27, 204, 164, 211, 106, 134, 206, 66, 174, 159, 66, 43, 39, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2595, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16750241849973305214" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "113583207906735172" + } + } + ] + }, + "cborHex": "d8669f1be874d037498a6f7e9f1b0193875367baf444ffff", + "cborBytes": [ + 216, 102, 159, 27, 232, 116, 208, 55, 73, 138, 111, 126, 159, 27, 1, 147, 135, 83, 103, 186, 244, 68, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2596, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13168090431675272675" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3716920866999069277" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "727d2b846820cd9e1de753d4" + }, + { + "_tag": "ByteArray", + "bytearray": "8fc9a1ef" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "307640852156045708" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9687267689250525540" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3495480713461956708" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cfd347a5b67c49" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9fd8669f1bb6be747ae6398de39f1b339527d5dfb76a5dffff9f9f4c727d2b846820cd9e1de753d4448fc9a1ef1b0444f5b99f28d98cff9f1b867016a355e59164ff1b3082713065210064ff47cfd347a5b67c49ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 216, 102, 159, 27, 182, 190, 116, 122, 230, 57, + 141, 227, 159, 27, 51, 149, 39, 213, 223, 183, 106, 93, 255, 255, 159, 159, 76, 114, 125, 43, 132, 104, 32, 205, + 158, 29, 231, 83, 212, 68, 143, 201, 161, 239, 27, 4, 68, 245, 185, 159, 40, 217, 140, 255, 159, 27, 134, 112, 22, + 163, 85, 229, 145, 100, 255, 27, 48, 130, 113, 48, 101, 33, 0, 100, 255, 71, 207, 211, 71, 165, 182, 124, 73, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2597, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12559885526455351959" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2838691218258596696" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f197a0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8812907958538536511" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8087384030043062970" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13120006281182429373" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74367546" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0dc9a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3393412092593755376" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10466362167771068458" + } + }, + { + "_tag": "ByteArray", + "bytearray": "97ee8b6b46e496861d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15990164633019586958" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1122646358014543847" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14122423434311883744" + } + }, + { + "_tag": "ByteArray", + "bytearray": "313e213bd706798d862aa832" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f9f1bae4dad5757f0fa97bf1b27650e9f7b53135843f197a01b7a4dbd1872e7063f1b703c28ed30e242ba1bb613a03330c5c0bd447436754643d0dc9a1b2f17d251b390d4f0ff9f1b913ffcf03c94f82a4997ee8b6b46e496861d1bdde87a03a325998e1b0f9470ea21d7c7e7ffff1bc3fced4a29cfdbe04c313e213bd706798d862aa832ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 159, 27, 174, 77, 173, 87, 87, 240, 250, 151, 191, + 27, 39, 101, 14, 159, 123, 83, 19, 88, 67, 241, 151, 160, 27, 122, 77, 189, 24, 114, 231, 6, 63, 27, 112, 60, 40, + 237, 48, 226, 66, 186, 27, 182, 19, 160, 51, 48, 197, 192, 189, 68, 116, 54, 117, 70, 67, 208, 220, 154, 27, 47, + 23, 210, 81, 179, 144, 212, 240, 255, 159, 27, 145, 63, 252, 240, 60, 148, 248, 42, 73, 151, 238, 139, 107, 70, + 228, 150, 134, 29, 27, 221, 232, 122, 3, 163, 37, 153, 142, 27, 15, 148, 112, 234, 33, 215, 199, 231, 255, 255, + 27, 195, 252, 237, 74, 41, 207, 219, 224, 76, 49, 62, 33, 59, 215, 6, 121, 141, 134, 42, 168, 50, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2598, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8058442058760934186" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7818470078829464732" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9138ae0a8dea24a8357a9" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6fd5565b6383532a9fbf1b6c80c91cd7a68c9c4bc9138ae0a8dea24a8357a9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 111, 213, 86, 91, 99, 131, 83, 42, 159, 191, 27, 108, 128, 201, 28, 215, 166, 140, 156, 75, + 201, 19, 138, 224, 168, 222, 162, 74, 131, 87, 169, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2599, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8453141427851415221" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "64" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6835544612626645756" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18304013986826214444" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7783531731660665599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3434066104617476475" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8663339477925498898" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f6bf4b5076626348e3be5" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4134607047965959377" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "122cad93" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8070913339792671011" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f496ecc8638118b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9884698234865401122" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64c2728f3969c5aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "279961150845442199" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e347" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ca0b45feb" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b754f97578b38ceb59f4164bf1b5edcbb9be1f242fc1bfe04ebbe008edc2c1b6c04a8defb9d72ff1b2fa840ed7cef217b1b783a5d5ad65e10124b2f6bf4b5076626348e3be5ff9fbf410a1b396113343bd664d144122cad931b7001a4ebc74dc123485f496ecc8638118b1b892d80ac59153d224864c2728f3969c5aa1b03e29f2ef30d589742e347450ca0b45febffffffff", + "cborBytes": [ + 216, 102, 159, 27, 117, 79, 151, 87, 139, 56, 206, 181, 159, 65, 100, 191, 27, 94, 220, 187, 155, 225, 242, 66, + 252, 27, 254, 4, 235, 190, 0, 142, 220, 44, 27, 108, 4, 168, 222, 251, 157, 114, 255, 27, 47, 168, 64, 237, 124, + 239, 33, 123, 27, 120, 58, 93, 90, 214, 94, 16, 18, 75, 47, 107, 244, 181, 7, 102, 38, 52, 142, 59, 229, 255, 159, + 191, 65, 10, 27, 57, 97, 19, 52, 59, 214, 100, 209, 68, 18, 44, 173, 147, 27, 112, 1, 164, 235, 199, 77, 193, 35, + 72, 95, 73, 110, 204, 134, 56, 17, 139, 27, 137, 45, 128, 172, 89, 21, 61, 34, 72, 100, 194, 114, 143, 57, 105, + 197, 170, 27, 3, 226, 159, 46, 243, 13, 88, 151, 66, 227, 71, 69, 12, 160, 180, 95, 235, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2600, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9266703229179094332" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0eeb89d46e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "695364138247328160" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44fc7582" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9404ae4206ffab8b04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12487484882636776470" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15891028616151707703" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6346232675309068332" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "64ab31" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17603254900831352950" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3595467462233663005" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4947313747687175692" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6172537095184192861" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14297684116222608439" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5951335370161434285" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b8099f17d662f653c9fbf450eeb89d46e1b09a66dffe1c711a04444fc758207499404ae4206ffab8b0403ffbf1bad4c7556d7a024161bdc884655054a3037ff0cd8669f1b581258fe91c6202c9fbf4364ab311bf44b5310f6b4f876ffd8669f1b31e5aa9b77e9a61d9f41fc1b44a863a43b4cf60c1b55a941c8d960155d1bc66b93f38a3184371b529763fcd5b0aeadffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 128, 153, 241, 125, 102, 47, 101, 60, 159, 191, 69, 14, 235, 137, 212, 110, 27, 9, 166, 109, + 255, 225, 199, 17, 160, 68, 68, 252, 117, 130, 7, 73, 148, 4, 174, 66, 6, 255, 171, 139, 4, 3, 255, 191, 27, 173, + 76, 117, 86, 215, 160, 36, 22, 27, 220, 136, 70, 85, 5, 74, 48, 55, 255, 12, 216, 102, 159, 27, 88, 18, 88, 254, + 145, 198, 32, 44, 159, 191, 67, 100, 171, 49, 27, 244, 75, 83, 16, 246, 180, 248, 118, 255, 216, 102, 159, 27, 49, + 229, 170, 155, 119, 233, 166, 29, 159, 65, 252, 27, 68, 168, 99, 164, 59, 76, 246, 12, 27, 85, 169, 65, 200, 217, + 96, 21, 93, 27, 198, 107, 147, 243, 138, 49, 132, 55, 27, 82, 151, 99, 252, 213, 176, 174, 173, 255, 255, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2601, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13141121304770130710" + }, + "fields": [] + }, + "cborHex": "d8669f1bb65ea433b924331680ff", + "cborBytes": [216, 102, 159, 27, 182, 94, 164, 51, 185, 36, 51, 22, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2602, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e393" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "455616105449174466" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7724608209961523296" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fedf371f27837" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0decd68088854d520e88142e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b8a8e5779d5a357fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4884a851b0f85355" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12916309339827778674" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc3f7926eaa26de20a70d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b626e622268cfb2f2b6999be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f63f18" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5023ec6731e7ed5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffc19aa5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3993432762090247301" + } + } + } + ] + } + ] + }, + "cborHex": "d905069f42e3931b0652ac6f173eb5c21b6b33523d7fd29860bf471fedf371f278374c0decd68088854d520e88142e494b8a8e5779d5a357fd484884a851b0f85355416c1bb33ff2e9397eb4724bcc3f7926eaa26de20a70d74cb626e622268cfb2f2b6999be43f63f1848b5023ec6731e7ed544ffc19aa51b376b85f062cbd485ffff", + "cborBytes": [ + 217, 5, 6, 159, 66, 227, 147, 27, 6, 82, 172, 111, 23, 62, 181, 194, 27, 107, 51, 82, 61, 127, 210, 152, 96, 191, + 71, 31, 237, 243, 113, 242, 120, 55, 76, 13, 236, 214, 128, 136, 133, 77, 82, 14, 136, 20, 46, 73, 75, 138, 142, + 87, 121, 213, 163, 87, 253, 72, 72, 132, 168, 81, 176, 248, 83, 85, 65, 108, 27, 179, 63, 242, 233, 57, 126, 180, + 114, 75, 204, 63, 121, 38, 234, 162, 109, 226, 10, 112, 215, 76, 182, 38, 230, 34, 38, 140, 251, 47, 43, 105, 153, + 190, 67, 246, 63, 24, 72, 181, 2, 62, 198, 115, 30, 126, 213, 68, 255, 193, 154, 165, 27, 55, 107, 133, 240, 98, + 203, 212, 133, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2603, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "895316588213210281" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "005535f866b0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f8e007a3e39faae2" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "003605" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f5088ef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9908090647098536886" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + }, + "cborHex": "d8669f1b0c6ccdb181f68ca99f46005535f866b09f9f48f8e007a3e39faae2ffffbf430036051bfffffffffffffffe444f5088ef1b89809bf2beadb3b6ff01ffff", + "cborBytes": [ + 216, 102, 159, 27, 12, 108, 205, 177, 129, 246, 140, 169, 159, 70, 0, 85, 53, 248, 102, 176, 159, 159, 72, 248, + 224, 7, 163, 227, 159, 170, 226, 255, 255, 191, 67, 0, 54, 5, 27, 255, 255, 255, 255, 255, 255, 255, 254, 68, 79, + 80, 136, 239, 27, 137, 128, 155, 242, 190, 173, 179, 182, 255, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2604, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2459989453020965568" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13879751347185302237" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4289344597559522358" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "297333789764950244" + } + }, + { + "_tag": "ByteArray", + "bytearray": "701d8488fb4f2006b44361b4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17551749528112845582" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9454792417688662966" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9fd8669f1b2223a35fba85aac09f1bc09ec84febbabaddd8669f1b3b86d02f80c6b4369f1b04205781a6a918e44c701d8488fb4f2006b44361b41bf3945733e1cbd30e1b83362b9c3963b3b6ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 216, 102, 159, 27, 34, 35, 163, 95, 186, 133, 170, + 192, 159, 27, 192, 158, 200, 79, 235, 186, 186, 221, 216, 102, 159, 27, 59, 134, 208, 47, 128, 198, 180, 54, 159, + 27, 4, 32, 87, 129, 166, 169, 24, 228, 76, 112, 29, 132, 136, 251, 79, 32, 6, 180, 67, 97, 180, 27, 243, 148, 87, + 51, 225, 203, 211, 14, 27, 131, 54, 43, 156, 57, 99, 179, 182, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2605, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10328086581662000611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5ccd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14256044329559690574" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6964161655083101010" + } + } + ] + }, + "cborHex": "d8669f1b8f54bc06857125e39f425ccd1bc5d7a4c935a08d4e1b60a5ac20a99feb52ffff", + "cborBytes": [ + 216, 102, 159, 27, 143, 84, 188, 6, 133, 113, 37, 227, 159, 66, 92, 205, 27, 197, 215, 164, 201, 53, 160, 141, 78, + 27, 96, 165, 172, 32, 169, 159, 235, 82, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2606, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9221be" + } + ] + }, + "cborHex": "d87b9f439221beff", + "cborBytes": [216, 123, 159, 67, 146, 33, 190, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2607, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18399753166251791145" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12349942345452044536" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "56603a53c609" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "392dac9174c87dfd392105" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "604613" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8f4dbd77931" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81e4a9d177c6816f9e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac0573" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89517e507372d3ca8fe8b0b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4163483292483141053" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7aedcb510978e46810419" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a482cfb9d517a4890c4c923" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dca9ce51ff782f2323acb2a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb2c" + } + } + ] + } + ] + }, + "cborHex": "d9050d9fd8669f1bff590e04c54e93299fd8669f1bab63cf21613940f880ffffffbf4656603a53c6094b392dac9174c87dfd3921054360461346a8f4dbd779314981e4a9d177c6816f9e43ac05734c89517e507372d3ca8fe8b0b81b39c7a9fed4bb3dbd4bd7aedcb510978e468104194c0a482cfb9d517a4890c4c9234cdca9ce51ff782f2323acb2a242eb2cffff", + "cborBytes": [ + 217, 5, 13, 159, 216, 102, 159, 27, 255, 89, 14, 4, 197, 78, 147, 41, 159, 216, 102, 159, 27, 171, 99, 207, 33, + 97, 57, 64, 248, 128, 255, 255, 255, 191, 70, 86, 96, 58, 83, 198, 9, 75, 57, 45, 172, 145, 116, 200, 125, 253, + 57, 33, 5, 67, 96, 70, 19, 70, 168, 244, 219, 215, 121, 49, 73, 129, 228, 169, 209, 119, 198, 129, 111, 158, 67, + 172, 5, 115, 76, 137, 81, 126, 80, 115, 114, 211, 202, 143, 232, 176, 184, 27, 57, 199, 169, 254, 212, 187, 61, + 189, 75, 215, 174, 220, 181, 16, 151, 142, 70, 129, 4, 25, 76, 10, 72, 44, 251, 157, 81, 122, 72, 144, 196, 201, + 35, 76, 220, 169, 206, 81, 255, 120, 47, 35, 35, 172, 178, 162, 66, 235, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2608, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "50d4ef6719b7532c5596ab" + }, + { + "_tag": "ByteArray", + "bytearray": "b22f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17518044487056556649" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5410403641512608546" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11601675177592850453" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "db13060581" + }, + { + "_tag": "ByteArray", + "bytearray": "a79e87fa05015a02" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bda78" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d8102d7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a935164b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38eb26" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0aff3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2881670724019864565" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f9f9f4b50d4ef6719b7532c5596ab42b22f1bf31c98a57a7f0269ffbf1b4b159d7247d6c3221ba1016e1b0fe38815ff45db1306058148a79e87fa05015a02ffbf432bda78448d8102d744a935164b4338eb2643e0aff31b27fdc04178d8c3f5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 159, 159, 75, 80, 212, 239, 103, 25, 183, 83, 44, + 85, 150, 171, 66, 178, 47, 27, 243, 28, 152, 165, 122, 127, 2, 105, 255, 191, 27, 75, 21, 157, 114, 71, 214, 195, + 34, 27, 161, 1, 110, 27, 15, 227, 136, 21, 255, 69, 219, 19, 6, 5, 129, 72, 167, 158, 135, 250, 5, 1, 90, 2, 255, + 191, 67, 43, 218, 120, 68, 141, 129, 2, 215, 68, 169, 53, 22, 75, 67, 56, 235, 38, 67, 224, 175, 243, 27, 39, 253, + 192, 65, 120, 216, 195, 245, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2609, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4219379694929003926" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "489810862722685791" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "117f34aec445e13f07bd" + }, + { + "_tag": "ByteArray", + "bytearray": "05325a4ee7701fa4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4513683149814314396" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2318814032350445122" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b754" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "421326567799044292" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10793224411177524786" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13166964252690949027" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8957568454871618704" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14131894060747818627" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18115832086258389461" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1285754746122110660" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10226550409556149842" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "42edfd6cef900bca54f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7563958727285298178" + } + }, + { + "_tag": "ByteArray", + "bytearray": "84bec9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17910477963797312421" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5073028167114204691" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f6c4de70d52bdf" + } + ] + }, + "cborHex": "d8669f1b3a8e3f7a30bd45969f9fd8669f1b06cc28626fb69b5f9f4a117f34aec445e13f07bd4805325a4ee7701fa41b3ea3d2e90559359c1b202e1513aa707e42419dffff42b754ffd8669f1b05d8da47f818b8c49f1b95c93c6ac14f9e3241641bb6ba7439ebe923a31b7c4fad0cebde14901bc41e92c636538683ffffd8669f1bfb685d4cf80e11d59f1b11d7eb211ee186c41b8dec016a373846529f4a42edfd6cef900bca54f81b68f894630b8e54024384bec91bf88eccd07599b3a5ffffff1b4667043d6c64a61347f6c4de70d52bdfffff", + "cborBytes": [ + 216, 102, 159, 27, 58, 142, 63, 122, 48, 189, 69, 150, 159, 159, 216, 102, 159, 27, 6, 204, 40, 98, 111, 182, 155, + 95, 159, 74, 17, 127, 52, 174, 196, 69, 225, 63, 7, 189, 72, 5, 50, 90, 78, 231, 112, 31, 164, 27, 62, 163, 210, + 233, 5, 89, 53, 156, 27, 32, 46, 21, 19, 170, 112, 126, 66, 65, 157, 255, 255, 66, 183, 84, 255, 216, 102, 159, + 27, 5, 216, 218, 71, 248, 24, 184, 196, 159, 27, 149, 201, 60, 106, 193, 79, 158, 50, 65, 100, 27, 182, 186, 116, + 57, 235, 233, 35, 163, 27, 124, 79, 173, 12, 235, 222, 20, 144, 27, 196, 30, 146, 198, 54, 83, 134, 131, 255, 255, + 216, 102, 159, 27, 251, 104, 93, 76, 248, 14, 17, 213, 159, 27, 17, 215, 235, 33, 30, 225, 134, 196, 27, 141, 236, + 1, 106, 55, 56, 70, 82, 159, 74, 66, 237, 253, 108, 239, 144, 11, 202, 84, 248, 27, 104, 248, 148, 99, 11, 142, + 84, 2, 67, 132, 190, 201, 27, 248, 142, 204, 208, 117, 153, 179, 165, 255, 255, 255, 27, 70, 103, 4, 61, 108, 100, + 166, 19, 71, 246, 196, 222, 112, 213, 43, 223, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2610, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9f1bfffffffffffffff3ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2611, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0410e91436ffb2f4e592fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67b4fb30178853" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5630c1154b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15489887518206934343" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80e4f13a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0d635171e2e9d464f26db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e531a0ed36e64f1853a7b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "194c64a8bf1dea62" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7932851699370028164" + } + } + ] + }, + "cborHex": "d905019fbf4b0410e91436ffb2f4e592fb4767b4fb30178853455630c1154b1bd6f722a0fd7b3d474480e4f13a4bf0d635171e2e9d464f26db4be531a0ed36e64f1853a7b648194c64a8bf1dea62ff1b6e1726972ccdec84ff", + "cborBytes": [ + 217, 5, 1, 159, 191, 75, 4, 16, 233, 20, 54, 255, 178, 244, 229, 146, 251, 71, 103, 180, 251, 48, 23, 136, 83, 69, + 86, 48, 193, 21, 75, 27, 214, 247, 34, 160, 253, 123, 61, 71, 68, 128, 228, 241, 58, 75, 240, 214, 53, 23, 30, 46, + 157, 70, 79, 38, 219, 75, 229, 49, 160, 237, 54, 230, 79, 24, 83, 167, 182, 72, 25, 76, 100, 168, 191, 29, 234, + 98, 255, 27, 110, 23, 38, 151, 44, 205, 236, 132, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2612, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8578142563519637591" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5872462004428940132" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5448698083514166742" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "74e4248a190e" + }, + { + "_tag": "ByteArray", + "bytearray": "d0" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7cccdcc22c8ceb48ce" + }, + { + "_tag": "ByteArray", + "bytearray": "604d01d04f92" + }, + { + "_tag": "ByteArray", + "bytearray": "515ab8a7e954daa1e769df" + }, + { + "_tag": "ByteArray", + "bytearray": "83ed7ee41e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1935999939850328044" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7605516208569240128" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8485135059276786104" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12438122130349961208" + } + }, + { + "_tag": "ByteArray", + "bytearray": "124e80a8" + }, + { + "_tag": "ByteArray", + "bytearray": "0d99" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10732454439582436666" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f52f67781989fcf72" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4adf33ee223a4ff158bd" + }, + { + "_tag": "ByteArray", + "bytearray": "edb450c6a953697c4c47" + }, + { + "_tag": "ByteArray", + "bytearray": "769100b8" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6276654141311797191" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2268841446043596360" + } + }, + { + "_tag": "ByteArray", + "bytearray": "16453b39b992beed99d5651d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6567573214087471677" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "546834447577638500" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15642473861876802179" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15177277037349958810" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8197a" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2237568809577825545" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b770baf366b3f28579fd8669f1b517f2d1452f723649fd8669f1b4b9daa09dc36add69f4674e4248a190e41d0ffff9f497cccdcc22c8ceb48ce46604d01d04f924b515ab8a7e954daa1e769df4583ed7ee41e1b1ade0db01bf4d7ecffd8669f1b698c38b2293eca409f1b75c141615767e9b8ffffa09f1bac9d162d746f2ff844124e80a8420d991b94f1567327600d3a496f52f67781989fcf72ffffff9f9f4a4adf33ee223a4ff158bd4aedb450c6a953697c4c4744769100b8ffd8669f1b571b27afb6dfc7c79f1b1f7c8b463b1cb6484c16453b39b992beed99d5651d1b5b24b50aae0de23dffffbf1b0796bf0866cfe6641bd9153b19997fe2831bd2a0850d84eff49a43c8197aff1b1f0d70fa27614509ffffff", + "cborBytes": [ + 216, 102, 159, 27, 119, 11, 175, 54, 107, 63, 40, 87, 159, 216, 102, 159, 27, 81, 127, 45, 20, 82, 247, 35, 100, + 159, 216, 102, 159, 27, 75, 157, 170, 9, 220, 54, 173, 214, 159, 70, 116, 228, 36, 138, 25, 14, 65, 208, 255, 255, + 159, 73, 124, 204, 220, 194, 44, 140, 235, 72, 206, 70, 96, 77, 1, 208, 79, 146, 75, 81, 90, 184, 167, 233, 84, + 218, 161, 231, 105, 223, 69, 131, 237, 126, 228, 30, 27, 26, 222, 13, 176, 27, 244, 215, 236, 255, 216, 102, 159, + 27, 105, 140, 56, 178, 41, 62, 202, 64, 159, 27, 117, 193, 65, 97, 87, 103, 233, 184, 255, 255, 160, 159, 27, 172, + 157, 22, 45, 116, 111, 47, 248, 68, 18, 78, 128, 168, 66, 13, 153, 27, 148, 241, 86, 115, 39, 96, 13, 58, 73, 111, + 82, 246, 119, 129, 152, 159, 207, 114, 255, 255, 255, 159, 159, 74, 74, 223, 51, 238, 34, 58, 79, 241, 88, 189, + 74, 237, 180, 80, 198, 169, 83, 105, 124, 76, 71, 68, 118, 145, 0, 184, 255, 216, 102, 159, 27, 87, 27, 39, 175, + 182, 223, 199, 199, 159, 27, 31, 124, 139, 70, 59, 28, 182, 72, 76, 22, 69, 59, 57, 185, 146, 190, 237, 153, 213, + 101, 29, 27, 91, 36, 181, 10, 174, 13, 226, 61, 255, 255, 191, 27, 7, 150, 191, 8, 102, 207, 230, 100, 27, 217, + 21, 59, 25, 153, 127, 226, 131, 27, 210, 160, 133, 13, 132, 239, 244, 154, 67, 200, 25, 122, 255, 27, 31, 13, 112, + 250, 39, 97, 69, 9, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2613, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13073505909805198497" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1621148497241457046" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "efd50ccc17cd3e391b6e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15044530891758425462" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16126322286219976465" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6181745404265796317" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f2094148" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69fd8669f1bb56e6c5bcae8aca19fd8669f1b167f79f8123c41969f4aefd50ccc17cd3e391b6e1bd0c8e922ffa6d5761bdfcc34adab9b5f111b55c9f8b1612a92dd44f2094148ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 216, 102, 159, 27, 181, 110, 108, 91, 202, 232, + 172, 161, 159, 216, 102, 159, 27, 22, 127, 121, 248, 18, 60, 65, 150, 159, 74, 239, 213, 12, 204, 23, 205, 62, 57, + 27, 110, 27, 208, 200, 233, 34, 255, 166, 213, 118, 27, 223, 204, 52, 173, 171, 155, 95, 17, 27, 85, 201, 248, + 177, 97, 42, 146, 221, 68, 242, 9, 65, 72, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2614, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4327994422988427110" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9e71221074aa0678" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b3c101fff3c18cf669f489e71221074aa067880ffff", + "cborBytes": [ + 216, 102, 159, 27, 60, 16, 31, 255, 60, 24, 207, 102, 159, 72, 158, 113, 34, 16, 116, 170, 6, 120, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2615, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4730733752443135595" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3476262090938416189" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17925954394544055537" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16487121936029084599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "252039" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5540954141301228094" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18317754244702504333" + } + }, + { + "_tag": "ByteArray", + "bytearray": "573acfa52d14ff9243b4a46d" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16023216688262278974" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + "cborHex": "d8669f1b41a6f1488952e66b9f9f1b303e29f4248a7c3d1bf8c5c88bcaa6a4f1d8669f1be4ce060c5d906bb79f432520391b4ce56c6f2cfd423e1bfe35bc6f1665858d4c573acfa52d14ff9243b4a46dffff80ffbf1bde5de6aeeefbef3e0eff04ffff", + "cborBytes": [ + 216, 102, 159, 27, 65, 166, 241, 72, 137, 82, 230, 107, 159, 159, 27, 48, 62, 41, 244, 36, 138, 124, 61, 27, 248, + 197, 200, 139, 202, 166, 164, 241, 216, 102, 159, 27, 228, 206, 6, 12, 93, 144, 107, 183, 159, 67, 37, 32, 57, 27, + 76, 229, 108, 111, 44, 253, 66, 62, 27, 254, 53, 188, 111, 22, 101, 133, 141, 76, 87, 58, 207, 165, 45, 20, 255, + 146, 67, 180, 164, 109, 255, 255, 128, 255, 191, 27, 222, 93, 230, 174, 238, 251, 239, 62, 14, 255, 4, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2616, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16179152608086681815" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa31a936" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "754504206432333693" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3a34332cfcecc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4331157057764624256" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "443773381140242454" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7328110964642199212" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7792230574593022423" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9896330224509646810" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16541275474058163271" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9f1be087e59383d768d744fa31a936bf1b0a78899405efef7d47a3a34332cfcecc1b3c1b5c65867c87801b06289989f7a360161b65b2ae18aa24b6ac1b6c23906c2e8e19d71b8956d3e7fbdbf7da1be58e6a677b1e3447ff0604ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 27, 224, 135, 229, 147, 131, 215, 104, 215, 68, + 250, 49, 169, 54, 191, 27, 10, 120, 137, 148, 5, 239, 239, 125, 71, 163, 163, 67, 50, 207, 206, 204, 27, 60, 27, + 92, 101, 134, 124, 135, 128, 27, 6, 40, 153, 137, 247, 163, 96, 22, 27, 101, 178, 174, 24, 170, 36, 182, 172, 27, + 108, 35, 144, 108, 46, 142, 25, 215, 27, 137, 86, 211, 231, 251, 219, 247, 218, 27, 229, 142, 106, 103, 123, 30, + 52, 71, 255, 6, 4, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2617, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13592224664690309517" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13942442524909684932" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2181052299971898518" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5152013909023878605" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14033286475547311929" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f9ae851eecc1367d48fae2d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2190701656837702917" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37da727e7439262c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db837fc87c16b989d2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1145734441189968705" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f329f5dcef75e5a9927643" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f4a2ff967b1" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a9cacbbd82aad7428860fcf6" + } + ] + }, + "cborHex": "d8669f1bbca148515e2b398d9f1bc17d819b2e8ac8c4bf1b1e44a782d85fac961b477fa15a8d3d6dcd1bc2c03fb2ae4a7f394c2f9ae851eecc1367d48fae2dffbf1b1e66ef8cd0abc5054837da727e7439262c49db837fc87c16b989d21b0fe67767660f0b414bf329f5dcef75e5a9927643465f4a2ff967b1ff4ca9cacbbd82aad7428860fcf6ffff", + "cborBytes": [ + 216, 102, 159, 27, 188, 161, 72, 81, 94, 43, 57, 141, 159, 27, 193, 125, 129, 155, 46, 138, 200, 196, 191, 27, 30, + 68, 167, 130, 216, 95, 172, 150, 27, 71, 127, 161, 90, 141, 61, 109, 205, 27, 194, 192, 63, 178, 174, 74, 127, 57, + 76, 47, 154, 232, 81, 238, 204, 19, 103, 212, 143, 174, 45, 255, 191, 27, 30, 102, 239, 140, 208, 171, 197, 5, 72, + 55, 218, 114, 126, 116, 57, 38, 44, 73, 219, 131, 127, 200, 124, 22, 185, 137, 210, 27, 15, 230, 119, 103, 102, + 15, 11, 65, 75, 243, 41, 245, 220, 239, 117, 229, 169, 146, 118, 67, 70, 95, 74, 47, 249, 103, 177, 255, 76, 169, + 202, 203, 189, 130, 170, 215, 66, 136, 96, 252, 246, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2618, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12295803256192298086" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98a70c10e4fd081dac" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75702263" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15554252268550085624" + }, + "fields": [] + } + ] + }, + "cborHex": "d87d9fbf1baaa377ea616eec664998a70c10e4fd081dacff064475702263d8669f1bd7dbce073dbddbf880ffff", + "cborBytes": [ + 216, 125, 159, 191, 27, 170, 163, 119, 234, 97, 110, 236, 102, 73, 152, 167, 12, 16, 228, 253, 8, 29, 172, 255, 6, + 68, 117, 112, 34, 99, 216, 102, 159, 27, 215, 219, 206, 7, 61, 189, 219, 248, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2619, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8866295111082466474" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4d2f6701f49046" + } + ] + }, + "cborHex": "d8669f1b7b0b686d89da5caa9f474d2f6701f49046ffff", + "cborBytes": [ + 216, 102, 159, 27, 123, 11, 104, 109, 137, 218, 92, 170, 159, 71, 77, 47, 103, 1, 244, 144, 70, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2620, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8328504485746067692" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0975b7a8c4cbc0311d1998" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7ebad35e0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "990d97a99ab752" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afe5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1299698183988149469" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "420433105694939720" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d2543ec2c65" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17647366167524907534" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1ecace49035969e91" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10599518345948587960" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd90e2d8c0c670" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6d139864f2a9699391600" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ef1764850adfd35bd771af5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8b6ba1cab0aa8a24a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5bdd6a30f64ec0bf7b" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9349998080385284122" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12895676945017193679" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "811eb1f552bcd1875263a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12847225173587490694" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0339c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11456895898898423769" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f66ad8bd8a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9974e74913e5847022a553" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6740260430589411739" + } + } + ] + } + ] + }, + "cborHex": "d905019f80d8669f1b7394cab4172448ec80ff9fbf4b0975b7a8c4cbc0311d199845b7ebad35e047990d97a99ab75242afe542f4f31b1209749cbbd57cddff1b05d5adae9cc2da48bf462d2543ec2c651bf4e80a0794919a0e49c1ecace49035969e911b93190dc6e88067b847cd90e2d8c0c67041304bd6d139864f2a96993916004c8ef1764850adfd35bd771af549e8b6ba1cab0aa8a24a495bdd6a30f64ec0bf7bffbf1b81c1ddb737f2f81a1bb2f6a5db75f1c4cf4b811eb1f552bcd1875263a01bb24a833a5523778643e0339c1b9eff121e6a785fd945f66ad8bd8a4b9974e74913e5847022a553ff1b5d8a372672e7419bffff", + "cborBytes": [ + 217, 5, 1, 159, 128, 216, 102, 159, 27, 115, 148, 202, 180, 23, 36, 72, 236, 128, 255, 159, 191, 75, 9, 117, 183, + 168, 196, 203, 192, 49, 29, 25, 152, 69, 183, 235, 173, 53, 224, 71, 153, 13, 151, 169, 154, 183, 82, 66, 175, + 229, 66, 244, 243, 27, 18, 9, 116, 156, 187, 213, 124, 221, 255, 27, 5, 213, 173, 174, 156, 194, 218, 72, 191, 70, + 45, 37, 67, 236, 44, 101, 27, 244, 232, 10, 7, 148, 145, 154, 14, 73, 193, 236, 172, 228, 144, 53, 150, 158, 145, + 27, 147, 25, 13, 198, 232, 128, 103, 184, 71, 205, 144, 226, 216, 192, 198, 112, 65, 48, 75, 214, 209, 57, 134, + 79, 42, 150, 153, 57, 22, 0, 76, 142, 241, 118, 72, 80, 173, 253, 53, 189, 119, 26, 245, 73, 232, 182, 186, 28, + 171, 10, 168, 162, 74, 73, 91, 221, 106, 48, 246, 78, 192, 191, 123, 255, 191, 27, 129, 193, 221, 183, 55, 242, + 248, 26, 27, 178, 246, 165, 219, 117, 241, 196, 207, 75, 129, 30, 177, 245, 82, 188, 209, 135, 82, 99, 160, 27, + 178, 74, 131, 58, 85, 35, 119, 134, 67, 224, 51, 156, 27, 158, 255, 18, 30, 106, 120, 95, 217, 69, 246, 106, 216, + 189, 138, 75, 153, 116, 231, 73, 19, 229, 132, 112, 34, 165, 83, 255, 27, 93, 138, 55, 38, 114, 231, 65, 155, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2621, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3369488536715203080" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "46d37102c88c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8517461389799841212" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8038180873726958127" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14770069845579041499" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5599346924607013666" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18355549913898171220" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4188058426722244502" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "504363342147244867" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aeab44521b55aba75abf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2738587180603043236" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7905483674181236739" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3442770459035229181" + } + } + ] + }, + "cborHex": "d8669f1b2ec2d3f8c9a912089f9f9f4646d37102c88c1b76341a01af1fddbc1b6f8d5aeaa2d59a2f1bccf9d444f5728adb1b4db4e05c7f608322ffffd8669f1bfebc036512da3b549f9f1b3a1ef8f3275c57961b06ffdbc9966a5343ff4aaeab44521b55aba75abf1b26016a87f6486da4ffff1b6db5eb844138f8031b2fc72d7dee00dbfdffff", + "cborBytes": [ + 216, 102, 159, 27, 46, 194, 211, 248, 201, 169, 18, 8, 159, 159, 159, 70, 70, 211, 113, 2, 200, 140, 27, 118, 52, + 26, 1, 175, 31, 221, 188, 27, 111, 141, 90, 234, 162, 213, 154, 47, 27, 204, 249, 212, 68, 245, 114, 138, 219, 27, + 77, 180, 224, 92, 127, 96, 131, 34, 255, 255, 216, 102, 159, 27, 254, 188, 3, 101, 18, 218, 59, 84, 159, 159, 27, + 58, 30, 248, 243, 39, 92, 87, 150, 27, 6, 255, 219, 201, 150, 106, 83, 67, 255, 74, 174, 171, 68, 82, 27, 85, 171, + 167, 90, 191, 27, 38, 1, 106, 135, 246, 72, 109, 164, 255, 255, 27, 109, 181, 235, 132, 65, 56, 248, 3, 27, 47, + 199, 45, 125, 238, 0, 219, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2622, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "059101" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f02bf0241a11bffffffffffffffed4305910141f806ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 2, 191, 2, 65, 161, 27, 255, 255, 255, 255, 255, + 255, 255, 237, 67, 5, 145, 1, 65, 248, 6, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2623, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5409da54" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2751252775049688581" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e5ab6a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7c0119495b9dcf7e2dad9f10" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1064399077420624867" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4165359398811751099" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7605085350819435940" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12095498284715955603" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17890941025250956565" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9161e0dcc756d0f3f5bc" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "424cd3b98d73" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13111107227004642924" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7312502020410474467" + } + } + ] + }, + "cborHex": "d905099f9f9f445409da541b262e69d27824f60543e5ab6aff4c7c0119495b9dcf7e2dad9f10bf1b0ec581524ce8ebe31b39ce544de00252bb1b698ab0d5461e95a41ba7dbd79af1d755931bf84964127b8bd5154a9161e0dcc756d0f3f5bcffff46424cd3b98d731bb5f4028eadab266c1b657b39d821e47fe3ff", + "cborBytes": [ + 217, 5, 9, 159, 159, 159, 68, 84, 9, 218, 84, 27, 38, 46, 105, 210, 120, 36, 246, 5, 67, 229, 171, 106, 255, 76, + 124, 1, 25, 73, 91, 157, 207, 126, 45, 173, 159, 16, 191, 27, 14, 197, 129, 82, 76, 232, 235, 227, 27, 57, 206, + 84, 77, 224, 2, 82, 187, 27, 105, 138, 176, 213, 70, 30, 149, 164, 27, 167, 219, 215, 154, 241, 215, 85, 147, 27, + 248, 73, 100, 18, 123, 139, 213, 21, 74, 145, 97, 224, 220, 199, 86, 208, 243, 245, 188, 255, 255, 70, 66, 76, + 211, 185, 141, 115, 27, 181, 244, 2, 142, 173, 171, 38, 108, 27, 101, 123, 57, 216, 33, 228, 127, 227, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2624, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3639345685511538837" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "eb069301f8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "27b4294f6909afc63646fc01" + }, + { + "_tag": "ByteArray", + "bytearray": "1c0d0000" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c34f52d6b8f3c5794795e471" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18347525123859621832" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7300456049070631228" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b8adb64de58447e82abff6e9" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ea6bb080f06b65438278" + } + ] + }, + "cborHex": "d8669f1b32818d9e6fc408959f9fa045eb069301f89f4c27b4294f6909afc63646fc01441c0d0000004cc34f52d6b8f3c5794795e4711bfe9f80e40b3527c8ff9f0d1b65506e18df34e93cff4cb8adb64de58447e82abff6e9ff4aea6bb080f06b65438278ffff", + "cborBytes": [ + 216, 102, 159, 27, 50, 129, 141, 158, 111, 196, 8, 149, 159, 159, 160, 69, 235, 6, 147, 1, 248, 159, 76, 39, 180, + 41, 79, 105, 9, 175, 198, 54, 70, 252, 1, 68, 28, 13, 0, 0, 0, 76, 195, 79, 82, 214, 184, 243, 197, 121, 71, 149, + 228, 113, 27, 254, 159, 128, 228, 11, 53, 39, 200, 255, 159, 13, 27, 101, 80, 110, 24, 223, 52, 233, 60, 255, 76, + 184, 173, 182, 77, 229, 132, 71, 232, 42, 191, 246, 233, 255, 74, 234, 107, 176, 128, 240, 107, 101, 67, 130, 120, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2625, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17438739335901948026" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13265440489540552520" + } + }, + { + "_tag": "ByteArray", + "bytearray": "efe84ca36b74ddf9efc7f0" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3246550162201243740" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11199868674475894871" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13917052232087735631" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1aee1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18233880492498312784" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13501903701041897203" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7a39eb" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7399872602810208682" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f9fd8669f1bf202d9081711287a9f1bb8184fd7882607484befe84ca36b74ddf9efc7f0ffffbf1b2d0e102beb7df05c1b9b6ded38512928571bc1234d44f6258d4f43d1aee11bfd0bc1b360495e501bbb6065e144225ef3ff437a39ebff1b66b1a0ed11a5d1aaffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 159, 216, 102, 159, 27, 242, 2, 217, 8, 23, 17, + 40, 122, 159, 27, 184, 24, 79, 215, 136, 38, 7, 72, 75, 239, 232, 76, 163, 107, 116, 221, 249, 239, 199, 240, 255, + 255, 191, 27, 45, 14, 16, 43, 235, 125, 240, 92, 27, 155, 109, 237, 56, 81, 41, 40, 87, 27, 193, 35, 77, 68, 246, + 37, 141, 79, 67, 209, 174, 225, 27, 253, 11, 193, 179, 96, 73, 94, 80, 27, 187, 96, 101, 225, 68, 34, 94, 243, + 255, 67, 122, 57, 235, 255, 27, 102, 177, 160, 237, 17, 165, 209, 170, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2626, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3620429999979392218" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10644168201812527713" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "40492640f0b37752dc11e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15275861626202321606" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a2faf84c6df34" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06ecf8bf6c6ff7b00e3a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51e4963f17cfcf05ed8e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6d796739f88d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14006614728476840435" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc0abe847780b233" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17697972588055676373" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee8b9eea8f39596e77fa" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7503593963506551015" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1998008257890559553" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9746234247179917358" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4422537856230884569" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8395233501958359895" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b323e59e732f06cda9f9f1b93b7ae95968b4a61a0bf4b40492640f0b37752dc11e51bd3fec336cbcf72c6474a2faf84c6df344a06ecf8bf6c6ff7b00e3a4a51e4963f17cfcf05ed8e47b6d796739f88d641f41bc2617de2a49dd1f3ff48fc0abe847780b233ff9f1bf59bd44d0ba8c5d54aee8b9eea8f39596e77fad8669f1b68221ef43d92c8e79f1b1bba59ecb5dd26411b87419468f8e7d82effff1b3d6002bfa65c04d91b7481dc63e2afcb57ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 50, 62, 89, 231, 50, 240, 108, 218, 159, 159, 27, 147, 183, 174, 149, 150, 139, 74, 97, 160, + 191, 75, 64, 73, 38, 64, 240, 179, 119, 82, 220, 17, 229, 27, 211, 254, 195, 54, 203, 207, 114, 198, 71, 74, 47, + 175, 132, 198, 223, 52, 74, 6, 236, 248, 191, 108, 111, 247, 176, 14, 58, 74, 81, 228, 150, 63, 23, 207, 207, 5, + 237, 142, 71, 182, 215, 150, 115, 159, 136, 214, 65, 244, 27, 194, 97, 125, 226, 164, 157, 209, 243, 255, 72, 252, + 10, 190, 132, 119, 128, 178, 51, 255, 159, 27, 245, 155, 212, 77, 11, 168, 197, 213, 74, 238, 139, 158, 234, 143, + 57, 89, 110, 119, 250, 216, 102, 159, 27, 104, 34, 30, 244, 61, 146, 200, 231, 159, 27, 27, 186, 89, 236, 181, + 221, 38, 65, 27, 135, 65, 148, 104, 248, 231, 216, 46, 255, 255, 27, 61, 96, 2, 191, 166, 92, 4, 217, 27, 116, + 129, 220, 99, 226, 175, 203, 87, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2627, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4181693133154732612" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050c9fd87f9f9f1b3a085bbfc160ca44ffffff", + "cborBytes": [217, 5, 12, 159, 216, 127, 159, 159, 27, 58, 8, 91, 191, 193, 96, 202, 68, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2628, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10015241760435597377" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17793751572352492552" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5284cff57e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14677927951875039980" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4547862369259257475" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2638547181855334176" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7626680625638578515" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11883423173090918689" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13448793912397715711" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6915159882613750021" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2141281584972901332" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2047750294737490295" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17892090702301018844" + } + } + ] + }, + "cborHex": "d8669f1b8afd49516e6bf0419fd8669f1bf6f01ac79b9e64089f9f455284cff57e1bcbb279b48a49e2ecff80bf1b3f1d40baaf107e831b249e00aea9985f201b69d7699f028a99531ba4ea666a33bac1211bbaa3b6cefde6d8ff1b5ff7954670397905ff1b1db75c41ac652bd41b1c6b120b2a879177ffffa01bf84d79b287b8badcffff", + "cborBytes": [ + 216, 102, 159, 27, 138, 253, 73, 81, 110, 107, 240, 65, 159, 216, 102, 159, 27, 246, 240, 26, 199, 155, 158, 100, + 8, 159, 159, 69, 82, 132, 207, 245, 126, 27, 203, 178, 121, 180, 138, 73, 226, 236, 255, 128, 191, 27, 63, 29, 64, + 186, 175, 16, 126, 131, 27, 36, 158, 0, 174, 169, 152, 95, 32, 27, 105, 215, 105, 159, 2, 138, 153, 83, 27, 164, + 234, 102, 106, 51, 186, 193, 33, 27, 186, 163, 182, 206, 253, 230, 216, 255, 27, 95, 247, 149, 70, 112, 57, 121, + 5, 255, 27, 29, 183, 92, 65, 172, 101, 43, 212, 27, 28, 107, 18, 11, 42, 135, 145, 119, 255, 255, 160, 27, 248, + 77, 121, 178, 135, 184, 186, 220, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2629, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d3ce8fe3383fccc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6580107352895058746" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30f5507ead71d1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7392713213927760601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10057816007031755620" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11778486771169218210" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10794373671501183885" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84b4fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15017035039245283505" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5825290212042425997" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "01fd04" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49fbf482d3ce8fe3383fccc4124ffbf1b5b513cc6493ef33a4730f5507ead71d11b6698317ff28022d941251b8b948a5eab5d93641ba3759750332dcea21b95cd51a9c6a83b8d4384b4fa1bd06739cdf5cf30b11b50d796958a59468dff9fa0ff4301fd04ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 191, 72, 45, 60, 232, 254, 51, 131, 252, 204, 65, + 36, 255, 191, 27, 91, 81, 60, 198, 73, 62, 243, 58, 71, 48, 245, 80, 126, 173, 113, 209, 27, 102, 152, 49, 127, + 242, 128, 34, 217, 65, 37, 27, 139, 148, 138, 94, 171, 93, 147, 100, 27, 163, 117, 151, 80, 51, 45, 206, 162, 27, + 149, 205, 81, 169, 198, 168, 59, 141, 67, 132, 180, 250, 27, 208, 103, 57, 205, 245, 207, 48, 177, 27, 80, 215, + 150, 149, 138, 89, 70, 141, 255, 159, 160, 255, 67, 1, 253, 4, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2630, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13445347360263159067" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8068010077430613564" + } + }, + { + "_tag": "ByteArray", + "bytearray": "864a4d35" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9641550754497066434" + } + } + ] + }, + "cborHex": "d905079f9fd8669f1bba9778300a38bd1b9f1b6ff7546b5586063c44864a4d35ffffff1b85cdab53fdb275c2ff", + "cborBytes": [ + 217, 5, 7, 159, 159, 216, 102, 159, 27, 186, 151, 120, 48, 10, 56, 189, 27, 159, 27, 111, 247, 84, 107, 85, 134, + 6, 60, 68, 134, 74, 77, 53, 255, 255, 255, 27, 133, 205, 171, 83, 253, 178, 117, 194, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2631, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3794924073164430081" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2058b44338b724" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7729782649962411286" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eeab42fe5643e7d60c39" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9694216483045990280" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad0f566216" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "80134bd2e63d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5490763091216565888" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c56be970274261c61c406a" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9fd8669f1bfffffffffffffffe9fbf1b34aa4756928b5b01472058b44338b7241b6b45b45db1fcb5164aeeab42fe5643e7d60c391b8688c68777b15f8845ad0f566216ff4680134bd2e63dd8669f1b4c331bf0adca068080ff4bc56be970274261c61c406affffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 254, 159, 191, 27, 52, 170, 71, 86, 146, 139, 91, 1, 71, 32, 88, 180, 67, 56, 183, 36, 27, 107, 69, 180, 93, + 177, 252, 181, 22, 74, 238, 171, 66, 254, 86, 67, 231, 214, 12, 57, 27, 134, 136, 198, 135, 119, 177, 95, 136, 69, + 173, 15, 86, 98, 22, 255, 70, 128, 19, 75, 210, 230, 61, 216, 102, 159, 27, 76, 51, 27, 240, 173, 202, 6, 128, + 128, 255, 75, 197, 107, 233, 112, 39, 66, 97, 198, 28, 64, 106, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2632, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01e737cf03" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5951050097546302237" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f62134" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17322724077573588374" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c49d677ff85" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d2489c6217d4e2731c829a" + } + ] + }, + "cborHex": "d905059f4501e737cf039fbf1b52966088a0cd131d43f621341bf066adc4d1e14596468c49d677ff85ff80ff4bd2489c6217d4e2731c829aff", + "cborBytes": [ + 217, 5, 5, 159, 69, 1, 231, 55, 207, 3, 159, 191, 27, 82, 150, 96, 136, 160, 205, 19, 29, 67, 246, 33, 52, 27, + 240, 102, 173, 196, 209, 225, 69, 150, 70, 140, 73, 214, 119, 255, 133, 255, 128, 255, 75, 210, 72, 156, 98, 23, + 212, 226, 115, 28, 130, 154, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2633, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ac229e1d33be93a86451ac87" + }, + { + "_tag": "ByteArray", + "bytearray": "ecf4abdf8999aaf7" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d9050c9f4cac229e1d33be93a86451ac8748ecf4abdf8999aaf7a0ff", + "cborBytes": [ + 217, 5, 12, 159, 76, 172, 34, 158, 29, 51, 190, 147, 168, 100, 81, 172, 135, 72, 236, 244, 171, 223, 137, 153, + 170, 247, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2634, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18130677519994100899" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4467758119145755842" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14593036936862481045" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eef0b2ebd15e4d53321bf7" + } + ] + }, + "cborHex": "d8669f1bfb9d1b24dc689ca39f1b3e00aa56920cd4c21bca84e1c6dfd7ba954beef0b2ebd15e4d53321bf7ffff", + "cborBytes": [ + 216, 102, 159, 27, 251, 157, 27, 36, 220, 104, 156, 163, 159, 27, 62, 0, 170, 86, 146, 12, 212, 194, 27, 202, 132, + 225, 198, 223, 215, 186, 149, 75, 238, 240, 178, 235, 209, 94, 77, 83, 50, 27, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2635, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11977450070576871850" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6747281273975103122" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e6b18d2ceafe14cb9b57" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15214451519176400892" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7680cca9c6eddf5a15" + }, + { + "_tag": "ByteArray", + "bytearray": "35b55a6c592270f7ae2bc8" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f760803204" + }, + { + "_tag": "ByteArray", + "bytearray": "00520406f8c0fc07" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8678356161532072063" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d344419e9955a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9635501867937537395" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15801018536069746487" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9846155747810016812" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73943f5f8f96a9cc89" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15654396459073083172" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2906d148e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15930117610041455240" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1ba638736143b639aa9fd8669f1b5da32891eeee5e929f4ae6b18d2ceafe14cb9b579f1bd324970c0ce95ffc497680cca9c6eddf5a154b35b55a6c592270f7ae2bc8ff45f7608032044800520406f8c0fc07bf1b786fb6f2f271107f477d344419e9955a1b85b82de5d7079d731bdb487ea423cccf371b88a4927c4762fe2c4973943f5f8f96a9cc891bd93f96a3942f1724452906d148e91bdd132590a0b732884197ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 166, 56, 115, 97, 67, 182, 57, 170, 159, 216, 102, 159, 27, 93, 163, 40, 145, 238, 238, 94, + 146, 159, 74, 230, 177, 141, 44, 234, 254, 20, 203, 155, 87, 159, 27, 211, 36, 151, 12, 12, 233, 95, 252, 73, 118, + 128, 204, 169, 198, 237, 223, 90, 21, 75, 53, 181, 90, 108, 89, 34, 112, 247, 174, 43, 200, 255, 69, 247, 96, 128, + 50, 4, 72, 0, 82, 4, 6, 248, 192, 252, 7, 191, 27, 120, 111, 182, 242, 242, 113, 16, 127, 71, 125, 52, 68, 25, + 233, 149, 90, 27, 133, 184, 45, 229, 215, 7, 157, 115, 27, 219, 72, 126, 164, 35, 204, 207, 55, 27, 136, 164, 146, + 124, 71, 98, 254, 44, 73, 115, 148, 63, 95, 143, 150, 169, 204, 137, 27, 217, 63, 150, 163, 148, 47, 23, 36, 69, + 41, 6, 209, 72, 233, 27, 221, 19, 37, 144, 160, 183, 50, 136, 65, 151, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2636, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7568359745647186275" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + ] + }, + "cborHex": "d8669f1b69083716fbaa91639f1bfffffffffffffff4ffff", + "cborBytes": [ + 216, 102, 159, 27, 105, 8, 55, 22, 251, 170, 145, 99, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2637, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c56df3b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12318482905318271543" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbc0a79a86418509" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16314389422246907948" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddc4845b4e68ea3111" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0b5df14133b6be400" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f98dcb55a8c90cbe1072" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc76c4dabb" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13743421757376723939" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2438855125054416774" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "259928295e68" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab85f3143e6b0276fd33fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "516d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12787850427669185565" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f9f0080bf448c56df3b1baaf40aefaf37aa3748dbc0a79a864185091be2685abe006ad02c49ddc4845b4e68ea311149e0b5df14133b6be4004af98dcb55a8c90cbe107245fc76c4dabbffffbf1bbeba7145c6d07be31b21d88dd08b82678646259928295e684bab85f3143e6b0276fd33fb42516d1bb1779236060c841dff9fa0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 159, 0, 128, 191, 68, 140, 86, 223, 59, 27, 170, + 244, 10, 239, 175, 55, 170, 55, 72, 219, 192, 167, 154, 134, 65, 133, 9, 27, 226, 104, 90, 190, 0, 106, 208, 44, + 73, 221, 196, 132, 91, 78, 104, 234, 49, 17, 73, 224, 181, 223, 20, 19, 59, 107, 228, 0, 74, 249, 141, 203, 85, + 168, 201, 12, 190, 16, 114, 69, 252, 118, 196, 218, 187, 255, 255, 191, 27, 190, 186, 113, 69, 198, 208, 123, 227, + 27, 33, 216, 141, 208, 139, 130, 103, 134, 70, 37, 153, 40, 41, 94, 104, 75, 171, 133, 243, 20, 62, 107, 2, 118, + 253, 51, 251, 66, 81, 109, 27, 177, 119, 146, 54, 6, 12, 132, 29, 255, 159, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2638, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2271924673033396306" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5270565390344744858" + } + } + ] + }, + "cborHex": "d8669f1b1f877f73f499e0529f1b4924cf4c40f76f9affff", + "cborBytes": [ + 216, 102, 159, 27, 31, 135, 127, 115, 244, 153, 224, 82, 159, 27, 73, 36, 207, 76, 64, 247, 111, 154, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2639, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8558265653473158764" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d4ddf3688c96" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14376437854791836342" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13264395892828174268" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "46" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13097223123178301908" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee18c245db8ce6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "871753b2475e4fd393f4" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4246275063212076944" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "330924051428701711" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "896a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8277406742839792104" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6103117275412183641" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8cdf96072bb0361" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16625507512730087008" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10474222091769770784" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "47cd4a436bb158f1fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9735932902716269298" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a722b25a635c89692fb0822" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0b482f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b63484ff2853925" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "522db5d0ecf07b20bc54" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83c4cdfe5e77583abebae0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e220d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10400761935825801797" + } + } + } + ] + } + ] + }, + "cborHex": "d87d9f9fd8669f1b76c51144a8b1a66c9f46d4ddf3688c96ffffd8669f1bc7835e0f2e58a2b69f1bb81499c9682c77bc418fffffbf41461bb5c2af09d91329d447ee18c245db8ce64a871753b2475e4fd393f4ffbf1b3aedccac195aef901b0497adabe50a760f42896a4137ffff1b72df4193b86391e8bf1b54b2a0d3877e3a5948c8cdf96072bb03611be6b9aaff42dd6e601b915be97f667c7320ffbf4947cd4a436bb158f1fa1b871cfb644f70e2f24c7a722b25a635c89692fb082244e0b482f3487b63484ff28539254a522db5d0ecf07b20bc544b83c4cdfe5e77583abebae0438e220d418b1b9056ede0024d1245ffff", + "cborBytes": [ + 216, 125, 159, 159, 216, 102, 159, 27, 118, 197, 17, 68, 168, 177, 166, 108, 159, 70, 212, 221, 243, 104, 140, + 150, 255, 255, 216, 102, 159, 27, 199, 131, 94, 15, 46, 88, 162, 182, 159, 27, 184, 20, 153, 201, 104, 44, 119, + 188, 65, 143, 255, 255, 191, 65, 70, 27, 181, 194, 175, 9, 217, 19, 41, 212, 71, 238, 24, 194, 69, 219, 140, 230, + 74, 135, 23, 83, 178, 71, 94, 79, 211, 147, 244, 255, 191, 27, 58, 237, 204, 172, 25, 90, 239, 144, 27, 4, 151, + 173, 171, 229, 10, 118, 15, 66, 137, 106, 65, 55, 255, 255, 27, 114, 223, 65, 147, 184, 99, 145, 232, 191, 27, 84, + 178, 160, 211, 135, 126, 58, 89, 72, 200, 205, 249, 96, 114, 187, 3, 97, 27, 230, 185, 170, 255, 66, 221, 110, 96, + 27, 145, 91, 233, 127, 102, 124, 115, 32, 255, 191, 73, 71, 205, 74, 67, 107, 177, 88, 241, 250, 27, 135, 28, 251, + 100, 79, 112, 226, 242, 76, 122, 114, 43, 37, 166, 53, 200, 150, 146, 251, 8, 34, 68, 224, 180, 130, 243, 72, 123, + 99, 72, 79, 242, 133, 57, 37, 74, 82, 45, 181, 208, 236, 240, 123, 32, 188, 84, 75, 131, 196, 205, 254, 94, 119, + 88, 58, 190, 186, 224, 67, 142, 34, 13, 65, 139, 27, 144, 86, 237, 224, 2, 77, 18, 69, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2640, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1157382434689449810" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9184721417904653484" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d0ffa9951a" + }, + { + "_tag": "ByteArray", + "bytearray": "10d95046a207e22bbe2fe2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10850223833707136352" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7408384686619783668" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4064484223551958936" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10383641709974866987" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74b994535a7262f5756b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "400717640138191794" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "428456153567975544" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8016575557668848636" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3355990465762001785" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9808934202753375196" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f00d9230781b3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15495098779061349900" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a" + } + } + ] + } + ] + }, + "cborHex": "d87c9f9f1b100fd93138f0ff529f1b7f76af77832104ac45d0ffa9951a4b10d95046a207e22bbe2fe21b9693bd16fd974560ff1b66cfde9f056a71f4d8669f1b3867f2dde3fe6f989f1b901a1b1ecdfb4c2b4a74b994535a7262f5756b1b058fa29213ab73b21b05f22e9a033fd878ffffffbf1b6f4098fefdee43fc1b2e92df8c3d5783791b882055affc4b5bdc477f00d9230781b31bd709a63e358a6e0c418affff", + "cborBytes": [ + 216, 124, 159, 159, 27, 16, 15, 217, 49, 56, 240, 255, 82, 159, 27, 127, 118, 175, 119, 131, 33, 4, 172, 69, 208, + 255, 169, 149, 26, 75, 16, 217, 80, 70, 162, 7, 226, 43, 190, 47, 226, 27, 150, 147, 189, 22, 253, 151, 69, 96, + 255, 27, 102, 207, 222, 159, 5, 106, 113, 244, 216, 102, 159, 27, 56, 103, 242, 221, 227, 254, 111, 152, 159, 27, + 144, 26, 27, 30, 205, 251, 76, 43, 74, 116, 185, 148, 83, 90, 114, 98, 245, 117, 107, 27, 5, 143, 162, 146, 19, + 171, 115, 178, 27, 5, 242, 46, 154, 3, 63, 216, 120, 255, 255, 255, 191, 27, 111, 64, 152, 254, 253, 238, 67, 252, + 27, 46, 146, 223, 140, 61, 87, 131, 121, 27, 136, 32, 85, 175, 252, 75, 91, 220, 71, 127, 0, 217, 35, 7, 129, 179, + 27, 215, 9, 166, 62, 53, 138, 110, 12, 65, 138, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2641, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2068391908242309319" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5cca7913acdeeb21dadf" + }, + { + "_tag": "ByteArray", + "bytearray": "8f9b1b7e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6182077350906161970" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e80b187c48" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f9f9f1b1cb4677b531340c74a5cca7913acdeeb21dadf448f9b1b7e1b55cb2698babfeb3245e80b187c48ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 159, 159, 27, 28, 180, 103, 123, 83, 19, 64, 199, + 74, 92, 202, 121, 19, 172, 222, 235, 33, 218, 223, 68, 143, 155, 27, 126, 27, 85, 203, 38, 152, 186, 191, 235, 50, + 69, 232, 11, 24, 124, 72, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2642, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "671324678824352330" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a95174900bbd3d3bbd0c" + }, + { + "_tag": "ByteArray", + "bytearray": "310d009e732ad3de908f643d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6893962006544480422" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "578f2de2427e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5239681122893485807" + } + }, + { + "_tag": "ByteArray", + "bytearray": "690189f0d8c9313fa58c" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "92d46c177d1e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1264108814874213195" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12fb28a2e41b22e1e4ab77dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2714887221783205407" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16767481039885043891" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3024508450664160434" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "606d35b8f4f087a5975d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6076145015022203424" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3841158726539142084" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11553696599297898756" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fcaaa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15098434396791354106" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10347628690960433262" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b2e1f0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11430166273538717704" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6467254510403503926" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "828db9c347" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10341729864168039548" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12995962004351905622" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18384720794274481554" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e348458cb643dd0f" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b0951063d12475a4a9f9f4aa95174900bbd3d3bbd0c4c310d009e732ad3de908f643d1b5fac45eb4f1f78a69f46578f2de2427e1b48b716386262d6ef4a690189f0d8c9313fa58cffff4692d46c177d1e9fbf1b118b044504047b4b4c12fb28a2e41b22e1e4ab77dd1b25ad378b4ba2961f1be8b20f2af87208b31b29f936694e011cb24a606d35b8f4f087a5975d1b5452cdb2c828b2201b354e8982ad41e3c41ba056f9d7cbca3904435fcaaa1bd1886a16c549b2fa1b8f9a29786856406eff43b2e1f01b9ea01baa89ecf808bf1b59c04db654a4c73645828db9c3471b8f853484c4c8e47c1bb45aee965fde6f561bff23a627ed77c59248e348458cb643dd0fffffffff", + "cborBytes": [ + 216, 102, 159, 27, 9, 81, 6, 61, 18, 71, 90, 74, 159, 159, 74, 169, 81, 116, 144, 11, 189, 61, 59, 189, 12, 76, + 49, 13, 0, 158, 115, 42, 211, 222, 144, 143, 100, 61, 27, 95, 172, 69, 235, 79, 31, 120, 166, 159, 70, 87, 143, + 45, 226, 66, 126, 27, 72, 183, 22, 56, 98, 98, 214, 239, 74, 105, 1, 137, 240, 216, 201, 49, 63, 165, 140, 255, + 255, 70, 146, 212, 108, 23, 125, 30, 159, 191, 27, 17, 139, 4, 69, 4, 4, 123, 75, 76, 18, 251, 40, 162, 228, 27, + 34, 225, 228, 171, 119, 221, 27, 37, 173, 55, 139, 75, 162, 150, 31, 27, 232, 178, 15, 42, 248, 114, 8, 179, 27, + 41, 249, 54, 105, 78, 1, 28, 178, 74, 96, 109, 53, 184, 244, 240, 135, 165, 151, 93, 27, 84, 82, 205, 178, 200, + 40, 178, 32, 27, 53, 78, 137, 130, 173, 65, 227, 196, 27, 160, 86, 249, 215, 203, 202, 57, 4, 67, 95, 202, 170, + 27, 209, 136, 106, 22, 197, 73, 178, 250, 27, 143, 154, 41, 120, 104, 86, 64, 110, 255, 67, 178, 225, 240, 27, + 158, 160, 27, 170, 137, 236, 248, 8, 191, 27, 89, 192, 77, 182, 84, 164, 199, 54, 69, 130, 141, 185, 195, 71, 27, + 143, 133, 52, 132, 196, 200, 228, 124, 27, 180, 90, 238, 150, 95, 222, 111, 86, 27, 255, 35, 166, 39, 237, 119, + 197, 146, 72, 227, 72, 69, 140, 182, 67, 221, 15, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2643, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13714735713101858091" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b3720519fd3a4c535c84e0" + } + ] + }, + "cborHex": "d905079fd8669f1bffffffffffffffef9f1bbe5487779fccc52b06ffff4bb3720519fd3a4c535c84e0ff", + "cborBytes": [ + 217, 5, 7, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 27, 190, 84, 135, 119, 159, 204, + 197, 43, 6, 255, 255, 75, 179, 114, 5, 25, 253, 58, 76, 83, 92, 132, 224, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2644, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2182816883801448787" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "235574196200575433" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9788799425198364918" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbe10604afff02000502005a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc03f902025048" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + "cborHex": "d905049f9fbf1b1e4aec6408b5e1531b0344ed7bbac891c91b87d8cd36c47f18f61bffffffffffffffeb4cfbe10604afff02000502005a47cc03f902025048ff80ff00a00cff", + "cborBytes": [ + 217, 5, 4, 159, 159, 191, 27, 30, 74, 236, 100, 8, 181, 225, 83, 27, 3, 68, 237, 123, 186, 200, 145, 201, 27, 135, + 216, 205, 54, 196, 127, 24, 246, 27, 255, 255, 255, 255, 255, 255, 255, 235, 76, 251, 225, 6, 4, 175, 255, 2, 0, + 5, 2, 0, 90, 71, 204, 3, 249, 2, 2, 80, 72, 255, 128, 255, 0, 160, 12, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2645, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5233040827676136097" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f510bec83011" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b387c2af4f1305a90" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "81ef132c2097175a995855" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16853343511230617785" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3595861563217352562" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7469bf12dd0877" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14167891235847291537" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "eb2a66a5" + }, + { + "_tag": "ByteArray", + "bytearray": "68cbdc4bda56" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87a9f9f1b489f7ee82cc092a1bf46f510bec83011499b387c2af4f1305a90ff4b81ef132c2097175a9958551be9e31aa1708918b9ffbf1b31e7110a410d1772477469bf12dd08771bc49e7603a90c42914179ff44eb2a66a54668cbdc4bda56a0ff", + "cborBytes": [ + 216, 122, 159, 159, 27, 72, 159, 126, 232, 44, 192, 146, 161, 191, 70, 245, 16, 190, 200, 48, 17, 73, 155, 56, + 124, 42, 244, 241, 48, 90, 144, 255, 75, 129, 239, 19, 44, 32, 151, 23, 90, 153, 88, 85, 27, 233, 227, 26, 161, + 112, 137, 24, 185, 255, 191, 27, 49, 231, 17, 10, 65, 13, 23, 114, 71, 116, 105, 191, 18, 221, 8, 119, 27, 196, + 158, 118, 3, 169, 12, 66, 145, 65, 121, 255, 68, 235, 42, 102, 165, 70, 104, 203, 220, 75, 218, 86, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2646, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4764335282520751889" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "bed7eb5442d5" + } + ] + }, + "cborHex": "d8669f1b421e51b269827f119fa046bed7eb5442d5ffff", + "cborBytes": [ + 216, 102, 159, 27, 66, 30, 81, 178, 105, 130, 127, 17, 159, 160, 70, 190, 215, 235, 84, 66, 213, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2647, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3314552868767917876" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2cc3d8dd" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "83cb064877cd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10821495391761313669" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b331c1b8398bfd67cf" + }, + { + "_tag": "ByteArray", + "bytearray": "e588e78f" + }, + { + "_tag": "ByteArray", + "bytearray": "2d81a2" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "93" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11020091815053646993" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1416282449408627779" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11210819795744448977" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5cd62f4a7515fe72486ab0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13001192658676275016" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c9dceea2f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16278095693499484387" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31edcb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16547244987038743075" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10261827035397905546" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17722209934086712345" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4180284088744870400" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b2dffa845dc29e7349f442cc3d8dd9f9f4683cb064877cd1b962dacb95c75af8549b331c1b8398bfd67cf44e588e78f432d81a2ff4193bf1b98ef3b1e6c765c911b13a7a5624a9f14431b9b94d534ee43e1d14b5cd62f4a7515fe72486ab01bb46d83d6fcd0d748451c9dceea2f1be1e769c9c6da48e34331edcb1be5a39fa507ceba231b8e695551b7645c8a1bf5f1f009ec232c191b3a035a3b09db0200ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 45, 255, 168, 69, 220, 41, 231, 52, 159, 68, 44, 195, 216, 221, 159, 159, 70, 131, 203, 6, 72, + 119, 205, 27, 150, 45, 172, 185, 92, 117, 175, 133, 73, 179, 49, 193, 184, 57, 139, 253, 103, 207, 68, 229, 136, + 231, 143, 67, 45, 129, 162, 255, 65, 147, 191, 27, 152, 239, 59, 30, 108, 118, 92, 145, 27, 19, 167, 165, 98, 74, + 159, 20, 67, 27, 155, 148, 213, 52, 238, 67, 225, 209, 75, 92, 214, 47, 74, 117, 21, 254, 114, 72, 106, 176, 27, + 180, 109, 131, 214, 252, 208, 215, 72, 69, 28, 157, 206, 234, 47, 27, 225, 231, 105, 201, 198, 218, 72, 227, 67, + 49, 237, 203, 27, 229, 163, 159, 165, 7, 206, 186, 35, 27, 142, 105, 85, 81, 183, 100, 92, 138, 27, 245, 241, 240, + 9, 236, 35, 44, 25, 27, 58, 3, 90, 59, 9, 219, 2, 0, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2648, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fabc9102f80507" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8907348882040952769" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6862594944287765335" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + "cborHex": "d87c9f47fabc9102f80507d8669f1b7b9d429d748617c19fd8669f1b5f3cd5be03a9f35780ff05ffff800bff", + "cborBytes": [ + 216, 124, 159, 71, 250, 188, 145, 2, 248, 5, 7, 216, 102, 159, 27, 123, 157, 66, 157, 116, 134, 23, 193, 159, 216, + 102, 159, 27, 95, 60, 213, 190, 3, 169, 243, 87, 128, 255, 5, 255, 255, 128, 11, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2649, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "59021e3b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12300547235051653641" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e43b9bc8ea715547ab5b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17964497528821221838" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc2d8361" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22dfc077ac76c99c7b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "123f6df5c4fc486de9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edf8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "320c7356" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5878659436389010327" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5330a713f422ce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "197c7ab2efbd6e9fa0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c1f3b53ac462a4944" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17650434722017824875" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d2a0e3f72b73668f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3184815065954900056" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ec67026cc74783367435" + } + ] + } + ] + }, + "cborHex": "d87d9f4459021e3b9fbf1baab4528a082aca094ae43b9bc8ea715547ab5b1bf94eb7528dc589ce44cc2d83614922dfc077ac76c99c7b49123f6df5c4fc486de942edf844320c7356ff1b5195319c65770b97a0bf475330a713f422ce49197c7ab2efbd6e9fa0495c1f3b53ac462a49441bf4f2f0dd1917d06b497d2a0e3f72b73668f11b2c32bc6db98dd858ff4aec67026cc74783367435ffff", + "cborBytes": [ + 216, 125, 159, 68, 89, 2, 30, 59, 159, 191, 27, 170, 180, 82, 138, 8, 42, 202, 9, 74, 228, 59, 155, 200, 234, 113, + 85, 71, 171, 91, 27, 249, 78, 183, 82, 141, 197, 137, 206, 68, 204, 45, 131, 97, 73, 34, 223, 192, 119, 172, 118, + 201, 156, 123, 73, 18, 63, 109, 245, 196, 252, 72, 109, 233, 66, 237, 248, 68, 50, 12, 115, 86, 255, 27, 81, 149, + 49, 156, 101, 119, 11, 151, 160, 191, 71, 83, 48, 167, 19, 244, 34, 206, 73, 25, 124, 122, 178, 239, 189, 110, + 159, 160, 73, 92, 31, 59, 83, 172, 70, 42, 73, 68, 27, 244, 242, 240, 221, 25, 23, 208, 107, 73, 125, 42, 14, 63, + 114, 183, 54, 104, 241, 27, 44, 50, 188, 109, 185, 141, 216, 88, 255, 74, 236, 103, 2, 108, 199, 71, 131, 54, 116, + 53, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2650, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4938784180158779034" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9676" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d4b3ff0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6187b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92795c9f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1653011673138570275" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "945f5542fce80c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "636fad3a103a8862c6cdade1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce93449dd7f25c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e92dae8d413ce8e980fc0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e73b7368442a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99eba3157d493d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb2587933af4a9c028c880" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11455365963654934364" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b448a160b88aece9a9fd905019f9f429676ffbf440d4b3ff043f6187b4492795c9f1b16f0ad5bd2ffa42347945f5542fce80c4c636fad3a103a8862c6cdade147ce93449dd7f25c4b7e92dae8d413ce8e980fc046e73b7368442a4799eba3157d493d4beb2587933af4a9c028c8801b9ef9a2a69bc0af5cffffffff", + "cborBytes": [ + 216, 102, 159, 27, 68, 138, 22, 11, 136, 174, 206, 154, 159, 217, 5, 1, 159, 159, 66, 150, 118, 255, 191, 68, 13, + 75, 63, 240, 67, 246, 24, 123, 68, 146, 121, 92, 159, 27, 22, 240, 173, 91, 210, 255, 164, 35, 71, 148, 95, 85, + 66, 252, 232, 12, 76, 99, 111, 173, 58, 16, 58, 136, 98, 198, 205, 173, 225, 71, 206, 147, 68, 157, 215, 242, 92, + 75, 126, 146, 218, 232, 212, 19, 206, 142, 152, 15, 192, 70, 231, 59, 115, 104, 68, 42, 71, 153, 235, 163, 21, + 125, 73, 61, 75, 235, 37, 135, 147, 58, 244, 169, 192, 40, 200, 128, 27, 158, 249, 162, 166, 155, 192, 175, 92, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2651, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "839262260981221204" + }, + "fields": [] + }, + "cborHex": "d8669f1b0ba5a8946b2d475480ff", + "cborBytes": [216, 102, 159, 27, 11, 165, 168, 148, 107, 45, 71, 84, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2652, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6034695112820219335" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "d8669f1b53bf8b3b5f6f5dc79f0effff", + "cborBytes": [216, 102, 159, 27, 83, 191, 139, 59, 95, 111, 93, 199, 159, 14, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2653, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df2692fa161e68eb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3063077403638436307" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13834208664044071068" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12755258879803589239" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "150d559efa" + } + } + ] + } + ] + }, + "cborHex": "d905019f11bf0348df2692fa161e68eb0e101b2a823cab736511d31bbffcfb7bb0fa689c1bb103c85ef4d7027745150d559efaffff", + "cborBytes": [ + 217, 5, 1, 159, 17, 191, 3, 72, 223, 38, 146, 250, 22, 30, 104, 235, 14, 16, 27, 42, 130, 60, 171, 115, 101, 17, + 211, 27, 191, 252, 251, 123, 176, 250, 104, 156, 27, 177, 3, 200, 94, 244, 215, 2, 119, 69, 21, 13, 85, 158, 250, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2654, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "563820403378407126" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17996841674539948042" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d6acd3264beef49f58e01fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "923a3524022d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39bf7cec3e13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0855d68ff79b77" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80af24" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98bccd6c1d84b224680b38" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a3d46" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11175846012784632530" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e07753e718c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10683830053377211034" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b07d317ab6c7cc6d69fd8669f1bf9c1a026d1e6580a80ffbf4c2d6acd3264beef49f58e01fa46923a3524022d4639bf7cec3e13470855d68ff79b774380af244b98bccd6c1d84b224680b38439a3d461b9b1894bc887e62d246e07753e718c31b944496d40430fa9affffff", + "cborBytes": [ + 216, 102, 159, 27, 7, 211, 23, 171, 108, 124, 198, 214, 159, 216, 102, 159, 27, 249, 193, 160, 38, 209, 230, 88, + 10, 128, 255, 191, 76, 45, 106, 205, 50, 100, 190, 239, 73, 245, 142, 1, 250, 70, 146, 58, 53, 36, 2, 45, 70, 57, + 191, 124, 236, 62, 19, 71, 8, 85, 214, 143, 247, 155, 119, 67, 128, 175, 36, 75, 152, 188, 205, 108, 29, 132, 178, + 36, 104, 11, 56, 67, 154, 61, 70, 27, 155, 24, 148, 188, 136, 126, 98, 210, 70, 224, 119, 83, 231, 24, 195, 27, + 148, 68, 150, 212, 4, 48, 250, 154, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2655, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14296591761597663457" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cb6f620" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12630975036306176359" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c027e22c89d0b4911" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1c590b969018add3837a1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bb7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16892813883873219147" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecb24d9bbd49875ddf6910" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7848894564312966566" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bc667b275e8ce08e19fbf440cb6f6201baf4a3cdfaddb3967493c027e22c89d0b49114be1c590b969018add3837a1427bb71bea6f54b9b50cd24b4becb24d9bbd49875ddf69101b6cece005615e65a6ffffff", + "cborBytes": [ + 216, 102, 159, 27, 198, 103, 178, 117, 232, 206, 8, 225, 159, 191, 68, 12, 182, 246, 32, 27, 175, 74, 60, 223, + 173, 219, 57, 103, 73, 60, 2, 126, 34, 200, 157, 11, 73, 17, 75, 225, 197, 144, 185, 105, 1, 138, 221, 56, 55, + 161, 66, 123, 183, 27, 234, 111, 84, 185, 181, 12, 210, 75, 75, 236, 178, 77, 155, 189, 73, 135, 93, 223, 105, 16, + 27, 108, 236, 224, 5, 97, 94, 101, 166, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2656, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9728932065126629704" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f1b87041c2ac9c7c148ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 135, 4, 28, 42, 201, 199, 193, 72, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2657, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14025242835319947704" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4544341037067369469" + } + } + ] + }, + "cborHex": "d8669f1bc2a3ac0cbfd681b89f1b3f10be18a4a17bfdffff", + "cborBytes": [ + 216, 102, 159, 27, 194, 163, 172, 12, 191, 214, 129, 184, 159, 27, 63, 16, 190, 24, 164, 161, 123, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2658, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14878089308993087053" + }, + "fields": [] + }, + "cborHex": "d8669f1bce7997662711e64d80ff", + "cborBytes": [216, 102, 159, 27, 206, 121, 151, 102, 39, 17, 230, 77, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2659, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6214614927698636148" + }, + "fields": [] + }, + "cborHex": "d8669f1b563ebf59ad512d7480ff", + "cborBytes": [216, 102, 159, 27, 86, 62, 191, 89, 173, 81, 45, 116, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2660, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15672705579317589663" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "11ac" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1593319159998510920" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a30796c6e53f7d90811df" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6779738331908281899" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7385141820546506981" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf7aa1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17611851709504587781" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3349786261120228308" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11346333004471703017" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10351899693100281002" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11105450764853719462" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17755048040029470812" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "973195d338" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f634a92ccb6707316578" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13052104539493339003" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16408059682129876851" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16988304443792101263" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10712711107521094835" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9351653711291133552" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13587948934297438897" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4b01669" + } + ] + } + ] + } + ] + }, + "cborHex": "d905069f9fd8669f1bd980a2afd481f69f9f4211acffff80a0bf1b161c9b559188f7484b4a30796c6e53f7d90811df1b5e1678179f7e162b1b667d4b5b8d8e60e543cf7aa11bf469ddd175e08805ffff0cbf1b2e7cd4db478e1bd41b9d7645c08ad395e91b8fa955ec95b7acaa41071b9a1e7ca1a5b231a61bf6669a1f43f3c05cff45973195d338d9050a9f4af634a92ccb67073165781bb52263ecf7c38f7b1be3b52358e6c29773d8669f1bebc294e23c6b0f8f9f1b94ab31fe712d24b31b81c7bf80d3f8ae701bbc9217904ef24ab144e4b01669ffffffff", + "cborBytes": [ + 217, 5, 6, 159, 159, 216, 102, 159, 27, 217, 128, 162, 175, 212, 129, 246, 159, 159, 66, 17, 172, 255, 255, 128, + 160, 191, 27, 22, 28, 155, 85, 145, 136, 247, 72, 75, 74, 48, 121, 108, 110, 83, 247, 217, 8, 17, 223, 27, 94, 22, + 120, 23, 159, 126, 22, 43, 27, 102, 125, 75, 91, 141, 142, 96, 229, 67, 207, 122, 161, 27, 244, 105, 221, 209, + 117, 224, 136, 5, 255, 255, 12, 191, 27, 46, 124, 212, 219, 71, 142, 27, 212, 27, 157, 118, 69, 192, 138, 211, + 149, 233, 27, 143, 169, 85, 236, 149, 183, 172, 170, 65, 7, 27, 154, 30, 124, 161, 165, 178, 49, 166, 27, 246, + 102, 154, 31, 67, 243, 192, 92, 255, 69, 151, 49, 149, 211, 56, 217, 5, 10, 159, 74, 246, 52, 169, 44, 203, 103, + 7, 49, 101, 120, 27, 181, 34, 99, 236, 247, 195, 143, 123, 27, 227, 181, 35, 88, 230, 194, 151, 115, 216, 102, + 159, 27, 235, 194, 148, 226, 60, 107, 15, 143, 159, 27, 148, 171, 49, 254, 113, 45, 36, 179, 27, 129, 199, 191, + 128, 211, 248, 174, 112, 27, 188, 146, 23, 144, 78, 242, 74, 177, 68, 228, 176, 22, 105, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2661, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7214392837843486120" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10350895008609435501" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4086954855519950376" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3d74c583c65171eb636474e2" + }, + { + "_tag": "ByteArray", + "bytearray": "d77edbdf94516f01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4747145840816409572" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16977049605629457642" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17e829b1538216" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec98ec40e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1887d808131f3a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3575488723129282367" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49ab6ddc73e7f63e4045f2cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d13f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e0284" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e4a567149c2f8ec3bc4" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1ac0f4b88df99d41bac3fd" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3411597547462083724" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1922a9ba58f0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4089920317648766682" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9076166426664794974" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9638856845113047031" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17027660507408312669" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94260300381c9fe04922b3" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8101300641536924704" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8705516929279072123" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16559245801449828214" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b641eac1001c885a89fa0a01b8fa5c42b3f877f6dd8669f1b38b7c7c9985316289f9f4c3d74c583c65171eb636474e248d77edbdf94516f011b41e13ffda2d5cbe41beb9a98ab05bab4eaffbf4717e829b153821645ec98ec40e8471887d808131f3a1b319eb00cc8892f3f4c49ab6ddc73e7f63e4045f2cc42d13f439e02844a8e4a567149c2f8ec3bc4ff4b1ac0f4b88df99d41bac3fdbf1b2f586de4dd12448c461922a9ba58f01b38c250dc0d1b86da410d1b7df5054707ae7b5e1b85c4193b55ce37f71bec4e6703dc05295d4b94260300381c9fe04922b3ff1b706d9a02cd73dc20ffffbf1b78d03585fbd4177b1be5ce42525fcbaf76ffffff", + "cborBytes": [ + 216, 102, 159, 27, 100, 30, 172, 16, 1, 200, 133, 168, 159, 160, 160, 27, 143, 165, 196, 43, 63, 135, 127, 109, + 216, 102, 159, 27, 56, 183, 199, 201, 152, 83, 22, 40, 159, 159, 76, 61, 116, 197, 131, 198, 81, 113, 235, 99, + 100, 116, 226, 72, 215, 126, 219, 223, 148, 81, 111, 1, 27, 65, 225, 63, 253, 162, 213, 203, 228, 27, 235, 154, + 152, 171, 5, 186, 180, 234, 255, 191, 71, 23, 232, 41, 177, 83, 130, 22, 69, 236, 152, 236, 64, 232, 71, 24, 135, + 216, 8, 19, 31, 58, 27, 49, 158, 176, 12, 200, 137, 47, 63, 76, 73, 171, 109, 220, 115, 231, 246, 62, 64, 69, 242, + 204, 66, 209, 63, 67, 158, 2, 132, 74, 142, 74, 86, 113, 73, 194, 248, 236, 59, 196, 255, 75, 26, 192, 244, 184, + 141, 249, 157, 65, 186, 195, 253, 191, 27, 47, 88, 109, 228, 221, 18, 68, 140, 70, 25, 34, 169, 186, 88, 240, 27, + 56, 194, 80, 220, 13, 27, 134, 218, 65, 13, 27, 125, 245, 5, 71, 7, 174, 123, 94, 27, 133, 196, 25, 59, 85, 206, + 55, 247, 27, 236, 78, 103, 3, 220, 5, 41, 93, 75, 148, 38, 3, 0, 56, 28, 159, 224, 73, 34, 179, 255, 27, 112, 109, + 154, 2, 205, 115, 220, 32, 255, 255, 191, 27, 120, 208, 53, 133, 251, 212, 23, 123, 27, 229, 206, 66, 82, 95, 203, + 175, 118, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2662, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13320676406294307912" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "309acf2d5f2076" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17929099265291684242" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7889729959738892286" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f17d97fe2234b2f888" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "82b39cf4fffc8d473e0b8a" + } + ] + }, + "cborHex": "d87d9fbf1bb8dc8c9d9519644847309acf2d5f20761bf8d0f4ca126d89921b6d7df398c7fe5ffe1bffffffffffffffeb1bfffffffffffffff21bfffffffffffffff749f17d97fe2234b2f888ff4b82b39cf4fffc8d473e0b8aff", + "cborBytes": [ + 216, 125, 159, 191, 27, 184, 220, 140, 157, 149, 25, 100, 72, 71, 48, 154, 207, 45, 95, 32, 118, 27, 248, 208, + 244, 202, 18, 109, 137, 146, 27, 109, 125, 243, 152, 199, 254, 95, 254, 27, 255, 255, 255, 255, 255, 255, 255, + 235, 27, 255, 255, 255, 255, 255, 255, 255, 242, 27, 255, 255, 255, 255, 255, 255, 255, 247, 73, 241, 125, 151, + 254, 34, 52, 178, 248, 136, 255, 75, 130, 179, 156, 244, 255, 252, 141, 71, 62, 11, 138, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2663, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "bf" + }, + { + "_tag": "ByteArray", + "bytearray": "96" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14960832323925737130" + } + } + ] + }, + "cborHex": "d905099f9fa0a0a041bf4196ff1bcf9f8dbb93c67eaaff", + "cborBytes": [ + 217, 5, 9, 159, 159, 160, 160, 160, 65, 191, 65, 150, 255, 27, 207, 159, 141, 187, 147, 198, 126, 170, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2664, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10533115071482409350" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4850254296074353062" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17082054424251670510" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18209973045238720119" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6967283634044529758" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89f158af8331ef43dd7bcdf9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ba8a188" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "43556fbdbf765945ec3ad2b7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1113878396897065078" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18395603826698761916" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2332279567974992578" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5121447856240888323" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3fe11f" + }, + { + "_tag": "ByteArray", + "bytearray": "a91b2c1c3d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "60" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "703117" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8316015952401038846" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c70106" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6404186995589455406" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12636130488096562319" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f1b922d2459c605b186bf1b434f9095a3d2f9a61bed0fa5fe87691fee1bfcb6d2010ae466771b60b0c38d089dec5e4c89f158af8331ef43dd7bcdf9445ba8a188ff9f4c43556fbdbf765945ec3ad2b79f1b0f754a801a07f876ff1bff4a50375f3236bc9f1b205debe8fe0d0ac21b471309b0ceec8a03433fe11f45a91b2c1c3dff4160ff437031179fd8669f1b73686c72d5587dfe9f43c70106071b58e03e2443491e2e1baf5c8dbad67a9c8f1bfffffffffffffff2ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 27, 146, 45, 36, 89, 198, 5, 177, 134, 191, 27, + 67, 79, 144, 149, 163, 210, 249, 166, 27, 237, 15, 165, 254, 135, 105, 31, 238, 27, 252, 182, 210, 1, 10, 228, + 102, 119, 27, 96, 176, 195, 141, 8, 157, 236, 94, 76, 137, 241, 88, 175, 131, 49, 239, 67, 221, 123, 205, 249, 68, + 91, 168, 161, 136, 255, 159, 76, 67, 85, 111, 189, 191, 118, 89, 69, 236, 58, 210, 183, 159, 27, 15, 117, 74, 128, + 26, 7, 248, 118, 255, 27, 255, 74, 80, 55, 95, 50, 54, 188, 159, 27, 32, 93, 235, 232, 254, 13, 10, 194, 27, 71, + 19, 9, 176, 206, 236, 138, 3, 67, 63, 225, 31, 69, 169, 27, 44, 28, 61, 255, 65, 96, 255, 67, 112, 49, 23, 159, + 216, 102, 159, 27, 115, 104, 108, 114, 213, 88, 125, 254, 159, 67, 199, 1, 6, 7, 27, 88, 224, 62, 36, 67, 73, 30, + 46, 27, 175, 92, 141, 186, 214, 122, 156, 143, 27, 255, 255, 255, 255, 255, 255, 255, 242, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2665, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2208769845414201415" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c79d10f1f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6446980066" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18172308601562244781" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8b75503107" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5218124799101928540" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8995793947724494504" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0" + }, + { + "_tag": "ByteArray", + "bytearray": "01dded822fcb8537930fa9" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1254041498184103172" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2414385611323943932" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6225584360813421663" + } + } + ] + }, + "cborHex": "d905029f1b1ea72078ca820847bf45c79d10f1f6456446980066ff9fd8669f1bfc31026460e4a6ad9f458b755031071b486a80dba420845cffffa0d8669f1b7cd77aef06ba36a89f41c04b01dded822fcb8537930fa9ffffd8669f1b1167401930dcb50480ffff1b21819eebe9c72bfc1b5665b7fdd982e45fff", + "cborBytes": [ + 217, 5, 2, 159, 27, 30, 167, 32, 120, 202, 130, 8, 71, 191, 69, 199, 157, 16, 241, 246, 69, 100, 70, 152, 0, 102, + 255, 159, 216, 102, 159, 27, 252, 49, 2, 100, 96, 228, 166, 173, 159, 69, 139, 117, 80, 49, 7, 27, 72, 106, 128, + 219, 164, 32, 132, 92, 255, 255, 160, 216, 102, 159, 27, 124, 215, 122, 239, 6, 186, 54, 168, 159, 65, 192, 75, 1, + 221, 237, 130, 47, 203, 133, 55, 147, 15, 169, 255, 255, 216, 102, 159, 27, 17, 103, 64, 25, 48, 220, 181, 4, 128, + 255, 255, 27, 33, 129, 158, 235, 233, 199, 43, 252, 27, 86, 101, 183, 253, 217, 130, 228, 95, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2666, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13776461440696738026" + }, + "fields": [] + }, + "cborHex": "d8669f1bbf2fd2b0829860ea80ff", + "cborBytes": [216, 102, 159, 27, 191, 47, 210, 176, 130, 152, 96, 234, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2667, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9687245020412320605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9bb87887c20d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16885649651846174349" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3242251565400541973" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6bd91f5b7f77" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4623840940566587372" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00cc8b4a54bc557a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11148796942335308686" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6324665290432584292" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12696569985729540995" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0f70b6a" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2790557534998279746" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a82b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15620186126985804378" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7948646993629322679" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5f91cacb" + }, + { + "_tag": "ByteArray", + "bytearray": "6347da83894ac68e91" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12648736498250203097" + } + } + ] + }, + "cborHex": "d8669f1b8670020555d91b5d9f469bb87887c20dd8669f1bea55e0e4f3fd568d9f80bf1b2cfeca9edc274b15466bd91f5b7f771b402b2ed6586127ec4800cc8b4a54bc557a1b9ab87bc00cdb738e1b57c5b992777a1a641bb0334721f94bb38344a0f70b6affd8669f1b26ba0d4b06dcb6429f42a82b1bd8c60c85f0793a5affffd8669f1b6e4f4453b4409db780ffffff445f91cacb496347da83894ac68e911baf8956d44bb8bfd9ffff", + "cborBytes": [ + 216, 102, 159, 27, 134, 112, 2, 5, 85, 217, 27, 93, 159, 70, 155, 184, 120, 135, 194, 13, 216, 102, 159, 27, 234, + 85, 224, 228, 243, 253, 86, 141, 159, 128, 191, 27, 44, 254, 202, 158, 220, 39, 75, 21, 70, 107, 217, 31, 91, 127, + 119, 27, 64, 43, 46, 214, 88, 97, 39, 236, 72, 0, 204, 139, 74, 84, 188, 85, 122, 27, 154, 184, 123, 192, 12, 219, + 115, 142, 27, 87, 197, 185, 146, 119, 122, 26, 100, 27, 176, 51, 71, 33, 249, 75, 179, 131, 68, 160, 247, 11, 106, + 255, 216, 102, 159, 27, 38, 186, 13, 75, 6, 220, 182, 66, 159, 66, 168, 43, 27, 216, 198, 12, 133, 240, 121, 58, + 90, 255, 255, 216, 102, 159, 27, 110, 79, 68, 83, 180, 64, 157, 183, 128, 255, 255, 255, 68, 95, 145, 202, 203, + 73, 99, 71, 218, 131, 137, 74, 198, 142, 145, 27, 175, 137, 86, 212, 75, 184, 191, 217, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2668, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa9d0604" + } + ] + }, + "cborHex": "d9050a9f44fa9d0604ff", + "cborBytes": [217, 5, 10, 159, 68, 250, 157, 6, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2669, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16280426643252337247" + }, + "fields": [] + }, + "cborHex": "d8669f1be1efb1c64edc5a5f80ff", + "cborBytes": [216, 102, 159, 27, 225, 239, 177, 198, 78, 220, 90, 95, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2670, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9147875524977996140" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cf11bb58b8" + } + ] + }, + "cborHex": "d8669f1b7ef3c8528bcdb16c9f45cf11bb58b8ffff", + "cborBytes": [216, 102, 159, 27, 126, 243, 200, 82, 139, 205, 177, 108, 159, 69, 207, 17, 187, 88, 184, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2671, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9235666049011127371" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9f1b802bad56c371944bffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 27, 128, 43, 173, 86, 195, 113, 148, 75, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2672, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8194064984879983295" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "50ff" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16208950578615624614" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d4" + } + ] + }, + "cborHex": "d8669f1b71b72ab0923ceabf9f4250ffd8669f1be0f1c2ac2c3f23a69fa0d9050080ffff41d4ffff", + "cborBytes": [ + 216, 102, 159, 27, 113, 183, 42, 176, 146, 60, 234, 191, 159, 66, 80, 255, 216, 102, 159, 27, 224, 241, 194, 172, + 44, 63, 35, 166, 159, 160, 217, 5, 0, 128, 255, 255, 65, 212, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2673, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10846516050197824346" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "df86582af3c3736ae254a3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5472218022967349769" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9169848418930096215" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4709505098469961342" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3722201303185963693" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f4cb7ff0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17706870025002316542" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9964182208739077817" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2907465815124499423" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17884456113362756268" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13773675405908270619" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6787737698465937575" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9295077481049418899" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b968690e15e9d435a9f4bdf86582af3c3736ae254a3d8669f1b4bf1394c807592099f1b7f41d88d968178571b415b85ef5e316e7e9f1b33a7ea5d3ae53aad44f4cb7ff01bf5bb7079044672fe1b8a47e2ed2528eeb91b285964c123165bdfff1bf8325a14460ce2acd8669f1bbf25ecce3cb25e1b9f1b5e32e3794996f8a71b80febfb8b9aeec93ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 150, 134, 144, 225, 94, 157, 67, 90, 159, 75, 223, 134, 88, 42, 243, 195, 115, 106, 226, 84, + 163, 216, 102, 159, 27, 75, 241, 57, 76, 128, 117, 146, 9, 159, 27, 127, 65, 216, 141, 150, 129, 120, 87, 27, 65, + 91, 133, 239, 94, 49, 110, 126, 159, 27, 51, 167, 234, 93, 58, 229, 58, 173, 68, 244, 203, 127, 240, 27, 245, 187, + 112, 121, 4, 70, 114, 254, 27, 138, 71, 226, 237, 37, 40, 238, 185, 27, 40, 89, 100, 193, 35, 22, 91, 223, 255, + 27, 248, 50, 90, 20, 70, 12, 226, 172, 216, 102, 159, 27, 191, 37, 236, 206, 60, 178, 94, 27, 159, 27, 94, 50, + 227, 121, 73, 150, 248, 167, 27, 128, 254, 191, 184, 185, 174, 236, 147, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2674, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4227900629086605232" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5fb339a15e73daa4c1fe" + } + ] + }, + "cborHex": "d8799fbf1b3aac8538c65b8fb01bfffffffffffffff4ff4a5fb339a15e73daa4c1feff", + "cborBytes": [ + 216, 121, 159, 191, 27, 58, 172, 133, 56, 198, 91, 143, 176, 27, 255, 255, 255, 255, 255, 255, 255, 244, 255, 74, + 95, 179, 57, 161, 94, 115, 218, 164, 193, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2675, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12261951834231330967" + }, + "fields": [] + }, + "cborHex": "d8669f1baa2b343a044ed89780ff", + "cborBytes": [216, 102, 159, 27, 170, 43, 52, 58, 4, 78, 216, 151, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2676, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fcfa3e4c03a1ff01" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9221469143630130894" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13534153510086658913" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "050563" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79f48fcfa3e4c03a1ff01d87c801bfffffffffffffffa9fd8669f1b7ff93d54254caece80ffd8669f1bbbd2f8e910524b6180ffff43050563ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 72, 252, 250, 62, 76, 3, 161, 255, 1, 216, 124, + 128, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 216, 102, 159, 27, 127, 249, 61, 84, 37, 76, 174, 206, 128, + 255, 216, 102, 159, 27, 187, 210, 248, 233, 16, 82, 75, 97, 128, 255, 255, 67, 5, 5, 99, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2677, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6244731868518007867" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "52f79c5ef7cda2f2d4ace6" + } + ] + }, + "cborHex": "d8669f1b56a9be8c6493c43b9f4b52f79c5ef7cda2f2d4ace6ffff", + "cborBytes": [ + 216, 102, 159, 27, 86, 169, 190, 140, 100, 147, 196, 59, 159, 75, 82, 247, 156, 94, 247, 205, 162, 242, 212, 172, + 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2678, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f80ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2679, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "020000" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82a59acdf37788a6d87686" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69f09f6a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4864380756927624424" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15752033568840613806" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d905069f80d8669f1bfffffffffffffff49fbf430200004b82a59acdf37788a6d876864469f09f6a1b4381c0869ceab4e8ffffff1bda9a7712b0c5ffaea0ff", + "cborBytes": [ + 217, 5, 6, 159, 128, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 191, 67, 2, 0, 0, 75, 130, + 165, 154, 205, 243, 119, 136, 166, 216, 118, 134, 68, 105, 240, 159, 106, 27, 67, 129, 192, 134, 156, 234, 180, + 232, 255, 255, 255, 27, 218, 154, 119, 18, 176, 197, 255, 174, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2680, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12943214076574966313" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "020122" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3891408511778210970" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb8dbea4d0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3971415941564462858" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10557292447095935833" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9952624284335249439" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5334a8f75146608e24" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16184197160596912599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8199744624160166321" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18203618691659817860" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2411187428345275907" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2926140456118457973" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "185207105619705594" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9548641374014957700" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4062105243528854428" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "324cd90857" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8133992883832881052" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1981761675788541432" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12978338077851006918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e99791e68d4c29" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13070432407723816506" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30007d06c3800ccd" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc2f293cc7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10280491015608549739" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f42dee62ca88" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13f32af8dbe21b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e8fa6e1a22e3fbe2f755fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14030473405563285742" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "64f4847632" + } + ] + }, + "cborHex": "d8669f1bb39f88a0661622299fa043020122bf1b36010f6c8478c49a45cb8dbea4d01b371d4dc1e445f70a1b9283098bb31153591b8a1ed30e2aba981f495334a8f75146608e241be099d191ec43b9d71b71cb584aa3fc51b11bfca03ec0cf0b63841b21764230e9686603ffd8669f1b289bbd3dd1d716759fbf1b0291fce19c573efa1b848396bd21c268841b385f7f3270c9fb9c45324cd908571b70e1bf6e9e69ff9c1b1b80a1be8adbddf81bb41c51b8393c37c647e99791e68d4c291bb56381065321b63a4830007d06c3800ccdffbf45cc2f293cc71b8eaba41c3df1416b46f42dee62ca884713f32af8dbe21bff9f4be8fa6e1a22e3fbe2f755fb1bc2b64139c92a30eeffffff4564f4847632ffff", + "cborBytes": [ + 216, 102, 159, 27, 179, 159, 136, 160, 102, 22, 34, 41, 159, 160, 67, 2, 1, 34, 191, 27, 54, 1, 15, 108, 132, 120, + 196, 154, 69, 203, 141, 190, 164, 208, 27, 55, 29, 77, 193, 228, 69, 247, 10, 27, 146, 131, 9, 139, 179, 17, 83, + 89, 27, 138, 30, 211, 14, 42, 186, 152, 31, 73, 83, 52, 168, 247, 81, 70, 96, 142, 36, 27, 224, 153, 209, 145, + 236, 67, 185, 215, 27, 113, 203, 88, 74, 163, 252, 81, 177, 27, 252, 160, 62, 192, 207, 11, 99, 132, 27, 33, 118, + 66, 48, 233, 104, 102, 3, 255, 216, 102, 159, 27, 40, 155, 189, 61, 209, 215, 22, 117, 159, 191, 27, 2, 145, 252, + 225, 156, 87, 62, 250, 27, 132, 131, 150, 189, 33, 194, 104, 132, 27, 56, 95, 127, 50, 112, 201, 251, 156, 69, 50, + 76, 217, 8, 87, 27, 112, 225, 191, 110, 158, 105, 255, 156, 27, 27, 128, 161, 190, 138, 219, 221, 248, 27, 180, + 28, 81, 184, 57, 60, 55, 198, 71, 233, 151, 145, 230, 141, 76, 41, 27, 181, 99, 129, 6, 83, 33, 182, 58, 72, 48, + 0, 125, 6, 195, 128, 12, 205, 255, 191, 69, 204, 47, 41, 60, 199, 27, 142, 171, 164, 28, 61, 241, 65, 107, 70, + 244, 45, 238, 98, 202, 136, 71, 19, 243, 42, 248, 219, 226, 27, 255, 159, 75, 232, 250, 110, 26, 34, 227, 251, + 226, 247, 85, 251, 27, 194, 182, 65, 57, 201, 42, 48, 238, 255, 255, 255, 69, 100, 244, 132, 118, 50, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2681, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "084fba" + }, + { + "_tag": "ByteArray", + "bytearray": "b308057421c3f3afb8afc4" + } + ] + }, + "cborHex": "d87f9f43084fba4bb308057421c3f3afb8afc4ff", + "cborBytes": [216, 127, 159, 67, 8, 79, 186, 75, 179, 8, 5, 116, 33, 195, 243, 175, 184, 175, 196, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2682, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11698375657566957239" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15105178654643140556" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "03fb05fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a78a012f" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17146866411001979559" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6cecfd83d7" + }, + { + "_tag": "ByteArray", + "bytearray": "76c634f0c89118ab10fc55" + }, + { + "_tag": "ByteArray", + "bytearray": "be9d1c169f" + }, + { + "_tag": "ByteArray", + "bytearray": "86ea1e" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f8063d" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39fbf1ba258faae0e5aeeb7071bd1a05ff4aad137cc4200f94403fb05fb44a78a012fff1bedf5e8271ed9a2a79f9f456cecfd83d74b76c634f0c89118ab10fc5545be9d1c169f4386ea1effff43f8063dffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 191, 27, 162, 88, 250, 174, 14, 90, 238, 183, 7, + 27, 209, 160, 95, 244, 170, 209, 55, 204, 66, 0, 249, 68, 3, 251, 5, 251, 68, 167, 138, 1, 47, 255, 27, 237, 245, + 232, 39, 30, 217, 162, 167, 159, 159, 69, 108, 236, 253, 131, 215, 75, 118, 198, 52, 240, 200, 145, 24, 171, 16, + 252, 85, 69, 190, 157, 28, 22, 159, 67, 134, 234, 30, 255, 255, 67, 248, 6, 61, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2683, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a2467fdfe6199ef1686ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5304179421510726012" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c543b351aba9b469140" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb3e3612967d523c858b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1908820310303284711" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3867437817652878421" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3486242547313751251" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4401417929863828814" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2758677471506022187" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5051932663228673025" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e586b97daef714b9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7642980713118689266" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15047601532182478388" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16950878806487090048" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6595366110432710866" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17840806322879519595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "204709198092939032" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2945203485379536957" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d7e22ec7eab136231" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09fbf4b5a2467fdfe6199ef1686ad1b499c3b14c415717c41f54a9c543b351aba9b4691404afb3e3612967d523c858b1b1a7d7df577ad9de7ffbf1b35abe634601c9c551b30619f20397d34d31b3d14fa499991954e1b2648ca8b52fd3f2b1b461c11fdacf02c0148e586b97daef714b91b6a115276de99e7f21bd0d3d1de2f5c3e341beb3d9e77035c43801b5b8772889ffdd0d21bf79746d375c6db6b1b02d745ee5a95af18ff1b28df76f7314a283d499d7e22ec7eab136231ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 191, 75, 90, 36, 103, 253, 254, 97, 153, 239, 22, + 134, 173, 27, 73, 156, 59, 20, 196, 21, 113, 124, 65, 245, 74, 156, 84, 59, 53, 26, 186, 155, 70, 145, 64, 74, + 251, 62, 54, 18, 150, 125, 82, 60, 133, 139, 27, 26, 125, 125, 245, 119, 173, 157, 231, 255, 191, 27, 53, 171, + 230, 52, 96, 28, 156, 85, 27, 48, 97, 159, 32, 57, 125, 52, 211, 27, 61, 20, 250, 73, 153, 145, 149, 78, 27, 38, + 72, 202, 139, 82, 253, 63, 43, 27, 70, 28, 17, 253, 172, 240, 44, 1, 72, 229, 134, 185, 125, 174, 247, 20, 185, + 27, 106, 17, 82, 118, 222, 153, 231, 242, 27, 208, 211, 209, 222, 47, 92, 62, 52, 27, 235, 61, 158, 119, 3, 92, + 67, 128, 27, 91, 135, 114, 136, 159, 253, 208, 210, 27, 247, 151, 70, 211, 117, 198, 219, 107, 27, 2, 215, 69, + 238, 90, 149, 175, 24, 255, 27, 40, 223, 118, 247, 49, 74, 40, 61, 73, 157, 126, 34, 236, 126, 171, 19, 98, 49, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2684, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4283313749491355933" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8361861295677472789" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "550788474422069877" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12846162539072409228" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15244957685625669706" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17047399050970173056" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3609198379815021065" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9655763217120450563" + } + }, + { + "_tag": "ByteArray", + "bytearray": "278e8ef0d20a55" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2607828283232989248" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5a3145e7e58a4630a1ee" + }, + { + "_tag": "ByteArray", + "bytearray": "3a4c17e2" + } + ] + }, + "cborHex": "d8669f1b3b71632943fa911d9f9fbf1b740b4c8b9df180151b07a4cb33044e8a751bb246bcc474574e8c1bd390f83e6b94484a1bec94871da9688e801b321672cdd8ca2a09ff9f1b8600297ccfbf580347278e8ef0d20a55ffd8669f1b2430de01b951b04080ffff4a5a3145e7e58a4630a1ee443a4c17e2ffff", + "cborBytes": [ + 216, 102, 159, 27, 59, 113, 99, 41, 67, 250, 145, 29, 159, 159, 191, 27, 116, 11, 76, 139, 157, 241, 128, 21, 27, + 7, 164, 203, 51, 4, 78, 138, 117, 27, 178, 70, 188, 196, 116, 87, 78, 140, 27, 211, 144, 248, 62, 107, 148, 72, + 74, 27, 236, 148, 135, 29, 169, 104, 142, 128, 27, 50, 22, 114, 205, 216, 202, 42, 9, 255, 159, 27, 134, 0, 41, + 124, 207, 191, 88, 3, 71, 39, 142, 142, 240, 210, 10, 85, 255, 216, 102, 159, 27, 36, 48, 222, 1, 185, 81, 176, + 64, 128, 255, 255, 74, 90, 49, 69, 231, 229, 138, 70, 48, 161, 238, 68, 58, 76, 23, 226, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2685, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14654483180128489544" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d4d220a01cf40fe0d8342e6e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7272716762458445450" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd7879f079" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11521063851155063703" + } + }, + { + "_tag": "ByteArray", + "bytearray": "249cbd21" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "950e77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e2fe7204ad0fb6d5576" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecb1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1250648e28" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1417537349843889953" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10325542938917991572" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1664770655057728986" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7437e6d15f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4115883528586898914" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7484985054233856490" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5658504265780944206" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3727673570612886630" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8472598576386561475" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8abb33489b59db55" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12879168671515138878" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5633508500119628945" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5e0caab8606d272a6b77" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4636846552974110592" + } + }, + { + "_tag": "ByteArray", + "bytearray": "abdb4b2e8381d2c0db" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8216527951315595131" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6225247815343205113" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7214594a6049e43ed382" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9387410600187428731" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bcb5f2ecf3e7ed0489f9f4cd4d220a01cf40fe0d8342e6ed8669f1b64ede15cea5d568a9f45fd7879f0791b9fe30a880ab1039744249cbd21ffffbf43950e774a7e2fe7204ad0fb6d557642ecb1451250648e28ffbf1b13ac1ab5914b2f211b8f4bb2988b3ff4941b171a74172735d5da457437e6d15f1b391e8e432a4dade21b67e0023feab789ea1b4e870ba651e7dd4e1b33bb5b5cc6fe3c661b7594b783f60055c3488abb33489b59db551bb2bbffab83ffdb3e1b4e2e3e221cc62c91ff9f4a5e0caab8606d272a6b771b4059635f74042f8049abdb4b2e8381d2c0dbffffbf1b7206f8a3813bef7b1b566485e7c04eeaf94a7214594a6049e43ed3821b8246c83448e87f7bffffff", + "cborBytes": [ + 216, 102, 159, 27, 203, 95, 46, 207, 62, 126, 208, 72, 159, 159, 76, 212, 210, 32, 160, 28, 244, 15, 224, 216, 52, + 46, 110, 216, 102, 159, 27, 100, 237, 225, 92, 234, 93, 86, 138, 159, 69, 253, 120, 121, 240, 121, 27, 159, 227, + 10, 136, 10, 177, 3, 151, 68, 36, 156, 189, 33, 255, 255, 191, 67, 149, 14, 119, 74, 126, 47, 231, 32, 74, 208, + 251, 109, 85, 118, 66, 236, 177, 69, 18, 80, 100, 142, 40, 255, 191, 27, 19, 172, 26, 181, 145, 75, 47, 33, 27, + 143, 75, 178, 152, 139, 63, 244, 148, 27, 23, 26, 116, 23, 39, 53, 213, 218, 69, 116, 55, 230, 209, 95, 27, 57, + 30, 142, 67, 42, 77, 173, 226, 27, 103, 224, 2, 63, 234, 183, 137, 234, 27, 78, 135, 11, 166, 81, 231, 221, 78, + 27, 51, 187, 91, 92, 198, 254, 60, 102, 27, 117, 148, 183, 131, 246, 0, 85, 195, 72, 138, 187, 51, 72, 155, 89, + 219, 85, 27, 178, 187, 255, 171, 131, 255, 219, 62, 27, 78, 46, 62, 34, 28, 198, 44, 145, 255, 159, 74, 94, 12, + 170, 184, 96, 109, 39, 42, 107, 119, 27, 64, 89, 99, 95, 116, 4, 47, 128, 73, 171, 219, 75, 46, 131, 129, 210, + 192, 219, 255, 255, 191, 27, 114, 6, 248, 163, 129, 59, 239, 123, 27, 86, 100, 133, 231, 192, 78, 234, 249, 74, + 114, 20, 89, 74, 96, 73, 228, 62, 211, 130, 27, 130, 70, 200, 52, 72, 232, 127, 123, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2686, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15804103736983296045" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13536304926674500881" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d46bc6d9fa6e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15871725209631484028" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d197919c739" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0fd1c3d7a99" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ad5500b9390232a1cbb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d013c9d8a477bbd512c79d71" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eeab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f591de346362" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2025018215175035821" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bdb53749d7450182d9fa08041f71bbbda9d9cc5cdbd11bf472d46bc6d9fa6e91bdc43b1fc74b2687c465d197919c73941a146b0fd1c3d7a994a0ad5500b9390232a1cbb4cd013c9d8a477bbd512c79d7142eeab46f591de3463621b1c1a4f5673341badffffff", + "cborBytes": [ + 216, 102, 159, 27, 219, 83, 116, 157, 116, 80, 24, 45, 159, 160, 128, 65, 247, 27, 187, 218, 157, 156, 197, 205, + 189, 17, 191, 71, 45, 70, 188, 109, 159, 166, 233, 27, 220, 67, 177, 252, 116, 178, 104, 124, 70, 93, 25, 121, 25, + 199, 57, 65, 161, 70, 176, 253, 28, 61, 122, 153, 74, 10, 213, 80, 11, 147, 144, 35, 42, 28, 187, 76, 208, 19, + 201, 216, 164, 119, 187, 213, 18, 199, 157, 113, 66, 238, 171, 70, 245, 145, 222, 52, 99, 98, 27, 28, 26, 79, 86, + 115, 52, 27, 173, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2687, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14824512467961719465" + }, + "fields": [] + }, + "cborHex": "d8669f1bcdbb3f8bc5352aa980ff", + "cborBytes": [216, 102, 159, 27, 205, 187, 63, 139, 197, 53, 42, 169, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2688, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8994078738835627704" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6218065051429437427" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4750874080776232022" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7500217702467498723" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3c2409ea2d28cc959" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12961306158524361710" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0eef3e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13305990762405783044" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4710f6034b7bff939" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7cd162f5d630deb89fbf1b564b013834b8fff31b41ee7ece25471c561b6816204335abf2e349b3c2409ea2d28cc9591bb3dfcf477bed6bee430eef3e1bb8a86019a9d3660449a4710f6034b7bff939ffffff", + "cborBytes": [ + 216, 102, 159, 27, 124, 209, 98, 245, 214, 48, 222, 184, 159, 191, 27, 86, 75, 1, 56, 52, 184, 255, 243, 27, 65, + 238, 126, 206, 37, 71, 28, 86, 27, 104, 22, 32, 67, 53, 171, 242, 227, 73, 179, 194, 64, 158, 162, 210, 140, 201, + 89, 27, 179, 223, 207, 71, 123, 237, 107, 238, 67, 14, 239, 62, 27, 184, 168, 96, 25, 169, 211, 102, 4, 73, 164, + 113, 15, 96, 52, 183, 191, 249, 57, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2689, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4528602330052354739" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7938499023849054526" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8944485296056109059" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4149159686641967692" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e1e75722305de851ffa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10341092753393662079" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1932cd5aed110936f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10600914458477720506" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18308385703727400919" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14133422888337843788" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da434adfd9be1f194f4ebf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15893571346117854051" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c329a93032884b965c89dd" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3ed8d3d35bc6e2b39f1b6e2b36cd5e4ee13e801b7c2131fca2210803bf1b3994c6c076aa624c4a6e1e75722305de851ffa1b8f82f111db65387f49d1932cd5aed110936f1b931e0388afddf3ba1bfe1473cba98307d71bc424013c1fc0a64c4bda434adfd9be1f194f4ebf1bdc914eee79ae83634bc329a93032884b965c89ddffffff", + "cborBytes": [ + 216, 102, 159, 27, 62, 216, 211, 211, 91, 198, 226, 179, 159, 27, 110, 43, 54, 205, 94, 78, 225, 62, 128, 27, 124, + 33, 49, 252, 162, 33, 8, 3, 191, 27, 57, 148, 198, 192, 118, 170, 98, 76, 74, 110, 30, 117, 114, 35, 5, 222, 133, + 31, 250, 27, 143, 130, 241, 17, 219, 101, 56, 127, 73, 209, 147, 44, 213, 174, 209, 16, 147, 111, 27, 147, 30, 3, + 136, 175, 221, 243, 186, 27, 254, 20, 115, 203, 169, 131, 7, 215, 27, 196, 36, 1, 60, 31, 192, 166, 76, 75, 218, + 67, 74, 223, 217, 190, 31, 25, 79, 78, 191, 27, 220, 145, 78, 238, 121, 174, 131, 99, 75, 195, 41, 169, 48, 50, + 136, 75, 150, 92, 137, 221, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2690, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7581377774904568484" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12492283742051229626" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3809879791286870966" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5261802754067587123" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0104fffc07940606e80607" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9891551512113693211" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c33da27a0c252e79487f3765" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11320532736516094178" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "019f0728fd1bff01f8" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1848983354746335109" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab958536dc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14772052200164941449" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10552563639408421209" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b693676eb1d3a6aa49fbf021bad5d81e05e59dfba1b34df697c0c97e3b6141b4905adba025ee0334b0104fffc07940606e806071b8945d9b14d03c21b4cc33da27a0c252e79487f37651b9d1a9c8b8c38f8e249019f0728fd1bff01f8ffbf1b19a8e8909743ef8545ab958536dc1bcd00df35da5bde891b92723cb85ca46959ffffff", + "cborBytes": [ + 216, 102, 159, 27, 105, 54, 118, 235, 29, 58, 106, 164, 159, 191, 2, 27, 173, 93, 129, 224, 94, 89, 223, 186, 27, + 52, 223, 105, 124, 12, 151, 227, 182, 20, 27, 73, 5, 173, 186, 2, 94, 224, 51, 75, 1, 4, 255, 252, 7, 148, 6, 6, + 232, 6, 7, 27, 137, 69, 217, 177, 77, 3, 194, 27, 76, 195, 61, 162, 122, 12, 37, 46, 121, 72, 127, 55, 101, 27, + 157, 26, 156, 139, 140, 56, 248, 226, 73, 1, 159, 7, 40, 253, 27, 255, 1, 248, 255, 191, 27, 25, 168, 232, 144, + 151, 67, 239, 133, 69, 171, 149, 133, 54, 220, 27, 205, 0, 223, 53, 218, 91, 222, 137, 27, 146, 114, 60, 184, 92, + 164, 105, 89, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2691, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17380649167942818514" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3343173824077390900" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18282710546596784008" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5989221342344471275" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5295742162305677663" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "671a6f" + }, + { + "_tag": "ByteArray", + "bytearray": "d080d142" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "85a118ac45f087663bd9" + }, + { + "_tag": "ByteArray", + "bytearray": "0088eda7bc5f4fe7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "54910206753054604" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11779386938405106388" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2c23e3a79ec3b5e5402a" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "878f7437f70d28" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15821173316374685334" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b456d6db48be9ef22a84749b" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17707727981124497707" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3329323353919774710" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bf1347854e4eb9ad29fd8669f1b2e6556e14e8464349fd8669f1bfdb93c604d30678880ffffffd8669f1b531dfd141fa162eb9fd8669f1b497e41704649f95f9f43671a6f44d080d142ffff4a85a118ac45f087663bd9480088eda7bc5f4fe71b00c3148ac80f1f8cd8669f1ba378ca02b78332d49f4a2c23e3a79ec3b5e5402affffffffbf47878f7437f70d281bdb90194e9c66e69642e3db4cb456d6db48be9ef22a84749bffbf1bf5be7cc77e2bb12b1b2e3421f36cccdff6ffffff", + "cborBytes": [ + 216, 102, 159, 27, 241, 52, 120, 84, 228, 235, 154, 210, 159, 216, 102, 159, 27, 46, 101, 86, 225, 78, 132, 100, + 52, 159, 216, 102, 159, 27, 253, 185, 60, 96, 77, 48, 103, 136, 128, 255, 255, 255, 216, 102, 159, 27, 83, 29, + 253, 20, 31, 161, 98, 235, 159, 216, 102, 159, 27, 73, 126, 65, 112, 70, 73, 249, 95, 159, 67, 103, 26, 111, 68, + 208, 128, 209, 66, 255, 255, 74, 133, 161, 24, 172, 69, 240, 135, 102, 59, 217, 72, 0, 136, 237, 167, 188, 95, 79, + 231, 27, 0, 195, 20, 138, 200, 15, 31, 140, 216, 102, 159, 27, 163, 120, 202, 2, 183, 131, 50, 212, 159, 74, 44, + 35, 227, 167, 158, 195, 181, 229, 64, 42, 255, 255, 255, 255, 191, 71, 135, 143, 116, 55, 247, 13, 40, 27, 219, + 144, 25, 78, 156, 102, 230, 150, 66, 227, 219, 76, 180, 86, 214, 219, 72, 190, 158, 242, 42, 132, 116, 155, 255, + 191, 27, 245, 190, 124, 199, 126, 43, 177, 43, 27, 46, 52, 33, 243, 108, 204, 223, 246, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2692, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6688860556591790714" + }, + "fields": [] + }, + "cborHex": "d8669f1b5cd39b3cb3c67a7a80ff", + "cborBytes": [216, 102, 159, 27, 92, 211, 155, 60, 179, 198, 122, 122, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2693, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6489907748336731409" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "14e10c9541" + } + ] + } + ] + }, + "cborHex": "d8669f1b5a10c8b64caa85119fd8669f1bfffffffffffffffb9f4514e10c9541ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 90, 16, 200, 182, 76, 170, 133, 17, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 251, 159, 69, 20, 225, 12, 149, 65, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2694, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "842872870621302559" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c898b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcb7842b030201fd44" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49e3b37718a796e3" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6dc4a2d34f240eac622360ba" + }, + { + "_tag": "ByteArray", + "bytearray": "b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2419948691888929193" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2992198773447588206" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc859cc440bcb332a11f02" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b0bb27c68fc324f1f9fbf438c898b0849dcb7842b030201fd444849e3b37718a796e3ff9f9f4c6dc4a2d34f240eac622360ba41b81b219562838ab5f9a91b29866cee5cb3f96e4bfc859cc440bcb332a11f02ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 11, 178, 124, 104, 252, 50, 79, 31, 159, 191, 67, 140, 137, 139, 8, 73, 220, 183, 132, 43, 3, + 2, 1, 253, 68, 72, 73, 227, 179, 119, 24, 167, 150, 227, 255, 159, 159, 76, 109, 196, 162, 211, 79, 36, 14, 172, + 98, 35, 96, 186, 65, 184, 27, 33, 149, 98, 131, 138, 181, 249, 169, 27, 41, 134, 108, 238, 92, 179, 249, 110, 75, + 252, 133, 156, 196, 64, 188, 179, 50, 161, 31, 2, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2695, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8478423533732038422" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dd98b6e258546e3307" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11585968341522340964" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6914156661679932756" + } + }, + { + "_tag": "ByteArray", + "bytearray": "892dea92" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1831111275897614903" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4088" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9074070036041667737" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9c77fcb14362919791d82d4b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "792088029749660212" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3743900941366570074" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e28" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8739131108847689666" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7eca93d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16752438369983575780" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17490958069753694084" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16827282167746105366" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "330c2559485102ff" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "21258b77040063c81734d6" + } + ] + } + ] + }, + "cborHex": "d8669f1b75a96948876907169f9f49dd98b6e258546e33078080d8669f1ba0c9a0d24f5c5c649f1b5ff404d9dcd5455444892dea92ffffd8669f1b19696a00f816f2379f424088ffffff1b7ded929f0d4794999f9f4c9c77fcb14362919791d82d4b1b0afe0fddcc114a34ffbf1b33f50211f467ac5a426e281b7947a1710c6e9fc244d7eca93d1be87c9df0747eb6e41bf2bc5db180ebc7841be98683fa0fc5901648330c2559485102ffff804b21258b77040063c81734d6ffffff", + "cborBytes": [ + 216, 102, 159, 27, 117, 169, 105, 72, 135, 105, 7, 22, 159, 159, 73, 221, 152, 182, 226, 88, 84, 110, 51, 7, 128, + 128, 216, 102, 159, 27, 160, 201, 160, 210, 79, 92, 92, 100, 159, 27, 95, 244, 4, 217, 220, 213, 69, 84, 68, 137, + 45, 234, 146, 255, 255, 216, 102, 159, 27, 25, 105, 106, 0, 248, 22, 242, 55, 159, 66, 64, 136, 255, 255, 255, 27, + 125, 237, 146, 159, 13, 71, 148, 153, 159, 159, 76, 156, 119, 252, 177, 67, 98, 145, 151, 145, 216, 45, 75, 27, + 10, 254, 15, 221, 204, 17, 74, 52, 255, 191, 27, 51, 245, 2, 17, 244, 103, 172, 90, 66, 110, 40, 27, 121, 71, 161, + 113, 12, 110, 159, 194, 68, 215, 236, 169, 61, 27, 232, 124, 157, 240, 116, 126, 182, 228, 27, 242, 188, 93, 177, + 128, 235, 199, 132, 27, 233, 134, 131, 250, 15, 197, 144, 22, 72, 51, 12, 37, 89, 72, 81, 2, 255, 255, 128, 75, + 33, 37, 139, 119, 4, 0, 99, 200, 23, 52, 214, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2696, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10159978115238827442" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4227220993673454720" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15248864262775006267" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7296353699113657122" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2213452028947794273" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16911009171840359425" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f519" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9056907066268456228" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3f096c7c43197c4f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7f94eabdf232c7" + }, + { + "_tag": "ByteArray", + "bytearray": "e9f234dcff7719" + }, + { + "_tag": "ByteArray", + "bytearray": "eb37a5303cea1bb15ff4b7cf" + }, + { + "_tag": "ByteArray", + "bytearray": "5a0e6d9980fa" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11910204459433633874" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5413463048643545046" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f27d77715fa9bbfe3ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "402a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "757a86df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b3176584bd7f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfd3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12600519017826832988" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fea78da299f4b26b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4376586191911109340" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + ] + }, + "cborHex": "d8669f1b8cff7e44148d95b29f0dd9050b9fbf1b3aaa1b18d2fae4801bd39ed9414ada643b1b6541db081746e3221b1eb7c2e498cd09611beaaff93e50eadc0142f519ff1b7db098fdc0a81524483f096c7c43197c4f9f477f94eabdf232c747e9f234dcff77194ceb37a5303cea1bb15ff4b7cf465a0e6d9980faffffa0d8669f1ba5498bda56d0a8529fbf4105419c41401b4b207bf6031a07d64a5f27d77715fa9bbfe3ff42402a44757a86df477b3176584bd7f342dfd31baede09494b1f525c48fea78da299f4b26b1b3cbcc1f411bdc2dcffffff1bfffffffffffffff9ffff", + "cborBytes": [ + 216, 102, 159, 27, 140, 255, 126, 68, 20, 141, 149, 178, 159, 13, 217, 5, 11, 159, 191, 27, 58, 170, 27, 24, 210, + 250, 228, 128, 27, 211, 158, 217, 65, 74, 218, 100, 59, 27, 101, 65, 219, 8, 23, 70, 227, 34, 27, 30, 183, 194, + 228, 152, 205, 9, 97, 27, 234, 175, 249, 62, 80, 234, 220, 1, 66, 245, 25, 255, 27, 125, 176, 152, 253, 192, 168, + 21, 36, 72, 63, 9, 108, 124, 67, 25, 124, 79, 159, 71, 127, 148, 234, 189, 242, 50, 199, 71, 233, 242, 52, 220, + 255, 119, 25, 76, 235, 55, 165, 48, 60, 234, 27, 177, 95, 244, 183, 207, 70, 90, 14, 109, 153, 128, 250, 255, 255, + 160, 216, 102, 159, 27, 165, 73, 139, 218, 86, 208, 168, 82, 159, 191, 65, 5, 65, 156, 65, 64, 27, 75, 32, 123, + 246, 3, 26, 7, 214, 74, 95, 39, 215, 119, 21, 250, 155, 191, 227, 255, 66, 64, 42, 68, 117, 122, 134, 223, 71, + 123, 49, 118, 88, 75, 215, 243, 66, 223, 211, 27, 174, 222, 9, 73, 75, 31, 82, 92, 72, 254, 167, 141, 162, 153, + 244, 178, 107, 27, 60, 188, 193, 244, 17, 189, 194, 220, 255, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, + 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2697, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12635204580993625276" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17959333504732781836" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17402031814559243416" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5827537987170707204" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e019c5368ee36963f8" + }, + { + "_tag": "ByteArray", + "bytearray": "43" + }, + { + "_tag": "ByteArray", + "bytearray": "fe5a03d62498160dff15e1c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14539335187351120429" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13985286782242266285" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11837794355583027230" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9163943761708492641" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3667981994340892527" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9389118820324301265" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1baf59439f4a836cbc9fd8669f1bf93c5eab805e5d0c9f801bf1806fbc44d99c981b50df92ec7867a704ffff9f49e019c5368ee36963f841434cfe5a03d62498160dff15e1c41bc9c61851f866aa2dffd8669f1bc215b83b31841cad9f1ba4484b3f40a6881e9f1b7f2cde4c724aa7611b32e74a30a737bf6f1b824cd9d2475d59d1ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 175, 89, 67, 159, 74, 131, 108, 188, 159, 216, 102, 159, 27, 249, 60, 94, 171, 128, 94, 93, 12, + 159, 128, 27, 241, 128, 111, 188, 68, 217, 156, 152, 27, 80, 223, 146, 236, 120, 103, 167, 4, 255, 255, 159, 73, + 224, 25, 197, 54, 142, 227, 105, 99, 248, 65, 67, 76, 254, 90, 3, 214, 36, 152, 22, 13, 255, 21, 225, 196, 27, + 201, 198, 24, 81, 248, 102, 170, 45, 255, 216, 102, 159, 27, 194, 21, 184, 59, 49, 132, 28, 173, 159, 27, 164, 72, + 75, 63, 64, 166, 136, 30, 159, 27, 127, 44, 222, 76, 114, 74, 167, 97, 27, 50, 231, 74, 48, 167, 55, 191, 111, 27, + 130, 76, 217, 210, 71, 93, 89, 209, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2698, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7000065381831182298" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9377776293437929455" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7433773920760705877" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ca2a2d1a9799dbf264502db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b11ba57fac54a4" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14251394452674862879" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14602584432566701561" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15301196385929559059" + } + }, + { + "_tag": "ByteArray", + "bytearray": "53e9d7afa53f3f6c" + }, + { + "_tag": "ByteArray", + "bytearray": "7f88dd46" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12783134145890839335" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "767527986879040667" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2115e956122fa16a1a2378d2" + } + ] + } + ] + }, + "cborHex": "d8669f1b61253a60788e87da9f1b82248dda717277efd8669f1bfffffffffffffffa9f1b672a11febf813355bf4c2ca2a2d1a9799dbf264502db47b11ba57fac54a4ffffff1bc5c71fbf61a85f1fd8669f1bcaa6cd2c71c98df99f9f1bd458c50b35d27c134853e9d7afa53f3f6c447f88dd461bb166d0c719fd6b27ffffff9f1b0aa6cea335188c9b4c2115e956122fa16a1a2378d2ffffff", + "cborBytes": [ + 216, 102, 159, 27, 97, 37, 58, 96, 120, 142, 135, 218, 159, 27, 130, 36, 141, 218, 113, 114, 119, 239, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 27, 103, 42, 17, 254, 191, 129, 51, 85, 191, 76, 44, 162, + 162, 209, 169, 121, 157, 191, 38, 69, 2, 219, 71, 177, 27, 165, 127, 172, 84, 164, 255, 255, 255, 27, 197, 199, + 31, 191, 97, 168, 95, 31, 216, 102, 159, 27, 202, 166, 205, 44, 113, 201, 141, 249, 159, 159, 27, 212, 88, 197, + 11, 53, 210, 124, 19, 72, 83, 233, 215, 175, 165, 63, 63, 108, 68, 127, 136, 221, 70, 27, 177, 102, 208, 199, 25, + 253, 107, 39, 255, 255, 255, 159, 27, 10, 166, 206, 163, 53, 24, 140, 155, 76, 33, 21, 233, 86, 18, 47, 161, 106, + 26, 35, 120, 210, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2699, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2240580710710597676" + }, + "fields": [] + }, + "cborHex": "d8669f1b1f182449087f582c80ff", + "cborBytes": [216, 102, 159, 27, 31, 24, 36, 73, 8, 127, 88, 44, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2700, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13077322290706939693" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1039845809822637141" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d4f" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "90ee742e0ae195c99e7b5864" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4211303366276471620" + } + }, + { + "_tag": "ByteArray", + "bytearray": "82" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cad69cb10ba1cd20" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c7eaa8b4d307cb8e75962ff" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e818" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14061007989367706945" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "433d01" + } + ] + }, + "cborHex": "d8669f1bb57bfb5636e27f2d9fd8669f1b0e6e464133a81c559f422d4fffff9f9f4c90ee742e0ae195c99e7b58641b3a718e196450db444182ffbf48cad69cb10ba1cd204c9c7eaa8b4d307cb8e75962ffff42e8181bc322bc4496311541ff43433d01ffff", + "cborBytes": [ + 216, 102, 159, 27, 181, 123, 251, 86, 54, 226, 127, 45, 159, 216, 102, 159, 27, 14, 110, 70, 65, 51, 168, 28, 85, + 159, 66, 45, 79, 255, 255, 159, 159, 76, 144, 238, 116, 46, 10, 225, 149, 201, 158, 123, 88, 100, 27, 58, 113, + 142, 25, 100, 80, 219, 68, 65, 130, 255, 191, 72, 202, 214, 156, 177, 11, 161, 205, 32, 76, 156, 126, 170, 139, + 77, 48, 124, 184, 231, 89, 98, 255, 255, 66, 232, 24, 27, 195, 34, 188, 68, 150, 49, 21, 65, 255, 67, 67, 61, 1, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2701, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "32c170b5151a6e57d975" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18359034675011514484" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9622891331846050998" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13221099353282702488" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4754878653019173740" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7006391287740741257" + } + } + ] + } + ] + }, + "cborHex": "d9050b9fd8669f1bffffffffffffffed9f4a32c170b5151a6e57d975bf1bfec864c43f23f0741b858b60ae9ade94b6ff1bb77ac7d03c8fec981b41fcb8f1474bb36c1b613bb3c1372db689ffffff", + "cborBytes": [ + 217, 5, 11, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 74, 50, 193, 112, 181, 21, 26, + 110, 87, 217, 117, 191, 27, 254, 200, 100, 196, 63, 35, 240, 116, 27, 133, 139, 96, 174, 154, 222, 148, 182, 255, + 27, 183, 122, 199, 208, 60, 143, 236, 152, 27, 65, 252, 184, 241, 71, 75, 179, 108, 27, 97, 59, 179, 193, 55, 45, + 182, 137, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2702, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e40" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "890dfa26710e" + } + } + ] + } + ] + }, + "cborHex": "d87d9f9fd9050180ffbf424e4046890dfa26710effff", + "cborBytes": [216, 125, 159, 159, 217, 5, 1, 128, 255, 191, 66, 78, 64, 70, 137, 13, 250, 38, 113, 14, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2703, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "19f7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11399735766466915857" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8586567051097090331" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3598" + }, + { + "_tag": "ByteArray", + "bytearray": "e5" + }, + { + "_tag": "ByteArray", + "bytearray": "61a2aa" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1889889773128056829" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9843862171367149266" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6968437252088758614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14245486034117621377" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8624265706381284062" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7570756484066730396" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905089f4219f7d8669f1b9e33ff47fd936e119f1b77299d3d48b7291b42359841e54361a2aabf1b1a3a3cbc4ff0fffd1b889c6c7d663e8ed21b60b4dcc2aa5981561bc5b222127c5e76811b77af8bf7757092de1b6910bae921c8619cffffffff", + "cborBytes": [ + 217, 5, 8, 159, 66, 25, 247, 216, 102, 159, 27, 158, 51, 255, 71, 253, 147, 110, 17, 159, 27, 119, 41, 157, 61, + 72, 183, 41, 27, 66, 53, 152, 65, 229, 67, 97, 162, 170, 191, 27, 26, 58, 60, 188, 79, 240, 255, 253, 27, 136, + 156, 108, 125, 102, 62, 142, 210, 27, 96, 180, 220, 194, 170, 89, 129, 86, 27, 197, 178, 34, 18, 124, 94, 118, + 129, 27, 119, 175, 139, 247, 117, 112, 146, 222, 27, 105, 16, 186, 233, 33, 200, 97, 156, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2704, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4749829582631306317" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + }, + "cborHex": "d9050a9fbf1bffffffffffffffee1b41eac8d6f861844dff11ff", + "cborBytes": [ + 217, 5, 10, 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 238, 27, 65, 234, 200, 214, 248, 97, 132, 77, 255, + 17, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2705, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4969161243175759864" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2499709841423771372" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e0cdcbb9c012aef1fe97b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12162187164171150159" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b44f601d2ab212ff89fbf1b22b0c0db539ca6ec41d74b3e0cdcbb9c012aef1fe97b1ba8c8c4c9ac3ca34fffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 68, 246, 1, 210, 171, 33, 47, 248, 159, 191, 27, 34, 176, 192, 219, 83, 156, 166, 236, 65, 215, + 75, 62, 12, 220, 187, 156, 1, 42, 239, 31, 233, 123, 27, 168, 200, 196, 201, 172, 60, 163, 79, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2706, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8736625234615175948" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2280805129471107899" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2db2d813dc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2831641858164296724" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8118266871922621573" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3237068638512044984" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ca03b1760aa7ddfc9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5254437821516184693" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8725932561979352164" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16594147861384134794" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4128501452796630124" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b793eba5cbcf38b0c9fa0bf1b1fa70c2e5803a33b452db2d813dc1b274c03446f028c141b70a9e0b524c4fc851b2cec60c6a8115bb8493ca03b1760aa7ddfc91b48eb835c05d97c751b7918bd6ee2cb24641be64a418f741c008a1b394b623294a0946cffffff", + "cborBytes": [ + 216, 102, 159, 27, 121, 62, 186, 92, 188, 243, 139, 12, 159, 160, 191, 27, 31, 167, 12, 46, 88, 3, 163, 59, 69, + 45, 178, 216, 19, 220, 27, 39, 76, 3, 68, 111, 2, 140, 20, 27, 112, 169, 224, 181, 36, 196, 252, 133, 27, 44, 236, + 96, 198, 168, 17, 91, 184, 73, 60, 160, 59, 23, 96, 170, 125, 223, 201, 27, 72, 235, 131, 92, 5, 217, 124, 117, + 27, 121, 24, 189, 110, 226, 203, 36, 100, 27, 230, 74, 65, 143, 116, 28, 0, 138, 27, 57, 75, 98, 50, 148, 160, + 148, 108, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2707, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15496350185298445322" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bee5995bbcbb9bbbef89" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c01447" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3da3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12117019146617168021" + } + }, + { + "_tag": "ByteArray", + "bytearray": "780112ca7484" + }, + { + "_tag": "ByteArray", + "bytearray": "fc58624f" + }, + { + "_tag": "ByteArray", + "bytearray": "34718ddf140cffb380223c" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5454465012098713080" + } + }, + { + "_tag": "ByteArray", + "bytearray": "097df68aa780a5c0d5" + }, + { + "_tag": "ByteArray", + "bytearray": "6e602a" + } + ] + }, + "cborHex": "d8669f1bd70e1863edc5c40a9f9f9f4abee5995bbcbb9bbbef89ff43c01447ff9f9f423da31ba8284cb712b9209546780112ca748444fc58624f4b34718ddf140cffb380223cffff1b4bb227078df0c5f849097df68aa780a5c0d5436e602affff", + "cborBytes": [ + 216, 102, 159, 27, 215, 14, 24, 99, 237, 197, 196, 10, 159, 159, 159, 74, 190, 229, 153, 91, 188, 187, 155, 187, + 239, 137, 255, 67, 192, 20, 71, 255, 159, 159, 66, 61, 163, 27, 168, 40, 76, 183, 18, 185, 32, 149, 70, 120, 1, + 18, 202, 116, 132, 68, 252, 88, 98, 79, 75, 52, 113, 141, 223, 20, 12, 255, 179, 128, 34, 60, 255, 255, 27, 75, + 178, 39, 7, 141, 240, 197, 248, 73, 9, 125, 246, 138, 167, 128, 165, 192, 213, 67, 110, 96, 42, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2708, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13175989813151870833" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11088009266959336658" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f5c6f9ca60fe9a821774faf" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e9e09eb1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4171776569635789636" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1560072084043317785" + } + } + ] + }, + "cborHex": "d8669f1bb6da84ecf9152f719f9f1b99e085ae7759c4d24c6f5c6f9ca60fe9a821774faf9f44e9e09eb11b39e520afe3705b44ffff1b15a67d4b7967c219ffff", + "cborBytes": [ + 216, 102, 159, 27, 182, 218, 132, 236, 249, 21, 47, 113, 159, 159, 27, 153, 224, 133, 174, 119, 89, 196, 210, 76, + 111, 92, 111, 156, 166, 15, 233, 168, 33, 119, 79, 175, 159, 68, 233, 224, 158, 177, 27, 57, 229, 32, 175, 227, + 112, 91, 68, 255, 255, 27, 21, 166, 125, 75, 121, 103, 194, 25, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2709, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11696084357587909056" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2866958287319131607" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2675293873269918679" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "195267581169961186" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5415440118726662507" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2937849286581805463" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13791973201422051780" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "578e1b43" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7993451130309576297" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11707113789917689748" + } + }, + { + "_tag": "ByteArray", + "bytearray": "83f0f7b1c9be62a2" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7d62d971e3e0c5" + }, + { + "_tag": "ByteArray", + "bytearray": "ece21359032ad5f7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12930892770328185739" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "55" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6327430776787927345" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9612085574002647887" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1633792502403650739" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5072473207417195937" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16947126697019428038" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "220a61f1e51fa243" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8184024" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55e2c5c95c7da315dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc4d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67553a2417a2d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f23b7838cadee389851e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed74" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1778040249425010648" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffd78d47" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e300f284b583793c77acb5" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e7b5fa" + } + ] + }, + "cborHex": "d8669f1ba250d6c13507b9c09fd8669f1b27c97b5f5d84e5d780ffbf1b25208d9a7a084bd71b02b5bad49bc908e21b4b278218831a196b1b28c5565c5a57e1971bbf66ee8dbe77e9c444578e1b43ff9f9f1b6eee7173af8c06691ba27805f7091ef7944883f0f7b1c9be62a2ff477d62d971e3e0c548ece21359032ad5f7d8669f1bb373c276bc140b8b9f4155ffffd8669f1b57cf8cc46f5181319f1b8564fce70d15a34f1b16ac659fee7754b31b46650b81ccc9cda11beb3049f0f361ccc6ffffffbf48220a61f1e51fa24344e81840244955e2c5c95c7da315dc42fc4d4767553a2417a2d24af23b7838cadee389851e42ed741b18acde2fb7531fd844ffd78d474be300f284b583793c77acb5ff43e7b5faffff", + "cborBytes": [ + 216, 102, 159, 27, 162, 80, 214, 193, 53, 7, 185, 192, 159, 216, 102, 159, 27, 39, 201, 123, 95, 93, 132, 229, + 215, 128, 255, 191, 27, 37, 32, 141, 154, 122, 8, 75, 215, 27, 2, 181, 186, 212, 155, 201, 8, 226, 27, 75, 39, + 130, 24, 131, 26, 25, 107, 27, 40, 197, 86, 92, 90, 87, 225, 151, 27, 191, 102, 238, 141, 190, 119, 233, 196, 68, + 87, 142, 27, 67, 255, 159, 159, 27, 110, 238, 113, 115, 175, 140, 6, 105, 27, 162, 120, 5, 247, 9, 30, 247, 148, + 72, 131, 240, 247, 177, 201, 190, 98, 162, 255, 71, 125, 98, 217, 113, 227, 224, 197, 72, 236, 226, 19, 89, 3, 42, + 213, 247, 216, 102, 159, 27, 179, 115, 194, 118, 188, 20, 11, 139, 159, 65, 85, 255, 255, 216, 102, 159, 27, 87, + 207, 140, 196, 111, 81, 129, 49, 159, 27, 133, 100, 252, 231, 13, 21, 163, 79, 27, 22, 172, 101, 159, 238, 119, + 84, 179, 27, 70, 101, 11, 129, 204, 201, 205, 161, 27, 235, 48, 73, 240, 243, 97, 204, 198, 255, 255, 255, 191, + 72, 34, 10, 97, 241, 229, 31, 162, 67, 68, 232, 24, 64, 36, 73, 85, 226, 197, 201, 92, 125, 163, 21, 220, 66, 252, + 77, 71, 103, 85, 58, 36, 23, 162, 210, 74, 242, 59, 120, 56, 202, 222, 227, 137, 133, 30, 66, 237, 116, 27, 24, + 172, 222, 47, 183, 83, 31, 216, 68, 255, 215, 141, 71, 75, 227, 0, 242, 132, 181, 131, 121, 60, 119, 172, 181, + 255, 67, 231, 181, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2710, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13656638915835330526" + }, + "fields": [] + }, + "cborHex": "d8669f1bbd8620bcec23ffde80ff", + "cborBytes": [216, 102, 159, 27, 189, 134, 32, 188, 236, 35, 255, 222, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2711, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + ] + }, + "cborHex": "d9050c9f1bfffffffffffffff7ff", + "cborBytes": [217, 5, 12, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2712, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "69fe" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0641302c776a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "320303350372724366" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ff200a625191f1b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6421594180901268354" + } + } + } + ] + } + ] + }, + "cborHex": "d905039f4269febf460641302c776a1b0471f2333b556e8e483ff200a625191f1b1b591e15e26c55eb82ffff", + "cborBytes": [ + 217, 5, 3, 159, 66, 105, 254, 191, 70, 6, 65, 48, 44, 119, 106, 27, 4, 113, 242, 51, 59, 85, 110, 142, 72, 63, + 242, 0, 166, 37, 25, 31, 27, 27, 89, 30, 21, 226, 108, 85, 235, 130, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2713, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14349673707667153660" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "264d" + } + ] + }, + "cborHex": "d8669f1bc7244835944362fc9f42264dffff", + "cborBytes": [216, 102, 159, 27, 199, 36, 72, 53, 148, 67, 98, 252, 159, 66, 38, 77, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2714, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12346721991817032822" + }, + "fields": [] + }, + "cborHex": "d8669f1bab585e3c5ec1f47680ff", + "cborBytes": [216, 102, 159, 27, 171, 88, 94, 60, 94, 193, 244, 118, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2715, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4648305180874956514" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73d502" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "538ca1b47080b14355ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf1df148" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da3ad5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe0974aa" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b408218ef29a8dee29fbf104373d5024a538ca1b47080b14355ea44bf1df14843da3ad544fe0974aaffffff", + "cborBytes": [ + 216, 102, 159, 27, 64, 130, 24, 239, 41, 168, 222, 226, 159, 191, 16, 67, 115, 213, 2, 74, 83, 140, 161, 180, 112, + 128, 177, 67, 85, 234, 68, 191, 29, 241, 72, 67, 218, 58, 213, 68, 254, 9, 116, 170, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2716, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8022957803779084345" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9451b2fc0e1336" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6438804139128479879" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1600" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14010840833276250149" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15103337792055220125" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12991056307239128180" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11595686775081588861" + } + }, + { + "_tag": "ByteArray", + "bytearray": "76d88f8e66" + }, + { + "_tag": "ByteArray", + "bytearray": "e2ca1a5dcbd75465769605" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10735356912353751652" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17531758061214357926" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "86df731dad72489a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "928648022350095050" + } + }, + { + "_tag": "ByteArray", + "bytearray": "51ba37091b7040149a" + }, + { + "_tag": "ByteArray", + "bytearray": "0373e69689" + }, + { + "_tag": "ByteArray", + "bytearray": "6afc3bdf" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b6f57459d763350399f479451b2fc0e1336d8669f1bfffffffffffffff59f9f121b595b3a4013116087421600ffd8669f1bc270818157f8082580ff1bd199d5b3722f179dd8669f1bb44980e1c2160c749f1ba0ec27af736ed87d4576d88f8e664be2ca1a5dcbd754657696051b94fba63bc1e132641bf34d5111c6c5d9a6ffff9f4886df731dad72489a1b0ce33874c58be2ca4951ba37091b7040149a450373e69689446afc3bdfffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 111, 87, 69, 157, 118, 51, 80, 57, 159, 71, 148, 81, 178, 252, 14, 19, 54, 216, 102, 159, 27, + 255, 255, 255, 255, 255, 255, 255, 245, 159, 159, 18, 27, 89, 91, 58, 64, 19, 17, 96, 135, 66, 22, 0, 255, 216, + 102, 159, 27, 194, 112, 129, 129, 87, 248, 8, 37, 128, 255, 27, 209, 153, 213, 179, 114, 47, 23, 157, 216, 102, + 159, 27, 180, 73, 128, 225, 194, 22, 12, 116, 159, 27, 160, 236, 39, 175, 115, 110, 216, 125, 69, 118, 216, 143, + 142, 102, 75, 226, 202, 26, 93, 203, 215, 84, 101, 118, 150, 5, 27, 148, 251, 166, 59, 193, 225, 50, 100, 27, 243, + 77, 81, 17, 198, 197, 217, 166, 255, 255, 159, 72, 134, 223, 115, 29, 173, 114, 72, 154, 27, 12, 227, 56, 116, + 197, 139, 226, 202, 73, 81, 186, 55, 9, 27, 112, 64, 20, 154, 69, 3, 115, 230, 150, 137, 68, 106, 252, 59, 223, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2717, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13385220133182179769" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5620733186519465987" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7218615238162012252" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16803917768625726273" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c09671d5193de6bb7" + }, + { + "_tag": "ByteArray", + "bytearray": "d87b2aeda3dcb8737940a3" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2677408006f3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11501866206568845681" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "70cd" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22f6e40c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11587035368669931306" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4634bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b37d67504fc05b03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9353ca3a63c22655f68" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15691662950088118263" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cea7efd76f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7917358574189525479" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a0ba99682" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2999293267858746132" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9495595cbe8a7c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16369821733303133620" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b433d741b778" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12387162854623831975" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10268022824739275191" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14260814619033348423" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17871723661334392245" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4a944a31ccbf0414bcb5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5516048032886144186" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "86c217fcfd31" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15284143146930292716" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de99b672b871eb2cb98e39" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9848887821943608134" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a223" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2712156084778172328" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ed099f41b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5590393030341889382" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d0eff6bffb8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17706621263574409232" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9943752065856805610" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f813" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df64e745c3218aea2ec02e" + } + } + ] + } + ] + }, + "cborHex": "d87f9fd8669f1bb9c1dacb0ebb09b99f9f1b4e00db0d9fbe00031b642dac5030de585c1be933822df9cfa341490c09671d5193de6bb74bd87b2aeda3dcb8737940a3ff462677408006f3ffff9f1b9f9ed660189b1171ff4270cd9fbf4422f6e40c1ba0cd6b46ed75672a434634bc48b37d67504fc05b034ab9353ca3a63c22655f681bd9c3fc50ab290ff745cea7efd76f1b6de01bacddf5b9e7ffbf452a0ba996821b299fa1560ff0eb14479495595cbe8a7c1be32d4a22aa00a5b446b433d741b7781babe80afc7cc467a7ffbf1b8e7f585b563001b741391bc5e89756c72e29471bf8051dfb45c7adb54bf4a944a31ccbf0414bcb5c1b4c8cf075ec2bbcbaff4686c217fcfd31d8669f1bd41c2f36990047ec9f4bde99b672b871eb2cb98e391b88ae474adb9e934642a2231b25a38396e89dffa8ffffffbf454ed099f41b1b4d9510d788590d66469d0eff6bffb81bf5ba8e39bbbb201041dd1b89ff4dd1d3f39aea42f8134bdf64e745c3218aea2ec02effff", + "cborBytes": [ + 216, 127, 159, 216, 102, 159, 27, 185, 193, 218, 203, 14, 187, 9, 185, 159, 159, 27, 78, 0, 219, 13, 159, 190, 0, + 3, 27, 100, 45, 172, 80, 48, 222, 88, 92, 27, 233, 51, 130, 45, 249, 207, 163, 65, 73, 12, 9, 103, 29, 81, 147, + 222, 107, 183, 75, 216, 123, 42, 237, 163, 220, 184, 115, 121, 64, 163, 255, 70, 38, 119, 64, 128, 6, 243, 255, + 255, 159, 27, 159, 158, 214, 96, 24, 155, 17, 113, 255, 66, 112, 205, 159, 191, 68, 34, 246, 228, 12, 27, 160, + 205, 107, 70, 237, 117, 103, 42, 67, 70, 52, 188, 72, 179, 125, 103, 80, 79, 192, 91, 3, 74, 185, 53, 60, 163, + 166, 60, 34, 101, 95, 104, 27, 217, 195, 252, 80, 171, 41, 15, 247, 69, 206, 167, 239, 215, 111, 27, 109, 224, 27, + 172, 221, 245, 185, 231, 255, 191, 69, 42, 11, 169, 150, 130, 27, 41, 159, 161, 86, 15, 240, 235, 20, 71, 148, + 149, 89, 92, 190, 138, 124, 27, 227, 45, 74, 34, 170, 0, 165, 180, 70, 180, 51, 215, 65, 183, 120, 27, 171, 232, + 10, 252, 124, 196, 103, 167, 255, 191, 27, 142, 127, 88, 91, 86, 48, 1, 183, 65, 57, 27, 197, 232, 151, 86, 199, + 46, 41, 71, 27, 248, 5, 29, 251, 69, 199, 173, 181, 75, 244, 169, 68, 163, 28, 203, 240, 65, 75, 203, 92, 27, 76, + 140, 240, 117, 236, 43, 188, 186, 255, 70, 134, 194, 23, 252, 253, 49, 216, 102, 159, 27, 212, 28, 47, 54, 153, 0, + 71, 236, 159, 75, 222, 153, 182, 114, 184, 113, 235, 44, 185, 142, 57, 27, 136, 174, 71, 74, 219, 158, 147, 70, + 66, 162, 35, 27, 37, 163, 131, 150, 232, 157, 255, 168, 255, 255, 255, 191, 69, 78, 208, 153, 244, 27, 27, 77, + 149, 16, 215, 136, 89, 13, 102, 70, 157, 14, 255, 107, 255, 184, 27, 245, 186, 142, 57, 187, 187, 32, 16, 65, 221, + 27, 137, 255, 77, 209, 211, 243, 154, 234, 66, 248, 19, 75, 223, 100, 231, 69, 195, 33, 138, 234, 46, 192, 46, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2718, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5667744382288272112" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07bcff" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8397232267773268757" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1250979023098694051" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "afdb3c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1087137745003243910" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "645d2036" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10218775028713641047" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2543287854917559531" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10430834327911211706" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a6f8f7f867f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16991647244092222423" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15948535721516702570" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18177723559221430818" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6724657195590226082" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6808118141766111763" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3591064753526575415" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12398955067699760234" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15728857613649978610" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "beea6a91" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14337366661465128826" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "70658b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12601483090581300196" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d4d7f4ff76a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ee3858964a9" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b4ea7df7c98021af09f4307bcffd8799f9f1b7488f641d112d315ff1b115c5ecb254349a39f43afdb3cffbf1b0f164a04e8d6698644645d20361b8dd061bf4a1bd4571b234b92d441ed24eb1b90c1c48e6a1922ba467a6f8f7f867f1bebce752494dcabd71bdd5494bd60a19b6a1bfc443f4474a48a221b5d52c817336e10a2ffbf1b5e7b4b6104dc92131b31d6065df76091371bac11eff10c460c6a1bda4820aa204e24f244beea6a911bc6f88f0417283f7affff4370658b1baee1761af930a3e4bf467d4d7f4ff76a465ee3858964a9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 78, 167, 223, 124, 152, 2, 26, 240, 159, 67, 7, 188, 255, 216, 121, 159, 159, 27, 116, 136, + 246, 65, 209, 18, 211, 21, 255, 27, 17, 92, 94, 203, 37, 67, 73, 163, 159, 67, 175, 219, 60, 255, 191, 27, 15, 22, + 74, 4, 232, 214, 105, 134, 68, 100, 93, 32, 54, 27, 141, 208, 97, 191, 74, 27, 212, 87, 27, 35, 75, 146, 212, 65, + 237, 36, 235, 27, 144, 193, 196, 142, 106, 25, 34, 186, 70, 122, 111, 143, 127, 134, 127, 27, 235, 206, 117, 36, + 148, 220, 171, 215, 27, 221, 84, 148, 189, 96, 161, 155, 106, 27, 252, 68, 63, 68, 116, 164, 138, 34, 27, 93, 82, + 200, 23, 51, 110, 16, 162, 255, 191, 27, 94, 123, 75, 97, 4, 220, 146, 19, 27, 49, 214, 6, 93, 247, 96, 145, 55, + 27, 172, 17, 239, 241, 12, 70, 12, 106, 27, 218, 72, 32, 170, 32, 78, 36, 242, 68, 190, 234, 106, 145, 27, 198, + 248, 143, 4, 23, 40, 63, 122, 255, 255, 67, 112, 101, 139, 27, 174, 225, 118, 26, 249, 48, 163, 228, 191, 70, 125, + 77, 127, 79, 247, 106, 70, 94, 227, 133, 137, 100, 169, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2719, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6451f81309" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b43139ad571d584c7c" + } + } + ] + } + ] + }, + "cborHex": "d905099fbf456451f8130949b43139ad571d584c7cffff", + "cborBytes": [217, 5, 9, 159, 191, 69, 100, 81, 248, 19, 9, 73, 180, 49, 57, 173, 87, 29, 88, 76, 124, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2720, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6342638349059463412" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16278971259069381160" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5303177203573641921" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15803195765877176231" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2cb09fafecad1d0946f4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "598c052939e63dfd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b9a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "148a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "919d7878b7757d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd20" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41339623a4" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99fd8669f1b580593f9467598f49fd8669f1be1ea861c459fba2880ffbf1b4998ab91b7f4d2c11bdb503ad1f510f7a7ffffffbf4a2cb09fafecad1d0946f4414848598c052939e63dfd423b9a416642148a47919d7878b7757d41fa42dd204541339623a4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 216, 102, 159, 27, 88, 5, 147, 249, 70, 117, 152, + 244, 159, 216, 102, 159, 27, 225, 234, 134, 28, 69, 159, 186, 40, 128, 255, 191, 27, 73, 152, 171, 145, 183, 244, + 210, 193, 27, 219, 80, 58, 209, 245, 16, 247, 167, 255, 255, 255, 191, 74, 44, 176, 159, 175, 236, 173, 29, 9, 70, + 244, 65, 72, 72, 89, 140, 5, 41, 57, 230, 61, 253, 66, 59, 154, 65, 102, 66, 20, 138, 71, 145, 157, 120, 120, 183, + 117, 125, 65, 250, 66, 221, 32, 69, 65, 51, 150, 35, 164, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2721, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10985665970004867761" + }, + "fields": [] + }, + "cborHex": "d8669f1b9874ecfec33cbab180ff", + "cborBytes": [216, 102, 159, 27, 152, 116, 236, 254, 195, 60, 186, 177, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2722, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "356328523906219278" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4521161486738276269" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16136317154203308074" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14069811402012024914" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5641549346831014391" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6073699106344865107" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17293583739355846596" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16024422466196267051" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17783244274045513250" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7707efd024" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b04f1eee792c4fd0e9fd8669f1b3ebe646b05363fad9fbf1bdfefb6f53754902a1bc34202ecd1aae052419c1b4e4acf3da0b319f7ff801b544a1d284a4b0d53ffffbf1befff26c91dc6d7c41bde622f54fc6ae02b1bf6cac672947b6e22457707efd024ffffff", + "cborBytes": [ + 216, 102, 159, 27, 4, 241, 238, 231, 146, 196, 253, 14, 159, 216, 102, 159, 27, 62, 190, 100, 107, 5, 54, 63, 173, + 159, 191, 27, 223, 239, 182, 245, 55, 84, 144, 42, 27, 195, 66, 2, 236, 209, 170, 224, 82, 65, 156, 27, 78, 74, + 207, 61, 160, 179, 25, 247, 255, 128, 27, 84, 74, 29, 40, 74, 75, 13, 83, 255, 255, 191, 27, 239, 255, 38, 201, + 29, 198, 215, 196, 27, 222, 98, 47, 84, 252, 106, 224, 43, 27, 246, 202, 198, 114, 148, 123, 110, 34, 69, 119, 7, + 239, 208, 36, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2723, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16833144855428800542" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9720392090600327797" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af3f2a53c23acaf422d20884" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12874474848231265645" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1709793374393107307" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5285771025668510940" + } + }, + { + "_tag": "ByteArray", + "bytearray": "25de14c9" + }, + { + "_tag": "ByteArray", + "bytearray": "515250c4b0336b696793" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6712053527277116575" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9028713941734022831" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f1445675e344e41d57" + } + ] + }, + "cborHex": "d905019fd8669f1be99b580f6887201e9f9f1b86e5c51b05bfca754caf3f2a53c23acaf422d208841bb2ab52a99e86956dffffff9f1b17ba6803e004836b9f1b495ad4be1d0614dc4425de14c94a515250c4b0336b6967931b5d26011efec29c9fffff1b7d4c6f7e6bac5eaf49f1445675e344e41d57ff", + "cborBytes": [ + 217, 5, 1, 159, 216, 102, 159, 27, 233, 155, 88, 15, 104, 135, 32, 30, 159, 159, 27, 134, 229, 197, 27, 5, 191, + 202, 117, 76, 175, 63, 42, 83, 194, 58, 202, 244, 34, 210, 8, 132, 27, 178, 171, 82, 169, 158, 134, 149, 109, 255, + 255, 255, 159, 27, 23, 186, 104, 3, 224, 4, 131, 107, 159, 27, 73, 90, 212, 190, 29, 6, 20, 220, 68, 37, 222, 20, + 201, 74, 81, 82, 80, 196, 176, 51, 107, 105, 103, 147, 27, 93, 38, 1, 30, 254, 194, 156, 159, 255, 255, 27, 125, + 76, 111, 126, 107, 172, 94, 175, 73, 241, 68, 86, 117, 227, 68, 228, 29, 87, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2724, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13018630873580938168" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10583105477142860388" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11456113069920382855" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e8f9" + }, + { + "_tag": "ByteArray", + "bytearray": "5cf74bfbf5a3861c95" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1991488504552346300" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40ab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7938917865118075681" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14890142248800441052" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce303817f2ad1c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15806853763386213706" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b85778466ac87d99246241" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15990356562073418964" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8350077585425322369" + } + } + } + ] + } + ] + }, + "cborHex": "d8799fd8669f1bb4ab77cdc9b9a3b880ffd8669f1b92debe5c199752649f1b9efc4a23d7506f8742e8f9495cf74bfbf5a3861c95ffffbf1b1ba3303e581dd2bc4240ab1b6e2cb3bc735d8b2141cc1bcea4697be2c952dc47ce303817f2ad1c1bdb5d39bfdf2e854a4bb85778466ac87d992462411bdde928929a38fcd41b73e16f52c63a5181ffff", + "cborBytes": [ + 216, 121, 159, 216, 102, 159, 27, 180, 171, 119, 205, 201, 185, 163, 184, 128, 255, 216, 102, 159, 27, 146, 222, + 190, 92, 25, 151, 82, 100, 159, 27, 158, 252, 74, 35, 215, 80, 111, 135, 66, 232, 249, 73, 92, 247, 75, 251, 245, + 163, 134, 28, 149, 255, 255, 191, 27, 27, 163, 48, 62, 88, 29, 210, 188, 66, 64, 171, 27, 110, 44, 179, 188, 115, + 93, 139, 33, 65, 204, 27, 206, 164, 105, 123, 226, 201, 82, 220, 71, 206, 48, 56, 23, 242, 173, 28, 27, 219, 93, + 57, 191, 223, 46, 133, 74, 75, 184, 87, 120, 70, 106, 200, 125, 153, 36, 98, 65, 27, 221, 233, 40, 146, 154, 56, + 252, 212, 27, 115, 225, 111, 82, 198, 58, 81, 129, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2725, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15533185200755174742" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7d6a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6022678510986745241" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "538747538104571677" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f0e5056245f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15145763314142168688" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6700451299617723036" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15481201311665005003" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6b4e90bbbd4d4140" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2665288688251540924" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3053694358733735825" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef01564f8c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4779270130203383915" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9864582012786873043" + } + } + ] + }, + "cborHex": "d8669f1bd790f5a4495ded569f9f427d6aff9f1b5394da323bbe55999f1b077a04081056d71d464f0e5056245f1bd2308f7d0f964670ff9f1b5cfcc8f4dc84d29c1bd6d84691ee1aa1cb486b4e90bbbd4d4140ff1b24fd01f0cf1995bc1b2a60e6d710f04791ffbf45ef01564f8c1b425360dc9c68586bff1b88e6091369de92d3ffff", + "cborBytes": [ + 216, 102, 159, 27, 215, 144, 245, 164, 73, 93, 237, 86, 159, 159, 66, 125, 106, 255, 159, 27, 83, 148, 218, 50, + 59, 190, 85, 153, 159, 27, 7, 122, 4, 8, 16, 86, 215, 29, 70, 79, 14, 80, 86, 36, 95, 27, 210, 48, 143, 125, 15, + 150, 70, 112, 255, 159, 27, 92, 252, 200, 244, 220, 132, 210, 156, 27, 214, 216, 70, 145, 238, 26, 161, 203, 72, + 107, 78, 144, 187, 189, 77, 65, 64, 255, 27, 36, 253, 1, 240, 207, 25, 149, 188, 27, 42, 96, 230, 215, 16, 240, + 71, 145, 255, 191, 69, 239, 1, 86, 79, 140, 27, 66, 83, 96, 220, 156, 104, 88, 107, 255, 27, 136, 230, 9, 19, 105, + 222, 146, 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2726, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5586389289683784663" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3452724825799455575" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "de1c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3579973015023984174" + } + } + ] + } + ] + }, + "cborHex": "d87c9f9f1b4d86d77604a613d7ff1b2fea8aef8cf2f3579f9f42de1cff1b31ae9e7d59fd1e2effff", + "cborBytes": [ + 216, 124, 159, 159, 27, 77, 134, 215, 118, 4, 166, 19, 215, 255, 27, 47, 234, 138, 239, 140, 242, 243, 87, 159, + 159, 66, 222, 28, 255, 27, 49, 174, 158, 125, 89, 253, 30, 46, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2727, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17441952430328122185" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "27" + } + ] + }, + "cborHex": "d8669f1bf20e4352eef80b499f4127ffff", + "cborBytes": [216, 102, 159, 27, 242, 14, 67, 82, 238, 248, 11, 73, 159, 65, 39, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2728, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79f0f021bffffffffffffffedffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 15, 2, 27, 255, 255, 255, 255, 255, 255, 255, 237, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2729, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8254f872c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9eba4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "948fac355913" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7fb9cb4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba061d0d2cc4c54ba1947129" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5584578653784112455" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb33ddd2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d57b85263763da3752" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d86479470582" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4491183018099468031" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eaf7d67fa9f78a0a94920e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e34ecc75b75c85e8d756e" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3571557325143091116" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2176448855021387643" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10443325128672582164" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9e644ed0a71f28cb54f7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1732828429824451323" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12506626985412267832" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1202841633155351701" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11381726702403768264" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1566895500377667673" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10836222100207521440" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6137741236311144237" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "898747" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12155178176790484522" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2982540486065085942" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905079fbf458254f872c243d9eba446948fac35591344e7fb9cb44cba061d0d2cc4c54ba19471291b4d8068b27f07fd4744bb33ddd249d57b85263763da375246d864794705821b3e53e328df15e6ff4beaf7d67fa9f78a0a94920e4b7e34ecc75b75c85e8d756effd8669f1b3190b876dc1927ac9f1b1e344cb3cb5aff7b1b90ee24df98709a14ffff4a9e644ed0a71f28cb54f7d8669f1b180c3e46a86262fb9fd8669f1bad9076faf3d00f389f1b10b15a17a94684951b9df40422035acfc8ffffbf1b15bebb27e42b38591b9661fe965e1b4ea01b552da322a197b72d438987471ba8afde26a12d562a1b29641cc518215df6ffffffff", + "cborBytes": [ + 217, 5, 7, 159, 191, 69, 130, 84, 248, 114, 194, 67, 217, 235, 164, 70, 148, 143, 172, 53, 89, 19, 68, 231, 251, + 156, 180, 76, 186, 6, 29, 13, 44, 196, 197, 75, 161, 148, 113, 41, 27, 77, 128, 104, 178, 127, 7, 253, 71, 68, + 187, 51, 221, 210, 73, 213, 123, 133, 38, 55, 99, 218, 55, 82, 70, 216, 100, 121, 71, 5, 130, 27, 62, 83, 227, 40, + 223, 21, 230, 255, 75, 234, 247, 214, 127, 169, 247, 138, 10, 148, 146, 14, 75, 126, 52, 236, 199, 91, 117, 200, + 94, 141, 117, 110, 255, 216, 102, 159, 27, 49, 144, 184, 118, 220, 25, 39, 172, 159, 27, 30, 52, 76, 179, 203, 90, + 255, 123, 27, 144, 238, 36, 223, 152, 112, 154, 20, 255, 255, 74, 158, 100, 78, 208, 167, 31, 40, 203, 84, 247, + 216, 102, 159, 27, 24, 12, 62, 70, 168, 98, 98, 251, 159, 216, 102, 159, 27, 173, 144, 118, 250, 243, 208, 15, 56, + 159, 27, 16, 177, 90, 23, 169, 70, 132, 149, 27, 157, 244, 4, 34, 3, 90, 207, 200, 255, 255, 191, 27, 21, 190, + 187, 39, 228, 43, 56, 89, 27, 150, 97, 254, 150, 94, 27, 78, 160, 27, 85, 45, 163, 34, 161, 151, 183, 45, 67, 137, + 135, 71, 27, 168, 175, 222, 38, 161, 45, 86, 42, 27, 41, 100, 28, 197, 24, 33, 93, 246, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2730, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + }, + "cborHex": "d905049f13ff", + "cborBytes": [217, 5, 4, 159, 19, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2731, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1a8f99a2a623871e1d" + } + ] + }, + "cborHex": "d905029f491a8f99a2a623871e1dff", + "cborBytes": [217, 5, 2, 159, 73, 26, 143, 153, 162, 166, 35, 135, 30, 29, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2732, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17003468906601729834" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0507c0e5d6" + } + ] + }, + "cborHex": "d8669f1bebf874e1df654f2a9f450507c0e5d6ffff", + "cborBytes": [216, 102, 159, 27, 235, 248, 116, 225, 223, 101, 79, 42, 159, 69, 5, 7, 192, 229, 214, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2733, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14629943084835864266" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "242948527585511766" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ff9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a25247" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "700e2f788217679e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7387373979181056250" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb910e61af4502" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40e9ba75" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bcb07ffb90fd2feca9f1b035f20660d704956bf424ff943a2524748700e2f788217679e1b6685397e7c0d00fa47bb910e61af45024440e9ba75ffffff", + "cborBytes": [ + 216, 102, 159, 27, 203, 7, 255, 185, 15, 210, 254, 202, 159, 27, 3, 95, 32, 102, 13, 112, 73, 86, 191, 66, 79, + 249, 67, 162, 82, 71, 72, 112, 14, 47, 120, 130, 23, 103, 158, 27, 102, 133, 57, 126, 124, 13, 0, 250, 71, 187, + 145, 14, 97, 175, 69, 2, 68, 64, 233, 186, 117, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2734, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6429529355819061820" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e634b645" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16670717066378313426" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7485151513063111797" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92f1115623227796e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "341914187f41b8" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4932843739858726569" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18334256956933935557" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6027783896470288291" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3094492738728480278" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "9f001be3e3c42930" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f1b593a46e24e8a923c44e634b645d8669f1be75a48d8bc857ed29fbf418d1b67e099a4a21abc754992f1115623227796e547341914187f41b8ff1b4474fb3efec9eea9ffff41f1d8669f1bfe705d9032c811c59f1b53a6fd846bee77a3d8669f1b2af1d8c023efce1680ff489f001be3e3c42930ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 89, 58, 70, 226, 78, 138, 146, 60, 68, 230, + 52, 182, 69, 216, 102, 159, 27, 231, 90, 72, 216, 188, 133, 126, 210, 159, 191, 65, 141, 27, 103, 224, 153, 164, + 162, 26, 188, 117, 73, 146, 241, 17, 86, 35, 34, 119, 150, 229, 71, 52, 25, 20, 24, 127, 65, 184, 255, 27, 68, + 116, 251, 62, 254, 201, 238, 169, 255, 255, 65, 241, 216, 102, 159, 27, 254, 112, 93, 144, 50, 200, 17, 197, 159, + 27, 83, 166, 253, 132, 107, 238, 119, 163, 216, 102, 159, 27, 42, 241, 216, 192, 35, 239, 206, 22, 128, 255, 72, + 159, 0, 27, 227, 227, 196, 41, 48, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2735, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1380338313652977978" + }, + "fields": [] + }, + "cborHex": "d8669f1b1327f2620725c13a80ff", + "cborBytes": [216, 102, 159, 27, 19, 39, 242, 98, 7, 37, 193, 58, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2736, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8632979567765565286" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12564708226437570607" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14389450085285607054" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "52" + }, + { + "_tag": "ByteArray", + "bytearray": "b4ba2e19377b56" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6856633363163660049" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5bf04076" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15162009610758833548" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2445095024810820983" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8cd955da4c9bd3f1f12ccce6" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5110393783697704889" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10082599449933560225" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10443919900281815074" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14847237803060067198" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4352905410615350618" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b3ef1411231bccf" + }, + { + "_tag": "ByteArray", + "bytearray": "384e87b39eb44ad4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7685963376655786185" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3452446211015846036" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10335100219473810997" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f2" + }, + { + "_tag": "ByteArray", + "bytearray": "83cdc3a2" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17730879604230126685" + } + } + ] + }, + "cborHex": "d87c9f1b77ce812d69df2f661bae5ecf8faf3d602fd8669f1bc7b1989d2ea9b68e9f415247b4ba2e19377b56ffffd8669f1b5f27a7b73e763f119f9f445bf040761bd26a4768c256c58c1b21eeb8f86bec85774c8cd955da4c9bd3f1f12ccce6ff9f1b46ebc411fbaa87b91b8bec96c7a1d6b9a11b90f041d0a6ee4022ff1bce0bfc1e2b257b7e9f1b3c68a068849a955a484b3ef1411231bccf48384e87b39eb44ad41b6aaa06f8163ae0c91b2fe98d897dbe2894ffd8669f1b8f6da6e453cc56359f41f24483cdc3a2ffffffff1bf610bd0ecd5afc5dff", + "cborBytes": [ + 216, 124, 159, 27, 119, 206, 129, 45, 105, 223, 47, 102, 27, 174, 94, 207, 143, 175, 61, 96, 47, 216, 102, 159, + 27, 199, 177, 152, 157, 46, 169, 182, 142, 159, 65, 82, 71, 180, 186, 46, 25, 55, 123, 86, 255, 255, 216, 102, + 159, 27, 95, 39, 167, 183, 62, 118, 63, 17, 159, 159, 68, 91, 240, 64, 118, 27, 210, 106, 71, 104, 194, 86, 197, + 140, 27, 33, 238, 184, 248, 107, 236, 133, 119, 76, 140, 217, 85, 218, 76, 155, 211, 241, 241, 44, 204, 230, 255, + 159, 27, 70, 235, 196, 17, 251, 170, 135, 185, 27, 139, 236, 150, 199, 161, 214, 185, 161, 27, 144, 240, 65, 208, + 166, 238, 64, 34, 255, 27, 206, 11, 252, 30, 43, 37, 123, 126, 159, 27, 60, 104, 160, 104, 132, 154, 149, 90, 72, + 75, 62, 241, 65, 18, 49, 188, 207, 72, 56, 78, 135, 179, 158, 180, 74, 212, 27, 106, 170, 6, 248, 22, 58, 224, + 201, 27, 47, 233, 141, 137, 125, 190, 40, 148, 255, 216, 102, 159, 27, 143, 109, 166, 228, 83, 204, 86, 53, 159, + 65, 242, 68, 131, 205, 195, 162, 255, 255, 255, 255, 27, 246, 16, 189, 14, 205, 90, 252, 93, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2737, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "11f569" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1725634151275642976" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12752479947781063609" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f9f4311f5691b17f2af1e27114060ff1bb0f9e8f26cc843b9ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 159, 67, 17, 245, 105, 27, 23, 242, 175, 30, 39, + 17, 64, 96, 255, 27, 176, 249, 232, 242, 108, 200, 67, 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2738, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7508102057905571631" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8777521505825594173" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4cd259415021650c6b8453b3" + }, + { + "_tag": "ByteArray", + "bytearray": "be342a40" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8224834840783954083" + } + }, + { + "_tag": "ByteArray", + "bytearray": "503db67a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f50a0438" + }, + { + "_tag": "ByteArray", + "bytearray": "a1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "577ad281" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15019008013432836469" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f463b9e32cff" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f9e425d1a4c4b82" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4404526374061550029" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "685849676298326621" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8242788889957978038" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2365432769868654635" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12113192575461068337" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8735312662846117131" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1866736294872673104" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6832230ac2d7472f9fd8669f1b79d0054de3161b3d9f9f4c4cd259415021650c6b8453b344be342a401b72247bb5ed2f20a344503db67aff44f50a043841a19f44577ad2811bd06e3c36cf68d17546f463b9e32cffffffffbf480f9e425d1a4c4b821b3d200566a9c729cdffbf1b0984a0a59514125d1b726444d2c07b4fb61b20d3b4925416e82b1ba81ab4780c418e311b793a1095ceea150b1b19e7fac51136eb50ffffff", + "cborBytes": [ + 216, 102, 159, 27, 104, 50, 35, 10, 194, 215, 71, 47, 159, 216, 102, 159, 27, 121, 208, 5, 77, 227, 22, 27, 61, + 159, 159, 76, 76, 210, 89, 65, 80, 33, 101, 12, 107, 132, 83, 179, 68, 190, 52, 42, 64, 27, 114, 36, 123, 181, + 237, 47, 32, 163, 68, 80, 61, 182, 122, 255, 68, 245, 10, 4, 56, 65, 161, 159, 68, 87, 122, 210, 129, 27, 208, + 110, 60, 54, 207, 104, 209, 117, 70, 244, 99, 185, 227, 44, 255, 255, 255, 255, 191, 72, 15, 158, 66, 93, 26, 76, + 75, 130, 27, 61, 32, 5, 102, 169, 199, 41, 205, 255, 191, 27, 9, 132, 160, 165, 149, 20, 18, 93, 27, 114, 100, 68, + 210, 192, 123, 79, 182, 27, 32, 211, 180, 146, 84, 22, 232, 43, 27, 168, 26, 180, 120, 12, 65, 142, 49, 27, 121, + 58, 16, 149, 206, 234, 21, 11, 27, 25, 231, 250, 197, 17, 54, 235, 80, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2739, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6071238263102119031" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16421307682972794300" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "69f93c4beb56" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b6cb688e299a0359d4cd2" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2724107837038167032" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11331645279681251401" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12164090948768127259" + } + } + ] + }, + "cborHex": "d8669f1b54415f0892f61c779fd8669f1be3e4345576fc7dbc80ffbf4669f93c4beb564b1b6cb688e299a0359d4cd2ff1b25cdf9a5148483f81b9d421758202208491ba8cf884510de591bffff", + "cborBytes": [ + 216, 102, 159, 27, 84, 65, 95, 8, 146, 246, 28, 119, 159, 216, 102, 159, 27, 227, 228, 52, 85, 118, 252, 125, 188, + 128, 255, 191, 70, 105, 249, 60, 75, 235, 86, 75, 27, 108, 182, 136, 226, 153, 160, 53, 157, 76, 210, 255, 27, 37, + 205, 249, 165, 20, 132, 131, 248, 27, 157, 66, 23, 88, 32, 34, 8, 73, 27, 168, 207, 136, 69, 16, 222, 89, 27, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2740, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3133192129577570955" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c49d9954140b4774a537" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09971c1068" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6533206603162643785" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "105212aa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e1107a8b264df3dfb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30a415b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18ea31" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f34285c0830c78e12f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0104eccc35942eae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d8c4ce50510901b1faa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17880210478214276785" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef6655fa4946" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "298c1f3173c6ff62" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2b7b55a43885528b9f4ac49d9954140b4774a537bf4509971c10681b5aaa9cca89beed4944105212aa494e1107a8b264df3dfb4430a415b14318ea314a8f34285c0830c78e12f0480104eccc35942eae4a9d8c4ce50510901b1faa1bf82344b24f2de6b146ef6655fa494648298c1f3173c6ff62ffffff", + "cborBytes": [ + 216, 102, 159, 27, 43, 123, 85, 164, 56, 133, 82, 139, 159, 74, 196, 157, 153, 84, 20, 11, 71, 116, 165, 55, 191, + 69, 9, 151, 28, 16, 104, 27, 90, 170, 156, 202, 137, 190, 237, 73, 68, 16, 82, 18, 170, 73, 78, 17, 7, 168, 178, + 100, 223, 61, 251, 68, 48, 164, 21, 177, 67, 24, 234, 49, 74, 143, 52, 40, 92, 8, 48, 199, 142, 18, 240, 72, 1, 4, + 236, 204, 53, 148, 46, 174, 74, 157, 140, 76, 229, 5, 16, 144, 27, 31, 170, 27, 248, 35, 68, 178, 79, 45, 230, + 177, 70, 239, 102, 85, 250, 73, 70, 72, 41, 140, 31, 49, 115, 198, 255, 98, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2741, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2310983214050411626" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2831496431530702572" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b201242fd335d846a9f1b274b7f00a82c76eca0ffff", + "cborBytes": [ + 216, 102, 159, 27, 32, 18, 66, 253, 51, 93, 132, 106, 159, 27, 39, 75, 127, 0, 168, 44, 118, 236, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2742, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3687823503982325197" + }, + "fields": [] + }, + "cborHex": "d8669f1b332dc7f01d33edcd80ff", + "cborBytes": [216, 102, 159, 27, 51, 45, 199, 240, 29, 51, 237, 205, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2743, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17941435206054640472" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1413054002055179708" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fec5703dd480ffbdd0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12009509083051029616" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16720926920067782520" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17708615829064167765" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dd" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17421990318573583073" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9702962804626588510" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60edbe889a12a079ff3f1e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "024c1f16" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1343755320298894368" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4405755817104655875" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11062704541891064308" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "382810b437db9d60" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8124782274641257820" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f9f1bf8fcc8431992fb589f1b139c2d20d0f16dbc49fec5703dd480ffbdd01ba6aa58e1c6157470ffd8669f1be80caa7149e817789f1bf5c1a445b33ab15541ddffff9f1bf1c757e39adf7ae1ffff1b86a7d9432698835ebf064b60edbe889a12a079ff3f1e44024c1f1608ffbf1b12a5fa582374f4201b3d246392ada246031b99869f2b0a8471f448382810b437db9d6041b31b70c1066e8d61e55cffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 159, 27, 248, 252, 200, 67, 25, 146, 251, 88, 159, + 27, 19, 156, 45, 32, 208, 241, 109, 188, 73, 254, 197, 112, 61, 212, 128, 255, 189, 208, 27, 166, 170, 88, 225, + 198, 21, 116, 112, 255, 216, 102, 159, 27, 232, 12, 170, 113, 73, 232, 23, 120, 159, 27, 245, 193, 164, 69, 179, + 58, 177, 85, 65, 221, 255, 255, 159, 27, 241, 199, 87, 227, 154, 223, 122, 225, 255, 255, 27, 134, 167, 217, 67, + 38, 152, 131, 94, 191, 6, 75, 96, 237, 190, 136, 154, 18, 160, 121, 255, 63, 30, 68, 2, 76, 31, 22, 8, 255, 191, + 27, 18, 165, 250, 88, 35, 116, 244, 32, 27, 61, 36, 99, 146, 173, 162, 70, 3, 27, 153, 134, 159, 43, 10, 132, 113, + 244, 72, 56, 40, 16, 180, 55, 219, 157, 96, 65, 179, 27, 112, 193, 6, 110, 141, 97, 229, 92, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2744, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10080925504421811971" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2820118378524581482" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2016665488493354004" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8985631942070163336" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7526014146976320830" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b6995e65e507ca9dd722bc6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14294073632081253115" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b40d9cc037fd7c2be4ed81a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4662305155022868692" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9aefbfc70e60cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "acfff7df3e5ad152" + } + ] + }, + "cborHex": "d9050d9f1b8be6a455d23cd7039f1b272312b940821e6aa0d8669f1b1bfca293b86f9c149f1b7cb360a4b57ed7881b6871c5fdfd168d3effff80bf4c1b6995e65e507ca9dd722bc61bc65ec03c317b12fb4c3b40d9cc037fd7c2be4ed81a1b40b3d5d6279c50d4479aefbfc70e60cc4138ffff48acfff7df3e5ad152ff", + "cborBytes": [ + 217, 5, 13, 159, 27, 139, 230, 164, 85, 210, 60, 215, 3, 159, 27, 39, 35, 18, 185, 64, 130, 30, 106, 160, 216, + 102, 159, 27, 27, 252, 162, 147, 184, 111, 156, 20, 159, 27, 124, 179, 96, 164, 181, 126, 215, 136, 27, 104, 113, + 197, 253, 253, 22, 141, 62, 255, 255, 128, 191, 76, 27, 105, 149, 230, 94, 80, 124, 169, 221, 114, 43, 198, 27, + 198, 94, 192, 60, 49, 123, 18, 251, 76, 59, 64, 217, 204, 3, 127, 215, 194, 190, 78, 216, 26, 27, 64, 179, 213, + 214, 39, 156, 80, 212, 71, 154, 239, 191, 199, 14, 96, 204, 65, 56, 255, 255, 72, 172, 255, 247, 223, 62, 90, 209, + 82, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2745, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7956189478413209195" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b6e6a102d4a850e6b9f0413a0ffff", + "cborBytes": [216, 102, 159, 27, 110, 106, 16, 45, 74, 133, 14, 107, 159, 4, 19, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2746, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5338499089939240037" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15765341630742779339" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "56854e54d746e9cfe3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4541" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67ecd4bad94f1f9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8064911327579720025" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd9ed2ae9f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1744798079267730353" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15822857050111272643" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5567857755729774345" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdcb3c6cff3196995b92e732" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12743553138872256608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5539f3d5c17586d29" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7787571170230199696" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12365676721028052950" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5319705371020011924" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f19cff845a3833a1f79a42" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2235977545637716959" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd24a79cb928fb7b71b83a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7032043936639566377" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8df854" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7609664354750216972" + } + } + ] + }, + "cborHex": "d8669f1b4a1628a3419314659f1bdac9beaf4f19d5cb9fbf4956854e54d746e9cfe34245414867ecd4bad94f1f9c1b6fec521f6969c95945fd9ed2ae9f1b1836c49bd78973b1ffbf1bdb9614a76baae6c31b4d4501210a2d47094cbdcb3c6cff3196995b92e7321bb0da320fc2cb886049c5539f3d5c17586d291b6c1302b810a4e590ffbf1bab9bb5762c31b7d61b49d363d99562a9944bf19cff845a3833a1f79a421b1f07c9bb257c63df4bfd24a79cb928fb7b71b83a1b6196d6b3f8574229ffff438df8541b699af569b4d6bb0cffff", + "cborBytes": [ + 216, 102, 159, 27, 74, 22, 40, 163, 65, 147, 20, 101, 159, 27, 218, 201, 190, 175, 79, 25, 213, 203, 159, 191, 73, + 86, 133, 78, 84, 215, 70, 233, 207, 227, 66, 69, 65, 72, 103, 236, 212, 186, 217, 79, 31, 156, 27, 111, 236, 82, + 31, 105, 105, 201, 89, 69, 253, 158, 210, 174, 159, 27, 24, 54, 196, 155, 215, 137, 115, 177, 255, 191, 27, 219, + 150, 20, 167, 107, 170, 230, 195, 27, 77, 69, 1, 33, 10, 45, 71, 9, 76, 189, 203, 60, 108, 255, 49, 150, 153, 91, + 146, 231, 50, 27, 176, 218, 50, 15, 194, 203, 136, 96, 73, 197, 83, 159, 61, 92, 23, 88, 109, 41, 27, 108, 19, 2, + 184, 16, 164, 229, 144, 255, 191, 27, 171, 155, 181, 118, 44, 49, 183, 214, 27, 73, 211, 99, 217, 149, 98, 169, + 148, 75, 241, 156, 255, 132, 90, 56, 51, 161, 247, 154, 66, 27, 31, 7, 201, 187, 37, 124, 99, 223, 75, 253, 36, + 167, 156, 185, 40, 251, 123, 113, 184, 58, 27, 97, 150, 214, 179, 248, 87, 66, 41, 255, 255, 67, 141, 248, 84, 27, + 105, 154, 245, 105, 180, 214, 187, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2747, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5091584262416373152" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df9077" + } + ] + }, + "cborHex": "d87c9f1b46a8f0e9094c15a043df9077ff", + "cborBytes": [216, 124, 159, 27, 70, 168, 240, 233, 9, 76, 21, 160, 67, 223, 144, 119, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2748, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5327317898362309323" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10121809971604571689" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16505331138361309389" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12978370506992149443" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13867415340286231208" + } + } + } + ] + } + ] + }, + "cborHex": "d905079f1b49ee6f6739774acbbf1b8c77e48aa17f46291be50eb738aa3838cd1bb41c6f36b8ac63c31bc072f4c77e9042a8ffff", + "cborBytes": [ + 217, 5, 7, 159, 27, 73, 238, 111, 103, 57, 119, 74, 203, 191, 27, 140, 119, 228, 138, 161, 127, 70, 41, 27, 229, + 14, 183, 56, 170, 56, 56, 205, 27, 180, 28, 111, 54, 184, 172, 99, 195, 27, 192, 114, 244, 199, 126, 144, 66, 168, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2749, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12601228329193162893" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11d2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17823214537389596214" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2fc5288ea9a2350d82" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64cf1c61388ce613" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10267090265917944005" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81937c6b76" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2734065355341164110" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "97be4820333b6c39f77f0683" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12507841615949350266" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f328ea1fe01ce0c5139e0e" + }, + { + "_tag": "ByteArray", + "bytearray": "6bb2449bc2fecebc82" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1baee08e66b725c88d9f9fbf4211d21bf758c730b8af5e36492fc5288ea9a2350d82412a4864cf1c61388ce6131b8e7c083310e8f0c54581937c6b761b25f159f479cfee4effd8669f1bffffffffffffffec9f4c97be4820333b6c39f77f06831bad94c7ae2982457a4bf328ea1fe01ce0c5139e0e496bb2449bc2fecebc82ffffffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 174, 224, 142, 102, 183, 37, 200, 141, 159, 159, 191, 66, 17, 210, 27, 247, 88, 199, 48, 184, + 175, 94, 54, 73, 47, 197, 40, 142, 169, 162, 53, 13, 130, 65, 42, 72, 100, 207, 28, 97, 56, 140, 230, 19, 27, 142, + 124, 8, 51, 16, 232, 240, 197, 69, 129, 147, 124, 107, 118, 27, 37, 241, 89, 244, 121, 207, 238, 78, 255, 216, + 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 76, 151, 190, 72, 32, 51, 59, 108, 57, 247, 127, 6, + 131, 27, 173, 148, 199, 174, 41, 130, 69, 122, 75, 243, 40, 234, 31, 224, 28, 224, 197, 19, 158, 14, 73, 107, 178, + 68, 155, 194, 254, 206, 188, 130, 255, 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2750, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6060580398386751357" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00136e972bfc28811f0f99" + } + ] + }, + "cborHex": "d9050a9f1b541b81c31289a77d4b00136e972bfc28811f0f99ff", + "cborBytes": [ + 217, 5, 10, 159, 27, 84, 27, 129, 195, 18, 137, 167, 125, 75, 0, 19, 110, 151, 43, 252, 40, 129, 31, 15, 153, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2751, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12688446679472018101" + }, + "fields": [] + }, + "cborHex": "d8669f1bb0166b07596a12b580ff", + "cborBytes": [216, 102, 159, 27, 176, 22, 107, 7, 89, 106, 18, 181, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2752, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13088524410937968489" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "481398557016545446" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13913827580020279329" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17815755770539169935" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6063218360426145928" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7279960831928357437" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0ff5efad14c9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5186567898461431728" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14252718597958891039" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aee8ff239cb317eaa1e2" + }, + { + "_tag": "ByteArray", + "bytearray": "deb2d19ed066cfca" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "003218c2b5" + } + ] + }, + "cborHex": "d905039fa01bb5a3c79b13fc8769d8669f1b06ae456fe25b58a69f1bc117d87725244821a0d8669f1bf73e477b3c1a588f9f1b5424e0f978d3a888ffff9f1b65079dce45d8d23d460ff5efad14c91b47fa6406273ce7b01bc5cbd40cfaf1761fff9f4aaee8ff239cb317eaa1e248deb2d19ed066cfcaffffff45003218c2b5ff", + "cborBytes": [ + 217, 5, 3, 159, 160, 27, 181, 163, 199, 155, 19, 252, 135, 105, 216, 102, 159, 27, 6, 174, 69, 111, 226, 91, 88, + 166, 159, 27, 193, 23, 216, 119, 37, 36, 72, 33, 160, 216, 102, 159, 27, 247, 62, 71, 123, 60, 26, 88, 143, 159, + 27, 84, 36, 224, 249, 120, 211, 168, 136, 255, 255, 159, 27, 101, 7, 157, 206, 69, 216, 210, 61, 70, 15, 245, 239, + 173, 20, 201, 27, 71, 250, 100, 6, 39, 60, 231, 176, 27, 197, 203, 212, 12, 250, 241, 118, 31, 255, 159, 74, 174, + 232, 255, 35, 156, 179, 23, 234, 161, 226, 72, 222, 178, 209, 158, 208, 102, 207, 202, 255, 255, 255, 69, 0, 50, + 24, 194, 181, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2753, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5774765679699005497" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11119810551605899659" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11955879166307577809" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15328908563338333153" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9fbf1b502416ca279390391b9a5180c80a1c318b1ba5ebd0c1bd41afd11bd4bb391f50398be1ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 191, 27, 80, 36, 22, 202, 39, 147, 144, 57, 27, + 154, 81, 128, 200, 10, 28, 49, 139, 27, 165, 235, 208, 193, 189, 65, 175, 209, 27, 212, 187, 57, 31, 80, 57, 139, + 225, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2754, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7cae156802" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4386652013911002992" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5601513585943585152" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11824900761245150190" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c4862e8191a2ae89" + } + ] + }, + "cborHex": "d87e9f457cae1568021b3ce084c3e26acf701b4dbc92eda6b121801ba41a7c9762436bee48c4862e8191a2ae89ff", + "cborBytes": [ + 216, 126, 159, 69, 124, 174, 21, 104, 2, 27, 60, 224, 132, 195, 226, 106, 207, 112, 27, 77, 188, 146, 237, 166, + 177, 33, 128, 27, 164, 26, 124, 151, 98, 67, 107, 238, 72, 196, 134, 46, 129, 145, 162, 174, 137, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2755, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c1dfd2c254a59" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62399dc2d449" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6678302352e9f05f411d49" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7adef934d9887d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7175" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ebbb021ca1575" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7900989008545284713" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de79ed3ab176c58b08" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "452f4d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e75202924de9d236" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86" + } + } + ] + } + ] + }, + "cborHex": "d9050b9fbf470c1dfd2c254a5941574662399dc2d4494b6678302352e9f05f411d49477adef934d9887d427175479ebbb021ca15751b6da5f3a45c9b826949de79ed3ab176c58b0843452f4d48e75202924de9d2364186ffff", + "cborBytes": [ + 217, 5, 11, 159, 191, 71, 12, 29, 253, 44, 37, 74, 89, 65, 87, 70, 98, 57, 157, 194, 212, 73, 75, 102, 120, 48, + 35, 82, 233, 240, 95, 65, 29, 73, 71, 122, 222, 249, 52, 217, 136, 125, 66, 113, 117, 71, 158, 187, 176, 33, 202, + 21, 117, 27, 109, 165, 243, 164, 92, 155, 130, 105, 73, 222, 121, 237, 58, 177, 118, 197, 139, 8, 67, 69, 47, 77, + 72, 231, 82, 2, 146, 77, 233, 210, 54, 65, 134, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2756, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12953093304083771634" + } + } + ] + }, + "cborHex": "d9050a9f081bb3c2a1bb4c6770f2ff", + "cborBytes": [217, 5, 10, 159, 8, 27, 179, 194, 161, 187, 76, 103, 112, 242, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2757, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e60e4ef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "263d11fa85" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1274c3f14d5e610766ae711" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4052488420223017826" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1856680699849131262" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a533fa73723d4ba860f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57179741731e5b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4bf4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6025" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11487802382849685133" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60a5bf8d49740a2260eaf2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8874210487581437950" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10811355501024733236" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "602466138345757116" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2848460966999515368" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ead0b901ec687c8f" + }, + { + "_tag": "ByteArray", + "bytearray": "a08d149851a267df0ec6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05a14b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15354256352612686990" + } + } + ] + }, + "cborHex": "d8799fbf446e60e4ef45263d11fa854ca1274c3f14d5e610766ae7111b383d54bf47c6e362ff9fbf1b19c4414267d4c4fe4aa533fa73723d4ba860f74757179741731e5b424bf44260251b9f6cdf66f7a4368d4b60a5bf8d49740a2260eaf21b7b27876bbe566ffeffd8669f1b9609a68c130b683480ffd8669f1b085c63c2c54cd9bc9f1b2787c4285e9260e848ead0b901ec687c8f4aa08d149851a267df0ec6ffff4305a14bff1bd51546cd67c39c8eff", + "cborBytes": [ + 216, 121, 159, 191, 68, 110, 96, 228, 239, 69, 38, 61, 17, 250, 133, 76, 161, 39, 76, 63, 20, 213, 230, 16, 118, + 106, 231, 17, 27, 56, 61, 84, 191, 71, 198, 227, 98, 255, 159, 191, 27, 25, 196, 65, 66, 103, 212, 196, 254, 74, + 165, 51, 250, 115, 114, 61, 75, 168, 96, 247, 71, 87, 23, 151, 65, 115, 30, 91, 66, 75, 244, 66, 96, 37, 27, 159, + 108, 223, 102, 247, 164, 54, 141, 75, 96, 165, 191, 141, 73, 116, 10, 34, 96, 234, 242, 27, 123, 39, 135, 107, + 190, 86, 111, 254, 255, 216, 102, 159, 27, 150, 9, 166, 140, 19, 11, 104, 52, 128, 255, 216, 102, 159, 27, 8, 92, + 99, 194, 197, 76, 217, 188, 159, 27, 39, 135, 196, 40, 94, 146, 96, 232, 72, 234, 208, 185, 1, 236, 104, 124, 143, + 74, 160, 141, 20, 152, 81, 162, 103, 223, 14, 198, 255, 255, 67, 5, 161, 75, 255, 27, 213, 21, 70, 205, 103, 195, + 156, 142, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2758, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15079380141457503028" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "090ec225e891" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23e3082a3f7aa52e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "132cdf59abac1fbcc971fa88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10290725181335973194" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3566115529329851436" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45689a035b" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bd144b8583ca773349fbf46090ec225e8914823e3082a3f7aa52e4c132cdf59abac1fbcc971fa881b8ed00007a2b2ad4a42d8c61b317d632e09b5bc2c41f74545689a035bffffff", + "cborBytes": [ + 216, 102, 159, 27, 209, 68, 184, 88, 60, 167, 115, 52, 159, 191, 70, 9, 14, 194, 37, 232, 145, 72, 35, 227, 8, 42, + 63, 122, 165, 46, 76, 19, 44, 223, 89, 171, 172, 31, 188, 201, 113, 250, 136, 27, 142, 208, 0, 7, 162, 178, 173, + 74, 66, 216, 198, 27, 49, 125, 99, 46, 9, 181, 188, 44, 65, 247, 69, 69, 104, 154, 3, 91, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2759, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14552447994157317533" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2375933345400290983" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bc9f4ae593817bd9d9fd87d9fa01b20f902ca1696fea7ffffff", + "cborBytes": [ + 216, 102, 159, 27, 201, 244, 174, 89, 56, 23, 189, 157, 159, 216, 125, 159, 160, 27, 32, 249, 2, 202, 22, 150, + 254, 167, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2760, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1709359334214126413" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5d259f89" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2203711706175447525" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87a9fd8669f1b17b8dd420554cb4d9f08809f445d259f891b1e95281ef9f521e5ffffffff", + "cborBytes": [ + 216, 122, 159, 216, 102, 159, 27, 23, 184, 221, 66, 5, 84, 203, 77, 159, 8, 128, 159, 68, 93, 37, 159, 137, 27, + 30, 149, 40, 30, 249, 245, 33, 229, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2761, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5645236881976934402" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "854316914405765229" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a1c810648f85691106" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17571527253161440729" + } + }, + { + "_tag": "ByteArray", + "bytearray": "44acd2f74102" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "56c63e4d765b7717" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4664650865061905955" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3246643009595259693" + } + }, + { + "_tag": "ByteArray", + "bytearray": "81ad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4066064517285270487" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "600759553689545765" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9218324293548566973" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7532269170007881932" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a8" + }, + { + "_tag": "ByteArray", + "bytearray": "f683512bb7ba12d7da789e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1879239369903631707" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b4e57e908cf2b40029f9f9f1b0bdb24b510c3706d49a1c810648f85691106ff9f1bf3da9af055c875d94644acd2f74102ffff4856c63e4d765b7717d87b9f1b40bc2b3f553bc6239f1b2d0e649da36e3b2d4281ad1b386d9022b29bd3d7ffff1b085653a191166c25d8669f1b7fee111aad50e9bd9fd8669f1b6887fee706f238cc9f41a84bf683512bb7ba12d7da789e1b1a1466401308ed5bffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 78, 87, 233, 8, 207, 43, 64, 2, 159, 159, 159, 27, 11, 219, 36, 181, 16, 195, 112, 109, 73, + 161, 200, 16, 100, 143, 133, 105, 17, 6, 255, 159, 27, 243, 218, 154, 240, 85, 200, 117, 217, 70, 68, 172, 210, + 247, 65, 2, 255, 255, 72, 86, 198, 62, 77, 118, 91, 119, 23, 216, 123, 159, 27, 64, 188, 43, 63, 85, 59, 198, 35, + 159, 27, 45, 14, 100, 157, 163, 110, 59, 45, 66, 129, 173, 27, 56, 109, 144, 34, 178, 155, 211, 215, 255, 255, 27, + 8, 86, 83, 161, 145, 22, 108, 37, 216, 102, 159, 27, 127, 238, 17, 26, 173, 80, 233, 189, 159, 216, 102, 159, 27, + 104, 135, 254, 231, 6, 242, 56, 204, 159, 65, 168, 75, 246, 131, 81, 43, 183, 186, 18, 215, 218, 120, 158, 27, 26, + 20, 102, 64, 19, 8, 237, 91, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2762, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1238820003144458397" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4567f41cd98d9b63" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c298d7" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9405660797470019699" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b11312c3ab412e09d9fbf484567f41cd98d9b6343c298d7ffd8669f1b82879ea9770490739f9f0dffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 17, 49, 44, 58, 180, 18, 224, 157, 159, 191, 72, 69, 103, 244, 28, 217, 141, 155, 99, 67, 194, + 152, 215, 255, 216, 102, 159, 27, 130, 135, 158, 169, 119, 4, 144, 115, 159, 159, 13, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2763, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3257683822127344446" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1899792290301463396" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2974372602211876609" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c807f0bed136eb2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6089864f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2252824a31fa355e19a02b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3800697297619474817" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69b5e840fed2cb5dc900" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9145c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82581c4ba400a35cbb3e54" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10094698544472512330" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d34d13f1c313" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "421e47" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10835165213050620762" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8617447321403364364" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e848c632f58e5012a2" + }, + { + "_tag": "ByteArray", + "bytearray": "169e2716fc7080aa87f7289a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15252296309991627333" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4467488498887054650" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b2d359e2d206feb3e9fd8669f1b1a5d6b05c271cb649f801b2947181f707e3f01bf481c807f0bed136eb2446089864f4b2252824a31fa355e19a02b1b34beca0e236559814a69b5e840fed2cb5dc900439145c94b82581c4ba400a35cbb3e541b8c1792d799efd74a46d34d13f1c31343421e47ffd8669f1b965e3d5aa68d4b5a9f1b779752ae7ee3940c49e848c632f58e5012a24c169e2716fc7080aa87f7289a1bd3ab0aaf0e0d5a451b3dffb51eb64e553affffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 45, 53, 158, 45, 32, 111, 235, 62, 159, 216, 102, 159, 27, 26, 93, 107, 5, 194, 113, 203, 100, + 159, 128, 27, 41, 71, 24, 31, 112, 126, 63, 1, 191, 72, 28, 128, 127, 11, 237, 19, 110, 178, 68, 96, 137, 134, 79, + 75, 34, 82, 130, 74, 49, 250, 53, 94, 25, 160, 43, 27, 52, 190, 202, 14, 35, 101, 89, 129, 74, 105, 181, 232, 64, + 254, 210, 203, 93, 201, 0, 67, 145, 69, 201, 75, 130, 88, 28, 75, 164, 0, 163, 92, 187, 62, 84, 27, 140, 23, 146, + 215, 153, 239, 215, 74, 70, 211, 77, 19, 241, 195, 19, 67, 66, 30, 71, 255, 216, 102, 159, 27, 150, 94, 61, 90, + 166, 141, 75, 90, 159, 27, 119, 151, 82, 174, 126, 227, 148, 12, 73, 232, 72, 198, 50, 245, 142, 80, 18, 162, 76, + 22, 158, 39, 22, 252, 112, 128, 170, 135, 247, 40, 154, 27, 211, 171, 10, 175, 14, 13, 90, 69, 27, 61, 255, 181, + 30, 182, 78, 85, 58, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2764, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13980387146809538167" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11929932601784140074" + } + } + ] + }, + "cborHex": "d8669f1bc2045009ec04f6779f1ba58fa27e6bb2012affff", + "cborBytes": [ + 216, 102, 159, 27, 194, 4, 80, 9, 236, 4, 246, 119, 159, 27, 165, 143, 162, 126, 107, 178, 1, 42, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2765, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6809462282699883129" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "223416480388804362" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ff605" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7496163513206477158" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a32e4a7ed73067584f" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6ba8500d87354d802bf5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13690106115980966682" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17279293068129951819" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "464894888870427000" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4a11b2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3724686925357660309" + } + }, + { + "_tag": "ByteArray", + "bytearray": "42b9829545" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09c4b91b5fda85" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c247d473" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a7346499a972d95" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17219601673352854937" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2ebc0623fd3f023" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be89e2ce65406116" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14130950807685941427" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11299586119444120860" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3010769309130360993" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1252477203382218794" + } + } + ] + }, + "cborHex": "d8669f1b5e8011de37bf42799fbf1b0319bc1aee8aef0a438ff6051b6807b8ffb6ea916649a32e4a7ed73067584fff4a6ba8500d87354d802bf5d8669f1bbdfd06faac72bb1a9f1befcc617eefc1604bd8669f1b0673a370350439789f434a11b21b33b0bf063d7c38954542b9829545ffffbf4709c4b91b5fda8544c247d473480a7346499a972d951beef8507d11eb3d994267fc48e2ebc0623fd3f02348be89e2ce654061161bc41b38e3fea3c8b3ffd8669f1b9cd031b53666c51c80ffffff1b29c866bc235d08a11b1161b1616cdf302affff", + "cborBytes": [ + 216, 102, 159, 27, 94, 128, 17, 222, 55, 191, 66, 121, 159, 191, 27, 3, 25, 188, 26, 238, 138, 239, 10, 67, 143, + 246, 5, 27, 104, 7, 184, 255, 182, 234, 145, 102, 73, 163, 46, 74, 126, 215, 48, 103, 88, 79, 255, 74, 107, 168, + 80, 13, 135, 53, 77, 128, 43, 245, 216, 102, 159, 27, 189, 253, 6, 250, 172, 114, 187, 26, 159, 27, 239, 204, 97, + 126, 239, 193, 96, 75, 216, 102, 159, 27, 6, 115, 163, 112, 53, 4, 57, 120, 159, 67, 74, 17, 178, 27, 51, 176, + 191, 6, 61, 124, 56, 149, 69, 66, 185, 130, 149, 69, 255, 255, 191, 71, 9, 196, 185, 27, 95, 218, 133, 68, 194, + 71, 212, 115, 72, 10, 115, 70, 73, 154, 151, 45, 149, 27, 238, 248, 80, 125, 17, 235, 61, 153, 66, 103, 252, 72, + 226, 235, 192, 98, 63, 211, 240, 35, 72, 190, 137, 226, 206, 101, 64, 97, 22, 27, 196, 27, 56, 227, 254, 163, 200, + 179, 255, 216, 102, 159, 27, 156, 208, 49, 181, 54, 102, 197, 28, 128, 255, 255, 255, 27, 41, 200, 102, 188, 35, + 93, 8, 161, 27, 17, 97, 177, 97, 108, 223, 48, 42, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2766, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17060923639520906881" + }, + "fields": [] + }, + "cborHex": "d8669f1becc493a851b54e8180ff", + "cborBytes": [216, 102, 159, 27, 236, 196, 147, 168, 81, 181, 78, 129, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2767, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13209499746066248592" + }, + "fields": [] + }, + "cborHex": "d8669f1bb751920838e4339080ff", + "cborBytes": [216, 102, 159, 27, 183, 81, 146, 8, 56, 228, 51, 144, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2768, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4860282567702246090" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6888082851690123559" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12194947424150298986" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d743eae3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18278721896406562606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12326559587984659754" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f1b4373313e93ea72ca1bfffffffffffffff8d8669f1b5f9762dbe673112780ff12bf1ba93d2812170b216a44d743eae31bfdab10b84f77b72e1bab10bca2e882d52affffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 27, 67, 115, 49, 62, 147, 234, 114, 202, 27, 255, + 255, 255, 255, 255, 255, 255, 248, 216, 102, 159, 27, 95, 151, 98, 219, 230, 115, 17, 39, 128, 255, 18, 191, 27, + 169, 61, 40, 18, 23, 11, 33, 106, 68, 215, 67, 234, 227, 27, 253, 171, 16, 184, 79, 119, 183, 46, 27, 171, 16, + 188, 162, 232, 130, 213, 42, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2769, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10022864718246235490" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7746366570478873604" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b8b185e5b9adccd629f9f1b6b809f5a955aac04a0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 139, 24, 94, 91, 154, 220, 205, 98, 159, 159, 27, 107, 128, 159, 90, 149, 90, 172, 4, 160, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2770, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17574241697045255048" + }, + "fields": [] + }, + "cborHex": "d8669f1bf3e43fb60d3d938880ff", + "cborBytes": [216, 102, 159, 27, 243, 228, 63, 182, 13, 61, 147, 136, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2771, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9295327413553219356" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e8e7b44b892f178f493dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b1fb37f5d9966b3" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c7278844282fbe805d" + }, + { + "_tag": "ByteArray", + "bytearray": "38cd71" + }, + { + "_tag": "ByteArray", + "bytearray": "cba692cbb9ca" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18147022784768920851" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f9f80ffd8669f1b80ffa308abca471c9fbf4b1e8e7b44b892f178f493dc489b1fb37f5d9966b3ffa09f49c7278844282fbe805d4338cd7146cba692cbb9caffd8669f1bfbd72d1361124d1380ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 159, 128, 255, 216, 102, 159, 27, 128, 255, 163, + 8, 171, 202, 71, 28, 159, 191, 75, 30, 142, 123, 68, 184, 146, 241, 120, 244, 147, 220, 72, 155, 31, 179, 127, 93, + 153, 102, 179, 255, 160, 159, 73, 199, 39, 136, 68, 40, 47, 190, 128, 93, 67, 56, 205, 113, 70, 203, 166, 146, + 203, 185, 202, 255, 216, 102, 159, 27, 251, 215, 45, 19, 97, 18, 77, 19, 128, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2772, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01c002" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0104feabee0156fe00f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9678b9fbcfb5910bcf03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + } + ] + } + ] + }, + "cborHex": "d9050c9fbf4301c0024a0104feabee0156fe00f94a9678b9fbcfb5910bcf031bfffffffffffffff7ffff", + "cborBytes": [ + 217, 5, 12, 159, 191, 67, 1, 192, 2, 74, 1, 4, 254, 171, 238, 1, 86, 254, 0, 249, 74, 150, 120, 185, 251, 207, + 181, 145, 11, 207, 3, 27, 255, 255, 255, 255, 255, 255, 255, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2773, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2680463681368825564" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4797318117405994341" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6659469961880346174" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10397942380148856767" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11239306333474236810" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31998ae924bd7771ee9a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13323379016274029326" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cc8ed4d346cbf49f04630d6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17027328306798138849" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4352913318988386589" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12457278617754161272" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c8cef5" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a39ef9ec" + }, + { + "_tag": "ByteArray", + "bytearray": "724fcdf9681fa5" + } + ] + }, + "cborHex": "d87b9fbf1b2532eb8439531edc1b42937f691687ad651b5c6b30a59e431e3e1b904ce9810bc097bf1b9bfa098fd887a98a4a31998ae924bd7771ee9a1bb8e626a000e82b0e4c1cc8ed4d346cbf49f04630d61bec4d38e160a815e11b3c68a799d45e911dff1bace124e6bf4e50789f43c8cef5ff44a39ef9ec47724fcdf9681fa5ff", + "cborBytes": [ + 216, 123, 159, 191, 27, 37, 50, 235, 132, 57, 83, 30, 220, 27, 66, 147, 127, 105, 22, 135, 173, 101, 27, 92, 107, + 48, 165, 158, 67, 30, 62, 27, 144, 76, 233, 129, 11, 192, 151, 191, 27, 155, 250, 9, 143, 216, 135, 169, 138, 74, + 49, 153, 138, 233, 36, 189, 119, 113, 238, 154, 27, 184, 230, 38, 160, 0, 232, 43, 14, 76, 28, 200, 237, 77, 52, + 108, 191, 73, 240, 70, 48, 214, 27, 236, 77, 56, 225, 96, 168, 21, 225, 27, 60, 104, 167, 153, 212, 94, 145, 29, + 255, 27, 172, 225, 36, 230, 191, 78, 80, 120, 159, 67, 200, 206, 245, 255, 68, 163, 158, 249, 236, 71, 114, 79, + 205, 249, 104, 31, 165, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2774, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8573930111741147015" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1234487086728859347" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f8405fca0294" + }, + { + "_tag": "ByteArray", + "bytearray": "6f0dfd243c3810" + }, + { + "_tag": "ByteArray", + "bytearray": "dfe1" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ba95b2d6d18173a3" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2275400196453626256" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4245871040043716816" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7019034001208686116" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6440705229837357487" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e675026ebb7a3e7b894" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13815338458374740474" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8dca95cbac7fac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13759954440874748491" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b76fcb8028f5b37879fd8669f1b1121c776fc47ced39f9f46f8405fca0294476f0dfd243c381042dfe1ffffff9f48ba95b2d6d18173a3bf1b1f93d86c4f78f1901b3aec5d371fec90d01b61689e3c546eb6241b5961fb483f74d1af4a1e675026ebb7a3e7b8941bbfb9f1218f3819fa478dca95cbac7fac417cff1bbef52da91de5ea4bffffff", + "cborBytes": [ + 216, 102, 159, 27, 118, 252, 184, 2, 143, 91, 55, 135, 159, 216, 102, 159, 27, 17, 33, 199, 118, 252, 71, 206, + 211, 159, 159, 70, 248, 64, 95, 202, 2, 148, 71, 111, 13, 253, 36, 60, 56, 16, 66, 223, 225, 255, 255, 255, 159, + 72, 186, 149, 178, 214, 209, 129, 115, 163, 191, 27, 31, 147, 216, 108, 79, 120, 241, 144, 27, 58, 236, 93, 55, + 31, 236, 144, 208, 27, 97, 104, 158, 60, 84, 110, 182, 36, 27, 89, 97, 251, 72, 63, 116, 209, 175, 74, 30, 103, + 80, 38, 235, 183, 163, 231, 184, 148, 27, 191, 185, 241, 33, 143, 56, 25, 250, 71, 141, 202, 149, 203, 172, 127, + 172, 65, 124, 255, 27, 190, 245, 45, 169, 29, 229, 234, 75, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2775, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4533969832645165070" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5083552770245834423" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "282ee3fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15929028203883878264" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3444398337413909239" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3191385105933859020" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17378569599146152386" + } + }, + { + "_tag": "ByteArray", + "bytearray": "14c79337" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d905019fbf1b3eebe58a7127000e413b1b468c684f8b74b6b744282ee3fa1bdd0f46c17dad57781b2fccf609e6808af7ff1b2c4a13d85ca8f8cc1bf12d14f98d8251c24414c79337a0ff", + "cborBytes": [ + 217, 5, 1, 159, 191, 27, 62, 235, 229, 138, 113, 39, 0, 14, 65, 59, 27, 70, 140, 104, 79, 139, 116, 182, 183, 68, + 40, 46, 227, 250, 27, 221, 15, 70, 193, 125, 173, 87, 120, 27, 47, 204, 246, 9, 230, 128, 138, 247, 255, 27, 44, + 74, 19, 216, 92, 168, 248, 204, 27, 241, 45, 20, 249, 141, 130, 81, 194, 68, 20, 199, 147, 55, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2776, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14756188203682162721" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7871983630939740945" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4149953221460583135" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8bb6c9d502fd096a" + } + ] + }, + "cborHex": "d8669f1bccc882fd5748e8219f801b6d3ee7679fda5b111b39979877afa562df488bb6c9d502fd096affff", + "cborBytes": [ + 216, 102, 159, 27, 204, 200, 130, 253, 87, 72, 232, 33, 159, 128, 27, 109, 62, 231, 103, 159, 218, 91, 17, 27, 57, + 151, 152, 119, 175, 165, 98, 223, 72, 139, 182, 201, 213, 2, 253, 9, 106, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2777, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6932779266859722718" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64b84faec154291b8ea652" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5491240023542271861" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39fbf031b60362e03035de7de044b64b84faec154291b8ea652ff1b4c34cdb523a50f75ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 191, 3, 27, 96, 54, 46, 3, 3, 93, 231, 222, 4, 75, + 100, 184, 79, 174, 193, 84, 41, 27, 142, 166, 82, 255, 27, 76, 52, 205, 181, 35, 165, 15, 117, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2778, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "be03" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4531616391556498585" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c602bf8ae68d9116" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "96aa0b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dbaa5dfafd87f271" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17517022790748813195" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe36a5d861e8d286348e6146" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7032160303089362350" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fafd7cf8" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d905099f42be03d8669f1b3ee389193d1004999f48c602bf8ae68d911680bf4396aa0b48dbaa5dfafd87f27141a61bf318f76b4501378b4cfe36a5d861e8d286348e61461b61974089a53ea5aeff44fafd7cf8a0ffffff", + "cborBytes": [ + 217, 5, 9, 159, 66, 190, 3, 216, 102, 159, 27, 62, 227, 137, 25, 61, 16, 4, 153, 159, 72, 198, 2, 191, 138, 230, + 141, 145, 22, 128, 191, 67, 150, 170, 11, 72, 219, 170, 93, 250, 253, 135, 242, 113, 65, 166, 27, 243, 24, 247, + 107, 69, 1, 55, 139, 76, 254, 54, 165, 216, 97, 232, 210, 134, 52, 142, 97, 70, 27, 97, 151, 64, 137, 165, 62, + 165, 174, 255, 68, 250, 253, 124, 248, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2779, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1135670862233248224" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d1ba1d47" + }, + { + "_tag": "ByteArray", + "bytearray": "cce5dfc0d94dd4fe0cec" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6241349432340924915" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3410485956774959009" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10004390237742651264" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9047522908203512425" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17355645122533321943" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57111589" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b0fc2b6a1d52ca1e09f44d1ba1d474acce5dfc0d94dd4fe0cec809fbf1b569dba3d99c449f31b2f547ae87d0797a11b8ad6bbea6b0957801b7d8f422630adf2691bf0dba348e856ecd74457111589ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 15, 194, 182, 161, 213, 44, 161, 224, 159, 68, 209, 186, 29, 71, 74, 204, 229, 223, 192, 217, + 77, 212, 254, 12, 236, 128, 159, 191, 27, 86, 157, 186, 61, 153, 196, 73, 243, 27, 47, 84, 122, 232, 125, 7, 151, + 161, 27, 138, 214, 187, 234, 107, 9, 87, 128, 27, 125, 143, 66, 38, 48, 173, 242, 105, 27, 240, 219, 163, 72, 232, + 86, 236, 215, 68, 87, 17, 21, 137, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2780, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6553288148352497401" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10265886456267984174" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3166247335263599634" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8944555717802024496" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5387351508279274570" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13614685657111648464" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7220970576837176764" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6708341155273873362" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8347898647418302456" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "218ba891a8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10939489346308871057" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14992713242322072187" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12534072275708570519" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12646682749167444250" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b5af1f4d9a153f6f99fd8669f1b8e77c1574a58cd2e80ffbf1b2bf0c52d0969fc121b7c217208f9475e301b4ac3b7a74326ac4a1bbcf11478b0bed8d01b64360a7b35ed6dbc1b5d18d0bd083b97d21b73d9b1973c54eff845218ba891a81b97d0df99bee913911bd010d14253e6f27b1badf1f8538eae6b971baf820af4932fa11affffff", + "cborBytes": [ + 216, 102, 159, 27, 90, 241, 244, 217, 161, 83, 246, 249, 159, 216, 102, 159, 27, 142, 119, 193, 87, 74, 88, 205, + 46, 128, 255, 191, 27, 43, 240, 197, 45, 9, 105, 252, 18, 27, 124, 33, 114, 8, 249, 71, 94, 48, 27, 74, 195, 183, + 167, 67, 38, 172, 74, 27, 188, 241, 20, 120, 176, 190, 216, 208, 27, 100, 54, 10, 123, 53, 237, 109, 188, 27, 93, + 24, 208, 189, 8, 59, 151, 210, 27, 115, 217, 177, 151, 60, 84, 239, 248, 69, 33, 139, 168, 145, 168, 27, 151, 208, + 223, 153, 190, 233, 19, 145, 27, 208, 16, 209, 66, 83, 230, 242, 123, 27, 173, 241, 248, 83, 142, 174, 107, 151, + 27, 175, 130, 10, 244, 147, 47, 161, 26, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2781, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13111387822007346562" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9992704484087925881" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3530914076416614357" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3228704912740868136" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18352755198167817285" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1a30068fa1e55d9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71d296daa1f1d2e10f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e854040bedc5beb4ef6" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8409055116758974430" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7031379602999943827" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12354671277646133939" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2f0fb0d70e" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "983896837576399868" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "adfb8d0a4ad6845ca3b6da27" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17026718041958190237" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8027678187987164693" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e004a264be" + }, + { + "_tag": "ByteArray", + "bytearray": "08239a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16620624002849922176" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "42" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3852136823182456279" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6691280690208258131" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "943a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7346341201931786444" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d9050a9fd8669f1bb5f501c1cb2165829f418d1b8aad37c8df838c79bf1b310053a5193d1fd51b2cceaa03007a60281bfeb2159d9c7f1c4548b1a30068fa1e55d94971d296daa1f1d2e10f4a5e854040bedc5beb4ef6ff1b74b2f7135b197fded8669f1b61947a7ebdbd22939f1bab749c11b4d1bab3452f0fb0d70effffffffd8669f1b0da780f5fb5f1bfc9f4cadfb8d0a4ad6845ca3b6da27d8669f1bec4b0dd905a70c9d9f1b6f680ac78e205e1545e004a264be4308239a1be6a8517883335c80ffff41421b35758a07fbfdf5d7d8669f1b5cdc3455f84b38539f42943a1b65f372668bf5d8ccffffffff80ff", + "cborBytes": [ + 217, 5, 10, 159, 216, 102, 159, 27, 181, 245, 1, 193, 203, 33, 101, 130, 159, 65, 141, 27, 138, 173, 55, 200, 223, + 131, 140, 121, 191, 27, 49, 0, 83, 165, 25, 61, 31, 213, 27, 44, 206, 170, 3, 0, 122, 96, 40, 27, 254, 178, 21, + 157, 156, 127, 28, 69, 72, 177, 163, 0, 104, 250, 30, 85, 217, 73, 113, 210, 150, 218, 161, 241, 210, 225, 15, 74, + 94, 133, 64, 64, 190, 220, 91, 235, 78, 246, 255, 27, 116, 178, 247, 19, 91, 25, 127, 222, 216, 102, 159, 27, 97, + 148, 122, 126, 189, 189, 34, 147, 159, 27, 171, 116, 156, 17, 180, 209, 186, 179, 69, 47, 15, 176, 215, 14, 255, + 255, 255, 255, 216, 102, 159, 27, 13, 167, 128, 245, 251, 95, 27, 252, 159, 76, 173, 251, 141, 10, 74, 214, 132, + 92, 163, 182, 218, 39, 216, 102, 159, 27, 236, 75, 13, 217, 5, 167, 12, 157, 159, 27, 111, 104, 10, 199, 142, 32, + 94, 21, 69, 224, 4, 162, 100, 190, 67, 8, 35, 154, 27, 230, 168, 81, 120, 131, 51, 92, 128, 255, 255, 65, 66, 27, + 53, 117, 138, 7, 251, 253, 245, 215, 216, 102, 159, 27, 92, 220, 52, 85, 248, 75, 56, 83, 159, 66, 148, 58, 27, + 101, 243, 114, 102, 139, 245, 216, 204, 255, 255, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2782, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12108743599647598151" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07f507f883fbfa" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9550565353114043148" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "379ae284" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc55521934" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e76ce015" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1ba80ae6262547a6479f4707f507f883fbfad8669f1bffffffffffffffee80ff80bf1bfffffffffffffffc1b848a6c966c84030c44379ae28445dc5552193444e76ce0150affa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 168, 10, 230, 38, 37, 71, 166, 71, 159, 71, 7, 245, 7, 248, 131, 251, 250, 216, 102, 159, 27, + 255, 255, 255, 255, 255, 255, 255, 238, 128, 255, 128, 191, 27, 255, 255, 255, 255, 255, 255, 255, 252, 27, 132, + 138, 108, 150, 108, 132, 3, 12, 68, 55, 154, 226, 132, 69, 220, 85, 82, 25, 52, 68, 231, 108, 224, 21, 10, 255, + 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2783, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17224593500759433615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4525515d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "032cc9723e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6cddf508ce9e55d82172654" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a14b83a105523844fd36" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da69d81e3bff031b" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17699674047963679507" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10352019745530569587" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5e79d75ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4027134600201829719" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e36bea7ed6da12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9565558114330362534" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7700145944268087095" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5ee098f5addecc30" + }, + { + "_tag": "ByteArray", + "bytearray": "d3cad10ff6" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3800424675951070399" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8705341494064267059" + } + } + ] + }, + "cborHex": "d905069fbf1bef0a0c877544a18f444525515d45032cc9723e4cc6cddf508ce9e55d821726544aa14b83a105523844fd3648da69d81e3bff031bffbf1bf5a1dfc50d134b131b8fa9c31c782de37345a5e79d75ce1b37e341950bb6fd5747e36bea7ed6da121b84bfb06cab0442a6ff9f9f1b6adc69f06ec39f37485ee098f5addecc3045d3cad10ff6ffff1b34bdd21b75b14cbf1b78cf95f74a2b3f33ff", + "cborBytes": [ + 217, 5, 6, 159, 191, 27, 239, 10, 12, 135, 117, 68, 161, 143, 68, 69, 37, 81, 93, 69, 3, 44, 201, 114, 62, 76, + 198, 205, 223, 80, 140, 233, 229, 93, 130, 23, 38, 84, 74, 161, 75, 131, 161, 5, 82, 56, 68, 253, 54, 72, 218, + 105, 216, 30, 59, 255, 3, 27, 255, 191, 27, 245, 161, 223, 197, 13, 19, 75, 19, 27, 143, 169, 195, 28, 120, 45, + 227, 115, 69, 165, 231, 157, 117, 206, 27, 55, 227, 65, 149, 11, 182, 253, 87, 71, 227, 107, 234, 126, 214, 218, + 18, 27, 132, 191, 176, 108, 171, 4, 66, 166, 255, 159, 159, 27, 106, 220, 105, 240, 110, 195, 159, 55, 72, 94, + 224, 152, 245, 173, 222, 204, 48, 69, 211, 202, 209, 15, 246, 255, 255, 27, 52, 189, 210, 27, 117, 177, 76, 191, + 27, 120, 207, 149, 247, 74, 43, 63, 51, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2784, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11051751124230307994" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa40ff8377b5138200" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10381511252800399140" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "268188244267539745" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5d354bcdbe17300b1dbf8960" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b995fb517c1c5809a9f809f49fa40ff8377b5138200ff9f1b9012897b16e36724d8669f1b03b8cbc988809d219f4c5d354bcdbe17300b1dbf8960ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 153, 95, 181, 23, 193, 197, 128, 154, 159, 128, 159, 73, 250, 64, 255, 131, 119, 181, 19, 130, + 0, 255, 159, 27, 144, 18, 137, 123, 22, 227, 103, 36, 216, 102, 159, 27, 3, 184, 203, 201, 136, 128, 157, 33, 159, + 76, 93, 53, 75, 205, 190, 23, 48, 11, 29, 191, 137, 96, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2785, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11099486098892602629" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7872001995563745212" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5033179696997399552" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12626154991694766392" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16125921144369639335" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10121698970753004515" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16455436344977027818" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf241b168daafccacca4" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fdf3" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16631633227007003109" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12352799951053841314" + } + } + ] + }, + "cborHex": "d8669f1b9a094bcca1e13d059fd8669f1b6d3ef81b78be3fbc9f1b45d972447a3cfc00d8669f1baf391d1196fde1389f1bdfcac7d78e1cefa71b8c777f963b2b73e31be45d742bce6872ea4abf241b168daafccacca4ffff42fdf3ffff1be6cf6e4d425609e51bab6df61b8806e3a2ffff", + "cborBytes": [ + 216, 102, 159, 27, 154, 9, 75, 204, 161, 225, 61, 5, 159, 216, 102, 159, 27, 109, 62, 248, 27, 120, 190, 63, 188, + 159, 27, 69, 217, 114, 68, 122, 60, 252, 0, 216, 102, 159, 27, 175, 57, 29, 17, 150, 253, 225, 56, 159, 27, 223, + 202, 199, 215, 142, 28, 239, 167, 27, 140, 119, 127, 150, 59, 43, 115, 227, 27, 228, 93, 116, 43, 206, 104, 114, + 234, 74, 191, 36, 27, 22, 141, 170, 252, 202, 204, 164, 255, 255, 66, 253, 243, 255, 255, 27, 230, 207, 110, 77, + 66, 86, 9, 229, 27, 171, 109, 246, 27, 136, 6, 227, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2786, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + "cborHex": "d9050c9f02ff", + "cborBytes": [217, 5, 12, 159, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2787, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7536656458848984247" + } + }, + { + "_tag": "ByteArray", + "bytearray": "94" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7594034487683232522" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3318128528773626081" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17093326984650902806" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13447770257337781744" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8586755588" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "452e22b67dd3e943b0e7dc9b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1075dc9d8fde5ecd9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13328208134422701392" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f1b6897951e4fd8dcb741941b69636e21b26cb30abf1b2e0c5c5114a438e11bed37b25405b74d161bbaa013ccb9ae8df0458586755588429e774c452e22b67dd3e943b0e7dc9b49d1075dc9d8fde5ecd91bb8f74eaeb0bca550ffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 27, 104, 151, 149, 30, 79, 216, 220, 183, 65, 148, + 27, 105, 99, 110, 33, 178, 108, 179, 10, 191, 27, 46, 12, 92, 81, 20, 164, 56, 225, 27, 237, 55, 178, 84, 5, 183, + 77, 22, 27, 186, 160, 19, 204, 185, 174, 141, 240, 69, 133, 134, 117, 85, 136, 66, 158, 119, 76, 69, 46, 34, 182, + 125, 211, 233, 67, 176, 231, 220, 155, 73, 209, 7, 93, 201, 216, 253, 229, 236, 217, 27, 184, 247, 78, 174, 176, + 188, 165, 80, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2788, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7495204852258111724" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18425207314108596597" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b6804511a11a100ec9f1bffb37c6e665f4175a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 104, 4, 81, 26, 17, 161, 0, 236, 159, 27, 255, 179, 124, 110, 102, 95, 65, 117, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2789, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5545956597745295095" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5fe7600" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3507621624785162716" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b4cf7322454579ef79fbf1044e5fe76001b30ad934897cc51dc4105ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 76, 247, 50, 36, 84, 87, 158, 247, 159, 191, 16, 68, 229, 254, 118, 0, 27, 48, 173, 147, 72, + 151, 204, 81, 220, 65, 5, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2790, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39fd9050a80ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 217, 5, 10, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2791, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12477440014139488259" + }, + "fields": [] + }, + "cborHex": "d8669f1bad28c595a507780380ff", + "cborBytes": [216, 102, 159, 27, 173, 40, 197, 149, 165, 7, 120, 3, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2792, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2516289622675293397" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f16975f265cf7a9bb5602" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2013406649020517339" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2891429075099537471" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15877018596309505203" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14465618475867496415" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2574143201721695383" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13482030657420164213" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f283fd5d244a" + }, + { + "_tag": "ByteArray", + "bytearray": "b55ca09d06d28702d8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13670877607906669194" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3405f3b4afc0603937f615e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13255692066269324990" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3912172537755062164" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b22eba814779004d59fbf4b5f16975f265cf7a9bb56021b1bf10eae07470bdbff1b28206b6ca28b503f9f1bdc56804b154c94b3d8669f1bc8c0335c9668dfdf9f1b23b9319a839bbc971bbb19cb73ba747c75ffff46f283fd5d244a49b55ca09d06d28702d8d8669f1bbdb8b6c0c31e728a9f4c3405f3b4afc0603937f615e81bb7f5adb3ddf266be1b364ad4320cedcf94ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 34, 235, 168, 20, 119, 144, 4, 213, 159, 191, 75, 95, 22, 151, 95, 38, 92, 247, 169, 187, 86, + 2, 27, 27, 241, 14, 174, 7, 71, 11, 219, 255, 27, 40, 32, 107, 108, 162, 139, 80, 63, 159, 27, 220, 86, 128, 75, + 21, 76, 148, 179, 216, 102, 159, 27, 200, 192, 51, 92, 150, 104, 223, 223, 159, 27, 35, 185, 49, 154, 131, 155, + 188, 151, 27, 187, 25, 203, 115, 186, 116, 124, 117, 255, 255, 70, 242, 131, 253, 93, 36, 74, 73, 181, 92, 160, + 157, 6, 210, 135, 2, 216, 216, 102, 159, 27, 189, 184, 182, 192, 195, 30, 114, 138, 159, 76, 52, 5, 243, 180, 175, + 192, 96, 57, 55, 246, 21, 232, 27, 183, 245, 173, 179, 221, 242, 102, 190, 27, 54, 74, 212, 50, 12, 237, 207, 148, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2793, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5265236416975985711" + }, + "fields": [] + }, + "cborHex": "d8669f1b4911e09ff44ddc2f80ff", + "cborBytes": [216, 102, 159, 27, 73, 17, 224, 159, 244, 77, 220, 47, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2794, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2945074504906771313" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "888210183832095089" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2e3b4abf82e892e4" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f8d90576" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f41908b9f046b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4802620784229045177" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b28df01a896070b719f809fd8669f1bfffffffffffffff89f1b0c538e74cd324971482e3b4abf82e892e4ffff44f8d90576bf41091bffffffffffffffef477f41908b9f046b1b42a656286ae153b9ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 40, 223, 1, 168, 150, 7, 11, 113, 159, 128, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 248, 159, 27, 12, 83, 142, 116, 205, 50, 73, 113, 72, 46, 59, 74, 191, 130, 232, 146, 228, 255, 255, 68, + 248, 217, 5, 118, 191, 65, 9, 27, 255, 255, 255, 255, 255, 255, 255, 239, 71, 127, 65, 144, 139, 159, 4, 107, 27, + 66, 166, 86, 40, 106, 225, 83, 185, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2795, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3155422753539467297" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15163964546238908206" + } + }, + { + "_tag": "ByteArray", + "bytearray": "78b5fa28c514" + } + ] + }, + "cborHex": "d8669f1b2bca5046b4e7a8219f1bd2713969a530072e4678b5fa28c514ffff", + "cborBytes": [ + 216, 102, 159, 27, 43, 202, 80, 70, 180, 231, 168, 33, 159, 27, 210, 113, 57, 105, 165, 48, 7, 46, 70, 120, 181, + 250, 40, 197, 20, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2796, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d3f3359f17" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02230bdec79fbd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5429884682842022364" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0719ed9af9c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9882879819260278104" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4e52258704233f2453209" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95b4bedbc2d4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d56f099bc9cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a033c7d1244bcd6d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6257f5833a51028130b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18027009586232295336" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14171858643509642988" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f1aa3373032" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050a9f45d3f3359f179fbf4702230bdec79fbd1b4b5ad359ac2221dc460719ed9af9c61b89270ad578e2b5584ba4e52258704233f24532094695b4bedbc2d446d56f099bc9cb490a033c7d1244bcd6d34af6257f5833a51028130b1bfa2ccdb51defffa8ff1bfffffffffffffffb9f121bc4ac8e59bd7106ecffbf1bfffffffffffffff6461f1aa3373032ffffff", + "cborBytes": [ + 217, 5, 10, 159, 69, 211, 243, 53, 159, 23, 159, 191, 71, 2, 35, 11, 222, 199, 159, 189, 27, 75, 90, 211, 89, 172, + 34, 33, 220, 70, 7, 25, 237, 154, 249, 198, 27, 137, 39, 10, 213, 120, 226, 181, 88, 75, 164, 229, 34, 88, 112, + 66, 51, 242, 69, 50, 9, 70, 149, 180, 190, 219, 194, 212, 70, 213, 111, 9, 155, 201, 203, 73, 10, 3, 60, 125, 18, + 68, 188, 214, 211, 74, 246, 37, 127, 88, 51, 165, 16, 40, 19, 11, 27, 250, 44, 205, 181, 29, 239, 255, 168, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 18, 27, 196, 172, 142, 89, 189, 113, 6, 236, 255, 191, 27, 255, + 255, 255, 255, 255, 255, 255, 246, 70, 31, 26, 163, 55, 48, 50, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2797, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12786936870744295219" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4263d40706" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3640628537654275736" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14845722425452446850" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14404233423626901924" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16877920074248520316" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "912476317223587719" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ba12308a9df133" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1166963892672598911" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4345027294134184839" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2568023338024570303" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17179655835683092425" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5181567429715768470" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd04afd0876b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7079391471791185032" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67dc2bfa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13560985390764367711" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2062104333686291113" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14343155161548481553" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "488c94b219" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10854209658902834485" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1384ef" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5404123763381781292" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7229875491818962367" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f9f9f1bb1745355fa0f0733454263d40706ffd8669f1b32861c5dba086e989f1bce0699e3d324c4821bc7e61dfb5d1719a41bea3a6ae26d04827c1b0ca9c46042118f87ffff47ba12308a9df133bf1b1031e37a4075137f1b3c4ca34d963eab871b23a3739eb5de0dbf1bee6a65f5f95b77c91b47e8a01fcbf1349646fd04afd0876b1b623f0d090e0b1c884467dc2bfa1bbc324c5d1cc59f5f1b1c9e10f74b2a3aa91bc70d1fa04a68641145488c94b219ffd8669f1b96a1e62d3c846d359f431384ef1b4aff4dee369e432c1b6455ad744c2bfdbfffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 159, 159, 27, 177, 116, 83, 85, 250, 15, 7, 51, + 69, 66, 99, 212, 7, 6, 255, 216, 102, 159, 27, 50, 134, 28, 93, 186, 8, 110, 152, 159, 27, 206, 6, 153, 227, 211, + 36, 196, 130, 27, 199, 230, 29, 251, 93, 23, 25, 164, 27, 234, 58, 106, 226, 109, 4, 130, 124, 27, 12, 169, 196, + 96, 66, 17, 143, 135, 255, 255, 71, 186, 18, 48, 138, 157, 241, 51, 191, 27, 16, 49, 227, 122, 64, 117, 19, 127, + 27, 60, 76, 163, 77, 150, 62, 171, 135, 27, 35, 163, 115, 158, 181, 222, 13, 191, 27, 238, 106, 101, 245, 249, 91, + 119, 201, 27, 71, 232, 160, 31, 203, 241, 52, 150, 70, 253, 4, 175, 208, 135, 107, 27, 98, 63, 13, 9, 14, 11, 28, + 136, 68, 103, 220, 43, 250, 27, 188, 50, 76, 93, 28, 197, 159, 95, 27, 28, 158, 16, 247, 75, 42, 58, 169, 27, 199, + 13, 31, 160, 74, 104, 100, 17, 69, 72, 140, 148, 178, 25, 255, 216, 102, 159, 27, 150, 161, 230, 45, 60, 132, 109, + 53, 159, 67, 19, 132, 239, 27, 74, 255, 77, 238, 54, 158, 67, 44, 27, 100, 85, 173, 116, 76, 43, 253, 191, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2798, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14966554798234982569" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4323446004405141121" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1705162720240758219" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9bb90e8d928141c5e49d56" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8313120044750203419" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12428742234881118952" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15162427052039702288" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3061336755263074961" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17777325687424644813" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d0464125b7e8237a8f9" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e5f32fba6b2c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0886a4b2e37cdc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f7511bec4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "667bd3168d5aafca99a614" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "594619" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "402ce42714" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + { + "_tag": "ByteArray", + "bytearray": "92d89e9d" + } + ] + }, + "cborHex": "d905089fd8669f1bcfb3e24af436d8a99f1b3bfff73c02267e81ffffbf1b17a9f475b0306dcb4b9bb90e8d928141c5e49d561b735e22a2ca83ea1b1bac7bc3365afbd2e81bd26bc311e19987101b2a7c0d8f2b4d72911bf6b5bf863f5f76cd4a7d0464125b7e8237a8f9ff9fd9050980bf472e5f32fba6b2c4470886a4b2e37cdc452f7511bec44b667bd3168d5aafca99a6144359461945402ce42714ffff1bfffffffffffffff44492d89e9dff", + "cborBytes": [ + 217, 5, 8, 159, 216, 102, 159, 27, 207, 179, 226, 74, 244, 54, 216, 169, 159, 27, 59, 255, 247, 60, 2, 38, 126, + 129, 255, 255, 191, 27, 23, 169, 244, 117, 176, 48, 109, 203, 75, 155, 185, 14, 141, 146, 129, 65, 197, 228, 157, + 86, 27, 115, 94, 34, 162, 202, 131, 234, 27, 27, 172, 123, 195, 54, 90, 251, 210, 232, 27, 210, 107, 195, 17, 225, + 153, 135, 16, 27, 42, 124, 13, 143, 43, 77, 114, 145, 27, 246, 181, 191, 134, 63, 95, 118, 205, 74, 125, 4, 100, + 18, 91, 126, 130, 55, 168, 249, 255, 159, 217, 5, 9, 128, 191, 71, 46, 95, 50, 251, 166, 178, 196, 71, 8, 134, + 164, 178, 227, 124, 220, 69, 47, 117, 17, 190, 196, 75, 102, 123, 211, 22, 141, 90, 175, 202, 153, 166, 20, 67, + 89, 70, 25, 69, 64, 44, 228, 39, 20, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 244, 68, 146, 216, 158, 157, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2799, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11412472502483199506" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4470877059125863726" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2203614927178057675" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8698652896704325692" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2841141720688058660" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e0a5abe1a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3726053690349254753" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18032253746801495425" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4328155156073807384" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14782070274881066319" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4550994997059237474" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10417979942187973270" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9db7" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b9e613f466f6ca6129f1b3e0bbeff5fa3e52ebf1b1e94d019dc3247cb1b78b7d2b8dc7be83c1b276dc3578a276124456e0a5abe1a1b33b59a17034cf8611bfa3f6f3e65cf4d811b3c10b22ed28dfe181bcd247698a325954f1b3f2861d66e4bb66241b61b9094198f83423a96429db7ffffff", + "cborBytes": [ + 216, 102, 159, 27, 158, 97, 63, 70, 111, 108, 166, 18, 159, 27, 62, 11, 190, 255, 95, 163, 229, 46, 191, 27, 30, + 148, 208, 25, 220, 50, 71, 203, 27, 120, 183, 210, 184, 220, 123, 232, 60, 27, 39, 109, 195, 87, 138, 39, 97, 36, + 69, 110, 10, 90, 190, 26, 27, 51, 181, 154, 23, 3, 76, 248, 97, 27, 250, 63, 111, 62, 101, 207, 77, 129, 27, 60, + 16, 178, 46, 210, 141, 254, 24, 27, 205, 36, 118, 152, 163, 37, 149, 79, 27, 63, 40, 97, 214, 110, 75, 182, 98, + 65, 182, 27, 144, 148, 25, 143, 131, 66, 58, 150, 66, 157, 183, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2800, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14966455509669803454" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f9fbf1bcfb387fd888e75be1bffffffffffffffebffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 159, 191, 27, 207, 179, 135, 253, 136, 142, 117, + 190, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2801, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10580148067948970421" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ee70bf315cbbb42fc1ce48" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14355171563343366133" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b92d43c9c9d2241b59f06804bee70bf315cbbb42fc1ce48d8669f1bc737d07adadec7f580ffffff", + "cborBytes": [ + 216, 102, 159, 27, 146, 212, 60, 156, 157, 34, 65, 181, 159, 6, 128, 75, 238, 112, 191, 49, 92, 187, 180, 47, 193, + 206, 72, 216, 102, 159, 27, 199, 55, 208, 122, 218, 222, 199, 245, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2802, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3971969092497009126" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1839207759371971107" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13007964489355317233" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9678675466686631424" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9064764697913269496" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8767409628677714166" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5079484950799259772" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8ef0cd3cd790" + }, + { + "_tag": "ByteArray", + "bytearray": "22b0f9e01e080e71f501" + }, + { + "_tag": "ByteArray", + "bytearray": "77d996a9342349cb7738f5" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9884244711937139192" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4fd5c2c18017608ed6" + }, + { + "_tag": "ByteArray", + "bytearray": "b529" + }, + { + "_tag": "ByteArray", + "bytearray": "fdd98b46" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9901699288164403407" + } + }, + { + "_tag": "ByteArray", + "bytearray": "70377c06d17f" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c5361c2db9ef54912bdd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "531464228728769362" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f2d4c3" + } + ] + }, + "cborHex": "d9050a9fd8669f1b371f44d8611d69e69fd8669f1b19862db66d822a239f1bb48592c8aeeb4ff11b8651900ea0250e00ffffd8669f1b7dcc83772f9f1cf880ffd8669f1b79ac189b05acb0f69f1b467df4a68655187c468ef0cd3cd7904a22b0f9e01e080e71f5014b77d996a9342349cb7738f5ffffd8669f1b892be432500be1f89f494fd5c2c18017608ed642b52944fdd98b461b8969e70a87c708cf4670377c06d17fffffffff4ac5361c2db9ef54912bdd1b076023e674348b5243f2d4c3ff", + "cborBytes": [ + 217, 5, 10, 159, 216, 102, 159, 27, 55, 31, 68, 216, 97, 29, 105, 230, 159, 216, 102, 159, 27, 25, 134, 45, 182, + 109, 130, 42, 35, 159, 27, 180, 133, 146, 200, 174, 235, 79, 241, 27, 134, 81, 144, 14, 160, 37, 14, 0, 255, 255, + 216, 102, 159, 27, 125, 204, 131, 119, 47, 159, 28, 248, 128, 255, 216, 102, 159, 27, 121, 172, 24, 155, 5, 172, + 176, 246, 159, 27, 70, 125, 244, 166, 134, 85, 24, 124, 70, 142, 240, 205, 60, 215, 144, 74, 34, 176, 249, 224, + 30, 8, 14, 113, 245, 1, 75, 119, 217, 150, 169, 52, 35, 73, 203, 119, 56, 245, 255, 255, 216, 102, 159, 27, 137, + 43, 228, 50, 80, 11, 225, 248, 159, 73, 79, 213, 194, 193, 128, 23, 96, 142, 214, 66, 181, 41, 68, 253, 217, 139, + 70, 27, 137, 105, 231, 10, 135, 199, 8, 207, 70, 112, 55, 124, 6, 209, 127, 255, 255, 255, 255, 74, 197, 54, 28, + 45, 185, 239, 84, 145, 43, 221, 27, 7, 96, 35, 230, 116, 52, 139, 82, 67, 242, 212, 195, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2803, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7191838736479328014" + }, + "fields": [] + }, + "cborHex": "d8669f1b63ce8b3a11be970e80ff", + "cborBytes": [216, 102, 159, 27, 99, 206, 139, 58, 17, 190, 151, 14, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2804, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17920211405593389308" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17180025095855737724" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7861675343889409255" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3048674109403573779" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e12fbe" + }, + { + "_tag": "ByteArray", + "bytearray": "0e5f80def798f93339" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "339008861840957488" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7186861089279059017" + } + }, + { + "_tag": "ByteArray", + "bytearray": "78fab726a4f5cb8fc9" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1185123209973609521" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e91e18b4b6973eb44c88" + }, + { + "_tag": "ByteArray", + "bytearray": "a618f0501e14a57f77571a" + }, + { + "_tag": "ByteArray", + "bytearray": "2c7e3152a90e394a" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09fd8669f1bf8b16153fa4c28fc9fd8669f1bee6bb5cd0ec70b7c9f419f1b6d1a481283f9a4e741721b2a4f10f32eee2e13ffff43e12fbe490e5f80def798f93339d8669f1b04b466c381bd60309f1b63bcdc15448e24494978fab726a4f5cb8fc9ffffd8669f1b10726747c98c34319f4ae91e18b4b6973eb44c884ba618f0501e14a57f77571a482c7e3152a90e394affffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 216, 102, 159, 27, 248, 177, 97, 83, 250, 76, 40, + 252, 159, 216, 102, 159, 27, 238, 107, 181, 205, 14, 199, 11, 124, 159, 65, 159, 27, 109, 26, 72, 18, 131, 249, + 164, 231, 65, 114, 27, 42, 79, 16, 243, 46, 238, 46, 19, 255, 255, 67, 225, 47, 190, 73, 14, 95, 128, 222, 247, + 152, 249, 51, 57, 216, 102, 159, 27, 4, 180, 102, 195, 129, 189, 96, 48, 159, 27, 99, 188, 220, 21, 68, 142, 36, + 73, 73, 120, 250, 183, 38, 164, 245, 203, 143, 201, 255, 255, 216, 102, 159, 27, 16, 114, 103, 71, 201, 140, 52, + 49, 159, 74, 233, 30, 24, 180, 182, 151, 62, 180, 76, 136, 75, 166, 24, 240, 80, 30, 20, 165, 127, 119, 87, 26, + 72, 44, 126, 49, 82, 169, 14, 57, 74, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2805, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13139637535339964563" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bb6595eb8bb53e8939fa080ffff", + "cborBytes": [216, 102, 159, 27, 182, 89, 94, 184, 187, 83, 232, 147, 159, 160, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2806, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15539160187108450745" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a7" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6f5423f583e6c7fc" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bc46" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17174009273438229815" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12266432318184613943" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b0fa570f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "480bea69df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6072228034554930416" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5374c58885fea8cb3591df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4e0ae9239dfae74" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae347f0b7bd5b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16831239757760593579" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bd7a62fdc347de1b99f9f41a7809f486f5423f583e6c7fcff42bc46d8669f1bee565671408cd5379f1baa3b1f33fac3e837ffffff04bf453b0fa570f71bfffffffffffffff545480bea69df1b5444e339b2d0a4f04b5374c58885fea8cb3591df48d4e0ae9239dfae7447ae347f0b7bd5b91be99493624ac07eab41fa1441fe1bffffffffffffffecffd9050d80ffff", + "cborBytes": [ + 216, 102, 159, 27, 215, 166, 47, 220, 52, 125, 225, 185, 159, 159, 65, 167, 128, 159, 72, 111, 84, 35, 245, 131, + 230, 199, 252, 255, 66, 188, 70, 216, 102, 159, 27, 238, 86, 86, 113, 64, 140, 213, 55, 159, 27, 170, 59, 31, 51, + 250, 195, 232, 55, 255, 255, 255, 4, 191, 69, 59, 15, 165, 112, 247, 27, 255, 255, 255, 255, 255, 255, 255, 245, + 69, 72, 11, 234, 105, 223, 27, 84, 68, 227, 57, 178, 208, 164, 240, 75, 83, 116, 197, 136, 133, 254, 168, 203, 53, + 145, 223, 72, 212, 224, 174, 146, 57, 223, 174, 116, 71, 174, 52, 127, 11, 123, 213, 185, 27, 233, 148, 147, 98, + 74, 192, 126, 171, 65, 250, 20, 65, 254, 27, 255, 255, 255, 255, 255, 255, 255, 236, 255, 217, 5, 13, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2807, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1110481770641754473" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8002309107336910166" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12928728443173677419" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09c5318c0d8a7ea4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10065657930311447420" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4516905524099393881" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1103273465776787482" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11703609847184300218" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2561927896692115159" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7363519372391118305" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2322" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "776530082471625221" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13215124674261325753" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17138025299099951753" + } + }, + { + "_tag": "ByteArray", + "bytearray": "67675bcea20d430c452078e0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7596036898888605416" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10462681199438568693" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3411210158865711712" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6d9cf12" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b0f6939496ca609699f1b6f0de9bc2db095569f9f1bb36c12050cdb296b4809c5318c0d8a7ea41b8bb0668eb6ceb37c1b3eaf45a47ff1a9591b0f4f9d5f29bd501aff414ad8669f1ba26b9325cb2f18ba9f1b238dcbd92e7f46d71b663079db081475e14223221b0ac6c9feeb204205ffffd8669f1bb7658ddfdfd897b99f1bedd67f355882a2894c67675bcea20d430c452078e01b696a8b506303dee8ffffd8669f1b9132e91e02b19cf59f1b2f570d90ed65026044d6d9cf12ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 15, 105, 57, 73, 108, 166, 9, 105, 159, 27, 111, 13, 233, 188, 45, 176, 149, 86, 159, 159, 27, + 179, 108, 18, 5, 12, 219, 41, 107, 72, 9, 197, 49, 140, 13, 138, 126, 164, 27, 139, 176, 102, 142, 182, 206, 179, + 124, 27, 62, 175, 69, 164, 127, 241, 169, 89, 27, 15, 79, 157, 95, 41, 189, 80, 26, 255, 65, 74, 216, 102, 159, + 27, 162, 107, 147, 37, 203, 47, 24, 186, 159, 27, 35, 141, 203, 217, 46, 127, 70, 215, 27, 102, 48, 121, 219, 8, + 20, 117, 225, 66, 35, 34, 27, 10, 198, 201, 254, 235, 32, 66, 5, 255, 255, 216, 102, 159, 27, 183, 101, 141, 223, + 223, 216, 151, 185, 159, 27, 237, 214, 127, 53, 88, 130, 162, 137, 76, 103, 103, 91, 206, 162, 13, 67, 12, 69, 32, + 120, 224, 27, 105, 106, 139, 80, 99, 3, 222, 232, 255, 255, 216, 102, 159, 27, 145, 50, 233, 30, 2, 177, 156, 245, + 159, 27, 47, 87, 13, 144, 237, 101, 2, 96, 68, 214, 217, 207, 18, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2808, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8507790648187638185" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9746" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3799512583399453783" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1708233126582161271" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "283c" + }, + { + "_tag": "ByteArray", + "bytearray": "9dafbd3d7da8" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "afffdc8e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2036723690319093992" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7098867172017470370" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9606623135653631587" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7841244197491251898" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f528f8afc40" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16155635686819181429" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12970364756925706321" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9786963536631727705" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2835740141014957169" + } + } + ] + }, + "cborHex": "d905029f41ebd8669f1b7611be84b09d51a99f429746ffffd8669f1b34ba94905d26b4579f1b17b4dcfa5f7c0f779f42283c469dafbd3d7da8ff44afffdc8ed8669f1b1c43e567c317a0e89f1b62843e14dfc87ba21b855194d803af16631b6cd1b20d8c8f1aba464f528f8afc401be034590f997b3375ffffd8669f1bb3fffe06c7cd705180ffffffd8669f1b87d2477ba6a2865980ff1b275a92a244833c71ff", + "cborBytes": [ + 217, 5, 2, 159, 65, 235, 216, 102, 159, 27, 118, 17, 190, 132, 176, 157, 81, 169, 159, 66, 151, 70, 255, 255, 216, + 102, 159, 27, 52, 186, 148, 144, 93, 38, 180, 87, 159, 27, 23, 180, 220, 250, 95, 124, 15, 119, 159, 66, 40, 60, + 70, 157, 175, 189, 61, 125, 168, 255, 68, 175, 255, 220, 142, 216, 102, 159, 27, 28, 67, 229, 103, 195, 23, 160, + 232, 159, 27, 98, 132, 62, 20, 223, 200, 123, 162, 27, 133, 81, 148, 216, 3, 175, 22, 99, 27, 108, 209, 178, 13, + 140, 143, 26, 186, 70, 79, 82, 143, 138, 252, 64, 27, 224, 52, 89, 15, 153, 123, 51, 117, 255, 255, 216, 102, 159, + 27, 179, 255, 254, 6, 199, 205, 112, 81, 128, 255, 255, 255, 216, 102, 159, 27, 135, 210, 71, 123, 166, 162, 134, + 89, 128, 255, 27, 39, 90, 146, 162, 68, 131, 60, 113, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2809, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aba053036573536906f65c2c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17894146690772234288" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5432510156051881378" + }, + "fields": [] + } + ] + }, + "cborHex": "d905099f4caba053036573536906f65c2c9f1bf854c79ba635f030ffd8669f1b4b6427344a2c9da280ffff", + "cborBytes": [ + 217, 5, 9, 159, 76, 171, 160, 83, 3, 101, 115, 83, 105, 6, 246, 92, 44, 159, 27, 248, 84, 199, 155, 166, 53, 240, + 48, 255, 216, 102, 159, 27, 75, 100, 39, 52, 74, 44, 157, 162, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2810, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7820530310126981069" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5651827207824752386" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14478367047161371769" + } + } + ] + }, + "cborHex": "d8669f1b6c881ae1d24b4fcd9fd8669f1b4e6f52e69e483f0280ff1bc8ed7e1ea5c65c79ffff", + "cborBytes": [ + 216, 102, 159, 27, 108, 136, 26, 225, 210, 75, 79, 205, 159, 216, 102, 159, 27, 78, 111, 82, 230, 158, 72, 63, 2, + 128, 255, 27, 200, 237, 126, 30, 165, 198, 92, 121, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2811, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17584366288021078687" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1760424903194224509" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5235718185379776927" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2209650fcd3816d1ca3a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10509527950707131768" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10821113091445549035" + } + }, + { + "_tag": "ByteArray", + "bytearray": "35f12b7d" + }, + { + "_tag": "ByteArray", + "bytearray": "bc59a4ee" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18251517468620522277" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eff44f" + }, + { + "_tag": "ByteArray", + "bytearray": "37d56305729f6204b7" + }, + { + "_tag": "ByteArray", + "bytearray": "98ce9581e3cad1abac88dcf5" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5493372969347070008" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7594919513259022094" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3145796288804387757" + } + }, + { + "_tag": "ByteArray", + "bytearray": "314242976ac2a69a866b4924" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10076986487009515289" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9639468230147523982" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12038655700281731260" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4791601735214676078" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea7c9c51790a6e449f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12834304647164496388" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7071968502333583849" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea98c889fa0df0fb793426" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "43a053cd8d199f6affd1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6328062858316164992" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "9f0198170fb950a7" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4761926381820160340" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6a41ca2d2b" + }, + { + "_tag": "ByteArray", + "bytearray": "3c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1225933178173711430" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18335249069635514537" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10246074774422358574" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18382286925647034067" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2903001626926820602" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bf40837f915d9c29f9f1b186e491f50a4a77dd8669f1b48a901f3179d499f9f9f4a2209650fcd3816d1ca3a1b91d957fd42f005781b962c510621f0e7eb4435f12b7d44bc59a4eeffd8669f1bfd4a6a6fe0f683259f43eff44f4937d56305729f6204b74c98ce9581e3cad1abac88dcf5ffff1b4c3c619c48aa3838d8669f1b6966930ec57c970e9f1b2ba81d0eb9ed7bad4c314242976ac2a69a866b49241b8bd8a5d1dc9d1719ffff80ffffd8669f1b85c64548819b458e9fd8669f1ba711e5936c8628bc9f1b427f3064249db86e49ea7c9c51790a6e449f1bb21c9c13d9628a041b6224ade24c5831e94bea98c889fa0df0fb793426ffff9f4a43a053cd8d199f6affd1ffd8669f1b57d1cba462472f8080ff489f0198170fb950a7ffff9fd8669f1b4215c2d082f3a9549f456a41ca2d2b413c1b110363baf368e4461bfe73e3e26fefb0a91b8e315eb8a7890a2effff801bff1b0090ba7fb6d31b28498899535aacfaffffff", + "cborBytes": [ + 216, 102, 159, 27, 244, 8, 55, 249, 21, 217, 194, 159, 159, 27, 24, 110, 73, 31, 80, 164, 167, 125, 216, 102, 159, + 27, 72, 169, 1, 243, 23, 157, 73, 159, 159, 159, 74, 34, 9, 101, 15, 205, 56, 22, 209, 202, 58, 27, 145, 217, 87, + 253, 66, 240, 5, 120, 27, 150, 44, 81, 6, 33, 240, 231, 235, 68, 53, 241, 43, 125, 68, 188, 89, 164, 238, 255, + 216, 102, 159, 27, 253, 74, 106, 111, 224, 246, 131, 37, 159, 67, 239, 244, 79, 73, 55, 213, 99, 5, 114, 159, 98, + 4, 183, 76, 152, 206, 149, 129, 227, 202, 209, 171, 172, 136, 220, 245, 255, 255, 27, 76, 60, 97, 156, 72, 170, + 56, 56, 216, 102, 159, 27, 105, 102, 147, 14, 197, 124, 151, 14, 159, 27, 43, 168, 29, 14, 185, 237, 123, 173, 76, + 49, 66, 66, 151, 106, 194, 166, 154, 134, 107, 73, 36, 27, 139, 216, 165, 209, 220, 157, 23, 25, 255, 255, 128, + 255, 255, 216, 102, 159, 27, 133, 198, 69, 72, 129, 155, 69, 142, 159, 216, 102, 159, 27, 167, 17, 229, 147, 108, + 134, 40, 188, 159, 27, 66, 127, 48, 100, 36, 157, 184, 110, 73, 234, 124, 156, 81, 121, 10, 110, 68, 159, 27, 178, + 28, 156, 19, 217, 98, 138, 4, 27, 98, 36, 173, 226, 76, 88, 49, 233, 75, 234, 152, 200, 137, 250, 13, 240, 251, + 121, 52, 38, 255, 255, 159, 74, 67, 160, 83, 205, 141, 25, 159, 106, 255, 209, 255, 216, 102, 159, 27, 87, 209, + 203, 164, 98, 71, 47, 128, 128, 255, 72, 159, 1, 152, 23, 15, 185, 80, 167, 255, 255, 159, 216, 102, 159, 27, 66, + 21, 194, 208, 130, 243, 169, 84, 159, 69, 106, 65, 202, 45, 43, 65, 60, 27, 17, 3, 99, 186, 243, 104, 228, 70, 27, + 254, 115, 227, 226, 111, 239, 176, 169, 27, 142, 49, 94, 184, 167, 137, 10, 46, 255, 255, 128, 27, 255, 27, 0, + 144, 186, 127, 182, 211, 27, 40, 73, 136, 153, 83, 90, 172, 250, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2812, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2457992274802892647" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "caa79e74c5f0c7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16537143766997825141" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "248064726257375144" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b4cb4ca6d55e071545948df5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11606341738107527351" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa93d4fc5e" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14101570698147856599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3d9e" + }, + { + "_tag": "ByteArray", + "bytearray": "437efae3bff5f24e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "470853237803610012" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b665dd9765f4d2c11926" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11004196129556842819" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e3fa724570353a6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12504591046361493017" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3833237762104379090" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1063219051757463404" + } + }, + { + "_tag": "ByteArray", + "bytearray": "464e09adb50353b4" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15747854350506988313" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d1de493424c792d0" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3743988305862838766" + } + } + ] + }, + "cborHex": "d8669f1b221c8af37047df679f47caa79e74c5f0c7d8669f1be57fbca3777876759fd8669f1b03714d8de1e017a89f4cb4cb4ca6d55e071545948df51ba112025159b060b745fa93d4fc5effffffffd8669f1bc3b2d7d62e2900d79f423d9e48437efae3bff5f24effff9fbf1b0688ce866ca06f9c4ab665dd9765f4d2c119261b98b6c213bcf6c943481e3fa724570353a61bad893b4df3e82e191b3532656f6dd846d2ff9f41d51b0ec150182a6e676c48464e09adb50353b4ff80d8669f1bda8b9e18988f13199f48d1de493424c792d0ffffa0ff1b33f55187162bc9eeffff", + "cborBytes": [ + 216, 102, 159, 27, 34, 28, 138, 243, 112, 71, 223, 103, 159, 71, 202, 167, 158, 116, 197, 240, 199, 216, 102, 159, + 27, 229, 127, 188, 163, 119, 120, 118, 117, 159, 216, 102, 159, 27, 3, 113, 77, 141, 225, 224, 23, 168, 159, 76, + 180, 203, 76, 166, 213, 94, 7, 21, 69, 148, 141, 245, 27, 161, 18, 2, 81, 89, 176, 96, 183, 69, 250, 147, 212, + 252, 94, 255, 255, 255, 255, 216, 102, 159, 27, 195, 178, 215, 214, 46, 41, 0, 215, 159, 66, 61, 158, 72, 67, 126, + 250, 227, 191, 245, 242, 78, 255, 255, 159, 191, 27, 6, 136, 206, 134, 108, 160, 111, 156, 74, 182, 101, 221, 151, + 101, 244, 210, 193, 25, 38, 27, 152, 182, 194, 19, 188, 246, 201, 67, 72, 30, 63, 167, 36, 87, 3, 83, 166, 27, + 173, 137, 59, 77, 243, 232, 46, 25, 27, 53, 50, 101, 111, 109, 216, 70, 210, 255, 159, 65, 213, 27, 14, 193, 80, + 24, 42, 110, 103, 108, 72, 70, 78, 9, 173, 181, 3, 83, 180, 255, 128, 216, 102, 159, 27, 218, 139, 158, 24, 152, + 143, 19, 25, 159, 72, 209, 222, 73, 52, 36, 199, 146, 208, 255, 255, 160, 255, 27, 51, 245, 81, 135, 22, 43, 201, + 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2813, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12780324129979898597" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2592164875560811859" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d87989073bbb4173ca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6805595001416677915" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18258868034385380016" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8134808996749733827" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6afc6ae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10705451172789942053" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "869c4a58d441c7b8a6ef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11720795429087212060" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acd8e0e8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18373294828359448214" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "867867352430424886" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "636941796597287120" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1172623030479645109" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10147751426122190885" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "485c9278" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14986805775254821865" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3438213dcb7cfab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18033657850470776755" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18057797193359288433" + } + } + } + ] + } + ] + }, + "cborHex": "d9050d9f1bb15cd51549ce1ae51bfffffffffffffffdbf1b23f938386f0bfd5349d87989073bbb4173ca1b5e725498a09d7a1b1bfd6487bcd64682b01b70e4a5aeb6eb6fc344a6afc6ae1b9491671f2a6ef7254a869c4a58d441c7b8a6ef1ba2a8a157e3c3f21c44acd8e0e81bfefb0e4cede2f6961b0c0b48c245c63336ffbf1b08d6df3078c7c8d01b1045fe6ef32e69b51b8cd40e282efa102544485c92781bcffbd472f7d61be948e3438213dcb7cfab1bfa446c44c23ebfb31bfa9a2edf8039e871ffff", + "cborBytes": [ + 217, 5, 13, 159, 27, 177, 92, 213, 21, 73, 206, 26, 229, 27, 255, 255, 255, 255, 255, 255, 255, 253, 191, 27, 35, + 249, 56, 56, 111, 11, 253, 83, 73, 216, 121, 137, 7, 59, 187, 65, 115, 202, 27, 94, 114, 84, 152, 160, 157, 122, + 27, 27, 253, 100, 135, 188, 214, 70, 130, 176, 27, 112, 228, 165, 174, 182, 235, 111, 195, 68, 166, 175, 198, 174, + 27, 148, 145, 103, 31, 42, 110, 247, 37, 74, 134, 156, 74, 88, 212, 65, 199, 184, 166, 239, 27, 162, 168, 161, 87, + 227, 195, 242, 28, 68, 172, 216, 224, 232, 27, 254, 251, 14, 76, 237, 226, 246, 150, 27, 12, 11, 72, 194, 69, 198, + 51, 54, 255, 191, 27, 8, 214, 223, 48, 120, 199, 200, 208, 27, 16, 69, 254, 110, 243, 46, 105, 181, 27, 140, 212, + 14, 40, 46, 250, 16, 37, 68, 72, 92, 146, 120, 27, 207, 251, 212, 114, 247, 214, 27, 233, 72, 227, 67, 130, 19, + 220, 183, 207, 171, 27, 250, 68, 108, 68, 194, 62, 191, 179, 27, 250, 154, 46, 223, 128, 57, 232, 113, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2814, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1451e5d6db293e40780" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "812f40f7a24169f151e9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2935106589697986047" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905009fbf4ac1451e5d6db293e407804a812f40f7a24169f151e9ffd8669f1b28bb97e478db4dff9f809f1bffffffffffffffedffffffff", + "cborBytes": [ + 217, 5, 0, 159, 191, 74, 193, 69, 30, 93, 109, 178, 147, 228, 7, 128, 74, 129, 47, 64, 247, 162, 65, 105, 241, 81, + 233, 255, 216, 102, 159, 27, 40, 187, 151, 228, 120, 219, 77, 255, 159, 128, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 237, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2815, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11297146729226044444" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3806170390807536145" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13118132302382378032" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18052282320189174681" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8690142890424943183" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10050552000489647594" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01e434fa06e803" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fea1051" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b9cc787186afc041c9fd8669f1b34d23bcdf2b162119fd8669f1bfffffffffffffffa80ff12ffffbf091bb60cf7d380142c301bfa86972007f0b3991b789996ea9f2a424fffbf1b8b7abbcb59c6edea4701e434fa06e803441fea105103ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 156, 199, 135, 24, 106, 252, 4, 28, 159, 216, 102, 159, 27, 52, 210, 59, 205, 242, 177, 98, 17, + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 128, 255, 18, 255, 255, 191, 9, 27, 182, 12, 247, + 211, 128, 20, 44, 48, 27, 250, 134, 151, 32, 7, 240, 179, 153, 27, 120, 153, 150, 234, 159, 42, 66, 79, 255, 191, + 27, 139, 122, 187, 203, 89, 198, 237, 234, 71, 1, 228, 52, 250, 6, 232, 3, 68, 31, 234, 16, 81, 3, 255, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2816, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17905771104087183312" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd6c8d04293f7bccd9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32f5daa1b1b6e69ee30d16" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1769232852007534624" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16539356452780221757" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12161331518838715665" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d3" + }, + { + "_tag": "ByteArray", + "bytearray": "1bfc5c083af3a232" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10287693084259475240" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14048029636289520300" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15990390744355145675" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14973360937540676802" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "56" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5925395264940437639" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15255602363968598389" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c684d1a76fba9ee30b2b24e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a8930b395029bd4a72a34" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "312e7af1249d0d7463caca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e4ed14cf0bb34" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "732ff7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "775e06d5617016" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2750a1aeda7a39c0f53fdb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5ebb37dd581" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "673359597cdc" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8316044670515696645" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18397300467473109010" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b93f35ed2e5d" + }, + { + "_tag": "ByteArray", + "bytearray": "42b7d338" + }, + { + "_tag": "ByteArray", + "bytearray": "42" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16069877876378095331" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12881352791621254498" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6432895358734913019" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f2a5b3c8bf356" + }, + { + "_tag": "ByteArray", + "bytearray": "0ee8efa096436198" + }, + { + "_tag": "ByteArray", + "bytearray": "af12" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14659666377628564835" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14483125279415433867" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc7832e5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c56809fe0176f75eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13641288382878168006" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9651fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14459530593844037581" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87e9f9fd8669f1bf87e13f348920fd080ffbf49cd6c8d04293f7bccd94b32f5daa1b1b6e69ee30d16ff1b188d93e7b4dc4020a0d8669f1be58799108587a53d9f1ba8c5ba953824b51141d3481bfc5c083af3a232ffffffd8669f1b8ec53a5a85875f289f9f1bc2f4a086493262acff80ffffd8669f1bdde947a948fb87cb9fd8669f1bcfcc1070bfd26cc29f4156ffff9f1b523b3b99708e7087ff1bd3b6c985baf53175bf4c1c684d1a76fba9ee30b2b24e4b0a8930b395029bd4a72a3441304b312e7af1249d0d7463caca473e4ed14cf0bb3443732ff747775e06d56170164b2750a1aeda7a39c0f53fdb46f5ebb37dd58146673359597cdcffd8669f1b736886914a5e540580ffffffd8669f1bff50574d55dcd0129f9f46b93f35ed2e5d4442b7d33841421bdf03acc9656ccee3ffd8669f1bb2c3c21d9b123d629f1b59463c3eeea74dfb477f2a5b3c8bf356480ee8efa09643619842af121bcb7198e67449bd63ffff9f1bc8fe65b4ed097a8bff44fc7832e5bf491c56809fe0176f75eb1bbd4f9782741db3c641334225c3439651fc1bc8aa927718f787cdffffffff", + "cborBytes": [ + 216, 126, 159, 159, 216, 102, 159, 27, 248, 126, 19, 243, 72, 146, 15, 208, 128, 255, 191, 73, 205, 108, 141, 4, + 41, 63, 123, 204, 217, 75, 50, 245, 218, 161, 177, 182, 230, 158, 227, 13, 22, 255, 27, 24, 141, 147, 231, 180, + 220, 64, 32, 160, 216, 102, 159, 27, 229, 135, 153, 16, 133, 135, 165, 61, 159, 27, 168, 197, 186, 149, 56, 36, + 181, 17, 65, 211, 72, 27, 252, 92, 8, 58, 243, 162, 50, 255, 255, 255, 216, 102, 159, 27, 142, 197, 58, 90, 133, + 135, 95, 40, 159, 159, 27, 194, 244, 160, 134, 73, 50, 98, 172, 255, 128, 255, 255, 216, 102, 159, 27, 221, 233, + 71, 169, 72, 251, 135, 203, 159, 216, 102, 159, 27, 207, 204, 16, 112, 191, 210, 108, 194, 159, 65, 86, 255, 255, + 159, 27, 82, 59, 59, 153, 112, 142, 112, 135, 255, 27, 211, 182, 201, 133, 186, 245, 49, 117, 191, 76, 28, 104, + 77, 26, 118, 251, 169, 238, 48, 178, 178, 78, 75, 10, 137, 48, 179, 149, 2, 155, 212, 167, 42, 52, 65, 48, 75, 49, + 46, 122, 241, 36, 157, 13, 116, 99, 202, 202, 71, 62, 78, 209, 76, 240, 187, 52, 67, 115, 47, 247, 71, 119, 94, 6, + 213, 97, 112, 22, 75, 39, 80, 161, 174, 218, 122, 57, 192, 245, 63, 219, 70, 245, 235, 179, 125, 213, 129, 70, + 103, 51, 89, 89, 124, 220, 255, 216, 102, 159, 27, 115, 104, 134, 145, 74, 94, 84, 5, 128, 255, 255, 255, 216, + 102, 159, 27, 255, 80, 87, 77, 85, 220, 208, 18, 159, 159, 70, 185, 63, 53, 237, 46, 93, 68, 66, 183, 211, 56, 65, + 66, 27, 223, 3, 172, 201, 101, 108, 206, 227, 255, 216, 102, 159, 27, 178, 195, 194, 29, 155, 18, 61, 98, 159, 27, + 89, 70, 60, 62, 238, 167, 77, 251, 71, 127, 42, 91, 60, 139, 243, 86, 72, 14, 232, 239, 160, 150, 67, 97, 152, 66, + 175, 18, 27, 203, 113, 152, 230, 116, 73, 189, 99, 255, 255, 159, 27, 200, 254, 101, 180, 237, 9, 122, 139, 255, + 68, 252, 120, 50, 229, 191, 73, 28, 86, 128, 159, 224, 23, 111, 117, 235, 27, 189, 79, 151, 130, 116, 29, 179, + 198, 65, 51, 66, 37, 195, 67, 150, 81, 252, 27, 200, 170, 146, 119, 24, 247, 135, 205, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2817, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13002456618389475839" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b59a1ae949d9d1543b" + }, + { + "_tag": "ByteArray", + "bytearray": "6e30" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bb47201678a8811ff9f49b59a1ae949d9d1543b426e30a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 180, 114, 1, 103, 138, 136, 17, 255, 159, 73, 181, 154, 26, 233, 73, 217, 209, 84, 59, 66, 110, + 48, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2818, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12337657922802989709" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "608fc7325f4ab0dd0a132601" + }, + { + "_tag": "ByteArray", + "bytearray": "15f01fd2c3" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14381919389842505427" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17409040499585626869" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e499b7eeef8663f416030" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1409882680447833697" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ad4c" + }, + { + "_tag": "ByteArray", + "bytearray": "11ad444392d8514d" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3829401484207337956" + } + } + ] + }, + "cborHex": "d87d9f9fd8669f1bab382a8358f4ba8d9f4c608fc7325f4ab0dd0a1326014515f01fd2c3ffffd8669f1bc796d77c83dd7ed39f1bf1995618ea30b2f54b4e499b7eeef8663f416030ffff9f1b1390e8d3f711966142ad4c4811ad444392d8514dffff41f51b3524c45c608831e4ff", + "cborBytes": [ + 216, 125, 159, 159, 216, 102, 159, 27, 171, 56, 42, 131, 88, 244, 186, 141, 159, 76, 96, 143, 199, 50, 95, 74, + 176, 221, 10, 19, 38, 1, 69, 21, 240, 31, 210, 195, 255, 255, 216, 102, 159, 27, 199, 150, 215, 124, 131, 221, + 126, 211, 159, 27, 241, 153, 86, 24, 234, 48, 178, 245, 75, 78, 73, 155, 126, 238, 248, 102, 63, 65, 96, 48, 255, + 255, 159, 27, 19, 144, 232, 211, 247, 17, 150, 97, 66, 173, 76, 72, 17, 173, 68, 67, 146, 216, 81, 77, 255, 255, + 65, 245, 27, 53, 36, 196, 92, 96, 136, 49, 228, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2819, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7258311228311503179" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0556cfe808cffc" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7159073808031812361" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27b2beef12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11574023031262575545" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bb989109d1b707698e1b91e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32342fd2e3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "534dd8e2ba04ddafd5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2848b7e03119" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9342397847138518611" + } + } + } + ] + } + ] + }, + "cborHex": "d9050a9fd8669f1b64bab39b20bc814b9f9f470556cfe808cffcffffffbf41181b635a23b2b08a0b094527b2beef121ba09f30a008987bb94c3bb989109d1b707698e1b91e4532342fd2e349534dd8e2ba04ddafd5462848b7e0311941c41b81a6dd580510c653ffff", + "cborBytes": [ + 217, 5, 10, 159, 216, 102, 159, 27, 100, 186, 179, 155, 32, 188, 129, 75, 159, 159, 71, 5, 86, 207, 232, 8, 207, + 252, 255, 255, 255, 191, 65, 24, 27, 99, 90, 35, 178, 176, 138, 11, 9, 69, 39, 178, 190, 239, 18, 27, 160, 159, + 48, 160, 8, 152, 123, 185, 76, 59, 185, 137, 16, 157, 27, 112, 118, 152, 225, 185, 30, 69, 50, 52, 47, 210, 227, + 73, 83, 77, 216, 226, 186, 4, 221, 175, 213, 70, 40, 72, 183, 224, 49, 25, 65, 196, 27, 129, 166, 221, 88, 5, 16, + 198, 83, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2820, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "57f71d0b4e0d2803eddd5c34" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9997679774788875828" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7058febc7ae97121" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4678331486270696011" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3e" + }, + { + "_tag": "ByteArray", + "bytearray": "2af184b9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5199784036264272545" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14750312146587607658" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7096998342035133485" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03c7324ffdc5522447248d3f" + } + ] + } + ] + } + ] + }, + "cborHex": "d87b9f4c57f71d0b4e0d2803eddd5c341b8abee4c90265f634487058febc7ae97121d8669f1b40ecc5b32cb0aa4b9f413e442af184b99f1b48295808064762a11bccb3a2bf2f7be26a1b627d9a63fc8a542d4c03c7324ffdc5522447248d3fffffffff", + "cborBytes": [ + 216, 123, 159, 76, 87, 247, 29, 11, 78, 13, 40, 3, 237, 221, 92, 52, 27, 138, 190, 228, 201, 2, 101, 246, 52, 72, + 112, 88, 254, 188, 122, 233, 113, 33, 216, 102, 159, 27, 64, 236, 197, 179, 44, 176, 170, 75, 159, 65, 62, 68, 42, + 241, 132, 185, 159, 27, 72, 41, 88, 8, 6, 71, 98, 161, 27, 204, 179, 162, 191, 47, 123, 226, 106, 27, 98, 125, + 154, 99, 252, 138, 84, 45, 76, 3, 199, 50, 79, 253, 197, 82, 36, 71, 36, 141, 63, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2821, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5902373435791373953" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8009949627063421623" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13edde42acfed517" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14575065950066373829" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f2fa5f6d6d36a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "855908310270" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b49b617f3d9d178ef628c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a607e15099e8c994b738" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "287319" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd5ff27291" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2ca08d887" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050b9f9f1b51e9715e240bf6811b6f290ebf4de34ab7bf4813edde42acfed5171bca4509427398f4c5475f2fa5f6d6d36a414a468559083102704b2b49b617f3d9d178ef628c4aa607e15099e8c994b7384328731945dd5ff2729145e2ca08d887ffffff", + "cborBytes": [ + 217, 5, 11, 159, 159, 27, 81, 233, 113, 94, 36, 11, 246, 129, 27, 111, 41, 14, 191, 77, 227, 74, 183, 191, 72, 19, + 237, 222, 66, 172, 254, 213, 23, 27, 202, 69, 9, 66, 115, 152, 244, 197, 71, 95, 47, 165, 246, 214, 211, 106, 65, + 74, 70, 133, 89, 8, 49, 2, 112, 75, 43, 73, 182, 23, 243, 217, 209, 120, 239, 98, 140, 74, 166, 7, 225, 80, 153, + 232, 201, 148, 183, 56, 67, 40, 115, 25, 69, 221, 95, 242, 114, 145, 69, 226, 202, 8, 216, 135, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2822, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10857438020628298833" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11258350567652815835" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3706587169662690896" + } + } + } + ] + } + ] + }, + "cborHex": "d905049fbf1b96ad5e5ac65ebc5141b11b9c3db23125c373db1b3370716478c3e650ffff", + "cborBytes": [ + 217, 5, 4, 159, 191, 27, 150, 173, 94, 90, 198, 94, 188, 81, 65, 177, 27, 156, 61, 178, 49, 37, 195, 115, 219, 27, + 51, 112, 113, 100, 120, 195, 230, 80, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2823, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11633481833317130533" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13058662478741694273" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6325929259084566402" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1b8d025358f1e6e9d0aa" + }, + { + "_tag": "ByteArray", + "bytearray": "01" + }, + { + "_tag": "ByteArray", + "bytearray": "58b9fa1ac267" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1ba1726e172fd3e1259fa0d8669f1bb539b0562f1ee7419fd9050a9f1bffffffffffffffebffd8669f1b57ca372519fc4f829f4a1b8d025358f1e6e9d0aa41014658b9fa1ac267ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 161, 114, 110, 23, 47, 211, 225, 37, 159, 160, 216, 102, 159, 27, 181, 57, 176, 86, 47, 30, + 231, 65, 159, 217, 5, 10, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255, 216, 102, 159, 27, 87, 202, 55, + 37, 25, 252, 79, 130, 159, 74, 27, 141, 2, 83, 88, 241, 230, 233, 208, 170, 65, 1, 70, 88, 185, 250, 26, 194, 103, + 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2824, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16491987788562559661" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3165525370036348504" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7784477924520402213" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10891834935380529053" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15304674218902587190" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39de190add51f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9afb79fc07953c6ae64ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd01a8f00e658ce3ed1c99" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "202e39782175dd650ced" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7425398628324680479" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cc3b4d0bfdb29" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9133511731247855056" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "edaee8edb7c31a35bc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10458739258781384341" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2147560509037038234" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11159532663893274601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9919498916289766777" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17450361563274270115" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc4a077947e42d0449a9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "641143644706869128" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0265645b15b352e40e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1afa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "552832edb8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3ea9c5ac610d3fc15bd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c75eedaeb5f54e45563dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed2a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a01636fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1647e62c7d947d6535ce2050" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f889d6a7fcf9db4efb44" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12119885522122580418" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1be4df4f83f159f2ad9fbf1b2bee348d6880e6581b6c08056dace89d251b9727922a938bcf9d1bd465201d4cc487364739de190add51f64bc9afb79fc07953c6ae64ae4bcd01a8f00e658ce3ed1c994a202e39782175dd650cedffbf1b670c50b604f7231f472cc3b4d0bfdb291b7ec0c08734e435d049edaee8edb7c31a35bc1b9124e7f16e18be951b1dcdaae79acf4a9a1b9ade9fd502ba2fe91b89a923b56752e5791bf22c2362c517d5a34abc4a077947e42d0449a9ffd8669f1b08e5ccbf78c08f889fbf490265645b15b352e40e421afa45552832edb84ac3ea9c5ac610d3fc15bd4b6c75eedaeb5f54e45563dc42ed2a44a01636fd4c1647e62c7d947d6535ce20504af889d6a7fcf9db4efb441ba8327bab208421c2ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 228, 223, 79, 131, 241, 89, 242, 173, 159, 191, 27, 43, 238, 52, 141, 104, 128, 230, 88, 27, + 108, 8, 5, 109, 172, 232, 157, 37, 27, 151, 39, 146, 42, 147, 139, 207, 157, 27, 212, 101, 32, 29, 76, 196, 135, + 54, 71, 57, 222, 25, 10, 221, 81, 246, 75, 201, 175, 183, 159, 192, 121, 83, 198, 174, 100, 174, 75, 205, 1, 168, + 240, 14, 101, 140, 227, 237, 28, 153, 74, 32, 46, 57, 120, 33, 117, 221, 101, 12, 237, 255, 191, 27, 103, 12, 80, + 182, 4, 247, 35, 31, 71, 44, 195, 180, 208, 191, 219, 41, 27, 126, 192, 192, 135, 52, 228, 53, 208, 73, 237, 174, + 232, 237, 183, 195, 26, 53, 188, 27, 145, 36, 231, 241, 110, 24, 190, 149, 27, 29, 205, 170, 231, 154, 207, 74, + 154, 27, 154, 222, 159, 213, 2, 186, 47, 233, 27, 137, 169, 35, 181, 103, 82, 229, 121, 27, 242, 44, 35, 98, 197, + 23, 213, 163, 74, 188, 74, 7, 121, 71, 228, 45, 4, 73, 169, 255, 216, 102, 159, 27, 8, 229, 204, 191, 120, 192, + 143, 136, 159, 191, 73, 2, 101, 100, 91, 21, 179, 82, 228, 14, 66, 26, 250, 69, 85, 40, 50, 237, 184, 74, 195, + 234, 156, 90, 198, 16, 211, 252, 21, 189, 75, 108, 117, 238, 218, 235, 95, 84, 228, 85, 99, 220, 66, 237, 42, 68, + 160, 22, 54, 253, 76, 22, 71, 230, 44, 125, 148, 125, 101, 53, 206, 32, 80, 74, 248, 137, 214, 167, 252, 249, 219, + 78, 251, 68, 27, 168, 50, 123, 171, 32, 132, 33, 194, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2825, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1386066361665072304" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "29f2c2" + } + ] + }, + "cborHex": "d8669f1b133c4c03222a2cb09f804329f2c2ffff", + "cborBytes": [216, 102, 159, 27, 19, 60, 76, 3, 34, 42, 44, 176, 159, 128, 67, 41, 242, 194, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2826, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9678151370125018621" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9627230853502094774" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8814944595856409473" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b4c652c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16202132459986540133" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81575c406087f7a7cd6533" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b864fb364e2c305fd9fd8669f1b859acb7439ac4db69fd8669f1b7a54f96806c5438180ffffffbf12446b4c652c1be0d989a13952d6654b81575c406087f7a7cd6533ffffff", + "cborBytes": [ + 216, 102, 159, 27, 134, 79, 179, 100, 226, 195, 5, 253, 159, 216, 102, 159, 27, 133, 154, 203, 116, 57, 172, 77, + 182, 159, 216, 102, 159, 27, 122, 84, 249, 104, 6, 197, 67, 129, 128, 255, 255, 255, 191, 18, 68, 107, 76, 101, + 44, 27, 224, 217, 137, 161, 57, 82, 214, 101, 75, 129, 87, 92, 64, 96, 135, 247, 167, 205, 101, 51, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2827, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3333187541397818205" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8383756988084281968" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4178684966519246709" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f4793bd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7908109115357959275" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "854b543f0c5f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8444751218080049260" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1277742900509928352" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13073518493298874841" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7d0b74d9bec2b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17746168256719463902" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "629d" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9fbf1b2e41dc68aec64b5d1b7459168fc5f662701b39fdabd661a50f75448f4793bd1b6dbf3f5769f0946b46854b543f0c5f1b7531c87d9a35686c1b11bb7465f32beba01bb56e77cd9d9459d947b7d0b74d9bec2b1bf6470e019a13a5de42629dffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 191, 27, 46, 65, 220, 104, 174, 198, 75, 93, 27, + 116, 89, 22, 143, 197, 246, 98, 112, 27, 57, 253, 171, 214, 97, 165, 15, 117, 68, 143, 71, 147, 189, 27, 109, 191, + 63, 87, 105, 240, 148, 107, 70, 133, 75, 84, 63, 12, 95, 27, 117, 49, 200, 125, 154, 53, 104, 108, 27, 17, 187, + 116, 101, 243, 43, 235, 160, 27, 181, 110, 119, 205, 157, 148, 89, 217, 71, 183, 208, 183, 77, 155, 236, 43, 27, + 246, 71, 14, 1, 154, 19, 165, 222, 66, 98, 157, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2828, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6865697820612306994" + }, + "fields": [] + }, + "cborHex": "d8669f1b5f47dbcab4c5283280ff", + "cborBytes": [216, 102, 159, 27, 95, 71, 219, 202, 180, 197, 40, 50, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2829, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2f9328" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f432f9328ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 67, 47, 147, 40, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2830, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12745149993558172440" + }, + "fields": [] + }, + "cborHex": "d8669f1bb0dfde64771b631880ff", + "cborBytes": [216, 102, 159, 27, 176, 223, 222, 100, 119, 27, 99, 24, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2831, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9190081983890354613" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5fc1af27c85543fb56ecaef5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94ce01d804ae0c8cf56f81a1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb95f9b1969d377a7627" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1427630179189303828" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de305166bb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10175486775178631133" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "400162161286421370" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0c24" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d1c951" + }, + { + "_tag": "ByteArray", + "bytearray": "cc27" + }, + { + "_tag": "ByteArray", + "bytearray": "1fae3626d7" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2964050555794327758" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5849ed3ec8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4504200715404149529" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11d604e8829d826747a2cb5f" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18221332781979222506" + } + } + ] + }, + "cborHex": "d8669f1b7f89badf8a8071b59fbf4c5fc1af27c85543fb56ecaef5416e41aa4c94ce01d804ae0c8cf56f81a14acb95f9b1969d377a76271b13cff6158534aa1445de305166bb1b8d36974f5b3517ddffd8669f1b058da95d94079b7a9f9f420c24ff43d1c95142cc27451fae3626d7ffffbf1b29226c46ba6b88ce455849ed3ec81b3e8222afb6b983194c11d604e8829d826747a2cb5fff1bfcdf2d9fdc0d41eaffff", + "cborBytes": [ + 216, 102, 159, 27, 127, 137, 186, 223, 138, 128, 113, 181, 159, 191, 76, 95, 193, 175, 39, 200, 85, 67, 251, 86, + 236, 174, 245, 65, 110, 65, 170, 76, 148, 206, 1, 216, 4, 174, 12, 140, 245, 111, 129, 161, 74, 203, 149, 249, + 177, 150, 157, 55, 122, 118, 39, 27, 19, 207, 246, 21, 133, 52, 170, 20, 69, 222, 48, 81, 102, 187, 27, 141, 54, + 151, 79, 91, 53, 23, 221, 255, 216, 102, 159, 27, 5, 141, 169, 93, 148, 7, 155, 122, 159, 159, 66, 12, 36, 255, + 67, 209, 201, 81, 66, 204, 39, 69, 31, 174, 54, 38, 215, 255, 255, 191, 27, 41, 34, 108, 70, 186, 107, 136, 206, + 69, 88, 73, 237, 62, 200, 27, 62, 130, 34, 175, 182, 185, 131, 25, 76, 17, 214, 4, 232, 130, 157, 130, 103, 71, + 162, 203, 95, 255, 27, 252, 223, 45, 159, 220, 13, 65, 234, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2832, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1448922169867388893" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "76f521fba06d2dab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "664c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "caa5fa64" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fc561fa498037e679" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7f77e9914cda45c0d743" + } + ] + }, + "cborHex": "d8669f1b141b9b096a2247dd9fd8669f1bffffffffffffffeb80ffbf4876f521fba06d2dab42664c44caa5fa64491fc561fa498037e679ff4a7f77e9914cda45c0d743ffff", + "cborBytes": [ + 216, 102, 159, 27, 20, 27, 155, 9, 106, 34, 71, 221, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 235, 128, 255, 191, 72, 118, 245, 33, 251, 160, 109, 45, 171, 66, 102, 76, 68, 202, 165, 250, 100, 73, 31, 197, + 97, 250, 73, 128, 55, 230, 121, 255, 74, 127, 119, 233, 145, 76, 218, 69, 192, 215, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2833, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9444530402043563802" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ab710dd83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1546ff19b" + } + } + ] + } + ] + }, + "cborHex": "d905089fbf1b8311b65c842f0f1a4100458ab710dd8345d1546ff19bffff", + "cborBytes": [ + 217, 5, 8, 159, 191, 27, 131, 17, 182, 92, 132, 47, 15, 26, 65, 0, 69, 138, 183, 16, 221, 131, 69, 209, 84, 111, + 241, 155, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2834, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10491210071995980552" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff0705fd78d828e4f99959" + } + ] + }, + "cborHex": "d8669f1b919843f9c5521b089f4bff0705fd78d828e4f99959ffff", + "cborBytes": [ + 216, 102, 159, 27, 145, 152, 67, 249, 197, 82, 27, 8, 159, 75, 255, 7, 5, 253, 120, 216, 40, 228, 249, 153, 89, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2835, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0d269ea0c8f1b7ae22" + } + ] + } + ] + }, + "cborHex": "d905059fd90508809f490d269ea0c8f1b7ae22ffff", + "cborBytes": [217, 5, 5, 159, 217, 5, 8, 128, 159, 73, 13, 38, 158, 160, 200, 241, 183, 174, 34, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2836, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01f888d8020000e2aa060388" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f004c01f888d8020000e2aa060388ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 0, 76, 1, 248, 136, 216, 2, 0, 0, 226, 170, 6, 3, + 136, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2837, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "25ebb71ed349a7a74417503f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14471774142818165121" + } + } + ] + }, + "cborHex": "d905049fa04c25ebb71ed349a7a74417503f1bc8d611e87c5c2181ff", + "cborBytes": [ + 217, 5, 4, 159, 160, 76, 37, 235, 183, 30, 211, 73, 167, 167, 68, 23, 80, 63, 27, 200, 214, 17, 232, 124, 92, 33, + 129, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2838, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "164d8eb5a8751f2f60c3" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1917445962760856150" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16845966036226088221" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4400091385473006095" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18380598048354671470" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7635789393669904659" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9027149120352491783" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8456469458499815710" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e05a424cd124497" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17193304237599191887" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5145838296367260937" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3fc0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9472529771930356849" + } + } + ] + }, + "cborHex": "d9050a9f4a164d8eb5a8751f2f60c3bf1b1a9c22f1ae5e22561be9c8e4db2f8d1d1d1b3d1043cd6a5ffa0f1bff15008a576b1b6e1b69f7c5ff5563d9131b7d46e04c0d1719071b755b6a2b0fd2491e486e05a424cd1244971bee9ae31c2d51734f1b4769b0aaae926509ff423fc01b83752fa3d4388c71ff", + "cborBytes": [ + 217, 5, 10, 159, 74, 22, 77, 142, 181, 168, 117, 31, 47, 96, 195, 191, 27, 26, 156, 34, 241, 174, 94, 34, 86, 27, + 233, 200, 228, 219, 47, 141, 29, 29, 27, 61, 16, 67, 205, 106, 95, 250, 15, 27, 255, 21, 0, 138, 87, 107, 27, 110, + 27, 105, 247, 197, 255, 85, 99, 217, 19, 27, 125, 70, 224, 76, 13, 23, 25, 7, 27, 117, 91, 106, 43, 15, 210, 73, + 30, 72, 110, 5, 164, 36, 205, 18, 68, 151, 27, 238, 154, 227, 28, 45, 81, 115, 79, 27, 71, 105, 176, 170, 174, + 146, 101, 9, 255, 66, 63, 192, 27, 131, 117, 47, 163, 212, 56, 140, 113, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2839, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2485357087452476627" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "720842775572180957" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5888882164681844560" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6664479096105786128" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7666869838403856149" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c365c9e25150ce95a55" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8725601190795082974" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16601461257984414239" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11009820326457294314" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15176087260173887463" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16336046704103570468" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11358903574372886307" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7645671442004665325" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87e9379fa68a4513357c1702" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bc45" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2302294544329641934" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7905028608435061426" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ccd2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11669667274253489576" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7b" + }, + { + "_tag": "ByteArray", + "bytearray": "771b" + }, + { + "_tag": "ByteArray", + "bytearray": "83242b77e00415cf50" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10932993486771379029" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5226811479908869133" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1309414025310633718" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76040d8fdeb4a862c91f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4832594419112005425" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16649579607624390579" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9360230247064202895" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11528860127401451228" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14611860397408876290" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01454be092fb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17314693314702506128" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "509095be5114" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18056486420931101214" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee7ef7e253" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5f37555bebdf91c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12165124709406758286" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8a5e" + }, + { + "_tag": "ByteArray", + "bytearray": "3dacd2487c60" + } + ] + } + ] + }, + "cborHex": "d905029fbf1b227dc31a619ab4d31b0a00f2af68e2efdd1b51b98320cdfea7501b5c7cfc6d9066db101b6a66317f4937e7154a4c365c9e25150ce95a551b7917900d8510fcde1be6643d0e4a92121f1b98cabd411f5cbdea1bd29c4af4eefee7e71be2b54bece048bc241b9da2ee9e6c692723ff9f9f1b6a1ae1ab020963ed4c87e9379fa68a4513357c1702ff42bc45d8669f1b1ff364b0a3168fce9f1b6db44da3011282b242ccd2ffff9f1ba1f2fc8eb0e155a8417b42771b4983242b77e00415cf501b97b9cba696aadb55ffff80d8669f1b48895d591fe6e40d9fbf1b122bf91e528dfef64a76040d8fdeb4a862c91f1b4310d3051eb4cf311be70f30709c0a17b31b81e637d12c20ee8f1b9ffebd340eed9edc1bcac7c19d4f2777024601454be092fb1bf04a25d521ac789046509095be51141bfa9586bb8343421e45ee7ef7e253ffbf48d5f37555bebdf91c1ba8d334783884558eff428a5e463dacd2487c60ffffff", + "cborBytes": [ + 217, 5, 2, 159, 191, 27, 34, 125, 195, 26, 97, 154, 180, 211, 27, 10, 0, 242, 175, 104, 226, 239, 221, 27, 81, + 185, 131, 32, 205, 254, 167, 80, 27, 92, 124, 252, 109, 144, 102, 219, 16, 27, 106, 102, 49, 127, 73, 55, 231, 21, + 74, 76, 54, 92, 158, 37, 21, 12, 233, 90, 85, 27, 121, 23, 144, 13, 133, 16, 252, 222, 27, 230, 100, 61, 14, 74, + 146, 18, 31, 27, 152, 202, 189, 65, 31, 92, 189, 234, 27, 210, 156, 74, 244, 238, 254, 231, 231, 27, 226, 181, 75, + 236, 224, 72, 188, 36, 27, 157, 162, 238, 158, 108, 105, 39, 35, 255, 159, 159, 27, 106, 26, 225, 171, 2, 9, 99, + 237, 76, 135, 233, 55, 159, 166, 138, 69, 19, 53, 124, 23, 2, 255, 66, 188, 69, 216, 102, 159, 27, 31, 243, 100, + 176, 163, 22, 143, 206, 159, 27, 109, 180, 77, 163, 1, 18, 130, 178, 66, 204, 210, 255, 255, 159, 27, 161, 242, + 252, 142, 176, 225, 85, 168, 65, 123, 66, 119, 27, 73, 131, 36, 43, 119, 224, 4, 21, 207, 80, 27, 151, 185, 203, + 166, 150, 170, 219, 85, 255, 255, 128, 216, 102, 159, 27, 72, 137, 93, 89, 31, 230, 228, 13, 159, 191, 27, 18, 43, + 249, 30, 82, 141, 254, 246, 74, 118, 4, 13, 143, 222, 180, 168, 98, 201, 31, 27, 67, 16, 211, 5, 30, 180, 207, 49, + 27, 231, 15, 48, 112, 156, 10, 23, 179, 27, 129, 230, 55, 209, 44, 32, 238, 143, 27, 159, 254, 189, 52, 14, 237, + 158, 220, 27, 202, 199, 193, 157, 79, 39, 119, 2, 70, 1, 69, 75, 224, 146, 251, 27, 240, 74, 37, 213, 33, 172, + 120, 144, 70, 80, 144, 149, 190, 81, 20, 27, 250, 149, 134, 187, 131, 67, 66, 30, 69, 238, 126, 247, 226, 83, 255, + 191, 72, 213, 243, 117, 85, 190, 189, 249, 28, 27, 168, 211, 52, 120, 56, 132, 85, 142, 255, 66, 138, 94, 70, 61, + 172, 210, 72, 124, 96, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2840, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "893146524145347126" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4107987917149841558" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11505013095382346415" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4166ce91c30fed50babfcf" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b0c651808180eea369fa0801b3902813edf502896d8669f1b9faa04743e7b6aaf9f4b4166ce91c30fed50babfcfffff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 12, 101, 24, 8, 24, 14, 234, 54, 159, 160, 128, 27, 57, 2, 129, 62, 223, 80, 40, 150, 216, 102, + 159, 27, 159, 170, 4, 116, 62, 123, 106, 175, 159, 75, 65, 102, 206, 145, 195, 15, 237, 80, 186, 191, 207, 255, + 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2841, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7452047149878905404" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8038932227222962430" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "bfe219a8cfc6a069468c4a" + }, + { + "_tag": "ByteArray", + "bytearray": "e9666d21f946770fee" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "25f23716" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8271470151095923175" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49fd8669f1b676afd6671fe8a3c9f1b6f900644c11080fea04bbfe219a8cfc6a069468c4a49e9666d21f946770feeffff4425f237161b72ca2a473e51b1e7ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 216, 102, 159, 27, 103, 106, 253, 102, 113, 254, + 138, 60, 159, 27, 111, 144, 6, 68, 193, 16, 128, 254, 160, 75, 191, 226, 25, 168, 207, 198, 160, 105, 70, 140, 74, + 73, 233, 102, 109, 33, 249, 70, 119, 15, 238, 255, 255, 68, 37, 242, 55, 22, 27, 114, 202, 42, 71, 62, 81, 177, + 231, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2842, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13491520368671573007" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07fd04f9fcb51e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "359a7e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc00d6f30143b74117b099" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "661fccd6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5895049473227870781" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e49c3f95c12a90fcc55b46a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4af3ad31c1374a038173b0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "036aad05d20b0b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9ba70" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15056726775801213548" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bbb3b824b4e9dc40f9f4707fd04f9fcb51ebf43359a7e4bbc00d6f30143b74117b09944661fccd61b51cf6c433919d23d4c6e49c3f95c12a90fcc55b46a4b4af3ad31c1374a038173b0428c6d47036aad05d20b0b43d9ba701bd0f43d3a87be726cffffff", + "cborBytes": [ + 216, 102, 159, 27, 187, 59, 130, 75, 78, 157, 196, 15, 159, 71, 7, 253, 4, 249, 252, 181, 30, 191, 67, 53, 154, + 126, 75, 188, 0, 214, 243, 1, 67, 183, 65, 23, 176, 153, 68, 102, 31, 204, 214, 27, 81, 207, 108, 67, 57, 25, 210, + 61, 76, 110, 73, 195, 249, 92, 18, 169, 15, 204, 85, 180, 106, 75, 74, 243, 173, 49, 193, 55, 74, 3, 129, 115, + 176, 66, 140, 109, 71, 3, 106, 173, 5, 210, 11, 11, 67, 217, 186, 112, 27, 208, 244, 61, 58, 135, 190, 114, 108, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2843, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2438196686892356031" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e6" + } + ] + }, + "cborHex": "d9050b9f1b21d636f7f6c0d1bf41e6ff", + "cborBytes": [217, 5, 11, 159, 27, 33, 214, 54, 247, 246, 192, 209, 191, 65, 230, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2844, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2557464118656860478" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + ] + }, + "cborHex": "d8669f1b237df010de59813e9f1bffffffffffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 35, 125, 240, 16, 222, 89, 129, 62, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2845, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13409735789264969905" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15268329827677430156" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9541133320554955898" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12488212848673359483" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "80" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a0499f" + } + ] + }, + "cborHex": "d8669f1bba18f3a70afb20b19f9f9f1bd3e401154c36e18c1b8468ea343652447a1bad4f0b6ba4a5067bff4180ff43a0499fffff", + "cborBytes": [ + 216, 102, 159, 27, 186, 24, 243, 167, 10, 251, 32, 177, 159, 159, 159, 27, 211, 228, 1, 21, 76, 54, 225, 140, 27, + 132, 104, 234, 52, 54, 82, 68, 122, 27, 173, 79, 11, 107, 164, 165, 6, 123, 255, 65, 128, 255, 67, 160, 73, 159, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2846, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12532834277598257879" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05588c9a31070506f8c6fa64" + } + ] + }, + "cborHex": "d8669f1baded925fa91562d79f4c05588c9a31070506f8c6fa64ffff", + "cborBytes": [ + 216, 102, 159, 27, 173, 237, 146, 95, 169, 21, 98, 215, 159, 76, 5, 88, 140, 154, 49, 7, 5, 6, 248, 198, 250, 100, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2847, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4705d6af38" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15812238347936928991" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b2040205ff046806" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "247f01ee7a3dc476a36d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17357842267140672427" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "52f5cf6005364856ebc6" + }, + { + "_tag": "ByteArray", + "bytearray": "e0ab41993387cfffb4af6ba6" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1397532894135064705" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e624562b7062" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16871735662279973990" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0dc90055c11" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17178061258004197832" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "957027151258231290" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ffc3df20" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3c6873" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905029f454705d6af38d8669f1bdb705b00289714df9f48b2040205ff0468069f4a247f01ee7a3dc476a36d1bf0e37193802e4babffffffd905049f9f4a52f5cf6005364856ebc64ce0ab41993387cfffb4af6ba6ffbf1b136508c344d8188146e624562b70621bea247231ce7cdc6646c0dc90055c111bee64bbb36d3d71c81b0d480b1f9f26a1faff44ffc3df20ff433c687380ff", + "cborBytes": [ + 217, 5, 2, 159, 69, 71, 5, 214, 175, 56, 216, 102, 159, 27, 219, 112, 91, 0, 40, 151, 20, 223, 159, 72, 178, 4, 2, + 5, 255, 4, 104, 6, 159, 74, 36, 127, 1, 238, 122, 61, 196, 118, 163, 109, 27, 240, 227, 113, 147, 128, 46, 75, + 171, 255, 255, 255, 217, 5, 4, 159, 159, 74, 82, 245, 207, 96, 5, 54, 72, 86, 235, 198, 76, 224, 171, 65, 153, 51, + 135, 207, 255, 180, 175, 107, 166, 255, 191, 27, 19, 101, 8, 195, 68, 216, 24, 129, 70, 230, 36, 86, 43, 112, 98, + 27, 234, 36, 114, 49, 206, 124, 220, 102, 70, 192, 220, 144, 5, 92, 17, 27, 238, 100, 187, 179, 109, 61, 113, 200, + 27, 13, 72, 11, 31, 159, 38, 161, 250, 255, 68, 255, 195, 223, 32, 255, 67, 60, 104, 115, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2848, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11176977763339888606" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6191807222872812286" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "380d173b8edd0f02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4379892349599268933" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4892090506995204913" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18215504927913222072" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7623961445448416697" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15138639838601444042" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1768252501336443255" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3880911820928180288" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14678929661154091033" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8294610409088950446" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5035388200708411696" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11113054513063591214" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2801752184003693737" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11437206133888076810" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18379069696749928716" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12065940607593685773" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a8ec2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17270896271599684010" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3745540673511161797" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c55dfc572c268fe104" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4983196465291642990" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "566cf6a45d87b358fb49b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1399097079683423247" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfeffaa6f9bdf17d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e181a8f2ce2d0434d9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c600cb1050cbdc61085c18" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5345634650401964948" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5f1106704640f0863d40f30a" + } + ] + } + ] + }, + "cborHex": "d8669f1b9b1c9a0ebe5067de9f9fd8669f1b55edb7dd15082afe9f48380d173b8edd0f021b3cc880e2e450c0451b43e432658e8283311bfcca7938d8a51fb8ffff801b69cdc08a8939fdb9a0ff1bd21740b9aa6a7acad8669f1b188a1848075ac97780ffbf1b35dbc4bd3b09e0401bcbb608c12808e0191b731c6038680120ae1b45e14ae3d16b11301b9a3980333cb4fd2e1b26e1d2c45c370ca91b9eb91e61c1514c0a1bff0f928340ed010c1ba772d50df495230d436a8ec21befae8ca7655149aa1b33fad565d868ffc5ff9f9f49c55dfc572c268fe104ff1b4527dec877b0c86ebf4b566cf6a45d87b358fb49b01b136a976198d11c0f48bfeffaa6f9bdf17d49e181a8f2ce2d0434d94bc600cb1050cbdc61085c181b4a2f8264643a8394ffa04c5f1106704640f0863d40f30affffff", + "cborBytes": [ + 216, 102, 159, 27, 155, 28, 154, 14, 190, 80, 103, 222, 159, 159, 216, 102, 159, 27, 85, 237, 183, 221, 21, 8, 42, + 254, 159, 72, 56, 13, 23, 59, 142, 221, 15, 2, 27, 60, 200, 128, 226, 228, 80, 192, 69, 27, 67, 228, 50, 101, 142, + 130, 131, 49, 27, 252, 202, 121, 56, 216, 165, 31, 184, 255, 255, 128, 27, 105, 205, 192, 138, 137, 57, 253, 185, + 160, 255, 27, 210, 23, 64, 185, 170, 106, 122, 202, 216, 102, 159, 27, 24, 138, 24, 72, 7, 90, 201, 119, 128, 255, + 191, 27, 53, 219, 196, 189, 59, 9, 224, 64, 27, 203, 182, 8, 193, 40, 8, 224, 25, 27, 115, 28, 96, 56, 104, 1, 32, + 174, 27, 69, 225, 74, 227, 209, 107, 17, 48, 27, 154, 57, 128, 51, 60, 180, 253, 46, 27, 38, 225, 210, 196, 92, + 55, 12, 169, 27, 158, 185, 30, 97, 193, 81, 76, 10, 27, 255, 15, 146, 131, 64, 237, 1, 12, 27, 167, 114, 213, 13, + 244, 149, 35, 13, 67, 106, 142, 194, 27, 239, 174, 140, 167, 101, 81, 73, 170, 27, 51, 250, 213, 101, 216, 104, + 255, 197, 255, 159, 159, 73, 197, 93, 252, 87, 44, 38, 143, 225, 4, 255, 27, 69, 39, 222, 200, 119, 176, 200, 110, + 191, 75, 86, 108, 246, 164, 93, 135, 179, 88, 251, 73, 176, 27, 19, 106, 151, 97, 152, 209, 28, 15, 72, 191, 239, + 250, 166, 249, 189, 241, 125, 73, 225, 129, 168, 242, 206, 45, 4, 52, 217, 75, 198, 0, 203, 16, 80, 203, 220, 97, + 8, 92, 24, 27, 74, 47, 130, 100, 100, 58, 131, 148, 255, 160, 76, 95, 17, 6, 112, 70, 64, 240, 134, 61, 64, 243, + 10, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2849, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16074328651648698305" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f1bdf137cbe446787c1ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 223, 19, 124, 190, 68, 103, 135, 193, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2850, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8765790440403902767" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "abf6a258e60858aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9413286441091875599" + } + } + ] + }, + "cborHex": "d8669f1b79a657f65fca212f9fa048abf6a258e60858aa1b82a2b624fa48430fffff", + "cborBytes": [ + 216, 102, 159, 27, 121, 166, 87, 246, 95, 202, 33, 47, 159, 160, 72, 171, 246, 162, 88, 230, 8, 88, 170, 27, 130, + 162, 182, 36, 250, 72, 67, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2851, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14980428217505205366" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11816165082504006907" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "87e11cad" + } + ] + } + ] + }, + "cborHex": "d8669f1bcfe52c1817a2cc769f040e1ba3fb7389ae068cfb9f4487e11cadffffff", + "cborBytes": [ + 216, 102, 159, 27, 207, 229, 44, 24, 23, 162, 204, 118, 159, 4, 14, 27, 163, 251, 115, 137, 174, 6, 140, 251, 159, + 68, 135, 225, 28, 173, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2852, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9261143396404953874" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "351bd10361efa4a8360802bd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14557089210903830835" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "565fb3852bed9e86104f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4c48e99e0403699" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2196457561484458698" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11242449583055025608" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4231894813064886407" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "467ef2c75ad64aba4c3497" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6159905349710981058" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16319676296947602338" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13171846423331788142" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5b6" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b808630d9f4ac03129f9fbf4c351bd10361efa4a8360802bd1bca052b82b39821334a565fb3852bed9e86104f48c4c48e99e0403699ffbf1b1e7b6283cc807aca1b9c053454ab3bb5c81b3abab5e9338cf8874b467ef2c75ad64aba4c34971b557c61476b8d27c21be27b232070ec93a21bb6cbcc88dab0d56e42e5b6ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 128, 134, 48, 217, 244, 172, 3, 18, 159, 159, 191, 76, 53, 27, 209, 3, 97, 239, 164, 168, 54, + 8, 2, 189, 27, 202, 5, 43, 130, 179, 152, 33, 51, 74, 86, 95, 179, 133, 43, 237, 158, 134, 16, 79, 72, 196, 196, + 142, 153, 224, 64, 54, 153, 255, 191, 27, 30, 123, 98, 131, 204, 128, 122, 202, 27, 156, 5, 52, 84, 171, 59, 181, + 200, 27, 58, 186, 181, 233, 51, 140, 248, 135, 75, 70, 126, 242, 199, 90, 214, 74, 186, 76, 52, 151, 27, 85, 124, + 97, 71, 107, 141, 39, 194, 27, 226, 123, 35, 32, 112, 236, 147, 162, 27, 182, 203, 204, 136, 218, 176, 213, 110, + 66, 229, 182, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2853, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1153e998ea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17373440530904492249" + } + } + ] + }, + "cborHex": "d87c9f451153e998ea1bf11adc1d4aefa8d9ff", + "cborBytes": [216, 124, 159, 69, 17, 83, 233, 152, 234, 27, 241, 26, 220, 29, 74, 239, 168, 217, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2854, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18366722797141606806" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1dbc6f5add1421dbb7276a07" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9945517992681270972" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "743821363732542558" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c37c1f45b85cbbbf62479" + } + ] + }, + "cborHex": "d8669f1bfee3b512abb1c1969f4c1dbc6f5add1421dbb7276a07a01b8a0593ebb505eebc1b0a529596e19ff45e4b0c37c1f45b85cbbbf62479ffff", + "cborBytes": [ + 216, 102, 159, 27, 254, 227, 181, 18, 171, 177, 193, 150, 159, 76, 29, 188, 111, 90, 221, 20, 33, 219, 183, 39, + 106, 7, 160, 27, 138, 5, 147, 235, 181, 5, 238, 188, 27, 10, 82, 149, 150, 225, 159, 244, 94, 75, 12, 55, 193, + 244, 91, 133, 203, 187, 246, 36, 121, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2855, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89fa0ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2856, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10886746443989005200" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11120364468994841932" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17d170a361de3bab1e50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13061996698896710728" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1adf2afa09247382728c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12038699059925389654" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c075a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7293dd491" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8eaeb3d55921" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "391e4a45a4c2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c621807257" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b7fdc87852035e14d61fbd8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f50430c1a69e80b3d9e929" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6995739007672672240" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17985378049508303376" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17885913816445001473" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa8872e319fe882f" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7886424696268209718" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de69a4c8" + }, + { + "_tag": "ByteArray", + "bytearray": "1a33dd419b8cf1" + }, + { + "_tag": "ByteArray", + "bytearray": "9dce222b4f4908b59768" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11911899250826326881" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17508428670785186974" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b97157e35d9b633909fd8669f1b9a537890fb501d4c9fbf4a17d170a361de3bab1e501bb54588cacf103c484a1adf2afa09247382728c1ba7120d02e0ae9156434c075a45e7293dd491468eaeb3d5592146391e4a45a4c245c6218072574c4b7fdc87852035e14d61fbd84bf50430c1a69e80b3d9e9291b6115db8ffdac5ff0ffd8669f1bf998e60ba00ce2109f1bf83787da38749f0148fa8872e319fe882fffff9f1b6d72357a28ef3e3644de69a4c8471a33dd419b8cf14a9dce222b4f4908b597681ba54f9141b5beb361ff1bf2fa6f1cc96a6c9effffffff", + "cborBytes": [ + 216, 102, 159, 27, 151, 21, 126, 53, 217, 182, 51, 144, 159, 216, 102, 159, 27, 154, 83, 120, 144, 251, 80, 29, + 76, 159, 191, 74, 23, 209, 112, 163, 97, 222, 59, 171, 30, 80, 27, 181, 69, 136, 202, 207, 16, 60, 72, 74, 26, + 223, 42, 250, 9, 36, 115, 130, 114, 140, 27, 167, 18, 13, 2, 224, 174, 145, 86, 67, 76, 7, 90, 69, 231, 41, 61, + 212, 145, 70, 142, 174, 179, 213, 89, 33, 70, 57, 30, 74, 69, 164, 194, 69, 198, 33, 128, 114, 87, 76, 75, 127, + 220, 135, 133, 32, 53, 225, 77, 97, 251, 216, 75, 245, 4, 48, 193, 166, 158, 128, 179, 217, 233, 41, 27, 97, 21, + 219, 143, 253, 172, 95, 240, 255, 216, 102, 159, 27, 249, 152, 230, 11, 160, 12, 226, 16, 159, 27, 248, 55, 135, + 218, 56, 116, 159, 1, 72, 250, 136, 114, 227, 25, 254, 136, 47, 255, 255, 159, 27, 109, 114, 53, 122, 40, 239, 62, + 54, 68, 222, 105, 164, 200, 71, 26, 51, 221, 65, 155, 140, 241, 74, 157, 206, 34, 43, 79, 73, 8, 181, 151, 104, + 27, 165, 79, 145, 65, 181, 190, 179, 97, 255, 27, 242, 250, 111, 28, 201, 106, 108, 158, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2857, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01676992" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5002164898432530770" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10743446987532576300" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12982550248250508645" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5609061548543334703" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18242824877894521239" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4193016672504809417" + } + }, + { + "_tag": "ByteArray", + "bytearray": "224d1a079299c5a323" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dc14" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "028edb715d996682f294" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10596647218947959594" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71ee66" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "221b045c42e6792cc3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93d975" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11956998361027796830" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15587022271037648243" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0871a60e48da48e54c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10482179461485907060" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c69977081b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14827771951258720277" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "616449927f1b13c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12220566102556192496" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6471049567846123729" + } + } + ] + }, + "cborHex": "d905069f9f9f4401676992ff9f1b456b4278f6ffb95241061b9518641d2b1ea62c1bb42b48aa91a18565ffbf1b4dd763c2a43a592f1bfd2b8892628fd197ff1b3a309672b5f087c949224d1a079299c5a323ff9f42dc14bf4a028edb715d996682f2941b930eda808f862b2a4371ee6649221b045c42e6792cc34393d9751ba5efcaa890fd5f5e41fd1bd8503a2c034d2d73ffbf490871a60e48da48e54c1b91782eaee9c34c74465c69977081b61bcdc6d4075d46d81548616449927f1b13c21ba9982c1f790aaef0ffffa01b59cdc94bff69c8d1ff", + "cborBytes": [ + 217, 5, 6, 159, 159, 159, 68, 1, 103, 105, 146, 255, 159, 27, 69, 107, 66, 120, 246, 255, 185, 82, 65, 6, 27, 149, + 24, 100, 29, 43, 30, 166, 44, 27, 180, 43, 72, 170, 145, 161, 133, 101, 255, 191, 27, 77, 215, 99, 194, 164, 58, + 89, 47, 27, 253, 43, 136, 146, 98, 143, 209, 151, 255, 27, 58, 48, 150, 114, 181, 240, 135, 201, 73, 34, 77, 26, + 7, 146, 153, 197, 163, 35, 255, 159, 66, 220, 20, 191, 74, 2, 142, 219, 113, 93, 153, 102, 130, 242, 148, 27, 147, + 14, 218, 128, 143, 134, 43, 42, 67, 113, 238, 102, 73, 34, 27, 4, 92, 66, 230, 121, 44, 195, 67, 147, 217, 117, + 27, 165, 239, 202, 168, 144, 253, 95, 94, 65, 253, 27, 216, 80, 58, 44, 3, 77, 45, 115, 255, 191, 73, 8, 113, 166, + 14, 72, 218, 72, 229, 76, 27, 145, 120, 46, 174, 233, 195, 76, 116, 70, 92, 105, 151, 112, 129, 182, 27, 205, 198, + 212, 7, 93, 70, 216, 21, 72, 97, 100, 73, 146, 127, 27, 19, 194, 27, 169, 152, 44, 31, 121, 10, 174, 240, 255, + 255, 160, 27, 89, 205, 201, 75, 255, 105, 200, 209, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2858, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15380157638218478221" + }, + "fields": [] + }, + "cborHex": "d8669f1bd5714be26785f28d80ff", + "cborBytes": [216, 102, 159, 27, 213, 113, 75, 226, 103, 133, 242, 141, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2859, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6662990067041601997" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5f29ca8457d2" + } + ] + }, + "cborHex": "d8669f1b5c77b229f7f889cd9f8080465f29ca8457d2ffff", + "cborBytes": [ + 216, 102, 159, 27, 92, 119, 178, 41, 247, 248, 137, 205, 159, 128, 128, 70, 95, 41, 202, 132, 87, 210, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2860, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15642534308817415946" + }, + "fields": [] + }, + "cborHex": "d8669f1bd91572137fec2f0a80ff", + "cborBytes": [216, 102, 159, 27, 217, 21, 114, 19, 127, 236, 47, 10, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2861, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4dc2896388bc5ba4fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63012e07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13364992187191319220" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2536913234809961059" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11255657907943806163" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9555362694077329787" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16038714037326267374" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9759510201432872980" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8ad7c53b07d2eca4811344af" + }, + { + "_tag": "ByteArray", + "bytearray": "ae576d3a956f1722387a77" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9080419959519279494" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "25e8370b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13409612229841092965" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "943b9802" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + } + ] + } + ] + }, + "cborHex": "d9050c9f9fbf494dc2896388bc5ba4fe42a0fa4463012e070b418810ff1bb979fd955f68dab41b2334ed255ad5ba631b9c34213b744e94d3d8669f1b849b77be687fb17b80ffff9fd8669f1bde94f570b0e743ee9f1b8770bed1f23518144c8ad7c53b07d2eca4811344af4bae576d3a956f1722387a77ffffffd8669f1b7e0421d7d283798680ffbf4425e8370b1bba1883469f69816544943b98021bfffffffffffffffdffff", + "cborBytes": [ + 217, 5, 12, 159, 159, 191, 73, 77, 194, 137, 99, 136, 188, 91, 164, 254, 66, 160, 250, 68, 99, 1, 46, 7, 11, 65, + 136, 16, 255, 27, 185, 121, 253, 149, 95, 104, 218, 180, 27, 35, 52, 237, 37, 90, 213, 186, 99, 27, 156, 52, 33, + 59, 116, 78, 148, 211, 216, 102, 159, 27, 132, 155, 119, 190, 104, 127, 177, 123, 128, 255, 255, 159, 216, 102, + 159, 27, 222, 148, 245, 112, 176, 231, 67, 238, 159, 27, 135, 112, 190, 209, 242, 53, 24, 20, 76, 138, 215, 197, + 59, 7, 210, 236, 164, 129, 19, 68, 175, 75, 174, 87, 109, 58, 149, 111, 23, 34, 56, 122, 119, 255, 255, 255, 216, + 102, 159, 27, 126, 4, 33, 215, 210, 131, 121, 134, 128, 255, 191, 68, 37, 232, 55, 11, 27, 186, 24, 131, 70, 159, + 105, 129, 101, 68, 148, 59, 152, 2, 27, 255, 255, 255, 255, 255, 255, 255, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2862, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8116030832788742817" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "204075278ee1ab37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12385432597168814953" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "96740a986b5f40" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11750511391814586258" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12666267234621892027" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9548" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17490182289933469625" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83b8f3a0899d49dc30528c" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b70a1ef0ab67da2a19fbf48204075278ee1ab371babe1e55387ca7b69ff4796740a986b5f40a0bf1ba31233da9e4a0f9241f11bafc79ef0edcea5bb4295481bf2b99c20305007b94b83b8f3a0899d49dc30528cff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 112, 161, 239, 10, 182, 125, 162, 161, 159, 191, 72, 32, 64, 117, 39, 142, 225, 171, 55, 27, + 171, 225, 229, 83, 135, 202, 123, 105, 255, 71, 150, 116, 10, 152, 107, 95, 64, 160, 191, 27, 163, 18, 51, 218, + 158, 74, 15, 146, 65, 241, 27, 175, 199, 158, 240, 237, 206, 165, 187, 66, 149, 72, 27, 242, 185, 156, 32, 48, 80, + 7, 185, 75, 131, 184, 243, 160, 137, 157, 73, 220, 48, 82, 140, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2863, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13979724985058410006" + }, + "fields": [] + }, + "cborHex": "d8669f1bc201f5ce600f3e1680ff", + "cborBytes": [216, 102, 159, 27, 194, 1, 245, 206, 96, 15, 62, 22, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2864, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4f90e9a5c00700a5162c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2665714109441806720" + }, + "fields": [] + } + ] + }, + "cborHex": "d9050c9fa09f4a4f90e9a5c00700a5162cffd8669f1b24fe84dbe606918080ffff", + "cborBytes": [ + 217, 5, 12, 159, 160, 159, 74, 79, 144, 233, 165, 192, 7, 0, 165, 22, 44, 255, 216, 102, 159, 27, 36, 254, 132, + 219, 230, 6, 145, 128, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2865, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7610030654554515431" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4948731907871434848" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10231306149286650435" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3890607619741918596" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15286642246219794945" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e353a84b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11268194674729767579" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1906527817158630891" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1aa854238e19" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2785063094357836074" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3616bcbcc7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4503125791073839043" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1447656566149800237" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efb4164f03c2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3493975668804117907" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc4f3ac82f9ce4b913221991" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5252066410595224092" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1675495756329972962" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ddadec845adc5e22052d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8148861857244537588" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b699c428f868e27e79f9fd8669f1b44ad6d73615168609f1b8dfce6bc288022431b35fe37044f25258441091bd42510217e690a0144e353a84bffffbf1b9c60ab5aef37529b1b1a7558f2d0241deb461aa854238e191b26a68820e03fc12a453616bcbcc71b3e7e510c63db27c3ffffbf1b14171bfa161ee12d46efb4164f03c21b307d185be0ed65934cfc4f3ac82f9ce4b9132219911b48e31692e44a0a1c1b17408e8362b8f4e24b6ddadec845adc5e22052d11b711692af44ca62f4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 105, 156, 66, 143, 134, 142, 39, 231, 159, 159, 216, 102, 159, 27, 68, 173, 109, 115, 97, 81, + 104, 96, 159, 27, 141, 252, 230, 188, 40, 128, 34, 67, 27, 53, 254, 55, 4, 79, 37, 37, 132, 65, 9, 27, 212, 37, + 16, 33, 126, 105, 10, 1, 68, 227, 83, 168, 75, 255, 255, 191, 27, 156, 96, 171, 90, 239, 55, 82, 155, 27, 26, 117, + 88, 242, 208, 36, 29, 235, 70, 26, 168, 84, 35, 142, 25, 27, 38, 166, 136, 32, 224, 63, 193, 42, 69, 54, 22, 188, + 188, 199, 27, 62, 126, 81, 12, 99, 219, 39, 195, 255, 255, 191, 27, 20, 23, 27, 250, 22, 30, 225, 45, 70, 239, + 180, 22, 79, 3, 194, 27, 48, 125, 24, 91, 224, 237, 101, 147, 76, 252, 79, 58, 200, 47, 156, 228, 185, 19, 34, 25, + 145, 27, 72, 227, 22, 146, 228, 74, 10, 28, 27, 23, 64, 142, 131, 98, 184, 244, 226, 75, 109, 218, 222, 200, 69, + 173, 197, 226, 32, 82, 209, 27, 113, 22, 146, 175, 68, 202, 98, 244, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2866, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10360844416030135064" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6636328723640550093" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4119949028096054846" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9405792828356060269" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db2f84d338" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9770109879719260834" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12901856658635033774" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13583113242257874697" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1218524856697364959" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17994615202953881777" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10874839805539093078" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6b28e0bf0a337e" + } + ] + }, + "cborHex": "d8669f1b8fc91d1a2e90d3189fbf1b5c18f9d0395102cd1b392cffd00861963e1b828816be4d14646d45db2f84d3381b8796672bdd3372a21bb30c9a4628f30cae1bbc80e98704af5f091b10e911e6b16e21df1bf9b9b73001e8e8b11b96eb312f8e6f8a56ff476b28e0bf0a337effff", + "cborBytes": [ + 216, 102, 159, 27, 143, 201, 29, 26, 46, 144, 211, 24, 159, 191, 27, 92, 24, 249, 208, 57, 81, 2, 205, 27, 57, 44, + 255, 208, 8, 97, 150, 62, 27, 130, 136, 22, 190, 77, 20, 100, 109, 69, 219, 47, 132, 211, 56, 27, 135, 150, 103, + 43, 221, 51, 114, 162, 27, 179, 12, 154, 70, 40, 243, 12, 174, 27, 188, 128, 233, 135, 4, 175, 95, 9, 27, 16, 233, + 17, 230, 177, 110, 33, 223, 27, 249, 185, 183, 48, 1, 232, 232, 177, 27, 150, 235, 49, 47, 142, 111, 138, 86, 255, + 71, 107, 40, 224, 191, 10, 51, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2867, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8007994943619963871" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "019a43" + }, + { + "_tag": "ByteArray", + "bytearray": "3c1fa4ef" + }, + { + "_tag": "ByteArray", + "bytearray": "ed6f95a8" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4557d16198bd00" + }, + { + "_tag": "ByteArray", + "bytearray": "1d6ff4cc22d56e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12857340559397538509" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cd90dc10776354" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f56e49c66318790ac0672cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7640008670559652861" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "636a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb3df60c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "764122779034182438" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8d87629929581eece" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a29330aa" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6f221cf919979bdf9f9f9f43019a43443c1fa4ef44ed6f95a8ff9f474557d16198bd00471d6ff4cc22d56e1bb26e731e1f1ccacd47cd90dc10776354ffffbf4c7f56e49c66318790ac0672cc1b6a06c368499ccbfdff42636abf41a941f544eb3df60c1b0a9ab59e791de32649f8d87629929581eece44a29330aaffffff", + "cborBytes": [ + 216, 102, 159, 27, 111, 34, 28, 249, 25, 151, 155, 223, 159, 159, 159, 67, 1, 154, 67, 68, 60, 31, 164, 239, 68, + 237, 111, 149, 168, 255, 159, 71, 69, 87, 209, 97, 152, 189, 0, 71, 29, 111, 244, 204, 34, 213, 110, 27, 178, 110, + 115, 30, 31, 28, 202, 205, 71, 205, 144, 220, 16, 119, 99, 84, 255, 255, 191, 76, 127, 86, 228, 156, 102, 49, 135, + 144, 172, 6, 114, 204, 27, 106, 6, 195, 104, 73, 156, 203, 253, 255, 66, 99, 106, 191, 65, 169, 65, 245, 68, 235, + 61, 246, 12, 27, 10, 154, 181, 158, 121, 29, 227, 38, 73, 248, 216, 118, 41, 146, 149, 129, 238, 206, 68, 162, + 147, 48, 170, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2868, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15962595147269040373" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8120263082379517120" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11305767675473486349" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10935461277816682489" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17161558263866245358" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15495657591876686939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19f29e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16081635362923733290" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7260107753650548664" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12914124590021256371" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7508163535579442480" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "900096913461544376" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "bf173ccfd7" + } + ] + }, + "cborHex": "d8669f1bdd8687b6865868f59f9fbf1b70b0f8401bf31cc01b9ce627cce1b0e20d1b97c29017f74d77f91bee2a1a50adeac0ee1bd70ba27af4e5145b4319f29e1bdf2d72288e6de12a1b64c1158947666fb8ffa0ff1bb3382fe4855aa4b31b68325af4a5c0ed30d8669f1b0c7dc95fb64d05b880ff45bf173ccfd7ffff", + "cborBytes": [ + 216, 102, 159, 27, 221, 134, 135, 182, 134, 88, 104, 245, 159, 159, 191, 27, 112, 176, 248, 64, 27, 243, 28, 192, + 27, 156, 230, 39, 204, 225, 176, 226, 13, 27, 151, 194, 144, 23, 247, 77, 119, 249, 27, 238, 42, 26, 80, 173, 234, + 192, 238, 27, 215, 11, 162, 122, 244, 229, 20, 91, 67, 25, 242, 158, 27, 223, 45, 114, 40, 142, 109, 225, 42, 27, + 100, 193, 21, 137, 71, 102, 111, 184, 255, 160, 255, 27, 179, 56, 47, 228, 133, 90, 164, 179, 27, 104, 50, 90, + 244, 165, 192, 237, 48, 216, 102, 159, 27, 12, 125, 201, 95, 182, 77, 5, 184, 128, 255, 69, 191, 23, 60, 207, 215, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2869, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bc72b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47a3706f1d74" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2d17a7c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2752" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2ef524e08" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d87e9fbf439bc72b4647a3706f1d7444c2d17a7c42275245e2ef524e0841b7ff80ff", + "cborBytes": [ + 216, 126, 159, 191, 67, 155, 199, 43, 70, 71, 163, 112, 111, 29, 116, 68, 194, 209, 122, 124, 66, 39, 82, 69, 226, + 239, 82, 78, 8, 65, 183, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2870, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f168" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f42f168ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 66, 241, 104, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2871, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "451993996421653727" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1121830840012570434" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17517086774714786934" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7758948122423765477" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "189796678058145234" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a01340db799b2c10f37f88ac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5686038086295470848" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b0645ce251d5264df9fbf1b0f918b348d06ff421bf319319cb29164761b6bad52356bc0a9e51b02a24b12b73475d24ca01340db799b2c10f37f88ac1b4ee8dd8378fbc300ffffff", + "cborBytes": [ + 216, 102, 159, 27, 6, 69, 206, 37, 29, 82, 100, 223, 159, 191, 27, 15, 145, 139, 52, 141, 6, 255, 66, 27, 243, 25, + 49, 156, 178, 145, 100, 118, 27, 107, 173, 82, 53, 107, 192, 169, 229, 27, 2, 162, 75, 18, 183, 52, 117, 210, 76, + 160, 19, 64, 219, 121, 155, 44, 16, 243, 127, 136, 172, 27, 78, 232, 221, 131, 120, 251, 195, 0, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2872, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2067924623842707183" + }, + "fields": [] + }, + "cborHex": "d8669f1b1cb2be7d326d86ef80ff", + "cborBytes": [216, 102, 159, 27, 28, 178, 190, 125, 50, 109, 134, 239, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2873, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13764930207049091728" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17666554373482698336" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13f863055be7c953aad78a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5372c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9558203727492014984" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8637672b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17451988475976248726" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "81ce8416" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b35161fb7a8239742355603a" + }, + { + "_tag": "ByteArray", + "bytearray": "c3f627d5558e8435471e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14770719567095025554" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8662069006732707230" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a70a9e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15607959812333443059" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9f41330178299f3b00a64b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8160457262131254532" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13014273937213394224" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af13444941b8" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bbf06db17f5348a909fbf1bf52c3599ec8f56604b13f863055be7c953aad78a435372c91b84a58fa60bf9e388448637672b1bf231eb0de6c66d96ff4481ce84169f4cb35161fb7a8239742355603a4ac3f627d5558e8435471ed8669f1bccfc2330099c4f929f1b7835d9de3639459effff43a70a9ed8669f1bd89a9cc13ab517f39f4b9f41330178299f3b00a64b1b713fc4a4da1715041bb49bfd317d3a8d3046af13444941b8ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 191, 6, 219, 23, 245, 52, 138, 144, 159, 191, 27, 245, 44, 53, 153, 236, 143, 86, 96, 75, 19, + 248, 99, 5, 91, 231, 201, 83, 170, 215, 138, 67, 83, 114, 201, 27, 132, 165, 143, 166, 11, 249, 227, 136, 68, 134, + 55, 103, 43, 27, 242, 49, 235, 13, 230, 198, 109, 150, 255, 68, 129, 206, 132, 22, 159, 76, 179, 81, 97, 251, 122, + 130, 57, 116, 35, 85, 96, 58, 74, 195, 246, 39, 213, 85, 142, 132, 53, 71, 30, 216, 102, 159, 27, 204, 252, 35, + 48, 9, 156, 79, 146, 159, 27, 120, 53, 217, 222, 54, 57, 69, 158, 255, 255, 67, 167, 10, 158, 216, 102, 159, 27, + 216, 154, 156, 193, 58, 181, 23, 243, 159, 75, 159, 65, 51, 1, 120, 41, 159, 59, 0, 166, 75, 27, 113, 63, 196, + 164, 218, 23, 21, 4, 27, 180, 155, 253, 49, 125, 58, 141, 48, 70, 175, 19, 68, 73, 65, 184, 255, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2874, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3520722075579219846" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4166354640471055447" + } + }, + { + "_tag": "ByteArray", + "bytearray": "893bddbbd5f395" + } + ] + }, + "cborHex": "d87a9f1b30dc1e12fbc67f861b39d1dd78a193dc5747893bddbbd5f395ff", + "cborBytes": [ + 216, 122, 159, 27, 48, 220, 30, 18, 251, 198, 127, 134, 27, 57, 209, 221, 120, 161, 147, 220, 87, 71, 137, 59, + 221, 187, 213, 243, 149, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2875, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18072783077238529765" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4927710883890538970" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7638173172038861037" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9973069747128189528" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2532345583436319895" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b4fc9f2ffb5f09287ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12289657686048083516" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "699d4adaff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16642399667151220478" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14445746874360318068" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f1bfacf6c747d7e5ee5bf1b4462bef0d61f29da1b6a003e07fc4b80ed1b8a6776186dc542581b2324b2e425404c974a4b4fc9f2ffb5f09287ba1baa8da28d540b8e3c45699d4adaff1be6f5ae5272a0aefeff1bc8799a3ed174c874ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 27, 250, 207, 108, 116, 125, 126, 94, 229, 191, + 27, 68, 98, 190, 240, 214, 31, 41, 218, 27, 106, 0, 62, 7, 252, 75, 128, 237, 27, 138, 103, 118, 24, 109, 197, 66, + 88, 27, 35, 36, 178, 228, 37, 64, 76, 151, 74, 75, 79, 201, 242, 255, 181, 240, 146, 135, 186, 27, 170, 141, 162, + 141, 84, 11, 142, 60, 69, 105, 157, 74, 218, 255, 27, 230, 245, 174, 82, 114, 160, 174, 254, 255, 27, 200, 121, + 154, 62, 209, 116, 200, 116, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2876, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16621668226190589562" + }, + "fields": [] + }, + "cborHex": "d8669f1be6ac072fb47cbe7a80ff", + "cborBytes": [216, 102, 159, 27, 230, 172, 7, 47, 180, 124, 190, 122, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2877, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5232984829455001336" + }, + "fields": [] + }, + "cborHex": "d8669f1b489f4bfa12ac66f880ff", + "cborBytes": [216, 102, 159, 27, 72, 159, 75, 250, 18, 172, 102, 248, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2878, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17290286530458145193" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13705955226673861998" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de85c320f7c1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7054552090912183343" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c7fb6540c" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5459534131715931433" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "20df325d0c71e203" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14516768261538703505" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d74fbc7c08a5b279c3ed" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ac650" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29dfe6b2abd134327b87f081" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d62ed4dcfaf9a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8c0aa09" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd6dc4e10780a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd6430668f7b5054" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd30b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16990689091586820445" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12926080544734124995" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15964198814942964232" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4336566253142180412" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e0196c08bcec972fee9594f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14046687432555691133" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f53ef50b2e90621ea79a0633" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2762cb57e68a841" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5350467381066278833" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1caf843b337500" + } + ] + } + ] + }, + "cborHex": "d8669f1beff36ffdd8add1a99fd8669f1bfffffffffffffff89f9f1bbe3555a9514dd56e46de85c320f7c11b61e6cdc0044f542f452c7fb6540cffffffd905099fd8669f1b4bc4295df00c7d299f4820df325d0c71e203ffffffd8669f1bc975ebd21bade8919f9f4ad74fbc7c08a5b279c3edffbf430ac65041524c29dfe6b2abd134327b87f081479d62ed4dcfaf9a44d8c0aa0947cd6dc4e10780a248dd6430668f7b505441d143fd30b71bebcb0db55123095dffffffd8669f1bb362a9c526f71bc39fbf1bdd8c3a3d80632a081b3c2e9407f77c823c4c5e0196c08bcec972fee9594f1bc2efdbcc206cfc7d419f4cf53ef50b2e90621ea79a063348b2762cb57e68a8411b4a40adbc2ec527b1ff471caf843b337500ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 239, 243, 111, 253, 216, 173, 209, 169, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 248, 159, 159, 27, 190, 53, 85, 169, 81, 77, 213, 110, 70, 222, 133, 195, 32, 247, 193, 27, 97, 230, 205, + 192, 4, 79, 84, 47, 69, 44, 127, 182, 84, 12, 255, 255, 255, 217, 5, 9, 159, 216, 102, 159, 27, 75, 196, 41, 93, + 240, 12, 125, 41, 159, 72, 32, 223, 50, 93, 12, 113, 226, 3, 255, 255, 255, 216, 102, 159, 27, 201, 117, 235, 210, + 27, 173, 232, 145, 159, 159, 74, 215, 79, 188, 124, 8, 165, 178, 121, 195, 237, 255, 191, 67, 10, 198, 80, 65, 82, + 76, 41, 223, 230, 178, 171, 209, 52, 50, 123, 135, 240, 129, 71, 157, 98, 237, 77, 207, 175, 154, 68, 216, 192, + 170, 9, 71, 205, 109, 196, 225, 7, 128, 162, 72, 221, 100, 48, 102, 143, 123, 80, 84, 65, 209, 67, 253, 48, 183, + 27, 235, 203, 13, 181, 81, 35, 9, 93, 255, 255, 255, 216, 102, 159, 27, 179, 98, 169, 197, 38, 247, 27, 195, 159, + 191, 27, 221, 140, 58, 61, 128, 99, 42, 8, 27, 60, 46, 148, 7, 247, 124, 130, 60, 76, 94, 1, 150, 192, 139, 206, + 201, 114, 254, 233, 89, 79, 27, 194, 239, 219, 204, 32, 108, 252, 125, 65, 159, 76, 245, 62, 245, 11, 46, 144, 98, + 30, 167, 154, 6, 51, 72, 178, 118, 44, 181, 126, 104, 168, 65, 27, 74, 64, 173, 188, 46, 197, 39, 177, 255, 71, + 28, 175, 132, 59, 51, 117, 0, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2879, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16395439806195442264" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15857271467320390869" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fe02ac0500" + }, + { + "_tag": "ByteArray", + "bytearray": "0603a8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12369471481113179499" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25d3c7aa048cbe085acc" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9fbf1be3884da3109422581bdc1058625491b4d5ff45fe02ac0500430603a8bf1baba930c69b13756b4a25d3c7aa048cbe085accffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 191, 27, 227, 136, 77, 163, 16, 148, 34, 88, 27, + 220, 16, 88, 98, 84, 145, 180, 213, 255, 69, 254, 2, 172, 5, 0, 67, 6, 3, 168, 191, 27, 171, 169, 48, 198, 155, + 19, 117, 107, 74, 37, 211, 199, 170, 4, 140, 190, 8, 90, 204, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2880, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17142966682391727369" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3929074962878122734" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efc82d55148f6a2f3e648212" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16126729952032400497" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17086370501999201387" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1102610124255494183" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "57136b3085" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4965904726117389847" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23d69bfbc6b07fac56" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8004472076042482491" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12720968075567559559" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0838f25e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17639297201645989280" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "585b94e9d8a30856f6ed2681" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17886753038255228012" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aef89d9abd1f0bb47217f0" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12425497018902783836" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7e9dbcb9c1a83e630436f28" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17648966153051896840" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1678412282168038446" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fcf1e45a86355e40" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6499479843830925014" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65c0fb94a040b007" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8442182885906029415" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13994141403638951697" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cecc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15150831331552278720" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "418ab19d8b53ec65ddfb9bd9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16247714431591380294" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17589990631306227759" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1117104842099486317" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16143794150044825121" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0fcc517d87ef" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6638514174203706354" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "79" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8987935401923753654" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13838407363240115507" + } + }, + { + "_tag": "ByteArray", + "bytearray": "39e04de5187052d243" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13094027567371175140" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bede80d5ecc50cd099fbf1b3686e0dc923b4aee4cefc82d55148f6a2f3e648212ff9fd8669f1bdfcda772c38b24719f1bed1efb71b0600c6b1b0f4d4210edff8027ffff4557136b3085bf1b44ea7009b4a916174923d69bfbc6b07fac561b6f1598f1930bb33b414f1bb089f510ef49f387440838f25e1bf4cb5f590fa6ada04c585b94e9d8a30856f6ed26811bf83a831ec657846c4baef89d9abd1f0bb47217f0ffffbf1bac703bb4a160275c4ce7e9dbcb9c1a83e630436f281bf4edb9353d8cfc081b174aeb13f947542eff48fcf1e45a86355e409fbf1b5a32ca7b745a86d64865c0fb94a040b0071b7528a89b2b4f9b6741b51bc2352d76647c6f1142cecc1bd24290d2d10838c04c418ab19d8b53ec65ddfb9bd91be17b7a3102fdf5461bf41c33488d74f02fff1b0f80c0ef6a356e6d1be00a473ef8737621460fcc517d87efd8669f1b5c20bd7815cebbf29f41791b7cbb8fa0bfd2b6b61bc00be62d8713bd334939e04de5187052d2431bb5b754b28854c4e4ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 237, 232, 13, 94, 204, 80, 205, 9, 159, 191, 27, 54, 134, 224, 220, 146, 59, 74, 238, 76, 239, + 200, 45, 85, 20, 143, 106, 47, 62, 100, 130, 18, 255, 159, 216, 102, 159, 27, 223, 205, 167, 114, 195, 139, 36, + 113, 159, 27, 237, 30, 251, 113, 176, 96, 12, 107, 27, 15, 77, 66, 16, 237, 255, 128, 39, 255, 255, 69, 87, 19, + 107, 48, 133, 191, 27, 68, 234, 112, 9, 180, 169, 22, 23, 73, 35, 214, 155, 251, 198, 176, 127, 172, 86, 27, 111, + 21, 152, 241, 147, 11, 179, 59, 65, 79, 27, 176, 137, 245, 16, 239, 73, 243, 135, 68, 8, 56, 242, 94, 27, 244, + 203, 95, 89, 15, 166, 173, 160, 76, 88, 91, 148, 233, 216, 163, 8, 86, 246, 237, 38, 129, 27, 248, 58, 131, 30, + 198, 87, 132, 108, 75, 174, 248, 157, 154, 189, 31, 11, 180, 114, 23, 240, 255, 255, 191, 27, 172, 112, 59, 180, + 161, 96, 39, 92, 76, 231, 233, 219, 203, 156, 26, 131, 230, 48, 67, 111, 40, 27, 244, 237, 185, 53, 61, 140, 252, + 8, 27, 23, 74, 235, 19, 249, 71, 84, 46, 255, 72, 252, 241, 228, 90, 134, 53, 94, 64, 159, 191, 27, 90, 50, 202, + 123, 116, 90, 134, 214, 72, 101, 192, 251, 148, 160, 64, 176, 7, 27, 117, 40, 168, 155, 43, 79, 155, 103, 65, 181, + 27, 194, 53, 45, 118, 100, 124, 111, 17, 66, 206, 204, 27, 210, 66, 144, 210, 209, 8, 56, 192, 76, 65, 138, 177, + 157, 139, 83, 236, 101, 221, 251, 155, 217, 27, 225, 123, 122, 49, 2, 253, 245, 70, 27, 244, 28, 51, 72, 141, 116, + 240, 47, 255, 27, 15, 128, 192, 239, 106, 53, 110, 109, 27, 224, 10, 71, 62, 248, 115, 118, 33, 70, 15, 204, 81, + 125, 135, 239, 216, 102, 159, 27, 92, 32, 189, 120, 21, 206, 187, 242, 159, 65, 121, 27, 124, 187, 143, 160, 191, + 210, 182, 182, 27, 192, 11, 230, 45, 135, 19, 189, 51, 73, 57, 224, 77, 229, 24, 112, 82, 210, 67, 27, 181, 183, + 84, 178, 136, 84, 196, 228, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2881, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3405996942369922036" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17516857132802039036" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0a90475975a03af8be1428" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8889104200472003354" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15731082290490269723" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b6b0efd417a95e2" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1b0a17315b14fc" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9369385547530427010" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83a8dafc120b87" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9883844989223514538" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea65dc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17406308118453578661" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07a3" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7155574629168425667" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "777175349cdf" + }, + { + "_tag": "ByteArray", + "bytearray": "18449890ec7c7f0f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7584986354697350218" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a47684f34dcbea1bf12a0" + }, + { + "_tag": "ByteArray", + "bytearray": "f52c4315311a8466afd75302" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b2f44882c60069bf49f9fd8669f1bf31860c105eedcfc9f4b0a90475975a03af8be14281b7b5c712c8091031a1bda5007ff111c601b484b6b0efd417a95e2ffff471b0a17315b14fcffbf1b8206be83ac3ada824783a8dafc120b871b892a78a69db131aa43ea65dc1bf18fa102db6c6ba54207a3ff9fd8669f1b634db5369f61aac39f46777175349cdf4818449890ec7c7f0f1b694348e711ebac4a4b8a47684f34dcbea1bf12a04cf52c4315311a8466afd75302ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 47, 68, 136, 44, 96, 6, 155, 244, 159, 159, 216, 102, 159, 27, 243, 24, 96, 193, 5, 238, 220, + 252, 159, 75, 10, 144, 71, 89, 117, 160, 58, 248, 190, 20, 40, 27, 123, 92, 113, 44, 128, 145, 3, 26, 27, 218, 80, + 7, 255, 17, 28, 96, 27, 72, 75, 107, 14, 253, 65, 122, 149, 226, 255, 255, 71, 27, 10, 23, 49, 91, 20, 252, 255, + 191, 27, 130, 6, 190, 131, 172, 58, 218, 130, 71, 131, 168, 218, 252, 18, 11, 135, 27, 137, 42, 120, 166, 157, + 177, 49, 170, 67, 234, 101, 220, 27, 241, 143, 161, 2, 219, 108, 107, 165, 66, 7, 163, 255, 159, 216, 102, 159, + 27, 99, 77, 181, 54, 159, 97, 170, 195, 159, 70, 119, 113, 117, 52, 156, 223, 72, 24, 68, 152, 144, 236, 124, 127, + 15, 27, 105, 67, 72, 231, 17, 235, 172, 74, 75, 138, 71, 104, 79, 52, 220, 190, 161, 191, 18, 160, 76, 245, 44, + 67, 21, 49, 26, 132, 102, 175, 215, 83, 2, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2882, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7407667116115326034" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9756637135363616293" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2924030525589792912" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c9e6276040f8173c3a1117f" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e5" + }, + { + "_tag": "ByteArray", + "bytearray": "a68de7" + }, + { + "_tag": "ByteArray", + "bytearray": "a28209135ebf742c1c" + }, + { + "_tag": "ByteArray", + "bytearray": "8c12" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f000a6cf92fc" + }, + { + "_tag": "ByteArray", + "bytearray": "f8a1f66ba30e12729d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15865076844813183344" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14085785348586141180" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19f9f1b66cd51fe9e657452d8669f1b876689c81fbbae259f1b28943e45562da8904c2c9e6276040f8173c3a1117fffff9f41e543a68de749a28209135ebf742c1c428c12ff46f000a6cf92fc49f8a1f66ba30e12729dffbf1bdc2c1355655d69701bc37ac32514e0f5fcffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 159, 27, 102, 205, 81, 254, 158, 101, 116, 82, + 216, 102, 159, 27, 135, 102, 137, 200, 31, 187, 174, 37, 159, 27, 40, 148, 62, 69, 86, 45, 168, 144, 76, 44, 158, + 98, 118, 4, 15, 129, 115, 195, 161, 17, 127, 255, 255, 159, 65, 229, 67, 166, 141, 231, 73, 162, 130, 9, 19, 94, + 191, 116, 44, 28, 66, 140, 18, 255, 70, 240, 0, 166, 207, 146, 252, 73, 248, 161, 246, 107, 163, 14, 18, 114, 157, + 255, 191, 27, 220, 44, 19, 85, 101, 93, 105, 112, 27, 195, 122, 195, 37, 20, 224, 245, 252, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2883, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13964702830710487969" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3123736530820046061" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d417ed960a24820362d45470" + }, + { + "_tag": "ByteArray", + "bytearray": "3b1f7bf231ae" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc4a78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4799577776852594991" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9202115220646769905" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0dbe68b9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12040816816381370028" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8498379088328922885" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15336595831768326413" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "482612" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17600911054878217406" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f9f1bc1cc973c8263fba180d8669f1b2b59bdd313709ced9f4cd417ed960a24820362d45470463b1f7bf231aeffffbf43bc4a781b429b868f0d28712fffbf1b7fb47b09ccddb4f1440dbe68b91ba719931979f61eac1b75f04ec1267417051bd4d688a6f849a10d434826121bf442ff59cd4314be4123ffff0cffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 159, 27, 193, 204, 151, 60, 130, 99, 251, 161, + 128, 216, 102, 159, 27, 43, 89, 189, 211, 19, 112, 156, 237, 159, 76, 212, 23, 237, 150, 10, 36, 130, 3, 98, 212, + 84, 112, 70, 59, 31, 123, 242, 49, 174, 255, 255, 191, 67, 188, 74, 120, 27, 66, 155, 134, 143, 13, 40, 113, 47, + 255, 191, 27, 127, 180, 123, 9, 204, 221, 180, 241, 68, 13, 190, 104, 185, 27, 167, 25, 147, 25, 121, 246, 30, + 172, 27, 117, 240, 78, 193, 38, 116, 23, 5, 27, 212, 214, 136, 166, 248, 73, 161, 13, 67, 72, 38, 18, 27, 244, 66, + 255, 89, 205, 67, 20, 190, 65, 35, 255, 255, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2884, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11472084070785329364" + }, + "fields": [] + }, + "cborHex": "d8669f1b9f3507ae4093a8d480ff", + "cborBytes": [216, 102, 159, 27, 159, 53, 7, 174, 64, 147, 168, 212, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2885, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "756203591619919737" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2415139614489356041" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15560252083952251697" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b0a7e9328f8613f799fd8669f1b21844caef49ca7099f1bd7f11ed41f817331ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 10, 126, 147, 40, 248, 97, 63, 121, 159, 216, 102, 159, 27, 33, 132, 76, 174, 244, 156, 167, 9, + 159, 27, 215, 241, 30, 212, 31, 129, 115, 49, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2886, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14522131342645354181" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2008450356833222399" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16785024956213092466" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14877226168677494949" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9814269078652027390" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bc988f983bbf15ec59fbf1b1bdf72f5540cfeff1be8f063444d25e0721bce768660a32af0a51b883349ba932781feffffff", + "cborBytes": [ + 216, 102, 159, 27, 201, 136, 249, 131, 187, 241, 94, 197, 159, 191, 27, 27, 223, 114, 245, 84, 12, 254, 255, 27, + 232, 240, 99, 68, 77, 37, 224, 114, 27, 206, 118, 134, 96, 163, 42, 240, 165, 27, 136, 51, 73, 186, 147, 39, 129, + 254, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2887, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11169568018032002970" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8345fecd06" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4790850715405485471" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10344080969198051933" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f2fdb4" + }, + { + "_tag": "ByteArray", + "bytearray": "10778a979bf71a" + }, + { + "_tag": "ByteArray", + "bytearray": "3444d192" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19fd8669f1b9b0246eef95c879a9f458345fecd069f1b427c8557b7ab859f1b8f8d8ed610eda25d43f2fdb44710778a979bf71a443444d192ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 216, 102, 159, 27, 155, 2, 70, 238, 249, 92, 135, + 154, 159, 69, 131, 69, 254, 205, 6, 159, 27, 66, 124, 133, 87, 183, 171, 133, 159, 27, 143, 141, 142, 214, 16, + 237, 162, 93, 67, 242, 253, 180, 71, 16, 119, 138, 151, 155, 247, 26, 68, 52, 68, 209, 146, 255, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2888, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "174090476207538357" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7963911477105648045" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b026a7e5da12100b59f1b6e857f4b3789e1ad80ffff", + "cborBytes": [ + 216, 102, 159, 27, 2, 106, 126, 93, 161, 33, 0, 181, 159, 27, 110, 133, 127, 75, 55, 137, 225, 173, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2889, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "47" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9440369464762113334" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [] + } + ] + }, + "cborHex": "d905019f41471b8302ee02cf971d36d87c80ff", + "cborBytes": [217, 5, 1, 159, 65, 71, 27, 131, 2, 238, 2, 207, 151, 29, 54, 216, 124, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2890, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5750386849894171518" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b4fcd7a5f8505037e9fa0ffff", + "cborBytes": [216, 102, 159, 27, 79, 205, 122, 95, 133, 5, 3, 126, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2891, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7615564377694254101" + }, + "fields": [] + }, + "cborHex": "d8669f1b69afeb73d895b41580ff", + "cborBytes": [216, 102, 159, 27, 105, 175, 235, 115, 216, 149, 180, 21, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2892, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5839738747105983325" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "ByteArray", + "bytearray": "83c14fd6869ab3e965" + } + ] + } + ] + }, + "cborHex": "d87b9f80d8669f1b510aeb7342563b5d9f0d4983c14fd6869ab3e965ffffff", + "cborBytes": [ + 216, 123, 159, 128, 216, 102, 159, 27, 81, 10, 235, 115, 66, 86, 59, 93, 159, 13, 73, 131, 193, 79, 214, 134, 154, + 179, 233, 101, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2893, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6732651241989978084" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01fd24" + } + ] + }, + "cborHex": "d8669f1b5d6f2ea22b67b7e49f4301fd24ffff", + "cborBytes": [216, 102, 159, 27, 93, 111, 46, 162, 43, 103, 183, 228, 159, 67, 1, 253, 36, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2894, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15949851241817731703" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a36f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9635453517057030879" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4031412371140016949" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6834086355990986240" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5401" + }, + { + "_tag": "ByteArray", + "bytearray": "a2ec1c3dd4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8381070388630999677" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18425056133850485110" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4039538870696091243" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15293207897142390093" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5194659334311513713" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12562948666138350217" + } + }, + { + "_tag": "ByteArray", + "bytearray": "48fa00c8e5172fc9" + } + ] + }, + "cborHex": "d9050c9f1bdd594132d0de72779f42a36f1b85b801ec45f8fadfffd8669f1b37f2743134ea7b359fd8669f1b5ed78d550d2fbe009f42540145a2ec1c3dd41b744f8b1d17e5527dffff1bffb2f2ef00ca5176a01b380f533354391e6b9f1bd43c638e395eed4d1b481723245ece0e71ffffff1bae588f4020a4d2894848fa00c8e5172fc9ff", + "cborBytes": [ + 217, 5, 12, 159, 27, 221, 89, 65, 50, 208, 222, 114, 119, 159, 66, 163, 111, 27, 133, 184, 1, 236, 69, 248, 250, + 223, 255, 216, 102, 159, 27, 55, 242, 116, 49, 52, 234, 123, 53, 159, 216, 102, 159, 27, 94, 215, 141, 85, 13, 47, + 190, 0, 159, 66, 84, 1, 69, 162, 236, 28, 61, 212, 27, 116, 79, 139, 29, 23, 229, 82, 125, 255, 255, 27, 255, 178, + 242, 239, 0, 202, 81, 118, 160, 27, 56, 15, 83, 51, 84, 57, 30, 107, 159, 27, 212, 60, 99, 142, 57, 94, 237, 77, + 27, 72, 23, 35, 36, 94, 206, 14, 113, 255, 255, 255, 27, 174, 88, 143, 64, 32, 164, 210, 137, 72, 72, 250, 0, 200, + 229, 23, 47, 201, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2895, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4063025564049720612" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6591472292439316348" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1575433270765819559" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11210569861525360557" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "691216c7eb3c87b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef58" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3474903660727454632" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7e505aea" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "849c1410a54951" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15762087889928466376" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11921168577771677546" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3333247901902477899" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8100003196007786067" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "201887928602555052" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e833a8d00fd3d61ae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2058578076115623458" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2388439224468340577" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12719156129390342172" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d94e5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17913914438114147438" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6247006654539473674" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15093393330074917475" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15163541131928739830" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6501657616423578390" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a78c5b4264" + }, + { + "_tag": "ByteArray", + "bytearray": "946206" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7432231244533469248" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "618fb5d89d48576a9cec80" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10655977792945429176" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4659083939584794357" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11fa36dcf4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c880468e3657" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21bbd2b37d5800df07594363" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba43c0624ffefd21d16c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4787599104646575831" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14972285936194385184" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15686119062676655341" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9336339227666601917" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b3862c4394283c5249fbf1b5b799d2079acd77c1b15dd1036775416a71b9b93f1e495eb4fad48691216c7eb3c87b542ef581b30395677f65d4ba8ff9f9f447e505aeaff47849c1410a54951ffd8669f1bdabe2f6cbdac2fc89fbf1ba5707fa911a1276a1b2e42134e75369a4bffffffd8669f1b7068fdfdb992a6539fbf1b02cd40005ccb72ac495e833a8d00fd3d61ae1b1c9189da79475e221b212570d1f60b7f611bb083851c570b301c432d94e51bf89b0244fc88fc6e1b56b1d3744953a30aff9f1bd1768143f65d9a631bd26fb851d1a31ff61b5a3a8727a623eb1645a78c5b426443946206ffbf1b672496f072fa10404b618fb5d89d48576a9cec801b93e1a3584af69ab81b40a864287daddef54511fa36dcf446c880468e36574c21bbd2b37d5800df075943634aba43c0624ffefd21d16cff1b4270f805176ff6d7d8669f1bcfc83ebb7e7175209f1bd9b04a2dcb534ced1b8191570fbf9cd7bdffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 56, 98, 196, 57, 66, 131, 197, 36, 159, 191, 27, 91, 121, 157, 32, 121, 172, 215, 124, 27, 21, + 221, 16, 54, 119, 84, 22, 167, 27, 155, 147, 241, 228, 149, 235, 79, 173, 72, 105, 18, 22, 199, 235, 60, 135, 181, + 66, 239, 88, 27, 48, 57, 86, 119, 246, 93, 75, 168, 255, 159, 159, 68, 126, 80, 90, 234, 255, 71, 132, 156, 20, + 16, 165, 73, 81, 255, 216, 102, 159, 27, 218, 190, 47, 108, 189, 172, 47, 200, 159, 191, 27, 165, 112, 127, 169, + 17, 161, 39, 106, 27, 46, 66, 19, 78, 117, 54, 154, 75, 255, 255, 255, 216, 102, 159, 27, 112, 104, 253, 253, 185, + 146, 166, 83, 159, 191, 27, 2, 205, 64, 0, 92, 203, 114, 172, 73, 94, 131, 58, 141, 0, 253, 61, 97, 174, 27, 28, + 145, 137, 218, 121, 71, 94, 34, 27, 33, 37, 112, 209, 246, 11, 127, 97, 27, 176, 131, 133, 28, 87, 11, 48, 28, 67, + 45, 148, 229, 27, 248, 155, 2, 68, 252, 136, 252, 110, 27, 86, 177, 211, 116, 73, 83, 163, 10, 255, 159, 27, 209, + 118, 129, 67, 246, 93, 154, 99, 27, 210, 111, 184, 81, 209, 163, 31, 246, 27, 90, 58, 135, 39, 166, 35, 235, 22, + 69, 167, 140, 91, 66, 100, 67, 148, 98, 6, 255, 191, 27, 103, 36, 150, 240, 114, 250, 16, 64, 75, 97, 143, 181, + 216, 157, 72, 87, 106, 156, 236, 128, 27, 147, 225, 163, 88, 74, 246, 154, 184, 27, 64, 168, 100, 40, 125, 173, + 222, 245, 69, 17, 250, 54, 220, 244, 70, 200, 128, 70, 142, 54, 87, 76, 33, 187, 210, 179, 125, 88, 0, 223, 7, 89, + 67, 99, 74, 186, 67, 192, 98, 79, 254, 253, 33, 209, 108, 255, 27, 66, 112, 248, 5, 23, 111, 246, 215, 216, 102, + 159, 27, 207, 200, 62, 187, 126, 113, 117, 32, 159, 27, 217, 176, 74, 45, 203, 83, 76, 237, 27, 129, 145, 87, 15, + 191, 156, 215, 189, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2896, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12751992223713811618" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b20ee4" + } + ] + }, + "cborHex": "d905019fd8669f1bb0f82d5d51015ca29f9f41a41bfffffffffffffff5ffffff43b20ee4ff", + "cborBytes": [ + 217, 5, 1, 159, 216, 102, 159, 27, 176, 248, 45, 93, 81, 1, 92, 162, 159, 159, 65, 164, 27, 255, 255, 255, 255, + 255, 255, 255, 245, 255, 255, 255, 67, 178, 14, 228, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2897, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c4030104" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9893522113206185835" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "643c3d767557197be8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "693e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "156e03fc" + } + } + ] + } + ] + }, + "cborHex": "d905039f44c4030104bf1b894cd9f19f206f6b0f49643c3d767557197be81bfffffffffffffffd42693e44156e03fcffff", + "cborBytes": [ + 217, 5, 3, 159, 68, 196, 3, 1, 4, 191, 27, 137, 76, 217, 241, 159, 32, 111, 107, 15, 73, 100, 60, 61, 118, 117, + 87, 25, 123, 232, 27, 255, 255, 255, 255, 255, 255, 255, 253, 66, 105, 62, 68, 21, 110, 3, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2898, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6823453882454837824" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de5d66c5" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7b1a1b34b9e102f61f" + } + ] + }, + "cborHex": "d87e9fa0d8669f1b5eb1c72764fb0a409f44de5d66c5ffff497b1a1b34b9e102f61fff", + "cborBytes": [ + 216, 126, 159, 160, 216, 102, 159, 27, 94, 177, 199, 39, 100, 251, 10, 64, 159, 68, 222, 93, 102, 197, 255, 255, + 73, 123, 26, 27, 52, 185, 225, 2, 246, 31, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2899, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15273097181954329773" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4573d81d131" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecf6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5fb95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b009c7" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11851752680027579407" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5285546649620270342" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d" + }, + { + "_tag": "ByteArray", + "bytearray": "48294ecf8690" + }, + { + "_tag": "ByteArray", + "bytearray": "ce76af63b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7944589893657874535" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10283192434671370650" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17294511645283398568" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1faf9a11fd" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6811aec15a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12736202461497722469" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "973286a1c7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c97c62ebbc645f8d11" + } + } + ] + } + ] + }, + "cborHex": "d8799fd8669f1bd3f4f0f776684cad9fbf46b4573d81d13142ecf643d5fb9543b009c7ffd8669f1ba479e244ead3e40f9f1b495a08ac7e5f4d06415d4648294ecf869045ce76af63b71b6e40da6a81a2d067ffff1b8eb53d096192419ad8669f1bf00272b60cf933a880ffffff451faf9a11fdbf456811aec15a1bb0c014a8d107066545973286a1c749c97c62ebbc645f8d11ffff", + "cborBytes": [ + 216, 121, 159, 216, 102, 159, 27, 211, 244, 240, 247, 118, 104, 76, 173, 159, 191, 70, 180, 87, 61, 129, 209, 49, + 66, 236, 246, 67, 213, 251, 149, 67, 176, 9, 199, 255, 216, 102, 159, 27, 164, 121, 226, 68, 234, 211, 228, 15, + 159, 27, 73, 90, 8, 172, 126, 95, 77, 6, 65, 93, 70, 72, 41, 78, 207, 134, 144, 69, 206, 118, 175, 99, 183, 27, + 110, 64, 218, 106, 129, 162, 208, 103, 255, 255, 27, 142, 181, 61, 9, 97, 146, 65, 154, 216, 102, 159, 27, 240, 2, + 114, 182, 12, 249, 51, 168, 128, 255, 255, 255, 69, 31, 175, 154, 17, 253, 191, 69, 104, 17, 174, 193, 90, 27, + 176, 192, 20, 168, 209, 7, 6, 101, 69, 151, 50, 134, 161, 199, 73, 201, 124, 98, 235, 188, 100, 95, 141, 17, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2900, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3006856907400387001" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9324334950635671116" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "22f2ed05c8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05a814" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7307910429761974471" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c68a253" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61fd45336017154b18a7765c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "538ed695dc29" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8642496bd058c380cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13989060763070388507" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4284cf4de993eea0a37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3311854234512542542" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1bc1142e3c12d2d7af6b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f7266e6d3" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10258244579529659136" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10766754976606714989" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f6092b6bcbdaac0f78a8a6" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16725630436345829222" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f7bef68dcd80aff0c71d0eb9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5407416769737945787" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13622549138469464900" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b29ba806d200799b99fd8669f1b8166b13c33660e4c9f4522f2ed05c8bf4305a8141b656ae9d12055b0c7443c68a25341db4c61fd45336017154b18a7765c46538ed695dc29498642496bd058c380cc1bc22320a5942a591b4aa4284cf4de993eea0a371b2df611e11bfe4b4e4bd1bc1142e3c12d2d7af6b5450f7266e6d3ff1b8e5c9b1835f11300d8669f1b956b329b444ffc6d9f4bf6092b6bcbdaac0f78a8a6ffffd8669f1be81d604402dad7669f4cf7bef68dcd80aff0c71d0eb91b4b0b00e700b872bbffffffff1bbd0d04441dc6ab44a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 41, 186, 128, 109, 32, 7, 153, 185, 159, 216, 102, 159, 27, 129, 102, 177, 60, 51, 102, 14, 76, + 159, 69, 34, 242, 237, 5, 200, 191, 67, 5, 168, 20, 27, 101, 106, 233, 209, 32, 85, 176, 199, 68, 60, 104, 162, + 83, 65, 219, 76, 97, 253, 69, 51, 96, 23, 21, 75, 24, 167, 118, 92, 70, 83, 142, 214, 149, 220, 41, 73, 134, 66, + 73, 107, 208, 88, 195, 128, 204, 27, 194, 35, 32, 165, 148, 42, 89, 27, 74, 164, 40, 76, 244, 222, 153, 62, 234, + 10, 55, 27, 45, 246, 17, 225, 27, 254, 75, 78, 75, 209, 188, 17, 66, 227, 193, 45, 45, 122, 246, 181, 69, 15, 114, + 102, 230, 211, 255, 27, 142, 92, 155, 24, 53, 241, 19, 0, 216, 102, 159, 27, 149, 107, 50, 155, 68, 79, 252, 109, + 159, 75, 246, 9, 43, 107, 203, 218, 172, 15, 120, 168, 166, 255, 255, 216, 102, 159, 27, 232, 29, 96, 68, 2, 218, + 215, 102, 159, 76, 247, 190, 246, 141, 205, 128, 175, 240, 199, 29, 14, 185, 27, 75, 11, 0, 231, 0, 184, 114, 187, + 255, 255, 255, 255, 27, 189, 13, 4, 68, 29, 198, 171, 68, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2901, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13170590745834976639" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f41b5dcb871fb67b" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bb6c75680a78a757f9f48f41b5dcb871fb67b80ffff", + "cborBytes": [ + 216, 102, 159, 27, 182, 199, 86, 128, 167, 138, 117, 127, 159, 72, 244, 27, 93, 203, 135, 31, 182, 123, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2902, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12896664800812039586" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bee1382ffe589343bd2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0305d6fc05f9fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77e601c4c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15902113000292216563" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fd0c" + } + ] + }, + "cborHex": "d8669f1bb2fa284e8faf7da29fbf4a6bee1382ffe589343bd2470305d6fc05f9fd4577e601c4c31bdcafa7855089eef3ff42fd0cffff", + "cborBytes": [ + 216, 102, 159, 27, 178, 250, 40, 78, 143, 175, 125, 162, 159, 191, 74, 107, 238, 19, 130, 255, 229, 137, 52, 59, + 210, 71, 3, 5, 214, 252, 5, 249, 253, 69, 119, 230, 1, 196, 195, 27, 220, 175, 167, 133, 80, 137, 238, 243, 255, + 66, 253, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2903, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2466898447831750284" + }, + "fields": [] + }, + "cborHex": "d8669f1b223c2f116ff9568c80ff", + "cborBytes": [216, 102, 159, 27, 34, 60, 47, 17, 111, 249, 86, 140, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2904, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa785afde93782" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2896940915108028979" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16242407653887979152" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13265717686114674199" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb110eaa5a95ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13921542970512764590" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9266806425171996243" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17149663056797348667" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3782652122837078295" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050a9fd905099f47aa785afde93782ffa0d8669f1bfffffffffffffff59fbf1b28340069e44f22331be1689fb48b142e901bb8194bf3637b661747fb110eaa5a95ff1bc13341927abfeeae1b809a4f5896af2e531bedffd7aff60bb33b1b347eae107a94d117ffffffff", + "cborBytes": [ + 217, 5, 10, 159, 217, 5, 9, 159, 71, 170, 120, 90, 253, 233, 55, 130, 255, 160, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 245, 159, 191, 27, 40, 52, 0, 105, 228, 79, 34, 51, 27, 225, 104, 159, 180, 139, 20, 46, 144, + 27, 184, 25, 75, 243, 99, 123, 102, 23, 71, 251, 17, 14, 170, 90, 149, 255, 27, 193, 51, 65, 146, 122, 191, 238, + 174, 27, 128, 154, 79, 88, 150, 175, 46, 83, 27, 237, 255, 215, 175, 246, 11, 179, 59, 27, 52, 126, 174, 16, 122, + 148, 209, 23, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2905, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "11eb2dbf6d" + } + ] + }, + "cborHex": "d9050d9f4511eb2dbf6dff", + "cborBytes": [217, 5, 13, 159, 69, 17, 235, 45, 191, 109, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2906, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11564954355274707406" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9297325146145932136" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6017402701831418944" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17164119302811142545" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e5f4d3f1896282032931132a" + } + ] + }, + "cborHex": "d8669f1ba07ef8b65dc171ce9f1b8106bbf60955c368bf1b53821be0312334401bee333391067bc991ffa04ce5f4d3f1896282032931132affff", + "cborBytes": [ + 216, 102, 159, 27, 160, 126, 248, 182, 93, 193, 113, 206, 159, 27, 129, 6, 187, 246, 9, 85, 195, 104, 191, 27, 83, + 130, 27, 224, 49, 35, 52, 64, 27, 238, 51, 51, 145, 6, 123, 201, 145, 255, 160, 76, 229, 244, 211, 241, 137, 98, + 130, 3, 41, 49, 19, 42, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2907, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6111525379678727730" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1842208855756179744" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11431887119786604947" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3087690984742180707" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7334477433850042774" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7186510349631016672" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1a6e923d869bdd142" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7472855603467907267" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16085894368018369099" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12393117411991561409" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b54d07ff3db88ee329f80bf1b1990d731a16d09201b9ea638c4473e79931b2ad9ae9761bbd7631b65c94c5dc9c019961b63bb9d16546ccee049a1a6e923d869bdd1421b67b4ea94167df0c31bdf3c93b374310a4b1babfd329fe97724c14122ffffff", + "cborBytes": [ + 216, 102, 159, 27, 84, 208, 127, 243, 219, 136, 238, 50, 159, 128, 191, 27, 25, 144, 215, 49, 161, 109, 9, 32, 27, + 158, 166, 56, 196, 71, 62, 121, 147, 27, 42, 217, 174, 151, 97, 187, 215, 99, 27, 101, 201, 76, 93, 201, 192, 25, + 150, 27, 99, 187, 157, 22, 84, 108, 206, 224, 73, 161, 166, 233, 35, 216, 105, 189, 209, 66, 27, 103, 180, 234, + 148, 22, 125, 240, 195, 27, 223, 60, 147, 179, 116, 49, 10, 75, 27, 171, 253, 50, 159, 233, 119, 36, 193, 65, 34, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2908, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8382974919681227699" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + }, + "cborHex": "d8669f1b74564f46489bbbb39f0dffff", + "cborBytes": [216, 102, 159, 27, 116, 86, 79, 70, 72, 155, 187, 179, 159, 13, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2909, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4971694570990316535" + }, + "fields": [] + }, + "cborHex": "d8669f1b44ff01df039dabf780ff", + "cborBytes": [216, 102, 159, 27, 68, 255, 1, 223, 3, 157, 171, 247, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2910, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13206485589244928340" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "183462520477445730" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ef43e68cd8a95bce" + }, + { + "_tag": "ByteArray", + "bytearray": "51029800de694057" + }, + { + "_tag": "ByteArray", + "bytearray": "0a2629a5e079a9a6889fb3ef" + }, + { + "_tag": "ByteArray", + "bytearray": "605b8bbcdadacd4fda8cc9fd" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14434184557500496884" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5422542889482577898" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bb746dcac264261549f9fd8669f1b028bca30baa7ee629f48ef43e68cd8a95bce4851029800de6940574c0a2629a5e079a9a6889fb3ef4c605b8bbcdadacd4fda8cc9fdffff9f1bc8508661243efbf41b4b40be0732ede7eaffffffff", + "cborBytes": [ + 216, 102, 159, 27, 183, 70, 220, 172, 38, 66, 97, 84, 159, 159, 216, 102, 159, 27, 2, 139, 202, 48, 186, 167, 238, + 98, 159, 72, 239, 67, 230, 140, 216, 169, 91, 206, 72, 81, 2, 152, 0, 222, 105, 64, 87, 76, 10, 38, 41, 165, 224, + 121, 169, 166, 136, 159, 179, 239, 76, 96, 91, 139, 188, 218, 218, 205, 79, 218, 140, 201, 253, 255, 255, 159, 27, + 200, 80, 134, 97, 36, 62, 251, 244, 27, 75, 64, 190, 7, 50, 237, 231, 234, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2911, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5716743255308798244" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b4f55f3b3bcca89249fa0ffff", + "cborBytes": [216, 102, 159, 27, 79, 85, 243, 179, 188, 202, 137, 36, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2912, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13021436926874799458" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0ac" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9217610889949044109" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a69c23286ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "705248918398477618" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25691d89f9bf0287c7c265" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35450a4b0d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5211ccb2910d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2660671667404346547" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66614fbb80a52477" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5346092489505365532" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aaf52c48" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2846258083533937223" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e21ef7a91cf7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8194135725489141593" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18368114151904029410" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2300384788080629529" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7581525785330491032" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7048677455872652432" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2451256696420244388" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8474684357072778297" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "300bb1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17207525324735722892" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ef5cc7e5c8aaca38182a761" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8931036025242301732" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3801fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d7ad30d2d5adbf7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d103f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0406e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f815" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bb4b56fe4fb86cd629f42c0acd8669f1b7feb8844752f5d8d9fbf461a69c23286ba1b09c98c279b5ea5324b25691d89f9bf0287c7c2654535450a4b0d465211ccb2910d1b24ec9ac8df9514b34866614fbb80a524771b4a3122cb5d59de1c44aaf52c481b277ff0a5981fda4746e21ef7a91cf71b71b76b07271e3759ff1bfee8a680b210aae2bf1b1fec9bc6dc4217191b6936fd887a169e981b61d1eeccf597f4901b22049cfa636d1ba41b759c20859ee1f43943300bb11beecd691d0c69358c4c7ef5cc7e5c8aaca38182a761ffd8669f1bfffffffffffffffd80ff9f1b7bf169f240c8b524ffffffbf433801fe488d7ad30d2d5adbf743d103f8430406e241e61bfffffffffffffff242f81508ffffff", + "cborBytes": [ + 216, 102, 159, 27, 180, 181, 111, 228, 251, 134, 205, 98, 159, 66, 192, 172, 216, 102, 159, 27, 127, 235, 136, 68, + 117, 47, 93, 141, 159, 191, 70, 26, 105, 194, 50, 134, 186, 27, 9, 201, 140, 39, 155, 94, 165, 50, 75, 37, 105, + 29, 137, 249, 191, 2, 135, 199, 194, 101, 69, 53, 69, 10, 75, 13, 70, 82, 17, 204, 178, 145, 13, 27, 36, 236, 154, + 200, 223, 149, 20, 179, 72, 102, 97, 79, 187, 128, 165, 36, 119, 27, 74, 49, 34, 203, 93, 89, 222, 28, 68, 170, + 245, 44, 72, 27, 39, 127, 240, 165, 152, 31, 218, 71, 70, 226, 30, 247, 169, 28, 247, 27, 113, 183, 107, 7, 39, + 30, 55, 89, 255, 27, 254, 232, 166, 128, 178, 16, 170, 226, 191, 27, 31, 236, 155, 198, 220, 66, 23, 25, 27, 105, + 54, 253, 136, 122, 22, 158, 152, 27, 97, 209, 238, 204, 245, 151, 244, 144, 27, 34, 4, 156, 250, 99, 109, 27, 164, + 27, 117, 156, 32, 133, 158, 225, 244, 57, 67, 48, 11, 177, 27, 238, 205, 105, 29, 12, 105, 53, 140, 76, 126, 245, + 204, 126, 92, 138, 172, 163, 129, 130, 167, 97, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, + 128, 255, 159, 27, 123, 241, 105, 242, 64, 200, 181, 36, 255, 255, 255, 191, 67, 56, 1, 254, 72, 141, 122, 211, + 13, 45, 90, 219, 247, 67, 209, 3, 248, 67, 4, 6, 226, 65, 230, 27, 255, 255, 255, 255, 255, 255, 255, 242, 66, + 248, 21, 8, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2913, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3369048102372102818" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1147994410277271833" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15864405136895238490" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11961449464874347380" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b19e975" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7931b93216" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79467eeee11938f487" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8806457632857288362" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7db6610d4ddb5e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8778536616600842917" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8299a7d56c089bc5300515ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e5a3439" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "919b64ff2c9ef4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9789240393664856164" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1022251214014955898" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "231e3831" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "304384074788179594" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2935b009f07e9968a127" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7736241108498979750" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f4043412a57b71758" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbab4fe45b99f6e78570fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7219" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "471371491464413074" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b90526a20e659fcb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9af08bdb735ec88fcd90aa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dedbe89784281240" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1524e6edf4ca8bac41" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7969092700613182412" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2535624246644134601" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1dff26ac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20980699b1" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79f9f9f1b2ec143662d17d2a21b0fee7ed574b5f91941311bdc29b06b3585e15affffd8669f1ba5ff9ae9f09f2b749fbf446b19e975457931b932164979467eeee11938f4871b7a36d28ef7fc6eaa477db6610d4ddb5e1b79d3a08ac840b2a54c8299a7d56c089bc5300515ea445e5a343947919b64ff2c9ef41b87da5e45bd4c8064ffffff1b0e2fc4102292c17abf44231e38311b043963b40d090e8a4a2935b009f07e9968a1271b6b5ca64cc0db1ba6496f4043412a57b717584bcbab4fe45b99f6e78570fa4272191b068aa5dfc1fb7f9248b90526a20e659fcb4b9af08bdb735ec88fcd90aa48dedbe89784281240491524e6edf4ca8bac41ffbf1b6e97e796d23503cc1b233058d1691752c9441dff26ac4520980699b1ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 159, 159, 27, 46, 193, 67, 102, 45, 23, 210, 162, + 27, 15, 238, 126, 213, 116, 181, 249, 25, 65, 49, 27, 220, 41, 176, 107, 53, 133, 225, 90, 255, 255, 216, 102, + 159, 27, 165, 255, 154, 233, 240, 159, 43, 116, 159, 191, 68, 107, 25, 233, 117, 69, 121, 49, 185, 50, 22, 73, + 121, 70, 126, 238, 225, 25, 56, 244, 135, 27, 122, 54, 210, 142, 247, 252, 110, 170, 71, 125, 182, 97, 13, 77, + 219, 94, 27, 121, 211, 160, 138, 200, 64, 178, 165, 76, 130, 153, 167, 213, 108, 8, 155, 197, 48, 5, 21, 234, 68, + 94, 90, 52, 57, 71, 145, 155, 100, 255, 44, 158, 244, 27, 135, 218, 94, 69, 189, 76, 128, 100, 255, 255, 255, 27, + 14, 47, 196, 16, 34, 146, 193, 122, 191, 68, 35, 30, 56, 49, 27, 4, 57, 99, 180, 13, 9, 14, 138, 74, 41, 53, 176, + 9, 240, 126, 153, 104, 161, 39, 27, 107, 92, 166, 76, 192, 219, 27, 166, 73, 111, 64, 67, 65, 42, 87, 183, 23, 88, + 75, 203, 171, 79, 228, 91, 153, 246, 231, 133, 112, 250, 66, 114, 25, 27, 6, 138, 165, 223, 193, 251, 127, 146, + 72, 185, 5, 38, 162, 14, 101, 159, 203, 75, 154, 240, 139, 219, 115, 94, 200, 143, 205, 144, 170, 72, 222, 219, + 232, 151, 132, 40, 18, 64, 73, 21, 36, 230, 237, 244, 202, 139, 172, 65, 255, 191, 27, 110, 151, 231, 150, 210, + 53, 3, 204, 27, 35, 48, 88, 209, 105, 23, 82, 201, 68, 29, 255, 38, 172, 69, 32, 152, 6, 153, 177, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2914, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10485003449443145075" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4d18e3abb60507" + }, + { + "_tag": "ByteArray", + "bytearray": "4ffe407829858180bbd8744b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7b52f7e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12669fd7" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "383687dc5b5ec2961e82cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10234341019642713616" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "421ad2389e0b0c83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8633330052915745029" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7413949fb7e141b75b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56804ce1fc5f9da1b0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4f8228fc3dc7953230132" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12707480582221954369" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c838770098e1d872c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6193819547294365057" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b91823715d8cdd5739f9f474d18e3abb605074c4ffe407829858180bbd8744bbf44e7b52f7e4412669fd7ffffbf4b383687dc5b5ec2961e82cf1b8e07aeeefa03561048421ad2389e0b0c831b77cfbff118bf5105497413949fb7e141b75b4956804ce1fc5f9da1b04ba4f8228fc3dc79532301321bb05a0a432d837d4149c838770098e1d872c31b55f4de0fdf59f581ffffff", + "cborBytes": [ + 216, 102, 159, 27, 145, 130, 55, 21, 216, 205, 213, 115, 159, 159, 71, 77, 24, 227, 171, 182, 5, 7, 76, 79, 254, + 64, 120, 41, 133, 129, 128, 187, 216, 116, 75, 191, 68, 231, 181, 47, 126, 68, 18, 102, 159, 215, 255, 255, 191, + 75, 56, 54, 135, 220, 91, 94, 194, 150, 30, 130, 207, 27, 142, 7, 174, 238, 250, 3, 86, 16, 72, 66, 26, 210, 56, + 158, 11, 12, 131, 27, 119, 207, 191, 241, 24, 191, 81, 5, 73, 116, 19, 148, 159, 183, 225, 65, 183, 91, 73, 86, + 128, 76, 225, 252, 95, 157, 161, 176, 75, 164, 248, 34, 143, 195, 220, 121, 83, 35, 1, 50, 27, 176, 90, 10, 67, + 45, 131, 125, 65, 73, 200, 56, 119, 0, 152, 225, 216, 114, 195, 27, 85, 244, 222, 15, 223, 89, 245, 129, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2915, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15230994098637175531" + }, + "fields": [] + }, + "cborHex": "d8669f1bd35f5c6f7956faeb80ff", + "cborBytes": [216, 102, 159, 27, 211, 95, 92, 111, 121, 86, 250, 235, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2916, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13187973502513429508" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "03" + } + ] + }, + "cborHex": "d8669f1bb70518071493bc049f4103ffff", + "cborBytes": [216, 102, 159, 27, 183, 5, 24, 7, 20, 147, 188, 4, 159, 65, 3, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2917, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bafc0749fa" + } + ] + }, + "cborHex": "d905019f45bafc0749faff", + "cborBytes": [217, 5, 1, 159, 69, 186, 252, 7, 73, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2918, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3323281564507873484" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2153201483661922250" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3935318504146654812" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0646" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5441521d4a503b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "26f800" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6313640327330662123" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2e1eaaf9b518a0cc9fbf0e1b1de1b5575b834fca4205f91b369d0f544daed65c420646475441521d4a503b4326f8001b579e8e6d362006ebffffff", + "cborBytes": [ + 216, 102, 159, 27, 46, 30, 170, 249, 181, 24, 160, 204, 159, 191, 14, 27, 29, 225, 181, 87, 91, 131, 79, 202, 66, + 5, 249, 27, 54, 157, 15, 84, 77, 174, 214, 92, 66, 6, 70, 71, 84, 65, 82, 29, 74, 80, 59, 67, 38, 248, 0, 27, 87, + 158, 142, 109, 54, 32, 6, 235, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2919, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cff98d38db9c" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8276603758812021549" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14199385798894179523" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3854321324494319521" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e650cf" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8334477915756d5c894741bf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10846546504317914401" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7bf250" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1974800918085167977" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14315792985440476982" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8848351180480046499" + } + }, + { + "_tag": "ByteArray", + "bytearray": "14cc9754" + } + ] + } + ] + } + ] + }, + "cborHex": "d87e9f46cff98d38db9ca01b72dc67446ea7432dd8669f1bc50e5a270bd054c39fd8669f1b357d4cd2d4b26fa19f43e650cfffff4c8334477915756d5c894741bf1b9686ac94059fcd21437bf250d8669f1b1b67e6f8d894eb699f1bc6abe9df37355f361b7acba884a06be5a34414cc9754ffffffffff", + "cborBytes": [ + 216, 126, 159, 70, 207, 249, 141, 56, 219, 156, 160, 27, 114, 220, 103, 68, 110, 167, 67, 45, 216, 102, 159, 27, + 197, 14, 90, 39, 11, 208, 84, 195, 159, 216, 102, 159, 27, 53, 125, 76, 210, 212, 178, 111, 161, 159, 67, 230, 80, + 207, 255, 255, 76, 131, 52, 71, 121, 21, 117, 109, 92, 137, 71, 65, 191, 27, 150, 134, 172, 148, 5, 159, 205, 33, + 67, 123, 242, 80, 216, 102, 159, 27, 27, 103, 230, 248, 216, 148, 235, 105, 159, 27, 198, 171, 233, 223, 55, 53, + 95, 54, 27, 122, 203, 168, 132, 160, 107, 229, 163, 68, 20, 204, 151, 84, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2920, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1408460432930301898" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17654952137914646634" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14538139169697601174" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd0236aef38baaf403f1c6fa" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4688" + }, + { + "_tag": "ByteArray", + "bytearray": "14796dff3506d46bcf2315" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6928472936751686977" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9533888482402740894" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11155250229016620499" + } + }, + { + "_tag": "ByteArray", + "bytearray": "54d9f3" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15784286319630674645" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c04bcd5864bf2aa1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12752858653286317244" + } + } + ] + }, + "cborHex": "d8669f1b138bdb4d2900e7ca9f80d8669f1bf502fd6df2ed006a9fd8669f1bc9c1d88c690496969f4cfd0236aef38baaf403f1c6faffff4246884b14796dff3506d46bcf23159f1b6026e16d66fde5411b844f2d0fe1cdaa9e1b9acf68faf1216dd34354d9f3ffffff1bdb0d0cc76aa4ead548c04bcd5864bf2aa11bb0fb4160abe5bcbcffff", + "cborBytes": [ + 216, 102, 159, 27, 19, 139, 219, 77, 41, 0, 231, 202, 159, 128, 216, 102, 159, 27, 245, 2, 253, 109, 242, 237, 0, + 106, 159, 216, 102, 159, 27, 201, 193, 216, 140, 105, 4, 150, 150, 159, 76, 253, 2, 54, 174, 243, 139, 170, 244, + 3, 241, 198, 250, 255, 255, 66, 70, 136, 75, 20, 121, 109, 255, 53, 6, 212, 107, 207, 35, 21, 159, 27, 96, 38, + 225, 109, 102, 253, 229, 65, 27, 132, 79, 45, 15, 225, 205, 170, 158, 27, 154, 207, 104, 250, 241, 33, 109, 211, + 67, 84, 217, 243, 255, 255, 255, 27, 219, 13, 12, 199, 106, 164, 234, 213, 72, 192, 75, 205, 88, 100, 191, 42, + 161, 27, 176, 251, 65, 96, 171, 229, 188, 188, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2921, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17002075011168239705" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4790739220841763529" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af733eec0e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6cd641" + } + ] + }, + "cborHex": "d8669f1bebf381244d3a80599fbf1b427c1ff05dce12c945af733eec0eff436cd641ffff", + "cborBytes": [ + 216, 102, 159, 27, 235, 243, 129, 36, 77, 58, 128, 89, 159, 191, 27, 66, 124, 31, 240, 93, 206, 18, 201, 69, 175, + 115, 62, 236, 14, 255, 67, 108, 214, 65, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2922, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3589804483021433327" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15175824509419259037" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7782840451730407254" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16109298610592333517" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b31d18c285f98e9ef9fd8799f1bd29b5bfc819a049dd8669f1b6c023427d4ee7f5680ff1bdf8fb9bc510cbecdffffff", + "cborBytes": [ + 216, 102, 159, 27, 49, 209, 140, 40, 95, 152, 233, 239, 159, 216, 121, 159, 27, 210, 155, 91, 252, 129, 154, 4, + 157, 216, 102, 159, 27, 108, 2, 52, 39, 212, 238, 127, 86, 128, 255, 27, 223, 143, 185, 188, 81, 12, 190, 205, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2923, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11102847092024296791" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15796800043978402311" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ddd46e6f0c919f82bff842f8" + }, + { + "_tag": "ByteArray", + "bytearray": "29fc7e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c58aa9a1330f24" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1176728243296967901" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed45db" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1281371528344130005" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad20079103ba97" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7624991103209645845" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4151" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13607686620970455203" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14266016604748094734" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5243157458225146304" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16855805450409998798" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e199e2f4" + }, + { + "_tag": "ByteArray", + "bytearray": "272908203aa14de56ba8a5dc" + }, + { + "_tag": "ByteArray", + "bytearray": "d7ae" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12462191167258921591" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14653522689303708313" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5667507434018612388" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17853077782787324523" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e1810ddd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1941827913968583688" + } + }, + { + "_tag": "ByteArray", + "bytearray": "034d6bbd3c2e67db01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16259901243813809552" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7344142828301471995" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f04a04bdab07c6a4" + }, + { + "_tag": "ByteArray", + "bytearray": "ddb7f5" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3272338377392118406" + } + } + ] + }, + "cborHex": "d8669f1b9a153c9ad39645579fd8669f1bdb3981f1e9352a079f4cddd46e6f0c919f82bff842f84329fc7e9f47c58aa9a1330f24ffbf1b1054941a4ae29cdd43ed45db1b11c8589db44051d547ad20079103ba971b69d169026a5327154241511bbcd836e299c790a31bc5fb128475d59d0effd8669f1b48c36fedc6f329c09f1be9ebd9c052c7f9ce44e199e2f44c272908203aa14de56ba8a5dc42d7aeffffffff9f1bacf298d6cf7a8a771bcb5bc53f8c130299ff9f1b4ea707fbc690a4a49f1bf7c2dfa75e74fa6b44e1810ddd1b1af2c2331309040849034d6bbd3c2e67db011be1a6c60858744d90ff9f1b65eba2fdcca450fb48f04a04bdab07c6a443ddb7f5ffff1b2d69ae6aa955da86ffff", + "cborBytes": [ + 216, 102, 159, 27, 154, 21, 60, 154, 211, 150, 69, 87, 159, 216, 102, 159, 27, 219, 57, 129, 241, 233, 53, 42, 7, + 159, 76, 221, 212, 110, 111, 12, 145, 159, 130, 191, 248, 66, 248, 67, 41, 252, 126, 159, 71, 197, 138, 169, 161, + 51, 15, 36, 255, 191, 27, 16, 84, 148, 26, 74, 226, 156, 221, 67, 237, 69, 219, 27, 17, 200, 88, 157, 180, 64, 81, + 213, 71, 173, 32, 7, 145, 3, 186, 151, 27, 105, 209, 105, 2, 106, 83, 39, 21, 66, 65, 81, 27, 188, 216, 54, 226, + 153, 199, 144, 163, 27, 197, 251, 18, 132, 117, 213, 157, 14, 255, 216, 102, 159, 27, 72, 195, 111, 237, 198, 243, + 41, 192, 159, 27, 233, 235, 217, 192, 82, 199, 249, 206, 68, 225, 153, 226, 244, 76, 39, 41, 8, 32, 58, 161, 77, + 229, 107, 168, 165, 220, 66, 215, 174, 255, 255, 255, 255, 159, 27, 172, 242, 152, 214, 207, 122, 138, 119, 27, + 203, 91, 197, 63, 140, 19, 2, 153, 255, 159, 27, 78, 167, 7, 251, 198, 144, 164, 164, 159, 27, 247, 194, 223, 167, + 94, 116, 250, 107, 68, 225, 129, 13, 221, 27, 26, 242, 194, 51, 19, 9, 4, 8, 73, 3, 77, 107, 189, 60, 46, 103, + 219, 1, 27, 225, 166, 198, 8, 88, 116, 77, 144, 255, 159, 27, 101, 235, 162, 253, 204, 164, 80, 251, 72, 240, 74, + 4, 189, 171, 7, 198, 164, 67, 221, 183, 245, 255, 255, 27, 45, 105, 174, 106, 169, 85, 218, 134, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2924, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16824908227309514339" + }, + "fields": [] + }, + "cborHex": "d8669f1be97e14e3fb54ae6380ff", + "cborBytes": [216, 102, 159, 27, 233, 126, 20, 227, 251, 84, 174, 99, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2925, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8200355135020170084" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7ffacb10a2" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3196026764886667745" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5886302617579439552" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17985524848939858671" + } + }, + { + "_tag": "ByteArray", + "bytearray": "57213c" + }, + { + "_tag": "ByteArray", + "bytearray": "24769d4142653957bd" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac8ea10179" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d3cdb7703988e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4aa4e3ccfba70f4c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60dcbe9f403771fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4960321252822484170" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "712a4ebe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6eae48dc9ea9ad425943f108" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95e432caebf86e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14235083238043383777" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e66c118" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17185964991816774822" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15264936447296681364" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16769217322849814664" + } + }, + { + "_tag": "ByteArray", + "bytearray": "89f4314f20" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6317635908365783073" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2352371434171380487" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6205149646256180872" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fd02f7a2f8f800" + } + ] + }, + "cborHex": "d8669f1b71cd838c46ed7b649f9f457ffacb10a2ffd8669f1b2c5a9168cdb5f1e19fd8669f1b51b0590b314645c09f1bf9996b8f08057aef4357213c4924769d4142653957bdffffbf410a45ac8ea10179471d3cdb7703988e484aa4e3ccfba70f4c4860dcbe9f403771fd1b44d699e6064e04ca44712a4ebe4c6eae48dc9ea9ad425943f1084795e432caebf86e1bc58d2cc8c7b177e1449e66c1181bee80d01adb89b4a6ffd8669f1bd3d7f2d25c0835949f1be8b83a4ed9ca48884589f4314f201b57acc062ea6510211b20a54d5b218fb307ffffd8669f1b561d1eba1b3d8e8880ffffff47fd02f7a2f8f800ffff", + "cborBytes": [ + 216, 102, 159, 27, 113, 205, 131, 140, 70, 237, 123, 100, 159, 159, 69, 127, 250, 203, 16, 162, 255, 216, 102, + 159, 27, 44, 90, 145, 104, 205, 181, 241, 225, 159, 216, 102, 159, 27, 81, 176, 89, 11, 49, 70, 69, 192, 159, 27, + 249, 153, 107, 143, 8, 5, 122, 239, 67, 87, 33, 60, 73, 36, 118, 157, 65, 66, 101, 57, 87, 189, 255, 255, 191, 65, + 10, 69, 172, 142, 161, 1, 121, 71, 29, 60, 219, 119, 3, 152, 142, 72, 74, 164, 227, 204, 251, 167, 15, 76, 72, 96, + 220, 190, 159, 64, 55, 113, 253, 27, 68, 214, 153, 230, 6, 78, 4, 202, 68, 113, 42, 78, 190, 76, 110, 174, 72, + 220, 158, 169, 173, 66, 89, 67, 241, 8, 71, 149, 228, 50, 202, 235, 248, 110, 27, 197, 141, 44, 200, 199, 177, + 119, 225, 68, 158, 102, 193, 24, 27, 238, 128, 208, 26, 219, 137, 180, 166, 255, 216, 102, 159, 27, 211, 215, 242, + 210, 92, 8, 53, 148, 159, 27, 232, 184, 58, 78, 217, 202, 72, 136, 69, 137, 244, 49, 79, 32, 27, 87, 172, 192, 98, + 234, 101, 16, 33, 27, 32, 165, 77, 91, 33, 143, 179, 7, 255, 255, 216, 102, 159, 27, 86, 29, 30, 186, 27, 61, 142, + 136, 128, 255, 255, 255, 71, 253, 2, 247, 162, 248, 248, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2926, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9411973184743246762" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "73684775006968727" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b829e0bbea81f8baa9f1b0105c7e997a51b97a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 130, 158, 11, 190, 168, 31, 139, 170, 159, 27, 1, 5, 199, 233, 151, 165, 27, 151, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2927, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "92" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9822146480215923502" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13055713291688325568" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1629632572358610616" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c5bdf15b38f14804" + }, + { + "_tag": "ByteArray", + "bytearray": "d74d" + }, + { + "_tag": "ByteArray", + "bytearray": "b4b41ccba1e33c68" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f4192d8669f1b884f462f0d1f9b2e80ffd8669f1bb52f3611106db1c09fd8669f1b169d9e30bdd74eb89f48c5bdf15b38f1480442d74d48b4b41ccba1e33c68ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 65, 146, 216, 102, 159, 27, 136, 79, 70, 47, 13, + 31, 155, 46, 128, 255, 216, 102, 159, 27, 181, 47, 54, 17, 16, 109, 177, 192, 159, 216, 102, 159, 27, 22, 157, + 158, 48, 189, 215, 78, 184, 159, 72, 197, 189, 241, 91, 56, 241, 72, 4, 66, 215, 77, 72, 180, 180, 28, 203, 161, + 227, 60, 104, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2928, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4170485008547034201" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14422900589974621752" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eb214251f2b221ab3f5b13a3" + }, + { + "_tag": "ByteArray", + "bytearray": "58de721d7abb4173387a35" + }, + { + "_tag": "ByteArray", + "bytearray": "516c2020cd7090e9" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14469418047923562695" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9624494503833501939" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16770030514255253343" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10608274593758530379" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2326401806132788083" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5442638264156192786" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13865560618411010261" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14941718562141853870" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9c800b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11420595156794939827" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15768353058857523012" + } + }, + { + "_tag": "ByteArray", + "bytearray": "688025ecc2f03d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2084168729693603859" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c6fff7b964d528739d7a7c4b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9504342845804317036" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7281196453224124958" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14552756320547438740" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c9d471a9bf" + }, + { + "_tag": "ByteArray", + "bytearray": "06c9b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10644602212872863740" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11928726943154192196" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14461153134376043461" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14742703443355256223" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87d9fd905029f9f1b39e08a04e389b4591bc8286fabb8358e384ceb214251f2b221ab3f5b13a34b58de721d7abb4173387a3548516c2020cd7090e9ffd8669f1bc8cdb30d651c28c79f1b859112c22bb200f31be8bb1de6baa54f5fffff9f1b93382989b8c74b4b1b20490a1deb5f3b731b4b8822aa37fa8012ffbf1bc06c5deb6808a8d51bcf5ba5de1e5358aeffff439c800bd8669f1bffffffffffffffee9fd8669f1b9e7e1ac9444f19b39f1bdad471900e25974447688025ecc2f03d1b1cec746ad15d48134cc6fff7b964d528739d7a7c4b1b83e635764bb1096cffff9f1b650c0198c642121effd8669f1bc9f5c6c50d0d00949f45c9d471a9bf4306c9b91b93b93950a99fbffc1ba58b59f425563f44ffffd8669f1bc8b056284102c3c59f1bcc989aabea1e459fffffffffa0ff", + "cborBytes": [ + 216, 125, 159, 217, 5, 2, 159, 159, 27, 57, 224, 138, 4, 227, 137, 180, 89, 27, 200, 40, 111, 171, 184, 53, 142, + 56, 76, 235, 33, 66, 81, 242, 178, 33, 171, 63, 91, 19, 163, 75, 88, 222, 114, 29, 122, 187, 65, 115, 56, 122, 53, + 72, 81, 108, 32, 32, 205, 112, 144, 233, 255, 216, 102, 159, 27, 200, 205, 179, 13, 101, 28, 40, 199, 159, 27, + 133, 145, 18, 194, 43, 178, 0, 243, 27, 232, 187, 29, 230, 186, 165, 79, 95, 255, 255, 159, 27, 147, 56, 41, 137, + 184, 199, 75, 75, 27, 32, 73, 10, 29, 235, 95, 59, 115, 27, 75, 136, 34, 170, 55, 250, 128, 18, 255, 191, 27, 192, + 108, 93, 235, 104, 8, 168, 213, 27, 207, 91, 165, 222, 30, 83, 88, 174, 255, 255, 67, 156, 128, 11, 216, 102, 159, + 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 216, 102, 159, 27, 158, 126, 26, 201, 68, 79, 25, 179, 159, 27, + 218, 212, 113, 144, 14, 37, 151, 68, 71, 104, 128, 37, 236, 194, 240, 61, 27, 28, 236, 116, 106, 209, 93, 72, 19, + 76, 198, 255, 247, 185, 100, 213, 40, 115, 157, 122, 124, 75, 27, 131, 230, 53, 118, 75, 177, 9, 108, 255, 255, + 159, 27, 101, 12, 1, 152, 198, 66, 18, 30, 255, 216, 102, 159, 27, 201, 245, 198, 197, 13, 13, 0, 148, 159, 69, + 201, 212, 113, 169, 191, 67, 6, 201, 185, 27, 147, 185, 57, 80, 169, 159, 191, 252, 27, 165, 139, 89, 244, 37, 86, + 63, 68, 255, 255, 216, 102, 159, 27, 200, 176, 86, 40, 65, 2, 195, 197, 159, 27, 204, 152, 154, 171, 234, 30, 69, + 159, 255, 255, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2929, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "332478865135946144" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e1bff" + } + ] + }, + "cborHex": "d905059f1b049d33c42bc0c9a0434e1bffff", + "cborBytes": [217, 5, 5, 159, 27, 4, 157, 51, 196, 43, 192, 201, 160, 67, 78, 27, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2930, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "490048" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5495867818719252241" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2966840274986607253" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16006400395273356757" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16948226810657663055" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "370682b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bccc66e7b592c8740d6c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b4e3d39884f36" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ead40b25d4109" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cf8213c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2764114932143758659" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18167186945551060208" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b8b55061d58075f6d691" + }, + { + "_tag": "ByteArray", + "bytearray": "d499d92e3a" + }, + { + "_tag": "ByteArray", + "bytearray": "ccd8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13462132203650624959" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2554831334884136701" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a8b2bcf0ea41fb38" + } + ] + }, + "cborHex": "d87a9f43490048d905059fd8669f1b4c453ea9ab430f119f1b292c5582d7e622951bde22285a9cf0c5d5ffff1beb34327d1e00684fbf44370682b84abccc66e7b592c8740d6c479b4e3d39884f36479ead40b25d4109449cf8213c1b265c1be2c8c81d43ff80d8669f1bfc1ed045e9af4cf09f4ab8b55061d58075f6d69145d499d92e3a42ccd81bbad319e9edf12dbf1b2374959020ce56fdffffff48a8b2bcf0ea41fb38ff", + "cborBytes": [ + 216, 122, 159, 67, 73, 0, 72, 217, 5, 5, 159, 216, 102, 159, 27, 76, 69, 62, 169, 171, 67, 15, 17, 159, 27, 41, + 44, 85, 130, 215, 230, 34, 149, 27, 222, 34, 40, 90, 156, 240, 197, 213, 255, 255, 27, 235, 52, 50, 125, 30, 0, + 104, 79, 191, 68, 55, 6, 130, 184, 74, 188, 204, 102, 231, 181, 146, 200, 116, 13, 108, 71, 155, 78, 61, 57, 136, + 79, 54, 71, 158, 173, 64, 178, 93, 65, 9, 68, 156, 248, 33, 60, 27, 38, 92, 27, 226, 200, 200, 29, 67, 255, 128, + 216, 102, 159, 27, 252, 30, 208, 69, 233, 175, 76, 240, 159, 74, 184, 181, 80, 97, 213, 128, 117, 246, 214, 145, + 69, 212, 153, 217, 46, 58, 66, 204, 216, 27, 186, 211, 25, 233, 237, 241, 45, 191, 27, 35, 116, 149, 144, 32, 206, + 86, 253, 255, 255, 255, 72, 168, 178, 188, 240, 234, 65, 251, 56, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2931, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1097327622782922044" + } + } + ] + }, + "cborHex": "d9050a9f1b0f3a7da8b6332d3cff", + "cborBytes": [217, 5, 10, 159, 27, 15, 58, 125, 168, 182, 51, 45, 60, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2932, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10925224558457332998" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "183379533067196990" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17673588163442142859" + } + }, + { + "_tag": "ByteArray", + "bytearray": "619c235fe21cb3" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "304e04037a41289322" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12576003154375325147" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "860220de34a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f8bc699" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "73" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49d8cc74" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b979e31da023925069f9fd8669f1b028b7eb6b78c1a3e9f1bf54532cbc4846e8b47619c235fe21cb3ffffffbf49304e04037a412893221bae86f03d06bbb5db46860220de34a2442f8bc699ffa0bf41734449d8cc74ffffff", + "cborBytes": [ + 216, 102, 159, 27, 151, 158, 49, 218, 2, 57, 37, 6, 159, 159, 216, 102, 159, 27, 2, 139, 126, 182, 183, 140, 26, + 62, 159, 27, 245, 69, 50, 203, 196, 132, 110, 139, 71, 97, 156, 35, 95, 226, 28, 179, 255, 255, 255, 191, 73, 48, + 78, 4, 3, 122, 65, 40, 147, 34, 27, 174, 134, 240, 61, 6, 187, 181, 219, 70, 134, 2, 32, 222, 52, 162, 68, 47, + 139, 198, 153, 255, 160, 191, 65, 115, 68, 73, 216, 204, 116, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2933, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + "cborHex": "d8799f0710ff", + "cborBytes": [216, 121, 159, 7, 16, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2934, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15241578728241709452" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fdba3f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4569683909511189991" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "13cd33db784b4ffc090c188f" + } + ] + }, + "cborHex": "d8669f1bd384f71998ff418c9fa09fd905098043fdba3f1b3f6ac74df23b95e7ff4c13cd33db784b4ffc090c188fffff", + "cborBytes": [ + 216, 102, 159, 27, 211, 132, 247, 25, 152, 255, 65, 140, 159, 160, 159, 217, 5, 9, 128, 67, 253, 186, 63, 27, 63, + 106, 199, 77, 242, 59, 149, 231, 255, 76, 19, 205, 51, 219, 120, 75, 79, 252, 9, 12, 24, 143, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2935, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "73189072407887287" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7488675604129696137" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13562263745614659975" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16430267520773975272" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3716382046724658561" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8760385881145323693" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12648027018319314451" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8ba290eb057a8aa5283408d8" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f6ef40d836895d79b7994ade" + }, + { + "_tag": "ByteArray", + "bytearray": "a0ae5f3c1dac20bf9bde" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1441899020294047403" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18082185131920680764" + }, + "fields": [] + } + ] + }, + "cborHex": "d905079fd8669f1b01040512d64ffdb79f0ad8669f1b67ed1ec90648c98980ffffffd8669f1bbc36d7054b8541879fd8669f1be4040942445eece89f412e1b33933dc800a995811b7993248b5d03b0ad1baf86d18fa0773e134c8ba290eb057a8aa5283408d8ffff4cf6ef40d836895d79b7994ade4aa0ae5f3c1dac20bf9bde1b1402a784fa9c46abffffd8669f1bfaf0d392eefb673c80ffff", + "cborBytes": [ + 217, 5, 7, 159, 216, 102, 159, 27, 1, 4, 5, 18, 214, 79, 253, 183, 159, 10, 216, 102, 159, 27, 103, 237, 30, 201, + 6, 72, 201, 137, 128, 255, 255, 255, 216, 102, 159, 27, 188, 54, 215, 5, 75, 133, 65, 135, 159, 216, 102, 159, 27, + 228, 4, 9, 66, 68, 94, 236, 232, 159, 65, 46, 27, 51, 147, 61, 200, 0, 169, 149, 129, 27, 121, 147, 36, 139, 93, + 3, 176, 173, 27, 175, 134, 209, 143, 160, 119, 62, 19, 76, 139, 162, 144, 235, 5, 122, 138, 165, 40, 52, 8, 216, + 255, 255, 76, 246, 239, 64, 216, 54, 137, 93, 121, 183, 153, 74, 222, 74, 160, 174, 95, 60, 29, 172, 32, 191, 155, + 222, 27, 20, 2, 167, 132, 250, 156, 70, 171, 255, 255, 216, 102, 159, 27, 250, 240, 211, 146, 238, 251, 103, 60, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2936, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5073340172833332945" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4491a5bb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6458325751543694433" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8c648de8eedadff50df8b66" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13286676574492328047" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9681359103371185636" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "16e6e276346b7fd7" + } + ] + }, + "cborHex": "d905069fbf1b46682001ea731ed1444491a5bb1b59a0950da88504614ce8c648de8eedadff50df8b661bb863c1f2dc1e806f1b865b18cf7b6f0de4ff4816e6e276346b7fd7ff", + "cborBytes": [ + 217, 5, 6, 159, 191, 27, 70, 104, 32, 1, 234, 115, 30, 209, 68, 68, 145, 165, 187, 27, 89, 160, 149, 13, 168, 133, + 4, 97, 76, 232, 198, 72, 222, 142, 237, 173, 255, 80, 223, 139, 102, 27, 184, 99, 193, 242, 220, 30, 128, 111, 27, + 134, 91, 24, 207, 123, 111, 13, 228, 255, 72, 22, 230, 226, 118, 52, 107, 127, 215, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2937, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7483921117914358350" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "50d87d" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b67dc3a9af054624e9f4350d87da0ffff", + "cborBytes": [216, 102, 159, 27, 103, 220, 58, 154, 240, 84, 98, 78, 159, 67, 80, 216, 125, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2938, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8299151528721404064" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b732c8258369450a09fbf41fa11ff80ffff", + "cborBytes": [216, 102, 159, 27, 115, 44, 130, 88, 54, 148, 80, 160, 159, 191, 65, 250, 17, 255, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2939, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "ByteArray", + "bytearray": "57" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0f4f4f55e00078f06f6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17712531254908987163" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05b5076a92" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14722749732541604889" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18129e8f80c5673a8df166" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27654b470ac4d4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19b6644e793e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13681954224028444912" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bad06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4413770458420691377" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5dd46700" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2758906636829391979" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab8c503204dd324f22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48caf3dc" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f014157bf104aa0f4f4f55e00078f06f61bf5cf8d54d1daa71b1bffffffffffffffeeffbf4505b5076a921bcc51b6e0951ea4194b18129e8f80c5673a8df1664727654b470ac4d44619b6644e793e1bbde010e06c5ee8f0434bad061b3d40dcd8c64741b1445dd467001b26499af808aefc6b49ab8c503204dd324f224448caf3dcffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 1, 65, 87, 191, 16, 74, 160, 244, 244, 245, 94, 0, + 7, 143, 6, 246, 27, 245, 207, 141, 84, 209, 218, 167, 27, 27, 255, 255, 255, 255, 255, 255, 255, 238, 255, 191, + 69, 5, 181, 7, 106, 146, 27, 204, 81, 182, 224, 149, 30, 164, 25, 75, 24, 18, 158, 143, 128, 197, 103, 58, 141, + 241, 102, 71, 39, 101, 75, 71, 10, 196, 212, 70, 25, 182, 100, 78, 121, 62, 27, 189, 224, 16, 224, 108, 94, 232, + 240, 67, 75, 173, 6, 27, 61, 64, 220, 216, 198, 71, 65, 177, 68, 93, 212, 103, 0, 27, 38, 73, 154, 248, 8, 174, + 252, 107, 73, 171, 140, 80, 50, 4, 221, 50, 79, 34, 68, 72, 202, 243, 220, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2940, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de" + } + ] + }, + "cborHex": "d8799f41deff", + "cborBytes": [216, 121, 159, 65, 222, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2941, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10152360669549624814" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7453449674976709723" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4902712195104607305" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9b5ecb3bac2111c3717fcc3a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17406186326240827393" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "450123698710494439" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15161903317750628086" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b8ce46e3d4c26fdee9fd8669f1b676ff8fd443ccc5b9fa0d8669f1b4409eec4092f8c499f4c9b5ecb3bac2111c3717fcc3a1bf18f323de5d898011b063f291e7e9fbce71bd269e6bc7d57bef6ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 140, 228, 110, 61, 76, 38, 253, 238, 159, 216, 102, 159, 27, 103, 111, 248, 253, 68, 60, 204, + 91, 159, 160, 216, 102, 159, 27, 68, 9, 238, 196, 9, 47, 140, 73, 159, 76, 155, 94, 203, 59, 172, 33, 17, 195, + 113, 127, 204, 58, 27, 241, 143, 50, 61, 229, 216, 152, 1, 27, 6, 63, 41, 30, 126, 159, 188, 231, 27, 210, 105, + 230, 188, 125, 87, 190, 246, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2942, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15619279743903241680" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0520f7040202" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "076b93ed8f15790703ec70d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd7b8c578d421f1289502791" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1762" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bd8c2d42c2ece95d09fbf460520f70402020a4c076b93ed8f15790703ec70d4054cfd7b8c578d421f1289502791421762ffffff", + "cborBytes": [ + 216, 102, 159, 27, 216, 194, 212, 44, 46, 206, 149, 208, 159, 191, 70, 5, 32, 247, 4, 2, 2, 10, 76, 7, 107, 147, + 237, 143, 21, 121, 7, 3, 236, 112, 212, 5, 76, 253, 123, 140, 87, 141, 66, 31, 18, 137, 80, 39, 145, 66, 23, 98, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2943, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2692365597855617423" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9941625267918670862" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a317b5b30f73b73" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11109770631479393793" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ffba3132180acaf8e704c7b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a6b7a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a6995dbfea0d99dd2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a2722c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "814435e18e401dcf58d2d0ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7471171571083908333" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba77ba1dd31f8f0df0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6611a2d45819fc6c8" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17474241590673485040" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b255d343f19aa918f9fd8669f1bfffffffffffffffe9f1b89f7bf8218570c0ebf482a317b5b30f73b731b9a2dd586f9657e014c3ffba3132180acaf8e704c7b433a6b7a497a6995dbfea0d99dd2448a2722c34c814435e18e401dcf58d2d0ec1b67aeeef5be7414ed49ba77ba1dd31f8f0df049a6611a2d45819fc6c8ff1bf280fa24eb732cf0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 37, 93, 52, 63, 25, 170, 145, 143, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 254, 159, 27, 137, 247, 191, 130, 24, 87, 12, 14, 191, 72, 42, 49, 123, 91, 48, 247, 59, 115, 27, 154, 45, 213, + 134, 249, 101, 126, 1, 76, 63, 251, 163, 19, 33, 128, 172, 175, 142, 112, 76, 123, 67, 58, 107, 122, 73, 122, 105, + 149, 219, 254, 160, 217, 157, 210, 68, 138, 39, 34, 195, 76, 129, 68, 53, 225, 142, 64, 29, 207, 88, 210, 208, + 236, 27, 103, 174, 238, 245, 190, 116, 20, 237, 73, 186, 119, 186, 29, 211, 31, 143, 13, 240, 73, 166, 97, 26, 45, + 69, 129, 159, 198, 200, 255, 27, 242, 128, 250, 36, 235, 115, 44, 240, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2944, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14483152945381204152" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8247ed793d172" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8fb32" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6970367323732709335" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68b65406fa76f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8603194975406861351" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81040201fe01f9406d05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fe5c79a738cce9cfa97199a" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9fbf1bc8fe7ede691960b84173412747c8247ed793d17243f8fb321bfffffffffffffff1ffbf0e1b60bbb8267d140fd71bffffffffffffffeb4768b65406fa76f941071b7764b03f9a8d2c274a81040201fe01f9406d054c9fe5c79a738cce9cfa97199affffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 191, 27, 200, 254, 126, 222, 105, 25, 96, 184, 65, + 115, 65, 39, 71, 200, 36, 126, 215, 147, 209, 114, 67, 248, 251, 50, 27, 255, 255, 255, 255, 255, 255, 255, 241, + 255, 191, 14, 27, 96, 187, 184, 38, 125, 20, 15, 215, 27, 255, 255, 255, 255, 255, 255, 255, 235, 71, 104, 182, + 84, 6, 250, 118, 249, 65, 7, 27, 119, 100, 176, 63, 154, 141, 44, 39, 74, 129, 4, 2, 1, 254, 1, 249, 64, 109, 5, + 76, 159, 229, 199, 154, 115, 140, 206, 156, 250, 151, 25, 154, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2945, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7154396013964710625" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16764406015982181900" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "552757" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "380d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7db64d2fb3a7b7b51fa31" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ef5e455de06da36a740" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14355991918951956147" + } + } + ] + }, + "cborHex": "d8669f1b63498544e2d652e19fd8669f1be8a722732d0a1e0c9fa0bf4355275742380dffbf4bd7db64d2fb3a7b7b51fa314a7ef5e455de06da36a740ffffff1bc73aba96c7827eb3ffff", + "cborBytes": [ + 216, 102, 159, 27, 99, 73, 133, 68, 226, 214, 82, 225, 159, 216, 102, 159, 27, 232, 167, 34, 115, 45, 10, 30, 12, + 159, 160, 191, 67, 85, 39, 87, 66, 56, 13, 255, 191, 75, 215, 219, 100, 210, 251, 58, 123, 123, 81, 250, 49, 74, + 126, 245, 228, 85, 222, 6, 218, 54, 167, 64, 255, 255, 255, 27, 199, 58, 186, 150, 199, 130, 126, 179, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2946, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3889197598820223911" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12932117750604693058" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10677363599664301527" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11368301764687302734" + } + }, + { + "_tag": "ByteArray", + "bytearray": "437467" + }, + { + "_tag": "ByteArray", + "bytearray": "e7d421d9a83388a7dc99732f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9077987201252126489" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5ee173342c3f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3209947490541531623" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a9789b7239e5c96cffc70d80" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14072451874364242956" + } + }, + { + "_tag": "ByteArray", + "bytearray": "320586ce" + }, + { + "_tag": "ByteArray", + "bytearray": "d6a98138250e3ab82e4e" + }, + { + "_tag": "ByteArray", + "bytearray": "2444" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8ff7c3be8ee8be" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14117910152544625256" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7fc3c42953077d33e3" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b35f9349c3afb4ba79fd8669f1bffffffffffffffec9fd8669f1bb3781c93ae50fe429f1b942d9d9f6fad45d71b9dc452391fa2104e434374674ce7d421d9a83388a7dc99732f1b7dfb7d43262cef19ffffa0465ee173342c3fd8669f1b2c8c063c516271e79f4ca9789b7239e5c96cffc70d801bc34b646bb242bc0c44320586ce4ad6a98138250e3ab82e4e422444ffff478ff7c3be8ee8beffffbf1bc3ece47bdd4da268497fc3c42953077d33e3ffffff", + "cborBytes": [ + 216, 102, 159, 27, 53, 249, 52, 156, 58, 251, 75, 167, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 236, 159, 216, 102, 159, 27, 179, 120, 28, 147, 174, 80, 254, 66, 159, 27, 148, 45, 157, 159, 111, 173, 69, 215, + 27, 157, 196, 82, 57, 31, 162, 16, 78, 67, 67, 116, 103, 76, 231, 212, 33, 217, 168, 51, 136, 167, 220, 153, 115, + 47, 27, 125, 251, 125, 67, 38, 44, 239, 25, 255, 255, 160, 70, 94, 225, 115, 52, 44, 63, 216, 102, 159, 27, 44, + 140, 6, 60, 81, 98, 113, 231, 159, 76, 169, 120, 155, 114, 57, 229, 201, 108, 255, 199, 13, 128, 27, 195, 75, 100, + 107, 178, 66, 188, 12, 68, 50, 5, 134, 206, 74, 214, 169, 129, 56, 37, 14, 58, 184, 46, 78, 66, 36, 68, 255, 255, + 71, 143, 247, 195, 190, 142, 232, 190, 255, 255, 191, 27, 195, 236, 228, 123, 221, 77, 162, 104, 73, 127, 195, + 196, 41, 83, 7, 125, 51, 227, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2947, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14915795444000624862" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7487624974404991182" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15268226967250081611" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9752927535713188676" + } + }, + { + "_tag": "ByteArray", + "bytearray": "411738d524148d" + }, + { + "_tag": "ByteArray", + "bytearray": "6f46e947542c11d7426d" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bceff8cedd60c10de9f1b67e9633e3ac0b8ce9f139f1bd3e3a3883cfb174b1b87595beba64f7b4447411738d524148d4a6f46e947542c11d7426dffffffff", + "cborBytes": [ + 216, 102, 159, 27, 206, 255, 140, 237, 214, 12, 16, 222, 159, 27, 103, 233, 99, 62, 58, 192, 184, 206, 159, 19, + 159, 27, 211, 227, 163, 136, 60, 251, 23, 75, 27, 135, 89, 91, 235, 166, 79, 123, 68, 71, 65, 23, 56, 213, 36, 20, + 141, 74, 111, 70, 233, 71, 84, 44, 17, 215, 66, 109, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2948, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0002bc04fcfd8b62" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a915e6c77b2a543dcffa63f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb07f9050700be00" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aaad60" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + } + ] + }, + "cborHex": "d87d9fbf480002bc04fcfd8b62417c4ca915e6c77b2a543dcffa63f648cb07f9050700be0043aaad6003ffff", + "cborBytes": [ + 216, 125, 159, 191, 72, 0, 2, 188, 4, 252, 253, 139, 98, 65, 124, 76, 169, 21, 230, 199, 123, 42, 84, 61, 207, + 250, 99, 246, 72, 203, 7, 249, 5, 7, 0, 190, 0, 67, 170, 173, 96, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2949, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17565756096626262637" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17894354596850834077" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c22b290d9764a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4122518160845714433" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4680186009506404654" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e6b5a5075c" + }, + { + "_tag": "ByteArray", + "bytearray": "f308c6" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5229927618550682135" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9159827311125427900" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bf3c61a1a3e8f826d9fd8669f1bf85584b28e2c1a9d9f9f47c22b290d9764a61b3936206cdd4e34011b40f35c610361d92e45e6b5a5075c43f308c6ffa01b48946f75b0b7d217419effff1b7f1e3e689b8d76bca0ffff", + "cborBytes": [ + 216, 102, 159, 27, 243, 198, 26, 26, 62, 143, 130, 109, 159, 216, 102, 159, 27, 248, 85, 132, 178, 142, 44, 26, + 157, 159, 159, 71, 194, 43, 41, 13, 151, 100, 166, 27, 57, 54, 32, 108, 221, 78, 52, 1, 27, 64, 243, 92, 97, 3, + 97, 217, 46, 69, 230, 181, 165, 7, 92, 67, 243, 8, 198, 255, 160, 27, 72, 148, 111, 117, 176, 183, 210, 23, 65, + 158, 255, 255, 27, 127, 30, 62, 104, 155, 141, 118, 188, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2950, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "312466188403526713" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3177362817221627907" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd4dd5a2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14432648579128838941" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10802162027122193343" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "178633088347413903" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b273ad49" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2067811834160107711" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11468854574994906873" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2304442619233964319" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c680c58c51befd58bba750" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4671132478256345330" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4722211328078582030" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9489470326331400603" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1da135e19223098990" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "770174417515158209" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87b9fd8669f1b04561a57c41ccc399fd8669f1b2c1842a5db0790039f44fd4dd5a21bc84b116a4f054b1d1b95e8fd21a0d4f3bfffffa0bf1b027aa1d8f0141d8f44b273ad491b1cb257e84d7650bf1b9f298e78ab2f5ef91b1ffb065a4cb6111f4bc680c58c51befd58bba7501b40d3323d814270f21b4188aa2efc73110e1b83b15efc0397e19b491da135e19223098990ff9f1b0ab0358d5b159ac1ffffffff", + "cborBytes": [ + 216, 123, 159, 216, 102, 159, 27, 4, 86, 26, 87, 196, 28, 204, 57, 159, 216, 102, 159, 27, 44, 24, 66, 165, 219, + 7, 144, 3, 159, 68, 253, 77, 213, 162, 27, 200, 75, 17, 106, 79, 5, 75, 29, 27, 149, 232, 253, 33, 160, 212, 243, + 191, 255, 255, 160, 191, 27, 2, 122, 161, 216, 240, 20, 29, 143, 68, 178, 115, 173, 73, 27, 28, 178, 87, 232, 77, + 118, 80, 191, 27, 159, 41, 142, 120, 171, 47, 94, 249, 27, 31, 251, 6, 90, 76, 182, 17, 31, 75, 198, 128, 197, + 140, 81, 190, 253, 88, 187, 167, 80, 27, 64, 211, 50, 61, 129, 66, 112, 242, 27, 65, 136, 170, 46, 252, 115, 17, + 14, 27, 131, 177, 94, 252, 3, 151, 225, 155, 73, 29, 161, 53, 225, 146, 35, 9, 137, 144, 255, 159, 27, 10, 176, + 53, 141, 91, 21, 154, 193, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2951, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9383494023990127843" + }, + "fields": [] + }, + "cborHex": "d8669f1b8238de1953eeace380ff", + "cborBytes": [216, 102, 159, 27, 130, 56, 222, 25, 83, 238, 172, 227, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2952, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2504754629556313095" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a5a756" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13114226667153293968" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "671639102740138139" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14169850972432813461" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3967766795119613247" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14287942605410404035" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17434238022879511178" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17133167459289791371" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e142eb14b75185" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18393877842124762639" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de71db9fe0e5b5ce1285" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18405590293123853477" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7626c59b85b816" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "239106581303342805" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e870f737b222584bc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "446262443832883019" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2567016474220976504" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3ffa3d5cdc81b26e6055984" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8859508165683557913" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42335a70fcc990" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9650949157935236172" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2427174128148144800" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3511766111852522379" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bb0ba4834d62e49fe0" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12127918288524254699" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c83a31dd" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed07348cdbfc69bee5a4e88c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efe93a64863d354dc834" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1a054605dc3a80889" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2830167224470156044" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0f" + } + ] + }, + "cborHex": "d8669f1b22c2ad1098381c079f43a5a756bf1bb5ff17abefa082901b095224349816889b1bc4a56c626414cd951b371056e0c6b1d53f1bc648f8194ea806c31bf1f2db1c7b57828a1bedc53d07603ffb8b47e142eb14b751851bff442e7145c66e0f4ade71db9fe0e5b5ce12851bff6dcadac7066ca5477626c59b85b816ffbf1b03517a2b3a0b36d5491e870f737b222584bc1b063171540941b74b41631b239fdfe1f68459784ca3ffa3d5cdc81b26e60559841b7af34bbcac3db6194742335a70fcc9901b85ef0f205015c44c1b21af0e028449e2a0ffd8669f1b30bc4cac2f396b8b9f9f49bb0ba4834d62e49fe0ff1ba84f056d4c739deb9f44c83a31ddffbf4ced07348cdbfc69bee5a4e88c4aefe93a64863d354dc83449f1a054605dc3a808891b2746c618857f330cffffff410fffff", + "cborBytes": [ + 216, 102, 159, 27, 34, 194, 173, 16, 152, 56, 28, 7, 159, 67, 165, 167, 86, 191, 27, 181, 255, 23, 171, 239, 160, + 130, 144, 27, 9, 82, 36, 52, 152, 22, 136, 155, 27, 196, 165, 108, 98, 100, 20, 205, 149, 27, 55, 16, 86, 224, + 198, 177, 213, 63, 27, 198, 72, 248, 25, 78, 168, 6, 195, 27, 241, 242, 219, 28, 123, 87, 130, 138, 27, 237, 197, + 61, 7, 96, 63, 251, 139, 71, 225, 66, 235, 20, 183, 81, 133, 27, 255, 68, 46, 113, 69, 198, 110, 15, 74, 222, 113, + 219, 159, 224, 229, 181, 206, 18, 133, 27, 255, 109, 202, 218, 199, 6, 108, 165, 71, 118, 38, 197, 155, 133, 184, + 22, 255, 191, 27, 3, 81, 122, 43, 58, 11, 54, 213, 73, 30, 135, 15, 115, 123, 34, 37, 132, 188, 27, 6, 49, 113, + 84, 9, 65, 183, 75, 65, 99, 27, 35, 159, 223, 225, 246, 132, 89, 120, 76, 163, 255, 163, 213, 205, 200, 27, 38, + 230, 5, 89, 132, 27, 122, 243, 75, 188, 172, 61, 182, 25, 71, 66, 51, 90, 112, 252, 201, 144, 27, 133, 239, 15, + 32, 80, 21, 196, 76, 27, 33, 175, 14, 2, 132, 73, 226, 160, 255, 216, 102, 159, 27, 48, 188, 76, 172, 47, 57, 107, + 139, 159, 159, 73, 187, 11, 164, 131, 77, 98, 228, 159, 224, 255, 27, 168, 79, 5, 109, 76, 115, 157, 235, 159, 68, + 200, 58, 49, 221, 255, 191, 76, 237, 7, 52, 140, 219, 252, 105, 190, 229, 164, 232, 140, 74, 239, 233, 58, 100, + 134, 61, 53, 77, 200, 52, 73, 241, 160, 84, 96, 93, 195, 168, 8, 137, 27, 39, 70, 198, 24, 133, 127, 51, 12, 255, + 255, 255, 65, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2953, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12753025619291067396" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12308357569748029473" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "32e48e3a25eefac5" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9b3250b1bf531fc79fc3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13124023655580000576" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12314067116463670968" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c6c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6473863299337044503" + } + } + ] + } + ] + }, + "cborHex": "d87d9fd8669f1bb0fbd93b794cd4049fd8669f1baad011ff4952502180ff4832e48e3a25eefac5ffff4a9b3250b1bf531fc79fc3d8669f1bb621e5fb0eab61409f9f1baae45accb922c6b8ff42c6c40c1b59d7c85ee96c4217ffffff", + "cborBytes": [ + 216, 125, 159, 216, 102, 159, 27, 176, 251, 217, 59, 121, 76, 212, 4, 159, 216, 102, 159, 27, 170, 208, 17, 255, + 73, 82, 80, 33, 128, 255, 72, 50, 228, 142, 58, 37, 238, 250, 197, 255, 255, 74, 155, 50, 80, 177, 191, 83, 31, + 199, 159, 195, 216, 102, 159, 27, 182, 33, 229, 251, 14, 171, 97, 64, 159, 159, 27, 170, 228, 90, 204, 185, 34, + 198, 184, 255, 66, 198, 196, 12, 27, 89, 215, 200, 94, 233, 108, 66, 23, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2954, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17330249250457894271" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2774680004122951844" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "046211ba7f63000a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2968262563838595282" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10510368790747931238" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6427837468040220615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12892523896472849285" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8303068792395123396" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10689281802066622321" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11700718828586225000" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa945bd17e9c34e7f8" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1580107934945105262" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15239334013324239325" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15588023649667150170" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5905994288002255599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6673563074480131704" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6915740841540595955" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4303579561435753798" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8895505349007986189" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5733875485036812924" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11892753085812075585" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0453513698ebe3ea34c9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12823526427550165387" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2780692671485073251" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14590874986691230624" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9800464294503724879" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905089fd8669f1bf08169dfaa85bd7f80ffbf1b2681a4c34b20c0a448046211ba7f63000a1b2931631345b090d21b91dc54ba96e1e2661b5934441efc7bcfc71bb2eb722d237fcb851b733a6d133c57cac41b9457f52a2c3a77711ba2614dc8129b4d6849fa945bd17e9c34e7f8ffd8669f1b15edabcb892dd56e9f1bd37cfd8b2db821ddffff9fa01bd853c8eba4cc715abf1b51f64e837ddc4aef1b5c9d4242188d4e781b5ff9a5a77ab030f31b3bb962cf4e026d461b7b732efc09354e0d1b4f92d15fcff09a7c1ba50b8bebc9426c414a0453513698ebe3ea34c91bb1f6515809f6298b1b26970140816657631bca7d337e9fdcfba01b88023e59cbcb374fffffff", + "cborBytes": [ + 217, 5, 8, 159, 216, 102, 159, 27, 240, 129, 105, 223, 170, 133, 189, 127, 128, 255, 191, 27, 38, 129, 164, 195, + 75, 32, 192, 164, 72, 4, 98, 17, 186, 127, 99, 0, 10, 27, 41, 49, 99, 19, 69, 176, 144, 210, 27, 145, 220, 84, + 186, 150, 225, 226, 102, 27, 89, 52, 68, 30, 252, 123, 207, 199, 27, 178, 235, 114, 45, 35, 127, 203, 133, 27, + 115, 58, 109, 19, 60, 87, 202, 196, 27, 148, 87, 245, 42, 44, 58, 119, 113, 27, 162, 97, 77, 200, 18, 155, 77, + 104, 73, 250, 148, 91, 209, 126, 156, 52, 231, 248, 255, 216, 102, 159, 27, 21, 237, 171, 203, 137, 45, 213, 110, + 159, 27, 211, 124, 253, 139, 45, 184, 33, 221, 255, 255, 159, 160, 27, 216, 83, 200, 235, 164, 204, 113, 90, 191, + 27, 81, 246, 78, 131, 125, 220, 74, 239, 27, 92, 157, 66, 66, 24, 141, 78, 120, 27, 95, 249, 165, 167, 122, 176, + 48, 243, 27, 59, 185, 98, 207, 78, 2, 109, 70, 27, 123, 115, 46, 252, 9, 53, 78, 13, 27, 79, 146, 209, 95, 207, + 240, 154, 124, 27, 165, 11, 139, 235, 201, 66, 108, 65, 74, 4, 83, 81, 54, 152, 235, 227, 234, 52, 201, 27, 177, + 246, 81, 88, 9, 246, 41, 139, 27, 38, 151, 1, 64, 129, 102, 87, 99, 27, 202, 125, 51, 126, 159, 220, 251, 160, 27, + 136, 2, 62, 89, 203, 203, 55, 79, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2955, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1081131402220798667" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13445265785054171383" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2567089dfa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16039968632214991533" + } + }, + { + "_tag": "ByteArray", + "bytearray": "195a97eb28988a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17678737081828796142" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13160867747397524874" + } + }, + { + "_tag": "ByteArray", + "bytearray": "095aa46e88d51a18126196e2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13532833025186905383" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8799038905485389799" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17927988910959031037" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d05bc26a63" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5095328911939665551" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ad84630b5a7febaa2a4b0d" + }, + { + "_tag": "ByteArray", + "bytearray": "1e0eacd1d4b522f8bc60" + }, + { + "_tag": "ByteArray", + "bytearray": "f693297e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5960308280396450297" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10240782794353300072" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7311614285641401896" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10925536495004111380" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9633153355570491025" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce8f28" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11112572639941766070" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5968855919166040168" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13184236316624060699" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "221fe2ce4eab3f1aa43081" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15573138065392046610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1238204015266075290" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f816ea506c3d529b66e3de" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1aa9ac9f72f7a883da" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15966191078286119812" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14032127582368377721" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2547734303601999817" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fdd4c84527d4dcf7a73ef6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15281425731936292998" + } + }, + { + "_tag": "ByteArray", + "bytearray": "25386ee31f66864eddd52a" + }, + { + "_tag": "ByteArray", + "bytearray": "142965891aaa373426" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ac12" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17712640549801337454" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ebdc72ce021143ce5024d2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7560948041471250101" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e59090f34ac" + }, + { + "_tag": "ByteArray", + "bytearray": "3fdc" + }, + { + "_tag": "ByteArray", + "bytearray": "7a6cb5" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "928a5349" + }, + { + "_tag": "ByteArray", + "bytearray": "99ac9b3b31fd95f9b5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16471682176558238692" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11483381000873216972" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16220623467105758287" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b96336674f373a6d94cccc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ce7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e71e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6b827b2ab3d72" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d76cab2598aa2ea8" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b0f00f34840e402cb9fd8669f1bba972dfed4de10f79f9f452567089dfa1bde996a7cd39532ad47195a97eb28988a1bf5577db5bfee66eeff9f1bb6a4cb7cab865d8a4c095aa46e88d51a18126196e21bbbce47efb6f0bd271b7a1c7743e64c6fe7ffd8669f1bf8cd02ed8edaf2fd9f45d05bc26a631b46b63ea631f0fe8f4bad84630b5a7febaa2a4b0d4a1e0eacd1d4b522f8bc6044f693297effffbf1b52b744cd4cd989f91b8e1e91b1875c52681b657812744653c6281b979f4d8e654952141b85afd5f031a42e9143ce8f281b9a37c9f068742bb61b52d5a2d5896128681bb6f7d113af2e811b4b221fe2ce4eab3f1aa430811bd81ee68f79ce92121b112efbfdd965929aff4bf816ea506c3d529b66e3deffff491aa9ac9f72f7a883dad8669f1bdd934e31754153849fd8669f1bc2bc21b0d6072b799f1b235b5ed9c4463fc94bfdd4c84527d4dcf7a73ef61bd41287bd1d9390864b25386ee31f66864eddd52a49142965891aaa373426ffff42ac12ffff809fd8669f1bf5cff0bc0516a26e9f4bebdc72ce021143ce5024d21b68ede22f21144eb5468e59090f34ac423fdc437a6cb5ffff9f44928a53494999ac9b3b31fd95f9b51be4972bab3ae30be41b9f5d2a2dc1848bcc1be11b3b1a50342c4fff4bb96336674f373a6d94ccccbf41464149424ce742e71e47a6b827b2ab3d7248d76cab2598aa2ea8ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 15, 0, 243, 72, 64, 228, 2, 203, 159, 216, 102, 159, 27, 186, 151, 45, 254, 212, 222, 16, 247, + 159, 159, 69, 37, 103, 8, 157, 250, 27, 222, 153, 106, 124, 211, 149, 50, 173, 71, 25, 90, 151, 235, 40, 152, 138, + 27, 245, 87, 125, 181, 191, 238, 102, 238, 255, 159, 27, 182, 164, 203, 124, 171, 134, 93, 138, 76, 9, 90, 164, + 110, 136, 213, 26, 24, 18, 97, 150, 226, 27, 187, 206, 71, 239, 182, 240, 189, 39, 27, 122, 28, 119, 67, 230, 76, + 111, 231, 255, 216, 102, 159, 27, 248, 205, 2, 237, 142, 218, 242, 253, 159, 69, 208, 91, 194, 106, 99, 27, 70, + 182, 62, 166, 49, 240, 254, 143, 75, 173, 132, 99, 11, 90, 127, 235, 170, 42, 75, 13, 74, 30, 14, 172, 209, 212, + 181, 34, 248, 188, 96, 68, 246, 147, 41, 126, 255, 255, 191, 27, 82, 183, 68, 205, 76, 217, 137, 249, 27, 142, 30, + 145, 177, 135, 92, 82, 104, 27, 101, 120, 18, 116, 70, 83, 198, 40, 27, 151, 159, 77, 142, 101, 73, 82, 20, 27, + 133, 175, 213, 240, 49, 164, 46, 145, 67, 206, 143, 40, 27, 154, 55, 201, 240, 104, 116, 43, 182, 27, 82, 213, + 162, 213, 137, 97, 40, 104, 27, 182, 247, 209, 19, 175, 46, 129, 27, 75, 34, 31, 226, 206, 78, 171, 63, 26, 164, + 48, 129, 27, 216, 30, 230, 143, 121, 206, 146, 18, 27, 17, 46, 251, 253, 217, 101, 146, 154, 255, 75, 248, 22, + 234, 80, 108, 61, 82, 155, 102, 227, 222, 255, 255, 73, 26, 169, 172, 159, 114, 247, 168, 131, 218, 216, 102, 159, + 27, 221, 147, 78, 49, 117, 65, 83, 132, 159, 216, 102, 159, 27, 194, 188, 33, 176, 214, 7, 43, 121, 159, 27, 35, + 91, 94, 217, 196, 70, 63, 201, 75, 253, 212, 200, 69, 39, 212, 220, 247, 167, 62, 246, 27, 212, 18, 135, 189, 29, + 147, 144, 134, 75, 37, 56, 110, 227, 31, 102, 134, 78, 221, 213, 42, 73, 20, 41, 101, 137, 26, 170, 55, 52, 38, + 255, 255, 66, 172, 18, 255, 255, 128, 159, 216, 102, 159, 27, 245, 207, 240, 188, 5, 22, 162, 110, 159, 75, 235, + 220, 114, 206, 2, 17, 67, 206, 80, 36, 210, 27, 104, 237, 226, 47, 33, 20, 78, 181, 70, 142, 89, 9, 15, 52, 172, + 66, 63, 220, 67, 122, 108, 181, 255, 255, 159, 68, 146, 138, 83, 73, 73, 153, 172, 155, 59, 49, 253, 149, 249, + 181, 27, 228, 151, 43, 171, 58, 227, 11, 228, 27, 159, 93, 42, 45, 193, 132, 139, 204, 27, 225, 27, 59, 26, 80, + 52, 44, 79, 255, 75, 185, 99, 54, 103, 79, 55, 58, 109, 148, 204, 204, 191, 65, 70, 65, 73, 66, 76, 231, 66, 231, + 30, 71, 166, 184, 39, 178, 171, 61, 114, 72, 215, 108, 171, 37, 152, 170, 46, 168, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2956, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17651576073118094075" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13625345261608384724" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5497025f1d75" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a3" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "71a359" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7590377499851492366" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a6e4df87e901fc521e" + } + ] + }, + "cborHex": "d8669f1bf4f6feea9bfd12fb9f9fa0ff9f1bbd16f353443838d4465497025f1d759f41a3ff4371a3591b6956701eddc40c0eff49a6e4df87e901fc521effff", + "cborBytes": [ + 216, 102, 159, 27, 244, 246, 254, 234, 155, 253, 18, 251, 159, 159, 160, 255, 159, 27, 189, 22, 243, 83, 68, 56, + 56, 212, 70, 84, 151, 2, 95, 29, 117, 159, 65, 163, 255, 67, 113, 163, 89, 27, 105, 86, 112, 30, 221, 196, 12, 14, + 255, 73, 166, 228, 223, 135, 233, 1, 252, 82, 30, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2957, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13830601954302032868" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15003924111529740921" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d905009fbf1bbff02b3323fefbe41bd038a57c38a60a79ffd8799fa0ffff", + "cborBytes": [ + 217, 5, 0, 159, 191, 27, 191, 240, 43, 51, 35, 254, 251, 228, 27, 208, 56, 165, 124, 56, 166, 10, 121, 255, 216, + 121, 159, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2958, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13452055372833111918" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5710023455436478996" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17730504291300661565" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f34bf315cb0e3238" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7894923310922038251" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3e9452a7539d" + }, + { + "_tag": "ByteArray", + "bytearray": "6ea735687ba84f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11867350076049650056" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ee947dbf386a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12640833281997611274" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32e4c0ec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "17562bae5f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "651e2309334067" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4441b6216b516951e684" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f64a462b162284cc" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10494692258797302752" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1520292241603706111" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bbaaf4d16ec9a3f6e9fd8669f1b4f3e141468709a149f9f1bf60f67b67383d93d48f34bf315cb0e32381b6d9066ec14757beb463e9452a7539d476ea735687ba84fffbf1ba4b14c04ac24f188470ee947dbf386a51baf6d42e55e67210a4432e4c0ec4517562bae5f47651e23093340674a4441b6216b516951e68448f64a462b162284ccffffff1b91a4a30190a7b3e0d8669f1b151929bd27923cff80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 186, 175, 77, 22, 236, 154, 63, 110, 159, 216, 102, 159, 27, 79, 62, 20, 20, 104, 112, 154, 20, + 159, 159, 27, 246, 15, 103, 182, 115, 131, 217, 61, 72, 243, 75, 243, 21, 203, 14, 50, 56, 27, 109, 144, 102, 236, + 20, 117, 123, 235, 70, 62, 148, 82, 167, 83, 157, 71, 110, 167, 53, 104, 123, 168, 79, 255, 191, 27, 164, 177, 76, + 4, 172, 36, 241, 136, 71, 14, 233, 71, 219, 243, 134, 165, 27, 175, 109, 66, 229, 94, 103, 33, 10, 68, 50, 228, + 192, 236, 69, 23, 86, 43, 174, 95, 71, 101, 30, 35, 9, 51, 64, 103, 74, 68, 65, 182, 33, 107, 81, 105, 81, 230, + 132, 72, 246, 74, 70, 43, 22, 34, 132, 204, 255, 255, 255, 27, 145, 164, 163, 1, 144, 167, 179, 224, 216, 102, + 159, 27, 21, 25, 41, 189, 39, 146, 60, 255, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2959, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d905019fd8669f1bffffffffffffffed9f80ffffff", + "cborBytes": [217, 5, 1, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 128, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2960, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7451445595290423606" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12931212489553530642" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10870900542636106925" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15448963492580421037" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13508323293845474015" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6948104848133987685" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17819327369257195679" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83e701328fd307404d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46bc837cb2eaa239" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c3b7db0e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ced4e818a492e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15431828577042617496" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf30d341" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "592c209eeffe8845b44be4dd" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18130472347191639491" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee9058d9273a980bbf4e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e0231e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b093de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1565166957238509987" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6768da4a1a6f51369f416f1bb374e53f2aeecf129f1b96dd3272706d24ada01bd665be71c33bedada0d8669f1bbb77347730cb4adf9f1b606ca08bf7321d65ffffffbf1bf74af7d4dcf8989f4983e701328fd307404d4846bc837cb2eaa239454c3b7db0e447ced4e818a492e81bd628de545958d49844cf30d3414c592c209eeffe8845b44be4ddffbf1bfb9c608a58667dc34aee9058d9273a980bbf4e440e0231e941f843b093de1b15b8970e146161a3ffffff", + "cborBytes": [ + 216, 102, 159, 27, 103, 104, 218, 74, 26, 111, 81, 54, 159, 65, 111, 27, 179, 116, 229, 63, 42, 238, 207, 18, 159, + 27, 150, 221, 50, 114, 112, 109, 36, 173, 160, 27, 214, 101, 190, 113, 195, 59, 237, 173, 160, 216, 102, 159, 27, + 187, 119, 52, 119, 48, 203, 74, 223, 159, 27, 96, 108, 160, 139, 247, 50, 29, 101, 255, 255, 255, 191, 27, 247, + 74, 247, 212, 220, 248, 152, 159, 73, 131, 231, 1, 50, 143, 211, 7, 64, 77, 72, 70, 188, 131, 124, 178, 234, 162, + 57, 69, 76, 59, 125, 176, 228, 71, 206, 212, 232, 24, 164, 146, 232, 27, 214, 40, 222, 84, 89, 88, 212, 152, 68, + 207, 48, 211, 65, 76, 89, 44, 32, 158, 239, 254, 136, 69, 180, 75, 228, 221, 255, 191, 27, 251, 156, 96, 138, 88, + 102, 125, 195, 74, 238, 144, 88, 217, 39, 58, 152, 11, 191, 78, 68, 14, 2, 49, 233, 65, 248, 67, 176, 147, 222, + 27, 21, 184, 151, 14, 20, 97, 97, 163, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2961, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ee5a3c8a728dc916" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59fa048ee5a3c8a728dc916ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 160, 72, 238, 90, 60, 138, 114, 141, 201, 22, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2962, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d905079fa0ff", + "cborBytes": [217, 5, 7, 159, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2963, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16299554581877631913" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18163419636001012567" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8944628367020197513" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2700b8900530f7096868" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4996074062833396690" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dcbb244d9a7956" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4012352358822674591" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7b4e18bf7be25388db7b9526" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6379539173542780055" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "122bec00e3a2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "914879479119160975" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "438bc106e415" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19420983495537455" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf4b2d8f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6158741826107108793" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c04f" + }, + { + "_tag": "ByteArray", + "bytearray": "35a3d7" + } + ] + } + ] + }, + "cborHex": "d8669f1be233a68891e82ba99fd8669f1bfc116decce31fb579fd8669f1b7c21b41bf01f06899f4a2700b8900530f70968681b45559ee3caba2bd247dcbb244d9a79561b37aebd364553809fffffffff4c7b4e18bf7be25388db7b9526d8669f1b5888ad13fdb4dc979f9f46122bec00e3a21b0cb24e09fd31268fffbf46438bc106e4151b0044ff481670b32f44cf4b2d8f1b55783f0f78746db9ff42c04f4335a3d7ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 226, 51, 166, 136, 145, 232, 43, 169, 159, 216, 102, 159, 27, 252, 17, 109, 236, 206, 49, 251, + 87, 159, 216, 102, 159, 27, 124, 33, 180, 27, 240, 31, 6, 137, 159, 74, 39, 0, 184, 144, 5, 48, 247, 9, 104, 104, + 27, 69, 85, 158, 227, 202, 186, 43, 210, 71, 220, 187, 36, 77, 154, 121, 86, 27, 55, 174, 189, 54, 69, 83, 128, + 159, 255, 255, 255, 255, 76, 123, 78, 24, 191, 123, 226, 83, 136, 219, 123, 149, 38, 216, 102, 159, 27, 88, 136, + 173, 19, 253, 180, 220, 151, 159, 159, 70, 18, 43, 236, 0, 227, 162, 27, 12, 178, 78, 9, 253, 49, 38, 143, 255, + 191, 70, 67, 139, 193, 6, 228, 21, 27, 0, 68, 255, 72, 22, 112, 179, 47, 68, 207, 75, 45, 143, 27, 85, 120, 63, + 15, 120, 116, 109, 185, 255, 66, 192, 79, 67, 53, 163, 215, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2964, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "877a6bce99ea" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4453759221260135456" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "403133c00008f76d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6126469765549363472" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ff717a0b1e2a390d1d92260" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7474778483434370759" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5728515400487313765" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8165913242419816836" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "228378605652669246" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13233734413392833593" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15904653044729245470" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15158824515153325126" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17829628534764486149" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8461912129208715059" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8468869926713210221" + } + } + ] + } + ] + }, + "cborHex": "d9050d9f46877a6bce99eabf1b3dceee6a2a54ac2048403133c00008f76d1b550597cad6bd91104c1ff717a0b1e2a390d1d922601b67bbbf6d77d6b6c71b4f7fc667e066a1651b715326d4411769841b032b5d21c039f33e1bb7a7ab556a246c391bdcb8adad7eebef1e1bd25ef694e6326c461bf76f90afdbce3e05ffd8669f1b756ec03f960e073380ff9f1b758778540ebab56dffff", + "cborBytes": [ + 217, 5, 13, 159, 70, 135, 122, 107, 206, 153, 234, 191, 27, 61, 206, 238, 106, 42, 84, 172, 32, 72, 64, 49, 51, + 192, 0, 8, 247, 109, 27, 85, 5, 151, 202, 214, 189, 145, 16, 76, 31, 247, 23, 160, 177, 226, 163, 144, 209, 217, + 34, 96, 27, 103, 187, 191, 109, 119, 214, 182, 199, 27, 79, 127, 198, 103, 224, 102, 161, 101, 27, 113, 83, 38, + 212, 65, 23, 105, 132, 27, 3, 43, 93, 33, 192, 57, 243, 62, 27, 183, 167, 171, 85, 106, 36, 108, 57, 27, 220, 184, + 173, 173, 126, 235, 239, 30, 27, 210, 94, 246, 148, 230, 50, 108, 70, 27, 247, 111, 144, 175, 219, 206, 62, 5, + 255, 216, 102, 159, 27, 117, 110, 192, 63, 150, 14, 7, 51, 128, 255, 159, 27, 117, 135, 120, 84, 14, 186, 181, + 109, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2965, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87f9fa0ff", + "cborBytes": [216, 127, 159, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2966, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7070" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7140031685596633670" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9816027660993106568" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14660326227437943110" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "666481364666713254" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1153386254490336503" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13455305952559099108" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a8197df6" + }, + { + "_tag": "ByteArray", + "bytearray": "8abb8e6a067e0b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3599209632575841255" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8650723564007555280" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0fbc91524acbb3f4d7bb0fe7" + } + ] + } + ] + }, + "cborHex": "d9050a9f4270701b63167cfd11055a461b883989266ee712889f9f1bcb73f107b5c7f9461b093fd1451e6084a6ffd8669f1b1001a6b003b6fcf79f1bbabad9797e7bece444a8197df6478abb8e6a067e0b1b31f2f61765d8e3e71b780d8b3f7ac580d0ffff4c0fbc91524acbb3f4d7bb0fe7ffff", + "cborBytes": [ + 217, 5, 10, 159, 66, 112, 112, 27, 99, 22, 124, 253, 17, 5, 90, 70, 27, 136, 57, 137, 38, 110, 231, 18, 136, 159, + 159, 27, 203, 115, 241, 7, 181, 199, 249, 70, 27, 9, 63, 209, 69, 30, 96, 132, 166, 255, 216, 102, 159, 27, 16, 1, + 166, 176, 3, 182, 252, 247, 159, 27, 186, 186, 217, 121, 126, 123, 236, 228, 68, 168, 25, 125, 246, 71, 138, 187, + 142, 106, 6, 126, 11, 27, 49, 242, 246, 23, 101, 216, 227, 231, 27, 120, 13, 139, 63, 122, 197, 128, 208, 255, + 255, 76, 15, 188, 145, 82, 74, 203, 179, 244, 215, 187, 15, 231, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2967, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10790565624747426307" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "64" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29fbf141bffffffffffffffed1b95bfca43cc9c82031bfffffffffffffff0ff416480ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 191, 20, 27, 255, 255, 255, 255, 255, 255, 255, + 237, 27, 149, 191, 202, 67, 204, 156, 130, 3, 27, 255, 255, 255, 255, 255, 255, 255, 240, 255, 65, 100, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2968, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f41bc6e4992faf7e39157" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5815225413715966920" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72c048b2e112d6c96894cf" + } + } + ] + } + ] + }, + "cborHex": "d87e9fa0bf4b0f41bc6e4992faf7e391571b50b3d4b4115d3bc8415c4b72c048b2e112d6c96894cfffff", + "cborBytes": [ + 216, 126, 159, 160, 191, 75, 15, 65, 188, 110, 73, 146, 250, 247, 227, 145, 87, 27, 80, 179, 212, 180, 17, 93, 59, + 200, 65, 92, 75, 114, 192, 72, 178, 225, 18, 214, 201, 104, 148, 207, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2969, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1566098304278385444" + }, + "fields": [] + }, + "cborHex": "d8669f1b15bbe61c35dad32480ff", + "cborBytes": [216, 102, 159, 27, 21, 187, 230, 28, 53, 218, 211, 36, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2970, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18182665809268242097" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f267773cef8bad5a" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15500013786664991682" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1f37e063dbfc10c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10790625596262328922" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6503989117277109390" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "385a3b39b9a3f63b70" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9878883612775891373" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60dbc6293c81dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b598b00e7bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d45a97fe8f541d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "219641113136006120" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b171f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e14199ef409fed6c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1193000547533077546" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4076626642040395637" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bc160036c78509" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2646478421208487419" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11927084902513244231" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12189810366827975309" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7293707465486459770" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b6903446" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7867219066665493421" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12570810555797570809" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a158ffaac71135" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80023f7fb0f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb1fe776" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8886720772605288648" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c25f8c133765e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2202339148070923299" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cafcac24e1b756a48921" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28712f8bd7d4afdabf26" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe33c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9425f4e4f6339dbcd1bf" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfc55ce37b712f6b19f9f48f267773cef8bad5a809f1bd71b1c6a97d2fbc248c1f37e063dbfc10cff1b95c000cf01742a5affd8669f1b5a42cfa47e4efc8e9fbf49385a3b39b9a3f63b701b8918d84e24ef41ad4760dbc6293c81dd466b598b00e7bb47d45a97fe8f541d1b030c526dbe8b03e841d5433b171f48e14199ef409fed6c1b108e63ad5c8e3c2aff9f1b3893165500b6177547bc160036c785091b24ba2e1a39de55fb1ba5858486c439f8471ba92ae7f1ba27d28dff80d8669f1b6538744bcfef637a9f44b69034461b6d2dfa0f0ec6e3ad1bae747d98f50b84f9ffffbf47a158ffaac711354680023f7fb0f244bb1fe7761b7b53f975753920c847c25f8c133765e01b1e9047c963b42c234acafcac24e1b756a489214a28712f8bd7d4afdabf2643fe33c04a9425f4e4f6339dbcd1bfffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 252, 85, 206, 55, 183, 18, 246, 177, 159, 159, 72, 242, 103, 119, 60, 239, 139, 173, 90, 128, + 159, 27, 215, 27, 28, 106, 151, 210, 251, 194, 72, 193, 243, 126, 6, 61, 191, 193, 12, 255, 27, 149, 192, 0, 207, + 1, 116, 42, 90, 255, 216, 102, 159, 27, 90, 66, 207, 164, 126, 78, 252, 142, 159, 191, 73, 56, 90, 59, 57, 185, + 163, 246, 59, 112, 27, 137, 24, 216, 78, 36, 239, 65, 173, 71, 96, 219, 198, 41, 60, 129, 221, 70, 107, 89, 139, + 0, 231, 187, 71, 212, 90, 151, 254, 143, 84, 29, 27, 3, 12, 82, 109, 190, 139, 3, 232, 65, 213, 67, 59, 23, 31, + 72, 225, 65, 153, 239, 64, 159, 237, 108, 27, 16, 142, 99, 173, 92, 142, 60, 42, 255, 159, 27, 56, 147, 22, 85, 0, + 182, 23, 117, 71, 188, 22, 0, 54, 199, 133, 9, 27, 36, 186, 46, 26, 57, 222, 85, 251, 27, 165, 133, 132, 134, 196, + 57, 248, 71, 27, 169, 42, 231, 241, 186, 39, 210, 141, 255, 128, 216, 102, 159, 27, 101, 56, 116, 75, 207, 239, + 99, 122, 159, 68, 182, 144, 52, 70, 27, 109, 45, 250, 15, 14, 198, 227, 173, 27, 174, 116, 125, 152, 245, 11, 132, + 249, 255, 255, 191, 71, 161, 88, 255, 170, 199, 17, 53, 70, 128, 2, 63, 127, 176, 242, 68, 187, 31, 231, 118, 27, + 123, 83, 249, 117, 117, 57, 32, 200, 71, 194, 95, 140, 19, 55, 101, 224, 27, 30, 144, 71, 201, 99, 180, 44, 35, + 74, 202, 252, 172, 36, 225, 183, 86, 164, 137, 33, 74, 40, 113, 47, 139, 215, 212, 175, 218, 191, 38, 67, 254, 51, + 192, 74, 148, 37, 244, 228, 246, 51, 157, 188, 209, 191, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2971, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4621022248099161693" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "254042285018564908" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8639564123013498580" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "943c4f20e570" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11027530319919851769" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a955b2d6db1a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8817230256886132309" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13506745248978898076" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13629542148100984175" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905099fd87e9f1b40212b405d20a65d1b03868a1cbc75c92c1b77e5e5cba66dc6d4ff46943c4f20e570d9050b9f0ad905099f1b9909a8664cac28f9ffa00c46a955b2d6db1aff1bfffffffffffffff0d8669f1b7a5d1833f4862e559fbf1bbb71993dfd150c9c1bbd25dc5f0cc60d6fffffffff", + "cborBytes": [ + 217, 5, 9, 159, 216, 126, 159, 27, 64, 33, 43, 64, 93, 32, 166, 93, 27, 3, 134, 138, 28, 188, 117, 201, 44, 27, + 119, 229, 229, 203, 166, 109, 198, 212, 255, 70, 148, 60, 79, 32, 229, 112, 217, 5, 11, 159, 10, 217, 5, 9, 159, + 27, 153, 9, 168, 102, 76, 172, 40, 249, 255, 160, 12, 70, 169, 85, 178, 214, 219, 26, 255, 27, 255, 255, 255, 255, + 255, 255, 255, 240, 216, 102, 159, 27, 122, 93, 24, 51, 244, 134, 46, 85, 159, 191, 27, 187, 113, 153, 61, 253, + 21, 12, 156, 27, 189, 37, 220, 95, 12, 198, 13, 111, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2972, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9605875049149713100" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3368185956782935424" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b854eec768d5b4acc9fd8669f1bfffffffffffffffe9fa0ffffd8669f1b2ebe334843818d8080ffffff", + "cborBytes": [ + 216, 102, 159, 27, 133, 78, 236, 118, 141, 91, 74, 204, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 254, 159, 160, 255, 255, 216, 102, 159, 27, 46, 190, 51, 72, 67, 129, 141, 128, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2973, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8213126064188291178" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13519739388676756347" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8c117ce56fc4f7cd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7783981513690138389" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6b2744f9af82" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17863310270234037453" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14579206951636675541" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f0da14b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12349746447555359270" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17133634909150598920" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8984590636329722147" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "918521248368824233" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9fd8669f1b71fae2a3ef71f86a9fd8669f1bbb9fc357e5ef537b9f488c117ce56fc4f7cd1b6c0641f205b54715466b2744f9af821bf7e73a0c01e30ccdffffd8669f1bca53bf7a8335abd59f44f0da14b91bab631cf658adf2261bedc6e62c072757081b7cafad94d2bbe123ffff1b0cbf3e3577ac0fa9ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 216, 102, 159, 27, 113, 250, 226, 163, 239, 113, + 248, 106, 159, 216, 102, 159, 27, 187, 159, 195, 87, 229, 239, 83, 123, 159, 72, 140, 17, 124, 229, 111, 196, 247, + 205, 27, 108, 6, 65, 242, 5, 181, 71, 21, 70, 107, 39, 68, 249, 175, 130, 27, 247, 231, 58, 12, 1, 227, 12, 205, + 255, 255, 216, 102, 159, 27, 202, 83, 191, 122, 131, 53, 171, 213, 159, 68, 240, 218, 20, 185, 27, 171, 99, 28, + 246, 88, 173, 242, 38, 27, 237, 198, 230, 44, 7, 39, 87, 8, 27, 124, 175, 173, 148, 210, 187, 225, 35, 255, 255, + 27, 12, 191, 62, 53, 119, 172, 15, 169, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2974, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16162256542314433495" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "289451762411587412" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5286524212181253251" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2951975558103257382" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11754238352783940331" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3174173243669878594" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16470993023844800072" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4388418185871257290" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2918adcd126131e744d7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12853110866704428018" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5278851902745638494" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0806a2" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16216271215417889097" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3592783930856064629" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1fecfa549c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17646798017843948988" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11287134638935056689" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f482e3eb61d4d" + }, + { + "_tag": "ByteArray", + "bytearray": "f4732f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3021076121827142345" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7820753765326761381" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fef9f9b7330eff402dfd" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc6601f9" + } + } + ] + } + ] + }, + "cborHex": "d8669f1be04bdeb1a5628bd79f9fbf1b040456d8262747541b495d81c30390bc831b28f786213e6151261ba31f718156f59aeb1b2c0cedbf647e17421be494b8e35c34d6481b3ce6cb16d6b86eca4a2918adcd126131e744d71bb25f6c3c0ca16bf21b49423fd6450c765eff430806a29f1be10bc4c0c06011491b31dc21f321684675451fecfa549c1bf4e6054ceca7edbcff9f1b9ca3f526fdbb2131476f482e3eb61d4d43f4732f1b29ed04b9f8ebeac9ffff1b6c88e61d0a19ada5804afef9f9b7330eff402dfdbf41fa44cc6601f9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 224, 75, 222, 177, 165, 98, 139, 215, 159, 159, 191, 27, 4, 4, 86, 216, 38, 39, 71, 84, 27, 73, + 93, 129, 195, 3, 144, 188, 131, 27, 40, 247, 134, 33, 62, 97, 81, 38, 27, 163, 31, 113, 129, 86, 245, 154, 235, + 27, 44, 12, 237, 191, 100, 126, 23, 66, 27, 228, 148, 184, 227, 92, 52, 214, 72, 27, 60, 230, 203, 22, 214, 184, + 110, 202, 74, 41, 24, 173, 205, 18, 97, 49, 231, 68, 215, 27, 178, 95, 108, 60, 12, 161, 107, 242, 27, 73, 66, 63, + 214, 69, 12, 118, 94, 255, 67, 8, 6, 162, 159, 27, 225, 11, 196, 192, 192, 96, 17, 73, 27, 49, 220, 33, 243, 33, + 104, 70, 117, 69, 31, 236, 250, 84, 156, 27, 244, 230, 5, 76, 236, 167, 237, 188, 255, 159, 27, 156, 163, 245, 38, + 253, 187, 33, 49, 71, 111, 72, 46, 62, 182, 29, 77, 67, 244, 115, 47, 27, 41, 237, 4, 185, 248, 235, 234, 201, + 255, 255, 27, 108, 136, 230, 29, 10, 25, 173, 165, 128, 74, 254, 249, 249, 183, 51, 14, 255, 64, 45, 253, 191, 65, + 250, 68, 204, 102, 1, 249, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2975, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8571810017024288430" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa0307b7070607060e5a07" + }, + { + "_tag": "ByteArray", + "bytearray": "004bb054b5c9c6b0e1a1e365" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "07" + }, + { + "_tag": "ByteArray", + "bytearray": "b8" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5639" + } + ] + }, + "cborHex": "d8669f1b76f52fcb8ade26ae9f4baa0307b7070607060e5a074c004bb054b5c9c6b0e1a1e365d87c809f410741b8ff425639ffff", + "cborBytes": [ + 216, 102, 159, 27, 118, 245, 47, 203, 138, 222, 38, 174, 159, 75, 170, 3, 7, 183, 7, 6, 7, 6, 14, 90, 7, 76, 0, + 75, 176, 84, 181, 201, 198, 176, 225, 161, 227, 101, 216, 124, 128, 159, 65, 7, 65, 184, 255, 66, 86, 57, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2976, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8822864663891267925" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c003ff" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "663564f1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "09fcc6000fc774d10335" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "197792764719688411" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc02f8" + } + ] + }, + "cborHex": "d8669f1b7a711caa9095d1559f43c003ff9f44663564f1d87d9f4a09fcc6000fc774d103351b02beb378b8426adbffff43fc02f8ffff", + "cborBytes": [ + 216, 102, 159, 27, 122, 113, 28, 170, 144, 149, 209, 85, 159, 67, 192, 3, 255, 159, 68, 102, 53, 100, 241, 216, + 125, 159, 74, 9, 252, 198, 0, 15, 199, 116, 209, 3, 53, 27, 2, 190, 179, 120, 184, 66, 106, 219, 255, 255, 67, + 252, 2, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2977, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10267962665778265453" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c886f8bdd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b81ddf5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94d331d0420410c7a823ca" + } + } + ] + } + ] + }, + "cborHex": "d905079fbf1b8e7f21a47cafbd6d458c886f8bdd441b81ddf54b94d331d0420410c7a823caffff", + "cborBytes": [ + 217, 5, 7, 159, 191, 27, 142, 127, 33, 164, 124, 175, 189, 109, 69, 140, 136, 111, 139, 221, 68, 27, 129, 221, + 245, 75, 148, 211, 49, 208, 66, 4, 16, 199, 168, 35, 202, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2978, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10085806166348602582" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7122953824923005677" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7534172697636698033" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7176190213708607551" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3904ad5bd6396101" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7dcd0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8bf7fb457aa71cd69fbf1b62d9d0c3c60bb2ed1b688ec2269714f7b11b6396f2fa70bc703f483904ad5bd6396101ffbf43e7dcd002ffffff", + "cborBytes": [ + 216, 102, 159, 27, 139, 247, 251, 69, 122, 167, 28, 214, 159, 191, 27, 98, 217, 208, 195, 198, 11, 178, 237, 27, + 104, 142, 194, 38, 151, 20, 247, 177, 27, 99, 150, 242, 250, 112, 188, 112, 63, 72, 57, 4, 173, 91, 214, 57, 97, + 1, 255, 191, 67, 231, 220, 208, 2, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2979, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11641227221276854543" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1f7f3fb50d5857e017228958" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d2c779c8c6f9d4e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b40ffa5ffefd" + } + } + ] + } + ] + }, + "cborHex": "d8669f1ba18df27ad9d0890f9f4c1f7f3fb50d5857e017228958bf485d2c779c8c6f9d4e46b40ffa5ffefdffffff", + "cborBytes": [ + 216, 102, 159, 27, 161, 141, 242, 122, 217, 208, 137, 15, 159, 76, 31, 127, 63, 181, 13, 88, 87, 224, 23, 34, 137, + 88, 191, 72, 93, 44, 119, 156, 140, 111, 157, 78, 70, 180, 15, 250, 95, 254, 253, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2980, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13973099046954938189" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4efe3f" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6435465012507151606" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8a26a7f3" + }, + { + "_tag": "ByteArray", + "bytearray": "b35b2845859c82bf" + }, + { + "_tag": "ByteArray", + "bytearray": "3dd507" + }, + { + "_tag": "ByteArray", + "bytearray": "e5bb2834d10af8e572" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3359439772213795956" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a6acd3868d8914f1d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4060417046829382958" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6815639029969536483" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e17b50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9272171049211760899" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e471510ee5e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15880754257592860100" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15373902515852574669" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8475011120718059975" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4008149832609722316" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13058221141648830203" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4110550482082714262" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5305708f550c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8465601592685139412" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2163841690468614343" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10584827566932507180" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d514c2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17606838557868691394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1402358729485857064" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18438689937701472256" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4715b631" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99fd8669f1bc1ea6b8cf1192f4d9f9f1bfffffffffffffff7ff434efe3fffff9f1b594f5d5512f18cf69f448a26a7f348b35b2845859c82bf433dd50749e5bb2834d10af8e572ff80bf1b2e9f20ac7b1f5c74494a6acd3868d8914f1d1b38597fca8434bd2e415f1b5e960396429f45e343e17b501b80ad5e7174ed910346e471510ee5e91bdc63c5db81183dc41bd55b12e23ce07fcdffd8669f1b759d49b635e299c780ffff9fbf1b379fcf09633e6fcc1bb5381ef162796efb1b390b9be283d9d296465305708f550c1b757bdbcbbdfa95d41b1e07828d8e9000c71b92e4dc975fc63a2c43d514c21bf4580e62236a0fc21b13762dd59eac31281bffe362ce54440800444715b631ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 216, 102, 159, 27, 193, 234, 107, 140, 241, 25, + 47, 77, 159, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 255, 67, 78, 254, 63, 255, 255, 159, 27, 89, 79, 93, + 85, 18, 241, 140, 246, 159, 68, 138, 38, 167, 243, 72, 179, 91, 40, 69, 133, 156, 130, 191, 67, 61, 213, 7, 73, + 229, 187, 40, 52, 209, 10, 248, 229, 114, 255, 128, 191, 27, 46, 159, 32, 172, 123, 31, 92, 116, 73, 74, 106, 205, + 56, 104, 216, 145, 79, 29, 27, 56, 89, 127, 202, 132, 52, 189, 46, 65, 95, 27, 94, 150, 3, 150, 66, 159, 69, 227, + 67, 225, 123, 80, 27, 128, 173, 94, 113, 116, 237, 145, 3, 70, 228, 113, 81, 14, 229, 233, 27, 220, 99, 197, 219, + 129, 24, 61, 196, 27, 213, 91, 18, 226, 60, 224, 127, 205, 255, 216, 102, 159, 27, 117, 157, 73, 182, 53, 226, + 153, 199, 128, 255, 255, 159, 191, 27, 55, 159, 207, 9, 99, 62, 111, 204, 27, 181, 56, 30, 241, 98, 121, 110, 251, + 27, 57, 11, 155, 226, 131, 217, 210, 150, 70, 83, 5, 112, 143, 85, 12, 27, 117, 123, 219, 203, 189, 250, 149, 212, + 27, 30, 7, 130, 141, 142, 144, 0, 199, 27, 146, 228, 220, 151, 95, 198, 58, 44, 67, 213, 20, 194, 27, 244, 88, 14, + 98, 35, 106, 15, 194, 27, 19, 118, 45, 213, 158, 172, 49, 40, 27, 255, 227, 98, 206, 84, 68, 8, 0, 68, 71, 21, + 182, 49, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2981, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8281c4a07a444ff03" + }, + { + "_tag": "ByteArray", + "bytearray": "04" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13697530207301205362" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13338984151929338583" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3fb893b085b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16629497693494763280" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f49f8281c4a07a444ff034104d8669f1bfffffffffffffff49f05ffffbf1bbe176726a25efd721bb91d9769c8503ad746a3fb893b085b1be6c7d80b9deedf10ffd9050980ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 73, 248, 40, 28, 74, 7, 164, 68, 255, 3, 65, 4, + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 5, 255, 255, 191, 27, 190, 23, 103, 38, 162, 94, + 253, 114, 27, 185, 29, 151, 105, 200, 80, 58, 215, 70, 163, 251, 137, 59, 8, 91, 27, 230, 199, 216, 11, 157, 238, + 223, 16, 255, 217, 5, 9, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2982, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4131849947613250568" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b395747a2c8b444089f80ffff", + "cborBytes": [216, 102, 159, 27, 57, 87, 71, 162, 200, 180, 68, 8, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2983, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1178174657197762524" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12880201009912949660" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9430913868171851194" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13153191309889380275" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "840124980124244462" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa1f465eabf0cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40bafa1b9b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17445016053595410929" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac72474e960cc46c0844" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11126359602609094715" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15922777710720280630" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15249056422098409032" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17672224038530965210" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17859697989429385964" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13307170955032567450" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17806194286239291605" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "557f9017a794163c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11227177747242698594" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1538183978576091165" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3523008035636290809" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16010963884975795508" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8703576097535877693" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "823638025364862470" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12406696636049765345" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56ac654b3d2623" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17078517283552327925" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5275577808095428103" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17320274078805150438" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "680447564448229834" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3526808008235793821" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d87c9f1b1059b79bc5a3e7dcbf1bb2bfaa93877d2b9c1b82e156322bb035ba1bb68985cec8b61fb31b0ba8b937df3cd9ee47fa1f465eabf0cc4540bafa1b9bff9f9f1bf21925ac4f8a91f14aac72474e960cc46c0844ff1b9a68c51bccc5803bbf1bdcf911f724fd68361bd39f8805df1096481bf5405a21afc1deda1bf7da64b257b25aecffffd8669f1bb8ac917aac1c9e9a9fd8669f1bf71c4f5cb0e218d580ff9f48557f9017a794163c1b9bcef2ad4e924762ffbf1b1558ba2dca39981d41911b30e43d2488f2a4f91bde325ed2db972d341b78c95058e134e23d1b0b6e266b956076061bac2d70db63c7b3e14756ac654b3d26231bed0314fbc88178f51b49369e10b4763e071bf05df98207964ae61b09716f74673769caffd8669f1b30f1bd3299e5bd9d80ffffffff", + "cborBytes": [ + 216, 124, 159, 27, 16, 89, 183, 155, 197, 163, 231, 220, 191, 27, 178, 191, 170, 147, 135, 125, 43, 156, 27, 130, + 225, 86, 50, 43, 176, 53, 186, 27, 182, 137, 133, 206, 200, 182, 31, 179, 27, 11, 168, 185, 55, 223, 60, 217, 238, + 71, 250, 31, 70, 94, 171, 240, 204, 69, 64, 186, 250, 27, 155, 255, 159, 159, 27, 242, 25, 37, 172, 79, 138, 145, + 241, 74, 172, 114, 71, 78, 150, 12, 196, 108, 8, 68, 255, 27, 154, 104, 197, 27, 204, 197, 128, 59, 191, 27, 220, + 249, 17, 247, 36, 253, 104, 54, 27, 211, 159, 136, 5, 223, 16, 150, 72, 27, 245, 64, 90, 33, 175, 193, 222, 218, + 27, 247, 218, 100, 178, 87, 178, 90, 236, 255, 255, 216, 102, 159, 27, 184, 172, 145, 122, 172, 28, 158, 154, 159, + 216, 102, 159, 27, 247, 28, 79, 92, 176, 226, 24, 213, 128, 255, 159, 72, 85, 127, 144, 23, 167, 148, 22, 60, 27, + 155, 206, 242, 173, 78, 146, 71, 98, 255, 191, 27, 21, 88, 186, 45, 202, 57, 152, 29, 65, 145, 27, 48, 228, 61, + 36, 136, 242, 164, 249, 27, 222, 50, 94, 210, 219, 151, 45, 52, 27, 120, 201, 80, 88, 225, 52, 226, 61, 27, 11, + 110, 38, 107, 149, 96, 118, 6, 27, 172, 45, 112, 219, 99, 199, 179, 225, 71, 86, 172, 101, 75, 61, 38, 35, 27, + 237, 3, 20, 251, 200, 129, 120, 245, 27, 73, 54, 158, 16, 180, 118, 62, 7, 27, 240, 93, 249, 130, 7, 150, 74, 230, + 27, 9, 113, 111, 116, 103, 55, 105, 202, 255, 216, 102, 159, 27, 48, 241, 189, 50, 153, 229, 189, 157, 128, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2984, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2480477863291794354" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17942873810792864488" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7282960265566688840" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1704559662646095888" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bcee043453d0ad656f154cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0bfbed601875285a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9c94446d62172961de63e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0883326aeca555022" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b226c6d797aba33b29f9f1bf901e4aa5df7dae8d8669f1b651245c65663164880ffff41021b17a7cffb667af010bf4c6bcee043453d0ad656f154cc480bfbed601875285a4bf9c94446d62172961de63e49f0883326aeca555022ffffff", + "cborBytes": [ + 216, 102, 159, 27, 34, 108, 109, 121, 122, 186, 51, 178, 159, 159, 27, 249, 1, 228, 170, 93, 247, 218, 232, 216, + 102, 159, 27, 101, 18, 69, 198, 86, 99, 22, 72, 128, 255, 255, 65, 2, 27, 23, 167, 207, 251, 102, 122, 240, 16, + 191, 76, 107, 206, 224, 67, 69, 61, 10, 214, 86, 241, 84, 204, 72, 11, 251, 237, 96, 24, 117, 40, 90, 75, 249, + 201, 68, 70, 214, 33, 114, 150, 29, 230, 62, 73, 240, 136, 51, 38, 174, 202, 85, 80, 34, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2985, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2840691349059224885" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15742070168934970683" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9194538386947997298" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14567078914621901494" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9571487632851755199" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2195087714461464033" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3344422936730395721" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e3631352" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "55c0cc77504d3904a218" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68a38fb3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d55eefea2bd6fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1290fd05e9e0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "231595434136671984" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb5db579396082138e54" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4669076326888478512" + } + } + } + ] + } + ] + }, + "cborHex": "d905009fbf1b276c29bb393345351bda771169e0a4753b1b7f998ff2bbba7e721bca28a917d91f0ab61b84d4c14a482c60bf1b1e7684a56f4cb5e1ff1b2e69c6f1027be44944e3631352bf4a55c0cc77504d3904a2184468a38fb3416b47d55eefea2bd6fb47d1290fd05e9e0f1b0336cad1ff5196f04afb5db579396082138e541b40cbe42e755f9730ffff", + "cborBytes": [ + 217, 5, 0, 159, 191, 27, 39, 108, 41, 187, 57, 51, 69, 53, 27, 218, 119, 17, 105, 224, 164, 117, 59, 27, 127, 153, + 143, 242, 187, 186, 126, 114, 27, 202, 40, 169, 23, 217, 31, 10, 182, 27, 132, 212, 193, 74, 72, 44, 96, 191, 27, + 30, 118, 132, 165, 111, 76, 181, 225, 255, 27, 46, 105, 198, 241, 2, 123, 228, 73, 68, 227, 99, 19, 82, 191, 74, + 85, 192, 204, 119, 80, 77, 57, 4, 162, 24, 68, 104, 163, 143, 179, 65, 107, 71, 213, 94, 239, 234, 43, 214, 251, + 71, 209, 41, 15, 208, 94, 158, 15, 27, 3, 54, 202, 209, 255, 81, 150, 240, 74, 251, 93, 181, 121, 57, 96, 130, 19, + 142, 84, 27, 64, 203, 228, 46, 117, 95, 151, 48, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2986, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [] + } + ] + }, + "cborHex": "d87f9fd9050b80ff", + "cborBytes": [216, 127, 159, 217, 5, 11, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2987, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12988869800251186523" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3ad051" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4519551800068691916" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bb441bc43edc55d5b9f9f433ad0511b3eb8ac6aa31257ccffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 180, 65, 188, 67, 237, 197, 93, 91, 159, 159, 67, 58, 208, 81, 27, 62, 184, 172, 106, 163, 18, + 87, 204, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2988, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1670946875466758178" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4b54137032c841aa1bd6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11191762625031671954" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a99" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11856324902292164388" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a6619d309" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30ab59" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14750830684585617725" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d799a45c20eab0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5d8e128d51d646d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7594be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a10eeea0e40a01e631a0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80fcef76aaeba2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2395422038786365096" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d229062809a0c24f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72388fac6d469f1d1fbf01" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4de765a65588bc07a23c4a9e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "564dff593003c23d5c5560ce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74892f4254aba41640319b1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63eefe0f28" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76eacc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14542104005230736923" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9fa7a66e2ab40303dc319a9c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9448f3bd6b52e70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9bfa0" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905019f80d8669f1b1730655486beb8229f4a4b54137032c841aa1bd61b9b5120cf9b819092428a99ffffd8669f1ba48a20ae5ebe0f249f413ebf450a6619d309418f4330ab591bccb57a5ab8a8693d485d799a45c20eab0e48c5d8e128d51d646d437594be4aa10eeea0e40a01e631a04780fcef76aaeba21b213e3fa71d00d6a848d229062809a0c24f4b72388fac6d469f1d1fbf01ffbf4c4de765a65588bc07a23c4a9e4c564dff593003c23d5c5560ce4c74892f4254aba41640319b1d4563eefe0f284376eacc1bc9cfee8b9e90361b4c9fa7a66e2ab40303dc319a9c411448c9448f3bd6b52e7043d9bfa0ffffffff", + "cborBytes": [ + 217, 5, 1, 159, 128, 216, 102, 159, 27, 23, 48, 101, 84, 134, 190, 184, 34, 159, 74, 75, 84, 19, 112, 50, 200, 65, + 170, 27, 214, 27, 155, 81, 32, 207, 155, 129, 144, 146, 66, 138, 153, 255, 255, 216, 102, 159, 27, 164, 138, 32, + 174, 94, 190, 15, 36, 159, 65, 62, 191, 69, 10, 102, 25, 211, 9, 65, 143, 67, 48, 171, 89, 27, 204, 181, 122, 90, + 184, 168, 105, 61, 72, 93, 121, 154, 69, 194, 14, 171, 14, 72, 197, 216, 225, 40, 213, 29, 100, 109, 67, 117, 148, + 190, 74, 161, 14, 238, 160, 228, 10, 1, 230, 49, 160, 71, 128, 252, 239, 118, 170, 235, 162, 27, 33, 62, 63, 167, + 29, 0, 214, 168, 72, 210, 41, 6, 40, 9, 160, 194, 79, 75, 114, 56, 143, 172, 109, 70, 159, 29, 31, 191, 1, 255, + 191, 76, 77, 231, 101, 166, 85, 136, 188, 7, 162, 60, 74, 158, 76, 86, 77, 255, 89, 48, 3, 194, 61, 92, 85, 96, + 206, 76, 116, 137, 47, 66, 84, 171, 164, 22, 64, 49, 155, 29, 69, 99, 238, 254, 15, 40, 67, 118, 234, 204, 27, + 201, 207, 238, 139, 158, 144, 54, 27, 76, 159, 167, 166, 110, 42, 180, 3, 3, 220, 49, 154, 156, 65, 20, 72, 201, + 68, 143, 59, 214, 181, 46, 112, 67, 217, 191, 160, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2989, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17928992563767516394" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14391512833535132081" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "037507b2002c2ef309dd" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13644921963017322025" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "722381156242623225" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4057202841955842310" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12694209694983965580" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8763e4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13520710882106823820" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9a09e28180bc07bae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13705631288503460243" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6de135635629b85ba931babe" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bf8d093beaffb9cea9fd8669f1bc7b8ecac2f5641b19f4a037507b2002c2ef309ddffff1bbd5c803b4192be29bf1b0a0669d592470af91b384e147d207bb9061bb02ae475f5d6cb8c438763e41bbba336e956bc548c49a9a09e28180bc07bae1bbe342f0a95ba61934c6de135635629b85ba931babeffffff", + "cborBytes": [ + 216, 102, 159, 27, 248, 208, 147, 190, 175, 251, 156, 234, 159, 216, 102, 159, 27, 199, 184, 236, 172, 47, 86, 65, + 177, 159, 74, 3, 117, 7, 178, 0, 44, 46, 243, 9, 221, 255, 255, 27, 189, 92, 128, 59, 65, 146, 190, 41, 191, 27, + 10, 6, 105, 213, 146, 71, 10, 249, 27, 56, 78, 20, 125, 32, 123, 185, 6, 27, 176, 42, 228, 117, 245, 214, 203, + 140, 67, 135, 99, 228, 27, 187, 163, 54, 233, 86, 188, 84, 140, 73, 169, 160, 158, 40, 24, 11, 192, 123, 174, 27, + 190, 52, 47, 10, 149, 186, 97, 147, 76, 109, 225, 53, 99, 86, 41, 184, 91, 169, 49, 186, 190, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2990, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9802053387505867945" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + }, + "cborHex": "d8669f1b8807e39f57b39ca99f13ffff", + "cborBytes": [216, 102, 159, 27, 136, 7, 227, 159, 87, 179, 156, 169, 159, 19, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2991, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14108208732711533810" + }, + "fields": [] + }, + "cborHex": "d8669f1bc3ca6d180a55bcf280ff", + "cborBytes": [216, 102, 159, 27, 195, 202, 109, 24, 10, 85, 188, 242, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2992, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14862936655063077112" + }, + "fields": [] + }, + "cborHex": "d8669f1bce43c223fc2ad0f880ff", + "cborBytes": [216, 102, 159, 27, 206, 67, 194, 35, 252, 42, 208, 248, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2993, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8702440281299612606" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17740477eef0ddbc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4728370023186276039" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2438890226191501725" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b78c547540de9f3be9f1bffffffffffffffec4817740477eef0ddbcd905009f1b419e8b7bee9f9ec7ff1b21d8adbd2a51099d80ffff", + "cborBytes": [ + 216, 102, 159, 27, 120, 197, 71, 84, 13, 233, 243, 190, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 72, 23, + 116, 4, 119, 238, 240, 221, 188, 217, 5, 0, 159, 27, 65, 158, 139, 123, 238, 159, 158, 199, 255, 27, 33, 216, 173, + 189, 42, 81, 9, 157, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2994, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11190892225418124326" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d86c79" + } + ] + }, + "cborHex": "d8669f1b9b4e092fe7ba5c269f8043d86c79ffff", + "cborBytes": [216, 102, 159, 27, 155, 78, 9, 47, 231, 186, 92, 38, 159, 128, 67, 216, 108, 121, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2995, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13406053472170903741" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6161342881844828830" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3805592669944556378" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4effb603fc72" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5794513728030639068" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18116964138002895143" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6947346147522505678" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15386084217627918897" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8487843043848836658" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1346005545090201688" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9895087813747265066" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95cf81f0436896ee44" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10791891712274243894" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4fe106c1ed8" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16623662561241202274" + } + }, + { + "_tag": "ByteArray", + "bytearray": "809c56461c6cc4d0236b8119" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "567646333926884099" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11744271575423386811" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bba0bde9ac8a388bd9f9fd9050d9f1b55817cb4f3be1a9effbf1b34d02e5ed3e02b5a464effb603fc721b506a3f88f56403dc1bfb6c62e54e2751271b6069ee8336c1ebce1bd5865a13b3f4c2311b75cae04721e156321b12adf8e96cceb8581b895269f0afb3ce2a4995cf81f0436896ee441b95c480559c96a13646e4fe106c1ed8ffd905099f1be6b31d0604bdfe624c809c56461c6cc4d0236b81191b07e0af554bc3c3031ba2fc08c626d404bbffffffff", + "cborBytes": [ + 216, 102, 159, 27, 186, 11, 222, 154, 200, 163, 136, 189, 159, 159, 217, 5, 13, 159, 27, 85, 129, 124, 180, 243, + 190, 26, 158, 255, 191, 27, 52, 208, 46, 94, 211, 224, 43, 90, 70, 78, 255, 182, 3, 252, 114, 27, 80, 106, 63, + 136, 245, 100, 3, 220, 27, 251, 108, 98, 229, 78, 39, 81, 39, 27, 96, 105, 238, 131, 54, 193, 235, 206, 27, 213, + 134, 90, 19, 179, 244, 194, 49, 27, 117, 202, 224, 71, 33, 225, 86, 50, 27, 18, 173, 248, 233, 108, 206, 184, 88, + 27, 137, 82, 105, 240, 175, 179, 206, 42, 73, 149, 207, 129, 240, 67, 104, 150, 238, 68, 27, 149, 196, 128, 85, + 156, 150, 161, 54, 70, 228, 254, 16, 108, 30, 216, 255, 217, 5, 9, 159, 27, 230, 179, 29, 6, 4, 189, 254, 98, 76, + 128, 156, 86, 70, 28, 108, 196, 208, 35, 107, 129, 25, 27, 7, 224, 175, 85, 75, 195, 195, 3, 27, 162, 252, 8, 198, + 38, 212, 4, 187, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2996, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "59cd2590dd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17729927258015008883" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ad278abf63c9fe71b60cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18ab" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "030604fd" + } + ] + }, + "cborHex": "d87a9fbf4559cd2590dd1bf60d5ae76b8008734b5ad278abf63c9fe71b60cc4218abff44030604fdff", + "cborBytes": [ + 216, 122, 159, 191, 69, 89, 205, 37, 144, 221, 27, 246, 13, 90, 231, 107, 128, 8, 115, 75, 90, 210, 120, 171, 246, + 60, 159, 231, 27, 96, 204, 66, 24, 171, 255, 68, 3, 6, 4, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2997, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11923742792823705295" + }, + "fields": [] + }, + "cborHex": "d8669f1ba579a4e537618ecf80ff", + "cborBytes": [216, 102, 159, 27, 165, 121, 164, 229, 55, 97, 142, 207, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2998, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2088807520662461688" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "365512d6a819be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2357071105235333325" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5584927848158034644" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72aacbb2" + }, + { + "_tag": "ByteArray", + "bytearray": "13b1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6359847040644561792" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12884415413955203095" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4d55632a7fd7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12449820941967076924" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f6bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2399481395801820965" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ab62" + }, + { + "_tag": "ByteArray", + "bytearray": "28d029aa" + } + ] + } + ] + }, + "cborHex": "d8799fd8669f1b1cfcef5f81401cf89f9f47365512d6a819be1b20b5ffae91e3b0cd1b4d81a649a5a57ad44472aacbb24213b1ffd8669f1b5842b73003703b809f1bb2cea38def5e1017464d55632a7fd71bacc6a62f4b2aae3c42f6bc1b214cab9dd1ed0f25ffffffff9f42ab624428d029aaffff", + "cborBytes": [ + 216, 121, 159, 216, 102, 159, 27, 28, 252, 239, 95, 129, 64, 28, 248, 159, 159, 71, 54, 85, 18, 214, 168, 25, 190, + 27, 32, 181, 255, 174, 145, 227, 176, 205, 27, 77, 129, 166, 73, 165, 165, 122, 212, 68, 114, 170, 203, 178, 66, + 19, 177, 255, 216, 102, 159, 27, 88, 66, 183, 48, 3, 112, 59, 128, 159, 27, 178, 206, 163, 141, 239, 94, 16, 23, + 70, 77, 85, 99, 42, 127, 215, 27, 172, 198, 166, 47, 75, 42, 174, 60, 66, 246, 188, 27, 33, 76, 171, 157, 209, + 237, 15, 37, 255, 255, 255, 255, 159, 66, 171, 98, 68, 40, 208, 41, 170, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 2999, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10520856265122723755" + }, + "fields": [] + } + ] + }, + "cborHex": "d905079fd8669f1b92019707ff9537ab80ffff", + "cborBytes": [217, 5, 7, 159, 216, 102, 159, 27, 146, 1, 151, 7, 255, 149, 55, 171, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3000, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3622270366483679891" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2631890296145835740" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7a11c9ed83a820f5a4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13031399950806385995" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1598425487505552000" + } + } + ] + } + ] + }, + "cborHex": "d905069fbf411b1b3244e3b4eaaf0a93ff1b24865a47ad91f6dc9f497a11c9ed83a820f5a41bb4d8d53641db854b1b162ebf8316b2f280ffff", + "cborBytes": [ + 217, 5, 6, 159, 191, 65, 27, 27, 50, 68, 227, 180, 234, 175, 10, 147, 255, 27, 36, 134, 90, 71, 173, 145, 246, + 220, 159, 73, 122, 17, 201, 237, 131, 168, 32, 245, 164, 27, 180, 216, 213, 54, 65, 219, 133, 75, 27, 22, 46, 191, + 131, 22, 178, 242, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3001, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "380752691002606720" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7976124604612726902" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4db250" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3b1185823d66fc97232" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4cec2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f718af198433f7026a47" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14433664097465404550" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + ] + }, + "cborHex": "d8669f1b0548b48e1e7c04809f1b6eb0e3118e31d076bf434db2504ab3b1185823d66fc9723243e4cec24af718af198433f7026a47ffd8669f1bc84ead0618bc0c8680ff1bfffffffffffffffcffff", + "cborBytes": [ + 216, 102, 159, 27, 5, 72, 180, 142, 30, 124, 4, 128, 159, 27, 110, 176, 227, 17, 142, 49, 208, 118, 191, 67, 77, + 178, 80, 74, 179, 177, 24, 88, 35, 214, 111, 201, 114, 50, 67, 228, 206, 194, 74, 247, 24, 175, 25, 132, 51, 247, + 2, 106, 71, 255, 216, 102, 159, 27, 200, 78, 173, 6, 24, 188, 12, 134, 128, 255, 27, 255, 255, 255, 255, 255, 255, + 255, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3002, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6881481439937175250" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6931526601948240490" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11509164069721787065" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e12dd897b4a8eedf4298" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4785563423113119504" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b1eb2941f86fa82da54d7e" + }, + { + "_tag": "ByteArray", + "bytearray": "724e1f10053e15b1" + }, + { + "_tag": "ByteArray", + "bytearray": "a507db7cbe18c97ab86c8687" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3785066229650140258" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72fba46319c48ead7c6c2b" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5a870a6a3360220638" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18018655815528999323" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f4251" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2301950695398331819" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4fcfe65c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b39a48a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1df5c3e036d4faa8393469" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a8d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3241171856623617555" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "896ed6c699ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c88316b114d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b75be6c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "550729827256474451" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dddf01099f04c58ddd6b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14498093602347840692" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc4ecf6cba99d9e83acf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1811259482945723438" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7803c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13696491110882528005" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b5f7feee8f3e61ed29f9fd8669f1b6031bab83c4b9a6a9f1b9fb8c3be4574cab94ae12dd897b4a8eedf42981b4269bc940cc28710ffff9f4bb1eb2941f86fa82da54d7e48724e1f10053e15b14ca507db7cbe18c97ab86c86871b348741ae859fac624b72fba46319c48ead7c6c2bff9f495a870a6a33602206381bfa0f1fff4ea1e99b438f42511b1ff22bf611ae55ab444fcfe65cffbf440b39a48a4b1df5c3e036d4faa8393469422a8d1b2cfaf4a1920b461346896ed6c699ed468c88316b114d44b75be6c61b07a495dc28d59b534adddf01099f04c58ddd6b1bc9339351304e74b4ffffbf4abc4ecf6cba99d9e83acf1b1922e2e73d099c2e43c7803c1bbe13b6192572cb05ffffff", + "cborBytes": [ + 216, 102, 159, 27, 95, 127, 238, 232, 243, 230, 30, 210, 159, 159, 216, 102, 159, 27, 96, 49, 186, 184, 60, 75, + 154, 106, 159, 27, 159, 184, 195, 190, 69, 116, 202, 185, 74, 225, 45, 216, 151, 180, 168, 238, 223, 66, 152, 27, + 66, 105, 188, 148, 12, 194, 135, 16, 255, 255, 159, 75, 177, 235, 41, 65, 248, 111, 168, 45, 165, 77, 126, 72, + 114, 78, 31, 16, 5, 62, 21, 177, 76, 165, 7, 219, 124, 190, 24, 201, 122, 184, 108, 134, 135, 27, 52, 135, 65, + 174, 133, 159, 172, 98, 75, 114, 251, 164, 99, 25, 196, 142, 173, 124, 108, 43, 255, 159, 73, 90, 135, 10, 106, + 51, 96, 34, 6, 56, 27, 250, 15, 31, 255, 78, 161, 233, 155, 67, 143, 66, 81, 27, 31, 242, 43, 246, 17, 174, 85, + 171, 68, 79, 207, 230, 92, 255, 191, 68, 11, 57, 164, 138, 75, 29, 245, 195, 224, 54, 212, 250, 168, 57, 52, 105, + 66, 42, 141, 27, 44, 250, 244, 161, 146, 11, 70, 19, 70, 137, 110, 214, 198, 153, 237, 70, 140, 136, 49, 107, 17, + 77, 68, 183, 91, 230, 198, 27, 7, 164, 149, 220, 40, 213, 155, 83, 74, 221, 223, 1, 9, 159, 4, 197, 141, 221, 107, + 27, 201, 51, 147, 81, 48, 78, 116, 180, 255, 255, 191, 74, 188, 78, 207, 108, 186, 153, 217, 232, 58, 207, 27, 25, + 34, 226, 231, 61, 9, 156, 46, 67, 199, 128, 60, 27, 190, 19, 182, 25, 37, 114, 203, 5, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3003, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "522355995250857610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0429" + } + ] + }, + "cborHex": "d8669f1b073fc8029739168a9f420429ffff", + "cborBytes": [216, 102, 159, 27, 7, 63, 200, 2, 151, 57, 22, 138, 159, 66, 4, 41, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3004, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13388648183829593339" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f984010806f801d806d002" + } + ] + }, + "cborHex": "d8669f1bb9ce08964bd77cfb9f4bf984010806f801d806d002ffff", + "cborBytes": [ + 216, 102, 159, 27, 185, 206, 8, 150, 75, 215, 124, 251, 159, 75, 249, 132, 1, 8, 6, 248, 1, 216, 6, 208, 2, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3005, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2634672421362800182" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14053030920728302800" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15889308556605169624" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c14bf7eeba124" + }, + { + "_tag": "ByteArray", + "bytearray": "23" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5350468714772631190" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ea756b696a107a22ce63fca5" + }, + { + "_tag": "ByteArray", + "bytearray": "6a992e32a5adfcb8fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "194403787060049953" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b9e6b1420c857b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f8236c872fa1" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e6d87b6e0669243cc91251" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4731179153600565037" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10428635975258294122" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7d" + }, + { + "_tag": "ByteArray", + "bytearray": "895c29f22fe975738f7e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6652778827843435905" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13116082597043448412" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ffcd14d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ead" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd017891f7b0455b92" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "378c07ffc1effe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5418665677443846016" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f801db218" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "764361052910957907" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab7a3ae0ee73" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2483376196107357349" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "abd8de" + } + ] + } + ] + }, + "cborHex": "d8669f1b24903c9baed916369f1bc306652a8f9754d0d8669f1bdc8229f273069fd89f477c14bf7eeba1244123a0d8669f1b4a40aef2b5dd0e969f4cea756b696a107a22ce63fca5496a992e32a5adfcb8fd1b02b2a936deb4782147b9e6b1420c857bffff46f8236c872fa1ffff9f4be6d87b6e0669243cc91251d8669f1b41a8865f93184f2d9f1b90b9f52a8d21476a417d4a895c29f22fe975738f7effffbf1b5c536b1892d8fd811bb605afa149752a5cffbf411b449ffcd14d421ead49dd017891f7b0455b9247378c07ffc1effe1b4b32f7b96ca44f80456f801db2181b0a9b8e53eee6b55346ab7a3ae0ee731b2276b97e2ca3cca5ff43abd8deffffff", + "cborBytes": [ + 216, 102, 159, 27, 36, 144, 60, 155, 174, 217, 22, 54, 159, 27, 195, 6, 101, 42, 143, 151, 84, 208, 216, 102, 159, + 27, 220, 130, 41, 242, 115, 6, 159, 216, 159, 71, 124, 20, 191, 126, 235, 161, 36, 65, 35, 160, 216, 102, 159, 27, + 74, 64, 174, 242, 181, 221, 14, 150, 159, 76, 234, 117, 107, 105, 106, 16, 122, 34, 206, 99, 252, 165, 73, 106, + 153, 46, 50, 165, 173, 252, 184, 253, 27, 2, 178, 169, 54, 222, 180, 120, 33, 71, 185, 230, 177, 66, 12, 133, 123, + 255, 255, 70, 248, 35, 108, 135, 47, 161, 255, 255, 159, 75, 230, 216, 123, 110, 6, 105, 36, 60, 201, 18, 81, 216, + 102, 159, 27, 65, 168, 134, 95, 147, 24, 79, 45, 159, 27, 144, 185, 245, 42, 141, 33, 71, 106, 65, 125, 74, 137, + 92, 41, 242, 47, 233, 117, 115, 143, 126, 255, 255, 191, 27, 92, 83, 107, 24, 146, 216, 253, 129, 27, 182, 5, 175, + 161, 73, 117, 42, 92, 255, 191, 65, 27, 68, 159, 252, 209, 77, 66, 30, 173, 73, 221, 1, 120, 145, 247, 176, 69, + 91, 146, 71, 55, 140, 7, 255, 193, 239, 254, 27, 75, 50, 247, 185, 108, 164, 79, 128, 69, 111, 128, 29, 178, 24, + 27, 10, 155, 142, 83, 238, 230, 181, 83, 70, 171, 122, 58, 224, 238, 115, 27, 34, 118, 185, 126, 44, 163, 204, + 165, 255, 67, 171, 216, 222, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3006, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5247892293447467587" + }, + "fields": [] + }, + "cborHex": "d8669f1b48d4423c8272424380ff", + "cborBytes": [216, 102, 159, 27, 72, 212, 66, 60, 130, 114, 66, 67, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3007, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2eb015849c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "88494136195829957" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ee0ff635eb12f725e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2550c1f3cac39" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6665a0e13aea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13088333535781694050" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5864c2cce25" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4105189963513360598" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9cac93e98c5702dc08aae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17323036588410854680" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9fbf452eb015849c1b013a64f2b0a850c5493ee0ff635eb12f725e47b2550c1f3cac39466665a0e13aea1bb5a31a017e19aa6246a5864c2cce251b38f8908586b670d64bc9cac93e98c5702dc08aae1bf067c9feeb52dd18ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 191, 69, 46, 176, 21, 132, 156, 27, 1, 58, 100, + 242, 176, 168, 80, 197, 73, 62, 224, 255, 99, 94, 177, 47, 114, 94, 71, 178, 85, 12, 31, 60, 172, 57, 70, 102, + 101, 160, 225, 58, 234, 27, 181, 163, 26, 1, 126, 25, 170, 98, 70, 165, 134, 76, 44, 206, 37, 27, 56, 248, 144, + 133, 134, 182, 112, 214, 75, 201, 202, 201, 62, 152, 197, 112, 45, 192, 138, 174, 27, 240, 103, 201, 254, 235, 82, + 221, 24, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3008, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13121650993858853931" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04530405" + }, + { + "_tag": "ByteArray", + "bytearray": "e30401" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5798224258128092619" + } + }, + { + "_tag": "ByteArray", + "bytearray": "787a71611389890a4489f9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1dcb38a325e96aed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba7d8721ccda34" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82aee1b5b4962c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16961075086550477908" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8df6c96f468a74e839f07c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8242b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8897e5a45eb69d07dc003" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17153573478763768898" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efbf30ef47d4cdfe34cbe5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c3b66a17996" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f87e0b32ca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13233844160403648674" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bb619780eb39bbc2b9f440453040543e304019f1b50776e3e11c71dcb4b787a71611389890a4489f9bf481dcb38a325e96aed47ba7d8721ccda344782aee1b5b4962c1beb61d7ed7691ac54ffbf41004cc8df6c96f468a74e839f07c7438242b341d44be8897e5a45eb69d07dc0031bee0dbc320646ac424befbf30ef47d4cdfe34cbe5469c3b66a1799645f87e0b32ca1bb7a80f25e1bcb0a2ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 182, 25, 120, 14, 179, 155, 188, 43, 159, 68, 4, 83, 4, 5, 67, 227, 4, 1, 159, 27, 80, 119, + 110, 62, 17, 199, 29, 203, 75, 120, 122, 113, 97, 19, 137, 137, 10, 68, 137, 249, 191, 72, 29, 203, 56, 163, 37, + 233, 106, 237, 71, 186, 125, 135, 33, 204, 218, 52, 71, 130, 174, 225, 181, 180, 150, 44, 27, 235, 97, 215, 237, + 118, 145, 172, 84, 255, 191, 65, 0, 76, 200, 223, 108, 150, 244, 104, 167, 78, 131, 159, 7, 199, 67, 130, 66, 179, + 65, 212, 75, 232, 137, 126, 90, 69, 235, 105, 208, 125, 192, 3, 27, 238, 13, 188, 50, 6, 70, 172, 66, 75, 239, + 191, 48, 239, 71, 212, 205, 254, 52, 203, 229, 70, 156, 59, 102, 161, 121, 150, 69, 248, 126, 11, 50, 202, 27, + 183, 168, 15, 37, 225, 188, 176, 162, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3009, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6067957598066578857" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b9035b5809" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2e" + }, + { + "_tag": "ByteArray", + "bytearray": "d1039092e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10157435675270229292" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02c0d6a49316e32199d672" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "178735919299728295" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "defbfa9e19dc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2253452505736756209" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3519673188456467477" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5994483845081236537" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ea95f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7483043737985390528" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16624079454451419545" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15175184760621873284" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "943246582bdf665218a158a9" + } + ] + }, + "cborHex": "d9050d9f9fd8669f1b5435b74938e415a980ff45b9035b58099f412e45d1039092e31b8cf675ee255cad2c4b02c0d6a49316e32199d672ffffbf1b027aff5f227693a746defbfa9e19dc1b1f45df1d5aa73bf11b30d8641deb6a0c151b5330af4c05e28439436ea95f1b67d91ca2015497c01be6b4982f887249991bd299162361c9b8844113ff4c943246582bdf665218a158a9ff", + "cborBytes": [ + 217, 5, 13, 159, 159, 216, 102, 159, 27, 84, 53, 183, 73, 56, 228, 21, 169, 128, 255, 69, 185, 3, 91, 88, 9, 159, + 65, 46, 69, 209, 3, 144, 146, 227, 27, 140, 246, 117, 238, 37, 92, 173, 44, 75, 2, 192, 214, 164, 147, 22, 227, + 33, 153, 214, 114, 255, 255, 191, 27, 2, 122, 255, 95, 34, 118, 147, 167, 70, 222, 251, 250, 158, 25, 220, 27, 31, + 69, 223, 29, 90, 167, 59, 241, 27, 48, 216, 100, 29, 235, 106, 12, 21, 27, 83, 48, 175, 76, 5, 226, 132, 57, 67, + 110, 169, 95, 27, 103, 217, 28, 162, 1, 84, 151, 192, 27, 230, 180, 152, 47, 136, 114, 73, 153, 27, 210, 153, 22, + 35, 97, 201, 184, 132, 65, 19, 255, 76, 148, 50, 70, 88, 43, 223, 102, 82, 24, 161, 88, 169, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3010, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15468219449414694635" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10747007918182803121" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6518176417496219705" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1135048605095212713" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bd6aa27a29626b6eb9f801b95250ac2f198a6b11b5a7536eabc30c0399fd8669f1b0fc080b14d80b6a980ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 214, 170, 39, 162, 150, 38, 182, 235, 159, 128, 27, 149, 37, 10, 194, 241, 152, 166, 177, 27, + 90, 117, 54, 234, 188, 48, 192, 57, 159, 216, 102, 159, 27, 15, 192, 128, 177, 77, 128, 182, 169, 128, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3011, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5014348212818549069" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6409276317744602427" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce63ed38e76b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18220643669757839987" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc85e4" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b45968b21e52a194d9fbf1b58f252da6a7d9d3b46ce63ed38e76b1bfcdcbae16ae2ca7343fc85e4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 69, 150, 139, 33, 229, 42, 25, 77, 159, 191, 27, 88, 242, 82, 218, 106, 125, 157, 59, 70, 206, + 99, 237, 56, 231, 107, 27, 252, 220, 186, 225, 106, 226, 202, 115, 67, 252, 133, 228, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3012, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13602249578573593518" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0384cba5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d547e54ebb4c9b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36e7e6a5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "acbc45cc3d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18141305148847786467" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfc714bb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5883248194519499729" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10478010003890019990" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14821819006058214720" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b0fc5dc35d26661740" + }, + { + "_tag": "ByteArray", + "bytearray": "f3154d2705" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14863410517276811147" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3022211025561614267" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9ed8f5d81789" + }, + { + "_tag": "ByteArray", + "bytearray": "c39aa9dbd9c50b54" + }, + { + "_tag": "ByteArray", + "bytearray": "7eb785a00247d6ee18" + }, + { + "_tag": "ByteArray", + "bytearray": "29de8a" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "51" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13468987872253563227" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bbcc4e5ec8515fbae9fa0bf440384cba547d547e54ebb4c9b41a14436e7e6a545acbc45cc3d1bfbc2dcea870989e344dfc714bb1b51a57f0fe7cb03d1ff1b91695e956ada9e969f9f1bcdb1addb4d3bb54049b0fc5dc35d2666174045f3154d2705ffd8669f1bce45711da116df8b80ff9f1b29f10cea56de77bb469ed8f5d8178948c39aa9dbd9c50b54497eb785a00247d6ee184329de8affffbf41511bbaeb751ba9b7d15bffffff", + "cborBytes": [ + 216, 102, 159, 27, 188, 196, 229, 236, 133, 21, 251, 174, 159, 160, 191, 68, 3, 132, 203, 165, 71, 213, 71, 229, + 78, 187, 76, 155, 65, 161, 68, 54, 231, 230, 165, 69, 172, 188, 69, 204, 61, 27, 251, 194, 220, 234, 135, 9, 137, + 227, 68, 223, 199, 20, 187, 27, 81, 165, 127, 15, 231, 203, 3, 209, 255, 27, 145, 105, 94, 149, 106, 218, 158, + 150, 159, 159, 27, 205, 177, 173, 219, 77, 59, 181, 64, 73, 176, 252, 93, 195, 93, 38, 102, 23, 64, 69, 243, 21, + 77, 39, 5, 255, 216, 102, 159, 27, 206, 69, 113, 29, 161, 22, 223, 139, 128, 255, 159, 27, 41, 241, 12, 234, 86, + 222, 119, 187, 70, 158, 216, 245, 216, 23, 137, 72, 195, 154, 169, 219, 217, 197, 11, 84, 73, 126, 183, 133, 160, + 2, 71, 214, 238, 24, 67, 41, 222, 138, 255, 255, 191, 65, 81, 27, 186, 235, 117, 27, 169, 183, 209, 91, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3013, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11696965697921150227" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e84627a65c86c87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f583135d5059643" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cd7ba0555" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7592293637001074963" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b8df36ea56cecb507" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bc3c8c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b597a144dd38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94f6f124d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bba58ef36fa1ffa9a12eab12" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ca0ae5eaa3b" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1ba253f8543e84ed139fbf483e84627a65c86c87487f583135d5059643458cd7ba05551b695d3ed64fe85913499b8df36ea56cecb507443bc3c8c046b597a144dd384594f6f124d64cbba58ef36fa1ffa9a12eab12463ca0ae5eaa3bff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 162, 83, 248, 84, 62, 132, 237, 19, 159, 191, 72, 62, 132, 98, 122, 101, 200, 108, 135, 72, + 127, 88, 49, 53, 213, 5, 150, 67, 69, 140, 215, 186, 5, 85, 27, 105, 93, 62, 214, 79, 232, 89, 19, 73, 155, 141, + 243, 110, 165, 108, 236, 181, 7, 68, 59, 195, 200, 192, 70, 181, 151, 161, 68, 221, 56, 69, 148, 246, 241, 36, + 214, 76, 187, 165, 142, 243, 111, 161, 255, 169, 161, 46, 171, 18, 70, 60, 160, 174, 94, 170, 59, 255, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3014, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2251823690653810127" + }, + "fields": [] + }, + "cborHex": "d8669f1b1f4015b74a3abdcf80ff", + "cborBytes": [216, 102, 159, 27, 31, 64, 21, 183, 74, 58, 189, 207, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3015, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15683387944334835980" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16036392109715129162" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "57" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f411ad9050c9f1bd9a6963dc0b8c10c1bffffffffffffffecd8669f1bde8cb5a8ca72834a80ff4157ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 65, 26, 217, 5, 12, 159, 27, 217, 166, 150, 61, + 192, 184, 193, 12, 27, 255, 255, 255, 255, 255, 255, 255, 236, 216, 102, 159, 27, 222, 140, 181, 168, 202, 114, + 131, 74, 128, 255, 65, 87, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3016, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2906099503646184771" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "08de8cee9e8004" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b42ae3fb648b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9603c6d53e9fe39162fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "992eeb80cc11704e50e0" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7287630899430270559" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f1a4bc2347f782f734c6eaf9" + } + ] + } + ] + }, + "cborHex": "d8669f1b28548a19f4c515439f9fbf4708de8cee9e8004471b42ae3fb648b94a9603c6d53e9fe39162fb4a992eeb80cc11704e50e0ff1b6522ddb106b3a65f4cf1a4bc2347f782f734c6eaf9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 40, 84, 138, 25, 244, 197, 21, 67, 159, 159, 191, 71, 8, 222, 140, 238, 158, 128, 4, 71, 27, + 66, 174, 63, 182, 72, 185, 74, 150, 3, 198, 213, 62, 159, 227, 145, 98, 251, 74, 153, 46, 235, 128, 204, 17, 112, + 78, 80, 224, 255, 27, 101, 34, 221, 177, 6, 179, 166, 95, 76, 241, 164, 188, 35, 71, 247, 130, 247, 52, 198, 234, + 249, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3017, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6285000438464578859" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e01f09" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8176693321778577966" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10801649433151112547" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2739949465768440529" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11193428495699891796" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c8a29a9c7986b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13732648696898315284" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c19a1d842d33e3fb7b" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12164197772936534396" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3547664237847758508" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3dbe85d8b0a231eb8a7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9213767557080814262" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10226316770204640590" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "635778901656037445" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1127121815798432164" + } + }, + { + "_tag": "ByteArray", + "bytearray": "90440b17" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1382700820641949247" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050d9fd8669f1b5738ce9973db052b9f9f43e01f09ffbf1b7179734111ebc22e41d71b95e72aee0b4585631b26064185b1a632d11b9b570be958ed5654472c8a29a9c7986b1bbe942b3b2bdae41449c19a1d842d33e3fb7bffd8669f1ba8cfe96d017ad97c9f1b313bd5d3f745c6ac4a3dbe85d8b0a231eb8a7b1b7fdde0c6cad212b6ffff9f1b8deb2cebd0aae54e1b08d2bd8ae4e568451b0fa45751d94241a44490440b171b133057120d01263fffffffff", + "cborBytes": [ + 217, 5, 13, 159, 216, 102, 159, 27, 87, 56, 206, 153, 115, 219, 5, 43, 159, 159, 67, 224, 31, 9, 255, 191, 27, + 113, 121, 115, 65, 17, 235, 194, 46, 65, 215, 27, 149, 231, 42, 238, 11, 69, 133, 99, 27, 38, 6, 65, 133, 177, + 166, 50, 209, 27, 155, 87, 11, 233, 88, 237, 86, 84, 71, 44, 138, 41, 169, 199, 152, 107, 27, 190, 148, 43, 59, + 43, 218, 228, 20, 73, 193, 154, 29, 132, 45, 51, 227, 251, 123, 255, 216, 102, 159, 27, 168, 207, 233, 109, 1, + 122, 217, 124, 159, 27, 49, 59, 213, 211, 247, 69, 198, 172, 74, 61, 190, 133, 216, 176, 162, 49, 235, 138, 123, + 27, 127, 221, 224, 198, 202, 210, 18, 182, 255, 255, 159, 27, 141, 235, 44, 235, 208, 170, 229, 78, 27, 8, 210, + 189, 138, 228, 229, 104, 69, 27, 15, 164, 87, 81, 217, 66, 65, 164, 68, 144, 68, 11, 23, 27, 19, 48, 87, 18, 13, + 1, 38, 63, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3018, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "901549049785404263" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5211565163879919973" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1885684739564672557" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5dd81e3de0c0689b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5569993125803390625" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e14c35beec" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10853653802469198039" + } + } + ] + }, + "cborHex": "d87c9f412dbf1b0c82f2158c0ccb671b485332e78cdcf1651b1a2b4c47a420962d485dd81e3de0c0689b1b4d4c973ca0e0f6a145e14c35beecff1b969feca0d33e88d7ff", + "cborBytes": [ + 216, 124, 159, 65, 45, 191, 27, 12, 130, 242, 21, 140, 12, 203, 103, 27, 72, 83, 50, 231, 140, 220, 241, 101, 27, + 26, 43, 76, 71, 164, 32, 150, 45, 72, 93, 216, 30, 61, 224, 192, 104, 155, 27, 77, 76, 151, 60, 160, 224, 246, + 161, 69, 225, 76, 53, 190, 236, 255, 27, 150, 159, 236, 160, 211, 62, 136, 215, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3019, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17933652878218679900" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11951244762263341825" + } + }, + { + "_tag": "ByteArray", + "bytearray": "63ec47850d744ab072aa54" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9341916989283366932" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1258524147402131394" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5085b6c6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6291473885280649297" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb8fb4dac885f94f48" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03e1785d57cd3ba12e8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39598572aae9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60ac839516f24910" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad58a025840626b9e28dfd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ad8ed9f2f03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6032546792839156691" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0d750d7e78327894a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ff97cb43209" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d673771307c9d3ff1c89f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c4b2f714abb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6b625ddbcd7ea9f73e861" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb6276" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0dbe3f7f18829dd51eaa93" + }, + { + "_tag": "ByteArray", + "bytearray": "f526388aff73dafbf3501a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2397e5d70748733d85555f" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "33cf" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9582560517600331149" + } + } + ] + }, + "cborHex": "d8669f1bf8e12246b362d65c9f1ba5db59ca76744b014b63ec47850d744ab072aa54d8669f1b81a52801936bf8149fbf1b11772d0b4b27c7c2445085b6c61b574fce2a3dccc05149cb8fb4dac885f94f48ffbf4a03e1785d57cd3ba12e8f4639598572aae94860ac839516f249104bad58a025840626b9e28dfd468ad8ed9f2f031b53b7e958a61993d349a0d750d7e78327894a467ff97cb432094bd673771307c9d3ff1c89f2462c4b2f714abb4bf6b625ddbcd7ea9f73e86143eb6276ff9f4b0dbe3f7f18829dd51eaa934bf526388aff73dafbf3501aff4b2397e5d70748733d85555fffff9f4233cf80ff1b84fc18052a40458dffff", + "cborBytes": [ + 216, 102, 159, 27, 248, 225, 34, 70, 179, 98, 214, 92, 159, 27, 165, 219, 89, 202, 118, 116, 75, 1, 75, 99, 236, + 71, 133, 13, 116, 74, 176, 114, 170, 84, 216, 102, 159, 27, 129, 165, 40, 1, 147, 107, 248, 20, 159, 191, 27, 17, + 119, 45, 11, 75, 39, 199, 194, 68, 80, 133, 182, 198, 27, 87, 79, 206, 42, 61, 204, 192, 81, 73, 203, 143, 180, + 218, 200, 133, 249, 79, 72, 255, 191, 74, 3, 225, 120, 93, 87, 205, 59, 161, 46, 143, 70, 57, 89, 133, 114, 170, + 233, 72, 96, 172, 131, 149, 22, 242, 73, 16, 75, 173, 88, 160, 37, 132, 6, 38, 185, 226, 141, 253, 70, 138, 216, + 237, 159, 47, 3, 27, 83, 183, 233, 88, 166, 25, 147, 211, 73, 160, 215, 80, 215, 231, 131, 39, 137, 74, 70, 127, + 249, 124, 180, 50, 9, 75, 214, 115, 119, 19, 7, 201, 211, 255, 28, 137, 242, 70, 44, 75, 47, 113, 74, 187, 75, + 246, 182, 37, 221, 188, 215, 234, 159, 115, 232, 97, 67, 235, 98, 118, 255, 159, 75, 13, 190, 63, 127, 24, 130, + 157, 213, 30, 170, 147, 75, 245, 38, 56, 138, 255, 115, 218, 251, 243, 80, 26, 255, 75, 35, 151, 229, 215, 7, 72, + 115, 61, 133, 85, 95, 255, 255, 159, 66, 51, 207, 128, 255, 27, 132, 252, 24, 5, 42, 64, 69, 141, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3020, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5058640097698150664" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12013096595754600413" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4554506251363259235" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8553591458651915115" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1c53df9e" + }, + { + "_tag": "ByteArray", + "bytearray": "ec21f076d81b9406" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7577460414233289114" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10504437682631571492" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10725748082103001101" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bd6e89fe" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16210199798797509942" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3802100025762516191" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13681297784094326152" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a8e2e124431" + }, + { + "_tag": "ByteArray", + "bytearray": "165dd67f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f6ebbeb6df4bb62f0040" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6341473532984742763" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13553743018328793356" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6825260434629321458" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13836246434357478099" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12684452675573037840" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55b5c57165bed00cfa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16191212341173064313" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17458593320268023404" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17687714104860277190" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8824306800976824153" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b4633e65df5d879089f1ba6b717b4aa6847ddd8669f1b3f34db4e07cd93639fd8669f1b76b4761cdec3436b9f441c53df9e48ec21f076d81b94061b69288c1981f5a19a1b91c7426ade7b78241b94d9830da013a00dffff44bd6e89fed8669f1be0f632d4e96f25369f1b34c3c5d43c140cdf411f1bbdddbbd91747fd88460a8e2e12443144165dd67fffff4af6ebbeb6df4bb62f00401b580170946618d36bffffd8669f1bbc189176e06b210c9fbf1b5eb83234199be2f21bc00438d310a482d31bb0083a80d9c8bb104955b5c57165bed00cfa1be0b2bdd6ee8a92791bf24962200c95466c1bf5776243ccdcf9c61b7a763c4845498759ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 70, 51, 230, 93, 245, 216, 121, 8, 159, 27, 166, 183, 23, 180, 170, 104, 71, 221, 216, 102, + 159, 27, 63, 52, 219, 78, 7, 205, 147, 99, 159, 216, 102, 159, 27, 118, 180, 118, 28, 222, 195, 67, 107, 159, 68, + 28, 83, 223, 158, 72, 236, 33, 240, 118, 216, 27, 148, 6, 27, 105, 40, 140, 25, 129, 245, 161, 154, 27, 145, 199, + 66, 106, 222, 123, 120, 36, 27, 148, 217, 131, 13, 160, 19, 160, 13, 255, 255, 68, 189, 110, 137, 254, 216, 102, + 159, 27, 224, 246, 50, 212, 233, 111, 37, 54, 159, 27, 52, 195, 197, 212, 60, 20, 12, 223, 65, 31, 27, 189, 221, + 187, 217, 23, 71, 253, 136, 70, 10, 142, 46, 18, 68, 49, 68, 22, 93, 214, 127, 255, 255, 74, 246, 235, 190, 182, + 223, 75, 182, 47, 0, 64, 27, 88, 1, 112, 148, 102, 24, 211, 107, 255, 255, 216, 102, 159, 27, 188, 24, 145, 118, + 224, 107, 33, 12, 159, 191, 27, 94, 184, 50, 52, 25, 155, 226, 242, 27, 192, 4, 56, 211, 16, 164, 130, 211, 27, + 176, 8, 58, 128, 217, 200, 187, 16, 73, 85, 181, 197, 113, 101, 190, 208, 12, 250, 27, 224, 178, 189, 214, 238, + 138, 146, 121, 27, 242, 73, 98, 32, 12, 149, 70, 108, 27, 245, 119, 98, 67, 204, 220, 249, 198, 27, 122, 118, 60, + 72, 69, 73, 135, 89, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3021, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ae" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ca59a385bd16" + } + ] + }, + "cborHex": "d905029f41ae9f0cffa046ca59a385bd16ff", + "cborBytes": [217, 5, 2, 159, 65, 174, 159, 12, 255, 160, 70, 202, 89, 163, 133, 189, 22, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3022, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4581686511356063161" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15539504177723044583" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d5cca09" + }, + { + "_tag": "ByteArray", + "bytearray": "91c0796a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5723229683762452482" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16068675060305748931" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17223666906510410448" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8525412408382128679" + } + }, + { + "_tag": "ByteArray", + "bytearray": "839517f702" + }, + { + "_tag": "ByteArray", + "bytearray": "1013a1615baa7c028287de0a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4071143707591350727" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9060438205989509273" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1564537324480683902" + } + }, + { + "_tag": "ByteArray", + "bytearray": "326b49390f6164109b0a51" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13132116272937141302" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ca72eefe99063366b167a50" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3f956b9b7593adb99f9f80d8669f1bd7a768b7c2e172e79f442d5cca094491c0796a1b4f6cff130ca1d802ffffff9fd8669f1bdeff66d4f4b3e3c39f1bef06c1cbec3442d01b7650596a7553022745839517f7024c1013a1615baa7c028287de0a1b387f9ba1d88c99c7ffff809f1b7dbd248b4961d8991b15b65a684782df7e4b326b49390f6164109b0a51ffffbf1bb63ea62c5d8b84364c8ca72eefe99063366b167a50ffffff", + "cborBytes": [ + 216, 102, 159, 27, 63, 149, 107, 155, 117, 147, 173, 185, 159, 159, 128, 216, 102, 159, 27, 215, 167, 104, 183, + 194, 225, 114, 231, 159, 68, 45, 92, 202, 9, 68, 145, 192, 121, 106, 27, 79, 108, 255, 19, 12, 161, 216, 2, 255, + 255, 255, 159, 216, 102, 159, 27, 222, 255, 102, 212, 244, 179, 227, 195, 159, 27, 239, 6, 193, 203, 236, 52, 66, + 208, 27, 118, 80, 89, 106, 117, 83, 2, 39, 69, 131, 149, 23, 247, 2, 76, 16, 19, 161, 97, 91, 170, 124, 2, 130, + 135, 222, 10, 27, 56, 127, 155, 161, 216, 140, 153, 199, 255, 255, 128, 159, 27, 125, 189, 36, 139, 73, 97, 216, + 153, 27, 21, 182, 90, 104, 71, 130, 223, 126, 75, 50, 107, 73, 57, 15, 97, 100, 16, 155, 10, 81, 255, 255, 191, + 27, 182, 62, 166, 44, 93, 139, 132, 54, 76, 140, 167, 46, 239, 233, 144, 99, 54, 107, 22, 122, 80, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3023, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2933796389274974775" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16726456070954461289" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fd2c61844ffe0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d3bdf" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "18f2c6" + } + ] + }, + "cborHex": "d8669f1b28b6f045aa0efa379fd8669f1be8204f2d0c6aa86980ffbf471fd2c61844ffe0437d3bdfff804318f2c6ffff", + "cborBytes": [ + 216, 102, 159, 27, 40, 182, 240, 69, 170, 14, 250, 55, 159, 216, 102, 159, 27, 232, 32, 79, 45, 12, 106, 168, 105, + 128, 255, 191, 71, 31, 210, 198, 24, 68, 255, 224, 67, 125, 59, 223, 255, 128, 67, 24, 242, 198, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3024, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7497737648967280302" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3372355624527290063" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e3dba5e5330812f2b1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17180375504145210918" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02fd0004" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8069996324241993153" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac24c0d8faaf50" + } + ] + }, + "cborHex": "d8669f1b680d50aac1c466ae9f9f9f1b2ecd0392b03d5ecf49e3dba5e5330812f2b11bee6cf47ed865de26ffff4402fd00041b6ffe62e67526edc147ac24c0d8faaf50ffff", + "cborBytes": [ + 216, 102, 159, 27, 104, 13, 80, 170, 193, 196, 102, 174, 159, 159, 159, 27, 46, 205, 3, 146, 176, 61, 94, 207, 73, + 227, 219, 165, 229, 51, 8, 18, 242, 177, 27, 238, 108, 244, 126, 216, 101, 222, 38, 255, 255, 68, 2, 253, 0, 4, + 27, 111, 254, 98, 230, 117, 38, 237, 193, 71, 172, 36, 192, 216, 250, 175, 80, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3025, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14597264530820183632" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4365613716706046597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1013299263210012653" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16759563442666995438" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "208398dcd1186cf03d5c4f05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18055036342400604163" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ca51fcabc7f106fec96ab" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0506850202d93c" + } + ] + }, + "cborHex": "d8669f1bca93e6c04bf236509fbf1b3c95c68b9ad632851b0e0ff64faacc3fed1be895ee27b6c9feee4c208398dcd1186cf03d5c4f051bfa905fe4cb8e58034b5ca51fcabc7f106fec96abff470506850202d93cffff", + "cborBytes": [ + 216, 102, 159, 27, 202, 147, 230, 192, 75, 242, 54, 80, 159, 191, 27, 60, 149, 198, 139, 154, 214, 50, 133, 27, + 14, 15, 246, 79, 170, 204, 63, 237, 27, 232, 149, 238, 39, 182, 201, 254, 238, 76, 32, 131, 152, 220, 209, 24, + 108, 240, 61, 92, 79, 5, 27, 250, 144, 95, 228, 203, 142, 88, 3, 75, 92, 165, 31, 202, 188, 127, 16, 111, 236, + 150, 171, 255, 71, 5, 6, 133, 2, 2, 217, 60, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3026, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10208148623274890210" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f849d466181bdf3978cd" + }, + { + "_tag": "ByteArray", + "bytearray": "03385897" + }, + { + "_tag": "ByteArray", + "bytearray": "576486737379ec9c62212990" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9fd8669f1b8daaa11678b153e29f9f144af849d466181bdf3978cd44033858974c576486737379ec9c622129900affffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 216, 102, 159, 27, 141, 170, 161, 22, 120, 177, + 83, 226, 159, 159, 20, 74, 248, 73, 212, 102, 24, 27, 223, 57, 120, 205, 68, 3, 56, 88, 151, 76, 87, 100, 134, + 115, 115, 121, 236, 156, 98, 33, 41, 144, 10, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3027, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3003387882160139561" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12513152781083398424" + } + } + ] + }, + "cborHex": "d8669f1b29ae2d5dbede2d299f1bada7a62828aad118ffff", + "cborBytes": [ + 216, 102, 159, 27, 41, 174, 45, 93, 190, 222, 45, 41, 159, 27, 173, 167, 166, 40, 40, 170, 209, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3028, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2511684155692333328" + }, + "fields": [] + }, + "cborHex": "d8669f1b22db4b6ea004b91080ff", + "cborBytes": [216, 102, 159, 27, 34, 219, 75, 110, 160, 4, 185, 16, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3029, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "572738344691286211" + }, + "fields": [] + }, + "cborHex": "d8669f1b07f2c67d7091c0c380ff", + "cborBytes": [216, 102, 159, 27, 7, 242, 198, 125, 112, 145, 192, 195, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3030, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17701683277908256195" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14468710828689141406" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8873758500099552463" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "64fae011" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f9962f5066b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c7c16cc4922e2792a61" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f605d286f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25c5f1" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "56b487" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17172845281877216361" + } + } + ] + }, + "cborHex": "d8669f1bf5a903275a31a5c39fd8669f1bc8cb2fd715dd2e9e9f1b7b25ec57350974cfbf4464fae011464f9962f5066b41e04a6c7c16cc4922e2792a6145f605d286f74325c5f1ff4356b487ffff1bee5233cc5908cc69ffff", + "cborBytes": [ + 216, 102, 159, 27, 245, 169, 3, 39, 90, 49, 165, 195, 159, 216, 102, 159, 27, 200, 203, 47, 215, 21, 221, 46, 158, + 159, 27, 123, 37, 236, 87, 53, 9, 116, 207, 191, 68, 100, 250, 224, 17, 70, 79, 153, 98, 245, 6, 107, 65, 224, 74, + 108, 124, 22, 204, 73, 34, 226, 121, 42, 97, 69, 246, 5, 210, 134, 247, 67, 37, 197, 241, 255, 67, 86, 180, 135, + 255, 255, 27, 238, 82, 51, 204, 89, 8, 204, 105, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3031, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ec3f770fe2ed53de751831" + }, + { + "_tag": "ByteArray", + "bytearray": "17cf51" + }, + { + "_tag": "ByteArray", + "bytearray": "a1271e63811d06175b7170" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14639157554284297074" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9f4bec3f770fe2ed53de7518314317cf514ba1271e63811d06175b71701bcb28bc3bea177b72ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 75, 236, 63, 119, 15, 226, 237, 83, 222, 117, 24, + 49, 67, 23, 207, 81, 75, 161, 39, 30, 99, 129, 29, 6, 23, 91, 113, 112, 27, 203, 40, 188, 59, 234, 23, 123, 114, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3032, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13280354809745298611" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f131bb84d4c564e04d4b3ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 19, 27, 184, 77, 76, 86, 78, 4, 212, 179, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3033, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13284520956140470661" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "99a0ddf5f0" + } + ] + }, + "cborHex": "d8669f1bb85c196cd9fc41859f4599a0ddf5f0ffff", + "cborBytes": [216, 102, 159, 27, 184, 92, 25, 108, 217, 252, 65, 133, 159, 69, 153, 160, 221, 245, 240, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3034, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7f274642b595" + }, + { + "_tag": "ByteArray", + "bytearray": "ea3e3be9adf1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10046346619248300216" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a218804f181ef0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6331737251419887911" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ee1e" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "82a45603544b34" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f9f467f274642b59546ea3e3be9adf11b8b6bcb05babdd0b8bf484a218804f181ef0f1b57ded97bb1fd9927ff42ee1eff4782a45603544b340bffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 159, 70, 127, 39, 70, 66, 181, 149, 70, 234, 62, + 59, 233, 173, 241, 27, 139, 107, 203, 5, 186, 189, 208, 184, 191, 72, 74, 33, 136, 4, 241, 129, 239, 15, 27, 87, + 222, 217, 123, 177, 253, 153, 39, 255, 66, 238, 30, 255, 71, 130, 164, 86, 3, 84, 75, 52, 11, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3035, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "38adad4faeb4b9f0543fee" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12354502110586350106" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13625832009587652244" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "421da0c08192812cf607" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4649858973952276689" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f26cf87a716b3270989" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10656878193452687613" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "172572112911808481" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cfe7553053" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9264977710146048167" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15539535662689449589" + } + }, + { + "_tag": "ByteArray", + "bytearray": "60f5f9cc" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6456583915250392397" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14564027025125927830" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "519823490644407279" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6596f72a4bf4fd79ed" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16562739664966612156" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8676795302469556180" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7592043374581425245" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7965728212361226967" + } + } + ] + }, + "cborHex": "d9050b9f4b38adad4faeb4b9f0543feed8669f1bab7402366e502a1a9fbf410a1bbd18ae051c9e76944a421da0c08192812cf6071b40879e19ce1678d14a4f26cf87a716b32709891b93e4d6411f5aa0fdff9f1b0265196c203f37e145cfe75530531b8093d023b12ad0a71bd7a7855a6d1e76754460f5f9ccff1b599a64dccb001d4dd8669f1bca1dd16a73d1eb969f1b0736c8b5e9c373ef496596f72a4bf4fd79edffff1be5daabf8dd9b74bcffff1b786a2b5b2079d7d4d8669f1b695c5b398d48a45d80ff1b6e8bf39adb192ad7ff", + "cborBytes": [ + 217, 5, 11, 159, 75, 56, 173, 173, 79, 174, 180, 185, 240, 84, 63, 238, 216, 102, 159, 27, 171, 116, 2, 54, 110, + 80, 42, 26, 159, 191, 65, 10, 27, 189, 24, 174, 5, 28, 158, 118, 148, 74, 66, 29, 160, 192, 129, 146, 129, 44, + 246, 7, 27, 64, 135, 158, 25, 206, 22, 120, 209, 74, 79, 38, 207, 135, 167, 22, 179, 39, 9, 137, 27, 147, 228, + 214, 65, 31, 90, 160, 253, 255, 159, 27, 2, 101, 25, 108, 32, 63, 55, 225, 69, 207, 231, 85, 48, 83, 27, 128, 147, + 208, 35, 177, 42, 208, 167, 27, 215, 167, 133, 90, 109, 30, 118, 117, 68, 96, 245, 249, 204, 255, 27, 89, 154, + 100, 220, 203, 0, 29, 77, 216, 102, 159, 27, 202, 29, 209, 106, 115, 209, 235, 150, 159, 27, 7, 54, 200, 181, 233, + 195, 115, 239, 73, 101, 150, 247, 42, 75, 244, 253, 121, 237, 255, 255, 27, 229, 218, 171, 248, 221, 155, 116, + 188, 255, 255, 27, 120, 106, 43, 91, 32, 121, 215, 212, 216, 102, 159, 27, 105, 92, 91, 57, 141, 72, 164, 93, 128, + 255, 27, 110, 139, 243, 154, 219, 25, 42, 215, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3036, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3046009907528355159" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4758494995028337808" + } + }, + { + "_tag": "ByteArray", + "bytearray": "370460648a177c73" + } + ] + }, + "cborHex": "d8669f1b2a4599df588c4d579f1b420991fc8423649048370460648a177c73ffff", + "cborBytes": [ + 216, 102, 159, 27, 42, 69, 153, 223, 88, 140, 77, 87, 159, 27, 66, 9, 145, 252, 132, 35, 100, 144, 72, 55, 4, 96, + 100, 138, 23, 124, 115, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3037, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12066010490008003564" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5e335603c0160f0ed8" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d0b14b6df3d88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5393721839678179423" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8558af09fedee9fad8838e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1d98f8a6ae8b8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bc975686070c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12373884671839493497" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f14ac3a4fbb9ce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ea90ad3aa59b6720dcdc1a6" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a688a6f0b38e0b464e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14476465254862092393" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5644793696386155761" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7008873045617199469" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6749696b18a1ac94909b48" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17978262865716300190" + } + }, + { + "_tag": "ByteArray", + "bytearray": "838f384f00a0" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9c61b1e2dd2229c6cb242" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d539bf90d665da680" + } + } + ] + } + ] + }, + "cborHex": "d87a9fd8669f1ba773149cb91063ec9f495e335603c0160f0ed8ffffbf475d0b14b6df3d881b4ada596f9f48c85f4b8558af09fedee9fad8838e47d1d98f8a6ae8b8478bc975686070c81babb8de8ca4a4dd7947f14ac3a4fbb9ce4c1ea90ad3aa59b6720dcdc1a6ff9f49a688a6f0b38e0b464ed8669f1bc8e6bc731f56f8699f1b4e5655f59f7604f11b614484e67fd2c96d4b6749696b18a1ac94909b481bf97f9ed2cd9dc99e46838f384f00a0ffffffbf4be9c61b1e2dd2229c6cb242491d539bf90d665da680ffff", + "cborBytes": [ + 216, 122, 159, 216, 102, 159, 27, 167, 115, 20, 156, 185, 16, 99, 236, 159, 73, 94, 51, 86, 3, 192, 22, 15, 14, + 216, 255, 255, 191, 71, 93, 11, 20, 182, 223, 61, 136, 27, 74, 218, 89, 111, 159, 72, 200, 95, 75, 133, 88, 175, + 9, 254, 222, 233, 250, 216, 131, 142, 71, 209, 217, 143, 138, 106, 232, 184, 71, 139, 201, 117, 104, 96, 112, 200, + 27, 171, 184, 222, 140, 164, 164, 221, 121, 71, 241, 74, 195, 164, 251, 185, 206, 76, 30, 169, 10, 211, 170, 89, + 182, 114, 13, 205, 193, 166, 255, 159, 73, 166, 136, 166, 240, 179, 142, 11, 70, 78, 216, 102, 159, 27, 200, 230, + 188, 115, 31, 86, 248, 105, 159, 27, 78, 86, 85, 245, 159, 118, 4, 241, 27, 97, 68, 132, 230, 127, 210, 201, 109, + 75, 103, 73, 105, 107, 24, 161, 172, 148, 144, 155, 72, 27, 249, 127, 158, 210, 205, 157, 201, 158, 70, 131, 143, + 56, 79, 0, 160, 255, 255, 255, 191, 75, 233, 198, 27, 30, 45, 210, 34, 156, 108, 178, 66, 73, 29, 83, 155, 249, + 13, 102, 93, 166, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3038, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17021238804646482761" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15308754783168486778" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0d25e5c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a5c06885f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "023db394" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f6a20d83de2ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cd07614b2c2cd89" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cfb48cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1318816486953284737" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95d095dcb160f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12105267210097906569" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8208167141829234783" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2960480590051769944" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1306998912563394323" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1787832269958396095" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5546" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a185432" + }, + { + "_tag": "ByteArray", + "bytearray": "3f7762bf26" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3500949370418468820" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bec379682ac0c53499f9fd8669f1bd4739f5db451dd7a9f44c0d25e5cffffbf451a5c06885f44023db394472f6a20d83de2ae482cd07614b2c2cd89448cfb48cf1b124d609b84c774814795d095dcb160f41ba7fe8c642111d389ffd8669f1b71e94486d9c3d05f9f1b2915bd694e797e581b122364961129b7131b18cfa7fa28d9b8bf425546ffff9f449a185432453f7762bf26ff1b3095dee7506b97d4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 236, 55, 150, 130, 172, 12, 83, 73, 159, 159, 216, 102, 159, 27, 212, 115, 159, 93, 180, 81, + 221, 122, 159, 68, 192, 210, 94, 92, 255, 255, 191, 69, 26, 92, 6, 136, 95, 68, 2, 61, 179, 148, 71, 47, 106, 32, + 216, 61, 226, 174, 72, 44, 208, 118, 20, 178, 194, 205, 137, 68, 140, 251, 72, 207, 27, 18, 77, 96, 155, 132, 199, + 116, 129, 71, 149, 208, 149, 220, 177, 96, 244, 27, 167, 254, 140, 100, 33, 17, 211, 137, 255, 216, 102, 159, 27, + 113, 233, 68, 134, 217, 195, 208, 95, 159, 27, 41, 21, 189, 105, 78, 121, 126, 88, 27, 18, 35, 100, 150, 17, 41, + 183, 19, 27, 24, 207, 167, 250, 40, 217, 184, 191, 66, 85, 70, 255, 255, 159, 68, 154, 24, 84, 50, 69, 63, 119, + 98, 191, 38, 255, 27, 48, 149, 222, 231, 80, 107, 151, 212, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3039, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18424550580564453504" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5401196673343742591" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0807cdc911" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17016750241080446026" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14acd1d0f0d2d571" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2781782858740351141" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13430844228406510782" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11373907326143608010" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d671a6486944b40fbe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0490330099" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8a7d2aab8f9fa988b9633e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ef47ff083dcb16a6ad229" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8830ba51d2d6ba79fb9bf777" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "44" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13666590753658347824" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1cf99d630e272f" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bdd967a97c900b215b9bf7af" + } + ] + }, + "cborHex": "d8669f1bffb12722b4c2e8809fd8669f1b4af4e7c1f4ace27f9f450807cdc911a01bec27a42f87248c4abf4814acd1d0f0d2d5711b269ae0c5817d40a541931bba63f1aa83c684be41a31b9dd83c739b00b4ca49d671a6486944b40fbe4504903300994cf8a7d2aab8f9fa988b9633e54b0ef47ff083dcb16a6ad229ff4c8830ba51d2d6ba79fb9bf777ffff4144d8669f1bbda97be1ba71a1309f471cf99d630e272fa0ffff4cbdd967a97c900b215b9bf7afffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 177, 39, 34, 180, 194, 232, 128, 159, 216, 102, 159, 27, 74, 244, 231, 193, 244, 172, 226, + 127, 159, 69, 8, 7, 205, 201, 17, 160, 27, 236, 39, 164, 47, 135, 36, 140, 74, 191, 72, 20, 172, 209, 208, 240, + 210, 213, 113, 27, 38, 154, 224, 197, 129, 125, 64, 165, 65, 147, 27, 186, 99, 241, 170, 131, 198, 132, 190, 65, + 163, 27, 157, 216, 60, 115, 155, 0, 180, 202, 73, 214, 113, 166, 72, 105, 68, 180, 15, 190, 69, 4, 144, 51, 0, + 153, 76, 248, 167, 210, 170, 184, 249, 250, 152, 139, 150, 51, 229, 75, 14, 244, 127, 240, 131, 220, 177, 106, + 106, 210, 41, 255, 76, 136, 48, 186, 81, 210, 214, 186, 121, 251, 155, 247, 119, 255, 255, 65, 68, 216, 102, 159, + 27, 189, 169, 123, 225, 186, 113, 161, 48, 159, 71, 28, 249, 157, 99, 14, 39, 47, 160, 255, 255, 76, 189, 217, + 103, 169, 124, 144, 11, 33, 91, 155, 247, 175, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3040, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10857674098223429350" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fcfc28051d862a04" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9459924364577982649" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1aa3acf534eab9b1e722743d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6185762956074702166" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "724842099375043311" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eb" + }, + { + "_tag": "ByteArray", + "bytearray": "30dc" + }, + { + "_tag": "ByteArray", + "bytearray": "593ffe9044a6ef210c1f" + }, + { + "_tag": "ByteArray", + "bytearray": "67bdccf7" + }, + { + "_tag": "ByteArray", + "bytearray": "1af6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12227804901272897682" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "959b8820b00f9e151e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17895583990219330997" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "239df6d22cde44b5acac5d" + } + ] + } + ] + }, + "cborHex": "d8669f1b96ae3510df9136e69f48fcfc28051d862a049f9f1b83486716b8bbc8b94c1aa3acf534eab9b1e722743dff1b55d83ea28d9a5556d8669f1b0a0f280c8b7f72ef9f41eb4230dc4a593ffe9044a6ef210c1f4467bdccf7421af6ffff1ba9b1e3c5a326c892ff9fd9050d9f49959b8820b00f9e151e1bf859e2d30130d5b5ff4b239df6d22cde44b5acac5dffffff", + "cborBytes": [ + 216, 102, 159, 27, 150, 174, 53, 16, 223, 145, 54, 230, 159, 72, 252, 252, 40, 5, 29, 134, 42, 4, 159, 159, 27, + 131, 72, 103, 22, 184, 187, 200, 185, 76, 26, 163, 172, 245, 52, 234, 185, 177, 231, 34, 116, 61, 255, 27, 85, + 216, 62, 162, 141, 154, 85, 86, 216, 102, 159, 27, 10, 15, 40, 12, 139, 127, 114, 239, 159, 65, 235, 66, 48, 220, + 74, 89, 63, 254, 144, 68, 166, 239, 33, 12, 31, 68, 103, 189, 204, 247, 66, 26, 246, 255, 255, 27, 169, 177, 227, + 197, 163, 38, 200, 146, 255, 159, 217, 5, 13, 159, 73, 149, 155, 136, 32, 176, 15, 158, 21, 30, 27, 248, 89, 226, + 211, 1, 48, 213, 181, 255, 75, 35, 157, 246, 210, 44, 222, 68, 181, 172, 172, 93, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3041, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11690940254801013698" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d3f9909cbc7bad97db261a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12695524623121684728" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1407359095565135130" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c36ebf64a37307ee9cf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4846837501766679303" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93ff46" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5862157481343704466" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7dec77861d97d99ceb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11610023592481994144" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98b9" + } + } + ] + } + ] + }, + "cborHex": "d905099fd8669f1ba23e903871baabc29f4bd3f9909cbc7bad97db261a1bb02f9061866498f8ffffbf1b1387f1a412932d1a4a6c36ebf64a37307ee9cf1b43436d0738d83b074393ff461b515a912b94e3dd92497dec77861d97d99ceb1ba11f16f1dfcb35a04298b9ffff", + "cborBytes": [ + 217, 5, 9, 159, 216, 102, 159, 27, 162, 62, 144, 56, 113, 186, 171, 194, 159, 75, 211, 249, 144, 156, 188, 123, + 173, 151, 219, 38, 26, 27, 176, 47, 144, 97, 134, 100, 152, 248, 255, 255, 191, 27, 19, 135, 241, 164, 18, 147, + 45, 26, 74, 108, 54, 235, 246, 74, 55, 48, 126, 233, 207, 27, 67, 67, 109, 7, 56, 216, 59, 7, 67, 147, 255, 70, + 27, 81, 90, 145, 43, 148, 227, 221, 146, 73, 125, 236, 119, 134, 29, 151, 217, 156, 235, 27, 161, 31, 22, 241, + 223, 203, 53, 160, 66, 152, 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3042, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2008985267806279467" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6987772637529588502" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0809784c0f9c054e9b67" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6585478813585645134" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9492767763226608622" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4cf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5796f4afe0a14f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13576855200951524922" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "598473068755592073" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18052494906436220152" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "894582418404126235" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c32d5ea37c8f79ead5486d18" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "985020575812190138" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1217971ad2b7e8c9d7a66c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12053417288864590830" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e09606" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13187816277028151374" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16563654652690221153" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16984387595459531170" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b1be15974fe96172b9f1b60f98e30e72543169f4a0809784c0f9c054e9b67ffbf1b5b645216efa21e4e41fe1b83bd15fc5e66c3ee42a4cf475796f4afe0a14f1bbc6aaddf3ba15e3affbf1b084e3415ced0a3891bfa8758789fadf4f81b0c6a31f84749ae1b4cc32d5ea37c8f79ead5486d181b0dab7efeadbc7fba4b1217971ad2b7e8c9d7a66c1ba746572998536bee43e096061bb70489082b60a04e1be5ddec260bd8c8611bebb4aa87eaea91a24132ffffff", + "cborBytes": [ + 216, 102, 159, 27, 27, 225, 89, 116, 254, 150, 23, 43, 159, 27, 96, 249, 142, 48, 231, 37, 67, 22, 159, 74, 8, 9, + 120, 76, 15, 156, 5, 78, 155, 103, 255, 191, 27, 91, 100, 82, 22, 239, 162, 30, 78, 65, 254, 27, 131, 189, 21, + 252, 94, 102, 195, 238, 66, 164, 207, 71, 87, 150, 244, 175, 224, 161, 79, 27, 188, 106, 173, 223, 59, 161, 94, + 58, 255, 191, 27, 8, 78, 52, 21, 206, 208, 163, 137, 27, 250, 135, 88, 120, 159, 173, 244, 248, 27, 12, 106, 49, + 248, 71, 73, 174, 27, 76, 195, 45, 94, 163, 124, 143, 121, 234, 213, 72, 109, 24, 27, 13, 171, 126, 254, 173, 188, + 127, 186, 75, 18, 23, 151, 26, 210, 183, 232, 201, 215, 166, 108, 27, 167, 70, 87, 41, 152, 83, 107, 238, 67, 224, + 150, 6, 27, 183, 4, 137, 8, 43, 96, 160, 78, 27, 229, 221, 236, 38, 11, 216, 200, 97, 27, 235, 180, 170, 135, 234, + 234, 145, 162, 65, 50, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3043, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1413548596759489432" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9fd8669f1b139deef59e99eb9880ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 216, 102, 159, 27, 19, 157, 238, 245, 158, 153, + 235, 152, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3044, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6936354573787140720" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10956108940040836148" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "27116835523249972" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18276377910974987938" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15355814619172362319" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12622427633887614110" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b6445ac0f07ca28" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50022c401a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c503cb5dc85f8b29f53c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1592609766818541741" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b6042e1bc06bd12709f1bfffffffffffffff79f1b980beb08739d9434a00abf1b0060569e44cbc7341bfda2bce0ac75bea21bd51ad0099c84d84f1baf2bdf0e78f2149e486b6445ac0f07ca284550022c401a4ac503cb5dc85f8b29f53c1b161a1625190970adffffffff", + "cborBytes": [ + 216, 102, 159, 27, 96, 66, 225, 188, 6, 189, 18, 112, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 27, + 152, 11, 235, 8, 115, 157, 148, 52, 160, 10, 191, 27, 0, 96, 86, 158, 68, 203, 199, 52, 27, 253, 162, 188, 224, + 172, 117, 190, 162, 27, 213, 26, 208, 9, 156, 132, 216, 79, 27, 175, 43, 223, 14, 120, 242, 20, 158, 72, 107, 100, + 69, 172, 15, 7, 202, 40, 69, 80, 2, 44, 64, 26, 74, 197, 3, 203, 93, 200, 95, 139, 41, 245, 60, 27, 22, 26, 22, + 37, 25, 9, 112, 173, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3045, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a159dad8a864" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e9ede748b1d39df779b81ef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "104b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdfa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f85ca2c81735" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "39f879" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1fd3006fbf906780101" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40dd84f84d2a1aaf92dd" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f46a159dad8a864bf4c2e9ede748b1d39df779b81ef42104b42bdfa46f85ca2c81735ff4339f879bf1bffffffffffffffeb004aa1fd3006fbf9067801014a40dd84f84d2a1aaf92ddffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 70, 161, 89, 218, 216, 168, 100, 191, 76, 46, 158, + 222, 116, 139, 29, 57, 223, 119, 155, 129, 239, 66, 16, 75, 66, 189, 250, 70, 248, 92, 162, 200, 23, 53, 255, 67, + 57, 248, 121, 191, 27, 255, 255, 255, 255, 255, 255, 255, 235, 0, 74, 161, 253, 48, 6, 251, 249, 6, 120, 1, 1, 74, + 64, 221, 132, 248, 77, 42, 26, 175, 146, 221, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3046, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8652265195634027193" + }, + "fields": [] + }, + "cborHex": "d8669f1b7813055a903deab980ff", + "cborBytes": [216, 102, 159, 27, 120, 19, 5, 90, 144, 61, 234, 185, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3047, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6650628778893600488" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18076414809633521654" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13317202010321285065" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5891631391593378754" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3965659369833410697" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6836614278791136853" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e093" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11714689431394307239" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14908375378862311168" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12300902938707666227" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "765b045e19cb4ca29d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17504207874099320004" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15502568647853808257" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17840445647541075502" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14796478340101083707" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2699416087456087382" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3270393c99458263a6c4e66b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13091643245243498195" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aeb3b2f144b76b3479" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6adfbbb2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2872395570078157530" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2b5f3805207743011" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6352803401970655804" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2626045422739218131" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3995221390707511927" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8676984660773187627" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d8d44b4fb94b286" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11116849894921514622" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10388252639386803701" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11908476114047640973" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5b7e8c3b5414376" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11517609961881653017" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d1763e9f51528e81f0a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3190633949605512580" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af107711d1" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b5c4bc7a34af166e89fd8669f1bfadc537f14d0fff680ff9f1bb8d034abbb516fc9ff1b51c347891376b3c2d8669f1b3708da2f971eb0899fa0bf1b5ee08876f1b5865542e0931ba292eff88447cca71bcee5306b4b4487001baab5960cbe3aa53349765b045e19cb4ca29d1bf2eb7051fa4914c41bd724300c916f1a811bf795fecb30597e2e1bcd57a6a7bc7c923bffbf1b257640a121cb7d564c3270393c99458263a6c4e66b1bb5aedc2b46e17ed349aeb3b2f144b76b3479446adfbbb21b27dccc8d68ea0ada49a2b5f38052077430111b5829b109165aa23cffbf1b247196660a695ed31b3771e0aff029d2771b786ad7938ae6302b487d8d44b4fb94b2861b9a46fc147022ae7e1b902a7cbc77aa1df51ba54367ee9208a58d48d5b7e8c3b5414376ffd8669f1b9fd6c53cc774cf199f4ad1763e9f51528e81f0a71b2c4768ac2689c58445af107711d1ffffffff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 92, 75, 199, 163, 74, 241, 102, 232, 159, 216, 102, 159, 27, 250, 220, 83, 127, 20, 208, 255, + 246, 128, 255, 159, 27, 184, 208, 52, 171, 187, 81, 111, 201, 255, 27, 81, 195, 71, 137, 19, 118, 179, 194, 216, + 102, 159, 27, 55, 8, 218, 47, 151, 30, 176, 137, 159, 160, 191, 27, 94, 224, 136, 118, 241, 181, 134, 85, 66, 224, + 147, 27, 162, 146, 239, 248, 132, 71, 204, 167, 27, 206, 229, 48, 107, 75, 68, 135, 0, 27, 170, 181, 150, 12, 190, + 58, 165, 51, 73, 118, 91, 4, 94, 25, 203, 76, 162, 157, 27, 242, 235, 112, 81, 250, 73, 20, 196, 27, 215, 36, 48, + 12, 145, 111, 26, 129, 27, 247, 149, 254, 203, 48, 89, 126, 46, 27, 205, 87, 166, 167, 188, 124, 146, 59, 255, + 191, 27, 37, 118, 64, 161, 33, 203, 125, 86, 76, 50, 112, 57, 60, 153, 69, 130, 99, 166, 196, 230, 107, 27, 181, + 174, 220, 43, 70, 225, 126, 211, 73, 174, 179, 178, 241, 68, 183, 107, 52, 121, 68, 106, 223, 187, 178, 27, 39, + 220, 204, 141, 104, 234, 10, 218, 73, 162, 181, 243, 128, 82, 7, 116, 48, 17, 27, 88, 41, 177, 9, 22, 90, 162, 60, + 255, 191, 27, 36, 113, 150, 102, 10, 105, 94, 211, 27, 55, 113, 224, 175, 240, 41, 210, 119, 27, 120, 106, 215, + 147, 138, 230, 48, 43, 72, 125, 141, 68, 180, 251, 148, 178, 134, 27, 154, 70, 252, 20, 112, 34, 174, 126, 27, + 144, 42, 124, 188, 119, 170, 29, 245, 27, 165, 67, 103, 238, 146, 8, 165, 141, 72, 213, 183, 232, 195, 181, 65, + 67, 118, 255, 216, 102, 159, 27, 159, 214, 197, 60, 199, 116, 207, 25, 159, 74, 209, 118, 62, 159, 81, 82, 142, + 129, 240, 167, 27, 44, 71, 104, 172, 38, 137, 197, 132, 69, 175, 16, 119, 17, 209, 255, 255, 255, 255, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3048, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9677439366238569708" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15027459912460783745" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4227005158029408523" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13686860967199232270" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3280043140115494041" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13288045170825863197" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ed869" + }, + { + "_tag": "ByteArray", + "bytearray": "39047d695547c867" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4767831367009202943" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c5d047eed17be455f3ba4d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6afcc17515" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13881116058658919882" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24b81736c27c64344b5bf8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f5f022361346a6e3f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "412d58c8553a961d2ba359aa" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49fd8669f1b864d2bd4900804ec9f1bd08c432be6a5d081d8669f1b3aa956cbac16390b9f1bbdf17f889811d10e1b2d850ddb868a74991bb8689eae066ba01d434ed8694839047d695547c867ffffd8669f1b422abd5e038c72ff80ff4bc5d047eed17be455f3ba4dffff456afcc17515d8669f1bc0a3a1829255d5ca80ffbf4b24b81736c27c64344b5bf8498f5f022361346a6e3f4273b14c412d58c8553a961d2ba359aaffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 216, 102, 159, 27, 134, 77, 43, 212, 144, 8, 4, + 236, 159, 27, 208, 140, 67, 43, 230, 165, 208, 129, 216, 102, 159, 27, 58, 169, 86, 203, 172, 22, 57, 11, 159, 27, + 189, 241, 127, 136, 152, 17, 209, 14, 27, 45, 133, 13, 219, 134, 138, 116, 153, 27, 184, 104, 158, 174, 6, 107, + 160, 29, 67, 78, 216, 105, 72, 57, 4, 125, 105, 85, 71, 200, 103, 255, 255, 216, 102, 159, 27, 66, 42, 189, 94, 3, + 140, 114, 255, 128, 255, 75, 197, 208, 71, 238, 209, 123, 228, 85, 243, 186, 77, 255, 255, 69, 106, 252, 193, 117, + 21, 216, 102, 159, 27, 192, 163, 161, 130, 146, 85, 213, 202, 128, 255, 191, 75, 36, 184, 23, 54, 194, 124, 100, + 52, 75, 91, 248, 73, 143, 95, 2, 35, 97, 52, 106, 110, 63, 66, 115, 177, 76, 65, 45, 88, 200, 85, 58, 150, 29, 43, + 163, 89, 170, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3049, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1988259065367208367" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11927288794922474477" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13520212224766204069" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5141617947859052407" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905059f41e51b1b97b715f0a9a1af9fd905059f131ba5863df72ad9dbedffd87f9f051bffffffffffffffefffffd8669f1bbba17162a11558a59f9f1b475ab24838e96777ffffffff", + "cborBytes": [ + 217, 5, 5, 159, 65, 229, 27, 27, 151, 183, 21, 240, 169, 161, 175, 159, 217, 5, 5, 159, 19, 27, 165, 134, 61, 247, + 42, 217, 219, 237, 255, 216, 127, 159, 5, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255, 255, 216, 102, 159, 27, + 187, 161, 113, 98, 161, 21, 88, 165, 159, 159, 27, 71, 90, 178, 72, 56, 233, 103, 119, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3050, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3324976468277086877" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12664875930282227699" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14412989672864469589" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5fb9bad8ad99e2f2ea580b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17023605945158869911" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffeb61" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "154690734404010988" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16647241244549386171" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b78fbda" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4022405cccb0c58" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2e24b07b3e304a9d9f1bafc2ad8ea4ddf7f31bc80539be8275d255bf4b5fb9bad8ad99e2f2ea580b1bec3fff69856c239743ffeb611b02259267423203ecff1be706e1b607990fbbbf444b78fbda48b4022405cccb0c58ffffff", + "cborBytes": [ + 216, 102, 159, 27, 46, 36, 176, 123, 62, 48, 74, 157, 159, 27, 175, 194, 173, 142, 164, 221, 247, 243, 27, 200, 5, + 57, 190, 130, 117, 210, 85, 191, 75, 95, 185, 186, 216, 173, 153, 226, 242, 234, 88, 11, 27, 236, 63, 255, 105, + 133, 108, 35, 151, 67, 255, 235, 97, 27, 2, 37, 146, 103, 66, 50, 3, 236, 255, 27, 231, 6, 225, 182, 7, 153, 15, + 187, 191, 68, 75, 120, 251, 218, 72, 180, 2, 36, 5, 204, 203, 12, 88, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3051, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4cb0326cd94b1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5486b3faac61a90b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3859908105790749453" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e5cab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54697c3495fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6653200569705586694" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea8abff60e9a65bf0772fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da919f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f153e3719b43d60e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ba695c77186c2" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4a6bdf36ec35ffb54f" + }, + { + "_tag": "ByteArray", + "bytearray": "9e" + }, + { + "_tag": "ByteArray", + "bytearray": "5233bc34758f852a7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "616784906053654249" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9fd9050c9fd90504801bfffffffffffffff480bf411447d4cb0326cd94b1485486b3faac61a90b1b359125f8b74efb0d436e5cab4654697c3495fe41751b5c54eaab00ba60064bea8abff60e9a65bf0772fd43da919f48f153e3719b43d60e476ba695c77186c2ffd8669f1bfffffffffffffff59f494a6bdf36ec35ffb54f419e495233bc34758f852a7b1b088f429aac2696e9ffffffd8669f1bffffffffffffffeb80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 217, 5, 12, 159, 217, 5, 4, 128, 27, 255, 255, + 255, 255, 255, 255, 255, 244, 128, 191, 65, 20, 71, 212, 203, 3, 38, 205, 148, 177, 72, 84, 134, 179, 250, 172, + 97, 169, 11, 27, 53, 145, 37, 248, 183, 78, 251, 13, 67, 110, 92, 171, 70, 84, 105, 124, 52, 149, 254, 65, 117, + 27, 92, 84, 234, 171, 0, 186, 96, 6, 75, 234, 138, 191, 246, 14, 154, 101, 191, 7, 114, 253, 67, 218, 145, 159, + 72, 241, 83, 227, 113, 155, 67, 214, 14, 71, 107, 166, 149, 199, 113, 134, 194, 255, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 245, 159, 73, 74, 107, 223, 54, 236, 53, 255, 181, 79, 65, 158, 73, 82, 51, 188, 52, 117, + 143, 133, 42, 123, 27, 8, 143, 66, 154, 172, 38, 150, 233, 255, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 235, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3052, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e2c2b40c7f36" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "544a17f13078" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29fd905019f0246e2c2b40c7f36ffd87b9f46544a17f1307880ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 217, 5, 1, 159, 2, 70, 226, 194, 180, 12, 127, 54, + 255, 216, 123, 159, 70, 84, 74, 23, 241, 48, 120, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3053, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17123354293790689915" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3720717900776422074" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4529352137625466615" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10050836067183857695" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "895445831608372609" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c9966def" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14130899778580848163" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9d75bf07e772" + }, + { + "_tag": "ByteArray", + "bytearray": "460d9effe6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1869009096261219502" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5413255347142041028" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5085798521977861697" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8232306170955241484" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3212775190606072340" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13701205663712910191" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5649028502875431456" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1beda26001bc8dca7b9f1b33a2a537b1373abad8669f1b3edb7dc589d276f79fd8669f1b8b7bbe26c82d901f9f1b0c6d433d549f0d8144c9966def1bc41b0a7adaf51e23ffff9f469d75bf07e77245460d9effe61b19f00ddee09fb4aeffbf1b4b1fbf0ebce29dc41b469462cf5db276411b723f06d88a0b180c1b2c9612038b434a141bbe2475f5842d9b6f1b4e65617e57f26220ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 237, 162, 96, 1, 188, 141, 202, 123, 159, 27, 51, 162, 165, 55, 177, 55, 58, 186, 216, 102, + 159, 27, 62, 219, 125, 197, 137, 210, 118, 247, 159, 216, 102, 159, 27, 139, 123, 190, 38, 200, 45, 144, 31, 159, + 27, 12, 109, 67, 61, 84, 159, 13, 129, 68, 201, 150, 109, 239, 27, 196, 27, 10, 122, 218, 245, 30, 35, 255, 255, + 159, 70, 157, 117, 191, 7, 231, 114, 69, 70, 13, 158, 255, 230, 27, 25, 240, 13, 222, 224, 159, 180, 174, 255, + 191, 27, 75, 31, 191, 14, 188, 226, 157, 196, 27, 70, 148, 98, 207, 93, 178, 118, 65, 27, 114, 63, 6, 216, 138, + 11, 24, 12, 27, 44, 150, 18, 3, 139, 67, 74, 20, 27, 190, 36, 117, 245, 132, 45, 155, 111, 27, 78, 101, 97, 126, + 87, 242, 98, 32, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3054, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15664600199632201410" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10841515558563514771" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15403149825075543510" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9701122338580445838" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15798480848426891931" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c7157c9a8193" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3126830787255200214" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8892859046888051830" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13606261574951609782" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16554b29a99f8a7e70a0cd" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d18f9de3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11579274305032986008" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8747525515350788064" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2899722159323419288" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14412759673825152649" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10721873053816060088" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d7933e530d4" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1289901760069019982" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bd963d6e30f9726c29f9fd8669f1b9674ccf5af0c89939f1bd5c2fb2811bf7dd61b86a14f5e41b1ba8e1bdb3f7aa0b14bfa9b46c7157c9a8193ffffbf1b2b64bc08cb19e9d61b7b69c82fcf6194761bbcd326d03809a5b64b16554b29a99f8a7e70a0cdff9f44d18f9de31ba0b1d8a17c4c9d981b7965741c1e2647e0ff1b283de1f0c5cd1298d8669f1bc804688faf6c4e899f1b94cbbebc4b89f8b8465d7933e530d4ffffffa0d8669f1b11e6a6d10c10a94e80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 217, 99, 214, 227, 15, 151, 38, 194, 159, 159, 216, 102, 159, 27, 150, 116, 204, 245, 175, 12, + 137, 147, 159, 27, 213, 194, 251, 40, 17, 191, 125, 214, 27, 134, 161, 79, 94, 65, 177, 186, 142, 27, 219, 63, + 122, 160, 177, 75, 250, 155, 70, 199, 21, 124, 154, 129, 147, 255, 255, 191, 27, 43, 100, 188, 8, 203, 25, 233, + 214, 27, 123, 105, 200, 47, 207, 97, 148, 118, 27, 188, 211, 38, 208, 56, 9, 165, 182, 75, 22, 85, 75, 41, 169, + 159, 138, 126, 112, 160, 205, 255, 159, 68, 209, 143, 157, 227, 27, 160, 177, 216, 161, 124, 76, 157, 152, 27, + 121, 101, 116, 28, 30, 38, 71, 224, 255, 27, 40, 61, 225, 240, 197, 205, 18, 152, 216, 102, 159, 27, 200, 4, 104, + 143, 175, 108, 78, 137, 159, 27, 148, 203, 190, 188, 75, 137, 248, 184, 70, 93, 121, 51, 229, 48, 212, 255, 255, + 255, 160, 216, 102, 159, 27, 17, 230, 166, 209, 12, 16, 169, 78, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3055, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2c71f33f0fea29" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f472c71f33f0fea29ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 71, 44, 113, 243, 63, 15, 234, 41, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3056, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17210252728634187853" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e7d271e1fc68" + }, + { + "_tag": "ByteArray", + "bytearray": "de92ab9629d1aab2952cb4a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1104675253606671788" + } + } + ] + }, + "cborHex": "d9050d9f1beed719ac40f0204d46e7d271e1fc684cde92ab9629d1aab2952cb4a81b0f54984a5363e5acff", + "cborBytes": [ + 217, 5, 13, 159, 27, 238, 215, 25, 172, 64, 240, 32, 77, 70, 231, 210, 113, 225, 252, 104, 76, 222, 146, 171, 150, + 41, 209, 170, 178, 149, 44, 180, 168, 27, 15, 84, 152, 74, 83, 99, 229, 172, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3057, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10997061762716026344" + }, + "fields": [] + }, + "cborHex": "d8669f1b989d696883b845e880ff", + "cborBytes": [216, 102, 159, 27, 152, 157, 105, 104, 131, 184, 69, 232, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3058, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8634920591013978123" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10132079964765424572" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8652674047674125051" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12041207005161034085" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3997588064462008262" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5e1e9e25375110c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4911030142267631412" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3085665489334608802" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b77d566871b18200b9fbf1b8c9c610bbfb20bbc1b78147933d8db8afb1ba71af5f9619191651b377a492a1c996fc648e5e1e9e25375110c1b44277be507192734ffd8669f1b2ad27c69fb78a3a280ffffff", + "cborBytes": [ + 216, 102, 159, 27, 119, 213, 102, 135, 27, 24, 32, 11, 159, 191, 27, 140, 156, 97, 11, 191, 178, 11, 188, 27, 120, + 20, 121, 51, 216, 219, 138, 251, 27, 167, 26, 245, 249, 97, 145, 145, 101, 27, 55, 122, 73, 42, 28, 153, 111, 198, + 72, 229, 225, 233, 226, 83, 117, 17, 12, 27, 68, 39, 123, 229, 7, 25, 39, 52, 255, 216, 102, 159, 27, 42, 210, + 124, 105, 251, 120, 163, 162, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3059, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7322105323301845728" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3945363343816480783" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b659d57ff53673ae09f0e9f1b36c0bf0eca07580fffffff", + "cborBytes": [ + 216, 102, 159, 27, 101, 157, 87, 255, 83, 103, 58, 224, 159, 14, 159, 27, 54, 192, 191, 14, 202, 7, 88, 15, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3060, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8117652347409999036" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14149557277354913572" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8921021154320242672" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2934208342651297233" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ac1c95665b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1166675275423801052" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61162e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e3b967140d746859845" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7be9aa2b7b03fd78f0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17287337236960411539" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1562264951197561368" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f09353cc4996aeae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2bb432" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14034751955762523681" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b70a7b1cd017d24bc9fd8669f1bc45d53604dc86f249f9f1b7bcdd5796900d7f01b28b866f108b7ddd1ffbf460ac1c95665b51b1030dcfb4fdddedc4361162e4a1e3b967140d746859845497be9aa2b7b03fd78f01befe8f59ff1687f9341b81b15ae47b2252c721848f09353cc4996aeae432bb432ff1bc2c5748b61f1ae21ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 112, 167, 177, 205, 1, 125, 36, 188, 159, 216, 102, 159, 27, 196, 93, 83, 96, 77, 200, 111, 36, + 159, 159, 27, 123, 205, 213, 121, 105, 0, 215, 240, 27, 40, 184, 102, 241, 8, 183, 221, 209, 255, 191, 70, 10, + 193, 201, 86, 101, 181, 27, 16, 48, 220, 251, 79, 221, 222, 220, 67, 97, 22, 46, 74, 30, 59, 150, 113, 64, 215, + 70, 133, 152, 69, 73, 123, 233, 170, 43, 123, 3, 253, 120, 240, 27, 239, 232, 245, 159, 241, 104, 127, 147, 65, + 184, 27, 21, 174, 71, 178, 37, 44, 114, 24, 72, 240, 147, 83, 204, 73, 150, 174, 174, 67, 43, 180, 50, 255, 27, + 194, 197, 116, 139, 97, 241, 174, 33, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3061, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0f70c3" + } + ] + }, + "cborHex": "d905009f430f70c3ff", + "cborBytes": [217, 5, 0, 159, 67, 15, 112, 195, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3062, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11352002333015009616" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0305" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11560896822954229397" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f806fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "507f597878a6eb29a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5756703969538951416" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bf49" + } + ] + } + ] + }, + "cborHex": "d905009fd8669f1b9d8a69f9f4c3e95080ff0e9f0e420305bf1ba0708e688120fe9543f806fe49507f597878a6eb29a51b4fe3ebc28d7348f8ff42bf49ffff", + "cborBytes": [ + 217, 5, 0, 159, 216, 102, 159, 27, 157, 138, 105, 249, 244, 195, 233, 80, 128, 255, 14, 159, 14, 66, 3, 5, 191, + 27, 160, 112, 142, 104, 129, 32, 254, 149, 67, 248, 6, 254, 73, 80, 127, 89, 120, 120, 166, 235, 41, 165, 27, 79, + 227, 235, 194, 141, 115, 72, 248, 255, 66, 191, 73, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3063, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5287676452531831175" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "27273846955602304" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b7dee3d67c17a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14854965101882038418" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15672692540197171900" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16215728684962237639" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4955989511875156847" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e34d581fdab6bacebd70" + } + ] + } + ] + }, + "cborHex": "d8669f1b496199b7e05b81879fbf1b0060e56b57727180477b7dee3d67c17a1bce27700e2080d8921bd98096d3ec5df2bc1be109d75309494cc71b44c73633fde15b6fff9f4ae34d581fdab6bacebd70ffffff", + "cborBytes": [ + 216, 102, 159, 27, 73, 97, 153, 183, 224, 91, 129, 135, 159, 191, 27, 0, 96, 229, 107, 87, 114, 113, 128, 71, 123, + 125, 238, 61, 103, 193, 122, 27, 206, 39, 112, 14, 32, 128, 216, 146, 27, 217, 128, 150, 211, 236, 93, 242, 188, + 27, 225, 9, 215, 83, 9, 73, 76, 199, 27, 68, 199, 54, 51, 253, 225, 91, 111, 255, 159, 74, 227, 77, 88, 31, 218, + 182, 186, 206, 189, 112, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3064, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8080766369039979953" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10085067751431970054" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "105290448341065669" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ccdbc5f38e83c863" + }, + { + "_tag": "ByteArray", + "bytearray": "e64d8b05" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11880601042394971534" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10016206387963354279" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17646465255357822265" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5566119300355150904" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a67e1898c319bdc58d15c369" + } + ] + }, + "cborHex": "d8669f1b7024a632eb8d15b19f1b8bf55bafdbd99d06a0d8669f1b0176111adb9c5fc59f9f48ccdbc5f38e83c86344e64d8b051ba4e05fb3b2167d8e1b8b00b6a4478ddca71bf4e4d6a79ee03539ff801b4d3ed4035b1d5438ffff4ca67e1898c319bdc58d15c369ffff", + "cborBytes": [ + 216, 102, 159, 27, 112, 36, 166, 50, 235, 141, 21, 177, 159, 27, 139, 245, 91, 175, 219, 217, 157, 6, 160, 216, + 102, 159, 27, 1, 118, 17, 26, 219, 156, 95, 197, 159, 159, 72, 204, 219, 197, 243, 142, 131, 200, 99, 68, 230, 77, + 139, 5, 27, 164, 224, 95, 179, 178, 22, 125, 142, 27, 139, 0, 182, 164, 71, 141, 220, 167, 27, 244, 228, 214, 167, + 158, 224, 53, 57, 255, 128, 27, 77, 62, 212, 3, 91, 29, 84, 56, 255, 255, 76, 166, 126, 24, 152, 195, 25, 189, + 197, 141, 21, 195, 105, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3065, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79f1bffffffffffffffefffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3066, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "943057475750457716" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3061644550820982221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a8d188e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6254817980144072651" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ccbab9f2e2c611e8739819c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12504524358911784449" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15733883430122856336" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ab4e6eb9664759d7058a63b" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b0d1669c714e1f1749f9fbf1b2a7d257f6831edcd440a8d188e1b56cd93d04136b7cb4cccbab9f2e2c611e8739819c11bad88fea71227f60141fd1bda59fb9e35e09f904c9ab4e6eb9664759d7058a63bffa0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 13, 22, 105, 199, 20, 225, 241, 116, 159, 159, 191, 27, 42, 125, 37, 127, 104, 49, 237, 205, + 68, 10, 141, 24, 142, 27, 86, 205, 147, 208, 65, 54, 183, 203, 76, 204, 186, 185, 242, 226, 198, 17, 232, 115, + 152, 25, 193, 27, 173, 136, 254, 167, 18, 39, 246, 1, 65, 253, 27, 218, 89, 251, 158, 53, 224, 159, 144, 76, 154, + 180, 230, 235, 150, 100, 117, 157, 112, 88, 166, 59, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3067, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6466949289647827997" + }, + "fields": [] + }, + "cborHex": "d8669f1b59bf381d95ec6c1d80ff", + "cborBytes": [216, 102, 159, 27, 89, 191, 56, 29, 149, 236, 108, 29, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3068, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ca368184e1cc6d7ec945ce3b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79fd8669f1bfffffffffffffff89f9f4cca368184e1cc6d7ec945ce3bff0cffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 248, 159, 159, 76, 202, 54, 129, 132, 225, 204, 109, 126, 201, 69, 206, 59, 255, 12, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3069, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14290507127282704680" + }, + "fields": [] + }, + "cborHex": "d8669f1bc652148495dfa12880ff", + "cborBytes": [216, 102, 159, 27, 198, 82, 20, 132, 149, 223, 161, 40, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3070, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3654171312760952735" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5981315489501182715" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "337545625508346830" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1814012266054712940" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3914433809414328325" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14363933053146830227" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5969" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5289396605033510457" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4394607056092335671" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15252725019415097671" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e2" + }, + { + "_tag": "ByteArray", + "bytearray": "5b1fc29e7e" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0603de" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10546759622735843572" + } + } + ] + }, + "cborHex": "d8669f1b32b63972c58a179f9f9f80d905079f0c1b5301e6bf51427afb081b04af33f53fe97bceffffd8669f1bfffffffffffffff09f1b192caa8b80647e6c1b3652dccf62eb90051bc756f1022a4f1593425969d8669f1b4967b630172df6399f1b3cfcc7d579cf0e371bd3ac9097bef3314741e2455b1fc29e7effffffff0d9f430603deff1b925d9dff6c9a50f4ffff", + "cborBytes": [ + 216, 102, 159, 27, 50, 182, 57, 114, 197, 138, 23, 159, 159, 159, 128, 217, 5, 7, 159, 12, 27, 83, 1, 230, 191, + 81, 66, 122, 251, 8, 27, 4, 175, 51, 245, 63, 233, 123, 206, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 240, 159, 27, 25, 44, 170, 139, 128, 100, 126, 108, 27, 54, 82, 220, 207, 98, 235, 144, 5, 27, 199, 86, + 241, 2, 42, 79, 21, 147, 66, 89, 105, 216, 102, 159, 27, 73, 103, 182, 48, 23, 45, 246, 57, 159, 27, 60, 252, 199, + 213, 121, 207, 14, 55, 27, 211, 172, 144, 151, 190, 243, 49, 71, 65, 226, 69, 91, 31, 194, 158, 126, 255, 255, + 255, 255, 13, 159, 67, 6, 3, 222, 255, 27, 146, 93, 157, 255, 108, 154, 80, 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3071, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3580601930141609829" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c61ce4819e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17492633182071731352" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06259cc2fff669e628" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0303fffc04b204a1b0fc" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14233707382549385933" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99fbf1b31b0da7c102b2f6545c61ce4819e1bf2c25132fb98b4984906259cc2fff669e628ff9fd8669f1bfffffffffffffff49f4a0303fffc04b204a1b0fcffffd8669f1bc588497375b612cd80ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 191, 27, 49, 176, 218, 124, 16, 43, 47, 101, 69, + 198, 28, 228, 129, 158, 27, 242, 194, 81, 50, 251, 152, 180, 152, 73, 6, 37, 156, 194, 255, 246, 105, 230, 40, + 255, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 74, 3, 3, 255, 252, 4, 178, 4, 161, 176, + 252, 255, 255, 216, 102, 159, 27, 197, 136, 73, 115, 117, 182, 18, 205, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3072, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6031064709465006732" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3458441212611942764" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c82a86befaa401" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9304929232978860018" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14015587103521458295" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10768420448589338616" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6933065915170461690" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14559878170511440713" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9305134011007390497" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14810872510350802793" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5374c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17871547947807560041" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11895245821749636986" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2314033467181712397" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4103245907218980021" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2479486980950320413" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18133387752056802948" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2675005065042872039" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "475997734582678626" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7524017960430103451" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "232d6306aef5d9f9d97f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12378894583033971956" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74b66f1dac471cad09" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12484570853514640660" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1bed" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "53aa2e3dfa35b551a2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10253621794973382811" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5425d1d127ca84c50d25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7399b51e6c13" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9455563215366225764" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a79485742a66b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10260455463267573007" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "933665b9a0e88653c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1961810320545930738" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13940721678507938082" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6669244058128052247" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13370651361891410779" + } + }, + { + "_tag": "ByteArray", + "bytearray": "56cf5d3b9c3c6eae399ff680" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3102349995711516254" + } + }, + { + "_tag": "ByteArray", + "bytearray": "059e85423be44b2ece24" + }, + { + "_tag": "ByteArray", + "bytearray": "acf91a77ca" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "67e427b7bab5772d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5099571704301616004" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2420861766312734989" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "216491596390785007" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4744940663988353118" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14890097508102377420" + } + }, + { + "_tag": "ByteArray", + "bytearray": "53033721b767af3317b608" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "651054309961833330" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6493075956780251378" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c7918b59f16" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b53b2a566390e628c9f9fa0bf1b2ffed9f5924e596c47c82a86befaa4011b8121bfd677da57f21bc2815e367ff148771b95711d582e3857f81b603732b7861a97fa1bca0f140df64c7b491b81227a15118053211bcd8aca13a90ebf6943b5374c1bf8047e2bc76e51691ba514670d19562f7affffbf1b201d192d99bb440d1b38f1a869a5dcdcb51b2268e845b4bfe51d1bfba6bc15efc3ce841b251f86ef124046e71b069b156aebb0f4621b686aae7897186b9b4a232d6306aef5d9f9d97f1babcaab097dbf44f44974b66f1dac471cad091bad421b0b90ef7d14421bedffbf4953aa2e3dfa35b551a21b8e4c2eb24e97789b4a5425d1d127ca84c50d25467399b51e6c13416a1b8338e8a58b277f64476a79485742a66b1b8e6475e1b1c79d0f49933665b9a0e88653c61b1b39c017a8d5ddf241f71bc1776481680d9122ff1b5c8dea22bd1b70179f9f1bb98e1892a921635b4c56cf5d3b9c3c6eae399ff6801b2b0dc2e25751ce5e4a059e85423be44b2ece2445acf91a77caff4867e427b7bab5772dd8669f1b46c551724587fb849f1b2198a0f33f65310d1b030121f5bbbadfefffff80d8669f1b41d96a64e554f85e9f1bcea440cae15f0fcc4b53033721b767af3317b6081b090902720ac31b721b5a1c0a2e4f8438f2469c7918b59f16ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 83, 178, 165, 102, 57, 14, 98, 140, 159, 159, 160, 191, 27, 47, 254, 217, 245, 146, 78, 89, + 108, 71, 200, 42, 134, 190, 250, 164, 1, 27, 129, 33, 191, 214, 119, 218, 87, 242, 27, 194, 129, 94, 54, 127, 241, + 72, 119, 27, 149, 113, 29, 88, 46, 56, 87, 248, 27, 96, 55, 50, 183, 134, 26, 151, 250, 27, 202, 15, 20, 13, 246, + 76, 123, 73, 27, 129, 34, 122, 21, 17, 128, 83, 33, 27, 205, 138, 202, 19, 169, 14, 191, 105, 67, 181, 55, 76, 27, + 248, 4, 126, 43, 199, 110, 81, 105, 27, 165, 20, 103, 13, 25, 86, 47, 122, 255, 255, 191, 27, 32, 29, 25, 45, 153, + 187, 68, 13, 27, 56, 241, 168, 105, 165, 220, 220, 181, 27, 34, 104, 232, 69, 180, 191, 229, 29, 27, 251, 166, + 188, 21, 239, 195, 206, 132, 27, 37, 31, 134, 239, 18, 64, 70, 231, 27, 6, 155, 21, 106, 235, 176, 244, 98, 27, + 104, 106, 174, 120, 151, 24, 107, 155, 74, 35, 45, 99, 6, 174, 245, 217, 249, 217, 127, 27, 171, 202, 171, 9, 125, + 191, 68, 244, 73, 116, 182, 111, 29, 172, 71, 28, 173, 9, 27, 173, 66, 27, 11, 144, 239, 125, 20, 66, 27, 237, + 255, 191, 73, 83, 170, 46, 61, 250, 53, 181, 81, 162, 27, 142, 76, 46, 178, 78, 151, 120, 155, 74, 84, 37, 209, + 209, 39, 202, 132, 197, 13, 37, 70, 115, 153, 181, 30, 108, 19, 65, 106, 27, 131, 56, 232, 165, 139, 39, 127, 100, + 71, 106, 121, 72, 87, 66, 166, 107, 27, 142, 100, 117, 225, 177, 199, 157, 15, 73, 147, 54, 101, 185, 160, 232, + 134, 83, 198, 27, 27, 57, 192, 23, 168, 213, 221, 242, 65, 247, 27, 193, 119, 100, 129, 104, 13, 145, 34, 255, 27, + 92, 141, 234, 34, 189, 27, 112, 23, 159, 159, 27, 185, 142, 24, 146, 169, 33, 99, 91, 76, 86, 207, 93, 59, 156, + 60, 110, 174, 57, 159, 246, 128, 27, 43, 13, 194, 226, 87, 81, 206, 94, 74, 5, 158, 133, 66, 59, 228, 75, 46, 206, + 36, 69, 172, 249, 26, 119, 202, 255, 72, 103, 228, 39, 183, 186, 181, 119, 45, 216, 102, 159, 27, 70, 197, 81, + 114, 69, 135, 251, 132, 159, 27, 33, 152, 160, 243, 63, 101, 49, 13, 27, 3, 1, 33, 245, 187, 186, 223, 239, 255, + 255, 128, 216, 102, 159, 27, 65, 217, 106, 100, 229, 84, 248, 94, 159, 27, 206, 164, 64, 202, 225, 95, 15, 204, + 75, 83, 3, 55, 33, 183, 103, 175, 51, 23, 182, 8, 27, 9, 9, 2, 114, 10, 195, 27, 114, 27, 90, 28, 10, 46, 79, 132, + 56, 242, 70, 156, 121, 24, 181, 159, 22, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3073, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16279474003797968723" + } + } + ] + }, + "cborHex": "d87e9f1be1ec4f5aa6958753ff", + "cborBytes": [216, 126, 159, 27, 225, 236, 79, 90, 166, 149, 135, 83, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3074, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "58d7e20e1e" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f4558d7e20e1effff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 69, 88, 215, 226, 14, 30, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3075, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10813971267687389932" + }, + "fields": [] + }, + "cborHex": "d8669f1b9612f192b5c99aec80ff", + "cborBytes": [216, 102, 159, 27, 150, 18, 241, 146, 181, 201, 154, 236, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3076, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2793735849971044637" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3904067120999347198" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4842964379212258309" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12605327880527759103" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11002887123512109699" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b736" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14150812203764985696" + } + }, + { + "_tag": "ByteArray", + "bytearray": "14cebde03cde56950f56c5" + }, + { + "_tag": "ByteArray", + "bytearray": "3748" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15106787417067812164" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "577389135676030238" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9570423045227850906" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9779296291583695430" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb9f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2277748356063426510" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11010646960262477432" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aa89c99ee8" + }, + { + "_tag": "ByteArray", + "bytearray": "71829d68a4547a41b03aac34" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9864956851478656393" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fcf75dac15fcb9bc91b7" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b26c557f425cc511d9f1b362e085ca672b3fe9f9f1b4335aa719ad11c051baeef1eebe42f46ffffd8669f1b98b21b8b04a8aa839f42b7361bc461c8b9a0acaf604b14cebde03cde56950f56c54237481bd1a6171ddbaaf544ffffd8669f1b08034c5c1923bd1e9f1b84d0f90da904ac9a1b87b70a2a0d241a4642cb9fffff1b1f9c300fd2e3f7ceff9f1b98cdad12cdadf67845aa89c99ee84c71829d68a4547a41b03aac34ff9f1b88e75dfd58f0f5894afcf75dac15fcb9bc91b7ffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 38, 197, 87, 244, 37, 204, 81, 29, 159, 27, 54, 46, 8, 92, 166, 114, 179, 254, 159, 159, 27, + 67, 53, 170, 113, 154, 209, 28, 5, 27, 174, 239, 30, 235, 228, 47, 70, 255, 255, 216, 102, 159, 27, 152, 178, 27, + 139, 4, 168, 170, 131, 159, 66, 183, 54, 27, 196, 97, 200, 185, 160, 172, 175, 96, 75, 20, 206, 189, 224, 60, 222, + 86, 149, 15, 86, 197, 66, 55, 72, 27, 209, 166, 23, 29, 219, 170, 245, 68, 255, 255, 216, 102, 159, 27, 8, 3, 76, + 92, 25, 35, 189, 30, 159, 27, 132, 208, 249, 13, 169, 4, 172, 154, 27, 135, 183, 10, 42, 13, 36, 26, 70, 66, 203, + 159, 255, 255, 27, 31, 156, 48, 15, 210, 227, 247, 206, 255, 159, 27, 152, 205, 173, 18, 205, 173, 246, 120, 69, + 170, 137, 201, 158, 232, 76, 113, 130, 157, 104, 164, 84, 122, 65, 176, 58, 172, 52, 255, 159, 27, 136, 231, 93, + 253, 88, 240, 245, 137, 74, 252, 247, 93, 172, 21, 252, 185, 188, 145, 183, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3077, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9478812948562161269" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3110100481319094965" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "131d40473764" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8765966348425428755" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "743baf8a6b3f9f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13777951673403771513" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af8fd7f40941aa92b02896" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "efccd1cb600a2010e4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8250031945864677291" + } + } + ] + }, + "cborHex": "d8669f1b838b8227e36bae759fbf1b2b294be8e4cbcab546131d404737641b79a6f7f326ecff1347743baf8a6b3f9f1bbf351e0c59bb0a794baf8fd7f40941aa92b02896ff49efccd1cb600a2010e41b727e00581ee387abffff", + "cborBytes": [ + 216, 102, 159, 27, 131, 139, 130, 39, 227, 107, 174, 117, 159, 191, 27, 43, 41, 75, 232, 228, 203, 202, 181, 70, + 19, 29, 64, 71, 55, 100, 27, 121, 166, 247, 243, 38, 236, 255, 19, 71, 116, 59, 175, 138, 107, 63, 159, 27, 191, + 53, 30, 12, 89, 187, 10, 121, 75, 175, 143, 215, 244, 9, 65, 170, 146, 176, 40, 150, 255, 73, 239, 204, 209, 203, + 96, 10, 32, 16, 228, 27, 114, 126, 0, 88, 30, 227, 135, 171, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3078, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5840999445233663772" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7685597357669814359" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10698999924332449569" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9243377536923769968" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d9050a9f01d8669f1b510f660c6a67ff1c9f1b6aa8ba13a69710579f1b947a7bbed5c44f211b804712e5752a9c70ffffff80ff", + "cborBytes": [ + 217, 5, 10, 159, 1, 216, 102, 159, 27, 81, 15, 102, 12, 106, 103, 255, 28, 159, 27, 106, 168, 186, 19, 166, 151, + 16, 87, 159, 27, 148, 122, 123, 190, 213, 196, 79, 33, 27, 128, 71, 18, 229, 117, 42, 156, 112, 255, 255, 255, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3079, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8217919456765608915" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11731558753569147224" + } + } + ] + }, + "cborHex": "d8669f1b720bea349d4903d39f1ba2cede87a81d0958ffff", + "cborBytes": [ + 216, 102, 159, 27, 114, 11, 234, 52, 157, 73, 3, 211, 159, 27, 162, 206, 222, 135, 168, 29, 9, 88, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3080, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9382231107593856025" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6468439062860720318" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15734785998538796565" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c53618ba95cf6615" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12666544482684843909" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5689997640528909137" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7016510306584621067" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7766944467974613496" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11652943871732077810" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f218f9089" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5547527871507621092" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4766598065042213470" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "577613207018103348" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905009f1b8234617bb0c06419d8669f1b59c4830e7112e8be9fbf1bda5d307fcbb1ee1548c53618ba95cf6615ff1bafc89b18c61d3785801b4ef6eeb508895351ffffd87b9fd8669f1b615fa6f2e2d7f00b9f03ffffd9050a80ff9f80d8669f1b6bc9bad7b3cfe9f89f1ba1b792b61e27d4f2458f218f90891b4cfcc73502ca64e41b42265baf85e7ca5e1b08041826c5e36234ffffffff", + "cborBytes": [ + 217, 5, 0, 159, 27, 130, 52, 97, 123, 176, 192, 100, 25, 216, 102, 159, 27, 89, 196, 131, 14, 113, 18, 232, 190, + 159, 191, 27, 218, 93, 48, 127, 203, 177, 238, 21, 72, 197, 54, 24, 186, 149, 207, 102, 21, 255, 27, 175, 200, + 155, 24, 198, 29, 55, 133, 128, 27, 78, 246, 238, 181, 8, 137, 83, 81, 255, 255, 216, 123, 159, 216, 102, 159, 27, + 97, 95, 166, 242, 226, 215, 240, 11, 159, 3, 255, 255, 217, 5, 10, 128, 255, 159, 128, 216, 102, 159, 27, 107, + 201, 186, 215, 179, 207, 233, 248, 159, 27, 161, 183, 146, 182, 30, 39, 212, 242, 69, 143, 33, 143, 144, 137, 27, + 76, 252, 199, 53, 2, 202, 100, 228, 27, 66, 38, 91, 175, 133, 231, 202, 94, 27, 8, 4, 24, 38, 197, 227, 98, 52, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3081, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7230325035407057289" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3468955057672652717" + } + } + ] + }, + "cborHex": "d8669f1b6457464fd20d21899f1b3024343ee25f87adffff", + "cborBytes": [ + 216, 102, 159, 27, 100, 87, 70, 79, 210, 13, 33, 137, 159, 27, 48, 36, 52, 62, 226, 95, 135, 173, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3082, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14994736917674276795" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6942933888044063478" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13154213171105121576" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4742947392262041939" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15784922507403880473" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "956410181327149705" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18065843811471795854" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15378843741933658656" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bd01801c7f66937bb9fbf1b605a4195ffe35af604ffbf1bb68d272f637c45281b41d255862824f1531bdb0f4f636ce068191b0d45d9fe1d925a891bfab6c53ac677268e1bd56ca0e71631e220ffffff", + "cborBytes": [ + 216, 102, 159, 27, 208, 24, 1, 199, 246, 105, 55, 187, 159, 191, 27, 96, 90, 65, 149, 255, 227, 90, 246, 4, 255, + 191, 27, 182, 141, 39, 47, 99, 124, 69, 40, 27, 65, 210, 85, 134, 40, 36, 241, 83, 27, 219, 15, 79, 99, 108, 224, + 104, 25, 27, 13, 69, 217, 254, 29, 146, 90, 137, 27, 250, 182, 197, 58, 198, 119, 38, 142, 27, 213, 108, 160, 231, + 22, 49, 226, 32, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3083, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17692731285111188831" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aaef74a8d01317f1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + "cborHex": "d8669f1bf589355d1b7e2d5f9f48aaef74a8d01317f10bffff", + "cborBytes": [ + 216, 102, 159, 27, 245, 137, 53, 93, 27, 126, 45, 95, 159, 72, 170, 239, 116, 168, 208, 19, 23, 241, 11, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3084, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16864131919671904239" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3307373942856382914" + } + } + ] + }, + "cborHex": "d87d9f1bea096ea1855ec7efa01b2de62713eb5679c2ff", + "cborBytes": [ + 216, 125, 159, 27, 234, 9, 110, 161, 133, 94, 199, 239, 160, 27, 45, 230, 39, 19, 235, 86, 121, 194, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3085, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15457087606652924148" + }, + "fields": [] + }, + "cborHex": "d8669f1bd6829b4878a3f0f480ff", + "cborBytes": [216, 102, 159, 27, 214, 130, 155, 72, 120, 163, 240, 244, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3086, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01ff0056" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2062984150200450401" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0f04f5feae6c94c3f2233ace" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8747469570435900983" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87f0b9f175" + } + ] + } + ] + } + ] + }, + "cborHex": "d87c9f4401ff00569fd8669f1b1ca1312789f57d619f4c0f04f5feae6c94c3f2233ace1b7965413a6d5ee6374587f0b9f175ffffffff", + "cborBytes": [ + 216, 124, 159, 68, 1, 255, 0, 86, 159, 216, 102, 159, 27, 28, 161, 49, 39, 137, 245, 125, 97, 159, 76, 15, 4, 245, + 254, 174, 108, 148, 195, 242, 35, 58, 206, 27, 121, 101, 65, 58, 109, 94, 230, 55, 69, 135, 240, 185, 241, 117, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3087, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9530272159986363199" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5520754752731971719" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b8442540934c82b3f9fd8669f1b4c9da93288a3808780ffffff", + "cborBytes": [ + 216, 102, 159, 27, 132, 66, 84, 9, 52, 200, 43, 63, 159, 216, 102, 159, 27, 76, 157, 169, 50, 136, 163, 128, 135, + 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3088, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9fd9050c80ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 217, 5, 12, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3089, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6354774889824042681" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1564668892082804208" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2900316441041737453" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8816308149862558224" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b8898d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ba72b5d2da1524b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d37e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "855671bad7d9fd7df0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc34f531" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "964a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4625712440615581663" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12949240359774171361" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "85661317162280756" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd61d01e6e4c130fb01c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12525915005854481938" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3944777523646729260" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16746082135741165885" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11585600081769087832" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bbe48b64d047705a9bcf2" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b5830b217df88beb99fd8669f1b15b6d2113fb315f09fd8669f1b283ffe6fc48496ed80ff1b7a59d18d2ef06a1043b8898dffffbf483ba72b5d2da1524b42d37e49855671bad7d9fd7df044dc34f53142964a1b4031d4f4e7ff37dfff1bb3b4f17fcb7db0e1bf1b013054839c7327344afd61d01e6e4c130fb01c1badd4fd552ab0fe121b36beaa41e6e88c2c1be86608fa585df13d1ba0c851e42795435841a34b8bbe48b64d047705a9bcf2ffffff", + "cborBytes": [ + 216, 102, 159, 27, 88, 48, 178, 23, 223, 136, 190, 185, 159, 216, 102, 159, 27, 21, 182, 210, 17, 63, 179, 21, + 240, 159, 216, 102, 159, 27, 40, 63, 254, 111, 196, 132, 150, 237, 128, 255, 27, 122, 89, 209, 141, 46, 240, 106, + 16, 67, 184, 137, 141, 255, 255, 191, 72, 59, 167, 43, 93, 45, 161, 82, 75, 66, 211, 126, 73, 133, 86, 113, 186, + 215, 217, 253, 125, 240, 68, 220, 52, 245, 49, 66, 150, 74, 27, 64, 49, 212, 244, 231, 255, 55, 223, 255, 27, 179, + 180, 241, 127, 203, 125, 176, 225, 191, 27, 1, 48, 84, 131, 156, 115, 39, 52, 74, 253, 97, 208, 30, 110, 76, 19, + 15, 176, 28, 27, 173, 212, 253, 85, 42, 176, 254, 18, 27, 54, 190, 170, 65, 230, 232, 140, 44, 27, 232, 102, 8, + 250, 88, 93, 241, 61, 27, 160, 200, 81, 228, 39, 149, 67, 88, 65, 163, 75, 139, 190, 72, 182, 77, 4, 119, 5, 169, + 188, 242, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3090, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b3b0c64489" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b7d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9099322988233181292" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7723638294990578148" + } + } + ] + } + ] + }, + "cborHex": "d905059fd9050a80d87a9fd905099f45b3b0c64489ff80bf422b7d1b7e474a0c2a2f486cff1b6b2fe01b928461e4ffff", + "cborBytes": [ + 217, 5, 5, 159, 217, 5, 10, 128, 216, 122, 159, 217, 5, 9, 159, 69, 179, 176, 198, 68, 137, 255, 128, 191, 66, 43, + 125, 27, 126, 71, 74, 12, 42, 47, 72, 108, 255, 27, 107, 47, 224, 27, 146, 132, 97, 228, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3091, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18079296689360791371" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9a484e5d" + }, + { + "_tag": "ByteArray", + "bytearray": "847f20" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12285839355900164245" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13990087374934276264" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfae6908cfe3ee74b9f449a484e5d43847f201baa8011cd0ff17895109f9f415fff1bc226c65847a278a8ffffff", + "cborBytes": [ + 216, 102, 159, 27, 250, 230, 144, 140, 254, 62, 231, 75, 159, 68, 154, 72, 78, 93, 67, 132, 127, 32, 27, 170, 128, + 17, 205, 15, 241, 120, 149, 16, 159, 159, 65, 95, 255, 27, 194, 38, 198, 88, 71, 162, 120, 168, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3092, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1978325480257461773" + }, + "fields": [] + }, + "cborHex": "d8669f1b1b746c8aecd99e0d80ff", + "cborBytes": [216, 102, 159, 27, 27, 116, 108, 138, 236, 217, 158, 13, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3093, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bcb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13073328582619758252" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ad8bb23d27dcf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10054135834505203100" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7553748256715672752" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "627cd347a578b8d2d41a62" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7023270586170616464" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e279" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50e403f7" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16405641891223826523" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "800903690157651319" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fb63fac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "535818787052940182" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7ba929f30464b7108ca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17955520208984202934" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9fbf421bcb1bb56dcb149702feac478ad8bb23d27dcf41f5ffbf1b8b877745bb354d9c1b68d44e049c438cb04b627cd347a578b8d2d41a621b6177ab6322262a9042e2794450e403f7ffbf1be3ac8c6116a9f05b1b0b1d61a9af257577440fb63fac1b076f9c5912456b964af7ba929f30464b7108ca1bf92ed27f65d9deb6ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 191, 66, 27, 203, 27, 181, 109, 203, 20, 151, 2, + 254, 172, 71, 138, 216, 187, 35, 210, 125, 207, 65, 245, 255, 191, 27, 139, 135, 119, 69, 187, 53, 77, 156, 27, + 104, 212, 78, 4, 156, 67, 140, 176, 75, 98, 124, 211, 71, 165, 120, 184, 210, 212, 26, 98, 27, 97, 119, 171, 99, + 34, 38, 42, 144, 66, 226, 121, 68, 80, 228, 3, 247, 255, 191, 27, 227, 172, 140, 97, 22, 169, 240, 91, 27, 11, 29, + 97, 169, 175, 37, 117, 119, 68, 15, 182, 63, 172, 27, 7, 111, 156, 89, 18, 69, 107, 150, 74, 247, 186, 146, 159, + 48, 70, 75, 113, 8, 202, 27, 249, 46, 210, 127, 101, 217, 222, 182, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3094, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9064544238709076684" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7404" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a7ee5" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fabe07a56415100601c305" + } + ] + }, + "cborHex": "d8669f1b7dcbbaf5871172cc9fbf427404433a7ee5ff4bfabe07a56415100601c305ffff", + "cborBytes": [ + 216, 102, 159, 27, 125, 203, 186, 245, 135, 17, 114, 204, 159, 191, 66, 116, 4, 67, 58, 126, 229, 255, 75, 250, + 190, 7, 165, 100, 21, 16, 6, 1, 195, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3095, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17915740108551187993" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0388c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb5152a7a32558feb9acc813" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ef56868a9876f6228" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17797036864447939169" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "457dc9273b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17a2187b67c6393713" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf5cc5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10331526090848470171" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b3a3b676d5" + }, + { + "_tag": "ByteArray", + "bytearray": "4cf1efed746d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10448220782446723504" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13355192938278689586" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7638800418792593888" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16731777014810090315" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6212091998496844263" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1314744369551291799" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5943256203160911501" + } + }, + { + "_tag": "ByteArray", + "bytearray": "755fbf8115ee4c40" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16386636747944737064" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10873798720432026125" + } + }, + { + "_tag": "ByteArray", + "bytearray": "89cd3cfa3b32" + }, + { + "_tag": "ByteArray", + "bytearray": "71f82c1a8c" + }, + { + "_tag": "ByteArray", + "bytearray": "a17727e089a4cd5488" + }, + { + "_tag": "ByteArray", + "bytearray": "d17074ef086e" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf8a17eb502696e199f9fbf430388c54cfb5152a7a32558feb9acc813492ef56868a9876f62281bf6fbc6bc47f3826145457dc9273b4917a2187b67c639371343bf5cc51b8f60f43da8b4049bff45b3a3b676d5464cf1efed746d1b90ff8971d09741b0ffbf1bb9572d37f0e81b321b6a027882403cd9e01be833368bd4cd1b4b1b5635c8c2727369e741b81b123ee909cd8cb597ff9fa09f1b527ab0072e8afe8d48755fbf8115ee4c401be369074d589bb928ff9f1b96e77e530a72b20d4689cd3cfa3b324571f82c1a8c49a17727e089a4cd548846d17074ef086effffffff", + "cborBytes": [ + 216, 102, 159, 27, 248, 161, 126, 181, 2, 105, 110, 25, 159, 159, 191, 67, 3, 136, 197, 76, 251, 81, 82, 167, 163, + 37, 88, 254, 185, 172, 200, 19, 73, 46, 245, 104, 104, 169, 135, 111, 98, 40, 27, 246, 251, 198, 188, 71, 243, + 130, 97, 69, 69, 125, 201, 39, 59, 73, 23, 162, 24, 123, 103, 198, 57, 55, 19, 67, 191, 92, 197, 27, 143, 96, 244, + 61, 168, 180, 4, 155, 255, 69, 179, 163, 182, 118, 213, 70, 76, 241, 239, 237, 116, 109, 27, 144, 255, 137, 113, + 208, 151, 65, 176, 255, 191, 27, 185, 87, 45, 55, 240, 232, 27, 50, 27, 106, 2, 120, 130, 64, 60, 217, 224, 27, + 232, 51, 54, 139, 212, 205, 27, 75, 27, 86, 53, 200, 194, 114, 115, 105, 231, 65, 184, 27, 18, 62, 233, 9, 205, + 140, 181, 151, 255, 159, 160, 159, 27, 82, 122, 176, 7, 46, 138, 254, 141, 72, 117, 95, 191, 129, 21, 238, 76, 64, + 27, 227, 105, 7, 77, 88, 155, 185, 40, 255, 159, 27, 150, 231, 126, 83, 10, 114, 178, 13, 70, 137, 205, 60, 250, + 59, 50, 69, 113, 248, 44, 26, 140, 73, 161, 119, 39, 224, 137, 164, 205, 84, 136, 70, 209, 112, 116, 239, 8, 110, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3096, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "54e1a96b94724dc9" + }, + { + "_tag": "ByteArray", + "bytearray": "b3" + } + ] + }, + "cborHex": "d905009f4854e1a96b94724dc941b3ff", + "cborBytes": [217, 5, 0, 159, 72, 84, 225, 169, 107, 148, 114, 77, 201, 65, 179, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3097, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8586990286090664185" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15710033991670623740" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2156610936687283694" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a798f274abdb50b7c788" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9661338947784053405" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17786579059810796480" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bbc9288c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12607481327382316481" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13039239798378831803" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2749309077277879383" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1cdcab2661d2f9b1fd" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7750226536122257333" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1813251134364547820" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b1350d35816e4f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17323438524308472669" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12021501688027802888" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17068701516426617952" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b772b1e2b5c29f8f99fd8669f1bda0540ae1ad6edfc9f9f1b1dedd2387ff7cdee4aa798f274abdb50b7c7881b8613f895c550929d1bf6d69f6ae56c83c0ff44bbc9288cd8669f1baef6c5784efe45c180ffa01bb4f4af8303819fbbffffd8669f1b2627820a10e7ac579f491cdcab2661d2f9b1fdd8669f1b6b8e55f8de5f8fb59f1b1929f64cb85f7aec47b1350d35816e4f1bf069378de9b9435d1ba6d4f417b5a7ed081bece0359867c7a460ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 119, 43, 30, 43, 92, 41, 248, 249, 159, 216, 102, 159, 27, 218, 5, 64, 174, 26, 214, 237, 252, + 159, 159, 27, 29, 237, 210, 56, 127, 247, 205, 238, 74, 167, 152, 242, 116, 171, 219, 80, 183, 199, 136, 27, 134, + 19, 248, 149, 197, 80, 146, 157, 27, 246, 214, 159, 106, 229, 108, 131, 192, 255, 68, 187, 201, 40, 140, 216, 102, + 159, 27, 174, 246, 197, 120, 78, 254, 69, 193, 128, 255, 160, 27, 180, 244, 175, 131, 3, 129, 159, 187, 255, 255, + 216, 102, 159, 27, 38, 39, 130, 10, 16, 231, 172, 87, 159, 73, 28, 220, 171, 38, 97, 210, 249, 177, 253, 216, 102, + 159, 27, 107, 142, 85, 248, 222, 95, 143, 181, 159, 27, 25, 41, 246, 76, 184, 95, 122, 236, 71, 177, 53, 13, 53, + 129, 110, 79, 27, 240, 105, 55, 141, 233, 185, 67, 93, 27, 166, 212, 244, 23, 181, 167, 237, 8, 27, 236, 224, 53, + 152, 103, 199, 164, 96, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3098, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2286441924581672371" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6470094305094166901" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8087498138510173066" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fb" + }, + { + "_tag": "ByteArray", + "bytearray": "a943df" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18303933496628388743" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd6f3a4a7e7b44b8d4d006" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11225674456386978245" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9582294432547140246" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7275996815108227895" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11372349330785804817" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6399" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14689114368223236151" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61407c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17398381049295641304" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33b8f7bcc022e172ab0e545a" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3439496806897874647" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18339513779763738215" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b1fbb12d0fa4045b39fd8669f1b59ca647d8e6a69759f9f1b703c90b52388238a41fb43a943dfff9f1bfe04a2896ae8a3874bfd6f3a4a7e7b44b8d4d0061b9bc99b71211f41c5ffbf1b84fb2604692cf2961b64f9888daf6643371b9dd2b3768b23a2114263991bcbda37b10f0850374361407c1bf17377623e279ad84c33b8f7bcc022e172ab0e545aff809f1b2fbb8c1f653cf6d71bfe830a9da432f667ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 31, 187, 18, 208, 250, 64, 69, 179, 159, 216, 102, 159, 27, 89, 202, 100, 125, 142, 106, 105, + 117, 159, 159, 27, 112, 60, 144, 181, 35, 136, 35, 138, 65, 251, 67, 169, 67, 223, 255, 159, 27, 254, 4, 162, 137, + 106, 232, 163, 135, 75, 253, 111, 58, 74, 126, 123, 68, 184, 212, 208, 6, 27, 155, 201, 155, 113, 33, 31, 65, 197, + 255, 191, 27, 132, 251, 38, 4, 105, 44, 242, 150, 27, 100, 249, 136, 141, 175, 102, 67, 55, 27, 157, 210, 179, + 118, 139, 35, 162, 17, 66, 99, 153, 27, 203, 218, 55, 177, 15, 8, 80, 55, 67, 97, 64, 124, 27, 241, 115, 119, 98, + 62, 39, 154, 216, 76, 51, 184, 247, 188, 192, 34, 225, 114, 171, 14, 84, 90, 255, 128, 159, 27, 47, 187, 140, 31, + 101, 60, 246, 215, 27, 254, 131, 10, 157, 164, 50, 246, 103, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3099, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10592946523287911311" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b9301b4bd3548fb8f9fa0ffff", + "cborBytes": [216, 102, 159, 27, 147, 1, 180, 189, 53, 72, 251, 143, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3100, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11113565389854109133" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe877ff415ea925dde" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f5e0aa184" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed243f12afcf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53c3ec67031fdeb6b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9697938287297342327" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83f9631be0d8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2696849455301597724" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3f74cf2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60fd4532591c" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1863468777806785089" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3789061784453921287" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "72e3db" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a8e87" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18141824624661102414" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37ea5f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13144574929117054299" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "486d9c9f6c0b2a348489" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17504852879186866109" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e61f2272dab95c396a63" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20a2fd5c4682ce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6de7884a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4112013745457820254" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6d3e1e41ffc3584d58d32e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10243848903140183892" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7160198483800227552" + } + } + ] + } + ] + }, + "cborHex": "d9050a9fd8669f1b9a3b50d702546dcd9fbf414d49fe877ff415ea925ddeffbf450f5e0aa18446ed243f12afcf4953c3ec67031fdeb6b51b8695ff7d8c04ab774683f9631be0d81b256d224a83f51a1c44f3f74cf24660fd4532591cffffff1b19dc5efaf7346a411b3495739e1e623a079f4372e3dba0bf431a8e871bfbc4b5606a5bff4e4337ea5f1bb66ae9414d87055b4a486d9c9f6c0b2a3484891bf2edbaf2ed682fbd4ae61f2272dab95c396a634720a2fd5c4682ce45f6de7884a11b3910ceb71189725eff4b6d3e1e41ffc3584d58d32e1b8e29764d9c720f54ff9fa01b635e2295ac33fee0ffff", + "cborBytes": [ + 217, 5, 10, 159, 216, 102, 159, 27, 154, 59, 80, 215, 2, 84, 109, 205, 159, 191, 65, 77, 73, 254, 135, 127, 244, + 21, 234, 146, 93, 222, 255, 191, 69, 15, 94, 10, 161, 132, 70, 237, 36, 63, 18, 175, 207, 73, 83, 195, 236, 103, + 3, 31, 222, 182, 181, 27, 134, 149, 255, 125, 140, 4, 171, 119, 70, 131, 249, 99, 27, 224, 216, 27, 37, 109, 34, + 74, 131, 245, 26, 28, 68, 243, 247, 76, 242, 70, 96, 253, 69, 50, 89, 28, 255, 255, 255, 27, 25, 220, 94, 250, + 247, 52, 106, 65, 27, 52, 149, 115, 158, 30, 98, 58, 7, 159, 67, 114, 227, 219, 160, 191, 67, 26, 142, 135, 27, + 251, 196, 181, 96, 106, 91, 255, 78, 67, 55, 234, 95, 27, 182, 106, 233, 65, 77, 135, 5, 91, 74, 72, 109, 156, + 159, 108, 11, 42, 52, 132, 137, 27, 242, 237, 186, 242, 237, 104, 47, 189, 74, 230, 31, 34, 114, 218, 185, 92, 57, + 106, 99, 71, 32, 162, 253, 92, 70, 130, 206, 69, 246, 222, 120, 132, 161, 27, 57, 16, 206, 183, 17, 137, 114, 94, + 255, 75, 109, 62, 30, 65, 255, 195, 88, 77, 88, 211, 46, 27, 142, 41, 118, 77, 156, 114, 15, 84, 255, 159, 160, + 27, 99, 94, 34, 149, 172, 51, 254, 224, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3101, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15558541712693851114" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2836356178214340280" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32c1e4c3e5b4f25a70cd2a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11269827147030484485" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1aacf95a837" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15258644822063249021" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15766981714169978669" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d0c1314bc09819cee30" + }, + { + "_tag": "ByteArray", + "bytearray": "0fb1b2cf7449d6" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4138493647932019686" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4368336222401729384" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10912185740724669032" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6942080952959362307" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d4eed21" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91426f7a39f5919e4b93f726" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9596006636288484591" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "399476013678320020" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2852288551064761283" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d3cabe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9086372317719085479" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bd7eb0b414836f3ea9f9fbf1b275cc2ea9af346b84b32c1e4c3e5b4f25a70cd2a1b9c66781482ce560546b1aacf95a837ff9f1bd3c1989f34eef67d1bdacf9254fd2e5f2d4a2d0c1314bc09819cee30470fb1b2cf7449d6ff9f1b396ee20bce32d3e6ffbf1b3c9f72a65bba13681b976fdf1daefa0a681b605739d89325e503442d4eed214c91426f7a39f5919e4b93f7261b852bdd31a24424efffffd8669f1b058b39516395d9949f80ffffd8669f1b27955d533b20f3c39f43d3cabe1b7e19477b3696c1a7ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 215, 235, 11, 65, 72, 54, 243, 234, 159, 159, 191, 27, 39, 92, 194, 234, 154, 243, 70, 184, 75, + 50, 193, 228, 195, 229, 180, 242, 90, 112, 205, 42, 27, 156, 102, 120, 20, 130, 206, 86, 5, 70, 177, 170, 207, + 149, 168, 55, 255, 159, 27, 211, 193, 152, 159, 52, 238, 246, 125, 27, 218, 207, 146, 84, 253, 46, 95, 45, 74, 45, + 12, 19, 20, 188, 9, 129, 156, 238, 48, 71, 15, 177, 178, 207, 116, 73, 214, 255, 159, 27, 57, 110, 226, 11, 206, + 50, 211, 230, 255, 191, 27, 60, 159, 114, 166, 91, 186, 19, 104, 27, 151, 111, 223, 29, 174, 250, 10, 104, 27, 96, + 87, 57, 216, 147, 37, 229, 3, 68, 45, 78, 237, 33, 76, 145, 66, 111, 122, 57, 245, 145, 158, 75, 147, 247, 38, 27, + 133, 43, 221, 49, 162, 68, 36, 239, 255, 255, 216, 102, 159, 27, 5, 139, 57, 81, 99, 149, 217, 148, 159, 128, 255, + 255, 216, 102, 159, 27, 39, 149, 93, 83, 59, 32, 243, 195, 159, 67, 211, 202, 190, 27, 126, 25, 71, 123, 54, 150, + 193, 167, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3102, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14396165438612007126" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5331705150039955024" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9ab9c9e3d4047b4f1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df448b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16282264049041663713" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4ff2cf3f2e" + } + ] + }, + "cborHex": "d8669f1bc7c97431383968d69fbf1b49fe0595db40965049e9ab9c9e3d4047b4f143df448b1be1f638e2ae3de6e1ff454ff2cf3f2effff", + "cborBytes": [ + 216, 102, 159, 27, 199, 201, 116, 49, 56, 57, 104, 214, 159, 191, 27, 73, 254, 5, 149, 219, 64, 150, 80, 73, 233, + 171, 156, 158, 61, 64, 71, 180, 241, 67, 223, 68, 139, 27, 225, 246, 56, 226, 174, 61, 230, 225, 255, 69, 79, 242, + 207, 63, 46, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3103, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5294671920562524537" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "901736420718630738" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15427884588811288129" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4040171342625297259" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "92ab760dcb6279" + }, + { + "_tag": "ByteArray", + "bytearray": "79" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9547535917672582220" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6956933532854826586" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12446492906882984969" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84952a7bb7af8f846fa5bbc3" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4756450107458567168" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8440358646718068618" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17141388501115891437" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c0fc27ca" + }, + { + "_tag": "ByteArray", + "bytearray": "421bdcb8" + }, + { + "_tag": "ByteArray", + "bytearray": "0beabc" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "223644ca8b5e40a3b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9360796214230982918" + } + } + ] + }, + "cborHex": "d8669f1b497a740f335d51799fd8669f1b0c839c7f3df757529f1bd61adb4b07d1fe41d8669f1b3811926e2ce4d36b9f4792ab760dcb62794179ffffbf1b847fa95505284c4c1b608bfe304fd0b65a1bacbad35abe2dec094c84952a7bb7af8f846fa5bbc3ff1b42024e2c06efbc00d8669f1b75222d786286f78a9f1bede27205d5fa6eed44c0fc27ca44421bdcb8430beabcffffffff49223644ca8b5e40a3b91b81e83a8fac0f2106ffff", + "cborBytes": [ + 216, 102, 159, 27, 73, 122, 116, 15, 51, 93, 81, 121, 159, 216, 102, 159, 27, 12, 131, 156, 127, 61, 247, 87, 82, + 159, 27, 214, 26, 219, 75, 7, 209, 254, 65, 216, 102, 159, 27, 56, 17, 146, 110, 44, 228, 211, 107, 159, 71, 146, + 171, 118, 13, 203, 98, 121, 65, 121, 255, 255, 191, 27, 132, 127, 169, 85, 5, 40, 76, 76, 27, 96, 139, 254, 48, + 79, 208, 182, 90, 27, 172, 186, 211, 90, 190, 45, 236, 9, 76, 132, 149, 42, 123, 183, 175, 143, 132, 111, 165, + 187, 195, 255, 27, 66, 2, 78, 44, 6, 239, 188, 0, 216, 102, 159, 27, 117, 34, 45, 120, 98, 134, 247, 138, 159, 27, + 237, 226, 114, 5, 213, 250, 110, 237, 68, 192, 252, 39, 202, 68, 66, 27, 220, 184, 67, 11, 234, 188, 255, 255, + 255, 255, 73, 34, 54, 68, 202, 139, 94, 64, 163, 185, 27, 129, 232, 58, 143, 172, 15, 33, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3104, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7855491146023445690" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6267742895463741909" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11388326950169246513" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9462010017422102003" + } + }, + { + "_tag": "ByteArray", + "bytearray": "032c1cac7a8ecae9d5ab" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14397965660730530321" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6558107041074013424" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8accdc8f9bd7ab622344f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17cb15972705dc60b5e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9280908810794180748" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dea7a86f3c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e07ef5cf61bfb5816cdf6d0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb36d992f15d412b4c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1936724247387275762" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe8b10eb2c29" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e45cbc080f7802e297bae34c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1271761546135285258" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d56d24" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4855177810398589915" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3cfff93ebde120" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9740165364246479105" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ab3994d93395fab09dd705e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9739163a00793949e1acd543" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "336e8cbfd67745280593e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10457498303194513749" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79000b79d25f829ca7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4227c4f6c52f1b9648" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e08467b0996bdd0255" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4302b139deb969d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e82fa8a8f967ad5d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7440474707146032258" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b6d044f93bef424ba9fd8669f1b56fb7ef49b9839d59f9f1b9e0b7705f2d87b311b834fcffa9da1cdf34a032c1cac7a8ecae9d5abffa0d8669f1bc7cfd97c181d9a1180ffffffd8669f1b5b03139b863464f09fbf4b8accdc8f9bd7ab622344f94a17cb15972705dc60b5e441a81b80cc69641c2e208c45dea7a86f3c4c5e07ef5cf61bfb5816cdf6d049eb36d992f15d412b4c1b1ae0a071196781f246fe8b10eb2c294ce45cbc080f7802e297bae34cff1b11a634635c652e0a43d56d241b43610e7ea62ab3db473cfff93ebde120ffffa09f1b872c04cb0d798101bf4c2ab3994d93395fab09dd705e4c9739163a00793949e1acd5434b336e8cbfd67745280593e61b91207f4cf128c1554979000b79d25f829ca7494227c4f6c52f1b964849e08467b0996bdd025548c4302b139deb969d48e82fa8a8f967ad5d1b6741e05327b7c482ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 109, 4, 79, 147, 190, 244, 36, 186, 159, 216, 102, 159, 27, 86, 251, 126, 244, 155, 152, 57, + 213, 159, 159, 27, 158, 11, 119, 5, 242, 216, 123, 49, 27, 131, 79, 207, 250, 157, 161, 205, 243, 74, 3, 44, 28, + 172, 122, 142, 202, 233, 213, 171, 255, 160, 216, 102, 159, 27, 199, 207, 217, 124, 24, 29, 154, 17, 128, 255, + 255, 255, 216, 102, 159, 27, 91, 3, 19, 155, 134, 52, 100, 240, 159, 191, 75, 138, 204, 220, 143, 155, 215, 171, + 98, 35, 68, 249, 74, 23, 203, 21, 151, 39, 5, 220, 96, 181, 228, 65, 168, 27, 128, 204, 105, 100, 28, 46, 32, 140, + 69, 222, 167, 168, 111, 60, 76, 94, 7, 239, 92, 246, 27, 251, 88, 22, 205, 246, 208, 73, 235, 54, 217, 146, 241, + 93, 65, 43, 76, 27, 26, 224, 160, 113, 25, 103, 129, 242, 70, 254, 139, 16, 235, 44, 41, 76, 228, 92, 188, 8, 15, + 120, 2, 226, 151, 186, 227, 76, 255, 27, 17, 166, 52, 99, 92, 101, 46, 10, 67, 213, 109, 36, 27, 67, 97, 14, 126, + 166, 42, 179, 219, 71, 60, 255, 249, 62, 189, 225, 32, 255, 255, 160, 159, 27, 135, 44, 4, 203, 13, 121, 129, 1, + 191, 76, 42, 179, 153, 77, 147, 57, 95, 171, 9, 221, 112, 94, 76, 151, 57, 22, 58, 0, 121, 57, 73, 225, 172, 213, + 67, 75, 51, 110, 140, 191, 214, 119, 69, 40, 5, 147, 230, 27, 145, 32, 127, 76, 241, 40, 193, 85, 73, 121, 0, 11, + 121, 210, 95, 130, 156, 167, 73, 66, 39, 196, 246, 197, 47, 27, 150, 72, 73, 224, 132, 103, 176, 153, 107, 221, 2, + 85, 72, 196, 48, 43, 19, 157, 235, 150, 157, 72, 232, 47, 168, 168, 249, 103, 173, 93, 27, 103, 65, 224, 83, 39, + 183, 196, 130, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3105, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6139664943808928815" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dd39bffa8c761f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11019943948600938343" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b553478bcafa65c2f9f9f47dd39bffa8c761f1b98eeb4a295130f67ffffff", + "cborBytes": [ + 216, 102, 159, 27, 85, 52, 120, 188, 175, 166, 92, 47, 159, 159, 71, 221, 57, 191, 250, 140, 118, 31, 27, 152, + 238, 180, 162, 149, 19, 15, 103, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3106, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04e4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "115921aa8c1dcb518f23" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c72284be41df88a174fe3a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24a0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52f21bf380" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5446699351528135309" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "842f023994" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25eecfe4d3abd1e9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb38ffd2334bcee18ef1b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4919110297779854780" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13725321575663572813" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "83d21c66fbe1633e50" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10321493608707064431" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ad0f87308" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1822803510797265505" + } + } + ] + }, + "cborHex": "d905069fbf4204e44a115921aa8c1dcb518f234c0c72284be41df88a174fe3a24224a04552f21bf3801b4b969033ce2f5a8d45842f0239944825eecfe4d3abd1e94bfb38ffd2334bcee18ef1b11b444430c0d6225dbcffd8669f1bbe7a2340d16e974d80ff4983d21c66fbe1633e50bf1b8f3d4fc06273026f456ad0f87308ff1b194be622ac67ea61ff", + "cborBytes": [ + 217, 5, 6, 159, 191, 66, 4, 228, 74, 17, 89, 33, 170, 140, 29, 203, 81, 143, 35, 76, 12, 114, 40, 75, 228, 29, + 248, 138, 23, 79, 227, 162, 66, 36, 160, 69, 82, 242, 27, 243, 128, 27, 75, 150, 144, 51, 206, 47, 90, 141, 69, + 132, 47, 2, 57, 148, 72, 37, 238, 207, 228, 211, 171, 209, 233, 75, 251, 56, 255, 210, 51, 75, 206, 225, 142, 241, + 177, 27, 68, 68, 48, 192, 214, 34, 93, 188, 255, 216, 102, 159, 27, 190, 122, 35, 64, 209, 110, 151, 77, 128, 255, + 73, 131, 210, 28, 102, 251, 225, 99, 62, 80, 191, 27, 143, 61, 79, 192, 98, 115, 2, 111, 69, 106, 208, 248, 115, + 8, 255, 27, 25, 75, 230, 34, 172, 103, 234, 97, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3107, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8160502944482964993" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07010301" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ee7504c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9392da9df4ae2b8e51" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77730ca5" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "acacc07d9f0505d9ac0330" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1362676238566705863" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6b6ff0103e3f007fb57f960" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "61f7f0931629c629a36f" + } + ] + }, + "cborHex": "d8669f1b713fee311a6fb6019f410314d8669f1bfffffffffffffff880ffd87f9fbf4407010301448ee7504c499392da9df4ae2b8e514477730ca5ffbf4bacacc07d9f0505d9ac03301b12e932d1b7a24ac74cf6b6ff0103e3f007fb57f96013ff1bfffffffffffffffcff4a61f7f0931629c629a36fffff", + "cborBytes": [ + 216, 102, 159, 27, 113, 63, 238, 49, 26, 111, 182, 1, 159, 65, 3, 20, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 248, 128, 255, 216, 127, 159, 191, 68, 7, 1, 3, 1, 68, 142, 231, 80, 76, 73, 147, 146, 218, 157, 244, + 174, 43, 142, 81, 68, 119, 115, 12, 165, 255, 191, 75, 172, 172, 192, 125, 159, 5, 5, 217, 172, 3, 48, 27, 18, + 233, 50, 209, 183, 162, 74, 199, 76, 246, 182, 255, 1, 3, 227, 240, 7, 251, 87, 249, 96, 19, 255, 27, 255, 255, + 255, 255, 255, 255, 255, 252, 255, 74, 97, 247, 240, 147, 22, 41, 198, 41, 163, 111, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3108, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10346192454635399196" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "780d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17115137328844036533" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b3db6c" + } + ] + }, + "cborHex": "d8669f1b8f950f38945ea81c9fd8669f1bfffffffffffffff09f42780dffff1bed852eb87fc6d9b5d905078043b3db6cffff", + "cborBytes": [ + 216, 102, 159, 27, 143, 149, 15, 56, 148, 94, 168, 28, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 240, 159, 66, 120, 13, 255, 255, 27, 237, 133, 46, 184, 127, 198, 217, 181, 217, 5, 7, 128, 67, 179, 219, 108, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3109, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7559510911587648961" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9661514238168835313" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8436462843994871890" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5789813983858867371" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e50bf32dc0fab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9120090902666901904" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff5f64" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f002" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b68e8c71f40df05c19f1b86149802be6ea4f1bf1b75145642211898521b50598d247f7f3cab479e50bf32dc0fab1b7e91125b0cbb799043ff5f6442f002ffffff", + "cborBytes": [ + 216, 102, 159, 27, 104, 232, 199, 31, 64, 223, 5, 193, 159, 27, 134, 20, 152, 2, 190, 110, 164, 241, 191, 27, 117, + 20, 86, 66, 33, 24, 152, 82, 27, 80, 89, 141, 36, 127, 127, 60, 171, 71, 158, 80, 191, 50, 220, 15, 171, 27, 126, + 145, 18, 91, 12, 187, 121, 144, 67, 255, 95, 100, 66, 240, 2, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3110, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c833323eff4a579fc9e70438" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "276cd21daecca320e129" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f9f4cc833323eff4a579fc9e70438a0ff9f9f4a276cd21daecca320e129ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 159, 76, 200, 51, 50, 62, 255, 74, 87, 159, 201, + 231, 4, 56, 160, 255, 159, 159, 74, 39, 108, 210, 29, 174, 204, 163, 32, 225, 41, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3111, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d2985293de2b4aafecb4c1" + }, + { + "_tag": "ByteArray", + "bytearray": "06" + } + ] + }, + "cborHex": "d8799f4bd2985293de2b4aafecb4c14106ff", + "cborBytes": [216, 121, 159, 75, 210, 152, 82, 147, 222, 43, 74, 175, 236, 180, 193, 65, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3112, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10005205125405182421" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15221321945254787670" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11792455043298236002" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14898501154981753317" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cba224eb" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7678810464843173303" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4064146481839327008" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4b5706" + }, + { + "_tag": "ByteArray", + "bytearray": "102db00e5468ce" + } + ] + } + ] + }, + "cborHex": "d8669f1b8ad9a10d3cb189d59f1bd33cffa9c6c4fa569f1ba3a73761fd8e1662bf1bcec21bdd646f31e544cba224ebffbf1b6a909d6f06878db71b3866bfb1452fc720ffff9f434b570647102db00e5468ceffffff", + "cborBytes": [ + 216, 102, 159, 27, 138, 217, 161, 13, 60, 177, 137, 213, 159, 27, 211, 60, 255, 169, 198, 196, 250, 86, 159, 27, + 163, 167, 55, 97, 253, 142, 22, 98, 191, 27, 206, 194, 27, 221, 100, 111, 49, 229, 68, 203, 162, 36, 235, 255, + 191, 27, 106, 144, 157, 111, 6, 135, 141, 183, 27, 56, 102, 191, 177, 69, 47, 199, 32, 255, 255, 159, 67, 75, 87, + 6, 71, 16, 45, 176, 14, 84, 104, 206, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3113, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9612975171088682808" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "47" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a307" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2683486880165443200" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b856825fc83640f389f8041479f9f42a3071b253da9198baeb680ff01ffffff", + "cborBytes": [ + 216, 102, 159, 27, 133, 104, 37, 252, 131, 100, 15, 56, 159, 128, 65, 71, 159, 159, 66, 163, 7, 27, 37, 61, 169, + 25, 139, 174, 182, 128, 255, 1, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3114, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10577712584399909024" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "669a4c3f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08ac40" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81d365d8d2312a54b4e16c89" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15063477837305242805" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be02607d6cf0c1f22cf9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7325548517087388671" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8569583713051503627" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15999809141487004995" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18028470169560724157" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14476824607721453207" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15dc2ce622cd11" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b92cb958d6955f0a09fbf44669a4c3f4308ac404c81d365d8d2312a54b4e16c891bd10c3948868c64b54abe02607d6cf0c1f22cf91b65a9939059e223ffff1b76ed46fbc1686c0bbf1bde0abda4c0616d431bfa31fe19ac64b2bdff416fbf1bc8e803477adef6974715dc2ce622cd11ffffff", + "cborBytes": [ + 216, 102, 159, 27, 146, 203, 149, 141, 105, 85, 240, 160, 159, 191, 68, 102, 154, 76, 63, 67, 8, 172, 64, 76, 129, + 211, 101, 216, 210, 49, 42, 84, 180, 225, 108, 137, 27, 209, 12, 57, 72, 134, 140, 100, 181, 74, 190, 2, 96, 125, + 108, 240, 193, 242, 44, 249, 27, 101, 169, 147, 144, 89, 226, 35, 255, 255, 27, 118, 237, 70, 251, 193, 104, 108, + 11, 191, 27, 222, 10, 189, 164, 192, 97, 109, 67, 27, 250, 49, 254, 25, 172, 100, 178, 189, 255, 65, 111, 191, 27, + 200, 232, 3, 71, 122, 222, 246, 151, 71, 21, 220, 44, 230, 34, 205, 17, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3115, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dfaf17b7ec5c7e622105" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9f4adfaf17b7ec5c7e622105ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 74, 223, 175, 23, 183, 236, 92, 126, 98, 33, 5, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3116, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10738662296434735569" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bbbf3d7f702fe3cc9d200b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10484248169067887888" + } + } + ] + }, + "cborHex": "d8669f1b9507647675df79d19f4bbbbf3d7f702fe3cc9d200b1b917f88296e54bd10ffff", + "cborBytes": [ + 216, 102, 159, 27, 149, 7, 100, 118, 117, 223, 121, 209, 159, 75, 187, 191, 61, 127, 112, 47, 227, 204, 157, 32, + 11, 27, 145, 127, 136, 41, 110, 84, 189, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3117, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2917282700807909411" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13815698799003130435" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11690435589156196449" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4699172377558660990" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1906a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e401d" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "63d622ae" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0e77788584171cb2a81a0e25" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7267789328229495084" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12063900595646279617" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12251387982082094869" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "027af395" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11608289144260175496" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a94af18998a8e0b0f830" + }, + { + "_tag": "ByteArray", + "bytearray": "c411410ada2964" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2607928297037909403" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "711694fb3c12" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1483199180303426131" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3614892934410908596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10607807282264899582" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "411a23316c1470" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16547279422377211324" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22de2fbc64c3176b8bba86ef" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b287c4528f30c30239f9f1bbfbb38dbe65f5a43bf1ba23cc53ad13d50611b4136d0614eb6377e43a1906a432e401dff4463d622aeff4c0e77788584171cb2a81a0e259fd8669f1b64dc5fe33b7e712c9f1ba76b95aca91eafc11baa05ac75857e3715ffff44027af3951ba118ed792da6a6889f4aa94af18998a8e0b0f83047c411410ada29641b243138f800a24d9bff46711694fb3c12ffbf1b149561cbd122e2531b322aadf8a8a1b3b41b9336808549337ffe47411a23316c14701be5a3bef6a1ecb5bc4c22de2fbc64c3176b8bba86efffffff", + "cborBytes": [ + 216, 102, 159, 27, 40, 124, 69, 40, 243, 12, 48, 35, 159, 159, 27, 191, 187, 56, 219, 230, 95, 90, 67, 191, 27, + 162, 60, 197, 58, 209, 61, 80, 97, 27, 65, 54, 208, 97, 78, 182, 55, 126, 67, 161, 144, 106, 67, 46, 64, 29, 255, + 68, 99, 214, 34, 174, 255, 76, 14, 119, 120, 133, 132, 23, 28, 178, 168, 26, 14, 37, 159, 216, 102, 159, 27, 100, + 220, 95, 227, 59, 126, 113, 44, 159, 27, 167, 107, 149, 172, 169, 30, 175, 193, 27, 170, 5, 172, 117, 133, 126, + 55, 21, 255, 255, 68, 2, 122, 243, 149, 27, 161, 24, 237, 121, 45, 166, 166, 136, 159, 74, 169, 74, 241, 137, 152, + 168, 224, 176, 248, 48, 71, 196, 17, 65, 10, 218, 41, 100, 27, 36, 49, 56, 248, 0, 162, 77, 155, 255, 70, 113, 22, + 148, 251, 60, 18, 255, 191, 27, 20, 149, 97, 203, 209, 34, 226, 83, 27, 50, 42, 173, 248, 168, 161, 179, 180, 27, + 147, 54, 128, 133, 73, 51, 127, 254, 71, 65, 26, 35, 49, 108, 20, 112, 27, 229, 163, 190, 246, 161, 236, 181, 188, + 76, 34, 222, 47, 188, 100, 195, 23, 107, 139, 186, 134, 239, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3118, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "ByteArray", + "bytearray": "44486cfb3efe0a05" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f93801" + }, + { + "_tag": "ByteArray", + "bytearray": "02ac960767fb" + } + ] + } + ] + } + ] + }, + "cborHex": "d905059f9f41ffff1bffffffffffffffed4844486cfb3efe0a05d8669f1bfffffffffffffff79f9f43f938014602ac960767fbffffffff", + "cborBytes": [ + 217, 5, 5, 159, 159, 65, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 237, 72, 68, 72, 108, 251, 62, 254, 10, + 5, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 159, 67, 249, 56, 1, 70, 2, 172, 150, 7, 103, + 251, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3119, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bcc278afb8b4b7e5e2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12838363606230842500" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4179099322738877890" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "38" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7694571100957569671" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "776d2d0d670a631b85d4ef" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3647102902985889244" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10811843550037323737" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0ecd99693855d069905" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1531874659296121268" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1b9a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "330974297057690519" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14991127156362907598" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "864927000622671268" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2576f7f8ee04ae1b9683b99" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2271097870139109065" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57b4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8681596058235804216" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5e5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12863486461339333848" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10016113839569393925" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18249485388066750233" + } + } + ] + } + ] + }, + "cborHex": "d9050c9f49bcc278afb8b4b7e5e2d8669f1bb22b07ade6b13c849fd8669f1b39ff24b134ed25c29f4138ffffd8669f1b6ac89ba6138ff2879f4b776d2d0d670a631b85d4efffff1b329d1cc45fc515dcd8669f1b960b626cd712afd99f4ac0ecd99693855d0699051b15424fe2ebc491b4ffff421b9affff9fbf1b0497db5e9de883971bd00b2eb8e9b90fce1b0c00d68644c225a44cd2576f7f8ee04ae1b9683b991b1f848f7ae7c9aec94257b41b787b399e2e939a3842a5e51bb28448c86d2d74d81b8b0062782d685905ff1bfd43324541667f19ffff", + "cborBytes": [ + 217, 5, 12, 159, 73, 188, 194, 120, 175, 184, 180, 183, 229, 226, 216, 102, 159, 27, 178, 43, 7, 173, 230, 177, + 60, 132, 159, 216, 102, 159, 27, 57, 255, 36, 177, 52, 237, 37, 194, 159, 65, 56, 255, 255, 216, 102, 159, 27, + 106, 200, 155, 166, 19, 143, 242, 135, 159, 75, 119, 109, 45, 13, 103, 10, 99, 27, 133, 212, 239, 255, 255, 27, + 50, 157, 28, 196, 95, 197, 21, 220, 216, 102, 159, 27, 150, 11, 98, 108, 215, 18, 175, 217, 159, 74, 192, 236, + 217, 150, 147, 133, 93, 6, 153, 5, 27, 21, 66, 79, 226, 235, 196, 145, 180, 255, 255, 66, 27, 154, 255, 255, 159, + 191, 27, 4, 151, 219, 94, 157, 232, 131, 151, 27, 208, 11, 46, 184, 233, 185, 15, 206, 27, 12, 0, 214, 134, 68, + 194, 37, 164, 76, 210, 87, 111, 127, 142, 224, 74, 225, 185, 104, 59, 153, 27, 31, 132, 143, 122, 231, 201, 174, + 201, 66, 87, 180, 27, 120, 123, 57, 158, 46, 147, 154, 56, 66, 165, 229, 27, 178, 132, 72, 200, 109, 45, 116, 216, + 27, 139, 0, 98, 120, 45, 104, 89, 5, 255, 27, 253, 67, 50, 69, 65, 102, 127, 25, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3120, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16293232128874412801" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9f1be21d304bc48a7b01ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 27, 226, 29, 48, 75, 196, 138, 123, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3121, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14013137976799625784" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14078199704193427393" + } + } + ] + }, + "cborHex": "d8669f1bc278aabebfad82389f1bc35fd00a9d7567c1ffff", + "cborBytes": [ + 216, 102, 159, 27, 194, 120, 170, 190, 191, 173, 130, 56, 159, 27, 195, 95, 208, 10, 157, 117, 103, 193, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3122, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7066636647307616093" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3127a46374e2c67b164c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3024867090309764100" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63dd33e43a739e9f8962" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11779247443219685839" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e429ed1f8f44b47" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3693828005463919519" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8283878050023489166" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f30" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67b4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8ee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f028a491c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11629236707350638932" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74a2a7c9a31b4a6317" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12959007506390547434" + } + }, + { + "_tag": "ByteArray", + "bytearray": "23afa79d089420a6" + }, + { + "_tag": "ByteArray", + "bytearray": "f5d3" + }, + { + "_tag": "ByteArray", + "bytearray": "c5aee9ac8db9757bde7ec1" + }, + { + "_tag": "ByteArray", + "bytearray": "f3" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5310654535937117653" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2678b0a8436ca5300991" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5881174190371189402" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5685484046182391276" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "41" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12691846921062882120" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "66d5cb358660c1d0cf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "748799822119901697" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4480618838704174997" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c041103b1" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c3b31aaa68f645" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12763296077192400333" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6615386721629084870" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11137983499450875627" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0acf13667227" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2753411952573155991" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "368ecab3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6007072222073933625" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5775b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14167084591329497705" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9582323559577916927" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2833975295883471254" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10460125886623883246" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12924129608645437739" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17924675504401481449" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5618921710296120667" + } + } + ] + }, + "cborHex": "d8669f1b6211bc970f871f5d9fbf4a3127a46374e2c67b164c1b29fa7c979aaed4044a63dd33e43a739e9f89621ba3784b23f689a1cf486e429ed1f8f44b471b33431d000f110b9f41801b72f63f32564e3e8e429f304267b442a8ee459f028a491cff9f1ba163592bc69171544974a2a7c9a31b4a63179f1bb3d7a4aad4077bea4823afa79d089420a642f5d34bc5aee9ac8db9757bde7ec141f3ff1b49b33c29d3594dd59f4a2678b0a8436ca53009911b519e20c42f45329a1b4ee6e59df4da1decffff4141d8669f1bb0227f87c9969b489f9f4966d5cb358660c1d0cf1b0a6445788d551a011b3e2e5b182ee2b795452c041103b1ff47c3b31aaa68f6459f1bb1205628cc308dcd1b5bce932c6a899cc61b9a9210fb2eee7eebffbf460acf136672271b2636159529700a9744368ecab31b535d685bf0d54f3943e5775b1bc49b9860191ad269ffd8669f1b84fb4082137f95ff9f1b27544d843d5de9961b9129d512e2159fee1bb35bbb67726b692b1bf8c13d66f9fefee9ffffffff1b4dfa6b8672ee3d5bffff", + "cborBytes": [ + 216, 102, 159, 27, 98, 17, 188, 151, 15, 135, 31, 93, 159, 191, 74, 49, 39, 164, 99, 116, 226, 198, 123, 22, 76, + 27, 41, 250, 124, 151, 154, 174, 212, 4, 74, 99, 221, 51, 228, 58, 115, 158, 159, 137, 98, 27, 163, 120, 75, 35, + 246, 137, 161, 207, 72, 110, 66, 158, 209, 248, 244, 75, 71, 27, 51, 67, 29, 0, 15, 17, 11, 159, 65, 128, 27, 114, + 246, 63, 50, 86, 78, 62, 142, 66, 159, 48, 66, 103, 180, 66, 168, 238, 69, 159, 2, 138, 73, 28, 255, 159, 27, 161, + 99, 89, 43, 198, 145, 113, 84, 73, 116, 162, 167, 201, 163, 27, 74, 99, 23, 159, 27, 179, 215, 164, 170, 212, 7, + 123, 234, 72, 35, 175, 167, 157, 8, 148, 32, 166, 66, 245, 211, 75, 197, 174, 233, 172, 141, 185, 117, 123, 222, + 126, 193, 65, 243, 255, 27, 73, 179, 60, 41, 211, 89, 77, 213, 159, 74, 38, 120, 176, 168, 67, 108, 165, 48, 9, + 145, 27, 81, 158, 32, 196, 47, 69, 50, 154, 27, 78, 230, 229, 157, 244, 218, 29, 236, 255, 255, 65, 65, 216, 102, + 159, 27, 176, 34, 127, 135, 201, 150, 155, 72, 159, 159, 73, 102, 213, 203, 53, 134, 96, 193, 208, 207, 27, 10, + 100, 69, 120, 141, 85, 26, 1, 27, 62, 46, 91, 24, 46, 226, 183, 149, 69, 44, 4, 17, 3, 177, 255, 71, 195, 179, 26, + 170, 104, 246, 69, 159, 27, 177, 32, 86, 40, 204, 48, 141, 205, 27, 91, 206, 147, 44, 106, 137, 156, 198, 27, 154, + 146, 16, 251, 46, 238, 126, 235, 255, 191, 70, 10, 207, 19, 102, 114, 39, 27, 38, 54, 21, 149, 41, 112, 10, 151, + 68, 54, 142, 202, 179, 27, 83, 93, 104, 91, 240, 213, 79, 57, 67, 229, 119, 91, 27, 196, 155, 152, 96, 25, 26, + 210, 105, 255, 216, 102, 159, 27, 132, 251, 64, 130, 19, 127, 149, 255, 159, 27, 39, 84, 77, 132, 61, 93, 233, + 150, 27, 145, 41, 213, 18, 226, 21, 159, 238, 27, 179, 91, 187, 103, 114, 107, 105, 43, 27, 248, 193, 61, 102, + 249, 254, 254, 233, 255, 255, 255, 255, 27, 77, 250, 107, 134, 114, 238, 61, 91, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3123, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15166897094982792680" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1357756603460008417" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ea6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "814fd47005500eb46eae07" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5488213247814345901" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bd27ba48cdb5a75e89fd8669f1b12d7b86fe8acb9e19f80bf426ea64b814fd47005500eb46eae07ff1b4c2a0cdeff9124adffffffff", + "cborBytes": [ + 216, 102, 159, 27, 210, 123, 164, 140, 219, 90, 117, 232, 159, 216, 102, 159, 27, 18, 215, 184, 111, 232, 172, + 185, 225, 159, 128, 191, 66, 110, 166, 75, 129, 79, 212, 112, 5, 80, 14, 180, 110, 174, 7, 255, 27, 76, 42, 12, + 222, 255, 145, 36, 173, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3124, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5548171703884623932" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "918560023614970679" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ad0dc9115bead4288" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "536511717176574083" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d307d98" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14936311683542692786" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41b508d415a44d943bb1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16319074389016155425" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58666c7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7697" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b31242ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16296701971815801213" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b4cff10c4eaeab03c9fd8669f1b0cbf61798871db3780ffbf492ad0dc9115bead42881b0772129070250083442d307d981bcf487057181433b24a41b508d415a44d943bb11be278ffb1d47b95214458666c7f42769744b31242ec1be2298419887d217dffffff", + "cborBytes": [ + 216, 102, 159, 27, 76, 255, 16, 196, 234, 234, 176, 60, 159, 216, 102, 159, 27, 12, 191, 97, 121, 136, 113, 219, + 55, 128, 255, 191, 73, 42, 208, 220, 145, 21, 190, 173, 66, 136, 27, 7, 114, 18, 144, 112, 37, 0, 131, 68, 45, 48, + 125, 152, 27, 207, 72, 112, 87, 24, 20, 51, 178, 74, 65, 181, 8, 212, 21, 164, 77, 148, 59, 177, 27, 226, 120, + 255, 177, 212, 123, 149, 33, 68, 88, 102, 108, 127, 66, 118, 151, 68, 179, 18, 66, 236, 27, 226, 41, 132, 25, 136, + 125, 33, 125, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3125, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8439734289611698962" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a658c1b7deb3e78541" + } + ] + }, + "cborHex": "d8669f1b751ff59eeafd33129f1449a658c1b7deb3e78541ffff", + "cborBytes": [ + 216, 102, 159, 27, 117, 31, 245, 158, 234, 253, 51, 18, 159, 20, 73, 166, 88, 193, 183, 222, 179, 231, 133, 65, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3126, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17784042307486372584" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "498e3f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a560" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6b971cfc58b81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12638075215779907562" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bf6cd9c41383e52e89f01bf43498e3f42a56047e6b971cfc58b811baf637673093ac7eaffffff", + "cborBytes": [ + 216, 102, 159, 27, 246, 205, 156, 65, 56, 62, 82, 232, 159, 1, 191, 67, 73, 142, 63, 66, 165, 96, 71, 230, 185, + 113, 207, 197, 139, 129, 27, 175, 99, 118, 115, 9, 58, 199, 234, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3127, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10432907640207158498" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01" + } + ] + }, + "cborHex": "d8669f1b90c922390d01ace29f4101ffff", + "cborBytes": [216, 102, 159, 27, 144, 201, 34, 57, 13, 1, 172, 226, 159, 65, 1, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3128, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4917821594772187673" + }, + "fields": [] + }, + "cborHex": "d8669f1b443f9caf49242a1980ff", + "cborBytes": [216, 102, 159, 27, 68, 63, 156, 175, 73, 36, 42, 25, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3129, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "13591b9e69" + } + ] + }, + "cborHex": "d8799f4513591b9e69ff", + "cborBytes": [216, 121, 159, 69, 19, 89, 27, 158, 105, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3130, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6943431381239293603" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b605c060da91166a39f80bf0a02ffffff", + "cborBytes": [216, 102, 159, 27, 96, 92, 6, 13, 169, 17, 102, 163, 159, 128, 191, 10, 2, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3131, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6364837898350534183" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1296630540905364053" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7981731213927325218" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eca2b45c41ba94e9767d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2594316306530458300" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5909623854223998333" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2cc2759b7709778ca4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9667670632163896429" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7429625954726682248" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10831146374571513763" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2504648365184355380" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12411108575084553252" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ac4359fbad05ad2975a7da5" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12270735754086744870" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8aeb9fc32d5dd94eb91eb1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18329753205463131134" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13455723802143244932" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "920c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26a3fe44e91585" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3f857a7159d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11395728803389757557" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b58547258a0209e279fd8669f1b11fe8e9b6b963a559f9f1b6ec4ce4002c91e22ff9f4aeca2b45c41ba94e9767d1b2400dcef7dc05abcff1b52033395bb323d7dffff492cc2759b7709778ca4bf1b862a7737eb9aec6d1b671b557125819e881b964ff63de69857a31b22c24c6afe138c341bac3d1d7dfeb824244c2ac4359fbad05ad2975a7da5ffbf1baa4a6927bb0683264b8aeb9fc32d5dd94eb91eb11bfe605d6cd83523fe1bbabc5581ae84428442920c4726a3fe44e9158546a3f857a7159d1b9e25c2f832bbd875ffffff", + "cborBytes": [ + 216, 102, 159, 27, 88, 84, 114, 88, 160, 32, 158, 39, 159, 216, 102, 159, 27, 17, 254, 142, 155, 107, 150, 58, 85, + 159, 159, 27, 110, 196, 206, 64, 2, 201, 30, 34, 255, 159, 74, 236, 162, 180, 92, 65, 186, 148, 233, 118, 125, 27, + 36, 0, 220, 239, 125, 192, 90, 188, 255, 27, 82, 3, 51, 149, 187, 50, 61, 125, 255, 255, 73, 44, 194, 117, 155, + 119, 9, 119, 140, 164, 191, 27, 134, 42, 119, 55, 235, 154, 236, 109, 27, 103, 27, 85, 113, 37, 129, 158, 136, 27, + 150, 79, 246, 61, 230, 152, 87, 163, 27, 34, 194, 76, 106, 254, 19, 140, 52, 27, 172, 61, 29, 125, 254, 184, 36, + 36, 76, 42, 196, 53, 159, 186, 208, 90, 210, 151, 90, 125, 165, 255, 191, 27, 170, 74, 105, 39, 187, 6, 131, 38, + 75, 138, 235, 159, 195, 45, 93, 217, 78, 185, 30, 177, 27, 254, 96, 93, 108, 216, 53, 35, 254, 27, 186, 188, 85, + 129, 174, 132, 66, 132, 66, 146, 12, 71, 38, 163, 254, 68, 233, 21, 133, 70, 163, 248, 87, 167, 21, 157, 27, 158, + 37, 194, 248, 50, 187, 216, 117, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3132, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14513681189096676460" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16762248085788152909" + } + } + ] + }, + "cborHex": "d8669f1bc96af4250b605c6c9f1be89f77d2e65fd44dffff", + "cborBytes": [ + 216, 102, 159, 27, 201, 106, 244, 37, 11, 96, 92, 108, 159, 27, 232, 159, 119, 210, 230, 95, 212, 77, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3133, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17583870055515334161" + }, + "fields": [] + }, + "cborHex": "d8669f1bf40674a6f39ea61180ff", + "cborBytes": [216, 102, 159, 27, 244, 6, 116, 166, 243, 158, 166, 17, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3134, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2391305446697821735" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17132023799321411106" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1155851002660957242" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17657350029621427337" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fea60210fb15ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49a6feb488a3ff" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b212f9fa253e166279fbf011bedc12ce04a173e221b100a685ceae2ac3a1bf50b824c9e517c891bffffffffffffffeb47fea60210fb15ff1bfffffffffffffff84749a6feb488a3ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 33, 47, 159, 162, 83, 225, 102, 39, 159, 191, 1, 27, 237, 193, 44, 224, 74, 23, 62, 34, 27, 16, + 10, 104, 92, 234, 226, 172, 58, 27, 245, 11, 130, 76, 158, 81, 124, 137, 27, 255, 255, 255, 255, 255, 255, 255, + 235, 71, 254, 166, 2, 16, 251, 21, 255, 27, 255, 255, 255, 255, 255, 255, 255, 248, 71, 73, 166, 254, 180, 136, + 163, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3135, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10972376106499134256" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f9ee9afd033eff968022" + } + ] + }, + "cborHex": "d8669f1b9845b5ef49dd53309f4af9ee9afd033eff968022ffff", + "cborBytes": [ + 216, 102, 159, 27, 152, 69, 181, 239, 73, 221, 83, 48, 159, 74, 249, 238, 154, 253, 3, 62, 255, 150, 128, 34, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3136, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2577754842024153559" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5513005191452966019" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8948355749383232813" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6528749437413212302" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6911089350650049106" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3246516064083701283" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3120ac" + }, + { + "_tag": "ByteArray", + "bytearray": "77d781e6" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1182719144235976866" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "378830" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14422088228036655224" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51f93091465f8fe9" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8061024553809313922" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "025a6dc09f27" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14508629814176439766" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3bcd32a5c60ac216a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15503903834127371076" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1de3" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b23c6065f0ce491d79f9fd8669f1b4c82210331703c839f1b7c2ef224c5cfdd2dffff1b5a9ac705c48bc08e9f1b5fe91f25dc7b32521b2d0df128d54eee23433120ac4477d781e6ffbf1b1069dccb9d3d48a2433788301bc8258cd4f777b8784851f93091465f8fe9ffbf1b6fde831f5f81808246025a6dc09f271bc95901f22ba0ddd649a3bcd32a5c60ac216a1bd728ee64d8fa8b44421de3ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 35, 198, 6, 95, 12, 228, 145, 215, 159, 159, 216, 102, 159, 27, 76, 130, 33, 3, 49, 112, 60, + 131, 159, 27, 124, 46, 242, 36, 197, 207, 221, 45, 255, 255, 27, 90, 154, 199, 5, 196, 139, 192, 142, 159, 27, 95, + 233, 31, 37, 220, 123, 50, 82, 27, 45, 13, 241, 40, 213, 78, 238, 35, 67, 49, 32, 172, 68, 119, 215, 129, 230, + 255, 191, 27, 16, 105, 220, 203, 157, 61, 72, 162, 67, 55, 136, 48, 27, 200, 37, 140, 212, 247, 119, 184, 120, 72, + 81, 249, 48, 145, 70, 95, 143, 233, 255, 191, 27, 111, 222, 131, 31, 95, 129, 128, 130, 70, 2, 90, 109, 192, 159, + 39, 27, 201, 89, 1, 242, 43, 160, 221, 214, 73, 163, 188, 211, 42, 92, 96, 172, 33, 106, 27, 215, 40, 238, 100, + 216, 250, 139, 68, 66, 29, 227, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3137, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2624026904214462048" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "26ddf3" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4069591171018618395" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8923434641242865697" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6038467086049495480" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a4e60db183dbd0ab" + } + ] + } + ] + }, + "cborHex": "d8669f1b246a6a9112c55e609f4326ddf3a09fd8669f1b387a179bc1a1761b9f1b7bd668871fb240211b53ccf1d253de49b8ffff48a4e60db183dbd0abffffff", + "cborBytes": [ + 216, 102, 159, 27, 36, 106, 106, 145, 18, 197, 94, 96, 159, 67, 38, 221, 243, 160, 159, 216, 102, 159, 27, 56, + 122, 23, 155, 193, 161, 118, 27, 159, 27, 123, 214, 104, 135, 31, 178, 64, 33, 27, 83, 204, 241, 210, 83, 222, 73, + 184, 255, 255, 72, 164, 230, 13, 177, 131, 219, 208, 171, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3138, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18149475243134752467" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3882924793723290309" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "704954138905717129" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1dc999" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1f533cfa5fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43bbed214cf8ef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41e6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47dc2ec0a6cb8131e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11921043418474054986" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a38e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7716deee" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5e84" + }, + { + "_tag": "ByteArray", + "bytearray": "4f847717d118c12e44592005" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7911461767660503143" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17153875755302601874" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10975354254473026198" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3097200873104345940" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5288371459263133257" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18362008563694035526" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15644100220337900732" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13500683499061102726" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f70d6f5df0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9580016785784679349" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8305054519049180065" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "600350470806352504" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15209394302059643353" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3896826641301020108" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfbdfe392d6cb16d39f9f1b35e2eb86fb6f02c51b09c8800de86aa989bf431dc99946e1f533cfa5fb4743bbed214cf8ef4241e64947dc2ec0a6cb8131e11ba5700dd42627854a42a38e447716deeeff9f425e844c4f847717d118c12e44592005ffffd8669f1b6dcb288f9b7d006780ffd8669f1bee0ecf1d43ff44929f1b98504a8b65efda961b2afb77c8cf6a0b541b496411d2bdb176499f1bfed2f580a9a9e2461bd91b0243afd9ccbcffffffd8669f1bbb5c101cda83c8869f45f70d6f5df01b84f30e8272f9abb51b73417b15402dd3a1ffffd8669f1b0854df928926b2789fd8669f1bd3129f88ef1d81d99f1b36144f2f1a069dccffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 251, 223, 227, 146, 214, 203, 22, 211, 159, 159, 27, 53, 226, 235, 134, 251, 111, 2, 197, 27, + 9, 200, 128, 13, 232, 106, 169, 137, 191, 67, 29, 201, 153, 70, 225, 245, 51, 207, 165, 251, 71, 67, 187, 237, 33, + 76, 248, 239, 66, 65, 230, 73, 71, 220, 46, 192, 166, 203, 129, 49, 225, 27, 165, 112, 13, 212, 38, 39, 133, 74, + 66, 163, 142, 68, 119, 22, 222, 238, 255, 159, 66, 94, 132, 76, 79, 132, 119, 23, 209, 24, 193, 46, 68, 89, 32, 5, + 255, 255, 216, 102, 159, 27, 109, 203, 40, 143, 155, 125, 0, 103, 128, 255, 216, 102, 159, 27, 238, 14, 207, 29, + 67, 255, 68, 146, 159, 27, 152, 80, 74, 139, 101, 239, 218, 150, 27, 42, 251, 119, 200, 207, 106, 11, 84, 27, 73, + 100, 17, 210, 189, 177, 118, 73, 159, 27, 254, 210, 245, 128, 169, 169, 226, 70, 27, 217, 27, 2, 67, 175, 217, + 204, 188, 255, 255, 255, 216, 102, 159, 27, 187, 92, 16, 28, 218, 131, 200, 134, 159, 69, 247, 13, 111, 93, 240, + 27, 132, 243, 14, 130, 114, 249, 171, 181, 27, 115, 65, 123, 21, 64, 45, 211, 161, 255, 255, 216, 102, 159, 27, 8, + 84, 223, 146, 137, 38, 178, 120, 159, 216, 102, 159, 27, 211, 18, 159, 136, 239, 29, 129, 217, 159, 27, 54, 20, + 79, 47, 26, 6, 157, 204, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3139, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17369421648855066793" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8312938661710730171" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2670732597334996805" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18229282015759886715" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a41b3c5e5cdc7088c891" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "facf97e32b99" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0d3d7fec7" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4110676163047511503" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3e29e956dba0b5cada" + }, + { + "_tag": "ByteArray", + "bytearray": "f9573185b275dba870d8" + } + ] + } + ] + }, + "cborHex": "d8669f1bf10c94f665fc68a99f021b735d7dab42e113bb9fbf1b25105925aa3577451bfcfb6b6913c8e97b4aa41b3c5e5cdc7088c89146facf97e32b9942ca0045d0d3d7fec7ff1b390c0e30e51cd5cf493e29e956dba0b5cada4af9573185b275dba870d8ffffff", + "cborBytes": [ + 216, 102, 159, 27, 241, 12, 148, 246, 101, 252, 104, 169, 159, 2, 27, 115, 93, 125, 171, 66, 225, 19, 187, 159, + 191, 27, 37, 16, 89, 37, 170, 53, 119, 69, 27, 252, 251, 107, 105, 19, 200, 233, 123, 74, 164, 27, 60, 94, 92, + 220, 112, 136, 200, 145, 70, 250, 207, 151, 227, 43, 153, 66, 202, 0, 69, 208, 211, 215, 254, 199, 255, 27, 57, + 12, 14, 48, 229, 28, 213, 207, 73, 62, 41, 233, 86, 219, 160, 181, 202, 218, 74, 249, 87, 49, 133, 178, 117, 219, + 168, 112, 216, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3140, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14433088243792006026" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ef7ecdf7888368e885" + } + ] + }, + "cborHex": "d8669f1bc84ca149b716cb8a9f49ef7ecdf7888368e885ffff", + "cborBytes": [ + 216, 102, 159, 27, 200, 76, 161, 73, 183, 22, 203, 138, 159, 73, 239, 126, 205, 247, 136, 131, 104, 232, 133, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3141, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10985582747080516228" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2316889765226172446" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2164748199865742785" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13692084772392344991" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1817810642311187543" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18351008272224547535" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d9050d9fd8669f1b9874a14dea64e2849f9f1b20273ef7500b501e1b1e0abb04b929f5c1ffffff1bbe040e8e84fb1d9f41ea1b193a2925e3e20c579f1bfeabe0cbb832f2cfa0ffff", + "cborBytes": [ + 217, 5, 13, 159, 216, 102, 159, 27, 152, 116, 161, 77, 234, 100, 226, 132, 159, 159, 27, 32, 39, 62, 247, 80, 11, + 80, 30, 27, 30, 10, 187, 4, 185, 41, 245, 193, 255, 255, 255, 27, 190, 4, 14, 142, 132, 251, 29, 159, 65, 234, 27, + 25, 58, 41, 37, 227, 226, 12, 87, 159, 27, 254, 171, 224, 203, 184, 50, 242, 207, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3142, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f5a025544376bd5391" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5876835921647036076" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18068850342627718179" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5286273456527499672" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4126248992816561712" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "234894337885540178" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4393203228660841651" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "561231452243576829" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4881d1399d0655c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18427309435519495342" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6292289901375316241" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18435014373931200189" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11916644393060609907" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d37206566e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6092409804416044728" + } + } + } + ] + } + ] + }, + "cborHex": "d87c9f809f49f5a025544376bd5391bf1b518eb7224906e6ac1bfac173a75c053423ff1b495c9db369e5e198ffbf1b39436198dfa4fe301b03428327e16b0f52ff1b3cf7cb0f6e6dbcb3bf1b07c9e50843c147fd48e4881d1399d0655c1bffbaf44cae57ecae1b5752b453cb40e1111bffd653e67363aebd1ba5606cf03b072f73462d37206566e01b548c96702a534eb8ffff", + "cborBytes": [ + 216, 124, 159, 128, 159, 73, 245, 160, 37, 84, 67, 118, 189, 83, 145, 191, 27, 81, 142, 183, 34, 73, 6, 230, 172, + 27, 250, 193, 115, 167, 92, 5, 52, 35, 255, 27, 73, 92, 157, 179, 105, 229, 225, 152, 255, 191, 27, 57, 67, 97, + 152, 223, 164, 254, 48, 27, 3, 66, 131, 39, 225, 107, 15, 82, 255, 27, 60, 247, 203, 15, 110, 109, 188, 179, 191, + 27, 7, 201, 229, 8, 67, 193, 71, 253, 72, 228, 136, 29, 19, 153, 208, 101, 92, 27, 255, 186, 244, 76, 174, 87, + 236, 174, 27, 87, 82, 180, 83, 203, 64, 225, 17, 27, 255, 214, 83, 230, 115, 99, 174, 189, 27, 165, 96, 108, 240, + 59, 7, 47, 115, 70, 45, 55, 32, 101, 102, 224, 27, 84, 140, 150, 112, 42, 83, 78, 184, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3143, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f14ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 20, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3144, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3807026363561739551" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b34d5464ea2a5051f9fa0ffff", + "cborBytes": [216, 102, 159, 27, 52, 213, 70, 78, 162, 165, 5, 31, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3145, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4779068680548173127" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1899092437343850566" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d813c521e9b1526" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5466064467025920707" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6339386357643303777" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6645925863038896708" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abcec80c46" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8109153531542850607" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "639324953380086351" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6856623338634264743" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9271640570718728931" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "286eb1" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f9a480f96de65a7b" + } + ] + }, + "cborHex": "d8669f1b4252a9a4f544c5479f13bf1b1a5aee828b82d046481d813c521e9b1526ffbf1b4bdb5cac1c7702c31b57fa064e05495b611b5c3b125c5e03ca4445abcec80c46ffd8669f1b7089802c3cb74c2f9fd8669f1b08df56a86643624f9f1b5f279e9939f2c0a71b80ab7bf9ceca32e3ffff43286eb1ffff48f9a480f96de65a7bffff", + "cborBytes": [ + 216, 102, 159, 27, 66, 82, 169, 164, 245, 68, 197, 71, 159, 19, 191, 27, 26, 90, 238, 130, 139, 130, 208, 70, 72, + 29, 129, 60, 82, 30, 155, 21, 38, 255, 191, 27, 75, 219, 92, 172, 28, 119, 2, 195, 27, 87, 250, 6, 78, 5, 73, 91, + 97, 27, 92, 59, 18, 92, 94, 3, 202, 68, 69, 171, 206, 200, 12, 70, 255, 216, 102, 159, 27, 112, 137, 128, 44, 60, + 183, 76, 47, 159, 216, 102, 159, 27, 8, 223, 86, 168, 102, 67, 98, 79, 159, 27, 95, 39, 158, 153, 57, 242, 192, + 167, 27, 128, 171, 123, 249, 206, 202, 50, 227, 255, 255, 67, 40, 110, 177, 255, 255, 72, 249, 164, 128, 249, 109, + 230, 90, 123, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3146, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12956222863475137978" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0399" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bb3cdc00ca03addba9f420399a0ffff", + "cborBytes": [216, 102, 159, 27, 179, 205, 192, 12, 160, 58, 221, 186, 159, 66, 3, 153, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3147, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9158236136079487642" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f295810e65d5492e3012a3" + }, + { + "_tag": "ByteArray", + "bytearray": "7bdc9bf6a21663974fa915" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d97bafc5cc1af07f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2128421401814490808" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9a6b91604fb112f9cc97c7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "267293992728635964" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b48306ca47" + }, + { + "_tag": "ByteArray", + "bytearray": "1e610a2ff8ebb117" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6912013827869486863" + } + } + ] + }, + "cborHex": "d8669f1b7f18973e4c29f29a9f4bf295810e65d5492e3012a34b7bdc9bf6a21663974fa9159f48d97bafc5cc1af07fffd8669f1b1d89abfcf37ddeb89f4b9a6b91604fb112f9cc97c79f1b03b59e785f2faa3c45b48306ca47481e610a2ff8ebb117ffffff1b5fec67f47cbfaf0fffff", + "cborBytes": [ + 216, 102, 159, 27, 127, 24, 151, 62, 76, 41, 242, 154, 159, 75, 242, 149, 129, 14, 101, 213, 73, 46, 48, 18, 163, + 75, 123, 220, 155, 246, 162, 22, 99, 151, 79, 169, 21, 159, 72, 217, 123, 175, 197, 204, 26, 240, 127, 255, 216, + 102, 159, 27, 29, 137, 171, 252, 243, 125, 222, 184, 159, 75, 154, 107, 145, 96, 79, 177, 18, 249, 204, 151, 199, + 159, 27, 3, 181, 158, 120, 95, 47, 170, 60, 69, 180, 131, 6, 202, 71, 72, 30, 97, 10, 47, 248, 235, 177, 23, 255, + 255, 255, 27, 95, 236, 103, 244, 124, 191, 175, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3148, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7600232256781521111" + }, + "fields": [] + }, + "cborHex": "d8669f1b697972f843ed90d780ff", + "cborBytes": [216, 102, 159, 27, 105, 121, 114, 248, 67, 237, 144, 215, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3149, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4304241452769132344" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2451540129109255158" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2668742028558928097" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3821669832629160856" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11152923638445055032" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9639353159470481466" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14886911318405947415" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "441243345070369371" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18007248359482957792" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91110aa8c815395bc91e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18417625678150997867" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7212738846794971841" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ebaf" + } + ] + }, + "cborHex": "d8669f1b3bbbbccbe3d0bf389f9fbf1b22059ec2342c23f61b250946bc416908e11b35094c76f6b00b9841d71b9ac724f55c931c381b85c5dca086c7003a1bce98eef8485420171b061f9c7c0a6caa5b1bf9e698f9f9379fe04a91110aa8c815395bc91e1bff988cf9384d976b1b6418cbc434dffac1ffff42ebafffff", + "cborBytes": [ + 216, 102, 159, 27, 59, 187, 188, 203, 227, 208, 191, 56, 159, 159, 191, 27, 34, 5, 158, 194, 52, 44, 35, 246, 27, + 37, 9, 70, 188, 65, 105, 8, 225, 27, 53, 9, 76, 118, 246, 176, 11, 152, 65, 215, 27, 154, 199, 36, 245, 92, 147, + 28, 56, 27, 133, 197, 220, 160, 134, 199, 0, 58, 27, 206, 152, 238, 248, 72, 84, 32, 23, 27, 6, 31, 156, 124, 10, + 108, 170, 91, 27, 249, 230, 152, 249, 249, 55, 159, 224, 74, 145, 17, 10, 168, 200, 21, 57, 91, 201, 30, 27, 255, + 152, 140, 249, 56, 77, 151, 107, 27, 100, 24, 203, 196, 52, 223, 250, 193, 255, 255, 66, 235, 175, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3150, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15998464327115495430" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04fd03426b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4c6e499d454488d41" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c398b7c7bf53052c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05f8fc25fe50fafd0303fb89" + } + ] + }, + "cborHex": "d8669f1bde05f68ac17a58069fbf4504fd03426b49c4c6e499d454488d4148c398b7c7bf53052c1bfffffffffffffff6ff4c05f8fc25fe50fafd0303fb89ffff", + "cborBytes": [ + 216, 102, 159, 27, 222, 5, 246, 138, 193, 122, 88, 6, 159, 191, 69, 4, 253, 3, 66, 107, 73, 196, 198, 228, 153, + 212, 84, 72, 141, 65, 72, 195, 152, 183, 199, 191, 83, 5, 44, 27, 255, 255, 255, 255, 255, 255, 255, 246, 255, 76, + 5, 248, 252, 37, 254, 80, 250, 253, 3, 3, 251, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3151, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3485224118876198437" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17540470340426536242" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8944467361848916127" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d9c10a33be2e401" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6216825407092679873" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d436f11417f4ea7be8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2e60e" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "759399562710289441" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12221999374615186546" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7989922169572451264" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49fd8669f1b305e00dee03d56259fbf1bf36c44d75a6615321b7c2121ad0014789f486d9c10a33be2e4011b564699c50461e4c149d436f11417f4ea7be843e2e60eff9f1b0a89ede0f9ef0c211ba99d43ad20fc0c72ffa0ffffd8669f1b6ee1e7e17c6263c080ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 216, 102, 159, 27, 48, 94, 0, 222, 224, 61, 86, + 37, 159, 191, 27, 243, 108, 68, 215, 90, 102, 21, 50, 27, 124, 33, 33, 173, 0, 20, 120, 159, 72, 109, 156, 16, + 163, 59, 226, 228, 1, 27, 86, 70, 153, 197, 4, 97, 228, 193, 73, 212, 54, 241, 20, 23, 244, 234, 123, 232, 67, + 226, 230, 14, 255, 159, 27, 10, 137, 237, 224, 249, 239, 12, 33, 27, 169, 157, 67, 173, 32, 252, 12, 114, 255, + 160, 255, 255, 216, 102, 159, 27, 110, 225, 231, 225, 124, 98, 99, 192, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3152, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7396014455997288685" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0f43b3ded1f4f2a41e8453" + } + ] + }, + "cborHex": "d8669f1b66a3ebf6435f50ed9f4b0f43b3ded1f4f2a41e8453ffff", + "cborBytes": [ + 216, 102, 159, 27, 102, 163, 235, 246, 67, 95, 80, 237, 159, 75, 15, 67, 179, 222, 209, 244, 242, 164, 30, 132, + 83, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3153, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d309bd0b2dc987" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6532333957358651701" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "59e65d9b923182" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5119370260798256261" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e0fd077ef4b26d70e66" + } + ] + } + ] + }, + "cborHex": "d9050a9f9f9f47d309bd0b2dc9871b5aa7831fda958935ff4759e65d9b9231821b470ba820ec9434854a8e0fd077ef4b26d70e66ffff", + "cborBytes": [ + 217, 5, 10, 159, 159, 159, 71, 211, 9, 189, 11, 45, 201, 135, 27, 90, 167, 131, 31, 218, 149, 137, 53, 255, 71, + 89, 230, 93, 155, 146, 49, 130, 27, 71, 11, 168, 32, 236, 148, 52, 133, 74, 142, 15, 208, 119, 239, 75, 38, 215, + 14, 102, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3154, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6267614122191720780" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01fb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b56fb09d63e75914c9f4201fbd8669f1bfffffffffffffff780ffffff", + "cborBytes": [ + 216, 102, 159, 27, 86, 251, 9, 214, 62, 117, 145, 76, 159, 66, 1, 251, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 247, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3155, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16713971672824885927" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "222e2cc5fb76" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12594632316622902206" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4890d36c611d4bc8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17594571482153119358" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cafed36" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17267310104031406570" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6c8473d16cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9251074400269049042" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d12e4ec2e76f6950417d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0bf53bb1936e45dbbb28" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d83325516c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10275931178238756734" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4105583964368888086" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7148af56ac8e41" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7597893837625419667" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8125652647266619404" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7797782595650453425" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "135885" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9171119804937640855" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12032067821202665627" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14365928847540380876" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de1869" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17121848843059632229" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1215ce7c23abd4a3aaaac4cc" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "56" + }, + { + "_tag": "ByteArray", + "bytearray": "174fea087492" + } + ] + }, + "cborHex": "d8669f1be7f3f4ae98ab32a79fbf46222e2cc5fb761baec91f5cdcf693be484890d36c611d4bc81bf42c798b00f46e7e444cafed361befa1cf0db14e29ea46c6c8473d16cb1b80626b271abf1cd24ad12e4ec2e76f6950417d4a0bf53bb1936e45dbbb2845d83325516c4151ff1b8e9b70f65f48477ebf1b38f9f6dcffbf6116477148af56ac8e411b69712430a0cae7931b70c41e07f88a100c1b6c3749f4d177ffb1431358851b7f465cdf35db9b971ba6fa7def4c31709b1bc75e082c422e64cc43de18691bed9d06ceac8098654c1215ce7c23abd4a3aaaac4ccff415646174fea087492ffff", + "cborBytes": [ + 216, 102, 159, 27, 231, 243, 244, 174, 152, 171, 50, 167, 159, 191, 70, 34, 46, 44, 197, 251, 118, 27, 174, 201, + 31, 92, 220, 246, 147, 190, 72, 72, 144, 211, 108, 97, 29, 75, 200, 27, 244, 44, 121, 139, 0, 244, 110, 126, 68, + 76, 175, 237, 54, 27, 239, 161, 207, 13, 177, 78, 41, 234, 70, 198, 200, 71, 61, 22, 203, 27, 128, 98, 107, 39, + 26, 191, 28, 210, 74, 209, 46, 78, 194, 231, 111, 105, 80, 65, 125, 74, 11, 245, 59, 177, 147, 110, 69, 219, 187, + 40, 69, 216, 51, 37, 81, 108, 65, 81, 255, 27, 142, 155, 112, 246, 95, 72, 71, 126, 191, 27, 56, 249, 246, 220, + 255, 191, 97, 22, 71, 113, 72, 175, 86, 172, 142, 65, 27, 105, 113, 36, 48, 160, 202, 231, 147, 27, 112, 196, 30, + 7, 248, 138, 16, 12, 27, 108, 55, 73, 244, 209, 119, 255, 177, 67, 19, 88, 133, 27, 127, 70, 92, 223, 53, 219, + 155, 151, 27, 166, 250, 125, 239, 76, 49, 112, 155, 27, 199, 94, 8, 44, 66, 46, 100, 204, 67, 222, 24, 105, 27, + 237, 157, 6, 206, 172, 128, 152, 101, 76, 18, 21, 206, 124, 35, 171, 212, 163, 170, 170, 196, 204, 255, 65, 86, + 70, 23, 79, 234, 8, 116, 146, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3156, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6147374020357918469" + }, + "fields": [] + }, + "cborHex": "d8669f1b554fdc19f0e60f0580ff", + "cborBytes": [216, 102, 159, 27, 85, 79, 220, 25, 240, 230, 15, 5, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3157, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "502109259480820491" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4117848093786266975" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5072697523279157102" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15004689761737617957" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16283853923367692114" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17170826469313588711" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4770972960322338931" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8528863505796843963" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "290778" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17698383659717201871" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2917478070665722776" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14193645184952416984" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4974871645679654065" + } + } + ] + }, + "cborHex": "d8669f1b06f7d9b611c9eb0b9fd8669f1b3925890625265d5f9fd8669f1b4665d785680ed76e80ffd8669f1bd03b5dd70d4fb2259f1be1fbdede24aea7521bee4b07b2eb4fade71b4235e6a13501c073ffffd8669f1b765c9c2bb0d049bb9f432907781bf59d4a2b20058fcf1b287cf6d90a05bb98ffff1bc4f9f5183505bad880ffffa01b450a4b675be614b1ffff", + "cborBytes": [ + 216, 102, 159, 27, 6, 247, 217, 182, 17, 201, 235, 11, 159, 216, 102, 159, 27, 57, 37, 137, 6, 37, 38, 93, 95, + 159, 216, 102, 159, 27, 70, 101, 215, 133, 104, 14, 215, 110, 128, 255, 216, 102, 159, 27, 208, 59, 93, 215, 13, + 79, 178, 37, 159, 27, 225, 251, 222, 222, 36, 174, 167, 82, 27, 238, 75, 7, 178, 235, 79, 173, 231, 27, 66, 53, + 230, 161, 53, 1, 192, 115, 255, 255, 216, 102, 159, 27, 118, 92, 156, 43, 176, 208, 73, 187, 159, 67, 41, 7, 120, + 27, 245, 157, 74, 43, 32, 5, 143, 207, 27, 40, 124, 246, 217, 10, 5, 187, 152, 255, 255, 27, 196, 249, 245, 24, + 53, 5, 186, 216, 128, 255, 255, 160, 27, 69, 10, 75, 103, 91, 230, 20, 177, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3158, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5933347694521764249" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0706d30330bc" + } + ] + } + ] + }, + "cborHex": "d8669f1b52577c4abcda49999f9f01460706d30330bcffffff", + "cborBytes": [ + 216, 102, 159, 27, 82, 87, 124, 74, 188, 218, 73, 153, 159, 159, 1, 70, 7, 6, 211, 3, 48, 188, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3159, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1658727993318690808" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17067878224638551314" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8752050175409097200" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9930032356235849512" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5cb7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18364044045217532927" + } + }, + { + "_tag": "ByteArray", + "bytearray": "beed8409fa8769eee3e060" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b1704fc5254c1cff89f9f412f1becdd48d0d934a5121b79758743a1a789f09f1b89ce8fd10192af28425cb71bfeda30c322d18bff4bbeed8409fa8769eee3e060ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 23, 4, 252, 82, 84, 193, 207, 248, 159, 159, 65, 47, 27, 236, 221, 72, 208, 217, 52, 165, 18, + 27, 121, 117, 135, 67, 161, 167, 137, 240, 159, 27, 137, 206, 143, 209, 1, 146, 175, 40, 66, 92, 183, 27, 254, + 218, 48, 195, 34, 209, 139, 255, 75, 190, 237, 132, 9, 250, 135, 105, 238, 227, 224, 96, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3160, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "68db3c9b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16779428116627984538" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f4468db3c9bd8669f1be8dc80f889d0109a9f10ffff9fd87e9f121bfffffffffffffffeff10ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 68, 104, 219, 60, 155, 216, 102, 159, 27, 232, + 220, 128, 248, 137, 208, 16, 154, 159, 16, 255, 255, 159, 216, 126, 159, 18, 27, 255, 255, 255, 255, 255, 255, + 255, 254, 255, 16, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3161, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1110894460835504753" + }, + "fields": [] + }, + "cborHex": "d8669f1b0f6ab0a0590ca27180ff", + "cborBytes": [216, 102, 159, 27, 15, 106, 176, 160, 89, 12, 162, 113, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3162, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "20" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6722301986769641115" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "430845a2194f16b99ae8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9591244465905883573" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "928d5015d054" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1130418718687548532" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905089fbf41201b5d4a6a0a6a4e9e9b4a430845a2194f16b99ae81b851af206704059b546928d5015d0541b0fb00dd5ded2d474ff80ff", + "cborBytes": [ + 217, 5, 8, 159, 191, 65, 32, 27, 93, 74, 106, 10, 106, 78, 158, 155, 74, 67, 8, 69, 162, 25, 79, 22, 185, 154, + 232, 27, 133, 26, 242, 6, 112, 64, 89, 181, 70, 146, 141, 80, 21, 208, 84, 27, 15, 176, 13, 213, 222, 210, 212, + 116, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3163, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12173670736907238025" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d8777d77c25018702310ab8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "271c7cbb57a56901" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bdbc1e99bd80406" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12987891687747164450" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17122384029965381981" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f8699b86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12169176336634617891" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18089607039210995872" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1899049309676863622" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3706432625679666711" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15218102305523915734" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e9ccd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bac2ea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ae24e4c3246c4ce19715643" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8284542029818600360" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17376767922092423058" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c379fc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8525913957056427614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "67d8a3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f73ff6f74a55c30d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10047544914469462228" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a6be85467e8886d636" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8ee52d8f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17445786230873243150" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b808cbbaa0" + }, + { + "_tag": "ByteArray", + "bytearray": "75acf0907a" + }, + { + "_tag": "ByteArray", + "bytearray": "52200c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5720031134122669012" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4462699168472719588" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "993405022227090413" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9579463238472289975" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14244027071821278861" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7842944664386230288" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2270066830086577000" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11113398228811032788" + } + }, + { + "_tag": "ByteArray", + "bytearray": "63cf57d4a8aee972" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1ba8f191094dec7a899fbf4c1d8777d77c25018702310ab848271c7cbb57a56901486bdbc1e99bd804061bb43e42ad5d6b1922ff9fd8669f1bed9eed8e95e8715d80ff9f44f8699b861ba8e19967323220231bfb0b31c26293c0a01b1a5ac7491a3d8086ff1b336fe4d5e58e0e17bf422e3f1bd3318f6afc4e5bd6432e9ccd43bac2ea4c9ae24e4c3246c4ce197156431b72f89b152e219ba8ffffd8669f1bf126ae5becb8b7929f43c379fcd8669f1b765221925be4b65e9f4367d8a3ffff9f48f73ff6f74a55c30d1b8b700cdd93bc20d449a6be85467e8886d636ffffff9f448ee52d8f9f1bf21be2252e99be0e45b808cbbaa04575acf0907a4352200c1b4f61a202ad8e73d4ffffd8669f1b3deeb13fd43f60e49fd8669f1b0dc9489abbef4bed80ffd8669f1b84f1170fac0dceb79f1bc5acf3275af46e8d1b6cd7bc9e59c958101b1f80e5c12fb51b681b9a3ab8cecbbca8d44863cf57d4a8aee972ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 168, 241, 145, 9, 77, 236, 122, 137, 159, 191, 76, 29, 135, 119, 215, 124, 37, 1, 135, 2, 49, + 10, 184, 72, 39, 28, 124, 187, 87, 165, 105, 1, 72, 107, 219, 193, 233, 155, 216, 4, 6, 27, 180, 62, 66, 173, 93, + 107, 25, 34, 255, 159, 216, 102, 159, 27, 237, 158, 237, 142, 149, 232, 113, 93, 128, 255, 159, 68, 248, 105, 155, + 134, 27, 168, 225, 153, 103, 50, 50, 32, 35, 27, 251, 11, 49, 194, 98, 147, 192, 160, 27, 26, 90, 199, 73, 26, 61, + 128, 134, 255, 27, 51, 111, 228, 213, 229, 142, 14, 23, 191, 66, 46, 63, 27, 211, 49, 143, 106, 252, 78, 91, 214, + 67, 46, 156, 205, 67, 186, 194, 234, 76, 154, 226, 78, 76, 50, 70, 196, 206, 25, 113, 86, 67, 27, 114, 248, 155, + 21, 46, 33, 155, 168, 255, 255, 216, 102, 159, 27, 241, 38, 174, 91, 236, 184, 183, 146, 159, 67, 195, 121, 252, + 216, 102, 159, 27, 118, 82, 33, 146, 91, 228, 182, 94, 159, 67, 103, 216, 163, 255, 255, 159, 72, 247, 63, 246, + 247, 74, 85, 195, 13, 27, 139, 112, 12, 221, 147, 188, 32, 212, 73, 166, 190, 133, 70, 126, 136, 134, 214, 54, + 255, 255, 255, 159, 68, 142, 229, 45, 143, 159, 27, 242, 27, 226, 37, 46, 153, 190, 14, 69, 184, 8, 203, 186, 160, + 69, 117, 172, 240, 144, 122, 67, 82, 32, 12, 27, 79, 97, 162, 2, 173, 142, 115, 212, 255, 255, 216, 102, 159, 27, + 61, 238, 177, 63, 212, 63, 96, 228, 159, 216, 102, 159, 27, 13, 201, 72, 154, 187, 239, 75, 237, 128, 255, 216, + 102, 159, 27, 132, 241, 23, 15, 172, 13, 206, 183, 159, 27, 197, 172, 243, 39, 90, 244, 110, 141, 27, 108, 215, + 188, 158, 89, 201, 88, 16, 27, 31, 128, 229, 193, 47, 181, 27, 104, 27, 154, 58, 184, 206, 203, 188, 168, 212, 72, + 99, 207, 87, 212, 168, 174, 233, 114, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3164, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14136691859163443692" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6531304897811944665" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "292579886881169958" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10514099657885703588" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f1dc0e04a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14505316562201821131" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13244026291962132679" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15b647311068c511bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "327dd0cce17e7c407a2e59" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0113232a3d58" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "491fcc8a9514b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0f19bca293098f555bf4248" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "900288" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "452049" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e603" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2689839440783632854" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11453840612222679523" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b57b4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13047014967457350358" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53afbc1d9ec5e1" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905099fd8669f1bc42f9e58b497f1ec9f1b5aa3db3341d994d9bf1b040f73db61f9e2261b91e995eec9555da4450f1dc0e04a1bc94d3c8f94a13fcbffffffd8669f1bb7cc3bbe205638c79fbf4915b647311068c511bb41d64b327dd0cce17e7c407a2e59460113232a3d5847491fcc8a9514b94cb0f19bca293098f555bf4248439002884345204942e6031b25543ab852be69d6ffbf1b9ef4375a0d79b9e3433b57b41bb5104efca28002d64753afbc1d9ec5e1ffffffff", + "cborBytes": [ + 217, 5, 9, 159, 216, 102, 159, 27, 196, 47, 158, 88, 180, 151, 241, 236, 159, 27, 90, 163, 219, 51, 65, 217, 148, + 217, 191, 27, 4, 15, 115, 219, 97, 249, 226, 38, 27, 145, 233, 149, 238, 201, 85, 93, 164, 69, 15, 29, 192, 224, + 74, 27, 201, 77, 60, 143, 148, 161, 63, 203, 255, 255, 255, 216, 102, 159, 27, 183, 204, 59, 190, 32, 86, 56, 199, + 159, 191, 73, 21, 182, 71, 49, 16, 104, 197, 17, 187, 65, 214, 75, 50, 125, 208, 204, 225, 126, 124, 64, 122, 46, + 89, 70, 1, 19, 35, 42, 61, 88, 71, 73, 31, 204, 138, 149, 20, 185, 76, 176, 241, 155, 202, 41, 48, 152, 245, 85, + 191, 66, 72, 67, 144, 2, 136, 67, 69, 32, 73, 66, 230, 3, 27, 37, 84, 58, 184, 82, 190, 105, 214, 255, 191, 27, + 158, 244, 55, 90, 13, 121, 185, 227, 67, 59, 87, 180, 27, 181, 16, 78, 252, 162, 128, 2, 214, 71, 83, 175, 188, + 29, 158, 197, 225, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3165, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1023346039878923558" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c0b2fa7e3baf246ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13348708930429490662" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b5796" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4402383276441278161" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea8e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c130228" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b0e33a7cd254935269fbf494c0b2fa7e3baf246ae1bb940240c385595e6436b57961b3d186843dd6716d142ea8e440c130228ffffff", + "cborBytes": [ + 216, 102, 159, 27, 14, 51, 167, 205, 37, 73, 53, 38, 159, 191, 73, 76, 11, 47, 167, 227, 186, 242, 70, 174, 27, + 185, 64, 36, 12, 56, 85, 149, 230, 67, 107, 87, 150, 27, 61, 24, 104, 67, 221, 103, 22, 209, 66, 234, 142, 68, 12, + 19, 2, 40, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3166, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "51473611992919231" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e03ef130a35ddb077ac318" + } + ] + }, + "cborHex": "d8669f1b00b6defa3624ecbf9f4be03ef130a35ddb077ac318ffff", + "cborBytes": [ + 216, 102, 159, 27, 0, 182, 222, 250, 54, 36, 236, 191, 159, 75, 224, 62, 241, 48, 163, 93, 219, 7, 122, 195, 24, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3167, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7822791489261404115" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07023b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12470937456999546797" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b036" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5931651b7fb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd060722" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd5fff0303bd824e05062d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "023c" + }, + { + "_tag": "ByteArray", + "bytearray": "02fd" + } + ] + }, + "cborHex": "d8669f1b6c9023699d5fffd39fbf4307023b1bad11ab8b14923fad413742b036414f1bfffffffffffffff5465931651b7fb644fd0607224bfd5fff0303bd824e05062d14ff42023c4202fdffff", + "cborBytes": [ + 216, 102, 159, 27, 108, 144, 35, 105, 157, 95, 255, 211, 159, 191, 67, 7, 2, 59, 27, 173, 17, 171, 139, 20, 146, + 63, 173, 65, 55, 66, 176, 54, 65, 79, 27, 255, 255, 255, 255, 255, 255, 255, 245, 70, 89, 49, 101, 27, 127, 182, + 68, 253, 6, 7, 34, 75, 253, 95, 255, 3, 3, 189, 130, 78, 5, 6, 45, 20, 255, 66, 2, 60, 66, 2, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3168, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7780700717921945616" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6661272290208297115" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "753ef5cc836fb405ef07" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13028726346967387237" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6930536774528779762" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15370353571504138088" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6964452471352574409" + } + }, + { + "_tag": "ByteArray", + "bytearray": "726c86bd3ad7" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dfdc3d5b14db793f" + }, + { + "_tag": "ByteArray", + "bytearray": "27e6820955b3567716" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5540754899412581035" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1987921912051051996" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "709461232938274222" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ee3794e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5493988201645036725" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c87d40c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10438601084894125247" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18417655119587381750" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14685164462424217193" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13021348364519040232" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15564478479116941009" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2497956099190637108" + } + } + } + ] + } + ] + }, + "cborHex": "d87c9fd8669f1b6bfa9a143b5d48109fd8669f1b5c7197dae204b09b9f4a753ef5cc836fb405ef07ffffd8669f1bb4cf55955ac38c659f1b602e367a1491c5f21bd54e77233da927681b60a6b49f9a0fc1c946726c86bd3ad7ffff9f48dfdc3d5b14db793f4927e6820955b35677161b4ce4b7398efdfaabff801b1b9684725104addcffff1b09d8833b83324dae444ee3794ebf1b4c3e9129373d54b5444c87d40c1b90dd5c61711f1cbf1bff98a7c016a911f61bcbcc2f45f2fc56691bb4b51f58f3c564e81bd80022b66dfa36d11b22aa85d664c74234ffff", + "cborBytes": [ + 216, 124, 159, 216, 102, 159, 27, 107, 250, 154, 20, 59, 93, 72, 16, 159, 216, 102, 159, 27, 92, 113, 151, 218, + 226, 4, 176, 155, 159, 74, 117, 62, 245, 204, 131, 111, 180, 5, 239, 7, 255, 255, 216, 102, 159, 27, 180, 207, 85, + 149, 90, 195, 140, 101, 159, 27, 96, 46, 54, 122, 20, 145, 197, 242, 27, 213, 78, 119, 35, 61, 169, 39, 104, 27, + 96, 166, 180, 159, 154, 15, 193, 201, 70, 114, 108, 134, 189, 58, 215, 255, 255, 159, 72, 223, 220, 61, 91, 20, + 219, 121, 63, 73, 39, 230, 130, 9, 85, 179, 86, 119, 22, 27, 76, 228, 183, 57, 142, 253, 250, 171, 255, 128, 27, + 27, 150, 132, 114, 81, 4, 173, 220, 255, 255, 27, 9, 216, 131, 59, 131, 50, 77, 174, 68, 78, 227, 121, 78, 191, + 27, 76, 62, 145, 41, 55, 61, 84, 181, 68, 76, 135, 212, 12, 27, 144, 221, 92, 97, 113, 31, 28, 191, 27, 255, 152, + 167, 192, 22, 169, 17, 246, 27, 203, 204, 47, 69, 242, 252, 86, 105, 27, 180, 181, 31, 88, 243, 197, 100, 232, 27, + 216, 0, 34, 182, 109, 250, 54, 209, 27, 34, 170, 133, 214, 100, 199, 66, 52, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3169, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1416082986368404628" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9230230672195529743" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa44" + } + ] + }, + "cborHex": "d8669f1b13a6eff92ef68c949f1b80185de47b212c0f42fa44ffff", + "cborBytes": [ + 216, 102, 159, 27, 19, 166, 239, 249, 46, 246, 140, 148, 159, 27, 128, 24, 93, 228, 123, 33, 44, 15, 66, 250, 68, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3170, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7441075473935521438" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7828449618780162060" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "76e363cabfe549a9fe0d5ef4" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "78f7af" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9153512687731513948" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b7d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e44a3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b67de482" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42064e2e7d7ff6a0842bc9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2294978940721593918" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc63ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13289695551211948665" + } + } + } + ] + } + ] + }, + "cborHex": "d905059fd8669f1b674402b812cc569e9fd8669f1b6ca43d738d6f080c9f4c76e363cabfe549a9fe0d5ef4ffff80ffff4378f7afbf1b7f07cf4ac7449a5c422b7d431e44a344b67de4824b42064e2e7d7ff6a0842bc91b1fd9672ff0b67e3e43dc63ff1bb86e7bb12713ca79ffff", + "cborBytes": [ + 217, 5, 5, 159, 216, 102, 159, 27, 103, 68, 2, 184, 18, 204, 86, 158, 159, 216, 102, 159, 27, 108, 164, 61, 115, + 141, 111, 8, 12, 159, 76, 118, 227, 99, 202, 191, 229, 73, 169, 254, 13, 94, 244, 255, 255, 128, 255, 255, 67, + 120, 247, 175, 191, 27, 127, 7, 207, 74, 199, 68, 154, 92, 66, 43, 125, 67, 30, 68, 163, 68, 182, 125, 228, 130, + 75, 66, 6, 78, 46, 125, 127, 246, 160, 132, 43, 201, 27, 31, 217, 103, 47, 240, 182, 126, 62, 67, 220, 99, 255, + 27, 184, 110, 123, 177, 39, 19, 202, 121, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3171, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3493319202411173456" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13947256686818073964" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16872664556709366699" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12736633317395242688" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14067393005984937602" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f45fb2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13004509936802956494" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7bc4602836719182b29" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5782328903950749115" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b307ac34e62c4d6509fd8669f1bc18e9c0f98fb9d6c9fd8669f1bea27bf04e4fc4bab80ffffffbf1bb0c19c8545bf9ec01bc3396b681d8bf682440f45fb2d1bb4794ce2fd2d84ce4af7bc4602836719182b291b503ef58086754dbbffffff", + "cborBytes": [ + 216, 102, 159, 27, 48, 122, 195, 78, 98, 196, 214, 80, 159, 216, 102, 159, 27, 193, 142, 156, 15, 152, 251, 157, + 108, 159, 216, 102, 159, 27, 234, 39, 191, 4, 228, 252, 75, 171, 128, 255, 255, 255, 191, 27, 176, 193, 156, 133, + 69, 191, 158, 192, 27, 195, 57, 107, 104, 29, 139, 246, 130, 68, 15, 69, 251, 45, 27, 180, 121, 76, 226, 253, 45, + 132, 206, 74, 247, 188, 70, 2, 131, 103, 25, 24, 43, 41, 27, 80, 62, 245, 128, 134, 117, 77, 187, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3172, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18025744487388398782" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8827c38a1209c77fc149" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6927056613291251378" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5224433558883340553" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9166636643800706997" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f38c5115941d90a8894bf2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9104272643461737463" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c63e3fde222c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14027230500331839238" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "472203040234187149" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15050242874429374870" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10709041463559000968" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "98299d49ae1c26acee1c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6138fc0b39924c1b" + } + ] + }, + "cborHex": "d8669f1bfa284f1b56bdc4be9f4a8827c38a1209c77fc149d8669f1b6021d949e63ed6b29f1b4880eaa43ddf11091b7f366f75ead1efb54bf38c5115941d90a8894bf2bf1b7e58dfbb93d7ebf746c63e3fde222c1bc2aabbd212cddf061b068d9a29cb04a98d1bd0dd342799b781961b949e2878e05d1388ff4a98299d49ae1c26acee1cffff486138fc0b39924c1bffff", + "cborBytes": [ + 216, 102, 159, 27, 250, 40, 79, 27, 86, 189, 196, 190, 159, 74, 136, 39, 195, 138, 18, 9, 199, 127, 193, 73, 216, + 102, 159, 27, 96, 33, 217, 73, 230, 62, 214, 178, 159, 27, 72, 128, 234, 164, 61, 223, 17, 9, 27, 127, 54, 111, + 117, 234, 209, 239, 181, 75, 243, 140, 81, 21, 148, 29, 144, 168, 137, 75, 242, 191, 27, 126, 88, 223, 187, 147, + 215, 235, 247, 70, 198, 62, 63, 222, 34, 44, 27, 194, 170, 187, 210, 18, 205, 223, 6, 27, 6, 141, 154, 41, 203, 4, + 169, 141, 27, 208, 221, 52, 39, 153, 183, 129, 150, 27, 148, 158, 40, 120, 224, 93, 19, 136, 255, 74, 152, 41, + 157, 73, 174, 28, 38, 172, 238, 28, 255, 255, 72, 97, 56, 252, 11, 57, 146, 76, 27, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3173, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "564452513486471538" + }, + "fields": [] + }, + "cborHex": "d8669f1b07d5569206f0017280ff", + "cborBytes": [216, 102, 159, 27, 7, 213, 86, 146, 6, 240, 1, 114, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3174, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3787954907132257701" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + }, + "cborHex": "d8669f1b349184eb28d0e5a59fa001ffff", + "cborBytes": [216, 102, 159, 27, 52, 145, 132, 235, 40, 208, 229, 165, 159, 160, 1, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3175, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16325413338625735256" + }, + "fields": [] + }, + "cborHex": "d8669f1be28f84ef8c35fa5880ff", + "cborBytes": [216, 102, 159, 27, 226, 143, 132, 239, 140, 53, 250, 88, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3176, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16063587178459984020" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6870617401366175332" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64bfb467ff514120" + }, + { + "_tag": "ByteArray", + "bytearray": "beab3f978f570725c0ed" + } + ] + }, + "cborHex": "d8669f1bdeed536e26a070949f1b5f59561fdc0c5e644864bfb467ff5141204abeab3f978f570725c0edffff", + "cborBytes": [ + 216, 102, 159, 27, 222, 237, 83, 110, 38, 160, 112, 148, 159, 27, 95, 89, 86, 31, 220, 12, 94, 100, 72, 100, 191, + 180, 103, 255, 81, 65, 32, 74, 190, 171, 63, 151, 143, 87, 7, 37, 192, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3177, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f89489e4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15573843483314635871" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10148687955401902553" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c1152620429b1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3510937264960228750" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7227273207747725070" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6051435969877015237" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c39079ee9cd480d9d721b240" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6836195946960159172" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cb534a64d7d19a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16141709877440557057" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9302693288096223484" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4688e217691" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4dc9eab6f" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f44f89489e4d8669f1bd82168226280445f9f1b8cd761ece60409d9475c1152620429b11b30b95ad73aa2cd8e1b644c6eb0d280470effffa080bf1b53fb04f3e58a7ac54cc39079ee9cd480d9d721b2401b5edf0bfe798681c4482cb534a64d7d19a41be002df9c704230011b8119ce41fb62d0fc46f4688e21769145e4dc9eab6fffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 68, 248, 148, 137, 228, 216, 102, 159, 27, 216, + 33, 104, 34, 98, 128, 68, 95, 159, 27, 140, 215, 97, 236, 230, 4, 9, 217, 71, 92, 17, 82, 98, 4, 41, 177, 27, 48, + 185, 90, 215, 58, 162, 205, 142, 27, 100, 76, 110, 176, 210, 128, 71, 14, 255, 255, 160, 128, 191, 27, 83, 251, 4, + 243, 229, 138, 122, 197, 76, 195, 144, 121, 238, 156, 212, 128, 217, 215, 33, 178, 64, 27, 94, 223, 11, 254, 121, + 134, 129, 196, 72, 44, 181, 52, 166, 77, 125, 25, 164, 27, 224, 2, 223, 156, 112, 66, 48, 1, 27, 129, 25, 206, 65, + 251, 98, 208, 252, 70, 244, 104, 142, 33, 118, 145, 69, 228, 220, 158, 171, 111, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3178, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15891928086821616642" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bdc8b78655b0e3c029f41fad8669f1bfffffffffffffff980ffffff", + "cborBytes": [ + 216, 102, 159, 27, 220, 139, 120, 101, 91, 14, 60, 2, 159, 65, 250, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 249, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3179, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7282188186368334816" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4219470914798264407" + } + }, + { + "_tag": "ByteArray", + "bytearray": "83" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "292783801048276449" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3384402310968106721" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0cfad3d089ab10e529351e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "521920016148560816" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12327364103268860126" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14805171038815767500" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de25bd8e85dd3ca2" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "18a31a85b2e96752e267" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f9f9f1b650f8792a407dbe0ff1b3a8e9270f8a4a05741831b04102d50d9789de1d8669f1b2ef7cff87243dee19f4b0cfad3d089ab10e529351e1b073e3b7d4bb37bb0ffffff1bab139856b83e00ded8669f1bcd76889e5f83cbcc9f48de25bd8e85dd3ca2ffff4a18a31a85b2e96752e267ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 159, 159, 27, 101, 15, 135, 146, 164, 7, 219, 224, + 255, 27, 58, 142, 146, 112, 248, 164, 160, 87, 65, 131, 27, 4, 16, 45, 80, 217, 120, 157, 225, 216, 102, 159, 27, + 46, 247, 207, 248, 114, 67, 222, 225, 159, 75, 12, 250, 211, 208, 137, 171, 16, 229, 41, 53, 30, 27, 7, 62, 59, + 125, 75, 179, 123, 176, 255, 255, 255, 27, 171, 19, 152, 86, 184, 62, 0, 222, 216, 102, 159, 27, 205, 118, 136, + 158, 95, 131, 203, 204, 159, 72, 222, 37, 189, 142, 133, 221, 60, 162, 255, 255, 74, 24, 163, 26, 133, 178, 233, + 103, 82, 226, 103, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3180, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13155489491238652067" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bb691affdd3aa08a39f80ffff", + "cborBytes": [216, 102, 159, 27, 182, 145, 175, 253, 211, 170, 8, 163, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3181, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8a393" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6152109995289421845" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11805701487690998758" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8d188180" + }, + { + "_tag": "ByteArray", + "bytearray": "67f9b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14315003958311612349" + } + }, + { + "_tag": "ByteArray", + "bytearray": "584b67341dc8360a03f0d26a" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f43f8a3939fd8669f1b5560af72085b281580ff9f1ba3d646f42a1f63e6448d1881804367f9b61bc6a91c4185796fbd4c584b67341dc8360a03f0d26affffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 67, 248, 163, 147, 159, 216, 102, 159, 27, 85, 96, + 175, 114, 8, 91, 40, 21, 128, 255, 159, 27, 163, 214, 70, 244, 42, 31, 99, 230, 68, 141, 24, 129, 128, 67, 103, + 249, 182, 27, 198, 169, 28, 65, 133, 121, 111, 189, 76, 88, 75, 103, 52, 29, 200, 54, 10, 3, 240, 210, 106, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3182, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8827846724445699492" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "368d53db7f85dfbe16d0561a" + } + ] + }, + "cborHex": "d8669f1b7a82cfd2ee2e7da49f4c368d53db7f85dfbe16d0561affff", + "cborBytes": [ + 216, 102, 159, 27, 122, 130, 207, 210, 238, 46, 125, 164, 159, 76, 54, 141, 83, 219, 127, 133, 223, 190, 22, 208, + 86, 26, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3183, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1461840386743113131" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2834209158536261404" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1981738435797249308" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7108962278936649062" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5113685305574306166" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10312918754469623186" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8625434763005124529" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1115563940673521121" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9608105082431381742" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7fb904181b71a0" + } + } + ] + } + ] + }, + "cborHex": "d905069fbf1b144980162a2495ab1b27552236a1b66f1c1b1b808c9b8f6eed1c1b62a81b871dab9d661b46f775b123e431761b8f1ed8f78da035921b77b3b337aa39dfb11b0f7b477e581485e11b8556d8aaa2f2a0ee477fb904181b71a0ffff", + "cborBytes": [ + 217, 5, 6, 159, 191, 27, 20, 73, 128, 22, 42, 36, 149, 171, 27, 39, 85, 34, 54, 161, 182, 111, 28, 27, 27, 128, + 140, 155, 143, 110, 237, 28, 27, 98, 168, 27, 135, 29, 171, 157, 102, 27, 70, 247, 117, 177, 35, 228, 49, 118, 27, + 143, 30, 216, 247, 141, 160, 53, 146, 27, 119, 179, 179, 55, 170, 57, 223, 177, 27, 15, 123, 71, 126, 88, 20, 133, + 225, 27, 133, 86, 216, 170, 162, 242, 160, 238, 71, 127, 185, 4, 24, 27, 113, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3184, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3753086265196451254" + }, + "fields": [] + }, + "cborHex": "d8669f1b3415a412d06e95b680ff", + "cborBytes": [216, 102, 159, 27, 52, 21, 164, 18, 208, 110, 149, 182, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3185, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "590504fab211" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "699748fdcf9a3ac15bc54d23" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0c2c1e80" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "06deff03" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7903834512792242957" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d985eb97" + }, + { + "_tag": "ByteArray", + "bytearray": "da54da90468cce24b3b5" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4860049143375409699" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "39ad8b736c76" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e76f25b39093ebcc3c6a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f771c4f694452b8dd0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7f110f7639376" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "672ae48f9f0f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69fd905059fbf1bfffffffffffffffc1046590504fab2114c699748fdcf9a3ac15bc54d23ff440c2c1e80ff4406deff039f1b6db00f9cf2744b0d9f44d985eb974ada54da90468cce24b3b5ff1b43725cf23dd53223bf4639ad8b736c764ae76f25b39093ebcc3c6a49f771c4f694452b8dd047e7f110f7639376ffff9f46672ae48f9f0fff0cffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 217, 5, 5, 159, 191, 27, 255, 255, 255, 255, 255, + 255, 255, 252, 16, 70, 89, 5, 4, 250, 178, 17, 76, 105, 151, 72, 253, 207, 154, 58, 193, 91, 197, 77, 35, 255, 68, + 12, 44, 30, 128, 255, 68, 6, 222, 255, 3, 159, 27, 109, 176, 15, 156, 242, 116, 75, 13, 159, 68, 217, 133, 235, + 151, 74, 218, 84, 218, 144, 70, 140, 206, 36, 179, 181, 255, 27, 67, 114, 92, 242, 61, 213, 50, 35, 191, 70, 57, + 173, 139, 115, 108, 118, 74, 231, 111, 37, 179, 144, 147, 235, 204, 60, 106, 73, 247, 113, 196, 246, 148, 69, 43, + 141, 208, 71, 231, 241, 16, 247, 99, 147, 118, 255, 255, 159, 70, 103, 42, 228, 143, 159, 15, 255, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3186, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3911751417478266443" + }, + "fields": [] + }, + "cborHex": "d8669f1b36495530586c3e4b80ff", + "cborBytes": [216, 102, 159, 27, 54, 73, 85, 48, 88, 108, 62, 75, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3187, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "990217110433784957" + }, + "fields": [] + }, + "cborHex": "d8669f1b0dbdf5372deb647d80ff", + "cborBytes": [216, 102, 159, 27, 13, 189, 245, 55, 45, 235, 100, 125, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3188, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15901539433880205152" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8266434953401629822" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7912078348743610437" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8787109827012294397" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aefb72c962ee18c4ab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15311323262622240201" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b0bfb68f1421f36" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15711129049333563094" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "950393aeaec704517ab569" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bdcad9ddd7a4bb7609f1b72b846caec607c7ed8669f1b6dcd595693ec104580ffbf1b79f215d4e16976fd49aefb72c962ee18c4ab1bd47cbf626dc60dc9482b0bfb68f1421f361bda0924a115d8fed64b950393aeaec704517ab569ffffff", + "cborBytes": [ + 216, 102, 159, 27, 220, 173, 157, 221, 122, 75, 183, 96, 159, 27, 114, 184, 70, 202, 236, 96, 124, 126, 216, 102, + 159, 27, 109, 205, 89, 86, 147, 236, 16, 69, 128, 255, 191, 27, 121, 242, 21, 212, 225, 105, 118, 253, 73, 174, + 251, 114, 201, 98, 238, 24, 196, 171, 27, 212, 124, 191, 98, 109, 198, 13, 201, 72, 43, 11, 251, 104, 241, 66, 31, + 54, 27, 218, 9, 36, 161, 21, 216, 254, 214, 75, 149, 3, 147, 174, 174, 199, 4, 81, 122, 181, 105, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3189, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10039814893005589120" + }, + "fields": [] + }, + "cborHex": "d8669f1b8b549673b4464a8080ff", + "cborBytes": [216, 102, 159, 27, 139, 84, 150, 115, 180, 70, 74, 128, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3190, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6131855739744529158" + }, + "fields": [] + }, + "cborHex": "d8669f1b5518ba4ead69ab0680ff", + "cborBytes": [216, 102, 159, 27, 85, 24, 186, 78, 173, 105, 171, 6, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3191, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "681db48d056a" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9fd8799f46681db48d056affffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 216, 121, 159, 70, 104, 29, 180, 141, 5, 106, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3192, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16279767528995234716" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "637ae0e1" + } + ] + }, + "cborHex": "d8669f1be1ed5a504fb3239c9f44637ae0e1ffff", + "cborBytes": [216, 102, 159, 27, 225, 237, 90, 80, 79, 179, 35, 156, 159, 68, 99, 122, 224, 225, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3193, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4201767886927713631" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b856c08c403cc48c8b8b" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09fbf1b3a4fada198f8555f4ab856c08c403cc48c8b8bffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 191, 27, 58, 79, 173, 161, 152, 248, 85, 95, 74, + 184, 86, 192, 140, 64, 60, 196, 140, 139, 139, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3194, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8875767956366987145" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6394809092041876886" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7005910218883540802" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "96fa" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14001462143780801592" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15604047991063897549" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11954030181801149212" + } + } + ] + }, + "cborHex": "d9050c9fd8669f1b7b2d0fee340c8f899fd8669f1b58beecfcf19825969f1b6139fe39a4d52742ffff4296faffff1bc24f2fa308224c381bd88cb6f95d82e5cd1ba5e53f1d7c8e431cff", + "cborBytes": [ + 217, 5, 12, 159, 216, 102, 159, 27, 123, 45, 15, 238, 52, 12, 143, 137, 159, 216, 102, 159, 27, 88, 190, 236, 252, + 241, 152, 37, 150, 159, 27, 97, 57, 254, 57, 164, 213, 39, 66, 255, 255, 66, 150, 250, 255, 255, 27, 194, 79, 47, + 163, 8, 34, 76, 56, 27, 216, 140, 182, 249, 93, 130, 229, 205, 27, 165, 229, 63, 29, 124, 142, 67, 28, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3195, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15484187576390589282" + }, + "fields": [] + }, + "cborHex": "d8669f1bd6e2e28fde471b6280ff", + "cborBytes": [216, 102, 159, 27, 214, 226, 226, 143, 222, 71, 27, 98, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3196, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1730141565846193274" + }, + "fields": [] + }, + "cborHex": "d8669f1b1802b2966366847a80ff", + "cborBytes": [216, 102, 159, 27, 24, 2, 178, 150, 99, 102, 132, 122, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3197, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e0759a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17806362462885238408" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5021736857098086458" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17102801715809438008" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16118664625402114793" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5749754292610549646" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4034308633685116174" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "746081693379805799" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4751954468329039358" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "260bc66f591580" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7079517170096887344" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78741b05adfade98c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4350377998939292087" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a40d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10686885756260862715" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6392761787350463789" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9f6d83561bd97d27f61d78" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17103304855804936589" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7335559421198233546" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7818944589168866338" + } + } + ] + } + ] + }, + "cborHex": "d905059f9f9f43e0759affd8669f1bf71ce8515e1fd6889f1b45b0cb10b2d1683a1bed595b8bc6c34938412d1bdfb1001392bf72e9ffffd8669f1b4fcb3b10ccd4478e9f1b37fcbe53e117c50effff1b0a5a9d58e3534267ffd8669f1b41f25569799525fe9fbf47260bc66f5915801b623f7f5b78e756304978741b05adfade98c61b3c5fa5bda17381b742a40d1b944f71f9491c4afb41ea1b58b7a6f9acb7352dffffff4b9f6d83561bd97d27f61d78d8669f1bed5b25262f77818d9f1b65cd246d994a6fca1b6c8278ad63df7422ffffff", + "cborBytes": [ + 217, 5, 5, 159, 159, 159, 67, 224, 117, 154, 255, 216, 102, 159, 27, 247, 28, 232, 81, 94, 31, 214, 136, 159, 27, + 69, 176, 203, 16, 178, 209, 104, 58, 27, 237, 89, 91, 139, 198, 195, 73, 56, 65, 45, 27, 223, 177, 0, 19, 146, + 191, 114, 233, 255, 255, 216, 102, 159, 27, 79, 203, 59, 16, 204, 212, 71, 142, 159, 27, 55, 252, 190, 83, 225, + 23, 197, 14, 255, 255, 27, 10, 90, 157, 88, 227, 83, 66, 103, 255, 216, 102, 159, 27, 65, 242, 85, 105, 121, 149, + 37, 254, 159, 191, 71, 38, 11, 198, 111, 89, 21, 128, 27, 98, 63, 127, 91, 120, 231, 86, 48, 73, 120, 116, 27, 5, + 173, 250, 222, 152, 198, 27, 60, 95, 165, 189, 161, 115, 129, 183, 66, 164, 13, 27, 148, 79, 113, 249, 73, 28, 74, + 251, 65, 234, 27, 88, 183, 166, 249, 172, 183, 53, 45, 255, 255, 255, 75, 159, 109, 131, 86, 27, 217, 125, 39, + 246, 29, 120, 216, 102, 159, 27, 237, 91, 37, 38, 47, 119, 129, 141, 159, 27, 101, 205, 36, 109, 153, 74, 111, + 202, 27, 108, 130, 120, 173, 99, 223, 116, 34, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3198, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11768676091855138020" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4877413822748375355" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6845e4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49ce8fcf7e02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80075a23" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f1b386ccbd8d493" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0291d8c9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11100463436430338038" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63f34590dc57" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13068961281187418980" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8785309161318127713" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "235b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d61e29927c83b947da10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd10d095f9e8" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8140606692251580077" + } + } + ] + } + ] + }, + "cborHex": "d87e9fd8669f1ba352bc8d6ba86ce49f1b43b00e07b77f393bbf436845e44649ce8fcf7e024480075a23485f1b386ccbd8d493ff440291d8c9bf1b9a0cc4aec2a467f64663f34590dc571bb55e470afc8293641b79ebb022ba5a1861ffffff9f42235bbf4ad61e29927c83b947da1046cd10d095f9e8ff1b70f93ea7e3d2b6adffff", + "cborBytes": [ + 216, 126, 159, 216, 102, 159, 27, 163, 82, 188, 141, 107, 168, 108, 228, 159, 27, 67, 176, 14, 7, 183, 127, 57, + 59, 191, 67, 104, 69, 228, 70, 73, 206, 143, 207, 126, 2, 68, 128, 7, 90, 35, 72, 95, 27, 56, 108, 203, 216, 212, + 147, 255, 68, 2, 145, 216, 201, 191, 27, 154, 12, 196, 174, 194, 164, 103, 246, 70, 99, 243, 69, 144, 220, 87, 27, + 181, 94, 71, 10, 252, 130, 147, 100, 27, 121, 235, 176, 34, 186, 90, 24, 97, 255, 255, 255, 159, 66, 35, 91, 191, + 74, 214, 30, 41, 146, 124, 131, 185, 71, 218, 16, 70, 205, 16, 208, 149, 249, 232, 255, 27, 112, 249, 62, 167, + 227, 210, 182, 173, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3199, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16677563991802207827" + }, + "fields": [] + }, + "cborHex": "d8669f1be7729c16ca375e5380ff", + "cborBytes": [216, 102, 159, 27, 231, 114, 156, 22, 202, 55, 94, 83, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3200, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bca08febf15c2fdcea1cf3" + } + ] + }, + "cborHex": "d87b9f4bbca08febf15c2fdcea1cf3ff", + "cborBytes": [216, 123, 159, 75, 188, 160, 143, 235, 241, 92, 47, 220, 234, 28, 243, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3201, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1967334531143404443" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7e98369af6fcce8a5809" + }, + { + "_tag": "ByteArray", + "bytearray": "068a263a95442bf62e316cd1" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d101e9c096" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5973624636735739505" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12773150520751900279" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15508631619970538967" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1249455641240350233" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5599327269095286399" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7877623475370418435" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11975131404783598196" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2398060223788655780" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12611197106959849258" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60a2e6f41b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15660147875489792334" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15762055117126694425" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "059b694adf2a24dfc55ddc" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10925988603887217662" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8334151746244848188" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4762610037418181659" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d4ecb482de827c91e06526" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4823189181976398908" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1762030448055861333" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17178763710165239291" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6288" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c6f948" + }, + { + "_tag": "ByteArray", + "bytearray": "4c7333af3c94" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f9fd8669f1b1b4d60552b298b9b9f4a7e98369af6fcce8a58094c068a263a95442bf62e316cd1ffff45d101e9c096d8669f1b52e693f51e27d6719f1bb14358b93c0346771bd739ba4a44bc1dd71b1156f5492abd2e19ffffbf1b4db4ce7c1795267f1b6d52f0d03bbb61031ba6303690d0c03a741b21479f116ceaa4a41baf03f8f3a8c6972a4560a2e6f41b1bd954058590a8414e1bdabe119e3a76f619ff4b059b694adf2a24dfc55ddcff1b97a0e8bf32a9ebfed8669f1b73a8dadb63202a3c9fd8669f1b421830987c05441b9f4bd4ecb482de827c91e065261b42ef6901b435cc3c1b1873fd5b5bcac0551bee673a93d0c545fb426288ffffffff43c6f948464c7333af3c94ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 159, 216, 102, 159, 27, 27, 77, 96, 85, 43, 41, + 139, 155, 159, 74, 126, 152, 54, 154, 246, 252, 206, 138, 88, 9, 76, 6, 138, 38, 58, 149, 68, 43, 246, 46, 49, + 108, 209, 255, 255, 69, 209, 1, 233, 192, 150, 216, 102, 159, 27, 82, 230, 147, 245, 30, 39, 214, 113, 159, 27, + 177, 67, 88, 185, 60, 3, 70, 119, 27, 215, 57, 186, 74, 68, 188, 29, 215, 27, 17, 86, 245, 73, 42, 189, 46, 25, + 255, 255, 191, 27, 77, 180, 206, 124, 23, 149, 38, 127, 27, 109, 82, 240, 208, 59, 187, 97, 3, 27, 166, 48, 54, + 144, 208, 192, 58, 116, 27, 33, 71, 159, 17, 108, 234, 164, 164, 27, 175, 3, 248, 243, 168, 198, 151, 42, 69, 96, + 162, 230, 244, 27, 27, 217, 84, 5, 133, 144, 168, 65, 78, 27, 218, 190, 17, 158, 58, 118, 246, 25, 255, 75, 5, + 155, 105, 74, 223, 42, 36, 223, 197, 93, 220, 255, 27, 151, 160, 232, 191, 50, 169, 235, 254, 216, 102, 159, 27, + 115, 168, 218, 219, 99, 32, 42, 60, 159, 216, 102, 159, 27, 66, 24, 48, 152, 124, 5, 68, 27, 159, 75, 212, 236, + 180, 130, 222, 130, 124, 145, 224, 101, 38, 27, 66, 239, 105, 1, 180, 53, 204, 60, 27, 24, 115, 253, 91, 91, 202, + 192, 85, 27, 238, 103, 58, 147, 208, 197, 69, 251, 66, 98, 136, 255, 255, 255, 255, 67, 198, 249, 72, 70, 76, 115, + 51, 175, 60, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3202, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12613861304638510556" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab8df6eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e8dc03d31" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d5db9e36d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36421a201ec2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "752531245780081333" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b112b78dcf69f21943" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17787906715778046506" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2638cd30d2eeeb92569bdac7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9817581640084001140" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "524380120114153782" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6476704261319136526" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14266190264856395173" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10186744317143948479" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4951774958122758363" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4709063839494359023" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905079fd8669f1baf0d7006850615dc80ffbf411944ab8df6eb452e8dc03d31454d5db9e36d4636421a201ec21b0a71872e531a9ab549b112b78dcf69f219431bf6db56e9e3bc5a2aff4c2638cd30d2eeeb92569bdac79fd8669f1b883f0e7c629a917480ffbf1b0746f8f0e2ae49361b59e1e035eb2f950e1bc5fbb075dae6bda51b8d5e95fc19181cbfffffd8669f1b44b83d16ba94f0db9fa09f1b4159f49cc1b2c7efffffffff", + "cborBytes": [ + 217, 5, 7, 159, 216, 102, 159, 27, 175, 13, 112, 6, 133, 6, 21, 220, 128, 255, 191, 65, 25, 68, 171, 141, 246, + 235, 69, 46, 141, 192, 61, 49, 69, 77, 93, 185, 227, 109, 70, 54, 66, 26, 32, 30, 194, 27, 10, 113, 135, 46, 83, + 26, 154, 181, 73, 177, 18, 183, 141, 207, 105, 242, 25, 67, 27, 246, 219, 86, 233, 227, 188, 90, 42, 255, 76, 38, + 56, 205, 48, 210, 238, 235, 146, 86, 155, 218, 199, 159, 216, 102, 159, 27, 136, 63, 14, 124, 98, 154, 145, 116, + 128, 255, 191, 27, 7, 70, 248, 240, 226, 174, 73, 54, 27, 89, 225, 224, 53, 235, 47, 149, 14, 27, 197, 251, 176, + 117, 218, 230, 189, 165, 27, 141, 94, 149, 252, 25, 24, 28, 191, 255, 255, 216, 102, 159, 27, 68, 184, 61, 22, + 186, 148, 240, 219, 159, 160, 159, 27, 65, 89, 244, 156, 193, 178, 199, 239, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3203, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1504061315754169685" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "87" + } + ] + }, + "cborHex": "d8669f1b14df7fcc3def15559f4187ffff", + "cborBytes": [216, 102, 159, 27, 20, 223, 127, 204, 61, 239, 21, 85, 159, 65, 135, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3204, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9071567535166740224" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f77d4c55bf55033" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f8fee27e5e6af07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70418b50c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6812131289553695227" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "857c875a9dd828" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17590627257974873858" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a5d505d50e2d632" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d20c68b913a0473a4e093500" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7c8ad67efc321ad6691e3be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd76bfec9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9053d45d963dcca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dceec6a87d06b256" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14938085587324233600" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17276003170409817863" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5166369305834929184" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d24a2039dc3f0bba158c09" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12148728623424236253" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10832647064199743197" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17416934099562434126" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ffdfaef1693f1b4452fc0fce" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15434478506733545248" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3105e3ab0faf28bd943dd131" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f271" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccd96304a51d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3198105008909782103" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f14ace" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17612291733304916692" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b7de4ae9c299457009fbf485f77d4c55bf55033485f8fee27e5e6af074570418b50c01b5e898d50cd2bf1fb47857c875a9dd8281bf41e764abfe55f02489a5d505d50e2d6324cd20c68b913a0473a4e0935004ca7c8ad67efc321ad6691e3be45cd76bfec9e48c9053d45d963dcca48dceec6a87d06b256ffd8669f1bcf4ebdb240d7e7809f9f1befc0b159eecca707ffbf1b47b2a182d4c5bc204bd24a2039dc3f0bba158c091ba898f450f7d26add1b96554b1c6ecdc6dd1bf1b56148e0ce8e4e41baff4cffdfaef1693f1b4452fc0fceffff1bd632486d2f4127209fbf4c3105e3ab0faf28bd943dd13142f27146ccd96304a51d1b2c61f38fb2770c5743f14ace1bf46b6e047c303ad4ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 125, 228, 174, 156, 41, 148, 87, 0, 159, 191, 72, 95, 119, 212, 197, 91, 245, 80, 51, 72, 95, + 143, 238, 39, 229, 230, 175, 7, 69, 112, 65, 139, 80, 192, 27, 94, 137, 141, 80, 205, 43, 241, 251, 71, 133, 124, + 135, 90, 157, 216, 40, 27, 244, 30, 118, 74, 191, 229, 95, 2, 72, 154, 93, 80, 93, 80, 226, 214, 50, 76, 210, 12, + 104, 185, 19, 160, 71, 58, 78, 9, 53, 0, 76, 167, 200, 173, 103, 239, 195, 33, 173, 102, 145, 227, 190, 69, 205, + 118, 191, 236, 158, 72, 201, 5, 61, 69, 217, 99, 220, 202, 72, 220, 238, 198, 168, 125, 6, 178, 86, 255, 216, 102, + 159, 27, 207, 78, 189, 178, 64, 215, 231, 128, 159, 159, 27, 239, 192, 177, 89, 238, 204, 167, 7, 255, 191, 27, + 71, 178, 161, 130, 212, 197, 188, 32, 75, 210, 74, 32, 57, 220, 63, 11, 186, 21, 140, 9, 27, 168, 152, 244, 80, + 247, 210, 106, 221, 27, 150, 85, 75, 28, 110, 205, 198, 221, 27, 241, 181, 97, 72, 224, 206, 142, 78, 65, 186, + 255, 76, 255, 223, 174, 241, 105, 63, 27, 68, 82, 252, 15, 206, 255, 255, 27, 214, 50, 72, 109, 47, 65, 39, 32, + 159, 191, 76, 49, 5, 227, 171, 15, 175, 40, 189, 148, 61, 209, 49, 66, 242, 113, 70, 204, 217, 99, 4, 165, 29, 27, + 44, 97, 243, 143, 178, 119, 12, 87, 67, 241, 74, 206, 27, 244, 107, 110, 4, 124, 48, 58, 212, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3205, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "985497915589146438" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "ByteArray", + "bytearray": "68" + }, + { + "_tag": "ByteArray", + "bytearray": "50bad91c2fef7d" + }, + { + "_tag": "ByteArray", + "bytearray": "f2fd5c7b6dbc2afce5e2" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b0dad3122019437469fd9050d9fa09f1241684750bad91c2fef7d4af2fd5c7b6dbc2afce5e2ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 13, 173, 49, 34, 1, 148, 55, 70, 159, 217, 5, 13, 159, 160, 159, 18, 65, 104, 71, 80, 186, 217, + 28, 47, 239, 125, 74, 242, 253, 92, 123, 109, 188, 42, 252, 229, 226, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3206, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10057319575484631475" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11305779299934383286" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1317099916830950090" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d92a77" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9346785878973394149" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1417a6949cca4bc3a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14552488604221203687" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04039acf59c172df" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a12e02a84f8fe8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13710166756002487081" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7dfc85594abda028" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3586279220590732949" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17967035261683114865" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "53d92fecd7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16373961008889929287" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2014693122401577069" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8064365422867669602" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050d9f1b8b92c6de315809b31b9ce6325f698dacb69fbf1b124747656467c2ca43d92a771b81b6743c4bd8ace549c1417a6949cca4bc3a1bc9f4d3487c8664e74804039acf59c172dfff9f47a12e02a84f8fe81bbe444c0666e5db29487dfc85594abda028ff1b31c505f340ace695d8669f1bf957bb60878a23719f4553d92fecd71be33bfec8dcfb1e471b1bf5a0b8742b286d1b6fea61a010f86262ffffffff", + "cborBytes": [ + 217, 5, 13, 159, 27, 139, 146, 198, 222, 49, 88, 9, 179, 27, 156, 230, 50, 95, 105, 141, 172, 182, 159, 191, 27, + 18, 71, 71, 101, 100, 103, 194, 202, 67, 217, 42, 119, 27, 129, 182, 116, 60, 75, 216, 172, 229, 73, 193, 65, 122, + 105, 73, 204, 164, 188, 58, 27, 201, 244, 211, 72, 124, 134, 100, 231, 72, 4, 3, 154, 207, 89, 193, 114, 223, 255, + 159, 71, 161, 46, 2, 168, 79, 143, 232, 27, 190, 68, 76, 6, 102, 229, 219, 41, 72, 125, 252, 133, 89, 74, 189, + 160, 40, 255, 27, 49, 197, 5, 243, 64, 172, 230, 149, 216, 102, 159, 27, 249, 87, 187, 96, 135, 138, 35, 113, 159, + 69, 83, 217, 47, 236, 215, 27, 227, 59, 254, 200, 220, 251, 30, 71, 27, 27, 245, 160, 184, 116, 43, 40, 109, 27, + 111, 234, 97, 160, 16, 248, 98, 98, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3207, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5519412191923905816" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12136836581991971455" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8864197941136742018" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13665677386948425076" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1782067749601780823" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14765953518526168781" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1057162146550572508" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16557294439604750032" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae17fbe5570566b835ea0a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17439764383841528773" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1028262207654808157" + } + } + } + ] + } + ] + }, + "cborHex": "d87e9fbf1b4c98e4253c95a5181ba86eb4914e98fa7f1b7b03f5101c34568241e21bbda63d2df82635741b18bb2d2d2cb1a4571bcceb347de1ae7ecd1b0eabcb5f0722e5dc1be5c753918a3106d04bae17fbe5570566b835ea0a1bf2067d4ea9622bc51b0e451f07a7394a5dffff", + "cborBytes": [ + 216, 126, 159, 191, 27, 76, 152, 228, 37, 60, 149, 165, 24, 27, 168, 110, 180, 145, 78, 152, 250, 127, 27, 123, 3, + 245, 16, 28, 52, 86, 130, 65, 226, 27, 189, 166, 61, 45, 248, 38, 53, 116, 27, 24, 187, 45, 45, 44, 177, 164, 87, + 27, 204, 235, 52, 125, 225, 174, 126, 205, 27, 14, 171, 203, 95, 7, 34, 229, 220, 27, 229, 199, 83, 145, 138, 49, + 6, 208, 75, 174, 23, 251, 229, 87, 5, 102, 184, 53, 234, 10, 27, 242, 6, 125, 78, 169, 98, 43, 197, 27, 14, 69, + 31, 7, 167, 57, 74, 93, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3208, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17775769540402593422" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1396532455829985301" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11185104039125348576" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11330409801039993126" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c73691c8afdc5db2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14511660506464234076" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12174705556796765948" + } + } + } + ] + } + ] + }, + "cborHex": "d87a9f1bf6b0383788e7be8ebf1b13617ade930cd8151b9b3978dcc3da70e01b9d3db3aed697d92648c73691c8afdc5db21bc963c65834ddaa5c1ba8f53e3315d876fcffff", + "cborBytes": [ + 216, 122, 159, 27, 246, 176, 56, 55, 136, 231, 190, 142, 191, 27, 19, 97, 122, 222, 147, 12, 216, 21, 27, 155, 57, + 120, 220, 195, 218, 112, 224, 27, 157, 61, 179, 174, 214, 151, 217, 38, 72, 199, 54, 145, 200, 175, 220, 93, 178, + 27, 201, 99, 198, 88, 52, 221, 170, 92, 27, 168, 245, 62, 51, 21, 216, 118, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3209, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16454859915910756525" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6326294994978887436" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13972260932123301312" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10064647886315492492" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c0" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2718067351677658897" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62cd0073" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7025303684484214091" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39227fa9656c00e6a3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8182729048561363005" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdbbe97078" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9950733786739909691" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72c6cf6333e9eecc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10713541137021306230" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a381832af12c27ebc7" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12776580073284401899" + } + } + ] + }, + "cborHex": "d905079f9fd8669f1be45b67e974acb8ad9f1b57cb83c7a00c570c1bc1e7714a204715c01b8baccfed8538948c41c0ffffffbf1b25b883dafc5567114462cd00731b617ee47ab8ecad4b4939227fa9656c00e6a31b718ee4b738c5283d45fdbbe970781b8a181ba8651c243b4872c6cf6333e9eecc1b94ae24e6beb0857649a381832af12c27ebc7ff1bb14f87e228737aebff", + "cborBytes": [ + 217, 5, 7, 159, 159, 216, 102, 159, 27, 228, 91, 103, 233, 116, 172, 184, 173, 159, 27, 87, 203, 131, 199, 160, + 12, 87, 12, 27, 193, 231, 113, 74, 32, 71, 21, 192, 27, 139, 172, 207, 237, 133, 56, 148, 140, 65, 192, 255, 255, + 255, 191, 27, 37, 184, 131, 218, 252, 85, 103, 17, 68, 98, 205, 0, 115, 27, 97, 126, 228, 122, 184, 236, 173, 75, + 73, 57, 34, 127, 169, 101, 108, 0, 230, 163, 27, 113, 142, 228, 183, 56, 197, 40, 61, 69, 253, 187, 233, 112, 120, + 27, 138, 24, 27, 168, 101, 28, 36, 59, 72, 114, 198, 207, 99, 51, 233, 238, 204, 27, 148, 174, 36, 230, 190, 176, + 133, 118, 73, 163, 129, 131, 42, 241, 44, 39, 235, 199, 255, 27, 177, 79, 135, 226, 40, 115, 122, 235, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3210, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9826630194793248841" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3809749135732928679" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2facbe4d7d42" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d8cc7f8e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15091586343838240529" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d1730da326fd9aa" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f41bcd905029f9f1b885f341933c778491b34def2a76eb670a7462facbe4d7d42ffff809f44d8cc7f8ebf1bd17015d2319d4f11480d1730da326fd9aaffd87e80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 65, 188, 217, 5, 2, 159, 159, 27, 136, 95, 52, 25, + 51, 199, 120, 73, 27, 52, 222, 242, 167, 110, 182, 112, 167, 70, 47, 172, 190, 77, 125, 66, 255, 255, 128, 159, + 68, 216, 204, 127, 142, 191, 27, 209, 112, 21, 210, 49, 157, 79, 17, 72, 13, 23, 48, 218, 50, 111, 217, 170, 255, + 216, 126, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3211, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11154736547275573846" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8158297181573066340" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7b735d7c21" + }, + { + "_tag": "ByteArray", + "bytearray": "46" + }, + { + "_tag": "ByteArray", + "bytearray": "a4824d6e8f16" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7595742880105402423" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7d8c80078f3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10933441227376775081" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f28fa1f27de49d479f9d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18078347035558244741" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6145626744506582297" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1213763550183362183" + } + }, + { + "_tag": "ByteArray", + "bytearray": "194017e11ba412df" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16450859489199012765" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10485639656749053654" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6a27d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7182676408360330901" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "107786603029103612" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "100904279488830816" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81663d32ccf3df6967ef056d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4402338439899443405" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0792271424699ca2c61d83d4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8822857668193422248" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8551206248539254395" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13709063025688541333" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8dae9186279" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15053963340743746910" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "713218d0088d40d8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17891618486047893767" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7357626144307398450" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1522704458154856205" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14869042086706463289" + } + } + ] + }, + "cborHex": "d8669f1b9acd95ca176d8a569fd8669f1b7138180fe7bbae649f80457b735d7c21414646a4824d6e8f16ffffbf1b69697fe7cde2903746f7d8c80078f31b97bb62de52674fa94af28fa1f27de49d479f9dff9fd8669f1bfae330d87caf718580ff9f1b5549a6f6947485191b10d82784a1ff0e8748194017e11ba412dfffd8669f1be44d318b87923b9d9f1b918479b66746b6d6436a27d31b63adfe2350e566951b017eef58291883fcffffbf1b01667be8573f9d604c81663d32ccf3df6967ef056d1b3d183f7c8b40f0cd4c0792271424699ca2c61d83d41b7a71164dc0800ba81b76abfcc6dd486e7b1bbe406030299b789546a8dae91862791bd0ea6be62ac8a55e48713218d0088d40d81bf84bcc381db269071b661b89fef191c732ff1b1521bba316394f0dffa01bce5972ff9078c239ffff", + "cborBytes": [ + 216, 102, 159, 27, 154, 205, 149, 202, 23, 109, 138, 86, 159, 216, 102, 159, 27, 113, 56, 24, 15, 231, 187, 174, + 100, 159, 128, 69, 123, 115, 93, 124, 33, 65, 70, 70, 164, 130, 77, 110, 143, 22, 255, 255, 191, 27, 105, 105, + 127, 231, 205, 226, 144, 55, 70, 247, 216, 200, 0, 120, 243, 27, 151, 187, 98, 222, 82, 103, 79, 169, 74, 242, + 143, 161, 242, 125, 228, 157, 71, 159, 157, 255, 159, 216, 102, 159, 27, 250, 227, 48, 216, 124, 175, 113, 133, + 128, 255, 159, 27, 85, 73, 166, 246, 148, 116, 133, 25, 27, 16, 216, 39, 132, 161, 255, 14, 135, 72, 25, 64, 23, + 225, 27, 164, 18, 223, 255, 216, 102, 159, 27, 228, 77, 49, 139, 135, 146, 59, 157, 159, 27, 145, 132, 121, 182, + 103, 70, 182, 214, 67, 106, 39, 211, 27, 99, 173, 254, 35, 80, 229, 102, 149, 27, 1, 126, 239, 88, 41, 24, 131, + 252, 255, 255, 191, 27, 1, 102, 123, 232, 87, 63, 157, 96, 76, 129, 102, 61, 50, 204, 243, 223, 105, 103, 239, 5, + 109, 27, 61, 24, 63, 124, 139, 64, 240, 205, 76, 7, 146, 39, 20, 36, 105, 156, 162, 198, 29, 131, 212, 27, 122, + 113, 22, 77, 192, 128, 11, 168, 27, 118, 171, 252, 198, 221, 72, 110, 123, 27, 190, 64, 96, 48, 41, 155, 120, 149, + 70, 168, 218, 233, 24, 98, 121, 27, 208, 234, 107, 230, 42, 200, 165, 94, 72, 113, 50, 24, 208, 8, 141, 64, 216, + 27, 248, 75, 204, 56, 29, 178, 105, 7, 27, 102, 27, 137, 254, 241, 145, 199, 50, 255, 27, 21, 33, 187, 163, 22, + 57, 79, 13, 255, 160, 27, 206, 89, 114, 255, 144, 120, 194, 57, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3212, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7538990974872452351" + }, + "fields": [] + }, + "cborHex": "d8669f1b689fe0592e25fcff80ff", + "cborBytes": [216, 102, 159, 27, 104, 159, 224, 89, 46, 37, 252, 255, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3213, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1257081890106967233" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4094089892213301495" + }, + "fields": [] + } + ] + }, + "cborHex": "d905069f1b11720d51996704c1d8669f1b38d12110c7e420f780ffff", + "cborBytes": [ + 217, 5, 6, 159, 27, 17, 114, 13, 81, 153, 103, 4, 193, 216, 102, 159, 27, 56, 209, 33, 16, 199, 228, 32, 247, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3214, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9886599867410155205" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5602" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4740def0c033e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9fbf1b89344232ad6806c542560247a4740def0c033e06ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 191, 27, 137, 52, 66, 50, 173, 104, 6, 197, 66, + 86, 2, 71, 164, 116, 13, 239, 12, 3, 62, 6, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3215, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17979146921073171871" + }, + "fields": [] + }, + "cborHex": "d8669f1bf982c2ddfb1fdd9f80ff", + "cborBytes": [216, 102, 159, 27, 249, 130, 194, 221, 251, 31, 221, 159, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3216, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13187941983777341224" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fccc84fa00" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "261a17e9" + } + ] + }, + "cborHex": "d8669f1bb704fb5c8d823f289f45fccc84fa00a044261a17e9ffff", + "cborBytes": [ + 216, 102, 159, 27, 183, 4, 251, 92, 141, 130, 63, 40, 159, 69, 252, 204, 132, 250, 0, 160, 68, 38, 26, 23, 233, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3217, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10540574671793730702" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "6efba30221a0310e" + } + ] + }, + "cborHex": "d905089fd8669f1b9247a4d150beb48e80ff486efba30221a0310eff", + "cborBytes": [ + 217, 5, 8, 159, 216, 102, 159, 27, 146, 71, 164, 209, 80, 190, 180, 142, 128, 255, 72, 110, 251, 163, 2, 33, 160, + 49, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3218, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6222364763946316979" + }, + "fields": [] + }, + "cborHex": "d8669f1b565a47c909ed74b380ff", + "cborBytes": [216, 102, 159, 27, 86, 90, 71, 201, 9, 237, 116, 179, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3219, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "345a25d8df6ef16f2bf7" + }, + { + "_tag": "ByteArray", + "bytearray": "f24654fffc" + }, + { + "_tag": "ByteArray", + "bytearray": "129a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6916980191946968556" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4597327202865616680" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7785678177008764933" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1172e2b006b01c5d4de5db" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4618619556796641166" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b719" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17391751803673672262" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ec8a93feb1f7ce2b2e46" + }, + { + "_tag": "ByteArray", + "bytearray": "0d6842f3ec" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15526936916530269925" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9fe074b0d09e17f6eef202" + }, + { + "_tag": "ByteArray", + "bytearray": "ec8ea88a24f3d481c7" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f4a345a25d8df6ef16f2bf745f24654fffc42129ad8669f1b5ffe0cd63b698dec9fd8669f1b3fccfcbbbb0b97289f1b6c0c490d3c1e48054b1172e2b006b01c5d4de5dbffffd8669f1b4018a20433892f8e9f42b7191bf15bea1eb7ba7a464aec8a93feb1f7ce2b2e46450d6842f3ecffffd8669f1bd77ac2dc3faf8ee59f4b9fe074b0d09e17f6eef20249ec8ea88a24f3d481c7ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 74, 52, 90, 37, 216, 223, 110, 241, 111, 43, 247, + 69, 242, 70, 84, 255, 252, 66, 18, 154, 216, 102, 159, 27, 95, 254, 12, 214, 59, 105, 141, 236, 159, 216, 102, + 159, 27, 63, 204, 252, 187, 187, 11, 151, 40, 159, 27, 108, 12, 73, 13, 60, 30, 72, 5, 75, 17, 114, 226, 176, 6, + 176, 28, 93, 77, 229, 219, 255, 255, 216, 102, 159, 27, 64, 24, 162, 4, 51, 137, 47, 142, 159, 66, 183, 25, 27, + 241, 91, 234, 30, 183, 186, 122, 70, 74, 236, 138, 147, 254, 177, 247, 206, 43, 46, 70, 69, 13, 104, 66, 243, 236, + 255, 255, 216, 102, 159, 27, 215, 122, 194, 220, 63, 175, 142, 229, 159, 75, 159, 224, 116, 176, 208, 158, 23, + 246, 238, 242, 2, 73, 236, 142, 168, 138, 36, 243, 212, 129, 199, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3220, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2791801117092639946" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12533958693069479857" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "854a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12566059375485419991" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16688752385343053974" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "99201708450fa920" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10321239367779097044" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b11ebef78f1b4" + }, + { + "_tag": "ByteArray", + "bytearray": "d61151a061713f2fed5a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10515719827754006022" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6ab2391" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15840198928212186378" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b90b25412c92dc43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9a2b4" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6828134606406347840" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "df1e6fc67cd83bdd2bb2" + }, + { + "_tag": "ByteArray", + "bytearray": "bf54be7a7758505187" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14614162866853844639" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2577629550142697108" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b68624aa43d9e68a8b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4686343989686236674" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0618250f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8669134562357824919" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9997117969848813871" + } + }, + { + "_tag": "ByteArray", + "bytearray": "603a7ffd1b48f105e92a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10883956610860874441" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12449408215956672807" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7527776474634470794" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56afd548b2f070065831c4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9643612085215199794" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11848645881967100554" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10547361706502125253" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4fab9ea38603f0d3f065684" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05689221fc67c79899fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd73a5288a4ea6d779c784fb" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9275245062271535586" + } + } + ] + }, + "cborHex": "d905049f1b26be78530bd874cad8669f1badf1910609d35fb19f42854a1bae639c6c964681d7d8669f1be79a5bdfa8d360969f4899201708450fa9201b8f3c68854e4019d4472b11ebef78f1b44ad61151a061713f2fed5a1b91ef5777facf3606ffffffffbf44b6ab23911bdbd3b1000f9c550a48b90b25412c92dc4343c9a2b4ffd8669f1b5ec2683f5d66ec409f9f4adf1e6fc67cd83bdd2bb249bf54be7a77585051871bcacfefb2c087169fffbf1b23c5946b42ce2e9449b68624aa43d9e68a8b1b41093d078088f602440618250fffd8669f1b784ef3f413664d979f1b8abce5d39a83492f4a603a7ffd1b48f105e92a1b970b94df35207ac941f51bacc52ed007ed5127ffffbf1b687808d1df21458a4b56afd548b2f070065831c41b85d4fe18f2ea82321ba46ed8a7200b428a1b925fc196f99df6c54cf4fab9ea38603f0d3f0656844a05689221fc67c79899fa4ccd73a5288a4ea6d779c784fbffffff1b80b84a3de56409e2ff", + "cborBytes": [ + 217, 5, 4, 159, 27, 38, 190, 120, 83, 11, 216, 116, 202, 216, 102, 159, 27, 173, 241, 145, 6, 9, 211, 95, 177, + 159, 66, 133, 74, 27, 174, 99, 156, 108, 150, 70, 129, 215, 216, 102, 159, 27, 231, 154, 91, 223, 168, 211, 96, + 150, 159, 72, 153, 32, 23, 8, 69, 15, 169, 32, 27, 143, 60, 104, 133, 78, 64, 25, 212, 71, 43, 17, 235, 239, 120, + 241, 180, 74, 214, 17, 81, 160, 97, 113, 63, 47, 237, 90, 27, 145, 239, 87, 119, 250, 207, 54, 6, 255, 255, 255, + 255, 191, 68, 182, 171, 35, 145, 27, 219, 211, 177, 0, 15, 156, 85, 10, 72, 185, 11, 37, 65, 44, 146, 220, 67, 67, + 201, 162, 180, 255, 216, 102, 159, 27, 94, 194, 104, 63, 93, 102, 236, 64, 159, 159, 74, 223, 30, 111, 198, 124, + 216, 59, 221, 43, 178, 73, 191, 84, 190, 122, 119, 88, 80, 81, 135, 27, 202, 207, 239, 178, 192, 135, 22, 159, + 255, 191, 27, 35, 197, 148, 107, 66, 206, 46, 148, 73, 182, 134, 36, 170, 67, 217, 230, 138, 139, 27, 65, 9, 61, + 7, 128, 136, 246, 2, 68, 6, 24, 37, 15, 255, 216, 102, 159, 27, 120, 78, 243, 244, 19, 102, 77, 151, 159, 27, 138, + 188, 229, 211, 154, 131, 73, 47, 74, 96, 58, 127, 253, 27, 72, 241, 5, 233, 42, 27, 151, 11, 148, 223, 53, 32, + 122, 201, 65, 245, 27, 172, 197, 46, 208, 7, 237, 81, 39, 255, 255, 191, 27, 104, 120, 8, 209, 223, 33, 69, 138, + 75, 86, 175, 213, 72, 178, 240, 112, 6, 88, 49, 196, 27, 133, 212, 254, 24, 242, 234, 130, 50, 27, 164, 110, 216, + 167, 32, 11, 66, 138, 27, 146, 95, 193, 150, 249, 157, 246, 197, 76, 244, 250, 185, 234, 56, 96, 63, 13, 63, 6, + 86, 132, 74, 5, 104, 146, 33, 252, 103, 199, 152, 153, 250, 76, 205, 115, 165, 40, 138, 78, 166, 215, 121, 199, + 132, 251, 255, 255, 255, 27, 128, 184, 74, 61, 229, 100, 9, 226, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3221, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7eaa37f3d6303621deda" + }, + { + "_tag": "ByteArray", + "bytearray": "c3499474cefd32d7bd7e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18351561097125112717" + } + }, + { + "_tag": "ByteArray", + "bytearray": "97a97f547bb1c7" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11729044310797349061" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05d9010c040469" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7536156484796389255" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11789476695294701971" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2112815902363262968" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4969850037112302045" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5615269417245847909" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16665172698733295331" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f9a6a7f3c2b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2712860386859867645" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5555632367667502918" + } + } + ] + } + ] + }, + "cborHex": "d905079f80a0d8669f1bffffffffffffffef9f9f4a7eaa37f3d6303621deda4ac3499474cefd32d7bd7e1bfeadd7964c052b8d4797a97f547bb1c7ff9f1ba2c5efa853e470c54705d9010c040469ffffffd8669f1b6895ce65080b978780ffd8669f1ba39ca2974ec971939fbf1b1d523ade78289ff81b44f87447010a69dd1b4ded71c8b50db1651be74696460c8936e3466f9a6a7f3c2b1b25a604260402ddfdff1b4d199234117bdf46ffffff", + "cborBytes": [ + 217, 5, 7, 159, 128, 160, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 159, 74, 126, 170, 55, + 243, 214, 48, 54, 33, 222, 218, 74, 195, 73, 148, 116, 206, 253, 50, 215, 189, 126, 27, 254, 173, 215, 150, 76, 5, + 43, 141, 71, 151, 169, 127, 84, 123, 177, 199, 255, 159, 27, 162, 197, 239, 168, 83, 228, 112, 197, 71, 5, 217, 1, + 12, 4, 4, 105, 255, 255, 255, 216, 102, 159, 27, 104, 149, 206, 101, 8, 11, 151, 135, 128, 255, 216, 102, 159, 27, + 163, 156, 162, 151, 78, 201, 113, 147, 159, 191, 27, 29, 82, 58, 222, 120, 40, 159, 248, 27, 68, 248, 116, 71, 1, + 10, 105, 221, 27, 77, 237, 113, 200, 181, 13, 177, 101, 27, 231, 70, 150, 70, 12, 137, 54, 227, 70, 111, 154, 106, + 127, 60, 43, 27, 37, 166, 4, 38, 4, 2, 221, 253, 255, 27, 77, 25, 146, 52, 17, 123, 223, 70, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3222, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9083050260538579196" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13697420409849278398" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16710930045994473827" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0601e070c0edca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11599623782233033763" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3846682921648277370" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10964850889345718186" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17496336117254023956" + } + }, + { + "_tag": "ByteArray", + "bytearray": "849a711bdf5058be92f90d22" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14334409010179459200" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8111852405182565036" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17833018203982583639" + } + }, + { + "_tag": "ByteArray", + "bytearray": "82d7f4bdce87" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17898555425240579434" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c8f4b865cbd56" + } + ] + }, + "cborHex": "d8669f1b7e0d7a16806bd8fc9f1bbe17034a6c406fbed8669f1be7e92656a9e719639fbf470601e070c0edca1ba0fa245f5c2c4c23ff1b356229bc9468477ad8669f1b982af9ca2293d7aa9f1bf2cf78ffc3c36b144c849a711bdf5058be92f90d221bc6ee0d0c3ce7c8801b709316c8b94e0aacffff1bf77b9b92b974d7574682d7f4bdce87ffff1bf8647154221afd6a470c8f4b865cbd56ffff", + "cborBytes": [ + 216, 102, 159, 27, 126, 13, 122, 22, 128, 107, 216, 252, 159, 27, 190, 23, 3, 74, 108, 64, 111, 190, 216, 102, + 159, 27, 231, 233, 38, 86, 169, 231, 25, 99, 159, 191, 71, 6, 1, 224, 112, 192, 237, 202, 27, 160, 250, 36, 95, + 92, 44, 76, 35, 255, 27, 53, 98, 41, 188, 148, 104, 71, 122, 216, 102, 159, 27, 152, 42, 249, 202, 34, 147, 215, + 170, 159, 27, 242, 207, 120, 255, 195, 195, 107, 20, 76, 132, 154, 113, 27, 223, 80, 88, 190, 146, 249, 13, 34, + 27, 198, 238, 13, 12, 60, 231, 200, 128, 27, 112, 147, 22, 200, 185, 78, 10, 172, 255, 255, 27, 247, 123, 155, + 146, 185, 116, 215, 87, 70, 130, 215, 244, 189, 206, 135, 255, 255, 27, 248, 100, 113, 84, 34, 26, 253, 106, 71, + 12, 143, 75, 134, 92, 189, 86, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3223, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10027731610880044585" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d703f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15893733338319108269" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b7052c0246814d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4524471299713068096" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1aac001526b24d157ed6ae" + } + ] + } + ] + } + ] + }, + "cborHex": "d87a9fbf1b8b29a8c55975ee2943d703f81bdc91e243394b38ad1bfffffffffffffff3ff9f9f47b7052c0246814d1b3eca26ace7d8ec404b1aac001526b24d157ed6aeffffff", + "cborBytes": [ + 216, 122, 159, 191, 27, 139, 41, 168, 197, 89, 117, 238, 41, 67, 215, 3, 248, 27, 220, 145, 226, 67, 57, 75, 56, + 173, 27, 255, 255, 255, 255, 255, 255, 255, 243, 255, 159, 159, 71, 183, 5, 44, 2, 70, 129, 77, 27, 62, 202, 38, + 172, 231, 216, 236, 64, 75, 26, 172, 0, 21, 38, 178, 77, 21, 126, 214, 174, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3224, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9139296644661340808" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "71c12bf935e39a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14684886427347195613" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "beb5d509" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9037876549614763166" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11983944936283570335" + } + }, + { + "_tag": "ByteArray", + "bytearray": "785746d434" + }, + { + "_tag": "ByteArray", + "bytearray": "f8dec174f222f5" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8917289251119032361" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5785416293e483b1c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10321161465094586659" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5332588559853429812" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12323081328073752412" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76a32f" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d3a8d6e217839d" + }, + { + "_tag": "ByteArray", + "bytearray": "0c" + }, + { + "_tag": "ByteArray", + "bytearray": "bb9b" + }, + { + "_tag": "ByteArray", + "bytearray": "f003c0d43cd7b8fffff01a11" + }, + { + "_tag": "ByteArray", + "bytearray": "8a53e436b2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "44e4c7ff8ce1d809f794b2" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4b851a979e" + } + ] + }, + "cborHex": "d87a9fd8669f1b7ed54de051f56a889fbf4771c12bf935e39a1bcbcb3266dcfc16dd44beb5d5091b7d6cfcd64f9efc9eff1ba64f866d0706009f45785746d43447f8dec174f222f5ffff9fbf1b7bc09353fc5be82949b5785416293e483b1c1b8f3c21ab2c69c1231b4a01290abb6024341bab04612d6a15bf5c4376a32fff9f47d3a8d6e217839d410c42bb9b4cf003c0d43cd7b8fffff01a11458a53e436b2ff9f4b44e4c7ff8ce1d809f794b2ffff454b851a979eff", + "cborBytes": [ + 216, 122, 159, 216, 102, 159, 27, 126, 213, 77, 224, 81, 245, 106, 136, 159, 191, 71, 113, 193, 43, 249, 53, 227, + 154, 27, 203, 203, 50, 102, 220, 252, 22, 221, 68, 190, 181, 213, 9, 27, 125, 108, 252, 214, 79, 158, 252, 158, + 255, 27, 166, 79, 134, 109, 7, 6, 0, 159, 69, 120, 87, 70, 212, 52, 71, 248, 222, 193, 116, 242, 34, 245, 255, + 255, 159, 191, 27, 123, 192, 147, 83, 252, 91, 232, 41, 73, 181, 120, 84, 22, 41, 62, 72, 59, 28, 27, 143, 60, 33, + 171, 44, 105, 193, 35, 27, 74, 1, 41, 10, 187, 96, 36, 52, 27, 171, 4, 97, 45, 106, 21, 191, 92, 67, 118, 163, 47, + 255, 159, 71, 211, 168, 214, 226, 23, 131, 157, 65, 12, 66, 187, 155, 76, 240, 3, 192, 212, 60, 215, 184, 255, + 255, 240, 26, 17, 69, 138, 83, 228, 54, 178, 255, 159, 75, 68, 228, 199, 255, 140, 225, 216, 9, 247, 148, 178, + 255, 255, 69, 75, 133, 26, 151, 158, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3225, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5023110796148747845" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8335435932030498254" + } + } + ] + }, + "cborHex": "d8669f1b45b5aca7cfe02e459f1b73ad6ad130b475ceffff", + "cborBytes": [ + 216, 102, 159, 27, 69, 181, 172, 167, 207, 224, 46, 69, 159, 27, 115, 173, 106, 209, 48, 180, 117, 206, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3226, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13085034957053540860" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14840671736280621606" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e7c919aaf2468b65fd56d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13523555474267726950" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3234557197734491463" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0009bfbb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4803766394295075956" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c699a0f58e4018956256" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15358067993876767538" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dba819359e4b6d60e0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16265474301937100506" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18414349178628860471" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17692536630307983865" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6745945287132955026" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17804888182137430300" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1858360957145999010" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0ceadd497cbf54ed1baf7b35" + }, + { + "_tag": "ByteArray", + "bytearray": "4213416a" + } + ] + } + ] + }, + "cborHex": "d8669f1bb59761f748beb9fc9f9f9f1bcdf4a8509d2fa2264b9e7c919aaf2468b65fd56d1bbbad520d90046466ffbf1b2ce374a248a5b547440009bfbb1b42aa68158beac4744ac699a0f58e40189562561bd522d1784b52233249dba819359e4b6d60e01be1ba92b30e34a6da1bff8ce903ba2dea371bf5888453811811f91b5d9e697f41c7c1921bf717ab77a1da211c1b19ca3971cb2466a2ff4c0ceadd497cbf54ed1baf7b35444213416affffff", + "cborBytes": [ + 216, 102, 159, 27, 181, 151, 97, 247, 72, 190, 185, 252, 159, 159, 159, 27, 205, 244, 168, 80, 157, 47, 162, 38, + 75, 158, 124, 145, 154, 175, 36, 104, 182, 95, 213, 109, 27, 187, 173, 82, 13, 144, 4, 100, 102, 255, 191, 27, 44, + 227, 116, 162, 72, 165, 181, 71, 68, 0, 9, 191, 187, 27, 66, 170, 104, 21, 139, 234, 196, 116, 74, 198, 153, 160, + 245, 142, 64, 24, 149, 98, 86, 27, 213, 34, 209, 120, 75, 82, 35, 50, 73, 219, 168, 25, 53, 158, 75, 109, 96, 224, + 27, 225, 186, 146, 179, 14, 52, 166, 218, 27, 255, 140, 233, 3, 186, 45, 234, 55, 27, 245, 136, 132, 83, 129, 24, + 17, 249, 27, 93, 158, 105, 127, 65, 199, 193, 146, 27, 247, 23, 171, 119, 161, 218, 33, 28, 27, 25, 202, 57, 113, + 203, 36, 102, 162, 255, 76, 12, 234, 221, 73, 124, 191, 84, 237, 27, 175, 123, 53, 68, 66, 19, 65, 106, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3227, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "1932431800" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a0de21" + } + ] + }, + "cborHex": "d905039fd8669f1bffffffffffffffeb9fa0451932431800ffff43a0de21ff", + "cborBytes": [ + 217, 5, 3, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 160, 69, 25, 50, 67, 24, 0, 255, + 255, 67, 160, 222, 33, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3228, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2060523229197413944" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3623377361086165367" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "241980259939875622" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1024884958064246531" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "883704082495214743" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f37eec384ce6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ebcdf43a389595d7dcf16cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6481e405bfab9000293c0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7114bf5a9bc58dbccb703" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14725818955217512866" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "610962336563824102" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1789" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d906756" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13185794555961207332" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b1c9872f5b7c0ae389f1b3248d2832ebbb177bf1b035bafc3ac5f7b261b0e391f70750f7f031b0c438c2e53b0949746f37eec384ce6412b4c3ebcdf43a389595d7dcf16cb4b6481e405bfab9000293c0f4ba7114bf5a9bc58dbccb703ff1bcc5c9e51ac7429a2bf1b087a9302120785e6421789446d9067561bb6fd5a498d58ea24ffffff", + "cborBytes": [ + 216, 102, 159, 27, 28, 152, 114, 245, 183, 192, 174, 56, 159, 27, 50, 72, 210, 131, 46, 187, 177, 119, 191, 27, 3, + 91, 175, 195, 172, 95, 123, 38, 27, 14, 57, 31, 112, 117, 15, 127, 3, 27, 12, 67, 140, 46, 83, 176, 148, 151, 70, + 243, 126, 236, 56, 76, 230, 65, 43, 76, 62, 188, 223, 67, 163, 137, 89, 93, 125, 207, 22, 203, 75, 100, 129, 228, + 5, 191, 171, 144, 0, 41, 60, 15, 75, 167, 17, 75, 245, 169, 188, 88, 219, 204, 183, 3, 255, 27, 204, 92, 158, 81, + 172, 116, 41, 162, 191, 27, 8, 122, 147, 2, 18, 7, 133, 230, 66, 23, 137, 68, 109, 144, 103, 86, 27, 182, 253, 90, + 73, 141, 88, 234, 36, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3229, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7659913712838151006" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6755510113645133408" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8256113063165777842" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7afeaa7d853229" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10320194794009045493" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16369279026998361643" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d02" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14784292293917432652" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3392e98ef44b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "94" + } + ] + }, + "cborHex": "d8669f1b6a4d7af017dc8b5e9f1b5dc064a7f8607e60bf1b72939b16937557b2477afeaa7d8532291b8f38b27c85bea9f541841be32b5c8c017d3e2b427d02ffd8669f1bcd2c5b82c27e5b4c80ff9f463392e98ef44bff4194ffff", + "cborBytes": [ + 216, 102, 159, 27, 106, 77, 122, 240, 23, 220, 139, 94, 159, 27, 93, 192, 100, 167, 248, 96, 126, 96, 191, 27, + 114, 147, 155, 22, 147, 117, 87, 178, 71, 122, 254, 170, 125, 133, 50, 41, 27, 143, 56, 178, 124, 133, 190, 169, + 245, 65, 132, 27, 227, 43, 92, 140, 1, 125, 62, 43, 66, 125, 2, 255, 216, 102, 159, 27, 205, 44, 91, 130, 194, + 126, 91, 76, 128, 255, 159, 70, 51, 146, 233, 142, 244, 75, 255, 65, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3230, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + }, + "cborHex": "d87d9f11ff", + "cborBytes": [216, 125, 159, 17, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3231, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2330932776142988221" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8611572072177263034" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d4a0534cf6c7c31c6a8fa5" + }, + { + "_tag": "ByteArray", + "bytearray": "0eb0" + }, + { + "_tag": "ByteArray", + "bytearray": "925b10" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9849816036734485676" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3081107456852943710" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9288890585236243935" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7708942540151085460" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10623406276458453273" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b987f6502f995e70" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16974721038949963383" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0f51398816bf73a1b6a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12569957811400454750" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b20592302955163bd9f9fbf1b7782732c6fcce1ba41b2ff9f4bd4a0534cf6c7c31c6a8fa5420eb043925b101b88b1937fb48144acff1b2ac24ae85886e35ebf1b80e8c4c5ca7a05df1b6afbaa65839a59941b936debb924f6191948b987f6502f995e701beb9252d957f65677417dffffbf4ab0f51398816bf73a1b6a1bae717607ee2bb25effffff", + "cborBytes": [ + 216, 102, 159, 27, 32, 89, 35, 2, 149, 81, 99, 189, 159, 159, 191, 27, 119, 130, 115, 44, 111, 204, 225, 186, 65, + 178, 255, 159, 75, 212, 160, 83, 76, 246, 199, 195, 28, 106, 143, 165, 66, 14, 176, 67, 146, 91, 16, 27, 136, 177, + 147, 127, 180, 129, 68, 172, 255, 27, 42, 194, 74, 232, 88, 134, 227, 94, 191, 27, 128, 232, 196, 197, 202, 122, + 5, 223, 27, 106, 251, 170, 101, 131, 154, 89, 148, 27, 147, 109, 235, 185, 36, 246, 25, 25, 72, 185, 135, 246, 80, + 47, 153, 94, 112, 27, 235, 146, 82, 217, 87, 246, 86, 119, 65, 125, 255, 255, 191, 74, 176, 245, 19, 152, 129, + 107, 247, 58, 27, 106, 27, 174, 113, 118, 7, 238, 43, 178, 94, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3232, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3911615069835612886" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8300771090235127466" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d27134834632b5e7" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1334537395042749385" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "160c25c9f0b71945bc4f1f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11675389661155503178" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "280c8e24b39883ecca87" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2273479654712389811" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "75a420f1b3" + } + ] + }, + "cborHex": "d905039f1b3648d92e6f9dd2d6bf1b73324353c34bf6aa48d27134834632b5e7ff1b12853ab0aaff8bc9bf4b160c25c9f0b71945bc4f1f1ba2075109b7712c4a4a280c8e24b39883ecca871b1f8d05b35735b0b3ff4575a420f1b3ff", + "cborBytes": [ + 217, 5, 3, 159, 27, 54, 72, 217, 46, 111, 157, 210, 214, 191, 27, 115, 50, 67, 83, 195, 75, 246, 170, 72, 210, + 113, 52, 131, 70, 50, 181, 231, 255, 27, 18, 133, 58, 176, 170, 255, 139, 201, 191, 75, 22, 12, 37, 201, 240, 183, + 25, 69, 188, 79, 31, 27, 162, 7, 81, 9, 183, 113, 44, 74, 74, 40, 12, 142, 36, 179, 152, 131, 236, 202, 135, 27, + 31, 141, 5, 179, 87, 53, 176, 179, 255, 69, 117, 164, 32, 241, 179, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3233, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17276173339358646032" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1382500876063982999" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9437270886446697209" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7b" + }, + { + "_tag": "ByteArray", + "bytearray": "e92b8091a50ed0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13418052432603831084" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12524653756145579980" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5464061287246687046" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "136456710540daa68686e285" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14591533841276792829" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a51ac84208e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a862" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce9c325b3ba484c69d9f9b6d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17569160645280005552" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efe861abe0ac16" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73d2fe11098040ef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc51cd667a0671700e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db9111d4a00fb309d91319cd" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9919125be792c3c3926b0a" + }, + { + "_tag": "ByteArray", + "bytearray": "7eb3d3d03f203fa9139511b8" + } + ] + }, + "cborHex": "d87d9f9fd8669f1befc14c1e7a8bcf109f1b132fa138d375c5971b82f7ebded3ca8af9417b47e92b8091a50ed01bba367f9876eadb2cffffbf1badd0823b95d1b7cc1b4bd43eca794d6b46ff4c136456710540daa68686e285ff9fbf41631bca7f8ab82964effd46a51ac84208e242a8624cce9c325b3ba484c69d9f9b6d1bf3d232857faffdb047efe861abe0ac164873d2fe11098040ef49fc51cd667a0671700e4cdb9111d4a00fb309d91319cdffff4b9919125be792c3c3926b0a4c7eb3d3d03f203fa9139511b8ff", + "cborBytes": [ + 216, 125, 159, 159, 216, 102, 159, 27, 239, 193, 76, 30, 122, 139, 207, 16, 159, 27, 19, 47, 161, 56, 211, 117, + 197, 151, 27, 130, 247, 235, 222, 211, 202, 138, 249, 65, 123, 71, 233, 43, 128, 145, 165, 14, 208, 27, 186, 54, + 127, 152, 118, 234, 219, 44, 255, 255, 191, 27, 173, 208, 130, 59, 149, 209, 183, 204, 27, 75, 212, 62, 202, 121, + 77, 107, 70, 255, 76, 19, 100, 86, 113, 5, 64, 218, 166, 134, 134, 226, 133, 255, 159, 191, 65, 99, 27, 202, 127, + 138, 184, 41, 100, 239, 253, 70, 165, 26, 200, 66, 8, 226, 66, 168, 98, 76, 206, 156, 50, 91, 59, 164, 132, 198, + 157, 159, 155, 109, 27, 243, 210, 50, 133, 127, 175, 253, 176, 71, 239, 232, 97, 171, 224, 172, 22, 72, 115, 210, + 254, 17, 9, 128, 64, 239, 73, 252, 81, 205, 102, 122, 6, 113, 112, 14, 76, 219, 145, 17, 212, 160, 15, 179, 9, + 217, 19, 25, 205, 255, 255, 75, 153, 25, 18, 91, 231, 146, 195, 195, 146, 107, 10, 76, 126, 179, 211, 208, 63, 32, + 63, 169, 19, 149, 17, 184, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3234, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3326042017520503851" + }, + "fields": [] + }, + "cborHex": "d8669f1b2e287997c2554c2b80ff", + "cborBytes": [216, 102, 159, 27, 46, 40, 121, 151, 194, 85, 76, 43, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3235, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2171563293198842127" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "044570194f0c9e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5401554911375006440" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24351a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15362654687248042082" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cb2bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f53abbed" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91874547167f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3225029398719444096" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2218829019679679271" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e27d9392a9a1e23db32caf69" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12292396269567612122" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3469635943662332193" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2af0ea11" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d91f3d7" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18299078791729228776" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17027303535303227220" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e25" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3019774149196284081" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bcbaa9" + } + ] + }, + "cborHex": "d8669f1b1e22f14f4a64f90f9fbf47044570194f0c9e1b4af62d92bf461ae84324351a1bd5331d0b1068c862434cb2bf44f53abbed4691874547167f1b2cc19b26b4dd348042de061b1ecadd3ccf55e3274ce27d9392a9a1e23db32caf691baa975d477dea14daffd8669f1b30269f8201eba9219fbf442af0ea11446d91f3d7ff1bfdf3633559e7abe8ffffd8669f1bec4d2259d08077549fbf420e251b29e86496d8c080b1ffffff43bcbaa9ffff", + "cborBytes": [ + 216, 102, 159, 27, 30, 34, 241, 79, 74, 100, 249, 15, 159, 191, 71, 4, 69, 112, 25, 79, 12, 158, 27, 74, 246, 45, + 146, 191, 70, 26, 232, 67, 36, 53, 26, 27, 213, 51, 29, 11, 16, 104, 200, 98, 67, 76, 178, 191, 68, 245, 58, 187, + 237, 70, 145, 135, 69, 71, 22, 127, 27, 44, 193, 155, 38, 180, 221, 52, 128, 66, 222, 6, 27, 30, 202, 221, 60, + 207, 85, 227, 39, 76, 226, 125, 147, 146, 169, 161, 226, 61, 179, 44, 175, 105, 27, 170, 151, 93, 71, 125, 234, + 20, 218, 255, 216, 102, 159, 27, 48, 38, 159, 130, 1, 235, 169, 33, 159, 191, 68, 42, 240, 234, 17, 68, 109, 145, + 243, 215, 255, 27, 253, 243, 99, 53, 89, 231, 171, 232, 255, 255, 216, 102, 159, 27, 236, 77, 34, 89, 208, 128, + 119, 84, 159, 191, 66, 14, 37, 27, 41, 232, 100, 150, 216, 192, 128, 177, 255, 255, 255, 67, 188, 186, 169, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3236, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6d62671f910d6cd26863ba" + } + ] + }, + "cborHex": "d905049f4b6d62671f910d6cd26863baff", + "cborBytes": [217, 5, 4, 159, 75, 109, 98, 103, 31, 145, 13, 108, 210, 104, 99, 186, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3237, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e0baa98c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4767932252686339511" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fbdd2b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3e258d3e25e13" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a24" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1468cf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc4b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7082417091176170918" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb5ae9361a26dba1b8034bb2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2e3caa02449" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec6507" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3354254345166594561" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12585033241674294654" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59fbf453e0baa98c11b422b191f4a7f4db7443fbdd2b147e3e258d3e25e13427a24431468cf42cc4b1b6249ccd1f6b605a64ceb5ae9361a26dba1b8034bb246f2e3caa0244943ec65071b2e8cb48e29f72201ffd8669f1baea7050e107aa57e80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 191, 69, 62, 11, 170, 152, 193, 27, 66, 43, 25, + 31, 74, 127, 77, 183, 68, 63, 189, 210, 177, 71, 227, 226, 88, 211, 226, 94, 19, 66, 122, 36, 67, 20, 104, 207, + 66, 204, 75, 27, 98, 73, 204, 209, 246, 182, 5, 166, 76, 235, 90, 233, 54, 26, 38, 219, 161, 184, 3, 75, 178, 70, + 242, 227, 202, 160, 36, 73, 67, 236, 101, 7, 27, 46, 140, 180, 142, 41, 247, 34, 1, 255, 216, 102, 159, 27, 174, + 167, 5, 14, 16, 122, 165, 126, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3238, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "664495941104475431" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3822" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3075096791974827810" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15318043024156930004" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4094974941931920271" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17788031009955646331" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7249120218318150204" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2182394835019042752" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15277120902603842774" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10569901714851070301" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "04fa84" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6b1864995ed0d0" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15421875677310650593" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "113653200337494173" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9956943630846511965" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6377421831040889265" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14314271282896430716" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb11566d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0712fff906ff07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd07ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "741cb8f69e8cd692" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e2e818d4" + }, + { + "_tag": "ByteArray", + "bytearray": "1a19" + }, + { + "_tag": "ByteArray", + "bytearray": "02ca33e7a7b6bcd054de1f" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8169521686231186439" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17552361948841726526" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "aac530" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "99055d736f7c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c81f9091a3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a49ebf1556636c23b075" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4404139128854721309" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe868f8670167ec418" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4dc3339f69" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "82aaffa20e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4702324909080515436" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2cbdbd5379cbb49c5d35b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5428b806736d27a9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9c1bdbcfbce8916df4b67af" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13958211914394530441" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99fbf1b0938c389ac389d274238221b2aacf03d5f9a57221bd4949ef8d5062fd41b38d4460379fa5b8f1bf6dbc7f5620a0b7b1b649a0c6e5af49a3c1b1e496c8a24f50fc01bd4033c84ee65a4d61b92afd59ba07d815dff4304fa849f9f476b1864995ed0d0ff9f1bd60582384c5688e11b0193c6fbc9b3e09d1b8a2e2b7a6531cb5d1b5881275dc60371b1ff9f1bc6a681e43b9de67cffffd905009fbf44bb11566d470712fff906ff0743cd07ff48741cb8f69e8cd692ff9f44e2e818d4421a194b02ca33e7a7b6bcd054de1fffffd8669f1b715ff8b08ca8fc079fd8669f1bf396843231cb523e80ff43aac530bf4699055d736f7c45c81f9091a34aa49ebf1556636c23b0751b3d1ea5341cc8b31d49fe868f8670167ec418454dc3339f69ffbf4582aaffa20e1b414203974037136c4ba2cbdbd5379cbb49c5d35b485428b806736d27a94cf9c1bdbcfbce8916df4b67af1bc1b587c8491c7289ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 191, 27, 9, 56, 195, 137, 172, 56, 157, 39, 66, + 56, 34, 27, 42, 172, 240, 61, 95, 154, 87, 34, 27, 212, 148, 158, 248, 213, 6, 47, 212, 27, 56, 212, 70, 3, 121, + 250, 91, 143, 27, 246, 219, 199, 245, 98, 10, 11, 123, 27, 100, 154, 12, 110, 90, 244, 154, 60, 27, 30, 73, 108, + 138, 36, 245, 15, 192, 27, 212, 3, 60, 132, 238, 101, 164, 214, 27, 146, 175, 213, 155, 160, 125, 129, 93, 255, + 67, 4, 250, 132, 159, 159, 71, 107, 24, 100, 153, 94, 208, 208, 255, 159, 27, 214, 5, 130, 56, 76, 86, 136, 225, + 27, 1, 147, 198, 251, 201, 179, 224, 157, 27, 138, 46, 43, 122, 101, 49, 203, 93, 27, 88, 129, 39, 93, 198, 3, + 113, 177, 255, 159, 27, 198, 166, 129, 228, 59, 157, 230, 124, 255, 255, 217, 5, 0, 159, 191, 68, 187, 17, 86, + 109, 71, 7, 18, 255, 249, 6, 255, 7, 67, 205, 7, 255, 72, 116, 28, 184, 246, 158, 140, 214, 146, 255, 159, 68, + 226, 232, 24, 212, 66, 26, 25, 75, 2, 202, 51, 231, 167, 182, 188, 208, 84, 222, 31, 255, 255, 216, 102, 159, 27, + 113, 95, 248, 176, 140, 168, 252, 7, 159, 216, 102, 159, 27, 243, 150, 132, 50, 49, 203, 82, 62, 128, 255, 67, + 170, 197, 48, 191, 70, 153, 5, 93, 115, 111, 124, 69, 200, 31, 144, 145, 163, 74, 164, 158, 191, 21, 86, 99, 108, + 35, 176, 117, 27, 61, 30, 165, 52, 28, 200, 179, 29, 73, 254, 134, 143, 134, 112, 22, 126, 196, 24, 69, 77, 195, + 51, 159, 105, 255, 191, 69, 130, 170, 255, 162, 14, 27, 65, 66, 3, 151, 64, 55, 19, 108, 75, 162, 203, 219, 213, + 55, 156, 187, 73, 197, 211, 91, 72, 84, 40, 184, 6, 115, 109, 39, 169, 76, 249, 193, 189, 188, 251, 206, 137, 22, + 223, 75, 103, 175, 27, 193, 181, 135, 200, 73, 28, 114, 137, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3239, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9654513217249739111" + }, + "fields": [] + }, + "cborHex": "d8669f1b85fbb89e897c016780ff", + "cborBytes": [216, 102, 159, 27, 133, 251, 184, 158, 137, 124, 1, 103, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3240, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17152483901513871837" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2540920098198700380" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12777735121749701951" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1518242347675872279" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e5b1b64197309442e659d3" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13905552716764507851" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef11fd706f29f758b8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "485717483724370423" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18301600052554351995" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6314624095007773309" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a33eb348ae661fad607bfc79" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14898947713965426340" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9584715325617063671" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16593922765754960868" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e63a3f" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "338bf55fc6a1a214ac0a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12562248614644244486" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "70eb456d5285550890885fa1" + }, + { + "_tag": "ByteArray", + "bytearray": "aae4e86ef7" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8279604711751675829" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bee09dd3b0d5731dd9f1b2343295defc8c15c9fd8669f1bb153a264d5ec753f80ff9f1b1511e15f082cec174be5b1b64197309442e659d3ffbf1bc0fa728568376ecb49ef11fd706f29f758b8ff9f1b06bd9d7a5e9671f71bfdfc584821c5c57bffbf1b57a20d28790f927d4ca33eb348ae661fad607bfc791bcec3b202020706a41b8503bfce80a5c6f71be64974d64b178be443e63a3fffff4a338bf55fc6a1a214ac0ad8669f1bae56128eb00360069f4c70eb456d5285550890885fa145aae4e86ef7809f1b72e7109e3c9befb5ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 238, 9, 221, 59, 13, 87, 49, 221, 159, 27, 35, 67, 41, 93, 239, 200, 193, 92, 159, 216, 102, + 159, 27, 177, 83, 162, 100, 213, 236, 117, 63, 128, 255, 159, 27, 21, 17, 225, 95, 8, 44, 236, 23, 75, 229, 177, + 182, 65, 151, 48, 148, 66, 230, 89, 211, 255, 191, 27, 192, 250, 114, 133, 104, 55, 110, 203, 73, 239, 17, 253, + 112, 111, 41, 247, 88, 184, 255, 159, 27, 6, 189, 157, 122, 94, 150, 113, 247, 27, 253, 252, 88, 72, 33, 197, 197, + 123, 255, 191, 27, 87, 162, 13, 40, 121, 15, 146, 125, 76, 163, 62, 179, 72, 174, 102, 31, 173, 96, 123, 252, 121, + 27, 206, 195, 178, 2, 2, 7, 6, 164, 27, 133, 3, 191, 206, 128, 165, 198, 247, 27, 230, 73, 116, 214, 75, 23, 139, + 228, 67, 230, 58, 63, 255, 255, 74, 51, 139, 245, 95, 198, 161, 162, 20, 172, 10, 216, 102, 159, 27, 174, 86, 18, + 142, 176, 3, 96, 6, 159, 76, 112, 235, 69, 109, 82, 133, 85, 8, 144, 136, 95, 161, 69, 170, 228, 232, 110, 247, + 128, 159, 27, 114, 231, 16, 158, 60, 155, 239, 181, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3241, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1461904268292200019" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8765524325168779106" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "715532a4e56e62607e6599" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c213ea2e7a59f598b19" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7f6fce3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6636d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10ae99a9" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b1449ba2fbf2f16539fd8669f1b79a565ee97bb0f629f9f14ffffffbf4b715532a4e56e62607e65994a7c213ea2e7a59f598b1944d7f6fce343a6636d41fa4410ae99a9ffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 20, 73, 186, 47, 191, 47, 22, 83, 159, 216, 102, 159, 27, 121, 165, 101, 238, 151, 187, 15, 98, + 159, 159, 20, 255, 255, 255, 191, 75, 113, 85, 50, 164, 229, 110, 98, 96, 126, 101, 153, 74, 124, 33, 62, 162, + 231, 165, 159, 89, 139, 25, 68, 215, 246, 252, 227, 67, 166, 99, 109, 65, 250, 68, 16, 174, 153, 169, 255, 160, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3242, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2085473764525656577" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2175346032149107582" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16216079927671057221" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2524149102922579308" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d28dd38acd171" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12548343816919202077" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16961609612067191956" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13626375982614129721" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6000fc" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6c5b5de687ae9c18b4659f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16458309570306101220" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13887336070734180861" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3d4f3457ecefd3a0b345e078" + }, + { + "_tag": "ByteArray", + "bytearray": "d0eb10323e63" + }, + { + "_tag": "ByteArray", + "bytearray": "8e268bbaebdf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13991000467968840227" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8370011724012243342" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f9d9fcac4d30e0093973" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10657885935402537613" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e3927ae90cbd31" + }, + { + "_tag": "ByteArray", + "bytearray": "c5af" + }, + { + "_tag": "ByteArray", + "bytearray": "cc" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18202685787006831932" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10302569723628834576" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13275501319052199852" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16972202954638025281" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b9cab9a0924bb9c01927" + }, + { + "_tag": "ByteArray", + "bytearray": "7ad79c45d3681a9eaa" + }, + { + "_tag": "ByteArray", + "bytearray": "c9352ba3" + }, + { + "_tag": "ByteArray", + "bytearray": "57ce027ff3f86ad3b2af5f8e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6358340611542656698" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6995378159046244842" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ae8652188ef66f0eab" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "86222045799741139" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f23e64" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8066233663761118060" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12504905386408480400" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c0d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4659456070031502781" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ceec168" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b1cf11756eaf2ca019fa0bf1b1e3061b0d5cd937e1be10b16c71a2ceb451b2307943c4fd23d6c471d28dd38acd1711bae24ac37aef0391d1beb63be13621dbc941bbd1a9cc2b3a12c39436000fcff9f4b6c5b5de687ae9c18b4659fffd8669f1be467a95ab581cfe49fd8669f1bc0b9ba93fc9471fd9f4c3d4f3457ecefd3a0b345e07846d0eb10323e63468e268bbaebdf1bc22a04cc519b5223ffffd8669f1b74284151179ac98e9f4af9d9fcac4d30e00939731b93e86aca544cd28d47e3927ae90cbd3142c5af41ccffffd8669f1bfc9cee4804980d3c9f1b8efa14940a974f10ffffd8669f1bb83c0e1cf15607ac9f1beb8960aa2708e2414ab9cab9a0924bb9c01927497ad79c45d3681a9eaa44c9352ba34c57ce027ff3f86ad3b2af5f8effffd8669f1b583d5d1927f0a6ba9f1b6114935f5f7a39ea49ae8652188ef66f0eabffffffffd8669f1b0132527e6bb376d39f43f23e649f1b6ff104c7cbc7736c1bad8a5931f2bf0e90424c0d1b40a9b69bdcc3edbd444ceec168ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 28, 241, 23, 86, 234, 242, 202, 1, 159, 160, 191, 27, 30, 48, 97, 176, 213, 205, 147, 126, 27, + 225, 11, 22, 199, 26, 44, 235, 69, 27, 35, 7, 148, 60, 79, 210, 61, 108, 71, 29, 40, 221, 56, 172, 209, 113, 27, + 174, 36, 172, 55, 174, 240, 57, 29, 27, 235, 99, 190, 19, 98, 29, 188, 148, 27, 189, 26, 156, 194, 179, 161, 44, + 57, 67, 96, 0, 252, 255, 159, 75, 108, 91, 93, 230, 135, 174, 156, 24, 180, 101, 159, 255, 216, 102, 159, 27, 228, + 103, 169, 90, 181, 129, 207, 228, 159, 216, 102, 159, 27, 192, 185, 186, 147, 252, 148, 113, 253, 159, 76, 61, 79, + 52, 87, 236, 239, 211, 160, 179, 69, 224, 120, 70, 208, 235, 16, 50, 62, 99, 70, 142, 38, 139, 186, 235, 223, 27, + 194, 42, 4, 204, 81, 155, 82, 35, 255, 255, 216, 102, 159, 27, 116, 40, 65, 81, 23, 154, 201, 142, 159, 74, 249, + 217, 252, 172, 77, 48, 224, 9, 57, 115, 27, 147, 232, 106, 202, 84, 76, 210, 141, 71, 227, 146, 122, 233, 12, 189, + 49, 66, 197, 175, 65, 204, 255, 255, 216, 102, 159, 27, 252, 156, 238, 72, 4, 152, 13, 60, 159, 27, 142, 250, 20, + 148, 10, 151, 79, 16, 255, 255, 216, 102, 159, 27, 184, 60, 14, 28, 241, 86, 7, 172, 159, 27, 235, 137, 96, 170, + 39, 8, 226, 65, 74, 185, 202, 185, 160, 146, 75, 185, 192, 25, 39, 73, 122, 215, 156, 69, 211, 104, 26, 158, 170, + 68, 201, 53, 43, 163, 76, 87, 206, 2, 127, 243, 248, 106, 211, 178, 175, 95, 142, 255, 255, 216, 102, 159, 27, 88, + 61, 93, 25, 39, 240, 166, 186, 159, 27, 97, 20, 147, 95, 95, 122, 57, 234, 73, 174, 134, 82, 24, 142, 246, 111, + 14, 171, 255, 255, 255, 255, 216, 102, 159, 27, 1, 50, 82, 126, 107, 179, 118, 211, 159, 67, 242, 62, 100, 159, + 27, 111, 241, 4, 199, 203, 199, 115, 108, 27, 173, 138, 89, 49, 242, 191, 14, 144, 66, 76, 13, 27, 64, 169, 182, + 155, 220, 195, 237, 189, 68, 76, 238, 193, 104, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3243, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6242482347333182393" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dfd63a666361" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18342317941401836703" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2928785287910164495" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b654b589" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10421933583428417124" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17608121751942388449" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14650909738602054001" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32589e6757b5a60f90ac18ec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "325755ad9427fe0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4c323e0b383271da5" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b56a1c09eed70e3b99f46dfd63a666361a01bfe8d00fc6687dc9fbf1b28a522b3b546880f44b654b5891b90a2256058f6f6641bf45c9d710a5adae11bcb527cc88dafc1714c32589e6757b5a60f90ac18ec48325755ad9427fe0e49f4c323e0b383271da5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 86, 161, 192, 158, 237, 112, 227, 185, 159, 70, 223, 214, 58, 102, 99, 97, 160, 27, 254, 141, + 0, 252, 102, 135, 220, 159, 191, 27, 40, 165, 34, 179, 181, 70, 136, 15, 68, 182, 84, 181, 137, 27, 144, 162, 37, + 96, 88, 246, 246, 100, 27, 244, 92, 157, 113, 10, 90, 218, 225, 27, 203, 82, 124, 200, 141, 175, 193, 113, 76, 50, + 88, 158, 103, 87, 181, 166, 15, 144, 172, 24, 236, 72, 50, 87, 85, 173, 148, 39, 254, 14, 73, 244, 195, 35, 224, + 179, 131, 39, 29, 165, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3244, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10798446302557815186" + } + } + ] + }, + "cborHex": "d905019f1b95dbc9b31616c192ff", + "cborBytes": [217, 5, 1, 159, 27, 149, 219, 201, 179, 22, 22, 193, 146, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3245, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3127262704740103571" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + }, + "cborHex": "d8669f1b2b6644dc6b5c75939fd87e9f9f0441041301ffff07ffff", + "cborBytes": [ + 216, 102, 159, 27, 43, 102, 68, 220, 107, 92, 117, 147, 159, 216, 126, 159, 159, 4, 65, 4, 19, 1, 255, 255, 7, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3246, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15595229428201108563" + }, + "fields": [] + }, + "cborHex": "d8669f1bd86d6289b2a5345380ff", + "cborBytes": [216, 102, 159, 27, 216, 109, 98, 137, 178, 165, 52, 83, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3247, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1223601365967595915" + }, + "fields": [] + }, + "cborHex": "d8669f1b10fb1af59d2e698b80ff", + "cborBytes": [216, 102, 159, 27, 16, 251, 26, 245, 157, 46, 105, 139, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3248, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0302ff" + } + ] + }, + "cborHex": "d905049f430302ffff", + "cborBytes": [217, 5, 4, 159, 67, 3, 2, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3249, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13730375230393594693" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "783730111964842254" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17719098093708875638" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6234531403089557749" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7769601194465089793" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc5d4e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8146487775623750793" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1378431016977601444" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11273540186097885217" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10677149372895188314" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f4fa" + }, + { + "_tag": "ByteArray", + "bytearray": "25d4db280659e9a5108f8c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2869759933709527409" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13061221313427150184" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c1730d9e" + } + ] + } + ] + }, + "cborHex": "d9050a9fd9050b9f1bbe8c1786806eb345bf1b0ae05e626b71090e1bf5e6e1d61fd197761b56858147762bb8f541ca1b6bd32b1f0a8ad90143dc5d4e1b710e2378511da4891b13212bb4ea5493a41b9c73a911c974a0211b942cdac8e133d55aff9f42f4fa4b25d4db280659e9a5108f8c1b27d36f747f67a9711bb542c7954f961568ff44c1730d9effff", + "cborBytes": [ + 217, 5, 10, 159, 217, 5, 11, 159, 27, 190, 140, 23, 134, 128, 110, 179, 69, 191, 27, 10, 224, 94, 98, 107, 113, 9, + 14, 27, 245, 230, 225, 214, 31, 209, 151, 118, 27, 86, 133, 129, 71, 118, 43, 184, 245, 65, 202, 27, 107, 211, 43, + 31, 10, 138, 217, 1, 67, 220, 93, 78, 27, 113, 14, 35, 120, 81, 29, 164, 137, 27, 19, 33, 43, 180, 234, 84, 147, + 164, 27, 156, 115, 169, 17, 201, 116, 160, 33, 27, 148, 44, 218, 200, 225, 51, 213, 90, 255, 159, 66, 244, 250, + 75, 37, 212, 219, 40, 6, 89, 233, 165, 16, 143, 140, 27, 39, 211, 111, 116, 127, 103, 169, 113, 27, 181, 66, 199, + 149, 79, 150, 21, 104, 255, 68, 193, 115, 13, 158, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3250, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8451041809948628326" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10501977688480077854" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6f60413200345fd3681" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2221103071341001539" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9870716554342874326" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "426077163947222331" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6035680503952041741" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74eee78647967996038d" + }, + { + "_tag": "ByteArray", + "bytearray": "cd66e2" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b754821c027f655669f9f1b91be8510d8eed81e4ad6f60413200345fd36811b1ed2f179b8cf3b431b88fbd468ac2cbcd6d8669f1b05e9baec53fae53b9f1b53c30b709fcfe70d4a74eee78647967996038d43cd66e2ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 117, 72, 33, 192, 39, 246, 85, 102, 159, 159, 27, 145, 190, 133, 16, 216, 238, 216, 30, 74, + 214, 246, 4, 19, 32, 3, 69, 253, 54, 129, 27, 30, 210, 241, 121, 184, 207, 59, 67, 27, 136, 251, 212, 104, 172, + 44, 188, 214, 216, 102, 159, 27, 5, 233, 186, 236, 83, 250, 229, 59, 159, 27, 83, 195, 11, 112, 159, 207, 231, 13, + 74, 116, 238, 231, 134, 71, 150, 121, 150, 3, 141, 67, 205, 102, 226, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3251, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10561159815768589676" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17605066007029345601" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14671557089833997359" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d90c7ebe23ee15389f8" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1763958588570854665" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11283591425861428720" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11298242804660907119" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7187834792886338393" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4080449729370049708" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9fbf1b9290c6e5a304456c1bf451c241fc49ed411bcb9bd770a16b542f4a4d90c7ebe23ee15389f8ff80bf1b187ad6fd8e43e5091b9c975e9e691d25f01b9ccb6bf85ded2c6f1b63c051a94e2f0359ff1b38a0ab68e2f0ccacffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 191, 27, 146, 144, 198, 229, 163, 4, 69, 108, 27, + 244, 81, 194, 65, 252, 73, 237, 65, 27, 203, 155, 215, 112, 161, 107, 84, 47, 74, 77, 144, 199, 235, 226, 62, 225, + 83, 137, 248, 255, 128, 191, 27, 24, 122, 214, 253, 142, 67, 229, 9, 27, 156, 151, 94, 158, 105, 29, 37, 240, 27, + 156, 203, 107, 248, 93, 237, 44, 111, 27, 99, 192, 81, 169, 78, 47, 3, 89, 255, 27, 56, 160, 171, 104, 226, 240, + 204, 172, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3252, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9764442477436453352" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16226310072057256851" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91a9c8fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1384761753450008772" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b878244b2f155c1e89fbf1be12f6f0a3450db934491a9c8fe1bffffffffffffffef0d1bfffffffffffffff61b1337a97a5cef50c4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 135, 130, 68, 178, 241, 85, 193, 232, 159, 191, 27, 225, 47, 111, 10, 52, 80, 219, 147, 68, + 145, 169, 200, 254, 27, 255, 255, 255, 255, 255, 255, 255, 239, 13, 27, 255, 255, 255, 255, 255, 255, 255, 246, + 27, 19, 55, 169, 122, 92, 239, 80, 196, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3253, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7937608197602729578" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0661cb00" + } + ] + }, + "cborHex": "d8669f1b6e280c99b856de6a9f440661cb00ffff", + "cborBytes": [216, 102, 159, 27, 110, 40, 12, 153, 184, 86, 222, 106, 159, 68, 6, 97, 203, 0, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3254, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11352000857457251049" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7773764324450194236" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a2f8576cda6b4a1e" + }, + { + "_tag": "ByteArray", + "bytearray": "2aac3f17d7cbc6ad9371" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5060399761608389046" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10072128974060819563" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15239547122419769627" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13465294819669250395" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1228229574912553861" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2733984165354425418" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16663512906821925815" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2924297156387464569" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9283444415152852539" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aed5ec8e2b6ae4d679d7dbc1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12734618347870845804" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6310186250864331802" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2089380941750497612" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16941715091526425966" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14752822961383779438" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b9d8a68a266ab52e99fd8669f1b6be1f5774675533c9f48a2f8576cda6b4a1e4a2aac3f17d7cbc6ad9371bf1b463a26c5a423b1b61b8bc763effed0946bffd8669f1bd37dbf5d81a8211b9f1bbade564bda4b115b1b110b8c4a7b4ab3851b25f1101cf57e4c4a1be740b0b3a141fbb71b289530c52828e579ffffffffd8669f1b80d56b8281450e3b9f4caed5ec8e2b6ae4d679d7dbc1d8669f1bb0ba73ea9f037b6c9f1b579248f65d528c1a1b1cfef8e58182714cffff1beb1d101d5c4e9d6e1bccbc8e51cf81ac6effffffff", + "cborBytes": [ + 216, 102, 159, 27, 157, 138, 104, 162, 102, 171, 82, 233, 159, 216, 102, 159, 27, 107, 225, 245, 119, 70, 117, 83, + 60, 159, 72, 162, 248, 87, 108, 218, 107, 74, 30, 74, 42, 172, 63, 23, 215, 203, 198, 173, 147, 113, 191, 27, 70, + 58, 38, 197, 164, 35, 177, 182, 27, 139, 199, 99, 239, 254, 208, 148, 107, 255, 216, 102, 159, 27, 211, 125, 191, + 93, 129, 168, 33, 27, 159, 27, 186, 222, 86, 75, 218, 75, 17, 91, 27, 17, 11, 140, 74, 123, 74, 179, 133, 27, 37, + 241, 16, 28, 245, 126, 76, 74, 27, 231, 64, 176, 179, 161, 65, 251, 183, 27, 40, 149, 48, 197, 40, 40, 229, 121, + 255, 255, 255, 255, 216, 102, 159, 27, 128, 213, 107, 130, 129, 69, 14, 59, 159, 76, 174, 213, 236, 142, 43, 106, + 228, 214, 121, 215, 219, 193, 216, 102, 159, 27, 176, 186, 115, 234, 159, 3, 123, 108, 159, 27, 87, 146, 72, 246, + 93, 82, 140, 26, 27, 28, 254, 248, 229, 129, 130, 113, 76, 255, 255, 27, 235, 29, 16, 29, 92, 78, 157, 110, 27, + 204, 188, 142, 81, 207, 129, 172, 110, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3255, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12840424725185184063" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12194889347085741169" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8368801559490915450" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14305866168780191776" + } + }, + { + "_tag": "ByteArray", + "bytearray": "81700aa4" + }, + { + "_tag": "ByteArray", + "bytearray": "4bdb" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bb2325a418dce413f9fd8669f1ba93cf33ff83dac719f9f1b7423f4adb530ec7a1bc688a57c1a6bf8204481700aa4424bdbffffff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 178, 50, 90, 65, 141, 206, 65, 63, 159, 216, 102, 159, 27, 169, 60, 243, 63, 248, 61, 172, 113, + 159, 159, 27, 116, 35, 244, 173, 181, 48, 236, 122, 27, 198, 136, 165, 124, 26, 107, 248, 32, 68, 129, 112, 10, + 164, 66, 75, 219, 255, 255, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3256, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5859293696038424190" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b2047504967ecb5df8" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b515064929b0e4e7e9f49b2047504967ecb5df8a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 81, 80, 100, 146, 155, 14, 78, 126, 159, 73, 178, 4, 117, 4, 150, 126, 203, 93, 248, 160, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3257, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11516744546871125300" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16b5326f7993" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12168118193792359548" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16811366380486282483" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15499794609450573717" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6992456093607296141" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16627374883500115267" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9856e3ba49b6bef78691c437" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9886206325869069107" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2ac8d3df37cfcfe9a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7557706571692528845" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "78e20586db48d1d8532270f3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15512554849575186875" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6279159858265822588" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12481893847425862639" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11316358383931314466" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9249104189512903212" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6173" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "731f4b79479a4d9b57da69" + } + ] + } + ] + }, + "cborHex": "d8799fbf1b9fd3b225a52ba5344616b5326f79931ba8ddd7071df61c7c1be94df8a711d44cf31bd71a55136bd0df951b610a31c4fefa7c8d1be6c04d5c6646c5434c9856e3ba49b6bef78691c437ff80d8669f1b8932dc4625a543339f9f492ac8d3df37cfcfe9a61b68e25e15a25e54cdff4c78e20586db48d1d8532270f3d8669f1bd747aa7257b131bb9f1b57240e9f67d3957c1bad38985283f3cbef1b9d0bc7fe593d51221b805b6b41aa7e6a2c426173ffff804b731f4b79479a4d9b57da69ffffff", + "cborBytes": [ + 216, 121, 159, 191, 27, 159, 211, 178, 37, 165, 43, 165, 52, 70, 22, 181, 50, 111, 121, 147, 27, 168, 221, 215, 7, + 29, 246, 28, 124, 27, 233, 77, 248, 167, 17, 212, 76, 243, 27, 215, 26, 85, 19, 107, 208, 223, 149, 27, 97, 10, + 49, 196, 254, 250, 124, 141, 27, 230, 192, 77, 92, 102, 70, 197, 67, 76, 152, 86, 227, 186, 73, 182, 190, 247, + 134, 145, 196, 55, 255, 128, 216, 102, 159, 27, 137, 50, 220, 70, 37, 165, 67, 51, 159, 159, 73, 42, 200, 211, + 223, 55, 207, 207, 233, 166, 27, 104, 226, 94, 21, 162, 94, 84, 205, 255, 76, 120, 226, 5, 134, 219, 72, 209, 216, + 83, 34, 112, 243, 216, 102, 159, 27, 215, 71, 170, 114, 87, 177, 49, 187, 159, 27, 87, 36, 14, 159, 103, 211, 149, + 124, 27, 173, 56, 152, 82, 131, 243, 203, 239, 27, 157, 11, 199, 254, 89, 61, 81, 34, 27, 128, 91, 107, 65, 170, + 126, 106, 44, 66, 97, 115, 255, 255, 128, 75, 115, 31, 75, 121, 71, 154, 77, 155, 87, 218, 105, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3258, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7430234275636164402" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5462011106737293776" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10372721274982379437" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7800508191094762802" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7b8f6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13301434108459575569" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da7f6556" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16828897934165157486" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f45eec1e286c94c8f7838c7f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9156517828149685750" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + } + ] + }, + "cborHex": "d87c9f1b671d7eb4e539b732bf1b4bccf629a05089d01b8ff34f0ae5762fad1b6c40f8def5ba6d3243f7b8f61bb8982fd8fdff691144da7f65561be98c4181ff38266e4cf45eec1e286c94c8f7838c7fffd8669f1b7f127c738e64adf69f04ffffff", + "cborBytes": [ + 216, 124, 159, 27, 103, 29, 126, 180, 229, 57, 183, 50, 191, 27, 75, 204, 246, 41, 160, 80, 137, 208, 27, 143, + 243, 79, 10, 229, 118, 47, 173, 27, 108, 64, 248, 222, 245, 186, 109, 50, 67, 247, 184, 246, 27, 184, 152, 47, + 216, 253, 255, 105, 17, 68, 218, 127, 101, 86, 27, 233, 140, 65, 129, 255, 56, 38, 110, 76, 244, 94, 236, 30, 40, + 108, 148, 200, 247, 131, 140, 127, 255, 216, 102, 159, 27, 127, 18, 124, 115, 142, 100, 173, 246, 159, 4, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3259, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1a0e7aa3fe3712206bf755" + } + ] + } + ] + }, + "cborHex": "d9050d9f9f4b1a0e7aa3fe3712206bf755ffff", + "cborBytes": [217, 5, 13, 159, 159, 75, 26, 14, 122, 163, 254, 55, 18, 32, 107, 247, 85, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3260, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6267811552656330821" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0dd715c0b4a9da9d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bbb5c4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13769258169978452744" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8bfc4a8fb392a" + }, + { + "_tag": "ByteArray", + "bytearray": "7611a545251c9b75" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15815586964248427697" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6898781406004526515" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12062619747696084773" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3ed8b03a7d6374" + } + ] + } + ] + }, + "cborHex": "d87d9fd8669f1b56fbbd661b2b904580ffd87c9f9f480dd715c0b4a9da9dff43bbb5c49f1bbf163b5a5a35fb0847c8bfc4a8fb392a487611a545251c9b751bdb7c408ca6537cb11b5fbd65232ff83db3ff1ba76708c002098725473ed8b03a7d6374ffff", + "cborBytes": [ + 216, 125, 159, 216, 102, 159, 27, 86, 251, 189, 102, 27, 43, 144, 69, 128, 255, 216, 124, 159, 159, 72, 13, 215, + 21, 192, 180, 169, 218, 157, 255, 67, 187, 181, 196, 159, 27, 191, 22, 59, 90, 90, 53, 251, 8, 71, 200, 191, 196, + 168, 251, 57, 42, 72, 118, 17, 165, 69, 37, 28, 155, 117, 27, 219, 124, 64, 140, 166, 83, 124, 177, 27, 95, 189, + 101, 35, 47, 248, 61, 179, 255, 27, 167, 103, 8, 192, 2, 9, 135, 37, 71, 62, 216, 176, 58, 125, 99, 116, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3261, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4254538304551366604" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1979264402263642056" + } + } + ] + }, + "cborHex": "d8669f1b3b0b280be613afcc9f1b1b77c27cbd800fc8ffff", + "cborBytes": [ + 216, 102, 159, 27, 59, 11, 40, 11, 230, 19, 175, 204, 159, 27, 27, 119, 194, 124, 189, 128, 15, 200, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3262, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9901380479511613133" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "023c0082" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "156814aca3e07674612928" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce0dc07848ed2cfcf5ab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40fa2d5884f5fce2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13185670947154411863" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0eb83d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9460416161902256654" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c969ee60e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6808998712248950902" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8968c5161b46cecd9f44023c0082bf4b156814aca3e076746129284ace0dc07848ed2cfcf5ab4840fa2d5884f5fce21bb6fce9dda253c15744a0eb83d71b834a2660358c620e45c969ee60e21b5e7e6c40cfb0e076ffffff", + "cborBytes": [ + 216, 102, 159, 27, 137, 104, 197, 22, 27, 70, 206, 205, 159, 68, 2, 60, 0, 130, 191, 75, 21, 104, 20, 172, 163, + 224, 118, 116, 97, 41, 40, 74, 206, 13, 192, 120, 72, 237, 44, 252, 245, 171, 72, 64, 250, 45, 88, 132, 245, 252, + 226, 27, 182, 252, 233, 221, 162, 83, 193, 87, 68, 160, 235, 131, 215, 27, 131, 74, 38, 96, 53, 140, 98, 14, 69, + 201, 105, 238, 96, 226, 27, 94, 126, 108, 64, 207, 176, 224, 118, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3263, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "085c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4038548017411185358" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18044721444736500003" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6330289559935220892" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5760204711955444894" + } + }, + { + "_tag": "ByteArray", + "bytearray": "291491" + } + ] + } + ] + } + ] + }, + "cborHex": "d905049f9f42085c1b380bce065226daced8669f1bfa6bba8c886481239f1b57d9b4d0c14d7c9c1b4ff05baaa9a2b49e43291491ffffffff", + "cborBytes": [ + 217, 5, 4, 159, 159, 66, 8, 92, 27, 56, 11, 206, 6, 82, 38, 218, 206, 216, 102, 159, 27, 250, 107, 186, 140, 136, + 100, 129, 35, 159, 27, 87, 217, 180, 208, 193, 77, 124, 156, 27, 79, 240, 91, 170, 169, 162, 180, 158, 67, 41, 20, + 145, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3264, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dcf355" + }, + { + "_tag": "ByteArray", + "bytearray": "ecc5d4f23c0d" + }, + { + "_tag": "ByteArray", + "bytearray": "4b2ae78e" + }, + { + "_tag": "ByteArray", + "bytearray": "4ec45a2aa396e3bb" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "816b70bc4949958c49a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9482499352545278304" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17239584898278440398" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1266148930836173878" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12756973031710654475" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8478334877991860579" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18132350094940616673" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14556308957702999071" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8488779205521327328" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14901329894193964616" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c88f90505e92a48c7e7" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6a29" + } + ] + }, + "cborHex": "d87e9fd905039f9f43dcf35546ecc5d4f23c0d444b2ae78e484ec45a2aa396e3bbff4a816b70bc4949958c49a81b83989aebb35539601bef3f4f2031133dcebf1b119243be873b14361bb109df620c5a000b1b75a918a6c18279631bfba30c578ff4b7e11bca0265dfd8b94c1f1b75ce33b641d244e01bcecc2896905726484a0c88f90505e92a48c7e7ffff1bffffffffffffffeb426a29ff", + "cborBytes": [ + 216, 126, 159, 217, 5, 3, 159, 159, 67, 220, 243, 85, 70, 236, 197, 212, 242, 60, 13, 68, 75, 42, 231, 142, 72, + 78, 196, 90, 42, 163, 150, 227, 187, 255, 74, 129, 107, 112, 188, 73, 73, 149, 140, 73, 168, 27, 131, 152, 154, + 235, 179, 85, 57, 96, 27, 239, 63, 79, 32, 49, 19, 61, 206, 191, 27, 17, 146, 67, 190, 135, 59, 20, 54, 27, 177, + 9, 223, 98, 12, 90, 0, 11, 27, 117, 169, 24, 166, 193, 130, 121, 99, 27, 251, 163, 12, 87, 143, 244, 183, 225, 27, + 202, 2, 101, 223, 216, 185, 76, 31, 27, 117, 206, 51, 182, 65, 210, 68, 224, 27, 206, 204, 40, 150, 144, 87, 38, + 72, 74, 12, 136, 249, 5, 5, 233, 42, 72, 199, 231, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 235, 66, 106, + 41, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3265, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16008931763226078404" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8369841835282750319" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8048595204127777555" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cbc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11628874882591198126" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7a20c1f267ad3a8b43f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14388737568587713584" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "298b4c1f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "937ad54baca2a8bff838" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10502903184327748282" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42fc8f3a31802b8fab85905d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12637145672669299228" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9949" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "453dadde3e46b364" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bde2b269ea48eecc49fd8669f1b7427a6cdca3b5b6f9f9f1b6fb25ab1e2f2e313ffbf428cbc1ba1621017e24f8baeff9f4a7a20c1f267ad3a8b43f91bc7af109575fd0c30ffffffbf44298b4c1f4a937ad54baca2a8bff83841341b91c1cecca42caaba4c42fc8f3a31802b8fab85905d1baf602908ea51821c42994948453dadde3e46b364ffffff", + "cborBytes": [ + 216, 102, 159, 27, 222, 43, 38, 158, 164, 142, 236, 196, 159, 216, 102, 159, 27, 116, 39, 166, 205, 202, 59, 91, + 111, 159, 159, 27, 111, 178, 90, 177, 226, 242, 227, 19, 255, 191, 66, 140, 188, 27, 161, 98, 16, 23, 226, 79, + 139, 174, 255, 159, 74, 122, 32, 193, 242, 103, 173, 58, 139, 67, 249, 27, 199, 175, 16, 149, 117, 253, 12, 48, + 255, 255, 255, 191, 68, 41, 139, 76, 31, 74, 147, 122, 213, 75, 172, 162, 168, 191, 248, 56, 65, 52, 27, 145, 193, + 206, 204, 164, 44, 170, 186, 76, 66, 252, 143, 58, 49, 128, 43, 143, 171, 133, 144, 93, 27, 175, 96, 41, 8, 234, + 81, 130, 28, 66, 153, 73, 72, 69, 61, 173, 222, 62, 70, 179, 100, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3266, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10803280980446183297" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5505896470703964520" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17035628043825027188" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "493ae13e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10715091798106712025" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5368" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "700d8fa5" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b95ecf6d0403a7f819fbf1b4c68dfab2a6301681bec6ab5727ddf987444493ae13e1b94b3a73829da27d942536844700d8fa5ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 149, 236, 246, 208, 64, 58, 127, 129, 159, 191, 27, 76, 104, 223, 171, 42, 99, 1, 104, 27, 236, + 106, 181, 114, 125, 223, 152, 116, 68, 73, 58, 225, 62, 27, 148, 179, 167, 56, 41, 218, 39, 217, 66, 83, 104, 68, + 112, 13, 143, 165, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3267, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18350246998106253820" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9900216406453538386" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "08e28fec3cb40a25" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10754872345004937306" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f5" + }, + { + "_tag": "ByteArray", + "bytearray": "328cf056" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e633d2bce96840" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + }, + "cborHex": "d8669f1bfea92c6bc6cd29fc9fd8669f1b8964a25e3a284e529f4808e28fec3cb40a25d8669f1b9540fb6a80b1105a9f41f544328cf056ffff47e633d2bce96840ffff11ffff", + "cborBytes": [ + 216, 102, 159, 27, 254, 169, 44, 107, 198, 205, 41, 252, 159, 216, 102, 159, 27, 137, 100, 162, 94, 58, 40, 78, + 82, 159, 72, 8, 226, 143, 236, 60, 180, 10, 37, 216, 102, 159, 27, 149, 64, 251, 106, 128, 177, 16, 90, 159, 65, + 245, 68, 50, 140, 240, 86, 255, 255, 71, 230, 51, 210, 188, 233, 104, 64, 255, 255, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3268, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17430443774777779311" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "46" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11047145872604293273" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cad0b0bd1e6aff36c0c2a9e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8017884787236857622" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cdd739f209384ee4f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddeec83d34c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae3f" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1b0b3f74891654159a" + } + ] + } + ] + }, + "cborHex": "d8669f1bf1e56043410c646f9fbf41461b994f58a40e8068994c9cad0b0bd1e6aff36c0c2a9e1b6f453fbbc142e71649cdd739f209384ee4f9412946ddeec83d34c042ae3fff9f491b0b3f74891654159affffff", + "cborBytes": [ + 216, 102, 159, 27, 241, 229, 96, 67, 65, 12, 100, 111, 159, 191, 65, 70, 27, 153, 79, 88, 164, 14, 128, 104, 153, + 76, 156, 173, 11, 11, 209, 230, 175, 243, 108, 12, 42, 158, 27, 111, 69, 63, 187, 193, 66, 231, 22, 73, 205, 215, + 57, 242, 9, 56, 78, 228, 249, 65, 41, 70, 221, 238, 200, 61, 52, 192, 66, 174, 63, 255, 159, 73, 27, 11, 63, 116, + 137, 22, 84, 21, 154, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3269, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8742737229316324325" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1243f6d6acc1a712" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97c1a0513f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c4d0d9e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9323028260619696565" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b108" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7428534348359386841" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bef8c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b639f1cd6dafe06f6d874a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfdcca14" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10626669323192958939" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f6b8070e5561a1fe" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2646022812299055509" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eea89477809531c7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3600841848949248728" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6878716506448969069" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9289543414310130512" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9ae90" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16666957498531578169" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9159692741016041520" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17163024268314382613" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e0c56e6970ecc1fe8" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2722186868047177432" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2766233101003225648" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a60636f288505c136bdd0d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9eac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "741b50" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef712afb0b943e3c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "564130a1e4376f5191d9d6cb" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9fd8669f1b7954713065fb7be59fbf481243f6d6acc1a7124597c1a0513f446c4d0d9e1b81620cceb92a39b542b1081b671774a1bbbfc6d943bef8c84bb639f1cd6dafe06f6d874a44dfdcca141b937983726a74ffdbff48f6b8070e5561a1febf1b24b88fba82aa519548eea89477809531c71b31f8c29562fb12d81b5f761c37b581bd6d1b80eb16846786535043f9ae901be74ced8a228201391b7f1dc4048ffc38301bee2f4fa370499115499e0c56e6970ecc1fe8ffffffbf1b25c72688a22f66d841671b2663a25967397a304ba60636f288505c136bdd0d429eac43741b5048ef712afb0b943e3c4c564130a1e4376f5191d9d6cbffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 216, 102, 159, 27, 121, 84, 113, 48, 101, 251, + 123, 229, 159, 191, 72, 18, 67, 246, 214, 172, 193, 167, 18, 69, 151, 193, 160, 81, 63, 68, 108, 77, 13, 158, 27, + 129, 98, 12, 206, 185, 42, 57, 181, 66, 177, 8, 27, 103, 23, 116, 161, 187, 191, 198, 217, 67, 190, 248, 200, 75, + 182, 57, 241, 205, 109, 175, 224, 111, 109, 135, 74, 68, 223, 220, 202, 20, 27, 147, 121, 131, 114, 106, 116, 255, + 219, 255, 72, 246, 184, 7, 14, 85, 97, 161, 254, 191, 27, 36, 184, 143, 186, 130, 170, 81, 149, 72, 238, 168, 148, + 119, 128, 149, 49, 199, 27, 49, 248, 194, 149, 98, 251, 18, 216, 27, 95, 118, 28, 55, 181, 129, 189, 109, 27, 128, + 235, 22, 132, 103, 134, 83, 80, 67, 249, 174, 144, 27, 231, 76, 237, 138, 34, 130, 1, 57, 27, 127, 29, 196, 4, + 143, 252, 56, 48, 27, 238, 47, 79, 163, 112, 73, 145, 21, 73, 158, 12, 86, 230, 151, 14, 204, 31, 232, 255, 255, + 255, 191, 27, 37, 199, 38, 136, 162, 47, 102, 216, 65, 103, 27, 38, 99, 162, 89, 103, 57, 122, 48, 75, 166, 6, 54, + 242, 136, 80, 92, 19, 107, 221, 13, 66, 158, 172, 67, 116, 27, 80, 72, 239, 113, 42, 251, 11, 148, 62, 60, 76, 86, + 65, 48, 161, 228, 55, 111, 81, 145, 217, 214, 203, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3270, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12494876275500263897" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3548838335537563912" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0564" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d0b44f628d4f0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8f7f4b97e89db60221b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "949138710960467465" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5407506588800407324" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14985569659024870342" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9098554299057187820" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d905009f9fa01bad66b7c599a629d9bf1b314001a9e301490841e4420564470d0b44f628d4f04ac8f7f4b97e89db60221b4197ff1b0d2c04a0fd5eee091b4b0b5297a208571cffd8669f1bcff770353b0c8bc69fd8669f1b7e448eedc4e82bec80ffffffff", + "cborBytes": [ + 217, 5, 0, 159, 159, 160, 27, 173, 102, 183, 197, 153, 166, 41, 217, 191, 27, 49, 64, 1, 169, 227, 1, 73, 8, 65, + 228, 66, 5, 100, 71, 13, 11, 68, 246, 40, 212, 240, 74, 200, 247, 244, 185, 126, 137, 219, 96, 34, 27, 65, 151, + 255, 27, 13, 44, 4, 160, 253, 94, 238, 9, 27, 75, 11, 82, 151, 162, 8, 87, 28, 255, 216, 102, 159, 27, 207, 247, + 112, 53, 59, 12, 139, 198, 159, 216, 102, 159, 27, 126, 68, 142, 237, 196, 232, 43, 236, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3271, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1029620330492195907" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "91" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5e56648d45ed24aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7323253262117203047" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14982163973878559787" + } + }, + { + "_tag": "ByteArray", + "bytearray": "12d9" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0d87e2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f17521b3d9a7538c59db2d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8fb0edae63" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8018eef1795452" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12204891659968303007" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0935d33d2120141e4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78f2346f78" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5bffb350be6557808" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17481452039721459150" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3276641661754289784" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5817550250198264626" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4950612002478680744" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9630451298238002142" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "163862725545592052" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13873840291454832996" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddd6ce" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5788768884073551314" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9fd8669f1b0e49f23c4481f4439f41919f485e56648d45ed24aa1b65a16c0aa8b76c671bcfeb56c15dafb42b4212d9ff430d87e2bf4c1f17521b3d9a7538c59db2d7458fb0edae63478018eef17954521ba9607c4cea89cf9f49d0935d33d2120141e44578f2346f7849e5bffb350be65578081bf29a980269a01dceff1b2d78f83b211c2e78ffffbf1b50bc17213e0d6b321b44b41b630486eaa81b85a63c6e722cf3de1b02462847dc1284f41bc089c83d02aad16443ddd6ceff1b5055d6a13e09d5d2ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 216, 102, 159, 27, 14, 73, 242, 60, 68, 129, 244, + 67, 159, 65, 145, 159, 72, 94, 86, 100, 141, 69, 237, 36, 170, 27, 101, 161, 108, 10, 168, 183, 108, 103, 27, 207, + 235, 86, 193, 93, 175, 180, 43, 66, 18, 217, 255, 67, 13, 135, 226, 191, 76, 31, 23, 82, 27, 61, 154, 117, 56, + 197, 157, 178, 215, 69, 143, 176, 237, 174, 99, 71, 128, 24, 238, 241, 121, 84, 82, 27, 169, 96, 124, 76, 234, + 137, 207, 159, 73, 208, 147, 93, 51, 210, 18, 1, 65, 228, 69, 120, 242, 52, 111, 120, 73, 229, 191, 251, 53, 11, + 230, 85, 120, 8, 27, 242, 154, 152, 2, 105, 160, 29, 206, 255, 27, 45, 120, 248, 59, 33, 28, 46, 120, 255, 255, + 191, 27, 80, 188, 23, 33, 62, 13, 107, 50, 27, 68, 180, 27, 99, 4, 134, 234, 168, 27, 133, 166, 60, 110, 114, 44, + 243, 222, 27, 2, 70, 40, 71, 220, 18, 132, 244, 27, 192, 137, 200, 61, 2, 170, 209, 100, 67, 221, 214, 206, 255, + 27, 80, 85, 214, 161, 62, 9, 213, 210, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3272, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7783194935992338264" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ee651e0945e6693f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aee9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b8047" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8104380731909107194" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7404dc7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "397a47" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6c03768ea17147589fbf492ee651e0945e6693f342aee9438b80471b70788b5639f66dfa44c7404dc743397a47ffffff", + "cborBytes": [ + 216, 102, 159, 27, 108, 3, 118, 142, 161, 113, 71, 88, 159, 191, 73, 46, 230, 81, 224, 148, 94, 102, 147, 243, 66, + 174, 233, 67, 139, 128, 71, 27, 112, 120, 139, 86, 57, 246, 109, 250, 68, 199, 64, 77, 199, 67, 57, 122, 71, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3273, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16651281989511469984" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1be7153cbf47b0dba09f80ffff", + "cborBytes": [216, 102, 159, 27, 231, 21, 60, 191, 71, 176, 219, 160, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3274, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "692840722939783220" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a50b62ad9b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b099d76f778c028349f0d809f45a50b62ad9b1bfffffffffffffff8ffffff", + "cborBytes": [ + 216, 102, 159, 27, 9, 157, 118, 247, 120, 192, 40, 52, 159, 13, 128, 159, 69, 165, 11, 98, 173, 155, 27, 255, 255, + 255, 255, 255, 255, 255, 248, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3275, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10948098902627767967" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a32076" + }, + { + "_tag": "ByteArray", + "bytearray": "1396b3b72056a0092dfd05" + }, + { + "_tag": "ByteArray", + "bytearray": "b0bc8cdcfcb04a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8400fa90" + } + ] + }, + "cborHex": "d8669f1b97ef75f248f8d69f9f43a320764b1396b3b72056a0092dfd0547b0bc8cdcfcb04a1bfffffffffffffff5448400fa90ffff", + "cborBytes": [ + 216, 102, 159, 27, 151, 239, 117, 242, 72, 248, 214, 159, 159, 67, 163, 32, 118, 75, 19, 150, 179, 183, 32, 86, + 160, 9, 45, 253, 5, 71, 176, 188, 140, 220, 252, 176, 74, 27, 255, 255, 255, 255, 255, 255, 255, 245, 68, 132, 0, + 250, 144, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3276, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7869509546232376818" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b920f603e289e5a32d4c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11398098195850839904" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30a5fb6ebba42b2ae0eba11f" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d9050b9f1bffffffffffffffebd8669f1bfffffffffffffff69fbf1b6d361d3ce3b9edf24ab920f603e289e5a32d4c1b9e2e2deb5eb5c7604c30a5fb6ebba42b2ae0eba11fffa0ffffff", + "cborBytes": [ + 217, 5, 11, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 246, 159, 191, 27, 109, 54, 29, 60, 227, 185, 237, 242, 74, 185, 32, 246, 3, 226, 137, 229, 163, 45, 76, 27, 158, + 46, 45, 235, 94, 181, 199, 96, 76, 48, 165, 251, 110, 187, 164, 43, 42, 224, 235, 161, 31, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3277, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15529541455888498141" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bd78403acd2efbddd9f80ffff", + "cborBytes": [216, 102, 159, 27, 215, 132, 3, 172, 210, 239, 189, 221, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3278, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f043de27" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09ed1fe5a3d6b0bed2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1eb26e336f534a2b16d3a9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efb08c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0dd8f80279d7a3" + } + } + ] + } + ] + }, + "cborHex": "d9050d9f44f043de27bf4909ed1fe5a3d6b0bed24b1eb26e336f534a2b16d3a943efb08c470dd8f80279d7a3ffff", + "cborBytes": [ + 217, 5, 13, 159, 68, 240, 67, 222, 39, 191, 73, 9, 237, 31, 229, 163, 214, 176, 190, 210, 75, 30, 178, 110, 51, + 111, 83, 74, 43, 22, 211, 169, 67, 239, 176, 140, 71, 13, 216, 248, 2, 121, 215, 163, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3279, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9270557513152410752" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14656105282762928439" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa1a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3330973722024851567" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "88f5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11087870203002321403" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df19" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1716" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1660818690836157717" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "17c0853a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1574602769934433387" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "181398281da8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11854059445343843400" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27394e076209261fd689d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23b974bfcb212815c8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae81b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17908192386397276533" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe898d25" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10310782470973585844" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5771592217667664603" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8133637880151966911" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a3" + }, + { + "_tag": "ByteArray", + "bytearray": "08703553d8bec149877a657d" + }, + { + "_tag": "ByteArray", + "bytearray": "735b2db00c" + }, + { + "_tag": "ByteArray", + "bytearray": "3d568ef6052947de" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0429002b5a0f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18290154151375404986" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5164130416126845106" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a371c742192cb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18256406525131495317" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2907006386949767411" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9ecf4a8b939f" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d905069f9fd8669f1b80a7a2f0d14734809f1bcb64f21a71cf713742fa1affffd8669f1b2e39fef3b173b86f9f4288f51b99e007341d9779fb42df19ffffbf4217161b170c69ccc79e55154417c0853a1b15da1ce06c49bc6b46181398281da81ba4821442921574484b27394e076209261fd689d94923b974bfcb212815c843ae81b21bf886ae180090897544fe898d251b8f1742074ab479b4ffffd8669f1b5018d08af27d7adb9f9f1b70e07c8ee21e84bf41a34c08703553d8bec149877a657d45735b2db00c483d568ef6052947deff460429002b5a0fd8669f1bfdd3ae4b97ddffba9f1b47aaad40b307e0b2479a371c742192cb1bfd5bc9020d9617951b2857c2e82deec0f3ffff469ecf4a8b939fffffa0ff", + "cborBytes": [ + 217, 5, 6, 159, 159, 216, 102, 159, 27, 128, 167, 162, 240, 209, 71, 52, 128, 159, 27, 203, 100, 242, 26, 113, + 207, 113, 55, 66, 250, 26, 255, 255, 216, 102, 159, 27, 46, 57, 254, 243, 177, 115, 184, 111, 159, 66, 136, 245, + 27, 153, 224, 7, 52, 29, 151, 121, 251, 66, 223, 25, 255, 255, 191, 66, 23, 22, 27, 23, 12, 105, 204, 199, 158, + 85, 21, 68, 23, 192, 133, 58, 27, 21, 218, 28, 224, 108, 73, 188, 107, 70, 24, 19, 152, 40, 29, 168, 27, 164, 130, + 20, 66, 146, 21, 116, 72, 75, 39, 57, 78, 7, 98, 9, 38, 31, 214, 137, 217, 73, 35, 185, 116, 191, 203, 33, 40, 21, + 200, 67, 174, 129, 178, 27, 248, 134, 174, 24, 0, 144, 137, 117, 68, 254, 137, 141, 37, 27, 143, 23, 66, 7, 74, + 180, 121, 180, 255, 255, 216, 102, 159, 27, 80, 24, 208, 138, 242, 125, 122, 219, 159, 159, 27, 112, 224, 124, + 142, 226, 30, 132, 191, 65, 163, 76, 8, 112, 53, 83, 216, 190, 193, 73, 135, 122, 101, 125, 69, 115, 91, 45, 176, + 12, 72, 61, 86, 142, 246, 5, 41, 71, 222, 255, 70, 4, 41, 0, 43, 90, 15, 216, 102, 159, 27, 253, 211, 174, 75, + 151, 221, 255, 186, 159, 27, 71, 170, 173, 64, 179, 7, 224, 178, 71, 154, 55, 28, 116, 33, 146, 203, 27, 253, 91, + 201, 2, 13, 150, 23, 149, 27, 40, 87, 194, 232, 45, 238, 192, 243, 255, 255, 70, 158, 207, 74, 139, 147, 159, 255, + 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3280, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2837368375408431734" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9194594da339c0" + } + ] + }, + "cborHex": "d8669f1b27605b81212592769f479194594da339c0ffff", + "cborBytes": [ + 216, 102, 159, 27, 39, 96, 91, 129, 33, 37, 146, 118, 159, 71, 145, 148, 89, 77, 163, 57, 192, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3281, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15376452734308418938" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "df81e7" + } + ] + }, + "cborHex": "d8669f1bd564224b3e09857a9f43df81e7ffff", + "cborBytes": [216, 102, 159, 27, 213, 100, 34, 75, 62, 9, 133, 122, 159, 67, 223, 129, 231, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3282, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13473855285508873658" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2283746098976067059" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4314334293518828354" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6277192487403705291" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5873734737954081632" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1181345606517444633" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7322173711890619001" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "146130" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8326875689950398032" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9257802603713748701" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14849744590736565531" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13661175924199190349" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bbafcbffe9fc69dba9fbf1b1fb17efa2aa70df3416b1b3bdf982e7f79c3421b571d114f2e72d3cb1b5183b29fb0a00b601b1064fb91f170d0191b659d963248f19a79431461301b738f0152845446501b807a526b0b0b5edd1bce14e4072821a51b1bbd963f1f8002ef4dffffff", + "cborBytes": [ + 216, 102, 159, 27, 186, 252, 191, 254, 159, 198, 157, 186, 159, 191, 27, 31, 177, 126, 250, 42, 167, 13, 243, 65, + 107, 27, 59, 223, 152, 46, 127, 121, 195, 66, 27, 87, 29, 17, 79, 46, 114, 211, 203, 27, 81, 131, 178, 159, 176, + 160, 11, 96, 27, 16, 100, 251, 145, 241, 112, 208, 25, 27, 101, 157, 150, 50, 72, 241, 154, 121, 67, 20, 97, 48, + 27, 115, 143, 1, 82, 132, 84, 70, 80, 27, 128, 122, 82, 107, 11, 11, 94, 221, 27, 206, 20, 228, 7, 40, 33, 165, + 27, 27, 189, 150, 63, 31, 128, 2, 239, 77, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3283, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "ByteArray", + "bytearray": "665affe74e20b440" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2491951490941441380" + } + } + ] + }, + "cborHex": "d87d9fd905079f9f0d48665affe74e20b440ffff1b229530ad9711d564ff", + "cborBytes": [ + 216, 125, 159, 217, 5, 7, 159, 159, 13, 72, 102, 90, 255, 231, 78, 32, 180, 64, 255, 255, 27, 34, 149, 48, 173, + 151, 17, 213, 100, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3284, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7715704571881504269" + }, + "fields": [] + }, + "cborHex": "d8669f1b6b13b06db6dabe0d80ff", + "cborBytes": [216, 102, 159, 27, 107, 19, 176, 109, 182, 218, 190, 13, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3285, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6907076401594354340" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a6fadc8722de22f21c83906c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12152973448854184303" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13597078483958072595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16388740880367535517" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "422dd2c8" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10572766394243913197" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6753206338415595127" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "288b889441aaefe01153a32a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fc2f561eca0f6451" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2544753451053911680" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eb0f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6c02b30698b51bea3d2f2603" + } + ] + }, + "cborHex": "d8669f1b5fdadd645983caa49f4ca6fadc8722de22f21c83906cbf1ba8a808f667b5216f1bbcb286d73b6d85131be37080ffda3ac59d44422dd2c8ffbf1b92ba0304c61895ed1b5db83562802d8e774c288b889441aaefe01153a32a41ceff9f48fc2f561eca0f64511b2350c7c7f3048e8042eb0fff4c6c02b30698b51bea3d2f2603ffff", + "cborBytes": [ + 216, 102, 159, 27, 95, 218, 221, 100, 89, 131, 202, 164, 159, 76, 166, 250, 220, 135, 34, 222, 34, 242, 28, 131, + 144, 108, 191, 27, 168, 168, 8, 246, 103, 181, 33, 111, 27, 188, 178, 134, 215, 59, 109, 133, 19, 27, 227, 112, + 128, 255, 218, 58, 197, 157, 68, 66, 45, 210, 200, 255, 191, 27, 146, 186, 3, 4, 198, 24, 149, 237, 27, 93, 184, + 53, 98, 128, 45, 142, 119, 76, 40, 139, 136, 148, 65, 170, 239, 224, 17, 83, 163, 42, 65, 206, 255, 159, 72, 252, + 47, 86, 30, 202, 15, 100, 81, 27, 35, 80, 199, 199, 243, 4, 142, 128, 66, 235, 15, 255, 76, 108, 2, 179, 6, 152, + 181, 27, 234, 61, 47, 38, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3286, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6680421013067448578" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bda2cf5ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5feea4dcb6972f77" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3653906405828980037" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b5cb59f8459f0c1029f9f80bf455bda2cf5ad485feea4dcb6972f77ffffd8669f1b32b5488451f5ed459fa0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 92, 181, 159, 132, 89, 240, 193, 2, 159, 159, 128, 191, 69, 91, 218, 44, 245, 173, 72, 95, 238, + 164, 220, 182, 151, 47, 119, 255, 255, 216, 102, 159, 27, 50, 181, 72, 132, 81, 245, 237, 69, 159, 160, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3287, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16300279807601270305" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "50f73b6b77a6532975ba" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10515335006488224244" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9225411860216579673" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "df" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6719915985359689599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15732630784302174099" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12914192594807740716" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2487534377727689828" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b749419c564adabe" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11735722192702924916" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "828772715725854310" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2466336800944718356" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15315881260548774715" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3261316961848098293" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e258a04230" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "433304809015650209" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11319352960534470361" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18149989843653567500" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7675137154489863753" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d8b23e9cb7830ee69e74" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8904258105398039694" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9521625606824452476" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01c0cab9f4" + }, + { + "_tag": "ByteArray", + "bytearray": "6fd892ef48" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5981000294542043374" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17679024804248141965" + } + } + ] + }, + "cborHex": "d8669f1be2363a1f578bde219f4a50f73b6b77a6532975ba9fa09f1b91edf979cbf5e1f41b80073f3562e28659ff41dfd8669f1b5d41effc2bd5577f9f1bda558857e0b4cf93ffff80ffd8669f1bb3386dbe1e7ed92c9f1b22857f564708046448b749419c564adabe9f1ba2dda927deb9e8741b0b806464d86016661b223a3040d4c88214ffd8669f1bd48cf0dc05125b3b9f1b2d42867f62e97df545e258a04230ffff1b0603686d94d8a7a1ffffd8669f1b9d166b8b8bec5ed99f9f1bfbe1b7999beb240c1b6a839093cfc54e494ad8b23e9cb7830ee69e74ffd8669f1b7b924791f0a4948e9f1b84239c0aab08e17c4501c0cab9f4456fd892ef48ffff1b5300c81445af68eeffff1bf55883645887c08dffff", + "cborBytes": [ + 216, 102, 159, 27, 226, 54, 58, 31, 87, 139, 222, 33, 159, 74, 80, 247, 59, 107, 119, 166, 83, 41, 117, 186, 159, + 160, 159, 27, 145, 237, 249, 121, 203, 245, 225, 244, 27, 128, 7, 63, 53, 98, 226, 134, 89, 255, 65, 223, 216, + 102, 159, 27, 93, 65, 239, 252, 43, 213, 87, 127, 159, 27, 218, 85, 136, 87, 224, 180, 207, 147, 255, 255, 128, + 255, 216, 102, 159, 27, 179, 56, 109, 190, 30, 126, 217, 44, 159, 27, 34, 133, 127, 86, 71, 8, 4, 100, 72, 183, + 73, 65, 156, 86, 74, 218, 190, 159, 27, 162, 221, 169, 39, 222, 185, 232, 116, 27, 11, 128, 100, 100, 216, 96, 22, + 102, 27, 34, 58, 48, 64, 212, 200, 130, 20, 255, 216, 102, 159, 27, 212, 140, 240, 220, 5, 18, 91, 59, 159, 27, + 45, 66, 134, 127, 98, 233, 125, 245, 69, 226, 88, 160, 66, 48, 255, 255, 27, 6, 3, 104, 109, 148, 216, 167, 161, + 255, 255, 216, 102, 159, 27, 157, 22, 107, 139, 139, 236, 94, 217, 159, 159, 27, 251, 225, 183, 153, 155, 235, 36, + 12, 27, 106, 131, 144, 147, 207, 197, 78, 73, 74, 216, 178, 62, 156, 183, 131, 14, 230, 158, 116, 255, 216, 102, + 159, 27, 123, 146, 71, 145, 240, 164, 148, 142, 159, 27, 132, 35, 156, 10, 171, 8, 225, 124, 69, 1, 192, 202, 185, + 244, 69, 111, 216, 146, 239, 72, 255, 255, 27, 83, 0, 200, 20, 69, 175, 104, 238, 255, 255, 27, 245, 88, 131, 100, + 88, 135, 192, 141, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3288, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e3b221ab48318" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63c8deb1af8c1495" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf1c37a413070dfee4e360" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12446269726284088793" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0698cc82762" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05b9ca06a4695b32aef8" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6df81ae19d" + } + ] + }, + "cborHex": "d905039fbf414a478e3b221ab483184863c8deb1af8c14954bcf1c37a413070dfee4e360419d1bacba085f75dc85d946b0698cc827624a05b9ca06a4695b32aef8ff456df81ae19dff", + "cborBytes": [ + 217, 5, 3, 159, 191, 65, 74, 71, 142, 59, 34, 26, 180, 131, 24, 72, 99, 200, 222, 177, 175, 140, 20, 149, 75, 207, + 28, 55, 164, 19, 7, 13, 254, 228, 227, 96, 65, 157, 27, 172, 186, 8, 95, 117, 220, 133, 217, 70, 176, 105, 140, + 200, 39, 98, 74, 5, 185, 202, 6, 164, 105, 91, 50, 174, 248, 255, 69, 109, 248, 26, 225, 157, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3289, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14817330307374285859" + }, + "fields": [] + }, + "cborHex": "d8669f1bcda1bb68b2ac842380ff", + "cborBytes": [216, 102, 159, 27, 205, 161, 187, 104, 178, 172, 132, 35, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3290, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13345056723157803141" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13503403275193765479" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10743471416555117509" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "436cf79aa000997d972c1e97" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12489276629234563432" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b648a79ff831891ab7fd920" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4141575827021471544" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "530023049c85" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18372409877862307823" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10691222852944442761" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f17238b791241811366b17" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13852189044043546444" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d61076dbe8442222d4e2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13054501124363669940" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e380edbb27444d26" + }, + { + "_tag": "ByteArray", + "bytearray": "c9fb2a4eb4" + }, + { + "_tag": "ByteArray", + "bytearray": "6983f9" + }, + { + "_tag": "ByteArray", + "bytearray": "64fcb046196940" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "288a9d539459aa1252ad" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1009566793970511554" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de7af98c98518a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4217949463161930084" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "529266a8d9ac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7980563979345483100" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13522106080656108189" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11557976995313135531" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73ffa684" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14626843813453572215" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56cce3e5423e92f360" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bb9332a62734260859f80d8669f1bbb65b9bc14c54e679fd8669f1b95187a54fe549bc59f4c436cf79aa000997d972c1e971bad52d2ec5b1d39684c0b648a79ff831891ab7fd920ffffbf1b3979d5458bf59f3846530023049c851bfef7e97155dc57ef1b945eda8a4c4ab58941fe41dcff4bf17238b791241811366b179f1bc03cdc8b23c5ff4c4ad61076dbe8442222d4e2ff9f1bb52ae79b5da251b448e380edbb27444d2645c9fb2a4eb4436983f94764fcb046196940ffffff4a288a9d539459aa1252adbf1b0e02b3a673a46ec247de7af98c98518a1b3a892ab06851016446529266a8d9ac1b6ec0a8a8082a555c1bbba82bd650a82a9d1ba0662ed727c6afab4473ffa6841bcafcfcf3b60528774956cce3e5423e92f360ffffff", + "cborBytes": [ + 216, 102, 159, 27, 185, 51, 42, 98, 115, 66, 96, 133, 159, 128, 216, 102, 159, 27, 187, 101, 185, 188, 20, 197, + 78, 103, 159, 216, 102, 159, 27, 149, 24, 122, 84, 254, 84, 155, 197, 159, 76, 67, 108, 247, 154, 160, 0, 153, + 125, 151, 44, 30, 151, 27, 173, 82, 210, 236, 91, 29, 57, 104, 76, 11, 100, 138, 121, 255, 131, 24, 145, 171, 127, + 217, 32, 255, 255, 191, 27, 57, 121, 213, 69, 139, 245, 159, 56, 70, 83, 0, 35, 4, 156, 133, 27, 254, 247, 233, + 113, 85, 220, 87, 239, 27, 148, 94, 218, 138, 76, 74, 181, 137, 65, 254, 65, 220, 255, 75, 241, 114, 56, 183, 145, + 36, 24, 17, 54, 107, 23, 159, 27, 192, 60, 220, 139, 35, 197, 255, 76, 74, 214, 16, 118, 219, 232, 68, 34, 34, + 212, 226, 255, 159, 27, 181, 42, 231, 155, 93, 162, 81, 180, 72, 227, 128, 237, 187, 39, 68, 77, 38, 69, 201, 251, + 42, 78, 180, 67, 105, 131, 249, 71, 100, 252, 176, 70, 25, 105, 64, 255, 255, 255, 74, 40, 138, 157, 83, 148, 89, + 170, 18, 82, 173, 191, 27, 14, 2, 179, 166, 115, 164, 110, 194, 71, 222, 122, 249, 140, 152, 81, 138, 27, 58, 137, + 42, 176, 104, 81, 1, 100, 70, 82, 146, 102, 168, 217, 172, 27, 110, 192, 168, 168, 8, 42, 85, 92, 27, 187, 168, + 43, 214, 80, 168, 42, 157, 27, 160, 102, 46, 215, 39, 198, 175, 171, 68, 115, 255, 166, 132, 27, 202, 252, 252, + 243, 182, 5, 40, 119, 73, 86, 204, 227, 229, 66, 62, 146, 243, 96, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3291, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8141220489801006668" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8c1ff13379b75e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ca2433a9a1c3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14927457201005036126" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12191025601943695082" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c1cfbb228e" + } + ] + } + ] + }, + "cborHex": "d8669f1b70fb6ce6c4b87e4c9f478c1ff13379b75e9f46ca2433a9a1c3d8669f1bcf28fb3c39c0825e9f1ba92f3931b38beeeaffff45c1cfbb228effffff", + "cborBytes": [ + 216, 102, 159, 27, 112, 251, 108, 230, 196, 184, 126, 76, 159, 71, 140, 31, 241, 51, 121, 183, 94, 159, 70, 202, + 36, 51, 169, 161, 195, 216, 102, 159, 27, 207, 40, 251, 60, 57, 192, 130, 94, 159, 27, 169, 47, 57, 49, 179, 139, + 238, 234, 255, 255, 69, 193, 207, 187, 34, 142, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3292, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3634072350117046733" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "857c834ce9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11955763965856361796" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f462d06f4e49001e99ebeb6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11196362519813087189" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "87" + }, + { + "_tag": "ByteArray", + "bytearray": "9110" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18067054073108870897" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2cef84f60a2c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9263035269662112879" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1688211289261681006" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17974280948528898715" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3887844214830436926" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7a7f4282c787dcd5" + }, + { + "_tag": "ByteArray", + "bytearray": "dfb009855604" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "493185481654774838" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5aa5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1219234056133623785" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3878680968210920079" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14663847857381623194" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5211024511852350862" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15505551598121758454" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15228356092004145077" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3072584678912139845" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1483678817955225321" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12793441631558687752" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11273411620163718965" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87d9fd8669f1b326ed18c5ccba9cd9fa09f45857c834ce91ba5eb67fb8b48ad444c7f462d06f4e49001e99ebeb61b9b61786411f4dfd5ff9f41874291101bfabb11f4c56db6f1462cef84f60a2cff1b808ce980061ffc6fffff9fd905039f1b176dbb391a3f296eff0aa09f1bf971794a7622e29bffff1b35f465b6f706923ed8669f1bfffffffffffffffb9fd905069f487a7f4282c787dcd546dfb009855604ffbf1b06d825952269ac36425aa51b10eb96ea0de73fe91b35d3d7ca5b47b28f1bcb8073ef139ac59a1b4851472f30d00d8e1bd72ec906cc89aef61bd355fd2eb11017b5ffbf1b2aa4037c78dda2451b1497160628fe1ee91bb18b6f619fbfdc081b9c733423b29e8f35ffffffff", + "cborBytes": [ + 216, 125, 159, 216, 102, 159, 27, 50, 110, 209, 140, 92, 203, 169, 205, 159, 160, 159, 69, 133, 124, 131, 76, 233, + 27, 165, 235, 103, 251, 139, 72, 173, 68, 76, 127, 70, 45, 6, 244, 228, 144, 1, 233, 158, 190, 182, 27, 155, 97, + 120, 100, 17, 244, 223, 213, 255, 159, 65, 135, 66, 145, 16, 27, 250, 187, 17, 244, 197, 109, 182, 241, 70, 44, + 239, 132, 246, 10, 44, 255, 27, 128, 140, 233, 128, 6, 31, 252, 111, 255, 255, 159, 217, 5, 3, 159, 27, 23, 109, + 187, 57, 26, 63, 41, 110, 255, 10, 160, 159, 27, 249, 113, 121, 74, 118, 34, 226, 155, 255, 255, 27, 53, 244, 101, + 182, 247, 6, 146, 62, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 217, 5, 6, 159, 72, 122, + 127, 66, 130, 199, 135, 220, 213, 70, 223, 176, 9, 133, 86, 4, 255, 191, 27, 6, 216, 37, 149, 34, 105, 172, 54, + 66, 90, 165, 27, 16, 235, 150, 234, 13, 231, 63, 233, 27, 53, 211, 215, 202, 91, 71, 178, 143, 27, 203, 128, 115, + 239, 19, 154, 197, 154, 27, 72, 81, 71, 47, 48, 208, 13, 142, 27, 215, 46, 201, 6, 204, 137, 174, 246, 27, 211, + 85, 253, 46, 177, 16, 23, 181, 255, 191, 27, 42, 164, 3, 124, 120, 221, 162, 69, 27, 20, 151, 22, 6, 40, 254, 30, + 233, 27, 177, 139, 111, 97, 159, 191, 220, 8, 27, 156, 115, 52, 35, 178, 158, 143, 53, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3293, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13482739847217515356" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bd146f93e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "634c2ef6cff60a0f3303438e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eac8be56e8ac3f19" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18084168350387103961" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "feff0204010004070661f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32166f0eeaaa0fe2" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9d0448578041b0551" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5245be6e" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "573fbf524d94e7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bad2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9fb0c4516cc01fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f19f70523fa130" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9534687240165168278" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05571192a4216fa80e9a3a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11319459960711497000" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3310" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15134253131048838066" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4735029022570278281" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15743087534279859128" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13250574488961731964" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "749323937063274104" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3280742339475502552" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5897298939685351461" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cb0f35beebe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12626006400673508795" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7903378f4d5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17788295686713839507" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12394756625371509103" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bbb1c5074d8678b5c9fbf452bd146f93e41804c634c2ef6cff60a0f3303438e48eac8be56e8ac3f19ffbf1bfaf7df4cf72f68d90b4bfeff0204010004070661f94832166f0eeaaa0fe2ffbf49d9d0448578041b0551445245be6effd8669f1bfffffffffffffffe9fbf411647573fbf524d94e742bad248e9fb0c4516cc01fc47f19f70523fa13008ffbf1b845203872a7e94964b05571192a4216fa80e9a3a1b9d16ccdc777745284233101bd207ab09b90263b21b41b633cf0b776d891bda7aaeb3b4a19bb81bb7e37f4b0c6acd7cffffffbf1b0a662226925a86781b2d8789c6900575d81b51d76a23f23bb025462cb0f35beebe1baf3895ed0bf3edbb46e7903378f4d51bf6dcb8ae3e310f931bac03057b04b0316fffffff", + "cborBytes": [ + 216, 102, 159, 27, 187, 28, 80, 116, 216, 103, 139, 92, 159, 191, 69, 43, 209, 70, 249, 62, 65, 128, 76, 99, 76, + 46, 246, 207, 246, 10, 15, 51, 3, 67, 142, 72, 234, 200, 190, 86, 232, 172, 63, 25, 255, 191, 27, 250, 247, 223, + 76, 247, 47, 104, 217, 11, 75, 254, 255, 2, 4, 1, 0, 4, 7, 6, 97, 249, 72, 50, 22, 111, 14, 234, 170, 15, 226, + 255, 191, 73, 217, 208, 68, 133, 120, 4, 27, 5, 81, 68, 82, 69, 190, 110, 255, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 254, 159, 191, 65, 22, 71, 87, 63, 191, 82, 77, 148, 231, 66, 186, 210, 72, 233, 251, 12, 69, + 22, 204, 1, 252, 71, 241, 159, 112, 82, 63, 161, 48, 8, 255, 191, 27, 132, 82, 3, 135, 42, 126, 148, 150, 75, 5, + 87, 17, 146, 164, 33, 111, 168, 14, 154, 58, 27, 157, 22, 204, 220, 119, 119, 69, 40, 66, 51, 16, 27, 210, 7, 171, + 9, 185, 2, 99, 178, 27, 65, 182, 51, 207, 11, 119, 109, 137, 27, 218, 122, 174, 179, 180, 161, 155, 184, 27, 183, + 227, 127, 75, 12, 106, 205, 124, 255, 255, 255, 191, 27, 10, 102, 34, 38, 146, 90, 134, 120, 27, 45, 135, 137, + 198, 144, 5, 117, 216, 27, 81, 215, 106, 35, 242, 59, 176, 37, 70, 44, 176, 243, 91, 238, 190, 27, 175, 56, 149, + 237, 11, 243, 237, 187, 70, 231, 144, 51, 120, 244, 213, 27, 246, 220, 184, 174, 62, 49, 15, 147, 27, 172, 3, 5, + 123, 4, 176, 49, 111, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3294, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3b5f0e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "14001c66fa0704050743d2f8" + }, + { + "_tag": "ByteArray", + "bytearray": "0aa203f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3254100448126555942" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16520677722304491294" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e3e0229299e5bba09a84" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "692243634167512083" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "50e9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13928230486139058438" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17347894748518134754" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8cdd6fa5a20a3645" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6546573336046735449" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a88" + }, + { + "_tag": "ByteArray", + "bytearray": "c9" + } + ] + } + ] + } + ] + }, + "cborHex": "d905039fa09f433b5f0e9f4c14001c66fa0704050743d2f8440aa203f81b2d28e31dda05d7261be5453cdbaeab2f1e4ae3e0229299e5bba09a84ffd8669f1b099b57eae8947c139f4250e91bc14b03d50c15b906ffff9f1bf0c01a5c5649b3e2488cdd6fa5a20a36451b5ada19c38f1c1059429a8841c9ffffff", + "cborBytes": [ + 217, 5, 3, 159, 160, 159, 67, 59, 95, 14, 159, 76, 20, 0, 28, 102, 250, 7, 4, 5, 7, 67, 210, 248, 68, 10, 162, 3, + 248, 27, 45, 40, 227, 29, 218, 5, 215, 38, 27, 229, 69, 60, 219, 174, 171, 47, 30, 74, 227, 224, 34, 146, 153, + 229, 187, 160, 154, 132, 255, 216, 102, 159, 27, 9, 155, 87, 234, 232, 148, 124, 19, 159, 66, 80, 233, 27, 193, + 75, 3, 213, 12, 21, 185, 6, 255, 255, 159, 27, 240, 192, 26, 92, 86, 73, 179, 226, 72, 140, 221, 111, 165, 162, + 10, 54, 69, 27, 90, 218, 25, 195, 143, 28, 16, 89, 66, 154, 136, 65, 201, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3295, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3995451570936995005" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "503b85d9f5f6132f3add1e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16950209900839710663" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "489563094807145352" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "705644652249846095" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a2e60383880b21581a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10588326212950176105" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4925936984124565942" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18434338247552482024" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15596819026539191671" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "12aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6267927452085344554" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1356787374861383998" + } + } + ] + }, + "cborHex": "d8669f1b3772b208f2f9dcbd9f9f9f4b503b85d9f5f6132f3add1e1beb3b3e1947dc2fc71b06cb470a791eeb88ffd8669f1b09caf4129301914f9f49a2e60383880b21581a1b92f14a9760da31691b445c71969cb429b6ffff1bffd3ecf782c33ae8d8669f1bd8730844e6ec1d779f4212aa1b56fc26cf0b77592affffff1b12d446edca58f93effff", + "cborBytes": [ + 216, 102, 159, 27, 55, 114, 178, 8, 242, 249, 220, 189, 159, 159, 159, 75, 80, 59, 133, 217, 245, 246, 19, 47, 58, + 221, 30, 27, 235, 59, 62, 25, 71, 220, 47, 199, 27, 6, 203, 71, 10, 121, 30, 235, 136, 255, 216, 102, 159, 27, 9, + 202, 244, 18, 147, 1, 145, 79, 159, 73, 162, 230, 3, 131, 136, 11, 33, 88, 26, 27, 146, 241, 74, 151, 96, 218, 49, + 105, 27, 68, 92, 113, 150, 156, 180, 41, 182, 255, 255, 27, 255, 211, 236, 247, 130, 195, 58, 232, 216, 102, 159, + 27, 216, 115, 8, 68, 230, 236, 29, 119, 159, 66, 18, 170, 27, 86, 252, 38, 207, 11, 119, 89, 42, 255, 255, 255, + 27, 18, 212, 70, 237, 202, 88, 249, 62, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3296, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7625041014829537116" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3895346512233786766" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "69f9f594" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c12650cf" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f1b69d196675eb2d75cd8669f1b360f0d03b2c06d8e9f4469f9f594ffff44c12650cfffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 27, 105, 209, 150, 103, 94, 178, 215, 92, 216, + 102, 159, 27, 54, 15, 13, 3, 178, 192, 109, 142, 159, 68, 105, 249, 245, 148, 255, 255, 68, 193, 38, 80, 207, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3297, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14474376091784133907" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8b7ffe181e2ad1a8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17859c1eb36957dd5c423c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6766b7eb7616" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05b95408fee8d685f948" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + ] + }, + "cborHex": "d8669f1bc8df505df0333d139f488b7ffe181e2ad1a8bf4b17859c1eb36957dd5c423c466766b7eb7616ff4a05b95408fee8d685f9481bffffffffffffffedffff", + "cborBytes": [ + 216, 102, 159, 27, 200, 223, 80, 93, 240, 51, 61, 19, 159, 72, 139, 127, 254, 24, 30, 42, 209, 168, 191, 75, 23, + 133, 156, 30, 179, 105, 87, 221, 92, 66, 60, 70, 103, 102, 183, 235, 118, 22, 255, 74, 5, 185, 84, 8, 254, 232, + 214, 133, 249, 72, 27, 255, 255, 255, 255, 255, 255, 255, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3298, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa64af" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "718a7da8a63f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0d382" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9307943360604506102" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a503027d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11296981879917188188" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1a0dcce4b23697389f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4646372330998880834" + } + } + ] + }, + "cborHex": "d905099f43fa64afd87c9f46718a7da8a63fffbf43a0d3821b812c752bbe4987f644a503027d1b9cc6f12a727d145cff491a0dcce4b23697389f1b407b3b047b645a42ff", + "cborBytes": [ + 217, 5, 9, 159, 67, 250, 100, 175, 216, 124, 159, 70, 113, 138, 125, 168, 166, 63, 255, 191, 67, 160, 211, 130, + 27, 129, 44, 117, 43, 190, 73, 135, 246, 68, 165, 3, 2, 125, 27, 156, 198, 241, 42, 114, 125, 20, 92, 255, 73, 26, + 13, 204, 228, 178, 54, 151, 56, 159, 27, 64, 123, 59, 4, 123, 100, 90, 66, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3299, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2119225489827011859" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0607" + } + ] + }, + "cborHex": "d8669f1b1d69005ad8179d139f80420607ffff", + "cborBytes": [216, 102, 159, 27, 29, 105, 0, 90, 216, 23, 157, 19, 159, 128, 66, 6, 7, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3300, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11523294465196497986" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e443" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "ByteArray", + "bytearray": "44188b535aa0af" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6309012350162098855" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02a411ff0204" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8276613376183344734" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "250123ebee6b" + }, + { + "_tag": "ByteArray", + "bytearray": "8aeb56c6fccd28" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3989236895843436309" + } + }, + { + "_tag": "ByteArray", + "bytearray": "196e5d03c8a8b2c1688b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2802312753960842702" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d3" + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f00d8669f1b9feaf74358431c429fd9050c9f1bfffffffffffffffaffd8669f1bffffffffffffffec9f42e443074744188b535aa0afffffffff9f415d0e80d8669f1b578e1d4e4ef6daa79f4602a411ff02041bfffffffffffffffaffffd8669f1b72dc7003a6a79e5e9f46250123ebee6b478aeb56c6fccd281b375c9dd225a147154a196e5d03c8a8b2c1688b1b26e3d09a3961f5ceffffffd8669f1bfffffffffffffff29f41d3ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 0, 216, 102, 159, 27, 159, 234, 247, 67, 88, 67, + 28, 66, 159, 217, 5, 12, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 255, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 236, 159, 66, 228, 67, 7, 71, 68, 24, 139, 83, 90, 160, 175, 255, 255, 255, 255, 159, 65, 93, + 14, 128, 216, 102, 159, 27, 87, 142, 29, 78, 78, 246, 218, 167, 159, 70, 2, 164, 17, 255, 2, 4, 27, 255, 255, 255, + 255, 255, 255, 255, 250, 255, 255, 216, 102, 159, 27, 114, 220, 112, 3, 166, 167, 158, 94, 159, 70, 37, 1, 35, + 235, 238, 107, 71, 138, 235, 86, 198, 252, 205, 40, 27, 55, 92, 157, 210, 37, 161, 71, 21, 74, 25, 110, 93, 3, + 200, 168, 178, 193, 104, 139, 27, 38, 227, 208, 154, 57, 97, 245, 206, 255, 255, 255, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 242, 159, 65, 211, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3301, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9146402258180926139" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10971614786686671829" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0236a431efde22c7a83f66" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b608d347be11146b2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f5318e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7747846377995222120" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "887241a66ff9a00239a14d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4984381246841734298" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fed44fc822f0e4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "075506f85d52077ceaf15c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8353462527773023522" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14327667214344010201" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "6dd815245a19a5d4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a0a247b5e3" + }, + { + "_tag": "ByteArray", + "bytearray": "805812" + }, + { + "_tag": "ByteArray", + "bytearray": "ba59f193" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12205270527248175083" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3cf5a7515d4eff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6683044088465216767" + } + }, + { + "_tag": "ByteArray", + "bytearray": "802eee6026460f0a65a1fc" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bd" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12180949523201176122" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "39a580526b" + }, + { + "_tag": "ByteArray", + "bytearray": "0e1f39979fcd" + }, + { + "_tag": "ByteArray", + "bytearray": "c2983eb007" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b7eee8c64e3b46abb9fd8669f1b98430184b4e1dbd59fbf4b0236a431efde22c7a83f66496b608d347be11146b2447f5318e41b6b85e13b1eb3bc684b887241a66ff9a00239a14d1b452c1455eb1ec49a47fed44fc822f0e44b075506f85d52077ceaf15cff1b73ed75e914729d22ffffa0d8669f1bc6d6196b92fc39d980ff486dd815245a19a5d49f9f45a0a247b5e34380581244ba59f193ffd8669f1ba961d4e0d42c0feb9f473cf5a7515d4eff1b5cbef130af3e54ff4b802eee6026460f0a65a1fcffff41bdd8669f1ba90b6d0dcd5eb23a9f4539a580526b460e1f39979fcd45c2983eb007ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 126, 238, 140, 100, 227, 180, 106, 187, 159, 216, 102, 159, 27, 152, 67, 1, 132, 180, 225, 219, + 213, 159, 191, 75, 2, 54, 164, 49, 239, 222, 34, 199, 168, 63, 102, 73, 107, 96, 141, 52, 123, 225, 17, 70, 178, + 68, 127, 83, 24, 228, 27, 107, 133, 225, 59, 30, 179, 188, 104, 75, 136, 114, 65, 166, 111, 249, 160, 2, 57, 161, + 77, 27, 69, 44, 20, 85, 235, 30, 196, 154, 71, 254, 212, 79, 200, 34, 240, 228, 75, 7, 85, 6, 248, 93, 82, 7, 124, + 234, 241, 92, 255, 27, 115, 237, 117, 233, 20, 114, 157, 34, 255, 255, 160, 216, 102, 159, 27, 198, 214, 25, 107, + 146, 252, 57, 217, 128, 255, 72, 109, 216, 21, 36, 90, 25, 165, 212, 159, 159, 69, 160, 162, 71, 181, 227, 67, + 128, 88, 18, 68, 186, 89, 241, 147, 255, 216, 102, 159, 27, 169, 97, 212, 224, 212, 44, 15, 235, 159, 71, 60, 245, + 167, 81, 93, 78, 255, 27, 92, 190, 241, 48, 175, 62, 84, 255, 75, 128, 46, 238, 96, 38, 70, 15, 10, 101, 161, 252, + 255, 255, 65, 189, 216, 102, 159, 27, 169, 11, 109, 13, 205, 94, 178, 58, 159, 69, 57, 165, 128, 82, 107, 70, 14, + 31, 57, 151, 159, 205, 69, 194, 152, 62, 176, 7, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3302, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3486068219305948109" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5102790998131675969" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4731c39c627be23ce2" + } + } + ] + } + ] + }, + "cborHex": "d87c9f1b30610093528273cd80bf1b46d0c16086b31341494731c39c627be23ce2ffff", + "cborBytes": [ + 216, 124, 159, 27, 48, 97, 0, 147, 82, 130, 115, 205, 128, 191, 27, 70, 208, 193, 96, 134, 179, 19, 65, 73, 71, + 49, 195, 156, 98, 123, 226, 60, 226, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3303, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18026472971303189829" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bfa2ae5a8b7b4fd459fa0ffff", + "cborBytes": [216, 102, 159, 27, 250, 42, 229, 168, 183, 180, 253, 69, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3304, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8152217023875159153" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1a460106fe5e73e84f40" + } + ] + }, + "cborHex": "d8669f1b71227e30dff894719f4a1a460106fe5e73e84f40ffff", + "cborBytes": [ + 216, 102, 159, 27, 113, 34, 126, 48, 223, 248, 148, 113, 159, 74, 26, 70, 1, 6, 254, 94, 115, 232, 79, 64, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3305, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8564454378621943845" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3533334379032711164" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c0323ac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6101311787987831005" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "899b3766ba482d5ef03f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6852624270174255384" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14917507757541970070" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905089fd8669f1b76db0de184ccc0259fbf1b3108ece5b6eb8ffc443c0323ac1b54ac36bebaeb08dd4a899b3766ba482d5ef03f1b5f1969778af4f9181bcf05a244e66c5096ffffffff", + "cborBytes": [ + 217, 5, 8, 159, 216, 102, 159, 27, 118, 219, 13, 225, 132, 204, 192, 37, 159, 191, 27, 49, 8, 236, 229, 182, 235, + 143, 252, 68, 60, 3, 35, 172, 27, 84, 172, 54, 190, 186, 235, 8, 221, 74, 137, 155, 55, 102, 186, 72, 45, 94, 240, + 63, 27, 95, 25, 105, 119, 138, 244, 249, 24, 27, 207, 5, 162, 68, 230, 108, 80, 150, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3306, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9130580382271525733" + }, + "fields": [] + }, + "cborHex": "d8669f1b7eb6567b5671d36580ff", + "cborBytes": [216, 102, 159, 27, 126, 182, 86, 123, 86, 113, 211, 101, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3307, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14059521995999230671" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12372776831270960109" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "184f02963503020058c8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4690106270392098441" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04019ffe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13419371531590105640" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13621299873940520052" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17279801203775819814" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc" + } + } + ] + } + ] + }, + "cborHex": "d905059fbf41371bc31d74c3cb533acfff1babb4eef96916bbed13bf0e4a184f02963503020058c81b41169acdbd8d9e894404019ffe1bba3b2f4f216afa281bbd0894110d4c3c741befce2fa47c6cd02641fcffff", + "cborBytes": [ + 217, 5, 5, 159, 191, 65, 55, 27, 195, 29, 116, 195, 203, 83, 58, 207, 255, 27, 171, 180, 238, 249, 105, 22, 187, + 237, 19, 191, 14, 74, 24, 79, 2, 150, 53, 3, 2, 0, 88, 200, 27, 65, 22, 154, 205, 189, 141, 158, 137, 68, 4, 1, + 159, 254, 27, 186, 59, 47, 79, 33, 106, 250, 40, 27, 189, 8, 148, 17, 13, 76, 60, 116, 27, 239, 206, 47, 164, 124, + 108, 208, 38, 65, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3308, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8811914398675218509" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37ab337f48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b666174" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "849e05a936" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6856a5879521a7bf5d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd3651e56e4c481665d65c22" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17479306335539900037" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7a4a3575442fb04d9fbf410a41654537ab337f48446b66617445849e05a936496856a5879521a7bf5d4cbd3651e56e4c481665d65c221bf292f880ba172e85ffffff", + "cborBytes": [ + 216, 102, 159, 27, 122, 74, 53, 117, 68, 47, 176, 77, 159, 191, 65, 10, 65, 101, 69, 55, 171, 51, 127, 72, 68, + 107, 102, 97, 116, 69, 132, 158, 5, 169, 54, 73, 104, 86, 165, 135, 149, 33, 167, 191, 93, 76, 189, 54, 81, 229, + 110, 76, 72, 22, 101, 214, 92, 34, 27, 242, 146, 248, 128, 186, 23, 46, 133, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3309, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0770f2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12492184309752670164" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14466811282137480131" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f9f430770f21bad5d27717b8427d41bc8c47036706afbc3ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 159, 67, 7, 112, 242, 27, 173, 93, 39, 113, 123, + 132, 39, 212, 27, 200, 196, 112, 54, 112, 106, 251, 195, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3310, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "06ff9ea3" + }, + { + "_tag": "ByteArray", + "bytearray": "f7adebc0fef7feb4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4089299083577832705" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4556422569913762491" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a06d4c5412394c2cc6a94d" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11751303767828130029" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3da37129" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5069211548589990733" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f2b81c72597dce0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17323682956931883128" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb3dfba319177f2c044e" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "16" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d850" + } + ] + }, + "cborHex": "d905019f9f9f4406ff9ea348f7adebc0fef7feb41b38c01bd9b8fcb5011b3f3baa2fb64842bb4ba06d4c5412394c2cc6a94dffa0d8669f1ba3150484091ae8ed9f443da37129ffffffbf1b4659750bad03a34d483f2b81c72597dce01bf06a15dd5169e0784aeb3dfba319177f2c044eff9f4116ff42d850ff", + "cborBytes": [ + 217, 5, 1, 159, 159, 159, 68, 6, 255, 158, 163, 72, 247, 173, 235, 192, 254, 247, 254, 180, 27, 56, 192, 27, 217, + 184, 252, 181, 1, 27, 63, 59, 170, 47, 182, 72, 66, 187, 75, 160, 109, 76, 84, 18, 57, 76, 44, 198, 169, 77, 255, + 160, 216, 102, 159, 27, 163, 21, 4, 132, 9, 26, 232, 237, 159, 68, 61, 163, 113, 41, 255, 255, 255, 191, 27, 70, + 89, 117, 11, 173, 3, 163, 77, 72, 63, 43, 129, 199, 37, 151, 220, 224, 27, 240, 106, 21, 221, 81, 105, 224, 120, + 74, 235, 61, 251, 163, 25, 23, 127, 44, 4, 78, 255, 159, 65, 22, 255, 66, 216, 80, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3311, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "710164ffb9009707" + } + ] + }, + "cborHex": "d9050c9f8048710164ffb9009707ff", + "cborBytes": [217, 5, 12, 159, 128, 72, 113, 1, 100, 255, 185, 0, 151, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3312, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7530247239953223055" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e9a4" + } + ] + }, + "cborHex": "d8669f1b6880cff7c0470d8f9f42e9a4ffff", + "cborBytes": [216, 102, 159, 27, 104, 128, 207, 247, 192, 71, 13, 143, 159, 66, 233, 164, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3313, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3952621373532783011" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9984327189155754014" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9825802798593293795" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6be8626f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12229317117270943690" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6009672705948925886" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13559106039426577218" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13603041105922589374" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2552260579796343633" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3e4776c51797699cb4" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17809951201491992153" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d258b5200c77ab13f25b" + }, + { + "_tag": "ByteArray", + "bytearray": "2b1c3411" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3258500160546406602" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9120706849665859440" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17075771423291857522" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11879751621683669688" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3673382858253132027" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6988785139910027094" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13800655625178379944" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3061269442425626162" + } + }, + { + "_tag": "ByteArray", + "bytearray": "339d3be156a7f7800cc44cf9" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1e8c8a31" + } + ] + }, + "cborHex": "d8669f1b36da88328509c1a39fd8669f1b8a8f74ade6e7301e9f1b885c439603313de3446be8626fd8669f1ba9b7431fdc89e7ca9f1b5366a57c46723fbe1bbc2b9f1a87dff34241e31bbcc7b5d0578d82be1b236b737990fe5b51ffff493e4776c51797699cb4ffffa01bf729a841aff8be599f9f4ad258b5200c77ab13f25b442b1c34111b2d3884a1b9ec00ca1b7e93428e62ce3f701becf953a35f13da72ffd8669f1ba4dd5b2886536ab89f1b32fa7a3f462fe0fb1b60fd270e7bdda7561bbf85c72c0e40f6a81b2a7bd056ad899e324c339d3be156a7f7800cc44cf9ffffff441e8c8a31ffff", + "cborBytes": [ + 216, 102, 159, 27, 54, 218, 136, 50, 133, 9, 193, 163, 159, 216, 102, 159, 27, 138, 143, 116, 173, 230, 231, 48, + 30, 159, 27, 136, 92, 67, 150, 3, 49, 61, 227, 68, 107, 232, 98, 111, 216, 102, 159, 27, 169, 183, 67, 31, 220, + 137, 231, 202, 159, 27, 83, 102, 165, 124, 70, 114, 63, 190, 27, 188, 43, 159, 26, 135, 223, 243, 66, 65, 227, 27, + 188, 199, 181, 208, 87, 141, 130, 190, 27, 35, 107, 115, 121, 144, 254, 91, 81, 255, 255, 73, 62, 71, 118, 197, + 23, 151, 105, 156, 180, 255, 255, 160, 27, 247, 41, 168, 65, 175, 248, 190, 89, 159, 159, 74, 210, 88, 181, 32, + 12, 119, 171, 19, 242, 91, 68, 43, 28, 52, 17, 27, 45, 56, 132, 161, 185, 236, 0, 202, 27, 126, 147, 66, 142, 98, + 206, 63, 112, 27, 236, 249, 83, 163, 95, 19, 218, 114, 255, 216, 102, 159, 27, 164, 221, 91, 40, 134, 83, 106, + 184, 159, 27, 50, 250, 122, 63, 70, 47, 224, 251, 27, 96, 253, 39, 14, 123, 221, 167, 86, 27, 191, 133, 199, 44, + 14, 64, 246, 168, 27, 42, 123, 208, 86, 173, 137, 158, 50, 76, 51, 157, 59, 225, 86, 167, 247, 128, 12, 196, 76, + 249, 255, 255, 255, 68, 30, 140, 138, 49, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3314, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "640775990403517491" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "185e2d01f60f2d9efe8dc0a1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + "cborHex": "d905039fd8669f1b08e47e5e4899cc3380ff80804c185e2d01f60f2d9efe8dc0a102ff", + "cborBytes": [ + 217, 5, 3, 159, 216, 102, 159, 27, 8, 228, 126, 94, 72, 153, 204, 51, 128, 255, 128, 128, 76, 24, 94, 45, 1, 246, + 15, 45, 158, 254, 141, 192, 161, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3315, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2055551200363061311" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4663414909847719897" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "61362ca69fbe3f26b64ca1cb" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11968416837598889954" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6641930280113644084" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16674263614192603058" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4cb515626fd" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17970075526179253701" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11026862404041835067" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15150379731220964117" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14788392878108959257" + } + }, + { + "_tag": "ByteArray", + "bytearray": "61" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14441842951438372246" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6ba79dbd04087845d55e" + }, + { + "_tag": "ByteArray", + "bytearray": "e8b4963600d845357777f651" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "511176726818989992" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14321105079389190660" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4412682873853543167" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b31bbb9921e14e2f3d2b4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4651085178452149507" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a0756fa12b026" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8273127454271756292" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17066459776009374534" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13859488222844518834" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5110326865770472496" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15441062471556194839" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b309f2adbabdab7aedd" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5327829925007531944" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12086459137676052847" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c8dfdd" + }, + { + "_tag": "ByteArray", + "bytearray": "9f0a3cbea286" + }, + { + "_tag": "ByteArray", + "bytearray": "18" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10306151843538987263" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7100745399125010222" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22cede5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5148316432980923079" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b3d381e2baee2b498" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17642584419850008287" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "523264917504992034" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acd806c4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11510870700950755169" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3490580499496058879" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "60b0a9f99630" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7553299419188866613" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1b4b4c62d0d74e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18286010673971278626" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8c805e91452" + }, + { + "_tag": "ByteArray", + "bytearray": "080a106be99b71" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16918173336606129715" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1672282346308666722" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b4ee3f1fe3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12180639206399067947" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16529154910383177665" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5083b25027" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4435820403408383315" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4381206653515494812" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5bc3aeccdfceb011676e" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b1c86c8ed0b44a03f9fd8669f1b40b7c72715bbcfd99f4c61362ca69fbe3f26b64ca1cbbf1ba6185bb3d0e2c7e21b5c2ce0663915a2341be766e269bf2bcfb246b4cb515626fdff9f1bf962887b44daedc51b990748ef0406023b1bd240f6186bb423151bcd3aecf86a99e2194161ffd8669f1bc86bbba5ee768d969f4a6ba79dbd04087845d55e4ce8b4963600d845357777f651ffffbf1b07181086537e27a81bc6bec9317808fa041b3d3cffb1c27d82ff4b6b31bbb9921e14e2f3d2b41b408bf953c9b98503473a0756fa12b0261b72d00d96356658041becd83ebe8a880b461bc056cb1ba35b81b21b46eb8735706264301bd649ac81f3b8e2174a0b309f2adbabdab7aeddffffff809fd8669f1b49f04116b7c51fa880ffd8669f1ba7bbba8c8574896f9f43c8dfdd469f0a3cbea28641181b8f06ce7f5360e8ffffff1b628aea51b355e72ebf4422cede5c1b47727e84d32252c7499b3d381e2baee2b4981bf4d70d0e310036dfffff9fbf1b074302ab8b4f232244acd806c41b9fbed3ea519f17611b307108786c5e3fffff4660b0a9f99630a0d8669f1b68d2b5cd7aeaae359f471b4b4c62d0d74e1bfdc4f5d3150f332246c8c805e9145247080a106be99b711beac96d0368e4be33ffffff9f9f1b173523ef0fe2856245b4ee3f1fe31ba90a52d28a9cc72bffd8669f1be5635ad0d6caffc180ff9f455083b250271b3d8f3327a8962d531b3ccd2c3d1e5e759c4a5bc3aeccdfceb011676effffffff", + "cborBytes": [ + 216, 102, 159, 27, 28, 134, 200, 237, 11, 68, 160, 63, 159, 216, 102, 159, 27, 64, 183, 199, 39, 21, 187, 207, + 217, 159, 76, 97, 54, 44, 166, 159, 190, 63, 38, 182, 76, 161, 203, 191, 27, 166, 24, 91, 179, 208, 226, 199, 226, + 27, 92, 44, 224, 102, 57, 21, 162, 52, 27, 231, 102, 226, 105, 191, 43, 207, 178, 70, 180, 203, 81, 86, 38, 253, + 255, 159, 27, 249, 98, 136, 123, 68, 218, 237, 197, 27, 153, 7, 72, 239, 4, 6, 2, 59, 27, 210, 64, 246, 24, 107, + 180, 35, 21, 27, 205, 58, 236, 248, 106, 153, 226, 25, 65, 97, 255, 216, 102, 159, 27, 200, 107, 187, 165, 238, + 118, 141, 150, 159, 74, 107, 167, 157, 189, 4, 8, 120, 69, 213, 94, 76, 232, 180, 150, 54, 0, 216, 69, 53, 119, + 119, 246, 81, 255, 255, 191, 27, 7, 24, 16, 134, 83, 126, 39, 168, 27, 198, 190, 201, 49, 120, 8, 250, 4, 27, 61, + 60, 255, 177, 194, 125, 130, 255, 75, 107, 49, 187, 185, 146, 30, 20, 226, 243, 210, 180, 27, 64, 139, 249, 83, + 201, 185, 133, 3, 71, 58, 7, 86, 250, 18, 176, 38, 27, 114, 208, 13, 150, 53, 102, 88, 4, 27, 236, 216, 62, 190, + 138, 136, 11, 70, 27, 192, 86, 203, 27, 163, 91, 129, 178, 27, 70, 235, 135, 53, 112, 98, 100, 48, 27, 214, 73, + 172, 129, 243, 184, 226, 23, 74, 11, 48, 159, 42, 219, 171, 218, 183, 174, 221, 255, 255, 255, 128, 159, 216, 102, + 159, 27, 73, 240, 65, 22, 183, 197, 31, 168, 128, 255, 216, 102, 159, 27, 167, 187, 186, 140, 133, 116, 137, 111, + 159, 67, 200, 223, 221, 70, 159, 10, 60, 190, 162, 134, 65, 24, 27, 143, 6, 206, 127, 83, 96, 232, 255, 255, 255, + 27, 98, 138, 234, 81, 179, 85, 231, 46, 191, 68, 34, 206, 222, 92, 27, 71, 114, 126, 132, 211, 34, 82, 199, 73, + 155, 61, 56, 30, 43, 174, 226, 180, 152, 27, 244, 215, 13, 14, 49, 0, 54, 223, 255, 255, 159, 191, 27, 7, 67, 2, + 171, 139, 79, 35, 34, 68, 172, 216, 6, 196, 27, 159, 190, 211, 234, 81, 159, 23, 97, 27, 48, 113, 8, 120, 108, 94, + 63, 255, 255, 70, 96, 176, 169, 249, 150, 48, 160, 216, 102, 159, 27, 104, 210, 181, 205, 122, 234, 174, 53, 159, + 71, 27, 75, 76, 98, 208, 215, 78, 27, 253, 196, 245, 211, 21, 15, 51, 34, 70, 200, 200, 5, 233, 20, 82, 71, 8, 10, + 16, 107, 233, 155, 113, 27, 234, 201, 109, 3, 104, 228, 190, 51, 255, 255, 255, 159, 159, 27, 23, 53, 35, 239, 15, + 226, 133, 98, 69, 180, 238, 63, 31, 227, 27, 169, 10, 82, 210, 138, 156, 199, 43, 255, 216, 102, 159, 27, 229, 99, + 90, 208, 214, 202, 255, 193, 128, 255, 159, 69, 80, 131, 178, 80, 39, 27, 61, 143, 51, 39, 168, 150, 45, 83, 27, + 60, 205, 44, 61, 30, 94, 117, 156, 74, 91, 195, 174, 204, 223, 206, 176, 17, 103, 110, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3316, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15214615764873837451" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6294300108278350221" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c58895757bf8720c8220f800" + }, + { + "_tag": "ByteArray", + "bytearray": "75402ba3b87f72086500d3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16074342685918154654" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d79fddbdb6c0" + }, + { + "_tag": "ByteArray", + "bytearray": "0c06d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5387695583962598699" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11868877437996847628" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4086159539931582048" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31a99dec745807" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10376287090492840293" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "60222f7fcb3abe86" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12177282402681214970" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4260675484062898214" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10439688837573488048" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "752157092632511001" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4941538794967948988" + } + }, + { + "_tag": "ByteArray", + "bytearray": "45" + }, + { + "_tag": "ByteArray", + "bytearray": "ac2d6b4e6c" + }, + { + "_tag": "ByteArray", + "bytearray": "c239ae199dae37" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e724c67b76b8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5486091030867139547" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7330153373357494168" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4168221201851488150" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3939254229949840756" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6561162075428855079" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4832614059419497878" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10579507273602653738" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8def03e849ab3a32489e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2747850543915921231" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b27f2000" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59b51176" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10917240479080215466" + } + } + ] + }, + "cborHex": "d8669f1bd3252c6d7b5cfb8b9fd8669f1b5759d8998fa2418d9f4cc58895757bf8720c8220f8004b75402ba3b87f72086500d3d8669f1bdf138981e00ccf9e9f46d79fddbdb6c0430c06d51b4ac4f096a0080d2bffffd8669f1ba4b6b9255673520c9f1b38b4f473c1320e604731a99dec7458071b8ffffa22044c1965ffff4860222f7fcb3abe86ffffd8669f1ba8fe65d3c56dd7fa9f1b3b20f5c75ac8d8261b90e139af992dadb0d8669f1b0a7032e401a6c2199f1b4493df5a45e05ebc414545ac2d6b4e6c47c239ae199dae37ffff46e724c67b76b8ffff1b4c2282b9dc4adbdbd8669f1b65b9efa8001acf989f1b39d87f19519c1796bf1b36ab0ad9e01d7d741b5b0dee2523b39d271b4310e4e1fc41f5961b92d1f5d00dbf5e2a4a8def03e849ab3a32489e1b26225382cdf8ef4f44b27f20004459b51176ffffff1b9781d45fab1773aaffff", + "cborBytes": [ + 216, 102, 159, 27, 211, 37, 44, 109, 123, 92, 251, 139, 159, 216, 102, 159, 27, 87, 89, 216, 153, 143, 162, 65, + 141, 159, 76, 197, 136, 149, 117, 123, 248, 114, 12, 130, 32, 248, 0, 75, 117, 64, 43, 163, 184, 127, 114, 8, 101, + 0, 211, 216, 102, 159, 27, 223, 19, 137, 129, 224, 12, 207, 158, 159, 70, 215, 159, 221, 189, 182, 192, 67, 12, 6, + 213, 27, 74, 196, 240, 150, 160, 8, 13, 43, 255, 255, 216, 102, 159, 27, 164, 182, 185, 37, 86, 115, 82, 12, 159, + 27, 56, 180, 244, 115, 193, 50, 14, 96, 71, 49, 169, 157, 236, 116, 88, 7, 27, 143, 255, 250, 34, 4, 76, 25, 101, + 255, 255, 72, 96, 34, 47, 127, 203, 58, 190, 134, 255, 255, 216, 102, 159, 27, 168, 254, 101, 211, 197, 109, 215, + 250, 159, 27, 59, 32, 245, 199, 90, 200, 216, 38, 27, 144, 225, 57, 175, 153, 45, 173, 176, 216, 102, 159, 27, 10, + 112, 50, 228, 1, 166, 194, 25, 159, 27, 68, 147, 223, 90, 69, 224, 94, 188, 65, 69, 69, 172, 45, 107, 78, 108, 71, + 194, 57, 174, 25, 157, 174, 55, 255, 255, 70, 231, 36, 198, 123, 118, 184, 255, 255, 27, 76, 34, 130, 185, 220, + 74, 219, 219, 216, 102, 159, 27, 101, 185, 239, 168, 0, 26, 207, 152, 159, 27, 57, 216, 127, 25, 81, 156, 23, 150, + 191, 27, 54, 171, 10, 217, 224, 29, 125, 116, 27, 91, 13, 238, 37, 35, 179, 157, 39, 27, 67, 16, 228, 225, 252, + 65, 245, 150, 27, 146, 209, 245, 208, 13, 191, 94, 42, 74, 141, 239, 3, 232, 73, 171, 58, 50, 72, 158, 27, 38, 34, + 83, 130, 205, 248, 239, 79, 68, 178, 127, 32, 0, 68, 89, 181, 17, 118, 255, 255, 255, 27, 151, 129, 212, 95, 171, + 23, 115, 170, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3317, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "4b" + }, + { + "_tag": "ByteArray", + "bytearray": "4ee42d41e19b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3821407147303586956" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25c817" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4646957713236245812" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11402596827834956312" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "231611e030" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14322398611293058310" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83381e20670f3649e7290fdd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "547a2171cf61" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f80414b464ee42d41e19bbf1b35085d8dc52b4c8c4325c8171b407d4f6b67b53d341b9e3e2966c0193a1845231611e0301bc6c361a755abb5064c83381e20670f3649e7290fdd46547a2171cf61ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 128, 65, 75, 70, 78, 228, 45, 65, 225, 155, 191, + 27, 53, 8, 93, 141, 197, 43, 76, 140, 67, 37, 200, 23, 27, 64, 125, 79, 107, 103, 181, 61, 52, 27, 158, 62, 41, + 102, 192, 25, 58, 24, 69, 35, 22, 17, 224, 48, 27, 198, 195, 97, 167, 85, 171, 181, 6, 76, 131, 56, 30, 32, 103, + 15, 54, 73, 231, 41, 15, 221, 70, 84, 122, 33, 113, 207, 97, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3318, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11832903344659883440" + }, + "fields": [] + }, + "cborHex": "d8669f1ba436eae607fbe5b080ff", + "cborBytes": [216, 102, 159, 27, 164, 54, 234, 230, 7, 251, 229, 176, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3319, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0004025efb06025c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0501a905ff06fe0168b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "565d06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "feff2b07070f05e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d02870003" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4188324474288125257" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73c6e41e1ece" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ccfc7d" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9fbf480004025efb06025c41074a0501a905ff06fe0168b01bfffffffffffffffb43565d0648feff2b07070f05e5455d028700031b3a1feaeb2e04b5494673c6e41e1ece4101ff43ccfc7dffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 191, 72, 0, 4, 2, 94, 251, 6, 2, 92, 65, 7, 74, 5, + 1, 169, 5, 255, 6, 254, 1, 104, 176, 27, 255, 255, 255, 255, 255, 255, 255, 251, 67, 86, 93, 6, 72, 254, 255, 43, + 7, 7, 15, 5, 229, 69, 93, 2, 135, 0, 3, 27, 58, 31, 234, 235, 46, 4, 181, 73, 70, 115, 198, 228, 30, 30, 206, 65, + 1, 255, 67, 204, 252, 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3320, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9652696249456178492" + }, + "fields": [] + }, + "cborHex": "d8669f1b85f54418c194b53c80ff", + "cborBytes": [216, 102, 159, 27, 133, 245, 68, 24, 193, 148, 181, 60, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3321, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7753803820960998840" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11827839038094487659" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e98f0207ff3d545c18" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "945df9932a1ed7668be3f908" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9795089768332709165" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8b147fdf19af" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13329286666778904748" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "44b5317eefb5aebe" + }, + { + "_tag": "ByteArray", + "bytearray": "50" + }, + { + "_tag": "ByteArray", + "bytearray": "91bf7f14574593" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5949522734900143126" + } + }, + { + "_tag": "ByteArray", + "bytearray": "86f4e2e9edf0353c" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4211506091086313600" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "500661b3a3ba41" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0a92c0a5c4814c262e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14656489984453615595" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "207104303951539361" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11492731506396775991" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1297923711178064302" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d623b948e2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6671220450778188794" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12476778397627785592" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10121978579488741660" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18100936860668678396" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11004379300287909469" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "437be68a1b81" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13077953425475642182" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3309698490758623337" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16599234300563205127" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12209060527811861384" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4d93a66e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15900455219328553241" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8376310375225404589" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3dd87a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39abd97f3c4fcc1c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67d024a76ddd9c09" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4bbc5e1f65" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4303388448164362720" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f67715a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83d618" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4aef464c164b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6efba846fea81ca" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3954263706040842281" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11597790778621071108" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11465972426911063589" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "124977591528664339" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "83c61e9b656e4103c4a1b63f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "831f26" + } + ] + }, + "cborHex": "d905019fd8669f1b6b9b0b7e667265b89fd8669f1ba424ecf0461eb06b9f49e98f0207ff3d545c18ffff4c945df9932a1ed7668be3f9081b87ef263f6888cd2dffff9f80468b147fdf19afd8669f1bb8fb239a12b508ac9f4844b5317eefb5aebe41504791bf7f145745931b5290f367ccd564164886f4e2e9edf0353cffffffd8669f1b3a724679f097f8809f9f47500661b3a3ba41ff490a92c0a5c4814c262e1bcb664ffcc96d9febbf1b02dfc844647c6ca11b9f7e6269f9b846371b120326bd165341ae45d623b948e21b5c94efa782f48bfa1bad266bd90bdf21781b8c787de3b68a191c1bfb33722c01ee50fc1b98b768ab7f528e5d46437be68a1b81ffffffd8669f1bb57e3959ba9423469fd8669f1b2dee693de75070699f1be65c53a65c8cac071ba96f4bdd19781b88444d93a66e1bdca9c3c71b159119ffffd8669f1b743ea1e81bbaacad80ffbf433dd87a4839abd97f3c4fcc1c4867d024a76ddd9c09454bbc5e1f6541741b3bb8b4fe475b39e0447f67715a4383d61847e4aef464c164b048f6efba846fea81caffbf1b36e05de3dac8b8291ba0f3a143f3028f041b9f1f512c46751e251b01bc027513f32d13ff4c83c61e9b656e4103c4a1b63fffff43831f26ff", + "cborBytes": [ + 217, 5, 1, 159, 216, 102, 159, 27, 107, 155, 11, 126, 102, 114, 101, 184, 159, 216, 102, 159, 27, 164, 36, 236, + 240, 70, 30, 176, 107, 159, 73, 233, 143, 2, 7, 255, 61, 84, 92, 24, 255, 255, 76, 148, 93, 249, 147, 42, 30, 215, + 102, 139, 227, 249, 8, 27, 135, 239, 38, 63, 104, 136, 205, 45, 255, 255, 159, 128, 70, 139, 20, 127, 223, 25, + 175, 216, 102, 159, 27, 184, 251, 35, 154, 18, 181, 8, 172, 159, 72, 68, 181, 49, 126, 239, 181, 174, 190, 65, 80, + 71, 145, 191, 127, 20, 87, 69, 147, 27, 82, 144, 243, 103, 204, 213, 100, 22, 72, 134, 244, 226, 233, 237, 240, + 53, 60, 255, 255, 255, 216, 102, 159, 27, 58, 114, 70, 121, 240, 151, 248, 128, 159, 159, 71, 80, 6, 97, 179, 163, + 186, 65, 255, 73, 10, 146, 192, 165, 196, 129, 76, 38, 46, 27, 203, 102, 79, 252, 201, 109, 159, 235, 191, 27, 2, + 223, 200, 68, 100, 124, 108, 161, 27, 159, 126, 98, 105, 249, 184, 70, 55, 27, 18, 3, 38, 189, 22, 83, 65, 174, + 69, 214, 35, 185, 72, 226, 27, 92, 148, 239, 167, 130, 244, 139, 250, 27, 173, 38, 107, 217, 11, 223, 33, 120, 27, + 140, 120, 125, 227, 182, 138, 25, 28, 27, 251, 51, 114, 44, 1, 238, 80, 252, 27, 152, 183, 104, 171, 127, 82, 142, + 93, 70, 67, 123, 230, 138, 27, 129, 255, 255, 255, 216, 102, 159, 27, 181, 126, 57, 89, 186, 148, 35, 70, 159, + 216, 102, 159, 27, 45, 238, 105, 61, 231, 80, 112, 105, 159, 27, 230, 92, 83, 166, 92, 140, 172, 7, 27, 169, 111, + 75, 221, 25, 120, 27, 136, 68, 77, 147, 166, 110, 27, 220, 169, 195, 199, 27, 21, 145, 25, 255, 255, 216, 102, + 159, 27, 116, 62, 161, 232, 27, 186, 172, 173, 128, 255, 191, 67, 61, 216, 122, 72, 57, 171, 217, 127, 60, 79, + 204, 28, 72, 103, 208, 36, 167, 109, 221, 156, 9, 69, 75, 188, 94, 31, 101, 65, 116, 27, 59, 184, 180, 254, 71, + 91, 57, 224, 68, 127, 103, 113, 90, 67, 131, 214, 24, 71, 228, 174, 244, 100, 193, 100, 176, 72, 246, 239, 186, + 132, 111, 234, 129, 202, 255, 191, 27, 54, 224, 93, 227, 218, 200, 184, 41, 27, 160, 243, 161, 67, 243, 2, 143, 4, + 27, 159, 31, 81, 44, 70, 117, 30, 37, 27, 1, 188, 2, 117, 19, 243, 45, 19, 255, 76, 131, 198, 30, 155, 101, 110, + 65, 3, 196, 161, 182, 63, 255, 255, 67, 131, 31, 38, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3322, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2542955547103101552" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7820976964836329994" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d807146d8ea6aa8092d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8168978576925156618" + } + } + ] + }, + "cborHex": "d8669f1b234a6498d0b082709fbf1b6c89b11cb9950a0a4a2d807146d8ea6aa8092dff1b715e0abc0f66650affff", + "cborBytes": [ + 216, 102, 159, 27, 35, 74, 100, 152, 208, 176, 130, 112, 159, 191, 27, 108, 137, 177, 28, 185, 149, 10, 10, 74, + 45, 128, 113, 70, 216, 234, 106, 168, 9, 45, 255, 27, 113, 94, 10, 188, 15, 102, 101, 10, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3323, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "796363638717898270" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8240936956888512445" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3461203634691686845" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17178000428813925987" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8461956799814335829" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9842621795287859969" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9500384542419857060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8928895939752773368" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9572166188127774837" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "502bb022edf7f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14605116040453917279" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15718201279552613613" + } + } + } + ] + } + ] + }, + "cborHex": "d905019fbf1b0b0d408295d15e1e1b725db07ffbba77bd1b3008aa5e1516c1bd1bee64846086f63e631b756ee8e045a27d551b8898045fd6a683011b83d82567f88c2ea41b7be9cf8cc56446f81b84d72a6ebe5c687547502bb022edf7f81bcaafcba8569d8a5f1bda2244c8ffd2ecedffff", + "cborBytes": [ + 217, 5, 1, 159, 191, 27, 11, 13, 64, 130, 149, 209, 94, 30, 27, 114, 93, 176, 127, 251, 186, 119, 189, 27, 48, 8, + 170, 94, 21, 22, 193, 189, 27, 238, 100, 132, 96, 134, 246, 62, 99, 27, 117, 110, 232, 224, 69, 162, 125, 85, 27, + 136, 152, 4, 95, 214, 166, 131, 1, 27, 131, 216, 37, 103, 248, 140, 46, 164, 27, 123, 233, 207, 140, 197, 100, 70, + 248, 27, 132, 215, 42, 110, 190, 92, 104, 117, 71, 80, 43, 176, 34, 237, 247, 248, 27, 202, 175, 203, 168, 86, + 157, 138, 95, 27, 218, 34, 68, 200, 255, 210, 236, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3324, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2566108321417153568" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + }, + "cborHex": "d8669f1b239ca5ec293e4c209f09ffff", + "cborBytes": [216, 102, 159, 27, 35, 156, 165, 236, 41, 62, 76, 32, 159, 9, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3325, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17165331900097511148" + }, + "fields": [] + }, + "cborHex": "d8669f1bee37826ad4fe3eec80ff", + "cborBytes": [216, 102, 159, 27, 238, 55, 130, 106, 212, 254, 62, 236, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3326, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6478966128663960198" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "615445852488208458" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "95df010b1e3a7371" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9105672412052513148" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3348156089126124232" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1798065568411431001" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "56f5d5116e49ba6c" + }, + { + "_tag": "ByteArray", + "bytearray": "5f36fa613ae6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16637766845558506238" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bcd0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7582578703908570900" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10076568297304014392" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e5be95212df022800" + }, + { + "_tag": "ByteArray", + "bytearray": "05aab2e431da2322b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "294842475350499274" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8190693240136159187" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12562272182651357702" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11726525532660654138" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16903187098144617545" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "83d57bb669" + }, + { + "_tag": "ByteArray", + "bytearray": "231e2fc04d76df81a67e30" + } + ] + }, + "cborHex": "d8669f1b59e9e95df2cd9a869fd8669f1b088a80bdf80c104a9f4895df010b1e3a73719f1b7e5dd8d09976e17c1b2e770a3948ec7ac8ff1b18f4031ba00630599f4856f5d5116e49ba6c465f36fa613ae61be6e538cb9d4942fe42bcd01b693abb282fe98714ff9f1b8bd7297a7bc4be38498e5be95212df0228004905aab2e431da2322b81b04177dab4ff69fca1b71ab301b12824fd3ffffffbf1bae5627fe0ab48a061ba2bcfcd797c9603a1bea942f1bdce034494137ff4583d57bb6694b231e2fc04d76df81a67e30ffff", + "cborBytes": [ + 216, 102, 159, 27, 89, 233, 233, 93, 242, 205, 154, 134, 159, 216, 102, 159, 27, 8, 138, 128, 189, 248, 12, 16, + 74, 159, 72, 149, 223, 1, 11, 30, 58, 115, 113, 159, 27, 126, 93, 216, 208, 153, 118, 225, 124, 27, 46, 119, 10, + 57, 72, 236, 122, 200, 255, 27, 24, 244, 3, 27, 160, 6, 48, 89, 159, 72, 86, 245, 213, 17, 110, 73, 186, 108, 70, + 95, 54, 250, 97, 58, 230, 27, 230, 229, 56, 203, 157, 73, 66, 254, 66, 188, 208, 27, 105, 58, 187, 40, 47, 233, + 135, 20, 255, 159, 27, 139, 215, 41, 122, 123, 196, 190, 56, 73, 142, 91, 233, 82, 18, 223, 2, 40, 0, 73, 5, 170, + 178, 228, 49, 218, 35, 34, 184, 27, 4, 23, 125, 171, 79, 246, 159, 202, 27, 113, 171, 48, 27, 18, 130, 79, 211, + 255, 255, 255, 191, 27, 174, 86, 39, 254, 10, 180, 138, 6, 27, 162, 188, 252, 215, 151, 201, 96, 58, 27, 234, 148, + 47, 27, 220, 224, 52, 73, 65, 55, 255, 69, 131, 213, 123, 182, 105, 75, 35, 30, 47, 192, 77, 118, 223, 129, 166, + 126, 48, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3327, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1189623599256963877" + }, + "fields": [] + }, + "cborHex": "d8669f1b1082645c52220b2580ff", + "cborBytes": [216, 102, 159, 27, 16, 130, 100, 92, 82, 34, 11, 37, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3328, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4417798460229829454" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11445659797634091881" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3922086073190513529" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "174744599870715689" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11585850528278806606" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4031951547472852098" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2233595572890103163" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1474456195163095827" + } + }, + { + "_tag": "ByteArray", + "bytearray": "228c8af1ae16" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10636886497117293050" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9509816854672107568" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10969138822704172789" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d28bb23233" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16912244101508774898" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3719573216518752517" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18288226959504863043" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12688953250025725584" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d9050c9fbf1b3d4f2c4b0744434e1b9ed726f1b9f30b69ff1b366e0c80e306fb79d8669f1b026cd149a9b637299f1ba0c935abc6d4804e1b37f45e91fab4b482ffff9fd8669f1b1eff5356e5ffed7b9f1b14765218f592031346228c8af1ae161b939dcfe998d349fa1b83f9a80b4dc0e8301b983a35a46b3a8ef5ffff45d28bb23233d8669f1beab45c67c9203bf29f1b339e94221ea849051bfdccd58645026f43ffff1bb01837c07f525e90ff80ff", + "cborBytes": [ + 217, 5, 12, 159, 191, 27, 61, 79, 44, 75, 7, 68, 67, 78, 27, 158, 215, 38, 241, 185, 243, 11, 105, 255, 27, 54, + 110, 12, 128, 227, 6, 251, 121, 216, 102, 159, 27, 2, 108, 209, 73, 169, 182, 55, 41, 159, 27, 160, 201, 53, 171, + 198, 212, 128, 78, 27, 55, 244, 94, 145, 250, 180, 180, 130, 255, 255, 159, 216, 102, 159, 27, 30, 255, 83, 86, + 229, 255, 237, 123, 159, 27, 20, 118, 82, 24, 245, 146, 3, 19, 70, 34, 140, 138, 241, 174, 22, 27, 147, 157, 207, + 233, 152, 211, 73, 250, 27, 131, 249, 168, 11, 77, 192, 232, 48, 27, 152, 58, 53, 164, 107, 58, 142, 245, 255, + 255, 69, 210, 139, 178, 50, 51, 216, 102, 159, 27, 234, 180, 92, 103, 201, 32, 59, 242, 159, 27, 51, 158, 148, 34, + 30, 168, 73, 5, 27, 253, 204, 213, 134, 69, 2, 111, 67, 255, 255, 27, 176, 24, 55, 192, 127, 82, 94, 144, 255, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3329, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8610940712937699905" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16142062227867298221" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7866343710624340279" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11620391694423870455" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7485964023966509967" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d8d5d20ff6ac3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8258519696950914354" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15407057604805592258" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9423204670230987192" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10701653954548547149" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66b4c06d84bb0d2e72" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17871007745154023647" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9c398a74d40dc72" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ec3f255d9f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8965253895171064142" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a7176876b907970ccb" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15174161852287109631" + } + } + ] + }, + "cborHex": "d8669f1b778034f4a899ba419f1be00420126a47e9add8669f1b6d2added58e459379f1ba143ecadb908cbf7bf1b67e37c9e11e0ab8f477d8d5d20ff6ac31b729c27e8ab536d321bd5d0dd42f06b04c21b82c5f2b8a6eb81b841cb1b9483e99266053e4d4966b4c06d84bb0d2e721bf80292dc0c2900df48e9c398a74d40dc72ff45ec3f255d9f1b7c6afaeaeedbc14e49a7176876b907970ccbffff1bd29573cef9db49ffffff", + "cborBytes": [ + 216, 102, 159, 27, 119, 128, 52, 244, 168, 153, 186, 65, 159, 27, 224, 4, 32, 18, 106, 71, 233, 173, 216, 102, + 159, 27, 109, 42, 221, 237, 88, 228, 89, 55, 159, 27, 161, 67, 236, 173, 185, 8, 203, 247, 191, 27, 103, 227, 124, + 158, 17, 224, 171, 143, 71, 125, 141, 93, 32, 255, 106, 195, 27, 114, 156, 39, 232, 171, 83, 109, 50, 27, 213, + 208, 221, 66, 240, 107, 4, 194, 27, 130, 197, 242, 184, 166, 235, 129, 184, 65, 203, 27, 148, 131, 233, 146, 102, + 5, 62, 77, 73, 102, 180, 192, 109, 132, 187, 13, 46, 114, 27, 248, 2, 146, 220, 12, 41, 0, 223, 72, 233, 195, 152, + 167, 77, 64, 220, 114, 255, 69, 236, 63, 37, 93, 159, 27, 124, 106, 250, 234, 238, 219, 193, 78, 73, 167, 23, 104, + 118, 185, 7, 151, 12, 203, 255, 255, 27, 210, 149, 115, 206, 249, 219, 73, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3330, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9347763165849544343" + }, + "fields": [] + } + ] + }, + "cborHex": "d87b9fd8669f1b81b9ed12a0f1669780ffff", + "cborBytes": [216, 123, 159, 216, 102, 159, 27, 129, 185, 237, 18, 160, 241, 102, 151, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3331, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15026852345128206630" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bd08a1a979b9cc1269fd87a80ffff", + "cborBytes": [216, 102, 159, 27, 208, 138, 26, 151, 155, 156, 193, 38, 159, 216, 122, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3332, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6013813154491562968" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13682534419081507085" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "788864859055498473" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8079513879937088674" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12230872642074612130" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38569e87c6d2a8ceed56f2a4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6dedea1d63ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0fccf301749809020eeb4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17880740429404515297" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11781082363495068044" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "48" + }, + { + "_tag": "ByteArray", + "bytearray": "fbd14065" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10788766872608341869" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0203008405fe1b597900f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13379291051680927739" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3701153561395300605" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "659724bd9cd57b92e756d4d4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "54e01b57fab5946c9709b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13732421034075625734" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b53755b33930a7bd89f9f1bbde2208f9c68b10dbf1b0af29c68e3caa4e91b70203311137cfca21ba9bcc9ddb3e691a24c38569e87c6d2a8ceed56f2a4466dedea1d63ff41fd4bc0fccf301749809020eeb41bf82526af2f9f2be1ffd8669f1ba37ecffda1be318c9f414844fbd140651b95b9664f2e527f6dffffff074b0203008405fe1b597900f91bb9acca5332010ffbd8669f1b335d238df62388fd9fa04c659724bd9cd57b92e756d4d4bf4b54e01b57fab5946c9709b21bbe935c2c4a2e1906ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 83, 117, 91, 51, 147, 10, 123, 216, 159, 159, 27, 189, 226, 32, 143, 156, 104, 177, 13, 191, + 27, 10, 242, 156, 104, 227, 202, 164, 233, 27, 112, 32, 51, 17, 19, 124, 252, 162, 27, 169, 188, 201, 221, 179, + 230, 145, 162, 76, 56, 86, 158, 135, 198, 210, 168, 206, 237, 86, 242, 164, 70, 109, 237, 234, 29, 99, 255, 65, + 253, 75, 192, 252, 207, 48, 23, 73, 128, 144, 32, 238, 180, 27, 248, 37, 38, 175, 47, 159, 43, 225, 255, 216, 102, + 159, 27, 163, 126, 207, 253, 161, 190, 49, 140, 159, 65, 72, 68, 251, 209, 64, 101, 27, 149, 185, 102, 79, 46, 82, + 127, 109, 255, 255, 255, 7, 75, 2, 3, 0, 132, 5, 254, 27, 89, 121, 0, 249, 27, 185, 172, 202, 83, 50, 1, 15, 251, + 216, 102, 159, 27, 51, 93, 35, 141, 246, 35, 136, 253, 159, 160, 76, 101, 151, 36, 189, 156, 213, 123, 146, 231, + 86, 212, 212, 191, 75, 84, 224, 27, 87, 250, 181, 148, 108, 151, 9, 178, 27, 190, 147, 92, 44, 74, 46, 25, 6, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3333, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13828089469243132218" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17176130353840438092" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13958949260361836306" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1dc34a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e2d636f0cfba50ec5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14877366823818408871" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17443187730171552409" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7938366975177467336" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12704346648607989919" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0304d300e131" + } + ] + }, + "cborHex": "d9050d9fa09fbf1bbfe73e1ba08e893a1bee5ddf8dc476bb4c1bc1b826650591a712431dc34a496e2d636f0cfba50ec51bce77064d76e0b3a7ffd8669f1bf212a6d29753e2999f1b6e2abeb4642525c81bb04ee7f765b4209fffffff460304d300e131ff", + "cborBytes": [ + 217, 5, 13, 159, 160, 159, 191, 27, 191, 231, 62, 27, 160, 142, 137, 58, 27, 238, 93, 223, 141, 196, 118, 187, 76, + 27, 193, 184, 38, 101, 5, 145, 167, 18, 67, 29, 195, 74, 73, 110, 45, 99, 111, 12, 251, 165, 14, 197, 27, 206, + 119, 6, 77, 118, 224, 179, 167, 255, 216, 102, 159, 27, 242, 18, 166, 210, 151, 83, 226, 153, 159, 27, 110, 42, + 190, 180, 100, 37, 37, 200, 27, 176, 78, 231, 247, 101, 180, 32, 159, 255, 255, 255, 70, 3, 4, 211, 0, 225, 49, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3334, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9684003363843357085" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9292224574896678461" + } + } + ] + }, + "cborHex": "d8669f1b86647dc05992399d9f1b80f49d04bfdf263dffff", + "cborBytes": [ + 216, 102, 159, 27, 134, 100, 125, 192, 89, 146, 57, 157, 159, 27, 128, 244, 157, 4, 191, 223, 38, 61, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3335, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7671259754751440724" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16904888295594541297" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15743811230658513579" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14909319908717319870" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13813592785574258039" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9099916409070235363" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6544917239407102490" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eb43b37cca708db1230e1cac" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17920925465320096085" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1154360035544595290" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15310370793461840911" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2778266984386628349" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5835462254880079033" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4634459327354760393" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3244663971771966547" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4583135524219896611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5e204615f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6683273787449608750" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6a75ca1a55b5b7549fd8669f1bea9a3a56c29240f180ffd8669f1bda7d40e66634caab9f9f1bcee88b76c9c156be1bbfb3bd73700d6577ff1b7e4965c2b8612ee3ffff9fd8669f1b5ad4378d8330ca1a9f4ceb43b37cca708db1230e1cacffffa01bf8b3eac2f6a80155ffbf1b10051c56158afb5a1bd4795d1e6bcefc0f1b268e631a378f8afd1b50fbba00d253bcb91b4050e8342cf9ecc91b2d075cb0fcf9e453ffbf1b3f9a917a0e99c32345e5e204615f1b5cbfc219a59d0a2e4129ffffff", + "cborBytes": [ + 216, 102, 159, 27, 106, 117, 202, 26, 85, 181, 183, 84, 159, 216, 102, 159, 27, 234, 154, 58, 86, 194, 146, 64, + 241, 128, 255, 216, 102, 159, 27, 218, 125, 64, 230, 102, 52, 202, 171, 159, 159, 27, 206, 232, 139, 118, 201, + 193, 86, 190, 27, 191, 179, 189, 115, 112, 13, 101, 119, 255, 27, 126, 73, 101, 194, 184, 97, 46, 227, 255, 255, + 159, 216, 102, 159, 27, 90, 212, 55, 141, 131, 48, 202, 26, 159, 76, 235, 67, 179, 124, 202, 112, 141, 177, 35, + 14, 28, 172, 255, 255, 160, 27, 248, 179, 234, 194, 246, 168, 1, 85, 255, 191, 27, 16, 5, 28, 86, 21, 138, 251, + 90, 27, 212, 121, 93, 30, 107, 206, 252, 15, 27, 38, 142, 99, 26, 55, 143, 138, 253, 27, 80, 251, 186, 0, 210, 83, + 188, 185, 27, 64, 80, 232, 52, 44, 249, 236, 201, 27, 45, 7, 92, 176, 252, 249, 228, 83, 255, 191, 27, 63, 154, + 145, 122, 14, 153, 195, 35, 69, 229, 226, 4, 97, 95, 27, 92, 191, 194, 25, 165, 157, 10, 46, 65, 41, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3336, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "73253e" + }, + { + "_tag": "ByteArray", + "bytearray": "f6c4c3733ddb5c" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f804373253e47f6c4c3733ddb5cffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 128, 67, 115, 37, 62, 71, 246, 196, 195, 115, 61, + 219, 92, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3337, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7783279465953120365" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2810450390308664653" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "740406594572009643" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10112953467416292565" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f68b107b46" + }, + { + "_tag": "ByteArray", + "bytearray": "a02b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9696c4a9ab" + }, + { + "_tag": "ByteArray", + "bytearray": "093f3e101e4b92" + } + ] + } + ] + }, + "cborHex": "d905009f9f9f1b6c03c36fcbba506d1b2700b9bd5534b54d1b0a4673dffad240abffd8669f1b8c586d990f672cd59f45f68b107b4642a02bffff459696c4a9ab47093f3e101e4b92ffff", + "cborBytes": [ + 217, 5, 0, 159, 159, 159, 27, 108, 3, 195, 111, 203, 186, 80, 109, 27, 39, 0, 185, 189, 85, 52, 181, 77, 27, 10, + 70, 115, 223, 250, 210, 64, 171, 255, 216, 102, 159, 27, 140, 88, 109, 153, 15, 103, 44, 213, 159, 69, 246, 139, + 16, 123, 70, 66, 160, 43, 255, 255, 69, 150, 150, 196, 169, 171, 71, 9, 63, 62, 16, 30, 75, 146, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3338, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8519f35321a24663949957" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7878000210122134509" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16743231086406967020" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98066a01" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f4b8519f35321a24663949957bf111b6d544773a0c853ed1be85be7f6b1909eec4498066a01ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 75, 133, 25, 243, 83, 33, 162, 70, 99, 148, 153, + 87, 191, 17, 27, 109, 84, 71, 115, 160, 200, 83, 237, 27, 232, 91, 231, 246, 177, 144, 158, 236, 68, 152, 6, 106, + 1, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3339, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3913409999000498658" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8765733552738287542" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9594228129238050154" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5778831979995973452" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12543875697947678540" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b364f39a8f2e2f1e29fd8669f1b79a624392eb03fb680ff1b85258ba6b14b656ad8669f1b503289117853c74c9f1bae14cc7caad3974cffffffff", + "cborBytes": [ + 216, 102, 159, 27, 54, 79, 57, 168, 242, 226, 241, 226, 159, 216, 102, 159, 27, 121, 166, 36, 57, 46, 176, 63, + 182, 128, 255, 27, 133, 37, 139, 166, 177, 75, 101, 106, 216, 102, 159, 27, 80, 50, 137, 17, 120, 83, 199, 76, + 159, 27, 174, 20, 204, 124, 170, 211, 151, 76, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3340, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4753311261038627281" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c6a" + } + ] + }, + "cborHex": "d8669f1b41f72768651249d19f427c6affff", + "cborBytes": [216, 102, 159, 27, 65, 247, 39, 104, 101, 18, 73, 209, 159, 66, 124, 106, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3341, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4775715548332214556" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "41c9b2" + } + ] + }, + "cborHex": "d8669f1b4246bffd06a6c91c9f4341c9b2ffff", + "cborBytes": [216, 102, 159, 27, 66, 70, 191, 253, 6, 166, 201, 28, 159, 67, 65, 201, 178, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3342, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6308044816096960935" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7810767993229219248" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17521560825365148952" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1140234856245269943" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0897d5042bb815c28bab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "469318273089082571" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63cd4d1705ec76" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1539bb5fa6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "961ad628da0df34811956445" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11539791826101425596" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7691b2bab03e2bde341" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16482406320082880797" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "712cb757a7" + }, + { + "_tag": "ByteArray", + "bytearray": "a9" + }, + { + "_tag": "ByteArray", + "bytearray": "e9ee79" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4109447709690575035" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b578aad56bab421a79fbf1b6c656c1b4b6b15b01bf32916bcca4a3518ffd8669f1b0fd2ed8f7f0495b79fbf4a0897d5042bb815c28bab1b06835a7b9a1314cb4763cd4d1705ec76451539bb5fa64c961ad628da0df348119564451ba025938680bb55bc4af7691b2bab03e2bde3411be4bd45387831891dffa0ffff1bfffffffffffffffa9f45712cb757a741a943e9ee79ffd8669f1b3907b0eb4f2638bb80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 87, 138, 173, 86, 186, 180, 33, 167, 159, 191, 27, 108, 101, 108, 27, 75, 107, 21, 176, 27, + 243, 41, 22, 188, 202, 74, 53, 24, 255, 216, 102, 159, 27, 15, 210, 237, 143, 127, 4, 149, 183, 159, 191, 74, 8, + 151, 213, 4, 43, 184, 21, 194, 139, 171, 27, 6, 131, 90, 123, 154, 19, 20, 203, 71, 99, 205, 77, 23, 5, 236, 118, + 69, 21, 57, 187, 95, 166, 76, 150, 26, 214, 40, 218, 13, 243, 72, 17, 149, 100, 69, 27, 160, 37, 147, 134, 128, + 187, 85, 188, 74, 247, 105, 27, 43, 171, 3, 226, 189, 227, 65, 27, 228, 189, 69, 56, 120, 49, 137, 29, 255, 160, + 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 69, 113, 44, 183, 87, 167, 65, 169, 67, 233, 238, 121, + 255, 216, 102, 159, 27, 57, 7, 176, 235, 79, 38, 56, 187, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3343, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4141813190865129216" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e9686d5fa8c9528f" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9fbf0a1b397aad271f8b0f00ff48e9686d5fa8c9528fffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 191, 10, 27, 57, 122, 173, 39, 31, 139, 15, 0, + 255, 72, 233, 104, 109, 95, 168, 201, 82, 143, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3344, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a0202" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7db30" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b796015c8d395e4" + } + } + ] + } + ] + }, + "cborHex": "d9050d9fa0bf1bfffffffffffffffc430a020243f7db30481b796015c8d395e4ffff", + "cborBytes": [ + 217, 5, 13, 159, 160, 191, 27, 255, 255, 255, 255, 255, 255, 255, 252, 67, 10, 2, 2, 67, 247, 219, 48, 72, 27, + 121, 96, 21, 200, 211, 149, 228, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3345, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14372352458743696405" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e35fff765fdaa896" + } + ] + }, + "cborHex": "d8669f1bc774da69ca214c159f48e35fff765fdaa896ffff", + "cborBytes": [ + 216, 102, 159, 27, 199, 116, 218, 105, 202, 33, 76, 21, 159, 72, 227, 95, 255, 118, 95, 218, 168, 150, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3346, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "580504852928389288" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13467063903948694964" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13942333698828130096" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16239718982080250541" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16025568770940079776" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16302059650645004031" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6cde699d738c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "308c31" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a2f2da23a709b1e0a" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9f1b080e5e168d2fe0a8bf1bbae49f44e258e5b41bc17d1ea1229bd7301be15f125f5b0fc2ad1bde6641e3db7a0ea01be23c8ce157ec8eff466cde699d738c43308c31492a2f2da23a709b1e0affffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 27, 8, 14, 94, 22, 141, 47, 224, 168, 191, 27, + 186, 228, 159, 68, 226, 88, 229, 180, 27, 193, 125, 30, 161, 34, 155, 215, 48, 27, 225, 95, 18, 95, 91, 15, 194, + 173, 27, 222, 102, 65, 227, 219, 122, 14, 160, 27, 226, 60, 140, 225, 87, 236, 142, 255, 70, 108, 222, 105, 157, + 115, 140, 67, 48, 140, 49, 73, 42, 47, 45, 162, 58, 112, 155, 30, 10, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3347, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7757369223616710274" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "23eb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12496941753335897241" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2205365353126691653" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0fd990b1343a2bd875ecd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9249712906176903797" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9031362030926951224" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10744886995237081220" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16036536372174475132" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17204997840562864855" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18372376438931276796" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "613674537311190169" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6ba7ee0a0a92aeb4f13c9978" + } + ] + }, + "cborHex": "d8669f1b6ba7b6356538c6829f4223ebd8669f1bad6e0e5022555c999fbf1b1e9b081aa91203454bb0fd990b1343a2bd875ecd1b805d94e18f053a751b7d55d7eabb59f3381b951d81cb16d210841bde8d38dd83174f7c1beec46e61481cc2d71bfef7cb07ba4143fcffd8669f1b088435bd8422bc9980ffffff4c6ba7ee0a0a92aeb4f13c9978ffff", + "cborBytes": [ + 216, 102, 159, 27, 107, 167, 182, 53, 101, 56, 198, 130, 159, 66, 35, 235, 216, 102, 159, 27, 173, 110, 14, 80, + 34, 85, 92, 153, 159, 191, 27, 30, 155, 8, 26, 169, 18, 3, 69, 75, 176, 253, 153, 11, 19, 67, 162, 189, 135, 94, + 205, 27, 128, 93, 148, 225, 143, 5, 58, 117, 27, 125, 85, 215, 234, 187, 89, 243, 56, 27, 149, 29, 129, 203, 22, + 210, 16, 132, 27, 222, 141, 56, 221, 131, 23, 79, 124, 27, 238, 196, 110, 97, 72, 28, 194, 215, 27, 254, 247, 203, + 7, 186, 65, 67, 252, 255, 216, 102, 159, 27, 8, 132, 53, 189, 132, 34, 188, 153, 128, 255, 255, 255, 76, 107, 167, + 238, 10, 10, 146, 174, 180, 241, 60, 153, 120, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3348, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18269693526292445609" + }, + "fields": [] + }, + "cborHex": "d8669f1bfd8afd7715ea39a980ff", + "cborBytes": [216, 102, 159, 27, 253, 138, 253, 119, 21, 234, 57, 169, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3349, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11487197537964738297" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "31" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "616027202316220322" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14600780851643874358" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "754646262523796982" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aa" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3a51abab02" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "08392a0f29aef830" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1652906137695209293" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10400050635664123735" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1330174580773033727" + } + }, + { + "_tag": "ByteArray", + "bytearray": "274c" + }, + { + "_tag": "ByteArray", + "bytearray": "897728700003281e4eaddf" + }, + { + "_tag": "ByteArray", + "bytearray": "4c72f644fcd9bb0b0e9e1e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9559000892301477385" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16354134130764148929" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7e27682e3f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2e8a95dc63c8" + }, + { + "_tag": "ByteArray", + "bytearray": "adfa3ea28ad0" + } + ] + }, + "cborHex": "d8669f1b9f6ab94c8b2146f99f9f9f41311b088c917a060937a21bcaa064d3898efc361b0a790ac708ce9df641aaff453a51abab02bf4808392a0f29aef8301b16f04d5ff062c74dffd8669f1b905466f388d5e75780ffff9f9f1b1275babbd03b16ff42274c4b897728700003281e4eaddf4b4c72f644fcd9bb0b0e9e1e1b84a864aa71458609ffd8669f1be2f58e581149f0c180ff457e27682e3fff462e8a95dc63c846adfa3ea28ad0ffff", + "cborBytes": [ + 216, 102, 159, 27, 159, 106, 185, 76, 139, 33, 70, 249, 159, 159, 159, 65, 49, 27, 8, 140, 145, 122, 6, 9, 55, + 162, 27, 202, 160, 100, 211, 137, 142, 252, 54, 27, 10, 121, 10, 199, 8, 206, 157, 246, 65, 170, 255, 69, 58, 81, + 171, 171, 2, 191, 72, 8, 57, 42, 15, 41, 174, 248, 48, 27, 22, 240, 77, 95, 240, 98, 199, 77, 255, 216, 102, 159, + 27, 144, 84, 102, 243, 136, 213, 231, 87, 128, 255, 255, 159, 159, 27, 18, 117, 186, 187, 208, 59, 22, 255, 66, + 39, 76, 75, 137, 119, 40, 112, 0, 3, 40, 30, 78, 173, 223, 75, 76, 114, 246, 68, 252, 217, 187, 11, 14, 158, 30, + 27, 132, 168, 100, 170, 113, 69, 134, 9, 255, 216, 102, 159, 27, 226, 245, 142, 88, 17, 73, 240, 193, 128, 255, + 69, 126, 39, 104, 46, 63, 255, 70, 46, 138, 149, 220, 99, 200, 70, 173, 250, 62, 162, 138, 208, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3350, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17363201700585728140" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0e2b5ea31885d847dea267" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2060501085233785578" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02df7ff3f44ed0ad290e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12219636777285152293" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f40119c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "294792309127bd4a81233b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a62284f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc3342c368507c406d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0681437c36d221d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5929c27508c60e4ab291161" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9558517676320382397" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9660664719524137420" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a65656f511f7" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2dbf69eccb525d8ce349" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88c152c442b4196271700f88" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9684" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3760445640333873942" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dece922e16" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2082057273128242445" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8481280948870879443" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9fd8669f1bf0f67bf3d6dee88c9f4b0e2b5ea31885d847dea2671b1c985ed1ecaaaaeabf4a02df7ff3f44ed0ad290e1ba994dee812616e25445f40119c4b294792309127bd4a81233b449a62284f49cc3342c368507c406d48e0681437c36d221d41a24ce5929c27508c60e4ab2911611b84a6ad2ef45e5dbdff1b86119360c56289cc46a65656f511f7ffffbf4a2dbf69eccb525d8ce3494c88c152c442b4196271700f884296841b342fc962dd44531645dece922e161b1ce4f40f06d3cd0d41df1b75b3901655bc98d3ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 216, 102, 159, 27, 240, 246, 123, 243, 214, 222, + 232, 140, 159, 75, 14, 43, 94, 163, 24, 133, 216, 71, 222, 162, 103, 27, 28, 152, 94, 209, 236, 170, 170, 234, + 191, 74, 2, 223, 127, 243, 244, 78, 208, 173, 41, 14, 27, 169, 148, 222, 232, 18, 97, 110, 37, 68, 95, 64, 17, + 156, 75, 41, 71, 146, 48, 145, 39, 189, 74, 129, 35, 59, 68, 154, 98, 40, 79, 73, 204, 51, 66, 195, 104, 80, 124, + 64, 109, 72, 224, 104, 20, 55, 195, 109, 34, 29, 65, 162, 76, 229, 146, 156, 39, 80, 140, 96, 228, 171, 41, 17, + 97, 27, 132, 166, 173, 46, 244, 94, 93, 189, 255, 27, 134, 17, 147, 96, 197, 98, 137, 204, 70, 166, 86, 86, 245, + 17, 247, 255, 255, 191, 74, 45, 191, 105, 236, 203, 82, 93, 140, 227, 73, 76, 136, 193, 82, 196, 66, 180, 25, 98, + 113, 112, 15, 136, 66, 150, 132, 27, 52, 47, 201, 98, 221, 68, 83, 22, 69, 222, 206, 146, 46, 22, 27, 28, 228, + 244, 15, 6, 211, 205, 13, 65, 223, 27, 117, 179, 144, 22, 85, 188, 152, 211, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3351, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16909767737158998465" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1beaab902a47b919c19fa00980ffff", + "cborBytes": [216, 102, 159, 27, 234, 171, 144, 42, 71, 185, 25, 193, 159, 160, 9, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3352, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5209829655240213679" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10583638105705727115" + } + }, + { + "_tag": "ByteArray", + "bytearray": "024ff0" + } + ] + } + ] + }, + "cborHex": "d8669f1b484d0877f4e384af9f9f1b92e0a2c859e0c48b43024ff0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 72, 77, 8, 119, 244, 227, 132, 175, 159, 159, 27, 146, 224, 162, 200, 89, 224, 196, 139, 67, 2, + 79, 240, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3353, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10606209453360389364" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4" + } + } + ] + } + ] + }, + "cborHex": "d9050d9fbf1b9330d34dc0ef9cf441f4ffff", + "cborBytes": [217, 5, 13, 159, 191, 27, 147, 48, 211, 77, 192, 239, 156, 244, 65, 244, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3354, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5029789692787931316" + }, + "fields": [] + }, + "cborHex": "d8669f1b45cd67139d8bb8b480ff", + "cborBytes": [216, 102, 159, 27, 69, 205, 103, 19, 157, 139, 184, 180, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3355, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10232120328662930965" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17105021696174018414" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16538386574151205693" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e27eb2cfeae304" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "325110601509348168" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d905059f9fbf1b8dffcb3a1101d6151bed613e9b3bcd4f6e1be58426f70e5f433d47e27eb2cfeae304ff1b0483065e9bada348ffa0ff", + "cborBytes": [ + 217, 5, 5, 159, 159, 191, 27, 141, 255, 203, 58, 17, 1, 214, 21, 27, 237, 97, 62, 155, 59, 205, 79, 110, 27, 229, + 132, 38, 247, 14, 95, 67, 61, 71, 226, 126, 178, 207, 234, 227, 4, 255, 27, 4, 131, 6, 94, 155, 173, 163, 72, 255, + 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3356, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00f9fafcd202f8038304" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6386275883520474893" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ca32f26c49b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adbf60a6da28876abc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de68c3975aeae8fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0236" + } + } + ] + } + ] + }, + "cborHex": "d87a9fbf4a00f9fafcd202f80383041b58a09c1482e1bf0d463ca32f26c49b49adbf60a6da28876abc425c071bffffffffffffffeb48de68c3975aeae8fa420236ffff", + "cborBytes": [ + 216, 122, 159, 191, 74, 0, 249, 250, 252, 210, 2, 248, 3, 131, 4, 27, 88, 160, 156, 20, 130, 225, 191, 13, 70, 60, + 163, 47, 38, 196, 155, 73, 173, 191, 96, 166, 218, 40, 135, 106, 188, 66, 92, 7, 27, 255, 255, 255, 255, 255, 255, + 255, 235, 72, 222, 104, 195, 151, 90, 234, 232, 250, 66, 2, 54, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3357, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12672697516048452455" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b79049a4756d84" + }, + { + "_tag": "ByteArray", + "bytearray": "c6d84ecd8212afa92f6b9d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12644911099125358911" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6123162680698667226" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3a8acb8d4aa5288311" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "199668081643237091" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "99cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4617039370628130959" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05f23da0f4afd388" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14334303820005497707" + } + } + ] + } + ] + }, + "cborHex": "d905019f9fd8669f1bafde773f7e0b0b679f47b79049a4756d844bc6d84ecd8212afa92f6b9d1baf7bbfa627c2e13f1b54f9d80424f900da493a8acb8d4aa5288311ffff1b02c55d0ff7542ee3bf4299cb1b401304d87048688fff4805f23da0f4afd3881bc6edad60bdf3db6bffff", + "cborBytes": [ + 217, 5, 1, 159, 159, 216, 102, 159, 27, 175, 222, 119, 63, 126, 11, 11, 103, 159, 71, 183, 144, 73, 164, 117, 109, + 132, 75, 198, 216, 78, 205, 130, 18, 175, 169, 47, 107, 157, 27, 175, 123, 191, 166, 39, 194, 225, 63, 27, 84, + 249, 216, 4, 36, 249, 0, 218, 73, 58, 138, 203, 141, 74, 165, 40, 131, 17, 255, 255, 27, 2, 197, 93, 15, 247, 84, + 46, 227, 191, 66, 153, 203, 27, 64, 19, 4, 216, 112, 72, 104, 143, 255, 72, 5, 242, 61, 160, 244, 175, 211, 136, + 27, 198, 237, 173, 96, 189, 243, 219, 107, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3358, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14673277775207708666" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a55ec649cc4732d8d50c" + } + ] + }, + "cborHex": "d8669f1bcba1f464e9e3b7fa9f4aa55ec649cc4732d8d50cffff", + "cborBytes": [ + 216, 102, 159, 27, 203, 161, 244, 100, 233, 227, 183, 250, 159, 74, 165, 94, 198, 73, 204, 71, 50, 216, 213, 12, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3359, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4553167971280474388" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "232d057328" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15225521070372681524" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b08a199b72b71f659519" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4216884364226025916" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b857a4654f03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1397163781534815494" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10566904966660652055" + } + } + ] + }, + "cborHex": "d8669f1b3f301a256adbd1149fbf45232d0573281bd34beabec7c9f7344ab08a199b72b71f6595191b3a8561fcbc9759bc46b857a4654f031b1363b90e8b6c9506ffa080a01b92a53014d11e7c17ffff", + "cborBytes": [ + 216, 102, 159, 27, 63, 48, 26, 37, 106, 219, 209, 20, 159, 191, 69, 35, 45, 5, 115, 40, 27, 211, 75, 234, 190, + 199, 201, 247, 52, 74, 176, 138, 25, 155, 114, 183, 31, 101, 149, 25, 27, 58, 133, 97, 252, 188, 151, 89, 188, 70, + 184, 87, 164, 101, 79, 3, 27, 19, 99, 185, 14, 139, 108, 149, 6, 255, 160, 128, 160, 27, 146, 165, 48, 20, 209, + 30, 124, 23, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3360, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9223395129250498156" + }, + "fields": [] + }, + "cborHex": "d8669f1b800015009e0b466c80ff", + "cborBytes": [216, 102, 159, 27, 128, 0, 21, 0, 158, 11, 70, 108, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3361, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10316880220453010167" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4958563148677485899" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2882011077613501820" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e4fa9d4902" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5830832157327296673" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aa5365" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1751487559678742430" + } + }, + { + "_tag": "ByteArray", + "bytearray": "814edd70abf2e1" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "292dfd9323e7f0" + } + ] + } + ] + }, + "cborHex": "d87e9fd9050b9f9f1b8f2cebe63a5afaf71b44d05ae98143954b1b27fef5ce37e4bd7cff45e4fa9d49021b50eb46f43a6b08a19f43aa53651b184e88a7df2acf9e47814edd70abf2e1ff47292dfd9323e7f0ffff", + "cborBytes": [ + 216, 126, 159, 217, 5, 11, 159, 159, 27, 143, 44, 235, 230, 58, 90, 250, 247, 27, 68, 208, 90, 233, 129, 67, 149, + 75, 27, 39, 254, 245, 206, 55, 228, 189, 124, 255, 69, 228, 250, 157, 73, 2, 27, 80, 235, 70, 244, 58, 107, 8, + 161, 159, 67, 170, 83, 101, 27, 24, 78, 136, 167, 223, 42, 207, 158, 71, 129, 78, 221, 112, 171, 242, 225, 255, + 71, 41, 45, 253, 147, 35, 231, 240, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3362, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01fb04fa0406bd0b07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "271e01" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75574c46" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49fbf4901fb04fa0406bd0b0743271e0141624475574c46ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 191, 73, 1, 251, 4, 250, 4, 6, 189, 11, 7, 67, 39, + 30, 1, 65, 98, 68, 117, 87, 76, 70, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3363, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7385fcfb25" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f457385fcfb25ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 69, 115, 133, 252, 251, 37, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3364, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6421937928781096964" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "491011" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13807777601143552740" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1939951582024026811" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1894177260200565084" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "75020100000700" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d2e0b6e4129dc173d8d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11263801376782563839" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "515c71f7ef8b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "478c990375" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "725bc837c930a3605406b7d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cea1e05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dac2cc40" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b591f4e85769ae8049f434910111bbf9f14924dc1bae4d87b9f9f1b1aec17af7fffcabbffd8669f1b1a49782eafe0995c80ffff9f4775020100000700ffbf4a1d2e0b6e4129dc173d8d1b9c510fac8bae39ff46515c71f7ef8b45478c9903754c725bc837c930a3605406b7d00c449cea1e050544dac2cc401bfffffffffffffff1ffffff", + "cborBytes": [ + 216, 102, 159, 27, 89, 31, 78, 133, 118, 154, 232, 4, 159, 67, 73, 16, 17, 27, 191, 159, 20, 146, 77, 193, 186, + 228, 216, 123, 159, 159, 27, 26, 236, 23, 175, 127, 255, 202, 187, 255, 216, 102, 159, 27, 26, 73, 120, 46, 175, + 224, 153, 92, 128, 255, 255, 159, 71, 117, 2, 1, 0, 0, 7, 0, 255, 191, 74, 29, 46, 11, 110, 65, 41, 220, 23, 61, + 141, 27, 156, 81, 15, 172, 139, 174, 57, 255, 70, 81, 92, 113, 247, 239, 139, 69, 71, 140, 153, 3, 117, 76, 114, + 91, 200, 55, 201, 48, 163, 96, 84, 6, 183, 208, 12, 68, 156, 234, 30, 5, 5, 68, 218, 194, 204, 64, 27, 255, 255, + 255, 255, 255, 255, 255, 241, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3365, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2785193724891444789" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11216514346450982295" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fca8e76292a85be7" + } + ] + } + ] + }, + "cborHex": "d87e9f80d8669f1b26a6feefaacd36359fd8669f1b9ba9105ed648959780ff48fca8e76292a85be7ffffff", + "cborBytes": [ + 216, 126, 159, 128, 216, 102, 159, 27, 38, 166, 254, 239, 170, 205, 54, 53, 159, 216, 102, 159, 27, 155, 169, 16, + 94, 214, 72, 149, 151, 128, 255, 72, 252, 168, 231, 98, 146, 168, 91, 231, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3366, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ee0c63872b9f4067beeb3bb3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12018654818964997611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17913885478145013172" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "393721737899002345" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df0d0d8033bbf6858026" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8861155111516725890" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5041608869109124567" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccd939df168e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13724446910762489850" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87c9f4cee0c63872b9f4067beeb3bb39fd8669f1ba6cad6e15a7205eb9f1bf89ae7ee37dcb5b4ffffbf1b0576c7d5a7d1c9e94adf0d0d8033bbf68580261b7af925a0219762821b45f7648e0bb54dd746ccd939df168e1bbe7707c006b497faffffff", + "cborBytes": [ + 216, 124, 159, 76, 238, 12, 99, 135, 43, 159, 64, 103, 190, 235, 59, 179, 159, 216, 102, 159, 27, 166, 202, 214, + 225, 90, 114, 5, 235, 159, 27, 248, 154, 231, 238, 55, 220, 181, 180, 255, 255, 191, 27, 5, 118, 199, 213, 167, + 209, 201, 233, 74, 223, 13, 13, 128, 51, 187, 246, 133, 128, 38, 27, 122, 249, 37, 160, 33, 151, 98, 130, 27, 69, + 247, 100, 142, 11, 181, 77, 215, 70, 204, 217, 57, 223, 22, 142, 27, 190, 119, 7, 192, 6, 180, 151, 250, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3367, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4850205141724770660" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b434f63e1004731649f80ffff", + "cborBytes": [216, 102, 159, 27, 67, 79, 99, 225, 0, 71, 49, 100, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3368, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "648536373146939081" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16846728150618039831" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14262370442642104635" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c5464f3a0c04f3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15859748772642310976" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3259637791200836206" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "95028f648540" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1022602862387592626" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bef5d7ab023ad9485d91" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2043153228324810586" + } + } + ] + } + ] + }, + "cborHex": "d905009fd8669f1b090010653157eec99f9f1be9cb99fec52966171bc5ee1e5a30b6a13b47c5464f3a0c04f31bdc19257aec484b401b2d3c8f4d00f6fa6eff9f4695028f6485401b0e3103e2a6e8fdb24abef5d7ab023ad9485d91ff1b1c5abd093bfe2f5affffff", + "cborBytes": [ + 217, 5, 0, 159, 216, 102, 159, 27, 9, 0, 16, 101, 49, 87, 238, 201, 159, 159, 27, 233, 203, 153, 254, 197, 41, + 102, 23, 27, 197, 238, 30, 90, 48, 182, 161, 59, 71, 197, 70, 79, 58, 12, 4, 243, 27, 220, 25, 37, 122, 236, 72, + 75, 64, 27, 45, 60, 143, 77, 0, 246, 250, 110, 255, 159, 70, 149, 2, 143, 100, 133, 64, 27, 14, 49, 3, 226, 166, + 232, 253, 178, 74, 190, 245, 215, 171, 2, 58, 217, 72, 93, 145, 255, 27, 28, 90, 189, 9, 59, 254, 47, 90, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3369, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4203849073972951735" + }, + "fields": [] + }, + "cborHex": "d8669f1b3a571275b7833ab780ff", + "cborBytes": [216, 102, 159, 27, 58, 87, 18, 117, 183, 131, 58, 183, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3370, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15973354784953595348" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b023c1e1ffee9c75e60f89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b55" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bddacc18be471f5d49fbf4bb023c1e1ffee9c75e60f89426b55ffffff", + "cborBytes": [ + 216, 102, 159, 27, 221, 172, 193, 139, 228, 113, 245, 212, 159, 191, 75, 176, 35, 193, 225, 255, 238, 156, 117, + 230, 15, 137, 66, 107, 85, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3371, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4320533229154013510" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5893375263421424630" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17610004274146514793" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7586dcddc8f6f593" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5294e1ad964ba2ac7f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "962815963a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3878267344061160499" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18374383320325955491" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39fbf1b3bf59e14abff11461b51c97993e04ee3f61bf4634d95e59d176942b6bb487586dcddc8f6f593495294e1ad964ba2ac7f45962815963a1b35d25f99fac35c33ff1bfefeec4736e41fa3ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 191, 27, 59, 245, 158, 20, 171, 255, 17, 70, 27, + 81, 201, 121, 147, 224, 78, 227, 246, 27, 244, 99, 77, 149, 229, 157, 23, 105, 66, 182, 187, 72, 117, 134, 220, + 221, 200, 246, 245, 147, 73, 82, 148, 225, 173, 150, 75, 162, 172, 127, 69, 150, 40, 21, 150, 58, 27, 53, 210, 95, + 153, 250, 195, 92, 51, 255, 27, 254, 254, 236, 71, 54, 228, 31, 163, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3372, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17379150233068831802" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + }, + "cborHex": "d8669f1bf12f250eec37043a9f09ffff", + "cborBytes": [216, 102, 159, 27, 241, 47, 37, 14, 236, 55, 4, 58, 159, 9, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3373, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "230164135616800394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2937208275201774816" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "542003288776738166" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "357450197967753640" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1389051771760449548" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3595353253823303869" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2063602105959866839" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5f6bce1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3009690834709570492" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10883484515990632259" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4578291268968305179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4388438018183194399" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6333342979830164567" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6331c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7472206157506419521" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d30e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea60f7851d810e" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3323156839585727428" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5856382592378297242" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f9" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3927964609466918504" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ebc" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15536403718300901143" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "42e337058ea1612061f462ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16607912120199591369" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ff0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f9e57" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "691a7b68" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "265318867a03e33248b1fe" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39fbf1b0331b50fd779668a1b28c30f5d42bd54e01b0785951e96a185761b04f5eb0faac2d1a81b1346e73a1668980c1b31e542bc402ed0bd1b1ca3632e937c61d744a5f6bce11b29c491de3e9ce3bc1b9709e7810e15f7431b3f895ba6fd20d21b1b3ce6dd2068a0e71fff9f1b57e48de2797dac5780bf436331c01b67b29be92aa81b4142d30e47ea60f7851d810effd8669f1b2e1e3989ec6ac3c49f1b51460cf0777d5b9a41f9ffffbf1b3682ef004594e668424ebcffffd8669f1bd79c64ddcc621f1780ffbf4c42e337058ea1612061f462ec1be67b2814b166b5c9424ff0431f9e5744691a7b684b265318867a03e33248b1feffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 191, 27, 3, 49, 181, 15, 215, 121, 102, 138, 27, + 40, 195, 15, 93, 66, 189, 84, 224, 27, 7, 133, 149, 30, 150, 161, 133, 118, 27, 4, 245, 235, 15, 170, 194, 209, + 168, 27, 19, 70, 231, 58, 22, 104, 152, 12, 27, 49, 229, 66, 188, 64, 46, 208, 189, 27, 28, 163, 99, 46, 147, 124, + 97, 215, 68, 165, 246, 188, 225, 27, 41, 196, 145, 222, 62, 156, 227, 188, 27, 151, 9, 231, 129, 14, 21, 247, 67, + 27, 63, 137, 91, 166, 253, 32, 210, 27, 27, 60, 230, 221, 32, 104, 160, 231, 31, 255, 159, 27, 87, 228, 141, 226, + 121, 125, 172, 87, 128, 191, 67, 99, 49, 192, 27, 103, 178, 155, 233, 42, 168, 27, 65, 66, 211, 14, 71, 234, 96, + 247, 133, 29, 129, 14, 255, 216, 102, 159, 27, 46, 30, 57, 137, 236, 106, 195, 196, 159, 27, 81, 70, 12, 240, 119, + 125, 91, 154, 65, 249, 255, 255, 191, 27, 54, 130, 239, 0, 69, 148, 230, 104, 66, 78, 188, 255, 255, 216, 102, + 159, 27, 215, 156, 100, 221, 204, 98, 31, 23, 128, 255, 191, 76, 66, 227, 55, 5, 142, 161, 97, 32, 97, 244, 98, + 236, 27, 230, 123, 40, 20, 177, 102, 181, 201, 66, 79, 240, 67, 31, 158, 87, 68, 105, 26, 123, 104, 75, 38, 83, + 24, 134, 122, 3, 227, 50, 72, 177, 254, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3374, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10081060649087256476" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5153121813928101089" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a9fb2ae242ef0ca7df" + } + ] + } + ] + }, + "cborHex": "d8669f1b8be71f3fa403c79c9fd8669f1b478390fcc38044e19f49a9fb2ae242ef0ca7dfffffffff", + "cborBytes": [ + 216, 102, 159, 27, 139, 231, 31, 63, 164, 3, 199, 156, 159, 216, 102, 159, 27, 71, 131, 144, 252, 195, 128, 68, + 225, 159, 73, 169, 251, 42, 226, 66, 239, 12, 167, 223, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3375, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ca0400a141011400fd06" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8320953761868964079" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17459794329237879890" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1245189981695190237" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13004238662100431426" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b8cec691315540856c3d51" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14764999817592012270" + } + } + ] + } + ] + }, + "cborHex": "d9050b9f4aca0400a141011400fd06d8669f1b7379f75c30a660ef9f1bf24da66fbd9a7c52d8669f1b1147cdb0e8d124dd9f051bfffffffffffffff11bb4785629ece5b242ffff4bb8cec691315540856c3d511bfffffffffffffff61bcce7d11b14477deeffffff", + "cborBytes": [ + 217, 5, 11, 159, 74, 202, 4, 0, 161, 65, 1, 20, 0, 253, 6, 216, 102, 159, 27, 115, 121, 247, 92, 48, 166, 96, 239, + 159, 27, 242, 77, 166, 111, 189, 154, 124, 82, 216, 102, 159, 27, 17, 71, 205, 176, 232, 209, 36, 221, 159, 5, 27, + 255, 255, 255, 255, 255, 255, 255, 241, 27, 180, 120, 86, 41, 236, 229, 178, 66, 255, 255, 75, 184, 206, 198, 145, + 49, 85, 64, 133, 108, 61, 81, 27, 255, 255, 255, 255, 255, 255, 255, 246, 27, 204, 231, 209, 27, 20, 71, 125, 238, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3376, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2623132065597082127" + }, + "fields": [] + }, + "cborHex": "d8669f1b24673cb738d9ca0f80ff", + "cborBytes": [216, 102, 159, 27, 36, 103, 60, 183, 56, 217, 202, 15, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3377, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15061601202164336996" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa1c841cc302" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9381077275295952633" + } + }, + { + "_tag": "ByteArray", + "bytearray": "557c72" + }, + { + "_tag": "ByteArray", + "bytearray": "e001f29486ec0d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17094343873350111940" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bb75dfe888406abc0ea9ea1a" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16220677609458976190" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11000136816608311752" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15118950928936403340" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d9050d9fd8669f1bd1058e7e5b9a09649f46fa1c841cc3029f1b823048142c812ef943557c7247e001f29486ec0d1bed3b4f2edf6892c44cbb75dfe888406abc0ea9ea1affffff1be11b6c584fef45be9f801b98a856274aa279c8ff1bd1d14dc427d1018c80ff", + "cborBytes": [ + 217, 5, 13, 159, 216, 102, 159, 27, 209, 5, 142, 126, 91, 154, 9, 100, 159, 70, 250, 28, 132, 28, 195, 2, 159, 27, + 130, 48, 72, 20, 44, 129, 46, 249, 67, 85, 124, 114, 71, 224, 1, 242, 148, 134, 236, 13, 27, 237, 59, 79, 46, 223, + 104, 146, 196, 76, 187, 117, 223, 232, 136, 64, 106, 188, 14, 169, 234, 26, 255, 255, 255, 27, 225, 27, 108, 88, + 79, 239, 69, 190, 159, 128, 27, 152, 168, 86, 39, 74, 162, 121, 200, 255, 27, 209, 209, 77, 196, 39, 209, 1, 140, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3378, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "545512514598711594" + }, + "fields": [] + }, + "cborHex": "d8669f1b07920cbde52fb12a80ff", + "cborBytes": [216, 102, 159, 27, 7, 146, 12, 189, 229, 47, 177, 42, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3379, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11870337275150973107" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21389d347f4c98b223" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "061bd9e996cf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "373559daca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d75170" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a7c38202" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4516980366976170286" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11457812967482288729" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10405610920094634938" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10187043037823486413" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15532597972675023763" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8459b6e9cbf9a8f1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6927475928220979074" + } + }, + { + "_tag": "ByteArray", + "bytearray": "52557cc8487438a99827a156" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "66c1" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1ba4bbe8dc2973b8b39fbf4921389d347f4c98b22346061bd9e996cf45373559daca43d75170ff9f44a7c382029f1b3eaf89b63707392e1b9f02543015a56a591b90682800232a93ba1b8d5fa5ab6d15c9cd1bd78edf8f983f5393ff488459b6e9cbf9a8f11b602356a743ae4f824c52557cc8487438a99827a156ffa00c9f809f4266c1ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 164, 187, 232, 220, 41, 115, 184, 179, 159, 191, 73, 33, 56, 157, 52, 127, 76, 152, 178, 35, + 70, 6, 27, 217, 233, 150, 207, 69, 55, 53, 89, 218, 202, 67, 215, 81, 112, 255, 159, 68, 167, 195, 130, 2, 159, + 27, 62, 175, 137, 182, 55, 7, 57, 46, 27, 159, 2, 84, 48, 21, 165, 106, 89, 27, 144, 104, 40, 0, 35, 42, 147, 186, + 27, 141, 95, 165, 171, 109, 21, 201, 205, 27, 215, 142, 223, 143, 152, 63, 83, 147, 255, 72, 132, 89, 182, 233, + 203, 249, 168, 241, 27, 96, 35, 86, 167, 67, 174, 79, 130, 76, 82, 85, 124, 200, 72, 116, 56, 169, 152, 39, 161, + 86, 255, 160, 12, 159, 128, 159, 66, 102, 193, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3380, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4681" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18050104004495303926" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4976451550356603344" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9819636765942483975" + } + }, + { + "_tag": "ByteArray", + "bytearray": "61" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7921893955579378725" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1735250991644183089" + } + }, + { + "_tag": "ByteArray", + "bytearray": "975d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "37492529021234962" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6375605955394154466" + } + } + ] + }, + "cborHex": "d905079f424681d8669f1bfa7ed9f562cc64f69fd8669f1b450fe85194f281d09f1b88465b9ca95e0c0741611b6df03894a29f7c251b1814d99549188a3142975dffff1b00853341aa0aaf12ffff801b587ab3d647222fe2ff", + "cborBytes": [ + 217, 5, 7, 159, 66, 70, 129, 216, 102, 159, 27, 250, 126, 217, 245, 98, 204, 100, 246, 159, 216, 102, 159, 27, 69, + 15, 232, 81, 148, 242, 129, 208, 159, 27, 136, 70, 91, 156, 169, 94, 12, 7, 65, 97, 27, 109, 240, 56, 148, 162, + 159, 124, 37, 27, 24, 20, 217, 149, 73, 24, 138, 49, 66, 151, 93, 255, 255, 27, 0, 133, 51, 65, 170, 10, 175, 18, + 255, 255, 128, 27, 88, 122, 179, 214, 71, 34, 47, 226, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3381, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2709335949714478407" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f91fcb1dac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8864695905086320836" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10883052627933447608" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12559781025177958691" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f97fcb331528debc37cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4223700567024654890" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "da4bbfde06beccd4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14611801183627356371" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15453673325876669646" + } + }, + { + "_tag": "ByteArray", + "bytearray": "729c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3909937725358253726" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13025660130683483216" + } + }, + { + "_tag": "ByteArray", + "bytearray": "075141dab7eefca01a560d" + }, + { + "_tag": "ByteArray", + "bytearray": "d2dbdc9c58814839886abe" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8259255481152160584" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9156778105198382531" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16586814563416307744" + } + }, + { + "_tag": "ByteArray", + "bytearray": "071947146389bf210b5bc2cf" + }, + { + "_tag": "ByteArray", + "bytearray": "6d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10130499901859830295" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f1bfffffffffffffffc9fbf1b25997eb10bed554745f91fcb1dac1b7b05b9f56087b0c41b97085eb447dac5b81bae4d4e4c3e6c792342c5e84af97fcb331528debc37cc1b3a9d99499f1eda2aff48da4bbfde06beccd49f1bcac78bc286bda8d31bd6767a0347ceecce42729cffd8669f1b3642e3a53de0a69e9f1bb4c470e03e5b74504b075141dab7eefca01a560d4bd2dbdc9c58814839886abeffffd8669f1b729ec519c745c3489f1b7f13692c076c8dc31be63033f6f7b478204c071947146389bf210b5bc2cf416d1b8c96c3fcaf7c1a17ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, + 191, 27, 37, 153, 126, 177, 11, 237, 85, 71, 69, 249, 31, 203, 29, 172, 27, 123, 5, 185, 245, 96, 135, 176, 196, + 27, 151, 8, 94, 180, 71, 218, 197, 184, 27, 174, 77, 78, 76, 62, 108, 121, 35, 66, 197, 232, 74, 249, 127, 203, + 51, 21, 40, 222, 188, 55, 204, 27, 58, 157, 153, 73, 159, 30, 218, 42, 255, 72, 218, 75, 191, 222, 6, 190, 204, + 212, 159, 27, 202, 199, 139, 194, 134, 189, 168, 211, 27, 214, 118, 122, 3, 71, 206, 236, 206, 66, 114, 156, 255, + 216, 102, 159, 27, 54, 66, 227, 165, 61, 224, 166, 158, 159, 27, 180, 196, 112, 224, 62, 91, 116, 80, 75, 7, 81, + 65, 218, 183, 238, 252, 160, 26, 86, 13, 75, 210, 219, 220, 156, 88, 129, 72, 57, 136, 106, 190, 255, 255, 216, + 102, 159, 27, 114, 158, 197, 25, 199, 69, 195, 72, 159, 27, 127, 19, 105, 44, 7, 108, 141, 195, 27, 230, 48, 51, + 246, 247, 180, 120, 32, 76, 7, 25, 71, 20, 99, 137, 191, 33, 11, 91, 194, 207, 65, 109, 27, 140, 150, 195, 252, + 175, 124, 26, 23, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3382, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cce007066a5407" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a" + }, + { + "_tag": "ByteArray", + "bytearray": "f790b8c5165d2b9de7375afd" + } + ] + } + ] + }, + "cborHex": "d905069f47cce007066a54079f419a4cf790b8c5165d2b9de7375afdffff", + "cborBytes": [ + 217, 5, 6, 159, 71, 204, 224, 7, 6, 106, 84, 7, 159, 65, 154, 76, 247, 144, 184, 197, 22, 93, 43, 157, 231, 55, + 90, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3383, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12531865125384261112" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2766115733154822801" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19f1badea20ef53a28df8d8669f1b2663379a924ffa9180ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 27, 173, 234, 32, 239, 83, 162, 141, 248, 216, + 102, 159, 27, 38, 99, 55, 154, 146, 79, 250, 145, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3384, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "108874510443632726" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b0182ccca581658569fd8669f1bfffffffffffffffd80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 1, 130, 204, 202, 88, 22, 88, 86, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 253, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3385, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2533475707138854522" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2359ee582bd264ca69dbbc41" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6500051846700619752" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b3ca2b69faac1690a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f1e06fcfcb35bad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6832efb7b16dd3885b722a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4402273346160528843" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcdf2b26ae9e421c859fe9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1621612629894892853" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2328b6bb9317ce7a9f80bf4c2359ee582bd264ca69dbbc411b5a34d2b7403657e8493b3ca2b69faac1690a487f1e06fcfcb35bad4b6832efb7b16dd3885b722a1b3d180448ba118dcb4bdcdf2b26ae9e421c859fe91b16812018602c0d35ffffff", + "cborBytes": [ + 216, 102, 159, 27, 35, 40, 182, 187, 147, 23, 206, 122, 159, 128, 191, 76, 35, 89, 238, 88, 43, 210, 100, 202, + 105, 219, 188, 65, 27, 90, 52, 210, 183, 64, 54, 87, 232, 73, 59, 60, 162, 182, 159, 170, 193, 105, 10, 72, 127, + 30, 6, 252, 252, 179, 91, 173, 75, 104, 50, 239, 183, 177, 109, 211, 136, 91, 114, 42, 27, 61, 24, 4, 72, 186, 17, + 141, 203, 75, 220, 223, 43, 38, 174, 158, 66, 28, 133, 159, 233, 27, 22, 129, 32, 24, 96, 44, 13, 53, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3386, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17243674829337939067" + }, + "fields": [] + }, + "cborHex": "d8669f1bef4dd6e579084c7b80ff", + "cborBytes": [216, 102, 159, 27, 239, 77, 214, 229, 121, 8, 76, 123, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3387, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10902469495314032788" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6750288268577945020" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7809602331055579921" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16032521785981596808" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17995093040743331153" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14963863252570652432" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ca" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11709589392551832873" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11559602496809643198" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff28e3b58e10fd15" + }, + { + "_tag": "ByteArray", + "bytearray": "d241e1fb7f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "835354987501090097" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8121425747214547884" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2367713919041681242" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15740929634585291985" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3630955293031532600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e393562efc637ca9ddb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9327348266938044493" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96035870" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10945619343157287912" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16833834415270070579" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13852025874324342746" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8143325779751317877" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6861b2266f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "96a46887c551e4be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5551772682657274645" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "14b553bb55a5b0dea2cb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17597437196164647078" + } + } + ] + }, + "cborHex": "d8669f1b974d5a3e02b9a8949fd8669f1b5dadd76a6c1335bc9fd8669f1b6c6147f16ba1631180ffd8669f1bde7ef59ed324f4889f1bf9bb69c7499c35511bcfaa5258a4febf10ffff41caffff1ba280d18330bbed299f9f1ba06bf539b70eacbe48ff28e3b58e10fd1545d241e1fb7fffbf1b0b97c6ef6b5a75311b70b519b01c6f3bac1b20dbcf43c23a375a1bda73041a87e02cd11b3263be99f47808384a8e393562efc637ca9ddb1b817165d49332904d44960358701b97e6a6ccdb88dbe81be99dcb3611eb09331bc03c48243a9f47da1b7102e7a6c85bb175ff456861b2266f9f4896a46887c551e4be1b4d0bdbd71f811b15ffff4a14b553bb55a5b0dea2cb1bf436a7e50aa3c8a6ffff", + "cborBytes": [ + 216, 102, 159, 27, 151, 77, 90, 62, 2, 185, 168, 148, 159, 216, 102, 159, 27, 93, 173, 215, 106, 108, 19, 53, 188, + 159, 216, 102, 159, 27, 108, 97, 71, 241, 107, 161, 99, 17, 128, 255, 216, 102, 159, 27, 222, 126, 245, 158, 211, + 36, 244, 136, 159, 27, 249, 187, 105, 199, 73, 156, 53, 81, 27, 207, 170, 82, 88, 164, 254, 191, 16, 255, 255, 65, + 202, 255, 255, 27, 162, 128, 209, 131, 48, 187, 237, 41, 159, 159, 27, 160, 107, 245, 57, 183, 14, 172, 190, 72, + 255, 40, 227, 181, 142, 16, 253, 21, 69, 210, 65, 225, 251, 127, 255, 191, 27, 11, 151, 198, 239, 107, 90, 117, + 49, 27, 112, 181, 25, 176, 28, 111, 59, 172, 27, 32, 219, 207, 67, 194, 58, 55, 90, 27, 218, 115, 4, 26, 135, 224, + 44, 209, 27, 50, 99, 190, 153, 244, 120, 8, 56, 74, 142, 57, 53, 98, 239, 198, 55, 202, 157, 219, 27, 129, 113, + 101, 212, 147, 50, 144, 77, 68, 150, 3, 88, 112, 27, 151, 230, 166, 204, 219, 136, 219, 232, 27, 233, 157, 203, + 54, 17, 235, 9, 51, 27, 192, 60, 72, 36, 58, 159, 71, 218, 27, 113, 2, 231, 166, 200, 91, 177, 117, 255, 69, 104, + 97, 178, 38, 111, 159, 72, 150, 164, 104, 135, 197, 81, 228, 190, 27, 77, 11, 219, 215, 31, 129, 27, 21, 255, 255, + 74, 20, 181, 83, 187, 85, 165, 176, 222, 162, 203, 27, 244, 54, 167, 229, 10, 163, 200, 166, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3388, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17871952266494746853" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5745898196577668472" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18220374298144653439" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f83b60" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7f9d44836121" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eded666a42aa78683dbf" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2501530446461749963" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14730084588053390588" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5018313005392594721" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6322659068359333646" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3573332090776536698" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2433713259477542711" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18313464559475651275" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4848508223724200463" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "da" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15614605789002273556" + } + }, + { + "_tag": "ByteArray", + "bytearray": "578a66af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13614193590190112460" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "25ab0a4fb10b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0163d352c2968a34853c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "696be4121038eb64bc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6424688850384141618" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ead6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfcbb25ec9" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e50c964e274bfbc9ee9d" + } + ] + }, + "cborHex": "d905069fbf1bf805ede58f2820e51b4fbd87f77a91cd781bfcdbc5e37391c07f43f83b60ff467f9d448361219f4aeded666a42aa78683dbf9f1b22b738aff82d4acb1bcc6bc5e3b660e4fc1b45a4a1171a260721ff9f1b57be98ec7d75d70e1b3197069aaf3d467a1b21c64950ac5127371bfe267efcea4072cb1b43495c8a7da4220fff9f41da1bd8b2393c413d131444578a66af1bbcef54f06eae7eccffbf4625ab0a4fb10b4a0163d352c2968a34853c49696be4121038eb64bc1b592914784f8f3d3242ead645dfcbb25ec9ffff4ae50c964e274bfbc9ee9dff", + "cborBytes": [ + 217, 5, 6, 159, 191, 27, 248, 5, 237, 229, 143, 40, 32, 229, 27, 79, 189, 135, 247, 122, 145, 205, 120, 27, 252, + 219, 197, 227, 115, 145, 192, 127, 67, 248, 59, 96, 255, 70, 127, 157, 68, 131, 97, 33, 159, 74, 237, 237, 102, + 106, 66, 170, 120, 104, 61, 191, 159, 27, 34, 183, 56, 175, 248, 45, 74, 203, 27, 204, 107, 197, 227, 182, 96, + 228, 252, 27, 69, 164, 161, 23, 26, 38, 7, 33, 255, 159, 27, 87, 190, 152, 236, 125, 117, 215, 14, 27, 49, 151, 6, + 154, 175, 61, 70, 122, 27, 33, 198, 73, 80, 172, 81, 39, 55, 27, 254, 38, 126, 252, 234, 64, 114, 203, 27, 67, 73, + 92, 138, 125, 164, 34, 15, 255, 159, 65, 218, 27, 216, 178, 57, 60, 65, 61, 19, 20, 68, 87, 138, 102, 175, 27, + 188, 239, 84, 240, 110, 174, 126, 204, 255, 191, 70, 37, 171, 10, 79, 177, 11, 74, 1, 99, 211, 82, 194, 150, 138, + 52, 133, 60, 73, 105, 107, 228, 18, 16, 56, 235, 100, 188, 27, 89, 41, 20, 120, 79, 143, 61, 50, 66, 234, 214, 69, + 223, 203, 178, 94, 201, 255, 255, 74, 229, 12, 150, 78, 39, 75, 251, 201, 238, 157, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3389, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8271709092706353423" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10358346307583938916" + } + } + ] + }, + "cborHex": "d9050d9f1b72cb03982c21810f1b8fc03d15fc051164ff", + "cborBytes": [217, 5, 13, 159, 27, 114, 203, 3, 152, 44, 33, 129, 15, 27, 143, 192, 61, 21, 252, 5, 17, 100, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3390, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2934518624294842992" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9bf7" + } + ] + }, + "cborHex": "d8669f1b28b981241bdcb2709f429bf7ffff", + "cborBytes": [216, 102, 159, 27, 40, 185, 129, 36, 27, 220, 178, 112, 159, 66, 155, 247, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3391, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12935735555958894881" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f80d8669f1bb384f6f3a151f12180ff1bffffffffffffffedffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 128, 216, 102, 159, 27, 179, 132, 246, 243, 161, + 81, 241, 33, 128, 255, 27, 255, 255, 255, 255, 255, 255, 255, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3392, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16466902053369841598" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1be486302c124287be9fa0ffff", + "cborBytes": [216, 102, 159, 27, 228, 134, 48, 44, 18, 66, 135, 190, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3393, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18007165746264500090" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75d92b8741d5b0e5" + }, + { + "_tag": "ByteArray", + "bytearray": "54216fdb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8939913828072880855" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f7c5f0727fde39" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2701139244985545901" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a9a33d82e5c7f036" + } + ] + } + ] + } + ] + }, + "cborHex": "d905079fd8669f1bfffffffffffffff79fa09f1bf9e64dd715ad677a4875d92b8741d5b0e54454216fdb1b7c10f442cce2fad747f7c5f0727fde39ff1b257c5fd5023af4add87f9f48a9a33d82e5c7f036ffffffff", + "cborBytes": [ + 217, 5, 7, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 160, 159, 27, 249, 230, 77, 215, + 21, 173, 103, 122, 72, 117, 217, 43, 135, 65, 213, 176, 229, 68, 84, 33, 111, 219, 27, 124, 16, 244, 66, 204, 226, + 250, 215, 71, 247, 197, 240, 114, 127, 222, 57, 255, 27, 37, 124, 95, 213, 2, 58, 244, 173, 216, 127, 159, 72, + 169, 163, 61, 130, 229, 199, 240, 54, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3394, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18243403775580011579" + }, + "fields": [] + }, + "cborHex": "d8669f1bfd2d971381777c3b80ff", + "cborBytes": [216, 102, 159, 27, 253, 45, 151, 19, 129, 119, 124, 59, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3395, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12966377010363193641" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "11c9134a1c34dbc83b7b09" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1176963731456576604" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8f18feec" + }, + { + "_tag": "ByteArray", + "bytearray": "6a6b7fa5adaf32c6" + }, + { + "_tag": "ByteArray", + "bytearray": "725719df" + }, + { + "_tag": "ByteArray", + "bytearray": "9e11661e46ba202f99cd" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "70dfd3bb1f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a131d44cce8a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13234213724292884365" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10008054810248665866" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6173295638247867341" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18094075057675983916" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b6" + }, + { + "_tag": "ByteArray", + "bytearray": "d57887195fc72bea238d4d7e" + }, + { + "_tag": "ByteArray", + "bytearray": "b905fee441" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "776203634757691472" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3d002bd89a01df1015" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7079171876350748725" + } + } + ] + }, + "cborHex": "d8799fd8669f1bb3f1d3312e7d59299f9f4b11c9134a1c34dbc83b7b091b10556a4726fccc5cff9f448f18feec486a6b7fa5adaf32c644725719df4a9e11661e46ba202f99cdff804570dfd3bb1f9f46a131d44cce8a1bb7a95f43ae13a78dffffffd8669f1b8ae3c0d33182db0a9fd8669f1b55abf3aceb3b83cd80ff1bfb1b116600085c2c9f41b64cd57887195fc72bea238d4d7e45b905fee441ffd8669f1b0ac5a117e319685080ffffff493d002bd89a01df10151b623e455081d26835ff", + "cborBytes": [ + 216, 121, 159, 216, 102, 159, 27, 179, 241, 211, 49, 46, 125, 89, 41, 159, 159, 75, 17, 201, 19, 74, 28, 52, 219, + 200, 59, 123, 9, 27, 16, 85, 106, 71, 38, 252, 204, 92, 255, 159, 68, 143, 24, 254, 236, 72, 106, 107, 127, 165, + 173, 175, 50, 198, 68, 114, 87, 25, 223, 74, 158, 17, 102, 30, 70, 186, 32, 47, 153, 205, 255, 128, 69, 112, 223, + 211, 187, 31, 159, 70, 161, 49, 212, 76, 206, 138, 27, 183, 169, 95, 67, 174, 19, 167, 141, 255, 255, 255, 216, + 102, 159, 27, 138, 227, 192, 211, 49, 130, 219, 10, 159, 216, 102, 159, 27, 85, 171, 243, 172, 235, 59, 131, 205, + 128, 255, 27, 251, 27, 17, 102, 0, 8, 92, 44, 159, 65, 182, 76, 213, 120, 135, 25, 95, 199, 43, 234, 35, 141, 77, + 126, 69, 185, 5, 254, 228, 65, 255, 216, 102, 159, 27, 10, 197, 161, 23, 227, 25, 104, 80, 128, 255, 255, 255, 73, + 61, 0, 43, 216, 154, 1, 223, 16, 21, 27, 98, 62, 69, 80, 129, 210, 104, 53, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3396, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fe00a9322007a490" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f48fe00a9322007a490ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 72, 254, 0, 169, 50, 32, 7, 164, 144, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3397, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16822882840504032132" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "728429614781596492" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10556220045805279810" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f9a3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14079980851486954669" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "662573899409921575" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1f" + }, + { + "_tag": "ByteArray", + "bytearray": "e9a9c69b7288a657087091" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16398829267117575436" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10609191567044851116" + } + } + ] + } + ] + }, + "cborHex": "d8669f1be976e2cfde41db849fd8669f1b0a1be6e010ee834c9fd8669f1b927f3a33d114da4280ff42f9a3d8669f1bc36623fc492e94ad9f1b0931ef7377c61627411f4be9a9c69b7288a6570870911be39458556ed28d0cffff1b933b6b8533c735acffffffff", + "cborBytes": [ + 216, 102, 159, 27, 233, 118, 226, 207, 222, 65, 219, 132, 159, 216, 102, 159, 27, 10, 27, 230, 224, 16, 238, 131, + 76, 159, 216, 102, 159, 27, 146, 127, 58, 51, 209, 20, 218, 66, 128, 255, 66, 249, 163, 216, 102, 159, 27, 195, + 102, 35, 252, 73, 46, 148, 173, 159, 27, 9, 49, 239, 115, 119, 198, 22, 39, 65, 31, 75, 233, 169, 198, 155, 114, + 136, 166, 87, 8, 112, 145, 27, 227, 148, 88, 85, 110, 210, 141, 12, 255, 255, 27, 147, 59, 107, 133, 51, 199, 53, + 172, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3398, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8230591326358482403" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + ] + }, + "cborHex": "d8669f1b7238ef342b022de39f1bfffffffffffffff7ffff", + "cborBytes": [ + 216, 102, 159, 27, 114, 56, 239, 52, 43, 2, 45, 227, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3399, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1585941144167719814" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03054063e101ffa003" + }, + { + "_tag": "ByteArray", + "bytearray": "96d44459319b" + } + ] + }, + "cborHex": "d8669f1b1602651164cb23869f1bfffffffffffffff64903054063e101ffa0034696d44459319bffff", + "cborBytes": [ + 216, 102, 159, 27, 22, 2, 101, 17, 100, 203, 35, 134, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 73, 3, 5, + 64, 99, 225, 1, 255, 160, 3, 70, 150, 212, 68, 89, 49, 155, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3400, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8234687715800466549" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12109579328850872180" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "08a3e9" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11907799769057374109" + } + } + ] + }, + "cborHex": "d8669f1b72477cd9288f44759fd8669f1ba80dde3d8391c7749f4308a3e9ffff1ba54100ccbb24af9dffff", + "cborBytes": [ + 216, 102, 159, 27, 114, 71, 124, 217, 40, 143, 68, 117, 159, 216, 102, 159, 27, 168, 13, 222, 61, 131, 145, 199, + 116, 159, 67, 8, 163, 233, 255, 255, 27, 165, 65, 0, 204, 187, 36, 175, 157, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3401, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7000691565739348282" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "95c081dca60c488ffd9b" + }, + { + "_tag": "ByteArray", + "bytearray": "119ce4f5" + }, + { + "_tag": "ByteArray", + "bytearray": "9b1cb9e68473" + }, + { + "_tag": "ByteArray", + "bytearray": "b10ff616d2eb48" + } + ] + } + ] + } + ] + }, + "cborHex": "d905079fd8669f1b612773e345f7913a9f9f4a95c081dca60c488ffd9b44119ce4f5469b1cb9e6847347b10ff616d2eb48ffffffff", + "cborBytes": [ + 217, 5, 7, 159, 216, 102, 159, 27, 97, 39, 115, 227, 69, 247, 145, 58, 159, 159, 74, 149, 192, 129, 220, 166, 12, + 72, 143, 253, 155, 68, 17, 156, 228, 245, 70, 155, 28, 185, 230, 132, 115, 71, 177, 15, 246, 22, 210, 235, 72, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3402, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + "cborHex": "d905059f02ff", + "cborBytes": [217, 5, 5, 159, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3403, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6593001499108795650" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e640" + }, + { + "_tag": "ByteArray", + "bytearray": "d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14212235990773933206" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02e0716c7e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4243021923404577062" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "64d184" + }, + { + "_tag": "ByteArray", + "bytearray": "f814cb4c5f0ad94e" + }, + { + "_tag": "ByteArray", + "bytearray": "404467" + }, + { + "_tag": "ByteArray", + "bytearray": "b598763bc0a394" + }, + { + "_tag": "ByteArray", + "bytearray": "b7" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "37d3d7" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "038d7a93e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4811464feaa57d5ed5f44f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07055c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28f9e1fe011d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3396b1d323f74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd0897a0248ffb35686c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2544e7ac616d222431867" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1571c4de78ee4156" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12307595449956071344" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "291d" + }, + { + "_tag": "ByteArray", + "bytearray": "6415c8cf355e" + }, + { + "_tag": "ByteArray", + "bytearray": "d569" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13136815014412587532" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14358856506281770706" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e35e67610db9" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9fd8669f1b5b7f0beea5ff65029f9f42e64041d01bc53c01557e1a24964502e0716c7effd8669f1b3ae23df576b979269f4364d18448f814cb4c5f0ad94e4340446747b598763bc0a39441b7ffff4337d3d7ffffbf45038d7a93e54b4811464feaa57d5ed5f44f4307055c4628f9e1fe011d47b3396b1d323f7442ff074acd0897a0248ffb35686c4253de4be2544e7ac616d222431867481571c4de78ee415642ed0f41f9ffd905079fd8669f1baacd5cda71d877b09f42291d466415c8cf355e42d5691bb64f57a75e14920cffff1bc744e7ea7dbb3ed2ff46e35e67610db9ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 216, 102, 159, 27, 91, 127, 11, 238, 165, 255, + 101, 2, 159, 159, 66, 230, 64, 65, 208, 27, 197, 60, 1, 85, 126, 26, 36, 150, 69, 2, 224, 113, 108, 126, 255, 216, + 102, 159, 27, 58, 226, 61, 245, 118, 185, 121, 38, 159, 67, 100, 209, 132, 72, 248, 20, 203, 76, 95, 10, 217, 78, + 67, 64, 68, 103, 71, 181, 152, 118, 59, 192, 163, 148, 65, 183, 255, 255, 67, 55, 211, 215, 255, 255, 191, 69, 3, + 141, 122, 147, 229, 75, 72, 17, 70, 79, 234, 165, 125, 94, 213, 244, 79, 67, 7, 5, 92, 70, 40, 249, 225, 254, 1, + 29, 71, 179, 57, 107, 29, 50, 63, 116, 66, 255, 7, 74, 205, 8, 151, 160, 36, 143, 251, 53, 104, 108, 66, 83, 222, + 75, 226, 84, 78, 122, 198, 22, 210, 34, 67, 24, 103, 72, 21, 113, 196, 222, 120, 238, 65, 86, 66, 237, 15, 65, + 249, 255, 217, 5, 7, 159, 216, 102, 159, 27, 170, 205, 92, 218, 113, 216, 119, 176, 159, 66, 41, 29, 70, 100, 21, + 200, 207, 53, 94, 66, 213, 105, 27, 182, 79, 87, 167, 94, 20, 146, 12, 255, 255, 27, 199, 68, 231, 234, 125, 187, + 62, 210, 255, 70, 227, 94, 103, 97, 13, 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3404, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87e9fa0ff", + "cborBytes": [216, 126, 159, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3405, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5938125643275202686" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9058213ccde60a495a8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7956916272415919160" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2633353270946018334" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8448795682031733728" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a1caf01b814" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + "cborHex": "d87d9fbf1b526875cf9f0e707e4ae9058213ccde60a495a81b6e6ca53134e04c381b248b8cd90ad9b41e1b754026e8bf5b0be0460a1caf01b814ff41d106ff", + "cborBytes": [ + 216, 125, 159, 191, 27, 82, 104, 117, 207, 159, 14, 112, 126, 74, 233, 5, 130, 19, 204, 222, 96, 164, 149, 168, + 27, 110, 108, 165, 49, 52, 224, 76, 56, 27, 36, 139, 140, 217, 10, 217, 180, 30, 27, 117, 64, 38, 232, 191, 91, + 11, 224, 70, 10, 28, 175, 1, 184, 20, 255, 65, 209, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3406, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11799960379385829579" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3e168566f31a784" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13978783863342366543" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30d9ac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab058385" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8813048903490144581" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edc934d1cc903fcfb76d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8480406100066980803" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8806253709966421603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9133882785422490349" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9094850252749291514" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2111323835991774875" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4591260466802042398" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050a9fbf1ba3c1e17238f9d8cb48f3e168566f31a7841bc1fe9ddc667bff4f4330d9ac44ab0583851b7a4e3d48c0ad09454aedc934d1cc903fcfb76d1b75b0746ab98c53c3ffd8669f1b7a3619177883ae639f1b7ec211fffd29baed9f1b7e37661e487e3ffaffbf1b1d4cedd7b21ad69b1b3fb76f11ab07a61effffffff", + "cborBytes": [ + 217, 5, 10, 159, 191, 27, 163, 193, 225, 114, 56, 249, 216, 203, 72, 243, 225, 104, 86, 111, 49, 167, 132, 27, + 193, 254, 157, 220, 102, 123, 255, 79, 67, 48, 217, 172, 68, 171, 5, 131, 133, 27, 122, 78, 61, 72, 192, 173, 9, + 69, 74, 237, 201, 52, 209, 204, 144, 63, 207, 183, 109, 27, 117, 176, 116, 106, 185, 140, 83, 195, 255, 216, 102, + 159, 27, 122, 54, 25, 23, 120, 131, 174, 99, 159, 27, 126, 194, 17, 255, 253, 41, 186, 237, 159, 27, 126, 55, 102, + 30, 72, 126, 63, 250, 255, 191, 27, 29, 76, 237, 215, 178, 26, 214, 155, 27, 63, 183, 111, 17, 171, 7, 166, 30, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3407, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c9962d3961140a49639b22" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905069f4bc9962d3961140a49639b2280ff", + "cborBytes": [217, 5, 6, 159, 75, 201, 150, 45, 57, 97, 20, 10, 73, 99, 155, 34, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3408, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8892209499387242678" + }, + "fields": [] + }, + "cborHex": "d8669f1b7b67796d3f54a8b680ff", + "cborBytes": [216, 102, 159, 27, 123, 103, 121, 109, 63, 84, 168, 182, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3409, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13879384559676756692" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "be" + }, + { + "_tag": "ByteArray", + "bytearray": "b4f2a9e0ddcb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11770945648132495310" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3840218947894456533" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5476078067564042887" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7388203088476208009" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13662277791644327622" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13366945668567525630" + } + }, + { + "_tag": "ByteArray", + "bytearray": "35463cd484a4cd4faafc03" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1381915241191298072" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17822943875004745988" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24dcbd5fefa4bae4e5bbf0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7702743124861330588" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7087959f64525c32" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11460353876874651981" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca8601a37bf6cd95" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10021569939027069504" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8d54e87bc8926" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15079061362594456867" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9810cf69d2ce2a3f54656dae" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6830570818372995621" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1e7072437a2808" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13860533092920054316" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b1cc2146bfa49e5ad81e654" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8878600232656010251" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12959044968878071669" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7912869259020327960" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12490608104221215303" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9320349987934677930" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f9fd8669f1bc09d7ab88c9312d49f41be46b4f2a9e0ddcb1ba35accb3ab5e17ce1b354b32c968f930d5ffff1b4bfeeffd2b765a87d8669f1b66882b9089117b899f1bbd9a294401ab1ec61bb980ee43b2e9e8fe4b35463cd484a4cd4faafc03ffffd8669f1b132d8c9714e7d41880ffffd8669f1bf757d1063961c9049fbf4b24dcbd5fefa4bae4e5bbf01b6ae5a40fa971249c487087959f64525c32415b41901b9f0b5b21a762694d48ca8601a37bf6cd951b8b13c4c353710a4047e8d54e87bc89261bd143966abfc2a523ff4c9810cf69d2ce2a3f54656daeffff9fd8669f1b5ecb0ff82a458a259f471e7072437a28081bc05a8169690bd22c4c0b1cc2146bfa49e5ad81e6541b7b371fdeea297c0b1bb3d7c6bd3e4a5f75ffff1b6dd028aaba03dc1880ffa0d8669f1bad578de488b88a479f1b815888eec529abaaffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 159, 216, 102, 159, 27, 192, 157, 122, 184, 140, + 147, 18, 212, 159, 65, 190, 70, 180, 242, 169, 224, 221, 203, 27, 163, 90, 204, 179, 171, 94, 23, 206, 27, 53, 75, + 50, 201, 104, 249, 48, 213, 255, 255, 27, 75, 254, 239, 253, 43, 118, 90, 135, 216, 102, 159, 27, 102, 136, 43, + 144, 137, 17, 123, 137, 159, 27, 189, 154, 41, 68, 1, 171, 30, 198, 27, 185, 128, 238, 67, 178, 233, 232, 254, 75, + 53, 70, 60, 212, 132, 164, 205, 79, 170, 252, 3, 255, 255, 216, 102, 159, 27, 19, 45, 140, 151, 20, 231, 212, 24, + 128, 255, 255, 216, 102, 159, 27, 247, 87, 209, 6, 57, 97, 201, 4, 159, 191, 75, 36, 220, 189, 95, 239, 164, 186, + 228, 229, 187, 240, 27, 106, 229, 164, 15, 169, 113, 36, 156, 72, 112, 135, 149, 159, 100, 82, 92, 50, 65, 91, 65, + 144, 27, 159, 11, 91, 33, 167, 98, 105, 77, 72, 202, 134, 1, 163, 123, 246, 205, 149, 27, 139, 19, 196, 195, 83, + 113, 10, 64, 71, 232, 213, 78, 135, 188, 137, 38, 27, 209, 67, 150, 106, 191, 194, 165, 35, 255, 76, 152, 16, 207, + 105, 210, 206, 42, 63, 84, 101, 109, 174, 255, 255, 159, 216, 102, 159, 27, 94, 203, 15, 248, 42, 69, 138, 37, + 159, 71, 30, 112, 114, 67, 122, 40, 8, 27, 192, 90, 129, 105, 105, 11, 210, 44, 76, 11, 28, 194, 20, 107, 250, 73, + 229, 173, 129, 230, 84, 27, 123, 55, 31, 222, 234, 41, 124, 11, 27, 179, 215, 198, 189, 62, 74, 95, 117, 255, 255, + 27, 109, 208, 40, 170, 186, 3, 220, 24, 128, 255, 160, 216, 102, 159, 27, 173, 87, 141, 228, 136, 184, 138, 71, + 159, 27, 129, 88, 136, 238, 197, 41, 171, 170, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3410, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9129601417708175302" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10432841340462969240" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11116351503107174218" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5574079554388721201" + } + } + ] + }, + "cborHex": "d9050d9fd8669f1b7eb2dc1e6365ffc680ff1b90c8e5ec704e3198d8669f1b9a4536cb8d152f4a80ff1b4d5b1bd26d1b7e31ff", + "cborBytes": [ + 217, 5, 13, 159, 216, 102, 159, 27, 126, 178, 220, 30, 99, 101, 255, 198, 128, 255, 27, 144, 200, 229, 236, 112, + 78, 49, 152, 216, 102, 159, 27, 154, 69, 54, 203, 141, 21, 47, 74, 128, 255, 27, 77, 91, 27, 210, 109, 27, 126, + 49, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3411, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3592578276334985943" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "361352316e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5278845162339086884" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10925890318663696043" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ffa43c4109" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17969292291979723997" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4292855494911147861" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2487794162598081011" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e27fe47c8333e1648d6b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16475042467006669057" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d03056dde984ed9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6514f008f3342a34400c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9df584254c8340834ce480" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17da037a6b" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16098546098853813569" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "adcfb60debac75c01767" + }, + { + "_tag": "ByteArray", + "bytearray": "b498ef468b4f996c0c86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4543447834846830312" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b31db66e874bb62d79f9f809f45361352316e1b494239b4e582b2241b97a08f5b62d43eabff45ffa43c4109ffd8669f1bf95fc022589dc4dd80ffd8669f1b3b934953fe433f559fbf1b22866b9c27f2f1f34ae27fe47c8333e1648d6b1be4a31bd5d168610148d03056dde984ed9e4244ea4a6514f008f3342a34400c4b9df584254c8340834ce4804517da037a6bffd8669f1bdf698662166e9d4180ff4aadcfb60debac75c017674ab498ef468b4f996c0c861b3f0d91bbcb901ee8ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 49, 219, 102, 232, 116, 187, 98, 215, 159, 159, 128, 159, 69, 54, 19, 82, 49, 110, 27, 73, 66, + 57, 180, 229, 130, 178, 36, 27, 151, 160, 143, 91, 98, 212, 62, 171, 255, 69, 255, 164, 60, 65, 9, 255, 216, 102, + 159, 27, 249, 95, 192, 34, 88, 157, 196, 221, 128, 255, 216, 102, 159, 27, 59, 147, 73, 83, 254, 67, 63, 85, 159, + 191, 27, 34, 134, 107, 156, 39, 242, 241, 243, 74, 226, 127, 228, 124, 131, 51, 225, 100, 141, 107, 27, 228, 163, + 27, 213, 209, 104, 97, 1, 72, 208, 48, 86, 221, 233, 132, 237, 158, 66, 68, 234, 74, 101, 20, 240, 8, 243, 52, 42, + 52, 64, 12, 75, 157, 245, 132, 37, 76, 131, 64, 131, 76, 228, 128, 69, 23, 218, 3, 122, 107, 255, 216, 102, 159, + 27, 223, 105, 134, 98, 22, 110, 157, 65, 128, 255, 74, 173, 207, 182, 13, 235, 172, 117, 192, 23, 103, 74, 180, + 152, 239, 70, 139, 79, 153, 108, 12, 134, 27, 63, 13, 145, 187, 203, 144, 30, 232, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3412, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1774618007363159879" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff0403" + } + } + ] + } + ] + }, + "cborHex": "d87d9fbf41001b18a0b5ace4e4874741c343ff0403ffff", + "cborBytes": [ + 216, 125, 159, 191, 65, 0, 27, 24, 160, 181, 172, 228, 228, 135, 71, 65, 195, 67, 255, 4, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3413, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4928357595362460072" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "98" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9953091031060023163" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14807089773452483112" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dc5efe3768faca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14529368759740633338" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e36afd0e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7023386477241403925" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5273337136382360331" + } + }, + { + "_tag": "ByteArray", + "bytearray": "752f2de9cd87b222da5b" + }, + { + "_tag": "ByteArray", + "bytearray": "73328d76b5a69c5189e19848" + } + ] + } + ] + } + ] + }, + "cborHex": "d905059f9f1b44650b1f15ad81a89f4198ffffd8669f1b8a207b8f1b75877b9f9f1bcd7d59b297f45a2847dc5efe3768faca1bc9a2afe836ff90faff44e36afd0effff1b617814ca20418a159f9f1b492ea82faaf23b0b4a752f2de9cd87b222da5b4c73328d76b5a69c5189e19848ffffff", + "cborBytes": [ + 217, 5, 5, 159, 159, 27, 68, 101, 11, 31, 21, 173, 129, 168, 159, 65, 152, 255, 255, 216, 102, 159, 27, 138, 32, + 123, 143, 27, 117, 135, 123, 159, 159, 27, 205, 125, 89, 178, 151, 244, 90, 40, 71, 220, 94, 254, 55, 104, 250, + 202, 27, 201, 162, 175, 232, 54, 255, 144, 250, 255, 68, 227, 106, 253, 14, 255, 255, 27, 97, 120, 20, 202, 32, + 65, 138, 21, 159, 159, 27, 73, 46, 168, 47, 170, 242, 59, 11, 74, 117, 47, 45, 233, 205, 135, 178, 34, 218, 91, + 76, 115, 50, 141, 118, 181, 166, 156, 81, 137, 225, 152, 72, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3414, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbea00e09c480f39f365a502" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12523710555792987151" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13643690001920399915" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c81ca34f115" + }, + { + "_tag": "ByteArray", + "bytearray": "06ca34834de2921153e3" + } + ] + }, + "cborHex": "d87c9fbf4ccbea00e09c480f39f365a5021badcd2865a3d9d40fff1bbd581fc4f6039a2b462c81ca34f1154a06ca34834de2921153e3ff", + "cborBytes": [ + 216, 124, 159, 191, 76, 203, 234, 0, 224, 156, 72, 15, 57, 243, 101, 165, 2, 27, 173, 205, 40, 101, 163, 217, 212, + 15, 255, 27, 189, 88, 31, 196, 246, 3, 154, 43, 70, 44, 129, 202, 52, 241, 21, 74, 6, 202, 52, 131, 77, 226, 146, + 17, 83, 227, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3415, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "658324533207823308" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e6aff0d08754688035c3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12056293643128600775" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "85" + }, + { + "_tag": "ByteArray", + "bytearray": "70d401de" + } + ] + } + ] + }, + "cborHex": "d9050b9fd8669f1b0922d6acccc6f3cc9f9f4ae6aff0d08754688035c31ba7508f31027af8c7ff41854470d401deffffff", + "cborBytes": [ + 217, 5, 11, 159, 216, 102, 159, 27, 9, 34, 214, 172, 204, 198, 243, 204, 159, 159, 74, 230, 175, 240, 208, 135, + 84, 104, 128, 53, 195, 27, 167, 80, 143, 49, 2, 122, 248, 199, 255, 65, 133, 68, 112, 212, 1, 222, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3416, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10047321559899864075" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16705650189830198106" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7af3f38d0a3c4e0a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15683611988466889391" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bc" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bb39920550e22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "930ef6d16b746d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16818312350466384708" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2ed2" + }, + { + "_tag": "ByteArray", + "bytearray": "8d" + }, + { + "_tag": "ByteArray", + "bytearray": "c95b46" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ad5d0df25ef14f" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b8b6f41b9c9f47c0b9f1be7d664565ac4135a487af3f38d0a3c4e0a9f1bd9a7620217a072af41bcff9fbf478bb39920550e2247930ef6d16b746dff9f1be966a5f9bb1d2344422ed2418d43c95b46ff47ad5d0df25ef14fffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 139, 111, 65, 185, 201, 244, 124, 11, 159, 27, 231, 214, 100, 86, 90, 196, 19, 90, 72, 122, + 243, 243, 141, 10, 60, 78, 10, 159, 27, 217, 167, 98, 2, 23, 160, 114, 175, 65, 188, 255, 159, 191, 71, 139, 179, + 153, 32, 85, 14, 34, 71, 147, 14, 246, 209, 107, 116, 109, 255, 159, 27, 233, 102, 165, 249, 187, 29, 35, 68, 66, + 46, 210, 65, 141, 67, 201, 91, 70, 255, 71, 173, 93, 13, 242, 94, 241, 79, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3417, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "160493357482172575" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79f1b023a2fdbb988e09fa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 27, 2, 58, 47, 219, 185, 136, 224, 159, 160, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3418, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8d3e5b5f62dc417a6fed52f" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1548210031279016314" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "552c83d518bf" + }, + { + "_tag": "ByteArray", + "bytearray": "cae0" + }, + { + "_tag": "ByteArray", + "bytearray": "4d0c72" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11948747806364308053" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15484923275169395467" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "36253803809170466" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e936d606c4327" + }, + { + "_tag": "ByteArray", + "bytearray": "fb12bc9fbd507856d6f9" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8becc37a8a0192" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2441770902900727879" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6d65c553840" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a792cb6649bf2d386a45be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6d8" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2adf" + } + ] + } + ] + }, + "cborHex": "d905029fbf084ce8d3e5b5f62dc417a6fed52fff1b157c58d21815097a089f9f46552c83d518bf42cae0434d0c72ffd8669f1ba5d27ad29d12925580ffd8669f1bd6e57fad16a6730b80ffa0ff9f9f1b0080cca479cd6422476e936d606c43274afb12bc9fbd507856d6f9ffbf478becc37a8a01921b21e2e9b2fa48604746a6d65c553840417f4ba792cb6649bf2d386a45be42f6d8ff422adfffff", + "cborBytes": [ + 217, 5, 2, 159, 191, 8, 76, 232, 211, 229, 181, 246, 45, 196, 23, 166, 254, 213, 47, 255, 27, 21, 124, 88, 210, + 24, 21, 9, 122, 8, 159, 159, 70, 85, 44, 131, 213, 24, 191, 66, 202, 224, 67, 77, 12, 114, 255, 216, 102, 159, 27, + 165, 210, 122, 210, 157, 18, 146, 85, 128, 255, 216, 102, 159, 27, 214, 229, 127, 173, 22, 166, 115, 11, 128, 255, + 160, 255, 159, 159, 27, 0, 128, 204, 164, 121, 205, 100, 34, 71, 110, 147, 109, 96, 108, 67, 39, 74, 251, 18, 188, + 159, 189, 80, 120, 86, 214, 249, 255, 191, 71, 139, 236, 195, 122, 138, 1, 146, 27, 33, 226, 233, 178, 250, 72, + 96, 71, 70, 166, 214, 92, 85, 56, 64, 65, 127, 75, 167, 146, 203, 102, 73, 191, 45, 56, 106, 69, 190, 66, 246, + 216, 255, 66, 42, 223, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3419, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4995167774620638577" + } + } + ] + }, + "cborHex": "d905099f1b455266a01fbddd71ff", + "cborBytes": [217, 5, 9, 159, 27, 69, 82, 102, 160, 31, 189, 221, 113, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3420, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1798433992915424118" + }, + "fields": [] + }, + "cborHex": "d8669f1b18f5523023b6137680ff", + "cborBytes": [216, 102, 159, 27, 24, 245, 82, 48, 35, 182, 19, 118, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3421, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10125403812469411421" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8ffb4da49e6b54" + } + ] + } + ] + }, + "cborHex": "d905069fd8669f1b8c84a91ee9a00e5d9f478ffb4da49e6b54ffffff", + "cborBytes": [ + 217, 5, 6, 159, 216, 102, 159, 27, 140, 132, 169, 30, 233, 160, 14, 93, 159, 71, 143, 251, 77, 164, 158, 107, 84, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3422, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6206450995790042880" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4145192175243499170" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5057545939632229433" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b480e4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17342865920343420738" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3360" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4067339528668531053" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5621be4c27ef57009fd8669f1b3986ae523b1e16a29fbf1b4630033c6eff8c3943b480e41bf0ae3cab094c2f424207c14233604129ff9f1b387217c06b31496dffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 86, 33, 190, 76, 39, 239, 87, 0, 159, 216, 102, 159, 27, 57, 134, 174, 82, 59, 30, 22, 162, + 159, 191, 27, 70, 48, 3, 60, 110, 255, 140, 57, 67, 180, 128, 228, 27, 240, 174, 60, 171, 9, 76, 47, 66, 66, 7, + 193, 66, 51, 96, 65, 41, 255, 159, 27, 56, 114, 23, 192, 107, 49, 73, 109, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3423, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15994069605646176853" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "ByteArray", + "bytearray": "375af5ec24" + } + ] + }, + "cborHex": "d8669f1bddf65990ed6992559f120845375af5ec24ffff", + "cborBytes": [ + 216, 102, 159, 27, 221, 246, 89, 144, 237, 105, 146, 85, 159, 18, 8, 69, 55, 90, 245, 236, 36, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3424, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11917740695154838948" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed92beb40f86" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8302414956941150326" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16228914884757143527" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10033678053650458385" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90cb7ccf86fe4008ca85" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11808358005833603344" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9625785430979304321" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bea4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13844303074924677398" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8093222443776376678" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a663fb8f5a1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13830054177480359147" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6620574173063646227" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905079fd8669f1ba5645204f3ebcda49f46ed92beb40f86bf1b73381a6a4e5e08761be138b01a6bffbfe71b8b3ec9077277e7114a90cb7ccf86fe4008ca85ff9f1ba3dfb70afe5a19101b8595a8d991a6db8142bea41bc020d84bdfbbc916ffbf1b7050e6eed1827f66463a663fb8f5a11bbfee38ffe91fbceb1b5be1012212958c13ffffff80ff", + "cborBytes": [ + 217, 5, 7, 159, 216, 102, 159, 27, 165, 100, 82, 4, 243, 235, 205, 164, 159, 70, 237, 146, 190, 180, 15, 134, 191, + 27, 115, 56, 26, 106, 78, 94, 8, 118, 27, 225, 56, 176, 26, 107, 255, 191, 231, 27, 139, 62, 201, 7, 114, 119, + 231, 17, 74, 144, 203, 124, 207, 134, 254, 64, 8, 202, 133, 255, 159, 27, 163, 223, 183, 10, 254, 90, 25, 16, 27, + 133, 149, 168, 217, 145, 166, 219, 129, 66, 190, 164, 27, 192, 32, 216, 75, 223, 187, 201, 22, 255, 191, 27, 112, + 80, 230, 238, 209, 130, 127, 102, 70, 58, 102, 63, 184, 245, 161, 27, 191, 238, 56, 255, 233, 31, 188, 235, 27, + 91, 225, 1, 34, 18, 149, 140, 19, 255, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3425, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16699790993879599045" + }, + "fields": [] + } + ] + }, + "cborHex": "d87c9f11d8669f1be7c1936dfd7607c580ffff", + "cborBytes": [216, 124, 159, 17, 216, 102, 159, 27, 231, 193, 147, 109, 253, 118, 7, 197, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3426, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1765010019343755043" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "326b7e41fa05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11032546756504262256" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff6112a74a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "382765536711734751" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "43596996324234399" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5226160278926346829" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03034201" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5379505674759310122" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16397740060919611334" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdfd060204c8a3f51087a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10455711252858242539" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8385384539336600168" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2611799898389357462" + } + } + ] + }, + "cborHex": "d8799f41ce1b187e9342dbfd6723bf46326b7e41fa051b991b7ad275531670ff9fbf0445ff6112a74a1b054fdb3a47f6f5df1b009ae33cb72e149f1b48870d1594a94a4d44030342011b4aa7d7e8cb3a0b2a061be39079b4da4e3fc61bfffffffffffffffaff1bfffffffffffffffbbf004bfdfd060204c8a3f51087a71b911a25fcdcab85eb1b745edecf9435ea68ff05bf061bffffffffffffffffffff1b243efa2b6fe62396ff", + "cborBytes": [ + 216, 121, 159, 65, 206, 27, 24, 126, 147, 66, 219, 253, 103, 35, 191, 70, 50, 107, 126, 65, 250, 5, 27, 153, 27, + 122, 210, 117, 83, 22, 112, 255, 159, 191, 4, 69, 255, 97, 18, 167, 74, 27, 5, 79, 219, 58, 71, 246, 245, 223, 27, + 0, 154, 227, 60, 183, 46, 20, 159, 27, 72, 135, 13, 21, 148, 169, 74, 77, 68, 3, 3, 66, 1, 27, 74, 167, 215, 232, + 203, 58, 11, 42, 6, 27, 227, 144, 121, 180, 218, 78, 63, 198, 27, 255, 255, 255, 255, 255, 255, 255, 250, 255, 27, + 255, 255, 255, 255, 255, 255, 255, 251, 191, 0, 75, 253, 253, 6, 2, 4, 200, 163, 245, 16, 135, 167, 27, 145, 26, + 37, 252, 220, 171, 133, 235, 27, 116, 94, 222, 207, 148, 53, 234, 104, 255, 5, 191, 6, 27, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 27, 36, 62, 250, 43, 111, 230, 35, 150, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3427, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17785496031473464682" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2739430102649709982" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6109054635049387625" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05c1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1910774910585773404" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2246222617102056381" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58de3b3087f630" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "164651253a79" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39524bfadf7d20" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c3d283c77" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e800ad94" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2614079184430242612" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ba74" + } + ] + }, + "cborHex": "d8669f1bf6d2c668b618756a9f9fd8669f1b2604692a0b72a59e9f1b54c7b8d2cb9286694205c1ffff1b1a846fa84f319d5cbf1b1f2c2f91bad0fbbd4758de3b3087f63046164651253a7941c74739524bfadf7d20451c3d283c7744e800ad941b2447132b12b51b34ffff42ba74ffff", + "cborBytes": [ + 216, 102, 159, 27, 246, 210, 198, 104, 182, 24, 117, 106, 159, 159, 216, 102, 159, 27, 38, 4, 105, 42, 11, 114, + 165, 158, 159, 27, 84, 199, 184, 210, 203, 146, 134, 105, 66, 5, 193, 255, 255, 27, 26, 132, 111, 168, 79, 49, + 157, 92, 191, 27, 31, 44, 47, 145, 186, 208, 251, 189, 71, 88, 222, 59, 48, 135, 246, 48, 70, 22, 70, 81, 37, 58, + 121, 65, 199, 71, 57, 82, 75, 250, 223, 125, 32, 69, 28, 61, 40, 60, 119, 68, 232, 0, 173, 148, 27, 36, 71, 19, + 43, 18, 181, 27, 52, 255, 255, 66, 186, 116, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3428, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15695613270800027515" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9650046495337680616" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12564604237910096495" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17696492764165050706" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3280406579555424312" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85caf0452256958541" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15040616677446012075" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17237521437309723750" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15592510648595296629" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3656683369171084317" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5463193876535260697" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6055839597080407033" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d98d8d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10902956156911255946" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2559585546494984748" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16885701781598494208" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10830640235178614120" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bd9d2051c61f14f7b9f1bfffffffffffffff5d8669f1b85ebda28cc9b0ee89fd8669f1bae5e70fbf7ffba6f9f1bf5969268b25411521b2d8658675d4158384985caf0452256958541ffffd8669f1bd0bb012df5fc4cab9f1bef37fa6b3f06e4661bd863b9d27e04b175ffffbf1b32bf26267b85641d1b4bd129e2adf936191b540aaa0740b8ebf943d98d8dffbf1b974f14dbbe5a818a1b2385797e470ec22c1bea56104e5b5bde001b964e29e923dfdd68ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 217, 210, 5, 28, 97, 241, 79, 123, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 216, 102, + 159, 27, 133, 235, 218, 40, 204, 155, 14, 232, 159, 216, 102, 159, 27, 174, 94, 112, 251, 247, 255, 186, 111, 159, + 27, 245, 150, 146, 104, 178, 84, 17, 82, 27, 45, 134, 88, 103, 93, 65, 88, 56, 73, 133, 202, 240, 69, 34, 86, 149, + 133, 65, 255, 255, 216, 102, 159, 27, 208, 187, 1, 45, 245, 252, 76, 171, 159, 27, 239, 55, 250, 107, 63, 6, 228, + 102, 27, 216, 99, 185, 210, 126, 4, 177, 117, 255, 255, 191, 27, 50, 191, 38, 38, 123, 133, 100, 29, 27, 75, 209, + 41, 226, 173, 249, 54, 25, 27, 84, 10, 170, 7, 64, 184, 235, 249, 67, 217, 141, 141, 255, 191, 27, 151, 79, 20, + 219, 190, 90, 129, 138, 27, 35, 133, 121, 126, 71, 14, 194, 44, 27, 234, 86, 16, 78, 91, 91, 222, 0, 27, 150, 78, + 41, 233, 35, 223, 221, 104, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3429, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6393125765906502036" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12640535176964252553" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12066054535262159087" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f6" + } + ] + }, + "cborHex": "d8669f1b58b8f203094111949fa01baf6c33c561c8a3891ba7733cabcecac0ef41f6ffff", + "cborBytes": [ + 216, 102, 159, 27, 88, 184, 242, 3, 9, 65, 17, 148, 159, 160, 27, 175, 108, 51, 197, 97, 200, 163, 137, 27, 167, + 115, 60, 171, 206, 202, 192, 239, 65, 246, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3430, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6648562489302396274" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15843506287385278794" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "730180910104788077" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b5c44705bc1db2d729f06d8669f1bdbdf7106a044794a9f1b0a221fab48913c6d80ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 92, 68, 112, 91, 193, 219, 45, 114, 159, 6, 216, 102, 159, 27, 219, 223, 113, 6, 160, 68, 121, + 74, 159, 27, 10, 34, 31, 171, 72, 145, 60, 109, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3431, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4291138817511667725" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4641137680943004320" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9615803264090026675" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb28ef27d58a1cf6cb4d0a46" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13354912015432068587" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6919143977506869265" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8610" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5629061334894069430" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2974412551657797340" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7484164042538995335" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4eabb27bd911e1d8180e1b5c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13813568926323278387" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f375" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17045745783628491425" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14101012790454112720" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11240434057390264019" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12636193065430065502" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1060159352472591040" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c430f2791275" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14839435092658114538" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dc61fc138d" + }, + { + "_tag": "ByteArray", + "bytearray": "5238eb68a6" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15517887829314145344" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed0ac8e69697c7" + }, + { + "_tag": "ByteArray", + "bytearray": "6b9fad9a3fa43b" + }, + { + "_tag": "ByteArray", + "bytearray": "27116ac0475f" + }, + { + "_tag": "ByteArray", + "bytearray": "50097cd592de" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17279145446970516960" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10237421259095218421" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cb886fca25cbedf65872c90" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1744874661617749876" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efb9ff1eaf712fbfe2e5a36b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2306135685506077404" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5cbcde65eafe4714" + }, + { + "_tag": "ByteArray", + "bytearray": "d42c93d9340cee911b" + }, + { + "_tag": "ByteArray", + "bytearray": "02ff76" + } + ] + } + ] + }, + "cborHex": "d8669f1b3b8d3004e3ac380d9f9fd8669f1b4068a2218a49baa09f1b8572321f3a20b2b34ccb28ef27d58a1cf6cb4d0a46ffff1bb9562db87e6cadebd8669f1b6005bcc9d11490119f428610ffffbf1b4e1e7175c53f46b61b29473c74e506b6dc1b67dd178b3c49ce874c4eabb27bd911e1d8180e1b5c1bbfb3a7c045df823342f3751bec8ea77a5cc9eaa11bc3b0dc6c2c41d1d0ffffd8669f1b9bfe0b3887f30ed39f1baf5cc6a4c236a15e9f1b0eb67150696fdac046c430f27912751bcdf04398155a4fea45dc61fc138d455238eb68a6ffd8669f1bd75a9cc372a08c409f47ed0ac8e69697c7476b9fad9a3fa43b4627116ac0475f4650097cd592deffffffffd8669f1befcbdb3c34fc65e080ffd8669f1b8e12a0651c6718f59fbf4c0cb886fca25cbedf65872c901b18370a428f4e4f744cefb9ff1eaf712fbfe2e5a36b411bff1b20010a30027112dc485cbcde65eafe471449d42c93d9340cee911b4302ff76ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 59, 141, 48, 4, 227, 172, 56, 13, 159, 159, 216, 102, 159, 27, 64, 104, 162, 33, 138, 73, 186, + 160, 159, 27, 133, 114, 50, 31, 58, 32, 178, 179, 76, 203, 40, 239, 39, 213, 138, 28, 246, 203, 77, 10, 70, 255, + 255, 27, 185, 86, 45, 184, 126, 108, 173, 235, 216, 102, 159, 27, 96, 5, 188, 201, 209, 20, 144, 17, 159, 66, 134, + 16, 255, 255, 191, 27, 78, 30, 113, 117, 197, 63, 70, 182, 27, 41, 71, 60, 116, 229, 6, 182, 220, 27, 103, 221, + 23, 139, 60, 73, 206, 135, 76, 78, 171, 178, 123, 217, 17, 225, 216, 24, 14, 27, 92, 27, 191, 179, 167, 192, 69, + 223, 130, 51, 66, 243, 117, 27, 236, 142, 167, 122, 92, 201, 234, 161, 27, 195, 176, 220, 108, 44, 65, 209, 208, + 255, 255, 216, 102, 159, 27, 155, 254, 11, 56, 135, 243, 14, 211, 159, 27, 175, 92, 198, 164, 194, 54, 161, 94, + 159, 27, 14, 182, 113, 80, 105, 111, 218, 192, 70, 196, 48, 242, 121, 18, 117, 27, 205, 240, 67, 152, 21, 90, 79, + 234, 69, 220, 97, 252, 19, 141, 69, 82, 56, 235, 104, 166, 255, 216, 102, 159, 27, 215, 90, 156, 195, 114, 160, + 140, 64, 159, 71, 237, 10, 200, 230, 150, 151, 199, 71, 107, 159, 173, 154, 63, 164, 59, 70, 39, 17, 106, 192, 71, + 95, 70, 80, 9, 124, 213, 146, 222, 255, 255, 255, 255, 216, 102, 159, 27, 239, 203, 219, 60, 52, 252, 101, 224, + 128, 255, 216, 102, 159, 27, 142, 18, 160, 101, 28, 103, 24, 245, 159, 191, 76, 12, 184, 134, 252, 162, 92, 190, + 223, 101, 135, 44, 144, 27, 24, 55, 10, 66, 143, 78, 79, 116, 76, 239, 185, 255, 30, 175, 113, 47, 191, 226, 229, + 163, 107, 65, 27, 255, 27, 32, 1, 10, 48, 2, 113, 18, 220, 72, 92, 188, 222, 101, 234, 254, 71, 20, 73, 212, 44, + 147, 217, 52, 12, 238, 145, 27, 67, 2, 255, 118, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3432, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10971964517680639492" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7747214871205734138" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aa5ff62f050ac14a0db03f3c" + }, + { + "_tag": "ByteArray", + "bytearray": "dcba" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13552962800176447769" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "929a7ebe05b3c1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16162272795832597342" + } + } + ] + }, + "cborHex": "d8669f1b98443f98cc8b6e049f1b6b83a2e0fcd766fa4caa5ff62f050ac14a0db03f3c42dcbad8669f1bbc15cbdc2e99c1199f47929a7ebe05b3c1ffff1be04bed79f68fbb5effff", + "cborBytes": [ + 216, 102, 159, 27, 152, 68, 63, 152, 204, 139, 110, 4, 159, 27, 107, 131, 162, 224, 252, 215, 102, 250, 76, 170, + 95, 246, 47, 5, 10, 193, 74, 13, 176, 63, 60, 66, 220, 186, 216, 102, 159, 27, 188, 21, 203, 220, 46, 153, 193, + 25, 159, 71, 146, 154, 126, 190, 5, 179, 193, 255, 255, 27, 224, 75, 237, 121, 246, 143, 187, 94, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3433, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4393959413600328124" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "19" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16482179508561510643" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6144323611609002766" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4991474258940764020" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13231340339136733035" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c984e32c8beb1e35906f4976" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0bdf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12057839910019246160" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6105707222830658376" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3012161109765910414" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15941506320523856287" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d90d68" + }, + { + "_tag": "ByteArray", + "bytearray": "e76cd56c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16142253489587815593" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12455458340364943713" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4e11e9913dd38f8a18" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c4f1676c3294eaad4c2b21" + }, + { + "_tag": "ByteArray", + "bytearray": "bc48d03a" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b3cfa7ace752199bc9f4119d8669f1be4bc76efcc0800f39fd8669f1b554505c54efff30e9f1b454547647dab9f741bb79f29ef908a9f6bffff4cc984e32c8beb1e35906f49769f420bdf1ba7560d835339a8501b54bbd45ea75bb3481b29cd5891f9d7ef8eff1bdd3b9b896b78099f9f43d90d6844e76cd56c1be004ce06013104a91bacdaad5e64210161ffffff9f494e11e9913dd38f8a189f4bc4f1676c3294eaad4c2b2144bc48d03affffffff", + "cborBytes": [ + 216, 102, 159, 27, 60, 250, 122, 206, 117, 33, 153, 188, 159, 65, 25, 216, 102, 159, 27, 228, 188, 118, 239, 204, + 8, 0, 243, 159, 216, 102, 159, 27, 85, 69, 5, 197, 78, 255, 243, 14, 159, 27, 69, 69, 71, 100, 125, 171, 159, 116, + 27, 183, 159, 41, 239, 144, 138, 159, 107, 255, 255, 76, 201, 132, 227, 44, 139, 235, 30, 53, 144, 111, 73, 118, + 159, 66, 11, 223, 27, 167, 86, 13, 131, 83, 57, 168, 80, 27, 84, 187, 212, 94, 167, 91, 179, 72, 27, 41, 205, 88, + 145, 249, 215, 239, 142, 255, 27, 221, 59, 155, 137, 107, 120, 9, 159, 159, 67, 217, 13, 104, 68, 231, 108, 213, + 108, 27, 224, 4, 206, 6, 1, 49, 4, 169, 27, 172, 218, 173, 94, 100, 33, 1, 97, 255, 255, 255, 159, 73, 78, 17, + 233, 145, 61, 211, 143, 138, 24, 159, 75, 196, 241, 103, 108, 50, 148, 234, 173, 76, 43, 33, 68, 188, 72, 208, 58, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3434, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15245591227837055194" + }, + "fields": [] + }, + "cborHex": "d8669f1bd3933872760a00da80ff", + "cborBytes": [216, 102, 159, 27, 211, 147, 56, 114, 118, 10, 0, 218, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3435, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5159436099374990800" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "704582582173048038" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10688288868758409839" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5659922897070478069" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb6568388e5891275425d0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13081238347338900795" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e6f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f412837c57325eabb1be6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d048dd6" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16626521584313185519" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d5072d5ccafdd7cb5bfa" + }, + { + "_tag": "ByteArray", + "bytearray": "2b251e612c" + }, + { + "_tag": "ByteArray", + "bytearray": "db209a7d79cc5048" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5652583781091401104" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14686948485689389580" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65b00c22bec84c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12879501853726667825" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8125180206652847228" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12566669478350428784" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15465059131275697770" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8456436395680023816" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16611213890069686589" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dd805ee4d58fd3f3" + }, + { + "_tag": "ByteArray", + "bytearray": "ff9e" + }, + { + "_tag": "ByteArray", + "bytearray": "63593b6ba06d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "407722266599716875" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2ec7f1155a59c8295b" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15051730830281633690" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2153022694654395771" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12367327877670132090" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8027" + } + ] + }, + "cborHex": "d905069fd8669f1b4799ffcbe892c5d09fbf1b09c72e201d5a1ce61b94546e18df1b526f1b4e8c15e327fc52f54bbb6568388e5891275425d01bb589e4f8335a653b425e6f4bf412837c57325eabb1be6d445d048dd6ffd8669f1be6bd454a335a34ef9f4ad5072d5ccafdd7cb5bfa452b251e612c48db209a7d79cc5048ffff1b4e7203000f165d90bf1bcbd285d53bfa320c41ba4765b00c22bec84c1bb2bd2eb28b5cf431ffffff9fd8669f1b70c270595193f47c9f1bae65c74f3ad21a701bd69eed57ae195e6a1b755b4c19063145081be686e305e5a3693dffff9f48dd805ee4d58fd3f342ff9e4663593b6ba06d1b05a8853dc3b1780b492ec7f1155a59c8295bff9f1bd0e27d7151bb6f9affd8669f1b1de112bbcc3ac57b80ffff1baba1932e0950597a428027ff", + "cborBytes": [ + 217, 5, 6, 159, 216, 102, 159, 27, 71, 153, 255, 203, 232, 146, 197, 208, 159, 191, 27, 9, 199, 46, 32, 29, 90, + 28, 230, 27, 148, 84, 110, 24, 223, 27, 82, 111, 27, 78, 140, 21, 227, 39, 252, 82, 245, 75, 187, 101, 104, 56, + 142, 88, 145, 39, 84, 37, 208, 27, 181, 137, 228, 248, 51, 90, 101, 59, 66, 94, 111, 75, 244, 18, 131, 124, 87, + 50, 94, 171, 177, 190, 109, 68, 93, 4, 141, 214, 255, 216, 102, 159, 27, 230, 189, 69, 74, 51, 90, 52, 239, 159, + 74, 213, 7, 45, 92, 202, 253, 215, 203, 91, 250, 69, 43, 37, 30, 97, 44, 72, 219, 32, 154, 125, 121, 204, 80, 72, + 255, 255, 27, 78, 114, 3, 0, 15, 22, 93, 144, 191, 27, 203, 210, 133, 213, 59, 250, 50, 12, 65, 186, 71, 101, 176, + 12, 34, 190, 200, 76, 27, 178, 189, 46, 178, 139, 92, 244, 49, 255, 255, 255, 159, 216, 102, 159, 27, 112, 194, + 112, 89, 81, 147, 244, 124, 159, 27, 174, 101, 199, 79, 58, 210, 26, 112, 27, 214, 158, 237, 87, 174, 25, 94, 106, + 27, 117, 91, 76, 25, 6, 49, 69, 8, 27, 230, 134, 227, 5, 229, 163, 105, 61, 255, 255, 159, 72, 221, 128, 94, 228, + 213, 143, 211, 243, 66, 255, 158, 70, 99, 89, 59, 107, 160, 109, 27, 5, 168, 133, 61, 195, 177, 120, 11, 73, 46, + 199, 241, 21, 90, 89, 200, 41, 91, 255, 159, 27, 208, 226, 125, 113, 81, 187, 111, 154, 255, 216, 102, 159, 27, + 29, 225, 18, 187, 204, 58, 197, 123, 128, 255, 255, 27, 171, 161, 147, 46, 9, 80, 89, 122, 66, 128, 39, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3436, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8224200078927506920" + }, + "fields": [] + }, + "cborHex": "d8669f1b72223a65ea36ade880ff", + "cborBytes": [216, 102, 159, 27, 114, 34, 58, 101, 234, 54, 173, 232, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3437, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1848365975451831552" + }, + "fields": [] + }, + "cborHex": "d8669f1b19a6b70fc5b98d0080ff", + "cborBytes": [216, 102, 159, 27, 25, 166, 183, 15, 197, 185, 141, 0, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3438, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11961509432550410171" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2589219723092143517" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16306484031313468161" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7799087597588703293" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6680998085162137875" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2090230980341850870" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "09" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1ba5ffd17440a6c7bb9f1b23eec19eb057ad9dbf1be24c44d4be04db011b6c3becd9426de83dff9f1b5cb7ac5c6b277913d8669f1b1d01fe0089cae2f69f4109ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 165, 255, 209, 116, 64, 166, 199, 187, 159, 27, 35, 238, 193, 158, 176, 87, 173, 157, 191, 27, + 226, 76, 68, 212, 190, 4, 219, 1, 27, 108, 59, 236, 217, 66, 109, 232, 61, 255, 159, 27, 92, 183, 172, 92, 107, + 39, 121, 19, 216, 102, 159, 27, 29, 1, 254, 0, 137, 202, 226, 246, 159, 65, 9, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3439, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4029af011adfd0802cc4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18118647001282946392" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15042357479476090501" + } + }, + { + "_tag": "ByteArray", + "bytearray": "10fa4a9810ce861c9d" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "706fdb7d9f19bb15" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c10107" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [] + } + ] + }, + "cborHex": "d8799f9f9f4a4029af011adfd0802cc41bfb725d73722aa5581bd0c1306e049cd6854910fa4a9810ce861c9dffff48706fdb7d9f19bb159f43c10107ffd8669f1bfffffffffffffff080ffff", + "cborBytes": [ + 216, 121, 159, 159, 159, 74, 64, 41, 175, 1, 26, 223, 208, 128, 44, 196, 27, 251, 114, 93, 115, 114, 42, 165, 88, + 27, 208, 193, 48, 110, 4, 156, 214, 133, 73, 16, 250, 74, 152, 16, 206, 134, 28, 157, 255, 255, 72, 112, 111, 219, + 125, 159, 25, 187, 21, 159, 67, 193, 1, 7, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3440, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2311042975824248518" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11535093202705022749" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5530421897830792305" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1072085795613303531" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6813188329163248402" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3805646202934936465" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7560581022771842139" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8301960995085741461" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9597062021671407516" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1891a5e1dab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11413436620057049399" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4f9" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "739e9b" + }, + { + "_tag": "ByteArray", + "bytearray": "9b4dcbc9b66f" + }, + { + "_tag": "ByteArray", + "bytearray": "bf0fb51413" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9fbf1b2012795792aa7ec61ba014e226fe417f1d1b4cc0016a263efc711b0ee0d059d845e2eb1b5e8d4eb0039cd3121b34d05f0ef2c043911b68ec9461ede00c5b1b73367d8a133bed951b852f9d0fb11dcf9c46f1891a5e1dab1b9e64ac228cef793742d4f9ff43739e9b469b4dcbc9b66f45bf0fb51413ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 191, 27, 32, 18, 121, 87, 146, 170, 126, 198, 27, + 160, 20, 226, 38, 254, 65, 127, 29, 27, 76, 192, 1, 106, 38, 62, 252, 113, 27, 14, 224, 208, 89, 216, 69, 226, + 235, 27, 94, 141, 78, 176, 3, 156, 211, 18, 27, 52, 208, 95, 14, 242, 192, 67, 145, 27, 104, 236, 148, 97, 237, + 224, 12, 91, 27, 115, 54, 125, 138, 19, 59, 237, 149, 27, 133, 47, 157, 15, 177, 29, 207, 156, 70, 241, 137, 26, + 94, 29, 171, 27, 158, 100, 172, 34, 140, 239, 121, 55, 66, 212, 249, 255, 67, 115, 158, 155, 70, 155, 77, 203, + 201, 182, 111, 69, 191, 15, 181, 20, 19, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3441, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10377888694512479031" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "27ea64c3b7103fa11005bf36" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10c385bb32b7212318" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8005784465665524641" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df234a85" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ee4ad25051e0925e55cfc9e" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2552546297719648861" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18282009911056137084" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6637646727250067876" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13217254862845764272" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09865660143cba679c1e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14856605306700247229" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15988557428119619374" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15370328095234646022" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "193275cf85c12543" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7898295550851909631" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "070330e7050b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17402137432917773404" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b9005aac882f56b379fd87b9f804c27ea64c3b7103fa11005bf36bf4910c385bb32b72123181b6f1a428e185583a144df234a854c9ee4ad25051e0925e55cfc9effbf1b236c77557451725d1bfdb6bf26e0abfb7c1b5c1da887da4641a441141bb76d1f450db9e2b04a09865660143cba679c1e1bce2d43d0120d30bd1bdde2c4451600c72e1bd54e5ff795aae00648193275cf85c12543ff1b6d9c61f4df9387ffffbf46070330e7050b1bf180cfcb75978c5cffffff", + "cborBytes": [ + 216, 102, 159, 27, 144, 5, 170, 200, 130, 245, 107, 55, 159, 216, 123, 159, 128, 76, 39, 234, 100, 195, 183, 16, + 63, 161, 16, 5, 191, 54, 191, 73, 16, 195, 133, 187, 50, 183, 33, 35, 24, 27, 111, 26, 66, 142, 24, 85, 131, 161, + 68, 223, 35, 74, 133, 76, 158, 228, 173, 37, 5, 30, 9, 37, 229, 92, 252, 158, 255, 191, 27, 35, 108, 119, 85, 116, + 81, 114, 93, 27, 253, 182, 191, 38, 224, 171, 251, 124, 27, 92, 29, 168, 135, 218, 70, 65, 164, 65, 20, 27, 183, + 109, 31, 69, 13, 185, 226, 176, 74, 9, 134, 86, 96, 20, 60, 186, 103, 156, 30, 27, 206, 45, 67, 208, 18, 13, 48, + 189, 27, 221, 226, 196, 69, 22, 0, 199, 46, 27, 213, 78, 95, 247, 149, 170, 224, 6, 72, 25, 50, 117, 207, 133, + 193, 37, 67, 255, 27, 109, 156, 97, 244, 223, 147, 135, 255, 255, 191, 70, 7, 3, 48, 231, 5, 11, 27, 241, 128, + 207, 203, 117, 151, 140, 92, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3442, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "26" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51c9dc377332821e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d2c7e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15644287117680702266" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92d071" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c080081ed656ff9ec0e9" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5a7421b5bde830cdf7" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10753749217050788459" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c1fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5997687705281572280" + } + }, + { + "_tag": "ByteArray", + "bytearray": "92a8370d2f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4afb94d4821649" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15730001198793621337" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fbcf428202" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6272738731513925859" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e3bc1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12344426083159582959" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11367828044285611948" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "22b15e" + } + ] + } + ] + } + ] + }, + "cborHex": "d905079f9fbf41264851c9dc377332821e435d2c7e1bd91bac3f1d93f33a4392d0714ac080081ed656ff9ec0e9ff495a7421b5bde830cdf7ff1b953cfdefe5f2826b9f9f42c1fb1b533c1130db092db84592a8370d2fff474afb94d4821649d8669f1bda4c30bfca8fff599f45fbcf4282021b570d3ea454b8d0e3436e3bc11bab50361e7acb28efffffd8669f1b9dc2a3607f5e0fac9f4322b15effffffff", + "cborBytes": [ + 217, 5, 7, 159, 159, 191, 65, 38, 72, 81, 201, 220, 55, 115, 50, 130, 30, 67, 93, 44, 126, 27, 217, 27, 172, 63, + 29, 147, 243, 58, 67, 146, 208, 113, 74, 192, 128, 8, 30, 214, 86, 255, 158, 192, 233, 255, 73, 90, 116, 33, 181, + 189, 232, 48, 205, 247, 255, 27, 149, 60, 253, 239, 229, 242, 130, 107, 159, 159, 66, 193, 251, 27, 83, 60, 17, + 48, 219, 9, 45, 184, 69, 146, 168, 55, 13, 47, 255, 71, 74, 251, 148, 212, 130, 22, 73, 216, 102, 159, 27, 218, + 76, 48, 191, 202, 143, 255, 89, 159, 69, 251, 207, 66, 130, 2, 27, 87, 13, 62, 164, 84, 184, 208, 227, 67, 110, + 59, 193, 27, 171, 80, 54, 30, 122, 203, 40, 239, 255, 255, 216, 102, 159, 27, 157, 194, 163, 96, 127, 94, 15, 172, + 159, 67, 34, 177, 94, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3443, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3653803729518887276" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "100ef960b90815fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ac4b4eb40eba32c50cc76" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c61bef34f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1417390196669131795" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e793f0b0e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10187293315526032796" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8e39749" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4676032081892398981" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "df7d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "607878041204490126" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7959810163869213766" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8053774102768154086" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3788797487380225108" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16148143067040626877" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "566992e56591" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f80d8669f1b32b4eb2220f8816c9fbf48100ef960b90815fd4283fb41434b2ac4b4eb40eba32c50cc7645c61bef34f71b13ab94dfcc95ac1345e793f0b0e11b8d60894bbea3fd9c44e8e397491b40e49a675f86d785ff42df7dffffbf1b086f9ddb98c0ff8e1b6e76ed2bd0f7e4461b6fc4c0e030bc75e61b3494833da930dc541be019ba901d24b8bd46566992e56591ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 128, 216, 102, 159, 27, 50, 180, 235, 34, 32, 248, + 129, 108, 159, 191, 72, 16, 14, 249, 96, 185, 8, 21, 253, 66, 131, 251, 65, 67, 75, 42, 196, 180, 235, 64, 235, + 163, 44, 80, 204, 118, 69, 198, 27, 239, 52, 247, 27, 19, 171, 148, 223, 204, 149, 172, 19, 69, 231, 147, 240, + 176, 225, 27, 141, 96, 137, 75, 190, 163, 253, 156, 68, 232, 227, 151, 73, 27, 64, 228, 154, 103, 95, 134, 215, + 133, 255, 66, 223, 125, 255, 255, 191, 27, 8, 111, 157, 219, 152, 192, 255, 142, 27, 110, 118, 237, 43, 208, 247, + 228, 70, 27, 111, 196, 192, 224, 48, 188, 117, 230, 27, 52, 148, 131, 61, 169, 48, 220, 84, 27, 224, 25, 186, 144, + 29, 36, 184, 189, 70, 86, 105, 146, 229, 101, 145, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3444, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10170803487285271462" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5284948705919539950" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2305152755109322335" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15138025500756156410" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3054509865440999859" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14535544170709656155" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16884742243755360004" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b1e8e82f912727e634eb4" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f34759a58ab93958516b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18284087538270821833" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1856297375910367510" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2172924173270239699" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18036674417226429576" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c3993" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "862fa6bcfac12449167ec9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1297115154103611007" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13179332256618411979" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11372842469320054277" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f96ef70083" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8d25f3e26bf15ba69f149f1b4957e8d8e07e9aeed87c9f1bfffffffffffffff7ffff9fbf1b1ffd8c37b14dde5f1bd21511fcfd601ffa1b2a63cc8a048979b31bc9b8a0692026225b1bea52a79c8b11ff044b1b1e8e82f912727e634eb4ff4af34759a58ab93958516b1bfdbe20be28c75dc9ff9fbf1b19c2e4a0d8a091161b1e27c705dfa1c9d31bfa4f23d1f0283488430c3993ff80bf4b862fa6bcfac12449167ec91b1200475c391f2e7fff9f1bb6e664dc3c9677cb1b9dd473f84e4c560545f96ef70083ff0dffffff", + "cborBytes": [ + 216, 102, 159, 27, 141, 37, 243, 226, 107, 241, 91, 166, 159, 20, 159, 27, 73, 87, 232, 216, 224, 126, 154, 238, + 216, 124, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 255, 255, 159, 191, 27, 31, 253, 140, 55, 177, 77, 222, + 95, 27, 210, 21, 17, 252, 253, 96, 31, 250, 27, 42, 99, 204, 138, 4, 137, 121, 179, 27, 201, 184, 160, 105, 32, + 38, 34, 91, 27, 234, 82, 167, 156, 139, 17, 255, 4, 75, 27, 30, 142, 130, 249, 18, 114, 126, 99, 78, 180, 255, 74, + 243, 71, 89, 165, 138, 185, 57, 88, 81, 107, 27, 253, 190, 32, 190, 40, 199, 93, 201, 255, 159, 191, 27, 25, 194, + 228, 160, 216, 160, 145, 22, 27, 30, 39, 199, 5, 223, 161, 201, 211, 27, 250, 79, 35, 209, 240, 40, 52, 136, 67, + 12, 57, 147, 255, 128, 191, 75, 134, 47, 166, 188, 250, 193, 36, 73, 22, 126, 201, 27, 18, 0, 71, 92, 57, 31, 46, + 127, 255, 159, 27, 182, 230, 100, 220, 60, 150, 119, 203, 27, 157, 212, 115, 248, 78, 76, 86, 5, 69, 249, 110, + 247, 0, 131, 255, 13, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3445, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2134730530849275386" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15685954263421827231" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6452154042480572231" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1306296881867776286" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "536af0c77af64c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3360642506879935490" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1168377663560475169" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6022609795462906573" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05bc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13516764110033086591" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a96a15" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17599734889976950728" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15806619227146520745" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18420027487670694597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4179944820196708326" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13269223754749641311" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9310335197169523263" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b1da0161b8673bdfa9f9f1bd9afb44b7a48389fff1b598aa7eaaa27b747bf1b1220e617ceede11e47536af0c77af64c1b2ea3668df7a824021b1036e94b7005e2211b53949bb3275ac2cd4205bc1bbb953157db45687f43a96a151bf43ed1a2921fefc81bdb5c6470a5ed88a91bffa11568138af2c51b3a0225aaec8f0fe6ffd8669f1bb825c0b39b07025f9f1b8134f488971b1a3fffffffff", + "cborBytes": [ + 216, 102, 159, 27, 29, 160, 22, 27, 134, 115, 189, 250, 159, 159, 27, 217, 175, 180, 75, 122, 72, 56, 159, 255, + 27, 89, 138, 167, 234, 170, 39, 183, 71, 191, 27, 18, 32, 230, 23, 206, 237, 225, 30, 71, 83, 106, 240, 199, 122, + 246, 76, 27, 46, 163, 102, 141, 247, 168, 36, 2, 27, 16, 54, 233, 75, 112, 5, 226, 33, 27, 83, 148, 155, 179, 39, + 90, 194, 205, 66, 5, 188, 27, 187, 149, 49, 87, 219, 69, 104, 127, 67, 169, 106, 21, 27, 244, 62, 209, 162, 146, + 31, 239, 200, 27, 219, 92, 100, 112, 165, 237, 136, 169, 27, 255, 161, 21, 104, 19, 138, 242, 197, 27, 58, 2, 37, + 170, 236, 143, 15, 230, 255, 216, 102, 159, 27, 184, 37, 192, 179, 155, 7, 2, 95, 159, 27, 129, 52, 244, 136, 151, + 27, 26, 63, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3446, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11184483496703523952" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10369424188589436991" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "481925aeab89e2a3d9" + }, + { + "_tag": "ByteArray", + "bytearray": "9f6fd80d14d94448b6916ccb" + }, + { + "_tag": "ByteArray", + "bytearray": "a3be645f1fb0" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b9b37447b793b7c709fd8669f1b8fe7985c2637703f9f9f49481925aeab89e2a3d94c9f6fd80d14d94448b6916ccb46a3be645f1fb0ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 155, 55, 68, 123, 121, 59, 124, 112, 159, 216, 102, 159, 27, 143, 231, 152, 92, 38, 55, 112, + 63, 159, 159, 73, 72, 25, 37, 174, 171, 137, 226, 163, 217, 76, 159, 111, 216, 13, 20, 217, 68, 72, 182, 145, 108, + 203, 70, 163, 190, 100, 95, 31, 176, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3447, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "32500489848880093" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f1b00737705f877fbddd8669f1bfffffffffffffff980ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 27, 0, 115, 119, 5, 248, 119, 251, 221, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3448, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "018efcafad59e879" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4011614801718526078" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b9256b3f5251bd2ad5c18e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "135a1a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "220be676c268c600e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "089d55" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39f63755a617f702829859f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "deab" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5695749642678052276" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99fbf48018efcafad59e8791b37ac1e686021c07e4c1b9256b3f5251bd2ad5c18e843135a1a49220be676c268c600e743089d554c39f63755a617f702829859f942deabff1b4f0b5e1f656225b4ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 191, 72, 1, 142, 252, 175, 173, 89, 232, 121, 27, + 55, 172, 30, 104, 96, 33, 192, 126, 76, 27, 146, 86, 179, 245, 37, 27, 210, 173, 92, 24, 232, 67, 19, 90, 26, 73, + 34, 11, 230, 118, 194, 104, 198, 0, 231, 67, 8, 157, 85, 76, 57, 246, 55, 85, 166, 23, 247, 2, 130, 152, 89, 249, + 66, 222, 171, 255, 27, 79, 11, 94, 31, 101, 98, 37, 180, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3449, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15918678671875320876" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6318897348578922723" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bdcea81e94ab72c2c9fd8669f1b57b13ba8da3450e380ffffff", + "cborBytes": [ + 216, 102, 159, 27, 220, 234, 129, 233, 74, 183, 44, 44, 159, 216, 102, 159, 27, 87, 177, 59, 168, 218, 52, 80, + 227, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3450, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6206739590669125741" + }, + "fields": [] + }, + "cborHex": "d8669f1b5622c4c5e32fc86d80ff", + "cborBytes": [216, 102, 159, 27, 86, 34, 196, 197, 227, 47, 200, 109, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3451, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13064511594890184956" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15989127141396137139" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12250855117636080248" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "886533538123136052" + } + } + ] + }, + "cborHex": "d8669f1bb54e7813a966c8fc9f9f1bdde4ca6bcb7944b3ff1baa03c7d2597992781b0c4d998e4d4cbc34ffff", + "cborBytes": [ + 216, 102, 159, 27, 181, 78, 120, 19, 169, 102, 200, 252, 159, 159, 27, 221, 228, 202, 107, 203, 121, 68, 179, 255, + 27, 170, 3, 199, 210, 89, 121, 146, 120, 27, 12, 77, 153, 142, 77, 76, 188, 52, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3452, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4678261012759727796" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17632973923295035061" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a1e2c2b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "beff25ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9764764806458762645" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6305028977438313397" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9782046936631272851" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16868218741441317195" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13267587400964482572" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14823276179266700211" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3df2264c1997ef" + }, + { + "_tag": "ByteArray", + "bytearray": "e6176e8156de214fe1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15567564826868852840" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a82fba3f0a8870" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15730449709715962375" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3001771376075446807" + } + } + ] + } + ] + }, + "cborHex": "d905019f9f80bf1b40ec859ac81a4eb4415b1bf4b4e85c17b9feb5449a1e2c2bff44beff25ed1b878369db0435e595bf1b577ff67312c14bb51b87c0cfdc821ae593ffff1bea17f392dd32494bd8669f1bb81ff0724cefa60c9f9f1bcdb6db25e0b383b3473df2264c1997ef49e6176e8156de214fe11bd80b19bac362286847a82fba3f0a8870ff1bda4dc8aae0c43a071b29a86f2997e99a17ffffff", + "cborBytes": [ + 217, 5, 1, 159, 159, 128, 191, 27, 64, 236, 133, 154, 200, 26, 78, 180, 65, 91, 27, 244, 180, 232, 92, 23, 185, + 254, 181, 68, 154, 30, 44, 43, 255, 68, 190, 255, 37, 237, 27, 135, 131, 105, 219, 4, 53, 229, 149, 191, 27, 87, + 127, 246, 115, 18, 193, 75, 181, 27, 135, 192, 207, 220, 130, 26, 229, 147, 255, 255, 27, 234, 23, 243, 146, 221, + 50, 73, 75, 216, 102, 159, 27, 184, 31, 240, 114, 76, 239, 166, 12, 159, 159, 27, 205, 182, 219, 37, 224, 179, + 131, 179, 71, 61, 242, 38, 76, 25, 151, 239, 73, 230, 23, 110, 129, 86, 222, 33, 79, 225, 27, 216, 11, 25, 186, + 195, 98, 40, 104, 71, 168, 47, 186, 63, 10, 136, 112, 255, 27, 218, 77, 200, 170, 224, 196, 58, 7, 27, 41, 168, + 111, 41, 151, 233, 154, 23, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3453, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9612741836907216611" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11265022081208049309" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d570eed968cce963" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12349394864118927233" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14196240970437541434" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cad19f25401b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11319725118839397234" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3905231932226013863" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0358" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17585587110012778575" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17161075348509534451" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f3cb3cf1562125f1e2939" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea1c41" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "693013273519677126" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "499150fad89e05199ed4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3219612550066555531" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6836382818026277573" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5366586018203430676" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a32d668209f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13171475491616135968" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11351837359925177821" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16103160137951017500" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d657c5df26519c" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b856751c52a63fee39f9fd8669f1b9c5565e5f1565e9d9f48d570eed968cce9631bab61dd32f2d78f811bc5032df29cc6be3a46cad19f25401bffff1b9d17be05677d1b72bf1b36322bc065d80aa74203581bf40c8e4ddafff84f1bee28631b2f9fa8f34b2f3cb3cf1562125f1e293943ea1c41ffbf1b099e13e688c55ec64a499150fad89e05199ed41b2cae5c8e591b4a8b1b5edfb5f3c90a4ac51b4a79f18cd797ef14468a32d668209f1bb6ca7b2c958b1b201b9d89d3ef2a592ddd1bdf79ead3c7ccfa1c47d657c5df26519cffffffff", + "cborBytes": [ + 216, 102, 159, 27, 133, 103, 81, 197, 42, 99, 254, 227, 159, 159, 216, 102, 159, 27, 156, 85, 101, 229, 241, 86, + 94, 157, 159, 72, 213, 112, 238, 217, 104, 204, 233, 99, 27, 171, 97, 221, 50, 242, 215, 143, 129, 27, 197, 3, 45, + 242, 156, 198, 190, 58, 70, 202, 209, 159, 37, 64, 27, 255, 255, 27, 157, 23, 190, 5, 103, 125, 27, 114, 191, 27, + 54, 50, 43, 192, 101, 216, 10, 167, 66, 3, 88, 27, 244, 12, 142, 77, 218, 255, 248, 79, 27, 238, 40, 99, 27, 47, + 159, 168, 243, 75, 47, 60, 179, 207, 21, 98, 18, 95, 30, 41, 57, 67, 234, 28, 65, 255, 191, 27, 9, 158, 19, 230, + 136, 197, 94, 198, 74, 73, 145, 80, 250, 216, 158, 5, 25, 158, 212, 27, 44, 174, 92, 142, 89, 27, 74, 139, 27, 94, + 223, 181, 243, 201, 10, 74, 197, 27, 74, 121, 241, 140, 215, 151, 239, 20, 70, 138, 50, 214, 104, 32, 159, 27, + 182, 202, 123, 44, 149, 139, 27, 32, 27, 157, 137, 211, 239, 42, 89, 45, 221, 27, 223, 121, 234, 211, 199, 204, + 250, 28, 71, 214, 87, 197, 223, 38, 81, 156, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3454, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6284365367538061720" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7219505595803121133" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3950386798575642934" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17556328438136580272" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9887127313544465206" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2cd50722572d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6419814019675462285" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7232489972560792455" + } + } + ] + }, + "cborHex": "d8669f1b57368d017adf91989fbf1b6430d616bbca35ed1b36d297dcfe7e69361bf3a49bb2733828b01b893621e84ce14b36462cd50722572d1b5917c2d656d41a8dff1b645ef74f880f8b87ffff", + "cborBytes": [ + 216, 102, 159, 27, 87, 54, 141, 1, 122, 223, 145, 152, 159, 191, 27, 100, 48, 214, 22, 187, 202, 53, 237, 27, 54, + 210, 151, 220, 254, 126, 105, 54, 27, 243, 164, 155, 178, 115, 56, 40, 176, 27, 137, 54, 33, 232, 76, 225, 75, 54, + 70, 44, 213, 7, 34, 87, 45, 27, 89, 23, 194, 214, 86, 212, 26, 141, 255, 27, 100, 94, 247, 79, 136, 15, 139, 135, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3455, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5f50db0c27e7f2e025dc06" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11353451552679746670" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f4b5f50db0c27e7f2e025dc06d8669f1b9d8f9008b4155c6e80ff1bfffffffffffffffbffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 75, 95, 80, 219, 12, 39, 231, 242, 224, 37, 220, + 6, 216, 102, 159, 27, 157, 143, 144, 8, 180, 21, 92, 110, 128, 255, 27, 255, 255, 255, 255, 255, 255, 255, 251, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3456, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16894105293418336949" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2112691321148264759" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44ef9c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9210838472292322768" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13729969725610212071" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "402ca9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8867631677320612427" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12342584064184744331" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10023323165868652591" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2613011873731376476" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14034087069892154611" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15823884367260069395" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "053404e1" + } + ] + }, + "cborHex": "d9050b9f1bea73eb416c3f12b59fbf1b1d51c9902517d1374344ef9c1b7fd378ca187c4dd01bbe8aa6b88fdd3ae743402ca91b7b1028071db24a4bffbf1bab49aad00420f98b1b8b19ff50428b782fff1b244348746fa2f55c1bc2c317d593d314f31bdb99bafe5564ae13ff44053404e1ff", + "cborBytes": [ + 217, 5, 11, 159, 27, 234, 115, 235, 65, 108, 63, 18, 181, 159, 191, 27, 29, 81, 201, 144, 37, 23, 209, 55, 67, 68, + 239, 156, 27, 127, 211, 120, 202, 24, 124, 77, 208, 27, 190, 138, 166, 184, 143, 221, 58, 231, 67, 64, 44, 169, + 27, 123, 16, 40, 7, 29, 178, 74, 75, 255, 191, 27, 171, 73, 170, 208, 4, 32, 249, 139, 27, 139, 25, 255, 80, 66, + 139, 120, 47, 255, 27, 36, 67, 72, 116, 111, 162, 245, 92, 27, 194, 195, 23, 213, 147, 211, 20, 243, 27, 219, 153, + 186, 254, 85, 100, 174, 19, 255, 68, 5, 52, 4, 225, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3457, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cb8276c7895f0330b9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2613429221231439976" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5375667064332387813" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17439124386559496505" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cd1da3230f4721c0" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9f49cb8276c7895f0330b99fd8669f1b2444c407b92030689f1b4a9a34b6a84c85e5ffff1bf204373baebb1139ff48cd1da3230f4721c0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 73, 203, 130, 118, 199, 137, 95, 3, 48, 185, 159, + 216, 102, 159, 27, 36, 68, 196, 7, 185, 32, 48, 104, 159, 27, 74, 154, 52, 182, 168, 76, 133, 229, 255, 255, 27, + 242, 4, 55, 59, 174, 187, 17, 57, 255, 72, 205, 29, 163, 35, 15, 71, 33, 192, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3458, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6000856754803776927" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "df84217441ba6edf50d58a5a" + } + ] + }, + "cborHex": "d8669f1b5347536cb2151d9f9fa04cdf84217441ba6edf50d58a5affff", + "cborBytes": [ + 216, 102, 159, 27, 83, 71, 83, 108, 178, 21, 29, 159, 159, 160, 76, 223, 132, 33, 116, 65, 186, 110, 223, 80, 213, + 138, 90, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3459, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17667585973163239292" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9812119600706842188" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "2b45" + }, + { + "_tag": "ByteArray", + "bytearray": "2ee0ee9798eb0c2cf2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16399660515783791732" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2826028692093416357" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a842a5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2278274170076976403" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20e8f1a5e15aaec1cd8dc0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2819872124301306874" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17ae5d2e973348bea9625d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8753656367101446107" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e64117fbe56ba10a26819cf8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9587103572147870612" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "887b4b489e9f4a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16416780069789474017" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78c487bc91546110a855f5" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18339775160814817568" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7fc4a6fc3865569df83dae" + }, + { + "_tag": "ByteArray", + "bytearray": "e702f8039eb2cd7b43eaf9" + }, + { + "_tag": "ByteArray", + "bytearray": "44014308c30a" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf52fdfd5f111a77c9fd8669f1b882ba6ca3dc76e4c80ff422b45492ee0ee9798eb0c2cf21be3974c59984ad474d8669f1b2738121f5d4a33a59f43a842a5bf1b1f9e0e497062d5134b20e8f1a5e15aaec1cd8dc01b272232c1b9016bfa4b17ae5d2e973348bea9625d1b797b3c1646eb07db4ce64117fbe56ba10a26819cf81b850c3be77ac09b9447887b4b489e9f4a1be3d41e7e5f839ce14b78c487bc91546110a855f5ffd8669f1bfe83f85728e651209f4b7fc4a6fc3865569df83dae4be702f8039eb2cd7b43eaf94644014308c30affffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 245, 47, 223, 213, 241, 17, 167, 124, 159, 216, 102, 159, 27, 136, 43, 166, 202, 61, 199, 110, + 76, 128, 255, 66, 43, 69, 73, 46, 224, 238, 151, 152, 235, 12, 44, 242, 27, 227, 151, 76, 89, 152, 74, 212, 116, + 216, 102, 159, 27, 39, 56, 18, 31, 93, 74, 51, 165, 159, 67, 168, 66, 165, 191, 27, 31, 158, 14, 73, 112, 98, 213, + 19, 75, 32, 232, 241, 165, 225, 90, 174, 193, 205, 141, 192, 27, 39, 34, 50, 193, 185, 1, 107, 250, 75, 23, 174, + 93, 46, 151, 51, 72, 190, 169, 98, 93, 27, 121, 123, 60, 22, 70, 235, 7, 219, 76, 230, 65, 23, 251, 229, 107, 161, + 10, 38, 129, 156, 248, 27, 133, 12, 59, 231, 122, 192, 155, 148, 71, 136, 123, 75, 72, 158, 159, 74, 27, 227, 212, + 30, 126, 95, 131, 156, 225, 75, 120, 196, 135, 188, 145, 84, 97, 16, 168, 85, 245, 255, 216, 102, 159, 27, 254, + 131, 248, 87, 40, 230, 81, 32, 159, 75, 127, 196, 166, 252, 56, 101, 86, 157, 248, 61, 174, 75, 231, 2, 248, 3, + 158, 178, 205, 123, 67, 234, 249, 70, 68, 1, 67, 8, 195, 10, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3460, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff0102" + } + ] + }, + "cborHex": "d87c9f1bffffffffffffffeb43ff0102ff", + "cborBytes": [216, 124, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 67, 255, 1, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3461, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "79969c81ce74d498a22f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "337133b7a689" + } + } + ] + } + ] + }, + "cborHex": "d905089fbf4a79969c81ce74d498a22f46337133b7a689ffff", + "cborBytes": [ + 217, 5, 8, 159, 191, 74, 121, 150, 156, 129, 206, 116, 212, 152, 162, 47, 70, 51, 113, 51, 183, 166, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3462, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13029230725962700747" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8e172af0" + } + ] + }, + "cborHex": "d8669f1bb4d120503d9c97cb9f448e172af0ffff", + "cborBytes": [216, 102, 159, 27, 180, 209, 32, 80, 61, 156, 151, 203, 159, 68, 142, 23, 42, 240, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3463, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "20cb8fd0cd2b03ed08" + } + ] + }, + "cborHex": "d8799f4920cb8fd0cd2b03ed08ff", + "cborBytes": [216, 121, 159, 73, 32, 203, 143, 208, 205, 43, 3, 237, 8, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3464, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5744895729824740381" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "274c55d1de0ef8b32acf" + } + ] + }, + "cborHex": "d8669f1b4fb9f83a7fdcb41d9f4a274c55d1de0ef8b32acfffff", + "cborBytes": [ + 216, 102, 159, 27, 79, 185, 248, 58, 127, 220, 180, 29, 159, 74, 39, 76, 85, 209, 222, 14, 248, 179, 42, 207, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3465, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5562096410458857248" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cf54" + }, + { + "_tag": "ByteArray", + "bytearray": "e06bfe54d785e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7165246038193950505" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b00c337151195025bc31" + }, + { + "_tag": "ByteArray", + "bytearray": "8a75c17a0a593518e17200e8" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1136402087978667684" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d79be2344f9e36" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5573654416280727717" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4906bb8f" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7451647066733876338" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79f4105d8669f1b4d3089374fe01f209f9f42cf5447e06bfe54d785e31b6370114f02d34f294ab00c337151195025bc314c8a75c17a0a593518e17200e8ffbf1b0fc54fad97fb0ea447d79be2344f9e361b4d5999293f3330a5444906bb8fff9f1bfffffffffffffffa1b67699186d4411472ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 65, 5, 216, 102, 159, 27, 77, 48, 137, 55, 79, + 224, 31, 32, 159, 159, 66, 207, 84, 71, 224, 107, 254, 84, 215, 133, 227, 27, 99, 112, 17, 79, 2, 211, 79, 41, 74, + 176, 12, 51, 113, 81, 25, 80, 37, 188, 49, 76, 138, 117, 193, 122, 10, 89, 53, 24, 225, 114, 0, 232, 255, 191, 27, + 15, 197, 79, 173, 151, 251, 14, 164, 71, 215, 155, 226, 52, 79, 158, 54, 27, 77, 89, 153, 41, 63, 51, 48, 165, 68, + 73, 6, 187, 143, 255, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 27, 103, 105, 145, 134, 212, 65, 20, 114, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3466, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16566049853333391642" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10043206276392340391" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c27896c" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f1be5e66e922759491abf1b8b60a2e5ae56cba7441c27896cffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 27, 229, 230, 110, 146, 39, 89, 73, 26, 191, 27, + 139, 96, 162, 229, 174, 86, 203, 167, 68, 28, 39, 137, 108, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3467, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13337132454493976407" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3011241585761143278" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14919365576985977096" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "788667338600771767" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12506446177609220539" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3186093898244511878" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a48a5351be6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3897178918337908018" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13108794157736696326" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b540a76069626d" + } + ] + }, + "cborHex": "d8669f1bb917034de07277579f1b29ca14449c2d49ee1bcf0c3bf23270a108bf1b0af1e8c4134070b741f11bad8fd2895af081bb1b2c37478511e75886460a48a5351be61b36158f93fdac0d32ffd8669f1bb5ebcad5459c9a0680ff47b540a76069626dffff", + "cborBytes": [ + 216, 102, 159, 27, 185, 23, 3, 77, 224, 114, 119, 87, 159, 27, 41, 202, 20, 68, 156, 45, 73, 238, 27, 207, 12, 59, + 242, 50, 112, 161, 8, 191, 27, 10, 241, 232, 196, 19, 64, 112, 183, 65, 241, 27, 173, 143, 210, 137, 90, 240, 129, + 187, 27, 44, 55, 71, 133, 17, 231, 88, 134, 70, 10, 72, 165, 53, 27, 230, 27, 54, 21, 143, 147, 253, 172, 13, 50, + 255, 216, 102, 159, 27, 181, 235, 202, 213, 69, 156, 154, 6, 128, 255, 71, 181, 64, 167, 96, 105, 98, 109, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3468, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12008072460808434517" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c539e13b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8677303105414214091" + } + } + ] + } + ] + }, + "cborHex": "d8669f1ba6a53e4817a333559f9f44c539e13b1b786bf933369bb1cbffffff", + "cborBytes": [ + 216, 102, 159, 27, 166, 165, 62, 72, 23, 163, 51, 85, 159, 159, 68, 197, 57, 225, 59, 27, 120, 107, 249, 51, 54, + 155, 177, 203, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3469, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14532529906228424200" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "84847907812647630" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16992257165190558157" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11391479989368842602" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f89" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11519047411264983272" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10234673401085006408" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12514378210992559708" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "343e9416beadb09a1571" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14110481116430180116" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9738025216279075473" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15931656482360838909" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "27a74c8b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3410069562669151543" + } + } + ] + }, + "cborHex": "d8669f1bc9adeaf3fc7c6e089fbf1b012d70b8fd1ba2ce1bebd09fdce744f1cd1b9e16aab2184ce96a420f891b9fdbe0970b5510e81b8e08dd3b8fcf92481badac00adcb19965c4a343e9416beadb09a15711bc3d27fd09aad9f141b87246a57061c5a911bdd189d2942aacafd41faff4427a74c8b1b2f5300332e443537ffff", + "cborBytes": [ + 216, 102, 159, 27, 201, 173, 234, 243, 252, 124, 110, 8, 159, 191, 27, 1, 45, 112, 184, 253, 27, 162, 206, 27, + 235, 208, 159, 220, 231, 68, 241, 205, 27, 158, 22, 170, 178, 24, 76, 233, 106, 66, 15, 137, 27, 159, 219, 224, + 151, 11, 85, 16, 232, 27, 142, 8, 221, 59, 143, 207, 146, 72, 27, 173, 172, 0, 173, 203, 25, 150, 92, 74, 52, 62, + 148, 22, 190, 173, 176, 154, 21, 113, 27, 195, 210, 127, 208, 154, 173, 159, 20, 27, 135, 36, 106, 87, 6, 28, 90, + 145, 27, 221, 24, 157, 41, 66, 170, 202, 253, 65, 250, 255, 68, 39, 167, 76, 139, 27, 47, 83, 0, 51, 46, 68, 53, + 55, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3470, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "76" + }, + { + "_tag": "ByteArray", + "bytearray": "2cba94af50ac8f46b1bc5a5f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5c973" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8016231421885926297" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7756f5f83ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ca0e41e50" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6d" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905049f9f41764c2cba94af50ac8f46b1bc5a5fbf43a5c9731b6f3f6001a2d5cb9946c7756f5f83ab451ca0e41e50ff416dff80ff", + "cborBytes": [ + 217, 5, 4, 159, 159, 65, 118, 76, 44, 186, 148, 175, 80, 172, 143, 70, 177, 188, 90, 95, 191, 67, 165, 201, 115, + 27, 111, 63, 96, 1, 162, 213, 203, 153, 70, 199, 117, 111, 95, 131, 171, 69, 28, 160, 228, 30, 80, 255, 65, 109, + 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3471, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11819833666113663665" + }, + "fields": [] + }, + "cborHex": "d8669f1ba4087c185ce872b180ff", + "cborBytes": [216, 102, 159, 27, 164, 8, 124, 24, 92, 232, 114, 177, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3472, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12731779731371279158" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1566180250520738029" + } + } + ] + }, + "cborHex": "d8669f1bb0b05e35b6e743369f1b15bc30a3ce8558edffff", + "cborBytes": [ + 216, 102, 159, 27, 176, 176, 94, 53, 182, 231, 67, 54, 159, 27, 21, 188, 48, 163, 206, 133, 88, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3473, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "94064686005636574" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36d7c4b43060a3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15337476756218003970" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "625a03ea3692" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3486006809228009487" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8edcc06bff50a75e31" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51acd0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0a4a30572b1bfc3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8584926417495068245" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4432561c52388115dfc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c0de34682781226" + } + } + ] + } + ] + }, + "cborHex": "d9050d9f9fbf1b014e2f5563464dde4736d7c4b43060a31bd4d9a9d92d2f42024142ffff0ca0bf46625a03ea36921b3060c8b92ca0e00f498edcc06bff50a75e314351acd048b0a4a30572b1bfc31b7723c91781a90e554ae4432561c52388115dfc488c0de34682781226ffff", + "cborBytes": [ + 217, 5, 13, 159, 159, 191, 27, 1, 78, 47, 85, 99, 70, 77, 222, 71, 54, 215, 196, 180, 48, 96, 163, 27, 212, 217, + 169, 217, 45, 47, 66, 2, 65, 66, 255, 255, 12, 160, 191, 70, 98, 90, 3, 234, 54, 146, 27, 48, 96, 200, 185, 44, + 160, 224, 15, 73, 142, 220, 192, 107, 255, 80, 167, 94, 49, 67, 81, 172, 208, 72, 176, 164, 163, 5, 114, 177, 191, + 195, 27, 119, 35, 201, 23, 129, 169, 14, 85, 74, 228, 67, 37, 97, 197, 35, 136, 17, 93, 252, 72, 140, 13, 227, 70, + 130, 120, 18, 38, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3474, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9679044271418152709" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9326169027971808598" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8d" + }, + { + "_tag": "ByteArray", + "bytearray": "bf821a52235178" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f1b8652df7bab2897051b816d35519b827d56418d47bf821a52235178ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 27, 134, 82, 223, 123, 171, 40, 151, 5, 27, 129, + 109, 53, 81, 155, 130, 125, 86, 65, 141, 71, 191, 130, 26, 82, 35, 81, 120, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3475, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1470298222550149267" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87b9fbf417c1b14678c7184fd6893ffa0ff", + "cborBytes": [216, 123, 159, 191, 65, 124, 27, 20, 103, 140, 113, 132, 253, 104, 147, 255, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3476, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10870427197976986561" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "2395012fee" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12981976192736422778" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4738203163870746771" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14676571448148567982" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e873f96eff40ef9d" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b96db83f14c29c3c19f9f80452395012feebf1bb4293e90daa1eb7a1b41c17aac6825d8931bcbada7f8e78927ae48e873f96eff40ef9dffffffff", + "cborBytes": [ + 216, 102, 159, 27, 150, 219, 131, 241, 76, 41, 195, 193, 159, 159, 128, 69, 35, 149, 1, 47, 238, 191, 27, 180, 41, + 62, 144, 218, 161, 235, 122, 27, 65, 193, 122, 172, 104, 37, 216, 147, 27, 203, 173, 167, 248, 231, 137, 39, 174, + 72, 232, 115, 249, 110, 255, 64, 239, 157, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3477, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7289430757146681962" + }, + "fields": [] + }, + "cborHex": "d8669f1b652942a70e88e26a80ff", + "cborBytes": [216, 102, 159, 27, 101, 41, 66, 167, 14, 136, 226, 106, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3478, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13453804352779526715" + } + } + ] + }, + "cborHex": "d905049f1bbab583c70d07223bff", + "cborBytes": [217, 5, 4, 159, 27, 186, 181, 131, 199, 13, 7, 34, 59, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3479, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1122418757887300561" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04fa015764e70370" + } + ] + }, + "cborHex": "d8669f1b0f93a1e9d91b93d19f4804fa015764e70370ffff", + "cborBytes": [ + 216, 102, 159, 27, 15, 147, 161, 233, 217, 27, 147, 209, 159, 72, 4, 250, 1, 87, 100, 231, 3, 112, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3480, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5313021382084166296" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15980787396662141306" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6156886088407087108" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1267013707075788820" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15480407851358585226" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17254326870514233433" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5413838503954829366" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "021271479e54820d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3aae75cca02cefe9499a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a6a14d1df7d48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e76ec6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "381ba874a1218550ffe8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5360127292659628213" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "840ab3f237b97e70e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c292bfa8bf715e0b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb6426aae329c89a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43662f" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5968810390288236311" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0748c70c513f43d1270e990f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34024aa9a983a41da0e3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4823545a6781" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "964793134049596664" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9491f22e7d8ab17c9492" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11559851919193446707" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa82fa359ca8b931ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7222205491109020516" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1662c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4697242019642154932" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b49bba4cc232e82989fd8669f1bddc72977a916217a9fd8669f1b5571a746de0c780480ff1b11955640efcda014bf1bd6d574ec0e65818a1bef73aedf137a7059ff1b4b21d16f838f5036bf48021271479e54820d4a3aae75cca02cefe9499a471a6a14d1df7d4843e76ec64a381ba874a1218550ffe81b4a62ff5f9dda78b549840ab3f237b97e70e748c292bfa8bf715e0b48cb6426aae329c89a4343662fffffffbf4204b51b52d5796d04ca7f174c0748c70c513f43d1270e990f4a34024aa9a983a41da0e3464823545a67811b0d63a23e64c314f84a9491f22e7d8ab17c94921ba06cd812e3a4993349aa82fa359ca8b931ce1b643a6da1186dc36443b1662c1b412ff4bad4cf1fb4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 73, 187, 164, 204, 35, 46, 130, 152, 159, 216, 102, 159, 27, 221, 199, 41, 119, 169, 22, 33, + 122, 159, 216, 102, 159, 27, 85, 113, 167, 70, 222, 12, 120, 4, 128, 255, 27, 17, 149, 86, 64, 239, 205, 160, 20, + 191, 27, 214, 213, 116, 236, 14, 101, 129, 138, 27, 239, 115, 174, 223, 19, 122, 112, 89, 255, 27, 75, 33, 209, + 111, 131, 143, 80, 54, 191, 72, 2, 18, 113, 71, 158, 84, 130, 13, 74, 58, 174, 117, 204, 160, 44, 239, 233, 73, + 154, 71, 26, 106, 20, 209, 223, 125, 72, 67, 231, 110, 198, 74, 56, 27, 168, 116, 161, 33, 133, 80, 255, 232, 27, + 74, 98, 255, 95, 157, 218, 120, 181, 73, 132, 10, 179, 242, 55, 185, 126, 112, 231, 72, 194, 146, 191, 168, 191, + 113, 94, 11, 72, 203, 100, 38, 170, 227, 41, 200, 154, 67, 67, 102, 47, 255, 255, 255, 191, 66, 4, 181, 27, 82, + 213, 121, 109, 4, 202, 127, 23, 76, 7, 72, 199, 12, 81, 63, 67, 209, 39, 14, 153, 15, 74, 52, 2, 74, 169, 169, + 131, 164, 29, 160, 227, 70, 72, 35, 84, 90, 103, 129, 27, 13, 99, 162, 62, 100, 195, 20, 248, 74, 148, 145, 242, + 46, 125, 138, 177, 124, 148, 146, 27, 160, 108, 216, 18, 227, 164, 153, 51, 73, 170, 130, 250, 53, 156, 168, 185, + 49, 206, 27, 100, 58, 109, 161, 24, 109, 195, 100, 67, 177, 102, 44, 27, 65, 47, 244, 186, 212, 207, 31, 180, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3481, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1848526144780958296" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e91b86134769927ee" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f1b19a748bc19b0fa58499e91b86134769927ee9f03ff03ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 27, 25, 167, 72, 188, 25, 176, 250, 88, 73, 158, + 145, 184, 97, 52, 118, 153, 39, 238, 159, 3, 255, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3482, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2714e4f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f80bf442714e4f94107ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 128, 191, 68, 39, 20, 228, 249, 65, 7, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3483, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4847311697190293503" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5859122098785385512" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "832bb5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6394403191908433394" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd5568be26f0fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15772595410301081878" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5cdbd" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2018879029496667328" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17083151791101683874" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10669399076010050217" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "931b595df39dc491f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3487211339471181464" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2436374686321716841" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6771188673771728624" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2593107493498756875" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc72" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5591064990288425130" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17183647840393581443" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10020562744936334185" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d887c06" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3740899694688570000" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "248afb30fbff78" + } + ] + }, + "cborHex": "d8669f1b43451c4e729f8fff9f9fbf1b514fc88181be7c2843832bb51b58bd7bd2f4537df247cd5568be26f0fe1bdae383f578f3d91643f5cdbdffbf1b1c047fc7e5a25cc01bed138c0b28b1a8a21b941151ee4475c2a9411c49931b595df39dc491f51b3065103cb9e4d698ff80bf1b21cfbdde65f5ae691b5df81839374feef01b23fc9186c6659f0b42cc721b4d9773fc6643b0aa1bee7894ab001153831b8b1030b9ad718369444d887c06ff1b33ea5873c2478a90ff47248afb30fbff78ffff", + "cborBytes": [ + 216, 102, 159, 27, 67, 69, 28, 78, 114, 159, 143, 255, 159, 159, 191, 27, 81, 79, 200, 129, 129, 190, 124, 40, 67, + 131, 43, 181, 27, 88, 189, 123, 210, 244, 83, 125, 242, 71, 205, 85, 104, 190, 38, 240, 254, 27, 218, 227, 131, + 245, 120, 243, 217, 22, 67, 245, 205, 189, 255, 191, 27, 28, 4, 127, 199, 229, 162, 92, 192, 27, 237, 19, 140, 11, + 40, 177, 168, 162, 27, 148, 17, 81, 238, 68, 117, 194, 169, 65, 28, 73, 147, 27, 89, 93, 243, 157, 196, 145, 245, + 27, 48, 101, 16, 60, 185, 228, 214, 152, 255, 128, 191, 27, 33, 207, 189, 222, 101, 245, 174, 105, 27, 93, 248, + 24, 57, 55, 79, 238, 240, 27, 35, 252, 145, 134, 198, 101, 159, 11, 66, 204, 114, 27, 77, 151, 115, 252, 102, 67, + 176, 170, 27, 238, 120, 148, 171, 0, 17, 83, 131, 27, 139, 16, 48, 185, 173, 113, 131, 105, 68, 77, 136, 124, 6, + 255, 27, 51, 234, 88, 115, 194, 71, 138, 144, 255, 71, 36, 138, 251, 48, 251, 255, 120, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3484, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13728749804893627583" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c56c0600b406057e" + } + ] + }, + "cborHex": "d8669f1bbe865135a2e5e4bf9f48c56c0600b406057effff", + "cborBytes": [ + 216, 102, 159, 27, 190, 134, 81, 53, 162, 229, 228, 191, 159, 72, 197, 108, 6, 0, 180, 6, 5, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3485, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4390836505856958624" + }, + "fields": [] + }, + "cborHex": "d8669f1b3cef6289d66be0a080ff", + "cborBytes": [216, 102, 159, 27, 60, 239, 98, 137, 214, 107, 224, 160, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3486, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7027770807442735357" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15977972394550812931" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb230ca3a4debc3eae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3a4" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6187a8508c7c00fd9f9f1bddbd293ce832e103ffbf49eb230ca3a4debc3eae42c3a4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 97, 135, 168, 80, 140, 124, 0, 253, 159, 159, 27, 221, 189, 41, 60, 232, 50, 225, 3, 255, 191, + 73, 235, 35, 12, 163, 164, 222, 188, 62, 174, 66, 195, 164, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3487, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18024628671344788864" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5d718e4650" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13642882880116668528" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15128538621653629026" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10893795643944124259" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e93d233c3acf2996c2c090" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3032175553359510384" + } + } + ] + }, + "cborHex": "d9050b9fd8669f1bfa2458472bd3c5809f455d718e46501bbd5541b2459cb8701bd1f35db8d27138621b972e896b9cfcbf63ffff4be93d233c3acf2996c2c0901b2a147399c29dfb70ff", + "cborBytes": [ + 217, 5, 11, 159, 216, 102, 159, 27, 250, 36, 88, 71, 43, 211, 197, 128, 159, 69, 93, 113, 142, 70, 80, 27, 189, + 85, 65, 178, 69, 156, 184, 112, 27, 209, 243, 93, 184, 210, 113, 56, 98, 27, 151, 46, 137, 107, 156, 252, 191, 99, + 255, 255, 75, 233, 61, 35, 60, 58, 207, 41, 150, 194, 192, 144, 27, 42, 20, 115, 153, 194, 157, 251, 112, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3488, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07f166f602fbf8fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + }, + "cborHex": "d905079f4807f166f602fbf8fb08ff", + "cborBytes": [217, 5, 7, 159, 72, 7, 241, 102, 246, 2, 251, 248, 251, 8, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3489, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9614664649229930449" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13863224704697783412" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "546cfaafb13ce6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5242945498914521685" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13854999446698371402" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2323370252190347219" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "559475059383950726" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17150508599415722524" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebf5df40b14a0d88af7a6ed7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11353076168561037289" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13360779788315282223" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3781929334573575333" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15564559424373503969" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9047811311581148546" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16152524901880128605" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09fd87b9f129f1b856e268ecbdb0fd1ffff9fd8669f1bc064116b1cee547480ff9f47546cfaafb13ce61b48c2af27278882551bc046d896ffb0a94affffbf1b203e44ef4383efd31b07c3a79a2f455d8641711bee02d8b43174d21c4cebf5df40b14a0d88af7a6ed71b9d8e3a9fc7088fe9ffbf1bb96b066dd4c04b2f1b347c1cb138e32ca51bd8006c54f73db7e11b7d904873558e3582ff1be0294bd18a37645dffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 216, 123, 159, 18, 159, 27, 133, 110, 38, 142, + 203, 219, 15, 209, 255, 255, 159, 216, 102, 159, 27, 192, 100, 17, 107, 28, 238, 84, 116, 128, 255, 159, 71, 84, + 108, 250, 175, 177, 60, 230, 27, 72, 194, 175, 39, 39, 136, 130, 85, 27, 192, 70, 216, 150, 255, 176, 169, 74, + 255, 255, 191, 27, 32, 62, 68, 239, 67, 131, 239, 211, 27, 7, 195, 167, 154, 47, 69, 93, 134, 65, 113, 27, 238, 2, + 216, 180, 49, 116, 210, 28, 76, 235, 245, 223, 64, 177, 74, 13, 136, 175, 122, 110, 215, 27, 157, 142, 58, 159, + 199, 8, 143, 233, 255, 191, 27, 185, 107, 6, 109, 212, 192, 75, 47, 27, 52, 124, 28, 177, 56, 227, 44, 165, 27, + 216, 0, 108, 84, 247, 61, 183, 225, 27, 125, 144, 72, 115, 85, 142, 53, 130, 255, 27, 224, 41, 75, 209, 138, 55, + 100, 93, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3490, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10023476608335858199" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff4174233fc55c5cac266d3d" + } + ] + }, + "cborHex": "d8669f1b8b1a8ade5e4bca179f4cff4174233fc55c5cac266d3dffff", + "cborBytes": [ + 216, 102, 159, 27, 139, 26, 138, 222, 94, 75, 202, 23, 159, 76, 255, 65, 116, 35, 63, 197, 92, 92, 172, 38, 109, + 61, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3491, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6482781921954589972" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2536809641986444484" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8592889599998572489" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd183ae8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8660716212594976112" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15314509263768899812" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9247239264332790662" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6b3f74030b7557bc4287e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16008704928230466662" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8738647850385416756" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9115812779433729842" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13674353951635840934" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "369612048057444583" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2b88a5133040a34a36b8da6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1858595697178058286" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c21aba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3631855208859960643" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82975b9d6c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5908774100001164411" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a48835fdc" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905089f9fbf1b59f777cf8e6d6d141b23348eedc5634cc41b774013906a1037c944fd183ae81b78310b824830a5701bd4881109205fd0e41b8054cb1def99bb864ba6b3f74030b7557bc4287e1bde2a58508138e4661b7945e9ebab742234ffd8669f1b7e81df6cdd1d1f329f1bbdc510781c369fa6ffffbf1b052120330d2b28e74ce2b88a5133040a34a36b8da61b19cb0ef0775e1e2e43c21aba1b3266f111efc005434582975b9d6c1b52002ebce8990c7b455a48835fdcffffff", + "cborBytes": [ + 217, 5, 8, 159, 159, 191, 27, 89, 247, 119, 207, 142, 109, 109, 20, 27, 35, 52, 142, 237, 197, 99, 76, 196, 27, + 119, 64, 19, 144, 106, 16, 55, 201, 68, 253, 24, 58, 232, 27, 120, 49, 11, 130, 72, 48, 165, 112, 27, 212, 136, + 17, 9, 32, 95, 208, 228, 27, 128, 84, 203, 29, 239, 153, 187, 134, 75, 166, 179, 247, 64, 48, 183, 85, 123, 196, + 40, 126, 27, 222, 42, 88, 80, 129, 56, 228, 102, 27, 121, 69, 233, 235, 171, 116, 34, 52, 255, 216, 102, 159, 27, + 126, 129, 223, 108, 221, 29, 31, 50, 159, 27, 189, 197, 16, 120, 28, 54, 159, 166, 255, 255, 191, 27, 5, 33, 32, + 51, 13, 43, 40, 231, 76, 226, 184, 138, 81, 51, 4, 10, 52, 163, 107, 141, 166, 27, 25, 203, 14, 240, 119, 94, 30, + 46, 67, 194, 26, 186, 27, 50, 102, 241, 17, 239, 192, 5, 67, 69, 130, 151, 91, 157, 108, 27, 82, 0, 46, 188, 232, + 153, 12, 123, 69, 90, 72, 131, 95, 220, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3492, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10287393166598834804" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13728835681934715946" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7926346145973728546" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ef" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7201112762176255115" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3292936595043563843" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10061516639154414517" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5845758143874912460" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17762746830890847792" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1791081714421314601" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c6d7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5019441705186941303" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11472528104908057944" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9999301527096774143" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1bbf89a4dcee778fcb" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6750896569169000006" + } + } + ] + }, + "cborHex": "d8669f1b8ec429947fe78a749fd8669f1bbe869f50716d2c2a9fa0d8669f1b6e0009d2fd8cf5229f41ef1b63ef7de7710c348b1b2db2dc62ef74b943ffff1b8ba1b0133a7b23b51b51204e0f4882d0cc1bf681f421b271ce30ffffd8669f1b18db335467c7b4299f42c6d71b45a8a3a30072d9779f1b9f369b8700baed58ff1b8ac4a7c2a49fcdff491bbf89a4dcee778fcbffff1b5db000a970b8b646ffff", + "cborBytes": [ + 216, 102, 159, 27, 142, 196, 41, 148, 127, 231, 138, 116, 159, 216, 102, 159, 27, 190, 134, 159, 80, 113, 109, 44, + 42, 159, 160, 216, 102, 159, 27, 110, 0, 9, 210, 253, 140, 245, 34, 159, 65, 239, 27, 99, 239, 125, 231, 113, 12, + 52, 139, 27, 45, 178, 220, 98, 239, 116, 185, 67, 255, 255, 27, 139, 161, 176, 19, 58, 123, 35, 181, 27, 81, 32, + 78, 15, 72, 130, 208, 204, 27, 246, 129, 244, 33, 178, 113, 206, 48, 255, 255, 216, 102, 159, 27, 24, 219, 51, 84, + 103, 199, 180, 41, 159, 66, 198, 215, 27, 69, 168, 163, 163, 0, 114, 217, 119, 159, 27, 159, 54, 155, 135, 0, 186, + 237, 88, 255, 27, 138, 196, 167, 194, 164, 159, 205, 255, 73, 27, 191, 137, 164, 220, 238, 119, 143, 203, 255, + 255, 27, 93, 176, 0, 169, 112, 184, 182, 70, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3493, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15546154276351593282" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10730704835008585782" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c259d2170388e6d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12195464850292531140" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13642870197885343474" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "476622ace4f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "824bd3" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2416776665733183367" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16984966786519794492" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10994989999259194587" + } + }, + { + "_tag": "ByteArray", + "bytearray": "59ec95c766fc5b7b2d95e5cd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11137015760381252328" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2178667159100270378" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bd7bf08f2815b4b429fbf1b94eb1f319840e036482c259d2170388e6d1ba93efeaac072dfc41bbd55362975b816f246476622ace4f543824bd3ffd8669f1b218a1d92a67ab7879fa0d8669f1bebb6b94d5852033c9f1b98960d267ed114db4c59ec95c766fc5b7b2d95e5cd1b9a8ea0d3df7392e81b1e3c2e3cf5fb272affffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 215, 191, 8, 242, 129, 91, 75, 66, 159, 191, 27, 148, 235, 31, 49, 152, 64, 224, 54, 72, 44, + 37, 157, 33, 112, 56, 142, 109, 27, 169, 62, 254, 170, 192, 114, 223, 196, 27, 189, 85, 54, 41, 117, 184, 22, 242, + 70, 71, 102, 34, 172, 228, 245, 67, 130, 75, 211, 255, 216, 102, 159, 27, 33, 138, 29, 146, 166, 122, 183, 135, + 159, 160, 216, 102, 159, 27, 235, 182, 185, 77, 88, 82, 3, 60, 159, 27, 152, 150, 13, 38, 126, 209, 20, 219, 76, + 89, 236, 149, 199, 102, 252, 91, 123, 45, 149, 229, 205, 27, 154, 142, 160, 211, 223, 115, 146, 232, 27, 30, 60, + 46, 60, 245, 251, 39, 42, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3494, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16122774411553650622" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06954df45bcd568d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d2336d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff8fc630e97a02ec87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf5daeb57761e048b54b14" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "919110780548378215" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "71" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7624146192922128725" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10341383272154988410" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3932371472790524986" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5456712469067965510" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff066561" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6873386941264166300" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee4f4825637c5b0a0c56" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3485793720156097987" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3269968558163480" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5227019208951775971" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4612349911424877183" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3461621608998279242" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7bb5c1f587bcaa" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d542080b8db436eb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4243630064238021746" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6194248118343473536" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bdfbf99e7ba69b7be9fbf4806954df45bcd568d449d2336d349ff8fc630e97a02ec874bbf5daeb57761e048b54b14ffd8669f1bfffffffffffffffe9f1b0cc156629fd16e679f41711b69ce689168c53155ffffffd8669f1b8f83f94b86f6ff7a9fbf1b36929705188f143a0b1b4bba2314683da44644ff0665611b5f632d019ddbfd9c4aee4f4825637c5b0a0c561bfffffffffffffffd1b306006eb82310dc3ff1b000b9e04e2560618ffffd8669f1b488a1a46cfb6c2e39f1b40025bcea248c27fd8669f1b300a26834f28984a9f477bb5c1f587bcaaffffffffd8669f1bfffffffffffffff59fbf0148d542080b8db436eb1b3ae4670f49134c721b55f663d8587e9980ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 223, 191, 153, 231, 186, 105, 183, 190, 159, 191, 72, 6, 149, 77, 244, 91, 205, 86, 141, 68, + 157, 35, 54, 211, 73, 255, 143, 198, 48, 233, 122, 2, 236, 135, 75, 191, 93, 174, 181, 119, 97, 224, 72, 181, 75, + 20, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 27, 12, 193, 86, 98, 159, 209, 110, 103, + 159, 65, 113, 27, 105, 206, 104, 145, 104, 197, 49, 85, 255, 255, 255, 216, 102, 159, 27, 143, 131, 249, 75, 134, + 246, 255, 122, 159, 191, 27, 54, 146, 151, 5, 24, 143, 20, 58, 11, 27, 75, 186, 35, 20, 104, 61, 164, 70, 68, 255, + 6, 101, 97, 27, 95, 99, 45, 1, 157, 219, 253, 156, 74, 238, 79, 72, 37, 99, 124, 91, 10, 12, 86, 27, 255, 255, + 255, 255, 255, 255, 255, 253, 27, 48, 96, 6, 235, 130, 49, 13, 195, 255, 27, 0, 11, 158, 4, 226, 86, 6, 24, 255, + 255, 216, 102, 159, 27, 72, 138, 26, 70, 207, 182, 194, 227, 159, 27, 64, 2, 91, 206, 162, 72, 194, 127, 216, 102, + 159, 27, 48, 10, 38, 131, 79, 40, 152, 74, 159, 71, 123, 181, 193, 245, 135, 188, 170, 255, 255, 255, 255, 216, + 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 191, 1, 72, 213, 66, 8, 11, 141, 180, 54, 235, 27, 58, + 228, 103, 15, 73, 19, 76, 114, 27, 85, 246, 99, 216, 88, 126, 153, 128, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3495, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13507227824550436142" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed" + } + ] + }, + "cborHex": "d8669f1bbb7350245e99dd2e9f41edffff", + "cborBytes": [216, 102, 159, 27, 187, 115, 80, 36, 94, 153, 221, 46, 159, 65, 237, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3496, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14390485189917269780" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15761504059563561116" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6b54c1" + }, + { + "_tag": "ByteArray", + "bytearray": "fb5f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "81069079911210430" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "040203620502" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "105092873d27af09a07c79" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13291470880619450278" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14343512824627509932" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15622264955306787700" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10684400722174429025" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16624987541897294219" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16202255939163625406" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a1a02b5e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db3408" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cca29a38" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "839338953845163299" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0323" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13151463777204986292" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f80d8669f1bc7b546094289df149fd8669f1bdabc1c6f2429d09c9f436b54c142fb5f1b012003e60e601dbeffff0fffff460402036205029f4b105092873d27af09a07c79bf1bb874ca583dc54fa61bc70e64eb372ebaac1bd8cd6f34e018437441e4ffbf1b94469dd9332247611be6b7d2161e15318b1be0d9f9eef5cf97be452a1a02b5e543db340844cca29a38ff418ad8669f1b0ba5ee54de16c52380ffff9f420323d905009f1bb68362a03cb861b4ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 128, 216, 102, 159, 27, 199, 181, 70, 9, 66, 137, + 223, 20, 159, 216, 102, 159, 27, 218, 188, 28, 111, 36, 41, 208, 156, 159, 67, 107, 84, 193, 66, 251, 95, 27, 1, + 32, 3, 230, 14, 96, 29, 190, 255, 255, 15, 255, 255, 70, 4, 2, 3, 98, 5, 2, 159, 75, 16, 80, 146, 135, 61, 39, + 175, 9, 160, 124, 121, 191, 27, 184, 116, 202, 88, 61, 197, 79, 166, 27, 199, 14, 100, 235, 55, 46, 186, 172, 27, + 216, 205, 111, 52, 224, 24, 67, 116, 65, 228, 255, 191, 27, 148, 70, 157, 217, 51, 34, 71, 97, 27, 230, 183, 210, + 22, 30, 21, 49, 139, 27, 224, 217, 249, 238, 245, 207, 151, 190, 69, 42, 26, 2, 181, 229, 67, 219, 52, 8, 68, 204, + 162, 154, 56, 255, 65, 138, 216, 102, 159, 27, 11, 165, 238, 84, 222, 22, 197, 35, 128, 255, 255, 159, 66, 3, 35, + 217, 5, 0, 159, 27, 182, 131, 98, 160, 60, 184, 97, 180, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3497, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12439452678679859858" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6848356124116649095" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e901f8030401a7fb7700" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11105683092813209181" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17598216169953754910" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1301d300d3004b6c7cfda0aa" + } + ] + }, + "cborHex": "d8669f1baca1d04de0fe92929fbf1b5f0a3f9c595804874ae901f8030401a7fb77001b9a1f4feeb7315e5d1bf4396c5e02a0ff1eff4c1301d300d3004b6c7cfda0aaffff", + "cborBytes": [ + 216, 102, 159, 27, 172, 161, 208, 77, 224, 254, 146, 146, 159, 191, 27, 95, 10, 63, 156, 89, 88, 4, 135, 74, 233, + 1, 248, 3, 4, 1, 167, 251, 119, 0, 27, 154, 31, 79, 238, 183, 49, 94, 93, 27, 244, 57, 108, 94, 2, 160, 255, 30, + 255, 76, 19, 1, 211, 0, 211, 0, 75, 108, 124, 253, 160, 170, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3498, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12969129377997758873" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39304c8c28a050ea329216cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df21a205b2dbdd8a9ec1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16588649742746761841" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12792514109391865046" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12077568790309917056" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12027000556897722400" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d87a9fbf1bb3fb9a74b5a3a1994c39304c8c28a050ea329216cd4adf21a205b2dbdd8a9ec11be636b90cf3cbba71ff9f9f1bb18823ce0a7984d61ba79c24d338c451801ba6e87d48e3506020ffa0ffff", + "cborBytes": [ + 216, 122, 159, 191, 27, 179, 251, 154, 116, 181, 163, 161, 153, 76, 57, 48, 76, 140, 40, 160, 80, 234, 50, 146, + 22, 205, 74, 223, 33, 162, 5, 178, 219, 221, 138, 158, 193, 27, 230, 54, 185, 12, 243, 203, 186, 113, 255, 159, + 159, 27, 177, 136, 35, 206, 10, 121, 132, 214, 27, 167, 156, 36, 211, 56, 196, 81, 128, 27, 166, 232, 125, 72, + 227, 80, 96, 32, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3499, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17389808171256184995" + }, + "fields": [] + }, + "cborHex": "d8669f1bf155026587e900a380ff", + "cborBytes": [216, 102, 159, 27, 241, 85, 2, 101, 135, 233, 0, 163, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3500, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8056143695478092851" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c8c67caed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16827121587471165761" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6fcd2c01fc7974339fbf458c8c67caed1be985f1ee0d86a941ffffff", + "cborBytes": [ + 216, 102, 159, 27, 111, 205, 44, 1, 252, 121, 116, 51, 159, 191, 69, 140, 140, 103, 202, 237, 27, 233, 133, 241, + 238, 13, 134, 169, 65, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3501, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "386098651540173501" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9653171992669955094" + } + } + ] + }, + "cborHex": "d8669f1b055bb2ad8d4f32bd9f1b85f6f4c85ad7a416ffff", + "cborBytes": [ + 216, 102, 159, 27, 5, 91, 178, 173, 141, 79, 50, 189, 159, 27, 133, 246, 244, 200, 90, 215, 164, 22, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3502, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16211133283209044099" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14620211093836644475" + } + }, + { + "_tag": "ByteArray", + "bytearray": "34d61d518489c58b55263333" + }, + { + "_tag": "ByteArray", + "bytearray": "f3abbe" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4226061049143545252" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f3898a9437" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7517277096471474419" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4836951311565223746" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6983626831281952922" + } + } + ] + }, + "cborHex": "d8669f1be0f983d4b02fe0839f9f9f1bcae56c87555bc07b4c34d61d518489c58b5526333343f3abbeffd8669f1b3aa5fc223150cda49f45f3898a94371b6852bbb0e55cb0f31b43204d9731b47742ffffff1b60ead39a2a72989affff", + "cborBytes": [ + 216, 102, 159, 27, 224, 249, 131, 212, 176, 47, 224, 131, 159, 159, 159, 27, 202, 229, 108, 135, 85, 91, 192, 123, + 76, 52, 214, 29, 81, 132, 137, 197, 139, 85, 38, 51, 51, 67, 243, 171, 190, 255, 216, 102, 159, 27, 58, 165, 252, + 34, 49, 80, 205, 164, 159, 69, 243, 137, 138, 148, 55, 27, 104, 82, 187, 176, 229, 92, 176, 243, 27, 67, 32, 77, + 151, 49, 180, 119, 66, 255, 255, 255, 27, 96, 234, 211, 154, 42, 114, 152, 154, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3503, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1434c9199183444273c8d67c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7265661484563414051" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fe0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "521e05733da454be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "771280e054c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1851633087064680807" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfcf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1435963370285887627" + } + } + } + ] + } + ] + }, + "cborHex": "d87c9fd8669f1bfffffffffffffffa80ffbf4c1434c9199183444273c8d67c1b64d4d0a005a3bc23426fe048521e05733da454be46771280e054c5413a41a91b19b2527b78d9a96742dfcf1b13ed9113c45cf08bffff", + "cborBytes": [ + 216, 124, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 128, 255, 191, 76, 20, 52, 201, 25, 145, + 131, 68, 66, 115, 200, 214, 124, 27, 100, 212, 208, 160, 5, 163, 188, 35, 66, 111, 224, 72, 82, 30, 5, 115, 61, + 164, 84, 190, 70, 119, 18, 128, 224, 84, 197, 65, 58, 65, 169, 27, 25, 178, 82, 123, 120, 217, 169, 103, 66, 223, + 207, 27, 19, 237, 145, 19, 196, 92, 240, 139, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3504, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "592725c0" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "533879dff9107908da" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18079867075688789667" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9955165027612952227" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe9e549ed1d43f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8978259450ae415" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7514842763293830465" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f91b8f307888512f45b3" + }, + { + "_tag": "ByteArray", + "bytearray": "03b89a44d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "624707457877344628" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9578592766305973747" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10884206405103776168" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10899493963895944853" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "190e6a02" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14530813398563004964" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3418a120b93c5a" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4744397442627315992" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "153016341780452928" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7974846995459178052" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7422645077809607810" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9697950759853169260" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18ee22aa202e7f" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6593135817994488957" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1363435661591470912" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1d45ff02d132f4ec" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4256932828717241783" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d9050b9f44592725c08049533879dff9107908dad8669f1bfae8975068b5f6a39f1b8a27d9d90f4306a3bf47fe9e549ed1d43f48c8978259450ae415ffd8669f1b684a15ad890b2d419f4af91b8f307888512f45b34503b89a44d61b08ab681f83510174ffffbf1b84edff5f13cb35f31b970c780ef63df1a81b9742c8031d88369544190e6a021bc9a7d1cc66d5a224473418a120b93c5affbf1b41d77c565112a9181b021f9f8d58a756401b6eac5916fe6f7e441b6702885f14a4b4821b86960ad58a471a6c4718ee22aa202e7fffffffd8669f1b5b7f861833774c7d9f1b12ebe582ab426340481d45ff02d132f4ecd8669f1b3b13a9da8063d5b780ffffffff", + "cborBytes": [ + 217, 5, 11, 159, 68, 89, 39, 37, 192, 128, 73, 83, 56, 121, 223, 249, 16, 121, 8, 218, 216, 102, 159, 27, 250, + 232, 151, 80, 104, 181, 246, 163, 159, 27, 138, 39, 217, 217, 15, 67, 6, 163, 191, 71, 254, 158, 84, 158, 209, + 212, 63, 72, 200, 151, 130, 89, 69, 10, 228, 21, 255, 216, 102, 159, 27, 104, 74, 21, 173, 137, 11, 45, 65, 159, + 74, 249, 27, 143, 48, 120, 136, 81, 47, 69, 179, 69, 3, 184, 154, 68, 214, 27, 8, 171, 104, 31, 131, 81, 1, 116, + 255, 255, 191, 27, 132, 237, 255, 95, 19, 203, 53, 243, 27, 151, 12, 120, 14, 246, 61, 241, 168, 27, 151, 66, 200, + 3, 29, 136, 54, 149, 68, 25, 14, 106, 2, 27, 201, 167, 209, 204, 102, 213, 162, 36, 71, 52, 24, 161, 32, 185, 60, + 90, 255, 191, 27, 65, 215, 124, 86, 81, 18, 169, 24, 27, 2, 31, 159, 141, 88, 167, 86, 64, 27, 110, 172, 89, 22, + 254, 111, 126, 68, 27, 103, 2, 136, 95, 20, 164, 180, 130, 27, 134, 150, 10, 213, 138, 71, 26, 108, 71, 24, 238, + 34, 170, 32, 46, 127, 255, 255, 255, 216, 102, 159, 27, 91, 127, 134, 24, 51, 119, 76, 125, 159, 27, 18, 235, 229, + 130, 171, 66, 99, 64, 72, 29, 69, 255, 2, 209, 50, 244, 236, 216, 102, 159, 27, 59, 19, 169, 218, 128, 99, 213, + 183, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3505, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1438238278619983669" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2293cbb44c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "ByteArray", + "bytearray": "000f339556bc34fa22" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d78cff05e91403" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fe4422fe0601" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5185302507049954613" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "38" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15299438469938681571" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "48041e1fde" + } + ] + } + ] + }, + "cborHex": "d8669f1b13f5a61823836f359fd9050a9f452293cbb44c9f1149000f339556bc34fa22ff47d78cff05e91403ff46fe4422fe06019fd8669f1b47f5e52841a7ad359f41381bd452863a7fa416e3419bffff4548041e1fdeffffff", + "cborBytes": [ + 216, 102, 159, 27, 19, 245, 166, 24, 35, 131, 111, 53, 159, 217, 5, 10, 159, 69, 34, 147, 203, 180, 76, 159, 17, + 73, 0, 15, 51, 149, 86, 188, 52, 250, 34, 255, 71, 215, 140, 255, 5, 233, 20, 3, 255, 70, 254, 68, 34, 254, 6, 1, + 159, 216, 102, 159, 27, 71, 245, 229, 40, 65, 167, 173, 53, 159, 65, 56, 27, 212, 82, 134, 58, 127, 164, 22, 227, + 65, 155, 255, 255, 69, 72, 4, 30, 31, 222, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3506, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4179910696312374975" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18242891789967384710" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b3a0206a1d68e06bf9f9fd8669f1bfd2bc56d90e5608680ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 58, 2, 6, 161, 214, 142, 6, 191, 159, 159, 216, 102, 159, 27, 253, 43, 197, 109, 144, 229, 96, + 134, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3507, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10400395112660806156" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10626717132152092867" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b9055a04055db2a0c9f1b9379aeedce7bb8c3a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 144, 85, 160, 64, 85, 219, 42, 12, 159, 27, 147, 121, 174, 237, 206, 123, 184, 195, 160, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3508, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0602" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f420602ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 66, 6, 2, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3509, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6201061246262904413" + }, + "fields": [] + }, + "cborHex": "d8669f1b560e98594df1065d80ff", + "cborBytes": [216, 102, 159, 27, 86, 14, 152, 89, 77, 241, 6, 93, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3510, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16089197246860784907" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "61baf1e9e673697603710a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "611033002910232185" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f385d952286d0b3987" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2488715307083620542" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2707840415331980443" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4468449692680862253" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18163652515805244250" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8985459464345610277" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e64335ee95" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bdf484fa6dc54750b9f4b61baf1e9e673697603710abf1b087ad3475c812e7949f385d952286d0b39871bfffffffffffffffe00ffd8669f1b2289b162d1cbe0be9fd8669f1b25942e82d04f149b9f1b3e031f5214f23a2d1bfc1241ba5c33ab5a1b7cb2c3c69bfde82545e64335ee95ffffa0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 223, 72, 79, 166, 220, 84, 117, 11, 159, 75, 97, 186, 241, 233, 230, 115, 105, 118, 3, 113, 10, + 191, 27, 8, 122, 211, 71, 92, 129, 46, 121, 73, 243, 133, 217, 82, 40, 109, 11, 57, 135, 27, 255, 255, 255, 255, + 255, 255, 255, 254, 0, 255, 216, 102, 159, 27, 34, 137, 177, 98, 209, 203, 224, 190, 159, 216, 102, 159, 27, 37, + 148, 46, 130, 208, 79, 20, 155, 159, 27, 62, 3, 31, 82, 20, 242, 58, 45, 27, 252, 18, 65, 186, 92, 51, 171, 90, + 27, 124, 178, 195, 198, 155, 253, 232, 37, 69, 230, 67, 53, 238, 149, 255, 255, 160, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3511, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "944379995374046205" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2005568068813183313" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8464750542952537711" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8598439040279477197" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1347956400478887663" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12478112550816330704" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "971074288288224852" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e877dad30a9cca" + }, + { + "_tag": "ByteArray", + "bytearray": "e9d3c899e1bf" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5436394066467060665" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3750379527716230509" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11603397410641897645" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e1fce565ae4857123e2477" + } + ] + }, + "cborHex": "d8669f1b0d1b1c9a2d414bfd9fd8669f1b1bd535885a79d9519f9f1b7578d5c548fb1e6fffd8669f1b7753cac02ab57bcd9f1b12b4e73457421eef1bad2b2940cac033d01b0d79f2eb93ef565447e877dad30a9cca46e9d3c899e1bfffffffffd8669f1b4b71f399a6cf7bb980ff1b340c064f626c556dd8669f1ba1078c77b0ff68ad80ff4be1fce565ae4857123e2477ffff", + "cborBytes": [ + 216, 102, 159, 27, 13, 27, 28, 154, 45, 65, 75, 253, 159, 216, 102, 159, 27, 27, 213, 53, 136, 90, 121, 217, 81, + 159, 159, 27, 117, 120, 213, 197, 72, 251, 30, 111, 255, 216, 102, 159, 27, 119, 83, 202, 192, 42, 181, 123, 205, + 159, 27, 18, 180, 231, 52, 87, 66, 30, 239, 27, 173, 43, 41, 64, 202, 192, 51, 208, 27, 13, 121, 242, 235, 147, + 239, 86, 84, 71, 232, 119, 218, 211, 10, 156, 202, 70, 233, 211, 200, 153, 225, 191, 255, 255, 255, 255, 216, 102, + 159, 27, 75, 113, 243, 153, 166, 207, 123, 185, 128, 255, 27, 52, 12, 6, 79, 98, 108, 85, 109, 216, 102, 159, 27, + 161, 7, 140, 119, 176, 255, 104, 173, 128, 255, 75, 225, 252, 229, 101, 174, 72, 87, 18, 62, 36, 119, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3512, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6feec6972e88a635" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2658650416638018663" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6158638283996283051" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "87ab968f20ae1db69b7a8a54" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f9f9f486feec6972e88a6351b24e56c77c1a744671b5577e0e3b1b840abffff4c87ab968f20ae1db69b7a8a54ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 159, 159, 72, 111, 238, 198, 151, 46, 136, 166, + 53, 27, 36, 229, 108, 119, 193, 167, 68, 103, 27, 85, 119, 224, 227, 177, 184, 64, 171, 255, 255, 76, 135, 171, + 150, 143, 32, 174, 29, 182, 155, 122, 138, 84, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3513, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17998504619405811259" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6ffb000406" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3923844168546481521" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee5b04" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1574888311892970219" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bf9c7889757e91e3b9f07456ffb0004061b36744b7b5c33757143ee5b04d8669f1bfffffffffffffff59f1b15db2093574b8aebffffffff", + "cborBytes": [ + 216, 102, 159, 27, 249, 199, 136, 151, 87, 233, 30, 59, 159, 7, 69, 111, 251, 0, 4, 6, 27, 54, 116, 75, 123, 92, + 51, 117, 113, 67, 238, 91, 4, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 27, 21, 219, 32, + 147, 87, 75, 138, 235, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3514, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6567676317087571261" + }, + "fields": [] + }, + "cborHex": "d8669f1b5b2512d037c01d3d80ff", + "cborBytes": [216, 102, 159, 27, 91, 37, 18, 208, 55, 192, 29, 61, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3515, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16075995351315049072" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "648612611324401139" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1919643623324049382" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11082332793774852594" + } + } + ] + }, + "cborHex": "d8669f1bdf19689905f6ea709f1b090055bbc6d455f31b1aa3f1b46792dfe61b99cc5af58f9cc9f2ffff", + "cborBytes": [ + 216, 102, 159, 27, 223, 25, 104, 153, 5, 246, 234, 112, 159, 27, 9, 0, 85, 187, 198, 212, 85, 243, 27, 26, 163, + 241, 180, 103, 146, 223, 230, 27, 153, 204, 90, 245, 143, 156, 201, 242, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3516, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5a4c7b5a15" + }, + { + "_tag": "ByteArray", + "bytearray": "b005d18f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7555978052616846234" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "2d1d1a11ec79eaaf09c3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cd0e9f127eccd7e7b1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6876648555222423636" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b9a6498d53ac13" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4338303928244359777" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d77983" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c70f30c29121c240f9c1da67" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5677465656767329730" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "122660559351623089" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8546705893561227267" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2331913274137974636" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6428019361474178031" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11577304660911874539" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e739b0" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905039f455a4c7b5a1544b005d18fd8669f1b68dc3a016cdffb9a80ff4a2d1d1a11ec79eaaf09c39f49cd0e9f127eccd7e7b19f1b5f6ec36d4b3c585447b9a6498d53ac131b3c34c06ffaafd26143d77983ff4cc70f30c29121c240f9c1da67d8669f1b4eca68ef3018b5c280ffbf1b01b3c720fc1aadb11b769bffba517458031b205c9ec49003176c1b5934e98d5a006bef1ba0aad93ffa2061eb43e739b0ffffff", + "cborBytes": [ + 217, 5, 3, 159, 69, 90, 76, 123, 90, 21, 68, 176, 5, 209, 143, 216, 102, 159, 27, 104, 220, 58, 1, 108, 223, 251, + 154, 128, 255, 74, 45, 29, 26, 17, 236, 121, 234, 175, 9, 195, 159, 73, 205, 14, 159, 18, 126, 204, 215, 231, 177, + 159, 27, 95, 110, 195, 109, 75, 60, 88, 84, 71, 185, 166, 73, 141, 83, 172, 19, 27, 60, 52, 192, 111, 250, 175, + 210, 97, 67, 215, 121, 131, 255, 76, 199, 15, 48, 194, 145, 33, 194, 64, 249, 193, 218, 103, 216, 102, 159, 27, + 78, 202, 104, 239, 48, 24, 181, 194, 128, 255, 191, 27, 1, 179, 199, 32, 252, 26, 173, 177, 27, 118, 155, 255, + 186, 81, 116, 88, 3, 27, 32, 92, 158, 196, 144, 3, 23, 108, 27, 89, 52, 233, 141, 90, 0, 107, 239, 27, 160, 170, + 217, 63, 250, 32, 97, 235, 67, 231, 57, 176, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3517, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17088981832852902808" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11096394644426604100" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6ff87e33c87" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18270882624118127399" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "784eb166529ce0de" + } + ] + }, + "cborHex": "d905029f1bed28426f884d13981b99fe50234c983e44bf46d6ff87e33c871bfd8f36f17f6afb27ff48784eb166529ce0deff", + "cborBytes": [ + 217, 5, 2, 159, 27, 237, 40, 66, 111, 136, 77, 19, 152, 27, 153, 254, 80, 35, 76, 152, 62, 68, 191, 70, 214, 255, + 135, 227, 60, 135, 27, 253, 143, 54, 241, 127, 106, 251, 39, 255, 72, 120, 78, 177, 102, 82, 156, 224, 222, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3518, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13579395772084639397" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75e2eb52" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e4a5f37e" + }, + { + "_tag": "ByteArray", + "bytearray": "9613" + } + ] + } + ] + }, + "cborHex": "d87e9fd905059f9f1bbc73b4820b8bd6a54475e2eb52ff44e4a5f37e429613ffff", + "cborBytes": [ + 216, 126, 159, 217, 5, 5, 159, 159, 27, 188, 115, 180, 130, 11, 139, 214, 165, 68, 117, 226, 235, 82, 255, 68, + 228, 165, 243, 126, 66, 150, 19, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3519, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed04fc9d9947dde8fd292e9b" + }, + { + "_tag": "ByteArray", + "bytearray": "d0fdf2ad" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6973884474986760688" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17963741801458730315" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8807160191607142441" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17209995659571605721" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9204403329398794622" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9626247692514250556" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14652962596065395783" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3bc" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13928422916284791227" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f4ced04fc9d9947dde8fd292e9b44d0fdf2adbf1b60c836fb143289f01bf94c07fe10c8854b1b7a3951882cb478291beed62fdeb2c7b0d91b7fbc9c0fa23ce97e1b85974d46383c4f3c1bcb59c7d8ad90444742f3bcffd8669f1bc14bb2d8ae90b9bb80ffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 76, 237, 4, 252, 157, 153, 71, 221, 232, 253, 41, + 46, 155, 68, 208, 253, 242, 173, 191, 27, 96, 200, 54, 251, 20, 50, 137, 240, 27, 249, 76, 7, 254, 16, 200, 133, + 75, 27, 122, 57, 81, 136, 44, 180, 120, 41, 27, 238, 214, 47, 222, 178, 199, 176, 217, 27, 127, 188, 156, 15, 162, + 60, 233, 126, 27, 133, 151, 77, 70, 56, 60, 79, 60, 27, 203, 89, 199, 216, 173, 144, 68, 71, 66, 243, 188, 255, + 216, 102, 159, 27, 193, 75, 178, 216, 174, 144, 185, 187, 128, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3520, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13481759546732680440" + }, + "fields": [] + }, + "cborHex": "d8669f1bbb18d4e0da3b94f880ff", + "cborBytes": [216, 102, 159, 27, 187, 24, 212, 224, 218, 59, 148, 248, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3521, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8268930431104892863" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6dc1601d16ec2c6d4c296c4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14429684598741595409" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17856980303631536537" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16944087010638319905" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12686585513175660039" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01635c979e7bc757" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7487564701415753258" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3841701925605775499" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10887301774301953870" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905049fbf1b72c1246a9a6cbfbf4ce6dc1601d16ec2c6d4c296c41bc84089b0d8eaf5111bf7d0bcf9cf1ad1991beb257d5cd06851211bb00fce4ecd73b6074801635c979e7bc75741e9ffd8669f1b67e92c6cd4a3c62a9fd8669f1b3550778c10aa988b9f1b97177747c3bf7f4effffffffff", + "cborBytes": [ + 217, 5, 4, 159, 191, 27, 114, 193, 36, 106, 154, 108, 191, 191, 76, 230, 220, 22, 1, 209, 110, 194, 198, 212, 194, + 150, 196, 27, 200, 64, 137, 176, 216, 234, 245, 17, 27, 247, 208, 188, 249, 207, 26, 209, 153, 27, 235, 37, 125, + 92, 208, 104, 81, 33, 27, 176, 15, 206, 78, 205, 115, 182, 7, 72, 1, 99, 92, 151, 158, 123, 199, 87, 65, 233, 255, + 216, 102, 159, 27, 103, 233, 44, 108, 212, 163, 198, 42, 159, 216, 102, 159, 27, 53, 80, 119, 140, 16, 170, 152, + 139, 159, 27, 151, 23, 119, 71, 195, 191, 127, 78, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3522, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15276991278025136151" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "695d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17644177288881271361" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9052" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "957874232010199830" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5c1729bbd4aa1c626" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1975756669327608231" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce353f312e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa712bba42" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "14084ea00260" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9183111458916006049" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13699587903429833387" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14029327081199204305" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c1b9d8d8ab61" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12492580008064119941" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a7212b399c5530b6364a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8408963084481708411" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3c03659f" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bd402c6a05b6dd8179f9fbf42695d1bf4dcb5c2e9c872414290521b0d4b0d89fa77d31649b5c1729bbd4aa1c6261b1b6b4c3905e189a745ce353f312e45fa712bba42ff4614084ea002601b7f70f737b981f8a1ffd8669f1bbe1eb69d592c72ab9fd8669f1bc2b22ea658a577d19f46c1b9d8d8ab611bad5e8f542ccef4854aa7212b399c5530b6364a1b74b2a35f6be7c17bffffffff443c03659fa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 212, 2, 198, 160, 91, 109, 216, 23, 159, 159, 191, 66, 105, 93, 27, 244, 220, 181, 194, 233, + 200, 114, 65, 66, 144, 82, 27, 13, 75, 13, 137, 250, 119, 211, 22, 73, 181, 193, 114, 155, 189, 74, 161, 198, 38, + 27, 27, 107, 76, 57, 5, 225, 137, 167, 69, 206, 53, 63, 49, 46, 69, 250, 113, 43, 186, 66, 255, 70, 20, 8, 78, + 160, 2, 96, 27, 127, 112, 247, 55, 185, 129, 248, 161, 255, 216, 102, 159, 27, 190, 30, 182, 157, 89, 44, 114, + 171, 159, 216, 102, 159, 27, 194, 178, 46, 166, 88, 165, 119, 209, 159, 70, 193, 185, 216, 216, 171, 97, 27, 173, + 94, 143, 84, 44, 206, 244, 133, 74, 167, 33, 43, 57, 156, 85, 48, 182, 54, 74, 27, 116, 178, 163, 95, 107, 231, + 193, 123, 255, 255, 255, 255, 68, 60, 3, 101, 159, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3523, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2585033733116905574" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5edbb7a51d0ed119140e64cd" + }, + { + "_tag": "ByteArray", + "bytearray": "842642df10" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11760186740103413939" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "159a10a30253" + }, + { + "_tag": "ByteArray", + "bytearray": "00b1722612" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10397474242006836042" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13913278312823841315" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1075018455426100695" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "474514295863553584" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8c37bc11d987ad36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9650524968480688815" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905019fd8669f1b23dfe27bf2d5c8669f80ffff9f9f4c5edbb7a51d0ed119140e64cd45842642df101ba3349388301f80b3ff46159a10a302534500b1722612d8669f1b904b3fbc2417634a9f1bc115e4e8e902e2231b0eeb3b96eaa96dd7ffffd8669f1b0695d03cedcaae309f488c37bc11d987ad361b85ed8d5402544aafffffffff", + "cborBytes": [ + 217, 5, 1, 159, 216, 102, 159, 27, 35, 223, 226, 123, 242, 213, 200, 102, 159, 128, 255, 255, 159, 159, 76, 94, + 219, 183, 165, 29, 14, 209, 25, 20, 14, 100, 205, 69, 132, 38, 66, 223, 16, 27, 163, 52, 147, 136, 48, 31, 128, + 179, 255, 70, 21, 154, 16, 163, 2, 83, 69, 0, 177, 114, 38, 18, 216, 102, 159, 27, 144, 75, 63, 188, 36, 23, 99, + 74, 159, 27, 193, 21, 228, 232, 233, 2, 226, 35, 27, 14, 235, 59, 150, 234, 169, 109, 215, 255, 255, 216, 102, + 159, 27, 6, 149, 208, 60, 237, 202, 174, 48, 159, 72, 140, 55, 188, 17, 217, 135, 173, 54, 27, 133, 237, 141, 84, + 2, 84, 74, 175, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3524, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15682341801188980162" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1dc21a7f" + } + ] + }, + "cborHex": "d8669f1bd9a2dec79220f5c29f441dc21a7fffff", + "cborBytes": [216, 102, 159, 27, 217, 162, 222, 199, 146, 32, 245, 194, 159, 68, 29, 194, 26, 127, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3525, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12148938856536235144" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7475802687968119909" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18347638770210365139" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c9a30d182080f26dd01fb4f0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7382601953764157110" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15281636429837990127" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3584344462045325630" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3430555000312532851" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11709225676428752309" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc7cdd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8030563225821682687" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5337016005584402429" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "9b3ff471b057b346e46500" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14087960387410744289" + } + }, + { + "_tag": "ByteArray", + "bytearray": "67c1e53c59260395244d7790" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17385039200834444109" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1ba899b385adc85c889fd8669f1b67bf62efab400c659f1bfe9fe8406592ded34cc9a30d182080f26dd01fb4f0d8669f1b6674455cbc37a6b680ffbf1bd413475e0b2978ef1b31be264c2cd9a93e426a881b2f9bc798d0118f73ffbf41b11ba27f86b6ee6b35b543fc7cdd1b6f724ab4c56a9bffffffffd8669f1b4a10e3c7c56eb7fd80ff4b9b3ff471b057b346e465009f1bc3827d54c56453e14c67c1e53c59260395244d77901bf144110b13fa5b4dffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 168, 153, 179, 133, 173, 200, 92, 136, 159, 216, 102, 159, 27, 103, 191, 98, 239, 171, 64, 12, + 101, 159, 27, 254, 159, 232, 64, 101, 146, 222, 211, 76, 201, 163, 13, 24, 32, 128, 242, 109, 208, 31, 180, 240, + 216, 102, 159, 27, 102, 116, 69, 92, 188, 55, 166, 182, 128, 255, 191, 27, 212, 19, 71, 94, 11, 41, 120, 239, 27, + 49, 190, 38, 76, 44, 217, 169, 62, 66, 106, 136, 27, 47, 155, 199, 152, 208, 17, 143, 115, 255, 191, 65, 177, 27, + 162, 127, 134, 182, 238, 107, 53, 181, 67, 252, 124, 221, 27, 111, 114, 74, 180, 197, 106, 155, 255, 255, 255, + 255, 216, 102, 159, 27, 74, 16, 227, 199, 197, 110, 183, 253, 128, 255, 75, 155, 63, 244, 113, 176, 87, 179, 70, + 228, 101, 0, 159, 27, 195, 130, 125, 84, 197, 100, 83, 225, 76, 103, 193, 229, 60, 89, 38, 3, 149, 36, 77, 119, + 144, 27, 241, 68, 17, 11, 19, 250, 91, 77, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3526, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2348ef8e130d3d5366" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1921554009521822626" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17989047965352230467" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e9" + }, + { + "_tag": "ByteArray", + "bytearray": "3d40e3fcb278e38c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4748867874878973017" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17413508627485219399" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9250542920636660506" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c90c532420ce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1160315759637539968" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b20c54" + }, + { + "_tag": "ByteArray", + "bytearray": "79d034a8631f650e4e8a3653" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0441b65e24686383b0eb8b" + } + ] + }, + "cborHex": "d905099f492348ef8e130d3d53661b1aaabb30da469ba2d8669f1bf9a5efd07e487e439f41e9483d40e3fcb278e38c1b41e75e2bef6ce459ffffd8669f1bf1a935d60274da479fd8669f1b806087c65c0d7b1a9f46c90c532420ce1b101a4509287bac80ffff43b20c544c79d034a8631f650e4e8a3653ffff4b0441b65e24686383b0eb8bff", + "cborBytes": [ + 217, 5, 9, 159, 73, 35, 72, 239, 142, 19, 13, 61, 83, 102, 27, 26, 170, 187, 48, 218, 70, 155, 162, 216, 102, 159, + 27, 249, 165, 239, 208, 126, 72, 126, 67, 159, 65, 233, 72, 61, 64, 227, 252, 178, 120, 227, 140, 27, 65, 231, 94, + 43, 239, 108, 228, 89, 255, 255, 216, 102, 159, 27, 241, 169, 53, 214, 2, 116, 218, 71, 159, 216, 102, 159, 27, + 128, 96, 135, 198, 92, 13, 123, 26, 159, 70, 201, 12, 83, 36, 32, 206, 27, 16, 26, 69, 9, 40, 123, 172, 128, 255, + 255, 67, 178, 12, 84, 76, 121, 208, 52, 168, 99, 31, 101, 14, 78, 138, 54, 83, 255, 255, 75, 4, 65, 182, 94, 36, + 104, 99, 131, 176, 235, 139, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3527, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14736405263524383952" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "010785" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04a9fd03" + } + ] + } + ] + }, + "cborHex": "d8669f1bcc823a82a6914cd09f43010785d905049f4404a9fd03ffffff", + "cborBytes": [ + 216, 102, 159, 27, 204, 130, 58, 130, 166, 145, 76, 208, 159, 67, 1, 7, 133, 217, 5, 4, 159, 68, 4, 169, 253, 3, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3528, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5456089776017811903" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9801000574439692969" + } + } + ] + }, + "cborHex": "d8669f1b4bb7ecbe622ea9bf9f1b8804261832e09aa9ffff", + "cborBytes": [ + 216, 102, 159, 27, 75, 183, 236, 190, 98, 46, 169, 191, 159, 27, 136, 4, 38, 24, 50, 224, 154, 169, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3529, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ab61e09ef0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16711601822583525051" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b47c687158d92a1a50e4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12893433288505819626" + } + } + ] + }, + "cborHex": "d9050d9f45ab61e09ef01be7eb8950d6dc8ebb4ab47c687158d92a1a50e41bb2eead43789601eaff", + "cborBytes": [ + 217, 5, 13, 159, 69, 171, 97, 224, 158, 240, 27, 231, 235, 137, 80, 214, 220, 142, 187, 74, 180, 124, 104, 113, + 88, 217, 42, 26, 80, 228, 27, 178, 238, 173, 67, 120, 150, 1, 234, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3530, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1163976375932116845" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3426774716808183720" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17422592641406731926" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2892688402344614616" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ca07f6f0a8391935" + }, + { + "_tag": "ByteArray", + "bytearray": "b039be9b6d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5765009911624614132" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00e677" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4517394972912923258" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cdd2b61b30e755cc08b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7644585739662586673" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3423310daa1a75e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "705af3a815d87e873da7" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a5229e320" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17038366566777474828" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5655276707918341069" + } + }, + { + "_tag": "ByteArray", + "bytearray": "478a49" + }, + { + "_tag": "ByteArray", + "bytearray": "82708a516a62336e0b14a5" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b10274658ce615f6d9fd8669f1b2f8e5972f8a43fa89fd8669f1bf1c97bb2d16206969f1b2824e4c69ba49ad848ca07f6f0a839193545b039be9b6dffff1b50016df864fdc0f4bf4300e6771b3eb102cb2e9c327a4a8cdd2b61b30e755cc08b1b6a17063a3b9af33148a3423310daa1a75e4a705af3a815d87e873da7ff9f459a5229e3201bec74701e8da9cf0c1b4e7b9433f20363cd43478a494b82708a516a62336e0b14a5ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 16, 39, 70, 88, 206, 97, 95, 109, 159, 216, 102, 159, 27, 47, 142, 89, 114, 248, 164, 63, 168, + 159, 216, 102, 159, 27, 241, 201, 123, 178, 209, 98, 6, 150, 159, 27, 40, 36, 228, 198, 155, 164, 154, 216, 72, + 202, 7, 246, 240, 168, 57, 25, 53, 69, 176, 57, 190, 155, 109, 255, 255, 27, 80, 1, 109, 248, 100, 253, 192, 244, + 191, 67, 0, 230, 119, 27, 62, 177, 2, 203, 46, 156, 50, 122, 74, 140, 221, 43, 97, 179, 14, 117, 92, 192, 139, 27, + 106, 23, 6, 58, 59, 154, 243, 49, 72, 163, 66, 51, 16, 218, 161, 167, 94, 74, 112, 90, 243, 168, 21, 216, 126, + 135, 61, 167, 255, 159, 69, 154, 82, 41, 227, 32, 27, 236, 116, 112, 30, 141, 169, 207, 12, 27, 78, 123, 148, 51, + 242, 3, 99, 205, 67, 71, 138, 73, 75, 130, 112, 138, 81, 106, 98, 51, 110, 11, 20, 165, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3531, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5995832715295650737" + }, + "fields": [] + }, + "cborHex": "d8669f1b53357a1657dcf3b180ff", + "cborBytes": [216, 102, 159, 27, 83, 53, 122, 22, 87, 220, 243, 177, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3532, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14443612118510656596" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2697" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1100369953564800725" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2430330195195128292" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7274994207428033117" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16121398340431851985" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18149092335680437579" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a4d2c63843b3a59" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5024d53327381e8a4da24cbc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14306139696251013630" + } + } + ] + }, + "cborHex": "d8669f1bc87204b23d5adc549f42269707a0bf1b0f454ca48bbe36d51b21ba446fa382e9e41b64f5f8afe4c5ba5d1bdfbab660340331d11bfbde87523fff3d4b486a4d2c63843b3a594c5024d53327381e8a4da24cbc414bff1bc6899e41ae2809feffff", + "cborBytes": [ + 216, 102, 159, 27, 200, 114, 4, 178, 61, 90, 220, 84, 159, 66, 38, 151, 7, 160, 191, 27, 15, 69, 76, 164, 139, + 190, 54, 213, 27, 33, 186, 68, 111, 163, 130, 233, 228, 27, 100, 245, 248, 175, 228, 197, 186, 93, 27, 223, 186, + 182, 96, 52, 3, 49, 209, 27, 251, 222, 135, 82, 63, 255, 61, 75, 72, 106, 77, 44, 99, 132, 59, 58, 89, 76, 80, 36, + 213, 51, 39, 56, 30, 138, 77, 162, 76, 188, 65, 75, 255, 27, 198, 137, 158, 65, 174, 40, 9, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3533, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6248039821351651722" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fe225013fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18306185411942417911" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4116bb7219" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5510800473819450267" + } + } + ] + }, + "cborHex": "d8669f1b56b57f1d2e29098a9f45fe225013fd09d8669f1bfe0ca2a44f4405f79f454116bb721911ffff1b4c7a4bd55e100b9bffff", + "cborBytes": [ + 216, 102, 159, 27, 86, 181, 127, 29, 46, 41, 9, 138, 159, 69, 254, 34, 80, 19, 253, 9, 216, 102, 159, 27, 254, 12, + 162, 164, 79, 68, 5, 247, 159, 69, 65, 22, 187, 114, 25, 17, 255, 255, 27, 76, 122, 75, 213, 94, 16, 11, 155, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3534, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aa23c564f799d8c2ad1072" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4996777189891555133" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25657e1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16f03b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3da6f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4730582928480639380" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a70309facf18259b447e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "516348453962827721" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4890330491948397783" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3786874515906112243" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33a57a7e30" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0132e660ae66952c9650" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2e4ff2afc9d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e6a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9f504ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10940915409351446439" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f9f4baa23c564f799d8c2ad1072bf41131b45581e615142bf3d4425657e1d4316f03b433da6f51b41a6681c189d99944aa70309facf18259b447e1b072a702ee2c6c7c9ff417f1b43ddf1ac1ed874d71b348dae4ef9902af3ffbf4533a57a7e304a0132e660ae66952c965046d2e4ff2afc9d428e6a44f9f504ec1b97d5f098ebfd8fa7ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 159, 75, 170, 35, 197, 100, 247, 153, 216, 194, + 173, 16, 114, 191, 65, 19, 27, 69, 88, 30, 97, 81, 66, 191, 61, 68, 37, 101, 126, 29, 67, 22, 240, 59, 67, 61, + 166, 245, 27, 65, 166, 104, 28, 24, 157, 153, 148, 74, 167, 3, 9, 250, 207, 24, 37, 155, 68, 126, 27, 7, 42, 112, + 46, 226, 198, 199, 201, 255, 65, 127, 27, 67, 221, 241, 172, 30, 216, 116, 215, 27, 52, 141, 174, 78, 249, 144, + 42, 243, 255, 191, 69, 51, 165, 122, 126, 48, 74, 1, 50, 230, 96, 174, 102, 149, 44, 150, 80, 70, 210, 228, 255, + 42, 252, 157, 66, 142, 106, 68, 249, 245, 4, 236, 27, 151, 213, 240, 152, 235, 253, 143, 167, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3535, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14408150693105354978" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3073492815101534827" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9122270acb82c2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4851523953686105479" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88c8939d1ca829" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9186961898179436356" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13108038653384028640" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10671464584260309482" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91be40" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16620126134296321872" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16433565391916054771" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10699940556821010615" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15150251810624898449" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b54ba6ca080b" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4334157164726291480" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6715404996928249950" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cd4f9de5b2ff4015fd" + } + ] + } + ] + }, + "cborHex": "d8669f1bc7f408b7bcd7c8e29f9fbf1b2aa73d6e67d7a26b479122270acb82c21b43541354d6c24d874788c8939d1ca8291b7f7ea52bfa089f441bb5e91bb4b50b71e01b9418a87fe1ff51ea4391be401be6a68ca974eb1f501be40fc0a7ba4f38f3ff9f1b947dd33ee71c98b71bd24081c09604059146b54ba6ca080bffd8669f1b3c2604fa5c398c1880ffffd8669f1b5d31e943d4caa05e9f49cd4f9de5b2ff4015fdffffffff", + "cborBytes": [ + 216, 102, 159, 27, 199, 244, 8, 183, 188, 215, 200, 226, 159, 159, 191, 27, 42, 167, 61, 110, 103, 215, 162, 107, + 71, 145, 34, 39, 10, 203, 130, 194, 27, 67, 84, 19, 84, 214, 194, 77, 135, 71, 136, 200, 147, 157, 28, 168, 41, + 27, 127, 126, 165, 43, 250, 8, 159, 68, 27, 181, 233, 27, 180, 181, 11, 113, 224, 27, 148, 24, 168, 127, 225, 255, + 81, 234, 67, 145, 190, 64, 27, 230, 166, 140, 169, 116, 235, 31, 80, 27, 228, 15, 192, 167, 186, 79, 56, 243, 255, + 159, 27, 148, 125, 211, 62, 231, 28, 152, 183, 27, 210, 64, 129, 192, 150, 4, 5, 145, 70, 181, 75, 166, 202, 8, + 11, 255, 216, 102, 159, 27, 60, 38, 4, 250, 92, 57, 140, 24, 128, 255, 255, 216, 102, 159, 27, 93, 49, 233, 67, + 212, 202, 160, 94, 159, 73, 205, 79, 157, 229, 178, 255, 64, 21, 253, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3536, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10952199157494763591" + }, + "fields": [] + }, + "cborHex": "d8669f1b97fe071b43ced04780ff", + "cborBytes": [216, 102, 159, 27, 151, 254, 7, 27, 67, 206, 208, 71, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3537, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18154983549037466292" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2174098433057583531" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0ee57f8c79ae" + }, + { + "_tag": "ByteArray", + "bytearray": "9d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5777467737611794704" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6388154479132514952" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13577726445745402869" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8467507611313953799" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2003569423604807176" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "622765" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7299415687138720456" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a767c0fca3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8350277273370155672" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8622930636767473316" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ec323972eedab8b80d4d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4097514103831972168" + } + } + ] + }, + "cborHex": "d8669f1bfbf375593f7052b49f9f1b1e2bf301892171ab460ee57f8c79ae419dff9f1b502db04c09a179101b58a748a723039a881bbc6dc643b814f3f51b7582a14f4948dc07bf1b1bce1bc680cc7608436227651b654cbbe4bbd13ac845a767c0fca31b73e224f03f3eda981b77aacdba575baea4ffff4aec323972eedab8b80d4d1b38dd4b5e2d0ec948ffff", + "cborBytes": [ + 216, 102, 159, 27, 251, 243, 117, 89, 63, 112, 82, 180, 159, 159, 27, 30, 43, 243, 1, 137, 33, 113, 171, 70, 14, + 229, 127, 140, 121, 174, 65, 157, 255, 159, 27, 80, 45, 176, 76, 9, 161, 121, 16, 27, 88, 167, 72, 167, 35, 3, + 154, 136, 27, 188, 109, 198, 67, 184, 20, 243, 245, 27, 117, 130, 161, 79, 73, 72, 220, 7, 191, 27, 27, 206, 27, + 198, 128, 204, 118, 8, 67, 98, 39, 101, 27, 101, 76, 187, 228, 187, 209, 58, 200, 69, 167, 103, 192, 252, 163, 27, + 115, 226, 36, 240, 63, 62, 218, 152, 27, 119, 170, 205, 186, 87, 91, 174, 164, 255, 255, 74, 236, 50, 57, 114, + 238, 218, 184, 184, 13, 77, 27, 56, 221, 75, 94, 45, 14, 201, 72, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3538, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17415652912730454948" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4451073709642314872" + } + } + ] + }, + "cborHex": "d8669f1bf1b0d40d52cbbba49f1b3dc563f4c44f7478ffff", + "cborBytes": [ + 216, 102, 159, 27, 241, 176, 212, 13, 82, 203, 187, 164, 159, 27, 61, 197, 99, 244, 196, 79, 116, 120, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3539, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b12b9ee9bd7cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10587751844378318597" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3025904178367936274" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c6871e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12213488653628605240" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23add29d815420" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7e98b272deebe84d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5584844811783714310" + } + } + } + ] + } + ] + }, + "cborHex": "d905079fbf472b12b9ee9bd7cf1b92ef4034c62817054245d11b29fe2bd17bfdb712445c6871e51ba97f07387bcc033841934723add29d81542049c7e98b272deebe84d41b4d815ac43c0d3606ffff", + "cborBytes": [ + 217, 5, 7, 159, 191, 71, 43, 18, 185, 238, 155, 215, 207, 27, 146, 239, 64, 52, 198, 40, 23, 5, 66, 69, 209, 27, + 41, 254, 43, 209, 123, 253, 183, 18, 68, 92, 104, 113, 229, 27, 169, 127, 7, 56, 123, 204, 3, 56, 65, 147, 71, 35, + 173, 210, 157, 129, 84, 32, 73, 199, 233, 139, 39, 45, 238, 190, 132, 212, 27, 77, 129, 90, 196, 60, 13, 54, 6, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3540, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13841938698736861841" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "43683c992bc8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff066e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c65107" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13391728222417879962" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bc01871e8a4f182919f9fbf4643683c992bc843ff066e43c651071bb9d8f9dda9ca839aff9f0bffffffff", + "cborBytes": [ + 216, 102, 159, 27, 192, 24, 113, 232, 164, 241, 130, 145, 159, 159, 191, 70, 67, 104, 60, 153, 43, 200, 67, 255, + 6, 110, 67, 198, 81, 7, 27, 185, 216, 249, 221, 169, 202, 131, 154, 255, 159, 11, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3541, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5257926963019979950" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2487293388392529716" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "89c0a462336dd652ef" + }, + { + "_tag": "ByteArray", + "bytearray": "d9" + }, + { + "_tag": "ByteArray", + "bytearray": "0532" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16982767741309397773" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f7d9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14872483185575333064" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1975611bcad4" + }, + { + "_tag": "ByteArray", + "bytearray": "5aee" + } + ] + } + ] + } + ] + }, + "cborHex": "d905079fd8669f1b48f7e8b715c11cae9fd8669f1b2284a42893507f349f4989c0a462336dd652ef41d9420532ffffd8669f1bebaee9483bb5ab0d9f42f7d91bce65aca8d4300cc8461975611bcad4425aeeffffffffff", + "cborBytes": [ + 217, 5, 7, 159, 216, 102, 159, 27, 72, 247, 232, 183, 21, 193, 28, 174, 159, 216, 102, 159, 27, 34, 132, 164, 40, + 147, 80, 127, 52, 159, 73, 137, 192, 164, 98, 51, 109, 214, 82, 239, 65, 217, 66, 5, 50, 255, 255, 216, 102, 159, + 27, 235, 174, 233, 72, 59, 181, 171, 13, 159, 66, 247, 217, 27, 206, 101, 172, 168, 212, 48, 12, 200, 70, 25, 117, + 97, 27, 202, 212, 66, 90, 238, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3542, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3791513867879269587" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "353875954090261674" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "477a0b575d99d5338c68a926" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11863916671446002752" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c37d44b5665f1113837c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13160892180302686145" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4148794783908451513" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16614909373471528926" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53d725c8f9a6ea91a2172c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17180570863348962945" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5609737595620097945" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17505267488989767830" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4fc" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b349e29c647e944d39f02bf1b04e9384e2a1a3caa4c477a0b575d99d5338c68a9261ba4a5195ade5fac404ac37d44b5665f1113837c1bb6a4e1b5662867c11b39937adfecdb54b91be694040bad1417de4b53d725c8f9a6ea91a2172c1bee6da62c745756811b4dd9ca9f1e16ff991bf2ef3408cb6de89642e4fcffffff", + "cborBytes": [ + 216, 102, 159, 27, 52, 158, 41, 198, 71, 233, 68, 211, 159, 2, 191, 27, 4, 233, 56, 78, 42, 26, 60, 170, 76, 71, + 122, 11, 87, 93, 153, 213, 51, 140, 104, 169, 38, 27, 164, 165, 25, 90, 222, 95, 172, 64, 74, 195, 125, 68, 181, + 102, 95, 17, 19, 131, 124, 27, 182, 164, 225, 181, 102, 40, 103, 193, 27, 57, 147, 122, 223, 236, 219, 84, 185, + 27, 230, 148, 4, 11, 173, 20, 23, 222, 75, 83, 215, 37, 200, 249, 166, 234, 145, 162, 23, 44, 27, 238, 109, 166, + 44, 116, 87, 86, 129, 27, 77, 217, 202, 159, 30, 22, 255, 153, 27, 242, 239, 52, 8, 203, 109, 232, 150, 66, 228, + 252, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3543, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02c168eeafcdd4" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f4702c168eeafcdd4ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 71, 2, 193, 104, 238, 175, 205, 212, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3544, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17348348582674364757" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b952ddb6ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3497761090518540361" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "30f545" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2041083033007802492" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12412544464091156300" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b353a3d67fc96f6f" + }, + { + "_tag": "ByteArray", + "bytearray": "166d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7875345308429249783" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dab681956e7c9ca1fdc216" + }, + { + "_tag": "ByteArray", + "bytearray": "6ceb75" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11856759213753694610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4982259859373950347" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13304358418437855386" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ae95fe68" + } + ] + }, + "cborHex": "d8669f1bf0c1b71ed5f4f9559fbf45b952ddb6ba1b308a8b2e0d8a6049ff9f4330f545ffd8669f1b1c5362345381c87c9fd8669f1bac42376cf4e50f4c9f48b353a3d67fc96f6f42166d1b6d4ad8d52876ecf74bdab681956e7c9ca1fdc216436ceb75ffffbf1ba48babaf6320f9921b45248af1e8ac058bff1bb8a2937df777589affff44ae95fe68ffff", + "cborBytes": [ + 216, 102, 159, 27, 240, 193, 183, 30, 213, 244, 249, 85, 159, 191, 69, 185, 82, 221, 182, 186, 27, 48, 138, 139, + 46, 13, 138, 96, 73, 255, 159, 67, 48, 245, 69, 255, 216, 102, 159, 27, 28, 83, 98, 52, 83, 129, 200, 124, 159, + 216, 102, 159, 27, 172, 66, 55, 108, 244, 229, 15, 76, 159, 72, 179, 83, 163, 214, 127, 201, 111, 111, 66, 22, + 109, 27, 109, 74, 216, 213, 40, 118, 236, 247, 75, 218, 182, 129, 149, 110, 124, 156, 161, 253, 194, 22, 67, 108, + 235, 117, 255, 255, 191, 27, 164, 139, 171, 175, 99, 32, 249, 146, 27, 69, 36, 138, 241, 232, 172, 5, 139, 255, + 27, 184, 162, 147, 125, 247, 119, 88, 154, 255, 255, 68, 174, 149, 254, 104, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3545, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "222675723406277414" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1606625113504045150" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed0a5f5921e0b4f11fa0fcf4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16420998894050284232" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9701638203498774990" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "34fc78" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12757479968105232292" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7466679276853904836" + } + } + ] + }, + "cborHex": "d8669f1b03171a6401bbfb269fbf1b164be10749a1585e4ced0a5f5921e0b4f11fa0fcf41be3e31b7df0f312c81b86a3248b6ae741ceff4334fc781bb10bac706012f7a41b679ef93dfca5c5c4ffff", + "cborBytes": [ + 216, 102, 159, 27, 3, 23, 26, 100, 1, 187, 251, 38, 159, 191, 27, 22, 75, 225, 7, 73, 161, 88, 94, 76, 237, 10, + 95, 89, 33, 224, 180, 241, 31, 160, 252, 244, 27, 227, 227, 27, 125, 240, 243, 18, 200, 27, 134, 163, 36, 139, + 106, 231, 65, 206, 255, 67, 52, 252, 120, 27, 177, 11, 172, 112, 96, 18, 247, 164, 27, 103, 158, 249, 61, 252, + 165, 197, 196, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3546, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7722798924307845229" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "108877fc446fe49c44c77f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14338375099124329712" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1304f61bbd37" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "543f43ad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b5a54a2a775" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10567107428254961885" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8614902476664176821" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5478423736578861260" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12791969730842159635" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7164633984544086616" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33ea9de7c3c1da6c7ba58ca9" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12923567857948140176" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bbef64eecb6c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15008351330578234155" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14376812407357252361" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11307699376183283376" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6d5a4f2f6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13192658394265878493" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "214f7630" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5969025312993052828" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2bcdadc513adda66014f5bd6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9248811732843349736" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7490085025232185894" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9474947680520280029" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49a4419d2ede37d73ca621" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8271e15cf38c3a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1b7751966965e3d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f4921" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d85504" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12815356213768548230" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b6b2ce4b45b23506d9fbf4b108877fc446fe49c44c77f1bc6fc242f479cacf0461304f61bbd3744543f43ad464b5a54a2a7751b92a5e838148750ddffd8669f1b778e4828a83380b580ff9fbf1b4c07455ccbd9e8cc1bb18634b208656a131b636de4a62a711a584c33ea9de7c3c1da6c7ba58ca9ff1bb359bc7eaba7a29046bbef64eecb6c9f1bd04860047b607b2b1bc784b2b67ef52309ffbf1b9ced04ac004f8eb045c6d5a4f2f61bb715bce9714affdd44214f7630ffff1b52d63ce59c44089c9f4c2bcdadc513adda66014f5bd61b805a6144ca97c6e8bf1b67f220a5726fea261b837dc6b70ad297dd4b49a4419d2ede37d73ca621478271e15cf38c3a48c1b7751966965e3d435f492143d855041bb1d94a93e7c4ef86ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 107, 44, 228, 180, 91, 35, 80, 109, 159, 191, 75, 16, 136, 119, 252, 68, 111, 228, 156, 68, + 199, 127, 27, 198, 252, 36, 47, 71, 156, 172, 240, 70, 19, 4, 246, 27, 189, 55, 68, 84, 63, 67, 173, 70, 75, 90, + 84, 162, 167, 117, 27, 146, 165, 232, 56, 20, 135, 80, 221, 255, 216, 102, 159, 27, 119, 142, 72, 40, 168, 51, + 128, 181, 128, 255, 159, 191, 27, 76, 7, 69, 92, 203, 217, 232, 204, 27, 177, 134, 52, 178, 8, 101, 106, 19, 27, + 99, 109, 228, 166, 42, 113, 26, 88, 76, 51, 234, 157, 231, 195, 193, 218, 108, 123, 165, 140, 169, 255, 27, 179, + 89, 188, 126, 171, 167, 162, 144, 70, 187, 239, 100, 238, 203, 108, 159, 27, 208, 72, 96, 4, 123, 96, 123, 43, 27, + 199, 132, 178, 182, 126, 245, 35, 9, 255, 191, 27, 156, 237, 4, 172, 0, 79, 142, 176, 69, 198, 213, 164, 242, 246, + 27, 183, 21, 188, 233, 113, 74, 255, 221, 68, 33, 79, 118, 48, 255, 255, 27, 82, 214, 60, 229, 156, 68, 8, 156, + 159, 76, 43, 205, 173, 197, 19, 173, 218, 102, 1, 79, 91, 214, 27, 128, 90, 97, 68, 202, 151, 198, 232, 191, 27, + 103, 242, 32, 165, 114, 111, 234, 38, 27, 131, 125, 198, 183, 10, 210, 151, 221, 75, 73, 164, 65, 157, 46, 222, + 55, 215, 60, 166, 33, 71, 130, 113, 225, 92, 243, 140, 58, 72, 193, 183, 117, 25, 102, 150, 94, 61, 67, 95, 73, + 33, 67, 216, 85, 4, 27, 177, 217, 74, 147, 231, 196, 239, 134, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3547, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6013365012068182691" + }, + "fields": [] + }, + "cborHex": "d8669f1b5373c39e49162aa380ff", + "cborBytes": [216, 102, 159, 27, 83, 115, 195, 158, 73, 22, 42, 163, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3548, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1284351869065578161" + }, + "fields": [] + }, + "cborHex": "d8669f1b11d2ef385a4346b180ff", + "cborBytes": [216, 102, 159, 27, 17, 210, 239, 56, 90, 67, 70, 177, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3549, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17869632000012983786" + }, + "fields": [] + }, + "cborHex": "d8669f1bf7fdafa06bba1dea80ff", + "cborBytes": [216, 102, 159, 27, 247, 253, 175, 160, 107, 186, 29, 234, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3550, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14493182081188511429" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c7686f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8062631775251908264" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14771125746361205206" + } + } + ] + }, + "cborHex": "d8669f1bc92220508e4c3ec59f9f091bffffffffffffffef9f1043c7686f1b6fe438e1c6aac6a8ffff1bccfd949b047c81d6ffff", + "cborBytes": [ + 216, 102, 159, 27, 201, 34, 32, 80, 142, 76, 62, 197, 159, 159, 9, 27, 255, 255, 255, 255, 255, 255, 255, 239, + 159, 16, 67, 199, 104, 111, 27, 111, 228, 56, 225, 198, 170, 198, 168, 255, 255, 27, 204, 253, 148, 155, 4, 124, + 129, 214, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3551, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "752d2b304ee7dd16758a8c6f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + ] + }, + "cborHex": "d8799f9f4c752d2b304ee7dd16758a8c6fff1bfffffffffffffff2ff", + "cborBytes": [ + 216, 121, 159, 159, 76, 117, 45, 43, 48, 78, 231, 221, 22, 117, 138, 140, 111, 255, 27, 255, 255, 255, 255, 255, + 255, 255, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3552, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a781" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "020c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "637372897397975150" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16574447475545515128" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2179246852710437979" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11285550918277987857" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9309855943935367928" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4318488085508650938" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "423330751381595367" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f42a7819fbf42020c13ffd8669f1b08d86745f2de286e9f1be6044429f042a4781b1e3e3d7765b1945bffffbf1b9c9e54c44a8afe111b813340a7c0539af8ff1b3bee5a088f7ff7babf1b05dff913529964e71bfffffffffffffff4ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 66, 167, 129, 159, 191, 66, 2, 12, 19, 255, 216, + 102, 159, 27, 8, 216, 103, 69, 242, 222, 40, 110, 159, 27, 230, 4, 68, 41, 240, 66, 164, 120, 27, 30, 62, 61, 119, + 101, 177, 148, 91, 255, 255, 191, 27, 156, 158, 84, 196, 74, 138, 254, 17, 27, 129, 51, 64, 167, 192, 83, 154, + 248, 255, 27, 59, 238, 90, 8, 143, 127, 247, 186, 191, 27, 5, 223, 249, 19, 82, 153, 100, 231, 27, 255, 255, 255, + 255, 255, 255, 255, 244, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3553, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11112186454697716983" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "3ccc7c6292e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15813920042710351760" + } + } + ] + }, + "cborHex": "d8669f1b9a366ab4a62a2cf79fa0463ccc7c6292e81bdb76547e3c2e3f90ffff", + "cborBytes": [ + 216, 102, 159, 27, 154, 54, 106, 180, 166, 42, 44, 247, 159, 160, 70, 60, 204, 124, 98, 146, 232, 27, 219, 118, + 84, 126, 60, 46, 63, 144, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3554, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16542952252110969779" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19d57fcefee3daa5236c39" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12475327439628221314" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "942aeba0e4ad23c289" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "873c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea1bc2d92a04e928" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b81ec5d7e9fa11" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98dc22bbf8d0b6d27f12" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9e09f907e1e31257803" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16464903896417005118" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17926539728407242536" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "52aa7ff3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7418524932426509267" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8069341400175339631" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5768966733406835550" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16507402717376293242" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7835688747257568066" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "256e89b3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11703680699615995396" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0a67e86c63b64d676f5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15390425413837976266" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3711098178886654489" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15729798248866341533" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f55dcd9b50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17390485370949339365" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12177859604362664086" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13633334417417085534" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b4515c4dc9cc0dcfbd7c23" + }, + { + "_tag": "ByteArray", + "bytearray": "5d9ae7bb34f1153b227081a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10006996280680943553" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8286478138218070458" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "739871165653760567" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14046038210605764854" + } + } + ] + }, + "cborHex": "d8669f1be5945f6ccb529bb39f9fbf4b19d57fcefee3daa5236c391bad2144358fb93b82415449942aeba0e4ad23c28942873c48ea1bc2d92a04e92847b81ec5d7e9fa114a98dc22bbf8d0b6d27f124ac9e09f907e1e312578031be47f16dbe6e16e3effd8669f1bf8c7dce773a427289f4452aa7ff31b66f3e51efaa92bd3ffffff1b6ffc0f4010cde86fbf1b500f7cadc1c2935e1be516134fbd88297a1b6cbdf5667ed01b4244256e89b31ba26bd3966934e6044ab0a67e86c63b64d676f51bd595c65f35f4f2ca1b33807821a7235a191bda4b782ad43d629d45f55dcd9b501bf1576a4e5f1008e51ba90072ca029d9896ffd8669f1bbd33556b8e40a25e9f9f4bb4515c4dc9cc0dcfbd7c234c5d9ae7bb34f1153b227081a61b8adffe1912a48fc11b72ff7bf68b8741baff1b0a448ce7b858ba37ffff1bc2ed8d555cb850f6ffff", + "cborBytes": [ + 216, 102, 159, 27, 229, 148, 95, 108, 203, 82, 155, 179, 159, 159, 191, 75, 25, 213, 127, 206, 254, 227, 218, 165, + 35, 108, 57, 27, 173, 33, 68, 53, 143, 185, 59, 130, 65, 84, 73, 148, 42, 235, 160, 228, 173, 35, 194, 137, 66, + 135, 60, 72, 234, 27, 194, 217, 42, 4, 233, 40, 71, 184, 30, 197, 215, 233, 250, 17, 74, 152, 220, 34, 187, 248, + 208, 182, 210, 127, 18, 74, 201, 224, 159, 144, 126, 30, 49, 37, 120, 3, 27, 228, 127, 22, 219, 230, 225, 110, 62, + 255, 216, 102, 159, 27, 248, 199, 220, 231, 115, 164, 39, 40, 159, 68, 82, 170, 127, 243, 27, 102, 243, 229, 30, + 250, 169, 43, 211, 255, 255, 255, 27, 111, 252, 15, 64, 16, 205, 232, 111, 191, 27, 80, 15, 124, 173, 193, 194, + 147, 94, 27, 229, 22, 19, 79, 189, 136, 41, 122, 27, 108, 189, 245, 102, 126, 208, 27, 66, 68, 37, 110, 137, 179, + 27, 162, 107, 211, 150, 105, 52, 230, 4, 74, 176, 166, 126, 134, 198, 59, 100, 214, 118, 245, 27, 213, 149, 198, + 95, 53, 244, 242, 202, 27, 51, 128, 120, 33, 167, 35, 90, 25, 27, 218, 75, 120, 42, 212, 61, 98, 157, 69, 245, 93, + 205, 155, 80, 27, 241, 87, 106, 78, 95, 16, 8, 229, 27, 169, 0, 114, 202, 2, 157, 152, 150, 255, 216, 102, 159, + 27, 189, 51, 85, 107, 142, 64, 162, 94, 159, 159, 75, 180, 81, 92, 77, 201, 204, 13, 207, 189, 124, 35, 76, 93, + 154, 231, 187, 52, 241, 21, 59, 34, 112, 129, 166, 27, 138, 223, 254, 25, 18, 164, 143, 193, 27, 114, 255, 123, + 246, 139, 135, 65, 186, 255, 27, 10, 68, 140, 231, 184, 88, 186, 55, 255, 255, 27, 194, 237, 141, 85, 92, 184, 80, + 246, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3555, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12001693105015232785" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5561395703072828271" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a51" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b66e0" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16708905377024401321" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7062797583640554600" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13463323064613881193" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6580078936433886661" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6628113265131167610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13447290988157015634" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10568300624283536014" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2839767353080290881" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4594680514505892130" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "817297764b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4964835276310457268" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16227130759257994322" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2314859766382039885" + } + } + ] + }, + "cborHex": "d8669f1ba68e944a93b019119fd8669f1b4d2e0bed290a2b6f9fbf428a51434b66e0ff9f1be7e1f4e9af275fa91b620418fb6561ec681bbad754fedaa245691b5b5122ee102c05c5ffbf1b5bfbc9e5bb329f7a1bba9e5fe82c691652ffffffd8669f1b92aa256cadf58a8e80ffd8669f1b2768e15ca51a1e419fd8669f1b3fc39595938861229f45817297764b1b44e6a36104d02bb41be132597355633452ffffffff801b202008b1600b934dffff", + "cborBytes": [ + 216, 102, 159, 27, 166, 142, 148, 74, 147, 176, 25, 17, 159, 216, 102, 159, 27, 77, 46, 11, 237, 41, 10, 43, 111, + 159, 191, 66, 138, 81, 67, 75, 102, 224, 255, 159, 27, 231, 225, 244, 233, 175, 39, 95, 169, 27, 98, 4, 24, 251, + 101, 97, 236, 104, 27, 186, 215, 84, 254, 218, 162, 69, 105, 27, 91, 81, 34, 238, 16, 44, 5, 197, 255, 191, 27, + 91, 251, 201, 229, 187, 50, 159, 122, 27, 186, 158, 95, 232, 44, 105, 22, 82, 255, 255, 255, 216, 102, 159, 27, + 146, 170, 37, 108, 173, 245, 138, 142, 128, 255, 216, 102, 159, 27, 39, 104, 225, 92, 165, 26, 30, 65, 159, 216, + 102, 159, 27, 63, 195, 149, 149, 147, 136, 97, 34, 159, 69, 129, 114, 151, 118, 75, 27, 68, 230, 163, 97, 4, 208, + 43, 180, 27, 225, 50, 89, 115, 85, 99, 52, 82, 255, 255, 255, 255, 128, 27, 32, 32, 8, 177, 96, 11, 147, 77, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3556, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18071675589097257604" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3916789184608016213" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "25f983db06" + }, + { + "_tag": "ByteArray", + "bytearray": "704ae7" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4062513239188778975" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "4036b7705bb85629" + }, + { + "_tag": "ByteArray", + "bytearray": "df" + } + ] + }, + "cborHex": "d905009fd8669f1bfacb7d33503d7a8480ffd8669f1b365b3b02e8a717559f9f4525f983db0643704ae7ffffffd8669f1b3860f244552b2fdf80ff484036b7705bb8562941dfff", + "cborBytes": [ + 217, 5, 0, 159, 216, 102, 159, 27, 250, 203, 125, 51, 80, 61, 122, 132, 128, 255, 216, 102, 159, 27, 54, 91, 59, + 2, 232, 167, 23, 85, 159, 159, 69, 37, 249, 131, 219, 6, 67, 112, 74, 231, 255, 255, 255, 216, 102, 159, 27, 56, + 96, 242, 68, 85, 43, 47, 223, 128, 255, 72, 64, 54, 183, 112, 91, 184, 86, 41, 65, 223, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3557, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11322060031774645914" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18263565460278195942" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12187448853343390885" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2487507296642370157" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4193039928876376689" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3225314748860138338" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12098778935525349760" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98c0c66e6bc8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "822149d399833659" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "594240499854125017" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d2" + }, + { + "_tag": "ByteArray", + "bytearray": "1b" + }, + { + "_tag": "ByteArray", + "bytearray": "41df722f31a9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16444672492433896843" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee30" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a54931" + } + ] + }, + "cborHex": "d8669f1b9d20099caf935e9a9fd8669f1bfd75380587f9b6e69f1ba922842905c64ca5bf1b228566b4f88f8a6d1b3a30ab9981b4a2711b2cc29eacf6a303621ba7e77f56fbf799804698c0c66e6bc848822149d399833659ffd8669f1b083f2a9610f4a7d99f41d2411b4641df722f31a91be43736811728f58b42ee30ffffffff43a54931ffff", + "cborBytes": [ + 216, 102, 159, 27, 157, 32, 9, 156, 175, 147, 94, 154, 159, 216, 102, 159, 27, 253, 117, 56, 5, 135, 249, 182, + 230, 159, 27, 169, 34, 132, 41, 5, 198, 76, 165, 191, 27, 34, 133, 102, 180, 248, 143, 138, 109, 27, 58, 48, 171, + 153, 129, 180, 162, 113, 27, 44, 194, 158, 172, 246, 163, 3, 98, 27, 167, 231, 127, 86, 251, 247, 153, 128, 70, + 152, 192, 198, 110, 107, 200, 72, 130, 33, 73, 211, 153, 131, 54, 89, 255, 216, 102, 159, 27, 8, 63, 42, 150, 16, + 244, 167, 217, 159, 65, 210, 65, 27, 70, 65, 223, 114, 47, 49, 169, 27, 228, 55, 54, 129, 23, 40, 245, 139, 66, + 238, 48, 255, 255, 255, 255, 67, 165, 73, 49, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3558, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13125464842125163885" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2957435786762388259" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2356331602642018664" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "161b2e04b060" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8128521914094994459" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd5d7bddd5cf5f7fd6617b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12336225786402989877" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55f2ba8ea04792ed6f3d00fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14190838787901027119" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1610" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15679434649211569487" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd4fcd0ee5dc7795de" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fafb00fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4208063540019560434" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "39a7916a733e0bd13b" + } + ] + }, + "cborHex": "d8669f1bb62704bb72bfbd6d9fd8669f1b290aec2dcc0003239fa0bf1b20b35f1bb481216846161b2e04b0601b70ce4f9d369c441b4bbd5d7bddd5cf5f7fd6617b1bab3313fe1b9067354c55f2ba8ea04792ed6f3d00fc1bc4effcb0f9acf32f4216101bd9988abd8135054f49fd4fcd0ee5dc7795deff44fafb00fa1b3a660b7e8f237ff2ffff4939a7916a733e0bd13bffff", + "cborBytes": [ + 216, 102, 159, 27, 182, 39, 4, 187, 114, 191, 189, 109, 159, 216, 102, 159, 27, 41, 10, 236, 45, 204, 0, 3, 35, + 159, 160, 191, 27, 32, 179, 95, 27, 180, 129, 33, 104, 70, 22, 27, 46, 4, 176, 96, 27, 112, 206, 79, 157, 54, 156, + 68, 27, 75, 189, 93, 123, 221, 213, 207, 95, 127, 214, 97, 123, 27, 171, 51, 19, 254, 27, 144, 103, 53, 76, 85, + 242, 186, 142, 160, 71, 146, 237, 111, 61, 0, 252, 27, 196, 239, 252, 176, 249, 172, 243, 47, 66, 22, 16, 27, 217, + 152, 138, 189, 129, 53, 5, 79, 73, 253, 79, 205, 14, 229, 220, 119, 149, 222, 255, 68, 250, 251, 0, 250, 27, 58, + 102, 11, 126, 143, 35, 127, 242, 255, 255, 73, 57, 167, 145, 106, 115, 62, 11, 209, 59, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3559, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2051377224804453203" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11366014852853378858" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b7e872aca8185f9a" + }, + { + "_tag": "ByteArray", + "bytearray": "2cc2b9af191db06c7d401d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7160671427250811076" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ca798e09a5a2f7b94f45" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5404957453045442042" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ac4e8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9541672564161680527" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "759229759364327166" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10911825267117152573" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7044672252587030044" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9856089295693042374" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d567636e90c3e443f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16163862780113434821" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15648405193834027787" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14392292399860632360" + } + }, + { + "_tag": "ByteArray", + "bytearray": "684c" + }, + { + "_tag": "ByteArray", + "bytearray": "22c3a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5359448957868170699" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12337035392047236740" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7436878932951683011" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8532475333484798331" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9fd8669f1b1c77f4b7a0cbcb539f9f1b9dbc3249f823af2a48b7e872aca8185f9a4b2cc2b9af191db06c7d401dff1b635fd0b96692f0c44aca798e09a5a2f7b94f45bf1b4b02442ab6dfa5fa431ac4e81b846ad4a4a5f2948f1b0a8953718dd0e6fe1b976e974461a6593d1b61c3b416e680361cff1b88c7dcfea05052c6ffffbf49d567636e90c3e443f41be051938f06d1b8c5ff9f1bd92a4d9d6fdadb0bff9f9f1bc7bbb1af1d3f4b2842684c4322c3a71b4a60966e7d91ddcbffd8669f1bab35f4531c65c6849f1b673519fcbc2bcfc31b7669711bdb24e17bffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 216, 102, 159, 27, 28, 119, 244, 183, 160, 203, + 203, 83, 159, 159, 27, 157, 188, 50, 73, 248, 35, 175, 42, 72, 183, 232, 114, 172, 168, 24, 95, 154, 75, 44, 194, + 185, 175, 25, 29, 176, 108, 125, 64, 29, 255, 27, 99, 95, 208, 185, 102, 146, 240, 196, 74, 202, 121, 142, 9, 165, + 162, 247, 185, 79, 69, 191, 27, 75, 2, 68, 42, 182, 223, 165, 250, 67, 26, 196, 232, 27, 132, 106, 212, 164, 165, + 242, 148, 143, 27, 10, 137, 83, 113, 141, 208, 230, 254, 27, 151, 110, 151, 68, 97, 166, 89, 61, 27, 97, 195, 180, + 22, 230, 128, 54, 28, 255, 27, 136, 199, 220, 254, 160, 80, 82, 198, 255, 255, 191, 73, 213, 103, 99, 110, 144, + 195, 228, 67, 244, 27, 224, 81, 147, 143, 6, 209, 184, 197, 255, 159, 27, 217, 42, 77, 157, 111, 218, 219, 11, + 255, 159, 159, 27, 199, 187, 177, 175, 29, 63, 75, 40, 66, 104, 76, 67, 34, 195, 167, 27, 74, 96, 150, 110, 125, + 145, 221, 203, 255, 216, 102, 159, 27, 171, 53, 244, 83, 28, 101, 198, 132, 159, 27, 103, 53, 25, 252, 188, 43, + 207, 195, 27, 118, 105, 113, 27, 219, 36, 225, 123, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3560, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2214519782635852576" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed115babaace9fd00436" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15666461383071416551" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "659556386962435771" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1fb3ce56116006d20d54a2d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16670342296982886929" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17410459514972411342" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8d89c94ead" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6124420867783085595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7fccdbb055f7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13252446604957661310" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6f55aa2107652" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "882656db" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ec48" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8b264d493fde149aae9aa2" + } + ] + } + ] + }, + "cborHex": "d8669f1b1ebb8e026015d3209f4aed115babaace9fd004361bd96a739f9958c0e7d8669f1b0927370a1a3c6ebb9f9f4c1fb3ce56116006d20d54a2d51be758f3feefd59a111bf19e60af2e4015ce458d89c94eadffbf1b54fe5054a7334e1b467fccdbb055f71bb7ea25f90555387e47c6f55aa2107652ff9f44882656dbffffff42ec489f4b8b264d493fde149aae9aa2ffffff", + "cborBytes": [ + 216, 102, 159, 27, 30, 187, 142, 2, 96, 21, 211, 32, 159, 74, 237, 17, 91, 171, 170, 206, 159, 208, 4, 54, 27, + 217, 106, 115, 159, 153, 88, 192, 231, 216, 102, 159, 27, 9, 39, 55, 10, 26, 60, 110, 187, 159, 159, 76, 31, 179, + 206, 86, 17, 96, 6, 210, 13, 84, 162, 213, 27, 231, 88, 243, 254, 239, 213, 154, 17, 27, 241, 158, 96, 175, 46, + 64, 21, 206, 69, 141, 137, 201, 78, 173, 255, 191, 27, 84, 254, 80, 84, 167, 51, 78, 27, 70, 127, 204, 219, 176, + 85, 247, 27, 183, 234, 37, 249, 5, 85, 56, 126, 71, 198, 245, 90, 162, 16, 118, 82, 255, 159, 68, 136, 38, 86, + 219, 255, 255, 255, 66, 236, 72, 159, 75, 139, 38, 77, 73, 63, 222, 20, 154, 174, 154, 162, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3561, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16923956988421371156" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17564273621825516846" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d4773ecdeaa59ba5b085beb9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17946909849544472255" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16858692227433439031" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10666209094617049622" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5075997621070946134" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1744009064671895816" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d39cf9359ab1cb" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12143336083939866461" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3047482156339222306" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17549743895711081565" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10227426460111286990" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b85984" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4b632e70bd6" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10088063939604229781" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8505708539165174135" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5854466680115677657" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18435911247611436098" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2efbb6" + }, + { + "_tag": "ByteArray", + "bytearray": "a799eb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "857921261680050552" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2282589591685318615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "baf3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8325107833386737937" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c69a28ef5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "acf3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18227538612187357332" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dde538b9c86db885" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8869571563295550422" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050c9f9f9f1beaddf936c8d875141bf3c0d5ccaeac752e4cd4773ecdeaa59ba5b085beb91bf9103b6bde0eb6bfffd8669f1be9f61b4279cf1f379f1b9405fca8d8b0aa161b467190f14ca95f56413d1b1833f70110d4610847d39cf9359ab1cbffff1ba885cbd4876b375d1b2a4ad4dffbf0d722ffbf1bf38d371732f0645d1b8def1e2da15d32ce43b8598446e4b632e70bd6ffd8669f1b8c0000b44789ae959f1b760a58d9e7f269771b513f3e6d61a7c9d9ffffd8669f1bffd9839a20821c429f432efbb643a799eb1b0be7f2d78fb1c178bf1b1fad6323d46847d742baf31b7388b97755d6a111452c69a28ef542acf31bfcf539cb4d24e09448dde538b9c86db8851b7b170c5804232bd6ffffffff", + "cborBytes": [ + 217, 5, 12, 159, 159, 159, 27, 234, 221, 249, 54, 200, 216, 117, 20, 27, 243, 192, 213, 204, 174, 172, 117, 46, + 76, 212, 119, 62, 205, 234, 165, 155, 165, 176, 133, 190, 185, 27, 249, 16, 59, 107, 222, 14, 182, 191, 255, 216, + 102, 159, 27, 233, 246, 27, 66, 121, 207, 31, 55, 159, 27, 148, 5, 252, 168, 216, 176, 170, 22, 27, 70, 113, 144, + 241, 76, 169, 95, 86, 65, 61, 27, 24, 51, 247, 1, 16, 212, 97, 8, 71, 211, 156, 249, 53, 154, 177, 203, 255, 255, + 27, 168, 133, 203, 212, 135, 107, 55, 93, 27, 42, 74, 212, 223, 251, 240, 215, 34, 255, 191, 27, 243, 141, 55, 23, + 50, 240, 100, 93, 27, 141, 239, 30, 45, 161, 93, 50, 206, 67, 184, 89, 132, 70, 228, 182, 50, 231, 11, 214, 255, + 216, 102, 159, 27, 140, 0, 0, 180, 71, 137, 174, 149, 159, 27, 118, 10, 88, 217, 231, 242, 105, 119, 27, 81, 63, + 62, 109, 97, 167, 201, 217, 255, 255, 216, 102, 159, 27, 255, 217, 131, 154, 32, 130, 28, 66, 159, 67, 46, 251, + 182, 67, 167, 153, 235, 27, 11, 231, 242, 215, 143, 177, 193, 120, 191, 27, 31, 173, 99, 35, 212, 104, 71, 215, + 66, 186, 243, 27, 115, 136, 185, 119, 85, 214, 161, 17, 69, 44, 105, 162, 142, 245, 66, 172, 243, 27, 252, 245, + 57, 203, 77, 36, 224, 148, 72, 221, 229, 56, 185, 200, 109, 184, 133, 27, 123, 23, 12, 88, 4, 35, 43, 214, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3562, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8209951994558514892" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ed13" + } + ] + }, + "cborHex": "d87b9f1b71ef9bd742ab86cc42ed13ff", + "cborBytes": [216, 123, 159, 27, 113, 239, 155, 215, 66, 171, 134, 204, 66, 237, 19, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3563, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5836398100512407652" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11692211760653770541" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8329096644704373018" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64" + }, + { + "_tag": "ByteArray", + "bytearray": "87b68e2b59aaaa88068352af" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2888936686600690169" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17819956081980225824" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8531008740669395951" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb91300757cf6e29e97c98" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12820298686460458942" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2485342584072462738" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12889175045414603423" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9723531984605353910" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12997720711803557353" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6055104013019179753" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "136527269263965874" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecf419904a8e77f48f6566" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4856737164190954209" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8372" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5154602509317340577" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0313f164" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10424684164524902030" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5095912472615163799" + } + } + ] + }, + "cborHex": "d8669f1b50ff0d265cce80649f9fd8669f1ba24314a5f8699f2d9f1b7396e544d780891a41644c87b68e2b59aaaa88068352afffffbf1b2817909c376d99f91bf74d33a4737e39201b76643b401b5a13ef4bfb91300757cf6e29e97c981bb1ead9bb00e1f7be1b227db5e98cca61921bb2df8c69fdc44a9f1b86f0ecd2908d17b61bb4612e1f5cc9d5e91b54080d04be0ceae9ffbf1b01e50ad3faa1feb24becf419904a8e77f48f65661b436698b7ff0a32e14283721b4788d3ac06327da1440313f164ff1b90abeb03ea25868eff1b46b8516500b59797ffff", + "cborBytes": [ + 216, 102, 159, 27, 80, 255, 13, 38, 92, 206, 128, 100, 159, 159, 216, 102, 159, 27, 162, 67, 20, 165, 248, 105, + 159, 45, 159, 27, 115, 150, 229, 68, 215, 128, 137, 26, 65, 100, 76, 135, 182, 142, 43, 89, 170, 170, 136, 6, 131, + 82, 175, 255, 255, 191, 27, 40, 23, 144, 156, 55, 109, 153, 249, 27, 247, 77, 51, 164, 115, 126, 57, 32, 27, 118, + 100, 59, 64, 27, 90, 19, 239, 75, 251, 145, 48, 7, 87, 207, 110, 41, 233, 124, 152, 27, 177, 234, 217, 187, 0, + 225, 247, 190, 27, 34, 125, 181, 233, 140, 202, 97, 146, 27, 178, 223, 140, 105, 253, 196, 74, 159, 27, 134, 240, + 236, 210, 144, 141, 23, 182, 27, 180, 97, 46, 31, 92, 201, 213, 233, 27, 84, 8, 13, 4, 190, 12, 234, 233, 255, + 191, 27, 1, 229, 10, 211, 250, 161, 254, 178, 75, 236, 244, 25, 144, 74, 142, 119, 244, 143, 101, 102, 27, 67, + 102, 152, 183, 255, 10, 50, 225, 66, 131, 114, 27, 71, 136, 211, 172, 6, 50, 125, 161, 68, 3, 19, 241, 100, 255, + 27, 144, 171, 235, 3, 234, 37, 134, 142, 255, 27, 70, 184, 81, 101, 0, 181, 151, 151, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3564, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16327719368410674251" + } + } + ] + }, + "cborHex": "d87a9f1be297b641f262344bff", + "cborBytes": [216, 122, 159, 27, 226, 151, 182, 65, 242, 98, 52, 75, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3565, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dfcd2ddccdca707bbcee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "709428913457050257" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1153e149945f" + } + ] + } + ] + } + ] + }, + "cborHex": "d905029f80d8669f1bffffffffffffffed9fa09f4adfcd2ddccdca707bbcee1b09d865d68bffb291461153e149945fffffffff", + "cborBytes": [ + 217, 5, 2, 159, 128, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 160, 159, 74, 223, 205, 45, + 220, 205, 202, 112, 123, 188, 238, 27, 9, 216, 101, 214, 139, 255, 178, 145, 70, 17, 83, 225, 73, 148, 95, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3566, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15796454546887078498" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12126084876602187563" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18341885979261240714" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1e30bb8337" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8539e60103ec93ffd600" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00035311" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bdb3847b799cef2629fd8669f1ba84881f2d21c1f2b9f1bfe8b781e6095858a451e30bb833780a0ffffbf4a8539e60103ec93ffd6004400035311ffffff", + "cborBytes": [ + 216, 102, 159, 27, 219, 56, 71, 183, 153, 206, 242, 98, 159, 216, 102, 159, 27, 168, 72, 129, 242, 210, 28, 31, + 43, 159, 27, 254, 139, 120, 30, 96, 149, 133, 138, 69, 30, 48, 187, 131, 55, 128, 160, 255, 255, 191, 74, 133, 57, + 230, 1, 3, 236, 147, 255, 214, 0, 68, 0, 3, 83, 17, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3567, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6814697379338430265" + } + } + ] + }, + "cborHex": "d87d9f1b5e92ab292340a739ff", + "cborBytes": [216, 125, 159, 27, 94, 146, 171, 41, 35, 64, 167, 57, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3568, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4673848936635826732" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9303191148031418967" + } + } + ] + }, + "cborHex": "d8669f1b40dcd8d84204022c9f1b811b930f07f8a257ffff", + "cborBytes": [ + 216, 102, 159, 27, 64, 220, 216, 216, 66, 4, 2, 44, 159, 27, 129, 27, 147, 15, 7, 248, 162, 87, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3569, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2330632897836452866" + } + } + ] + }, + "cborHex": "d87f9f1b20581245b9618c02ff", + "cborBytes": [216, 127, 159, 27, 32, 88, 18, 69, 185, 97, 140, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3570, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "93f639881fef3b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0f9f3f53c030e81d4423" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05266ca9dba91deea5f203d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f229" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27dd5a4731f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1436840532888195669" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2718058514889181285" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f972f1b14568b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2288975821440578164" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b940db32e" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2117160611182532753" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "82b7f5c174" + }, + { + "_tag": "ByteArray", + "bytearray": "7a790e88125768b34188" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18166271354391031429" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11745780926931432520" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c97bd62a11271f632a5" + } + ] + } + ] + } + ] + }, + "cborHex": "d905019f4793f639881fef3b9f9f094a0f9f3f53c030e81d4423ffbf4c05266ca9dba91deea5f203d342f2294627dd5a4731f21b13f0aeda19af125541bd1b25b87bd182b2086547f972f1b14568b71b1fc41361d06c7274ffbf03456b940db32effff9fd8669f1b1d61aa5bd1fbd8919f4582b7f5c1744a7a790e88125768b341881bfc1b8f8c3bd4ee851ba30165856f4e74484a2c97bd62a11271f632a5ffffffff", + "cborBytes": [ + 217, 5, 1, 159, 71, 147, 246, 57, 136, 31, 239, 59, 159, 159, 9, 74, 15, 159, 63, 83, 192, 48, 232, 29, 68, 35, + 255, 191, 76, 5, 38, 108, 169, 219, 169, 29, 238, 165, 242, 3, 211, 66, 242, 41, 70, 39, 221, 90, 71, 49, 242, 27, + 19, 240, 174, 218, 25, 175, 18, 85, 65, 189, 27, 37, 184, 123, 209, 130, 178, 8, 101, 71, 249, 114, 241, 177, 69, + 104, 183, 27, 31, 196, 19, 97, 208, 108, 114, 116, 255, 191, 3, 69, 107, 148, 13, 179, 46, 255, 255, 159, 216, + 102, 159, 27, 29, 97, 170, 91, 209, 251, 216, 145, 159, 69, 130, 183, 245, 193, 116, 74, 122, 121, 14, 136, 18, + 87, 104, 179, 65, 136, 27, 252, 27, 143, 140, 59, 212, 238, 133, 27, 163, 1, 101, 133, 111, 78, 116, 72, 74, 44, + 151, 189, 98, 161, 18, 113, 246, 50, 165, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3571, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18347902578646363824" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69fd8669f1bfea0d82f15b0aeb080ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 216, 102, 159, 27, 254, 160, 216, 47, 21, 176, + 174, 176, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3572, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2949535509942224331" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3884842658864302645" + } + } + ] + }, + "cborHex": "d8669f1b28eedaeb4281c5cb9f1b35e9bbd0c1e40a35ffff", + "cborBytes": [ + 216, 102, 159, 27, 40, 238, 218, 235, 66, 129, 197, 203, 159, 27, 53, 233, 187, 208, 193, 228, 10, 53, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3573, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10049162895526855486" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aba27d887b86c43153ae6f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6013592940072035820" + } + }, + { + "_tag": "ByteArray", + "bytearray": "14" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16837554969504453365" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7741111742284682707" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8b75cc6925ea033e9f9f4baba27d887b86c43153ae6f9f1b537492eae8ca65ec41141be9ab03091b6d12f5ff1b6b6df41d8d7bd5d3ffffff", + "cborBytes": [ + 216, 102, 159, 27, 139, 117, 204, 105, 37, 234, 3, 62, 159, 159, 75, 171, 162, 125, 136, 123, 134, 196, 49, 83, + 174, 111, 159, 27, 83, 116, 146, 234, 232, 202, 101, 236, 65, 20, 27, 233, 171, 3, 9, 27, 109, 18, 245, 255, 27, + 107, 109, 244, 29, 141, 123, 213, 211, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3574, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d3e5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2590306740336096282" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4370545220996556362" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3002516174739889724" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e40adf00664714544e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9687771371325361197" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c4fe349307c24ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13083782660188633215" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3655113949499610485" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3720017361083158498" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05a4425d4022df6b5d551fa6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "119b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3432000755343677242" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6467537601675498260" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8799f42d3e5bf1b23f29e419d08741a1b3ca74bb8ec47e64a1b29ab148d8bbc5e3c49e40adf00664714544e1b8671e0bbf50c0c2d483c4fe349307c24ff1bb592ef0232f5787f1b32b992c57d7fd575ffbf1b33a0281495a5cfe24c05a4425d4022df6b5d551fa642119b1b2fa0ea80e321d73affd8669f1b59c14f2ea75993149fa0ffffff", + "cborBytes": [ + 216, 121, 159, 66, 211, 229, 191, 27, 35, 242, 158, 65, 157, 8, 116, 26, 27, 60, 167, 75, 184, 236, 71, 230, 74, + 27, 41, 171, 20, 141, 139, 188, 94, 60, 73, 228, 10, 223, 0, 102, 71, 20, 84, 78, 27, 134, 113, 224, 187, 245, 12, + 12, 45, 72, 60, 79, 227, 73, 48, 124, 36, 255, 27, 181, 146, 239, 2, 50, 245, 120, 127, 27, 50, 185, 146, 197, + 125, 127, 213, 117, 255, 191, 27, 51, 160, 40, 20, 149, 165, 207, 226, 76, 5, 164, 66, 93, 64, 34, 223, 107, 93, + 85, 31, 166, 66, 17, 155, 27, 47, 160, 234, 128, 227, 33, 215, 58, 255, 216, 102, 159, 27, 89, 193, 79, 46, 167, + 89, 147, 20, 159, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3575, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4067164622043582040" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d20d9c8b461bd215f23f53" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f1b387178accbf18e584bd20d9c8b461bd215f23f53ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 27, 56, 113, 120, 172, 203, 241, 142, 88, 75, 210, + 13, 156, 139, 70, 27, 210, 21, 242, 63, 83, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3576, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2166894706974873049" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0cf8dd1642fb2ec4c9ffff" + } + ] + }, + "cborHex": "d8669f1b1e125b415ae955d99f4b0cf8dd1642fb2ec4c9ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 30, 18, 91, 65, 90, 233, 85, 217, 159, 75, 12, 248, 221, 22, 66, 251, 46, 196, 201, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3577, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1748150856232674095" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12861394162910862601" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12474491917530102709" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9109843024143825283" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79e767b7a786" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "033df98994f851ca01fb0102" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b1842adf10f8b232f9f1bfffffffffffffffdd8669f1bb27cd9d93c959d0980ff0dd8669f1bad1e4c4e69dcfbb580ffbf41061b7e6ca9f6e5a9b9834679e767b7a7864c033df98994f851ca01fb0102ffffff", + "cborBytes": [ + 216, 102, 159, 27, 24, 66, 173, 241, 15, 139, 35, 47, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 216, 102, + 159, 27, 178, 124, 217, 217, 60, 149, 157, 9, 128, 255, 13, 216, 102, 159, 27, 173, 30, 76, 78, 105, 220, 251, + 181, 128, 255, 191, 65, 6, 27, 126, 108, 169, 246, 229, 169, 185, 131, 70, 121, 231, 103, 183, 167, 134, 76, 3, + 61, 249, 137, 148, 248, 81, 202, 1, 251, 1, 2, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3578, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9394582936580696040" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b82604367fbd6a7e89fd87f9f0bffffff", + "cborBytes": [216, 102, 159, 27, 130, 96, 67, 103, 251, 214, 167, 232, 159, 216, 127, 159, 11, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3579, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1309565752415242563" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a7a4e7274e1af1e5a6fc62" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3904" + }, + { + "_tag": "ByteArray", + "bytearray": "e288f0a6c465" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6390156430044194708" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e92ac27e3a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1d046a39f468716" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87f9f9f9f1b122c831d0aba49434ba7a4e7274e1af1e5a6fc62ff1bfffffffffffffff29f42390446e288f0a6c4651b58ae656aa7f6679400ffbf461e92ac27e3a948d1d046a39f468716ffffff", + "cborBytes": [ + 216, 127, 159, 159, 159, 27, 18, 44, 131, 29, 10, 186, 73, 67, 75, 167, 164, 231, 39, 78, 26, 241, 229, 166, 252, + 98, 255, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 66, 57, 4, 70, 226, 136, 240, 166, 196, 101, 27, 88, + 174, 101, 106, 167, 246, 103, 148, 0, 255, 191, 70, 30, 146, 172, 39, 227, 169, 72, 209, 208, 70, 163, 159, 70, + 135, 22, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3580, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "48114c2ba34eb8979e8113dc" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11024010155452176460" + } + } + ] + } + ] + }, + "cborHex": "d87f9fd8669f1bfffffffffffffff99f4c48114c2ba34eb8979e8113dc80ffffd8669f1bfffffffffffffff49f0d1bfffffffffffffffb1b98fd26d42406984cffffff", + "cborBytes": [ + 216, 127, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 76, 72, 17, 76, 43, 163, 78, 184, + 151, 158, 129, 19, 220, 128, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 13, 27, + 255, 255, 255, 255, 255, 255, 255, 251, 27, 152, 253, 38, 212, 36, 6, 152, 76, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3581, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "064902" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2379528243725584997" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17195161421082337741" + } + } + ] + } + ] + }, + "cborHex": "d905009f9fbf430649021b2105c8549445ca65ff1beea17c35671d21cdffff", + "cborBytes": [ + 217, 5, 0, 159, 159, 191, 67, 6, 73, 2, 27, 33, 5, 200, 84, 148, 69, 202, 101, 255, 27, 238, 161, 124, 53, 103, + 29, 33, 205, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3582, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2f1c7515d8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13374059755188277653" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9129054370164817855" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b09f70e3" + }, + { + "_tag": "ByteArray", + "bytearray": "94df99a1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4321094103890314452" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905079f452f1c7515d8d905029f1bb99a347d10d85195d8669f1b7eb0ea94f4e6bfbf9f44b09f70e34494df99a11b3bf79c317f6ac4d4ffffffff", + "cborBytes": [ + 217, 5, 7, 159, 69, 47, 28, 117, 21, 216, 217, 5, 2, 159, 27, 185, 154, 52, 125, 16, 216, 81, 149, 216, 102, 159, + 27, 126, 176, 234, 148, 244, 230, 191, 191, 159, 68, 176, 159, 112, 227, 68, 148, 223, 153, 161, 27, 59, 247, 156, + 49, 127, 106, 196, 212, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3583, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9179688613680646327" + }, + "fields": [] + }, + "cborHex": "d8669f1b7f64ce28772208b780ff", + "cborBytes": [216, 102, 159, 27, 127, 100, 206, 40, 119, 34, 8, 183, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3584, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2942155717583042243" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21e789789f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5501855235441771984" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7778776407337843395" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0eaa71c04021e30ebc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13091376110670300719" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17254854355878455906" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa56fed72f4968162ff58d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10727510281498316281" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11087932808075851549" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18014102171461826974" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13910955478447256551" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10769196827245594623" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18145860048921366611" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7bbc4ff8a048a12286" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3984921705706211842" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3288095608967142247" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "89d76dfaabbad1e1" + }, + { + "_tag": "ByteArray", + "bytearray": "46b7b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18417010898666273124" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905069fbf1b28d4a309746bf6c34521e789789f1b4c5a842fc22145d041171b6bf3c3edc28fbac3490eaa71c04021e30ebc1bb5ade9362989c62f416a1bef758e9dd53caa624baa56fed72f4968162ff58dff9fd8669f1b94dfc5c3a50ecdf99f1b99e040247ec2b71d1bf9fef27b6d93399e1bc10da44de31f73e71b9573df74ec3cc7ff1bfbd30b92d7e91053ffff497bbc4ff8a048a12286d8669f1b374d492da65cca0280ffd8669f1b2da1a98908021b679f4889d76dfaabbad1e14346b7b71bff965dd5b7803964ffffffff", + "cborBytes": [ + 217, 5, 6, 159, 191, 27, 40, 212, 163, 9, 116, 107, 246, 195, 69, 33, 231, 137, 120, 159, 27, 76, 90, 132, 47, + 194, 33, 69, 208, 65, 23, 27, 107, 243, 195, 237, 194, 143, 186, 195, 73, 14, 170, 113, 192, 64, 33, 227, 14, 188, + 27, 181, 173, 233, 54, 41, 137, 198, 47, 65, 106, 27, 239, 117, 142, 157, 213, 60, 170, 98, 75, 170, 86, 254, 215, + 47, 73, 104, 22, 47, 245, 141, 255, 159, 216, 102, 159, 27, 148, 223, 197, 195, 165, 14, 205, 249, 159, 27, 153, + 224, 64, 36, 126, 194, 183, 29, 27, 249, 254, 242, 123, 109, 147, 57, 158, 27, 193, 13, 164, 77, 227, 31, 115, + 231, 27, 149, 115, 223, 116, 236, 60, 199, 255, 27, 251, 211, 11, 146, 215, 233, 16, 83, 255, 255, 73, 123, 188, + 79, 248, 160, 72, 161, 34, 134, 216, 102, 159, 27, 55, 77, 73, 45, 166, 92, 202, 2, 128, 255, 216, 102, 159, 27, + 45, 161, 169, 137, 8, 2, 27, 103, 159, 72, 137, 215, 109, 250, 171, 186, 209, 225, 67, 70, 183, 183, 27, 255, 150, + 93, 213, 183, 128, 57, 100, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3585, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a8" + }, + { + "_tag": "ByteArray", + "bytearray": "38" + } + ] + }, + "cborHex": "d905069f41a84138ff", + "cborBytes": [217, 5, 6, 159, 65, 168, 65, 56, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3586, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7639906717259523750" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16600b1a4677e61f92b936" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13817597662486893651" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e6d31" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11767448952188843962" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fcf62edad0a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61805758b9e91905d7b0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92f1b2926e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12578216234641327818" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab3b4f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c6c329892302bf005" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff662155039c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "900a554d3eece5e6721f" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b6a0666ae6f5fe6a69f9fbf4b16600b1a4677e61f92b9361bbfc1f7dd81cc9453431e6d311ba34e6079b3c237ba466fcf62edad0a4a61805758b9e91905d7b04592f1b2926e1bae8ecd05edd906ca43ab3b4f494c6c329892302bf00546ff662155039c4a900a554d3eece5e6721fffffffff", + "cborBytes": [ + 216, 102, 159, 27, 106, 6, 102, 174, 111, 95, 230, 166, 159, 159, 191, 75, 22, 96, 11, 26, 70, 119, 230, 31, 146, + 185, 54, 27, 191, 193, 247, 221, 129, 204, 148, 83, 67, 30, 109, 49, 27, 163, 78, 96, 121, 179, 194, 55, 186, 70, + 111, 207, 98, 237, 173, 10, 74, 97, 128, 87, 88, 185, 233, 25, 5, 215, 176, 69, 146, 241, 178, 146, 110, 27, 174, + 142, 205, 5, 237, 217, 6, 202, 67, 171, 59, 79, 73, 76, 108, 50, 152, 146, 48, 43, 240, 5, 70, 255, 102, 33, 85, + 3, 156, 74, 144, 10, 85, 77, 62, 236, 229, 230, 114, 31, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3587, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2317543054092762610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "da6c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14973533277691912900" + } + }, + { + "_tag": "ByteArray", + "bytearray": "19929eaaa11cd6ff390ef97a" + }, + { + "_tag": "ByteArray", + "bytearray": "52e8106260a164491bffbc94" + }, + { + "_tag": "ByteArray", + "bytearray": "1f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14389917154898381469" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b20299120fadf7df29f42da6c9f9f1bcfccad2ed15122c44c19929eaaa11cd6ff390ef97a4c52e8106260a164491bffbc94411f1bc7b341694d048a9dffffffff", + "cborBytes": [ + 216, 102, 159, 27, 32, 41, 145, 32, 250, 223, 125, 242, 159, 66, 218, 108, 159, 159, 27, 207, 204, 173, 46, 209, + 81, 34, 196, 76, 25, 146, 158, 170, 161, 28, 214, 255, 57, 14, 249, 122, 76, 82, 232, 16, 98, 96, 161, 100, 73, + 27, 255, 188, 148, 65, 31, 27, 199, 179, 65, 105, 77, 4, 138, 157, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3588, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2106044568002915638" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "421791633791633653" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f24" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8397383108136903557" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "428f91275f48" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13820202652981928051" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2beb35ff679" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16493726948095709171" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5077468793467441809" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1628337114915150442" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72112fd6903cf77d" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f1b1d3a2c6054f46d368080bf1b05da81419561c8f5421f241b74897f72135da38546428f91275f481bbfcb39171ee6207346a2beb35ff679ff9fa0809f1be4e57d4593884ff31b4676caf750c212911b169903fa8d1a1a6a4872112fd6903cf77dffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 27, 29, 58, 44, 96, 84, 244, 109, 54, 128, 128, + 191, 27, 5, 218, 129, 65, 149, 97, 200, 245, 66, 31, 36, 27, 116, 137, 127, 114, 19, 93, 163, 133, 70, 66, 143, + 145, 39, 95, 72, 27, 191, 203, 57, 23, 30, 230, 32, 115, 70, 162, 190, 179, 95, 246, 121, 255, 159, 160, 128, 159, + 27, 228, 229, 125, 69, 147, 136, 79, 243, 27, 70, 118, 202, 247, 80, 194, 18, 145, 27, 22, 153, 3, 250, 141, 26, + 26, 106, 72, 114, 17, 47, 214, 144, 60, 247, 125, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3589, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11078460263454734468" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "68" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5586976963970408762" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b99be98e9d57ff8849f4168d8669f1b4d88edf299bf213a80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 153, 190, 152, 233, 213, 127, 248, 132, 159, 65, 104, 216, 102, 159, 27, 77, 136, 237, 242, + 153, 191, 33, 58, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3590, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15874989925790626408" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71b3c5422f60163163" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14022249377565821340" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de48fd9c6d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9245589024095243042" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2c4abd1ebce2a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13120870450790061050" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea72b7250b59" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4827544530265455667" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b53f5669abefe4f39" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10208568867223492192" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "860852" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11435136777044632046" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d18b3888757132" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4d669d090ffce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fca7476d90" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6186117070229701000" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b6" + } + ] + }, + "cborHex": "d87c9fbf41231bdc4f4b3a6ba7b2684971b3c5422f601631631bc29909840dc0c99c45de48fd9c6d1b804eee3b70728b2247e2c4abd1ebce2a1bb616b2285b42d3fa46ea72b7250b591b42fee22c3fda3c33ffbf495b53f5669abefe4f391b8dac1f4c23f7d660438608521b9eb1c45011c021ee47d18b388875713247d4d669d090ffce45fca7476d901b55d980b32e058188ff41b6ff", + "cborBytes": [ + 216, 124, 159, 191, 65, 35, 27, 220, 79, 75, 58, 107, 167, 178, 104, 73, 113, 179, 197, 66, 47, 96, 22, 49, 99, + 27, 194, 153, 9, 132, 13, 192, 201, 156, 69, 222, 72, 253, 156, 109, 27, 128, 78, 238, 59, 112, 114, 139, 34, 71, + 226, 196, 171, 209, 235, 206, 42, 27, 182, 22, 178, 40, 91, 66, 211, 250, 70, 234, 114, 183, 37, 11, 89, 27, 66, + 254, 226, 44, 63, 218, 60, 51, 255, 191, 73, 91, 83, 245, 102, 154, 190, 254, 79, 57, 27, 141, 172, 31, 76, 35, + 247, 214, 96, 67, 134, 8, 82, 27, 158, 177, 196, 80, 17, 192, 33, 238, 71, 209, 139, 56, 136, 117, 113, 50, 71, + 212, 214, 105, 208, 144, 255, 206, 69, 252, 167, 71, 109, 144, 27, 85, 217, 128, 179, 46, 5, 129, 136, 255, 65, + 182, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3591, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10684032750566821610" + }, + "fields": [] + }, + "cborHex": "d8669f1b94454f2e222cceea80ff", + "cborBytes": [216, 102, 159, 27, 148, 69, 79, 46, 34, 44, 206, 234, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3592, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17106309982487840149" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1024604040695494070" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4576467470140189685" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9214684081989275833" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14269046513523319846" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5980939652201399286" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1726638954111350683" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "442348455807927949" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10660406861344094547" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11162653431561886766" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12160545620875174052" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14859879198113641140" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12706d5ed11c04d3d2" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "13a3be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10680617504711322432" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14902532820103481069" + } + }, + { + "_tag": "ByteArray", + "bytearray": "19e8e82108e74833" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14197067942244829147" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6375062734517821350" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0abc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14888949517073213789" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5ff9ffaed03b8e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "963c227605654d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d5ff42e4e8fa887fe" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4352467601817002719" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f69ccfab9e5dacf3c502d6" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5361496287329050772" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15061039425369184189" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6181180501246653167" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15336740146444300191" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9392463627861961298" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1492383570690175376" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7469092718589400569" + } + } + ] + }, + "cborHex": "d8669f1bed65d24bc3e805959f1b0e381ff24915b5b6d8669f1b3f82e0eabbd62bf59f1b7fe12259e06ad0b91bc605d63412156426d8669f1b530090ece08343f680ffbf1b17f640fb0b28b79b1b06238993af5fc68d1b93f15f8f238d395341501b9ae9b6275b0a9c2e1ba8c2efd0173260a41bce38e56650c7b2b44912706d5ed11c04d3d2ffffff9f9f4313a3be1b94392d083e232b401bced06ea493de46ed4819e8e82108e74833ff1bc5061e12fd96c7dbbf1b5878c5c7cfc3dfa6420abc1bcea02cb363df695d48f5ff9ffaed03b8e8418f416347963c227605654d493d5ff42e4e8fa887feff1b3c67123936b2e2df4bf69ccfab9e5dacf3c502d6ffbf1b4a67dc7786d2e0941bd1038f8f814897bd1b55c7f6eaa560b2ef1bd4d70be7d948ef9f1b8258bbe7f87d2a521b14b602f3579df190ff1b67a78c412dfa55f9ffff", + "cborBytes": [ + 216, 102, 159, 27, 237, 101, 210, 75, 195, 232, 5, 149, 159, 27, 14, 56, 31, 242, 73, 21, 181, 182, 216, 102, 159, + 27, 63, 130, 224, 234, 187, 214, 43, 245, 159, 27, 127, 225, 34, 89, 224, 106, 208, 185, 27, 198, 5, 214, 52, 18, + 21, 100, 38, 216, 102, 159, 27, 83, 0, 144, 236, 224, 131, 67, 246, 128, 255, 191, 27, 23, 246, 64, 251, 11, 40, + 183, 155, 27, 6, 35, 137, 147, 175, 95, 198, 141, 27, 147, 241, 95, 143, 35, 141, 57, 83, 65, 80, 27, 154, 233, + 182, 39, 91, 10, 156, 46, 27, 168, 194, 239, 208, 23, 50, 96, 164, 27, 206, 56, 229, 102, 80, 199, 178, 180, 73, + 18, 112, 109, 94, 209, 28, 4, 211, 210, 255, 255, 255, 159, 159, 67, 19, 163, 190, 27, 148, 57, 45, 8, 62, 35, 43, + 64, 27, 206, 208, 110, 164, 147, 222, 70, 237, 72, 25, 232, 232, 33, 8, 231, 72, 51, 255, 27, 197, 6, 30, 18, 253, + 150, 199, 219, 191, 27, 88, 120, 197, 199, 207, 195, 223, 166, 66, 10, 188, 27, 206, 160, 44, 179, 99, 223, 105, + 93, 72, 245, 255, 159, 250, 237, 3, 184, 232, 65, 143, 65, 99, 71, 150, 60, 34, 118, 5, 101, 77, 73, 61, 95, 244, + 46, 78, 143, 168, 135, 254, 255, 27, 60, 103, 18, 57, 54, 178, 226, 223, 75, 246, 156, 207, 171, 158, 93, 172, + 243, 197, 2, 214, 255, 191, 27, 74, 103, 220, 119, 134, 210, 224, 148, 27, 209, 3, 143, 143, 129, 72, 151, 189, + 27, 85, 199, 246, 234, 165, 96, 178, 239, 27, 212, 215, 11, 231, 217, 72, 239, 159, 27, 130, 88, 187, 231, 248, + 125, 42, 82, 27, 20, 182, 2, 243, 87, 157, 241, 144, 255, 27, 103, 167, 140, 65, 45, 250, 85, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3593, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a0" + }, + { + "_tag": "ByteArray", + "bytearray": "f549af5232d29a50" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5052915088896046703" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13577322525017547507" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13966157438950098418" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9049423993553009900" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f8fc0600026f11fc0c59d6" + } + ] + }, + "cborHex": "d905069f0b9f9f41a048f549af5232d29a50ffffbf131b461f8f8079dc366f1bbc6c56e69894a2f3091bc1d1c231e1ccc5f209ffd8669f1b7d96032d1d9fbcec80ff4bf8fc0600026f11fc0c59d6ff", + "cborBytes": [ + 217, 5, 6, 159, 11, 159, 159, 65, 160, 72, 245, 73, 175, 82, 50, 210, 154, 80, 255, 255, 191, 19, 27, 70, 31, 143, + 128, 121, 220, 54, 111, 27, 188, 108, 86, 230, 152, 148, 162, 243, 9, 27, 193, 209, 194, 49, 225, 204, 197, 242, + 9, 255, 216, 102, 159, 27, 125, 150, 3, 45, 29, 159, 188, 236, 128, 255, 75, 248, 252, 6, 0, 2, 111, 17, 252, 12, + 89, 214, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3594, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3323653549322836429" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fe6cfcff046453b6" + } + ] + }, + "cborHex": "d8669f1b2e1ffd4b2bda99cd9f1448fe6cfcff046453b6ffff", + "cborBytes": [ + 216, 102, 159, 27, 46, 31, 253, 75, 43, 218, 153, 205, 159, 20, 72, 254, 108, 252, 255, 4, 100, 83, 182, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3595, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2909441377438000792" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8200189479809927522" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e6a1c09691629" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2937396143329413569" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11858729603817122021" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8374df6d0d2d4d9fb3964838" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14bce3ee3ac5ff64e03496db" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2611707122275765358" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12046412029868176865" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4977569479102602735" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da6b5d79c97a5f64ef1a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13681049604695561069" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10739773963197558246" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14190811604549467216" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b2b96a21260c7f7813e5605" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17926321446968302831" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f74d9bff" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3227268286" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13131824892594689818" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36d3bff10b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a32" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a5769445ec705" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec5837a7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbe4a3306e23" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8427239786613351758" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1f04a209acb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15866588355325330811" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efbd1513f384" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56399e8f" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5573103498528299471" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13fd0c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7469722167564445168" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9942b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7617457580891302187" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8091555129872956308" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8565921029128328750" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad921f848249" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13857555579598806678" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9144250632402201431" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16688121126691029971" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21d807bfde540cf16935a9" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4758202187267421540" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17017091752534126432" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e3bb82cb56ec41c24" + }, + { + "_tag": "ByteArray", + "bytearray": "7e2fe95ef5116b" + }, + { + "_tag": "ByteArray", + "bytearray": "58e05484" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14512762336030836321" + } + } + ] + }, + "cborHex": "d8669f1b286069849503e6989f1b71ccece2aaf74962bf472e6a1c096916291b28c3ba3ab7c089c1413a1ba492abbe92eda8e54c8374df6d0d2d4d9fb39648384c14bce3ee3ac5ff64e03496dbff9fbf1b243ea5ca509acc6e1ba72d73eaa248f5e11b4513e111a6bc9def4ada6b5d79c97a5f64ef1a1bbddcda215260936d1b950b57848c612de61bc4efe3f7dba97c504c9b2b96a21260c7f7813e56051bf8c71660d8031cef4137ff44f74d9bffbf4532272682861bb63d9d2a17bd171a4536d3bff10b422a32473a5769445ec70544ec5837a746cbe4a3306e231b74f391efbe20a54e46d1f04a209acb1bdc31720b5c84057b46efbd1513f3844456399e8fffbf1b4d57a41ab64419cf4313fd0c1b67a9c8bc308a25f043f9942b1b69b6a54f90a1e92b1b704afa850c913b941b76e043cab33e162e46ad921f8482491bc04fed6111381e961b7ee6e78079796b571be7981dbf4d1c43d34b21d807bfde540cf16935a9ffff9fd8669f1b420887ade58fb5649f1bec28dac9dc06af60498e3bb82cb56ec41c24477e2fe95ef5116b4458e05484ffffff1bc967b073e4c94661ffff", + "cborBytes": [ + 216, 102, 159, 27, 40, 96, 105, 132, 149, 3, 230, 152, 159, 27, 113, 204, 236, 226, 170, 247, 73, 98, 191, 71, 46, + 106, 28, 9, 105, 22, 41, 27, 40, 195, 186, 58, 183, 192, 137, 193, 65, 58, 27, 164, 146, 171, 190, 146, 237, 168, + 229, 76, 131, 116, 223, 109, 13, 45, 77, 159, 179, 150, 72, 56, 76, 20, 188, 227, 238, 58, 197, 255, 100, 224, 52, + 150, 219, 255, 159, 191, 27, 36, 62, 165, 202, 80, 154, 204, 110, 27, 167, 45, 115, 234, 162, 72, 245, 225, 27, + 69, 19, 225, 17, 166, 188, 157, 239, 74, 218, 107, 93, 121, 201, 122, 95, 100, 239, 26, 27, 189, 220, 218, 33, 82, + 96, 147, 109, 27, 149, 11, 87, 132, 140, 97, 45, 230, 27, 196, 239, 227, 247, 219, 169, 124, 80, 76, 155, 43, 150, + 162, 18, 96, 199, 247, 129, 62, 86, 5, 27, 248, 199, 22, 96, 216, 3, 28, 239, 65, 55, 255, 68, 247, 77, 155, 255, + 191, 69, 50, 39, 38, 130, 134, 27, 182, 61, 157, 42, 23, 189, 23, 26, 69, 54, 211, 191, 241, 11, 66, 42, 50, 71, + 58, 87, 105, 68, 94, 199, 5, 68, 236, 88, 55, 167, 70, 203, 228, 163, 48, 110, 35, 27, 116, 243, 145, 239, 190, + 32, 165, 78, 70, 209, 240, 74, 32, 154, 203, 27, 220, 49, 114, 11, 92, 132, 5, 123, 70, 239, 189, 21, 19, 243, + 132, 68, 86, 57, 158, 143, 255, 191, 27, 77, 87, 164, 26, 182, 68, 25, 207, 67, 19, 253, 12, 27, 103, 169, 200, + 188, 48, 138, 37, 240, 67, 249, 148, 43, 27, 105, 182, 165, 79, 144, 161, 233, 43, 27, 112, 74, 250, 133, 12, 145, + 59, 148, 27, 118, 224, 67, 202, 179, 62, 22, 46, 70, 173, 146, 31, 132, 130, 73, 27, 192, 79, 237, 97, 17, 56, 30, + 150, 27, 126, 230, 231, 128, 121, 121, 107, 87, 27, 231, 152, 29, 191, 77, 28, 67, 211, 75, 33, 216, 7, 191, 222, + 84, 12, 241, 105, 53, 169, 255, 255, 159, 216, 102, 159, 27, 66, 8, 135, 173, 229, 143, 181, 100, 159, 27, 236, + 40, 218, 201, 220, 6, 175, 96, 73, 142, 59, 184, 44, 181, 110, 196, 28, 36, 71, 126, 47, 233, 94, 245, 17, 107, + 68, 88, 224, 84, 132, 255, 255, 255, 27, 201, 103, 176, 115, 228, 201, 70, 97, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3596, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9875954912296933927" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "94bf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5757294624201737443" + } + }, + { + "_tag": "ByteArray", + "bytearray": "918d8101e2" + } + ] + }, + "cborHex": "d8669f1b890e70aaed3b9a279f4294bf1b4fe604f50ecf84e345918d8101e2ffff", + "cborBytes": [ + 216, 102, 159, 27, 137, 14, 112, 170, 237, 59, 154, 39, 159, 66, 148, 191, 27, 79, 230, 4, 245, 14, 207, 132, 227, + 69, 145, 141, 129, 1, 226, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3597, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17974248933796580972" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12612617508369593452" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ad7e1a515c28d5c969" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2962891832187849843" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18066603804039414007" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8672919494599706361" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10850043707528716189" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13386853721554461815" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecd12d6de71fc94a5b2d6f6a" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3511281a3613d325ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ee2883c76915d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b6edaf5ab3576d8a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9882523627477129256" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a92c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c493013c7908ccf8db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb313e1e6d13820adbf1" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6018174958580411671" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "438ade3c9a0294d79e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18279117259539954497" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b774394371e90c8e" + }, + { + "_tag": "ByteArray", + "bytearray": "ed27381533db39" + }, + { + "_tag": "ByteArray", + "bytearray": "3ed605" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11699525047456891095" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1a33a729d87d" + } + ] + }, + "cborHex": "d8669f1bf9715c2c73638e6c9f1baf0904cca23df46c9f49ad7e1a515c28d5c969bf1b291e4e6c5d768c731bfab97870557d80f71b785c6654492d06f91b9693194418b61f9d1bb9c7a8887d5ea4774cecd12d6de71fc94a5b2d6f6affbf493511281a3613d325ae474ee2883c76915d495b6edaf5ab3576d8a71b8925c6e11c2dd82842a92c41d649c493013c7908ccf8db4afb313e1e6d13820adbf1ffff9fd8669f1b5384da3d3a562d179f49438ade3c9a0294d79e1bfdac784cf6973b4148b774394371e90c8e47ed27381533db39433ed605ffff1ba25d100b3e7400d7ff461a33a729d87dffff", + "cborBytes": [ + 216, 102, 159, 27, 249, 113, 92, 44, 115, 99, 142, 108, 159, 27, 175, 9, 4, 204, 162, 61, 244, 108, 159, 73, 173, + 126, 26, 81, 92, 40, 213, 201, 105, 191, 27, 41, 30, 78, 108, 93, 118, 140, 115, 27, 250, 185, 120, 112, 85, 125, + 128, 247, 27, 120, 92, 102, 84, 73, 45, 6, 249, 27, 150, 147, 25, 68, 24, 182, 31, 157, 27, 185, 199, 168, 136, + 125, 94, 164, 119, 76, 236, 209, 45, 109, 231, 31, 201, 74, 91, 45, 111, 106, 255, 191, 73, 53, 17, 40, 26, 54, + 19, 211, 37, 174, 71, 78, 226, 136, 60, 118, 145, 93, 73, 91, 110, 218, 245, 171, 53, 118, 216, 167, 27, 137, 37, + 198, 225, 28, 45, 216, 40, 66, 169, 44, 65, 214, 73, 196, 147, 1, 60, 121, 8, 204, 248, 219, 74, 251, 49, 62, 30, + 109, 19, 130, 10, 219, 241, 255, 255, 159, 216, 102, 159, 27, 83, 132, 218, 61, 58, 86, 45, 23, 159, 73, 67, 138, + 222, 60, 154, 2, 148, 215, 158, 27, 253, 172, 120, 76, 246, 151, 59, 65, 72, 183, 116, 57, 67, 113, 233, 12, 142, + 71, 237, 39, 56, 21, 51, 219, 57, 67, 62, 214, 5, 255, 255, 27, 162, 93, 16, 11, 62, 116, 0, 215, 255, 70, 26, 51, + 167, 41, 216, 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3598, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6031008887545893634" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9038027558830674476" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11443254158973287787" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16430105757134033703" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86075edbd23aba3a945272c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbcf3e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e935777bda8da4" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7638307623931796120" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d537c7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3371208937845186316" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10581904262487645361" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b53b272a12b6593029fbf1b7d6d862de24b122c1b9ece9b07541d3d6b1be4037622bc1313274c86075edbd23aba3a945272c643bbcf3e47e935777bda8da4ff1b6a00b850819cda9843d537c7d8669f1b2ec8f0aae3e25f0c9f1b92da79dc84c49cb1a0ffff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 83, 178, 114, 161, 43, 101, 147, 2, 159, 191, 27, 125, 109, 134, 45, 226, 75, 18, 44, 27, 158, + 206, 155, 7, 84, 29, 61, 107, 27, 228, 3, 118, 34, 188, 19, 19, 39, 76, 134, 7, 94, 219, 210, 58, 186, 58, 148, + 82, 114, 198, 67, 187, 207, 62, 71, 233, 53, 119, 123, 218, 141, 164, 255, 27, 106, 0, 184, 80, 129, 156, 218, + 152, 67, 213, 55, 199, 216, 102, 159, 27, 46, 200, 240, 170, 227, 226, 95, 12, 159, 27, 146, 218, 121, 220, 132, + 196, 156, 177, 160, 255, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3599, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4673071233738389418" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15927408851159232447" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14311102746475227902" + } + } + ] + }, + "cborHex": "d8669f1b40da15873112b7aa9f1bdd0985f68dc22fbf1bc69b401fdbc5eafeffff", + "cborBytes": [ + 216, 102, 159, 27, 64, 218, 21, 135, 49, 18, 183, 170, 159, 27, 221, 9, 133, 246, 141, 194, 47, 191, 27, 198, 155, + 64, 31, 219, 197, 234, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3600, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10375340582577455556" + }, + "fields": [] + } + ] + }, + "cborHex": "d905089fd8669f1b8ffc9d49f83941c480ffff", + "cborBytes": [217, 5, 8, 159, 216, 102, 159, 27, 143, 252, 157, 73, 248, 57, 65, 196, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3601, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4720146638319902081" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "328c95a0e3cb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4187564970513455901" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6605835808364350136" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7744201675129617067" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fae5ea6b6b94d1" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6329113863824717541" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9098000695569509994" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6431497558284482652" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5466f5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17566077711966810224" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16310765229957352338" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "588a20" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9ef7880fe908bc2e270ed60" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ad1e5a72df3511009280" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16723981983512898179" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3929932217237835373" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "37cc4700" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "517982149757463904" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e0f0197" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79f5a02ab718e6bfe0ffa4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6eba62eaf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bc18020309b02dc9db818b4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3f4ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a73111a8dbee55dda0" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b4181545bf0cfdd819f46328c95a0e3cb1b3a1d38276d52db1d9f9f1b5baca4ab221ccab8ffd8669f1b6b78ee649b15faab9f47fae5ea6b6b94d1ffffbf1b57d58786ac45b6e51b7e42976de9ad6e6a1b594144f42756b85c435466f51bf3c73e9c26b030701be25b7a8efa668b9243588a204cb9ef7880fe908bc2e270ed60ff4aad1e5a72df3511009280ffa0d8669f1be8178501ad51aa839fd8669f1b3689ec87a7d30e6d80ffbf4437cc47001b07303e0554496d60446e0f01974b79f5a02ab718e6bfe0ffa445b6eba62eaf4c3bc18020309b02dc9db818b443f3f4ad49a73111a8dbee55dda0ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 65, 129, 84, 91, 240, 207, 221, 129, 159, 70, 50, 140, 149, 160, 227, 203, 27, 58, 29, 56, 39, + 109, 82, 219, 29, 159, 159, 27, 91, 172, 164, 171, 34, 28, 202, 184, 255, 216, 102, 159, 27, 107, 120, 238, 100, + 155, 21, 250, 171, 159, 71, 250, 229, 234, 107, 107, 148, 209, 255, 255, 191, 27, 87, 213, 135, 134, 172, 69, 182, + 229, 27, 126, 66, 151, 109, 233, 173, 110, 106, 27, 89, 65, 68, 244, 39, 86, 184, 92, 67, 84, 102, 245, 27, 243, + 199, 62, 156, 38, 176, 48, 112, 27, 226, 91, 122, 142, 250, 102, 139, 146, 67, 88, 138, 32, 76, 185, 239, 120, + 128, 254, 144, 139, 194, 226, 112, 237, 96, 255, 74, 173, 30, 90, 114, 223, 53, 17, 0, 146, 128, 255, 160, 216, + 102, 159, 27, 232, 23, 133, 1, 173, 81, 170, 131, 159, 216, 102, 159, 27, 54, 137, 236, 135, 167, 211, 14, 109, + 128, 255, 191, 68, 55, 204, 71, 0, 27, 7, 48, 62, 5, 84, 73, 109, 96, 68, 110, 15, 1, 151, 75, 121, 245, 160, 42, + 183, 24, 230, 191, 224, 255, 164, 69, 182, 235, 166, 46, 175, 76, 59, 193, 128, 32, 48, 155, 2, 220, 157, 184, 24, + 180, 67, 243, 244, 173, 73, 167, 49, 17, 168, 219, 238, 85, 221, 160, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3602, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "54baf18c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "75163a06e8fdc54731" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2529227320425419557" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d0a4db12a2" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9f4454baf18c9fbf4975163a06e8fdc547311b23199ed8f62b9325ff08ff45d0a4db12a2ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 68, 84, 186, 241, 140, 159, 191, 73, 117, 22, 58, + 6, 232, 253, 197, 71, 49, 27, 35, 25, 158, 216, 246, 43, 147, 37, 255, 8, 255, 69, 208, 164, 219, 18, 162, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3603, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7286198773284817030" + }, + "fields": [] + }, + "cborHex": "d8669f1b651dc72e2c87488680ff", + "cborBytes": [216, 102, 159, 27, 101, 29, 199, 46, 44, 135, 72, 134, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3604, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11529164614324376983" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1761640429606217697" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3815acc9c2f8d6a4f998f2e5" + } + ] + }, + "cborHex": "d8669f1b9fffd221f1ced5979f1b18729aa31ca527e14c3815acc9c2f8d6a4f998f2e5ffff", + "cborBytes": [ + 216, 102, 159, 27, 159, 255, 210, 33, 241, 206, 213, 151, 159, 27, 24, 114, 154, 163, 28, 165, 39, 225, 76, 56, + 21, 172, 201, 194, 248, 214, 164, 249, 152, 242, 229, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3605, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9374898200586899333" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8431611719184310400" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1527a1f16ff6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9243011663156706298" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6270924123493633444" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa358615" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9f1b821a543e3b6e4f85d8669f1b75031a2f9e0060809f9f461527a1f16ff6ff1b8045c622d53f7bfa1b5706cc43fa440da444fa358615ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 27, 130, 26, 84, 62, 59, 110, 79, 133, 216, 102, + 159, 27, 117, 3, 26, 47, 158, 0, 96, 128, 159, 159, 70, 21, 39, 161, 241, 111, 246, 255, 27, 128, 69, 198, 34, + 213, 63, 123, 250, 27, 87, 6, 204, 67, 250, 68, 13, 164, 68, 250, 53, 134, 21, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3606, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12992531645742207273" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aee79068c940463ce63217b5" + } + ] + }, + "cborHex": "d8669f1bb44ebeb1c57c51299f4caee79068c940463ce63217b5ffff", + "cborBytes": [ + 216, 102, 159, 27, 180, 78, 190, 177, 197, 124, 81, 41, 159, 76, 174, 231, 144, 104, 201, 64, 70, 60, 230, 50, 23, + 181, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3607, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17298194903943860220" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7106219020485389721" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0eaf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12578921181486563551" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c36623f23c488ea0e94" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14554504484218076176" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14763324440278127754" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6d7490" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3342e0f17ae58bd7acbf15" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40816f3b3d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b285d581268a30" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13145223472842508244" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "405f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13205339365988632837" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e9a812429943ea8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ffbd8bfeaa66a816517" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f36a539df7919" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddcb35" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17857550452859133059" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f6905d9d483986646986c939" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8165703208655644731" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32f507b4fc4ce1c3e1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13319001371082856699" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "363b0c848fd6966084" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15811595860648316247" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46b9ab3450c10ee6455639" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "730925518245201366" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8205315447588729204" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bf00f889d890bcffc9fbf1b629e5c8c7c27ed99420eaf1bae914e2b2824c0df4a0c36623f23c488ea0e941bc9fbfcb71fa5fc101bcce1dd5be69ed48aff436d7490bf4b3342e0f17ae58bd7acbf154540816f3b3d47b285d581268a301bb66d371a27e787d4ffbf42405f1bb742ca30403c0905484e9a812429943ea84a7ffbd8bfeaa66a816517475f36a539df791943ddcb35ff9fd8669f1bf7d2c3860548dc839f4cf6905d9d483986646986c939ffffbf1b715267cdf52fe83b4932f507b4fc4ce1c3e11bb8d6992e0e5598fb49363b0c848fd69660841bdb6e12a96dfacd574b46b9ab3450c10ee6455639ff1b0a24c4e2e04605d6d8669f1b71df22ed0b8d317480ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 240, 15, 136, 157, 137, 11, 207, 252, 159, 191, 27, 98, 158, 92, 140, 124, 39, 237, 153, 66, + 14, 175, 27, 174, 145, 78, 43, 40, 36, 192, 223, 74, 12, 54, 98, 63, 35, 196, 136, 234, 14, 148, 27, 201, 251, + 252, 183, 31, 165, 252, 16, 27, 204, 225, 221, 91, 230, 158, 212, 138, 255, 67, 109, 116, 144, 191, 75, 51, 66, + 224, 241, 122, 229, 139, 215, 172, 191, 21, 69, 64, 129, 111, 59, 61, 71, 178, 133, 213, 129, 38, 138, 48, 27, + 182, 109, 55, 26, 39, 231, 135, 212, 255, 191, 66, 64, 95, 27, 183, 66, 202, 48, 64, 60, 9, 5, 72, 78, 154, 129, + 36, 41, 148, 62, 168, 74, 127, 251, 216, 191, 234, 166, 106, 129, 101, 23, 71, 95, 54, 165, 57, 223, 121, 25, 67, + 221, 203, 53, 255, 159, 216, 102, 159, 27, 247, 210, 195, 134, 5, 72, 220, 131, 159, 76, 246, 144, 93, 157, 72, + 57, 134, 100, 105, 134, 201, 57, 255, 255, 191, 27, 113, 82, 103, 205, 245, 47, 232, 59, 73, 50, 245, 7, 180, 252, + 76, 225, 195, 225, 27, 184, 214, 153, 46, 14, 85, 152, 251, 73, 54, 59, 12, 132, 143, 214, 150, 96, 132, 27, 219, + 110, 18, 169, 109, 250, 205, 87, 75, 70, 185, 171, 52, 80, 193, 14, 230, 69, 86, 57, 255, 27, 10, 36, 196, 226, + 224, 70, 5, 214, 216, 102, 159, 27, 113, 223, 34, 237, 11, 141, 49, 116, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3608, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17893317314918477073" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6463600473267874950" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23a2c91f631b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12626852169570659041" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8252776308589721875" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15077656896141232309" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3894950552991747406" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16192443212454295589" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "270504740136033040" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4012250908242419852" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1036505386376086291" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8788687424937504660" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "113404583914698829" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12387129228019763753" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41204de05b6cb9" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "81f0d2b4a6c41aa1ad" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11951149056559245435" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51b7b56dd475" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a4eb9e5c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8501891349364613848" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1549961351818509382" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7720259253465773474" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6d7e6de" + }, + { + "_tag": "ByteArray", + "bytearray": "555ba4" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "754034295394041049" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89b379420a1e98bf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4347275833830019936" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17896646602237419008" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8568100120341162742" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a09288df78a9fd1e73e66b2" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14254100570162590265" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9c03" + }, + { + "_tag": "ByteArray", + "bytearray": "41d4686bf96cecb14b11" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13507979042012461281" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf851d54b890fed119fbf1b59b35262832dac864623a2c91f631b1baf3b9725f6a12ae11b7287c053dc3ff9131bd13e990febb788b51b360da4e440c8cd4e1be0b71d4f7c05f8251b03c106a0c1de1b10ffbf1b37ae60f17787208c1b0e62682842b9c3131b79f7b0a60557af941b0192e4de4422f84d1babe7ec672efa0a294741204de05b6cb9ff9f4981f0d2b4a6c41aa1adbf1ba5db02bf3df5687b4651b7b56dd475450a4eb9e5c61b75fcc92325d822d8ffd8669f1b158291a32eb9fc469f1b6b23dee328bff5a244d6d7e6de43555ba4ffffbf1b0a76de32556c7cd94889b379420a1e98bf1b3c54a056881413601bf85da943a5101e001b76e801a9e8eaaaf64c3a09288df78a9fd1e73e66b2ff1bc5d0bcf2753bf239ff9f9f429c034a41d4686bf96cecb14b111bbb75fb5ed092f8e1ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 248, 81, 213, 75, 137, 15, 237, 17, 159, 191, 27, 89, 179, 82, 98, 131, 45, 172, 134, 70, 35, + 162, 201, 31, 99, 27, 27, 175, 59, 151, 37, 246, 161, 42, 225, 27, 114, 135, 192, 83, 220, 63, 249, 19, 27, 209, + 62, 153, 15, 235, 183, 136, 181, 27, 54, 13, 164, 228, 64, 200, 205, 78, 27, 224, 183, 29, 79, 124, 5, 248, 37, + 27, 3, 193, 6, 160, 193, 222, 27, 16, 255, 191, 27, 55, 174, 96, 241, 119, 135, 32, 140, 27, 14, 98, 104, 40, 66, + 185, 195, 19, 27, 121, 247, 176, 166, 5, 87, 175, 148, 27, 1, 146, 228, 222, 68, 34, 248, 77, 27, 171, 231, 236, + 103, 46, 250, 10, 41, 71, 65, 32, 77, 224, 91, 108, 185, 255, 159, 73, 129, 240, 210, 180, 166, 196, 26, 161, 173, + 191, 27, 165, 219, 2, 191, 61, 245, 104, 123, 70, 81, 183, 181, 109, 212, 117, 69, 10, 78, 185, 229, 198, 27, 117, + 252, 201, 35, 37, 216, 34, 216, 255, 216, 102, 159, 27, 21, 130, 145, 163, 46, 185, 252, 70, 159, 27, 107, 35, + 222, 227, 40, 191, 245, 162, 68, 214, 215, 230, 222, 67, 85, 91, 164, 255, 255, 191, 27, 10, 118, 222, 50, 85, + 108, 124, 217, 72, 137, 179, 121, 66, 10, 30, 152, 191, 27, 60, 84, 160, 86, 136, 20, 19, 96, 27, 248, 93, 169, + 67, 165, 16, 30, 0, 27, 118, 232, 1, 169, 232, 234, 170, 246, 76, 58, 9, 40, 141, 247, 138, 159, 209, 231, 62, + 102, 178, 255, 27, 197, 208, 188, 242, 117, 59, 242, 57, 255, 159, 159, 66, 156, 3, 74, 65, 212, 104, 107, 249, + 108, 236, 177, 75, 17, 27, 187, 117, 251, 94, 208, 146, 248, 225, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3609, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c573cef8fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15432806343278591688" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3702517298298498737" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "187619529200432561" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "347d45c26f6c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12721577113204702636" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6686941d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8794985710167244734" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdf7f4676332cc42fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "420a5f68" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8344958502610662699" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14445988046654109398" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12906178098875526341" + } + }, + { + "_tag": "ByteArray", + "bytearray": "77e0b4" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a627b373b10d3f980708ef" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9199ce5a7c2ac9a6" + }, + { + "_tag": "ByteArray", + "bytearray": "3dee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12312208281663204367" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79f9f9f45c573cef8fa1bd62c579a4a83fec8ff1bffffffffffffffefffd87b9fbf1b3361fbddb3d22eb11b029a8ef7beeaf5b146347d45c26f6c1bb08c1efb8f4e3dac446686941d1b7a0e10e7d327bfbe49bdf7f4676332cc42fd44420a5f68ff00d8669f1bfffffffffffffff49f1b73cf3f8b6d7bf52b1bc87a75971e5b76d61bb31bf499df66ecc54377e0b4ffff9f4ba627b373b10d3f980708ef09ffd8669f1bfffffffffffffffd9f489199ce5a7c2ac9a6423dee1baaddc03305286c0fffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 159, 159, 69, 197, 115, 206, 248, 250, 27, 214, + 44, 87, 154, 74, 131, 254, 200, 255, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255, 216, 123, 159, 191, 27, 51, + 97, 251, 221, 179, 210, 46, 177, 27, 2, 154, 142, 247, 190, 234, 245, 177, 70, 52, 125, 69, 194, 111, 108, 27, + 176, 140, 30, 251, 143, 78, 61, 172, 68, 102, 134, 148, 29, 27, 122, 14, 16, 231, 211, 39, 191, 190, 73, 189, 247, + 244, 103, 99, 50, 204, 66, 253, 68, 66, 10, 95, 104, 255, 0, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 244, 159, 27, 115, 207, 63, 139, 109, 123, 245, 43, 27, 200, 122, 117, 151, 30, 91, 118, 214, 27, 179, 27, 244, + 153, 223, 102, 236, 197, 67, 119, 224, 180, 255, 255, 159, 75, 166, 39, 179, 115, 177, 13, 63, 152, 7, 8, 239, 9, + 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 72, 145, 153, 206, 90, 124, 42, 201, 166, 66, + 61, 238, 27, 170, 221, 192, 51, 5, 40, 108, 15, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3610, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8502614499371742087" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3225330982457705941" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9701462471940808016" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4585641548551140332" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e0e8d5c9" + }, + { + "_tag": "ByteArray", + "bytearray": "042560535c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9891291828197531167" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "79" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17090924597650053447" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15559092898714552539" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "103e2235" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0bde36409129" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50baac82d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d265519b176e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "461100587957026593" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9907657971214912772" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2347689532067742415" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "077a8f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6433498408274991155" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5801569607827538553" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9142874951405585519" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13961348182045154064" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11485309781637178367" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdb5966ba6f3363d87c44e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12962070017157249362" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6018183246491557295" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13183500143482577627" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e13" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18365395647445104261" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12170896682904413228" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b75ff5ad6a12373879fd8669f1b2cc2ad70a47405d59f1b86a284b7b9d09d50d8669f1b3fa378b150a9b3ec9f44e0e8d5c945042560535c1b8944ed82ed701e1fffff9f4179ffffff1bed2f295eb5ead947d8669f1bd7ed008e472f08db9f44103e2235bf460bde364091294550baac82d346d265519b176e1b0666288aaee6ff21ffd8669f1b897f126e8a550d0480ffd8669f1b2094ab30d9cd02cf80ffffff43077a8fbf1b594860b7584598331b508350d1fe4342791b7ee20453c858c46f1bc1c0ac338058db101b9f64046505cda3ff4bfdb5966ba6f3363d87c44e1bb3e286012e6639521b5384e1c6e8561daf1bb6f53388049722db426e131bfedefe098d7876851ba8e7b60c867f642cffffff", + "cborBytes": [ + 216, 102, 159, 27, 117, 255, 90, 214, 161, 35, 115, 135, 159, 216, 102, 159, 27, 44, 194, 173, 112, 164, 116, 5, + 213, 159, 27, 134, 162, 132, 183, 185, 208, 157, 80, 216, 102, 159, 27, 63, 163, 120, 177, 80, 169, 179, 236, 159, + 68, 224, 232, 213, 201, 69, 4, 37, 96, 83, 92, 27, 137, 68, 237, 130, 237, 112, 30, 31, 255, 255, 159, 65, 121, + 255, 255, 255, 27, 237, 47, 41, 94, 181, 234, 217, 71, 216, 102, 159, 27, 215, 237, 0, 142, 71, 47, 8, 219, 159, + 68, 16, 62, 34, 53, 191, 70, 11, 222, 54, 64, 145, 41, 69, 80, 186, 172, 130, 211, 70, 210, 101, 81, 155, 23, 110, + 27, 6, 102, 40, 138, 174, 230, 255, 33, 255, 216, 102, 159, 27, 137, 127, 18, 110, 138, 85, 13, 4, 128, 255, 216, + 102, 159, 27, 32, 148, 171, 48, 217, 205, 2, 207, 128, 255, 255, 255, 67, 7, 122, 143, 191, 27, 89, 72, 96, 183, + 88, 69, 152, 51, 27, 80, 131, 80, 209, 254, 67, 66, 121, 27, 126, 226, 4, 83, 200, 88, 196, 111, 27, 193, 192, + 172, 51, 128, 88, 219, 16, 27, 159, 100, 4, 101, 5, 205, 163, 255, 75, 253, 181, 150, 107, 166, 243, 54, 61, 135, + 196, 78, 27, 179, 226, 134, 1, 46, 102, 57, 82, 27, 83, 132, 225, 198, 232, 86, 29, 175, 27, 182, 245, 51, 136, 4, + 151, 34, 219, 66, 110, 19, 27, 254, 222, 254, 9, 141, 120, 118, 133, 27, 168, 231, 182, 12, 134, 127, 100, 44, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3611, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17336105835056059724" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15547663658467049151" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16859533309791179477" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8fe" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17883156461903426923" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a44d51220378fc62f4d3f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4019179378760796042" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15966460817735477989" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcd597" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8955" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "be" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5016627993686806583" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7775566058807496299" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6cc3d493a7318039" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9916864567449515352" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3839905219726456654" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d07b5ae63c8f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5362422517357028187" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3776805509697810927" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d9050b9fbf0b1bf09638680717d54c1bd7c465b8ea2dbebf131be9f9183838f812d542f8feff9f9f1bf82dbc0d967c356b4b8a44d51220378fc62f4d3f1b37c6fe59b79cc78a4155ffd8669f1bdd9443851150eae59f05ffffffd8669f1bffffffffffffffeb9fbf43bcd597428955ff41be9f1b459ea494bdfb90371b6be85c223ece0e6b486cc3d493a7318039ffd8669f1b899fc7c8447c75589f1b354a1573e0f6b74effffbf470d07b5ae63c8f51b4a6b26de429f235b41ae1b3469e899c746b1efffffffa0ff", + "cborBytes": [ + 217, 5, 11, 159, 191, 11, 27, 240, 150, 56, 104, 7, 23, 213, 76, 27, 215, 196, 101, 184, 234, 45, 190, 191, 19, + 27, 233, 249, 24, 56, 56, 248, 18, 213, 66, 248, 254, 255, 159, 159, 27, 248, 45, 188, 13, 150, 124, 53, 107, 75, + 138, 68, 213, 18, 32, 55, 143, 198, 47, 77, 63, 27, 55, 198, 254, 89, 183, 156, 199, 138, 65, 85, 255, 216, 102, + 159, 27, 221, 148, 67, 133, 17, 80, 234, 229, 159, 5, 255, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 235, 159, 191, 67, 188, 213, 151, 66, 137, 85, 255, 65, 190, 159, 27, 69, 158, 164, 148, 189, 251, 144, + 55, 27, 107, 232, 92, 34, 62, 206, 14, 107, 72, 108, 195, 212, 147, 167, 49, 128, 57, 255, 216, 102, 159, 27, 137, + 159, 199, 200, 68, 124, 117, 88, 159, 27, 53, 74, 21, 115, 224, 246, 183, 78, 255, 255, 191, 71, 13, 7, 181, 174, + 99, 200, 245, 27, 74, 107, 38, 222, 66, 159, 35, 91, 65, 174, 27, 52, 105, 232, 153, 199, 70, 177, 239, 255, 255, + 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3612, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0da28980cc561531a594d6d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8059683757515767113" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13962882851215939064" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2263410903823597691" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f94df" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18190148520774349939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f84589b37a434678dc6bb2" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15572405147535909886" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cd55d3b97" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5300036271152761090" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14882537523596758528" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d46f5117aaeec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18124889209661562539" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dac09cb8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c54150d47608011e92" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17448973437817463912" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11641065667322808211" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10451192448380824589" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12560070999189104853" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f095508e24" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12764287822168425588" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12833726323284390162" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15444035101110164453" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65d9af62ea04" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f4cc0da28980cc561531a594d6dd8669f1b6fd9bface8b67d499f1bc1c61ff9831e95f8ffffbf1b1f6940399726c07b435f94df1bfc7063b4405a34734bf84589b37a434678dc6bb2ff9fd8669f1bd81c4bf9bd57a3fe80ffbf450cd55d3b971b498d82e866bf0902414b1bce896506d2680e00476d46f5117aaeec1bfb888ab4d7301eab41b344dac09cb849c54150d47608011e921bf22734e4a0562468ffffbf1ba18d5f8c23c587931b910a1828b4fbec0d1bae4e5607145a28d545f095508e241bb123dc256b3184741bb21a8e1853f231121bd6543c193455dbe54665d9af62ea04ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 76, 192, 218, 40, 152, 12, 197, 97, 83, 26, 89, + 77, 109, 216, 102, 159, 27, 111, 217, 191, 172, 232, 182, 125, 73, 159, 27, 193, 198, 31, 249, 131, 30, 149, 248, + 255, 255, 191, 27, 31, 105, 64, 57, 151, 38, 192, 123, 67, 95, 148, 223, 27, 252, 112, 99, 180, 64, 90, 52, 115, + 75, 248, 69, 137, 179, 122, 67, 70, 120, 220, 107, 178, 255, 159, 216, 102, 159, 27, 216, 28, 75, 249, 189, 87, + 163, 254, 128, 255, 191, 69, 12, 213, 93, 59, 151, 27, 73, 141, 130, 232, 102, 191, 9, 2, 65, 75, 27, 206, 137, + 101, 6, 210, 104, 14, 0, 71, 109, 70, 245, 17, 122, 174, 236, 27, 251, 136, 138, 180, 215, 48, 30, 171, 65, 179, + 68, 218, 192, 156, 184, 73, 197, 65, 80, 212, 118, 8, 1, 30, 146, 27, 242, 39, 52, 228, 160, 86, 36, 104, 255, + 255, 191, 27, 161, 141, 95, 140, 35, 197, 135, 147, 27, 145, 10, 24, 40, 180, 251, 236, 13, 27, 174, 78, 86, 7, + 20, 90, 40, 213, 69, 240, 149, 80, 142, 36, 27, 177, 35, 220, 37, 107, 49, 132, 116, 27, 178, 26, 142, 24, 83, + 242, 49, 18, 27, 214, 84, 60, 25, 52, 85, 219, 229, 70, 101, 217, 175, 98, 234, 4, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3613, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1766445744771047607" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21fc79cc67d9610e63" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5253683836215431097" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6987626e917b103b154257" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0477858fe43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62fa03993feaee50" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4826540928739375819" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "06bd18ce27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "48124743156272044" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d82dda13702d0f27613530a1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4829561265379638947" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bd3a0ea8caa390" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "876574684259957829" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ddcc22bee6cd2745" + }, + { + "_tag": "ByteArray", + "bytearray": "15295caea8ebd0de49" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17533946895880219675" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cf0bb4c757fd86d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08e2545e508f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d2174c328bb47" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9169291681783784425" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2246b17b12e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e89ae2e" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17670021767054226904" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "040725" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3323522200890913234" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905029fbf1b1883ad0bbc1420b74921fc79cc67d9610e631b48e8d59d23d50fb94b6987626e917b103b15425746a0477858fe434862fa03993feaee5041f71b42fb51670f64facbff4506bd18ce271b00aaf932ecbc8bac4cd82dda13702d0f27613530a1d8669f1b43060c61fbf07ea39f47bd3a0ea8caa390d8669f1b0c2a3807f26a3c459f48ddcc22bee6cd27454915295caea8ebd0de491bf35517cd8f80ec1bffff80bf483cf0bb4c757fd86d4608e2545e508f473d2174c328bb471b7f3fde341eaaa3e946b2246b17b12e411941c4447e89ae2effd8669f1bf538872d66aff5d89f430407251b2e1f85d53b3a31d2ffffffffff", + "cborBytes": [ + 217, 5, 2, 159, 191, 27, 24, 131, 173, 11, 188, 20, 32, 183, 73, 33, 252, 121, 204, 103, 217, 97, 14, 99, 27, 72, + 232, 213, 157, 35, 213, 15, 185, 75, 105, 135, 98, 110, 145, 123, 16, 59, 21, 66, 87, 70, 160, 71, 120, 88, 254, + 67, 72, 98, 250, 3, 153, 63, 234, 238, 80, 65, 247, 27, 66, 251, 81, 103, 15, 100, 250, 203, 255, 69, 6, 189, 24, + 206, 39, 27, 0, 170, 249, 50, 236, 188, 139, 172, 76, 216, 45, 218, 19, 112, 45, 15, 39, 97, 53, 48, 161, 216, + 102, 159, 27, 67, 6, 12, 97, 251, 240, 126, 163, 159, 71, 189, 58, 14, 168, 202, 163, 144, 216, 102, 159, 27, 12, + 42, 56, 7, 242, 106, 60, 69, 159, 72, 221, 204, 34, 190, 230, 205, 39, 69, 73, 21, 41, 92, 174, 168, 235, 208, + 222, 73, 27, 243, 85, 23, 205, 143, 128, 236, 27, 255, 255, 128, 191, 72, 60, 240, 187, 76, 117, 127, 216, 109, + 70, 8, 226, 84, 94, 80, 143, 71, 61, 33, 116, 195, 40, 187, 71, 27, 127, 63, 222, 52, 30, 170, 163, 233, 70, 178, + 36, 107, 23, 177, 46, 65, 25, 65, 196, 68, 126, 137, 174, 46, 255, 216, 102, 159, 27, 245, 56, 135, 45, 102, 175, + 245, 216, 159, 67, 4, 7, 37, 27, 46, 31, 133, 213, 59, 58, 49, 210, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3614, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8531847244504300776" + }, + "fields": [] + }, + "cborHex": "d8669f1b766735dd7e92fce880ff", + "cborBytes": [216, 102, 159, 27, 118, 103, 53, 221, 126, 146, 252, 232, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3615, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6210808404210154136" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e5a14edc3e29" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14404296870846504189" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "4b0b7e2dd6568956e273" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16398756213680387880" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "3621cf" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6362983953683409955" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1045656028547013479" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "717c4f69" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8105998286798105172" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5443666428326135849" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13243971594327878352" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10778628444452857653" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4552054366881179800" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10884679823673880753" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6412635199964085000" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9438304053217842875" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7400d39a" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3892060138061834600" + } + } + ] + }, + "cborHex": "d905069fd8669f1b563139565cf4fa989f46e5a14edc3e29a0d8669f1bc7e657afd2139cfd80ffa04a4b0b7e2dd6568956e273ffffd8669f1be39415e45aa6372880ff433621cf9fbf1b584ddc317ecf6c231b0e82ea9e2aca5b6744717c4f691b707e4a7e9286aa54ff1b4b8bc9c6581948291bb7cc09fed746ead0d8669f1b959561766d88a7359f1b3f2c25543037e8981b970e26a14ff170b11b58fe41bd20067b081b82fb9787b62dd6bb447400d39affffff1b3603601315a22968ff", + "cborBytes": [ + 217, 5, 6, 159, 216, 102, 159, 27, 86, 49, 57, 86, 92, 244, 250, 152, 159, 70, 229, 161, 78, 220, 62, 41, 160, + 216, 102, 159, 27, 199, 230, 87, 175, 210, 19, 156, 253, 128, 255, 160, 74, 75, 11, 126, 45, 214, 86, 137, 86, + 226, 115, 255, 255, 216, 102, 159, 27, 227, 148, 21, 228, 90, 166, 55, 40, 128, 255, 67, 54, 33, 207, 159, 191, + 27, 88, 77, 220, 49, 126, 207, 108, 35, 27, 14, 130, 234, 158, 42, 202, 91, 103, 68, 113, 124, 79, 105, 27, 112, + 126, 74, 126, 146, 134, 170, 84, 255, 27, 75, 139, 201, 198, 88, 25, 72, 41, 27, 183, 204, 9, 254, 215, 70, 234, + 208, 216, 102, 159, 27, 149, 149, 97, 118, 109, 136, 167, 53, 159, 27, 63, 44, 37, 84, 48, 55, 232, 152, 27, 151, + 14, 38, 161, 79, 241, 112, 177, 27, 88, 254, 65, 189, 32, 6, 123, 8, 27, 130, 251, 151, 135, 182, 45, 214, 187, + 68, 116, 0, 211, 154, 255, 255, 255, 27, 54, 3, 96, 19, 21, 162, 41, 104, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3616, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14766640732030969579" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "abb0c2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1757151816307582768" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17812509779920895130" + } + } + ] + } + ] + }, + "cborHex": "d87b9fd8669f1bcceda5823e8526eb9f43abb0c21b1862a844637227301bf732bf45265b3c9affffff", + "cborBytes": [ + 216, 123, 159, 216, 102, 159, 27, 204, 237, 165, 130, 62, 133, 38, 235, 159, 67, 171, 176, 194, 27, 24, 98, 168, + 68, 99, 114, 39, 48, 27, 247, 50, 191, 69, 38, 91, 60, 154, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3617, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18041857140351560361" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8512949519438174108" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "741275901159479140" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5172765537245741926" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5226840983865405113" + } + }, + { + "_tag": "ByteArray", + "bytearray": "50" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1975845187381958414" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8119988656307501035" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de8c877a9e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3031936284044761531" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfa618d7ab2ffeaa99f9fd8669f1b7624127c00f1d79c80ffd8669f1b0a498a81312b17649f1b47c95ad981ea43661b4889782e8cc02eb941501b1b6b9cbabd11170effff9f41cc1b70affea94f68f7eb45de8c877a9e1b2a1399fc881b19bbffffffff", + "cborBytes": [ + 216, 102, 159, 27, 250, 97, 141, 122, 178, 255, 234, 169, 159, 159, 216, 102, 159, 27, 118, 36, 18, 124, 0, 241, + 215, 156, 128, 255, 216, 102, 159, 27, 10, 73, 138, 129, 49, 43, 23, 100, 159, 27, 71, 201, 90, 217, 129, 234, 67, + 102, 27, 72, 137, 120, 46, 140, 192, 46, 185, 65, 80, 27, 27, 107, 156, 186, 189, 17, 23, 14, 255, 255, 159, 65, + 204, 27, 112, 175, 254, 169, 79, 104, 247, 235, 69, 222, 140, 135, 122, 158, 27, 42, 19, 153, 252, 136, 27, 25, + 187, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3618, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "463ca35df23c595d0a7d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + }, + "cborHex": "d9050c9f4a463ca35df23c595d0a7d08ff", + "cborBytes": [217, 5, 12, 159, 74, 70, 60, 163, 93, 242, 60, 89, 93, 10, 125, 8, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3619, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0dfcd72b" + } + ] + }, + "cborHex": "d905089f440dfcd72bff", + "cborBytes": [217, 5, 8, 159, 68, 13, 252, 215, 43, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3620, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12665950513091737417" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2902df78a8" + }, + { + "_tag": "ByteArray", + "bytearray": "2263" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + ] + } + ] + }, + "cborHex": "d87c9fa0d8669f1bfffffffffffffffe9f9f1bafc67ee273827749452902df78a8422263ff1bfffffffffffffff81bffffffffffffffeeffffff", + "cborBytes": [ + 216, 124, 159, 160, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 159, 27, 175, 198, 126, 226, + 115, 130, 119, 73, 69, 41, 2, 223, 120, 168, 66, 34, 99, 255, 27, 255, 255, 255, 255, 255, 255, 255, 248, 27, 255, + 255, 255, 255, 255, 255, 255, 238, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3621, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2394104250461578832" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16352931781739482203" + }, + "fields": [] + } + ] + }, + "cborHex": "d9050c9f1b213991219c03e6501bffffffffffffffecd9050d80d8669f1be2f148d05ec70c5b80ffff", + "cborBytes": [ + 217, 5, 12, 159, 27, 33, 57, 145, 33, 156, 3, 230, 80, 27, 255, 255, 255, 255, 255, 255, 255, 236, 217, 5, 13, + 128, 216, 102, 159, 27, 226, 241, 72, 208, 94, 199, 12, 91, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3622, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3508107724846599573" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9703144411176849585" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14583166222673134620" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4614721080052721674" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "776eebc6282aff0e5625" + } + ] + }, + "cborHex": "d8669f1b30af4d6395490d959f1b86a87e6eb88350b11bca61d06a22e8441c1b400ac85f5a0ca80aa04a776eebc6282aff0e5625ffff", + "cborBytes": [ + 216, 102, 159, 27, 48, 175, 77, 99, 149, 73, 13, 149, 159, 27, 134, 168, 126, 110, 184, 131, 80, 177, 27, 202, 97, + 208, 106, 34, 232, 68, 28, 27, 64, 10, 200, 95, 90, 12, 168, 10, 160, 74, 119, 110, 235, 198, 40, 42, 255, 14, 86, + 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3623, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "909df98087366c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08754dd891e0a0067ff9a7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "acbabc7b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f730ea0b8c8b1d9901ad6" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + "cborHex": "d905069fbf47909df98087366c4b08754dd891e0a0067ff9a744acbabc7b4b2f730ea0b8c8b1d9901ad6ff06ff", + "cborBytes": [ + 217, 5, 6, 159, 191, 71, 144, 157, 249, 128, 135, 54, 108, 75, 8, 117, 77, 216, 145, 224, 160, 6, 127, 249, 167, + 68, 172, 186, 188, 123, 75, 47, 115, 14, 160, 184, 200, 177, 217, 144, 26, 214, 255, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3624, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6431011249417486948" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4302314298606226814" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f81641f6094bcd9f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11593849987552717020" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12830473137939581610" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8597683171488213949" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6499540695031168817" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c3fefe6b257c2bfafcb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9be7388340aa831bfaaf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6db495b7cf6ffa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e790cf0d59a108dea54d5d3" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18378103266837054923" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11865300362916293320" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6142a73207" + }, + { + "_tag": "ByteArray", + "bytearray": "f85fd0428334" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8990876573265972509" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4489913127601750438" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1714fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "594740" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40b8948f1b8e4f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3125614885658808526" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "550211fbd2aa5197b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16558498589294929258" + } + } + } + ] + } + ] + }, + "cborHex": "d87a9fd8669f1b593f8aa88c1202649f1b3bb4e40f58820d7e48f81641f6094bcd9f1ba0e5a123073f28dc1bb20eff5717148aaa80ffffd8669f1b77511b4abfe8abbd9f9f1b5a3301d37a873f31ffbf4a4c3fefe6b257c2bfafcb4a9be7388340aa831bfaaf476db495b7cf6ffa4c2e790cf0d59a108dea54d5d3ff9f1bff0c238cc144c5cb1ba4aa03d0a4f06ac8456142a7320746f85fd0428334ffffff1b7cc6029b90e64d1d1b3e4f60337310c1a6bf431714fb435947404740b8948f1b8e4f1b2b606a2da45dd0ce49550211fbd2aa5197b31be5cb9abc7cbb256affff", + "cborBytes": [ + 216, 122, 159, 216, 102, 159, 27, 89, 63, 138, 168, 140, 18, 2, 100, 159, 27, 59, 180, 228, 15, 88, 130, 13, 126, + 72, 248, 22, 65, 246, 9, 75, 205, 159, 27, 160, 229, 161, 35, 7, 63, 40, 220, 27, 178, 14, 255, 87, 23, 20, 138, + 170, 128, 255, 255, 216, 102, 159, 27, 119, 81, 27, 74, 191, 232, 171, 189, 159, 159, 27, 90, 51, 1, 211, 122, + 135, 63, 49, 255, 191, 74, 76, 63, 239, 230, 178, 87, 194, 191, 175, 203, 74, 155, 231, 56, 131, 64, 170, 131, 27, + 250, 175, 71, 109, 180, 149, 183, 207, 111, 250, 76, 46, 121, 12, 240, 213, 154, 16, 141, 234, 84, 213, 211, 255, + 159, 27, 255, 12, 35, 140, 193, 68, 197, 203, 27, 164, 170, 3, 208, 164, 240, 106, 200, 69, 97, 66, 167, 50, 7, + 70, 248, 95, 208, 66, 131, 52, 255, 255, 255, 27, 124, 198, 2, 155, 144, 230, 77, 29, 27, 62, 79, 96, 51, 115, 16, + 193, 166, 191, 67, 23, 20, 251, 67, 89, 71, 64, 71, 64, 184, 148, 143, 27, 142, 79, 27, 43, 96, 106, 45, 164, 93, + 208, 206, 73, 85, 2, 17, 251, 210, 170, 81, 151, 179, 27, 229, 203, 154, 188, 124, 187, 37, 106, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3625, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16961811789640325070" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1434521341886747728" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1beb6475f4848b57ce9f1b13e8718f5de0545080ffff", + "cborBytes": [ + 216, 102, 159, 27, 235, 100, 117, 244, 132, 139, 87, 206, 159, 27, 19, 232, 113, 143, 93, 224, 84, 80, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3626, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3699994332499569401" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b3359053df3986af99fa0ffff", + "cborBytes": [216, 102, 159, 27, 51, 89, 5, 61, 243, 152, 106, 249, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3627, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4596565015045865110" + }, + "fields": [] + }, + "cborHex": "d8669f1b3fca47870ccbfe9680ff", + "cborBytes": [216, 102, 159, 27, 63, 202, 71, 135, 12, 203, 254, 150, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3628, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16446313838987539332" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "102733609037372415" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d3825266daa3b31fedc5" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8966400292604676764" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8169537129052244053" + } + }, + { + "_tag": "ByteArray", + "bytearray": "819f4eb28982ad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16390468510368204183" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de56856b18" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10558077283564676365" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9fd8669f1be43d0b4cdd7173849f9f1b016cfbac512a9bff4ad3825266daa3b31fedc5ffd8669f1b7c6f0d8f62a90a9c80ff9f1b716006bc1c86085547819f4eb28982ad1be376a4450eb9059745de56856b18ffffffd8669f1b9285d359adfe650d80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 216, 102, 159, 27, 228, 61, 11, 76, 221, 113, 115, + 132, 159, 159, 27, 1, 108, 251, 172, 81, 42, 155, 255, 74, 211, 130, 82, 102, 218, 163, 179, 31, 237, 197, 255, + 216, 102, 159, 27, 124, 111, 13, 143, 98, 169, 10, 156, 128, 255, 159, 27, 113, 96, 6, 188, 28, 134, 8, 85, 71, + 129, 159, 78, 178, 137, 130, 173, 27, 227, 118, 164, 69, 14, 185, 5, 151, 69, 222, 86, 133, 107, 24, 255, 255, + 255, 216, 102, 159, 27, 146, 133, 211, 89, 173, 254, 101, 13, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3629, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14968137325692120909" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6626474543993796840" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14455825548196138004" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8427085560880829781" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17033205376975612419" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8484978583887246135" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4305514464618795430" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10052759440432143521" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08e6312f446ed8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15896665300986380170" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9233906094772316097" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "796aae740b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3239716454080214510" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13117168511134368699" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11701754511594764991" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7641075254004574122" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1be7caa1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55fe27411ea3618d88a118" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3001" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7afe9733f80eb284aa70d467" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "356b9cec6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ef9d8c78c118526e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44d9bfe3738f27d64fc14d27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15424183296443884033" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdb873f78e6f1865" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10904731816371505526" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f605f6" + }, + { + "_tag": "ByteArray", + "bytearray": "cc2b0ca10a0c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2303917007904007451" + } + }, + { + "_tag": "ByteArray", + "bytearray": "213168b2cabd50a8" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9936904831011031367" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bcfb98197d724ef4d9f41b09fbf1b5bf5f77d3beb38e81bc89d68beef3f4c141b74f305ab442015551bec621a0b68e7aa031b75c0b311136573371b3bc042980ee8d1a61b8b82937303699ca14708e6312f446ed81bdc9c4cddfa923f8a1b80256cab7c37e7c1ff45796aae740bffbf1b2cf5c8f3427075ee1bb6098b435d1a83bb1ba264fbbad06e3abf4133ffd8669f1b6a0a8d7598f867aa9fbf441be7caa14b55fe27411ea3618d88a1184230014c7afe9733f80eb284aa70d46745356b9cec6b493ef9d8c78c118526e84c44d9bfe3738f27d64fc14d271bd60db4fcbf0d220148fdb873f78e6f18651b975563cfadb94976ff43f605f646cc2b0ca10a0c1b1ff9284fe019651b48213168b2cabd50a8ffffd8669f1b89e6fa4bbb46894780ffffff", + "cborBytes": [ + 216, 102, 159, 27, 207, 185, 129, 151, 215, 36, 239, 77, 159, 65, 176, 159, 191, 27, 91, 245, 247, 125, 59, 235, + 56, 232, 27, 200, 157, 104, 190, 239, 63, 76, 20, 27, 116, 243, 5, 171, 68, 32, 21, 85, 27, 236, 98, 26, 11, 104, + 231, 170, 3, 27, 117, 192, 179, 17, 19, 101, 115, 55, 27, 59, 192, 66, 152, 14, 232, 209, 166, 27, 139, 130, 147, + 115, 3, 105, 156, 161, 71, 8, 230, 49, 47, 68, 110, 216, 27, 220, 156, 76, 221, 250, 146, 63, 138, 27, 128, 37, + 108, 171, 124, 55, 231, 193, 255, 69, 121, 106, 174, 116, 11, 255, 191, 27, 44, 245, 200, 243, 66, 112, 117, 238, + 27, 182, 9, 139, 67, 93, 26, 131, 187, 27, 162, 100, 251, 186, 208, 110, 58, 191, 65, 51, 255, 216, 102, 159, 27, + 106, 10, 141, 117, 152, 248, 103, 170, 159, 191, 68, 27, 231, 202, 161, 75, 85, 254, 39, 65, 30, 163, 97, 141, + 136, 161, 24, 66, 48, 1, 76, 122, 254, 151, 51, 248, 14, 178, 132, 170, 112, 212, 103, 69, 53, 107, 156, 236, 107, + 73, 62, 249, 216, 199, 140, 17, 133, 38, 232, 76, 68, 217, 191, 227, 115, 143, 39, 214, 79, 193, 77, 39, 27, 214, + 13, 180, 252, 191, 13, 34, 1, 72, 253, 184, 115, 247, 142, 111, 24, 101, 27, 151, 85, 99, 207, 173, 185, 73, 118, + 255, 67, 246, 5, 246, 70, 204, 43, 12, 161, 10, 12, 27, 31, 249, 40, 79, 224, 25, 101, 27, 72, 33, 49, 104, 178, + 202, 189, 80, 168, 255, 255, 216, 102, 159, 27, 137, 230, 250, 75, 187, 70, 137, 71, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3630, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1492503198075058836" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2091562685594360650" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9ad88e0a35f4f57" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8818407829076556722" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be00fe85eb7ebd05ff0506" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b14b66fc04365fa949fbf1b1d06b92e54505b4a48c9ad88e0a35f4f571b7a614732d8a1bbb24bbe00fe85eb7ebd05ff0506ffffff", + "cborBytes": [ + 216, 102, 159, 27, 20, 182, 111, 192, 67, 101, 250, 148, 159, 191, 27, 29, 6, 185, 46, 84, 80, 91, 74, 72, 201, + 173, 136, 224, 163, 95, 79, 87, 27, 122, 97, 71, 50, 216, 161, 187, 178, 75, 190, 0, 254, 133, 235, 126, 189, 5, + 255, 5, 6, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3631, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6700087759341056529" + }, + "fields": [] + }, + "cborHex": "d8669f1b5cfb7e518b77721180ff", + "cborBytes": [216, 102, 159, 27, 92, 251, 126, 81, 139, 119, 114, 17, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3632, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10573781612482170069" + }, + "fields": [] + }, + "cborHex": "d8669f1b92bd9e5ab08e8cd580ff", + "cborBytes": [216, 102, 159, 27, 146, 189, 158, 90, 176, 142, 140, 213, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3633, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13776119776443553375" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16657737897416207619" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c1da8786" + }, + { + "_tag": "ByteArray", + "bytearray": "33fa47cd7eddeb950e1728" + }, + { + "_tag": "ByteArray", + "bytearray": "74" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bbf2e9bf29a26d65f9fd8669f1be72c2c5c790e2d039f9f44c1da87864b33fa47cd7eddeb950e17284174ff809f13ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 191, 46, 155, 242, 154, 38, 214, 95, 159, 216, 102, 159, 27, 231, 44, 44, 92, 121, 14, 45, 3, + 159, 159, 68, 193, 218, 135, 134, 75, 51, 250, 71, 205, 126, 221, 235, 149, 14, 23, 40, 65, 116, 255, 128, 159, + 19, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3634, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3606523973078696033" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7dc79d78255bc3ca7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3805461729217919014" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17976288237950592422" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7319106578147736551" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6300248816162594256" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10353272301013806792" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "029fee254394257da83e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13826931660886191540" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab7d2a29242f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14615654112191865461" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12441389438330670399" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14778657276413641709" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1956838306615864876" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14429570336613527406" + } + } + ] + } + ] + }, + "cborHex": "d9050c9fbf1b320cf2720149406149f7dc79d78255bc3ca71b34cfb747d060b8261bf9789ae8f313e5a61b6592b0a78fb87be71b576efaeb0bf25dd01b8fae364dc4d1aec84a029fee254394257da83e1bbfe321165cb92db446ab7d2a29242f1bcad53bfa5d2c62751baca8b1c6dfff0d3fff1bcd18567e01e083edd8669f1b1b28161274b72e2c9f1bc84021c51f5cef6effffff", + "cborBytes": [ + 217, 5, 12, 159, 191, 27, 50, 12, 242, 114, 1, 73, 64, 97, 73, 247, 220, 121, 215, 130, 85, 188, 60, 167, 27, 52, + 207, 183, 71, 208, 96, 184, 38, 27, 249, 120, 154, 232, 243, 19, 229, 166, 27, 101, 146, 176, 167, 143, 184, 123, + 231, 27, 87, 110, 250, 235, 11, 242, 93, 208, 27, 143, 174, 54, 77, 196, 209, 174, 200, 74, 2, 159, 238, 37, 67, + 148, 37, 125, 168, 62, 27, 191, 227, 33, 22, 92, 185, 45, 180, 70, 171, 125, 42, 41, 36, 47, 27, 202, 213, 59, + 250, 93, 44, 98, 117, 27, 172, 168, 177, 198, 223, 255, 13, 63, 255, 27, 205, 24, 86, 126, 1, 224, 131, 237, 216, + 102, 159, 27, 27, 40, 22, 18, 116, 183, 46, 44, 159, 27, 200, 64, 33, 197, 31, 92, 239, 110, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3635, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9643552115115665638" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03042a0006fcfe07970505" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b85d4c78e126fa8e69fbf1bfffffffffffffff04b03042a0006fcfe07970505ffffff", + "cborBytes": [ + 216, 102, 159, 27, 133, 212, 199, 142, 18, 111, 168, 230, 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 240, + 75, 3, 4, 42, 0, 6, 252, 254, 7, 151, 5, 5, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3636, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905089f80ff", + "cborBytes": [217, 5, 8, 159, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3637, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dba8d88f3ab5b4" + }, + { + "_tag": "ByteArray", + "bytearray": "d670da80db847d7dce19c59c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03dad2ec2fbf201e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4733350677699545711" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21b1fe48e38c256ab5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6407812349830075905" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bbf3b9426ed0fbc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15747726895351690301" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ceee5eb9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5450245163469583245" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2044396789540664227" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7008820928383095127" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15748964722079326716" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6861750702548239638" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13793119403794219760" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7601114784477753631" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0acb" + }, + { + "_tag": "ByteArray", + "bytearray": "a0170444ec64" + } + ] + } + ] + }, + "cborHex": "d87c9f47dba8d88f3ab5b44cd670da80db847d7dce19c59cbf4803dad2ec2fbf201e1b41b03d5ceda2ca6f4921b1fe48e38c256ab51b58ed1f61d2fb9601488bbf3b9426ed0fbc1bda8b2a2d214d743d44ceee5eb91b4ba329197b65338dffd8669f1b1c5f280c648533a380ffd8669f1b61445580029911579f80d8669f1bda8f8ff91fb261fc9f1b5f39d5e8aaacc5161bbf6b0104c7b3c2f01b697c959fc1c4311fffff420acb46a0170444ec64ffffff", + "cborBytes": [ + 216, 124, 159, 71, 219, 168, 216, 143, 58, 181, 180, 76, 214, 112, 218, 128, 219, 132, 125, 125, 206, 25, 197, + 156, 191, 72, 3, 218, 210, 236, 47, 191, 32, 30, 27, 65, 176, 61, 92, 237, 162, 202, 111, 73, 33, 177, 254, 72, + 227, 140, 37, 106, 181, 27, 88, 237, 31, 97, 210, 251, 150, 1, 72, 139, 191, 59, 148, 38, 237, 15, 188, 27, 218, + 139, 42, 45, 33, 77, 116, 61, 68, 206, 238, 94, 185, 27, 75, 163, 41, 25, 123, 101, 51, 141, 255, 216, 102, 159, + 27, 28, 95, 40, 12, 100, 133, 51, 163, 128, 255, 216, 102, 159, 27, 97, 68, 85, 128, 2, 153, 17, 87, 159, 128, + 216, 102, 159, 27, 218, 143, 143, 249, 31, 178, 97, 252, 159, 27, 95, 57, 213, 232, 170, 172, 197, 22, 27, 191, + 107, 1, 4, 199, 179, 194, 240, 27, 105, 124, 149, 159, 193, 196, 49, 31, 255, 255, 66, 10, 203, 70, 160, 23, 4, + 68, 236, 100, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3638, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2473258972663259518" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d551f70845" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8057a2ccb863c02a520d33f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d69346ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13813744364524934348" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "925391006475969559" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ad5c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "030300" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10662027723186902446" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17724324818113819718" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc02f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07a607fdbd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9102dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d9011db00b1453bd52d" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2252c7ee8724217e9fbf45d551f708454ca8057a2ccb863c02a520d33f44d69346ae1bbfb4474fa99014ccff9fd8669f1b0cd7a637ab5764179f42ad5cffffd905068043030300d8669f1b93f721b971ec15ae80ffffbf1bf5f97383bb50744643fc02f81bffffffffffffffef4507a607fdbd439102dd4a1d9011db00b1453bd52dffffff", + "cborBytes": [ + 216, 102, 159, 27, 34, 82, 199, 238, 135, 36, 33, 126, 159, 191, 69, 213, 81, 247, 8, 69, 76, 168, 5, 122, 44, + 203, 134, 60, 2, 165, 32, 211, 63, 68, 214, 147, 70, 174, 27, 191, 180, 71, 79, 169, 144, 20, 204, 255, 159, 216, + 102, 159, 27, 12, 215, 166, 55, 171, 87, 100, 23, 159, 66, 173, 92, 255, 255, 217, 5, 6, 128, 67, 3, 3, 0, 216, + 102, 159, 27, 147, 247, 33, 185, 113, 236, 21, 174, 128, 255, 255, 191, 27, 245, 249, 115, 131, 187, 80, 116, 70, + 67, 252, 2, 248, 27, 255, 255, 255, 255, 255, 255, 255, 239, 69, 7, 166, 7, 253, 189, 67, 145, 2, 221, 74, 29, + 144, 17, 219, 0, 177, 69, 59, 213, 45, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3639, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16099041766403213450" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16717191259933767789" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9fda8f2aeed6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1419796495532869403" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bdf6b4930aea4088a9fd8669f1be7ff64e1229df86d9f469fda8f2aeed6d8669f1b13b42163e994c71b80ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 223, 107, 73, 48, 174, 164, 8, 138, 159, 216, 102, 159, 27, 231, 255, 100, 225, 34, 157, 248, + 109, 159, 70, 159, 218, 143, 42, 238, 214, 216, 102, 159, 27, 19, 180, 33, 99, 233, 148, 199, 27, 128, 255, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3640, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16159565628948609611" + }, + "fields": [] + }, + "cborHex": "d8669f1be0424f528e17fa4b80ff", + "cborBytes": [216, 102, 159, 27, 224, 66, 79, 82, 142, 23, 250, 75, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3641, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17721881248318023939" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17307274655565465213" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "84128b56a5da6d8d5ebdb5e3" + } + ] + }, + "cborHex": "d905089f1bf5f0c519cda6e903021bf02fca99f319c67da04c84128b56a5da6d8d5ebdb5e3ff", + "cborBytes": [ + 217, 5, 8, 159, 27, 245, 240, 197, 25, 205, 166, 233, 3, 2, 27, 240, 47, 202, 153, 243, 25, 198, 125, 160, 76, + 132, 18, 139, 86, 165, 218, 109, 141, 94, 189, 181, 227, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3642, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7056289183517359546" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12542527479005628562" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10382720154777698494" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5999679776476569076" + } + } + } + ] + } + ] + }, + "cborHex": "d905029f0fbf1b61ecf9a067fbbdba1bae100249fbb4c8921b9016d4f883d040be1b534324f812fb1df4ffff", + "cborBytes": [ + 217, 5, 2, 159, 15, 191, 27, 97, 236, 249, 160, 103, 251, 189, 186, 27, 174, 16, 2, 73, 251, 180, 200, 146, 27, + 144, 22, 212, 248, 131, 208, 64, 190, 27, 83, 67, 36, 248, 18, 251, 29, 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3643, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10156512949932075246" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10796208363389477855" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d4f5a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12845247883668550136" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3172015050442704289" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14382661089435039513" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5799469140775250746" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14733239762079489196" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11390140678588303695" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17544007736950793495" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8879342182920646299" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8cf32eb7695b28ee9fbf1b95d3d64e44ee63df432d4f5a1bb2437ce4a5e6f1f81b2c0542e1dfd485a11bc7997a0ee89bb7191b507bda74e5bfab3a1bcc76fb80e9689cac1b9e11e89980fb894f1bf378d615a9a825171b7b39c2abac206e9bffffff", + "cborBytes": [ + 216, 102, 159, 27, 140, 243, 46, 183, 105, 91, 40, 238, 159, 191, 27, 149, 211, 214, 78, 68, 238, 99, 223, 67, 45, + 79, 90, 27, 178, 67, 124, 228, 165, 230, 241, 248, 27, 44, 5, 66, 225, 223, 212, 133, 161, 27, 199, 153, 122, 14, + 232, 155, 183, 25, 27, 80, 123, 218, 116, 229, 191, 171, 58, 27, 204, 118, 251, 128, 233, 104, 156, 172, 27, 158, + 17, 232, 153, 128, 251, 137, 79, 27, 243, 120, 214, 21, 169, 168, 37, 23, 27, 123, 57, 194, 171, 172, 32, 110, + 155, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3644, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "870b96f4a2c52867c7f808ba" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9f4c870b96f4a2c52867c7f808baffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 76, 135, 11, 150, 244, 162, 197, 40, 103, 199, + 248, 8, 186, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3645, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7601ad" + }, + { + "_tag": "ByteArray", + "bytearray": "b8defa" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2230181818253661030" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13382832265316764917" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6960769268416810207" + } + }, + { + "_tag": "ByteArray", + "bytearray": "db43e00b774e990c15" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5148282761279280189" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b662f7ae9d104ff32a718e56" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11646000178962226752" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5542858461553496026" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae11d3e79300" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9253081928106886781" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3064369061851113932" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11281975640317888946" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12067332790804906788" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15290346497640692850" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6594296773374440836" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7850547471547044663" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9f437601ad43b8defad8669f1b1ef3328c358b53669fd8669f1bb9b95f0a3ed78cf59f1b60999ec517708cdf49db43e00b774e990c151b47725fe50551943dffff4cb662f7ae9d104ff32a718e561ba19ee775a92dde40ffffbf1b4cec3067492a0fda46ae11d3e793001b80698cfd1a65c67d1b2a86d36d105529cc1b9c91a11205c209b21ba777c73cde5983241bd4323920bc82fc721b5b83a5fa307cf584ff1b6cf2bf54d5e71337ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 67, 118, 1, 173, 67, 184, 222, 250, 216, 102, 159, + 27, 30, 243, 50, 140, 53, 139, 83, 102, 159, 216, 102, 159, 27, 185, 185, 95, 10, 62, 215, 140, 245, 159, 27, 96, + 153, 158, 197, 23, 112, 140, 223, 73, 219, 67, 224, 11, 119, 78, 153, 12, 21, 27, 71, 114, 95, 229, 5, 81, 148, + 61, 255, 255, 76, 182, 98, 247, 174, 157, 16, 79, 243, 42, 113, 142, 86, 27, 161, 158, 231, 117, 169, 45, 222, 64, + 255, 255, 191, 27, 76, 236, 48, 103, 73, 42, 15, 218, 70, 174, 17, 211, 231, 147, 0, 27, 128, 105, 140, 253, 26, + 101, 198, 125, 27, 42, 134, 211, 109, 16, 85, 41, 204, 27, 156, 145, 161, 18, 5, 194, 9, 178, 27, 167, 119, 199, + 60, 222, 89, 131, 36, 27, 212, 50, 57, 32, 188, 130, 252, 114, 27, 91, 131, 165, 250, 48, 124, 245, 132, 255, 27, + 108, 242, 191, 84, 213, 231, 19, 55, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3646, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9481360709733685538" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fde9d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2553966205794043802" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04a2b9411e5a5d4a" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0785f940e0830f73538725cd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbb6f3de16574813e3b2f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e685c54b3f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "132852673984209922" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1145b306d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcf9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe8aab8d516cdab4defadf8d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d67d63ab3ad1" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b83948f54c30599229fa0bf430fde9d1b237182bb90b4c79a41314804a2b9411e5a5d4affbf4c0785f940e0830f73538725cd4bcbb6f3de16574813e3b2f7463e685c54b3f51b01d7fccd984a240245f1145b306d42fcf94cfe8aab8d516cdab4defadf8d46d67d63ab3ad1ffffff", + "cborBytes": [ + 216, 102, 159, 27, 131, 148, 143, 84, 195, 5, 153, 34, 159, 160, 191, 67, 15, 222, 157, 27, 35, 113, 130, 187, + 144, 180, 199, 154, 65, 49, 72, 4, 162, 185, 65, 30, 90, 93, 74, 255, 191, 76, 7, 133, 249, 64, 224, 131, 15, 115, + 83, 135, 37, 205, 75, 203, 182, 243, 222, 22, 87, 72, 19, 227, 178, 247, 70, 62, 104, 92, 84, 179, 245, 27, 1, + 215, 252, 205, 152, 74, 36, 2, 69, 241, 20, 91, 48, 109, 66, 252, 249, 76, 254, 138, 171, 141, 81, 108, 218, 180, + 222, 250, 223, 141, 70, 214, 125, 99, 171, 58, 209, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3647, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "40" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9975433237773777857" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4019071952181676356" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2332777878642124245" + } + } + ] + }, + "cborHex": "d87c9f80bf41401b8a6fdbad7a217bc1ffd8669f1b37c69ca58486494480ff1b205fb11efc5a65d5ff", + "cborBytes": [ + 216, 124, 159, 128, 191, 65, 64, 27, 138, 111, 219, 173, 122, 33, 123, 193, 255, 216, 102, 159, 27, 55, 198, 156, + 165, 132, 134, 73, 68, 128, 255, 27, 32, 95, 177, 30, 252, 90, 101, 213, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3648, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7982276687620015354" + } + } + ] + }, + "cborHex": "d905069f1b6ec6be5b007904faff", + "cborBytes": [217, 5, 6, 159, 27, 110, 198, 190, 91, 0, 121, 4, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3649, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3108308030637211663" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "948858" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4743904600784362811" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6904" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11743147702926655129" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16360003481635168838" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b2b22edaf72a0000f9fbf12439488581b41d5bc19a217dd3b4269041ba2f80a9e31e33e9941041be30a687ccf04a2461bfffffffffffffff31bffffffffffffffed1bfffffffffffffffaff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 43, 34, 237, 175, 114, 160, 0, 15, 159, 191, 18, 67, 148, 136, 88, 27, 65, 213, 188, 25, 162, + 23, 221, 59, 66, 105, 4, 27, 162, 248, 10, 158, 49, 227, 62, 153, 65, 4, 27, 227, 10, 104, 124, 207, 4, 162, 70, + 27, 255, 255, 255, 255, 255, 255, 255, 243, 27, 255, 255, 255, 255, 255, 255, 255, 237, 27, 255, 255, 255, 255, + 255, 255, 255, 250, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3650, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e748" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19f42e748ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 66, 231, 72, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3651, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "146787676833291996" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6820158540378890090" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "56ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17588467922499503602" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7dd6411358b92867bb7845c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4009188265797376960" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8806dc8119a2ff29858552" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7914779538617609405" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "901ec1b2f4e97d136792" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15711650310135408211" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98e67a180caf1608" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68e265a31e332f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfcb7324f25bf1091fef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3577295532749366526" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2517c7d2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "79c74f72b00bf58ccf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c94e9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7efe5d7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d400565c1a259580e3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1ee1770b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cff652981862ec5ed152caee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cdee7c986cbf37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4322634368237509606" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8273cb097ff51232817" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3257194412697448210" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b02097e9d470d9edc9fd8669f1b5ea6120ec7215f6a9fbf4256ff1bf416ca6347ef85f24c7dd6411358b92867bb7845c31b37a37f7c74845bc04b8806dc8119a2ff298585521b6dd6f20e5ad52cbd4a901ec1b2f4e97d1367921bda0afeb692c6e6534898e67a180caf16084768e265a31e332f4abfcb7324f25bf1091fef1b31a51b556e1e24feff442517c7d2bf4979c74f72b00bf58ccf43c94e9e447efe5d7d49d400565c1a259580e345c1ee1770b34ccff652981862ec5ed152caee47cdee7c986cbf371b3bfd150e3cb11be64af8273cb097ff512328171b2d33e10f9d37ef12ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 2, 9, 126, 157, 71, 13, 158, 220, 159, 216, 102, 159, 27, 94, 166, 18, 14, 199, 33, 95, 106, + 159, 191, 66, 86, 255, 27, 244, 22, 202, 99, 71, 239, 133, 242, 76, 125, 214, 65, 19, 88, 185, 40, 103, 187, 120, + 69, 195, 27, 55, 163, 127, 124, 116, 132, 91, 192, 75, 136, 6, 220, 129, 25, 162, 255, 41, 133, 133, 82, 27, 109, + 214, 242, 14, 90, 213, 44, 189, 74, 144, 30, 193, 178, 244, 233, 125, 19, 103, 146, 27, 218, 10, 254, 182, 146, + 198, 230, 83, 72, 152, 230, 122, 24, 12, 175, 22, 8, 71, 104, 226, 101, 163, 30, 51, 47, 74, 191, 203, 115, 36, + 242, 91, 241, 9, 31, 239, 27, 49, 165, 27, 85, 110, 30, 36, 254, 255, 68, 37, 23, 199, 210, 191, 73, 121, 199, 79, + 114, 176, 11, 245, 140, 207, 67, 201, 78, 158, 68, 126, 254, 93, 125, 73, 212, 0, 86, 92, 26, 37, 149, 128, 227, + 69, 193, 238, 23, 112, 179, 76, 207, 246, 82, 152, 24, 98, 236, 94, 209, 82, 202, 238, 71, 205, 238, 124, 152, + 108, 191, 55, 27, 59, 253, 21, 14, 60, 177, 27, 230, 74, 248, 39, 60, 176, 151, 255, 81, 35, 40, 23, 27, 45, 51, + 225, 15, 157, 55, 239, 18, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3652, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7849156735956970902" + }, + "fields": [] + }, + "cborHex": "d8669f1b6cedce76f9146d9680ff", + "cborBytes": [216, 102, 159, 27, 108, 237, 206, 118, 249, 20, 109, 150, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3653, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10414617266794372610" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79f80bf011bffffffffffffffec1bfffffffffffffffc1b90882739a2ed9e02ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 128, 191, 1, 27, 255, 255, 255, 255, 255, 255, + 255, 236, 27, 255, 255, 255, 255, 255, 255, 255, 252, 27, 144, 136, 39, 57, 162, 237, 158, 2, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3654, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11740118147545736487" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + } + ] + }, + "cborHex": "d8669f1ba2ed4740dd94a5279f809f11ffffff", + "cborBytes": [216, 102, 159, 27, 162, 237, 71, 64, 221, 148, 165, 39, 159, 128, 159, 17, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3655, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1744149891295383023" + }, + "fields": [] + }, + "cborHex": "d8669f1b18347715d1b28def80ff", + "cborBytes": [216, 102, 159, 27, 24, 52, 119, 21, 209, 178, 141, 239, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3656, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7490536712702947426" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + "cborHex": "d8669f1b67f3bb7421ae70629f10ffff", + "cborBytes": [216, 102, 159, 27, 103, 243, 187, 116, 33, 174, 112, 98, 159, 16, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3657, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1515826117679170573" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9603432950635346413" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fa631988c6f35b70342" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6801ea594c61fdf7c6" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "52accfdd979fb53b9d94" + }, + { + "_tag": "ByteArray", + "bytearray": "e0edf3c32a44" + }, + { + "_tag": "ByteArray", + "bytearray": "796d556b" + }, + { + "_tag": "ByteArray", + "bytearray": "98cbedbbfdca397b" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13377241064557946240" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15545680893972796811" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "227178702186525328" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce62bb684f81543c8275ec" + } + ] + }, + "cborHex": "d8669f1b15094bd2a586c40d9f1b85463f632ee6b9ed9fbf4a0fa631988c6f35b70342496801ea594c61fdf7c6ff9f4a52accfdd979fb53b9d9446e0edf3c32a4444796d556b4898cbedbbfdca397bffa0d8669f1bb9a581df5fbea58080ff1bd7bd5a6894d3558bff1b032719d3745cb2904bce62bb684f81543c8275ecffff", + "cborBytes": [ + 216, 102, 159, 27, 21, 9, 75, 210, 165, 134, 196, 13, 159, 27, 133, 70, 63, 99, 46, 230, 185, 237, 159, 191, 74, + 15, 166, 49, 152, 140, 111, 53, 183, 3, 66, 73, 104, 1, 234, 89, 76, 97, 253, 247, 198, 255, 159, 74, 82, 172, + 207, 221, 151, 159, 181, 59, 157, 148, 70, 224, 237, 243, 195, 42, 68, 68, 121, 109, 85, 107, 72, 152, 203, 237, + 187, 253, 202, 57, 123, 255, 160, 216, 102, 159, 27, 185, 165, 129, 223, 95, 190, 165, 128, 128, 255, 27, 215, + 189, 90, 104, 148, 211, 85, 139, 255, 27, 3, 39, 25, 211, 116, 92, 178, 144, 75, 206, 98, 187, 104, 79, 129, 84, + 60, 130, 117, 236, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3658, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "519684908094013546" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0579" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fa4e7c4497f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bfe07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9800fb050604fb030400" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b07364aaba613406a9fbf420579465fa4e7c4497f438bfe074a9800fb050604fb030400ffffff", + "cborBytes": [ + 216, 102, 159, 27, 7, 54, 74, 171, 166, 19, 64, 106, 159, 191, 66, 5, 121, 70, 95, 164, 231, 196, 73, 127, 67, + 139, 254, 7, 74, 152, 0, 251, 5, 6, 4, 251, 3, 4, 0, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3659, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6563779164464862228" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1244231035588155390" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7113685621741068393" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18363543751136912394" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2846121416234643798" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4306883918544032929" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7645677872193708132" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5e" + }, + { + "_tag": "ByteArray", + "bytearray": "1d5d" + }, + { + "_tag": "ByteArray", + "bytearray": "7cdf" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4896560912077992587" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17740014213959626113" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9715627334104243465" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6076959298027453790" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d3227a5230" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11087228171570333947" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6438917068985897074" + } + } + ] + } + ] + }, + "cborHex": "d905019f9f1b5b173a5faa09d414d8669f1b11446588debf97fe9f1b62b8e3620fae20691bfed869bf57dc240a1b277f7459424c31561b3bc5201ae5a8d4a11b6a1ae784272ba064ffffff415e421d5d427cdfd8669f1b43f41434d978b28b9f9f1bf63130efdd71ad811b86d4d795b35bdd091b5455b248d16efd5e45d3227a52301b99ddbf47862748fbff1b595ba0f59b1a9072ffffff", + "cborBytes": [ + 217, 5, 1, 159, 159, 27, 91, 23, 58, 95, 170, 9, 212, 20, 216, 102, 159, 27, 17, 68, 101, 136, 222, 191, 151, 254, + 159, 27, 98, 184, 227, 98, 15, 174, 32, 105, 27, 254, 216, 105, 191, 87, 220, 36, 10, 27, 39, 127, 116, 89, 66, + 76, 49, 86, 27, 59, 197, 32, 26, 229, 168, 212, 161, 27, 106, 26, 231, 132, 39, 43, 160, 100, 255, 255, 255, 65, + 94, 66, 29, 93, 66, 124, 223, 216, 102, 159, 27, 67, 244, 20, 52, 217, 120, 178, 139, 159, 159, 27, 246, 49, 48, + 239, 221, 113, 173, 129, 27, 134, 212, 215, 149, 179, 91, 221, 9, 27, 84, 85, 178, 72, 209, 110, 253, 94, 69, 211, + 34, 122, 82, 48, 27, 153, 221, 191, 71, 134, 39, 72, 251, 255, 27, 89, 91, 160, 245, 155, 26, 144, 114, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3660, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16666494637520513957" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7962832609803961300" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14450506803910506439" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "658897213633809750" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9648883019648891254" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10052923537993809736" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a7d1d7a8e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17767948035982761511" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "580884484511976492" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2eca593d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a6" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1be74b4891e85ceba59fd8669f1b6e81aa11d94303d49f1bc88a8360477377c79f1b0924df865a234d561b85e7b7fc017879761b8b8328b1f448bf4845a7d1d7a8e81bf6946e99a05a1e27ffffffd8669f1b080fb75c6adf4c2c9f442eca593d9f41a6ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 231, 75, 72, 145, 232, 92, 235, 165, 159, 216, 102, 159, 27, 110, 129, 170, 17, 217, 67, 3, + 212, 159, 27, 200, 138, 131, 96, 71, 115, 119, 199, 159, 27, 9, 36, 223, 134, 90, 35, 77, 86, 27, 133, 231, 183, + 252, 1, 120, 121, 118, 27, 139, 131, 40, 177, 244, 72, 191, 72, 69, 167, 209, 215, 168, 232, 27, 246, 148, 110, + 153, 160, 90, 30, 39, 255, 255, 255, 216, 102, 159, 27, 8, 15, 183, 92, 106, 223, 76, 44, 159, 68, 46, 202, 89, + 61, 159, 65, 166, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3661, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03bec506fa6fd5038fc1f9fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0034" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "219bd38704a6f9ea08" + } + ] + }, + "cborHex": "d905099fbf4c03bec506fa6fd5038fc1f9fe4102411b420034ff49219bd38704a6f9ea08ff", + "cborBytes": [ + 217, 5, 9, 159, 191, 76, 3, 190, 197, 6, 250, 111, 213, 3, 143, 193, 249, 254, 65, 2, 65, 27, 66, 0, 52, 255, 73, + 33, 155, 211, 135, 4, 166, 249, 234, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3662, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9720015220019482953" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12429260254821186899" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b86e46e5800a6d1499fd8669f1bac7d9a59457f7d5380ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 134, 228, 110, 88, 0, 166, 209, 73, 159, 216, 102, 159, 27, 172, 125, 154, 89, 69, 127, 125, + 83, 128, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3663, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "414491567070110848" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18122759909479835698" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d0dc012c3e3e01c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4a1cf93bb6e0db1255f3e" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3c822789192201d4bccad1" + }, + { + "_tag": "ByteArray", + "bytearray": "15cf2784195fe75772" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8948470364153454683" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a507" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "748708272895610550" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ca2ee9e148" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b05c091e2599be4809f1bfb80fa1e823c6832bf483d0dc012c3e3e01c4bc4a1cf93bb6e0db1255f3eff9f4b3c822789192201d4bccad14915cf2784195fe757729f1b7c2f5a629a7a205bff42a507d8669f1b0a63f2351656ceb69f45ca2ee9e148ffffffa080ffff", + "cborBytes": [ + 216, 102, 159, 27, 5, 192, 145, 226, 89, 155, 228, 128, 159, 27, 251, 128, 250, 30, 130, 60, 104, 50, 191, 72, 61, + 13, 192, 18, 195, 227, 224, 28, 75, 196, 161, 207, 147, 187, 110, 13, 177, 37, 95, 62, 255, 159, 75, 60, 130, 39, + 137, 25, 34, 1, 212, 188, 202, 209, 73, 21, 207, 39, 132, 25, 95, 231, 87, 114, 159, 27, 124, 47, 90, 98, 154, + 122, 32, 91, 255, 66, 165, 7, 216, 102, 159, 27, 10, 99, 242, 53, 22, 86, 206, 182, 159, 69, 202, 46, 233, 225, + 72, 255, 255, 255, 160, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3664, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10180961230511019394" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2b52e038842b1d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + "cborHex": "d8669f1b8d4a0a4c50a215829f472b52e038842b1d0fffff", + "cborBytes": [ + 216, 102, 159, 27, 141, 74, 10, 76, 80, 162, 21, 130, 159, 71, 43, 82, 224, 56, 132, 43, 29, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3665, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12750377048027600514" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "344c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ebc614510d27e358e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5644ca262cbca7497ae56f79" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4067273342086427404" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c51af3441f40b970c1c87" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3520705568141596727" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11202874648564506075" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce1ff72b5e2e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f19b19e7e9442122f18" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d264" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bfecd645cd9c987a069152" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bb0f2705eebfa96829fbf42344c494ebc614510d27e358e4c5644ca262cbca7497ae56f791b3871db8e277a330c4b5c51af3441f40b970c1c871b30dc0f0f8bd1d83741c11b9b789b2332ea9ddb46ce1ff72b5e2e4a7f19b19e7e9442122f1842d2644bbfecd645cd9c987a069152ffffff", + "cborBytes": [ + 216, 102, 159, 27, 176, 242, 112, 94, 235, 250, 150, 130, 159, 191, 66, 52, 76, 73, 78, 188, 97, 69, 16, 210, 126, + 53, 142, 76, 86, 68, 202, 38, 44, 188, 167, 73, 122, 229, 111, 121, 27, 56, 113, 219, 142, 39, 122, 51, 12, 75, + 92, 81, 175, 52, 65, 244, 11, 151, 12, 28, 135, 27, 48, 220, 15, 15, 139, 209, 216, 55, 65, 193, 27, 155, 120, + 155, 35, 50, 234, 157, 219, 70, 206, 31, 247, 43, 94, 46, 74, 127, 25, 177, 158, 126, 148, 66, 18, 47, 24, 66, + 210, 100, 75, 191, 236, 214, 69, 205, 156, 152, 122, 6, 145, 82, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3666, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [] + } + ] + }, + "cborHex": "d905009fd8669f1bffffffffffffffee80ffff", + "cborBytes": [217, 5, 0, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3667, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12729358224416716797" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "39b17dc7e8a7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4219429177363953008" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e242558a0ca1e0e0bd99bd14" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5019374604321404231" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9471bf5bf" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14219250234967982383" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1321332951158067754" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e425ba04e7013b31" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1707149449656984235" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6304328668090610673" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1820249524640103827" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10995062394586494298" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17270412753853269578" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "273574363281146027" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18264615831836185613" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "331b5d" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9d21f182f52cecfa4d55" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bb0a7c3dcb10e37fd9f4639b17dc7e8a79fbf1b3a8e6c7b37b275704ce242558a0ca1e0e0bd99bd141b45a8669bdd31b54745c9471bf5bfff1bc554ecc07ba8012fbf1b125651517fcb922a48e425ba04e7013b311b17b103612d4ee2ab1b577d798598da33f11b1942d34c6ebf3d931b98964efe5895755a1befacd4e5a5ccc64a1b03cbee6f1706c0ab1bfd78f3543792540d43331b5dff4a9d21f182f52cecfa4d55ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 176, 167, 195, 220, 177, 14, 55, 253, 159, 70, 57, 177, 125, 199, 232, 167, 159, 191, 27, 58, + 142, 108, 123, 55, 178, 117, 112, 76, 226, 66, 85, 138, 12, 161, 224, 224, 189, 153, 189, 20, 27, 69, 168, 102, + 155, 221, 49, 181, 71, 69, 201, 71, 27, 245, 191, 255, 27, 197, 84, 236, 192, 123, 168, 1, 47, 191, 27, 18, 86, + 81, 81, 127, 203, 146, 42, 72, 228, 37, 186, 4, 231, 1, 59, 49, 27, 23, 177, 3, 97, 45, 78, 226, 171, 27, 87, 125, + 121, 133, 152, 218, 51, 241, 27, 25, 66, 211, 76, 110, 191, 61, 147, 27, 152, 150, 78, 254, 88, 149, 117, 90, 27, + 239, 172, 212, 229, 165, 204, 198, 74, 27, 3, 203, 238, 111, 23, 6, 192, 171, 27, 253, 120, 243, 84, 55, 146, 84, + 13, 67, 51, 27, 93, 255, 74, 157, 33, 241, 130, 245, 44, 236, 250, 77, 85, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3668, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10598438081112345213" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1f" + } + ] + }, + "cborHex": "d8669f1b9315374826ac8a7d9f411fffff", + "cborBytes": [216, 102, 159, 27, 147, 21, 55, 72, 38, 172, 138, 125, 159, 65, 31, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3669, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3582826067015260166" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8501901180501382571" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11635808475409473381" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "df23c02c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "162373025128512783" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5684e8c2c3a832d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84f5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "583a4a67233f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7664518279996016088" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a574e8497e" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3851748035692487648" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1454196285346574941" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7404379255279670095" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14356106702987156954" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7609691772792812345" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10273005292712039385" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8356437173431555119" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6565467192090985471" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12646297577588550930" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "618c8cf4dcd699" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17003847838229638083" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a3ee47694ab43dee8b757" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8370802740638810421" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9a92071f95b9044" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42e51ce303b3f5722f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf4f014a7542" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5952529150758352271" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f55ebd146c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3834fa3286eaa" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b31b8c153487458069fd8669f1b75fcd214234255ab9fd8669f1ba17ab228c342df659f44df23c02cffff1b0240dd67f3e3fd0fbf485684e8c2c3a832d34284f546583a4a67233f1b6a5dd6c46da685d841a845a574e8497effffffbf1b3574286e57c263e01b142e57d11dc6725d1b66c1a3b3dd37534f1bc73b22fc05275dda1b699b0e59778733391b8e910be28fcf13d91b73f80755be41d42f1b5b1d39a0391083ff1baf80aca4d40c6d1247618c8cf4dcd6991bebf9cd84c478abc34b1a3ee47694ab43dee8b757ffd8669f1b742b10be00a481359fbf48a9a92071f95b90444942e51ce303b3f5722f46bf4f014a75421b529ba1b98a1bf58f45f55ebd146c47f3834fa3286eaaffa0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 49, 184, 193, 83, 72, 116, 88, 6, 159, 216, 102, 159, 27, 117, 252, 210, 20, 35, 66, 85, 171, + 159, 216, 102, 159, 27, 161, 122, 178, 40, 195, 66, 223, 101, 159, 68, 223, 35, 192, 44, 255, 255, 27, 2, 64, 221, + 103, 243, 227, 253, 15, 191, 72, 86, 132, 232, 194, 195, 168, 50, 211, 66, 132, 245, 70, 88, 58, 74, 103, 35, 63, + 27, 106, 93, 214, 196, 109, 166, 133, 216, 65, 168, 69, 165, 116, 232, 73, 126, 255, 255, 255, 191, 27, 53, 116, + 40, 110, 87, 194, 99, 224, 27, 20, 46, 87, 209, 29, 198, 114, 93, 27, 102, 193, 163, 179, 221, 55, 83, 79, 27, + 199, 59, 34, 252, 5, 39, 93, 218, 27, 105, 155, 14, 89, 119, 135, 51, 57, 27, 142, 145, 11, 226, 143, 207, 19, + 217, 27, 115, 248, 7, 85, 190, 65, 212, 47, 27, 91, 29, 57, 160, 57, 16, 131, 255, 27, 175, 128, 172, 164, 212, + 12, 109, 18, 71, 97, 140, 140, 244, 220, 214, 153, 27, 235, 249, 205, 132, 196, 120, 171, 195, 75, 26, 62, 228, + 118, 148, 171, 67, 222, 232, 183, 87, 255, 216, 102, 159, 27, 116, 43, 16, 190, 0, 164, 129, 53, 159, 191, 72, + 169, 169, 32, 113, 249, 91, 144, 68, 73, 66, 229, 28, 227, 3, 179, 245, 114, 47, 70, 191, 79, 1, 74, 117, 66, 27, + 82, 155, 161, 185, 138, 27, 245, 143, 69, 245, 94, 189, 20, 108, 71, 243, 131, 79, 163, 40, 110, 170, 255, 160, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3670, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12246926124946855216" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13455845819393271258" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13010154295306506814" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cded9164" + }, + { + "_tag": "ByteArray", + "bytearray": "8268c57a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10729381294711113148" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8522188816924254692" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6469f2701160412cc84a32eb" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12316950780620832640" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e96f99f7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8149304877723435441" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13548797191849199353" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "245231983613470550" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2526789592119695849" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15190540165842148189" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7646121763554748289" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3f47a436c4b29250e1010c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "20b3435685b3e00499b39f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18279526176166254380" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d920b273ac4bda" + } + ] + } + ] + } + ] + }, + "cborHex": "d9050d9f1ba9f5d26c73e89530800a80d8669f1bbabcc47b095c65da9fd8669f1bb48d5a669cc4523e9f44cded9164448268c57a1b94e66b70dafa05bc1b7644e5939593a1e44c6469f2701160412cc84a32ebffffd8669f1baaee997a1adfff809f44e96f99f71b7118259c031041b1ffffd8669f1bbc06ff42e9fb46f99f1b03673d3096d867561b2310f5bf1c72d9e91bd2cfa3cc43531b5d1b6a1c7b3baa1067814b3f47a436c4b29250e1010cffff9f4b20b3435685b3e00499b39f1bfdadec3548d8172c47d920b273ac4bdaffffffff", + "cborBytes": [ + 217, 5, 13, 159, 27, 169, 245, 210, 108, 115, 232, 149, 48, 128, 10, 128, 216, 102, 159, 27, 186, 188, 196, 123, + 9, 92, 101, 218, 159, 216, 102, 159, 27, 180, 141, 90, 102, 156, 196, 82, 62, 159, 68, 205, 237, 145, 100, 68, + 130, 104, 197, 122, 27, 148, 230, 107, 112, 218, 250, 5, 188, 27, 118, 68, 229, 147, 149, 147, 161, 228, 76, 100, + 105, 242, 112, 17, 96, 65, 44, 200, 74, 50, 235, 255, 255, 216, 102, 159, 27, 170, 238, 153, 122, 26, 223, 255, + 128, 159, 68, 233, 111, 153, 247, 27, 113, 24, 37, 156, 3, 16, 65, 177, 255, 255, 216, 102, 159, 27, 188, 6, 255, + 66, 233, 251, 70, 249, 159, 27, 3, 103, 61, 48, 150, 216, 103, 86, 27, 35, 16, 245, 191, 28, 114, 217, 233, 27, + 210, 207, 163, 204, 67, 83, 27, 93, 27, 106, 28, 123, 59, 170, 16, 103, 129, 75, 63, 71, 164, 54, 196, 178, 146, + 80, 225, 1, 12, 255, 255, 159, 75, 32, 179, 67, 86, 133, 179, 224, 4, 153, 179, 159, 27, 253, 173, 236, 53, 72, + 216, 23, 44, 71, 217, 32, 178, 115, 172, 75, 218, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3671, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + }, + "cborHex": "d87b9f0f80090dff", + "cborBytes": [216, 123, 159, 15, 128, 9, 13, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3672, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1063320709653308505" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14360845850808895012" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b0ec1ac8d3d33a4599f1bc74bf936db9b4624a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 14, 193, 172, 141, 61, 51, 164, 89, 159, 27, 199, 75, 249, 54, 219, 155, 70, 36, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3673, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8180189178339840075" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8519027358843770308" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12993093285666069708" + } + }, + { + "_tag": "ByteArray", + "bytearray": "712704" + }, + { + "_tag": "ByteArray", + "bytearray": "295ea9" + }, + { + "_tag": "ByteArray", + "bytearray": "41f6d0dbecfbfab5" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11151233247324280713" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7808329581712408685" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "66" + }, + { + "_tag": "ByteArray", + "bytearray": "fd255a69d995f7e444f6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14713209929954801408" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5d4df7428fe3c4ba8d34" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14582858368174944824" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03d602" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16081703587219933839" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1145489249371726707" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40666a10" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7739065443272330027" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5774532271685960799" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8592817470782073227" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dbf90f29" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10428325200721622142" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16282700717027486006" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11979731934481848501" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f42a7ce994c55334d59" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13843391001241789209" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13674824907381619710" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5155ac7ce0095ce5a9a49a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e0e79" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccb699f1952ef5eb267f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13684041308896765254" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7bfbc94c3faab0" + }, + { + "_tag": "ByteArray", + "bytearray": "a07bf4917ed02f" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b7185deb79a70d04b9fd9050b9fd8669f1b7639aa3f43b795c49f1bb450bd80c1a39ccc4371270443295ea94841f6d0dbecfbfab5ffff801b9ac1238e824a1789d8669f1b6c5cc2625f24806d9f41664afd255a69d995f7e444f61bcc2fd27a34b4b700ffff4a5d4df7428fe3c4ba8d34ff1bca60b86c2ce672384303d6021bdf2db035435e8a8f9fbf1b0fe598673ad4a3734440666a101b6b66af046fbf8b2b1b502342819ddf045f1b773fd1f685bc698b44dbf90f291b90b8da84b744347e1be1f7c6085e6be9361ba6408eb91b3198b54a6f42a7ce994c55334d591bc01d9ac52bdb23191bbdc6bccd0a253bfeffbf4b5155ac7ce0095ce5a9a49a436e0e794accb699f1952ef5eb267f1bbde77b11bc902546ff9f477bfbc94c3faab047a07bf4917ed02fffffffff", + "cborBytes": [ + 216, 102, 159, 27, 113, 133, 222, 183, 154, 112, 208, 75, 159, 217, 5, 11, 159, 216, 102, 159, 27, 118, 57, 170, + 63, 67, 183, 149, 196, 159, 27, 180, 80, 189, 128, 193, 163, 156, 204, 67, 113, 39, 4, 67, 41, 94, 169, 72, 65, + 246, 208, 219, 236, 251, 250, 181, 255, 255, 128, 27, 154, 193, 35, 142, 130, 74, 23, 137, 216, 102, 159, 27, 108, + 92, 194, 98, 95, 36, 128, 109, 159, 65, 102, 74, 253, 37, 90, 105, 217, 149, 247, 228, 68, 246, 27, 204, 47, 210, + 122, 52, 180, 183, 0, 255, 255, 74, 93, 77, 247, 66, 143, 227, 196, 186, 141, 52, 255, 27, 202, 96, 184, 108, 44, + 230, 114, 56, 67, 3, 214, 2, 27, 223, 45, 176, 53, 67, 94, 138, 143, 159, 191, 27, 15, 229, 152, 103, 58, 212, + 163, 115, 68, 64, 102, 106, 16, 27, 107, 102, 175, 4, 111, 191, 139, 43, 27, 80, 35, 66, 129, 157, 223, 4, 95, 27, + 119, 63, 209, 246, 133, 188, 105, 139, 68, 219, 249, 15, 41, 27, 144, 184, 218, 132, 183, 68, 52, 126, 27, 225, + 247, 198, 8, 94, 107, 233, 54, 27, 166, 64, 142, 185, 27, 49, 152, 181, 74, 111, 66, 167, 206, 153, 76, 85, 51, + 77, 89, 27, 192, 29, 154, 197, 43, 219, 35, 25, 27, 189, 198, 188, 205, 10, 37, 59, 254, 255, 191, 75, 81, 85, + 172, 124, 224, 9, 92, 229, 169, 164, 154, 67, 110, 14, 121, 74, 204, 182, 153, 241, 149, 46, 245, 235, 38, 127, + 27, 189, 231, 123, 17, 188, 144, 37, 70, 255, 159, 71, 123, 251, 201, 76, 63, 170, 176, 71, 160, 123, 244, 145, + 126, 208, 47, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3674, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5099365223709330020" + }, + "fields": [] + }, + "cborHex": "d8669f1b46c495a7432cca6480ff", + "cborBytes": [216, 102, 159, 27, 70, 196, 149, 167, 67, 44, 202, 100, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3675, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10851472332920764901" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14149686636281741603" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c7b19e82" + }, + { + "_tag": "ByteArray", + "bytearray": "7e79" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10788322564770046138" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7464" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13549071107899927444" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f44f473934" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13198835884932297020" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e800cedd65" + }, + { + "_tag": "ByteArray", + "bytearray": "0cac7747de84bf5d6586dc" + }, + { + "_tag": "ByteArray", + "bytearray": "411a40ed2257720f1739" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b3c1a5d701c7638cdc02c604" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9ff0fcd7302262" + }, + { + "_tag": "ByteArray", + "bytearray": "97266cc7049337ff4c" + }, + { + "_tag": "ByteArray", + "bytearray": "8c56bb2f40" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "16ac0397" + }, + { + "_tag": "ByteArray", + "bytearray": "603a7a6100184e10a5b5a6de" + } + ] + }, + "cborHex": "d8669f1b96982c97ddb8b9e59f9f9f1bc45dc90706aa4123ff809f44c7b19e82427e791b95b7d236b37320ba427464ff1bbc07f862f6e22b949f45f44f4739341bb72baf4e9211713c45e800cedd654b0cac7747de84bf5d6586dc4a411a40ed2257720f1739ffffa09f4cb3c1a5d701c7638cdc02c6049f479ff0fcd73022624997266cc7049337ff4c458c56bb2f40ffff4416ac03974c603a7a6100184e10a5b5a6deffff", + "cborBytes": [ + 216, 102, 159, 27, 150, 152, 44, 151, 221, 184, 185, 229, 159, 159, 159, 27, 196, 93, 201, 7, 6, 170, 65, 35, 255, + 128, 159, 68, 199, 177, 158, 130, 66, 126, 121, 27, 149, 183, 210, 54, 179, 115, 32, 186, 66, 116, 100, 255, 27, + 188, 7, 248, 98, 246, 226, 43, 148, 159, 69, 244, 79, 71, 57, 52, 27, 183, 43, 175, 78, 146, 17, 113, 60, 69, 232, + 0, 206, 221, 101, 75, 12, 172, 119, 71, 222, 132, 191, 93, 101, 134, 220, 74, 65, 26, 64, 237, 34, 87, 114, 15, + 23, 57, 255, 255, 160, 159, 76, 179, 193, 165, 215, 1, 199, 99, 140, 220, 2, 198, 4, 159, 71, 159, 240, 252, 215, + 48, 34, 98, 73, 151, 38, 108, 199, 4, 147, 55, 255, 76, 69, 140, 86, 187, 47, 64, 255, 255, 68, 22, 172, 3, 151, + 76, 96, 58, 122, 97, 0, 24, 78, 16, 165, 181, 166, 222, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3676, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17708826792887422021" + } + }, + { + "_tag": "ByteArray", + "bytearray": "161cf8ffdcf36e" + } + ] + }, + "cborHex": "d87b9f1bf5c264248af98c4547161cf8ffdcf36eff", + "cborBytes": [216, 123, 159, 27, 245, 194, 100, 36, 138, 249, 140, 69, 71, 22, 28, 248, 255, 220, 243, 110, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3677, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5196982056581316808" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "bb0361a7dedd1189" + } + ] + }, + "cborHex": "d8669f1b481f63a54a9bc0c89f8048bb0361a7dedd1189ffff", + "cborBytes": [ + 216, 102, 159, 27, 72, 31, 99, 165, 74, 155, 192, 200, 159, 128, 72, 187, 3, 97, 167, 222, 221, 17, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3678, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fcbef1dd0f2a1351b7f4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3301039679620426388" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9406142804618407737" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3709226645301470963" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9230910080278301605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45fc7cda49" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9641532665025863171" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16305868854081625987" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12216398322702388419" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9372995390295151600" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17542044181881365076" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16221483047490970965" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17951962054564637953" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4586381451888592669" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10297037074576824419" + } + }, + { + "_tag": "ByteArray", + "bytearray": "29100877e0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2859029549610098893" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bfea90a7" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d9050d9f9f4afcbef1dd0f2a1351b7f4bf1b2dcfa619553eaa941b8289550b7fe06f391b3379d1fb489ba6f341b81b801ac7cf808f8ba54545fc7cda491b85cd9ae035311e031be24a1554a1a41f831ba9895d8c9b5a8cc31b821391a5afea93f01bf371dc3ddf3f22541be11e48e2f7b86555ffd8669f1bf9222e60039ded0180ffffd905029fd8669f1b3fa619a17c42871d9f1b8ee66ca9cd2dd8634529100877e01b27ad503a42dae0cd44bfea90a7ffff80ffff", + "cborBytes": [ + 217, 5, 13, 159, 159, 74, 252, 190, 241, 221, 15, 42, 19, 81, 183, 244, 191, 27, 45, 207, 166, 25, 85, 62, 170, + 148, 27, 130, 137, 85, 11, 127, 224, 111, 57, 27, 51, 121, 209, 251, 72, 155, 166, 243, 65, 184, 27, 128, 26, 199, + 207, 128, 143, 139, 165, 69, 69, 252, 124, 218, 73, 27, 133, 205, 154, 224, 53, 49, 30, 3, 27, 226, 74, 21, 84, + 161, 164, 31, 131, 27, 169, 137, 93, 140, 155, 90, 140, 195, 27, 130, 19, 145, 165, 175, 234, 147, 240, 27, 243, + 113, 220, 61, 223, 63, 34, 84, 27, 225, 30, 72, 226, 247, 184, 101, 85, 255, 216, 102, 159, 27, 249, 34, 46, 96, + 3, 157, 237, 1, 128, 255, 255, 217, 5, 2, 159, 216, 102, 159, 27, 63, 166, 25, 161, 124, 66, 135, 29, 159, 27, + 142, 230, 108, 169, 205, 45, 216, 99, 69, 41, 16, 8, 119, 224, 27, 39, 173, 80, 58, 66, 218, 224, 205, 68, 191, + 234, 144, 167, 255, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3679, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12431639641764235860" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14539317056774282708" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14055195377817090998" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5745591480141268645" + } + }, + { + "_tag": "ByteArray", + "bytearray": "49d76353307cf1" + }, + { + "_tag": "ByteArray", + "bytearray": "2634f5c969990d09027f95" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13356380748194681622" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7645250307813400176" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "540223443417460378" + } + }, + { + "_tag": "ByteArray", + "bytearray": "78bab5" + } + ] + } + ] + }, + "cborHex": "d8669f1bac860e6377058a549f9fd8669f1bc9c607d49dcf1dd49f1bc30e15ba7f7ffbb61b4fbc71027e54c6a54749d76353307cf14b2634f5c969990d09027f95ffffbf1bb95b65867d0293164103ff1b6a1962a61029de701b077f425c0c3c6e9a4378bab5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 172, 134, 14, 99, 119, 5, 138, 84, 159, 159, 216, 102, 159, 27, 201, 198, 7, 212, 157, 207, 29, + 212, 159, 27, 195, 14, 21, 186, 127, 127, 251, 182, 27, 79, 188, 113, 2, 126, 84, 198, 165, 71, 73, 215, 99, 83, + 48, 124, 241, 75, 38, 52, 245, 201, 105, 153, 13, 9, 2, 127, 149, 255, 255, 191, 27, 185, 91, 101, 134, 125, 2, + 147, 22, 65, 3, 255, 27, 106, 25, 98, 166, 16, 41, 222, 112, 27, 7, 127, 66, 92, 12, 60, 110, 154, 67, 120, 186, + 181, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3680, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15992424517630195375" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2150539771738574132" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10490667038383535076" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7aeb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18218817610319072221" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b77cc36e216" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4133089890252303231" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8c36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3651172610958650252" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7530219414705629753" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5687980172482411323" + } + }, + { + "_tag": "ByteArray", + "bytearray": "904e2780" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "4d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17395105590659851501" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5616443981679918279" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cc4263c1d9" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "303b9672ad07b3096a34bbec" + }, + { + "_tag": "ByteArray", + "bytearray": "1793ba2cb7661df3c333710d" + }, + { + "_tag": "ByteArray", + "bytearray": "a6607c4d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "615475851653505256" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16565068713061144377" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2832879672049684364" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "61046840681267420" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17231841766948692811" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd71f23b13bd93e429" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87e9fd8669f1bddf0815e069876af80ff9fd8669f1b1dd8408741d3cd349f1b91965616e7bff3e4427aeb1bfcd63e16d2b30bdd460b77cc36e2161b395baf5b6d3f2b7fffff9f428c361b32ab922519d36b8c1b6880b6a92e476a391b4eefc3d4a6477b3b44904e2780ffa0414dff1bf167d45f19b124ed9fd8669f1b4df19e0b4ce97cc79f45cc4263c1d9ffff80ff9f9f4c303b9672ad07b3096a34bbec4c1793ba2cb7661df3c333710d44a6607c4dffbf1b088a9c06b1a360e81be5e2f23aa1f257391b2750690d6ff24f8c1b00d8e1c7357780dc1bef23ccc9f0b7634b49dd71f23b13bd93e429ffffff", + "cborBytes": [ + 216, 126, 159, 216, 102, 159, 27, 221, 240, 129, 94, 6, 152, 118, 175, 128, 255, 159, 216, 102, 159, 27, 29, 216, + 64, 135, 65, 211, 205, 52, 159, 27, 145, 150, 86, 22, 231, 191, 243, 228, 66, 122, 235, 27, 252, 214, 62, 22, 210, + 179, 11, 221, 70, 11, 119, 204, 54, 226, 22, 27, 57, 91, 175, 91, 109, 63, 43, 127, 255, 255, 159, 66, 140, 54, + 27, 50, 171, 146, 37, 25, 211, 107, 140, 27, 104, 128, 182, 169, 46, 71, 106, 57, 27, 78, 239, 195, 212, 166, 71, + 123, 59, 68, 144, 78, 39, 128, 255, 160, 65, 77, 255, 27, 241, 103, 212, 95, 25, 177, 36, 237, 159, 216, 102, 159, + 27, 77, 241, 158, 11, 76, 233, 124, 199, 159, 69, 204, 66, 99, 193, 217, 255, 255, 128, 255, 159, 159, 76, 48, 59, + 150, 114, 173, 7, 179, 9, 106, 52, 187, 236, 76, 23, 147, 186, 44, 183, 102, 29, 243, 195, 51, 113, 13, 68, 166, + 96, 124, 77, 255, 191, 27, 8, 138, 156, 6, 177, 163, 96, 232, 27, 229, 226, 242, 58, 161, 242, 87, 57, 27, 39, 80, + 105, 13, 111, 242, 79, 140, 27, 0, 216, 225, 199, 53, 119, 128, 220, 27, 239, 35, 204, 201, 240, 183, 99, 75, 73, + 221, 113, 242, 59, 19, 189, 147, 228, 41, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3681, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12795696327725898905" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9916615498957034617" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1190633403164422097" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9552596570127691667" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16966109715891514312" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12668931060218051590" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5512694320385760109" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10014161486669369427" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afa3e07bed6f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fb4" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eaa8949bdbe733b7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14477237870309287986" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bae14be821" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "77b2b15128" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bb1937203fbdf5c999f801b899ee5417d779479d8669f1b1085fac59d546fd19fd8669f1b8491a3f7fd136f9380ff9f1beb73bae574046bc81bafd115ad2835bc06416bffbf1b4c810646e1e81b6d1b8af972d09853505346afa3e07bed6f426fb4ffffff9f48eaa8949bdbe733b7d8669f1bc8e97b23ac9e28329f45bae14be821ffff4577b2b15128a0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 177, 147, 114, 3, 251, 223, 92, 153, 159, 128, 27, 137, 158, 229, 65, 125, 119, 148, 121, 216, + 102, 159, 27, 16, 133, 250, 197, 157, 84, 111, 209, 159, 216, 102, 159, 27, 132, 145, 163, 247, 253, 19, 111, 147, + 128, 255, 159, 27, 235, 115, 186, 229, 116, 4, 107, 200, 27, 175, 209, 21, 173, 40, 53, 188, 6, 65, 107, 255, 191, + 27, 76, 129, 6, 70, 225, 232, 27, 109, 27, 138, 249, 114, 208, 152, 83, 80, 83, 70, 175, 163, 224, 123, 237, 111, + 66, 111, 180, 255, 255, 255, 159, 72, 234, 168, 148, 155, 219, 231, 51, 183, 216, 102, 159, 27, 200, 233, 123, 35, + 172, 158, 40, 50, 159, 69, 186, 225, 75, 232, 33, 255, 255, 69, 119, 178, 177, 81, 40, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3682, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5190819118293460764" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aceadaa217eae97c3d64" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12365770935050014775" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cbfd0733" + } + ] + }, + "cborHex": "d8669f1b48097e7c6730271c9fbf41274aaceadaa217eae97c3d6442c0d41441c41bab9c0b2615819037ff44cbfd0733ffff", + "cborBytes": [ + 216, 102, 159, 27, 72, 9, 126, 124, 103, 48, 39, 28, 159, 191, 65, 39, 74, 172, 234, 218, 162, 23, 234, 233, 124, + 61, 100, 66, 192, 212, 20, 65, 196, 27, 171, 156, 11, 38, 21, 129, 144, 55, 255, 68, 203, 253, 7, 51, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3683, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15129443935249938882" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2183207806356190606" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14883134030717461032" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "63908a4e78" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15939750548912117179" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10836683834746732081" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f7eae2e9898c72681a91" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7cb3f2739ec8f6aa9d418b6b" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1831948580047183313" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5373555382082842994" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ef116b" + }, + { + "_tag": "ByteArray", + "bytearray": "8e01dcc7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "156956311251425217" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13881423368409012186" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aacd429064857bc0ba788b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1614239359225443397" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1324914917924580675" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25dd9eed" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bd1f6951991c2b9c29fd8669f1b1e4c4feec8b8758e9fd8669f1bce8b838bf571222880ff809f4563908a4e781bdd355eabfc3e95bb1b9663a288514bfe314af7eae2e9898c72681a91ff4c7cb3f2739ec8f6aa9d418b6b80ffff9fd8669f1b196c6387087e5dd19f1b4a92b42651efb17243ef116b448e01dcc71b022d9eeef96597c11bc0a4b901b2d357daffff4baacd429064857bc0ba788b1b1666ee2505163445bf1b12630b192082ad434425dd9eedffffffff", + "cborBytes": [ + 216, 102, 159, 27, 209, 246, 149, 25, 145, 194, 185, 194, 159, 216, 102, 159, 27, 30, 76, 79, 238, 200, 184, 117, + 142, 159, 216, 102, 159, 27, 206, 139, 131, 139, 245, 113, 34, 40, 128, 255, 128, 159, 69, 99, 144, 138, 78, 120, + 27, 221, 53, 94, 171, 252, 62, 149, 187, 27, 150, 99, 162, 136, 81, 75, 254, 49, 74, 247, 234, 226, 233, 137, 140, + 114, 104, 26, 145, 255, 76, 124, 179, 242, 115, 158, 200, 246, 170, 157, 65, 139, 107, 128, 255, 255, 159, 216, + 102, 159, 27, 25, 108, 99, 135, 8, 126, 93, 209, 159, 27, 74, 146, 180, 38, 81, 239, 177, 114, 67, 239, 17, 107, + 68, 142, 1, 220, 199, 27, 2, 45, 158, 238, 249, 101, 151, 193, 27, 192, 164, 185, 1, 178, 211, 87, 218, 255, 255, + 75, 170, 205, 66, 144, 100, 133, 123, 192, 186, 120, 139, 27, 22, 102, 238, 37, 5, 22, 52, 69, 191, 27, 18, 99, + 11, 25, 32, 130, 173, 67, 68, 37, 221, 158, 237, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3684, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0323" + } + ] + }, + "cborHex": "d905049f420323ff", + "cborBytes": [217, 5, 4, 159, 66, 3, 35, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3685, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14146035690393967090" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9808559203859003646" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16782052422158542742" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73a2054c15464602" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bb182" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5adac85febdf3fe2dc1cc3" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "70c9c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5988975571821332993" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bedd415dc1da7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "740dbdcc35ad54" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15882454879906845006" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3b618a753a1a" + }, + { + "_tag": "ByteArray", + "bytearray": "71f5aa03b4e6d06456971d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "512080689439742970" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "58da55bd79c5584f7d96c6c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9063075721599735541" + } + }, + { + "_tag": "ByteArray", + "bytearray": "205957" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7854131267901157122" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8306045368798501295" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3b2799a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10370876083950764207" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14164932292062260913" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12583012225004031586" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9439095272956532493" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9f1bc450d082f1ee19f2d8669f1b881f00a0c06778fe9fbf1be8e5d3c348be67964873a2054c15464602437bb1824b5adac85febdf3fe2dc1cc3ff9f4370c9c71b531d1d8d36e70a01ff80ffffbf472bedd415dc1da747740dbdcc35ad54ffd8669f1bdc69d0907e04514e9f9f463b618a753a1a4b71f5aa03b4e6d06456971dffd8669f1b071b46ac86649bfa9f4c58da55bd79c5584f7d96c6c71b7dc68359be6b56f543205957ffffbf1b6cff7ac672896f021b734500416f8359af44c3b2799a1b8fecc0d9e17ac0afffd8669f1bc493f2dedfd4aeb19f1bae9fd6f373c34e621b82fe6723e9a4970dffff80ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 27, 196, 80, 208, 130, 241, 238, 25, 242, 216, + 102, 159, 27, 136, 31, 0, 160, 192, 103, 120, 254, 159, 191, 27, 232, 229, 211, 195, 72, 190, 103, 150, 72, 115, + 162, 5, 76, 21, 70, 70, 2, 67, 123, 177, 130, 75, 90, 218, 200, 95, 235, 223, 63, 226, 220, 28, 195, 255, 159, 67, + 112, 201, 199, 27, 83, 29, 29, 141, 54, 231, 10, 1, 255, 128, 255, 255, 191, 71, 43, 237, 212, 21, 220, 29, 167, + 71, 116, 13, 189, 204, 53, 173, 84, 255, 216, 102, 159, 27, 220, 105, 208, 144, 126, 4, 81, 78, 159, 159, 70, 59, + 97, 138, 117, 58, 26, 75, 113, 245, 170, 3, 180, 230, 208, 100, 86, 151, 29, 255, 216, 102, 159, 27, 7, 27, 70, + 172, 134, 100, 155, 250, 159, 76, 88, 218, 85, 189, 121, 197, 88, 79, 125, 150, 198, 199, 27, 125, 198, 131, 89, + 190, 107, 86, 245, 67, 32, 89, 87, 255, 255, 191, 27, 108, 255, 122, 198, 114, 137, 111, 2, 27, 115, 69, 0, 65, + 111, 131, 89, 175, 68, 195, 178, 121, 154, 27, 143, 236, 192, 217, 225, 122, 192, 175, 255, 216, 102, 159, 27, + 196, 147, 242, 222, 223, 212, 174, 177, 159, 27, 174, 159, 214, 243, 115, 195, 78, 98, 27, 130, 254, 103, 35, 233, + 164, 151, 13, 255, 255, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3686, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2534227545734053568" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b47a9eca83f2" + } + ] + }, + "cborHex": "d8669f1b232b6286a37cfec09f46b47a9eca83f2ffff", + "cborBytes": [ + 216, 102, 159, 27, 35, 43, 98, 134, 163, 124, 254, 192, 159, 70, 180, 122, 158, 202, 131, 242, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3687, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8889844681628073917" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9ad27cbd" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10269112337777956489" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14414933391120063441" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16225049901775770316" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3664701650001678311" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "720883777695587302" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7589937843595834851" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15788544007902674003" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67eba570" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "055c8257e82857" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12427502162623926412" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "23db3587c9c596" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "928290473112159387" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e364ea548027" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b7b5f12a334d63fbd9f449ad27cbd9f1b8e8337435bd61689d8669f1bc80c218baea0dbd19f1be12af4ebf254d2cc1b32dba2bbf8234fe71b0a0117f9f5e31be61b6954e0416ad2f5e3ffffbf1bdb1c2d1fb7a93c534467eba570ff47055c8257e82857d8669f1bac775b5f8899108c9f4723db3587c9c5961b0ce1f3445a3ac49b46e364ea548027ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 123, 95, 18, 163, 52, 214, 63, 189, 159, 68, 154, 210, 124, 189, 159, 27, 142, 131, 55, 67, 91, + 214, 22, 137, 216, 102, 159, 27, 200, 12, 33, 139, 174, 160, 219, 209, 159, 27, 225, 42, 244, 235, 242, 84, 210, + 204, 27, 50, 219, 162, 187, 248, 35, 79, 231, 27, 10, 1, 23, 249, 245, 227, 27, 230, 27, 105, 84, 224, 65, 106, + 210, 245, 227, 255, 255, 191, 27, 219, 28, 45, 31, 183, 169, 60, 83, 68, 103, 235, 165, 112, 255, 71, 5, 92, 130, + 87, 232, 40, 87, 216, 102, 159, 27, 172, 119, 91, 95, 136, 153, 16, 140, 159, 71, 35, 219, 53, 135, 201, 197, 150, + 27, 12, 225, 243, 68, 90, 58, 196, 155, 70, 227, 100, 234, 84, 128, 39, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3688, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06b8cb8cdebeb950a6b4e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1bd4dd79ce519a87e3d3ca47" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27a72673f27d23bf6b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12728210434290093830" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6ae98d7bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0dedb7539a79224c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f46edae08387d58d54" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26a943" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13595732968719385619" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2327843239549625156" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1185006136755386412" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5488461706562147560" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4ba40f0591e83" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11901431055020292038" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0fcee6b774402f896116c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17897922445425100495" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9077367626028627080" + } + }, + { + "_tag": "ByteArray", + "bytearray": "19b9e5a14e2a" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7451921186630321077" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9583702195698307459" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7783847519864425955" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4139105064079507236" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12349234639031274873" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5254255405363775299" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19fbf4b06b8cb8cdebeb950a6b4e24c1bd4dd79ce519a87e3d3ca474927a72673f27d23bf6b1bb0a3aff3fa480f0645e6ae98d7bb480dedb7539a79224c49f46edae08387d58d544326a943ffa09f1bbcadbf1a0d960413bf1b204e2917ca2663441b1071fccd8df6782c1b4c2aeed7cef894e847f4ba40f0591e831ba52a607cf14977c64ba0fcee6b774402f896116cffd8669f1bf86231a3090dc6cf9f1b7df949c30d1134884619b9e5a14e2affffff80bf1b676a8ad6574ec3b51b8500265ecfba91831b6c05c81427530de31b39710e20387abf241bab614b79a3688d791b48eadd73f3e24743ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 191, 75, 6, 184, 203, 140, 222, 190, 185, 80, 166, + 180, 226, 76, 27, 212, 221, 121, 206, 81, 154, 135, 227, 211, 202, 71, 73, 39, 167, 38, 115, 242, 125, 35, 191, + 107, 27, 176, 163, 175, 243, 250, 72, 15, 6, 69, 230, 174, 152, 215, 187, 72, 13, 237, 183, 83, 154, 121, 34, 76, + 73, 244, 110, 218, 224, 131, 135, 213, 141, 84, 67, 38, 169, 67, 255, 160, 159, 27, 188, 173, 191, 26, 13, 150, 4, + 19, 191, 27, 32, 78, 41, 23, 202, 38, 99, 68, 27, 16, 113, 252, 205, 141, 246, 120, 44, 27, 76, 42, 238, 215, 206, + 248, 148, 232, 71, 244, 186, 64, 240, 89, 30, 131, 27, 165, 42, 96, 124, 241, 73, 119, 198, 75, 160, 252, 238, + 107, 119, 68, 2, 248, 150, 17, 108, 255, 216, 102, 159, 27, 248, 98, 49, 163, 9, 13, 198, 207, 159, 27, 125, 249, + 73, 195, 13, 17, 52, 136, 70, 25, 185, 229, 161, 78, 42, 255, 255, 255, 128, 191, 27, 103, 106, 138, 214, 87, 78, + 195, 181, 27, 133, 0, 38, 94, 207, 186, 145, 131, 27, 108, 5, 200, 20, 39, 83, 13, 227, 27, 57, 113, 14, 32, 56, + 122, 191, 36, 27, 171, 97, 75, 121, 163, 104, 141, 121, 27, 72, 234, 221, 115, 243, 226, 71, 67, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3689, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10051697860795676398" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dd2257e9ad73ac" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1da89bc4a511" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11009232345840059117" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f04162da1025c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b9869f817d129" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8273318986413020106" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f169b10b1e253" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9991d596771999614" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7134ee5c4bd78d6cbaa311" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0af4380f64e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6e00cfc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12491971622717228845" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1525343315141218085" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6512657156316355643" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11994810788517480895" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb1719dada" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14249913782015769098" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "368424e056c512b0d2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16294788671731693500" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4745362686758203867" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1878313807085284036" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13682791090413695302" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4235950503205603029" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16286867470278182164" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7817090999942606959" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11017653933141692507" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14753494646083274881" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17634902915113388157" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dff22c461edba95267" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8778083938057777637" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18098830719128125089" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3652782046795797873" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4299810755306444024" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8236733071060928094" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f20d" + }, + { + "_tag": "ByteArray", + "bytearray": "dded8645461cb644a905" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17098342277820192543" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a7322c7f77eddfa0eba1" + }, + { + "_tag": "ByteArray", + "bytearray": "7ab8717d" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "51114aadcabdb2cada93" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4679143936281195078" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "996244324588083771" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5dce9e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6171723879151942347" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8257818850e6816f6b205" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7235693844507168775" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7887b39493a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13933150383753279832" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40a518557a30" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8b7ecdf2be47b6ee9f9f47dd2257e9ad73acbf461da89bc4a5111b98c8a67d378982ed471f04162da1025c478b9869f817d12941291b72d0bbc8c2a493ca472f169b10b1e25349c9991d5967719996144b7134ee5c4bd78d6cbaa311460af4380f64e844f6e00cfc1bad5c66016c52072dffbf1b152b1ba9db824f251b5a619b2d9a245c3b1ba67620dc659b89bf45eb1719dada1bc5c1dd15e0fe3a0a49368424e056c512b0d21be222b7f6a4a077bc1b41daea38ba9db1dbffbf1b1a111c74b007aac41bbde30a008ffcf1461b3ac91e8a25b506d51be20693ac35cbc5141b6c7be2d9047b706f41b21b98e691e0cf18905b1bccbef136976bc8811bf4bbc2c47fd5887d49dff22c461edba95267ffff9fd8669f1b79d204d5587ef1e59f1bfb2bf6a5b78f3ea11b32b149eb153015711b3babff19bf71d4f81b724ec1168a4c865effff9f42f20d4added8645461cb644a9051bed4983b5f584171f4aa7322c7f77eddfa0eba1447ab8717dff80a04a51114aadcabdb2cada93ff9f1b40efa89e6ef6b246ffbf1b0dd35eef54925a3b435dce9e1b55a65e2b3ca5bacb4bd8257818850e6816f6b2051b646a59371954900746b7887b39493a1bc15c7e73f9b639584640a518557a30ffffff", + "cborBytes": [ + 216, 102, 159, 27, 139, 126, 205, 242, 190, 71, 182, 238, 159, 159, 71, 221, 34, 87, 233, 173, 115, 172, 191, 70, + 29, 168, 155, 196, 165, 17, 27, 152, 200, 166, 125, 55, 137, 130, 237, 71, 31, 4, 22, 45, 161, 2, 92, 71, 139, + 152, 105, 248, 23, 209, 41, 65, 41, 27, 114, 208, 187, 200, 194, 164, 147, 202, 71, 47, 22, 155, 16, 177, 226, 83, + 73, 201, 153, 29, 89, 103, 113, 153, 150, 20, 75, 113, 52, 238, 92, 75, 215, 141, 108, 186, 163, 17, 70, 10, 244, + 56, 15, 100, 232, 68, 246, 224, 12, 252, 27, 173, 92, 102, 1, 108, 82, 7, 45, 255, 191, 27, 21, 43, 27, 169, 219, + 130, 79, 37, 27, 90, 97, 155, 45, 154, 36, 92, 59, 27, 166, 118, 32, 220, 101, 155, 137, 191, 69, 235, 23, 25, + 218, 218, 27, 197, 193, 221, 21, 224, 254, 58, 10, 73, 54, 132, 36, 224, 86, 197, 18, 176, 210, 27, 226, 34, 183, + 246, 164, 160, 119, 188, 27, 65, 218, 234, 56, 186, 157, 177, 219, 255, 191, 27, 26, 17, 28, 116, 176, 7, 170, + 196, 27, 189, 227, 10, 0, 143, 252, 241, 70, 27, 58, 201, 30, 138, 37, 181, 6, 213, 27, 226, 6, 147, 172, 53, 203, + 197, 20, 27, 108, 123, 226, 217, 4, 123, 112, 111, 65, 178, 27, 152, 230, 145, 224, 207, 24, 144, 91, 27, 204, + 190, 241, 54, 151, 107, 200, 129, 27, 244, 187, 194, 196, 127, 213, 136, 125, 73, 223, 242, 44, 70, 30, 219, 169, + 82, 103, 255, 255, 159, 216, 102, 159, 27, 121, 210, 4, 213, 88, 126, 241, 229, 159, 27, 251, 43, 246, 165, 183, + 143, 62, 161, 27, 50, 177, 73, 235, 21, 48, 21, 113, 27, 59, 171, 255, 25, 191, 113, 212, 248, 27, 114, 78, 193, + 22, 138, 76, 134, 94, 255, 255, 159, 66, 242, 13, 74, 221, 237, 134, 69, 70, 28, 182, 68, 169, 5, 27, 237, 73, + 131, 181, 245, 132, 23, 31, 74, 167, 50, 44, 127, 119, 237, 223, 160, 235, 161, 68, 122, 184, 113, 125, 255, 128, + 160, 74, 81, 17, 74, 173, 202, 189, 178, 202, 218, 147, 255, 159, 27, 64, 239, 168, 158, 110, 246, 178, 70, 255, + 191, 27, 13, 211, 94, 239, 84, 146, 90, 59, 67, 93, 206, 158, 27, 85, 166, 94, 43, 60, 165, 186, 203, 75, 216, 37, + 120, 24, 133, 14, 104, 22, 246, 178, 5, 27, 100, 106, 89, 55, 25, 84, 144, 7, 70, 183, 136, 123, 57, 73, 58, 27, + 193, 92, 126, 115, 249, 182, 57, 88, 70, 64, 165, 24, 85, 122, 48, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3690, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6325788640512754854" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02a703" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b57c9b740c9f6c4a69fbf1bfffffffffffffff94302a703ffffff", + "cborBytes": [ + 216, 102, 159, 27, 87, 201, 183, 64, 201, 246, 196, 166, 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 249, 67, + 2, 167, 3, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3691, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16838177483155935319" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9797857085094125251" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3372049637499311328" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9149396290351771187" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11759803656111932285" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4fa42666af" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4384572924571629810" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4731477092759772612" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10961156470710724345" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ffed1dcdc0732ee78a959b86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15559421717861098468" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9268544465026206458" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "df4402510cb40103c17505" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14917768544542043077" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5137175690483246038" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6805c26f560d89cf2d931908" + }, + { + "_tag": "ByteArray", + "bytearray": "59a3cc14518d" + }, + { + "_tag": "ByteArray", + "bytearray": "99fc3eae3c2ed9" + }, + { + "_tag": "ByteArray", + "bytearray": "d8e6f44b801bd1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "274671033766901665" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bd" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1be9ad39355c7d90579f9f9f1b87f8fb1b8d145ec3ffffd8669f1b2ecbed47882194e09fd8669f1b7ef92f7353b1ae339f1ba333371e7ee4437d454fa42666afffffffff9fd8669f1b3cd921d82ce338f29f1b41a99558f0d81dc41b981dd9bc442fe6f94cffed1dcdc0732ee78a959b861bd7ee2b9d739be3e41b80a07c1586cccafaffff4bdf4402510cb40103c17505d8669f1bcf068f741aecabc59f1b474aea129406a3d64c6805c26f560d89cf2d9319084659a3cc14518d4799fc3eae3c2ed947d8e6f44b801bd1ffffd8669f1b03cfd3d995c3f7a19f41bdffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 233, 173, 57, 53, 92, 125, 144, 87, 159, 159, 159, 27, 135, 248, 251, 27, 141, 20, 94, 195, + 255, 255, 216, 102, 159, 27, 46, 203, 237, 71, 136, 33, 148, 224, 159, 216, 102, 159, 27, 126, 249, 47, 115, 83, + 177, 174, 51, 159, 27, 163, 51, 55, 30, 126, 228, 67, 125, 69, 79, 164, 38, 102, 175, 255, 255, 255, 255, 159, + 216, 102, 159, 27, 60, 217, 33, 216, 44, 227, 56, 242, 159, 27, 65, 169, 149, 88, 240, 216, 29, 196, 27, 152, 29, + 217, 188, 68, 47, 230, 249, 76, 255, 237, 29, 205, 192, 115, 46, 231, 138, 149, 155, 134, 27, 215, 238, 43, 157, + 115, 155, 227, 228, 27, 128, 160, 124, 21, 134, 204, 202, 250, 255, 255, 75, 223, 68, 2, 81, 12, 180, 1, 3, 193, + 117, 5, 216, 102, 159, 27, 207, 6, 143, 116, 26, 236, 171, 197, 159, 27, 71, 74, 234, 18, 148, 6, 163, 214, 76, + 104, 5, 194, 111, 86, 13, 137, 207, 45, 147, 25, 8, 70, 89, 163, 204, 20, 81, 141, 71, 153, 252, 62, 174, 60, 46, + 217, 71, 216, 230, 244, 75, 128, 27, 209, 255, 255, 216, 102, 159, 27, 3, 207, 211, 217, 149, 195, 247, 161, 159, + 65, 189, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3692, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8107648994209149561" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc1ec9336ffaf3" + }, + { + "_tag": "ByteArray", + "bytearray": "3209353c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2802739017561129166" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14657605755379279497" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "154694885749213323" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11522428879639931347" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7920680545100741114" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17712010784900581616" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3543227301927099897" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2189141512349370360" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3892979099943616910" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e26fc39e67fe59954b4944" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9202181402682649580" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9395e6028d86" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12045703147531818822" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7322996409207089829" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13070585191757192740" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9c3496707dbeb3e6249f7ce" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f9f019f1b708427cdd763b27947fc1ec9336ffaf3443209353c1b26e5544973dbc0ceff1bcb6a46c6731a66891b0225962dd1a6c88b41fdffd8669f1bfffffffffffffff680ff9f1b9fe7e40480a3e9d3bf1b6debe8fd7e13b9fa1bf5cdb3f773e308f0ff1b312c127551d49df91b1e61649b5ea547f8bf1b3606a3dd9228c18e4be26fc39e67fe59954b49441b7fb4b73b019aebec469395e6028d861ba72aef311a7057461b65a0826f6e3feaa51bb5640bfb212b1e244ca9c3496707dbeb3e6249f7ceffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 159, 1, 159, 27, 112, 132, 39, 205, 215, 99, 178, + 121, 71, 252, 30, 201, 51, 111, 250, 243, 68, 50, 9, 53, 60, 27, 38, 229, 84, 73, 115, 219, 192, 206, 255, 27, + 203, 106, 70, 198, 115, 26, 102, 137, 27, 2, 37, 150, 45, 209, 166, 200, 139, 65, 253, 255, 216, 102, 159, 27, + 255, 255, 255, 255, 255, 255, 255, 246, 128, 255, 159, 27, 159, 231, 228, 4, 128, 163, 233, 211, 191, 27, 109, + 235, 232, 253, 126, 19, 185, 250, 27, 245, 205, 179, 247, 115, 227, 8, 240, 255, 27, 49, 44, 18, 117, 81, 212, + 157, 249, 27, 30, 97, 100, 155, 94, 165, 71, 248, 191, 27, 54, 6, 163, 221, 146, 40, 193, 142, 75, 226, 111, 195, + 158, 103, 254, 89, 149, 75, 73, 68, 27, 127, 180, 183, 59, 1, 154, 235, 236, 70, 147, 149, 230, 2, 141, 134, 27, + 167, 42, 239, 49, 26, 112, 87, 70, 27, 101, 160, 130, 111, 110, 63, 234, 165, 27, 181, 100, 11, 251, 33, 43, 30, + 36, 76, 169, 195, 73, 103, 7, 219, 235, 62, 98, 73, 247, 206, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3693, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07f6279f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "946ee1" + } + } + ] + } + ] + }, + "cborHex": "d9050a9fbf4407f6279f43946ee1ffff", + "cborBytes": [217, 5, 10, 159, 191, 68, 7, 246, 39, 159, 67, 148, 110, 225, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3694, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7005360994519368573" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11318232881097209880" + } + } + ] + }, + "cborHex": "d8669f1b61380ab561b4437d9f801b9d1270d6baf1f818ffff", + "cborBytes": [ + 216, 102, 159, 27, 97, 56, 10, 181, 97, 180, 67, 125, 159, 128, 27, 157, 18, 112, 214, 186, 241, 248, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3695, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2760" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6137457887456977214" + } + }, + { + "_tag": "ByteArray", + "bytearray": "81b36e044a4d" + }, + { + "_tag": "ByteArray", + "bytearray": "283aaa" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10264317292591900277" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a930ea3ad952" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17126596083422801745" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "11ef530e4b2d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10094148798613627671" + } + }, + { + "_tag": "ByteArray", + "bytearray": "13b3af92b5d4e95d" + }, + { + "_tag": "ByteArray", + "bytearray": "ebdb6b68adc621d2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3693026462225223666" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9595400237055367099" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8348045261392829365" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0480864b2ec3fdb5de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10080752038869922850" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2172b2502ba04f9991f6" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f9f4227609f1b552ca16e55cae13e4681b36e044a4d43283aaaffbf1b8e722e31e6d6e67546a930ea3ad952ffd8669f1bedade465b4032f519f4611ef530e4b2d1b8c159ed9eb4d23174813b3af92b5d4e95d48ebdb6b68adc621d21b334044003b0d4ff2ffffbf1b8529b5ad4f6257bb1b73da36ef7633dbb5490480864b2ec3fdb5de1b8be60691b9a2f42242bc1d4a2172b2502ba04f9991f6ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 159, 66, 39, 96, 159, 27, 85, 44, 161, 110, 85, + 202, 225, 62, 70, 129, 179, 110, 4, 74, 77, 67, 40, 58, 170, 255, 191, 27, 142, 114, 46, 49, 230, 214, 230, 117, + 70, 169, 48, 234, 58, 217, 82, 255, 216, 102, 159, 27, 237, 173, 228, 101, 180, 3, 47, 81, 159, 70, 17, 239, 83, + 14, 75, 45, 27, 140, 21, 158, 217, 235, 77, 35, 23, 72, 19, 179, 175, 146, 181, 212, 233, 93, 72, 235, 219, 107, + 104, 173, 198, 33, 210, 27, 51, 64, 68, 0, 59, 13, 79, 242, 255, 255, 191, 27, 133, 41, 181, 173, 79, 98, 87, 187, + 27, 115, 218, 54, 239, 118, 51, 219, 181, 73, 4, 128, 134, 75, 46, 195, 253, 181, 222, 27, 139, 230, 6, 145, 185, + 162, 244, 34, 66, 188, 29, 74, 33, 114, 178, 80, 43, 160, 79, 153, 145, 246, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3696, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bf9dab7d2d1eded37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9592031682373432563" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "683ca50be0b4f4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "032c21" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d57dae12862660f4b386937d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12228923358964846480" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13417393421160037365" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12680190735569414475" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11889102304676726663" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7856969896830683536" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dcaec520" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7606787807667355026" + } + } + ] + } + ] + }, + "cborHex": "d87a9f9fbf492bf9dab7d2d1eded371b851dbdfe8e2934f347683ca50be0b4f443032c214cd57dae12862660f4b386937d1ba9b5dd00dc938f90ffd8669f1bba34283a67e83bf59f1baff9164a9dd0694b1ba4fe938e1088c7871b6d09907e3f87c99044dcaec520ffff1b6990bd3565c8fd92ffff", + "cborBytes": [ + 216, 122, 159, 159, 191, 73, 43, 249, 218, 183, 210, 209, 237, 237, 55, 27, 133, 29, 189, 254, 142, 41, 52, 243, + 71, 104, 60, 165, 11, 224, 180, 244, 67, 3, 44, 33, 76, 213, 125, 174, 18, 134, 38, 96, 244, 179, 134, 147, 125, + 27, 169, 181, 221, 0, 220, 147, 143, 144, 255, 216, 102, 159, 27, 186, 52, 40, 58, 103, 232, 59, 245, 159, 27, + 175, 249, 22, 74, 157, 208, 105, 75, 27, 164, 254, 147, 142, 16, 136, 199, 135, 27, 109, 9, 144, 126, 63, 135, + 201, 144, 68, 220, 174, 197, 32, 255, 255, 27, 105, 144, 189, 53, 101, 200, 253, 146, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3697, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13754745485792206862" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1a6f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6043445541565251004" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f889" + }, + { + "_tag": "ByteArray", + "bytearray": "61884efbeba3bd2e" + }, + { + "_tag": "ByteArray", + "bytearray": "51" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2297236792436556912" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "919685164f846f5354ac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3502461056029217991" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4293072890849275289" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15266131197244330652" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10914380249777941731" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17126140796891685906" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "498d45d118" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11639230223629195655" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2136327557008484096" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b2" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7491652440212212139" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49ad2294" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8622898596590245097" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74c211a274e842" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d5e79b135e836484b7c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4172979178725953139" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a48d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee962f6ba9a41f8e10117c" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3ba764a3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "28e9508a7df737251c93ff" + }, + { + "_tag": "ByteArray", + "bytearray": "cdef72d70e63b646" + }, + { + "_tag": "ByteArray", + "bytearray": "31fdd3" + }, + { + "_tag": "ByteArray", + "bytearray": "f27269e873c646bb" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8913808591076109431" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2177479252995440788" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9921d2ef69" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3535989342979412576" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d459d4f91e739b7dfd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9098871057151487969" + } + } + } + ] + } + ] + }, + "cborHex": "d905059f9fd8669f1bbee2ac24c08d600e9f421a6f1b53dea1b3546a3dbc42f8894861884efbeba3bd2e4151ffffffbf1b1fe16cb1022384704a919685164f846f5354ac1b309b3dc60c42d4c71b3b940f0c6dee2d991bd3dc3170c241d29c1b9777ab02a38dace31bedac46510c0de41245498d45d118ff9fd8669f1ba186da389a6899879f1b1da5c298275e670041b2ffffbf1b67f7b233af8989ab4449ad22941b77aab09667f9d4e94774c211a274e8424a2d5e79b135e836484b7c1b39e96674230fce7342a48d4bee962f6ba9a41f8e10117cff443ba764a39f4b28e9508a7df737251c93ff48cdef72d70e63b6464331fdd348f27269e873c646bbffff9f1b7bb435afaaeaac77ffbf41091b1e37f5d804938094459921d2ef691b31125b92addad26049d459d4f91e739b7dfd1b7e45af04c298efe1ffff", + "cborBytes": [ + 217, 5, 5, 159, 159, 216, 102, 159, 27, 190, 226, 172, 36, 192, 141, 96, 14, 159, 66, 26, 111, 27, 83, 222, 161, + 179, 84, 106, 61, 188, 66, 248, 137, 72, 97, 136, 78, 251, 235, 163, 189, 46, 65, 81, 255, 255, 255, 191, 27, 31, + 225, 108, 177, 2, 35, 132, 112, 74, 145, 150, 133, 22, 79, 132, 111, 83, 84, 172, 27, 48, 155, 61, 198, 12, 66, + 212, 199, 27, 59, 148, 15, 12, 109, 238, 45, 153, 27, 211, 220, 49, 112, 194, 65, 210, 156, 27, 151, 119, 171, 2, + 163, 141, 172, 227, 27, 237, 172, 70, 81, 12, 13, 228, 18, 69, 73, 141, 69, 209, 24, 255, 159, 216, 102, 159, 27, + 161, 134, 218, 56, 154, 104, 153, 135, 159, 27, 29, 165, 194, 152, 39, 94, 103, 0, 65, 178, 255, 255, 191, 27, + 103, 247, 178, 51, 175, 137, 137, 171, 68, 73, 173, 34, 148, 27, 119, 170, 176, 150, 103, 249, 212, 233, 71, 116, + 194, 17, 162, 116, 232, 66, 74, 45, 94, 121, 177, 53, 232, 54, 72, 75, 124, 27, 57, 233, 102, 116, 35, 15, 206, + 115, 66, 164, 141, 75, 238, 150, 47, 107, 169, 164, 31, 142, 16, 17, 124, 255, 68, 59, 167, 100, 163, 159, 75, 40, + 233, 80, 138, 125, 247, 55, 37, 28, 147, 255, 72, 205, 239, 114, 215, 14, 99, 182, 70, 67, 49, 253, 211, 72, 242, + 114, 105, 232, 115, 198, 70, 187, 255, 255, 159, 27, 123, 180, 53, 175, 170, 234, 172, 119, 255, 191, 65, 9, 27, + 30, 55, 245, 216, 4, 147, 128, 148, 69, 153, 33, 210, 239, 105, 27, 49, 18, 91, 146, 173, 218, 210, 96, 73, 212, + 89, 212, 249, 30, 115, 155, 125, 253, 27, 126, 69, 175, 4, 194, 152, 239, 225, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3698, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9082179038252843639" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8274586075179306869" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4798161381746297337" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7082710210511853830" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2585827558759762685" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4962848627321970967" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11460002837425582081" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b28cee853c65" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4346850090830392262" + } + } + ] + }, + "cborHex": "d9050b9f1b7e0a61b7418f42771b72d53c31da74cf75d8669f1b42967e5addfc49f99f1b624ad76920975906ffff9fbf1b23e2b476e24a8afd1b44df9488418fa117ffd8669f1b9f0a1bdce9b8700180ff46b28cee853c65ff1b3c531d2083d1ebc6ff", + "cborBytes": [ + 217, 5, 11, 159, 27, 126, 10, 97, 183, 65, 143, 66, 119, 27, 114, 213, 60, 49, 218, 116, 207, 117, 216, 102, 159, + 27, 66, 150, 126, 90, 221, 252, 73, 249, 159, 27, 98, 74, 215, 105, 32, 151, 89, 6, 255, 255, 159, 191, 27, 35, + 226, 180, 118, 226, 74, 138, 253, 27, 68, 223, 148, 136, 65, 143, 161, 23, 255, 216, 102, 159, 27, 159, 10, 27, + 220, 233, 184, 112, 1, 128, 255, 70, 178, 140, 238, 133, 60, 101, 255, 27, 60, 83, 29, 32, 131, 209, 235, 198, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3699, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10094771450804344392" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5704" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2b15cc5feb191bba067d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0701fafb" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1962943858110555853" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9927486461841195303" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6619763917717297831" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "37b2" + }, + { + "_tag": "ByteArray", + "bytearray": "b32a34796124da" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14061750289807883825" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d5246f9ba8ed4c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1e145782001ac2032e5147" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ccbf6ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16761999856009396356" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11695791697704122860" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "054807" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ec" + }, + { + "_tag": "ByteArray", + "bytearray": "03d5" + } + ] + } + ] + }, + "cborHex": "d8669f1b8c17d5266df296489fbf4257040e4be2b15cc5feb191bba067d3440701fafbffd8669f1bfffffffffffffffb9fd8669f1b1b3dc709f0b6e6cd9f1b89c58456c68b41271b5bde2035cc7cdaa7ffff4237b247b32a34796124daffff1bc3255f62e03ebe3147d5246f9ba8ed4cd9050b9f4b1e145782001ac2032e5147bf011206443ccbf6ba121be89e960f6696c0841ba24fcc95049df9ec0e1bffffffffffffffeb061bfffffffffffffff043054807ff0c41ec4203d5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 140, 23, 213, 38, 109, 242, 150, 72, 159, 191, 66, 87, 4, 14, 75, 226, 177, 92, 197, 254, 177, + 145, 187, 160, 103, 211, 68, 7, 1, 250, 251, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, + 216, 102, 159, 27, 27, 61, 199, 9, 240, 182, 230, 205, 159, 27, 137, 197, 132, 86, 198, 139, 65, 39, 27, 91, 222, + 32, 53, 204, 124, 218, 167, 255, 255, 66, 55, 178, 71, 179, 42, 52, 121, 97, 36, 218, 255, 255, 27, 195, 37, 95, + 98, 224, 62, 190, 49, 71, 213, 36, 111, 155, 168, 237, 76, 217, 5, 11, 159, 75, 30, 20, 87, 130, 0, 26, 194, 3, + 46, 81, 71, 191, 1, 18, 6, 68, 60, 203, 246, 186, 18, 27, 232, 158, 150, 15, 102, 150, 192, 132, 27, 162, 79, 204, + 149, 4, 157, 249, 236, 14, 27, 255, 255, 255, 255, 255, 255, 255, 235, 6, 27, 255, 255, 255, 255, 255, 255, 255, + 240, 67, 5, 72, 7, 255, 12, 65, 236, 66, 3, 213, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3700, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1696870036566405517" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17621142589093233685" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3282b1fa5a67fb22cd63ef74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b807417f256c5826592" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58df6e2ad08aee039e5f3162" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9074506604267738464" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17507539215072324738" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b178c7e4ecf8b718d9fd8669f1bf48adfd2ef68c4159fbf4c3282b1fa5a67fb22cd63ef744a5b807417f256c58265924c58df6e2ad08aee039e5f31621b7def1fad83509560ffd8669f1bf2f746283d9b6c8280ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 23, 140, 126, 78, 207, 139, 113, 141, 159, 216, 102, 159, 27, 244, 138, 223, 210, 239, 104, + 196, 21, 159, 191, 76, 50, 130, 177, 250, 90, 103, 251, 34, 205, 99, 239, 116, 74, 91, 128, 116, 23, 242, 86, 197, + 130, 101, 146, 76, 88, 223, 110, 42, 208, 138, 238, 3, 158, 95, 49, 98, 27, 125, 239, 31, 173, 131, 80, 149, 96, + 255, 216, 102, 159, 27, 242, 247, 70, 40, 61, 155, 108, 130, 128, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3701, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3114257000121698587" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14415563940835232991" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d905099f1b2b38103dd787091b9f1bc80e5f06fa6a0cdfffa0ff", + "cborBytes": [ + 217, 5, 9, 159, 27, 43, 56, 16, 61, 215, 135, 9, 27, 159, 27, 200, 14, 95, 6, 250, 106, 12, 223, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3702, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3716363649181979138" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a0cc" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17061007684222660673" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9736801192887205126" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03b447" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2165548125057020342" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64919e66fc8894" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5700997483246928468" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12c6141f5c8aec180fc687" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3bb2bd1b92b2bb41d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3161825266886297059" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d922f1b51801" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "591752505042339537" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f101" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8477057681a2b9f4c" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13233215076383534014" + } + } + ] + }, + "cborHex": "d8669f1b33932d0c7daa92029f9f42a0cc9f1becc4e018804d30411b87201118dea43d06ffbf4303b4471b1e0d928bd20971b64764919e66fc88941b4f1e03017e54425441a54b12c6141f5c8aec180fc68749b3bb2bd1b92b2bb41d1b2be10f54029cc5e346d922f1b518011b083653c4a1ff06d142f10149f8477057681a2b9f4cffff1bb7a5d2ffd82f2bbeffff", + "cborBytes": [ + 216, 102, 159, 27, 51, 147, 45, 12, 125, 170, 146, 2, 159, 159, 66, 160, 204, 159, 27, 236, 196, 224, 24, 128, 77, + 48, 65, 27, 135, 32, 17, 24, 222, 164, 61, 6, 255, 191, 67, 3, 180, 71, 27, 30, 13, 146, 139, 210, 9, 113, 182, + 71, 100, 145, 158, 102, 252, 136, 148, 27, 79, 30, 3, 1, 126, 84, 66, 84, 65, 165, 75, 18, 198, 20, 31, 92, 138, + 236, 24, 15, 198, 135, 73, 179, 187, 43, 209, 185, 43, 43, 180, 29, 27, 43, 225, 15, 84, 2, 156, 197, 227, 70, + 217, 34, 241, 181, 24, 1, 27, 8, 54, 83, 196, 161, 255, 6, 209, 66, 241, 1, 73, 248, 71, 112, 87, 104, 26, 43, + 159, 76, 255, 255, 27, 183, 165, 210, 255, 216, 47, 43, 190, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3703, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d3d084ce53123e3c7a70e6d8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14214110919826320233" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12394003501800184556" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8863" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17075465533453551029" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4170187847548249692" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9ab0490e2141d48a" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0d0ca2" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "07f8070103" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f9f4cd3d084ce53123e3c7a70e6d8d8669f1bc542aa926e3fab699f1bac005884c5bf5aecffff9f4288631becf83d6ed7ecc5b51b39df7bc0b3c3a65c489ab0490e2141d48affa0430d0ca2ff4507f8070103ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 159, 76, 211, 208, 132, 206, 83, 18, 62, 60, 122, + 112, 230, 216, 216, 102, 159, 27, 197, 66, 170, 146, 110, 63, 171, 105, 159, 27, 172, 0, 88, 132, 197, 191, 90, + 236, 255, 255, 159, 66, 136, 99, 27, 236, 248, 61, 110, 215, 236, 197, 181, 27, 57, 223, 123, 192, 179, 195, 166, + 92, 72, 154, 176, 73, 14, 33, 65, 212, 138, 255, 160, 67, 13, 12, 162, 255, 69, 7, 248, 7, 1, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3704, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0997fa14846c2b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5332165074221551568" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3316344189123336207" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f5bdf5161121" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "577141353812209282" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17884164434731131330" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4682408158212614661" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5971310684630829138" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8954849096795604394" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "122c9894" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11272440113009131803" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a14563095" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12104950493081951777" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4028277407268303240" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15578951023245635792" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "629508327130578862" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9f470997fa14846c2b1b49ffa7e24cb84fd01b2e06057821a0980f9f9f46f5bdf5161121ffffbf1b08026b00e32a2e821bf83150cc8cd2e1c21b40fb416953a76a051b52de5b6e28ea48521b7c4603cf07bac5aa44122c98941b9c6fc08f0fc6011b450a145630951ba7fd6c56b3d6de211b37e750f58cf571881bd8338d6a31c3b0d01b08bc767cfdc4bfaeffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 71, 9, 151, 250, 20, 132, 108, 43, 27, 73, 255, + 167, 226, 76, 184, 79, 208, 27, 46, 6, 5, 120, 33, 160, 152, 15, 159, 159, 70, 245, 189, 245, 22, 17, 33, 255, + 255, 191, 27, 8, 2, 107, 0, 227, 42, 46, 130, 27, 248, 49, 80, 204, 140, 210, 225, 194, 27, 64, 251, 65, 105, 83, + 167, 106, 5, 27, 82, 222, 91, 110, 40, 234, 72, 82, 27, 124, 70, 3, 207, 7, 186, 197, 170, 68, 18, 44, 152, 148, + 27, 156, 111, 192, 143, 15, 198, 1, 27, 69, 10, 20, 86, 48, 149, 27, 167, 253, 108, 86, 179, 214, 222, 33, 27, 55, + 231, 80, 245, 140, 245, 113, 136, 27, 216, 51, 141, 106, 49, 195, 176, 208, 27, 8, 188, 118, 124, 253, 196, 191, + 174, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3705, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5968171463815933549" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "ByteArray", + "bytearray": "272f647c641a95" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14107367356336720609" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e3a19d78ade32b29a4a" + }, + { + "_tag": "ByteArray", + "bytearray": "69" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "39d2a271284d01a3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3124442537633672259" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18137489449289057178" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "402155705111680283" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8283e94f2717c2252dc" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c3403bb2bc70291" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4358449918185986178" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28f521747c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "968e6b29" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "400b8121c96080ce19784e" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0501771cfc59" + } + ] + }, + "cborHex": "d8669f1b52d334535b5f2e6d9f801bfffffffffffffff947272f647c641a959f1bc3c76fddd6644ae19f4a8e3a19d78ade32b29a4a4169ffd9050b9f4839d2a271284d01a31b2b5c3fef18c66c431bfbb54e8ebe45039a1b0594be7bab94151b4ac8283e94f2717c2252dcffbf482c3403bb2bc702911b3c7c531bc8ce5882415e4528f521747c44968e6b294b400b8121c96080ce19784effff460501771cfc59ffff", + "cborBytes": [ + 216, 102, 159, 27, 82, 211, 52, 83, 91, 95, 46, 109, 159, 128, 27, 255, 255, 255, 255, 255, 255, 255, 249, 71, 39, + 47, 100, 124, 100, 26, 149, 159, 27, 195, 199, 111, 221, 214, 100, 74, 225, 159, 74, 142, 58, 25, 215, 138, 222, + 50, 178, 154, 74, 65, 105, 255, 217, 5, 11, 159, 72, 57, 210, 162, 113, 40, 77, 1, 163, 27, 43, 92, 63, 239, 24, + 198, 108, 67, 27, 251, 181, 78, 142, 190, 69, 3, 154, 27, 5, 148, 190, 123, 171, 148, 21, 27, 74, 200, 40, 62, + 148, 242, 113, 124, 34, 82, 220, 255, 191, 72, 44, 52, 3, 187, 43, 199, 2, 145, 27, 60, 124, 83, 27, 200, 206, 88, + 130, 65, 94, 69, 40, 245, 33, 116, 124, 68, 150, 142, 107, 41, 75, 64, 11, 129, 33, 201, 96, 128, 206, 25, 120, + 78, 255, 255, 70, 5, 1, 119, 28, 252, 89, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3706, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9288016130526466353" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "465576985138853814" + } + } + ] + }, + "cborHex": "d8669f1b80e5a975f020d1319f1b06760fcd1ecc77b6ffff", + "cborBytes": [ + 216, 102, 159, 27, 128, 229, 169, 117, 240, 32, 209, 49, 159, 27, 6, 118, 15, 205, 30, 204, 119, 182, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3707, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "06" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3648803617829597072" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b77ff60a0abe119c9a0e3d" + }, + { + "_tag": "ByteArray", + "bytearray": "93bf1cc3ad01f26b" + }, + { + "_tag": "ByteArray", + "bytearray": "db73d8494770285c8d" + }, + { + "_tag": "ByteArray", + "bytearray": "8385add6d2998f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6133232281614344427" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5270a7" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6355235964602427237" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2345205484512938010" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2286031944006019939" + } + } + ] + }, + "cborHex": "d87a9f4106d8669f1b32a3278ee7e4af909f9f4bb77ff60a0abe119c9a0e3d4893bf1cc3ad01f26b49db73d8494770285c8d478385add6d2998f1b551d9e43ce94e0ebff435270a7ffff1b5832557035ea27651b208bd7f675b1081a1b1fb99df0efacab63ff", + "cborBytes": [ + 216, 122, 159, 65, 6, 216, 102, 159, 27, 50, 163, 39, 142, 231, 228, 175, 144, 159, 159, 75, 183, 127, 246, 10, + 10, 190, 17, 156, 154, 14, 61, 72, 147, 191, 28, 195, 173, 1, 242, 107, 73, 219, 115, 216, 73, 71, 112, 40, 92, + 141, 71, 131, 133, 173, 214, 210, 153, 143, 27, 85, 29, 158, 67, 206, 148, 224, 235, 255, 67, 82, 112, 167, 255, + 255, 27, 88, 50, 85, 112, 53, 234, 39, 101, 27, 32, 139, 215, 246, 117, 177, 8, 26, 27, 31, 185, 157, 240, 239, + 172, 171, 99, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3708, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2882855833762058867" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5210545050477008526" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f1aace8070410c748da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13518364670426527811" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b86a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9000603" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39fd8669f1bfffffffffffffff69f1b2801f61b560cd2739f1b484f931de3da168eff1bfffffffffffffff1bf4a2f1aace8070410c748da1bbb9ae10b5cf6b84342b86a44d9000603ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 246, 159, 27, 40, 1, 246, 27, 86, 12, 210, 115, 159, 27, 72, 79, 147, 29, 227, 218, 22, 142, 255, 27, 255, + 255, 255, 255, 255, 255, 255, 241, 191, 74, 47, 26, 172, 232, 7, 4, 16, 199, 72, 218, 27, 187, 154, 225, 11, 92, + 246, 184, 67, 66, 184, 106, 68, 217, 0, 6, 3, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3709, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9458471354373257238" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b01f4e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2484575876386544936" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10688983034372097916" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9cf3e2" + }, + { + "_tag": "ByteArray", + "bytearray": "348a2eac" + }, + { + "_tag": "ByteArray", + "bytearray": "10931271bc836fc8" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "17f93840d25e984828" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17955323709878852185" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ae519d27c2ecc791a91e0432" + } + ] + }, + "cborHex": "d8669f1b83433d956ba038169f43b01f4e9fd8669f1b227afc9881865d289f1b9456e56fe5ed077cffff9f439cf3e244348a2eac4810931271bc836fc8ff4917f93840d25e9848289f1bf92e1fc8627a5a59ffff4cae519d27c2ecc791a91e0432ffff", + "cborBytes": [ + 216, 102, 159, 27, 131, 67, 61, 149, 107, 160, 56, 22, 159, 67, 176, 31, 78, 159, 216, 102, 159, 27, 34, 122, 252, + 152, 129, 134, 93, 40, 159, 27, 148, 86, 229, 111, 229, 237, 7, 124, 255, 255, 159, 67, 156, 243, 226, 68, 52, + 138, 46, 172, 72, 16, 147, 18, 113, 188, 131, 111, 200, 255, 73, 23, 249, 56, 64, 210, 94, 152, 72, 40, 159, 27, + 249, 46, 31, 200, 98, 122, 90, 89, 255, 255, 76, 174, 81, 157, 39, 194, 236, 199, 145, 169, 30, 4, 50, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3710, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "40a7b3def70fa655aae94b28" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7092708951527742651" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f4c40a7b3def70fa655aae94b281b626e5d366f0b5cbbffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 76, 64, 167, 179, 222, 247, 15, 166, 85, 170, 233, + 75, 40, 27, 98, 110, 93, 54, 111, 11, 92, 187, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3711, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2401683761320819808" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5f0207077b04050606" + }, + { + "_tag": "ByteArray", + "bytearray": "0200240751025814" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8988522d1663c3b53c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13012218460842297370" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b21547ea80059fc609f495f0207077b04050606480200240751025814bf498988522d1663c3b53c1bb494afbf9a49081affffff", + "cborBytes": [ + 216, 102, 159, 27, 33, 84, 126, 168, 0, 89, 252, 96, 159, 73, 95, 2, 7, 7, 123, 4, 5, 6, 6, 72, 2, 0, 36, 7, 81, + 2, 88, 20, 191, 73, 137, 136, 82, 45, 22, 99, 195, 181, 60, 27, 180, 148, 175, 191, 154, 73, 8, 26, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3712, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7957546939158686192" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9247129086018151116" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7396494388171985891" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d3874e89645555c4b8a30d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11706626697501572073" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0ad33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b757998469" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10943890215461655077" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1040187091259907314" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "506707776413354931" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16554863934983387603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16987413684621828619" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13399859254057640329" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b54c8896097a42" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15191619026439896559" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16900306059356693611" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4437883952043049454" + } + }, + { + "_tag": "ByteArray", + "bytearray": "185c3947cda4b70e" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d37" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d739851e7119" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "daed8b7c3536" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2608301783095599861" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d8" + } + ] + }, + "cborHex": "d8669f1b6e6ee2c7c00ce9f09fbf1b805466e90c4b62cc1b66a5a0752e2953e34c7d3874e89645555c4b8a30d31ba2764af4feaf7be943f0ad3345b757998469ff9fd8669f1b97e0822af17712259f1b0e6f7ca5fa7e5cf21b07083009ba0bcbb3ffffd8669f1be5beb109959c39d39f1bebbf6abe347e620b1bb9f5dcfefe56218947b54c8896097a421bd2d379041203fdef1bea89f2d1bf56646bffff9f1b3d9687f103eec1ee48185c3947cda4b70effffbf429d3746d739851e711946daed8b7c35361b24328ca7006e62f5ff41d8ffff", + "cborBytes": [ + 216, 102, 159, 27, 110, 110, 226, 199, 192, 12, 233, 240, 159, 191, 27, 128, 84, 102, 233, 12, 75, 98, 204, 27, + 102, 165, 160, 117, 46, 41, 83, 227, 76, 125, 56, 116, 232, 150, 69, 85, 92, 75, 138, 48, 211, 27, 162, 118, 74, + 244, 254, 175, 123, 233, 67, 240, 173, 51, 69, 183, 87, 153, 132, 105, 255, 159, 216, 102, 159, 27, 151, 224, 130, + 42, 241, 119, 18, 37, 159, 27, 14, 111, 124, 165, 250, 126, 92, 242, 27, 7, 8, 48, 9, 186, 11, 203, 179, 255, 255, + 216, 102, 159, 27, 229, 190, 177, 9, 149, 156, 57, 211, 159, 27, 235, 191, 106, 190, 52, 126, 98, 11, 27, 185, + 245, 220, 254, 254, 86, 33, 137, 71, 181, 76, 136, 150, 9, 122, 66, 27, 210, 211, 121, 4, 18, 3, 253, 239, 27, + 234, 137, 242, 209, 191, 86, 100, 107, 255, 255, 159, 27, 61, 150, 135, 241, 3, 238, 193, 238, 72, 24, 92, 57, 71, + 205, 164, 183, 14, 255, 255, 191, 66, 157, 55, 70, 215, 57, 133, 30, 113, 25, 70, 218, 237, 139, 124, 53, 54, 27, + 36, 50, 140, 167, 0, 110, 98, 245, 255, 65, 216, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3713, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "13d8c0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10946102800767407940" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d77d034fc66dcd6dd" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16435783087649362733" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11104474241517191894" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7c1e359a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11529708060323162768" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f4313d8c01b97e85e809aa65744492d77d034fc66dcd6ddd8669f1be417a1a340b6932d9f1b9a1b047d171b82d6447c1e359a1ba001c064d3852a90ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 67, 19, 216, 192, 27, 151, 232, 94, 128, 154, 166, + 87, 68, 73, 45, 119, 208, 52, 252, 102, 220, 214, 221, 216, 102, 159, 27, 228, 23, 161, 163, 64, 182, 147, 45, + 159, 27, 154, 27, 4, 125, 23, 27, 130, 214, 68, 124, 30, 53, 154, 27, 160, 1, 192, 100, 211, 133, 42, 144, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3714, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9105393991960400995" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9816805709012196659" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff0c44" + }, + { + "_tag": "ByteArray", + "bytearray": "831c1d" + }, + { + "_tag": "ByteArray", + "bytearray": "1dbe6998a8d5db327f3c" + }, + { + "_tag": "ByteArray", + "bytearray": "453a7d0ff3fb5c409a2d" + } + ] + } + ] + }, + "cborHex": "d8669f1b7e5cdb97dec694639f1b883c4cc7dab2dd339f43ff0c4443831c1d4a1dbe6998a8d5db327f3c4a453a7d0ff3fb5c409a2dffffff", + "cborBytes": [ + 216, 102, 159, 27, 126, 92, 219, 151, 222, 198, 148, 99, 159, 27, 136, 60, 76, 199, 218, 178, 221, 51, 159, 67, + 255, 12, 68, 67, 131, 28, 29, 74, 29, 190, 105, 152, 168, 213, 219, 50, 127, 60, 74, 69, 58, 125, 15, 243, 251, + 92, 64, 154, 45, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3715, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9945217049843269464" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "447408989267192442" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8367357157566812899" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9505433587786866252" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e27a86" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6058112353229368917" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14081531904586391407" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4617813072564479891" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83c69a2b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5270442105860896502" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15080389733386212878" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12258158195479919068" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2239a58373" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "399e48" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2f16f51a19647aac3e07" + }, + { + "_tag": "ByteArray", + "bytearray": "afa155299e973b5b" + } + ] + }, + "cborHex": "d905039fd8669f1b8a048236fe10ff5880ff9fd8669f1b0635841af2966a7a9f1b741ed300ad9792e31b83ea157c741a5e4c43e27a86ffffbf1b5412bd1687a46e551bc36ba6a8fa339f6fff80bf1b4015c485f55c67934483c69a2b1b49245f2bd919b6f61bd1484e902ceed60e1baa1db9eeaa1fb9dc452239a58373ff43399e48ff4a2f16f51a19647aac3e0748afa155299e973b5bff", + "cborBytes": [ + 217, 5, 3, 159, 216, 102, 159, 27, 138, 4, 130, 54, 254, 16, 255, 88, 128, 255, 159, 216, 102, 159, 27, 6, 53, + 132, 26, 242, 150, 106, 122, 159, 27, 116, 30, 211, 0, 173, 151, 146, 227, 27, 131, 234, 21, 124, 116, 26, 94, 76, + 67, 226, 122, 134, 255, 255, 191, 27, 84, 18, 189, 22, 135, 164, 110, 85, 27, 195, 107, 166, 168, 250, 51, 159, + 111, 255, 128, 191, 27, 64, 21, 196, 133, 245, 92, 103, 147, 68, 131, 198, 154, 43, 27, 73, 36, 95, 43, 217, 25, + 182, 246, 27, 209, 72, 78, 144, 44, 238, 214, 14, 27, 170, 29, 185, 238, 170, 31, 185, 220, 69, 34, 57, 165, 131, + 115, 255, 67, 57, 158, 72, 255, 74, 47, 22, 245, 26, 25, 100, 122, 172, 62, 7, 72, 175, 161, 85, 41, 158, 151, 59, + 91, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3716, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f27eba36e09143c7" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f48f27eba36e09143c7ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 72, 242, 126, 186, 54, 224, 145, 67, 199, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3717, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "926211115961949189" + }, + "fields": [] + }, + "cborHex": "d8669f1b0cda901a49ee1c0580ff", + "cborBytes": [216, 102, 159, 27, 12, 218, 144, 26, 73, 238, 28, 5, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3718, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "531997437229182783" + }, + "fields": [] + }, + "cborHex": "d8669f1b076208d9bb76af3f80ff", + "cborBytes": [216, 102, 159, 27, 7, 98, 8, 217, 187, 118, 175, 63, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3719, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16754684292629411579" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1607636819921776377" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6133079977085213843" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3485622105319236463" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "007e2a87fc61" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4493887862389264968" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5358ac6af650" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6784932897534196407" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6356934648786963352" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9613339610298794530" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2d07bff647e4216bec6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17206692423194796144" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f231f45b79d1d92fc0a6" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14537713839370327871" + } + }, + { + "_tag": "ByteArray", + "bytearray": "063f3904f74686" + }, + { + "_tag": "ByteArray", + "bytearray": "9cb5f651" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8148197716527420345" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "785903825892005998" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e346306dcac021e4f461af31" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10626623967051181084" + } + }, + { + "_tag": "ByteArray", + "bytearray": "47cbe8" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3729320843499059493" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "743307094793273517" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11065710093444717657" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04c4c985bc2b60" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12641707614130086439" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12442156096192748884" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13109026452823519590" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7418816005727426884" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16624932079842094573" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8024503378655487186" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17405311642897403475" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6223316910594673113" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "93264bd2cdee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d15d251b0d357f9d645d" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "92eaeab5eee3e0" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9fd8669f1be884989811fe36fb9fbf1b164f792b8b46aef91b551d13bea5399c931b305f6ad650cd636f46007e2a87fc611b3e5d7f338226d248465358ac6af6501b5e28ec85ae633ab71b58385e61f151cb981b85697171210d42224ad2d07bff647e4216bec61beeca73980bee60704af231f45b79d1d92fc0a6ff9f1bc9c055b679f2d73f47063f3904f74686449cb5f6511b711436a6f54413b91b0ae8175da1e9d86eff9f4ce346306dcac021e4f461af311b93795a321dbcec1c4347cbe8ffbf1b33c1358c6238b9251b0a50c1dd502e40adffbf1b99914cb38b3a1c594704c4c985bc2b601baf705e18ae9322271bacab6b0c51879d541bb5ec9e1aafbeb1661b66f4edd9c35d99441be6b79fa4d9fbeded1b6f5cc34ea7aea4d21bf18c16b8cfdece531b565da9c1f4ad49d9ffffffbf4693264bd2cdee4ad15d251b0d357f9d645dff4792eaeab5eee3e0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 216, 102, 159, 27, 232, 132, 152, 152, 17, 254, + 54, 251, 159, 191, 27, 22, 79, 121, 43, 139, 70, 174, 249, 27, 85, 29, 19, 190, 165, 57, 156, 147, 27, 48, 95, + 106, 214, 80, 205, 99, 111, 70, 0, 126, 42, 135, 252, 97, 27, 62, 93, 127, 51, 130, 38, 210, 72, 70, 83, 88, 172, + 106, 246, 80, 27, 94, 40, 236, 133, 174, 99, 58, 183, 27, 88, 56, 94, 97, 241, 81, 203, 152, 27, 133, 105, 113, + 113, 33, 13, 66, 34, 74, 210, 208, 123, 255, 100, 126, 66, 22, 190, 198, 27, 238, 202, 115, 152, 11, 238, 96, 112, + 74, 242, 49, 244, 91, 121, 209, 217, 47, 192, 166, 255, 159, 27, 201, 192, 85, 182, 121, 242, 215, 63, 71, 6, 63, + 57, 4, 247, 70, 134, 68, 156, 181, 246, 81, 27, 113, 20, 54, 166, 245, 68, 19, 185, 27, 10, 232, 23, 93, 161, 233, + 216, 110, 255, 159, 76, 227, 70, 48, 109, 202, 192, 33, 228, 244, 97, 175, 49, 27, 147, 121, 90, 50, 29, 188, 236, + 28, 67, 71, 203, 232, 255, 191, 27, 51, 193, 53, 140, 98, 56, 185, 37, 27, 10, 80, 193, 221, 80, 46, 64, 173, 255, + 191, 27, 153, 145, 76, 179, 139, 58, 28, 89, 71, 4, 196, 201, 133, 188, 43, 96, 27, 175, 112, 94, 24, 174, 147, + 34, 39, 27, 172, 171, 107, 12, 81, 135, 157, 84, 27, 181, 236, 158, 26, 175, 190, 177, 102, 27, 102, 244, 237, + 217, 195, 93, 153, 68, 27, 230, 183, 159, 164, 217, 251, 237, 237, 27, 111, 92, 195, 78, 167, 174, 164, 210, 27, + 241, 140, 22, 184, 207, 222, 206, 83, 27, 86, 93, 169, 193, 244, 173, 73, 217, 255, 255, 255, 191, 70, 147, 38, + 75, 210, 205, 238, 74, 209, 93, 37, 27, 13, 53, 127, 157, 100, 93, 255, 71, 146, 234, 234, 181, 238, 227, 224, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3720, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5992750795611627144" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c0ea91fea7e7f34" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38c20bb53bf40e07756d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7301149273324429249" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ead23fb28cd33b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a9ef9500e585987a513" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f779d2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10691321783949801778" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc5df8a5a3f4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d548f4396d7954885b3c19" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6191269625008606023" + } + }, + { + "_tag": "ByteArray", + "bytearray": "71ef0b499634058b38c7a86a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1885148459368224721" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e9c9a4165de7febd" + }, + { + "_tag": "ByteArray", + "bytearray": "7b9ba45d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3b5774e123a69508192ffc9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e356f47222a118b" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18301160719825261" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "54800e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13000283303223324183" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2173220309307348356" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16595657627258304629" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17999299061119228730" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11126675202804696475" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b532a8718ffdede889fbf484c0ea91fea7e7f344a38c20bb53bf40e07756d41c11b6552e494b89a9fc147ead23fb28cd33b4a8a9ef9500e585987a51343f779d21b945f348477b9393246fc5df8a5a3f44bd548f4396d7954885b3c19ff9fd905099f1b55ebceebd34dcb474c71ef0b499634058b38c7a86a1b1a2964892d8497d148e9c9a4165de7febd447b9ba45dffbf4ce3b5774e123a69508192ffc9487e356f47222a118bffbf1b004104cf07aeb96d13ffff4354800ebf1bb46a48c92c116e171b1e28d45b6aedd584ffd8669f1be64f9eaf36bbb8759f80bf1bf9ca5b21b8089b3a1b9a69e4253252459bffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 83, 42, 135, 24, 255, 222, 222, 136, 159, 191, 72, 76, 14, 169, 31, 234, 126, 127, 52, 74, 56, + 194, 11, 181, 59, 244, 14, 7, 117, 109, 65, 193, 27, 101, 82, 228, 148, 184, 154, 159, 193, 71, 234, 210, 63, 178, + 140, 211, 59, 74, 138, 158, 249, 80, 14, 88, 89, 135, 165, 19, 67, 247, 121, 210, 27, 148, 95, 52, 132, 119, 185, + 57, 50, 70, 252, 93, 248, 165, 163, 244, 75, 213, 72, 244, 57, 109, 121, 84, 136, 91, 60, 25, 255, 159, 217, 5, 9, + 159, 27, 85, 235, 206, 235, 211, 77, 203, 71, 76, 113, 239, 11, 73, 150, 52, 5, 139, 56, 199, 168, 106, 27, 26, + 41, 100, 137, 45, 132, 151, 209, 72, 233, 201, 164, 22, 93, 231, 254, 189, 68, 123, 155, 164, 93, 255, 191, 76, + 227, 181, 119, 78, 18, 58, 105, 80, 129, 146, 255, 201, 72, 126, 53, 111, 71, 34, 42, 17, 139, 255, 191, 27, 0, + 65, 4, 207, 7, 174, 185, 109, 19, 255, 255, 67, 84, 128, 14, 191, 27, 180, 106, 72, 201, 44, 17, 110, 23, 27, 30, + 40, 212, 91, 106, 237, 213, 132, 255, 216, 102, 159, 27, 230, 79, 158, 175, 54, 187, 184, 117, 159, 128, 191, 27, + 249, 202, 91, 33, 184, 8, 155, 58, 27, 154, 105, 228, 37, 50, 82, 69, 155, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3721, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1583671302111482677" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aeca62ec9e19dc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "60e852feabbde2f35b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0ae72a7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "799ad86f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6803681217537564685" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9668d3a424d9f1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac2325fd036217575631155e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4247800e87e905896" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb902403596ecce3f3814ba9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37c8697f7ae4dd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de47a43eb69ad9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1229742129557695478" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12176962729856309859" + } + } + ] + } + ] + }, + "cborHex": "d905049f9f1b15fa54a89b55d335ff47aeca62ec9e19dcbf4960e852feabbde2f35b44b0ae72a744799ad86f1b5e6b88051852e00d479668d3a424d9f141304cac2325fd036217575631155e49b4247800e87e9058964ccb902403596ecce3f3814ba94737c8697f7ae4dd47de47a43eb69ad91b1110ebf38d9e6bf6ff9f1ba8fd431624419a63ffff", + "cborBytes": [ + 217, 5, 4, 159, 159, 27, 21, 250, 84, 168, 155, 85, 211, 53, 255, 71, 174, 202, 98, 236, 158, 25, 220, 191, 73, + 96, 232, 82, 254, 171, 189, 226, 243, 91, 68, 176, 174, 114, 167, 68, 121, 154, 216, 111, 27, 94, 107, 136, 5, 24, + 82, 224, 13, 71, 150, 104, 211, 164, 36, 217, 241, 65, 48, 76, 172, 35, 37, 253, 3, 98, 23, 87, 86, 49, 21, 94, + 73, 180, 36, 120, 0, 232, 126, 144, 88, 150, 76, 203, 144, 36, 3, 89, 110, 204, 227, 243, 129, 75, 169, 71, 55, + 200, 105, 127, 122, 228, 221, 71, 222, 71, 164, 62, 182, 154, 217, 27, 17, 16, 235, 243, 141, 158, 107, 246, 255, + 159, 27, 168, 253, 67, 22, 36, 65, 154, 99, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3722, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5459345641467288366" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2584714919184877748" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eaeb29b8" + }, + { + "_tag": "ByteArray", + "bytearray": "a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8566763693335122896" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b4bc37defa1bc1b2e9f9fd8669f1b23dec0864baac8b49f44eaeb29b841a81b76e34230bff413d0ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 75, 195, 125, 239, 161, 188, 27, 46, 159, 159, 216, 102, 159, 27, 35, 222, 192, 134, 75, 170, + 200, 180, 159, 68, 234, 235, 41, 184, 65, 168, 27, 118, 227, 66, 48, 191, 244, 19, 208, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3723, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16929288147259453628" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6981865681082620480" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15142373789354695646" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b72dbc4e7bdeb598d" + }, + { + "_tag": "ByteArray", + "bytearray": "15c0" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12013180944943262908" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14162691522328027711" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "088431" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13110577373776443265" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13984085704947516450" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9824512063901727949" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "696793418007059797" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17514883998057024359" + } + } + ] + } + ] + }, + "cborHex": "d8669f1beaf0e9dfeda170bc9f9fd8669f1b60e491d86e6b9a409f1bd22484bbd2ac1bde498b72dbc4e7bdeb598d4215c0ffffffd8669f1ba6b7646bbdd5acbc9fbf1bc48bfce703cc623f43088431ff9f1bb5f220a89c37f7811bc21173db9803c4221b8857adab6c66fccd1b09ab81ec02241d55ff1bf3115e32ca5ccb67ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 234, 240, 233, 223, 237, 161, 112, 188, 159, 159, 216, 102, 159, 27, 96, 228, 145, 216, 110, + 107, 154, 64, 159, 27, 210, 36, 132, 187, 210, 172, 27, 222, 73, 139, 114, 219, 196, 231, 189, 235, 89, 141, 66, + 21, 192, 255, 255, 255, 216, 102, 159, 27, 166, 183, 100, 107, 189, 213, 172, 188, 159, 191, 27, 196, 139, 252, + 231, 3, 204, 98, 63, 67, 8, 132, 49, 255, 159, 27, 181, 242, 32, 168, 156, 55, 247, 129, 27, 194, 17, 115, 219, + 152, 3, 196, 34, 27, 136, 87, 173, 171, 108, 102, 252, 205, 27, 9, 171, 129, 236, 2, 36, 29, 85, 255, 27, 243, 17, + 94, 50, 202, 92, 203, 103, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3724, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3706093016714667395" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "44cd506bb0f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5533948453157761513" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "584302fe0d4b6105" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1a5387002a5bc131f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1480061b309050207" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d6e687874158a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0257caf151a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "793907" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd6afe3bf262c5ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9085010290894864232" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "652471629972594675" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11477566445418951680" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d5d4685ef4812ef1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18095242169566346712" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1686dfcfe23694d9f603" + }, + { + "_tag": "ByteArray", + "bytearray": "ec914c9a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "909983fb05169db132f6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3228688381884458124" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "246608156210248178" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16964850528398038743" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2176744863232098909" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c152c324419c717fd8aca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17316181508767944993" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73feced671d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11192424350293287192" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "cd4fe337e6fedce01772" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8592758054910725184" + } + } + ] + }, + "cborHex": "d8669f1b336eaff685d565839fbf4644cd506bb0f61b4ccc88cc4bca71e948584302fe0d4b610549c1a5387002a5bc131f49a1480061b309050207477d6e687874158a46b0257caf151a4379390748cd6afe3bf262c5ea1b7e1470b9a18e7f68ff1b090e0b7d92895ff31b9f4881df1123b4009f9f48d5d4685ef4812ef11bfb1f36e169abbdd84a1686dfcfe23694d9f60344ec914c9aff4a909983fb05169db132f6bf1b2cce9afa1ca7648c1b036c20cfbda039f21beb6f41ac04c356d71b1e3559eb939b025d4b3c152c324419c717fd8aca1bf04f6f56504d11214673feced671d71b9b537aa586a9e118ffa04acd4fe337e6fedce01772ff1b773f9becafd48c40ffff", + "cborBytes": [ + 216, 102, 159, 27, 51, 110, 175, 246, 133, 213, 101, 131, 159, 191, 70, 68, 205, 80, 107, 176, 246, 27, 76, 204, + 136, 204, 75, 202, 113, 233, 72, 88, 67, 2, 254, 13, 75, 97, 5, 73, 193, 165, 56, 112, 2, 165, 188, 19, 31, 73, + 161, 72, 0, 97, 179, 9, 5, 2, 7, 71, 125, 110, 104, 120, 116, 21, 138, 70, 176, 37, 124, 175, 21, 26, 67, 121, 57, + 7, 72, 205, 106, 254, 59, 242, 98, 197, 234, 27, 126, 20, 112, 185, 161, 142, 127, 104, 255, 27, 9, 14, 11, 125, + 146, 137, 95, 243, 27, 159, 72, 129, 223, 17, 35, 180, 0, 159, 159, 72, 213, 212, 104, 94, 244, 129, 46, 241, 27, + 251, 31, 54, 225, 105, 171, 189, 216, 74, 22, 134, 223, 207, 226, 54, 148, 217, 246, 3, 68, 236, 145, 76, 154, + 255, 74, 144, 153, 131, 251, 5, 22, 157, 177, 50, 246, 191, 27, 44, 206, 154, 250, 28, 167, 100, 140, 27, 3, 108, + 32, 207, 189, 160, 57, 242, 27, 235, 111, 65, 172, 4, 195, 86, 215, 27, 30, 53, 89, 235, 147, 155, 2, 93, 75, 60, + 21, 44, 50, 68, 25, 199, 23, 253, 138, 202, 27, 240, 79, 111, 86, 80, 77, 17, 33, 70, 115, 254, 206, 214, 113, + 215, 27, 155, 83, 122, 165, 134, 169, 225, 24, 255, 160, 74, 205, 79, 227, 55, 230, 254, 220, 224, 23, 114, 255, + 27, 119, 63, 155, 236, 175, 212, 140, 64, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3725, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18099351359022466232" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d51fb9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1456157780955619530" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c00c5716" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17e4a33789203a97266d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c28bd222d69e81392a40ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cf84301c7c1a9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3c7e2f8c211e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12377717741352847294" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15780261780725017006" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb3a2f14f009a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14041231367726678310" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1933fbbfcfefcf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d06bd9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a9e66775553ead8c6cf07c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc3ee02187a9486b1d6f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9d94b63cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2662099308317099378" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f27e475ab13c6c28743ff8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10915063748478488081" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14727974696997937600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abaa927a73fa6dd3c3c09a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62f6fb4b55" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d2dbd6f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11667934674452949255" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f1bfb2dd02aa38484b8bf442d51fb9c1b14354fc966c7e0ca44c00c57164a17e4a33789203a97266d4bc28bd222d69e81392a40ad471cf84301c7c1a947d3c7e2f8c211e31babc67cb4af6307be41e61bdafec07b6ec9a9ae47eb3a2f14f009a71bc2dc79890a6bc126ffbf471933fbbfcfefcf43d06bd94c9a9e66775553ead8c6cf07c94acc3ee02187a9486b1d6f45d9d94b63cd1b24f1ad376d0dc5724bf27e475ab13c6c28743ff81b977a18a614cdce11ffbf1bcc6446f46b80e1c04babaa927a73fa6dd3c3c09a4562f6fb4b55445d2dbd6fffd8669f1ba1ecd4c45d3b290780ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 27, 251, 45, 208, 42, 163, 132, 132, 184, 191, 68, + 45, 81, 251, 156, 27, 20, 53, 79, 201, 102, 199, 224, 202, 68, 192, 12, 87, 22, 74, 23, 228, 163, 55, 137, 32, 58, + 151, 38, 109, 75, 194, 139, 210, 34, 214, 158, 129, 57, 42, 64, 173, 71, 28, 248, 67, 1, 199, 193, 169, 71, 211, + 199, 226, 248, 194, 17, 227, 27, 171, 198, 124, 180, 175, 99, 7, 190, 65, 230, 27, 218, 254, 192, 123, 110, 201, + 169, 174, 71, 235, 58, 47, 20, 240, 9, 167, 27, 194, 220, 121, 137, 10, 107, 193, 38, 255, 191, 71, 25, 51, 251, + 191, 207, 239, 207, 67, 208, 107, 217, 76, 154, 158, 102, 119, 85, 83, 234, 216, 198, 207, 7, 201, 74, 204, 62, + 224, 33, 135, 169, 72, 107, 29, 111, 69, 217, 217, 75, 99, 205, 27, 36, 241, 173, 55, 109, 13, 197, 114, 75, 242, + 126, 71, 90, 177, 60, 108, 40, 116, 63, 248, 27, 151, 122, 24, 166, 20, 205, 206, 17, 255, 191, 27, 204, 100, 70, + 244, 107, 128, 225, 192, 75, 171, 170, 146, 122, 115, 250, 109, 211, 195, 192, 154, 69, 98, 246, 251, 75, 85, 68, + 93, 45, 189, 111, 255, 216, 102, 159, 27, 161, 236, 212, 196, 93, 59, 41, 7, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3726, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14220486953873556834" + }, + "fields": [] + }, + "cborHex": "d8669f1bc559518a8ab5c56280ff", + "cborBytes": [216, 102, 159, 27, 197, 89, 81, 138, 138, 181, 197, 98, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3727, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "58bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3acf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f46" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7651316476317008144" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88ea4cb4d4f266" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c060f886c3117f9d5d2970" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d33e77ebcfbb" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7261330551452264897" + } + }, + { + "_tag": "ByteArray", + "bytearray": "98" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e598ca0c3004bb139b2ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "840835118530511897" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6cc37543b668b13a1de4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0ebb3aec0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51eb6f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff0f1a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "402314176564253823" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e4fa5482d8bf6316c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "193833406223489164" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59224bd5a8332f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6211827974897765817" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "98d3a70bb39c54ad620dd13d" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29fa0bf4258bd423acf425f461b6a2eefcbfaf801104286e34788ea4cb4d4f2664bc060f886c3117f9d5d297046d33e77ebcfbbff9f1b64c56daa1400e9c14198bf4b3e598ca0c3004bb139b2ba1b0bab3f15daaf44194a6cc37543b668b13a1de441c345f0ebb3aec04351eb6f43ff0f1a1b05954e9cae37547fffbf492e4fa5482d8bf6316c1b02b0a274bb8e188c4759224bd5a8332f1b5634d8a1a99d8db9ffff4c98d3a70bb39c54ad620dd13dffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 160, 191, 66, 88, 189, 66, 58, 207, 66, 95, 70, + 27, 106, 46, 239, 203, 250, 248, 1, 16, 66, 134, 227, 71, 136, 234, 76, 180, 212, 242, 102, 75, 192, 96, 248, 134, + 195, 17, 127, 157, 93, 41, 112, 70, 211, 62, 119, 235, 207, 187, 255, 159, 27, 100, 197, 109, 170, 20, 0, 233, + 193, 65, 152, 191, 75, 62, 89, 140, 160, 195, 0, 75, 177, 57, 178, 186, 27, 11, 171, 63, 21, 218, 175, 68, 25, 74, + 108, 195, 117, 67, 182, 104, 177, 58, 29, 228, 65, 195, 69, 240, 235, 179, 174, 192, 67, 81, 235, 111, 67, 255, + 15, 26, 27, 5, 149, 78, 156, 174, 55, 84, 127, 255, 191, 73, 46, 79, 165, 72, 45, 139, 246, 49, 108, 27, 2, 176, + 162, 116, 187, 142, 24, 140, 71, 89, 34, 75, 213, 168, 51, 47, 27, 86, 52, 216, 161, 169, 157, 141, 185, 255, 255, + 76, 152, 211, 167, 11, 179, 156, 84, 173, 98, 13, 209, 61, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3728, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2a0b338ad21fa25d4f86" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5604572235654528371" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3f2c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3965960287059754622" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "df39c987b43c11" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10730164011182918907" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95" + }, + { + "_tag": "ByteArray", + "bytearray": "58d49aa4cb506c7ca236" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fa1533" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "602231513724403474" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4646353342203608578" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f2a1db" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1707041890067789619" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5010126864269174884" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79f4a2a0b338ad21fa25d4f86d8669f1b4dc770c108347d739f9f423f2c1b3709ebde5780be7eff9f47df39c987b43c111b94e933513c3d0cfb41954a58d49aa4cb506c7ca236ffffff43fa1533d8669f1b085b8e5ef816bf129fa0d8669f1b407b29bf4efebe0280ff43f2a1dbd8669f1b17b0a18e0233b7339f1b45878bd69867e864ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 74, 42, 11, 51, 138, 210, 31, 162, 93, 79, 134, + 216, 102, 159, 27, 77, 199, 112, 193, 8, 52, 125, 115, 159, 159, 66, 63, 44, 27, 55, 9, 235, 222, 87, 128, 190, + 126, 255, 159, 71, 223, 57, 201, 135, 180, 60, 17, 27, 148, 233, 51, 81, 60, 61, 12, 251, 65, 149, 74, 88, 212, + 154, 164, 203, 80, 108, 124, 162, 54, 255, 255, 255, 67, 250, 21, 51, 216, 102, 159, 27, 8, 91, 142, 94, 248, 22, + 191, 18, 159, 160, 216, 102, 159, 27, 64, 123, 41, 191, 78, 254, 190, 2, 128, 255, 67, 242, 161, 219, 216, 102, + 159, 27, 23, 176, 161, 142, 2, 51, 183, 51, 159, 27, 69, 135, 139, 214, 152, 103, 232, 100, 255, 255, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3729, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7690293444270915507" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12226794402368661646" + } + } + ] + }, + "cborHex": "d8669f1b6ab9692484487fb39f1ba9ae4cba86eb288effff", + "cborBytes": [ + 216, 102, 159, 27, 106, 185, 105, 36, 132, 72, 127, 179, 159, 27, 169, 174, 76, 186, 134, 235, 40, 142, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3730, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10849872187886043151" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9f1b96927d451156800fffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 27, 150, 146, 125, 69, 17, 86, 128, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3731, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11dec968c1eeb44b1fae0381" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17193220814660594355" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2455695908697476884" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19fbf4c11dec968c1eeb44b1fae03811bee9a973cc2b26ab3ff1b2214626b0a4b0f14ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 191, 76, 17, 222, 201, 104, 193, 238, 180, 75, 31, + 174, 3, 129, 27, 238, 154, 151, 60, 194, 178, 106, 179, 255, 27, 34, 20, 98, 107, 10, 75, 15, 20, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3732, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0007fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + "cborHex": "d905049f430007fa0fff", + "cborBytes": [217, 5, 4, 159, 67, 0, 7, 250, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3733, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15536549810570387395" + }, + "fields": [] + }, + "cborHex": "d8669f1bd79ce9bc8e35dfc380ff", + "cborBytes": [216, 102, 159, 27, 215, 156, 233, 188, 142, 53, 223, 195, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3734, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "998426421865492391" + }, + "fields": [] + }, + "cborHex": "d8669f1b0ddb1f8a71a82fa780ff", + "cborBytes": [216, 102, 159, 27, 13, 219, 31, 138, 113, 168, 47, 167, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3735, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2570052047349155878" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "464bd55bc7f1c2480ad4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d2dadb0f3c4233f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5279208193474017020" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67bc06685ba99b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "872171" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "684925ae91daee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fe881ff7e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7156b0790fa08d473e26bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7734541436455830271" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c69e41" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9500652771722687186" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1926214476497106094" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1955385a88636906f9e8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8892930750242566765" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5148519253321338973" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13924572120124935794" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d62c7427a7ec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f641edcb744ef9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72448c185dece5" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d818d4caa5cfd36008774a" + } + ] + }, + "cborHex": "d8669f1b23aaa8b8688308269f9f4a464bd55bc7f1c2480ad4bf480d2dadb0f3c4233f1b494383e1ab59b6fc4767bc06685ba99b4387217147684925ae91daee459fe881ff7e4b7156b0790fa08d473e26bf1b6b569c75047d42ff43c69e411b83d9195bf8dc72d2ffffbf1b1abb49dc60d334ae4a1955385a88636906f9e81b7b6a09668c5b326d1b477336fb9d7a505d1bc13e0491555ace7246d62c7427a7ec47f641edcb744ef94772448c185dece5ff804bd818d4caa5cfd36008774affff", + "cborBytes": [ + 216, 102, 159, 27, 35, 170, 168, 184, 104, 131, 8, 38, 159, 159, 74, 70, 75, 213, 91, 199, 241, 194, 72, 10, 212, + 191, 72, 13, 45, 173, 176, 243, 196, 35, 63, 27, 73, 67, 131, 225, 171, 89, 182, 252, 71, 103, 188, 6, 104, 91, + 169, 155, 67, 135, 33, 113, 71, 104, 73, 37, 174, 145, 218, 238, 69, 159, 232, 129, 255, 126, 75, 113, 86, 176, + 121, 15, 160, 141, 71, 62, 38, 191, 27, 107, 86, 156, 117, 4, 125, 66, 255, 67, 198, 158, 65, 27, 131, 217, 25, + 91, 248, 220, 114, 210, 255, 255, 191, 27, 26, 187, 73, 220, 96, 211, 52, 174, 74, 25, 85, 56, 90, 136, 99, 105, + 6, 249, 232, 27, 123, 106, 9, 102, 140, 91, 50, 109, 27, 71, 115, 54, 251, 157, 122, 80, 93, 27, 193, 62, 4, 145, + 85, 90, 206, 114, 70, 214, 44, 116, 39, 167, 236, 71, 246, 65, 237, 203, 116, 78, 249, 71, 114, 68, 140, 24, 93, + 236, 229, 255, 128, 75, 216, 24, 212, 202, 165, 207, 211, 96, 8, 119, 74, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3736, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1881034278039767572" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14028204674001488022" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9604904732266055702" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d5bb98" + }, + { + "_tag": "ByteArray", + "bytearray": "e3e1fbda65cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15045546776889138178" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2579929a15ff92a206" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6248339645625558034" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15075685910781815352" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "80987832445676256" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "87d30e50dd" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2388521863993248518" + } + } + ] + }, + "cborHex": "d8669f1b1a1ac6b5b0e4ca149f9fd8669f1bc2ae31d38e5548969f1b854b79f70c2fc81643d5bb9846e3e1fbda65cc1bd0cc851430001c02492579929a15ff92a206ffffff9f9f1b56b68fcd758064121bd13798762182ea381b011fba01280daae0ff4587d30e50ddff1b2125bbfaf9924b06ffff", + "cborBytes": [ + 216, 102, 159, 27, 26, 26, 198, 181, 176, 228, 202, 20, 159, 159, 216, 102, 159, 27, 194, 174, 49, 211, 142, 85, + 72, 150, 159, 27, 133, 75, 121, 247, 12, 47, 200, 22, 67, 213, 187, 152, 70, 227, 225, 251, 218, 101, 204, 27, + 208, 204, 133, 20, 48, 0, 28, 2, 73, 37, 121, 146, 154, 21, 255, 146, 162, 6, 255, 255, 255, 159, 159, 27, 86, + 182, 143, 205, 117, 128, 100, 18, 27, 209, 55, 152, 118, 33, 130, 234, 56, 27, 1, 31, 186, 1, 40, 13, 170, 224, + 255, 69, 135, 211, 14, 80, 221, 255, 27, 33, 37, 187, 250, 249, 146, 75, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3737, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7925574772420754825" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "991728748985422872" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8376206962955615476" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0356860bbc58c4723d0d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b6c1296" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5564fbc8ebf0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7607d0e9900a5fabe17664b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a42f7a2adee0cdc4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43beed3873" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13408357449443095923" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5695059688434081758" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8598fb" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "642725" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8066499332280161401" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b60a15d5f54085a44f453af" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9749124769405656964" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a45db5814e73cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09941dda50cfe70a9de8668f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c916bbfcef965f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce6d7644f652cb03" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0372" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18207811385702304286" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "72d32dc363" + }, + { + "_tag": "ByteArray", + "bytearray": "423b080b5b6b30" + }, + { + "_tag": "ByteArray", + "bytearray": "f838bf" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1272891106925394755" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aaf204c73250" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6673002726990823944" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "799fc5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb65bcfc7d1dcb422e186d38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5cf3" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9678925114026937109" + } + } + ] + }, + "cborHex": "d8669f1b6dfd4c4396efbd899fbf1b0dc3540af4d194181b743e43da901f7cf44a0356860bbc58c4723d0d449b6c1296465564fbc8ebf04ce7607d0e9900a5fabe17664b48a42f7a2adee0cdc44543beed3873ffd8669f1bba140e0f4b84b5739f9f1b4f08ea9ce7c29fde438598fbff43642725d8669f1b6ff1f667917c147980ffbf4c6b60a15d5f54085a44f453af1b874bd9531f62df8447a45db5814e73cf4c09941dda50cfe70a9de8668f47c916bbfcef965f48ce6d7644f652cb03ff420372ffffd8669f1bfcaf23fc76194a1e9f4572d32dc36347423b080b5b6b3043f838bfffffbf1b11aa37b7ba0abb4346aaf204c732501b5c9b44a00780420843799fc54ccb65bcfc7d1dcb422e186d38425cf3ff1b8652731c2d2ecb15ffff", + "cborBytes": [ + 216, 102, 159, 27, 109, 253, 76, 67, 150, 239, 189, 137, 159, 191, 27, 13, 195, 84, 10, 244, 209, 148, 24, 27, + 116, 62, 67, 218, 144, 31, 124, 244, 74, 3, 86, 134, 11, 188, 88, 196, 114, 61, 13, 68, 155, 108, 18, 150, 70, 85, + 100, 251, 200, 235, 240, 76, 231, 96, 125, 14, 153, 0, 165, 250, 190, 23, 102, 75, 72, 164, 47, 122, 42, 222, 224, + 205, 196, 69, 67, 190, 237, 56, 115, 255, 216, 102, 159, 27, 186, 20, 14, 15, 75, 132, 181, 115, 159, 159, 27, 79, + 8, 234, 156, 231, 194, 159, 222, 67, 133, 152, 251, 255, 67, 100, 39, 37, 216, 102, 159, 27, 111, 241, 246, 103, + 145, 124, 20, 121, 128, 255, 191, 76, 107, 96, 161, 93, 95, 84, 8, 90, 68, 244, 83, 175, 27, 135, 75, 217, 83, 31, + 98, 223, 132, 71, 164, 93, 181, 129, 78, 115, 207, 76, 9, 148, 29, 218, 80, 207, 231, 10, 157, 232, 102, 143, 71, + 201, 22, 187, 252, 239, 150, 95, 72, 206, 109, 118, 68, 246, 82, 203, 3, 255, 66, 3, 114, 255, 255, 216, 102, 159, + 27, 252, 175, 35, 252, 118, 25, 74, 30, 159, 69, 114, 211, 45, 195, 99, 71, 66, 59, 8, 11, 91, 107, 48, 67, 248, + 56, 191, 255, 255, 191, 27, 17, 170, 55, 183, 186, 10, 187, 67, 70, 170, 242, 4, 199, 50, 80, 27, 92, 155, 68, + 160, 7, 128, 66, 8, 67, 121, 159, 197, 76, 203, 101, 188, 252, 125, 29, 203, 66, 46, 24, 109, 56, 66, 92, 243, + 255, 27, 134, 82, 115, 28, 45, 46, 203, 21, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3738, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "559442783160854737" + }, + "fields": [] + }, + "cborHex": "d8669f1b07c38a3f4a7568d180ff", + "cborBytes": [216, 102, 159, 27, 7, 195, 138, 63, 74, 117, 104, 209, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3739, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4167597518501867126" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4521817264607182403" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "14613e22540514" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10292596832578553609" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10711757637657064983" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15812072519975081166" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2186127178035420057" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37ad8aeed332" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d203ec83ca0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "beb01313bc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6730321598068637675" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d58fceb4c1eb4eb8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2537764692314306737" + } + } + ] + }, + "cborHex": "d8669f1b39d647dcb91a6e769fd8669f1b3ec0b8d83423be4380ff4714613e22540514bf1b8ed6a6496627c7091b94a7ced170a076171bdb6fc42e53d494ce1b1e56af15f8a0db994637ad8aeed332460d203ec83ca045beb01313bc1b5d66e7d5ad053febff48d58fceb4c1eb4eb81b2337f38ac0ec38b1ffff", + "cborBytes": [ + 216, 102, 159, 27, 57, 214, 71, 220, 185, 26, 110, 118, 159, 216, 102, 159, 27, 62, 192, 184, 216, 52, 35, 190, + 67, 128, 255, 71, 20, 97, 62, 34, 84, 5, 20, 191, 27, 142, 214, 166, 73, 102, 39, 199, 9, 27, 148, 167, 206, 209, + 112, 160, 118, 23, 27, 219, 111, 196, 46, 83, 212, 148, 206, 27, 30, 86, 175, 21, 248, 160, 219, 153, 70, 55, 173, + 138, 238, 211, 50, 70, 13, 32, 62, 200, 60, 160, 69, 190, 176, 19, 19, 188, 27, 93, 102, 231, 213, 173, 5, 63, + 235, 255, 72, 213, 143, 206, 180, 193, 235, 78, 184, 27, 35, 55, 243, 138, 192, 236, 56, 177, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3740, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12683985834577815687" + }, + "fields": [] + }, + "cborHex": "d8669f1bb00691e9f618e88780ff", + "cborBytes": [216, 102, 159, 27, 176, 6, 145, 233, 246, 24, 232, 135, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3741, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9222143411418677452" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10058502401288706729" + } + } + ] + }, + "cborHex": "d8669f1b7ffba2925951c0cc9fa01b8b96faa4493a1aa9ffff", + "cborBytes": [ + 216, 102, 159, 27, 127, 251, 162, 146, 89, 81, 192, 204, 159, 160, 27, 139, 150, 250, 164, 73, 58, 26, 169, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3742, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "db" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9f41dbffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 65, 219, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3743, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "259439629809086889" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "71aacf4ce4b15c274b6d8b9e" + }, + { + "_tag": "ByteArray", + "bytearray": "2b132f54" + }, + { + "_tag": "ByteArray", + "bytearray": "ab" + }, + { + "_tag": "ByteArray", + "bytearray": "9ee4" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a4b46a6ebcc9dc15" + }, + { + "_tag": "ByteArray", + "bytearray": "3687bc990a509a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "270068454850233693" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9cb8de11bb8bc51663" + }, + { + "_tag": "ByteArray", + "bytearray": "fb2d8e4fd446db039ee84b" + }, + { + "_tag": "ByteArray", + "bytearray": "e658a78b2af3ae" + }, + { + "_tag": "ByteArray", + "bytearray": "3e431c88cbb5fc" + }, + { + "_tag": "ByteArray", + "bytearray": "9a" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2377522495900310772" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b6a2e47c2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a9243" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4541143474092140133" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f625f223aa28e5cbe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a44a8592c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a2" + }, + { + "_tag": "ByteArray", + "bytearray": "e7ae931b1f02a618" + }, + { + "_tag": "ByteArray", + "bytearray": "7e1291e52cf98392" + }, + { + "_tag": "ByteArray", + "bytearray": "dc7fcf32ae718c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3859441164942162684" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d008181df945" + }, + { + "_tag": "ByteArray", + "bytearray": "8495475d86f4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6244887764240686988" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9f8109445953fb3a13d8" + }, + { + "_tag": "ByteArray", + "bytearray": "4e383eda57606356" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4437f9c227b947e17906" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8049168562091562848" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3eaa7afcd6fe54a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d48084e67a14" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16407504835184656247" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "daf328444c81c930fc4a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56f8a71254" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc351ea9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10062076011823043873" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + "cborHex": "d8669f1b0399b6f7ff6df1a99f9f9f4c71aacf4ce4b15c274b6d8b9e442b132f5441ab429ee4ff48a4b46a6ebcc9dc15473687bc990a509ad8669f1b03bf79d42c63055d9f499cb8de11bb8bc516634bfb2d8e4fd446db039ee84b47e658a78b2af3ae473e431c88cbb5fc419affffffd905069fbf1b20fea81d05a35cf4455b6a2e47c2435a92431b3f0561edff586665496f625f223aa28e5cbe451a44a8592cff9f41a248e7ae931b1f02a618487e1291e52cf9839247dc7fcf32ae718c1b358f7d4a93e5bafcff9f46d008181df945468495475d86f41b56aa4c55b1bfdf8c4a9f8109445953fb3a13d8484e383eda57606356ffbf4a4437f9c227b947e179061b6fb4642930b5976041bf48e3eaa7afcd6fe54a46d48084e67a141be3b32ab787af7f774adaf328444c81c930fc4a4556f8a7125444fc351ea91b8ba3acd253b11521ffff06ffff", + "cborBytes": [ + 216, 102, 159, 27, 3, 153, 182, 247, 255, 109, 241, 169, 159, 159, 159, 76, 113, 170, 207, 76, 228, 177, 92, 39, + 75, 109, 139, 158, 68, 43, 19, 47, 84, 65, 171, 66, 158, 228, 255, 72, 164, 180, 106, 110, 188, 201, 220, 21, 71, + 54, 135, 188, 153, 10, 80, 154, 216, 102, 159, 27, 3, 191, 121, 212, 44, 99, 5, 93, 159, 73, 156, 184, 222, 17, + 187, 139, 197, 22, 99, 75, 251, 45, 142, 79, 212, 70, 219, 3, 158, 232, 75, 71, 230, 88, 167, 139, 42, 243, 174, + 71, 62, 67, 28, 136, 203, 181, 252, 65, 154, 255, 255, 255, 217, 5, 6, 159, 191, 27, 32, 254, 168, 29, 5, 163, 92, + 244, 69, 91, 106, 46, 71, 194, 67, 90, 146, 67, 27, 63, 5, 97, 237, 255, 88, 102, 101, 73, 111, 98, 95, 34, 58, + 162, 142, 92, 190, 69, 26, 68, 168, 89, 44, 255, 159, 65, 162, 72, 231, 174, 147, 27, 31, 2, 166, 24, 72, 126, 18, + 145, 229, 44, 249, 131, 146, 71, 220, 127, 207, 50, 174, 113, 140, 27, 53, 143, 125, 74, 147, 229, 186, 252, 255, + 159, 70, 208, 8, 24, 29, 249, 69, 70, 132, 149, 71, 93, 134, 244, 27, 86, 170, 76, 85, 177, 191, 223, 140, 74, + 159, 129, 9, 68, 89, 83, 251, 58, 19, 216, 72, 78, 56, 62, 218, 87, 96, 99, 86, 255, 191, 74, 68, 55, 249, 194, + 39, 185, 71, 225, 121, 6, 27, 111, 180, 100, 41, 48, 181, 151, 96, 65, 191, 72, 227, 234, 167, 175, 205, 111, 229, + 74, 70, 212, 128, 132, 230, 122, 20, 27, 227, 179, 42, 183, 135, 175, 127, 119, 74, 218, 243, 40, 68, 76, 129, + 201, 48, 252, 74, 69, 86, 248, 167, 18, 84, 68, 252, 53, 30, 169, 27, 139, 163, 172, 210, 83, 177, 21, 33, 255, + 255, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3744, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2959449466432355681" + }, + "fields": [] + }, + "cborHex": "d8669f1b2912139c216b7d6180ff", + "cborBytes": [216, 102, 159, 27, 41, 18, 19, 156, 33, 107, 125, 97, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3745, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11880749731769554795" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3167330737892492793" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7dfb9b" + }, + { + "_tag": "ByteArray", + "bytearray": "d494" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12943925470123371066" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10031876282060993670" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6380407972726216835" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f1924758949da17ceb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1222339254702672269" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7fd9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10518825227858904572" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "387974243942788693" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6257411926335027405" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11124501883473371775" + } + }, + { + "_tag": "ByteArray", + "bytearray": "708fc97114d09e81" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9367877068320972367" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17790646147972666426" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16361607898640829900" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4680111135916805895" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7961608593461834660" + } + }, + { + "_tag": "ByteArray", + "bytearray": "549bd9" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04ddf14f16e2ca1e348005" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16592505864291895242" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7feb3a4a214a81fa2b8b3863" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6196307403920850167" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82c5cd3c5da8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a93b90c70c2ea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85abbbdba7998f363f48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06e8cc4c31c10c96d6b35ab8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "885e5a75fe24113e09a80baf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be296b5635762cc9535ecd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b33c859bab60621ab8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7e8a67b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0014001d05adff00fd06" + } + ] + }, + "cborHex": "d8669f1ba4e0e6ef2371176b9fbf011b2bf49e865e4205f9ff9f437dfb9b42d494ffd905019fd8669f1bb3a20fa29dd5aa3a9f1b8b386253cee97486ffff809f1b588bc33f106a988349f1924758949da17ceb1b10f69f136f91898d427fd91b91fa5fd048f285fcffd8669f1b05625c84f035ee559f1b56d6cafe6a7df8cd1b9a622b85db98227f48708fc97114d09e811b8201628f7ccc9e4fffff9f1bf6e51269a695143a1be3101bb240b64dcc1b40f3184825abcf071b6e7d50d555fd73a443549bd9ffffbf4b04ddf14f16e2ca1e3480051be6446c2c36b447ca4c7feb3a4a214a81fa2b8b38631b55fdb4c121d33cf74682c5cd3c5da8477a93b90c70c2ea4a85abbbdba7998f363f484c06e8cc4c31c10c96d6b35ab84c885e5a75fe24113e09a80baf4bbe296b5635762cc9535ecd49b33c859bab60621ab844f7e8a67bff4a0014001d05adff00fd06ffff", + "cborBytes": [ + 216, 102, 159, 27, 164, 224, 230, 239, 35, 113, 23, 107, 159, 191, 1, 27, 43, 244, 158, 134, 94, 66, 5, 249, 255, + 159, 67, 125, 251, 155, 66, 212, 148, 255, 217, 5, 1, 159, 216, 102, 159, 27, 179, 162, 15, 162, 157, 213, 170, + 58, 159, 27, 139, 56, 98, 83, 206, 233, 116, 134, 255, 255, 128, 159, 27, 88, 139, 195, 63, 16, 106, 152, 131, 73, + 241, 146, 71, 88, 148, 157, 161, 124, 235, 27, 16, 246, 159, 19, 111, 145, 137, 141, 66, 127, 217, 27, 145, 250, + 95, 208, 72, 242, 133, 252, 255, 216, 102, 159, 27, 5, 98, 92, 132, 240, 53, 238, 85, 159, 27, 86, 214, 202, 254, + 106, 125, 248, 205, 27, 154, 98, 43, 133, 219, 152, 34, 127, 72, 112, 143, 201, 113, 20, 208, 158, 129, 27, 130, + 1, 98, 143, 124, 204, 158, 79, 255, 255, 159, 27, 246, 229, 18, 105, 166, 149, 20, 58, 27, 227, 16, 27, 178, 64, + 182, 77, 204, 27, 64, 243, 24, 72, 37, 171, 207, 7, 27, 110, 125, 80, 213, 85, 253, 115, 164, 67, 84, 155, 217, + 255, 255, 191, 75, 4, 221, 241, 79, 22, 226, 202, 30, 52, 128, 5, 27, 230, 68, 108, 44, 54, 180, 71, 202, 76, 127, + 235, 58, 74, 33, 74, 129, 250, 43, 139, 56, 99, 27, 85, 253, 180, 193, 33, 211, 60, 247, 70, 130, 197, 205, 60, + 93, 168, 71, 122, 147, 185, 12, 112, 194, 234, 74, 133, 171, 187, 219, 167, 153, 143, 54, 63, 72, 76, 6, 232, 204, + 76, 49, 193, 12, 150, 214, 179, 90, 184, 76, 136, 94, 90, 117, 254, 36, 17, 62, 9, 168, 11, 175, 75, 190, 41, 107, + 86, 53, 118, 44, 201, 83, 94, 205, 73, 179, 60, 133, 155, 171, 96, 98, 26, 184, 68, 247, 232, 166, 123, 255, 74, + 0, 20, 0, 29, 5, 173, 255, 0, 253, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3746, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dc95018df907" + } + ] + }, + "cborHex": "d87f9f46dc95018df907ff", + "cborBytes": [216, 127, 159, 70, 220, 149, 1, 141, 249, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3747, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6702043541030216702" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2329615708392050404" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3064475187901156294" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14296133073315797854" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1521526236970247561" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13348871413940158647" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18167112173265185144" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3647119078713264019" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af8e" + }, + { + "_tag": "ByteArray", + "bytearray": "5eaedf33e973f079586b" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3345547470545012144" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12796208417370983934" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7b69ce96375e4feac70f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1971916771012124231" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "711ff3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7401261180717848331" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17917399634305238427" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7119287149067605584" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17501398303849551126" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8712005489693162076" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16439716307156718999" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6053378762980491658" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "30f2ea8a569dbaafcdd4" + } + ] + }, + "cborHex": "d905099fd8669f1b5d027117744ea3fe9fd8669f1b20547524d9e0cee49f1b2a8733f275d8cbc61bc666114938b39b5e1b151d8c0d170c65891bb940b7d35c4500b7ffff1bfc1e8c44a22569789f1b329d2b7a9441079342af8e4a5eaedf33e973f079586bffd8669f1b2e6dc5b2f10ac5b09f1bb19543c22542cdfe4a7b69ce96375e4feac70f1b1b5da7db06d01e47ffff43711ff3ffff9f1b66b68fd48e93570bd8669f1bf8a76409757a459b9f1b62ccc9f1462d9650ffff9f1bf2e17507ed9395161b78e742d5ae69fa5c1be4259ae14845d5971b5401ebe9aa58818affff4a30f2ea8a569dbaafcdd4ff", + "cborBytes": [ + 217, 5, 9, 159, 216, 102, 159, 27, 93, 2, 113, 23, 116, 78, 163, 254, 159, 216, 102, 159, 27, 32, 84, 117, 36, + 217, 224, 206, 228, 159, 27, 42, 135, 51, 242, 117, 216, 203, 198, 27, 198, 102, 17, 73, 56, 179, 155, 94, 27, 21, + 29, 140, 13, 23, 12, 101, 137, 27, 185, 64, 183, 211, 92, 69, 0, 183, 255, 255, 27, 252, 30, 140, 68, 162, 37, + 105, 120, 159, 27, 50, 157, 43, 122, 148, 65, 7, 147, 66, 175, 142, 74, 94, 174, 223, 51, 233, 115, 240, 121, 88, + 107, 255, 216, 102, 159, 27, 46, 109, 197, 178, 241, 10, 197, 176, 159, 27, 177, 149, 67, 194, 37, 66, 205, 254, + 74, 123, 105, 206, 150, 55, 94, 79, 234, 199, 15, 27, 27, 93, 167, 219, 6, 208, 30, 71, 255, 255, 67, 113, 31, + 243, 255, 255, 159, 27, 102, 182, 143, 212, 142, 147, 87, 11, 216, 102, 159, 27, 248, 167, 100, 9, 117, 122, 69, + 155, 159, 27, 98, 204, 201, 241, 70, 45, 150, 80, 255, 255, 159, 27, 242, 225, 117, 7, 237, 147, 149, 22, 27, 120, + 231, 66, 213, 174, 105, 250, 92, 27, 228, 37, 154, 225, 72, 69, 213, 151, 27, 84, 1, 235, 233, 170, 88, 129, 138, + 255, 255, 74, 48, 242, 234, 138, 86, 157, 186, 175, 205, 212, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3748, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bc" + }, + { + "_tag": "ByteArray", + "bytearray": "83f1" + } + ] + }, + "cborHex": "d87a9f41bc4283f1ff", + "cborBytes": [216, 122, 159, 65, 188, 66, 131, 241, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3749, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0a6ba45a7b56d96537" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4141947055416335272" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13082774248504197221" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e4038" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7880559791945628569" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12185903269954568229" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f490a6ba45a7b56d96537809fbf1b397b26e6e490dba81bb58f59dd0eb88065435e40381b6d5d5f60b6253b9941e01ba91d0675d8e9c025ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 73, 10, 107, 164, 90, 123, 86, 217, 101, 55, 128, + 159, 191, 27, 57, 123, 38, 230, 228, 144, 219, 168, 27, 181, 143, 89, 221, 14, 184, 128, 101, 67, 94, 64, 56, 27, + 109, 93, 95, 96, 182, 37, 59, 153, 65, 224, 27, 169, 29, 6, 117, 216, 233, 192, 37, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3750, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12866239818113342315" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cbfa0bed" + } + ] + }, + "cborHex": "d8669f1bb28e10f241a1db6b9f44cbfa0bedffff", + "cborBytes": [216, 102, 159, 27, 178, 142, 16, 242, 65, 161, 219, 107, 159, 68, 203, 250, 11, 237, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3751, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18411339314502901993" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14918462305533401859" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4988423138670324496" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6053297560711158736" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be53adcb94" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12198519130079166537" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16804820276068636355" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17944143580001838158" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d13565" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8165" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10166654302575519224" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c02d365571276605" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "267231b2b2f0bee4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6676dbf11" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12279845941417148541" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2981475872772702986" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13811026121458116443" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4890681308515512459" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11235781297162476103" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6634773645416465583" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fde402f4d112e804a2a489" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16468475871087878231" + } + } + ] + }, + "cborHex": "d8669f1bff82378f202120e99f1bcf09066cec5f9b03d8669f1b453a706a31c8ab109fbf1b5401a20f49ed5bd045be53adcb94ff1ba949d884ae2d00491be936b7015d5a56c3ffffbf1bf90667838c9da44e43d135654281651b8d1736391335e5f848c02d36557127660548267231b2b2f0bee445e6676dbf111baa6ac6d282b1007dffbf1b296054827f03c30a1bbfaa9f156126e75b1b43df30bcf7b5b08b1b9bed838f5f58da471b5c13737a5c2c04af4bfde402f4d112e804a2a489ff1be48bc78d1048e057ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 130, 55, 143, 32, 33, 32, 233, 159, 27, 207, 9, 6, 108, 236, 95, 155, 3, 216, 102, 159, + 27, 69, 58, 112, 106, 49, 200, 171, 16, 159, 191, 27, 84, 1, 162, 15, 73, 237, 91, 208, 69, 190, 83, 173, 203, + 148, 255, 27, 169, 73, 216, 132, 174, 45, 0, 73, 27, 233, 54, 183, 1, 93, 90, 86, 195, 255, 255, 191, 27, 249, 6, + 103, 131, 140, 157, 164, 78, 67, 209, 53, 101, 66, 129, 101, 27, 141, 23, 54, 57, 19, 53, 229, 248, 72, 192, 45, + 54, 85, 113, 39, 102, 5, 72, 38, 114, 49, 178, 178, 240, 190, 228, 69, 230, 103, 109, 191, 17, 27, 170, 106, 198, + 210, 130, 177, 0, 125, 255, 191, 27, 41, 96, 84, 130, 127, 3, 195, 10, 27, 191, 170, 159, 21, 97, 38, 231, 91, 27, + 67, 223, 48, 188, 247, 181, 176, 139, 27, 155, 237, 131, 143, 95, 88, 218, 71, 27, 92, 19, 115, 122, 92, 44, 4, + 175, 75, 253, 228, 2, 244, 209, 18, 232, 4, 162, 164, 137, 255, 27, 228, 139, 199, 141, 16, 72, 224, 87, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3752, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18022599575119848805" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12067475598087825412" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9512921071563453102" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2f5d7921fdb5e4c665d36616" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2665624173792112937" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4612384334314591611" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5863528875731560421" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4717329341675119288" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8729963336242408502" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7414713276293409023" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c65ae75bb8fcb62" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2426367516370920847" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16763105431236013138" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f6154555321b58" + } + ] + } + ] + }, + "cborHex": "d8669f1bfa1d22d3641fe5659f9fd8669f1ba778491ec7b8280480ffd8669f1b8404af501ede32ae9f4c2f5d7921fdb5e4c665d366161b24fe33101f92b1291b40027b1d5665d57bffffffd9050d80d8669f1b515f70723839a7e59fbf1b4177520af312a2b81b79270f66a6e9ac361b66e65a70a0d768ff481c65ae75bb8fcb62ff1b21ac306693d5e58fffffd8669f1be8a28393313e6c529f47f6154555321b58ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 250, 29, 34, 211, 100, 31, 229, 101, 159, 159, 216, 102, 159, 27, 167, 120, 73, 30, 199, 184, + 40, 4, 128, 255, 216, 102, 159, 27, 132, 4, 175, 80, 30, 222, 50, 174, 159, 76, 47, 93, 121, 33, 253, 181, 228, + 198, 101, 211, 102, 22, 27, 36, 254, 51, 16, 31, 146, 177, 41, 27, 64, 2, 123, 29, 86, 101, 213, 123, 255, 255, + 255, 217, 5, 13, 128, 216, 102, 159, 27, 81, 95, 112, 114, 56, 57, 167, 229, 159, 191, 27, 65, 119, 82, 10, 243, + 18, 162, 184, 27, 121, 39, 15, 102, 166, 233, 172, 54, 27, 102, 230, 90, 112, 160, 215, 104, 255, 72, 28, 101, + 174, 117, 187, 143, 203, 98, 255, 27, 33, 172, 48, 102, 147, 213, 229, 143, 255, 255, 216, 102, 159, 27, 232, 162, + 131, 147, 49, 62, 108, 82, 159, 71, 246, 21, 69, 85, 50, 27, 88, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3753, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17742674541902000096" + }, + "fields": [] + }, + "cborHex": "d8669f1bf63aa47dbb6f6fe080ff", + "cborBytes": [216, 102, 159, 27, 246, 58, 164, 125, 187, 111, 111, 224, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3754, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17241169277322376390" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d6aa0ad85d3cd6d59f16" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17779740591512238061" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4059738045589727347" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17276296032696743436" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f72" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9b45c34c135a0240fb75536" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60f0c946345b6a963186" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83e71e08c967" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "877ef0dd6279c2b985" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5362607624673716952" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f867366929ae852a7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80e2dcf80aa7d659883d95a6" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bef44f01c2f2db4c69f4ad6aa0ad85d3cd6d59f161bf6be53ddebae37ed1b3857163e3883a8731befc1bbb53f61360cbf424f724cd9b45c34c135a0240fb755364a60f0c946345b6a9631864683e71e08c96749877ef0dd6279c2b9851b4a6bcf38ea7a6ad849f867366929ae852a7f4c80e2dcf80aa7d659883d95a6ffffff", + "cborBytes": [ + 216, 102, 159, 27, 239, 68, 240, 28, 47, 45, 180, 198, 159, 74, 214, 170, 10, 216, 93, 60, 214, 213, 159, 22, 27, + 246, 190, 83, 221, 235, 174, 55, 237, 27, 56, 87, 22, 62, 56, 131, 168, 115, 27, 239, 193, 187, 181, 63, 97, 54, + 12, 191, 66, 79, 114, 76, 217, 180, 92, 52, 193, 53, 160, 36, 15, 183, 85, 54, 74, 96, 240, 201, 70, 52, 91, 106, + 150, 49, 134, 70, 131, 231, 30, 8, 201, 103, 73, 135, 126, 240, 221, 98, 121, 194, 185, 133, 27, 74, 107, 207, 56, + 234, 122, 106, 216, 73, 248, 103, 54, 105, 41, 174, 133, 42, 127, 76, 128, 226, 220, 248, 10, 167, 214, 89, 136, + 61, 149, 166, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3755, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "179962472359350785" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17858053981283058971" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b027f5aea45e152019fd8669f1bf7d48d7ade20851b80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 2, 127, 90, 234, 69, 225, 82, 1, 159, 216, 102, 159, 27, 247, 212, 141, 122, 222, 32, 133, 27, + 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3756, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16062903830080176514" + }, + "fields": [] + }, + "cborHex": "d8669f1bdeeae5edb530c18280ff", + "cborBytes": [216, 102, 159, 27, 222, 234, 229, 237, 181, 48, 193, 130, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3757, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14976977864883607582" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "86e25909ed" + }, + { + "_tag": "ByteArray", + "bytearray": "953b141369ca2152dbc2e9" + }, + { + "_tag": "ByteArray", + "bytearray": "1c323322aca1bb7e18660c4e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "296560685655553152" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3089690801186331841" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11858554140681330708" + } + }, + { + "_tag": "ByteArray", + "bytearray": "47d34664f17d95" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9974957358569540362" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5527826177776699401" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "389595185c42f072" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bcfd8ea044546981e9f9f9f4586e25909ed4b953b141369ca2152dbc2e94c1c323322aca1bb7e18660c4e1b041d985f52d87480ffd8669f1b2ae0c969ee80dcc19f1ba4920c29610c60144747d34664f17d95ffffbf0c1b8a6e2ade3734cb0a1b4cb6c89efa7c480948389595185c42f072ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 207, 216, 234, 4, 69, 70, 152, 30, 159, 159, 159, 69, 134, 226, 89, 9, 237, 75, 149, 59, 20, + 19, 105, 202, 33, 82, 219, 194, 233, 76, 28, 50, 51, 34, 172, 161, 187, 126, 24, 102, 12, 78, 27, 4, 29, 152, 95, + 82, 216, 116, 128, 255, 216, 102, 159, 27, 42, 224, 201, 105, 238, 128, 220, 193, 159, 27, 164, 146, 12, 41, 97, + 12, 96, 20, 71, 71, 211, 70, 100, 241, 125, 149, 255, 255, 191, 12, 27, 138, 110, 42, 222, 55, 52, 203, 10, 27, + 76, 182, 200, 158, 250, 124, 72, 9, 72, 56, 149, 149, 24, 92, 66, 240, 114, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3758, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8799f80ff", + "cborBytes": [216, 121, 159, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3759, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3142465381302834452" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10117352745241152951" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15798892841203647124" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6926213756350858757" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12722996038105557126" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7155080155250290137" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5864807263190344795" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2892119511376967992" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2b9c479d638495149fd8669f1b8c680eb7bf6c0db79f80d8669f1bdb40f1553c67c2949f1b601edab6f9b78605ffffffffd8669f1bb091297cc1fbe8869f412cffff1b634bf37df123edd99f1b5163fb21fe97645b1b2822df5f5b99b938ffffff", + "cborBytes": [ + 216, 102, 159, 27, 43, 156, 71, 157, 99, 132, 149, 20, 159, 216, 102, 159, 27, 140, 104, 14, 183, 191, 108, 13, + 183, 159, 128, 216, 102, 159, 27, 219, 64, 241, 85, 60, 103, 194, 148, 159, 27, 96, 30, 218, 182, 249, 183, 134, + 5, 255, 255, 255, 255, 216, 102, 159, 27, 176, 145, 41, 124, 193, 251, 232, 134, 159, 65, 44, 255, 255, 27, 99, + 75, 243, 125, 241, 35, 237, 217, 159, 27, 81, 99, 251, 33, 254, 151, 100, 91, 27, 40, 34, 223, 95, 91, 153, 185, + 56, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3760, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4157683630391411902" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1890811459487447501" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7143464906171670720" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2308416609498364225" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6632846555892075459" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6383295455160101111" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f798f4c66727bf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7345898955785602003" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9353908682399031792" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13753494697495912057" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f1eb19c87e4fe40" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14915057965345476381" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "596b787b5dec8d67bf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18363663244070105472" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11908309503965317343" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b39b30f3bc5efc4be9fd8669f1b1a3d830123fcb9cd80ff1b6322af7c05d4e0c0a0bf1b200924ad02c2f9411b5c0c9accdd9ecbc31b58960565752ee8f747f798f4c66727bf1b65f1e02e178383d31b81cfc26333d621f01bbede3a8ee8765e79488f1eb19c87e4fe401bcefcee3234c70f1d49596b787b5dec8d67bf1bfed8d66cf5b231801ba542d066a342c8dfffffff", + "cborBytes": [ + 216, 102, 159, 27, 57, 179, 15, 59, 197, 239, 196, 190, 159, 216, 102, 159, 27, 26, 61, 131, 1, 35, 252, 185, 205, + 128, 255, 27, 99, 34, 175, 124, 5, 212, 224, 192, 160, 191, 27, 32, 9, 36, 173, 2, 194, 249, 65, 27, 92, 12, 154, + 204, 221, 158, 203, 195, 27, 88, 150, 5, 101, 117, 46, 232, 247, 71, 247, 152, 244, 198, 103, 39, 191, 27, 101, + 241, 224, 46, 23, 131, 131, 211, 27, 129, 207, 194, 99, 51, 214, 33, 240, 27, 190, 222, 58, 142, 232, 118, 94, + 121, 72, 143, 30, 177, 156, 135, 228, 254, 64, 27, 206, 252, 238, 50, 52, 199, 15, 29, 73, 89, 107, 120, 123, 93, + 236, 141, 103, 191, 27, 254, 216, 214, 108, 245, 178, 49, 128, 27, 165, 66, 208, 102, 163, 66, 200, 223, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3761, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16811458090443418917" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "64964690097415221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "002748" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "949482730141123370" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10207742822102775078" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3151577085504186382" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45f70f221f83e0e8116210" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6158135449685752569" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17850870800045516847" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6792730545432244775" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16372877642581779297" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17853657669281005822" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "267e1a0093e01b" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9f1be94e4c0ff53f2d25bf1b00e6cd0a9c332435430027481b0d2d3d83326e032a1b8da9300385fab5261b2bbca6a957bce80e4b45f70f221f83e0e81162101b5576179075427af91bf7bb086a281b282f1b5e44a0710f6f32271be3382577fd05a3611bf7c4ef0eb6ec40fe47267e1a0093e01bffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 27, 233, 78, 76, 15, 245, 63, 45, 37, 191, 27, 0, + 230, 205, 10, 156, 51, 36, 53, 67, 0, 39, 72, 27, 13, 45, 61, 131, 50, 110, 3, 42, 27, 141, 169, 48, 3, 133, 250, + 181, 38, 27, 43, 188, 166, 169, 87, 188, 232, 14, 75, 69, 247, 15, 34, 31, 131, 224, 232, 17, 98, 16, 27, 85, 118, + 23, 144, 117, 66, 122, 249, 27, 247, 187, 8, 106, 40, 27, 40, 47, 27, 94, 68, 160, 113, 15, 111, 50, 39, 27, 227, + 56, 37, 119, 253, 5, 163, 97, 27, 247, 196, 239, 14, 182, 236, 64, 254, 71, 38, 126, 26, 0, 147, 224, 27, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3762, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11303129237053227485" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bd3a95b07bb1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6556166056558461796" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10481484060168896588" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8451084362932992652" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17927385799943327754" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b9cdcc82790e3c1dd9f46bd3a95b07bb1bf1b5afc2e4ad9a403641b9175b6382d49404cff1b75484873cb7aba8c9f1bf8cade66d501100affffff", + "cborBytes": [ + 216, 102, 159, 27, 156, 220, 200, 39, 144, 227, 193, 221, 159, 70, 189, 58, 149, 176, 123, 177, 191, 27, 90, 252, + 46, 74, 217, 164, 3, 100, 27, 145, 117, 182, 56, 45, 73, 64, 76, 255, 27, 117, 72, 72, 115, 203, 122, 186, 140, + 159, 27, 248, 202, 222, 102, 213, 1, 16, 10, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3763, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12127938775658430718" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3017365881898321436" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1ba84f180f54ce80fe9fd8669f1b29dfd6486beec61c80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 168, 79, 24, 15, 84, 206, 128, 254, 159, 216, 102, 159, 27, 41, 223, 214, 72, 107, 238, 198, + 28, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3764, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6970460441789917245" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5092164137385989299" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2081960552936766650" + } + } + ] + }, + "cborHex": "d8669f1b60bc0cd739cce83d9f1b46ab004db2e014b31b1ce49c179a2bfcbaffff", + "cborBytes": [ + 216, 102, 159, 27, 96, 188, 12, 215, 57, 204, 232, 61, 159, 27, 70, 171, 0, 77, 178, 224, 20, 179, 27, 28, 228, + 156, 23, 154, 43, 252, 186, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3765, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6259966391248775510" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "19c2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6970178899925518472" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8194865241438862343" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10524854915759168230" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f910f5771fc153be17218" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f450ddf124dc540" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5535f2f98bb3474edf63bc" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13366860817998136424" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7618798046713694587" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10572469870029120133" + } + }, + { + "_tag": "ByteArray", + "bytearray": "11bbf43bb8701c862b" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16312512780777212695" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a02ff0702fc053cff01020a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5263677051290110743" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0e638a6ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4602fe" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b56dfde44204469569f9f4219c2bf1b60bb0cc7a6fbc8881b71ba0284d228bc071b920fcbc866595ae64b9f910f5771fc153be17218488f450ddf124dc5404b5535f2f98bb3474edf63bcff1bb980a117e2ddc46841d49f1b69bb687515cf497b1b92b8f554d99b22854911bbf43bb8701c862bffffa0bf141be261aff25c3ecb174c3a02ff0702fc053cff01020a0e429e071b490c5663d685cb1745b0e638a6ad434602feffffff", + "cborBytes": [ + 216, 102, 159, 27, 86, 223, 222, 68, 32, 68, 105, 86, 159, 159, 66, 25, 194, 191, 27, 96, 187, 12, 199, 166, 251, + 200, 136, 27, 113, 186, 2, 132, 210, 40, 188, 7, 27, 146, 15, 203, 200, 102, 89, 90, 230, 75, 159, 145, 15, 87, + 113, 252, 21, 59, 225, 114, 24, 72, 143, 69, 13, 223, 18, 77, 197, 64, 75, 85, 53, 242, 249, 139, 179, 71, 78, + 223, 99, 188, 255, 27, 185, 128, 161, 23, 226, 221, 196, 104, 65, 212, 159, 27, 105, 187, 104, 117, 21, 207, 73, + 123, 27, 146, 184, 245, 84, 217, 155, 34, 133, 73, 17, 187, 244, 59, 184, 112, 28, 134, 43, 255, 255, 160, 191, + 20, 27, 226, 97, 175, 242, 92, 62, 203, 23, 76, 58, 2, 255, 7, 2, 252, 5, 60, 255, 1, 2, 10, 14, 66, 158, 7, 27, + 73, 12, 86, 99, 214, 133, 203, 23, 69, 176, 230, 56, 166, 173, 67, 70, 2, 254, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3766, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4393479447001596225" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8967393561022117783" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10095847588794834546" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2054798607224790810" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12384431397921002394" + } + } + ] + }, + "cborHex": "d905019fd8669f1b3cf8c647868281419fbf1b7c7294eeb5d9379741f61b8c1ba7e454999e721b1c841c724c99df1affffff1babde56bdaa46939aff", + "cborBytes": [ + 217, 5, 1, 159, 216, 102, 159, 27, 60, 248, 198, 71, 134, 130, 129, 65, 159, 191, 27, 124, 114, 148, 238, 181, + 217, 55, 151, 65, 246, 27, 140, 27, 167, 228, 84, 153, 158, 114, 27, 28, 132, 28, 114, 76, 153, 223, 26, 255, 255, + 255, 27, 171, 222, 86, 189, 170, 70, 147, 154, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3767, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "75f501bea770fa070b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1256067581940409632" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15250978780543681990" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4063d7230973" + }, + { + "_tag": "ByteArray", + "bytearray": "f0352f5e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17726528092959792381" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5558237307362370960" + } + } + ] + }, + "cborHex": "d905059f9f809f4975f501bea770fa070bff1b116e72cf937125209f1bd3a65c65d35385c6464063d723097344f0352f5eff1bf6014761a1d9dcfdff1b4d22d361daa86590ff", + "cborBytes": [ + 217, 5, 5, 159, 159, 128, 159, 73, 117, 245, 1, 190, 167, 112, 250, 7, 11, 255, 27, 17, 110, 114, 207, 147, 113, + 37, 32, 159, 27, 211, 166, 92, 101, 211, 83, 133, 198, 70, 64, 99, 215, 35, 9, 115, 68, 240, 53, 47, 94, 255, 27, + 246, 1, 71, 97, 161, 217, 220, 253, 255, 27, 77, 34, 211, 97, 218, 168, 101, 144, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3768, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "29f071cda49c966bba9c8e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4580110466948147658" + } + }, + { + "_tag": "ByteArray", + "bytearray": "755b4fb01e16" + }, + { + "_tag": "ByteArray", + "bytearray": "ee2b00" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10207622144903922884" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9810939389375356310" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18114573161337342633" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a950644437dee1dc7" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a45b069a65dc8826d03feb" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3772908944563206497" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f4b29f071cda49c966bba9c8e9f1b3f8fd234067e29ca46755b4fb01e1643ee2b00bf1b8da8c2422c68c4c41b88277564e09b1d961bfb63e450ab564aa9496a950644437dee1dc7ffff9f4ba45b069a65dc8826d03febff1b345c10b202957961a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 75, 41, 240, 113, 205, 164, 156, 150, 107, 186, + 156, 142, 159, 27, 63, 143, 210, 52, 6, 126, 41, 202, 70, 117, 91, 79, 176, 30, 22, 67, 238, 43, 0, 191, 27, 141, + 168, 194, 66, 44, 104, 196, 196, 27, 136, 39, 117, 100, 224, 155, 29, 150, 27, 251, 99, 228, 80, 171, 86, 74, 169, + 73, 106, 149, 6, 68, 67, 125, 238, 29, 199, 255, 255, 159, 75, 164, 91, 6, 154, 101, 220, 136, 38, 208, 63, 235, + 255, 27, 52, 92, 16, 178, 2, 149, 121, 97, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3769, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9609446100306251311" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12100913791382856843" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7144396876338645875" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eb2af7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5113625723917453367" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06a47b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f93ed422e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64ce74400c12673c89" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8675420419253812396" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ce2cb9076" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5922019029617174191" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ada30b2e4d35fff0f674c10c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01e5da5a7bfc98538fe8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc2c8286" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6683477c6ec88e8e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16099484351150931608" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0f245a87efea1515" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16993315383359829724" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "975818373293997948" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14340869462783902427" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8228607764814925506" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1164756856315292256" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9455348896888224158" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9a24a89c861" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12135947110150829470" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b15f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14326478351303388156" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17274188234987157669" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6066635670555913654" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10414196502479143772" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10108808442011440999" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d428f862a97f8d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58eb0a450c0539" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63a5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b45e60bae4ab54" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12942051077097026136" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4768532651155938687" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1012345459110605248" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9008321370905251311" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7952490736836570852" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f623103ac571b0c189d" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2244fd" + } + ] + }, + "cborHex": "d8669f1b855b9c50b1044e2f9fa01ba7ef14fad900248bd8669f1b6325ff1b3c934b739f43eb2af71b46f73f80b4664837bf4306a47b451f93ed422e4964ce74400c12673c891b786548e82ecb3cac459ce2cb90761b522f3cee656f66af4cada30b2e4d35fff0f674c10c4a01e5da5a7bfc98538fe844dc2c828649b6683477c6ec88e8e241de1bdf6cdbb7f94fbe98ff480f245a87efea1515ffffd8669f1bebd4624e8557f6dc9fbf1b0d8acda3f17cff7c1bc70500cb937b42db1b7231e32a41d08ec21b102a0c308e5faa601b833825b9a267799e46d9a24a89c8611ba86b8b990177f59e42b15f1bc6d1e027d3c32bfc1befba3ead59a438a5ffbf1b543104fffd32edb61b9086a88acf62835c1b8c49b3b8208fd76747d428f862a97f8d4758eb0a450c05394263a547b45e60bae4ab541bb39b66e27b547258ff9f1b422d3b2e74005d7f1b0e0c92d4d84471c0ffd8669f1b7d03fc8f075e0def9f1b6e5cec30e8ba6ee44a8f623103ac571b0c189dffffffff432244fdffff", + "cborBytes": [ + 216, 102, 159, 27, 133, 91, 156, 80, 177, 4, 78, 47, 159, 160, 27, 167, 239, 20, 250, 217, 0, 36, 139, 216, 102, + 159, 27, 99, 37, 255, 27, 60, 147, 75, 115, 159, 67, 235, 42, 247, 27, 70, 247, 63, 128, 180, 102, 72, 55, 191, + 67, 6, 164, 123, 69, 31, 147, 237, 66, 46, 73, 100, 206, 116, 64, 12, 18, 103, 60, 137, 27, 120, 101, 72, 232, 46, + 203, 60, 172, 69, 156, 226, 203, 144, 118, 27, 82, 47, 60, 238, 101, 111, 102, 175, 76, 173, 163, 11, 46, 77, 53, + 255, 240, 246, 116, 193, 12, 74, 1, 229, 218, 90, 123, 252, 152, 83, 143, 232, 68, 220, 44, 130, 134, 73, 182, + 104, 52, 119, 198, 236, 136, 232, 226, 65, 222, 27, 223, 108, 219, 183, 249, 79, 190, 152, 255, 72, 15, 36, 90, + 135, 239, 234, 21, 21, 255, 255, 216, 102, 159, 27, 235, 212, 98, 78, 133, 87, 246, 220, 159, 191, 27, 13, 138, + 205, 163, 241, 124, 255, 124, 27, 199, 5, 0, 203, 147, 123, 66, 219, 27, 114, 49, 227, 42, 65, 208, 142, 194, 27, + 16, 42, 12, 48, 142, 95, 170, 96, 27, 131, 56, 37, 185, 162, 103, 121, 158, 70, 217, 162, 74, 137, 200, 97, 27, + 168, 107, 139, 153, 1, 119, 245, 158, 66, 177, 95, 27, 198, 209, 224, 39, 211, 195, 43, 252, 27, 239, 186, 62, + 173, 89, 164, 56, 165, 255, 191, 27, 84, 49, 4, 255, 253, 50, 237, 182, 27, 144, 134, 168, 138, 207, 98, 131, 92, + 27, 140, 73, 179, 184, 32, 143, 215, 103, 71, 212, 40, 248, 98, 169, 127, 141, 71, 88, 235, 10, 69, 12, 5, 57, 66, + 99, 165, 71, 180, 94, 96, 186, 228, 171, 84, 27, 179, 155, 102, 226, 123, 84, 114, 88, 255, 159, 27, 66, 45, 59, + 46, 116, 0, 93, 127, 27, 14, 12, 146, 212, 216, 68, 113, 192, 255, 216, 102, 159, 27, 125, 3, 252, 143, 7, 94, 13, + 239, 159, 27, 110, 92, 236, 48, 232, 186, 110, 228, 74, 143, 98, 49, 3, 172, 87, 27, 12, 24, 157, 255, 255, 255, + 255, 67, 34, 68, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3770, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7504032106955003229" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "25cbabca055b4f89e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93082856ce02" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b0553fa00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16962737667485859833" + } + } + ] + }, + "cborHex": "d8669f1b6823ad71762dd55d9fbf4925cbabca055b4f89e74693082856ce02ffbf457b0553fa000aff1beb67c00940a1fff9ffff", + "cborBytes": [ + 216, 102, 159, 27, 104, 35, 173, 113, 118, 45, 213, 93, 159, 191, 73, 37, 203, 171, 202, 5, 91, 79, 137, 231, 70, + 147, 8, 40, 86, 206, 2, 255, 191, 69, 123, 5, 83, 250, 0, 10, 255, 27, 235, 103, 192, 9, 64, 161, 255, 249, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3771, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13260580028818425940" + }, + "fields": [] + }, + "cborHex": "d8669f1bb8070b47555c885480ff", + "cborBytes": [216, 102, 159, 27, 184, 7, 11, 71, 85, 92, 136, 84, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3772, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4498659973508839736" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9609241611298842052" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4511323631718758978" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13487535556000636004" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a74abb0a9d70" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ceccd85fb9d71209" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1024642487627127518" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "193718462000759458" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17412270134086791766" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13579359095760808436" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "082a47957cfd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8b65266f0071a742c7868e1" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eb089175f892a3c502" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9861082954361062774" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3897101290751168723" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5446503908546386322" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16898019417732640111" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8115163987551530031" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10996741019812145041" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7747a32b25f3639b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14477269163986983488" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14164191410352223330" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9144067673373986526" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "780447235380939473" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14146435768616251103" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3309347265048612325" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18443055780446041051" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e62e0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7a5fa" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5283358369804075466" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "51" + }, + { + "_tag": "ByteArray", + "bytearray": "91788371ed08" + }, + { + "_tag": "ByteArray", + "bytearray": "8f7f4bc06518" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6607814418286369754" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17333833647978171393" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8922959333098084369" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74389b23e99c07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "10d8fa40381126b4799634b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "826792506773102916" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3192830f396c4757851" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2683330081466051135" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f17015e0d434bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2242489267987049045" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f1b3e6e7369364339389fbf1b855ae255625ea5c41b3e9b70f0e76bfa421bbb2d5a20cede5c6446a74abb0a9d70ff48ceccd85fb9d71209bf1b0e3842e9e8c99ade1b02b039ea31fd82a21bf1a4cf6ecb62f2561bbc739326ac4ae9f446082a47957cfd4ca8b65266f0071a742c7868e1ff9f49eb089175f892a3c5021b88d99ab36359c5761b361548f9e8f090d31b4b95de72b0af1992ffffd8669f1bea81d321819b6d6f9fbf1b709edaa6940d2c2f1b989c45b1bcdea791487747a32b25f3639b1bc8e99799cd291a40ff1bc491510ae8aef4621b7ee6411a0196cedebf1b0ad4b4a026d10ad11bc4523c616a406edf1b2ded29cdcba20de51bfff2e5844e3373db432e62e043f7a5faffd8669f1b49524271e54241ca9f41514691788371ed08468f7f4bc065181b5bb3ac3427a9dbdaffffffffd8669f1bf08e25dd3f73cc019fbf1b7bd4b83cd29158114774389b23e99c074c10d8fa40381126b4799634b71b0b795b67852a61444aa3192830f396c47578511b253d1a7e00e76a3f47f17015e0d434bf1b1f1eec1ba6fe6a55ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 27, 62, 110, 115, 105, 54, 67, 57, 56, 159, 191, + 27, 133, 90, 226, 85, 98, 94, 165, 196, 27, 62, 155, 112, 240, 231, 107, 250, 66, 27, 187, 45, 90, 32, 206, 222, + 92, 100, 70, 167, 74, 187, 10, 157, 112, 255, 72, 206, 204, 216, 95, 185, 215, 18, 9, 191, 27, 14, 56, 66, 233, + 232, 201, 154, 222, 27, 2, 176, 57, 234, 49, 253, 130, 162, 27, 241, 164, 207, 110, 203, 98, 242, 86, 27, 188, + 115, 147, 38, 172, 74, 233, 244, 70, 8, 42, 71, 149, 124, 253, 76, 168, 182, 82, 102, 240, 7, 26, 116, 44, 120, + 104, 225, 255, 159, 73, 235, 8, 145, 117, 248, 146, 163, 197, 2, 27, 136, 217, 154, 179, 99, 89, 197, 118, 27, 54, + 21, 72, 249, 232, 240, 144, 211, 27, 75, 149, 222, 114, 176, 175, 25, 146, 255, 255, 216, 102, 159, 27, 234, 129, + 211, 33, 129, 155, 109, 111, 159, 191, 27, 112, 158, 218, 166, 148, 13, 44, 47, 27, 152, 156, 69, 177, 188, 222, + 167, 145, 72, 119, 71, 163, 43, 37, 243, 99, 155, 27, 200, 233, 151, 153, 205, 41, 26, 64, 255, 27, 196, 145, 81, + 10, 232, 174, 244, 98, 27, 126, 230, 65, 26, 1, 150, 206, 222, 191, 27, 10, 212, 180, 160, 38, 209, 10, 209, 27, + 196, 82, 60, 97, 106, 64, 110, 223, 27, 45, 237, 41, 205, 203, 162, 13, 229, 27, 255, 242, 229, 132, 78, 51, 115, + 219, 67, 46, 98, 224, 67, 247, 165, 250, 255, 216, 102, 159, 27, 73, 82, 66, 113, 229, 66, 65, 202, 159, 65, 81, + 70, 145, 120, 131, 113, 237, 8, 70, 143, 127, 75, 192, 101, 24, 27, 91, 179, 172, 52, 39, 169, 219, 218, 255, 255, + 255, 255, 216, 102, 159, 27, 240, 142, 37, 221, 63, 115, 204, 1, 159, 191, 27, 123, 212, 184, 60, 210, 145, 88, + 17, 71, 116, 56, 155, 35, 233, 156, 7, 76, 16, 216, 250, 64, 56, 17, 38, 180, 121, 150, 52, 183, 27, 11, 121, 91, + 103, 133, 42, 97, 68, 74, 163, 25, 40, 48, 243, 150, 196, 117, 120, 81, 27, 37, 61, 26, 126, 0, 231, 106, 63, 71, + 241, 112, 21, 224, 212, 52, 191, 27, 31, 30, 236, 27, 166, 254, 106, 85, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3773, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17536115136868613029" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8b71ea8eb7effb9c9eb09802" + }, + { + "_tag": "ByteArray", + "bytearray": "a4d538a69f5c00cc" + }, + { + "_tag": "ByteArray", + "bytearray": "78e8a9f183a50692cd94b7" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5116467061797182983" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10210375802199943558" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17803096737322732662" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14642867747392894687" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5018950192451048508" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f0207" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8594627012135996355" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e3a139830cc64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f564bf805fa2407b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d846" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e57468faef8a1d138582d9" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2198939087731855109" + } + } + ] + } + ] + }, + "cborHex": "d87b9f0dd87e9f1bf35ccbce81677ba59f4c8b71ea8eb7effb9c9eb0980248a4d538a69f5c00cc4b78e8a9f183a50692cd94b7ffd8669f1b470157af3b685e079f1b8db28ab1f95f29861bf7114e2862098c76ffff1bcb35eaa29060b6df1b45a6e49bc66c543cffbf431f02071bfffffffffffffffb41451b77463fbb3357cbc3476e3a139830cc640b418a07499f564bf805fa2407b01bffffffffffffffec42d8464be57468faef8a1d138582d9ff9f1b1e84337326fa8f05ffff", + "cborBytes": [ + 216, 123, 159, 13, 216, 126, 159, 27, 243, 92, 203, 206, 129, 103, 123, 165, 159, 76, 139, 113, 234, 142, 183, + 239, 251, 156, 158, 176, 152, 2, 72, 164, 213, 56, 166, 159, 92, 0, 204, 75, 120, 232, 169, 241, 131, 165, 6, 146, + 205, 148, 183, 255, 216, 102, 159, 27, 71, 1, 87, 175, 59, 104, 94, 7, 159, 27, 141, 178, 138, 177, 249, 95, 41, + 134, 27, 247, 17, 78, 40, 98, 9, 140, 118, 255, 255, 27, 203, 53, 234, 162, 144, 96, 182, 223, 27, 69, 166, 228, + 155, 198, 108, 84, 60, 255, 191, 67, 31, 2, 7, 27, 255, 255, 255, 255, 255, 255, 255, 251, 65, 69, 27, 119, 70, + 63, 187, 51, 87, 203, 195, 71, 110, 58, 19, 152, 48, 204, 100, 11, 65, 138, 7, 73, 159, 86, 75, 248, 5, 250, 36, + 7, 176, 27, 255, 255, 255, 255, 255, 255, 255, 236, 66, 216, 70, 75, 229, 116, 104, 250, 239, 138, 29, 19, 133, + 130, 217, 255, 159, 27, 30, 132, 51, 115, 38, 250, 143, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3774, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10666530591828308643" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "59d4ddaa66" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8822217791065135099" + } + }, + { + "_tag": "ByteArray", + "bytearray": "16fd" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b9407210f3fc372a39f9f4559d4ddaa669f1b7a6ed056bf9197fb4216fdffffffff", + "cborBytes": [ + 216, 102, 159, 27, 148, 7, 33, 15, 63, 195, 114, 163, 159, 159, 69, 89, 212, 221, 170, 102, 159, 27, 122, 110, + 208, 86, 191, 145, 151, 251, 66, 22, 253, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3775, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12870926765954523926" + }, + "fields": [] + }, + "cborHex": "d8669f1bb29eb7b356c9631680ff", + "cborBytes": [216, 102, 159, 27, 178, 158, 183, 179, 86, 201, 99, 22, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3776, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6262568717956937526" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9766618980141260599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4363591856473095098" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12525768505561861566" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16596251616224822926" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15664191588622467248" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15841722774430658904" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29fd8669f1b56e91d11874bf7369fbf1b878a003777e85f371b3c8e97ac95ddbbba1badd4781768ca4dbe1be651baea0c15468e1bd9626341e58100b01bdbd91aee2827b158ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 216, 102, 159, 27, 86, 233, 29, 17, 135, 75, 247, + 54, 159, 191, 27, 135, 138, 0, 55, 119, 232, 95, 55, 27, 60, 142, 151, 172, 149, 221, 187, 186, 27, 173, 212, 120, + 23, 104, 202, 77, 190, 27, 230, 81, 186, 234, 12, 21, 70, 142, 27, 217, 98, 99, 65, 229, 129, 0, 176, 27, 219, + 217, 26, 238, 40, 39, 177, 88, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3777, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16542196637794256432" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2941320120406493510" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6736242713067769515" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46c392598f7e9fdd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8270437850662211639" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e76878d1769c23a5d179af2f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13240932108629936569" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10275470722368387343" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14046629035766322147" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49beeabcbb6308343f" + } + } + ] + } + ] + }, + "cborHex": "d8669f1be591b032a06346309fbf1b28d1ab10d389c94641a81b5d7bf10eb137ceab4846c392598f7e9fdd1b72c67f6811aa90374ce76878d1769c23a5d179af2f1bb7c13d996df389b91b8e99ce2e22b1b90f1bc2efa6af908a13e34949beeabcbb6308343fffffff", + "cborBytes": [ + 216, 102, 159, 27, 229, 145, 176, 50, 160, 99, 70, 48, 159, 191, 27, 40, 209, 171, 16, 211, 137, 201, 70, 65, 168, + 27, 93, 123, 241, 14, 177, 55, 206, 171, 72, 70, 195, 146, 89, 143, 126, 159, 221, 27, 114, 198, 127, 104, 17, + 170, 144, 55, 76, 231, 104, 120, 209, 118, 156, 35, 165, 209, 121, 175, 47, 27, 183, 193, 61, 153, 109, 243, 137, + 185, 27, 142, 153, 206, 46, 34, 177, 185, 15, 27, 194, 239, 166, 175, 144, 138, 19, 227, 73, 73, 190, 234, 188, + 187, 99, 8, 52, 63, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3778, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d1a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "ByteArray", + "bytearray": "046e2c00f8" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f422d1ad8669f1bffffffffffffffec9fd905089f07ff0445046e2c00f8ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 66, 45, 26, 216, 102, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 236, 159, 217, 5, 8, 159, 7, 255, 4, 69, 4, 110, 44, 0, 248, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3779, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6ac75921ac8c2e6b20595d" + }, + { + "_tag": "ByteArray", + "bytearray": "9749b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6702051339210537281" + } + }, + { + "_tag": "ByteArray", + "bytearray": "61" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "59829d055877ad3a3c44c4" + }, + { + "_tag": "ByteArray", + "bytearray": "bd" + } + ] + }, + "cborHex": "d905059f9f9f4b6ac75921ac8c2e6b20595d439749b81b5d02782f1c1339414161ffff4b59829d055877ad3a3c44c441bdff", + "cborBytes": [ + 217, 5, 5, 159, 159, 159, 75, 106, 199, 89, 33, 172, 140, 46, 107, 32, 89, 93, 67, 151, 73, 184, 27, 93, 2, 120, + 47, 28, 19, 57, 65, 65, 97, 255, 255, 75, 89, 130, 157, 5, 88, 119, 173, 58, 60, 68, 196, 65, 189, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3780, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10182462763074575686" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "839bb72b527c25bac686b672" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b8d4f5fef1bb3dd469f4c839bb72b527c25bac686b67280a080ffff", + "cborBytes": [ + 216, 102, 159, 27, 141, 79, 95, 239, 27, 179, 221, 70, 159, 76, 131, 155, 183, 43, 82, 124, 37, 186, 198, 134, + 182, 114, 128, 160, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3781, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16966961957550173286" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3607ad5d03e905b7ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00c90116" + } + } + ] + } + ] + }, + "cborHex": "d8669f1beb76c2016d582c669fbf0a493607ad5d03e905b7ff134400c90116ffffff", + "cborBytes": [ + 216, 102, 159, 27, 235, 118, 194, 1, 109, 88, 44, 102, 159, 191, 10, 73, 54, 7, 173, 93, 3, 233, 5, 183, 255, 19, + 68, 0, 201, 1, 22, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3782, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14297638521116011577" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8993194264603920218" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bc66b6a7b9a0fac399fd9050280009f1b7cce3e8921cc075affffff", + "cborBytes": [ + 216, 102, 159, 27, 198, 107, 106, 123, 154, 15, 172, 57, 159, 217, 5, 2, 128, 0, 159, 27, 124, 206, 62, 137, 33, + 204, 7, 90, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3783, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "15fcf9" + }, + { + "_tag": "ByteArray", + "bytearray": "0389fee4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15149471966681539843" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15131157172034941243" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bd59f4" + }, + { + "_tag": "ByteArray", + "bytearray": "24e01024c05775" + }, + { + "_tag": "ByteArray", + "bytearray": "1ac37bbc637b6798b59a3d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "906275046657995582" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36b037931155d1eff1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4998205266998773181" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "657c3a48bc828ba8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8951235492124583897" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4586355711670974763" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11158632302185132988" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7322932944222623872" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12576663449964833261" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9445831911973525069" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6851163396183629936" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11400434437699859561" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9f4315fcf9440389fee49f809f1bd23dbc7d04caa5031bd1fcab4797bf313b43bd59f44724e01024c057754b1ac37bbc637b6798b59a3dffbf1b0c93bc5a70d9b33e4936b037931155d1eff11b455d31356df2c5bd48657c3a48bc828ba81b7c392d4120f467d91b3fa602385fbb792b1b9adb6cf536f1b3bc1b65a048b6d66518801bae8948c612cae9ed1b83165613e93b164dffd8669f1b5f1438cf4faf20709f1b9e367ab8103af469ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 67, 21, 252, 249, 68, 3, 137, 254, 228, 159, 128, + 159, 27, 210, 61, 188, 125, 4, 202, 165, 3, 27, 209, 252, 171, 71, 151, 191, 49, 59, 67, 189, 89, 244, 71, 36, + 224, 16, 36, 192, 87, 117, 75, 26, 195, 123, 188, 99, 123, 103, 152, 181, 154, 61, 255, 191, 27, 12, 147, 188, 90, + 112, 217, 179, 62, 73, 54, 176, 55, 147, 17, 85, 209, 239, 241, 27, 69, 93, 49, 53, 109, 242, 197, 189, 72, 101, + 124, 58, 72, 188, 130, 139, 168, 27, 124, 57, 45, 65, 32, 244, 103, 217, 27, 63, 166, 2, 56, 95, 187, 121, 43, 27, + 154, 219, 108, 245, 54, 241, 179, 188, 27, 101, 160, 72, 182, 214, 101, 24, 128, 27, 174, 137, 72, 198, 18, 202, + 233, 237, 27, 131, 22, 86, 19, 233, 59, 22, 77, 255, 216, 102, 159, 27, 95, 20, 56, 207, 79, 175, 32, 112, 159, + 27, 158, 54, 122, 184, 16, 58, 244, 105, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3784, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "54f2445c7a46" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "62458292d9804e72" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8811938d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6adbaee11ea520bbbed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1963724346506880138" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f77882dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10bb4ed6e7ed70d159" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffda6d0f89e2ea4984299e6a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4849822445799119166" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "755058186406286420" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1285982025409976051" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1888614562626219977" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14029517364660346983" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4579356456066540956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "386981281300098879" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13751687201206207090" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16379201653821599893" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14548797264101365999" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3208616307822887345" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17129605089619341413" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1734932866215462361" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1109753320426460092" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fbd6353cbe1462" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6516591844765679208" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b58c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb008f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "220123369004587954" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5825024008850899994" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7704721016089857282" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17324539398755089889" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ea0653b6cb865b3dc515fff5" + }, + { + "_tag": "ByteArray", + "bytearray": "8269307c52" + } + ] + } + ] + }, + "cborHex": "d905099f4654f2445c7a46a0bf4862458292d9804e72448811938d4ad6adbaee11ea520bbbed1b1b408ce38e54248a44f77882dc4910bb4ed6e7ed70d1594cffda6d0f89e2ea4984299e6a412cffd8669f1b434e07d1a992993e9fbf1b0a7a816b897f54541b11d8b9d6b41956f31b1a35b4f03af72fc91bc2b2dbb62ac120671b3f8d246f2fbce59c1b055ed56cce9e2f3f1bbed7cea6622e82721be34e9d1f9886f0951bc9e7b60763efd8ef1b2c874b88304f01b11bedb895128d7bf0651b1813b83fefec45d9ffd8669f1b0f66a2c3e45453bc80ff47fbd6353cbe1462bf1b5a6f95c1a5773e68437b58c043cb008f1b030e0909b047dbb2ff9f1b50d6a47947ae041a1b6aecaaf15985cd021bf06d20cb380e7de1ffffff9f4cea0653b6cb865b3dc515fff5458269307c52ffff", + "cborBytes": [ + 217, 5, 9, 159, 70, 84, 242, 68, 92, 122, 70, 160, 191, 72, 98, 69, 130, 146, 217, 128, 78, 114, 68, 136, 17, 147, + 141, 74, 214, 173, 186, 238, 17, 234, 82, 11, 187, 237, 27, 27, 64, 140, 227, 142, 84, 36, 138, 68, 247, 120, 130, + 220, 73, 16, 187, 78, 214, 231, 237, 112, 209, 89, 76, 255, 218, 109, 15, 137, 226, 234, 73, 132, 41, 158, 106, + 65, 44, 255, 216, 102, 159, 27, 67, 78, 7, 209, 169, 146, 153, 62, 159, 191, 27, 10, 122, 129, 107, 137, 127, 84, + 84, 27, 17, 216, 185, 214, 180, 25, 86, 243, 27, 26, 53, 180, 240, 58, 247, 47, 201, 27, 194, 178, 219, 182, 42, + 193, 32, 103, 27, 63, 141, 36, 111, 47, 188, 229, 156, 27, 5, 94, 213, 108, 206, 158, 47, 63, 27, 190, 215, 206, + 166, 98, 46, 130, 114, 27, 227, 78, 157, 31, 152, 134, 240, 149, 27, 201, 231, 182, 7, 99, 239, 216, 239, 27, 44, + 135, 75, 136, 48, 79, 1, 177, 27, 237, 184, 149, 18, 141, 123, 240, 101, 27, 24, 19, 184, 63, 239, 236, 69, 217, + 255, 216, 102, 159, 27, 15, 102, 162, 195, 228, 84, 83, 188, 128, 255, 71, 251, 214, 53, 60, 190, 20, 98, 191, 27, + 90, 111, 149, 193, 165, 119, 62, 104, 67, 123, 88, 192, 67, 203, 0, 143, 27, 3, 14, 9, 9, 176, 71, 219, 178, 255, + 159, 27, 80, 214, 164, 121, 71, 174, 4, 26, 27, 106, 236, 170, 241, 89, 133, 205, 2, 27, 240, 109, 32, 203, 56, + 14, 125, 225, 255, 255, 255, 159, 76, 234, 6, 83, 182, 203, 134, 91, 61, 197, 21, 255, 245, 69, 130, 105, 48, 124, + 82, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3785, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17130119517393657688" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "730c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14277245792296835237" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93d0d6358a16cdb1bb04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11fca101df03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d042bf9de71176211698" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26a1a40590" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13116391267973890038" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "961c5f" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15471889246046810451" + } + } + ] + }, + "cborHex": "d8669f1bedba68f11a3c1f589fbf42730c1bc622f7676ccb18a54a93d0d6358a16cdb1bb044611fca101df034ad042bf9de711762116984526a1a40590ffbf1bb606c85d569e7ff643961c5fff1bd6b7314bb2ce7153ffff", + "cborBytes": [ + 216, 102, 159, 27, 237, 186, 104, 241, 26, 60, 31, 88, 159, 191, 66, 115, 12, 27, 198, 34, 247, 103, 108, 203, 24, + 165, 74, 147, 208, 214, 53, 138, 22, 205, 177, 187, 4, 70, 17, 252, 161, 1, 223, 3, 74, 208, 66, 191, 157, 231, + 17, 118, 33, 22, 152, 69, 38, 161, 164, 5, 144, 255, 191, 27, 182, 6, 200, 93, 86, 158, 127, 246, 67, 150, 28, 95, + 255, 27, 214, 183, 49, 75, 178, 206, 113, 83, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3786, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3839386105649233913" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13346039055325487441" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5276354907737431703" + } + } + ] + } + ] + }, + "cborHex": "d87b9f1b35483d5236cafff91bb936a7cf7b2a61519f1b493960d550941e97ffff", + "cborBytes": [ + 216, 123, 159, 27, 53, 72, 61, 82, 54, 202, 255, 249, 27, 185, 54, 167, 207, 123, 42, 97, 81, 159, 27, 73, 57, 96, + 213, 80, 148, 30, 151, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3787, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16113532319930662482" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9bba072cdbc7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17700113922375069129" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1723969710378285157" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4608c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "858240418a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fa1975e810180" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90e1419719a56c8d6c6e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d57" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a90bc219" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f456b3cca5a77fe" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bc8a1f2093e4675e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12666394639523105111" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d9573377fb0e53" + } + ] + }, + "cborHex": "d8669f1bdf9ec445963e3e529f9f469bba072cdbc71bf5a36fd54b1cadc91b17ecc5514ea17865bf417d434608c945858240418a471fa1975e8101804a90e1419719a56c8d6c6e423d57ffffbf44a90bc219488f456b3cca5a77feff48bc8a1f2093e4675e1bafc812d0b1afc95747d9573377fb0e53ffff", + "cborBytes": [ + 216, 102, 159, 27, 223, 158, 196, 69, 150, 62, 62, 82, 159, 159, 70, 155, 186, 7, 44, 219, 199, 27, 245, 163, 111, + 213, 75, 28, 173, 201, 27, 23, 236, 197, 81, 78, 161, 120, 101, 191, 65, 125, 67, 70, 8, 201, 69, 133, 130, 64, + 65, 138, 71, 31, 161, 151, 94, 129, 1, 128, 74, 144, 225, 65, 151, 25, 165, 108, 141, 108, 110, 66, 61, 87, 255, + 255, 191, 68, 169, 11, 194, 25, 72, 143, 69, 107, 60, 202, 90, 119, 254, 255, 72, 188, 138, 31, 32, 147, 228, 103, + 94, 27, 175, 200, 18, 208, 177, 175, 201, 87, 71, 217, 87, 51, 119, 251, 14, 83, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3788, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "264771608700356900" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + ] + }, + "cborHex": "d8669f1b03aca860133189249f1bfffffffffffffff1ffff", + "cborBytes": [ + 216, 102, 159, 27, 3, 172, 168, 96, 19, 49, 137, 36, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3789, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6191275581082130672" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1012667459707133744" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2918409976765768048" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7204449611426977995" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e90a4f8e56b41f85bf76aaa0" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4958776102468409103" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2972738415090947478" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6889633073841428168" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5aee00040c7193664fe066c1" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905009fd8669f1b55ebd45694f358f09fbf1b0e0db7b07370df301b28804669561461701b63fb58c0334e58cb4ce90a4f8e56b41f85bf76aaa0ffa0bf1b44d11c97ac53570f1b294149d699a755961b5f9ce4c71f19d6c84c5aee00040c7193664fe066c1ffffffff", + "cborBytes": [ + 217, 5, 0, 159, 216, 102, 159, 27, 85, 235, 212, 86, 148, 243, 88, 240, 159, 191, 27, 14, 13, 183, 176, 115, 112, + 223, 48, 27, 40, 128, 70, 105, 86, 20, 97, 112, 27, 99, 251, 88, 192, 51, 78, 88, 203, 76, 233, 10, 79, 142, 86, + 180, 31, 133, 191, 118, 170, 160, 255, 160, 191, 27, 68, 209, 28, 151, 172, 83, 87, 15, 27, 41, 65, 73, 214, 153, + 167, 85, 150, 27, 95, 156, 228, 199, 31, 25, 214, 200, 76, 90, 238, 0, 4, 12, 113, 147, 102, 79, 224, 102, 193, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3790, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "47d5faba093e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11856365817459222555" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac96fe8f82e7858f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3a8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c42ca8306685" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16495480456664632805" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb56a5ea9a88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1986072882390013312" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0846560c4501821" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2a35ce876e7d48ba0f256b0" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3153078661015776748" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "391e682b3d1c3196e326" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67b31f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e62a9c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8127730c8ab4e0ea0c0df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18087619164078516456" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4251552908651631722" + } + } + ] + }, + "cborHex": "d905019fbf4647d5faba093e1ba48a45e4acbda81b48ac96fe8f82e7858f42b3a846c42ca83066851be4ebb8141ae4cde546cb56a5ea9a881b1b8ff2c38ce4958048f0846560c45018214ca2a35ce876e7d48ba0f256b0ff80bf1b2bc1fc5622b5adec4a391e682b3d1c3196e3264367b31f43e62a9c4ba8127730c8ab4e0ea0c0df1bfb0421cc2372a8e8ff1b3b008cd83ff5946aff", + "cborBytes": [ + 217, 5, 1, 159, 191, 70, 71, 213, 250, 186, 9, 62, 27, 164, 138, 69, 228, 172, 189, 168, 27, 72, 172, 150, 254, + 143, 130, 231, 133, 143, 66, 179, 168, 70, 196, 44, 168, 48, 102, 133, 27, 228, 235, 184, 20, 26, 228, 205, 229, + 70, 203, 86, 165, 234, 154, 136, 27, 27, 143, 242, 195, 140, 228, 149, 128, 72, 240, 132, 101, 96, 196, 80, 24, + 33, 76, 162, 163, 92, 232, 118, 231, 212, 139, 160, 242, 86, 176, 255, 128, 191, 27, 43, 193, 252, 86, 34, 181, + 173, 236, 74, 57, 30, 104, 43, 61, 28, 49, 150, 227, 38, 67, 103, 179, 31, 67, 230, 42, 156, 75, 168, 18, 119, 48, + 200, 171, 78, 14, 160, 192, 223, 27, 251, 4, 33, 204, 35, 114, 168, 232, 255, 27, 59, 0, 140, 216, 63, 245, 148, + 106, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3791, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7819026477177224408" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "78" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2969266183298221230" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fcd217970de3" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b6c82c3276d85bcd89f4178d8669f1b2934f3dca31204ae9f9f46fcd217970de3ffffffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 108, 130, 195, 39, 109, 133, 188, 216, 159, 65, 120, 216, 102, 159, 27, 41, 52, 243, 220, 163, + 18, 4, 174, 159, 159, 70, 252, 210, 23, 151, 13, 227, 255, 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3792, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18338665870468239789" + }, + "fields": [] + }, + "cborHex": "d8669f1bfe8007725fd6d1ad80ff", + "cborBytes": [216, 102, 159, 27, 254, 128, 7, 114, 95, 214, 209, 173, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3793, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dc" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fa8006" + } + ] + }, + "cborHex": "d905019fd905049f9f41dcffff43fa8006ff", + "cborBytes": [217, 5, 1, 159, 217, 5, 4, 159, 159, 65, 220, 255, 255, 67, 250, 128, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3794, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14182907859788649538" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dffff800" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4544492761267924225" + } + } + ] + }, + "cborHex": "d8669f1bc4d3cf8de0cc54429f44dffff8001b3f114816afb56d01ffff", + "cborBytes": [ + 216, 102, 159, 27, 196, 211, 207, 141, 224, 204, 84, 66, 159, 68, 223, 255, 248, 0, 27, 63, 17, 72, 22, 175, 181, + 109, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3795, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3339134535960288579" + }, + "fields": [] + }, + "cborHex": "d8669f1b2e56fd2b4126dd4380ff", + "cborBytes": [216, 102, 159, 27, 46, 86, 253, 43, 65, 38, 221, 67, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3796, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14767987518798629741" + }, + "fields": [] + }, + "cborHex": "d8669f1bccf26e6779650b6d80ff", + "cborBytes": [216, 102, 159, 27, 204, 242, 110, 103, 121, 101, 11, 109, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3797, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14093991282358368322" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8886762765233592138" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12057676838986893617" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17270419715177120481" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14302426061195189271" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18259914309661157668" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14937956842922395480" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d65b9c9ef5535d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16585376874636701249" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5028027856873474667" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fa02ffe8ae1c5dc1841" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "46" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff0779" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12303707798191198839" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bc397ea65ec6c38429f9fa0bf1b7b541fa6a0ea974a41e31ba75579336444c9311befacdb3a750902e11bc67c6cb9a3d41c171bfd683f51c86ce9241bcf4e489a9c81475847d65b9c9ef5535d1be62b1864f6b2ee411b45c724b239b64a6bffbf4a0fa02ffe8ae1c5dc18411bfffffffffffffff2ff4146ffbf43ff07791baabf8d0dfb63d277ffffff", + "cborBytes": [ + 216, 102, 159, 27, 195, 151, 234, 101, 236, 108, 56, 66, 159, 159, 160, 191, 27, 123, 84, 31, 166, 160, 234, 151, + 74, 65, 227, 27, 167, 85, 121, 51, 100, 68, 201, 49, 27, 239, 172, 219, 58, 117, 9, 2, 225, 27, 198, 124, 108, + 185, 163, 212, 28, 23, 27, 253, 104, 63, 81, 200, 108, 233, 36, 27, 207, 78, 72, 154, 156, 129, 71, 88, 71, 214, + 91, 156, 158, 245, 83, 93, 27, 230, 43, 24, 100, 246, 178, 238, 65, 27, 69, 199, 36, 178, 57, 182, 74, 107, 255, + 191, 74, 15, 160, 47, 254, 138, 225, 197, 220, 24, 65, 27, 255, 255, 255, 255, 255, 255, 255, 242, 255, 65, 70, + 255, 191, 67, 255, 7, 121, 27, 170, 191, 141, 13, 251, 99, 210, 119, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3798, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3747648460592383111" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13678905012286181171" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87fd4b6e28" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9140220a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88e7b05998" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4494090227161857600" + } + } + ] + }, + "cborHex": "d8669f1b3402526b44a604879fbf1bbdd53ba27da0cf334587fd4b6e28449140220a4588e7b05998ff1b3e5e37403a897e40ffff", + "cborBytes": [ + 216, 102, 159, 27, 52, 2, 82, 107, 68, 166, 4, 135, 159, 191, 27, 189, 213, 59, 162, 125, 160, 207, 51, 69, 135, + 253, 75, 110, 40, 68, 145, 64, 34, 10, 69, 136, 231, 176, 89, 152, 255, 27, 62, 94, 55, 64, 58, 137, 126, 64, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3799, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13472955228803665995" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a5758da69" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2460980240038565684" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15744655163356915169" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "950fe29dc3ff92" + }, + { + "_tag": "ByteArray", + "bytearray": "a22e540a2581de01c512" + }, + { + "_tag": "ByteArray", + "bytearray": "077b1abbdbdd9d0d756e4f" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6306941285985925993" + } + }, + { + "_tag": "ByteArray", + "bytearray": "32bd" + }, + { + "_tag": "ByteArray", + "bytearray": "7a0044f72e4faf7e" + }, + { + "_tag": "ByteArray", + "bytearray": "29" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f1bbaf98d65d795904b458a5758da691b2227287d4ec11734d8669f1bda804073cae8a5e19f9f47950fe29dc3ff924aa22e540a2581de01c5124b077b1abbdbdd9d0d756e4fff80a0ffff9f1b5786c1af1a6fbb694232bd487a0044f72e4faf7e4129ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 27, 186, 249, 141, 101, 215, 149, 144, 75, 69, + 138, 87, 88, 218, 105, 27, 34, 39, 40, 125, 78, 193, 23, 52, 216, 102, 159, 27, 218, 128, 64, 115, 202, 232, 165, + 225, 159, 159, 71, 149, 15, 226, 157, 195, 255, 146, 74, 162, 46, 84, 10, 37, 129, 222, 1, 197, 18, 75, 7, 123, + 26, 187, 219, 221, 157, 13, 117, 110, 79, 255, 128, 160, 255, 255, 159, 27, 87, 134, 193, 175, 26, 111, 187, 105, + 66, 50, 189, 72, 122, 0, 68, 247, 46, 79, 175, 126, 65, 41, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3800, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "000307065f06f8b83cfb" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a0815924d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9895203170366059101" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7203b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4884687146309861812" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99c77ec3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15046909927299840978" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c6b86bf4b4dc609492a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4457466615367334651" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbed0fe2ce0d7409348473" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15567049576638029134" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5621c7b44ace4c202b77e0d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "889d048b79" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17921109163233237372" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f4a000307065f06f8b83cfbbf455a0815924d1b8952d2db3dfcf25d437203b91b43c9e51452b741b44499c77ec31bd0d15cdb60017bd24a9c6b86bf4b4dc609492a1b3ddc1a451f21fafb4bbbed0fe2ce0d74093484731bd809451cb8679d4e4cf5621c7b44ace4c202b77e0d45889d048b79ff9fbf1bf8b491d57783d97c4126ffff06ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 74, 0, 3, 7, 6, 95, 6, 248, 184, 60, 251, 191, 69, + 90, 8, 21, 146, 77, 27, 137, 82, 210, 219, 61, 252, 242, 93, 67, 114, 3, 185, 27, 67, 201, 229, 20, 82, 183, 65, + 180, 68, 153, 199, 126, 195, 27, 208, 209, 92, 219, 96, 1, 123, 210, 74, 156, 107, 134, 191, 75, 77, 198, 9, 73, + 42, 27, 61, 220, 26, 69, 31, 33, 250, 251, 75, 187, 237, 15, 226, 206, 13, 116, 9, 52, 132, 115, 27, 216, 9, 69, + 28, 184, 103, 157, 78, 76, 245, 98, 28, 123, 68, 172, 228, 194, 2, 183, 126, 13, 69, 136, 157, 4, 139, 121, 255, + 159, 191, 27, 248, 180, 145, 213, 119, 131, 217, 124, 65, 38, 255, 255, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3801, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "87df136af2f66b10b6" + } + ] + }, + "cborHex": "d905019f4987df136af2f66b10b6ff", + "cborBytes": [217, 5, 1, 159, 73, 135, 223, 19, 106, 242, 246, 107, 16, 182, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3802, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3151455662716383801" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5de186019a5abe14ea" + }, + { + "_tag": "ByteArray", + "bytearray": "6f9c1b" + }, + { + "_tag": "ByteArray", + "bytearray": "fa87c9539a36c2" + } + ] + }, + "cborHex": "d8669f1b2bbc383a659a72399f495de186019a5abe14ea436f9c1b47fa87c9539a36c2ffff", + "cborBytes": [ + 216, 102, 159, 27, 43, 188, 56, 58, 101, 154, 114, 57, 159, 73, 93, 225, 134, 1, 154, 90, 190, 20, 234, 67, 111, + 156, 27, 71, 250, 135, 201, 83, 154, 54, 194, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3803, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8503047664638192956" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18396429802208975277" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9772876427286852244" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a41eb4dd68bd8a662" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "073032d57bfea2" + }, + { + "_tag": "ByteArray", + "bytearray": "4b2bbaee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4073309951407857888" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18337967997991824941" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1924c49a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f916963604ca3823" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1480df1d12d60d694" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "47542109266403993" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03fdbe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fbe4e0492" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06bcfd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6790821489845093387" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c50f658f9ffc4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c5fa7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a670c94a7a06c3c76d48d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1399626322201353116" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba31fc635ad3b08945" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6855937811795232225" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db7bb97811" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12218276765365846476" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4949177857149131910" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5371b4d9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6913334500523025194" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bde55f6d911e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9960252853997355194" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3253355189413390875" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7600e4ccc6f96d3c9f1bff4d3f6fc81359ad1b87a03b54ea38b294498a41eb4dd68bd8a6629f9f47073032d57bfea2444b2bbaee1b38874dd1c9baa0e01bfe7d8cbc46c8ae2dff80bf441924c49a48f916963604ca382349a1480df1d12d60d6941b00a8e74be6b26299ffbf4303fdbe456fbe4e04924306bcfd1b5e3dd82a6b4e440b473c50f658f9ffc4434c5fa74ba670c94a7a06c3c76d48d11b136c78b979191b9c49ba31fc635ad3b089451b5f252f1d923945e145db7bb978111ba99009fb9f0a41ccffffbf1b44af030a099a5c86445371b4d91b5ff119198d20a32a46bde55f6d911e1b8a39ed32f39540ba1b2d263d4ec928aa1bffffff", + "cborBytes": [ + 216, 102, 159, 27, 118, 0, 228, 204, 198, 249, 109, 60, 159, 27, 255, 77, 63, 111, 200, 19, 89, 173, 27, 135, 160, + 59, 84, 234, 56, 178, 148, 73, 138, 65, 235, 77, 214, 139, 216, 166, 98, 159, 159, 71, 7, 48, 50, 213, 123, 254, + 162, 68, 75, 43, 186, 238, 27, 56, 135, 77, 209, 201, 186, 160, 224, 27, 254, 125, 140, 188, 70, 200, 174, 45, + 255, 128, 191, 68, 25, 36, 196, 154, 72, 249, 22, 150, 54, 4, 202, 56, 35, 73, 161, 72, 13, 241, 209, 45, 96, 214, + 148, 27, 0, 168, 231, 75, 230, 178, 98, 153, 255, 191, 67, 3, 253, 190, 69, 111, 190, 78, 4, 146, 67, 6, 188, 253, + 27, 94, 61, 216, 42, 107, 78, 68, 11, 71, 60, 80, 246, 88, 249, 255, 196, 67, 76, 95, 167, 75, 166, 112, 201, 74, + 122, 6, 195, 199, 109, 72, 209, 27, 19, 108, 120, 185, 121, 25, 27, 156, 73, 186, 49, 252, 99, 90, 211, 176, 137, + 69, 27, 95, 37, 47, 29, 146, 57, 69, 225, 69, 219, 123, 185, 120, 17, 27, 169, 144, 9, 251, 159, 10, 65, 204, 255, + 255, 191, 27, 68, 175, 3, 10, 9, 154, 92, 134, 68, 83, 113, 180, 217, 27, 95, 241, 25, 25, 141, 32, 163, 42, 70, + 189, 229, 95, 109, 145, 30, 27, 138, 57, 237, 50, 243, 149, 64, 186, 27, 45, 38, 61, 78, 201, 40, 170, 27, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3804, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9368086949429264024" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15763842356718465705" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b9ca8491e05b65b3a6488537" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15059687590594693797" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5884277578196490518" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17797c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f70f6b68a213" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d7913937d8058c4a86b2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11c55901dd43d70607" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10519709356152059055" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32cf91fe4cf8b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0b95224f2637f8ba9d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3fd5" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b820221723db43e989f9fd8669f1bdac46b1a5f75f2a99f4cb9ca8491e05b65b3a64885371bd0fec212f1c14aa51b51a92747f83299164317797cffff46f70f6b68a213ff4ad7913937d8058c4a86b2bf4911c55901dd43d706071b91fd83ec71cbf4af4732cf91fe4cf8b5413f4aa0b95224f2637f8ba9d4423fd5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 130, 2, 33, 114, 61, 180, 62, 152, 159, 159, 216, 102, 159, 27, 218, 196, 107, 26, 95, 117, + 242, 169, 159, 76, 185, 202, 132, 145, 224, 91, 101, 179, 166, 72, 133, 55, 27, 208, 254, 194, 18, 241, 193, 74, + 165, 27, 81, 169, 39, 71, 248, 50, 153, 22, 67, 23, 121, 124, 255, 255, 70, 247, 15, 107, 104, 162, 19, 255, 74, + 215, 145, 57, 55, 216, 5, 140, 74, 134, 178, 191, 73, 17, 197, 89, 1, 221, 67, 215, 6, 7, 27, 145, 253, 131, 236, + 113, 203, 244, 175, 71, 50, 207, 145, 254, 76, 248, 181, 65, 63, 74, 160, 185, 82, 36, 242, 99, 127, 139, 169, + 212, 66, 63, 213, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3805, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11814123529904676334" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17533462420796466442" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05d49a3f69df2491" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3442528082663541579" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "78cde86627da9f77" + }, + { + "_tag": "ByteArray", + "bytearray": "e2e109" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10719263036565123381" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5080adc5bd3d3f13064b" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9f9fd8669f1ba3f432c1ac8d5dee9f1bf3535f2cea3be50affff9f4805d49a3f69df2491ffd8669f1b2fc6510d48778b4b9f4878cde86627da9f7743e2e1091b94c278f04c707135ffff4a5080adc5bd3d3f13064bff8080ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 159, 216, 102, 159, 27, 163, 244, 50, 193, 172, + 141, 93, 238, 159, 27, 243, 83, 95, 44, 234, 59, 229, 10, 255, 255, 159, 72, 5, 212, 154, 63, 105, 223, 36, 145, + 255, 216, 102, 159, 27, 47, 198, 81, 13, 72, 119, 139, 75, 159, 72, 120, 205, 232, 102, 39, 218, 159, 119, 67, + 226, 225, 9, 27, 148, 194, 120, 240, 76, 112, 113, 53, 255, 255, 74, 80, 128, 173, 197, 189, 61, 63, 19, 6, 75, + 255, 128, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3806, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10922969768103283914" + }, + "fields": [] + }, + "cborHex": "d8669f1b97962f21b8208cca80ff", + "cborBytes": [216, 102, 159, 27, 151, 150, 47, 33, 184, 32, 140, 202, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3807, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16173938511459675181" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12820727676887898370" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "88561efe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13457582681628434488" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17601136701566134930" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8776197789638550146" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2a72b0fafb013ab3bdb482fc" + }, + { + "_tag": "ByteArray", + "bytearray": "d359bdce12608f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14603150163405449958" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7291171031713246595" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d69efddfe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0e92cb31811" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aeb7598707c0" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1be0755f620a906c2d9f809f1bb1ec5fe51eec1902ff9f9f4488561efe1bbac2f025c9e960381bf443cc9343f0aa921b79cb516431f962824175ff9f4c2a72b0fafb013ab3bdb482fc47d359bdce12608f1bcaa8cfb3eb782ae6ff1b652f716c4de2ed83bf452d69efddfe46b0e92cb31811ff9f46aeb7598707c0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 224, 117, 95, 98, 10, 144, 108, 45, 159, 128, 159, 27, 177, 236, 95, 229, 30, 236, 25, 2, 255, + 159, 159, 68, 136, 86, 30, 254, 27, 186, 194, 240, 37, 201, 233, 96, 56, 27, 244, 67, 204, 147, 67, 240, 170, 146, + 27, 121, 203, 81, 100, 49, 249, 98, 130, 65, 117, 255, 159, 76, 42, 114, 176, 250, 251, 1, 58, 179, 189, 180, 130, + 252, 71, 211, 89, 189, 206, 18, 96, 143, 27, 202, 168, 207, 179, 235, 120, 42, 230, 255, 27, 101, 47, 113, 108, + 77, 226, 237, 131, 191, 69, 45, 105, 239, 221, 254, 70, 176, 233, 44, 179, 24, 17, 255, 159, 70, 174, 183, 89, + 135, 7, 192, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3808, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16546885856182274531" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd0301c1f801" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5040635035422642919" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb94bb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "055200" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2174189588158992080" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "547cc1bd02ba5d235325" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f9f1be5a259045cae09e346fd0301c1f801d8669f1b45f3eedbb8c152e780ffffd87c9f9f43cb94bb03ffff430552001b1e2c45e93c91ced09f4a547cc1bd02ba5d235325ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 159, 27, 229, 162, 89, 4, 92, 174, 9, 227, 70, + 253, 3, 1, 193, 248, 1, 216, 102, 159, 27, 69, 243, 238, 219, 184, 193, 82, 231, 128, 255, 255, 216, 124, 159, + 159, 67, 203, 148, 187, 3, 255, 255, 67, 5, 82, 0, 27, 30, 44, 69, 233, 60, 145, 206, 208, 159, 74, 84, 124, 193, + 189, 2, 186, 93, 35, 83, 37, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3809, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8057473891278011850" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11998192696969115611" + } + } + ] + }, + "cborHex": "d9050b9fbf1141051bfffffffffffffffc1b6fd1e5d0549c3dcaff1ba68224b05187b7dbff", + "cborBytes": [ + 217, 5, 11, 159, 191, 17, 65, 5, 27, 255, 255, 255, 255, 255, 255, 255, 252, 27, 111, 209, 229, 208, 84, 156, 61, + 202, 255, 27, 166, 130, 36, 176, 81, 135, 183, 219, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3810, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12250205236910654885" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8a31b44187e5de76b2" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6178166462916398477" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10606174018493413185" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18147556074535483204" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6716075654562840627" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14822909467490437567" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3995531669665200720" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50b2ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18308576425310233562" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0817f007a7cc" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "45d154e719" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a8e33dc5b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "792a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "592d9f6c031a064216e0" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16982913149684403188" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14042844952816343135" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ee2d403e9ae236" + } + ] + }, + "cborHex": "d8799fd8669f1baa0178c233b085a59f9f498a31b44187e5de76b2ffbf1b55bd41aa295d0d8d1b9330b3136e46f741ffffffd8669f1bfbd91219942b77449f1b5d344b397ade0033bf1bcdb58da0238ac9bf1b3772fae26337ba504350b2ea1bfe1521417db523daff460817f007a7cc80ffffbf4545d154e719452a8e33dc5b42792a4a592d9f6c031a064216e0ffbf1bebaf6d87c23fcbf41bc2e235151881585fff47ee2d403e9ae236ff", + "cborBytes": [ + 216, 121, 159, 216, 102, 159, 27, 170, 1, 120, 194, 51, 176, 133, 165, 159, 159, 73, 138, 49, 180, 65, 135, 229, + 222, 118, 178, 255, 191, 27, 85, 189, 65, 170, 41, 93, 13, 141, 27, 147, 48, 179, 19, 110, 70, 247, 65, 255, 255, + 255, 216, 102, 159, 27, 251, 217, 18, 25, 148, 43, 119, 68, 159, 27, 93, 52, 75, 57, 122, 222, 0, 51, 191, 27, + 205, 181, 141, 160, 35, 138, 201, 191, 27, 55, 114, 250, 226, 99, 55, 186, 80, 67, 80, 178, 234, 27, 254, 21, 33, + 65, 125, 181, 35, 218, 255, 70, 8, 23, 240, 7, 167, 204, 128, 255, 255, 191, 69, 69, 209, 84, 231, 25, 69, 42, + 142, 51, 220, 91, 66, 121, 42, 74, 89, 45, 159, 108, 3, 26, 6, 66, 22, 224, 255, 191, 27, 235, 175, 109, 135, 194, + 63, 203, 244, 27, 194, 226, 53, 21, 24, 129, 88, 95, 255, 71, 238, 45, 64, 62, 154, 226, 54, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3811, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16021768817341985719" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e0548d4d41b779" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9671227457793587741" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "374968206074286991" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5623117304372916942" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "31" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5662480845664591808" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "425dc62df72a7c746368229e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5465656114970858403" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97d859fa6b46c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14866834818603167753" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1846087233396524923" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b16a53b3c8d7f3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9666077489702214159" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a4ac7d2559e5053496f55" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9932570656255246302" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6133448062597181684" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "635ca0d4a4e278" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91083a94295f1cabada4f6" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9aa50e5c34a3c9df18" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5135429730327179208" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a093413f8c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13098473314156344568" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4528311080464843507" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15395355120856947799" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12054198665814022479" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2c59d10040baa96c8f6" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13316168396335896143" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18123319961574406492" + } + } + ] + }, + "cborHex": "d8669f1bde58c1da371973b79f47e0548d4d41b7791b86371a21ebca7a1dd8669f1b05342798c51f938f9fd8669f1b4e095365517ff2ce80ffbf41311b4e952c53f94a9fc04c425dc62df72a7c746368229e1b4bd9e9473d4793a34797d859fa6b46c91bce519b7fe9403009ffbf1b199e9e8ecafbc77b47b16a53b3c8d7f31b8624ce4389199a0f4b0a4ac7d2559e5053496f551b89d79463088fffde1b551e62843b69b0f447635ca0d4a4e2784b91083a94295f1cabada4f6ffbf499aa50e5c34a3c9df181b4744b6218d21afc845a093413f8c1bb5c720149e38f4f8ffbf1b3ed7caef879282f31bd5a749ea11ab5c571ba7491dd217d5194f4af2c59d10040baa96c8f6ffffff1bb8cc889ab8e2564f1bfb82f77bcc63795cffff", + "cborBytes": [ + 216, 102, 159, 27, 222, 88, 193, 218, 55, 25, 115, 183, 159, 71, 224, 84, 141, 77, 65, 183, 121, 27, 134, 55, 26, + 33, 235, 202, 122, 29, 216, 102, 159, 27, 5, 52, 39, 152, 197, 31, 147, 143, 159, 216, 102, 159, 27, 78, 9, 83, + 101, 81, 127, 242, 206, 128, 255, 191, 65, 49, 27, 78, 149, 44, 83, 249, 74, 159, 192, 76, 66, 93, 198, 45, 247, + 42, 124, 116, 99, 104, 34, 158, 27, 75, 217, 233, 71, 61, 71, 147, 163, 71, 151, 216, 89, 250, 107, 70, 201, 27, + 206, 81, 155, 127, 233, 64, 48, 9, 255, 191, 27, 25, 158, 158, 142, 202, 251, 199, 123, 71, 177, 106, 83, 179, + 200, 215, 243, 27, 134, 36, 206, 67, 137, 25, 154, 15, 75, 10, 74, 199, 210, 85, 158, 80, 83, 73, 111, 85, 27, + 137, 215, 148, 99, 8, 143, 255, 222, 27, 85, 30, 98, 132, 59, 105, 176, 244, 71, 99, 92, 160, 212, 164, 226, 120, + 75, 145, 8, 58, 148, 41, 95, 28, 171, 173, 164, 246, 255, 191, 73, 154, 165, 14, 92, 52, 163, 201, 223, 24, 27, + 71, 68, 182, 33, 141, 33, 175, 200, 69, 160, 147, 65, 63, 140, 27, 181, 199, 32, 20, 158, 56, 244, 248, 255, 191, + 27, 62, 215, 202, 239, 135, 146, 130, 243, 27, 213, 167, 73, 234, 17, 171, 92, 87, 27, 167, 73, 29, 210, 23, 213, + 25, 79, 74, 242, 197, 157, 16, 4, 11, 170, 150, 200, 246, 255, 255, 255, 27, 184, 204, 136, 154, 184, 226, 86, 79, + 27, 251, 130, 247, 123, 204, 99, 121, 92, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3812, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14908603320888691751" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bcee5ffbb2ec78c279f80ffff", + "cborBytes": [216, 102, 159, 27, 206, 229, 255, 187, 46, 199, 140, 39, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3813, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9463936416749072496" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15652247230697726939" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17561569277896334272" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b05e1856a20f21" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1217654796d937a496e68d00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5506087568225519807" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14300254747175675714" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4464422393961105635" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12897082782246880574" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16542906528334172082" + } + }, + { + "_tag": "ByteArray", + "bytearray": "945b1a1018" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b8356a807693630709f1bd937f3ed5a5463db1bf3b73a368b6c9bc09f47b05e1856a20f219f4c1217654796d937a496e68d001b4c698d788646c8bf1bc674b5ed32ffe7421b3df4d0838759c8e3ff9f1bb2fba47572a1c53e1be59435d6e5d94fb245945b1a1018ffff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 131, 86, 168, 7, 105, 54, 48, 112, 159, 27, 217, 55, 243, 237, 90, 84, 99, 219, 27, 243, 183, + 58, 54, 139, 108, 155, 192, 159, 71, 176, 94, 24, 86, 162, 15, 33, 159, 76, 18, 23, 101, 71, 150, 217, 55, 164, + 150, 230, 141, 0, 27, 76, 105, 141, 120, 134, 70, 200, 191, 27, 198, 116, 181, 237, 50, 255, 231, 66, 27, 61, 244, + 208, 131, 135, 89, 200, 227, 255, 159, 27, 178, 251, 164, 117, 114, 161, 197, 62, 27, 229, 148, 53, 214, 229, 217, + 79, 178, 69, 148, 91, 26, 16, 24, 255, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3814, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10769825832535606733" + } + } + ] + }, + "cborHex": "d905099f1b95761b88a11c45cdff", + "cborBytes": [217, 5, 9, 159, 27, 149, 118, 27, 136, 161, 28, 69, 205, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3815, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6196466650984799550" + }, + "fields": [] + }, + "cborHex": "d8669f1b55fe4596ba80dd3e80ff", + "cborBytes": [216, 102, 159, 27, 85, 254, 69, 150, 186, 128, 221, 62, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3816, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13054865966064842945" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17993507536488798933" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "806526076970387496" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b8a3285567012b33d009" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10791660197839441988" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2663108943547770892" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6092954055359070284" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bb52c336db1a1b8c19fd8669f1bf9b5c7c54fba9ad59fd8669f1b0b315b319fe8c8289f4ab8a3285567012b33d0091b95c3adc5f4f110441b24f543797254a80c1b548e856e7674004cffff80ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 181, 44, 51, 109, 177, 161, 184, 193, 159, 216, 102, 159, 27, 249, 181, 199, 197, 79, 186, 154, + 213, 159, 216, 102, 159, 27, 11, 49, 91, 49, 159, 232, 200, 40, 159, 74, 184, 163, 40, 85, 103, 1, 43, 51, 208, 9, + 27, 149, 195, 173, 197, 244, 241, 16, 68, 27, 36, 245, 67, 121, 114, 84, 168, 12, 27, 84, 142, 133, 110, 118, 116, + 0, 76, 255, 255, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3817, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5982323399511368022" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2450562621431866582" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15080303252228088186" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff67f7303f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "13113f52839f" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b53057b6fa761e1569fd8669f1b220225b8764be4d69fd8669f1bd147ffe8b639217a9f45ff67f7303fffff4613113f52839fa0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 83, 5, 123, 111, 167, 97, 225, 86, 159, 216, 102, 159, 27, 34, 2, 37, 184, 118, 75, 228, 214, + 159, 216, 102, 159, 27, 209, 71, 255, 232, 182, 57, 33, 122, 159, 69, 255, 103, 247, 48, 63, 255, 255, 70, 19, 17, + 63, 82, 131, 159, 160, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3818, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a0fb" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1900587197130024333" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09cecff4ded9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16106307388186361286" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15292568293741955929" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "9bb8840b0cb7c5898a3ce2" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f42a0fba09fbf1b1a603dfc6d97258d4609cecff4ded91bdf85193c1418fdc61bd43a1dd6f3e40b59ffd905019f1bffffffffffffffedffff804b9bb8840b0cb7c5898a3ce2ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 66, 160, 251, 160, 159, 191, 27, 26, 96, 61, 252, + 109, 151, 37, 141, 70, 9, 206, 207, 244, 222, 217, 27, 223, 133, 25, 60, 20, 24, 253, 198, 27, 212, 58, 29, 214, + 243, 228, 11, 89, 255, 217, 5, 1, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 255, 255, 128, 75, 155, 184, + 132, 11, 12, 183, 197, 137, 138, 60, 226, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3819, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3253386449208521999" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f1b2d2659bd0624b50fffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 27, 45, 38, 89, 189, 6, 36, 181, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3820, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9062282130916093881" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28d28008738dfb9dd4e64051" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f07341bcfe37" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2c3a675c069b4a51f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db7037367d20bbfb4ed8ee" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "148842151073195489" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d89d79aaf21b602cdc18" + }, + { + "_tag": "ByteArray", + "bytearray": "87" + }, + { + "_tag": "ByteArray", + "bytearray": "3f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8122165614674155968" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9521583848215701680" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1778015044637955747" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9845046286478629510" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ede758227" + } + ] + }, + "cborHex": "d8669f1b7dc3b195839fafb99fbf4c28d28008738dfb9dd4e6405146f07341bcfe3749a2c3a675c069b4a51f4bdb7037367d20bbfb4ed8eeff9f9f1b0210cb25d652a5e14ad89d79aaf21b602cdc184187413f1b70b7ba97ed8b99c0ff1b8423760ffbfe68b01b18acc74344f216a3ff1b88a0a16faed65a86454ede758227ffff", + "cborBytes": [ + 216, 102, 159, 27, 125, 195, 177, 149, 131, 159, 175, 185, 159, 191, 76, 40, 210, 128, 8, 115, 141, 251, 157, 212, + 230, 64, 81, 70, 240, 115, 65, 188, 254, 55, 73, 162, 195, 166, 117, 192, 105, 180, 165, 31, 75, 219, 112, 55, 54, + 125, 32, 187, 251, 78, 216, 238, 255, 159, 159, 27, 2, 16, 203, 37, 214, 82, 165, 225, 74, 216, 157, 121, 170, + 242, 27, 96, 44, 220, 24, 65, 135, 65, 63, 27, 112, 183, 186, 151, 237, 139, 153, 192, 255, 27, 132, 35, 118, 15, + 251, 254, 104, 176, 27, 24, 172, 199, 67, 68, 242, 22, 163, 255, 27, 136, 160, 161, 111, 174, 214, 90, 134, 69, + 78, 222, 117, 130, 39, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3821, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c8d486" + }, + { + "_tag": "ByteArray", + "bytearray": "dfc576bd43ebce" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9de780c479" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a11" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6b467b44f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10106560494961472466" + } + } + } + ] + } + ] + }, + "cborHex": "d905029fa043c8d48647dfc576bd43ebcebf459de780c479426a1145f6b467b44f1b8c41b7392b2cb3d2ffff", + "cborBytes": [ + 217, 5, 2, 159, 160, 67, 200, 212, 134, 71, 223, 197, 118, 189, 67, 235, 206, 191, 69, 157, 231, 128, 196, 121, + 66, 106, 17, 69, 246, 180, 103, 180, 79, 27, 140, 65, 183, 57, 43, 44, 179, 210, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3822, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16015118836645554254" + }, + "fields": [] + }, + "cborHex": "d8669f1bde4121baedece84e80ff", + "cborBytes": [216, 102, 159, 27, 222, 65, 33, 186, 237, 236, 232, 78, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3823, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "be20537a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb298c07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4d3f4d523dfa8ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7524b01fbb34247134ce1" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10041432856027178791" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6cae" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59fbf44be20537a44eb298c0748d4d3f4d523dfa8ae4bc7524b01fbb34247134ce1ff1b8b5a55fb136fa727426caeffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 191, 68, 190, 32, 83, 122, 68, 235, 41, 140, 7, + 72, 212, 211, 244, 213, 35, 223, 168, 174, 75, 199, 82, 75, 1, 251, 179, 66, 71, 19, 76, 225, 255, 27, 139, 90, + 85, 251, 19, 111, 167, 39, 66, 108, 174, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3824, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14718252125914249820" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14336923197213397221" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "325378325359514985" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1949830696584183757" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3313808953715096480" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6213165666293599713" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f72bc88" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11212540248141659800" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39b6b326a7768f2e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13944466557341587696" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9da0ca8ada839fe7503f5efe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18392090886429046757" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2782350252428993010" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17762183341604972956" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6781166210466229792" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eefdd202291733ed489741" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17849439883945338102" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13019632995844622692" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10114721961704486334" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "493d3d461533" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10452730532334357051" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5102457680346212031" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a99ef5fcd79aed86" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34936dc90c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea7a56150da3c1bbec5c4199" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7700829240159868334" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "059c5898b1ce9a9d43a406" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b64930" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9fd8669f1bcc41bc53efc1ba5c9f1bc6f6fbb005f650e51b0483f9dcecaa5569ffffbf1b1b0f30b01a0d7fcd1b2dfd03afa3b27ba01b5639994136154de1440f72bc881b9b9af1f2f840fe984839b6b326a7768f2e1bc184b273f4a8d8f04c9da0ca8ada839fe7503f5efe1bff3dd5373a4d77e51b269ce4d024bfa1f2ff1bf67ff3a41fb9a99cbf1b5e1b8abd81b8ae204beefdd202291733ed4897411bf7b5f3010a4064f61bb4af073a8f460964ffd8669f1b8c5eb608b93cf5be9fbf46493d3d4615331b910f8f09c8ab4a3b41a91b46cf9239ee7fe6bf48a99ef5fcd79aed864534936dc90c4cea7a56150da3c1bbec5c41991b6aded764a7ab95aeffbf4b059c5898b1ce9a9d43a40643b64930ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 216, 102, 159, 27, 204, 65, 188, 83, 239, 193, + 186, 92, 159, 27, 198, 246, 251, 176, 5, 246, 80, 229, 27, 4, 131, 249, 220, 236, 170, 85, 105, 255, 255, 191, 27, + 27, 15, 48, 176, 26, 13, 127, 205, 27, 45, 253, 3, 175, 163, 178, 123, 160, 27, 86, 57, 153, 65, 54, 21, 77, 225, + 68, 15, 114, 188, 136, 27, 155, 154, 241, 242, 248, 64, 254, 152, 72, 57, 182, 179, 38, 167, 118, 143, 46, 27, + 193, 132, 178, 115, 244, 168, 216, 240, 76, 157, 160, 202, 138, 218, 131, 159, 231, 80, 63, 94, 254, 27, 255, 61, + 213, 55, 58, 77, 119, 229, 27, 38, 156, 228, 208, 36, 191, 161, 242, 255, 27, 246, 127, 243, 164, 31, 185, 169, + 156, 191, 27, 94, 27, 138, 189, 129, 184, 174, 32, 75, 238, 253, 210, 2, 41, 23, 51, 237, 72, 151, 65, 27, 247, + 181, 243, 1, 10, 64, 100, 246, 27, 180, 175, 7, 58, 143, 70, 9, 100, 255, 216, 102, 159, 27, 140, 94, 182, 8, 185, + 60, 245, 190, 159, 191, 70, 73, 61, 61, 70, 21, 51, 27, 145, 15, 143, 9, 200, 171, 74, 59, 65, 169, 27, 70, 207, + 146, 57, 238, 127, 230, 191, 72, 169, 158, 245, 252, 215, 154, 237, 134, 69, 52, 147, 109, 201, 12, 76, 234, 122, + 86, 21, 13, 163, 193, 187, 236, 92, 65, 153, 27, 106, 222, 215, 100, 167, 171, 149, 174, 255, 191, 75, 5, 156, 88, + 152, 177, 206, 154, 157, 67, 164, 6, 67, 182, 73, 48, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3825, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6584704532560890663" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d119aa64bef2206ba64" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1372943027404958127" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7bccc5f684e3b94737b7" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4c69e05547f1cbe9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15325053806721850192" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3169" + }, + { + "_tag": "ByteArray", + "bytearray": "74b1bfe3" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "d905009f9f9f1b5b6191e296324b274a9d119aa64bef2206ba641b130dac68c55269af4a7bccc5f684e3b94737b7ff484c69e05547f1cbe9d8669f1bd4ad873dd9675b509f4231694474b1bfe3ffffff0eff", + "cborBytes": [ + 217, 5, 0, 159, 159, 159, 27, 91, 97, 145, 226, 150, 50, 75, 39, 74, 157, 17, 154, 166, 75, 239, 34, 6, 186, 100, + 27, 19, 13, 172, 104, 197, 82, 105, 175, 74, 123, 204, 197, 246, 132, 227, 185, 71, 55, 183, 255, 72, 76, 105, + 224, 85, 71, 241, 203, 233, 216, 102, 159, 27, 212, 173, 135, 61, 217, 103, 91, 80, 159, 66, 49, 105, 68, 116, + 177, 191, 227, 255, 255, 255, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3826, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8286373611827725954" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bbbad4b4ecf18fa2a28213" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8235823230507245101" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8939662673061505181" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6509733781884155346" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18214541438065016028" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9af2e750ed" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4a446" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "106cb5" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b609f8424a6aebe1d1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7226177769675955448" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17880241791007432358" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9311009233034491873" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2461853744696179501" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b39b154a7d5153" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18039102623573778697" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "514dfe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6722720194727540333" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09e51a356f3de8b179" + } + ] + } + ] + }, + "cborHex": "d8669f1b72ff1ce5992986829f4bbbbad4b4ecf18fa2a282139fd8669f1b724b8597c74b5e2d9f1b7c100fd637a6689d1b5a5738627390b5d21bfcc70ceee27f7cdc459af2e750edffffbf43d4a44643106cb5ff49b609f8424a6aebe1d1d8669f1b64488a65455c1cf89f1bf823612ce3179ea61b81375990cb6737e11b222a42eff594bb2d47b39b154a7d51531bfa57c442c8eea109ffffff9f43514dfe1b5d4be6660b14766d4909e51a356f3de8b179ffffff", + "cborBytes": [ + 216, 102, 159, 27, 114, 255, 28, 229, 153, 41, 134, 130, 159, 75, 187, 186, 212, 180, 236, 241, 143, 162, 162, + 130, 19, 159, 216, 102, 159, 27, 114, 75, 133, 151, 199, 75, 94, 45, 159, 27, 124, 16, 15, 214, 55, 166, 104, 157, + 27, 90, 87, 56, 98, 115, 144, 181, 210, 27, 252, 199, 12, 238, 226, 127, 124, 220, 69, 154, 242, 231, 80, 237, + 255, 255, 191, 67, 212, 164, 70, 67, 16, 108, 181, 255, 73, 182, 9, 248, 66, 74, 106, 235, 225, 209, 216, 102, + 159, 27, 100, 72, 138, 101, 69, 92, 28, 248, 159, 27, 248, 35, 97, 44, 227, 23, 158, 166, 27, 129, 55, 89, 144, + 203, 103, 55, 225, 27, 34, 42, 66, 239, 245, 148, 187, 45, 71, 179, 155, 21, 74, 125, 81, 83, 27, 250, 87, 196, + 66, 200, 238, 161, 9, 255, 255, 255, 159, 67, 81, 77, 254, 27, 93, 75, 230, 102, 11, 20, 118, 109, 73, 9, 229, 26, + 53, 111, 61, 232, 177, 121, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3827, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07fc0a7c29" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2823360671366214097" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a34fc80f501621d2cb31704" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8d5c0f1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "457a7c0a86" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3778" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a09ad79" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13586900012112617232" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d805be76245bd5d67e3503" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11dd3e0715e379e5e356" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13895849978608848836" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c04df19a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12463717895698006984" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5bb0e70debdbedb8d6940f62" + }, + { + "_tag": "ByteArray", + "bytearray": "0d69bedba2dba24b98ba" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2282471679220103159" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5a" + } + ] + }, + "cborHex": "d8799fbf4507fc0a7c291b272e9792619771d14c0a34fc80f501621d2cb3170444b8d5c0f145457a7c0a86423778448a09ad791bbc8e5d9314b91f104bd805be76245bd5d67e35034a11dd3e0715e379e5e356ff9fd8669f1bc0d7f9eea3198fc49f44c04df19a1bacf80563f9c243c84c5bb0e70debdbedb8d6940f624a0d69bedba2dba24b98baffff1b1facf7e631cdb7f7ff415aff", + "cborBytes": [ + 216, 121, 159, 191, 69, 7, 252, 10, 124, 41, 27, 39, 46, 151, 146, 97, 151, 113, 209, 76, 10, 52, 252, 128, 245, + 1, 98, 29, 44, 179, 23, 4, 68, 184, 213, 192, 241, 69, 69, 122, 124, 10, 134, 66, 55, 120, 68, 138, 9, 173, 121, + 27, 188, 142, 93, 147, 20, 185, 31, 16, 75, 216, 5, 190, 118, 36, 91, 213, 214, 126, 53, 3, 74, 17, 221, 62, 7, + 21, 227, 121, 229, 227, 86, 255, 159, 216, 102, 159, 27, 192, 215, 249, 238, 163, 25, 143, 196, 159, 68, 192, 77, + 241, 154, 27, 172, 248, 5, 99, 249, 194, 67, 200, 76, 91, 176, 231, 13, 235, 219, 237, 184, 214, 148, 15, 98, 74, + 13, 105, 190, 219, 162, 219, 162, 75, 152, 186, 255, 255, 27, 31, 172, 247, 230, 49, 205, 183, 247, 255, 65, 90, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3828, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6269916478737767425" + }, + "fields": [] + }, + "cborHex": "d8669f1b570337d166885c0180ff", + "cborBytes": [216, 102, 159, 27, 87, 3, 55, 209, 102, 136, 92, 1, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3829, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0477" + } + ] + } + ] + }, + "cborHex": "d87e9f9f0a420477ffff", + "cborBytes": [216, 126, 159, 159, 10, 66, 4, 119, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3830, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17972782868238643032" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15833472653362249967" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f0ffc36bf7fec0725a0ee5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15712457047422030930" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15860715235461898562" + } + }, + { + "_tag": "ByteArray", + "bytearray": "26fd3c9640" + }, + { + "_tag": "ByteArray", + "bytearray": "dc7c11b768bccbf74fd5dd" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9199481901808496212" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12980727990152582526" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "445fe2023aeaf2b16157425a" + }, + { + "_tag": "ByteArray", + "bytearray": "fb89" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17711619852410292874" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9642733469574082083" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1573097492917367823" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12998880698353709546" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "474076840580308482" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5866837321067926536" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5995724335293997319" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06d179d88a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8125698966988010006" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11509161810596280070" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10171368945374519766" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96bf56" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17044329914176428704" + } + } + ] + } + ] + }, + "cborHex": "d9050c9f1bf96c26cb76972f589fd8669f1bdbbbcb7d2884c0ef9f4bf0ffc36bf7fec0725a0ee51bda0ddc6fbc2c54521bdc1c9479155521424526fd3c96404bdc7c11b768bccbf74fd5ddffff9f1b7fab200c7aee2e54ffd8669f1bb424cf550b03d57e9f4c445fe2023aeaf2b16157425a42fb89ffff1bf5cc506a63ac0a8affd8669f1b85d1df004dbbae239f1b15d4c3d5ce65b40f1bb4654d1fc70df1eabf1b0694425fef075e021b516b3175ad4214081b53351784285d21074506d179d88a1b70c448289f1432161b9fb8c1b0471537061b8d27f62a647ce1d64396bf56ff1bec899fc0910cdaa0ffffff", + "cborBytes": [ + 217, 5, 12, 159, 27, 249, 108, 38, 203, 118, 151, 47, 88, 159, 216, 102, 159, 27, 219, 187, 203, 125, 40, 132, + 192, 239, 159, 75, 240, 255, 195, 107, 247, 254, 192, 114, 90, 14, 229, 27, 218, 13, 220, 111, 188, 44, 84, 82, + 27, 220, 28, 148, 121, 21, 85, 33, 66, 69, 38, 253, 60, 150, 64, 75, 220, 124, 17, 183, 104, 188, 203, 247, 79, + 213, 221, 255, 255, 159, 27, 127, 171, 32, 12, 122, 238, 46, 84, 255, 216, 102, 159, 27, 180, 36, 207, 85, 11, 3, + 213, 126, 159, 76, 68, 95, 226, 2, 58, 234, 242, 177, 97, 87, 66, 90, 66, 251, 137, 255, 255, 27, 245, 204, 80, + 106, 99, 172, 10, 138, 255, 216, 102, 159, 27, 133, 209, 223, 0, 77, 187, 174, 35, 159, 27, 21, 212, 195, 213, + 206, 101, 180, 15, 27, 180, 101, 77, 31, 199, 13, 241, 234, 191, 27, 6, 148, 66, 95, 239, 7, 94, 2, 27, 81, 107, + 49, 117, 173, 66, 20, 8, 27, 83, 53, 23, 132, 40, 93, 33, 7, 69, 6, 209, 121, 216, 138, 27, 112, 196, 72, 40, 159, + 20, 50, 22, 27, 159, 184, 193, 176, 71, 21, 55, 6, 27, 141, 39, 246, 42, 100, 124, 225, 214, 67, 150, 191, 86, + 255, 27, 236, 137, 159, 192, 145, 12, 218, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3831, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b596" + } + ] + }, + "cborHex": "d905059f8042b596ff", + "cborBytes": [217, 5, 5, 159, 128, 66, 181, 150, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3832, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2016865922899125454" + }, + "fields": [] + }, + "cborHex": "d8669f1b1bfd58defdfe24ce80ff", + "cborBytes": [216, 102, 159, 27, 27, 253, 88, 222, 253, 254, 36, 206, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3833, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15742894725651710685" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7310541854475962182" + } + } + ] + }, + "cborHex": "d8669f1bda79ff57f2d742dd9f1b657443156faa4746ffff", + "cborBytes": [ + 216, 102, 159, 27, 218, 121, 255, 87, 242, 215, 66, 221, 159, 27, 101, 116, 67, 21, 111, 170, 71, 70, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3834, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + "cborHex": "d905029fa0010aff", + "cborBytes": [217, 5, 2, 159, 160, 1, 10, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3835, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "503022909617352774" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1823387356070450926" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1848680679177697149" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5396675841387825681" + } + }, + { + "_tag": "ByteArray", + "bytearray": "58e3c772b61cfbe65b7c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "da73700b699d876ed8f2ca48" + }, + { + "_tag": "ByteArray", + "bytearray": "db30e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16050090535960671595" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3046405fc3d06556d0" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b06fb18abd1a030469fbf031b194df923be8496eeff9fd8669f1b19a7d5487183b77d9f1b4ae4d815bdda8a114a58e3c772b61cfbe65b7cffff9f4cda73700b699d876ed8f2ca4843db30e31bdebd604e30cb756b493046405fc3d06556d0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 6, 251, 24, 171, 209, 160, 48, 70, 159, 191, 3, 27, 25, 77, 249, 35, 190, 132, 150, 238, 255, + 159, 216, 102, 159, 27, 25, 167, 213, 72, 113, 131, 183, 125, 159, 27, 74, 228, 216, 21, 189, 218, 138, 17, 74, + 88, 227, 199, 114, 182, 28, 251, 230, 91, 124, 255, 255, 159, 76, 218, 115, 112, 11, 105, 157, 135, 110, 216, 242, + 202, 72, 67, 219, 48, 227, 27, 222, 189, 96, 78, 48, 203, 117, 107, 73, 48, 70, 64, 95, 195, 208, 101, 86, 208, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3836, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15269702582765379733" + }, + "fields": [] + }, + "cborHex": "d8669f1bd3e8e198bf98609580ff", + "cborBytes": [216, 102, 159, 27, 211, 232, 225, 152, 191, 152, 96, 149, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3837, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10367615114175348144" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11168163187727339053" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13121658687342147376" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2720361033745958027" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "032886f67bef958f338361" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10462156219475739734" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10206817818820164924" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4289468123254086485" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2615578890896987771" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10690545069597524517" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14812215165658654173" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9398410263649009540" + } + }, + { + "_tag": "ByteArray", + "bytearray": "971f51bac2" + } + ] + }, + "cborHex": "d8669f1b8fe12b0430647db09f1b9afd493f6e150e2dd8669f1bb6197f0dfaf277309fd8669f1b25c0a9f2753e048b9f4b032886f67bef958f338361ffffd8669f1b91310ba6967ec4569f41fcffffd8669f1b8da5e6ba69e73d3c9f1b3b87408811ebdb55ffff1b244c6724b1ecd67b1b945c721990aa0225ffff1bcd8f8f36f5bce5dd1b826ddc57022f3f8445971f51bac2ffff", + "cborBytes": [ + 216, 102, 159, 27, 143, 225, 43, 4, 48, 100, 125, 176, 159, 27, 154, 253, 73, 63, 110, 21, 14, 45, 216, 102, 159, + 27, 182, 25, 127, 13, 250, 242, 119, 48, 159, 216, 102, 159, 27, 37, 192, 169, 242, 117, 62, 4, 139, 159, 75, 3, + 40, 134, 246, 123, 239, 149, 143, 51, 131, 97, 255, 255, 216, 102, 159, 27, 145, 49, 11, 166, 150, 126, 196, 86, + 159, 65, 252, 255, 255, 216, 102, 159, 27, 141, 165, 230, 186, 105, 231, 61, 60, 159, 27, 59, 135, 64, 136, 17, + 235, 219, 85, 255, 255, 27, 36, 76, 103, 36, 177, 236, 214, 123, 27, 148, 92, 114, 25, 144, 170, 2, 37, 255, 255, + 27, 205, 143, 143, 54, 245, 188, 229, 221, 27, 130, 109, 220, 87, 2, 47, 63, 132, 69, 151, 31, 81, 186, 194, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3838, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1223259664245299350" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2994143329323393393" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "646011587873780012" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8084001339490466486" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13977586364156150498" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6ffc4e43e55e2f6aecc56925" + }, + { + "_tag": "ByteArray", + "bytearray": "4585d3" + }, + { + "_tag": "ByteArray", + "bytearray": "6362c492c3dbd05f3029" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4368946191579491738" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d566f70eec" + }, + { + "_tag": "ByteArray", + "bytearray": "7ad8d7149a5961" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7884523158145504904" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1a61b0218aa6a9f6bcdbf231" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4900226697117395762" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1036244042543147651" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b77dbf867189dba88" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0879bd5e08" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9fd8669f1b10f9e42efb6798969fd8669f1b298d557e8eed21719f1b08f7181dd000b12c1b703024632c1c7ab6ffffd8669f1bc1fa5cbde4df02e29f4c6ffc4e43e55e2f6aecc56925434585d34a6362c492c3dbd05f30291b3ca19d69dfe42d9affff45d566f70eec477ad8d7149a59611b6d6b7409d09a9688ffff4c1a61b0218aa6a9f6bcdbf231d8669f1b44011a37f0916b329f1b0e617a7768662a83495b77dbf867189dba88ffff450879bd5e08ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 216, 102, 159, 27, 16, 249, 228, 46, 251, 103, + 152, 150, 159, 216, 102, 159, 27, 41, 141, 85, 126, 142, 237, 33, 113, 159, 27, 8, 247, 24, 29, 208, 0, 177, 44, + 27, 112, 48, 36, 99, 44, 28, 122, 182, 255, 255, 216, 102, 159, 27, 193, 250, 92, 189, 228, 223, 2, 226, 159, 76, + 111, 252, 78, 67, 229, 94, 47, 106, 236, 197, 105, 37, 67, 69, 133, 211, 74, 99, 98, 196, 146, 195, 219, 208, 95, + 48, 41, 27, 60, 161, 157, 105, 223, 228, 45, 154, 255, 255, 69, 213, 102, 247, 14, 236, 71, 122, 216, 215, 20, + 154, 89, 97, 27, 109, 107, 116, 9, 208, 154, 150, 136, 255, 255, 76, 26, 97, 176, 33, 138, 166, 169, 246, 188, + 219, 242, 49, 216, 102, 159, 27, 68, 1, 26, 55, 240, 145, 107, 50, 159, 27, 14, 97, 122, 119, 104, 102, 42, 131, + 73, 91, 119, 219, 248, 103, 24, 157, 186, 136, 255, 255, 69, 8, 121, 189, 94, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3839, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11408700419048379592" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd4e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10417929163548275066" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11007931628894800610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8eda68" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2180276489760621636" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3329296731228049047" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "191458242367361943" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15034155697895260532" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "925c568fef7ebc5b2b4482" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9135529338758824262" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "969f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4afe6d3f7f" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11997292473516661521" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12249427576202919665" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15972588758591412336" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c34e" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b9e53d895d23a94c89f9fbf42dd4e1b9093eb60b07a317affd8669f1b98c4077e740fcae29f438eda681b1e41e5ea745144441b2e3409bcd8b78e971b02a83241cda09397ffff1bd0a40cf3eef64174bf4b925c568fef7ebc5b2b44821b7ec7eb880fe1014642969f454afe6d3f7fffffd8669f1bfffffffffffffff99f1ba67ef1f0b66d9b11ffffd8669f1bfffffffffffffff69fd8669f1ba9feb57af572fef19f1bddaa08d97b3d187042c34effffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 158, 83, 216, 149, 210, 58, 148, 200, 159, 159, 191, 66, 221, 78, 27, 144, 147, 235, 96, 176, + 122, 49, 122, 255, 216, 102, 159, 27, 152, 196, 7, 126, 116, 15, 202, 226, 159, 67, 142, 218, 104, 27, 30, 65, + 229, 234, 116, 81, 68, 68, 27, 46, 52, 9, 188, 216, 183, 142, 151, 27, 2, 168, 50, 65, 205, 160, 147, 151, 255, + 255, 27, 208, 164, 12, 243, 238, 246, 65, 116, 191, 75, 146, 92, 86, 143, 239, 126, 188, 91, 43, 68, 130, 27, 126, + 199, 235, 136, 15, 225, 1, 70, 66, 150, 159, 69, 74, 254, 109, 63, 127, 255, 255, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 249, 159, 27, 166, 126, 241, 240, 182, 109, 155, 17, 255, 255, 216, 102, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 246, 159, 216, 102, 159, 27, 169, 254, 181, 122, 245, 114, 254, 241, 159, 27, 221, + 170, 8, 217, 123, 61, 24, 112, 66, 195, 78, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3840, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9887555207544828398" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + } + ] + }, + "cborHex": "d8799f9fd8669f1b8937a71322c5f1ee80ff08ffff", + "cborBytes": [216, 121, 159, 159, 216, 102, 159, 27, 137, 55, 167, 19, 34, 197, 241, 238, 128, 255, 8, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3841, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3632804185688828731" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15667048673787923528" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "557603919448446157" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5258457062754943817" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a0f6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2331358374443108549" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3789512585004394127" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49fe78b3bde9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6117755845787496185" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8904753721710380582" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14489337270073870051" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18232123499447729356" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b326a5028d288eb3b9fd8669f1bd96c89c2dfe24c489f1b07bd01cf781714cdd8669f1b48f9cad68c27034980ff42a0f6bf1b205aa616e8d048c541421b34970d9e4d0f268f4649fe78b3bde91b54e6a2874abbaef91b7b940a549ae286261bc914777ab594c6e31bfd0583b98da23cccffffffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 50, 106, 80, 40, 210, 136, 235, 59, 159, 216, 102, 159, 27, 217, 108, 137, 194, 223, 226, 76, + 72, 159, 27, 7, 189, 1, 207, 120, 23, 20, 205, 216, 102, 159, 27, 72, 249, 202, 214, 140, 39, 3, 73, 128, 255, 66, + 160, 246, 191, 27, 32, 90, 166, 22, 232, 208, 72, 197, 65, 66, 27, 52, 151, 13, 158, 77, 15, 38, 143, 70, 73, 254, + 120, 179, 189, 233, 27, 84, 230, 162, 135, 74, 187, 174, 249, 27, 123, 148, 10, 84, 154, 226, 134, 38, 27, 201, + 20, 119, 122, 181, 148, 198, 227, 27, 253, 5, 131, 185, 141, 162, 60, 204, 255, 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3842, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13103018676488414501" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f1bb5d746104166a525ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 27, 181, 215, 70, 16, 65, 102, 165, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3843, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a3b1973843739d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10719471534962219136" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4672754697953567089" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5e" + }, + { + "_tag": "ByteArray", + "bytearray": "4b816cf05d1e3e782d4b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8114759835924369404" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14646296940181463120" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f47a3b1973843739dd8669f1b94c336911d5598809fd8669f1b40d8f5a3f60f61719f415e4a4b816cf05d1e3e782d4b1b709d6b13b1e10ffcffff80ffff1bcb421977ba682050ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 71, 163, 177, 151, 56, 67, 115, 157, 216, 102, + 159, 27, 148, 195, 54, 145, 29, 85, 152, 128, 159, 216, 102, 159, 27, 64, 216, 245, 163, 246, 15, 97, 113, 159, + 65, 94, 74, 75, 129, 108, 240, 93, 30, 62, 120, 45, 75, 27, 112, 157, 107, 19, 177, 225, 15, 252, 255, 255, 128, + 255, 255, 27, 203, 66, 25, 119, 186, 104, 32, 80, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3844, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9617466781077084989" + }, + "fields": [] + }, + "cborHex": "d8669f1b85781b14f5381b3d80ff", + "cborBytes": [216, 102, 159, 27, 133, 120, 27, 20, 245, 56, 27, 61, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3845, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7616026796184308700" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1307400153016539852" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6936389030299570095" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2805665296746440756" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff22faafba28" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3040887017423911046" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1025067589606458493" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3526309853672477897" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10545571393462447411" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "267467248931181543" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3719459737644049203" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15211397871788608781" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "580987065348419923" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b69b190050a6c0bdc9fbf1b1224d18323d79acc1b604301128eec0faf1b26efb9b8eb36683446ff22faafba281b2a3366a18ba638861b0e39c58aad42447d1b30eff820f41b94c941311b9259654f3cd9ad331b03b63c0bb99813e7ff1b339e2cecc2a423331bd319bdc55d17cd0d1b081014a86130715380ffff", + "cborBytes": [ + 216, 102, 159, 27, 105, 177, 144, 5, 10, 108, 11, 220, 159, 191, 27, 18, 36, 209, 131, 35, 215, 154, 204, 27, 96, + 67, 1, 18, 142, 236, 15, 175, 27, 38, 239, 185, 184, 235, 54, 104, 52, 70, 255, 34, 250, 175, 186, 40, 27, 42, 51, + 102, 161, 139, 166, 56, 134, 27, 14, 57, 197, 138, 173, 66, 68, 125, 27, 48, 239, 248, 32, 244, 27, 148, 201, 65, + 49, 27, 146, 89, 101, 79, 60, 217, 173, 51, 27, 3, 182, 60, 11, 185, 152, 19, 231, 255, 27, 51, 158, 44, 236, 194, + 164, 35, 51, 27, 211, 25, 189, 197, 93, 23, 205, 13, 27, 8, 16, 20, 168, 97, 48, 113, 83, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3846, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15245231223975745275" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5713441139175639951" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9458280242444330160" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b772" + }, + { + "_tag": "ByteArray", + "bytearray": "cd86a82c699aa8a7d1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14180357668395872286" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4294535770195348404" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d62bb5ad9" + }, + { + "_tag": "ByteArray", + "bytearray": "ac5847345e328f93875b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18229032216890373548" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a7f1" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1e53" + }, + { + "_tag": "ByteArray", + "bytearray": "c02d31033a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05410702" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb0002" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1548696662804962999" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bd391f10687c496fb9f0cd9050d9f1b4f4a3871e9aacb8f9f1b83428fc4b4fd64b042b77249cd86a82c699aa8a7d1ff1bc4cac02b2cb8f01ed8669f1b3b99418791b3cbb49f452d62bb5ad94aac5847345e328f93875b1bfcfa88383ee6f5ac42a7f1ffffff421e5345c02d31033abf0b440541070243fb00021b157e1368d3529eb7ffffff", + "cborBytes": [ + 216, 102, 159, 27, 211, 145, 241, 6, 135, 196, 150, 251, 159, 12, 217, 5, 13, 159, 27, 79, 74, 56, 113, 233, 170, + 203, 143, 159, 27, 131, 66, 143, 196, 180, 253, 100, 176, 66, 183, 114, 73, 205, 134, 168, 44, 105, 154, 168, 167, + 209, 255, 27, 196, 202, 192, 43, 44, 184, 240, 30, 216, 102, 159, 27, 59, 153, 65, 135, 145, 179, 203, 180, 159, + 69, 45, 98, 187, 90, 217, 74, 172, 88, 71, 52, 94, 50, 143, 147, 135, 91, 27, 252, 250, 136, 56, 62, 230, 245, + 172, 66, 167, 241, 255, 255, 255, 66, 30, 83, 69, 192, 45, 49, 3, 58, 191, 11, 68, 5, 65, 7, 2, 67, 251, 0, 2, 27, + 21, 126, 19, 104, 211, 82, 158, 183, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3847, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2828732296696317824" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bac6a35e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7102810121634128358" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dae66f5ecb73f95f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16066110304095477761" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bca1e6cdfc9294f2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6658a795369d445599fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "994cb734fdc724ee8add35f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5073482125128205218" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9dbebb1c4223bc909e0681" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18214580707574862406" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e038236f8d04081a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8710497847260012931" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b98baa64a43e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13681781562513168875" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e217df44236b2ab6bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1750171347419964970" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2050248875665489286" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62caf756558bdf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13489016604325450102" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9135653351836762216" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13588941653090319513" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3a8a22d033f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14759584869191490324" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90adb70f261b5cb29cf6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17200816716747211776" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8941507671040713902" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4075328159258444969" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12359882940369795651" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c48b1fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10538261854336020620" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce60b1d7205e0940" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef0b7364dc11474694384364" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f1b2741ad095d424780bf44bac6a35e1b6292402c5f0d21e648dae66f5ecb73f95f1bdef64a331ddaa001ffbf492bca1e6cdfc9294f2d4a6658a795369d445599fc4c994cb734fdc724ee8add35f91b4668a11cc28f83a24b9dbebb1c4223bc909e06811bfcc730a607aed246499e038236f8d04081a61b78e1e7a452bce18346b98baa64a43e1bbddf73d7881619eb49e217df44236b2ab6bf1b1849db915308a62aff9fbf1b1c73f27d5f2f7d864762caf756558bdf1bbb329d223e2a11761b7ec85c521b5640681bbc959e6fa9f53c9946e3a8a22d033f1bccd4943d28639b144a90adb70f261b5cb29cf61beeb593ab885184001b7c169dda48cfe4aeffbf1b388e795e6bbf04a91bab87200c7e26fa43442c48b1fb1b923f6d5289bf708cffbf48ce60b1d7205e09404cef0b7364dc11474694384364ffa0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 27, 39, 65, 173, 9, 93, 66, 71, 128, 191, 68, 186, + 198, 163, 94, 27, 98, 146, 64, 44, 95, 13, 33, 230, 72, 218, 230, 111, 94, 203, 115, 249, 95, 27, 222, 246, 74, + 51, 29, 218, 160, 1, 255, 191, 73, 43, 202, 30, 108, 223, 201, 41, 79, 45, 74, 102, 88, 167, 149, 54, 157, 68, 85, + 153, 252, 76, 153, 76, 183, 52, 253, 199, 36, 238, 138, 221, 53, 249, 27, 70, 104, 161, 28, 194, 143, 131, 162, + 75, 157, 190, 187, 28, 66, 35, 188, 144, 158, 6, 129, 27, 252, 199, 48, 166, 7, 174, 210, 70, 73, 158, 3, 130, 54, + 248, 208, 64, 129, 166, 27, 120, 225, 231, 164, 82, 188, 225, 131, 70, 185, 139, 170, 100, 164, 62, 27, 189, 223, + 115, 215, 136, 22, 25, 235, 73, 226, 23, 223, 68, 35, 107, 42, 182, 191, 27, 24, 73, 219, 145, 83, 8, 166, 42, + 255, 159, 191, 27, 28, 115, 242, 125, 95, 47, 125, 134, 71, 98, 202, 247, 86, 85, 139, 223, 27, 187, 50, 157, 34, + 62, 42, 17, 118, 27, 126, 200, 92, 82, 27, 86, 64, 104, 27, 188, 149, 158, 111, 169, 245, 60, 153, 70, 227, 168, + 162, 45, 3, 63, 27, 204, 212, 148, 61, 40, 99, 155, 20, 74, 144, 173, 183, 15, 38, 27, 92, 178, 156, 246, 27, 238, + 181, 147, 171, 136, 81, 132, 0, 27, 124, 22, 157, 218, 72, 207, 228, 174, 255, 191, 27, 56, 142, 121, 94, 107, + 191, 4, 169, 27, 171, 135, 32, 12, 126, 38, 250, 67, 68, 44, 72, 177, 251, 27, 146, 63, 109, 82, 137, 191, 112, + 140, 255, 191, 72, 206, 96, 177, 215, 32, 94, 9, 64, 76, 239, 11, 115, 100, 220, 17, 71, 70, 148, 56, 67, 100, + 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3848, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18259621085858036693" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9143930348881276412" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14436334394185352073" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5304a9ab" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1630241399988764434" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "889680944869733888" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14722129065332168223" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11540120245706271795" + } + } + ] + }, + "cborHex": "d8669f1bfd6734a24bccfbd59f1b7ee5c434a7fb6dfcd8669f1bc85829a5002c03899f445304a9ab9f1b169fc7ea78773f121b0c58c81b0a64f6001bcc4f82623c93d61fffffff1ba026be38a69dac33ffff", + "cborBytes": [ + 216, 102, 159, 27, 253, 103, 52, 162, 75, 204, 251, 213, 159, 27, 126, 229, 196, 52, 167, 251, 109, 252, 216, 102, + 159, 27, 200, 88, 41, 165, 0, 44, 3, 137, 159, 68, 83, 4, 169, 171, 159, 27, 22, 159, 199, 234, 120, 119, 63, 18, + 27, 12, 88, 200, 27, 10, 100, 246, 0, 27, 204, 79, 130, 98, 60, 147, 214, 31, 255, 255, 255, 27, 160, 38, 190, 56, + 166, 157, 172, 51, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3849, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1271599161552126709" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7067483100447204584" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14500990830656109787" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6052651705902487355" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1577348487571034735" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15553230485931588953" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11926581419638630891" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13243099964381838368" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c38d7141475cc25c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17128198731542856542" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5826156654188372683" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f8584dbeb4" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7361512893063857627" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ac7199907b" + }, + { + "_tag": "ByteArray", + "bytearray": "b0271181df30450c364e" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b8c70ef39199efb6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7435102307984616249" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11894076881773215407" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18150432923346012269" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6790197413865224726" + } + }, + { + "_tag": "ByteArray", + "bytearray": "875687ec" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cb3a28" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7529175867052672334" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4674482323462801555" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "500792113783270951" + } + } + ] + }, + "cborHex": "d8799fd8669f1b11a5a0b340ffc2f59f1b6214be6f4a3b64e8bf1bc93dde54b8743cdb1b53ff56a87f7ad73bffd8669f1b15e3de17a0abd26f9f1bd7d82cb8efba7d59ffffffffd8669f1ba583ba9c8655a9eb9f1bb7c8f140adf7bc209f48c38d7141475cc25c1bedb395ff4be8835e1b50daaa9bd2ad22cb45f8584dbeb4ffd8669f1b662958f9288785db9f45ac7199907b4ab0271181df30450c364effff48b8c70ef39199efb6ffff1b672eca28001c2b399fd8669f1ba5103fe80d473eaf9f4105ffffd8669f1bfbe34a942398086d9f1b5e3ba09268367a1644875687ecffff43cb3a281b687d018f4f1e454e1b40df18e81ed7c893ff1b06f32bc6305e6e27ff", + "cborBytes": [ + 216, 121, 159, 216, 102, 159, 27, 17, 165, 160, 179, 64, 255, 194, 245, 159, 27, 98, 20, 190, 111, 74, 59, 100, + 232, 191, 27, 201, 61, 222, 84, 184, 116, 60, 219, 27, 83, 255, 86, 168, 127, 122, 215, 59, 255, 216, 102, 159, + 27, 21, 227, 222, 23, 160, 171, 210, 111, 159, 27, 215, 216, 44, 184, 239, 186, 125, 89, 255, 255, 255, 255, 216, + 102, 159, 27, 165, 131, 186, 156, 134, 85, 169, 235, 159, 27, 183, 200, 241, 64, 173, 247, 188, 32, 159, 72, 195, + 141, 113, 65, 71, 92, 194, 92, 27, 237, 179, 149, 255, 75, 232, 131, 94, 27, 80, 218, 170, 155, 210, 173, 34, 203, + 69, 248, 88, 77, 190, 180, 255, 216, 102, 159, 27, 102, 41, 88, 249, 40, 135, 133, 219, 159, 69, 172, 113, 153, + 144, 123, 74, 176, 39, 17, 129, 223, 48, 69, 12, 54, 78, 255, 255, 72, 184, 199, 14, 243, 145, 153, 239, 182, 255, + 255, 27, 103, 46, 202, 40, 0, 28, 43, 57, 159, 216, 102, 159, 27, 165, 16, 63, 232, 13, 71, 62, 175, 159, 65, 5, + 255, 255, 216, 102, 159, 27, 251, 227, 74, 148, 35, 152, 8, 109, 159, 27, 94, 59, 160, 146, 104, 54, 122, 22, 68, + 135, 86, 135, 236, 255, 255, 67, 203, 58, 40, 27, 104, 125, 1, 143, 79, 30, 69, 78, 27, 64, 223, 24, 232, 30, 215, + 200, 147, 255, 27, 6, 243, 43, 198, 48, 94, 110, 39, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3850, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ba5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4006" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b330fc1a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8868871422785547103" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "faf8db04150550" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8449247465122831800" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a13f0e6bfb4b" + }, + { + "_tag": "ByteArray", + "bytearray": "53ccf74464" + }, + { + "_tag": "ByteArray", + "bytearray": "ef" + }, + { + "_tag": "ByteArray", + "bytearray": "24fa" + }, + { + "_tag": "ByteArray", + "bytearray": "7c1c42d6297e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6543762737726829611" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3689522311027247239" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10020677124082375033" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12247896659255892037" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050c9fbf421ba5044240061044b330fc1a1b7b148f91d9beeb5f41c51bffffffffffffffff47faf8db041505501b7541c1cdb2041db8ffa01bfffffffffffffff70ad905039f9f46a13f0e6bfb4b4553ccf7446441ef4224fa467c1c42d6297eff1b5ad01d8a24a5342b9f1b3333d0fe73a84887ffd8669f1b8b1098c0a5d019799f1ba9f9451e94a4184508ffffffff", + "cborBytes": [ + 217, 5, 12, 159, 191, 66, 27, 165, 4, 66, 64, 6, 16, 68, 179, 48, 252, 26, 27, 123, 20, 143, 145, 217, 190, 235, + 95, 65, 197, 27, 255, 255, 255, 255, 255, 255, 255, 255, 71, 250, 248, 219, 4, 21, 5, 80, 27, 117, 65, 193, 205, + 178, 4, 29, 184, 255, 160, 27, 255, 255, 255, 255, 255, 255, 255, 247, 10, 217, 5, 3, 159, 159, 70, 161, 63, 14, + 107, 251, 75, 69, 83, 204, 247, 68, 100, 65, 239, 66, 36, 250, 70, 124, 28, 66, 214, 41, 126, 255, 27, 90, 208, + 29, 138, 36, 165, 52, 43, 159, 27, 51, 51, 208, 254, 115, 168, 72, 135, 255, 216, 102, 159, 27, 139, 16, 152, 192, + 165, 208, 25, 121, 159, 27, 169, 249, 69, 30, 148, 164, 24, 69, 8, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3851, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8531621375718919659" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fcd05725" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10379673201192449048" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17549809695490173278" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4778915813858761490" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d5f385" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15684455848732382685" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e0" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2402e390d3b221b1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16516327832278498136" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8941598233685046564" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16280187117030541104" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6413937351771908733" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b220319870d0" + }, + { + "_tag": "ByteArray", + "bytearray": "f61b0a2f0e3282a4fe13" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "344a3f26ffbf9a19" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3537275444808225852" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e26290" + }, + { + "_tag": "ByteArray", + "bytearray": "f0305b2fe5" + }, + { + "_tag": "ByteArray", + "bytearray": "5b3375a498939f458f24ce" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2d11069d53fa6def28c6f9" + } + ] + } + ] + }, + "cborHex": "d905079f9fd8669f1b7666687051db0deb9f44fcd057251b900c01c859b7b418ffffd8669f1bf38d72ef6765e95e80ffd8669f1b42521e9ce88c5b129f43d5f3851bd9aa617e9efdd5ddffff41e0ffd8669f1bfffffffffffffff29f482402e390d3b221b1d8669f1be535c8a7fcdb7b589f1b7c16f0380b0eb5241be1eed7ed437f07301b5902e209f7f96a7d46b220319870d04af61b0a2f0e3282a4fe13ffff48344a3f26ffbf9a199f1b3116ed469881943c43e2629045f0305b2fe54b5b3375a498939f458f24ceff4b2d11069d53fa6def28c6f9ffffff", + "cborBytes": [ + 217, 5, 7, 159, 159, 216, 102, 159, 27, 118, 102, 104, 112, 81, 219, 13, 235, 159, 68, 252, 208, 87, 37, 27, 144, + 12, 1, 200, 89, 183, 180, 24, 255, 255, 216, 102, 159, 27, 243, 141, 114, 239, 103, 101, 233, 94, 128, 255, 216, + 102, 159, 27, 66, 82, 30, 156, 232, 140, 91, 18, 159, 67, 213, 243, 133, 27, 217, 170, 97, 126, 158, 253, 213, + 221, 255, 255, 65, 224, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 72, 36, 2, 227, 144, + 211, 178, 33, 177, 216, 102, 159, 27, 229, 53, 200, 167, 252, 219, 123, 88, 159, 27, 124, 22, 240, 56, 11, 14, + 181, 36, 27, 225, 238, 215, 237, 67, 127, 7, 48, 27, 89, 2, 226, 9, 247, 249, 106, 125, 70, 178, 32, 49, 152, 112, + 208, 74, 246, 27, 10, 47, 14, 50, 130, 164, 254, 19, 255, 255, 72, 52, 74, 63, 38, 255, 191, 154, 25, 159, 27, 49, + 22, 237, 70, 152, 129, 148, 60, 67, 226, 98, 144, 69, 240, 48, 91, 47, 229, 75, 91, 51, 117, 164, 152, 147, 159, + 69, 143, 36, 206, 255, 75, 45, 17, 6, 157, 83, 250, 109, 239, 40, 198, 249, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3852, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2352014432018178229" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "03a7" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9510521451490473600" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2750898232950388485" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebb9a1a353af64fe41ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4668223596401316793" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c9dbb317f81f9" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e5544711ff799b4fab377f54" + }, + { + "_tag": "ByteArray", + "bytearray": "c0c8159af3b9d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8429651504180945033" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cb37bff970e3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2f681a675e76dfc1a1c944" + }, + { + "_tag": "ByteArray", + "bytearray": "12" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6400108106268816925" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5538810458961888336" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b20a408aa170920b59f4203a780d8669f1bfffffffffffffff99f1b83fc28df08d27680bf1b262d275e3441f7054aebb9a1a353af64fe41ba1b40c8dca0ab98d3b9476c9dbb317f81f9ff9f4ce5544711ff799b4fab377f5447c0c8159af3b9d61b74fc23617f0ae089ff46cb37bff970e39f4b2f681a675e76dfc1a1c94441121b58d1c069d640361d1b4cddcec43ca44450ffffffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 32, 164, 8, 170, 23, 9, 32, 181, 159, 66, 3, 167, 128, 216, 102, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 249, 159, 27, 131, 252, 40, 223, 8, 210, 118, 128, 191, 27, 38, 45, 39, 94, 52, 65, 247, 5, 74, + 235, 185, 161, 163, 83, 175, 100, 254, 65, 186, 27, 64, 200, 220, 160, 171, 152, 211, 185, 71, 108, 157, 187, 49, + 127, 129, 249, 255, 159, 76, 229, 84, 71, 17, 255, 121, 155, 79, 171, 55, 127, 84, 71, 192, 200, 21, 154, 243, + 185, 214, 27, 116, 252, 35, 97, 127, 10, 224, 137, 255, 70, 203, 55, 191, 249, 112, 227, 159, 75, 47, 104, 26, + 103, 94, 118, 223, 193, 161, 201, 68, 65, 18, 27, 88, 209, 192, 105, 214, 64, 54, 29, 27, 76, 221, 206, 196, 60, + 164, 68, 80, 255, 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3853, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0703" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49faff12" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07f8fe" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49fbf4207030a4449faff124307f8feffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 191, 66, 7, 3, 10, 68, 73, 250, 255, 18, 67, 7, + 248, 254, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3854, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1844443549397027540" + }, + "fields": [] + }, + "cborHex": "d8669f1b1998c7a2ca120ad480ff", + "cborBytes": [216, 102, 159, 27, 25, 152, 199, 162, 202, 18, 10, 212, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3855, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2538025131424913712" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d" + }, + { + "_tag": "ByteArray", + "bytearray": "cdda71ed9bc69899675d08c4" + } + ] + }, + "cborHex": "d8669f1b2338e068f59899309f0a412d4ccdda71ed9bc69899675d08c4ffff", + "cborBytes": [ + 216, 102, 159, 27, 35, 56, 224, 104, 245, 152, 153, 48, 159, 10, 65, 45, 76, 205, 218, 113, 237, 155, 198, 152, + 153, 103, 93, 8, 196, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3856, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [] + } + ] + }, + "cborHex": "d905009f09d9050180ff", + "cborBytes": [217, 5, 0, 159, 9, 217, 5, 1, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3857, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3b2b1d82e4" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10504979344759749596" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "97fda00a380e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18350891351682691725" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7422490684982508655" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e5be57c2e323484" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14861192806069736836" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67d82c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18027131977161616816" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10526772612716197220" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bb40" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6489248151488637542" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e1ff3dc383fb13250ebd94" + }, + { + "_tag": "ByteArray", + "bytearray": "ffef89a21b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4274" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5913032340918015315" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12418332200324855245" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "82cc99da" + } + ] + }, + "cborHex": "d87b9f9f9f453b2b1d82e4ffd8669f1b91c92f0e69387bdc9f4697fda00a380e1bfeab767508d5b28dffffffbf1b6701fbf3b3073c6f481e5be57c2e3234841bce3d901e806095844367d82cffd8669f1bfa2d3d0579cdadb09f9f1b92169beb0442756442bb401b5a0e70cff0d72a66ff4be1ff3dc383fb13250ebd9445ffef89a21b9f4242741b520f4f95e1d09553ff1bac56c7574f2875cdffff4482cc99daff", + "cborBytes": [ + 216, 123, 159, 159, 159, 69, 59, 43, 29, 130, 228, 255, 216, 102, 159, 27, 145, 201, 47, 14, 105, 56, 123, 220, + 159, 70, 151, 253, 160, 10, 56, 14, 27, 254, 171, 118, 117, 8, 213, 178, 141, 255, 255, 255, 191, 27, 103, 1, 251, + 243, 179, 7, 60, 111, 72, 30, 91, 229, 124, 46, 50, 52, 132, 27, 206, 61, 144, 30, 128, 96, 149, 132, 67, 103, + 216, 44, 255, 216, 102, 159, 27, 250, 45, 61, 5, 121, 205, 173, 176, 159, 159, 27, 146, 22, 155, 235, 4, 66, 117, + 100, 66, 187, 64, 27, 90, 14, 112, 207, 240, 215, 42, 102, 255, 75, 225, 255, 61, 195, 131, 251, 19, 37, 14, 189, + 148, 69, 255, 239, 137, 162, 27, 159, 66, 66, 116, 27, 82, 15, 79, 149, 225, 208, 149, 83, 255, 27, 172, 86, 199, + 87, 79, 40, 117, 205, 255, 255, 68, 130, 204, 153, 218, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3858, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15849881365428524611" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "229eb51db66720cdc237e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9279727901119573591" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53189fd097461e36e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8900974456321591452" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60badecd29cedff9a39da7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9049174498841516586" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "acafa1d58e9f8826af345af2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afe2dc10fe39113e8d524d0b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcad0648e37abdc8cb7979c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18076591068614077014" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d07ae3709cf0cc5d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12575785589786209910" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "105024284946658423" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1326386268537481777" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10091296273989767627" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11514713160965215807" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10551865053946470776" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d8a9ecf71cfc3d3cf4c923f" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11349551658133801076" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6778894788660388255" + } + }, + { + "_tag": "ByteArray", + "bytearray": "83cb973708c9fd2d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7558921972889709985" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3759142423029015384" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bdbf61720267356439fbf4b229eb51db66720cdc237e41b80c8375c26836e574953189fd097461e36e41b7b869d1bcfdfc89c4b60badecd29cedff9a39da71b7d95204319f8da2a4cacafa1d58e9f8826af345af24cafe2dc10fe39113e8d524d0b4cbcad0648e37abdc8cb7979c41bfadcf3cd92bdaa5648d07ae3709cf0cc5d1bae862a5d52aeee76ff1b01751f07dd08f477d8669f1b12684548a321ea319f417dbf1b8c0b7c7ec66211cb1b9fcc7a9cc1d8d63f1b926fc15c425661784c5d8a9ecf71cfc3d3cf4c923fff1b9d81b519bf02c8749f1b5e1378e4e7d9619f4883cb973708c9fd2dffbf1b68e6af7c46fc6da11b342b281df0bee358ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 219, 246, 23, 32, 38, 115, 86, 67, 159, 191, 75, 34, 158, 181, 29, 182, 103, 32, 205, 194, 55, + 228, 27, 128, 200, 55, 92, 38, 131, 110, 87, 73, 83, 24, 159, 208, 151, 70, 30, 54, 228, 27, 123, 134, 157, 27, + 207, 223, 200, 156, 75, 96, 186, 222, 205, 41, 206, 223, 249, 163, 157, 167, 27, 125, 149, 32, 67, 25, 248, 218, + 42, 76, 172, 175, 161, 213, 142, 159, 136, 38, 175, 52, 90, 242, 76, 175, 226, 220, 16, 254, 57, 17, 62, 141, 82, + 77, 11, 76, 188, 173, 6, 72, 227, 122, 189, 200, 203, 121, 121, 196, 27, 250, 220, 243, 205, 146, 189, 170, 86, + 72, 208, 122, 227, 112, 156, 240, 204, 93, 27, 174, 134, 42, 93, 82, 174, 238, 118, 255, 27, 1, 117, 31, 7, 221, + 8, 244, 119, 216, 102, 159, 27, 18, 104, 69, 72, 163, 33, 234, 49, 159, 65, 125, 191, 27, 140, 11, 124, 126, 198, + 98, 17, 203, 27, 159, 204, 122, 156, 193, 216, 214, 63, 27, 146, 111, 193, 92, 66, 86, 97, 120, 76, 93, 138, 158, + 207, 113, 207, 195, 211, 207, 76, 146, 63, 255, 27, 157, 129, 181, 25, 191, 2, 200, 116, 159, 27, 94, 19, 120, + 228, 231, 217, 97, 159, 72, 131, 203, 151, 55, 8, 201, 253, 45, 255, 191, 27, 104, 230, 175, 124, 70, 252, 109, + 161, 27, 52, 43, 40, 29, 240, 190, 227, 88, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3859, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10039836875550435180" + }, + "fields": [] + }, + "cborHex": "d8669f1b8b54aa71ea0d276c80ff", + "cborBytes": [216, 102, 159, 27, 139, 84, 170, 113, 234, 13, 39, 108, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3860, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e5834309e009" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "76c362" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17977267330492606323" + } + } + } + ] + } + ] + }, + "cborHex": "d905029f8046e5834309e009bf4376c3621bf97c1563b23f2773ffff", + "cborBytes": [ + 217, 5, 2, 159, 128, 70, 229, 131, 67, 9, 224, 9, 191, 67, 118, 195, 98, 27, 249, 124, 21, 99, 178, 63, 39, 115, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3861, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14737890390087785220" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5845900275578171781" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "268fa4e3ef9ef9" + } + ] + }, + "cborHex": "d8669f1bcc8781399fd35b049fd8669f1b5120cf53e631f18580ff47268fa4e3ef9ef9ffff", + "cborBytes": [ + 216, 102, 159, 27, 204, 135, 129, 57, 159, 211, 91, 4, 159, 216, 102, 159, 27, 81, 32, 207, 83, 230, 49, 241, 133, + 128, 255, 71, 38, 143, 164, 227, 239, 158, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3862, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15829389196869210026" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3574242612701093630" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10608065751088330173" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17907205767456136225" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a50aad9659cd25a1d2f6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12184146041003528106" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3aad" + }, + { + "_tag": "ByteArray", + "bytearray": "ea8139c8" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fbe1e51cde2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b042ae84be401c184aaa" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "133597017647986836" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bdbad499b5acb8faa9f1b319a42b8171cdefe9fd8669f1b93376b98bf9b75bd9f1bf8832cc4e10c9c214aa50aad9659cd25a1d2f61ba916c845197f4faa423aad44ea8139c8ffffbf463fbe1e51cde24ab042ae84be401c184aaaffd8669f1b01daa1c79bf5b89480ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 219, 173, 73, 155, 90, 203, 143, 170, 159, 27, 49, 154, 66, 184, 23, 28, 222, 254, 159, 216, + 102, 159, 27, 147, 55, 107, 152, 191, 155, 117, 189, 159, 27, 248, 131, 44, 196, 225, 12, 156, 33, 74, 165, 10, + 173, 150, 89, 205, 37, 161, 210, 246, 27, 169, 22, 200, 69, 25, 127, 79, 170, 66, 58, 173, 68, 234, 129, 57, 200, + 255, 255, 191, 70, 63, 190, 30, 81, 205, 226, 74, 176, 66, 174, 132, 190, 64, 28, 24, 74, 170, 255, 216, 102, 159, + 27, 1, 218, 161, 199, 155, 245, 184, 148, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3863, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2759ac4a" + }, + { + "_tag": "ByteArray", + "bytearray": "7c609c" + }, + { + "_tag": "ByteArray", + "bytearray": "0403" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "597b6cd0307b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "14" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1865690222561887876" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8833727291659159166" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4115517478502888144" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a63af" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9117105458269171858" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7612" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9460782838511704048" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9dee890030a0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12141031400207329702" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b1498f462d11526c5f148" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13786438094467037647" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14966023894761825368" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11816534557502350823" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2009551a23aa82" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6053208465893734405" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1afe1edf3be377a71d5c261d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9909120275042792300" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17198788253947348699" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9f442759ac4a437c609c4204039f9f46597b6cd0307bff4114bf1b19e4435f60b886841b7a97b42b2e04867e1b391d41577d1372d0437a63af1b7e86771c1be8b0924276121b834b73ddc29a17f0469dee890030a01ba87d9bbb8838a9a64b9b1498f462d11526c5f1481bbf5344673a9ef9cf1bcfb1ff705b496458ff9f1ba3fcc392c80e25e7472009551a23aa82ffbf1b5401510748fbb8054c1afe1edf3be377a71d5c261d1b89844463ae8bf36c1beeae5ecb3bb146dbffffd9050a80ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 68, 39, 89, 172, 74, 67, 124, 96, 156, 66, 4, 3, + 159, 159, 70, 89, 123, 108, 208, 48, 123, 255, 65, 20, 191, 27, 25, 228, 67, 95, 96, 184, 134, 132, 27, 122, 151, + 180, 43, 46, 4, 134, 126, 27, 57, 29, 65, 87, 125, 19, 114, 208, 67, 122, 99, 175, 27, 126, 134, 119, 28, 27, 232, + 176, 146, 66, 118, 18, 27, 131, 75, 115, 221, 194, 154, 23, 240, 70, 157, 238, 137, 0, 48, 160, 27, 168, 125, 155, + 187, 136, 56, 169, 166, 75, 155, 20, 152, 244, 98, 209, 21, 38, 197, 241, 72, 27, 191, 83, 68, 103, 58, 158, 249, + 207, 27, 207, 177, 255, 112, 91, 73, 100, 88, 255, 159, 27, 163, 252, 195, 146, 200, 14, 37, 231, 71, 32, 9, 85, + 26, 35, 170, 130, 255, 191, 27, 84, 1, 81, 7, 72, 251, 184, 5, 76, 26, 254, 30, 223, 59, 227, 119, 167, 29, 92, + 38, 29, 27, 137, 132, 68, 99, 174, 139, 243, 108, 27, 238, 174, 94, 203, 59, 177, 70, 219, 255, 255, 217, 5, 10, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3864, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14867155418468386148" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30dfc27ba1" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0269f8f9043d060107060332" + } + ] + }, + "cborHex": "d8669f1bce52bf15625505649fd8669f1bffffffffffffffee9fbf1bffffffffffffffff4530dfc27ba1ffa0ffff4c0269f8f9043d060107060332ffff", + "cborBytes": [ + 216, 102, 159, 27, 206, 82, 191, 21, 98, 85, 5, 100, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 238, 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 255, 69, 48, 223, 194, 123, 161, 255, 160, 255, 255, 76, 2, + 105, 248, 249, 4, 61, 6, 1, 7, 6, 3, 50, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3865, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17668286261167201056" + }, + "fields": [] + }, + "cborHex": "d8669f1bf5325cbe72c91b2080ff", + "cborBytes": [216, 102, 159, 27, 245, 50, 92, 190, 114, 201, 27, 32, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3866, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7364990761515390861" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cfafbca6cd72" + }, + { + "_tag": "ByteArray", + "bytearray": "e7419c00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3473377124427410385" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3823543568186931201" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7203338189176324927" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3549406943499644592" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f71a8a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1647314564798533462" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905019f9fd8669f1b6635b4138228978d9f46cfafbca6cd7244e7419c001b3033ea178876abd11b350ff49e0502f801ffffbf1b63f765eb0adc433f1b314206cf3e99eeb0ffa043f71a8a9f1b16dc6fde6c24cf56ffffff", + "cborBytes": [ + 217, 5, 1, 159, 159, 216, 102, 159, 27, 102, 53, 180, 19, 130, 40, 151, 141, 159, 70, 207, 175, 188, 166, 205, + 114, 68, 231, 65, 156, 0, 27, 48, 51, 234, 23, 136, 118, 171, 209, 27, 53, 15, 244, 158, 5, 2, 248, 1, 255, 255, + 191, 27, 99, 247, 101, 235, 10, 220, 67, 63, 27, 49, 66, 6, 207, 62, 153, 238, 176, 255, 160, 67, 247, 26, 138, + 159, 27, 22, 220, 111, 222, 108, 36, 207, 86, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3867, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13271958939560751938" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bb82f78567216b3429fd9050480ffff", + "cborBytes": [216, 102, 159, 27, 184, 47, 120, 86, 114, 22, 179, 66, 159, 217, 5, 4, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3868, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10270923818497599986" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14426343291282062374" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f60fb" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13347515449304668898" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "796f0a" + } + } + ] + } + ] + }, + "cborHex": "d905039fbf1b8e89a6cb94a5e9f242b9ba1bc834aaca14b4fc26435f60fbffbf1bb93be6953dd7dae243796f0affff", + "cborBytes": [ + 217, 5, 3, 159, 191, 27, 142, 137, 166, 203, 148, 165, 233, 242, 66, 185, 186, 27, 200, 52, 170, 202, 20, 180, + 252, 38, 67, 95, 96, 251, 255, 191, 27, 185, 59, 230, 149, 61, 215, 218, 226, 67, 121, 111, 10, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3869, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02d6f949" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c8c89eb4bad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c0406f4b0037a48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b760505" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "723c730e6039d6b97512bdbb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab6d9bb6297495c99d49cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c99abddeb9a3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87e9f9f4402d6f949bf464c8c89eb4bad08486c0406f4b0037a48449b7605054c723c730e6039d6b97512bdbb4bab6d9bb6297495c99d49cb46c99abddeb9a311ffffff", + "cborBytes": [ + 216, 126, 159, 159, 68, 2, 214, 249, 73, 191, 70, 76, 140, 137, 235, 75, 173, 8, 72, 108, 4, 6, 244, 176, 3, 122, + 72, 68, 155, 118, 5, 5, 76, 114, 60, 115, 14, 96, 57, 214, 185, 117, 18, 189, 187, 75, 171, 109, 155, 182, 41, + 116, 149, 201, 157, 73, 203, 70, 201, 154, 189, 222, 185, 163, 17, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3870, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9917927824387244894" + }, + "fields": [] + }, + "cborHex": "d8669f1b89a38ecf1090835e80ff", + "cborBytes": [216, 102, 159, 27, 137, 163, 142, 207, 16, 144, 131, 94, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3871, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8321566496865563706" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12890176447946538257" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9851906645566605116" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c08566110fabfb45" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9fbf1b737c24a3ac76b43a1bb2e31b2f2ff5bd111b88b900e5814ec73c48c08566110fabfb45ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 191, 27, 115, 124, 36, 163, 172, 118, 180, 58, 27, + 178, 227, 27, 47, 47, 245, 189, 17, 27, 136, 185, 0, 229, 129, 78, 199, 60, 72, 192, 133, 102, 17, 15, 171, 251, + 69, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3872, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3300d0a564ea3b58528736" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ed4de7cdc2c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d09658df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81c237746e0204262640" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6bc3febdb26a1b24e822" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16939466304426905847" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6153053181348209922" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a0204a41b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7337919206684971788" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13719415871030954478" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10105886583528354895" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15215297453982743099" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12335035936130682414" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13676278654947306108" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17060465579551080610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6eb3124f26bf2b" + } + } + ] + } + ] + }, + "cborHex": "d905029fbf4b3300d0a564ea3b5852873642cf9e466ed4de7cdc2c44d09658df4a81c237746e02042626404a6bc3febdb26a1b24e82241ab1beb1512dad01090f7ffbf1b55640944a658e502455a0204a41b1b65d586a3f8f9530c1bbe65280bcea809ee1b8c3f524def97f44f1bd327986b988bfa3b1bab2ed9d480bf4e2e1bbdcbe6fa05642a7c1becc2f30debebc0a2476eb3124f26bf2bffff", + "cborBytes": [ + 217, 5, 2, 159, 191, 75, 51, 0, 208, 165, 100, 234, 59, 88, 82, 135, 54, 66, 207, 158, 70, 110, 212, 222, 124, + 220, 44, 68, 208, 150, 88, 223, 74, 129, 194, 55, 116, 110, 2, 4, 38, 38, 64, 74, 107, 195, 254, 189, 178, 106, + 27, 36, 232, 34, 65, 171, 27, 235, 21, 18, 218, 208, 16, 144, 247, 255, 191, 27, 85, 100, 9, 68, 166, 88, 229, 2, + 69, 90, 2, 4, 164, 27, 27, 101, 213, 134, 163, 248, 249, 83, 12, 27, 190, 101, 40, 11, 206, 168, 9, 238, 27, 140, + 63, 82, 77, 239, 151, 244, 79, 27, 211, 39, 152, 107, 152, 139, 250, 59, 27, 171, 46, 217, 212, 128, 191, 78, 46, + 27, 189, 203, 230, 250, 5, 100, 42, 124, 27, 236, 194, 243, 13, 235, 235, 192, 162, 71, 110, 179, 18, 79, 38, 191, + 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3873, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13723621602803418327" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2146377828926946798" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9955947547678905644" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16444996225227354291" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14708143433826481510" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2628005850766246895" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14591071478745274900" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3372087450727286039" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9483ff7e7dc85cc2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12616522003393725947" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d20" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17256962411247865686" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8023944540861115404" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15242218217024002243" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15239342543688210787" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3884a3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16871770442737422260" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bbe7419230af984d79f1b1dc977436ef6fdeed8669f1b8a2aa18bb5d2952c9f1be4385cf00150f0b3d8669f1bcc1dd286a6b8b56680ffbf1b24788d65c29203ef1bca7de633fef21a141b2ecc0fab9c270517489483ff7e7dc85cc21baf16e3eab92ec5fb425d20ffffff1bef7d0be1b8b28f56bf1b6f5ac70c17762c0c1bd3873cb62eb418c31bd37d054d4f08996341da433884a31bea2491d3c34c8fb4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 190, 116, 25, 35, 10, 249, 132, 215, 159, 27, 29, 201, 119, 67, 110, 246, 253, 238, 216, 102, + 159, 27, 138, 42, 161, 139, 181, 210, 149, 44, 159, 27, 228, 56, 92, 240, 1, 80, 240, 179, 216, 102, 159, 27, 204, + 29, 210, 134, 166, 184, 181, 102, 128, 255, 191, 27, 36, 120, 141, 101, 194, 146, 3, 239, 27, 202, 125, 230, 51, + 254, 242, 26, 20, 27, 46, 204, 15, 171, 156, 39, 5, 23, 72, 148, 131, 255, 126, 125, 200, 92, 194, 27, 175, 22, + 227, 234, 185, 46, 197, 251, 66, 93, 32, 255, 255, 255, 27, 239, 125, 11, 225, 184, 178, 143, 86, 191, 27, 111, + 90, 199, 12, 23, 118, 44, 12, 27, 211, 135, 60, 182, 46, 180, 24, 195, 27, 211, 125, 5, 77, 79, 8, 153, 99, 65, + 218, 67, 56, 132, 163, 27, 234, 36, 145, 211, 195, 76, 143, 180, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3874, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12564262668257505258" + }, + "fields": [] + }, + "cborHex": "d8669f1bae5d3a541630afea80ff", + "cborBytes": [216, 102, 159, 27, 174, 93, 58, 84, 22, 48, 175, 234, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3875, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7721565137412383659" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4da02f18fdd226" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13295451274715880231" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b6b288294f58163ab9f474da02f18fdd226d9050180d8669f1bb882ee7df5f45b2780ffffff", + "cborBytes": [ + 216, 102, 159, 27, 107, 40, 130, 148, 245, 129, 99, 171, 159, 71, 77, 160, 47, 24, 253, 210, 38, 217, 5, 1, 128, + 216, 102, 159, 27, 184, 130, 238, 125, 245, 244, 91, 39, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3876, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12958707772153461121" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "26623823919550693" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5efb12294601" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13057380289352872293" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2624369467766763171" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75b0ae40" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4748592204706201889" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17417225865278838593" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8662152646756262030" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5650704304436093534" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9516108716449375919" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4380a2d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9584624229712239819" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95a21e819f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11365316274708542868" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9440111503108908721" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "56f5" + } + ] + }, + "cborHex": "d8669f1bb3d6940f834cf9819f1b005e963a0f4990e5465efb122946019f1bb53522313410b165bf1b246ba2205d9e6ea34475b0ae401b41e6637378b3c1211bf1b66aa4e0b0d7411b783625f02c1de08e1b4e6b55a04caf225e1b8410027587f6a6af444380a2d31b85036cf495999ccb4595a21e819f1b9db9b6ef91f7f5941b830203656ee2a6b1ffff4256f5ffff", + "cborBytes": [ + 216, 102, 159, 27, 179, 214, 148, 15, 131, 76, 249, 129, 159, 27, 0, 94, 150, 58, 15, 73, 144, 229, 70, 94, 251, + 18, 41, 70, 1, 159, 27, 181, 53, 34, 49, 52, 16, 177, 101, 191, 27, 36, 107, 162, 32, 93, 158, 110, 163, 68, 117, + 176, 174, 64, 27, 65, 230, 99, 115, 120, 179, 193, 33, 27, 241, 182, 106, 164, 224, 176, 215, 65, 27, 120, 54, 37, + 240, 44, 29, 224, 142, 27, 78, 107, 85, 160, 76, 175, 34, 94, 27, 132, 16, 2, 117, 135, 246, 166, 175, 68, 67, + 128, 162, 211, 27, 133, 3, 108, 244, 149, 153, 156, 203, 69, 149, 162, 30, 129, 159, 27, 157, 185, 182, 239, 145, + 247, 245, 148, 27, 131, 2, 3, 101, 110, 226, 166, 177, 255, 255, 66, 86, 245, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3877, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f9f80d9050c80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 159, 128, 217, 5, 12, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3878, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "958659330405856985" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7185129368521275545" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2535552376329570140" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9944202412721009470" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d257bfd6a3c8a7ab29f2" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c95e596ded7b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2049903014454167128" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8376" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2087174982756899856" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a628d22947b5f790214" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5096472679530999109" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9fbf1b0d4dd794f17476d91b63b6b5179beff8991b23301773cc85875c1b8a00e76860d1733eff4ad257bfd6a3c8a7ab29f280bf477c95e596ded7b61b1c72b7ee488b06584283761b1cf72296a74e9c10ffbf4a0a628d22947b5f7902141b46ba4ee656edad45ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 191, 27, 13, 77, 215, 148, 241, 116, 118, 217, 27, + 99, 182, 181, 23, 155, 239, 248, 153, 27, 35, 48, 23, 115, 204, 133, 135, 92, 27, 138, 0, 231, 104, 96, 209, 115, + 62, 255, 74, 210, 87, 191, 214, 163, 200, 167, 171, 41, 242, 128, 191, 71, 124, 149, 229, 150, 222, 215, 182, 27, + 28, 114, 183, 238, 72, 139, 6, 88, 66, 131, 118, 27, 28, 247, 34, 150, 167, 78, 156, 16, 255, 191, 74, 10, 98, + 141, 34, 148, 123, 95, 121, 2, 20, 27, 70, 186, 78, 230, 86, 237, 173, 69, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3879, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4221225747455605671" + }, + "fields": [] + }, + "cborHex": "d8669f1b3a94ce73c9d2fba780ff", + "cborBytes": [216, 102, 159, 27, 58, 148, 206, 115, 201, 210, 251, 167, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3880, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5716147739302054901" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "990a89497651bf2e77badc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f2568a70efb91f10b148d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8834656739532997012" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16353878802878700696" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16498253653602513523" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5307d9e0" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2625051849807086271" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5815856915655416971" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "656f7552" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16219376584291557636" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "688298452156879257" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20cd6472bf2428fdfcd71aff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d51787f9b63e02f18f5c6abc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6977536265044216965" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1602936742983573119" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7a2ce088e180878f89dc" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7121f98d1aa37bd5a07bea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7662744691714826290" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15594857576244745106" + } + }, + { + "_tag": "ByteArray", + "bytearray": "521a5c950c2e340c60e8c77c" + }, + { + "_tag": "ByteArray", + "bytearray": "14cb471102" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01a12076b7cbec00eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14956987078597677773" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "519028e385fce4996ffc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8732832564067614871" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ce73c64d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c0c993a7b8da3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3fbe565eb97f5fae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98a87d5e28e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "384f01ad288d85632f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f52a30b1e9e1170f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15701223063316055681" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3439479398082497872" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3974901407652503441" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9522516301319219933" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b4f53d6155cc04bf59fbf4b990a89497651bf2e77badc4b5f2568a70efb91f10b148dff9fbf1b7a9b017f206001941be2f4a61fe9601c981be4f592495544b273445307d9e0ff1b246e0ebfd0bbc2bfbf1b50b6130d1223dc8b44656f75521be116cd11c8fca1041b098d53cba44311994c20cd6472bf2428fdfcd71aff41244cd51787f9b63e02f18f5c6abc1b60d53043b55dcc85ff9f1b163ec6799af51e7f4a7a2ce088e180878f89dcffff4b7121f98d1aa37bd5a07bea1b6a5789b2ba2c20329f9f1bd86c10572ae093924c521a5c950c2e340c60e8c77c4514cb471102ffbf4901a12076b7cbec00eb1bcf91e480a1ec12cd4a519028e385fce4996ffc1b793140f2d036c097456ce73c64d3476c0c993a7b8da3417e483fbe565eb97f5fae4698a87d5e28e649384f01ad288d85632f48f52a30b1e9e1170f1bd9e5f32ffc1fc681ffd8669f1b2fbb7c4a16fb4d509f1b3729afc53453df911b8426c61fa3ffaaddffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 79, 83, 214, 21, 92, 192, 75, 245, 159, 191, 75, 153, 10, 137, 73, 118, 81, 191, 46, 119, 186, + 220, 75, 95, 37, 104, 167, 14, 251, 145, 241, 11, 20, 141, 255, 159, 191, 27, 122, 155, 1, 127, 32, 96, 1, 148, + 27, 226, 244, 166, 31, 233, 96, 28, 152, 27, 228, 245, 146, 73, 85, 68, 178, 115, 68, 83, 7, 217, 224, 255, 27, + 36, 110, 14, 191, 208, 187, 194, 191, 191, 27, 80, 182, 19, 13, 18, 35, 220, 139, 68, 101, 111, 117, 82, 27, 225, + 22, 205, 17, 200, 252, 161, 4, 27, 9, 141, 83, 203, 164, 67, 17, 153, 76, 32, 205, 100, 114, 191, 36, 40, 253, + 252, 215, 26, 255, 65, 36, 76, 213, 23, 135, 249, 182, 62, 2, 241, 143, 92, 106, 188, 27, 96, 213, 48, 67, 181, + 93, 204, 133, 255, 159, 27, 22, 62, 198, 121, 154, 245, 30, 127, 74, 122, 44, 224, 136, 225, 128, 135, 143, 137, + 220, 255, 255, 75, 113, 33, 249, 141, 26, 163, 123, 213, 160, 123, 234, 27, 106, 87, 137, 178, 186, 44, 32, 50, + 159, 159, 27, 216, 108, 16, 87, 42, 224, 147, 146, 76, 82, 26, 92, 149, 12, 46, 52, 12, 96, 232, 199, 124, 69, 20, + 203, 71, 17, 2, 255, 191, 73, 1, 161, 32, 118, 183, 203, 236, 0, 235, 27, 207, 145, 228, 128, 161, 236, 18, 205, + 74, 81, 144, 40, 227, 133, 252, 228, 153, 111, 252, 27, 121, 49, 64, 242, 208, 54, 192, 151, 69, 108, 231, 60, + 100, 211, 71, 108, 12, 153, 58, 123, 141, 163, 65, 126, 72, 63, 190, 86, 94, 185, 127, 95, 174, 70, 152, 168, 125, + 94, 40, 230, 73, 56, 79, 1, 173, 40, 141, 133, 99, 47, 72, 245, 42, 48, 177, 233, 225, 23, 15, 27, 217, 229, 243, + 47, 252, 31, 198, 129, 255, 216, 102, 159, 27, 47, 187, 124, 74, 22, 251, 77, 80, 159, 27, 55, 41, 175, 197, 52, + 83, 223, 145, 27, 132, 38, 198, 31, 163, 255, 170, 221, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3881, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9349072698431579653" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3968543088722810613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13842410184782289181" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6729818873669303324" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15665756061983655457" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8174832109566471044" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14502835766869454550" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13071059046138509593" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1002e247288d08b3" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99fd8669f1b81be9415f151260580ffbf1b371318e9b72796f51bc01a1eb90b32991d1b5d651e9c07c73c1c1bd967f2233c7546211b7172d67dd52aab841bc9446c4a68156ed61bb565baf2f33df919481002e247288d08b3ff1bffffffffffffffedffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 216, 102, 159, 27, 129, 190, 148, 21, 241, 81, 38, + 5, 128, 255, 191, 27, 55, 19, 24, 233, 183, 39, 150, 245, 27, 192, 26, 30, 185, 11, 50, 153, 29, 27, 93, 101, 30, + 156, 7, 199, 60, 28, 27, 217, 103, 242, 35, 60, 117, 70, 33, 27, 113, 114, 214, 125, 213, 42, 171, 132, 27, 201, + 68, 108, 74, 104, 21, 110, 214, 27, 181, 101, 186, 242, 243, 61, 249, 25, 72, 16, 2, 226, 71, 40, 141, 8, 179, + 255, 27, 255, 255, 255, 255, 255, 255, 255, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3882, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6138324666124173846" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9704765285628124480" + } + } + ] + }, + "cborHex": "d8669f1b552fb5c2f85982169f1b86ae409bf6681d40ffff", + "cborBytes": [ + 216, 102, 159, 27, 85, 47, 181, 194, 248, 89, 130, 22, 159, 27, 134, 174, 64, 155, 246, 104, 29, 64, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3883, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05f90400" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3903110405256111262" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0507ff57" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3681262241803824845" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2099262ac153472" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5536862851103538447" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1420691055700089333" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6435898373515114356" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10193521108242445765" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11400234407113759233" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13993943911521118517" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18095057077871904463" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13271681562936036499" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fdc256476b5686db" + }, + { + "_tag": "ByteArray", + "bytearray": "c813712eb4b71e637011c9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15718333426874162352" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "392727177578756186" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9643c0499d9f" + } + ] + } + ] + } + ] + }, + "cborHex": "d9050a9f1bfffffffffffffff34405f90400d8669f1b362aa23be86be49e80ff440507ff579fbf1b3316788137c66ecd48e2099262ac1534721b4cd6e36d72153d0f1b13b74efcee9419f51b5950e778cbe1f7741b8d76a970bb3cb5c51b9e35c4cad0339a011bc23479d82cf4e935ffd8669f1bfb1e8e8a64f906cf80ffa0d8669f1bb82e7c10aae74c939f48fdc256476b5686db4bc813712eb4b71e637011c91bda22bcf8f1fb9cb01b05733f498939385a469643c0499d9fffffffff", + "cborBytes": [ + 217, 5, 10, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 68, 5, 249, 4, 0, 216, 102, 159, 27, 54, 42, 162, 59, + 232, 107, 228, 158, 128, 255, 68, 5, 7, 255, 87, 159, 191, 27, 51, 22, 120, 129, 55, 198, 110, 205, 72, 226, 9, + 146, 98, 172, 21, 52, 114, 27, 76, 214, 227, 109, 114, 21, 61, 15, 27, 19, 183, 78, 252, 238, 148, 25, 245, 27, + 89, 80, 231, 120, 203, 225, 247, 116, 27, 141, 118, 169, 112, 187, 60, 181, 197, 27, 158, 53, 196, 202, 208, 51, + 154, 1, 27, 194, 52, 121, 216, 44, 244, 233, 53, 255, 216, 102, 159, 27, 251, 30, 142, 138, 100, 249, 6, 207, 128, + 255, 160, 216, 102, 159, 27, 184, 46, 124, 16, 170, 231, 76, 147, 159, 72, 253, 194, 86, 71, 107, 86, 134, 219, + 75, 200, 19, 113, 46, 180, 183, 30, 99, 112, 17, 201, 27, 218, 34, 188, 248, 241, 251, 156, 176, 27, 5, 115, 63, + 73, 137, 57, 56, 90, 70, 150, 67, 192, 73, 157, 159, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3884, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13132510857499236115" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "38c642edff2b1c" + } + ] + }, + "cborHex": "d8669f1bb6400d0bbe33d7139f4738c642edff2b1cffff", + "cborBytes": [ + 216, 102, 159, 27, 182, 64, 13, 11, 190, 51, 215, 19, 159, 71, 56, 198, 66, 237, 255, 43, 28, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3885, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "145724437244570739" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9f1b0205b79a850e6c73ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 27, 2, 5, 183, 154, 133, 14, 108, 115, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3886, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6400239656412420139" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "897757" + } + ] + }, + "cborHex": "d8669f1b58d2380ebdd4982b9f43897757ffff", + "cborBytes": [216, 102, 159, 27, 88, 210, 56, 14, 189, 212, 152, 43, 159, 67, 137, 119, 87, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3887, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13712648564028874120" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "208294490158688443" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16452596313043369290" + } + }, + { + "_tag": "ByteArray", + "bytearray": "595e18de0d8815a6" + }, + { + "_tag": "ByteArray", + "bytearray": "fe0ce1f7c6103c062726a4" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14004343083970854867" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b7e2bc51a5447095cf4261" + }, + { + "_tag": "ByteArray", + "bytearray": "3e8216ec863b75" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2161033060889826018" + } + }, + { + "_tag": "ByteArray", + "bytearray": "77" + }, + { + "_tag": "ByteArray", + "bytearray": "d0fd6cea" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bbe4d1d375cb61d889fa0d905039f9f1b02e402bc369468bb1be4535d2d57d9fd4a48595e18de0d8815a64bfe0ce1f7c6103c062726a4ffd8669f1bc2596bd630c7ffd39f4bb7e2bc51a5447095cf4261473e8216ec863b751b1dfd881e863692e2417744d0fd6ceaffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 190, 77, 29, 55, 92, 182, 29, 136, 159, 160, 217, 5, 3, 159, 159, 27, 2, 228, 2, 188, 54, 148, + 104, 187, 27, 228, 83, 93, 45, 87, 217, 253, 74, 72, 89, 94, 24, 222, 13, 136, 21, 166, 75, 254, 12, 225, 247, + 198, 16, 60, 6, 39, 38, 164, 255, 216, 102, 159, 27, 194, 89, 107, 214, 48, 199, 255, 211, 159, 75, 183, 226, 188, + 81, 165, 68, 112, 149, 207, 66, 97, 71, 62, 130, 22, 236, 134, 59, 117, 27, 29, 253, 136, 30, 134, 54, 146, 226, + 65, 119, 68, 208, 253, 108, 234, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3888, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2928204039251870094" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "999f28fa77ca179313d8ef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe3a014a6c48f201b74f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dffe0aaaf02a19be7fc339a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1754429054901602748" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7856814288823861925" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4041311659217026910" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2342555699367854327" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13433882438933750376" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "586ccf334bc028060ca9812d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14070888903289150481" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2944933805196754876" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15620581470574550620" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4443001973584144292" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18198102650648410327" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6052089649166043331" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10490798417920462236" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9991965793571067145" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "641a88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10425772024751465467" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6679932907ae78" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7dc61f467e" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "688630592700355840" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c5a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9942612622403407425" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7501432510387323627" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cf46aa377ff048786cfa521" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6349bed5529367" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a64650bb1df5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8579322181930422780" + } + } + } + ] + } + ] + }, + "cborHex": "d905069fd8669f1b28a3120f3578c18e9fbf4b999f28fa77ca179313d8ef4afe3a014a6c48f201b74f4cdffe0aaaf02a19be7fc339a71b1858fbee1908c9bcffffff9f1b6d0902f7ef8f42a5bf1b38159f8ad2467f5e1b20826dff476340f71bba6ebce7070122684c586ccf334bc028060ca9812d1bc345d6e822891c111b28de81b161cabfbc1bd8c774160aa51e5c1b3da8b6c143d7a7a41bfc8ca5f16dfe38d71b53fd5778775c48c3ff1b9196cd9416610d9cffbf412e1b8aaa97f315a8550943641a881b90afc86b1c8423fb476679932907ae78457dc61f467effd87b80bf1b098e81e0235f1500420c5a1b89fb418079ab8e411b681a711fb83402eb4c9cf46aa377ff048786cfa521476349bed552936746a64650bb1df51b770fe011bb9791fcffff", + "cborBytes": [ + 217, 5, 6, 159, 216, 102, 159, 27, 40, 163, 18, 15, 53, 120, 193, 142, 159, 191, 75, 153, 159, 40, 250, 119, 202, + 23, 147, 19, 216, 239, 74, 254, 58, 1, 74, 108, 72, 242, 1, 183, 79, 76, 223, 254, 10, 170, 240, 42, 25, 190, 127, + 195, 57, 167, 27, 24, 88, 251, 238, 25, 8, 201, 188, 255, 255, 255, 159, 27, 109, 9, 2, 247, 239, 143, 66, 165, + 191, 27, 56, 21, 159, 138, 210, 70, 127, 94, 27, 32, 130, 109, 255, 71, 99, 64, 247, 27, 186, 110, 188, 231, 7, 1, + 34, 104, 76, 88, 108, 207, 51, 75, 192, 40, 6, 12, 169, 129, 45, 27, 195, 69, 214, 232, 34, 137, 28, 17, 27, 40, + 222, 129, 177, 97, 202, 191, 188, 27, 216, 199, 116, 22, 10, 165, 30, 92, 27, 61, 168, 182, 193, 67, 215, 167, + 164, 27, 252, 140, 165, 241, 109, 254, 56, 215, 27, 83, 253, 87, 120, 119, 92, 72, 195, 255, 27, 145, 150, 205, + 148, 22, 97, 13, 156, 255, 191, 65, 46, 27, 138, 170, 151, 243, 21, 168, 85, 9, 67, 100, 26, 136, 27, 144, 175, + 200, 107, 28, 132, 35, 251, 71, 102, 121, 147, 41, 7, 174, 120, 69, 125, 198, 31, 70, 126, 255, 216, 123, 128, + 191, 27, 9, 142, 129, 224, 35, 95, 21, 0, 66, 12, 90, 27, 137, 251, 65, 128, 121, 171, 142, 65, 27, 104, 26, 113, + 31, 184, 52, 2, 235, 76, 156, 244, 106, 163, 119, 255, 4, 135, 134, 207, 165, 33, 71, 99, 73, 190, 213, 82, 147, + 103, 70, 166, 70, 80, 187, 29, 245, 27, 119, 15, 224, 17, 187, 151, 145, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3889, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17080683981616119796" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5341689179216475415" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16750303425207130606" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10186266713685185753" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17346822547353601523" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4840fa47d14a76df61" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2409205329569780190" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef8d0a8af4524f20d6d4055e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec9d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5219310673838917031" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16512137359174978426" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17261373639764047694" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6acb7dbfd4a19c4f72c9d6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6309000589247042591" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1fa45d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16936505546107577574" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18190416490544961207" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9880179474239693825" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3118608036007355788" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16265799017097641375" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bed0ac7957ceefff49fbf1b4a217e01cbbef5171be8750837e37ad9ee1b8d5ce39b609754d91bf0bc4b330cbf85f3494840fa47d14a76df611b216f377b93fc11de4cef8d0a8af4524f20d6d4055e42ec9dffa01b486eb7679e92c5a71be526e5717014cb7a9fd8669f1bef8cb7dee56d774e9f4b6acb7dbfd4a19c4f72c9d6ffff1b578e129c01ccd41f431fa45d1beb0a8e0f8c2ce4e6d8669f1bfc71576bd35716b79f1b891d72e26729a4011b2b47857c53e5a58c1be1bbba06b200bd9fffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 237, 10, 199, 149, 124, 238, 255, 244, 159, 191, 27, 74, 33, 126, 1, 203, 190, 245, 23, 27, + 232, 117, 8, 55, 227, 122, 217, 238, 27, 141, 92, 227, 155, 96, 151, 84, 217, 27, 240, 188, 75, 51, 12, 191, 133, + 243, 73, 72, 64, 250, 71, 209, 74, 118, 223, 97, 27, 33, 111, 55, 123, 147, 252, 17, 222, 76, 239, 141, 10, 138, + 244, 82, 79, 32, 214, 212, 5, 94, 66, 236, 157, 255, 160, 27, 72, 110, 183, 103, 158, 146, 197, 167, 27, 229, 38, + 229, 113, 112, 20, 203, 122, 159, 216, 102, 159, 27, 239, 140, 183, 222, 229, 109, 119, 78, 159, 75, 106, 203, + 125, 191, 212, 161, 156, 79, 114, 201, 214, 255, 255, 27, 87, 142, 18, 156, 1, 204, 212, 31, 67, 31, 164, 93, 27, + 235, 10, 142, 15, 140, 44, 228, 230, 216, 102, 159, 27, 252, 113, 87, 107, 211, 87, 22, 183, 159, 27, 137, 29, + 114, 226, 103, 41, 164, 1, 27, 43, 71, 133, 124, 83, 229, 165, 140, 27, 225, 187, 186, 6, 178, 0, 189, 159, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3890, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1536368997790614423" + }, + "fields": [] + }, + "cborHex": "d8669f1b15524776a53b839780ff", + "cborBytes": [216, 102, 159, 27, 21, 82, 71, 118, 165, 59, 131, 151, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3891, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8734638509241867174" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1352409647295270538" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3e3d30ad7455ef853f655d2c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9412741700396438181" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e59" + }, + { + "_tag": "ByteArray", + "bytearray": "d8a1a204a0afa4b28f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17674919731244178288" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11238717236221915075" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f7622c565" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10189666921098355736" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6478331602526707372" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6217196451336566021" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18284148036593035921" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9139466634827904580" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14318899673934754460" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10470389157216703405" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9dd7856a4bb350" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58f03b28996b0fcfcab23b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c13ef3d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eed456cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11567586210680562562" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1f76f1e26a8059c6168bea" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9ed6211b7de9" + } + ] + }, + "cborHex": "d8669f1b7937ab7230cf1ba69fd8669f1b12c4b968a9d88e8a9f4c3e3d30ad7455ef853f655d2c1b82a0c6b4a6a2d2a5424e5949d8a1a204a0afa4b28fd8669f1bf549edd98e5a1b709f1b9bf7f1c7f4112fc3455f7622c565ffffffff9fa080ff1b8d68f813db9da4189f1b59e7a844d1ca9eacd8669f1b5647eb3b7cbc35059f1bfdbe57c405c8aa911b7ed5e87b3d73b644ffff1bc6b6f3637f56729cbf1b914e4b76c800d3ad479dd7856a4bb3504b58f03b28996b0fcfcab23b44c13ef3d644eed456cd1ba088525ef4526382ff4b1f76f1e26a8059c6168beaff469ed6211b7de9ffff", + "cborBytes": [ + 216, 102, 159, 27, 121, 55, 171, 114, 48, 207, 27, 166, 159, 216, 102, 159, 27, 18, 196, 185, 104, 169, 216, 142, + 138, 159, 76, 62, 61, 48, 173, 116, 85, 239, 133, 63, 101, 93, 44, 27, 130, 160, 198, 180, 166, 162, 210, 165, 66, + 78, 89, 73, 216, 161, 162, 4, 160, 175, 164, 178, 143, 216, 102, 159, 27, 245, 73, 237, 217, 142, 90, 27, 112, + 159, 27, 155, 247, 241, 199, 244, 17, 47, 195, 69, 95, 118, 34, 197, 101, 255, 255, 255, 255, 159, 160, 128, 255, + 27, 141, 104, 248, 19, 219, 157, 164, 24, 159, 27, 89, 231, 168, 68, 209, 202, 158, 172, 216, 102, 159, 27, 86, + 71, 235, 59, 124, 188, 53, 5, 159, 27, 253, 190, 87, 196, 5, 200, 170, 145, 27, 126, 213, 232, 123, 61, 115, 182, + 68, 255, 255, 27, 198, 182, 243, 99, 127, 86, 114, 156, 191, 27, 145, 78, 75, 118, 200, 0, 211, 173, 71, 157, 215, + 133, 106, 75, 179, 80, 75, 88, 240, 59, 40, 153, 107, 15, 207, 202, 178, 59, 68, 193, 62, 243, 214, 68, 238, 212, + 86, 205, 27, 160, 136, 82, 94, 244, 82, 99, 130, 255, 75, 31, 118, 241, 226, 106, 128, 89, 198, 22, 139, 234, 255, + 70, 158, 214, 33, 27, 125, 233, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3892, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18329195962362259212" + }, + "fields": [] + }, + "cborHex": "d8669f1bfe5e629d9320670c80ff", + "cborBytes": [216, 102, 159, 27, 254, 94, 98, 157, 147, 32, 103, 12, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3893, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3424117989461148577" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "24106768109931823" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f80d8669f1b2f84e92b6edb43a180ff1b0055a4fa55e00d2fffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 128, 216, 102, 159, 27, 47, 132, 233, 43, 110, + 219, 67, 161, 128, 255, 27, 0, 85, 164, 250, 85, 224, 13, 47, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3894, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "66cd65" + }, + { + "_tag": "ByteArray", + "bytearray": "b4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6597681052291201897" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "706f81e4" + } + ] + }, + "cborHex": "d905069f4366cd6541b41b5b8fabf607247b698044706f81e4ff", + "cborBytes": [ + 217, 5, 6, 159, 67, 102, 205, 101, 65, 180, 27, 91, 143, 171, 246, 7, 36, 123, 105, 128, 68, 112, 111, 129, 228, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3895, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2813149070964789258" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15214673419719818358" + } + } + ] + }, + "cborHex": "d8669f1b270a502ce313900a9f1bd32560dd4bfa3c76ffff", + "cborBytes": [ + 216, 102, 159, 27, 39, 10, 80, 44, 227, 19, 144, 10, 159, 27, 211, 37, 96, 221, 75, 250, 60, 118, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3896, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7835713083571241898" + }, + "fields": [] + }, + "cborHex": "d8669f1b6cbe0b88bc2503aa80ff", + "cborBytes": [216, 102, 159, 27, 108, 190, 11, 136, 188, 37, 3, 170, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3897, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13172656885306221336" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d4d5055c0ab4" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d905079fd8669f1bb6ceada53cc7e3189f0f1146d4d5055c0ab4ffffa0ff", + "cborBytes": [ + 217, 5, 7, 159, 216, 102, 159, 27, 182, 206, 173, 165, 60, 199, 227, 24, 159, 15, 17, 70, 212, 213, 5, 92, 10, + 180, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3898, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17247850355844047956" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3296637577600262941" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c5e7e5f2c43" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "24fa9e9971e5" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "986018620135603604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "594385990693816118" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10862534790859776503" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22d9ac" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc001b89" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19fd90506809fd8669f1bef5cac83ff2de4549f1b2dc002691611631d469c5e7e5f2c43ffffff9f804624fa9e9971e5a0ffd905039fbf1b0daf0ab5fb1a7d941b083faee8cac607361b96bf79d71184e1f74322d9acff44fc001b89ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 217, 5, 6, 128, 159, 216, 102, 159, 27, 239, 92, + 172, 131, 255, 45, 228, 84, 159, 27, 45, 192, 2, 105, 22, 17, 99, 29, 70, 156, 94, 126, 95, 44, 67, 255, 255, 255, + 159, 128, 70, 36, 250, 158, 153, 113, 229, 160, 255, 217, 5, 3, 159, 191, 27, 13, 175, 10, 181, 251, 26, 125, 148, + 27, 8, 63, 174, 232, 202, 198, 7, 54, 27, 150, 191, 121, 215, 17, 132, 225, 247, 67, 34, 217, 172, 255, 68, 252, + 0, 27, 137, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3899, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c4b8adcd77b9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7710485555999078387" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10342511577118042553" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6181924984334782516" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13447010505435673990" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d9050a9f9f46c4b8adcd77b9bf1b6b0125c2e31af7f31b8f87fb7b7f7c69b9ff1b55ca9c051f631034d8669f1bba9d60cf3370758680ffffff", + "cborBytes": [ + 217, 5, 10, 159, 159, 70, 196, 184, 173, 205, 119, 185, 191, 27, 107, 1, 37, 194, 227, 26, 247, 243, 27, 143, 135, + 251, 123, 127, 124, 105, 185, 255, 27, 85, 202, 156, 5, 31, 99, 16, 52, 216, 102, 159, 27, 186, 157, 96, 207, 51, + 112, 117, 134, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3900, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9205092141677550005" + }, + "fields": [] + }, + "cborHex": "d8669f1b7fbf0e883d6e19b580ff", + "cborBytes": [216, 102, 159, 27, 127, 191, 14, 136, 61, 110, 25, 181, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3901, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11431775202333941634" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "20fafb" + } + ] + }, + "cborHex": "d8669f1b9ea5d2fa773bdf829f4320fafbffff", + "cborBytes": [216, 102, 159, 27, 158, 165, 210, 250, 119, 59, 223, 130, 159, 67, 32, 250, 251, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3902, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "31778532410029770" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb45b3b51f2d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17028325224638131430" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17660361676394120829" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "276c1b18d8b1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "86c9846c3ce0ec89" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14331618364340327100" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3214932334281045917" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3033498697302373777" + } + } + ] + }, + "cborHex": "d8669f1b0070e66827c876ca9f9f9f46cb45b3b51f2dffd8669f1bec50c39266612ce69f1bf51635604664c67dffff46276c1b18d8b19f4886c9846c3ce0ec891bc6e422f85ef852bcffff1b2c9dbbecb1bd379d1b2a1926fe37517591ffff", + "cborBytes": [ + 216, 102, 159, 27, 0, 112, 230, 104, 39, 200, 118, 202, 159, 159, 159, 70, 203, 69, 179, 181, 31, 45, 255, 216, + 102, 159, 27, 236, 80, 195, 146, 102, 97, 44, 230, 159, 27, 245, 22, 53, 96, 70, 100, 198, 125, 255, 255, 70, 39, + 108, 27, 24, 216, 177, 159, 72, 134, 201, 132, 108, 60, 224, 236, 137, 27, 198, 228, 34, 248, 94, 248, 82, 188, + 255, 255, 27, 44, 157, 187, 236, 177, 189, 55, 157, 27, 42, 25, 38, 254, 55, 81, 117, 145, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3903, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7a60c9d4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "123268b65669" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a7f5c9f41dd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16609450588570132300" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11607086291305552544" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17304487825054394950" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a766b2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2589178806690519800" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e6f25a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8059952475166318292" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e86d279725fc2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14075870943108750792" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12549497408749176705" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9453039326643909815" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17169169574428379109" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16536842397330895385" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3783836015617262475" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f6ad36a04cafae5dc46e95" + } + ] + } + ] + } + ] + }, + "cborHex": "d905009f447a60c9d49f46123268b6566980ffbf460a7f5c9f41dd1be6809f4f46201f4c41c41ba114a77c2692daa0ffd8669f1bf025e3fe68706a469f9f43a766b2ff9f1b23ee9c6818c21af843e6f25a1b6fdab4129cd19ed4ffbf473e86d279725fc21bc3578a0bac3d5dc8ff1bae28c567362e07811b832ff12ee86874b7ffffd8669f1bee4524c3043f87e59f1be57eaa8b5f86f219d8669f1b3482e2ceff32438b9f4bf6ad36a04cafae5dc46e95ffffffffff", + "cborBytes": [ + 217, 5, 0, 159, 68, 122, 96, 201, 212, 159, 70, 18, 50, 104, 182, 86, 105, 128, 255, 191, 70, 10, 127, 92, 159, + 65, 221, 27, 230, 128, 159, 79, 70, 32, 31, 76, 65, 196, 27, 161, 20, 167, 124, 38, 146, 218, 160, 255, 216, 102, + 159, 27, 240, 37, 227, 254, 104, 112, 106, 70, 159, 159, 67, 167, 102, 178, 255, 159, 27, 35, 238, 156, 104, 24, + 194, 26, 248, 67, 230, 242, 90, 27, 111, 218, 180, 18, 156, 209, 158, 212, 255, 191, 71, 62, 134, 210, 121, 114, + 95, 194, 27, 195, 87, 138, 11, 172, 61, 93, 200, 255, 27, 174, 40, 197, 103, 54, 46, 7, 129, 27, 131, 47, 241, 46, + 232, 104, 116, 183, 255, 255, 216, 102, 159, 27, 238, 69, 36, 195, 4, 63, 135, 229, 159, 27, 229, 126, 170, 139, + 95, 134, 242, 25, 216, 102, 159, 27, 52, 130, 226, 206, 255, 50, 67, 139, 159, 75, 246, 173, 54, 160, 76, 175, + 174, 93, 196, 110, 149, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3904, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "15" + } + ] + }, + "cborHex": "d905009f4115ff", + "cborBytes": [217, 5, 0, 159, 65, 21, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3905, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16711874681462187135" + }, + "fields": [] + }, + "cborHex": "d8669f1be7ec817abf65e47f80ff", + "cborBytes": [216, 102, 159, 27, 231, 236, 129, 122, 191, 101, 228, 127, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3906, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8177090879318014018" + }, + "fields": [] + }, + "cborHex": "d8669f1b717adcd4a5d6384280ff", + "cborBytes": [216, 102, 159, 27, 113, 122, 220, 212, 165, 214, 56, 66, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3907, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9415418168642193145" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "36a1573c22" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16283726962255990014" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "834b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6039396105631368789" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "902f931d62d7b246" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91950af4cf18" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9156" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12331546123078826075" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a809de4bd15751" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a0fcc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3738f9547ecde616b83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10159842590531711844" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + "cborHex": "d8669f1b82aa48f079ad46f99fbf4536a1573c221be1fb6b65b4b80cfe42834b1b53d03ec28e09065548902f931d62d7b2464691950af4cf184291561bab2273dd1575785b47a809de4bd15751438a0fcc4ad3738f9547ecde616b831b8cff0301c686f364ff1bfffffffffffffff2a002ffff", + "cborBytes": [ + 216, 102, 159, 27, 130, 170, 72, 240, 121, 173, 70, 249, 159, 191, 69, 54, 161, 87, 60, 34, 27, 225, 251, 107, + 101, 180, 184, 12, 254, 66, 131, 75, 27, 83, 208, 62, 194, 142, 9, 6, 85, 72, 144, 47, 147, 29, 98, 215, 178, 70, + 70, 145, 149, 10, 244, 207, 24, 66, 145, 86, 27, 171, 34, 115, 221, 21, 117, 120, 91, 71, 168, 9, 222, 75, 209, + 87, 81, 67, 138, 15, 204, 74, 211, 115, 143, 149, 71, 236, 222, 97, 107, 131, 27, 140, 255, 3, 1, 198, 134, 243, + 100, 255, 27, 255, 255, 255, 255, 255, 255, 255, 242, 160, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3908, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16934935596376348117" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + }, + "cborHex": "d9050d9f1beb04fa33242155d50dff", + "cborBytes": [217, 5, 13, 159, 27, 235, 4, 250, 51, 36, 33, 85, 213, 13, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3909, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e2fae12338cf6fcdba5b812e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4042826076878159203" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5631286941769199752" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10490563747002456371" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10485762056856283929" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10735394213210147238" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8145de009629" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16251076268253746046" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dde89471df3ea0c57c3ab2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16597132297367134856" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1386136411023605770" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9336951003880056419" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "42453acab742bdd7" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f4ce2fae12338cf6fcdba5b812e9fd8669f1b381b00e5a9023d6380ffbf1b4e2659a34072f088416b1b9195f82581ac19331b9184e908e6302b191b94fbc8288a2cc9a6468145de0096291be1876bc39b0b937e4bdde89471df3ea0c57c3ab21be654dbe39abb22881b133c8bb8c54c000aff1b81938377ff7f66639f4842453acab742bdd7ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 76, 226, 250, 225, 35, 56, 207, 111, 205, 186, 91, + 129, 46, 159, 216, 102, 159, 27, 56, 27, 0, 229, 169, 2, 61, 99, 128, 255, 191, 27, 78, 38, 89, 163, 64, 114, 240, + 136, 65, 107, 27, 145, 149, 248, 37, 129, 172, 25, 51, 27, 145, 132, 233, 8, 230, 48, 43, 25, 27, 148, 251, 200, + 40, 138, 44, 201, 166, 70, 129, 69, 222, 0, 150, 41, 27, 225, 135, 107, 195, 155, 11, 147, 126, 75, 221, 232, 148, + 113, 223, 62, 160, 197, 124, 58, 178, 27, 230, 84, 219, 227, 154, 187, 34, 136, 27, 19, 60, 139, 184, 197, 76, 0, + 10, 255, 27, 129, 147, 131, 119, 255, 127, 102, 99, 159, 72, 66, 69, 58, 202, 183, 66, 189, 215, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3910, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14517844663366962211" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7662659741406399187" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8390013353068414047" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74a668a1a9f2ca" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905049f1bc979becd7049cc231b6a573c6fb1370ad3bf1b746f50b1426d445f4774a668a1a9f2caff80ff", + "cborBytes": [ + 217, 5, 4, 159, 27, 201, 121, 190, 205, 112, 73, 204, 35, 27, 106, 87, 60, 111, 177, 55, 10, 211, 191, 27, 116, + 111, 80, 177, 66, 109, 68, 95, 71, 116, 166, 104, 161, 169, 242, 202, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3911, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10970194400202063120" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3b69dd5b159e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "760600f90001" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b705cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b983df5af3505fd109f463b69dd5b159ebf46760600f900010e43b705cd09ffffff", + "cborBytes": [ + 216, 102, 159, 27, 152, 61, 245, 175, 53, 5, 253, 16, 159, 70, 59, 105, 221, 91, 21, 158, 191, 70, 118, 6, 0, 249, + 0, 1, 14, 67, 183, 5, 205, 9, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3912, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d905079f80a0ff", + "cborBytes": [217, 5, 7, 159, 128, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3913, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03072905" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4739641201633529927" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26fc06fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05fbfb3a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e91008526069b1" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f93cddf8030606" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10028272345130846204" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9fbf0844030729051b41c6968faa2c10474426fc06fd4405fbfb3a47e91008526069b1ff47f93cddf80306061bfffffffffffffff51b8b2b9490da65c7fcffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 191, 8, 68, 3, 7, 41, 5, 27, 65, 198, 150, 143, + 170, 44, 16, 71, 68, 38, 252, 6, 253, 68, 5, 251, 251, 58, 71, 233, 16, 8, 82, 96, 105, 177, 255, 71, 249, 60, + 221, 248, 3, 6, 6, 27, 255, 255, 255, 255, 255, 255, 255, 245, 27, 139, 43, 148, 144, 218, 101, 199, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3914, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16682940076735551157" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11967734322814180207" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4656d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79d6515f4ff7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b7c23e07d012d081d275f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1565b3abecaf8c6ccfea07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc6b14cf5fd1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ac104408053c7101642" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf09" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec6df9cb9a690eda2558b28f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcf6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6264825aed715f6d9491bd" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8259673f0b9619" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00672bfba7a508a318" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6520300715054027072" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20be9628ef627b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ab5f0550c31bec5ac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4695901038313083777" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec1c89f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72cf6aef845d9d62" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17778209111350164570" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83fcfd9612b986" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5256224292856404882" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1be785b59c1af356b59fd8669f1ba615eef57596db6f9fbf434656d14679d6515f4ff74b5b7c23e07d012d081d275f4b1565b3abecaf8c6ccfea0746bc6b14cf5fd14a6ac104408053c710164242bf094cec6df9cb9a690eda2558b28f42dcf64b6264825aed715f6d9491bdff478259673f0b9619bf4900672bfba7a508a3181b5a7cc2f44d8551404720be9628ef627b499ab5f0550c31bec5ac41571b412b311d490a13814269bd44ec1c89f94872cf6aef845d9d621bf6b8e2fe68a3bc5a4783fcfd9612b9861b48f1dc254b7c1b92ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 231, 133, 181, 156, 26, 243, 86, 181, 159, 216, 102, 159, 27, 166, 21, 238, 245, 117, 150, 219, + 111, 159, 191, 67, 70, 86, 209, 70, 121, 214, 81, 95, 79, 247, 75, 91, 124, 35, 224, 125, 1, 45, 8, 29, 39, 95, + 75, 21, 101, 179, 171, 236, 175, 140, 108, 207, 234, 7, 70, 188, 107, 20, 207, 95, 209, 74, 106, 193, 4, 64, 128, + 83, 199, 16, 22, 66, 66, 191, 9, 76, 236, 109, 249, 203, 154, 105, 14, 218, 37, 88, 178, 143, 66, 220, 246, 75, + 98, 100, 130, 90, 237, 113, 95, 109, 148, 145, 189, 255, 71, 130, 89, 103, 63, 11, 150, 25, 191, 73, 0, 103, 43, + 251, 167, 165, 8, 163, 24, 27, 90, 124, 194, 244, 77, 133, 81, 64, 71, 32, 190, 150, 40, 239, 98, 123, 73, 154, + 181, 240, 85, 12, 49, 190, 197, 172, 65, 87, 27, 65, 43, 49, 29, 73, 10, 19, 129, 66, 105, 189, 68, 236, 28, 137, + 249, 72, 114, 207, 106, 239, 132, 93, 157, 98, 27, 246, 184, 226, 254, 104, 163, 188, 90, 71, 131, 252, 253, 150, + 18, 185, 134, 27, 72, 241, 220, 37, 75, 124, 27, 146, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3915, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12445732286182397364" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f101" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2384985573381472592" + } + }, + { + "_tag": "ByteArray", + "bytearray": "937a8acf66492b30b4adf634" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "03b4bd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bacb81f92ef8315b49f9f9f42f1010a1b21192bbe27d581504c937a8acf66492b30b4adf634ff4303b4bd1bffffffffffffffff1bfffffffffffffff8ffffff", + "cborBytes": [ + 216, 102, 159, 27, 172, 184, 31, 146, 239, 131, 21, 180, 159, 159, 159, 66, 241, 1, 10, 27, 33, 25, 43, 190, 39, + 213, 129, 80, 76, 147, 122, 138, 207, 102, 73, 43, 48, 180, 173, 246, 52, 255, 67, 3, 180, 189, 27, 255, 255, 255, + 255, 255, 255, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 248, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3916, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13599792888519351292" + }, + "fields": [] + }, + "cborHex": "d8669f1bbcbc2b93cb145bfc80ff", + "cborBytes": [216, 102, 159, 27, 188, 188, 43, 147, 203, 20, 91, 252, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3917, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11248420115752315057" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8240941056076757560" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18077301325685484005" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ad68f8afd412f1" + }, + { + "_tag": "ByteArray", + "bytearray": "278f983ec5985fd3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11414440657185059896" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a1b902a3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15387731595609450343" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "84bea545374bbb17" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15561358406551679077" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12968136332687836029" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17995508977842066346" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d146d4f6511a56" + }, + { + "_tag": "ByteArray", + "bytearray": "35cc81b627db70c095e875" + }, + { + "_tag": "ByteArray", + "bytearray": "f8" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9599492392028801522" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14333872310649570388" + } + } + ] + }, + "cborHex": "d905029f1b9c1a6a7fa3c668b1d8669f1b725db43a66633a389fd8669f1bfadf79c72f2e69e59f47ad68f8afd412f148278f983ec5985fd31b9e683d4d294ab43844a1b902a31bd58c345bc75b2767ffff4884bea545374bbb17d8669f1bd7f50d05ed0d30659f1bb3f8134954b2037d1bf9bce41230a113aa47d146d4f6511a564b35cc81b627db70c095e87541f8ffffffff1b85383f7862f109f21bc6ec24ec24134454ff", + "cborBytes": [ + 217, 5, 2, 159, 27, 156, 26, 106, 127, 163, 198, 104, 177, 216, 102, 159, 27, 114, 93, 180, 58, 102, 99, 58, 56, + 159, 216, 102, 159, 27, 250, 223, 121, 199, 47, 46, 105, 229, 159, 71, 173, 104, 248, 175, 212, 18, 241, 72, 39, + 143, 152, 62, 197, 152, 95, 211, 27, 158, 104, 61, 77, 41, 74, 180, 56, 68, 161, 185, 2, 163, 27, 213, 140, 52, + 91, 199, 91, 39, 103, 255, 255, 72, 132, 190, 165, 69, 55, 75, 187, 23, 216, 102, 159, 27, 215, 245, 13, 5, 237, + 13, 48, 101, 159, 27, 179, 248, 19, 73, 84, 178, 3, 125, 27, 249, 188, 228, 18, 48, 161, 19, 170, 71, 209, 70, + 212, 246, 81, 26, 86, 75, 53, 204, 129, 182, 39, 219, 112, 192, 149, 232, 117, 65, 248, 255, 255, 255, 255, 27, + 133, 56, 63, 120, 98, 241, 9, 242, 27, 198, 236, 36, 236, 36, 19, 68, 84, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3918, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5006125643993387816" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3922501392831464973" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3488257446823275182" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4273303955760163531" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e5d657de477" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10325858093804713351" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15180699669576885064" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13612335635324470775" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16493083900555455424" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17280862408285004581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3292612874020599596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18133183249899041805" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eaea6dbbf3" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b457954bfe73313289fbf1b366f863c06b1c60d1b3068c7aa93032aae1b3b4dd34e8c5b2acb463e5d657de4771b8f4cd13a425275871bd2acadeb2f0523481bbce8bb239ae805f71be4e3346c67526bc01befd1f4cd6a3aa3251b2db1b5f6c2e0372c1bfba60217914bb40d45eaea6dbbf3ffffff", + "cborBytes": [ + 216, 102, 159, 27, 69, 121, 84, 191, 231, 51, 19, 40, 159, 191, 27, 54, 111, 134, 60, 6, 177, 198, 13, 27, 48, + 104, 199, 170, 147, 3, 42, 174, 27, 59, 77, 211, 78, 140, 91, 42, 203, 70, 62, 93, 101, 125, 228, 119, 27, 143, + 76, 209, 58, 66, 82, 117, 135, 27, 210, 172, 173, 235, 47, 5, 35, 72, 27, 188, 232, 187, 35, 154, 232, 5, 247, 27, + 228, 227, 52, 108, 103, 82, 107, 192, 27, 239, 209, 244, 205, 106, 58, 163, 37, 27, 45, 177, 181, 246, 194, 224, + 55, 44, 27, 251, 166, 2, 23, 145, 75, 180, 13, 69, 234, 234, 109, 187, 243, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3919, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5331013511974050225" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7004" + } + ] + }, + "cborHex": "d8669f1b49fb908b520559b19f427004ffff", + "cborBytes": [216, 102, 159, 27, 73, 251, 144, 139, 82, 5, 89, 177, 159, 66, 112, 4, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3920, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9036462409418356999" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "66d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8718714414501395341" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a55e61" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15821052798129357131" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1a5e00824" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9935644825533493209" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6377027042265653770" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16284694687507178360" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d39dd05e1db9a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8716346111711308151" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d87d9f1b7d67f6af238d39079fbf4266d71b78ff1890f66efb8d43a55e611bdb8fabb24533414b45b1a5e008241b89e28053d85f2fd9ffd8669f1b587fc04ed94de20a9f1be1fedb89cc8e6378470d39dd05e1db9a1b78f6ae9b7fe8e977ffffa0ffff", + "cborBytes": [ + 216, 125, 159, 27, 125, 103, 246, 175, 35, 141, 57, 7, 159, 191, 66, 102, 215, 27, 120, 255, 24, 144, 246, 110, + 251, 141, 67, 165, 94, 97, 27, 219, 143, 171, 178, 69, 51, 65, 75, 69, 177, 165, 224, 8, 36, 27, 137, 226, 128, + 83, 216, 95, 47, 217, 255, 216, 102, 159, 27, 88, 127, 192, 78, 217, 77, 226, 10, 159, 27, 225, 254, 219, 137, + 204, 142, 99, 120, 71, 13, 57, 221, 5, 225, 219, 154, 27, 120, 246, 174, 155, 127, 232, 233, 119, 255, 255, 160, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3921, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "332501360417536739" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7855140631229242543" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2638587799719486665" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da18ebc299bb2a1f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12352429013462318045" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2028045350340631320" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1720566533143020548" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7695833651591630307" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0564c52a8f24749f5cec810c" + }, + { + "_tag": "ByteArray", + "bytearray": "21" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1987222861280976122" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16287045401027998301" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13366085340649965311" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4f4b18e77581ded34286cbae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3148728981982947198" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2537649330371693885" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8813" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13296141234646797148" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15220278095805583869" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "825164283336284516" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1140dea686" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3307284531293435370" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39daf24c05b467" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8796275904723848360" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff21f58a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6321294787961223147" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7475926833923608776" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3068878616282927327" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f6a5" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9ab8533b190bd87199" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7433171421067888392" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b049d4839c3057ae39f9fd8669f1b6d0310c929281caf9f1b249e259fbef5a4c948da18ebc299bb2a1f1bab6ca4bde4a67bdd1b1c251080476f9b181b17e0ae255c6a4404ffffd8669f1b6acd17ee8d9dcde39f4c0564c52a8f24749f5cec810c41211b1b9408a9e0301cfaffff415c1be207357ff0eef25dd8669f1bb97ddfccfeff46ff9f4c4f4b18e77581ded34286cbae1b2bb288539112277e1b23378a9ef5500d3d428813ffffffd8669f1bb8856201c68bcb5c9f1bd3394a49a32691fd1b0b73928b35995964bf451140dea6861b2de5d5c22ae3b5ea4739daf24c05b4671b7a12a654a7648ca8ff9f44ff21f58a1b57b9c01e34f4f7eb1b67bfd3d8a6d3d0c81b2a96d8d7865610df42f6a5ff499ab8533b190bd87199ffffd8669f1b6727ee065b56470880ffffff", + "cborBytes": [ + 216, 102, 159, 27, 4, 157, 72, 57, 195, 5, 122, 227, 159, 159, 216, 102, 159, 27, 109, 3, 16, 201, 41, 40, 28, + 175, 159, 27, 36, 158, 37, 159, 190, 245, 164, 201, 72, 218, 24, 235, 194, 153, 187, 42, 31, 27, 171, 108, 164, + 189, 228, 166, 123, 221, 27, 28, 37, 16, 128, 71, 111, 155, 24, 27, 23, 224, 174, 37, 92, 106, 68, 4, 255, 255, + 216, 102, 159, 27, 106, 205, 23, 238, 141, 157, 205, 227, 159, 76, 5, 100, 197, 42, 143, 36, 116, 159, 92, 236, + 129, 12, 65, 33, 27, 27, 148, 8, 169, 224, 48, 28, 250, 255, 255, 65, 92, 27, 226, 7, 53, 127, 240, 238, 242, 93, + 216, 102, 159, 27, 185, 125, 223, 204, 254, 255, 70, 255, 159, 76, 79, 75, 24, 231, 117, 129, 222, 211, 66, 134, + 203, 174, 27, 43, 178, 136, 83, 145, 18, 39, 126, 27, 35, 55, 138, 158, 245, 80, 13, 61, 66, 136, 19, 255, 255, + 255, 216, 102, 159, 27, 184, 133, 98, 1, 198, 139, 203, 92, 159, 27, 211, 57, 74, 73, 163, 38, 145, 253, 27, 11, + 115, 146, 139, 53, 153, 89, 100, 191, 69, 17, 64, 222, 166, 134, 27, 45, 229, 213, 194, 42, 227, 181, 234, 71, 57, + 218, 242, 76, 5, 180, 103, 27, 122, 18, 166, 84, 167, 100, 140, 168, 255, 159, 68, 255, 33, 245, 138, 27, 87, 185, + 192, 30, 52, 244, 247, 235, 27, 103, 191, 211, 216, 166, 211, 208, 200, 27, 42, 150, 216, 215, 134, 86, 16, 223, + 66, 246, 165, 255, 73, 154, 184, 83, 59, 25, 11, 216, 113, 153, 255, 255, 216, 102, 159, 27, 103, 39, 238, 6, 91, + 86, 71, 8, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3922, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b087b642" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3598032209729802999" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14051144157409092135" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5501a75b07004d0e9b471541" + }, + { + "_tag": "ByteArray", + "bytearray": "44" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1377942169219982940" + } + } + ] + }, + "cborHex": "d87f9f44b087b642d8669f1b31eec73b475bd2f79f801bc2ffb12a3e2ca227ffff4c5501a75b07004d0e9b47154141441b131f6f1a2d63665cff", + "cborBytes": [ + 216, 127, 159, 68, 176, 135, 182, 66, 216, 102, 159, 27, 49, 238, 199, 59, 71, 91, 210, 247, 159, 128, 27, 194, + 255, 177, 42, 62, 44, 162, 39, 255, 255, 76, 85, 1, 167, 91, 7, 0, 77, 14, 155, 71, 21, 65, 65, 68, 27, 19, 31, + 111, 26, 45, 99, 102, 92, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3923, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7280066011867833024" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10023099591423594035" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8249868778695570613" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50a003b9c828e52351660d3e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10895758951692477327" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50a7bf20971114d0a6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12431845598479652985" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "647da336458848de9a87" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14628770462234257898" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "967551669015341489" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15540022415007261311" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34fe6b7236" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17214251730384631231" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9454303216874978554" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b6507fd7762c6e2c09f1b8b1933f9472a8e33bf1b727d6bf1cdbc34b54c50a003b9c828e52351660d3e1b97358309d1e9a38f4950a7bf20971114d0a61bac86c9b47fe218794a647da336458848de9a871bcb03d53a963329ea1b0d6d6f1ddd7ee9b11bd7a9400d481da27f4534fe6b72361beee54ebe67bab5bf1b83346eaf48aa7cfaff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 101, 7, 253, 119, 98, 198, 226, 192, 159, 27, 139, 25, 51, 249, 71, 42, 142, 51, 191, 27, 114, + 125, 107, 241, 205, 188, 52, 181, 76, 80, 160, 3, 185, 200, 40, 229, 35, 81, 102, 13, 62, 27, 151, 53, 131, 9, + 209, 233, 163, 143, 73, 80, 167, 191, 32, 151, 17, 20, 208, 166, 27, 172, 134, 201, 180, 127, 226, 24, 121, 74, + 100, 125, 163, 54, 69, 136, 72, 222, 154, 135, 27, 203, 3, 213, 58, 150, 51, 41, 234, 27, 13, 109, 111, 29, 221, + 126, 233, 177, 27, 215, 169, 64, 13, 72, 29, 162, 127, 69, 52, 254, 107, 114, 54, 27, 238, 229, 78, 190, 103, 186, + 181, 191, 27, 131, 52, 110, 175, 72, 170, 124, 250, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3924, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3756cf012f071f2a49b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13050817382334043893" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b864b6533f7ac30b227f17" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4845c3876a28dc4618bf" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "30a750" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3840724442169676051" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12655802005136061921" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f8a6715bc45a32c4759" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12778592679017527438" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12587520315534932617" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15704225457489071671" + } + } + ] + }, + "cborHex": "d87d9fbf4a3756cf012f071f2a49b71bb51dd143568396f54bb864b6533f7ac30b227f174a4845c3876a28dc4618bfff9f4330a750ffbf1b354cfe87f7af1113410a1bafa270decfcfb5e14a9f8a6715bc45a32c47591bb156ae56723f388e1baeafdb091278fa89ff1bd9f09dd95a484e37ff", + "cborBytes": [ + 216, 125, 159, 191, 74, 55, 86, 207, 1, 47, 7, 31, 42, 73, 183, 27, 181, 29, 209, 67, 86, 131, 150, 245, 75, 184, + 100, 182, 83, 63, 122, 195, 11, 34, 127, 23, 74, 72, 69, 195, 135, 106, 40, 220, 70, 24, 191, 255, 159, 67, 48, + 167, 80, 255, 191, 27, 53, 76, 254, 135, 247, 175, 17, 19, 65, 10, 27, 175, 162, 112, 222, 207, 207, 181, 225, 74, + 159, 138, 103, 21, 188, 69, 163, 44, 71, 89, 27, 177, 86, 174, 86, 114, 63, 56, 142, 27, 174, 175, 219, 9, 18, + 120, 250, 137, 255, 27, 217, 240, 157, 217, 90, 72, 78, 55, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3925, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "da9f4ca9dd3c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10127167215758711633" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7370064774659570772" + } + }, + { + "_tag": "ByteArray", + "bytearray": "994734887a44b1572e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14926866235565655481" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2844e1df" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4812819120261053287" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8283596433553843124" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2392df38e812688b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1352887402402436170" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18255460914923788274" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee4b693d3ce7634d80" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1434709349629847757" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "207f0288dc845fe2c30e29" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15571029141003448651" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "459eadee" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16040007612857829748" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c793ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16333680034721980586" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2a44180939efb" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "da54" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13744791332722452015" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "795f2a82a33780" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "48292358a1d66f422b21" + } + ] + } + ] + } + ] + }, + "cborHex": "d905059f46da9f4ca9dd3cd8669f1b8c8aeced3c479b519f9f1b6647badd4133fc5449994734887a44b1572e1bcf26e1c15ca9c5b9442844e1dfff1b42ca917d8f5e3b67d8669f1b72f53f1164ab63b49f482392df38e812688b1b12c66becb14c544a1bfd586cfb050f57f249ee4b693d3ce7634d80ffffbf1b13e91c8d549e68cd4b207f0288dc845fe2c30e291bd817688140c4314b44459eadee1bde998df0b6f3c97443c793ba1be2ace373b87e60aa47a2a44180939efbff42da54ffffd8669f1bbebf4ee4e2ca262f9f47795f2a82a337809f4a48292358a1d66f422b21ffffffff", + "cborBytes": [ + 217, 5, 5, 159, 70, 218, 159, 76, 169, 221, 60, 216, 102, 159, 27, 140, 138, 236, 237, 60, 71, 155, 81, 159, 159, + 27, 102, 71, 186, 221, 65, 51, 252, 84, 73, 153, 71, 52, 136, 122, 68, 177, 87, 46, 27, 207, 38, 225, 193, 92, + 169, 197, 185, 68, 40, 68, 225, 223, 255, 27, 66, 202, 145, 125, 143, 94, 59, 103, 216, 102, 159, 27, 114, 245, + 63, 17, 100, 171, 99, 180, 159, 72, 35, 146, 223, 56, 232, 18, 104, 139, 27, 18, 198, 107, 236, 177, 76, 84, 74, + 27, 253, 88, 108, 251, 5, 15, 87, 242, 73, 238, 75, 105, 61, 60, 231, 99, 77, 128, 255, 255, 191, 27, 19, 233, 28, + 141, 84, 158, 104, 205, 75, 32, 127, 2, 136, 220, 132, 95, 226, 195, 14, 41, 27, 216, 23, 104, 129, 64, 196, 49, + 75, 68, 69, 158, 173, 238, 27, 222, 153, 141, 240, 182, 243, 201, 116, 67, 199, 147, 186, 27, 226, 172, 227, 115, + 184, 126, 96, 170, 71, 162, 164, 65, 128, 147, 158, 251, 255, 66, 218, 84, 255, 255, 216, 102, 159, 27, 190, 191, + 78, 228, 226, 202, 38, 47, 159, 71, 121, 95, 42, 130, 163, 55, 128, 159, 74, 72, 41, 35, 88, 161, 214, 111, 66, + 43, 33, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3926, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5365445734319994513" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0b9338" + }, + { + "_tag": "ByteArray", + "bytearray": "52cd" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14959684331081649673" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b4a75e477cfc736919f430b93384252cdd8669f1bcf9b79a3aa194e0980ffffff", + "cborBytes": [ + 216, 102, 159, 27, 74, 117, 228, 119, 207, 199, 54, 145, 159, 67, 11, 147, 56, 66, 82, 205, 216, 102, 159, 27, + 207, 155, 121, 163, 170, 25, 78, 9, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3927, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1490085917813773987" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13573048082088420281" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17598413852642184217" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d57ce6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47ad" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f25b919dcd19b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14693555298145470211" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c5d74ca95a87cc6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79709f6d85619f0f0df932" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12096229499048212859" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d25aaef4e3303fc4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d34c50afca86c8f8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff81" + }, + { + "_tag": "ByteArray", + "bytearray": "a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10253551471227305431" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af548bde6a01eebab5c5" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b14add93f581a16a39f9f80ff9fbf1bbc5d27514c2d63b91bf43a2028990d0c1943d57ce64247adff80bf472f25b919dcd19b1bcbe9feb1a1850703484c5d74ca95a87cc641ec4b79709f6d85619f0f0df9321ba7de70a40c5eb97b48d25aaef4e3303fc448d34c50afca86c8f8ff9f42ff8141a81b8e4beebcc8affdd74aaf548bde6a01eebab5c5ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 20, 173, 217, 63, 88, 26, 22, 163, 159, 159, 128, 255, 159, 191, 27, 188, 93, 39, 81, 76, 45, + 99, 185, 27, 244, 58, 32, 40, 153, 13, 12, 25, 67, 213, 124, 230, 66, 71, 173, 255, 128, 191, 71, 47, 37, 185, 25, + 220, 209, 155, 27, 203, 233, 254, 177, 161, 133, 7, 3, 72, 76, 93, 116, 202, 149, 168, 124, 198, 65, 236, 75, 121, + 112, 159, 109, 133, 97, 159, 15, 13, 249, 50, 27, 167, 222, 112, 164, 12, 94, 185, 123, 72, 210, 90, 174, 244, + 227, 48, 63, 196, 72, 211, 76, 80, 175, 202, 134, 200, 248, 255, 159, 66, 255, 129, 65, 168, 27, 142, 75, 238, + 188, 200, 175, 253, 215, 74, 175, 84, 139, 222, 106, 1, 238, 186, 181, 197, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3928, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17619563205221384928" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "861cf4379246b2d3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1291640352562008802" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11874831297075086718" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf4854361f8c382e09f48861cf4379246b2d39fbf1b11ecd40ea804d2e21ba4cbe0262dda057effffffff", + "cborBytes": [ + 216, 102, 159, 27, 244, 133, 67, 97, 248, 195, 130, 224, 159, 72, 134, 28, 244, 55, 146, 70, 178, 211, 159, 191, + 27, 17, 236, 212, 14, 168, 4, 210, 226, 27, 164, 203, 224, 38, 45, 218, 5, 126, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3929, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15461639993545707109" + }, + "fields": [] + }, + "cborHex": "d8669f1bd692c7a7a443ce6580ff", + "cborBytes": [216, 102, 159, 27, 214, 146, 199, 167, 164, 67, 206, 101, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3930, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4608519116308019020" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9646199113593917971" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9b5264ed" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16909001426084082260" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c5e068837a84" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18122963023756786667" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da3b2e35c76053f3ef675317" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9779992901194148913" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17418572480533070838" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2048887570580400750" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14041103513175801323" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8518757422042842667" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2130470389909813573" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15894891417993298486" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24a8fa9eb8f85c53312fe899" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "90d84fa3f4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17018837382724059264" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "877174594677067045" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14600122074305571910" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "37e0ecc2" + }, + { + "_tag": "ByteArray", + "bytearray": "e0113b504ae2df0a03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12781347726482999488" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1430765252fc17f8f127" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10405430921422338839" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2647946836081795204" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "745e71ce82693c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "160692266761327030" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80563883da972ac4fc57" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11724922924824073700" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d33effa43c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7753964735107678089" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f348" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17871499037438967920" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ed3e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9863bb9c9727d8d8802816bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16796535143371516561" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8ab4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2756" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13377728637924661764" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ade7897a85cc4ac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "899dd66a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8fd75fcd77b895509b3dfc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5630073839130324019" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf6ca685fb6b79" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bff51" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb92bada" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7246532635172855960" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b3ff4bfb82422f74c9fd8669f1b85de2efc6e7412139f449b5264edd8669f1beaa8d7359450b2549f46c5e068837a841bfb81b2d9bc8ffbeb4cda3b2e35c76053f3ef6753171b87b983ba1d84ec311bf1bb33622c9183f6ffffffff9fbf1b1c6f1c63d5286a6e1bc2dc054095553deb1b7638b4bdb496062b1b1d90f3882b0ff9451bdc95ff87a8e542364c24a8fa9eb8f85c53312fe899ff9f4590d84fa3f41bec2f0e6e0f6800801b0c2c59a579b94d251bca9e0dabfc52ac46ff4437e0ecc249e0113b504ae2df0a031bb1607809ebc408c0ffbf4a1430765252fc17f8f1271b9067844aee3e7b1741321b24bf659e34c6608447745e71ce82693c1b023ae4c3e67611b64a80563883da972ac4fc571ba2b74b4760f915e445d33effa43c1b6b9b9dd824ffbf8942f3481bf80451aff2490070ff42ed3e9f4c9863bb9c9727d8d8802816bc1be91947b896062a91a0428ab4bf4227561bb9a73d516511da04483ade7897a85cc4ac44899dd66a4b8fd75fcd77b895509b3dfc1b4e220a53c8952c3347bf6ca685fb6b79437bff5144fb92bada1b6490db09b4c0e098ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 63, 244, 191, 184, 36, 34, 247, 76, 159, 216, 102, 159, 27, 133, 222, 46, 252, 110, 116, 18, + 19, 159, 68, 155, 82, 100, 237, 216, 102, 159, 27, 234, 168, 215, 53, 148, 80, 178, 84, 159, 70, 197, 224, 104, + 131, 122, 132, 27, 251, 129, 178, 217, 188, 143, 251, 235, 76, 218, 59, 46, 53, 199, 96, 83, 243, 239, 103, 83, + 23, 27, 135, 185, 131, 186, 29, 132, 236, 49, 27, 241, 187, 51, 98, 44, 145, 131, 246, 255, 255, 255, 255, 159, + 191, 27, 28, 111, 28, 99, 213, 40, 106, 110, 27, 194, 220, 5, 64, 149, 85, 61, 235, 27, 118, 56, 180, 189, 180, + 150, 6, 43, 27, 29, 144, 243, 136, 43, 15, 249, 69, 27, 220, 149, 255, 135, 168, 229, 66, 54, 76, 36, 168, 250, + 158, 184, 248, 92, 83, 49, 47, 232, 153, 255, 159, 69, 144, 216, 79, 163, 244, 27, 236, 47, 14, 110, 15, 104, 0, + 128, 27, 12, 44, 89, 165, 121, 185, 77, 37, 27, 202, 158, 13, 171, 252, 82, 172, 70, 255, 68, 55, 224, 236, 194, + 73, 224, 17, 59, 80, 74, 226, 223, 10, 3, 27, 177, 96, 120, 9, 235, 196, 8, 192, 255, 191, 74, 20, 48, 118, 82, + 82, 252, 23, 248, 241, 39, 27, 144, 103, 132, 74, 238, 62, 123, 23, 65, 50, 27, 36, 191, 101, 158, 52, 198, 96, + 132, 71, 116, 94, 113, 206, 130, 105, 60, 27, 2, 58, 228, 195, 230, 118, 17, 182, 74, 128, 86, 56, 131, 218, 151, + 42, 196, 252, 87, 27, 162, 183, 75, 71, 96, 249, 21, 228, 69, 211, 62, 255, 164, 60, 27, 107, 155, 157, 216, 36, + 255, 191, 137, 66, 243, 72, 27, 248, 4, 81, 175, 242, 73, 0, 112, 255, 66, 237, 62, 159, 76, 152, 99, 187, 156, + 151, 39, 216, 216, 128, 40, 22, 188, 27, 233, 25, 71, 184, 150, 6, 42, 145, 160, 66, 138, 180, 191, 66, 39, 86, + 27, 185, 167, 61, 81, 101, 17, 218, 4, 72, 58, 222, 120, 151, 168, 92, 196, 172, 68, 137, 157, 214, 106, 75, 143, + 215, 95, 205, 119, 184, 149, 80, 155, 61, 252, 27, 78, 34, 10, 83, 200, 149, 44, 51, 71, 191, 108, 166, 133, 251, + 107, 121, 67, 123, 255, 81, 68, 251, 146, 186, 218, 27, 100, 144, 219, 9, 180, 192, 224, 152, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3931, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17267376423272674310" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "25a9a9c37ec8d3d1cc8d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12559964262313155089" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10414263347682632411" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03f9f806" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8800720672178831445" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15065450615065291327" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12260085050576135801" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1be5cc20d85c60019b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15628115587615360126" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8541dcd6f93baae91469" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18168551739621891005" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8ffa403cc5f94d9" + } + } + ] + } + ] + }, + "cborHex": "d8669f1befa20b5ed81f74069f9f4a25a9a9c37ec8d3d1cc8dd8669f1bae4df4f376c6da119f1b9086e5566bfe62dbffff03ffbf4403f9f8061bfffffffffffffffaffbf1b7a2270d2b8a800551bd1133b83a4282a3f1baa24926593aae679491be5cc20d85c60019b1bd8e238535c8f047e4a8541dcd6f93baae914691bfc23a98bcb77dbbd48f8ffa403cc5f94d9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 239, 162, 11, 94, 216, 31, 116, 6, 159, 159, 74, 37, 169, 169, 195, 126, 200, 211, 209, 204, + 141, 216, 102, 159, 27, 174, 77, 244, 243, 118, 198, 218, 17, 159, 27, 144, 134, 229, 86, 107, 254, 98, 219, 255, + 255, 3, 255, 191, 68, 3, 249, 248, 6, 27, 255, 255, 255, 255, 255, 255, 255, 250, 255, 191, 27, 122, 34, 112, 210, + 184, 168, 0, 85, 27, 209, 19, 59, 131, 164, 40, 42, 63, 27, 170, 36, 146, 101, 147, 170, 230, 121, 73, 27, 229, + 204, 32, 216, 92, 96, 1, 155, 27, 216, 226, 56, 83, 92, 143, 4, 126, 74, 133, 65, 220, 214, 249, 59, 170, 233, 20, + 105, 27, 252, 35, 169, 139, 203, 119, 219, 189, 72, 248, 255, 164, 3, 204, 95, 148, 217, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3932, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4708761216712897634" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "70117946bff8b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1628816467912868400" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16315680474643868462" + } + }, + { + "_tag": "ByteArray", + "bytearray": "78dbe58ab91f612e15b0" + } + ] + } + ] + } + ] + }, + "cborHex": "d905009f9fd8669f1b4158e160e64ef4629f4770117946bff8b91b169ab7f29e40c2301be26cf0f28fecab2e4a78dbe58ab91f612e15b0ffffffff", + "cborBytes": [ + 217, 5, 0, 159, 159, 216, 102, 159, 27, 65, 88, 225, 96, 230, 78, 244, 98, 159, 71, 112, 17, 121, 70, 191, 248, + 185, 27, 22, 154, 183, 242, 158, 64, 194, 48, 27, 226, 108, 240, 242, 143, 236, 171, 46, 74, 120, 219, 229, 138, + 185, 31, 97, 46, 21, 176, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3933, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13880951517974311460" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12736400751411783173" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "690178588577236645" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dceab299" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14657455186219366707" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55309e3e722504026052bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13865543572127937005" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12899841165198158988" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3baae1e5d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13462529227413232150" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d94598daee60603592d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c85" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cd1d9aa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbcc242c6655f15ff0598e69" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a737eaa407654" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17152441795470189947" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c02345eaf11d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2074608955679832994" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10293451898346286551" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5618337586590989864" + } + } + ] + }, + "cborHex": "d8669f1bc0a30bdc754732249fd8669f1bb0c0c900c8eae6059f1b099401c503ba06a59f44dceab2991bcb69bdd555cff9334b55309e3e722504026052bc1bc06c4e6a8262f1ed1bb30571318698ec8cffa0bf453baae1e5d71bbad483013a479a164a6d94598daee60603592d425c85447cd1d9aa4cfbcc242c6655f15ff0598e69417f413e479a737eaa4076541bee09b6ef7990657b46c02345eaf11d418bff9f1b1cca7dda7b23fba21b8ed9aff6e9802dd7ffffff1b4df858448cfb3e28ffff", + "cborBytes": [ + 216, 102, 159, 27, 192, 163, 11, 220, 117, 71, 50, 36, 159, 216, 102, 159, 27, 176, 192, 201, 0, 200, 234, 230, 5, + 159, 27, 9, 148, 1, 197, 3, 186, 6, 165, 159, 68, 220, 234, 178, 153, 27, 203, 105, 189, 213, 85, 207, 249, 51, + 75, 85, 48, 158, 62, 114, 37, 4, 2, 96, 82, 188, 27, 192, 108, 78, 106, 130, 98, 241, 237, 27, 179, 5, 113, 49, + 134, 152, 236, 140, 255, 160, 191, 69, 59, 170, 225, 229, 215, 27, 186, 212, 131, 1, 58, 71, 154, 22, 74, 109, + 148, 89, 141, 174, 230, 6, 3, 89, 45, 66, 92, 133, 68, 124, 209, 217, 170, 76, 251, 204, 36, 44, 102, 85, 241, 95, + 240, 89, 142, 105, 65, 127, 65, 62, 71, 154, 115, 126, 170, 64, 118, 84, 27, 238, 9, 182, 239, 121, 144, 101, 123, + 70, 192, 35, 69, 234, 241, 29, 65, 139, 255, 159, 27, 28, 202, 125, 218, 123, 35, 251, 162, 27, 142, 217, 175, + 246, 233, 128, 45, 215, 255, 255, 255, 27, 77, 248, 88, 68, 140, 251, 62, 40, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3934, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12530852074728275123" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7ac26f85e252ad7d33ab" + }, + { + "_tag": "ByteArray", + "bytearray": "5cebf8d94ffd5db3d4859f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "201f8bcf14b5109ee9" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3087c0b6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2968486057580084100" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5551065878017973471" + } + } + ] + }, + "cborHex": "d8669f1bade6879217253cb39f4a7ac26f85e252ad7d33ab4b5cebf8d94ffd5db3d4859f9f9f49201f8bcf14b5109ee9ff443087c0b6ff1b29322e5776c2bb841b4d095901580d9cdfffff", + "cborBytes": [ + 216, 102, 159, 27, 173, 230, 135, 146, 23, 37, 60, 179, 159, 74, 122, 194, 111, 133, 226, 82, 173, 125, 51, 171, + 75, 92, 235, 248, 217, 79, 253, 93, 179, 212, 133, 159, 159, 159, 73, 32, 31, 139, 207, 20, 181, 16, 158, 233, + 255, 68, 48, 135, 192, 182, 255, 27, 41, 50, 46, 87, 118, 194, 187, 132, 27, 77, 9, 89, 1, 88, 13, 156, 223, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3935, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7375097036028786249" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "263292879795505957" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12323665408335323283" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4370393912825581611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29a9465a1d7263" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7388330075547378093" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "955c23b6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10376521774699857953" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6215348131371136357" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12526257265330463843" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16311903312511177419" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "132405852101226218" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16792198778109886430" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "086b7f07c3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1533713608724143480" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14393705613874829158" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6120c7049cbf8aeb" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "009d3ed9a05f0ebe8e745c8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8410298489201687025" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "674f331b36d40bde" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9fe4211aaeb787a6dad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80ea73f8e988cfe2e5e24a3f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a28ea94358" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c829a80d391f3684" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4511245441905212618" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b66599bade88836499fbf1b03a7677aac19cb251bab0674653298a0931b3ca6c21bbe7f902b4729a9465a1d72631b66889f0f045621ad44955c23b61b9000cf93b11748211b56415a31f5c3b5651badd6349da92da4631be25f85a378bf12cbff9f1b01d6666bc4ad2eead8669f1be909dfd1defcffde9f45086b7f07c31b1548d866b32f5d781bc7c0b6fea48e1766486120c7049cbf8aebffffbf4c009d3ed9a05f0ebe8e745c8a1b74b761ea8fdef9f148674f331b36d40bde4ac9fe4211aaeb787a6dad4c80ea73f8e988cfe2e5e24a3f45a28ea9435848c829a80d391f36841b3e9b29d3eb5c3ccaffffffff", + "cborBytes": [ + 216, 102, 159, 27, 102, 89, 155, 173, 232, 136, 54, 73, 159, 191, 27, 3, 167, 103, 122, 172, 25, 203, 37, 27, 171, + 6, 116, 101, 50, 152, 160, 147, 27, 60, 166, 194, 27, 190, 127, 144, 43, 71, 41, 169, 70, 90, 29, 114, 99, 27, + 102, 136, 159, 15, 4, 86, 33, 173, 68, 149, 92, 35, 182, 27, 144, 0, 207, 147, 177, 23, 72, 33, 27, 86, 65, 90, + 49, 245, 195, 181, 101, 27, 173, 214, 52, 157, 169, 45, 164, 99, 27, 226, 95, 133, 163, 120, 191, 18, 203, 255, + 159, 27, 1, 214, 102, 107, 196, 173, 46, 234, 216, 102, 159, 27, 233, 9, 223, 209, 222, 252, 255, 222, 159, 69, 8, + 107, 127, 7, 195, 27, 21, 72, 216, 102, 179, 47, 93, 120, 27, 199, 192, 182, 254, 164, 142, 23, 102, 72, 97, 32, + 199, 4, 156, 191, 138, 235, 255, 255, 191, 76, 0, 157, 62, 217, 160, 95, 14, 190, 142, 116, 92, 138, 27, 116, 183, + 97, 234, 143, 222, 249, 241, 72, 103, 79, 51, 27, 54, 212, 11, 222, 74, 201, 254, 66, 17, 170, 235, 120, 122, 109, + 173, 76, 128, 234, 115, 248, 233, 136, 207, 226, 229, 226, 74, 63, 69, 162, 142, 169, 67, 88, 72, 200, 41, 168, + 13, 57, 31, 54, 132, 27, 62, 155, 41, 211, 235, 92, 60, 202, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3936, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15559582889737409060" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "701463448583816321" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17241000924154288552" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7392554883260977461" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f9da38a2c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2421914900434509113" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "411d618f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2523335549281173015" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11846835697396052177" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16772491196288510544" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a557" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1857371997963519514" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9375256236281132628" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e6ff92519c51d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1965788611135077245" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7159875879192158071" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8318139213057087126" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e71bca401b2e42b52308" + }, + { + "_tag": "ByteArray", + "bytearray": "07944e" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "511845cb86600d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11322405196736872745" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "faba98d9dc" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0ae7476db9" + }, + { + "_tag": "ByteArray", + "bytearray": "d907e575c7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14722248272043730961" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f935d9b0a0995540e348f03b" + }, + { + "_tag": "ByteArray", + "bytearray": "82266a505e" + }, + { + "_tag": "ByteArray", + "bytearray": "fefda6" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5a84" + }, + { + "_tag": "ByteArray", + "bytearray": "b02522ca2757e24d17" + }, + { + "_tag": "ByteArray", + "bytearray": "0ec406ff1c5b6f5d" + }, + { + "_tag": "ByteArray", + "bytearray": "b5f8c928f8a375f960ed" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10530836764488490660" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "852477709888145790" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "94" + }, + { + "_tag": "ByteArray", + "bytearray": "ae845d4f6d48cf" + }, + { + "_tag": "ByteArray", + "bytearray": "2cd35779513d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1517674053088723166" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2429768421472466076" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4692941647418021780" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "76563768122940118" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2980968688114299954" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7075024827919350689" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10787687860208851063" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16849366030951318412" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ba6da54" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16949907485812060126" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87d9f9fd8669f1bd7eebe33340b52249f1b09bc194a3bc244811bef4456fe6865d9a81b6697a17fb7599135454f9da38a2cffffbf1b219c5ec5249fdd3944411d618f1b2304b0501804fe171ba4686a4cafb570d11be8c3dbe0e924aa5042a557ff9f1b19c6b5fdca5f861a1b821b99dfe9cd765447e6ff92519c51d81b1b47e2539e36fb7d1b635cfd2d6f22df77ffd8669f1b736ff78afa83d6969f4ae71bca401b2e42b523084307944effffffa047511845cb86600d9fd8669f1b9d214389aa89c1299f45faba98d9dcffff450ae7476db945d907e575c7d8669f1bcc4feecd364668119f4cf935d9b0a0995540e348f03b4582266a505e43fefda6ffff9f425a8449b02522ca2757e24d17480ec406ff1c5b6f5d4ab5f8c928f8a375f960edffff9f1b92250c3e16f5dea4d8669f1b0bd49bf5e4d2497e9f419447ae845d4f6d48cf462cd35779513d1b150fdc82a32e40deffff1b21b845818053f49c1b4120ad9065fcd794bf1b0110025769a21ad61b295e873a5d9d74321b622f89988d33bba11b95b590f4078ad8771be9d4f9222563038c440ba6da541beb3a2b0dcb8fefde4163ffffff", + "cborBytes": [ + 216, 125, 159, 159, 216, 102, 159, 27, 215, 238, 190, 51, 52, 11, 82, 36, 159, 27, 9, 188, 25, 74, 59, 194, 68, + 129, 27, 239, 68, 86, 254, 104, 101, 217, 168, 27, 102, 151, 161, 127, 183, 89, 145, 53, 69, 79, 157, 163, 138, + 44, 255, 255, 191, 27, 33, 156, 94, 197, 36, 159, 221, 57, 68, 65, 29, 97, 143, 27, 35, 4, 176, 80, 24, 4, 254, + 23, 27, 164, 104, 106, 76, 175, 181, 112, 209, 27, 232, 195, 219, 224, 233, 36, 170, 80, 66, 165, 87, 255, 159, + 27, 25, 198, 181, 253, 202, 95, 134, 26, 27, 130, 27, 153, 223, 233, 205, 118, 84, 71, 230, 255, 146, 81, 156, 81, + 216, 27, 27, 71, 226, 83, 158, 54, 251, 125, 27, 99, 92, 253, 45, 111, 34, 223, 119, 255, 216, 102, 159, 27, 115, + 111, 247, 138, 250, 131, 214, 150, 159, 74, 231, 27, 202, 64, 27, 46, 66, 181, 35, 8, 67, 7, 148, 78, 255, 255, + 255, 160, 71, 81, 24, 69, 203, 134, 96, 13, 159, 216, 102, 159, 27, 157, 33, 67, 137, 170, 137, 193, 41, 159, 69, + 250, 186, 152, 217, 220, 255, 255, 69, 10, 231, 71, 109, 185, 69, 217, 7, 229, 117, 199, 216, 102, 159, 27, 204, + 79, 238, 205, 54, 70, 104, 17, 159, 76, 249, 53, 217, 176, 160, 153, 85, 64, 227, 72, 240, 59, 69, 130, 38, 106, + 80, 94, 67, 254, 253, 166, 255, 255, 159, 66, 90, 132, 73, 176, 37, 34, 202, 39, 87, 226, 77, 23, 72, 14, 196, 6, + 255, 28, 91, 111, 93, 74, 181, 248, 201, 40, 248, 163, 117, 249, 96, 237, 255, 255, 159, 27, 146, 37, 12, 62, 22, + 245, 222, 164, 216, 102, 159, 27, 11, 212, 155, 245, 228, 210, 73, 126, 159, 65, 148, 71, 174, 132, 93, 79, 109, + 72, 207, 70, 44, 211, 87, 121, 81, 61, 27, 21, 15, 220, 130, 163, 46, 64, 222, 255, 255, 27, 33, 184, 69, 129, + 128, 83, 244, 156, 27, 65, 32, 173, 144, 101, 252, 215, 148, 191, 27, 1, 16, 2, 87, 105, 162, 26, 214, 27, 41, 94, + 135, 58, 93, 157, 116, 50, 27, 98, 47, 137, 152, 141, 51, 187, 161, 27, 149, 181, 144, 244, 7, 138, 216, 119, 27, + 233, 212, 249, 34, 37, 99, 3, 140, 68, 11, 166, 218, 84, 27, 235, 58, 43, 13, 203, 143, 239, 222, 65, 99, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3937, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6500051407245935601" + }, + "fields": [] + }, + "cborHex": "d8669f1b5a34d250eeac03f180ff", + "cborBytes": [216, 102, 159, 27, 90, 52, 210, 80, 238, 172, 3, 241, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3938, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fb03bd3907076a33" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99fa01bfffffffffffffff248fb03bd3907076a3305ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 160, 27, 255, 255, 255, 255, 255, 255, 255, 242, + 72, 251, 3, 189, 57, 7, 7, 106, 51, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3939, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1001713469449534251" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4862078895406660703" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8678344329916949149" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d6faf70706f9fe" + }, + { + "_tag": "ByteArray", + "bytearray": "078bcb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17178230302959684781" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69fd8669f1b0de6cd17d9437b2b80ffd8669f1b437992feb6a33c5f9f1b786fac302f39a29dffff47d6faf70706f9fe43078bcb1bee65557245c34cadffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 216, 102, 159, 27, 13, 230, 205, 23, 217, 67, 123, + 43, 128, 255, 216, 102, 159, 27, 67, 121, 146, 254, 182, 163, 60, 95, 159, 27, 120, 111, 172, 48, 47, 57, 162, + 157, 255, 255, 71, 214, 250, 247, 7, 6, 249, 254, 67, 7, 139, 203, 27, 238, 101, 85, 114, 69, 195, 76, 173, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3940, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11574216874988232882" + }, + "fields": [] + }, + "cborHex": "d8669f1ba09fe0eccb0160b280ff", + "cborBytes": [216, 102, 159, 27, 160, 159, 224, 236, 203, 1, 96, 178, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3941, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17514651206465089412" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58673cdb9a203a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8024601816466475472" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2591732490090640013" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + } + ] + }, + "cborHex": "d905019fbf0d1bf3108a79c637ef844758673cdb9a203a1b6f5d1cd5fe7049d0ffbf1241c01b23f7aef7d8b0f28d02ffff", + "cborBytes": [ + 217, 5, 1, 159, 191, 13, 27, 243, 16, 138, 121, 198, 55, 239, 132, 71, 88, 103, 60, 219, 154, 32, 58, 27, 111, 93, + 28, 213, 254, 112, 73, 208, 255, 191, 18, 65, 192, 27, 35, 247, 174, 247, 216, 176, 242, 141, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3942, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "880d0063c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcb416f3c844990ed4c33d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12916889146200272678" + } + } + } + ] + } + ] + }, + "cborHex": "d905059f80bf42a2bd45880d0063c64bdcb416f3c844990ed4c33d1bb342023dea5daf26ffff", + "cborBytes": [ + 217, 5, 5, 159, 128, 191, 66, 162, 189, 69, 136, 13, 0, 99, 198, 75, 220, 180, 22, 243, 200, 68, 153, 14, 212, + 195, 61, 27, 179, 66, 2, 61, 234, 93, 175, 38, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3943, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7171285787620591953" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccfbf5857fa8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35fc61602dd69a29aab01edf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9046b8737137b0bcc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a16454215a62ee" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ac" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10597113594512620308" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6385866dc1eec9519fd8669f1bfffffffffffffff59fbf46ccfbf5857fa84c35fc61602dd69a29aab01edf49f9046b8737137b0bcc47a16454215a62eeff41ac1b931082ab15633b14ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 99, 133, 134, 109, 193, 238, 201, 81, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 245, 159, 191, 70, 204, 251, 245, 133, 127, 168, 76, 53, 252, 97, 96, 45, 214, 154, 41, 170, 176, 30, 223, + 73, 249, 4, 107, 135, 55, 19, 123, 11, 204, 71, 161, 100, 84, 33, 90, 98, 238, 255, 65, 172, 27, 147, 16, 130, + 171, 21, 99, 59, 20, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3944, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10673525399269874005" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + ] + }, + "cborHex": "d8669f1b941ffaccc49719559f1bfffffffffffffff1ffff", + "cborBytes": [ + 216, 102, 159, 27, 148, 31, 250, 204, 196, 151, 25, 85, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3945, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16502066146211489089" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f894f8548a" + } + ] + }, + "cborHex": "d8669f1be5031dba70ef65419f45f894f8548affff", + "cborBytes": [216, 102, 159, 27, 229, 3, 29, 186, 112, 239, 101, 65, 159, 69, 248, 148, 248, 84, 138, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3946, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16193578437847374588" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6908016356121522665" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8342349083372706701" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5298316165662862743" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a413b7edb78f71efa727" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45b17f447fe709ac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e153" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "295c2ddb25a4f42685" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4363999187254431445" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11502885841524545061" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7816853548819418564" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16785596649367653925" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1547488250531100759" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af06957fa5de0ea714a4c841" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5524387584723752651" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6482594206000598968" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11776775669933912593" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c2993fbae1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9417916758209856152" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14479356014714223439" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e7f639f94186bb913" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5886974805592509892" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9031677660889178870" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1be0bb25cabe515afc9fd8669f1b5fde3446913631e99f1b73c5fa4aaabc5b8d9f1b4987667b220b6d97ffa0bf4aa413b7edb78f71efa7274845b17f447fe709ac42e15349295c2ddb25a4f42685ffd8669f1b3c900a23ac64ced59f1b9fa275ba5bf0d6251b6c7b0ae31ea20dc41be8f26b37fc8bce251b1579c85d6aff38574caf06957fa5de0ea714a4c841ffffffff9fbf1b4caa913d250996cb1b59f6cd1587abcfb8ffd8669f1ba36f831365dfb21180ff45c2993fbae1bf1b82b32964b14c02981bc8f101949974fb4f491e7f639f94186bb9131b51b2bc6529040dc4ffd8669f1b7d56f6fb0f2162f680ffff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 224, 187, 37, 202, 190, 81, 90, 252, 159, 216, 102, 159, 27, 95, 222, 52, 70, 145, 54, 49, 233, + 159, 27, 115, 197, 250, 74, 170, 188, 91, 141, 159, 27, 73, 135, 102, 123, 34, 11, 109, 151, 255, 160, 191, 74, + 164, 19, 183, 237, 183, 143, 113, 239, 167, 39, 72, 69, 177, 127, 68, 127, 231, 9, 172, 66, 225, 83, 73, 41, 92, + 45, 219, 37, 164, 244, 38, 133, 255, 216, 102, 159, 27, 60, 144, 10, 35, 172, 100, 206, 213, 159, 27, 159, 162, + 117, 186, 91, 240, 214, 37, 27, 108, 123, 10, 227, 30, 162, 13, 196, 27, 232, 242, 107, 55, 252, 139, 206, 37, 27, + 21, 121, 200, 93, 106, 255, 56, 87, 76, 175, 6, 149, 127, 165, 222, 14, 167, 20, 164, 200, 65, 255, 255, 255, 255, + 159, 191, 27, 76, 170, 145, 61, 37, 9, 150, 203, 27, 89, 246, 205, 21, 135, 171, 207, 184, 255, 216, 102, 159, 27, + 163, 111, 131, 19, 101, 223, 178, 17, 128, 255, 69, 194, 153, 63, 186, 225, 191, 27, 130, 179, 41, 100, 177, 76, + 2, 152, 27, 200, 241, 1, 148, 153, 116, 251, 79, 73, 30, 127, 99, 159, 148, 24, 107, 185, 19, 27, 81, 178, 188, + 101, 41, 4, 13, 196, 255, 216, 102, 159, 27, 125, 86, 246, 251, 15, 33, 98, 246, 128, 255, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3947, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5075584786814619167" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41f996a7b4a53dad93f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8542493597400338760" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44fba2c8cc9dc2c91e7a37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12169922912901298900" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97aa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95fd7d693acd0f2479319d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b14b6eef2b2e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2db757d763a13a2c1cb0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b19f10dccbd41e0e0ec740" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10840400887215614520" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db8b9b3c1df4d9be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13740852079460900116" + } + } + } + ] + } + ] + }, + "cborHex": "d87e9fd8669f1b46701978d5764e1f80ffbf4a41f996a7b4a53dad93f31b768d08aab11891484b44fba2c8cc9dc2c91e7a371ba8e44069075e7ad44297aa4b95fd7d693acd0f2479319d46b14b6eef2b2e4a2db757d763a13a2c1cb04bb19f10dccbd41e0e0ec7401b9670d72c0950ea3848db8b9b3c1df4d9be1bbeb1502a03745d14ffff", + "cborBytes": [ + 216, 126, 159, 216, 102, 159, 27, 70, 112, 25, 120, 213, 118, 78, 31, 128, 255, 191, 74, 65, 249, 150, 167, 180, + 165, 61, 173, 147, 243, 27, 118, 141, 8, 170, 177, 24, 145, 72, 75, 68, 251, 162, 200, 204, 157, 194, 201, 30, + 122, 55, 27, 168, 228, 64, 105, 7, 94, 122, 212, 66, 151, 170, 75, 149, 253, 125, 105, 58, 205, 15, 36, 121, 49, + 157, 70, 177, 75, 110, 239, 43, 46, 74, 45, 183, 87, 215, 99, 161, 58, 44, 28, 176, 75, 177, 159, 16, 220, 203, + 212, 30, 14, 14, 199, 64, 27, 150, 112, 215, 44, 9, 80, 234, 56, 72, 219, 139, 155, 60, 29, 244, 217, 190, 27, + 190, 177, 80, 42, 3, 116, 93, 20, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3948, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18101551909160881706" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3474888837726364430" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10841365257409087532" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13317667802795721692" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7945287628608479241" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5862257741854786939" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10725470584860303046" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11326606819267994670" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12466748376812047150" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17331999553626673838" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11264545679308237405" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "248548177515318218" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3763538795727115761" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11445657481025202610" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a940f9f0139ebc224cef2" + }, + { + "_tag": "ByteArray", + "bytearray": "51f02d62aa" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16839127682679017614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0893130df3" + }, + { + "_tag": "ByteArray", + "bytearray": "e67576e71ba141" + } + ] + } + ] + } + ] + }, + "cborHex": "d905039f9fd8669f1bfb35a18e24d40e2a9f1b303948fcb6a6630e1b96744442f821482c1bb8d1dc4e7e4bc3dc1b6e4355009583a0091b515aec5b4d09c57bffffa0d8669f1b94d886abc37fdec69f1b9d3030e424fc642e1bad02c998d80f4b2e1bf087a1c3e12592aeffffd8669f1b9c53b49cfb542a5d9f1b03730540265f0bca1b343ac69839b755f11b9ed724d6594ca9b24b1a940f9f0139ebc224cef24551f02d62aaffffff9fd8669f1be9b09968ed87908e9f450893130df347e67576e71ba141ffffffff", + "cborBytes": [ + 217, 5, 3, 159, 159, 216, 102, 159, 27, 251, 53, 161, 142, 36, 212, 14, 42, 159, 27, 48, 57, 72, 252, 182, 166, + 99, 14, 27, 150, 116, 68, 66, 248, 33, 72, 44, 27, 184, 209, 220, 78, 126, 75, 195, 220, 27, 110, 67, 85, 0, 149, + 131, 160, 9, 27, 81, 90, 236, 91, 77, 9, 197, 123, 255, 255, 160, 216, 102, 159, 27, 148, 216, 134, 171, 195, 127, + 222, 198, 159, 27, 157, 48, 48, 228, 36, 252, 100, 46, 27, 173, 2, 201, 152, 216, 15, 75, 46, 27, 240, 135, 161, + 195, 225, 37, 146, 174, 255, 255, 216, 102, 159, 27, 156, 83, 180, 156, 251, 84, 42, 93, 159, 27, 3, 115, 5, 64, + 38, 95, 11, 202, 27, 52, 58, 198, 152, 57, 183, 85, 241, 27, 158, 215, 36, 214, 89, 76, 169, 178, 75, 26, 148, 15, + 159, 1, 57, 235, 194, 36, 206, 242, 69, 81, 240, 45, 98, 170, 255, 255, 255, 159, 216, 102, 159, 27, 233, 176, + 153, 104, 237, 135, 144, 142, 159, 69, 8, 147, 19, 13, 243, 71, 230, 117, 118, 231, 27, 161, 65, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3949, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2388070002780861039" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16258808390565468226" + } + }, + { + "_tag": "ByteArray", + "bytearray": "27a5628f32" + }, + { + "_tag": "ByteArray", + "bytearray": "811a9f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15526773464980184610" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12422759970108429423" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1101896377971910095" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "30824182755316971" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6557258679159304145" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12048481341894594504" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8001066630910321934" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17947463091690803230" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d9050a9f9f9f1b21242103d684f26f1be1a2e4169ecb98424527a5628f3243811a9f1bd77a2e33b81ade22ff1bac66825fcc41546f1b0f4ab8eaec4e25cfd8669f1b006d826e4f9f54eb9f1b5b001006dfa32fd11ba734cdf1e28c8fc81b6f097fb597a4250e1bf912329797aa101effffffa0ff", + "cborBytes": [ + 217, 5, 10, 159, 159, 159, 27, 33, 36, 33, 3, 214, 132, 242, 111, 27, 225, 162, 228, 22, 158, 203, 152, 66, 69, + 39, 165, 98, 143, 50, 67, 129, 26, 159, 27, 215, 122, 46, 51, 184, 26, 222, 34, 255, 27, 172, 102, 130, 95, 204, + 65, 84, 111, 27, 15, 74, 184, 234, 236, 78, 37, 207, 216, 102, 159, 27, 0, 109, 130, 110, 79, 159, 84, 235, 159, + 27, 91, 0, 16, 6, 223, 163, 47, 209, 27, 167, 52, 205, 241, 226, 140, 143, 200, 27, 111, 9, 127, 181, 151, 164, + 37, 14, 27, 249, 18, 50, 151, 151, 170, 16, 30, 255, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3950, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3768370314592287138" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14905308092171773693" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b49" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "418dfb6186a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17509648295108709193" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b344bf0d5df6679a29f1bceda4abcf5a766fd420b49bf46418dfb6186a81bf2fec45ab3fa8b49ffffff", + "cborBytes": [ + 216, 102, 159, 27, 52, 75, 240, 213, 223, 102, 121, 162, 159, 27, 206, 218, 74, 188, 245, 167, 102, 253, 66, 11, + 73, 191, 70, 65, 141, 251, 97, 134, 168, 27, 242, 254, 196, 90, 179, 250, 139, 73, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3951, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2844555279716618611" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b2779e3f4af7891739f80ffff", + "cborBytes": [216, 102, 159, 27, 39, 121, 227, 244, 175, 120, 145, 115, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3952, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15735285482547200439" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc8bde" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14371930767550194716" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "290377e77274c3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6503292854337022579" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10489426546273533566" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f71d0aa4da4d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5630971769147811967" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8700422778105866687" + } + }, + { + "_tag": "ByteArray", + "bytearray": "48a45f1d10983c97aa646b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13514171525689188437" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "057ac489" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7989493841865360213" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b718fb4866ef30" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14230656148094199343" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13089153391548777301" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "367dceb8123a59" + }, + { + "_tag": "ByteArray", + "bytearray": "09976ffd0b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e90ff60d171fbc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10266709883328770382" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1771768622549927540" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c69730c900" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bda5ef6c6fa9641b79f43fc8bded8669f1bc7735ae32856241c9f8047290377e77274c3d8669f1b5a40566525182a739f1b9191edde542fbe7e46f71d0aa4da4dffff9f1b4e253afd684ee87f1b78be1c6b7cb7a9bf4b48a45f1d10983c97aa646b1bbb8bfb66c6672055ffbf44057ac4891b6ee06251ab8e435547b718fb4866ef301bc57d725e93e2262fffffffd8669f1bb5a603a909dd43559f47367dceb8123a594509976ffd0bbf47e90ff60d171fbc1b8e7aae3e57cdb14effd8669f1b1896962ccb4586749f45c69730c900ffffffffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 218, 94, 246, 198, 250, 150, 65, 183, 159, 67, 252, 139, 222, 216, 102, 159, 27, 199, 115, 90, + 227, 40, 86, 36, 28, 159, 128, 71, 41, 3, 119, 231, 114, 116, 195, 216, 102, 159, 27, 90, 64, 86, 101, 37, 24, 42, + 115, 159, 27, 145, 145, 237, 222, 84, 47, 190, 126, 70, 247, 29, 10, 164, 218, 77, 255, 255, 159, 27, 78, 37, 58, + 253, 104, 78, 232, 127, 27, 120, 190, 28, 107, 124, 183, 169, 191, 75, 72, 164, 95, 29, 16, 152, 60, 151, 170, + 100, 107, 27, 187, 139, 251, 102, 198, 103, 32, 85, 255, 191, 68, 5, 122, 196, 137, 27, 110, 224, 98, 81, 171, + 142, 67, 85, 71, 183, 24, 251, 72, 102, 239, 48, 27, 197, 125, 114, 94, 147, 226, 38, 47, 255, 255, 255, 216, 102, + 159, 27, 181, 166, 3, 169, 9, 221, 67, 85, 159, 71, 54, 125, 206, 184, 18, 58, 89, 69, 9, 151, 111, 253, 11, 191, + 71, 233, 15, 246, 13, 23, 31, 188, 27, 142, 122, 174, 62, 87, 205, 177, 78, 255, 216, 102, 159, 27, 24, 150, 150, + 44, 203, 69, 134, 116, 159, 69, 198, 151, 48, 201, 0, 255, 255, 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3953, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14544687039963052667" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16071708889010946812" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13987413420223303356" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8856000346989549791" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4047e472589bec" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b462a6c4a0ef" + }, + { + "_tag": "ByteArray", + "bytearray": "fc7741c16235138718c36e30" + } + ] + }, + "cborHex": "d905039f9f9f1bc9d91bcd4239ba7b1bdf0a2e153efc42fc1bc21d4665aef10ebc1b7ae6d564fd0c58dfff8080ff474047e472589beca046b462a6c4a0ef4cfc7741c16235138718c36e30ff", + "cborBytes": [ + 217, 5, 3, 159, 159, 159, 27, 201, 217, 27, 205, 66, 57, 186, 123, 27, 223, 10, 46, 21, 62, 252, 66, 252, 27, 194, + 29, 70, 101, 174, 241, 14, 188, 27, 122, 230, 213, 100, 253, 12, 88, 223, 255, 128, 128, 255, 71, 64, 71, 228, + 114, 88, 155, 236, 160, 70, 180, 98, 166, 196, 160, 239, 76, 252, 119, 65, 193, 98, 53, 19, 135, 24, 195, 110, 48, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3954, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6252061023294052797" + }, + "fields": [] + }, + "cborHex": "d8669f1b56c3c8603781d9bd80ff", + "cborBytes": [216, 102, 159, 27, 86, 195, 200, 96, 55, 129, 217, 189, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3955, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16646371810585480537" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4845928401886100713" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3258344032511691756" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7458160903991519264" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4856239126643890813" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7950598548269067132" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52424350b20325373b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9255196352814824048" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7875a38cbd758537a9283280" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13702640158945271660" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16293089967156824187" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14629494483545107812" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffcb" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c1828f1f056bcf44feae2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7405648165175218580" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d45b4b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9820" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7fd8edb99c7ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "267dc2ed0be79b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4d6da1e9a1dbdd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15583530594460971852" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14808667600176008176" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6168" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "09" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8986517027316957867" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11951132782821585847" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12548348381065579460" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "124293230504584959" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b5c6bc943b43c154ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "791754216800145298" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12368939271275250014" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9372077410227182765" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9109288947360222097" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0252af" + }, + { + "_tag": "ByteArray", + "bytearray": "49b13a" + }, + { + "_tag": "ByteArray", + "bytearray": "8d72be51306319e70c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3169706993010799405" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1985987646016521270" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5826751930901032027" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a3d0" + }, + { + "_tag": "ByteArray", + "bytearray": "e995661ce0e0c86a0748b28c" + }, + { + "_tag": "ByteArray", + "bytearray": "fbb7" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7889" + }, + { + "_tag": "ByteArray", + "bytearray": "bdcb2a09" + } + ] + } + ] + }, + "cborHex": "d8669f1be703caf729060d599f9fbf1b43403234e965bce91b2d37f6a255df8bec1b6780b5d3c01ee8201b4364d3c197f65a7d1b6e5633416d506b7c4952424350b20325373b1b8071100bf804ba704c7875a38cbd758537a92832801bbe298e9ff6ef5f6c1be21caf0029dd087b1bcb0667b8ef3e2d6442ffcbffbf4b5c1828f1f056bcf44feae21b66c625c4f8cad19443d45b4b42982047e7fd8edb99c7ec47267dc2ed0be79bff9f474d6da1e9a1dbdd1bd843d282b547334c1bcd82f4b90153cbf0426168ff41091b7cb6859fad3a02abffd8669f1ba5daf3f2379b33b780ff1bae24b05e5b430bc4d8669f1b01b99408dc3626ff9f9f49b5c6bc943b43c154ab1b0afce043e9ca4f921baba74cbbd8bd815effd8669f1b82104ebfcc0ddcad9f1b7e6ab208d7cc4b91430252af4349b13a498d72be51306319e70c1b2bfd0fb7607af32dffff9f1b1b8fa53de92104361b50dcc8027bad6c5b42a3d04ce995661ce0e0c86a0748b28c42fbb7ff42788944bdcb2a09ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 231, 3, 202, 247, 41, 6, 13, 89, 159, 159, 191, 27, 67, 64, 50, 52, 233, 101, 188, 233, 27, 45, + 55, 246, 162, 85, 223, 139, 236, 27, 103, 128, 181, 211, 192, 30, 232, 32, 27, 67, 100, 211, 193, 151, 246, 90, + 125, 27, 110, 86, 51, 65, 109, 80, 107, 124, 73, 82, 66, 67, 80, 178, 3, 37, 55, 59, 27, 128, 113, 16, 11, 248, 4, + 186, 112, 76, 120, 117, 163, 140, 189, 117, 133, 55, 169, 40, 50, 128, 27, 190, 41, 142, 159, 246, 239, 95, 108, + 27, 226, 28, 175, 0, 41, 221, 8, 123, 27, 203, 6, 103, 184, 239, 62, 45, 100, 66, 255, 203, 255, 191, 75, 92, 24, + 40, 241, 240, 86, 188, 244, 79, 234, 226, 27, 102, 198, 37, 196, 248, 202, 209, 148, 67, 212, 91, 75, 66, 152, 32, + 71, 231, 253, 142, 219, 153, 199, 236, 71, 38, 125, 194, 237, 11, 231, 155, 255, 159, 71, 77, 109, 161, 233, 161, + 219, 221, 27, 216, 67, 210, 130, 181, 71, 51, 76, 27, 205, 130, 244, 185, 1, 83, 203, 240, 66, 97, 104, 255, 65, + 9, 27, 124, 182, 133, 159, 173, 58, 2, 171, 255, 216, 102, 159, 27, 165, 218, 243, 242, 55, 155, 51, 183, 128, + 255, 27, 174, 36, 176, 94, 91, 67, 11, 196, 216, 102, 159, 27, 1, 185, 148, 8, 220, 54, 38, 255, 159, 159, 73, + 181, 198, 188, 148, 59, 67, 193, 84, 171, 27, 10, 252, 224, 67, 233, 202, 79, 146, 27, 171, 167, 76, 187, 216, + 189, 129, 94, 255, 216, 102, 159, 27, 130, 16, 78, 191, 204, 13, 220, 173, 159, 27, 126, 106, 178, 8, 215, 204, + 75, 145, 67, 2, 82, 175, 67, 73, 177, 58, 73, 141, 114, 190, 81, 48, 99, 25, 231, 12, 27, 43, 253, 15, 183, 96, + 122, 243, 45, 255, 255, 159, 27, 27, 143, 165, 61, 233, 33, 4, 54, 27, 80, 220, 200, 2, 123, 173, 108, 91, 66, + 163, 208, 76, 233, 149, 102, 28, 224, 224, 200, 106, 7, 72, 178, 140, 66, 251, 183, 255, 66, 120, 137, 68, 189, + 203, 42, 9, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3956, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4087385261628805959" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7895491329297644876" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7229188022447381327" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8434053486646944278" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3719" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0c1ce3dfc01b81b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9451975050527162303" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12168840738281652203" + } + } + ] + }, + "cborHex": "d8669f1b38b94f3d538d53479fbf1b6d926b8829f67d4c1b64533c345c7c1b4f1b750bc6f5e83c621642371948e0c1ce3dfc01b81b1b832c293ad086bfbfff1ba8e0682d9d947febffff", + "cborBytes": [ + 216, 102, 159, 27, 56, 185, 79, 61, 83, 141, 83, 71, 159, 191, 27, 109, 146, 107, 136, 41, 246, 125, 76, 27, 100, + 83, 60, 52, 92, 124, 27, 79, 27, 117, 11, 198, 245, 232, 60, 98, 22, 66, 55, 25, 72, 224, 193, 206, 61, 252, 1, + 184, 27, 27, 131, 44, 41, 58, 208, 134, 191, 191, 255, 27, 168, 224, 104, 45, 157, 148, 127, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3957, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8813383990850268216" + }, + "fields": [] + }, + "cborHex": "d8669f1b7a4f6e0b5bbeac3880ff", + "cborBytes": [216, 102, 159, 27, 122, 79, 110, 11, 91, 190, 172, 56, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3958, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10087962711503958246" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13062133598226215209" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4358205890234979434" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17092951265564040146" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13607985603068954296" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7641274521406103432" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15128823696095991664" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "052d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13798835843157972676" + } + }, + { + "_tag": "ByteArray", + "bytearray": "24dbda74" + }, + { + "_tag": "ByteArray", + "bytearray": "981b4990014d026f9914" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10065364849758503166" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16841429405221338053" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "71c37f45aa38" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4352035506711207724" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7af470f29ad2c8" + }, + { + "_tag": "ByteArray", + "bytearray": "36e2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7345650244382738744" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14816510881215065552" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18066210197427687496" + } + }, + { + "_tag": "ByteArray", + "bytearray": "46526f4de8e98a66e109" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5409166616535978807" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bfe6e01587c3f60d8c9c7a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01584889e9b2ce2b92d046" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4564781534480470344" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1235ea84cb39cf8ac670" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2df523015a94f2d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "17" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8700150460861666224" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52069b9214f5108f5e961a21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16750887828293278344" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8242ba9445dce178667" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "902cad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0522fc5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd6eb261660926f5d8" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905019fd8669f1b8bffa4a3469470e680ff1bb546054d2af7f129bf1b3c7b752a9978946a1bed365c9d1b021bd21bbcd946cecb8e06b81b6a0b42b127a75f881bd1f460fee350577042052dff9f9f1bbf7f5017095bd6c44424dbda744a981b4990014d026f99141b8baf5c00948f00fe1be9b8c6d078093bc5ff4671c37f45aa38d8669f1b3c65893c3b689f2c9f477af470f29ad2c84236e2ffff9f1b65f0fdfa74b1c938ff1bcd9ed2252d88add0ff9f9f1bfab81274a73790484a46526f4de8e98a66e1091b4b113860f58753374bbfe6e01587c3f60d8c9c7affbf4b01584889e9b2ce2b92d0461b3f595c9ecff891484a1235ea84cb39cf8ac670482df523015a94f2d641171b78bd24bfb01c53b04c52069b9214f5108f5e961a211be8771bbad5d5da884ad8242ba9445dce17866743902cad44f0522fc549dd6eb261660926f5d8ffffff", + "cborBytes": [ + 217, 5, 1, 159, 216, 102, 159, 27, 139, 255, 164, 163, 70, 148, 112, 230, 128, 255, 27, 181, 70, 5, 77, 42, 247, + 241, 41, 191, 27, 60, 123, 117, 42, 153, 120, 148, 106, 27, 237, 54, 92, 157, 27, 2, 27, 210, 27, 188, 217, 70, + 206, 203, 142, 6, 184, 27, 106, 11, 66, 177, 39, 167, 95, 136, 27, 209, 244, 96, 254, 227, 80, 87, 112, 66, 5, 45, + 255, 159, 159, 27, 191, 127, 80, 23, 9, 91, 214, 196, 68, 36, 219, 218, 116, 74, 152, 27, 73, 144, 1, 77, 2, 111, + 153, 20, 27, 139, 175, 92, 0, 148, 143, 0, 254, 27, 233, 184, 198, 208, 120, 9, 59, 197, 255, 70, 113, 195, 127, + 69, 170, 56, 216, 102, 159, 27, 60, 101, 137, 60, 59, 104, 159, 44, 159, 71, 122, 244, 112, 242, 154, 210, 200, + 66, 54, 226, 255, 255, 159, 27, 101, 240, 253, 250, 116, 177, 201, 56, 255, 27, 205, 158, 210, 37, 45, 136, 173, + 208, 255, 159, 159, 27, 250, 184, 18, 116, 167, 55, 144, 72, 74, 70, 82, 111, 77, 232, 233, 138, 102, 225, 9, 27, + 75, 17, 56, 96, 245, 135, 83, 55, 75, 191, 230, 224, 21, 135, 195, 246, 13, 140, 156, 122, 255, 191, 75, 1, 88, + 72, 137, 233, 178, 206, 43, 146, 208, 70, 27, 63, 89, 92, 158, 207, 248, 145, 72, 74, 18, 53, 234, 132, 203, 57, + 207, 138, 198, 112, 72, 45, 245, 35, 1, 90, 148, 242, 214, 65, 23, 27, 120, 189, 36, 191, 176, 28, 83, 176, 76, + 82, 6, 155, 146, 20, 245, 16, 143, 94, 150, 26, 33, 27, 232, 119, 27, 186, 213, 213, 218, 136, 74, 216, 36, 43, + 169, 68, 93, 206, 23, 134, 103, 67, 144, 44, 173, 68, 240, 82, 47, 197, 73, 221, 110, 178, 97, 102, 9, 38, 245, + 216, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3959, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2325340416982280951" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14228873864105135240" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2185e89a426d" + } + ] + }, + "cborHex": "d8669f1b204544ca00166af79f1bc5771d643fd38c88462185e89a426dffff", + "cborBytes": [ + 216, 102, 159, 27, 32, 69, 68, 202, 0, 22, 106, 247, 159, 27, 197, 119, 29, 100, 63, 211, 140, 136, 70, 33, 133, + 232, 154, 66, 109, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3960, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13536496758349035977" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12891252274812790667" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "29" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12280596509939829510" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16606260821833969119" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "714d415e0124374276d42069" + }, + { + "_tag": "ByteArray", + "bytearray": "6fdcd6c336d21f7eea50" + }, + { + "_tag": "ByteArray", + "bytearray": "e2" + } + ] + } + ] + } + ] + }, + "cborHex": "d905089f9fd8669f1bbbdb4c15109ef9c99f1bb2e6eda4a629a78bffffff9f41299f1baa6d7175dcdd8b06ffffd8669f1be6754a3bd4e66ddf9f9f4c714d415e0124374276d420694a6fdcd6c336d21f7eea5041e2ffffffff", + "cborBytes": [ + 217, 5, 8, 159, 159, 216, 102, 159, 27, 187, 219, 76, 21, 16, 158, 249, 201, 159, 27, 178, 230, 237, 164, 166, 41, + 167, 139, 255, 255, 255, 159, 65, 41, 159, 27, 170, 109, 113, 117, 220, 221, 139, 6, 255, 255, 216, 102, 159, 27, + 230, 117, 74, 59, 212, 230, 109, 223, 159, 159, 76, 113, 77, 65, 94, 1, 36, 55, 66, 118, 212, 32, 105, 74, 111, + 220, 214, 195, 54, 210, 31, 126, 234, 80, 65, 226, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3961, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "87527303837764202" + }, + "fields": [] + }, + "cborHex": "d8669f1b0136f59e7d65ca6a80ff", + "cborBytes": [216, 102, 159, 27, 1, 54, 245, 158, 125, 101, 202, 106, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3962, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15873217492739634039" + }, + "fields": [] + }, + "cborHex": "d8669f1bdc48ff35b143337780ff", + "cborBytes": [216, 102, 159, 27, 220, 72, 255, 53, 177, 67, 51, 119, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3963, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7256699399708581887" + }, + "fields": [] + }, + "cborHex": "d8669f1b64b4f9a8096b9fff80ff", + "cborBytes": [216, 102, 159, 27, 100, 180, 249, 168, 9, 107, 159, 255, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3964, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10912530777193723452" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2434912727692333177" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7401668566863767602" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9ac03b40db52f0b93033" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6776235571448120959" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e842faf50fd5dbd4ff8a" + }, + { + "_tag": "ByteArray", + "bytearray": "61f33d49" + }, + { + "_tag": "ByteArray", + "bytearray": "62" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7374377453454882699" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cb9a988c66a2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11143141091216749072" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "75f6418f26a4" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3c0bb408b602723578d495a0" + } + ] + } + ] + }, + "cborHex": "d8669f1b977118ecbf26363c9f1b21ca8c39a12dd0799f9f1b66b802588916e8324a9ac03b40db52f0b93033ff9f1b5e0a0659a688067fff9f4ae842faf50fd5dbd4ff8a4461f33d4941621b66570d3908d3f78bffff46cb9a988c66a2d8669f1b9aa463c8980872109f9f4675f6418f26a4ff4c3c0bb408b602723578d495a0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 151, 113, 24, 236, 191, 38, 54, 60, 159, 27, 33, 202, 140, 57, 161, 45, 208, 121, 159, 159, 27, + 102, 184, 2, 88, 137, 22, 232, 50, 74, 154, 192, 59, 64, 219, 82, 240, 185, 48, 51, 255, 159, 27, 94, 10, 6, 89, + 166, 136, 6, 127, 255, 159, 74, 232, 66, 250, 245, 15, 213, 219, 212, 255, 138, 68, 97, 243, 61, 73, 65, 98, 27, + 102, 87, 13, 57, 8, 211, 247, 139, 255, 255, 70, 203, 154, 152, 140, 102, 162, 216, 102, 159, 27, 154, 164, 99, + 200, 152, 8, 114, 16, 159, 159, 70, 117, 246, 65, 143, 38, 164, 255, 76, 60, 11, 180, 8, 182, 2, 114, 53, 120, + 212, 149, 160, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3965, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3711861779382297702" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14030305044795522083" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9fd87d9fd8669f1b33832e9f3f6e64669f1bc2b5a81a3d687c23ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 216, 125, 159, 216, 102, 159, 27, 51, 131, 46, + 159, 63, 110, 100, 102, 159, 27, 194, 181, 168, 26, 61, 104, 124, 35, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3966, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12355749136909522168" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18049869072600293721" + } + }, + { + "_tag": "ByteArray", + "bytearray": "56447aa7e7f0295192" + }, + { + "_tag": "ByteArray", + "bytearray": "0f6c757f6e1df73bbd2b7633" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15608740022163823840" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b066" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16375621595899900031" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "907901650222911555" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16164218455110443971" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15965967883000492553" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10535492914687763937" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a9b21d72b2bce288" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4aa39e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "691518864b6b0442d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4780972585766200180" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a65f583c83c021fcf92a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3863500864864440467" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5c05828ae7c39b294" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddceaac3716e8fa4" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ed58b069a99ec9a47db" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6001379244651131791" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe57c6caf7a32e8658c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "919294414207688430" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "593b7e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17316331761857958814" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "93b4d47b5dd4b7de084542" + } + ] + }, + "cborHex": "d905069f9fd8669f1bab7870605f54d4f89f1bfa7e044a0aa661594956447aa7e7f02951924c0f6c757f6e1df73bbd2b76331bd89d6259fc7f5ce0ffff42b066d8669f1be341e51467d4307f9f1b0c9983bd988710431be052d70b10abe3c31bdd928332c18a32091b923596fc899be5e148a9b21d72b2bce288ffffffbf434aa39e415549691518864b6b0442d51b42596d3c6f79a3744aa65f583c83c021fcf92a1b359de9911fa8d09349b5c05828ae7c39b29448ddceaac3716e8fa4ffbf4a3ed58b069a99ec9a47db1b53492ea057d5338f4afe57c6caf7a32e8658c31b0cc1fd662ad99eeeffbf43593b7e1bf04ff7fdd65b939eff4b93b4d47b5dd4b7de084542ff", + "cborBytes": [ + 217, 5, 6, 159, 159, 216, 102, 159, 27, 171, 120, 112, 96, 95, 84, 212, 248, 159, 27, 250, 126, 4, 74, 10, 166, + 97, 89, 73, 86, 68, 122, 167, 231, 240, 41, 81, 146, 76, 15, 108, 117, 127, 110, 29, 247, 59, 189, 43, 118, 51, + 27, 216, 157, 98, 89, 252, 127, 92, 224, 255, 255, 66, 176, 102, 216, 102, 159, 27, 227, 65, 229, 20, 103, 212, + 48, 127, 159, 27, 12, 153, 131, 189, 152, 135, 16, 67, 27, 224, 82, 215, 11, 16, 171, 227, 195, 27, 221, 146, 131, + 50, 193, 138, 50, 9, 27, 146, 53, 150, 252, 137, 155, 229, 225, 72, 169, 178, 29, 114, 178, 188, 226, 136, 255, + 255, 255, 191, 67, 74, 163, 158, 65, 85, 73, 105, 21, 24, 134, 75, 107, 4, 66, 213, 27, 66, 89, 109, 60, 111, 121, + 163, 116, 74, 166, 95, 88, 60, 131, 192, 33, 252, 249, 42, 27, 53, 157, 233, 145, 31, 168, 208, 147, 73, 181, 192, + 88, 40, 174, 124, 57, 178, 148, 72, 221, 206, 170, 195, 113, 110, 143, 164, 255, 191, 74, 62, 213, 139, 6, 154, + 153, 236, 154, 71, 219, 27, 83, 73, 46, 160, 87, 213, 51, 143, 74, 254, 87, 198, 202, 247, 163, 46, 134, 88, 195, + 27, 12, 193, 253, 102, 42, 217, 158, 238, 255, 191, 67, 89, 59, 126, 27, 240, 79, 247, 253, 214, 91, 147, 158, + 255, 75, 147, 180, 212, 123, 93, 212, 183, 222, 8, 69, 66, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3967, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2221555885876101091" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "26186cb9824f7e60d7fc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11119924025678116425" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7662642826150847286" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13532164377822607123" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3220b121062b8da1f7c9cf2f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f091b1dc32" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b1ed48d4ed252bfe39f41e99f4a26186cb9824f7e60d7fcbf1b9a51e7fc47e036491b6a572d0d4d6aa33641141bbbcbe7ce1e4fb7134c3220b121062b8da1f7c9cf2f45f091b1dc32ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 30, 212, 141, 78, 210, 82, 191, 227, 159, 65, 233, 159, 74, 38, 24, 108, 185, 130, 79, 126, 96, + 215, 252, 191, 27, 154, 81, 231, 252, 71, 224, 54, 73, 27, 106, 87, 45, 13, 77, 106, 163, 54, 65, 20, 27, 187, + 203, 231, 206, 30, 79, 183, 19, 76, 50, 32, 177, 33, 6, 43, 141, 161, 247, 201, 207, 47, 69, 240, 145, 177, 220, + 50, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3968, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5126713115314779353" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa034a0434fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10869706585009583644" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2608334812048672676" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4050403751d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8017057670399150716" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "070a" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "15904e4231" + } + ] + }, + "cborHex": "d8669f1b4725be6a77ac74d99f46fa034a0434fc1b96d8f48c8438761cbf1b2432aab1277247a446f4050403751d1b6f424f799bf64a7c42070aff4515904e4231ffff", + "cborBytes": [ + 216, 102, 159, 27, 71, 37, 190, 106, 119, 172, 116, 217, 159, 70, 250, 3, 74, 4, 52, 252, 27, 150, 216, 244, 140, + 132, 56, 118, 28, 191, 27, 36, 50, 170, 177, 39, 114, 71, 164, 70, 244, 5, 4, 3, 117, 29, 27, 111, 66, 79, 121, + 155, 246, 74, 124, 66, 7, 10, 255, 69, 21, 144, 78, 66, 49, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3969, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3089370694167082446" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14330999467819158532" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ab66b21f67" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8550770405050250565" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6567792182189088733" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10945618037684876806" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7255556850662815608" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2829336678422874005" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "635add64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6910470547981932731" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "843f8e87b8d140" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85e9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a650fec9cb4c64a63670da19" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1040038193630982065" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e14066640fd080056" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10300798609195571966" + } + }, + { + "_tag": "ByteArray", + "bytearray": "658dc7b0199672df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14692470796980322427" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f9f9f1b2adfa6473554b5ce1bc6e1f0164bac4c0445ab66b21f67ffd8669f1b76aa706124f175459f1b5b257c3129f7dfdd1b97e6a59ce750b6061b64b0ea839b68b778ffffbf4202c61b2743d2b7f361079544635add641b5fe6ec59a34318bb47843f8e87b8d1404285e94ca650fec9cb4c64a63670da191b0e6ef53a0c36afb141bf495e14066640fd080056ffff1b8ef3c9c253f09afe48658dc7b0199672df1bcbe6245886d0007bffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 159, 159, 27, 42, 223, 166, 71, 53, 84, 181, 206, + 27, 198, 225, 240, 22, 75, 172, 76, 4, 69, 171, 102, 178, 31, 103, 255, 216, 102, 159, 27, 118, 170, 112, 97, 36, + 241, 117, 69, 159, 27, 91, 37, 124, 49, 41, 247, 223, 221, 27, 151, 230, 165, 156, 231, 80, 182, 6, 27, 100, 176, + 234, 131, 155, 104, 183, 120, 255, 255, 191, 66, 2, 198, 27, 39, 67, 210, 183, 243, 97, 7, 149, 68, 99, 90, 221, + 100, 27, 95, 230, 236, 89, 163, 67, 24, 187, 71, 132, 63, 142, 135, 184, 209, 64, 66, 133, 233, 76, 166, 80, 254, + 201, 203, 76, 100, 166, 54, 112, 218, 25, 27, 14, 110, 245, 58, 12, 54, 175, 177, 65, 191, 73, 94, 20, 6, 102, 64, + 253, 8, 0, 86, 255, 255, 27, 142, 243, 201, 194, 83, 240, 154, 254, 72, 101, 141, 199, 176, 25, 150, 114, 223, 27, + 203, 230, 36, 88, 134, 208, 0, 123, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3970, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cf3b" + }, + { + "_tag": "ByteArray", + "bytearray": "f1ed34c59707e268" + }, + { + "_tag": "ByteArray", + "bytearray": "a6107b58" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4575848472466900168" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bd12e42fe8bd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10740783315281804469" + } + }, + { + "_tag": "ByteArray", + "bytearray": "88" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f9fd8669f1bfffffffffffffffc9f42cf3b48f1ed34c59707e26844a6107b58ffffa0ff1b3f80adf11b6744c89f46bd12e42fe8bd1b950eed84a4d07cb5418880ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 252, 159, 66, 207, 59, 72, 241, 237, 52, 197, 151, 7, 226, 104, 68, 166, 16, 123, 88, 255, 255, 160, + 255, 27, 63, 128, 173, 241, 27, 103, 68, 200, 159, 70, 189, 18, 228, 47, 232, 189, 27, 149, 14, 237, 132, 164, + 208, 124, 181, 65, 136, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3971, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13333734224943799166" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "462512020598796052" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905019f41fa9f1bb90af0a1e73e5b7e9f1b066b2c3b7423af14ffffff", + "cborBytes": [ + 217, 5, 1, 159, 65, 250, 159, 27, 185, 10, 240, 161, 231, 62, 91, 126, 159, 27, 6, 107, 44, 59, 116, 35, 175, 20, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3972, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8090976064882257523" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "99e49d16" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2192844545565335151" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "427d194c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11750918289409386229" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5209019538591054653" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13901983777785702963" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4617285757345741602" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15972489852959555295" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a47b181743fa73f779d40b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16023030265592451460" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82bc90e58b139c68967d8b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17415606325549495365" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3406d1" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8260042661197687581" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0daf033fb2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "780003359968489943" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12877914063517864857" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bd21370575d7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11605851690514113407" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "197862158057678457" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5793024108310643383" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02267b25b5adf9" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "555552552556715923" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8116818976220636686" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e8" + }, + { + "_tag": "ByteArray", + "bytearray": "efdbc9c06982bd14151967" + } + ] + } + ] + }, + "cborHex": "d8669f1b7048ebdcf97eae739f4499e49d16bf1b1e6e8c7efa131e6f44427d194c1ba313a5ecd8e326f51b484a27abf9c9fb3d1bc0edc4970c28ea331b4013e4eed1103b221bdda9aee5382f7edf4ba47b181743fa73f779d40b1bde5d3d2205f891844b82bc90e58b139c68967d8b1bf1b0a9ae666c7445433406d1ff9fd8669f1b72a191096a42ab1d9f450daf033fb21b0ad320ec5a8871d71bb2b78a9c53fd539946bd21370575d71ba110449f40f5e37fffffd8669f1b02bef2959d8526799f1b5064f4bbd72142b74702267b25b5adf9ffffff9f1b07b5b81a65345f93801b70a4bbdaa7c7e60e41e84befdbc9c06982bd14151967ffffff", + "cborBytes": [ + 216, 102, 159, 27, 112, 72, 235, 220, 249, 126, 174, 115, 159, 68, 153, 228, 157, 22, 191, 27, 30, 110, 140, 126, + 250, 19, 30, 111, 68, 66, 125, 25, 76, 27, 163, 19, 165, 236, 216, 227, 38, 245, 27, 72, 74, 39, 171, 249, 201, + 251, 61, 27, 192, 237, 196, 151, 12, 40, 234, 51, 27, 64, 19, 228, 238, 209, 16, 59, 34, 27, 221, 169, 174, 229, + 56, 47, 126, 223, 75, 164, 123, 24, 23, 67, 250, 115, 247, 121, 212, 11, 27, 222, 93, 61, 34, 5, 248, 145, 132, + 75, 130, 188, 144, 229, 139, 19, 156, 104, 150, 125, 139, 27, 241, 176, 169, 174, 102, 108, 116, 69, 67, 52, 6, + 209, 255, 159, 216, 102, 159, 27, 114, 161, 145, 9, 106, 66, 171, 29, 159, 69, 13, 175, 3, 63, 178, 27, 10, 211, + 32, 236, 90, 136, 113, 215, 27, 178, 183, 138, 156, 83, 253, 83, 153, 70, 189, 33, 55, 5, 117, 215, 27, 161, 16, + 68, 159, 64, 245, 227, 127, 255, 255, 216, 102, 159, 27, 2, 190, 242, 149, 157, 133, 38, 121, 159, 27, 80, 100, + 244, 187, 215, 33, 66, 183, 71, 2, 38, 123, 37, 181, 173, 249, 255, 255, 255, 159, 27, 7, 181, 184, 26, 101, 52, + 95, 147, 128, 27, 112, 164, 187, 218, 167, 199, 230, 14, 65, 232, 75, 239, 219, 201, 192, 105, 130, 189, 20, 21, + 25, 103, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3973, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9330342925996158136" + }, + "fields": [] + }, + "cborHex": "d8669f1b817c0974f8946cb880ff", + "cborBytes": [216, 102, 159, 27, 129, 124, 9, 116, 248, 148, 108, 184, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3974, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15497835185518649718" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "862420672393418552" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2707252678939779917" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2588445559423889993" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af483612f4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3690469772470199395" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4960286614436218786" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8311751147513015705" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12724822423492106017" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "84646094407240016" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15744546793405538735" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11610336634285632660" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "43e8c6" + }, + { + "_tag": "ByteArray", + "bytearray": "50da7825d778" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11905265339947490575" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bd7135efd7c63a1769fbf1b0bf7ef0840f697381b259217f7c56e234d1b23ec0185a9e5f24945af483612f41b33372eb4826724631b44d67a65259887a21b735945a190f56d9941bc1bb097a6933e2c17211b012cb92ca4c489501bda7fdde3f273e1af1ba12033a7994cac94ff4343e8c64650da7825d7781ba537ffbff8571d0fa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 215, 19, 94, 253, 124, 99, 161, 118, 159, 191, 27, 11, 247, 239, 8, 64, 246, 151, 56, 27, 37, + 146, 23, 247, 197, 110, 35, 77, 27, 35, 236, 1, 133, 169, 229, 242, 73, 69, 175, 72, 54, 18, 244, 27, 51, 55, 46, + 180, 130, 103, 36, 99, 27, 68, 214, 122, 101, 37, 152, 135, 162, 27, 115, 89, 69, 161, 144, 245, 109, 153, 65, + 188, 27, 176, 151, 166, 147, 62, 44, 23, 33, 27, 1, 44, 185, 44, 164, 196, 137, 80, 27, 218, 127, 221, 227, 242, + 115, 225, 175, 27, 161, 32, 51, 167, 153, 76, 172, 148, 255, 67, 67, 232, 198, 70, 80, 218, 120, 37, 215, 120, 27, + 165, 55, 255, 191, 248, 87, 29, 15, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3975, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02a20456" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12672853626470305247" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "94e149d02e5d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5099488936288409879" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "202d5d897819a46f368b0e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6806109482494257359" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17641646596447450231" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12418050423758886569" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e23" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a707dce9d2b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1281848258877574244" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050b9f4402a20456d8669f1bafdf053ac8488ddf9f4694e149d02e5dbf1b46c5062b578159174b202d5d897819a46f368b0e1b5e742883967ce8cf1bf4d3b81c2a3ab4771bac55c711170996a9424e2346a707dce9d2b31b11ca0a332e59cc64ffffffff", + "cborBytes": [ + 217, 5, 11, 159, 68, 2, 162, 4, 86, 216, 102, 159, 27, 175, 223, 5, 58, 200, 72, 141, 223, 159, 70, 148, 225, 73, + 208, 46, 93, 191, 27, 70, 197, 6, 43, 87, 129, 89, 23, 75, 32, 45, 93, 137, 120, 25, 164, 111, 54, 139, 14, 27, + 94, 116, 40, 131, 150, 124, 232, 207, 27, 244, 211, 184, 28, 42, 58, 180, 119, 27, 172, 85, 199, 17, 23, 9, 150, + 169, 66, 78, 35, 70, 167, 7, 220, 233, 210, 179, 27, 17, 202, 10, 51, 46, 89, 204, 100, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3976, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69fa0ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3977, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "61d0835b80" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41d09710bd0fca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14f5a7" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6508728104300099848" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "384815e7e0d32ff8" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "058ce3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8eb837" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "24a342b0299f" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f9f4561d0835b80ffbf4741d09710bd0fca4314f5a7ffbf1b5a53a5b9e468b90848384815e7e0d32ff8ffbf43058ce3438eb837ff4624a342b0299fffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 159, 69, 97, 208, 131, 91, 128, 255, 191, 71, 65, + 208, 151, 16, 189, 15, 202, 67, 20, 245, 167, 255, 191, 27, 90, 83, 165, 185, 228, 104, 185, 8, 72, 56, 72, 21, + 231, 224, 211, 47, 248, 255, 191, 67, 5, 140, 227, 67, 142, 184, 55, 255, 70, 36, 163, 66, 176, 41, 159, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3978, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15974427183803555047" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d4f1c8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0167b7d93b8c8b0e7d1351" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10567945256943053595" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b519bcf75ccad0b1f09" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "713ccacb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44e09e029f2e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "920604" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16257544202838985724" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa3b068ef89c7dfec2b08585" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "447f6a12309c4f7b7d913d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4198273228183993609" + } + } + ] + }, + "cborHex": "d8669f1bddb090e334f45ce79f43d4f1c8bf4b0167b7d93b8c8b0e7d13511b92a8e23845dd6b1b4a5b519bcf75ccad0b1f0941d344713ccacb4644e09e029f2e439206041be19e6650fa6dcbfc4cfa3b068ef89c7dfec2b085854b447f6a12309c4f7b7d913dff1b3a434341f3f07d09ffff", + "cborBytes": [ + 216, 102, 159, 27, 221, 176, 144, 227, 52, 244, 92, 231, 159, 67, 212, 241, 200, 191, 75, 1, 103, 183, 217, 59, + 140, 139, 14, 125, 19, 81, 27, 146, 168, 226, 56, 69, 221, 107, 27, 74, 91, 81, 155, 207, 117, 204, 173, 11, 31, + 9, 65, 211, 68, 113, 60, 202, 203, 70, 68, 224, 158, 2, 159, 46, 67, 146, 6, 4, 27, 225, 158, 102, 80, 250, 109, + 203, 252, 76, 250, 59, 6, 142, 248, 156, 125, 254, 194, 176, 133, 133, 75, 68, 127, 106, 18, 48, 156, 79, 123, + 125, 145, 61, 255, 27, 58, 67, 67, 65, 243, 240, 125, 9, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3979, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "66bbba0e9175b82f21" + }, + { + "_tag": "ByteArray", + "bytearray": "61204ad7aa" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6973766675856230658" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4684" + }, + { + "_tag": "ByteArray", + "bytearray": "f615405ba854" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4041744988697924486" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80c4973fd8" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905039fd905019f9f4966bbba0e9175b82f214561204ad7aaff9f1b60c7cbd7d4de090242468446f615405ba854ffbf1b381729a7340e13864580c4973fd8ffffff", + "cborBytes": [ + 217, 5, 3, 159, 217, 5, 1, 159, 159, 73, 102, 187, 186, 14, 145, 117, 184, 47, 33, 69, 97, 32, 74, 215, 170, 255, + 159, 27, 96, 199, 203, 215, 212, 222, 9, 2, 66, 70, 132, 70, 246, 21, 64, 91, 168, 84, 255, 191, 27, 56, 23, 41, + 167, 52, 14, 19, 134, 69, 128, 196, 151, 63, 216, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3980, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "07a905" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9280705461134815082" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12396236932780585234" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8a8797f50bced1508" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f52912e394332ecfd" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a71d7ebc2c9da29a866" + }, + { + "_tag": "ByteArray", + "bytearray": "50214d3e49891ede23c8bf57" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6166738090717378332" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17443906702000291393" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16951227816156154342" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1028509611330806945" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4522675700993163485" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bb9e271a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4914374100519437895" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2997868038259090246" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9127141159613676350" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3f5d8687d360c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11915593873477205175" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f4e767d9b33823d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12398943360029528143" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10459721587748919976" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13430421884958528246" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12439363510693616003" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + "cborHex": "d9050d9fa09f4307a905ffbf1b80cbb07213f7ef6a1bac0847cff1f6f11249c8a8797f50bced1508496f52912e394332ecfdff9f9f4a6a71d7ebc2c9da29a8664c50214d3e49891ede23c8bf571b5594a79ee814771cffa0d8669f1bf21534b943c87e419f1beb3edbe328b549e61b0e46000acf72a4a11b3ec3c5967ffd00dd44bb9e271affffbf1b44335d34fad746471b299a9118efee23461b7eaa1e86e99ebb3e47c3f5d8687d360c1ba55cb17f146dfcb7487f4e767d9b33823d1bac11e54b24bf904f1b9128655db7425aa81bba62718c0495d2f61baca17f34d6d95983ffff04ff", + "cborBytes": [ + 217, 5, 13, 159, 160, 159, 67, 7, 169, 5, 255, 191, 27, 128, 203, 176, 114, 19, 247, 239, 106, 27, 172, 8, 71, + 207, 241, 246, 241, 18, 73, 200, 168, 121, 127, 80, 188, 237, 21, 8, 73, 111, 82, 145, 46, 57, 67, 50, 236, 253, + 255, 159, 159, 74, 106, 113, 215, 235, 194, 201, 218, 41, 168, 102, 76, 80, 33, 77, 62, 73, 137, 30, 222, 35, 200, + 191, 87, 27, 85, 148, 167, 158, 232, 20, 119, 28, 255, 160, 216, 102, 159, 27, 242, 21, 52, 185, 67, 200, 126, 65, + 159, 27, 235, 62, 219, 227, 40, 181, 73, 230, 27, 14, 70, 0, 10, 207, 114, 164, 161, 27, 62, 195, 197, 150, 127, + 253, 0, 221, 68, 187, 158, 39, 26, 255, 255, 191, 27, 68, 51, 93, 52, 250, 215, 70, 71, 27, 41, 154, 145, 24, 239, + 238, 35, 70, 27, 126, 170, 30, 134, 233, 158, 187, 62, 71, 195, 245, 216, 104, 125, 54, 12, 27, 165, 92, 177, 127, + 20, 109, 252, 183, 72, 127, 78, 118, 125, 155, 51, 130, 61, 27, 172, 17, 229, 75, 36, 191, 144, 79, 27, 145, 40, + 101, 93, 183, 66, 90, 168, 27, 186, 98, 113, 140, 4, 149, 210, 246, 27, 172, 161, 127, 52, 214, 217, 89, 131, 255, + 255, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3981, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12073427448052624929" + }, + "fields": [] + }, + "cborHex": "d8669f1ba78d6e4bd6a0ae2180ff", + "cborBytes": [216, 102, 159, 27, 167, 141, 110, 75, 214, 160, 174, 33, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3982, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16898625248634458162" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3670029146488137819" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8422545626301146963" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5359722227105247483" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ec9f3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17262956135406696950" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e48fb13bd46de438cd20c" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bea83fa21814dd0329fd8669f1bfffffffffffffff380ff9fbf1b32ee901067c1685b1b74e2e49f603327531b4a618ef7f15fb0fb433ec9f31bef9257246010f9f64b1e48fb13bd46de438cd20cffffffff", + "cborBytes": [ + 216, 102, 159, 27, 234, 131, 250, 33, 129, 77, 208, 50, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 243, 128, 255, 159, 191, 27, 50, 238, 144, 16, 103, 193, 104, 91, 27, 116, 226, 228, 159, 96, 51, 39, 83, 27, 74, + 97, 142, 247, 241, 95, 176, 251, 67, 62, 201, 243, 27, 239, 146, 87, 36, 96, 16, 249, 246, 75, 30, 72, 251, 19, + 189, 70, 222, 67, 140, 210, 12, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3983, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dc7a49" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f4411cb60371390ee417238e" + } + ] + } + ] + } + ] + }, + "cborHex": "d905009f43dc7a499f9f4cf4411cb60371390ee417238effffff", + "cborBytes": [ + 217, 5, 0, 159, 67, 220, 122, 73, 159, 159, 76, 244, 65, 28, 182, 3, 113, 57, 14, 228, 23, 35, 142, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3984, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + }, + "cborHex": "d905039f09ff", + "cborBytes": [217, 5, 3, 159, 9, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3985, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8799963267421259331" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0adbe8e36ae0ee6945f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "31464544410864325" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "13093e24bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f361e55b8ca1a08c4f53" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d79dca5c61465" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8048378376466577353" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a1b855641d006cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3442912654152015074" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a20e80dc29d609c0504" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c7c135aa98eaa6f0bb02b" + } + } + ] + } + ] + }, + "cborHex": "d905079f1b7a1fbff7af214643bf4a0adbe8e36ae0ee6945f61b006fc8d620a10ac54513093e24bd4af361e55b8ca1a08c4f53474d79dca5c614651b6fb1957dc339b7c9485a1b855641d006cc1b2fc7aed14f6d9ce24a6a20e80dc29d609c05044b7c7c135aa98eaa6f0bb02bffff", + "cborBytes": [ + 217, 5, 7, 159, 27, 122, 31, 191, 247, 175, 33, 70, 67, 191, 74, 10, 219, 232, 227, 106, 224, 238, 105, 69, 246, + 27, 0, 111, 200, 214, 32, 161, 10, 197, 69, 19, 9, 62, 36, 189, 74, 243, 97, 229, 91, 140, 161, 160, 140, 79, 83, + 71, 77, 121, 220, 165, 198, 20, 101, 27, 111, 177, 149, 125, 195, 57, 183, 201, 72, 90, 27, 133, 86, 65, 208, 6, + 204, 27, 47, 199, 174, 209, 79, 109, 156, 226, 74, 106, 32, 232, 13, 194, 157, 96, 156, 5, 4, 75, 124, 124, 19, + 90, 169, 142, 170, 111, 11, 176, 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3986, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5831040051763938526" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1882957804276069114" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8410243836660736321" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15578104410909081100" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "384034526090618974" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d27e3827cb38fd" + }, + { + "_tag": "ByteArray", + "bytearray": "ef04ec" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3946c187de5c" + }, + { + "_tag": "ByteArray", + "bytearray": "f8000324" + } + ] + }, + "cborHex": "d8669f1b50ec04086c7704de9f9f1b1a219c258aecb2fad8669f1b74b73035c694e14180ffd8669f1bd8308b6ce62e7e0c9f41f71b05545d5de51de85e47d27e3827cb38fd43ef04ecffffff463946c187de5c44f8000324ffff", + "cborBytes": [ + 216, 102, 159, 27, 80, 236, 4, 8, 108, 119, 4, 222, 159, 159, 27, 26, 33, 156, 37, 138, 236, 178, 250, 216, 102, + 159, 27, 116, 183, 48, 53, 198, 148, 225, 65, 128, 255, 216, 102, 159, 27, 216, 48, 139, 108, 230, 46, 126, 12, + 159, 65, 247, 27, 5, 84, 93, 93, 229, 29, 232, 94, 71, 210, 126, 56, 39, 203, 56, 253, 67, 239, 4, 236, 255, 255, + 255, 70, 57, 70, 193, 135, 222, 92, 68, 248, 0, 3, 36, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3987, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9437243835444784315" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18418513327768874828" + } + } + ] + }, + "cborHex": "d8669f1b82f7d344866e6cbb9f1bff9bb44940762f4cffff", + "cborBytes": [ + 216, 102, 159, 27, 130, 247, 211, 68, 134, 110, 108, 187, 159, 27, 255, 155, 180, 73, 64, 118, 47, 76, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3988, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3e61631" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "183e78" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33093d3e4e5b1fad8193" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9532601384354847185" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45908d09c6627c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6960612909242630205" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e59078830af7a689007f5120" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58df28145d5dd6b13fa9" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11193042453451643176" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a3f6b195" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6576846b0e74ea91" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "af1878cadab3b7c5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1492427171526675846" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8471067522197190841" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3282934055694991593" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12469569322354770442" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6609761801566729102" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12663718382304523001" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6343158396438793024" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13962391395986853905" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f0046" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18056608016055296616" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9616413181366069721" + } + } + } + ] + } + ] + }, + "cborHex": "d87b9fbf44d3e6163143183e78ff9fbf4a33093d3e4e5b1fad81931b844a9a7403de19d14745908d09c6627c1b6099108fe267c03d4ce59078830af7a689007f51204a58df28145d5dd6b13fa9ff9f1b9b55accee1da192844a3f6b195ff486576846b0e74ea91ff48af1878cadab3b7c5bf1b14b62a9af3fd0d8641441b758f4707a0e978b91b2d8f532142bb80e91bad0ccf3b6910820a1b5bba9756a854b38e1bafbe90c600d872f91b58076cf43dc54b401bc1c460ffacc45011435f00461bfa95f552957262681b85745cd6a8b569d9ffff", + "cborBytes": [ + 216, 123, 159, 191, 68, 211, 230, 22, 49, 67, 24, 62, 120, 255, 159, 191, 74, 51, 9, 61, 62, 78, 91, 31, 173, 129, + 147, 27, 132, 74, 154, 116, 3, 222, 25, 209, 71, 69, 144, 141, 9, 198, 98, 124, 27, 96, 153, 16, 143, 226, 103, + 192, 61, 76, 229, 144, 120, 131, 10, 247, 166, 137, 0, 127, 81, 32, 74, 88, 223, 40, 20, 93, 93, 214, 177, 63, + 169, 255, 159, 27, 155, 85, 172, 206, 225, 218, 25, 40, 68, 163, 246, 177, 149, 255, 72, 101, 118, 132, 107, 14, + 116, 234, 145, 255, 72, 175, 24, 120, 202, 218, 179, 183, 197, 191, 27, 20, 182, 42, 154, 243, 253, 13, 134, 65, + 68, 27, 117, 143, 71, 7, 160, 233, 120, 185, 27, 45, 143, 83, 33, 66, 187, 128, 233, 27, 173, 12, 207, 59, 105, + 16, 130, 10, 27, 91, 186, 151, 86, 168, 84, 179, 142, 27, 175, 190, 144, 198, 0, 216, 114, 249, 27, 88, 7, 108, + 244, 61, 197, 75, 64, 27, 193, 196, 96, 255, 172, 196, 80, 17, 67, 95, 0, 70, 27, 250, 149, 245, 82, 149, 114, 98, + 104, 27, 133, 116, 92, 214, 168, 181, 105, 217, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3989, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bebf6a746a778cec1393d1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "730522065113193993" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13319274043172996727" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15132187403990532820" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8d6e" + }, + { + "_tag": "ByteArray", + "bytearray": "ca9e67435b5b4dfe8d6fb17c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1520135840649022965" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7225830758484644258" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "171803231729939523" + } + } + ] + }, + "cborHex": "d8799f4bbebf6a746a778cec1393d1d8669f1b0a2355f29fa81e099fd8669f1bb8d7912c7968467780ff1bd2005445297f02d4809f428d6e4cca9e67435b5b4dfe8d6fb17c1b15189b7e38398df51b64474eca6e9191a2ffffff1b02625e210686f443ff", + "cborBytes": [ + 216, 121, 159, 75, 190, 191, 106, 116, 106, 119, 140, 236, 19, 147, 209, 216, 102, 159, 27, 10, 35, 85, 242, 159, + 168, 30, 9, 159, 216, 102, 159, 27, 184, 215, 145, 44, 121, 104, 70, 119, 128, 255, 27, 210, 0, 84, 69, 41, 127, + 2, 212, 128, 159, 66, 141, 110, 76, 202, 158, 103, 67, 91, 91, 77, 254, 141, 111, 177, 124, 27, 21, 24, 155, 126, + 56, 57, 141, 245, 27, 100, 71, 78, 202, 110, 145, 145, 162, 255, 255, 255, 27, 2, 98, 94, 33, 6, 134, 244, 67, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3990, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "243586463599730605" + }, + "fields": [] + }, + "cborHex": "d8669f1b036164991af49fad80ff", + "cborBytes": [216, 102, 159, 27, 3, 97, 100, 153, 26, 244, 159, 173, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3991, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6897056869765227972" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16067112306844261972" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b5fb744ae4e0625c49fd8669f1bdef9d9840fc25e5480ffffff", + "cborBytes": [ + 216, 102, 159, 27, 95, 183, 68, 174, 78, 6, 37, 196, 159, 216, 102, 159, 27, 222, 249, 217, 132, 15, 194, 94, 84, + 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3992, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9925967397732776520" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10129147195646406775" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9aa595ca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15018642498165347316" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f620a90a616ed2f4c9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18356568678455274770" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa074bbd4c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e59476fd01684f3d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6454664941808612096" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b89c01ec219f87a489fbf1b8c91f5b53a25f077449aa595ca1bd06cefc7a7bb13f449f620a90a616ed2f4c91bfebfa1f4ae636d1245fa074bbd4c495e59476fd01684f3d11b59939390f8ab7300ffffff", + "cborBytes": [ + 216, 102, 159, 27, 137, 192, 30, 194, 25, 248, 122, 72, 159, 191, 27, 140, 145, 245, 181, 58, 37, 240, 119, 68, + 154, 165, 149, 202, 27, 208, 108, 239, 199, 167, 187, 19, 244, 73, 246, 32, 169, 10, 97, 110, 210, 244, 201, 27, + 254, 191, 161, 244, 174, 99, 109, 18, 69, 250, 7, 75, 189, 76, 73, 94, 89, 71, 111, 208, 22, 132, 243, 209, 27, + 89, 147, 147, 144, 248, 171, 115, 0, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3993, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2915770415544175940" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "594f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1071614631100994021" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1980109488249957069" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c34739a98494f68419a" + } + ] + }, + "cborHex": "d8669f1b2876e5be991a8d449f42594f1b0edf23d44ee2d1e51b1b7ac316a784eacd4a0c34739a98494f68419affff", + "cborBytes": [ + 216, 102, 159, 27, 40, 118, 229, 190, 153, 26, 141, 68, 159, 66, 89, 79, 27, 14, 223, 35, 212, 78, 226, 209, 229, + 27, 27, 122, 195, 22, 167, 132, 234, 205, 74, 12, 52, 115, 154, 152, 73, 79, 104, 65, 154, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3994, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7f8d98a44e5897c12011a8" + }, + { + "_tag": "ByteArray", + "bytearray": "a58868" + }, + { + "_tag": "ByteArray", + "bytearray": "17" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16042259074544239839" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8340687573752357154" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17735384882148417737" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c7241c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7310200782059631987" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b670d59ad9b4d147" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17516057524157182775" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "11" + }, + { + "_tag": "ByteArray", + "bytearray": "7152b3395a5775b75f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17149147484477953356" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14033228199378474882" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11842788411455698951" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4056140712278499103" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13904362444937567948" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e1243f374ed6de6b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9aef2fd35bfa4b2c" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3393919935473798835" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7635844713831232589" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca9cf00b918b15af1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9679258162165471416" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee26629f174c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5124147191693963391" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff904bd9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17801649665096991583" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "190954754801931755" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d033ef9c21216d0bb54645" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15826611053917280397" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14542298477352273195" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16531514304154969188" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d06" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11914276496964974168" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d863514ad04e150b" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03f1f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f64350d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3589134229740081854" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab81d4c391ae6e8674a849" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4260ddb77" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9cfc9f11d3898" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16591762043592446934" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f245b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5668708899632296921" + } + } + } + ] + } + ] + }, + "cborHex": "d87f9f9f9f4b7f8d98a44e5897c12011a843a5886841171bdea18da1fcff04dfffd8669f1b73c01328500621229f1bf620be958f4a20c9ffffbf444c7241c01b65730ce15372757348b670d59ad9b4d14741adffd8669f1bf3158983a0b273379f4111497152b3395a5775b75f1bedfe02c6ed17954c1bc2c00ab233f2d7821ba45a09507eedf807ffff1b384a4e7cca5c1f1fffd8669f1bc0f637f9a6c91ecc9fbf490e1243f374ed6de6b1489aef2fd35bfa4b2cffbf1b2f19a03316084eb31b69f7f84f8ff4744d49ca9cf00b918b15af1e1b8653a203fd2c58b846ee26629f174c1b471ca0b8d1bbf07f44ff904bd91bf70c2a0da00ec35fffbf1b02a66856782415eb4bd033ef9c21216d0bb546451bdba36ae68b02988d1bc9d09f6ab049452b1be56bbcac02722464422d06ffbf1ba55803597561f65848d863514ad04e150bffffffbf4303f1f341d0442f64350d1b31cf2a90deda52be4bab81d4c391ae6e8674a84945b4260ddb7747b9cfc9f11d38981be641c7abf62313d643f245b81b4eab4cb5c9adb3d9ffff", + "cborBytes": [ + 216, 127, 159, 159, 159, 75, 127, 141, 152, 164, 78, 88, 151, 193, 32, 17, 168, 67, 165, 136, 104, 65, 23, 27, + 222, 161, 141, 161, 252, 255, 4, 223, 255, 216, 102, 159, 27, 115, 192, 19, 40, 80, 6, 33, 34, 159, 27, 246, 32, + 190, 149, 143, 74, 32, 201, 255, 255, 191, 68, 76, 114, 65, 192, 27, 101, 115, 12, 225, 83, 114, 117, 115, 72, + 182, 112, 213, 154, 217, 180, 209, 71, 65, 173, 255, 216, 102, 159, 27, 243, 21, 137, 131, 160, 178, 115, 55, 159, + 65, 17, 73, 113, 82, 179, 57, 90, 87, 117, 183, 95, 27, 237, 254, 2, 198, 237, 23, 149, 76, 27, 194, 192, 10, 178, + 51, 242, 215, 130, 27, 164, 90, 9, 80, 126, 237, 248, 7, 255, 255, 27, 56, 74, 78, 124, 202, 92, 31, 31, 255, 216, + 102, 159, 27, 192, 246, 55, 249, 166, 201, 30, 204, 159, 191, 73, 14, 18, 67, 243, 116, 237, 109, 230, 177, 72, + 154, 239, 47, 211, 91, 250, 75, 44, 255, 191, 27, 47, 25, 160, 51, 22, 8, 78, 179, 27, 105, 247, 248, 79, 143, + 244, 116, 77, 73, 202, 156, 240, 11, 145, 139, 21, 175, 30, 27, 134, 83, 162, 3, 253, 44, 88, 184, 70, 238, 38, + 98, 159, 23, 76, 27, 71, 28, 160, 184, 209, 187, 240, 127, 68, 255, 144, 75, 217, 27, 247, 12, 42, 13, 160, 14, + 195, 95, 255, 191, 27, 2, 166, 104, 86, 120, 36, 21, 235, 75, 208, 51, 239, 156, 33, 33, 109, 11, 181, 70, 69, 27, + 219, 163, 106, 230, 139, 2, 152, 141, 27, 201, 208, 159, 106, 176, 73, 69, 43, 27, 229, 107, 188, 172, 2, 114, 36, + 100, 66, 45, 6, 255, 191, 27, 165, 88, 3, 89, 117, 97, 246, 88, 72, 216, 99, 81, 74, 208, 78, 21, 11, 255, 255, + 255, 191, 67, 3, 241, 243, 65, 208, 68, 47, 100, 53, 13, 27, 49, 207, 42, 144, 222, 218, 82, 190, 75, 171, 129, + 212, 195, 145, 174, 110, 134, 116, 168, 73, 69, 180, 38, 13, 219, 119, 71, 185, 207, 201, 241, 29, 56, 152, 27, + 230, 65, 199, 171, 246, 35, 19, 214, 67, 242, 69, 184, 27, 78, 171, 76, 181, 201, 173, 179, 217, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3995, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "da4e1100b7" + } + ] + }, + "cborHex": "d905049f45da4e1100b7ff", + "cborBytes": [217, 5, 4, 159, 69, 218, 78, 17, 0, 183, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3996, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15001349267333973099" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6916964616969168713" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16139474006698325349" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8317257698395339537" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "90d82e42c48d71c17ea9370d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9470083166088295154" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17005637105451138188" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2265839766336751077" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee1aba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5218337629979658833" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "199422787440748302" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b2f3" + } + ] + }, + "cborHex": "d8669f1bd02f7fad9702046b9f1b5ffdfeabe664a7491bdffaee1936e77565d8669f1b736cd5cf5a3cbb119f4c90d82e42c48d71c17ea9370dffffd8669f1b836c7e77041972f29fa0d8669f1bec0028d9019dfc8c80ffbf1b1f71e1433674c5e543ee1aba1b486b426d30fdca511b02c47df7f586270effffff42b2f3ffff", + "cborBytes": [ + 216, 102, 159, 27, 208, 47, 127, 173, 151, 2, 4, 107, 159, 27, 95, 253, 254, 171, 230, 100, 167, 73, 27, 223, 250, + 238, 25, 54, 231, 117, 101, 216, 102, 159, 27, 115, 108, 213, 207, 90, 60, 187, 17, 159, 76, 144, 216, 46, 66, + 196, 141, 113, 193, 126, 169, 55, 13, 255, 255, 216, 102, 159, 27, 131, 108, 126, 119, 4, 25, 114, 242, 159, 160, + 216, 102, 159, 27, 236, 0, 40, 217, 1, 157, 252, 140, 128, 255, 191, 27, 31, 113, 225, 67, 54, 116, 197, 229, 67, + 238, 26, 186, 27, 72, 107, 66, 109, 48, 253, 202, 81, 27, 2, 196, 125, 247, 245, 134, 39, 14, 255, 255, 255, 66, + 178, 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3997, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13382626283605889129" + }, + "fields": [] + }, + "cborHex": "d8669f1bb9b8a3b36422906980ff", + "cborBytes": [216, 102, 159, 27, 185, 184, 163, 179, 100, 34, 144, 105, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3998, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6d2f196763" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17053136891137266454" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02c3abaca0907fed75708a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "289b09d77531" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b7353ffe405904427" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00493eb649" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a14088" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "921fffc42c57873f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81ec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3c9b4865842c53eef63" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c1992" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f9f9f456d2f1967631beca8e9a6ae5893164b02c3abaca0907fed75708affbf46289b09d77531412f492b7353ffe4059044274500493eb649416e43a1408848921fffc42c57873f4281ec4ab3c9b4865842c53eef63434c1992ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 159, 159, 69, 109, 47, 25, 103, 99, 27, 236, 168, + 233, 166, 174, 88, 147, 22, 75, 2, 195, 171, 172, 160, 144, 127, 237, 117, 112, 138, 255, 191, 70, 40, 155, 9, + 215, 117, 49, 65, 47, 73, 43, 115, 83, 255, 228, 5, 144, 68, 39, 69, 0, 73, 62, 182, 73, 65, 110, 67, 161, 64, + 136, 72, 146, 31, 255, 196, 44, 87, 135, 63, 66, 129, 236, 74, 179, 201, 180, 134, 88, 66, 197, 62, 239, 99, 67, + 76, 25, 146, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + }, + { + "index": 3999, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4713256373951612121" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5034163477288546971" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ebf69" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13259409751579820153" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24745ef7c5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16577657803605029939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fe711f1de0ed28d86fd30" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "96d83e5e4b642c5e8b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7321263909671772968" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1413943823296065923" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7687961790963303493" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9944859de1f1b98" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10932169578072555642" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11554077498313451956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14938913429428152712" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16265405122483899899" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16821476487548266880" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "552934810590187094" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e4f61b3dcad2b57d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d5" + }, + { + "_tag": "ByteArray", + "bytearray": "947cf57f892f3913ae5f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1638924945861810534" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc4f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15393548909637584195" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c809a939b9d27333dc435eb5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5412403337939155470" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7009" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9801006195673603300" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4380319355319107067" + } + }, + { + "_tag": "ByteArray", + "bytearray": "47" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10961070918262877748" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3759046530479578934" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1455263412647653069" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "64cd8ed721" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8631281510469739757" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a65fea0bcfe8b8ebd2a27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18443779200589949179" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b4168d9b340bb44d99fbf1b45dcf102ad07729b439ebf691bb802e2eaee4400794524745ef7c51be60fabf0afdc34334b6fe711f1de0ed28d86fd30ff9f4996d83e5e4b642c5e8bbf1b659a5abc72dfa3281b139f566a77eb71831b6ab120842d24c44548d9944859de1f1b981b97b6de4f6558c07a41131ba0585444c24ea9b41bcf51ae9d4360a9881be1ba53c7f578cdfb1be971e3bdcde66980ff80d8669f1b07ac6b47d92d0e569f48e4f61b3dcad2b57dffff9f41d54a947cf57f892f3913ae5f1b16bea18e0b9e9966ffff9fbf42bc4f1bd5a0df2cbf8cc5434cc809a939b9d27333dc435eb51b4b1cb828e3007a0eff42700980d8669f1b88042b34fe871ce49f1b3cca053ee8903dfb41471b981d8bed08ec6e341b342ad0e737665f36ffffff9fd8669f1b1432225d0d7c6ecd80ff4564cd8ed7211b77c878cda3f224edbf4b7a65fea0bcfe8b8ebd2a271bfff57776aee6e8fbffffffff", + "cborBytes": [ + 216, 102, 159, 27, 65, 104, 217, 179, 64, 187, 68, 217, 159, 191, 27, 69, 220, 241, 2, 173, 7, 114, 155, 67, 158, + 191, 105, 27, 184, 2, 226, 234, 238, 68, 0, 121, 69, 36, 116, 94, 247, 197, 27, 230, 15, 171, 240, 175, 220, 52, + 51, 75, 111, 231, 17, 241, 222, 14, 210, 141, 134, 253, 48, 255, 159, 73, 150, 216, 62, 94, 75, 100, 44, 94, 139, + 191, 27, 101, 154, 90, 188, 114, 223, 163, 40, 27, 19, 159, 86, 106, 119, 235, 113, 131, 27, 106, 177, 32, 132, + 45, 36, 196, 69, 72, 217, 148, 72, 89, 222, 31, 27, 152, 27, 151, 182, 222, 79, 101, 88, 192, 122, 65, 19, 27, + 160, 88, 84, 68, 194, 78, 169, 180, 27, 207, 81, 174, 157, 67, 96, 169, 136, 27, 225, 186, 83, 199, 245, 120, 205, + 251, 27, 233, 113, 227, 189, 205, 230, 105, 128, 255, 128, 216, 102, 159, 27, 7, 172, 107, 71, 217, 45, 14, 86, + 159, 72, 228, 246, 27, 61, 202, 210, 181, 125, 255, 255, 159, 65, 213, 74, 148, 124, 245, 127, 137, 47, 57, 19, + 174, 95, 27, 22, 190, 161, 142, 11, 158, 153, 102, 255, 255, 159, 191, 66, 188, 79, 27, 213, 160, 223, 44, 191, + 140, 197, 67, 76, 200, 9, 169, 57, 185, 210, 115, 51, 220, 67, 94, 181, 27, 75, 28, 184, 40, 227, 0, 122, 14, 255, + 66, 112, 9, 128, 216, 102, 159, 27, 136, 4, 43, 52, 254, 135, 28, 228, 159, 27, 60, 202, 5, 62, 232, 144, 61, 251, + 65, 71, 27, 152, 29, 139, 237, 8, 236, 110, 52, 27, 52, 42, 208, 231, 55, 102, 95, 54, 255, 255, 255, 159, 216, + 102, 159, 27, 20, 50, 34, 93, 13, 124, 110, 205, 128, 255, 69, 100, 205, 142, 215, 33, 27, 119, 200, 120, 205, + 163, 242, 36, 237, 191, 75, 122, 101, 254, 160, 188, 254, 139, 142, 189, 42, 39, 27, 255, 245, 119, 118, 174, 230, + 232, 251, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "constr", + "seed": 12345 + } + } +] diff --git a/packages/evolution/test/golden/data.golden.json b/packages/evolution/test/golden/data.golden.json new file mode 100644 index 00000000..e05705f4 --- /dev/null +++ b/packages/evolution/test/golden/data.golden.json @@ -0,0 +1,258507 @@ +[ + { + "index": 0, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1096358119007469010" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5141074617022808169" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12122781672013947587" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "10883f12df" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4344632299997632020" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7625782294970734989" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17239321297089946591" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "875156884626829895" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ed" + }, + { + "_tag": "ByteArray", + "bytearray": "27ad9e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3456603137000033743" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4105403117162300910" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b0f370be6860e3dd29f9f9f4101ffd87e9f1b4758c420276c00691ba83cc5b39201e2c3ffff9f4510883f12dfd8669f1b3c4b3c0ed90c16149f1b69d438981a31998d1bef3e5f61c1df63dfffff9f1b0c252e8cbeeb724741ed4327ad9e1b2ff8523d3e634dcfff9f1b38f952623a3d85eeffffffff", + "cborBytes": [ + 216, 102, 159, 27, 15, 55, 11, 230, 134, 14, 61, 210, 159, 159, 159, 65, 1, 255, 216, 126, 159, 27, 71, 88, 196, + 32, 39, 108, 0, 105, 27, 168, 60, 197, 179, 146, 1, 226, 195, 255, 255, 159, 69, 16, 136, 63, 18, 223, 216, 102, + 159, 27, 60, 75, 60, 14, 217, 12, 22, 20, 159, 27, 105, 212, 56, 152, 26, 49, 153, 141, 27, 239, 62, 95, 97, 193, + 223, 99, 223, 255, 255, 159, 27, 12, 37, 46, 140, 190, 235, 114, 71, 65, 237, 67, 39, 173, 158, 27, 47, 248, 82, + 61, 62, 99, 77, 207, 255, 159, 27, 56, 249, 82, 98, 58, 61, 133, 238, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8259237220439753231" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1350857233658356052" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "058ca8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97f36e2641a91cad33" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ddb9464f2d263c67a2a7" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17198440817858792745" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15867863039723149864" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17293214871891614254" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13796576323345291062" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05333c04f4429d11d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e56387c33672" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88602b74be07d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15fd" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "927ac45417cb20" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a6d2409493bf05bf45bd2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "371fdea6f23f6aca90" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11485354041463684721" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5766712942503293926" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4126615953955459661" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4a9ddf71d4a6c8e499397e25" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6493754009105691206" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12924483964853661693" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16499319893832295250" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f7ba" + } + ] + }, + "cborHex": "d905089fd8669f1b729eb47e1fff020f9f1b12bf357f32792154bf43058ca84997f36e2641a91cad33ff4addb9464f2d263c67a2a7a0ffffbf1beead22cd770d4d291bdc35f95cf33f9a281beffdd74d779a1a2e1bbf774911958f97364905333c04f4429d11d146e56387c336724788602b74be07d64215fdff47927ac45417cb209fbf4b1a6d2409493bf05bf45bd249371fdea6f23f6aca9041c81b9f642ca6110a3e71ffd8669f1b50077ade2b8e73e680ffd8669f1b3944af58abf9924d9f4c4a9ddf71d4a6c8e499397e251b5a1e72ddab837246ffff1bb35cfdb06e55affd1be4f95c06bb68e352ff42f7baff", + "cborBytes": [ + 217, 5, 8, 159, 216, 102, 159, 27, 114, 158, 180, 126, 31, 255, 2, 15, 159, 27, 18, 191, 53, 127, 50, 121, 33, 84, + 191, 67, 5, 140, 168, 73, 151, 243, 110, 38, 65, 169, 28, 173, 51, 255, 74, 221, 185, 70, 79, 45, 38, 60, 103, + 162, 167, 160, 255, 255, 191, 27, 238, 173, 34, 205, 119, 13, 77, 41, 27, 220, 53, 249, 92, 243, 63, 154, 40, 27, + 239, 253, 215, 77, 119, 154, 26, 46, 27, 191, 119, 73, 17, 149, 143, 151, 54, 73, 5, 51, 60, 4, 244, 66, 157, 17, + 209, 70, 229, 99, 135, 195, 54, 114, 71, 136, 96, 43, 116, 190, 7, 214, 66, 21, 253, 255, 71, 146, 122, 196, 84, + 23, 203, 32, 159, 191, 75, 26, 109, 36, 9, 73, 59, 240, 91, 244, 91, 210, 73, 55, 31, 222, 166, 242, 63, 106, 202, + 144, 65, 200, 27, 159, 100, 44, 166, 17, 10, 62, 113, 255, 216, 102, 159, 27, 80, 7, 122, 222, 43, 142, 115, 230, + 128, 255, 216, 102, 159, 27, 57, 68, 175, 88, 171, 249, 146, 77, 159, 76, 74, 157, 223, 113, 212, 166, 200, 228, + 153, 57, 126, 37, 27, 90, 30, 114, 221, 171, 131, 114, 70, 255, 255, 27, 179, 92, 253, 176, 110, 85, 175, 253, 27, + 228, 249, 92, 6, 187, 104, 227, 82, 255, 66, 247, 186, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2, + "sample": { + "_tag": "Map", + "entries": [] + }, + "cborHex": "a0", + "cborBytes": [160], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2086321517934526299" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "610005471195102316" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4109120808ad5543" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15563261515909792944" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9520a39ed1c2" + } + } + ] + } + ] + }, + "cborHex": "9f1b1cf41a5de3bdbf5bbf1b08772cbe7da0fc6c484109120808ad55431bd7fbcfe41a4f84b0469520a39ed1c2ffff", + "cborBytes": [ + 159, 27, 28, 244, 26, 93, 227, 189, 191, 91, 191, 27, 8, 119, 44, 190, 125, 160, 252, 108, 72, 65, 9, 18, 8, 8, + 173, 85, 67, 27, 215, 251, 207, 228, 26, 79, 132, 176, 70, 149, 32, 163, 158, 209, 194, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 4, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4254746994838001875" + } + }, + "cborHex": "1b3b0be5d9647ad8d3", + "cborBytes": [27, 59, 11, 229, 217, 100, 122, 216, 211], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 5, + "sample": { + "_tag": "ByteArray", + "bytearray": "19105a7896aedfd2" + }, + "cborHex": "4819105a7896aedfd2", + "cborBytes": [72, 25, 16, 90, 120, 150, 174, 223, 210], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 6, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13192339192714947745" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2053309639917787479" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14794699083706151989" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8373010797243001202" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9874410488551428139" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ebb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15616552745299162675" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab1096bd09f09fa053" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afc7a7c2789c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7904663586164789765" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c77cc485e082db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c521fdde" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f83fbc87775cf61c0d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94a2" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16059579615961020098" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4b673f30f557" + }, + { + "_tag": "ByteArray", + "bytearray": "12dfb4d5da6c909109" + }, + { + "_tag": "ByteArray", + "bytearray": "7230" + }, + { + "_tag": "ByteArray", + "bytearray": "aa31a2e630260b13813d976e" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9648698507233355058" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "56ebc13c293464dba468" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d2fb5d87f18d898f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c90f282e934943887daa0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11492792173347516846" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b9108f27dd44dc2526a0acf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4321286506103043323" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a55d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4182351734222390540" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9244677bd4a8f83b34ee68" + } + ] + }, + "cborHex": "d8669f1bb7149a998a3ceca19fbf1b1c7ed23d152f59571bcd51546e531a3435ffd8669f1b7432e8f53e2de9729f1b8908f405c07fd02bbf427ebb1bd8b923fb57b5363349ab1096bd09f09fa05341b946afc7a7c2789c1b6db301a6a251520547c77cc485e082db44c521fdde49f83fbc87775cf61c0d4294a2ff1bdedf1692cb75f6c29f464b673f30f5574912dfb4d5da6c9091094272304caa31a2e630260b13813d976effffffd8669f1b85e7102bdc7c65329f4a56ebc13c293464dba4688048d2fb5d87f18d898fbf4b2c90f282e934943887daa01b9f7e999719c4b1ae4c9b9108f27dd44dc2526a0acf1b3bf84b2ea0f5f4fb42a55d4187ff1b3a0ab2be4410850cffff4b9244677bd4a8f83b34ee68ffff", + "cborBytes": [ + 216, 102, 159, 27, 183, 20, 154, 153, 138, 60, 236, 161, 159, 191, 27, 28, 126, 210, 61, 21, 47, 89, 87, 27, 205, + 81, 84, 110, 83, 26, 52, 53, 255, 216, 102, 159, 27, 116, 50, 232, 245, 62, 45, 233, 114, 159, 27, 137, 8, 244, 5, + 192, 127, 208, 43, 191, 66, 126, 187, 27, 216, 185, 35, 251, 87, 181, 54, 51, 73, 171, 16, 150, 189, 9, 240, 159, + 160, 83, 65, 185, 70, 175, 199, 167, 194, 120, 156, 27, 109, 179, 1, 166, 162, 81, 82, 5, 71, 199, 124, 196, 133, + 224, 130, 219, 68, 197, 33, 253, 222, 73, 248, 63, 188, 135, 119, 92, 246, 28, 13, 66, 148, 162, 255, 27, 222, + 223, 22, 146, 203, 117, 246, 194, 159, 70, 75, 103, 63, 48, 245, 87, 73, 18, 223, 180, 213, 218, 108, 144, 145, 9, + 66, 114, 48, 76, 170, 49, 162, 230, 48, 38, 11, 19, 129, 61, 151, 110, 255, 255, 255, 216, 102, 159, 27, 133, 231, + 16, 43, 220, 124, 101, 50, 159, 74, 86, 235, 193, 60, 41, 52, 100, 219, 164, 104, 128, 72, 210, 251, 93, 135, 241, + 141, 137, 143, 191, 75, 44, 144, 242, 130, 233, 52, 148, 56, 135, 218, 160, 27, 159, 126, 153, 151, 25, 196, 177, + 174, 76, 155, 145, 8, 242, 125, 212, 77, 194, 82, 106, 10, 207, 27, 59, 248, 75, 46, 160, 245, 244, 251, 66, 165, + 93, 65, 135, 255, 27, 58, 10, 178, 190, 68, 16, 133, 12, 255, 255, 75, 146, 68, 103, 123, 212, 168, 248, 59, 52, + 238, 104, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 7, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3313369524500015564" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d847fb7b27" + }, + { + "_tag": "ByteArray", + "bytearray": "96431c" + }, + { + "_tag": "ByteArray", + "bytearray": "0c6dc63bcaa4c24c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2500080101176658169" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2dfb74070d6da9cc9f45d847fb7b274396431c480c6dc63bcaa4c24c1b22b2119b24a848f9ffff", + "cborBytes": [ + 191, 27, 45, 251, 116, 7, 13, 109, 169, 204, 159, 69, 216, 71, 251, 123, 39, 67, 150, 67, 28, 72, 12, 109, 198, + 59, 202, 164, 194, 76, 27, 34, 178, 17, 155, 36, 168, 72, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 8, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [] + }, + "cborHex": "d87b80", + "cborBytes": [216, 123, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 9, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [] + }, + "cborHex": "d87f80", + "cborBytes": [216, 127, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 10, + "sample": { + "_tag": "ByteArray", + "bytearray": "25b65ba865dcdd6f" + }, + "cborHex": "4825b65ba865dcdd6f", + "cborBytes": [72, 37, 182, 91, 168, 101, 220, 221, 111], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 11, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17591479689454286119" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7ab400" + } + ] + } + ] + }, + "cborHex": "d905059fd8669f1bf4217d92eb6bf5279f80437ab400ffffff", + "cborBytes": [ + 217, 5, 5, 159, 216, 102, 159, 27, 244, 33, 125, 146, 235, 107, 245, 39, 159, 128, 67, 122, 180, 0, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 12, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "cborHex": "14", + "cborBytes": [20], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 13, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3dc4f80a" + } + ] + }, + "cborHex": "9f443dc4f80aff", + "cborBytes": [159, 68, 61, 196, 248, 10, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 14, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6a36c6e4cdb4c2a95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7932f7ecd578a320250f342e" + } + } + ] + }, + "cborHex": "bf49d6a36c6e4cdb4c2a954c7932f7ecd578a320250f342eff", + "cborBytes": [ + 191, 73, 214, 163, 108, 110, 76, 219, 76, 42, 149, 76, 121, 50, 247, 236, 213, 120, 163, 32, 37, 15, 52, 46, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 15, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4234493878640528083" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2902650950843659354" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "872c50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9dc7b79d35fb811de56258" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e4cf86be0dd11abc8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ceed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15074735224024962436" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff4d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1699475817646806567" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10040832879384818427" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd0a8e8a4cfcff4e9cac1e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13835915429988253453" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "496deb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de0b4e1e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0881cdf16e8fbdc5699cefe3" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4445532104565119238" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d098" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14765708822931073690" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11297380144163921445" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1b036eff165" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "178bbbccef41b6a3" + } + } + ] + } + ] + }, + "cborHex": "9f1b3ac3f1bf4fef4ad3bf41061b284849a92ffc745a43872c5041e94b9dc7b79d35fb811de56258498e4cf86be0dd11abc842ceed1bd13437d11f13958442ff4d1b1795c0407f345627ffbf1b8b58344e20cb72fb4bcd0a8e8a4cfcff4e9cac1e1bc0030bc71acbbf0d43496deb44de0b4e1e4c0881cdf16e8fbdc5699cefe3ffbf1b3db1b3e54a32d90642d0981bccea55f13fa86a9a1b9cc85b6291711e25418946f1b036eff16541b648178bbbccef41b6a3ffff", + "cborBytes": [ + 159, 27, 58, 195, 241, 191, 79, 239, 74, 211, 191, 65, 6, 27, 40, 72, 73, 169, 47, 252, 116, 90, 67, 135, 44, 80, + 65, 233, 75, 157, 199, 183, 157, 53, 251, 129, 29, 229, 98, 88, 73, 142, 76, 248, 107, 224, 221, 17, 171, 200, 66, + 206, 237, 27, 209, 52, 55, 209, 31, 19, 149, 132, 66, 255, 77, 27, 23, 149, 192, 64, 127, 52, 86, 39, 255, 191, + 27, 139, 88, 52, 78, 32, 203, 114, 251, 75, 205, 10, 142, 138, 76, 252, 255, 78, 156, 172, 30, 27, 192, 3, 11, + 199, 26, 203, 191, 13, 67, 73, 109, 235, 68, 222, 11, 78, 30, 76, 8, 129, 205, 241, 110, 143, 189, 197, 105, 156, + 239, 227, 255, 191, 27, 61, 177, 179, 229, 74, 50, 217, 6, 66, 208, 152, 27, 204, 234, 85, 241, 63, 168, 106, 154, + 27, 156, 200, 91, 98, 145, 113, 30, 37, 65, 137, 70, 241, 176, 54, 239, 241, 101, 65, 182, 72, 23, 139, 187, 204, + 239, 65, 182, 163, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 16, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06427a1eae28abc134" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16529030838073858791" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11981807565016027122" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9498248921609443144" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6663141786183923774" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10562133190710926827" + } + } + ] + } + } + ] + }, + "cborHex": "bf4906427a1eae28abc134d8669f1be562e9f900de9ae79f1ba647ee7f7fde4ff21b83d08f1200c497481b5c783c26d58df83e1b92943c2d26b01debffffff", + "cborBytes": [ + 191, 73, 6, 66, 122, 30, 174, 40, 171, 193, 52, 216, 102, 159, 27, 229, 98, 233, 249, 0, 222, 154, 231, 159, 27, + 166, 71, 238, 127, 127, 222, 79, 242, 27, 131, 208, 143, 18, 0, 196, 151, 72, 27, 92, 120, 60, 38, 213, 141, 248, + 62, 27, 146, 148, 60, 45, 38, 176, 29, 235, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 17, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5494706768457093640" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2161416985907114413" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14928889694450079910" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10375660905659839445" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1657162187514706324" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14421335880440378541" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5747946896f5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2529873959582220962" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "532519039231585844" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15986635852733274775" + } + } + ] + }, + "cborHex": "d87e9f9fd8669f1b4c411eb196d1d2089f1b1dfee54c087d31ad1bcf2e121498afd8a6ffff9f1b8ffdc09effc333d51b16ff6c3ac205f994ffd8669f1bc822e093643e74ad80ff465747946896f51b231beaf65f68c2a2ff1b0763e33ea987ee341bdddbf09b73b0da97ff", + "cborBytes": [ + 216, 126, 159, 159, 216, 102, 159, 27, 76, 65, 30, 177, 150, 209, 210, 8, 159, 27, 29, 254, 229, 76, 8, 125, 49, + 173, 27, 207, 46, 18, 20, 152, 175, 216, 166, 255, 255, 159, 27, 143, 253, 192, 158, 255, 195, 51, 213, 27, 22, + 255, 108, 58, 194, 5, 249, 148, 255, 216, 102, 159, 27, 200, 34, 224, 147, 100, 62, 116, 173, 128, 255, 70, 87, + 71, 148, 104, 150, 245, 27, 35, 27, 234, 246, 95, 104, 194, 162, 255, 27, 7, 99, 227, 62, 169, 135, 238, 52, 27, + 221, 219, 240, 155, 115, 176, 218, 151, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 18, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4215626244879597254" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6684a52803004f7a6fa028" + }, + { + "_tag": "ByteArray", + "bytearray": "b8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2207816936654607841" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fe1a1503ecc4808b3c25e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7727220380062978300" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17071610548237702037" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8943955802593745070" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9177372533395307255" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17367580953376626608" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18096160312565344863" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5144588151156044635" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3a80e9bbffdcbec69f4b6684a52803004f7a6fa02841b8bf1b1ea3bdce6e6395e14b1fe1a1503ecc4808b3c25e1b6b3c99febed010fc1becea8b58278513951b7c1f506a5464d8ae1b7f5c93b200743af71bf1060adc15da97b042b6d31bfb2279ed3cfaaa5f1b47653faa9156f35bffffff", + "cborBytes": [ + 216, 102, 159, 27, 58, 128, 233, 187, 255, 220, 190, 198, 159, 75, 102, 132, 165, 40, 3, 0, 79, 122, 111, 160, 40, + 65, 184, 191, 27, 30, 163, 189, 206, 110, 99, 149, 225, 75, 31, 225, 161, 80, 62, 204, 72, 8, 179, 194, 94, 27, + 107, 60, 153, 254, 190, 208, 16, 252, 27, 236, 234, 139, 88, 39, 133, 19, 149, 27, 124, 31, 80, 106, 84, 100, 216, + 174, 27, 127, 92, 147, 178, 0, 116, 58, 247, 27, 241, 6, 10, 220, 21, 218, 151, 176, 66, 182, 211, 27, 251, 34, + 121, 237, 60, 250, 170, 95, 27, 71, 101, 63, 170, 145, 86, 243, 91, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 19, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5289842321426263311" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b89a0e6e2dd3e11caa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13507746464896431430" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6f854b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fac65c9528c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6fa84061c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1349620079920123645" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03ae363d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18038013735836946776" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d234f72ad9e099b2a771c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aecfed0f671de4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7df2fedcc128305dc13122" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3172705963500450053" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15836774527393856647" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69a7e476" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1178669737526004366" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4323437856216463850" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5fc09d84b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13287899998297425722" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c79fac725" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b49694b908670ad0f9fbf49b89a0e6e2dd3e11caa1bbb7527d7bc30b54644d6f854b4465fac65c9528c45d6fa84061c1b12bad04fe55f8efdffbf4403ae363d1bfa53e5ec5a2d91584b0d234f72ad9e099b2a771c47aecfed0f671de441314b7df2fedcc128305dc13122ffbf1b2c07b7439b3531051bdbc786869d43fc874469a7e4761b105b79e1a4bd8a8effbf1b3bffefd2dc4239ea45b5fc09d84b1bb8681aa5696e873a451c79fac725ffffff", + "cborBytes": [ + 216, 102, 159, 27, 73, 105, 75, 144, 134, 112, 173, 15, 159, 191, 73, 184, 154, 14, 110, 45, 211, 225, 28, 170, + 27, 187, 117, 39, 215, 188, 48, 181, 70, 68, 214, 248, 84, 180, 70, 95, 172, 101, 201, 82, 140, 69, 214, 250, 132, + 6, 28, 27, 18, 186, 208, 79, 229, 95, 142, 253, 255, 191, 68, 3, 174, 54, 61, 27, 250, 83, 229, 236, 90, 45, 145, + 88, 75, 13, 35, 79, 114, 173, 158, 9, 155, 42, 119, 28, 71, 174, 207, 237, 15, 103, 29, 228, 65, 49, 75, 125, 242, + 254, 220, 193, 40, 48, 93, 193, 49, 34, 255, 191, 27, 44, 7, 183, 67, 155, 53, 49, 5, 27, 219, 199, 134, 134, 157, + 67, 252, 135, 68, 105, 167, 228, 118, 27, 16, 91, 121, 225, 164, 189, 138, 142, 255, 191, 27, 59, 255, 239, 210, + 220, 66, 57, 234, 69, 181, 252, 9, 216, 75, 27, 184, 104, 26, 165, 105, 110, 135, 58, 69, 28, 121, 250, 199, 37, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 20, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16110953409965544140" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "77d22614c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8698500665900753062" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b56e08d6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + } + ] + }, + "cborHex": "bf1bdf959ac451dd52ccbf4577d22614c71b78b74844dd8360a6ff454b56e08d6b41f9ff", + "cborBytes": [ + 191, 27, 223, 149, 154, 196, 81, 221, 82, 204, 191, 69, 119, 210, 38, 20, 199, 27, 120, 183, 72, 68, 221, 131, 96, + 166, 255, 69, 75, 86, 224, 141, 107, 65, 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 21, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1211187341166024848" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3571261362730092263" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2386799509042541937" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7369108401584538897" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf800fff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13458779384819887616" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14737877929150538017" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14522593214820348416" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18338602793243903304" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5245069016823786137" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1618543482616369666" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16984198267229931158" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2930072262106919864" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6021852426158404767" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13831668039282849609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5061e96415" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16785549403204374102" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7609660362252287461" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16921415671018567706" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18220959279232038310" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e352" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11641559523742506800" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "754413478606752880" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12268122307735355972" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12892972857024547827" + } + } + } + ] + }, + "cborHex": "bf1b10cf00783aa698901b318fab49bd9ac6e71b211f9d81f68eb571bf1b6644550c4bcb051144bf800fff1bbac7308af68a2e001bcc8775e4561661211bc98a9d95badd72001bfe7fce14104a0548ff1b48ca3a7b32306a99bf1b167638b8d6df52021bebb3fe56810b86961b28a9b532bd1bb3b81b5391eae05efef49f1bbff3f4cc6493f749455061e964151be8f2403fa1c44e561b699af1c8216afde51bead4f1e637ca381a419d1bfcddd9ecf97bb5a642e352ff1ba18f20b50c3cdf301b0a78370fce1f4c701baa41203d559c82441bb2ed0a80e9b38bf3ff", + "cborBytes": [ + 191, 27, 16, 207, 0, 120, 58, 166, 152, 144, 27, 49, 143, 171, 73, 189, 154, 198, 231, 27, 33, 31, 157, 129, 246, + 142, 181, 113, 191, 27, 102, 68, 85, 12, 75, 203, 5, 17, 68, 191, 128, 15, 255, 27, 186, 199, 48, 138, 246, 138, + 46, 0, 27, 204, 135, 117, 228, 86, 22, 97, 33, 27, 201, 138, 157, 149, 186, 221, 114, 0, 27, 254, 127, 206, 20, + 16, 74, 5, 72, 255, 27, 72, 202, 58, 123, 50, 48, 106, 153, 191, 27, 22, 118, 56, 184, 214, 223, 82, 2, 27, 235, + 179, 254, 86, 129, 11, 134, 150, 27, 40, 169, 181, 50, 189, 27, 179, 184, 27, 83, 145, 234, 224, 94, 254, 244, + 159, 27, 191, 243, 244, 204, 100, 147, 247, 73, 69, 80, 97, 233, 100, 21, 27, 232, 242, 64, 63, 161, 196, 78, 86, + 27, 105, 154, 241, 200, 33, 106, 253, 229, 27, 234, 212, 241, 230, 55, 202, 56, 26, 65, 157, 27, 252, 221, 217, + 236, 249, 123, 181, 166, 66, 227, 82, 255, 27, 161, 143, 32, 181, 12, 60, 223, 48, 27, 10, 120, 55, 15, 206, 31, + 76, 112, 27, 170, 65, 32, 61, 85, 156, 130, 68, 27, 178, 237, 10, 128, 233, 179, 139, 243, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 22, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6853630687295543922" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c83d8fef458c1fba66213" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3323320136092914365" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "989260" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2112782625706654014" + } + } + } + ] + }, + "cborHex": "bf1b5f1cfccc49f79a72a04b8c83d8fef458c1fba662131b2e1ece0e5ab892bd439892601b1d521c9aa4dcb93eff", + "cborBytes": [ + 191, 27, 95, 28, 252, 204, 73, 247, 154, 114, 160, 75, 140, 131, 216, 254, 244, 88, 193, 251, 166, 98, 19, 27, 46, + 30, 206, 14, 90, 184, 146, 189, 67, 152, 146, 96, 27, 29, 82, 28, 154, 164, 220, 185, 62, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 23, + "sample": { + "_tag": "ByteArray", + "bytearray": "63e527" + }, + "cborHex": "4363e527", + "cborBytes": [67, 99, 229, 39], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 24, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0406f100" + }, + { + "_tag": "ByteArray", + "bytearray": "fe7885" + } + ] + }, + "cborHex": "9f440406f10043fe7885ff", + "cborBytes": [159, 68, 4, 6, 241, 0, 67, 254, 120, 133, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 25, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "183632a96948" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb84f9417725b655" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3725770211593292354" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "466419bf04e46af271dce903" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "910c7f3c1d116854" + } + ] + } + } + ] + }, + "cborHex": "bf46183632a9694848cb84f9417725b65541349f1b33b4984478c00a42ff4c466419bf04e46af271dce9039f48910c7f3c1d116854ffff", + "cborBytes": [ + 191, 70, 24, 54, 50, 169, 105, 72, 72, 203, 132, 249, 65, 119, 37, 182, 85, 65, 52, 159, 27, 51, 180, 152, 68, + 120, 192, 10, 66, 255, 76, 70, 100, 25, 191, 4, 228, 106, 242, 113, 220, 233, 3, 159, 72, 145, 12, 127, 60, 29, + 17, 104, 84, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 26, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "cborHex": "11", + "cborBytes": [17], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 27, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9631645348510027567" + } + }, + "cborHex": "1b85aa7a69f07bcf2f", + "cborBytes": [27, 133, 170, 122, 105, 240, 123, 207, 47], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 28, + "sample": { + "_tag": "ByteArray", + "bytearray": "27de7cfbe20e" + }, + "cborHex": "4627de7cfbe20e", + "cborBytes": [70, 39, 222, 124, 251, 226, 14], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 29, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1529094418300521268" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16926628415815194295" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5679" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8273020305903837243" + } + } + ] + } + ] + }, + "cborHex": "9f9f1b15386f459ed5cb341beae776dcf1b296b74256791b72cfac22c8fde03bffff", + "cborBytes": [ + 159, 159, 27, 21, 56, 111, 69, 158, 213, 203, 52, 27, 234, 231, 118, 220, 241, 178, 150, 183, 66, 86, 121, 27, + 114, 207, 172, 34, 200, 253, 224, 59, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 30, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "404445b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9376305413103367001" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bf0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10944979020360770866" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a50206ff6b0600fd0704" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17452925993585209464" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "778280933849011503" + } + } + ] + } + } + ] + }, + "cborHex": "bf44404445b01b821f54186d993359425bf09f1b97e4606e16b4e5324aa50206ff6b0600fd0704ff4196d8669f1bf2353fb8bad3f0789f1b0acd0262c587952fffffff", + "cborBytes": [ + 191, 68, 64, 68, 69, 176, 27, 130, 31, 84, 24, 109, 153, 51, 89, 66, 91, 240, 159, 27, 151, 228, 96, 110, 22, 180, + 229, 50, 74, 165, 2, 6, 255, 107, 6, 0, 253, 7, 4, 255, 65, 150, 216, 102, 159, 27, 242, 53, 63, 184, 186, 211, + 240, 120, 159, 27, 10, 205, 2, 98, 197, 135, 149, 47, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 31, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "040292" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16571600742297399115" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + }, + "cborHex": "9fbf0303060613430402921bffffffffffffffff1be5fa2713343c6f4bff0a09ff", + "cborBytes": [ + 159, 191, 3, 3, 6, 6, 19, 67, 4, 2, 146, 27, 255, 255, 255, 255, 255, 255, 255, 255, 27, 229, 250, 39, 19, 52, 60, + 111, 75, 255, 10, 9, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 32, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "cborHex": "05", + "cborBytes": [5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 33, + "sample": { + "_tag": "ByteArray", + "bytearray": "06e8" + }, + "cborHex": "4206e8", + "cborBytes": [66, 6, 232], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 34, + "sample": { + "_tag": "List", + "list": [] + }, + "cborHex": "80", + "cborBytes": [128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 35, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "383c7ef6ab363902d8f4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5842168668729845073" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e88534a467d508d91" + }, + { + "_tag": "ByteArray", + "bytearray": "f413d1b03c" + }, + { + "_tag": "ByteArray", + "bytearray": "0726" + } + ] + } + } + ] + }, + "cborHex": "bf134a383c7ef6ab363902d8f41bfffffffffffffff89f1b51138d73798f2551496e88534a467d508d9145f413d1b03c420726ffff", + "cborBytes": [ + 191, 19, 74, 56, 60, 126, 246, 171, 54, 57, 2, 216, 244, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 27, 81, + 19, 141, 115, 121, 143, 37, 81, 73, 110, 136, 83, 74, 70, 125, 80, 141, 145, 69, 244, 19, 209, 176, 60, 66, 7, 38, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 36, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b2c6df3f370e518" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "989843462408508741" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81b5004c604a74520c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3caa" + } + } + ] + }, + "cborHex": "bf483b2c6df3f370e5181b0dbca162781a15454981b5004c604a74520c423caaff", + "cborBytes": [ + 191, 72, 59, 44, 109, 243, 243, 112, 229, 24, 27, 13, 188, 161, 98, 120, 26, 21, 69, 73, 129, 181, 0, 76, 96, 74, + 116, 82, 12, 66, 60, 170, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 37, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01f4d5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7894121218560933284" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ddf0a58bc5336ee133" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "70eef6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e62f1f1c8804222e2333344c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7427f35c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bb49f21b253bc18b7ef" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1573158076036141107" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd233a3e3c32" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2055506574682773574" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "91697237822001086" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7560788879801833650" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d7746b2bc0d610be2c37397" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11715163784393659812" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d7a40a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12743445137825914975" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9942941727621937030" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16377035780091467359" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6830429926691379041" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5073309921818295711" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4646564060165503787" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11164080081558475057" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1d16be300ac30e8c1b814e98" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5614166112836005134" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905089f4301f4d5d8669f1b6d8d8d6c6632bda49f49ddf0a58bc5336ee133bf4370eef64ce62f1f1c8804222e2333344c45e7427f35c54a7bb49f21b253bc18b7efffbf1b15d4faef69abd03346cd233a3e3c321b1c86a056d17258461b0145c626e743cfbe1b68ed516d6a4fd8b24c3d7746b2bc0d610be2c373971ba2949f646e4e15a4449d7a40a41bb0d9cfd5cecae05f1b89fc6cd2415077861be346eb45d236d65f1b5eca8fd443a31761ffd8669f1b4668047e8d71bd9f9f1b407be964e842fb2b1b9aeec7af314e91314c1d16be300ac30e8c1b814e981b4de98655a1a02d0effffffffff", + "cborBytes": [ + 217, 5, 8, 159, 67, 1, 244, 213, 216, 102, 159, 27, 109, 141, 141, 108, 102, 50, 189, 164, 159, 73, 221, 240, 165, + 139, 197, 51, 110, 225, 51, 191, 67, 112, 238, 246, 76, 230, 47, 31, 28, 136, 4, 34, 46, 35, 51, 52, 76, 69, 231, + 66, 127, 53, 197, 74, 123, 180, 159, 33, 178, 83, 188, 24, 183, 239, 255, 191, 27, 21, 212, 250, 239, 105, 171, + 208, 51, 70, 205, 35, 58, 62, 60, 50, 27, 28, 134, 160, 86, 209, 114, 88, 70, 27, 1, 69, 198, 38, 231, 67, 207, + 190, 27, 104, 237, 81, 109, 106, 79, 216, 178, 76, 61, 119, 70, 178, 188, 13, 97, 11, 226, 195, 115, 151, 27, 162, + 148, 159, 100, 110, 78, 21, 164, 68, 157, 122, 64, 164, 27, 176, 217, 207, 213, 206, 202, 224, 95, 27, 137, 252, + 108, 210, 65, 80, 119, 134, 27, 227, 70, 235, 69, 210, 54, 214, 95, 27, 94, 202, 143, 212, 67, 163, 23, 97, 255, + 216, 102, 159, 27, 70, 104, 4, 126, 141, 113, 189, 159, 159, 27, 64, 123, 233, 100, 232, 66, 251, 43, 27, 154, + 238, 199, 175, 49, 78, 145, 49, 76, 29, 22, 190, 48, 10, 195, 14, 140, 27, 129, 78, 152, 27, 77, 233, 134, 85, + 161, 160, 45, 14, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 38, + "sample": { + "_tag": "ByteArray", + "bytearray": "8cf0a9d83592f75ec915" + }, + "cborHex": "4a8cf0a9d83592f75ec915", + "cborBytes": [74, 140, 240, 169, 216, 53, 146, 247, 94, 201, 21], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 39, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "792d2094" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10186702452024045669" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d9807f9f857197eb8b75b0" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "960137451461df8c180cab26" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1277080462240546333" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "76b75a0274" + } + ] + } + } + ] + }, + "cborHex": "bf44792d2094d8669f1b8d5e6fe89d7e70659f4bd9807f9f857197eb8b75b0ffff4c960137451461df8c180cab26d905069f1b11b919ea05707e1d094576b75a0274ffff", + "cborBytes": [ + 191, 68, 121, 45, 32, 148, 216, 102, 159, 27, 141, 94, 111, 232, 157, 126, 112, 101, 159, 75, 217, 128, 127, 159, + 133, 113, 151, 235, 139, 117, 176, 255, 255, 76, 150, 1, 55, 69, 20, 97, 223, 140, 24, 12, 171, 38, 217, 5, 6, + 159, 27, 17, 185, 25, 234, 5, 112, 126, 29, 9, 69, 118, 183, 90, 2, 116, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 40, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff480ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 41, + "sample": { + "_tag": "ByteArray", + "bytearray": "257f65498c" + }, + "cborHex": "45257f65498c", + "cborBytes": [69, 37, 127, 101, 73, 140], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 42, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "cborHex": "1bfffffffffffffff5", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 245], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 43, + "sample": { + "_tag": "ByteArray", + "bytearray": "03ff" + }, + "cborHex": "4203ff", + "cborBytes": [66, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 44, + "sample": { + "_tag": "ByteArray", + "bytearray": "a58b59eaf922f94dde" + }, + "cborHex": "49a58b59eaf922f94dde", + "cborBytes": [73, 165, 139, 89, 234, 249, 34, 249, 77, 222], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 45, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9789652734248720624" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10859380862805757511" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3505302187053676532" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17048629808811384430" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2740361915244847955" + } + }, + { + "_tag": "ByteArray", + "bytearray": "20" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b87dbd54b435398f09f80d8669f1b96b4455bf8364e479f9f1b30a555c469bbf7f41bec98e67bcd569e6effffff1b2607b8a4922da353412080ffff", + "cborBytes": [ + 216, 102, 159, 27, 135, 219, 213, 75, 67, 83, 152, 240, 159, 128, 216, 102, 159, 27, 150, 180, 69, 91, 248, 54, + 78, 71, 159, 159, 27, 48, 165, 85, 196, 105, 187, 247, 244, 27, 236, 152, 230, 123, 205, 86, 158, 110, 255, 255, + 255, 27, 38, 7, 184, 164, 146, 45, 163, 83, 65, 32, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 46, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1895691099345554441" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7635000589530857565" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9485496754088914289" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14083059469749238391" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2296095476724477351" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12918209473615794473" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6460098681528d4b69592bf8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17857285343034034927" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17018031111267098947" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8ebde5055c" + } + ] + }, + "cborHex": "d8669f1b1a4ed902d45c8c099fa0d8669f1b69f4f8958ee2805d9fd8669f1b83a3410aa1972d719f41b01bc37113f8f51aba771b1fdd5eabbc8b2da71bb346b31298f491294c6460098681528d4b69592bf8ffff1bf7d1d26854554aefffff1bec2c31215b9f2143458ebde5055cffff", + "cborBytes": [ + 216, 102, 159, 27, 26, 78, 217, 2, 212, 92, 140, 9, 159, 160, 216, 102, 159, 27, 105, 244, 248, 149, 142, 226, + 128, 93, 159, 216, 102, 159, 27, 131, 163, 65, 10, 161, 151, 45, 113, 159, 65, 176, 27, 195, 113, 19, 248, 245, + 26, 186, 119, 27, 31, 221, 94, 171, 188, 139, 45, 167, 27, 179, 70, 179, 18, 152, 244, 145, 41, 76, 100, 96, 9, + 134, 129, 82, 141, 75, 105, 89, 43, 248, 255, 255, 27, 247, 209, 210, 104, 84, 85, 74, 239, 255, 255, 27, 236, 44, + 49, 33, 91, 159, 33, 67, 69, 142, 189, 229, 5, 92, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 47, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14648175066926484047" + } + }, + "cborHex": "1bcb48c59d2fe30a4f", + "cborBytes": [27, 203, 72, 197, 157, 47, 227, 10, 79], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 48, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92803f9a3bfc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41ab32eb14e8a14b80" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b9bd3eef5705c62248cc2" + } + } + ] + }, + "cborHex": "bf1bffffffffffffffee4692803f9a3bfc4941ab32eb14e8a14b804b4b9bd3eef5705c62248cc2ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 238, 70, 146, 128, 63, 154, 59, 252, 73, 65, 171, 50, 235, 20, 232, + 161, 75, 128, 75, 75, 155, 211, 238, 245, 112, 92, 98, 36, 140, 194, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 49, + "sample": { + "_tag": "ByteArray", + "bytearray": "7a" + }, + "cborHex": "417a", + "cborBytes": [65, 122], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 50, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1067425994811532374" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2491062781019047695" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8078731603616450270" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9933129625481689352" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8116971742160963351" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9008835357820001788" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ab" + }, + { + "_tag": "ByteArray", + "bytearray": "008bc135" + }, + { + "_tag": "ByteArray", + "bytearray": "b25ad6a737da" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15265296889279124057" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01f887" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e327c821dd321bc3dd1ab86" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a8b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3133651978934955020" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46878d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4cec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e41d01fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ccd2d601b04f2662e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f86f359202695a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13041335592396731162" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffe658fb2b835a24" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2222147285237210022" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0ed042496cc264561b22920866afd6470f1b701d6b972d47c6de1b89d990c432beb9081b70a546cb3f6347179f1b7d05d006eed71dfc41ab44008bc13546b25ad6a737daff1bd3d93aa44c5b9259bf4301f8874c8e327c821dd321bc3dd1ab86423a8b1b2b7cf7df3e1e2c0c4346878d424cec44e41d01fb49ccd2d601b04f2662e547f86f359202695a1bb4fc21a01577331a48ffe658fb2b835a241b1ed6a72eb7299ba6ffff", + "cborBytes": [ + 191, 27, 14, 208, 66, 73, 108, 194, 100, 86, 27, 34, 146, 8, 102, 175, 214, 71, 15, 27, 112, 29, 107, 151, 45, 71, + 198, 222, 27, 137, 217, 144, 196, 50, 190, 185, 8, 27, 112, 165, 70, 203, 63, 99, 71, 23, 159, 27, 125, 5, 208, 6, + 238, 215, 29, 252, 65, 171, 68, 0, 139, 193, 53, 70, 178, 90, 214, 167, 55, 218, 255, 27, 211, 217, 58, 164, 76, + 91, 146, 89, 191, 67, 1, 248, 135, 76, 142, 50, 124, 130, 29, 211, 33, 188, 61, 209, 171, 134, 66, 58, 139, 27, + 43, 124, 247, 223, 62, 30, 44, 12, 67, 70, 135, 141, 66, 76, 236, 68, 228, 29, 1, 251, 73, 204, 210, 214, 1, 176, + 79, 38, 98, 229, 71, 248, 111, 53, 146, 2, 105, 90, 27, 180, 252, 33, 160, 21, 119, 51, 26, 72, 255, 230, 88, 251, + 43, 131, 90, 36, 27, 30, 214, 167, 46, 183, 41, 155, 166, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 51, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "430984313596466680" + } + }, + "cborHex": "1b05fb29f323aed5f8", + "cborBytes": [27, 5, 251, 41, 243, 35, 174, 213, 248], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 52, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d3b883fe8fccf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f26fb0bf420" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3ce2c6b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8376b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13828067952678661088" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12634621116514397228" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13270397168388412050" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13718750886797162897" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8e7" + } + } + ] + }, + "cborHex": "bf041bffffffffffffffeb09477d3b883fe8fccf11bf469f26fb0bf42044d3ce2c6b43c8376b1bbfe72a89e95febe0ff1baf5730f6e17d6c2c9f1bb829ebea42241292ff1bbe62cb3f199eb99142b8e7ff", + "cborBytes": [ + 191, 4, 27, 255, 255, 255, 255, 255, 255, 255, 235, 9, 71, 125, 59, 136, 63, 232, 252, 207, 17, 191, 70, 159, 38, + 251, 11, 244, 32, 68, 211, 206, 44, 107, 67, 200, 55, 107, 27, 191, 231, 42, 137, 233, 95, 235, 224, 255, 27, 175, + 87, 48, 246, 225, 125, 108, 44, 159, 27, 184, 41, 235, 234, 66, 36, 18, 146, 255, 27, 190, 98, 203, 63, 25, 158, + 185, 145, 66, 184, 231, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 53, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16045851438355394812" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0b18dca78167f330" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5967175024839503489" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14407912101252052220" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18054645631464069186" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14081095772484061444" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c2b1a18757c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17327377051550392395" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "191648" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15967842357228829241" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3790834054624209594" + } + } + ] + }, + "cborHex": "9f9fd8669f1bdeae50de5ddd30fc9f480b18dca78167f3301b52cfaa11d4242e81ffff1bc7f32fb83e2e34fcd8669f1bfa8efc8b50f958429f1bc36a1a000f2ac904464c2b1a18757c1bf077359fbeeaa04b41afffff431916481bdd992c05cc0f7a39ff1b349bbf7cec546abaff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 222, 174, 80, 222, 93, 221, 48, 252, 159, 72, 11, 24, 220, 167, 129, 103, 243, 48, + 27, 82, 207, 170, 17, 212, 36, 46, 129, 255, 255, 27, 199, 243, 47, 184, 62, 46, 52, 252, 216, 102, 159, 27, 250, + 142, 252, 139, 80, 249, 88, 66, 159, 27, 195, 106, 26, 0, 15, 42, 201, 4, 70, 76, 43, 26, 24, 117, 124, 27, 240, + 119, 53, 159, 190, 234, 160, 75, 65, 175, 255, 255, 67, 25, 22, 72, 27, 221, 153, 44, 5, 204, 15, 122, 57, 255, + 27, 52, 155, 191, 124, 236, 84, 106, 186, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 54, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4e5c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18418478720268273125" + } + }, + { + "_tag": "ByteArray", + "bytearray": "88fe89955c2e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7738606152804764387" + } + }, + { + "_tag": "ByteArray", + "bytearray": "040607fd85f6fd02" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4181555931804917191" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1363739381867926523" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c09b4905ebcd32b125a22b27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6964378459101437043" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7832593664973284995" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3552471543151919602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1fea1f4b9de95f" + } + ] + } + ] + } + ] + }, + "cborHex": "9f424e5c1bff9b94cf90ae85e54688fe89955c2ed8669f1bfffffffffffffffe9fd87c9f416a1b6b650d4b8a948ae348040607fd85f6fd02ffffffd9050a9f9f1b3a07def713a8ddc7ff9f1b12ecf9be0e72d3fb4cc09b4905ebcd32b125a22b271b60a6714f481f9c731b6cb2f6707eb52683ffd8669f1b314cea0bf44101f29f471fea1f4b9de95fffffffff", + "cborBytes": [ + 159, 66, 78, 92, 27, 255, 155, 148, 207, 144, 174, 133, 229, 70, 136, 254, 137, 149, 92, 46, 216, 102, 159, 27, + 255, 255, 255, 255, 255, 255, 255, 254, 159, 216, 124, 159, 65, 106, 27, 107, 101, 13, 75, 138, 148, 138, 227, 72, + 4, 6, 7, 253, 133, 246, 253, 2, 255, 255, 255, 217, 5, 10, 159, 159, 27, 58, 7, 222, 247, 19, 168, 221, 199, 255, + 159, 27, 18, 236, 249, 190, 14, 114, 211, 251, 76, 192, 155, 73, 5, 235, 205, 50, 177, 37, 162, 43, 39, 27, 96, + 166, 113, 79, 72, 31, 156, 115, 27, 108, 178, 246, 112, 126, 181, 38, 131, 255, 216, 102, 159, 27, 49, 76, 234, + 11, 244, 65, 1, 242, 159, 71, 31, 234, 31, 75, 157, 233, 95, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 55, + "sample": { + "_tag": "ByteArray", + "bytearray": "2c97b3bb9b89651d8aaf" + }, + "cborHex": "4a2c97b3bb9b89651d8aaf", + "cborBytes": [74, 44, 151, 179, 187, 155, 137, 101, 29, 138, 175], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 56, + "sample": { + "_tag": "ByteArray", + "bytearray": "ca77" + }, + "cborHex": "42ca77", + "cborBytes": [66, 202, 119], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 57, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7743977492328203129" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3177931589050520940" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c70bf27915e2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2843134789699433114" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74368b8a0e92c0548847af27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14746476970791025592" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12614177286077096518" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1005849965963727249" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14242872511531498349" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5137442258336296638" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17201465798229283316" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7680047444328484907" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c46c0e0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12020086988138306255" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2782831881884112571" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12036653123629560615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f20996e3a96812e600fdd4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16553352933272361074" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9a9ab" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5698a4af2945de98" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6beea9bba1" + } + } + ] + }, + "cborHex": "bf1b6b78227ffad7c379d8669f1b2c1a47f15dd9556c9f46c70bf27915e21b2774d8071496f29a4c74368b8a0e92c0548847af271bcca602acbc7a3bb8ffff1baf0e8f68ae6d2246bf1b0df57f36fe9b51911bc5a8d9165702bb6d1b474bdc83be372ebe1beeb7e201977cd1f41b6a950275c158902b441c46c0e01ba6cfed6e39475acf1b269e9ada3d5596bb1ba70ac83e368933274bf20996e3a96812e600fdd41be5b952ca155e987243c9a9abff485698a4af2945de98456beea9bba1ff", + "cborBytes": [ + 191, 27, 107, 120, 34, 127, 250, 215, 195, 121, 216, 102, 159, 27, 44, 26, 71, 241, 93, 217, 85, 108, 159, 70, + 199, 11, 242, 121, 21, 226, 27, 39, 116, 216, 7, 20, 150, 242, 154, 76, 116, 54, 139, 138, 14, 146, 192, 84, 136, + 71, 175, 39, 27, 204, 166, 2, 172, 188, 122, 59, 184, 255, 255, 27, 175, 14, 143, 104, 174, 109, 34, 70, 191, 27, + 13, 245, 127, 54, 254, 155, 81, 145, 27, 197, 168, 217, 22, 87, 2, 187, 109, 27, 71, 75, 220, 131, 190, 55, 46, + 190, 27, 238, 183, 226, 1, 151, 124, 209, 244, 27, 106, 149, 2, 117, 193, 88, 144, 43, 68, 28, 70, 192, 224, 27, + 166, 207, 237, 110, 57, 71, 90, 207, 27, 38, 158, 154, 218, 61, 85, 150, 187, 27, 167, 10, 200, 62, 54, 137, 51, + 39, 75, 242, 9, 150, 227, 169, 104, 18, 230, 0, 253, 212, 27, 229, 185, 82, 202, 21, 94, 152, 114, 67, 201, 169, + 171, 255, 72, 86, 152, 164, 175, 41, 69, 222, 152, 69, 107, 238, 169, 187, 161, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 58, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10980957604457694850" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7659859587916182690" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6805962151418165915" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "757e2e8560d2ea7a" + }, + { + "_tag": "ByteArray", + "bytearray": "7b9e05c113a0ac56c6217c85" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f6d97a257636" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1308954518684230430" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2254719b4561585cc00749" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2505280d880587c5fae628bb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1742276404697278855" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10455282284898497476" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4fca754cfefeae17" + }, + { + "_tag": "ByteArray", + "bytearray": "46ea35efc0512dbc25" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15999556494521159924" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "335be063894c5d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad5a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffb7e2ccb93b30" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16557781706956104598" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16678290829992471188" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d6780e31230b2d" + }, + { + "_tag": "ByteArray", + "bytearray": "32fb10fabd049cc3ada3" + }, + { + "_tag": "ByteArray", + "bytearray": "1d0da9432b31c9bf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12655384061486653770" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10058281371165965417" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f116ead4b2da9f974a74f7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1210294190771931989" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13575219852707301286" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b7023f9afc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14727806288929773434" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8799fd8799fd8669f1b986432c2fb5346829f1b6a4d49b6271d34a2ffffd8669f1b5e73a28466087a9b9f48757e2e8560d2ea7a4c7b9e05c113a0ac56c6217c85ffff9f46f6d97a2576361b122a57331950e31e4b2254719b4561585cc00749ffff9f9f4c2505280d880587c5fae628bb1b182dcf28ba86a9871b91189fd7f9cf33c4484fca754cfefeae174946ea35efc0512dbc25ffbf1bde09d7dccbba50f447335be063894c5d42ad5a41de47ffb7e2ccb93b301be5c90ebc4f946396ffd8669f1be7753124fe5b2a949f47d6780e31230b2d4a32fb10fabd049cc3ada3481d0da9432b31c9bf1bafa0f4c0b90d614affffffd8669f1b8b96319db346bc699f9f4bf116ead4b2da9f974a74f71b10cbd42772ae0b551bbc64de880c7307a645b7023f9afc1bcc63adc9dc6c577affffffff", + "cborBytes": [ + 216, 121, 159, 216, 121, 159, 216, 102, 159, 27, 152, 100, 50, 194, 251, 83, 70, 130, 159, 27, 106, 77, 73, 182, + 39, 29, 52, 162, 255, 255, 216, 102, 159, 27, 94, 115, 162, 132, 102, 8, 122, 155, 159, 72, 117, 126, 46, 133, 96, + 210, 234, 122, 76, 123, 158, 5, 193, 19, 160, 172, 86, 198, 33, 124, 133, 255, 255, 159, 70, 246, 217, 122, 37, + 118, 54, 27, 18, 42, 87, 51, 25, 80, 227, 30, 75, 34, 84, 113, 155, 69, 97, 88, 92, 192, 7, 73, 255, 255, 159, + 159, 76, 37, 5, 40, 13, 136, 5, 135, 197, 250, 230, 40, 187, 27, 24, 45, 207, 40, 186, 134, 169, 135, 27, 145, 24, + 159, 215, 249, 207, 51, 196, 72, 79, 202, 117, 76, 254, 254, 174, 23, 73, 70, 234, 53, 239, 192, 81, 45, 188, 37, + 255, 191, 27, 222, 9, 215, 220, 203, 186, 80, 244, 71, 51, 91, 224, 99, 137, 76, 93, 66, 173, 90, 65, 222, 71, + 255, 183, 226, 204, 185, 59, 48, 27, 229, 201, 14, 188, 79, 148, 99, 150, 255, 216, 102, 159, 27, 231, 117, 49, + 36, 254, 91, 42, 148, 159, 71, 214, 120, 14, 49, 35, 11, 45, 74, 50, 251, 16, 250, 189, 4, 156, 195, 173, 163, 72, + 29, 13, 169, 67, 43, 49, 201, 191, 27, 175, 160, 244, 192, 185, 13, 97, 74, 255, 255, 255, 216, 102, 159, 27, 139, + 150, 49, 157, 179, 70, 188, 105, 159, 159, 75, 241, 22, 234, 212, 178, 218, 159, 151, 74, 116, 247, 27, 16, 203, + 212, 39, 114, 174, 11, 85, 27, 188, 100, 222, 136, 12, 115, 7, 166, 69, 183, 2, 63, 154, 252, 27, 204, 99, 173, + 201, 220, 108, 87, 122, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 59, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1877159931341320736" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c45" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14089139700307922588" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4784860347535541961" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce6dfdc7698cacfd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10200694304452475430" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a88" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13286761568374685517" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12263352969317136670" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15812138449891439993" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c961ab7266b4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18358879159921224373" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6376011713742902003" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15926323734547043497" + } + } + ] + }, + "cborHex": "d905029f1b1a0d03030e323220421c45d8669f1bc386ade8f3b50e9c80ffbf1b42673d2282b546c948ce6dfdc7698cacfd1b8d90256c9f3d7a26424a881bb8640f400a48ff4d1baa302e8d3361391e1bdb700024d513357946c961ab7266b41bfec7d753916d2ab51b587c24df416012f3ff1bdd05ab0e278c94a9ff", + "cborBytes": [ + 217, 5, 2, 159, 27, 26, 13, 3, 3, 14, 50, 50, 32, 66, 28, 69, 216, 102, 159, 27, 195, 134, 173, 232, 243, 181, 14, + 156, 128, 255, 191, 27, 66, 103, 61, 34, 130, 181, 70, 201, 72, 206, 109, 253, 199, 105, 140, 172, 253, 27, 141, + 144, 37, 108, 159, 61, 122, 38, 66, 74, 136, 27, 184, 100, 15, 64, 10, 72, 255, 77, 27, 170, 48, 46, 141, 51, 97, + 57, 30, 27, 219, 112, 0, 36, 213, 19, 53, 121, 70, 201, 97, 171, 114, 102, 180, 27, 254, 199, 215, 83, 145, 109, + 42, 181, 27, 88, 124, 36, 223, 65, 96, 18, 243, 255, 27, 221, 5, 171, 14, 39, 140, 148, 169, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 60, + "sample": { + "_tag": "ByteArray", + "bytearray": "8644" + }, + "cborHex": "428644", + "cborBytes": [66, 134, 68], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 61, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fdfdf4" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2604099285872305746" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5202165315651397983" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3196775561943250692" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6049926405690980873" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0203" + } + } + ] + } + ] + }, + "cborHex": "9f43fdfdf4801b24239e80de446652bf1b4831cdcad642695f1b2c5d3a6fb446f7041b53f5a80318777a09420203ffff", + "cborBytes": [ + 159, 67, 253, 253, 244, 128, 27, 36, 35, 158, 128, 222, 68, 102, 82, 191, 27, 72, 49, 205, 202, 214, 66, 105, 95, + 27, 44, 93, 58, 111, 180, 70, 247, 4, 27, 83, 245, 168, 3, 24, 119, 122, 9, 66, 2, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 62, + "sample": { + "_tag": "ByteArray", + "bytearray": "89dcdc62ba360e116b35c298" + }, + "cborHex": "4c89dcdc62ba360e116b35c298", + "cborBytes": [76, 137, 220, 220, 98, 186, 54, 14, 17, 107, 53, 194, 152], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 63, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "82" + }, + { + "_tag": "ByteArray", + "bytearray": "4f42217ce9b181" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7823256681218533809" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8037928071480055848" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b870e610d23d2469f223" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcda718eed1ecb95c86f29a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16639928241501440035" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6461465722165803303" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3350788454512040965" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "239306a257d030591218" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17551544639595537332" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e204235ee7cccd695a2f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2527519041939737734" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15507524095894476525" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8008996871747227509" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6863835009863513007" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11796551479654313048" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12122834843942873204" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11896071033643275363" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f04c4b161005a97f739b59" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14361528654951956850" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfb323b4ad5c85f61f" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12813866210526900198" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f4182474f42217ce9b181ff1b6c91ca808ebb69b1bf1b6f8c74fe86b598284ab870e610d23d2469f2234cfcda718eed1ecb95c86f29a71be6ece692d2af0823ffff1b59abbcd70a0e3927d8669f1b2e8064589cab9c059f9f4a239306a257d030591218ff1bf3939cdb8e80e3b49f4ae204235ee7cccd695a2fffbf1b23138d2d61da8c861bd735cb00b999d6ed1b6f25ac38abb54f751b5f413d9347cdf3af1ba3b5c511e7676c581ba83cf60f9ff168741ba5175593b71f14634bf04c4b161005a97f739b591bc74e66389601417249dfb323b4ad5c85f61fff1bb1d3ff6d7dd62fe6ffffff", + "cborBytes": [ + 159, 159, 159, 65, 130, 71, 79, 66, 33, 124, 233, 177, 129, 255, 27, 108, 145, 202, 128, 142, 187, 105, 177, 191, + 27, 111, 140, 116, 254, 134, 181, 152, 40, 74, 184, 112, 230, 16, 210, 61, 36, 105, 242, 35, 76, 252, 218, 113, + 142, 237, 30, 203, 149, 200, 111, 41, 167, 27, 230, 236, 230, 146, 210, 175, 8, 35, 255, 255, 27, 89, 171, 188, + 215, 10, 14, 57, 39, 216, 102, 159, 27, 46, 128, 100, 88, 156, 171, 156, 5, 159, 159, 74, 35, 147, 6, 162, 87, + 208, 48, 89, 18, 24, 255, 27, 243, 147, 156, 219, 142, 128, 227, 180, 159, 74, 226, 4, 35, 94, 231, 204, 205, 105, + 90, 47, 255, 191, 27, 35, 19, 141, 45, 97, 218, 140, 134, 27, 215, 53, 203, 0, 185, 153, 214, 237, 27, 111, 37, + 172, 56, 171, 181, 79, 117, 27, 95, 65, 61, 147, 71, 205, 243, 175, 27, 163, 181, 197, 17, 231, 103, 108, 88, 27, + 168, 60, 246, 15, 159, 241, 104, 116, 27, 165, 23, 85, 147, 183, 31, 20, 99, 75, 240, 76, 75, 22, 16, 5, 169, 127, + 115, 155, 89, 27, 199, 78, 102, 56, 150, 1, 65, 114, 73, 223, 179, 35, 180, 173, 92, 133, 246, 31, 255, 27, 177, + 211, 255, 109, 125, 214, 47, 230, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 64, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "cborHex": "08", + "cborBytes": [8], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 65, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "cborHex": "09", + "cborBytes": [9], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 66, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17588380811267162976" + } + } + ] + }, + "cborHex": "9f1bf4167b291de04360ff", + "cborBytes": [159, 27, 244, 22, 123, 41, 29, 224, 67, 96, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 67, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "cborHex": "06", + "cborBytes": [6], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 68, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8305966114268393222" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15150832930514972767" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11476408652003078689" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c92" + } + } + ] + }, + "cborHex": "bf1b7344b82c8d662f06d9050a9f1bd24292471aa2b05fff1b9f4464dd47dcf221424c92ff", + "cborBytes": [ + 191, 27, 115, 68, 184, 44, 141, 102, 47, 6, 217, 5, 10, 159, 27, 210, 66, 146, 71, 26, 162, 176, 95, 255, 27, 159, + 68, 100, 221, 71, 220, 242, 33, 66, 76, 146, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 69, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6260609464690394726" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7920148372651354494" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10875268272393352460" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13367526993459347422" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b56e227235451c6661b6dea04fb7045a97e1b96ecb6dfc514f50c1bb982fef9f296ffdeffff", + "cborBytes": [ + 159, 191, 27, 86, 226, 39, 35, 84, 81, 198, 102, 27, 109, 234, 4, 251, 112, 69, 169, 126, 27, 150, 236, 182, 223, + 197, 20, 245, 12, 27, 185, 130, 254, 249, 242, 150, 255, 222, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 70, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17124904870838681500" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17286252063677060787" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a8" + } + ] + } + } + ] + }, + "cborHex": "bf1beda7e23f96b23f9cd8669f1befe51aaa595596b39f41a8ffffff", + "cborBytes": [ + 191, 27, 237, 167, 226, 63, 150, 178, 63, 156, 216, 102, 159, 27, 239, 229, 26, 170, 89, 85, 150, 179, 159, 65, + 168, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 71, + "sample": { + "_tag": "ByteArray", + "bytearray": "9cc4" + }, + "cborHex": "429cc4", + "cborBytes": [66, 156, 196], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 72, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "260045fa412dfcf773e5d2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5575919449966194385" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "542f3be2e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17571455961881609158" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "674704b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d0ee41d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6276281634758803134" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa61249d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e8b4ee" + } + ] + } + } + ] + }, + "cborHex": "bf4b260045fa412dfcf773e5d2d8669f1b4d61a5327f6d2ed180ff45542f3be2e11bf3da5a198a5f83c644674704b94260cb447d0ee41d1b5719d4e4c61b3ebe44fa61249d9f43e8b4eeffff", + "cborBytes": [ + 191, 75, 38, 0, 69, 250, 65, 45, 252, 247, 115, 229, 210, 216, 102, 159, 27, 77, 97, 165, 50, 127, 109, 46, 209, + 128, 255, 69, 84, 47, 59, 226, 225, 27, 243, 218, 90, 25, 138, 95, 131, 198, 68, 103, 71, 4, 185, 66, 96, 203, 68, + 125, 14, 228, 29, 27, 87, 25, 212, 228, 198, 27, 62, 190, 68, 250, 97, 36, 157, 159, 67, 232, 180, 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 73, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16781322544927561703" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16607732707720887611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5950548927995038127" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "29c15307fdb955" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4323711550727385002" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2663976954d5c7e3" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e831d3709c951b17ee7978" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8343407754368181662" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15186101387289627488" + } + }, + { + "_tag": "ByteArray", + "bytearray": "65fe2ae338fd81" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9604186609063248132" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5e0319c0ed" + }, + { + "_tag": "ByteArray", + "bytearray": "b9" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f1be8e33bf17fa957e79fd8669f1be67a84e7f856fd3b9f1b529498b8ffb9c9afffffbf4729c15307fdb9551b3c00e8bf545befaa419e482663976954d5c7e3ff4be831d3709c951b17ee7978d8669f1b73c9bd25b75ae59e9f1bd2bfdec098770b604765fe2ae338fd81ffff9f1b8548ecd5f5c74104455e0319c0ed41b9ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 27, 232, 227, 59, 241, 127, 169, 87, 231, 159, + 216, 102, 159, 27, 230, 122, 132, 231, 248, 86, 253, 59, 159, 27, 82, 148, 152, 184, 255, 185, 201, 175, 255, 255, + 191, 71, 41, 193, 83, 7, 253, 185, 85, 27, 60, 0, 232, 191, 84, 91, 239, 170, 65, 158, 72, 38, 99, 151, 105, 84, + 213, 199, 227, 255, 75, 232, 49, 211, 112, 156, 149, 27, 23, 238, 121, 120, 216, 102, 159, 27, 115, 201, 189, 37, + 183, 90, 229, 158, 159, 27, 210, 191, 222, 192, 152, 119, 11, 96, 71, 101, 254, 42, 227, 56, 253, 129, 255, 255, + 159, 27, 133, 72, 236, 213, 245, 199, 65, 4, 69, 94, 3, 25, 192, 237, 65, 185, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 74, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "949172892303917082" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eae86283d40d48591a8f6a72" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12486923495863720344" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10373123623460183110" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7764412936956809050" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15593022319713896152" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5126257645432383403" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b0d2c23b77434801a4ceae86283d40d48591a8f6a721bad4a76c2cc6f99980dffbf1b8ff4bcf9f38e9c461b6bc0bc6db4c20f5a1bd8658b2f3548c6d81b4724202b1f20a7abffffff", + "cborBytes": [ + 159, 159, 191, 27, 13, 44, 35, 183, 116, 52, 128, 26, 76, 234, 232, 98, 131, 212, 13, 72, 89, 26, 143, 106, 114, + 27, 173, 74, 118, 194, 204, 111, 153, 152, 13, 255, 191, 27, 143, 244, 188, 249, 243, 142, 156, 70, 27, 107, 192, + 188, 109, 180, 194, 15, 90, 27, 216, 101, 139, 47, 53, 72, 198, 216, 27, 71, 36, 32, 43, 31, 32, 167, 171, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 75, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10303770819245175584" + } + }, + { + "_tag": "ByteArray", + "bytearray": "83f77efbc7717c93" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4855269371474871713" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9578316585349173070" + } + }, + { + "_tag": "ByteArray", + "bytearray": "77aa17546deb23e8a1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7477235547015338765" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6751555727406627061" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12806336910168297434" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff306044b11b73632e1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b40eaeb6f93d939364e25231" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e8ed28" + } + ] + } + ] + }, + "cborHex": "d9050c9f14d8669f1bfffffffffffffff480ff9f1b8efe58f7e824f3204883f77efbc7717c93d8669f1b436161c4df9805a19f1b84ed042faff84f4e4977aa17546deb23e8a11b67c47a1d29c5db0dffffbf1b5db25829ad5378f51bb1b93f91a48e0fda4aff306044b11b73632e1d4cb40eaeb6f93d939364e25231ffff809f43e8ed28ffff", + "cborBytes": [ + 217, 5, 12, 159, 20, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 128, 255, 159, 27, 142, 254, 88, + 247, 232, 36, 243, 32, 72, 131, 247, 126, 251, 199, 113, 124, 147, 216, 102, 159, 27, 67, 97, 97, 196, 223, 152, + 5, 161, 159, 27, 132, 237, 4, 47, 175, 248, 79, 78, 73, 119, 170, 23, 84, 109, 235, 35, 232, 161, 27, 103, 196, + 122, 29, 41, 197, 219, 13, 255, 255, 191, 27, 93, 178, 88, 41, 173, 83, 120, 245, 27, 177, 185, 63, 145, 164, 142, + 15, 218, 74, 255, 48, 96, 68, 177, 27, 115, 99, 46, 29, 76, 180, 14, 174, 182, 249, 61, 147, 147, 100, 226, 82, + 49, 255, 255, 128, 159, 67, 232, 237, 40, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 76, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0616" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15099700295726051216" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc36884fdce05b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "070782ad04f9" + } + } + ] + }, + "cborHex": "bf420616d8669f1bd18ce96ad59caf909f03ffff47dc36884fdce05b46070782ad04f9ff", + "cborBytes": [ + 191, 66, 6, 22, 216, 102, 159, 27, 209, 140, 233, 106, 213, 156, 175, 144, 159, 3, 255, 255, 71, 220, 54, 136, 79, + 220, 224, 91, 70, 7, 7, 130, 173, 4, 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 77, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5997028163348222791" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14032468318380443137" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d8e5b54b366276e34" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3655043549412433923" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17521577466786293625" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2947876893681983163" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17082355980046590956" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17584958972455660559" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "849d94fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0483619af09d7b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9361470206872768967" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67c4cf2a8178" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f53eb12" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2309759717819939677" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4269585423164048189" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ff33094be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25a9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8a8e306" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4092bfe4bdd7130d2ffd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f79527676b564c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f31" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b5339b957486253479f1bc2bd57969efd4601492d8e5b54b366276e34d8669f1b32b952be314fa0039f1bf32925df6c4927791b28e8f66a917f1ebbd8669f1bed10b841f57263ec80ffffffbf1bf40a53042f09ac0f44849d94fb470483619af09d7b1b81ea9f8dd00dd1c74667c4cf2a8178449f53eb12ffbf1b200dea39c929fb5d1b3b409d5235e1033d451ff33094be4225a944a8a8e3064a4092bfe4bdd7130d2ffd47f79527676b564c426f31ffffff", + "cborBytes": [ + 216, 102, 159, 27, 83, 57, 185, 87, 72, 98, 83, 71, 159, 27, 194, 189, 87, 150, 158, 253, 70, 1, 73, 45, 142, 91, + 84, 179, 102, 39, 110, 52, 216, 102, 159, 27, 50, 185, 82, 190, 49, 79, 160, 3, 159, 27, 243, 41, 37, 223, 108, + 73, 39, 121, 27, 40, 232, 246, 106, 145, 127, 30, 187, 216, 102, 159, 27, 237, 16, 184, 65, 245, 114, 99, 236, + 128, 255, 255, 255, 191, 27, 244, 10, 83, 4, 47, 9, 172, 15, 68, 132, 157, 148, 251, 71, 4, 131, 97, 154, 240, + 157, 123, 27, 129, 234, 159, 141, 208, 13, 209, 199, 70, 103, 196, 207, 42, 129, 120, 68, 159, 83, 235, 18, 255, + 191, 27, 32, 13, 234, 57, 201, 41, 251, 93, 27, 59, 64, 157, 82, 53, 225, 3, 61, 69, 31, 243, 48, 148, 190, 66, + 37, 169, 68, 168, 168, 227, 6, 74, 64, 146, 191, 228, 189, 215, 19, 13, 47, 253, 71, 247, 149, 39, 103, 107, 86, + 76, 66, 111, 49, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 78, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5284297778639684899" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17484103393557499287" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f4" + }, + { + "_tag": "ByteArray", + "bytearray": "87ad6d361ecf93" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16932065209943735037" + } + } + ] + } + } + ] + }, + "cborHex": "bf0900104299fa1bffffffffffffffed1bffffffffffffffed1bfffffffffffffff5d8799f1b495598d50f3445231bf2a40366d5324d9741f44787ad6d361ecf931beafac79938723afdffff", + "cborBytes": [ + 191, 9, 0, 16, 66, 153, 250, 27, 255, 255, 255, 255, 255, 255, 255, 237, 27, 255, 255, 255, 255, 255, 255, 255, + 237, 27, 255, 255, 255, 255, 255, 255, 255, 245, 216, 121, 159, 27, 73, 85, 152, 213, 15, 52, 69, 35, 27, 242, + 164, 3, 102, 213, 50, 77, 151, 65, 244, 71, 135, 173, 109, 54, 30, 207, 147, 27, 234, 250, 199, 153, 56, 114, 58, + 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 79, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6763501720750271171" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17705633013187517303" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "25d0aa4082e9f6d6cb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "669499813527605083" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7c727aac" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15424368280481182047" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13984515287105854725" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15535202199239431605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "229903661495164639" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14116005681458496804" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3d788c6aad5a7409b61355f4" + }, + { + "_tag": "ByteArray", + "bytearray": "d1a6eaf0d097904717b2" + }, + { + "_tag": "ByteArray", + "bytearray": "6b8127972890a8426168" + }, + { + "_tag": "ByteArray", + "bytearray": "9fb809" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "98e45da1b2ee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8061108450714191381" + } + } + ] + }, + "cborHex": "9fd8669f1b5ddcc8faff102ac39f1bf5b70b6ac2789b779f4925d0aa4082e9f6d6cb1b094a8a888280cf5b447c727aac1bd60e5d3ab2e2315f1bc212fa8f7bf6dd05ffffffd8669f1bd7982017578895b59f1b0330c8297bfb1edf9f1bc3e62060a2bac524ffa0ffff9f9f4c3d788c6aad5a7409b61355f44ad1a6eaf0d097904717b24a6b8127972890a8426168439fb809ffff4698e45da1b2ee1b6fdecf6d24b80615ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 93, 220, 200, 250, 255, 16, 42, 195, 159, 27, 245, 183, 11, 106, 194, 120, 155, 119, 159, + 73, 37, 208, 170, 64, 130, 233, 246, 214, 203, 27, 9, 74, 138, 136, 130, 128, 207, 91, 68, 124, 114, 122, 172, 27, + 214, 14, 93, 58, 178, 226, 49, 95, 27, 194, 18, 250, 143, 123, 246, 221, 5, 255, 255, 255, 216, 102, 159, 27, 215, + 152, 32, 23, 87, 136, 149, 181, 159, 27, 3, 48, 200, 41, 123, 251, 30, 223, 159, 27, 195, 230, 32, 96, 162, 186, + 197, 36, 255, 160, 255, 255, 159, 159, 76, 61, 120, 140, 106, 173, 90, 116, 9, 182, 19, 85, 244, 74, 209, 166, + 234, 240, 208, 151, 144, 71, 23, 178, 74, 107, 129, 39, 151, 40, 144, 168, 66, 97, 104, 67, 159, 184, 9, 255, 255, + 70, 152, 228, 93, 161, 178, 238, 27, 111, 222, 207, 109, 36, 184, 6, 21, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 80, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "245931127073577384" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77030b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2197819297874358978" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7bec4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8068157749201177017" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1901948064452196087" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10472847311426888242" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11152610127787231514" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12084430732761089963" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16364946425973206618" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12667672568110017663" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5206735390057000528" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13460696566391118651" + } + }, + { + "_tag": "ByteArray", + "bytearray": "857950" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "62c6" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10569795140541893333" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8558437253644518373" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "108aa4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "586d2f6523ba731a3c8966" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "172e6fc91bbcf8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5256778840131694969" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10309774821011525003" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cacb17a6f1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "80327166610860716" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1db2" + } + ] + }, + "cborHex": "9f9fbf1b0369b90e9c6e99a84377030b1b1e803901c24cb2c243d7bec41b6ff7dab9d8f389b91b1a6513b00aea36f71b91570724688122321b9ac607d2792e891a1ba7b485b9b309c7ab1be31bf811b86e6e5aff1bafcc9d15a1286c7f1b48420a4033cd6e509f1bbace003595101b3b43857950ff4262c6ffbf1b92af74addca64ad51b76c5ad566ff383e543108aa44b586d2f6523ba731a3c896647172e6fc91bbcf81b48f3d480e4d6f179ffd8669f1b8f13ad9380a88d8b9f9f45cacb17a6f11b011d6121e7a76aacff410dffff421db2ff", + "cborBytes": [ + 159, 159, 191, 27, 3, 105, 185, 14, 156, 110, 153, 168, 67, 119, 3, 11, 27, 30, 128, 57, 1, 194, 76, 178, 194, 67, + 215, 190, 196, 27, 111, 247, 218, 185, 216, 243, 137, 185, 27, 26, 101, 19, 176, 10, 234, 54, 247, 27, 145, 87, 7, + 36, 104, 129, 34, 50, 27, 154, 198, 7, 210, 121, 46, 137, 26, 27, 167, 180, 133, 185, 179, 9, 199, 171, 27, 227, + 27, 248, 17, 184, 110, 110, 90, 255, 27, 175, 204, 157, 21, 161, 40, 108, 127, 27, 72, 66, 10, 64, 51, 205, 110, + 80, 159, 27, 186, 206, 0, 53, 149, 16, 27, 59, 67, 133, 121, 80, 255, 66, 98, 198, 255, 191, 27, 146, 175, 116, + 173, 220, 166, 74, 213, 27, 118, 197, 173, 86, 111, 243, 131, 229, 67, 16, 138, 164, 75, 88, 109, 47, 101, 35, + 186, 115, 26, 60, 137, 102, 71, 23, 46, 111, 201, 27, 188, 248, 27, 72, 243, 212, 128, 228, 214, 241, 121, 255, + 216, 102, 159, 27, 143, 19, 173, 147, 128, 168, 141, 139, 159, 159, 69, 202, 203, 23, 166, 241, 27, 1, 29, 97, 33, + 231, 167, 106, 172, 255, 65, 13, 255, 255, 66, 29, 178, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 81, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f72f5425" + }, + { + "_tag": "ByteArray", + "bytearray": "6f1c4e7a0120" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18129132897392346221" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4860f9f04305bdb7ff59" + } + ] + } + } + ] + }, + "cborHex": "bf14d87a9f44f72f5425466f1c4e7a0120ff1bfb979e5162eb446d9f4a4860f9f04305bdb7ff59ffff", + "cborBytes": [ + 191, 20, 216, 122, 159, 68, 247, 47, 84, 37, 70, 111, 28, 78, 122, 1, 32, 255, 27, 251, 151, 158, 81, 98, 235, 68, + 109, 159, 74, 72, 96, 249, 240, 67, 5, 189, 183, 255, 89, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 82, + "sample": { + "_tag": "ByteArray", + "bytearray": "1cbe56fe6ca097168f" + }, + "cborHex": "491cbe56fe6ca097168f", + "cborBytes": [73, 28, 190, 86, 254, 108, 160, 151, 22, 143], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 83, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "488efc17eaad06ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51f8" + } + } + ] + }, + "cborHex": "bf48488efc17eaad06ad4251f8ff", + "cborBytes": [191, 72, 72, 142, 252, 23, 234, 173, 6, 173, 66, 81, 248, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 84, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16029242329814445544" + } + }, + "cborHex": "1bde734ef8ef3eade8", + "cborBytes": [27, 222, 115, 78, 248, 239, 62, 173, 232], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 85, + "sample": { + "_tag": "ByteArray", + "bytearray": "f0336be4" + }, + "cborHex": "44f0336be4", + "cborBytes": [68, 240, 51, 107, 228], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 86, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "cborHex": "0d", + "cborBytes": [13], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 87, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13795796985398482578" + } + } + ] + }, + "cborHex": "9f1bbf748443d414d692ff", + "cborBytes": [159, 27, 191, 116, 132, 67, 212, 20, 214, 146, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 88, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "73527196749162185" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "976472142280050594" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb048d924c07" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8153419068879249603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4971307716986649764" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10253243652119747730" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15761067901662789331" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2161215771777353177" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b010538988b9066c941fa1b0d8d203d65aac7a246fb048d924c071b7126c371c971a0c31b44fda2078c25bca41b8e4ad6c710205c92a01bdaba8fc0376bfed3d8669f1b1dfe2e4b37c2c5d980ffff", + "cborBytes": [ + 191, 27, 1, 5, 56, 152, 139, 144, 102, 201, 65, 250, 27, 13, 141, 32, 61, 101, 170, 199, 162, 70, 251, 4, 141, + 146, 76, 7, 27, 113, 38, 195, 113, 201, 113, 160, 195, 27, 68, 253, 162, 7, 140, 37, 188, 164, 27, 142, 74, 214, + 199, 16, 32, 92, 146, 160, 27, 218, 186, 143, 192, 55, 107, 254, 211, 216, 102, 159, 27, 29, 254, 46, 75, 55, 194, + 197, 217, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 89, + "sample": { + "_tag": "ByteArray", + "bytearray": "070787" + }, + "cborHex": "43070787", + "cborBytes": [67, 7, 7, 135], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 90, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10950359464957365504" + } + } + ] + }, + "cborHex": "9f1b97f77dea779ecd00ff", + "cborBytes": [159, 27, 151, 247, 125, 234, 119, 158, 205, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 91, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bd48becde1524" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "909518fcf96d9e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7370837957240697170" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0f16" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3212750236924173742" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b01f3ecebac25c7230cf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5376118115286785207" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5989537631747439747" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5968385856035352711" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2671493965501715570" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6957188757671498196" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47e071f99e3554c9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8900642775382278031" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6479594448270581094" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15248798449967106267" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16094698287999984354" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6092604631480174044" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4983948238937140452" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf478bd48becde1524419f47909518fcf96d9e1b664a7a11da4c3152ff9f9f420f16ffbf1b2c95fb518feaddae4ab01f3ecebac25c7230cf1b4a9bcef124361cb71b531f1cbdfd23fc831b52d3f7506f73f0871b25130d9b815454721b608ce6507859d1d44847e071f99e3554c91b7b856f72534ebf8f1b59ec24d201c2dd661bd39e9d660dd108db1bdf5bdad1cf53a2e2ffa01b548d47a1e04685dc9f1b452a8a8468c82ce4ffffff", + "cborBytes": [ + 159, 191, 71, 139, 212, 139, 236, 222, 21, 36, 65, 159, 71, 144, 149, 24, 252, 249, 109, 158, 27, 102, 74, 122, + 17, 218, 76, 49, 82, 255, 159, 159, 66, 15, 22, 255, 191, 27, 44, 149, 251, 81, 143, 234, 221, 174, 74, 176, 31, + 62, 206, 186, 194, 92, 114, 48, 207, 27, 74, 155, 206, 241, 36, 54, 28, 183, 27, 83, 31, 28, 189, 253, 35, 252, + 131, 27, 82, 211, 247, 80, 111, 115, 240, 135, 27, 37, 19, 13, 155, 129, 84, 84, 114, 27, 96, 140, 230, 80, 120, + 89, 209, 212, 72, 71, 224, 113, 249, 158, 53, 84, 201, 27, 123, 133, 111, 114, 83, 78, 191, 143, 27, 89, 236, 36, + 210, 1, 194, 221, 102, 27, 211, 158, 157, 102, 13, 209, 8, 219, 27, 223, 91, 218, 209, 207, 83, 162, 226, 255, + 160, 27, 84, 141, 71, 161, 224, 70, 133, 220, 159, 27, 69, 42, 138, 132, 104, 200, 44, 228, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 92, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8421435628430931995" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7026839145993442814" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b74def315db71b81bd8669f1b618458f936bf95fe80ffff", + "cborBytes": [ + 191, 27, 116, 222, 243, 21, 219, 113, 184, 27, 216, 102, 159, 27, 97, 132, 88, 249, 54, 191, 149, 254, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 93, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "873715521778549378" + } + }, + "cborHex": "1b0c200fa34e5b0282", + "cborBytes": [27, 12, 32, 15, 163, 78, 91, 2, 130], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 94, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9199167151097005115" + } + }, + { + "_tag": "ByteArray", + "bytearray": "854eedcca7f6744af331" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10736736602372256325" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8441085520577965371" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d05f4c3985a953" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18420798266827302427" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f773cb32316d352d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96ba78" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1b7faa01c8de94443b4a854eedcca7f6744af3311b95008d0ddf553245d8669f1b7524c28ee4be2d3b80ffff9fbf47d05f4c3985a9531bffa3d26d155f661b48f773cb32316d352d4396ba78ffffff", + "cborBytes": [ + 159, 159, 27, 127, 170, 1, 200, 222, 148, 68, 59, 74, 133, 78, 237, 204, 167, 246, 116, 74, 243, 49, 27, 149, 0, + 141, 13, 223, 85, 50, 69, 216, 102, 159, 27, 117, 36, 194, 142, 228, 190, 45, 59, 128, 255, 255, 159, 191, 71, + 208, 95, 76, 57, 133, 169, 83, 27, 255, 163, 210, 109, 21, 95, 102, 27, 72, 247, 115, 203, 50, 49, 109, 53, 45, + 67, 150, 186, 120, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 95, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16089458766288748377" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2723564295159873673" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bdb9fe2b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2774684238669776520" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0d520aa924ecc9ea69" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9373742549357585771" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8523542046832545" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9815990036743608673" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6b2031916" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b201e9f28bd7a7" + } + } + ] + } + ] + }, + "cborHex": "9f9f1bdf493d8098ef7f591b25cc0b4bdff10089bf456bdb9fe2b91b2681a89d39c98688ff490d520aa924ecc9ea69ff1b8216392f366c656bbf4885235420468325451b883966ee5ae0596145f6b203191647b201e9f28bd7a7ffff", + "cborBytes": [ + 159, 159, 27, 223, 73, 61, 128, 152, 239, 127, 89, 27, 37, 204, 11, 75, 223, 241, 0, 137, 191, 69, 107, 219, 159, + 226, 185, 27, 38, 129, 168, 157, 57, 201, 134, 136, 255, 73, 13, 82, 10, 169, 36, 236, 201, 234, 105, 255, 27, + 130, 22, 57, 47, 54, 108, 101, 107, 191, 72, 133, 35, 84, 32, 70, 131, 37, 69, 27, 136, 57, 102, 238, 90, 224, 89, + 97, 69, 246, 178, 3, 25, 22, 71, 178, 1, 233, 242, 139, 215, 167, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 96, + "sample": { + "_tag": "ByteArray", + "bytearray": "342e35dbcd326da9" + }, + "cborHex": "48342e35dbcd326da9", + "cborBytes": [72, 52, 46, 53, 219, 205, 50, 109, 169], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 97, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1990807892341982722" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1867464008022564894" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8121980950799020996" + } + }, + { + "_tag": "ByteArray", + "bytearray": "796962ae" + }, + { + "_tag": "ByteArray", + "bytearray": "090468" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6193224408121026799" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14047939876915483424" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4135d16ee58596" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16987626766847310331" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "927c94" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5407772793546693792" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "24678a054e2fa1993a69ee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14706478412865939209" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1ba0c53af7168602d8669f1b19ea909efd03201e9f1b70b712a484dd73c444796962ae43090468ffff1b55f2c0c93c5528ef9f1bc2f44ee38d979320474135d16ee585961bebc02c8a46d9f9fbff43927c94d8669f1b4b0c44b4415f5ca09f4b24678a054e2fa1993a69ee1bcc17e832bfd32709ffffff", + "cborBytes": [ + 191, 27, 27, 160, 197, 58, 247, 22, 134, 2, 216, 102, 159, 27, 25, 234, 144, 158, 253, 3, 32, 30, 159, 27, 112, + 183, 18, 164, 132, 221, 115, 196, 68, 121, 105, 98, 174, 67, 9, 4, 104, 255, 255, 27, 85, 242, 192, 201, 60, 85, + 40, 239, 159, 27, 194, 244, 78, 227, 141, 151, 147, 32, 71, 65, 53, 209, 110, 229, 133, 150, 27, 235, 192, 44, + 138, 70, 217, 249, 251, 255, 67, 146, 124, 148, 216, 102, 159, 27, 75, 12, 68, 180, 65, 95, 92, 160, 159, 75, 36, + 103, 138, 5, 78, 47, 161, 153, 58, 105, 238, 27, 204, 23, 232, 50, 191, 211, 39, 9, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 98, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11119883725775328220" + } + }, + "cborHex": "1b9a51c3553a7c53dc", + "cborBytes": [27, 154, 81, 195, 85, 58, 124, 83, 220], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 99, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3fa8b19" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + } + ] + }, + "cborHex": "bf44f3fa8b191bffffffffffffffeeff", + "cborBytes": [191, 68, 243, 250, 139, 25, 27, 255, 255, 255, 255, 255, 255, 255, 238, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 100, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "cborHex": "1bfffffffffffffffa", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 250], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 101, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [] + }, + "cborHex": "d87a80", + "cborBytes": [216, 122, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 102, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7d5b08" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17142564485107425838" + }, + "fields": [] + } + ] + }, + "cborHex": "9f437d5b08d8669f1bede69f92f20e222e80ffff", + "cborBytes": [159, 67, 125, 91, 8, 216, 102, 159, 27, 237, 230, 159, 146, 242, 14, 34, 46, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 103, + "sample": { + "_tag": "ByteArray", + "bytearray": "04d3fe" + }, + "cborHex": "4304d3fe", + "cborBytes": [67, 4, 211, 254], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 104, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "36752887f5dd2fe1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2922122895916724936" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57d8e22fba7b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b39c20cf4e22775029f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35449d5813053b8390" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc5201" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60246bfd6d5d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce18" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9f62ff764e1c9" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15529696744878209640" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "91" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9634696249771653726" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17806c5c5ddcbb7b183a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3229784928766720381" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dbc8cbeb" + }, + { + "_tag": "ByteArray", + "bytearray": "f5910eef8e072aa01db8" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10252782442223021840" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "abcb2066" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6467215395907986051" + } + }, + { + "_tag": "ByteArray", + "bytearray": "627da3219d4d79b25d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26fb036117fb0e821b5a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "278c700921d842b898" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15061583902278086484" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "daca62cd6d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4555809078294213803" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4d43b94cf71d4fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16313711437381194301" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0c710" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d225445b3" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e117081c88" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14127212670252972165" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0eb351d06207" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6701918965389517467" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1e350ede4476f5390d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "869e54b06a4eb9" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5263356611775429838" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18399768618763624093" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8879377680706720841" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14016130786206637466" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12022740484205326615" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2241614447320188678" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2087236742375846771" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "35234e868b997956696b" + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf4836752887f5dd2fe11b288d774ab126f2c84657d8e22fba7b4ab39c20cf4e22775029f641664935449d5813053b839043bc52014660246bfd6d5d42ce1847d9f62ff764e1c9ff9fd8669f1bd78490e8dc017a689f41911b85b551313e6d7a5e4a17806c5c5ddcbb7b183a1b2cd28047d40cf97dffff9f44dbc8cbeb4af5910eef8e072aa01db8ffd8669f1b8e49334f4410af1080ffa044abcb2066ff9f1b59c02a234708628349627da3219d4d79b25dbf410e4a26fb036117fb0e821b5a49278c700921d842b8981bd1057ec26a06ef5445daca62cd6d1b3f397c381039f4ab48e4d43b94cf71d4fa1be265f21e5955523d43f0c710457d225445b3ff9f45e117081c881bc40df1130cd37885460eb351d062071b5d01ffca6d7ee29b491e350ede4476f5390dff47869e54b06a4eb9ffd8669f1b490b32f3b313fcce9f1bff591c1296c91e9d1b7b39e2f4a50e54499f1bc2834cb07d435d9a1ba6d95ac56bc43117ff9f1b1f1bd07697e74706ffd8669f1b1cf75ac22f74b3739f4a35234e868b997956696bffffffffff", + "cborBytes": [ + 159, 191, 72, 54, 117, 40, 135, 245, 221, 47, 225, 27, 40, 141, 119, 74, 177, 38, 242, 200, 70, 87, 216, 226, 47, + 186, 123, 74, 179, 156, 32, 207, 78, 34, 119, 80, 41, 246, 65, 102, 73, 53, 68, 157, 88, 19, 5, 59, 131, 144, 67, + 188, 82, 1, 70, 96, 36, 107, 253, 109, 93, 66, 206, 24, 71, 217, 246, 47, 247, 100, 225, 201, 255, 159, 216, 102, + 159, 27, 215, 132, 144, 232, 220, 1, 122, 104, 159, 65, 145, 27, 133, 181, 81, 49, 62, 109, 122, 94, 74, 23, 128, + 108, 92, 93, 220, 187, 123, 24, 58, 27, 44, 210, 128, 71, 212, 12, 249, 125, 255, 255, 159, 68, 219, 200, 203, + 235, 74, 245, 145, 14, 239, 142, 7, 42, 160, 29, 184, 255, 216, 102, 159, 27, 142, 73, 51, 79, 68, 16, 175, 16, + 128, 255, 160, 68, 171, 203, 32, 102, 255, 159, 27, 89, 192, 42, 35, 71, 8, 98, 131, 73, 98, 125, 163, 33, 157, + 77, 121, 178, 93, 191, 65, 14, 74, 38, 251, 3, 97, 23, 251, 14, 130, 27, 90, 73, 39, 140, 112, 9, 33, 216, 66, + 184, 152, 27, 209, 5, 126, 194, 106, 6, 239, 84, 69, 218, 202, 98, 205, 109, 27, 63, 57, 124, 56, 16, 57, 244, + 171, 72, 228, 212, 59, 148, 207, 113, 212, 250, 27, 226, 101, 242, 30, 89, 85, 82, 61, 67, 240, 199, 16, 69, 125, + 34, 84, 69, 179, 255, 159, 69, 225, 23, 8, 28, 136, 27, 196, 13, 241, 19, 12, 211, 120, 133, 70, 14, 179, 81, 208, + 98, 7, 27, 93, 1, 255, 202, 109, 126, 226, 155, 73, 30, 53, 14, 222, 68, 118, 245, 57, 13, 255, 71, 134, 158, 84, + 176, 106, 78, 185, 255, 216, 102, 159, 27, 73, 11, 50, 243, 179, 19, 252, 206, 159, 27, 255, 89, 28, 18, 150, 201, + 30, 157, 27, 123, 57, 226, 244, 165, 14, 84, 73, 159, 27, 194, 131, 76, 176, 125, 67, 93, 154, 27, 166, 217, 90, + 197, 107, 196, 49, 23, 255, 159, 27, 31, 27, 208, 118, 151, 231, 71, 6, 255, 216, 102, 159, 27, 28, 247, 90, 194, + 47, 116, 179, 115, 159, 74, 53, 35, 78, 134, 139, 153, 121, 86, 105, 107, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 105, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "52d20631a7" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7e2666eb56" + }, + { + "_tag": "ByteArray", + "bytearray": "fe7e3c2307d3b8b3" + }, + { + "_tag": "ByteArray", + "bytearray": "10010877" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72d5162862" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17980315327642330555" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12796204716368084058" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f83b28" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5022572618907673555" + } + }, + { + "_tag": "ByteArray", + "bytearray": "979f8b43aa" + }, + { + "_tag": "ByteArray", + "bytearray": "520626afae" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74d5e0a0130bfdf2185f42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0c036fce8edd83e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "68ca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8f9baad7106b57eee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d03afb4d94252c5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3419776119251310276" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2a1ea335425fb64" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f205673bf6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd715608" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17795452252631438257" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d163ac939e37fdd9283e4e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6314410078229685668" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c89d1d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14981021972838032099" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14308718750003113491" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2287510723011984841" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4744912893268535808" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1b3927490a31" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d33d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1824462150836064920" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2864633994354649327" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15569397953560539423" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2fc9b19a60" + } + } + ] + } + } + ] + }, + "cborHex": "bf4552d20631a79f457e2666eb5648fe7e3c2307d3b8b34410010877ff4572d5162862d8669f1bf986e986d5a1e5bb9f1bb1954064704c3c5a43f83b281b45b3c32fa89863d345979f8b43aa45520626afaeffff4b74d5e0a0130bfdf2185f42417448b0c036fce8edd83ebf4268ca49c8f9baad7106b57eee486d03afb4d94252c51b2f757c42ff5696c448b2a1ea335425fb6445f205673bf644cd7156081bf6f6258a178593b14bd163ac939e37fdd9283e4e1b57a14a82cf06e5a4ff43c89d1dd8669f1bcfe7481c875522e39f1bc692c7e46ce82e131b1fbedee20106bdc91b41d9512305712a00461b3927490a31ffff42d33dbf1b1951caa8e6ba92981b27c13970bd0468ef1bd8119cf2d4ab711f452fc9b19a60ffff", + "cborBytes": [ + 191, 69, 82, 210, 6, 49, 167, 159, 69, 126, 38, 102, 235, 86, 72, 254, 126, 60, 35, 7, 211, 184, 179, 68, 16, 1, + 8, 119, 255, 69, 114, 213, 22, 40, 98, 216, 102, 159, 27, 249, 134, 233, 134, 213, 161, 229, 187, 159, 27, 177, + 149, 64, 100, 112, 76, 60, 90, 67, 248, 59, 40, 27, 69, 179, 195, 47, 168, 152, 99, 211, 69, 151, 159, 139, 67, + 170, 69, 82, 6, 38, 175, 174, 255, 255, 75, 116, 213, 224, 160, 19, 11, 253, 242, 24, 95, 66, 65, 116, 72, 176, + 192, 54, 252, 232, 237, 216, 62, 191, 66, 104, 202, 73, 200, 249, 186, 173, 113, 6, 181, 126, 238, 72, 109, 3, + 175, 180, 217, 66, 82, 197, 27, 47, 117, 124, 66, 255, 86, 150, 196, 72, 178, 161, 234, 51, 84, 37, 251, 100, 69, + 242, 5, 103, 59, 246, 68, 205, 113, 86, 8, 27, 246, 246, 37, 138, 23, 133, 147, 177, 75, 209, 99, 172, 147, 158, + 55, 253, 217, 40, 62, 78, 27, 87, 161, 74, 130, 207, 6, 229, 164, 255, 67, 200, 157, 29, 216, 102, 159, 27, 207, + 231, 72, 28, 135, 85, 34, 227, 159, 27, 198, 146, 199, 228, 108, 232, 46, 19, 27, 31, 190, 222, 226, 1, 6, 189, + 201, 27, 65, 217, 81, 35, 5, 113, 42, 0, 70, 27, 57, 39, 73, 10, 49, 255, 255, 66, 211, 61, 191, 27, 25, 81, 202, + 168, 230, 186, 146, 152, 27, 39, 193, 57, 112, 189, 4, 104, 239, 27, 216, 17, 156, 242, 212, 171, 113, 31, 69, 47, + 201, 177, 154, 96, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 106, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10989131903877622416" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11558745846870708521" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5960550254944514104" + } + } + } + ] + }, + "cborHex": "bf1b98813d3e6089aa90801ba068ea1b5bc011291b52b820e063d4f038ff", + "cborBytes": [ + 191, 27, 152, 129, 61, 62, 96, 137, 170, 144, 128, 27, 160, 104, 234, 27, 91, 192, 17, 41, 27, 82, 184, 32, 224, + 99, 212, 240, 56, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 107, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "639221920888010169" + }, + "fields": [] + }, + "cborHex": "d8669f1b08def8f3472c35b980ff", + "cborBytes": [216, 102, 159, 27, 8, 222, 248, 243, 71, 44, 53, 185, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 108, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8896465592929053851" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15700977483603320202" + } + }, + { + "_tag": "ByteArray", + "bytearray": "50224f1a03f0827b5478c603" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18040734344136398862" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d905089f80d8669f1bfffffffffffffff19f1b7b7698523f056c9b1bd9e513d580951d8a4c50224f1a03f0827b5478c603d8669f1bfa5d904d5570980e80ffffffff", + "cborBytes": [ + 217, 5, 8, 159, 128, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 27, 123, 118, 152, 82, 63, 5, + 108, 155, 27, 217, 229, 19, 213, 128, 149, 29, 138, 76, 80, 34, 79, 26, 3, 240, 130, 123, 84, 120, 198, 3, 216, + 102, 159, 27, 250, 93, 144, 77, 85, 112, 152, 14, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 109, + "sample": { + "_tag": "ByteArray", + "bytearray": "9c16b6137ff6ee" + }, + "cborHex": "479c16b6137ff6ee", + "cborBytes": [71, 156, 22, 182, 19, 127, 246, 238], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 110, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4ba09987" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7619588653467506449" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1179381558045783809" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14856462128097979388" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b0fa" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15191357694577374315" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fff6b1bb55397c28f0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3487076014858424158" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b3a5bcbe5c6e97" + }, + { + "_tag": "ByteArray", + "bytearray": "a00bb8d71d8a9a344cbe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14447134208474477889" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dcd704a6ab12f627" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12481362007807391797" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "52d5690b8f19fa9a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11813701698632409894" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9f444ba099879f1b69be3782908717111b105e014745f737011bce2cc197b452ebfc42b0fad8669f1bd2d28b56012e746b80ffff9f49fff6b1bb55397c28f0d8669f1b30649529026bcf5e9f47b3a5bcbe5c6e974aa00bb8d71d8a9a344cbe1bc87e8804b683f541ffff9f48dcd704a6ab12f6271bad36b49df46a7835ff9f4852d5690b8f19fa9a1ba3f2b31a6d69e326ffa0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 68, 75, 160, 153, 135, 159, 27, 105, 190, 55, 130, + 144, 135, 23, 17, 27, 16, 94, 1, 71, 69, 247, 55, 1, 27, 206, 44, 193, 151, 180, 82, 235, 252, 66, 176, 250, 216, + 102, 159, 27, 210, 210, 139, 86, 1, 46, 116, 107, 128, 255, 255, 159, 73, 255, 246, 177, 187, 85, 57, 124, 40, + 240, 216, 102, 159, 27, 48, 100, 149, 41, 2, 107, 207, 94, 159, 71, 179, 165, 188, 190, 92, 110, 151, 74, 160, 11, + 184, 215, 29, 138, 154, 52, 76, 190, 27, 200, 126, 136, 4, 182, 131, 245, 65, 255, 255, 159, 72, 220, 215, 4, 166, + 171, 18, 246, 39, 27, 173, 54, 180, 157, 244, 106, 120, 53, 255, 159, 72, 82, 213, 105, 11, 143, 25, 250, 154, 27, + 163, 242, 179, 26, 109, 105, 227, 38, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 111, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0406" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4441504423995764767" + } + }, + { + "_tag": "ByteArray", + "bytearray": "688190ed9cce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7286826405945325286" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05cd588127e9a5043bbb76c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12964188174385654633" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0707ed04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "018a6b006a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b568a4030e4d0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6855219670995863283" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e11aa64d94c1e69a0430c1" + }, + { + "_tag": "ByteArray", + "bytearray": "da2136" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bfa1" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d57f9c7f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5abaabfebc040513" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5819780067699490729" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a5ec798fcc" + } + ] + } + } + ] + }, + "cborHex": "bf420406d87b9f410d1b3da364bdd497f01f46688190ed9cce1b652002024a4eb6e6ff4c05cd588127e9a5043bbb76c31bb3ea0c751793ab69440707ed0445018a6b006a472b568a4030e4d0d8669f1b5f22a1f862fa86f39f4be11aa64d94c1e69a0430c143da2136ffff41919f42bfa1ff44d57f9c7fd905039f485abaabfebc0405131b50c4032316207fa90e45a5ec798fccffff", + "cborBytes": [ + 191, 66, 4, 6, 216, 123, 159, 65, 13, 27, 61, 163, 100, 189, 212, 151, 240, 31, 70, 104, 129, 144, 237, 156, 206, + 27, 101, 32, 2, 2, 74, 78, 182, 230, 255, 76, 5, 205, 88, 129, 39, 233, 165, 4, 59, 187, 118, 195, 27, 179, 234, + 12, 117, 23, 147, 171, 105, 68, 7, 7, 237, 4, 69, 1, 138, 107, 0, 106, 71, 43, 86, 138, 64, 48, 228, 208, 216, + 102, 159, 27, 95, 34, 161, 248, 98, 250, 134, 243, 159, 75, 225, 26, 166, 77, 148, 193, 230, 154, 4, 48, 193, 67, + 218, 33, 54, 255, 255, 65, 145, 159, 66, 191, 161, 255, 68, 213, 127, 156, 127, 217, 5, 3, 159, 72, 90, 186, 171, + 254, 188, 4, 5, 19, 27, 80, 196, 3, 35, 22, 32, 127, 169, 14, 69, 165, 236, 121, 143, 204, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 112, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f305fe00058bb2022f4694" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1596276755264533096" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "806640223134296445" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bdfb" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2606fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "218578608252317533" + } + } + ] + }, + "cborHex": "d905029f9f4bf305fe00058bb2022f4694d8669f1b16271d4060c172689f021b0b31c3025976297dffff1bfffffffffffffffa42bdfbff432606fd1b03088c160c60ef5dff", + "cborBytes": [ + 217, 5, 2, 159, 159, 75, 243, 5, 254, 0, 5, 139, 178, 2, 47, 70, 148, 216, 102, 159, 27, 22, 39, 29, 64, 96, 193, + 114, 104, 159, 2, 27, 11, 49, 195, 2, 89, 118, 41, 125, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 250, 66, + 189, 251, 255, 67, 38, 6, 253, 27, 3, 8, 140, 22, 12, 96, 239, 93, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 113, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + "cborHex": "d87b9f0cff", + "cborBytes": [216, 123, 159, 12, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 114, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15669477603304724299" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aff2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12305390749513287640" + } + } + ] + } + ] + }, + "cborHex": "9fd87f9f1bd9752adc18ead74b42aff21baac587b09f1e07d8ffff", + "cborBytes": [ + 159, 216, 127, 159, 27, 217, 117, 42, 220, 24, 234, 215, 75, 66, 175, 242, 27, 170, 197, 135, 176, 159, 30, 7, + 216, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 115, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14495500826700668522" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5055570125910661577" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf961263b0da52" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15084327723139740146" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11432413550143571736" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14144784434289542177" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10302365326514996167" + } + }, + { + "_tag": "ByteArray", + "bytearray": "be176ff6f38a17aac0fe" + }, + { + "_tag": "ByteArray", + "bytearray": "a0c147" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "197087350462812552" + } + }, + { + "_tag": "ByteArray", + "bytearray": "46fe24c8" + } + ] + }, + "cborHex": "d8669f1bc92a5d3390dfde6a9f9fa0bf1b4628fe3e73fb59c947cf961263b0da521bd1564c24dd5231f21b9ea8178d65ab8718ff9f1bc44c5e802e4d84211b8ef95aae213a43c74abe176ff6f38a17aac0fe43a0c147ffffa01b02bc31e6aa0f11884446fe24c8ffff", + "cborBytes": [ + 216, 102, 159, 27, 201, 42, 93, 51, 144, 223, 222, 106, 159, 159, 160, 191, 27, 70, 40, 254, 62, 115, 251, 89, + 201, 71, 207, 150, 18, 99, 176, 218, 82, 27, 209, 86, 76, 36, 221, 82, 49, 242, 27, 158, 168, 23, 141, 101, 171, + 135, 24, 255, 159, 27, 196, 76, 94, 128, 46, 77, 132, 33, 27, 142, 249, 90, 174, 33, 58, 67, 199, 74, 190, 23, + 111, 246, 243, 138, 23, 170, 192, 254, 67, 160, 193, 71, 255, 255, 160, 27, 2, 188, 49, 230, 170, 15, 17, 136, 68, + 70, 254, 36, 200, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 116, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b955e0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4741701078127099063" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2441662229863578370" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf0743b955e01b41cde80208da3cb7d8669f1b21e286dc9081bb0280ffff", + "cborBytes": [ + 191, 7, 67, 185, 85, 224, 27, 65, 205, 232, 2, 8, 218, 60, 183, 216, 102, 159, 27, 33, 226, 134, 220, 144, 129, + 187, 2, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 117, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16730724856356013547" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "04077207" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "440497805468100680" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6bac581ea00412209edc1fb8" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6134876116154516721" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa892a3eddcdc93f" + }, + { + "_tag": "ByteArray", + "bytearray": "a72b21a9e9ed8f81" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17814571101725316134" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b853" + }, + { + "_tag": "ByteArray", + "bytearray": "741d76360c5933353ce32f66" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5dd33374d9c243d9a3af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1932015864485894751" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9319583980608554287" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "195692470001932930" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5e616f3132b5d73776cf" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11600145866213331503" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11679185444049769221" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3243596537499744972" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14460244974595487658" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1683074090301211452" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14558108012588608647" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0448f8358dad5cd24" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15671421034829780795" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11797622140071057424" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "059fd3f070d4f9" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19f9f9f1be82f799d19e605ebff4404077207d8669f1bfffffffffffffff79f1b061cf66b9343e8484c6bac581ea00412209edc1fb8ffffffd8799fd8669f1b55237552dc6b04f19f48aa892a3eddcdc93f48a72b21a9e9ed8f811bf73a12080846d42642b8534c741d76360c5933353ce32f66ffff4a5dd33374d9c243d9a3af1b1acfe6314719da5fd8669f1b8155d040ca98052f80ffffd905059f9f1b02b73d43bfaf1a824a5e616f3132b5d73776cfff1ba0fbff34825c922f80bf1ba214cd484a7fd3051b2d0391dd945bfacc1bc8ad1c30d3e437aa1b175b7af7c311433c1bca08ca1af41cac8749e0448f8358dad5cd241bd97c1266829d173b1ba3b992d475381810ffffa09f47059fd3f070d4f9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 159, 159, 27, 232, 47, 121, 157, 25, 230, 5, 235, + 255, 68, 4, 7, 114, 7, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 27, 6, 28, 246, 107, 147, + 67, 232, 72, 76, 107, 172, 88, 30, 160, 4, 18, 32, 158, 220, 31, 184, 255, 255, 255, 216, 121, 159, 216, 102, 159, + 27, 85, 35, 117, 82, 220, 107, 4, 241, 159, 72, 170, 137, 42, 62, 221, 205, 201, 63, 72, 167, 43, 33, 169, 233, + 237, 143, 129, 27, 247, 58, 18, 8, 8, 70, 212, 38, 66, 184, 83, 76, 116, 29, 118, 54, 12, 89, 51, 53, 60, 227, 47, + 102, 255, 255, 74, 93, 211, 51, 116, 217, 194, 67, 217, 163, 175, 27, 26, 207, 230, 49, 71, 25, 218, 95, 216, 102, + 159, 27, 129, 85, 208, 64, 202, 152, 5, 47, 128, 255, 255, 217, 5, 5, 159, 159, 27, 2, 183, 61, 67, 191, 175, 26, + 130, 74, 94, 97, 111, 49, 50, 181, 215, 55, 118, 207, 255, 27, 160, 251, 255, 52, 130, 92, 146, 47, 128, 191, 27, + 162, 20, 205, 72, 74, 127, 211, 5, 27, 45, 3, 145, 221, 148, 91, 250, 204, 27, 200, 173, 28, 48, 211, 228, 55, + 170, 27, 23, 91, 122, 247, 195, 17, 67, 60, 27, 202, 8, 202, 26, 244, 28, 172, 135, 73, 224, 68, 143, 131, 88, + 218, 213, 205, 36, 27, 217, 124, 18, 102, 130, 157, 23, 59, 27, 163, 185, 146, 212, 117, 56, 24, 16, 255, 255, + 160, 159, 71, 5, 159, 211, 240, 112, 212, 249, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 118, + "sample": { + "_tag": "ByteArray", + "bytearray": "006ac80076ff05" + }, + "cborHex": "47006ac80076ff05", + "cborBytes": [71, 0, 106, 200, 0, 118, 255, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 119, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "210266040048255460" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76d4904c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1417820181146215780" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4719515177005719070" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2282081936185622863" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6247143180795613724" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "853c5d7e0a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9931311250704889440" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7405335158489289161" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b02eb03d9716781e44476d4904c1b13ad1bf15c99a56441a21b417f160c657d9e1e1b1fab956e12ae014f1b56b24f9fc853921c45853c5d7e0a1b89d31af6d41af6601b66c509176c7711c9ffff", + "cborBytes": [ + 159, 191, 27, 2, 235, 3, 217, 113, 103, 129, 228, 68, 118, 212, 144, 76, 27, 19, 173, 27, 241, 92, 153, 165, 100, + 65, 162, 27, 65, 127, 22, 12, 101, 125, 158, 30, 27, 31, 171, 149, 110, 18, 174, 1, 79, 27, 86, 178, 79, 159, 200, + 83, 146, 28, 69, 133, 60, 93, 126, 10, 27, 137, 211, 26, 246, 212, 26, 246, 96, 27, 102, 197, 9, 23, 108, 119, 17, + 201, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 120, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7058280658767510548" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16829726639735047784" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b98f6cda351d67f0df17ea" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3117035734978048477" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1969335467130142698" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2f2849" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "16f4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14841521127997060315" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9123854480403121906" + } + }, + { + "_tag": "ByteArray", + "bytearray": "997951" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8368639541873104817" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f1b61f40cdcded8fc141be98f33360c5606684bb98f6cda351d67f0df17ea9f1b2b41ef7c7790b1ddd8669f1b1b547c2c61debfea9f432f2849ffff4216f4d8669f1bcdf7acd508b834db9f1b7e9e714f46c8c6f2439979511b742361530aa257b1ffff80ffff", + "cborBytes": [ + 159, 27, 97, 244, 12, 220, 222, 216, 252, 20, 27, 233, 143, 51, 54, 12, 86, 6, 104, 75, 185, 143, 108, 218, 53, + 29, 103, 240, 223, 23, 234, 159, 27, 43, 65, 239, 124, 119, 144, 177, 221, 216, 102, 159, 27, 27, 84, 124, 44, 97, + 222, 191, 234, 159, 67, 47, 40, 73, 255, 255, 66, 22, 244, 216, 102, 159, 27, 205, 247, 172, 213, 8, 184, 52, 219, + 159, 27, 126, 158, 113, 79, 70, 200, 198, 242, 67, 153, 121, 81, 27, 116, 35, 97, 83, 10, 162, 87, 177, 255, 255, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 121, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11657967944756348620" + } + }, + "cborHex": "1ba1c96c144617c6cc", + "cborBytes": [27, 161, 201, 108, 20, 70, 23, 198, 204], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 122, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0634b3b4d1963991a2df1b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10252911606475472971" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1673453134225682874" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b825fc9dd82d9617c69cd96d" + }, + { + "_tag": "ByteArray", + "bytearray": "bc7b280b4577e0ce" + }, + { + "_tag": "ByteArray", + "bytearray": "e6ff2c5d67359d18" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc63ddc99989e741c6cd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e5d1fd585191cb4f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11659779007987581061" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3596041163446373171" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cbaafcbd26a988822b" + }, + { + "_tag": "ByteArray", + "bytearray": "22c21fa3c11b23ef40" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c81c504552bdbc4b0043" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e42785ab8a94087d38d600" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12309693213265979554" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e567224bb61c8e9356" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2806649372140194603" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13908038092230015332" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e93b71add52c64b941d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2344f628c6b03a1ee1a1" + } + } + ] + }, + "cborHex": "bf4b0634b3b4d1963991a2df1bd8669f1b8e49a8c8a973404b9f1b17394cc25dc931ba4cb825fc9dd82d9617c69cd96d48bc7b280b4577e0ce48e6ff2c5d67359d18ffff4abc63ddc99989e741c6cd9f48e5d1fd585191cb4f1ba1cfdb3b4aa800851b31e7b462b0e74b3349cbaafcbd26a988822b4922c21fa3c11b23ef40ff4ac81c504552bdbc4b0043804be42785ab8a94087d38d600d8669f1baad4d0c206c168a29f49e567224bb61c8e93561b26f338bbd37d4b2b1bc10346f4f9f8b964ffff4ae93b71add52c64b941d54a2344f628c6b03a1ee1a1ff", + "cborBytes": [ + 191, 75, 6, 52, 179, 180, 209, 150, 57, 145, 162, 223, 27, 216, 102, 159, 27, 142, 73, 168, 200, 169, 115, 64, 75, + 159, 27, 23, 57, 76, 194, 93, 201, 49, 186, 76, 184, 37, 252, 157, 216, 45, 150, 23, 198, 156, 217, 109, 72, 188, + 123, 40, 11, 69, 119, 224, 206, 72, 230, 255, 44, 93, 103, 53, 157, 24, 255, 255, 74, 188, 99, 221, 201, 153, 137, + 231, 65, 198, 205, 159, 72, 229, 209, 253, 88, 81, 145, 203, 79, 27, 161, 207, 219, 59, 74, 168, 0, 133, 27, 49, + 231, 180, 98, 176, 231, 75, 51, 73, 203, 170, 252, 189, 38, 169, 136, 130, 43, 73, 34, 194, 31, 163, 193, 27, 35, + 239, 64, 255, 74, 200, 28, 80, 69, 82, 189, 188, 75, 0, 67, 128, 75, 228, 39, 133, 171, 138, 148, 8, 125, 56, 214, + 0, 216, 102, 159, 27, 170, 212, 208, 194, 6, 193, 104, 162, 159, 73, 229, 103, 34, 75, 182, 28, 142, 147, 86, 27, + 38, 243, 56, 187, 211, 125, 75, 43, 27, 193, 3, 70, 244, 249, 248, 185, 100, 255, 255, 74, 233, 59, 113, 173, 213, + 44, 100, 185, 65, 213, 74, 35, 68, 246, 40, 198, 176, 58, 30, 225, 161, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 123, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "cborHex": "1bfffffffffffffff8", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 248], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 124, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "853575534784535920" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9f66" + }, + { + "_tag": "ByteArray", + "bytearray": "e866a4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15119934998646616422" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3397730844396933438" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14862992443261493743" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cce0da8832381cf3" + } + ] + } + } + ] + }, + "cborHex": "bf1b0bd8826d2bcbdd709f429f6643e866a41bd1d4ccc5bd53f166ff1b2f272a3376aad13ed8669f1bce43f4e12feaa1ef9f48cce0da8832381cf3ffffff", + "cborBytes": [ + 191, 27, 11, 216, 130, 109, 43, 203, 221, 112, 159, 66, 159, 102, 67, 232, 102, 164, 27, 209, 212, 204, 197, 189, + 83, 241, 102, 255, 27, 47, 39, 42, 51, 118, 170, 209, 62, 216, 102, 159, 27, 206, 67, 244, 225, 47, 234, 161, 239, + 159, 72, 204, 224, 218, 136, 50, 56, 28, 243, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 125, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1871374740556740031" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b969049c0c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17817958712741722539" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9771873168664652466" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2709576554178436052" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf1b19f875695c85f5bf45b969049c0c1bf7461b0baf8bf9ab1b879caadf906d6ab2ffbf1b259a598523885bd413ff1bfffffffffffffffdd9050c80ff", + "cborBytes": [ + 159, 191, 27, 25, 248, 117, 105, 92, 133, 245, 191, 69, 185, 105, 4, 156, 12, 27, 247, 70, 27, 11, 175, 139, 249, + 171, 27, 135, 156, 170, 223, 144, 109, 106, 178, 255, 191, 27, 37, 154, 89, 133, 35, 136, 91, 212, 19, 255, 27, + 255, 255, 255, 255, 255, 255, 255, 253, 217, 5, 12, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 126, + "sample": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "cborHex": "4100", + "cborBytes": [65, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 127, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4076182990565988931" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da39a4db0fecca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9516427537741318467" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1891863011307019391" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10457145924449241734" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4067255127463224506" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "121b2e7e5987cd02b170cf38" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2090605935401880694" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + } + ] + }, + "cborHex": "9f9fbf1b389182d5582cda4347da39a4db0fecca1b8411246ce5d109431b1a413f62a0a7dc7f1b911f3ed05f388a861b3871cafd3b54e4baff1bfffffffffffffff61bfffffffffffffffbff4c121b2e7e5987cd02b170cf38d8669f1b1d03530590f3cc769f14ffffff", + "cborBytes": [ + 159, 159, 191, 27, 56, 145, 130, 213, 88, 44, 218, 67, 71, 218, 57, 164, 219, 15, 236, 202, 27, 132, 17, 36, 108, + 229, 209, 9, 67, 27, 26, 65, 63, 98, 160, 167, 220, 127, 27, 145, 31, 62, 208, 95, 56, 138, 134, 27, 56, 113, 202, + 253, 59, 84, 228, 186, 255, 27, 255, 255, 255, 255, 255, 255, 255, 246, 27, 255, 255, 255, 255, 255, 255, 255, + 251, 255, 76, 18, 27, 46, 126, 89, 135, 205, 2, 177, 112, 207, 56, 216, 102, 159, 27, 29, 3, 83, 5, 144, 243, 204, + 118, 159, 20, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 128, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2306723911826618374" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ee54d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10287691898708678300" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db23" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1920bf82baefd13e" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2003212d1f533806bf435ee54d1b8ec539467d31d69c42db23481920bf82baefd13effff", + "cborBytes": [ + 191, 27, 32, 3, 33, 45, 31, 83, 56, 6, 191, 67, 94, 229, 77, 27, 142, 197, 57, 70, 125, 49, 214, 156, 66, 219, 35, + 72, 25, 32, 191, 130, 186, 239, 209, 62, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 129, + "sample": { + "_tag": "ByteArray", + "bytearray": "5f8e43b3922eaa1d6a" + }, + "cborHex": "495f8e43b3922eaa1d6a", + "cborBytes": [73, 95, 142, 67, 179, 146, 46, 170, 29, 106], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 130, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "cborHex": "1bfffffffffffffff4", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 244], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 131, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3acc45e2d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6e58a6bc5fc6e2b659410" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb8e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1574e5" + } + } + ] + }, + "cborHex": "bf453acc45e2d14be6e58a6bc5fc6e2b65941042cb8e431574e5ff", + "cborBytes": [ + 191, 69, 58, 204, 69, 226, 209, 75, 230, 229, 138, 107, 197, 252, 110, 43, 101, 148, 16, 66, 203, 142, 67, 21, + 116, 229, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 132, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c05dd53bef544" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc51" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19bd6d3139dcfe1d1240477d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17988906477036183095" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44819ffc5adcfa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8045928212333131530" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "944c5986ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36afb4a4dd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9de0a423fe4aa67a89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dedb0145f8767fd0fa75" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ead56d2a7b2571cf3ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7103656799223763234" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2308689490612519040" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1427847482139361972" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17557705153943254403" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10642606883030583176" + } + }, + { + "_tag": "ByteArray", + "bytearray": "43d38200c40378d2c4b3c426" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17014461375729578991" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8da7932c85562d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15221794490223600795" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae693c920798b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8497" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f56b6f1d1198c1ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6514587344673877951" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbff7a72d7cd34" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5003381499611221755" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf470c05dd53bef54442cc514c19bd6d3139dcfe1d1240477d1bf9a56f21ad771e374744819ffc5adcfa1b6fa8e1147868f70a45944c5986ec4536afb4a4dd499de0a423fe4aa67a894adedb0145f8767fd0fa754a9ead56d2a7b2571cf3ed1b62954238dc055122ffd8669f1b200a1cdc18a300809f1b13d0bbb84e5a42b49f1bf3a97fd013d535831b93b22292bb2a47884c43d38200c40378d2c4b3c4261bec1f827988f733efffffffbf478da7932c85562d1bd33ead70b9c6a49b47ae693c920798b742849748f56b6f1d1198c1ea1b5a6876ac998aafbf47fbff7a72d7cd341b456f94f700168efbffff", + "cborBytes": [ + 159, 191, 71, 12, 5, 221, 83, 190, 245, 68, 66, 204, 81, 76, 25, 189, 109, 49, 57, 220, 254, 29, 18, 64, 71, 125, + 27, 249, 165, 111, 33, 173, 119, 30, 55, 71, 68, 129, 159, 252, 90, 220, 250, 27, 111, 168, 225, 20, 120, 104, + 247, 10, 69, 148, 76, 89, 134, 236, 69, 54, 175, 180, 164, 221, 73, 157, 224, 164, 35, 254, 74, 166, 122, 137, 74, + 222, 219, 1, 69, 248, 118, 127, 208, 250, 117, 74, 158, 173, 86, 210, 167, 178, 87, 28, 243, 237, 27, 98, 149, 66, + 56, 220, 5, 81, 34, 255, 216, 102, 159, 27, 32, 10, 28, 220, 24, 163, 0, 128, 159, 27, 19, 208, 187, 184, 78, 90, + 66, 180, 159, 27, 243, 169, 127, 208, 19, 213, 53, 131, 27, 147, 178, 34, 146, 187, 42, 71, 136, 76, 67, 211, 130, + 0, 196, 3, 120, 210, 196, 179, 196, 38, 27, 236, 31, 130, 121, 136, 247, 51, 239, 255, 255, 255, 191, 71, 141, + 167, 147, 44, 133, 86, 45, 27, 211, 62, 173, 112, 185, 198, 164, 155, 71, 174, 105, 60, 146, 7, 152, 183, 66, 132, + 151, 72, 245, 107, 111, 29, 17, 152, 193, 234, 27, 90, 104, 118, 172, 153, 138, 175, 191, 71, 251, 255, 122, 114, + 215, 205, 52, 27, 69, 111, 148, 247, 0, 22, 142, 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 133, + "sample": { + "_tag": "ByteArray", + "bytearray": "1cff" + }, + "cborHex": "421cff", + "cborBytes": [66, 28, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 134, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "238bd7e0fa40acdb12e813" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e19a50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15270289835652878976" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2086f249fe68a1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ded140a3d65ed9bee4f22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adfc4954eccf7ea45c3a40" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "519492e11e2254ba97f251" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8945758094746034107" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "777771fdfac08924318bbf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8364112037815490989" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1cee5e2794d2c059c4f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11850276733331869781" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e26aab318672" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18100002208733069176" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9f5324" + }, + { + "_tag": "ByteArray", + "bytearray": "25" + }, + { + "_tag": "ByteArray", + "bytearray": "67518007e214319c844ada" + }, + { + "_tag": "ByteArray", + "bytearray": "a456dbd0e8b3cf" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7796439537049746561" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6431589925510697869" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2e070d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3598974988060330483" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "502229127283892351" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15040886712049576879" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3840598985863795990" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a9976336" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "87" + } + ] + }, + "cborHex": "9f9fbf4b238bd7e0fa40acdb12e81341a043e19a501bd3eaf7b337591280ff472086f249fe68a1bf4b4ded140a3d65ed9bee4f224badfc4954eccf7ea45c3a404b519492e11e2254ba97f2511b7c25b7972be99fbb4b777771fdfac08924318bbf1b74134b955b8f99ad4ae1cee5e2794d2c059c4f1ba474a3e74c52905546e26aab3186721bfb30201c6551ff78ff9f439f532441254b67518007e214319c844ada47a456dbd0e8b3cfffffd8669f1b6c3284739ea93c8180ffd8669f1b594198f6130bd38d9fa09f432e070d1b31f220aef6da09f31b06f846baf79c607fffd8669f1bd0bbf6c64a9babaf9f1b354c8c6de523151644a9976336ffffffff4187ff", + "cborBytes": [ + 159, 159, 191, 75, 35, 139, 215, 224, 250, 64, 172, 219, 18, 232, 19, 65, 160, 67, 225, 154, 80, 27, 211, 234, + 247, 179, 55, 89, 18, 128, 255, 71, 32, 134, 242, 73, 254, 104, 161, 191, 75, 77, 237, 20, 10, 61, 101, 237, 155, + 238, 79, 34, 75, 173, 252, 73, 84, 236, 207, 126, 164, 92, 58, 64, 75, 81, 148, 146, 225, 30, 34, 84, 186, 151, + 242, 81, 27, 124, 37, 183, 151, 43, 233, 159, 187, 75, 119, 119, 113, 253, 250, 192, 137, 36, 49, 139, 191, 27, + 116, 19, 75, 149, 91, 143, 153, 173, 74, 225, 206, 229, 226, 121, 77, 44, 5, 156, 79, 27, 164, 116, 163, 231, 76, + 82, 144, 85, 70, 226, 106, 171, 49, 134, 114, 27, 251, 48, 32, 28, 101, 81, 255, 120, 255, 159, 67, 159, 83, 36, + 65, 37, 75, 103, 81, 128, 7, 226, 20, 49, 156, 132, 74, 218, 71, 164, 86, 219, 208, 232, 179, 207, 255, 255, 216, + 102, 159, 27, 108, 50, 132, 115, 158, 169, 60, 129, 128, 255, 216, 102, 159, 27, 89, 65, 152, 246, 19, 11, 211, + 141, 159, 160, 159, 67, 46, 7, 13, 27, 49, 242, 32, 174, 246, 218, 9, 243, 27, 6, 248, 70, 186, 247, 156, 96, 127, + 255, 216, 102, 159, 27, 208, 187, 246, 198, 74, 155, 171, 175, 159, 27, 53, 76, 140, 109, 229, 35, 21, 22, 68, + 169, 151, 99, 54, 255, 255, 255, 255, 65, 135, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 135, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "197870631225630faffe" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e1f2f1f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9296998d6b3ff93be7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffa2912fb708982feb6f86" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9561834697695983953" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "38cad397591b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7866032361304970903" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12692366525042722632" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8680077653576862053" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12161685771282511508" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17001116125752675613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10465164288397157216" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17687780704917032058" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13097931954361025331" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4a197870631225630faffebf440e1f2f1f499296998d6b3ff93be74bffa2912fb708982feb6f861b84b275ff2d2c7951ffd905009f4638cad397591bbf1b6d29c2c1af4f56971bb024581b843b07481b7875d4a30c4149651ba8c6fcc60b3776941bebf0190a64a74d1d1b913bbb79360423601bf5779ed655968c7a1bb5c533b777ed4333ffffff", + "cborBytes": [ + 159, 74, 25, 120, 112, 99, 18, 37, 99, 15, 175, 254, 191, 68, 14, 31, 47, 31, 73, 146, 150, 153, 141, 107, 63, + 249, 59, 231, 75, 255, 162, 145, 47, 183, 8, 152, 47, 235, 111, 134, 27, 132, 178, 117, 255, 45, 44, 121, 81, 255, + 217, 5, 0, 159, 70, 56, 202, 211, 151, 89, 27, 191, 27, 109, 41, 194, 193, 175, 79, 86, 151, 27, 176, 36, 88, 27, + 132, 59, 7, 72, 27, 120, 117, 212, 163, 12, 65, 73, 101, 27, 168, 198, 252, 198, 11, 55, 118, 148, 27, 235, 240, + 25, 10, 100, 167, 77, 29, 27, 145, 59, 187, 121, 54, 4, 35, 96, 27, 245, 119, 158, 214, 85, 150, 140, 122, 27, + 181, 197, 51, 183, 119, 237, 67, 51, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 136, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "cborHex": "0a", + "cborBytes": [10], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 137, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "105f8f6441" + } + ] + }, + "cborHex": "9f45105f8f6441ff", + "cborBytes": [159, 69, 16, 95, 143, 100, 65, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 138, + "sample": { + "_tag": "ByteArray", + "bytearray": "d31609" + }, + "cborHex": "43d31609", + "cborBytes": [67, 211, 22, 9], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 139, + "sample": { + "_tag": "ByteArray", + "bytearray": "3136e4" + }, + "cborHex": "433136e4", + "cborBytes": [67, 49, 54, 228], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 140, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7107474800154994982" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14647051604646045252" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7ba82534b990209bfe8366e3" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ff3c" + } + ] + }, + "cborHex": "d8669f1b62a2d2ac794769269fd8669f1bcb44c7d4bdbe26449fa04c7ba82534b990209bfe8366e3ffff42ff3cffff", + "cborBytes": [ + 216, 102, 159, 27, 98, 162, 210, 172, 121, 71, 105, 38, 159, 216, 102, 159, 27, 203, 68, 199, 212, 189, 190, 38, + 68, 159, 160, 76, 123, 168, 37, 52, 185, 144, 32, 155, 254, 131, 102, 227, 255, 255, 66, 255, 60, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 141, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2894417113802954500" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "621135000814034669" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6929841232144613019" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16137109169997166452" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7228976235364365624" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b282b09079c0957041b089eb6fe09151eed1b602bbde27fd5be9b1bdff2874ac36137741b64527b95d6a23538a0ff", + "cborBytes": [ + 191, 27, 40, 43, 9, 7, 156, 9, 87, 4, 27, 8, 158, 182, 254, 9, 21, 30, 237, 27, 96, 43, 189, 226, 127, 213, 190, + 155, 27, 223, 242, 135, 74, 195, 97, 55, 116, 27, 100, 82, 123, 149, 214, 162, 53, 56, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 142, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6873488681148503223" + } + }, + "cborHex": "1b5f638989c78654b7", + "cborBytes": [27, 95, 99, 137, 137, 199, 134, 84, 183], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 143, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10688631630235423614" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f061b9455a5d63f2fd37effff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 6, 27, 148, 85, 165, 214, 63, 47, 211, 126, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 144, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f80ff", + "cborBytes": [159, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 145, + "sample": { + "_tag": "ByteArray", + "bytearray": "e704" + }, + "cborHex": "42e704", + "cborBytes": [66, 231, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 146, + "sample": { + "_tag": "ByteArray", + "bytearray": "504cb4" + }, + "cborHex": "43504cb4", + "cborBytes": [67, 80, 76, 180], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 147, + "sample": { + "_tag": "ByteArray", + "bytearray": "7c" + }, + "cborHex": "417c", + "cborBytes": [65, 124], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 148, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e39fea8e26558afe41" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7186086306570358317" + } + } + ] + }, + "cborHex": "d9050c9f9f80ff49e39fea8e26558afe411b63ba1b6c1c6cce2dff", + "cborBytes": [ + 217, 5, 12, 159, 159, 128, 255, 73, 227, 159, 234, 142, 38, 85, 138, 254, 65, 27, 99, 186, 27, 108, 28, 108, 206, + 45, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 149, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11892174243611723030" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d00003fd" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "881aeb49197e20e9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1728cf6b5516a592" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e52b3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe8df999d2cd0104ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa0106" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb010100" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4240738309122602076" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff5d8669f1ba5097d779586c5169f44d00003fdffff48881aeb49197e20e9bf481728cf6b5516a592432e52b349fe8df999d2cd0104ff43fa0106ff44fb0101001b3ada210614a4b45cff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 245, 216, 102, 159, 27, 165, 9, 125, 119, 149, 134, 197, 22, 159, 68, + 208, 0, 3, 253, 255, 255, 72, 136, 26, 235, 73, 25, 126, 32, 233, 191, 72, 23, 40, 207, 107, 85, 22, 165, 146, 67, + 46, 82, 179, 73, 254, 141, 249, 153, 210, 205, 1, 4, 255, 67, 250, 1, 6, 255, 68, 251, 1, 1, 0, 27, 58, 218, 33, + 6, 20, 164, 180, 92, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 150, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7230771" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16303679070192183088" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + } + } + ] + }, + "cborHex": "bf44c7230771d8669f1be2424dbbd6c6a7309f021bffffffffffffffefffffff", + "cborBytes": [ + 191, 68, 199, 35, 7, 113, 216, 102, 159, 27, 226, 66, 77, 187, 214, 198, 167, 48, 159, 2, 27, 255, 255, 255, 255, + 255, 255, 255, 239, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 151, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "cborHex": "1bffffffffffffffec", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 236], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 152, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6234785785973434172" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13075383163133511685" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fd90a383a1a4705" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f324a65ccdcd9d3df5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14628406208550419808" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2660543077328340362" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ee246" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3552533360170443497" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "304f42da54d7f2fa76944d55" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11381597303369298600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "459539fc784418ecf525" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12174423127706668322" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7783880397035706974" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15795483720973262602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17510194914609626003" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18424639071518821049" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ceaf39ee757b4131b96db3ef" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8254555524203212582" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4147577296315441792" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13805270054529465366" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f081d5daf75ecf4a21dcf7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10489519659955763805" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6966283774776878558" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0e26a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7512033597616147790" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb90b0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7963895803523302232" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bef567e35d83" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14141585027977766724" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15801816422867924104" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd905099f9f1b568668a39799e73c05ffffbf1bb57517b5e4b24805489fd90a383a1a4705ff8049f324a65ccdcd9d3df5d8669f1bcb0289f12ac43d609fbf1b24ec25d529c7c58a434ee2461b314d2244d9af22e94c304f42da54d7f2fa76944d551b9df38e71f3def2a84a459539fc784418ecf5251ba8f43d54f0418d221b6c05e5faf7709a5e1bdb34d4c194139f0a1bf300b58079287b931bffb1779e1ca98ab94cceaf39ee757b4131b96db3efff1b728e1283c6deef269f1b398f2793815b62801bbf962bf89c90fc164bf081d5daf75ecf4a21dcf71b9192428e0c23ba5dffbf1b60ad362f2824a5de43b0e26a1b68401ac1aeb5cd4e43bb90b01b6e857109ed3b035846bef567e35d831bc44100a85998e7441bdb4b5450a2f9f488ffffffff", + "cborBytes": [ + 159, 217, 5, 9, 159, 159, 27, 86, 134, 104, 163, 151, 153, 231, 60, 5, 255, 255, 191, 27, 181, 117, 23, 181, 228, + 178, 72, 5, 72, 159, 217, 10, 56, 58, 26, 71, 5, 255, 128, 73, 243, 36, 166, 92, 205, 205, 157, 61, 245, 216, 102, + 159, 27, 203, 2, 137, 241, 42, 196, 61, 96, 159, 191, 27, 36, 236, 37, 213, 41, 199, 197, 138, 67, 78, 226, 70, + 27, 49, 77, 34, 68, 217, 175, 34, 233, 76, 48, 79, 66, 218, 84, 215, 242, 250, 118, 148, 77, 85, 27, 157, 243, + 142, 113, 243, 222, 242, 168, 74, 69, 149, 57, 252, 120, 68, 24, 236, 245, 37, 27, 168, 244, 61, 84, 240, 65, 141, + 34, 27, 108, 5, 229, 250, 247, 112, 154, 94, 27, 219, 52, 212, 193, 148, 19, 159, 10, 27, 243, 0, 181, 128, 121, + 40, 123, 147, 27, 255, 177, 119, 158, 28, 169, 138, 185, 76, 206, 175, 57, 238, 117, 123, 65, 49, 185, 109, 179, + 239, 255, 27, 114, 142, 18, 131, 198, 222, 239, 38, 159, 27, 57, 143, 39, 147, 129, 91, 98, 128, 27, 191, 150, 43, + 248, 156, 144, 252, 22, 75, 240, 129, 213, 218, 247, 94, 207, 74, 33, 220, 247, 27, 145, 146, 66, 142, 12, 35, + 186, 93, 255, 191, 27, 96, 173, 54, 47, 40, 36, 165, 222, 67, 176, 226, 106, 27, 104, 64, 26, 193, 174, 181, 205, + 78, 67, 187, 144, 176, 27, 110, 133, 113, 9, 237, 59, 3, 88, 70, 190, 245, 103, 227, 93, 131, 27, 196, 65, 0, 168, + 89, 152, 231, 68, 27, 219, 75, 84, 80, 162, 249, 244, 136, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 153, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15654f6d8c77" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + } + } + ] + }, + "cborHex": "bf4615654f6d8c779f09ffff", + "cborBytes": [191, 70, 21, 101, 79, 109, 140, 119, 159, 9, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 154, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "cborHex": "10", + "cborBytes": [16], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 155, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4803233781316724269" + } + }, + "cborHex": "1b42a883acec8a262d", + "cborBytes": [27, 66, 168, 131, 172, 236, 138, 38, 45], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 156, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "45f8a128e9ad199903" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "649eb67d3135" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b61" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aaf3b713ba" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10227693305879276059" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4945f8a128e9ad199903bf46649eb67d3135423b61ff45aaf3b713bad8669f1b8df010df80932a1b80ffff", + "cborBytes": [ + 191, 73, 69, 248, 161, 40, 233, 173, 25, 153, 3, 191, 70, 100, 158, 182, 125, 49, 53, 66, 59, 97, 255, 69, 170, + 243, 183, 19, 186, 216, 102, 159, 27, 141, 240, 16, 223, 128, 147, 42, 27, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 157, + "sample": { + "_tag": "ByteArray", + "bytearray": "29017e971705011605fefb06" + }, + "cborHex": "4c29017e971705011605fefb06", + "cborBytes": [76, 41, 1, 126, 151, 23, 5, 1, 22, 5, 254, 251, 6], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 158, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "153c18c41c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "659ec0b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61508bb57adcd0a6b9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8006822621151975712" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2382602830046223452" + } + }, + { + "_tag": "ByteArray", + "bytearray": "42210be45098a120346bf6e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14544071706679102990" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2a9c6405f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15848861387821060479" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aac0cb04de4da158e3c6" + }, + { + "_tag": "ByteArray", + "bytearray": "4c7f862a42526ded7a786d43" + }, + { + "_tag": "ByteArray", + "bytearray": "45c0139fb0b8b7c855" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d06ce73c5aca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7559504803203530422" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7725f8c6f0a59cd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3340323313514042525" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8017482907710809301" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4034008725085593901" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e139ce80630e622933e0f052" + } + } + ] + } + } + ] + }, + "cborHex": "bf45153c18c41c44659ec0b94961508bb57adcd0a6b9d8669f1b6f1df2c0815359209f1b2110b4a67dbedc5c4c42210be45098a120346bf6e51bc9d6ec28d06ace0effff45a2a9c6405fd8669f1bdbf277761b7a917f9f4aaac0cb04de4da158e3c64c4c7f862a42526ded7a786d434945c0139fb0b8b7c855ffff46d06ce73c5aca1b68e8c19108ce3eb648e7725f8c6f0a59cdbf1b2e5b365b18f5d49d1b6f43d239e2de64d51b37fbad8ff78da12d4ce139ce80630e622933e0f052ffff", + "cborBytes": [ + 191, 69, 21, 60, 24, 196, 28, 68, 101, 158, 192, 185, 73, 97, 80, 139, 181, 122, 220, 208, 166, 185, 216, 102, + 159, 27, 111, 29, 242, 192, 129, 83, 89, 32, 159, 27, 33, 16, 180, 166, 125, 190, 220, 92, 76, 66, 33, 11, 228, + 80, 152, 161, 32, 52, 107, 246, 229, 27, 201, 214, 236, 40, 208, 106, 206, 14, 255, 255, 69, 162, 169, 198, 64, + 95, 216, 102, 159, 27, 219, 242, 119, 118, 27, 122, 145, 127, 159, 74, 170, 192, 203, 4, 222, 77, 161, 88, 227, + 198, 76, 76, 127, 134, 42, 66, 82, 109, 237, 122, 120, 109, 67, 73, 69, 192, 19, 159, 176, 184, 183, 200, 85, 255, + 255, 70, 208, 108, 231, 60, 90, 202, 27, 104, 232, 193, 145, 8, 206, 62, 182, 72, 231, 114, 95, 140, 111, 10, 89, + 205, 191, 27, 46, 91, 54, 91, 24, 245, 212, 157, 27, 111, 67, 210, 57, 226, 222, 100, 213, 27, 55, 251, 173, 143, + 247, 141, 161, 45, 76, 225, 57, 206, 128, 99, 14, 98, 41, 51, 224, 240, 82, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 159, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "261790911146993599" + } + }, + "cborHex": "1b03a211725857a7bf", + "cborBytes": [27, 3, 162, 17, 114, 88, 87, 167, 191], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 160, + "sample": { + "_tag": "ByteArray", + "bytearray": "06af928f06cd09fe92" + }, + "cborHex": "4906af928f06cd09fe92", + "cborBytes": [73, 6, 175, 146, 143, 6, 205, 9, 254, 146], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 161, + "sample": { + "_tag": "ByteArray", + "bytearray": "a23bfc1c" + }, + "cborHex": "44a23bfc1c", + "cborBytes": [68, 162, 59, 252, 28], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 162, + "sample": { + "_tag": "ByteArray", + "bytearray": "9046fe3a575a" + }, + "cborHex": "469046fe3a575a", + "cborBytes": [70, 144, 70, 254, 58, 87, 90], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 163, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "621ba38012a3c7df59" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf49621ba38012a3c7df59a0ff", + "cborBytes": [191, 73, 98, 27, 163, 128, 18, 163, 199, 223, 89, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 164, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10406256437505921340" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4459021828319082287" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16479210603692692613" + } + } + } + ] + }, + "cborHex": "bf051b906a73185f29913c1b3de1a0ba5aabf72f1be4b1eabbc3f41485ff", + "cborBytes": [ + 191, 5, 27, 144, 106, 115, 24, 95, 41, 145, 60, 27, 61, 225, 160, 186, 90, 171, 247, 47, 27, 228, 177, 234, 187, + 195, 244, 20, 133, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 165, + "sample": { + "_tag": "ByteArray", + "bytearray": "9e" + }, + "cborHex": "419e", + "cborBytes": [65, 158], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 166, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bbc47deff728" + }, + { + "_tag": "ByteArray", + "bytearray": "b731991eeca3ddf8" + } + ] + } + ] + }, + "cborHex": "d905049f9f46bbc47deff72848b731991eeca3ddf8ffff", + "cborBytes": [ + 217, 5, 4, 159, 159, 70, 187, 196, 125, 239, 247, 40, 72, 183, 49, 153, 30, 236, 163, 221, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 167, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4936556281609851714" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9086056399322333715" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1d382903bda3" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d86c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e9fc0f9c97aaef7d8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9926a3e50804" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4800022248119842226" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "98b486b67fc7" + } + ] + }, + "cborHex": "9f9f1b44822bc87b1413421b7e182827bac5c213461d382903bda3bf435d86c9490e9fc0f9c97aaef7d8469926a3e508041b429d1acd9527b5b2ffa0ff4698b486b67fc7ff", + "cborBytes": [ + 159, 159, 27, 68, 130, 43, 200, 123, 20, 19, 66, 27, 126, 24, 40, 39, 186, 197, 194, 19, 70, 29, 56, 41, 3, 189, + 163, 191, 67, 93, 134, 201, 73, 14, 159, 192, 249, 201, 122, 174, 247, 216, 70, 153, 38, 163, 229, 8, 4, 27, 66, + 157, 26, 205, 149, 39, 181, 178, 255, 160, 255, 70, 152, 180, 134, 182, 127, 199, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 168, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11288664517193558868" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "408209848720260876" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8dfbe2ae6d06c2892e2f1734" + }, + { + "_tag": "ByteArray", + "bytearray": "7e33965fb17e4a7c51c4" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6382869749819230640" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1275317123532200916" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1731727289199446779" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1764166699821624221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14205075985066660655" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18189442232394531702" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15623282792382030602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11161651625336685570" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15821512377741959179" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "739e3413f876bc47ca9c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15965591125443206258" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6423257582977225632" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f23c770570" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15519189194396762421" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f9f1b9ca9649187e0eb541b05aa40b1d2c97f0c9f4c8dfbe2ae6d06c2892e2f17344a7e33965fb17e4a7c51c4ffffd8669f1b58948238358fc9b09fbf1b11b2d62abc1c1bd41b180854cb60954afb1b187b94443b70eb9d415b1bc5229158c154932f1bfc6de156ac5d43761bd8d10cec8967630a1b9ae627042adac4021bdb914dae7cc1600b4a739e3413f876bc47ca9cffd8669f1bdd912c8a0d2bdc729f1b5923febd663113a045f23c7705701bd75f3c591e198135ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 159, 27, 156, 169, 100, 145, 135, 224, 235, 84, + 27, 5, 170, 64, 177, 210, 201, 127, 12, 159, 76, 141, 251, 226, 174, 109, 6, 194, 137, 46, 47, 23, 52, 74, 126, + 51, 150, 95, 177, 126, 74, 124, 81, 196, 255, 255, 216, 102, 159, 27, 88, 148, 130, 56, 53, 143, 201, 176, 159, + 191, 27, 17, 178, 214, 42, 188, 28, 27, 212, 27, 24, 8, 84, 203, 96, 149, 74, 251, 27, 24, 123, 148, 68, 59, 112, + 235, 157, 65, 91, 27, 197, 34, 145, 88, 193, 84, 147, 47, 27, 252, 109, 225, 86, 172, 93, 67, 118, 27, 216, 209, + 12, 236, 137, 103, 99, 10, 27, 154, 230, 39, 4, 42, 218, 196, 2, 27, 219, 145, 77, 174, 124, 193, 96, 11, 74, 115, + 158, 52, 19, 248, 118, 188, 71, 202, 156, 255, 216, 102, 159, 27, 221, 145, 44, 138, 13, 43, 220, 114, 159, 27, + 89, 35, 254, 189, 102, 49, 19, 160, 69, 242, 60, 119, 5, 112, 27, 215, 95, 60, 89, 30, 25, 129, 53, 255, 255, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 169, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6455332094883913016" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7054492900762056180" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7225093203720916854" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13120707931417477481" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca9062d2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13294509730766488409" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1754775533162009852" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fe2d3b41ac" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1026173473926927626" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6387987959731581611" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2223249698608481233" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1bcde224cc8c32999f6c7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3859805927790191304" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15608425290527876079" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16472142890210595486" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7935789251431858434" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17348127892814360374" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b586ecb1ce1e18a0cf1c2fa" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b5995f256a6bbdd389fd905049fd8669f1b61e697eabc6ff5f480ff1b6444affd14dfcf76bf1bb6161e58ddca016944ca9062d21bb87f9629ad4f83591b185a370cdaab14fcff45fe2d3b41acffbf1b0e3db3566f57d50a1b58a6b1345145f2ab1b1eda91d2548d83d14bf1bcde224cc8c32999f6c71b3590c90a8be1a2c81bd89c441ad12323ef1be498ceaf7c7a929e1b6e2196474ff581021bf0c0ee67793eef364c5b586ecb1ce1e18a0cf1c2faffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 89, 149, 242, 86, 166, 187, 221, 56, 159, 217, 5, 4, 159, 216, 102, 159, 27, 97, 230, 151, 234, + 188, 111, 245, 244, 128, 255, 27, 100, 68, 175, 253, 20, 223, 207, 118, 191, 27, 182, 22, 30, 88, 221, 202, 1, + 105, 68, 202, 144, 98, 210, 27, 184, 127, 150, 41, 173, 79, 131, 89, 27, 24, 90, 55, 12, 218, 171, 20, 252, 255, + 69, 254, 45, 59, 65, 172, 255, 191, 27, 14, 61, 179, 86, 111, 87, 213, 10, 27, 88, 166, 177, 52, 81, 69, 242, 171, + 27, 30, 218, 145, 210, 84, 141, 131, 209, 75, 241, 188, 222, 34, 76, 200, 195, 41, 153, 246, 199, 27, 53, 144, + 201, 10, 139, 225, 162, 200, 27, 216, 156, 68, 26, 209, 35, 35, 239, 27, 228, 152, 206, 175, 124, 122, 146, 158, + 27, 110, 33, 150, 71, 79, 245, 129, 2, 27, 240, 192, 238, 103, 121, 62, 239, 54, 76, 91, 88, 110, 203, 28, 225, + 225, 138, 12, 241, 194, 250, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 170, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4775011d18" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "27dc56690fe9e0ff" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2246884470338141069" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "db977dc62a35a2acb02fbb" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3886403826335260533" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6161611542837318370" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1243382133819355098" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8693682074206550391" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8123854694140972720" + } + } + ] + }, + "cborHex": "9f454775011d18a04827dc56690fe9e0ffd8669f1b1f2e898571d8bb8d9f4bdb977dc62a35a2acb02fbb9f1b35ef47b0626e9f751b5582710d76c3d2e21b11416176865eafda1b78a629c90f433977ffffff1b70bdbacd63298eb0ff", + "cborBytes": [ + 159, 69, 71, 117, 1, 29, 24, 160, 72, 39, 220, 86, 105, 15, 233, 224, 255, 216, 102, 159, 27, 31, 46, 137, 133, + 113, 216, 187, 141, 159, 75, 219, 151, 125, 198, 42, 53, 162, 172, 176, 47, 187, 159, 27, 53, 239, 71, 176, 98, + 110, 159, 117, 27, 85, 130, 113, 13, 118, 195, 210, 226, 27, 17, 65, 97, 118, 134, 94, 175, 218, 27, 120, 166, 41, + 201, 15, 67, 57, 119, 255, 255, 255, 27, 112, 189, 186, 205, 99, 41, 142, 176, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 171, + "sample": { + "_tag": "ByteArray", + "bytearray": "e70626f6787119f46ef995cc" + }, + "cborHex": "4ce70626f6787119f46ef995cc", + "cborBytes": [76, 231, 6, 38, 246, 120, 113, 25, 244, 110, 249, 149, 204], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 172, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "243645702761270025" + } + }, + "cborHex": "1b03619a79cc22cb09", + "cborBytes": [27, 3, 97, 154, 121, 204, 34, 203, 9], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 173, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5104843031905359564" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06596bc3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f23e1f3ca027ebf444cbe824" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ac0f6fc76" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b46d80bb0ded8d6cc9fbf4406596bc34cf23e1f3ca027ebf444cbe824450ac0f6fc761bfffffffffffffff1ffffff", + "cborBytes": [ + 216, 102, 159, 27, 70, 216, 11, 176, 222, 216, 214, 204, 159, 191, 68, 6, 89, 107, 195, 76, 242, 62, 31, 60, 160, + 39, 235, 244, 68, 203, 232, 36, 69, 10, 192, 246, 252, 118, 27, 255, 255, 255, 255, 255, 255, 255, 241, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 174, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b5aba" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12554494645859833576" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4bc3" + }, + { + "_tag": "ByteArray", + "bytearray": "bbf2ab41627d5c81cd9b" + } + ] + } + } + ] + }, + "cborHex": "bf438b5aba9f1bae3a865d2504d6e8424bc34abbf2ab41627d5c81cd9bffff", + "cborBytes": [ + 191, 67, 139, 90, 186, 159, 27, 174, 58, 134, 93, 37, 4, 214, 232, 66, 75, 195, 74, 187, 242, 171, 65, 98, 125, + 92, 129, 205, 155, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 175, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14287250127635152138" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4105889089028404135" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4308906077776190403" + } + }, + { + "_tag": "ByteArray", + "bytearray": "88" + }, + { + "_tag": "ByteArray", + "bytearray": "375b" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19f1bc646824b42d8fd0ad8669f1b38fb0c5f5eb0b3a780ff9f1b3bcc4f3f885f1bc3418842375b80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 27, 198, 70, 130, 75, 66, 216, 253, 10, 216, 102, + 159, 27, 56, 251, 12, 95, 94, 176, 179, 167, 128, 255, 159, 27, 59, 204, 79, 63, 136, 95, 27, 195, 65, 136, 66, + 55, 91, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 176, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9636252933594760996" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2506218953636109677" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ca0b6d5c8d" + }, + { + "_tag": "ByteArray", + "bytearray": "35a861f247" + }, + { + "_tag": "ByteArray", + "bytearray": "866b9917f9a2b8d3f39b25" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17554521564213445174" + } + }, + { + "_tag": "ByteArray", + "bytearray": "56da066298a0" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14576174591992158710" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "465cadc3d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da774a9b68" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b85bad8fcf0bb4724d8669f1b22c7e0dc1cd4dd6d9f45ca0b6d5c8d4535a861f2474b866b9917f9a2b8d3f39b251bf39e305ad4e082364656da066298a0ffff1bca48f99043c459f645465cadc3d645da774a9b6880ff", + "cborBytes": [ + 191, 27, 133, 186, 216, 252, 240, 187, 71, 36, 216, 102, 159, 27, 34, 199, 224, 220, 28, 212, 221, 109, 159, 69, + 202, 11, 109, 92, 141, 69, 53, 168, 97, 242, 71, 75, 134, 107, 153, 23, 249, 162, 184, 211, 243, 155, 37, 27, 243, + 158, 48, 90, 212, 224, 130, 54, 70, 86, 218, 6, 98, 152, 160, 255, 255, 27, 202, 72, 249, 144, 67, 196, 89, 246, + 69, 70, 92, 173, 195, 214, 69, 218, 119, 74, 155, 104, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 177, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1102579386196213027" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4059757082980621141" + } + } + ] + }, + "cborHex": "9f1b0f4d261c2ae4bd231b3857278eb56f9b55ff", + "cborBytes": [159, 27, 15, 77, 38, 28, 42, 228, 189, 35, 27, 56, 87, 39, 142, 181, 111, 155, 85, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 178, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8978563589626340488" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efb92c3de6dd64" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17175105819171687069" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8264353201090887527" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17724172706867103352" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b7c9a4403a8ef248847efb92c3de6dd641bee5a3bbeb3790a9d1b72b0e17331627f671bf5f8e92b927cc678a0ff", + "cborBytes": [ + 191, 27, 124, 154, 68, 3, 168, 239, 36, 136, 71, 239, 185, 44, 61, 230, 221, 100, 27, 238, 90, 59, 190, 179, 121, + 10, 157, 27, 114, 176, 225, 115, 49, 98, 127, 103, 27, 245, 248, 233, 43, 146, 124, 198, 120, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 179, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "cborHex": "0e", + "cborBytes": [14], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 180, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13468600319978447314" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8773872226028766802" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6325636166044125112" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3231418004511149812" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6a75cd790eeada20a5" + } + ] + }, + "cborHex": "9f1bbaea14a19e0721d21b79c30e4db91c46521b57c92c940f6c87b81b2cd84d8de7b04ef4496a75cd790eeada20a5ff", + "cborBytes": [ + 159, 27, 186, 234, 20, 161, 158, 7, 33, 210, 27, 121, 195, 14, 77, 185, 28, 70, 82, 27, 87, 201, 44, 148, 15, 108, + 135, 184, 27, 44, 216, 77, 141, 231, 176, 78, 244, 73, 106, 117, 205, 121, 14, 234, 218, 32, 165, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 181, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8428899458985391126" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9747006628199354193" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c4b26404a0f89a69ae01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5896149835883934312" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6b071107" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18371941023546286255" + }, + "fields": [] + } + ] + }, + "cborHex": "d905009f9fd8669f1b74f97766544e74169f1b874452e2f1334f51ffff4ac4b26404a0f89a69ae011b51d355095e56f268ff446b071107d8669f1bfef63f05aee720af80ffff", + "cborBytes": [ + 217, 5, 0, 159, 159, 216, 102, 159, 27, 116, 249, 119, 102, 84, 78, 116, 22, 159, 27, 135, 68, 82, 226, 241, 51, + 79, 81, 255, 255, 74, 196, 178, 100, 4, 160, 248, 154, 105, 174, 1, 27, 81, 211, 85, 9, 94, 86, 242, 104, 255, 68, + 107, 7, 17, 7, 216, 102, 159, 27, 254, 246, 63, 5, 174, 231, 32, 175, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 182, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14228647012076555449" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16937932217602312523" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3700380272779572092" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12539710163360564160" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4041064045572905331" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4987a89816d51238" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7761815974584891216" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba8d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17016396139893655993" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0515d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02741d133f" + } + ] + }, + "cborHex": "d8669f1bc5764f12253f0cb99f1beb0f9f9c63d4894b9fbf1b335a6440ace3b37c1bae05fff4917643c01b3814be56c6f9d973484987a89816d512381b6bb782814915b75042ba8d1bec266221ebb089b943b0515dffa0ff4502741d133fffff", + "cborBytes": [ + 216, 102, 159, 27, 197, 118, 79, 18, 37, 63, 12, 185, 159, 27, 235, 15, 159, 156, 99, 212, 137, 75, 159, 191, 27, + 51, 90, 100, 64, 172, 227, 179, 124, 27, 174, 5, 255, 244, 145, 118, 67, 192, 27, 56, 20, 190, 86, 198, 249, 217, + 115, 72, 73, 135, 168, 152, 22, 213, 18, 56, 27, 107, 183, 130, 129, 73, 21, 183, 80, 66, 186, 141, 27, 236, 38, + 98, 33, 235, 176, 137, 185, 67, 176, 81, 93, 255, 160, 255, 69, 2, 116, 29, 19, 63, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 183, + "sample": { + "_tag": "ByteArray", + "bytearray": "b305" + }, + "cborHex": "42b305", + "cborBytes": [66, 179, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 184, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15151590766398552648" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6993327333998455805" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5305498234609621699" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f36c50a6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5808021679154828042" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16724347627774176193" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2398101473843137156" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1eaf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c104" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "768dc202b6f17e04" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9749d2b0d3e779e84d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16357431197878080655" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2026317579073084967" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "12" + } + ] + } + ] + }, + "cborHex": "d8669f1bd245438685463a489f9f1bfffffffffffffff6bf141b610d4a287501ebfd1b49a0ea88de5e5ac344f36c50a61b509a3cf1e9ca930a1bfffffffffffffff71be818d18edda06bc141a1ff1bfffffffffffffff3ffbf1b2147c495b3c2ca84421eaf1bfffffffffffffff742c104ff48768dc202b6f17e04d8669f1bfffffffffffffff980ff9f499749d2b0d3e779e84dd8669f1be3014502536a548f80ffbf1b1c1eed1a2ec7de2741c6ff4112ffffff", + "cborBytes": [ + 216, 102, 159, 27, 210, 69, 67, 134, 133, 70, 58, 72, 159, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 191, + 20, 27, 97, 13, 74, 40, 117, 1, 235, 253, 27, 73, 160, 234, 136, 222, 94, 90, 195, 68, 243, 108, 80, 166, 27, 80, + 154, 60, 241, 233, 202, 147, 10, 27, 255, 255, 255, 255, 255, 255, 255, 247, 27, 232, 24, 209, 142, 221, 160, 107, + 193, 65, 161, 255, 27, 255, 255, 255, 255, 255, 255, 255, 243, 255, 191, 27, 33, 71, 196, 149, 179, 194, 202, 132, + 66, 30, 175, 27, 255, 255, 255, 255, 255, 255, 255, 247, 66, 193, 4, 255, 72, 118, 141, 194, 2, 182, 241, 126, 4, + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 128, 255, 159, 73, 151, 73, 210, 176, 211, 231, 121, + 232, 77, 216, 102, 159, 27, 227, 1, 69, 2, 83, 106, 84, 143, 128, 255, 191, 27, 28, 30, 237, 26, 46, 199, 222, 39, + 65, 198, 255, 65, 18, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 185, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b3bd8d32d44d7ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12645047781051763754" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea5cf309e256109a8bfda5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2714212528725891942" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "930874065781187306" + } + }, + { + "_tag": "ByteArray", + "bytearray": "08368a" + } + ] + } + } + ] + }, + "cborHex": "bf482b3bd8d32d44d7ea1baf7c3bf5e56e8c2a4bea5cf309e256109a8bfda5d8669f1b25aad1ea139f1b669f1b0ceb2107e582e2ea4308368affffff", + "cborBytes": [ + 191, 72, 43, 59, 216, 211, 45, 68, 215, 234, 27, 175, 124, 59, 245, 229, 110, 140, 42, 75, 234, 92, 243, 9, 226, + 86, 16, 154, 139, 253, 165, 216, 102, 159, 27, 37, 170, 209, 234, 19, 159, 27, 102, 159, 27, 12, 235, 33, 7, 229, + 130, 226, 234, 67, 8, 54, 138, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 186, + "sample": { + "_tag": "ByteArray", + "bytearray": "02fcfc3007d76c4402fecb" + }, + "cborHex": "4b02fcfc3007d76c4402fecb", + "cborBytes": [75, 2, 252, 252, 48, 7, 215, 108, 68, 2, 254, 203], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 187, + "sample": { + "_tag": "ByteArray", + "bytearray": "0406fe0007fe02059ff88149" + }, + "cborHex": "4c0406fe0007fe02059ff88149", + "cborBytes": [76, 4, 6, 254, 0, 7, 254, 2, 5, 159, 248, 129, 73], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 188, + "sample": { + "_tag": "ByteArray", + "bytearray": "0706" + }, + "cborHex": "420706", + "cborBytes": [66, 7, 6], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 189, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5009283661848581923" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d4bf8436" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17238831149852662085" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f1b45848cf33ba7172344d4bf8436d8669f1bef3ca19875e8194580ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 27, 69, 132, 140, 243, 59, 167, 23, 35, 68, 212, + 191, 132, 54, 216, 102, 159, 27, 239, 60, 161, 152, 117, 232, 25, 69, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 190, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ef47f6b4d74d613812ce9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c7d1475d991" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89984232b3a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4077705800506554440" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4ae5a676e5edd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "67e05aa20e075e059d1bdeab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12278747168098151815" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b49ac4e646035f2df875" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f808b65c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d00a7a2370c043ceb" + } + } + ] + }, + "cborHex": "bf4b2ef47f6b4d74d613812ce9465c7d1475d9914689984232b3a81b3896ebd229be384847e4ae5a676e5edd9f4c67e05aa20e075e059d1bdeab1baa66df7e6952ed874ab49ac4e646035f2df875ff44f808b65c492d00a7a2370c043cebff", + "cborBytes": [ + 191, 75, 46, 244, 127, 107, 77, 116, 214, 19, 129, 44, 233, 70, 92, 125, 20, 117, 217, 145, 70, 137, 152, 66, 50, + 179, 168, 27, 56, 150, 235, 210, 41, 190, 56, 72, 71, 228, 174, 90, 103, 110, 94, 221, 159, 76, 103, 224, 90, 162, + 14, 7, 94, 5, 157, 27, 222, 171, 27, 170, 102, 223, 126, 105, 82, 237, 135, 74, 180, 154, 196, 230, 70, 3, 95, 45, + 248, 117, 255, 68, 248, 8, 182, 92, 73, 45, 0, 167, 162, 55, 12, 4, 60, 235, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 191, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13032705341901716102" + } + }, + "cborHex": "1bb4dd78754e633a86", + "cborBytes": [27, 180, 221, 120, 117, 78, 99, 58, 134], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 192, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "cborHex": "02", + "cborBytes": [2], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 193, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1195385286365030852" + } + }, + "cborHex": "1b1096dc95a38429c4", + "cborBytes": [27, 16, 150, 220, 149, 163, 132, 41, 196], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 194, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f0bffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 11, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 195, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "cborHex": "1bffffffffffffffee", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 238], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 196, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9747623240382730694" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b874683b1275ad1c69f1bffffffffffffffefffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 135, 70, 131, 177, 39, 90, 209, 198, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 197, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2110399267" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a204" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c8c829e377d58cc317f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17403327801106471422" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73a1cd84e26f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9064642666130225726" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce999dc3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a06cc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d36223f19b3bc5f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8320610554201179668" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dedac7aa2997df7932d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b8b8aa9b3294dfb0c8a" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d279" + }, + { + "_tag": "ByteArray", + "bytearray": "844d67518bd91df1" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5f5fb244861570f85bc" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9576571133052256731" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d14302896494b5bddc" + }, + { + "_tag": "ByteArray", + "bytearray": "d52f0dfafb05f8c3" + } + ] + } + } + ] + }, + "cborHex": "bf04bf45211039926742a2044a4c8c829e377d58cc317f1bf1850a6da6a199fe4673a1cd84e26f1b7dcc147a728aba3e44ce999dc3432a06cc48d36223f19b3bc5f51b7378bf36ed8706144adedac7aa2997df7932d74a7b8b8aa9b3294dfb0c8aff149f42d27948844d67518bd91df1ff4aa5f5fb244861570f85bcd8669f1b84e6d0b4e7d701db9f49d14302896494b5bddc48d52f0dfafb05f8c3ffffff", + "cborBytes": [ + 191, 4, 191, 69, 33, 16, 57, 146, 103, 66, 162, 4, 74, 76, 140, 130, 158, 55, 125, 88, 204, 49, 127, 27, 241, 133, + 10, 109, 166, 161, 153, 254, 70, 115, 161, 205, 132, 226, 111, 27, 125, 204, 20, 122, 114, 138, 186, 62, 68, 206, + 153, 157, 195, 67, 42, 6, 204, 72, 211, 98, 35, 241, 155, 59, 197, 245, 27, 115, 120, 191, 54, 237, 135, 6, 20, + 74, 222, 218, 199, 170, 41, 151, 223, 121, 50, 215, 74, 123, 139, 138, 169, 179, 41, 77, 251, 12, 138, 255, 20, + 159, 66, 210, 121, 72, 132, 77, 103, 81, 139, 217, 29, 241, 255, 74, 165, 245, 251, 36, 72, 97, 87, 15, 133, 188, + 216, 102, 159, 27, 132, 230, 208, 180, 231, 215, 1, 219, 159, 73, 209, 67, 2, 137, 100, 148, 181, 189, 220, 72, + 213, 47, 13, 250, 251, 5, 248, 195, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 198, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [] + }, + "cborHex": "d9050480", + "cborBytes": [217, 5, 4, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 199, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f8f00fefd9230" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3994998061713412453" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b1e3b1f95f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15348259337622535927" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e04ae4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1142415858525582791" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6c0fe6bc904f8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12102695853982327300" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d02a1497f6abbb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b70507a7023e006e9cfc05f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db4daae42855872f2ace19" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdeccd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11181738893269265338" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9066262162248048349" + } + } + ] + } + } + ] + }, + "cborHex": "bf471f8f00fefd92309f1b377115921acd516545b1e3b1f95f1bd4fff88c8b903ef743e04ae41b0fdaad2ba930b5c7ff47c6c0fe6bc904f8d8669f1bfffffffffffffffc9f1ba7f569c1a135a204051bfffffffffffffffaffff47d02a1497f6abbb4cb70507a7023e006e9cfc05f94bdb4daae42855872f2ace19a043fdeccdd905079f1b9b2d8447b07bebba021b7dd1d566c55c1eddffff", + "cborBytes": [ + 191, 71, 31, 143, 0, 254, 253, 146, 48, 159, 27, 55, 113, 21, 146, 26, 205, 81, 101, 69, 177, 227, 177, 249, 95, + 27, 212, 255, 248, 140, 139, 144, 62, 247, 67, 224, 74, 228, 27, 15, 218, 173, 43, 169, 48, 181, 199, 255, 71, + 198, 192, 254, 107, 201, 4, 248, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 27, 167, 245, + 105, 193, 161, 53, 162, 4, 5, 27, 255, 255, 255, 255, 255, 255, 255, 250, 255, 255, 71, 208, 42, 20, 151, 246, + 171, 187, 76, 183, 5, 7, 167, 2, 62, 0, 110, 156, 252, 5, 249, 75, 219, 77, 170, 228, 40, 85, 135, 47, 42, 206, + 25, 160, 67, 253, 236, 205, 217, 5, 7, 159, 27, 155, 45, 132, 71, 176, 123, 235, 186, 2, 27, 125, 209, 213, 102, + 197, 92, 30, 221, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 200, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15406064642911797940" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5249932235179522732" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d9afe37" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7451448833698085330" + } + }, + { + "_tag": "ByteArray", + "bytearray": "635cedf8bb37" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16735925900127410497" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9349841036230662892" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d5b9fa7ebbfe65869f63d5" + } + ] + } + } + ] + }, + "cborHex": "bf1bd5cd562afb7682b41b48db818d74bf7aac444d9afe379f1b6768dd3c1a92b9d246635cedf8bb371be841f3ef785a99411b81c14ee286e61aec4bd5b9fa7ebbfe65869f63d5ffff", + "cborBytes": [ + 191, 27, 213, 205, 86, 42, 251, 118, 130, 180, 27, 72, 219, 129, 141, 116, 191, 122, 172, 68, 77, 154, 254, 55, + 159, 27, 103, 104, 221, 60, 26, 146, 185, 210, 70, 99, 92, 237, 248, 187, 55, 27, 232, 65, 243, 239, 120, 90, 153, + 65, 27, 129, 193, 78, 226, 134, 230, 26, 236, 75, 213, 185, 250, 126, 187, 254, 101, 134, 159, 99, 213, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 201, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7787507602732942444" + } + }, + "cborHex": "1b6c12c8e79a8d046c", + "cborBytes": [27, 108, 18, 200, 231, 154, 141, 4, 108], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 202, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3484032031276792751" + } + }, + "cborHex": "1b3059c4ac5a55fbaf", + "cborBytes": [27, 48, 89, 196, 172, 90, 85, 251, 175], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 203, + "sample": { + "_tag": "ByteArray", + "bytearray": "2c65da1b05fdcd" + }, + "cborHex": "472c65da1b05fdcd", + "cborBytes": [71, 44, 101, 218, 27, 5, 253, 205], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 204, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd87e80ff", + "cborBytes": [159, 216, 126, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 205, + "sample": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "cborHex": "4102", + "cborBytes": [65, 2], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 206, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + }, + "cborHex": "d9050b9f0513ff", + "cborBytes": [217, 5, 11, 159, 5, 19, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 207, + "sample": { + "_tag": "ByteArray", + "bytearray": "0fd3" + }, + "cborHex": "420fd3", + "cborBytes": [66, 15, 211], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 208, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "323ed93e6107c4ce751a" + }, + { + "_tag": "ByteArray", + "bytearray": "7f0a24086a58" + }, + { + "_tag": "ByteArray", + "bytearray": "e240d9193d7670a009037461" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3276930171266149477" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1664347441774006326" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1541ba6187bd7cdc4b2fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e7c8762a44c10c61b010ea3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3565725606993083873" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a11ca0407a57043dd1e5f9c8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb46ba663948" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6168996486073102011" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1249631707491076127" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "867272282664080824" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17297942103022781288" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5731620658071052660" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01ff" + }, + { + "_tag": "ByteArray", + "bytearray": "cfc8ad" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5e7f6b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8113376141164894561" + } + } + ] + }, + "cborHex": "9f4a323ed93e6107c4ce751a467f0a24086a584ce240d9193d7670a009037461d8669f1b2d79fea0fc142c659fbf1b1718f32e21c510364bc1541ba6187bd7cdc4b2fc4c3e7c8762a44c10c61b010ea31b317c008c2b563de141424ca11ca0407a57043dd1e5f9c846cb46ba6639481b559cad9e8d052ebbff1b1157956ac912081f9f1b0c092b8bcbbc15b81bf00ea2b1bbf243681b4f8ace9eff9da1744201ff43cfc8adff435e7f6bffff1b7098809d27435961ff", + "cborBytes": [ + 159, 74, 50, 62, 217, 62, 97, 7, 196, 206, 117, 26, 70, 127, 10, 36, 8, 106, 88, 76, 226, 64, 217, 25, 61, 118, + 112, 160, 9, 3, 116, 97, 216, 102, 159, 27, 45, 121, 254, 160, 252, 20, 44, 101, 159, 191, 27, 23, 24, 243, 46, + 33, 197, 16, 54, 75, 193, 84, 27, 166, 24, 123, 215, 205, 196, 178, 252, 76, 62, 124, 135, 98, 164, 76, 16, 198, + 27, 1, 14, 163, 27, 49, 124, 0, 140, 43, 86, 61, 225, 65, 66, 76, 161, 28, 160, 64, 122, 87, 4, 61, 209, 229, 249, + 200, 70, 203, 70, 186, 102, 57, 72, 27, 85, 156, 173, 158, 141, 5, 46, 187, 255, 27, 17, 87, 149, 106, 201, 18, 8, + 31, 159, 27, 12, 9, 43, 139, 203, 188, 21, 184, 27, 240, 14, 162, 177, 187, 242, 67, 104, 27, 79, 138, 206, 158, + 255, 157, 161, 116, 66, 1, 255, 67, 207, 200, 173, 255, 67, 94, 127, 107, 255, 255, 27, 112, 152, 128, 157, 39, + 67, 89, 97, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 209, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11847699963084837068" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9111054534435819580" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17857664316041471597" + } + }, + { + "_tag": "ByteArray", + "bytearray": "39" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "877377810413882503" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9553038549088493116" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4362618988425846115" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3be3d7f0844a0b6ec38" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9743218913093764143" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10980756561281608607" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d58f2e38c6735d470707" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efebdd51008f397a" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ddceff51e044214d7ec8c0" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5317360541223695795" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6272735928146269317" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87ad1f6157" + } + ] + }, + "cborHex": "9fd8669f1ba46b7c58391490cc9f1b7e70f7d39e42503c1bf7d32b14dbd2266d4139bf1b0c2d127853878c871b849335f23c085e3c1b3c8b22db177f1d634ab3be3d7f0844a0b6ec381b8736ddfacbd2442f1b98637be9f83aeb9f4ad58f2e38c6735d47070748efebdd51008f397aff4bddceff51e044214d7ec8c0ffff1b49cb0f3d5a5135b3801b570d3c179efd14854587ad1f6157ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 164, 107, 124, 88, 57, 20, 144, 204, 159, 27, 126, 112, 247, 211, 158, 66, 80, 60, 27, + 247, 211, 43, 20, 219, 210, 38, 109, 65, 57, 191, 27, 12, 45, 18, 120, 83, 135, 140, 135, 27, 132, 147, 53, 242, + 60, 8, 94, 60, 27, 60, 139, 34, 219, 23, 127, 29, 99, 74, 179, 190, 61, 127, 8, 68, 160, 182, 236, 56, 27, 135, + 54, 221, 250, 203, 210, 68, 47, 27, 152, 99, 123, 233, 248, 58, 235, 159, 74, 213, 143, 46, 56, 198, 115, 93, 71, + 7, 7, 72, 239, 235, 221, 81, 0, 143, 57, 122, 255, 75, 221, 206, 255, 81, 224, 68, 33, 77, 126, 200, 192, 255, + 255, 27, 73, 203, 15, 61, 90, 81, 53, 179, 128, 27, 87, 13, 60, 23, 158, 253, 20, 133, 69, 135, 173, 31, 97, 87, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 210, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "46c0e804" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0de0a28eb9c4c1ed" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3704740323084877197" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8225438585242914347" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5abc558c68ed980316" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "37488c106fc49faa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f8cc01f26" + } + } + ] + } + ] + }, + "cborHex": "d8799fbf4446c0e804480de0a28eb9c4c1ed41de4144ffd8669f1b3369e1b1fe8a3d8d9f1b7226a0d023320e2bffff495abc558c68ed980316bf4837488c106fc49faa458f8cc01f26ffff", + "cborBytes": [ + 216, 121, 159, 191, 68, 70, 192, 232, 4, 72, 13, 224, 162, 142, 185, 196, 193, 237, 65, 222, 65, 68, 255, 216, + 102, 159, 27, 51, 105, 225, 177, 254, 138, 61, 141, 159, 27, 114, 38, 160, 208, 35, 50, 14, 43, 255, 255, 73, 90, + 188, 85, 140, 104, 237, 152, 3, 22, 191, 72, 55, 72, 140, 16, 111, 196, 159, 170, 69, 143, 140, 192, 31, 38, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 211, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "cborHex": "03", + "cborBytes": [3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 212, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17501503037594120013" + } + }, + "cborHex": "1bf2e1d4492737af4d", + "cborBytes": [27, 242, 225, 212, 73, 39, 55, 175, 77], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 213, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd9573" + }, + "cborHex": "43fd9573", + "cborBytes": [67, 253, 149, 115], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 214, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "af7c00c4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4903983604571155224" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17456809884012104911" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17996676049011719194" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ce3a674" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61f2e8317f8ae8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13153204534117397318" + } + } + } + ] + } + ] + }, + "cborHex": "d87a9f44af7c00c4bf1b440e731b1ecdab181bf2430c197011cccf1bf9c109841f1fbc1a448ce3a6744761f2e8317f8ae81bb68991d5ca1ff346ffff", + "cborBytes": [ + 216, 122, 159, 68, 175, 124, 0, 196, 191, 27, 68, 14, 115, 27, 30, 205, 171, 24, 27, 242, 67, 12, 25, 112, 17, + 204, 207, 27, 249, 193, 9, 132, 31, 31, 188, 26, 68, 140, 227, 166, 116, 71, 97, 242, 232, 49, 127, 138, 232, 27, + 182, 137, 145, 213, 202, 31, 243, 70, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 215, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "33e19c48699f3c25" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12596591792562951129" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5cb561220d6eb8c0" + }, + { + "_tag": "ByteArray", + "bytearray": "31" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9f9fa04833e19c48699f3c25d8669f1baed0157ee850d3d99f485cb561220d6eb8c04131ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 159, 160, 72, 51, 225, 156, 72, 105, 159, 60, 37, + 216, 102, 159, 27, 174, 208, 21, 126, 232, 80, 211, 217, 159, 72, 92, 181, 97, 34, 13, 110, 184, 192, 65, 49, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 216, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2663011888854887415" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4776977731727228582" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13576457400666800479" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15143862495432696744" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8890395341096712462" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15550336100678552272" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16695303204582512888" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "51819555e11949cc3d74f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3460442180213755765" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5fb0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10231218300516137897" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72c3d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8aad2e9f14d0e21ceb83" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e59192a8e5573827" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b753d9c23b" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17349813744146943448" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b301410" + } + } + ] + }, + "cborHex": "bf1b24f4eb3423d66bf7bf1b424b3befff8d7ea61bbc69441322f7c15f1bd229ceb437a063a81b7b6107759adb790e4245aa1bd7cde44b5ae0cad0ff1be7b1a1cf1e94d8f8bf4b51819555e11949cc3d74f81b3005f5d4256b4f75425fb01b8dfc96d645bd7ba94372c3d64a8aad2e9f14d0e21ceb8348e59192a8e557382745b753d9c23bff1bf0c6ebad53118dd8443b301410ff", + "cborBytes": [ + 191, 27, 36, 244, 235, 52, 35, 214, 107, 247, 191, 27, 66, 75, 59, 239, 255, 141, 126, 166, 27, 188, 105, 68, 19, + 34, 247, 193, 95, 27, 210, 41, 206, 180, 55, 160, 99, 168, 27, 123, 97, 7, 117, 154, 219, 121, 14, 66, 69, 170, + 27, 215, 205, 228, 75, 90, 224, 202, 208, 255, 27, 231, 177, 161, 207, 30, 148, 216, 248, 191, 75, 81, 129, 149, + 85, 225, 25, 73, 204, 61, 116, 248, 27, 48, 5, 245, 212, 37, 107, 79, 117, 66, 95, 176, 27, 141, 252, 150, 214, + 69, 189, 123, 169, 67, 114, 195, 214, 74, 138, 173, 46, 159, 20, 208, 226, 28, 235, 131, 72, 229, 145, 146, 168, + 229, 87, 56, 39, 69, 183, 83, 217, 194, 59, 255, 27, 240, 198, 235, 173, 83, 17, 141, 216, 68, 59, 48, 20, 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 217, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16306763359029799745" + } + }, + "cborHex": "1be24d42e0cb53ab41", + "cborBytes": [27, 226, 77, 66, 224, 203, 83, 171, 65], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 218, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "62" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2064985814142016973" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5048105" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2be23d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16037201412858351958" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1640865726713430614" + } + }, + { + "_tag": "ByteArray", + "bytearray": "157408f7c5c3" + }, + { + "_tag": "ByteArray", + "bytearray": "7a027e0edffc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13559408400345304581" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11139644532052463913" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5610678337975521456" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "07ec" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "32" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fbab74d10ffc1759de13" + } + ] + }, + "cborHex": "9fbf41621b1ca84da83e27ddcd42b7d444d5048105ff432be23dd8669f1bffffffffffffffef9fbf031bde8f95b75cd09156ff9f1b16c586af4cde025646157408f7c5c3467a027e0edffc1bbc2cb2196b078e05ff9f1b9a97f7ae791c11291b4ddd2238c40290b0414eff9f4207ecffd905069f4132ffffff4afbab74d10ffc1759de13ff", + "cborBytes": [ + 159, 191, 65, 98, 27, 28, 168, 77, 168, 62, 39, 221, 205, 66, 183, 212, 68, 213, 4, 129, 5, 255, 67, 43, 226, 61, + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 191, 3, 27, 222, 143, 149, 183, 92, 208, 145, 86, + 255, 159, 27, 22, 197, 134, 175, 76, 222, 2, 86, 70, 21, 116, 8, 247, 197, 195, 70, 122, 2, 126, 14, 223, 252, 27, + 188, 44, 178, 25, 107, 7, 142, 5, 255, 159, 27, 154, 151, 247, 174, 121, 28, 17, 41, 27, 77, 221, 34, 56, 196, 2, + 144, 176, 65, 78, 255, 159, 66, 7, 236, 255, 217, 5, 6, 159, 65, 50, 255, 255, 255, 74, 251, 171, 116, 209, 15, + 252, 23, 89, 222, 19, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 219, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2213178496810307420" + } + }, + "cborHex": "1b1eb6ca1deee94f5c", + "cborBytes": [27, 30, 182, 202, 29, 238, 233, 79, 92], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 220, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dcab3b62" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10295348756832396070" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16225335494697751042" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a60fe09f5399ce56" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17676663465846784825" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12720082660468777641" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17325015752734753511" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9bb194" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17148100841080742191" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "665804941277564811" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5733043317708274411" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "71162485209447844" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d06229c49b3fcd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3671315385423761441" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8313386734735805799" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "623285287002050185" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13095668102280010831" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2883560210458152610" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17728757292516037230" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ea9502d953dd026a772cd64" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ec070f7a73" + } + ] + }, + "cborHex": "9f44dcab3b62d8669f1b8ee06d25b1c123269f9f1be12bf8aabaff120248a60fe09f5399ce561bf5501fc467ec4339ff1bb086cfc92ad8e2a9d8669f1bf06ed20905cd42e79f439bb194ffff1bedfa4adc4531e12f1b093d6a11068c8f8bffffd8669f1b4f8fdc85c1edbaeb80ffbf1b00fcd1e73c3e3da447d06229c49b3fcd1b32f321e43e9c102141801b735f1530645f4d671b08a65aaa8d7c0e891bb5bd28c154d05c4f1b280476bbd0cf0ea21bf60932d39988d26e4c2ea9502d953dd026a772cd64ff45ec070f7a73ff", + "cborBytes": [ + 159, 68, 220, 171, 59, 98, 216, 102, 159, 27, 142, 224, 109, 37, 177, 193, 35, 38, 159, 159, 27, 225, 43, 248, + 170, 186, 255, 18, 2, 72, 166, 15, 224, 159, 83, 153, 206, 86, 27, 245, 80, 31, 196, 103, 236, 67, 57, 255, 27, + 176, 134, 207, 201, 42, 216, 226, 169, 216, 102, 159, 27, 240, 110, 210, 9, 5, 205, 66, 231, 159, 67, 155, 177, + 148, 255, 255, 27, 237, 250, 74, 220, 69, 49, 225, 47, 27, 9, 61, 106, 17, 6, 140, 143, 139, 255, 255, 216, 102, + 159, 27, 79, 143, 220, 133, 193, 237, 186, 235, 128, 255, 191, 27, 0, 252, 209, 231, 60, 62, 61, 164, 71, 208, 98, + 41, 196, 155, 63, 205, 27, 50, 243, 33, 228, 62, 156, 16, 33, 65, 128, 27, 115, 95, 21, 48, 100, 95, 77, 103, 27, + 8, 166, 90, 170, 141, 124, 14, 137, 27, 181, 189, 40, 193, 84, 208, 92, 79, 27, 40, 4, 118, 187, 208, 207, 14, + 162, 27, 246, 9, 50, 211, 153, 136, 210, 110, 76, 46, 169, 80, 45, 149, 61, 208, 38, 167, 114, 205, 100, 255, 69, + 236, 7, 15, 122, 115, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 221, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "902992126038198819" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16491574950231611589" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13698933126940055462" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c9c223" + }, + { + "_tag": "ByteArray", + "bytearray": "3493fd435bc8f0f4" + }, + { + "_tag": "ByteArray", + "bytearray": "3a3842c8bf64" + } + ] + } + } + ] + }, + "cborHex": "bf141b0c88128deb7b4a231be4ddd80a874918c5d8669f1bbe1c63195117d7a69f43c9c223483493fd435bc8f0f4463a3842c8bf64ffffff", + "cborBytes": [ + 191, 20, 27, 12, 136, 18, 141, 235, 123, 74, 35, 27, 228, 221, 216, 10, 135, 73, 24, 197, 216, 102, 159, 27, 190, + 28, 99, 25, 81, 23, 215, 166, 159, 67, 201, 194, 35, 72, 52, 147, 253, 67, 91, 200, 240, 244, 70, 58, 56, 66, 200, + 191, 100, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 222, + "sample": { + "_tag": "ByteArray", + "bytearray": "05642d9367fbf903" + }, + "cborHex": "4805642d9367fbf903", + "cborBytes": [72, 5, 100, 45, 147, 103, 251, 249, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 223, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3906121979417112500" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11058839592904218739" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11105424660980341574" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c769f4ebf1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11925194764727931337" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9ff9906f181d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11524585540182102790" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4d4fc851fe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6668863368318680428" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12089539354373896625" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10968615628787159998" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3137471017747657233" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14509871439866980028" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1fbb3552a43f24de8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "15a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1399427179133135685" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a83a13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb8d2eab" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "934157" + } + ] + }, + "cborHex": "d8669f1b3635553ea880afb49fbf1b9978e4047b14d8731b9a1e64e3dd989b46ff45c769f4ebf1d8669f1ba57ecd74c4f4d1c99f469ff9906f181d1b9fef8d7d2a285306454d4fc851fe1b5c8c8fe67c3ffd6c1ba7c6abfd5b8fb9b1ffffbf1b983859ccd7a813be1b2b8a894481eeb2111bc95d6b32addb66bc49d1fbb3552a43f24de84215a01b136bc39add41eb4543a83a1344bb8d2eabff43934157ffff", + "cborBytes": [ + 216, 102, 159, 27, 54, 53, 85, 62, 168, 128, 175, 180, 159, 191, 27, 153, 120, 228, 4, 123, 20, 216, 115, 27, 154, + 30, 100, 227, 221, 152, 155, 70, 255, 69, 199, 105, 244, 235, 241, 216, 102, 159, 27, 165, 126, 205, 116, 196, + 244, 209, 201, 159, 70, 159, 249, 144, 111, 24, 29, 27, 159, 239, 141, 125, 42, 40, 83, 6, 69, 77, 79, 200, 81, + 254, 27, 92, 140, 143, 230, 124, 63, 253, 108, 27, 167, 198, 171, 253, 91, 143, 185, 177, 255, 255, 191, 27, 152, + 56, 89, 204, 215, 168, 19, 190, 27, 43, 138, 137, 68, 129, 238, 178, 17, 27, 201, 93, 107, 50, 173, 219, 102, 188, + 73, 209, 251, 179, 85, 42, 67, 242, 77, 232, 66, 21, 160, 27, 19, 107, 195, 154, 221, 65, 235, 69, 67, 168, 58, + 19, 68, 187, 141, 46, 171, 255, 67, 147, 65, 87, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 224, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13770033348953500299" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0605" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4b3f025642a5de71c1968e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11935442026533651134" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d546" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c67b" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1398137137272663651" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d013ae8795f3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4670386829990663611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15689873557061275530" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5880337919765971178" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3707253919943377512" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47bfd387f35119bcda" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13448664419306541093" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bbf18fc5fc5a7ea8b9fa0ffff05420605bf4cc4b3f025642a5de71c1968e31ba5a3354954ce82be42d54642c67bffbf1b13672e51966b2e6346d013ae8795f31b40d08c13bd4195bb1bd9bda0df236e8f8a1b519b282ec2e900ea1b3372cfcc5e6642684947bfd387f35119bcda1bbaa3410908339025ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 191, 24, 252, 95, 197, 167, 234, 139, 159, 160, 255, 255, 5, 66, 6, 5, 191, 76, 196, 179, + 240, 37, 100, 42, 93, 231, 28, 25, 104, 227, 27, 165, 163, 53, 73, 84, 206, 130, 190, 66, 213, 70, 66, 198, 123, + 255, 191, 27, 19, 103, 46, 81, 150, 107, 46, 99, 70, 208, 19, 174, 135, 149, 243, 27, 64, 208, 140, 19, 189, 65, + 149, 187, 27, 217, 189, 160, 223, 35, 110, 143, 138, 27, 81, 155, 40, 46, 194, 233, 0, 234, 27, 51, 114, 207, 204, + 94, 102, 66, 104, 73, 71, 191, 211, 135, 243, 81, 25, 188, 218, 27, 186, 163, 65, 9, 8, 51, 144, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 225, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15172760822505338909" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "75de5e1683ae33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "436e4795013dc93c7f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84be91" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8829116087064203108" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee27c26257b7287c7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e456600926eb59f07190c12" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f62a5043cb3a1b" + }, + { + "_tag": "ByteArray", + "bytearray": "1ce82897677c15" + }, + { + "_tag": "ByteArray", + "bytearray": "3e9408979fbf1d2436" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9773946666001166828" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2154993791794481158" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f4bbb0e44938" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bd29079944f64f81d9fbf4775de5e1683ae3349436e4795013dc93c7f4384be911b7a87524d72260f6449ee27c26257b7287c7d4c9e456600926eb59f07190c12ff9f47f62a5043cb3a1b471ce82897677c15493e9408979fbf1d24361b87a408b5489cf1ecff1b1de8136f9d15080646f4bbb0e44938ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 210, 144, 121, 148, 79, 100, 248, 29, 159, 191, 71, 117, 222, 94, 22, 131, 174, 51, 73, + 67, 110, 71, 149, 1, 61, 201, 60, 127, 67, 132, 190, 145, 27, 122, 135, 82, 77, 114, 38, 15, 100, 73, 238, 39, + 194, 98, 87, 183, 40, 124, 125, 76, 158, 69, 102, 0, 146, 110, 181, 159, 7, 25, 12, 18, 255, 159, 71, 246, 42, 80, + 67, 203, 58, 27, 71, 28, 232, 40, 151, 103, 124, 21, 73, 62, 148, 8, 151, 159, 191, 29, 36, 54, 27, 135, 164, 8, + 181, 72, 156, 241, 236, 255, 27, 29, 232, 19, 111, 157, 21, 8, 6, 70, 244, 187, 176, 228, 73, 56, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 226, + "sample": { + "_tag": "ByteArray", + "bytearray": "174c6554d9b5a1c2f226cf88" + }, + "cborHex": "4c174c6554d9b5a1c2f226cf88", + "cborBytes": [76, 23, 76, 101, 84, 217, 181, 161, 194, 242, 38, 207, 136], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 227, + "sample": { + "_tag": "ByteArray", + "bytearray": "00044b41" + }, + "cborHex": "4400044b41", + "cborBytes": [68, 0, 4, 75, 65], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 228, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [] + }, + "cborHex": "d9050780", + "cborBytes": [217, 5, 7, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 229, + "sample": { + "_tag": "ByteArray", + "bytearray": "f40896bc888d229e6052" + }, + "cborHex": "4af40896bc888d229e6052", + "cborBytes": [74, 244, 8, 150, 188, 136, 141, 34, 158, 96, 82], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 230, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcd12ef12c" + }, + "cborHex": "45fcd12ef12c", + "cborBytes": [69, 252, 209, 46, 241, 44], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 231, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffffd80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 232, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5311379965299573431" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9914473823593132057" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f88d141e6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "940017" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bcae5d925191" + } + ] + }, + "cborHex": "d8669f1b49b5cff002cec2b79f1b89974969d62d70199fbf45f88d141e6b43940017ffff46bcae5d925191ffff", + "cborBytes": [ + 216, 102, 159, 27, 73, 181, 207, 240, 2, 206, 194, 183, 159, 27, 137, 151, 73, 105, 214, 45, 112, 25, 159, 191, + 69, 248, 141, 20, 30, 107, 67, 148, 0, 23, 255, 255, 70, 188, 174, 93, 146, 81, 145, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 233, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d491b7dd66f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "629836186668432035" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8312055181485612279" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17241637450199462673" + } + } + ] + } + } + ] + }, + "cborHex": "bf468d491b7dd66fd8669f1b08bda0acbd0efaa39f1b735a5a25fde51cf71bef4699e92d35f311ffffff", + "cborBytes": [ + 191, 70, 141, 73, 27, 125, 214, 111, 216, 102, 159, 27, 8, 189, 160, 172, 189, 14, 250, 163, 159, 27, 115, 90, 90, + 37, 253, 229, 28, 247, 27, 239, 70, 153, 233, 45, 53, 243, 17, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 234, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5208304597443574112" + } + }, + "cborHex": "1b48479d6fc4a87960", + "cborBytes": [27, 72, 71, 157, 111, 196, 168, 121, 96], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 235, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c659ee185315881b48c1bf4f" + } + ] + }, + "cborHex": "9f4cc659ee185315881b48c1bf4fff", + "cborBytes": [159, 76, 198, 89, 238, 24, 83, 21, 136, 27, 72, 193, 191, 79, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 236, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "cborHex": "1bfffffffffffffffd", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 253], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 237, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f135eac6e2" + }, + { + "_tag": "ByteArray", + "bytearray": "6da66bb191" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13812474780787735074" + }, + "fields": [] + } + ] + }, + "cborHex": "d9050c9f45f135eac6e2456da66bb191d8669f1bbfafc4a1a9e4fa2280ffff", + "cborBytes": [ + 217, 5, 12, 159, 69, 241, 53, 234, 198, 226, 69, 109, 166, 107, 177, 145, 216, 102, 159, 27, 191, 175, 196, 161, + 169, 228, 250, 34, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 238, + "sample": { + "_tag": "ByteArray", + "bytearray": "d804e5" + }, + "cborHex": "43d804e5", + "cborBytes": [67, 216, 4, 229], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 239, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14785244693946392611" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6887285785896338034" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9bb176ae9320" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "463810aca0fd06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3f3d014f61fbcfd267598" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14953188212010935479" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bcd2fbdb6abe760239fd8669f1b5f948dee8ef2c2729f469bb176ae932080bf47463810aca0fd064be3f3d014f61fbcfd2675984248c71bcf846574147864b7ffffffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 205, 47, 189, 182, 171, 231, 96, 35, 159, 216, 102, 159, 27, 95, 148, 141, 238, 142, 242, 194, + 114, 159, 70, 155, 177, 118, 174, 147, 32, 128, 191, 71, 70, 56, 16, 172, 160, 253, 6, 75, 227, 243, 208, 20, 246, + 31, 188, 253, 38, 117, 152, 66, 72, 199, 27, 207, 132, 101, 116, 20, 120, 100, 183, 255, 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 240, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12331004018733473724" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6501043727655996129" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14385552763706779839" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "917fff65a481fc950c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02354104c7ac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3996010570479643017" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7961b5ede35dfbeeb60f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7884125828494287945" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bab2086d29485dfbc9f9fd8669f1b5a3858d388378ae180ffffbf1bc7a3c0054a61a8bf49917fff65a481fc950c4602354104c7ac1b3774ae712c2529894a7961b5ede35dfbeeb60f1b6d6a0aab4be26449ffffff", + "cborBytes": [ + 216, 102, 159, 27, 171, 32, 134, 210, 148, 133, 223, 188, 159, 159, 216, 102, 159, 27, 90, 56, 88, 211, 136, 55, + 138, 225, 128, 255, 255, 191, 27, 199, 163, 192, 5, 74, 97, 168, 191, 73, 145, 127, 255, 101, 164, 129, 252, 149, + 12, 70, 2, 53, 65, 4, 199, 172, 27, 55, 116, 174, 113, 44, 37, 41, 137, 74, 121, 97, 181, 237, 227, 93, 251, 238, + 182, 15, 27, 109, 106, 10, 171, 75, 226, 100, 73, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 241, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3000104314416293190" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2690681102918919744" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17290729033182040295" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2377582611815519778" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcd974" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1932" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2666883735381251080" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0146b2e8994bfe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9fea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "281eac2a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb8c95d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "531d47f379" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3de284835b3ce86050763ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10489647212109680775" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13705631125615165046" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10796760504514849793" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "12e6dd35b92ac07b59" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8167831038488457898" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17087191949286895214" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18387628720618960404" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c06ee4bd606edb9e" + }, + { + "_tag": "ByteArray", + "bytearray": "8a1750fe024e" + }, + { + "_tag": "ByteArray", + "bytearray": "440276cb4f" + }, + { + "_tag": "ByteArray", + "bytearray": "5554b12035a4d4" + } + ] + } + } + ] + }, + "cborHex": "bf05bf1b29a282fa8de665461b255738350f56a6401beff502720a5950e71b20fedec9d968d62243bcd974421932ff1b2502aca0a8aa9408bf470146b2e8994bfe4137429fea44281eac2a44bb8c95d645531d47f3794cf3de284835b3ce86050763ee1b9192b69018f6d087ff1bbe342ee4a8d43e76d8669f1b95d5cc79a4932c019f4912e6dd35b92ac07b591b7159f70df283b2aaffff1bed21e68bca28ee6e801bff2dfae64a4376149f48c06ee4bd606edb9e468a1750fe024e45440276cb4f475554b12035a4d4ffff", + "cborBytes": [ + 191, 5, 191, 27, 41, 162, 130, 250, 141, 230, 101, 70, 27, 37, 87, 56, 53, 15, 86, 166, 64, 27, 239, 245, 2, 114, + 10, 89, 80, 231, 27, 32, 254, 222, 201, 217, 104, 214, 34, 67, 188, 217, 116, 66, 25, 50, 255, 27, 37, 2, 172, + 160, 168, 170, 148, 8, 191, 71, 1, 70, 178, 232, 153, 75, 254, 65, 55, 66, 159, 234, 68, 40, 30, 172, 42, 68, 187, + 140, 149, 214, 69, 83, 29, 71, 243, 121, 76, 243, 222, 40, 72, 53, 179, 206, 134, 5, 7, 99, 238, 27, 145, 146, + 182, 144, 24, 246, 208, 135, 255, 27, 190, 52, 46, 228, 168, 212, 62, 118, 216, 102, 159, 27, 149, 213, 204, 121, + 164, 147, 44, 1, 159, 73, 18, 230, 221, 53, 185, 42, 192, 123, 89, 27, 113, 89, 247, 13, 242, 131, 178, 170, 255, + 255, 27, 237, 33, 230, 139, 202, 40, 238, 110, 128, 27, 255, 45, 250, 230, 74, 67, 118, 20, 159, 72, 192, 110, + 228, 189, 96, 110, 219, 158, 70, 138, 23, 80, 254, 2, 78, 69, 68, 2, 118, 203, 79, 71, 85, 84, 177, 32, 53, 164, + 212, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 242, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "09d82e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17427573199536877041" + } + } + ] + } + ] + }, + "cborHex": "d905019f4309d82ed905029f1bf1db2d7d5f836df1ffff", + "cborBytes": [217, 5, 1, 159, 67, 9, 216, 46, 217, 5, 2, 159, 27, 241, 219, 45, 125, 95, 131, 109, 241, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 243, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12962732429450614562" + } + }, + "cborHex": "1bb3e4e0770fd71722", + "cborBytes": [27, 179, 228, 224, 119, 15, 215, 23, 34], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 244, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "18a91ad570bd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2668887957422813092" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10261889630132791077" + } + } + ] + } + ] + }, + "cborHex": "9f809f4618a91ad570bd1b2509cb74f7812fa4ff9f1b8e698e3fb0546725ffff", + "cborBytes": [ + 159, 128, 159, 70, 24, 169, 26, 213, 112, 189, 27, 37, 9, 203, 116, 247, 129, 47, 164, 255, 159, 27, 142, 105, + 142, 63, 176, 84, 103, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 245, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10533305162631174144" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6358661379640910799" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11181363770122909311" + } + } + ] + }, + "cborHex": "d8669f1b922dd13cd16b58009f1b583e80d5cc7de3cfa01b9b2c2f1b8699367fffff", + "cborBytes": [ + 216, 102, 159, 27, 146, 45, 209, 60, 209, 107, 88, 0, 159, 27, 88, 62, 128, 213, 204, 125, 227, 207, 160, 27, 155, + 44, 47, 27, 134, 153, 54, 127, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 246, + "sample": { + "_tag": "ByteArray", + "bytearray": "083212f1e917" + }, + "cborHex": "46083212f1e917", + "cborBytes": [70, 8, 50, 18, 241, 233, 23], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 247, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1768913873055695035" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73e5cd19" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9932509377214181865" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1514892624376058125" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10734854838699272144" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3269296959190847323" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16613541105191718535" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14807488427462758859" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cdc5aea23934" + }, + { + "_tag": "ByteArray", + "bytearray": "05e4530ce807197c0d44" + } + ] + } + } + ] + }, + "cborHex": "bf1b188c71cba1bec0bb4473e5cd191b89d75ca7651671e91b1505fad0cccb510d1b94f9dd99a00da7d0d8669f1b2d5ee0434dd5cf5b9f1be68f279ce44d8e871bcd7ec44576a011cb46cdc5aea239344a05e4530ce807197c0d44ffffff", + "cborBytes": [ + 191, 27, 24, 140, 113, 203, 161, 190, 192, 187, 68, 115, 229, 205, 25, 27, 137, 215, 92, 167, 101, 22, 113, 233, + 27, 21, 5, 250, 208, 204, 203, 81, 13, 27, 148, 249, 221, 153, 160, 13, 167, 208, 216, 102, 159, 27, 45, 94, 224, + 67, 77, 213, 207, 91, 159, 27, 230, 143, 39, 156, 228, 77, 142, 135, 27, 205, 126, 196, 69, 118, 160, 17, 203, 70, + 205, 197, 174, 162, 57, 52, 74, 5, 228, 83, 12, 232, 7, 25, 124, 13, 68, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 248, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1183628850159933794" + } + }, + "cborHex": "1b106d182b07afd962", + "cborBytes": [27, 16, 109, 24, 43, 7, 175, 217, 98], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 249, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "cborHex": "1bfffffffffffffff2", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 242], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 250, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16927797932610593673" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e1a39ef591bc1edaa" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "74" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11222825184355856399" + } + } + ] + }, + "cborHex": "9fbf1beaeb9e884ad8a389499e1a39ef591bc1edaaff41741b9bbf7c0b49d6b00fff", + "cborBytes": [ + 159, 191, 27, 234, 235, 158, 136, 74, 216, 163, 137, 73, 158, 26, 57, 239, 89, 27, 193, 237, 170, 255, 65, 116, + 27, 155, 191, 124, 11, 73, 214, 176, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 251, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "cborHex": "01", + "cborBytes": [1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 252, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2d97e3" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8661003328473887274" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17977295462621580357" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33cd1a2786f455c854b70823" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfe1215e2a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50e9d473f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90055c3e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4064288608031545294" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1be4d2b4d3a53" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5839800855067113709" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2285685546004651481" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06b3b73cf08f" + }, + { + "_tag": "ByteArray", + "bytearray": "76a7" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2006455008814391678" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11277580757946479415" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14877370373600376485" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9713439119016692098" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6f034e32fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18104772328374582131" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "360753415364640265" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f0388e4659" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11205272354969953588" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "29a37fbc1289bd8a1b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10822485529941438988" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13493932306131568561" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9784758417183103390" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16037439707401205356" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1718751550506316479" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10818877853495252882" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6f5a1eb4" + } + ] + } + ] + }, + "cborHex": "9f9f432d97e3bf1b783210a3a829722a1bf97c2ef9b7cd0c45ffbf4c33cd1a2786f455c854b7082345dfe1215e2a4550e9d473f34490055c3e41cd1b386740f49a6317ce47e1be4d2b4d3a531b510b23efe54c38edff9f1b1fb862e4ddda1dd94606b3b73cf08f4276a7ffffa0d8669f1b1bd85c332a2f617e9fd8669f1b9c8203f2bb2e333780ffffffd8669f1bce770987f65ef6a59fd8669f1b86cd116a2c5f89829f456f034e32fc1bfb4112826c16bb731b0501a751e6517e0945f0388e46591b9b811fd6b97d2534ffff4929a37fbc1289bd8a1bbf1b9631313fdef6f20c1bbb4413f04223c7b1ffd8669f1b87ca71f04536599e9f1bde906e71a264b66c1b17da3b6dc914b2bf1b962460163decd792ffff446f5a1eb4ffffff", + "cborBytes": [ + 159, 159, 67, 45, 151, 227, 191, 27, 120, 50, 16, 163, 168, 41, 114, 42, 27, 249, 124, 46, 249, 183, 205, 12, 69, + 255, 191, 76, 51, 205, 26, 39, 134, 244, 85, 200, 84, 183, 8, 35, 69, 223, 225, 33, 94, 42, 69, 80, 233, 212, 115, + 243, 68, 144, 5, 92, 62, 65, 205, 27, 56, 103, 64, 244, 154, 99, 23, 206, 71, 225, 190, 77, 43, 77, 58, 83, 27, + 81, 11, 35, 239, 229, 76, 56, 237, 255, 159, 27, 31, 184, 98, 228, 221, 218, 29, 217, 70, 6, 179, 183, 60, 240, + 143, 66, 118, 167, 255, 255, 160, 216, 102, 159, 27, 27, 216, 92, 51, 42, 47, 97, 126, 159, 216, 102, 159, 27, + 156, 130, 3, 242, 187, 46, 51, 55, 128, 255, 255, 255, 216, 102, 159, 27, 206, 119, 9, 135, 246, 94, 246, 165, + 159, 216, 102, 159, 27, 134, 205, 17, 106, 44, 95, 137, 130, 159, 69, 111, 3, 78, 50, 252, 27, 251, 65, 18, 130, + 108, 22, 187, 115, 27, 5, 1, 167, 81, 230, 81, 126, 9, 69, 240, 56, 142, 70, 89, 27, 155, 129, 31, 214, 185, 125, + 37, 52, 255, 255, 73, 41, 163, 127, 188, 18, 137, 189, 138, 27, 191, 27, 150, 49, 49, 63, 222, 246, 242, 12, 27, + 187, 68, 19, 240, 66, 35, 199, 177, 255, 216, 102, 159, 27, 135, 202, 113, 240, 69, 54, 89, 158, 159, 27, 222, + 144, 110, 113, 162, 100, 182, 108, 27, 23, 218, 59, 109, 201, 20, 178, 191, 27, 150, 36, 96, 22, 61, 236, 215, + 146, 255, 255, 68, 111, 90, 30, 180, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 253, + "sample": { + "_tag": "ByteArray", + "bytearray": "e59ec48192" + }, + "cborHex": "45e59ec48192", + "cborBytes": [69, 229, 158, 196, 129, 146], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 254, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16533022919735972295" + } + }, + "cborHex": "1be57118bff24111c7", + "cborBytes": [27, 229, 113, 24, 191, 242, 65, 17, 199], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 255, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7302405406070912570" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4255778541089431627" + } + } + ] + }, + "cborHex": "d905009fd8669f1b65575b06eabfb63a80ffa01b3b0f9008f85da04bff", + "cborBytes": [ + 217, 5, 0, 159, 216, 102, 159, 27, 101, 87, 91, 6, 234, 191, 182, 58, 128, 255, 160, 27, 59, 15, 144, 8, 248, 93, + 160, 75, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 256, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2738414323061903219" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "adb293d334b905" + }, + { + "_tag": "ByteArray", + "bytearray": "adb2ac18f93187" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8901082677899094808" + } + }, + { + "_tag": "ByteArray", + "bytearray": "21d90a2724881cabe494" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13488646454893393118" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3380165491473361827" + } + }, + { + "_tag": "ByteArray", + "bytearray": "936c52a9afcb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1011108741530881817" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b806" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b2600cd516df24f739f9f47adb293d334b90547adb2ac18f93187ff9f1b7b86ff891c8eeb184a21d90a2724881cabe4941bbb314c7c1cc0b4de9f1b2ee8c29b094daba346936c52a9afcb1b0e082e0b183d8f19ffff42b80680ffff", + "cborBytes": [ + 216, 102, 159, 27, 38, 0, 205, 81, 109, 242, 79, 115, 159, 159, 71, 173, 178, 147, 211, 52, 185, 5, 71, 173, 178, + 172, 24, 249, 49, 135, 255, 159, 27, 123, 134, 255, 137, 28, 142, 235, 24, 74, 33, 217, 10, 39, 36, 136, 28, 171, + 228, 148, 27, 187, 49, 76, 124, 28, 192, 180, 222, 159, 27, 46, 232, 194, 155, 9, 77, 171, 163, 70, 147, 108, 82, + 169, 175, 203, 27, 14, 8, 46, 11, 24, 61, 143, 25, 255, 255, 66, 184, 6, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 257, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15943458104210922328" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "703f3a03752e9536" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7836872424339269121" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905069fd8669f1bdd428aac78d09b589f8048703f3a03752e9536ffff1b6cc229f2cacbe60180ff", + "cborBytes": [ + 217, 5, 6, 159, 216, 102, 159, 27, 221, 66, 138, 172, 120, 208, 155, 88, 159, 128, 72, 112, 63, 58, 3, 117, 46, + 149, 54, 255, 255, 27, 108, 194, 41, 242, 202, 203, 230, 1, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 258, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + { + "_tag": "ByteArray", + "bytearray": "07054104" + }, + { + "_tag": "ByteArray", + "bytearray": "43057c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0104effa" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c64dda1903927cd8d3d96549" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13562301972267797441" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50d2542a98" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "019d59e2a28573df1b1efe89" + } + } + ] + }, + "cborHex": "bf019f1bffffffffffffffee44070541044343057cff440104effa9f4cc64dda1903927cd8d3d965491bbc36f9c9a19a0bc1ff4550d2542a9880415a4c019d59e2a28573df1b1efe89ff", + "cborBytes": [ + 191, 1, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 68, 7, 5, 65, 4, 67, 67, 5, 124, 255, 68, 1, 4, 239, 250, + 159, 76, 198, 77, 218, 25, 3, 146, 124, 216, 211, 217, 101, 73, 27, 188, 54, 249, 201, 161, 154, 11, 193, 255, 69, + 80, 210, 84, 42, 152, 128, 65, 90, 76, 1, 157, 89, 226, 162, 133, 115, 223, 27, 30, 254, 137, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 259, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "725959295065245513" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11755340502048712356" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17204112970620660392" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "081dda410cdbe466f02cbe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80997ee1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a05853d18c4b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e4994f59fa2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12806790317179811054" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b0a132021efc1c7491ba3235be7766026a41beec149987188eaa84b081dda410cdbe466f02cbe4480997ee146a05853d18c4b468e4994f59fa21bb1badbf0b06a34eeffff", + "cborBytes": [ + 159, 191, 27, 10, 19, 32, 33, 239, 193, 199, 73, 27, 163, 35, 91, 231, 118, 96, 38, 164, 27, 238, 193, 73, 152, + 113, 136, 234, 168, 75, 8, 29, 218, 65, 12, 219, 228, 102, 240, 44, 190, 68, 128, 153, 126, 225, 70, 160, 88, 83, + 209, 140, 75, 70, 142, 73, 148, 245, 159, 162, 27, 177, 186, 219, 240, 176, 106, 52, 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 260, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "da9b558a3da5cfc9543e71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2328073821995239803" + } + } + } + ] + }, + "cborHex": "bf4bda9b558a3da5cfc9543e711b204eface72e9897bff", + "cborBytes": [ + 191, 75, 218, 155, 85, 138, 61, 165, 207, 201, 84, 62, 113, 27, 32, 78, 250, 206, 114, 233, 137, 123, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 261, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13152182448114269848" + } + }, + "cborHex": "1bb685f040d8fa7e98", + "cborBytes": [27, 182, 133, 240, 64, 216, 250, 126, 152], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 262, + "sample": { + "_tag": "ByteArray", + "bytearray": "d003f8" + }, + "cborHex": "43d003f8", + "cborBytes": [67, 208, 3, 248], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 263, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8467330617206575626" + } + }, + "cborHex": "1b75820055a263120a", + "cborBytes": [27, 117, 130, 0, 85, 162, 99, 18, 10], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 264, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "cborHex": "04", + "cborBytes": [4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 265, + "sample": { + "_tag": "ByteArray", + "bytearray": "91fceae8d7" + }, + "cborHex": "4591fceae8d7", + "cborBytes": [69, 145, 252, 234, 232, 215], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 266, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "06f001e1c1fc58" + }, + { + "_tag": "ByteArray", + "bytearray": "0450" + } + ] + }, + "cborHex": "9f4706f001e1c1fc58420450ff", + "cborBytes": [159, 71, 6, 240, 1, 225, 193, 252, 88, 66, 4, 80, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 267, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13153406975559078104" + } + }, + "cborHex": "1bb68a49f45c5810d8", + "cborBytes": [27, 182, 138, 73, 244, 92, 88, 16, 216], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 268, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15773101627990152356" + }, + "fields": [] + }, + "cborHex": "d8669f1bdae5505c767d14a480ff", + "cborBytes": [216, 102, 159, 27, 218, 229, 80, 92, 118, 125, 20, 164, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 269, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5074748932087775172" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4615448159564311719" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16277835694410589463" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8741461068962324742" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "455339620430501746" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6550b6212f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8762963032348049162" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7dc320113c1b65366c8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12483857512152008911" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16045950776032505211" + } + } + } + ] + }, + "cborHex": "bf1b466d21443d627fc4bf1b400d5da5be0faca71be1e67d5205846517ff1b794fe8872967e106d8669f1b0651b0f8e7ebd7729f456550b6212fffff1b799c4c7322fc3f0a4af7dc320113c1b65366c81bad3f9243d66988cf1bdeaeab3738d22d7bff", + "cborBytes": [ + 191, 27, 70, 109, 33, 68, 61, 98, 127, 196, 191, 27, 64, 13, 93, 165, 190, 15, 172, 167, 27, 225, 230, 125, 82, 5, + 132, 101, 23, 255, 27, 121, 79, 232, 135, 41, 103, 225, 6, 216, 102, 159, 27, 6, 81, 176, 248, 231, 235, 215, 114, + 159, 69, 101, 80, 182, 33, 47, 255, 255, 27, 121, 156, 76, 115, 34, 252, 63, 10, 74, 247, 220, 50, 1, 19, 193, + 182, 83, 102, 200, 27, 173, 63, 146, 67, 214, 105, 136, 207, 27, 222, 174, 171, 55, 56, 210, 45, 123, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 270, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8035592676270096560" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15758546303283375077" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5521055973367206688" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "64a435e12c92fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14781818407385612301" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1436729812696685504" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3cbe" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3f51" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14286175703449086748" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8486236051935780993" + } + } + ] + }, + "cborHex": "d8669f1b6f8428f6f4cf40b09fd8669f1bdab19a5ed7c02be59fd8669f1b4c9ebb27ed99d3209f4764a435e12c92fb1bcd2391862a8cc00d1b13f04a270bffdbc0423cbeffffffff423f511bc642b11c62e62b1c1b75c52aba2bbee081ffff", + "cborBytes": [ + 216, 102, 159, 27, 111, 132, 40, 246, 244, 207, 64, 176, 159, 216, 102, 159, 27, 218, 177, 154, 94, 215, 192, 43, + 229, 159, 216, 102, 159, 27, 76, 158, 187, 39, 237, 153, 211, 32, 159, 71, 100, 164, 53, 225, 44, 146, 251, 27, + 205, 35, 145, 134, 42, 140, 192, 13, 27, 19, 240, 74, 39, 11, 255, 219, 192, 66, 60, 190, 255, 255, 255, 255, 66, + 63, 81, 27, 198, 66, 177, 28, 98, 230, 43, 28, 27, 117, 197, 42, 186, 43, 190, 224, 129, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 271, + "sample": { + "_tag": "ByteArray", + "bytearray": "4dcef0fc" + }, + "cborHex": "444dcef0fc", + "cborBytes": [68, 77, 206, 240, 252], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 272, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8233672137452395373" + } + }, + "cborHex": "1b7243e12f65e19b6d", + "cborBytes": [27, 114, 67, 225, 47, 101, 225, 155, 109], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 273, + "sample": { + "_tag": "ByteArray", + "bytearray": "02f306" + }, + "cborHex": "4302f306", + "cborBytes": [67, 2, 243, 6], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 274, + "sample": { + "_tag": "ByteArray", + "bytearray": "f4730bc7" + }, + "cborHex": "44f4730bc7", + "cborBytes": [68, 244, 115, 11, 199], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 275, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8c2205082ffac7852" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7d8302" + }, + { + "_tag": "ByteArray", + "bytearray": "0bdc746c3f7a115cf314" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14376451108157107728" + } + } + ] + } + } + ] + }, + "cborHex": "bf49e8c2205082ffac78529f437d83024a0bdc746c3f7a115cf3141bc7836a1cf879ae10ffff", + "cborBytes": [ + 191, 73, 232, 194, 32, 80, 130, 255, 172, 120, 82, 159, 67, 125, 131, 2, 74, 11, 220, 116, 108, 63, 122, 17, 92, + 243, 20, 27, 199, 131, 106, 28, 248, 121, 174, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 276, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9036101670154052017" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d252a0d" + }, + { + "_tag": "ByteArray", + "bytearray": "476e423e" + }, + { + "_tag": "ByteArray", + "bytearray": "b2fea6a5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + } + } + ] + }, + "cborHex": "bf0aa01b7d66ae97fbd8a1b19f1bfffffffffffffff3449d252a0d44476e423e44b2fea6a50bffff", + "cborBytes": [ + 191, 10, 160, 27, 125, 102, 174, 151, 251, 216, 161, 177, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 68, + 157, 37, 42, 13, 68, 71, 110, 66, 62, 68, 178, 254, 166, 165, 11, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 277, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17241563777932389807" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "534741276047153035" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15388606052397976263" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3b61ba504939eca75d82" + }, + { + "_tag": "ByteArray", + "bytearray": "76430d83fdb9" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50c7285821a3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11047584827681070796" + } + }, + { + "_tag": "ByteArray", + "bytearray": "07" + } + ] + } + } + ] + }, + "cborHex": "bf1bef4656e803e6edafd8669f1b076bc85b7d87978b9f1bd58f4fac1d9b8ac74a3b61ba504939eca75d824676430d83fdb9ffff4650c7285821a39f1b9950e7de3fecdecc4107ffff", + "cborBytes": [ + 191, 27, 239, 70, 86, 232, 3, 230, 237, 175, 216, 102, 159, 27, 7, 107, 200, 91, 125, 135, 151, 139, 159, 27, 213, + 143, 79, 172, 29, 155, 138, 199, 74, 59, 97, 186, 80, 73, 57, 236, 167, 93, 130, 70, 118, 67, 13, 131, 253, 185, + 255, 255, 70, 80, 199, 40, 88, 33, 163, 159, 27, 153, 80, 231, 222, 63, 236, 222, 204, 65, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 278, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2710543554657560195" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12650985838813835017" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87c9f1bfffffffffffffff89fbf1b259dc9007b96a6831baf915497b4feef09ffffff", + "cborBytes": [ + 216, 124, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 191, 27, 37, 157, 201, 0, 123, 150, 166, 131, 27, + 175, 145, 84, 151, 180, 254, 239, 9, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 279, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f0101" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8378820783816701709" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "43b8bfaf63" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ebc4b327e0593621068e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d9dbe6e18491ee2a0bc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99ecf8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b502b8634637f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13057194379024130031" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5d1c9a52edc6701f7fa922b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bcc5e46cb1fb9ae1024c" + } + } + ] + } + } + ] + }, + "cborHex": "bf433f0101d8669f1b74478d1c280df70d80ff41e3bf4543b8bfaf6341214b5ebc4b327e0593621068e54a8d9dbe6e18491ee2a0bc41a24399ecf847b502b8634637f21bb534791b94f5dfef4cb5d1c9a52edc6701f7fa922b4abcc5e46cb1fb9ae1024cffff", + "cborBytes": [ + 191, 67, 63, 1, 1, 216, 102, 159, 27, 116, 71, 141, 28, 40, 13, 247, 13, 128, 255, 65, 227, 191, 69, 67, 184, 191, + 175, 99, 65, 33, 75, 94, 188, 75, 50, 126, 5, 147, 98, 16, 104, 229, 74, 141, 157, 190, 110, 24, 73, 30, 226, 160, + 188, 65, 162, 67, 153, 236, 248, 71, 181, 2, 184, 99, 70, 55, 242, 27, 181, 52, 121, 27, 148, 245, 223, 239, 76, + 181, 209, 201, 165, 46, 220, 103, 1, 247, 250, 146, 43, 74, 188, 197, 228, 108, 177, 251, 154, 225, 2, 76, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 280, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9424240066270689033" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed2891ae908dbf990250" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5beecb0c6c18e9c67" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b82c9a06894117709bf4aed2891ae908dbf99025049a5beecb0c6c18e9c67ffff", + "cborBytes": [ + 191, 27, 130, 201, 160, 104, 148, 17, 119, 9, 191, 74, 237, 40, 145, 174, 144, 141, 191, 153, 2, 80, 73, 165, 190, + 236, 176, 198, 193, 142, 156, 103, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 281, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6982537130725948443" + } + }, + "cborHex": "1b60e6f4867be53c1b", + "cborBytes": [27, 96, 230, 244, 134, 123, 229, 60, 27], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 282, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2790966602940663346" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8401256841549977973" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16731349322777766800" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3985027dc8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d70ae2bceea5751af777" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "eb43fa016e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8148540577932200976" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adc26aff18" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "19c3" + } + ] + }, + "cborHex": "9f9fd8669f1b26bb81569441c6329f1b74974295eb6819751be831b19005242b90ffffbf453985027dc84ad70ae2bceea5751af777ff45eb43fa016ed8669f1b71156e7b99814c1080ffbf41050141f845adc26aff18ffff4219c3ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 38, 187, 129, 86, 148, 65, 198, 50, 159, 27, 116, 151, 66, 149, 235, 104, 25, 117, + 27, 232, 49, 177, 144, 5, 36, 43, 144, 255, 255, 191, 69, 57, 133, 2, 125, 200, 74, 215, 10, 226, 188, 238, 165, + 117, 26, 247, 119, 255, 69, 235, 67, 250, 1, 110, 216, 102, 159, 27, 113, 21, 110, 123, 153, 129, 76, 16, 128, + 255, 191, 65, 5, 1, 65, 248, 69, 173, 194, 106, 255, 24, 255, 255, 66, 25, 195, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 283, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17639725727771839263" + } + }, + "cborHex": "1bf4cce5171328cb1f", + "cborBytes": [27, 244, 204, 229, 23, 19, 40, 203, 31], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 284, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2796214113309748268" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9858496300548481289" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9886213810873922569" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cedd9fe6da1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4454592940650861892" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ac1ee8f7bd8d1f459" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9f854" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7052858839640565619" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8899705605415426586" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d7d05fbe89791c3b50ffcb15" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d3a7b7f0632fe58e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10765432701347157561" + } + }, + { + "_tag": "ByteArray", + "bytearray": "940e616a7b308a" + }, + { + "_tag": "ByteArray", + "bytearray": "32d6ae" + }, + { + "_tag": "ByteArray", + "bytearray": "e543c3" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2007810374582065038" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9871689375019860938" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13750657468426856370" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "371219137565716544" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4322471611654865238" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "620e4429f989" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17839015835259708973" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8723bcad4610ed09e75e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16796869601965689211" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15742633339850519896" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3da331e621" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10121314701179857084" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2a8e905ca25b4a1a7fd341" + } + ] + } + ] + }, + "cborHex": "9fbf1b26ce25ebcbc2ec2c41641b88d06a271db1e1091b8932e314e2b37409460cedd9fe6da11b3dd1e4ad96751544497ac1ee8f7bd8d1f45943a9f854ffd8669f1b61e0c9bf3bbfe7739fd8669f1b7b821b187056da1a80ff4cd7d05fbe89791c3b50ffcb159f48d3a7b7f0632fe58e1b95668001112bd63947940e616a7b308a4332d6ae43e543c3ffd8669f1b1bdd2ce5d94ed78e80ffd8669f1b88ff492f230e83ca9f1bbed4261d09a7a7b2ffffffffd8669f1b0526d5d6bc6e70409fbf1b3bfc81078466015646620e4429f989ffd8669f1bf790ea631339262d9f4a8723bcad4610ed09e75e1be91a77e8cbb8c97b1bda79119d5302f558453da331e621ffff1b8c7622187fc3a8bc4b2a8e905ca25b4a1a7fd341ffffff", + "cborBytes": [ + 159, 191, 27, 38, 206, 37, 235, 203, 194, 236, 44, 65, 100, 27, 136, 208, 106, 39, 29, 177, 225, 9, 27, 137, 50, + 227, 20, 226, 179, 116, 9, 70, 12, 237, 217, 254, 109, 161, 27, 61, 209, 228, 173, 150, 117, 21, 68, 73, 122, 193, + 238, 143, 123, 216, 209, 244, 89, 67, 169, 248, 84, 255, 216, 102, 159, 27, 97, 224, 201, 191, 59, 191, 231, 115, + 159, 216, 102, 159, 27, 123, 130, 27, 24, 112, 86, 218, 26, 128, 255, 76, 215, 208, 95, 190, 137, 121, 28, 59, 80, + 255, 203, 21, 159, 72, 211, 167, 183, 240, 99, 47, 229, 142, 27, 149, 102, 128, 1, 17, 43, 214, 57, 71, 148, 14, + 97, 106, 123, 48, 138, 67, 50, 214, 174, 67, 229, 67, 195, 255, 216, 102, 159, 27, 27, 221, 44, 229, 217, 78, 215, + 142, 128, 255, 216, 102, 159, 27, 136, 255, 73, 47, 35, 14, 131, 202, 159, 27, 190, 212, 38, 29, 9, 167, 167, 178, + 255, 255, 255, 255, 216, 102, 159, 27, 5, 38, 213, 214, 188, 110, 112, 64, 159, 191, 27, 59, 252, 129, 7, 132, + 102, 1, 86, 70, 98, 14, 68, 41, 249, 137, 255, 216, 102, 159, 27, 247, 144, 234, 99, 19, 57, 38, 45, 159, 74, 135, + 35, 188, 173, 70, 16, 237, 9, 231, 94, 27, 233, 26, 119, 232, 203, 184, 201, 123, 27, 218, 121, 17, 157, 83, 2, + 245, 88, 69, 61, 163, 49, 230, 33, 255, 255, 27, 140, 118, 34, 24, 127, 195, 168, 188, 75, 42, 142, 144, 92, 162, + 91, 74, 26, 127, 211, 65, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 285, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2565900028686835127" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5161706507325343046" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18190641997035300309" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11123907156650173028" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14339144612541659466" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5807961252738461619" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "297265093638041672" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2050d59623db7f3c588630" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1032589249786370391" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "213a1350faf80880" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a0af59d7e9e7bc4c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9993395687539242723" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b7ae7500b158d4b61a3c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46f05e654953e04a47732a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0c12eeed42a3157c51f58" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3283043435435428582" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7a5b38c3eb67e1d39" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb16bba03c" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b239be87b3b0b1db79fd8669f1b47a210b873f305469f1bfc722484a59765d51b9a600e9f3a8f2264d8669f1bc6fee00d9580794a9f1b509a05fccab56fb31b04201907166b3048ffffffffbf4b2050d59623db7f3c5886301b0e547e73a867595748213a1350faf808804146494a0af59d7e9e7bc4c71b8aafac6e37b276e34b7b7ae7500b158d4b61a3c94b46f05e654953e04a47732a4bc0c12eeed42a3157c51f581b2d8fb69c374e8ae649c7a5b38c3eb67e1d3945eb16bba03cffffff", + "cborBytes": [ + 216, 102, 159, 27, 35, 155, 232, 123, 59, 11, 29, 183, 159, 216, 102, 159, 27, 71, 162, 16, 184, 115, 243, 5, 70, + 159, 27, 252, 114, 36, 132, 165, 151, 101, 213, 27, 154, 96, 14, 159, 58, 143, 34, 100, 216, 102, 159, 27, 198, + 254, 224, 13, 149, 128, 121, 74, 159, 27, 80, 154, 5, 252, 202, 181, 111, 179, 27, 4, 32, 25, 7, 22, 107, 48, 72, + 255, 255, 255, 255, 191, 75, 32, 80, 213, 150, 35, 219, 127, 60, 88, 134, 48, 27, 14, 84, 126, 115, 168, 103, 89, + 87, 72, 33, 58, 19, 80, 250, 248, 8, 128, 65, 70, 73, 74, 10, 245, 157, 126, 158, 123, 196, 199, 27, 138, 175, + 172, 110, 55, 178, 118, 227, 75, 123, 122, 231, 80, 11, 21, 141, 75, 97, 163, 201, 75, 70, 240, 94, 101, 73, 83, + 224, 74, 71, 115, 42, 75, 192, 193, 46, 238, 212, 42, 49, 87, 197, 31, 88, 27, 45, 143, 182, 156, 55, 78, 138, + 230, 73, 199, 165, 179, 140, 62, 182, 126, 29, 57, 69, 235, 22, 187, 160, 60, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 286, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10225519025902174988" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "861920393441316923" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "4dcda8e7760ae0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8390029969060253179" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13260680652367434301" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2fde17a5a71de4887d0b2c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8878382233580829059" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1405555386543389611" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6877502485967562095" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c976b26c8d9a6ccc38" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d18f97014a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16251689375343195897" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f690f0aaa29db190" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2888907138722047830" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3adfc71522" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16702163459184750046" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ff5366688e3c3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a12fa4ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14630492347640902826" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3173887243066040126" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "96357a5df408af291c92" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3906685264863919951" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "26" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8792496123965821328" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cf237401a341822cf312652" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10946911386548300998" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "658848ad152ff0f5f1b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12000913776776204071" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5c101d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f98b3b57402b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5f8bd49d160" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9488703839369387506" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8de857607ee5c30c9f9f1b0bf62807fbbc103ba0474dcda8e7760ae0d8669f1b746f5fcdf8b7cdfb9f1bb80766cb9441923dffff4b2fde17a5a71de4887d0b2cff1b7b36599a0cb97983d8669f1b1381892d570e3bab9f9f1b5f71cc1289f6656f49c976b26c8d9a6ccc38ff45d18f97014a9f1be1899961b95236f948f690f0aaa29db1901b281775bc909e2756ffbf453adfc715221be7ca012c9d376dde479ff5366688e3c3418844a12fa4ea1bcb09f3464634f4aa41fc1b2c0be9a1b0185f3eff9f4a96357a5df408af291c92ffffff1b3637558cc5777f4fbf41261b7a0538a3ddfb51904c3cf237401a341822cf3126521b97eb3de826e3ecc64a658848ad152ff0f5f1b51ba68bcf7f14d64f2744c5c101d246f98b3b57402b46e5f8bd49d1601b83aea5de5c7f5df2ffffff", + "cborBytes": [ + 216, 102, 159, 27, 141, 232, 87, 96, 126, 229, 195, 12, 159, 159, 27, 11, 246, 40, 7, 251, 188, 16, 59, 160, 71, + 77, 205, 168, 231, 118, 10, 224, 216, 102, 159, 27, 116, 111, 95, 205, 248, 183, 205, 251, 159, 27, 184, 7, 102, + 203, 148, 65, 146, 61, 255, 255, 75, 47, 222, 23, 165, 167, 29, 228, 136, 125, 11, 44, 255, 27, 123, 54, 89, 154, + 12, 185, 121, 131, 216, 102, 159, 27, 19, 129, 137, 45, 87, 14, 59, 171, 159, 159, 27, 95, 113, 204, 18, 137, 246, + 101, 111, 73, 201, 118, 178, 108, 141, 154, 108, 204, 56, 255, 69, 209, 143, 151, 1, 74, 159, 27, 225, 137, 153, + 97, 185, 82, 54, 249, 72, 246, 144, 240, 170, 162, 157, 177, 144, 27, 40, 23, 117, 188, 144, 158, 39, 86, 255, + 191, 69, 58, 223, 199, 21, 34, 27, 231, 202, 1, 44, 157, 55, 109, 222, 71, 159, 245, 54, 102, 136, 227, 195, 65, + 136, 68, 161, 47, 164, 234, 27, 203, 9, 243, 70, 70, 52, 244, 170, 65, 252, 27, 44, 11, 233, 161, 176, 24, 95, 62, + 255, 159, 74, 150, 53, 122, 93, 244, 8, 175, 41, 28, 146, 255, 255, 255, 27, 54, 55, 85, 140, 197, 119, 127, 79, + 191, 65, 38, 27, 122, 5, 56, 163, 221, 251, 81, 144, 76, 60, 242, 55, 64, 26, 52, 24, 34, 207, 49, 38, 82, 27, + 151, 235, 61, 232, 38, 227, 236, 198, 74, 101, 136, 72, 173, 21, 47, 240, 245, 241, 181, 27, 166, 139, 207, 127, + 20, 214, 79, 39, 68, 197, 193, 1, 210, 70, 249, 139, 59, 87, 64, 43, 70, 229, 248, 189, 73, 209, 96, 27, 131, 174, + 165, 222, 92, 127, 93, 242, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 287, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "540403" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + }, + "cborHex": "bf4354040308ff", + "cborBytes": [191, 67, 84, 4, 3, 8, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 288, + "sample": { + "_tag": "ByteArray", + "bytearray": "915221101b84ba" + }, + "cborHex": "47915221101b84ba", + "cborBytes": [71, 145, 82, 33, 16, 27, 132, 186], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 289, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12624042022904256923" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e9b011" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1707067211575714678" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12949566971720280785" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8036389670328703225" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12130791586054713183" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16887513855197413327" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0edc02214e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b728f0dfc4e7a52e6a2ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14125756578982110270" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1baf319b55b4cfd99b9f43e9b011bf1b17b0b895a1afe3761bb3b61a8d1084aad11b6f86fdd3988f98f91ba8593aad0316af5f1bea5c80609e877fcf450edc02214e4b3b728f0dfc4e7a52e6a2ff1bc408c4c461dda43effffff", + "cborBytes": [ + 216, 102, 159, 27, 175, 49, 155, 85, 180, 207, 217, 155, 159, 67, 233, 176, 17, 191, 27, 23, 176, 184, 149, 161, + 175, 227, 118, 27, 179, 182, 26, 141, 16, 132, 170, 209, 27, 111, 134, 253, 211, 152, 143, 152, 249, 27, 168, 89, + 58, 173, 3, 22, 175, 95, 27, 234, 92, 128, 96, 158, 135, 127, 207, 69, 14, 220, 2, 33, 78, 75, 59, 114, 143, 13, + 252, 78, 122, 82, 230, 162, 255, 27, 196, 8, 196, 196, 97, 221, 164, 62, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 290, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dad4b181975c06f382" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5031816508805236855" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dc85c6ac6a9084357befcb26" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + ] + }, + "cborHex": "9f9f49dad4b181975c06f3829f1b45d49a747e484877ffff4cdc85c6ac6a9084357befcb261bfffffffffffffffeff", + "cborBytes": [ + 159, 159, 73, 218, 212, 177, 129, 151, 92, 6, 243, 130, 159, 27, 69, 212, 154, 116, 126, 72, 72, 119, 255, 255, + 76, 220, 133, 198, 172, 106, 144, 132, 53, 123, 239, 203, 38, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 291, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "44" + } + ] + }, + "cborHex": "9f4144ff", + "cborBytes": [159, 65, 68, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 292, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3895447317717794110" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6dc33d1714b58c4bf0935818" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5555070087393623309" + } + } + ] + }, + "cborHex": "d8669f1b360f68b24dd13d3e9f9f4c6dc33d1714b58c4bf0935818ff1b4d1792cffd7ebd0dffff", + "cborBytes": [ + 216, 102, 159, 27, 54, 15, 104, 178, 77, 209, 61, 62, 159, 159, 76, 109, 195, 61, 23, 20, 181, 140, 75, 240, 147, + 88, 24, 255, 27, 77, 23, 146, 207, 253, 126, 189, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 293, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1720527899302747078" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0363fdc80b92" + }, + { + "_tag": "ByteArray", + "bytearray": "97fdbf0361f900050000fc" + }, + { + "_tag": "ByteArray", + "bytearray": "fb91fc7fbb81fe00" + }, + { + "_tag": "ByteArray", + "bytearray": "cc5e80" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3833653928230433913" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b719" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2001377176063289809" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "959ee646f833a037b004f6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4776834964975972754" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15862542286145689788" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12527629906257049535" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1405281648338819438" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12903305458914543067" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12368441150096785382" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7112551" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b90a0e733d8bb1" + } + } + ] + }, + "cborHex": "bf1b17e08b023816dbc69f460363fdc80b924b97fdbf0361f900050000fc48fb91fc7fbb81fe0043cc5e801b3533dfefa7f4b479ff42b719bf1b1bc651f018d3a9d14b959ee646f833a037b004f61b424aba17860ef1921bdc23122a785398bc1baddb15068802f7bf1b13809036b29c596e1bb311bff342f5c5db1baba587b1f8d7bfe6ff44f711255147b90a0e733d8bb1ff", + "cborBytes": [ + 191, 27, 23, 224, 139, 2, 56, 22, 219, 198, 159, 70, 3, 99, 253, 200, 11, 146, 75, 151, 253, 191, 3, 97, 249, 0, + 5, 0, 0, 252, 72, 251, 145, 252, 127, 187, 129, 254, 0, 67, 204, 94, 128, 27, 53, 51, 223, 239, 167, 244, 180, + 121, 255, 66, 183, 25, 191, 27, 27, 198, 81, 240, 24, 211, 169, 209, 75, 149, 158, 230, 70, 248, 51, 160, 55, 176, + 4, 246, 27, 66, 74, 186, 23, 134, 14, 241, 146, 27, 220, 35, 18, 42, 120, 83, 152, 188, 27, 173, 219, 21, 6, 136, + 2, 247, 191, 27, 19, 128, 144, 54, 178, 156, 89, 110, 27, 179, 17, 191, 243, 66, 245, 197, 219, 27, 171, 165, 135, + 177, 248, 215, 191, 230, 255, 68, 247, 17, 37, 81, 71, 185, 10, 14, 115, 61, 139, 177, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 294, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1480024639506525899" + } + }, + "cborHex": "1b148a1a91709caecb", + "cborBytes": [27, 20, 138, 26, 145, 112, 156, 174, 203], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 295, + "sample": { + "_tag": "ByteArray", + "bytearray": "3531aa" + }, + "cborHex": "433531aa", + "cborBytes": [67, 53, 49, 170], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 296, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1862604816735121649" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2a840626da74a041b91291" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9348841475443075792" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9620638871032097905" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3942077848616590870" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1641756843999941956" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14020653217766170313" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c2b98254b6002cbb4d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2068023020188114813" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6508715594563776802" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fe72c5d994" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14986495661315028085" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "892675746345793558" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16318938205794268301" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d89a5b43ffe40" + } + } + ] + }, + "cborHex": "bf1b19d94d365a6db0f19f4b2a840626da74a041b912911b81bdc1ca25392ad0ff1b85836014b42eec719f1b36b512ead3ba5e161b16c8b126b62ed544ff1bc2935dd123e3dec99f49c2b98254b6002cbb4d1b1cb317fae1a49f7d1b5a539a593e04f12245fe72c5d994ff1bcffaba66f09d74751b0c636bdc988c38161be27883d633eaf48d474d89a5b43ffe40ff", + "cborBytes": [ + 191, 27, 25, 217, 77, 54, 90, 109, 176, 241, 159, 75, 42, 132, 6, 38, 218, 116, 160, 65, 185, 18, 145, 27, 129, + 189, 193, 202, 37, 57, 42, 208, 255, 27, 133, 131, 96, 20, 180, 46, 236, 113, 159, 27, 54, 181, 18, 234, 211, 186, + 94, 22, 27, 22, 200, 177, 38, 182, 46, 213, 68, 255, 27, 194, 147, 93, 209, 35, 227, 222, 201, 159, 73, 194, 185, + 130, 84, 182, 0, 44, 187, 77, 27, 28, 179, 23, 250, 225, 164, 159, 125, 27, 90, 83, 154, 89, 62, 4, 241, 34, 69, + 254, 114, 197, 217, 148, 255, 27, 207, 250, 186, 102, 240, 157, 116, 117, 27, 12, 99, 107, 220, 152, 140, 56, 22, + 27, 226, 120, 131, 214, 51, 234, 244, 141, 71, 77, 137, 165, 180, 63, 254, 64, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 297, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11691250616064044836" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16485547184571286345" + } + } + ] + }, + "cborHex": "d8669f1ba23faa7e0e906f249f1be4c86dd1f8500349ffff", + "cborBytes": [ + 216, 102, 159, 27, 162, 63, 170, 126, 14, 144, 111, 36, 159, 27, 228, 200, 109, 209, 248, 80, 3, 73, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 298, + "sample": { + "_tag": "ByteArray", + "bytearray": "b0a2" + }, + "cborHex": "42b0a2", + "cborBytes": [66, 176, 162], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 299, + "sample": { + "_tag": "ByteArray", + "bytearray": "f42462ada40a0b2cdc60d817" + }, + "cborHex": "4cf42462ada40a0b2cdc60d817", + "cborBytes": [76, 244, 36, 98, 173, 164, 10, 11, 44, 220, 96, 216, 23], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 300, + "sample": { + "_tag": "ByteArray", + "bytearray": "38ec4a" + }, + "cborHex": "4338ec4a", + "cborBytes": [67, 56, 236, 74], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 301, + "sample": { + "_tag": "ByteArray", + "bytearray": "03e4" + }, + "cborHex": "4203e4", + "cborBytes": [66, 3, 228], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 302, + "sample": { + "_tag": "ByteArray", + "bytearray": "e268417bcb" + }, + "cborHex": "45e268417bcb", + "cborBytes": [69, 226, 104, 65, 123, 203], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 303, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [] + }, + "cborHex": "d9050880", + "cborBytes": [217, 5, 8, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 304, + "sample": { + "_tag": "ByteArray", + "bytearray": "a9aca21c0fb322eeb1fdf67a" + }, + "cborHex": "4ca9aca21c0fb322eeb1fdf67a", + "cborBytes": [76, 169, 172, 162, 28, 15, 179, 34, 238, 177, 253, 246, 122], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 305, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3291759536865307691" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8391006469460693543" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "08ca2a63" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15999800462185834184" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5555457205029618567" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0bcc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8154034430492762231" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6091939100533422844" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3955315000778195202" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17664440461470405638" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10500916456797687421" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "445afd963db909" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12114152028282515300" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8378453371201907442" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7488800650075581090" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6273990803721681975" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5b0c0c906e4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8674232987302152686" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5159189014441376218" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10400921970650322215" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10306124241388580883" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12159397590306111188" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13544069385603312460" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2daeaddbb8dc6c2bd8669f1b7472d7ed303592279f4408ca2a631bde0ab5bff1b7a6c81b4d18f2e4d6acc387420bcc1b7128f31cd3d36077ffff1b548aea55e09b7afcbf1b36e41a097c2881021bf524b3026dfb14061b91babfe1977ace7d47445afd963db9091ba81e1d1610db6f641b74463ef33da9eaf2ff1b67ed90838d782aa2bf1b5711b1651be5fc3746f5b0c0c906e41b786110f1a31ec9ee1b47991f12f6e039da1b90577f6d052b15271b8f06b564b30230131ba8bedbaf64efbed41bbbf63358be20eb4cffff", + "cborBytes": [ + 191, 27, 45, 174, 173, 219, 184, 220, 108, 43, 216, 102, 159, 27, 116, 114, 215, 237, 48, 53, 146, 39, 159, 68, 8, + 202, 42, 99, 27, 222, 10, 181, 191, 241, 183, 166, 200, 27, 77, 24, 242, 228, 214, 172, 195, 135, 66, 11, 204, 27, + 113, 40, 243, 28, 211, 211, 96, 119, 255, 255, 27, 84, 138, 234, 85, 224, 155, 122, 252, 191, 27, 54, 228, 26, 9, + 124, 40, 129, 2, 27, 245, 36, 179, 2, 109, 251, 20, 6, 27, 145, 186, 191, 225, 151, 122, 206, 125, 71, 68, 90, + 253, 150, 61, 185, 9, 27, 168, 30, 29, 22, 16, 219, 111, 100, 27, 116, 70, 62, 243, 61, 169, 234, 242, 255, 27, + 103, 237, 144, 131, 141, 120, 42, 162, 191, 27, 87, 17, 177, 101, 27, 229, 252, 55, 70, 245, 176, 192, 201, 6, + 228, 27, 120, 97, 16, 241, 163, 30, 201, 238, 27, 71, 153, 31, 18, 246, 224, 57, 218, 27, 144, 87, 127, 109, 5, + 43, 21, 39, 27, 143, 6, 181, 100, 179, 2, 48, 19, 27, 168, 190, 219, 175, 100, 239, 190, 212, 27, 187, 246, 51, + 88, 190, 32, 235, 76, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 306, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5865016720994685805" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7241082100505577622" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17131023859729920598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd5f35f8beee65bbabd4af" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ec3986f148763bfb1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13127228814016731241" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f143d0186343a1d76ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12694942218229297996" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c235db3168b7773dd47fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12341451421738876180" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0522a62dcab83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c299" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2711a4d8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17238786037925898590" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4098804854773319947" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4fa9e103" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4964730938676606583" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "654d5453e3418789" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7730c8b0ef" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5164b9a2309d536d9fd8669f1b647d7dce3613089680ff9fd8669f1bedbd9f6fb5f172569f4bfd5f35f8beee65bbabd4afffff80bf491ec3986f148763bfb11bb62d490e28bd58694a2f143d0186343a1d76ad1bb02d7eafd1aab34c4b7c235db3168b7773dd47fe1bab45a4ae257c3d1447a0522a62dcab8342c29945e2711a4d8a1bef3c78910589695effbf1b38e1e14c8c69090b444fa9e1031b44e6447c0535f67748654d5453e3418789ff9f457730c8b0efffffffff", + "cborBytes": [ + 216, 102, 159, 27, 81, 100, 185, 162, 48, 157, 83, 109, 159, 216, 102, 159, 27, 100, 125, 125, 206, 54, 19, 8, + 150, 128, 255, 159, 216, 102, 159, 27, 237, 189, 159, 111, 181, 241, 114, 86, 159, 75, 253, 95, 53, 248, 190, 238, + 101, 187, 171, 212, 175, 255, 255, 128, 191, 73, 30, 195, 152, 111, 20, 135, 99, 191, 177, 27, 182, 45, 73, 14, + 40, 189, 88, 105, 74, 47, 20, 61, 1, 134, 52, 58, 29, 118, 173, 27, 176, 45, 126, 175, 209, 170, 179, 76, 75, 124, + 35, 93, 179, 22, 139, 119, 115, 221, 71, 254, 27, 171, 69, 164, 174, 37, 124, 61, 20, 71, 160, 82, 42, 98, 220, + 171, 131, 66, 194, 153, 69, 226, 113, 26, 77, 138, 27, 239, 60, 120, 145, 5, 137, 105, 94, 255, 191, 27, 56, 225, + 225, 76, 140, 105, 9, 11, 68, 79, 169, 225, 3, 27, 68, 230, 68, 124, 5, 53, 246, 119, 72, 101, 77, 84, 83, 227, + 65, 135, 137, 255, 159, 69, 119, 48, 200, 176, 239, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 307, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11e91f2f8ecdf4918e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a9e60bca0f39d654b12" + } + } + ] + }, + "cborHex": "bf4911e91f2f8ecdf4918e4a4a9e60bca0f39d654b12ff", + "cborBytes": [ + 191, 73, 17, 233, 31, 47, 142, 205, 244, 145, 142, 74, 74, 158, 96, 188, 160, 243, 157, 101, 75, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 308, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9570781878829422802" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05240501faaa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "03cbe00105" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4fb306d807" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7330403270794682491" + } + }, + { + "_tag": "ByteArray", + "bytearray": "030187" + } + ] + } + } + ] + }, + "cborHex": "bf1b84d23f691e5f98d2bf084605240501faaa4503cbe00105454fb306d807ff1bffffffffffffffef9f1b65bad2efc814207b43030187ffff", + "cborBytes": [ + 191, 27, 132, 210, 63, 105, 30, 95, 152, 210, 191, 8, 70, 5, 36, 5, 1, 250, 170, 69, 3, 203, 224, 1, 5, 69, 79, + 179, 6, 216, 7, 255, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 27, 101, 186, 210, 239, 200, 20, 32, 123, + 67, 3, 1, 135, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 309, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11643280306166018936" + } + }, + "cborHex": "1ba1953dbfed53b378", + "cborBytes": [27, 161, 149, 61, 191, 237, 83, 179, 120], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 310, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01f325" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12875960050462096022" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "03fa7b35b18e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0aa8316f3d9cba20" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df1cc41c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "166835a45bc0aa" + } + } + ] + } + ] + }, + "cborHex": "9fbf4301f3251bb2b0997235e9fa964603fa7b35b18e480aa8316f3d9cba2044df1cc41c47166835a45bc0aaffff", + "cborBytes": [ + 159, 191, 67, 1, 243, 37, 27, 178, 176, 153, 114, 53, 233, 250, 150, 70, 3, 250, 123, 53, 177, 142, 72, 10, 168, + 49, 111, 61, 156, 186, 32, 68, 223, 28, 196, 28, 71, 22, 104, 53, 164, 91, 192, 170, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 311, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "cborHex": "12", + "cborBytes": [18], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 312, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "cborHex": "41fd", + "cborBytes": [65, 253], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 313, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8891711998672945793" + } + }, + "cborHex": "1b7b65b4f3d5fac281", + "cborBytes": [27, 123, 101, 180, 243, 213, 250, 194, 129], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 314, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "cborHex": "0f", + "cborBytes": [15], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 315, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2934879740255365798" + }, + "fields": [] + }, + "cborHex": "d8669f1b28bac992f8696aa680ff", + "cborBytes": [216, 102, 159, 27, 40, 186, 201, 146, 248, 105, 106, 166, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 316, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17551067828725286025" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5919140127600448400" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15091281708624150764" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2c7035da72c2ed3fda23" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3311388377555656825" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0586c59b1d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8133743422998898117" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b4" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e105bc7ebdcc6095" + }, + { + "_tag": "ByteArray", + "bytearray": "84e98cd021b542535732" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "95bce0e641a8bf8c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10789779949799060097" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b60b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1768062323127082765" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9902a89f460" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3650793796964214394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6953846110140524471" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9299521251543826808" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce63" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9549351919322219301" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25ee8e1ae3ed758fca703f24" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12591470436962592084" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab03b4081ea426ae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15848440906172694217" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8601760324493887421" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2c28bfc804476c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14296379753092943064" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c5cd62" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17254988574054359769" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a90630d5" + }, + { + "_tag": "ByteArray", + "bytearray": "1c47" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3062265385661715965" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7217" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11625409290095945064" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15555520486043263328" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9601872925735821180" + } + }, + { + "_tag": "ByteArray", + "bytearray": "93" + }, + { + "_tag": "ByteArray", + "bytearray": "eb3a33d2" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "720853374890114529" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0af2c3347b9f85c859b21fc0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3265882900285222965" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8ed295cb751bfde6b66294b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5092174394937483809" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad04fbc6a13bdd33dbfd92ee" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5811124881253470349" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10989896506025733388" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13557664745062621916" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13297388215586925007" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73b1e0a8dbf4" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "69a5e2b699f1" + } + ] + }, + "cborHex": "d87e9f1bf391eb335ff50489d8669f1b52250295c96293909fd8669f1bd16f00c1c7e480ec9f4a2c7035da72c2ed3fda231b2df46a2f558fe079450586c59b1d1b70e0dc8c7e04e5c541b4ffff48e105bc7ebdcc60954a84e98cd021b542535732bf4895bce0e641a8bf8c1b95bcffb29867b28142b60b41ebffbf1b18896b50b6bddf0d46d9902a89f4601b32aa399d9840667a1b60810631b1a867b71b810e894eab77417842ce631b84861cf9da6543254c25ee8e1ae3ed758fca703f241baebde3a662fce55448ab03b4081ea426ae1bdbf0f90918317ec91b775f9770e881c7bdffffff472c28bfc804476cd8669f1bc666f1a3d5310cd89f9f43c5cd621bef7608afefef22d944a90630d5421c47ff1b2a7f5a24c85755fd427217d8669f1ba155c027c0b1e5689f1bd7e04f7722eba1601b8540b48d94ec9f7c419344eb3a33d2ffffbf1b0a00fc5341777de14c0af2c3347b9f85c859b21fc01b2d52bf31c585f0354cf8ed295cb751bfde6b66294b1b46ab09a1f896a2214cad04fbc6a13bdd33dbfd92ee1b50a5434a748c108d41ad1b9883f4a52ff86d0c1bbc268041094b62dc1bb889d021268629cf4673b1e0a8dbf4ffffff4669a5e2b699f1ff", + "cborBytes": [ + 216, 126, 159, 27, 243, 145, 235, 51, 95, 245, 4, 137, 216, 102, 159, 27, 82, 37, 2, 149, 201, 98, 147, 144, 159, + 216, 102, 159, 27, 209, 111, 0, 193, 199, 228, 128, 236, 159, 74, 44, 112, 53, 218, 114, 194, 237, 63, 218, 35, + 27, 45, 244, 106, 47, 85, 143, 224, 121, 69, 5, 134, 197, 155, 29, 27, 112, 224, 220, 140, 126, 4, 229, 197, 65, + 180, 255, 255, 72, 225, 5, 188, 126, 189, 204, 96, 149, 74, 132, 233, 140, 208, 33, 181, 66, 83, 87, 50, 191, 72, + 149, 188, 224, 230, 65, 168, 191, 140, 27, 149, 188, 255, 178, 152, 103, 178, 129, 66, 182, 11, 65, 235, 255, 191, + 27, 24, 137, 107, 80, 182, 189, 223, 13, 70, 217, 144, 42, 137, 244, 96, 27, 50, 170, 57, 157, 152, 64, 102, 122, + 27, 96, 129, 6, 49, 177, 168, 103, 183, 27, 129, 14, 137, 78, 171, 119, 65, 120, 66, 206, 99, 27, 132, 134, 28, + 249, 218, 101, 67, 37, 76, 37, 238, 142, 26, 227, 237, 117, 143, 202, 112, 63, 36, 27, 174, 189, 227, 166, 98, + 252, 229, 84, 72, 171, 3, 180, 8, 30, 164, 38, 174, 27, 219, 240, 249, 9, 24, 49, 126, 201, 27, 119, 95, 151, 112, + 232, 129, 199, 189, 255, 255, 255, 71, 44, 40, 191, 200, 4, 71, 108, 216, 102, 159, 27, 198, 102, 241, 163, 213, + 49, 12, 216, 159, 159, 67, 197, 205, 98, 27, 239, 118, 8, 175, 239, 239, 34, 217, 68, 169, 6, 48, 213, 66, 28, 71, + 255, 27, 42, 127, 90, 36, 200, 87, 85, 253, 66, 114, 23, 216, 102, 159, 27, 161, 85, 192, 39, 192, 177, 229, 104, + 159, 27, 215, 224, 79, 119, 34, 235, 161, 96, 27, 133, 64, 180, 141, 148, 236, 159, 124, 65, 147, 68, 235, 58, 51, + 210, 255, 255, 191, 27, 10, 0, 252, 83, 65, 119, 125, 225, 76, 10, 242, 195, 52, 123, 159, 133, 200, 89, 178, 31, + 192, 27, 45, 82, 191, 49, 197, 133, 240, 53, 76, 248, 237, 41, 92, 183, 81, 191, 222, 107, 102, 41, 75, 27, 70, + 171, 9, 161, 248, 150, 162, 33, 76, 173, 4, 251, 198, 161, 59, 221, 51, 219, 253, 146, 238, 27, 80, 165, 67, 74, + 116, 140, 16, 141, 65, 173, 27, 152, 131, 244, 165, 47, 248, 109, 12, 27, 188, 38, 128, 65, 9, 75, 98, 220, 27, + 184, 137, 208, 33, 38, 134, 41, 207, 70, 115, 177, 224, 168, 219, 244, 255, 255, 255, 70, 105, 165, 226, 182, 153, + 241, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 317, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3086775739773814622" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d4ccd1513aa0332a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7491739506939269879" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2321efab299f80323b1cb414" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14222614913110406913" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5718231990228817013" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "74da004eb78d416414" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6974994193048520333" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2389015507640384071" + } + }, + { + "_tag": "ByteArray", + "bytearray": "db2bb7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15198775146726081958" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e3f2fd11d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7646290630002877379" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4171867200637806251" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a95cfe16fe" + }, + { + "_tag": "ByteArray", + "bytearray": "148d44e58e5ae1575494eb" + }, + { + "_tag": "ByteArray", + "bytearray": "9b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13181786004104030295" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e396a63b92af706682085a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "94e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11493078014836002021" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f1b2ad66e2e4e83075e9f48d4ccd1513aa0332a1b67f801637ce012f7ff4c2321efab299f80323b1cb4141bc560e0e8a91e7701d8669f1b4f5b3db2d8dd147580ffff4974da004eb78d416414d8669f1b60cc28437311c68d9f1b21277cf257cdfa4743db2bb79f1bd2ece57829a4c5a6454e3f2fd11d1b6a1d14d0f2b823c3ff9f1b39e5731d901ea6ab45a95cfe16fe4b148d44e58e5ae1575494eb419b1bb6ef1c87d7d62857ff4be396a63b92af706682085affffbf4294e01b9f7f9d8fc226cce5ffff", + "cborBytes": [ + 159, 159, 27, 42, 214, 110, 46, 78, 131, 7, 94, 159, 72, 212, 204, 209, 81, 58, 160, 51, 42, 27, 103, 248, 1, 99, + 124, 224, 18, 247, 255, 76, 35, 33, 239, 171, 41, 159, 128, 50, 59, 28, 180, 20, 27, 197, 96, 224, 232, 169, 30, + 119, 1, 216, 102, 159, 27, 79, 91, 61, 178, 216, 221, 20, 117, 128, 255, 255, 73, 116, 218, 0, 78, 183, 141, 65, + 100, 20, 216, 102, 159, 27, 96, 204, 40, 67, 115, 17, 198, 141, 159, 27, 33, 39, 124, 242, 87, 205, 250, 71, 67, + 219, 43, 183, 159, 27, 210, 236, 229, 120, 41, 164, 197, 166, 69, 78, 63, 47, 209, 29, 27, 106, 29, 20, 208, 242, + 184, 35, 195, 255, 159, 27, 57, 229, 115, 29, 144, 30, 166, 171, 69, 169, 92, 254, 22, 254, 75, 20, 141, 68, 229, + 142, 90, 225, 87, 84, 148, 235, 65, 155, 27, 182, 239, 28, 135, 215, 214, 40, 87, 255, 75, 227, 150, 166, 59, 146, + 175, 112, 102, 130, 8, 90, 255, 255, 191, 66, 148, 224, 27, 159, 127, 157, 143, 194, 38, 204, 229, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 318, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8581182ca0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05d1462dcdfaacf78565" + } + } + ] + }, + "cborHex": "bf458581182ca04a05d1462dcdfaacf78565ff", + "cborBytes": [191, 69, 133, 129, 24, 44, 160, 74, 5, 209, 70, 45, 205, 250, 172, 247, 133, 101, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 319, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "21096756679922075" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2215261299243763272" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18020710228959014152" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15658656958851734334" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac13" + }, + { + "_tag": "ByteArray", + "bytearray": "8870" + }, + { + "_tag": "ByteArray", + "bytearray": "efcb3d08041a4fd18e" + }, + { + "_tag": "ByteArray", + "bytearray": "36c5" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18290787541245024645" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12392229664436097550" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2575780014264567030" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10404940557412089850" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1002144691939080328" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c3a8e8826" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "450582124129725173" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2536119915071250238" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1846104358642473648" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b6bb29b5ae3f867ded35ffd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5311583826547680248" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e3f40dd5e98b8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12167913121654263520" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16188582119772421875" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17656048707603840122" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7cc1483c9adeaad7" + } + } + ] + } + ] + }, + "cborHex": "9f1b004af3636fd1d19b1b1ebe306a2a1846489fd8669f1bfa166c79b559ad089f1bd94eb98a7c0e5b3e42ac1342887049efcb3d08041a4fd18e4236c5ffff9f1bfdd5ee5c2a0cd9851babfa0b3913c5920e1b23bf0246a1ca44f61b9065c64f299a3ffaffffbf1b0de85549a8927888456c3a8e8826ffbf1b0640ca0dfae4aaf51b23321ba0359d9f3e1b199eae22132f5ab04c6b6bb29b5ae3f867ded35ffd1b49b689592815a3f8471e3f40dd5e98b81ba8dd1c840a044ee01be0a965aaca467ef31bf506e2c0f9b8bc7a487cc1483c9adeaad7ffff", + "cborBytes": [ + 159, 27, 0, 74, 243, 99, 111, 209, 209, 155, 27, 30, 190, 48, 106, 42, 24, 70, 72, 159, 216, 102, 159, 27, 250, + 22, 108, 121, 181, 89, 173, 8, 159, 27, 217, 78, 185, 138, 124, 14, 91, 62, 66, 172, 19, 66, 136, 112, 73, 239, + 203, 61, 8, 4, 26, 79, 209, 142, 66, 54, 197, 255, 255, 159, 27, 253, 213, 238, 92, 42, 12, 217, 133, 27, 171, + 250, 11, 57, 19, 197, 146, 14, 27, 35, 191, 2, 70, 161, 202, 68, 246, 27, 144, 101, 198, 79, 41, 154, 63, 250, + 255, 255, 191, 27, 13, 232, 85, 73, 168, 146, 120, 136, 69, 108, 58, 142, 136, 38, 255, 191, 27, 6, 64, 202, 13, + 250, 228, 170, 245, 27, 35, 50, 27, 160, 53, 157, 159, 62, 27, 25, 158, 174, 34, 19, 47, 90, 176, 76, 107, 107, + 178, 155, 90, 227, 248, 103, 222, 211, 95, 253, 27, 73, 182, 137, 89, 40, 21, 163, 248, 71, 30, 63, 64, 221, 94, + 152, 184, 27, 168, 221, 28, 132, 10, 4, 78, 224, 27, 224, 169, 101, 170, 202, 70, 126, 243, 27, 245, 6, 226, 192, + 249, 184, 188, 122, 72, 124, 193, 72, 60, 154, 222, 170, 215, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 320, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3578219622547347679" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "274508" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16082966815330829366" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7163528788036965443" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16467477524525831560" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f920626403e748" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17330454031560332861" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7514579306472899034" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13221283297284229072" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "406568699822299495" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18176198801249653918" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da5edfe3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12889327310714605810" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3073826701516243061" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4eeb52" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3911906417815566541" + } + }, + { + "_tag": "ByteArray", + "bytearray": "003981e276e4fe13b02239" + } + ] + } + ] + } + ] + }, + "cborHex": "d9050c9fbf1b31a863c9da4458df432745081bdf322d1b7a3084361b6369f77a8d3a54431be4883b8f6417558847f920626403e7481bf082241efb63d63d1b68492610b6d181daffd8669f1bb77b6f1c096e87d09fd8669f1b05a46c1411b359679f1bfc3ed482135dd49e44da5edfe31bb2e016e604e290f2ffffd8669f1b2aa86d1964fc80759f434eeb521b3649e2292c77b8cd4b003981e276e4fe13b02239ffffffffff", + "cborBytes": [ + 217, 5, 12, 159, 191, 27, 49, 168, 99, 201, 218, 68, 88, 223, 67, 39, 69, 8, 27, 223, 50, 45, 27, 122, 48, 132, + 54, 27, 99, 105, 247, 122, 141, 58, 84, 67, 27, 228, 136, 59, 143, 100, 23, 85, 136, 71, 249, 32, 98, 100, 3, 231, + 72, 27, 240, 130, 36, 30, 251, 99, 214, 61, 27, 104, 73, 38, 16, 182, 209, 129, 218, 255, 216, 102, 159, 27, 183, + 123, 111, 28, 9, 110, 135, 208, 159, 216, 102, 159, 27, 5, 164, 108, 20, 17, 179, 89, 103, 159, 27, 252, 62, 212, + 130, 19, 93, 212, 158, 68, 218, 94, 223, 227, 27, 178, 224, 22, 230, 4, 226, 144, 242, 255, 255, 216, 102, 159, + 27, 42, 168, 109, 25, 100, 252, 128, 117, 159, 67, 78, 235, 82, 27, 54, 73, 226, 41, 44, 119, 184, 205, 75, 0, 57, + 129, 226, 118, 228, 254, 19, 176, 34, 57, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 321, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6787857325554368981" + } + } + ] + }, + "cborHex": "9f1b5e33504623b381d5ff", + "cborBytes": [159, 27, 94, 51, 80, 70, 35, 179, 129, 213, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 322, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16399969417877674800" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "476674028375121809" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6223524765559129825" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14442816478024764291" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2154557208691210771" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17672609553552892455" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a4efbaa8aa3b714bd610819" + }, + { + "_tag": "ByteArray", + "bytearray": "a3" + }, + { + "_tag": "ByteArray", + "bytearray": "4e69c97cd7db35e5dc59e3" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17246455177080914781" + } + } + ] + }, + "cborHex": "9fa0d8669f1be398654b77de5b309f1b069d7c80d6f41f919f1b565e66ccf5ff86e1ffd8669f1bc86f3110c0d30b839f1b1de6865db04bfa131bf541b8c165b1e2274c8a4efbaa8aa3b714bd61081941a34b4e69c97cd7db35e5dc59e3ffffffff1bef57b79ba09ac35dff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 227, 152, 101, 75, 119, 222, 91, 48, 159, 27, 6, 157, 124, 128, 214, 244, 31, 145, + 159, 27, 86, 94, 102, 204, 245, 255, 134, 225, 255, 216, 102, 159, 27, 200, 111, 49, 16, 192, 211, 11, 131, 159, + 27, 29, 230, 134, 93, 176, 75, 250, 19, 27, 245, 65, 184, 193, 101, 177, 226, 39, 76, 138, 78, 251, 170, 138, 163, + 183, 20, 189, 97, 8, 25, 65, 163, 75, 78, 105, 201, 124, 215, 219, 53, 229, 220, 89, 227, 255, 255, 255, 255, 27, + 239, 87, 183, 155, 160, 154, 195, 93, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 323, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2450018636096107457" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17000752658294649898" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2b3860e4d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13795261390029710266" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10086475799251471815" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16356471271015714548" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15743555620177796165" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9982723243742901741" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59ca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12889435238690557183" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1e6de" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13338902161995594944" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13189780484398078901" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff46414ace" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11456191579495671042" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b220036f8019873c1d8669f1bebeece7807ee342a9f452b3860e4d11bbf729d24d061e3ba1b8bfa5c4c89f54dc71be2fddbf5efc60ef41bda7c586c724d5c45ffff1b8a89c1e64254b5ed4259ca1bb2e0790ef58d8cff43e1e6de1bb91d4cd8036ffcc0d8669f1bb70b8377d5ed5bb59f45ff46414ace1b9efc918b46a92502ffffff", + "cborBytes": [ + 191, 27, 34, 0, 54, 248, 1, 152, 115, 193, 216, 102, 159, 27, 235, 238, 206, 120, 7, 238, 52, 42, 159, 69, 43, 56, + 96, 228, 209, 27, 191, 114, 157, 36, 208, 97, 227, 186, 27, 139, 250, 92, 76, 137, 245, 77, 199, 27, 226, 253, + 219, 245, 239, 198, 14, 244, 27, 218, 124, 88, 108, 114, 77, 92, 69, 255, 255, 27, 138, 137, 193, 230, 66, 84, + 181, 237, 66, 89, 202, 27, 178, 224, 121, 14, 245, 141, 140, 255, 67, 225, 230, 222, 27, 185, 29, 76, 216, 3, 111, + 252, 192, 216, 102, 159, 27, 183, 11, 131, 119, 213, 237, 91, 181, 159, 69, 255, 70, 65, 74, 206, 27, 158, 252, + 145, 139, 70, 169, 37, 2, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 324, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "cborHex": "41fc", + "cborBytes": [65, 252], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 325, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff4a079c" + }, + "cborHex": "44ff4a079c", + "cborBytes": [68, 255, 74, 7, 156], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 326, + "sample": { + "_tag": "ByteArray", + "bytearray": "66f3840156f2be52c4c175" + }, + "cborHex": "4b66f3840156f2be52c4c175", + "cborBytes": [75, 102, 243, 132, 1, 86, 242, 190, 82, 196, 193, 117], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 327, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18286806825013146449" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3930576527918460550" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69fbf1bfdc7c9eb7118f3511b368c3686ed116e86ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 191, 27, 253, 199, 201, 235, 113, 24, 243, 81, 27, + 54, 140, 54, 134, 237, 17, 110, 134, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 328, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13881374141382115304" + } + }, + "cborHex": "1bc0a48c3c235fbfe8", + "cborBytes": [27, 192, 164, 140, 60, 35, 95, 191, 232], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 329, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2037591210974847710" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1379396714646709230" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af876629797e053ae243" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1c46fa69279d22debf1b13249a00ecdba3ee4aaf876629797e053ae243ffff", + "cborBytes": [ + 191, 27, 28, 70, 250, 105, 39, 157, 34, 222, 191, 27, 19, 36, 154, 0, 236, 219, 163, 238, 74, 175, 135, 102, 41, + 121, 126, 5, 58, 226, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 330, + "sample": { + "_tag": "ByteArray", + "bytearray": "03b962" + }, + "cborHex": "4303b962", + "cborBytes": [67, 3, 185, 98], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 331, + "sample": { + "_tag": "ByteArray", + "bytearray": "795cfc020785fc048a" + }, + "cborHex": "49795cfc020785fc048a", + "cborBytes": [73, 121, 92, 252, 2, 7, 133, 252, 4, 138], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 332, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5373102696406642999" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa4cd1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07fd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0682" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "978469564437418275" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4a91186f3902f13743fa4cd14207fdbf4206821b0d9438e27bd2d123ffff", + "cborBytes": [ + 191, 27, 74, 145, 24, 111, 57, 2, 241, 55, 67, 250, 76, 209, 66, 7, 253, 191, 66, 6, 130, 27, 13, 148, 56, 226, + 123, 210, 209, 35, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 333, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9fd87a80ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 216, 122, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 334, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "49b79cec79" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "622ca6f09ccad02f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7000649097622239558" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ace5f2a1297aa8f43f7cd613" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17080920111076386916" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "052d03bad2e3f7" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9797ec5d760bc3a4" + } + ] + }, + "cborHex": "9fbf4549b79cec7948622ca6f09ccad02f418f1b61274d4364eeb9464cace5f2a1297aa8f43f7cd6131bed0b9e57a988a86441e547052d03bad2e3f7ff489797ec5d760bc3a4ff", + "cborBytes": [ + 159, 191, 69, 73, 183, 156, 236, 121, 72, 98, 44, 166, 240, 156, 202, 208, 47, 65, 143, 27, 97, 39, 77, 67, 100, + 238, 185, 70, 76, 172, 229, 242, 161, 41, 122, 168, 244, 63, 124, 214, 19, 27, 237, 11, 158, 87, 169, 136, 168, + 100, 65, 229, 71, 5, 45, 3, 186, 210, 227, 247, 255, 72, 151, 151, 236, 93, 118, 11, 195, 164, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 335, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5004" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4542298877795265203" + } + } + ] + } + ] + }, + "cborHex": "9f425004d8669f1bffffffffffffffed9f1b3f097cc362a46ab3ffffff", + "cborBytes": [ + 159, 66, 80, 4, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 27, 63, 9, 124, 195, 98, 164, 106, + 179, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 336, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8383630320758220833" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3035464766686433878" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7eb1f0592b831948" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17053187641807130420" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8674301991321638394" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4461c3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cd228f70095f64c82" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7458a35bbcfce8219fbf1b2a20231f6a8f1256487eb1f0592b8319481beca917cefdfecf341b78614fb3e33095fa434461c3492cd228f70095f64c82ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 116, 88, 163, 91, 188, 252, 232, 33, 159, 191, 27, 42, 32, 35, 31, 106, 143, 18, 86, 72, + 126, 177, 240, 89, 43, 131, 25, 72, 27, 236, 169, 23, 206, 253, 254, 207, 52, 27, 120, 97, 79, 179, 227, 48, 149, + 250, 67, 68, 97, 195, 73, 44, 210, 40, 247, 0, 149, 246, 76, 130, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 337, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "781429340225253439" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4807386187000320368" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10854877052526603476" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a66027fab274" + } + ] + } + } + ] + }, + "cborHex": "bf1b0ad831d84131b03f9f1b42b7444436461170411b1b96a4452aec632cd41bfffffffffffffffc46a66027fab274ffff", + "cborBytes": [ + 191, 27, 10, 216, 49, 216, 65, 49, 176, 63, 159, 27, 66, 183, 68, 68, 54, 70, 17, 112, 65, 27, 27, 150, 164, 69, + 42, 236, 99, 44, 212, 27, 255, 255, 255, 255, 255, 255, 255, 252, 70, 166, 96, 39, 250, 178, 116, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 338, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a2c14424fb8439858eeb" + } + ] + }, + "cborHex": "d905079f4aa2c14424fb8439858eebff", + "cborBytes": [217, 5, 7, 159, 74, 162, 193, 68, 36, 251, 132, 57, 133, 142, 235, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 339, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "954c5d6662e5be" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9752681168669178716" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2bb054d7a93" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2242479841956020574" + } + } + } + ] + }, + "cborHex": "bf47954c5d6662e5bed8669f1b87587bd9da2afb5c80ff46c2bb054d7a938041e41b1f1ee388fbc3415eff", + "cborBytes": [ + 191, 71, 149, 76, 93, 102, 98, 229, 190, 216, 102, 159, 27, 135, 88, 123, 217, 218, 42, 251, 92, 128, 255, 70, + 194, 187, 5, 77, 122, 147, 128, 65, 228, 27, 31, 30, 227, 136, 251, 195, 65, 94, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 340, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7174618374932037261" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f64c284949" + } + ] + }, + "cborHex": "d8669f1b63915d6634d07e8d9f45f64c284949ffff", + "cborBytes": [216, 102, 159, 27, 99, 145, 93, 102, 52, 208, 126, 141, 159, 69, 246, 76, 40, 73, 73, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 341, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3008414bf8db677f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cb1c1a5e1efc8a5fa45" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13355045736741053905" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "900a94b5f1bf6e11eb34" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be87e4c51229e138" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17268309412421316489" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16952759451988794308" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cf" + }, + { + "_tag": "ByteArray", + "bytearray": "847afddd015a6c3b731e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15622027415159055596" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7007050a" + }, + { + "_tag": "ByteArray", + "bytearray": "61a5cc3135ce97051c00fd" + }, + { + "_tag": "ByteArray", + "bytearray": "84d78af8dbb7" + }, + { + "_tag": "ByteArray", + "bytearray": "1243384653097b" + } + ] + }, + "cborHex": "9f9fbf483008414bf8db677f41ca4a3cb1c1a5e1efc8a5fa451bb956a756e98ba5d14a900a94b5f1bf6e11eb34411748be87e4c51229e1381befa55beb4ee82f89ffa09f1beb444ce6ea701bc441cf4a847afddd015a6c3b731e1bd8cc972a3ff824ecffff447007050a4b61a5cc3135ce97051c00fd4684d78af8dbb7471243384653097bff", + "cborBytes": [ + 159, 159, 191, 72, 48, 8, 65, 75, 248, 219, 103, 127, 65, 202, 74, 60, 177, 193, 165, 225, 239, 200, 165, 250, 69, + 27, 185, 86, 167, 86, 233, 139, 165, 209, 74, 144, 10, 148, 181, 241, 191, 110, 17, 235, 52, 65, 23, 72, 190, 135, + 228, 197, 18, 41, 225, 56, 27, 239, 165, 91, 235, 78, 232, 47, 137, 255, 160, 159, 27, 235, 68, 76, 230, 234, 112, + 27, 196, 65, 207, 74, 132, 122, 253, 221, 1, 90, 108, 59, 115, 30, 27, 216, 204, 151, 42, 63, 248, 36, 236, 255, + 255, 68, 112, 7, 5, 10, 75, 97, 165, 204, 49, 53, 206, 151, 5, 28, 0, 253, 70, 132, 215, 138, 248, 219, 183, 71, + 18, 67, 56, 70, 83, 9, 123, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 342, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + }, + "cborHex": "d9050c9f12ff", + "cborBytes": [217, 5, 12, 159, 18, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 343, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "289283665048657042" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5261155728593050833" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8720" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8765869169967197927" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6000470933442178556" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9995053029697417892" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16988457533999445047" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15302498615246831448" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "712f7fd8ac678a4750" + } + ] + } + } + ] + }, + "cborHex": "bf1b0403bdf5ee8c5c92d8669f1b49036142a6ccdcd19f428720ffff1b79a69f9107716ee71b5345f485a8e0adfc1b8ab58fc6424e72a41bebc3201e53d874371bd45d656a19b1bf589f49712f7fd8ac678a4750ffff", + "cborBytes": [ + 191, 27, 4, 3, 189, 245, 238, 140, 92, 146, 216, 102, 159, 27, 73, 3, 97, 66, 166, 204, 220, 209, 159, 66, 135, + 32, 255, 255, 27, 121, 166, 159, 145, 7, 113, 110, 231, 27, 83, 69, 244, 133, 168, 224, 173, 252, 27, 138, 181, + 143, 198, 66, 78, 114, 164, 27, 235, 195, 32, 30, 83, 216, 116, 55, 27, 212, 93, 101, 106, 25, 177, 191, 88, 159, + 73, 113, 47, 127, 216, 172, 103, 138, 71, 80, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 344, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15128812391038115407" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15697826370979699067" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14a9bbd36f06490743ff01" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3adf" + }, + { + "_tag": "ByteArray", + "bytearray": "cff1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14515811096115652687" + } + }, + { + "_tag": "ByteArray", + "bytearray": "351cb72cf48bbeb03f72" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12530169976827956658" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18257284242224882890" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b310ca15d36a8fe1530c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11730947592873055461" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "03" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89fbf0a41061bd1f456b6b95ade4f1bffffffffffffffee1bd9d9e1e9ec01197b4b14a9bbd36f06490743ff01ff9fd87f9f423adf42cff11bc9728548aaa5a84f4a351cb72cf48bbeb03f72ff9f1bade41b34cc184db21bfd5ee7497d26a4ca4ab310ca15d36a8fe1530c1ba2ccb2aeb7ec14e5ff804103ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 191, 10, 65, 6, 27, 209, 244, 86, 182, 185, 90, + 222, 79, 27, 255, 255, 255, 255, 255, 255, 255, 238, 27, 217, 217, 225, 233, 236, 1, 25, 123, 75, 20, 169, 187, + 211, 111, 6, 73, 7, 67, 255, 1, 255, 159, 216, 127, 159, 66, 58, 223, 66, 207, 241, 27, 201, 114, 133, 72, 170, + 165, 168, 79, 74, 53, 28, 183, 44, 244, 139, 190, 176, 63, 114, 255, 159, 27, 173, 228, 27, 52, 204, 24, 77, 178, + 27, 253, 94, 231, 73, 125, 38, 164, 202, 74, 179, 16, 202, 21, 211, 106, 143, 225, 83, 12, 27, 162, 204, 178, 174, + 183, 236, 20, 229, 255, 128, 65, 3, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 345, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9481812846568680506" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "339352719336379649" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12696811447552741675" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4dac366d6ab18" + }, + { + "_tag": "ByteArray", + "bytearray": "f41d7da9aa64c2c50ad9c9" + }, + { + "_tag": "ByteArray", + "bytearray": "c7795a55da715ea959" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13926939173831450611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0998c8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4913585722679251744" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c83891003e17c6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14629003945803189871" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12635778841014125184" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7fdc313f2b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14602722516203516386" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6077701766880860865" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6535903621802902353" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9876665737187711926" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f84c1177" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15199066002504240622" + } + } + ] + }, + "cborHex": "9f9fd8669f1b83962a8c12762c3a9f1b04b59f80119b95011bb03422bdaf7e912b47e4dac366d6ab184bf41d7da9aa64c2c50ad9c949c7795a55da715ea959ffffd8669f1bc1466d63f8b21ff39f430998c81b4430902e75ba5320ffff47c83891003e17c6d8669f1bcb04a994b7630e6f9f1baf5b4de89f0b4280457fdc313f2b1bcaa74ac28be8b1e2ffffff9fd8669f1b5458558e51b29ac19f1b5ab431b71fc043511b8910f728be585bb644f84c1177ffffff1bd2edee004cfb4deeff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 131, 150, 42, 140, 18, 118, 44, 58, 159, 27, 4, 181, 159, 128, 17, 155, 149, 1, 27, + 176, 52, 34, 189, 175, 126, 145, 43, 71, 228, 218, 195, 102, 214, 171, 24, 75, 244, 29, 125, 169, 170, 100, 194, + 197, 10, 217, 201, 73, 199, 121, 90, 85, 218, 113, 94, 169, 89, 255, 255, 216, 102, 159, 27, 193, 70, 109, 99, + 248, 178, 31, 243, 159, 67, 9, 152, 200, 27, 68, 48, 144, 46, 117, 186, 83, 32, 255, 255, 71, 200, 56, 145, 0, 62, + 23, 198, 216, 102, 159, 27, 203, 4, 169, 148, 183, 99, 14, 111, 159, 27, 175, 91, 77, 232, 159, 11, 66, 128, 69, + 127, 220, 49, 63, 43, 27, 202, 167, 74, 194, 139, 232, 177, 226, 255, 255, 255, 159, 216, 102, 159, 27, 84, 88, + 85, 142, 81, 178, 154, 193, 159, 27, 90, 180, 49, 183, 31, 192, 67, 81, 27, 137, 16, 247, 40, 190, 88, 91, 182, + 68, 248, 76, 17, 119, 255, 255, 255, 27, 210, 237, 238, 0, 76, 251, 77, 238, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 346, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f6247" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4711211628556159340" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8573d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad54d5abc5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb3114f37611d608182aa38a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d38af83327e9ab83aee53c75" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f26e9fd616525e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17606346564771524759" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17991198817482069944" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "571860594205970650" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12384971328130998105" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "03bac7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14699962219411002987" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3948919709613776404" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95345a955dc5ac5a" + }, + { + "_tag": "ByteArray", + "bytearray": "3e8f8881add4a5aec47e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4584159078983964783" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16172375704885436077" + } + }, + { + "_tag": "ByteArray", + "bytearray": "67ffd0a622c52d61" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8736606608835563177" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14315806120495383631" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "24248cbc9f67a80f" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf431f62471b41619603ddc7896c438573d645ad54d5abc54cbb3114f37611d608182aa38a4cd38af83327e9ab83aee53c7547f26e9fd616525e1bf4564eeb11a03097ff9fd8669f1bf9ad9400c77257b89f1b07efa82e3ab0d0daffffd8669f1babe041cdf6a55f599f4303bac71bcc00c1c13ba7d66b1b36cd618dba115e144895345a955dc5ac5a4a3e8f8881add4a5aec47effff1b3f9e3464f8b8986f9f1be06fd204c7da9ead4867ffd0a622c52d611b793ea96c15f94ea9ff1bc6abf5d1757d844fff4824248cbc9f67a80f80a0ff", + "cborBytes": [ + 159, 191, 67, 31, 98, 71, 27, 65, 97, 150, 3, 221, 199, 137, 108, 67, 133, 115, 214, 69, 173, 84, 213, 171, 197, + 76, 187, 49, 20, 243, 118, 17, 214, 8, 24, 42, 163, 138, 76, 211, 138, 248, 51, 39, 233, 171, 131, 174, 229, 60, + 117, 71, 242, 110, 159, 214, 22, 82, 94, 27, 244, 86, 78, 235, 17, 160, 48, 151, 255, 159, 216, 102, 159, 27, 249, + 173, 148, 0, 199, 114, 87, 184, 159, 27, 7, 239, 168, 46, 58, 176, 208, 218, 255, 255, 216, 102, 159, 27, 171, + 224, 65, 205, 246, 165, 95, 89, 159, 67, 3, 186, 199, 27, 204, 0, 193, 193, 59, 167, 214, 107, 27, 54, 205, 97, + 141, 186, 17, 94, 20, 72, 149, 52, 90, 149, 93, 197, 172, 90, 74, 62, 143, 136, 129, 173, 212, 165, 174, 196, 126, + 255, 255, 27, 63, 158, 52, 100, 248, 184, 152, 111, 159, 27, 224, 111, 210, 4, 199, 218, 158, 173, 72, 103, 255, + 208, 166, 34, 197, 45, 97, 27, 121, 62, 169, 108, 21, 249, 78, 169, 255, 27, 198, 171, 245, 209, 117, 125, 132, + 79, 255, 72, 36, 36, 140, 188, 159, 103, 168, 15, 128, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 347, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9933660645853226645" + } + } + } + ] + }, + "cborHex": "bf428b101b89db73ba035be695ff", + "cborBytes": [191, 66, 139, 16, 27, 137, 219, 115, 186, 3, 91, 230, 149, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 348, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12271514854603394197" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5841103092759361251" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12312744815621669856" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6751397931595396667" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2574378861756246689" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9179969722046503782" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "621306223840486643" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9384813405587516098" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15999291376867913155" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12987691626443296982" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2630542432923737804" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17567795858027618174" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f201" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16498415759506481875" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16493070877697804318" + } + }, + { + "_tag": "ByteArray", + "bytearray": "13" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10299314041529596656" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13345370796469689945" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "81941031223859fba746cef2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4216223233113105471" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13508231514218220298" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6501099210031842043" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75ea6b2a2d3c660203" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17422500991630198545" + } + } + ] + }, + "cborHex": "d8669f1baa4d2dbe34908c959fbf1b510fc450bc5b76e31baadfa82c912983e01b5db1c8a5fa0cf63b1b23ba07ef64416aa11b7f65cdd31b6c5b661b089f52b800c064f31b823d8e11cb5e2ac21bde08e6bd482eadc31bb43d8cb8f677d0d61b24819067d102decc1bf3cd594134509f7e42f201ffd8669f1be4f625b88e1722d39f801be4e328944884881e41131b8eee838d7b907af0d8669f1bb934480857729e599f4c81941031223859fba746cef21b3a8308b12774a43f1bbb76e0fe14b6cb0affffffff1b5a388b49878542fb4975ea6b2a2d3c6602031bf1c92857f1024711ffff", + "cborBytes": [ + 216, 102, 159, 27, 170, 77, 45, 190, 52, 144, 140, 149, 159, 191, 27, 81, 15, 196, 80, 188, 91, 118, 227, 27, 170, + 223, 168, 44, 145, 41, 131, 224, 27, 93, 177, 200, 165, 250, 12, 246, 59, 27, 35, 186, 7, 239, 100, 65, 106, 161, + 27, 127, 101, 205, 211, 27, 108, 91, 102, 27, 8, 159, 82, 184, 0, 192, 100, 243, 27, 130, 61, 142, 17, 203, 94, + 42, 194, 27, 222, 8, 230, 189, 72, 46, 173, 195, 27, 180, 61, 140, 184, 246, 119, 208, 214, 27, 36, 129, 144, 103, + 209, 2, 222, 204, 27, 243, 205, 89, 65, 52, 80, 159, 126, 66, 242, 1, 255, 216, 102, 159, 27, 228, 246, 37, 184, + 142, 23, 34, 211, 159, 128, 27, 228, 227, 40, 148, 72, 132, 136, 30, 65, 19, 27, 142, 238, 131, 141, 123, 144, + 122, 240, 216, 102, 159, 27, 185, 52, 72, 8, 87, 114, 158, 89, 159, 76, 129, 148, 16, 49, 34, 56, 89, 251, 167, + 70, 206, 242, 27, 58, 131, 8, 177, 39, 116, 164, 63, 27, 187, 118, 224, 254, 20, 182, 203, 10, 255, 255, 255, 255, + 27, 90, 56, 139, 73, 135, 133, 66, 251, 73, 117, 234, 107, 42, 45, 60, 102, 2, 3, 27, 241, 201, 40, 87, 241, 2, + 71, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 349, + "sample": { + "_tag": "ByteArray", + "bytearray": "5125c483e1e7c4813820" + }, + "cborHex": "4a5125c483e1e7c4813820", + "cborBytes": [74, 81, 37, 196, 131, 225, 231, 196, 129, 56, 32], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 350, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9041265031977876779" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13623423639308171490" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5469081935777640152" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14274815614950075490" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9044258636582821888" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1515480901355531162" + } + }, + { + "_tag": "ByteArray", + "bytearray": "401b056121fea8" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3224939556788539472" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41e7727718f4feb949b4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a1606c9ba391785e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be0b2a1ed0" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "64754d03a0" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a198e2a17a134e27bb" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d1487b570c94d94f09763a" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f1b7d7906a4d733bd2bd8669f1bbd101f9eb59f78e29f1b4be6150b4d882ed8ffffd8669f1bc61a552bab4c6c629f9f1b7d83a94fba4720001b150811d9b52f6b9a47401b056121fea8ffbf1b2cc14970c07c90504a41e7727718f4feb949b4492a1606c9ba391785e145be0b2a1ed0ff9f4564754d03a0ff49a198e2a17a134e27bbffff4bd1487b570c94d94f09763affff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 27, 125, 121, 6, 164, 215, 51, 189, 43, 216, 102, + 159, 27, 189, 16, 31, 158, 181, 159, 120, 226, 159, 27, 75, 230, 21, 11, 77, 136, 46, 216, 255, 255, 216, 102, + 159, 27, 198, 26, 85, 43, 171, 76, 108, 98, 159, 159, 27, 125, 131, 169, 79, 186, 71, 32, 0, 27, 21, 8, 17, 217, + 181, 47, 107, 154, 71, 64, 27, 5, 97, 33, 254, 168, 255, 191, 27, 44, 193, 73, 112, 192, 124, 144, 80, 74, 65, + 231, 114, 119, 24, 244, 254, 185, 73, 180, 73, 42, 22, 6, 201, 186, 57, 23, 133, 225, 69, 190, 11, 42, 30, 208, + 255, 159, 69, 100, 117, 77, 3, 160, 255, 73, 161, 152, 226, 161, 122, 19, 78, 39, 187, 255, 255, 75, 209, 72, 123, + 87, 12, 148, 217, 79, 9, 118, 58, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 351, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5f" + }, + { + "_tag": "ByteArray", + "bytearray": "89528c7fcd97" + } + ] + }, + "cborHex": "9f415f4689528c7fcd97ff", + "cborBytes": [159, 65, 95, 70, 137, 82, 140, 127, 205, 151, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 352, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "cborHex": "07", + "cborBytes": [7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 353, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1236236427556817369" + } + }, + "cborHex": "1b1127fe7b22ec09d9", + "cborBytes": [27, 17, 39, 254, 123, 34, 236, 9, 217], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 354, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "cborHex": "0b", + "cborBytes": [11], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 355, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "cborHex": "1bfffffffffffffff7", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 247], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 356, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7850567688009576886" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cebb5930048" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12398029780629188538" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8384d7d8604ac1c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36bf" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9598608969013132940" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1275124554187434040" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11967940832579447194" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6606736c5" + } + } + ] + }, + "cborHex": "bf1b6cf2d1b7d8f871b6bf460cebb59300481bac0ea665dd1defba488384d7d8604ac1c44236bfff1b85351c006fe7fe8c1b11b22706b0b868381ba616aac742ca699a45c6606736c5ff", + "cborBytes": [ + 191, 27, 108, 242, 209, 183, 216, 248, 113, 182, 191, 70, 12, 235, 181, 147, 0, 72, 27, 172, 14, 166, 101, 221, + 29, 239, 186, 72, 131, 132, 215, 216, 96, 74, 193, 196, 66, 54, 191, 255, 27, 133, 53, 28, 0, 111, 231, 254, 140, + 27, 17, 178, 39, 6, 176, 184, 104, 56, 27, 166, 22, 170, 199, 66, 202, 105, 154, 69, 198, 96, 103, 54, 197, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 357, + "sample": { + "_tag": "ByteArray", + "bytearray": "7cb4137d695171" + }, + "cborHex": "477cb4137d695171", + "cborBytes": [71, 124, 180, 19, 125, 105, 81, 113], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 358, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12738056986536735586" + } + }, + "cborHex": "1bb0c6ab5713347362", + "cborBytes": [27, 176, 198, 171, 87, 19, 52, 115, 98], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 359, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17780025880580309916" + } + }, + "cborHex": "1bf6bf5755f53dc39c", + "cborBytes": [27, 246, 191, 87, 85, 245, 61, 195, 156], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 360, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1269972952034094621" + } + }, + "cborHex": "1b119fd9abd858ae1d", + "cborBytes": [27, 17, 159, 217, 171, 216, 88, 174, 29], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 361, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3379911501703364688" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10207899330072047216" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "980579677188391821" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07fc3e" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a8492db55b7a52" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffff91bfffffffffffffffa9f1b2ee7db9a6f494050bf011b8da9be5b5fe46e701b0d9bb80564c8038d4307fc3effff47a8492db55b7a5203ff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 27, 46, 231, + 219, 154, 111, 73, 64, 80, 191, 1, 27, 141, 169, 190, 91, 95, 228, 110, 112, 27, 13, 155, 184, 5, 100, 200, 3, + 141, 67, 7, 252, 62, 255, 255, 71, 168, 73, 45, 181, 91, 122, 82, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 362, + "sample": { + "_tag": "ByteArray", + "bytearray": "030401fd" + }, + "cborHex": "44030401fd", + "cborBytes": [68, 3, 4, 1, 253], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 363, + "sample": { + "_tag": "ByteArray", + "bytearray": "012ff8" + }, + "cborHex": "43012ff8", + "cborBytes": [67, 1, 47, 248], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 364, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9702544524932856853" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f14d0a359" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3af33165eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c5540e44d77045a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fee3dc85d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40290ada428719" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "890d93d049f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6be851bed4ee0ae01ff48c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bc5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1a246c78c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3181569631983014412" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d7e1342793" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5049320307475290049" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c10a6d23de42d3d0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8766030133614571876" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a65cecead548e8e45dbb2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11013125359419773021" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce8ae4a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11406455131484340152" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5503174787441669429" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11510063298156335050" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12161795089183095900" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17068721243245689545" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13410555567001062081" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16008001206512217268" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "67" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "428853735320950897" + } + }, + { + "_tag": "ByteArray", + "bytearray": "50b238" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8592172078588214920" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11910500347576757149" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4707997498078008159" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17343763842156393144" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9855014070499995434" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8cf45e3e17d681" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4454996349267271557" + } + } + ] + } + ] + }, + "cborHex": "d9050d9f1b86a65cd6d208bc15bf451f14d0a359453af33165eb483c5540e44d77045a45fee3dc85d14740290ada42871946890d93d049f34b6be851bed4ee0ae01ff48c427bc545e1a246c78c1b2c2734b93e84920cffd8669f1bfffffffffffffff99f45d7e1342793ffff9fbf1b4612ca11343b17c148c10a6d23de42d3d01b79a731f64c7771644b2a65cecead548e8e45dbb21b98d67b2a130fd05d44ce8ae4a41b9e4bde82128e3fb81b4c5f344fe658b5351b9fbbf59634de8fca1ba8c7603299d93c5c1bece0478969d2bac91bba1bdd3c6bbc4ac1ffd8669f1bde27d848862f6cb49f41671b05f398333a6798714350b2381b773d86fb7147be88ffffff9fd8669f1ba54a98f62a7aab9d9f1b41562ac7cc5e135f1bf0b16d52bffef2b81b88c40b1540a0ef2affff478cf45e3e17d6811b3dd3539379bcdf85ffff", + "cborBytes": [ + 217, 5, 13, 159, 27, 134, 166, 92, 214, 210, 8, 188, 21, 191, 69, 31, 20, 208, 163, 89, 69, 58, 243, 49, 101, 235, + 72, 60, 85, 64, 228, 77, 119, 4, 90, 69, 254, 227, 220, 133, 209, 71, 64, 41, 10, 218, 66, 135, 25, 70, 137, 13, + 147, 208, 73, 243, 75, 107, 232, 81, 190, 212, 238, 10, 224, 31, 244, 140, 66, 123, 197, 69, 225, 162, 70, 199, + 140, 27, 44, 39, 52, 185, 62, 132, 146, 12, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, + 69, 215, 225, 52, 39, 147, 255, 255, 159, 191, 27, 70, 18, 202, 17, 52, 59, 23, 193, 72, 193, 10, 109, 35, 222, + 66, 211, 208, 27, 121, 167, 49, 246, 76, 119, 113, 100, 75, 42, 101, 206, 206, 173, 84, 142, 142, 69, 219, 178, + 27, 152, 214, 123, 42, 19, 15, 208, 93, 68, 206, 138, 228, 164, 27, 158, 75, 222, 130, 18, 142, 63, 184, 27, 76, + 95, 52, 79, 230, 88, 181, 53, 27, 159, 187, 245, 150, 52, 222, 143, 202, 27, 168, 199, 96, 50, 153, 217, 60, 92, + 27, 236, 224, 71, 137, 105, 210, 186, 201, 27, 186, 27, 221, 60, 107, 188, 74, 193, 255, 216, 102, 159, 27, 222, + 39, 216, 72, 134, 47, 108, 180, 159, 65, 103, 27, 5, 243, 152, 51, 58, 103, 152, 113, 67, 80, 178, 56, 27, 119, + 61, 134, 251, 113, 71, 190, 136, 255, 255, 255, 159, 216, 102, 159, 27, 165, 74, 152, 246, 42, 122, 171, 157, 159, + 27, 65, 86, 42, 199, 204, 94, 19, 95, 27, 240, 177, 109, 82, 191, 254, 242, 184, 27, 136, 196, 11, 21, 64, 160, + 239, 42, 255, 255, 71, 140, 244, 94, 62, 23, 214, 129, 27, 61, 211, 83, 147, 121, 188, 223, 133, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 365, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12652068624946770717" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3352568541371545544" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "001362" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d317dd29a98ef30" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "393864076983831444" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6c6e80ea7ea4b6ffe2ac21c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "133729176378031159" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "830aaa613261f4" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + }, + "cborHex": "d8669f1baf952d617fd1331d9fbf1b2e86b7536199b7c843001362484d317dd29a98ef301b0577494a8e688b944ca6c6e80ea7ea4b6ffe2ac21c1b01db19fa361e3c3741d447830aaa613261f4ff01ffff", + "cborBytes": [ + 216, 102, 159, 27, 175, 149, 45, 97, 127, 209, 51, 29, 159, 191, 27, 46, 134, 183, 83, 97, 153, 183, 200, 67, 0, + 19, 98, 72, 77, 49, 125, 210, 154, 152, 239, 48, 27, 5, 119, 73, 74, 142, 104, 139, 148, 76, 166, 198, 232, 14, + 167, 234, 75, 111, 254, 42, 194, 28, 27, 1, 219, 25, 250, 54, 30, 60, 55, 65, 212, 71, 131, 10, 170, 97, 50, 97, + 244, 255, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 366, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5479427237927449290" + } + }, + "cborHex": "1b4c0ad60aa943f2ca", + "cborBytes": [27, 76, 10, 214, 10, 169, 67, 242, 202], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 367, + "sample": { + "_tag": "ByteArray", + "bytearray": "91407102062427" + }, + "cborHex": "4791407102062427", + "cborBytes": [71, 145, 64, 113, 2, 6, 36, 39], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 368, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10498901693072917237" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11559822574574137151" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c208f62" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d4818bf3f25c0101612c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d9745417692faf3d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1943887398612954747" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1916" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "125e7d35ce386bbffd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10731468065030492681" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7c77878725389de70ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0309aebd1f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5919e49b2d9271401" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3519352474681355944" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2230217869369437390" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "743479015899202160" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12987411262425366323" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0604760f73" + }, + { + "_tag": "ByteArray", + "bytearray": "1a" + }, + { + "_tag": "ByteArray", + "bytearray": "491cf01551" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15601216564836746339" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7356047683030877048" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10803498872309389504" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bc2b66c80f" + }, + { + "_tag": "ByteArray", + "bytearray": "53cc" + } + ] + }, + "cborHex": "d8669f1b91b39776db5bc2f59f9fd8669f1ba06cbd6290086f3f80ffbf440c208f624b3d4818bf3f25c0101612c9490d9745417692faf3d61b1afa134a35aeee7b42191649125e7d35ce386bbffd41a41b94edd558ee9752094aa7c77878725389de70ec450309aebd1f49c5919e49b2d92714011b30d7406decc62ea8ff1b1ef35356037e6cceffd8669f1b0a515e39d0a102709f1bb43c8dbba0c57f339f450604760f73411a45491cf015511bd882a7ce9308c463ffd8669f1b6615ee64c9e4037880ff1b95edbcfc275598c0ffff45bc2b66c80f4253ccffff", + "cborBytes": [ + 216, 102, 159, 27, 145, 179, 151, 118, 219, 91, 194, 245, 159, 159, 216, 102, 159, 27, 160, 108, 189, 98, 144, 8, + 111, 63, 128, 255, 191, 68, 12, 32, 143, 98, 75, 61, 72, 24, 191, 63, 37, 192, 16, 22, 18, 201, 73, 13, 151, 69, + 65, 118, 146, 250, 243, 214, 27, 26, 250, 19, 74, 53, 174, 238, 123, 66, 25, 22, 73, 18, 94, 125, 53, 206, 56, + 107, 191, 253, 65, 164, 27, 148, 237, 213, 88, 238, 151, 82, 9, 74, 167, 199, 120, 120, 114, 83, 137, 222, 112, + 236, 69, 3, 9, 174, 189, 31, 73, 197, 145, 158, 73, 178, 217, 39, 20, 1, 27, 48, 215, 64, 109, 236, 198, 46, 168, + 255, 27, 30, 243, 83, 86, 3, 126, 108, 206, 255, 216, 102, 159, 27, 10, 81, 94, 57, 208, 161, 2, 112, 159, 27, + 180, 60, 141, 187, 160, 197, 127, 51, 159, 69, 6, 4, 118, 15, 115, 65, 26, 69, 73, 28, 240, 21, 81, 27, 216, 130, + 167, 206, 147, 8, 196, 99, 255, 216, 102, 159, 27, 102, 21, 238, 100, 201, 228, 3, 120, 128, 255, 27, 149, 237, + 188, 252, 39, 85, 152, 192, 255, 255, 69, 188, 43, 102, 200, 15, 66, 83, 204, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 369, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bb87c01" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6713162083047903150" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17192985276596796781" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5a45" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "292596736152564534" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1454da32c21affe" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10818064307663295385" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10042761462949455231" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cbb731c1cf657c00adb159" + }, + { + "_tag": "ByteArray", + "bytearray": "00d6ecab51" + }, + { + "_tag": "ByteArray", + "bytearray": "b2b83037d6292cd97f8ace70" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12608497810541364747" + } + } + ] + } + } + ] + }, + "cborHex": "bf443bb87c019f1b5d29f158bfb10fae1bee99c1044812bd6d425a45ff418c1b040f832e68cff33648c1454da32c21affed8669f1b96217c2bd79a53999f1b8b5f0e577b15a57f4bcbb731c1cf657c00adb1594500d6ecab514cb2b83037d6292cd97f8ace701baefa61f4bc9bc60bffffff", + "cborBytes": [ + 191, 68, 59, 184, 124, 1, 159, 27, 93, 41, 241, 88, 191, 177, 15, 174, 27, 238, 153, 193, 4, 72, 18, 189, 109, 66, + 90, 69, 255, 65, 140, 27, 4, 15, 131, 46, 104, 207, 243, 54, 72, 193, 69, 77, 163, 44, 33, 175, 254, 216, 102, + 159, 27, 150, 33, 124, 43, 215, 154, 83, 153, 159, 27, 139, 95, 14, 87, 123, 21, 165, 127, 75, 203, 183, 49, 193, + 207, 101, 124, 0, 173, 177, 89, 69, 0, 214, 236, 171, 81, 76, 178, 184, 48, 55, 214, 41, 44, 217, 127, 138, 206, + 112, 27, 174, 250, 97, 244, 188, 155, 198, 11, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 370, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff980ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 371, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16693153149614082610" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1856054459069713063" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2336951141810547270" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3736643668442891253" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9742669715028669895" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8078983830506250933" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4772298049054513792" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8805253489806650900" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11792458433222844699" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10146568519645929228" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2338304948344939809" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12560163687499306993" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "de91cc6d3160e33c90ec6e" + }, + { + "_tag": "ByteArray", + "bytearray": "180703fafe057b05a402" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10629882969784031733" + } + } + ] + }, + "cborHex": "d8669f1be7a9fe586ff0ca329fbf1b19c207b25ca14aa71b206e84ae890faa461b33db399e6dc043f51b8734ea7ca83d75c71b701e50fd537322b51b423a9bca782f1a801b7a328b659131ae141ba3a73a7744cea11b1b8ccfda4f4ea81f0c1b207353f62ea365211bae4eaa53c22817f141e5ff4bde91cc6d3160e33c90ec6e4a180703fafe057b05a4021b9384ee3dd1f399f5ffff", + "cborBytes": [ + 216, 102, 159, 27, 231, 169, 254, 88, 111, 240, 202, 50, 159, 191, 27, 25, 194, 7, 178, 92, 161, 74, 167, 27, 32, + 110, 132, 174, 137, 15, 170, 70, 27, 51, 219, 57, 158, 109, 192, 67, 245, 27, 135, 52, 234, 124, 168, 61, 117, + 199, 27, 112, 30, 80, 253, 83, 115, 34, 181, 27, 66, 58, 155, 202, 120, 47, 26, 128, 27, 122, 50, 139, 101, 145, + 49, 174, 20, 27, 163, 167, 58, 119, 68, 206, 161, 27, 27, 140, 207, 218, 79, 78, 168, 31, 12, 27, 32, 115, 83, + 246, 46, 163, 101, 33, 27, 174, 78, 170, 83, 194, 40, 23, 241, 65, 229, 255, 75, 222, 145, 204, 109, 49, 96, 227, + 60, 144, 236, 110, 74, 24, 7, 3, 250, 254, 5, 123, 5, 164, 2, 27, 147, 132, 238, 61, 209, 243, 153, 245, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 372, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15151579772752564166" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1bd2453986dce90fc6d8669f1bfffffffffffffffa80ffff", + "cborBytes": [ + 191, 27, 210, 69, 57, 134, 220, 233, 15, 198, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 373, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12636946183277242940" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "204b9e2655f1cc3e" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18198182336817463671" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18165499224440540237" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "852464992269881108" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15336337547471048580" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1847773804909276080" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17404700280469851269" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5331479762702155212" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7007140463043665936" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3af5b8c4a1c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71" + } + } + ] + } + ] + }, + "cborHex": "d8669f1baf5f7399abf7ea3c9f48204b9e2655f1cc3e801bfc8cee6acfcb01771bfc18d14cb8698c4dbf1b0bd49064d7b3cf141bd4d59dbe787f4f841b19a49c7c52e3abb01bf189eab0e78c0c851b49fd3898c70bbdcc1b613e5d202efbe01046e3af5b8c4a1c4171ffffff", + "cborBytes": [ + 216, 102, 159, 27, 175, 95, 115, 153, 171, 247, 234, 60, 159, 72, 32, 75, 158, 38, 85, 241, 204, 62, 128, 27, 252, + 140, 238, 106, 207, 203, 1, 119, 27, 252, 24, 209, 76, 184, 105, 140, 77, 191, 27, 11, 212, 144, 100, 215, 179, + 207, 20, 27, 212, 213, 157, 190, 120, 127, 79, 132, 27, 25, 164, 156, 124, 82, 227, 171, 176, 27, 241, 137, 234, + 176, 231, 140, 12, 133, 27, 73, 253, 56, 152, 199, 11, 189, 204, 27, 97, 62, 93, 32, 46, 251, 224, 16, 70, 227, + 175, 91, 140, 74, 28, 65, 113, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 374, + "sample": { + "_tag": "ByteArray", + "bytearray": "14c7" + }, + "cborHex": "4214c7", + "cborBytes": [66, 20, 199], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 375, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17072625506052145265" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dadc107c4c6af873" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8913681623504166584" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1becee26716f8300719f06ff1bfffffffffffffffebf48dadc107c4c6af8731b7bb3c235b9e49eb8ffff", + "cborBytes": [ + 191, 27, 236, 238, 38, 113, 111, 131, 0, 113, 159, 6, 255, 27, 255, 255, 255, 255, 255, 255, 255, 254, 191, 72, + 218, 220, 16, 124, 76, 106, 248, 115, 27, 123, 179, 194, 53, 185, 228, 158, 184, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 376, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "87c7ba" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "40c657c923063af9f1857a30" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7977955807311495340" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1446517004409051684" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11929869474412145896" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11533010225489358904" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a0091d73687c2c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4764162196252885291" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72a443deb4" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8602763844944515182" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8690209555783088830" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8894595583262410278" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2612c59cff02b48957dcc0" + }, + { + "_tag": "ByteArray", + "bytearray": "1b7f3a3762268f5316c5ff" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f5cf2fef00177e03" + }, + { + "_tag": "ByteArray", + "bytearray": "dd03476d16ab8a034de6" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4039560687790255854" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5640597315757800728" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1578226421869400686" + } + } + } + ] + } + ] + }, + "cborHex": "9f4387c7babf4c40c657c923063af9f1857a301b6eb76489a89100acff9f1b14130f8d315d1a249f1ba58f69146f1cace81ba00d7bb2113db03847a0091d73687c2c1b421db4469fff812b4572a443deb4ffffd8669f1b77632823387dd06e9fd8669f1b7899d38c5c27fabe9f1b7b6ff38eb11d46264b2612c59cff02b48957dcc04b1b7f3a3762268f5316c5ffffff48f5cf2fef00177e034add03476d16ab8a034de6801b380f670b045eeeeeffffbf06021b4e476d5f9ec3fd181b15e6fc91a2a9526effff", + "cborBytes": [ + 159, 67, 135, 199, 186, 191, 76, 64, 198, 87, 201, 35, 6, 58, 249, 241, 133, 122, 48, 27, 110, 183, 100, 137, 168, + 145, 0, 172, 255, 159, 27, 20, 19, 15, 141, 49, 93, 26, 36, 159, 27, 165, 143, 105, 20, 111, 28, 172, 232, 27, + 160, 13, 123, 178, 17, 61, 176, 56, 71, 160, 9, 29, 115, 104, 124, 44, 27, 66, 29, 180, 70, 159, 255, 129, 43, 69, + 114, 164, 67, 222, 180, 255, 255, 216, 102, 159, 27, 119, 99, 40, 35, 56, 125, 208, 110, 159, 216, 102, 159, 27, + 120, 153, 211, 140, 92, 39, 250, 190, 159, 27, 123, 111, 243, 142, 177, 29, 70, 38, 75, 38, 18, 197, 156, 255, 2, + 180, 137, 87, 220, 192, 75, 27, 127, 58, 55, 98, 38, 143, 83, 22, 197, 255, 255, 255, 72, 245, 207, 47, 239, 0, + 23, 126, 3, 74, 221, 3, 71, 109, 22, 171, 138, 3, 77, 230, 128, 27, 56, 15, 103, 11, 4, 94, 238, 238, 255, 255, + 191, 6, 2, 27, 78, 71, 109, 95, 158, 195, 253, 24, 27, 21, 230, 252, 145, 162, 169, 82, 110, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 377, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6432242253610754898" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12335028452335292701" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7671335186252032021" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "430b30f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8815395438729533871" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10797928181477759866" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9460890797231773213" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4625277427645628457" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10878067545175031607" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a0865fe03e5" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "195542b4d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4506383064888333167" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84477dee7987ac7657fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13601047933346724866" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad9934e3a6aac9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad96fa28e03f3cfc0cf55c53" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d27586ff072df67d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1d1c758cfc66c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8800849248626764640" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f3b6d783169e98095" + } + ] + }, + "cborHex": "9fbf1b5943ea400bba23521bab2ed3060bc8111d1b6a760eb51981e81544430b30f21b7a569372101299af1b95d9f2789f295b7a1b834bd60ddbc3161d1b403049508e7340291b96f6a8cc40dcff37460a0865fe03e5ffbf45195542b4d51b3e89e3858c81536f4a84477dee7987ac7657fe1bbcc0a108b0313c0247ad9934e3a6aac94cad96fa28e03f3cfc0cf55c5348d27586ff072df67d47a1d1c758cfc66cff1b7a22e5c342296b60498f3b6d783169e98095ff", + "cborBytes": [ + 159, 191, 27, 89, 67, 234, 64, 11, 186, 35, 82, 27, 171, 46, 211, 6, 11, 200, 17, 29, 27, 106, 118, 14, 181, 25, + 129, 232, 21, 68, 67, 11, 48, 242, 27, 122, 86, 147, 114, 16, 18, 153, 175, 27, 149, 217, 242, 120, 159, 41, 91, + 122, 27, 131, 75, 214, 13, 219, 195, 22, 29, 27, 64, 48, 73, 80, 142, 115, 64, 41, 27, 150, 246, 168, 204, 64, + 220, 255, 55, 70, 10, 8, 101, 254, 3, 229, 255, 191, 69, 25, 85, 66, 180, 213, 27, 62, 137, 227, 133, 140, 129, + 83, 111, 74, 132, 71, 125, 238, 121, 135, 172, 118, 87, 254, 27, 188, 192, 161, 8, 176, 49, 60, 2, 71, 173, 153, + 52, 227, 166, 170, 201, 76, 173, 150, 250, 40, 224, 63, 60, 252, 12, 245, 92, 83, 72, 210, 117, 134, 255, 7, 45, + 246, 125, 71, 161, 209, 199, 88, 207, 198, 108, 255, 27, 122, 34, 229, 195, 66, 41, 107, 96, 73, 143, 59, 109, + 120, 49, 105, 233, 128, 149, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 378, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2626d29d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "205f70" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40d3c7cd538b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11942617808408512648" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10466938576442539461" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15026028168535917792" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e273879755c4a1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17343665125135786891" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4e3bcecb60a9e4e9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9128837651412391342" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8240047022062001327" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e57b942b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3891788855422211758" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3282945994038838437" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10097629305422673369" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6574eafe62440a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13067755706997878148" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a2e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13108335613316813236" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3627681681291796638" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14847870887011679304" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26f8c7c344c61cc434c6bf8b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16601008757178260060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15152304517101094738" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf442626d29d43205f704640d3c7cd538bd8669f1ba5bcb39f3e7188889f1b9142092dd6b0bdc5ffff418e1bd0872d020a98c4e047e273879755c4a1d8669f1bf0b1138a670ca38b9f484e3bcecb60a9e4e91b7eb0257a30a595ae41b61b725a871be2855cafffff44e57b942bbf1b360269582c43d6ae1b2d8f5dfcdf7a04a51b8c21fc5a8f4af5d9476574eafe62440a1bb559fe945f312d84426a2e1bb5ea29ca1459d1b41b32581d44d396e09e1bce0e3be78331fc484c26f8c7c344c61cc434c6bf8b1be662a1823cc25a5c1bd247ccad8e5b8752ffff", + "cborBytes": [ + 191, 68, 38, 38, 210, 157, 67, 32, 95, 112, 70, 64, 211, 199, 205, 83, 139, 216, 102, 159, 27, 165, 188, 179, 159, + 62, 113, 136, 136, 159, 27, 145, 66, 9, 45, 214, 176, 189, 197, 255, 255, 65, 142, 27, 208, 135, 45, 2, 10, 152, + 196, 224, 71, 226, 115, 135, 151, 85, 196, 161, 216, 102, 159, 27, 240, 177, 19, 138, 103, 12, 163, 139, 159, 72, + 78, 59, 206, 203, 96, 169, 228, 233, 27, 126, 176, 37, 122, 48, 165, 149, 174, 65, 182, 27, 114, 90, 135, 27, 226, + 133, 92, 175, 255, 255, 68, 229, 123, 148, 43, 191, 27, 54, 2, 105, 88, 44, 67, 214, 174, 27, 45, 143, 93, 252, + 223, 122, 4, 165, 27, 140, 33, 252, 90, 143, 74, 245, 217, 71, 101, 116, 234, 254, 98, 68, 10, 27, 181, 89, 254, + 148, 95, 49, 45, 132, 66, 106, 46, 27, 181, 234, 41, 202, 20, 89, 209, 180, 27, 50, 88, 29, 68, 211, 150, 224, + 158, 27, 206, 14, 59, 231, 131, 49, 252, 72, 76, 38, 248, 199, 195, 68, 198, 28, 196, 52, 198, 191, 139, 27, 230, + 98, 161, 130, 60, 194, 90, 92, 27, 210, 71, 204, 173, 142, 91, 135, 82, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 379, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3726787580503895509" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "82edb04d59fe3c31" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "791089749690493035" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a450ef72e713" + }, + { + "_tag": "ByteArray", + "bytearray": "6d0b7fe43d4a14897a66" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8609629692578323680" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8cc01cd706" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b33b8358f2145add59f80ffff4882edb04d59fe3c31d8669f1b0afa83ef9bc1286b9f46a450ef72e7134a6d0b7fe43d4a14897a661b777b8c96f1c95ce0458cc01cd706ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 51, 184, 53, 143, 33, 69, 173, 213, 159, 128, 255, 255, 72, 130, 237, 176, 77, 89, 254, + 60, 49, 216, 102, 159, 27, 10, 250, 131, 239, 155, 193, 40, 107, 159, 70, 164, 80, 239, 114, 231, 19, 74, 109, 11, + 127, 228, 61, 74, 20, 137, 122, 102, 27, 119, 123, 140, 150, 241, 201, 92, 224, 69, 140, 192, 28, 215, 6, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 380, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "cborHex": "1bffffffffffffffef", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 239], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 381, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3cbb" + }, + { + "_tag": "ByteArray", + "bytearray": "13" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7781997871335051427" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a5dfc47c86cdb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "747d50" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cac5e1a3f38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d29e2362b4500814846e95b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f75a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6886578177092335188" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9854992946186134729" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9f44" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5f173b729d895a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "823670894975444784" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fcb14063d00670ba" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1592500436143654688" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1204613957934290780" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14fc0703fefe05" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12838342016342303407" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17664976472828817946" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c6fabb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2513440191698688650" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13397863550402884208" + } + } + ] + } + ] + }, + "cborHex": "9fd905039f139f423cbb41131b6bff35d54bc590a3ffff9f09bf474a5dfc47c86cdb43747d50467cac5e1a3f384c3d29e2362b4500814846e95b438f75a91b5f920a5d8b8bb65441a41b88c3f7dedd67a4c9ff429f44d8669f1bfffffffffffffff39f475f173b729d895a1b0b6e4450a2d6e730ffffff48fcb14063d00670babf024154050f1b1619b2b590ff47201b10b7a6032e26975c1bfffffffffffffffa4714fc0703fefe05ffd9050c9f1bb22af40b1d0e22af1bf5269a824c98321a9f43c6fabb1b22e188899e63da8aff1bb9eec5ea06eaf270ffff", + "cborBytes": [ + 159, 217, 5, 3, 159, 19, 159, 66, 60, 187, 65, 19, 27, 107, 255, 53, 213, 75, 197, 144, 163, 255, 255, 159, 9, + 191, 71, 74, 93, 252, 71, 200, 108, 219, 67, 116, 125, 80, 70, 124, 172, 94, 26, 63, 56, 76, 61, 41, 226, 54, 43, + 69, 0, 129, 72, 70, 233, 91, 67, 143, 117, 169, 27, 95, 146, 10, 93, 139, 139, 182, 84, 65, 164, 27, 136, 195, + 247, 222, 221, 103, 164, 201, 255, 66, 159, 68, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, + 71, 95, 23, 59, 114, 157, 137, 90, 27, 11, 110, 68, 80, 162, 214, 231, 48, 255, 255, 255, 72, 252, 177, 64, 99, + 208, 6, 112, 186, 191, 2, 65, 84, 5, 15, 27, 22, 25, 178, 181, 144, 255, 71, 32, 27, 16, 183, 166, 3, 46, 38, 151, + 92, 27, 255, 255, 255, 255, 255, 255, 255, 250, 71, 20, 252, 7, 3, 254, 254, 5, 255, 217, 5, 12, 159, 27, 178, 42, + 244, 11, 29, 14, 34, 175, 27, 245, 38, 154, 130, 76, 152, 50, 26, 159, 67, 198, 250, 187, 27, 34, 225, 136, 137, + 158, 99, 218, 138, 255, 27, 185, 238, 197, 234, 6, 234, 242, 112, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 382, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2362810876846422609" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8856854454237290057" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13245439088774783855" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4874702585967787382" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "890605" + } + ] + }, + "cborHex": "d87d9fd8669f1b20ca63f949dc3a519fa09f1b7ae9de3354265e491bb7d140ac847ea36fffa09f1b43a66c2cb649bd76ffffff43890605ff", + "cborBytes": [ + 216, 125, 159, 216, 102, 159, 27, 32, 202, 99, 249, 73, 220, 58, 81, 159, 160, 159, 27, 122, 233, 222, 51, 84, 38, + 94, 73, 27, 183, 209, 64, 172, 132, 126, 163, 111, 255, 160, 159, 27, 67, 166, 108, 44, 182, 73, 189, 118, 255, + 255, 255, 67, 137, 6, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 383, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "49d13e74315de78a0ab374" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7868827167791326021" + } + } + } + ] + } + ] + }, + "cborHex": "d9050b9fbf4b49d13e74315de78a0ab3741b6d33b09e47252345ffff", + "cborBytes": [ + 217, 5, 11, 159, 191, 75, 73, 209, 62, 116, 49, 93, 231, 138, 10, 179, 116, 27, 109, 51, 176, 158, 71, 37, 35, 69, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 384, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4551046625837749479" + } + }, + "cborHex": "1b3f2890cb314c94e7", + "cborBytes": [27, 63, 40, 144, 203, 49, 76, 148, 231], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 385, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff02a200" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + }, + "cborHex": "bf44ff02a20012ff", + "cborBytes": [191, 68, 255, 2, 162, 0, 18, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 386, + "sample": { + "_tag": "ByteArray", + "bytearray": "fafb04" + }, + "cborHex": "43fafb04", + "cborBytes": [67, 250, 251, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 387, + "sample": { + "_tag": "ByteArray", + "bytearray": "c416f801" + }, + "cborHex": "44c416f801", + "cborBytes": [68, 196, 22, 248, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 388, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5144291256220003560" + }, + "fields": [] + }, + "cborHex": "d8669f1b476431a454242ce880ff", + "cborBytes": [216, 102, 159, 27, 71, 100, 49, 164, 84, 36, 44, 232, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 389, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11867258026347081762" + } + }, + "cborHex": "1ba4b0f84cae523022", + "cborBytes": [27, 164, 176, 248, 76, 174, 82, 48, 34], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 390, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01f9fb0064" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0100f907" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "585c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f94505fd04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70e86e1c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9e089046e03020cc7f0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5794895260664433255" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "372292221647832206" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3ac53ce4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5385091719364951608" + } + } + ] + } + ] + }, + "cborHex": "9fbf4501f9fb0064440100f90742585c0f45f94505fd044470e86e1c4af9e089046e03020cc7f01b506b9a89727f8a67ff80d8669f1b052aa5cd97f5c48e9f443ac53ce41b4abbb06327a53e38ffffff", + "cborBytes": [ + 159, 191, 69, 1, 249, 251, 0, 100, 68, 1, 0, 249, 7, 66, 88, 92, 15, 69, 249, 69, 5, 253, 4, 68, 112, 232, 110, + 28, 74, 249, 224, 137, 4, 110, 3, 2, 12, 199, 240, 27, 80, 107, 154, 137, 114, 127, 138, 103, 255, 128, 216, 102, + 159, 27, 5, 42, 165, 205, 151, 245, 196, 142, 159, 68, 58, 197, 60, 228, 27, 74, 187, 176, 99, 39, 165, 62, 56, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 391, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13904840637850124148" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d63ae6c8343fbdc03e8af9a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6411382249038994076" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5033047885472250034" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bf2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3561994778443935798" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54998380" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58f54e8c9b0ea84081b1a69f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0bfc4a00" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c76547c71f159383d219" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4829a3340b5ab7a29465d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eeca5cd46983877b40408a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c25a2f161a7fc978" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f271adf7f4215bdbfa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "002734" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2114727766291526133" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "251f347822f552" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a72dd079d04b518b9f9ec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64ea5aa52ac3ebb9fa0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf19df89" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9cbf219" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2dd16dabf96" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd645913db97680cd4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14816021965109399071" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1add1fd253" + }, + { + "_tag": "ByteArray", + "bytearray": "22091a0147d8f36c0866e7d1" + } + ] + } + ] + }, + "cborHex": "d8669f1bc0f7eae39d78ff749fbf4c8d63ae6c8343fbdc03e8af9a1b58f9ce2fc136da9cff1b45d8fa62b71ab8b20dbf424bf21b316ebf60f4f2703644549983804225f64c58f54e8c9b0ea84081b1a69f440bfc4a004ac76547c71f159383d2194ba4829a3340b5ab7a29465d4beeca5cd46983877b40408a48c25a2f161a7fc97849f271adf7f4215bdbfa43002734ff9f1b1d5905b2fa7631f5bf47251f347822f5524b3a72dd079d04b518b9f9ec4a64ea5aa52ac3ebb9fa0f44cf19df8944e9cbf21946c2dd16dabf9649fd645913db97680cd41bcd9d157a86bb0e1fff451add1fd2534c22091a0147d8f36c0866e7d1ffffff", + "cborBytes": [ + 216, 102, 159, 27, 192, 247, 234, 227, 157, 120, 255, 116, 159, 191, 76, 141, 99, 174, 108, 131, 67, 251, 220, 3, + 232, 175, 154, 27, 88, 249, 206, 47, 193, 54, 218, 156, 255, 27, 69, 216, 250, 98, 183, 26, 184, 178, 13, 191, 66, + 75, 242, 27, 49, 110, 191, 96, 244, 242, 112, 54, 68, 84, 153, 131, 128, 66, 37, 246, 76, 88, 245, 78, 140, 155, + 14, 168, 64, 129, 177, 166, 159, 68, 11, 252, 74, 0, 74, 199, 101, 71, 199, 31, 21, 147, 131, 210, 25, 75, 164, + 130, 154, 51, 64, 181, 171, 122, 41, 70, 93, 75, 238, 202, 92, 212, 105, 131, 135, 123, 64, 64, 138, 72, 194, 90, + 47, 22, 26, 127, 201, 120, 73, 242, 113, 173, 247, 244, 33, 91, 219, 250, 67, 0, 39, 52, 255, 159, 27, 29, 89, 5, + 178, 250, 118, 49, 245, 191, 71, 37, 31, 52, 120, 34, 245, 82, 75, 58, 114, 221, 7, 157, 4, 181, 24, 185, 249, + 236, 74, 100, 234, 90, 165, 42, 195, 235, 185, 250, 15, 68, 207, 25, 223, 137, 68, 233, 203, 242, 25, 70, 194, + 221, 22, 218, 191, 150, 73, 253, 100, 89, 19, 219, 151, 104, 12, 212, 27, 205, 157, 21, 122, 134, 187, 14, 31, + 255, 69, 26, 221, 31, 210, 83, 76, 34, 9, 26, 1, 71, 216, 243, 108, 8, 102, 231, 209, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 392, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9867972925165119870" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2448339366973849240" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16252032376160849372" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17727188288718746850" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13033402929423041133" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e15b0d04765d78d4c1d9818" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13100776018701281163" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7151058931129007289" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "220045184782929070" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14287064861049199205" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16443887905026433913" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "464c8c39ee5cb1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16904210931215603681" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3107173525364010279" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6174386306980100871" + } + } + ] + }, + "cborHex": "d8669f1b88f21517b9a3a97e9fbf1b21fa3faeb214be981be18ad156d3370ddc1bf6039fd36f8bb4e21bb4dff2e90ecbc26d4c0e15b0d04765d78d4c1d98181bb5cf4e60cca5678bffbf1b633daa35bdd43cb91b030dc1ee01858cae1bc645d9cb85cd9a6542c4dd1be4346ced1971637947464c8c39ee5cb11bea97d247936197e11b2b1ee5dbdad1ed27ff1b55afd3a20595bb07ffff", + "cborBytes": [ + 216, 102, 159, 27, 136, 242, 21, 23, 185, 163, 169, 126, 159, 191, 27, 33, 250, 63, 174, 178, 20, 190, 152, 27, + 225, 138, 209, 86, 211, 55, 13, 220, 27, 246, 3, 159, 211, 111, 139, 180, 226, 27, 180, 223, 242, 233, 14, 203, + 194, 109, 76, 14, 21, 176, 208, 71, 101, 215, 141, 76, 29, 152, 24, 27, 181, 207, 78, 96, 204, 165, 103, 139, 255, + 191, 27, 99, 61, 170, 53, 189, 212, 60, 185, 27, 3, 13, 193, 238, 1, 133, 140, 174, 27, 198, 69, 217, 203, 133, + 205, 154, 101, 66, 196, 221, 27, 228, 52, 108, 237, 25, 113, 99, 121, 71, 70, 76, 140, 57, 238, 92, 177, 27, 234, + 151, 210, 71, 147, 97, 151, 225, 27, 43, 30, 229, 219, 218, 209, 237, 39, 255, 27, 85, 175, 211, 162, 5, 149, 187, + 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 393, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e3eb028b17f39de2bfebd1e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13deac9a70165b92" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11641921912691836990" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f774193980b34c7229232" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "368df28b5bfa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87662be8de03b002" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a012fb0634b0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adf0802b38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "125f" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3df852134c63430df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4db0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd001639903ac4f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12358931117984358864" + } + } + } + ] + }, + "cborHex": "bf4c1e3eb028b17f39de2bfebd1ebf4813deac9a70165b921ba1906a4c4cd5483e4b5f774193980b34c722923246368df28b5bfa4887662be8de03b00246a012fb0634b045adf0802b3842125fff49d3df852134c63430df424db048dd001639903ac4f81bab83be5f12faa1d0ff", + "cborBytes": [ + 191, 76, 30, 62, 176, 40, 177, 127, 57, 222, 43, 254, 189, 30, 191, 72, 19, 222, 172, 154, 112, 22, 91, 146, 27, + 161, 144, 106, 76, 76, 213, 72, 62, 75, 95, 119, 65, 147, 152, 11, 52, 199, 34, 146, 50, 70, 54, 141, 242, 139, + 91, 250, 72, 135, 102, 43, 232, 222, 3, 176, 2, 70, 160, 18, 251, 6, 52, 176, 69, 173, 240, 128, 43, 56, 66, 18, + 95, 255, 73, 211, 223, 133, 33, 52, 198, 52, 48, 223, 66, 77, 176, 72, 221, 0, 22, 57, 144, 58, 196, 248, 27, 171, + 131, 190, 95, 18, 250, 161, 208, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 394, + "sample": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "cborHex": "4105", + "cborBytes": [65, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 395, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1595393440468418792" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bd2db6" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3aa82bea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00b9325ad69dbebfd1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f06ac6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc70fc41bcd4af7d10" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d735" + } + ] + } + ] + }, + "cborHex": "9f1b1623f9e1a01bc0e843bd2db69fbf443aa82bea4900b9325ad69dbebfd143f06ac649fc70fc41bcd4af7d10ff42d735ffff", + "cborBytes": [ + 159, 27, 22, 35, 249, 225, 160, 27, 192, 232, 67, 189, 45, 182, 159, 191, 68, 58, 168, 43, 234, 73, 0, 185, 50, + 90, 214, 157, 190, 191, 209, 67, 240, 106, 198, 73, 252, 112, 252, 65, 188, 212, 175, 125, 16, 255, 66, 215, 53, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 396, + "sample": { + "_tag": "ByteArray", + "bytearray": "05684bd4f81000" + }, + "cborHex": "4705684bd4f81000", + "cborBytes": [71, 5, 104, 75, 212, 248, 16, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 397, + "sample": { + "_tag": "ByteArray", + "bytearray": "827d7a7e750a622feb" + }, + "cborHex": "49827d7a7e750a622feb", + "cborBytes": [73, 130, 125, 122, 126, 117, 10, 98, 47, 235], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 398, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3534269004818149490" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15234428370745756942" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8e004e2b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9047828749111183235" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "08ce07" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7668060910189079846" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c42c73171" + }, + { + "_tag": "ByteArray", + "bytearray": "28e79ffa6e" + }, + { + "_tag": "ByteArray", + "bytearray": "3d3138" + }, + { + "_tag": "ByteArray", + "bytearray": "2c904492" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16319650910783112777" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87c9f1b310c3eef3cdbf0729f131bd36b8fe3426f0d0effa0448e004e2bd8669f1b7d90584f5356c7839f4308ce07d8669f1b6a6a6cc54be0ed269f457c42c731714528e79ffa6e433d3138442c9044921be27b0c09c39b8649ffffffffff", + "cborBytes": [ + 216, 124, 159, 27, 49, 12, 62, 239, 60, 219, 240, 114, 159, 19, 27, 211, 107, 143, 227, 66, 111, 13, 14, 255, 160, + 68, 142, 0, 78, 43, 216, 102, 159, 27, 125, 144, 88, 79, 83, 86, 199, 131, 159, 67, 8, 206, 7, 216, 102, 159, 27, + 106, 106, 108, 197, 75, 224, 237, 38, 159, 69, 124, 66, 199, 49, 113, 69, 40, 231, 159, 250, 110, 67, 61, 49, 56, + 68, 44, 144, 68, 146, 27, 226, 123, 12, 9, 195, 155, 134, 73, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 399, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1084478872747540951" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "032ffc0006" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12093105344191318179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "83570638931502475" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0f0cd7c9f88881d7a045032ffc0006bf1ba7d3573d0fe6c8a31b0128e70da72a258bffff", + "cborBytes": [ + 191, 27, 15, 12, 215, 201, 248, 136, 129, 215, 160, 69, 3, 47, 252, 0, 6, 191, 27, 167, 211, 87, 61, 15, 230, 200, + 163, 27, 1, 40, 231, 13, 167, 42, 37, 139, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 400, + "sample": { + "_tag": "ByteArray", + "bytearray": "9b74b42d02fffb7aa10551" + }, + "cborHex": "4b9b74b42d02fffb7aa10551", + "cborBytes": [75, 155, 116, 180, 45, 2, 255, 251, 122, 161, 5, 81], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 401, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04f84a04c656fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + } + ] + }, + "cborHex": "bf4704f84a04c656fe04ff", + "cborBytes": [191, 71, 4, 248, 74, 4, 198, 86, 254, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 402, + "sample": { + "_tag": "ByteArray", + "bytearray": "e9c2fe00" + }, + "cborHex": "44e9c2fe00", + "cborBytes": [68, 233, 194, 254, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 403, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10587042909201000851" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13363659309722039186" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b92ecbb6ef0be69939f41d61bb9754156a752f392ffff", + "cborBytes": [ + 191, 27, 146, 236, 187, 110, 240, 190, 105, 147, 159, 65, 214, 27, 185, 117, 65, 86, 167, 82, 243, 146, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 404, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "409955702702748979" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1ed829d416a4" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f1b05b0748a213e3533461ed829d416a480ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 27, 5, 176, 116, 138, 33, 62, 53, 51, 70, 30, 216, + 41, 212, 22, 164, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 405, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9594588493496314402" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "524109b13d758b13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "872d2cc6186dc7d4cb00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9e7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3f1baa4b92cea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "354484397607226579" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c540ed775b4e6ca42407ef07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aedab3a8" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5214324767793418132" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4656617310847989390" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d185ebfe6eeb1582608a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02bc12fdfeedf52707" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13484513622568703004" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0b32a3ff0205fc06" + } + ] + }, + "cborHex": "d8669f1b8526d36688e5ea229f06bf48524109b13d758b1342c2da4a872d2cc6186dc7d4cb0042c9e747c3f1baa4b92cea1b04eb61ae75cc0cd34cc540ed775b4e6ca42407ef0744aedab3a8ff80d8669f1b485d00bfe7d90f949f04bf1b409fa0c5bc07768e4ad185ebfe6eeb1582608a4902bc12fdfeedf527071bbb229db21a1f941cffffff480b32a3ff0205fc06ffff", + "cborBytes": [ + 216, 102, 159, 27, 133, 38, 211, 102, 136, 229, 234, 34, 159, 6, 191, 72, 82, 65, 9, 177, 61, 117, 139, 19, 66, + 194, 218, 74, 135, 45, 44, 198, 24, 109, 199, 212, 203, 0, 66, 201, 231, 71, 195, 241, 186, 164, 185, 44, 234, 27, + 4, 235, 97, 174, 117, 204, 12, 211, 76, 197, 64, 237, 119, 91, 78, 108, 164, 36, 7, 239, 7, 68, 174, 218, 179, + 168, 255, 128, 216, 102, 159, 27, 72, 93, 0, 191, 231, 217, 15, 148, 159, 4, 191, 27, 64, 159, 160, 197, 188, 7, + 118, 142, 74, 209, 133, 235, 254, 110, 235, 21, 130, 96, 138, 73, 2, 188, 18, 253, 254, 237, 245, 39, 7, 27, 187, + 34, 157, 178, 26, 31, 148, 28, 255, 255, 255, 72, 11, 50, 163, 255, 2, 5, 252, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 406, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13329591485993210578" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1129506913173553552" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13454192700556776719" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15959319067041063584" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff89fd8669f1bb8fc38d553b252d29f1b0facd08d9b0ec1901bbab6e4fa5057150f1bdd7ae422a819e2a0ffff0fffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 216, 102, 159, 27, 184, 252, 56, 213, 83, + 178, 82, 210, 159, 27, 15, 172, 208, 141, 155, 14, 193, 144, 27, 186, 182, 228, 250, 80, 87, 21, 15, 27, 221, 122, + 228, 34, 168, 25, 226, 160, 255, 255, 15, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 407, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15767431926117292217" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5103879102492117316" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5134867436299549557" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5383683626522737327" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16752136868834649067" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd9e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12100867160235503799" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f9d9869995111750334a201e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9646503284296492630" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16227589547804410582" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17839107720764514437" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3ce5181607094efebaaa4fb6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5705f910f70b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fcabac40ea6b0b549b5e33b2" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16785931346406788168" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2138849491250436236" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8714740794384486306" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e7579923d0a9a" + }, + { + "_tag": "ByteArray", + "bytearray": "648b779e1a722ca6" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13001458057697068572" + } + } + ] + }, + "cborHex": "d9050d9fbf1bdad12bcc205fd8b91b46d49f0090950944ff9fbf1b4742b6ba455afb751b4ab6afbbfdf97aaf1be87b8bb9bf9d23eb42dd9eff1ba7eeea91b006f0b79f4cf9d9869995111750334a201e1b85df43a0b121a6561be133fab75db942d61bf7913df4d618e0854c3ce5181607094efebaaa4fb6ff465705f910f70bff4cfcabac40ea6b0b549b5e33b29f1be8f39b9fb6abcc48d8669f1b1daeb847ba01d88c9f1b78f0fa946ee48fa2478e7579923d0a9a48648b779e1a722ca6ffffff1bb46e7538032c861cff", + "cborBytes": [ + 217, 5, 13, 159, 191, 27, 218, 209, 43, 204, 32, 95, 216, 185, 27, 70, 212, 159, 0, 144, 149, 9, 68, 255, 159, + 191, 27, 71, 66, 182, 186, 69, 90, 251, 117, 27, 74, 182, 175, 187, 253, 249, 122, 175, 27, 232, 123, 139, 185, + 191, 157, 35, 235, 66, 221, 158, 255, 27, 167, 238, 234, 145, 176, 6, 240, 183, 159, 76, 249, 217, 134, 153, 149, + 17, 23, 80, 51, 74, 32, 30, 27, 133, 223, 67, 160, 177, 33, 166, 86, 27, 225, 51, 250, 183, 93, 185, 66, 214, 27, + 247, 145, 61, 244, 214, 24, 224, 133, 76, 60, 229, 24, 22, 7, 9, 78, 254, 186, 170, 79, 182, 255, 70, 87, 5, 249, + 16, 247, 11, 255, 76, 252, 171, 172, 64, 234, 107, 11, 84, 155, 94, 51, 178, 159, 27, 232, 243, 155, 159, 182, + 171, 204, 72, 216, 102, 159, 27, 29, 174, 184, 71, 186, 1, 216, 140, 159, 27, 120, 240, 250, 148, 110, 228, 143, + 162, 71, 142, 117, 121, 146, 61, 10, 154, 72, 100, 139, 119, 158, 26, 114, 44, 166, 255, 255, 255, 27, 180, 110, + 117, 56, 3, 44, 134, 28, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 408, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8625976278508469203" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8987759794280964568" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3630962383937924827" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1138821892487895823" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "505879594144843881" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d454eea96698fdbc8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6627640030475761372" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b77b59fb911717bd3a01b7cbaefe9e8a7a1d8d8669f1b3263c50cef6ceedb9f1b0fcde87a3c2ddb0f41bf1b07053ecf841f4869499d454eea96698fdbc81b5bfa1b7e33aab6dcffffff", + "cborBytes": [ + 191, 27, 119, 181, 159, 185, 17, 113, 123, 211, 160, 27, 124, 186, 239, 233, 232, 167, 161, 216, 216, 102, 159, + 27, 50, 99, 197, 12, 239, 108, 238, 219, 159, 27, 15, 205, 232, 122, 60, 45, 219, 15, 65, 191, 27, 7, 5, 62, 207, + 132, 31, 72, 105, 73, 157, 69, 78, 234, 150, 105, 143, 219, 200, 27, 91, 250, 27, 126, 51, 170, 182, 220, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 409, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17688419085475874638" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33b39174" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a2c6c9231ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cccd2" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bf579e370e407874ed87e801bfffffffffffffff4bf4433b3917404465a2c6c9231ea439cccd2ffff", + "cborBytes": [ + 191, 27, 245, 121, 227, 112, 228, 7, 135, 78, 216, 126, 128, 27, 255, 255, 255, 255, 255, 255, 255, 244, 191, 68, + 51, 179, 145, 116, 4, 70, 90, 44, 108, 146, 49, 234, 67, 156, 204, 210, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 410, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7974225362116143979" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2adaf2744e60ddd7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "908906514105256570" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a30bc8621023ceb13c6fe3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6428161037114289797" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15141186555752284115" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c84684fac" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2036596743990882234" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1036624412975972533" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e2c724858a0058e1f6d4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9412366163032442993" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11593036629777546665" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11608683816717948843" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12503899511357097583" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fdb46579d752135ab768e7c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ee505d064fc2f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ce8eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "655757540683874" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2445535520352435894" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17371147446722034236" + } + } + ] + }, + "cborHex": "9fd8669f1b6eaa23b7b3d7eb6b9f482adaf2744e60ddd71b0c9d15a8b3484a7a4ba30bc8621023ceb13c6fe3d8669f1b59356a67c8342e859f1bd2204cf37588ffd3450c84684fac1b1c4371f2c44b2fba1b0e62d4694cee40b5ffff9f4ae2c724858a0058e1f6d41b829f71280b7488711ba0e2bd6469fb7da91ba11a546d054c97ab1bad86c65b699ec66fffffffbf4c0fdb46579d752135ab768e7c470ee505d064fc2f439ce8eb1b0002546873457062ff1b21f049994834feb6a01bf112b69106ccfa3cff", + "cborBytes": [ + 159, 216, 102, 159, 27, 110, 170, 35, 183, 179, 215, 235, 107, 159, 72, 42, 218, 242, 116, 78, 96, 221, 215, 27, + 12, 157, 21, 168, 179, 72, 74, 122, 75, 163, 11, 200, 98, 16, 35, 206, 177, 60, 111, 227, 216, 102, 159, 27, 89, + 53, 106, 103, 200, 52, 46, 133, 159, 27, 210, 32, 76, 243, 117, 136, 255, 211, 69, 12, 132, 104, 79, 172, 27, 28, + 67, 113, 242, 196, 75, 47, 186, 27, 14, 98, 212, 105, 76, 238, 64, 181, 255, 255, 159, 74, 226, 199, 36, 133, 138, + 0, 88, 225, 246, 212, 27, 130, 159, 113, 40, 11, 116, 136, 113, 27, 160, 226, 189, 100, 105, 251, 125, 169, 27, + 161, 26, 84, 109, 5, 76, 151, 171, 27, 173, 134, 198, 91, 105, 158, 198, 111, 255, 255, 255, 191, 76, 15, 219, 70, + 87, 157, 117, 33, 53, 171, 118, 142, 124, 71, 14, 229, 5, 208, 100, 252, 47, 67, 156, 232, 235, 27, 0, 2, 84, 104, + 115, 69, 112, 98, 255, 27, 33, 240, 73, 153, 72, 52, 254, 182, 160, 27, 241, 18, 182, 145, 6, 204, 250, 60, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 411, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9950342154710673092" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f7454c4cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12450918569501364564" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6319" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17074583348490428847" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14086386879103507279" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bce5f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7567" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9891eb4901894d408a09a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "689cb4b374" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f41ed04bf410b1b8a16b778751fe6c4452f7454c4cd1bacca8c789e7191544263191becf51b17269261af41871bc37ce63bd1b01b4f43bce5f34275674bc9891eb4901894d408a09a45689cb4b374ff80ff", + "cborBytes": [ + 159, 65, 237, 4, 191, 65, 11, 27, 138, 22, 183, 120, 117, 31, 230, 196, 69, 47, 116, 84, 196, 205, 27, 172, 202, + 140, 120, 158, 113, 145, 84, 66, 99, 25, 27, 236, 245, 27, 23, 38, 146, 97, 175, 65, 135, 27, 195, 124, 230, 59, + 209, 176, 27, 79, 67, 188, 229, 243, 66, 117, 103, 75, 201, 137, 30, 180, 144, 24, 148, 212, 8, 160, 154, 69, 104, + 156, 180, 179, 116, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 412, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "161a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6c9b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7809727163525296577" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1f3b2d9b00e044" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3099205509217384244" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + } + ] + }, + "cborHex": "9f42161ad905079f426c9bd8669f1bfffffffffffffff99f1b6c61b97a3ea4f1c1471f3b2d9b00e0441b2b0296fd86d5f734ffff06ffff", + "cborBytes": [ + 159, 66, 22, 26, 217, 5, 7, 159, 66, 108, 155, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 27, + 108, 97, 185, 122, 62, 164, 241, 193, 71, 31, 59, 45, 155, 0, 224, 68, 27, 43, 2, 150, 253, 134, 213, 247, 52, + 255, 255, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 413, + "sample": { + "_tag": "ByteArray", + "bytearray": "c4" + }, + "cborHex": "41c4", + "cborBytes": [65, 196], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 414, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "048b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19022081045611749" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9045791572696390593" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "500540ff00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "ByteArray", + "bytearray": "34" + }, + { + "_tag": "ByteArray", + "bytearray": "0258ef78f9ef02fc" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f712743c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b8e" + } + } + ] + }, + "cborHex": "bf11bf42048b1b0043947b5f9cc4e5ff1b7d891b823aca5bc19f45500540ff00074134480258ef78f9ef02fcff44f712743c429b8eff", + "cborBytes": [ + 191, 17, 191, 66, 4, 139, 27, 0, 67, 148, 123, 95, 156, 196, 229, 255, 27, 125, 137, 27, 130, 58, 202, 91, 193, + 159, 69, 80, 5, 64, 255, 0, 7, 65, 52, 72, 2, 88, 239, 120, 249, 239, 2, 252, 255, 68, 247, 18, 116, 60, 66, 155, + 142, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 415, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9897139258139564656" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "88" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11805804573311573594" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10413868353739781687" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7215045214969608062" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "31e261ae" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10945632241582357546" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b21b986fed1bbed06ece0fdd" + }, + { + "_tag": "ByteArray", + "bytearray": "4d31f6ad18bfd19ff0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3797179364510799534" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7c10" + }, + { + "_tag": "ByteArray", + "bytearray": "e7243bdf" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3362397696803908651" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "442472152707545654" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5669107113647157416" + } + }, + { + "_tag": "ByteArray", + "bytearray": "341bb597ba" + }, + { + "_tag": "ByteArray", + "bytearray": "3d360c4a6b8bdd" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b8959b3b7cdfb5a709f41881ba3d6a4b5a7eb1e5a079f1b90857e17ba577637d8669f1b6420fd6564a5377e9f4431e261aeffffd8669f1b97e6b28801943c2a9f4cb21b986fed1bbed06ece0fdd494d31f6ad18bfd19ff01b34b24a83821c16ae427c1044e7243bdfffffd8669f1b2ea9a2e3f796ac2b9f1b0623fa141d22ba361b4eacb6e2369430a845341bb597ba473d360c4a6b8bddffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 137, 89, 179, 183, 205, 251, 90, 112, 159, 65, 136, 27, 163, 214, 164, 181, 167, 235, 30, 90, + 7, 159, 27, 144, 133, 126, 23, 186, 87, 118, 55, 216, 102, 159, 27, 100, 32, 253, 101, 100, 165, 55, 126, 159, 68, + 49, 226, 97, 174, 255, 255, 216, 102, 159, 27, 151, 230, 178, 136, 1, 148, 60, 42, 159, 76, 178, 27, 152, 111, + 237, 27, 190, 208, 110, 206, 15, 221, 73, 77, 49, 246, 173, 24, 191, 209, 159, 240, 27, 52, 178, 74, 131, 130, 28, + 22, 174, 66, 124, 16, 68, 231, 36, 59, 223, 255, 255, 216, 102, 159, 27, 46, 169, 162, 227, 247, 150, 172, 43, + 159, 27, 6, 35, 250, 20, 29, 34, 186, 54, 27, 78, 172, 182, 226, 54, 148, 48, 168, 69, 52, 27, 181, 151, 186, 71, + 61, 54, 12, 74, 107, 139, 221, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 416, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4587430016803065872" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17166681013381115366" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12690499440895839354" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7982233402768748333" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca4c5f5176" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "94598b1ec91c" + }, + { + "_tag": "ByteArray", + "bytearray": "4f71cd3bf71d2f81e449" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11179812863983750695" + } + }, + { + "_tag": "ByteArray", + "bytearray": "926d2613aea3c9a840" + } + ] + } + } + ] + }, + "cborHex": "bf1b3fa9d34b8782d0101bee3c4d6dbf062de61bb01db6011ce3cc7a1b6ec696fcf649ef2d45ca4c5f51769f4694598b1ec91c4a4f71cd3bf71d2f81e4491b9b26ac910d180e2749926d2613aea3c9a840ffff", + "cborBytes": [ + 191, 27, 63, 169, 211, 75, 135, 130, 208, 16, 27, 238, 60, 77, 109, 191, 6, 45, 230, 27, 176, 29, 182, 1, 28, 227, + 204, 122, 27, 110, 198, 150, 252, 246, 73, 239, 45, 69, 202, 76, 95, 81, 118, 159, 70, 148, 89, 139, 30, 201, 28, + 74, 79, 113, 205, 59, 247, 29, 47, 129, 228, 73, 27, 155, 38, 172, 145, 13, 24, 14, 39, 73, 146, 109, 38, 19, 174, + 163, 201, 168, 64, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 417, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "cborHex": "1bfffffffffffffffb", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 251], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 418, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8526695753939961141" + } + }, + "cborHex": "1b7654e89ca16c4535", + "cborBytes": [27, 118, 84, 232, 156, 161, 108, 69, 53], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 419, + "sample": { + "_tag": "ByteArray", + "bytearray": "9b2a3105eb21723507" + }, + "cborHex": "499b2a3105eb21723507", + "cborBytes": [73, 155, 42, 49, 5, 235, 33, 114, 53, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 420, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "630fc96a020202690302b6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17154421480511018012" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "179154f39c240d9a54b73e" + }, + { + "_tag": "ByteArray", + "bytearray": "d08f731b6d73" + } + ] + } + } + ] + }, + "cborHex": "bf104b630fc96a020202690302b61bee10bf72d130941c9f4b179154f39c240d9a54b73e46d08f731b6d73ffff", + "cborBytes": [ + 191, 16, 75, 99, 15, 201, 106, 2, 2, 2, 105, 3, 2, 182, 27, 238, 16, 191, 114, 209, 48, 148, 28, 159, 75, 23, 145, + 84, 243, 156, 36, 13, 154, 84, 183, 62, 70, 208, 143, 115, 27, 109, 115, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 421, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "67df6b386d0207305d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4728074425351211892" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcce807c63d7fc46298b94ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7995788589549422397" + } + } + } + ] + } + ] + }, + "cborHex": "9f0b1bfffffffffffffff2bf4967df6b386d0207305d1b419d7ea3b2ab0b744cbcce807c63d7fc46298b94ba1b6ef6bf5bd337073dffff", + "cborBytes": [ + 159, 11, 27, 255, 255, 255, 255, 255, 255, 255, 242, 191, 73, 103, 223, 107, 56, 109, 2, 7, 48, 93, 27, 65, 157, + 126, 163, 178, 171, 11, 116, 76, 188, 206, 128, 124, 99, 215, 252, 70, 41, 139, 148, 186, 27, 110, 246, 191, 91, + 211, 55, 7, 61, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 422, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1061996283458829868" + } + }, + "cborHex": "1b0ebcf7fe3c593e2c", + "cborBytes": [27, 14, 188, 247, 254, 60, 89, 62, 44], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 423, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4420741323288666606" + } + }, + "cborHex": "1b3d59a0cfba82e1ee", + "cborBytes": [27, 61, 89, 160, 207, 186, 130, 225, 238], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 424, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9515059549159610815" + } + }, + "cborHex": "1b840c483f3c58d9bf", + "cborBytes": [27, 132, 12, 72, 63, 60, 88, 217, 191], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 425, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11831400395922955771" + }, + "fields": [] + }, + "cborHex": "d8669f1ba43193f982675dfb80ff", + "cborBytes": [216, 102, 159, 27, 164, 49, 147, 249, 130, 103, 93, 251, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 426, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17348252435247725810" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c05c8d1843cbf19ae97cc6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b9dccf010" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d921ff5b0c546b591b1c12" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29cf0cf2aa08ba7971af" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e333526dfe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10441255156358899635" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8300633a394a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17900573784195724066" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9fbf1bf0c15facc4befcf24bc05c8d1843cbf19ae97cc6456b9dccf0104bd921ff5b0c546b591b1c1242b7e84a29cf0cf2aa08ba7971af45e333526dfe1b90e6ca3e9bfce7b3ff468300633a394a1bf86b9d03f2a7f322a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 191, 27, 240, 193, 95, 172, 196, 190, 252, 242, + 75, 192, 92, 141, 24, 67, 203, 241, 154, 233, 124, 198, 69, 107, 157, 204, 240, 16, 75, 217, 33, 255, 91, 12, 84, + 107, 89, 27, 28, 18, 66, 183, 232, 74, 41, 207, 12, 242, 170, 8, 186, 121, 113, 175, 69, 227, 51, 82, 109, 254, + 27, 144, 230, 202, 62, 155, 252, 231, 179, 255, 70, 131, 0, 99, 58, 57, 74, 27, 248, 107, 157, 3, 242, 167, 243, + 34, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 427, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb" + }, + "cborHex": "41fb", + "cborBytes": [65, 251], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 428, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7cbc" + }, + { + "_tag": "ByteArray", + "bytearray": "114574e9b345" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6991236494619034372" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "863cddd08f8c5b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10628872969400560600" + } + }, + { + "_tag": "ByteArray", + "bytearray": "92d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14910878692360723726" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7653800292554859396" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5bca8386c06df60455605f" + }, + { + "_tag": "ByteArray", + "bytearray": "6beefea1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11726620052786894742" + } + }, + { + "_tag": "ByteArray", + "bytearray": "73030db231" + }, + { + "_tag": "ByteArray", + "bytearray": "81" + }, + { + "_tag": "ByteArray", + "bytearray": "2d6b352d7fffa1" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bc8a77b3fce14f92ace4" + } + ] + } + ] + }, + "cborHex": "9f9f9f427cbc46114574e9b345ffd8669f1b6105dc8cfa83c3049f47863cddd08f8c5b1b938157a6c7df2bd84292d81bceee152b631a1d0effffffd8669f1b6a37c2d0838363849f4b5bca8386c06df60455605f446beefea19f1ba2bd52cec655d7964573030db2314181472d6b352d7fffa1ff4abc8a77b3fce14f92ace4ffffff", + "cborBytes": [ + 159, 159, 159, 66, 124, 188, 70, 17, 69, 116, 233, 179, 69, 255, 216, 102, 159, 27, 97, 5, 220, 140, 250, 131, + 195, 4, 159, 71, 134, 60, 221, 208, 143, 140, 91, 27, 147, 129, 87, 166, 199, 223, 43, 216, 66, 146, 216, 27, 206, + 238, 21, 43, 99, 26, 29, 14, 255, 255, 255, 216, 102, 159, 27, 106, 55, 194, 208, 131, 131, 99, 132, 159, 75, 91, + 202, 131, 134, 192, 109, 246, 4, 85, 96, 95, 68, 107, 238, 254, 161, 159, 27, 162, 189, 82, 206, 198, 85, 215, + 150, 69, 115, 3, 13, 178, 49, 65, 129, 71, 45, 107, 53, 45, 127, 255, 161, 255, 74, 188, 138, 119, 179, 252, 225, + 79, 146, 172, 228, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 429, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16299838842657557170" + } + }, + "cborHex": "1be234a91130b7cab2", + "cborBytes": [27, 226, 52, 169, 17, 48, 183, 202, 178], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 430, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2812406850538143299" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5276504067720046709" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14945108827678810603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "93cce5bc219e9595" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8191461264341542314" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4208324391047662394" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1481841820802683073" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cb275ac25b311f6fe35c92" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13857219672904088258" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13834093144177607029" + } + }, + { + "_tag": "ByteArray", + "bytearray": "82f7a6" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b2707ad213a337e439f9f1b4939e87e545b6875d8669f1bcf67b14bd359a1eb9f4893cce5bc219e95951b71adea9ea47325aa1b3a66f8bcac020b3affffd8669f1b14908f48ee4310c19f4bcb275ac25b311f6fe35c921bc04ebbdfb200bac21bbffc926b205f81754382f7a6ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 39, 7, 173, 33, 58, 51, 126, 67, 159, 159, 27, 73, 57, 232, 126, 84, 91, 104, 117, 216, 102, + 159, 27, 207, 103, 177, 75, 211, 89, 161, 235, 159, 72, 147, 204, 229, 188, 33, 158, 149, 149, 27, 113, 173, 234, + 158, 164, 115, 37, 170, 27, 58, 102, 248, 188, 172, 2, 11, 58, 255, 255, 216, 102, 159, 27, 20, 144, 143, 72, 238, + 67, 16, 193, 159, 75, 203, 39, 90, 194, 91, 49, 31, 111, 227, 92, 146, 27, 192, 78, 187, 223, 178, 0, 186, 194, + 27, 191, 252, 146, 107, 32, 95, 129, 117, 67, 130, 247, 166, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 431, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9001730733324083084" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ab63aefc4180d6c7816242" + }, + { + "_tag": "ByteArray", + "bytearray": "9eaf6b4a668e6b" + }, + { + "_tag": "ByteArray", + "bytearray": "a4c9" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6666247134194689911" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9366272581796036250" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a2be33" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15141014314979555726" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1569459082101808495" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c721a929f" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12907193436300966756" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b4a4785a2f62d2e066833" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f130b666667133d9db1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60731ba7d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fefb700078bb20" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "785178bf4452" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ba0ee3721ae450f497b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c289bd3f3eb5687f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6394947970069928077" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9952054942058746683" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b3d774aa39a87ca97808d1" + } + ] + }, + "cborHex": "9fd8669f1b7cec9268a37f9f8c9f4bab63aefc4180d6c7816242479eaf6b4a668e6b42a4c9ffffa09fd8669f1b5c83447302a3e7779f1b81fbaf49db6efe9a43a2be331bd21fb04c8775f98e1b15c7d6b846305d6f459c721a929fffff9f1bb31f900b89f8fb64ffbf4b4b4a4785a2f62d2e0668334a9f130b666667133d9db14560731ba7d847fefb700078bb2046785178bf44524a1ba0ee3721ae450f497b48c289bd3f3eb5687f1b58bf6b4c011f988dffff1b8a1ccd3dd695133b4bb3d774aa39a87ca97808d1ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 124, 236, 146, 104, 163, 127, 159, 140, 159, 75, 171, 99, 174, 252, 65, 128, 214, 199, + 129, 98, 66, 71, 158, 175, 107, 74, 102, 142, 107, 66, 164, 201, 255, 255, 160, 159, 216, 102, 159, 27, 92, 131, + 68, 115, 2, 163, 231, 119, 159, 27, 129, 251, 175, 73, 219, 110, 254, 154, 67, 162, 190, 51, 27, 210, 31, 176, 76, + 135, 117, 249, 142, 27, 21, 199, 214, 184, 70, 48, 93, 111, 69, 156, 114, 26, 146, 159, 255, 255, 159, 27, 179, + 31, 144, 11, 137, 248, 251, 100, 255, 191, 75, 75, 74, 71, 133, 162, 246, 45, 46, 6, 104, 51, 74, 159, 19, 11, + 102, 102, 103, 19, 61, 157, 177, 69, 96, 115, 27, 167, 216, 71, 254, 251, 112, 0, 120, 187, 32, 70, 120, 81, 120, + 191, 68, 82, 74, 27, 160, 238, 55, 33, 174, 69, 15, 73, 123, 72, 194, 137, 189, 63, 62, 181, 104, 127, 27, 88, + 191, 107, 76, 1, 31, 152, 141, 255, 255, 27, 138, 28, 205, 61, 214, 149, 19, 59, 75, 179, 215, 116, 170, 57, 168, + 124, 169, 120, 8, 209, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 432, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e205" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13188485629147373966" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13252733404827461685" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecce3c3a62835b2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + } + ] + }, + "cborHex": "bf42e205d905019f1bb706e9cddaac618e1bb7eb2ad0d1b1a8351bffffffffffffffffff48ecce3c3a62835b2d1bffffffffffffffedff", + "cborBytes": [ + 191, 66, 226, 5, 217, 5, 1, 159, 27, 183, 6, 233, 205, 218, 172, 97, 142, 27, 183, 235, 42, 208, 209, 177, 168, + 53, 27, 255, 255, 255, 255, 255, 255, 255, 255, 255, 72, 236, 206, 60, 58, 98, 131, 91, 45, 27, 255, 255, 255, + 255, 255, 255, 255, 237, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 433, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13780056659273657200" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + ] + }, + "cborHex": "d8669f1bbf3c988590c32b709f1bffffffffffffffeeffff", + "cborBytes": [ + 216, 102, 159, 27, 191, 60, 152, 133, 144, 195, 43, 112, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 434, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11814536690819045295" + } + } + ] + }, + "cborHex": "9f1ba3f5aa86321697afff", + "cborBytes": [159, 27, 163, 245, 170, 134, 50, 22, 151, 175, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 435, + "sample": { + "_tag": "ByteArray", + "bytearray": "01f9f9a602" + }, + "cborHex": "4501f9f9a602", + "cborBytes": [69, 1, 249, 249, 166, 2], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 436, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "654581775563153392" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4356882790740105575" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12988449343690834794" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1176750649660704012" + } + }, + { + "_tag": "ByteArray", + "bytearray": "81016a22e5a4dd" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17388658511966598960" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "16b1c836980438345d0244fc" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18397990663384287476" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9857339302158739286" + } + } + } + ] + }, + "cborHex": "bf1b09158aa820e2dff01b3c76c1d07e1399671bb4403ddcc1d9036a9f1b1054a87b2e3c850c4781016a22e5a4ddff1bf150ecc99e5777309f4c16b1c836980438345d0244fcff1bff52cb0817f948f41b88cc4dde6fab2756ff", + "cborBytes": [ + 191, 27, 9, 21, 138, 168, 32, 226, 223, 240, 27, 60, 118, 193, 208, 126, 19, 153, 103, 27, 180, 64, 61, 220, 193, + 217, 3, 106, 159, 27, 16, 84, 168, 123, 46, 60, 133, 12, 71, 129, 1, 106, 34, 229, 164, 221, 255, 27, 241, 80, + 236, 201, 158, 87, 119, 48, 159, 76, 22, 177, 200, 54, 152, 4, 56, 52, 93, 2, 68, 252, 255, 27, 255, 82, 203, 8, + 23, 249, 72, 244, 27, 136, 204, 77, 222, 111, 171, 39, 86, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 437, + "sample": { + "_tag": "ByteArray", + "bytearray": "faff06f8" + }, + "cborHex": "44faff06f8", + "cborBytes": [68, 250, 255, 6, 248], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 438, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "14a1f217d7035881" + }, + { + "_tag": "ByteArray", + "bytearray": "c0a41a61c80d39d16b815ef6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7853819750253717040" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12685661115993078385" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8aa48c836451553cd05be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7882479336515317320" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17326060829982576121" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18219148538579751326" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e6af22b3ee37511fa4841a6d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11212664287197753401" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f4814a1f217d70358814cc0a41a61c80d39d16b815ef61b6cfe5f7397d1e6309fbf1bb00c8592cfc0ba7141884bc8aa48c836451553cd05be1b6d643131825a2e48ff1bf072888707ebcdf99f1bfcd76b11101f919e4ce6af22b3ee37511fa4841a6d1b9b9b62c310217039ffff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 72, 20, 161, 242, 23, 215, 3, 88, 129, 76, 192, + 164, 26, 97, 200, 13, 57, 209, 107, 129, 94, 246, 27, 108, 254, 95, 115, 151, 209, 230, 48, 159, 191, 27, 176, 12, + 133, 146, 207, 192, 186, 113, 65, 136, 75, 200, 170, 72, 200, 54, 69, 21, 83, 205, 5, 190, 27, 109, 100, 49, 49, + 130, 90, 46, 72, 255, 27, 240, 114, 136, 135, 7, 235, 205, 249, 159, 27, 252, 215, 107, 17, 16, 31, 145, 158, 76, + 230, 175, 34, 179, 238, 55, 81, 31, 164, 132, 26, 109, 27, 155, 155, 98, 195, 16, 33, 112, 57, 255, 255, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 439, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00a1c3b5e82cfbf5819377" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5140228698243037220" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a702645b03a" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66a67de88613b3e12c6540" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34057f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c98c04580390afb0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb57b59edd" + } + } + ] + }, + "cborHex": "bf4b00a1c3b5e82cfbf5819377d8669f1b4755c2c4570b782480ff461a702645b03aa04b66a67de88613b3e12c65404334057f48c98c04580390afb045fb57b59eddff", + "cborBytes": [ + 191, 75, 0, 161, 195, 181, 232, 44, 251, 245, 129, 147, 119, 216, 102, 159, 27, 71, 85, 194, 196, 87, 11, 120, 36, + 128, 255, 70, 26, 112, 38, 69, 176, 58, 160, 75, 102, 166, 125, 232, 134, 19, 179, 225, 44, 101, 64, 67, 52, 5, + 127, 72, 201, 140, 4, 88, 3, 144, 175, 176, 69, 251, 87, 181, 158, 221, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 440, + "sample": { + "_tag": "ByteArray", + "bytearray": "524c15" + }, + "cborHex": "43524c15", + "cborBytes": [67, 82, 76, 21], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 441, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5586878279710530378" + } + }, + "cborHex": "1b4d889431e17ddb4a", + "cborBytes": [27, 77, 136, 148, 49, 225, 125, 219, 74], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 442, + "sample": { + "_tag": "ByteArray", + "bytearray": "e84c07abc092735a" + }, + "cborHex": "48e84c07abc092735a", + "cborBytes": [72, 232, 76, 7, 171, 192, 146, 115, 90], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 443, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7093333802534157700" + }, + "fields": [] + }, + "cborHex": "d8669f1b62709582e551bd8480ff", + "cborBytes": [216, 102, 159, 27, 98, 112, 149, 130, 229, 81, 189, 132, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 444, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7ac5c324b435a6ef125cc7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2057634430635950857" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4886279549212479934" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5053026755696544553" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "703d7c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6939625206952542563" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8936436538265375040" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7717242300737332036" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8df8f162fa9aa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12565874895551575197" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11747180103224826497" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2583378987791552870" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7187140247112842479" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd0712c1e75e06" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4b7ac5c324b435a6ef125cc7bf1b1c8e2f9ce3ab43091b43cf8d5c8410d1be1b461ff50fedd64b2943703d7c1b604e805ba6c0c1631b7c0499af2d2111401b6b1926fc1d11234447a8df8f162fa9aa1bae62f4a40159b49d1ba3065e108d409a81ffd8669f1b23da01808786116680ff9fbf1b63bdd9f9c412fcef47dd0712c1e75e06ffffff", + "cborBytes": [ + 159, 75, 122, 197, 195, 36, 180, 53, 166, 239, 18, 92, 199, 191, 27, 28, 142, 47, 156, 227, 171, 67, 9, 27, 67, + 207, 141, 92, 132, 16, 209, 190, 27, 70, 31, 245, 15, 237, 214, 75, 41, 67, 112, 61, 124, 27, 96, 78, 128, 91, + 166, 192, 193, 99, 27, 124, 4, 153, 175, 45, 33, 17, 64, 27, 107, 25, 38, 252, 29, 17, 35, 68, 71, 168, 223, 143, + 22, 47, 169, 170, 27, 174, 98, 244, 164, 1, 89, 180, 157, 27, 163, 6, 94, 16, 141, 64, 154, 129, 255, 216, 102, + 159, 27, 35, 218, 1, 128, 135, 134, 17, 102, 128, 255, 159, 191, 27, 99, 189, 217, 249, 196, 18, 252, 239, 71, + 221, 7, 18, 193, 231, 94, 6, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 445, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd0702" + }, + "cborHex": "43fd0702", + "cborBytes": [67, 253, 7, 2], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 446, + "sample": { + "_tag": "ByteArray", + "bytearray": "5b51" + }, + "cborHex": "425b51", + "cborBytes": [66, 91, 81], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 447, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4142471527482704263" + } + }, + { + "_tag": "ByteArray", + "bytearray": "66e4ce0f3ca1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16019512105067421887" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14958912732738496922" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17232740140617838258" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6237956046411068361" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9334739122688689632" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0448983c09b9aa" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7762458488288540533" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14937084841701040093" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "62" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "010102" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10271841977776423937" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "025cb641d7dfec" + }, + { + "_tag": "ByteArray", + "bytearray": "d4" + }, + { + "_tag": "ByteArray", + "bytearray": "0792732ea6bee5309d09" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7371453944593576913" + } + } + ] + } + ] + }, + "cborHex": "9f1b397d03e80fc6c1874666e4ce0f3ca1d8669f1bde50bd62719d20bf9f9f1bcf98bbdfecf2299a1bef26fddadc242eb2ffd8669f1b5691abf95ed4f3c99f1b818ba7c646cd05e0ffff470448983c09b9aaffff12d8669f1b6bb9cade2a2777759f1bcf4b2f8601765fdd9f41620943010102ffd8669f1b8e8ce9db324f44019f47025cb641d7dfec41d44a0792732ea6bee5309d09ffff1b664caa4e95a6f3d1ffffff", + "cborBytes": [ + 159, 27, 57, 125, 3, 232, 15, 198, 193, 135, 70, 102, 228, 206, 15, 60, 161, 216, 102, 159, 27, 222, 80, 189, 98, + 113, 157, 32, 191, 159, 159, 27, 207, 152, 187, 223, 236, 242, 41, 154, 27, 239, 38, 253, 218, 220, 36, 46, 178, + 255, 216, 102, 159, 27, 86, 145, 171, 249, 94, 212, 243, 201, 159, 27, 129, 139, 167, 198, 70, 205, 5, 224, 255, + 255, 71, 4, 72, 152, 60, 9, 185, 170, 255, 255, 18, 216, 102, 159, 27, 107, 185, 202, 222, 42, 39, 119, 117, 159, + 27, 207, 75, 47, 134, 1, 118, 95, 221, 159, 65, 98, 9, 67, 1, 1, 2, 255, 216, 102, 159, 27, 142, 140, 233, 219, + 50, 79, 68, 1, 159, 71, 2, 92, 182, 65, 215, 223, 236, 65, 212, 74, 7, 146, 115, 46, 166, 190, 229, 48, 157, 9, + 255, 255, 27, 102, 76, 170, 78, 149, 166, 243, 209, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 448, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4d3aea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6206902663143247503" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1652836274614552240" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59424173e3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3590137351666382709" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12177133346394202118" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11024721514719532749" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3679686728404643253" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3157880" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0ca18b1ed7d6b70cf017e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f9d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8515107758903703426" + } + } + ] + }, + "cborHex": "d8799f434d3aea1b5623591628144e8fbf1b16f00dd5ac47c6b04559424173e31b31d2bae664efb7751ba8fdde42e663e0061b98ffadce6076d6cd1b3310df956b472db544f31578804bf0ca18b1ed7d6b70cf017eff42f9d61b762bbd6449a0b782ff", + "cborBytes": [ + 216, 121, 159, 67, 77, 58, 234, 27, 86, 35, 89, 22, 40, 20, 78, 143, 191, 27, 22, 240, 13, 213, 172, 71, 198, 176, + 69, 89, 66, 65, 115, 227, 27, 49, 210, 186, 230, 100, 239, 183, 117, 27, 168, 253, 222, 66, 230, 99, 224, 6, 27, + 152, 255, 173, 206, 96, 118, 214, 205, 27, 51, 16, 223, 149, 107, 71, 45, 181, 68, 243, 21, 120, 128, 75, 240, + 202, 24, 177, 237, 125, 107, 112, 207, 1, 126, 255, 66, 249, 214, 27, 118, 43, 189, 100, 73, 160, 183, 130, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 449, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01830787" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17066563266225939117" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7439e0295cd2" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c505e4b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14854317814348975846" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82d7a8a6aa38286c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5313ac28fbb8adfd9328e" + } + } + ] + }, + "cborHex": "bf4401830787d8669f1becd89cde3c20a2ad9f467439e0295cd2ffff441c505e4b1bce252359c1070ee64882d7a8a6aa38286c4bf5313ac28fbb8adfd9328eff", + "cborBytes": [ + 191, 68, 1, 131, 7, 135, 216, 102, 159, 27, 236, 216, 156, 222, 60, 32, 162, 173, 159, 70, 116, 57, 224, 41, 92, + 210, 255, 255, 68, 28, 80, 94, 75, 27, 206, 37, 35, 89, 193, 7, 14, 230, 72, 130, 215, 168, 166, 170, 56, 40, 108, + 75, 245, 49, 58, 194, 143, 187, 138, 223, 217, 50, 142, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 450, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b9a6d1f75d4e300807901" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e071d8c24a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3615967721038632604" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "120d533626c72e" + }, + { + "_tag": "ByteArray", + "bytearray": "03c7" + } + ] + } + } + ] + }, + "cborHex": "bf4b1b9a6d1f75d4e300807901415b45e071d8c24ad8669f1b322e7f7bebc9569c9f47120d533626c72e4203c7ffffff", + "cborBytes": [ + 191, 75, 27, 154, 109, 31, 117, 212, 227, 0, 128, 121, 1, 65, 91, 69, 224, 113, 216, 194, 74, 216, 102, 159, 27, + 50, 46, 127, 123, 235, 201, 86, 156, 159, 71, 18, 13, 83, 54, 38, 199, 46, 66, 3, 199, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 451, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10032015591541491198" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3177010792882419649" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3d49618eecbc6623c103" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11263375400674843367" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9166011486200147291" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb39d25b7b1eb9e5611548b0" + } + ] + } + } + ] + }, + "cborHex": "bf1b8b38e1075302c5fed8669f1b2c17027bcd56b7c19f4a3d49618eecbc6623c1031b9c4f8c404118dae71b7f3436e2121c2d5b4ccb39d25b7b1eb9e5611548b0ffffff", + "cborBytes": [ + 191, 27, 139, 56, 225, 7, 83, 2, 197, 254, 216, 102, 159, 27, 44, 23, 2, 123, 205, 86, 183, 193, 159, 74, 61, 73, + 97, 142, 236, 188, 102, 35, 193, 3, 27, 156, 79, 140, 64, 65, 24, 218, 231, 27, 127, 52, 54, 226, 18, 28, 45, 91, + 76, 203, 57, 210, 91, 123, 30, 185, 229, 97, 21, 72, 176, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 452, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "963090531719876913" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd3d9995a406a6915bda" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3161843968692034082" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "116522060424748518" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4f6b56406aa0" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3341512757561045077" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "396395" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4843116558037941665" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2517721296648658713" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9894477589320512555" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17228f8b9e43d391cd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb85" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bb18cb3aa399a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3bb7a35275d14ae6e07c2" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16353925812174956874" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6225837124073876587" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98e6693c5b6aa842" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cbf01b16d46d73c4fdbe3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9888491f2ed7646104b874" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d78a4a2d7a03fc77e52c1fa7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4509638882190085460" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0d5d95bc65b491314add3d9995a406a6915bda1b2be120565d199a22d8669f1b019df832541d1de69f464f6b56406aa0ffff1b2e5f70261edcb055433963951b433634d97fa9fda1d8669f1b22f0be2e0a2ddf1980ff1b89503ef1bd83342bbf4917228f8b9e43d391cd42eb85478bb18cb3aa399a4bc3bb7a35275d14ae6e07c2ff1be2f4d0e11dc7a94abf4228ad1b56669de0e1dcec6b416d4898e6693c5b6aa8424b7cbf01b16d46d73c4fdbe34b9888491f2ed7646104b8744cd78a4a2d7a03fc77e52c1fa71b3e9574ab963acd54ffff", + "cborBytes": [ + 191, 27, 13, 93, 149, 188, 101, 180, 145, 49, 74, 221, 61, 153, 149, 164, 6, 166, 145, 91, 218, 27, 43, 225, 32, + 86, 93, 25, 154, 34, 216, 102, 159, 27, 1, 157, 248, 50, 84, 29, 29, 230, 159, 70, 79, 107, 86, 64, 106, 160, 255, + 255, 27, 46, 95, 112, 38, 30, 220, 176, 85, 67, 57, 99, 149, 27, 67, 54, 52, 217, 127, 169, 253, 161, 216, 102, + 159, 27, 34, 240, 190, 46, 10, 45, 223, 25, 128, 255, 27, 137, 80, 62, 241, 189, 131, 52, 43, 191, 73, 23, 34, + 143, 139, 158, 67, 211, 145, 205, 66, 235, 133, 71, 139, 177, 140, 179, 170, 57, 154, 75, 195, 187, 122, 53, 39, + 93, 20, 174, 110, 7, 194, 255, 27, 226, 244, 208, 225, 29, 199, 169, 74, 191, 66, 40, 173, 27, 86, 102, 157, 224, + 225, 220, 236, 107, 65, 109, 72, 152, 230, 105, 60, 91, 106, 168, 66, 75, 124, 191, 1, 177, 109, 70, 215, 60, 79, + 219, 227, 75, 152, 136, 73, 31, 46, 215, 100, 97, 4, 184, 116, 76, 215, 138, 74, 45, 122, 3, 252, 119, 229, 44, + 31, 167, 27, 62, 149, 116, 171, 150, 58, 205, 84, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 453, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "cborHex": "1bfffffffffffffff3", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 243], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 454, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17710767787003285553" + } + }, + "cborHex": "1bf5c9497773c31031", + "cborBytes": [27, 245, 201, 73, 119, 115, 195, 16, 49], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 455, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "607669765938bfb9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04fb6c030a1adf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06c5bf9bbc54fee405" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5bca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5053" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15c9ef3e6a8f3e202397" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a42b663bee91c65eb4c81314" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5399c4696efd3025617ef5e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17110582679181731046" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95b84b771c7d4dbe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4365355644450571817" + } + } + } + ] + }, + "cborHex": "bf48607669765938bfb9bf4704fb6c030a1adf104906c5bf9bbc54fee405425bca4250534a15c9ef3e6a8f3e2023974ca42b663bee91c65eb4c813144c5399c4696efd3025617ef5e841ad1bed75004a7c9424e6ff4895b84b771c7d4dbe1b3c94dbd479b90629ff", + "cborBytes": [ + 191, 72, 96, 118, 105, 118, 89, 56, 191, 185, 191, 71, 4, 251, 108, 3, 10, 26, 223, 16, 73, 6, 197, 191, 155, 188, + 84, 254, 228, 5, 66, 91, 202, 66, 80, 83, 74, 21, 201, 239, 62, 106, 143, 62, 32, 35, 151, 76, 164, 43, 102, 59, + 238, 145, 198, 94, 180, 200, 19, 20, 76, 83, 153, 196, 105, 110, 253, 48, 37, 97, 126, 245, 232, 65, 173, 27, 237, + 117, 0, 74, 124, 148, 36, 230, 255, 72, 149, 184, 75, 119, 28, 125, 77, 190, 27, 60, 148, 219, 212, 121, 185, 6, + 41, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 456, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15704867821682781140" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13587767434718691440" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16642051357537895156" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9915644533706345269" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b2c5f26fbcdd" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff19f1bd9f2e6136bdd6bd41bbc91727da5074070d8669f1be6f471894bda82f49f1b899b722b069c4b3546b2c5f26fbcddffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 27, 217, 242, 230, 19, 107, 221, 107, 212, + 27, 188, 145, 114, 125, 165, 7, 64, 112, 216, 102, 159, 27, 230, 244, 113, 137, 75, 218, 130, 244, 159, 27, 137, + 155, 114, 43, 6, 156, 75, 53, 70, 178, 197, 242, 111, 188, 221, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 457, + "sample": { + "_tag": "ByteArray", + "bytearray": "0000" + }, + "cborHex": "420000", + "cborBytes": [66, 0, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 458, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05021a02" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9528018332854919702" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6ef29d5658ef673da5a" + }, + { + "_tag": "ByteArray", + "bytearray": "f805fe5b02f00481" + }, + { + "_tag": "ByteArray", + "bytearray": "0370310405fa1eee045d" + }, + { + "_tag": "ByteArray", + "bytearray": "26d24774874f99" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + }, + "cborHex": "bf4405021a02d8669f1b843a52312f3a22169f144ad6ef29d5658ef673da5a48f805fe5b02f004814a0370310405fa1eee045d4726d24774874f99ffff41a403ff", + "cborBytes": [ + 191, 68, 5, 2, 26, 2, 216, 102, 159, 27, 132, 58, 82, 49, 47, 58, 34, 22, 159, 20, 74, 214, 239, 41, 213, 101, + 142, 246, 115, 218, 90, 72, 248, 5, 254, 91, 2, 240, 4, 129, 74, 3, 112, 49, 4, 5, 250, 30, 238, 4, 93, 71, 38, + 210, 71, 116, 135, 79, 153, 255, 255, 65, 164, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 459, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + ] + }, + "cborHex": "d905019f801bffffffffffffffeeff", + "cborBytes": [217, 5, 1, 159, 128, 27, 255, 255, 255, 255, 255, 255, 255, 238, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 460, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "167530f7c5c57e0b11" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2821936002466599912" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a13a" + }, + { + "_tag": "ByteArray", + "bytearray": "ccfa7cf3bd9a637eb6e2ba" + }, + { + "_tag": "ByteArray", + "bytearray": "5de9042d4f1aa3c2d7b48732" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29e8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "303c0078df6a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0dfc29782f772aaf152b35" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78be60f7fbfda31c019182" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83b0049f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a558ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d40a36c11071ad680c836c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe7107ea1c8abd9a2e732a" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e655dd2c6f412686dcd1546" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "877aa6b49506df62ea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18248557049013139217" + } + }, + { + "_tag": "ByteArray", + "bytearray": "edcf0e04885890a1" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8bdac3919086b0ce3e2d598" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8039f32f18292e5b0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "70ea" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c681145afe2389" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17956380244371587283" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb93eb" + } + ] + } + } + ] + }, + "cborHex": "bf49167530f7c5c57e0b11d8669f1b272987d7cde853e89f42a13a4bccfa7cf3bd9a637eb6e2ba4c5de9042d4f1aa3c2d7b48732ffff4229e8bf46303c0078df6a4b0dfc29782f772aaf152b354b78be60f7fbfda31c0191824483b0049f43a558ed41284bd40a36c11071ad680c836c4bfe7107ea1c8abd9a2e732aff4c6e655dd2c6f412686dcd15469f49877aa6b49506df62ea1bfd3fe5f379e0f71148edcf0e04885890a1ff4cb8bdac3919086b0ce3e2d59849e8039f32f18292e5b041bb9f4270eaff47c681145afe23899f1bf931e0b1fd9c40d343cb93ebffff", + "cborBytes": [ + 191, 73, 22, 117, 48, 247, 197, 197, 126, 11, 17, 216, 102, 159, 27, 39, 41, 135, 215, 205, 232, 83, 232, 159, 66, + 161, 58, 75, 204, 250, 124, 243, 189, 154, 99, 126, 182, 226, 186, 76, 93, 233, 4, 45, 79, 26, 163, 194, 215, 180, + 135, 50, 255, 255, 66, 41, 232, 191, 70, 48, 60, 0, 120, 223, 106, 75, 13, 252, 41, 120, 47, 119, 42, 175, 21, 43, + 53, 75, 120, 190, 96, 247, 251, 253, 163, 28, 1, 145, 130, 68, 131, 176, 4, 159, 67, 165, 88, 237, 65, 40, 75, + 212, 10, 54, 193, 16, 113, 173, 104, 12, 131, 108, 75, 254, 113, 7, 234, 28, 138, 189, 154, 46, 115, 42, 255, 76, + 110, 101, 93, 210, 198, 244, 18, 104, 109, 205, 21, 70, 159, 73, 135, 122, 166, 180, 149, 6, 223, 98, 234, 27, + 253, 63, 229, 243, 121, 224, 247, 17, 72, 237, 207, 14, 4, 136, 88, 144, 161, 255, 76, 184, 189, 172, 57, 25, 8, + 107, 12, 227, 226, 213, 152, 73, 232, 3, 159, 50, 241, 130, 146, 229, 176, 65, 187, 159, 66, 112, 234, 255, 71, + 198, 129, 20, 90, 254, 35, 137, 159, 27, 249, 49, 224, 177, 253, 156, 64, 211, 67, 203, 147, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 461, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7499344424160439136" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4bf556e42c082e5e0160a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7248422552840976470" + } + }, + { + "_tag": "ByteArray", + "bytearray": "44592b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "35dd74efb033a7ce6b6049c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "612406b7da54e90f97" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2548741815707657682" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6516f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9117178471484354122" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c9f2d95aa7c7e2afcf89b33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a11c0aae8261de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5f7d145bd13" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10836364321632005852" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3730359994912427725" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13593318284872737540" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "85803e1a" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc07" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14724848238915987984" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17611098103651665431" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11081253139944273213" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05fefa681402f85ff8070000" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8324775842345975810" + } + }, + { + "_tag": "ByteArray", + "bytearray": "40029e" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5345793096464277002" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cea5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12647700763862445980" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1056143140614953910" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14543756776715263361" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d9fa30de42a51cb8d0b33" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17271684341439230689" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "05" + } + ] + } + ] + }, + "cborHex": "9f9f9f1b681306054263ab604be4bf556e42c082e5e0160a1b649791e8740438564344592bffbf4c35dd74efb033a7ce6b6049c9411a49612406b7da54e90f971b235ef32d757065d2436516f41b7e86b983d2a9ee4a416741e14c6c9f2d95aa7c7e2afcf89b3347a11c0aae8261de46e5f7d145bd131b96627fefdf97aedcff1b33c4e6a6ad154ecdd8669f1bbca52af5a8a963049f4485803e1affffff42fc079fbf060f1bcc592b752c1faa101bf467306aecb68617ffd8669f1b99c88505108f753d9f014c05fefa681402f85ff80700001b73878b85a5c900024340029effffff9fbf1b4a30127f7d7d1e0a42cea51baf85a8d597752f9c1b0ea82c973851dbb61bc9d5cdbb77cb1d814b5d9fa30de42a51cb8d0b33ffd8669f1bfffffffffffffff89f1befb15966342972e1ffff804105ffff", + "cborBytes": [ + 159, 159, 159, 27, 104, 19, 6, 5, 66, 99, 171, 96, 75, 228, 191, 85, 110, 66, 192, 130, 229, 224, 22, 10, 27, 100, + 151, 145, 232, 116, 4, 56, 86, 67, 68, 89, 43, 255, 191, 76, 53, 221, 116, 239, 176, 51, 167, 206, 107, 96, 73, + 201, 65, 26, 73, 97, 36, 6, 183, 218, 84, 233, 15, 151, 27, 35, 94, 243, 45, 117, 112, 101, 210, 67, 101, 22, 244, + 27, 126, 134, 185, 131, 210, 169, 238, 74, 65, 103, 65, 225, 76, 108, 159, 45, 149, 170, 124, 126, 42, 252, 248, + 155, 51, 71, 161, 28, 10, 174, 130, 97, 222, 70, 229, 247, 209, 69, 189, 19, 27, 150, 98, 127, 239, 223, 151, 174, + 220, 255, 27, 51, 196, 230, 166, 173, 21, 78, 205, 216, 102, 159, 27, 188, 165, 42, 245, 168, 169, 99, 4, 159, 68, + 133, 128, 62, 26, 255, 255, 255, 66, 252, 7, 159, 191, 6, 15, 27, 204, 89, 43, 117, 44, 31, 170, 16, 27, 244, 103, + 48, 106, 236, 182, 134, 23, 255, 216, 102, 159, 27, 153, 200, 133, 5, 16, 143, 117, 61, 159, 1, 76, 5, 254, 250, + 104, 20, 2, 248, 95, 248, 7, 0, 0, 27, 115, 135, 139, 133, 165, 201, 0, 2, 67, 64, 2, 158, 255, 255, 255, 159, + 191, 27, 74, 48, 18, 127, 125, 125, 30, 10, 66, 206, 165, 27, 175, 133, 168, 213, 151, 117, 47, 156, 27, 14, 168, + 44, 151, 56, 81, 219, 182, 27, 201, 213, 205, 187, 119, 203, 29, 129, 75, 93, 159, 163, 13, 228, 42, 81, 203, 141, + 11, 51, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 27, 239, 177, 89, 102, 52, 41, 114, + 225, 255, 255, 128, 65, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 462, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff380ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 463, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4078851581080455822" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "290000ce" + }, + { + "_tag": "ByteArray", + "bytearray": "1212c4e27b0367" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11638739277185344087" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6160471359557132749" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0" + } + } + ] + }, + "cborHex": "bf09d8669f1b389afde6fdd74a8e9f44290000ce471212c4e27b03671ba1851bb53a04e25700ffff1b557e640fdb5ee1cd41f0ff", + "cborBytes": [ + 191, 9, 216, 102, 159, 27, 56, 154, 253, 230, 253, 215, 74, 142, 159, 68, 41, 0, 0, 206, 71, 18, 18, 196, 226, + 123, 3, 103, 27, 161, 133, 27, 181, 58, 4, 226, 87, 0, 255, 255, 27, 85, 126, 100, 15, 219, 94, 225, 205, 65, 240, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 464, + "sample": { + "_tag": "ByteArray", + "bytearray": "0729" + }, + "cborHex": "420729", + "cborBytes": [66, 7, 41], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 465, + "sample": { + "_tag": "ByteArray", + "bytearray": "d48a1f01fa7c1a" + }, + "cborHex": "47d48a1f01fa7c1a", + "cborBytes": [71, 212, 138, 31, 1, 250, 124, 26], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 466, + "sample": { + "_tag": "ByteArray", + "bytearray": "86fbc1" + }, + "cborHex": "4386fbc1", + "cborBytes": [67, 134, 251, 193], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 467, + "sample": { + "_tag": "ByteArray", + "bytearray": "2bf7bf" + }, + "cborHex": "432bf7bf", + "cborBytes": [67, 43, 247, 191], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 468, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c330807060301" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e8a060507070704" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5033126509195630708" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18274990653445408832" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8410327586161388900" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16482799726843469405" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18314568950451941096" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1653882861848834779" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc0400376b8801710904f5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27f943a034516565d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "827ffc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a2b5c582e917f3c4ab71548" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9fc07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fddc04b1ff632c1e" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa" + }, + { + "_tag": "ByteArray", + "bytearray": "d0afd75f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06fc8a" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10423fa330c9c2e0614704" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "416333970102218294" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "15" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17441887492006300428" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc71e52479e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2bdd239f9c02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee063a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17061932405998638575" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c4df6b1c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b67203" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5034709226689815355" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c8a02cc" + } + ] + }, + "cborHex": "9f9fbf475c330807060301482e8a060507070704ffbf071b45d941e4ba35187408000d1bfd9dcf2c9c3288401b74b77c6139d16d641be4beab059e691e5d1bfe2a6b6cfa162ee841711bffffffffffffffeb1b16f3c5b3409b32dbff4bfc0400376b8801710904f5bf4927f943a034516565d243827ffc4c6a2b5c582e917f3c4ab7154843f9fc0742fdae48fddc04b1ff632c1eff9f41fa44d0afd75f064306fc8affff9fbf4b10423fa330c9c2e06147041b05c71d8a3bdeee3641151bf20e08434d5d4b0c46bc71e52479e1462bdd239f9c0243ee063a1becc82920114655efffffbf452c4df6b1c243b67203ff1b45dee15ddc3a633b445c8a02ccff", + "cborBytes": [ + 159, 159, 191, 71, 92, 51, 8, 7, 6, 3, 1, 72, 46, 138, 6, 5, 7, 7, 7, 4, 255, 191, 7, 27, 69, 217, 65, 228, 186, + 53, 24, 116, 8, 0, 13, 27, 253, 157, 207, 44, 156, 50, 136, 64, 27, 116, 183, 124, 97, 57, 209, 109, 100, 27, 228, + 190, 171, 5, 158, 105, 30, 93, 27, 254, 42, 107, 108, 250, 22, 46, 232, 65, 113, 27, 255, 255, 255, 255, 255, 255, + 255, 235, 27, 22, 243, 197, 179, 64, 155, 50, 219, 255, 75, 252, 4, 0, 55, 107, 136, 1, 113, 9, 4, 245, 191, 73, + 39, 249, 67, 160, 52, 81, 101, 101, 210, 67, 130, 127, 252, 76, 106, 43, 92, 88, 46, 145, 127, 60, 74, 183, 21, + 72, 67, 249, 252, 7, 66, 253, 174, 72, 253, 220, 4, 177, 255, 99, 44, 30, 255, 159, 65, 250, 68, 208, 175, 215, + 95, 6, 67, 6, 252, 138, 255, 255, 159, 191, 75, 16, 66, 63, 163, 48, 201, 194, 224, 97, 71, 4, 27, 5, 199, 29, + 138, 59, 222, 238, 54, 65, 21, 27, 242, 14, 8, 67, 77, 93, 75, 12, 70, 188, 113, 229, 36, 121, 225, 70, 43, 221, + 35, 159, 156, 2, 67, 238, 6, 58, 27, 236, 200, 41, 32, 17, 70, 85, 239, 255, 255, 191, 69, 44, 77, 246, 177, 194, + 67, 182, 114, 3, 255, 27, 69, 222, 225, 93, 220, 58, 99, 59, 68, 92, 138, 2, 204, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 469, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb963bc09b3d1173c316" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05b06d64" + } + } + ] + }, + "cborHex": "bf4afb963bc09b3d1173c3164405b06d64ff", + "cborBytes": [191, 74, 251, 150, 59, 192, 155, 61, 17, 115, 195, 22, 68, 5, 176, 109, 100, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 470, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "cborHex": "1bfffffffffffffff9", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 249], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 471, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "006f7c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3840925876657002960" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c6c4307f82903" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3099981730291299449" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e3907856af" + }, + { + "_tag": "ByteArray", + "bytearray": "491d03" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85658f" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8c2feff" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10040477799351834912" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17440765681406402569" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0abcac92f1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14335784103552164156" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "360003" + } + ] + } + } + ] + }, + "cborHex": "bf43006f7c1b354db5bc16bf19d0470c6c4307f829039f1b2b0558f59436b47945e3907856af43491d03ff4385658fa044f8c2feffd8669f1b8b56f15c9d8fd9209f1bf20a0bfb6b0d6009450abcac92f11bc6f2efb01ceb213cffff41fe9f43360003ffff", + "cborBytes": [ + 191, 67, 0, 111, 124, 27, 53, 77, 181, 188, 22, 191, 25, 208, 71, 12, 108, 67, 7, 248, 41, 3, 159, 27, 43, 5, 88, + 245, 148, 54, 180, 121, 69, 227, 144, 120, 86, 175, 67, 73, 29, 3, 255, 67, 133, 101, 143, 160, 68, 248, 194, 254, + 255, 216, 102, 159, 27, 139, 86, 241, 92, 157, 143, 217, 32, 159, 27, 242, 10, 11, 251, 107, 13, 96, 9, 69, 10, + 188, 172, 146, 241, 27, 198, 242, 239, 176, 28, 235, 33, 60, 255, 255, 65, 254, 159, 67, 54, 0, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 472, + "sample": { + "_tag": "ByteArray", + "bytearray": "6f02ed" + }, + "cborHex": "436f02ed", + "cborBytes": [67, 111, 2, 237], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 473, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "297207619435352963" + } + }, + "cborHex": "1b041fe4c154fbd383", + "cborBytes": [27, 4, 31, 228, 193, 84, 251, 211, 131], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 474, + "sample": { + "_tag": "ByteArray", + "bytearray": "8b4c5ee537571392" + }, + "cborHex": "488b4c5ee537571392", + "cborBytes": [72, 139, 76, 94, 229, 55, 87, 19, 146], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 475, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6247059755459646336" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8765309569724232263" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6978358832914195759" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9f1b56b203bfcecf93801b79a4a29cf1beb2471b60d81c62b70f652fffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 27, 86, 178, 3, 191, 206, 207, 147, 128, 27, 121, + 164, 162, 156, 241, 190, 178, 71, 27, 96, 216, 28, 98, 183, 15, 101, 47, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 476, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15219517167946570800" + } + }, + "cborHex": "1bd336963a506a1c30", + "cborBytes": [27, 211, 54, 150, 58, 80, 106, 28, 48], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 477, + "sample": { + "_tag": "ByteArray", + "bytearray": "0111fc06" + }, + "cborHex": "440111fc06", + "cborBytes": [68, 1, 17, 252, 6], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 478, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "561764188988464023" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3385363687436002882" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8476307599880346349" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11427637994728551051" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3e5b033a265d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12677506253503372836" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44a8ee717c7fc1d6b0" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3057878933960699504" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16366250169901412706" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "523c01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18245921263575542888" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "866977f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10642625339261931234" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd2617e8758fd6adac11" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb036360c73f3ef0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f24371a85622b74fbca7da8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "695d303370c892f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3dd7a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93fb11f669cdebb1" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c25c3046" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1923929393326193381" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f10d87b9fbf1b07cbc98db4315b971b2efb3a56592126421b75a1e4da49cfdaed419e1b9e972035c18d728b47c3e5b033a265d31bafef8cc4eddc9e244944a8ee717c7fc1d6b0ffffa09f9f1b2a6fc4b068e0ae701be32099d142267162ffbf43523c011bfd3688b7db2aac6844866977f61b93b2335be8474ee24abd2617e8758fd6adac1148bb036360c73f3ef04cf24371a85622b74fbca7da8f48695d303370c892f943f3dd7a4893fb11f669cdebb1ff9f44c25c30461b1ab32b96fe23fae5ffffff", + "cborBytes": [ + 159, 16, 216, 123, 159, 191, 27, 7, 203, 201, 141, 180, 49, 91, 151, 27, 46, 251, 58, 86, 89, 33, 38, 66, 27, 117, + 161, 228, 218, 73, 207, 218, 237, 65, 158, 27, 158, 151, 32, 53, 193, 141, 114, 139, 71, 195, 229, 176, 51, 162, + 101, 211, 27, 175, 239, 140, 196, 237, 220, 158, 36, 73, 68, 168, 238, 113, 124, 127, 193, 214, 176, 255, 255, + 160, 159, 159, 27, 42, 111, 196, 176, 104, 224, 174, 112, 27, 227, 32, 153, 209, 66, 38, 113, 98, 255, 191, 67, + 82, 60, 1, 27, 253, 54, 136, 183, 219, 42, 172, 104, 68, 134, 105, 119, 246, 27, 147, 178, 51, 91, 232, 71, 78, + 226, 74, 189, 38, 23, 232, 117, 143, 214, 173, 172, 17, 72, 187, 3, 99, 96, 199, 63, 62, 240, 76, 242, 67, 113, + 168, 86, 34, 183, 79, 188, 167, 218, 143, 72, 105, 93, 48, 51, 112, 200, 146, 249, 67, 243, 221, 122, 72, 147, + 251, 17, 246, 105, 205, 235, 177, 255, 159, 68, 194, 92, 48, 70, 27, 26, 179, 43, 150, 254, 35, 250, 229, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 479, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa3bf8831a8cbd937c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3146859998658720531" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2917e61660c40" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16477239494290290164" + } + } + } + ] + } + ] + }, + "cborHex": "d87d9fbf49aa3bf8831a8cbd937c1b2babe47ef9f0731347d2917e61660c401be4aaea051835b5f4ffff", + "cborBytes": [ + 216, 125, 159, 191, 73, 170, 59, 248, 131, 26, 140, 189, 147, 124, 27, 43, 171, 228, 126, 249, 240, 115, 19, 71, + 210, 145, 126, 97, 102, 12, 64, 27, 228, 170, 234, 5, 24, 53, 181, 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 480, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9126150754437925494" + }, + "fields": [] + }, + "cborHex": "d8669f1b7ea699c23cef8a7680ff", + "cborBytes": [216, 102, 159, 27, 126, 166, 153, 194, 60, 239, 138, 118, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 481, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b9db824007" + }, + { + "_tag": "ByteArray", + "bytearray": "34e7059c831dde0c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c99cc4a28da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7794556432851631271" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f45b9db8240074834e7059c831dde0cbf466c99cc4a28da1b6c2bd3c741db7ca7ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 69, 185, 219, 130, 64, 7, 72, 52, 231, 5, 156, + 131, 29, 222, 12, 191, 70, 108, 153, 204, 74, 40, 218, 27, 108, 43, 211, 199, 65, 219, 124, 167, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 482, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fd3e25a3387a2685e5" + }, + { + "_tag": "ByteArray", + "bytearray": "dc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8017837808527329266" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "35bf044c572c2ff52480" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b261698" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14070404314103306504" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10755513917164979981" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17466697626159015632" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6e561830a135d35f42441e32" + }, + { + "_tag": "ByteArray", + "bytearray": "fef465a14c44544eef6115" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6145496290993416088" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aca120203b96" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8280873240243353705" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46ea82876fd20dc0c5" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "381eaa133f76" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18120644821598432751" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8f465c7658" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3334524716662372094" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "334b3a1c37a5b48ba8303437" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53301901ce77" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "491c88b8d5b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "360321284191124380" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49726488" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5dc543" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6940415296756747572" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d1c3b2f7ec52ddaa53" + }, + { + "_tag": "ByteArray", + "bytearray": "e40af3222f3e914ba5" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5379076664505890221" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13813690291116439901" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905029f9f49fd3e25a3387a2685e541dcd8669f1b6f451501abf7c7f29f4a35bf044c572c2ff52480ffffff9fbf448b2616981bc3441e2cec40590841d71b954342ec2963870d41fe1bf2662cf2ce5de6d0ff4c6e561830a135d35f42441e324bfef465a14c44544eef6115bf1b554930510124a79846aca120203b961b72eb92568abe38694946ea82876fd20dc0c5ffff46381eaa133f761bfb7976753c656def9f458f465c76581b2e469c900f6bb6febf4c334b3a1c37a5b48ba83034374653301901ce7746491c88b8d5b01b05001e4c85397b9c4449726488435dc543ffd8669f1b60514ef0c4df8d349f49d1c3b2f7ec52ddaa5349e40af3222f3e914ba5ffffbf1b4aa651ba0f7775ad1bbfb41621b741f95dffffff", + "cborBytes": [ + 217, 5, 2, 159, 159, 73, 253, 62, 37, 163, 56, 122, 38, 133, 229, 65, 220, 216, 102, 159, 27, 111, 69, 21, 1, 171, + 247, 199, 242, 159, 74, 53, 191, 4, 76, 87, 44, 47, 245, 36, 128, 255, 255, 255, 159, 191, 68, 139, 38, 22, 152, + 27, 195, 68, 30, 44, 236, 64, 89, 8, 65, 215, 27, 149, 67, 66, 236, 41, 99, 135, 13, 65, 254, 27, 242, 102, 44, + 242, 206, 93, 230, 208, 255, 76, 110, 86, 24, 48, 161, 53, 211, 95, 66, 68, 30, 50, 75, 254, 244, 101, 161, 76, + 68, 84, 78, 239, 97, 21, 191, 27, 85, 73, 48, 81, 1, 36, 167, 152, 70, 172, 161, 32, 32, 59, 150, 27, 114, 235, + 146, 86, 138, 190, 56, 105, 73, 70, 234, 130, 135, 111, 210, 13, 192, 197, 255, 255, 70, 56, 30, 170, 19, 63, 118, + 27, 251, 121, 118, 117, 60, 101, 109, 239, 159, 69, 143, 70, 92, 118, 88, 27, 46, 70, 156, 144, 15, 107, 182, 254, + 191, 76, 51, 75, 58, 28, 55, 165, 180, 139, 168, 48, 52, 55, 70, 83, 48, 25, 1, 206, 119, 70, 73, 28, 136, 184, + 213, 176, 27, 5, 0, 30, 76, 133, 57, 123, 156, 68, 73, 114, 100, 136, 67, 93, 197, 67, 255, 216, 102, 159, 27, 96, + 81, 78, 240, 196, 223, 141, 52, 159, 73, 209, 195, 178, 247, 236, 82, 221, 170, 83, 73, 228, 10, 243, 34, 47, 62, + 145, 75, 165, 255, 255, 191, 27, 74, 166, 81, 186, 15, 119, 117, 173, 27, 191, 180, 22, 33, 183, 65, 249, 93, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 483, + "sample": { + "_tag": "ByteArray", + "bytearray": "f3d6f91cacfe" + }, + "cborHex": "46f3d6f91cacfe", + "cborBytes": [70, 243, 214, 249, 28, 172, 254], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 484, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11660671967258016427" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7766788079911108612" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b60d30" + }, + { + "_tag": "ByteArray", + "bytearray": "e02e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "832942788767707856" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8615051645123405883" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3df7312f9f0f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13750286085006445751" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6751ec379112a4" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fb49eabd964aab6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8ff7728e7dead284b8bac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "168c134d87a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17026024295168428053" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4dec93cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c83b9c574ed73bc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca4b51a91c71f33486" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "364ac6316b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2772dfc312000" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21bc2abe15" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16583023528259214482" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6264070668584312290" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12862436676918954318" + } + }, + { + "_tag": "ByteArray", + "bytearray": "29cf92887dfde0" + }, + { + "_tag": "ByteArray", + "bytearray": "84c491d0e165" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13729964533448146354" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13193548023304378759" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e18baa4707eb17" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10751026408653905905" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "42" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f1319eab04fe0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c8a28306f14" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4941eebbd54f3235799" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd753a00fafffd0107" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cc25" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "00cbf9" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1ba1d3075f92c4faab9f9f9f1b6bc92c9bc4d7000443b60d3042e02eff9f1b0b8f350da2b8f2d01b778ecfd3a539a83b463df7312f9f0f1bbed2d45798ce4cb7476751ec379112a4ffffbf480fb49eabd964aab64bb8ff7728e7dead284b8bac46168c134d87a51bec4896e382af4815444dec93cc488c83b9c574ed73bc49ca4b51a91c71f3348645364ac6316b47f2772dfc3120004521bc2abe15ff1be622bc09cfd5dc92d8669f1b56ee7315a8e95de29f9f410e124100ffd87f9f1bb2808e0271b5c94e4729cf92887dfde04684c491d0e1650c1bbe8aa1ffaae37db2ffbf1bb718e606581d5987411d47e18baa4707eb171b9533518eaaa8dff1ffffff9fbf414208474f1319eab04fe012468c8a28306f140941ec4ae4941eebbd54f323579949fd753a00fafffd010710ff42cc259f4300cbf9ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 161, 211, 7, 95, 146, 196, 250, 171, 159, 159, 159, 27, 107, 201, 44, 155, 196, 215, 0, 4, 67, + 182, 13, 48, 66, 224, 46, 255, 159, 27, 11, 143, 53, 13, 162, 184, 242, 208, 27, 119, 142, 207, 211, 165, 57, 168, + 59, 70, 61, 247, 49, 47, 159, 15, 27, 190, 210, 212, 87, 152, 206, 76, 183, 71, 103, 81, 236, 55, 145, 18, 164, + 255, 255, 191, 72, 15, 180, 158, 171, 217, 100, 170, 182, 75, 184, 255, 119, 40, 231, 222, 173, 40, 75, 139, 172, + 70, 22, 140, 19, 77, 135, 165, 27, 236, 72, 150, 227, 130, 175, 72, 21, 68, 77, 236, 147, 204, 72, 140, 131, 185, + 197, 116, 237, 115, 188, 73, 202, 75, 81, 169, 28, 113, 243, 52, 134, 69, 54, 74, 198, 49, 107, 71, 242, 119, 45, + 252, 49, 32, 0, 69, 33, 188, 42, 190, 21, 255, 27, 230, 34, 188, 9, 207, 213, 220, 146, 216, 102, 159, 27, 86, + 238, 115, 21, 168, 233, 93, 226, 159, 159, 65, 14, 18, 65, 0, 255, 216, 127, 159, 27, 178, 128, 142, 2, 113, 181, + 201, 78, 71, 41, 207, 146, 136, 125, 253, 224, 70, 132, 196, 145, 208, 225, 101, 12, 27, 190, 138, 161, 255, 170, + 227, 125, 178, 255, 191, 27, 183, 24, 230, 6, 88, 29, 89, 135, 65, 29, 71, 225, 139, 170, 71, 7, 235, 23, 27, 149, + 51, 81, 142, 170, 168, 223, 241, 255, 255, 255, 159, 191, 65, 66, 8, 71, 79, 19, 25, 234, 176, 79, 224, 18, 70, + 140, 138, 40, 48, 111, 20, 9, 65, 236, 74, 228, 148, 30, 235, 189, 84, 243, 35, 87, 153, 73, 253, 117, 58, 0, 250, + 255, 253, 1, 7, 16, 255, 66, 204, 37, 159, 67, 0, 203, 249, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 485, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "cborHex": "1bffffffffffffffeb", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 235], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 486, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12022224580507726288" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1493979f07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abc8d19177004483525eea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "190ce5" + } + } + ] + }, + "cborHex": "bf1ba6d7858f3b21f1d0451493979f074babc8d19177004483525eea43190ce5ff", + "cborBytes": [ + 191, 27, 166, 215, 133, 143, 59, 33, 241, 208, 69, 20, 147, 151, 159, 7, 75, 171, 200, 209, 145, 119, 0, 68, 131, + 82, 94, 234, 67, 25, 12, 229, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 487, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0779ed2204050262e805c9fe" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8eb7e6b0" + }, + { + "_tag": "ByteArray", + "bytearray": "602bbc1523ac6f38bcce4a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41b712e8" + } + } + ] + }, + "cborHex": "bf4c0779ed2204050262e805c9fe9f448eb7e6b04b602bbc1523ac6f38bcce4aff41be4441b712e8ff", + "cborBytes": [ + 191, 76, 7, 121, 237, 34, 4, 5, 2, 98, 232, 5, 201, 254, 159, 68, 142, 183, 230, 176, 75, 96, 43, 188, 21, 35, + 172, 111, 56, 188, 206, 74, 255, 65, 190, 68, 65, 183, 18, 232, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 488, + "sample": { + "_tag": "ByteArray", + "bytearray": "9e119c7c2b3266cb" + }, + "cborHex": "489e119c7c2b3266cb", + "cborBytes": [72, 158, 17, 156, 124, 43, 50, 102, 203], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 489, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14965499301249752982" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12666286976825635015" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13551083995060127572" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13864439639317932479" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c3a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "505e67ae6d9fe14c3a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b577a2bf8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1bf85535c88e73" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bfaf5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6637196389257881791" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "03c1d6011d151c7ae7dc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1052c8a8d6113a902b33759" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "832e20348eab092653a2" + } + } + ] + } + ] + }, + "cborHex": "9f1bcfb02252e9591f969f1bafc7b0e584d930c71bbc0f1f18c70a47541bc06862651f63e9bf80bf420c3a49505e67ae6d9fe14c3a453b577a2bf8471bf85535c88e73436bfaf51b5c1c0ef35e38a8bf41fd415fffff4a03c1d6011d151c7ae7dcbf4cd1052c8a8d6113a902b337594a832e20348eab092653a2ffff", + "cborBytes": [ + 159, 27, 207, 176, 34, 82, 233, 89, 31, 150, 159, 27, 175, 199, 176, 229, 132, 217, 48, 199, 27, 188, 15, 31, 24, + 199, 10, 71, 84, 27, 192, 104, 98, 101, 31, 99, 233, 191, 128, 191, 66, 12, 58, 73, 80, 94, 103, 174, 109, 159, + 225, 76, 58, 69, 59, 87, 122, 43, 248, 71, 27, 248, 85, 53, 200, 142, 115, 67, 107, 250, 245, 27, 92, 28, 14, 243, + 94, 56, 168, 191, 65, 253, 65, 95, 255, 255, 74, 3, 193, 214, 1, 29, 21, 28, 122, 231, 220, 191, 76, 209, 5, 44, + 138, 141, 97, 19, 169, 2, 179, 55, 89, 74, 131, 46, 32, 52, 142, 171, 9, 38, 83, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 490, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12382130699215064697" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd7cef4a0a377f0927e9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14780287686200647444" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "338853434271080001" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19807c4dd1d946d988cb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6218760810875270082" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13143414795364037498" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14247349867006624462" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6965096972953040315" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14730732849874396623" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c18cfcd9b82" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15885250703668317461" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8355611243048758946" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "776e1fccbb6ff4a0ca271d8a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3332045051492637809" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c12c5dc16b83" + }, + { + "_tag": "ByteArray", + "bytearray": "bca8201985a6c78d54055b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "823688190141135748" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16268917612189247560" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11300391144272018253" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2603121713354625760" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ddab9fd1cff3f6" + }, + { + "_tag": "ByteArray", + "bytearray": "e81cfb0b2fcf75b8cce4bf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2175275857952382921" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10444521668269943016" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12561384567487465149" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "666371762928261360" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17238338987388163277" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f80bf1babd62a44812c4e794acd7cef4a0a377f0927e9ffd8669f1bcd1e21575e11df149fbf1b04b3d96734a61e414a19807c4dd1d946d988cb1b564d7a02535733c21bb666ca1e9d49737a1bc5b8c137e5a382ce1b60a8fecb5303b5bb1bcc6e137aedf0e5cf468c18cfcd9b821bdc73bf59f02c8d154123ffd8669f1b73f51827d72e6ea29f4c776e1fccbb6ff4a0ca271d8a1b2e3dcd5205d11c7146c12c5dc16b834bbca8201985a6c78d54055b1b0b6e540b7b0bfb84ffffffffd8669f1be1c6ce5f32a2e8489fd8669f1b9cd30ddfa94dbb4d9f1b24202568079bd2e047ddab9fd1cff3f64be81cfb0b2fcf75b8cce4bf1b1e3021de21bc1fc9ffff9f419c1b90f2651eae19a8e81bae5300b6082a06bd1b093f6d9679b098f01bef3ae1f9f509d4cdffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 128, 191, 27, 171, 214, 42, 68, 129, 44, 78, 121, + 74, 205, 124, 239, 74, 10, 55, 127, 9, 39, 233, 255, 216, 102, 159, 27, 205, 30, 33, 87, 94, 17, 223, 20, 159, + 191, 27, 4, 179, 217, 103, 52, 166, 30, 65, 74, 25, 128, 124, 77, 209, 217, 70, 217, 136, 203, 27, 86, 77, 122, 2, + 83, 87, 51, 194, 27, 182, 102, 202, 30, 157, 73, 115, 122, 27, 197, 184, 193, 55, 229, 163, 130, 206, 27, 96, 168, + 254, 203, 83, 3, 181, 187, 27, 204, 110, 19, 122, 237, 240, 229, 207, 70, 140, 24, 207, 205, 155, 130, 27, 220, + 115, 191, 89, 240, 44, 141, 21, 65, 35, 255, 216, 102, 159, 27, 115, 245, 24, 39, 215, 46, 110, 162, 159, 76, 119, + 110, 31, 204, 187, 111, 244, 160, 202, 39, 29, 138, 27, 46, 61, 205, 82, 5, 209, 28, 113, 70, 193, 44, 93, 193, + 107, 131, 75, 188, 168, 32, 25, 133, 166, 199, 141, 84, 5, 91, 27, 11, 110, 84, 11, 123, 11, 251, 132, 255, 255, + 255, 255, 216, 102, 159, 27, 225, 198, 206, 95, 50, 162, 232, 72, 159, 216, 102, 159, 27, 156, 211, 13, 223, 169, + 77, 187, 77, 159, 27, 36, 32, 37, 104, 7, 155, 210, 224, 71, 221, 171, 159, 209, 207, 243, 246, 75, 232, 28, 251, + 11, 47, 207, 117, 184, 204, 228, 191, 27, 30, 48, 33, 222, 33, 188, 31, 201, 255, 255, 159, 65, 156, 27, 144, 242, + 101, 30, 174, 25, 168, 232, 27, 174, 83, 0, 182, 8, 42, 6, 189, 27, 9, 63, 109, 150, 121, 176, 152, 240, 27, 239, + 58, 225, 249, 245, 9, 212, 205, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 491, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16e201" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3945447461619611123" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d82831eea4d00404c6539e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05508433616a24e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e931" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11403983475751130200" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f72777f50c24" + }, + { + "_tag": "ByteArray", + "bytearray": "540201" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fea005000907" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9d85fa72c3" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "89" + } + ] + }, + "cborHex": "9fbf4316e2011b36c10b8ffdcdb5f34bd82831eea4d00404c6539e4805508433616a24e242e9311b9e43168ce0921458ff46f72777f50c24435402019f9f46fea005000907ff459d85fa72c3ff4189ff", + "cborBytes": [ + 159, 191, 67, 22, 226, 1, 27, 54, 193, 11, 143, 253, 205, 181, 243, 75, 216, 40, 49, 238, 164, 208, 4, 4, 198, 83, + 158, 72, 5, 80, 132, 51, 97, 106, 36, 226, 66, 233, 49, 27, 158, 67, 22, 140, 224, 146, 20, 88, 255, 70, 247, 39, + 119, 245, 12, 36, 67, 84, 2, 1, 159, 159, 70, 254, 160, 5, 0, 9, 7, 255, 69, 157, 133, 250, 114, 195, 255, 65, + 137, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 492, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "736299443709492956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7113610711245179818" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8888951500964915639" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6374598613512923108" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10080880542577135151" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1321575441551448715" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10613708529705325046" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b85f6089af8dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b9e702ae7d0f990ed3f90" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17666466021842216680" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94dc303dfe7c94534d02d78d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15814856483107894079" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aaa125fcba08f0cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21f8a31966" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b218805b4f2d29abc285dc6e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14013211438518772534" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b85ee3af6a2d95d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ee67dc39008ffc7424d16" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13341599354567036563" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10837661522692664929" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a095561fac5eb1c0ace0c56" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17739532171520094753" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "821193dbedd0e1" + } + } + ] + }, + "cborHex": "bf1b0a37dc71669f3edc1b62b89f409a2ecbaa1b7b5be64b60b069b71b58771faa3822a7e41b8be67b7153750e2fd8669f1b12572ddcb18dda8b80ff1b934b77ac869e91f6bf473b85f6089af8dd41494b8b9e702ae7d0f990ed3f901bf52be53ef469e6e84c94dc303dfe7c94534d02d78d1bdb79a82e416df33f48aaa125fcba08f0cc4521f8a319664cb218805b4f2d29abc285dc6e1bc278ed8ee35a233648b85ee3af6a2d95d34b0ee67dc39008ffc7424d16ff1bb926e1ed188c8e939f1b96671bbc0803ee614c0a095561fac5eb1c0ace0c56ff1bf62f7a859d11b22147821193dbedd0e1ff", + "cborBytes": [ + 191, 27, 10, 55, 220, 113, 102, 159, 62, 220, 27, 98, 184, 159, 64, 154, 46, 203, 170, 27, 123, 91, 230, 75, 96, + 176, 105, 183, 27, 88, 119, 31, 170, 56, 34, 167, 228, 27, 139, 230, 123, 113, 83, 117, 14, 47, 216, 102, 159, 27, + 18, 87, 45, 220, 177, 141, 218, 139, 128, 255, 27, 147, 75, 119, 172, 134, 158, 145, 246, 191, 71, 59, 133, 246, + 8, 154, 248, 221, 65, 73, 75, 139, 158, 112, 42, 231, 208, 249, 144, 237, 63, 144, 27, 245, 43, 229, 62, 244, 105, + 230, 232, 76, 148, 220, 48, 61, 254, 124, 148, 83, 77, 2, 215, 141, 27, 219, 121, 168, 46, 65, 109, 243, 63, 72, + 170, 161, 37, 252, 186, 8, 240, 204, 69, 33, 248, 163, 25, 102, 76, 178, 24, 128, 91, 79, 45, 41, 171, 194, 133, + 220, 110, 27, 194, 120, 237, 142, 227, 90, 35, 54, 72, 184, 94, 227, 175, 106, 45, 149, 211, 75, 14, 230, 125, + 195, 144, 8, 255, 199, 66, 77, 22, 255, 27, 185, 38, 225, 237, 24, 140, 142, 147, 159, 27, 150, 103, 27, 188, 8, + 3, 238, 97, 76, 10, 9, 85, 97, 250, 197, 235, 28, 10, 206, 12, 86, 255, 27, 246, 47, 122, 133, 157, 17, 178, 33, + 71, 130, 17, 147, 219, 237, 208, 225, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 493, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [] + }, + "cborHex": "d9050280", + "cborBytes": [217, 5, 2, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 494, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5630697892293566389" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "353f589ec27972955ae8157e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8430158656881089995" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1717521316153352287" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af4df184eedf8cd8c92e85" + }, + { + "_tag": "ByteArray", + "bytearray": "3cf5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15617072267543281620" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11485035561484069677" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11821567756770100403" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1549468577426721468" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14462782480525780663" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7372405709523144619" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4879785675210566549" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14023239341581120446" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12522280143748685287" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e06ed708a0a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15312387065501895948" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9118d8754028fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7224711104086326971" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4e2441e67bb2dfb54c353f589ec27972955ae8157e1b74fdf0a22f94ddcb9f1b17d5dc89877b605f4baf4df184eedf8cd8c92e85423cf51bd8bafc7c0a857fd41b9f630afe2afcab2dff1ba40ea53dce7e44b31b1580d17634264abc1bc8b62009f77b66b7bf1b66500beea0304fab1b43b87b37a6f72b951bc29c8de20339b3be1badc81371e2115de7468e06ed708a0a1bd48086e85686cd0c479118d8754028fd1b6443547893e2bebbffff", + "cborBytes": [ + 191, 27, 78, 36, 65, 230, 123, 178, 223, 181, 76, 53, 63, 88, 158, 194, 121, 114, 149, 90, 232, 21, 126, 27, 116, + 253, 240, 162, 47, 148, 221, 203, 159, 27, 23, 213, 220, 137, 135, 123, 96, 95, 75, 175, 77, 241, 132, 238, 223, + 140, 216, 201, 46, 133, 66, 60, 245, 27, 216, 186, 252, 124, 10, 133, 127, 212, 27, 159, 99, 10, 254, 42, 252, + 171, 45, 255, 27, 164, 14, 165, 61, 206, 126, 68, 179, 27, 21, 128, 209, 118, 52, 38, 74, 188, 27, 200, 182, 32, + 9, 247, 123, 102, 183, 191, 27, 102, 80, 11, 238, 160, 48, 79, 171, 27, 67, 184, 123, 55, 166, 247, 43, 149, 27, + 194, 156, 141, 226, 3, 57, 179, 190, 27, 173, 200, 19, 113, 226, 17, 93, 231, 70, 142, 6, 237, 112, 138, 10, 27, + 212, 128, 134, 232, 86, 134, 205, 12, 71, 145, 24, 216, 117, 64, 40, 253, 27, 100, 67, 84, 120, 147, 226, 190, + 187, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 495, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10312280117442862211" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1552391742878953968" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0a09bae70eb2e2f95d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6d6ec6729163fcbfb39706" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16933251943280204788" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16175772980025603082" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b8f1c942148815c8380ffd8669f1bfffffffffffffff29f1b158b3410b28cb1f09f490a09bae70eb2e2f95dff4b6d6ec6729163fcbfb397069f1beafefeed1b68dbf41be07be3d289c9b40affffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 143, 28, 148, 33, 72, 129, 92, 131, 128, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 242, 159, 27, 21, 139, 52, 16, 178, 140, 177, 240, 159, 73, 10, 9, 186, 231, 14, 178, 226, 249, 93, 255, + 75, 109, 110, 198, 114, 145, 99, 252, 191, 179, 151, 6, 159, 27, 234, 254, 254, 237, 27, 104, 219, 244, 27, 224, + 123, 227, 210, 137, 201, 180, 10, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 496, + "sample": { + "_tag": "ByteArray", + "bytearray": "7d6a7b" + }, + "cborHex": "437d6a7b", + "cborBytes": [67, 125, 106, 123], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 497, + "sample": { + "_tag": "ByteArray", + "bytearray": "33cfa8ae872042" + }, + "cborHex": "4733cfa8ae872042", + "cborBytes": [71, 51, 207, 168, 174, 135, 32, 66], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 498, + "sample": { + "_tag": "ByteArray", + "bytearray": "21475a" + }, + "cborHex": "4321475a", + "cborBytes": [67, 33, 71, 90], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 499, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12296136955784984424" + } + }, + "cborHex": "1baaa4a769df1df768", + "cborBytes": [27, 170, 164, 167, 105, 223, 29, 247, 104], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 500, + "sample": { + "_tag": "ByteArray", + "bytearray": "021b" + }, + "cborHex": "42021b", + "cborBytes": [66, 2, 27], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 501, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6010112137081266232" + } + }, + "cborHex": "1b536835254efe2038", + "cborBytes": [27, 83, 104, 53, 37, 78, 254, 32, 56], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 502, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "31d9532b0a672ee14e22b495" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15801675280999066403" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4c31d9532b0a672ee14e22b4951bdb4ad3f27c052b23ffff", + "cborBytes": [ + 159, 191, 76, 49, 217, 83, 43, 10, 103, 46, 225, 78, 34, 180, 149, 27, 219, 74, 211, 242, 124, 5, 43, 35, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 503, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3159709197207206657" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e" + } + } + ] + }, + "cborHex": "bf1b2bd98ac62511fb01412eff", + "cborBytes": [191, 27, 43, 217, 138, 198, 37, 17, 251, 1, 65, 46, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 504, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "561a129e9e378313" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1284899983706597189" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5355139964918687848" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16126691987460152074" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7352423390" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17394969208119924830" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84112051780d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "750e93921b41a399b7af42f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de57" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3e7429cc175f33cde3f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6e0" + } + } + ] + }, + "cborHex": "bf48561a129e9e378313d8669f1b11d4e1ba3cbca7459f1b4a51476ce379e8681bdfcd84eb72b35b0affff4573524233901bf167585510d8985e4684112051780d4c750e93921b41a399b7af42f942de57804af3e7429cc175f33cde3f42f6e0ff", + "cborBytes": [ + 191, 72, 86, 26, 18, 158, 158, 55, 131, 19, 216, 102, 159, 27, 17, 212, 225, 186, 60, 188, 167, 69, 159, 27, 74, + 81, 71, 108, 227, 121, 232, 104, 27, 223, 205, 132, 235, 114, 179, 91, 10, 255, 255, 69, 115, 82, 66, 51, 144, 27, + 241, 103, 88, 85, 16, 216, 152, 94, 70, 132, 17, 32, 81, 120, 13, 76, 117, 14, 147, 146, 27, 65, 163, 153, 183, + 175, 66, 249, 66, 222, 87, 128, 74, 243, 231, 66, 156, 193, 117, 243, 60, 222, 63, 66, 246, 224, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 505, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a2c6c34a" + } + ] + }, + "cborHex": "9f44a2c6c34aff", + "cborBytes": [159, 68, 162, 198, 195, 74, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 506, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3298617857905741907" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fe" + } + ] + }, + "cborHex": "d8669f1b2dc70b77063b50539f41feffff", + "cborBytes": [216, 102, 159, 27, 45, 199, 11, 119, 6, 59, 80, 83, 159, 65, 254, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 507, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40513b1bcb07885070" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2741962993453036488" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ece" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4300239876541132443" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4786711185221544699" + } + } + } + ] + }, + "cborHex": "bf064940513b1bcb078850701b260d68d0a408f3c8428ece1b3bad856252342e9b1b426dd0763d84eafbff", + "cborBytes": [ + 191, 6, 73, 64, 81, 59, 27, 203, 7, 136, 80, 112, 27, 38, 13, 104, 208, 164, 8, 243, 200, 66, 142, 206, 27, 59, + 173, 133, 98, 82, 52, 46, 155, 27, 66, 109, 208, 118, 61, 132, 234, 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 508, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5606757848371814517" + } + }, + "cborHex": "1b4dcf348ea5d5e075", + "cborBytes": [27, 77, 207, 52, 142, 165, 213, 224, 117], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 509, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17113358578526449442" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1a3ee1162b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6963690951515874144" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "75b07301cb7f94ca27f31a" + }, + { + "_tag": "ByteArray", + "bytearray": "d81d163d141e31817cb6cfd1" + }, + { + "_tag": "ByteArray", + "bytearray": "be9d8b3a316c15e6ea2752" + }, + { + "_tag": "ByteArray", + "bytearray": "4c7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3152386390473781941" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bed7edcf4eaf3ef229f451a3ee1162bffff1b60a4000672b4a3609f9f4b75b07301cb7f94ca27f31a4cd81d163d141e31817cb6cfd14bbe9d8b3a316c15e6ea2752424c7c1b2bbf86b856f732b5ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 237, 126, 220, 244, 234, 243, 239, 34, 159, 69, 26, 62, 225, 22, 43, 255, 255, 27, 96, + 164, 0, 6, 114, 180, 163, 96, 159, 159, 75, 117, 176, 115, 1, 203, 127, 148, 202, 39, 243, 26, 76, 216, 29, 22, + 61, 20, 30, 49, 129, 124, 182, 207, 209, 75, 190, 157, 139, 58, 49, 108, 21, 230, 234, 39, 82, 66, 76, 124, 27, + 43, 191, 134, 184, 86, 247, 50, 181, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 510, + "sample": { + "_tag": "ByteArray", + "bytearray": "d0f59440f2" + }, + "cborHex": "45d0f59440f2", + "cborBytes": [69, 208, 245, 148, 64, 242], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 511, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4838445858307745176" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8324990291423223522" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4e27624a2c0556489641fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13576540505262885021" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "37d7fd433d53f3327632413c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17275996878385356779" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12289577868379192919" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2617bc" + }, + { + "_tag": "ByteArray", + "bytearray": "958d0d7ff2ffd2c5c0" + }, + { + "_tag": "ByteArray", + "bytearray": "ebe5a4e0abf48fbf" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11156643489992543998" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e7cd72c15" + }, + { + "_tag": "ByteArray", + "bytearray": "5df3b4717e16522d60e8d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3824112683029687231" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8845512083574466573" + } + }, + { + "_tag": "ByteArray", + "bytearray": "14e14c23b4670e90" + }, + { + "_tag": "ByteArray", + "bytearray": "df8eebcfb574fcf3" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3096826832573140920" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b43259cdf7964a5989f9f1b73884e8ff6db5ee2ff809f9f4b4e27624a2c0556489641fa1bbc698fa86ee5889dff4c37d7fd433d53f3327632413cffd8669f1befc0aba0f4ea9feb9f1baa8d59f5543e7e579f432617bc49958d0d7ff2ffd2c5c048ebe5a4e0abf48fbfff9f1b9ad45c24caae0efe456e7cd72c154b5df3b4717e16522d60e8d11b3511fa39650cebbfff9f1b7ac1925fdde1a80d4814e14c23b4670e9048df8eebcfb574fcf3ff1b2afa2398b66b8fb8ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 67, 37, 156, 223, 121, 100, 165, 152, 159, 159, 27, 115, 136, 78, 143, 246, 219, 94, 226, 255, + 128, 159, 159, 75, 78, 39, 98, 74, 44, 5, 86, 72, 150, 65, 250, 27, 188, 105, 143, 168, 110, 229, 136, 157, 255, + 76, 55, 215, 253, 67, 61, 83, 243, 50, 118, 50, 65, 60, 255, 216, 102, 159, 27, 239, 192, 171, 160, 244, 234, 159, + 235, 159, 27, 170, 141, 89, 245, 84, 62, 126, 87, 159, 67, 38, 23, 188, 73, 149, 141, 13, 127, 242, 255, 210, 197, + 192, 72, 235, 229, 164, 224, 171, 244, 143, 191, 255, 159, 27, 154, 212, 92, 36, 202, 174, 14, 254, 69, 110, 124, + 215, 44, 21, 75, 93, 243, 180, 113, 126, 22, 82, 45, 96, 232, 209, 27, 53, 17, 250, 57, 101, 12, 235, 191, 255, + 159, 27, 122, 193, 146, 95, 221, 225, 168, 13, 72, 20, 225, 76, 35, 180, 103, 14, 144, 72, 223, 142, 235, 207, + 181, 116, 252, 243, 255, 27, 42, 250, 35, 152, 182, 107, 143, 184, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 512, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14853910671889519093" + } + } + ] + }, + "cborHex": "9f1bce23b10e835bd1f5ff", + "cborBytes": [159, 27, 206, 35, 177, 14, 131, 91, 209, 245, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 513, + "sample": { + "_tag": "ByteArray", + "bytearray": "ab9ad3d55e81" + }, + "cborHex": "46ab9ad3d55e81", + "cborBytes": [70, 171, 154, 211, 213, 94, 129], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 514, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e8156a03e" + } + ] + }, + "cborHex": "9f458e8156a03eff", + "cborBytes": [159, 69, 142, 129, 86, 160, 62, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 515, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11682714052512354029" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9fd8669f1ba221568878768eed80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 216, 102, 159, 27, 162, 33, 86, 136, 120, 118, + 142, 237, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 516, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf9b95c6c4093fdd8792e945" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10179795764620886652" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2e9b0934e86de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13486121405311999853" + } + } + } + ] + } + ] + }, + "cborHex": "d87f9fbf4cbf9b95c6c4093fdd8792e9451b8d45e6502441027c47f2e9b0934e86de1bbb2853f73169df6dffff", + "cborBytes": [ + 216, 127, 159, 191, 76, 191, 155, 149, 198, 196, 9, 63, 221, 135, 146, 233, 69, 27, 141, 69, 230, 80, 36, 65, 2, + 124, 71, 242, 233, 176, 147, 78, 134, 222, 27, 187, 40, 83, 247, 49, 105, 223, 109, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 517, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14968853409720641637" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9120408849887823664" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b48351" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18277616819448317804" + } + }, + { + "_tag": "ByteArray", + "bytearray": "853c5f32fdaf52" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6401526696530785996" + } + }, + { + "_tag": "ByteArray", + "bytearray": "46e961923b9b60df57d2" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2919464918073484013" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d27ab203" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e3d41eea9004b7691005d5" + }, + { + "_tag": "ByteArray", + "bytearray": "df4e73" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "06" + } + ] + } + ] + }, + "cborHex": "d87b9fd8669f1bcfbc0cde254b28659fd8669f1b7e923386e7e487309f43b483511bfda723a887ec076c47853c5f32fdaf52ffff1b58d6ca9d1ee5b6cc4a46e961923b9b60df57d2ffffd8669f1b288405dffffc22ed9f44d27ab203ffff9fd905099f4be3d41eea9004b7691005d543df4e73ff4106ffff", + "cborBytes": [ + 216, 123, 159, 216, 102, 159, 27, 207, 188, 12, 222, 37, 75, 40, 101, 159, 216, 102, 159, 27, 126, 146, 51, 134, + 231, 228, 135, 48, 159, 67, 180, 131, 81, 27, 253, 167, 35, 168, 135, 236, 7, 108, 71, 133, 60, 95, 50, 253, 175, + 82, 255, 255, 27, 88, 214, 202, 157, 30, 229, 182, 204, 74, 70, 233, 97, 146, 59, 155, 96, 223, 87, 210, 255, 255, + 216, 102, 159, 27, 40, 132, 5, 223, 255, 252, 34, 237, 159, 68, 210, 122, 178, 3, 255, 255, 159, 217, 5, 9, 159, + 75, 227, 212, 30, 234, 144, 4, 183, 105, 16, 5, 213, 67, 223, 78, 115, 255, 65, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 518, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "969081791589289140" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3475364549819580142" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10335874316858541309" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b0d72dec149fa8cb49f1b303af9a510fb3eeed87d9fd8669f1b8f7066edeb6fc4fd9f1bfffffffffffffffd06ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 13, 114, 222, 193, 73, 250, 140, 180, 159, 27, 48, 58, 249, 165, 16, 251, 62, 238, 216, 125, + 159, 216, 102, 159, 27, 143, 112, 102, 237, 235, 111, 196, 253, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, + 6, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 519, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4694350350932179780" + } + }, + "cborHex": "1b4125aec5be8afb44", + "cborBytes": [27, 65, 37, 174, 197, 190, 138, 251, 68], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 520, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3214235080350726249" + } + }, + "cborHex": "1b2c9b41c69ce77869", + "cborBytes": [27, 44, 155, 65, 198, 156, 231, 120, 105], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 521, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13212557077634778927" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02f7" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "681258065863534415" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5443552216140461705" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f429fd90ced558b757fb5691" + }, + { + "_tag": "ByteArray", + "bytearray": "e032072b6de51fd4ba8c4d78" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14561159552265584292" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6330044526320616429" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "35c1501e617f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1772241288632313122" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6348029728904393403" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8046e21705a2f0130affc7a2" + }, + { + "_tag": "ByteArray", + "bytearray": "879cb90a5e92f0e84a6cf1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10495763660501099297" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10495658030996997847" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "42745a57dff7cb64d5fedba2" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "380061612095723868" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7558463124829018432" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7372636520439794884" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16009228559378007257" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f6cdbb6da45" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7948262940720115338" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0428386bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c4b69d4075acd2a88d9" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14593915113840862100" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7079948264537678680" + } + }, + { + "_tag": "ByteArray", + "bytearray": "251c972270" + } + ] + } + ] + }, + "cborHex": "d9050d9fd8669f1bb75c6ea8b2fe872f9f9f4202f7ffd8669f1b09745099f82a674f9f1b4b8b61e63f57b6894cf429fd90ced558b757fb56914ce032072b6de51fd4ba8c4d78ffff1bca13a176e6937ea4d8669f1b57d8d5f56bbf03ed9f4635c1501e617f1b1898440ff135a5221b5818bb67b6f732bb4c8046e21705a2f0130affc7a24b879cb90a5e92f0e84a6cf1ffff1b91a87170b69f2321ffffd8669f1b91a8115eed8d46d79f4c42745a57dff7cb64d5fedba280ffff1b05464005c5ba595cd8669f1b68e50e2a635299409fd8669f1b6650ddda7ae2ccc480ffffffd8669f1bde2c348de1c3c4d99f80bf462f6cdbb6da451b6e4de7086b062e8a45b0428386bc4a5c4b69d4075acd2a88d9ff1bca88007962b063941b6241076f77e9635845251c972270ffffff", + "cborBytes": [ + 217, 5, 13, 159, 216, 102, 159, 27, 183, 92, 110, 168, 178, 254, 135, 47, 159, 159, 66, 2, 247, 255, 216, 102, + 159, 27, 9, 116, 80, 153, 248, 42, 103, 79, 159, 27, 75, 139, 97, 230, 63, 87, 182, 137, 76, 244, 41, 253, 144, + 206, 213, 88, 183, 87, 251, 86, 145, 76, 224, 50, 7, 43, 109, 229, 31, 212, 186, 140, 77, 120, 255, 255, 27, 202, + 19, 161, 118, 230, 147, 126, 164, 216, 102, 159, 27, 87, 216, 213, 245, 107, 191, 3, 237, 159, 70, 53, 193, 80, + 30, 97, 127, 27, 24, 152, 68, 15, 241, 53, 165, 34, 27, 88, 24, 187, 103, 182, 247, 50, 187, 76, 128, 70, 226, 23, + 5, 162, 240, 19, 10, 255, 199, 162, 75, 135, 156, 185, 10, 94, 146, 240, 232, 74, 108, 241, 255, 255, 27, 145, + 168, 113, 112, 182, 159, 35, 33, 255, 255, 216, 102, 159, 27, 145, 168, 17, 94, 237, 141, 70, 215, 159, 76, 66, + 116, 90, 87, 223, 247, 203, 100, 213, 254, 219, 162, 128, 255, 255, 27, 5, 70, 64, 5, 197, 186, 89, 92, 216, 102, + 159, 27, 104, 229, 14, 42, 99, 82, 153, 64, 159, 216, 102, 159, 27, 102, 80, 221, 218, 122, 226, 204, 196, 128, + 255, 255, 255, 216, 102, 159, 27, 222, 44, 52, 141, 225, 195, 196, 217, 159, 128, 191, 70, 47, 108, 219, 182, 218, + 69, 27, 110, 77, 231, 8, 107, 6, 46, 138, 69, 176, 66, 131, 134, 188, 74, 92, 75, 105, 212, 7, 90, 205, 42, 136, + 217, 255, 27, 202, 136, 0, 121, 98, 176, 99, 148, 27, 98, 65, 7, 111, 119, 233, 99, 88, 69, 37, 28, 151, 34, 112, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 522, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6638596470324939759" + } + }, + "cborHex": "1b5c21085124e14bef", + "cborBytes": [27, 92, 33, 8, 81, 36, 225, 75, 239], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 523, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2927164996700045485" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2f9591df5f6aa12f" + }, + { + "_tag": "ByteArray", + "bytearray": "a474303ff8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16031203199296618797" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3126433027937153767" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b289f610e434380ad9f482f9591df5f6aa12f45a474303ff81bde7a465f702e412d1b2b6352463c3e32e7ffff", + "cborBytes": [ + 191, 27, 40, 159, 97, 14, 67, 67, 128, 173, 159, 72, 47, 149, 145, 223, 95, 106, 161, 47, 69, 164, 116, 48, 63, + 248, 27, 222, 122, 70, 95, 112, 46, 65, 45, 27, 43, 99, 82, 70, 60, 62, 50, 231, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 524, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10959018385923009750" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ac9bc2afc79c5e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16156821863897474870" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10838844283366576330" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10501742527948646851" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cc44faf1398472833f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8650932595475501471" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8848652305969568493" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "73af9ed0ce34ba" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1055858661426322147" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b1f7389cc364e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17969437943187167240" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9755351252668899517" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47ee287742" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5694571553955659798" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13708688100257694257" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15140745784235939107" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16129713117237639424" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a0b8977b653ab5cd7d1b6" + }, + { + "_tag": "ByteArray", + "bytearray": "73c0456bd53907" + }, + { + "_tag": "ByteArray", + "bytearray": "ea4ea5056c33" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11222769445708827387" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b981641289bea6cd69f47ac9bc2afc79c5ed8669f1be0388fe1f8dfa7369f1b966b4f72f5d690cad8669f1b91bdaf3044fde9c39f49cc44faf1398472833fffff1b780e495c692a519f1b7accba63de41daedffff804773af9ed0ce34ba9fbf1b0ea729dbbf55dae3476b1f7389cc364e1bf960449a6918d8081b8761f8473a7de0bd4547ee2877421b4f072ea83d924016ffd8669f1bbe3f0b32087c02319f1bd21ebc1257e05523ffff9f1bdfd8409f09e879004b9a0b8977b653ab5cd7d1b64773c0456bd5390746ea4ea5056c33ff1b9bbf49599f950afbffffff", + "cborBytes": [ + 216, 102, 159, 27, 152, 22, 65, 40, 155, 234, 108, 214, 159, 71, 172, 155, 194, 175, 199, 156, 94, 216, 102, 159, + 27, 224, 56, 143, 225, 248, 223, 167, 54, 159, 27, 150, 107, 79, 114, 245, 214, 144, 202, 216, 102, 159, 27, 145, + 189, 175, 48, 68, 253, 233, 195, 159, 73, 204, 68, 250, 241, 57, 132, 114, 131, 63, 255, 255, 27, 120, 14, 73, 92, + 105, 42, 81, 159, 27, 122, 204, 186, 99, 222, 65, 218, 237, 255, 255, 128, 71, 115, 175, 158, 208, 206, 52, 186, + 159, 191, 27, 14, 167, 41, 219, 191, 85, 218, 227, 71, 107, 31, 115, 137, 204, 54, 78, 27, 249, 96, 68, 154, 105, + 24, 216, 8, 27, 135, 97, 248, 71, 58, 125, 224, 189, 69, 71, 238, 40, 119, 66, 27, 79, 7, 46, 168, 61, 146, 64, + 22, 255, 216, 102, 159, 27, 190, 63, 11, 50, 8, 124, 2, 49, 159, 27, 210, 30, 188, 18, 87, 224, 85, 35, 255, 255, + 159, 27, 223, 216, 64, 159, 9, 232, 121, 0, 75, 154, 11, 137, 119, 182, 83, 171, 92, 215, 209, 182, 71, 115, 192, + 69, 107, 213, 57, 7, 70, 234, 78, 165, 5, 108, 51, 255, 27, 155, 191, 73, 89, 159, 149, 10, 251, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 525, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5515592604815556553" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3201652483676141331" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10733635054238130345" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17796379944356035447" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "865dc3c1c1c8c22318ad" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "705a55b815f376eeb1cf2a0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13108539663175401831" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "894ee3346d60d2a7ae2a6381" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12568843795153411569" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b4c8b52404fcd7fc9d8669f1b2c6e8df887c3771380ff1b94f588366c8b60a91bf6f97145273a3b774a865dc3c1c1c8c22318adbf4c705a55b815f376eeb1cf2a0f1bb5eae35f23b04167ff4c894ee3346d60d2a7ae2a6381d8669f1bae6d80d6cf7dddf180ffff", + "cborBytes": [ + 191, 27, 76, 139, 82, 64, 79, 205, 127, 201, 216, 102, 159, 27, 44, 110, 141, 248, 135, 195, 119, 19, 128, 255, + 27, 148, 245, 136, 54, 108, 139, 96, 169, 27, 246, 249, 113, 69, 39, 58, 59, 119, 74, 134, 93, 195, 193, 193, 200, + 194, 35, 24, 173, 191, 76, 112, 90, 85, 184, 21, 243, 118, 238, 177, 207, 42, 15, 27, 181, 234, 227, 95, 35, 176, + 65, 103, 255, 76, 137, 78, 227, 52, 109, 96, 210, 167, 174, 42, 99, 129, 216, 102, 159, 27, 174, 109, 128, 214, + 207, 125, 221, 241, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 526, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6888603205574484264" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eafa74c3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8040085604957035046" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5531342733303320654" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d4d1d4bb6830b59" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9156522754499057761" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17397322753367609307" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17193495003013033733" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13340026205038997011" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d17b1b93489817" + }, + { + "_tag": "ByteArray", + "bytearray": "b1b125" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c0f053ae22e42c40f9" + }, + { + "_tag": "ByteArray", + "bytearray": "adde2adb737019e1bb396e" + }, + { + "_tag": "ByteArray", + "bytearray": "c6827c620430b36a551b9226" + }, + { + "_tag": "ByteArray", + "bytearray": "8930" + }, + { + "_tag": "ByteArray", + "bytearray": "07516cdd606cf085" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1b5f993c1e3ae2612844eafa74c3d8669f1b6f941f426f321a269f1b4cc346e8dd7b904e489d4d1d4bb6830b59ffffd8669f1b7f1280ee8fb298619f1bf16fb4de854c0fdb1bee9b909c360baf051bb9214b27adc06e1347d17b1b9348981743b1b125ffff9f49c0f053ae22e42c40f94badde2adb737019e1bb396e4cc6827c620430b36a551b92264289304807516cdd606cf085ffffff", + "cborBytes": [ + 159, 159, 27, 95, 153, 60, 30, 58, 226, 97, 40, 68, 234, 250, 116, 195, 216, 102, 159, 27, 111, 148, 31, 66, 111, + 50, 26, 38, 159, 27, 76, 195, 70, 232, 221, 123, 144, 78, 72, 157, 77, 29, 75, 182, 131, 11, 89, 255, 255, 216, + 102, 159, 27, 127, 18, 128, 238, 143, 178, 152, 97, 159, 27, 241, 111, 180, 222, 133, 76, 15, 219, 27, 238, 155, + 144, 156, 54, 11, 175, 5, 27, 185, 33, 75, 39, 173, 192, 110, 19, 71, 209, 123, 27, 147, 72, 152, 23, 67, 177, + 177, 37, 255, 255, 159, 73, 192, 240, 83, 174, 34, 228, 44, 64, 249, 75, 173, 222, 42, 219, 115, 112, 25, 225, + 187, 57, 110, 76, 198, 130, 124, 98, 4, 48, 179, 106, 85, 27, 146, 38, 66, 137, 48, 72, 7, 81, 108, 221, 96, 108, + 240, 133, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 527, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "06da80db" + }, + { + "_tag": "ByteArray", + "bytearray": "7e1806435194e7a68a3aa6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11952462096662626476" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1342723229126585286" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25b6b411ae300fec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7701625a8e3cf33d3c0f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f26218c9bac115d70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8acb" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4cefeab2dc" + }, + { + "_tag": "ByteArray", + "bytearray": "ddfe5ce456196f03" + }, + { + "_tag": "ByteArray", + "bytearray": "ecb2a2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1537184391123919957" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2ff84340" + } + ] + } + ] + } + ] + }, + "cborHex": "9f4406da80db4b7e1806435194e7a68a3aa6bf1ba5dfacf336e580ac1b12a24fa9afc16bc64825b6b411ae300fec4a7701625a8e3cf33d3c0f499f26218c9bac115d70428acbff9f9f454cefeab2dc48ddfe5ce456196f0343ecb2a21b15552d0f33376455442ff84340ffffff", + "cborBytes": [ + 159, 68, 6, 218, 128, 219, 75, 126, 24, 6, 67, 81, 148, 231, 166, 138, 58, 166, 191, 27, 165, 223, 172, 243, 54, + 229, 128, 172, 27, 18, 162, 79, 169, 175, 193, 107, 198, 72, 37, 182, 180, 17, 174, 48, 15, 236, 74, 119, 1, 98, + 90, 142, 60, 243, 61, 60, 15, 73, 159, 38, 33, 140, 155, 172, 17, 93, 112, 66, 138, 203, 255, 159, 159, 69, 76, + 239, 234, 178, 220, 72, 221, 254, 92, 228, 86, 25, 111, 3, 67, 236, 178, 162, 27, 21, 85, 45, 15, 51, 55, 100, 85, + 68, 47, 248, 67, 64, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 528, + "sample": { + "_tag": "ByteArray", + "bytearray": "de8b" + }, + "cborHex": "42de8b", + "cborBytes": [66, 222, 139], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 529, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff813ff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 248, 19, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 530, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "76b860f9213a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14804906337815394936" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a8fc952f7fbef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6656492908919300458" + } + } + } + ] + } + ] + }, + "cborHex": "d905079f804676b860f9213a03bf1bcd7597dfde6a7a78478a8fc952f7fbef41021b5c609d08760aa16affff", + "cborBytes": [ + 217, 5, 7, 159, 128, 70, 118, 184, 96, 249, 33, 58, 3, 191, 27, 205, 117, 151, 223, 222, 106, 122, 120, 71, 138, + 143, 201, 82, 247, 251, 239, 65, 2, 27, 92, 96, 157, 8, 118, 10, 161, 106, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 531, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82fc1354ff4073c6fdb371" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5337600346225851124" + } + } + } + ] + }, + "cborHex": "bf41040f4b82fc1354ff4073c6fdb3711b4a12f73c2dcb3af4ff", + "cborBytes": [ + 191, 65, 4, 15, 75, 130, 252, 19, 84, 255, 64, 115, 198, 253, 179, 113, 27, 74, 18, 247, 60, 45, 203, 58, 244, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 532, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1971336463316357401" + } + }, + "cborHex": "1b1b5b98119cbf1119", + "cborBytes": [27, 27, 91, 152, 17, 156, 191, 17, 25], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 533, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10503402620644001136" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5098289025143599815" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6069434963819240246" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2468965339300256225" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7337151374482039997" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6642932496317255227" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b59a7b9d29dbd5a9262" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17483081531719524936" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2324353e86001ac9" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b91c39508b86485709f1b46c0c2db41f4f2c71b543af6f13dc81b361b224386e51bbe59e1ffff1b65d2cc4d1b4564bdbf1b5c306fe8dde38e3b4a7b59a7b9d29dbd5a92621bf2a062061555a24841faffffbf1bfffffffffffffffa482324353e86001ac9ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 145, 195, 149, 8, 184, 100, 133, 112, 159, 27, 70, 192, 194, 219, 65, 244, 242, 199, + 27, 84, 58, 246, 241, 61, 200, 27, 54, 27, 34, 67, 134, 229, 27, 190, 89, 225, 255, 255, 27, 101, 210, 204, 77, + 27, 69, 100, 189, 191, 27, 92, 48, 111, 232, 221, 227, 142, 59, 74, 123, 89, 167, 185, 210, 157, 189, 90, 146, 98, + 27, 242, 160, 98, 6, 21, 85, 162, 72, 65, 250, 255, 255, 191, 27, 255, 255, 255, 255, 255, 255, 255, 250, 72, 35, + 36, 53, 62, 134, 0, 26, 201, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 534, + "sample": { + "_tag": "ByteArray", + "bytearray": "8e88f84dcbfff1773c" + }, + "cborHex": "498e88f84dcbfff1773c", + "cborBytes": [73, 142, 136, 248, 77, 203, 255, 241, 119, 60], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 535, + "sample": { + "_tag": "ByteArray", + "bytearray": "9afcfcaa" + }, + "cborHex": "449afcfcaa", + "cborBytes": [68, 154, 252, 252, 170], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 536, + "sample": { + "_tag": "ByteArray", + "bytearray": "4003fa3e150771" + }, + "cborHex": "474003fa3e150771", + "cborBytes": [71, 64, 3, 250, 62, 21, 7, 113], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 537, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9624318135568870900" + } + }, + "cborHex": "1b8590725a3beeadf4", + "cborBytes": [27, 133, 144, 114, 90, 59, 238, 173, 244], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 538, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9fd9050a9f1bfffffffffffffffbffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 217, 5, 10, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 251, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 539, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c9054d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "079271d3b0877c435acec85a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "291447808485862074" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "09c33922304b00b9cb33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "982d13f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b14a90e1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15809528919986562889" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "545c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a928f32839c83ff6c023" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1014312440216870177" + } + } + } + ] + } + ] + }, + "cborHex": "9f43c9054dbf4c079271d3b0877c435acec85a1b040b6e3cd75daaba4a09c33922304b00b9cb3344982d13f6450b14a90e1e1bdb66baca4e10674942545c4aa928f32839c83ff6c02342cb811b0e138fca5262dd21ffff", + "cborBytes": [ + 159, 67, 201, 5, 77, 191, 76, 7, 146, 113, 211, 176, 135, 124, 67, 90, 206, 200, 90, 27, 4, 11, 110, 60, 215, 93, + 170, 186, 74, 9, 195, 57, 34, 48, 75, 0, 185, 203, 51, 68, 152, 45, 19, 246, 69, 11, 20, 169, 14, 30, 27, 219, + 102, 186, 202, 78, 16, 103, 73, 66, 84, 92, 74, 169, 40, 243, 40, 57, 200, 63, 246, 192, 35, 66, 203, 129, 27, 14, + 19, 143, 202, 82, 98, 221, 33, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 540, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18c7d0965a58c60167bc5e05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "984800554244363051" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64db" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13267405122617929632" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a476310228dfb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1172529350350471356" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "815d06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af3ef886b53df2ca5ebc" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4562298498383512676" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11734302096163653390" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f80bf4c18c7d0965a58c60167bc5e051b0daab6e2ea57d32b4264db1bb81f4aaa50d6efa0477a476310228dfb1b1045a93b585c00bc43815d064aaf3ef886b53df2ca5ebcff1b3f508a4feb7284649f1ba2d89d95e0f4c70effffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 128, 191, 76, 24, 199, 208, 150, 90, 88, 198, 1, + 103, 188, 94, 5, 27, 13, 170, 182, 226, 234, 87, 211, 43, 66, 100, 219, 27, 184, 31, 74, 170, 80, 214, 239, 160, + 71, 122, 71, 99, 16, 34, 141, 251, 27, 16, 69, 169, 59, 88, 92, 0, 188, 67, 129, 93, 6, 74, 175, 62, 248, 134, + 181, 61, 242, 202, 94, 188, 255, 27, 63, 80, 138, 79, 235, 114, 132, 100, 159, 27, 162, 216, 157, 149, 224, 244, + 199, 14, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 541, + "sample": { + "_tag": "ByteArray", + "bytearray": "26defb" + }, + "cborHex": "4326defb", + "cborBytes": [67, 38, 222, 251], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 542, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9ff9f8d0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2436661372367175071" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd040917996772" + } + } + ] + } + ] + }, + "cborHex": "9f449ff9f8d0bf1b21d0c29bb1dc7d9f47dd040917996772ffff", + "cborBytes": [ + 159, 68, 159, 249, 248, 208, 191, 27, 33, 208, 194, 155, 177, 220, 125, 159, 71, 221, 4, 9, 23, 153, 103, 114, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 543, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3035287109903253132" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e29f669946996cd0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11911850731088112082" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2a1f818b791afe8cbf48e29f669946996cd01ba54f6520d3fbe9d2ffff", + "cborBytes": [ + 191, 27, 42, 31, 129, 139, 121, 26, 254, 140, 191, 72, 226, 159, 102, 153, 70, 153, 108, 208, 27, 165, 79, 101, + 32, 211, 251, 233, 210, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 544, + "sample": { + "_tag": "ByteArray", + "bytearray": "2f" + }, + "cborHex": "412f", + "cborBytes": [65, 47], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 545, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "004aab00" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15180831711879340512" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e033005" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4efd2d3e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf01f9035c1da201193c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b9a7c66de70ce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f38698919c95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7ae9c24a72d792f96b1" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a604a3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10675543631564719070" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "33" + } + ] + } + } + ] + }, + "cborHex": "bf44004aab00bf41061bd2ad2602ad8da1e0444e033005444efd2d3e41a5084abf01f9035c1da201193c477b9a7c66de70ce46f38698919c954ac7ae9c24a72d792f96b1ff43a604a3d8669f1b9427265f179943de9f4133ffffff", + "cborBytes": [ + 191, 68, 0, 74, 171, 0, 191, 65, 6, 27, 210, 173, 38, 2, 173, 141, 161, 224, 68, 78, 3, 48, 5, 68, 78, 253, 45, + 62, 65, 165, 8, 74, 191, 1, 249, 3, 92, 29, 162, 1, 25, 60, 71, 123, 154, 124, 102, 222, 112, 206, 70, 243, 134, + 152, 145, 156, 149, 74, 199, 174, 156, 36, 167, 45, 121, 47, 150, 177, 255, 67, 166, 4, 163, 216, 102, 159, 27, + 148, 39, 38, 95, 23, 153, 67, 222, 159, 65, 51, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 546, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5663334774865310287" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47c2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7684185735885136416" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "624772" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7910176214067202758" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15002646950930752116" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14847216034236498817" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "51e5316c3a17620f" + }, + { + "_tag": "ByteArray", + "bytearray": "4433762324a27f" + }, + { + "_tag": "ByteArray", + "bytearray": "36d20c0fa4d95e" + }, + { + "_tag": "ByteArray", + "bytearray": "2ddc8334af64" + } + ] + } + } + ] + }, + "cborHex": "bf1b4e9834f8dbf6b24f4247c21b6aa3b636d78ea220436247721b6dc6975b56384ac61bd0341bea18d322741bce0be851b82683819f4851e5316c3a17620f474433762324a27f4736d20c0fa4d95e462ddc8334af64ffff", + "cborBytes": [ + 191, 27, 78, 152, 52, 248, 219, 246, 178, 79, 66, 71, 194, 27, 106, 163, 182, 54, 215, 142, 162, 32, 67, 98, 71, + 114, 27, 109, 198, 151, 91, 86, 56, 74, 198, 27, 208, 52, 27, 234, 24, 211, 34, 116, 27, 206, 11, 232, 81, 184, + 38, 131, 129, 159, 72, 81, 229, 49, 108, 58, 23, 98, 15, 71, 68, 51, 118, 35, 36, 162, 127, 71, 54, 210, 12, 15, + 164, 217, 94, 70, 45, 220, 131, 52, 175, 100, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 547, + "sample": { + "_tag": "ByteArray", + "bytearray": "8eb6" + }, + "cborHex": "428eb6", + "cborBytes": [66, 142, 182], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 548, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4cfc5d" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff5434cfc5dff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 245, 67, 76, 252, 93, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 549, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "cborHex": "1bffffffffffffffff", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 550, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4509605962800095640" + } + }, + "cborHex": "1b3e9556baf1aee198", + "cborBytes": [27, 62, 149, 86, 186, 241, 174, 225, 152], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 551, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5293231741709301811" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11fbdc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69c8d8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47d22e0346ab1d2f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9458592b8a4ce82e9f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c32b4dc60" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16405556220741108954" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1f404b796a9d74d95b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed0403a0a20082c9ee67" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "363880242238427097" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2864010047107319991" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13313289449760082819" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14525472267844106340" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "adcbb6fc43351cb302d654" + }, + { + "_tag": "ByteArray", + "bytearray": "54dcf94d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15933008261161162944" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9047cfb3" + } + ] + }, + "cborHex": "9fd8669f1b497556396e67b8339fbf4311fbdc4369c8d8414d4847d22e0346ab1d2f499458592b8a4ce82e9f42b9da459c32b4dc601be3ac3e765ff944da4ab1f404b796a9d74d95b14aed0403a0a20082c9ee67ff1b050cc32703678fd9d8669f1b27bf01f6b2fb48b79f1bb8c24e37bce7cb83ffffa0d8669f1bc994d8117fa2b8649f4badcbb6fc43351cb302d6544454dcf94d1bdd1d6a98c9e018c0ffffffff449047cfb3ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 73, 117, 86, 57, 110, 103, 184, 51, 159, 191, 67, 17, 251, 220, 67, 105, 200, 216, 65, 77, + 72, 71, 210, 46, 3, 70, 171, 29, 47, 73, 148, 88, 89, 43, 138, 76, 232, 46, 159, 66, 185, 218, 69, 156, 50, 180, + 220, 96, 27, 227, 172, 62, 118, 95, 249, 68, 218, 74, 177, 244, 4, 183, 150, 169, 215, 77, 149, 177, 74, 237, 4, + 3, 160, 162, 0, 130, 201, 238, 103, 255, 27, 5, 12, 195, 39, 3, 103, 143, 217, 216, 102, 159, 27, 39, 191, 1, 246, + 178, 251, 72, 183, 159, 27, 184, 194, 78, 55, 188, 231, 203, 131, 255, 255, 160, 216, 102, 159, 27, 201, 148, 216, + 17, 127, 162, 184, 100, 159, 75, 173, 203, 182, 252, 67, 53, 28, 179, 2, 214, 84, 68, 84, 220, 249, 77, 27, 221, + 29, 106, 152, 201, 224, 24, 192, 255, 255, 255, 255, 68, 144, 71, 207, 179, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 552, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "31cc48" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17228834376328338828" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12326145220989543045" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dd48fd4f086fb5a1f7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10012828162665598033" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11004139048857440712" + } + }, + { + "_tag": "ByteArray", + "bytearray": "597828224a4cabc338" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "33" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "652116535570236398" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16153000491584359847" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10075144916851605173" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea96" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15853960543587819671" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2364489855391352356" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "45352960b75c16cee82e18" + } + ] + }, + "cborHex": "9f4331cc48d8669f1bef191d953f16dd8c9fd8669f1bab0f43c592f5e2859f49dd48fd4f086fb5a1f71b8af4b629e8b5cc511b98b68e299a2711c849597828224a4cabc338ffff4133d8669f1b090cc888b6d283ee9f1be02afc5d65988da71b8bd21aebe585beb542ea961bdc04951dd39c6097ffff1b20d05afef19dc624ffff4b45352960b75c16cee82e18ff", + "cborBytes": [ + 159, 67, 49, 204, 72, 216, 102, 159, 27, 239, 25, 29, 149, 63, 22, 221, 140, 159, 216, 102, 159, 27, 171, 15, 67, + 197, 146, 245, 226, 133, 159, 73, 221, 72, 253, 79, 8, 111, 181, 161, 247, 27, 138, 244, 182, 41, 232, 181, 204, + 81, 27, 152, 182, 142, 41, 154, 39, 17, 200, 73, 89, 120, 40, 34, 74, 76, 171, 195, 56, 255, 255, 65, 51, 216, + 102, 159, 27, 9, 12, 200, 136, 182, 210, 131, 238, 159, 27, 224, 42, 252, 93, 101, 152, 141, 167, 27, 139, 210, + 26, 235, 229, 133, 190, 181, 66, 234, 150, 27, 220, 4, 149, 29, 211, 156, 96, 151, 255, 255, 27, 32, 208, 90, 254, + 241, 157, 198, 36, 255, 255, 75, 69, 53, 41, 96, 183, 92, 22, 206, 232, 46, 24, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 553, + "sample": { + "_tag": "ByteArray", + "bytearray": "32" + }, + "cborHex": "4132", + "cborBytes": [65, 50], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 554, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff48" + }, + "cborHex": "42ff48", + "cborBytes": [66, 255, 72], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 555, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1045226096814661846" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18108017584968548349" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2505917923218045244" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6738581399113207189" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8541356bd5b6249a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9429665134462377511" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15855818866638768431" + } + } + } + ] + }, + "cborHex": "bf1b0e816398e29b20d61bfb4c9a0d9a93bffd1b22c6cf1301b2393c41971b5d84401478328d95488541356bd5b6249a1b82dce67ab2841e271bdc0b2f4060f0c92fff", + "cborBytes": [ + 191, 27, 14, 129, 99, 152, 226, 155, 32, 214, 27, 251, 76, 154, 13, 154, 147, 191, 253, 27, 34, 198, 207, 19, 1, + 178, 57, 60, 65, 151, 27, 93, 132, 64, 20, 120, 50, 141, 149, 72, 133, 65, 53, 107, 213, 182, 36, 154, 27, 130, + 220, 230, 122, 178, 132, 30, 39, 27, 220, 11, 47, 64, 96, 240, 201, 47, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 556, + "sample": { + "_tag": "ByteArray", + "bytearray": "056bb8fb" + }, + "cborHex": "44056bb8fb", + "cborBytes": [68, 5, 107, 184, 251], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 557, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "25fb02fbd505222f01" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "13cc2a4ceb2f" + }, + { + "_tag": "ByteArray", + "bytearray": "0c3fd388d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10357489048971537133" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4859298817094519096" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1ee142cede" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "345ed9e21c3d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5236900ca5f5785e996a3d5e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "832973b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a81c8ed3cb697f9e140ea47d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e8142b1d937bd14c12d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3438354496484504659" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9654844379462174187" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9995026706294446369" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e31f49d9" + }, + { + "_tag": "ByteArray", + "bytearray": "0595083a908288bd8eff" + } + ] + } + } + ] + }, + "cborHex": "bf4925fb02fbd505222f019f4613cc2a4ceb2f450c3fd388d31b8fbd3169e8f26aed1b436fb2874a650938451ee142cedeff46345ed9e21c3d9f4c5236900ca5f5785e996a3d5eff44832973b04ca81c8ed3cb697f9e140ea47d4a9e8142b1d937bd14c12dd905079f1b2fb77d3286d374531b85fce5cf3f8505eb1b8ab577d55d39192144e31f49d94a0595083a908288bd8effffff", + "cborBytes": [ + 191, 73, 37, 251, 2, 251, 213, 5, 34, 47, 1, 159, 70, 19, 204, 42, 76, 235, 47, 69, 12, 63, 211, 136, 211, 27, + 143, 189, 49, 105, 232, 242, 106, 237, 27, 67, 111, 178, 135, 74, 101, 9, 56, 69, 30, 225, 66, 206, 222, 255, 70, + 52, 94, 217, 226, 28, 61, 159, 76, 82, 54, 144, 12, 165, 245, 120, 94, 153, 106, 61, 94, 255, 68, 131, 41, 115, + 176, 76, 168, 28, 142, 211, 203, 105, 127, 158, 20, 14, 164, 125, 74, 158, 129, 66, 177, 217, 55, 189, 20, 193, + 45, 217, 5, 7, 159, 27, 47, 183, 125, 50, 134, 211, 116, 83, 27, 133, 252, 229, 207, 63, 133, 5, 235, 27, 138, + 181, 119, 213, 93, 57, 25, 33, 68, 227, 31, 73, 217, 74, 5, 149, 8, 58, 144, 130, 136, 189, 142, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 558, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "cborHex": "1bfffffffffffffffc", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 252], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 559, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + } + ] + } + ] + }, + "cborHex": "9fbf1bfffffffffffffffb4106ffff", + "cborBytes": [159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 251, 65, 6, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 560, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12794451778547951194" + }, + "fields": [] + }, + "cborHex": "d8669f1bb18f061acc37265a80ff", + "cborBytes": [216, 102, 159, 27, 177, 143, 6, 26, 204, 55, 38, 90, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 561, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4868532014083323950" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18146356116027638900" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4971201557051505540" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1176620405550882623" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17655366076277675467" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1121fc788e0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1cb64842d86" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b288620807502" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c7cbe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e84e2387c0da639438c9928f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14159700959621206820" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b439080127d0db82ed8669f1bfbd4cebe7790847480ff1b44fd417a42ec7b841b105432065c561f3f1bf50475e77c0355cbbf461121fc788e0f46b1cb64842d86479b288620807502439c7cbe4ce84e2387c0da639438c9928f1bc4815d005ffad324ffff", + "cborBytes": [ + 191, 27, 67, 144, 128, 18, 125, 13, 184, 46, 216, 102, 159, 27, 251, 212, 206, 190, 119, 144, 132, 116, 128, 255, + 27, 68, 253, 65, 122, 66, 236, 123, 132, 27, 16, 84, 50, 6, 92, 86, 31, 63, 27, 245, 4, 117, 231, 124, 3, 85, 203, + 191, 70, 17, 33, 252, 120, 142, 15, 70, 177, 203, 100, 132, 45, 134, 71, 155, 40, 134, 32, 128, 117, 2, 67, 156, + 124, 190, 76, 232, 78, 35, 135, 192, 218, 99, 148, 56, 201, 146, 143, 27, 196, 129, 93, 0, 95, 250, 211, 36, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 562, + "sample": { + "_tag": "ByteArray", + "bytearray": "ee6b7902" + }, + "cborHex": "44ee6b7902", + "cborBytes": [68, 238, 107, 121, 2], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 563, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16149955427988065989" + } + }, + "cborHex": "1be0202ae5479ecec5", + "cborBytes": [27, 224, 32, 42, 229, 71, 158, 206, 197], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 564, + "sample": { + "_tag": "ByteArray", + "bytearray": "c596ca54" + }, + "cborHex": "44c596ca54", + "cborBytes": [68, 197, 150, 202, 84], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 565, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17475291742283908251" + } + }, + "cborHex": "1bf284b5406526449b", + "cborBytes": [27, 242, 132, 181, 64, 101, 38, 68, 155], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 566, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8085944145606520201" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11378398638608020868" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13395069498544171654" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17259487933658271243" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a34231a5ccae34e000" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14444850092157647627" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c150fedb6621a826057ad723" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3795ff623b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b9" + }, + { + "_tag": "ByteArray", + "bytearray": "41610728382e217b669346" + } + ] + }, + "cborHex": "9fbf1b70370b5bf886ad891b9de83146c704f5841bb9e4d8bd22652a861bef8604d4bad78e0b49a34231a5ccae34e0001bc8766aa070d33b0b4cc150fedb6621a826057ad723453795ff623bff41b94b41610728382e217b669346ff", + "cborBytes": [ + 159, 191, 27, 112, 55, 11, 91, 248, 134, 173, 137, 27, 157, 232, 49, 70, 199, 4, 245, 132, 27, 185, 228, 216, 189, + 34, 101, 42, 134, 27, 239, 134, 4, 212, 186, 215, 142, 11, 73, 163, 66, 49, 165, 204, 174, 52, 224, 0, 27, 200, + 118, 106, 160, 112, 211, 59, 11, 76, 193, 80, 254, 219, 102, 33, 168, 38, 5, 122, 215, 35, 69, 55, 149, 255, 98, + 59, 255, 65, 185, 75, 65, 97, 7, 40, 56, 46, 33, 123, 102, 147, 70, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 567, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "35a5a5d5dbc3429b3ce7" + }, + { + "_tag": "ByteArray", + "bytearray": "3500ce8cf6837c6d674aa4" + }, + { + "_tag": "ByteArray", + "bytearray": "77f1bdff96" + }, + { + "_tag": "ByteArray", + "bytearray": "59cce387d3da649fd6" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f4a35a5a5d5dbc3429b3ce74b3500ce8cf6837c6d674aa44577f1bdff964959cce387d3da649fd6ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 74, 53, 165, 165, 213, 219, 195, 66, 155, 60, 231, + 75, 53, 0, 206, 140, 246, 131, 124, 109, 103, 74, 164, 69, 119, 241, 189, 255, 150, 73, 89, 204, 227, 135, 211, + 218, 100, 159, 214, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 568, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12156457732574022870" + }, + "fields": [] + }, + "cborHex": "d8669f1ba8b469e66d200cd680ff", + "cborBytes": [216, 102, 159, 27, 168, 180, 105, 230, 109, 32, 12, 214, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 569, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4551495869639475634" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13082109111136774859" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "437a580df0c0b9141d6844" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c521f0032b49bdb6" + }, + { + "_tag": "ByteArray", + "bytearray": "52ebc59815a543" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e3bf09b7558e946c3e489" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "136026538707672402" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ad60f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7547714087980808564" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9179e52d10d505" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10cf84c3b1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "909750750063048242" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4914071724590669426" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16148542975226073733" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1567989566228167417" + } + }, + { + "_tag": "ByteArray", + "bytearray": "99585db0e0199046" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12219032908930819786" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5cffc2acbe2578ccb79f" + }, + { + "_tag": "ByteArray", + "bytearray": "ff9c34630e07" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17376916255390879424" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "485619" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df19168721d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e78dd368a2df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efc1e7029d853132" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17534989322977972537" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b3f2a2960ea84c1b21bb58cfcecb2356acb9f4b437a580df0c0b9141d68449f48c521f0032b49bdb64752ebc59815a543ffbf4b6e3bf09b7558e946c3e4891b01e3436a8fb25d52ffbf433ad60f1b68beddf9384eb974479179e52d10d5054510cf84c3b14294f91b0ca0157cb3a73632ff1b44324a3299049e72ff9f1be01b2646fe7ad2859f1b15c29e33f28c7af94899585db0e01990461ba992b9b103a126ca4a5cffc2acbe2578ccb79f46ff9c34630e07ffffbf1bf12735447648cec04348561946df19168721d146e78dd368a2df48efc1e7029d8531321bf358cbe2885e9139ffff", + "cborBytes": [ + 159, 27, 63, 42, 41, 96, 234, 132, 193, 178, 27, 181, 140, 252, 236, 178, 53, 106, 203, 159, 75, 67, 122, 88, 13, + 240, 192, 185, 20, 29, 104, 68, 159, 72, 197, 33, 240, 3, 43, 73, 189, 182, 71, 82, 235, 197, 152, 21, 165, 67, + 255, 191, 75, 110, 59, 240, 155, 117, 88, 233, 70, 195, 228, 137, 27, 1, 227, 67, 106, 143, 178, 93, 82, 255, 191, + 67, 58, 214, 15, 27, 104, 190, 221, 249, 56, 78, 185, 116, 71, 145, 121, 229, 45, 16, 213, 5, 69, 16, 207, 132, + 195, 177, 66, 148, 249, 27, 12, 160, 21, 124, 179, 167, 54, 50, 255, 27, 68, 50, 74, 50, 153, 4, 158, 114, 255, + 159, 27, 224, 27, 38, 70, 254, 122, 210, 133, 159, 27, 21, 194, 158, 51, 242, 140, 122, 249, 72, 153, 88, 93, 176, + 224, 25, 144, 70, 27, 169, 146, 185, 177, 3, 161, 38, 202, 74, 92, 255, 194, 172, 190, 37, 120, 204, 183, 159, 70, + 255, 156, 52, 99, 14, 7, 255, 255, 191, 27, 241, 39, 53, 68, 118, 72, 206, 192, 67, 72, 86, 25, 70, 223, 25, 22, + 135, 33, 209, 70, 231, 141, 211, 104, 162, 223, 72, 239, 193, 231, 2, 157, 133, 49, 50, 27, 243, 88, 203, 226, + 136, 94, 145, 57, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 570, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fdcf0" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7eb27" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15795884686714122431" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "426153783524693529" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7f825" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6577929897360059587" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9b88da4fb59ef1e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "473f9ec0" + } + } + ] + }, + "cborHex": "bf436fdcf08043c7eb279f1bdb36416eb0a0b0bf1b05ea009bb6ad9619ff43c7f8251b5b498063e9916cc348c9b88da4fb59ef1e44473f9ec0ff", + "cborBytes": [ + 191, 67, 111, 220, 240, 128, 67, 199, 235, 39, 159, 27, 219, 54, 65, 110, 176, 160, 176, 191, 27, 5, 234, 0, 155, + 182, 173, 150, 25, 255, 67, 199, 248, 37, 27, 91, 73, 128, 99, 233, 145, 108, 195, 72, 201, 184, 141, 164, 251, + 89, 239, 30, 68, 71, 63, 158, 192, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 571, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18380362092390756856" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "390248" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13839192560487357136" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "33f0" + }, + { + "_tag": "ByteArray", + "bytearray": "be661bd48ce6c2694bd0e507" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3281275040351025124" + } + } + ] + }, + "cborHex": "9f9fd8669f1bff1429f09001b1f89f433902481bc00eb04f8213dad0ffffff4233f04cbe661bd48ce6c2694bd0e5071b2d896e43a67a77e4ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 255, 20, 41, 240, 144, 1, 177, 248, 159, 67, 57, 2, 72, 27, 192, 14, 176, 79, 130, + 19, 218, 208, 255, 255, 255, 66, 51, 240, 76, 190, 102, 27, 212, 140, 230, 194, 105, 75, 208, 229, 7, 27, 45, 137, + 110, 67, 166, 122, 119, 228, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 572, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "195041867595024844" + } + }, + "cborHex": "1b02b4ed8b925489cc", + "cborBytes": [27, 2, 180, 237, 139, 146, 84, 137, 204], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 573, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5825144440349678450" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13419228896067419630" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6845341307708766988" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10487492480507544471" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11358254682950236832" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11531169437255120047" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f260147cca69937" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11686961672608770987" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ad525309c" + } + } + ] + }, + "cborHex": "bf1b50d712016c625b721bba3aad9535c17dee1b5eff89a6b449fb0c801b918b0ed88d3b83971b9da0a0749daa7aa01ba006f182286eb4af489f260147cca699371ba2306db897736bab451ad525309cff", + "cborBytes": [ + 191, 27, 80, 215, 18, 1, 108, 98, 91, 114, 27, 186, 58, 173, 149, 53, 193, 125, 238, 27, 94, 255, 137, 166, 180, + 73, 251, 12, 128, 27, 145, 139, 14, 216, 141, 59, 131, 151, 27, 157, 160, 160, 116, 157, 170, 122, 160, 27, 160, + 6, 241, 130, 40, 110, 180, 175, 72, 159, 38, 1, 71, 204, 166, 153, 55, 27, 162, 48, 109, 184, 151, 115, 107, 171, + 69, 26, 213, 37, 48, 156, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 574, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06030400" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07fe0088" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25b546b25c9af6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28fc3c9b6a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e25d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9211227252714487056" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b420c12fc649452" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2712572744186347946" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13347345962884008535" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da78de8bee218e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16225231901749061611" + } + } + ] + } + } + ] + }, + "cborHex": "bf4406030400804407fe00881bfffffffffffffff34725b546b25c9af64528fc3c9b6a432e25d61b7fd4da621771bd10485b420c12fc649452bf1b25a4fe89fca241aa1bb93b4c6f9bf20a57ff47da78de8bee218e9f1be12b9a731e16a7ebffff", + "cborBytes": [ + 191, 68, 6, 3, 4, 0, 128, 68, 7, 254, 0, 136, 27, 255, 255, 255, 255, 255, 255, 255, 243, 71, 37, 181, 70, 178, + 92, 154, 246, 69, 40, 252, 60, 155, 106, 67, 46, 37, 214, 27, 127, 212, 218, 98, 23, 113, 189, 16, 72, 91, 66, 12, + 18, 252, 100, 148, 82, 191, 27, 37, 164, 254, 137, 252, 162, 65, 170, 27, 185, 59, 76, 111, 155, 242, 10, 87, 255, + 71, 218, 120, 222, 139, 238, 33, 142, 159, 27, 225, 43, 154, 115, 30, 22, 167, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 575, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17655614655942293886" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7830015162854022359" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e421" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10852905429985245752" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "360bab96c01c42cd53" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12267657781108664805" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60acee" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8913239417992656082" + } + } + ] + }, + "cborHex": "d87e9fd8669f1bf50557fc729ef97e80ffbf1b6ca9cd4e2fd61cd742e4211b969d43fcc72dba3849360bab96c01c42cd531baa3f79c14d09e9e54360aceeff1b7bb23006bb7634d2ff", + "cborBytes": [ + 216, 126, 159, 216, 102, 159, 27, 245, 5, 87, 252, 114, 158, 249, 126, 128, 255, 191, 27, 108, 169, 205, 78, 47, + 214, 28, 215, 66, 228, 33, 27, 150, 157, 67, 252, 199, 45, 186, 56, 73, 54, 11, 171, 150, 192, 28, 66, 205, 83, + 27, 170, 63, 121, 193, 77, 9, 233, 229, 67, 96, 172, 238, 255, 27, 123, 178, 48, 6, 187, 118, 52, 210, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 576, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10446916446986204444" + } + }, + { + "_tag": "ByteArray", + "bytearray": "41a0e234a0" + } + ] + }, + "cborHex": "9f1b90fae7288ccc751c4541a0e234a0ff", + "cborBytes": [159, 27, 144, 250, 231, 40, 140, 204, 117, 28, 69, 65, 160, 226, 52, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 577, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12875157303336143401" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff22" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14666876168677379652" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e89a9b56e038fb6978d07" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8450799597626558817" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4c7e93f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4837208018503287376" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16464927651812002289" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3873680903137860038" + } + } + } + ] + } + ] + }, + "cborHex": "d9050b9fbf1bb2adbf5a14a08a2942ff221bcb8b362abea84e444b6e89a9b56e038fb6978d07ffbf1b75474575b48b896144c4c7e93f41f21b432137106f8f4250ffbf1be47f2c76e2c2c9f11b35c21441fcbf19c6ffff", + "cborBytes": [ + 217, 5, 11, 159, 191, 27, 178, 173, 191, 90, 20, 160, 138, 41, 66, 255, 34, 27, 203, 139, 54, 42, 190, 168, 78, + 68, 75, 110, 137, 169, 181, 110, 3, 143, 182, 151, 141, 7, 255, 191, 27, 117, 71, 69, 117, 180, 139, 137, 97, 68, + 196, 199, 233, 63, 65, 242, 27, 67, 33, 55, 16, 111, 143, 66, 80, 255, 191, 27, 228, 127, 44, 118, 226, 194, 201, + 241, 27, 53, 194, 20, 65, 252, 191, 25, 198, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 578, + "sample": { + "_tag": "ByteArray", + "bytearray": "e43f99b1" + }, + "cborHex": "44e43f99b1", + "cborBytes": [68, 228, 63, 153, 177], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 579, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4304372241658945162" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1a8ae164f26002139aa3323d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8222316828650034201" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "577308539493955879" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5077542775831127366" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bcb211f4cccfdea6b66b" + }, + { + "_tag": "ByteArray", + "bytearray": "77b3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5390862816259015103" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "09ff965bfac0" + }, + { + "_tag": "ByteArray", + "bytearray": "db7279ae7b" + }, + { + "_tag": "ByteArray", + "bytearray": "8639" + }, + { + "_tag": "ByteArray", + "bytearray": "40183d7d55" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5644122590855934970" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14436676904736128872" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "417828608439739930" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5dc7adbdc219e5fb99ff1a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14240860502881954016" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f99eca85032135dcff" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16729200172669359240" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d9b1a" + } + } + ] + }, + "cborHex": "bf1b3bbc33bf8d221e8a9f4c1a8ae164f26002139aa3323d1b721b89978a66d4191b0803030ed6563927ff1b46770e40ad43e5469f4abcb211f4cccfdea6b66b4277b3ff1b4ad0312b5bfb01bf9f4609ff965bfac045db7279ae7b4286394540183d7d55ff1b4e53f397b0b9b3faa01bc8596127f3e1ff68bf1b05cc6ce7d70be61a4b5dc7adbdc219e5fb99ff1a1bc5a1b32d122b68e049f99eca85032135dcffff1be82a0eec045c5488437d9b1aff", + "cborBytes": [ + 191, 27, 59, 188, 51, 191, 141, 34, 30, 138, 159, 76, 26, 138, 225, 100, 242, 96, 2, 19, 154, 163, 50, 61, 27, + 114, 27, 137, 151, 138, 102, 212, 25, 27, 8, 3, 3, 14, 214, 86, 57, 39, 255, 27, 70, 119, 14, 64, 173, 67, 229, + 70, 159, 74, 188, 178, 17, 244, 204, 207, 222, 166, 182, 107, 66, 119, 179, 255, 27, 74, 208, 49, 43, 91, 251, 1, + 191, 159, 70, 9, 255, 150, 91, 250, 192, 69, 219, 114, 121, 174, 123, 66, 134, 57, 69, 64, 24, 61, 125, 85, 255, + 27, 78, 83, 243, 151, 176, 185, 179, 250, 160, 27, 200, 89, 97, 39, 243, 225, 255, 104, 191, 27, 5, 204, 108, 231, + 215, 11, 230, 26, 75, 93, 199, 173, 189, 194, 25, 229, 251, 153, 255, 26, 27, 197, 161, 179, 45, 18, 43, 104, 224, + 73, 249, 158, 202, 133, 3, 33, 53, 220, 255, 255, 27, 232, 42, 14, 236, 4, 92, 84, 136, 67, 125, 155, 26, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 580, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18240299297167777581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0722" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + } + ] + }, + "cborHex": "bf1bfd228f91cc7e1f2d0e4207221bffffffffffffffebff", + "cborBytes": [ + 191, 27, 253, 34, 143, 145, 204, 126, 31, 45, 14, 66, 7, 34, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 581, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d75af0959521b57" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5abccdf0c5a7b8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "332095a891b19ae8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3a6ced8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10bf950106f954c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d2c37cd7e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "396205188110126426" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d2820" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8807496977232938118" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "938706221271479694" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf481d75af0959521b57475abccdf0c5a7b848332095a891b19ae844e3a6ced841434810bf950106f954c0458d2c37cd7e1b057f9a84f7788d5a439d28201b7a3a83d6304bc48641f21b0d06f455b355f58effff", + "cborBytes": [ + 159, 191, 72, 29, 117, 175, 9, 89, 82, 27, 87, 71, 90, 188, 205, 240, 197, 167, 184, 72, 51, 32, 149, 168, 145, + 177, 154, 232, 68, 227, 166, 206, 216, 65, 67, 72, 16, 191, 149, 1, 6, 249, 84, 192, 69, 141, 44, 55, 205, 126, + 27, 5, 127, 154, 132, 247, 120, 141, 90, 67, 157, 40, 32, 27, 122, 58, 131, 214, 48, 75, 196, 134, 65, 242, 27, + 13, 6, 244, 85, 179, 85, 245, 142, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 582, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10129225115628128771" + } + }, + "cborHex": "1b8c923c9362faca03", + "cborBytes": [27, 140, 146, 60, 147, 98, 250, 202, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 583, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed0505b8d5ffb23a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15154471845260698085" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f48ed0505b8d5ffb23a1bd24f7fd9f76c21e5ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 72, 237, 5, 5, 184, 213, 255, 178, 58, 27, 210, + 79, 127, 217, 247, 108, 33, 229, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 584, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9701381286966712650" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7469557223397119477" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5435777414929005560" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12728794643040126226" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc7da79546" + }, + { + "_tag": "ByteArray", + "bytearray": "80b008b1327ffa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6263031264491688754" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c899" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b86a23ae16045d94ad8669f1b67a932b82209d5f59f1b4b6fc2c246ef3bf81bb0a5c349ad4d451245fc7da795464780b008b1327ffa1b56eac1c089315332ffff42c89980ff", + "cborBytes": [ + 191, 27, 134, 162, 58, 225, 96, 69, 217, 74, 216, 102, 159, 27, 103, 169, 50, 184, 34, 9, 213, 245, 159, 27, 75, + 111, 194, 194, 70, 239, 59, 248, 27, 176, 165, 195, 73, 173, 77, 69, 18, 69, 252, 125, 167, 149, 70, 71, 128, 176, + 8, 177, 50, 127, 250, 27, 86, 234, 193, 192, 137, 49, 83, 50, 255, 255, 66, 200, 153, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 585, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "865175346284455141" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4688397571273332292" + } + } + ] + } + } + ] + }, + "cborHex": "bf05a0149f1bffffffffffffffeb1b0c01b864bfb5e4e51b411088c0398d1644ffff", + "cborBytes": [ + 191, 5, 160, 20, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 27, 12, 1, 184, 100, 191, 181, 228, 229, 27, 65, + 16, 136, 192, 57, 141, 22, 68, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 586, + "sample": { + "_tag": "ByteArray", + "bytearray": "9e3363d43b080c8e6346" + }, + "cborHex": "4a9e3363d43b080c8e6346", + "cborBytes": [74, 158, 51, 99, 212, 59, 8, 12, 142, 99, 70], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 587, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e6daffadda90da" + }, + { + "_tag": "ByteArray", + "bytearray": "e8e27d74" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f47e6daffadda90da44e8e27d74ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 71, 230, 218, 255, 173, 218, 144, 218, 68, 232, + 226, 125, 116, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 588, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7984991204453611933" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8221" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "556259380545480819" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7770804176703336152" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2435" + }, + { + "_tag": "ByteArray", + "bytearray": "0b" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6886250615943560771" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e888e12306211c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9863966681077802786" + } + }, + { + "_tag": "ByteArray", + "bytearray": "60e0610556acb472e030f9cd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1289963132307757442" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11917060594442093306" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "2dd802ac760c9d7e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f48e66c4c1dda3cb8ac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67cf7119683ba5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2881c1e15447d78c356" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d6ff1136fff8c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de42abd26d789e1e54" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d840d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1034539322225722237" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b6ed06331b413799d9f4282219f1b07b83af59c6468731b6bd7713a2b862ed8422435410bffd8669f1b5f90e07345a17e439f47e888e12306211c1b88e3d96f55ee67224c60e0610556acb472e030f9cd1b11e6dea2628dd9821ba561e778aa86c2faffffffa0482dd802ac760c9d7ebf4a1f48e66c4c1dda3cb8ac418f4767cf7119683ba54ae2881c1e15447d78c356476d6ff1136fff8c49de42abd26d789e1e5443d840d11b0e5b6c084770037dffff", + "cborBytes": [ + 159, 27, 110, 208, 99, 49, 180, 19, 121, 157, 159, 66, 130, 33, 159, 27, 7, 184, 58, 245, 156, 100, 104, 115, 27, + 107, 215, 113, 58, 43, 134, 46, 216, 66, 36, 53, 65, 11, 255, 216, 102, 159, 27, 95, 144, 224, 115, 69, 161, 126, + 67, 159, 71, 232, 136, 225, 35, 6, 33, 28, 27, 136, 227, 217, 111, 85, 238, 103, 34, 76, 96, 224, 97, 5, 86, 172, + 180, 114, 224, 48, 249, 205, 27, 17, 230, 222, 162, 98, 141, 217, 130, 27, 165, 97, 231, 120, 170, 134, 194, 250, + 255, 255, 255, 160, 72, 45, 216, 2, 172, 118, 12, 157, 126, 191, 74, 31, 72, 230, 108, 76, 29, 218, 60, 184, 172, + 65, 143, 71, 103, 207, 113, 25, 104, 59, 165, 74, 226, 136, 28, 30, 21, 68, 125, 120, 195, 86, 71, 109, 111, 241, + 19, 111, 255, 140, 73, 222, 66, 171, 210, 109, 120, 158, 30, 84, 67, 216, 64, 209, 27, 14, 91, 108, 8, 71, 112, 3, + 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 589, + "sample": { + "_tag": "ByteArray", + "bytearray": "890b43cf220c05" + }, + "cborHex": "47890b43cf220c05", + "cborBytes": [71, 137, 11, 67, 207, 34, 12, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 590, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11642963022247732890" + } + } + ] + }, + "cborHex": "9f1ba1941d2e8215a69aff", + "cborBytes": [159, 27, 161, 148, 29, 46, 130, 21, 166, 154, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 591, + "sample": { + "_tag": "ByteArray", + "bytearray": "500abce56e589c70" + }, + "cborHex": "48500abce56e589c70", + "cborBytes": [72, 80, 10, 188, 229, 110, 88, 156, 112], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 592, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [] + }, + "cborHex": "d87e80", + "cborBytes": [216, 126, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 593, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11248120821203740102" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5240098295534379941" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "960257657948206500" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2032456346181891096" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e335005093f718fcdd971a48" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1945694037545704683" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12252252089790425008" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "905819054909413273" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "359116791741467228" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9689" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7945911562673932867" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4924752926023393399" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16208193336956364466" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "434b7863dceb5063e3" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "251714a59b36be26612abf5c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10772738638119815669" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15790648278578286528" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4447209248113359357" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "66fa94ba939e2cae72" + }, + { + "_tag": "ByteArray", + "bytearray": "1ad71a9aa7aeb9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17637728716696943058" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11584794403315674257" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3c6e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11668928485773385083" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1441321069343330147" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8050176847878416726" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2565294507026265950" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12374067536120881916" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7210640344651163371" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48722afa35d700bae0996d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10855097899093766766" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "205059377802979067" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b9c195a4ab28625c69f9f1b48b891a2f574e3a51b0d53854092d9f5a41b1c34bc4747a8f4184ce335005093f718fcdd971a48ff1b1b007e6b1d81dcebd8669f1baa08be5c467ee7b09f1b0c921da196a7d799ffffbf1b04fbd6d1c4a0ca5c4296891b6e458c778dd94a431b44583cb19a30a0771be0ef11f71c2326b249434b7863dceb5063e3ff4c251714a59b36be26612abf5cffff1bffffffffffffffee9f9f1b958074b70741c9f51bdb23a6f269cacfc0ffd8669f1b3db7a93fb3a0f9fd9f4966fa94ba939e2cae72471ad71a9aa7aeb91bf4c5ccd1b36d79d21ba0c5752185906c91423c6effff1ba1f05ca217f59d7b80ffbf1b140099e0497ecf631b6fb7f93104dde9561b2399c1c33b8fb75e1babb984dd0d2da2fc1b641157309a0866eb4b48722afa35d700bae0996d1b96a50e06c592b26e1b02d8846aebcf26fbffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 156, 25, 90, 74, 178, 134, 37, 198, 159, 159, 27, 72, 184, 145, 162, 245, 116, 227, 165, + 27, 13, 83, 133, 64, 146, 217, 245, 164, 27, 28, 52, 188, 71, 71, 168, 244, 24, 76, 227, 53, 0, 80, 147, 247, 24, + 252, 221, 151, 26, 72, 255, 27, 27, 0, 126, 107, 29, 129, 220, 235, 216, 102, 159, 27, 170, 8, 190, 92, 70, 126, + 231, 176, 159, 27, 12, 146, 29, 161, 150, 167, 215, 153, 255, 255, 191, 27, 4, 251, 214, 209, 196, 160, 202, 92, + 66, 150, 137, 27, 110, 69, 140, 119, 141, 217, 74, 67, 27, 68, 88, 60, 177, 154, 48, 160, 119, 27, 224, 239, 17, + 247, 28, 35, 38, 178, 73, 67, 75, 120, 99, 220, 235, 80, 99, 227, 255, 76, 37, 23, 20, 165, 155, 54, 190, 38, 97, + 42, 191, 92, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 159, 27, 149, 128, 116, 183, 7, 65, 201, + 245, 27, 219, 35, 166, 242, 105, 202, 207, 192, 255, 216, 102, 159, 27, 61, 183, 169, 63, 179, 160, 249, 253, 159, + 73, 102, 250, 148, 186, 147, 158, 44, 174, 114, 71, 26, 215, 26, 154, 167, 174, 185, 27, 244, 197, 204, 209, 179, + 109, 121, 210, 27, 160, 197, 117, 33, 133, 144, 108, 145, 66, 60, 110, 255, 255, 27, 161, 240, 92, 162, 23, 245, + 157, 123, 128, 255, 191, 27, 20, 0, 153, 224, 73, 126, 207, 99, 27, 111, 183, 249, 49, 4, 221, 233, 86, 27, 35, + 153, 193, 195, 59, 143, 183, 94, 27, 171, 185, 132, 221, 13, 45, 162, 252, 27, 100, 17, 87, 48, 154, 8, 102, 235, + 75, 72, 114, 42, 250, 53, 215, 0, 186, 224, 153, 109, 27, 150, 165, 14, 6, 197, 146, 178, 110, 27, 2, 216, 132, + 106, 235, 207, 38, 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 594, + "sample": { + "_tag": "ByteArray", + "bytearray": "f2516fb9" + }, + "cborHex": "44f2516fb9", + "cborBytes": [68, 242, 81, 111, 185], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 595, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac7a64f8fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1893510737129049030" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf0845ac7a64f8fc1b1a4719fbb0f70bc680ff", + "cborBytes": [191, 8, 69, 172, 122, 100, 248, 252, 27, 26, 71, 25, 251, 176, 247, 11, 198, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 596, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03044899fdfc472974fcd2ff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11673526579049393486" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "84f18993848b722b8ae0d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11571541161511385462" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66d5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de8807f6e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10302632820914602683" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3f77e4161ac8" + }, + { + "_tag": "ByteArray", + "bytearray": "c1e25e4814a0af64" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14187212667073449542" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03114f2c0a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18427431442954554990" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f08a09f4c03044899fdfc472974fcd2ff1ba200b2931c51ed4effbf4b84f18993848b722b8ae0d11ba0965f60b3b2797641bf4266d545de8807f6e11b8efa4df705e542bbffd905059f463f77e4161ac848c1e25e4814a0af641bc4e31ac0edd5ce464503114f2c0a1bffbb6343c02b8e6effffff", + "cborBytes": [ + 159, 159, 8, 160, 159, 76, 3, 4, 72, 153, 253, 252, 71, 41, 116, 252, 210, 255, 27, 162, 0, 178, 147, 28, 81, 237, + 78, 255, 191, 75, 132, 241, 137, 147, 132, 139, 114, 43, 138, 224, 209, 27, 160, 150, 95, 96, 179, 178, 121, 118, + 65, 191, 66, 102, 213, 69, 222, 136, 7, 246, 225, 27, 142, 250, 77, 247, 5, 229, 66, 187, 255, 217, 5, 5, 159, 70, + 63, 119, 228, 22, 26, 200, 72, 193, 226, 94, 72, 20, 160, 175, 100, 27, 196, 227, 26, 192, 237, 213, 206, 70, 69, + 3, 17, 79, 44, 10, 27, 255, 187, 99, 67, 192, 43, 142, 110, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 597, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13825068678143896627" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "247c97d6f9d918e5cd1290" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e3b7820" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14518337637181391994" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12950948595265905019" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c28b71aca302" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9014141836426787204" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccf0ac0228c8f4c7ccb9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "310835707193041029" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f60f830415bd722577c283c" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "70e206d9ce0bca2414" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2946da042a063f588b59dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0cf06dd58d426d9717d0e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6105c2cbf43e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b2183593887e820ba3522e1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6371912d9b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d97d4bb49788b1b7201" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9fdf217465bc26c83303" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2986856154977857087" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a76a20dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3343ce01d0e00533107f79e" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6429605315720466251" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ecc5cd30198bec53c69" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10209129474923909229" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14074919670920381432" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11136479335613942250" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a39cdb6a2db26b46e3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11279128877792657186" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f5bcdb0d20de2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15628691529329663563" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b95f4568853b74" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17308281432209034448" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5258946574034478902" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7114101938977460819" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e57ac090e09ace" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16890718095612315255" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6408833185465746775" + } + }, + { + "_tag": "ByteArray", + "bytearray": "796ff2a328f1551bc1959b73" + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1bbfdc82b6e4256c334b247c97d6f9d918e5cd1290ff9fbf442e3b78201bc97b7f28d961847a42b4fc1bb3bb03215d2b217b46c28b71aca3021b7d18aa3dc334b9844accf0ac0228c8f4c7ccb91b04504f6dc6bfa08542d2bd4c3f60f830415bd722577c283cff4970e206d9ce0bca2414bf4b2946da042a063f588b59dc4bb0cf06dd58d426d9717d0e466105c2cbf43e4c2b2183593887e820ba3522e1456371912d9b4a7d97d4bb49788b1b72014a9fdf217465bc26c833031b297371d910a4ee3f44a76a20dd4ce3343ce01d0e00533107f79effffbf1b593a8bf8197b4f4b4a5ecc5cd30198bec53c691b8dae1d2acacf506d1bc35428de5b5e03f81b9a8cb8f3bfbf49ea49a39cdb6a2db26b46e31b9c8783f478ae7f22470f5bcdb0d20de21bd8e444243dd9de4b47b95f4568853b741bf0335e42674f0cd041d7ff9f1b48fb880bc6152736bf1b62ba5e0578ab525347e57ac090e09aceffd8669f1bea67e29dfa3c06779f1b58f0bfd3a46bc5574c796ff2a328f1551bc1959b73ffffffff", + "cborBytes": [ + 159, 191, 27, 191, 220, 130, 182, 228, 37, 108, 51, 75, 36, 124, 151, 214, 249, 217, 24, 229, 205, 18, 144, 255, + 159, 191, 68, 46, 59, 120, 32, 27, 201, 123, 127, 40, 217, 97, 132, 122, 66, 180, 252, 27, 179, 187, 3, 33, 93, + 43, 33, 123, 70, 194, 139, 113, 172, 163, 2, 27, 125, 24, 170, 61, 195, 52, 185, 132, 74, 204, 240, 172, 2, 40, + 200, 244, 199, 204, 185, 27, 4, 80, 79, 109, 198, 191, 160, 133, 66, 210, 189, 76, 63, 96, 248, 48, 65, 91, 215, + 34, 87, 124, 40, 60, 255, 73, 112, 226, 6, 217, 206, 11, 202, 36, 20, 191, 75, 41, 70, 218, 4, 42, 6, 63, 88, 139, + 89, 220, 75, 176, 207, 6, 221, 88, 212, 38, 217, 113, 125, 14, 70, 97, 5, 194, 203, 244, 62, 76, 43, 33, 131, 89, + 56, 135, 232, 32, 186, 53, 34, 225, 69, 99, 113, 145, 45, 155, 74, 125, 151, 212, 187, 73, 120, 139, 27, 114, 1, + 74, 159, 223, 33, 116, 101, 188, 38, 200, 51, 3, 27, 41, 115, 113, 217, 16, 164, 238, 63, 68, 167, 106, 32, 221, + 76, 227, 52, 60, 224, 29, 14, 0, 83, 49, 7, 247, 158, 255, 255, 191, 27, 89, 58, 139, 248, 25, 123, 79, 75, 74, + 94, 204, 92, 211, 1, 152, 190, 197, 60, 105, 27, 141, 174, 29, 42, 202, 207, 80, 109, 27, 195, 84, 40, 222, 91, + 94, 3, 248, 27, 154, 140, 184, 243, 191, 191, 73, 234, 73, 163, 156, 219, 106, 45, 178, 107, 70, 227, 27, 156, + 135, 131, 244, 120, 174, 127, 34, 71, 15, 91, 205, 176, 210, 13, 226, 27, 216, 228, 68, 36, 61, 217, 222, 75, 71, + 185, 95, 69, 104, 133, 59, 116, 27, 240, 51, 94, 66, 103, 79, 12, 208, 65, 215, 255, 159, 27, 72, 251, 136, 11, + 198, 21, 39, 54, 191, 27, 98, 186, 94, 5, 120, 171, 82, 83, 71, 229, 122, 192, 144, 224, 154, 206, 255, 216, 102, + 159, 27, 234, 103, 226, 157, 250, 60, 6, 119, 159, 27, 88, 240, 191, 211, 164, 107, 197, 87, 76, 121, 111, 242, + 163, 40, 241, 85, 27, 193, 149, 155, 115, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 598, + "sample": { + "_tag": "ByteArray", + "bytearray": "c607" + }, + "cborHex": "42c607", + "cborBytes": [66, 198, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 599, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12260571375263831932" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe9b0750" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ccc2" + } + } + ] + }, + "cborHex": "bf08bf41ee1baa264cb4ddec577cff0a8044fe9b075042ccc2ff", + "cborBytes": [ + 191, 8, 191, 65, 238, 27, 170, 38, 76, 180, 221, 236, 87, 124, 255, 10, 128, 68, 254, 155, 7, 80, 66, 204, 194, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 600, + "sample": { + "_tag": "ByteArray", + "bytearray": "5370e19e05f6a649af751d" + }, + "cborHex": "4b5370e19e05f6a649af751d", + "cborBytes": [75, 83, 112, 225, 158, 5, 246, 166, 73, 175, 117, 29], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 601, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15198869115714007242" + } + }, + "cborHex": "1bd2ed3aef05c9f0ca", + "cborBytes": [27, 210, 237, 58, 239, 5, 201, 240, 202], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 602, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3515230447504028028" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6150861901422013190" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7060077471252298848" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12466505742178942030" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10996076595183338396" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14486312838518104952" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17665501261130599085" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16634312397608864989" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bf3ad7d59bf0a58c49414" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9576921941360469689" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6924611436402535213" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5690490262703076583" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18176183953028919450" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5e6362f8904cf4ea88" + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b30c89b77af1d717c1b555c404f88be2b061b61fa6f0de0bb3c6041491bad01ecec10f17c4e1b9899e96752e3c39c1bc909b8c65d0d63781bf52877cd18e78aad1be6d8f2fe465a4cdd4b7bf3ad7d59bf0a58c49414ff109f1b84e80fc3d46f66b99f1b60192969ca616b2d1b4ef8aebe923c74e71bfc3ec700f471b09a495e6362f8904cf4ea88ffffff", + "cborBytes": [ + 159, 191, 27, 48, 200, 155, 119, 175, 29, 113, 124, 27, 85, 92, 64, 79, 136, 190, 43, 6, 27, 97, 250, 111, 13, + 224, 187, 60, 96, 65, 73, 27, 173, 1, 236, 236, 16, 241, 124, 78, 27, 152, 153, 233, 103, 82, 227, 195, 156, 27, + 201, 9, 184, 198, 93, 13, 99, 120, 27, 245, 40, 119, 205, 24, 231, 138, 173, 27, 230, 216, 242, 254, 70, 90, 76, + 221, 75, 123, 243, 173, 125, 89, 191, 10, 88, 196, 148, 20, 255, 16, 159, 27, 132, 232, 15, 195, 212, 111, 102, + 185, 159, 27, 96, 25, 41, 105, 202, 97, 107, 45, 27, 78, 248, 174, 190, 146, 60, 116, 231, 27, 252, 62, 199, 0, + 244, 113, 176, 154, 73, 94, 99, 98, 248, 144, 76, 244, 234, 136, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 603, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15975086902161507226" + } + }, + "cborHex": "1bddb2e8e5db55039a", + "cborBytes": [27, 221, 178, 232, 229, 219, 85, 3, 154], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 604, + "sample": { + "_tag": "ByteArray", + "bytearray": "343a375a30cea72332cdf763" + }, + "cborHex": "4c343a375a30cea72332cdf763", + "cborBytes": [76, 52, 58, 55, 90, 48, 206, 167, 35, 50, 205, 247, 99], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 605, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15381925123244188167" + } + }, + "cborHex": "1bd577936714a06207", + "cborBytes": [27, 213, 119, 147, 103, 20, 160, 98, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 606, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "cborHex": "1bfffffffffffffff0", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 240], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 607, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02f570" + }, + { + "_tag": "ByteArray", + "bytearray": "4b0241832d026907d921bb06" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + "cborHex": "9f4302f5704c4b0241832d026907d921bb060cff", + "cborBytes": [159, 67, 2, 245, 112, 76, 75, 2, 65, 131, 45, 2, 105, 7, 217, 33, 187, 6, 12, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 608, + "sample": { + "_tag": "ByteArray", + "bytearray": "fef85fb63907fafeff03fe01" + }, + "cborHex": "4cfef85fb63907fafeff03fe01", + "cborBytes": [76, 254, 248, 95, 182, 57, 7, 250, 254, 255, 3, 254, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 609, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2969583850490937216" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11630517092452873020" + } + } + ] + }, + "cborHex": "d8669f1b293614c74b3fbf809f1ba167e5aca9c3333cffff", + "cborBytes": [ + 216, 102, 159, 27, 41, 54, 20, 199, 75, 63, 191, 128, 159, 27, 161, 103, 229, 172, 169, 195, 51, 60, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 610, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4158193268304124750" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12208581929591394424" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12857845808316500804" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9714521785153379688" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15194683390771414108" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7475525062763161558" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b5873ea169837d32" + }, + { + "_tag": "ByteArray", + "bytearray": "aae427c759fa729a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c01a7d9eaa" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d43d0d" + }, + { + "_tag": "ByteArray", + "bytearray": "9a9409e69b900cfcec83ca58" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c95b61b9a90caa9f167b3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15807604267827992920" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1047927071518794976" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b901e369836c43345842a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2513438007826711226" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a57069dcdbf5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4572168498109220582" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14088320111134097654" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9093026773673758890" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f72a3364eb6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9243835584685733208" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0aa14cf7b6c2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16465829457715101380" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11940978457189189352" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fbf1b39b4debf18b01b4e1ba96d9894c48c50781bb2703ea38d734b441b86d0ea1806dc5d681bd2de5c09fd75445c1b67be6670038727d6ff48b5873ea169837d3248aae427c759fa729aff9f45c01a7d9eaaff9f9f43d43d0d4c9a9409e69b900cfcec83ca58ffffbf4bc95b61b9a90caa9f167b3f1bdb5fe4544dd61958ffbf1b0e8afc1e9064a4e04bb901e369836c43345842a41b22e1868d257a02ba46a57069dcdbf51b3f739b064f0806e61bc383c47f7a23c0f61b7e30ebac79f0d0aa463f72a3364eb61b8048b37d034ef558460aa14cf7b6c21be48260a6ef457ec41ba5b6e0a40b5a86e8ffff", + "cborBytes": [ + 159, 159, 191, 27, 57, 180, 222, 191, 24, 176, 27, 78, 27, 169, 109, 152, 148, 196, 140, 80, 120, 27, 178, 112, + 62, 163, 141, 115, 75, 68, 27, 134, 208, 234, 24, 6, 220, 93, 104, 27, 210, 222, 92, 9, 253, 117, 68, 92, 27, 103, + 190, 102, 112, 3, 135, 39, 214, 255, 72, 181, 135, 62, 161, 105, 131, 125, 50, 72, 170, 228, 39, 199, 89, 250, + 114, 154, 255, 159, 69, 192, 26, 125, 158, 170, 255, 159, 159, 67, 212, 61, 13, 76, 154, 148, 9, 230, 155, 144, + 12, 252, 236, 131, 202, 88, 255, 255, 191, 75, 201, 91, 97, 185, 169, 12, 170, 159, 22, 123, 63, 27, 219, 95, 228, + 84, 77, 214, 25, 88, 255, 191, 27, 14, 138, 252, 30, 144, 100, 164, 224, 75, 185, 1, 227, 105, 131, 108, 67, 52, + 88, 66, 164, 27, 34, 225, 134, 141, 37, 122, 2, 186, 70, 165, 112, 105, 220, 219, 245, 27, 63, 115, 155, 6, 79, 8, + 6, 230, 27, 195, 131, 196, 127, 122, 35, 192, 246, 27, 126, 48, 235, 172, 121, 240, 208, 170, 70, 63, 114, 163, + 54, 78, 182, 27, 128, 72, 179, 125, 3, 78, 245, 88, 70, 10, 161, 76, 247, 182, 194, 27, 228, 130, 96, 166, 239, + 69, 126, 196, 27, 165, 182, 224, 164, 11, 90, 134, 232, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 611, + "sample": { + "_tag": "ByteArray", + "bytearray": "c43f4a0a" + }, + "cborHex": "44c43f4a0a", + "cborBytes": [68, 196, 63, 74, 10], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 612, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4542889648566220240" + }, + "fields": [] + }, + "cborHex": "d8669f1b3f0b9610ec96b5d080ff", + "cborBytes": [216, 102, 159, 27, 63, 11, 150, 16, 236, 150, 181, 208, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 613, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "93ccf2e3912233b361" + } + ] + }, + "cborHex": "9f4993ccf2e3912233b361ff", + "cborBytes": [159, 73, 147, 204, 242, 227, 145, 34, 51, 179, 97, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 614, + "sample": { + "_tag": "ByteArray", + "bytearray": "5f" + }, + "cborHex": "415f", + "cborBytes": [65, 95], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 615, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6170454694972315359" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15351923595356058889" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18172272906231510262" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf2ae0149682e2455fd82d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "724fc1a285" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "236778464434826180" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "179604" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1449063627418223575" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10313462530882715756" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4970461374436575202" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6496610647988795612" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7588464646273213456" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf04" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02" + } + ] + }, + "cborHex": "d8669f1b55a1dbda447756df9fa0bf1bd50cfd2c0822b5091bfc30e1ed696274f6ffbf4bcf2ae0149682e2455fd82d45724fc1a285ff9fbf14081b034934c24719abc4431796041b141c1bb11133c3d71b8f20c7875d90c06c1b44faa049111787e21b5a2898f6bd6478dcffbf1b694fa463efb9a41042cf04ffff4102ffff", + "cborBytes": [ + 216, 102, 159, 27, 85, 161, 219, 218, 68, 119, 86, 223, 159, 160, 191, 27, 213, 12, 253, 44, 8, 34, 181, 9, 27, + 252, 48, 225, 237, 105, 98, 116, 246, 255, 191, 75, 207, 42, 224, 20, 150, 130, 226, 69, 95, 216, 45, 69, 114, 79, + 193, 162, 133, 255, 159, 191, 20, 8, 27, 3, 73, 52, 194, 71, 25, 171, 196, 67, 23, 150, 4, 27, 20, 28, 27, 177, + 17, 51, 195, 215, 27, 143, 32, 199, 135, 93, 144, 192, 108, 27, 68, 250, 160, 73, 17, 23, 135, 226, 27, 90, 40, + 152, 246, 189, 100, 120, 220, 255, 191, 27, 105, 79, 164, 99, 239, 185, 164, 16, 66, 207, 4, 255, 255, 65, 2, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 616, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bda2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13602982520869261313" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f42bda2d8669f1bbcc78087f24290019f1bffffffffffffffedffff80ff", + "cborBytes": [ + 159, 66, 189, 162, 216, 102, 159, 27, 188, 199, 128, 135, 242, 66, 144, 1, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 237, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 617, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0501973a0056dc32077e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1aa530da7b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ae5f5a40ec3057660b7fb06" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82c9fb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2070107" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "127152cd07051ef894" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "901bde" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a0501973a0056dc32077e451aa530da7b41311bfffffffffffffff44c6ae5f5a40ec3057660b7fb06a04382c9fbd87a8044b2070107bf49127152cd07051ef89443901bdeffff", + "cborBytes": [ + 191, 74, 5, 1, 151, 58, 0, 86, 220, 50, 7, 126, 69, 26, 165, 48, 218, 123, 65, 49, 27, 255, 255, 255, 255, 255, + 255, 255, 244, 76, 106, 229, 245, 164, 14, 195, 5, 118, 96, 183, 251, 6, 160, 67, 130, 201, 251, 216, 122, 128, + 68, 178, 7, 1, 7, 191, 73, 18, 113, 82, 205, 7, 5, 30, 248, 148, 67, 144, 27, 222, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 618, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4140716162910387572" + } + }, + "cborHex": "1b3976c76965fdfd74", + "cborBytes": [27, 57, 118, 199, 105, 101, 253, 253, 116], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 619, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "916233ec" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17585351776539341171" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "59f11552d09bf612bb" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14332650648867512211" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1252628188541416037" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14789650447287985450" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c103b23c4c4e9" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14421489300127699987" + } + } + ] + } + ] + }, + "cborHex": "9f44916233ec1bf40bb84502e971739f4959f11552d09bf612bbbf1bc6e7cdd3d7851f931b11623ab365a6f2651bcd3f64b90ecc252a470c103b23c4c4e9ffff9f1bc8236c1c32355413ffff", + "cborBytes": [ + 159, 68, 145, 98, 51, 236, 27, 244, 11, 184, 69, 2, 233, 113, 115, 159, 73, 89, 241, 21, 82, 208, 155, 246, 18, + 187, 191, 27, 198, 231, 205, 211, 215, 133, 31, 147, 27, 17, 98, 58, 179, 101, 166, 242, 101, 27, 205, 63, 100, + 185, 14, 204, 37, 42, 71, 12, 16, 59, 35, 196, 196, 233, 255, 255, 159, 27, 200, 35, 108, 28, 50, 53, 84, 19, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 620, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f55c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a7f15ccf8720" + } + ] + } + } + ] + }, + "cborHex": "bf42f55c9f46a7f15ccf8720ffff", + "cborBytes": [191, 66, 245, 92, 159, 70, 167, 241, 92, 207, 135, 32, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 621, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17840006084951915822" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12194498935881034262" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4cc9cdba7dca180ff8a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11796451823217120004" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16551013816759060066" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16550115168913735048" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf7946f038c5dbd2e9fd8669f1ba93b902c47116a169f9f4a4cc9cdba7dca180ff8a71ba3b56a6ed4dd93041be5b10360148186621be5add20f52e83d88ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 247, 148, 111, 3, 140, 93, 189, 46, 159, 216, 102, 159, 27, 169, 59, 144, 44, 71, 17, 106, 22, + 159, 159, 74, 76, 201, 205, 186, 125, 202, 24, 15, 248, 167, 27, 163, 181, 106, 110, 212, 221, 147, 4, 27, 229, + 177, 3, 96, 20, 129, 134, 98, 27, 229, 173, 210, 15, 82, 232, 61, 136, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 622, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "40" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b525196fe3a4983e2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14161844837743794847" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2caf46cf610a4399" + }, + { + "_tag": "ByteArray", + "bytearray": "9d616555e9e8433f64008aa3" + } + ] + } + } + ] + }, + "cborHex": "bf4140a0499b525196fe3a4983e2d8669f1bc488fad8e5eb1a9f9f482caf46cf610a43994c9d616555e9e8433f64008aa3ffffff", + "cborBytes": [ + 191, 65, 64, 160, 73, 155, 82, 81, 150, 254, 58, 73, 131, 226, 216, 102, 159, 27, 196, 136, 250, 216, 229, 235, + 26, 159, 159, 72, 44, 175, 70, 207, 97, 10, 67, 153, 76, 157, 97, 101, 85, 233, 232, 67, 63, 100, 0, 138, 163, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 623, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0126cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e244b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fbabbd38d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07f0487b97167fd1cbec" + } + } + ] + }, + "cborHex": "bf430126cb438e244b450fbabbd38d4a07f0487b97167fd1cbecff", + "cborBytes": [ + 191, 67, 1, 38, 203, 67, 142, 36, 75, 69, 15, 186, 187, 211, 141, 74, 7, 240, 72, 123, 151, 22, 127, 209, 203, + 236, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 624, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "cborHex": "0c", + "cborBytes": [12], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 625, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "291cdaea0d05ce7c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9762478961379226542" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13000861635633557428" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e2d2279d89f9173" + } + } + ] + } + ] + }, + "cborHex": "9fbf48291cdaea0d05ce7c1b877b4ae43c3bb3aeff80bf1bb46c56c6adf12fb4488e2d2279d89f9173ffff", + "cborBytes": [ + 159, 191, 72, 41, 28, 218, 234, 13, 5, 206, 124, 27, 135, 123, 74, 228, 60, 59, 179, 174, 255, 128, 191, 27, 180, + 108, 86, 198, 173, 241, 47, 180, 72, 142, 45, 34, 121, 216, 159, 145, 115, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 626, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1391295043401623828" + }, + "fields": [] + }, + "cborHex": "d8669f1b134edf7877b7291480ff", + "cborBytes": [216, 102, 159, 27, 19, 78, 223, 120, 119, 183, 41, 20, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 627, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6847270020756556785" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7067493198780552330" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6476641404266819665" + } + } + } + ] + }, + "cborHex": "bf1b5f0663ce34604bf141c11b6214c79e7dcdd48a1b59e1a70adee93051ff", + "cborBytes": [ + 191, 27, 95, 6, 99, 206, 52, 96, 75, 241, 65, 193, 27, 98, 20, 199, 158, 125, 205, 212, 138, 27, 89, 225, 167, 10, + 222, 233, 48, 81, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 628, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16604899198351355852" + } + } + ] + } + } + ] + }, + "cborHex": "bf139f1be67073d828e6afccffff", + "cborBytes": [191, 19, 159, 27, 230, 112, 115, 216, 40, 230, 175, 204, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 629, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff78a800347ffb505f11" + } + ] + }, + "cborHex": "9f4aff78a800347ffb505f11ff", + "cborBytes": [159, 74, 255, 120, 168, 0, 52, 127, 251, 80, 95, 17, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 630, + "sample": { + "_tag": "ByteArray", + "bytearray": "d7e8bacf94" + }, + "cborHex": "45d7e8bacf94", + "cborBytes": [69, 215, 232, 186, 207, 148], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 631, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4853575285609001293" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "957900098040772441" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "393540016264635091" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11349559971561143739" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14622734237068594768" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3856160511850404387" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d6ed603" + }, + { + "_tag": "ByteArray", + "bytearray": "3520332b368d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5180418285987809238" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4460752755435419312" + } + }, + { + "_tag": "ByteArray", + "bytearray": "65eff0" + }, + { + "_tag": "ByteArray", + "bytearray": "ca1b05e636ebc2db0d34" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b435b5d01c556f14d9fd8669f1b0d4b2510620837599fa0ffffd8669f1b0576228f4a5ae2d39fd8669f1b9d81bca95de4fdbb9f1bcaee6350656a8e5041fc1b3583d58e01bb5a23446d6ed603463520332b368dffff9f1b47e48afbec3dc7d61b3de7c6ff3a92b6b04365eff04aca1b05e636ebc2db0d34ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 67, 91, 93, 1, 197, 86, 241, 77, 159, 216, 102, 159, 27, 13, 75, 37, 16, 98, 8, 55, 89, 159, + 160, 255, 255, 216, 102, 159, 27, 5, 118, 34, 143, 74, 90, 226, 211, 159, 216, 102, 159, 27, 157, 129, 188, 169, + 93, 228, 253, 187, 159, 27, 202, 238, 99, 80, 101, 106, 142, 80, 65, 252, 27, 53, 131, 213, 142, 1, 187, 90, 35, + 68, 109, 110, 214, 3, 70, 53, 32, 51, 43, 54, 141, 255, 255, 159, 27, 71, 228, 138, 251, 236, 61, 199, 214, 27, + 61, 231, 198, 255, 58, 146, 182, 176, 67, 101, 239, 240, 74, 202, 27, 5, 230, 54, 235, 194, 219, 13, 52, 255, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 632, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16233289255200940562" + }, + "fields": [] + }, + "cborHex": "d8669f1be1483a91e86ae21280ff", + "cborBytes": [216, 102, 159, 27, 225, 72, 58, 145, 232, 106, 226, 18, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 633, + "sample": { + "_tag": "ByteArray", + "bytearray": "22c10303d12dff05c8b1" + }, + "cborHex": "4a22c10303d12dff05c8b1", + "cborBytes": [74, 34, 193, 3, 3, 209, 45, 255, 5, 200, 177], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 634, + "sample": { + "_tag": "ByteArray", + "bytearray": "3ffc6e45" + }, + "cborHex": "443ffc6e45", + "cborBytes": [68, 63, 252, 110, 69], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 635, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4214472895474715487" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8696537022670252819" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5869403968938945243" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2530463958157411582" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8027457553922216310" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "70" + }, + { + "_tag": "ByteArray", + "bytearray": "5f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8c06" + } + ] + } + ] + }, + "cborHex": "d8669f1b3a7cd0c4ea484b5f9f1b78b04e588c4b2b13d8669f1b51744fcff3dfaadb9f1b231e03901ee6c4fe1b6f67421d2f0f51769f4170415fff428c06ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 58, 124, 208, 196, 234, 72, 75, 95, 159, 27, 120, 176, 78, 88, 140, 75, 43, 19, 216, 102, 159, + 27, 81, 116, 79, 207, 243, 223, 170, 219, 159, 27, 35, 30, 3, 144, 30, 230, 196, 254, 27, 111, 103, 66, 29, 47, + 15, 81, 118, 159, 65, 112, 65, 95, 255, 66, 140, 6, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 636, + "sample": { + "_tag": "ByteArray", + "bytearray": "40c4" + }, + "cborHex": "4240c4", + "cborBytes": [66, 64, 196], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 637, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "435798858632625682" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8670134620512864904" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12448864041522797762" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6165201f23fb151e1ff086dc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14674766742231805174" + } + }, + { + "_tag": "ByteArray", + "bytearray": "39a639b88092ebc6747808" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "496841946408985450" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1294401093492232386" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13954569605376288720" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1461311746465978122" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18148380545549032631" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13302930802043339572" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52751ced506da110043cfa27" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18016250235481675851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "309218148777516522" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48ec2c23d419521d8f4c61" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12545685728758362103" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1721022998648379263" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "16" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3701736533003179338" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7d37e46952d69134f43ab2e0" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b060c44c0c2517e129fd8669f1b78528180427c4a889f80d8669f1bacc33fe38c199cc29f4c6165201f23fb151e1ff086dc1bcba73e9a10716cf64b39a639b88092ebc67478081b06e5231e2d38a36affffbf1b11f6a2efbe7b50c21bc1a8971f21eaa7d01b14479f4a8235d70a1bfbdbfff3b20f5cb71bb89d81151f6543344c52751ced506da110043cfa271bfa0694228e6ed84b1b044a90449bfcddeaffffffbf4b48ec2c23d419521d8f4c611bae1b3ab34e546ff7ffd8669f1b17e24d4c84b6d77f9f8041169f1b335f35c39dbd954affffffd8669f1bffffffffffffffed9f1180a09f4c7d37e46952d69134f43ab2e0ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 6, 12, 68, 192, 194, 81, 126, 18, 159, 216, 102, 159, 27, 120, 82, 129, 128, 66, 124, 74, 136, + 159, 128, 216, 102, 159, 27, 172, 195, 63, 227, 140, 25, 156, 194, 159, 76, 97, 101, 32, 31, 35, 251, 21, 30, 31, + 240, 134, 220, 27, 203, 167, 62, 154, 16, 113, 108, 246, 75, 57, 166, 57, 184, 128, 146, 235, 198, 116, 120, 8, + 27, 6, 229, 35, 30, 45, 56, 163, 106, 255, 255, 191, 27, 17, 246, 162, 239, 190, 123, 80, 194, 27, 193, 168, 151, + 31, 33, 234, 167, 208, 27, 20, 71, 159, 74, 130, 53, 215, 10, 27, 251, 219, 255, 243, 178, 15, 92, 183, 27, 184, + 157, 129, 21, 31, 101, 67, 52, 76, 82, 117, 28, 237, 80, 109, 161, 16, 4, 60, 250, 39, 27, 250, 6, 148, 34, 142, + 110, 216, 75, 27, 4, 74, 144, 68, 155, 252, 221, 234, 255, 255, 255, 191, 75, 72, 236, 44, 35, 212, 25, 82, 29, + 143, 76, 97, 27, 174, 27, 58, 179, 78, 84, 111, 247, 255, 216, 102, 159, 27, 23, 226, 77, 76, 132, 182, 215, 127, + 159, 128, 65, 22, 159, 27, 51, 95, 53, 195, 157, 189, 149, 74, 255, 255, 255, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 237, 159, 17, 128, 160, 159, 76, 125, 55, 228, 105, 82, 214, 145, 52, 244, 58, 178, 224, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 638, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6524005679778475732" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32b8c6ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7459911094860839848" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13770294156394994912" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17493768767978417188" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad47f274bf846079" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e19201bcb0629e3c237bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d981ad52631a50c1cf" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7923307272367381376" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "42b84d21a8aadc44910c62" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d71" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbb169" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b95aa8c00911c3b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9f3726415d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0e534bfcf57d572c7038890" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "33ec637d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15157271834702271219" + } + }, + { + "_tag": "ByteArray", + "bytearray": "15d62b80767ae8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17531360365073305753" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1154" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13995973959671008617" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b5a89ec999fd3aed44432b8c6ba1b6786ed9dd12cfba81bbf19e993bc8f9ce01bf2c65a022e2d2c2448ad47f274bf8460794b7e19201bcb0629e3c237bd49d981ad52631a50c1cfffd8669f1b6df53dfc17ba1b809fa04b42b84d21a8aadc44910c62bf424d7143cbb16948b95aa8c00911c3b7414446f9f3726415d04cf0e534bfcf57d572c7038890ff4433ec637d9f1bd259726d4f7652f34715d62b80767ae81bf34be75ded8e90994211541bc23bb02997cecd69ffffffff", + "cborBytes": [ + 159, 191, 27, 90, 137, 236, 153, 159, 211, 174, 212, 68, 50, 184, 198, 186, 27, 103, 134, 237, 157, 209, 44, 251, + 168, 27, 191, 25, 233, 147, 188, 143, 156, 224, 27, 242, 198, 90, 2, 46, 45, 44, 36, 72, 173, 71, 242, 116, 191, + 132, 96, 121, 75, 126, 25, 32, 27, 203, 6, 41, 227, 194, 55, 189, 73, 217, 129, 173, 82, 99, 26, 80, 193, 207, + 255, 216, 102, 159, 27, 109, 245, 61, 252, 23, 186, 27, 128, 159, 160, 75, 66, 184, 77, 33, 168, 170, 220, 68, + 145, 12, 98, 191, 66, 77, 113, 67, 203, 177, 105, 72, 185, 90, 168, 192, 9, 17, 195, 183, 65, 68, 70, 249, 243, + 114, 100, 21, 208, 76, 240, 229, 52, 191, 207, 87, 213, 114, 199, 3, 136, 144, 255, 68, 51, 236, 99, 125, 159, 27, + 210, 89, 114, 109, 79, 118, 82, 243, 71, 21, 214, 43, 128, 118, 122, 232, 27, 243, 75, 231, 93, 237, 142, 144, + 153, 66, 17, 84, 27, 194, 59, 176, 41, 151, 206, 205, 105, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 639, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0105" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10294176048675354127" + } + } + } + ] + }, + "cborHex": "bf4201051b8edc42934ca0f60fff", + "cborBytes": [191, 66, 1, 5, 27, 142, 220, 66, 147, 76, 160, 246, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 640, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12200212338739379503" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13264897351346597886" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2743586f" + }, + { + "_tag": "ByteArray", + "bytearray": "b3fc06" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4437828078952816816" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05a9a645e248abd235" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1cd0d3a10cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "16d0ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11620794578525108455" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c2c55e024e6db2e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5112992730641671206" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a239dee3266a0eff8bfa46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0ab633929e0b54788" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0c8b045" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12755705032973514395" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d76efb478e3a86" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d11a48ef16b7e2a69" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7075857331717100479" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fa0d8669f1ba94fdc7b8ae5fd2f9fd8669f1bb81661dc5108affe9f442743586f43b3fc06ffffd8669f1b3d9655200c3ca0b080ffbf4905a9a645e248abd23546e1cd0d3a10cb4316d0ae1ba1455b197cc638e7481c2c55e024e6db2e1b46f4ffcc790d24264ba239dee3266a0eff8bfa4649c0ab633929e0b5478844d0c8b0451bb1055e25160c769b47d76efb478e3a86490d11a48ef16b7e2a69ff9f1b62327ec0f25753bfffffffff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 169, 79, 220, 123, 138, 229, 253, 47, 159, 216, 102, 159, 27, 184, 22, 97, 220, 81, + 8, 175, 254, 159, 68, 39, 67, 88, 111, 67, 179, 252, 6, 255, 255, 216, 102, 159, 27, 61, 150, 85, 32, 12, 60, 160, + 176, 128, 255, 191, 73, 5, 169, 166, 69, 226, 72, 171, 210, 53, 70, 225, 205, 13, 58, 16, 203, 67, 22, 208, 174, + 27, 161, 69, 91, 25, 124, 198, 56, 231, 72, 28, 44, 85, 224, 36, 230, 219, 46, 27, 70, 244, 255, 204, 121, 13, 36, + 38, 75, 162, 57, 222, 227, 38, 106, 14, 255, 139, 250, 70, 73, 192, 171, 99, 57, 41, 224, 181, 71, 136, 68, 208, + 200, 176, 69, 27, 177, 5, 94, 37, 22, 12, 118, 155, 71, 215, 110, 251, 71, 142, 58, 134, 73, 13, 17, 164, 142, + 241, 107, 126, 42, 105, 255, 159, 27, 98, 50, 126, 192, 242, 87, 83, 191, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 641, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf08829e5cb84f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5433523141725551075" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff3414247cf08829e5cb84f1b4b67c082656a79e3ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 243, 65, 66, 71, 207, 8, 130, 158, 92, 184, 79, 27, 75, 103, 192, 130, + 101, 106, 121, 227, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 642, + "sample": { + "_tag": "ByteArray", + "bytearray": "07c306d9fef95868f8a6" + }, + "cborHex": "4a07c306d9fef95868f8a6", + "cborBytes": [74, 7, 195, 6, 217, 254, 249, 88, 104, 248, 166], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 643, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6474036146479396704" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6203208939666556876" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17308177209419059930" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "056104" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cbb452b11e42d46148" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3938602995505175228" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5f75c2f8e8adc9d48e" + }, + { + "_tag": "ByteArray", + "bytearray": "f3ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13717820569480916511" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6000fd70fd03" + } + ] + } + ] + }, + "cborHex": "9fbf0d1bfffffffffffffff21b59d8659305f177601b561639aa245a47cc1bf032ff7824ef52da43056104ff49cbb452b11e42d46148d8669f1b36a8ba8e8a601abc9f495f75c2f8e8adc9d48e42f3ca1bbe5f7d20b874ee1f466000fd70fd03ffffff", + "cborBytes": [ + 159, 191, 13, 27, 255, 255, 255, 255, 255, 255, 255, 242, 27, 89, 216, 101, 147, 5, 241, 119, 96, 27, 86, 22, 57, + 170, 36, 90, 71, 204, 27, 240, 50, 255, 120, 36, 239, 82, 218, 67, 5, 97, 4, 255, 73, 203, 180, 82, 177, 30, 66, + 212, 97, 72, 216, 102, 159, 27, 54, 168, 186, 142, 138, 96, 26, 188, 159, 73, 95, 117, 194, 248, 232, 173, 201, + 212, 142, 66, 243, 202, 27, 190, 95, 125, 32, 184, 116, 238, 31, 70, 96, 0, 253, 112, 253, 3, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 644, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1213828725415883664" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17283042979066682530" + } + } + ] + }, + "cborHex": "d8669f1b10d862cb6c9433909f1befd9b4051d141ca2ffff", + "cborBytes": [ + 216, 102, 159, 27, 16, 216, 98, 203, 108, 148, 51, 144, 159, 27, 239, 217, 180, 5, 29, 20, 28, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 645, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3065029231942169723" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17561471717922406256" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "219d20c4cb" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e6f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a07424d6bfb8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30ec27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc76b00b84ea19" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3377d7771d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8654025160597942402" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a778254036f273593bade8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17325241441237417052" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d468bea6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15913849374043995671" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14216242484988283961" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17415939313306367446" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14400193215809741883" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11702967084611586780" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13205684398086180079" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b2a892bd8e419f47b9fa01bf3b6e17b97d57f7041fa9f45219d20c4cbbf421e6f46a07424d6bfb84330ec2747bc76b00b84ea19453377d7771d1b7819460856bbb0824ba778254036f273593bade81bf06f9f4c38d53c5c44d468bea61bdcd959b0c4f6fe17ffd8669f1bc54a3d381e8b0c399f1bf1b1d8882762f5d61bc7d7c36f2d54643b1ba2694a8ef85ccadcffffffd8669f1bb74403fe4bd84cef80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 42, 137, 43, 216, 228, 25, 244, 123, 159, 160, 27, 243, 182, 225, 123, 151, 213, 127, 112, 65, + 250, 159, 69, 33, 157, 32, 196, 203, 191, 66, 30, 111, 70, 160, 116, 36, 214, 191, 184, 67, 48, 236, 39, 71, 188, + 118, 176, 11, 132, 234, 25, 69, 51, 119, 215, 119, 29, 27, 120, 25, 70, 8, 86, 187, 176, 130, 75, 167, 120, 37, + 64, 54, 242, 115, 89, 59, 173, 232, 27, 240, 111, 159, 76, 56, 213, 60, 92, 68, 212, 104, 190, 166, 27, 220, 217, + 89, 176, 196, 246, 254, 23, 255, 216, 102, 159, 27, 197, 74, 61, 56, 30, 139, 12, 57, 159, 27, 241, 177, 216, 136, + 39, 98, 245, 214, 27, 199, 215, 195, 111, 45, 84, 100, 59, 27, 162, 105, 74, 142, 248, 92, 202, 220, 255, 255, + 255, 216, 102, 159, 27, 183, 68, 3, 254, 75, 216, 76, 239, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 646, + "sample": { + "_tag": "ByteArray", + "bytearray": "34b205c7f00358c1" + }, + "cborHex": "4834b205c7f00358c1", + "cborBytes": [72, 52, 178, 5, 199, 240, 3, 88, 193], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 647, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9577293123306150088" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e663af18fd04b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff8d90" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5414739674698833897" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf4206b91b84e9615a5c7458c847e663af18fd04b21043ff8d901bffffffffffffffffffd8669f1b4b25050bada35fe980ffff", + "cborBytes": [ + 159, 191, 66, 6, 185, 27, 132, 233, 97, 90, 92, 116, 88, 200, 71, 230, 99, 175, 24, 253, 4, 178, 16, 67, 255, 141, + 144, 27, 255, 255, 255, 255, 255, 255, 255, 255, 255, 216, 102, 159, 27, 75, 37, 5, 11, 173, 163, 95, 233, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 648, + "sample": { + "_tag": "ByteArray", + "bytearray": "0499" + }, + "cborHex": "420499", + "cborBytes": [66, 4, 153], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 649, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13618303172503078998" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13696910451782386041" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13849972166447337179" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14743034760551417944" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4166465897485164579" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15318529150906201223" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4069122091332254567" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17864448039916311630" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9e8" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9986819263358374204" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cddb94" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7244577361752379223" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d09467fce4be60" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9244809245324712523" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "37f038b5dbfaee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9484975532004884130" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5544fa42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "977ca116b17c124424212182" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92a88e66b4f0954e77" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17344681149076865097" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c07eb87f6f33d2607d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14800164147157118331" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d81a31b3058dd285" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27ca0608fcaad875cfd0cd85" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12762788651940234221" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ad628dee9a8b78bd6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6092aa584e" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4144492583107561127" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11853964296952961111" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95fd94313e6db2d2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13575293396316764713" + } + }, + { + "_tag": "ByteArray", + "bytearray": "be20" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "20a626d6bff7" + }, + { + "_tag": "ByteArray", + "bytearray": "dddf3488" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1569089982559987517" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16119104303548920447" + } + }, + { + "_tag": "ByteArray", + "bytearray": "63c64d87f2cbbe96" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17168043186188548172" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c2eb60e02f524b647" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5417816794970720926" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3550819932101331937" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10264921069420113770" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0f24ef2b74f5" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16623556021521606155" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5f92777f902a" + }, + { + "_tag": "ByteArray", + "bytearray": "d1c4bf7950f5af65aa" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16447235138253038557" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9f9f1bbcfdee95209f0856bf1bbe15337c8ed301791bc034fc4e1a240edb1bcc99c800b5e748581b39d242a8ac61e0231bd496591a093af4871b38786cfba18dbb671bf7eb44d7a7a2944e42c9e8ffbf1b8a984f352481113c43cddb94ff9f1b6489e8ba23164f5747d09467fce4be60ff80ff9f1b804c29070bd39a4bbf4737f038b5dbfaee1b83a166fe286c3ea2445544fa424c977ca116b17c1244242121824992a88e66b4f0954e771bf0b4af9be924004949c07eb87f6f33d2607d1bcd64bee090c5ad7b48d81a31b3058dd2854c27ca0608fcaad875cfd0cd8541f61bb11e88a8a648c3edffbf499ad628dee9a8b78bd6456092aa584eff9f1b3984320bbe5e06a71ba481bdb91c0b58574895fd94313e6db2d21bbc65216b412aba2942be20ff9f4620a626d6bff744dddf34881b15c68706971ca73d1bdfb28ff61e80f27f4863c64d87f2cbbe96ffff9fd8669f1bee4124515155784c9f497c2eb60e02f524b6471b4b2ff3ab92600a9e1b31470bea4a46cbe11b8e745353a6356f6a460f24ef2b74f5ffffd8669f1be6b2bc204e99e60b9f465f92777f902a49d1c4bf7950f5af65aaffffff1be440513790e523ddffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 159, 27, 188, 253, 238, 149, 32, 159, 8, 86, 191, + 27, 190, 21, 51, 124, 142, 211, 1, 121, 27, 192, 52, 252, 78, 26, 36, 14, 219, 27, 204, 153, 200, 0, 181, 231, 72, + 88, 27, 57, 210, 66, 168, 172, 97, 224, 35, 27, 212, 150, 89, 26, 9, 58, 244, 135, 27, 56, 120, 108, 251, 161, + 141, 187, 103, 27, 247, 235, 68, 215, 167, 162, 148, 78, 66, 201, 232, 255, 191, 27, 138, 152, 79, 53, 36, 129, + 17, 60, 67, 205, 219, 148, 255, 159, 27, 100, 137, 232, 186, 35, 22, 79, 87, 71, 208, 148, 103, 252, 228, 190, 96, + 255, 128, 255, 159, 27, 128, 76, 41, 7, 11, 211, 154, 75, 191, 71, 55, 240, 56, 181, 219, 250, 238, 27, 131, 161, + 102, 254, 40, 108, 62, 162, 68, 85, 68, 250, 66, 76, 151, 124, 161, 22, 177, 124, 18, 68, 36, 33, 33, 130, 73, + 146, 168, 142, 102, 180, 240, 149, 78, 119, 27, 240, 180, 175, 155, 233, 36, 0, 73, 73, 192, 126, 184, 127, 111, + 51, 210, 96, 125, 27, 205, 100, 190, 224, 144, 197, 173, 123, 72, 216, 26, 49, 179, 5, 141, 210, 133, 76, 39, 202, + 6, 8, 252, 170, 216, 117, 207, 208, 205, 133, 65, 246, 27, 177, 30, 136, 168, 166, 72, 195, 237, 255, 191, 73, + 154, 214, 40, 222, 233, 168, 183, 139, 214, 69, 96, 146, 170, 88, 78, 255, 159, 27, 57, 132, 50, 11, 190, 94, 6, + 167, 27, 164, 129, 189, 185, 28, 11, 88, 87, 72, 149, 253, 148, 49, 62, 109, 178, 210, 27, 188, 101, 33, 107, 65, + 42, 186, 41, 66, 190, 32, 255, 159, 70, 32, 166, 38, 214, 191, 247, 68, 221, 223, 52, 136, 27, 21, 198, 135, 6, + 151, 28, 167, 61, 27, 223, 178, 143, 246, 30, 128, 242, 127, 72, 99, 198, 77, 135, 242, 203, 190, 150, 255, 255, + 159, 216, 102, 159, 27, 238, 65, 36, 81, 81, 85, 120, 76, 159, 73, 124, 46, 182, 14, 2, 245, 36, 182, 71, 27, 75, + 47, 243, 171, 146, 96, 10, 158, 27, 49, 71, 11, 234, 74, 70, 203, 225, 27, 142, 116, 83, 83, 166, 53, 111, 106, + 70, 15, 36, 239, 43, 116, 245, 255, 255, 216, 102, 159, 27, 230, 178, 188, 32, 78, 153, 230, 11, 159, 70, 95, 146, + 119, 127, 144, 42, 73, 209, 196, 191, 121, 80, 245, 175, 101, 170, 255, 255, 255, 27, 228, 64, 81, 55, 144, 229, + 35, 221, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 650, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1161850635430796936" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16921958043300574664" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6265643003263045604" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2608648210002943766" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dd8b868f6c6af45b71" + }, + { + "_tag": "ByteArray", + "bytearray": "d2" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10546848372197492982" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13480158162441965664" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15179672706825430354" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a8cc3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18293855341217347385" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6720187722477011000" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3fcab" + } + } + ] + }, + "cborHex": "bf1b101fb8ff46ea1e881bead6df2f1afeb5c81b56f4091d5ae7cfe4d8669f1b2433c7b9cd2f1f169f49dd8b868f6c6af45b7141d2ffff1b925deeb704bd08f61bbb13246d846f90601bd2a907e6c905a552433a8cc31bfde0d48201a477391b5d42e720e62f00381bfffffffffffffffd43c3fcabff", + "cborBytes": [ + 191, 27, 16, 31, 184, 255, 70, 234, 30, 136, 27, 234, 214, 223, 47, 26, 254, 181, 200, 27, 86, 244, 9, 29, 90, + 231, 207, 228, 216, 102, 159, 27, 36, 51, 199, 185, 205, 47, 31, 22, 159, 73, 221, 139, 134, 143, 108, 106, 244, + 91, 113, 65, 210, 255, 255, 27, 146, 93, 238, 183, 4, 189, 8, 246, 27, 187, 19, 36, 109, 132, 111, 144, 96, 27, + 210, 169, 7, 230, 201, 5, 165, 82, 67, 58, 140, 195, 27, 253, 224, 212, 130, 1, 164, 119, 57, 27, 93, 66, 231, 32, + 230, 47, 0, 56, 27, 255, 255, 255, 255, 255, 255, 255, 253, 67, 195, 252, 171, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 651, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15652042429946922649" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1898438904264802204" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17804421876585843950" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12190250420701490553" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + ] + }, + "cborHex": "d8669f1bd93739a9765406999fbf1b1a589c20047c3f9c419e1bf716035d6917ccee1ba92c782bc0f7ed79ff1bfffffffffffffff7ffff", + "cborBytes": [ + 216, 102, 159, 27, 217, 55, 57, 169, 118, 84, 6, 153, 159, 191, 27, 26, 88, 156, 32, 4, 124, 63, 156, 65, 158, 27, + 247, 22, 3, 93, 105, 23, 204, 238, 27, 169, 44, 120, 43, 192, 247, 237, 121, 255, 27, 255, 255, 255, 255, 255, + 255, 255, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 652, + "sample": { + "_tag": "ByteArray", + "bytearray": "5246945552132988" + }, + "cborHex": "485246945552132988", + "cborBytes": [72, 82, 70, 148, 85, 82, 19, 41, 136], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 653, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11377554609030607285" + }, + "fields": [] + }, + "cborHex": "d8669f1b9de531a2d3e0b1b580ff", + "cborBytes": [216, 102, 159, 27, 157, 229, 49, 162, 211, 224, 177, 181, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 654, + "sample": { + "_tag": "ByteArray", + "bytearray": "7aedd7bf" + }, + "cborHex": "447aedd7bf", + "cborBytes": [68, 122, 237, 215, 191], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 655, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9858552419157122337" + } + }, + "cborHex": "1b88d09d313f6d9d21", + "cborBytes": [27, 136, 208, 157, 49, 63, 109, 157, 33], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 656, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14019624926553000727" + } + }, + "cborHex": "1bc28fb6976f674b17", + "cborBytes": [27, 194, 143, 182, 151, 111, 103, 75, 23], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 657, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9e7830969433" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2214161022914343486" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11232481535708073931" + } + }, + { + "_tag": "ByteArray", + "bytearray": "18a7772b8711c91e3004073b" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f469e78309694331b1eba47b81e53323e1b9be1ca71ca038fcb4c18a7772b8711c91e3004073b80ff", + "cborBytes": [ + 159, 70, 158, 120, 48, 150, 148, 51, 27, 30, 186, 71, 184, 30, 83, 50, 62, 27, 155, 225, 202, 113, 202, 3, 143, + 203, 76, 24, 167, 119, 43, 135, 17, 201, 30, 48, 4, 7, 59, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 658, + "sample": { + "_tag": "ByteArray", + "bytearray": "f740" + }, + "cborHex": "42f740", + "cborBytes": [66, 247, 64], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 659, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1962034659577222220" + } + }, + "cborHex": "1b1b3a8c20a91ad44c", + "cborBytes": [27, 27, 58, 140, 32, 169, 26, 212, 76], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 660, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4755560811030319552" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7902146378817363581" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17425955561328276421" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb7989176a8d414d" + } + } + ] + }, + "cborHex": "bf1b41ff255c913b11c01b6daa1043a08c5e7d1bf1d56e41a0b6f3c548eb7989176a8d414dff", + "cborBytes": [ + 191, 27, 65, 255, 37, 92, 145, 59, 17, 192, 27, 109, 170, 16, 67, 160, 140, 94, 125, 27, 241, 213, 110, 65, 160, + 182, 243, 197, 72, 235, 121, 137, 23, 106, 141, 65, 77, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 661, + "sample": { + "_tag": "ByteArray", + "bytearray": "af4f96d81ad6c896f6" + }, + "cborHex": "49af4f96d81ad6c896f6", + "cborBytes": [73, 175, 79, 150, 216, 26, 214, 200, 150, 246], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 662, + "sample": { + "_tag": "ByteArray", + "bytearray": "3118c22b48087ade" + }, + "cborHex": "483118c22b48087ade", + "cborBytes": [72, 49, 24, 194, 43, 72, 8, 122, 222], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 663, + "sample": { + "_tag": "ByteArray", + "bytearray": "bbec315e17a2" + }, + "cborHex": "46bbec315e17a2", + "cborBytes": [70, 187, 236, 49, 94, 23, 162], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 664, + "sample": { + "_tag": "ByteArray", + "bytearray": "9688bc" + }, + "cborHex": "439688bc", + "cborBytes": [67, 150, 136, 188], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 665, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17707906700424578363" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "514d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10976101534144108620" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e23c750609c125cec8b2" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "263525381908842297" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5581" + }, + { + "_tag": "ByteArray", + "bytearray": "b67094c4b0c4375b1390" + }, + { + "_tag": "ByteArray", + "bytearray": "0cde754bf8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5051264631956690071" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7bd9505936e7c447f983" + } + ] + }, + "cborHex": "9fd8669f1bf5bf1f52d291053b9f42514d1b9852f2310147984c4ae23c750609c125cec8b29f1b03a83af049f9c7394255814ab67094c4b0c4375b1390450cde754bf81b4619b26b8645d497ffffff4a7bd9505936e7c447f983ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 245, 191, 31, 82, 210, 145, 5, 59, 159, 66, 81, 77, 27, 152, 82, 242, 49, 1, 71, 152, 76, + 74, 226, 60, 117, 6, 9, 193, 37, 206, 200, 178, 159, 27, 3, 168, 58, 240, 73, 249, 199, 57, 66, 85, 129, 74, 182, + 112, 148, 196, 176, 196, 55, 91, 19, 144, 69, 12, 222, 117, 75, 248, 27, 70, 25, 178, 107, 134, 69, 212, 151, 255, + 255, 255, 74, 123, 217, 80, 89, 54, 231, 196, 71, 249, 131, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 666, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "988145576693674067" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16329103558938433401" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17070907448266623215" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14704069351146369877" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8041772884116166304" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1184581919719240078" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1912702482340979652" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3239810136925787399" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf53ca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10058909352834146257" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "315ebf659cb825" + }, + { + "_tag": "ByteArray", + "bytearray": "8a78bac1491d66cb87a307" + }, + { + "_tag": "ByteArray", + "bytearray": "1b5befb9a0a3ec" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2341723568485719782" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10317594666742972178" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8633447936389798516" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12104205513232156314" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12449546558147883383" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12704293744037953034" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13594816214869089946" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10582317282259658429" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0db6992aa5333053d8669f1be29ca12beb1797799f1bece80be0ef8088ef1bcc0f592b5bc9b3551b6f9a1dd4ba1cd6a0ffff1b10707afad437318e1b1a8b48c614f123c41b2cf61e277f2bd50743bf53ca1b8b986cc313889fd19f47315ebf659cb8254b8a78bac1491d66cb87a307471b5befb9a0a3ec1b207f792db5c05ee6ff1b8f2f75af37adff12d8669f1b77d02b27fb57da749f410fffff1ba7fac6c89087069abf1bacc5aca2551771771bb04eb7d997997e0a1bbcaa7d51a9fe1e9a1b92dbf1802d9066bdffff", + "cborBytes": [ + 191, 27, 13, 182, 153, 42, 165, 51, 48, 83, 216, 102, 159, 27, 226, 156, 161, 43, 235, 23, 151, 121, 159, 27, 236, + 232, 11, 224, 239, 128, 136, 239, 27, 204, 15, 89, 43, 91, 201, 179, 85, 27, 111, 154, 29, 212, 186, 28, 214, 160, + 255, 255, 27, 16, 112, 122, 250, 212, 55, 49, 142, 27, 26, 139, 72, 198, 20, 241, 35, 196, 27, 44, 246, 30, 39, + 127, 43, 213, 7, 67, 191, 83, 202, 27, 139, 152, 108, 195, 19, 136, 159, 209, 159, 71, 49, 94, 191, 101, 156, 184, + 37, 75, 138, 120, 186, 193, 73, 29, 102, 203, 135, 163, 7, 71, 27, 91, 239, 185, 160, 163, 236, 27, 32, 127, 121, + 45, 181, 192, 94, 230, 255, 27, 143, 47, 117, 175, 55, 173, 255, 18, 216, 102, 159, 27, 119, 208, 43, 39, 251, 87, + 218, 116, 159, 65, 15, 255, 255, 27, 167, 250, 198, 200, 144, 135, 6, 154, 191, 27, 172, 197, 172, 162, 85, 23, + 113, 119, 27, 176, 78, 183, 217, 151, 153, 126, 10, 27, 188, 170, 125, 81, 169, 254, 30, 154, 27, 146, 219, 241, + 128, 45, 144, 102, 189, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 667, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10097004157062923952" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12385158485352714765" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62fe" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "936424705802583820" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7363675592191229715" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2914338786655720394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13240482197967000140" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3930967999912277522" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13744726957419534801" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5829795378205815612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "178004088825069307" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10622991500636713133" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15756085447891895019" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b8c1fc3c8dd60c6b09fd8799f9f1babe0ec05e65d120d4262feffd8669f1b0cfed94efc433f0c9f1b663107efc9c5bf13ffffbf1b2871cfaf85c1d3ca1bb7bfa46870b4d24c1b368d9a919a32f6121bbebf145857ba19d11b50e79802472bf33c1b027865c692fc3efb1b936c727c9f71f0ad1bdaa8dc3c4c4c42ebffffffff", + "cborBytes": [ + 216, 102, 159, 27, 140, 31, 195, 200, 221, 96, 198, 176, 159, 216, 121, 159, 159, 27, 171, 224, 236, 5, 230, 93, + 18, 13, 66, 98, 254, 255, 216, 102, 159, 27, 12, 254, 217, 78, 252, 67, 63, 12, 159, 27, 102, 49, 7, 239, 201, + 197, 191, 19, 255, 255, 191, 27, 40, 113, 207, 175, 133, 193, 211, 202, 27, 183, 191, 164, 104, 112, 180, 210, 76, + 27, 54, 141, 154, 145, 154, 50, 246, 18, 27, 190, 191, 20, 88, 87, 186, 25, 209, 27, 80, 231, 152, 2, 71, 43, 243, + 60, 27, 2, 120, 101, 198, 146, 252, 62, 251, 27, 147, 108, 114, 124, 159, 113, 240, 173, 27, 218, 168, 220, 60, + 76, 76, 66, 235, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 668, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d1aab93bbf52155b84cfe5e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4063629969447368709" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "524a0dbdd47206" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54a4e9fc33903d3ee2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10659980922862827792" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cbcff0e120d4996" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "349550853607181058" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1418" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17162811031360752471" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ecd42" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17203902205112195531" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11999078938822930676" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17469648506877003050" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a7a382c" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c2d1aab93bbf52155b84cfe5e1b3864e9ed5b8ab80547524a0dbdd47206804954a4e9fc33903d3ee21b93efdc2b9badf910489cbcff0e120d4996bf1b04d9daa63c30cb024214181bee2e8db35769cb57432ecd421beec089e7c64599cb1ba6854ab8946970f41bf270a8c24356452a446a7a382cffff", + "cborBytes": [ + 191, 76, 45, 26, 171, 147, 187, 245, 33, 85, 184, 76, 254, 94, 27, 56, 100, 233, 237, 91, 138, 184, 5, 71, 82, 74, + 13, 189, 212, 114, 6, 128, 73, 84, 164, 233, 252, 51, 144, 61, 62, 226, 27, 147, 239, 220, 43, 155, 173, 249, 16, + 72, 156, 188, 255, 14, 18, 13, 73, 150, 191, 27, 4, 217, 218, 166, 60, 48, 203, 2, 66, 20, 24, 27, 238, 46, 141, + 179, 87, 105, 203, 87, 67, 46, 205, 66, 27, 238, 192, 137, 231, 198, 69, 153, 203, 27, 166, 133, 74, 184, 148, + 105, 112, 244, 27, 242, 112, 168, 194, 67, 86, 69, 42, 68, 106, 122, 56, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 669, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a0bf2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1724047469015214597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d3e201f" + }, + { + "_tag": "ByteArray", + "bytearray": "2a4c93908cf346fd9f" + }, + { + "_tag": "ByteArray", + "bytearray": "6c00a455fc8f085f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a45ab883269ea77770cbd9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec661e8e825a876ad224fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd0928d8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18161936209986250675" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4610754603294067994" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "98177907374155310" + } + } + ] + } + } + ] + }, + "cborHex": "bf436a0bf2d8669f1b17ed0c09e6902a059f442d3e201f492a4c93908cf346fd9f486c00a455fc8f085fffff4ba45ab883269ea77770cbd94bec661e8e825a876ad224fb44fd0928d8d8669f1bfc0c28c1c588e7b39f1b3ffcb0e203d70d1a1b015ccc495dd3e62effffff", + "cborBytes": [ + 191, 67, 106, 11, 242, 216, 102, 159, 27, 23, 237, 12, 9, 230, 144, 42, 5, 159, 68, 45, 62, 32, 31, 73, 42, 76, + 147, 144, 140, 243, 70, 253, 159, 72, 108, 0, 164, 85, 252, 143, 8, 95, 255, 255, 75, 164, 90, 184, 131, 38, 158, + 167, 119, 112, 203, 217, 75, 236, 102, 30, 142, 130, 90, 135, 106, 210, 36, 251, 68, 253, 9, 40, 216, 216, 102, + 159, 27, 252, 12, 40, 193, 197, 136, 231, 179, 159, 27, 63, 252, 176, 226, 3, 215, 13, 26, 27, 1, 92, 204, 73, 93, + 211, 230, 46, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 670, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14711141369159851409" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14240355970563169882" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11982943790745489898" + } + }, + { + "_tag": "ByteArray", + "bytearray": "30d151c3" + } + ] + }, + "cborHex": "9fbf1bcc287921dd539d911bc59fe84e7c87de5aff1ba64bf7e3aadb91ea4430d151c3ff", + "cborBytes": [ + 159, 191, 27, 204, 40, 121, 33, 221, 83, 157, 145, 27, 197, 159, 232, 78, 124, 135, 222, 90, 255, 27, 166, 75, + 247, 227, 170, 219, 145, 234, 68, 48, 209, 81, 195, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 671, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1224253741723932291" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f90ddb" + }, + { + "_tag": "ByteArray", + "bytearray": "e578de679a080dfd31" + }, + { + "_tag": "ByteArray", + "bytearray": "469bbdba1e9ace0f7f860644" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11226400856477590787" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d0f0ff" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5637509320527754762" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7679581372935378117" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8801322754495037435" + } + } + ] + }, + "cborHex": "9f1b10fd6c4aae65d6839f9f43f90ddb49e578de679a080dfd314c469bbdba1e9ace0f7f8606441b9bcc3019547ce50343d0f0ffffffd8669f1b4e3c74dbb402b60a9f1b6a935a920d8514c5ffff1b7a249469ef3d3ffbff", + "cborBytes": [ + 159, 27, 16, 253, 108, 74, 174, 101, 214, 131, 159, 159, 67, 249, 13, 219, 73, 229, 120, 222, 103, 154, 8, 13, + 253, 49, 76, 70, 155, 189, 186, 30, 154, 206, 15, 127, 134, 6, 68, 27, 155, 204, 48, 25, 84, 124, 229, 3, 67, 208, + 240, 255, 255, 255, 216, 102, 159, 27, 78, 60, 116, 219, 180, 2, 182, 10, 159, 27, 106, 147, 90, 146, 13, 133, 20, + 197, 255, 255, 27, 122, 36, 148, 105, 239, 61, 63, 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 672, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [] + }, + "cborHex": "d8669f1bffffffffffffffed80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 673, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "169f8988d8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7986376684242533766" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11021816525620560805" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7562265b571" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16840686651617581499" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68cba7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17080436740367017013" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17673141331451920351" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1360415187615611383" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15700643506085656037" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13496467180327187098" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1895554924001547972" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17281467404363973645" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10334073289493869927" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "661eb2a34cfd169e65217270" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7893837901287106368" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14520456720672385536" + } + }, + { + "_tag": "ByteArray", + "bytearray": "57135b93e42cd3de0d" + }, + { + "_tag": "ByteArray", + "bytearray": "94044ad61c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5047003142303346760" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1296137987127912773" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17553325079604969651" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "89fb93" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "060054f8f106" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f97d02cbb80304031d1e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3759cf4b2c5625" + } + } + ] + } + ] + }, + "cborHex": "9f10bf1045169f8988d81b6ed54f47dabcfd861bffffffffffffffee1b98f55bbbe524c3a546a7562265b5711be9b62348ab5419bb4368cba71bffffffffffffffeb1bed09e6b8261b64351bfffffffffffffff21bf5439c6796773fdfffd8669f1b12e12a67c4dff9f79fd8669f1bd9e3e4154d4775e59f1bbb4d1564a61eb29a1b1a4e5d29095ad6c4ffffffffd8669f1bffffffffffffffee9fd8669f1befd41b0b0a9b440d80ff9f1b8f6a00e78f227567ff4c661eb2a34cfd169e65217270d8669f1b6d8c8bbf74bba7409f1bc98306746c1c6a004957135b93e42cd3de0d4594044ad61c1b460a8e9e25457048ffffd8669f1b11fccea1cea629459f1bf399f0288ccf40b3ffffffffbf4389fb9346060054f8f1064af97d02cbb80304031d1e473759cf4b2c5625ffff", + "cborBytes": [ + 159, 16, 191, 16, 69, 22, 159, 137, 136, 216, 27, 110, 213, 79, 71, 218, 188, 253, 134, 27, 255, 255, 255, 255, + 255, 255, 255, 238, 27, 152, 245, 91, 187, 229, 36, 195, 165, 70, 167, 86, 34, 101, 181, 113, 27, 233, 182, 35, + 72, 171, 84, 25, 187, 67, 104, 203, 167, 27, 255, 255, 255, 255, 255, 255, 255, 235, 27, 237, 9, 230, 184, 38, 27, + 100, 53, 27, 255, 255, 255, 255, 255, 255, 255, 242, 27, 245, 67, 156, 103, 150, 119, 63, 223, 255, 216, 102, 159, + 27, 18, 225, 42, 103, 196, 223, 249, 247, 159, 216, 102, 159, 27, 217, 227, 228, 21, 77, 71, 117, 229, 159, 27, + 187, 77, 21, 100, 166, 30, 178, 154, 27, 26, 78, 93, 41, 9, 90, 214, 196, 255, 255, 255, 255, 216, 102, 159, 27, + 255, 255, 255, 255, 255, 255, 255, 238, 159, 216, 102, 159, 27, 239, 212, 27, 11, 10, 155, 68, 13, 128, 255, 159, + 27, 143, 106, 0, 231, 143, 34, 117, 103, 255, 76, 102, 30, 178, 163, 76, 253, 22, 158, 101, 33, 114, 112, 216, + 102, 159, 27, 109, 140, 139, 191, 116, 187, 167, 64, 159, 27, 201, 131, 6, 116, 108, 28, 106, 0, 73, 87, 19, 91, + 147, 228, 44, 211, 222, 13, 69, 148, 4, 74, 214, 28, 27, 70, 10, 142, 158, 37, 69, 112, 72, 255, 255, 216, 102, + 159, 27, 17, 252, 206, 161, 206, 166, 41, 69, 159, 27, 243, 153, 240, 40, 140, 207, 64, 179, 255, 255, 255, 255, + 191, 67, 137, 251, 147, 70, 6, 0, 84, 248, 241, 6, 74, 249, 125, 2, 203, 184, 3, 4, 3, 29, 30, 71, 55, 89, 207, + 75, 44, 86, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 674, + "sample": { + "_tag": "ByteArray", + "bytearray": "860e" + }, + "cborHex": "42860e", + "cborBytes": [66, 134, 14], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 675, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "57" + }, + { + "_tag": "ByteArray", + "bytearray": "d07df2653e" + }, + { + "_tag": "ByteArray", + "bytearray": "cbc54f0ca0" + }, + { + "_tag": "ByteArray", + "bytearray": "43" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13830483572792004677" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "55e37b96a5a1d143992120" + }, + { + "_tag": "ByteArray", + "bytearray": "c44c13b5b29ba929426ddd53" + }, + { + "_tag": "ByteArray", + "bytearray": "7d6929855a87" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18261489150281177180" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6e43eb1f61" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8653707354709440820" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11799408024516657567" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0a7156db" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1643657003583198562" + } + }, + { + "_tag": "ByteArray", + "bytearray": "24f676" + }, + { + "_tag": "ByteArray", + "bytearray": "2ba2decdc54940b219061b0c" + }, + { + "_tag": "ByteArray", + "bytearray": "b1d0d301f76b8c155bba" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5482265198134959123" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14537416721719911834" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bfcc3c" + }, + { + "_tag": "ByteArray", + "bytearray": "3b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14156010710914588352" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10821130445309630139" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4885104788369551709" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2177264639640225993" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10127002481315264168" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3352547819720138232" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12844415190640182680" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "364822015184271923" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "231803447734599121" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18290393326754804551" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9f9fa09f415745d07df2653e45cbc54f0ca04143ffd8669f1bbfefbf884c2490459f4b55e37b96a5a1d1439921204cc44c13b5b29ba929426ddd53467d6929855a871bfd6dd7a0f028d85cffff9f456e43eb1f611b781824fd63a43934ffd8669f1ba3bfeb151535819f9f440a7156db1b16cf71561728d5624324f6764c2ba2decdc54940b219061b0c4ab1d0d301f76b8c155bbaffffffd8669f1b4c14eb26c3521c139fd8669f1bc9bf477c61f0659a9f43bfcc3c413b1bc47440bd64b05ec01b962c60cea4d856bb1b43cb60ec3153b15dffff9f1b1e3732a773c648c91b8c8a571a024bb6a81b2e86a47abeedddf81bb240879031bd4598ffd8669f1b05101bb09d4cfa3380ffd8669f1b03378801efee7dd180ff1bfdd487d2f3653347ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 159, 160, 159, 65, 87, 69, 208, 125, 242, 101, 62, + 69, 203, 197, 79, 12, 160, 65, 67, 255, 216, 102, 159, 27, 191, 239, 191, 136, 76, 36, 144, 69, 159, 75, 85, 227, + 123, 150, 165, 161, 209, 67, 153, 33, 32, 76, 196, 76, 19, 181, 178, 155, 169, 41, 66, 109, 221, 83, 70, 125, 105, + 41, 133, 90, 135, 27, 253, 109, 215, 160, 240, 40, 216, 92, 255, 255, 159, 69, 110, 67, 235, 31, 97, 27, 120, 24, + 36, 253, 99, 164, 57, 52, 255, 216, 102, 159, 27, 163, 191, 235, 21, 21, 53, 129, 159, 159, 68, 10, 113, 86, 219, + 27, 22, 207, 113, 86, 23, 40, 213, 98, 67, 36, 246, 118, 76, 43, 162, 222, 205, 197, 73, 64, 178, 25, 6, 27, 12, + 74, 177, 208, 211, 1, 247, 107, 140, 21, 91, 186, 255, 255, 255, 216, 102, 159, 27, 76, 20, 235, 38, 195, 82, 28, + 19, 159, 216, 102, 159, 27, 201, 191, 71, 124, 97, 240, 101, 154, 159, 67, 191, 204, 60, 65, 59, 27, 196, 116, 64, + 189, 100, 176, 94, 192, 27, 150, 44, 96, 206, 164, 216, 86, 187, 27, 67, 203, 96, 236, 49, 83, 177, 93, 255, 255, + 159, 27, 30, 55, 50, 167, 115, 198, 72, 201, 27, 140, 138, 87, 26, 2, 75, 182, 168, 27, 46, 134, 164, 122, 190, + 237, 221, 248, 27, 178, 64, 135, 144, 49, 189, 69, 152, 255, 216, 102, 159, 27, 5, 16, 27, 176, 157, 76, 250, 51, + 128, 255, 216, 102, 159, 27, 3, 55, 136, 1, 239, 238, 125, 209, 128, 255, 27, 253, 212, 135, 210, 243, 101, 51, + 71, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 676, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9886570040843202062" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b174a9f945d8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11494577030192702014" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b423613525f6" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3081959954055915152" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eaa3ce89c0e577f0ae72b199" + }, + { + "_tag": "ByteArray", + "bytearray": "194ec34c318d43" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11464294025018182752" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14291190864306038793" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "22bec9defbf3cd586401db3e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1161870788790786019" + } + }, + { + "_tag": "ByteArray", + "bytearray": "317f4c1339527f5601ef" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13619929402488516549" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1af3e6abd89fdb068a053" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8a40ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12056647322950775401" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f48b41" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17435198848804593456" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7324409283716067652" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb886d2fef04fa77f39428" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2000560992919157924" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29fbf1b89342712237a6e0e46b174a9f945d81b9f84f0e87800223e46b423613525f6ffd8669f1b2ac5523fd17b66909fa09f4ceaa3ce89c0e577f0ae72b19947194ec34c318d43ffffffd8669f1b9f195aace1d78c609fa0d8669f1bc654825f8444e8099f4c22bec9defbf3cd586401db3effff9f1b101fcb5398c717e34a317f4c1339527f5601ef1bbd03b5a14d39efc54bc1af3e6abd89fdb068a053ff9f438a40ca1ba751d0dc82a53269ff9f43f48b411bf1f644fa334c1f301b65a5876fe97831444bcb886d2fef04fa77f39428ffffff1b1bc36b9fa672fca4ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 191, 27, 137, 52, 39, 18, 35, 122, 110, 14, 70, + 177, 116, 169, 249, 69, 216, 27, 159, 132, 240, 232, 120, 0, 34, 62, 70, 180, 35, 97, 53, 37, 246, 255, 216, 102, + 159, 27, 42, 197, 82, 63, 209, 123, 102, 144, 159, 160, 159, 76, 234, 163, 206, 137, 192, 229, 119, 240, 174, 114, + 177, 153, 71, 25, 78, 195, 76, 49, 141, 67, 255, 255, 255, 216, 102, 159, 27, 159, 25, 90, 172, 225, 215, 140, 96, + 159, 160, 216, 102, 159, 27, 198, 84, 130, 95, 132, 68, 232, 9, 159, 76, 34, 190, 201, 222, 251, 243, 205, 88, + 100, 1, 219, 62, 255, 255, 159, 27, 16, 31, 203, 83, 152, 199, 23, 227, 74, 49, 127, 76, 19, 57, 82, 127, 86, 1, + 239, 27, 189, 3, 181, 161, 77, 57, 239, 197, 75, 193, 175, 62, 106, 189, 137, 253, 176, 104, 160, 83, 255, 159, + 67, 138, 64, 202, 27, 167, 81, 208, 220, 130, 165, 50, 105, 255, 159, 67, 244, 139, 65, 27, 241, 246, 68, 250, 51, + 76, 31, 48, 27, 101, 165, 135, 111, 233, 120, 49, 68, 75, 203, 136, 109, 47, 239, 4, 250, 119, 243, 148, 40, 255, + 255, 255, 27, 27, 195, 107, 159, 166, 114, 252, 164, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 677, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "544271156059979117" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1347133715973269100" + } + } + } + ] + }, + "cborHex": "bf1b078da3bb96723d6d1b12b1fafa2d89e66cff", + "cborBytes": [191, 27, 7, 141, 163, 187, 150, 114, 61, 109, 27, 18, 177, 250, 250, 45, 137, 230, 108, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 678, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d6fa72a2829e5d4a07c3e395" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "84e609" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5900071114267993460" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11960518076059420070" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11786456213084279441" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d7f5c" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11031558702637658077" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99a34aecada252be30fc99" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16654296693492675513" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4871f3ea667fbf5bab31" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17207335389532493709" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12834889220325029115" + }, + "fields": [] + } + ] + }, + "cborHex": "9f4cd6fa72a2829e5d4a07c3e3959f4384e609d8669f1b51e1436b237ca5749f1ba5fc4bd2152905a6419e1ba391e77a7d959291430d7f5cffffffbf1b9917f8313d962fdd4b99a34aecada252be30fc991be71ff29abf97f3b94a4871f3ea667fbf5bab31ffd8669f1beeccbc5e5017978d80ffd8669f1bb21eafbe64f6b4fb80ffff", + "cborBytes": [ + 159, 76, 214, 250, 114, 162, 130, 158, 93, 74, 7, 195, 227, 149, 159, 67, 132, 230, 9, 216, 102, 159, 27, 81, 225, + 67, 107, 35, 124, 165, 116, 159, 27, 165, 252, 75, 210, 21, 41, 5, 166, 65, 158, 27, 163, 145, 231, 122, 125, 149, + 146, 145, 67, 13, 127, 92, 255, 255, 255, 191, 27, 153, 23, 248, 49, 61, 150, 47, 221, 75, 153, 163, 74, 236, 173, + 162, 82, 190, 48, 252, 153, 27, 231, 31, 242, 154, 191, 151, 243, 185, 74, 72, 113, 243, 234, 102, 127, 191, 91, + 171, 49, 255, 216, 102, 159, 27, 238, 204, 188, 94, 80, 23, 151, 141, 128, 255, 216, 102, 159, 27, 178, 30, 175, + 190, 100, 246, 180, 251, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 679, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17884190434224625477" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15633071600986357754" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6940074254003832" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3493c29909d2f8" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9fd8669f1bf83168720765d7459fd8669f1bd8f3d3cb2509fffa9f1b0018a7f5f49fee78473493c29909d2f8ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 216, 102, 159, 27, 248, 49, 104, 114, 7, 101, 215, + 69, 159, 216, 102, 159, 27, 216, 243, 211, 203, 37, 9, 255, 250, 159, 27, 0, 24, 167, 245, 244, 159, 238, 120, 71, + 52, 147, 194, 153, 9, 210, 248, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 680, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10159511001771583837" + } + }, + "cborHex": "1b8cfdd56dc044a95d", + "cborBytes": [27, 140, 253, 213, 109, 192, 68, 169, 93], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 681, + "sample": { + "_tag": "ByteArray", + "bytearray": "61" + }, + "cborHex": "4161", + "cborBytes": [65, 97], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 682, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8e9de33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ac7b0dadd0595b268" + } + } + ] + } + ] + }, + "cborHex": "d905099fbf44e8e9de33496ac7b0dadd0595b268ffff", + "cborBytes": [217, 5, 9, 159, 191, 68, 232, 233, 222, 51, 73, 106, 199, 176, 218, 221, 5, 149, 178, 104, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 683, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11526835346196075153" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7840587287086125312" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "60266404561259497" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13166200193381007868" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3085936253108684434" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b811ab639e44ac1bc375" + }, + { + "_tag": "ByteArray", + "bytearray": "a3ca182df082cb78" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b9ff78bacf26f12919fa01b6ccf5c98ad365100d8669f1b00d61bf9c3c38be99f1bb6b7bd51802781fcffffd8669f1b2ad372ac160b069280ffffffa04ab811ab639e44ac1bc37548a3ca182df082cb7880ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 159, 247, 139, 172, 242, 111, 18, 145, 159, 160, 27, 108, 207, 92, 152, 173, 54, 81, 0, + 216, 102, 159, 27, 0, 214, 27, 249, 195, 195, 139, 233, 159, 27, 182, 183, 189, 81, 128, 39, 129, 252, 255, 255, + 216, 102, 159, 27, 42, 211, 114, 172, 22, 11, 6, 146, 128, 255, 255, 255, 160, 74, 184, 17, 171, 99, 158, 68, 172, + 27, 195, 117, 72, 163, 202, 24, 45, 240, 130, 203, 120, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 684, + "sample": { + "_tag": "ByteArray", + "bytearray": "05030205" + }, + "cborHex": "4405030205", + "cborBytes": [68, 5, 3, 2, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 685, + "sample": { + "_tag": "ByteArray", + "bytearray": "1d12" + }, + "cborHex": "421d12", + "cborBytes": [66, 29, 18], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 686, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c50af0344368" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2239977250614002811" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13977740042909858019" + } + }, + { + "_tag": "ByteArray", + "bytearray": "93c592b6ea" + } + ] + } + ] + } + ] + }, + "cborHex": "d905069f9f9f46c50af03443681b1f15ff7107cdc47b1bc1fae883046538e34593c592b6eaffffff", + "cborBytes": [ + 217, 5, 6, 159, 159, 159, 70, 197, 10, 240, 52, 67, 104, 27, 31, 21, 255, 113, 7, 205, 196, 123, 27, 193, 250, + 232, 131, 4, 101, 56, 227, 69, 147, 197, 146, 182, 234, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 687, + "sample": { + "_tag": "ByteArray", + "bytearray": "d8973b" + }, + "cborHex": "43d8973b", + "cborBytes": [67, 216, 151, 59], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 688, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + }, + "cborHex": "d905029f1bfffffffffffffff611ff", + "cborBytes": [217, 5, 2, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 17, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 689, + "sample": { + "_tag": "ByteArray", + "bytearray": "9083d0" + }, + "cborHex": "439083d0", + "cborBytes": [67, 144, 131, 208], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 690, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adf8037fa9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2337711055356395921" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12303168973061244994" + } + }, + { + "_tag": "ByteArray", + "bytearray": "40e31147" + } + ] + }, + "cborHex": "d9050a9fbf1bfffffffffffffffe45adf8037fa9ffd8669f1b207137d1b205819180ff1baabda2fefaec48424440e31147ff", + "cborBytes": [ + 217, 5, 10, 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 254, 69, 173, 248, 3, 127, 169, 255, 216, 102, 159, + 27, 32, 113, 55, 209, 178, 5, 129, 145, 128, 255, 27, 170, 189, 162, 254, 250, 236, 72, 66, 68, 64, 227, 17, 71, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 691, + "sample": { + "_tag": "ByteArray", + "bytearray": "c03c16535e275b0e" + }, + "cborHex": "48c03c16535e275b0e", + "cborBytes": [72, 192, 60, 22, 83, 94, 39, 91, 14], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 692, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15499043870574112257" + } + }, + "cborHex": "1bd717aa4867c3ee01", + "cborBytes": [27, 215, 23, 170, 72, 103, 195, 238, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 693, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03c2" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a9f08dbbd476" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6762961544378788036" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7519682280143360395" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5093369852766537290" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12509785056622559648" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7183215136799574616" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11117595379686262908" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14226751542846728841" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d01758b5a0b63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15481193838709981827" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad48ee60d3b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac4e2d53d567afcfc8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7bce38cca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "108011455347698372" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "457390208616826706" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "bbb969d14fee55f6b9" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f53c042904a7d7a7642" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11687829186946458484" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f4203c29f46a9f08dbbd4761b5ddaddb1625328c41b685b47315bbe918bffd8669f1b46af48e52fd5464a9f1bad9baf3ab47a41a01b63afe81bce25ca581b9a49a21822b9487c1bc56f9326d31eaa89ffffbf475d01758b5a0b631bd6d83fc5ff46428346ad48ee60d3b549ac4e2d53d567afcfc845c7bce38cca1b017fbbd8abac2ac4ffffd8669f1b0658f9f8ac5907529f808049bbb969d14fee55f6b9ffffbf4a8f53c042904a7d7a76421ba23382b88362e374ffff", + "cborBytes": [ + 159, 159, 66, 3, 194, 159, 70, 169, 240, 141, 187, 212, 118, 27, 93, 218, 221, 177, 98, 83, 40, 196, 27, 104, 91, + 71, 49, 91, 190, 145, 139, 255, 216, 102, 159, 27, 70, 175, 72, 229, 47, 213, 70, 74, 159, 27, 173, 155, 175, 58, + 180, 122, 65, 160, 27, 99, 175, 232, 27, 206, 37, 202, 88, 27, 154, 73, 162, 24, 34, 185, 72, 124, 27, 197, 111, + 147, 38, 211, 30, 170, 137, 255, 255, 191, 71, 93, 1, 117, 139, 90, 11, 99, 27, 214, 216, 63, 197, 255, 70, 66, + 131, 70, 173, 72, 238, 96, 211, 181, 73, 172, 78, 45, 83, 213, 103, 175, 207, 200, 69, 199, 188, 227, 140, 202, + 27, 1, 127, 187, 216, 171, 172, 42, 196, 255, 255, 216, 102, 159, 27, 6, 88, 249, 248, 172, 89, 7, 82, 159, 128, + 128, 73, 187, 185, 105, 209, 79, 238, 85, 246, 185, 255, 255, 191, 74, 143, 83, 192, 66, 144, 74, 125, 122, 118, + 66, 27, 162, 51, 130, 184, 131, 98, 227, 116, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 694, + "sample": { + "_tag": "ByteArray", + "bytearray": "6a6c9b208ebc3dac8504aff4" + }, + "cborHex": "4c6a6c9b208ebc3dac8504aff4", + "cborBytes": [76, 106, 108, 155, 32, 142, 188, 61, 172, 133, 4, 175, 244], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 695, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9f90546036603" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9c0611c" + } + } + ] + }, + "cborHex": "bf47f9f9054603660344d9c0611cff", + "cborBytes": [191, 71, 249, 249, 5, 70, 3, 102, 3, 68, 217, 192, 97, 28, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 696, + "sample": { + "_tag": "ByteArray", + "bytearray": "7ac6877d34a6156080" + }, + "cborHex": "497ac6877d34a6156080", + "cborBytes": [73, 122, 198, 135, 125, 52, 166, 21, 96, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 697, + "sample": { + "_tag": "ByteArray", + "bytearray": "d08c1639aed0f24fbd64" + }, + "cborHex": "4ad08c1639aed0f24fbd64", + "cborBytes": [74, 208, 140, 22, 57, 174, 208, 242, 79, 189, 100], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 698, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15738243810092987504" + } + }, + "cborHex": "1bda69795c49153470", + "cborBytes": [27, 218, 105, 121, 92, 73, 21, 52, 112], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 699, + "sample": { + "_tag": "ByteArray", + "bytearray": "023a4d00" + }, + "cborHex": "44023a4d00", + "cborBytes": [68, 2, 58, 77, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 700, + "sample": { + "_tag": "ByteArray", + "bytearray": "464641b5927877" + }, + "cborHex": "47464641b5927877", + "cborBytes": [71, 70, 70, 65, 181, 146, 120, 119], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 701, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [] + }, + "cborHex": "d87c80", + "cborBytes": [216, 124, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 702, + "sample": { + "_tag": "ByteArray", + "bytearray": "ec55812527" + }, + "cborHex": "45ec55812527", + "cborBytes": [69, 236, 85, 129, 37, 39], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 703, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d1f0e7d8d758f7c8b5d6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0745cc4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "baa4ebbbd500fe9e34dfb415" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17958193905305313539" + } + } + } + ] + }, + "cborHex": "bf4b6d1f0e7d8d758f7c8b5d6b44e0745cc44cbaa4ebbbd500fe9e34dfb4151bf9385235d54ee103ff", + "cborBytes": [ + 191, 75, 109, 31, 14, 125, 141, 117, 143, 124, 139, 93, 107, 68, 224, 116, 92, 196, 76, 186, 164, 235, 187, 213, + 0, 254, 158, 52, 223, 180, 21, 27, 249, 56, 82, 53, 213, 78, 225, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 704, + "sample": { + "_tag": "ByteArray", + "bytearray": "d2700e56ab0c" + }, + "cborHex": "46d2700e56ab0c", + "cborBytes": [70, 210, 112, 14, 86, 171, 12], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 705, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3471939744254481751" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ca9072d05d67a0528" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10426212009482722211" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3657345541127747438" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7739606376157009614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8099144025403608437" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "faf82dfe437a2d55fb072503" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e502fa01000703120702" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11292042843367947683" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b302ececd61d95557493ca9072d05d67a0528ffd8669f1b90b158950a211ba39fbf080a101b32c1806467c7376e1b6b689afe302fd6ce1bfffffffffffffff01b7065f0947ae8cd754cfaf82dfe437a2d55fb072503ffd905039f4ae502fa010007031207021bffffffffffffffed1b9cb5652363703da307ffffffff", + "cborBytes": [ + 159, 191, 27, 48, 46, 206, 205, 97, 217, 85, 87, 73, 60, 169, 7, 45, 5, 214, 122, 5, 40, 255, 216, 102, 159, 27, + 144, 177, 88, 149, 10, 33, 27, 163, 159, 191, 8, 10, 16, 27, 50, 193, 128, 100, 103, 199, 55, 110, 27, 107, 104, + 154, 254, 48, 47, 214, 206, 27, 255, 255, 255, 255, 255, 255, 255, 240, 27, 112, 101, 240, 148, 122, 232, 205, + 117, 76, 250, 248, 45, 254, 67, 122, 45, 85, 251, 7, 37, 3, 255, 217, 5, 3, 159, 74, 229, 2, 250, 1, 0, 7, 3, 18, + 7, 2, 27, 255, 255, 255, 255, 255, 255, 255, 237, 27, 156, 181, 101, 35, 99, 112, 61, 163, 7, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 706, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "589f0ac3e20449c9db5825" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdb2f668" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0fa9725b600e37832b57c0fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d760774ea00aba507dd108" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9499457110794597609" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905039f4b589f0ac3e20449c9db58259fbf44bdb2f6684c0fa9725b600e37832b57c0fe4bd760774ea00aba507dd1081b83d4d9e977f874e9ffffff", + "cborBytes": [ + 217, 5, 3, 159, 75, 88, 159, 10, 195, 226, 4, 73, 201, 219, 88, 37, 159, 191, 68, 189, 178, 246, 104, 76, 15, 169, + 114, 91, 96, 14, 55, 131, 43, 87, 192, 254, 75, 215, 96, 119, 78, 160, 10, 186, 80, 125, 209, 8, 27, 131, 212, + 217, 233, 119, 248, 116, 233, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 707, + "sample": { + "_tag": "ByteArray", + "bytearray": "c7d573ded698c8f77af2" + }, + "cborHex": "4ac7d573ded698c8f77af2", + "cborBytes": [74, 199, 213, 115, 222, 214, 152, 200, 247, 122, 242], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 708, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4636022164820869059" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17707818826465469079" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28ed08e1ebcd1655" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d001c4df7bd2ed7bb528e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f7b68" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4064258961086825077" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7731288744906797153" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d01177" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d368fffebbabb94ecf011692" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6665780066540497769" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15560378488017443372" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5985343331578862249" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4a3a32ab224ab091087" + }, + { + "_tag": "ByteArray", + "bytearray": "586ea83ac2ea4cbd" + }, + { + "_tag": "ByteArray", + "bytearray": "cc09c2d48f1b1dee07" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a789cb0115" + } + ] + } + ] + }, + "cborHex": "d8669f1b40567598a0fc3fc39f1bf5becf671272e2979fbf4828ed08e1ebcd16554b0d001c4df7bd2ed7bb528e437f7b684111ff1b386725fde2c74275ffd8669f1b6b4b0e26c02530619f8043d01177804cd368fffebbabb94ecf011692ffff9f1b5c819ba75906ab69d8669f1bd7f191cadce8da2c9f1b5310360c6182daa94ae4a3a32ab224ab09108748586ea83ac2ea4cbd49cc09c2d48f1b1dee07ffffa045a789cb0115ffffff", + "cborBytes": [ + 216, 102, 159, 27, 64, 86, 117, 152, 160, 252, 63, 195, 159, 27, 245, 190, 207, 103, 18, 114, 226, 151, 159, 191, + 72, 40, 237, 8, 225, 235, 205, 22, 85, 75, 13, 0, 28, 77, 247, 189, 46, 215, 187, 82, 142, 67, 127, 123, 104, 65, + 17, 255, 27, 56, 103, 37, 253, 226, 199, 66, 117, 255, 216, 102, 159, 27, 107, 75, 14, 38, 192, 37, 48, 97, 159, + 128, 67, 208, 17, 119, 128, 76, 211, 104, 255, 254, 187, 171, 185, 78, 207, 1, 22, 146, 255, 255, 159, 27, 92, + 129, 155, 167, 89, 6, 171, 105, 216, 102, 159, 27, 215, 241, 145, 202, 220, 232, 218, 44, 159, 27, 83, 16, 54, 12, + 97, 130, 218, 169, 74, 228, 163, 163, 42, 178, 36, 171, 9, 16, 135, 72, 88, 110, 168, 58, 194, 234, 76, 189, 73, + 204, 9, 194, 212, 143, 27, 29, 238, 7, 255, 255, 160, 69, 167, 137, 203, 1, 21, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 709, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f32c5d9541ef3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8447622449969948540" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5017416075298047687" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52ef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9650964192669917216" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79312961a351" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12eed1402abe62171a3e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c43e3a09076ac0f88ca31b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00230ff17697" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e75b322d75f194b4937be13c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10797850356745854001" + } + } + } + ] + } + ] + }, + "cborHex": "d87d9fbf473f32c5d9541ef31b753bfbdc5f12e77c41431b45a171564a7986c74252ef1b85ef1cccdc1ae0204679312961a3514a12eed1402abe62171a3e4bc43e3a09076ac0f88ca31b4600230ff176974ce75b322d75f194b4937be13c1b95d9abb0a3a95c31ffff", + "cborBytes": [ + 216, 125, 159, 191, 71, 63, 50, 197, 217, 84, 30, 243, 27, 117, 59, 251, 220, 95, 18, 231, 124, 65, 67, 27, 69, + 161, 113, 86, 74, 121, 134, 199, 66, 82, 239, 27, 133, 239, 28, 204, 220, 26, 224, 32, 70, 121, 49, 41, 97, 163, + 81, 74, 18, 238, 209, 64, 42, 190, 98, 23, 26, 62, 75, 196, 62, 58, 9, 7, 106, 192, 248, 140, 163, 27, 70, 0, 35, + 15, 241, 118, 151, 76, 231, 91, 50, 45, 117, 241, 148, 180, 147, 123, 225, 60, 27, 149, 217, 171, 176, 163, 169, + 92, 49, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 710, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5182251964124946815" + } + }, + "cborHex": "1b47eb0eb4623ce17f", + "cborBytes": [27, 71, 235, 14, 180, 98, 60, 225, 127], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 711, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4a28123e0b802cd18f116fe6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7209195391145098752" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16572766981911730100" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18393612408385470570" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16068110372366037133" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16282202695334331873" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f9f9f4c4a28123e0b802cd18f116fe61b640c350325963e001be5fe4bc3862bd7b4ffd8669f1bff433d082a08806a80ff1bdefd65404ca5b08da0d8669f1be1f60115a84f85e180ffffff", + "cborBytes": [ + 159, 159, 159, 76, 74, 40, 18, 62, 11, 128, 44, 209, 143, 17, 111, 230, 27, 100, 12, 53, 3, 37, 150, 62, 0, 27, + 229, 254, 75, 195, 134, 43, 215, 180, 255, 216, 102, 159, 27, 255, 67, 61, 8, 42, 8, 128, 106, 128, 255, 27, 222, + 253, 101, 64, 76, 165, 176, 141, 160, 216, 102, 159, 27, 225, 246, 1, 21, 168, 79, 133, 225, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 712, + "sample": { + "_tag": "ByteArray", + "bytearray": "16debd92a013cf" + }, + "cborHex": "4716debd92a013cf", + "cborBytes": [71, 22, 222, 189, 146, 160, 19, 207], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 713, + "sample": { + "_tag": "ByteArray", + "bytearray": "03dd4dc263211b76e3" + }, + "cborHex": "4903dd4dc263211b76e3", + "cborBytes": [73, 3, 221, 77, 194, 99, 33, 27, 118, 227], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 714, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16302290420814971037" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11364749522230960932" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fb836f23410e0f37" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5775576227902678821" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13745368246727210347" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5b794ec946a3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7874019414328160051" + } + } + ] + }, + "cborHex": "d8669f1be23d5ec3b5ee009d9f9fbf41da1b9db7b37a39dde324ff48fb836f23410e0f371b5026f7fa9d546725ffd8669f1bbec15b98251bf56b80ff465b794ec946a31b6d4622f0618f2f33ffff", + "cborBytes": [ + 216, 102, 159, 27, 226, 61, 94, 195, 181, 238, 0, 157, 159, 159, 191, 65, 218, 27, 157, 183, 179, 122, 57, 221, + 227, 36, 255, 72, 251, 131, 111, 35, 65, 14, 15, 55, 27, 80, 38, 247, 250, 157, 84, 103, 37, 255, 216, 102, 159, + 27, 190, 193, 91, 152, 37, 27, 245, 107, 128, 255, 70, 91, 121, 78, 201, 70, 163, 27, 109, 70, 34, 240, 97, 143, + 47, 51, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 715, + "sample": { + "_tag": "ByteArray", + "bytearray": "c370e4" + }, + "cborHex": "43c370e4", + "cborBytes": [67, 195, 112, 228], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 716, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16916498037535464115" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19cf00df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0fd975fce317e75" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6604ea2ff58def504" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bfa3" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4471613157963961619" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16547948488250021508" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6428817447786007697" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4521537552210742146" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7266236633193982181" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7423314277096334449" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f129b14a783242edca4f63e2" + }, + { + "_tag": "ByteArray", + "bytearray": "bb28c0e9" + }, + { + "_tag": "ByteArray", + "bytearray": "1bd3d903424dfd5ef7" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ae" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "071fdceff64bb28ffc05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ff07de41359" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f78cb57fefc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11260149974247397674" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "16cce65f8ca67645f8b75b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "59a4404a161fedca8add5be7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5214625201088641318" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9225319454344874613" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7909139147317755588" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1beac3795672e4dab39f9fbf4419cf00df48e0fd975fce317e75ffbf49c6604ea2ff58def50442bfa3ffd8669f1b3e0e5c79bd6795139f1be5a61f79ab9ad6841b5937bf684d1e4c911b3ebfba72961c4b82ffffd8669f1b64d6dbb83f7528e59f1b6704e9012e69a4714cf129b14a783242edca4f63e244bb28c0e9491bd3d903424dfd5ef7ffff41aeff05bf4a071fdceff64bb28ffc05467ff07de41359461f78cb57fefc1b9c4416be24a3d92aff4b16cce65f8ca67645f8b75b9f9f4c59a4404a161fedca8add5be71b485e11fdfbb039261b8006eb2a77ba0a751b6dc2e8266b02bec4ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 234, 195, 121, 86, 114, 228, 218, 179, 159, 159, 191, 68, 25, 207, 0, 223, 72, 224, 253, 151, + 95, 206, 49, 126, 117, 255, 191, 73, 198, 96, 78, 162, 255, 88, 222, 245, 4, 66, 191, 163, 255, 216, 102, 159, 27, + 62, 14, 92, 121, 189, 103, 149, 19, 159, 27, 229, 166, 31, 121, 171, 154, 214, 132, 27, 89, 55, 191, 104, 77, 30, + 76, 145, 27, 62, 191, 186, 114, 150, 28, 75, 130, 255, 255, 216, 102, 159, 27, 100, 214, 219, 184, 63, 117, 40, + 229, 159, 27, 103, 4, 233, 1, 46, 105, 164, 113, 76, 241, 41, 177, 74, 120, 50, 66, 237, 202, 79, 99, 226, 68, + 187, 40, 192, 233, 73, 27, 211, 217, 3, 66, 77, 253, 94, 247, 255, 255, 65, 174, 255, 5, 191, 74, 7, 31, 220, 239, + 246, 75, 178, 143, 252, 5, 70, 127, 240, 125, 228, 19, 89, 70, 31, 120, 203, 87, 254, 252, 27, 156, 68, 22, 190, + 36, 163, 217, 42, 255, 75, 22, 204, 230, 95, 140, 166, 118, 69, 248, 183, 91, 159, 159, 76, 89, 164, 64, 74, 22, + 31, 237, 202, 138, 221, 91, 231, 27, 72, 94, 17, 253, 251, 176, 57, 38, 27, 128, 6, 235, 42, 119, 186, 10, 117, + 27, 109, 194, 232, 38, 107, 2, 190, 196, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 717, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9af" + }, + "cborHex": "42f9af", + "cborBytes": [66, 249, 175], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 718, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "14f395bdc0e2" + }, + { + "_tag": "ByteArray", + "bytearray": "ac198920c446c04f607e" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b9ff6d5e" + }, + { + "_tag": "ByteArray", + "bytearray": "f104776c2412444625" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "38c5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14371065835822914998" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6047003501166646948" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7704894122617797670" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cdc1105e801801c584" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9516269835663397510" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3406339796970974728" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13444517654416237048" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1939825858258097852" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14090030765216781555" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16754544078538746916" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eccb92" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f4614f395bdc0e24aac198920c446c04f607eff44b9ff6d5e49f104776c2412444625ff9fa01bfffffffffffffffdff4238c59fd9050d80d8669f1bc770483c8bfa1db680ffff9fbf1b53eb45a55a94d6a441f11b6aed4861daa0fc2649cdc1105e801801c5841b841094ff057b52861b2f45bfff6ebb2e081bba94859317f2a1f81b1aeba557279756bc1bc389d8542b1254f3418c1be8841911eeed2c2443eccb92ffffff", + "cborBytes": [ + 159, 159, 159, 70, 20, 243, 149, 189, 192, 226, 74, 172, 25, 137, 32, 196, 70, 192, 79, 96, 126, 255, 68, 185, + 255, 109, 94, 73, 241, 4, 119, 108, 36, 18, 68, 70, 37, 255, 159, 160, 27, 255, 255, 255, 255, 255, 255, 255, 253, + 255, 66, 56, 197, 159, 217, 5, 13, 128, 216, 102, 159, 27, 199, 112, 72, 60, 139, 250, 29, 182, 128, 255, 255, + 159, 191, 27, 83, 235, 69, 165, 90, 148, 214, 164, 65, 241, 27, 106, 237, 72, 97, 218, 160, 252, 38, 73, 205, 193, + 16, 94, 128, 24, 1, 197, 132, 27, 132, 16, 148, 255, 5, 123, 82, 134, 27, 47, 69, 191, 255, 110, 187, 46, 8, 27, + 186, 148, 133, 147, 23, 242, 161, 248, 27, 26, 235, 165, 87, 39, 151, 86, 188, 27, 195, 137, 216, 84, 43, 18, 84, + 243, 65, 140, 27, 232, 132, 25, 17, 238, 237, 44, 36, 67, 236, 203, 146, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 719, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "83b6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e483fd07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "050567fa040706030300" + } + } + ] + }, + "cborHex": "bf4283b6d905018044e483fd074a050567fa040706030300ff", + "cborBytes": [191, 66, 131, 182, 217, 5, 1, 128, 68, 228, 131, 253, 7, 74, 5, 5, 103, 250, 4, 7, 6, 3, 3, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 720, + "sample": { + "_tag": "ByteArray", + "bytearray": "bd66fcf99bff53a816" + }, + "cborHex": "49bd66fcf99bff53a816", + "cborBytes": [73, 189, 102, 252, 249, 155, 255, 83, 168, 22], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 721, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11743013305302017211" + } + } + ] + }, + "cborHex": "d905079f1ba2f790624f3664bbff", + "cborBytes": [217, 5, 7, 159, 27, 162, 247, 144, 98, 79, 54, 100, 187, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 722, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10461965460295968236" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17614572644895335393" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d7c8" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1856369136358419160" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f8" + }, + { + "_tag": "ByteArray", + "bytearray": "78930129" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8169052c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c7eb032" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b91305e280158e5ec9fd8669f1bf473887e994ca3e19f42d7c8ffff9f1b19c325e4e0a46ad8a041f84478930129bf448169052c448c7eb032ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 145, 48, 94, 40, 1, 88, 229, 236, 159, 216, 102, 159, 27, 244, 115, 136, 126, 153, 76, 163, + 225, 159, 66, 215, 200, 255, 255, 159, 27, 25, 195, 37, 228, 224, 164, 106, 216, 160, 65, 248, 68, 120, 147, 1, + 41, 191, 68, 129, 105, 5, 44, 68, 140, 126, 176, 50, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 723, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18235272475781818181" + } + }, + "cborHex": "1bfd10b3b3bd6ee745", + "cborBytes": [27, 253, 16, 179, 179, 189, 110, 231, 69], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 724, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13117203875725787474" + } + }, + "cborHex": "1bb609ab6d53034152", + "cborBytes": [27, 182, 9, 171, 109, 83, 3, 65, 82], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 725, + "sample": { + "_tag": "ByteArray", + "bytearray": "8efd927618d9c65c3df77c" + }, + "cborHex": "4b8efd927618d9c65c3df77c", + "cborBytes": [75, 142, 253, 146, 118, 24, 217, 198, 92, 61, 247, 124], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 726, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13038235939972408400" + } + }, + "cborHex": "1bb4f11e8203c96450", + "cborBytes": [27, 180, 241, 30, 130, 3, 201, 100, 80], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 727, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "971621193985596913" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14186789224923270654" + } + } + } + ] + }, + "cborHex": "bf1b0d7be453fbc09df11bc4e199a29ee40dfeff", + "cborBytes": [191, 27, 13, 123, 228, 83, 251, 192, 157, 241, 27, 196, 225, 153, 162, 158, 228, 13, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 728, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12335588349509853998" + } + }, + "cborHex": "1bab30d03f43fb632e", + "cborBytes": [27, 171, 48, 208, 63, 67, 251, 99, 46], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 729, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + }, + "cborHex": "d87d9f03ff", + "cborBytes": [216, 125, 159, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 730, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15623902584231647092" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0762" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb29946ec9700b8cab52" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "229320f7e37f5c307e464b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93affa35ea6b70" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bd8d3409f126f57749fbf4207624abb29946ec9700b8cab524b229320f7e37f5c307e464b4793affa35ea6b70ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 216, 211, 64, 159, 18, 111, 87, 116, 159, 191, 66, 7, 98, 74, 187, 41, 148, 110, 201, 112, 11, + 140, 171, 82, 75, 34, 147, 32, 247, 227, 127, 92, 48, 126, 70, 75, 71, 147, 175, 250, 53, 234, 107, 112, 255, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 731, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8049705411622218373" + }, + "fields": [] + }, + "cborHex": "d8669f1b6fb64c6c36482a8580ff", + "cborBytes": [216, 102, 159, 27, 111, 182, 76, 108, 54, 72, 42, 133, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 732, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42403892b3f0b42ef26c44" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5297543244714621460" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13079427036355917917" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6250352371160576384" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcde0042e7faeb6d01" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18270130853554635866" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf081bfffffffffffffff30b4b42403892b3f0b42ef26c441b4984a783737c3a149f1bb58375977fa2785dff1b56bdb65da40bf18049fcde0042e7faeb6d011bfd8c8b364607445a1bffffffffffffffeb1bffffffffffffffeb80ff", + "cborBytes": [ + 191, 8, 27, 255, 255, 255, 255, 255, 255, 255, 243, 11, 75, 66, 64, 56, 146, 179, 240, 180, 46, 242, 108, 68, 27, + 73, 132, 167, 131, 115, 124, 58, 20, 159, 27, 181, 131, 117, 151, 127, 162, 120, 93, 255, 27, 86, 189, 182, 93, + 164, 11, 241, 128, 73, 252, 222, 0, 66, 231, 250, 235, 109, 1, 27, 253, 140, 139, 54, 70, 7, 68, 90, 27, 255, 255, + 255, 255, 255, 255, 255, 235, 27, 255, 255, 255, 255, 255, 255, 255, 235, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 733, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2450065858145720467" + } + }, + "cborHex": "1b220061eabf169893", + "cborBytes": [27, 34, 0, 97, 234, 191, 22, 152, 147], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 734, + "sample": { + "_tag": "ByteArray", + "bytearray": "397b52a8ba3b461eb20350" + }, + "cborHex": "4b397b52a8ba3b461eb20350", + "cborBytes": [75, 57, 123, 82, 168, 186, 59, 70, 30, 178, 3, 80], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 735, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + } + ] + }, + "cborHex": "bf0514ff", + "cborBytes": [191, 5, 20, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 736, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12744479151424493271" + }, + "fields": [] + }, + "cborHex": "d8669f1bb0dd7c43dc0756d780ff", + "cborBytes": [216, 102, 159, 27, 176, 221, 124, 67, 220, 7, 86, 215, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 737, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8b7d09576" + }, + "cborHex": "45f8b7d09576", + "cborBytes": [69, 248, 183, 208, 149, 118], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 738, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17215462388733017114" + } + }, + { + "_tag": "ByteArray", + "bytearray": "57dd2576d9a189fe" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6c9ed2d689266d8e1f" + }, + { + "_tag": "ByteArray", + "bytearray": "60f644" + }, + { + "_tag": "ByteArray", + "bytearray": "29a0f80590d6" + }, + { + "_tag": "ByteArray", + "bytearray": "a28ae10adb7fdd814ff4" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d49c23a06f8a4348a09bef" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2689720150552952325" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3026983106735485170" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5413634427528286690" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e968aedf0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5901850450755617110" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "350dad54c48a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10691697636420211335" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "622a21" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11901117889593042700" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4af" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16439824260977016598" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2124138495759454790" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "3a716d7f51aa21" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16856952346414180228" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9f9f1beee99bd4c4877c1a4857dd2576d9a189fe9f496c9ed2d689266d8e1f4360f6444629a0f80590d64aa28ae10adb7fdd814ff4ff4bd49c23a06f8a4348a09befbf1b2553ce39e6eb3e051b2a0201191213b0f21b4b2117d444a611e2456e968aedf01b51e795b732c4815646350dad54c48a1b94608a5a70b5d28743622a211ba52943aa6f3d670c42d4af1be425fd103d623f161b1d7a74b52d799246ffffa0473a716d7f51aa211be9efecd8dbb46784ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 159, 27, 238, 233, 155, 212, 196, 135, 124, 26, + 72, 87, 221, 37, 118, 217, 161, 137, 254, 159, 73, 108, 158, 210, 214, 137, 38, 109, 142, 31, 67, 96, 246, 68, 70, + 41, 160, 248, 5, 144, 214, 74, 162, 138, 225, 10, 219, 127, 221, 129, 79, 244, 255, 75, 212, 156, 35, 160, 111, + 138, 67, 72, 160, 155, 239, 191, 27, 37, 83, 206, 57, 230, 235, 62, 5, 27, 42, 2, 1, 25, 18, 19, 176, 242, 27, 75, + 33, 23, 212, 68, 166, 17, 226, 69, 110, 150, 138, 237, 240, 27, 81, 231, 149, 183, 50, 196, 129, 86, 70, 53, 13, + 173, 84, 196, 138, 27, 148, 96, 138, 90, 112, 181, 210, 135, 67, 98, 42, 33, 27, 165, 41, 67, 170, 111, 61, 103, + 12, 66, 212, 175, 27, 228, 37, 253, 16, 61, 98, 63, 22, 27, 29, 122, 116, 181, 45, 121, 146, 70, 255, 255, 160, + 71, 58, 113, 109, 127, 81, 170, 33, 27, 233, 239, 236, 216, 219, 180, 103, 132, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 739, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b266" + } + } + ] + }, + "cborHex": "bf07001bffffffffffffffeb42b266ff", + "cborBytes": [191, 7, 0, 27, 255, 255, 255, 255, 255, 255, 255, 235, 66, 178, 102, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 740, + "sample": { + "_tag": "ByteArray", + "bytearray": "090428" + }, + "cborHex": "43090428", + "cborBytes": [67, 9, 4, 40], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 741, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5dfe05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5695711574566488697" + } + } + } + ] + }, + "cborHex": "bf435dfe051b4f0b3b7ff91dca79ff", + "cborBytes": [191, 67, 93, 254, 5, 27, 79, 11, 59, 127, 249, 29, 202, 121, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 742, + "sample": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "cborHex": "4107", + "cborBytes": [65, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 743, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1772608620990987750" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2e5fcab34031ecd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13418429096495945813" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3815409673889277947" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9088831527001200951" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "11de6a95" + }, + { + "_tag": "ByteArray", + "bytearray": "05f80b3fff9904fc" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11007725511138074510" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3159823474839343817" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b189992262bf67de6bf48a2e5fcab34031ecd1bba37d62b5c681855ff1b34f30ee22cc267fba01b7e22041e7e4719379f4411de6a954805f80b3fff9904fcff1b98c34c07ec63df8ed8669f1b2bd9f2b57abd52c980ffff", + "cborBytes": [ + 191, 27, 24, 153, 146, 38, 43, 246, 125, 230, 191, 72, 162, 229, 252, 171, 52, 3, 30, 205, 27, 186, 55, 214, 43, + 92, 104, 24, 85, 255, 27, 52, 243, 14, 226, 44, 194, 103, 251, 160, 27, 126, 34, 4, 30, 126, 71, 25, 55, 159, 68, + 17, 222, 106, 149, 72, 5, 248, 11, 63, 255, 153, 4, 252, 255, 27, 152, 195, 76, 7, 236, 99, 223, 142, 216, 102, + 159, 27, 43, 217, 242, 181, 122, 189, 82, 201, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 744, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6015534393225125442" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "51200b040a539d8d7fd465fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8779039754080061838" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7562758464619531959" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6825821774841007948" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b537b78a8b2541e4280ff4c51200b040a539d8d7fd465fb1b79d56a249af9898e1b68f450c11db9ceb7d8669f1b5eba30bd4d864f4c80ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 83, 123, 120, 168, 178, 84, 30, 66, 128, 255, 76, 81, 32, 11, 4, 10, 83, 157, 141, 127, + 212, 101, 251, 27, 121, 213, 106, 36, 154, 249, 137, 142, 27, 104, 244, 80, 193, 29, 185, 206, 183, 216, 102, 159, + 27, 94, 186, 48, 189, 77, 134, 79, 76, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 745, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc920e61ab69486460ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60b5fdb6d8132dd88b" + } + } + ] + }, + "cborHex": "bf4abc920e61ab69486460ea4960b5fdb6d8132dd88bff", + "cborBytes": [ + 191, 74, 188, 146, 14, 97, 171, 105, 72, 100, 96, 234, 73, 96, 181, 253, 182, 216, 19, 45, 216, 139, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 746, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7948254717623941453" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16710875512108236001" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15774440900357967028" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "26478f85156aac3819aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16405761043459498111" + } + } + } + ] + }, + "cborHex": "bf1b6e4ddf8dd44c394d1be7e8f4bd80fc3ce11bdaea126c1c3accb441244a26478f85156aac3819aa1be3acf8bf6158607fff", + "cborBytes": [ + 191, 27, 110, 77, 223, 141, 212, 76, 57, 77, 27, 231, 232, 244, 189, 128, 252, 60, 225, 27, 218, 234, 18, 108, 28, + 58, 204, 180, 65, 36, 74, 38, 71, 143, 133, 21, 106, 172, 56, 25, 170, 27, 227, 172, 248, 191, 97, 88, 96, 127, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 747, + "sample": { + "_tag": "ByteArray", + "bytearray": "cfbb82" + }, + "cborHex": "43cfbb82", + "cborBytes": [67, 207, 187, 130], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 748, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4462367217234618377" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "772473039561164525" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1013ba6061d8" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2984411758338663276" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12460841406198987307" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3ded8357689e28099f9fd8669f1b0ab86023019c06ed9f461013ba6061d8ffffffbf1b296ac2ae9f46636c1bacedcd3d12f83a2bffffff", + "cborBytes": [ + 216, 102, 159, 27, 61, 237, 131, 87, 104, 158, 40, 9, 159, 159, 216, 102, 159, 27, 10, 184, 96, 35, 1, 156, 6, + 237, 159, 70, 16, 19, 186, 96, 97, 216, 255, 255, 255, 191, 27, 41, 106, 194, 174, 159, 70, 99, 108, 27, 172, 237, + 205, 61, 18, 248, 58, 43, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 749, + "sample": { + "_tag": "ByteArray", + "bytearray": "b39d0cf50b5c" + }, + "cborHex": "46b39d0cf50b5c", + "cborBytes": [70, 179, 157, 12, 245, 11, 92], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 750, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7100529508253808687" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "ByteArray", + "bytearray": "66a2d2" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15668203849622256675" + } + }, + { + "_tag": "ByteArray", + "bytearray": "45d0260b483b877bbbc8" + }, + { + "_tag": "ByteArray", + "bytearray": "d8de2221a3c1" + }, + { + "_tag": "ByteArray", + "bytearray": "c9d5285507" + }, + { + "_tag": "ByteArray", + "bytearray": "2fb84e6c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9db515f99c31d8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8120699166299298814" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3472590233749946842" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18352249251843057478" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ba8538a01b86" + }, + { + "_tag": "ByteArray", + "bytearray": "593cb4484c7c2f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1578f9ce203a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1139220577204901034" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1dc6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6aa95b97386" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "212dc3a55c962175" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60a7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4debb73de40f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9f8096ed0" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b628a25f7b0a5b82f9f064366a2d29f9f1bd970a46335247c234a45d0260b483b877bbbc846d8de2221a3c145c9d5285507442fb84e6cff479db515f99c31d89f1b70b284ddcf149bfe1b30311e6b452801da1bfeb04975cd88a74646ba8538a01b8647593cb4484c7c2fffbf461578f9ce203a1b0fcf5314411d14aa421dc646c6aa95b9738648212dc3a55c9621754260a7464debb73de40f45a9f8096ed0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 98, 138, 37, 247, 176, 165, 184, 47, 159, 6, 67, 102, 162, 210, 159, 159, 27, 217, 112, 164, + 99, 53, 36, 124, 35, 74, 69, 208, 38, 11, 72, 59, 135, 123, 187, 200, 70, 216, 222, 34, 33, 163, 193, 69, 201, + 213, 40, 85, 7, 68, 47, 184, 78, 108, 255, 71, 157, 181, 21, 249, 156, 49, 216, 159, 27, 112, 178, 132, 221, 207, + 20, 155, 254, 27, 48, 49, 30, 107, 69, 40, 1, 218, 27, 254, 176, 73, 117, 205, 136, 167, 70, 70, 186, 133, 56, + 160, 27, 134, 71, 89, 60, 180, 72, 76, 124, 47, 255, 191, 70, 21, 120, 249, 206, 32, 58, 27, 15, 207, 83, 20, 65, + 29, 20, 170, 66, 29, 198, 70, 198, 170, 149, 185, 115, 134, 72, 33, 45, 195, 165, 92, 150, 33, 117, 66, 96, 167, + 70, 77, 235, 183, 61, 228, 15, 69, 169, 248, 9, 110, 208, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 751, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12844387382024429122" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12915604057329079916" + } + } + } + ] + }, + "cborHex": "bf1bb2406e457f135e421bb33d7175d8b1966cff", + "cborBytes": [191, 27, 178, 64, 110, 69, 127, 19, 94, 66, 27, 179, 61, 113, 117, 216, 177, 150, 108, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 752, + "sample": { + "_tag": "ByteArray", + "bytearray": "3f347d21a1b131eb1b" + }, + "cborHex": "493f347d21a1b131eb1b", + "cborBytes": [73, 63, 52, 125, 33, 161, 177, 49, 235, 27], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 753, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18147146467026842390" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7141648172474144408" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "451579694203145899" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "371e39d3f0c08e53588db75b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5935083574337625106" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0fe5ea0b271f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16184477374052474449" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa9d2e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17108791521087643578" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7515890584267092786" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8579845171630134541" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "680f9ee97d88" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f0f132f088888ad91bbc4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4070387039a5f7cda54453" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90400815bed1410f967df8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e8dc6c67a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14036417004908665873" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "913d4f4e3a4994aae17a4fbf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8daab9df450c337d9d" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfbd79d90661eb3169f9f1b631c3b2cbf239698bf1b06445556dcc20eab4c371e39d3f0c08e53588db75b1b525da710c0a65c12460fe5ea0b271f1be09ad06c33be9e5143aa9d2e1bed6ea33dfea4dfba1b684dceaa5df17332ff80d8669f1b7711bbb9c2dd550d80ffbf411d46680f9ee97d884b2f0f132f088888ad91bbc441d44b4070387039a5f7cda544534b90400815bed1410f967df8458e8dc6c67a1bc2cb5ee5d8d55c114c913d4f4e3a4994aae17a4fbf498daab9df450c337d9dffffffff", + "cborBytes": [ + 216, 102, 159, 27, 251, 215, 157, 144, 102, 30, 179, 22, 159, 159, 27, 99, 28, 59, 44, 191, 35, 150, 152, 191, 27, + 6, 68, 85, 86, 220, 194, 14, 171, 76, 55, 30, 57, 211, 240, 192, 142, 83, 88, 141, 183, 91, 27, 82, 93, 167, 16, + 192, 166, 92, 18, 70, 15, 229, 234, 11, 39, 31, 27, 224, 154, 208, 108, 51, 190, 158, 81, 67, 170, 157, 46, 27, + 237, 110, 163, 61, 254, 164, 223, 186, 27, 104, 77, 206, 170, 93, 241, 115, 50, 255, 128, 216, 102, 159, 27, 119, + 17, 187, 185, 194, 221, 85, 13, 128, 255, 191, 65, 29, 70, 104, 15, 158, 233, 125, 136, 75, 47, 15, 19, 47, 8, + 136, 136, 173, 145, 187, 196, 65, 212, 75, 64, 112, 56, 112, 57, 165, 247, 205, 165, 68, 83, 75, 144, 64, 8, 21, + 190, 209, 65, 15, 150, 125, 248, 69, 142, 141, 198, 198, 122, 27, 194, 203, 94, 229, 216, 213, 92, 17, 76, 145, + 61, 79, 78, 58, 73, 148, 170, 225, 122, 79, 191, 73, 141, 170, 185, 223, 69, 12, 51, 125, 157, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 754, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17549326466130151835" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15465734496771932570" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1578581771767520024" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "288989573208222384" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3354323213554997198" + } + }, + { + "_tag": "ByteArray", + "bytearray": "38e5" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf38bbb70cd0c899b9fd8669f1bd6a153957698819a9f1b15e83fc1fb1c1b181b0402b27c56de2ab01b2e8cf330d5cad7ce4238e5ffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 243, 139, 187, 112, 205, 12, 137, 155, 159, 216, 102, 159, 27, 214, 161, 83, 149, 118, + 152, 129, 154, 159, 27, 21, 232, 63, 193, 251, 28, 27, 24, 27, 4, 2, 178, 124, 86, 222, 42, 176, 27, 46, 140, 243, + 48, 213, 202, 215, 206, 66, 56, 229, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 755, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8599335506993890840" + } + } + ] + }, + "cborHex": "9f1b7756fa1516c64618ff", + "cborBytes": [159, 27, 119, 86, 250, 21, 22, 198, 70, 24, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 756, + "sample": { + "_tag": "ByteArray", + "bytearray": "4e" + }, + "cborHex": "414e", + "cborBytes": [65, 78], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 757, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10893045111628818315" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "69" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b972bded0b0f0e78b9f4169ff1bfffffffffffffff280ff", + "cborBytes": [ + 191, 27, 151, 43, 222, 208, 176, 240, 231, 139, 159, 65, 105, 255, 27, 255, 255, 255, 255, 255, 255, 255, 242, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 758, + "sample": { + "_tag": "ByteArray", + "bytearray": "a903bac50403e64b9e" + }, + "cborHex": "49a903bac50403e64b9e", + "cborBytes": [73, 169, 3, 186, 197, 4, 3, 230, 75, 158], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 759, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3274383586677170312" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "867dbe08a76ed83ed9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15719327564817674714" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "22" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10732008281101251574" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5941801299502208379" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4fc25a95" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14596288390537811860" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "73c14672d5cddec28a81c5" + }, + { + "_tag": "ByteArray", + "bytearray": "1dec" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14391137574942468989" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cdaa6cb1adcd224f5e6ebda8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3958766887358551811" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10234638320823252494" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11818489034205448842" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c89ea5" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e50c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8849302291975801070" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c23365e6724326e8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11664604357586184428" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e61e04f0fd2ac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "161d504db97c57c18bbbd8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0aa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed890f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7713517913523533781" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8845568232836864616" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9939568454471592600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12969855508777575298" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8517877082604991134" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13482424633150467731" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7129231531299098310" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "344108694261659109" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "945855729735458558" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14089011095637228370" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "91d9694e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "101638909642267817" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11644845492978940952" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14735348576002763712" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce7f65b6ca79bbc972" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2405766805703428184" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09e1a9457359" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3be7b2ed4ebdfc6b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27bccae48b6500" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41a2152eeccb88" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e2d5bd37bcb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b37f2eae3dec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17415709261487362316" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e24449c9cd0dce5cba3e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79ec98" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b3e3de9a9212" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13875274734066306346" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4071376132808785949" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905059fd8669f1b2d70f2860e4320889fbf49867dbe08a76ed83ed91bda264522b8f6b1daff4122d8669f1b94efc0abc99733f69f1b527584cd06c8957b444fc25a951bca906ef4ed2a1794ffff9f4b73c14672d5cddec28a81c5421dec1bc7b797607c38eb7d4ccdaa6cb1adcd224f5e6ebda81b36f05d827595d703ffffff9fd8669f1b8e08bd53cd45360e80ff9f1ba403b528d9aa4a8a43c89ea5ff42e50cbf1b7acf098c874488ee48c23365e6724326e81ba1e0ffdc8b65e8ec4138472e61e04f0fd2ac4b161d504db97c57c18bbbd842f0aa43ed890fffd8669f1b6b0bebaca42eb7d580ffffd8669f1b7ac1c57122b89a689fa0d8669f1b89f070d8e5752a989f1bb3fe2ede34d4a3821b76359413b51c729e1bbb1b31c559e8ee931b62f01e4e3098cec61b04c68508c596f5e5ffff1b0d205ac65ba65efed8669f1bc38638f1d7fe7b529f4491d9694e1b0169180cc095dca9ffffffff9fd8669f1ba19acd4761517c189f1bcc7e79756a33ebc049ce7f65b6ca79bbc9721b21630029da610858ffffbf4609e1a9457359483be7b2ed4ebdfc6b4727bccae48b650041624741a2152eeccb88463e2d5bd37bcb46b37f2eae3dec1bf1b1074d0a6f510c4ae24449c9cd0dce5cba3e4379ec98ff46b3e3de9a9212bf1bc08ee0db34f98d2a1b38806f058f12401dffffff", + "cborBytes": [ + 217, 5, 5, 159, 216, 102, 159, 27, 45, 112, 242, 134, 14, 67, 32, 136, 159, 191, 73, 134, 125, 190, 8, 167, 110, + 216, 62, 217, 27, 218, 38, 69, 34, 184, 246, 177, 218, 255, 65, 34, 216, 102, 159, 27, 148, 239, 192, 171, 201, + 151, 51, 246, 159, 27, 82, 117, 132, 205, 6, 200, 149, 123, 68, 79, 194, 90, 149, 27, 202, 144, 110, 244, 237, 42, + 23, 148, 255, 255, 159, 75, 115, 193, 70, 114, 213, 205, 222, 194, 138, 129, 197, 66, 29, 236, 27, 199, 183, 151, + 96, 124, 56, 235, 125, 76, 205, 170, 108, 177, 173, 205, 34, 79, 94, 110, 189, 168, 27, 54, 240, 93, 130, 117, + 149, 215, 3, 255, 255, 255, 159, 216, 102, 159, 27, 142, 8, 189, 83, 205, 69, 54, 14, 128, 255, 159, 27, 164, 3, + 181, 40, 217, 170, 74, 138, 67, 200, 158, 165, 255, 66, 229, 12, 191, 27, 122, 207, 9, 140, 135, 68, 136, 238, 72, + 194, 51, 101, 230, 114, 67, 38, 232, 27, 161, 224, 255, 220, 139, 101, 232, 236, 65, 56, 71, 46, 97, 224, 79, 15, + 210, 172, 75, 22, 29, 80, 77, 185, 124, 87, 193, 139, 187, 216, 66, 240, 170, 67, 237, 137, 15, 255, 216, 102, + 159, 27, 107, 11, 235, 172, 164, 46, 183, 213, 128, 255, 255, 216, 102, 159, 27, 122, 193, 197, 113, 34, 184, 154, + 104, 159, 160, 216, 102, 159, 27, 137, 240, 112, 216, 229, 117, 42, 152, 159, 27, 179, 254, 46, 222, 52, 212, 163, + 130, 27, 118, 53, 148, 19, 181, 28, 114, 158, 27, 187, 27, 49, 197, 89, 232, 238, 147, 27, 98, 240, 30, 78, 48, + 152, 206, 198, 27, 4, 198, 133, 8, 197, 150, 245, 229, 255, 255, 27, 13, 32, 90, 198, 91, 166, 94, 254, 216, 102, + 159, 27, 195, 134, 56, 241, 215, 254, 123, 82, 159, 68, 145, 217, 105, 78, 27, 1, 105, 24, 12, 192, 149, 220, 169, + 255, 255, 255, 255, 159, 216, 102, 159, 27, 161, 154, 205, 71, 97, 81, 124, 24, 159, 27, 204, 126, 121, 117, 106, + 51, 235, 192, 73, 206, 127, 101, 182, 202, 121, 187, 201, 114, 27, 33, 99, 0, 41, 218, 97, 8, 88, 255, 255, 191, + 70, 9, 225, 169, 69, 115, 89, 72, 59, 231, 178, 237, 78, 189, 252, 107, 71, 39, 188, 202, 228, 139, 101, 0, 65, + 98, 71, 65, 162, 21, 46, 236, 203, 136, 70, 62, 45, 91, 211, 123, 203, 70, 179, 127, 46, 174, 61, 236, 27, 241, + 177, 7, 77, 10, 111, 81, 12, 74, 226, 68, 73, 201, 205, 13, 206, 92, 186, 62, 67, 121, 236, 152, 255, 70, 179, + 227, 222, 154, 146, 18, 191, 27, 192, 142, 224, 219, 52, 249, 141, 42, 27, 56, 128, 111, 5, 143, 18, 64, 29, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 760, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c690a8d596" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "146173221634692550" + } + } + ] + }, + "cborHex": "d87b9f45c690a8d5961b02074fc54735d5c6ff", + "cborBytes": [216, 123, 159, 69, 198, 144, 168, 213, 150, 27, 2, 7, 79, 197, 71, 53, 213, 198, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 761, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5302892800287718784" + } + } + ] + }, + "cborHex": "d905029f1b4997a8e7eb203d80ff", + "cborBytes": [217, 5, 2, 159, 27, 73, 151, 168, 231, 235, 32, 61, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 762, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "565162647636719488" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15425920084139686775" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8975036785118455389" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c918" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11728457487838081099" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7781628244637481914" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13669245753988544715" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17819937047817038103" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0810f7c6ff19" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12614481144842883868" + } + }, + { + "_tag": "ByteArray", + "bytearray": "766999ef8feb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3383704957576060672" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15123792322175317232" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18383598503397845072" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a34d47d213908da17d745" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb550f641c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1394425467407053578" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a687075ba771cb2ade99" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5f106bb7f3d096c13f90294" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ceb6" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b07d7dc6f04b4b7801bd613e09624b5bb771b7c8dbc677f0ca65d42c9181ba2c3d9f1f5dbf04bbf1b6bfde5a8dfc37bba1bbdb2ea972a00f8cbff1bf74d2254b6f529179f460810f7c6ff191baf0fa3c45039131c46766999ef8feb1b2ef555bb350c9f001bd1e280fcdc0a34f0ff1bff1fa970386e6850bf4b0a34d47d213908da17d74545eb550f641c41981b1359fe931a8e330a4aa687075ba771cb2ade9941c04cd5f106bb7f3d096c13f9029442ceb6ffff", + "cborBytes": [ + 191, 27, 7, 215, 220, 111, 4, 180, 183, 128, 27, 214, 19, 224, 150, 36, 181, 187, 119, 27, 124, 141, 188, 103, + 127, 12, 166, 93, 66, 201, 24, 27, 162, 195, 217, 241, 245, 219, 240, 75, 191, 27, 107, 253, 229, 168, 223, 195, + 123, 186, 27, 189, 178, 234, 151, 42, 0, 248, 203, 255, 27, 247, 77, 34, 84, 182, 245, 41, 23, 159, 70, 8, 16, + 247, 198, 255, 25, 27, 175, 15, 163, 196, 80, 57, 19, 28, 70, 118, 105, 153, 239, 143, 235, 27, 46, 245, 85, 187, + 53, 12, 159, 0, 27, 209, 226, 128, 252, 220, 10, 52, 240, 255, 27, 255, 31, 169, 112, 56, 110, 104, 80, 191, 75, + 10, 52, 212, 125, 33, 57, 8, 218, 23, 215, 69, 69, 235, 85, 15, 100, 28, 65, 152, 27, 19, 89, 254, 147, 26, 142, + 51, 10, 74, 166, 135, 7, 91, 167, 113, 203, 42, 222, 153, 65, 192, 76, 213, 241, 6, 187, 127, 61, 9, 108, 19, 249, + 2, 148, 66, 206, 182, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 763, + "sample": { + "_tag": "ByteArray", + "bytearray": "02c8ccc0afbc" + }, + "cborHex": "4602c8ccc0afbc", + "cborBytes": [70, 2, 200, 204, 192, 175, 188], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 764, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12302666611353387118" + } + }, + "cborHex": "1baabbda19c7c7006e", + "cborBytes": [27, 170, 187, 218, 25, 199, 199, 0, 110], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 765, + "sample": { + "_tag": "ByteArray", + "bytearray": "7a8e917e52366957" + }, + "cborHex": "487a8e917e52366957", + "cborBytes": [72, 122, 142, 145, 126, 82, 54, 105, 87], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 766, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18402142118817482950" + } + }, + "cborHex": "1bff618ac2225ec8c6", + "cborBytes": [27, 255, 97, 138, 194, 34, 94, 200, 198], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 767, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbaa" + }, + "cborHex": "42fbaa", + "cborBytes": [66, 251, 170], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 768, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4887921190821432015" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10149896219310394681" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3677058468559566615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0905" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7762262826964547693" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "510cb852da" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10238470541930081523" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10510373408759297390" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15105969726577107992" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13305500853206237854" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17085329754630806671" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf8851" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b43d5626cfd040acf9f1b8cdbacd5c3138d39bf1b33078931fcd5b7174209051b6bb918ea3670f86d45510cb852da1b8e165ab64f0b2cf31b91dc58edcdcf356e1bd1a32f6e746ee4181bb8a6a287ca03c29e1bed1b48e3cf2e5c8f43cf8851ffffff", + "cborBytes": [ + 216, 102, 159, 27, 67, 213, 98, 108, 253, 4, 10, 207, 159, 27, 140, 219, 172, 213, 195, 19, 141, 57, 191, 27, 51, + 7, 137, 49, 252, 213, 183, 23, 66, 9, 5, 27, 107, 185, 24, 234, 54, 112, 248, 109, 69, 81, 12, 184, 82, 218, 27, + 142, 22, 90, 182, 79, 11, 44, 243, 27, 145, 220, 88, 237, 205, 207, 53, 110, 27, 209, 163, 47, 110, 116, 110, 228, + 24, 27, 184, 166, 162, 135, 202, 3, 194, 158, 27, 237, 27, 72, 227, 207, 46, 92, 143, 67, 207, 136, 81, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 769, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4381266682719367759" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b64337" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a2727a1efb0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4315902754872291699" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c86d12b19f9b20146" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11274540518953418803" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3495245206707368398" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16763465202575484118" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44239adae638c12d51878b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f885db9d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13380786315033990525" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16543911570029002192" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4181746597290514467" + } + }, + { + "_tag": "ByteArray", + "bytearray": "760a08b57719d61706614e55" + }, + { + "_tag": "ByteArray", + "bytearray": "34" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13913658017521798179" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12712114825334162983" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0c2f22745937b" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b3ccd62d5c1bdf24f9f43b643379f466a2727a1efb0bf1b3be52ab05d4af173496c86d12b19f9b201461b9c7736ddedf780331b30819aff34adf1ce1be8a3cac8fc2224d64b44239adae638c12d51878b44f885db9d419cff9f1bb9b21a425302557dff9f1be597c7eb670dbdd01b3a088c5fd83318234c760a08b57719d61706614e554134ff1bc1173e3fcca70c23ffbf1bb06a8114fc05062747d0c2f22745937bff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 60, 205, 98, 213, 193, 189, 242, 79, 159, 67, 182, 67, 55, 159, 70, 106, 39, 39, 161, 239, 176, + 191, 27, 59, 229, 42, 176, 93, 74, 241, 115, 73, 108, 134, 209, 43, 25, 249, 178, 1, 70, 27, 156, 119, 54, 221, + 237, 247, 128, 51, 27, 48, 129, 154, 255, 52, 173, 241, 206, 27, 232, 163, 202, 200, 252, 34, 36, 214, 75, 68, 35, + 154, 218, 230, 56, 193, 45, 81, 135, 139, 68, 248, 133, 219, 157, 65, 156, 255, 159, 27, 185, 178, 26, 66, 83, 2, + 85, 125, 255, 159, 27, 229, 151, 199, 235, 103, 13, 189, 208, 27, 58, 8, 140, 95, 216, 51, 24, 35, 76, 118, 10, 8, + 181, 119, 25, 214, 23, 6, 97, 78, 85, 65, 52, 255, 27, 193, 23, 62, 63, 204, 167, 12, 35, 255, 191, 27, 176, 106, + 129, 20, 252, 5, 6, 39, 71, 208, 194, 242, 39, 69, 147, 123, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 770, + "sample": { + "_tag": "ByteArray", + "bytearray": "060496da06f98117" + }, + "cborHex": "48060496da06f98117", + "cborBytes": [72, 6, 4, 150, 218, 6, 249, 129, 23], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 771, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1406389160410904676" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4070178650102083941" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8254b3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10530875300750825971" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3516033145392890891" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12881520046620804356" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1599985271634996912" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14741137374910569099" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18223484866848756267" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15926267014592820484" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9163161306584629100" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b13847f7d72407864418a1b387c2deae3b6b165438254b31b92252f4a833019f31b30cb758459a4840b1bb2c45a3bb1e805041b16344a20a1a92eb01bcc930a5730c75a8b1bfce6d2ef2a3a122b1bdd05777802d375041b7f2a16a8ea94bf6cffff", + "cborBytes": [ + 159, 191, 27, 19, 132, 127, 125, 114, 64, 120, 100, 65, 138, 27, 56, 124, 45, 234, 227, 182, 177, 101, 67, 130, + 84, 179, 27, 146, 37, 47, 74, 131, 48, 25, 243, 27, 48, 203, 117, 132, 89, 164, 132, 11, 27, 178, 196, 90, 59, + 177, 232, 5, 4, 27, 22, 52, 74, 32, 161, 169, 46, 176, 27, 204, 147, 10, 87, 48, 199, 90, 139, 27, 252, 230, 210, + 239, 42, 58, 18, 43, 27, 221, 5, 119, 120, 2, 211, 117, 4, 27, 127, 42, 22, 168, 234, 148, 191, 108, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 772, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2204999243470572917" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7342727496276644540" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "580ea9a7c080" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2eafec3308713b6f1b1469" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18440168689324843553" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91550c32b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12025140414659921739" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a52803857bcc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "124bd91601" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eec26c2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16038900594543946525" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86b3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1620089218643681096" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3882428143555741146" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2730900829831042222" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78f753" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1e99bb211d118d75801b65e69bc1221012bca046580ea9a7c080bf4b2eafec3308713b6f1b14691bffe8a3b9057ce2214591550c32b91ba6e1e17ec5ff874b46a52803857bcc45124bd9160144eec26c2d1bde959f1ced97eb1dff4286b3bf1b167bb68f8db25f481b35e127d39a9e85da1b25e61bd5f6e614ae4378f753ffff", + "cborBytes": [ + 191, 27, 30, 153, 187, 33, 29, 17, 141, 117, 128, 27, 101, 230, 155, 193, 34, 16, 18, 188, 160, 70, 88, 14, 169, + 167, 192, 128, 191, 75, 46, 175, 236, 51, 8, 113, 59, 111, 27, 20, 105, 27, 255, 232, 163, 185, 5, 124, 226, 33, + 69, 145, 85, 12, 50, 185, 27, 166, 225, 225, 126, 197, 255, 135, 75, 70, 165, 40, 3, 133, 123, 204, 69, 18, 75, + 217, 22, 1, 68, 238, 194, 108, 45, 27, 222, 149, 159, 28, 237, 151, 235, 29, 255, 66, 134, 179, 191, 27, 22, 123, + 182, 143, 141, 178, 95, 72, 27, 53, 225, 39, 211, 154, 158, 133, 218, 27, 37, 230, 27, 213, 246, 230, 20, 174, 67, + 120, 247, 83, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 773, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b780a36c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "992a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7388836" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9" + } + } + ] + } + ] + }, + "cborHex": "9fbf1044b780a36c42992a1244b73888360641ed41d9ffff", + "cborBytes": [ + 159, 191, 16, 68, 183, 128, 163, 108, 66, 153, 42, 18, 68, 183, 56, 136, 54, 6, 65, 237, 65, 217, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 774, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2064935991710750600" + }, + "fields": [] + }, + "cborHex": "d8669f1b1ca820580dd6978880ff", + "cborBytes": [216, 102, 159, 27, 28, 168, 32, 88, 13, 214, 151, 136, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 775, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f9fa0ffff", + "cborBytes": [159, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 776, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5964713665390196277" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7aee0231a00b643055" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b3ab95a94f87822" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1990450337878939349" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e48576b6eaa0f8cea6ac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e6b17b244af538819" + } + } + ] + } + } + ] + }, + "cborHex": "bf416fbf1b52c6eb79ec803635497aee0231a00b643055489b3ab95a94f878221b1b9f8009545496d54ae48576b6eaa0f8cea6ac492e6b17b244af538819ffff", + "cborBytes": [ + 191, 65, 111, 191, 27, 82, 198, 235, 121, 236, 128, 54, 53, 73, 122, 238, 2, 49, 160, 11, 100, 48, 85, 72, 155, + 58, 185, 90, 148, 248, 120, 34, 27, 27, 159, 128, 9, 84, 84, 150, 213, 74, 228, 133, 118, 182, 234, 160, 248, 206, + 166, 172, 73, 46, 107, 23, 178, 68, 175, 83, 136, 25, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 777, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "78a301" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b626c800150009" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5438479024469917201" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f47d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cb0ad5f7aad2094c0f5da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8031ffa7a0002fe32" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b684" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3624795831449353115" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f903feef07aefb00f93b74" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "54" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7010716574575747874" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d59a63f556ffec" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12841113548719837049" + } + } + ] + } + } + ] + }, + "cborHex": "bf4378a301d9050d8047b626c8001500090041e41b4b795bdbc3f13e1142f47d4b1cb0ad5f7aad2094c0f5da49f8031ffa7a0002fe32d9050d9f42b6841b324ddc9a8cdafb9bff4bf903feef07aefb00f93b749f41541b614b11948887e32247d59a63f556ffec1bb234ccbcc7e6cf79ffff", + "cborBytes": [ + 191, 67, 120, 163, 1, 217, 5, 13, 128, 71, 182, 38, 200, 0, 21, 0, 9, 0, 65, 228, 27, 75, 121, 91, 219, 195, 241, + 62, 17, 66, 244, 125, 75, 28, 176, 173, 95, 122, 173, 32, 148, 192, 245, 218, 73, 248, 3, 31, 250, 122, 0, 2, 254, + 50, 217, 5, 13, 159, 66, 182, 132, 27, 50, 77, 220, 154, 140, 218, 251, 155, 255, 75, 249, 3, 254, 239, 7, 174, + 251, 0, 249, 59, 116, 159, 65, 84, 27, 97, 75, 17, 148, 136, 135, 227, 34, 71, 213, 154, 99, 245, 86, 255, 236, + 27, 178, 52, 204, 188, 199, 230, 207, 121, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 778, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8318666515194211896" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b7371d71f13166e389fa080ffff", + "cborBytes": [216, 102, 159, 27, 115, 113, 215, 31, 19, 22, 110, 56, 159, 160, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 779, + "sample": { + "_tag": "ByteArray", + "bytearray": "8f2b" + }, + "cborHex": "428f2b", + "cborBytes": [66, 143, 43], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 780, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0880c8ff06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a504" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a81fb1ecac7c9d374" + } + } + ] + }, + "cborHex": "bf450880c8ff061bfffffffffffffffa42a504494a81fb1ecac7c9d374ff", + "cborBytes": [ + 191, 69, 8, 128, 200, 255, 6, 27, 255, 255, 255, 255, 255, 255, 255, 250, 66, 165, 4, 73, 74, 129, 251, 30, 202, + 199, 201, 211, 116, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 781, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17c67f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8381056174661749606" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3131e5536dd8e8e7c10d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7585791029577277351" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72b0e1c7b174" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e2374cbd70a08dc7fe4e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17254913989191124166" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12080620521551710293" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "134680791012709677" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13102693971074504177" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6813898989324530303" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4983958019255055598" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13719975886176664516" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "74a1e25a6819983f" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fbf4317c67f1b744f7e2fa54ecb664a3131e5536dd8e8e7c10d1b694624c00a4c5fa74672b0e1c7b1744b6e2374cbd70a08dc7fe4e841d841a1ff1bef75c4da4ba7c4c61ba7a6fc5bc56248559f1b01de7b774261952d80d8669f1bb5d61ebee28c55f19f1b5e8fd5077a14f27f1b452a9369912834eeffffffd8669f1bbe6725607e7c3bc49f4874a1e25a6819983f80ffffff", + "cborBytes": [ + 159, 191, 67, 23, 198, 127, 27, 116, 79, 126, 47, 165, 78, 203, 102, 74, 49, 49, 229, 83, 109, 216, 232, 231, 193, + 13, 27, 105, 70, 36, 192, 10, 76, 95, 167, 70, 114, 176, 225, 199, 177, 116, 75, 110, 35, 116, 203, 215, 10, 8, + 220, 127, 228, 232, 65, 216, 65, 161, 255, 27, 239, 117, 196, 218, 75, 167, 196, 198, 27, 167, 166, 252, 91, 197, + 98, 72, 85, 159, 27, 1, 222, 123, 119, 66, 97, 149, 45, 128, 216, 102, 159, 27, 181, 214, 30, 190, 226, 140, 85, + 241, 159, 27, 94, 143, 213, 7, 122, 20, 242, 127, 27, 69, 42, 147, 105, 145, 40, 52, 238, 255, 255, 255, 216, 102, + 159, 27, 190, 103, 37, 96, 126, 124, 59, 196, 159, 72, 116, 161, 226, 90, 104, 25, 152, 63, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 782, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13851784491741632308" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1092d6e66629cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9302" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e35" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "861e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdcfc468e6294b42b2cf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b798c54d1bc1ce830e7aa1f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8732962289211565254" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd0605fdc074fb5ad97e3e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15106434726203773645" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18348755749924694567" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9367889408350550724" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2727113000a711a35c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5504001994528424831" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4519396899840909259" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02118387eace" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11594695968120683679" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6208737278410860845" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12259712488757819947" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7443f4dfa9b185a523" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14399103951923355173" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1619312783413070053" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9f1bc03b6c9af78657349fbf471092d6e66629cc429302413d425e3542861e4afdcfc468e6294b42b2cf4c8b798c54d1bc1ce830e7aa1f1b7931b6eecd5664c64bbd0605fdc074fb5ad97e3e4157ffd8669f1bd1a4d6589e0052cd9f1bfea3e02380aaea271b82016dc89fe0fac4ffff492727113000a711a35cff1b4c6224a70ee8837fbf1b3eb81f891e04dfcb4602118387eace1ba0e8a28d3a7cbc9f1b5629dda8cf67a92d1baa233f8dc4d47a2b497443f4dfa9b185a5231bc7d3e4c12a509e251b1678f465a395c8e5ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 27, 192, 59, 108, 154, 247, 134, 87, 52, 159, 191, + 71, 16, 146, 214, 230, 102, 41, 204, 66, 147, 2, 65, 61, 66, 94, 53, 66, 134, 30, 74, 253, 207, 196, 104, 230, 41, + 75, 66, 178, 207, 76, 139, 121, 140, 84, 209, 188, 28, 232, 48, 231, 170, 31, 27, 121, 49, 182, 238, 205, 86, 100, + 198, 75, 189, 6, 5, 253, 192, 116, 251, 90, 217, 126, 62, 65, 87, 255, 216, 102, 159, 27, 209, 164, 214, 88, 158, + 0, 82, 205, 159, 27, 254, 163, 224, 35, 128, 170, 234, 39, 27, 130, 1, 109, 200, 159, 224, 250, 196, 255, 255, 73, + 39, 39, 17, 48, 0, 167, 17, 163, 92, 255, 27, 76, 98, 36, 167, 14, 232, 131, 127, 191, 27, 62, 184, 31, 137, 30, + 4, 223, 203, 70, 2, 17, 131, 135, 234, 206, 27, 160, 232, 162, 141, 58, 124, 188, 159, 27, 86, 41, 221, 168, 207, + 103, 169, 45, 27, 170, 35, 63, 141, 196, 212, 122, 43, 73, 116, 67, 244, 223, 169, 177, 133, 165, 35, 27, 199, + 211, 228, 193, 42, 80, 158, 37, 27, 22, 120, 244, 101, 163, 149, 200, 229, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 783, + "sample": { + "_tag": "ByteArray", + "bytearray": "18db3cd2a10d52" + }, + "cborHex": "4718db3cd2a10d52", + "cborBytes": [71, 24, 219, 60, 210, 161, 13, 82], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 784, + "sample": { + "_tag": "ByteArray", + "bytearray": "45e3f7" + }, + "cborHex": "4345e3f7", + "cborBytes": [67, 69, 227, 247], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 785, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa2f" + }, + "cborHex": "42fa2f", + "cborBytes": [66, 250, 47], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 786, + "sample": { + "_tag": "ByteArray", + "bytearray": "cd17" + }, + "cborHex": "42cd17", + "cborBytes": [66, 205, 23], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 787, + "sample": { + "_tag": "ByteArray", + "bytearray": "935e5dc48472d0" + }, + "cborHex": "47935e5dc48472d0", + "cborBytes": [71, 147, 94, 93, 196, 132, 114, 208], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 788, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17238509258044072340" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4061507580868908246" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b40eedce" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0c1d84f78072c666f2250a9b" + } + ] + }, + "cborHex": "9fd8669f1bef3b7cd62effe1949f1b385d5fa0423f54d644b40eedceffff4c0c1d84f78072c666f2250a9bff", + "cborBytes": [ + 159, 216, 102, 159, 27, 239, 59, 124, 214, 46, 255, 225, 148, 159, 27, 56, 93, 95, 160, 66, 63, 84, 214, 68, 180, + 14, 237, 206, 255, 255, 76, 12, 29, 132, 247, 128, 114, 198, 102, 242, 37, 10, 155, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 789, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0495251c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4906" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e785206fa00d62cbc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2787043358681295660" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12247418852778256748" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1392045796914442844" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf440495251c424906493e785206fa00d62cbcbf1b26ad912b17cf6b2c01ff416bbf1ba9f7928e9745296c1b13518a46e429325cffff", + "cborBytes": [ + 191, 68, 4, 149, 37, 28, 66, 73, 6, 73, 62, 120, 82, 6, 250, 0, 214, 44, 188, 191, 27, 38, 173, 145, 43, 23, 207, + 107, 44, 1, 255, 65, 107, 191, 27, 169, 247, 146, 142, 151, 69, 41, 108, 27, 19, 81, 138, 70, 228, 41, 50, 92, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 790, + "sample": { + "_tag": "ByteArray", + "bytearray": "3d" + }, + "cborHex": "413d", + "cborBytes": [65, 61], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 791, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8409218695782913824" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e14c1157" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b46c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f78fa26160" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f98c66" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8754249416067120194" + } + } + } + ] + } + ] + }, + "cborHex": "9fa0bf1b74b38bd990b6d72044e14c115742b46c45f78fa2616043f98c661b797d57763fd9fc42ffff", + "cborBytes": [ + 159, 160, 191, 27, 116, 179, 139, 217, 144, 182, 215, 32, 68, 225, 76, 17, 87, 66, 180, 108, 69, 247, 143, 162, + 97, 96, 67, 249, 140, 102, 27, 121, 125, 87, 118, 63, 217, 252, 66, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 792, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04fd0465ff07dd740505b2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f104" + } + } + ] + }, + "cborHex": "bf4b04fd0465ff07dd740505b242f104ff", + "cborBytes": [191, 75, 4, 253, 4, 101, 255, 7, 221, 116, 5, 5, 178, 66, 241, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 793, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17020171813152435572" + } + } + } + ] + }, + "cborHex": "bf41491bec33cc165b112d74ff", + "cborBytes": [191, 65, 73, 27, 236, 51, 204, 22, 91, 17, 45, 116, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 794, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17306738085676143638" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17717113742744394508" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f74ccb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14214433188370623878" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bf02de298097354169f1bf5dfd51469789b0c43f74ccb1bc543cfac6c5aad86ffff", + "cborBytes": [ + 191, 27, 240, 45, 226, 152, 9, 115, 84, 22, 159, 27, 245, 223, 213, 20, 105, 120, 155, 12, 67, 247, 76, 203, 27, + 197, 67, 207, 172, 108, 90, 173, 134, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 795, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5711925623877777606" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "abc463314af1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d732b6cc0221ccf1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0a963f222c4f0c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15972250701291269465" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62089a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa4bd1e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18a8339840a1fa2d86" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7905372437522587087" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8b9caca566a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9761596676167057089" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17465911633169429551" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2cc4a05a83e220eb4c4640c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "275137942873107192" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11122574034194182623" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "862928983051294154" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f03a3d89f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10625764445021713581" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8036306d2c7c7cca15b9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13638561905915440434" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15985310956889808569" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6063299042601035357" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15425070638285289816" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c9490bc920" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17311021580236107518" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2526692988344270462" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4f44d61782afb8c6bf46abc463314af148d732b6cc0221ccf148c0a963f222c4f0c31bdda8d56361f32d5941ed4362089a44fa4bd1e94918a8339840a1fa2d86ff1b6db58658f3b29dcf46e8b9caca566a1b8778287533923ec1d8669f1bf26362178d6d342f9f4c2cc4a05a83e220eb4c4640c41b03d17c80552eeaf8ffff1b9a5b52277820b1dfbf1b0bf9bd568d2955ca457f03a3d89f1b93764c770c7eb4ad4a8036306d2c7c7cca15b91bbd45e7cb1143ad3241f31bddd73b9f19939eb91b54252a5ac133665dff1bd610dc051e4d79589f45c9490bc9201bf03d1a68d5182efe1b23109de2cabafe7effff", + "cborBytes": [ + 191, 27, 79, 68, 214, 23, 130, 175, 184, 198, 191, 70, 171, 196, 99, 49, 74, 241, 72, 215, 50, 182, 204, 2, 33, + 204, 241, 72, 192, 169, 99, 242, 34, 196, 240, 195, 27, 221, 168, 213, 99, 97, 243, 45, 89, 65, 237, 67, 98, 8, + 154, 68, 250, 75, 209, 233, 73, 24, 168, 51, 152, 64, 161, 250, 45, 134, 255, 27, 109, 181, 134, 88, 243, 178, + 157, 207, 70, 232, 185, 202, 202, 86, 106, 27, 135, 120, 40, 117, 51, 146, 62, 193, 216, 102, 159, 27, 242, 99, + 98, 23, 141, 109, 52, 47, 159, 76, 44, 196, 160, 90, 131, 226, 32, 235, 76, 70, 64, 196, 27, 3, 209, 124, 128, 85, + 46, 234, 248, 255, 255, 27, 154, 91, 82, 39, 120, 32, 177, 223, 191, 27, 11, 249, 189, 86, 141, 41, 85, 202, 69, + 127, 3, 163, 216, 159, 27, 147, 118, 76, 119, 12, 126, 180, 173, 74, 128, 54, 48, 109, 44, 124, 124, 202, 21, 185, + 27, 189, 69, 231, 203, 17, 67, 173, 50, 65, 243, 27, 221, 215, 59, 159, 25, 147, 158, 185, 27, 84, 37, 42, 90, + 193, 51, 102, 93, 255, 27, 214, 16, 220, 5, 30, 77, 121, 88, 159, 69, 201, 73, 11, 201, 32, 27, 240, 61, 26, 104, + 213, 24, 46, 254, 27, 35, 16, 157, 226, 202, 186, 254, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 796, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + } + ] + } + ] + }, + "cborHex": "9f14bf1bffffffffffffffff0cffff", + "cborBytes": [159, 20, 191, 27, 255, 255, 255, 255, 255, 255, 255, 255, 12, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 797, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "693102418693959620" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f7f6" + } + ] + } + ] + }, + "cborHex": "d8669f1b099e64fa4337afc49f9f42f7f6ffffff", + "cborBytes": [216, 102, 159, 27, 9, 158, 100, 250, 67, 55, 175, 196, 159, 159, 66, 247, 246, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 798, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01c2e80048343c3fe3d877b8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3477444011002796531" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "217c4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d77c9b76fca8e5df00daa13" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "484788d1cec5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "114abd7964d33f535585" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13018260725142135926" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37aeee3647e245e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16204201023368241872" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "836fb5cc8a5b4c02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10381561481424500172" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91371273c74c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16189582091387916908" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f27c05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10732050181315963301" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88d452" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a72eee287f824f4141d8" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff5368fc540fef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + }, + "cborHex": "bf4c01c2e80048343c3fe3d877b89f1bfffffffffffffffd1b30425ce75a2199f3ff43217c4c4c9d77c9b76fca8e5df00daa1346484788d1cec5bf4a114abd7964d33f5355851bb4aa2727e38424764837aeee3647e245e11be0e0e2fa2ae2a2d048836fb5cc8a5b4c021b9012b729da2f75cc4691371273c74c1be0acf322d333d26c43f27c051b94efe6c7710129a5ff4388d452a04aa72eee287f824f4141d88047ff5368fc540fef03ff", + "cborBytes": [ + 191, 76, 1, 194, 232, 0, 72, 52, 60, 63, 227, 216, 119, 184, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 27, + 48, 66, 92, 231, 90, 33, 153, 243, 255, 67, 33, 124, 76, 76, 157, 119, 201, 183, 111, 202, 142, 93, 240, 13, 170, + 19, 70, 72, 71, 136, 209, 206, 197, 191, 74, 17, 74, 189, 121, 100, 211, 63, 83, 85, 133, 27, 180, 170, 39, 39, + 227, 132, 36, 118, 72, 55, 174, 238, 54, 71, 226, 69, 225, 27, 224, 224, 226, 250, 42, 226, 162, 208, 72, 131, + 111, 181, 204, 138, 91, 76, 2, 27, 144, 18, 183, 41, 218, 47, 117, 204, 70, 145, 55, 18, 115, 199, 76, 27, 224, + 172, 243, 34, 211, 51, 210, 108, 67, 242, 124, 5, 27, 148, 239, 230, 199, 113, 1, 41, 165, 255, 67, 136, 212, 82, + 160, 74, 167, 46, 238, 40, 127, 130, 79, 65, 65, 216, 128, 71, 255, 83, 104, 252, 84, 15, 239, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 799, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15985624567916097786" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8577503069324333601" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7155451996001086978" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3788825756397234504" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7852333687661363531" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12087290322484511133" + } + }, + { + "_tag": "ByteArray", + "bytearray": "38b971da9e1b2631" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "274265505747061805" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1564899199033514900" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16928153791024246302" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1039538044725886279" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c8f9142cfe8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1973420912653651891" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13805960024955727835" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8482777775511986070" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "785218a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12921457361959409192" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "67429147856545361" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14114552374389428814" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4d7363012" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d3" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2956537363621481489" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "680f21315df2daf958" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6119167483675126672" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16006823158334778838" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6670823976908508991" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13653443797091766404" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9296202246357280072" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7625892096437895242" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10843036389324744035" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12884546154769645327" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17277518335424996429" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "273f24" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1456936284560441367" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11303227452673283154" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5267560729134246215" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1741610308227646617" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c395c73e980b911a6e" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1e06f5f188e6fbbc15c773" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9474818637525953277" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cab788180d86a9ee79162c" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "3578cf796c0de9d1" + } + ] + }, + "cborHex": "d8669f1bddd858d95b6570fa9f9fd8669f1b7709699892e652219f1b634d45addd012e021b34949cf38de86948ffffd8669f1b6cf917e2aee3814b9f1ba7beae81d0b4c19d4838b971da9e1b26311b03ce63063c324c2d1b15b7a387c3af9b941beaece22f092eae1effffbf1b0e6d2e580e63fd47464c8f9142cfe81b1b62ffdd4b0c4fb31bbf989f7edebaafdb1b75b8e17171f85f9644785218a71bb3523d0287f256281b00ef8e73e57f26511bc3e0f69a3720d24e45b4d7363012ff41d3bf1b2907bb115bd40c1149680f21315df2daf9581b54eba667d993ab901bde23a8dacf0a6dd61b5c9387103eca4f3f1bbd7ac6cb5e6a50841b8102beb08e5065481b69d49c753fa3c04a1b967a3425b055e5631bb2cf1a76672b7f0f1befc61362c74e244d43273f24ffff1b143813d4e59a40179f1b9cdd217b2c08d452d8669f1b491a22930cd829479f1b182b71590f11449949c395c73e980b911a6effff4b1e06f5f188e6fbbc15c773d8669f1b837d5159e0fc2afd9f4bcab788180d86a9ee79162cffffff80483578cf796c0de9d1ffff", + "cborBytes": [ + 216, 102, 159, 27, 221, 216, 88, 217, 91, 101, 112, 250, 159, 159, 216, 102, 159, 27, 119, 9, 105, 152, 146, 230, + 82, 33, 159, 27, 99, 77, 69, 173, 221, 1, 46, 2, 27, 52, 148, 156, 243, 141, 232, 105, 72, 255, 255, 216, 102, + 159, 27, 108, 249, 23, 226, 174, 227, 129, 75, 159, 27, 167, 190, 174, 129, 208, 180, 193, 157, 72, 56, 185, 113, + 218, 158, 27, 38, 49, 27, 3, 206, 99, 6, 60, 50, 76, 45, 27, 21, 183, 163, 135, 195, 175, 155, 148, 27, 234, 236, + 226, 47, 9, 46, 174, 30, 255, 255, 191, 27, 14, 109, 46, 88, 14, 99, 253, 71, 70, 76, 143, 145, 66, 207, 232, 27, + 27, 98, 255, 221, 75, 12, 79, 179, 27, 191, 152, 159, 126, 222, 186, 175, 219, 27, 117, 184, 225, 113, 113, 248, + 95, 150, 68, 120, 82, 24, 167, 27, 179, 82, 61, 2, 135, 242, 86, 40, 27, 0, 239, 142, 115, 229, 127, 38, 81, 27, + 195, 224, 246, 154, 55, 32, 210, 78, 69, 180, 215, 54, 48, 18, 255, 65, 211, 191, 27, 41, 7, 187, 17, 91, 212, 12, + 17, 73, 104, 15, 33, 49, 93, 242, 218, 249, 88, 27, 84, 235, 166, 103, 217, 147, 171, 144, 27, 222, 35, 168, 218, + 207, 10, 109, 214, 27, 92, 147, 135, 16, 62, 202, 79, 63, 27, 189, 122, 198, 203, 94, 106, 80, 132, 27, 129, 2, + 190, 176, 142, 80, 101, 72, 27, 105, 212, 156, 117, 63, 163, 192, 74, 27, 150, 122, 52, 37, 176, 85, 229, 99, 27, + 178, 207, 26, 118, 103, 43, 127, 15, 27, 239, 198, 19, 98, 199, 78, 36, 77, 67, 39, 63, 36, 255, 255, 27, 20, 56, + 19, 212, 229, 154, 64, 23, 159, 27, 156, 221, 33, 123, 44, 8, 212, 82, 216, 102, 159, 27, 73, 26, 34, 147, 12, + 216, 41, 71, 159, 27, 24, 43, 113, 89, 15, 17, 68, 153, 73, 195, 149, 199, 62, 152, 11, 145, 26, 110, 255, 255, + 75, 30, 6, 245, 241, 136, 230, 251, 188, 21, 199, 115, 216, 102, 159, 27, 131, 125, 81, 89, 224, 252, 42, 253, + 159, 75, 202, 183, 136, 24, 13, 134, 169, 238, 121, 22, 44, 255, 255, 255, 128, 72, 53, 120, 207, 121, 108, 13, + 233, 209, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 800, + "sample": { + "_tag": "ByteArray", + "bytearray": "667ec5cd7c28ff982a4bcf24" + }, + "cborHex": "4c667ec5cd7c28ff982a4bcf24", + "cborBytes": [76, 102, 126, 197, 205, 124, 40, 255, 152, 42, 75, 207, 36], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 801, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10587018298745684745" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7314765098247374241" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb94ebc0" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5708061721839116403" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17514093186772739904" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1972244775394443614" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df01c0fa94" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7154294158513984835" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2370363467311275245" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13450640738833022842" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13627947425208149555" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f2a5c96" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14642281151479487943" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df018796fd0ad519c37c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15516955684371293720" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b427" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17925575636374719902" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "421ce9bffb2b02" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c46f1ba776" + } + ] + }, + "cborHex": "9fd8669f1b92eca50cdf4c03099fbf1b6583441a0075c5a144eb94ebc0ffd8669f1b4f371be4b639a0739f1bf30e8ef5b0ada7401b1b5ed22c7f81815e45df01c0fa94ffffffffbf1b634928a1d0e0d5431b20e53903c9a6dced1bbaaa467cc78a3f7a4207d31bbd2031fab13b2633447f2a5c961bcb33d5210f551dc74adf018796fd0ad519c37c1bd7574cfb8a6de61842b4271bf8c4701148830d9e47421ce9bffb2b02ff45c46f1ba776ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 146, 236, 165, 12, 223, 76, 3, 9, 159, 191, 27, 101, 131, 68, 26, 0, 117, 197, 161, 68, + 235, 148, 235, 192, 255, 216, 102, 159, 27, 79, 55, 27, 228, 182, 57, 160, 115, 159, 27, 243, 14, 142, 245, 176, + 173, 167, 64, 27, 27, 94, 210, 44, 127, 129, 129, 94, 69, 223, 1, 192, 250, 148, 255, 255, 255, 255, 191, 27, 99, + 73, 40, 161, 208, 224, 213, 67, 27, 32, 229, 57, 3, 201, 166, 220, 237, 27, 186, 170, 70, 124, 199, 138, 63, 122, + 66, 7, 211, 27, 189, 32, 49, 250, 177, 59, 38, 51, 68, 127, 42, 92, 150, 27, 203, 51, 213, 33, 15, 85, 29, 199, + 74, 223, 1, 135, 150, 253, 10, 213, 25, 195, 124, 27, 215, 87, 76, 251, 138, 109, 230, 24, 66, 180, 39, 27, 248, + 196, 112, 17, 72, 131, 13, 158, 71, 66, 28, 233, 191, 251, 43, 2, 255, 69, 196, 111, 27, 167, 118, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 802, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7049397768799534835" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7e47cba30cefeab2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17354322278370945907" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "429601682052474956" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f81a90" + }, + { + "_tag": "ByteArray", + "bytearray": "d6" + }, + { + "_tag": "ByteArray", + "bytearray": "46f166a535bb" + }, + { + "_tag": "ByteArray", + "bytearray": "02d0b19e3d18147c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1175c7603d3d0277b463" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9226625421772861873" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13457476581068445543" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10440168724358413235" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c77f45ad13a862" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b465d71b7ac5644c690600" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13451121674690768997" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7677300173735759777" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1174830902016333669" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10451172887035043820" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1659082517599485652" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04243a57a49af3a85a27bc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3213699999760193373" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17412284368266098198" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5019883845895817945" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb0111" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8603916441272221085" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22cf56b07f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13618628475497329823" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a6f" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3968101390681557964" + } + } + ] + }, + "cborHex": "9fd8669f1b61d47debe1ba3ef39f487e47cba30cefeab21bf0d6f02a3ff2ab73d8669f1b05f6407425a5e84c9f43f81a9041d64646f166a535bb4802d0b19e3d18147cffff4a1175c7603d3d0277b463bf1b800b8eefb45c31b11bbac28fa653b917671b90e2ee23f286bbb347c77f45ad13a8624bb465d71b7ac5644c6906001bbaabfbe562803065ffffffd8669f1b6a8b3fd4f9908fa19fbf1b104dd67b19d5d7651b910a065e39eadfec1b17063ec27293fed44b04243a57a49af3a85a27bc1b2c995b1f7461175d1bf1a4dc60f29676161b45aa35c2e8578ad943fb01111b7767406af72c7d9d4522cf56b07f1bbcff1671a209b49f422a6fffffff1b37118730e04ecbccff", + "cborBytes": [ + 159, 216, 102, 159, 27, 97, 212, 125, 235, 225, 186, 62, 243, 159, 72, 126, 71, 203, 163, 12, 239, 234, 178, 27, + 240, 214, 240, 42, 63, 242, 171, 115, 216, 102, 159, 27, 5, 246, 64, 116, 37, 165, 232, 76, 159, 67, 248, 26, 144, + 65, 214, 70, 70, 241, 102, 165, 53, 187, 72, 2, 208, 177, 158, 61, 24, 20, 124, 255, 255, 74, 17, 117, 199, 96, + 61, 61, 2, 119, 180, 99, 191, 27, 128, 11, 142, 239, 180, 92, 49, 177, 27, 186, 194, 143, 166, 83, 185, 23, 103, + 27, 144, 226, 238, 35, 242, 134, 187, 179, 71, 199, 127, 69, 173, 19, 168, 98, 75, 180, 101, 215, 27, 122, 197, + 100, 76, 105, 6, 0, 27, 186, 171, 251, 229, 98, 128, 48, 101, 255, 255, 255, 216, 102, 159, 27, 106, 139, 63, 212, + 249, 144, 143, 161, 159, 191, 27, 16, 77, 214, 123, 25, 213, 215, 101, 27, 145, 10, 6, 94, 57, 234, 223, 236, 27, + 23, 6, 62, 194, 114, 147, 254, 212, 75, 4, 36, 58, 87, 164, 154, 243, 168, 90, 39, 188, 27, 44, 153, 91, 31, 116, + 97, 23, 93, 27, 241, 164, 220, 96, 242, 150, 118, 22, 27, 69, 170, 53, 194, 232, 87, 138, 217, 67, 251, 1, 17, 27, + 119, 103, 64, 106, 247, 44, 125, 157, 69, 34, 207, 86, 176, 127, 27, 188, 255, 22, 113, 162, 9, 180, 159, 66, 42, + 111, 255, 255, 255, 27, 55, 17, 135, 48, 224, 78, 203, 204, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 803, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12238846755082238758" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "345f824d1ebcf1a06a55" + }, + { + "_tag": "ByteArray", + "bytearray": "15852797df" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1f" + }, + { + "_tag": "ByteArray", + "bytearray": "e0645198d69a665bea203416" + } + ] + } + ] + }, + "cborHex": "d905099f9fd8669f1ba9d91e47911e7b269f4a345f824d1ebcf1a06a554515852797dfffff411f4ce0645198d69a665bea203416ffff", + "cborBytes": [ + 217, 5, 9, 159, 159, 216, 102, 159, 27, 169, 217, 30, 71, 145, 30, 123, 38, 159, 74, 52, 95, 130, 77, 30, 188, + 241, 160, 106, 85, 69, 21, 133, 39, 151, 223, 255, 255, 65, 31, 76, 224, 100, 81, 152, 214, 154, 102, 91, 234, 32, + 52, 22, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 804, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18d7323c9c5ad3288d" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "266983890ab1b918c33fcedd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14620282068924344288" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4edb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3206292849961774198" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1172034972110146926" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11563511784350055149" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e543375ddcf66ee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1713695409276961568" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d6259b2d2dad1ce" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1000290646939718" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d164be39" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edaa85d8c2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "324956a4610e6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efc1c0775f9d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3522104612577046680" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c686cc08174" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2538640619050706761" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4918d7323c9c5ad3288da04c266983890ab1b918c33fcedd1bcae5ad14823fa7e0424edbd8669f1b2c7f0a5bffd8ac769f1b1043e798f0f5cd6e1ba079d8b3a63a7aed486e543375ddcf66ee1b17c844e52b2bc320ffff487d6259b2d2dad1ce9f1b00038dc250aed846ff44d164be39417345edaa85d8c2bf47324956a4610e6d46efc1c0775f9d414a1b30e1077bf66b7098465c686cc081741b233b103156e52749ffff", + "cborBytes": [ + 191, 73, 24, 215, 50, 60, 156, 90, 211, 40, 141, 160, 76, 38, 105, 131, 137, 10, 177, 185, 24, 195, 63, 206, 221, + 27, 202, 229, 173, 20, 130, 63, 167, 224, 66, 78, 219, 216, 102, 159, 27, 44, 127, 10, 91, 255, 216, 172, 118, + 159, 27, 16, 67, 231, 152, 240, 245, 205, 110, 27, 160, 121, 216, 179, 166, 58, 122, 237, 72, 110, 84, 51, 117, + 221, 207, 102, 238, 27, 23, 200, 68, 229, 43, 43, 195, 32, 255, 255, 72, 125, 98, 89, 178, 210, 218, 209, 206, + 159, 27, 0, 3, 141, 194, 80, 174, 216, 70, 255, 68, 209, 100, 190, 57, 65, 115, 69, 237, 170, 133, 216, 194, 191, + 71, 50, 73, 86, 164, 97, 14, 109, 70, 239, 193, 192, 119, 95, 157, 65, 74, 27, 48, 225, 7, 123, 246, 107, 112, + 152, 70, 92, 104, 108, 192, 129, 116, 27, 35, 59, 16, 49, 86, 229, 39, 73, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 805, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12465979821619744911" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2533006808262462271" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11925962837040116128" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7509474627475827384" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69f7cb26fb593d3cde772ae8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13190662781192542760" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8313e01562f6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13621824752856490891" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15935688433768974257" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2442348270629467713" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2580099bb09c935b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3565231270015421047" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "077301566a389dd0b45a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4875825664461740945" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6845086545203289925" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8641858875898510903" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31c5a09515e58ae282436c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9759787682478987334" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15963948043123994405" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9975828951155589799" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1289ec5c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4712415956737821279" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4785ce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6404928977745198131" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12637694765577875597" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8cb9a3b32db795" + }, + { + "_tag": "ByteArray", + "bytearray": "13986d7e5224cc2c7b6df0b4" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14215588490760136811" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4ac11f3918ac7387c2e58" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5584240804477976211" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea6bb473910b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18289675259770270142" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bad000e99a4d5108f9f80bf1b23270c458c214b3f1ba58188038a4931a01b6837036304816ab84c69f7cb26fb593d3cde772ae81bb70ea5e990f29a28468313e01562f61bbd0a7170f2a2638b1bdd26f0331a19c7b1ffbf1b21e4f6cfe0a8b641482580099bb09c935b1b317a3ef35f624a774a077301566a389dd0b45a1b43aa699bccf99b911b5efea1f22fa5df451b77ee0cdc70fcbe374b31c5a09515e58ae282436c1b8771bb30096498461bdd8b562a2332af251b8a714393adafc2a7441289ec5cffd8669f1b4165dd585f3d8a5f9f434785ce1b58e2e0f8721bbc331baf621c6e9215308d478cb9a3b32db7954c13986d7e5224cc2c7b6df0b4ffffffffbf1bc547ea6a38e3a86b4bf4ac11f3918ac7387c2e5841691b4d7f356cd326be9346ea6bb473910b1bfdd1fabef3db71beffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 173, 0, 14, 153, 164, 213, 16, 143, 159, 128, 191, 27, 35, 39, 12, 69, 140, 33, 75, 63, + 27, 165, 129, 136, 3, 138, 73, 49, 160, 27, 104, 55, 3, 99, 4, 129, 106, 184, 76, 105, 247, 203, 38, 251, 89, 61, + 60, 222, 119, 42, 232, 27, 183, 14, 165, 233, 144, 242, 154, 40, 70, 131, 19, 224, 21, 98, 246, 27, 189, 10, 113, + 112, 242, 162, 99, 139, 27, 221, 38, 240, 51, 26, 25, 199, 177, 255, 191, 27, 33, 228, 246, 207, 224, 168, 182, + 65, 72, 37, 128, 9, 155, 176, 156, 147, 91, 27, 49, 122, 62, 243, 95, 98, 74, 119, 74, 7, 115, 1, 86, 106, 56, + 157, 208, 180, 90, 27, 67, 170, 105, 155, 204, 249, 155, 145, 27, 94, 254, 161, 242, 47, 165, 223, 69, 27, 119, + 238, 12, 220, 112, 252, 190, 55, 75, 49, 197, 160, 149, 21, 229, 138, 226, 130, 67, 108, 27, 135, 113, 187, 48, 9, + 100, 152, 70, 27, 221, 139, 86, 42, 35, 50, 175, 37, 27, 138, 113, 67, 147, 173, 175, 194, 167, 68, 18, 137, 236, + 92, 255, 216, 102, 159, 27, 65, 101, 221, 88, 95, 61, 138, 95, 159, 67, 71, 133, 206, 27, 88, 226, 224, 248, 114, + 27, 188, 51, 27, 175, 98, 28, 110, 146, 21, 48, 141, 71, 140, 185, 163, 179, 45, 183, 149, 76, 19, 152, 109, 126, + 82, 36, 204, 44, 123, 109, 240, 180, 255, 255, 255, 255, 191, 27, 197, 71, 234, 106, 56, 227, 168, 107, 75, 244, + 172, 17, 243, 145, 138, 199, 56, 124, 46, 88, 65, 105, 27, 77, 127, 53, 108, 211, 38, 190, 147, 70, 234, 107, 180, + 115, 145, 11, 27, 253, 209, 250, 190, 243, 219, 113, 190, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 806, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ffb7d12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5548442557088893402" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0772121a5a0ba46d59eda5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d72" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "388633500316082981" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e637935cd2e89906c2170" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10425887218524590153" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89eb7c3f6037fbffd4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8014888384648603732" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d852c60fb76aac15" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e981f5" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7175773889115346180" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01d61ccf7b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18403431778974470463" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e4d91c54c759385769" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8224d14d381396ad41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9fc65dce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12bf4c6752" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6795728811404255647" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dce414e0e6ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1738981046836382174" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "30591a8c3146e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17690884919746147990" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18222297406432549201" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12765488975166371726" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16025406670637944648" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7799145721511844097" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4784478921446436971" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12682179567835792380" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "840178482776662822" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94901b711882da" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3673410319950224106" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13756586958251436747" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6294463368368823605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12266377734345333891" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9195909114163816001" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10074356208799962467" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11129227245527241793" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14920940593826786138" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18421722901962861612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7293332413667940321" + } + } + } + ] + } + ] + }, + "cborHex": "d87a9fbf442ffb7d121b4d00071bd7f189da41354b0772121a5a0ba46d59eda5423d721b0564b41c062823254b5e637935cd2e89906c21701b90b0312fc07190494989eb7c3f6037fbffd41b6f3a9a856962685448d852c60fb76aac1543e981f5ff1b63957855513e55049fbf4501d61ccf7b1bff661fb289e8913fff49e4d91c54c759385769bf498224d14d381396ad4142d4b5449fc65dce4512bf4c675241a91b5e4f475941a3619f46dce414e0e6ed1b18221a0c6fd1c9deff9f4730591a8c3146e81bf582a61aabc8b6961bfce29af1fdef19511bb1282096a4f4f78e1bde65ae75f08ccf48ffd8669f1b6c3c21b64a3899019f1b4265e23ad428b06b1bb000271fb691c3fcffffffbf1b0ba8e9e0edd463264794901b711882da1b32fa933932e31aea1bbee936f3f8592acb1b575a6d1583551d351baa3aed8f306a1c831b7f9e6e9e0882e6411b8bcf4d987e45d5631b9a72f536f24014411bcf11d46a61c06b5a1bffa71b607a2cac2c1b65371f30418517e1ffff", + "cborBytes": [ + 216, 122, 159, 191, 68, 47, 251, 125, 18, 27, 77, 0, 7, 27, 215, 241, 137, 218, 65, 53, 75, 7, 114, 18, 26, 90, + 11, 164, 109, 89, 237, 165, 66, 61, 114, 27, 5, 100, 180, 28, 6, 40, 35, 37, 75, 94, 99, 121, 53, 205, 46, 137, + 144, 108, 33, 112, 27, 144, 176, 49, 47, 192, 113, 144, 73, 73, 137, 235, 124, 63, 96, 55, 251, 255, 212, 27, 111, + 58, 154, 133, 105, 98, 104, 84, 72, 216, 82, 198, 15, 183, 106, 172, 21, 67, 233, 129, 245, 255, 27, 99, 149, 120, + 85, 81, 62, 85, 4, 159, 191, 69, 1, 214, 28, 207, 123, 27, 255, 102, 31, 178, 137, 232, 145, 63, 255, 73, 228, + 217, 28, 84, 199, 89, 56, 87, 105, 191, 73, 130, 36, 209, 77, 56, 19, 150, 173, 65, 66, 212, 181, 68, 159, 198, + 93, 206, 69, 18, 191, 76, 103, 82, 65, 169, 27, 94, 79, 71, 89, 65, 163, 97, 159, 70, 220, 228, 20, 224, 230, 237, + 27, 24, 34, 26, 12, 111, 209, 201, 222, 255, 159, 71, 48, 89, 26, 140, 49, 70, 232, 27, 245, 130, 166, 26, 171, + 200, 182, 150, 27, 252, 226, 154, 241, 253, 239, 25, 81, 27, 177, 40, 32, 150, 164, 244, 247, 142, 27, 222, 101, + 174, 117, 240, 140, 207, 72, 255, 216, 102, 159, 27, 108, 60, 33, 182, 74, 56, 153, 1, 159, 27, 66, 101, 226, 58, + 212, 40, 176, 107, 27, 176, 0, 39, 31, 182, 145, 195, 252, 255, 255, 255, 191, 27, 11, 168, 233, 224, 237, 212, + 99, 38, 71, 148, 144, 27, 113, 24, 130, 218, 27, 50, 250, 147, 57, 50, 227, 26, 234, 27, 190, 233, 54, 243, 248, + 89, 42, 203, 27, 87, 90, 109, 21, 131, 85, 29, 53, 27, 170, 58, 237, 143, 48, 106, 28, 131, 27, 127, 158, 110, + 158, 8, 130, 230, 65, 27, 139, 207, 77, 152, 126, 69, 213, 99, 27, 154, 114, 245, 54, 242, 64, 20, 65, 27, 207, + 17, 212, 106, 97, 192, 107, 90, 27, 255, 167, 27, 96, 122, 44, 172, 44, 27, 101, 55, 31, 48, 65, 133, 23, 225, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 807, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fa0ff", + "cborBytes": [159, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 808, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10513566973433829635" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2291455530567447253" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8443203086430866507" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5829255834432133761" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49bd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5335746604564977387" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b91e7b17585cd5903bf1b1fcce2aa1613b2d51b752c48791d318c4b1b50e5ad4bf4335a814249bd411e1b4a0c6144509796ebffff", + "cborBytes": [ + 191, 27, 145, 231, 177, 117, 133, 205, 89, 3, 191, 27, 31, 204, 226, 170, 22, 19, 178, 213, 27, 117, 44, 72, 121, + 29, 49, 140, 75, 27, 80, 229, 173, 75, 244, 51, 90, 129, 66, 73, 189, 65, 30, 27, 74, 12, 97, 68, 80, 151, 150, + 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 809, + "sample": { + "_tag": "ByteArray", + "bytearray": "b903" + }, + "cborHex": "42b903", + "cborBytes": [66, 185, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 810, + "sample": { + "_tag": "ByteArray", + "bytearray": "a26eb7ec3a71f686a515" + }, + "cborHex": "4aa26eb7ec3a71f686a515", + "cborBytes": [74, 162, 110, 183, 236, 58, 113, 246, 134, 165, 21], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 811, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5206028723527234881" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9bcbc4" + } + } + ] + } + ] + }, + "cborHex": "d905049fd8669f1bffffffffffffffec80ffbf1b483f878a94523541439bcbc4ffff", + "cborBytes": [ + 217, 5, 4, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 128, 255, 191, 27, 72, 63, 135, 138, + 148, 82, 53, 65, 67, 155, 203, 196, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 812, + "sample": { + "_tag": "ByteArray", + "bytearray": "dd45210bf0d8c7ec01" + }, + "cborHex": "49dd45210bf0d8c7ec01", + "cborBytes": [73, 221, 69, 33, 11, 240, 216, 199, 236, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 813, + "sample": { + "_tag": "ByteArray", + "bytearray": "07148cb54e29f5c1e7e7" + }, + "cborHex": "4a07148cb54e29f5c1e7e7", + "cborBytes": [74, 7, 20, 140, 181, 78, 41, 245, 193, 231, 231], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 814, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15757199607857399407" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6126654471646952977" + } + }, + { + "_tag": "ByteArray", + "bytearray": "24a32b8493e77e7d3e86b208" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2184851453703389391" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3748063881553024030" + } + }, + { + "_tag": "ByteArray", + "bytearray": "11498638a47b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13342341752272356172" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9627602829195448336" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05d2371720d07def27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5376763875498466245" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cbde2a803d86a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df2c2b03eba2b6cc32" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "520668054302435267" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f9fd8669f1bdaacd18ee143c66f9f1b55063fc814133e114c24a32b8493e77e7d3e86b2081b1e5226d240fc80cfffff9f1b3403cc3dff70941e4611498638a47b1bb9298522080e834cff1b859c1dc390bd9010bf4905d2371720d07def271b4a9e1a41e83d1bc5473cbde2a803d86a49df2c2b03eba2b6cc3241b91b0739c8d6369727c3ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 159, 216, 102, 159, 27, 218, 172, 209, 142, 225, + 67, 198, 111, 159, 27, 85, 6, 63, 200, 20, 19, 62, 17, 76, 36, 163, 43, 132, 147, 231, 126, 125, 62, 134, 178, 8, + 27, 30, 82, 38, 210, 64, 252, 128, 207, 255, 255, 159, 27, 52, 3, 204, 61, 255, 112, 148, 30, 70, 17, 73, 134, 56, + 164, 123, 27, 185, 41, 133, 34, 8, 14, 131, 76, 255, 27, 133, 156, 29, 195, 144, 189, 144, 16, 191, 73, 5, 210, + 55, 23, 32, 208, 125, 239, 39, 27, 74, 158, 26, 65, 232, 61, 27, 197, 71, 60, 189, 226, 168, 3, 216, 106, 73, 223, + 44, 43, 3, 235, 162, 182, 204, 50, 65, 185, 27, 7, 57, 200, 214, 54, 151, 39, 195, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 815, + "sample": { + "_tag": "ByteArray", + "bytearray": "a110fe05f8d2620301" + }, + "cborHex": "49a110fe05f8d2620301", + "cborBytes": [73, 161, 16, 254, 5, 248, 210, 98, 3, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 816, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [] + }, + "cborHex": "d9050980", + "cborBytes": [217, 5, 9, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 817, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9450815954413045821" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9918374818662915163" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1252723584930776309" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "753f8c4b7c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4572609712852348131" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4287662630161840440" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fefd" + }, + { + "_tag": "ByteArray", + "bytearray": "030a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b83280b09b862483d9f9fbf1b89a5255907951c5b1b11629176998d84f5ffbf0b45753f8c4b7c1b3f752c4e9f10ace31b3b80d671f3837938ff9f42fefd42030aff08ffffff", + "cborBytes": [ + 216, 102, 159, 27, 131, 40, 11, 9, 184, 98, 72, 61, 159, 159, 191, 27, 137, 165, 37, 89, 7, 149, 28, 91, 27, 17, + 98, 145, 118, 153, 141, 132, 245, 255, 191, 11, 69, 117, 63, 140, 75, 124, 27, 63, 117, 44, 78, 159, 16, 172, 227, + 27, 59, 128, 214, 113, 243, 131, 121, 56, 255, 159, 66, 254, 253, 66, 3, 10, 255, 8, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 818, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12600142202344589930" + }, + "fields": [] + }, + "cborHex": "d8669f1baedcb2931a284a6a80ff", + "cborBytes": [216, 102, 159, 27, 174, 220, 178, 147, 26, 40, 74, 106, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 819, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14660576228056894563" + }, + "fields": [] + }, + "cborHex": "d8669f1bcb74d46783de0c6380ff", + "cborBytes": [216, 102, 159, 27, 203, 116, 212, 103, 131, 222, 12, 99, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 820, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f4" + }, + { + "_tag": "ByteArray", + "bytearray": "7f36f608d22bb3840399e8ec" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "40b6aca6b72184cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f19f625270173313" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17555494819180399428" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7427144148319617453" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "357c43529b514adcea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7742715963051948552" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6923768284826325135" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6b20aa457f5909493e85" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd9050b9fd8669f1bffffffffffffffec9f41f44c7f36f608d22bb3840399e8ecffffbf4840b6aca6b72184cf413748f19f6252701733131bf3a1a58669754b44ffd8669f1b67128440903641ad9f49357c43529b514adcea1b6b73a7254e753a081b60162a924430508f4a6b20aa457f5909493e85ffffffff", + "cborBytes": [ + 159, 217, 5, 11, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 65, 244, 76, 127, 54, 246, + 8, 210, 43, 179, 132, 3, 153, 232, 236, 255, 255, 191, 72, 64, 182, 172, 166, 183, 33, 132, 207, 65, 55, 72, 241, + 159, 98, 82, 112, 23, 51, 19, 27, 243, 161, 165, 134, 105, 117, 75, 68, 255, 216, 102, 159, 27, 103, 18, 132, 64, + 144, 54, 65, 173, 159, 73, 53, 124, 67, 82, 155, 81, 74, 220, 234, 27, 107, 115, 167, 37, 78, 117, 58, 8, 27, 96, + 22, 42, 146, 68, 48, 80, 143, 74, 107, 32, 170, 69, 127, 89, 9, 73, 62, 133, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 821, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16148982897365614144" + }, + "fields": [] + }, + "cborHex": "d8669f1be01cb6625955fe4080ff", + "cborBytes": [216, 102, 159, 27, 224, 28, 182, 98, 89, 85, 254, 64, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 822, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10189342853277835264" + } + }, + "cborHex": "1b8d67d156f04a6000", + "cborBytes": [27, 141, 103, 209, 86, 240, 74, 96, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 823, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + } + ] + }, + "cborHex": "d87b9f9f10ffff", + "cborBytes": [216, 123, 159, 159, 16, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 824, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7007789158388496402" + } + }, + "cborHex": "1b6140ab1c56947812", + "cborBytes": [27, 97, 64, 171, 28, 86, 148, 120, 18], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 825, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2900269765166611392" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10862902425136914784" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "92862e64" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + } + ] + }, + "cborHex": "d9050a9f1b283fd3fc318fbbc01b96c0c8339803e1609f4492862e6405ffff", + "cborBytes": [ + 217, 5, 10, 159, 27, 40, 63, 211, 252, 49, 143, 187, 192, 27, 150, 192, 200, 51, 152, 3, 225, 96, 159, 68, 146, + 134, 46, 100, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 826, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28f312" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b2dd5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24409c123929cab14db43b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "125c9e3b37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7710346477916054445" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fdf8d321a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4c82ff23d12f201" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4807e386490e4b8dcc356c8c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5089549129359199618" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9af" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5296991387113867461" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4328f312bf430b2dd54b24409c123929cab14db43b45125c9e3b371b6b00a7453f5ee3ad453fdf8d321a48a4c82ff23d12f2014c4807e386490e4b8dcc356c8c1b46a1b5f7b25a8d8242c9af1b4982b19a1739c8c5ffff", + "cborBytes": [ + 191, 67, 40, 243, 18, 191, 67, 11, 45, 213, 75, 36, 64, 156, 18, 57, 41, 202, 177, 77, 180, 59, 69, 18, 92, 158, + 59, 55, 27, 107, 0, 167, 69, 63, 94, 227, 173, 69, 63, 223, 141, 50, 26, 72, 164, 200, 47, 242, 61, 18, 242, 1, + 76, 72, 7, 227, 134, 73, 14, 75, 141, 204, 53, 108, 140, 27, 70, 161, 181, 247, 178, 90, 141, 130, 66, 201, 175, + 27, 73, 130, 177, 154, 23, 57, 200, 197, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 827, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "715426526251398039" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59a9521d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5267380457157916174" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16098027612601440091" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5b12a61a979064750c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5050900417470758016" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1484" + }, + { + "_tag": "ByteArray", + "bytearray": "6c8d610ef79326b2bc05" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c055b2fd" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a40512ca6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4366782821916388582" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64c49f84481f052384502368" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55fc57" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80e08327ac1a80b9cb95d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17512351346219243724" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3727046813654372272" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7991380175846916536" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5aa6871140d4afa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12398236472571731649" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a6659374b5250be43" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c139df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5476488298912684406" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2de6c2dcc020083" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14268347458929213684" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b09edb4a2981b33979fbf41fc4459a9521dff1b49197e9e35bb760e9fd8669f1bdf67aed29989d75b9f495b12a61a979064750c1b4618672b3b377c804214844a6c8d610ef79326b2bc05ffff44c055b2fdbf453a40512ca61b3c99edd71f9aace64c64c49f84481f0523845023684355fc574b80e08327ac1a80b9cb95d11bf3085ec3d53b58cc41991b33b921548d1ecfb0419d1b6ee715ee067441b848c5aa6871140d4afa412bffffbf1bac0f626214ee1ec1495a6659374b5250be4343c139df1b4c0065179946197648f2de6c2dcc0200831bc6035a6abd52c0f4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 9, 237, 180, 162, 152, 27, 51, 151, 159, 191, 65, 252, 68, 89, 169, 82, 29, 255, 27, 73, 25, + 126, 158, 53, 187, 118, 14, 159, 216, 102, 159, 27, 223, 103, 174, 210, 153, 137, 215, 91, 159, 73, 91, 18, 166, + 26, 151, 144, 100, 117, 12, 27, 70, 24, 103, 43, 59, 55, 124, 128, 66, 20, 132, 74, 108, 141, 97, 14, 247, 147, + 38, 178, 188, 5, 255, 255, 68, 192, 85, 178, 253, 191, 69, 58, 64, 81, 44, 166, 27, 60, 153, 237, 215, 31, 154, + 172, 230, 76, 100, 196, 159, 132, 72, 31, 5, 35, 132, 80, 35, 104, 67, 85, 252, 87, 75, 128, 224, 131, 39, 172, + 26, 128, 185, 203, 149, 209, 27, 243, 8, 94, 195, 213, 59, 88, 204, 65, 153, 27, 51, 185, 33, 84, 141, 30, 207, + 176, 65, 157, 27, 110, 231, 21, 238, 6, 116, 65, 184, 72, 197, 170, 104, 113, 20, 13, 74, 250, 65, 43, 255, 255, + 191, 27, 172, 15, 98, 98, 20, 238, 30, 193, 73, 90, 102, 89, 55, 75, 82, 80, 190, 67, 67, 193, 57, 223, 27, 76, 0, + 101, 23, 153, 70, 25, 118, 72, 242, 222, 108, 45, 204, 2, 0, 131, 27, 198, 3, 90, 106, 189, 82, 192, 244, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 828, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "cborHex": "1bfffffffffffffff6", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 246], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 829, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [] + }, + "cborHex": "d87980", + "cborBytes": [216, 121, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 830, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6f177350da5056db" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3931488840588921801" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9633133125005543632" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9258559738858924087" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "535a581ec322751b50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b021ed755f66" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e21a9678f2b7c8ed0345674" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff46c12c426218" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5abd1abfc6f809c720" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "460961082ca3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12304719172706296283" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48e80d9f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd6106128e12be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6ceab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12f5d16fb9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e89a1e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54cda0b8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcaec1fe7201e6536f26e796" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7313953228382826311" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f486f177350da5056dbd8669f1b368f744545b70bc980ffbf1b85afc389e60108d01b807d03074e6b683749535a581ec322751b5046b021ed755f664c8e21a9678f2b7c8ed034567447ff46c12c426218ffbf410c495abd1abfc6f809c72046460961082ca31baac324e4f618e1db4448e80d9f47cd6106128e12be43c6ceab4512f5d16fb943e89a1e4454cda0b84cfcaec1fe7201e6536f26e7961b658061b5d1946f47ffa0ff", + "cborBytes": [ + 159, 72, 111, 23, 115, 80, 218, 80, 86, 219, 216, 102, 159, 27, 54, 143, 116, 69, 69, 183, 11, 201, 128, 255, 191, + 27, 133, 175, 195, 137, 230, 1, 8, 208, 27, 128, 125, 3, 7, 78, 107, 104, 55, 73, 83, 90, 88, 30, 195, 34, 117, + 27, 80, 70, 176, 33, 237, 117, 95, 102, 76, 142, 33, 169, 103, 143, 43, 124, 142, 208, 52, 86, 116, 71, 255, 70, + 193, 44, 66, 98, 24, 255, 191, 65, 12, 73, 90, 189, 26, 191, 198, 248, 9, 199, 32, 70, 70, 9, 97, 8, 44, 163, 27, + 170, 195, 36, 228, 246, 24, 225, 219, 68, 72, 232, 13, 159, 71, 205, 97, 6, 18, 142, 18, 190, 67, 198, 206, 171, + 69, 18, 245, 209, 111, 185, 67, 232, 154, 30, 68, 84, 205, 160, 184, 76, 252, 174, 193, 254, 114, 1, 230, 83, 111, + 38, 231, 150, 27, 101, 128, 97, 181, 209, 148, 111, 71, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 831, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8924781418404529112" + } + }, + "cborHex": "1b7bdb316a1e0243d8", + "cborBytes": [27, 123, 219, 49, 106, 30, 2, 67, 216], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 832, + "sample": { + "_tag": "ByteArray", + "bytearray": "d291c3f7" + }, + "cborHex": "44d291c3f7", + "cborBytes": [68, 210, 145, 195, 247], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 833, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18068483997996399225" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5316556698417517390" + } + }, + { + "_tag": "ByteArray", + "bytearray": "331d758e8b873246cb" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7257092901135420529" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9421846222708925935" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10799979184075208797" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2505329592164602806" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1bfac026771a67ba799f1b49c834261d66534e49331d758e8b873246cbffffbf1b64b65f8b3a2f8c711b82c11f3870ebe5ef1b95e13bd8e06a785d1b22c4b7fd823ed3b6ffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 250, 192, 38, 119, 26, 103, 186, 121, 159, 27, 73, 200, 52, 38, 29, 102, 83, 78, 73, + 51, 29, 117, 142, 139, 135, 50, 70, 203, 255, 255, 191, 27, 100, 182, 95, 139, 58, 47, 140, 113, 27, 130, 193, 31, + 56, 112, 235, 229, 239, 27, 149, 225, 59, 216, 224, 106, 120, 93, 27, 34, 196, 183, 253, 130, 62, 211, 182, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 834, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16059791451892885339" + } + }, + "cborHex": "1bdedfd73cb0ee275b", + "cborBytes": [27, 222, 223, 215, 60, 176, 238, 39, 91], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 835, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1231403018791605339" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "107d0601" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9166698005395435553" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5569e7ef482cbef17e16ae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12224283414292025664" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6f07ab506a1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17876828722106000353" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "384294325e7c679c9eb1" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11646785624737126978" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17400237370061154789" + } + } + ] + }, + "cborHex": "d905049fbf1b1116d285766ad45b44107d06011b7f36a744c6e070214b5569e7ef482cbef17e16ae1ba9a560ff8e93514046d6f07ab506a11bf8174101dba0e3e14a384294325e7c679c9eb1ff1ba1a1b1d181951a421bf17a0fb299f8e9e5ff", + "cborBytes": [ + 217, 5, 4, 159, 191, 27, 17, 22, 210, 133, 118, 106, 212, 91, 68, 16, 125, 6, 1, 27, 127, 54, 167, 68, 198, 224, + 112, 33, 75, 85, 105, 231, 239, 72, 44, 190, 241, 126, 22, 174, 27, 169, 165, 96, 255, 142, 147, 81, 64, 70, 214, + 240, 122, 181, 6, 161, 27, 248, 23, 65, 1, 219, 160, 227, 225, 74, 56, 66, 148, 50, 94, 124, 103, 156, 158, 177, + 255, 27, 161, 161, 177, 209, 129, 149, 26, 66, 27, 241, 122, 15, 178, 153, 248, 233, 229, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 836, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "69" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "ByteArray", + "bytearray": "26e882e3261a12afa6" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87d9f4169144926e882e3261a12afa6a0ff", + "cborBytes": [216, 125, 159, 65, 105, 20, 73, 38, 232, 130, 227, 38, 26, 18, 175, 166, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 837, + "sample": { + "_tag": "ByteArray", + "bytearray": "73d84592f2" + }, + "cborHex": "4573d84592f2", + "cborBytes": [69, 115, 216, 69, 146, 242], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 838, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [] + }, + "cborHex": "d9050180", + "cborBytes": [217, 5, 1, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 839, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4401948698243400177" + } + }, + "cborHex": "1b3d16dd04be4a81f1", + "cborBytes": [27, 61, 22, 221, 4, 190, 74, 129, 241], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 840, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ddebc327bbeb12" + }, + { + "_tag": "ByteArray", + "bytearray": "a83751d41356b738da898ecd" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3261984317172509288" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0b2d8ea3f5c8f20f4eeb8" + } + } + ] + }, + "cborHex": "bf129f47ddebc327bbeb124ca83751d41356b738da898ecdff1b2d44e57427f66a68801bfffffffffffffffc4ba0b2d8ea3f5c8f20f4eeb8ff", + "cborBytes": [ + 191, 18, 159, 71, 221, 235, 195, 39, 187, 235, 18, 76, 168, 55, 81, 212, 19, 86, 183, 56, 218, 137, 142, 205, 255, + 27, 45, 68, 229, 116, 39, 246, 106, 104, 128, 27, 255, 255, 255, 255, 255, 255, 255, 252, 75, 160, 178, 216, 234, + 63, 92, 143, 32, 244, 238, 184, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 841, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14033657415115427930" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2982370677237957567" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14959138510930181422" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9485585419944845313" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb691d69b26b8a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2951551462694966781" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "149314dc3415ff5e" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4818423981243213110" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7952821180250639585" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6980853807377985225" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11981004938299778763" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11430548601642821842" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4fdcb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17094115324593301880" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15085581087832390350" + } + } + } + ] + } + ] + }, + "cborHex": "9f1bc2c19110c77b505a9fd8669f1b29638254654f43bf80ffd8669f1bcf99893801dbfd2e80ff1b83a391aec26fe00147cb691d69b26b8aff1b28f6046ad637d5fd9f809f48149314dc3415ff5effffbf1b42de7b14f339a5361b6e5e18ba430acce11b60e0f98d39b2aec91ba6451483678f26cb1b9ea177643cc228d243d4fdcb1bed3a7f51b7f1e9781bd15ac0129299baceffff", + "cborBytes": [ + 159, 27, 194, 193, 145, 16, 199, 123, 80, 90, 159, 216, 102, 159, 27, 41, 99, 130, 84, 101, 79, 67, 191, 128, 255, + 216, 102, 159, 27, 207, 153, 137, 56, 1, 219, 253, 46, 128, 255, 27, 131, 163, 145, 174, 194, 111, 224, 1, 71, + 203, 105, 29, 105, 178, 107, 138, 255, 27, 40, 246, 4, 106, 214, 55, 213, 253, 159, 128, 159, 72, 20, 147, 20, + 220, 52, 21, 255, 94, 255, 255, 191, 27, 66, 222, 123, 20, 243, 57, 165, 54, 27, 110, 94, 24, 186, 67, 10, 204, + 225, 27, 96, 224, 249, 141, 57, 178, 174, 201, 27, 166, 69, 20, 131, 103, 143, 38, 203, 27, 158, 161, 119, 100, + 60, 194, 40, 210, 67, 212, 253, 203, 27, 237, 58, 127, 81, 183, 241, 233, 120, 27, 209, 90, 192, 18, 146, 153, + 186, 206, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 842, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "977067036184008970" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6501cd9288b8aa" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7872704681395166933" + } + }, + { + "_tag": "ByteArray", + "bytearray": "248f496167a3f65fa029e265" + }, + { + "_tag": "ByteArray", + "bytearray": "e8b7fa19ff374ee300ac03f7" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "150522856985983283" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f05e94b7b2489c2a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10141049547358502306" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4145116190370979709" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21674fbcb903e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f12a6d62" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2517" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7277882995918731729" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "457c8eb45cea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16850257211337770183" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1587506905455307869" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1524113623699079479" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3279241078172830348" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f097b9ccc77ddf06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4865995542927788072" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21b7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6541793938036464910" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10897795166987932212" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3564507297379581417" + } + } + } + ] + } + ] + }, + "cborHex": "d9050d9fd8669f1b0d8f3d4aed7dd90a9f476501cd9288b8aaffff9f9f1b6d417732441d1ed54c248f496167a3f65fa029e2654ce8b7fa19ff374ee300ac03f7ffff9f1b0216c3bdad39f93348f05e94b7b2489c2abf1b8cbc3ed56ff07da21b398669369fc85f7d4721674fbcb903e144f12a6d624225171b65003c06609779d146457c8eb45cea1be9d823a83fc084c7ffffbf1b1607f51e9a24ac5d1b1526bd4401eac1371b2d823462ed5c4a8c48f097b9ccc77ddf061b43877d2a46d848284221b71b5ac91eed3e779d0e41c51b973cbef72348d2341b3177ac805b98fde9ffff", + "cborBytes": [ + 217, 5, 13, 159, 216, 102, 159, 27, 13, 143, 61, 74, 237, 125, 217, 10, 159, 71, 101, 1, 205, 146, 136, 184, 170, + 255, 255, 159, 159, 27, 109, 65, 119, 50, 68, 29, 30, 213, 76, 36, 143, 73, 97, 103, 163, 246, 95, 160, 41, 226, + 101, 76, 232, 183, 250, 25, 255, 55, 78, 227, 0, 172, 3, 247, 255, 255, 159, 27, 2, 22, 195, 189, 173, 57, 249, + 51, 72, 240, 94, 148, 183, 178, 72, 156, 42, 191, 27, 140, 188, 62, 213, 111, 240, 125, 162, 27, 57, 134, 105, 54, + 159, 200, 95, 125, 71, 33, 103, 79, 188, 185, 3, 225, 68, 241, 42, 109, 98, 66, 37, 23, 27, 101, 0, 60, 6, 96, + 151, 121, 209, 70, 69, 124, 142, 180, 92, 234, 27, 233, 216, 35, 168, 63, 192, 132, 199, 255, 255, 191, 27, 22, 7, + 245, 30, 154, 36, 172, 93, 27, 21, 38, 189, 68, 1, 234, 193, 55, 27, 45, 130, 52, 98, 237, 92, 74, 140, 72, 240, + 151, 185, 204, 199, 125, 223, 6, 27, 67, 135, 125, 42, 70, 216, 72, 40, 66, 33, 183, 27, 90, 201, 30, 237, 62, + 119, 157, 14, 65, 197, 27, 151, 60, 190, 247, 35, 72, 210, 52, 27, 49, 119, 172, 128, 91, 152, 253, 233, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 843, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3417951355790153255" + } + }, + "cborHex": "1b2f6f00a6256fd627", + "cborBytes": [27, 47, 111, 0, 166, 37, 111, 214, 39], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 844, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2690401767794126860" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3243538670775876883" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3775248118536758236" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11722648330590480997" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7659739752014028687" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0fb5d5a8a1d35c5726" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4781818875224476425" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15101739804158119647" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1d71db05fb49c3e61155" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14428844643540674791" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b25563a274873b00c1b2d035d3c6ed6bd131b34646029645863dc801ba2af368c23abea659f1b6a4cdcb8aebc1f8f490fb5d5a8a1d35c57261b425c6eee8e034b091bd1942856e538cedf4a1d71db05fb49c3e61155ff1bc83d8dc1898a28e780ff", + "cborBytes": [ + 191, 27, 37, 86, 58, 39, 72, 115, 176, 12, 27, 45, 3, 93, 60, 110, 214, 189, 19, 27, 52, 100, 96, 41, 100, 88, 99, + 220, 128, 27, 162, 175, 54, 140, 35, 171, 234, 101, 159, 27, 106, 76, 220, 184, 174, 188, 31, 143, 73, 15, 181, + 213, 168, 161, 211, 92, 87, 38, 27, 66, 92, 110, 238, 142, 3, 75, 9, 27, 209, 148, 40, 86, 229, 56, 206, 223, 74, + 29, 113, 219, 5, 251, 73, 195, 230, 17, 85, 255, 27, 200, 61, 141, 193, 137, 138, 40, 231, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 845, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc279ca66a5828a1910a55bf" + }, + "cborHex": "4cfc279ca66a5828a1910a55bf", + "cborBytes": [76, 252, 39, 156, 166, 106, 88, 40, 161, 145, 10, 85, 191], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 846, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2a8b04b8" + } + ] + } + ] + }, + "cborHex": "9f9f442a8b04b8ffff", + "cborBytes": [159, 159, 68, 42, 139, 4, 184, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 847, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0337f819b4f9d4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6c1c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9793463958954513650" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11664667832115904617" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03ef" + }, + { + "_tag": "ByteArray", + "bytearray": "625b3db9cb" + }, + { + "_tag": "ByteArray", + "bytearray": "9957d6d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2057366193149806184" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11829346884022616893" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10522608349671598666" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16575846039319306803" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3460522246916207738" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf01470337f819b4f9d40cbf43e6c1c041f9ff1b87e95f952a1314f2a01ba1e139975c31c0699f4203ef45625b3db9cb449957d6d51b1c8d3ba6fb9786681bffffffffffffffefff1ba42a4851030ac33d1b9207d08af8bc2a4a1be6093c2671316233d8669f1b30063ea620c6f47a80ffff", + "cborBytes": [ + 191, 1, 71, 3, 55, 248, 25, 180, 249, 212, 12, 191, 67, 230, 193, 192, 65, 249, 255, 27, 135, 233, 95, 149, 42, + 19, 20, 242, 160, 27, 161, 225, 57, 151, 92, 49, 192, 105, 159, 66, 3, 239, 69, 98, 91, 61, 185, 203, 68, 153, 87, + 214, 213, 27, 28, 141, 59, 166, 251, 151, 134, 104, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255, 27, 164, 42, + 72, 81, 3, 10, 195, 61, 27, 146, 7, 208, 138, 248, 188, 42, 74, 27, 230, 9, 60, 38, 113, 49, 98, 51, 216, 102, + 159, 27, 48, 6, 62, 166, 32, 198, 244, 122, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 848, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b0fb5b2bc24afb5e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8068188283585161012" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d70d3add" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11398798775307502009" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d3d5e2ae632e0" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c03070505f807c078" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05f9021f0207" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f83738faf90105" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12455700156729245813" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12520583467546487307" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff6bf499b0fb5b2bc24afb5e11b6ff7f67f300fe73444d70d3add1b9e30ab17bc5c81b9ff470d3d5e2ae632e080498c03070505f807c0784605f9021f020747f83738faf90105d9050d9f1bacdb894ca69fc0751badc20c53abbcaa0bffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 246, 191, 73, 155, 15, 181, 178, 188, 36, 175, 181, 225, 27, 111, 247, + 246, 127, 48, 15, 231, 52, 68, 215, 13, 58, 221, 27, 158, 48, 171, 23, 188, 92, 129, 185, 255, 71, 13, 61, 94, 42, + 230, 50, 224, 128, 73, 140, 3, 7, 5, 5, 248, 7, 192, 120, 70, 5, 249, 2, 31, 2, 7, 71, 248, 55, 56, 250, 249, 1, + 5, 217, 5, 13, 159, 27, 172, 219, 137, 76, 166, 159, 192, 117, 27, 173, 194, 12, 83, 171, 188, 170, 11, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 849, + "sample": { + "_tag": "ByteArray", + "bytearray": "29" + }, + "cborHex": "4129", + "cborBytes": [65, 41], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 850, + "sample": { + "_tag": "ByteArray", + "bytearray": "0f6d0cba9dc6f6368d8b" + }, + "cborHex": "4a0f6d0cba9dc6f6368d8b", + "cborBytes": [74, 15, 109, 12, 186, 157, 198, 246, 54, 141, 139], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 851, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10847161947722556501" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + ] + }, + "cborHex": "d8669f1b9688dc521b2324559f1bfffffffffffffff2ffff", + "cborBytes": [ + 216, 102, 159, 27, 150, 136, 220, 82, 27, 35, 36, 85, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 852, + "sample": { + "_tag": "ByteArray", + "bytearray": "b6" + }, + "cborHex": "41b6", + "cborBytes": [65, 182], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 853, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3226747387743600989" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15955960197647037078" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6880861170328819700" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "693103165636880186" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17530444098066228203" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "797692085291416037" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9216e3feb92dbb1802b26f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10948985238006401709" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f15f628b388" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11577202197290075117" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8729350480231765597" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12214654152328640816" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5749512476314489680" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14152631072757642714" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ec52596" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b2fa4ad672" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14523135946769876767" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fda1bf389973" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12702350806549093416" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1671096749531510448" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10912267623401797520" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3b428d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "577694577117486046" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13535663540041563600" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "6a666eab1af2c7edeb" + } + ] + } + ] + }, + "cborHex": "d8669f1b2cc7b5a73260815d9f9f1bdd6ef542ef05f296a0ff1b5f7dbac72e3a57f49fbf1b099e65a82c7c273a1bf348a606e414a3eb1b0b11f8b9a7ef79e54cf9216e3feb92dbb1802b26f21b97f29c10525e0aad464f15f628b3881ba0aa7c0f4e58c3ed1b7924e202fe19965d1ba9832b3c4bcc79301b4fca5f228e66d3501bc4683efa10dff5da443ec52596ffa045b2fa4ad672d8669f1bc98c8b325becc71f9f46fda1bf389973ffffd8669f1bb047d0c234c15c289f1b1730eda3cd22b6b01b977029967adc3790433b428d1b0804622839c1dbdeffffffd8669f1bbbd856464f623dd09fa0496a666eab1af2c7edebffffffff", + "cborBytes": [ + 216, 102, 159, 27, 44, 199, 181, 167, 50, 96, 129, 93, 159, 159, 27, 221, 110, 245, 66, 239, 5, 242, 150, 160, + 255, 27, 95, 125, 186, 199, 46, 58, 87, 244, 159, 191, 27, 9, 158, 101, 168, 44, 124, 39, 58, 27, 243, 72, 166, 6, + 228, 20, 163, 235, 27, 11, 17, 248, 185, 167, 239, 121, 229, 76, 249, 33, 110, 63, 235, 146, 219, 177, 128, 43, + 38, 242, 27, 151, 242, 156, 16, 82, 94, 10, 173, 70, 79, 21, 246, 40, 179, 136, 27, 160, 170, 124, 15, 78, 88, + 195, 237, 27, 121, 36, 226, 2, 254, 25, 150, 93, 27, 169, 131, 43, 60, 75, 204, 121, 48, 27, 79, 202, 95, 34, 142, + 102, 211, 80, 27, 196, 104, 62, 250, 16, 223, 245, 218, 68, 62, 197, 37, 150, 255, 160, 69, 178, 250, 74, 214, + 114, 216, 102, 159, 27, 201, 140, 139, 50, 91, 236, 199, 31, 159, 70, 253, 161, 191, 56, 153, 115, 255, 255, 216, + 102, 159, 27, 176, 71, 208, 194, 52, 193, 92, 40, 159, 27, 23, 48, 237, 163, 205, 34, 182, 176, 27, 151, 112, 41, + 150, 122, 220, 55, 144, 67, 59, 66, 141, 27, 8, 4, 98, 40, 57, 193, 219, 222, 255, 255, 255, 216, 102, 159, 27, + 187, 216, 86, 70, 79, 98, 61, 208, 159, 160, 73, 106, 102, 110, 171, 26, 242, 199, 237, 235, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 854, + "sample": { + "_tag": "ByteArray", + "bytearray": "04f8fb02156518fe009305" + }, + "cborHex": "4b04f8fb02156518fe009305", + "cborBytes": [75, 4, 248, 251, 2, 21, 101, 24, 254, 0, 147, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 855, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6699615547" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2284683693546174513" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83cbac98cc2e0d8c43da" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7aa1" + } + ] + } + } + ] + }, + "cborHex": "bf4566996155471b1fb4d3b6e9f278314a83cbac98cc2e0d8c43da9f427aa1ffff", + "cborBytes": [ + 191, 69, 102, 153, 97, 85, 71, 27, 31, 180, 211, 182, 233, 242, 120, 49, 74, 131, 203, 172, 152, 204, 46, 13, 140, + 67, 218, 159, 66, 122, 161, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 856, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0fbb7743b8" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "be048f48d2e6c83c08e45b31" + }, + { + "_tag": "ByteArray", + "bytearray": "b29466e8b799d677300104db" + } + ] + }, + "cborHex": "d8799f450fbb7743b8a04cbe048f48d2e6c83c08e45b314cb29466e8b799d677300104dbff", + "cborBytes": [ + 216, 121, 159, 69, 15, 187, 119, 67, 184, 160, 76, 190, 4, 143, 72, 210, 230, 200, 60, 8, 228, 91, 49, 76, 178, + 148, 102, 232, 183, 153, 214, 119, 48, 1, 4, 219, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 857, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15542925174692271011" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a0cc15c5e9732f" + }, + { + "_tag": "ByteArray", + "bytearray": "cf8d5ec5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "51f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3612332c97d1f6f4" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15962775481453184059" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "49ab443c5becd5d91c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13551772087686392019" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17b0d11cf28c30be7d6602" + } + ] + } + ] + }, + "cborHex": "d8669f1bd7b39018b00253a39f47a0cc15c5e9732f44cf8d5ec59fbf4251f8483612332c97d1f6f4ffd8669f1bdd872bb9d955043b80ff4949ab443c5becd5d91c1bbc1190e9d399e8d34b17b0d11cf28c30be7d6602ffffff", + "cborBytes": [ + 216, 102, 159, 27, 215, 179, 144, 24, 176, 2, 83, 163, 159, 71, 160, 204, 21, 197, 233, 115, 47, 68, 207, 141, 94, + 197, 159, 191, 66, 81, 248, 72, 54, 18, 51, 44, 151, 209, 246, 244, 255, 216, 102, 159, 27, 221, 135, 43, 185, + 217, 85, 4, 59, 128, 255, 73, 73, 171, 68, 60, 91, 236, 213, 217, 28, 27, 188, 17, 144, 233, 211, 153, 232, 211, + 75, 23, 176, 209, 28, 242, 140, 48, 190, 125, 102, 2, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 858, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6797081216837605432" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6ab7" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5252857361492322371" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "49b6f88d75e6a6c981846abc" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5761211201001140216" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1379969757423878655" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4166cf69f7ee" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a2d3f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "95fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "680529365935037457" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dc96ec9f4f688a8f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1871746214908751559" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b5e54155aaf15d8389f426ab780d8669f1b48e5e5f07f8ba8439f9f4c49b6f88d75e6a6c981846abcff1b4ff3ef1027acaff81b1326a32ed80841ff80ffffa09f464166cf69f7eebf438a2d3f4142ff9f4295fd1b0971b9da4bc79c11ff48dc96ec9f4f688a8f1b19f9c743f9516ec7ffffff", + "cborBytes": [ + 216, 102, 159, 27, 94, 84, 21, 90, 175, 21, 216, 56, 159, 66, 106, 183, 128, 216, 102, 159, 27, 72, 229, 229, 240, + 127, 139, 168, 67, 159, 159, 76, 73, 182, 248, 141, 117, 230, 166, 201, 129, 132, 106, 188, 255, 27, 79, 243, 239, + 16, 39, 172, 175, 248, 27, 19, 38, 163, 46, 216, 8, 65, 255, 128, 255, 255, 160, 159, 70, 65, 102, 207, 105, 247, + 238, 191, 67, 138, 45, 63, 65, 66, 255, 159, 66, 149, 253, 27, 9, 113, 185, 218, 75, 199, 156, 17, 255, 72, 220, + 150, 236, 159, 79, 104, 138, 143, 27, 25, 249, 199, 67, 249, 81, 110, 199, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 859, + "sample": { + "_tag": "ByteArray", + "bytearray": "56db6cad5e86d19add1dd5" + }, + "cborHex": "4b56db6cad5e86d19add1dd5", + "cborBytes": [75, 86, 219, 108, 173, 94, 134, 209, 154, 221, 29, 213], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 860, + "sample": { + "_tag": "ByteArray", + "bytearray": "ad0ac7" + }, + "cborHex": "43ad0ac7", + "cborBytes": [67, 173, 10, 199], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 861, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9401127646399500981" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15389150919478576278" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12804127358036880863" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "566328615724081984" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3883672510347003194" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12001676012480406348" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9688454466920797171" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8bd586fd613118f812827c6c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6c1cd3" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b827783c8fbbf12b59f1bd5913f39de658496bf001bb1b165fe32a62ddfff9fbf1b07dc00e01e5f6340416d1b35e59392532ec53a1ba68e84bee938a34cff1b86744e018b5c53f3ff4c8bd586fd613118f812827c6cd905089f9f02436c1cd3ff80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 130, 119, 131, 200, 251, 191, 18, 181, 159, 27, 213, 145, 63, 57, 222, 101, 132, 150, 191, 0, + 27, 177, 177, 101, 254, 50, 166, 45, 223, 255, 159, 191, 27, 7, 220, 0, 224, 30, 95, 99, 64, 65, 109, 27, 53, 229, + 147, 146, 83, 46, 197, 58, 27, 166, 142, 132, 190, 233, 56, 163, 76, 255, 27, 134, 116, 78, 1, 139, 92, 83, 243, + 255, 76, 139, 213, 134, 253, 97, 49, 24, 248, 18, 130, 124, 108, 217, 5, 8, 159, 159, 2, 67, 108, 28, 211, 255, + 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 862, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "630194dd57909b8a24ed7df3" + } + ] + }, + "cborHex": "9f4c630194dd57909b8a24ed7df3ff", + "cborBytes": [159, 76, 99, 1, 148, 221, 87, 144, 155, 138, 36, 237, 125, 243, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 863, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17157546742776449827" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17575521688464518163" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1bee1bd9dba459cb23d8669f1bf3e8cbdb4719ec1380ffff", + "cborBytes": [ + 159, 27, 238, 27, 217, 219, 164, 89, 203, 35, 216, 102, 159, 27, 243, 232, 203, 219, 71, 25, 236, 19, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 864, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12196505873643668532" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2915748809211398100" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b649eb6552743bb7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2082379209670675087" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c6726b1162b0813" + }, + { + "_tag": "ByteArray", + "bytearray": "ca3ec9a4" + }, + { + "_tag": "ByteArray", + "bytearray": "e4b3d1d33fa1be493faa" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13043931305995281399" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5338846807298782649" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "34" + }, + { + "_tag": "ByteArray", + "bytearray": "93dd4a5e05c891" + } + ] + }, + "cborHex": "9fd8669f1ba942b178e37f04349f1b2876d217fb5047d49f48b649eb6552743bb71b1ce618dbb8144a8f488c6726b1162b081344ca3ec9a44ae4b3d1d33fa1be493faaffffffd8669f1bb5055a69c07223f79f1b4a1764e28345b5b9ffff41344793dd4a5e05c891ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 169, 66, 177, 120, 227, 127, 4, 52, 159, 27, 40, 118, 210, 23, 251, 80, 71, 212, 159, 72, + 182, 73, 235, 101, 82, 116, 59, 183, 27, 28, 230, 24, 219, 184, 20, 74, 143, 72, 140, 103, 38, 177, 22, 43, 8, 19, + 68, 202, 62, 201, 164, 74, 228, 179, 209, 211, 63, 161, 190, 73, 63, 170, 255, 255, 255, 216, 102, 159, 27, 181, + 5, 90, 105, 192, 114, 35, 247, 159, 27, 74, 23, 100, 226, 131, 69, 181, 185, 255, 255, 65, 52, 71, 147, 221, 74, + 94, 5, 200, 145, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 865, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11001199247745599765" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2419411967554286676" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12565774055393139571" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11658232693465584314" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3702845397420286944" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b68573adbeed196ddf5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5972284483495120478" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35a75972ffc5e5bc89" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12061868864584401692" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5907b69ed99cc0cece" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8faa" + }, + { + "_tag": "ByteArray", + "bytearray": "f01f2e8e3434" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12767744305126032659" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6700701370953101313" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3128766362382202931" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14243783340043378415" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09a7c497989685999cd926" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18234117519451368039" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d117697d71d72d4ddf08" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7962972537245737114" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10617062214494037751" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3101574127169448930" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1af20a77d8ba6737930461f5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5444956973030347363" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17230603237511822327" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5de5c161f7e719b85d35" + } + ] + } + ] + } + ] + }, + "cborHex": "9fa09fa0d8669f1b98ac1c6dd12bc9159f1b21937a5dab66f4541bae6298ed53871b73ffff9f1ba1ca5cdde2dc92baffbf1b336326453b6d23e04a9b68573adbeed196ddf51b52e1d118604dce5e4935a75972ffc5e5bc891ba7645dd368e5c31c495907b69ed99cc0ceceffff9f428faa46f01f2e8e3434d8669f1bb13023cc920dc5139f1b5cfdac6521a1f001ffff9f1b2b6b9c6dfefb78331bc5ac157b20e99eef4b09a7c497989685999cd9261bfd0c994683a02a674ad117697d71d72d4ddf08ff1b6e8229553eb9209affd8669f1b935761d51d23a6f79fd8669f1b2b0b013c5e7a2be29f4c1af20a77d8ba6737930461f51b4b905f84b2c292631bef1f665a55967bf74a5de5c161f7e719b85d35ffffffffff", + "cborBytes": [ + 159, 160, 159, 160, 216, 102, 159, 27, 152, 172, 28, 109, 209, 43, 201, 21, 159, 27, 33, 147, 122, 93, 171, 102, + 244, 84, 27, 174, 98, 152, 237, 83, 135, 27, 115, 255, 255, 159, 27, 161, 202, 92, 221, 226, 220, 146, 186, 255, + 191, 27, 51, 99, 38, 69, 59, 109, 35, 224, 74, 155, 104, 87, 58, 219, 238, 209, 150, 221, 245, 27, 82, 225, 209, + 24, 96, 77, 206, 94, 73, 53, 167, 89, 114, 255, 197, 229, 188, 137, 27, 167, 100, 93, 211, 104, 229, 195, 28, 73, + 89, 7, 182, 158, 217, 156, 192, 206, 206, 255, 255, 159, 66, 143, 170, 70, 240, 31, 46, 142, 52, 52, 216, 102, + 159, 27, 177, 48, 35, 204, 146, 13, 197, 19, 159, 27, 92, 253, 172, 101, 33, 161, 240, 1, 255, 255, 159, 27, 43, + 107, 156, 109, 254, 251, 120, 51, 27, 197, 172, 21, 123, 32, 233, 158, 239, 75, 9, 167, 196, 151, 152, 150, 133, + 153, 156, 217, 38, 27, 253, 12, 153, 70, 131, 160, 42, 103, 74, 209, 23, 105, 125, 113, 215, 45, 77, 223, 8, 255, + 27, 110, 130, 41, 85, 62, 185, 32, 154, 255, 216, 102, 159, 27, 147, 87, 97, 213, 29, 35, 166, 247, 159, 216, 102, + 159, 27, 43, 11, 1, 60, 94, 122, 43, 226, 159, 76, 26, 242, 10, 119, 216, 186, 103, 55, 147, 4, 97, 245, 27, 75, + 144, 95, 132, 178, 194, 146, 99, 27, 239, 31, 102, 90, 85, 150, 123, 247, 74, 93, 229, 193, 97, 247, 231, 25, 184, + 93, 53, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 866, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "373e03885c202f5becfaa4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1069311309323952241" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1245f8aed72a372cf60a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "255d630a836745818e83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7e006f4a77f3c394846" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5236fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8e47a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5701426b940efffc3d9205" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14419042342975315499" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bc4522ef9ca3eb94f2" + } + ] + } + } + ] + }, + "cborHex": "bf4104d8669f1bfffffffffffffffd9f4b373e03885c202f5becfaa41b0ed6f4f86a8fe071ffff4a1245f8aed72a372cf60abf4a255d630a836745818e834ab7e006f4a77f3c394846ff435236fc43f8e47a4b5701426b940efffc3d92059f1bc81aba9d965c1e2b49bc4522ef9ca3eb94f2ffff", + "cborBytes": [ + 191, 65, 4, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 75, 55, 62, 3, 136, 92, 32, 47, 91, + 236, 250, 164, 27, 14, 214, 244, 248, 106, 143, 224, 113, 255, 255, 74, 18, 69, 248, 174, 215, 42, 55, 44, 246, + 10, 191, 74, 37, 93, 99, 10, 131, 103, 69, 129, 142, 131, 74, 183, 224, 6, 244, 167, 127, 60, 57, 72, 70, 255, 67, + 82, 54, 252, 67, 248, 228, 122, 75, 87, 1, 66, 107, 148, 14, 255, 252, 61, 146, 5, 159, 27, 200, 26, 186, 157, + 150, 92, 30, 43, 73, 188, 69, 34, 239, 156, 163, 235, 148, 242, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 867, + "sample": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "cborHex": "4106", + "cborBytes": [65, 6], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 868, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b7ec59" + }, + { + "_tag": "ByteArray", + "bytearray": "1695a1" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13468811124886657941" + } + } + } + ] + }, + "cborHex": "bf039f43b7ec59431695a1ff131bbaead45b75b2db95ff", + "cborBytes": [ + 191, 3, 159, 67, 183, 236, 89, 67, 22, 149, 161, 255, 19, 27, 186, 234, 212, 91, 117, 178, 219, 149, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 869, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [] + }, + "cborHex": "d8669f1bffffffffffffffeb80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 870, + "sample": { + "_tag": "ByteArray", + "bytearray": "0307ff83e48bbf" + }, + "cborHex": "470307ff83e48bbf", + "cborBytes": [71, 3, 7, 255, 131, 228, 139, 191], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 871, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1584662324082266563" + } + }, + "cborHex": "1b15fdd9fce3de51c3", + "cborBytes": [27, 21, 253, 217, 252, 227, 222, 81, 195], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 872, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15172413357485702057" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "579d24790504acad0d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15227894261111664121" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9162628085072539314" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10666093612851009680" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09" + }, + { + "_tag": "ByteArray", + "bytearray": "e1411869262e1ace" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9502533610861850444" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17a6483d2b2f5d3b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10400198891019950111" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13720122827860251713" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10707394617081598050" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8788816416948819003" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5616559a0d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e94defd7f26a8e12a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66ff530ead91a55d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17737418961758652951" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "794f50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce85019c7cc165bbb96aa77a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98861679a7a2e29d7c610e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d804" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c27eef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6318960493521654790" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f53f655a183e93d45c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6365748822246142158" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1965621933347533167" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bd28f3d8fce53bba99f49579d24790504acad0dd8669f1bd35459264ec52df99fd8669f1b7f2831b29bc42eb280ff1b940593a1270c1890410948e1411869262e1aceffffbf1b83dfc7f8f5a16f4c4817a6483d2b2f5d3b1b9054edc9eca7d81f1bbe67ab05055694411b94984eac8d1410621b79f825f7505b143bff9fbf455616559a0d49e94defd7f26a8e12a24866ff530ead91a55d1bf627f8919fe70a1743794f504cce85019c7cc165bbb96aa77a4b98861679a7a2e29d7c610e42d80443c27eef1b57b17516ee15d40649f53f655a183e93d45c1b5857aed39f57b0ceffffd8669f1b1b474abbebe5716f80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 210, 143, 61, 143, 206, 83, 187, 169, 159, 73, 87, 157, 36, 121, 5, 4, 172, 173, 13, 216, 102, + 159, 27, 211, 84, 89, 38, 78, 197, 45, 249, 159, 216, 102, 159, 27, 127, 40, 49, 178, 155, 196, 46, 178, 128, 255, + 27, 148, 5, 147, 161, 39, 12, 24, 144, 65, 9, 72, 225, 65, 24, 105, 38, 46, 26, 206, 255, 255, 191, 27, 131, 223, + 199, 248, 245, 161, 111, 76, 72, 23, 166, 72, 61, 43, 47, 93, 59, 27, 144, 84, 237, 201, 236, 167, 216, 31, 27, + 190, 103, 171, 5, 5, 86, 148, 65, 27, 148, 152, 78, 172, 141, 20, 16, 98, 27, 121, 248, 37, 247, 80, 91, 20, 59, + 255, 159, 191, 69, 86, 22, 85, 154, 13, 73, 233, 77, 239, 215, 242, 106, 142, 18, 162, 72, 102, 255, 83, 14, 173, + 145, 165, 93, 27, 246, 39, 248, 145, 159, 231, 10, 23, 67, 121, 79, 80, 76, 206, 133, 1, 156, 124, 193, 101, 187, + 185, 106, 167, 122, 75, 152, 134, 22, 121, 167, 162, 226, 157, 124, 97, 14, 66, 216, 4, 67, 194, 126, 239, 27, 87, + 177, 117, 22, 238, 21, 212, 6, 73, 245, 63, 101, 90, 24, 62, 147, 212, 92, 27, 88, 87, 174, 211, 159, 87, 176, + 206, 255, 255, 216, 102, 159, 27, 27, 71, 74, 187, 235, 229, 113, 111, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 873, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3914405145553801987" + } + }, + "cborHex": "1b3652c2bd8fb21303", + "cborBytes": [27, 54, 82, 194, 189, 143, 178, 19, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 874, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17424577955939859999" + } + }, + "cborHex": "1bf1d08954e0e5be1f", + "cborBytes": [27, 241, 208, 137, 84, 224, 229, 190, 31], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 875, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9120023151045732730" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13521043065382391865" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e083c00f939dcd3f76e7" + }, + { + "_tag": "ByteArray", + "bytearray": "e7f8f968" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9646135359442569395" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cc4259a9f1da8d" + }, + { + "_tag": "ByteArray", + "bytearray": "fa95103d01e1f3ac" + }, + { + "_tag": "ByteArray", + "bytearray": "653c7bb12768" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f1b7e90d4bc656b697ad8669f1bbba46507c8e050399f4ae083c00f939dcd3f76e744e7f8f968d8669f1b85ddf50082e8c8b39f47cc4259a9f1da8d48fa95103d01e1f3ac46653c7bb12768ffffa0ffffff", + "cborBytes": [ + 159, 27, 126, 144, 212, 188, 101, 107, 105, 122, 216, 102, 159, 27, 187, 164, 101, 7, 200, 224, 80, 57, 159, 74, + 224, 131, 192, 15, 147, 157, 205, 63, 118, 231, 68, 231, 248, 249, 104, 216, 102, 159, 27, 133, 221, 245, 0, 130, + 232, 200, 179, 159, 71, 204, 66, 89, 169, 241, 218, 141, 72, 250, 149, 16, 61, 1, 225, 243, 172, 70, 101, 60, 123, + 177, 39, 104, 255, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 876, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10343725582308788609" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18039928842638177211" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "324a2f9245d10fd5" + }, + { + "_tag": "ByteArray", + "bytearray": "4c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15155836950553351962" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c064460b661431b1c" + }, + { + "_tag": "ByteArray", + "bytearray": "87f93c5e58" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b418f92a5e" + } + ] + } + ] + }, + "cborHex": "d8669f1b8f8c4b9d1ba2c9819f9f9f1bfa5ab3b3e6c5b3bbff9f48324a2f9245d10fd5414c1bd25459684f78d71a492c064460b661431b1c4587f93c5e58ff45b418f92a5effffff", + "cborBytes": [ + 216, 102, 159, 27, 143, 140, 75, 157, 27, 162, 201, 129, 159, 159, 159, 27, 250, 90, 179, 179, 230, 197, 179, 187, + 255, 159, 72, 50, 74, 47, 146, 69, 209, 15, 213, 65, 76, 27, 210, 84, 89, 104, 79, 120, 215, 26, 73, 44, 6, 68, + 96, 182, 97, 67, 27, 28, 69, 135, 249, 60, 94, 88, 255, 69, 180, 24, 249, 42, 94, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 877, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17391418714408558305" + } + }, + "cborHex": "1bf15abb2d54671ee1", + "cborBytes": [27, 241, 90, 187, 45, 84, 103, 30, 225], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 878, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "851472418433266683" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4841201850835062633" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13590790387152163487" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3256227148217573182" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c00a5a3e2ba0a372ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14766284160126578080" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9957326028187887152" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4d7f13a4bbf304" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9224502911025146079" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17bf63bf0c7ba502cc4f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13930028264630633775" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "19d60e3a22bb15dac97dee81" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15391276362686669530" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15159492728839768015" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f1b0bd109a73cc1f3fbd8669f1b432f676efcfccf699f1bbc9c2fd99aff929fd8669f1b2d307156cd7ddf3e9f49c00a5a3e2ba0a372ab1bccec613560d26da0ffffd8669f1b8a2f874436e3e6309f474d7f13a4bbf3041b800404862935e8df4a17bf63bf0c7ba502cc4f1bc15166e6f875c52fffff4c19d60e3a22bb15dac97dee81ffff1bd598cc4e2dce22dad8669f1bd2615651859c87cf9fa0ffffff", + "cborBytes": [ + 159, 27, 11, 209, 9, 167, 60, 193, 243, 251, 216, 102, 159, 27, 67, 47, 103, 110, 252, 252, 207, 105, 159, 27, + 188, 156, 47, 217, 154, 255, 146, 159, 216, 102, 159, 27, 45, 48, 113, 86, 205, 125, 223, 62, 159, 73, 192, 10, + 90, 62, 43, 160, 163, 114, 171, 27, 204, 236, 97, 53, 96, 210, 109, 160, 255, 255, 216, 102, 159, 27, 138, 47, + 135, 68, 54, 227, 230, 48, 159, 71, 77, 127, 19, 164, 187, 243, 4, 27, 128, 4, 4, 134, 41, 53, 232, 223, 74, 23, + 191, 99, 191, 12, 123, 165, 2, 204, 79, 27, 193, 81, 102, 230, 248, 117, 197, 47, 255, 255, 76, 25, 214, 14, 58, + 34, 187, 21, 218, 201, 125, 238, 129, 255, 255, 27, 213, 152, 204, 78, 45, 206, 34, 218, 216, 102, 159, 27, 210, + 97, 86, 81, 133, 156, 135, 207, 159, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 879, + "sample": { + "_tag": "ByteArray", + "bytearray": "95a86454f806e33615" + }, + "cborHex": "4995a86454f806e33615", + "cborBytes": [73, 149, 168, 100, 84, 248, 6, 227, 54, 21], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 880, + "sample": { + "_tag": "ByteArray", + "bytearray": "a3824f2c0ef1a0eec661eed6" + }, + "cborHex": "4ca3824f2c0ef1a0eec661eed6", + "cborBytes": [76, 163, 130, 79, 44, 14, 241, 160, 238, 198, 97, 238, 214], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 881, + "sample": { + "_tag": "ByteArray", + "bytearray": "0202a319109d0004" + }, + "cborHex": "480202a319109d0004", + "cborBytes": [72, 2, 2, 163, 25, 16, 157, 0, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 882, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1716616173342239267" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16777412513944521927" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3749418037769578955" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12133037345742606761" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4662672729052654486" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3531668219183743009" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4698403506470379430" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9371474567749358083" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4803825867286907619" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2b2d7c20294" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4947769364185352477" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06a7603659a48007" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14615406705350957851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4886280214245089609" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69fd8669f1b17d2a5508bc12a2380ffd8669f1be8d557ca77db4cc780ffbf1b34089bd70fb2a9cb1ba861352eaf8951a91b40b52424a715ab961b31030188a4fbc0211b413415188e9ddfa61b820e2a77984ed2031b42aa9e2cae780ae346e2b2d7c202941b44aa0205b6d4091d4806a7603659a480071bcad45af6784e5b1b1b43cf8df75b192149ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 216, 102, 159, 27, 23, 210, 165, 80, 139, 193, 42, + 35, 128, 255, 216, 102, 159, 27, 232, 213, 87, 202, 119, 219, 76, 199, 128, 255, 191, 27, 52, 8, 155, 215, 15, + 178, 169, 203, 27, 168, 97, 53, 46, 175, 137, 81, 169, 27, 64, 181, 36, 36, 167, 21, 171, 150, 27, 49, 3, 1, 136, + 164, 251, 192, 33, 27, 65, 52, 21, 24, 142, 157, 223, 166, 27, 130, 14, 42, 119, 152, 78, 210, 3, 27, 66, 170, + 158, 44, 174, 120, 10, 227, 70, 226, 178, 215, 194, 2, 148, 27, 68, 170, 2, 5, 182, 212, 9, 29, 72, 6, 167, 96, + 54, 89, 164, 128, 7, 27, 202, 212, 90, 246, 120, 78, 91, 27, 27, 67, 207, 141, 247, 91, 25, 33, 73, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 883, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "936c96ca4e501b4a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7c9239aff278048" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb5848aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1086721981282853927" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf48936c96ca4e501b4a48a7c9239aff278048ffbf44cb5848aa1b0f14cfe25ff92427ffff", + "cborBytes": [ + 159, 191, 72, 147, 108, 150, 202, 78, 80, 27, 74, 72, 167, 201, 35, 154, 255, 39, 128, 72, 255, 191, 68, 203, 88, + 72, 170, 27, 15, 20, 207, 226, 95, 249, 36, 39, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 884, + "sample": { + "_tag": "ByteArray", + "bytearray": "04e90404fe290604" + }, + "cborHex": "4804e90404fe290604", + "cborBytes": [72, 4, 233, 4, 4, 254, 41, 6, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 885, + "sample": { + "_tag": "ByteArray", + "bytearray": "0603c1" + }, + "cborHex": "430603c1", + "cborBytes": [67, 6, 3, 193], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 886, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1848207639474371199" + } + }, + "cborHex": "1b19a6270e4e087a7f", + "cborBytes": [27, 25, 166, 39, 14, 78, 8, 122, 127], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 887, + "sample": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "cborHex": "4101", + "cborBytes": [65, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 888, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7404725704449152287" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1513fc298409f4bb65211e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9292963148766619034" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a444e97a54265537" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c687d62" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93a2f3da6abb" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12316586500728852744" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14670938697844023468" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14164649580695713625" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01a154" + }, + { + "_tag": "ByteArray", + "bytearray": "b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16615144178246761243" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87fab9fb" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6806509958966794514" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9123166521663071162" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7392320151306738199" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "25" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5338450574927268732" + } + }, + { + "_tag": "ByteArray", + "bytearray": "094a61c3f54908a3032499" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4b9a22d10c70" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9634849527570878957" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8083723196418304185" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16863123512616070706" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "45bef0398a515377" + }, + { + "_tag": "ByteArray", + "bytearray": "8d73142a0eafcf8e2e3990" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15141392452609732238" + } + } + ] + }, + "cborHex": "d9050c9fbf1b66c2decbd8e5551f4b1513fc298409f4bb65211e1b80f73cbf6107a59a48a444e97a54265537441c687d624693a2f3da6abbffd8669f1baaed4e2a955091089f1bcb99a504068660ac9f1bc492f1bf0140f7594301a15441b61be694d9996c4c3b1b4487fab9fbffbf1b5e7594bec85fd9121b7e9bff9d6676a3baffd8669f1b6696cc02ec999a179f41251b4a15fc8379850b7c4b094a61c3f54908a3032499ffff464b9a22d10c70ffff1b85b5dc990333d1edd8669f1b702f276af11928b99fd8669f1bea05d97d7504ae3280ff4845bef0398a5153774b8d73142a0eafcf8e2e3990ffff1bd22108368e956e8eff", + "cborBytes": [ + 217, 5, 12, 159, 191, 27, 102, 194, 222, 203, 216, 229, 85, 31, 75, 21, 19, 252, 41, 132, 9, 244, 187, 101, 33, + 30, 27, 128, 247, 60, 191, 97, 7, 165, 154, 72, 164, 68, 233, 122, 84, 38, 85, 55, 68, 28, 104, 125, 98, 70, 147, + 162, 243, 218, 106, 187, 255, 216, 102, 159, 27, 170, 237, 78, 42, 149, 80, 145, 8, 159, 27, 203, 153, 165, 4, 6, + 134, 96, 172, 159, 27, 196, 146, 241, 191, 1, 64, 247, 89, 67, 1, 161, 84, 65, 182, 27, 230, 148, 217, 153, 108, + 76, 59, 27, 68, 135, 250, 185, 251, 255, 191, 27, 94, 117, 148, 190, 200, 95, 217, 18, 27, 126, 155, 255, 157, + 102, 118, 163, 186, 255, 216, 102, 159, 27, 102, 150, 204, 2, 236, 153, 154, 23, 159, 65, 37, 27, 74, 21, 252, + 131, 121, 133, 11, 124, 75, 9, 74, 97, 195, 245, 73, 8, 163, 3, 36, 153, 255, 255, 70, 75, 154, 34, 209, 12, 112, + 255, 255, 27, 133, 181, 220, 153, 3, 51, 209, 237, 216, 102, 159, 27, 112, 47, 39, 106, 241, 25, 40, 185, 159, + 216, 102, 159, 27, 234, 5, 217, 125, 117, 4, 174, 50, 128, 255, 72, 69, 190, 240, 57, 138, 81, 83, 119, 75, 141, + 115, 20, 42, 14, 175, 207, 142, 46, 57, 144, 255, 255, 27, 210, 33, 8, 54, 142, 149, 110, 142, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 889, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6a422103024eb5108b87f3" + } + ] + }, + "cborHex": "9f114b6a422103024eb5108b87f3ff", + "cborBytes": [159, 17, 75, 106, 66, 33, 3, 2, 78, 181, 16, 139, 135, 243, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 890, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17011086759179235422" + } + }, + "cborHex": "1bec138547643ab05e", + "cborBytes": [27, 236, 19, 133, 71, 100, 58, 176, 94], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 891, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3016912671428077756" + } + }, + "cborHex": "1b29de3a1722d868bc", + "cborBytes": [27, 41, 222, 58, 23, 34, 216, 104, 188], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 892, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10513255602012478184" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f88afe0403d4b451f8fcd303" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55cf7c927969d3" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8369378322643785658" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4734602710078724185" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17432548732945790909" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abec003ecdf052969de7a9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4da724a01e15750ef5c1d628" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1024235116409863854" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b81b78d3498acc56dc5d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02b78d13" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15854886909970221927" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16394999681038527933" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15651088106143680199" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8032759760005409477" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1091406171606447305" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13889599412550040971" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + }, + "cborHex": "9f9fbf1b91e69644b6d6dae84cf88afe0403d4b451f8fcd3031bffffffffffffffeb4755cf7c927969d3ffbf1b7426013dd80997ba1b41b4b0146ed818591bf1ecdab604eb77bd4babec003ecdf052969de7a94c4da724a01e15750ef5c1d6281b0e36d06968173eae4ab81b78d3498acc56dc5d4402b78d13ff1bdc07dfa44ec40b67d8799f1be386bd5870f1adbd1bd933d5b5a30906c71b6f7a18713d2caac51b0f2574216c4574c9ffd9050b9f419c1bc0c1c5135184fd8bffff0dff", + "cborBytes": [ + 159, 159, 191, 27, 145, 230, 150, 68, 182, 214, 218, 232, 76, 248, 138, 254, 4, 3, 212, 180, 81, 248, 252, 211, 3, + 27, 255, 255, 255, 255, 255, 255, 255, 235, 71, 85, 207, 124, 146, 121, 105, 211, 255, 191, 27, 116, 38, 1, 61, + 216, 9, 151, 186, 27, 65, 180, 176, 20, 110, 216, 24, 89, 27, 241, 236, 218, 182, 4, 235, 119, 189, 75, 171, 236, + 0, 62, 205, 240, 82, 150, 157, 231, 169, 76, 77, 167, 36, 160, 30, 21, 117, 14, 245, 193, 214, 40, 27, 14, 54, + 208, 105, 104, 23, 62, 174, 74, 184, 27, 120, 211, 73, 138, 204, 86, 220, 93, 68, 2, 183, 141, 19, 255, 27, 220, + 7, 223, 164, 78, 196, 11, 103, 216, 121, 159, 27, 227, 134, 189, 88, 112, 241, 173, 189, 27, 217, 51, 213, 181, + 163, 9, 6, 199, 27, 111, 122, 24, 113, 61, 44, 170, 197, 27, 15, 37, 116, 33, 108, 69, 116, 201, 255, 217, 5, 11, + 159, 65, 156, 27, 192, 193, 197, 19, 81, 132, 253, 139, 255, 255, 13, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 893, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8627109986454009471" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02be" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12042402526258925706" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b77b9a6d304d0f67f9f9f80ff4202be9f41b1ffd905019fa01ba71f354b53ee108affffff", + "cborBytes": [ + 216, 102, 159, 27, 119, 185, 166, 211, 4, 208, 246, 127, 159, 159, 128, 255, 66, 2, 190, 159, 65, 177, 255, 217, + 5, 1, 159, 160, 27, 167, 31, 53, 75, 83, 238, 16, 138, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 894, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "78429691d43dbdbc2d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9898013189970567464" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0df5ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12063587551177563830" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21a4ee5b1897b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5833c24dea7ad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "33652d884f5ab334" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4256427396054587338" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2fc80" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16354732477790748887" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b720f628c8cb3f087cdf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6870755331376416772" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8121038785804358686" + } + } + ] + } + ] + }, + "cborHex": "d9050c9f9f4978429691d43dbdbc2d1b895cce8dea53a128bf430df5ff1ba76a78f650c35eb64721a4ee5b1897b547f5833c24dea7ad4833652d884f5ab3341b3b11de2a4a1317ca43b2fc801be2f7ae89974300d74ab720f628c8cb3f087cdf1b5f59d39231500804ffffd9050d9f1b70b3b9bfa309d41effff", + "cborBytes": [ + 217, 5, 12, 159, 159, 73, 120, 66, 150, 145, 212, 61, 189, 188, 45, 27, 137, 92, 206, 141, 234, 83, 161, 40, 191, + 67, 13, 245, 255, 27, 167, 106, 120, 246, 80, 195, 94, 182, 71, 33, 164, 238, 91, 24, 151, 181, 71, 245, 131, 60, + 36, 222, 167, 173, 72, 51, 101, 45, 136, 79, 90, 179, 52, 27, 59, 17, 222, 42, 74, 19, 23, 202, 67, 178, 252, 128, + 27, 226, 247, 174, 137, 151, 67, 0, 215, 74, 183, 32, 246, 40, 200, 203, 63, 8, 124, 223, 27, 95, 89, 211, 146, + 49, 80, 8, 4, 255, 255, 217, 5, 13, 159, 27, 112, 179, 185, 191, 163, 9, 212, 30, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 895, + "sample": { + "_tag": "ByteArray", + "bytearray": "159444" + }, + "cborHex": "43159444", + "cborBytes": [67, 21, 148, 68], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 896, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10977394625343563386" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15479829346276546423" + } + } + ] + }, + "cborHex": "9fd8669f1b98578a4042e2a67a80ff1bd6d366c6587b1777ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 152, 87, 138, 64, 66, 226, 166, 122, 128, 255, 27, 214, 211, 102, 198, 88, 123, 23, 119, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 897, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d526ac" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0336008d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5d5d8fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59afe465f4c356b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7141039578937785708" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83d3fe04b73e074b" + } + } + ] + } + } + ] + }, + "cborHex": "bf43d526acbf084118440336008d44a5d5d8fa4859afe465f4c356b51b631a11a985977d6c41b84883d3fe04b73e074bffff", + "cborBytes": [ + 191, 67, 213, 38, 172, 191, 8, 65, 24, 68, 3, 54, 0, 141, 68, 165, 213, 216, 250, 72, 89, 175, 228, 101, 244, 195, + 86, 181, 27, 99, 26, 17, 169, 133, 151, 125, 108, 65, 184, 72, 131, 211, 254, 4, 183, 62, 7, 75, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 898, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "506229734185031851" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d73f28952" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8803075430177041236" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7259608263124302058" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15796682036828990836" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16961974289402733236" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b07067d42d8d6d8abbf458d73f289521b7a2ace768aabeb54ff1b64bf4f409403b8ea1bdb39169e3afc6d741beb6509bf7128a2b480ff", + "cborBytes": [ + 191, 27, 7, 6, 125, 66, 216, 214, 216, 171, 191, 69, 141, 115, 242, 137, 82, 27, 122, 42, 206, 118, 138, 171, 235, + 84, 255, 27, 100, 191, 79, 64, 148, 3, 184, 234, 27, 219, 57, 22, 158, 58, 252, 109, 116, 27, 235, 101, 9, 191, + 113, 40, 162, 180, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 899, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14065990800532324022" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3aca5ff3723a6301de712d" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6791083459857303837" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "504219376409120586" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "461958041839560208" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8419791932871035530" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10083183170110313794" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10986747566610701105" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "726e024285" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13090813989182963295" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11344361724836081252" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13180747962210033518" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f6b119ee5dc886f0eecc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13143152324236363330" + } + } + ] + }, + "cborHex": "9fd8669f1bc334701bb7a43eb69fbf41e84b3aca5ff3723a6301de712dffffff9fd8669f1b5e3ec66d10d3491d9f1b06ff58d9f3bc0f4affffbf1b0669346438fb66101b74d91c27297a4a8a1b8beea9ab939f554241bd1b9878c4b398b7db3145726e0242851bb5abe9f70df6fe5f1b9d6f44e23c646e64ff9f1bb6eb6c6fe17b9f6effff4af6b119ee5dc886f0eecc1bb665db674af54642ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 195, 52, 112, 27, 183, 164, 62, 182, 159, 191, 65, 232, 75, 58, 202, 95, 243, 114, 58, 99, + 1, 222, 113, 45, 255, 255, 255, 159, 216, 102, 159, 27, 94, 62, 198, 109, 16, 211, 73, 29, 159, 27, 6, 255, 88, + 217, 243, 188, 15, 74, 255, 255, 191, 27, 6, 105, 52, 100, 56, 251, 102, 16, 27, 116, 217, 28, 39, 41, 122, 74, + 138, 27, 139, 238, 169, 171, 147, 159, 85, 66, 65, 189, 27, 152, 120, 196, 179, 152, 183, 219, 49, 69, 114, 110, + 2, 66, 133, 27, 181, 171, 233, 247, 13, 246, 254, 95, 27, 157, 111, 68, 226, 60, 100, 110, 100, 255, 159, 27, 182, + 235, 108, 111, 225, 123, 159, 110, 255, 255, 74, 246, 177, 25, 238, 93, 200, 134, 240, 238, 204, 27, 182, 101, + 219, 103, 74, 245, 70, 66, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 900, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd73b31f270404d407de02fc" + }, + "cborHex": "4cfd73b31f270404d407de02fc", + "cborBytes": [76, 253, 115, 179, 31, 39, 4, 4, 212, 7, 222, 2, 252], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 901, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04fd9c044c3802b3c4066703" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11126616230261332008" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd9b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9225921b05fe2d0013feff04" + } + } + ] + }, + "cborHex": "bf4c04fd9c044c3802b3c40667031b9a69ae8294d2982842fd9b4c9225921b05fe2d0013feff04ff", + "cborBytes": [ + 191, 76, 4, 253, 156, 4, 76, 56, 2, 179, 196, 6, 103, 3, 27, 154, 105, 174, 130, 148, 210, 152, 40, 66, 253, 155, + 76, 146, 37, 146, 27, 5, 254, 45, 0, 19, 254, 255, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 902, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd050243" + }, + "cborHex": "44fd050243", + "cborBytes": [68, 253, 5, 2, 67], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 903, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d546ff78b1900f81" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c7b733fc307b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0206fab2f98f00f8ea020303" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13982933357427022495" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9003" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6444974db2de83f72" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71b009" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1424638837784141663" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15360490017814323199" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bdcef87b2b5e20" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2435121529939149451" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6908946622341065319" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5779762269228625767" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9547f606f9c706072140d400" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f48d546ff78b1900f81bf475c7b733fc307b64c0206fab2f98f00f8ea02030341621bc20d5bcdc765da9f4285bf0c4290031449e6444974db2de83f724371b009ffd8669f1b13c5557993595f5f9f1bd52b6c49afc19fff47bdcef87b2b5e20d8669f1b21cb4a2130edc28b9f1b5fe182590cc62a67ffff1b5035d7294f93ef674c9547f606f9c706072140d400ffffd9050c8080ff", + "cborBytes": [ + 159, 72, 213, 70, 255, 120, 177, 144, 15, 129, 191, 71, 92, 123, 115, 63, 195, 7, 182, 76, 2, 6, 250, 178, 249, + 143, 0, 248, 234, 2, 3, 3, 65, 98, 27, 194, 13, 91, 205, 199, 101, 218, 159, 66, 133, 191, 12, 66, 144, 3, 20, 73, + 230, 68, 73, 116, 219, 45, 232, 63, 114, 67, 113, 176, 9, 255, 216, 102, 159, 27, 19, 197, 85, 121, 147, 89, 95, + 95, 159, 27, 213, 43, 108, 73, 175, 193, 159, 255, 71, 189, 206, 248, 123, 43, 94, 32, 216, 102, 159, 27, 33, 203, + 74, 33, 48, 237, 194, 139, 159, 27, 95, 225, 130, 89, 12, 198, 42, 103, 255, 255, 27, 80, 53, 215, 41, 79, 147, + 239, 103, 76, 149, 71, 246, 6, 249, 199, 6, 7, 33, 64, 212, 0, 255, 255, 217, 5, 12, 128, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 904, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + "cborHex": "d87c9f02ff", + "cborBytes": [216, 124, 159, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 905, + "sample": { + "_tag": "ByteArray", + "bytearray": "01f831fcfffb" + }, + "cborHex": "4601f831fcfffb", + "cborBytes": [70, 1, 248, 49, 252, 255, 251], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 906, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + }, + "cborHex": "9f05ff", + "cborBytes": [159, 5, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 907, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05ef1091bd1da0761b5f18" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d9" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb04feffaf0001fc0412" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2593701225997163107" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1cc829966a4e8f448e" + }, + { + "_tag": "ByteArray", + "bytearray": "4ee67e911f59a97c4b" + }, + { + "_tag": "ByteArray", + "bytearray": "c7823e98475ab9c8" + } + ] + } + } + ] + }, + "cborHex": "bf4b05ef1091bd1da0761b5f189f41d9ff4afb04feffaf0001fc0412d8669f1b23fead85e50e5a639f491cc829966a4e8f448e494ee67e911f59a97c4b48c7823e98475ab9c8ffffff", + "cborBytes": [ + 191, 75, 5, 239, 16, 145, 189, 29, 160, 118, 27, 95, 24, 159, 65, 217, 255, 74, 251, 4, 254, 255, 175, 0, 1, 252, + 4, 18, 216, 102, 159, 27, 35, 254, 173, 133, 229, 14, 90, 99, 159, 73, 28, 200, 41, 150, 106, 78, 143, 68, 142, + 73, 78, 230, 126, 145, 31, 89, 169, 124, 75, 72, 199, 130, 62, 152, 71, 90, 185, 200, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 908, + "sample": { + "_tag": "ByteArray", + "bytearray": "c52937775e7582fa7c" + }, + "cborHex": "49c52937775e7582fa7c", + "cborBytes": [73, 197, 41, 55, 119, 94, 117, 130, 250, 124], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 909, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1733830426918401082" + } + }, + "cborHex": "1b180fcd96493c343a", + "cborBytes": [27, 24, 15, 205, 150, 73, 60, 52, 58], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 910, + "sample": { + "_tag": "ByteArray", + "bytearray": "5d026a5fb9ecc4a3093480" + }, + "cborHex": "4b5d026a5fb9ecc4a3093480", + "cborBytes": [75, 93, 2, 106, 95, 185, 236, 196, 163, 9, 52, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 911, + "sample": { + "_tag": "ByteArray", + "bytearray": "03b5" + }, + "cborHex": "4203b5", + "cborBytes": [66, 3, 181], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 912, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5515935369982430657" + } + }, + "cborHex": "1b4c8c89fe8bd0cdc1", + "cborBytes": [27, 76, 140, 137, 254, 139, 208, 205, 193], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 913, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17725894552875381283" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17750822022250761010" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7538743038926489936" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c161b696b" + }, + { + "_tag": "ByteArray", + "bytearray": "4716bf41e7e564" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10554279986630231290" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6043447041568222570" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3280335c44b667f5f377a3b8" + }, + { + "_tag": "ByteArray", + "bytearray": "67" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf5ff072e162b32239f9f1bf6579694d3700b321b689efeda18298950454c161b696b474716bf41e7e5641b927855ba971c04faff9f1b53dea310938f2d6a4c3280335c44b667f5f377a3b84167ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 245, 255, 7, 46, 22, 43, 50, 35, 159, 159, 27, 246, 87, 150, 148, 211, 112, 11, 50, 27, + 104, 158, 254, 218, 24, 41, 137, 80, 69, 76, 22, 27, 105, 107, 71, 71, 22, 191, 65, 231, 229, 100, 27, 146, 120, + 85, 186, 151, 28, 4, 250, 255, 159, 27, 83, 222, 163, 16, 147, 143, 45, 106, 76, 50, 128, 51, 92, 68, 182, 103, + 245, 243, 119, 163, 184, 65, 103, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 914, + "sample": { + "_tag": "ByteArray", + "bytearray": "fdd302ec" + }, + "cborHex": "44fdd302ec", + "cborBytes": [68, 253, 211, 2, 236], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 915, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3790" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1648685504459670225" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6941c74671a337cb108fe1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10207953166066674406" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "958307d2a7f4179ed42262da" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "004b84e508b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6635" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65d1879dbf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12771363748669919400" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79944a80a3d0a0aa6a87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4cd29069842b4d53" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f5922ce1d6538" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2267412626349807966" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e09704597f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11387627212226781228" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e20e96c2c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3223929971395283683" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4237901b16e14ebb2fa782d14b6941c74671a337cb108fe11b8da9ef520b3a6ae64c958307d2a7f4179ed42262dabf46004b84e508b94266354565d1879dbf1bb13cffa9f0c590a84a79944a80a3d0a0aa6a87484cd29069842b4d53479f5922ce1d65381b1f7777c538d0d95e45e09704597f1b9e08fa9d8359602c45e20e96c2c41b2cbdb33a55c04ae3ffff", + "cborBytes": [ + 191, 66, 55, 144, 27, 22, 225, 78, 187, 47, 167, 130, 209, 75, 105, 65, 199, 70, 113, 163, 55, 203, 16, 143, 225, + 27, 141, 169, 239, 82, 11, 58, 106, 230, 76, 149, 131, 7, 210, 167, 244, 23, 158, 212, 34, 98, 218, 191, 70, 0, + 75, 132, 229, 8, 185, 66, 102, 53, 69, 101, 209, 135, 157, 191, 27, 177, 60, 255, 169, 240, 197, 144, 168, 74, + 121, 148, 74, 128, 163, 208, 160, 170, 106, 135, 72, 76, 210, 144, 105, 132, 43, 77, 83, 71, 159, 89, 34, 206, 29, + 101, 56, 27, 31, 119, 119, 197, 56, 208, 217, 94, 69, 224, 151, 4, 89, 127, 27, 158, 8, 250, 157, 131, 89, 96, 44, + 69, 226, 14, 150, 194, 196, 27, 44, 189, 179, 58, 85, 192, 74, 227, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 916, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7334004985989281340" + } + }, + "cborHex": "1b65c79ead72d5b63c", + "cborBytes": [27, 101, 199, 158, 173, 114, 213, 182, 60], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 917, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4679187294631370128" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10962032288059082581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10797066743449628062" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14721919306878393401" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "998f4b96818fc981" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d7674932535ba8afdd89e94" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17562398864812827573" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11655412138840242287" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12361227430627841893" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5082554821763679849" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15026114773280683419" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14266952143715979483" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b40efd00d96061d90bf1b9820f649621fc7551b95d6e2ff737fad9eff1bcc4ec39c0a739c39bf48998f4b96818fc9814c6d7674932535ba8afdd89e94ff1bf3ba2cb7cce463b5bf1ba1c057965659386f41ce1bab8be6db066317651b4688dcae8eac46691bd0877bc647a4f59b1bc5fe656299b050dbffff", + "cborBytes": [ + 191, 27, 64, 239, 208, 13, 150, 6, 29, 144, 191, 27, 152, 32, 246, 73, 98, 31, 199, 85, 27, 149, 214, 226, 255, + 115, 127, 173, 158, 255, 27, 204, 78, 195, 156, 10, 115, 156, 57, 191, 72, 153, 143, 75, 150, 129, 143, 201, 129, + 76, 109, 118, 116, 147, 37, 53, 186, 138, 253, 216, 158, 148, 255, 27, 243, 186, 44, 183, 204, 228, 99, 181, 191, + 27, 161, 192, 87, 150, 86, 89, 56, 111, 65, 206, 27, 171, 139, 230, 219, 6, 99, 23, 101, 27, 70, 136, 220, 174, + 142, 172, 70, 105, 27, 208, 135, 123, 198, 71, 164, 245, 155, 27, 197, 254, 101, 98, 153, 176, 80, 219, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 918, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7766911960725160780" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2834547434199322653" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15796883084705033424" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14728559240516520131" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9657956910098417484" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15961897618109050527" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8809542fe77530" + } + ] + } + } + ] + }, + "cborHex": "bf1b6bc99d4704c1834c9f1b275655df9272101d1bdb39cd7856386cd01bcc665a981048c8c3ff1b8607f4a3c272074cd8669f1bdd840d505c8b2e9f9f478809542fe77530ffffff", + "cborBytes": [ + 191, 27, 107, 201, 157, 71, 4, 193, 131, 76, 159, 27, 39, 86, 85, 223, 146, 114, 16, 29, 27, 219, 57, 205, 120, + 86, 56, 108, 208, 27, 204, 102, 90, 152, 16, 72, 200, 195, 255, 27, 134, 7, 244, 163, 194, 114, 7, 76, 216, 102, + 159, 27, 221, 132, 13, 80, 92, 139, 46, 159, 159, 71, 136, 9, 84, 47, 231, 117, 48, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 919, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d905079fa0ff", + "cborBytes": [217, 5, 7, 159, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 920, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f1bfffffffffffffff006ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 6, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 921, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06fce7fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0737ce9d06fefd0304ae" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01" + }, + { + "_tag": "ByteArray", + "bytearray": "91059e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "241c2b38008661d081701a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "974226555338593236" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8905647448485693833" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d2578587cfc42ba91" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0001" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7068124b0e1a9a46" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4531794848024429721" + } + } + ] + } + } + ] + }, + "cborHex": "bf4406fce7fb124a0737ce9d06fefd0304ae9f41014391059eff4b241c2b38008661d081701ad8669f1b0d8525e3f1b593d49f1b7b97372b95da8989ffff4149a0496d2578587cfc42ba919f42000101487068124b0e1a9a461b3ee42b675f710499ffff", + "cborBytes": [ + 191, 68, 6, 252, 231, 251, 18, 74, 7, 55, 206, 157, 6, 254, 253, 3, 4, 174, 159, 65, 1, 67, 145, 5, 158, 255, 75, + 36, 28, 43, 56, 0, 134, 97, 208, 129, 112, 26, 216, 102, 159, 27, 13, 133, 37, 227, 241, 181, 147, 212, 159, 27, + 123, 151, 55, 43, 149, 218, 137, 137, 255, 255, 65, 73, 160, 73, 109, 37, 120, 88, 124, 252, 66, 186, 145, 159, + 66, 0, 1, 1, 72, 112, 104, 18, 75, 14, 26, 154, 70, 27, 62, 228, 43, 103, 95, 113, 4, 153, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 922, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "30d048" + } + ] + }, + "cborHex": "d87f9f4330d048ff", + "cborBytes": [216, 127, 159, 67, 48, 208, 72, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 923, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "cborHex": "1bffffffffffffffed", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 237], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 924, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3903326210202051107" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b362b6681e990a22380ff80ff", + "cborBytes": [159, 216, 102, 159, 27, 54, 43, 102, 129, 233, 144, 162, 35, 128, 255, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 925, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4188256246910179634" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c60c6cdbd00d58a0d" + } + } + ] + } + ] + }, + "cborHex": "d9050d9fbf1b3a1facddc1645932491c60c6cdbd00d58a0dffff", + "cborBytes": [ + 217, 5, 13, 159, 191, 27, 58, 31, 172, 221, 193, 100, 89, 50, 73, 28, 96, 198, 205, 189, 0, 213, 138, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 926, + "sample": { + "_tag": "ByteArray", + "bytearray": "280300b301" + }, + "cborHex": "45280300b301", + "cborBytes": [69, 40, 3, 0, 179, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 927, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "927276605474447901" + } + }, + "cborHex": "1b0cde5928e5d5a21d", + "cborBytes": [27, 12, 222, 89, 40, 229, 213, 162, 29], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 928, + "sample": { + "_tag": "ByteArray", + "bytearray": "01b4" + }, + "cborHex": "4201b4", + "cborBytes": [66, 1, 180], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 929, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16926726447158494128" + } + }, + "cborHex": "1beae7d005a51783b0", + "cborBytes": [27, 234, 231, 208, 5, 165, 23, 131, 176], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 930, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13836302162265739561" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0100" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02f9e9fd03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40fe44d56a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7455" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcdf8324e315f16b63927f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2787541596852615467" + } + } + } + ] + } + ] + }, + "cborHex": "d905029fbf1bc0046b823ad19129420100ffbf4202e241fb4502f9e9fd031bfffffffffffffff14540fe44d56a42745541fc41894bfcdf8324e315f16b63927f1b26af56503506792bffff", + "cborBytes": [ + 217, 5, 2, 159, 191, 27, 192, 4, 107, 130, 58, 209, 145, 41, 66, 1, 0, 255, 191, 66, 2, 226, 65, 251, 69, 2, 249, + 233, 253, 3, 27, 255, 255, 255, 255, 255, 255, 255, 241, 69, 64, 254, 68, 213, 106, 66, 116, 85, 65, 252, 65, 137, + 75, 252, 223, 131, 36, 227, 21, 241, 107, 99, 146, 127, 27, 38, 175, 86, 80, 53, 6, 121, 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 931, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fc" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9985622922553019502" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "917831497936409534" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3f2f36ad8d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10820223681416206765" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8575149378458364185" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "435363276558172811" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b510824af343d9c218967e18" + } + ] + } + ] + } + ] + }, + "cborHex": "d9050b9f9f41fc9f05ffd8669f1b8a940f2457c54c6e9f1b0cbccae26e2a13be453f2f36ad8d1b9629281c391519ad1b77010ced36ec29191b060ab897e780028bffff9f4cb510824af343d9c218967e18ffffff", + "cborBytes": [ + 217, 5, 11, 159, 159, 65, 252, 159, 5, 255, 216, 102, 159, 27, 138, 148, 15, 36, 87, 197, 76, 110, 159, 27, 12, + 188, 202, 226, 110, 42, 19, 190, 69, 63, 47, 54, 173, 141, 27, 150, 41, 40, 28, 57, 21, 25, 173, 27, 119, 1, 12, + 237, 54, 236, 41, 25, 27, 6, 10, 184, 151, 231, 128, 2, 139, 255, 255, 159, 76, 181, 16, 130, 74, 243, 67, 217, + 194, 24, 150, 126, 24, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 932, + "sample": { + "_tag": "ByteArray", + "bytearray": "025107f9" + }, + "cborHex": "44025107f9", + "cborBytes": [68, 2, 81, 7, 249], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 933, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12960787009979054324" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13177752545901140535" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12452929611607034549" + } + }, + { + "_tag": "ByteArray", + "bytearray": "db" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13024135690380540445" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5525" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "881e6f24312c83e59467b1e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11020495801066511256" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7eaf4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12227467407019699430" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f08d8669f1bb3ddf71dcb4c78f49f1bb6e0c81f2c6fda379f1bacd1b180d8c7cab541dbffbf1bb4bf0667d39e7a1d4255254c881e6f24312c83e59467b1e41b98f0aa8abf40db9843c7eaf41ba9b0b0d2a2136ce6ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 8, 216, 102, 159, 27, 179, 221, 247, 29, 203, 76, + 120, 244, 159, 27, 182, 224, 200, 31, 44, 111, 218, 55, 159, 27, 172, 209, 177, 128, 216, 199, 202, 181, 65, 219, + 255, 191, 27, 180, 191, 6, 103, 211, 158, 122, 29, 66, 85, 37, 76, 136, 30, 111, 36, 49, 44, 131, 229, 148, 103, + 177, 228, 27, 152, 240, 170, 138, 191, 64, 219, 152, 67, 199, 234, 244, 27, 169, 176, 176, 210, 162, 19, 108, 230, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 934, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14849576983228183679" + } + }, + "cborHex": "1bce144b96fe21f47f", + "cborBytes": [27, 206, 20, 75, 150, 254, 33, 244, 127], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 935, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6936784184509459159" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "3d" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b60446876913bead780ff413da0ffff", + "cborBytes": [159, 159, 216, 102, 159, 27, 96, 68, 104, 118, 145, 59, 234, 215, 128, 255, 65, 61, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 936, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7f2976e0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2142123695939740384" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c836af" + }, + { + "_tag": "ByteArray", + "bytearray": "6f579987d4d4b2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aebf6364104f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15826041231605846657" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f447f2976e0d8669f1b1dba5a26e96f62e09f43c836af476f579987d4d4b2bf46aebf6364104f1bdba164a6728d5281ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 68, 127, 41, 118, 224, 216, 102, 159, 27, 29, 186, + 90, 38, 233, 111, 98, 224, 159, 67, 200, 54, 175, 71, 111, 87, 153, 135, 212, 212, 178, 191, 70, 174, 191, 99, + 100, 16, 79, 27, 219, 161, 100, 166, 114, 141, 82, 129, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 937, + "sample": { + "_tag": "ByteArray", + "bytearray": "94bb6d7a007db538bad81f" + }, + "cborHex": "4b94bb6d7a007db538bad81f", + "cborBytes": [75, 148, 187, 109, 122, 0, 125, 181, 56, 186, 216, 31], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 938, + "sample": { + "_tag": "ByteArray", + "bytearray": "99d5" + }, + "cborHex": "4299d5", + "cborBytes": [66, 153, 213], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 939, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10976890938228197873" + } + }, + "cborHex": "1b9855c026774bc9f1", + "cborBytes": [27, 152, 85, 192, 38, 119, 75, 201, 241], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 940, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11854598964140430987" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12882294653943749654" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4c9780f62efc0260" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4959530199733849321" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8bb4fe" + }, + { + "_tag": "ByteArray", + "bytearray": "043b4485" + }, + { + "_tag": "ByteArray", + "bytearray": "ec67ffdac8f88cf740fc3b" + }, + { + "_tag": "ByteArray", + "bytearray": "13ec86ca3afb4694a3" + }, + { + "_tag": "ByteArray", + "bytearray": "2819" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1ba483fef3144dd68b9f9fd9050880d8669f1bb2c71abc043b1c169f484c9780f62efc0260ffffd8669f1b44d3ca709ff54ce99f438bb4fe44043b44854bec67ffdac8f88cf740fc3b4913ec86ca3afb4694a3422819ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 164, 131, 254, 243, 20, 77, 214, 139, 159, 159, 217, 5, 8, 128, 216, 102, 159, 27, 178, 199, + 26, 188, 4, 59, 28, 22, 159, 72, 76, 151, 128, 246, 46, 252, 2, 96, 255, 255, 216, 102, 159, 27, 68, 211, 202, + 112, 159, 245, 76, 233, 159, 67, 139, 180, 254, 68, 4, 59, 68, 133, 75, 236, 103, 255, 218, 200, 248, 140, 247, + 64, 252, 59, 73, 19, 236, 134, 202, 58, 251, 70, 148, 163, 66, 40, 25, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 941, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87c9fa0ff", + "cborBytes": [216, 124, 159, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 942, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3297735294266077615" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14068329469882518514" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18043946538895524421" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13725898748487787732" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1286313887356155527" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14681743760177576800" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17239438805139757259" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72ade1b8b3" + }, + { + "_tag": "ByteArray", + "bytearray": "bf" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e01ffd5e08623dc1" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17970873294223739571" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17245783369937823204" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b2dc3e8c729ff71af9f9f1bc33cbf1d9b81cbf2d8669f1bfa68f9c6b501c24580ffffd8669f1bbe7c30305697e4d49fd8669f1b11d9e7aa5583f6879f1bcbc00829a4b13b601bef3eca413b7098cb4572ade1b8b341bfffff48e01ffd5e08623dc1801bf9655e0c1dc28ab3ffff1bef55549a567ba5e480ffff", + "cborBytes": [ + 216, 102, 159, 27, 45, 195, 232, 199, 41, 255, 113, 175, 159, 159, 27, 195, 60, 191, 29, 155, 129, 203, 242, 216, + 102, 159, 27, 250, 104, 249, 198, 181, 1, 194, 69, 128, 255, 255, 216, 102, 159, 27, 190, 124, 48, 48, 86, 151, + 228, 212, 159, 216, 102, 159, 27, 17, 217, 231, 170, 85, 131, 246, 135, 159, 27, 203, 192, 8, 41, 164, 177, 59, + 96, 27, 239, 62, 202, 65, 59, 112, 152, 203, 69, 114, 173, 225, 184, 179, 65, 191, 255, 255, 72, 224, 31, 253, 94, + 8, 98, 61, 193, 128, 27, 249, 101, 94, 12, 29, 194, 138, 179, 255, 255, 27, 239, 85, 84, 154, 86, 123, 165, 228, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 943, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "328241410851519431" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "936826595405747844" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15587708086620582357" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c0f86" + }, + { + "_tag": "ByteArray", + "bytearray": "fc7f8fe538f9c772" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11696074230989281512" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f932f6e70c019b3" + } + ] + } + ] + }, + "cborHex": "9f1b048e25d2f660bbc780809fd8669f1b0d0046d3334c56849f1bd852a9eae580f1d5435c0f8648fc7f8fe538f9c772ffff1ba250cd8b6cb758e8486f932f6e70c019b3ffff", + "cborBytes": [ + 159, 27, 4, 142, 37, 210, 246, 96, 187, 199, 128, 128, 159, 216, 102, 159, 27, 13, 0, 70, 211, 51, 76, 86, 132, + 159, 27, 216, 82, 169, 234, 229, 128, 241, 213, 67, 92, 15, 134, 72, 252, 127, 143, 229, 56, 249, 199, 114, 255, + 255, 27, 162, 80, 205, 139, 108, 183, 88, 232, 72, 111, 147, 47, 110, 112, 192, 25, 179, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 944, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3344967178090050337" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2089409337638179200" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4895737831964748757" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a7bdec" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8425174619258488833" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3e182e0c521434920492c02f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6910849838271137689" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15780851024187680330" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c882c1f80bcae017c1652" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3098682677819470548" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6258256309084149038" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12545058695537633789" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12933907250411047920" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8309529216010772781" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a3ff149c594a" + } + ] + } + ] + }, + "cborHex": "9f1b2e6bb5ed1365f3219f80d8669f1b1cff12b8f04ed18080ff9f1b43f1279e93b32bd543a7bdec1b74ec3bad7f8a0801ff4c3e182e0c521434920492c02fff1b5fe845500a3787991bdb00d8655e10e64a9fbf4b4c882c1f80bcae017c16521b2b00bb7a5b15f2d4ff801b56d9caf4984ed52ed8669f1bae19006ac1f229fd9f1bb37e781e12998bf01b735160cbd30d612dffff46a3ff149c594affff", + "cborBytes": [ + 159, 27, 46, 107, 181, 237, 19, 101, 243, 33, 159, 128, 216, 102, 159, 27, 28, 255, 18, 184, 240, 78, 209, 128, + 128, 255, 159, 27, 67, 241, 39, 158, 147, 179, 43, 213, 67, 167, 189, 236, 27, 116, 236, 59, 173, 127, 138, 8, 1, + 255, 76, 62, 24, 46, 12, 82, 20, 52, 146, 4, 146, 192, 47, 255, 27, 95, 232, 69, 80, 10, 55, 135, 153, 27, 219, 0, + 216, 101, 94, 16, 230, 74, 159, 191, 75, 76, 136, 44, 31, 128, 188, 174, 1, 124, 22, 82, 27, 43, 0, 187, 122, 91, + 21, 242, 212, 255, 128, 27, 86, 217, 202, 244, 152, 78, 213, 46, 216, 102, 159, 27, 174, 25, 0, 106, 193, 242, 41, + 253, 159, 27, 179, 126, 120, 30, 18, 153, 139, 240, 27, 115, 81, 96, 203, 211, 13, 97, 45, 255, 255, 70, 163, 255, + 20, 156, 89, 74, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 945, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3982141526932959949" + } + }, + "cborHex": "1b3743689ed62bb2cd", + "cborBytes": [27, 55, 67, 104, 158, 214, 43, 178, 205], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 946, + "sample": { + "_tag": "ByteArray", + "bytearray": "02fe02b205077e2e3e04" + }, + "cborHex": "4a02fe02b205077e2e3e04", + "cborBytes": [74, 2, 254, 2, 178, 5, 7, 126, 46, 62, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 947, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9291555183417843869" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "764756875585807059" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10287994599362770263" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1606773631500545226" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d07d0e23d510c37d76588b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13504532565359376912" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66e392b5388c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14150287795597140302" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1621458191046251205" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16025531024981114114" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5d085c8683f26e8278ca6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16207231456959237548" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5907028182969420531" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3246406950976160836" + } + } + ] + }, + "cborHex": "d8669f1b80f23c35e68f609d9fbf1b0a9cf65394d462d31b8ec64c947a27b5571b164c681ad40decca4bd07d0e23d510c37d76588b1bbb69bcd16ff0ba104666e392b5388c1bc45febc7561ce14e1b168093a2477592c51bde661f8f71003d024bf5d085c8683f26e8278ca61be0eba723f8978dac1b51f9fad5ec1d0af3ff1b2d0d8debf54b0444ffff", + "cborBytes": [ + 216, 102, 159, 27, 128, 242, 60, 53, 230, 143, 96, 157, 159, 191, 27, 10, 156, 246, 83, 148, 212, 98, 211, 27, + 142, 198, 76, 148, 122, 39, 181, 87, 27, 22, 76, 104, 26, 212, 13, 236, 202, 75, 208, 125, 14, 35, 213, 16, 195, + 125, 118, 88, 139, 27, 187, 105, 188, 209, 111, 240, 186, 16, 70, 102, 227, 146, 181, 56, 140, 27, 196, 95, 235, + 199, 86, 28, 225, 78, 27, 22, 128, 147, 162, 71, 117, 146, 197, 27, 222, 102, 31, 143, 113, 0, 61, 2, 75, 245, + 208, 133, 200, 104, 63, 38, 232, 39, 140, 166, 27, 224, 235, 167, 35, 248, 151, 141, 172, 27, 81, 249, 250, 213, + 236, 29, 10, 243, 255, 27, 45, 13, 141, 235, 245, 75, 4, 68, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 948, + "sample": { + "_tag": "ByteArray", + "bytearray": "3a00" + }, + "cborHex": "423a00", + "cborBytes": [66, 58, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 949, + "sample": { + "_tag": "ByteArray", + "bytearray": "420182013af834554b06" + }, + "cborHex": "4a420182013af834554b06", + "cborBytes": [74, 66, 1, 130, 1, 58, 248, 52, 85, 75, 6], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 950, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10333318029442526710" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7198286118608560231" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b8f6751ffe00fadf69f1b63e573163349e06780a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 143, 103, 81, 255, 224, 15, 173, 246, 159, 27, 99, 229, 115, 22, 51, 73, 224, 103, 128, 160, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 951, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6483988882229282435" + } + }, + "cborHex": "1b59fbc188e4dbc683", + "cborBytes": [27, 89, 251, 193, 136, 228, 219, 198, 131], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 952, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9968742644348991315" + }, + "fields": [] + }, + "cborHex": "d8669f1b8a58169e4db5b75380ff", + "cborBytes": [216, 102, 159, 27, 138, 88, 22, 158, 77, 181, 183, 83, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 953, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f94cfdf9fd4e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6782092187524129001" + } + } + ] + }, + "cborHex": "9f46f94cfdf9fd4e1b5e1ed4e95753e0e9ff", + "cborBytes": [159, 70, 249, 76, 253, 249, 253, 78, 27, 94, 30, 212, 233, 87, 83, 224, 233, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 954, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3904284968252622808" + } + }, + "cborHex": "1b362ece7e2a9847d8", + "cborBytes": [27, 54, 46, 206, 126, 42, 152, 71, 216], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 955, + "sample": { + "_tag": "ByteArray", + "bytearray": "80daa3a51b" + }, + "cborHex": "4580daa3a51b", + "cborBytes": [69, 128, 218, 163, 165, 27], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 956, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13278151738179073375" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15856726780802478237" + } + } + ] + }, + "cborHex": "d8669f1bb84578a7bbe6355f9f1bdc0e68fe9e27b09dffff", + "cborBytes": [ + 216, 102, 159, 27, 184, 69, 120, 167, 187, 230, 53, 95, 159, 27, 220, 14, 104, 254, 158, 39, 176, 157, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 957, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd064207d7e50201f99f" + }, + "cborHex": "4afd064207d7e50201f99f", + "cborBytes": [74, 253, 6, 66, 7, 215, 229, 2, 1, 249, 159], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 958, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10593912324034135262" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2203931507717614522" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43a5a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8754416236559328866" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8403981396763617523" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15163402937889461299" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17544514276439707063" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17706113831949548877" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d00ba3" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b9305232137b004de9fbf1b1e95f00782ccabba4343a5a51b797def2f2c07e6621b74a0f08ddd1628f31bd26f3aa2030414331bf37aa2c793f54db7ffbf1bf5b8c0b819fbbd4d43d00ba3ffffff", + "cborBytes": [ + 216, 102, 159, 27, 147, 5, 35, 33, 55, 176, 4, 222, 159, 191, 27, 30, 149, 240, 7, 130, 204, 171, 186, 67, 67, + 165, 165, 27, 121, 125, 239, 47, 44, 7, 230, 98, 27, 116, 160, 240, 141, 221, 22, 40, 243, 27, 210, 111, 58, 162, + 3, 4, 20, 51, 27, 243, 122, 162, 199, 147, 245, 77, 183, 255, 191, 27, 245, 184, 192, 184, 25, 251, 189, 77, 67, + 208, 11, 163, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 959, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2fc40d6c" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d39dbfd0a09e0cc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7576324107564673519" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "958607100268520295" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18206182036301815624" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13537648521624822066" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "215069e21f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d9aadabcb856a05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b944446e9f701ec61b0597" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "448b23dff20c538e02237a41" + } + } + ] + } + } + ] + }, + "cborHex": "bf442fc40d6c80485d39dbfd0a09e0ccbf1b692482a27e9ee9ef1b0d4da8142aac23671bfca95a19fdde1f481bbbdf639ad98a213245215069e21f488d9aadabcb856a054bb944446e9f701ec61b05974c448b23dff20c538e02237a41ffff", + "cborBytes": [ + 191, 68, 47, 196, 13, 108, 128, 72, 93, 57, 219, 253, 10, 9, 224, 204, 191, 27, 105, 36, 130, 162, 126, 158, 233, + 239, 27, 13, 77, 168, 20, 42, 172, 35, 103, 27, 252, 169, 90, 25, 253, 222, 31, 72, 27, 187, 223, 99, 154, 217, + 138, 33, 50, 69, 33, 80, 105, 226, 31, 72, 141, 154, 173, 171, 203, 133, 106, 5, 75, 185, 68, 68, 110, 159, 112, + 30, 198, 27, 5, 151, 76, 68, 139, 35, 223, 242, 12, 83, 142, 2, 35, 122, 65, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 960, + "sample": { + "_tag": "ByteArray", + "bytearray": "60ea955bdfb75350ab4157ec" + }, + "cborHex": "4c60ea955bdfb75350ab4157ec", + "cborBytes": [76, 96, 234, 149, 91, 223, 183, 83, 80, 171, 65, 87, 236], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 961, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6096272063681537437" + } + }, + { + "_tag": "ByteArray", + "bytearray": "22268d1496df3dd038" + }, + { + "_tag": "ByteArray", + "bytearray": "00f602" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c890540276" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f1b549a4f2479e0259d4922268d1496df3dd0384300f6029fd87c9f45c890540276ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 27, 84, 154, 79, 36, 121, 224, 37, 157, 73, 34, + 38, 141, 20, 150, 223, 61, 208, 56, 67, 0, 246, 2, 159, 216, 124, 159, 69, 200, 144, 84, 2, 118, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 962, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8141146904489887084" + } + }, + "cborHex": "1b70fb29f9da64056c", + "cborBytes": [27, 112, 251, 41, 249, 218, 100, 5, 108], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 963, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21ac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "894650fe64779506eedc2a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b19056eda301de0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f3ad46138b57baea9b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4486b9ec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bbce968fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8730db22b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14299445805207117450" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4221ac4b894650fe64779506eedc2a484b19056eda301de041404a7f3ad46138b57baea9b8444486b9ec41b4458bbce968fe45f8730db22b1bc671d632b851de8affbf0f03ffff", + "cborBytes": [ + 159, 191, 66, 33, 172, 75, 137, 70, 80, 254, 100, 119, 149, 6, 238, 220, 42, 72, 75, 25, 5, 110, 218, 48, 29, 224, + 65, 64, 74, 127, 58, 212, 97, 56, 181, 123, 174, 169, 184, 68, 68, 134, 185, 236, 65, 180, 69, 139, 188, 233, 104, + 254, 69, 248, 115, 13, 178, 43, 27, 198, 113, 214, 50, 184, 81, 222, 138, 255, 191, 15, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 964, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "53" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1877080848336577388" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1341750346374301514" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3c40b41afbf1511405e9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11969446861662624139" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c489a4d48db597afda750a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9556" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8486176401185003300" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9fce18f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5024013780646590873" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3284f45" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6584077790819570033" + } + } + } + ] + }, + "cborHex": "bf4153d8669f1b1a0cbb161bca636c9f1b129edad4c4e5c74a4a3c40b41afbf1511405e91ba61c0480fb50998b4bc489a4d48db597afda750affff4295561b75c4f479a5ef5724449fce18f91b45b8e1ea461b799944d3284f451b5b5f57dde756d171ff", + "cborBytes": [ + 191, 65, 83, 216, 102, 159, 27, 26, 12, 187, 22, 27, 202, 99, 108, 159, 27, 18, 158, 218, 212, 196, 229, 199, 74, + 74, 60, 64, 180, 26, 251, 241, 81, 20, 5, 233, 27, 166, 28, 4, 128, 251, 80, 153, 139, 75, 196, 137, 164, 212, + 141, 181, 151, 175, 218, 117, 10, 255, 255, 66, 149, 86, 27, 117, 196, 244, 121, 165, 239, 87, 36, 68, 159, 206, + 24, 249, 27, 69, 184, 225, 234, 70, 27, 121, 153, 68, 211, 40, 79, 69, 27, 91, 95, 87, 221, 231, 86, 209, 113, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 965, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3032945763803963626" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "203f4d8eb08e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16719119630642649881" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96911e6352ae3791" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15528167644211610327" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0d312d7f9698a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4e60607756ce39354052d" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5934204348234903032" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "755983218778986067" + } + } + } + ] + }, + "cborHex": "bf1b2a17301a5a8fa0eabf46203f4d8eb08e1be8063eb8edb71b194896911e6352ae37911bd77f22335df282d747e0d312d7f9698a4bf4e60607756ce39354052dff1b525a8769f91eadf81b0a7dcabb6b7a5653ff", + "cborBytes": [ + 191, 27, 42, 23, 48, 26, 90, 143, 160, 234, 191, 70, 32, 63, 77, 142, 176, 142, 27, 232, 6, 62, 184, 237, 183, 27, + 25, 72, 150, 145, 30, 99, 82, 174, 55, 145, 27, 215, 127, 34, 51, 93, 242, 130, 215, 71, 224, 211, 18, 215, 249, + 105, 138, 75, 244, 230, 6, 7, 117, 108, 227, 147, 84, 5, 45, 255, 27, 82, 90, 135, 105, 249, 30, 173, 248, 27, 10, + 125, 202, 187, 107, 122, 86, 83, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 966, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd9050480ff", + "cborBytes": [159, 217, 5, 4, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 967, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f9361b5cb000626" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a51ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5174a70474c52e9fbe168de3" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3896" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57551139d7da" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf480f9361b5cb000626bf438a51ab4c5174a70474c52e9fbe168de3ff423896a04657551139d7dad87980ff", + "cborBytes": [ + 191, 72, 15, 147, 97, 181, 203, 0, 6, 38, 191, 67, 138, 81, 171, 76, 81, 116, 167, 4, 116, 197, 46, 159, 190, 22, + 141, 227, 255, 66, 56, 150, 160, 70, 87, 85, 17, 57, 215, 218, 216, 121, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 968, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10229621139351445541" + } + }, + "cborHex": "1b8df6ea3a35dea025", + "cborBytes": [27, 141, 246, 234, 58, 53, 222, 160, 37], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 969, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9579468386831753060" + } + }, + "cborHex": "1b84f11bbe5e30df64", + "cborBytes": [27, 132, 241, 27, 190, 94, 48, 223, 100], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 970, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4171371907183878836" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14863099780754493833" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8975211132900347765" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + } + } + ] + }, + "cborHex": "bf09bf1b39e3b0a611bd22b41bce445680a50ed189ff1b7c8e5af900a80f75d8799f08ffff", + "cborBytes": [ + 191, 9, 191, 27, 57, 227, 176, 166, 17, 189, 34, 180, 27, 206, 68, 86, 128, 165, 14, 209, 137, 255, 27, 124, 142, + 90, 249, 0, 168, 15, 117, 216, 121, 159, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 971, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "859315725867532180" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "71193d" + }, + { + "_tag": "ByteArray", + "bytearray": "5bfcd5d3e98b2e" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "490004" + } + ] + } + ] + }, + "cborHex": "9f1b0bece7198e3dbf949f9f4371193d475bfcd5d3e98b2eff43490004ffff", + "cborBytes": [ + 159, 27, 11, 236, 231, 25, 142, 61, 191, 148, 159, 159, 67, 113, 25, 61, 71, 91, 252, 213, 211, 233, 139, 46, 255, + 67, 73, 0, 4, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 972, + "sample": { + "_tag": "ByteArray", + "bytearray": "7101" + }, + "cborHex": "427101", + "cborBytes": [66, 113, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 973, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "714865229166847452" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "146bd026c7b404af5f530a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15363771889539249716" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50e44e8722acc053" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "877eb1660b43" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5dac24fbe21b5ff1eecf4c91" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fdf6e734d80d7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ebc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00b503ab28a90e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b80e1b87" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16839300260133773605" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db6fce4f41be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7632076136880993884" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8462011114474489071" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8813205050555382596" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6669726545758339502" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9796984809433890047" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17659369617585853239" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4679580637704002515" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18117036183432357431" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "417b76" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3620984310799544710" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b09ebb6236ec4a5dcbf4b146bd026c7b404af5f530a1bd5371521fe1e76344850e44e8722acc05346877eb1660b434c5dac24fbe21b5ff1eecf4c91471fdf6e734d80d7426ebc4700b503ab28a90e44b80e1b871be9b1365e3f6aa12546db6fce4f41be1b69ea94cf5d86f65cff1b756f1a4663a8c4efa01b7a4ecb4c93083b441b5c8fa0f4a4eb41ae1b87f5e1c70c347cff801bf512af1a9587d3371b40f135cbe8249bd31bfb6ca46bb0626637bf43417b761b3240520bbe783186ffff", + "cborBytes": [ + 191, 27, 9, 235, 182, 35, 110, 196, 165, 220, 191, 75, 20, 107, 208, 38, 199, 180, 4, 175, 95, 83, 10, 27, 213, + 55, 21, 33, 254, 30, 118, 52, 72, 80, 228, 78, 135, 34, 172, 192, 83, 70, 135, 126, 177, 102, 11, 67, 76, 93, 172, + 36, 251, 226, 27, 95, 241, 238, 207, 76, 145, 71, 31, 223, 110, 115, 77, 128, 215, 66, 110, 188, 71, 0, 181, 3, + 171, 40, 169, 14, 68, 184, 14, 27, 135, 27, 233, 177, 54, 94, 63, 106, 161, 37, 70, 219, 111, 206, 79, 65, 190, + 27, 105, 234, 148, 207, 93, 134, 246, 92, 255, 27, 117, 111, 26, 70, 99, 168, 196, 239, 160, 27, 122, 78, 203, 76, + 147, 8, 59, 68, 27, 92, 143, 160, 244, 164, 235, 65, 174, 27, 135, 245, 225, 199, 12, 52, 124, 255, 128, 27, 245, + 18, 175, 26, 149, 135, 211, 55, 27, 64, 241, 53, 203, 232, 36, 155, 211, 27, 251, 108, 164, 107, 176, 98, 102, 55, + 191, 67, 65, 123, 118, 27, 50, 64, 82, 11, 190, 120, 49, 134, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 974, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2db06dbb76d7d0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "843244599163242032" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8118506623499780355" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2618410645879344262" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18117031579283655011" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b3562" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1528ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79da6d609fb329a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13381391673052834627" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e486b0c91" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13218131868277577970" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8b5a65ae00311c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4f7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11909846915208002988" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9b173d87b8c612663c" + }, + { + "_tag": "ByteArray", + "bytearray": "bcb12e3f98045df1" + }, + { + "_tag": "ByteArray", + "bytearray": "f017a19cda" + } + ] + } + } + ] + }, + "cborHex": "bf472db06dbb76d7d0bf1b0bb3ce7ec7e446301b70aabac2a85c41031b2456769c07bd4c861bfb6ca03bb3bc8963ff434b3562431528ff4879da6d609fb329a91bb9b440d438af2b43458e486b0c91d8669f1bb7703ce6caf498f29f478b5a65ae00311cffff42d4f7d8669f1ba54846ab16413dac9f499b173d87b8c612663c48bcb12e3f98045df145f017a19cdaffffff", + "cborBytes": [ + 191, 71, 45, 176, 109, 187, 118, 215, 208, 191, 27, 11, 179, 206, 126, 199, 228, 70, 48, 27, 112, 170, 186, 194, + 168, 92, 65, 3, 27, 36, 86, 118, 156, 7, 189, 76, 134, 27, 251, 108, 160, 59, 179, 188, 137, 99, 255, 67, 75, 53, + 98, 67, 21, 40, 255, 72, 121, 218, 109, 96, 159, 179, 41, 169, 27, 185, 180, 64, 212, 56, 175, 43, 67, 69, 142, + 72, 107, 12, 145, 216, 102, 159, 27, 183, 112, 60, 230, 202, 244, 152, 242, 159, 71, 139, 90, 101, 174, 0, 49, 28, + 255, 255, 66, 212, 247, 216, 102, 159, 27, 165, 72, 70, 171, 22, 65, 61, 172, 159, 73, 155, 23, 61, 135, 184, 198, + 18, 102, 60, 72, 188, 177, 46, 63, 152, 4, 93, 241, 69, 240, 23, 161, 156, 218, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 975, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6144898815115559271" + } + }, + "cborHex": "1b554710ea4fae8167", + "cborBytes": [27, 85, 71, 16, 234, 79, 174, 129, 103], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 976, + "sample": { + "_tag": "ByteArray", + "bytearray": "0528ea423f5ae8df1d" + }, + "cborHex": "490528ea423f5ae8df1d", + "cborBytes": [73, 5, 40, 234, 66, 63, 90, 232, 223, 29], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 977, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6138446205892835889" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "148192312018910008" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15661503976271305482" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d26321733d2a28c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12400162530531407037" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6958159788735420435" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3875890937411019285" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8203466999098235945" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10579390331657057826" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14957343117674749885" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2205895909530532139" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17713915639513884899" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4402359274626811603" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8755455889550811789" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5156834548926067561" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9958333550916636633" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99a1" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0bcb00ce89" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11711998244211864187" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11321950136660975410" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6baaa6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10594473079539437464" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "485610625410147750" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7650516485296286518" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6556749428701236778" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8fdbf869da75d01c95848f36" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11078436659051943438" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9622532127574810830" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11386907502573605491" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12469455539117016510" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15058524076698039360" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10536437739160005734" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7246551423807702717" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11794788157936364505" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "18591e8ad9e7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "593990642840955477" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5530244d27163a319fbf1b020e7c1f6454bb381bd958d6e36204db0a483d26321733d2a28c1bac163a1f656ef4bdffa0bf1b6090597641fb58131b35c9ee45b08a22151b71d891c597e3dc291b92d18b74629ef6221bcf93285170a31fbd1b1e9ceaa4730df92b1bf5d4786bfa7628e31b3d18526f81c706d3ffbf1b7981a0be3f47228d1b4790c1b33e3333691b8a331b9a613d8fd94299a1ff9f9f450bcb00ce891ba2896059ac3f327b1b9d1fa5a9bc5cdf32436baaa61b9307212248630f98ffbf1b06bd3c4a7aba25a61b6a2c18358e5aeb361b5afe40ddc2fb8e2a4c8fdbf869da75d01c95848f361b99be83720174d60e1b858a19fcd7e160ce1b9e066c0b0d2152731bad0c67bf2f98c5be1bd0fa9fdd4140f4401b9238f24ca0a6ec66ff1b6490ec2046a8c6bdd8669f1ba3af815692c7ebd980ff9f4618591e8ad9e71b083e4757b270ea55ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 85, 48, 36, 77, 39, 22, 58, 49, 159, 191, 27, 2, 14, 124, 31, 100, 84, 187, 56, 27, 217, 88, + 214, 227, 98, 4, 219, 10, 72, 61, 38, 50, 23, 51, 210, 162, 140, 27, 172, 22, 58, 31, 101, 110, 244, 189, 255, + 160, 191, 27, 96, 144, 89, 118, 65, 251, 88, 19, 27, 53, 201, 238, 69, 176, 138, 34, 21, 27, 113, 216, 145, 197, + 151, 227, 220, 41, 27, 146, 209, 139, 116, 98, 158, 246, 34, 27, 207, 147, 40, 81, 112, 163, 31, 189, 27, 30, 156, + 234, 164, 115, 13, 249, 43, 27, 245, 212, 120, 107, 250, 118, 40, 227, 27, 61, 24, 82, 111, 129, 199, 6, 211, 255, + 191, 27, 121, 129, 160, 190, 63, 71, 34, 141, 27, 71, 144, 193, 179, 62, 51, 51, 105, 27, 138, 51, 27, 154, 97, + 61, 143, 217, 66, 153, 161, 255, 159, 159, 69, 11, 203, 0, 206, 137, 27, 162, 137, 96, 89, 172, 63, 50, 123, 27, + 157, 31, 165, 169, 188, 92, 223, 50, 67, 107, 170, 166, 27, 147, 7, 33, 34, 72, 99, 15, 152, 255, 191, 27, 6, 189, + 60, 74, 122, 186, 37, 166, 27, 106, 44, 24, 53, 142, 90, 235, 54, 27, 90, 254, 64, 221, 194, 251, 142, 42, 76, + 143, 219, 248, 105, 218, 117, 208, 28, 149, 132, 143, 54, 27, 153, 190, 131, 114, 1, 116, 214, 14, 27, 133, 138, + 25, 252, 215, 225, 96, 206, 27, 158, 6, 108, 11, 13, 33, 82, 115, 27, 173, 12, 103, 191, 47, 152, 197, 190, 27, + 208, 250, 159, 221, 65, 64, 244, 64, 27, 146, 56, 242, 76, 160, 166, 236, 102, 255, 27, 100, 144, 236, 32, 70, + 168, 198, 189, 216, 102, 159, 27, 163, 175, 129, 86, 146, 199, 235, 217, 128, 255, 159, 70, 24, 89, 30, 138, 217, + 231, 27, 8, 62, 71, 87, 178, 112, 234, 85, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 978, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12389478690235835397" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9f1babf04539fbc76405ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 27, 171, 240, 69, 57, 251, 199, 100, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 979, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0a27f2e710f34a45328fef8e" + } + ] + }, + "cborHex": "9f4c0a27f2e710f34a45328fef8eff", + "cborBytes": [159, 76, 10, 39, 242, 231, 16, 243, 74, 69, 50, 143, 239, 142, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 980, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11747450088454865125" + }, + "fields": [] + }, + "cborHex": "d8669f1ba307539d62fbc0e580ff", + "cborBytes": [216, 102, 159, 27, 163, 7, 83, 157, 98, 251, 192, 229, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 981, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13815440286769305724" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09e250d90f135b04a086" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e52a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67ee2ea1f7436fd210" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ba90dd613" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cd6daedbd14b9dc971dc1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b97c9c20a5159d31ccc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11049579187058904831" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7a5a6ef0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1954462949d" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12328073745682845705" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15401641944689147939" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7585459145995285509" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18001202771964084614" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a2785364258ccad419fe" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7268336066947316069" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "85d74f39589aa5d8d7f4e6" + }, + { + "_tag": "ByteArray", + "bytearray": "48fdb8" + }, + { + "_tag": "ByteArray", + "bytearray": "eff30a48876b8e3b186e942f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8426709823037648549" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6732730414741853066" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12580727914874533407" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "73f26b4b544f7d64543f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a3b2cbbc36464" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3ccca857e65df0ca9b8452e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11950574359798270843" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f29d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "daddd2ca1343" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bbfba4dbe5481587c9fbf4a09e250d90f135b04a086420c04433e52a54967ee2ea1f7436fd210454ba90dd6134b9cd6daedbd14b9dc971dc14a7b97c9c20a5159d31ccc1b9957fdba3a320eff45c7a5a6ef0f46f1954462949dffd8669f1bab161dc1383ed0099f1bd5bd9fbf4ef40023ffffd8669f1b6944f6e75f4974059f1bf9d11e8bf0b241869f4aa2785364258ccad419feff1b64de5124c28df9659f4b85d74f39589aa5d8d7f4e64348fdb84ceff30a48876b8e3b186e942fffd8669f1b74f1afeffb742ea59f1b5d6f76a40328138a1bae97b9620deff61fffffffffbf4a73f26b4b544f7d64543f472a3b2cbbc364644cb3ccca857e65df0ca9b8452e1ba5d8f81039aacb7b42f29d46daddd2ca1343ffffff", + "cborBytes": [ + 216, 102, 159, 27, 191, 186, 77, 190, 84, 129, 88, 124, 159, 191, 74, 9, 226, 80, 217, 15, 19, 91, 4, 160, 134, + 66, 12, 4, 67, 62, 82, 165, 73, 103, 238, 46, 161, 247, 67, 111, 210, 16, 69, 75, 169, 13, 214, 19, 75, 156, 214, + 218, 237, 189, 20, 185, 220, 151, 29, 193, 74, 123, 151, 201, 194, 10, 81, 89, 211, 28, 204, 27, 153, 87, 253, + 186, 58, 50, 14, 255, 69, 199, 165, 166, 239, 15, 70, 241, 149, 68, 98, 148, 157, 255, 216, 102, 159, 27, 171, 22, + 29, 193, 56, 62, 208, 9, 159, 27, 213, 189, 159, 191, 78, 244, 0, 35, 255, 255, 216, 102, 159, 27, 105, 68, 246, + 231, 95, 73, 116, 5, 159, 27, 249, 209, 30, 139, 240, 178, 65, 134, 159, 74, 162, 120, 83, 100, 37, 140, 202, 212, + 25, 254, 255, 27, 100, 222, 81, 36, 194, 141, 249, 101, 159, 75, 133, 215, 79, 57, 88, 154, 165, 216, 215, 244, + 230, 67, 72, 253, 184, 76, 239, 243, 10, 72, 135, 107, 142, 59, 24, 110, 148, 47, 255, 216, 102, 159, 27, 116, + 241, 175, 239, 251, 116, 46, 165, 159, 27, 93, 111, 118, 164, 3, 40, 19, 138, 27, 174, 151, 185, 98, 13, 239, 246, + 31, 255, 255, 255, 255, 191, 74, 115, 242, 107, 75, 84, 79, 125, 100, 84, 63, 71, 42, 59, 44, 187, 195, 100, 100, + 76, 179, 204, 202, 133, 126, 101, 223, 12, 169, 184, 69, 46, 27, 165, 216, 248, 16, 57, 170, 203, 123, 66, 242, + 157, 70, 218, 221, 210, 202, 19, 67, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 982, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9167503743743424778" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12920375905089283226" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "380706b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8540369574917722395" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17940783438290888962" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dd7bdc" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "65" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc0456b671743354" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76eb4345105ff9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2270660643610704991" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c5814" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3972765625866791587" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2b2e240e" + } + ] + } + ] + }, + "cborHex": "d8669f1b7f3984155ae3f90a9f9f1bb34e656e3b5ce49abf44380706b31b76857ce12b86511bff1bf8fa777b978a2902ff9f9f43dd7bdcffbf416548dc0456b6717433544776eb4345105ff91b1f8301d32be03c5f438c58141b37221949c1ac2aa3ff442b2e240effffff", + "cborBytes": [ + 216, 102, 159, 27, 127, 57, 132, 21, 90, 227, 249, 10, 159, 159, 27, 179, 78, 101, 110, 59, 92, 228, 154, 191, 68, + 56, 7, 6, 179, 27, 118, 133, 124, 225, 43, 134, 81, 27, 255, 27, 248, 250, 119, 123, 151, 138, 41, 2, 255, 159, + 159, 67, 221, 123, 220, 255, 191, 65, 101, 72, 220, 4, 86, 182, 113, 116, 51, 84, 71, 118, 235, 67, 69, 16, 95, + 249, 27, 31, 131, 1, 211, 43, 224, 60, 95, 67, 140, 88, 20, 27, 55, 34, 25, 73, 193, 172, 42, 163, 255, 68, 43, + 46, 36, 14, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 983, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "cborHex": "1bfffffffffffffff1", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 241], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 984, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5173420652774860662" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f517ae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17928321130544098259" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5da59b69c55e0c55ab25bd43" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c34f29618af4b462" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c2e90da7f6fbf7c136e88f0" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15636752620770565672" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9700383762762122794" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b47cbaeac7a50a7769f43f517ae1bf8ce31147535ebd34c5da59b69c55e0c55ab25bd43bf48c34f29618af4b4624c7c2e90da7f6fbf7c136e88f0ffbf1bd900e7a959b01e281b869eafa32c67462affffff", + "cborBytes": [ + 216, 102, 159, 27, 71, 203, 174, 172, 122, 80, 167, 118, 159, 67, 245, 23, 174, 27, 248, 206, 49, 20, 117, 53, + 235, 211, 76, 93, 165, 155, 105, 197, 94, 12, 85, 171, 37, 189, 67, 191, 72, 195, 79, 41, 97, 138, 244, 180, 98, + 76, 124, 46, 144, 218, 127, 111, 191, 124, 19, 110, 136, 240, 255, 191, 27, 217, 0, 231, 169, 89, 176, 30, 40, 27, + 134, 158, 175, 163, 44, 103, 70, 42, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 985, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9501698193753272536" + } + }, + "cborHex": "1b83dcd02a41a270d8", + "cborBytes": [27, 131, 220, 208, 42, 65, 162, 112, 216], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 986, + "sample": { + "_tag": "ByteArray", + "bytearray": "f655eb5b17" + }, + "cborHex": "45f655eb5b17", + "cborBytes": [69, 246, 85, 235, 91, 23], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 987, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4dd6c91cfbaf" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1179518212658100257" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10454475600132859607" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "353388551442454343" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e6" + }, + { + "_tag": "ByteArray", + "bytearray": "19b57931dee6b22428fa" + } + ] + } + } + ] + }, + "cborHex": "bf464dd6c91cfbafd9050d9f1b105e7d90a796f8211b9115c22b0ae866d71b04e77d03e46ad74741e64a19b57931dee6b22428faffff", + "cborBytes": [ + 191, 70, 77, 214, 201, 28, 251, 175, 217, 5, 13, 159, 27, 16, 94, 125, 144, 167, 150, 248, 33, 27, 145, 21, 194, + 43, 10, 232, 102, 215, 27, 4, 231, 125, 3, 228, 106, 215, 71, 65, 230, 74, 25, 181, 121, 49, 222, 230, 178, 36, + 40, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 988, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2940055476567160008" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "970fdd691221fc4180eb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8292171360431189223" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16223675632487478287" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8836873103415873941" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5513839649667797323" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9640624301477419153" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b303e8cc2143c29347740f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17768163842763748617" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ade" + } + } + ] + }, + "cborHex": "bf1b28cd2ce0fcba34c84a970fdd691221fc4180eb1b7313b5eb232b2ce71be1261307f193b40f1b7aa2e1448e4e91951b4c8517f2a2e9d14b1b85ca60b9568f58914bb303e8cc2143c29347740f1bf69532e00edf7509425adeff", + "cborBytes": [ + 191, 27, 40, 205, 44, 224, 252, 186, 52, 200, 74, 151, 15, 221, 105, 18, 33, 252, 65, 128, 235, 27, 115, 19, 181, + 235, 35, 43, 44, 231, 27, 225, 38, 19, 7, 241, 147, 180, 15, 27, 122, 162, 225, 68, 142, 78, 145, 149, 27, 76, + 133, 23, 242, 162, 233, 209, 75, 27, 133, 202, 96, 185, 86, 143, 88, 145, 75, 179, 3, 232, 204, 33, 67, 194, 147, + 71, 116, 15, 27, 246, 149, 50, 224, 14, 223, 117, 9, 66, 90, 222, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 989, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2497439657206914098" + }, + "fields": [] + }, + "cborHex": "d8669f1b22a8b022dfca9c3280ff", + "cborBytes": [216, 102, 159, 27, 34, 168, 176, 34, 223, 202, 156, 50, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 990, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1001043a77e1fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "046a34fa7ae9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "686817df8160148e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3da42d07f920fb9753e4ec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c5399d491f81756" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a12a1b57a4d16227b79b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6bd70da8ed4de5c618f8401" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9309dc4a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1625830447003909761" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1014546473325307309" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8835638627348073304" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2334961050068893007" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13743932709456149498" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0621dade1c5f6213fb19" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17511101612353785542" + } + } + } + ] + }, + "cborHex": "bf471001043a77e1fe46046a34fa7ae948686817df8160148e4b3da42d07f920fb9753e4ec487c5399d491f81756bf4aa12a1b57a4d16227b79b4cc6bd70da8ed4de5c618f8401ff449309dc4abf1b16901c2d72aebe811b0e1464a466ae25ad1b7a9e7e84b2cd4b581b206772b431babd4f1bbebc41fb14017bfa4a0621dade1c5f6213fb19ff41a61bf303ee237e1e0ec6ff", + "cborBytes": [ + 191, 71, 16, 1, 4, 58, 119, 225, 254, 70, 4, 106, 52, 250, 122, 233, 72, 104, 104, 23, 223, 129, 96, 20, 142, 75, + 61, 164, 45, 7, 249, 32, 251, 151, 83, 228, 236, 72, 124, 83, 153, 212, 145, 248, 23, 86, 191, 74, 161, 42, 27, + 87, 164, 209, 98, 39, 183, 155, 76, 198, 189, 112, 218, 142, 212, 222, 92, 97, 143, 132, 1, 255, 68, 147, 9, 220, + 74, 191, 27, 22, 144, 28, 45, 114, 174, 190, 129, 27, 14, 20, 100, 164, 102, 174, 37, 173, 27, 122, 158, 126, 132, + 178, 205, 75, 88, 27, 32, 103, 114, 180, 49, 186, 189, 79, 27, 190, 188, 65, 251, 20, 1, 123, 250, 74, 6, 33, 218, + 222, 28, 95, 98, 19, 251, 25, 255, 65, 166, 27, 243, 3, 238, 35, 126, 30, 14, 198, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 991, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16819393185864714344" + } + }, + "cborHex": "1be96a7cfd55178868", + "cborBytes": [27, 233, 106, 124, 253, 85, 23, 136, 104], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 992, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12350199417855324386" + } + }, + "cborHex": "1bab64b8efb680b0e2", + "cborBytes": [27, 171, 100, 184, 239, 182, 128, 176, 226], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 993, + "sample": { + "_tag": "ByteArray", + "bytearray": "abf9dd7b04" + }, + "cborHex": "45abf9dd7b04", + "cborBytes": [69, 171, 249, 221, 123, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 994, + "sample": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "cborHex": "4104", + "cborBytes": [65, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 995, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2754182530329258989" + } + }, + "cborHex": "1b2638d26b46dcabed", + "cborBytes": [27, 38, 56, 210, 107, 70, 220, 171, 237], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 996, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "465d63b70854282c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6c09" + }, + { + "_tag": "ByteArray", + "bytearray": "1f98c34622b4975c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3898379006950121997" + } + }, + { + "_tag": "ByteArray", + "bytearray": "324c17966545954c8d54d234" + }, + { + "_tag": "ByteArray", + "bytearray": "1da3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8e190e87ac46348cd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14293721945898342643" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1656235978624478270" + } + }, + { + "_tag": "ByteArray", + "bytearray": "97683ed2fa0293152b9a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10810518121425229990" + } + } + ] + } + } + ] + }, + "cborHex": "bf48465d63b70854282c9f426c09481f98c34622b4975c1b3619d30d651a220d4c324c17966545954c8d54d234421da3ff49b8e190e87ac46348cdd8669f1bc65d8060df79d8f39f1b16fc21d8f2222c3e4a97683ed2fa0293152b9a1b9606acf4717958a6ffffff", + "cborBytes": [ + 191, 72, 70, 93, 99, 183, 8, 84, 40, 44, 159, 66, 108, 9, 72, 31, 152, 195, 70, 34, 180, 151, 92, 27, 54, 25, 211, + 13, 101, 26, 34, 13, 76, 50, 76, 23, 150, 101, 69, 149, 76, 141, 84, 210, 52, 66, 29, 163, 255, 73, 184, 225, 144, + 232, 122, 196, 99, 72, 205, 216, 102, 159, 27, 198, 93, 128, 96, 223, 121, 216, 243, 159, 27, 22, 252, 33, 216, + 242, 34, 44, 62, 74, 151, 104, 62, 210, 250, 2, 147, 21, 43, 154, 27, 150, 6, 172, 244, 113, 121, 88, 166, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 997, + "sample": { + "_tag": "ByteArray", + "bytearray": "238e91f4c66377235fad" + }, + "cborHex": "4a238e91f4c66377235fad", + "cborBytes": [74, 35, 142, 145, 244, 198, 99, 119, 35, 95, 173], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 998, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12742587595640880546" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f1d2bad93881660b3b4f36" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "692983124464756858" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8072537602501977073" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b4ad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11579986229010530583" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9f1bb0d6c3e7b5793da24bf1d2bad93881660b3b4f36d8669f1b099df87ae90fe87a9fd8669f1b70076a2de91d23f19f42b4ad1ba0b4601f34168117ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 27, 176, 214, 195, 231, 181, 121, 61, 162, 75, + 241, 210, 186, 217, 56, 129, 102, 11, 59, 79, 54, 216, 102, 159, 27, 9, 157, 248, 122, 233, 15, 232, 122, 159, + 216, 102, 159, 27, 112, 7, 106, 45, 233, 29, 35, 241, 159, 66, 180, 173, 27, 160, 180, 96, 31, 52, 22, 129, 23, + 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 999, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10723461485137770952" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15133152750845198956" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02" + }, + { + "_tag": "ByteArray", + "bytearray": "35" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5576866638320874494" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7806180988289375913" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6c9e7536cf1e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4228" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17455572342381875010" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2152433848892568567" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9123787279466824277" + } + }, + { + "_tag": "ByteArray", + "bytearray": "47a9d6e91167b4e339c5" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1138083769456810991" + } + } + ] + }, + "cborHex": "d8669f1b94d16367c83839c89fd8669f1bd203c23f7dda826c9f410241359f1b4d6502a8f8d7b3fe1b6c55203ffb655ea9466c9e7536cf1effbf4242281bf23ea68fd2ce0f42ffd8669f1b1ddefb2e75c4b3f79f1b7e9e3430d6d902554a47a9d6e91167b4e339c5ffffffff1b0fcb4928931c5befffff", + "cborBytes": [ + 216, 102, 159, 27, 148, 209, 99, 103, 200, 56, 57, 200, 159, 216, 102, 159, 27, 210, 3, 194, 63, 125, 218, 130, + 108, 159, 65, 2, 65, 53, 159, 27, 77, 101, 2, 168, 248, 215, 179, 254, 27, 108, 85, 32, 63, 251, 101, 94, 169, 70, + 108, 158, 117, 54, 207, 30, 255, 191, 66, 66, 40, 27, 242, 62, 166, 143, 210, 206, 15, 66, 255, 216, 102, 159, 27, + 29, 222, 251, 46, 117, 196, 179, 247, 159, 27, 126, 158, 52, 48, 214, 217, 2, 85, 74, 71, 169, 214, 233, 17, 103, + 180, 227, 57, 197, 255, 255, 255, 255, 27, 15, 203, 73, 40, 147, 28, 91, 239, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1000, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11751063485822611727" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2648242179906622620" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12031379756616482668" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8009025399673943064" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3d0cdb178ac2ded4c05df34d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11580046468457829961" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6decc25af54622eaa6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3067554954341197383" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "302805831239377858" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12379152916156318795" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a1beac4f3864" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13588565542950835474" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c4f18936ee307656ef8" + }, + { + "_tag": "ByteArray", + "bytearray": "ab8c1a3780e2b5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10752863401066102133" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12673788017653249167" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9ef" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16659461492873259947" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11662812030914019759" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9713668637913156204" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7138046183799225940" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14264052938040118644" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3469963745065934984" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e766d4c800a424e94bf6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11987558501842599061" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf9ce451e8" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2547093562913512895" + } + } + ] + } + ] + }, + "cborHex": "d8799f9fd8669f1ba31429fb0585310f9f1b24c0723b4c8a549c1ba6f80c24c6f37f6c1b6f25c62ad8a57418ffff809f4c3d0cdb178ac2ded4c05df34d1ba0b496e8caf21649496decc25af54622eaa6ff1b2a9224fa767f2647ffd8669f1b0433c84c96f0a3c29fd8669f1babcb95fd5bbd044b9f46a1beac4f38641bbc94485db2b295124a2c4f18936ee307656ef847ab8c1a3780e2b51b9539d84acad7fd75ffffbf1bafe2570daed2f48f42f9efff9f1be7324bf650026bab1ba1daa1bff8c841afffa09f1b86cde22934aa8a6c1b630f6f2f67af7e54ffffffd8669f1bc5f41892ad3f8d749fbf1b3027c9a43823a0884ae766d4c800a424e94bf61ba65c5cf1d28abc9545cf9ce451e8ff1b23591819b324ddbfffffff", + "cborBytes": [ + 216, 121, 159, 159, 216, 102, 159, 27, 163, 20, 41, 251, 5, 133, 49, 15, 159, 27, 36, 192, 114, 59, 76, 138, 84, + 156, 27, 166, 248, 12, 36, 198, 243, 127, 108, 27, 111, 37, 198, 42, 216, 165, 116, 24, 255, 255, 128, 159, 76, + 61, 12, 219, 23, 138, 194, 222, 212, 192, 93, 243, 77, 27, 160, 180, 150, 232, 202, 242, 22, 73, 73, 109, 236, + 194, 90, 245, 70, 34, 234, 166, 255, 27, 42, 146, 36, 250, 118, 127, 38, 71, 255, 216, 102, 159, 27, 4, 51, 200, + 76, 150, 240, 163, 194, 159, 216, 102, 159, 27, 171, 203, 149, 253, 91, 189, 4, 75, 159, 70, 161, 190, 172, 79, + 56, 100, 27, 188, 148, 72, 93, 178, 178, 149, 18, 74, 44, 79, 24, 147, 110, 227, 7, 101, 110, 248, 71, 171, 140, + 26, 55, 128, 226, 181, 27, 149, 57, 216, 74, 202, 215, 253, 117, 255, 255, 191, 27, 175, 226, 87, 13, 174, 210, + 244, 143, 66, 249, 239, 255, 159, 27, 231, 50, 75, 246, 80, 2, 107, 171, 27, 161, 218, 161, 191, 248, 200, 65, + 175, 255, 160, 159, 27, 134, 205, 226, 41, 52, 170, 138, 108, 27, 99, 15, 111, 47, 103, 175, 126, 84, 255, 255, + 255, 216, 102, 159, 27, 197, 244, 24, 146, 173, 63, 141, 116, 159, 191, 27, 48, 39, 201, 164, 56, 35, 160, 136, + 74, 231, 102, 212, 200, 0, 164, 36, 233, 75, 246, 27, 166, 92, 92, 241, 210, 138, 188, 149, 69, 207, 156, 228, 81, + 232, 255, 27, 35, 89, 24, 25, 179, 36, 221, 191, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1001, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "999433173290912716" + } + }, + "cborHex": "1b0ddeb32d06bf0bcc", + "cborBytes": [27, 13, 222, 179, 45, 6, 191, 11, 204], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1002, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3581324340671102017" + } + }, + "cborHex": "1b31b36b835f293c41", + "cborBytes": [27, 49, 179, 107, 131, 95, 41, 60, 65], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1003, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4511570232201243098" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7868578192045364597" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8800678755742216720" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11092655924997931716" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11580108559563656997" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1338371751684541339" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5e34" + } + ] + } + } + ] + }, + "cborHex": "bf1b3e9c51390d94e9da416e1b6d32ce2d183fd5759f1b7a224ab34a577210ff1b99f107cad92242c4801ba0b4cf6181408f259f1b1292da0464930b9b425e34ffff", + "cborBytes": [ + 191, 27, 62, 156, 81, 57, 13, 148, 233, 218, 65, 110, 27, 109, 50, 206, 45, 24, 63, 213, 117, 159, 27, 122, 34, + 74, 179, 74, 87, 114, 16, 255, 27, 153, 241, 7, 202, 217, 34, 66, 196, 128, 27, 160, 180, 207, 97, 129, 64, 143, + 37, 159, 27, 18, 146, 218, 4, 100, 147, 11, 155, 66, 94, 52, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1004, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4898247449654811421" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16572409204977965666" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6a182a03023d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17912506240930383340" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc01476a7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12580648351511938713" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5890937084268807679" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b43fa121a7aa35b1d9f9fd8669f1be5fd065e17201a629f466a182a03023d1bf8960185879f85ec45cc01476a7b1bae97710543f906991b51c0d0110e0485ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 67, 250, 18, 26, 122, 163, 91, 29, 159, 159, 216, 102, 159, 27, 229, 253, 6, 94, 23, 32, 26, + 98, 159, 70, 106, 24, 42, 3, 2, 61, 27, 248, 150, 1, 133, 135, 159, 133, 236, 69, 204, 1, 71, 106, 123, 27, 174, + 151, 113, 5, 67, 249, 6, 153, 27, 81, 192, 208, 17, 14, 4, 133, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1005, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12247836212011893078" + } + }, + "cborHex": "1ba9f90e249c228156", + "cborBytes": [27, 169, 249, 14, 36, 156, 34, 129, 86], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1006, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f54eb16" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2788557949195889056" + } + } + ] + } + } + ] + }, + "cborHex": "bf446f54eb16d8669f1bfffffffffffffffa9f1b26b2f2ae2d69a9a0ffffff", + "cborBytes": [ + 191, 68, 111, 84, 235, 22, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 27, 38, 178, 242, 174, + 45, 105, 169, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1007, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15749570310240582896" + }, + "fields": [] + }, + "cborHex": "d8669f1bda91b6c09aedbcf080ff", + "cborBytes": [216, 102, 159, 27, 218, 145, 182, 192, 154, 237, 188, 240, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1008, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0a195b9ce5d422c339" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "143825" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73fdf2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb99520f8164" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17557721977012048478" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb7152e8827973968d34" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7a481" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "947cc4" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7792131007623329432" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16953902353889255591" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "281628676621638839" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d13f0e14f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3130321430812900103" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17892909692659516812" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10348459312367347618" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9160999316032171353" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18359219383948004136" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8501463032389824267" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a5199842dbc862b79e6a570" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2185144530424619027" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "561b840ec91e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6933829758044761844" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3b49e08" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4077868892250416836" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2150b01eb138310a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7181479969673249873" + } + } + ] + }, + "cborHex": "9f9f490a195b9ce5d422c339bf431438254373fdf246bb99520f81641bf3a98f1d00df525e42ca384acb7152e8827973968d3443f7a48143947cc4ff801b6c2335ddf0b1f698ffd8669f1beb485c5d803a60a79fbf1b03e88bca0c989cb7457d13f0e14f1b2b7122c194653b071bf8506290951d458c1b8f9d1cea863d27a21b7f22685743b1ad591bfec90cc225afcb281b75fb4395d4b5ef0bffbf4c2a5199842dbc862b79e6a5701b1e53315f7ed8e01346561b840ec91e1b6039e96d8d4a6ef444e3b49e081b38978026eb33a6c4ffffff482150b01eb138310a1b63a9bdfbb9f50451ff", + "cborBytes": [ + 159, 159, 73, 10, 25, 91, 156, 229, 212, 34, 195, 57, 191, 67, 20, 56, 37, 67, 115, 253, 242, 70, 187, 153, 82, + 15, 129, 100, 27, 243, 169, 143, 29, 0, 223, 82, 94, 66, 202, 56, 74, 203, 113, 82, 232, 130, 121, 115, 150, 141, + 52, 67, 247, 164, 129, 67, 148, 124, 196, 255, 128, 27, 108, 35, 53, 221, 240, 177, 246, 152, 255, 216, 102, 159, + 27, 235, 72, 92, 93, 128, 58, 96, 167, 159, 191, 27, 3, 232, 139, 202, 12, 152, 156, 183, 69, 125, 19, 240, 225, + 79, 27, 43, 113, 34, 193, 148, 101, 59, 7, 27, 248, 80, 98, 144, 149, 29, 69, 140, 27, 143, 157, 28, 234, 134, 61, + 39, 162, 27, 127, 34, 104, 87, 67, 177, 173, 89, 27, 254, 201, 12, 194, 37, 175, 203, 40, 27, 117, 251, 67, 149, + 212, 181, 239, 11, 255, 191, 76, 42, 81, 153, 132, 45, 188, 134, 43, 121, 230, 165, 112, 27, 30, 83, 49, 95, 126, + 216, 224, 19, 70, 86, 27, 132, 14, 201, 30, 27, 96, 57, 233, 109, 141, 74, 110, 244, 68, 227, 180, 158, 8, 27, 56, + 151, 128, 38, 235, 51, 166, 196, 255, 255, 255, 72, 33, 80, 176, 30, 177, 56, 49, 10, 27, 99, 169, 189, 251, 185, + 245, 4, 81, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1009, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7017987916204435253" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "296fb9ada80b21a0038f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16990392443585207135" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10876955147190919985" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6164e6d3af5967359f4a296fb9ada80b21a0038f1bebc9ffe892609b5f1b96f2b513ea2be331ffff", + "cborBytes": [ + 191, 27, 97, 100, 230, 211, 175, 89, 103, 53, 159, 74, 41, 111, 185, 173, 168, 11, 33, 160, 3, 143, 27, 235, 201, + 255, 232, 146, 96, 155, 95, 27, 150, 242, 181, 19, 234, 43, 227, 49, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1010, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4269514194754772422" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3253943753846229122" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3834402714036426841" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3435753040340889220" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8a2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17708882752899913512" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63432a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + } + ] + }, + "cborHex": "d9050c9f41001b3b405c8a0dd89dc6bf1b2d28549a9f1b08821b353688f3efef58591b2fae3f2fd17cae8442f8a21bf5c29709bfa417284363432a1bffffffffffffffee121bffffffffffffffef07ffff", + "cborBytes": [ + 217, 5, 12, 159, 65, 0, 27, 59, 64, 92, 138, 13, 216, 157, 198, 191, 27, 45, 40, 84, 154, 159, 27, 8, 130, 27, 53, + 54, 136, 243, 239, 239, 88, 89, 27, 47, 174, 63, 47, 209, 124, 174, 132, 66, 248, 162, 27, 245, 194, 151, 9, 191, + 164, 23, 40, 67, 99, 67, 42, 27, 255, 255, 255, 255, 255, 255, 255, 238, 18, 27, 255, 255, 255, 255, 255, 255, + 255, 239, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1011, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13249202615988942115" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15211469889911795925" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15049702340371019446" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "260f59d9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1439b5450c3f4eca21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17406992636791805693" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3af62d12ec3b5154bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e88c55f2769c448bce99bee0" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf1bb7de9f94fb3275231bd319ff4563be30d51bd0db488ab52df6b644260f59d9491439b5450c3f4eca211bf1920f93b3d0d6fd493af62d12ec3b5154bd4ce88c55f2769c448bce99bee0ff8080ff", + "cborBytes": [ + 159, 191, 27, 183, 222, 159, 148, 251, 50, 117, 35, 27, 211, 25, 255, 69, 99, 190, 48, 213, 27, 208, 219, 72, 138, + 181, 45, 246, 182, 68, 38, 15, 89, 217, 73, 20, 57, 181, 69, 12, 63, 78, 202, 33, 27, 241, 146, 15, 147, 179, 208, + 214, 253, 73, 58, 246, 45, 18, 236, 59, 81, 84, 189, 76, 232, 140, 85, 242, 118, 156, 68, 139, 206, 153, 190, 224, + 255, 128, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1012, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2328811523004004403" + } + }, + "cborHex": "1b205199bdd97d7833", + "cborBytes": [27, 32, 81, 153, 189, 217, 125, 120, 51], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1013, + "sample": { + "_tag": "ByteArray", + "bytearray": "4b" + }, + "cborHex": "414b", + "cborBytes": [65, 75], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1014, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9564584538569274766" + } + }, + "cborHex": "1b84bc3af6659d758e", + "cborBytes": [27, 132, 188, 58, 246, 101, 157, 117, 142], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1015, + "sample": { + "_tag": "ByteArray", + "bytearray": "b7649e3ff2" + }, + "cborHex": "45b7649e3ff2", + "cborBytes": [69, 183, 100, 158, 63, 242], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1016, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7221456770066590887" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5d" + }, + { + "_tag": "ByteArray", + "bytearray": "bf31f8d3" + } + ] + } + } + ] + }, + "cborHex": "bf13801b6437c4abe4a8aca79f415d44bf31f8d3ffff", + "cborBytes": [ + 191, 19, 128, 27, 100, 55, 196, 171, 228, 168, 172, 167, 159, 65, 93, 68, 191, 49, 248, 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1017, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14691642258677901287" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10375971885095968845" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10021241433972280508" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9117990203052164825" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15067921570551582275" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a4b874d4d54917b1f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4934932353876577168" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bcbe332cb6b9d27e79f9f1b8ffedb748a95e04dff1b8b1299fd48580cbcd8669f1b7e899bc7ce6a86d99f9f1bd11c02d5cc2c4e43499a4b874d4d54917b1fff1b447c66d457654b90ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 203, 227, 50, 203, 107, 157, 39, 231, 159, 159, 27, 143, 254, 219, 116, 138, 149, 224, 77, 255, + 27, 139, 18, 153, 253, 72, 88, 12, 188, 216, 102, 159, 27, 126, 137, 155, 199, 206, 106, 134, 217, 159, 159, 27, + 209, 28, 2, 213, 204, 44, 78, 67, 73, 154, 75, 135, 77, 77, 84, 145, 123, 31, 255, 27, 68, 124, 102, 212, 87, 101, + 75, 144, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1018, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0afcfd9a2baef2f4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b488b85ff519b70eb0ea5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37cf44f252a578e2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1109218356170993488" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11105233131351847968" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1318124539349984030" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6013709788172478359" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1441986227372785743" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4836130983264201667" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5141048923718174414" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af094020cabc9e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7430821212981905237" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "125e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7943636448855061674" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c479c6fa969b2b24ee56" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd656560c2a870" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1387882341360909440" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9151cd68706f65ab74d0c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12077337413630926486" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7174796635591030023" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d482b1ee89fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16583064330111579485" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e37282dc8" + } + ] + } + } + ] + }, + "cborHex": "bf480afcfd9a2baef2f44b7b488b85ff519b70eb0ea54837cf44f252a578e2bf1b0f64bc37d1ea2f501b9a1db6b1e62034201b124aeb48e9ae631e1b5374fd30ba4f67971b1402f6d5758f804f1b431d6381a0b92bc31b4758acc1f72046ce47af094020cabc9e1b671f9485e539475542125e1b6e3d774356d9f4aa4ac479c6fa969b2b24ee56ff47dd656560c2a8701b1342bfa2dadabc804be9151cd68706f65ab74d0c9f1ba79b5263a4019e961b6391ff86c012350746d482b1ee89fd1be622e125bbc0755d459e37282dc8ffff", + "cborBytes": [ + 191, 72, 10, 252, 253, 154, 43, 174, 242, 244, 75, 123, 72, 139, 133, 255, 81, 155, 112, 235, 14, 165, 72, 55, + 207, 68, 242, 82, 165, 120, 226, 191, 27, 15, 100, 188, 55, 209, 234, 47, 80, 27, 154, 29, 182, 177, 230, 32, 52, + 32, 27, 18, 74, 235, 72, 233, 174, 99, 30, 27, 83, 116, 253, 48, 186, 79, 103, 151, 27, 20, 2, 246, 213, 117, 143, + 128, 79, 27, 67, 29, 99, 129, 160, 185, 43, 195, 27, 71, 88, 172, 193, 247, 32, 70, 206, 71, 175, 9, 64, 32, 202, + 188, 158, 27, 103, 31, 148, 133, 229, 57, 71, 85, 66, 18, 94, 27, 110, 61, 119, 67, 86, 217, 244, 170, 74, 196, + 121, 198, 250, 150, 155, 43, 36, 238, 86, 255, 71, 221, 101, 101, 96, 194, 168, 112, 27, 19, 66, 191, 162, 218, + 218, 188, 128, 75, 233, 21, 28, 214, 135, 6, 246, 90, 183, 77, 12, 159, 27, 167, 155, 82, 99, 164, 1, 158, 150, + 27, 99, 145, 255, 134, 192, 18, 53, 7, 70, 212, 130, 177, 238, 137, 253, 27, 230, 34, 225, 37, 187, 192, 117, 93, + 69, 158, 55, 40, 45, 200, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1019, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2370203079146271202" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8914532709471511059" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b8165c1a491a220c" + }, + { + "_tag": "ByteArray", + "bytearray": "271db62fb6d7d9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15477909601589546868" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1829982277473800775" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8606031501554044048" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e229301f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9256258256067178627" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8927be1b977398" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bb1431608" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6841b00a32342b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0cefe32ec2ba340a45fd28f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16025665960650489649" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9482e86b5e1dd9f886d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b20e4a724820cf1e2d8669f1b7bb6c8449ea662139f48b8165c1a491a220c47271db62fb6d7d91bd6cc94c6f45a4f741b1965672f8a161247ffff1b776ec40dcff34c9044e229301f1b8074d5d796293083478927be1b9773981bfffffffffffffff3bf452bb1431608476841b00a32342b4ca0cefe32ec2ba340a45fd28f1bde669a4899a43f314aa9482e86b5e1dd9f886d1bfffffffffffffffaffff", + "cborBytes": [ + 191, 27, 32, 228, 167, 36, 130, 12, 241, 226, 216, 102, 159, 27, 123, 182, 200, 68, 158, 166, 98, 19, 159, 72, + 184, 22, 92, 26, 73, 26, 34, 12, 71, 39, 29, 182, 47, 182, 215, 217, 27, 214, 204, 148, 198, 244, 90, 79, 116, 27, + 25, 101, 103, 47, 138, 22, 18, 71, 255, 255, 27, 119, 110, 196, 13, 207, 243, 76, 144, 68, 226, 41, 48, 31, 27, + 128, 116, 213, 215, 150, 41, 48, 131, 71, 137, 39, 190, 27, 151, 115, 152, 27, 255, 255, 255, 255, 255, 255, 255, + 243, 191, 69, 43, 177, 67, 22, 8, 71, 104, 65, 176, 10, 50, 52, 43, 76, 160, 206, 254, 50, 236, 43, 163, 64, 164, + 95, 210, 143, 27, 222, 102, 154, 72, 153, 164, 63, 49, 74, 169, 72, 46, 134, 181, 225, 221, 159, 136, 109, 27, + 255, 255, 255, 255, 255, 255, 255, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1020, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16196323879259102050" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13834012524235829814" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2799282761544899710" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5881140113302197986" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4107798050220126131" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b9108e8d40b65a" + }, + { + "_tag": "ByteArray", + "bytearray": "a7b8ac3b9d75efcb9b" + }, + { + "_tag": "ByteArray", + "bytearray": "06d2eb63361a" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7719359459759519963" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10550079236423025607" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d3d80d651cb47a0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10684891744684996867" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2e2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12318355813080329831" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3d403b74f" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a8fe1ae414" + } + ] + }, + "cborHex": "d8669f1be0c4e6c1a26a5b629f1bbffc49185561b2361b26d90cd723c21c7ed8669f1b519e01c5ffad96e29fd8669f1b3901d4900869afb39f47b9108e8d40b65a49a7b8ac3b9d75efcb9b4606d2eb63361affffffffbf1b6b20ac879c8478db41311b9269692b373803c7485d3d80d651cb47a01b94485c6e4973f90342e2e21baaf39758b7856e6745e3d403b74fff45a8fe1ae414ffff", + "cborBytes": [ + 216, 102, 159, 27, 224, 196, 230, 193, 162, 106, 91, 98, 159, 27, 191, 252, 73, 24, 85, 97, 178, 54, 27, 38, 217, + 12, 215, 35, 194, 28, 126, 216, 102, 159, 27, 81, 158, 1, 197, 255, 173, 150, 226, 159, 216, 102, 159, 27, 57, 1, + 212, 144, 8, 105, 175, 179, 159, 71, 185, 16, 142, 141, 64, 182, 90, 73, 167, 184, 172, 59, 157, 117, 239, 203, + 155, 70, 6, 210, 235, 99, 54, 26, 255, 255, 255, 255, 191, 27, 107, 32, 172, 135, 156, 132, 120, 219, 65, 49, 27, + 146, 105, 105, 43, 55, 56, 3, 199, 72, 93, 61, 128, 214, 81, 203, 71, 160, 27, 148, 72, 92, 110, 73, 115, 249, 3, + 66, 226, 226, 27, 170, 243, 151, 88, 183, 133, 110, 103, 69, 227, 212, 3, 183, 79, 255, 69, 168, 254, 26, 228, 20, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1021, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d8ef174fb645e6c9e6a7c3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1235334774092073695" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8578400728122610078" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7512954e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8aee313fae06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7501303256061702594" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ac968127e0c0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6764964773122101413" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f26c3cb63461e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b08efa0" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "522012" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1562210717892033113" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "762d1644d446d798" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6234820840704729201" + } + } + } + ] + } + ] + }, + "cborHex": "9f4bd8ef174fb645e6c9e6a7c3d8669f1b1124ca6e94720adf9fbf1b770c9a030cb3519e447512954e468aee313fae061b6819fb915a09f1c2ff9f46ac968127e0c01b5de1fb9e6bf950a5ffbf474f26c3cb63461e449b08efa0ff4352201280ffff1b15ae165ef8433a59bf48762d1644d446d7981b5686888568686071ffff", + "cborBytes": [ + 159, 75, 216, 239, 23, 79, 182, 69, 230, 201, 230, 167, 195, 216, 102, 159, 27, 17, 36, 202, 110, 148, 114, 10, + 223, 159, 191, 27, 119, 12, 154, 3, 12, 179, 81, 158, 68, 117, 18, 149, 78, 70, 138, 238, 49, 63, 174, 6, 27, 104, + 25, 251, 145, 90, 9, 241, 194, 255, 159, 70, 172, 150, 129, 39, 224, 192, 27, 93, 225, 251, 158, 107, 249, 80, + 165, 255, 191, 71, 79, 38, 195, 203, 99, 70, 30, 68, 155, 8, 239, 160, 255, 67, 82, 32, 18, 128, 255, 255, 27, 21, + 174, 22, 94, 248, 67, 58, 89, 191, 72, 118, 45, 22, 68, 212, 70, 215, 152, 27, 86, 134, 136, 133, 104, 104, 96, + 113, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1022, + "sample": { + "_tag": "ByteArray", + "bytearray": "8e0204" + }, + "cborHex": "438e0204", + "cborBytes": [67, 142, 2, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1023, + "sample": { + "_tag": "ByteArray", + "bytearray": "ed77475871258a40b2cb" + }, + "cborHex": "4aed77475871258a40b2cb", + "cborBytes": [74, 237, 119, 71, 88, 113, 37, 138, 64, 178, 203], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1024, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17012184830924749358" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6ae00f6a9199b0006" + } + ] + }, + "cborHex": "9f1bec176bf8248efa2e49d6ae00f6a9199b0006ff", + "cborBytes": [159, 27, 236, 23, 107, 248, 36, 142, 250, 46, 73, 214, 174, 0, 246, 169, 25, 155, 0, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1025, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4906400080344857667" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a492477a9f34db0b" + } + ] + }, + "cborHex": "d87a9f1b441708e0bae73c4348a492477a9f34db0bff", + "cborBytes": [216, 122, 159, 27, 68, 23, 8, 224, 186, 231, 60, 67, 72, 164, 146, 71, 122, 159, 52, 219, 11, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1026, + "sample": { + "_tag": "ByteArray", + "bytearray": "00a600fb4b067efb48014f" + }, + "cborHex": "4b00a600fb4b067efb48014f", + "cborBytes": [75, 0, 166, 0, 251, 75, 6, 126, 251, 72, 1, 79], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1027, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3690174389415769631" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + }, + "cborHex": "d8669f1b3336220e485ef61f9f03ffff", + "cborBytes": [216, 102, 159, 27, 51, 54, 34, 14, 72, 94, 246, 31, 159, 3, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1028, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + }, + "cborHex": "9f09ff", + "cborBytes": [159, 9, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1029, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11474134268699225373" + } + }, + "cborHex": "1b9f3c505326f42d1d", + "cborBytes": [27, 159, 60, 80, 83, 38, 244, 45, 29], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1030, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2500250183399060441" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8644390443418045402" + } + }, + { + "_tag": "ByteArray", + "bytearray": "90e92f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17063876185274790780" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3530376888374636228" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13640329047583547992" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5537439353412303239" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6215598526764927284" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffa474b1e98c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14331073843331109917" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bbe5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07acb72ff317ef84dae9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1473b9e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d47c6b17a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13639916947714700019" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5798200224056907390" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17090763887774158719" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0cc590" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11761625033093596080" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16510498711243450460" + } + }, + { + "_tag": "ByteArray", + "bytearray": "409ba898da7f2312" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4941505328292343641" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12561408831025661510" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7482894130969048279" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14288048945704861604" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b22b2ac4b7f1b33d99f1b77f70b4eefb6cbda4390e92f1beccf10fb728d337cff1b30fe6b1342d1aec4d8669f1bbd4c2effcca8e25880ff1b4cd8efc0d968b987bf1b56423dedae43c93446ffa474b1e98c1bc6e233bb31a4941d42bbe54a07acb72ff317ef84dae9441473b9e445d47c6b17a81bbd4ab832525d72f3ff1b507758623380967ed8669f1bed2e973486da4f7f9f430cc590ffff1ba339afa6dee2c3b09f1be5211319fc35e85c48409ba898da7f23121b4493c0ea3490af59ff1bae5316c753bd46469f1b67d89490e843f4d71bc64958d09621ffa4ffff", + "cborBytes": [ + 191, 27, 34, 178, 172, 75, 127, 27, 51, 217, 159, 27, 119, 247, 11, 78, 239, 182, 203, 218, 67, 144, 233, 47, 27, + 236, 207, 16, 251, 114, 141, 51, 124, 255, 27, 48, 254, 107, 19, 66, 209, 174, 196, 216, 102, 159, 27, 189, 76, + 46, 255, 204, 168, 226, 88, 128, 255, 27, 76, 216, 239, 192, 217, 104, 185, 135, 191, 27, 86, 66, 61, 237, 174, + 67, 201, 52, 70, 255, 164, 116, 177, 233, 140, 27, 198, 226, 51, 187, 49, 164, 148, 29, 66, 187, 229, 74, 7, 172, + 183, 47, 243, 23, 239, 132, 218, 233, 68, 20, 115, 185, 228, 69, 212, 124, 107, 23, 168, 27, 189, 74, 184, 50, 82, + 93, 114, 243, 255, 27, 80, 119, 88, 98, 51, 128, 150, 126, 216, 102, 159, 27, 237, 46, 151, 52, 134, 218, 79, 127, + 159, 67, 12, 197, 144, 255, 255, 27, 163, 57, 175, 166, 222, 226, 195, 176, 159, 27, 229, 33, 19, 25, 252, 53, + 232, 92, 72, 64, 155, 168, 152, 218, 127, 35, 18, 27, 68, 147, 192, 234, 52, 144, 175, 89, 255, 27, 174, 83, 22, + 199, 83, 189, 70, 70, 159, 27, 103, 216, 148, 144, 232, 67, 244, 215, 27, 198, 73, 88, 208, 150, 33, 255, 164, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1031, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9247153651497618217" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15896189666841022353" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11367251200219232803" + } + }, + { + "_tag": "ByteArray", + "bytearray": "92" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9536728483493829661" + } + }, + { + "_tag": "ByteArray", + "bytearray": "365bff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16375429221038594683" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15736969371314847165" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4278485710340225793" + } + } + } + ] + }, + "cborHex": "bf1b80547d40a4f8cb29d8669f1bdc9a9c47c64b4f919f1b9dc096bd85b33a2341921b8459440729ffdc1d43365bff1be341361da48e9a7bffff1bda64f243e26c7dbd1b3b603c15cd69fb01ff", + "cborBytes": [ + 191, 27, 128, 84, 125, 64, 164, 248, 203, 41, 216, 102, 159, 27, 220, 154, 156, 71, 198, 75, 79, 145, 159, 27, + 157, 192, 150, 189, 133, 179, 58, 35, 65, 146, 27, 132, 89, 68, 7, 41, 255, 220, 29, 67, 54, 91, 255, 27, 227, 65, + 54, 29, 164, 142, 154, 123, 255, 255, 27, 218, 100, 242, 67, 226, 108, 125, 189, 27, 59, 96, 60, 21, 205, 105, + 251, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1032, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9352248923301166149" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16513762134035560739" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7e02b007" + }, + { + "_tag": "ByteArray", + "bytearray": "43d37979c49da81c35" + }, + { + "_tag": "ByteArray", + "bytearray": "44f91184e50e6a77622d3af0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00e1aefafce705" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9afe17f0fd0399a106cd" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b81c9dcd86c653c459f1be52cab2ad07c79239f447e02b0074943d37979c49da81c354c44f91184e50e6a77622d3af01bffffffffffffffef4700e1aefafce705ff4a9afe17f0fd0399a106cdffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 129, 201, 220, 216, 108, 101, 60, 69, 159, 27, 229, 44, 171, 42, 208, 124, 121, 35, 159, + 68, 126, 2, 176, 7, 73, 67, 211, 121, 121, 196, 157, 168, 28, 53, 76, 68, 249, 17, 132, 229, 14, 106, 119, 98, 45, + 58, 240, 27, 255, 255, 255, 255, 255, 255, 255, 239, 71, 0, 225, 174, 250, 252, 231, 5, 255, 74, 154, 254, 23, + 240, 253, 3, 153, 161, 6, 205, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1033, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7336529875428674943" + }, + "fields": [] + } + ] + }, + "cborHex": "9f80d8669f1b65d0970d14f78d7f80ffff", + "cborBytes": [159, 128, 216, 102, 159, 27, 101, 208, 151, 13, 20, 247, 141, 127, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1034, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17550957723580448636" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1909346690560621185" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1091236569001333635" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2652" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "393f7e77dcb32102e3d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12089927446352606854" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca785651f06c9bd5ef4812" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c5038fc73" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6f7dbd2d5ca15" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "519ad6" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0241c84e8e3f61" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "71ec79a1c71c48c243234d53" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9940339890969831591" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6385476864210810684" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3549167685369194436" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15940344206168679228" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bafdda269e63fbaf2ec5fb86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3662280767375174244" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d9cdf6e450" + }, + { + "_tag": "ByteArray", + "bytearray": "6548ddde87a54a17bf8b60" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fee05f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14050437470247656473" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "267080292597240346" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2398909725434772823" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "368223927421433834" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11387518625994319618" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0bbec7e72e592241" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11415468132657867712" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24cefc5bcfed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be7a30605f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a9e25864001ef8c503809cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7943746079156615222" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78541a2774ccff84c835b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13652866996104877398" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "838a88efa0b262534bcfcf42" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11847710418829148984" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbac01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fe517a9fda0636c26922a3e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3958485466971310737" + } + } + ] + }, + "cborHex": "d8669f1bf391870f85e93f7c9fd8669f1b1a7f5cb2ebeefa819fbf1b0f24d9e0bd3d93834226524a393f7e77dcb32102e3d71ba7c80cf51017b6864bca785651f06c9bd5ef4812455c5038fc7347e6f7dbd2d5ca1543519ad6ff470241c84e8e3f619f4c71ec79a1c71c48c243234d531b89f32e76f3e6e8a71b589dc56054c2b73cffd8669f1b31412d349eb9e7c49f1bdd377a999623e33c4cbafdda269e63fbaf2ec5fb861b32d308f44f246a6445d9cdf6e4504b6548ddde87a54a17bf8b60ffff9f43fee05f1bc2fd2e6fd0f31c191b03b4dc1c6ec4121a1b214aa3af70c4fd57ffffff1b051c31b607c0f7ea1b9e0897db4f892702bf480bbec7e72e5922411b9e6be3c8efdd2bc04624cefc5bcfed45be7a30605f4c4a9e25864001ef8c503809cc1b6e3ddaf8a20838364b78541a2774ccff84c835b51bbd78ba326c7c55564c838a88efa0b262534bcfcf421ba46b85daa401833843dbac014c9fe517a9fda0636c26922a3eff1b36ef5d8f2b5f0a91ffff", + "cborBytes": [ + 216, 102, 159, 27, 243, 145, 135, 15, 133, 233, 63, 124, 159, 216, 102, 159, 27, 26, 127, 92, 178, 235, 238, 250, + 129, 159, 191, 27, 15, 36, 217, 224, 189, 61, 147, 131, 66, 38, 82, 74, 57, 63, 126, 119, 220, 179, 33, 2, 227, + 215, 27, 167, 200, 12, 245, 16, 23, 182, 134, 75, 202, 120, 86, 81, 240, 108, 155, 213, 239, 72, 18, 69, 92, 80, + 56, 252, 115, 71, 230, 247, 219, 210, 213, 202, 21, 67, 81, 154, 214, 255, 71, 2, 65, 200, 78, 142, 63, 97, 159, + 76, 113, 236, 121, 161, 199, 28, 72, 194, 67, 35, 77, 83, 27, 137, 243, 46, 118, 243, 230, 232, 167, 27, 88, 157, + 197, 96, 84, 194, 183, 60, 255, 216, 102, 159, 27, 49, 65, 45, 52, 158, 185, 231, 196, 159, 27, 221, 55, 122, 153, + 150, 35, 227, 60, 76, 186, 253, 218, 38, 158, 99, 251, 175, 46, 197, 251, 134, 27, 50, 211, 8, 244, 79, 36, 106, + 100, 69, 217, 205, 246, 228, 80, 75, 101, 72, 221, 222, 135, 165, 74, 23, 191, 139, 96, 255, 255, 159, 67, 254, + 224, 95, 27, 194, 253, 46, 111, 208, 243, 28, 25, 27, 3, 180, 220, 28, 110, 196, 18, 26, 27, 33, 74, 163, 175, + 112, 196, 253, 87, 255, 255, 255, 27, 5, 28, 49, 182, 7, 192, 247, 234, 27, 158, 8, 151, 219, 79, 137, 39, 2, 191, + 72, 11, 190, 199, 231, 46, 89, 34, 65, 27, 158, 107, 227, 200, 239, 221, 43, 192, 70, 36, 206, 252, 91, 207, 237, + 69, 190, 122, 48, 96, 95, 76, 74, 158, 37, 134, 64, 1, 239, 140, 80, 56, 9, 204, 27, 110, 61, 218, 248, 162, 8, + 56, 54, 75, 120, 84, 26, 39, 116, 204, 255, 132, 200, 53, 181, 27, 189, 120, 186, 50, 108, 124, 85, 86, 76, 131, + 138, 136, 239, 160, 178, 98, 83, 75, 207, 207, 66, 27, 164, 107, 133, 218, 164, 1, 131, 56, 67, 219, 172, 1, 76, + 159, 229, 23, 169, 253, 160, 99, 108, 38, 146, 42, 62, 255, 27, 54, 239, 93, 143, 43, 95, 10, 145, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1035, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7566055481911358603" + } + }, + "cborHex": "1b6900075fc639348b", + "cborBytes": [27, 105, 0, 7, 95, 198, 57, 52, 139], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1036, + "sample": { + "_tag": "ByteArray", + "bytearray": "1ef8" + }, + "cborHex": "421ef8", + "cborBytes": [66, 30, 248], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1037, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4960939124052897220" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19a8521b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5418714552493411909" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17688503182738014637" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10093502821621518182" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "737741098980752515" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b44d8cbd96182adc44419a8521b1b4b33242d089c0e451bf57a2fed4f7741ad1b8c135356ae274f661b0a3cfb9eecf43c83ffff", + "cborBytes": [ + 159, 191, 27, 68, 216, 203, 217, 97, 130, 173, 196, 68, 25, 168, 82, 27, 27, 75, 51, 36, 45, 8, 156, 14, 69, 27, + 245, 122, 47, 237, 79, 119, 65, 173, 27, 140, 19, 83, 86, 174, 39, 79, 102, 27, 10, 60, 251, 158, 236, 244, 60, + 131, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1038, + "sample": { + "_tag": "ByteArray", + "bytearray": "faf70421e1da010586" + }, + "cborHex": "49faf70421e1da010586", + "cborBytes": [73, 250, 247, 4, 33, 225, 218, 1, 5, 134], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1039, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12218382872003025694" + }, + "fields": [] + }, + "cborHex": "d8669f1ba9906a7c7f751b1e80ff", + "cborBytes": [216, 102, 159, 27, 169, 144, 106, 124, 127, 117, 27, 30, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1040, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6088159753612872139" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5876236766822434117" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3651378226148449322" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f9f80d8669f1b547d7d0a19ecc9cb9f1b518c9634ae8a8545ffff1b32ac4d269e2c9c2aff1bffffffffffffffebffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 159, 128, 216, 102, 159, 27, 84, 125, 125, 10, 25, + 236, 201, 203, 159, 27, 81, 140, 150, 52, 174, 138, 133, 69, 255, 255, 27, 50, 172, 77, 38, 158, 44, 156, 42, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1041, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1432431641152411896" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14589838701355029184" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4955657797488286859" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1510920916962694672" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6939712485298687732" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16866913970885132803" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea9190" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "377122268379632298" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15548641897176407727" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1563312166588390895" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6685456088073050715" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17109037597300344599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7473e3d0971d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18378723629553321632" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da50444919" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6425495547446155617" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ef619a5a546991b6ecc072" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12620070043452347070" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12542410268406321267" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3337170447050db64f7d023b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "39ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2397183593048082061" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3136205369795372142" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "749412c1b74010" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1470f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f9d72dcbd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89df87d2fe86" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "830a412f018c3ad5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16475932192471445759" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc83a355b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acbb" + } + } + ] + } + ] + }, + "cborHex": "d9050a9fbf1b13e104fcffeb58f81bca7984ffa48352c01b44c60882b7af1c8b1b14f7de919b44d6101b604ecfbcb9924ef41bea1350e44bae820343ea91901b053bceb47ba852aaffd8669f1bd7c7df6cdcf49eaf9fbf1b15b20021fa8c1def1b5cc782e41b111a5b1bed6f830c13e3c717467473e3d0971d1bff0e57c4349a86a045da50444919ff9f1b592bf2281b61d9614bef619a5a546991b6ecc0721baf237ed72c8692be1bae0f97afc3921073ff4c3337170447050db64f7d023bffffbf4239ed1b214481c6ed06868d41461b2b860a2ae153646e47749412c1b7401043d1470f457f9d72dcbd4689df87d2fe8648830a412f018c3ad51be4a645092baef0ff45cc83a355b842acbbffff", + "cborBytes": [ + 217, 5, 10, 159, 191, 27, 19, 225, 4, 252, 255, 235, 88, 248, 27, 202, 121, 132, 255, 164, 131, 82, 192, 27, 68, + 198, 8, 130, 183, 175, 28, 139, 27, 20, 247, 222, 145, 155, 68, 214, 16, 27, 96, 78, 207, 188, 185, 146, 78, 244, + 27, 234, 19, 80, 228, 75, 174, 130, 3, 67, 234, 145, 144, 27, 5, 59, 206, 180, 123, 168, 82, 170, 255, 216, 102, + 159, 27, 215, 199, 223, 108, 220, 244, 158, 175, 159, 191, 27, 21, 178, 0, 33, 250, 140, 29, 239, 27, 92, 199, + 130, 228, 27, 17, 26, 91, 27, 237, 111, 131, 12, 19, 227, 199, 23, 70, 116, 115, 227, 208, 151, 29, 27, 255, 14, + 87, 196, 52, 154, 134, 160, 69, 218, 80, 68, 73, 25, 255, 159, 27, 89, 43, 242, 40, 27, 97, 217, 97, 75, 239, 97, + 154, 90, 84, 105, 145, 182, 236, 192, 114, 27, 175, 35, 126, 215, 44, 134, 146, 190, 27, 174, 15, 151, 175, 195, + 146, 16, 115, 255, 76, 51, 55, 23, 4, 71, 5, 13, 182, 79, 125, 2, 59, 255, 255, 191, 66, 57, 237, 27, 33, 68, 129, + 198, 237, 6, 134, 141, 65, 70, 27, 43, 134, 10, 42, 225, 83, 100, 110, 71, 116, 148, 18, 193, 183, 64, 16, 67, + 209, 71, 15, 69, 127, 157, 114, 220, 189, 70, 137, 223, 135, 210, 254, 134, 72, 131, 10, 65, 47, 1, 140, 58, 213, + 27, 228, 166, 69, 9, 43, 174, 240, 255, 69, 204, 131, 163, 85, 184, 66, 172, 187, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1042, + "sample": { + "_tag": "ByteArray", + "bytearray": "fce3fa02078600" + }, + "cborHex": "47fce3fa02078600", + "cborBytes": [71, 252, 227, 250, 2, 7, 134, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1043, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2445112657572254251" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2955488998528269673" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14965846917495435090" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10026245208859007391" + } + } + ] + }, + "cborHex": "d8669f1b21eec901de67d22b9f1b29040195d6da3d691bcfb15e7aa030af521b8b2460e56900d99fffff", + "cborBytes": [ + 216, 102, 159, 27, 33, 238, 201, 1, 222, 103, 210, 43, 159, 27, 41, 4, 1, 149, 214, 218, 61, 105, 27, 207, 177, + 94, 122, 160, 48, 175, 82, 27, 139, 36, 96, 229, 105, 0, 217, 159, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1044, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6372399302271847517" + } + }, + "cborHex": "1b586f4f672adc4c5d", + "cborBytes": [27, 88, 111, 79, 103, 42, 220, 76, 93], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1045, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "cborHex": "1bfffffffffffffffe", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 254], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1046, + "sample": { + "_tag": "ByteArray", + "bytearray": "61ca199f2d2a" + }, + "cborHex": "4661ca199f2d2a", + "cborBytes": [70, 97, 202, 25, 159, 45, 42], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1047, + "sample": { + "_tag": "ByteArray", + "bytearray": "20069500" + }, + "cborHex": "4420069500", + "cborBytes": [68, 32, 6, 149, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1048, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11987245441643171242" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1e5a67b2f50abd" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6866075749864814882" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4469803961107764703" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c6835f2f968fea67e53c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13458205845615376054" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a542" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14960125240205312993" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8151902141552574046" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0af2e5ad86cde1b9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17522326330814766574" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d17de7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7125331276221643240" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b2b50e07e8a58d4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6341085309266762955" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11627624694148878278" + } + }, + { + "_tag": "ByteArray", + "bytearray": "11" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c93571326e57" + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba65b4037d08fcdaa9f471e5a67b2f50abdd8669f1b5f493384379db9229f1b3e07ef05457655df4ac6835f2f968fea67e53c1bbac526e975fd76b6ffff9f42a542ff1bcf9d0aa4d1cb03e1ffff1b71215fce9efcbe5e480af2e5ad86cde1b9d8669f1bf32bcef5eab01dee9f43d17de71b62e2430b4a2bf9e8484b2b50e07e8a58d4d8669f1b58000f7e054b1ccb9f1ba15d9f0db44dcfc64111ffff46c93571326e57ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 166, 91, 64, 55, 208, 143, 205, 170, 159, 71, 30, 90, 103, 178, 245, 10, 189, 216, 102, + 159, 27, 95, 73, 51, 132, 55, 157, 185, 34, 159, 27, 62, 7, 239, 5, 69, 118, 85, 223, 74, 198, 131, 95, 47, 150, + 143, 234, 103, 229, 60, 27, 186, 197, 38, 233, 117, 253, 118, 182, 255, 255, 159, 66, 165, 66, 255, 27, 207, 157, + 10, 164, 209, 203, 3, 225, 255, 255, 27, 113, 33, 95, 206, 158, 252, 190, 94, 72, 10, 242, 229, 173, 134, 205, + 225, 185, 216, 102, 159, 27, 243, 43, 206, 245, 234, 176, 29, 238, 159, 67, 209, 125, 231, 27, 98, 226, 67, 11, + 74, 43, 249, 232, 72, 75, 43, 80, 224, 126, 138, 88, 212, 216, 102, 159, 27, 88, 0, 15, 126, 5, 75, 28, 203, 159, + 27, 161, 93, 159, 13, 180, 77, 207, 198, 65, 17, 255, 255, 70, 201, 53, 113, 50, 110, 87, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1049, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cacd4ed9fb762a8c38df466a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fae70eb8c2dba4d71e14f0b3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0c1745b946fc33957" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13265609250448163098" + } + } + } + ] + }, + "cborHex": "bf4ccacd4ed9fb762a8c38df466a4cfae70eb8c2dba4d71e14f0b349e0c1745b946fc339571bb818e9543e19411aff", + "cborBytes": [ + 191, 76, 202, 205, 78, 217, 251, 118, 42, 140, 56, 223, 70, 106, 76, 250, 231, 14, 184, 194, 219, 164, 215, 30, + 20, 240, 179, 73, 224, 193, 116, 91, 148, 111, 195, 57, 87, 27, 184, 24, 233, 84, 62, 25, 65, 26, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1050, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d6210d0283a06f122" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6801062608384001987" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3c2c93" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "858226850377967287" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3832018028086917495" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5857930754982731503" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a06f4c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca75a03ff8f8260a1c8d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8423977943886783839" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7a64c69a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15816909949125356517" + } + } + } + ] + }, + "cborHex": "bf493d6210d0283a06f122d8669f1b5e623a68a3eb87c39f433c2c931b0be908c5f97b26b71b352e1017f90379771b514b8cfc2994deefffff43a06f4cbf4aca75a03ff8f8260a1c8d1b74e7fb4ecd18e55fff45a7a64c69a51bdb80f3cc11f56be5ff", + "cborBytes": [ + 191, 73, 61, 98, 16, 208, 40, 58, 6, 241, 34, 216, 102, 159, 27, 94, 98, 58, 104, 163, 235, 135, 195, 159, 67, 60, + 44, 147, 27, 11, 233, 8, 197, 249, 123, 38, 183, 27, 53, 46, 16, 23, 249, 3, 121, 119, 27, 81, 75, 140, 252, 41, + 148, 222, 239, 255, 255, 67, 160, 111, 76, 191, 74, 202, 117, 160, 63, 248, 248, 38, 10, 28, 141, 27, 116, 231, + 251, 78, 205, 24, 229, 95, 255, 69, 167, 166, 76, 105, 165, 27, 219, 128, 243, 204, 17, 245, 107, 229, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1051, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "991778233032934661" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0612ae5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8051403555753555619" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f87e000700fd2afe0702f800" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14705098416615243461" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3021407683117224216" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17110056618129545714" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "2a03" + }, + { + "_tag": "ByteArray", + "bytearray": "f22a6e562c" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905079fd8669f1b0dc3810c5be485059fbf44b0612ae51b6fbc54e03401f6a34cf87e000700fd2afe0702f80013ffd8669f1bcc1301195582bec59f1b29ee324799d691181bed7321d75a6ed9f2ffffffffd87b80422a0345f22a6e562c80ff", + "cborBytes": [ + 217, 5, 7, 159, 216, 102, 159, 27, 13, 195, 129, 12, 91, 228, 133, 5, 159, 191, 68, 176, 97, 42, 229, 27, 111, + 188, 84, 224, 52, 1, 246, 163, 76, 248, 126, 0, 7, 0, 253, 42, 254, 7, 2, 248, 0, 19, 255, 216, 102, 159, 27, 204, + 19, 1, 25, 85, 130, 190, 197, 159, 27, 41, 238, 50, 71, 153, 214, 145, 24, 27, 237, 115, 33, 215, 90, 110, 217, + 242, 255, 255, 255, 255, 216, 123, 128, 66, 42, 3, 69, 242, 42, 110, 86, 44, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1052, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25e638" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "274777134584677141" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff3fefe08e4c2522b68fabde" + } + } + ] + }, + "cborHex": "bf004325e6381b03d034591b51c3154cff3fefe08e4c2522b68fabdeff", + "cborBytes": [ + 191, 0, 67, 37, 230, 56, 27, 3, 208, 52, 89, 27, 81, 195, 21, 76, 255, 63, 239, 224, 142, 76, 37, 34, 182, 143, + 171, 222, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1053, + "sample": { + "_tag": "ByteArray", + "bytearray": "f800" + }, + "cborHex": "42f800", + "cborBytes": [66, 248, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1054, + "sample": { + "_tag": "ByteArray", + "bytearray": "f94f" + }, + "cborHex": "42f94f", + "cborBytes": [66, 249, 79], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1055, + "sample": { + "_tag": "ByteArray", + "bytearray": "81d859995ffa748eddcbf2d7" + }, + "cborHex": "4c81d859995ffa748eddcbf2d7", + "cborBytes": [76, 129, 216, 89, 153, 95, 250, 116, 142, 221, 203, 242, 215], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1056, + "sample": { + "_tag": "ByteArray", + "bytearray": "0b7dd3e8e63779b07c" + }, + "cborHex": "490b7dd3e8e63779b07c", + "cborBytes": [73, 11, 125, 211, 232, 230, 55, 121, 176, 124], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1057, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9006841147319423760" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0f12b26e9c019001b9" + }, + { + "_tag": "ByteArray", + "bytearray": "8b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15321604401063495461" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "de4b344b70ba5e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2866cf8704" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e6b13084183c0cc7414a8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f00f35a2" + }, + { + "_tag": "ByteArray", + "bytearray": "bd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16317585063835541776" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e10aa24aebab3120e9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5703442549024983953" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c85701" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11602161900128539244" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "657e5c4cc228548b2bdc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11695278680245809412" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9cbcd370d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15198579149798491988" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c626" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b7cfeba4d9e5893109f490f12b26e9c019001b9418bff1bd4a1460682738725bf47de4b344b70ba5e452866cf8704ff4b2e6b13084183c0cc7414a89f44f00f35a241bd1be273b5294a232110ff49e10aa24aebab3120e9bf1b4f26b2c7bb7b8b9143c857011ba10328c6fbbb926c4a657e5c4cc228548b2bdc1ba24df9fed540310445b9cbcd370d1bd2ec33361265c75442c626ffff", + "cborBytes": [ + 191, 27, 124, 254, 186, 77, 158, 88, 147, 16, 159, 73, 15, 18, 178, 110, 156, 1, 144, 1, 185, 65, 139, 255, 27, + 212, 161, 70, 6, 130, 115, 135, 37, 191, 71, 222, 75, 52, 75, 112, 186, 94, 69, 40, 102, 207, 135, 4, 255, 75, 46, + 107, 19, 8, 65, 131, 192, 204, 116, 20, 168, 159, 68, 240, 15, 53, 162, 65, 189, 27, 226, 115, 181, 41, 74, 35, + 33, 16, 255, 73, 225, 10, 162, 74, 235, 171, 49, 32, 233, 191, 27, 79, 38, 178, 199, 187, 123, 139, 145, 67, 200, + 87, 1, 27, 161, 3, 40, 198, 251, 187, 146, 108, 74, 101, 126, 92, 76, 194, 40, 84, 139, 43, 220, 27, 162, 77, 249, + 254, 213, 64, 49, 4, 69, 185, 203, 205, 55, 13, 27, 210, 236, 51, 54, 18, 101, 199, 84, 66, 198, 38, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1058, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12759516062108020966" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6197606783996737579" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4779679809850259742" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10301340126399792279" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4865319660801235101" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70da2512" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7555350316763151560" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12424590910354864507" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5113352895207787533" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1835873733466483969" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18222387691674720734" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ac3383652cb14e438d3275e9" + }, + { + "_tag": "ByteArray", + "bytearray": "180e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3651373303967226563" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bb112e84173d6f0e61b56025288a1ad382bbf1b4254d576963b391e1b8ef5b644208984971b4385167434c8189d4470da25121b68d9ff15484d7cc841831bac6d039acb3fb97b4192ff1b46f6475dd2134c0d9f1b197a556f07bd6d01d8669f1bfce2ed0f29b8d9de9f4cac3383652cb14e438d3275e942180e1b32ac48ac954f9ac3ffffffff", + "cborBytes": [ + 159, 27, 177, 18, 232, 65, 115, 214, 240, 230, 27, 86, 2, 82, 136, 161, 173, 56, 43, 191, 27, 66, 84, 213, 118, + 150, 59, 57, 30, 27, 142, 245, 182, 68, 32, 137, 132, 151, 27, 67, 133, 22, 116, 52, 200, 24, 157, 68, 112, 218, + 37, 18, 27, 104, 217, 255, 21, 72, 77, 124, 200, 65, 131, 27, 172, 109, 3, 154, 203, 63, 185, 123, 65, 146, 255, + 27, 70, 246, 71, 93, 210, 19, 76, 13, 159, 27, 25, 122, 85, 111, 7, 189, 109, 1, 216, 102, 159, 27, 252, 226, 237, + 15, 41, 184, 217, 222, 159, 76, 172, 51, 131, 101, 44, 177, 78, 67, 141, 50, 117, 233, 66, 24, 14, 27, 50, 172, + 72, 172, 149, 79, 154, 195, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1059, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5014775633117857071" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + } + ] + }, + "cborHex": "bf1b45980fde7046452f1bffffffffffffffebff", + "cborBytes": [191, 27, 69, 152, 15, 222, 112, 70, 69, 47, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1060, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11937508246717700620" + } + }, + "cborHex": "1ba5aa8c80b4e79a0c", + "cborBytes": [27, 165, 170, 140, 128, 180, 231, 154, 12], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1061, + "sample": { + "_tag": "ByteArray", + "bytearray": "e6f9f307" + }, + "cborHex": "44e6f9f307", + "cborBytes": [68, 230, 249, 243, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1062, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3509139372915396316" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd0bb17331" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3913938260063559849" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8081df2907e2fb0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4232200286590697695" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15852844548888150567" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16241201606785841935" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17003998661326621652" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1185e5704701c9245a38e5f6" + }, + { + "_tag": "ByteArray", + "bytearray": "276889c16b6362b6c192" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3670886258087606664" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13110771698165600194" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b30b2f7aaddf58edc45dd0bb173311b36511a1c4fe620a948b8081df2907e2fb01b3abbcbbccc8b80df1bdc009e200ff742271be16456cfd1f93b0f9f1bebfa56b101974bd44c1185e5704701c9245a38e5f64a276889c16b6362b6c1921b32f19b9a402cb9881bb5f2d1654867cfc2ffff", + "cborBytes": [ + 191, 27, 48, 178, 247, 170, 221, 245, 142, 220, 69, 221, 11, 177, 115, 49, 27, 54, 81, 26, 28, 79, 230, 32, 169, + 72, 184, 8, 29, 242, 144, 126, 47, 176, 27, 58, 187, 203, 188, 204, 139, 128, 223, 27, 220, 0, 158, 32, 15, 247, + 66, 39, 27, 225, 100, 86, 207, 209, 249, 59, 15, 159, 27, 235, 250, 86, 177, 1, 151, 75, 212, 76, 17, 133, 229, + 112, 71, 1, 201, 36, 90, 56, 229, 246, 74, 39, 104, 137, 193, 107, 99, 98, 182, 193, 146, 27, 50, 241, 155, 154, + 64, 44, 185, 136, 27, 181, 242, 209, 101, 72, 103, 207, 194, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1063, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a12b12041bd5aa9ff56" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5726415573592322256" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15105648336345885420" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b9e441b1f9c9f2b5578a62d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a03769dacfd42a1881da999c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "64bb9ab334" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f457da2c80783" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad16980e538d65d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2597950457614810857" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af7545c0ee7402d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11169816375312268731" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c210e68e7ba78afcd7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4001441336900291373" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ba5e1c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7447331096202237301" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11992360568917787605" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11317734282183043403" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17625372401884742236" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13858930052918009046" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13996053460877869360" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4a1a12b12041bd5aa9ff569f1b4f78509fd43c30d01bd1a20b20f5ddeaecff418f4c1b9e441b1f9c9f2b5578a62d4ca03769dacfd42a1881da999cbf4564bb9ab334470f457da2c80783ff48ad16980e538d65d61b240dc62d3a31bee948af7545c0ee7402d91b9b0328d028d43dbb49c210e68e7ba78afcd7bf1b3787f9b203818b2d448ba5e1c11b675a3c2ca1dad5751ba66d6c6630bf03d51b9d10ab5d9fc7e94b1bf499e6d0f850425c1bc054cf749329dcd61bc23bf877e9008130ffff", + "cborBytes": [ + 191, 74, 26, 18, 177, 32, 65, 189, 90, 169, 255, 86, 159, 27, 79, 120, 80, 159, 212, 60, 48, 208, 27, 209, 162, + 11, 32, 245, 221, 234, 236, 255, 65, 143, 76, 27, 158, 68, 27, 31, 156, 159, 43, 85, 120, 166, 45, 76, 160, 55, + 105, 218, 207, 212, 42, 24, 129, 218, 153, 156, 191, 69, 100, 187, 154, 179, 52, 71, 15, 69, 125, 162, 200, 7, + 131, 255, 72, 173, 22, 152, 14, 83, 141, 101, 214, 27, 36, 13, 198, 45, 58, 49, 190, 233, 72, 175, 117, 69, 192, + 238, 116, 2, 217, 27, 155, 3, 40, 208, 40, 212, 61, 187, 73, 194, 16, 230, 142, 123, 167, 138, 252, 215, 191, 27, + 55, 135, 249, 178, 3, 129, 139, 45, 68, 139, 165, 225, 193, 27, 103, 90, 60, 44, 161, 218, 213, 117, 27, 166, 109, + 108, 102, 48, 191, 3, 213, 27, 157, 16, 171, 93, 159, 199, 233, 75, 27, 244, 153, 230, 208, 248, 80, 66, 92, 27, + 192, 84, 207, 116, 147, 41, 220, 214, 27, 194, 59, 248, 119, 233, 0, 129, 48, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1064, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "015c59de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2040307" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + }, + "cborHex": "bf44015c59de0144e20403070bff", + "cborBytes": [191, 68, 1, 92, 89, 222, 1, 68, 226, 4, 3, 7, 11, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1065, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9" + }, + "cborHex": "41f9", + "cborBytes": [65, 249], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1066, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6155192761554017180" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2101651807216393981" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7baf1516" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aafe0bf678d709b098a4" + }, + { + "_tag": "ByteArray", + "bytearray": "4635b85174042ae451" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "21673179978603494" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2456819818591545278" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f809f9f1b556ba3347c7b9b9c1b1d2a912f02b0defd447baf1516ff4aaafe0bf678d709b098a4494635b85174042ae451d8669f1b004cffa471c71be69f1b2218609bb449e7beffffffff", + "cborBytes": [ + 159, 128, 159, 159, 27, 85, 107, 163, 52, 124, 123, 155, 156, 27, 29, 42, 145, 47, 2, 176, 222, 253, 68, 123, 175, + 21, 22, 255, 74, 170, 254, 11, 246, 120, 215, 9, 176, 152, 164, 73, 70, 53, 184, 81, 116, 4, 42, 228, 81, 216, + 102, 159, 27, 0, 76, 255, 164, 113, 199, 27, 230, 159, 27, 34, 24, 96, 155, 180, 73, 231, 190, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1067, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "cborHex": "41fa", + "cborBytes": [65, 250], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1068, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16945029338643865117" + } + }, + "cborHex": "1beb28d667a6709e1d", + "cborBytes": [27, 235, 40, 214, 103, 166, 112, 158, 29], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1069, + "sample": { + "_tag": "ByteArray", + "bytearray": "0100000100ea24" + }, + "cborHex": "470100000100ea24", + "cborBytes": [71, 1, 0, 0, 1, 0, 234, 36], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1070, + "sample": { + "_tag": "ByteArray", + "bytearray": "83" + }, + "cborHex": "4183", + "cborBytes": [65, 131], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1071, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "447958873121078739" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5bf66f0c046c" + } + } + ] + }, + "cborHex": "bf1b06377838c25dbdd3465bf66f0c046cff", + "cborBytes": [191, 27, 6, 55, 120, 56, 194, 93, 189, 211, 70, 91, 246, 111, 12, 4, 108, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1072, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11126607277487340138" + } + }, + "cborHex": "1b9a69a65e19e8ba6a", + "cborBytes": [27, 154, 105, 166, 94, 25, 232, 186, 106], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1073, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15356671869836145747" + } + }, + "cborHex": "1bd51ddbb3d5d13453", + "cborBytes": [27, 213, 29, 219, 179, 213, 209, 52, 83], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1074, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12718755903209606833" + } + }, + "cborHex": "1bb082191b6bb60eb1", + "cborBytes": [27, 176, 130, 25, 27, 107, 182, 14, 177], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1075, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1797431305556404530" + } + }, + "cborHex": "1b18f1c23fcbdb2932", + "cborBytes": [27, 24, 241, 194, 63, 203, 219, 41, 50], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1076, + "sample": { + "_tag": "ByteArray", + "bytearray": "80ad6d8faae80f" + }, + "cborHex": "4780ad6d8faae80f", + "cborBytes": [71, 128, 173, 109, 143, 170, 232, 15], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1077, + "sample": { + "_tag": "ByteArray", + "bytearray": "2c0a8b69329a470b68" + }, + "cborHex": "492c0a8b69329a470b68", + "cborBytes": [73, 44, 10, 139, 105, 50, 154, 71, 11, 104], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1078, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb02fd0001fb7fb9db018366" + }, + "cborHex": "4cfb02fd0001fb7fb9db018366", + "cborBytes": [76, 251, 2, 253, 0, 1, 251, 127, 185, 219, 1, 131, 102], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1079, + "sample": { + "_tag": "ByteArray", + "bytearray": "f89a2c8a6a3196bb1c" + }, + "cborHex": "49f89a2c8a6a3196bb1c", + "cborBytes": [73, 248, 154, 44, 138, 106, 49, 150, 187, 28], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1080, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14420300357445591502" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d13c6f449bcd47" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1887159658893831010" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ba3a5d23c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29082290f9f3dc6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a673ca0eba13" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "65" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f13e218be2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f2630" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e387e1465d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc011c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "208ae9792ab538" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15183665940271890014" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1885657841935390778" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "862840695104772810" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10448506733552218695" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9331630361862459174" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ddcb5a6ccc50499cc44a372" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8178667897398391065" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2256" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af378de76e24302baa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e7d856d7fac89e90f8d99" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5190969711834954350" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2158b81b7355d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13696893270868832112" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbad871855691300c33ad4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12532387370105398809" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bc81f32c5e7fba1ce9f47d13c6f449bcd479fbf1b1a3089b60ed06b62453ba3a5d23c4829082290f9f3dc6b46a673ca0eba13ffbf416545f13e218be2437f263045e387e1465d43dc011c47208ae9792ab538ffffa0a0d8669f1bd2b737b9e61a7e5e9fbf1b1a2b33d10c7d183a1b0bf96d0a69789aca1b91008d83fea832471b81809c5f7e0fcf26ffbf4c0ddcb5a6ccc50499cc44a3721b7180771ec852711942225649af378de76e24302baa4b3e7d856d7fac89e90f8d99410341b01b480a077331bbfa6e47f2158b81b7355d1bbe1523dc50932f704bfbad871855691300c33ad41badebfbe9e6b96619ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 200, 31, 50, 197, 231, 251, 161, 206, 159, 71, 209, 60, 111, 68, 155, 205, 71, 159, 191, 27, + 26, 48, 137, 182, 14, 208, 107, 98, 69, 59, 163, 165, 210, 60, 72, 41, 8, 34, 144, 249, 243, 220, 107, 70, 166, + 115, 202, 14, 186, 19, 255, 191, 65, 101, 69, 241, 62, 33, 139, 226, 67, 127, 38, 48, 69, 227, 135, 225, 70, 93, + 67, 220, 1, 28, 71, 32, 138, 233, 121, 42, 181, 56, 255, 255, 160, 160, 216, 102, 159, 27, 210, 183, 55, 185, 230, + 26, 126, 94, 159, 191, 27, 26, 43, 51, 209, 12, 125, 24, 58, 27, 11, 249, 109, 10, 105, 120, 154, 202, 27, 145, 0, + 141, 131, 254, 168, 50, 71, 27, 129, 128, 156, 95, 126, 15, 207, 38, 255, 191, 76, 13, 220, 181, 166, 204, 197, 4, + 153, 204, 68, 163, 114, 27, 113, 128, 119, 30, 200, 82, 113, 25, 66, 34, 86, 73, 175, 55, 141, 231, 110, 36, 48, + 43, 170, 75, 62, 125, 133, 109, 127, 172, 137, 233, 15, 141, 153, 65, 3, 65, 176, 27, 72, 10, 7, 115, 49, 187, + 250, 110, 71, 242, 21, 139, 129, 183, 53, 93, 27, 190, 21, 35, 220, 80, 147, 47, 112, 75, 251, 173, 135, 24, 85, + 105, 19, 0, 195, 58, 212, 27, 173, 235, 251, 233, 230, 185, 102, 25, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1081, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5186435948081100646" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5050304061296887493" + } + }, + { + "_tag": "ByteArray", + "bytearray": "23ec0c869db31236bef6e7" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17219340327176762301" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "55a083" + }, + { + "_tag": "ByteArray", + "bytearray": "41623c48" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14586459751590696947" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de" + }, + { + "_tag": "ByteArray", + "bytearray": "8d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6672598689561854940" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d9050b9f1b47f9ec040fb0b7669f9f1b461648c93d5046c54b23ec0c869db31236bef6e7ffd8669f1beef762cbabedf3bd9f4355a0834441623c481bca6d83dc981897f341de418dffff1b5c99d527bc1243dcff80ff", + "cborBytes": [ + 217, 5, 11, 159, 27, 71, 249, 236, 4, 15, 176, 183, 102, 159, 159, 27, 70, 22, 72, 201, 61, 80, 70, 197, 75, 35, + 236, 12, 134, 157, 179, 18, 54, 190, 246, 231, 255, 216, 102, 159, 27, 238, 247, 98, 203, 171, 237, 243, 189, 159, + 67, 85, 160, 131, 68, 65, 98, 60, 72, 27, 202, 109, 131, 220, 152, 24, 151, 243, 65, 222, 65, 141, 255, 255, 27, + 92, 153, 213, 39, 188, 18, 67, 220, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1082, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8222880244630316944" + } + }, + "cborHex": "1b721d8a040bc46790", + "cborBytes": [27, 114, 29, 138, 4, 11, 196, 103, 144], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1083, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10a413e6e49760465ac04c81" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "010604" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c53" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cf191c17e56f6760a" + } + } + ] + }, + "cborHex": "bf044c10a413e6e49760465ac04c8143010604a0425c53492cf191c17e56f6760aff", + "cborBytes": [ + 191, 4, 76, 16, 164, 19, 230, 228, 151, 96, 70, 90, 192, 76, 129, 67, 1, 6, 4, 160, 66, 92, 83, 73, 44, 241, 145, + 193, 126, 86, 246, 118, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1084, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd1ace0d84ee87ebc99925" + }, + "cborHex": "4bfd1ace0d84ee87ebc99925", + "cborBytes": [75, 253, 26, 206, 13, 132, 238, 135, 235, 201, 153, 37], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1085, + "sample": { + "_tag": "ByteArray", + "bytearray": "ad03f8" + }, + "cborHex": "43ad03f8", + "cborBytes": [67, 173, 3, 248], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1086, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9254863671799044154" + } + }, + "cborHex": "1b806fe179a23fd83a", + "cborBytes": [27, 128, 111, 225, 121, 162, 63, 216, 58], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1087, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88bde3608cde66c60113" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11456205762998718982" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16686234972941305197" + } + }, + { + "_tag": "ByteArray", + "bytearray": "db1943" + } + ] + } + } + ] + }, + "cborHex": "bf4101a04a88bde3608cde66c601139f1b9efc9e71a15252061be7916a4ce8ddc56d43db1943ffff", + "cborBytes": [ + 191, 65, 1, 160, 74, 136, 189, 227, 96, 140, 222, 102, 198, 1, 19, 159, 27, 158, 252, 158, 113, 161, 82, 82, 6, + 27, 231, 145, 106, 76, 232, 221, 197, 109, 67, 219, 25, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1088, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2d90212d11e4b30acc67" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f844f8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1374102259246572988" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12564578766862636492" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4002618206218646392" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "104437c66e5bc39a91" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6178805331509631409" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12f4e436b6fdb8257399bb89" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8544989717259242738" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6047916171596771045" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9541438867377512363" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "963ead7d1d767cd478bfbf4d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17590180130541278985" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "beb099" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11450997560955537543" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7285776582372587533" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4a2d90212d11e4b30acc679f43f844f8bf1b1311cab9777425bc1bae5e59d1874355cc1b378c280d412c737849104437c66e5bc39a911b55bf86b658ebd9b14c12f4e436b6fdb8257399bb891b7695e6dfe29a4cf21b53ee83b6ff5daee51b846a0018e0245fab4c963ead7d1d767cd478bfbf4d1bf41cdfa1c80c170943beb099ff9f1b9eea1d9c989e88871b651c4733312d780dffffff", + "cborBytes": [ + 159, 74, 45, 144, 33, 45, 17, 228, 179, 10, 204, 103, 159, 67, 248, 68, 248, 191, 27, 19, 17, 202, 185, 119, 116, + 37, 188, 27, 174, 94, 89, 209, 135, 67, 85, 204, 27, 55, 140, 40, 13, 65, 44, 115, 120, 73, 16, 68, 55, 198, 110, + 91, 195, 154, 145, 27, 85, 191, 134, 182, 88, 235, 217, 177, 76, 18, 244, 228, 54, 182, 253, 184, 37, 115, 153, + 187, 137, 27, 118, 149, 230, 223, 226, 154, 76, 242, 27, 83, 238, 131, 182, 255, 93, 174, 229, 27, 132, 106, 0, + 24, 224, 36, 95, 171, 76, 150, 62, 173, 125, 29, 118, 124, 212, 120, 191, 191, 77, 27, 244, 28, 223, 161, 200, 12, + 23, 9, 67, 190, 176, 153, 255, 159, 27, 158, 234, 29, 156, 152, 158, 136, 135, 27, 101, 28, 71, 51, 49, 45, 120, + 13, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1089, + "sample": { + "_tag": "ByteArray", + "bytearray": "070505" + }, + "cborHex": "43070505", + "cborBytes": [67, 7, 5, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1090, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa07030576f89d5e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a7951a94c77f2e73364af82e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5729083751777593413" + } + } + ] + } + } + ] + }, + "cborHex": "bf0348fa07030576f89d5e0bd905069f4ca7951a94c77f2e73364af82e1b4f81cb51792a6845ffff", + "cborBytes": [ + 191, 3, 72, 250, 7, 3, 5, 118, 248, 157, 94, 11, 217, 5, 6, 159, 76, 167, 149, 26, 148, 199, 127, 46, 115, 54, 74, + 248, 46, 27, 79, 129, 203, 81, 121, 42, 104, 69, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1091, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1291754861502602164" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7862801305246817112" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed3110d4be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9931152027335179046" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6172769532651798612" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14240469296119424934" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15240221736313292763" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5460481464939596977" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "438201987383796390" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b11ed3c33d8bf1bb49fa0d8669f1b6d1e4820d2b6db589f45ed3110d4be1b89d28a26bfb6bb26d8669f1b55aa152f6a10805480ff9f1bc5a04f60260e27a61bd38024ec4b2407db1b4bc786f624544cb1ff1b0614ce62c5e1a2a6ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 17, 237, 60, 51, 216, 191, 27, 180, 159, 160, 216, 102, 159, 27, 109, 30, 72, 32, 210, 182, + 219, 88, 159, 69, 237, 49, 16, 212, 190, 27, 137, 210, 138, 38, 191, 182, 187, 38, 216, 102, 159, 27, 85, 170, 21, + 47, 106, 16, 128, 84, 128, 255, 159, 27, 197, 160, 79, 96, 38, 14, 39, 166, 27, 211, 128, 36, 236, 75, 36, 7, 219, + 27, 75, 199, 134, 246, 36, 84, 76, 177, 255, 27, 6, 20, 206, 98, 197, 225, 162, 166, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1092, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7473200330102939970" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "45d7bde6f8377389" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16508955191308779691" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "678f79fc1835c1dba0052775" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "484275e76d3999b236959c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "357514298531350102" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8406a5ce4b5cf2d0cfe504" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5373016767098711713" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aad8aa709eafa1089b7fa5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18124995005426159324" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "75c667" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12406000911617283591" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3240803805208470001" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "362c3cb4aa5e21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10753786578459844669" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8223218765651118550" + } + } + ] + } + ] + }, + "cborHex": "d905009fd8669f1b67b6241b031e21429f4845d7bde6f83773891be51b97473ecd00abbf410f4c678f79fc1835c1dba00527754b484275e76d3999b236959c1b04f6255c3e1586564b8406a5ce4b5cf2d0cfe5041b4a90ca483f22eea14baad8aa709eafa1089b7fa51bfb88eaed5627cedcffffff4375c6671bac2af8196c1ed607d8669f1b2cf9a5e3ec2f61f19fbf47362c3cb4aa5e211b953d1feac776603dff1b721ebde61cf609d6ffffff", + "cborBytes": [ + 217, 5, 0, 159, 216, 102, 159, 27, 103, 182, 36, 27, 3, 30, 33, 66, 159, 72, 69, 215, 189, 230, 248, 55, 115, 137, + 27, 229, 27, 151, 71, 62, 205, 0, 171, 191, 65, 15, 76, 103, 143, 121, 252, 24, 53, 193, 219, 160, 5, 39, 117, 75, + 72, 66, 117, 231, 109, 57, 153, 178, 54, 149, 156, 27, 4, 246, 37, 92, 62, 21, 134, 86, 75, 132, 6, 165, 206, 75, + 92, 242, 208, 207, 229, 4, 27, 74, 144, 202, 72, 63, 34, 238, 161, 75, 170, 216, 170, 112, 158, 175, 161, 8, 155, + 127, 165, 27, 251, 136, 234, 237, 86, 39, 206, 220, 255, 255, 255, 67, 117, 198, 103, 27, 172, 42, 248, 25, 108, + 30, 214, 7, 216, 102, 159, 27, 44, 249, 165, 227, 236, 47, 97, 241, 159, 191, 71, 54, 44, 60, 180, 170, 94, 33, + 27, 149, 61, 31, 234, 199, 118, 96, 61, 255, 27, 114, 30, 189, 230, 28, 246, 9, 214, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1093, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4393a872fe9a33d9ce9f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11708211645340382215" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4edef72b7cd78ba3f146df" + } + ] + } + ] + }, + "cborHex": "d905049f4a4393a872fe9a33d9ce9fd8669f1ba27bec756b9af4079f4b4edef72b7cd78ba3f146dfffffff", + "cborBytes": [ + 217, 5, 4, 159, 74, 67, 147, 168, 114, 254, 154, 51, 217, 206, 159, 216, 102, 159, 27, 162, 123, 236, 117, 107, + 154, 244, 7, 159, 75, 78, 222, 247, 43, 124, 215, 139, 163, 241, 70, 223, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1094, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8739968827878428065" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b25e4ac4e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7101331383479183042" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15656741158146636968" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a1e9529" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff7181aa9d56" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cb6" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6955996737078412711" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e5bec83df28796b115b" + }, + { + "_tag": "ByteArray", + "bytearray": "8a16e1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14807726833608080893" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8183201085045586994" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905099f9f1b794a9b57b5ae4da145b25e4ac4e31b628cff44d09c26c2bf1bd947eb215f917ca8447a1e952946ff7181aa9d56429cb6ff9f1b6088aa2d8c55c5a74a8e5bec83df28796b115b438a16e11bcd7f9d19b83abdfd1b71909207c7bbbc32ffffff", + "cborBytes": [ + 217, 5, 9, 159, 159, 27, 121, 74, 155, 87, 181, 174, 77, 161, 69, 178, 94, 74, 196, 227, 27, 98, 140, 255, 68, + 208, 156, 38, 194, 191, 27, 217, 71, 235, 33, 95, 145, 124, 168, 68, 122, 30, 149, 41, 70, 255, 113, 129, 170, + 157, 86, 66, 156, 182, 255, 159, 27, 96, 136, 170, 45, 140, 85, 197, 167, 74, 142, 91, 236, 131, 223, 40, 121, + 107, 17, 91, 67, 138, 22, 225, 27, 205, 127, 157, 25, 184, 58, 189, 253, 27, 113, 144, 146, 7, 199, 187, 188, 50, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1095, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3484367279753079402" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13639494912093390327" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d291d44e25f10" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15475454372024799273" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14501837930686758672" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46f852" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0ba8d23" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3cf6b14152645699d97f" + } + } + ] + } + ] + }, + "cborHex": "9f1bfffffffffffffffda01b305af59478ad2a6abf1bbd49385b7f1305f7471d291d44e25f101bd6c3dbc2464dd0291bc940e0c390debf1041774346f85244d0ba8d234a3cf6b14152645699d97fffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 160, 27, 48, 90, 245, 148, 120, 173, 42, 106, 191, 27, 189, 73, + 56, 91, 127, 19, 5, 247, 71, 29, 41, 29, 68, 226, 95, 16, 27, 214, 195, 219, 194, 70, 77, 208, 41, 27, 201, 64, + 224, 195, 144, 222, 191, 16, 65, 119, 67, 70, 248, 82, 68, 208, 186, 141, 35, 74, 60, 246, 177, 65, 82, 100, 86, + 153, 217, 127, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1096, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14756473425846380580" + } + }, + "cborHex": "1bccc98665cd10a824", + "cborBytes": [27, 204, 201, 134, 101, 205, 16, 168, 36], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1097, + "sample": { + "_tag": "ByteArray", + "bytearray": "25fe0796" + }, + "cborHex": "4425fe0796", + "cborBytes": [68, 37, 254, 7, 150], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1098, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [] + }, + "cborHex": "d8669f1bffffffffffffffee80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1099, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6279392381129016772" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6808307600289171262" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13159282522235856875" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12200671603399064337" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "979775088051023296" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5205809658878138145" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6691870047968280117" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6188" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "58" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2946550283104212898" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "37" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89fd8669f1b5724e219da7d45c49fd8669f1b5e7bf7b0c4d4073e9f1bb69f29bbacdfe7ebffff9f1ba9517e2e6dcbfb111b0d98dc40630eedc01b483ec04d9dba9721ffd8669f1b5cde4c5a8439be359f426188ffff4158ffffd8669f1b28e43fdef940d7a280ff4137ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 216, 102, 159, 27, 87, 36, 226, 25, 218, 125, 69, + 196, 159, 216, 102, 159, 27, 94, 123, 247, 176, 196, 212, 7, 62, 159, 27, 182, 159, 41, 187, 172, 223, 231, 235, + 255, 255, 159, 27, 169, 81, 126, 46, 109, 203, 251, 17, 27, 13, 152, 220, 64, 99, 14, 237, 192, 27, 72, 62, 192, + 77, 157, 186, 151, 33, 255, 216, 102, 159, 27, 92, 222, 76, 90, 132, 57, 190, 53, 159, 66, 97, 136, 255, 255, 65, + 88, 255, 255, 216, 102, 159, 27, 40, 228, 63, 222, 249, 64, 215, 162, 128, 255, 65, 55, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1100, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8386148240879607265" + } + }, + "cborHex": "1b74619564b3655de1", + "cborBytes": [27, 116, 97, 149, 100, 179, 101, 93, 225], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1101, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6c05" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f426c0580ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 66, 108, 5, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1102, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b90006fbdddded" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7de79dd4aea128057ba242" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7237498090364394621" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8963151416329868478" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15669305308546066945" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9223358338423951337" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18324884915187454489" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12961436665918881720" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "174d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8372f79e834118c7321cb8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5306" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b01a4cea4261253" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5aec85" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15939611793233111193" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecf62e668aa237" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f47b90006fbdddded9f41b89f4b7de79dd4aea128057ba242ff801b6470c22ad2bcdc7dff9f1b7c6382b96e6194bed8669f1bd9748e289907ea019f1b7ffff38a95e58fe91bfe4f11bdafa992191bb3e045f99ad17fb8ffffbf42174d4b8372f79e834118c7321cb8425306482b01a4cea4261253435aec851bdd34e0796949689947ecf62e668aa2374196ffffff", + "cborBytes": [ + 159, 71, 185, 0, 6, 251, 221, 221, 237, 159, 65, 184, 159, 75, 125, 231, 157, 212, 174, 161, 40, 5, 123, 162, 66, + 255, 128, 27, 100, 112, 194, 42, 210, 188, 220, 125, 255, 159, 27, 124, 99, 130, 185, 110, 97, 148, 190, 216, 102, + 159, 27, 217, 116, 142, 40, 153, 7, 234, 1, 159, 27, 127, 255, 243, 138, 149, 229, 143, 233, 27, 254, 79, 17, 189, + 175, 169, 146, 25, 27, 179, 224, 69, 249, 154, 209, 127, 184, 255, 255, 191, 66, 23, 77, 75, 131, 114, 247, 158, + 131, 65, 24, 199, 50, 28, 184, 66, 83, 6, 72, 43, 1, 164, 206, 164, 38, 18, 83, 67, 90, 236, 133, 27, 221, 52, + 224, 121, 105, 73, 104, 153, 71, 236, 246, 46, 102, 138, 162, 55, 65, 150, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1103, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff9603b504064e" + }, + "cborHex": "47ff9603b504064e", + "cborBytes": [71, 255, 150, 3, 181, 4, 6, 78], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1104, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7335294988847814733" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11751174284135296119" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "31c25c65" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5808964421262338198" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14614466325176408187" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10362635065477375502" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1977836590344072984" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3988502267698106415" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2719655578654841612" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14684397012244154828" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aaebbebd00" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4e6cb85a55" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4052293158617649532" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5510852990407087372" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12907371091154672041" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8692482675363602664" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e74a246ea09e6d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9720892043043670036" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef8aee0da6ba9a1ddbe6e532" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2554331987203217468" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "add1295246" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2443993324615534789" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10116037627780112317" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15232268486617079814" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3eebd21d46ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11228484968565574738" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea846ecb424cd51d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6783c8c3ce6e4ce88066024c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8107035214460428248" + } + } + ] + }, + "cborHex": "d8669f1b65cc33eda4fa184d9fd8669f1ba3148ec04396ec779f4431c25c651b509d965d2a3968969f1bcad103b1260c587b1b8fcf79b03ec9260effbf1b1b72afe65f3a6f181b375a01ae33fc502f1b25be2856e5219b0c41251bcbc97548079ec9cc45aaebbebd00ffffff454e6cb85a559fbf1b383ca3286526917c1b4c7a7b98d69d150c1bb320319f086b99a91b78a1e6f04148e0e847e74a246ea09e6d1b86e78bcf458a08144cef8aee0da6ba9a1ddbe6e5321b2372cf68afaa583cff45add12952461b21eacefadb2288c5ffbf1b8c6362a01a519fbd1bd363e37c0c302006463eebd21d46ae1b9bd397967d2a0c5242d1f3418048ea846ecb424cd51d4c6783c8c3ce6e4ce88066024cff1b7081f9931b7f1fd8ffff", + "cborBytes": [ + 216, 102, 159, 27, 101, 204, 51, 237, 164, 250, 24, 77, 159, 216, 102, 159, 27, 163, 20, 142, 192, 67, 150, 236, + 119, 159, 68, 49, 194, 92, 101, 27, 80, 157, 150, 93, 42, 57, 104, 150, 159, 27, 202, 209, 3, 177, 38, 12, 88, + 123, 27, 143, 207, 121, 176, 62, 201, 38, 14, 255, 191, 27, 27, 114, 175, 230, 95, 58, 111, 24, 27, 55, 90, 1, + 174, 51, 252, 80, 47, 27, 37, 190, 40, 86, 229, 33, 155, 12, 65, 37, 27, 203, 201, 117, 72, 7, 158, 201, 204, 69, + 170, 235, 190, 189, 0, 255, 255, 255, 69, 78, 108, 184, 90, 85, 159, 191, 27, 56, 60, 163, 40, 101, 38, 145, 124, + 27, 76, 122, 123, 152, 214, 157, 21, 12, 27, 179, 32, 49, 159, 8, 107, 153, 169, 27, 120, 161, 230, 240, 65, 72, + 224, 232, 71, 231, 74, 36, 110, 160, 158, 109, 27, 134, 231, 139, 207, 69, 138, 8, 20, 76, 239, 138, 238, 13, 166, + 186, 154, 29, 219, 230, 229, 50, 27, 35, 114, 207, 104, 175, 170, 88, 60, 255, 69, 173, 209, 41, 82, 70, 27, 33, + 234, 206, 250, 219, 34, 136, 197, 255, 191, 27, 140, 99, 98, 160, 26, 81, 159, 189, 27, 211, 99, 227, 124, 12, 48, + 32, 6, 70, 62, 235, 210, 29, 70, 174, 27, 155, 211, 151, 150, 125, 42, 12, 82, 66, 209, 243, 65, 128, 72, 234, + 132, 110, 203, 66, 76, 213, 29, 76, 103, 131, 200, 195, 206, 110, 76, 232, 128, 102, 2, 76, 255, 27, 112, 129, + 249, 147, 27, 127, 31, 216, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1105, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5615695728861406827" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6641fe4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf07801b4deef5831d76666bbf44f6641fe408ffff", + "cborBytes": [191, 7, 128, 27, 77, 238, 245, 131, 29, 118, 102, 107, 191, 68, 246, 100, 31, 228, 8, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1106, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16902718157269624897" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "742530465000053028" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bea92849c0e99e8419fbf42c2a41b0a4dff86193bd924ffffff", + "cborBytes": [ + 216, 102, 159, 27, 234, 146, 132, 156, 14, 153, 232, 65, 159, 191, 66, 194, 164, 27, 10, 77, 255, 134, 25, 59, + 217, 36, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1107, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8117612040590286306" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6019140221462702780" + } + }, + { + "_tag": "ByteArray", + "bytearray": "77327d7c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6a8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb71bbedca6c0d268b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ab35593937592" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5010070653124696721" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13792818829940969551" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15134609654378159921" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f4a2780414cf96d4f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93f91b3a3a4a27d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb77f4a764" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4311646568498928293" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bd6a7bc8449125864e08f5de" + }, + { + "_tag": "ByteArray", + "bytearray": "2a56cd415f69361820a0bfe9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10129581351782604513" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "00f724" + } + ] + }, + "cborHex": "d8669f1b70a78d2457d15de29f1b53884824018ceabc4477327d7c9fbf41b642a6a849cb71bbedca6c0d268b470ab3559393759241f91b458758b6eb1b5a91ff1bbf69efa5f9f3504fbf1bd208ef4b47685f31495f4a2780414cf96d4f4893f91b3a3a4a27d545eb77f4a764ffd8669f1b3bd60bb5c0691aa59f4cbd6a7bc8449125864e08f5de4c2a56cd415f69361820a0bfe91b8c938092146c5ee141f3ffffff4300f724ffff", + "cborBytes": [ + 216, 102, 159, 27, 112, 167, 141, 36, 87, 209, 93, 226, 159, 27, 83, 136, 72, 36, 1, 140, 234, 188, 68, 119, 50, + 125, 124, 159, 191, 65, 182, 66, 166, 168, 73, 203, 113, 187, 237, 202, 108, 13, 38, 139, 71, 10, 179, 85, 147, + 147, 117, 146, 65, 249, 27, 69, 135, 88, 182, 235, 27, 90, 145, 255, 27, 191, 105, 239, 165, 249, 243, 80, 79, + 191, 27, 210, 8, 239, 75, 71, 104, 95, 49, 73, 95, 74, 39, 128, 65, 76, 249, 109, 79, 72, 147, 249, 27, 58, 58, + 74, 39, 213, 69, 235, 119, 244, 167, 100, 255, 216, 102, 159, 27, 59, 214, 11, 181, 192, 105, 26, 165, 159, 76, + 189, 106, 123, 200, 68, 145, 37, 134, 78, 8, 245, 222, 76, 42, 86, 205, 65, 95, 105, 54, 24, 32, 160, 191, 233, + 27, 140, 147, 128, 146, 20, 108, 94, 225, 65, 243, 255, 255, 255, 67, 0, 247, 36, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1108, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4353310717115345442" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14130623864015717106" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11184131281384354598" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0e50c4acd759" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14617269409673980380" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9089db99" + }, + { + "_tag": "ByteArray", + "bytearray": "590e1eb2a292c4bb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5729813915642511582" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df5d574adc80d6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8856648702356634119" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1064389721192344134" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4975810268813060376" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf95" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2102350961779171198" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "675eed50502a8fe68d816f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c15f6d2979e550ca43b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3dbc9fc783cc06d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3797452571717354760" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11377493935525507706" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17569803339937284555" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c2b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11025429651585905590" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "faa6fd4a94f320db" + }, + { + "_tag": "ByteArray", + "bytearray": "58ce90e3fb34b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18103791586489504132" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b3c6a11084a8faa229f9f9f1bc41a0f897d5082f21b9b360424f43fb326460e50c4acd759ffd8669f1bcadaf9151dcd29dc9f449089db9948590e1eb2a292c4bb1b4f846365fef640de47df5d574adc80d6ffff1b7ae92311fc643a07d8669f1b0ec578cfe23f2a469f1b450da1139657e91842bf951b1d2d0d0f9e0c5f7effffbf4b675eed50502a8fe68d816f4a2c15f6d2979e550ca43b48f3dbc9fc783cc06d1b34b342fe849b4508ffffd87b9fd9050280120ed8669f1b9de4fa742d28b27a9f1bf3d47b0c826f01cb42c2b81b990231da56d633b6ffffd87b9f48faa6fd4a94f320db4758ce90e3fb34b71bfb3d9687a8699184ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 60, 106, 17, 8, 74, 143, 170, 34, 159, 159, 159, 27, 196, 26, 15, 137, 125, 80, 130, 242, 27, + 155, 54, 4, 36, 244, 63, 179, 38, 70, 14, 80, 196, 172, 215, 89, 255, 216, 102, 159, 27, 202, 218, 249, 21, 29, + 205, 41, 220, 159, 68, 144, 137, 219, 153, 72, 89, 14, 30, 178, 162, 146, 196, 187, 27, 79, 132, 99, 101, 254, + 246, 64, 222, 71, 223, 93, 87, 74, 220, 128, 214, 255, 255, 27, 122, 233, 35, 17, 252, 100, 58, 7, 216, 102, 159, + 27, 14, 197, 120, 207, 226, 63, 42, 70, 159, 27, 69, 13, 161, 19, 150, 87, 233, 24, 66, 191, 149, 27, 29, 45, 13, + 15, 158, 12, 95, 126, 255, 255, 191, 75, 103, 94, 237, 80, 80, 42, 143, 230, 141, 129, 111, 74, 44, 21, 246, 210, + 151, 158, 85, 12, 164, 59, 72, 243, 219, 201, 252, 120, 60, 192, 109, 27, 52, 179, 66, 254, 132, 155, 69, 8, 255, + 255, 216, 123, 159, 217, 5, 2, 128, 18, 14, 216, 102, 159, 27, 157, 228, 250, 116, 45, 40, 178, 122, 159, 27, 243, + 212, 123, 12, 130, 111, 1, 203, 66, 194, 184, 27, 153, 2, 49, 218, 86, 214, 51, 182, 255, 255, 216, 123, 159, 72, + 250, 166, 253, 74, 148, 243, 32, 219, 71, 88, 206, 144, 227, 251, 52, 183, 27, 251, 61, 150, 135, 168, 105, 145, + 132, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1109, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12453827100434675130" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d477f9" + } + ] + }, + "cborHex": "d8669f1bacd4e1c3bf8ab5ba9f43d477f9ffff", + "cborBytes": [216, 102, 159, 27, 172, 212, 225, 195, 191, 138, 181, 186, 159, 67, 212, 119, 249, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1110, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "274115432066953812" + } + }, + "cborHex": "1b03cdda887bcdb254", + "cborBytes": [27, 3, 205, 218, 136, 123, 205, 178, 84], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1111, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4814343691416018977" + }, + "fields": [] + }, + "cborHex": "d8669f1b42cffc14717ea02180ff", + "cborBytes": [216, 102, 159, 27, 66, 207, 252, 20, 113, 126, 160, 33, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1112, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13559021659674575589" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fb37f27e42282868a67d" + }, + { + "_tag": "ByteArray", + "bytearray": "ee701ab1a841e9db25b5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2662407777472683796" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "670901773174006528" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bbc2b525c56bb02e59f9f9f4afb37f27e42282868a67d4aee701ab1a841e9db25b51b24f2c5c47f7f1f141b094f859bad376300ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 188, 43, 82, 92, 86, 187, 2, 229, 159, 159, 159, 74, 251, 55, 242, 126, 66, 40, 40, 104, 166, + 125, 74, 238, 112, 26, 177, 168, 65, 233, 219, 37, 181, 27, 36, 242, 197, 196, 127, 127, 31, 20, 27, 9, 79, 133, + 155, 173, 55, 99, 0, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1113, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9109076885070097517" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6500617584691820578" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11753013941754968787" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7084696184330961281" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12130639502880482742" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7408503290510936653" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18359242235371575465" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12052185732318602525" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8031695660587510406" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15706381468849177973" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e469babe6e100fa283f02" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2408215811755278373" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8938291133929992175" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2949694628002518946" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "968221fcc9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4694175406148067711" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9782a54126f63dfd5d21e17b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7608394697748345066" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb3d6dfc532c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15188120061681536109" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15789739453987548625" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "39212581319598881" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3707969344525701461" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15221785770162972438" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10517834653243263638" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2810874986278152195" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12940199146175581689" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1355644347144140592" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18092055179676602423" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13649472257103732891" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7506987017798187127" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5958698596409667024" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7ff76dd888791c10b63577" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14567152507782464771" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5690202659285410420" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18230965598668786949" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3597" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10033949472218230834" + } + }, + { + "_tag": "ByteArray", + "bytearray": "703ea08b5448c93d0d936ab3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "94b566a44a8b2ca89c0c26" + }, + { + "_tag": "ByteArray", + "bytearray": "f9e0b1218dffb0e8f3a50f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16446394600366595614" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11511783425093524293" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1113772561934722510" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73517e2d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4409296034683709001" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8368561314017452219" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e351f0beba213a006d300" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13785751500828760309" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8855840266964555047" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10578642960118980776" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ea30fb9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f72a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6605289306587254090" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b7e69f12a3e532c6d9fbf1b5a36d5406436b8221ba31b17e8ee84bad31b6251e5a4b09cc1811ba858b05b638325b61b66d04a7da4378a4d1bfec9218aa8abd8a91ba741f7117de1a51d1b6f7650a6495d6a861bd9f846badd8885754b8e469babe6e100fa283f02ffbf1b216bb385822700251b7c0b306de0ebafef1b28ef6ba2d1f7d7a245968221fcc91b41250fa93cd4a17f4c9782a54126f63dfd5d21e17b1b699672aaa64170ea46fb3d6dfc532c1bd2c70ab9da830c6d1bdb206c6032e5edd1ff9fbf1b008b4fa28c47e321413c1b33755a79227e11551bd33ea5826da8e7161b91f6dae428dbca961b27023be84923e8031bb394d290369bcdf91b12d03759e94af7301bfb13e4548163d0371bbd6caab32837a09bffd8669f1b682e2ceb415478779f1b52b18ccd8a9dedd04b7ff76dd888791c10b635771bca28ec06975085031b4ef7a92baeb0a274ffff9f1bfd01669ec5050d054235971b8b3fbfe201c930324c703ea08b5448c93d0d936ab3ff9f4b94b566a44a8b2ca89c0c264bf9e0b1218dffb0e8f3a50f1be43d54c096c0de1e1b9fc2120877eddb45ffbf1b0f74ea3e7ab225ce4473517e2d1b3d30f761d0dc66491b74231a2d331620bb4b1e351f0beba213a006d3001bbf50d3f330b4d8f5ffff9fd8669f1b7ae643cd7405d52780ffbf1b92cee3b9639420a8444ea30fb942f72a1b5baab3a0c5d1cd4affffffff", + "cborBytes": [ + 216, 102, 159, 27, 126, 105, 241, 42, 62, 83, 44, 109, 159, 191, 27, 90, 54, 213, 64, 100, 54, 184, 34, 27, 163, + 27, 23, 232, 238, 132, 186, 211, 27, 98, 81, 229, 164, 176, 156, 193, 129, 27, 168, 88, 176, 91, 99, 131, 37, 182, + 27, 102, 208, 74, 125, 164, 55, 138, 77, 27, 254, 201, 33, 138, 168, 171, 216, 169, 27, 167, 65, 247, 17, 125, + 225, 165, 29, 27, 111, 118, 80, 166, 73, 93, 106, 134, 27, 217, 248, 70, 186, 221, 136, 133, 117, 75, 142, 70, + 155, 171, 230, 225, 0, 250, 40, 63, 2, 255, 191, 27, 33, 107, 179, 133, 130, 39, 0, 37, 27, 124, 11, 48, 109, 224, + 235, 175, 239, 27, 40, 239, 107, 162, 209, 247, 215, 162, 69, 150, 130, 33, 252, 201, 27, 65, 37, 15, 169, 60, + 212, 161, 127, 76, 151, 130, 165, 65, 38, 246, 61, 253, 93, 33, 225, 123, 27, 105, 150, 114, 170, 166, 65, 112, + 234, 70, 251, 61, 109, 252, 83, 44, 27, 210, 199, 10, 185, 218, 131, 12, 109, 27, 219, 32, 108, 96, 50, 229, 237, + 209, 255, 159, 191, 27, 0, 139, 79, 162, 140, 71, 227, 33, 65, 60, 27, 51, 117, 90, 121, 34, 126, 17, 85, 27, 211, + 62, 165, 130, 109, 168, 231, 22, 27, 145, 246, 218, 228, 40, 219, 202, 150, 27, 39, 2, 59, 232, 73, 35, 232, 3, + 27, 179, 148, 210, 144, 54, 155, 205, 249, 27, 18, 208, 55, 89, 233, 74, 247, 48, 27, 251, 19, 228, 84, 129, 99, + 208, 55, 27, 189, 108, 170, 179, 40, 55, 160, 155, 255, 216, 102, 159, 27, 104, 46, 44, 235, 65, 84, 120, 119, + 159, 27, 82, 177, 140, 205, 138, 157, 237, 208, 75, 127, 247, 109, 216, 136, 121, 28, 16, 182, 53, 119, 27, 202, + 40, 236, 6, 151, 80, 133, 3, 27, 78, 247, 169, 43, 174, 176, 162, 116, 255, 255, 159, 27, 253, 1, 102, 158, 197, + 5, 13, 5, 66, 53, 151, 27, 139, 63, 191, 226, 1, 201, 48, 50, 76, 112, 62, 160, 139, 84, 72, 201, 61, 13, 147, + 106, 179, 255, 159, 75, 148, 181, 102, 164, 74, 139, 44, 168, 156, 12, 38, 75, 249, 224, 177, 33, 141, 255, 176, + 232, 243, 165, 15, 27, 228, 61, 84, 192, 150, 192, 222, 30, 27, 159, 194, 18, 8, 119, 237, 219, 69, 255, 191, 27, + 15, 116, 234, 62, 122, 178, 37, 206, 68, 115, 81, 126, 45, 27, 61, 48, 247, 97, 208, 220, 102, 73, 27, 116, 35, + 26, 45, 51, 22, 32, 187, 75, 30, 53, 31, 11, 235, 162, 19, 160, 6, 211, 0, 27, 191, 80, 211, 243, 48, 180, 216, + 245, 255, 255, 159, 216, 102, 159, 27, 122, 230, 67, 205, 116, 5, 213, 39, 128, 255, 191, 27, 146, 206, 227, 185, + 99, 148, 32, 168, 68, 78, 163, 15, 185, 66, 247, 42, 27, 91, 170, 179, 160, 197, 209, 205, 74, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1114, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e591cf1328fee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90da493f3f58be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c840067f35286" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9985078853949409772" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e42dba8c27e7bdba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2898313072639510900" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f58da180e5dc75" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b4bb234a6ed7cababc09113" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a89dd156a77b553737e9" + }, + { + "_tag": "ByteArray", + "bytearray": "b8e3be" + }, + { + "_tag": "ByteArray", + "bytearray": "8413" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6315679801323477176" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3003263587289184880" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f0d621f0a7c897e5dd8226" + }, + { + "_tag": "ByteArray", + "bytearray": "316c545731e44e2b0ce68259" + }, + { + "_tag": "ByteArray", + "bytearray": "ed790427c65be1bbfd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3059982339676515741" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c4347b2cb8054113824" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "36dff46fb4" + } + ] + } + ] + }, + "cborHex": "9f9fbf471e591cf1328fee4790da493f3f58be477c840067f352861b8a9220507feb49ec48e42dba8c27e7bdba1b2838e062368c897447f58da180e5dc754c0b4bb234a6ed7cababc09113ff9f4aa89dd156a77b553737e943b8e3be428413ff1b57a5cd5140fed8b8d8669f1b29adbc52173cba709f4bf0d621f0a7c897e5dd82264c316c545731e44e2b0ce6825949ed790427c65be1bbfd1b2a773db9b7632d9d4a2c4347b2cb8054113824ffff4536dff46fb4ffff", + "cborBytes": [ + 159, 159, 191, 71, 30, 89, 28, 241, 50, 143, 238, 71, 144, 218, 73, 63, 63, 88, 190, 71, 124, 132, 0, 103, 243, + 82, 134, 27, 138, 146, 32, 80, 127, 235, 73, 236, 72, 228, 45, 186, 140, 39, 231, 189, 186, 27, 40, 56, 224, 98, + 54, 140, 137, 116, 71, 245, 141, 161, 128, 229, 220, 117, 76, 11, 75, 178, 52, 166, 237, 124, 171, 171, 192, 145, + 19, 255, 159, 74, 168, 157, 209, 86, 167, 123, 85, 55, 55, 233, 67, 184, 227, 190, 66, 132, 19, 255, 27, 87, 165, + 205, 81, 64, 254, 216, 184, 216, 102, 159, 27, 41, 173, 188, 82, 23, 60, 186, 112, 159, 75, 240, 214, 33, 240, + 167, 200, 151, 229, 221, 130, 38, 76, 49, 108, 84, 87, 49, 228, 78, 43, 12, 230, 130, 89, 73, 237, 121, 4, 39, + 198, 91, 225, 187, 253, 27, 42, 119, 61, 185, 183, 99, 45, 157, 74, 44, 67, 71, 178, 203, 128, 84, 17, 56, 36, + 255, 255, 69, 54, 223, 244, 111, 180, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1115, + "sample": { + "_tag": "ByteArray", + "bytearray": "fda6adc971d700d1" + }, + "cborHex": "48fda6adc971d700d1", + "cborBytes": [72, 253, 166, 173, 201, 113, 215, 0, 209], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1116, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5247440321253403142" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14811078316735951984" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "622edc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13752020259552586323" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "981ea13f838177" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14786533148106327891" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba2be53f9425234d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "283198471438986351" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddb6180c0040" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49d929927690" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c10920631" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "493170610560368682" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "408284713311386842" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3880494929384804366" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9063441401157497742" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17914299187589987867" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "650326110af1bf6a" + } + } + ] + } + ] + }, + "cborHex": "9f1b48d2a72b885eea069f1bcd8b8541b1897470bf43622edc1bbed8fd90929b6a5347981ea13f8381771bcd34518e486a875348ba2be53f9425234d1b03ee1f82630dec6f46ddb6180c00404649d929927690ffbf452c109206311b06d8180eb01d002aff9f1b05aa84c89825bcda1b35da49941aaf900e1b7dc7cfef268fb38effffbf1bf89c6032745ebe1b48650326110af1bf6affff", + "cborBytes": [ + 159, 27, 72, 210, 167, 43, 136, 94, 234, 6, 159, 27, 205, 139, 133, 65, 177, 137, 116, 112, 191, 67, 98, 46, 220, + 27, 190, 216, 253, 144, 146, 155, 106, 83, 71, 152, 30, 161, 63, 131, 129, 119, 27, 205, 52, 81, 142, 72, 106, + 135, 83, 72, 186, 43, 229, 63, 148, 37, 35, 77, 27, 3, 238, 31, 130, 99, 13, 236, 111, 70, 221, 182, 24, 12, 0, + 64, 70, 73, 217, 41, 146, 118, 144, 255, 191, 69, 44, 16, 146, 6, 49, 27, 6, 216, 24, 14, 176, 29, 0, 42, 255, + 159, 27, 5, 170, 132, 200, 152, 37, 188, 218, 27, 53, 218, 73, 148, 26, 175, 144, 14, 27, 125, 199, 207, 239, 38, + 143, 179, 142, 255, 255, 191, 27, 248, 156, 96, 50, 116, 94, 190, 27, 72, 101, 3, 38, 17, 10, 241, 191, 106, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1117, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b70" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d4d6355" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "379795418886979042" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44dab3409108" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10235747937647804581" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c0ba12491d3d8ac6af3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b321611cb03811e94e1519c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b730abb1bac7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2cb7a3a9e44" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef3fb1d8cda4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f198ef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b791d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2960675892028015096" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4971156625254581981" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b1ecef6fc99e1b2694a092" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c81ef3ed564f03d13f5ed1f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3076306807244812329" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e98b54174d52c6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15202396769577631755" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "894ea5f8f4cc1390d500d4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14719990447779167515" + } + } + ] + } + } + ] + }, + "cborHex": "bf424b70bf441d4d63551b05454debd6143de24644dab34091081b8e0cae8499ef40a54a9c0ba12491d3d8ac6af34cb321611cb03811e94e1519c146b730abb1bac7417246c2cb7a3a9e4446ef3fb1d8cda443f198ef4167ff437b791d9f1b29166f09976481f81b44fd189cc32106dd4bb1ecef6fc99e1b2694a092ff4cc81ef3ed564f03d13f5ed1f41b2ab13cbe01f1702947e98b54174d52c6d8669f1bd2f9c350f138800b9f4b894ea5f8f4cc1390d500d41bcc47e95289053d1bffffff", + "cborBytes": [ + 191, 66, 75, 112, 191, 68, 29, 77, 99, 85, 27, 5, 69, 77, 235, 214, 20, 61, 226, 70, 68, 218, 179, 64, 145, 8, 27, + 142, 12, 174, 132, 153, 239, 64, 165, 74, 156, 11, 161, 36, 145, 211, 216, 172, 106, 243, 76, 179, 33, 97, 28, + 176, 56, 17, 233, 78, 21, 25, 193, 70, 183, 48, 171, 177, 186, 199, 65, 114, 70, 194, 203, 122, 58, 158, 68, 70, + 239, 63, 177, 216, 205, 164, 67, 241, 152, 239, 65, 103, 255, 67, 123, 121, 29, 159, 27, 41, 22, 111, 9, 151, 100, + 129, 248, 27, 68, 253, 24, 156, 195, 33, 6, 221, 75, 177, 236, 239, 111, 201, 158, 27, 38, 148, 160, 146, 255, 76, + 200, 30, 243, 237, 86, 79, 3, 209, 63, 94, 209, 244, 27, 42, 177, 60, 190, 1, 241, 112, 41, 71, 233, 139, 84, 23, + 77, 82, 198, 216, 102, 159, 27, 210, 249, 195, 80, 241, 56, 128, 11, 159, 75, 137, 78, 165, 248, 244, 204, 19, + 144, 213, 0, 212, 27, 204, 71, 233, 82, 137, 5, 61, 27, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1118, + "sample": { + "_tag": "ByteArray", + "bytearray": "6faeb981beea01f15d" + }, + "cborHex": "496faeb981beea01f15d", + "cborBytes": [73, 111, 174, 185, 129, 190, 234, 1, 241, 93], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1119, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12812510165283585103" + }, + "fields": [] + }, + "cborHex": "d8669f1bb1cf2e1c9acf3c4f80ff", + "cborBytes": [216, 102, 159, 27, 177, 207, 46, 28, 154, 207, 60, 79, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1120, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10390937953179079434" + } + }, + "cborHex": "1b90340703ce5d130a", + "cborBytes": [27, 144, 52, 7, 3, 206, 93, 19, 10], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1121, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3023182838872446891" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0503fa5704" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b29f480c6420c97ab9f450503fa5704ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 41, 244, 128, 198, 66, 12, 151, 171, 159, 69, 5, 3, 250, 87, 4, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1122, + "sample": { + "_tag": "ByteArray", + "bytearray": "b7" + }, + "cborHex": "41b7", + "cborBytes": [65, 183], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1123, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03" + } + ] + }, + "cborHex": "9f4103ff", + "cborBytes": [159, 65, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1124, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18320097638555950505" + } + }, + "cborHex": "1bfe3e0fbcfc999da9", + "cborBytes": [27, 254, 62, 15, 188, 252, 153, 157, 169], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1125, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2574879428116045109" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11980222593313654951" + } + } + ] + }, + "cborHex": "d8669f1b23bbcf3294515d359f1ba6424cf98491c8a7ffff", + "cborBytes": [ + 216, 102, 159, 27, 35, 187, 207, 50, 148, 81, 93, 53, 159, 27, 166, 66, 76, 249, 132, 145, 200, 167, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1126, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbe21e40c643" + } + } + ] + }, + "cborHex": "bf0346cbe21e40c643ff", + "cborBytes": [191, 3, 70, 203, 226, 30, 64, 198, 67, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1127, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10746605890145597239" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f80d8669f1b95239d1e7f3fb73780ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 128, 216, 102, 159, 27, 149, 35, 157, 30, 127, 63, + 183, 55, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1128, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16615023455517601379" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c409a54d4063" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17114983709197672867" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3471045839518993701" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19360725810f8c2ef8f86485" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4165330657028807885" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2f7713b2d710eaf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4353957169780118898" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76253f1909" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8764038435493346486" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83ca73" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11984699486249459630" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48e7699b2bcaa4c025" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12793738834251544139" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b826" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13165246825554286447" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "71196c379d88" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11125298536281362603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d0e7b2b7" + }, + { + "_tag": "ByteArray", + "bytearray": "86cf8d923cdbdb7f5a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14788487776638876721" + } + }, + { + "_tag": "ByteArray", + "bytearray": "daa963" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4575948361319257181" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7748075173238251630" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f71a5b2a26b1e682020" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca3adf1b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3da40b2434" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6011945268940485346" + } + } + } + ] + } + ] + }, + "cborHex": "d905019fbf1be6946bcd78e8ee6346c409a54d4063ffd8669f1bed84a301235321a39fbf1b302ba1ccf7a08d254c19360725810f8c2ef8f864851b39ce3a29e83f1ccd48c2f7713b2d710eaf1b3c6c5cfa480255724576253f19091b79a01e85f1737cb64383ca731ba65234af61b49fae4948e7699b2bcaa4c0251bb18c7daf84aef64b42b826ffd8669f1bb6b45a3c4180976f80ff4671196c379d88d8669f1b9a6500130b3950ab9f44d0e7b2b74986cf8d923cdbdb7f5a1bcd3b4347b3c43c3143daa9631b3f8108ca4af7145dffffffff1b6b86b151a9e3a06ebf4a2f71a5b2a26b1e68202044ca3adf1b453da40b24341b536eb85e9449b2e2ffff", + "cborBytes": [ + 217, 5, 1, 159, 191, 27, 230, 148, 107, 205, 120, 232, 238, 99, 70, 196, 9, 165, 77, 64, 99, 255, 216, 102, 159, + 27, 237, 132, 163, 1, 35, 83, 33, 163, 159, 191, 27, 48, 43, 161, 204, 247, 160, 141, 37, 76, 25, 54, 7, 37, 129, + 15, 140, 46, 248, 248, 100, 133, 27, 57, 206, 58, 41, 232, 63, 28, 205, 72, 194, 247, 113, 59, 45, 113, 14, 175, + 27, 60, 108, 92, 250, 72, 2, 85, 114, 69, 118, 37, 63, 25, 9, 27, 121, 160, 30, 133, 241, 115, 124, 182, 67, 131, + 202, 115, 27, 166, 82, 52, 175, 97, 180, 159, 174, 73, 72, 231, 105, 155, 43, 202, 164, 192, 37, 27, 177, 140, + 125, 175, 132, 174, 246, 75, 66, 184, 38, 255, 216, 102, 159, 27, 182, 180, 90, 60, 65, 128, 151, 111, 128, 255, + 70, 113, 25, 108, 55, 157, 136, 216, 102, 159, 27, 154, 101, 0, 19, 11, 57, 80, 171, 159, 68, 208, 231, 178, 183, + 73, 134, 207, 141, 146, 60, 219, 219, 127, 90, 27, 205, 59, 67, 71, 179, 196, 60, 49, 67, 218, 169, 99, 27, 63, + 129, 8, 202, 74, 247, 20, 93, 255, 255, 255, 255, 27, 107, 134, 177, 81, 169, 227, 160, 110, 191, 74, 47, 113, + 165, 178, 162, 107, 30, 104, 32, 32, 68, 202, 58, 223, 27, 69, 61, 164, 11, 36, 52, 27, 83, 110, 184, 94, 148, 73, + 178, 226, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1129, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2182240029076195350" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be993b0989d009f7523c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12175852203081746512" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "324051715a9b77dae8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5280485879445801860" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "673b6ecfec29840c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1823f581644235" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fb92a9238" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17619889447999412499" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3ed3d47" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7851421427359651522" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9b563" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8836063602656987944" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17246564217947791137" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f9fbf1b1e48dfbe93b988164abe993b0989d009f7523cff1ba8f951117a584850bf49324051715a9b77dae81b49480dee1dd54b8448673b6ecfec29840c471823f581644235456fb92a92381bf4866c1949a8991344a3ed3d471b6cf5da3087a996c243a9b5631b7aa00107f920cb28ffff1bef581ac7aebd9f21ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 159, 191, 27, 30, 72, 223, 190, 147, 185, 136, 22, + 74, 190, 153, 59, 9, 137, 208, 9, 247, 82, 60, 255, 27, 168, 249, 81, 17, 122, 88, 72, 80, 191, 73, 50, 64, 81, + 113, 90, 155, 119, 218, 232, 27, 73, 72, 13, 238, 29, 213, 75, 132, 72, 103, 59, 110, 207, 236, 41, 132, 12, 71, + 24, 35, 245, 129, 100, 66, 53, 69, 111, 185, 42, 146, 56, 27, 244, 134, 108, 25, 73, 168, 153, 19, 68, 163, 237, + 61, 71, 27, 108, 245, 218, 48, 135, 169, 150, 194, 67, 169, 181, 99, 27, 122, 160, 1, 7, 249, 32, 203, 40, 255, + 255, 27, 239, 88, 26, 199, 174, 189, 159, 33, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1130, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5440263957620851246" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "935186749039675065" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7156993166219313971" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15625997996349542670" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16881346194539430218" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10416302799436996665" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c114bcc" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13512577223076059568" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8725963365121741332" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1415975201256261227" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4b7fb33ee65a022ed8669f1b0cfa7364b72986b99f1b6352bf5d846683331bd8dab2633961510e1bea4696ec37ea414a1b908e243549596039441c114bccffff1bbb865164457b99b0bf1b7918d972cd2752141b13a68df181a4466bffff", + "cborBytes": [ + 191, 27, 75, 127, 179, 62, 230, 90, 2, 46, 216, 102, 159, 27, 12, 250, 115, 100, 183, 41, 134, 185, 159, 27, 99, + 82, 191, 93, 132, 102, 131, 51, 27, 216, 218, 178, 99, 57, 97, 81, 14, 27, 234, 70, 150, 236, 55, 234, 65, 74, 27, + 144, 142, 36, 53, 73, 89, 96, 57, 68, 28, 17, 75, 204, 255, 255, 27, 187, 134, 81, 100, 69, 123, 153, 176, 191, + 27, 121, 24, 217, 114, 205, 39, 82, 20, 27, 19, 166, 141, 241, 129, 164, 70, 107, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1131, + "sample": { + "_tag": "ByteArray", + "bytearray": "91" + }, + "cborHex": "4191", + "cborBytes": [65, 145], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1132, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16831052906586913405" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bde91b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5c77bb220091433b0c987" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84b89e40" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e2a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd8c50a33c268e61" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6118940692842180619" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2a153c82aaded11c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd12c6518c90f28c0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1214d92db93645" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13261212971682786916" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8d9736be35eced7cfa" + }, + { + "_tag": "ByteArray", + "bytearray": "d0dc3e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1936546692987191744" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b60065553f54cf2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17097398494815966036" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7066" + }, + { + "_tag": "ByteArray", + "bytearray": "aea1c021caf3ca" + } + ] + } + ] + }, + "cborHex": "9fd8669f1be993e9719ceb3a7d9fbf446bde91b64be5c77bb220091433b0c9874484b89e40427e2a48bd8c50a33c268e611b54ead823fe8a700b41d949e2a153c82aaded11c349dd12c6518c90f28c0e471214d92db93645ffd8669f1bb8094aefd3f46e649f498d9736be35eced7cfa43d0dc3e1b1adffef4fe7581c0ffffbf487b60065553f54cf21bed4629585acdd354ff42706647aea1c021caf3caffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 233, 147, 233, 113, 156, 235, 58, 125, 159, 191, 68, 107, 222, 145, 182, 75, 229, 199, + 123, 178, 32, 9, 20, 51, 176, 201, 135, 68, 132, 184, 158, 64, 66, 126, 42, 72, 189, 140, 80, 163, 60, 38, 142, + 97, 27, 84, 234, 216, 35, 254, 138, 112, 11, 65, 217, 73, 226, 161, 83, 200, 42, 173, 237, 17, 195, 73, 221, 18, + 198, 81, 140, 144, 242, 140, 14, 71, 18, 20, 217, 45, 185, 54, 69, 255, 216, 102, 159, 27, 184, 9, 74, 239, 211, + 244, 110, 100, 159, 73, 141, 151, 54, 190, 53, 236, 237, 124, 250, 67, 208, 220, 62, 27, 26, 223, 254, 244, 254, + 117, 129, 192, 255, 255, 191, 72, 123, 96, 6, 85, 83, 245, 76, 242, 27, 237, 70, 41, 88, 90, 205, 211, 84, 255, + 66, 112, 102, 71, 174, 161, 192, 33, 202, 243, 202, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1133, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15038816543857576819" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16672960358972652146" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9094497307097280598" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7735416a506553cb0ea558" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60b40f3b66930a31f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14255654047422075389" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfcedf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "753911536902021368" + } + } + } + ] + } + ] + }, + "cborHex": "9f1bd0b49bf7b2e60b73a01be762411bfebbfa72bf1b7e36251db847b0564b7735416a506553cb0ea5584960b40f3b66930a31f51bc5d641d39173d1fd43dfcedf1b0a766e8c651d20f8ffff", + "cborBytes": [ + 159, 27, 208, 180, 155, 247, 178, 230, 11, 115, 160, 27, 231, 98, 65, 27, 254, 187, 250, 114, 191, 27, 126, 54, + 37, 29, 184, 71, 176, 86, 75, 119, 53, 65, 106, 80, 101, 83, 203, 14, 165, 88, 73, 96, 180, 15, 59, 102, 147, 10, + 49, 245, 27, 197, 214, 65, 211, 145, 115, 209, 253, 67, 223, 206, 223, 27, 10, 118, 110, 140, 101, 29, 32, 248, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1134, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9808043945535841520" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10569376411449081530" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b6" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4168986564437266874" + } + } + ] + }, + "cborHex": "d8669f1b881d2c00d315a4f09f9fd8669f1b92adf7d8e5d0beba9f41b6ffffff1b39db37312ea8d1baffff", + "cborBytes": [ + 216, 102, 159, 27, 136, 29, 44, 0, 211, 21, 164, 240, 159, 159, 216, 102, 159, 27, 146, 173, 247, 216, 229, 208, + 190, 186, 159, 65, 182, 255, 255, 255, 27, 57, 219, 55, 49, 46, 168, 209, 186, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1135, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4360661527969526359" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53eec3" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12783077998285211483" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f3ef8994650136" + }, + { + "_tag": "ByteArray", + "bytearray": "428a90030b4a504bfe95" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "25b51e4f31241c64" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10584300478922846277" + } + }, + { + "_tag": "ByteArray", + "bytearray": "89c25e2257e7d3ed8968d522" + }, + { + "_tag": "ByteArray", + "bytearray": "fe2572cd70cebfdfd1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12037794765098961464" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b475eb690cd11c7a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9785566454502522611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12326328288954961096" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4353140ce51b18b97edcc6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3205326337639008325" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52bde2661edc2536ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "943493295544684223" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fa0bf1b3c842e8e5055f2574353eec3ffffd8669f1bb1669db637e6c75b9f47f3ef89946501364a428a90030b4a504bfe95ffff9f9f4825b51e4f31241c641b92e2fd35223170454c89c25e2257e7d3ed8968d52249fe2572cd70cebfdfd11ba70ed68f54c7ca38ff48b475eb690cd11c7abf1b87cd50d81e99fef31bab0fea4568024cc84b4353140ce51b18b97edcc61b2c7b9b52502d48454952bde2661edc2536ff1b0d17f62748e74ebfffffff", + "cborBytes": [ + 159, 159, 160, 191, 27, 60, 132, 46, 142, 80, 85, 242, 87, 67, 83, 238, 195, 255, 255, 216, 102, 159, 27, 177, + 102, 157, 182, 55, 230, 199, 91, 159, 71, 243, 239, 137, 148, 101, 1, 54, 74, 66, 138, 144, 3, 11, 74, 80, 75, + 254, 149, 255, 255, 159, 159, 72, 37, 181, 30, 79, 49, 36, 28, 100, 27, 146, 226, 253, 53, 34, 49, 112, 69, 76, + 137, 194, 94, 34, 87, 231, 211, 237, 137, 104, 213, 34, 73, 254, 37, 114, 205, 112, 206, 191, 223, 209, 27, 167, + 14, 214, 143, 84, 199, 202, 56, 255, 72, 180, 117, 235, 105, 12, 209, 28, 122, 191, 27, 135, 205, 80, 216, 30, + 153, 254, 243, 27, 171, 15, 234, 69, 104, 2, 76, 200, 75, 67, 83, 20, 12, 229, 27, 24, 185, 126, 220, 198, 27, 44, + 123, 155, 82, 80, 45, 72, 69, 73, 82, 189, 226, 102, 30, 220, 37, 54, 255, 27, 13, 23, 246, 39, 72, 231, 78, 191, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1136, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4402506119850695450" + } + }, + "cborHex": "1b3d18d7fd932f1b1a", + "cborBytes": [27, 61, 24, 215, 253, 147, 47, 27, 26], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1137, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95e3381666dd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6291352721933492984" + } + } + ] + } + } + ] + }, + "cborHex": "bf418c094695e3381666dd9f1b574f5ff7b38862f8ffff", + "cborBytes": [ + 191, 65, 140, 9, 70, 149, 227, 56, 22, 102, 221, 159, 27, 87, 79, 95, 247, 179, 136, 98, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1138, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6379175217020332681" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "ByteArray", + "bytearray": "326eb1cf89cc4dbae1" + } + ] + }, + "cborHex": "d8669f1b5887620fc278ea899f1bfffffffffffffffa49326eb1cf89cc4dbae1ffff", + "cborBytes": [ + 216, 102, 159, 27, 88, 135, 98, 15, 194, 120, 234, 137, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 73, 50, + 110, 177, 207, 137, 204, 77, 186, 225, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1139, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17353983647272282462" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "50af509ba76effb3985dfa61" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "370304940605fc53389c0207" + }, + { + "_tag": "ByteArray", + "bytearray": "d3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14578006691599234460" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "156048884027482939" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7389316550365256612" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e8" + }, + { + "_tag": "ByteArray", + "bytearray": "eab5c046885652" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1550937444986266608" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30cfba5076786855" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7570691123348407687" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9584ba4a57" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17486786007824753118" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4d6dbe71563d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7589ed6f7891df6615" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3b3e6522309" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d76" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f11f3b8bf7328db6d513d0ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13218244967734919146" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dccf3e7eb80507" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6562566237660288800" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5314155129545402004" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7308797877003674561" + } + } + ] + } + ] + }, + "cborHex": "d905079fd8669f1bf0d5bc2e8d9a295e9f140c9f4c50af509ba76effb3985dfa61ff4c370304940605fc53389c020741d3ffff9fd8669f1bca4f7bd9320a359c80ff9f1b022a65a21c0de33b1b668c2040956f9ba441e847eab5c046885652ff9f1b15860963954223f0417affbf4830cfba50767868551b69107f7727628587459584ba4a571bf2ad8b39a3aa61de47a4d6dbe71563d1497589ed6f7891df661546c3b3e6522309423d764cf11f3b8bf7328db6d513d0ed1bb770a3c3cfef3feaff47dccf3e7eb80507ffd8669f1b5b12eb3922b697209f1b49bfabef49dfa6941b656e10f209eee3c1ffffff", + "cborBytes": [ + 217, 5, 7, 159, 216, 102, 159, 27, 240, 213, 188, 46, 141, 154, 41, 94, 159, 20, 12, 159, 76, 80, 175, 80, 155, + 167, 110, 255, 179, 152, 93, 250, 97, 255, 76, 55, 3, 4, 148, 6, 5, 252, 83, 56, 156, 2, 7, 65, 211, 255, 255, + 159, 216, 102, 159, 27, 202, 79, 123, 217, 50, 10, 53, 156, 128, 255, 159, 27, 2, 42, 101, 162, 28, 13, 227, 59, + 27, 102, 140, 32, 64, 149, 111, 155, 164, 65, 232, 71, 234, 181, 192, 70, 136, 86, 82, 255, 159, 27, 21, 134, 9, + 99, 149, 66, 35, 240, 65, 122, 255, 191, 72, 48, 207, 186, 80, 118, 120, 104, 85, 27, 105, 16, 127, 119, 39, 98, + 133, 135, 69, 149, 132, 186, 74, 87, 27, 242, 173, 139, 57, 163, 170, 97, 222, 71, 164, 214, 219, 231, 21, 99, + 209, 73, 117, 137, 237, 111, 120, 145, 223, 102, 21, 70, 195, 179, 230, 82, 35, 9, 66, 61, 118, 76, 241, 31, 59, + 139, 247, 50, 141, 182, 213, 19, 208, 237, 27, 183, 112, 163, 195, 207, 239, 63, 234, 255, 71, 220, 207, 62, 126, + 184, 5, 7, 255, 216, 102, 159, 27, 91, 18, 235, 57, 34, 182, 151, 32, 159, 27, 73, 191, 171, 239, 73, 223, 166, + 148, 27, 101, 110, 16, 242, 9, 238, 227, 193, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1140, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d95f7d0ca9" + } + ] + }, + "cborHex": "9f45d95f7d0ca9ff", + "cborBytes": [159, 69, 217, 95, 125, 12, 169, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1141, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10574989504983200096" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15244475117934756802" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17408041493965222286" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4061040515334513016" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2201448837445843706" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d996360bfadff2fe0fe77c" + }, + { + "_tag": "ByteArray", + "bytearray": "a0e710d4063f72" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10825027950013367930" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8999940816175019588" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d381e2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3290889539529606230" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "60068c579d154dbdcae1ae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7973666008667824371" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12068673005720988111" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12526155172826133383" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9083628944905128822" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7877248838238587494" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16734562301075052725" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1798842816836784991" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11413222162781146242" + } + }, + { + "_tag": "ByteArray", + "bytearray": "60fdb4af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5063879508861950276" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "49e9a9" + } + ] + } + ] + }, + "cborHex": "d905029f9f1b92c1e8ed1401f160d8669f1bd38f4159dfc843c29f1bf195c981cb0eb18e413f1b385bb6d516fba178ffffd8669f1b1e8d1e0dcb27fafa9f4bd996360bfadff2fe0fe77c47a0e710d4063f72ffffffd8669f1b963a39912c38c67a9fd8669f1b7ce6367d13a6b6449f43d381e21b2dab9699aeb60456ffff4b60068c579d154dbdcae1ae1b6ea826fd1440a0f3d8669f1ba77c8a27f85869cf9f1badd5d7c365b933871b7e0f8865f486cb76ffffbf1b6d519c153a91ca661be83d1bbfd338d8b5ffffff1b18f6c602e051d35f12d905099f9f1b9e63e916532f8c824460fdb4af1b464683956f189944ff4349e9a9ffff", + "cborBytes": [ + 217, 5, 2, 159, 159, 27, 146, 193, 232, 237, 20, 1, 241, 96, 216, 102, 159, 27, 211, 143, 65, 89, 223, 200, 67, + 194, 159, 27, 241, 149, 201, 129, 203, 14, 177, 142, 65, 63, 27, 56, 91, 182, 213, 22, 251, 161, 120, 255, 255, + 216, 102, 159, 27, 30, 141, 30, 13, 203, 39, 250, 250, 159, 75, 217, 150, 54, 11, 250, 223, 242, 254, 15, 231, + 124, 71, 160, 231, 16, 212, 6, 63, 114, 255, 255, 255, 216, 102, 159, 27, 150, 58, 57, 145, 44, 56, 198, 122, 159, + 216, 102, 159, 27, 124, 230, 54, 125, 19, 166, 182, 68, 159, 67, 211, 129, 226, 27, 45, 171, 150, 153, 174, 182, + 4, 86, 255, 255, 75, 96, 6, 140, 87, 157, 21, 77, 189, 202, 225, 174, 27, 110, 168, 38, 253, 20, 64, 160, 243, + 216, 102, 159, 27, 167, 124, 138, 39, 248, 88, 105, 207, 159, 27, 173, 213, 215, 195, 101, 185, 51, 135, 27, 126, + 15, 136, 101, 244, 134, 203, 118, 255, 255, 191, 27, 109, 81, 156, 21, 58, 145, 202, 102, 27, 232, 61, 27, 191, + 211, 56, 216, 181, 255, 255, 255, 27, 24, 246, 198, 2, 224, 81, 211, 95, 18, 217, 5, 9, 159, 159, 27, 158, 99, + 233, 22, 83, 47, 140, 130, 68, 96, 253, 180, 175, 27, 70, 70, 131, 149, 111, 24, 153, 68, 255, 67, 73, 233, 169, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1142, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12686970993410374348" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c35487dd36" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "076c0203d707c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53030ff9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14944855892750932669" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6954fd2c02100a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80967dbbf1a7d1fa2b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f4fe16d08dedfd975" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9203341477813732279" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3653418121871658546" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13271515397909742071" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "903a1be143388f59fc" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11254739764158533916" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15765532343893084455" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5dd911508fe9803f" + }, + { + "_tag": "ByteArray", + "bytearray": "abf5b97991fdd2af7f" + }, + { + "_tag": "ByteArray", + "bytearray": "23d2c266463925c144bae8" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8171863976177301035" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1384429625587134123" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9460354446413379123" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a849f30d3518" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15230016968701925138" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3175741918378129084" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17695723076870316953" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86d8aade5a2fa5634b09" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bb0112ce669e8facc9f45c35487dd36bf47076c0203d707c2144453030ff91bcf66cb40d2d29abd476954fd2c02100a124980967dbbf1a7d1fa2b493f4fe16d08dedfd975ffd8669f1b7fb8d6500bb4c3b79fd8669f1b32b38c6cda228e329f1bb82de4f05b8981f7ffff49903a1be143388f59fc80d8669f1b9c30de2f7222111c9f1bdaca6c232cadc927485dd911508fe9803f49abf5b97991fdd2af7f4b23d2c266463925c144bae8ffffbf1b71684afd6cdbf62b1b13367b68d1a5eeab1b8349ee3ef3c1b63346a849f30d35181bd35be3bdaea657121b2c128072ef3ef6bc1bf593d661e889a3994a86d8aade5a2fa5634b09ffffff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 176, 17, 44, 230, 105, 232, 250, 204, 159, 69, 195, 84, 135, 221, 54, 191, 71, 7, 108, 2, 3, + 215, 7, 194, 20, 68, 83, 3, 15, 249, 27, 207, 102, 203, 64, 210, 210, 154, 189, 71, 105, 84, 253, 44, 2, 16, 10, + 18, 73, 128, 150, 125, 187, 241, 167, 209, 250, 43, 73, 63, 79, 225, 109, 8, 222, 223, 217, 117, 255, 216, 102, + 159, 27, 127, 184, 214, 80, 11, 180, 195, 183, 159, 216, 102, 159, 27, 50, 179, 140, 108, 218, 34, 142, 50, 159, + 27, 184, 45, 228, 240, 91, 137, 129, 247, 255, 255, 73, 144, 58, 27, 225, 67, 56, 143, 89, 252, 128, 216, 102, + 159, 27, 156, 48, 222, 47, 114, 34, 17, 28, 159, 27, 218, 202, 108, 35, 44, 173, 201, 39, 72, 93, 217, 17, 80, + 143, 233, 128, 63, 73, 171, 245, 185, 121, 145, 253, 210, 175, 127, 75, 35, 210, 194, 102, 70, 57, 37, 193, 68, + 186, 232, 255, 255, 191, 27, 113, 104, 74, 253, 108, 219, 246, 43, 27, 19, 54, 123, 104, 209, 165, 238, 171, 27, + 131, 73, 238, 62, 243, 193, 182, 51, 70, 168, 73, 243, 13, 53, 24, 27, 211, 91, 227, 189, 174, 166, 87, 18, 27, + 44, 18, 128, 114, 239, 62, 246, 188, 27, 245, 147, 214, 97, 232, 137, 163, 153, 74, 134, 216, 170, 222, 90, 47, + 165, 99, 75, 9, 255, 255, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1143, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8158952978665832711" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "baba7ffcd7cbc7e3c2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11818297768176791308" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9519f97a2a3701fc1d9c8f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18314450480669655890" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14760124028749516930" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "ByteArray", + "bytearray": "372c047fc5b64ec935b2f62f" + } + ] + }, + "cborHex": "9f1b713a6c81907e010780d8669f1bffffffffffffffeb9f49baba7ffcd7cbc7e3c2d8669f1ba403073441f82f0c9f4b9519f97a2a3701fc1d9c8f0bffffd8669f1bfe29ffad94cc035280ffd8669f1bccd67e9a0652908280ff12ffff084c372c047fc5b64ec935b2f62fff", + "cborBytes": [ + 159, 27, 113, 58, 108, 129, 144, 126, 1, 7, 128, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, + 73, 186, 186, 127, 252, 215, 203, 199, 227, 194, 216, 102, 159, 27, 164, 3, 7, 52, 65, 248, 47, 12, 159, 75, 149, + 25, 249, 122, 42, 55, 1, 252, 29, 156, 143, 11, 255, 255, 216, 102, 159, 27, 254, 41, 255, 173, 148, 204, 3, 82, + 128, 255, 216, 102, 159, 27, 204, 214, 126, 154, 6, 82, 144, 130, 128, 255, 18, 255, 255, 8, 76, 55, 44, 4, 127, + 197, 182, 78, 201, 53, 178, 246, 47, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1144, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7053762639252077297" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "47b5506c44cdf5f74eda5900" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6668826314833338817" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f944e66cf1618211cfc95e2c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17613879618423275080" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12406994934491963770" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e0bc12455" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02e5c2afdbf7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c72e8935702d9a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17386696556096095458" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b61e3ffbf7a8abaf19f4c47b5506c44cdf5f74eda590080bf1b5c8c6e334c6b21c14cf944e66cf1618211cfc95e2c1bf4711230cc9cbe481bac2e80286876e17a450e0bc124554602e5c2afdbf747c72e8935702d9a1bf149f4662b9d84e2ffffff", + "cborBytes": [ + 216, 102, 159, 27, 97, 227, 255, 191, 122, 138, 186, 241, 159, 76, 71, 181, 80, 108, 68, 205, 245, 247, 78, 218, + 89, 0, 128, 191, 27, 92, 140, 110, 51, 76, 107, 33, 193, 76, 249, 68, 230, 108, 241, 97, 130, 17, 207, 201, 94, + 44, 27, 244, 113, 18, 48, 204, 156, 190, 72, 27, 172, 46, 128, 40, 104, 118, 225, 122, 69, 14, 11, 193, 36, 85, + 70, 2, 229, 194, 175, 219, 247, 71, 199, 46, 137, 53, 112, 45, 154, 27, 241, 73, 244, 102, 43, 157, 132, 226, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1145, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "cborHex": "13", + "cborBytes": [19], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1146, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "815699070785171791" + } + } + ] + }, + "cborHex": "9f1b0b51f1fbadc4314fff", + "cborBytes": [159, 27, 11, 81, 241, 251, 173, 196, 49, 79, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1147, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9369943215348830081" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8197851528900457956" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c90b58d85b88f7c85ea5" + }, + { + "_tag": "ByteArray", + "bytearray": "051a18" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9597295617552376909" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b8208b9b5d472cf81d8669f1b71c49e880d8135e49f4ac90b58d85b88f7c85ea543051a18ffff1b85307183f89f644d80ff", + "cborBytes": [ + 191, 27, 130, 8, 185, 181, 212, 114, 207, 129, 216, 102, 159, 27, 113, 196, 158, 136, 13, 129, 53, 228, 159, 74, + 201, 11, 88, 216, 91, 136, 247, 200, 94, 165, 67, 5, 26, 24, 255, 255, 27, 133, 48, 113, 131, 248, 159, 100, 77, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1148, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13774897757338114546" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10123163125253177220" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13150641979449743078" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b23e5d7426ed53848b9ced1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11448840814384650368" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93316def232ee3e31d1f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4650828612587145096" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bbf2a44871b7699f2bf1b8c7cb33a440c7f841bb6807734897116e64c5b23e5d7426ed53848b9ced11b9ee2740fe76418804a93316def232ee3e31d1f1b408b0ffb647ac788ffff", + "cborBytes": [ + 191, 27, 191, 42, 68, 135, 27, 118, 153, 242, 191, 27, 140, 124, 179, 58, 68, 12, 127, 132, 27, 182, 128, 119, 52, + 137, 113, 22, 230, 76, 91, 35, 229, 215, 66, 110, 213, 56, 72, 185, 206, 209, 27, 158, 226, 116, 15, 231, 100, 24, + 128, 74, 147, 49, 109, 239, 35, 46, 227, 227, 29, 31, 27, 64, 139, 15, 251, 100, 122, 199, 136, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1149, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9513432634422944103" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b84068093a16361679fd87e80ffff", + "cborBytes": [216, 102, 159, 27, 132, 6, 128, 147, 161, 99, 97, 103, 159, 216, 126, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1150, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13550179498910036379" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "85fc092c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "10" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "850098967950888239" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3986354903346780221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8025d39d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6004986409197299918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5750117a649f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8517094454440218075" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "444498294394799997" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8723196067312957710" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8752119682069591583" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bf9d2197a0" + } + ] + } + ] + }, + "cborHex": "d8669f1bbc0be8765b50319b9f4485fc092c9f4110bf1b0bcc2881e0a38d2f41601b375260a9fa9f183d448025d39d1b5355ff52c940e8ce465750117a649f1b7632cc47e35bcddb1b062b2cd7fcab477d1b790f049b1245f90e1b7975c67ae976761fff45bf9d2197a0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 188, 11, 232, 118, 91, 80, 49, 155, 159, 68, 133, 252, 9, 44, 159, 65, 16, 191, 27, 11, 204, + 40, 129, 224, 163, 141, 47, 65, 96, 27, 55, 82, 96, 169, 250, 159, 24, 61, 68, 128, 37, 211, 157, 27, 83, 85, 255, + 82, 201, 64, 232, 206, 70, 87, 80, 17, 122, 100, 159, 27, 118, 50, 204, 71, 227, 91, 205, 219, 27, 6, 43, 44, 215, + 252, 171, 71, 125, 27, 121, 15, 4, 155, 18, 69, 249, 14, 27, 121, 117, 198, 122, 233, 118, 118, 31, 255, 69, 191, + 157, 33, 151, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1151, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15581578594883132454" + } + }, + "cborHex": "1bd83ce32d63d6dc26", + "cborBytes": [27, 216, 60, 227, 45, 99, 214, 220, 38], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1152, + "sample": { + "_tag": "ByteArray", + "bytearray": "e00021b180e7388ce68ad5" + }, + "cborHex": "4be00021b180e7388ce68ad5", + "cborBytes": [75, 224, 0, 33, 177, 128, 231, 56, 140, 230, 138, 213], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1153, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8a4d0" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3746666279012817099" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + } + ] + }, + "cborHex": "9f1bffffffffffffffeebf1bfffffffffffffffc43c8a4d0ffbf1b33fed5214c7e58cb0f41fc07ffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 191, 27, 255, 255, 255, 255, 255, 255, 255, 252, 67, 200, 164, + 208, 255, 191, 27, 51, 254, 213, 33, 76, 126, 88, 203, 15, 65, 252, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1154, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + } + ] + }, + "cborHex": "bf040cff", + "cborBytes": [191, 4, 12, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1155, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5336453918164306357" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2356643171786761016" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11800006311092793131" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65" + } + } + ] + }, + "cborHex": "bf1b4a0ee490986cc9b5d8669f1b20b47a7a8cb3233880ff1ba3c20b38880daf2b4165ff", + "cborBytes": [ + 191, 27, 74, 14, 228, 144, 152, 108, 201, 181, 216, 102, 159, 27, 32, 180, 122, 122, 140, 179, 35, 56, 128, 255, + 27, 163, 194, 11, 56, 136, 13, 175, 43, 65, 101, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1156, + "sample": { + "_tag": "ByteArray", + "bytearray": "4ad183d33b" + }, + "cborHex": "454ad183d33b", + "cborBytes": [69, 74, 209, 131, 211, 59], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1157, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11812760258366194118" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1ba3ef5ade48c4c1c69f80ffff", + "cborBytes": [216, 102, 159, 27, 163, 239, 90, 222, 72, 196, 193, 198, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1158, + "sample": { + "_tag": "ByteArray", + "bytearray": "bf14b27645" + }, + "cborHex": "45bf14b27645", + "cborBytes": [69, 191, 20, 178, 118, 69], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1159, + "sample": { + "_tag": "ByteArray", + "bytearray": "158e7979f378" + }, + "cborHex": "46158e7979f378", + "cborBytes": [70, 21, 142, 121, 121, 243, 120], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1160, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7559185625886016962" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f9e0fad642f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7eb98a39051d59b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f36ea1c0ea0d271591b4e82b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c095caeb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddff24e8" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ac9a8841ad89b5361" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4088317960590026794" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b683e5e0f514fa798e3758" + }, + { + "_tag": "ByteArray", + "bytearray": "36d668750c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2854866565395525525" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b68e79f46c62cc5c2bf464f9e0fad642f41ff487eb98a39051d59b84cf36ea1c0ea0d271591b4e82b44c095caeb44ddff24e8ff495ac9a8841ad89b53619f1b38bc9f8639d1682a4bb683e5e0f514fa798e37584536d668750c1b279e8603f78a2f95ffff", + "cborBytes": [ + 191, 27, 104, 231, 159, 70, 198, 44, 197, 194, 191, 70, 79, 158, 15, 173, 100, 47, 65, 255, 72, 126, 185, 138, 57, + 5, 29, 89, 184, 76, 243, 110, 161, 192, 234, 13, 39, 21, 145, 180, 232, 43, 68, 192, 149, 202, 235, 68, 221, 255, + 36, 232, 255, 73, 90, 201, 168, 132, 26, 216, 155, 83, 97, 159, 27, 56, 188, 159, 134, 57, 209, 104, 42, 75, 182, + 131, 229, 224, 245, 20, 250, 121, 142, 55, 88, 69, 54, 214, 104, 117, 12, 27, 39, 158, 134, 3, 247, 138, 47, 149, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1161, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12293770332884260760" + } + }, + "cborHex": "1baa9c3efb89cd5798", + "cborBytes": [27, 170, 156, 62, 251, 137, 205, 87, 152], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1162, + "sample": { + "_tag": "ByteArray", + "bytearray": "17fb" + }, + "cborHex": "4217fb", + "cborBytes": [66, 23, 251], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1163, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff300988" + }, + "cborHex": "44ff300988", + "cborBytes": [68, 255, 48, 9, 136], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1164, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15180657496548646266" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16358941143983879634" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d47ea2925b2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6607d2eb7f48a7" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5439995402139207129" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4473208917240168968" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11718181746625877117" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9568039425511679775" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdde0301" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1903f800b73501edff067d" + } + } + ] + }, + "cborHex": "bf09bf1bd2ac879002a71d7a1be306a24c0cae75d2465d47ea2925b2476607d2eb7f48a7ff0ed8669f1bfffffffffffffff29f1b4b7ebefef44405d9ffff12d8669f1bffffffffffffffeb80ff1b3e1407cf6635c2081ba29f5836851a147d1b84c88129f28e671f44fdde03011bfffffffffffffff04b1903f800b73501edff067dff", + "cborBytes": [ + 191, 9, 191, 27, 210, 172, 135, 144, 2, 167, 29, 122, 27, 227, 6, 162, 76, 12, 174, 117, 210, 70, 93, 71, 234, 41, + 37, 178, 71, 102, 7, 210, 235, 127, 72, 167, 255, 14, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, + 159, 27, 75, 126, 190, 254, 244, 68, 5, 217, 255, 255, 18, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 235, 128, 255, 27, 62, 20, 7, 207, 102, 53, 194, 8, 27, 162, 159, 88, 54, 133, 26, 20, 125, 27, 132, 200, 129, 41, + 242, 142, 103, 31, 68, 253, 222, 3, 1, 27, 255, 255, 255, 255, 255, 255, 255, 240, 75, 25, 3, 248, 0, 183, 53, 1, + 237, 255, 6, 125, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1165, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9dbf8fd6f06" + }, + "cborHex": "46f9dbf8fd6f06", + "cborBytes": [70, 249, 219, 248, 253, 111, 6], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1166, + "sample": { + "_tag": "ByteArray", + "bytearray": "ce44eb55f07d99" + }, + "cborHex": "47ce44eb55f07d99", + "cborBytes": [71, 206, 68, 235, 85, 240, 125, 153], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1167, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39fa0ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1168, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2122846559444256371" + } + }, + "cborHex": "1b1d75ddb2d055c673", + "cborBytes": [27, 29, 117, 221, 178, 208, 85, 198, 115], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1169, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f93edc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f878f0ef61893a22f05b833" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6cb60f4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a7962afec32e625d361" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15332949268490355091" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85ee212e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de06e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28d209" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0c67a8c42" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16606609052652120997" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "374542226838549686" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14546616661204715248" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11413035387361356788" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13666767129071724462" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12024624649277064239" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f71f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ae264a43f568a9846" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee79" + } + } + ] + } + ] + }, + "cborHex": "9f8043f93edcbf4c3f878f0ef61893a22f05b83344a6cb60f44a7a7962afec32e625d3611bd4c9941f4b7401934485ee212e0243de06e64328d20945f0c67a8c421be67686f2a31daba5ffbf1b0532a42bc01874b61bc9dff6c836e2c6f01b9e633f3748a2ebf41bbdaa1c4b544e27ae1ba6e00c68c990c42f42f71f493ae264a43f568a984642ee79ffff", + "cborBytes": [ + 159, 128, 67, 249, 62, 220, 191, 76, 63, 135, 143, 14, 246, 24, 147, 162, 47, 5, 184, 51, 68, 166, 203, 96, 244, + 74, 122, 121, 98, 175, 236, 50, 230, 37, 211, 97, 27, 212, 201, 148, 31, 75, 116, 1, 147, 68, 133, 238, 33, 46, 2, + 67, 222, 6, 230, 67, 40, 210, 9, 69, 240, 198, 122, 140, 66, 27, 230, 118, 134, 242, 163, 29, 171, 165, 255, 191, + 27, 5, 50, 164, 43, 192, 24, 116, 182, 27, 201, 223, 246, 200, 54, 226, 198, 240, 27, 158, 99, 63, 55, 72, 162, + 235, 244, 27, 189, 170, 28, 75, 84, 78, 39, 174, 27, 166, 224, 12, 104, 201, 144, 196, 47, 66, 247, 31, 73, 58, + 226, 100, 164, 63, 86, 138, 152, 70, 66, 238, 121, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1170, + "sample": { + "_tag": "ByteArray", + "bytearray": "09bc9f92784712e1" + }, + "cborHex": "4809bc9f92784712e1", + "cborBytes": [72, 9, 188, 159, 146, 120, 71, 18, 225], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1171, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8040104" + }, + "cborHex": "44f8040104", + "cborBytes": [68, 248, 4, 1, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1172, + "sample": { + "_tag": "ByteArray", + "bytearray": "68" + }, + "cborHex": "4168", + "cborBytes": [65, 104], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1173, + "sample": { + "_tag": "ByteArray", + "bytearray": "2907" + }, + "cborHex": "422907", + "cborBytes": [66, 41, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1174, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3918997812823372700" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "450047dcb88e6f" + }, + { + "_tag": "ByteArray", + "bytearray": "4cc7b8c5e90696" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8840214603823044790" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad3ac43709b98e85438efb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16280046478165376993" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8703008943796114138" + } + } + } + ] + }, + "cborHex": "bf1b366313bf3cdeb39c9f47450047dcb88e6f474cc7b8c5e90696ff1b7aaec0583f17d8b64bad3ac43709b98e85438efb1be1ee580439e57fe11b78c74c861c03d2daff", + "cborBytes": [ + 191, 27, 54, 99, 19, 191, 60, 222, 179, 156, 159, 71, 69, 0, 71, 220, 184, 142, 111, 71, 76, 199, 184, 197, 233, + 6, 150, 255, 27, 122, 174, 192, 88, 63, 23, 216, 182, 75, 173, 58, 196, 55, 9, 185, 142, 133, 67, 142, 251, 27, + 225, 238, 88, 4, 57, 229, 127, 225, 27, 120, 199, 76, 134, 28, 3, 210, 218, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1175, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4308890211383633175" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4728797342016243364" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10003845389539373842" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ca982426" + } + ] + } + ] + }, + "cborHex": "d8669f1b3bcc40d159ade5179fd8669f1b41a01020d9b086a49fd8669f1b8ad4cc610f6c731280ff44ca982426ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 59, 204, 64, 209, 89, 173, 229, 23, 159, 216, 102, 159, 27, 65, 160, 16, 32, 217, 176, 134, + 164, 159, 216, 102, 159, 27, 138, 212, 204, 97, 15, 108, 115, 18, 128, 255, 68, 202, 152, 36, 38, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1176, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11520968067077902714" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "391f46" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0300c602" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11391572630391064727" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ca3276f7a73d3d5ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69005c80" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ed257a2f3f47c58ca7b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5752293933383440252" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1d0789ffa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "123358765681389752" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b9fe2b36a92cc117a9f43391f46bf440300c6021b9e16fef3c3858897494ca3276f7a73d3d5ec4469005c804a5ed257a2f3f47c58ca7b1b4fd440dafef4577c41b61bfffffffffffffffb45f1d0789ffa1b01b64224d05eb0b8ffffff", + "cborBytes": [ + 216, 102, 159, 27, 159, 226, 179, 106, 146, 204, 17, 122, 159, 67, 57, 31, 70, 191, 68, 3, 0, 198, 2, 27, 158, 22, + 254, 243, 195, 133, 136, 151, 73, 76, 163, 39, 111, 122, 115, 211, 213, 236, 68, 105, 0, 92, 128, 74, 94, 210, 87, + 162, 243, 244, 124, 88, 202, 123, 27, 79, 212, 64, 218, 254, 244, 87, 124, 65, 182, 27, 255, 255, 255, 255, 255, + 255, 255, 251, 69, 241, 208, 120, 159, 250, 27, 1, 182, 66, 36, 208, 94, 176, 184, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1177, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1290616074126952710" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ffc05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "324437877217922978" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + } + ] + } + ] + }, + "cborHex": "d87b9f1b11e9307b3fbf0906bf436ffc051b0480a287c7418fa242fe004106ffff", + "cborBytes": [ + 216, 123, 159, 27, 17, 233, 48, 123, 63, 191, 9, 6, 191, 67, 111, 252, 5, 27, 4, 128, 162, 135, 199, 65, 143, 162, + 66, 254, 0, 65, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1178, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1982684515084916719" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d97ae4268894292ab01d3617" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9759443418633605254" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6424376426394369203" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "df5ce714" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12201646414557785357" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adba9d" + } + } + ] + }, + "cborHex": "bf1b1b83e90fcf4dd7ef4cd97ae4268894292ab01d36171b87708214dd2e1086d8669f1b5927f8526ea13cb39f44df5ce714ffff1ba954f4c456a2ad0d43adba9dff", + "cborBytes": [ + 191, 27, 27, 131, 233, 15, 207, 77, 215, 239, 76, 217, 122, 228, 38, 136, 148, 41, 42, 176, 29, 54, 23, 27, 135, + 112, 130, 20, 221, 46, 16, 134, 216, 102, 159, 27, 89, 39, 248, 82, 110, 161, 60, 179, 159, 68, 223, 92, 231, 20, + 255, 255, 27, 169, 84, 244, 196, 86, 162, 173, 13, 67, 173, 186, 157, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1179, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "38c8db" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00021f180da2885097a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8829104777311244472" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "726150" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "146981629961069344" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5558867048860708658" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4ef078e7a4054af7061d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3544e40d49" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e634c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a423440d2ed31e2ff" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "255d16ca50089e75fdff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15059082950912361601" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5526475953319800178" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5418564376505774904" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bd3f74a13e416" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2" + } + } + ] + } + ] + }, + "cborHex": "d87f9f4338c8db9fbf4a00021f180da2885097a51b7a874804305750b8437261501b020a2f038256632041771b4d251020f8f76f324ba4ef078e7a4054af7061d1453544e40d4943e634c0498a423440d2ed31e2ffff9f4a255d16ca50089e75fdff1bd0fc9c284c45c481ff1b4cb1fc99595d6d72ffd8669f1b4b329b977636733880ffbf477bd3f74a13e41641a2ffff", + "cborBytes": [ + 216, 127, 159, 67, 56, 200, 219, 159, 191, 74, 0, 2, 31, 24, 13, 162, 136, 80, 151, 165, 27, 122, 135, 72, 4, 48, + 87, 80, 184, 67, 114, 97, 80, 27, 2, 10, 47, 3, 130, 86, 99, 32, 65, 119, 27, 77, 37, 16, 32, 248, 247, 111, 50, + 75, 164, 239, 7, 142, 122, 64, 84, 175, 112, 97, 209, 69, 53, 68, 228, 13, 73, 67, 230, 52, 192, 73, 138, 66, 52, + 64, 210, 237, 49, 226, 255, 255, 159, 74, 37, 93, 22, 202, 80, 8, 158, 117, 253, 255, 27, 208, 252, 156, 40, 76, + 69, 196, 129, 255, 27, 76, 177, 252, 153, 89, 93, 109, 114, 255, 216, 102, 159, 27, 75, 50, 155, 151, 118, 54, + 115, 56, 128, 255, 191, 71, 123, 211, 247, 74, 19, 228, 22, 65, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1180, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fcfafc0626fccee5f9" + }, + { + "_tag": "ByteArray", + "bytearray": "1a97d8903a45478c71" + } + ] + }, + "cborHex": "9f49fcfafc0626fccee5f9491a97d8903a45478c71ff", + "cborBytes": [159, 73, 252, 250, 252, 6, 38, 252, 206, 229, 249, 73, 26, 151, 216, 144, 58, 69, 71, 140, 113, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1181, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16347869979209049021" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3906188245278280745" + } + } + ] + }, + "cborHex": "d8669f1be2df4d21a10723bd9f801b36359183619e4c29ffff", + "cborBytes": [ + 216, 102, 159, 27, 226, 223, 77, 33, 161, 7, 35, 189, 159, 128, 27, 54, 53, 145, 131, 97, 158, 76, 41, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1182, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "229800" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "306c9a2c6a4f02fff75b739b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15043264381839438889" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7586387826338477499" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17455836167055642505" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a66b6b20452" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a4f4ceb17c772ab5a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16874478309329378137" + } + } + } + ] + } + ] + }, + "cborHex": "d87f9f432298009f4c306c9a2c6a4f02fff75b739bff0b05bf1bd0c46940add374291b694843889d40b5bb1bf23f96824ac48f89467a66b6b20452492a4f4ceb17c772ab5a1bea2e309e159c9b59ffff", + "cborBytes": [ + 216, 127, 159, 67, 34, 152, 0, 159, 76, 48, 108, 154, 44, 106, 79, 2, 255, 247, 91, 115, 155, 255, 11, 5, 191, 27, + 208, 196, 105, 64, 173, 211, 116, 41, 27, 105, 72, 67, 136, 157, 64, 181, 187, 27, 242, 63, 150, 130, 74, 196, + 143, 137, 70, 122, 102, 182, 178, 4, 82, 73, 42, 79, 76, 235, 23, 199, 114, 171, 90, 27, 234, 46, 48, 158, 21, + 156, 155, 89, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1183, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6639384500486513848" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9036299214367628698" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10375418836120391583" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1231201766141780434" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8281a543e978041cfc4de" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7999720586452818091" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9416087562840978916" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8099900409259133165" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea12d538647dd5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14940854448508650188" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7684010236260258259" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "86ba2fba809382e96d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13717444444828954404" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3017007349872120956" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fe22fd3" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b4e5671822e3" + }, + { + "_tag": "ByteArray", + "bytearray": "26e7c4" + }, + { + "_tag": "ByteArray", + "bytearray": "a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16017112725325614999" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1649500353938757029" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2b4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6232158250250358397" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "571598861221756208" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10699515053600758307" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10757067269336195316" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "356564148817506734" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ce5c74ca68948b6b7563" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16029464541886982379" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4d4223551467a1d378b95ffa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14051980105625146786" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18002804005189311180" + } + }, + { + "_tag": "ByteArray", + "bytearray": "035c5c58711963cec36fd658" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4026880382762677902" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16512867372517319629" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5641166280664374479" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19fd8669f1b5c23d506b6bba4b89fd8669f1b7d67624254861d9a9f1b8ffce475cada4f9fffffbf1b11161b7badb6e1d24be8281a543e978041cfc4de1b6f04b77d31e658ab1b82aca9bff51c35e41b7068a081d1ee88ed47ea12d538647dd51bcf5893f5fc2c42cc1b6aa3169926c211d3ffffff4986ba2fba809382e96dd8669f1bbe5e270b602f6f249fbf1b29de90332dded47c446fe22fd3ff9f46b4e5671822e34326e7c441a81bde483729506c0f97ffbf1b16e433d51d6695a542e2b41b567d12e8c2314e7d1b07eeba22c523fd301b947c5040b6d15a23416a1b9548c7b025c3e0f41b04f2c53445e831aeff4ace5c74ca68948b6b7563ffff9fd8669f1bde741912b6e4a8eb9f4c4d4223551467a1d378b95ffa1bc302a9749aa495a21bf9d6cedc1a49dacc4c035c5c58711963cec36fd658ffffd8669f1b37e25a5f6f8ef68e9f1be5297d62ea0863cdffffff1b4e4972d815e95ccfffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 216, 102, 159, 27, 92, 35, 213, 6, 182, 187, 164, + 184, 159, 216, 102, 159, 27, 125, 103, 98, 66, 84, 134, 29, 154, 159, 27, 143, 252, 228, 117, 202, 218, 79, 159, + 255, 255, 191, 27, 17, 22, 27, 123, 173, 182, 225, 210, 75, 232, 40, 26, 84, 62, 151, 128, 65, 207, 196, 222, 27, + 111, 4, 183, 125, 49, 230, 88, 171, 27, 130, 172, 169, 191, 245, 28, 53, 228, 27, 112, 104, 160, 129, 209, 238, + 136, 237, 71, 234, 18, 213, 56, 100, 125, 213, 27, 207, 88, 147, 245, 252, 44, 66, 204, 27, 106, 163, 22, 153, 38, + 194, 17, 211, 255, 255, 255, 73, 134, 186, 47, 186, 128, 147, 130, 233, 109, 216, 102, 159, 27, 190, 94, 39, 11, + 96, 47, 111, 36, 159, 191, 27, 41, 222, 144, 51, 45, 222, 212, 124, 68, 111, 226, 47, 211, 255, 159, 70, 180, 229, + 103, 24, 34, 227, 67, 38, 231, 196, 65, 168, 27, 222, 72, 55, 41, 80, 108, 15, 151, 255, 191, 27, 22, 228, 51, + 213, 29, 102, 149, 165, 66, 226, 180, 27, 86, 125, 18, 232, 194, 49, 78, 125, 27, 7, 238, 186, 34, 197, 35, 253, + 48, 27, 148, 124, 80, 64, 182, 209, 90, 35, 65, 106, 27, 149, 72, 199, 176, 37, 195, 224, 244, 27, 4, 242, 197, + 52, 69, 232, 49, 174, 255, 74, 206, 92, 116, 202, 104, 148, 139, 107, 117, 99, 255, 255, 159, 216, 102, 159, 27, + 222, 116, 25, 18, 182, 228, 168, 235, 159, 76, 77, 66, 35, 85, 20, 103, 161, 211, 120, 185, 95, 250, 27, 195, 2, + 169, 116, 154, 164, 149, 162, 27, 249, 214, 206, 220, 26, 73, 218, 204, 76, 3, 92, 92, 88, 113, 25, 99, 206, 195, + 111, 214, 88, 255, 255, 216, 102, 159, 27, 55, 226, 90, 95, 111, 142, 246, 142, 159, 27, 229, 41, 125, 98, 234, 8, + 99, 205, 255, 255, 255, 27, 78, 73, 114, 216, 21, 233, 92, 207, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1184, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2556265373601418840" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16075155374950928205" + } + } + ] + }, + "cborHex": "d8669f1b2379add04924ce589f1bdf166ca4c9294f4dffff", + "cborBytes": [ + 216, 102, 159, 27, 35, 121, 173, 208, 73, 36, 206, 88, 159, 27, 223, 22, 108, 164, 201, 41, 79, 77, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1185, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18bea2b7107874c3e2a256" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13409110820387087081" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13353576362270010641" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c26c69" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "843084" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc3103771bf6b62183" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef" + } + } + ] + } + ] + }, + "cborHex": "d905039fbf4b18bea2b7107874c3e2a2561bba16bb3f2304e2e941b11bb9516ef382282d1143c26c694384308449fc3103771bf6b6218341efffff", + "cborBytes": [ + 217, 5, 3, 159, 191, 75, 24, 190, 162, 183, 16, 120, 116, 195, 226, 162, 86, 27, 186, 22, 187, 63, 35, 4, 226, + 233, 65, 177, 27, 185, 81, 110, 243, 130, 40, 45, 17, 67, 194, 108, 105, 67, 132, 48, 132, 73, 252, 49, 3, 119, + 27, 246, 182, 33, 131, 65, 239, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1186, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00adccd22e06968803" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10377530496848150867" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15839989924637608115" + } + } + ] + }, + "cborHex": "d905059f4900adccd22e06968803801b900465011e6ac153801bdbd2f2e99fca88b3ff", + "cborBytes": [ + 217, 5, 5, 159, 73, 0, 173, 204, 210, 46, 6, 150, 136, 3, 128, 27, 144, 4, 101, 1, 30, 106, 193, 83, 128, 27, 219, + 210, 242, 233, 159, 202, 136, 179, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1187, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10513603706904393443" + } + }, + "cborHex": "1b91e7d2de334436e3", + "cborBytes": [27, 145, 231, 210, 222, 51, 68, 54, 227], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1188, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1e10a44350b16e006c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6294171930323030662" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a511b7112" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23d0a327379834" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d89978261" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8799f9f491e10a44350b16e006cbf1b57596405ce239286450a511b7112ffbf4723d0a327379834455d89978261ffffff", + "cborBytes": [ + 216, 121, 159, 159, 73, 30, 16, 164, 67, 80, 177, 110, 0, 108, 191, 27, 87, 89, 100, 5, 206, 35, 146, 134, 69, 10, + 81, 27, 113, 18, 255, 191, 71, 35, 208, 163, 39, 55, 152, 52, 69, 93, 137, 151, 130, 97, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1189, + "sample": { + "_tag": "ByteArray", + "bytearray": "b09e07f1" + }, + "cborHex": "44b09e07f1", + "cborBytes": [68, 176, 158, 7, 241], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1190, + "sample": { + "_tag": "ByteArray", + "bytearray": "c949" + }, + "cborHex": "42c949", + "cborBytes": [66, 201, 73], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1191, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7398839692750638748" + }, + "fields": [] + }, + "cborHex": "d8669f1b66adf57ff4764e9c80ff", + "cborBytes": [216, 102, 159, 27, 102, 173, 245, 127, 244, 118, 78, 156, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1192, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "551549565189306219" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15031543206147387172" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3624903696390917113" + } + }, + { + "_tag": "ByteArray", + "bytearray": "21287c03" + }, + { + "_tag": "ByteArray", + "bytearray": "2da065bbb7588af321c337" + }, + { + "_tag": "ByteArray", + "bytearray": "238bb33a3cc91bc02b51" + }, + { + "_tag": "ByteArray", + "bytearray": "29cbe5bfef719c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12807746636860081658" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3540376338058397161" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef4af89e10c686" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10388136250341945529" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14746647441303791069" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bba8a4464730a3de2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84042e4f" + } + } + ] + }, + "cborHex": "bf1b07a77f684521376bd8669f1bd09ac4e7cc59ef249f1b324e3eb4d0618bf94421287c034b2da065bbb7588af321c3374a238bb33a3cc91bc02b514729cbe5bfef719cffff1bb1be41b5373fc5fabf1b3121f185912b45e947ef4af89e10c6861b902a12e187fd70b91bcca69db77ed5e5ddff495bba8a4464730a3de24484042e4fff", + "cborBytes": [ + 191, 27, 7, 167, 127, 104, 69, 33, 55, 107, 216, 102, 159, 27, 208, 154, 196, 231, 204, 89, 239, 36, 159, 27, 50, + 78, 62, 180, 208, 97, 139, 249, 68, 33, 40, 124, 3, 75, 45, 160, 101, 187, 183, 88, 138, 243, 33, 195, 55, 74, 35, + 139, 179, 58, 60, 201, 27, 192, 43, 81, 71, 41, 203, 229, 191, 239, 113, 156, 255, 255, 27, 177, 190, 65, 181, 55, + 63, 197, 250, 191, 27, 49, 33, 241, 133, 145, 43, 69, 233, 71, 239, 74, 248, 158, 16, 198, 134, 27, 144, 42, 18, + 225, 135, 253, 112, 185, 27, 204, 166, 157, 183, 126, 213, 229, 221, 255, 73, 91, 186, 138, 68, 100, 115, 10, 61, + 226, 68, 132, 4, 46, 79, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1193, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2370095577149988124" + } + }, + "cborHex": "1b20e4455ebfbfdd1c", + "cborBytes": [27, 32, 228, 69, 94, 191, 191, 221, 28], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1194, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14953188262778499793" + } + }, + "cborHex": "1bcf84657fe673f2d1", + "cborBytes": [27, 207, 132, 101, 127, 230, 115, 242, 209], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1195, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15370098267027399591" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff0200022afbdf9401b30700" + } + } + ] + }, + "cborHex": "bf1bd54d8ef08903e3a74cff0200022afbdf9401b30700ff", + "cborBytes": [191, 27, 213, 77, 142, 240, 137, 3, 227, 167, 76, 255, 2, 0, 2, 42, 251, 223, 148, 1, 179, 7, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1196, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b02f2968e81e6adc31e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "998802b4f018097aeb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5346873714337209065" + } + }, + { + "_tag": "ByteArray", + "bytearray": "25" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12233137265689824839" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44acd99f8e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b18d8fd5ddc774" + }, + { + "_tag": "ByteArray", + "bytearray": "c62daa4c144f303f9c01" + }, + { + "_tag": "ByteArray", + "bytearray": "52fb3c5a6c" + } + ] + } + } + ] + }, + "cborHex": "bf4a0b02f2968e81e6adc31e9f49998802b4f018097aeb1b4a33e95071f15ae941251ba9c4d5877a090e47ff4544acd99f8e9f47b18d8fd5ddc7744ac62daa4c144f303f9c014552fb3c5a6cffff", + "cborBytes": [ + 191, 74, 11, 2, 242, 150, 142, 129, 230, 173, 195, 30, 159, 73, 153, 136, 2, 180, 240, 24, 9, 122, 235, 27, 74, + 51, 233, 80, 113, 241, 90, 233, 65, 37, 27, 169, 196, 213, 135, 122, 9, 14, 71, 255, 69, 68, 172, 217, 159, 142, + 159, 71, 177, 141, 143, 213, 221, 199, 116, 74, 198, 45, 170, 76, 20, 79, 48, 63, 156, 1, 69, 82, 251, 60, 90, + 108, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1197, + "sample": { + "_tag": "ByteArray", + "bytearray": "7c28e31581" + }, + "cborHex": "457c28e31581", + "cborBytes": [69, 124, 40, 227, 21, 129], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1198, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff0503d0" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fe17a18622164d3fde6fb8a8" + }, + { + "_tag": "ByteArray", + "bytearray": "e1ca3d8047f1c6947a96" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + }, + "cborHex": "9f9f9f44ff0503d0ff9f4cfe17a18622164d3fde6fb8a84ae1ca3d8047f1c6947a96ffff12ff", + "cborBytes": [ + 159, 159, 159, 68, 255, 5, 3, 208, 255, 159, 76, 254, 23, 161, 134, 34, 22, 77, 63, 222, 111, 184, 168, 74, 225, + 202, 61, 128, 71, 241, 198, 148, 122, 150, 255, 255, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1199, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11009574112802156525" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10188434950585020787" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0bdd67446daa13b0ad432c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3389687920752214103" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5097cddc4157f18a46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2e9dceb3b7ba45876" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57f199ae3174a2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4280478278334413930" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e30bd18d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9630171f191766bff8ea778" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "45" + }, + { + "_tag": "ByteArray", + "bytearray": "b50da1e60414ed4d4d12cd79" + }, + { + "_tag": "ByteArray", + "bytearray": "1e9e6e" + } + ] + }, + "cborHex": "d87a9f1b98c9dd5309e8afedd8669f1b8d64979b5ecb71739fbf4b0bdd67446daa13b0ad432c1b2f0a97345fde4057495097cddc4157f18a4649b2e9dceb3b7ba458764757f199ae3174a21b3b675050b0e5fc6a44e30bd18d4ce9630171f191766bff8ea778ffffff41454cb50da1e60414ed4d4d12cd79431e9e6eff", + "cborBytes": [ + 216, 122, 159, 27, 152, 201, 221, 83, 9, 232, 175, 237, 216, 102, 159, 27, 141, 100, 151, 155, 94, 203, 113, 115, + 159, 191, 75, 11, 221, 103, 68, 109, 170, 19, 176, 173, 67, 44, 27, 47, 10, 151, 52, 95, 222, 64, 87, 73, 80, 151, + 205, 220, 65, 87, 241, 138, 70, 73, 178, 233, 220, 235, 59, 123, 164, 88, 118, 71, 87, 241, 153, 174, 49, 116, + 162, 27, 59, 103, 80, 80, 176, 229, 252, 106, 68, 227, 11, 209, 141, 76, 233, 99, 1, 113, 241, 145, 118, 107, 255, + 142, 167, 120, 255, 255, 255, 65, 69, 76, 181, 13, 161, 230, 4, 20, 237, 77, 77, 18, 205, 121, 67, 30, 158, 110, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1200, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5527108043469362572" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df01" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b4cb43b7b4e32158c9fbf1bfffffffffffffffb42df01ffffff", + "cborBytes": [ + 216, 102, 159, 27, 76, 180, 59, 123, 78, 50, 21, 140, 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 251, 66, + 223, 1, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1201, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff0606ff5b0434200dfffff6" + }, + "cborHex": "4cff0606ff5b0434200dfffff6", + "cborBytes": [76, 255, 6, 6, 255, 91, 4, 52, 32, 13, 255, 255, 246], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1202, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6373205945997334905" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0518" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7986876725910979377" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c2" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0392e05784" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5cd1494" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31408235e36bac6ad260" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18426886207819657173" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7830" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "809509393534901525" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8cc84f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14951439608061458608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8eec4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2878878909613817890" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc5aaf75" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6178db9960272" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5588429480682536314" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4054457461430399461" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4290" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "906416230867061230" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "842063714dfd25521c50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4692284771411271029" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34527e08dcdc9435b34d908f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9252868608245667560" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5592367333216853286" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10550301568246643640" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38e87f892fc9c0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17623713638370585994" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0411894" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14412330979442221589" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6349081989260677989" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b58722d0a8b9419799f9f4205181b6ed71610e0c2433141c2ffffffbf450392e0578444d5cd14944a31408235e36bac6ad2601bffb973604da2afd54278301b0b3bf48123fd5d1544b8cc84f11bcf7e2f1b7f3578b043b8eec41b27f3d51d86e5402244cc5aaf7547f6178db9960272ff1b4d8e170100673d7ad8669f1b38445394697db1e59f424290bf1b0c943cc2737ac9ee4a842063714dfd25521c501b411e582388f19d754c34527e08dcdc9435b34d908f1b8068caf9b3d896e81b4d9c1475bde39d261b926a3360e0967bb84738e87f892fc9c01bf494022dfe492d8a44d0411894ff1bc802e2aa7f02e2151b581c786e2bb69365ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 88, 114, 45, 10, 139, 148, 25, 121, 159, 159, 66, 5, 24, 27, 110, 215, 22, 16, 224, 194, + 67, 49, 65, 194, 255, 255, 255, 191, 69, 3, 146, 224, 87, 132, 68, 213, 205, 20, 148, 74, 49, 64, 130, 53, 227, + 107, 172, 106, 210, 96, 27, 255, 185, 115, 96, 77, 162, 175, 213, 66, 120, 48, 27, 11, 59, 244, 129, 35, 253, 93, + 21, 68, 184, 204, 132, 241, 27, 207, 126, 47, 27, 127, 53, 120, 176, 67, 184, 238, 196, 27, 39, 243, 213, 29, 134, + 229, 64, 34, 68, 204, 90, 175, 117, 71, 246, 23, 141, 185, 150, 2, 114, 255, 27, 77, 142, 23, 1, 0, 103, 61, 122, + 216, 102, 159, 27, 56, 68, 83, 148, 105, 125, 177, 229, 159, 66, 66, 144, 191, 27, 12, 148, 60, 194, 115, 122, + 201, 238, 74, 132, 32, 99, 113, 77, 253, 37, 82, 28, 80, 27, 65, 30, 88, 35, 136, 241, 157, 117, 76, 52, 82, 126, + 8, 220, 220, 148, 53, 179, 77, 144, 143, 27, 128, 104, 202, 249, 179, 216, 150, 232, 27, 77, 156, 20, 117, 189, + 227, 157, 38, 27, 146, 106, 51, 96, 224, 150, 123, 184, 71, 56, 232, 127, 137, 47, 201, 192, 27, 244, 148, 2, 45, + 254, 73, 45, 138, 68, 208, 65, 24, 148, 255, 27, 200, 2, 226, 170, 127, 2, 226, 21, 27, 88, 28, 120, 110, 43, 182, + 147, 101, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1203, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2903757691416079425" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15221083163942892323" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13954302377927603527" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16146981317554689073" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c818f85e6d5d03f06e25ca5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5533811438329409386" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4112dfe75c3b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5659550121020558502" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "888287409448923414" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dd53" + } + ] + }, + "cborHex": "d8669f1b284c383c4ea9ec419f1bd33c267e2b7eb3239fd8669f1bc1a7a41464c375479f1be01599f53bb754314c8c818f85e6d5d03f06e25ca51b4ccc0c2f0b9e2f6a464112dfe75c3b1b4e8ac2d977f30ca6ffff1b0c53d4b14aa7b116414fff42dd53ffff", + "cborBytes": [ + 216, 102, 159, 27, 40, 76, 56, 60, 78, 169, 236, 65, 159, 27, 211, 60, 38, 126, 43, 126, 179, 35, 159, 216, 102, + 159, 27, 193, 167, 164, 20, 100, 195, 117, 71, 159, 27, 224, 21, 153, 245, 59, 183, 84, 49, 76, 140, 129, 143, + 133, 230, 213, 208, 63, 6, 226, 92, 165, 27, 76, 204, 12, 47, 11, 158, 47, 106, 70, 65, 18, 223, 231, 92, 59, 27, + 78, 138, 194, 217, 119, 243, 12, 166, 255, 255, 27, 12, 83, 212, 177, 74, 167, 177, 22, 65, 79, 255, 66, 221, 83, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1204, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "666925058698096301" + } + } + ] + }, + "cborHex": "9f1b094164ceaf81aeadff", + "cborBytes": [159, 27, 9, 65, 100, 206, 175, 129, 174, 173, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1205, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1074735473449299236" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16120926121735704326" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5812962331100593293" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6459097476039655062" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7166908688646336599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af8d036c329c99" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9676485597190755292" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f101fbfc0d847" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16786385346072490375" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4391380431161990389" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18251779020420356842" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0426bd56793e35c705" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11873493536625113724" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "543e45a4fab17740" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18290639228169539457" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5cd2faed" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16392981350393214706" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17401499912060010238" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4418880760268477169" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12050294827717868006" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7d760130bdd7508f35fd" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "07bf38a3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "71cfaaab05bde247e4ea" + }, + { + "_tag": "ByteArray", + "bytearray": "9d" + }, + { + "_tag": "ByteArray", + "bytearray": "b520df3bb7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2463161955623223018" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49fbf1b0eea3a380a74ed241bdfb908e5385f4f061b50abca7115fa3c8d1b59a352eec4f73e961b6375f97afc6cf05747af8d036c329c991b8649c861e6bd13dc477f101fbfc0d8471be8f53888bf7931871b3cf1513c51031cf51bfd4b585127151aea41eeff490426bd56793e35c705d8669f1ba4c71f768d6fba7c80ff48543e45a4fab177409f1bfdd5677855decf81445cd2faedd8669f1be37f91af37ca76f29f1bf17e8bf91153fefe1b3d5304a3a49c52f11ba73b3f4cf4d9b9e64a7d760130bdd7508f35fdffff4407bf38a39f4a71cfaaab05bde247e4ea419d45b520df3bb71b222ee8bf8d2dbeeaffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 191, 27, 14, 234, 58, 56, 10, 116, 237, 36, 27, + 223, 185, 8, 229, 56, 95, 79, 6, 27, 80, 171, 202, 113, 21, 250, 60, 141, 27, 89, 163, 82, 238, 196, 247, 62, 150, + 27, 99, 117, 249, 122, 252, 108, 240, 87, 71, 175, 141, 3, 108, 50, 156, 153, 27, 134, 73, 200, 97, 230, 189, 19, + 220, 71, 127, 16, 31, 191, 192, 216, 71, 27, 232, 245, 56, 136, 191, 121, 49, 135, 27, 60, 241, 81, 60, 81, 3, 28, + 245, 27, 253, 75, 88, 81, 39, 21, 26, 234, 65, 238, 255, 73, 4, 38, 189, 86, 121, 62, 53, 199, 5, 216, 102, 159, + 27, 164, 199, 31, 118, 141, 111, 186, 124, 128, 255, 72, 84, 62, 69, 164, 250, 177, 119, 64, 159, 27, 253, 213, + 103, 120, 85, 222, 207, 129, 68, 92, 210, 250, 237, 216, 102, 159, 27, 227, 127, 145, 175, 55, 202, 118, 242, 159, + 27, 241, 126, 139, 249, 17, 83, 254, 254, 27, 61, 83, 4, 163, 164, 156, 82, 241, 27, 167, 59, 63, 76, 244, 217, + 185, 230, 74, 125, 118, 1, 48, 189, 215, 80, 143, 53, 253, 255, 255, 68, 7, 191, 56, 163, 159, 74, 113, 207, 170, + 171, 5, 189, 226, 71, 228, 234, 65, 157, 69, 181, 32, 223, 59, 183, 27, 34, 46, 232, 191, 141, 45, 190, 234, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1206, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14926096124151983586" + } + }, + "cborHex": "1bcf242557d369ede2", + "cborBytes": [27, 207, 36, 37, 87, 211, 105, 237, 226], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1207, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "72a4f3057411392333539f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1190239406110798221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc9be71150" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2155605077481673159" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7fdfb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4547122247448092370" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8051b24f89eaab509" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9185984090866815910" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6016065648825190144" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18184612286863549061" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08bc58b1d7898d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca76741f05c9293151ff23" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f0105fef9cce607" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d405d9bbf6347f4742074a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47f54f9f5019" + } + } + ] + }, + "cborHex": "bf4b72a4f3057411392333539fbf1b1084946f06e7f18d45bc9be711501b1dea3f65a752d1c743e7fdfb1b3f1a9f97a56b5ed249f8051b24f89eaab5091b7f7b2bdc788193a61b537d5bd547a7c7001bfc5cb88758b4a2854708bc58b1d7898d1bfffffffffffffff412ff4bca76741f05c9293151ff23489f0105fef9cce6074bd405d9bbf6347f4742074a4647f54f9f5019ff", + "cborBytes": [ + 191, 75, 114, 164, 243, 5, 116, 17, 57, 35, 51, 83, 159, 191, 27, 16, 132, 148, 111, 6, 231, 241, 141, 69, 188, + 155, 231, 17, 80, 27, 29, 234, 63, 101, 167, 82, 209, 199, 67, 231, 253, 251, 27, 63, 26, 159, 151, 165, 107, 94, + 210, 73, 248, 5, 27, 36, 248, 158, 170, 181, 9, 27, 127, 123, 43, 220, 120, 129, 147, 166, 27, 83, 125, 91, 213, + 71, 167, 199, 0, 27, 252, 92, 184, 135, 88, 180, 162, 133, 71, 8, 188, 88, 177, 215, 137, 141, 27, 255, 255, 255, + 255, 255, 255, 255, 244, 18, 255, 75, 202, 118, 116, 31, 5, 201, 41, 49, 81, 255, 35, 72, 159, 1, 5, 254, 249, + 204, 230, 7, 75, 212, 5, 217, 187, 246, 52, 127, 71, 66, 7, 74, 70, 71, 245, 79, 159, 80, 25, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1208, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3764909052030072137" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ccfe25a90cd17430d4" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4832719951964926646" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "805f1a12cb96944d04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3063" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfadf6b40cce7208d2361fc6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0108" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "10f2451f48f36cd7d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13707999594428154150" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b103a6b68d5aca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc3840c46b77d2ead6bcd0" + } + } + ] + }, + "cborHex": "bf1b343fa4d5e1e7b5499f49ccfe25a90cd17430d4ff1b4311453103cff2b6bf49805f1a12cb96944d044230634ccfadf6b40cce7208d2361fc6420108ff4910f2451f48f36cd7d61bbe3c9900c716c12647b103a6b68d5aca4bcc3840c46b77d2ead6bcd0ff", + "cborBytes": [ + 191, 27, 52, 63, 164, 213, 225, 231, 181, 73, 159, 73, 204, 254, 37, 169, 12, 209, 116, 48, 212, 255, 27, 67, 17, + 69, 49, 3, 207, 242, 182, 191, 73, 128, 95, 26, 18, 203, 150, 148, 77, 4, 66, 48, 99, 76, 207, 173, 246, 180, 12, + 206, 114, 8, 210, 54, 31, 198, 66, 1, 8, 255, 73, 16, 242, 69, 31, 72, 243, 108, 215, 214, 27, 190, 60, 153, 0, + 199, 22, 193, 38, 71, 177, 3, 166, 182, 141, 90, 202, 75, 204, 56, 64, 196, 107, 119, 210, 234, 214, 188, 208, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1209, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfafd7025645ab686a4b8d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14486156626055062874" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13960249962059115432" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18f801" + } + } + ] + }, + "cborHex": "bf004bdfafd7025645ab686a4b8d0b1bc9092ab350aee55a0f1bc1bcc5603c31aba8144318f801ff", + "cborBytes": [ + 191, 0, 75, 223, 175, 215, 2, 86, 69, 171, 104, 106, 75, 141, 11, 27, 201, 9, 42, 179, 80, 174, 229, 90, 15, 27, + 193, 188, 197, 96, 60, 49, 171, 168, 20, 67, 24, 248, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1210, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3030411810451432566" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "807444f02e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "729056678439785248" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7614711872203734419" + } + }, + { + "_tag": "ByteArray", + "bytearray": "23" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12785940123279485864" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11485557722394539268" + } + }, + { + "_tag": "ByteArray", + "bytearray": "78a426ac99" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8638648542499571688" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11023108684917268115" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14622567238652445688" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13142783143738793870" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16331216125680872380" + } + }, + { + "_tag": "ByteArray", + "bytearray": "10c7d0f6293cf26ced" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7103432653637779204" + } + }, + { + "_tag": "ByteArray", + "bytearray": "007210" + }, + { + "_tag": "ByteArray", + "bytearray": "6ec31fa8" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1041035034564485763" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13993462837920724609" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8046877604258189894" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8daaf34205d93ad19ee53" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af584ce86071c0176e724a73" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905039fd8669f1b2a0e2f7c5d1b24769f9f45807444f02e1b0a1e212fb38793201b69ace41a71a73d9341231bb170c8cc9f7ceba8ff9f1b9f64e5e53a9235044578a426ac991b77e2a514732207e81b98f9f2f22d045e931bcaedcb6e0c24c3f8ffd8669f1bb6648ba2c28adf8e9f1be2a4228a3156ebbc4910c7d0f6293cf26ced1b6294765ce5fd7f0443007210446ec31fa8ffffbf1b0e727fd929f3e2831bc232c44f7fe4f6811b6fac408c00db12464ba8daaf34205d93ad19ee5341b14caf584ce86071c0176e724a73ffffffff", + "cborBytes": [ + 217, 5, 3, 159, 216, 102, 159, 27, 42, 14, 47, 124, 93, 27, 36, 118, 159, 159, 69, 128, 116, 68, 240, 46, 27, 10, + 30, 33, 47, 179, 135, 147, 32, 27, 105, 172, 228, 26, 113, 167, 61, 147, 65, 35, 27, 177, 112, 200, 204, 159, 124, + 235, 168, 255, 159, 27, 159, 100, 229, 229, 58, 146, 53, 4, 69, 120, 164, 38, 172, 153, 27, 119, 226, 165, 20, + 115, 34, 7, 232, 27, 152, 249, 242, 242, 45, 4, 94, 147, 27, 202, 237, 203, 110, 12, 36, 195, 248, 255, 216, 102, + 159, 27, 182, 100, 139, 162, 194, 138, 223, 142, 159, 27, 226, 164, 34, 138, 49, 86, 235, 188, 73, 16, 199, 208, + 246, 41, 60, 242, 108, 237, 27, 98, 148, 118, 92, 229, 253, 127, 4, 67, 0, 114, 16, 68, 110, 195, 31, 168, 255, + 255, 191, 27, 14, 114, 127, 217, 41, 243, 226, 131, 27, 194, 50, 196, 79, 127, 228, 246, 129, 27, 111, 172, 64, + 140, 0, 219, 18, 70, 75, 168, 218, 175, 52, 32, 93, 147, 173, 25, 238, 83, 65, 177, 76, 175, 88, 76, 232, 96, 113, + 192, 23, 110, 114, 74, 115, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1211, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15348551369777542962" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9529330321963205145" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0104" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5823838441595505701" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9b3441b763b9e93ffc17" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c92803ad" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ffa10" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5682297120446687694" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4176a5fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15137501717591290528" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe020506ff" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bd5010226946cf7321b843efb7073f9c2194201049f1b50d26e34e4908c254a9b3441b763b9e93ffc17ff41078044c92803adbf01438ffa101b4edb931ffc7329ce444176a5fc1bd213359c37e4f2a045fe020506ffffff", + "cborBytes": [ + 191, 27, 213, 1, 2, 38, 148, 108, 247, 50, 27, 132, 62, 251, 112, 115, 249, 194, 25, 66, 1, 4, 159, 27, 80, 210, + 110, 52, 228, 144, 140, 37, 74, 155, 52, 65, 183, 99, 185, 233, 63, 252, 23, 255, 65, 7, 128, 68, 201, 40, 3, 173, + 191, 1, 67, 143, 250, 16, 27, 78, 219, 147, 31, 252, 115, 41, 206, 68, 65, 118, 165, 252, 27, 210, 19, 53, 156, + 55, 228, 242, 160, 69, 254, 2, 5, 6, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1212, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "116c8459b9a793e657d3f721" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6604f026a81a4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7d0265c054026edc" + }, + { + "_tag": "ByteArray", + "bytearray": "cc7a3a" + } + ] + } + } + ] + }, + "cborHex": "bf4c116c8459b9a793e657d3f721a047d6604f026a81a4d8669f1bfffffffffffffffc9f487d0265c054026edc43cc7a3affffff", + "cborBytes": [ + 191, 76, 17, 108, 132, 89, 185, 167, 147, 230, 87, 211, 247, 33, 160, 71, 214, 96, 79, 2, 106, 129, 164, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 72, 125, 2, 101, 192, 84, 2, 110, 220, 67, 204, 122, 58, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1213, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0278fd65ff5267" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0603fefdf9a102e5fc057cce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0103ab06021602" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9001da04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6436463812826775762" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e05a728340689b2146" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14039791220629562296" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe58060c5d" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "37" + } + ] + }, + "cborHex": "9fbf470278fd65ff526741fa4c0603fefdf9a102e5fc057cce470103ab06021602449001da041b5952e9bc653240d241ab1bfffffffffffffff349e05a728340689b21461bc2d75bbaaa45e3b841f445fe58060c5dff4137ff", + "cborBytes": [ + 159, 191, 71, 2, 120, 253, 101, 255, 82, 103, 65, 250, 76, 6, 3, 254, 253, 249, 161, 2, 229, 252, 5, 124, 206, 71, + 1, 3, 171, 6, 2, 22, 2, 68, 144, 1, 218, 4, 27, 89, 82, 233, 188, 101, 50, 64, 210, 65, 171, 27, 255, 255, 255, + 255, 255, 255, 255, 243, 73, 224, 90, 114, 131, 64, 104, 155, 33, 70, 27, 194, 215, 91, 186, 170, 69, 227, 184, + 65, 244, 69, 254, 88, 6, 12, 93, 255, 65, 55, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1214, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2395916996630784727" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16106583654676922924" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b214001d0777faad7d8669f1bdf86147f6221822c80ffff", + "cborBytes": [ + 191, 27, 33, 64, 1, 208, 119, 127, 170, 215, 216, 102, 159, 27, 223, 134, 20, 127, 98, 33, 130, 44, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1215, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13000581106529098533" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4803349374547095588" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "458763615617973579" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "72f3f0c76de5" + }, + { + "_tag": "ByteArray", + "bytearray": "5d5f05fbd2baca198304af" + } + ] + } + ] + }, + "cborHex": "d8669f1bb46b57a2e8525b259fa01b42a8ecce91f97024d8669f1b065ddb13e8c87d4b9f804672f3f0c76de54b5d5f05fbd2baca198304afffffffff", + "cborBytes": [ + 216, 102, 159, 27, 180, 107, 87, 162, 232, 82, 91, 37, 159, 160, 27, 66, 168, 236, 206, 145, 249, 112, 36, 216, + 102, 159, 27, 6, 93, 219, 19, 232, 200, 125, 75, 159, 128, 70, 114, 243, 240, 199, 109, 229, 75, 93, 95, 5, 251, + 210, 186, 202, 25, 131, 4, 175, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1216, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4811356429834889918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5410b2d347" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16152029878597568475" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7040238218926969092" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd2b860ad1189809b4557a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "121cec33af68a61e063934" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecddebcf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a540b71a300ae7c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17142496906679769448" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6083148259159621680" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16882647167393689442" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9570874299582471452" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16780524003499813272" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2a8a1a71a577fe4c7329" + }, + { + "_tag": "ByteArray", + "bytearray": "57eb44d7f747ce8b6c5d" + }, + { + "_tag": "ByteArray", + "bytearray": "a1d66a5941a6656f4e92" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e04080a9978e9ec768f3" + } + ] + }, + "cborHex": "d9050b9fbf1b42c55f2e6819aabe455410b2d3471be0278998f34dc7db1b61b3f35bfd4551044bcd2b860ad1189809b4557a4b121cec33af68a61e06393444ecddebcf486a540b71a300ae7cffd8669f1bede6621c9de1596880ff1b546baf1c9f3ec030d8669f1bea4b362690c16f629fd8669f1b84d2937780875d1c9f1be8e065ac9585a9984a2a8a1a71a577fe4c73294a57eb44d7f747ce8b6c5d4aa1d66a5941a6656f4e92ffffffff4ae04080a9978e9ec768f3ff", + "cborBytes": [ + 217, 5, 11, 159, 191, 27, 66, 197, 95, 46, 104, 25, 170, 190, 69, 84, 16, 178, 211, 71, 27, 224, 39, 137, 152, + 243, 77, 199, 219, 27, 97, 179, 243, 91, 253, 69, 81, 4, 75, 205, 43, 134, 10, 209, 24, 152, 9, 180, 85, 122, 75, + 18, 28, 236, 51, 175, 104, 166, 30, 6, 57, 52, 68, 236, 221, 235, 207, 72, 106, 84, 11, 113, 163, 0, 174, 124, + 255, 216, 102, 159, 27, 237, 230, 98, 28, 157, 225, 89, 104, 128, 255, 27, 84, 107, 175, 28, 159, 62, 192, 48, + 216, 102, 159, 27, 234, 75, 54, 38, 144, 193, 111, 98, 159, 216, 102, 159, 27, 132, 210, 147, 119, 128, 135, 93, + 28, 159, 27, 232, 224, 101, 172, 149, 133, 169, 152, 74, 42, 138, 26, 113, 165, 119, 254, 76, 115, 41, 74, 87, + 235, 68, 215, 247, 71, 206, 139, 108, 93, 74, 161, 214, 106, 89, 65, 166, 101, 111, 78, 146, 255, 255, 255, 255, + 74, 224, 64, 128, 169, 151, 142, 158, 199, 104, 243, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1217, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "599d900eeaa1dc55a11c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2660837611469803063" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10903855267604832421" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12222482550718378801" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13239764248815674373" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "182960914863160557" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d7b5388c6050eccd6" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "882644" + }, + { + "_tag": "ByteArray", + "bytearray": "46083d628efd5d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18331197103850412810" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3347086947737629036" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17664977559921740474" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4ae1a3b87c62a3" + }, + { + "_tag": "ByteArray", + "bytearray": "28" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab10606356ab94b2e240" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bee25cab3f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b66d9e8e10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "44b521539f15972d3f" + }, + { + "_tag": "ByteArray", + "bytearray": "4f3d1de35e95c99e2a2da0" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49fd87c9f4a599d900eeaa1dc55a11cbf1b24ed31b5bca80e371b9752469843dba0a51ba99efb1f54fab3311bb7bd176fe0932405ffbf1b028a01fb9232fced498d7b5388c6050eccd6ff9f438826444746083d628efd5d1bfe657ea4a2ac5b0affd8669f1b2e733dd8683f716c80ffffd8669f1bf5269b7f6861caba9f474ae1a3b87c62a34128bf4aab10606356ab94b2e24045bee25cab3f45b66d9e8e1041ecff4944b521539f15972d3f4b4f3d1de35e95c99e2a2da0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 216, 124, 159, 74, 89, 157, 144, 14, 234, 161, + 220, 85, 161, 28, 191, 27, 36, 237, 49, 181, 188, 168, 14, 55, 27, 151, 82, 70, 152, 67, 219, 160, 165, 27, 169, + 158, 251, 31, 84, 250, 179, 49, 27, 183, 189, 23, 111, 224, 147, 36, 5, 255, 191, 27, 2, 138, 1, 251, 146, 50, + 252, 237, 73, 141, 123, 83, 136, 198, 5, 14, 204, 214, 255, 159, 67, 136, 38, 68, 71, 70, 8, 61, 98, 142, 253, 93, + 27, 254, 101, 126, 164, 162, 172, 91, 10, 255, 216, 102, 159, 27, 46, 115, 61, 216, 104, 63, 113, 108, 128, 255, + 255, 216, 102, 159, 27, 245, 38, 155, 127, 104, 97, 202, 186, 159, 71, 74, 225, 163, 184, 124, 98, 163, 65, 40, + 191, 74, 171, 16, 96, 99, 86, 171, 148, 178, 226, 64, 69, 190, 226, 92, 171, 63, 69, 182, 109, 158, 142, 16, 65, + 236, 255, 73, 68, 181, 33, 83, 159, 21, 151, 45, 63, 75, 79, 61, 29, 227, 94, 149, 201, 158, 42, 45, 160, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1218, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10873249483753588780" + } + }, + "cborHex": "1b96e58acbe955082c", + "cborBytes": [27, 150, 229, 138, 203, 233, 85, 8, 44], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1219, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "229427162932526703" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15523655186053943820" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1016576572824677226" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11263143434463204933" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5820453709496764696" + } + }, + { + "_tag": "ByteArray", + "bytearray": "543401" + }, + { + "_tag": "ByteArray", + "bytearray": "bed5ac2dd7a98507f6" + }, + { + "_tag": "ByteArray", + "bytearray": "f3d472c5a71cf9648b74c6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1677682164520798714" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef74c143e2366cf139" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3584877897200567770" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17233899022656237631" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ab2eb09ac28c2e0292" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16798055162604854184" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8cd5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9845591172941256353" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12900318972682168946" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e82d051a9b8ff0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18176759064305893857" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11198167478564084544" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6de36cbf3d87b0" + }, + { + "_tag": "ByteArray", + "bytearray": "b2193d8398adc3" + }, + { + "_tag": "ByteArray", + "bytearray": "d07d943432ee" + } + ] + } + } + ] + }, + "cborHex": "bf1b032f16ca046b3e6f1bd76f1a24d465520c1b0e1b9b01c632eb6ad8669f1b9c4eb9476973d6459f1b50c667cf8a28c9184354340149bed5ac2dd7a98507f64bf3d472c5a71cf9648b74c6ffff1b1748530a364549fa49ef74c143e2366cf1391b31c00b7439ca05dad8669f1bef2b1bda1c60703f9f49ab2eb09ac28c2e02921be91eae2ba47a9ba8428cd51b88a29101f2e296a1ffff1bb30723c1bff3ea7247e82d051a9b8ff01bfc40d2107bd081e1d8669f1b9b67e1fdc724db409f476de36cbf3d87b047b2193d8398adc346d07d943432eeffffff", + "cborBytes": [ + 191, 27, 3, 47, 22, 202, 4, 107, 62, 111, 27, 215, 111, 26, 36, 212, 101, 82, 12, 27, 14, 27, 155, 1, 198, 50, + 235, 106, 216, 102, 159, 27, 156, 78, 185, 71, 105, 115, 214, 69, 159, 27, 80, 198, 103, 207, 138, 40, 201, 24, + 67, 84, 52, 1, 73, 190, 213, 172, 45, 215, 169, 133, 7, 246, 75, 243, 212, 114, 197, 167, 28, 249, 100, 139, 116, + 198, 255, 255, 27, 23, 72, 83, 10, 54, 69, 73, 250, 73, 239, 116, 193, 67, 226, 54, 108, 241, 57, 27, 49, 192, 11, + 116, 57, 202, 5, 218, 216, 102, 159, 27, 239, 43, 27, 218, 28, 96, 112, 63, 159, 73, 171, 46, 176, 154, 194, 140, + 46, 2, 146, 27, 233, 30, 174, 43, 164, 122, 155, 168, 66, 140, 213, 27, 136, 162, 145, 1, 242, 226, 150, 161, 255, + 255, 27, 179, 7, 35, 193, 191, 243, 234, 114, 71, 232, 45, 5, 26, 155, 143, 240, 27, 252, 64, 210, 16, 123, 208, + 129, 225, 216, 102, 159, 27, 155, 103, 225, 253, 199, 36, 219, 64, 159, 71, 109, 227, 108, 191, 61, 135, 176, 71, + 178, 25, 61, 131, 152, 173, 195, 70, 208, 125, 148, 52, 50, 238, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1220, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6135378853082405604" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17626165542327058673" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5380341611361279656" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12693154649870613645" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12823961792802351468" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1081005679957544893" + } + }, + { + "_tag": "ByteArray", + "bytearray": "129cbf88" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12766024758419863071" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6621" + } + ] + } + ] + }, + "cborHex": "9f1b55253e8f6c6b9ae4d8669f1bf49cb82c5ea280f180ffa09fd8669f1b4aaad03073711ea89f1bb02724e720a2bc8d1bb1f7dd4e692a696c1b0f0080f0420c8fbd44129cbf881bb12a07e16775361fffff426621ffff", + "cborBytes": [ + 159, 27, 85, 37, 62, 143, 108, 107, 154, 228, 216, 102, 159, 27, 244, 156, 184, 44, 94, 162, 128, 241, 128, 255, + 160, 159, 216, 102, 159, 27, 74, 170, 208, 48, 115, 113, 30, 168, 159, 27, 176, 39, 36, 231, 32, 162, 188, 141, + 27, 177, 247, 221, 78, 105, 42, 105, 108, 27, 15, 0, 128, 240, 66, 12, 143, 189, 68, 18, 156, 191, 136, 27, 177, + 42, 7, 225, 103, 117, 54, 31, 255, 255, 66, 102, 33, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1221, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "59308f489337311fd00990" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17191750287878619343" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "93f4" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2af3efdfc3891e72c0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1813901749816846468" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3953208698376497691" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "340532c64d1959" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4801354666063950564" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "332a039a213d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7700559466316884946" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f2655ca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50459ff046572ee66874" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f41b860767a9e3d7ae5f5958" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16035917916823888259" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7afe45cb29c70e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8522302484974100065" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9afa683956" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7131883029092027497" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9445934781657965294" + } + } + ] + }, + "cborHex": "d905039f4b59308f489337311fd00990d8669f1bee955dcd103980cf9f4293f4ffff492af3efdfc3891e72c0d8669f1b192c4607ef4ae8849fbf1b36dc9e5dbdb72a1b47340532c64d1959ffbf1b42a1d6a14f67f2e446332a039a213d1b6adde2090996ebd2447f2655ca4a50459ff046572ee668744cf41b860767a9e3d7ae5f5958ff9f1bde8b0662279c2183477afe45cb29c70e1b76454cf4fd4f5e61459afa6839561b62f989d420aacc69ffffff1b8316b3a3203ae2eeff", + "cborBytes": [ + 217, 5, 3, 159, 75, 89, 48, 143, 72, 147, 55, 49, 31, 208, 9, 144, 216, 102, 159, 27, 238, 149, 93, 205, 16, 57, + 128, 207, 159, 66, 147, 244, 255, 255, 73, 42, 243, 239, 223, 195, 137, 30, 114, 192, 216, 102, 159, 27, 25, 44, + 70, 7, 239, 74, 232, 132, 159, 191, 27, 54, 220, 158, 93, 189, 183, 42, 27, 71, 52, 5, 50, 198, 77, 25, 89, 255, + 191, 27, 66, 161, 214, 161, 79, 103, 242, 228, 70, 51, 42, 3, 154, 33, 61, 27, 106, 221, 226, 9, 9, 150, 235, 210, + 68, 127, 38, 85, 202, 74, 80, 69, 159, 240, 70, 87, 46, 230, 104, 116, 76, 244, 27, 134, 7, 103, 169, 227, 215, + 174, 95, 89, 88, 255, 159, 27, 222, 139, 6, 98, 39, 156, 33, 131, 71, 122, 254, 69, 203, 41, 199, 14, 27, 118, 69, + 76, 244, 253, 79, 94, 97, 69, 154, 250, 104, 57, 86, 27, 98, 249, 137, 212, 32, 170, 204, 105, 255, 255, 255, 27, + 131, 22, 179, 163, 32, 58, 226, 238, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1222, + "sample": { + "_tag": "ByteArray", + "bytearray": "bfe281a5" + }, + "cborHex": "44bfe281a5", + "cborBytes": [68, 191, 226, 129, 165], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1223, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8248656509072603223" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0712" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1536589944921771313" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15566357494418991839" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bc89a5d8990c10d4cbbb2df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "115f" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7bfb9d" + } + ] + }, + "cborHex": "d8669f1b72791d64497c78579f420712bf1b15531069e87fcd314100ffd8669f1bd806cfaac5956adf9f1bffffffffffffffebffffbf4c3bc89a5d8990c10d4cbbb2df42115fff437bfb9dffff", + "cborBytes": [ + 216, 102, 159, 27, 114, 121, 29, 100, 73, 124, 120, 87, 159, 66, 7, 18, 191, 27, 21, 83, 16, 105, 232, 127, 205, + 49, 65, 0, 255, 216, 102, 159, 27, 216, 6, 207, 170, 197, 149, 106, 223, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 235, 255, 255, 191, 76, 59, 200, 154, 93, 137, 144, 193, 13, 76, 187, 178, 223, 66, 17, 95, 255, 67, 123, + 251, 157, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1224, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4038280608357365714" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "83" + }, + { + "_tag": "ByteArray", + "bytearray": "3d02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7204962638660452977" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10327275183022682800" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12049266417079182321" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + }, + "cborHex": "9fd905039f1b380adad14c7d37d2d9050b809f4183423d021b63fd2b58a95142711b8f51da100dc632b01ba73797f7720c63f1ffa0ff0412ff", + "cborBytes": [ + 159, 217, 5, 3, 159, 27, 56, 10, 218, 209, 76, 125, 55, 210, 217, 5, 11, 128, 159, 65, 131, 66, 61, 2, 27, 99, + 253, 43, 88, 169, 81, 66, 113, 27, 143, 81, 218, 16, 13, 198, 50, 176, 27, 167, 55, 151, 247, 114, 12, 99, 241, + 255, 160, 255, 4, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1225, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d7fbe01d168965205ed092fe" + } + ] + }, + "cborHex": "d87e9f4cd7fbe01d168965205ed092feff", + "cborBytes": [216, 126, 159, 76, 215, 251, 224, 29, 22, 137, 101, 32, 94, 208, 146, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1226, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8597238980731486801" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4429232963019603712" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17517574994547712659" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ba865f1c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12191990432046097913" + } + }, + { + "_tag": "ByteArray", + "bytearray": "466e5ed53493587a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14329303643520692526" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ec" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4615304043487630900" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "467dae75a22db52a" + }, + { + "_tag": "ByteArray", + "bytearray": "cdb7832d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8201757893807694271" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14916125168655080555" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6614db7e7cd1e88c" + }, + { + "_tag": "ByteArray", + "bytearray": "b21a93" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10991504342860271752" + } + } + ] + }, + "cborHex": "d8669f1b774f874d87a442519fd8669f1b3d77cbe9ac3bff009fd8669f1bf31aeda53c4822939f44ba865f1c1ba932a6b3b711a5f948466e5ed53493587affffd8669f1bc6dbe9be6ec2f12e9f41ecffff1b400cda931a8116349f48467dae75a22db52a44cdb7832d1b71d27f598229e1bfffffff1bcf00b8cfd6f31c6b486614db7e7cd1e88c43b21a931b9889aaf6df599088ffff", + "cborBytes": [ + 216, 102, 159, 27, 119, 79, 135, 77, 135, 164, 66, 81, 159, 216, 102, 159, 27, 61, 119, 203, 233, 172, 59, 255, 0, + 159, 216, 102, 159, 27, 243, 26, 237, 165, 60, 72, 34, 147, 159, 68, 186, 134, 95, 28, 27, 169, 50, 166, 179, 183, + 17, 165, 249, 72, 70, 110, 94, 213, 52, 147, 88, 122, 255, 255, 216, 102, 159, 27, 198, 219, 233, 190, 110, 194, + 241, 46, 159, 65, 236, 255, 255, 27, 64, 12, 218, 147, 26, 129, 22, 52, 159, 72, 70, 125, 174, 117, 162, 45, 181, + 42, 68, 205, 183, 131, 45, 27, 113, 210, 127, 89, 130, 41, 225, 191, 255, 255, 255, 27, 207, 0, 184, 207, 214, + 243, 28, 107, 72, 102, 20, 219, 126, 124, 209, 232, 140, 67, 178, 26, 147, 27, 152, 137, 170, 246, 223, 89, 144, + 136, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1227, + "sample": { + "_tag": "ByteArray", + "bytearray": "bf0646" + }, + "cborHex": "43bf0646", + "cborBytes": [67, 191, 6, 70], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1228, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ea14fa4850" + }, + { + "_tag": "ByteArray", + "bytearray": "7708910692fcc6" + }, + { + "_tag": "ByteArray", + "bytearray": "9ef4f59f74dd79" + }, + { + "_tag": "ByteArray", + "bytearray": "baa96120f8503c11ed3f7e1e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18207278939966218001" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5eb7eff34de9d2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7136990163382342787" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27810b73620b964d5ac146" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7189298815471110456" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3636265140414695310" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9231792839385483920" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "541146dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10901684675006198968" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4daefe5037a888ed594e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13213552177100062726" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d63dc14d57247ea822f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14634767373800610103" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e746" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1711526854520133760" + } + } + ] + } + ] + }, + "cborHex": "9f45ea14fa4850477708910692fcc6479ef4f59f74dd794cbaa96120f8503c11ed3f7e1ed8669f1bfcad3fbac7231f119f475eb7eff34de9d2bf1b630baebd7ddc94834b27810b73620b964d5ac1461b63c5852ea04ac9381b32769be1238dc78e1b801deaacdf910a9044541146dd1b974a9073cb1074b84a4daefe5037a888ed594e1bb75ff7b2592380064ad63dc14d57247ea822f21bcb1923635ddc993742e746ff1b17c0909b2b36d880ffffff", + "cborBytes": [ + 159, 69, 234, 20, 250, 72, 80, 71, 119, 8, 145, 6, 146, 252, 198, 71, 158, 244, 245, 159, 116, 221, 121, 76, 186, + 169, 97, 32, 248, 80, 60, 17, 237, 63, 126, 30, 216, 102, 159, 27, 252, 173, 63, 186, 199, 35, 31, 17, 159, 71, + 94, 183, 239, 243, 77, 233, 210, 191, 27, 99, 11, 174, 189, 125, 220, 148, 131, 75, 39, 129, 11, 115, 98, 11, 150, + 77, 90, 193, 70, 27, 99, 197, 133, 46, 160, 74, 201, 56, 27, 50, 118, 155, 225, 35, 141, 199, 142, 27, 128, 29, + 234, 172, 223, 145, 10, 144, 68, 84, 17, 70, 221, 27, 151, 74, 144, 115, 203, 16, 116, 184, 74, 77, 174, 254, 80, + 55, 168, 136, 237, 89, 78, 27, 183, 95, 247, 178, 89, 35, 128, 6, 74, 214, 61, 193, 77, 87, 36, 126, 168, 34, 242, + 27, 203, 25, 35, 99, 93, 220, 153, 55, 66, 231, 70, 255, 27, 23, 192, 144, 155, 43, 54, 216, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1229, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7359342346227922275" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "59690f142046ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8662365737094686529" + } + }, + { + "_tag": "ByteArray", + "bytearray": "988259d64824c1" + }, + { + "_tag": "ByteArray", + "bytearray": "6eea30fd651ba8fbf6" + }, + { + "_tag": "ByteArray", + "bytearray": "804a" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5131699536961683609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0a71f4a7e1e10c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1114591423061877512" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2866838908673205314" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8596942483657395283" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3ea37f2aacc5d0407e33" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "606721049467050951" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4059345333557243911" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b1b1abee8c6adf804" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "580728577124562629" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7216046860333662880" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b6621a2df5767b5639f9f4759690f142046ed1b7836e7be220b274147988259d64824c1496eea30fd651ba8fbf642804affa0d8669f1b4737758a3aa340999f470a71f4a7e1e10cffff9f1b0f77d2fe714ce3081b27c90ecc5bbc24421b774e79a3ecdd0c534a3ea37f2aacc5d0407e33ffbf1b086b8194773c5bc71b3855b112d351b007499b1b1abee8c6adf8041b080f2990666d76c5ffffffd8669f1b64248c6320c2c2a080ff0680ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 102, 33, 162, 223, 87, 103, 181, 99, 159, 159, 71, 89, 105, 15, 20, 32, 70, 237, 27, 120, + 54, 231, 190, 34, 11, 39, 65, 71, 152, 130, 89, 214, 72, 36, 193, 73, 110, 234, 48, 253, 101, 27, 168, 251, 246, + 66, 128, 74, 255, 160, 216, 102, 159, 27, 71, 55, 117, 138, 58, 163, 64, 153, 159, 71, 10, 113, 244, 167, 225, + 225, 12, 255, 255, 159, 27, 15, 119, 210, 254, 113, 76, 227, 8, 27, 39, 201, 14, 204, 91, 188, 36, 66, 27, 119, + 78, 121, 163, 236, 221, 12, 83, 74, 62, 163, 127, 42, 172, 197, 208, 64, 126, 51, 255, 191, 27, 8, 107, 129, 148, + 119, 60, 91, 199, 27, 56, 85, 177, 18, 211, 81, 176, 7, 73, 155, 27, 26, 190, 232, 198, 173, 248, 4, 27, 8, 15, + 41, 144, 102, 109, 118, 197, 255, 255, 255, 216, 102, 159, 27, 100, 36, 140, 99, 32, 194, 194, 160, 128, 255, 6, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1230, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d41c33" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd905069f43d41c33a0ffff", + "cborBytes": [159, 217, 5, 6, 159, 67, 212, 28, 51, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1231, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74f90505" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5500729463703659433" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f21ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffd6" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "200040d0669e" + } + ] + }, + "cborHex": "d905079fbf0b4474f905051b4c56844d9994e3a9435f21ba1bffffffffffffffec42ffd6ff46200040d0669eff", + "cborBytes": [ + 217, 5, 7, 159, 191, 11, 68, 116, 249, 5, 5, 27, 76, 86, 132, 77, 153, 148, 227, 169, 67, 95, 33, 186, 27, 255, + 255, 255, 255, 255, 255, 255, 236, 66, 255, 214, 255, 70, 32, 0, 64, 208, 102, 158, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1232, + "sample": { + "_tag": "ByteArray", + "bytearray": "dd04f9" + }, + "cborHex": "43dd04f9", + "cborBytes": [67, 221, 4, 249], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1233, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "15" + }, + { + "_tag": "ByteArray", + "bytearray": "c00bda4c7f9306871b72" + } + ] + }, + "cborHex": "9f41154ac00bda4c7f9306871b72ff", + "cborBytes": [159, 65, 21, 74, 192, 11, 218, 76, 127, 147, 6, 135, 27, 114, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1234, + "sample": { + "_tag": "ByteArray", + "bytearray": "f901" + }, + "cborHex": "42f901", + "cborBytes": [66, 249, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1235, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff812e" + }, + "cborHex": "43ff812e", + "cborBytes": [67, 255, 129, 46], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1236, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3941890813279409820" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e78c0d36cb2" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2402837938076686748" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d555ab509" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5465751180271275005" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8152048800042385835" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4276399028734692036" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6379465849486002713" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d80c22a88e88681cd149" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11581792898870401112" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b0b0" + } + ] + }, + "cborHex": "9f1b36b468cf44e5169c464e78c0d36cb29fd8669f1b2158985fb7e4999c9f452d555ab5091b4bda3fbd5abdcbfd1b7121e531362d01ab1b3b58d242618e8ac41b58886a63e7594a19ffff4ad80c22a88e88681cd149ff1ba0bacb474f4fd85842b0b0ff", + "cborBytes": [ + 159, 27, 54, 180, 104, 207, 68, 229, 22, 156, 70, 78, 120, 192, 211, 108, 178, 159, 216, 102, 159, 27, 33, 88, + 152, 95, 183, 228, 153, 156, 159, 69, 45, 85, 90, 181, 9, 27, 75, 218, 63, 189, 90, 189, 203, 253, 27, 113, 33, + 229, 49, 54, 45, 1, 171, 27, 59, 88, 210, 66, 97, 142, 138, 196, 27, 88, 136, 106, 99, 231, 89, 74, 25, 255, 255, + 74, 216, 12, 34, 168, 142, 136, 104, 28, 209, 73, 255, 27, 160, 186, 203, 71, 79, 79, 216, 88, 66, 176, 176, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1237, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18160943194779278458" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17054215323098580386" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8350381615906488974" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfc08a19d66dddc7a9f1becacbe7ab05085a21b73e283d6630f028effffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 252, 8, 161, 157, 102, 221, 220, 122, 159, 27, 236, 172, 190, 122, 176, 80, 133, 162, 27, + 115, 226, 131, 214, 99, 15, 2, 142, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1238, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16805539546431143141" + }, + "fields": [] + }, + "cborHex": "d8669f1be939452d8bcebce580ff", + "cborBytes": [216, 102, 159, 27, 233, 57, 69, 45, 139, 206, 188, 229, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1239, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11560006975817581949" + } + } + } + ] + }, + "cborHex": "bf42c8d61ba06d6518d2a5057dff", + "cborBytes": [191, 66, 200, 214, 27, 160, 109, 101, 24, 210, 165, 5, 125, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1240, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15017405486396291125" + }, + "fields": [] + } + ] + }, + "cborHex": "d905019fd8669f1bd0688ab968a7383580ffff", + "cborBytes": [217, 5, 1, 159, 216, 102, 159, 27, 208, 104, 138, 185, 104, 167, 56, 53, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1241, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8211876444123312930" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea2398574dc81b9a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37f704fc44b1a95f8d61" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "849a07ee61f9eed3af8c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f14fc41e90" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8216782575968576422" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17661704963791689563" + } + }, + { + "_tag": "ByteArray", + "bytearray": "45" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e349343a3a914d690dccce" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a6cab9df" + }, + { + "_tag": "ByteArray", + "bytearray": "67bd6704" + } + ] + } + ] + }, + "cborHex": "d8669f1b71f6721e175e33229fbf48ea2398574dc81b9a4a37f704fc44b1a95f8d61ff4a849a07ee61f9eed3af8c9f9f45f14fc41e901b7207e037ed39e3a61bf51afb16be8e975b4145ff4be349343a3a914d690dccceff9f44a6cab9df4467bd6704ffffff", + "cborBytes": [ + 216, 102, 159, 27, 113, 246, 114, 30, 23, 94, 51, 34, 159, 191, 72, 234, 35, 152, 87, 77, 200, 27, 154, 74, 55, + 247, 4, 252, 68, 177, 169, 95, 141, 97, 255, 74, 132, 154, 7, 238, 97, 249, 238, 211, 175, 140, 159, 159, 69, 241, + 79, 196, 30, 144, 27, 114, 7, 224, 55, 237, 57, 227, 166, 27, 245, 26, 251, 22, 190, 142, 151, 91, 65, 69, 255, + 75, 227, 73, 52, 58, 58, 145, 77, 105, 13, 204, 206, 255, 159, 68, 166, 202, 185, 223, 68, 103, 189, 103, 4, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1242, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9b2a1cbd56295a90147d12a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2696595442148181002" + } + }, + { + "_tag": "ByteArray", + "bytearray": "60e4a72b829d220a5b11" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7260806504995178904" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3556946848673475212" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cc70c5ddc1" + }, + { + "_tag": "ByteArray", + "bytearray": "8ae938b71fb0c1e35a222c" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cc1f619591da4dd278" + } + ] + }, + "cborHex": "9f4c9b2a1cbd56295a90147d12a81b256c3b44782e040a4a60e4a72b829d220a5b119f1b64c3910c01154998d8669f1b315cd0503820aa8c9f45cc70c5ddc14b8ae938b71fb0c1e35a222cffffff49cc1f619591da4dd278ff", + "cborBytes": [ + 159, 76, 155, 42, 28, 189, 86, 41, 90, 144, 20, 125, 18, 168, 27, 37, 108, 59, 68, 120, 46, 4, 10, 74, 96, 228, + 167, 43, 130, 157, 34, 10, 91, 17, 159, 27, 100, 195, 145, 12, 1, 21, 73, 152, 216, 102, 159, 27, 49, 92, 208, 80, + 56, 32, 170, 140, 159, 69, 204, 112, 197, 221, 193, 75, 138, 233, 56, 183, 31, 176, 193, 227, 90, 34, 44, 255, + 255, 255, 73, 204, 31, 97, 149, 145, 218, 77, 210, 120, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1243, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12954037220087409655" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1738079202397367502" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e1bd43f277b9cd362694" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2251414843494770922" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2345025583166453468" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2869640510381472747" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13529014788003374571" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63b0c6e05f4c3a614cc530" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14ae3f40c359008d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "231d4cea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2179779020895442334" + } + }, + { + "_tag": "ByteArray", + "bytearray": "657e43cf7524c5" + }, + { + "_tag": "ByteArray", + "bytearray": "795b29c8d962204841130e5b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "38b4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17248799746960305808" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41ce937b7e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2283677986175453698" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b92a26ec0f54e7ec5f17c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7160eeca70e7f1d5c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e58866c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "640830107667255812" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10657333457857358380" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4b52" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bb3c5fc37de7fabf79f1b181ee5d36a63acce4ae1bd43f277b9cd362694d8669f1b1f3ea1df248c28ea9fbf1b208b3457e9d6f6dc413c1b27d302d7165bbbeb1bbbc0b74517f2a5eb4b63b0c6e05f4c3a614cc5304814ae3f40c359008dff9f44231d4cea1b1e4021787552559e47657e43cf7524c54c795b29c8d962204841130e5bffbf4238b41bef600bfb576aae904541ce937b7e1b1fb141076b5e0a024bb92a26ec0f54e7ec5f17c949f7160eeca70e7f1d5c44e58866c81b08e4af9670e1d204ffd8669f1b93e67450a0792a2c9f424b52ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 179, 197, 252, 55, 222, 127, 171, 247, 159, 27, 24, 30, 229, 211, 106, 99, 172, 206, 74, 225, + 189, 67, 242, 119, 185, 205, 54, 38, 148, 216, 102, 159, 27, 31, 62, 161, 223, 36, 140, 40, 234, 159, 191, 27, 32, + 139, 52, 87, 233, 214, 246, 220, 65, 60, 27, 39, 211, 2, 215, 22, 91, 187, 235, 27, 187, 192, 183, 69, 23, 242, + 165, 235, 75, 99, 176, 198, 224, 95, 76, 58, 97, 76, 197, 48, 72, 20, 174, 63, 64, 195, 89, 0, 141, 255, 159, 68, + 35, 29, 76, 234, 27, 30, 64, 33, 120, 117, 82, 85, 158, 71, 101, 126, 67, 207, 117, 36, 197, 76, 121, 91, 41, 200, + 217, 98, 32, 72, 65, 19, 14, 91, 255, 191, 66, 56, 180, 27, 239, 96, 11, 251, 87, 106, 174, 144, 69, 65, 206, 147, + 123, 126, 27, 31, 177, 65, 7, 107, 94, 10, 2, 75, 185, 42, 38, 236, 15, 84, 231, 236, 95, 23, 201, 73, 247, 22, + 14, 236, 167, 14, 127, 29, 92, 68, 229, 136, 102, 200, 27, 8, 228, 175, 150, 112, 225, 210, 4, 255, 216, 102, 159, + 27, 147, 230, 116, 80, 160, 121, 42, 44, 159, 66, 75, 82, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1244, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "69a032dd55df74d5f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15908401956620226309" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d430eb959283" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1052095c82fa63d" + } + } + ] + }, + "cborHex": "bf4969a032dd55df74d5f51bdcc5ff4b107a4f0546d430eb95928348a1052095c82fa63dff", + "cborBytes": [ + 191, 73, 105, 160, 50, 221, 85, 223, 116, 213, 245, 27, 220, 197, 255, 75, 16, 122, 79, 5, 70, 212, 48, 235, 149, + 146, 131, 72, 161, 5, 32, 149, 200, 47, 166, 61, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1245, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6697817759598895741" + }, + "fields": [] + }, + "cborHex": "d8669f1b5cf36dc40b31e27d80ff", + "cborBytes": [216, 102, 159, 27, 92, 243, 109, 196, 11, 49, 226, 125, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1246, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4853812667366409356" + } + }, + "cborHex": "1b435c34e784aa848c", + "cborBytes": [27, 67, 92, 52, 231, 132, 170, 132, 140], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1247, + "sample": { + "_tag": "ByteArray", + "bytearray": "60319ed2" + }, + "cborHex": "4460319ed2", + "cborBytes": [68, 96, 49, 158, 210], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1248, + "sample": { + "_tag": "ByteArray", + "bytearray": "26a5fd5007350106901f" + }, + "cborHex": "4a26a5fd5007350106901f", + "cborBytes": [74, 38, 165, 253, 80, 7, 53, 1, 6, 144, 31], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1249, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "389a8190df9370" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d0efd40ccf269b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63e95bdee829" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e77b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a07f0082d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17485729432149902623" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10957972400428707521" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2e3441da485d183bd1c5b44b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aa97105f671101" + } + ] + }, + "cborHex": "9fbf47389a8190df9370485d0efd40ccf269b941514663e95bdee82942e77b41e5ff45a07f0082d01bf2a9ca4671e3451fd8669f1b981289d722166ec19f4c2e3441da485d183bd1c5b44bffff47aa97105f671101ff", + "cborBytes": [ + 159, 191, 71, 56, 154, 129, 144, 223, 147, 112, 72, 93, 14, 253, 64, 204, 242, 105, 185, 65, 81, 70, 99, 233, 91, + 222, 232, 41, 66, 231, 123, 65, 229, 255, 69, 160, 127, 0, 130, 208, 27, 242, 169, 202, 70, 113, 227, 69, 31, 216, + 102, 159, 27, 152, 18, 137, 215, 34, 22, 110, 193, 159, 76, 46, 52, 65, 218, 72, 93, 24, 59, 209, 197, 180, 75, + 255, 255, 71, 170, 151, 16, 95, 103, 17, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1250, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12403219444623485761" + } + }, + "cborHex": "1bac21165eac002b41", + "cborBytes": [27, 172, 33, 22, 94, 172, 0, 43, 65], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1251, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "47964b8bac35284399" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a0af6897dcaf19bb0a11383" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ee3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa54da96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f09c8d69885a9ab99b8bd9" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "483f006430740bf170c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16026281332934552104" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9119d7e09434b67" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e2f72aa22" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca6488" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2562062098909389013" + } + } + } + ] + }, + "cborHex": "bf4947964b8bac35284399bf4c2a0af6897dcaf19bb0a11383421ee344fa54da964bf09c8d69885a9ab99b8bd9ff4a483f006430740bf170c01bde68c9f62009aa2848c9119d7e09434b67457e2f72aa2243ca64881b238e45e791fc60d5ff", + "cborBytes": [ + 191, 73, 71, 150, 75, 139, 172, 53, 40, 67, 153, 191, 76, 42, 10, 246, 137, 125, 202, 241, 155, 176, 161, 19, 131, + 66, 30, 227, 68, 250, 84, 218, 150, 75, 240, 156, 141, 105, 136, 90, 154, 185, 155, 139, 217, 255, 74, 72, 63, 0, + 100, 48, 116, 11, 241, 112, 192, 27, 222, 104, 201, 246, 32, 9, 170, 40, 72, 201, 17, 157, 126, 9, 67, 75, 103, + 69, 126, 47, 114, 170, 34, 67, 202, 100, 136, 27, 35, 142, 69, 231, 145, 252, 96, 213, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1252, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa07" + }, + "cborHex": "42fa07", + "cborBytes": [66, 250, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1253, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "453475935000094242" + } + }, + "cborHex": "1b064b11f5d3de6622", + "cborBytes": [27, 6, 75, 17, 245, 211, 222, 102, 34], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1254, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12871911443629144982" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12937750509550450950" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0c11b934033ec06c7cdc5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e5f2f7782118cb6287c" + } + } + ] + }, + "cborHex": "bf1bb2a2374279ccfb961bb38c1f8a926239064bb0c11b934033ec06c7cdc54a4e5f2f7782118cb6287cff", + "cborBytes": [ + 191, 27, 178, 162, 55, 66, 121, 204, 251, 150, 27, 179, 140, 31, 138, 146, 98, 57, 6, 75, 176, 193, 27, 147, 64, + 51, 236, 6, 199, 205, 197, 74, 78, 95, 47, 119, 130, 17, 140, 182, 40, 124, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1255, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7667454278162217428" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5957426888530461557" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "322736224969107479" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6306977114148649753" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11356431269582271477" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86ce565c7ef33a5f27cea0e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1a4b994" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6fddc155592e1e4de325319" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13781095115302896510" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50c5bd7cd4a8f808c1f108" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc6aa5f1d5c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4571049417888931880" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b6a68450ac56879d49fa0d8669f1b52ad0830fa38037580ff1b047a96e2fd6f28171b5786e244ff593b19bf4228cc1b9d9a26121b96f3f54c86ce565c7ef33a5f27cea0e244a1a4b9944cb6fddc155592e1e4de3253191bbf4048fdf380037e42f3e34b50c5bd7cd4a8f808c1f10846fc6aa5f1d5c21b3f6fa13a2406a028ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 106, 104, 69, 10, 197, 104, 121, 212, 159, 160, 216, 102, 159, 27, 82, 173, 8, 48, 250, + 56, 3, 117, 128, 255, 27, 4, 122, 150, 226, 253, 111, 40, 23, 27, 87, 134, 226, 68, 255, 89, 59, 25, 191, 66, 40, + 204, 27, 157, 154, 38, 18, 27, 150, 243, 245, 76, 134, 206, 86, 92, 126, 243, 58, 95, 39, 206, 160, 226, 68, 161, + 164, 185, 148, 76, 182, 253, 220, 21, 85, 146, 225, 228, 222, 50, 83, 25, 27, 191, 64, 72, 253, 243, 128, 3, 126, + 66, 243, 227, 75, 80, 197, 189, 124, 212, 168, 248, 8, 193, 241, 8, 70, 252, 106, 165, 241, 213, 194, 27, 63, 111, + 161, 58, 36, 6, 160, 40, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1256, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7170093053338561549" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "018c7c896240d08f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12049485504060547027" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11681166576008979381" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d703" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "539169857465168541" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7492248589532842225" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d52746e3129e4ede4982e890" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13308700877675791506" + } + } + ] + } + ] + }, + "cborHex": "9f80bf1b638149a4aabdac0d48018c7c896240d08f41511ba7385f399bbf5fd341ed1ba21bd71c852e63b5ff42d7031b077b8420f3cf329dd8669f1b67f9d0658406c8f19f4cd52746e3129e4ede4982e8901bb8b200ef8bcb8492ffffff", + "cborBytes": [ + 159, 128, 191, 27, 99, 129, 73, 164, 170, 189, 172, 13, 72, 1, 140, 124, 137, 98, 64, 208, 143, 65, 81, 27, 167, + 56, 95, 57, 155, 191, 95, 211, 65, 237, 27, 162, 27, 215, 28, 133, 46, 99, 181, 255, 66, 215, 3, 27, 7, 123, 132, + 32, 243, 207, 50, 157, 216, 102, 159, 27, 103, 249, 208, 101, 132, 6, 200, 241, 159, 76, 213, 39, 70, 227, 18, + 158, 78, 222, 73, 130, 232, 144, 27, 184, 178, 0, 239, 139, 203, 132, 146, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1257, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8014a885" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "149f62c13fc6a11845" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8944a6bff51bf" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "154d488b23d857" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3366415560911385835" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44892558be8197a8a4ae56" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15909711568532997789" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecae0deeea53" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5242838228733801551" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f715aee89dec275cc9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7046082989165297932" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f36e08db2b3e12e587" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f036a1a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e95c9656652232efc46785c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7072c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9506438212411479259" + } + } + } + ] + } + ] + }, + "cborHex": "9f448014a885bf49149f62c13fc6a1184547d8944a6bff51bfffbf47154d488b23d8571b2eb7e91dda7874eb4b44892558be8197a8a4ae561bdccaa660d955069d46ecae0deeea531b48c24d975e84344f41ff49f715aee89dec275cc9ffd8669f1b61c8b7259b1ec10c9f49f36e08db2b3e12e587ffffbf440f036a1a4ce95c9656652232efc46785c5413943a7072c41b51b83eda72fd9fc54dbffff", + "cborBytes": [ + 159, 68, 128, 20, 168, 133, 191, 73, 20, 159, 98, 193, 63, 198, 161, 24, 69, 71, 216, 148, 74, 107, 255, 81, 191, + 255, 191, 71, 21, 77, 72, 139, 35, 216, 87, 27, 46, 183, 233, 29, 218, 120, 116, 235, 75, 68, 137, 37, 88, 190, + 129, 151, 168, 164, 174, 86, 27, 220, 202, 166, 96, 217, 85, 6, 157, 70, 236, 174, 13, 238, 234, 83, 27, 72, 194, + 77, 151, 94, 132, 52, 79, 65, 255, 73, 247, 21, 174, 232, 157, 236, 39, 92, 201, 255, 216, 102, 159, 27, 97, 200, + 183, 37, 155, 30, 193, 12, 159, 73, 243, 110, 8, 219, 43, 62, 18, 229, 135, 255, 255, 191, 68, 15, 3, 106, 26, 76, + 233, 92, 150, 86, 101, 34, 50, 239, 196, 103, 133, 197, 65, 57, 67, 167, 7, 44, 65, 181, 27, 131, 237, 167, 47, + 217, 252, 84, 219, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1258, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "74a223" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d08738e2e06822b4a384a1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1f6fdad9c7b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d68dc3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b921ef7c168dbf2e63a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26777b6b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f7a3dcb4723" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d0196b11b8ec6c8330a47" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "881573489292de11" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1440019704397650460" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd2e9013ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3205140495473409613" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4374a2234bd08738e2e06822b4a384a146e1f6fdad9c7bbf414543d68dc34a5b921ef7c168dbf2e63a4426777b6b465f7a3dcb47234b1d0196b11b8ec6c8330a4748881573489292de111b13fbfa4aa62f5a1c45cd2e9013ab1b2c7af24c8fe97e4dffff", + "cborBytes": [ + 191, 67, 116, 162, 35, 75, 208, 135, 56, 226, 224, 104, 34, 180, 163, 132, 161, 70, 225, 246, 253, 173, 156, 123, + 191, 65, 69, 67, 214, 141, 195, 74, 91, 146, 30, 247, 193, 104, 219, 242, 230, 58, 68, 38, 119, 123, 107, 70, 95, + 122, 61, 203, 71, 35, 75, 29, 1, 150, 177, 27, 142, 198, 200, 51, 10, 71, 72, 136, 21, 115, 72, 146, 146, 222, 17, + 27, 19, 251, 250, 74, 166, 47, 90, 28, 69, 205, 46, 144, 19, 171, 27, 44, 122, 242, 76, 143, 233, 126, 77, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1259, + "sample": { + "_tag": "ByteArray", + "bytearray": "709b060207fa" + }, + "cborHex": "46709b060207fa", + "cborBytes": [70, 112, 155, 6, 2, 7, 250], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1260, + "sample": { + "_tag": "ByteArray", + "bytearray": "e1c6d3ddad89" + }, + "cborHex": "46e1c6d3ddad89", + "cborBytes": [70, 225, 198, 211, 221, 173, 137], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1261, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17614259810115526663" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bf2a22ae492064905c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12859844805832433838" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9085493484960403149" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13671987608991780440" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1323e04e94cb66cb0a5f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15045769854815853099" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1183501271339650653" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0137114fca7e0dcc1d6a9f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13855491471506483569" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d2f060ce942186" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4083176187182822854" + } + }, + { + "_tag": "ByteArray", + "bytearray": "201535b52b88619ab80ee7" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf4726bf9136020079f49bf2a22ae492064905c1bb27758b76e4b60ae9f1b7e1628300430cecd1bbdbca84b077f4e584a1323e04e94cb66cb0a5f1bd0cd4ff790945a2bffffff1b106ca422c56c4e5d4b0137114fca7e0dcc1d6a9f9f9f1bc04898157399297147d2f060ce942186ff1b38aa5b1bd05db5c64b201535b52b88619ab80ee7ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 244, 114, 107, 249, 19, 96, 32, 7, 159, 73, 191, 42, 34, 174, 73, 32, 100, 144, 92, 27, + 178, 119, 88, 183, 110, 75, 96, 174, 159, 27, 126, 22, 40, 48, 4, 48, 206, 205, 27, 189, 188, 168, 75, 7, 127, 78, + 88, 74, 19, 35, 224, 78, 148, 203, 102, 203, 10, 95, 27, 208, 205, 79, 247, 144, 148, 90, 43, 255, 255, 255, 27, + 16, 108, 164, 34, 197, 108, 78, 93, 75, 1, 55, 17, 79, 202, 126, 13, 204, 29, 106, 159, 159, 159, 27, 192, 72, + 152, 21, 115, 153, 41, 113, 71, 210, 240, 96, 206, 148, 33, 134, 255, 27, 56, 170, 91, 27, 208, 93, 181, 198, 75, + 32, 21, 53, 181, 43, 136, 97, 154, 184, 14, 231, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1262, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "49f68fc7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9047868784001339404" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5faffe79" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13950489316347679380" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d662" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e501f9ff" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + } + } + ] + }, + "cborHex": "bf4449f68fc7d8669f1b7d907cb8acbed00c80ff445faffe79d8669f1bc19a181ecfc912949f42d662ffff44e501f9ffd8669f1bfffffffffffffff79f0bffffff", + "cborBytes": [ + 191, 68, 73, 246, 143, 199, 216, 102, 159, 27, 125, 144, 124, 184, 172, 190, 208, 12, 128, 255, 68, 95, 175, 254, + 121, 216, 102, 159, 27, 193, 154, 24, 30, 207, 201, 18, 148, 159, 66, 214, 98, 255, 255, 68, 229, 1, 249, 255, + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 11, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1263, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4063840653774763026" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5dd6f944acf6aab6283abcae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6235960165915524719" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84bd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6571134583929655285" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7779690136149697749" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9fbf1b3865a98b200934124c5dd6f944acf6aab6283abcae1b568a94bb3ae17e6f4284bd1b5b315c16b6694ff51b6bf702f5d3d024d5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 191, 27, 56, 101, 169, 139, 32, 9, 52, 18, 76, 93, + 214, 249, 68, 172, 246, 170, 182, 40, 58, 188, 174, 27, 86, 138, 148, 187, 58, 225, 126, 111, 66, 132, 189, 27, + 91, 49, 92, 22, 182, 105, 79, 245, 27, 107, 247, 2, 245, 211, 208, 36, 213, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1264, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "349eb929c988" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "111f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17962699805035428395" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c0c58e368dd03e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76e20fd8e59b" + } + } + ] + }, + "cborHex": "bf46349eb929c988bf0d42111f1bf948544d5e1d7a2b1bfffffffffffffff6ff487c0c58e368dd03e14676e20fd8e59bff", + "cborBytes": [ + 191, 70, 52, 158, 185, 41, 201, 136, 191, 13, 66, 17, 31, 27, 249, 72, 84, 77, 94, 29, 122, 43, 27, 255, 255, 255, + 255, 255, 255, 255, 246, 255, 72, 124, 12, 88, 227, 104, 221, 3, 225, 70, 118, 226, 15, 216, 229, 155, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1265, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13971433160252879007" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "acfc289bff75" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7978019724333584890" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce6062bb94c85d004653" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4166787382344879043" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8927592747592535187" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15275530065422298429" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "79a5040507051ff8a3fb2504" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe074e05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bc1e4806f77fc709f9f46acfc289bff759f1b6eb79eab7ff691fa4ace6062bb94c85d0046531b39d3670c333f0bc31b7be52e4db39b4c931bd3fd95a9494bad3dff4c79a5040507051ff8a3fb2504ffffbf44fe074e051bffffffffffffffeeffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 193, 228, 128, 111, 119, 252, 112, 159, 159, 70, 172, 252, 40, 155, 255, 117, 159, 27, + 110, 183, 158, 171, 127, 246, 145, 250, 74, 206, 96, 98, 187, 148, 200, 93, 0, 70, 83, 27, 57, 211, 103, 12, 51, + 63, 11, 195, 27, 123, 229, 46, 77, 179, 155, 76, 147, 27, 211, 253, 149, 169, 73, 75, 173, 61, 255, 76, 121, 165, + 4, 5, 7, 5, 31, 248, 163, 251, 37, 4, 255, 255, 191, 68, 254, 7, 78, 5, 27, 255, 255, 255, 255, 255, 255, 255, + 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1266, + "sample": { + "_tag": "ByteArray", + "bytearray": "5e487b7e9b4b8551e2" + }, + "cborHex": "495e487b7e9b4b8551e2", + "cborBytes": [73, 94, 72, 123, 126, 155, 75, 133, 81, 226], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1267, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8934242540534190328" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9436172403155273667" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "69b72a2c5d64d5cb1da2eba9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b7bfcce4145b950f8d8669f1bfffffffffffffff680ff1b82f404ce416a07c30441edd87e9f4c69b72a2c5d64d5cb1da2eba90affff", + "cborBytes": [ + 191, 27, 123, 252, 206, 65, 69, 185, 80, 248, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 128, 255, + 27, 130, 244, 4, 206, 65, 106, 7, 195, 4, 65, 237, 216, 126, 159, 76, 105, 183, 42, 44, 93, 100, 213, 203, 29, + 162, 235, 169, 10, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1268, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [] + }, + "cborHex": "d9050a80", + "cborBytes": [217, 5, 10, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1269, + "sample": { + "_tag": "ByteArray", + "bytearray": "c2" + }, + "cborHex": "41c2", + "cborBytes": [65, 194], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1270, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10695201981803284683" + }, + "fields": [] + }, + "cborHex": "d8669f1b946cfd896e7048cb80ff", + "cborBytes": [216, 102, 159, 27, 148, 108, 253, 137, 110, 112, 72, 203, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1271, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3606428804456338387" + } + }, + "cborHex": "1b320c9be3d55b53d3", + "cborBytes": [27, 50, 12, 155, 227, 213, 91, 83, 211], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1272, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4996988231531618712" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1225161406611046673" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5046292538899536639" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7579089382240830751" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7491900738719529674" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9403149052353327868" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8932792759398276223" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c137bd14a926d8308bd13622" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16732937923502356686" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8424755930753267858" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1985057495755846063" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4eb1db181aef1624e3292467" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2687917715215478703" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd5f9e6a8671a0d2cd9c" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17148481165834734773" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4337471139453696180" + } + } + ] + }, + "cborHex": "d8799f9fa0bf1b4558de52473fe1981b1100a5cee191c1111b46080853e5cf9aff1b692e55a32d66451f1b67f894072fdd3aca1b827eb23e3b9232fc1b7bf7a7afcc1d9c7f4cc137bd14a926d8308bd136221be8375662f30538ce1b74eabee1fbe9f892ff9f1b1b8c57466d40f1af4c4eb1db181aef1624e32924671b254d66ebb8e5efaf4afd5f9e6a8671a0d2cd9cffff1bedfba4c3870e4cb51b3c31cb053aa578b4ff", + "cborBytes": [ + 216, 121, 159, 159, 160, 191, 27, 69, 88, 222, 82, 71, 63, 225, 152, 27, 17, 0, 165, 206, 225, 145, 193, 17, 27, + 70, 8, 8, 83, 229, 207, 154, 255, 27, 105, 46, 85, 163, 45, 102, 69, 31, 27, 103, 248, 148, 7, 47, 221, 58, 202, + 27, 130, 126, 178, 62, 59, 146, 50, 252, 27, 123, 247, 167, 175, 204, 29, 156, 127, 76, 193, 55, 189, 20, 169, 38, + 216, 48, 139, 209, 54, 34, 27, 232, 55, 86, 98, 243, 5, 56, 206, 27, 116, 234, 190, 225, 251, 233, 248, 146, 255, + 159, 27, 27, 140, 87, 70, 109, 64, 241, 175, 76, 78, 177, 219, 24, 26, 239, 22, 36, 227, 41, 36, 103, 27, 37, 77, + 102, 235, 184, 229, 239, 175, 74, 253, 95, 158, 106, 134, 113, 160, 210, 205, 156, 255, 255, 27, 237, 251, 164, + 195, 135, 14, 76, 181, 27, 60, 49, 203, 5, 58, 165, 120, 180, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1273, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "369207366335237093" + }, + "fields": [] + }, + "cborHex": "d8669f1b051fb024bede8be580ff", + "cborBytes": [216, 102, 159, 27, 5, 31, 176, 36, 190, 222, 139, 229, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1274, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0049988f544" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "50455f937db756b181a04b89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f4e13566ef1b4df37" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7752c5a362eef959be59" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ace4ed83d22e8b0202f8bf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c64b43f939a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ec1fdcd56b5e3ca9e18805e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd480ea03087ab7e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5398241444820850152" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf46c0049988f544bf4c50455f937db756b181a04b89498f4e13566ef1b4df374a7752c5a362eef959be594bace4ed83d22e8b0202f8bf46c64b43f939a84c9ec1fdcd56b5e3ca9e18805e48dd480ea03087ab7e1b4aea67fe325695e8ffff", + "cborBytes": [ + 191, 70, 192, 4, 153, 136, 245, 68, 191, 76, 80, 69, 95, 147, 125, 183, 86, 177, 129, 160, 75, 137, 73, 143, 78, + 19, 86, 110, 241, 180, 223, 55, 74, 119, 82, 197, 163, 98, 238, 249, 89, 190, 89, 75, 172, 228, 237, 131, 210, 46, + 139, 2, 2, 248, 191, 70, 198, 75, 67, 249, 57, 168, 76, 158, 193, 253, 205, 86, 181, 227, 202, 158, 24, 128, 94, + 72, 221, 72, 14, 160, 48, 135, 171, 126, 27, 74, 234, 103, 254, 50, 86, 149, 232, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1275, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1267195181555101272" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1144587351803304234" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15184930963686163751" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f86f866702b34961" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5458191701355353992" + } + } + } + ] + }, + "cborHex": "bf1b1195fb4dc1adae581b0fe26421d6a4192a1bd2bbb6421d580527418d48f86f866702b349611b4bbf646f03455788ff", + "cborBytes": [ + 191, 27, 17, 149, 251, 77, 193, 173, 174, 88, 27, 15, 226, 100, 33, 214, 164, 25, 42, 27, 210, 187, 182, 66, 29, + 88, 5, 39, 65, 141, 72, 248, 111, 134, 103, 2, 179, 73, 97, 27, 75, 191, 100, 111, 3, 69, 87, 136, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1276, + "sample": { + "_tag": "ByteArray", + "bytearray": "9c325f71" + }, + "cborHex": "449c325f71", + "cborBytes": [68, 156, 50, 95, 113], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1277, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "749065881614725089" + }, + "fields": [] + }, + "cborHex": "d8669f1b0a6537735b02afe180ff", + "cborBytes": [216, 102, 159, 27, 10, 101, 55, 115, 91, 2, 175, 225, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1278, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffffc80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1279, + "sample": { + "_tag": "ByteArray", + "bytearray": "0036fffc" + }, + "cborHex": "440036fffc", + "cborBytes": [68, 0, 54, 255, 252], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1280, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12722475357557750100" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9745b111d9" + }, + { + "_tag": "ByteArray", + "bytearray": "baade3298dd1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17544479648188912563" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9524424564833469799" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5ea86953" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15049772806767069529" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13ecc19f51779015197afd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10225573525505402049" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f2e74" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9325044644317065895" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82a8ca7be4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aaf4c58d110d8c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6cc16" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8768242273446992659" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "177c96" + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f9f41a0d8669f1bb08f4fee5ee3f9549f459745b111d946baade3298dd11bf37a83490f5ed3b31b842d8daddce74567445ea86953ffff1bd0db88a171af4959bf4b13ecc19f51779015197afd1b8de888f1ac6364c1435f2e741b816936b2a32d72a74582a8ca7be447aaf4c58d110d8c43b6cc161b79af0de43d5f1b13ff43177c96ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 159, 65, 160, 216, 102, 159, 27, 176, 143, 79, + 238, 94, 227, 249, 84, 159, 69, 151, 69, 177, 17, 217, 70, 186, 173, 227, 41, 141, 209, 27, 243, 122, 131, 73, 15, + 94, 211, 179, 27, 132, 45, 141, 173, 220, 231, 69, 103, 68, 94, 168, 105, 83, 255, 255, 27, 208, 219, 136, 161, + 113, 175, 73, 89, 191, 75, 19, 236, 193, 159, 81, 119, 144, 21, 25, 122, 253, 27, 141, 232, 136, 241, 172, 99, + 100, 193, 67, 95, 46, 116, 27, 129, 105, 54, 178, 163, 45, 114, 167, 69, 130, 168, 202, 123, 228, 71, 170, 244, + 197, 141, 17, 13, 140, 67, 182, 204, 22, 27, 121, 175, 13, 228, 61, 95, 27, 19, 255, 67, 23, 124, 150, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1281, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffffb80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1282, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8770343923077683051" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10419294192628042105" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17761325029030718119" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2df0af75fab8675c15cc5d82" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5cf30da204bb9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e7d588a0e7d2801fab5db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57affdcf373320d79bb04a" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b79b68554ad0d176b1b9098c4dd49e289791bf67ce702a7a16aa741a54c2df0af75fab8675c15cc5d8247a5cf30da204bb94b4e7d588a0e7d2801fab5db4b57affdcf373320d79bb04affff", + "cborBytes": [ + 159, 191, 27, 121, 182, 133, 84, 173, 13, 23, 107, 27, 144, 152, 196, 221, 73, 226, 137, 121, 27, 246, 124, 231, + 2, 167, 161, 106, 167, 65, 165, 76, 45, 240, 175, 117, 250, 184, 103, 92, 21, 204, 93, 130, 71, 165, 207, 48, 218, + 32, 75, 185, 75, 78, 125, 88, 138, 14, 125, 40, 1, 250, 181, 219, 75, 87, 175, 253, 207, 55, 51, 32, 215, 155, + 176, 74, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1283, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff8759" + }, + "cborHex": "43ff8759", + "cborBytes": [67, 255, 135, 89], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1284, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2f7c" + } + ] + }, + "cborHex": "d905009f422f7cff", + "cborBytes": [217, 5, 0, 159, 66, 47, 124, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1285, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2083ae4e30605b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de5de6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27009073f5f51827b996" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5126504278572359616" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "576edd89" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5583157109656702917" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "815d4a3584db3d97" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ec7aa5d65e50438efc7165" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9530" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6bb6938" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15850161355793621282" + } + }, + { + "_tag": "ByteArray", + "bytearray": "86aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14826784743733681363" + } + } + ] + } + } + ] + }, + "cborHex": "bf472083ae4e30605b43de5de64a27009073f5f51827b9961b4725007adfd35fc044576edd891b4d7b5bcf7648cfc548815d4a3584db3d979f4bec7aa5d65e50438efc7165ff4295308044a6bb69389f1bdbf715c67cb3e1224286aa1bcdc3522b336d5cd3ffff", + "cborBytes": [ + 191, 71, 32, 131, 174, 78, 48, 96, 91, 67, 222, 93, 230, 74, 39, 0, 144, 115, 245, 245, 24, 39, 185, 150, 27, 71, + 37, 0, 122, 223, 211, 95, 192, 68, 87, 110, 221, 137, 27, 77, 123, 91, 207, 118, 72, 207, 197, 72, 129, 93, 74, + 53, 132, 219, 61, 151, 159, 75, 236, 122, 165, 214, 94, 80, 67, 142, 252, 113, 101, 255, 66, 149, 48, 128, 68, + 166, 187, 105, 56, 159, 27, 219, 247, 21, 198, 124, 179, 225, 34, 66, 134, 170, 27, 205, 195, 82, 43, 51, 109, 92, + 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1286, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a53714c3e2651bb5810c9ff9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4854524587108846729" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11870630138448408159" + } + }, + { + "_tag": "ByteArray", + "bytearray": "76d4c181a40ff8f4" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9292909175c91c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16005909022226577501" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12759823298973367106" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09759eb1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "501afe6b2d5a0f2217" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85cc9c4d4d7365c9b129" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2ebe6269b13822f5491" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8610bbfe18e831e1b44" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee705721fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11646578290098407662" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16691802007780525382" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9f9f9f4ca53714c3e2651bb5810c9ff91b435ebc644005cc891ba4bcf337b6436e5f4876d4c181a40ff8f4ffbf4145410e479292909175c91c1bde206973e908f85dffd8669f1bb113ffaf9c0f7b4280ffffbf4409759eb149501afe6b2d5a0f22174a85cc9c4d4d7365c9b1294aa2ebe6269b13822f54914ad8610bbfe18e831e1b4441c445ee705721fb1ba1a0f53fa61788eeff1be7a5317d36e90546ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 159, 159, 76, 165, 55, 20, 195, 226, 101, 27, 181, + 129, 12, 159, 249, 27, 67, 94, 188, 100, 64, 5, 204, 137, 27, 164, 188, 243, 55, 182, 67, 110, 95, 72, 118, 212, + 193, 129, 164, 15, 248, 244, 255, 191, 65, 69, 65, 14, 71, 146, 146, 144, 145, 117, 201, 28, 27, 222, 32, 105, + 115, 233, 8, 248, 93, 255, 216, 102, 159, 27, 177, 19, 255, 175, 156, 15, 123, 66, 128, 255, 255, 191, 68, 9, 117, + 158, 177, 73, 80, 26, 254, 107, 45, 90, 15, 34, 23, 74, 133, 204, 156, 77, 77, 115, 101, 201, 177, 41, 74, 162, + 235, 230, 38, 155, 19, 130, 47, 84, 145, 74, 216, 97, 11, 191, 225, 142, 131, 30, 27, 68, 65, 196, 69, 238, 112, + 87, 33, 251, 27, 161, 160, 245, 63, 166, 23, 136, 238, 255, 27, 231, 165, 49, 125, 54, 233, 5, 70, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1287, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1621133258767116886" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11291463787920319805" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11915124458983256415" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9687006356188042742" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6308010030508661056" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15357128294242266982" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "731407826600241783" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2059392536082835588" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2393389330002681401" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "83b0f7d76de5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6677984799807957011" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6541932625075669892" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15157836168220192126" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5635654093249869369" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d9b0ae94b3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3568072346481130442" + } + } + ] + } + ] + }, + "cborHex": "9f801b167f6c1c1662aa56d8669f1b9cb3567d892d653d9fd8669f1ba55b06910043f15f9f1b866f28f4fd8a15f61b578a8db39411d9401bd51f7ad16c692f661b0a267b8b0a72aa771b1c946e99b64ee884ffffffff809fd8669f1b213706ea38051e399f4683b0f7d76de51b5cacf7cb4002e8131b5ac99d0fd62c8b84ffff9f1bd25b73af72552d7e1b4e35dd89f1227639ff45d9b0ae94b31b318456e508e6fbcaffff", + "cborBytes": [ + 159, 128, 27, 22, 127, 108, 28, 22, 98, 170, 86, 216, 102, 159, 27, 156, 179, 86, 125, 137, 45, 101, 61, 159, 216, + 102, 159, 27, 165, 91, 6, 145, 0, 67, 241, 95, 159, 27, 134, 111, 40, 244, 253, 138, 21, 246, 27, 87, 138, 141, + 179, 148, 17, 217, 64, 27, 213, 31, 122, 209, 108, 105, 47, 102, 27, 10, 38, 123, 139, 10, 114, 170, 119, 27, 28, + 148, 110, 153, 182, 78, 232, 132, 255, 255, 255, 255, 128, 159, 216, 102, 159, 27, 33, 55, 6, 234, 56, 5, 30, 57, + 159, 70, 131, 176, 247, 215, 109, 229, 27, 92, 172, 247, 203, 64, 2, 232, 19, 27, 90, 201, 157, 15, 214, 44, 139, + 132, 255, 255, 159, 27, 210, 91, 115, 175, 114, 85, 45, 126, 27, 78, 53, 221, 137, 241, 34, 118, 57, 255, 69, 217, + 176, 174, 148, 179, 27, 49, 132, 86, 229, 8, 230, 251, 202, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1288, + "sample": { + "_tag": "ByteArray", + "bytearray": "6db5b5ccd1f2b8d3cd8954" + }, + "cborHex": "4b6db5b5ccd1f2b8d3cd8954", + "cborBytes": [75, 109, 181, 181, 204, 209, 242, 184, 211, 205, 137, 84], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1289, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "010602e003" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3870448158908952698" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "300b8ae6e39f83873597878e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5853132800422046683" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3133544250127491777" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9048908842933371248" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8738863840641464752" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10485008607663418471" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13648777943153773868" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12094406449787468039" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4aa11cb6f10f4b9cd09e76" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13650132395685012535" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01f905" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "548129489684684891" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "080e1c5d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fd9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6407590637252163155" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16500595577842534441" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b63ad2ebe7" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98d9e6bf4a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9fd6d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + }, + "cborHex": "bf45010602e003bf1b35b698181155307a4c300b8ae6e39f83873597878e1b513a81455057ebdb1b2b7c95e4acd122c11b7d942ea643ef41701b7946ae5cd1f0b9b01b91823bc6d6b0ec671bbd6a333997de0d2c1ba7d7f69650c679074b4aa11cb6f10f4b9cd09e761bbd6f0317a5db643741d1ff4301f9051b079b58dde392605b44080e1c5d429fd9417cbf1b58ec55bc5788b6530f1be4fde4410faf882945b63ad2ebe7ff4598d9e6bf4a0543f9fd6d02ff", + "cborBytes": [ + 191, 69, 1, 6, 2, 224, 3, 191, 27, 53, 182, 152, 24, 17, 85, 48, 122, 76, 48, 11, 138, 230, 227, 159, 131, 135, + 53, 151, 135, 142, 27, 81, 58, 129, 69, 80, 87, 235, 219, 27, 43, 124, 149, 228, 172, 209, 34, 193, 27, 125, 148, + 46, 166, 67, 239, 65, 112, 27, 121, 70, 174, 92, 209, 240, 185, 176, 27, 145, 130, 59, 198, 214, 176, 236, 103, + 27, 189, 106, 51, 57, 151, 222, 13, 44, 27, 167, 215, 246, 150, 80, 198, 121, 7, 75, 74, 161, 28, 182, 241, 15, + 75, 156, 208, 158, 118, 27, 189, 111, 3, 23, 165, 219, 100, 55, 65, 209, 255, 67, 1, 249, 5, 27, 7, 155, 88, 221, + 227, 146, 96, 91, 68, 8, 14, 28, 93, 66, 159, 217, 65, 124, 191, 27, 88, 236, 85, 188, 87, 136, 182, 83, 15, 27, + 228, 253, 228, 65, 15, 175, 136, 41, 69, 182, 58, 210, 235, 231, 255, 69, 152, 217, 230, 191, 74, 5, 67, 249, 253, + 109, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1290, + "sample": { + "_tag": "ByteArray", + "bytearray": "4f932a04eacee8cd7f2243" + }, + "cborHex": "4b4f932a04eacee8cd7f2243", + "cborBytes": [75, 79, 147, 42, 4, 234, 206, 232, 205, 127, 34, 67], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1291, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1726525844037396806" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7210846123104287350" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3376912325553549900" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7979708243969640151" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59dea1" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4637088863402054790" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9315252190694101800" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e184e30c7973977d0bdd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11183334956301822271" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3791791084797400748" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13977329857137548793" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12104254000168555844" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5343674376970990318" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "caf3e7eaebe5c9de4fc473" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14654224693869104766" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9015091607024980776" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3627569031948524758" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14230225014722058255" + } + }, + { + "_tag": "ByteArray", + "bytearray": "866233ba" + } + ] + } + } + ] + }, + "cborHex": "bf1b17f5da1b8d616946bf1b6412125821a23a761b2edd33de5241f24c1b6ebd9e5e9d1106d74359dea1ff1b405a3fc0beffd486bf1b81466c835b8053284ae184e30c7973977d0bdd1b9b332fe41294293f1b349f25e6dfd796ac1bc1f9737333251df91ba7faf2e1cf25d544ff1b4a288b88aab672ee4bcaf3e7eaebe5c9de4fc4731bcb5e43b7b8d34e7e9f1b7d1c0a0d765453281b3257b6d09b7fdcd61bc57bea418462d80f44866233baffff", + "cborBytes": [ + 191, 27, 23, 245, 218, 27, 141, 97, 105, 70, 191, 27, 100, 18, 18, 88, 33, 162, 58, 118, 27, 46, 221, 51, 222, 82, + 65, 242, 76, 27, 110, 189, 158, 94, 157, 17, 6, 215, 67, 89, 222, 161, 255, 27, 64, 90, 63, 192, 190, 255, 212, + 134, 191, 27, 129, 70, 108, 131, 91, 128, 83, 40, 74, 225, 132, 227, 12, 121, 115, 151, 125, 11, 221, 27, 155, 51, + 47, 228, 18, 148, 41, 63, 27, 52, 159, 37, 230, 223, 215, 150, 172, 27, 193, 249, 115, 115, 51, 37, 29, 249, 27, + 167, 250, 242, 225, 207, 37, 213, 68, 255, 27, 74, 40, 139, 136, 170, 182, 114, 238, 75, 202, 243, 231, 234, 235, + 229, 201, 222, 79, 196, 115, 27, 203, 94, 67, 183, 184, 211, 78, 126, 159, 27, 125, 28, 10, 13, 118, 84, 83, 40, + 27, 50, 87, 182, 208, 155, 127, 220, 214, 27, 197, 123, 234, 65, 132, 98, 216, 15, 68, 134, 98, 51, 186, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1292, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "56f7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "ByteArray", + "bytearray": "07313f5a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0584c46d4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6210007742639574811" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f87804" + } + } + ] + }, + "cborHex": "bf029f4256f70d4407313f5aff0445a0584c46d4050f1b562e6123d0750f1b43f87804ff", + "cborBytes": [ + 191, 2, 159, 66, 86, 247, 13, 68, 7, 49, 63, 90, 255, 4, 69, 160, 88, 76, 70, 212, 5, 15, 27, 86, 46, 97, 35, 208, + 117, 15, 27, 67, 248, 120, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1293, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1059610812597361551" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "954503" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3661788203655673873" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6531254083906901607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11737852724772268147" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f756e9c9cffe178d91cd28" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1302650518789973138" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5492716080452566722" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13043762765783804088" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4216705592550124479" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "af9dc29afe179daf21418f98" + }, + { + "_tag": "ByteArray", + "bytearray": "96d1c4043b139c9b76c430" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5804347478452935491" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13595283259089724169" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5512260720399985340" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8981782418489551291" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6894654893132592312" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a6be3103fdb354e73fa3" + }, + { + "_tag": "ByteArray", + "bytearray": "1a54e5dfa309076e2f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11192081590829684970" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17004411017434878518" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7917d38c" + } + } + ] + }, + "cborHex": "bf1b0eb47e6b85075b8f439545031b32d148f8619cb811d8669f1b5aa3acfc391716679f1ba2e53add05e6e8734bf756e9c9cffe178d91cd281b1213f1bebef464921b4c3a0c2c6b737ec21bb504c1206d02a8b8ffff1b3a84bf65365a6bbf9f4caf9dc29afe179daf21418f984b96d1c4043b139c9b76c4301b508d2f47661f1b431bbcac2617dedba309ff1b4c7f7beb84c7aabcd8669f1b7ca5b385a7eb29bb9f1b5faebc188a13b4b84aa6be3103fdb354e73fa3491a54e5dfa309076e2f1b9b5242e89e9798eaffff1bebfbcdba24f1d236447917d38cff", + "cborBytes": [ + 191, 27, 14, 180, 126, 107, 133, 7, 91, 143, 67, 149, 69, 3, 27, 50, 209, 72, 248, 97, 156, 184, 17, 216, 102, + 159, 27, 90, 163, 172, 252, 57, 23, 22, 103, 159, 27, 162, 229, 58, 221, 5, 230, 232, 115, 75, 247, 86, 233, 201, + 207, 254, 23, 141, 145, 205, 40, 27, 18, 19, 241, 190, 190, 244, 100, 146, 27, 76, 58, 12, 44, 107, 115, 126, 194, + 27, 181, 4, 193, 32, 109, 2, 168, 184, 255, 255, 27, 58, 132, 191, 101, 54, 90, 107, 191, 159, 76, 175, 157, 194, + 154, 254, 23, 157, 175, 33, 65, 143, 152, 75, 150, 209, 196, 4, 59, 19, 156, 155, 118, 196, 48, 27, 80, 141, 47, + 71, 102, 31, 27, 67, 27, 188, 172, 38, 23, 222, 219, 163, 9, 255, 27, 76, 127, 123, 235, 132, 199, 170, 188, 216, + 102, 159, 27, 124, 165, 179, 133, 167, 235, 41, 187, 159, 27, 95, 174, 188, 24, 138, 19, 180, 184, 74, 166, 190, + 49, 3, 253, 179, 84, 231, 63, 163, 73, 26, 84, 229, 223, 163, 9, 7, 110, 47, 27, 155, 82, 66, 232, 158, 151, 152, + 234, 255, 255, 27, 235, 251, 205, 186, 36, 241, 210, 54, 68, 121, 23, 211, 140, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1294, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7642419250225893032" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3686235903552358524" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffdd8669f1b6a0f53d11a524ea89f1b332824061587887cffffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 253, 216, 102, 159, 27, 106, 15, 83, 209, 26, 82, 78, 168, 159, 27, + 51, 40, 36, 6, 21, 135, 136, 124, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1295, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "537582489818913072" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7eda990186" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14f4afa282d9f46da6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11684747147301200987" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5148a51036db07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10681899693901071334" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3959242d14" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6315064990483472598" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17037043724960779962" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10407787704112586717" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "355200181243132835" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16584503458094705547" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10210498385464318076" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16888264421236489924" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13554524787460545639" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7308935329017024684" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9044044574635612018" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13236575321101766608" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7615578304894655218" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12874903510684581626" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3715038806356433361" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13366355071021492273" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e78650" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4203448485863595450" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b0775e06d1f205930457eda9901864914f4afa282d9f46da61ba2288f9f3d25a45b475148a51036db071b943dbb2d2d53c3e6ffff9f453959242d14bf1b57a39e267345e0d61bec6fbd007115ceba1b906fe3c6294f1fdd1b04edecaed326bba31be627fe06d3f8eb8b1b8db2fa2f1d4cd87c1bea5f2b0364ab3ec4418bff9f1bbc1b587aafd01c671b656e8df5145cd0ac1b7d82e69f8bf457721bb7b1c31fc8f90fd0ffff1b69aff81e866adaf21bb2acd8875fc8befad8669f1b338e781c7baa99d19f9f1bb97ed51e7dfa283143e786501b3a55a620878d9dbaffffffff", + "cborBytes": [ + 159, 159, 191, 27, 7, 117, 224, 109, 31, 32, 89, 48, 69, 126, 218, 153, 1, 134, 73, 20, 244, 175, 162, 130, 217, + 244, 109, 166, 27, 162, 40, 143, 159, 61, 37, 164, 91, 71, 81, 72, 165, 16, 54, 219, 7, 27, 148, 61, 187, 45, 45, + 83, 195, 230, 255, 255, 159, 69, 57, 89, 36, 45, 20, 191, 27, 87, 163, 158, 38, 115, 69, 224, 214, 27, 236, 111, + 189, 0, 113, 21, 206, 186, 27, 144, 111, 227, 198, 41, 79, 31, 221, 27, 4, 237, 236, 174, 211, 38, 187, 163, 27, + 230, 39, 254, 6, 211, 248, 235, 139, 27, 141, 178, 250, 47, 29, 76, 216, 124, 27, 234, 95, 43, 3, 100, 171, 62, + 196, 65, 139, 255, 159, 27, 188, 27, 88, 122, 175, 208, 28, 103, 27, 101, 110, 141, 245, 20, 92, 208, 172, 27, + 125, 130, 230, 159, 139, 244, 87, 114, 27, 183, 177, 195, 31, 200, 249, 15, 208, 255, 255, 27, 105, 175, 248, 30, + 134, 106, 218, 242, 27, 178, 172, 216, 135, 95, 200, 190, 250, 216, 102, 159, 27, 51, 142, 120, 28, 123, 170, 153, + 209, 159, 159, 27, 185, 126, 213, 30, 125, 250, 40, 49, 67, 231, 134, 80, 27, 58, 85, 166, 32, 135, 141, 157, 186, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1296, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5928697131367271265" + } + } + ] + }, + "cborHex": "9f1b5246f6a120060b61ff", + "cborBytes": [159, 27, 82, 70, 246, 161, 32, 6, 11, 97, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1297, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7241163242816253908" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12684451904088334603" + } + } + ] + }, + "cborHex": "d8669f1b647dc79aa0adafd49f1bb00839cd39b6610bffff", + "cborBytes": [ + 216, 102, 159, 27, 100, 125, 199, 154, 160, 173, 175, 212, 159, 27, 176, 8, 57, 205, 57, 182, 97, 11, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1298, + "sample": { + "_tag": "ByteArray", + "bytearray": "aa731d" + }, + "cborHex": "43aa731d", + "cborBytes": [67, 170, 115, 29], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1299, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "009a4406a87a1344f36115" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "444335" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14710253733064556664" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90fe04eb001ffbfe" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4562981522487629098" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13776010245964349614" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2bf80590a4" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a337f8f9c3f95f010314" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a378543c22f4988c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "678500273239462213" + } + }, + { + "_tag": "ByteArray", + "bytearray": "be" + }, + { + "_tag": "ByteArray", + "bytearray": "ad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "801584596039040387" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8bf4021068c05e9edec" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4b009a4406a87a1344f3611511434443359f41dc1bcc2551d4fb2d4078ff4890fe04eb001ffbfebf1b3f52f784dc8bd52a1bbf2e38548cd8c0ae1bffffffffffffffeb452bf80590a4ff4aa337f8f9c3f95f010314a048a378543c22f4988cd905079f1b096a84675671914541be41ad1b0b1fccf17054fd83ff4ac8bf4021068c05e9edeca0ff", + "cborBytes": [ + 191, 75, 0, 154, 68, 6, 168, 122, 19, 68, 243, 97, 21, 17, 67, 68, 67, 53, 159, 65, 220, 27, 204, 37, 81, 212, + 251, 45, 64, 120, 255, 72, 144, 254, 4, 235, 0, 31, 251, 254, 191, 27, 63, 82, 247, 132, 220, 139, 213, 42, 27, + 191, 46, 56, 84, 140, 216, 192, 174, 27, 255, 255, 255, 255, 255, 255, 255, 235, 69, 43, 248, 5, 144, 164, 255, + 74, 163, 55, 248, 249, 195, 249, 95, 1, 3, 20, 160, 72, 163, 120, 84, 60, 34, 244, 152, 140, 217, 5, 7, 159, 27, + 9, 106, 132, 103, 86, 113, 145, 69, 65, 190, 65, 173, 27, 11, 31, 204, 241, 112, 84, 253, 131, 255, 74, 200, 191, + 64, 33, 6, 140, 5, 233, 237, 236, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1300, + "sample": { + "_tag": "ByteArray", + "bytearray": "0e4cb4" + }, + "cborHex": "430e4cb4", + "cborBytes": [67, 14, 76, 180], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1301, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12223868714512294823" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ecf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f40e40ea0a5763efed0faa41" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5603118426004474850" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7338547042239043404" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0182fb04" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "96377fcc50c625a0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72fa182ad3c72a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fecf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58e91229443556c167" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dcac" + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba9a3e7d4bd8423a79fbf4104429ecf4cf40e40ea0a5763efed0faa411b4dc2468598714be2ffa0d905019f1b65d7c1a75426d74c440182fb04ffbf4896377fcc50c625a04772fa182ad3c72a42fecf4958e91229443556c167ff42dcacffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 169, 163, 231, 212, 189, 132, 35, 167, 159, 191, 65, 4, 66, 158, 207, 76, 244, 14, 64, + 234, 10, 87, 99, 239, 237, 15, 170, 65, 27, 77, 194, 70, 133, 152, 113, 75, 226, 255, 160, 217, 5, 1, 159, 27, + 101, 215, 193, 167, 84, 38, 215, 76, 68, 1, 130, 251, 4, 255, 191, 72, 150, 55, 127, 204, 80, 198, 37, 160, 71, + 114, 250, 24, 42, 211, 199, 42, 66, 254, 207, 73, 88, 233, 18, 41, 68, 53, 86, 193, 103, 255, 66, 220, 172, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1302, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14510009771926896995" + } + }, + "cborHex": "1bc95de9029f264163", + "cborBytes": [27, 201, 93, 233, 2, 159, 38, 65, 99], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1303, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7841496316046789492" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19379c35e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16355060558374964865" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5cb6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11419859822118148999" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12169603630472301535" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0aae78bd174cab7f0ba10ce8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17686314296925429250" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12307799129377270304" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba30" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16260142847431270226" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "44a0dd210f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17177954192841634667" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a310ad54bd5bd94c043b" + }, + { + "_tag": "ByteArray", + "bytearray": "6df54fdfac5a00084846" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18384587091526559456" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c3f9046158b36" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "927162" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2052ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9995b2674b521f31ea301" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf6150a651e112" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c695b2" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6cd2975a7980cb74bf4519379c35e41be2f8d8eccdf10e81425cb61b9e7b7e00d21b9b87ff1ba8e31e064b9b0bdf9f4c0aae78bd174cab7f0ba10ce81bf57269259e271e02ff1baace16194164ea2042ba301be1a7a1c5123fdf529f4544a0dd210f1bee645a536041f36b4aa310ad54bd5bd94c043b4a6df54fdfac5a00084846ff1bff232c8dd4ac26e0bf470c3f9046158b3643927162432052ae4bd9995b2674b521f31ea30147cf6150a651e11243c695b2ffff", + "cborBytes": [ + 191, 27, 108, 210, 151, 90, 121, 128, 203, 116, 191, 69, 25, 55, 156, 53, 228, 27, 226, 248, 216, 236, 205, 241, + 14, 129, 66, 92, 182, 27, 158, 123, 126, 0, 210, 27, 155, 135, 255, 27, 168, 227, 30, 6, 75, 155, 11, 223, 159, + 76, 10, 174, 120, 189, 23, 76, 171, 127, 11, 161, 12, 232, 27, 245, 114, 105, 37, 158, 39, 30, 2, 255, 27, 170, + 206, 22, 25, 65, 100, 234, 32, 66, 186, 48, 27, 225, 167, 161, 197, 18, 63, 223, 82, 159, 69, 68, 160, 221, 33, + 15, 27, 238, 100, 90, 83, 96, 65, 243, 107, 74, 163, 16, 173, 84, 189, 91, 217, 76, 4, 59, 74, 109, 245, 79, 223, + 172, 90, 0, 8, 72, 70, 255, 27, 255, 35, 44, 141, 212, 172, 38, 224, 191, 71, 12, 63, 144, 70, 21, 139, 54, 67, + 146, 113, 98, 67, 32, 82, 174, 75, 217, 153, 91, 38, 116, 181, 33, 243, 30, 163, 1, 71, 207, 97, 80, 166, 81, 225, + 18, 67, 198, 149, 178, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1304, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12887076609559203307" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18237077456886528020" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5827040050056491329" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c268403" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9460491752172251702" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "721ce42aaf553c4199608c14" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13812373186286750075" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4915131021305782214" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17613397702871538666" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14364012751819106483" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1eb81cdf0b749722360e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a96bf37e07" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f1bb2d817e5d2058debff1bfd171d52a7017814ffa01b50ddce0d73977141445c268403bf1b834a6b1ff0bd6a364c721ce42aaf553c4199608c141bbfaf683b59c0897b1b44360d9f556f1fc61bf46f5be41756dbea1bc757397e755be8b34a1eb81cdf0b749722360e45a96bf37e07ffff", + "cborBytes": [ + 159, 159, 159, 27, 178, 216, 23, 229, 210, 5, 141, 235, 255, 27, 253, 23, 29, 82, 167, 1, 120, 20, 255, 160, 27, + 80, 221, 206, 13, 115, 151, 113, 65, 68, 92, 38, 132, 3, 191, 27, 131, 74, 107, 31, 240, 189, 106, 54, 76, 114, + 28, 228, 42, 175, 85, 60, 65, 153, 96, 140, 20, 27, 191, 175, 104, 59, 89, 192, 137, 123, 27, 68, 54, 13, 159, 85, + 111, 31, 198, 27, 244, 111, 91, 228, 23, 86, 219, 234, 27, 199, 87, 57, 126, 117, 91, 232, 179, 74, 30, 184, 28, + 223, 11, 116, 151, 34, 54, 14, 69, 169, 107, 243, 126, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1305, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16794971697579054333" + } + } + ] + }, + "cborHex": "9f1be913b9c67ef054fdff", + "cborBytes": [159, 27, 233, 19, 185, 198, 126, 240, 84, 253, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1306, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fec77a89f8a52e4439" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5821825254488364205" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5060294982134727861" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7303339680266456918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "364952d157b1782dbe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18186837554088688899" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e26a04b7bdcb381" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12520426076053424774" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bc23a9ac85" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12880719172633928334" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c9e05ad18b" + } + ] + } + ] + }, + "cborHex": "9fbf41ae49fec77a89f8a52e4439ffbf1b50cb47393e2d54ad1b4639c779c4d504b51b655aacbe944c0f5649364952d157b1782dbe1bfc64a065bf30bd03487e26a04b7bdcb381ff9f1badc17d2e1bb3ca86ff45bc23a9ac85d8669f1bb2c181d7b068a28e9f45c9e05ad18bffffff", + "cborBytes": [ + 159, 191, 65, 174, 73, 254, 199, 122, 137, 248, 165, 46, 68, 57, 255, 191, 27, 80, 203, 71, 57, 62, 45, 84, 173, + 27, 70, 57, 199, 121, 196, 213, 4, 181, 27, 101, 90, 172, 190, 148, 76, 15, 86, 73, 54, 73, 82, 209, 87, 177, 120, + 45, 190, 27, 252, 100, 160, 101, 191, 48, 189, 3, 72, 126, 38, 160, 75, 123, 220, 179, 129, 255, 159, 27, 173, + 193, 125, 46, 27, 179, 202, 134, 255, 69, 188, 35, 169, 172, 133, 216, 102, 159, 27, 178, 193, 129, 215, 176, 104, + 162, 142, 159, 69, 201, 224, 90, 209, 139, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1307, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2671992026310587038" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bab0870633fce0dd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2974551427824114294" + } + }, + { + "_tag": "ByteArray", + "bytearray": "80b9a16e21299f5d4deef9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11753603955737905656" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18329919304946960746" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3673317845726661563" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6184004337716007559" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a58ae075bb48" + } + ] + }, + "cborHex": "9f9fd8669f1b2514d29752eb329e9f48bab0870633fce0dd1b2947bac385965a764b80b9a16e21299f5d4deef91ba31d3086446249f81bfe60f47de4f0496affff1b32fa3f1e5da40bbb1b55d1ff2e4f099287a0ff46a58ae075bb48ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 37, 20, 210, 151, 82, 235, 50, 158, 159, 72, 186, 176, 135, 6, 51, 252, 224, 221, 27, + 41, 71, 186, 195, 133, 150, 90, 118, 75, 128, 185, 161, 110, 33, 41, 159, 93, 77, 238, 249, 27, 163, 29, 48, 134, + 68, 98, 73, 248, 27, 254, 96, 244, 125, 228, 240, 73, 106, 255, 255, 27, 50, 250, 63, 30, 93, 164, 11, 187, 27, + 85, 209, 255, 46, 79, 9, 146, 135, 160, 255, 70, 165, 138, 224, 117, 187, 72, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1308, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "995437115538649899" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5928962195910545000" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9003844407022590076" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ef" + }, + { + "_tag": "ByteArray", + "bytearray": "1f" + }, + { + "_tag": "ByteArray", + "bytearray": "cab64dfa6eeb144386eb106d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1e87b9" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "46" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b7b65da22f092857eece0f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8822105214850650193" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f62e34045bb7175c5" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18242549947555131111" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "90de97" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11527909341241138368" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b0dd080c853ebb32b9f1b5247e7b445f7ce68d8669f1b7cf414c8a578187c9f9f41ef411f4ccab64dfa6eeb144386eb106dff431e87b9a04146ffffd87e9f4bb7b65da22f092857eece0fbf1b7a6e69f38e4b5051493f62e34045bb7175c5ffd8669f1bfd2a8e862d582ee79f4390de971b9ffb5c77e795dcc0ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 13, 208, 128, 200, 83, 235, 179, 43, 159, 27, 82, 71, 231, 180, 69, 247, 206, 104, 216, 102, + 159, 27, 124, 244, 20, 200, 165, 120, 24, 124, 159, 159, 65, 239, 65, 31, 76, 202, 182, 77, 250, 110, 235, 20, 67, + 134, 235, 16, 109, 255, 67, 30, 135, 185, 160, 65, 70, 255, 255, 216, 126, 159, 75, 183, 182, 93, 162, 47, 9, 40, + 87, 238, 206, 15, 191, 27, 122, 110, 105, 243, 142, 75, 80, 81, 73, 63, 98, 227, 64, 69, 187, 113, 117, 197, 255, + 216, 102, 159, 27, 253, 42, 142, 134, 45, 88, 46, 231, 159, 67, 144, 222, 151, 27, 159, 251, 92, 119, 231, 149, + 220, 192, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1309, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10364687103054154633" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13906995060543566543" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5874" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16890814071657108217" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca88f64bdc6d9d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5060235709022339142" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1071f496" + }, + { + "_tag": "ByteArray", + "bytearray": "01924b231a46a20b92" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2297142986372590750" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7de0658e62f549a2c4" + } + ] + } + } + ] + }, + "cborHex": "bf1b8fd6c401799d8b89d8669f1bc0ff92533ccfb2cf80ff4258741bea6839e8244a92f947ca88f64bdc6d9dd8669f1b463991912c0600469f441071f4964901924b231a46a20b921b1fe117601504ac9e497de0658e62f549a2c4ffffff", + "cborBytes": [ + 191, 27, 143, 214, 196, 1, 121, 157, 139, 137, 216, 102, 159, 27, 192, 255, 146, 83, 60, 207, 178, 207, 128, 255, + 66, 88, 116, 27, 234, 104, 57, 232, 36, 74, 146, 249, 71, 202, 136, 246, 75, 220, 109, 157, 216, 102, 159, 27, 70, + 57, 145, 145, 44, 6, 0, 70, 159, 68, 16, 113, 244, 150, 73, 1, 146, 75, 35, 26, 70, 162, 11, 146, 27, 31, 225, 23, + 96, 21, 4, 172, 158, 73, 125, 224, 101, 142, 98, 245, 73, 162, 196, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1310, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5816936217978969199" + } + }, + "cborHex": "1b50b9e8abb9bd9c6f", + "cborBytes": [27, 80, 185, 232, 171, 185, 189, 156, 111], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1311, + "sample": { + "_tag": "ByteArray", + "bytearray": "9443733190c8a34a93" + }, + "cborHex": "499443733190c8a34a93", + "cborBytes": [73, 148, 67, 115, 49, 144, 200, 163, 74, 147], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1312, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "71" + } + ] + }, + "cborHex": "9f4171ff", + "cborBytes": [159, 65, 113, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1313, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2691864591967637215" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12799573234303926314" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11540408573454284974" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10655595742628527075" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5a4e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "162039992430118797" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b255b6c9593aecedf1bb1a1380aa348802a1ba027c4742f9d78aed8669f1b93e047df4589bbe39f425a4e1b023fae83bc34478dffffff", + "cborBytes": [ + 191, 27, 37, 91, 108, 149, 147, 174, 206, 223, 27, 177, 161, 56, 10, 163, 72, 128, 42, 27, 160, 39, 196, 116, 47, + 157, 120, 174, 216, 102, 159, 27, 147, 224, 71, 223, 69, 137, 187, 227, 159, 66, 90, 78, 27, 2, 63, 174, 131, 188, + 52, 71, 141, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1314, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9674412307441420547" + } + }, + "cborHex": "1b86426abc83b68903", + "cborBytes": [27, 134, 66, 106, 188, 131, 182, 137, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1315, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "984423378584597031" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9419613574488984198" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bab9d187f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7002581780968012393" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b29a82c367f5f7ba19f727" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13290687711159844589" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6026199479959067592" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c88f5b074a6" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "305953225672391308" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7810847101454116131" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71a6de4ef94863c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5144301635227982988" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aef22b9f" + } + ] + }, + "cborHex": "d905079fbf1b0da95fd8dd1ff2271b82b930a384dd0a86ffd905019fa0bf453bab9d187f1b612e2b074d387a694bb29a82c367f5f7ba19f7271bb872020e6454feedff1b53a15c7fb49a9bc8469c88f5b074a6ffbf1b043ef6d676167a8c1b6c65b40e1d0fe5234871a6de4ef94863c71b47643b14e1399c8cff44aef22b9fff", + "cborBytes": [ + 217, 5, 7, 159, 191, 27, 13, 169, 95, 216, 221, 31, 242, 39, 27, 130, 185, 48, 163, 132, 221, 10, 134, 255, 217, + 5, 1, 159, 160, 191, 69, 59, 171, 157, 24, 127, 27, 97, 46, 43, 7, 77, 56, 122, 105, 75, 178, 154, 130, 195, 103, + 245, 247, 186, 25, 247, 39, 27, 184, 114, 2, 14, 100, 84, 254, 237, 255, 27, 83, 161, 92, 127, 180, 154, 155, 200, + 70, 156, 136, 245, 176, 116, 166, 255, 191, 27, 4, 62, 246, 214, 118, 22, 122, 140, 27, 108, 101, 180, 14, 29, 15, + 229, 35, 72, 113, 166, 222, 78, 249, 72, 99, 199, 27, 71, 100, 59, 20, 225, 57, 156, 140, 255, 68, 174, 242, 43, + 159, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1316, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16037297180678891861" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b567" + }, + { + "_tag": "ByteArray", + "bytearray": "d7500a7306788eeae4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e94ece25461b6826" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c28268fad0ff" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16433697944370425118" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9967513952545669774" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "629092151450139688" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12908668991490238779" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11061494069981667566" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96e047d01e1ce9e3df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b441f92" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ada9af5b339d1393" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4839618339407793756" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "954defa7a209" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17210567812795699021" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d838" + }, + { + "_tag": "ByteArray", + "bytearray": "65a30d6b7a3e9c36" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0bf691afdc" + }, + { + "_tag": "ByteArray", + "bytearray": "43b2436f9512538f" + } + ] + } + ] + }, + "cborHex": "d8669f1bde8fecd10bbd29559f42b56749d7500a7306788eeae4bf48e94ece25461b682646c28268fad0ffffd8669f1be410393600442d1e9fbf1b8a53b921333c028e1b08bafbfa8a2bfc281bb324ce0e00e0293b1b998252401658e0ee4996e047d01e1ce9e3df444b441f9248ada9af5b339d13931b4329c73d00de0e5cffffff9f9f46954defa7a2091beed8383d80758f4d42d8384865a30d6b7a3e9c36ff450bf691afdc4843b2436f9512538fffffff", + "cborBytes": [ + 216, 102, 159, 27, 222, 143, 236, 209, 11, 189, 41, 85, 159, 66, 181, 103, 73, 215, 80, 10, 115, 6, 120, 142, 234, + 228, 191, 72, 233, 78, 206, 37, 70, 27, 104, 38, 70, 194, 130, 104, 250, 208, 255, 255, 216, 102, 159, 27, 228, + 16, 57, 54, 0, 68, 45, 30, 159, 191, 27, 138, 83, 185, 33, 51, 60, 2, 142, 27, 8, 186, 251, 250, 138, 43, 252, 40, + 27, 179, 36, 206, 14, 0, 224, 41, 59, 27, 153, 130, 82, 64, 22, 88, 224, 238, 73, 150, 224, 71, 208, 30, 28, 233, + 227, 223, 68, 75, 68, 31, 146, 72, 173, 169, 175, 91, 51, 157, 19, 147, 27, 67, 41, 199, 61, 0, 222, 14, 92, 255, + 255, 255, 159, 159, 70, 149, 77, 239, 167, 162, 9, 27, 238, 216, 56, 61, 128, 117, 143, 77, 66, 216, 56, 72, 101, + 163, 13, 107, 122, 62, 156, 54, 255, 69, 11, 246, 145, 175, 220, 72, 67, 178, 67, 111, 149, 18, 83, 143, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1317, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2447213221598343773" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4678431905479201022" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4843064188715804945" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15ff76daf1d70f82" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13228808728788583395" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2fbdf6b260ff392d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21311e1fbed6b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80f39eff32ca0923" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9060494259932021992" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4f73628a19883c1232d4d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17627261125102722430" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7240383648742765694" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10899545204064465058" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8654776148697222145" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1b032bb3665a7b9f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3845958336351837319" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9555333295695821185" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17142555407686838648" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11788595037125843976" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14059614161206589779" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07be93" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0f026" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b07e582" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c8987d67778138d83e165fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0866669902b1e253d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3380521872435209413" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f64546a9cd6e7ab739dc779c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b21f63f758b02325dd8669f1b40ed2107d7f110fe9f417bffff1b4336053850d22911bf4815ff76daf1d70f821bb7962b731907c3e3482fbdf6b260ff392d4721311e1fbed6b94880f39eff32ca09231b7dbd57865cb6c4e84bf4f73628a19883c1232d4d1bf4a09c999cccdd7eff1b647b02913cdbf47e9f1b9742f69d659330a21b781bf10d619f0c01481b032bb3665a7b9f1b355f96baeb341c87ff1b849b5d01906979811bede6975171a029781ba39980ba44d19c08bf41001bc31dc896adc539534307be9343a0f026442b07e5824c8c8987d67778138d83e165fa49b0866669902b1e253d1b2eea06bb71f064c54cf64546a9cd6e7ab739dc779c415dffff", + "cborBytes": [ + 191, 27, 33, 246, 63, 117, 139, 2, 50, 93, 216, 102, 159, 27, 64, 237, 33, 7, 215, 241, 16, 254, 159, 65, 123, + 255, 255, 27, 67, 54, 5, 56, 80, 210, 41, 17, 191, 72, 21, 255, 118, 218, 241, 215, 15, 130, 27, 183, 150, 43, + 115, 25, 7, 195, 227, 72, 47, 189, 246, 178, 96, 255, 57, 45, 71, 33, 49, 30, 31, 190, 214, 185, 72, 128, 243, + 158, 255, 50, 202, 9, 35, 27, 125, 189, 87, 134, 92, 182, 196, 232, 75, 244, 247, 54, 40, 161, 152, 131, 193, 35, + 45, 77, 27, 244, 160, 156, 153, 156, 204, 221, 126, 255, 27, 100, 123, 2, 145, 60, 219, 244, 126, 159, 27, 151, + 66, 246, 157, 101, 147, 48, 162, 27, 120, 27, 241, 13, 97, 159, 12, 1, 72, 27, 3, 43, 179, 102, 90, 123, 159, 27, + 53, 95, 150, 186, 235, 52, 28, 135, 255, 27, 132, 155, 93, 1, 144, 105, 121, 129, 27, 237, 230, 151, 81, 113, 160, + 41, 120, 27, 163, 153, 128, 186, 68, 209, 156, 8, 191, 65, 0, 27, 195, 29, 200, 150, 173, 197, 57, 83, 67, 7, 190, + 147, 67, 160, 240, 38, 68, 43, 7, 229, 130, 76, 140, 137, 135, 214, 119, 120, 19, 141, 131, 225, 101, 250, 73, + 176, 134, 102, 105, 144, 43, 30, 37, 61, 27, 46, 234, 6, 187, 113, 240, 100, 197, 76, 246, 69, 70, 169, 205, 110, + 122, 183, 57, 220, 119, 156, 65, 93, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1318, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd87f9f80ffff", + "cborBytes": [159, 216, 127, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1319, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "52d5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a8fc" + }, + { + "_tag": "ByteArray", + "bytearray": "ceeba009680e35bc5f36d4" + } + ] + } + ] + } + ] + }, + "cborHex": "9f4252d5d9050a9f9f42a8fc4bceeba009680e35bc5f36d4ffffff", + "cborBytes": [ + 159, 66, 82, 213, 217, 5, 10, 159, 159, 66, 168, 252, 75, 206, 235, 160, 9, 104, 14, 53, 188, 95, 54, 212, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1320, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8620377510833946354" + } + }, + "cborHex": "1b77a1bbac6305fef2", + "cborBytes": [27, 119, 161, 187, 172, 99, 5, 254, 242], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1321, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10661982115812317271" + } + }, + "cborHex": "1b93f6f83ea68f9857", + "cborBytes": [27, 147, 246, 248, 62, 166, 143, 152, 87], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1322, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3375505156246106106" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "824206f0010002" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + }, + "cborHex": "d8669f1b2ed8340e2f8c6ffa9f47824206f001000201ffff", + "cborBytes": [ + 216, 102, 159, 27, 46, 216, 52, 14, 47, 140, 111, 250, 159, 71, 130, 66, 6, 240, 1, 0, 2, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1323, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff080ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1324, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8470430662028247129" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0700025e7ab3be00dad6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13666298437489638183" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f1036104475624" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5678063684851731832" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15883201172395652213" + } + }, + { + "_tag": "ByteArray", + "bytearray": "99d5036fff7ccc6f6f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14610293740809087307" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6155671469122080995" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3357387924360599021" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15568794231555015972" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9fd8669f1b758d03cf10c540599f9f4a0700025e7ab3be00dad61bbda87205910bbb2747f10361044756241b4ecc88d673a20d78ff1bdc6c775040b5f4754999d5036fff7ccc6f6fffffd8669f1bcac230bfa509e94b80ff9fd8669f1b556d5696470750e39f1b2e97d6876cb315ed1bd80f77ddd8fcc524ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 216, 102, 159, 27, 117, 141, 3, 207, 16, 197, 64, + 89, 159, 159, 74, 7, 0, 2, 94, 122, 179, 190, 0, 218, 214, 27, 189, 168, 114, 5, 145, 11, 187, 39, 71, 241, 3, 97, + 4, 71, 86, 36, 27, 78, 204, 136, 214, 115, 162, 13, 120, 255, 27, 220, 108, 119, 80, 64, 181, 244, 117, 73, 153, + 213, 3, 111, 255, 124, 204, 111, 111, 255, 255, 216, 102, 159, 27, 202, 194, 48, 191, 165, 9, 233, 75, 128, 255, + 159, 216, 102, 159, 27, 85, 109, 86, 150, 71, 7, 80, 227, 159, 27, 46, 151, 214, 135, 108, 179, 21, 237, 27, 216, + 15, 119, 221, 216, 252, 197, 36, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1325, + "sample": { + "_tag": "ByteArray", + "bytearray": "a45540a71793" + }, + "cborHex": "46a45540a71793", + "cborBytes": [70, 164, 85, 64, 167, 23, 147], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1326, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "243a7bfc35792ffb" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76bb5f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69f5963d68" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a17c8e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07eaeb6fa9bc9bfbd871ab" + } + } + ] + }, + "cborHex": "bf48243a7bfc35792ffb804376bb5f4569f5963d6843a17c8e4b07eaeb6fa9bc9bfbd871abff", + "cborBytes": [ + 191, 72, 36, 58, 123, 252, 53, 121, 47, 251, 128, 67, 118, 187, 95, 69, 105, 245, 150, 61, 104, 67, 161, 124, 142, + 75, 7, 234, 235, 111, 169, 188, 155, 251, 216, 113, 171, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1327, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "25bb140b55d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1907947282276266563" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "624067f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6936203272847402117" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c076d9a020ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16422129547265179646" + } + } + } + ] + }, + "cborHex": "bf4625bb140b55d41b1a7a63f1ca3fb24344624067f41b6042582087f8a48546c076d9a020ae1be3e71fd0a82ffffeff", + "cborBytes": [ + 191, 70, 37, 187, 20, 11, 85, 212, 27, 26, 122, 99, 241, 202, 63, 178, 67, 68, 98, 64, 103, 244, 27, 96, 66, 88, + 32, 135, 248, 164, 133, 70, 192, 118, 217, 160, 32, 174, 27, 227, 231, 31, 208, 168, 47, 255, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1328, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fcb479fb0702d600" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5448239722708770292" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6727059634149835431" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f48fcb479fb0702d600d8669f1b4b9c09296b3a9df49f1b5d5b5118845ec2a704ffff10a0ff", + "cborBytes": [ + 159, 72, 252, 180, 121, 251, 7, 2, 214, 0, 216, 102, 159, 27, 75, 156, 9, 41, 107, 58, 157, 244, 159, 27, 93, 91, + 81, 24, 132, 94, 194, 167, 4, 255, 255, 16, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1329, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11457912839736909267" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2605946216956926596" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a39a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1434726110690644987" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14847688275553766893" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "967bc106596806" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12971526740785865167" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bdf7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "168a71319d6cb921e349" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "912810307372078884" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2aa7aed02c4cad96a6f2ed19" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5be3c620" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ef515064543f3b2a350" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2883096173c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0df56e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b6a9c654fa8" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14969113413247979939" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b9f02af0567e7ddd31b242a2e47057d9a8442a39a1b13e92bcbd1b193fbffd8669f1bce0d95d1f81d4ded9f47967bc1065968061bb4041ed83b05a1cf42bdf7bf4a168a71319d6cb921e3491b0caaf423663a57244c2aa7aed02c4cad96a6f2ed19445be3c6204a6ef515064543f3b2a35046a2883096173c44d0df56e9469b6a9c654fa8ff1bcfbcf956ef2e51a3ffffff", + "cborBytes": [ + 159, 191, 27, 159, 2, 175, 5, 103, 231, 221, 211, 27, 36, 42, 46, 71, 5, 125, 154, 132, 66, 163, 154, 27, 19, 233, + 43, 203, 209, 177, 147, 251, 255, 216, 102, 159, 27, 206, 13, 149, 209, 248, 29, 77, 237, 159, 71, 150, 123, 193, + 6, 89, 104, 6, 27, 180, 4, 30, 216, 59, 5, 161, 207, 66, 189, 247, 191, 74, 22, 138, 113, 49, 157, 108, 185, 33, + 227, 73, 27, 12, 170, 244, 35, 102, 58, 87, 36, 76, 42, 167, 174, 208, 44, 76, 173, 150, 166, 242, 237, 25, 68, + 91, 227, 198, 32, 74, 110, 245, 21, 6, 69, 67, 243, 178, 163, 80, 70, 162, 136, 48, 150, 23, 60, 68, 208, 223, 86, + 233, 70, 155, 106, 156, 101, 79, 168, 255, 27, 207, 188, 249, 86, 239, 46, 81, 163, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1330, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17969958841582453814" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bf9621e5b84e984369f80ffff", + "cborBytes": [216, 102, 159, 27, 249, 98, 30, 91, 132, 233, 132, 54, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1331, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9fc00" + }, + "cborHex": "43f9fc00", + "cborBytes": [67, 249, 252, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1332, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4089374932356871791" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b17e7368" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6568968443309590804" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acbe9778" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11406053317123780895" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13961761832334723392" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11487112691177570525" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1718036293912847139" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13956242809196315959" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1821684324815295294" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15474428611151326792" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f19bfe37" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7316347245857326823" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14468054875956297022" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5552134264812269316" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17512332798696166049" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13344509572252621674" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f524cd13" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa22ffac08de" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14326805237778254147" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2181850296298291551" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17961041779580052979" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6cf08a2b804da3a9af6985" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18393240290191255975" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb3de7846569dd29e0f3e3" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905019fbf1b38c060d5a484b66f44b17e73681b5b29a9fecc38091444acbe97781b9e4a710f6054311f1bc1c22469f6eb09401b9f6a6c219c8540dd1b17d7b0e821e763231bc1ae88e4413f05371b1947ec3de183533e1bd6c036d5b5d0ee4844f19bfe37ff1b6588e30e72bbc6e7d8669f1bc8c8db41303bbd3e9fa0bf1b4d0d24b28768ef041bf3084de566b512a11bb93138c0f3eadb6a44f524cd13ff9f46fa22ffac08deffbf1bc6d3097503fa89431b1e477d48d7f0c15f1bf94270563bd1a5f34b6cf08a2b804da3a9af69851bff41ea97a540a9a74bfb3de7846569dd29e0f3e3ffffffff", + "cborBytes": [ + 217, 5, 1, 159, 191, 27, 56, 192, 96, 213, 164, 132, 182, 111, 68, 177, 126, 115, 104, 27, 91, 41, 169, 254, 204, + 56, 9, 20, 68, 172, 190, 151, 120, 27, 158, 74, 113, 15, 96, 84, 49, 31, 27, 193, 194, 36, 105, 246, 235, 9, 64, + 27, 159, 106, 108, 33, 156, 133, 64, 221, 27, 23, 215, 176, 232, 33, 231, 99, 35, 27, 193, 174, 136, 228, 65, 63, + 5, 55, 27, 25, 71, 236, 61, 225, 131, 83, 62, 27, 214, 192, 54, 213, 181, 208, 238, 72, 68, 241, 155, 254, 55, + 255, 27, 101, 136, 227, 14, 114, 187, 198, 231, 216, 102, 159, 27, 200, 200, 219, 65, 48, 59, 189, 62, 159, 160, + 191, 27, 77, 13, 36, 178, 135, 104, 239, 4, 27, 243, 8, 77, 229, 102, 181, 18, 161, 27, 185, 49, 56, 192, 243, + 234, 219, 106, 68, 245, 36, 205, 19, 255, 159, 70, 250, 34, 255, 172, 8, 222, 255, 191, 27, 198, 211, 9, 117, 3, + 250, 137, 67, 27, 30, 71, 125, 72, 215, 240, 193, 95, 27, 249, 66, 112, 86, 59, 209, 165, 243, 75, 108, 240, 138, + 43, 128, 77, 163, 169, 175, 105, 133, 27, 255, 65, 234, 151, 165, 64, 169, 167, 75, 251, 61, 231, 132, 101, 105, + 221, 41, 224, 243, 227, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1333, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18163455921540532473" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8950362779247248609" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6574842320704445715" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12891200311133893693" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "29e97454eabb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17249149595920313767" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5fc217" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2332181628296685305" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0ed29eb0" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4437993545567872706" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4748221370340990060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11609702865391585329" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7460412603819220939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7f03b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a82003cf8de136ce9730" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5297909758652375259" + } + } + } + ] + } + ] + }, + "cborHex": "9f1bfc118eed30e388f99f1b7c361386d3e904e180d8669f1b5b3e884173cb1d1380ffd8669f1bb2e6be61e98a743d9f4629e97454eabb1bef614a2ae6672da7435fc217ffffffd8669f1b205d92d5a250e6f99f440ed29eb0ffffbf1b3d96eb9dbf0ca6c241f61b41e5122dde17dc6c1ba11df33ec78008311b6788b5bc787ddfcb43a7f03b4aa82003cf8de136ce97301b4985f4db208ce0dbffff", + "cborBytes": [ + 159, 27, 252, 17, 142, 237, 48, 227, 136, 249, 159, 27, 124, 54, 19, 134, 211, 233, 4, 225, 128, 216, 102, 159, + 27, 91, 62, 136, 65, 115, 203, 29, 19, 128, 255, 216, 102, 159, 27, 178, 230, 190, 97, 233, 138, 116, 61, 159, 70, + 41, 233, 116, 84, 234, 187, 27, 239, 97, 74, 42, 230, 103, 45, 167, 67, 95, 194, 23, 255, 255, 255, 216, 102, 159, + 27, 32, 93, 146, 213, 162, 80, 230, 249, 159, 68, 14, 210, 158, 176, 255, 255, 191, 27, 61, 150, 235, 157, 191, + 12, 166, 194, 65, 246, 27, 65, 229, 18, 45, 222, 23, 220, 108, 27, 161, 29, 243, 62, 199, 128, 8, 49, 27, 103, + 136, 181, 188, 120, 125, 223, 203, 67, 167, 240, 59, 74, 168, 32, 3, 207, 141, 225, 54, 206, 151, 48, 27, 73, 133, + 244, 219, 32, 140, 224, 219, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1334, + "sample": { + "_tag": "ByteArray", + "bytearray": "04e7f8fcff0702" + }, + "cborHex": "4704e7f8fcff0702", + "cborBytes": [71, 4, 231, 248, 252, 255, 7, 2], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1335, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16081897876124562358" + } + }, + "cborHex": "1bdf2e60e9ac8373b6", + "cborBytes": [27, 223, 46, 96, 233, 172, 131, 115, 182], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1336, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6625660329259554084" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b8f67368b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12308433898070633188" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11750685603040214203" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba8fff32a14695a19c901a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d19e" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7307530712851343667" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1459313283917048377" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10529031244023463248" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6563530920382677319" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16426291759620779083" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d921c2cc5d9b76a" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "81f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16983055666538942137" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "902e407679a5ff13e3c3fb50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d1bcad3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c069b886b784668aa5ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8aba4c97c0" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "613a32b423856a0a0b46" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12500354979256550749" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8146540309227305655" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7206079228613564698" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17901033548860365961" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6114256514955550375" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14224696133856529031" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10457136552041801179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7276593199758416316" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3891939106420111129" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5" + }, + { + "_tag": "ByteArray", + "bytearray": "4cca2e2488c7b1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11611985864115877791" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ab14017fbcf" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30391d3513" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63011a684007d39d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cf621b2c69e3b7197bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab680fd2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98a6c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17756504274672409533" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cff758" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1227751109312581446" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9593b0008c06100020c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17002458146768417106" + } + } + } + ] + } + ] + }, + "cborHex": "d905069fd8669f1b5bf312f717e9d5249fbf454b8f67368b1baad0576adbe06ae441b11ba312d24c54823cbb4bba8fff32a14695a19c901a42d19effbf1b6569907764c2e9331b144085b32fe26a391b921ea2219901fd501b5b165898d5b3c1471be3f5e9533d1f6c4b489d921c2cc5d9b76aff80bf4281f61bebafef260cbd0eb94c902e407679a5ff13e3c3fb50444d1bcad34ac069b886b784668aa5ab458aba4c97c0ff4a613a32b423856a0a0b46ffff9f1bad7a2e9fb8df455dff1b710e533fbfe4fab79f1b640122e104d5191a1bf86d3f2b402c1c89bf1b54da33e7d78b1ea71bc56845c4a0640a871b911f364a303465db1b64fba6f64e9f99bcff9f1b3602f1ff359f371941f5474cca2e2488c7b11ba1260f9ed77bf79f464ab14017fbcfffffbf4530391d35134863011a684007d39d4a4cf621b2c69e3b7197bd44ab680fd24398a6c91bf66bc68f508ddbbd43cff7581b1109d921072b0f464ae9593b0008c06100020c1bebf4dd9a0293f152ffff", + "cborBytes": [ + 217, 5, 6, 159, 216, 102, 159, 27, 91, 243, 18, 247, 23, 233, 213, 36, 159, 191, 69, 75, 143, 103, 54, 139, 27, + 170, 208, 87, 106, 219, 224, 106, 228, 65, 177, 27, 163, 18, 210, 76, 84, 130, 60, 187, 75, 186, 143, 255, 50, + 161, 70, 149, 161, 156, 144, 26, 66, 209, 158, 255, 191, 27, 101, 105, 144, 119, 100, 194, 233, 51, 27, 20, 64, + 133, 179, 47, 226, 106, 57, 27, 146, 30, 162, 33, 153, 1, 253, 80, 27, 91, 22, 88, 152, 213, 179, 193, 71, 27, + 227, 245, 233, 83, 61, 31, 108, 75, 72, 157, 146, 28, 44, 197, 217, 183, 106, 255, 128, 191, 66, 129, 246, 27, + 235, 175, 239, 38, 12, 189, 14, 185, 76, 144, 46, 64, 118, 121, 165, 255, 19, 227, 195, 251, 80, 68, 77, 27, 202, + 211, 74, 192, 105, 184, 134, 183, 132, 102, 138, 165, 171, 69, 138, 186, 76, 151, 192, 255, 74, 97, 58, 50, 180, + 35, 133, 106, 10, 11, 70, 255, 255, 159, 27, 173, 122, 46, 159, 184, 223, 69, 93, 255, 27, 113, 14, 83, 63, 191, + 228, 250, 183, 159, 27, 100, 1, 34, 225, 4, 213, 25, 26, 27, 248, 109, 63, 43, 64, 44, 28, 137, 191, 27, 84, 218, + 51, 231, 215, 139, 30, 167, 27, 197, 104, 69, 196, 160, 100, 10, 135, 27, 145, 31, 54, 74, 48, 52, 101, 219, 27, + 100, 251, 166, 246, 78, 159, 153, 188, 255, 159, 27, 54, 2, 241, 255, 53, 159, 55, 25, 65, 245, 71, 76, 202, 46, + 36, 136, 199, 177, 27, 161, 38, 15, 158, 215, 123, 247, 159, 70, 74, 177, 64, 23, 251, 207, 255, 255, 191, 69, 48, + 57, 29, 53, 19, 72, 99, 1, 26, 104, 64, 7, 211, 157, 74, 76, 246, 33, 178, 198, 158, 59, 113, 151, 189, 68, 171, + 104, 15, 210, 67, 152, 166, 201, 27, 246, 107, 198, 143, 80, 141, 219, 189, 67, 207, 247, 88, 27, 17, 9, 217, 33, + 7, 43, 15, 70, 74, 233, 89, 59, 0, 8, 192, 97, 0, 2, 12, 27, 235, 244, 221, 154, 2, 147, 241, 82, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1337, + "sample": { + "_tag": "ByteArray", + "bytearray": "53fde99e8ca221ddbee8eaa8" + }, + "cborHex": "4c53fde99e8ca221ddbee8eaa8", + "cborBytes": [76, 83, 253, 233, 158, 140, 162, 33, 221, 190, 232, 234, 168], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1338, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7247651812219299178" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15933697121265032919" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6df2315d85dfd93e4a9cc002" + }, + { + "_tag": "ByteArray", + "bytearray": "d49e84a013d74a0c471c7b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12295555075948403496" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "15b2cf6f852d8520b7062f64" + }, + { + "_tag": "ByteArray", + "bytearray": "ec1b6e2735" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15259702037450659123" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c85a68" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16631567446291498195" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "576dde99" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14256062173251564768" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5569741344340753360" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a58a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3032550530" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1278114537655495382" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f1b6494d4ec6b0c256ad8669f1bdd1fdd1c87aa9ed79f4c6df2315d85dfd93e4a9cc0024bd49e84a013d74a0c471c7bd8669f1baaa296326a27db289f4c15b2cf6f852d8520b7062f6445ec1b6e2735ffffbf1bd3c55a27588d153343c85a68ffffffd8669f1be6cf32797e27c4d39f44576dde99d8669f1bc5d7b503c48af4e09f1b4d4bb23e303cbbd0ffffbf42a58a453032550530ffffff1b11bcc6667737ead6ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 27, 100, 148, 212, 236, 107, 12, 37, 106, 216, + 102, 159, 27, 221, 31, 221, 28, 135, 170, 158, 215, 159, 76, 109, 242, 49, 93, 133, 223, 217, 62, 74, 156, 192, 2, + 75, 212, 158, 132, 160, 19, 215, 74, 12, 71, 28, 123, 216, 102, 159, 27, 170, 162, 150, 50, 106, 39, 219, 40, 159, + 76, 21, 178, 207, 111, 133, 45, 133, 32, 183, 6, 47, 100, 69, 236, 27, 110, 39, 53, 255, 255, 191, 27, 211, 197, + 90, 39, 88, 141, 21, 51, 67, 200, 90, 104, 255, 255, 255, 216, 102, 159, 27, 230, 207, 50, 121, 126, 39, 196, 211, + 159, 68, 87, 109, 222, 153, 216, 102, 159, 27, 197, 215, 181, 3, 196, 138, 244, 224, 159, 27, 77, 75, 178, 62, 48, + 60, 187, 208, 255, 255, 191, 66, 165, 138, 69, 48, 50, 85, 5, 48, 255, 255, 255, 27, 17, 188, 198, 102, 119, 55, + 234, 214, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1339, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18380030905644477098" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "52f81a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7adc018fe0a84c9901c15" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13281628855329251352" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16899140686236401071" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14342020986734720184" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + }, + "cborHex": "9fd8669f1bff12fcba23a3eaaa9fd8669f1bfffffffffffffff09f4352f81a11ffffbf054ba7adc018fe0a84c9901c15071bfffffffffffffff81bb851d313287a60181bea85ceeb2c78bdaf1bfffffffffffffff91bc7091819a38534b81bfffffffffffffffb03ffffff00ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 18, 252, 186, 35, 163, 234, 170, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 240, 159, 67, 82, 248, 26, 17, 255, 255, 191, 5, 75, 167, 173, 192, 24, 254, 10, 132, 201, 144, 28, 21, + 7, 27, 255, 255, 255, 255, 255, 255, 255, 248, 27, 184, 81, 211, 19, 40, 122, 96, 24, 27, 234, 133, 206, 235, 44, + 120, 189, 175, 27, 255, 255, 255, 255, 255, 255, 255, 249, 27, 199, 9, 24, 25, 163, 133, 52, 184, 27, 255, 255, + 255, 255, 255, 255, 255, 251, 3, 255, 255, 255, 0, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1340, + "sample": { + "_tag": "ByteArray", + "bytearray": "90f9051a" + }, + "cborHex": "4490f9051a", + "cborBytes": [68, 144, 249, 5, 26], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1341, + "sample": { + "_tag": "ByteArray", + "bytearray": "f90280" + }, + "cborHex": "43f90280", + "cborBytes": [67, 249, 2, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1342, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bf9369" + } + ] + }, + "cborHex": "9f43bf9369ff", + "cborBytes": [159, 67, 191, 147, 105, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1343, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10311578611019150030" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14983758111750230946" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13811903190332229431" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "685d828edbfac11b26c1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "52e0c76ebf3346e966" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12518091450143704589" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55f6ac5835" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58423e0d9d9329" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f3a81581" + } + ] + } + ] + }, + "cborHex": "9f1b8f1a161d174ff2ce80d8669f1bcff1009d834013a280ffd8669f1bbfadbcc5e3d647379f4a685d828edbfac11b26c1bf4952e0c76ebf3346e9661badb931d9a7ab860d4555f6ac58354758423e0d9d9329ff44f3a81581ffffff", + "cborBytes": [ + 159, 27, 143, 26, 22, 29, 23, 79, 242, 206, 128, 216, 102, 159, 27, 207, 241, 0, 157, 131, 64, 19, 162, 128, 255, + 216, 102, 159, 27, 191, 173, 188, 197, 227, 214, 71, 55, 159, 74, 104, 93, 130, 142, 219, 250, 193, 27, 38, 193, + 191, 73, 82, 224, 199, 110, 191, 51, 70, 233, 102, 27, 173, 185, 49, 217, 167, 171, 134, 13, 69, 85, 246, 172, 88, + 53, 71, 88, 66, 62, 13, 157, 147, 41, 255, 68, 243, 168, 21, 129, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1344, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12294894203411137555" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0854ee3c1fa6" + } + ] + }, + "cborHex": "9f1baaa03d2309548413460854ee3c1fa6ff", + "cborBytes": [159, 27, 170, 160, 61, 35, 9, 84, 132, 19, 70, 8, 84, 238, 60, 31, 166, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1345, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1005238151774237223" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10119552323877613233" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17630604442357685412" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1602616799958204391" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1c4ea038775" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1884986492486214730" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7729443415822603825" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "104b71f20d7d62" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1da501810410ef761e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18a3f209eed2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4807359132bafce4b4362a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d912c545ec7c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3415584222c9db19f280cd6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b1458ff6f1aed66cedef3f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d41c2222d7a40" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcc0a6cc2a785e0b1555de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8428427108488244220" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de0129fe8c2665de2f43" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7388481524075748524" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13395814267521472549" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11583047088757764915" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6498092998168629423" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13472344540084152437" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16550329743847835703" + } + } + } + ] + }, + "cborHex": "bf1b0df352c5e72c72279f418a1b8c6fdf390eb42eb11bf4ac7d5452275ca4ff1b163da37d1094ffe746e1c4ea0387751b1a28d13a530ce44aa01b6b447fd597969631bf47104b71f20d7d62491da501810410ef761e4618a3f209eed24b4807359132bafce4b4362a473d912c545ec7c84cc3415584222c9db19f280cd64c7b1458ff6f1aed66cedef3f0471d41c2222d7a404bbcc0a6cc2a785e0b1555de1b74f7c9cca8b6ebfc4ade0129fe8c2665de2f431b668928cce0125cacff1bb9e77e1a2cba1825d8669f1ba0bf3ff5260773339f1b5a2ddd27494b50afffff1bbaf761facb63a8751be5ae9536f1a1c837ff", + "cborBytes": [ + 191, 27, 13, 243, 82, 197, 231, 44, 114, 39, 159, 65, 138, 27, 140, 111, 223, 57, 14, 180, 46, 177, 27, 244, 172, + 125, 84, 82, 39, 92, 164, 255, 27, 22, 61, 163, 125, 16, 148, 255, 231, 70, 225, 196, 234, 3, 135, 117, 27, 26, + 40, 209, 58, 83, 12, 228, 74, 160, 27, 107, 68, 127, 213, 151, 150, 150, 49, 191, 71, 16, 75, 113, 242, 13, 125, + 98, 73, 29, 165, 1, 129, 4, 16, 239, 118, 30, 70, 24, 163, 242, 9, 238, 210, 75, 72, 7, 53, 145, 50, 186, 252, + 228, 180, 54, 42, 71, 61, 145, 44, 84, 94, 199, 200, 76, 195, 65, 85, 132, 34, 44, 157, 177, 159, 40, 12, 214, 76, + 123, 20, 88, 255, 111, 26, 237, 102, 206, 222, 243, 240, 71, 29, 65, 194, 34, 45, 122, 64, 75, 188, 192, 166, 204, + 42, 120, 94, 11, 21, 85, 222, 27, 116, 247, 201, 204, 168, 182, 235, 252, 74, 222, 1, 41, 254, 140, 38, 101, 222, + 47, 67, 27, 102, 137, 40, 204, 224, 18, 92, 172, 255, 27, 185, 231, 126, 26, 44, 186, 24, 37, 216, 102, 159, 27, + 160, 191, 63, 245, 38, 7, 115, 51, 159, 27, 90, 45, 221, 39, 73, 75, 80, 175, 255, 255, 27, 186, 247, 97, 250, + 203, 99, 168, 117, 27, 229, 174, 149, 54, 241, 161, 200, 55, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1346, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6972995167350559247" + } + }, + "cborHex": "1b60c50e290272120f", + "cborBytes": [27, 96, 197, 14, 41, 2, 114, 18, 15], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1347, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8738153203825141931" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10687725693311443630" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d3ed1fa" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2481180684886655955" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6312583746699975748" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6646733227442330094" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1398681336923853572" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6663195301535085596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "200fa42919f0fb5e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13280111032445903277" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b060870629e85eaae783e2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13809523648759556601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c849b8201bd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14813286007947402296" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14589290996744852086" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18329792984113849845" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b7944280acaf068ab9fbf1b94526de45ea4e2ae446d3ed1faffbf1b226eecafe23ac3d31b579acd78dcf4dc441b5c3df0a78a7c59ee1b13691d43f15093041b5c786cd2d90cf41c48200fa42919f0fb5e1bb84c6e9f7aaf21ad4bb060870629e85eaae783e21bbfa54897b1ab69f9460c849b8201bd1bcd935d23dbf81c381bca7792dd39c81276ffd8669f1bfe60819a888da5f580ffffff", + "cborBytes": [ + 216, 102, 159, 27, 121, 68, 40, 10, 202, 240, 104, 171, 159, 191, 27, 148, 82, 109, 228, 94, 164, 226, 174, 68, + 109, 62, 209, 250, 255, 191, 27, 34, 110, 236, 175, 226, 58, 195, 211, 27, 87, 154, 205, 120, 220, 244, 220, 68, + 27, 92, 61, 240, 167, 138, 124, 89, 238, 27, 19, 105, 29, 67, 241, 80, 147, 4, 27, 92, 120, 108, 210, 217, 12, + 244, 28, 72, 32, 15, 164, 41, 25, 240, 251, 94, 27, 184, 76, 110, 159, 122, 175, 33, 173, 75, 176, 96, 135, 6, 41, + 232, 94, 170, 231, 131, 226, 27, 191, 165, 72, 151, 177, 171, 105, 249, 70, 12, 132, 155, 130, 1, 189, 27, 205, + 147, 93, 35, 219, 248, 28, 56, 27, 202, 119, 146, 221, 57, 200, 18, 118, 255, 216, 102, 159, 27, 254, 96, 129, + 154, 136, 141, 165, 245, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1348, + "sample": { + "_tag": "ByteArray", + "bytearray": "070506f2" + }, + "cborHex": "44070506f2", + "cborBytes": [68, 7, 5, 6, 242], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1349, + "sample": { + "_tag": "ByteArray", + "bytearray": "3e297f1230b505252501b146" + }, + "cborHex": "4c3e297f1230b505252501b146", + "cborBytes": [76, 62, 41, 127, 18, 48, 181, 5, 37, 37, 1, 177, 70], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1350, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "95000405" + } + ] + }, + "cborHex": "9f4495000405ff", + "cborBytes": [159, 68, 149, 0, 4, 5, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1351, + "sample": { + "_tag": "ByteArray", + "bytearray": "057e0222" + }, + "cborHex": "44057e0222", + "cborBytes": [68, 5, 126, 2, 34], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1352, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9970820673365695689" + }, + "fields": [] + }, + "cborHex": "d8669f1b8a5f789323155cc980ff", + "cborBytes": [216, 102, 159, 27, 138, 95, 120, 147, 35, 21, 92, 201, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1353, + "sample": { + "_tag": "ByteArray", + "bytearray": "00b4" + }, + "cborHex": "4200b4", + "cborBytes": [66, 0, 180], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1354, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7660827120687204676" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16006690354856060088" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3059654496805450056" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10471545880364912389" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "08327e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "139abfa7a21e4683c4" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4039805505283930084" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd655a8edb5018e7" + }, + { + "_tag": "ByteArray", + "bytearray": "6970ec31fefc20" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9990330735929339902" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1558217943705577904" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17841484662244368418" + } + } + ] + }, + "cborHex": "d8669f1b6a50b9ad6e3d49449fd8669f1bde23301216dde4b89fbf1b2a76138dd983f1481b9152677f605b0f054308327e49139abfa7a21e4683c4ffa09f1b381045b4081db7e448fd655a8edb5018e7476970ec31fefc201b8aa4c8df8fbc2ffe1b159fe6f6c935e9b0ffffff1bf799afc5a6a7e022ffff", + "cborBytes": [ + 216, 102, 159, 27, 106, 80, 185, 173, 110, 61, 73, 68, 159, 216, 102, 159, 27, 222, 35, 48, 18, 22, 221, 228, 184, + 159, 191, 27, 42, 118, 19, 141, 217, 131, 241, 72, 27, 145, 82, 103, 127, 96, 91, 15, 5, 67, 8, 50, 126, 73, 19, + 154, 191, 167, 162, 30, 70, 131, 196, 255, 160, 159, 27, 56, 16, 69, 180, 8, 29, 183, 228, 72, 253, 101, 90, 142, + 219, 80, 24, 231, 71, 105, 112, 236, 49, 254, 252, 32, 27, 138, 164, 200, 223, 143, 188, 47, 254, 27, 21, 159, + 230, 246, 201, 53, 233, 176, 255, 255, 255, 27, 247, 153, 175, 197, 166, 167, 224, 34, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1355, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4939164594982265134" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1796631344890955571" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5344199b1a4adba33ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e434d5279e3f7c4043e21018" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45662b" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11086696008416830246" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c8df48aeb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12857635996961015678" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20425198359eed962b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "341157c8ea97bdef3bea63e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3841778189952978948" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16595538240829121487" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1203500048792870876" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "26a6557907" + }, + { + "_tag": "ByteArray", + "bytearray": "4733cfcb4606" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18086705910518452625" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ff" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9136726033189422341" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b448b7007c31aa12e9f9fbf1b18eeeab0708ec7334ab5344199b1a4adba33ae4ce434d5279e3f7c4043e210184345662bffff9fbf1b99dbdb47a26d2326459c8df48aeb1bb26f7fd10a23077e4920425198359eed962b4c341157c8ea97bdef3bea63e01b3550bce8bdfd9004ff1be64f321a6507e3cfd8669f1b10b3b0eaff76dfdc9f4526a6557907464733cfcb46061bfb00e332b9691191ffff80ff41ffbf0a1b7ecc2beb3251c505134107ffffff", + "cborBytes": [ + 216, 102, 159, 27, 68, 139, 112, 7, 195, 26, 161, 46, 159, 159, 191, 27, 24, 238, 234, 176, 112, 142, 199, 51, 74, + 181, 52, 65, 153, 177, 164, 173, 186, 51, 174, 76, 228, 52, 213, 39, 158, 63, 124, 64, 67, 226, 16, 24, 67, 69, + 102, 43, 255, 255, 159, 191, 27, 153, 219, 219, 71, 162, 109, 35, 38, 69, 156, 141, 244, 138, 235, 27, 178, 111, + 127, 209, 10, 35, 7, 126, 73, 32, 66, 81, 152, 53, 158, 237, 150, 43, 76, 52, 17, 87, 200, 234, 151, 189, 239, 59, + 234, 99, 224, 27, 53, 80, 188, 232, 189, 253, 144, 4, 255, 27, 230, 79, 50, 26, 101, 7, 227, 207, 216, 102, 159, + 27, 16, 179, 176, 234, 255, 118, 223, 220, 159, 69, 38, 166, 85, 121, 7, 70, 71, 51, 207, 203, 70, 6, 27, 251, 0, + 227, 50, 185, 105, 17, 145, 255, 255, 128, 255, 65, 255, 191, 10, 27, 126, 204, 43, 235, 50, 81, 197, 5, 19, 65, + 7, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1356, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10715171856302785538" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "489701005256106369" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2396131381658640361" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6636428817976397234" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5805298166673143907" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9761349975695171405" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6318021254382452801" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5443300481572047523" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7ab005a6a37832e28" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b94b3f0082a30c4029f1b06cbc478407121811b2140c4cbdeeddfe91b5c1954d940a60db2d8669f1b50908fecbfc778639fd8669f1b87774815c5941f4d9f1b57ae1edb46d58041ffffbf1b4b8a7cf2b9d08aa349b7ab005a6a37832e28ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 148, 179, 240, 8, 42, 48, 196, 2, 159, 27, 6, 203, 196, 120, 64, 113, 33, 129, 27, 33, 64, 196, + 203, 222, 237, 223, 233, 27, 92, 25, 84, 217, 64, 166, 13, 178, 216, 102, 159, 27, 80, 144, 143, 236, 191, 199, + 120, 99, 159, 216, 102, 159, 27, 135, 119, 72, 21, 197, 148, 31, 77, 159, 27, 87, 174, 30, 219, 70, 213, 128, 65, + 255, 255, 191, 27, 75, 138, 124, 242, 185, 208, 138, 163, 73, 183, 171, 0, 90, 106, 55, 131, 46, 40, 255, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1357, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15068169594898275679" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12740361338145471448" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bd11ce4697740dd5f9f9f1bb0cedb22be47fbd8ffffff", + "cborBytes": [ + 216, 102, 159, 27, 209, 28, 228, 105, 119, 64, 221, 95, 159, 159, 27, 176, 206, 219, 34, 190, 71, 251, 216, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1358, + "sample": { + "_tag": "ByteArray", + "bytearray": "8ce2568aaaae" + }, + "cborHex": "468ce2568aaaae", + "cborBytes": [70, 140, 226, 86, 138, 170, 174], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1359, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2561619452142252364" + } + }, + "cborHex": "1b238cb351d6ab714c", + "cborBytes": [27, 35, 140, 179, 81, 214, 171, 113, 76], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1360, + "sample": { + "_tag": "ByteArray", + "bytearray": "28" + }, + "cborHex": "4128", + "cborBytes": [65, 40], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1361, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7839968421722502464" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7871034255937051959" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "12093b" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13410973868950429053" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7645266cc99cfe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13047326049317693727" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "245075818686249535" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5402039091614900022" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "077ee776704f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5349c4f82188b944a608b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47116c8083" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61d70119a2b8a1af74e55d13" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7b62634" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16705964316952949950" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b6ccd29bddb0cb5409f80d8669f1b6d3b87f4080f1d379f4312093bffff9f1bba1d59adeed61d7d477645266cc99cfe1bb51169ea0648291f1b0366af289bd4fa3f1b4af7e5eebe7adf36ffbf46077ee776704f4bb5349c4f82188b944a608b4547116c80834c61d70119a2b8a1af74e55d1344b7b626341be7d78208c654f4beffffff", + "cborBytes": [ + 159, 27, 108, 205, 41, 189, 219, 12, 181, 64, 159, 128, 216, 102, 159, 27, 109, 59, 135, 244, 8, 15, 29, 55, 159, + 67, 18, 9, 59, 255, 255, 159, 27, 186, 29, 89, 173, 238, 214, 29, 125, 71, 118, 69, 38, 108, 201, 156, 254, 27, + 181, 17, 105, 234, 6, 72, 41, 31, 27, 3, 102, 175, 40, 155, 212, 250, 63, 27, 74, 247, 229, 238, 190, 122, 223, + 54, 255, 191, 70, 7, 126, 231, 118, 112, 79, 75, 181, 52, 156, 79, 130, 24, 139, 148, 74, 96, 139, 69, 71, 17, + 108, 128, 131, 76, 97, 215, 1, 25, 162, 184, 161, 175, 116, 229, 93, 19, 68, 183, 182, 38, 52, 27, 231, 215, 130, + 8, 198, 84, 244, 190, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1362, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12672128638233074518" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "769faf" + }, + { + "_tag": "ByteArray", + "bytearray": "7f67e951cd513d4c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15675070321947282127" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a6b1788eb868" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abd21fce37c962d228" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11174542932285750332" + } + } + } + ] + }, + "cborHex": "bf1bafdc71db4defdb569f43769faf487f67e951cd513d4c1bd989096860ef8acf46a6b1788eb868ff49abd21fce37c962d2281b9b13f397763e7c3cff", + "cborBytes": [ + 191, 27, 175, 220, 113, 219, 77, 239, 219, 86, 159, 67, 118, 159, 175, 72, 127, 103, 233, 81, 205, 81, 61, 76, 27, + 217, 137, 9, 104, 96, 239, 138, 207, 70, 166, 177, 120, 142, 184, 104, 255, 73, 171, 210, 31, 206, 55, 201, 98, + 210, 40, 27, 155, 19, 243, 151, 118, 62, 124, 60, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1363, + "sample": { + "_tag": "ByteArray", + "bytearray": "07fb3c5a" + }, + "cborHex": "4407fb3c5a", + "cborBytes": [68, 7, 251, 60, 90], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1364, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7930" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f939830" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "deac0a11" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abdf" + } + } + ] + }, + "cborHex": "bf427930446f93983044deac0a1142abdfff", + "cborBytes": [191, 66, 121, 48, 68, 111, 147, 152, 48, 68, 222, 172, 10, 17, 66, 171, 223, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1365, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [] + } + ] + }, + "cborHex": "d905059fa0d9050980ff", + "cborBytes": [217, 5, 5, 159, 160, 217, 5, 9, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1366, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6458674542009775293" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7455150100951200068" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43b6219a6cabd93cb68b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f2c24" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14993311725333220092" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b59a1d246c459f4bdbf1b677603848a69f1444a43b6219a6cabd93cb68b435f2c241bd012f193832f8afcffff", + "cborBytes": [ + 191, 27, 89, 161, 210, 70, 196, 89, 244, 189, 191, 27, 103, 118, 3, 132, 138, 105, 241, 68, 74, 67, 182, 33, 154, + 108, 171, 217, 60, 182, 139, 67, 95, 44, 36, 27, 208, 18, 241, 147, 131, 47, 138, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1367, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6123333666399469899" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "436ad4775e0c244acdffa6" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1119ede4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6720829307957949573" + } + }, + { + "_tag": "ByteArray", + "bytearray": "832c703da8593a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11495084876491426640" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10139264352037182504" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e39a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13551906987432749754" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3065998719019257327" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15665264352779892632" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "39105a43b1544b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11636377484118811837" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7568151942578611869" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07d6deda2e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4517316884909212946" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a1fbc00a1c9f9704fb4e4c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7472859605628016484" + } + }, + { + "_tag": "ByteArray", + "bytearray": "022af2" + }, + { + "_tag": "ByteArray", + "bytearray": "0675dc17195c1ec6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16396753508181101423" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3692018398800546664" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3888624509223713370" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2197850912619947500" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02465941c84245eb2f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16286816032361046259" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80c0177329f0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2846158025996496793" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94ccd8be49788c7e5420" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b13d70" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "480964135860470644" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d24bc97de1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "379023b03871da5a4f3d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14623886247269486320" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f034d227d564d3b6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "10" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bc9c" + }, + { + "_tag": "ByteArray", + "bytearray": "40122dd3ca695e22c3f16905" + } + ] + }, + "cborHex": "d8669f1b54fa7386daee414b9f9f4b436ad4775e0c244acdffa69f441119ede41b5d452ea5a8de348547832c703da8593aff1b9f86becaa63c8b50d8669f1b8cb5e73542f51c289f42e39a1bbc120b9a9f102aba1b2a8c9d9730f20defffffff9fd8669f1bd96632ee4408f7989f4739105a43b1544bffff1ba17cb7ab6d4164bdd8669f1b69077a180f94a69d9f4507d6deda2e1b3eb0bbc5e6e34512ffff9f4ba1fbc00a1c9f9704fb4e4c1b67b4ee37e9d2d76443022af2480675dc17195c1ec6ff1be38cf87124c64b6fff9fd8669f1b333caf2c2cb68b689f1b35f72b6369283a5a1b1e8055c2a3fae5ecffffbf4902465941c84245eb2f1be20664e3e30460f34680c0177329f01b277f95a52225ef994a94ccd8be49788c7e542041f043b13d701b06acba5553aa8374ff45d24bc97de19f4a379023b03871da5a4f3d1bcaf27b0fac37cef048f034d227d564d3b6ff4110ff42bc9c4c40122dd3ca695e22c3f16905ffff", + "cborBytes": [ + 216, 102, 159, 27, 84, 250, 115, 134, 218, 238, 65, 75, 159, 159, 75, 67, 106, 212, 119, 94, 12, 36, 74, 205, 255, + 166, 159, 68, 17, 25, 237, 228, 27, 93, 69, 46, 165, 168, 222, 52, 133, 71, 131, 44, 112, 61, 168, 89, 58, 255, + 27, 159, 134, 190, 202, 166, 60, 139, 80, 216, 102, 159, 27, 140, 181, 231, 53, 66, 245, 28, 40, 159, 66, 227, + 154, 27, 188, 18, 11, 154, 159, 16, 42, 186, 27, 42, 140, 157, 151, 48, 242, 13, 239, 255, 255, 255, 159, 216, + 102, 159, 27, 217, 102, 50, 238, 68, 8, 247, 152, 159, 71, 57, 16, 90, 67, 177, 84, 75, 255, 255, 27, 161, 124, + 183, 171, 109, 65, 100, 189, 216, 102, 159, 27, 105, 7, 122, 24, 15, 148, 166, 157, 159, 69, 7, 214, 222, 218, 46, + 27, 62, 176, 187, 197, 230, 227, 69, 18, 255, 255, 159, 75, 161, 251, 192, 10, 28, 159, 151, 4, 251, 78, 76, 27, + 103, 180, 238, 55, 233, 210, 215, 100, 67, 2, 42, 242, 72, 6, 117, 220, 23, 25, 92, 30, 198, 255, 27, 227, 140, + 248, 113, 36, 198, 75, 111, 255, 159, 216, 102, 159, 27, 51, 60, 175, 44, 44, 182, 139, 104, 159, 27, 53, 247, 43, + 99, 105, 40, 58, 90, 27, 30, 128, 85, 194, 163, 250, 229, 236, 255, 255, 191, 73, 2, 70, 89, 65, 200, 66, 69, 235, + 47, 27, 226, 6, 100, 227, 227, 4, 96, 243, 70, 128, 192, 23, 115, 41, 240, 27, 39, 127, 149, 165, 34, 37, 239, + 153, 74, 148, 204, 216, 190, 73, 120, 140, 126, 84, 32, 65, 240, 67, 177, 61, 112, 27, 6, 172, 186, 85, 83, 170, + 131, 116, 255, 69, 210, 75, 201, 125, 225, 159, 74, 55, 144, 35, 176, 56, 113, 218, 90, 79, 61, 27, 202, 242, 123, + 15, 172, 55, 206, 240, 72, 240, 52, 210, 39, 213, 100, 211, 182, 255, 65, 16, 255, 66, 188, 156, 76, 64, 18, 45, + 211, 202, 105, 94, 34, 195, 241, 105, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1368, + "sample": { + "_tag": "ByteArray", + "bytearray": "0356" + }, + "cborHex": "420356", + "cborBytes": [66, 3, 86], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1369, + "sample": { + "_tag": "ByteArray", + "bytearray": "0201" + }, + "cborHex": "420201", + "cborBytes": [66, 2, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1370, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e91ad2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3616714442605007616" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4179820586767469537" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3025068873918530072" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf7d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4451691673058515333" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11593897195040760669" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5964231900959129103" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af7a8aa49fa5ff39" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9933872723949474752" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12175f27" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12420687898446867224" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4753575245648335303" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16727477268686064682" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5416454374759622833" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c32b128b4093fb9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17133624941594441946" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e075" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e362f6c3907a3eec46418" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4a50e" + } + } + ] + } + ] + }, + "cborHex": "9f43e91ad21b3231269f957f13001b3a01b4ad9323cbe1bf1b29fb341d0301421842bf7d1b3dc795fd963799851ba0e5cc1260cd635d1b52c5355066b8be0f48af7a8aa49fa5ff391b89dc349c4af353c04412175f271bac5f25d604eb2b181b41f8178019f591c71be823eff32c744c2a1b4b2b1c8e65a868b1ffbf483c32b128b4093fb91bedc6dd1b468278da4273a142e0754b9e362f6c3907a3eec4641843d4a50effff", + "cborBytes": [ + 159, 67, 233, 26, 210, 27, 50, 49, 38, 159, 149, 127, 19, 0, 27, 58, 1, 180, 173, 147, 35, 203, 225, 191, 27, 41, + 251, 52, 29, 3, 1, 66, 24, 66, 191, 125, 27, 61, 199, 149, 253, 150, 55, 153, 133, 27, 160, 229, 204, 18, 96, 205, + 99, 93, 27, 82, 197, 53, 80, 102, 184, 190, 15, 72, 175, 122, 138, 164, 159, 165, 255, 57, 27, 137, 220, 52, 156, + 74, 243, 83, 192, 68, 18, 23, 95, 39, 27, 172, 95, 37, 214, 4, 235, 43, 24, 27, 65, 248, 23, 128, 25, 245, 145, + 199, 27, 232, 35, 239, 243, 44, 116, 76, 42, 27, 75, 43, 28, 142, 101, 168, 104, 177, 255, 191, 72, 60, 50, 177, + 40, 180, 9, 63, 185, 27, 237, 198, 221, 27, 70, 130, 120, 218, 66, 115, 161, 66, 224, 117, 75, 158, 54, 47, 108, + 57, 7, 163, 238, 196, 100, 24, 67, 212, 165, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1371, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [] + }, + "cborHex": "d9050b80", + "cborBytes": [217, 5, 11, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1372, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a5298" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6768fa1de9e987798b81eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4981955797488751292" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8514bb3b5325" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6840158306961754816" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db6a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7005170632777081522" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9964309910329263958" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15899862780692377027" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12431044468652764521" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12164344233165692047" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f436a5298bf4b6768fa1de9e987798b81eb1b45237666fc03d2bc468514bb3b53251b5eed1fbd4de48ac042db6a1b61375d9355ad22b2ff9f1b8a485711fd1487561bdca7a8f53c9fadc31bac83f114ed21ed691ba8d06ea16f699c8fffffff", + "cborBytes": [ + 159, 159, 67, 106, 82, 152, 191, 75, 103, 104, 250, 29, 233, 233, 135, 121, 139, 129, 235, 27, 69, 35, 118, 102, + 252, 3, 210, 188, 70, 133, 20, 187, 59, 83, 37, 27, 94, 237, 31, 189, 77, 228, 138, 192, 66, 219, 106, 27, 97, 55, + 93, 147, 85, 173, 34, 178, 255, 159, 27, 138, 72, 87, 17, 253, 20, 135, 86, 27, 220, 167, 168, 245, 60, 159, 173, + 195, 27, 172, 131, 241, 20, 237, 33, 237, 105, 27, 168, 208, 110, 161, 111, 105, 156, 143, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1373, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c62f20a1c88d2c01eb4c" + }, + { + "_tag": "ByteArray", + "bytearray": "412d3fba4963c59a5d0824cb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12715825825751411083" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6995936951667897896" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9662039210474964318" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7609572520067527552" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d354" + }, + { + "_tag": "ByteArray", + "bytearray": "009d2c57" + }, + { + "_tag": "ByteArray", + "bytearray": "9b03c81246af4a69133f69da" + }, + { + "_tag": "ByteArray", + "bytearray": "1dbb288f38" + }, + { + "_tag": "ByteArray", + "bytearray": "037b" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f4ac62f20a1c88d2c01eb4c4c412d3fba4963c59a5d0824cb1bb077b03799a6a98bbf1b61168f976b31b6281b861675786241855effd8669f1b699aa1e3c732f3809f42d35444009d2c574c9b03c81246af4a69133f69da451dbb288f3842037bffffffff", + "cborBytes": [ + 159, 159, 74, 198, 47, 32, 161, 200, 141, 44, 1, 235, 76, 76, 65, 45, 63, 186, 73, 99, 197, 154, 93, 8, 36, 203, + 27, 176, 119, 176, 55, 153, 166, 169, 139, 191, 27, 97, 22, 143, 151, 107, 49, 182, 40, 27, 134, 22, 117, 120, 98, + 65, 133, 94, 255, 216, 102, 159, 27, 105, 154, 161, 227, 199, 50, 243, 128, 159, 66, 211, 84, 68, 0, 157, 44, 87, + 76, 155, 3, 200, 18, 70, 175, 74, 105, 19, 63, 105, 218, 69, 29, 187, 40, 143, 56, 66, 3, 123, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1374, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ef53c7a6c88b62" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1785869013417364013" + } + } + ] + }, + "cborHex": "9f47ef53c7a6c88b621b18c8ae67e01e8a2dff", + "cborBytes": [159, 71, 239, 83, 199, 166, 200, 139, 98, 27, 24, 200, 174, 103, 224, 30, 138, 45, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1375, + "sample": { + "_tag": "ByteArray", + "bytearray": "63f9" + }, + "cborHex": "4263f9", + "cborBytes": [66, 99, 249], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1376, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5001609024919566782" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09b965c5fea3ab47129314" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16368752584773630870" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b8c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "696e0a02d4412e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "945472" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14425919386456329388" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9abc792cca0c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c426" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a37dbacff231ee619f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "948509928346678709" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efce7d9cc8b8597ae8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9829a" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9e237c77e01992cf9a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14619133345907220191" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3255a44c1cfc20" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14843794202887810538" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95dbf83213e6d5022393" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5914069646962090443" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3115419588538082910" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "32d69b87" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14398998870003237724" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "716b92d7a2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5271011001150213039" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7dad6c6093a9acea88" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b23065da0986363993dca35a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86c1f8a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13535019732420886602" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a9563ccdadb686f272f7975" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8291671279b70c2f144" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11366816605507044043" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02004d20" + } + ] + }, + "cborHex": "d8669f1b456948e893b7f9be9f9fbf4b09b965c5fea3ab471293141be3297dc01fb07b96420b8c47696e0a02d4412e439454721bc83329400c268cac469abc792cca0c42c42649a37dbacff231ee619f1b0d29c8c12108f5b549efce7d9cc8b8597ae843b9829aff499e237c77e01992cf9ad8669f1bcae1985296de1edf9f473255a44c1cfc201bcdffc02e86216dea4a95dbf83213e6d50223931b5212ff02841861cb1b2b3c319c0d1b265effffbf4432d69b871bc7d3852edfcb435c45716b92d7a21b492664941abc0baf497dad6c6093a9acea884cb23065da0986363993dca35a4486c1f8a01bbbd60cbc2ad9804a41934c9a9563ccdadb686f272f79754ae8291671279b70c2f1441b9dbf0b7a8e4242cbffff4402004d20ffff", + "cborBytes": [ + 216, 102, 159, 27, 69, 105, 72, 232, 147, 183, 249, 190, 159, 159, 191, 75, 9, 185, 101, 197, 254, 163, 171, 71, + 18, 147, 20, 27, 227, 41, 125, 192, 31, 176, 123, 150, 66, 11, 140, 71, 105, 110, 10, 2, 212, 65, 46, 67, 148, 84, + 114, 27, 200, 51, 41, 64, 12, 38, 140, 172, 70, 154, 188, 121, 44, 202, 12, 66, 196, 38, 73, 163, 125, 186, 207, + 242, 49, 238, 97, 159, 27, 13, 41, 200, 193, 33, 8, 245, 181, 73, 239, 206, 125, 156, 200, 184, 89, 122, 232, 67, + 185, 130, 154, 255, 73, 158, 35, 124, 119, 224, 25, 146, 207, 154, 216, 102, 159, 27, 202, 225, 152, 82, 150, 222, + 30, 223, 159, 71, 50, 85, 164, 76, 28, 252, 32, 27, 205, 255, 192, 46, 134, 33, 109, 234, 74, 149, 219, 248, 50, + 19, 230, 213, 2, 35, 147, 27, 82, 18, 255, 2, 132, 24, 97, 203, 27, 43, 60, 49, 156, 13, 27, 38, 94, 255, 255, + 191, 68, 50, 214, 155, 135, 27, 199, 211, 133, 46, 223, 203, 67, 92, 69, 113, 107, 146, 215, 162, 27, 73, 38, 100, + 148, 26, 188, 11, 175, 73, 125, 173, 108, 96, 147, 169, 172, 234, 136, 76, 178, 48, 101, 218, 9, 134, 54, 57, 147, + 220, 163, 90, 68, 134, 193, 248, 160, 27, 187, 214, 12, 188, 42, 217, 128, 74, 65, 147, 76, 154, 149, 99, 204, + 218, 219, 104, 111, 39, 47, 121, 117, 74, 232, 41, 22, 113, 39, 155, 112, 194, 241, 68, 27, 157, 191, 11, 122, + 142, 66, 66, 203, 255, 255, 68, 2, 0, 77, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1377, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9986112211532445382" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + ] + }, + "cborHex": "d8669f1b8a95cc25cf94f6c69f1bfffffffffffffffeffff", + "cborBytes": [ + 216, 102, 159, 27, 138, 149, 204, 37, 207, 148, 246, 198, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1378, + "sample": { + "_tag": "ByteArray", + "bytearray": "43db" + }, + "cborHex": "4243db", + "cborBytes": [66, 67, 219], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1379, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "659e30073d57c413" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8083631550626919640" + } + } + ] + }, + "cborHex": "d905059f48659e30073d57c413801b702ed410fe41f4d8ff", + "cborBytes": [ + 217, 5, 5, 159, 72, 101, 158, 48, 7, 61, 87, 196, 19, 128, 27, 112, 46, 212, 16, 254, 65, 244, 216, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1380, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcff" + }, + "cborHex": "42fcff", + "cborBytes": [66, 252, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1381, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2158611313238937902" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3272649061571677873" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6564805444646948166" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10112233658658736176" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10099476617781737952" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5106429333627372869" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4189cd27627c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17741073807703764863" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10399319139198988860" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6c8c794" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16900390625833644566" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da44e612c7eb7c2e66" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12980691337700102243" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12082222028174250909" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17139756182233357567" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1443ff7c3d8dcc72f826f9b" + } + } + ] + }, + "cborHex": "bf1b1df4ed8d75bf112e9f1b2d6ac8fb757eceb11b5b1adfc523bb4d46ff1b8c55deef861a4830bf1b8c288c797c3e79e01b46ddae6c857e8545464189cd27627c1bf634f4a1c22b6f7fff1b9051cda8bde0723cbf44a6c8c7941bea8a3fbb6a27f21649da44e612c7eb7c2e661bb424adff3a9ad063ff1ba7acaceb96b9d39da01beddca56ffad31cff4cf1443ff7c3d8dcc72f826f9bff", + "cborBytes": [ + 191, 27, 29, 244, 237, 141, 117, 191, 17, 46, 159, 27, 45, 106, 200, 251, 117, 126, 206, 177, 27, 91, 26, 223, + 197, 35, 187, 77, 70, 255, 27, 140, 85, 222, 239, 134, 26, 72, 48, 191, 27, 140, 40, 140, 121, 124, 62, 121, 224, + 27, 70, 221, 174, 108, 133, 126, 133, 69, 70, 65, 137, 205, 39, 98, 124, 27, 246, 52, 244, 161, 194, 43, 111, 127, + 255, 27, 144, 81, 205, 168, 189, 224, 114, 60, 191, 68, 166, 200, 199, 148, 27, 234, 138, 63, 187, 106, 39, 242, + 22, 73, 218, 68, 230, 18, 199, 235, 124, 46, 102, 27, 180, 36, 173, 255, 58, 154, 208, 99, 255, 27, 167, 172, 172, + 235, 150, 185, 211, 157, 160, 27, 237, 220, 165, 111, 250, 211, 28, 255, 76, 241, 68, 63, 247, 195, 216, 220, 199, + 47, 130, 111, 155, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1382, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7876081427729431586" + } + }, + "cborHex": "1b6d4d765449dd3c22", + "cborBytes": [27, 109, 77, 118, 84, 73, 221, 60, 34], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1383, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2945338343913163379" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd180d89cf99" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5354868817203961773" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "970d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecbce4d1d0036e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c736fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14050002009324063947" + } + } + } + ] + }, + "cborHex": "bf1b28dff19e64480a73bf46cd180d89cf991b4a5050d164421fadff42970d47ecbce4d1d0036e43c736fc1bc2fba2632b490ccbff", + "cborBytes": [ + 191, 27, 40, 223, 241, 158, 100, 72, 10, 115, 191, 70, 205, 24, 13, 137, 207, 153, 27, 74, 80, 80, 209, 100, 66, + 31, 173, 255, 66, 151, 13, 71, 236, 188, 228, 209, 208, 3, 110, 67, 199, 54, 252, 27, 194, 251, 162, 99, 43, 73, + 12, 203, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1384, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18324759078356806707" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "96e505" + } + ] + }, + "cborHex": "d8669f1bfe4e9f4b04126c339f4396e505ffff", + "cborBytes": [216, 102, 159, 27, 254, 78, 159, 75, 4, 18, 108, 51, 159, 67, 150, 229, 5, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1385, + "sample": { + "_tag": "ByteArray", + "bytearray": "9a" + }, + "cborHex": "419a", + "cborBytes": [65, 154], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1386, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15610561358828088602" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "52c6db153137290c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14792180378881021210" + } + }, + { + "_tag": "ByteArray", + "bytearray": "936fb38701" + } + ] + }, + "cborHex": "d905039fd8669f1bd8a3dad8f9632d1a80ff4852c6db153137290c1bcd4861aea8b4d51a45936fb38701ff", + "cborBytes": [ + 217, 5, 3, 159, 216, 102, 159, 27, 216, 163, 218, 216, 249, 99, 45, 26, 128, 255, 72, 82, 198, 219, 21, 49, 55, + 41, 12, 27, 205, 72, 97, 174, 168, 180, 213, 26, 69, 147, 111, 179, 135, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1387, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa060004" + }, + "cborHex": "44fa060004", + "cborBytes": [68, 250, 6, 0, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1388, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6027593717760715324" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "326142449493539575" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3075972695924299819" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2436446379191261043" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "668da4c6c0b9" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b7d7844dee2a2409" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + "cborHex": "d8669f1b53a6508cfd80ea3c9fd905029fa01b0486b0d4703cfaf7ff1b2ab00cdea75e582b80d8669f1bfffffffffffffff89fd8669f1b21cfff12b1fb57739f46668da4c6c0b9ffff9f48b7d7844dee2a2409ffd8669f1bffffffffffffffec80ffffff0affff", + "cborBytes": [ + 216, 102, 159, 27, 83, 166, 80, 140, 253, 128, 234, 60, 159, 217, 5, 2, 159, 160, 27, 4, 134, 176, 212, 112, 60, + 250, 247, 255, 27, 42, 176, 12, 222, 167, 94, 88, 43, 128, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 248, 159, 216, 102, 159, 27, 33, 207, 255, 18, 177, 251, 87, 115, 159, 70, 102, 141, 164, 198, 192, 185, 255, 255, + 159, 72, 183, 215, 132, 77, 238, 42, 36, 9, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 128, + 255, 255, 255, 10, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1389, + "sample": { + "_tag": "ByteArray", + "bytearray": "47b3ac363ba869955079" + }, + "cborHex": "4a47b3ac363ba869955079", + "cborBytes": [74, 71, 179, 172, 54, 59, 168, 105, 149, 80, 121], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1390, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11100402395462092614" + } + }, + "cborHex": "1b9a0c8d2a8d69c746", + "cborBytes": [27, 154, 12, 141, 42, 141, 105, 199, 70], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1391, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "660483526093524002" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14999659922031516363" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2052833444252863956" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07d2c12e2806" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ef879e6da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58add1cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4078095063167082751" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71671d2b14bba1b862f5a2de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3386675192509642385" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8189b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14544649453734381994" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "865cf1a508b299553ab9e9c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10183412541677189643" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a41810" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1675044428975514942" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b092a824480cd4c22d8669f1bd0297f3a3c5a1acb80ff1b1c7d212423bbcdd4bf4607d2c12e2806453ef879e6da4458add1cc1b38984dda705920ff4c71671d2b14bba1b862f5a2de1b2effe324eb2a3691438189b91bc9d8f99e086ac9aa4c865cf1a508b299553ab9e9c21b8d52bfc0abed3a0b43a418101b173ef4088c15253effff", + "cborBytes": [ + 191, 27, 9, 42, 130, 68, 128, 205, 76, 34, 216, 102, 159, 27, 208, 41, 127, 58, 60, 90, 26, 203, 128, 255, 27, 28, + 125, 33, 36, 35, 187, 205, 212, 191, 70, 7, 210, 193, 46, 40, 6, 69, 62, 248, 121, 230, 218, 68, 88, 173, 209, + 204, 27, 56, 152, 77, 218, 112, 89, 32, 255, 76, 113, 103, 29, 43, 20, 187, 161, 184, 98, 245, 162, 222, 27, 46, + 255, 227, 36, 235, 42, 54, 145, 67, 129, 137, 185, 27, 201, 216, 249, 158, 8, 106, 201, 170, 76, 134, 92, 241, + 165, 8, 178, 153, 85, 58, 185, 233, 194, 27, 141, 82, 191, 192, 171, 237, 58, 11, 67, 164, 24, 16, 27, 23, 62, + 244, 8, 140, 21, 37, 62, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1392, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5793930528518742368" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13023411708721698385" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12231373310173992752" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c996c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14398457038143711217" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9379704008103313206" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16674749618188459127" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10461002996017442174" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9540842873777845722" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f1b5d1385c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15393231686742131103" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9aaaf7" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18189056435670152174" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e2622bfb30fe794bef" + }, + { + "_tag": "ByteArray", + "bytearray": "d8" + }, + { + "_tag": "ByteArray", + "bytearray": "3417" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11546548979765735007" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1265689708114775126" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b50682d1e3da6a160d8669f1bb4bc73f2b60516519f1ba9be9138941d5730439c996c1bc7d19863d04767f1ffff1b822b67197d4e3f36d8669f1be7689c6e5eb41c779f1b912cf2ccd3eaad7e1b8467e20b4d5875da45f1b5d1385c1bd59fbea9898d419f439aaaf7ffff1bfc6c82755fa6f3ee9f49e2622bfb30fe794bef41d84234171ba03d951ef095ee5f1b1190a215680c8c56ffff", + "cborBytes": [ + 191, 27, 80, 104, 45, 30, 61, 166, 161, 96, 216, 102, 159, 27, 180, 188, 115, 242, 182, 5, 22, 81, 159, 27, 169, + 190, 145, 56, 148, 29, 87, 48, 67, 156, 153, 108, 27, 199, 209, 152, 99, 208, 71, 103, 241, 255, 255, 27, 130, 43, + 103, 25, 125, 78, 63, 54, 216, 102, 159, 27, 231, 104, 156, 110, 94, 180, 28, 119, 159, 27, 145, 44, 242, 204, + 211, 234, 173, 126, 27, 132, 103, 226, 11, 77, 88, 117, 218, 69, 241, 181, 209, 56, 92, 27, 213, 159, 190, 169, + 137, 141, 65, 159, 67, 154, 170, 247, 255, 255, 27, 252, 108, 130, 117, 95, 166, 243, 238, 159, 73, 226, 98, 43, + 251, 48, 254, 121, 75, 239, 65, 216, 66, 52, 23, 27, 160, 61, 149, 30, 240, 149, 238, 95, 27, 17, 144, 162, 21, + 104, 12, 140, 86, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1393, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2110249699953536086" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a9668e4b60f43de46" + } + ] + }, + "cborHex": "9f1b1d491cebe91aec56499a9668e4b60f43de46ff", + "cborBytes": [159, 27, 29, 73, 28, 235, 233, 26, 236, 86, 73, 154, 150, 104, 228, 182, 15, 67, 222, 70, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1394, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2735050634261002025" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8667452578312455015" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9591800679768536359" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c" + }, + { + "_tag": "ByteArray", + "bytearray": "40d6c3f44579a180e97112" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10015143118655275756" + } + }, + { + "_tag": "ByteArray", + "bytearray": "82e8830da2cb" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12115198874911658486" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8290213304961910130" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1974a46" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16389010310038907415" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12576169760615183615" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13164275266861634673" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14541249270176306644" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "959da36f482bfd" + }, + { + "_tag": "ByteArray", + "bytearray": "59c30f2627a3" + }, + { + "_tag": "ByteArray", + "bytearray": "9bd2562284187b1adf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2682915149357535180" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13190627598696087419" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13369918365505944701" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "013355180360d715c5d0af1c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1642720526346889794" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15569577028134791848" + } + }, + { + "_tag": "ByteArray", + "bytearray": "febaba51c5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15220364778495465353" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b25f4da0f99d57729d8669f1b7848fa32a5db83679f1b851cebe611f43527410c4b40d6c3f44579a180e971121b8afcef9a9a2542ec4682e8830da2cbffff1ba821d5300a5251f6bf1b730cc113d278c57244c1974a461be371760b56156a171bae8787c4107a34ffff1bb6b0e69b9ebf9471d8669f1bc9cce52b1b4455d49f47959da36f482bfd4659c30f2627a3499bd2562284187b1adf1b253ba11d17f84fcc1bb70e85ea00be7f7bffff1bb98b7deaa3f3fc7d9f4c013355180360d715c5d0af1c1b16cc1d9d7e262a421bd8123fd0e10e6aa845febaba51c51bd33999200616d789ffff", + "cborBytes": [ + 191, 27, 37, 244, 218, 15, 153, 213, 119, 41, 216, 102, 159, 27, 120, 72, 250, 50, 165, 219, 131, 103, 159, 27, + 133, 28, 235, 230, 17, 244, 53, 39, 65, 12, 75, 64, 214, 195, 244, 69, 121, 161, 128, 233, 113, 18, 27, 138, 252, + 239, 154, 154, 37, 66, 236, 70, 130, 232, 131, 13, 162, 203, 255, 255, 27, 168, 33, 213, 48, 10, 82, 81, 246, 191, + 27, 115, 12, 193, 19, 210, 120, 197, 114, 68, 193, 151, 74, 70, 27, 227, 113, 118, 11, 86, 21, 106, 23, 27, 174, + 135, 135, 196, 16, 122, 52, 255, 255, 27, 182, 176, 230, 155, 158, 191, 148, 113, 216, 102, 159, 27, 201, 204, + 229, 43, 27, 68, 85, 212, 159, 71, 149, 157, 163, 111, 72, 43, 253, 70, 89, 195, 15, 38, 39, 163, 73, 155, 210, + 86, 34, 132, 24, 123, 26, 223, 27, 37, 59, 161, 29, 23, 248, 79, 204, 27, 183, 14, 133, 234, 0, 190, 127, 123, + 255, 255, 27, 185, 139, 125, 234, 163, 243, 252, 125, 159, 76, 1, 51, 85, 24, 3, 96, 215, 21, 197, 208, 175, 28, + 27, 22, 204, 29, 157, 126, 38, 42, 66, 27, 216, 18, 63, 208, 225, 14, 106, 168, 69, 254, 186, 186, 81, 197, 27, + 211, 57, 153, 32, 6, 22, 215, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1395, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "888176199473496341" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6524052241886565772" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2885357066087285277" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7afb1bba4dc46dd0" + } + ] + } + } + ] + }, + "cborHex": "bf1b0c536f8c339301159f1b5a8a16f2b5bd558c1b280ad8f6de4bc21d487afb1bba4dc46dd0ffff", + "cborBytes": [ + 191, 27, 12, 83, 111, 140, 51, 147, 1, 21, 159, 27, 90, 138, 22, 242, 181, 189, 85, 140, 27, 40, 10, 216, 246, + 222, 75, 194, 29, 72, 122, 251, 27, 186, 77, 196, 109, 208, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1396, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09d7a9feed98f540" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13454901204444686629" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83d9f8bc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4776512542550350849" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8e6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ab87544b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16217617953346031341" + } + }, + { + "_tag": "ByteArray", + "bytearray": "26feed4ae0e5a87a58671c" + }, + { + "_tag": "ByteArray", + "bytearray": "433e8ebdcb8d1f" + }, + { + "_tag": "ByteArray", + "bytearray": "7c15e9" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce51" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5161f631f1a0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf428827668379" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8a7" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "43c9" + } + ] + } + } + ] + }, + "cborHex": "bf4809d7a9feed98f5401bbab9695bbae6a9254483d9f8bc1b424994d9b3e95c0142a8e69f44ab87544b1be1108d9a9c300eed4b26feed4ae0e5a87a58671c47433e8ebdcb8d1f437c15e9ff42ce51465161f631f1a047cf428827668379a042d8a79f4243c9ffff", + "cborBytes": [ + 191, 72, 9, 215, 169, 254, 237, 152, 245, 64, 27, 186, 185, 105, 91, 186, 230, 169, 37, 68, 131, 217, 248, 188, + 27, 66, 73, 148, 217, 179, 233, 92, 1, 66, 168, 230, 159, 68, 171, 135, 84, 75, 27, 225, 16, 141, 154, 156, 48, + 14, 237, 75, 38, 254, 237, 74, 224, 229, 168, 122, 88, 103, 28, 71, 67, 62, 142, 189, 203, 141, 31, 67, 124, 21, + 233, 255, 66, 206, 81, 70, 81, 97, 246, 49, 241, 160, 71, 207, 66, 136, 39, 102, 131, 121, 160, 66, 216, 167, 159, + 66, 67, 201, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1397, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6361516939720846920" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9757176993196734501" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2763200815422565203" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10805601047042492209" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a6626df1db9a99e309ec5fa2" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1ad50ac5e7fd43b3" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2633559534675211207" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1501fed2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3628978745168979907" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2488141776025296826" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4497455879966177147" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2939786223110700842" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4856174991567553672" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d1b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13300665183865923106" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11446130202394808959" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17869204026974940735" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b62c726fe2f1bed" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "167756560979617201" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "526362852679312752" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3e7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "936485830323792124" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15326139855982318492" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11340817830662777908" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9636610733813258991" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15577443017179410522" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10611350845734575794" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15716850284871438016" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb86" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17213395595461271327" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9339603754410037586" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18041367978326722724" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "98650a1b250e02993f" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b5848a5f3b0b0ee489f1b876874c7921af8251b2658dc806654eb531b95f534e6d98e87314ca6626df1db9a99e309ec5fa2ffff809f481ad50ac5e7fd43b380bf1b248c48718f28b3c7441501fed21b325cb8f10b3d67c31b2287a7c336cc1fba1b3e6a2c4b5660377b1b28cc37fe8819bf2a1b4364996cfb850488422d1b1bb8957483c8bbe6221b9ed8d2c65e9cd27f1bf7fc2a632ed22e3f484b62c726fe2f1bedff1b0253fdb411ee65b1bf1b074e0439c8e9657042f3e71b0cff10e6a5a2e8fc1bd4b162ff65c8539c1b9d62adbb13122c341b85bc1e67cba7daef1bd82e31e42bde305a1b9343175f730cdeb21bda1d781009c24ec042cb861beee24417f5be1f1f1b819cf0219c83d152ffffd8669f1bfa5fd096ca4588a49f4998650a1b250e02993fffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 88, 72, 165, 243, 176, 176, 238, 72, 159, 27, 135, 104, 116, 199, 146, 26, 248, 37, 27, + 38, 88, 220, 128, 102, 84, 235, 83, 27, 149, 245, 52, 230, 217, 142, 135, 49, 76, 166, 98, 109, 241, 219, 154, + 153, 227, 9, 236, 95, 162, 255, 255, 128, 159, 72, 26, 213, 10, 197, 231, 253, 67, 179, 128, 191, 27, 36, 140, 72, + 113, 143, 40, 179, 199, 68, 21, 1, 254, 210, 27, 50, 92, 184, 241, 11, 61, 103, 195, 27, 34, 135, 167, 195, 54, + 204, 31, 186, 27, 62, 106, 44, 75, 86, 96, 55, 123, 27, 40, 204, 55, 254, 136, 25, 191, 42, 27, 67, 100, 153, 108, + 251, 133, 4, 136, 66, 45, 27, 27, 184, 149, 116, 131, 200, 187, 230, 34, 27, 158, 216, 210, 198, 94, 156, 210, + 127, 27, 247, 252, 42, 99, 46, 210, 46, 63, 72, 75, 98, 199, 38, 254, 47, 27, 237, 255, 27, 2, 83, 253, 180, 17, + 238, 101, 177, 191, 27, 7, 78, 4, 57, 200, 233, 101, 112, 66, 243, 231, 27, 12, 255, 16, 230, 165, 162, 232, 252, + 27, 212, 177, 98, 255, 101, 200, 83, 156, 27, 157, 98, 173, 187, 19, 18, 44, 52, 27, 133, 188, 30, 103, 203, 167, + 218, 239, 27, 216, 46, 49, 228, 43, 222, 48, 90, 27, 147, 67, 23, 95, 115, 12, 222, 178, 27, 218, 29, 120, 16, 9, + 194, 78, 192, 66, 203, 134, 27, 238, 226, 68, 23, 245, 190, 31, 31, 27, 129, 156, 240, 33, 156, 131, 209, 82, 255, + 255, 216, 102, 159, 27, 250, 95, 208, 150, 202, 69, 136, 164, 159, 73, 152, 101, 10, 27, 37, 14, 2, 153, 63, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1398, + "sample": { + "_tag": "ByteArray", + "bytearray": "00360305" + }, + "cborHex": "4400360305", + "cborBytes": [68, 0, 54, 3, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1399, + "sample": { + "_tag": "ByteArray", + "bytearray": "a6f22b21a4e6be8d68a19e" + }, + "cborHex": "4ba6f22b21a4e6be8d68a19e", + "cborBytes": [75, 166, 242, 43, 33, 164, 230, 190, 141, 104, 161, 158], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1400, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2113385982771120890" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14754033716832750376" + } + }, + { + "_tag": "ByteArray", + "bytearray": "38e12cea1d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14289213321878522152" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1257388380374728928" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "933017271704735495" + } + } + ] + }, + "cborHex": "9fd8669f1b1d54415aa85ccafa9f415f9f1bccc0db7ec7f3cb284538e12cea1dff1bc64d7bcf0a594928ffff9f9f1b11732411ecf080e0ffff80801b0cf2be43e943cf07ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 29, 84, 65, 90, 168, 92, 202, 250, 159, 65, 95, 159, 27, 204, 192, 219, 126, 199, 243, + 203, 40, 69, 56, 225, 44, 234, 29, 255, 27, 198, 77, 123, 207, 10, 89, 73, 40, 255, 255, 159, 159, 27, 17, 115, + 36, 17, 236, 240, 128, 224, 255, 255, 128, 128, 27, 12, 242, 190, 67, 233, 67, 207, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1401, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11161392347964951714" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12811313206516823288" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2780756294393689476" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd09e58c635df2b630aa8cb6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9684403149340047366" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff752324" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b9ae53b347336cca29f1bb1caed7becb4b4f8bf1b26973b1dde4475844cdd09e58c635df2b630aa8cb61b8665e95aaa16780644ff752324ffffff", + "cborBytes": [ + 216, 102, 159, 27, 154, 229, 59, 52, 115, 54, 204, 162, 159, 27, 177, 202, 237, 123, 236, 180, 180, 248, 191, 27, + 38, 151, 59, 29, 222, 68, 117, 132, 76, 221, 9, 229, 140, 99, 93, 242, 182, 48, 170, 140, 182, 27, 134, 101, 233, + 90, 170, 22, 120, 6, 68, 255, 117, 35, 36, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1402, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5583532945149734800" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a1ae2f2c5a28c490a4a1" + } + ] + }, + "cborHex": "d905079f1b4d7cb1a17b572f904aa1ae2f2c5a28c490a4a1ff", + "cborBytes": [ + 217, 5, 7, 159, 27, 77, 124, 177, 161, 123, 87, 47, 144, 74, 161, 174, 47, 44, 90, 40, 196, 144, 164, 161, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1403, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb9c1e" + }, + "cborHex": "43fb9c1e", + "cborBytes": [67, 251, 156, 30], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1404, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2001350882580458662" + } + } + ] + }, + "cborHex": "9f1b1bc63a062b1f6ca6ff", + "cborBytes": [159, 27, 27, 198, 58, 6, 43, 31, 108, 166, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1405, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12050770623230245929" + }, + "fields": [] + } + ] + }, + "cborHex": "d9050a9fd8669f1ba73cf008bb59fc2980ffff", + "cborBytes": [217, 5, 10, 159, 216, 102, 159, 27, 167, 60, 240, 8, 187, 89, 252, 41, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1406, + "sample": { + "_tag": "ByteArray", + "bytearray": "965fff0f3323927b1f22" + }, + "cborHex": "4a965fff0f3323927b1f22", + "cborBytes": [74, 150, 95, 255, 15, 51, 35, 146, 123, 31, 34], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1407, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "262509690165040094" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1864882611742652052" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "17044a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9992571037779091254" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8037730158481908741" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14092140812648860215" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2780357317759005783" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10915099022101739305" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3596699232205509904" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11172340211154337295" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13540007503797059646" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9dfe567f37c" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b03a49f2c206293dea01b19e164dad4b936949f4317044aff1b8aacbe6a7baddf361b6f8bc0fe50c224051bc3915767deb84a37bf1b2695d03fe1aef4571b977a38badc9677291b31ea0ae54387951041811b9b0c203a7baabe0f410d1bbbe7c5162ff2803e46f9dfe567f37cffff", + "cborBytes": [ + 191, 27, 3, 164, 159, 44, 32, 98, 147, 222, 160, 27, 25, 225, 100, 218, 212, 185, 54, 148, 159, 67, 23, 4, 74, + 255, 27, 138, 172, 190, 106, 123, 173, 223, 54, 27, 111, 139, 192, 254, 80, 194, 36, 5, 27, 195, 145, 87, 103, + 222, 184, 74, 55, 191, 27, 38, 149, 208, 63, 225, 174, 244, 87, 27, 151, 122, 56, 186, 220, 150, 119, 41, 27, 49, + 234, 10, 229, 67, 135, 149, 16, 65, 129, 27, 155, 12, 32, 58, 123, 170, 190, 15, 65, 13, 27, 187, 231, 197, 22, + 47, 242, 128, 62, 70, 249, 223, 229, 103, 243, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1408, + "sample": { + "_tag": "ByteArray", + "bytearray": "ec7ac593e4" + }, + "cborHex": "45ec7ac593e4", + "cborBytes": [69, 236, 122, 197, 147, 228], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1409, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16299804197581651394" + } + }, + "cborHex": "1be234898ec1467dc2", + "cborBytes": [27, 226, 52, 137, 142, 193, 70, 125, 194], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1410, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16506100134278211481" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10970438413857548536" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "75845bb92156ba26dd" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "14af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6382051756129793915" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6745" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1be511729e7aae27999fd8669f1b983ed39d104768f89f4975845bb92156ba26ddffff9f4214af1b58919a423646377b426745ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 229, 17, 114, 158, 122, 174, 39, 153, 159, 216, 102, 159, 27, 152, 62, 211, 157, 16, 71, + 104, 248, 159, 73, 117, 132, 91, 185, 33, 86, 186, 38, 221, 255, 255, 159, 66, 20, 175, 27, 88, 145, 154, 66, 54, + 70, 55, 123, 66, 103, 69, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1411, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c353e5afde9cc312320f3d" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16659319602043587513" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11742773477179945456" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cc41" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2841551498240245515" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5801484758708950757" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6629415571002445983" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1193705633056575192" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905049f4bc353e5afde9cc312320f3d80d8669f1be731cae9c7828bb99f80d8669f1ba2f6b642f93071f09f42cc411b276f38084f96bf0bffff9f1b508303a684b096e51b5c006a56720b509f1b1090e4f2e0b84ed8ffffffff", + "cborBytes": [ + 217, 5, 4, 159, 75, 195, 83, 229, 175, 222, 156, 195, 18, 50, 15, 61, 128, 216, 102, 159, 27, 231, 49, 202, 233, + 199, 130, 139, 185, 159, 128, 216, 102, 159, 27, 162, 246, 182, 66, 249, 48, 113, 240, 159, 66, 204, 65, 27, 39, + 111, 56, 8, 79, 150, 191, 11, 255, 255, 159, 27, 80, 131, 3, 166, 132, 176, 150, 229, 27, 92, 0, 106, 86, 114, 11, + 80, 159, 27, 16, 144, 228, 242, 224, 184, 78, 216, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1412, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3568091182479726135" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad82c692633dd7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11591301623214944234" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13937646201809305302" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7e2cb635f4a266abc422cf8" + } + } + ] + }, + "cborHex": "bf1b31846806a1e8563747ad82c692633dd71ba0dc9369b822afea801bc16c77602fea7ed64cc7e2cb635f4a266abc422cf8ff", + "cborBytes": [ + 191, 27, 49, 132, 104, 6, 161, 232, 86, 55, 71, 173, 130, 198, 146, 99, 61, 215, 27, 160, 220, 147, 105, 184, 34, + 175, 234, 128, 27, 193, 108, 119, 96, 47, 234, 126, 214, 76, 199, 226, 203, 99, 95, 74, 38, 106, 188, 66, 44, 248, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1413, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16506622388975401078" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29ee4ea9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16841955615763598922" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d3d7858b6df518a4772" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8971039164747530279" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17681751205125493834" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10684228491556566570" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "110eb551" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0336166d4b382d05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17828471174831499268" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11201946164225358714" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9616325475946033927" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7388d752fdefc8c393ec2fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17652642403316936039" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd300deab1b13cdaf24524" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16367967837456349739" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2485950171775388735" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7848479740071651475" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4068222434346651211" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9085442586390329306" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12638008940876027060" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16267103702449674436" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dffe3a7f271787bd" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0fcbe9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9773883711041610627" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c20cb274821b72" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a03b6b54d98906fbe729" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "baf18bb4" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1be5134d9b606378764429ee4ea91be9baa566687c0e4a4a2d3d7858b6df518a4772ffd8669f1b7c7f8896f8e4c0279f1bf562330a0457144a1b94460134a256362a9f44110eb551ffffffbf480336166d4b382d051bf76b7413001f6804412d1b9b754eaf97b3bb7a41d61b85740d12264d73074cf7388d752fdefc8c393ec2fd1bf4fac8bcf4b42d674bfd300deab1b13cdaf245241be326b406e69aba2bff1b227fde8295fe4c3f9fbf1b6ceb66bd95d228931b38753abfea81ce4b1b7e15f9e5450077da1baf633a2c352054b41be1c05ca16cf458c448dffe3a7f271787bdff430fcbe91b87a3cf73709ca38347c20cb274821b72bf4aa03b6b54d98906fbe72944baf18bb4ffffff", + "cborBytes": [ + 159, 191, 27, 229, 19, 77, 155, 96, 99, 120, 118, 68, 41, 238, 78, 169, 27, 233, 186, 165, 102, 104, 124, 14, 74, + 74, 45, 61, 120, 88, 182, 223, 81, 138, 71, 114, 255, 216, 102, 159, 27, 124, 127, 136, 150, 248, 228, 192, 39, + 159, 27, 245, 98, 51, 10, 4, 87, 20, 74, 27, 148, 70, 1, 52, 162, 86, 54, 42, 159, 68, 17, 14, 181, 81, 255, 255, + 255, 191, 72, 3, 54, 22, 109, 75, 56, 45, 5, 27, 247, 107, 116, 19, 0, 31, 104, 4, 65, 45, 27, 155, 117, 78, 175, + 151, 179, 187, 122, 65, 214, 27, 133, 116, 13, 18, 38, 77, 115, 7, 76, 247, 56, 141, 117, 47, 222, 252, 140, 57, + 62, 194, 253, 27, 244, 250, 200, 188, 244, 180, 45, 103, 75, 253, 48, 13, 234, 177, 177, 60, 218, 242, 69, 36, 27, + 227, 38, 180, 6, 230, 154, 186, 43, 255, 27, 34, 127, 222, 130, 149, 254, 76, 63, 159, 191, 27, 108, 235, 102, + 189, 149, 210, 40, 147, 27, 56, 117, 58, 191, 234, 129, 206, 75, 27, 126, 21, 249, 229, 69, 0, 119, 218, 27, 175, + 99, 58, 44, 53, 32, 84, 180, 27, 225, 192, 92, 161, 108, 244, 88, 196, 72, 223, 254, 58, 127, 39, 23, 135, 189, + 255, 67, 15, 203, 233, 27, 135, 163, 207, 115, 112, 156, 163, 131, 71, 194, 12, 178, 116, 130, 27, 114, 191, 74, + 160, 59, 107, 84, 217, 137, 6, 251, 231, 41, 68, 186, 241, 139, 180, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1414, + "sample": { + "_tag": "ByteArray", + "bytearray": "0706c005fe" + }, + "cborHex": "450706c005fe", + "cborBytes": [69, 7, 6, 192, 5, 254], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1415, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12678343723157407862" + } + }, + "cborHex": "1baff286718719c876", + "cborBytes": [27, 175, 242, 134, 113, 135, 25, 200, 118], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1416, + "sample": { + "_tag": "ByteArray", + "bytearray": "b9ad8169d647ec" + }, + "cborHex": "47b9ad8169d647ec", + "cborBytes": [71, 185, 173, 129, 105, 214, 71, 236], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1417, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbf9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "246a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15082175603517172400" + } + }, + { + "_tag": "ByteArray", + "bytearray": "101c14f6bf010a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1eb7e4b78ee31f2e6ac2" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f6c6586a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4df15242194a34e93c9da" + } + } + ] + }, + "cborHex": "bf0842fbf941059f42246a1bd14ea6cd77b42ab047101c14f6bf010aff4a1eb7e4b78ee31f2e6ac280459f6c6586a54bc4df15242194a34e93c9daff", + "cborBytes": [ + 191, 8, 66, 251, 249, 65, 5, 159, 66, 36, 106, 27, 209, 78, 166, 205, 119, 180, 42, 176, 71, 16, 28, 20, 246, 191, + 1, 10, 255, 74, 30, 183, 228, 183, 142, 227, 31, 46, 106, 194, 128, 69, 159, 108, 101, 134, 165, 75, 196, 223, 21, + 36, 33, 148, 163, 78, 147, 201, 218, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1418, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18242114673082161086" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16629579258307456330" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bd4b9fa8d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17950631301971212012" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4511021921909765769" + } + }, + { + "_tag": "ByteArray", + "bytearray": "54890c711ba9b32139da1a72" + }, + { + "_tag": "ByteArray", + "bytearray": "3d2046" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "513fd0524640d0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f45c8171f81ca3455" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "55116d4db7c0" + }, + { + "_tag": "ByteArray", + "bytearray": "e8011c2245453e" + }, + { + "_tag": "ByteArray", + "bytearray": "eb887813da8e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3e784cc566c03a3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1940798235340921599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c726c8" + } + ] + } + } + ] + }, + "cborHex": "bf1bfd2902a4f100d7bed8669f1be6c8223a679ead4a9f45bd4b9fa8d61bf91d7410080076ec1b3e9a5e899d6e76894c54890c711ba9b32139da1a72433d2046ffff414547513fd0524640d0497f45c8171f81ca34559f4655116d4db7c047e8011c2245453e46eb887813da8eff48f3e784cc566c03a3d8669f1b1aef19b656335aff9f43c726c8ffffff", + "cborBytes": [ + 191, 27, 253, 41, 2, 164, 241, 0, 215, 190, 216, 102, 159, 27, 230, 200, 34, 58, 103, 158, 173, 74, 159, 69, 189, + 75, 159, 168, 214, 27, 249, 29, 116, 16, 8, 0, 118, 236, 27, 62, 154, 94, 137, 157, 110, 118, 137, 76, 84, 137, + 12, 113, 27, 169, 179, 33, 57, 218, 26, 114, 67, 61, 32, 70, 255, 255, 65, 69, 71, 81, 63, 208, 82, 70, 64, 208, + 73, 127, 69, 200, 23, 31, 129, 202, 52, 85, 159, 70, 85, 17, 109, 77, 183, 192, 71, 232, 1, 28, 34, 69, 69, 62, + 70, 235, 136, 120, 19, 218, 142, 255, 72, 243, 231, 132, 204, 86, 108, 3, 163, 216, 102, 159, 27, 26, 239, 25, + 182, 86, 51, 90, 255, 159, 67, 199, 38, 200, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1419, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5991381065470983210" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15684303732668675974" + } + } + ] + }, + "cborHex": "9fd8669f1b5325a955d9663c2a80ff1bd9a9d725570cb786ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 83, 37, 169, 85, 217, 102, 60, 42, 128, 255, 27, 217, 169, 215, 37, 87, 12, 183, 134, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1420, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13536118664758831152" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cee1dadb17c489554d" + }, + { + "_tag": "ByteArray", + "bytearray": "8f9dc2d901a0" + }, + { + "_tag": "ByteArray", + "bytearray": "4cca3b5a708f4d" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0721bd" + } + ] + }, + "cborHex": "9fd905069fd8669f1bbbd9f4354a7c28309f49cee1dadb17c489554d468f9dc2d901a0474cca3b5a708f4dffffff430721bdff", + "cborBytes": [ + 159, 217, 5, 6, 159, 216, 102, 159, 27, 187, 217, 244, 53, 74, 124, 40, 48, 159, 73, 206, 225, 218, 219, 23, 196, + 137, 85, 77, 70, 143, 157, 194, 217, 1, 160, 71, 76, 202, 59, 90, 112, 143, 77, 255, 255, 255, 67, 7, 33, 189, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1421, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2380349016380806251" + } + }, + "cborHex": "1b2108b2d19ad4146b", + "cborBytes": [27, 33, 8, 178, 209, 154, 212, 20, 107], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1422, + "sample": { + "_tag": "ByteArray", + "bytearray": "a348978ccbfbf04b0a58b0cf" + }, + "cborHex": "4ca348978ccbfbf04b0a58b0cf", + "cborBytes": [76, 163, 72, 151, 140, 203, 251, 240, 75, 10, 88, 176, 207], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1423, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "139207664862521253" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8838948721592433121" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8668e670cb05f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fdf277ac14368" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2305044551280155247" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56350939db10084d42158600" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbfd81819c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7b900f28027015f1" + }, + { + "_tag": "ByteArray", + "bytearray": "19301c1995f0ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15498357194980464973" + } + }, + { + "_tag": "ByteArray", + "bytearray": "15ac" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7405979177801802693" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "781321" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "018a41e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "750dbadd12" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b01ee90a2362467a59fbf1b7aaa41081268f9e147c8668e670cb05f473fdf277ac143681b1ffd29ce8680da6f4c56350939db10084d4215860045fbfd81819cff9f487b900f28027015f14719301c1995f0ed1bd71539c148ee194d4215ac1b66c752d2dad0e3c5ff43781321bf44018a41e545750dbadd12ff80ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 1, 238, 144, 162, 54, 36, 103, 165, 159, 191, 27, 122, 170, 65, 8, 18, 104, 249, 225, 71, + 200, 102, 142, 103, 12, 176, 95, 71, 63, 223, 39, 122, 193, 67, 104, 27, 31, 253, 41, 206, 134, 128, 218, 111, 76, + 86, 53, 9, 57, 219, 16, 8, 77, 66, 21, 134, 0, 69, 251, 253, 129, 129, 156, 255, 159, 72, 123, 144, 15, 40, 2, + 112, 21, 241, 71, 25, 48, 28, 25, 149, 240, 237, 27, 215, 21, 57, 193, 72, 238, 25, 77, 66, 21, 172, 27, 102, 199, + 82, 210, 218, 208, 227, 197, 255, 67, 120, 19, 33, 191, 68, 1, 138, 65, 229, 69, 117, 13, 186, 221, 18, 255, 128, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1424, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4161dfb3c231" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bc2b10f5c0f0efdd5bc7448" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11822332313428416363" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abb1b65542abdd26c41a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57f2d0f524" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49d46e3672d33091596a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15590608437502641810" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3baac174c218d9b505b8318f" + }, + { + "_tag": "ByteArray", + "bytearray": "68" + }, + { + "_tag": "ByteArray", + "bytearray": "5d182b6f80d1" + }, + { + "_tag": "ByteArray", + "bytearray": "941805552608" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b1bb46a1d1e26623bf702" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13159962008987790148" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13566254821101067108" + } + }, + { + "_tag": "ByteArray", + "bytearray": "049efdd0c8e277fc3e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "896b7b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d56d5e3d02053f76da44" + } + } + ] + }, + "cborHex": "bf464161dfb3c231bf4c7bc2b10f5c0f0efdd5bc74481ba4115c9a0685d76b4aabb1b65542abdd26c41a4557f2d0f524ff4a49d46e3672d33091596ad8669f1bd85cf7c5758d86929f4c3baac174c218d9b505b8318f4168465d182b6f80d146941805552608ffff4b7b1bb46a1d1e26623bf7029f1bb6a193b9035a6b441bbc4504e1f828db6449049efdd0c8e277fc3eff43896b7b4ad56d5e3d02053f76da44ff", + "cborBytes": [ + 191, 70, 65, 97, 223, 179, 194, 49, 191, 76, 123, 194, 177, 15, 92, 15, 14, 253, 213, 188, 116, 72, 27, 164, 17, + 92, 154, 6, 133, 215, 107, 74, 171, 177, 182, 85, 66, 171, 221, 38, 196, 26, 69, 87, 242, 208, 245, 36, 255, 74, + 73, 212, 110, 54, 114, 211, 48, 145, 89, 106, 216, 102, 159, 27, 216, 92, 247, 197, 117, 141, 134, 146, 159, 76, + 59, 170, 193, 116, 194, 24, 217, 181, 5, 184, 49, 143, 65, 104, 70, 93, 24, 43, 111, 128, 209, 70, 148, 24, 5, 85, + 38, 8, 255, 255, 75, 123, 27, 180, 106, 29, 30, 38, 98, 59, 247, 2, 159, 27, 182, 161, 147, 185, 3, 90, 107, 68, + 27, 188, 69, 4, 225, 248, 40, 219, 100, 73, 4, 158, 253, 208, 200, 226, 119, 252, 62, 255, 67, 137, 107, 123, 74, + 213, 109, 94, 61, 2, 5, 63, 118, 218, 68, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1425, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff05" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3016e07e53783c56a71643" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5a722ced439" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f9f3af0bc3694c02284" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53fbb94bb33229987303c0" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "030705" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b944db4a7f63e66e327ca5e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35037dd7c5108728f8f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ba5998b9c35ea3557fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2357098472686310706" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5a4141bce010e0a191f4d5" + } + ] + } + ] + }, + "cborHex": "9f42ff05d905019f80ff9fbf4b3016e07e53783c56a7164346d5a722ced4394a5f9f3af0bc3694c022844b53fbb94bb33229987303c0ffff430307059fbf4c1b944db4a7f63e66e327ca5e4a35037dd7c5108728f8f64a5ba5998b9c35ea3557fb1b20b618928d155532ff4b5a4141bce010e0a191f4d5ffff", + "cborBytes": [ + 159, 66, 255, 5, 217, 5, 1, 159, 128, 255, 159, 191, 75, 48, 22, 224, 126, 83, 120, 60, 86, 167, 22, 67, 70, 213, + 167, 34, 206, 212, 57, 74, 95, 159, 58, 240, 188, 54, 148, 192, 34, 132, 75, 83, 251, 185, 75, 179, 50, 41, 152, + 115, 3, 192, 255, 255, 67, 3, 7, 5, 159, 191, 76, 27, 148, 77, 180, 167, 246, 62, 102, 227, 39, 202, 94, 74, 53, + 3, 125, 215, 197, 16, 135, 40, 248, 246, 74, 91, 165, 153, 139, 156, 53, 234, 53, 87, 251, 27, 32, 182, 24, 146, + 141, 21, 85, 50, 255, 75, 90, 65, 65, 188, 224, 16, 224, 161, 145, 244, 213, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1426, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8807211205161220918" + } + }, + { + "_tag": "ByteArray", + "bytearray": "130eb1b33e787afd20" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6462823175352865495" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f067f09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11393136589425309132" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7894178536127048481" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5547037078078679413" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10342904892510469848" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31728a49" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5729573244233204874" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18071880950428686119" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7bc201c887eff0efdda94c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "28e3" + }, + { + "_tag": "ByteArray", + "bytearray": "092ce7e548" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6888246346240113842" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9ceb5b" + }, + { + "_tag": "ByteArray", + "bytearray": "cd5b124c41e61307" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b7a397fedb1797b3649130eb1b33e787afd20d8669f1b59b08f6fbd11d2d79fbf449f067f091b9e1c8d5d5a3375ccffbf1b6d8dc18daf5dab211b4cfb08d542cce9751b8f8961335fbc7ed84431728a49ff1b4f838882511a448affff1bfacc37f9b97357279f4b7bc201c887eff0efdda94c9f4228e345092ce7e5481b5f97f78e71063cb2439ceb5b48cd5b124c41e61307ffffff", + "cborBytes": [ + 159, 27, 122, 57, 127, 237, 177, 121, 123, 54, 73, 19, 14, 177, 179, 62, 120, 122, 253, 32, 216, 102, 159, 27, 89, + 176, 143, 111, 189, 17, 210, 215, 159, 191, 68, 159, 6, 127, 9, 27, 158, 28, 141, 93, 90, 51, 117, 204, 255, 191, + 27, 109, 141, 193, 141, 175, 93, 171, 33, 27, 76, 251, 8, 213, 66, 204, 233, 117, 27, 143, 137, 97, 51, 95, 188, + 126, 216, 68, 49, 114, 138, 73, 255, 27, 79, 131, 136, 130, 81, 26, 68, 138, 255, 255, 27, 250, 204, 55, 249, 185, + 115, 87, 39, 159, 75, 123, 194, 1, 200, 135, 239, 240, 239, 221, 169, 76, 159, 66, 40, 227, 69, 9, 44, 231, 229, + 72, 27, 95, 151, 247, 142, 113, 6, 60, 178, 67, 156, 235, 91, 72, 205, 91, 18, 76, 65, 230, 19, 7, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1427, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1599795393023350169" + } + }, + "cborHex": "1b16339d6f12769599", + "cborBytes": [27, 22, 51, 157, 111, 18, 118, 149, 153], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1428, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11171534063763610204" + }, + "fields": [] + }, + "cborHex": "d8669f1b9b09430aaace5a5c80ff", + "cborBytes": [216, 102, 159, 27, 155, 9, 67, 10, 170, 206, 90, 92, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1429, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "055eb0fa0327fa053b677ce7" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8066212793318583040" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9069115485697154810" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10459457545324408546" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2a3fe76a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05fb03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9795" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8762842121559192996" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1e11" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10432141364690838864" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8cba7fc0eb0141" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "acfb563e262fda58a55ac4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3978354282460165451" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd010115" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7331328536042360650" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17252141972807721715" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64" + }, + { + "_tag": "ByteArray", + "bytearray": "3239" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9952263390855074441" + } + }, + { + "_tag": "ByteArray", + "bytearray": "58" + } + ] + } + } + ] + }, + "cborHex": "bf4c055eb0fa0327fa053b677ce79f1b6ff0f1cc84772b001b7ddbf87be7f91efa1b912775388c572ee2442a3fe76aff4224fa4305fb034297959f1b799bde7b665db5a4421e111b90c6694ca10e6550478cba7fc0eb0141ff4bacfb563e262fda58a55ac41b3735f42444b1354b44fd010115d8669f1b65be1c75e27d4f4a9f1bef6bebb7efcfa2f341644232391b8a1d8ad31b0a92894158ffffff", + "cborBytes": [ + 191, 76, 5, 94, 176, 250, 3, 39, 250, 5, 59, 103, 124, 231, 159, 27, 111, 240, 241, 204, 132, 119, 43, 0, 27, 125, + 219, 248, 123, 231, 249, 30, 250, 27, 145, 39, 117, 56, 140, 87, 46, 226, 68, 42, 63, 231, 106, 255, 66, 36, 250, + 67, 5, 251, 3, 66, 151, 149, 159, 27, 121, 155, 222, 123, 102, 93, 181, 164, 66, 30, 17, 27, 144, 198, 105, 76, + 161, 14, 101, 80, 71, 140, 186, 127, 192, 235, 1, 65, 255, 75, 172, 251, 86, 62, 38, 47, 218, 88, 165, 90, 196, + 27, 55, 53, 244, 36, 68, 177, 53, 75, 68, 253, 1, 1, 21, 216, 102, 159, 27, 101, 190, 28, 117, 226, 125, 79, 74, + 159, 27, 239, 107, 235, 183, 239, 207, 162, 243, 65, 100, 66, 50, 57, 27, 138, 29, 138, 211, 27, 10, 146, 137, 65, + 88, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1430, + "sample": { + "_tag": "ByteArray", + "bytearray": "46a3fa" + }, + "cborHex": "4346a3fa", + "cborBytes": [67, 70, 163, 250], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1431, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a0ba179f9624b78589e06a" + }, + { + "_tag": "ByteArray", + "bytearray": "7baedf0a4803b88548b822db" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3528773381547300858" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8790628796856063574" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9054846395076520379" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15672286375856234644" + } + } + } + ] + }, + "cborHex": "bf149f4ba0ba179f9624b78589e06a4c7baedf0a4803b88548b822dbff1b30f8b8b1bbfb17fa9f1bffffffffffffffff1b79fe9650e4ecd656ff1b7da946d25a4329bb1bd97f256c6b1ae094ff", + "cborBytes": [ + 191, 20, 159, 75, 160, 186, 23, 159, 150, 36, 183, 133, 137, 224, 106, 76, 123, 174, 223, 10, 72, 3, 184, 133, 72, + 184, 34, 219, 255, 27, 48, 248, 184, 177, 187, 251, 23, 250, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 27, + 121, 254, 150, 80, 228, 236, 214, 86, 255, 27, 125, 169, 70, 210, 90, 67, 41, 187, 27, 217, 127, 37, 108, 107, 26, + 224, 148, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1432, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "077e3a1c2cbfe09bcc000a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11509112996243088089" + } + }, + { + "_tag": "ByteArray", + "bytearray": "57" + }, + { + "_tag": "ByteArray", + "bytearray": "6add2e995df1b1c581" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7751355354398251857" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b077e3a1c2cbfe09bcc000a9f1b9fb8954acce6a2d94157496add2e995df1b1c5811b6b9258a05abadb51ffff", + "cborBytes": [ + 191, 75, 7, 126, 58, 28, 44, 191, 224, 155, 204, 0, 10, 159, 27, 159, 184, 149, 74, 204, 230, 162, 217, 65, 87, + 73, 106, 221, 46, 153, 93, 241, 177, 197, 129, 27, 107, 146, 88, 160, 90, 186, 219, 81, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1433, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "529727856160446581" + } + }, + "cborHex": "1b0759f8adb6129875", + "cborBytes": [27, 7, 89, 248, 173, 182, 18, 152, 117], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1434, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16014110159152128280" + } + }, + "cborHex": "1bde3d8c57e63ca118", + "cborBytes": [27, 222, 61, 140, 87, 230, 60, 161, 24], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1435, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7170033028925040789" + } + }, + "cborHex": "1b6381130d24e52895", + "cborBytes": [27, 99, 129, 19, 13, 36, 229, 40, 149], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1436, + "sample": { + "_tag": "ByteArray", + "bytearray": "26a279b32cd66852878b" + }, + "cborHex": "4a26a279b32cd66852878b", + "cborBytes": [74, 38, 162, 121, 179, 44, 214, 104, 82, 135, 139], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1437, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "721840894461103378" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a017b3cde2812e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d64c7fe05e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17215152305627779051" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8662310247251804034" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7086822697982391133" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10760726159514542085" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5357470270587092292" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11497999742835911222" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12735827971195873808" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15416433837405621615" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10671537727010215305" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b2bc23d2dfaa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11374303340776780606" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0a047e7812b44d12bf487a017b3cde2812e141c645d64c7fe05e1beee881cfeb30cfebff1b7836b54665ab7f829f1b625973b23b6a735dff1b9555c76de71e2005d8669f1b4a598ed3750f3d449f419fffff1b9f9119d8db446a36d8669f1bb0bec00fff9d2a1080ff1bd5f22ce535dfcd6fd8669f1b9418eb05c19f95899f46b2bc23d2dfaa1b9dd9a49ff289f33effffff", + "cborBytes": [ + 191, 27, 10, 4, 126, 120, 18, 180, 77, 18, 191, 72, 122, 1, 123, 60, 222, 40, 18, 225, 65, 198, 69, 214, 76, 127, + 224, 94, 27, 238, 232, 129, 207, 235, 48, 207, 235, 255, 27, 120, 54, 181, 70, 101, 171, 127, 130, 159, 27, 98, + 89, 115, 178, 59, 106, 115, 93, 255, 27, 149, 85, 199, 109, 231, 30, 32, 5, 216, 102, 159, 27, 74, 89, 142, 211, + 117, 15, 61, 68, 159, 65, 159, 255, 255, 27, 159, 145, 25, 216, 219, 68, 106, 54, 216, 102, 159, 27, 176, 190, + 192, 15, 255, 157, 42, 16, 128, 255, 27, 213, 242, 44, 229, 53, 223, 205, 111, 216, 102, 159, 27, 148, 24, 235, 5, + 193, 159, 149, 137, 159, 70, 178, 188, 35, 210, 223, 170, 27, 157, 217, 164, 159, 242, 137, 243, 62, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1438, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7482677621626080469" + } + }, + "cborHex": "1b67d7cfa6e5c98cd5", + "cborBytes": [27, 103, 215, 207, 166, 229, 201, 140, 213], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1439, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "395271e3b69adb0d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7ca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54a937" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "074d183eefecb5c20d63e0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "640b72efa6bd2768" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6673022302722363333" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5300680934548395777" + } + } + ] + } + ] + }, + "cborHex": "d9050b9fbf48395271e3b69adb0d42d7ca4354a9374b074d183eefecb5c20d63e048640b72efa6bd27681b5c9b566ddc068fc5ff41d7d8669f1bfffffffffffffff49f1b498fcd39cb715701ffffff", + "cborBytes": [ + 217, 5, 11, 159, 191, 72, 57, 82, 113, 227, 182, 154, 219, 13, 66, 215, 202, 67, 84, 169, 55, 75, 7, 77, 24, 62, + 239, 236, 181, 194, 13, 99, 224, 72, 100, 11, 114, 239, 166, 189, 39, 104, 27, 92, 155, 86, 109, 220, 6, 143, 197, + 255, 65, 215, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 27, 73, 143, 205, 57, 203, 113, 87, + 1, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1440, + "sample": { + "_tag": "ByteArray", + "bytearray": "701e" + }, + "cborHex": "42701e", + "cborBytes": [66, 112, 30], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1441, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4446166744049220603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17719231038910806106" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9620985353419126930" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1169478706611327051" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9549812569a5" + }, + { + "_tag": "ByteArray", + "bytearray": "430d68980dea140eac6c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15049770865258448118" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0af037" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14839247856169310660" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3db3f518cf357bfb1bf5e75abfd75ab85a1b85849b346bc87892d8669f1b103ad2affff3904b9f469549812569a54a430d68980dea140eac6cffff1bd0db86dd66c0c4f6bf430af037413241971bcdef994db0f2d9c441f341d4ffff", + "cborBytes": [ + 191, 27, 61, 179, 245, 24, 207, 53, 123, 251, 27, 245, 231, 90, 191, 215, 90, 184, 90, 27, 133, 132, 155, 52, 107, + 200, 120, 146, 216, 102, 159, 27, 16, 58, 210, 175, 255, 243, 144, 75, 159, 70, 149, 73, 129, 37, 105, 165, 74, + 67, 13, 104, 152, 13, 234, 20, 14, 172, 108, 255, 255, 27, 208, 219, 134, 221, 102, 192, 196, 246, 191, 67, 10, + 240, 55, 65, 50, 65, 151, 27, 205, 239, 153, 77, 176, 242, 217, 196, 65, 243, 65, 212, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1442, + "sample": { + "_tag": "ByteArray", + "bytearray": "cd47b2" + }, + "cborHex": "43cd47b2", + "cborBytes": [67, 205, 71, 178], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1443, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6865077890046749253" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5641478457595497010" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12090446251438900381" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2033390522355536063" + } + }, + { + "_tag": "ByteArray", + "bytearray": "146d" + }, + { + "_tag": "ByteArray", + "bytearray": "d9986246691d2e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3606095463122808215" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "50" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3006240471c667518" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9024129436191889482" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14074559191775339328" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14049244080403221528" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73a2c254c1e59e18b1" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "81551937537f8b" + } + ] + }, + "cborHex": "d8669f1b5f45a7f7df9fea459f1b4e4a8ec470ff8a329fd8669f1ba7c9e4cec8f8049d9f1b1c380de81ea5d0bf42146d47d9986246691d2e1b320b6cb7c1952d97ffff4150bf49f3006240471c6675181b7d3c25e90b5d184aff1bc352e103c3fa6340ffbf1bc2f8f10e17318c184973a2c254c1e59e18b1ff4781551937537f8bffff", + "cborBytes": [ + 216, 102, 159, 27, 95, 69, 167, 247, 223, 159, 234, 69, 159, 27, 78, 74, 142, 196, 112, 255, 138, 50, 159, 216, + 102, 159, 27, 167, 201, 228, 206, 200, 248, 4, 157, 159, 27, 28, 56, 13, 232, 30, 165, 208, 191, 66, 20, 109, 71, + 217, 152, 98, 70, 105, 29, 46, 27, 50, 11, 108, 183, 193, 149, 45, 151, 255, 255, 65, 80, 191, 73, 243, 0, 98, 64, + 71, 28, 102, 117, 24, 27, 125, 60, 37, 233, 11, 93, 24, 74, 255, 27, 195, 82, 225, 3, 195, 250, 99, 64, 255, 191, + 27, 194, 248, 241, 14, 23, 49, 140, 24, 73, 115, 162, 194, 84, 193, 229, 158, 24, 177, 255, 71, 129, 85, 25, 55, + 83, 127, 139, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1444, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1388905856177004042" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f61698c610bb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7346452466716988775" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10131992678305758522" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9f1b1346628477e3de0a46f61698c610bbd8669f1b65f3d79865f555679f1b8c9c11a8c945fd3affffff80ff", + "cborBytes": [ + 159, 159, 27, 19, 70, 98, 132, 119, 227, 222, 10, 70, 246, 22, 152, 198, 16, 187, 216, 102, 159, 27, 101, 243, + 215, 152, 101, 245, 85, 103, 159, 27, 140, 156, 17, 168, 201, 69, 253, 58, 255, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1445, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7322530101072221831" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "452e65" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f22" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a06453f8ca88d781340d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7056027438535300933" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10230628238649186398" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15459360612395062049" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5371424759930442172" + } + }, + { + "_tag": "ByteArray", + "bytearray": "094545ac41" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12811265532138394319" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7a717305bd6a3f" + }, + { + "_tag": "ByteArray", + "bytearray": "2987af49ed13" + } + ] + } + } + ] + }, + "cborHex": "bf1b659eda549b83d687bf43452e65429f224aa06453f8ca88d781340d1b61ec0b92274e574542d4c81b8dfa7e2dc9c3d85eff1bd68aae91dc7913219f1b4a8b225c316451bc45094545ac411bb1cac21fde5092cf477a717305bd6a3f462987af49ed13ffff", + "cborBytes": [ + 191, 27, 101, 158, 218, 84, 155, 131, 214, 135, 191, 67, 69, 46, 101, 66, 159, 34, 74, 160, 100, 83, 248, 202, + 136, 215, 129, 52, 13, 27, 97, 236, 11, 146, 39, 78, 87, 69, 66, 212, 200, 27, 141, 250, 126, 45, 201, 195, 216, + 94, 255, 27, 214, 138, 174, 145, 220, 121, 19, 33, 159, 27, 74, 139, 34, 92, 49, 100, 81, 188, 69, 9, 69, 69, 172, + 65, 27, 177, 202, 194, 31, 222, 80, 146, 207, 71, 122, 113, 115, 5, 189, 106, 63, 70, 41, 135, 175, 73, 237, 19, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1446, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8ac4f7f4da296ce3e3ccb7" + } + ] + }, + "cborHex": "9f4b8ac4f7f4da296ce3e3ccb7ff", + "cborBytes": [159, 75, 138, 196, 247, 244, 218, 41, 108, 227, 227, 204, 183, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1447, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "625831827001962266" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b61a3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52f269252d9bc9a9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16700054497112683111" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "566ca6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "741757970439827809" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e09a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ece0c3736b34cd14664fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1cefad2b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ee43dddd3bae6af" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11173037531311775274" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9876210420967008745" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "64558707ae5d95fbca28" + }, + { + "_tag": "ByteArray", + "bytearray": "68e934" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15835316861193203606" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9f607e6b45b0ca16d353" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b08af66bb1995ef1a9fd905079fbf431b61a34852f269252d9bc9a941391be7c283159e10f26743566ca61b0a4b40f1b1617161436e09a44b1ece0c3736b34cd14664fb45e1cefad2b5487ee43dddd3bae6afff1b9b0e9a6ffbf21e2ad8669f1b890f590d2cbfe9e99f4a64558707ae5d95fbca284368e9341bdbc258c9412caf964a9f607e6b45b0ca16d353ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 8, 175, 102, 187, 25, 149, 239, 26, 159, 217, 5, 7, 159, 191, 67, 27, 97, 163, 72, 82, 242, + 105, 37, 45, 155, 201, 169, 65, 57, 27, 231, 194, 131, 21, 158, 16, 242, 103, 67, 86, 108, 166, 27, 10, 75, 64, + 241, 177, 97, 113, 97, 67, 110, 9, 164, 75, 30, 206, 12, 55, 54, 179, 76, 209, 70, 100, 251, 69, 225, 206, 250, + 210, 181, 72, 126, 228, 61, 221, 211, 186, 230, 175, 255, 27, 155, 14, 154, 111, 251, 242, 30, 42, 216, 102, 159, + 27, 137, 15, 89, 13, 44, 191, 233, 233, 159, 74, 100, 85, 135, 7, 174, 93, 149, 251, 202, 40, 67, 104, 233, 52, + 27, 219, 194, 88, 201, 65, 44, 175, 150, 74, 159, 96, 126, 107, 69, 176, 202, 22, 211, 83, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1448, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4157893505121886694" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0df42919" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4921672608127446833" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4de6e5be666f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bbb7879a7c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c681e5f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ccb86e15bd5d73289db9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee7512e85f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f000c6882917adffefb40b" + } + } + ] + } + ] + }, + "cborHex": "d905059f1b39b3ce1d0ab1a1e6bf440df429191b444d4b293434ef31464de6e5be666f45bbb7879a7c44c681e5f94b5ccb86e15bd5d73289db9e45ee7512e85f4bf000c6882917adffefb40bffff", + "cborBytes": [ + 217, 5, 5, 159, 27, 57, 179, 206, 29, 10, 177, 161, 230, 191, 68, 13, 244, 41, 25, 27, 68, 77, 75, 41, 52, 52, + 239, 49, 70, 77, 230, 229, 190, 102, 111, 69, 187, 183, 135, 154, 124, 68, 198, 129, 229, 249, 75, 92, 203, 134, + 225, 91, 213, 215, 50, 137, 219, 158, 69, 238, 117, 18, 232, 95, 75, 240, 0, 198, 136, 41, 23, 173, 255, 239, 180, + 11, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1449, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6818646847777274921" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b5ea0b32e6a99fc2980ffff", + "cborBytes": [159, 216, 102, 159, 27, 94, 160, 179, 46, 106, 153, 252, 41, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1450, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0306" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe072f2962b18ced" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4955ea65133894" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2db8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14320371092447211949" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2fe1ba29b1b25f5a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9866326004ff63aef905f902" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf420306bf48fe072f2962b18ced474955ea65133894ff422db8d8669f1bffffffffffffffeb9f1bc6bc2da2d116b1adffff482fe1ba29b1b25f5a1bffffffffffffffed4c9866326004ff63aef905f902a0ff", + "cborBytes": [ + 191, 66, 3, 6, 191, 72, 254, 7, 47, 41, 98, 177, 140, 237, 71, 73, 85, 234, 101, 19, 56, 148, 255, 66, 45, 184, + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 27, 198, 188, 45, 162, 209, 22, 177, 173, 255, + 255, 72, 47, 225, 186, 41, 177, 178, 95, 90, 27, 255, 255, 255, 255, 255, 255, 255, 237, 76, 152, 102, 50, 96, 4, + 255, 99, 174, 249, 5, 249, 2, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1451, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10497976487710637946" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6789754283821589098" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf011b91b04dfeb2653f7a1b5e3a0d8c275f626abf42f9a103ffff", + "cborBytes": [ + 191, 1, 27, 145, 176, 77, 254, 178, 101, 63, 122, 27, 94, 58, 13, 140, 39, 95, 98, 106, 191, 66, 249, 161, 3, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1452, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17053812596980173402" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8643010031792396894" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1434564058881248607" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3844639208201397260" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "470540e25c8a02ba" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8353077737778606072" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b8d53803" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2614692475982756131" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5009246416995693854" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17144330420026243054" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "054a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9dda38af5c93672e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "257fb6c58fc3eb20" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "402044108983690323" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42a614e97f15f95f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5afa76" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b876da4ec8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17419787964222730900" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf8e6db291ee85d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70075b366012d9" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15021338948943959336" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8228145490492237280" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc4f58a35bad31" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "706732808126390540" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11190910633204421319" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "547686382726353179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6936219483691488016" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12308902791059658265" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14795741479763812466" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15114803499404717515" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11238403405665754710" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6be6a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9418497668078105506" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f9f1becab5033b515ca5a9f1b77f223d4cf1f9a5e1b13e898693128cd5f1b355ae6fd7662240cff48470540e25c8a02bad8669f1b73ec17f22d846ff89f44b8d538031b244940f423d6b9231b45846b137d6d351e41b71bedece5aeb59677eeffffff9fbf42054a489dda38af5c93672e48257fb6c58fc3eb201b059458fcac02e4534842a614e97f15f95f435afa7645b876da4ec81bf1bf84dc061ef29448cf8e6db291ee85d04770075b366012d9ff1bd0768430068b5528d8669f1b72303ebaa105a5e09f47fc4f58a35bad31ffff9f1b09ced1be9b7ce10c1b9b4e19edcd4a92c7ffffbf1b0799c5dd02b9111b1b604266dee99313101baad201df83ecd6191bcd55087c11d5a0721bd1c291b377d96dcb1b9bf6d45a953f5e56436be6a71b82b539ba4fa3f3a2ffa0ff", + "cborBytes": [ + 159, 159, 27, 236, 171, 80, 51, 181, 21, 202, 90, 159, 27, 119, 242, 35, 212, 207, 31, 154, 94, 27, 19, 232, 152, + 105, 49, 40, 205, 95, 27, 53, 90, 230, 253, 118, 98, 36, 12, 255, 72, 71, 5, 64, 226, 92, 138, 2, 186, 216, 102, + 159, 27, 115, 236, 23, 242, 45, 132, 111, 248, 159, 68, 184, 213, 56, 3, 27, 36, 73, 64, 244, 35, 214, 185, 35, + 27, 69, 132, 107, 19, 125, 109, 53, 30, 65, 183, 27, 237, 236, 229, 174, 181, 150, 119, 238, 255, 255, 255, 159, + 191, 66, 5, 74, 72, 157, 218, 56, 175, 92, 147, 103, 46, 72, 37, 127, 182, 197, 143, 195, 235, 32, 27, 5, 148, 88, + 252, 172, 2, 228, 83, 72, 66, 166, 20, 233, 127, 21, 249, 95, 67, 90, 250, 118, 69, 184, 118, 218, 78, 200, 27, + 241, 191, 132, 220, 6, 30, 242, 148, 72, 207, 142, 109, 178, 145, 238, 133, 208, 71, 112, 7, 91, 54, 96, 18, 217, + 255, 27, 208, 118, 132, 48, 6, 139, 85, 40, 216, 102, 159, 27, 114, 48, 62, 186, 161, 5, 165, 224, 159, 71, 252, + 79, 88, 163, 91, 173, 49, 255, 255, 159, 27, 9, 206, 209, 190, 155, 124, 225, 12, 27, 155, 78, 25, 237, 205, 74, + 146, 199, 255, 255, 191, 27, 7, 153, 197, 221, 2, 185, 17, 27, 27, 96, 66, 102, 222, 233, 147, 19, 16, 27, 170, + 210, 1, 223, 131, 236, 214, 25, 27, 205, 85, 8, 124, 17, 213, 160, 114, 27, 209, 194, 145, 179, 119, 217, 109, + 203, 27, 155, 246, 212, 90, 149, 63, 94, 86, 67, 107, 230, 167, 27, 130, 181, 57, 186, 79, 163, 243, 162, 255, + 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1453, + "sample": { + "_tag": "ByteArray", + "bytearray": "008f0743e70202bffd1503" + }, + "cborHex": "4b008f0743e70202bffd1503", + "cborBytes": [75, 0, 143, 7, 67, 231, 2, 2, 191, 253, 21, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1454, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fb94f080" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3508257875945715604" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8675892805200666346" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9127057311640304027" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f44fb94f080d8669f1b30afd5f35c35f7949f1b7866f68a1b5a5eeaffff9fbf1b7ea9d24488f3b99b0fffff80ff", + "cborBytes": [ + 159, 68, 251, 148, 240, 128, 216, 102, 159, 27, 48, 175, 213, 243, 92, 53, 247, 148, 159, 27, 120, 102, 246, 138, + 27, 90, 94, 234, 255, 255, 159, 191, 27, 126, 169, 210, 68, 136, 243, 185, 155, 15, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1455, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16379809922773014163" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9907238950486500524" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10857545251485916559" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17635928587876041307" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17863214809813517304" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b72bd873e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfdb4b063feed0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa3b642172d040d1da" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10028506369934094214" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4055135447830450102" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11738327953716961637" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16776729434636432720" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6566414362586662422" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12720385140308193552" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2907" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe02c041026c93bef127fdfc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1be350c6573f4dd6939fbf1b897d9555aca964ac1b96adbfe1678c1d8f1bf4bf679c8c82025b1bf7e6e339e56e83f8412545b72bd873e547dfdb4b063feed049aa3b642172d040d1daff9f1b8b2c6968ffa9ef861b3846bc346c074fb61ba2e6eb14e25661651be8d2ea88ac583550ffffffbf031b5b2097128a004616121bfffffffffffffffc1bb087e2e3be3a31104229071bfffffffffffffff40d1bfffffffffffffff64cfe02c041026c93bef127fdfc1bfffffffffffffffc06ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 227, 80, 198, 87, 63, 77, 214, 147, 159, 191, 27, 137, 125, 149, 85, 172, 169, 100, 172, + 27, 150, 173, 191, 225, 103, 140, 29, 143, 27, 244, 191, 103, 156, 140, 130, 2, 91, 27, 247, 230, 227, 57, 229, + 110, 131, 248, 65, 37, 69, 183, 43, 216, 115, 229, 71, 223, 219, 75, 6, 63, 238, 208, 73, 170, 59, 100, 33, 114, + 208, 64, 209, 218, 255, 159, 27, 139, 44, 105, 104, 255, 169, 239, 134, 27, 56, 70, 188, 52, 108, 7, 79, 182, 27, + 162, 230, 235, 20, 226, 86, 97, 101, 27, 232, 210, 234, 136, 172, 88, 53, 80, 255, 255, 255, 191, 3, 27, 91, 32, + 151, 18, 138, 0, 70, 22, 18, 27, 255, 255, 255, 255, 255, 255, 255, 252, 27, 176, 135, 226, 227, 190, 58, 49, 16, + 66, 41, 7, 27, 255, 255, 255, 255, 255, 255, 255, 244, 13, 27, 255, 255, 255, 255, 255, 255, 255, 246, 76, 254, 2, + 192, 65, 2, 108, 147, 190, 241, 39, 253, 252, 27, 255, 255, 255, 255, 255, 255, 255, 252, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1456, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb12dc39dcdca7e60d" + }, + "cborHex": "49fb12dc39dcdca7e60d", + "cborBytes": [73, 251, 18, 220, 57, 220, 220, 167, 230, 13], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1457, + "sample": { + "_tag": "ByteArray", + "bytearray": "075a" + }, + "cborHex": "42075a", + "cborBytes": [66, 7, 90], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1458, + "sample": { + "_tag": "ByteArray", + "bytearray": "30db07" + }, + "cborHex": "4330db07", + "cborBytes": [67, 48, 219, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1459, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1568931535545791768" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0106a9230601a8fa" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d87d9fd8669f1bfffffffffffffff59f9f1b15c5f6eb451d7518480106a9230601a8faffa0ffffff", + "cborBytes": [ + 216, 125, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 159, 27, 21, 197, 246, 235, 69, 29, + 117, 24, 72, 1, 6, 169, 35, 6, 1, 168, 250, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1460, + "sample": { + "_tag": "ByteArray", + "bytearray": "8dfe5776a9bb6d" + }, + "cborHex": "478dfe5776a9bb6d", + "cborBytes": [71, 141, 254, 87, 118, 169, 187, 109], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1461, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9624501596396676397" + } + } + ] + }, + "cborHex": "9f1b859119358967652dff", + "cborBytes": [159, 27, 133, 145, 25, 53, 137, 103, 101, 45, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1462, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cdc280" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15195982974608565461" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "67c2b562dba4" + }, + { + "_tag": "ByteArray", + "bytearray": "af2f41dcad" + }, + { + "_tag": "ByteArray", + "bytearray": "b3a2af3177f2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8997814952906705337" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17243543680187525074" + } + } + ] + } + } + ] + }, + "cborHex": "bf43cdc280d8669f1bd2e2fa00ee6d64d59f4667c2b562dba445af2f41dcad46b3a2af3177f21b7cdea906f6b3c9b91bef4d5f9dee8267d2ffffff", + "cborBytes": [ + 191, 67, 205, 194, 128, 216, 102, 159, 27, 210, 226, 250, 0, 238, 109, 100, 213, 159, 70, 103, 194, 181, 98, 219, + 164, 69, 175, 47, 65, 220, 173, 70, 179, 162, 175, 49, 119, 242, 27, 124, 222, 169, 6, 246, 179, 201, 185, 27, + 239, 77, 95, 157, 238, 130, 103, 210, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1463, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00fd1506a404" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffc4600fd1506a404ff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 252, 70, 0, 253, 21, 6, 164, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1464, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10396500053866875465" + }, + "fields": [] + }, + "cborHex": "d8669f1b9047c9b74a108a4980ff", + "cborBytes": [216, 102, 159, 27, 144, 71, 201, 183, 74, 16, 138, 73, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1465, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15895215214068804863" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9394474712939505602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16786545281434825832" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "168b43094c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13047535442564270046" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "613842421006" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e78b0d926c5d9fb" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bdc9726054ef4acff9fbf1b825fe0fa342627c21be8f5c9fe99eeb46845168b43094c1bb512285b305cc7de46613842421006487e78b0d926c5d9fbffffff", + "cborBytes": [ + 216, 102, 159, 27, 220, 151, 38, 5, 78, 244, 172, 255, 159, 191, 27, 130, 95, 224, 250, 52, 38, 39, 194, 27, 232, + 245, 201, 254, 153, 238, 180, 104, 69, 22, 139, 67, 9, 76, 27, 181, 18, 40, 91, 48, 92, 199, 222, 70, 97, 56, 66, + 66, 16, 6, 72, 126, 120, 176, 217, 38, 197, 217, 251, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1466, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a01" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3506bb64bdd99a7f5850" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15358494854470509815" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e91dd008d4e030332bb09fa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fe66d37df0acd6a215b83b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9693622123182608403" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5a336ac53d51605b4ae02092" + } + ] + } + } + ] + }, + "cborHex": "bf422a01804a3506bb64bdd99a7f58501bd52455b2856124f74c5e91dd008d4e030332bb09fad905079f4bfe66d37df0acd6a215b83b1b8686a9f6472ad0134c5a336ac53d51605b4ae02092ffff", + "cborBytes": [ + 191, 66, 42, 1, 128, 74, 53, 6, 187, 100, 189, 217, 154, 127, 88, 80, 27, 213, 36, 85, 178, 133, 97, 36, 247, 76, + 94, 145, 221, 0, 141, 78, 3, 3, 50, 187, 9, 250, 217, 5, 7, 159, 75, 254, 102, 211, 125, 240, 172, 214, 162, 21, + 184, 59, 27, 134, 134, 169, 246, 71, 42, 208, 19, 76, 90, 51, 106, 197, 61, 81, 96, 91, 74, 224, 32, 146, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1467, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [] + }, + "cborHex": "d87d80", + "cborBytes": [216, 125, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1468, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc1c" + }, + "cborHex": "42fc1c", + "cborBytes": [66, 252, 28], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1469, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1843494705842593022" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16813792377175442525" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3706576706809287808" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6310906248661673166" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7576359333110777734" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ab88d479" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17981110636828219194" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9724831227320629556" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed48c401c721" + }, + { + "_tag": "ByteArray", + "bytearray": "83c2f83ca0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10524361179189065877" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ca932709945c83fbd6c26063" + }, + { + "_tag": "ByteArray", + "bytearray": "164b" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13641435451916339068" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1942303043352486861" + } + } + ] + }, + "cborHex": "d8669f1b199568aaef0f9cfe9f9fd8669f1be956971570b6845d9f1b337067e0661ad4801b5794d7cbea45a4ce1b6924a2ac14c8878644ab88d4791bf989bcdb2f24d73affffd8669f1b86f58a7a151279349f46ed48c401c7214583c2f83ca01b920e0abb6579b8954cca932709945c83fbd6c2606342164bffffff9fa01bbd501d44a1e4c77cff1b1af47253c12f63cdffff", + "cborBytes": [ + 216, 102, 159, 27, 25, 149, 104, 170, 239, 15, 156, 254, 159, 159, 216, 102, 159, 27, 233, 86, 151, 21, 112, 182, + 132, 93, 159, 27, 51, 112, 103, 224, 102, 26, 212, 128, 27, 87, 148, 215, 203, 234, 69, 164, 206, 27, 105, 36, + 162, 172, 20, 200, 135, 134, 68, 171, 136, 212, 121, 27, 249, 137, 188, 219, 47, 36, 215, 58, 255, 255, 216, 102, + 159, 27, 134, 245, 138, 122, 21, 18, 121, 52, 159, 70, 237, 72, 196, 1, 199, 33, 69, 131, 194, 248, 60, 160, 27, + 146, 14, 10, 187, 101, 121, 184, 149, 76, 202, 147, 39, 9, 148, 92, 131, 251, 214, 194, 96, 99, 66, 22, 75, 255, + 255, 255, 159, 160, 27, 189, 80, 29, 68, 161, 228, 199, 124, 255, 27, 26, 244, 114, 83, 193, 47, 99, 205, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1470, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6967977098810225516" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "135771399234834250" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2290873981327727615" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "40e6ced90c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "406300294396868085" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d02857a1182c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a4e340b025e7a" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5745367636203832113" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3899589525192638966" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f2fcec73e1ee4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9111690862057874853" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8740002175450164949" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb1d2be0d3f25fcd0066" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13672416943820445655" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "814054004636243556" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15163929695082118462" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15805185836180753551" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17569912310442750137" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14225107672811665886" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17964471679261482379" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18326582707918712549" + } + } + ] + }, + "cborHex": "9fd8669f1b60b33a40e1a3f36c9f1b01e25b5e460ccf4a1b1fcad1bf9a395bffbf4540e6ced90c1b05a377f70fa975f546d02857a1182c471a4e340b025e7affbf1b4fbba56cc3f483311b361e200322f101f6472f2fcec73e1ee41b7e733a903021e5a5ffffffbf1b794ab9ac0bd92ed54acb1d2be0d3f25fcd00661bbdbe2ec5557317d71b0b4c19cdde53d6641bd27119b73a5dfd3e1bdb574cc74e96cc8f1bf3d4de282eb3f0b91bc569bc0f819f79de1bf94e9fcffbf21d8b418fff1bfe5519dfdc4faee5ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 96, 179, 58, 64, 225, 163, 243, 108, 159, 27, 1, 226, 91, 94, 70, 12, 207, 74, 27, 31, + 202, 209, 191, 154, 57, 91, 255, 191, 69, 64, 230, 206, 217, 12, 27, 5, 163, 119, 247, 15, 169, 117, 245, 70, 208, + 40, 87, 161, 24, 44, 71, 26, 78, 52, 11, 2, 94, 122, 255, 191, 27, 79, 187, 165, 108, 195, 244, 131, 49, 27, 54, + 30, 32, 3, 34, 241, 1, 246, 71, 47, 47, 206, 199, 62, 30, 228, 27, 126, 115, 58, 144, 48, 33, 229, 165, 255, 255, + 255, 191, 27, 121, 74, 185, 172, 11, 217, 46, 213, 74, 203, 29, 43, 224, 211, 242, 95, 205, 0, 102, 27, 189, 190, + 46, 197, 85, 115, 23, 215, 27, 11, 76, 25, 205, 222, 83, 214, 100, 27, 210, 113, 25, 183, 58, 93, 253, 62, 27, + 219, 87, 76, 199, 78, 150, 204, 143, 27, 243, 212, 222, 40, 46, 179, 240, 185, 27, 197, 105, 188, 15, 129, 159, + 121, 222, 27, 249, 78, 159, 207, 251, 242, 29, 139, 65, 143, 255, 27, 254, 85, 25, 223, 220, 79, 174, 229, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1471, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + ] + }, + "cborHex": "d905099f801bffffffffffffffebff", + "cborBytes": [217, 5, 9, 159, 128, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1472, + "sample": { + "_tag": "ByteArray", + "bytearray": "06fb020703c3042f" + }, + "cborHex": "4806fb020703c3042f", + "cborBytes": [72, 6, 251, 2, 7, 3, 195, 4, 47], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1473, + "sample": { + "_tag": "ByteArray", + "bytearray": "ec21" + }, + "cborHex": "42ec21", + "cborBytes": [66, 236, 33], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1474, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14750066424310095803" + } + }, + "cborHex": "1bccb2c343826b5fbb", + "cborBytes": [27, 204, 178, 195, 67, 130, 107, 95, 187], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1475, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [] + }, + "cborHex": "d9050080", + "cborBytes": [217, 5, 0, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1476, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0413" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2334053120380556894" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12479678554083075851" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9632630912072000137" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6879677388556868045" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11989675418643864682" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12993423097920760748" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9c94a4a8c5d98" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17389070449415530049" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e0164050605ecb3a7fb06" + } + } + ] + } + ] + }, + "cborHex": "9f420413bf1b206438f2572cd65e1bad30b986572ea70b1b85adfac7567fa2891b5f798622823819cd1ba663e244ec801c6a41a51bb451e97727ec2bac47b9c94a4a8c5d981bf152637147a7a6414b1e0164050605ecb3a7fb06ffff", + "cborBytes": [ + 159, 66, 4, 19, 191, 27, 32, 100, 56, 242, 87, 44, 214, 94, 27, 173, 48, 185, 134, 87, 46, 167, 11, 27, 133, 173, + 250, 199, 86, 127, 162, 137, 27, 95, 121, 134, 34, 130, 56, 25, 205, 27, 166, 99, 226, 68, 236, 128, 28, 106, 65, + 165, 27, 180, 81, 233, 119, 39, 236, 43, 172, 71, 185, 201, 74, 74, 140, 93, 152, 27, 241, 82, 99, 113, 71, 167, + 166, 65, 75, 30, 1, 100, 5, 6, 5, 236, 179, 167, 251, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1477, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7463862037775107655" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7719610396255021164" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5761652865280126943" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "58a968a7133acd00ffd556a0" + }, + { + "_tag": "ByteArray", + "bytearray": "f69af9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13313123213188113284" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13972270517695047729" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6903420312207495434" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac6c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10745124986972291630" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9bf039d94a05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11772694178128695801" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6071620465932979045" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13043036001748875117" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1ba05264f35" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17602315021888665485" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ac9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18123402773069423489" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6227732482901392383" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17665688751046558142" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "93f2b9692d0ff1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8152174742213735251" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7329657038637674516" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9992659936214815794" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4513750832638821062" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0748819e894770601c92" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "443382011817983692" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b267fd6fbc6d06" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b6794f6fa661bc6479f1b6b2190c15131686cd8669f1b4ff580c122222fdf9f9f4c58a968a7133acd00ffd556a043f69af91bb8c1b706c515a3841bc1e77a01f0e06831ffbf1b5fcde032b458110a42ac6c1b951e5a3edba8422e469bf039d94a051ba36102fb08ab91f91b5442baa51aed4b651bb5022c237cdf776d46e1ba05264f351bf447fc405832378d424ac91bfb8342ccda21e3811b566d59b27f7fbbffff1bf52922527ebe81beffff4793f2b9692d0ff1bf1b712257bc688fb3531b65b82c3e1170b0141b8aad0f44c35c94321b3ea41077a80f82c6ff9f80bf4a0748819e894770601c921b0627359732357eccff47b267fd6fbc6d06a0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 103, 148, 246, 250, 102, 27, 198, 71, 159, 27, 107, 33, 144, 193, 81, 49, 104, 108, 216, 102, + 159, 27, 79, 245, 128, 193, 34, 34, 47, 223, 159, 159, 76, 88, 169, 104, 167, 19, 58, 205, 0, 255, 213, 86, 160, + 67, 246, 154, 249, 27, 184, 193, 183, 6, 197, 21, 163, 132, 27, 193, 231, 122, 1, 240, 224, 104, 49, 255, 191, 27, + 95, 205, 224, 50, 180, 88, 17, 10, 66, 172, 108, 27, 149, 30, 90, 62, 219, 168, 66, 46, 70, 155, 240, 57, 217, 74, + 5, 27, 163, 97, 2, 251, 8, 171, 145, 249, 27, 84, 66, 186, 165, 26, 237, 75, 101, 27, 181, 2, 44, 35, 124, 223, + 119, 109, 70, 225, 186, 5, 38, 79, 53, 27, 244, 71, 252, 64, 88, 50, 55, 141, 66, 74, 201, 27, 251, 131, 66, 204, + 218, 33, 227, 129, 27, 86, 109, 89, 178, 127, 127, 187, 255, 255, 27, 245, 41, 34, 82, 126, 190, 129, 190, 255, + 255, 71, 147, 242, 185, 105, 45, 15, 241, 191, 27, 113, 34, 87, 188, 104, 143, 179, 83, 27, 101, 184, 44, 62, 17, + 112, 176, 20, 27, 138, 173, 15, 68, 195, 92, 148, 50, 27, 62, 164, 16, 119, 168, 15, 130, 198, 255, 159, 128, 191, + 74, 7, 72, 129, 158, 137, 71, 112, 96, 28, 146, 27, 6, 39, 53, 151, 50, 53, 126, 204, 255, 71, 178, 103, 253, 111, + 188, 109, 6, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1478, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7057047300700510125" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "466475" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9f802" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fa80f04f8fd19d11efb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b61efab21516217adbf0a1bfffffffffffffff24346647543e9f8024a6fa80f04f8fd19d11efb1bfffffffffffffffeffff", + "cborBytes": [ + 159, 27, 97, 239, 171, 33, 81, 98, 23, 173, 191, 10, 27, 255, 255, 255, 255, 255, 255, 255, 242, 67, 70, 100, 117, + 67, 233, 248, 2, 74, 111, 168, 15, 4, 248, 253, 25, 209, 30, 251, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1479, + "sample": { + "_tag": "ByteArray", + "bytearray": "55a87d5f" + }, + "cborHex": "4455a87d5f", + "cborBytes": [68, 85, 168, 125, 95], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1480, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18185883886991210406" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "131415fc" + } + } + ] + } + ] + }, + "cborHex": "9fbf1bfc613d0ad29c77a644131415fcffff", + "cborBytes": [159, 191, 27, 252, 97, 61, 10, 210, 156, 119, 166, 68, 19, 20, 21, 252, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1481, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17403879756678829629" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bf187006dd274163d80ffff", + "cborBytes": [159, 216, 102, 159, 27, 241, 135, 0, 109, 210, 116, 22, 61, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1482, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8159523659732792557" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1589038066631906589" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15868429544892158423" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12219861585493498244" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "94fff2fc04fdd340daaa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1971652114252477360" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13506618813205603939" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "95ae737f8951a44de5b1b8" + }, + { + "_tag": "ByteArray", + "bytearray": "cc63c5ef3b9077b7f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16865435124371488271" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3432979707503250543" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1c" + }, + { + "_tag": "ByteArray", + "bytearray": "1349cd" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1380648926471511045" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15068075827341374847" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f77c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "537de26a8abe52c74c14c164" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16091484694565868230" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8120833218408069797" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1518959646278092230" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10579657377343037177" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17498566308710732242" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cfffadf1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16438523644232816213" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7780693597536549170" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16175077306303291203" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9576694874725290932" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "14" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14655556450451512827" + } + }, + { + "_tag": "ByteArray", + "bytearray": "45b26f" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b713c73899ac4b4ed9f9f1b160d65b3d82b151d1bdc37fc98b69c51d7ff9fa01ba995ab5e4fc81984bf4a94fff2fc04fdd340daaa1b1b5cb726d2aab3b0ffff9fd8669f1bbb71263fddba66639f4b95ae737f8951a44de5b1b849cc63c5ef3b9077b7f81bea0e0fe3828efe0fffff9f1b2fa464daf2db0c6fff411c431349cd9f1b13290ce235dbdc05ffffbf1bd11c8f218155357f42f77c4c537de26a8abe52c74c14c1641bdf507012c83bd2c6ff9fbf1b70b2fec93f67baa51b15146dc0208f05c6ff9f1b92d27e54cddf5ef9ffd8669f1bf2d76558ad5251d280ff9f44cfffadf11be4215e28ce5b56551b6bfa939a635279321be0796b1c60b09f43ffd8669f1b84e7413fc24e13b49f41141bcb62fef176d8ddfb4345b26fffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 113, 60, 115, 137, 154, 196, 180, 237, 159, 159, 27, 22, 13, 101, 179, 216, 43, 21, 29, 27, + 220, 55, 252, 152, 182, 156, 81, 215, 255, 159, 160, 27, 169, 149, 171, 94, 79, 200, 25, 132, 191, 74, 148, 255, + 242, 252, 4, 253, 211, 64, 218, 170, 27, 27, 92, 183, 38, 210, 170, 179, 176, 255, 255, 159, 216, 102, 159, 27, + 187, 113, 38, 63, 221, 186, 102, 99, 159, 75, 149, 174, 115, 127, 137, 81, 164, 77, 229, 177, 184, 73, 204, 99, + 197, 239, 59, 144, 119, 183, 248, 27, 234, 14, 15, 227, 130, 142, 254, 15, 255, 255, 159, 27, 47, 164, 100, 218, + 242, 219, 12, 111, 255, 65, 28, 67, 19, 73, 205, 159, 27, 19, 41, 12, 226, 53, 219, 220, 5, 255, 255, 191, 27, + 209, 28, 143, 33, 129, 85, 53, 127, 66, 247, 124, 76, 83, 125, 226, 106, 138, 190, 82, 199, 76, 20, 193, 100, 27, + 223, 80, 112, 18, 200, 59, 210, 198, 255, 159, 191, 27, 112, 178, 254, 201, 63, 103, 186, 165, 27, 21, 20, 109, + 192, 32, 143, 5, 198, 255, 159, 27, 146, 210, 126, 84, 205, 223, 94, 249, 255, 216, 102, 159, 27, 242, 215, 101, + 88, 173, 82, 81, 210, 128, 255, 159, 68, 207, 255, 173, 241, 27, 228, 33, 94, 40, 206, 91, 86, 85, 27, 107, 250, + 147, 154, 99, 82, 121, 50, 27, 224, 121, 107, 28, 96, 176, 159, 67, 255, 216, 102, 159, 27, 132, 231, 65, 63, 194, + 78, 19, 180, 159, 65, 20, 27, 203, 98, 254, 241, 118, 216, 221, 251, 67, 69, 178, 111, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1483, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f0fc3cc60d8c26de39" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15749754266966354705" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1152027139162420372" + } + } + ] + } + ] + }, + "cborHex": "9f49f0fc3cc60d8c26de39d8669f1bda925e0f5e38eb119f801b0ffcd2945162b494ffffff", + "cborBytes": [ + 159, 73, 240, 252, 60, 198, 13, 140, 38, 222, 57, 216, 102, 159, 27, 218, 146, 94, 15, 94, 56, 235, 17, 159, 128, + 27, 15, 252, 210, 148, 81, 98, 180, 148, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1484, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4336114641327249266" + } + }, + "cborHex": "1b3c2cf94ae5ae5772", + "cborBytes": [27, 60, 44, 249, 74, 229, 174, 87, 114], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1485, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff277e58edf2b45f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff" + } + } + ] + }, + "cborHex": "bf48ff277e58edf2b45f41ffff", + "cborBytes": [191, 72, 255, 39, 126, 88, 237, 242, 180, 95, 65, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1486, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "991487808550404578" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5952321356804626028" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12250389959255862108" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1840797043191027550" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "09140c3d73720084d155" + }, + { + "_tag": "ByteArray", + "bytearray": "a2" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13803210038549448667" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8192450858711908542" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddc9333e0b09" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2367cc816f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3042569851243322973" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "516f2befb97c1d31528295" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b611412965" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8e7f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13351013798462681433" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0dc278e8a3c701e241951b529ae4bcbd4f966ca01baa0220c339752b5cd8669f1b198bd32866fd975e9f4a09140c3d73720084d15541a2ffff1bbf8eda65c3d887dbbf1b71b16ea6895e00be46ddc9333e0b09452367cc816f1b2a396128d3abde5d4b516f2befb97c1d3152829545b61141296543c8e7f71bb948545020b4f159ffff", + "cborBytes": [ + 191, 27, 13, 194, 120, 232, 163, 199, 1, 226, 65, 149, 27, 82, 154, 228, 188, 189, 79, 150, 108, 160, 27, 170, 2, + 32, 195, 57, 117, 43, 92, 216, 102, 159, 27, 25, 139, 211, 40, 102, 253, 151, 94, 159, 74, 9, 20, 12, 61, 115, + 114, 0, 132, 209, 85, 65, 162, 255, 255, 27, 191, 142, 218, 101, 195, 216, 135, 219, 191, 27, 113, 177, 110, 166, + 137, 94, 0, 190, 70, 221, 201, 51, 62, 11, 9, 69, 35, 103, 204, 129, 111, 27, 42, 57, 97, 40, 211, 171, 222, 93, + 75, 81, 111, 43, 239, 185, 124, 29, 49, 82, 130, 149, 69, 182, 17, 65, 41, 101, 67, 200, 231, 247, 27, 185, 72, + 84, 80, 32, 180, 241, 89, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1487, + "sample": { + "_tag": "ByteArray", + "bytearray": "9605cf279477bc" + }, + "cborHex": "479605cf279477bc", + "cborBytes": [71, 150, 5, 207, 39, 148, 119, 188], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1488, + "sample": { + "_tag": "ByteArray", + "bytearray": "010045e6" + }, + "cborHex": "44010045e6", + "cborBytes": [68, 1, 0, 69, 230], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1489, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7368331544467790380" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7612925761010025560" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5515185025159295283" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8885480518667051295" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5225928607920053768" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b859b9cfdcb" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ab470d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15865911267066767671" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4477058445093870494" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6699087314033076599" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15374162669635042784" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12210653907491432451" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1757313496237788854" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7798996560862891299" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b66419280274eda2c9f039fd8669f1b69a68ba5066c44589f1b4c89df8f472c71331b7b4f917455cda11f1b48863a6178a05e08462b859b9cfdcbffffbf444ab470d31bdc2f0a3c7761e937ffd8669f1b3e21b4ef727b9b9e9f1b5cf7f06b38446977ffff1bd55bff7e02aafde01ba974f508b7432803ff1b18633b506e40ceb61b6c3b9a0d1eb9cd239fa0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 102, 65, 146, 128, 39, 78, 218, 44, 159, 3, 159, 216, 102, 159, 27, 105, 166, 139, 165, 6, 108, + 68, 88, 159, 27, 76, 137, 223, 143, 71, 44, 113, 51, 27, 123, 79, 145, 116, 85, 205, 161, 31, 27, 72, 134, 58, 97, + 120, 160, 94, 8, 70, 43, 133, 155, 156, 253, 203, 255, 255, 191, 68, 74, 180, 112, 211, 27, 220, 47, 10, 60, 119, + 97, 233, 55, 255, 216, 102, 159, 27, 62, 33, 180, 239, 114, 123, 155, 158, 159, 27, 92, 247, 240, 107, 56, 68, + 105, 119, 255, 255, 27, 213, 91, 255, 126, 2, 170, 253, 224, 27, 169, 116, 245, 8, 183, 67, 40, 3, 255, 27, 24, + 99, 59, 80, 110, 64, 206, 182, 27, 108, 59, 154, 13, 30, 185, 205, 35, 159, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1490, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffd0cff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 253, 12, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1491, + "sample": { + "_tag": "ByteArray", + "bytearray": "1b01e7550004" + }, + "cborHex": "461b01e7550004", + "cborBytes": [70, 27, 1, 231, 85, 0, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1492, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7358109624466701152" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b377c8ed551ff73124dea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12550716881968399589" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8059603707111160910" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7898763801217785824" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6d" + }, + { + "_tag": "ByteArray", + "bytearray": "2c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6899204991713689544" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10021065658713182488" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d005c8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2736727751662068790" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b500c8fe05d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13011575640914174262" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1971180373633236384" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e905e4eafd028b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8417276223471849089" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c44400ad665d4e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8692496219537665611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdbcd4" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "49790388743d5f137ddd38" + } + ] + }, + "cborHex": "9fbf1b661d41b7f0b87b604b0b377c8ed551ff73124dea1bae2d1a81f23984e51b6fd976deb8c83c4eff9fd8669f1b6d9e0bd3e84cdfe09f416d412c1b5fbee662ebb23fc81b8b11fa1f6a771118ffffffbf1143d005c81bfffffffffffffffe1b25facf63ecc5643646b500c8fe05d10e41ba1bb492671b6cd0a136ffbf1b1b5b0a1b26a17da047e905e4eafd028b1b74d02c20ec618e8147c44400ad665d4e1b78a1f341c0f7ee4b43fdbcd4ff4b49790388743d5f137ddd38ff", + "cborBytes": [ + 159, 191, 27, 102, 29, 65, 183, 240, 184, 123, 96, 75, 11, 55, 124, 142, 213, 81, 255, 115, 18, 77, 234, 27, 174, + 45, 26, 129, 242, 57, 132, 229, 27, 111, 217, 118, 222, 184, 200, 60, 78, 255, 159, 216, 102, 159, 27, 109, 158, + 11, 211, 232, 76, 223, 224, 159, 65, 109, 65, 44, 27, 95, 190, 230, 98, 235, 178, 63, 200, 27, 139, 17, 250, 31, + 106, 119, 17, 24, 255, 255, 255, 191, 17, 67, 208, 5, 200, 27, 255, 255, 255, 255, 255, 255, 255, 254, 27, 37, + 250, 207, 99, 236, 197, 100, 54, 70, 181, 0, 200, 254, 5, 209, 14, 65, 186, 27, 180, 146, 103, 27, 108, 208, 161, + 54, 255, 191, 27, 27, 91, 10, 27, 38, 161, 125, 160, 71, 233, 5, 228, 234, 253, 2, 139, 27, 116, 208, 44, 32, 236, + 97, 142, 129, 71, 196, 68, 0, 173, 102, 93, 78, 27, 120, 161, 243, 65, 192, 247, 238, 75, 67, 253, 188, 212, 255, + 75, 73, 121, 3, 136, 116, 61, 95, 19, 125, 221, 56, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1493, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff8bf100bffff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 248, 191, 16, 11, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1494, + "sample": { + "_tag": "ByteArray", + "bytearray": "8847f8" + }, + "cborHex": "438847f8", + "cborBytes": [67, 136, 71, 248], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1495, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18293079639799198526" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "26bb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "894332027055732371" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6397889837753475249" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de33" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14561338424888906952" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6139811248423459553" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9478" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5316567584664817164" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1909480054244708627" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4fe59d41ffe90" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3686686324038559755" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4516353608816915933" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3939040077156624936" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74455f7e8f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4394838124471423167" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17903596187739284191" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14220140040668595463" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85e05df0246501591e" + }, + { + "_tag": "ByteArray", + "bytearray": "e0be645fba676f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5129025326338212056" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "914f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2217268517132533662" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14542962404748660117" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14975061068379076092" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06e53a08" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "70be11f725" + } + ] + }, + "cborHex": "d8669f1bfdde1302f229733e9f4226bbd8669f1b0c694e3d7fe976939fd8669f1b58c9dee8f360a0b19f42de331bca144425edbfd4c81b5534fdcce23a5ae14294781b49c83e0cc44d8e0cffffbf1b1a7fd5fe12f3111347a4fe59d41ffe901b3329bdadc69be80b1b3ead4fadb595f5dd1b36aa48148af2aa284574455f7e8fffd8669f1b3cfd99fd467690bf9f1bf87659e01c3ce2dfffff9f1bc5581606845c45074985e05df0246501591e47e0be645fba676f1b472df55c0c5f00d8ff42914fffffbf1b1ec551f7ff577f9e1bc9d2fb4154e78d951bcfd21ab34e8435fc4406e53a08ff4570be11f725ffff", + "cborBytes": [ + 216, 102, 159, 27, 253, 222, 19, 2, 242, 41, 115, 62, 159, 66, 38, 187, 216, 102, 159, 27, 12, 105, 78, 61, 127, + 233, 118, 147, 159, 216, 102, 159, 27, 88, 201, 222, 232, 243, 96, 160, 177, 159, 66, 222, 51, 27, 202, 20, 68, + 37, 237, 191, 212, 200, 27, 85, 52, 253, 204, 226, 58, 90, 225, 66, 148, 120, 27, 73, 200, 62, 12, 196, 77, 142, + 12, 255, 255, 191, 27, 26, 127, 213, 254, 18, 243, 17, 19, 71, 164, 254, 89, 212, 31, 254, 144, 27, 51, 41, 189, + 173, 198, 155, 232, 11, 27, 62, 173, 79, 173, 181, 149, 245, 221, 27, 54, 170, 72, 20, 138, 242, 170, 40, 69, 116, + 69, 95, 126, 143, 255, 216, 102, 159, 27, 60, 253, 153, 253, 70, 118, 144, 191, 159, 27, 248, 118, 89, 224, 28, + 60, 226, 223, 255, 255, 159, 27, 197, 88, 22, 6, 132, 92, 69, 7, 73, 133, 224, 93, 240, 36, 101, 1, 89, 30, 71, + 224, 190, 100, 95, 186, 103, 111, 27, 71, 45, 245, 92, 12, 95, 0, 216, 255, 66, 145, 79, 255, 255, 191, 27, 30, + 197, 81, 247, 255, 87, 127, 158, 27, 201, 210, 251, 65, 84, 231, 141, 149, 27, 207, 210, 26, 179, 78, 132, 53, + 252, 68, 6, 229, 58, 8, 255, 69, 112, 190, 17, 247, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1496, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14401710517313185291" + } + }, + "cborHex": "1bc7dd27697675a60b", + "cborBytes": [27, 199, 221, 39, 105, 118, 117, 166, 11], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1497, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11786826777664777006" + } + }, + "cborHex": "1ba393388147c56b2e", + "cborBytes": [27, 163, 147, 56, 129, 71, 197, 107, 46], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1498, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16056776021250605085" + } + }, + "cborHex": "1bded520b808a7001d", + "cborBytes": [27, 222, 213, 32, 184, 8, 167, 0, 29], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1499, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17912494795951609263" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "255507304970417962" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1364656672034648554" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1661759798950240206" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73e2d759273568" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9404564578654152308" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e157e5d0877ee0fe3f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9584149440575876382" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b326b4bb719e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9659384330574981111" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11585418021016709497" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10494737526828480632" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1422072529678204928" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17252301018056369271" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "78822041" + } + ] + }, + "cborHex": "d8669f1bf895f71cc9ba95af9fbf1b038bbe8a4647772a1b12f03c0350fdf1ea1b170fc1bb96741fce4773e2d7592735681b8283b9a821e6e67449e157e5d0877ee0fe3f1b8501bd231fc8ad1e46b326b4bb719e1b860d06defce567f71ba0c7ac4ed51c29791b91a4cc2d5992b8781b13bc376e684f8000ff9f1bef6c7c5e8b5c2477ff4478822041ffff", + "cborBytes": [ + 216, 102, 159, 27, 248, 149, 247, 28, 201, 186, 149, 175, 159, 191, 27, 3, 139, 190, 138, 70, 71, 119, 42, 27, 18, + 240, 60, 3, 80, 253, 241, 234, 27, 23, 15, 193, 187, 150, 116, 31, 206, 71, 115, 226, 215, 89, 39, 53, 104, 27, + 130, 131, 185, 168, 33, 230, 230, 116, 73, 225, 87, 229, 208, 135, 126, 224, 254, 63, 27, 133, 1, 189, 35, 31, + 200, 173, 30, 70, 179, 38, 180, 187, 113, 158, 27, 134, 13, 6, 222, 252, 229, 103, 247, 27, 160, 199, 172, 78, + 213, 28, 41, 121, 27, 145, 164, 204, 45, 89, 146, 184, 120, 27, 19, 188, 55, 110, 104, 79, 128, 0, 255, 159, 27, + 239, 108, 124, 94, 139, 92, 36, 119, 255, 68, 120, 130, 32, 65, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1500, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15461856349210877348" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3046678765893460871" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30c521fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5912348881758954403" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3041220405184654859" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f41de1bd6938c6dded51da4bf1b2a47fa3211ce23874430c521fc1b520ce1fba56ba3a31b2a3495d86eb36e0bffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 65, 222, 27, 214, 147, 140, 109, 222, 213, 29, + 164, 191, 27, 42, 71, 250, 50, 17, 206, 35, 135, 68, 48, 197, 33, 252, 27, 82, 12, 225, 251, 165, 107, 163, 163, + 27, 42, 52, 149, 216, 110, 179, 110, 11, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1501, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8166965566748232854" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36055adff0b8fc74" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "146565926776030929" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43f8cf70fd489ca7327744e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [] + } + ] + }, + "cborHex": "d905029fbf011b7156e3e99ae00c961bfffffffffffffff44836055adff0b8fc7441041b0208b4ef11a946d14c43f8cf70fd489ca7327744e61bfffffffffffffff2ffd8669f1bffffffffffffffed80ffff", + "cborBytes": [ + 217, 5, 2, 159, 191, 1, 27, 113, 86, 227, 233, 154, 224, 12, 150, 27, 255, 255, 255, 255, 255, 255, 255, 244, 72, + 54, 5, 90, 223, 240, 184, 252, 116, 65, 4, 27, 2, 8, 180, 239, 17, 169, 70, 209, 76, 67, 248, 207, 112, 253, 72, + 156, 167, 50, 119, 68, 230, 27, 255, 255, 255, 255, 255, 255, 255, 242, 255, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 237, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1502, + "sample": { + "_tag": "ByteArray", + "bytearray": "81990021399a22e653ce" + }, + "cborHex": "4a81990021399a22e653ce", + "cborBytes": [74, 129, 153, 0, 33, 57, 154, 34, 230, 83, 206], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1503, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9639270719423856496" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4475100430359779390" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bc591cb6a061968c74fb368d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "db5aa4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15238176735429660550" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecc07f9f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12658013280112544325" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b85c591a5f5153f701b3e1ac0219dcad83eff9f4cbc591cb6a061968c74fb368d1bffffffffffffffeeffbf43db5aa41bd378e1016be80f8644ecc07f9f1bafaa4c0363490a45ffff", + "cborBytes": [ + 159, 191, 27, 133, 197, 145, 165, 245, 21, 63, 112, 27, 62, 26, 192, 33, 157, 202, 216, 62, 255, 159, 76, 188, 89, + 28, 182, 160, 97, 150, 140, 116, 251, 54, 141, 27, 255, 255, 255, 255, 255, 255, 255, 238, 255, 191, 67, 219, 90, + 164, 27, 211, 120, 225, 1, 107, 232, 15, 134, 68, 236, 192, 127, 159, 27, 175, 170, 76, 3, 99, 73, 10, 69, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1504, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e05c724066580" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf476e05c7240665801bffffffffffffffedffff", + "cborBytes": [159, 191, 71, 110, 5, 199, 36, 6, 101, 128, 27, 255, 255, 255, 255, 255, 255, 255, 237, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1505, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9125266082881526211" + }, + "fields": [] + }, + "cborHex": "d8669f1b7ea375279712d9c380ff", + "cborBytes": [216, 102, 159, 27, 126, 163, 117, 39, 151, 18, 217, 195, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1506, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01bcfa6aa11dc5ba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45dfe2da0c7c314aba9fbb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4035d5a0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bd7c1a524426ba38" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bd9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af2aebc5357e39a86bbc28" + } + } + ] + }, + "cborHex": "bf4801bcfa6aa11dc5ba4b45dfe2da0c7c314aba9fbb444035d5a09f48bd7c1a524426ba38ff424bd94baf2aebc5357e39a86bbc28ff", + "cborBytes": [ + 191, 72, 1, 188, 250, 106, 161, 29, 197, 186, 75, 69, 223, 226, 218, 12, 124, 49, 74, 186, 159, 187, 68, 64, 53, + 213, 160, 159, 72, 189, 124, 26, 82, 68, 38, 186, 56, 255, 66, 75, 217, 75, 175, 42, 235, 197, 53, 126, 57, 168, + 107, 188, 40, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1507, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1478081412371410851" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "89dc82ad03fc3069" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2604288330523573706" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a8a5731bb3c4a3aec2ab6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12620522436512268212" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abaded3d0931f44f513d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5e4da15" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12268854819867016661" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12769953701724821748" + } + } + ] + }, + "cborHex": "9f1b148333369d816fa3bf4889dc82ad03fc30691b24244a70418d7dca4b8a8a5731bb3c4a3aec2ab61baf251a4a24293fb442d1cb4aabaded3d0931f44f513d44e5e4da151baa43ba749b033dd5ff1bb137fd3bcd7e18f4ff", + "cborBytes": [ + 159, 27, 20, 131, 51, 54, 157, 129, 111, 163, 191, 72, 137, 220, 130, 173, 3, 252, 48, 105, 27, 36, 36, 74, 112, + 65, 141, 125, 202, 75, 138, 138, 87, 49, 187, 60, 74, 58, 236, 42, 182, 27, 175, 37, 26, 74, 36, 41, 63, 180, 66, + 209, 203, 74, 171, 173, 237, 61, 9, 49, 244, 79, 81, 61, 68, 229, 228, 218, 21, 27, 170, 67, 186, 116, 155, 3, 61, + 213, 255, 27, 177, 55, 253, 59, 205, 126, 24, 244, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1508, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13864681862333375737" + } + }, + "cborHex": "1bc0693eb2102ea4f9", + "cborBytes": [27, 192, 105, 62, 178, 16, 46, 164, 249], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1509, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c31f8c73fd4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10743190276981517017" + } + } + } + ] + } + ] + }, + "cborHex": "d905019fbf465c31f8c73fd41b95177aa315e9ead9ffff", + "cborBytes": [ + 217, 5, 1, 159, 191, 70, 92, 49, 248, 199, 63, 212, 27, 149, 23, 122, 163, 21, 233, 234, 217, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1510, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8074630345048749386" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "358a31" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9100730048742961381" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8036675800944697574" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b700ed9848138754a9f43358a31801b7e4c49c2f80c30e51b6f88020f924960e680ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 112, 14, 217, 132, 129, 56, 117, 74, 159, 67, 53, 138, 49, 128, 27, 126, 76, 73, 194, 248, + 12, 48, 229, 27, 111, 136, 2, 15, 146, 73, 96, 230, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1511, + "sample": { + "_tag": "ByteArray", + "bytearray": "04fd07" + }, + "cborHex": "4304fd07", + "cborBytes": [67, 4, 253, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1512, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16637759420374305513" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "23aa9b7c563a97" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "813a7a6c082dea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34021f3735" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34bac3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ca174ac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6700592970512388941" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73454926541a6f9570" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03ff0103b4f9fdac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad9a99ab5005690b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df120839dc9c" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12678357584356007931" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1ea540ec1989e76f" + } + ] + } + ] + }, + "cborHex": "9fbf411f1be6e5320acdd1cae94723aa9b7c563a9747813a7a6c082dea4534021f37354334bac3444ca174ac1b5cfd49ce2fded34d4973454926541a6f95704803ff0103b4f9fdac48ad9a99ab5005690b46df120839dc9cffa0d8669f1baff2930cd6eb5ffb9f481ea540ec1989e76fffffff", + "cborBytes": [ + 159, 191, 65, 31, 27, 230, 229, 50, 10, 205, 209, 202, 233, 71, 35, 170, 155, 124, 86, 58, 151, 71, 129, 58, 122, + 108, 8, 45, 234, 69, 52, 2, 31, 55, 53, 67, 52, 186, 195, 68, 76, 161, 116, 172, 27, 92, 253, 73, 206, 47, 222, + 211, 77, 73, 115, 69, 73, 38, 84, 26, 111, 149, 112, 72, 3, 255, 1, 3, 180, 249, 253, 172, 72, 173, 154, 153, 171, + 80, 5, 105, 11, 70, 223, 18, 8, 57, 220, 156, 255, 160, 216, 102, 159, 27, 175, 242, 147, 12, 214, 235, 95, 251, + 159, 72, 30, 165, 64, 236, 25, 137, 231, 111, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1513, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10687746610845559523" + }, + "fields": [] + }, + "cborHex": "d8669f1b945280ea9cd5aae380ff", + "cborBytes": [216, 102, 159, 27, 148, 82, 128, 234, 156, 213, 170, 227, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1514, + "sample": { + "_tag": "ByteArray", + "bytearray": "044c06b7" + }, + "cborHex": "44044c06b7", + "cborBytes": [68, 4, 76, 6, 183], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1515, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2acb1222a3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2c9de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18432587941567033402" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc19ebc45e6413e7f770b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3058454620558408940" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf452acb1222a3bf43c2c9de1bffcdb512a440703a4bdc19ebc45e6413e7f770b11b2a71d045e4093cecffff", + "cborBytes": [ + 191, 69, 42, 203, 18, 34, 163, 191, 67, 194, 201, 222, 27, 255, 205, 181, 18, 164, 64, 112, 58, 75, 220, 25, 235, + 196, 94, 100, 19, 231, 247, 112, 177, 27, 42, 113, 208, 69, 228, 9, 60, 236, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1516, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [] + }, + "cborHex": "d8669f1bffffffffffffffff80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1517, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9c824633ade05" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e1e91d5098f7e4223988c63" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f89ea9e5060517b1834c4a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5db3b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "609e45f1599375c8fe7190" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78342a79056b91ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "328545756177644114" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81713735" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4691853916905656197" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab1b47" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dce748bef7fd3e74d3950c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f638d4d61d8d66d8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "553638417822271341" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf47c9c824633ade05bf4c0e1e91d5098f7e4223988c634bf89ea9e5060517b1834c4a435db3b04b609e45f1599375c8fe71904878342a79056b91ee1b048f3a9fe16e3a5244817137351b411cd047672fcf8543ab1b474bdce748bef7fd3e74d3950c48f638d4d61d8d66d81b07aeeb352c4e476dffff", + "cborBytes": [ + 191, 71, 201, 200, 36, 99, 58, 222, 5, 191, 76, 14, 30, 145, 213, 9, 143, 126, 66, 35, 152, 140, 99, 75, 248, 158, + 169, 229, 6, 5, 23, 177, 131, 76, 74, 67, 93, 179, 176, 75, 96, 158, 69, 241, 89, 147, 117, 200, 254, 113, 144, + 72, 120, 52, 42, 121, 5, 107, 145, 238, 27, 4, 143, 58, 159, 225, 110, 58, 82, 68, 129, 113, 55, 53, 27, 65, 28, + 208, 71, 103, 47, 207, 133, 67, 171, 27, 71, 75, 220, 231, 72, 190, 247, 253, 62, 116, 211, 149, 12, 72, 246, 56, + 212, 214, 29, 141, 102, 216, 27, 7, 174, 235, 53, 44, 78, 71, 109, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1518, + "sample": { + "_tag": "ByteArray", + "bytearray": "303eb742280d71" + }, + "cborHex": "47303eb742280d71", + "cborBytes": [71, 48, 62, 183, 66, 40, 13, 113], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1519, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14613331935401191696" + }, + "fields": [] + }, + "cborHex": "d8669f1bcaccfbf87275a91080ff", + "cborBytes": [216, 102, 159, 27, 202, 204, 251, 248, 114, 117, 169, 16, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1520, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4843073351708119120" + }, + "fields": [] + }, + "cborHex": "d8669f1b43360d8dbdb9105080ff", + "cborBytes": [216, 102, 159, 27, 67, 54, 13, 141, 189, 185, 16, 80, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1521, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3596093898035937479" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c3" + }, + { + "_tag": "ByteArray", + "bytearray": "1783b58c1935d75b2d" + }, + { + "_tag": "ByteArray", + "bytearray": "9607d05b23" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18217867606694189896" + } + }, + { + "_tag": "ByteArray", + "bytearray": "48d1" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9878480648476012408" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9850681607660544070" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10577328425328514419" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2007229384622701959" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5bd1f877ab63128" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12483078076003305540" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "853777233535206001" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14778453866509590155" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3402491026728060659" + } + } + } + ] + }, + "cborHex": "bf1b31e7e458eb61c0c79f41c3491783b58c1935d75b2d459607d05b231bfcd2de10de1a5b484248d1ff1b891769cfb4fbaf78d8669f1b88b4a6bb2414a0469f1b92ca3829685915731b1bdb1c7d95297d8748f5bd1f877ab63128ffff1bad3ccd5f37a4c8441b0bd939ded22e82711bcd179d7df2cd5e8b1b2f38138fc79486f3ff", + "cborBytes": [ + 191, 27, 49, 231, 228, 88, 235, 97, 192, 199, 159, 65, 195, 73, 23, 131, 181, 140, 25, 53, 215, 91, 45, 69, 150, + 7, 208, 91, 35, 27, 252, 210, 222, 16, 222, 26, 91, 72, 66, 72, 209, 255, 27, 137, 23, 105, 207, 180, 251, 175, + 120, 216, 102, 159, 27, 136, 180, 166, 187, 36, 20, 160, 70, 159, 27, 146, 202, 56, 41, 104, 89, 21, 115, 27, 27, + 219, 28, 125, 149, 41, 125, 135, 72, 245, 189, 31, 135, 122, 182, 49, 40, 255, 255, 27, 173, 60, 205, 95, 55, 164, + 200, 68, 27, 11, 217, 57, 222, 210, 46, 130, 113, 27, 205, 23, 157, 125, 242, 205, 94, 139, 27, 47, 56, 19, 143, + 199, 148, 134, 243, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1522, + "sample": { + "_tag": "ByteArray", + "bytearray": "05070603396b05fbf9" + }, + "cborHex": "4905070603396b05fbf9", + "cborBytes": [73, 5, 7, 6, 3, 57, 107, 5, 251, 249], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1523, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92f1b2f0feb4531613" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "32450494121590019" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf06a00b4992f1b2f0feb45316131b0073498d6ee73d031bfffffffffffffff241dda0ff", + "cborBytes": [ + 191, 6, 160, 11, 73, 146, 241, 178, 240, 254, 180, 83, 22, 19, 27, 0, 115, 73, 141, 110, 231, 61, 3, 27, 255, 255, + 255, 255, 255, 255, 255, 242, 65, 221, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1524, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7567707543458935543" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1979641141691215495" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12958158909253560538" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2160054759536218062" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13557024535363007523" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e084" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17815132767257721394" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b5cf5e4196c659c" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "898072198690613794" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2706630314049150596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5080168922626977063" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14150503855972728231" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14577604491231035847" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13537651877802818078" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15061538138600585045" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "617261761343251024" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16931413562117276742" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bed20354294a352688c44f64" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17467451236251038875" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12211295105163301194" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7ec17eff2a7c0b7c" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13398639574361170252" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17855191896204261903" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3553245960193044549" + } + }, + { + "_tag": "ByteArray", + "bytearray": "741c48a222" + }, + { + "_tag": "ByteArray", + "bytearray": "d0b922dcb92cba50" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "358bf06e89e0cfcf23fc" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5344297694693708394" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14565020278879032091" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5543483447364497720" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16921951945669076944" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6753827833172108230" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a3820c6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11505497883361503789" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8917302039761037364" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13668233751670704960" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3747983392607515311" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16818430808095971829" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9098478687668776390" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17968546571087683022" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb2c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1541501463979893610" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d1f580c57354" + }, + { + "_tag": "ByteArray", + "bytearray": "b5fd5ad884b73f" + }, + { + "_tag": "ByteArray", + "bytearray": "cceb" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4623985530164961057" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a4ffdd5c87" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8932083049659683721" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fa0d8669f1b6905e5ea53e9f2f79fbf1b1b7919213940ee87416e1bb3d4a0df691f28da1b1dfa0e5bfd8c4fce1bbc2439fc9991342342e0841bf73c10dcfad17a32487b5cf5e4196c659cffbf1b0c7697e8119baa221b258fe1ee27341e841b468062b82028ed271bc460b048d00cbda71bca4e0e0c9ff701c71bbbdf66a845563a1e1bd10555233a4937551b0890f44d324be2501beaf876eda33b44464cbed20354294a352688c44f641bf268da5a5433749b1ba9773c332eb9914aff9f487ec17eff2a7c0b7cffffff9fd8669f1bb9f187b42f49e14c9f1bf7ca626dc1b03a0f1b314faa5ff8e5f04545741c48a22248d0b922dcb92cba50ffff4a358bf06e89e0cfcf23fcff1b4a2ac2702228526ad8669f1bca2158c65cf2131b9fbf1b4cee68d3226b31381bead6d9a363d5e7d01b5dba6aa1865ea3c6447a3820c61b9fabbd5dbdc56a2d1b7bc09ef592d2a8341bbdaf522e03564b401b34038309b46f32af1be96711b64c0bd9f51b7e444a291ef5adc61bf95d19e7abbe9dce42bb2cff9f1b1564836a0d44236a46d1f580c5735447b5fd5ad884b73f42ccebffd8669f1b402bb2573c075f219f45a4ffdd5c871b7bf522359f40d389ffffffffff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 105, 5, 229, 234, 83, 233, 242, 247, 159, 191, 27, 27, 121, 25, 33, 57, 64, 238, 135, + 65, 110, 27, 179, 212, 160, 223, 105, 31, 40, 218, 27, 29, 250, 14, 91, 253, 140, 79, 206, 27, 188, 36, 57, 252, + 153, 145, 52, 35, 66, 224, 132, 27, 247, 60, 16, 220, 250, 209, 122, 50, 72, 123, 92, 245, 228, 25, 108, 101, 156, + 255, 191, 27, 12, 118, 151, 232, 17, 155, 170, 34, 27, 37, 143, 225, 238, 39, 52, 30, 132, 27, 70, 128, 98, 184, + 32, 40, 237, 39, 27, 196, 96, 176, 72, 208, 12, 189, 167, 27, 202, 78, 14, 12, 159, 247, 1, 199, 27, 187, 223, + 102, 168, 69, 86, 58, 30, 27, 209, 5, 85, 35, 58, 73, 55, 85, 27, 8, 144, 244, 77, 50, 75, 226, 80, 27, 234, 248, + 118, 237, 163, 59, 68, 70, 76, 190, 210, 3, 84, 41, 74, 53, 38, 136, 196, 79, 100, 27, 242, 104, 218, 90, 84, 51, + 116, 155, 27, 169, 119, 60, 51, 46, 185, 145, 74, 255, 159, 72, 126, 193, 126, 255, 42, 124, 11, 124, 255, 255, + 255, 159, 216, 102, 159, 27, 185, 241, 135, 180, 47, 73, 225, 76, 159, 27, 247, 202, 98, 109, 193, 176, 58, 15, + 27, 49, 79, 170, 95, 248, 229, 240, 69, 69, 116, 28, 72, 162, 34, 72, 208, 185, 34, 220, 185, 44, 186, 80, 255, + 255, 74, 53, 139, 240, 110, 137, 224, 207, 207, 35, 252, 255, 27, 74, 42, 194, 112, 34, 40, 82, 106, 216, 102, + 159, 27, 202, 33, 88, 198, 92, 242, 19, 27, 159, 191, 27, 76, 238, 104, 211, 34, 107, 49, 56, 27, 234, 214, 217, + 163, 99, 213, 231, 208, 27, 93, 186, 106, 161, 134, 94, 163, 198, 68, 122, 56, 32, 198, 27, 159, 171, 189, 93, + 189, 197, 106, 45, 27, 123, 192, 158, 245, 146, 210, 168, 52, 27, 189, 175, 82, 46, 3, 86, 75, 64, 27, 52, 3, 131, + 9, 180, 111, 50, 175, 27, 233, 103, 17, 182, 76, 11, 217, 245, 27, 126, 68, 74, 41, 30, 245, 173, 198, 27, 249, + 93, 25, 231, 171, 190, 157, 206, 66, 187, 44, 255, 159, 27, 21, 100, 131, 106, 13, 68, 35, 106, 70, 209, 245, 128, + 197, 115, 84, 71, 181, 253, 90, 216, 132, 183, 63, 66, 204, 235, 255, 216, 102, 159, 27, 64, 43, 178, 87, 60, 7, + 95, 33, 159, 69, 164, 255, 221, 92, 135, 27, 123, 245, 34, 53, 159, 64, 211, 137, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1525, + "sample": { + "_tag": "ByteArray", + "bytearray": "3850" + }, + "cborHex": "423850", + "cborBytes": [66, 56, 80], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1526, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c63a60" + } + ] + }, + "cborHex": "9f43c63a60ff", + "cborBytes": [159, 67, 198, 58, 96, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1527, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "27e24829c6" + }, + { + "_tag": "ByteArray", + "bytearray": "167987" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16266779995801485699" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5b543d97f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2c473030de181c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4d4cdb2df3e9839960bbfbac" + }, + { + "_tag": "ByteArray", + "bytearray": "a3ee945f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11745866281441850951" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17451063451923066078" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ba14df19336007d1dcfb1a6b" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16330693631266779326" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffec9f9f4527e24829c6431679871be1bf3638992d818345f5b543d97fff472c473030de181c9f4c4d4cdb2df3e9839960bbfbac44a3ee945f1ba301b326949476471bf22ea1bff4ad2cde4cba14df19336007d1dcfb1a6bffd8669f1be2a247557b63f0be80ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 159, 69, 39, 226, 72, 41, 198, 67, 22, 121, + 135, 27, 225, 191, 54, 56, 153, 45, 129, 131, 69, 245, 181, 67, 217, 127, 255, 71, 44, 71, 48, 48, 222, 24, 28, + 159, 76, 77, 76, 219, 45, 243, 233, 131, 153, 96, 187, 251, 172, 68, 163, 238, 148, 95, 27, 163, 1, 179, 38, 148, + 148, 118, 71, 27, 242, 46, 161, 191, 244, 173, 44, 222, 76, 186, 20, 223, 25, 51, 96, 7, 209, 220, 251, 26, 107, + 255, 216, 102, 159, 27, 226, 162, 71, 85, 123, 99, 240, 190, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1528, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3d8f" + }, + { + "_tag": "ByteArray", + "bytearray": "68e138aa" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5093829170344544979" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2354149816657721473" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2e9d8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12356385862295555428" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dd40cd66" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4816747169885948469" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "00785304ed" + }, + { + "_tag": "ByteArray", + "bytearray": "bb5d25732a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7024589590289771750" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8563167715206843380" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16789357616559750760" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e2f8d0eccf" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2c8fa3d68f913b" + }, + { + "_tag": "ByteArray", + "bytearray": "2dcf" + } + ] + } + ] + }, + "cborHex": "9f423d8f4468e138aabf1b46b0eaa464e8cad31b20ab9ec911ef388143c2e9d81bab7ab3798dc90d64ff44dd40cd669f1b42d88607e1eb8a359f4500785304ed45bb5d25732affd8669f1b617c5b03b620ece69f1b76d67baad8ff4bf41be8ffc7cc660afe6845e2f8d0eccfffff472c8fa3d68f913b422dcfffff", + "cborBytes": [ + 159, 66, 61, 143, 68, 104, 225, 56, 170, 191, 27, 70, 176, 234, 164, 100, 232, 202, 211, 27, 32, 171, 158, 201, + 17, 239, 56, 129, 67, 194, 233, 216, 27, 171, 122, 179, 121, 141, 201, 13, 100, 255, 68, 221, 64, 205, 102, 159, + 27, 66, 216, 134, 7, 225, 235, 138, 53, 159, 69, 0, 120, 83, 4, 237, 69, 187, 93, 37, 115, 42, 255, 216, 102, 159, + 27, 97, 124, 91, 3, 182, 32, 236, 230, 159, 27, 118, 214, 123, 170, 216, 255, 75, 244, 27, 232, 255, 199, 204, + 102, 10, 254, 104, 69, 226, 248, 208, 236, 207, 255, 255, 71, 44, 143, 163, 214, 143, 145, 59, 66, 45, 207, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1529, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16363091780048270037" + } + }, + "cborHex": "1be315614750e432d5", + "cborBytes": [27, 227, 21, 97, 71, 80, 228, 50, 213], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1530, + "sample": { + "_tag": "ByteArray", + "bytearray": "810605fd00fef84b05fd2dfa" + }, + "cborHex": "4c810605fd00fef84b05fd2dfa", + "cborBytes": [76, 129, 6, 5, 253, 0, 254, 248, 75, 5, 253, 45, 250], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1531, + "sample": { + "_tag": "ByteArray", + "bytearray": "bb115705ed0c9bd853" + }, + "cborHex": "49bb115705ed0c9bd853", + "cborBytes": [73, 187, 17, 87, 5, 237, 12, 155, 216, 83], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1532, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17163017795276696420" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a4c104d49842f1ef41674e" + } + ] + } + } + ] + }, + "cborHex": "bf41e7d8669f1bee2f49c0512ceb649f4ba4c104d49842f1ef41674effffff", + "cborBytes": [ + 191, 65, 231, 216, 102, 159, 27, 238, 47, 73, 192, 81, 44, 235, 100, 159, 75, 164, 193, 4, 212, 152, 66, 241, 239, + 65, 103, 78, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1533, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11190398451516579722" + }, + "fields": [] + }, + "cborHex": "d8669f1b9b4c481a35ba1f8a80ff", + "cborBytes": [216, 102, 159, 27, 155, 76, 72, 26, 53, 186, 31, 138, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1534, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1591952095510400811" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b1617bfff10560f2b9f80ffff", + "cborBytes": [216, 102, 159, 27, 22, 23, 191, 255, 16, 86, 15, 43, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1535, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2172506323068513651" + } + }, + "cborHex": "1b1e264afd8ac9ed73", + "cborBytes": [27, 30, 38, 74, 253, 138, 201, 237, 115], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1536, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1913cd" + } + ] + }, + "cborHex": "9fbf1307ff431913cdff", + "cborBytes": [159, 191, 19, 7, 255, 67, 25, 19, 205, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1537, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9978402166208710342" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ba1fe058" + }, + { + "_tag": "ByteArray", + "bytearray": "b5558cd609" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5339442190826800435" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3307606173340624366" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1428045307403266388" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2a41a427166" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2796770804844093917" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12723065610345357299" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13743118731738050668" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cea26d59a411409a79" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13931632035946642905" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17086703899595413419" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14864369138599224778" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8129361366464461219" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8fa4ebf2" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2314348842231485855" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11795978526023654169" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "37" + }, + { + "_tag": "ByteArray", + "bytearray": "0c53479a740779af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3958867910905971523" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11298957748829732001" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2296734158334017808" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7370097780291627302" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13915851147258106190" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050d9f9f9f1b8a7a67e6fedbc6c644ba1fe05845b5558cd6091b4a1982620af705331b2de6fa4a4adb65eeffffbf1b13d16fa416ef695446a2a41a4271661b26d0203aa4ea61dd1bb09168c34e9f9ff31bbeb95dac1f43706c49cea26d59a411409a791bc1571986140d3dd91bed202aaaddaa97ab1bce48d8fa0c7c65ca1b70d14b1772e5f9a3ff9f448fa4ebf2ffd8669f1b201e3802938b559f9fd8669f1ba3b3bbf8bdc69b199f4137480c53479a740779af1b36f0b963d63e43431b9ccdf6354724bca1412affffd8669f1b1fdfa38c630141109f1b6647d8e1fa2d69261bc11f08e39b88114effffffffff", + "cborBytes": [ + 217, 5, 13, 159, 159, 159, 27, 138, 122, 103, 230, 254, 219, 198, 198, 68, 186, 31, 224, 88, 69, 181, 85, 140, + 214, 9, 27, 74, 25, 130, 98, 10, 247, 5, 51, 27, 45, 230, 250, 74, 74, 219, 101, 238, 255, 255, 191, 27, 19, 209, + 111, 164, 22, 239, 105, 84, 70, 162, 164, 26, 66, 113, 102, 27, 38, 208, 32, 58, 164, 234, 97, 221, 27, 176, 145, + 104, 195, 78, 159, 159, 243, 27, 190, 185, 93, 172, 31, 67, 112, 108, 73, 206, 162, 109, 89, 164, 17, 64, 154, + 121, 27, 193, 87, 25, 134, 20, 13, 61, 217, 27, 237, 32, 42, 170, 221, 170, 151, 171, 27, 206, 72, 216, 250, 12, + 124, 101, 202, 27, 112, 209, 75, 23, 114, 229, 249, 163, 255, 159, 68, 143, 164, 235, 242, 255, 216, 102, 159, 27, + 32, 30, 56, 2, 147, 139, 85, 159, 159, 216, 102, 159, 27, 163, 179, 187, 248, 189, 198, 155, 25, 159, 65, 55, 72, + 12, 83, 71, 154, 116, 7, 121, 175, 27, 54, 240, 185, 99, 214, 62, 67, 67, 27, 156, 205, 246, 53, 71, 36, 188, 161, + 65, 42, 255, 255, 216, 102, 159, 27, 31, 223, 163, 140, 99, 1, 65, 16, 159, 27, 102, 71, 216, 225, 250, 45, 105, + 38, 27, 193, 31, 8, 227, 155, 136, 17, 78, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1538, + "sample": { + "_tag": "ByteArray", + "bytearray": "06200e02028b3ed50504" + }, + "cborHex": "4a06200e02028b3ed50504", + "cborBytes": [74, 6, 32, 14, 2, 2, 139, 62, 213, 5, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1539, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10417044093178309922" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17507578782801990737" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1f7f07ba4ac21a63a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8428753655828782362" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b9090c6692f796d221bf2f76a24d214145149b1f7f07ba4ac21a63a9f1b74f8f2cae2f31d1affff", + "cborBytes": [ + 191, 27, 144, 144, 198, 105, 47, 121, 109, 34, 27, 242, 247, 106, 36, 210, 20, 20, 81, 73, 177, 247, 240, 123, + 164, 172, 33, 166, 58, 159, 27, 116, 248, 242, 202, 226, 243, 29, 26, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1540, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14131171700417616661" + } + }, + "cborHex": "1bc41c01ca9771db15", + "cborBytes": [27, 196, 28, 1, 202, 151, 113, 219, 21], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1541, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11206293705559391205" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5253428289679949497" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14230219160072187279" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6d8b5506fbe2e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "772bce942d477c88" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc165c3308" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12085579412608100320" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2643723148644385623" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b89cb04b90f11fbe" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "426682619666132953" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5479888325631075166" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16455429068622621257" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d390d97bcb430f589" + }, + { + "_tag": "ByteArray", + "bytearray": "f3" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18056956376291648425" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "771858380035355919" + } + }, + { + "_tag": "ByteArray", + "bytearray": "204065a384d66082ef6a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "98367885576008250" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9686269562346050349" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2437633702639799810" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4599c5648e173a" + } + ] + }, + "cborHex": "d8669f1b9b84c0c070903be59f1b48e7ed32135c7eb9bf1bc57be4ee600f6d8f47a6d8b5506fbe2e48772bce942d477c88417f45fc165c33081ba7b89a719147a7e0ffd8669f1b24b06432576d03579f48b89cb04b90f11fbed8669f1b05ebe194f9086fd99f1b4c0c7966020ce35e1be45d6d8da5e36a49492d390d97bcb430f58941f3ffffd8669f1bfa9732278596a3a99f1b0ab6311b6eea750f4a204065a384d66082ef6a1b015d79121d10723affff1b866c8ad8ce50932d1b21d436effa5d8e02ffff474599c5648e173affff", + "cborBytes": [ + 216, 102, 159, 27, 155, 132, 192, 192, 112, 144, 59, 229, 159, 27, 72, 231, 237, 50, 19, 92, 126, 185, 191, 27, + 197, 123, 228, 238, 96, 15, 109, 143, 71, 166, 216, 181, 80, 111, 190, 46, 72, 119, 43, 206, 148, 45, 71, 124, + 136, 65, 127, 69, 252, 22, 92, 51, 8, 27, 167, 184, 154, 113, 145, 71, 167, 224, 255, 216, 102, 159, 27, 36, 176, + 100, 50, 87, 109, 3, 87, 159, 72, 184, 156, 176, 75, 144, 241, 31, 190, 216, 102, 159, 27, 5, 235, 225, 148, 249, + 8, 111, 217, 159, 27, 76, 12, 121, 102, 2, 12, 227, 94, 27, 228, 93, 109, 141, 165, 227, 106, 73, 73, 45, 57, 13, + 151, 188, 180, 48, 245, 137, 65, 243, 255, 255, 216, 102, 159, 27, 250, 151, 50, 39, 133, 150, 163, 169, 159, 27, + 10, 182, 49, 27, 110, 234, 117, 15, 74, 32, 64, 101, 163, 132, 214, 96, 130, 239, 106, 27, 1, 93, 121, 18, 29, 16, + 114, 58, 255, 255, 27, 134, 108, 138, 216, 206, 80, 147, 45, 27, 33, 212, 54, 239, 250, 93, 142, 2, 255, 255, 71, + 69, 153, 197, 100, 142, 23, 58, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1542, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2206316339788646108" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0107ca7e07fd06fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ab725e42202" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5590" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16526375630638912783" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1e9e69057f3e06dcbf480107ca7e07fd06fc461ab725e422024255901be5597b1358e7950fffff", + "cborBytes": [ + 191, 27, 30, 158, 105, 5, 127, 62, 6, 220, 191, 72, 1, 7, 202, 126, 7, 253, 6, 252, 70, 26, 183, 37, 228, 34, 2, + 66, 85, 144, 27, 229, 89, 123, 19, 88, 231, 149, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1543, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc057505ef01" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c99241c09298dab6df8e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6054563919440940146" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95911a09" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7122807033748610773" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5949125923431988315" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d9d63e2144be9d07b" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdbd02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + } + ] + }, + "cborHex": "bf1046fc057505ef014ac99241c09298dab6df8e9f1b540621ce682c8c724495911a091b62d94b424a3d5ed51b528f8a81ee3b3c5b492d9d63e2144be9d07bff43fdbd024107ff", + "cborBytes": [ + 191, 16, 70, 252, 5, 117, 5, 239, 1, 74, 201, 146, 65, 192, 146, 152, 218, 182, 223, 142, 159, 27, 84, 6, 33, 206, + 104, 44, 140, 114, 68, 149, 145, 26, 9, 27, 98, 217, 75, 66, 74, 61, 94, 213, 27, 82, 143, 138, 129, 238, 59, 60, + 91, 73, 45, 157, 99, 226, 20, 75, 233, 208, 123, 255, 67, 253, 189, 2, 65, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1544, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17409791266448701664" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12681135077654496483" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a8f0af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6025816444799997463" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2400a288925aee40a4de6f88" + }, + { + "_tag": "ByteArray", + "bytearray": "dce84ef10231a3e4bb3c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "06abfb01fb" + }, + { + "_tag": "ByteArray", + "bytearray": "0783f7f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "675230418812042766" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "26feecb44ea700" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12069343098808967035" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf19c00ea725f78e09fd8669f1bfffffffffffffff39f1baffc712a645784e343a8f0af1b53a000216202d6174c2400a288925aee40a4de6f884adce84ef10231a3e4bb3cffff4506abfb01fb440783f7f91b095ee67d06d47e0effffbf4726feecb44ea7001ba77eeb9a2cd21f7bffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 241, 156, 0, 234, 114, 95, 120, 224, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 243, 159, 27, 175, 252, 113, 42, 100, 87, 132, 227, 67, 168, 240, 175, 27, 83, 160, 0, 33, 98, 2, 214, 23, + 76, 36, 0, 162, 136, 146, 90, 238, 64, 164, 222, 111, 136, 74, 220, 232, 78, 241, 2, 49, 163, 228, 187, 60, 255, + 255, 69, 6, 171, 251, 1, 251, 68, 7, 131, 247, 249, 27, 9, 94, 230, 125, 6, 212, 126, 14, 255, 255, 191, 71, 38, + 254, 236, 180, 78, 167, 0, 27, 167, 126, 235, 154, 44, 210, 31, 123, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1545, + "sample": { + "_tag": "ByteArray", + "bytearray": "c57903ff" + }, + "cborHex": "44c57903ff", + "cborBytes": [68, 197, 121, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1546, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16763471815472261384" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13165871042573733791" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "642e4121111e94" + }, + { + "_tag": "ByteArray", + "bytearray": "46bbe68d61026f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13516833591127657994" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc0b6bdb0b85b17eaee2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1760519399458370635" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2cf0b6acb40fbcbc" + }, + { + "_tag": "ByteArray", + "bytearray": "81b5d078793a0cedd1d77b3a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5746534451961755036" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5246460445647195930" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "59603556546258483" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13973628892931244961" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1290208622493207283" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16672387258790298896" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2564684017275683520" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5609966660273092072" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7208" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17114251305358971464" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "580832" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17271267684686374850" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1be8a3d0ccab7f29089fd8669f1bb6b691f51b358f9f9f47642e4121111e944746bbe68d61026fd8669f1bbb9570892f3b4e0a9f4afc0b6bdb0b85b17eaee21b186e9f10f0e6744b482cf0b6acb40fbcbc4c81b5d078793a0cedd1d77b3a1b4fbfcaa33ab9759cffff1b48cf2bfa76f04f1affffbf1b00d3c11e6f4a26331bc1ec4d71524d43a11b11e7bde805da8af31be76037e0b5f1c5101b2397968682d6c2c0413e1b4dda9af4635cb5e84272081bed8208e314afd248435808321befafde73be6a27c24190ff9f1bfffffffffffffff6d87c9f1bfffffffffffffffaffffffff", + "cborBytes": [ + 216, 102, 159, 27, 232, 163, 208, 204, 171, 127, 41, 8, 159, 216, 102, 159, 27, 182, 182, 145, 245, 27, 53, 143, + 159, 159, 71, 100, 46, 65, 33, 17, 30, 148, 71, 70, 187, 230, 141, 97, 2, 111, 216, 102, 159, 27, 187, 149, 112, + 137, 47, 59, 78, 10, 159, 74, 252, 11, 107, 219, 11, 133, 177, 126, 174, 226, 27, 24, 110, 159, 16, 240, 230, 116, + 75, 72, 44, 240, 182, 172, 180, 15, 188, 188, 76, 129, 181, 208, 120, 121, 58, 12, 237, 209, 215, 123, 58, 27, 79, + 191, 202, 163, 58, 185, 117, 156, 255, 255, 27, 72, 207, 43, 250, 118, 240, 79, 26, 255, 255, 191, 27, 0, 211, + 193, 30, 111, 74, 38, 51, 27, 193, 236, 77, 113, 82, 77, 67, 161, 27, 17, 231, 189, 232, 5, 218, 138, 243, 27, + 231, 96, 55, 224, 181, 241, 197, 16, 27, 35, 151, 150, 134, 130, 214, 194, 192, 65, 62, 27, 77, 218, 154, 244, 99, + 92, 181, 232, 66, 114, 8, 27, 237, 130, 8, 227, 20, 175, 210, 72, 67, 88, 8, 50, 27, 239, 175, 222, 115, 190, 106, + 39, 194, 65, 144, 255, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 216, 124, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 250, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1547, + "sample": { + "_tag": "ByteArray", + "bytearray": "1b0c" + }, + "cborHex": "421b0c", + "cborBytes": [66, 27, 12], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1548, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68e1b1a5c4da7c8eff9971" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "040106" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9179ddd77ae67268ef356f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23cd97c1ed" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd34d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + } + ] + }, + "cborHex": "bf09a04b68e1b1a5c4da7c8eff9971430401064b9179ddd77ae67268ef356f4523cd97c1ed43cd34d41bfffffffffffffff8ff", + "cborBytes": [ + 191, 9, 160, 75, 104, 225, 177, 165, 196, 218, 124, 142, 255, 153, 113, 67, 4, 1, 6, 75, 145, 121, 221, 215, 122, + 230, 114, 104, 239, 53, 111, 69, 35, 205, 151, 193, 237, 67, 205, 52, 212, 27, 255, 255, 255, 255, 255, 255, 255, + 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1549, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d204b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12386035891163256527" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7127362206719543101" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8486022744747575808" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4858018024275963305" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5270013621829347801" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a0cc5ba70af0dc4328c0c63" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6690709710565005568" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12573555914129569037" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11910730780073050642" + } + } + } + ] + }, + "cborHex": "bf039f43d204b80b1babe40a04dc0656cfff10d8669f1b62e97a2a2510073d9f1b75c468b9b8908a001b436b25a77969eda91b4922d977a29ba9d94c8a0cc5ba70af0dc4328c0c63ffff1b5cda2d08697bd900801bae7e3e7c8134750d801bfffffffffffffff91ba54b6a89e990c212ff", + "cborBytes": [ + 191, 3, 159, 67, 210, 4, 184, 11, 27, 171, 228, 10, 4, 220, 6, 86, 207, 255, 16, 216, 102, 159, 27, 98, 233, 122, + 42, 37, 16, 7, 61, 159, 27, 117, 196, 104, 185, 184, 144, 138, 0, 27, 67, 107, 37, 167, 121, 105, 237, 169, 27, + 73, 34, 217, 119, 162, 155, 169, 217, 76, 138, 12, 197, 186, 112, 175, 13, 196, 50, 140, 12, 99, 255, 255, 27, 92, + 218, 45, 8, 105, 123, 217, 0, 128, 27, 174, 126, 62, 124, 129, 52, 117, 13, 128, 27, 255, 255, 255, 255, 255, 255, + 255, 249, 27, 165, 75, 106, 137, 233, 144, 194, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1550, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9fcfbfe" + }, + "cborHex": "44f9fcfbfe", + "cborBytes": [68, 249, 252, 251, 254], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1551, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14058623338571999475" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a4b3ccc" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16005967118564389411" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11872991188271628670" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2208835402491370972" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5943390548451242000" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c8282d38b66d10" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16891120089559024430" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17696342141470232299" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c9fb7101" + }, + { + "_tag": "ByteArray", + "bytearray": "323637" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16076301387021455318" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "29" + }, + { + "_tag": "ByteArray", + "bytearray": "339053e0edd389" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14947468472514708677" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3392040963140986113" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "809808531125774074" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "be02951849" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6308801829161976857" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7d8747d8b97a73e2b33d4ad4" + }, + { + "_tag": "ByteArray", + "bytearray": "844dcc96c6879a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d6b88b13e0ea77" + }, + { + "_tag": "ByteArray", + "bytearray": "5349d9607f42" + }, + { + "_tag": "ByteArray", + "bytearray": "841cb56dec333a7ed084" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7050240455459575117" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b61c57778f8a00f434" + } + ] + } + ] + } + ] + }, + "cborHex": "d87b9fbf1bc31a4370ce99a8f3448a4b3cccff9fd8669f1bde209e4a849cf2239f1ba4c556947646017e1b1ea75c187cce1ddcffff80ffd8669f1b527b2a36e1d9b01080ff47c8282d38b66d10d8669f1bea69503a7ca1432e9fd8669f1bf596096b1e1bceeb9f44c9fb710143323637ffffd8669f1bdf1a7eef83888fd69f412947339053e0edd389ffffd8669f1bcf701361739704c59f1b2f12f348bf97a501ffffd8669f1b0b3d049189d526fa9f45be029518491b578d5dd69188c4194c7d8747d8b97a73e2b33d4ad447844dcc96c6879affff9f47d6b88b13e0ea77465349d9607f424a841cb56dec333a7ed0841b61d77c5728c1954d49b61c57778f8a00f434ffffffff", + "cborBytes": [ + 216, 123, 159, 191, 27, 195, 26, 67, 112, 206, 153, 168, 243, 68, 138, 75, 60, 204, 255, 159, 216, 102, 159, 27, + 222, 32, 158, 74, 132, 156, 242, 35, 159, 27, 164, 197, 86, 148, 118, 70, 1, 126, 27, 30, 167, 92, 24, 124, 206, + 29, 220, 255, 255, 128, 255, 216, 102, 159, 27, 82, 123, 42, 54, 225, 217, 176, 16, 128, 255, 71, 200, 40, 45, 56, + 182, 109, 16, 216, 102, 159, 27, 234, 105, 80, 58, 124, 161, 67, 46, 159, 216, 102, 159, 27, 245, 150, 9, 107, 30, + 27, 206, 235, 159, 68, 201, 251, 113, 1, 67, 50, 54, 55, 255, 255, 216, 102, 159, 27, 223, 26, 126, 239, 131, 136, + 143, 214, 159, 65, 41, 71, 51, 144, 83, 224, 237, 211, 137, 255, 255, 216, 102, 159, 27, 207, 112, 19, 97, 115, + 151, 4, 197, 159, 27, 47, 18, 243, 72, 191, 151, 165, 1, 255, 255, 216, 102, 159, 27, 11, 61, 4, 145, 137, 213, + 38, 250, 159, 69, 190, 2, 149, 24, 73, 27, 87, 141, 93, 214, 145, 136, 196, 25, 76, 125, 135, 71, 216, 185, 122, + 115, 226, 179, 61, 74, 212, 71, 132, 77, 204, 150, 198, 135, 154, 255, 255, 159, 71, 214, 184, 139, 19, 224, 234, + 119, 70, 83, 73, 217, 96, 127, 66, 74, 132, 28, 181, 109, 236, 51, 58, 126, 208, 132, 27, 97, 215, 124, 87, 40, + 193, 149, 77, 73, 182, 28, 87, 119, 143, 138, 0, 244, 52, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1552, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "801b89c5aede619d8b2d67a1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10ccb4db4607af4fe0fd2429" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ed3675cd6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1667b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7864335537239544445" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bdcc5a2a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15969617987060647428" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c8af7cf40b459de3a7468" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "964d21" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b44" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c174cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df1ba8cd31" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1453088007773387023" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13183878510783372537" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "545e97f4ee79b3a6c4bf42" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7335536381898436790" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9431264672328571633" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3213018740649645697" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17347510826242805286" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ecc677cf1bac" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10455133401985239179" + } + }, + { + "_tag": "ByteArray", + "bytearray": "480875d2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04cf83002bf0529955204d42" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16478347987712466188" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16842474472278203131" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17775020266309320870" + } + } + ] + }, + "cborHex": "9f4c801b89c5aede619d8b2d67a1bf4c10ccb4db4607af4fe0fd2429452ed3675cd6431667b01b6d23bb810ba4d27d453bdcc5a2a61bdd9f7af2d57046044b4c8af7cf40b459de3a746843964d21427b4443c174cd45df1ba8cd311b142a67d822b6790fff9fd8669f1bb6f68ba785261cf99f4b545e97f4ee79b3a6c4bf421b65cd0f795802b0b61b82e2954020d5daf11b2c96ef85751856811bf0bebd2f77720e26ffff9f46ecc677cf1bac1b9118186f78a6c88b44480875d2ff9f4c04cf83002bf0529955204d421be4aeda3054dfdd0c1be9bc7d4c1aba1afbffff1bf6ad8ec190bc80a6ff", + "cborBytes": [ + 159, 76, 128, 27, 137, 197, 174, 222, 97, 157, 139, 45, 103, 161, 191, 76, 16, 204, 180, 219, 70, 7, 175, 79, 224, + 253, 36, 41, 69, 46, 211, 103, 92, 214, 67, 22, 103, 176, 27, 109, 35, 187, 129, 11, 164, 210, 125, 69, 59, 220, + 197, 162, 166, 27, 221, 159, 122, 242, 213, 112, 70, 4, 75, 76, 138, 247, 207, 64, 180, 89, 222, 58, 116, 104, 67, + 150, 77, 33, 66, 123, 68, 67, 193, 116, 205, 69, 223, 27, 168, 205, 49, 27, 20, 42, 103, 216, 34, 182, 121, 15, + 255, 159, 216, 102, 159, 27, 182, 246, 139, 167, 133, 38, 28, 249, 159, 75, 84, 94, 151, 244, 238, 121, 179, 166, + 196, 191, 66, 27, 101, 205, 15, 121, 88, 2, 176, 182, 27, 130, 226, 149, 64, 32, 213, 218, 241, 27, 44, 150, 239, + 133, 117, 24, 86, 129, 27, 240, 190, 189, 47, 119, 114, 14, 38, 255, 255, 159, 70, 236, 198, 119, 207, 27, 172, + 27, 145, 24, 24, 111, 120, 166, 200, 139, 68, 72, 8, 117, 210, 255, 159, 76, 4, 207, 131, 0, 43, 240, 82, 153, 85, + 32, 77, 66, 27, 228, 174, 218, 48, 84, 223, 221, 12, 27, 233, 188, 125, 76, 26, 186, 26, 251, 255, 255, 27, 246, + 173, 142, 193, 144, 188, 128, 166, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1553, + "sample": { + "_tag": "ByteArray", + "bytearray": "2a0407" + }, + "cborHex": "432a0407", + "cborBytes": [67, 42, 4, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1554, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a3ce1541a76e068e8e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "688cb7412db6da82a3557312" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14006687677832581521" + }, + "fields": [] + } + ] + }, + "cborHex": "d87f9fbf4a8a3ce1541a76e068e8e74c688cb7412db6da82a3557312ffd8669f1bc261c03b7d0d519180ffff", + "cborBytes": [ + 216, 127, 159, 191, 74, 138, 60, 225, 84, 26, 118, 224, 104, 232, 231, 76, 104, 140, 183, 65, 45, 182, 218, 130, + 163, 85, 115, 18, 255, 216, 102, 159, 27, 194, 97, 192, 59, 125, 13, 81, 145, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1555, + "sample": { + "_tag": "ByteArray", + "bytearray": "e6984e" + }, + "cborHex": "43e6984e", + "cborBytes": [67, 230, 152, 78], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1556, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ff8ba9ab038f6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8750865614727729868" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f534a5a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9837184838511831462" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "598971b6b0c8624f2e13" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8032776806356566119" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4421926287475321761" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10069168275422917567" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4401123661846243112" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14946309578265492840" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8ebf88d0f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15920437717325004636" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4518033185890526978" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a4d4857ae5c4f122822ab60" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b7cd0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11805505512548326600" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da6ab38895e5b17c576438" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f297682e321717d048" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d81b32ecc92937c7c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdfb20f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10067287415317696733" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf474ff8ba9ab038f6bf1b797151e99b06d2cc441f534a5a1b8884b37db15b29a641a0ff4a598971b6b0c8624f2e13bf1b6f7a27f226e140671b3d5dd687b3edaba11b8bbcdf32a03733bf1b3d13eea6fce967281bcf6bf55f5b887d6845e8ebf88d0f1bdcf0c1c0f9e33f5c1b3eb3473eb86e6702ff4c7a4d4857ae5c4f122822ab60bf430b7cd01ba3d594b7255bdcc84bda6ab38895e5b17c576438412f49f297682e321717d048499d81b32ecc92937c7c44fdfb20f61b8bb63090c1c590ddffff", + "cborBytes": [ + 191, 71, 79, 248, 186, 154, 176, 56, 246, 191, 27, 121, 113, 81, 233, 155, 6, 210, 204, 68, 31, 83, 74, 90, 27, + 136, 132, 179, 125, 177, 91, 41, 166, 65, 160, 255, 74, 89, 137, 113, 182, 176, 200, 98, 79, 46, 19, 191, 27, 111, + 122, 39, 242, 38, 225, 64, 103, 27, 61, 93, 214, 135, 179, 237, 171, 161, 27, 139, 188, 223, 50, 160, 55, 51, 191, + 27, 61, 19, 238, 166, 252, 233, 103, 40, 27, 207, 107, 245, 95, 91, 136, 125, 104, 69, 232, 235, 248, 141, 15, 27, + 220, 240, 193, 192, 249, 227, 63, 92, 27, 62, 179, 71, 62, 184, 110, 103, 2, 255, 76, 122, 77, 72, 87, 174, 92, + 79, 18, 40, 34, 171, 96, 191, 67, 11, 124, 208, 27, 163, 213, 148, 183, 37, 91, 220, 200, 75, 218, 106, 179, 136, + 149, 229, 177, 124, 87, 100, 56, 65, 47, 73, 242, 151, 104, 46, 50, 23, 23, 208, 72, 73, 157, 129, 179, 46, 204, + 146, 147, 124, 124, 68, 253, 251, 32, 246, 27, 139, 182, 48, 144, 193, 197, 144, 221, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1557, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d413e4e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d23bc747d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6a0e3c54219bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30e4e307" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a157a656b44aca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7b36a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b77278174f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1611449050092893132" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18123082537145166842" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf44d413e4e3459d23bc747d47f6a0e3c54219bb4430e4e307ffbf47a157a656b44aca43f7b36a45b77278174f1b165d045f8c6d73cc42ea121bfb821f8c1d9f6bfaffffff", + "cborBytes": [ + 159, 159, 191, 68, 212, 19, 228, 227, 69, 157, 35, 188, 116, 125, 71, 246, 160, 227, 197, 66, 25, 187, 68, 48, + 228, 227, 7, 255, 191, 71, 161, 87, 166, 86, 180, 74, 202, 67, 247, 179, 106, 69, 183, 114, 120, 23, 79, 27, 22, + 93, 4, 95, 140, 109, 115, 204, 66, 234, 18, 27, 251, 130, 31, 140, 29, 159, 107, 250, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1558, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15606331093901403054" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "796618869336250712" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25427c6cf1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a55af1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2095007118795761890" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9439744703466992412" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bd894d371ab2063ae9f9fbf1b0b0e28a4182919584525427c6cf143a55af11b1d12f5dfedbc68e2ff1b8300b5cb3c86731cff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 216, 148, 211, 113, 171, 32, 99, 174, 159, 159, 191, 27, 11, 14, 40, 164, 24, 41, 25, 88, 69, + 37, 66, 124, 108, 241, 67, 165, 90, 241, 27, 29, 18, 245, 223, 237, 188, 104, 226, 255, 27, 131, 0, 181, 203, 60, + 134, 115, 28, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1559, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10964655701511557863" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14730007696164745828" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "58327b1ed2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9759673926384392625" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7917844253433256350" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2830387768222055094" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16748368638371016231" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3019529116645294750" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcefab22e3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3200130778039022608" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15785175508578941485" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11242735885528439872" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "915e2d916445b5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16959988743038045038" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8efa038ebe8d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fce3440e145" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1810581821983559228" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd08be6bc83e86614b15cb73" + } + } + ] + } + ] + }, + "cborHex": "9f1b982a48446d0ed2e7d8669f1bcc6b7ff4ecab72649f4558327b1ed2d8669f1b877153ba21c899b19f1b6de1d565e0c1d99effffffffbf1b27478eaddd7c7ab61be86e288a3965ae271b29e785bbc297829e45fcefab22e31b2c6925fcd3cf74101bdb10357dda0b3a2d1b9c0638b8a8759c4047915e2d916445b51beb5dfbe767680b6e468efa038ebe8dffbf466fce3440e1451b19207a93001c0e3c41764ccd08be6bc83e86614b15cb73ffff", + "cborBytes": [ + 159, 27, 152, 42, 72, 68, 109, 14, 210, 231, 216, 102, 159, 27, 204, 107, 127, 244, 236, 171, 114, 100, 159, 69, + 88, 50, 123, 30, 210, 216, 102, 159, 27, 135, 113, 83, 186, 33, 200, 153, 177, 159, 27, 109, 225, 213, 101, 224, + 193, 217, 158, 255, 255, 255, 255, 191, 27, 39, 71, 142, 173, 221, 124, 122, 182, 27, 232, 110, 40, 138, 57, 101, + 174, 39, 27, 41, 231, 133, 187, 194, 151, 130, 158, 69, 252, 239, 171, 34, 227, 27, 44, 105, 37, 252, 211, 207, + 116, 16, 27, 219, 16, 53, 125, 218, 11, 58, 45, 27, 156, 6, 56, 184, 168, 117, 156, 64, 71, 145, 94, 45, 145, 100, + 69, 181, 27, 235, 93, 251, 231, 103, 104, 11, 110, 70, 142, 250, 3, 142, 190, 141, 255, 191, 70, 111, 206, 52, 64, + 225, 69, 27, 25, 32, 122, 147, 0, 28, 14, 60, 65, 118, 76, 205, 8, 190, 107, 200, 62, 134, 97, 75, 21, 203, 115, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1560, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3840420827682808651" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f657535c879a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1618330315927597375" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59094d8e03d44f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6680cc45c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7379" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5a5f4883888da33" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f361fb12cdb1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fff1f6af35d1cfe7f91c920" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4306415850536373320" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "20a04cee" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b354bea65360ba34b9fbf473f657535c879a81b167576d91a1c313f4759094d8e03d44f456680cc45c542737948d5a5f4883888da3346f361fb12cdb14c6fff1f6af35d1cfe7f91c920ffd8669f1b3bc3766652550c489f4420a04ceeffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 53, 75, 234, 101, 54, 11, 163, 75, 159, 191, 71, 63, 101, 117, 53, 200, 121, 168, 27, 22, + 117, 118, 217, 26, 28, 49, 63, 71, 89, 9, 77, 142, 3, 212, 79, 69, 102, 128, 204, 69, 197, 66, 115, 121, 72, 213, + 165, 244, 136, 56, 136, 218, 51, 70, 243, 97, 251, 18, 205, 177, 76, 111, 255, 31, 106, 243, 93, 28, 254, 127, + 145, 201, 32, 255, 216, 102, 159, 27, 59, 195, 118, 102, 82, 85, 12, 72, 159, 68, 32, 160, 76, 238, 255, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1561, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "63eaf6defe479dc9c730bc" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18205710600398548701" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2638e02ab7e1" + } + ] + } + } + ] + }, + "cborHex": "bf4b63eaf6defe479dc9c730bcd8669f1bfca7ad554451aedd9f462638e02ab7e1ffffff", + "cborBytes": [ + 191, 75, 99, 234, 246, 222, 254, 71, 157, 201, 199, 48, 188, 216, 102, 159, 27, 252, 167, 173, 85, 68, 81, 174, + 221, 159, 70, 38, 56, 224, 42, 183, 225, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1562, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18185135775419238184" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14501623719857688602" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11701730930111910844" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5ff19760" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d82ed4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dddd3475c853f1d10846" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e26d8e457daae015fca19a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5052335633021702143" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4473f8f6cf8631d786c27a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b501827cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11410285860928737946" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c82f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e26e128357" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12365397385423617836" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a23fdf87ab66" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7856831635065626156" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14913006747045016667" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10642197281331530489" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49f87a47" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c71903598a2d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "344091fdf71c31cd6b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d2b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a78cd0f1" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfc5e94a3861c87289f1bc9401df0b87f101a9f1ba264e648528593bca0445ff19760bf43d82ed44adddd3475c853f1d10846ffff4be26d8e457daae015fca19a9fbf1b461d807d644e8fff4b4473f8f6cf8631d786c27a453b501827cc1b9e597a894651d29a42c82f45e26e128357ffd8669f1bab9ab76848b7ff2c9f46a23fdf87ab66ffffffbf1b6d0912beac235e2c1bcef5a49fba9f345b1b93b0ae0ae764caf94449f87a47475c71903598a2d849344091fdf71c31cd6b429d2b44a78cd0f1ffffff", + "cborBytes": [ + 216, 102, 159, 27, 252, 94, 148, 163, 134, 28, 135, 40, 159, 27, 201, 64, 29, 240, 184, 127, 16, 26, 159, 27, 162, + 100, 230, 72, 82, 133, 147, 188, 160, 68, 95, 241, 151, 96, 191, 67, 216, 46, 212, 74, 221, 221, 52, 117, 200, 83, + 241, 209, 8, 70, 255, 255, 75, 226, 109, 142, 69, 125, 170, 224, 21, 252, 161, 154, 159, 191, 27, 70, 29, 128, + 125, 100, 78, 143, 255, 75, 68, 115, 248, 246, 207, 134, 49, 215, 134, 194, 122, 69, 59, 80, 24, 39, 204, 27, 158, + 89, 122, 137, 70, 81, 210, 154, 66, 200, 47, 69, 226, 110, 18, 131, 87, 255, 216, 102, 159, 27, 171, 154, 183, + 104, 72, 183, 255, 44, 159, 70, 162, 63, 223, 135, 171, 102, 255, 255, 255, 191, 27, 109, 9, 18, 190, 172, 35, 94, + 44, 27, 206, 245, 164, 159, 186, 159, 52, 91, 27, 147, 176, 174, 10, 231, 100, 202, 249, 68, 73, 248, 122, 71, 71, + 92, 113, 144, 53, 152, 162, 216, 73, 52, 64, 145, 253, 247, 28, 49, 205, 107, 66, 157, 43, 68, 167, 140, 208, 241, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1563, + "sample": { + "_tag": "ByteArray", + "bytearray": "defedf938a7fb1" + }, + "cborHex": "47defedf938a7fb1", + "cborBytes": [71, 222, 254, 223, 147, 138, 127, 177], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1564, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2216227109098343134" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10356189496400567463" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11467250213830679471" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2da47b5f7ec96105d986a6c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14727676876197164215" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11128662461377221592" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13147093682956132812" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17ec" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12321382006658764101" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5014436797419817373" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64" + }, + { + "_tag": "ByteArray", + "bytearray": "18ac7d58f29920cfb4e6f23a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8627714493260014437" + } + }, + { + "_tag": "ByteArray", + "bytearray": "649cd1ccb248e75e9b6d22" + } + ] + } + } + ] + }, + "cborHex": "bf1b1ec19ed04b65cadebf1b8fb8937a3f965ca71b9f23db5039e65baf4c2da47b5f7ec96105d986a6c41bcc6338169c7774b7ff1b9a70f38be39d13d89f1bb673dc0c6161e1cc4217ecff1baafe57a750c90d459f1b4596dbb31adb099d41644c18ac7d58f29920cfb4e6f23a1b77bbcc9eba40a3654b649cd1ccb248e75e9b6d22ffff", + "cborBytes": [ + 191, 27, 30, 193, 158, 208, 75, 101, 202, 222, 191, 27, 143, 184, 147, 122, 63, 150, 92, 167, 27, 159, 35, 219, + 80, 57, 230, 91, 175, 76, 45, 164, 123, 95, 126, 201, 97, 5, 217, 134, 166, 196, 27, 204, 99, 56, 22, 156, 119, + 116, 183, 255, 27, 154, 112, 243, 139, 227, 157, 19, 216, 159, 27, 182, 115, 220, 12, 97, 97, 225, 204, 66, 23, + 236, 255, 27, 170, 254, 87, 167, 80, 201, 13, 69, 159, 27, 69, 150, 219, 179, 26, 219, 9, 157, 65, 100, 76, 24, + 172, 125, 88, 242, 153, 32, 207, 180, 230, 242, 58, 27, 119, 187, 204, 158, 186, 64, 163, 101, 75, 100, 156, 209, + 204, 178, 72, 231, 94, 155, 109, 34, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1565, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "008505ba8ae748bf34a1b9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10316044227452659522" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17131828356448479469" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4267610860215989828" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2943d0" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32c07cfd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7288197278394952834" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1421561029485666015" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14057347654558448453" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1787900173738762841" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10324931807868008341" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5442322287129281322" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18107893857123112067" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7301520328014988813" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e50ca74ee6825f130d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18319294425475249573" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "688b6ef5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6028793932342960795" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9136989787394969948" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3147801745785864662" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bf5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "edaadc5a4bded7cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "895e084b827d0d93faedc2b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af" + } + } + ] + }, + "cborHex": "bf4b008505ba8ae748bf34a1b99f1b8f29f3917088e7421bedc07b1f331368ed1b3b39997772c5f644432943d0ff4432c07cfd1b6524e0cf67b32c82414fbf1b13ba66397d081edf1bc315bb367a207b451b18cfe5bc3d8ee2591b8f4986c6821ab7951b4b8703491588432a1bfb4c2985f84d14831b6554360d9fa0860d49e50ca74ee6825f130d1bfe3b35385e3ef5a5411cff44688b6ef59f1b53aa9423b955229b1b7ecd1bcd420c915c1b2baf3d0290ebc1d6ff426bf548edaadc5a4bded7cd4c895e084b827d0d93faedc2b641afff", + "cborBytes": [ + 191, 75, 0, 133, 5, 186, 138, 231, 72, 191, 52, 161, 185, 159, 27, 143, 41, 243, 145, 112, 136, 231, 66, 27, 237, + 192, 123, 31, 51, 19, 104, 237, 27, 59, 57, 153, 119, 114, 197, 246, 68, 67, 41, 67, 208, 255, 68, 50, 192, 124, + 253, 27, 101, 36, 224, 207, 103, 179, 44, 130, 65, 79, 191, 27, 19, 186, 102, 57, 125, 8, 30, 223, 27, 195, 21, + 187, 54, 122, 32, 123, 69, 27, 24, 207, 229, 188, 61, 142, 226, 89, 27, 143, 73, 134, 198, 130, 26, 183, 149, 27, + 75, 135, 3, 73, 21, 136, 67, 42, 27, 251, 76, 41, 133, 248, 77, 20, 131, 27, 101, 84, 54, 13, 159, 160, 134, 13, + 73, 229, 12, 167, 78, 230, 130, 95, 19, 13, 27, 254, 59, 53, 56, 94, 62, 245, 165, 65, 28, 255, 68, 104, 139, 110, + 245, 159, 27, 83, 170, 148, 35, 185, 85, 34, 155, 27, 126, 205, 27, 205, 66, 12, 145, 92, 27, 43, 175, 61, 2, 144, + 235, 193, 214, 255, 66, 107, 245, 72, 237, 170, 220, 90, 75, 222, 215, 205, 76, 137, 94, 8, 75, 130, 125, 13, 147, + 250, 237, 194, 182, 65, 175, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1566, + "sample": { + "_tag": "ByteArray", + "bytearray": "0718" + }, + "cborHex": "420718", + "cborBytes": [66, 7, 24], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1567, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "52" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6562038936064419226" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6447992016678004756" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9fefc05144965315" + }, + { + "_tag": "ByteArray", + "bytearray": "61fb654da5563796" + }, + { + "_tag": "ByteArray", + "bytearray": "19f73047390e5af0d6ede8" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3862617474924986610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4759450912851261178" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e8829aa7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17464442681148769822" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9257208303610325582" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4894573996313957282" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f989" + } + ] + }, + "cborHex": "d905059f41529fd8669f1b5b110ba52a66e59a9f1b597bde9384a5a814489fefc051449653154861fb654da55637964b19f73047390e5af0d6ede8ffffd8669f1b359ac620e01ec0f29f1b420cf7637a6876fa44e8829aa71bf25e2a16820b061effff1b807835e7c47d6a4effd8669f1b43ed051df92853a280ff42f989ff", + "cborBytes": [ + 217, 5, 5, 159, 65, 82, 159, 216, 102, 159, 27, 91, 17, 11, 165, 42, 102, 229, 154, 159, 27, 89, 123, 222, 147, + 132, 165, 168, 20, 72, 159, 239, 192, 81, 68, 150, 83, 21, 72, 97, 251, 101, 77, 165, 86, 55, 150, 75, 25, 247, + 48, 71, 57, 14, 90, 240, 214, 237, 232, 255, 255, 216, 102, 159, 27, 53, 154, 198, 32, 224, 30, 192, 242, 159, 27, + 66, 12, 247, 99, 122, 104, 118, 250, 68, 232, 130, 154, 167, 27, 242, 94, 42, 22, 130, 11, 6, 30, 255, 255, 27, + 128, 120, 53, 231, 196, 125, 106, 78, 255, 216, 102, 159, 27, 67, 237, 5, 29, 249, 40, 83, 162, 128, 255, 66, 249, + 137, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1568, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2255e46d659cc9ab287752" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9eab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1219482319124977562" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e88b514c135162a040db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0390018fa2b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + }, + "cborHex": "9f4b2255e46d659cc9ab287752bf429eab1b10ec78b54950579a4ae88b514c135162a040db46f0390018fa2bff03ff", + "cborBytes": [ + 159, 75, 34, 85, 228, 109, 101, 156, 201, 171, 40, 119, 82, 191, 66, 158, 171, 27, 16, 236, 120, 181, 73, 80, 87, + 154, 74, 232, 139, 81, 76, 19, 81, 98, 160, 64, 219, 70, 240, 57, 0, 24, 250, 43, 255, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1569, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16418387350799591234" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "d8669f1be3d9d44ea52d27429f0effff", + "cborBytes": [216, 102, 159, 27, 227, 217, 212, 78, 165, 45, 39, 66, 159, 14, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1570, + "sample": { + "_tag": "ByteArray", + "bytearray": "0305227bfbfbfafb" + }, + "cborHex": "480305227bfbfbfafb", + "cborBytes": [72, 3, 5, 34, 123, 251, 251, 250, 251], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1571, + "sample": { + "_tag": "ByteArray", + "bytearray": "7e7ce4f8e97f5b1b25" + }, + "cborHex": "497e7ce4f8e97f5b1b25", + "cborBytes": [73, 126, 124, 228, 248, 233, 127, 91, 27, 37], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1572, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ffd39b6ce60" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3269324156829102150" + } + } + } + ] + }, + "cborHex": "bf469ffd39b6ce601b2d5ef8ffbf66f046ff", + "cborBytes": [191, 70, 159, 253, 57, 182, 206, 96, 27, 45, 94, 248, 255, 191, 102, 240, 70, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1573, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6048261148167895389" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7dbffcc028738d4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13425094365572183073" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "751164c453" + } + } + ] + }, + "cborHex": "bf1b53efbd781d57f95d48a7dbffcc028738d41bba4f84324007342145751164c453ff", + "cborBytes": [ + 191, 27, 83, 239, 189, 120, 29, 87, 249, 93, 72, 167, 219, 255, 204, 2, 135, 56, 212, 27, 186, 79, 132, 50, 64, 7, + 52, 33, 69, 117, 17, 100, 196, 83, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1574, + "sample": { + "_tag": "ByteArray", + "bytearray": "06ce2801" + }, + "cborHex": "4406ce2801", + "cborBytes": [68, 6, 206, 40, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1575, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1998604137789289020" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "525074152790554641" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4cf6ca5f067de" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1bbc77dfcf8e723c9f1b07497028f5d1f81147e4cf6ca5f067deffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 27, 188, 119, 223, 207, 142, 114, 60, 159, 27, 7, 73, 112, 40, 245, 209, 248, 17, 71, 228, + 207, 108, 165, 240, 103, 222, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1576, + "sample": { + "_tag": "ByteArray", + "bytearray": "fcaf1a" + }, + "cborHex": "43fcaf1a", + "cborBytes": [67, 252, 175, 26], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1577, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "265e94c4ff06668073b9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd54262c35" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7519629443274383973" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7132a557" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11140214850155783676" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6b444fd9779927864dfdf" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bde3b121" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13692220480083425091" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a7e9b0beaff5e05c2ac" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be677899f623" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11257333081894062254" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc4c6493a93215baca" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8047586379306692381" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17484208320585144916" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11760933502517670300" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12395837099458873529" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13457564041903100591" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3a5828147" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a265e94c4ff06668073b9bf45fd54262c351b685b172350f02265ff447132a5571b9a99fe62011125fc4ba6b444fd9779927864dfdf8044bde3b121bf1bbe0489fb6db377434a9a7e9b0beaff5e05c2acff46be677899f6231b9c3a14cb488c88ae49cc4c6493a93215bacabf1b6faec52c8dd8ef1d1bf2a462d50f681a541ba3373ab55c8e719c1bac06dc2a7edac8b91bbac2df31e3b452af45e3a5828147ffff", + "cborBytes": [ + 191, 74, 38, 94, 148, 196, 255, 6, 102, 128, 115, 185, 191, 69, 253, 84, 38, 44, 53, 27, 104, 91, 23, 35, 80, 240, + 34, 101, 255, 68, 113, 50, 165, 87, 27, 154, 153, 254, 98, 1, 17, 37, 252, 75, 166, 180, 68, 253, 151, 121, 146, + 120, 100, 223, 223, 128, 68, 189, 227, 177, 33, 191, 27, 190, 4, 137, 251, 109, 179, 119, 67, 74, 154, 126, 155, + 11, 234, 255, 94, 5, 194, 172, 255, 70, 190, 103, 120, 153, 246, 35, 27, 156, 58, 20, 203, 72, 140, 136, 174, 73, + 204, 76, 100, 147, 169, 50, 21, 186, 202, 191, 27, 111, 174, 197, 44, 141, 216, 239, 29, 27, 242, 164, 98, 213, + 15, 104, 26, 84, 27, 163, 55, 58, 181, 92, 142, 113, 156, 27, 172, 6, 220, 42, 126, 218, 200, 185, 27, 186, 194, + 223, 49, 227, 180, 82, 175, 69, 227, 165, 130, 129, 71, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1578, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "317155438948681417" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "51bf0a6428c4b2ead3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4589780220297855570" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a234e7a0b0e040cced432653" + }, + { + "_tag": "ByteArray", + "bytearray": "13c98063abcc8da6a7ad" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1373484106866197446" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18387178081025757287" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "506364158241028365" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2333646569726213803" + } + }, + { + "_tag": "ByteArray", + "bytearray": "688328" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3051953380471416260" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a35014f66f2d5a75acbae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "121231387904462744" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f9b10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6085374998761413772" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6937b5732fcb9d29635073fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2227eebaab5e508" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5feac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b66" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbc9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12681704417861195247" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3181570166933157902" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2143832425639797522" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4133281450218171461" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14785758922215361350" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f76e2815fc76d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5429164339245830027" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9b772a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7229071883969649400" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5386182536232231216" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ba57130479" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12717835016741706202" + } + }, + { + "_tag": "ByteArray", + "bytearray": "efe314283eb3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10517993015673333010" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0466c330fd1e86c99f4951bf0a6428c4b2ead31b3fb22ccaebf7c2524ca234e7a0b0e040cced4326534a13c98063abcc8da6a7adff1b130f9884a66783c6d8669f1bff2c610b956390679f1b0706f784e2f2390d1b2062c730e3d6feab43688328ffff1b2a5ab76dfa0d25c4bf4b1a35014f66f2d5a75acbae1b01aeb34e13ac4f98435f9b101b54739851d6379c8c4c6937b5732fcb9d29635073fc48e2227eebaab5e50843b5feac424b6642cbc91baffe76fa3d1e55efff1b2c273535cc07f80e1b1dc06c3b8c3963121b395c5d9474f72c459f1bcd319166c5358b4647f76e2815fc76d01b4b5844339bf74f8b439b772aff1b6452d293c3c65af8d8669f1b4abf907abf88e1309f45ba571304791bb07ed390d4e9d9da46efe314283eb31b91f76aebc93fa512ffffff", + "cborBytes": [ + 191, 27, 4, 102, 195, 48, 253, 30, 134, 201, 159, 73, 81, 191, 10, 100, 40, 196, 178, 234, 211, 27, 63, 178, 44, + 202, 235, 247, 194, 82, 76, 162, 52, 231, 160, 176, 224, 64, 204, 237, 67, 38, 83, 74, 19, 201, 128, 99, 171, 204, + 141, 166, 167, 173, 255, 27, 19, 15, 152, 132, 166, 103, 131, 198, 216, 102, 159, 27, 255, 44, 97, 11, 149, 99, + 144, 103, 159, 27, 7, 6, 247, 132, 226, 242, 57, 13, 27, 32, 98, 199, 48, 227, 214, 254, 171, 67, 104, 131, 40, + 255, 255, 27, 42, 90, 183, 109, 250, 13, 37, 196, 191, 75, 26, 53, 1, 79, 102, 242, 213, 167, 90, 203, 174, 27, 1, + 174, 179, 78, 19, 172, 79, 152, 67, 95, 155, 16, 27, 84, 115, 152, 81, 214, 55, 156, 140, 76, 105, 55, 181, 115, + 47, 203, 157, 41, 99, 80, 115, 252, 72, 226, 34, 126, 235, 170, 181, 229, 8, 67, 181, 254, 172, 66, 75, 102, 66, + 203, 201, 27, 175, 254, 118, 250, 61, 30, 85, 239, 255, 27, 44, 39, 53, 53, 204, 7, 248, 14, 27, 29, 192, 108, 59, + 140, 57, 99, 18, 27, 57, 92, 93, 148, 116, 247, 44, 69, 159, 27, 205, 49, 145, 102, 197, 53, 139, 70, 71, 247, + 110, 40, 21, 252, 118, 208, 27, 75, 88, 68, 51, 155, 247, 79, 139, 67, 155, 119, 42, 255, 27, 100, 82, 210, 147, + 195, 198, 90, 248, 216, 102, 159, 27, 74, 191, 144, 122, 191, 136, 225, 48, 159, 69, 186, 87, 19, 4, 121, 27, 176, + 126, 211, 144, 212, 233, 217, 218, 70, 239, 227, 20, 40, 62, 179, 27, 145, 247, 106, 235, 201, 63, 165, 18, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1579, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3253961893381283153" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7122595235577423078" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7315221239703483492" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16977104545713735276" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b2d28651a0fa61d51d8669f1b62d88aa12f7b64e680ff1b6584e2f5b5eb3464d8669f1beb9acaa2c1efc66c80ffff", + "cborBytes": [ + 191, 27, 45, 40, 101, 26, 15, 166, 29, 81, 216, 102, 159, 27, 98, 216, 138, 161, 47, 123, 100, 230, 128, 255, 27, + 101, 132, 226, 245, 181, 235, 52, 100, 216, 102, 159, 27, 235, 154, 202, 162, 193, 239, 198, 108, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1580, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6002839172917497198" + } + } + ] + }, + "cborHex": "d9050d9f1b534e5e6c618c0d6eff", + "cborBytes": [217, 5, 13, 159, 27, 83, 78, 94, 108, 97, 140, 13, 110, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1581, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6539819555662355072" + } + }, + "cborHex": "1b5ac21b3c86685a80", + "cborBytes": [27, 90, 194, 27, 60, 134, 104, 90, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1582, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f4d534bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9400003962948836178" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1bc9a7b7e9b805cc85" + }, + { + "_tag": "ByteArray", + "bytearray": "5819d035df4e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16341877839230101987" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2210544104443741766" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16007816033163881375" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8425768377034577331" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10855365059786223585" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11434064281700918655" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0fa319f7f487a2fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12065008974016957430" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0805831" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f44f4d534bc1b827385cd0ad45b52491bc9a7b7e9b805cc85465819d035df4ed8669f1be2ca034fd22369e39fbf1b1ead6e26a9b406461bde272fde7e892b9f1b74ee57b280dd95b31b96a60101f7beafe11b9eadf4e249c3e57f480fa319f7f487a2fa1ba76f85bd1c2e4bf644c0805831ffffffff", + "cborBytes": [ + 159, 68, 244, 213, 52, 188, 27, 130, 115, 133, 205, 10, 212, 91, 82, 73, 27, 201, 167, 183, 233, 184, 5, 204, 133, + 70, 88, 25, 208, 53, 223, 78, 216, 102, 159, 27, 226, 202, 3, 79, 210, 35, 105, 227, 159, 191, 27, 30, 173, 110, + 38, 169, 180, 6, 70, 27, 222, 39, 47, 222, 126, 137, 43, 159, 27, 116, 238, 87, 178, 128, 221, 149, 179, 27, 150, + 166, 1, 1, 247, 190, 175, 225, 27, 158, 173, 244, 226, 73, 195, 229, 127, 72, 15, 163, 25, 247, 244, 135, 162, + 250, 27, 167, 111, 133, 189, 28, 46, 75, 246, 68, 192, 128, 88, 49, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1583, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10997138803095660580" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "17c957ab31b8eb81e909353f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bcdbdbb2e79cf02e42" + }, + { + "_tag": "ByteArray", + "bytearray": "56" + }, + { + "_tag": "ByteArray", + "bytearray": "59b05f79b2fe" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11552929253523595188" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0e04a02ffb61703e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13348461515068262107" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14114277090052067817" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "71" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "861cb24515bf617ee147" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2301306297287055958" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2668020821435503271" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a983c1ba" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bd10cc7ae861c0" + }, + { + "_tag": "ByteArray", + "bytearray": "282f915299c28ba8c8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b70d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d005d81cd751656" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8685aa85" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa40d924a37ce7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8138871148805357296" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b162b5faa8e572842a96" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17756953861285472890" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87e9fd8669f1b989daf79e02e68249f4c17c957ab31b8eb81e909353f9f49bcdbdbb2e79cf02e4241564659b05f79b2feffd8669f1ba0543ff22f7e1fb49f480e04a02ffb61703e1bb93f4306579dc6db1bc3dffc3b95fcd1e9ffff4171ffff4a861cb24515bf617ee147d8669f1b1fefe1e2712a1a569f1b2506b6cd230252a7a0ffff44a983c1ba9f47bd10cc7ae861c049282f915299c28ba8c89f42b70dffbf481d005d81cd751656448685aa8547aa40d924a37ce71b70f314303137fef04ab162b5faa8e572842a961bf66d5f74daebea7affffff", + "cborBytes": [ + 216, 126, 159, 216, 102, 159, 27, 152, 157, 175, 121, 224, 46, 104, 36, 159, 76, 23, 201, 87, 171, 49, 184, 235, + 129, 233, 9, 53, 63, 159, 73, 188, 219, 219, 178, 231, 156, 240, 46, 66, 65, 86, 70, 89, 176, 95, 121, 178, 254, + 255, 216, 102, 159, 27, 160, 84, 63, 242, 47, 126, 31, 180, 159, 72, 14, 4, 160, 47, 251, 97, 112, 62, 27, 185, + 63, 67, 6, 87, 157, 198, 219, 27, 195, 223, 252, 59, 149, 252, 209, 233, 255, 255, 65, 113, 255, 255, 74, 134, 28, + 178, 69, 21, 191, 97, 126, 225, 71, 216, 102, 159, 27, 31, 239, 225, 226, 113, 42, 26, 86, 159, 27, 37, 6, 182, + 205, 35, 2, 82, 167, 160, 255, 255, 68, 169, 131, 193, 186, 159, 71, 189, 16, 204, 122, 232, 97, 192, 73, 40, 47, + 145, 82, 153, 194, 139, 168, 200, 159, 66, 183, 13, 255, 191, 72, 29, 0, 93, 129, 205, 117, 22, 86, 68, 134, 133, + 170, 133, 71, 170, 64, 217, 36, 163, 124, 231, 27, 112, 243, 20, 48, 49, 55, 254, 240, 74, 177, 98, 181, 250, 168, + 229, 114, 132, 42, 150, 27, 246, 109, 95, 116, 218, 235, 234, 122, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1584, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2065f76c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b07f4d5cd48aaa5ef85e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3928656044551894250" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1e06675beddaac" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "379fc4559291d776" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15769083608808699105" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e8582962b71" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7642d78bcc143796baf804" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5a5548d886ead4574632e2d" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b398a34cfaef28" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5382668105248567335" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f20f01a0" + }, + { + "_tag": "ByteArray", + "bytearray": "f5e869d0e80e8165f6" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd9ae6a133261dc671b1a0e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b176a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2fc66405d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3432663012019332663" + } + } + } + ] + }, + "cborHex": "bf442065f76c9f4ab07f4d5cd48aaa5ef85e1b368563db8c34f4ea471e06675beddaacff48379fc4559291d7761bdad709fe787a34e1469e8582962b71bf4b7642d78bcc143796baf8044cf5a5548d886ead4574632e2dff47b398a34cfaef28d8669f1b4ab3141f852a70279f44f20f01a049f5e869d0e80e8165f6ffff4cdd9ae6a133261dc671b1a0e6438b176a45e2fc66405d1b2fa344d28908e637ff", + "cborBytes": [ + 191, 68, 32, 101, 247, 108, 159, 74, 176, 127, 77, 92, 212, 138, 170, 94, 248, 94, 27, 54, 133, 99, 219, 140, 52, + 244, 234, 71, 30, 6, 103, 91, 237, 218, 172, 255, 72, 55, 159, 196, 85, 146, 145, 215, 118, 27, 218, 215, 9, 254, + 120, 122, 52, 225, 70, 158, 133, 130, 150, 43, 113, 191, 75, 118, 66, 215, 139, 204, 20, 55, 150, 186, 248, 4, 76, + 245, 165, 84, 141, 136, 110, 173, 69, 116, 99, 46, 45, 255, 71, 179, 152, 163, 76, 250, 239, 40, 216, 102, 159, + 27, 74, 179, 20, 31, 133, 42, 112, 39, 159, 68, 242, 15, 1, 160, 73, 245, 232, 105, 208, 232, 14, 129, 101, 246, + 255, 255, 76, 221, 154, 230, 161, 51, 38, 29, 198, 113, 177, 160, 230, 67, 139, 23, 106, 69, 226, 252, 102, 64, + 93, 27, 47, 163, 68, 210, 137, 8, 230, 55, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1585, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18254963849970604724" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "897426291842127688" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12463655130677945312" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9924717482017093172" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8902369628046903703" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15253890986696648465" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16087920195570307335" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11856450179783927634" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10721804739374553935" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1bfd56a8e711185ab4bf1b0c744c75295897481bacf7cc4e5b08a3e01b89bbadf76bbcf6341b7b8b92028af649971bd3b0b508a89627111bdf43c62e2fcd1107ff1ba48a929ecf232752a0d8669f1b94cb809a99851b4f80ffff", + "cborBytes": [ + 159, 27, 253, 86, 168, 231, 17, 24, 90, 180, 191, 27, 12, 116, 76, 117, 41, 88, 151, 72, 27, 172, 247, 204, 78, + 91, 8, 163, 224, 27, 137, 187, 173, 247, 107, 188, 246, 52, 27, 123, 139, 146, 2, 138, 246, 73, 151, 27, 211, 176, + 181, 8, 168, 150, 39, 17, 27, 223, 67, 198, 46, 47, 205, 17, 7, 255, 27, 164, 138, 146, 158, 207, 35, 39, 82, 160, + 216, 102, 159, 27, 148, 203, 128, 154, 153, 133, 27, 79, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1586, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc03" + }, + "cborHex": "42fc03", + "cborBytes": [66, 252, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1587, + "sample": { + "_tag": "ByteArray", + "bytearray": "c36f23" + }, + "cborHex": "43c36f23", + "cborBytes": [67, 195, 111, 35], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1588, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1256755547353167920" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d2dfe56a3a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f50b43cc3feec7a52b" + } + ] + }, + "cborHex": "9fa0d8669f1b1170e483017cb8309f45d2dfe56a3affff49f50b43cc3feec7a52bff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 17, 112, 228, 131, 1, 124, 184, 48, 159, 69, 210, 223, 229, 106, 58, 255, 255, 73, + 245, 11, 67, 204, 63, 238, 199, 165, 43, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1589, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7485326411712827523" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7093491916367825143" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17716477121335952426" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8875054588786048994" + } + } + ] + }, + "cborHex": "9f1b67e138b665fe10831b62712550a43588f71bf5dd92137090842a1b7b2a87205ecaffe2ff", + "cborBytes": [ + 159, 27, 103, 225, 56, 182, 101, 254, 16, 131, 27, 98, 113, 37, 80, 164, 53, 136, 247, 27, 245, 221, 146, 19, 112, + 144, 132, 42, 27, 123, 42, 135, 32, 94, 202, 255, 226, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1590, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11973312543997133551" + } + }, + "cborHex": "1ba629c05249ad82ef", + "cborBytes": [27, 166, 41, 192, 82, 73, 173, 130, 239], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1591, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8220022413152410403" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11375605108192238105" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02cfe570d69ad0481a34162e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6247844527953772206" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1252295642614165474" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b28353209906cdfa7bef" + } + ] + } + } + ] + }, + "cborHex": "bf1b721362d54db2db23d8669f1b9dde44934aeada1980ff4c02cfe570d69ad0481a34162ed8669f1b56b4cd7ee48d7eae9f1b11610c4083c96fe24ab28353209906cdfa7befffffff", + "cborBytes": [ + 191, 27, 114, 19, 98, 213, 77, 178, 219, 35, 216, 102, 159, 27, 157, 222, 68, 147, 74, 234, 218, 25, 128, 255, 76, + 2, 207, 229, 112, 214, 154, 208, 72, 26, 52, 22, 46, 216, 102, 159, 27, 86, 180, 205, 126, 228, 141, 126, 174, + 159, 27, 17, 97, 12, 64, 131, 201, 111, 226, 74, 178, 131, 83, 32, 153, 6, 205, 250, 123, 239, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1592, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16486376367526371659" + } + }, + "cborHex": "1be4cb5ff52bcde14b", + "cborBytes": [27, 228, 203, 95, 245, 43, 205, 225, 75], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1593, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6451955492215164260" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2c7723960b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2413224975480519205" + } + } + ] + }, + "cborHex": "d8669f1b5989f356141d8d649f452c7723960b1b217d7f54529dfa25ffff", + "cborBytes": [ + 216, 102, 159, 27, 89, 137, 243, 86, 20, 29, 141, 100, 159, 69, 44, 119, 35, 150, 11, 27, 33, 125, 127, 84, 82, + 157, 250, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1594, + "sample": { + "_tag": "ByteArray", + "bytearray": "d3e720149ca269216454" + }, + "cborHex": "4ad3e720149ca269216454", + "cborBytes": [74, 211, 231, 32, 20, 156, 162, 105, 33, 100, 84], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1595, + "sample": { + "_tag": "ByteArray", + "bytearray": "d299e587cd78cd" + }, + "cborHex": "47d299e587cd78cd", + "cborBytes": [71, 210, 153, 229, 135, 205, 120, 205], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1596, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10014897595927000565" + } + }, + "cborHex": "1b8afc104d632475f5", + "cborBytes": [27, 138, 252, 16, 77, 99, 36, 117, 245], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1597, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15179763025283779127" + } + }, + "cborHex": "1bd2a95a0bb0a60a37", + "cborBytes": [27, 210, 169, 90, 11, 176, 166, 10, 55], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1598, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1058920546137112616" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "860735825273365201" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f98c4b037cfe7ce0cf26fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5494431416252198034" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b0eb20aa055dd80289f11d87e9f9f1b0bf1f2ac36df22d14bf98c4b037cfe7ce0cf26fc1b4c40244328756c92ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 14, 178, 10, 160, 85, 221, 128, 40, 159, 17, 216, 126, 159, 159, 27, 11, 241, 242, 172, 54, + 223, 34, 209, 75, 249, 140, 75, 3, 124, 254, 124, 224, 207, 38, 252, 27, 76, 64, 36, 67, 40, 117, 108, 146, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1599, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18112913917503375210" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10941875677050720685" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4370794608950735784" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d8372540fe6228" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6425886162955099162" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5919012493213058581" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "61192079148036455" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a174eef4" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8646750425155950724" + } + } + ] + }, + "cborHex": "9f9f1bfb5dff3ddc04876a80ffa09fd8669f1b97d959f4ab1851ad9f1b3ca82e8a14b373a847d8372540fe62281b592d556b5e095c1a1b52248e8097104615ffff1b00d965df2cafb16744a174eef4ff1b77ff6db300e0d884ff", + "cborBytes": [ + 159, 159, 27, 251, 93, 255, 61, 220, 4, 135, 106, 128, 255, 160, 159, 216, 102, 159, 27, 151, 217, 89, 244, 171, + 24, 81, 173, 159, 27, 60, 168, 46, 138, 20, 179, 115, 168, 71, 216, 55, 37, 64, 254, 98, 40, 27, 89, 45, 85, 107, + 94, 9, 92, 26, 27, 82, 36, 142, 128, 151, 16, 70, 21, 255, 255, 27, 0, 217, 101, 223, 44, 175, 177, 103, 68, 161, + 116, 238, 244, 255, 27, 119, 255, 109, 179, 0, 224, 216, 132, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1600, + "sample": { + "_tag": "ByteArray", + "bytearray": "0705ff9e" + }, + "cborHex": "440705ff9e", + "cborBytes": [68, 7, 5, 255, 158], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1601, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8741020514805882527" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2297597005193290529" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9544476395836229148" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4876945217030970929" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5911883750486529584" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11804690400618826" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "175660659571023405" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17722213272502163379" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14806011558530930069" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10453038859259583022" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16287678370277029718" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5553212631047265249" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8518854050405203009" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15987307240429694170" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16294530429962439054" + } + } + } + ] + }, + "cborHex": "bf1b794e57d8a7681e9f1b1fe2b44d938c23211b8474cab694eb461cd8669f1b43ae63d5f22bde319f1b520b3af2d52756301b0029f04daa03294a1b027012706ebdde2d1bf5f1f313353457b31bcd7985111e905595ffff1b9110a775bd859a2ed8669f1be209752e942cf7569f1b4d10f9773bc8dbe11b76390c9fbfccbc41ffff1bddde533b14d7acda1be221cd180bb4498eff", + "cborBytes": [ + 191, 27, 121, 78, 87, 216, 167, 104, 30, 159, 27, 31, 226, 180, 77, 147, 140, 35, 33, 27, 132, 116, 202, 182, 148, + 235, 70, 28, 216, 102, 159, 27, 67, 174, 99, 213, 242, 43, 222, 49, 159, 27, 82, 11, 58, 242, 213, 39, 86, 48, 27, + 0, 41, 240, 77, 170, 3, 41, 74, 27, 2, 112, 18, 112, 110, 189, 222, 45, 27, 245, 241, 243, 19, 53, 52, 87, 179, + 27, 205, 121, 133, 17, 30, 144, 85, 149, 255, 255, 27, 145, 16, 167, 117, 189, 133, 154, 46, 216, 102, 159, 27, + 226, 9, 117, 46, 148, 44, 247, 86, 159, 27, 77, 16, 249, 119, 59, 200, 219, 225, 27, 118, 57, 12, 159, 191, 204, + 188, 65, 255, 255, 27, 221, 222, 83, 59, 20, 215, 172, 218, 27, 226, 33, 205, 24, 11, 180, 73, 142, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1602, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14771060621366225888" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4735eb4309f59dbc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16028152666420733683" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17444376316073497926" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3dd5441d0347a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6588380821285645647" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15436058487684282363" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4483650026547402118" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4845757962412661495" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3d0218008035c7ae8dbe" + } + ] + }, + "cborHex": "d87a9fbf1bccfd595fec4b6be0484735eb4309f59dbc1bde6f6fede7bce6f31bf216dfd5cfcc554647a3dd5441d0347a1b5b6ea17341ba2d4fff1bd637e5692a9337fb1b3e391ff1998755869f1b433f973161209af7ff4a3d0218008035c7ae8dbeff", + "cborBytes": [ + 216, 122, 159, 191, 27, 204, 253, 89, 95, 236, 75, 107, 224, 72, 71, 53, 235, 67, 9, 245, 157, 188, 27, 222, 111, + 111, 237, 231, 188, 230, 243, 27, 242, 22, 223, 213, 207, 204, 85, 70, 71, 163, 221, 84, 65, 208, 52, 122, 27, 91, + 110, 161, 115, 65, 186, 45, 79, 255, 27, 214, 55, 229, 105, 42, 147, 55, 251, 27, 62, 57, 31, 241, 153, 135, 85, + 134, 159, 27, 67, 63, 151, 49, 97, 32, 154, 247, 255, 74, 61, 2, 24, 0, 128, 53, 199, 174, 141, 190, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1603, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9f906800003f2067bfb8a8d" + }, + "cborHex": "4cf9f906800003f2067bfb8a8d", + "cborBytes": [76, 249, 249, 6, 128, 0, 3, 242, 6, 123, 251, 138, 141], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1604, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0ca726" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13330308745661267232" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1701618453504310141" + } + } + } + ] + } + ] + }, + "cborHex": "9f430ca726bf1bb8fec52d5b6c3d201b179d5cf7c85fbb7dffff", + "cborBytes": [ + 159, 67, 12, 167, 38, 191, 27, 184, 254, 197, 45, 91, 108, 61, 32, 27, 23, 157, 92, 247, 200, 95, 187, 125, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1605, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe1a2524" + }, + "cborHex": "44fe1a2524", + "cborBytes": [68, 254, 26, 37, 36], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1606, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4393369754882504764" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "422944" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5309716162108168633" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10792326894942045440" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5992817366717456760" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79ec3b35" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8299098263665179107" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed4561a19c68b214a3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10071464667795098487" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18f359d4f4753cdca2a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10749609060134665067" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3681787817695164967" + } + } + } + ] + } + ] + }, + "cborHex": "d87c9fbf1b3cf86283d6b7783c434229441b49afe6b7a49b99b91b95c60c2178ea45001b532ac3a4cafc61784479ec3b351b732c51e679d2f9e349ed4561a19c68b214a31b8bc507c123d30b774a18f359d4f4753cdca2a51b952e487c7fa5bb6b1b331856836414ba27ffff", + "cborBytes": [ + 216, 124, 159, 191, 27, 60, 248, 98, 131, 214, 183, 120, 60, 67, 66, 41, 68, 27, 73, 175, 230, 183, 164, 155, 153, + 185, 27, 149, 198, 12, 33, 120, 234, 69, 0, 27, 83, 42, 195, 164, 202, 252, 97, 120, 68, 121, 236, 59, 53, 27, + 115, 44, 81, 230, 121, 210, 249, 227, 73, 237, 69, 97, 161, 156, 104, 178, 20, 163, 27, 139, 197, 7, 193, 35, 211, + 11, 119, 74, 24, 243, 89, 212, 244, 117, 60, 220, 162, 165, 27, 149, 46, 72, 124, 127, 165, 187, 107, 27, 51, 24, + 86, 131, 100, 20, 186, 39, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1607, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17972340737296061613" + } + } + ] + } + ] + }, + "cborHex": "9f9f1bf96a94add4d054adffff", + "cborBytes": [159, 159, 27, 249, 106, 148, 173, 212, 208, 84, 173, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1608, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "136335920327533054" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7571157139844523513" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e73d1d2c387e460b" + }, + { + "_tag": "ByteArray", + "bytearray": "4ffff6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6477772686245894555" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10622214215162840200" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11317637539605165583" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11805073498931588915" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b01e45ccc153fa1fe9f1b6912274e131865f948e73d1d2c387e460b434ffff6ff1b59e5abeffb6a199b801b9369af8cbee2c488d8669f1b9d105360fccab60f9f1ba3d40bcd2331ef33ffffff", + "cborBytes": [ + 191, 27, 1, 228, 92, 204, 21, 63, 161, 254, 159, 27, 105, 18, 39, 78, 19, 24, 101, 249, 72, 231, 61, 29, 44, 56, + 126, 70, 11, 67, 79, 255, 246, 255, 27, 89, 229, 171, 239, 251, 106, 25, 155, 128, 27, 147, 105, 175, 140, 190, + 226, 196, 136, 216, 102, 159, 27, 157, 16, 83, 96, 252, 202, 182, 15, 159, 27, 163, 212, 11, 205, 35, 49, 239, 51, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1609, + "sample": { + "_tag": "ByteArray", + "bytearray": "0604f803040d840951c0ec" + }, + "cborHex": "4b0604f803040d840951c0ec", + "cborBytes": [75, 6, 4, 248, 3, 4, 13, 132, 9, 81, 192, 236], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1610, + "sample": { + "_tag": "ByteArray", + "bytearray": "538412eb041107920253f7" + }, + "cborHex": "4b538412eb041107920253f7", + "cborBytes": [75, 83, 132, 18, 235, 4, 17, 7, 146, 2, 83, 247], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1611, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4065950350437581485" + } + }, + { + "_tag": "ByteArray", + "bytearray": "378af9e31697c01185ee9e17" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "381553207557313010" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9582013395696972599" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8476105990203327833" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f83bd66877b178ab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11047704717008736508" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bacc1e26a0" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "366c60" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "479963176c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8638280134039672628" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17156661897514565774" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13361258656741246010" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4629304713373314991" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8053081913983119899" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "86a516c7c12484a00b8deb00" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14668077380351374125" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2ca9f7ba8bdabf414983e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c43b03fda30a2bdbc2c99" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7408648677749824237" + } + } + } + ] + } + ] + }, + "cborHex": "d905039f9f1b386d284d283502ad4c378af9e31697c01185ee9e17bf1b054b8c9ee75d51f21b84fa266a6b8d73371b75a12d7d60a1455948f83bd66877b178ab1b995154e828b690fc45bacc1e26a0ff9f43366c60ff45479963176cffd8669f1b77e15603abbf973480ff9f9f1bee18b5188cd5c08e1bb96cb9f5132cc43a1b403e981c15a86faf1b6fc24b556e16321bff4c86a516c7c12484a00b8deb00ffbf1bcb8f7aa9a1c9332d4ba2ca9f7ba8bdabf414983e412242c1cd4b7c43b03fda30a2bdbc2c991b66d0ceb83ef21aedffff", + "cborBytes": [ + 217, 5, 3, 159, 159, 27, 56, 109, 40, 77, 40, 53, 2, 173, 76, 55, 138, 249, 227, 22, 151, 192, 17, 133, 238, 158, + 23, 191, 27, 5, 75, 140, 158, 231, 93, 81, 242, 27, 132, 250, 38, 106, 107, 141, 115, 55, 27, 117, 161, 45, 125, + 96, 161, 69, 89, 72, 248, 59, 214, 104, 119, 177, 120, 171, 27, 153, 81, 84, 232, 40, 182, 144, 252, 69, 186, 204, + 30, 38, 160, 255, 159, 67, 54, 108, 96, 255, 69, 71, 153, 99, 23, 108, 255, 216, 102, 159, 27, 119, 225, 86, 3, + 171, 191, 151, 52, 128, 255, 159, 159, 27, 238, 24, 181, 24, 140, 213, 192, 142, 27, 185, 108, 185, 245, 19, 44, + 196, 58, 27, 64, 62, 152, 28, 21, 168, 111, 175, 27, 111, 194, 75, 85, 110, 22, 50, 27, 255, 76, 134, 165, 22, + 199, 193, 36, 132, 160, 11, 141, 235, 0, 255, 191, 27, 203, 143, 122, 169, 161, 201, 51, 45, 75, 162, 202, 159, + 123, 168, 189, 171, 244, 20, 152, 62, 65, 34, 66, 193, 205, 75, 124, 67, 176, 63, 218, 48, 162, 189, 188, 44, 153, + 27, 102, 208, 206, 184, 62, 242, 26, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1612, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd6805fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04fdfc3e" + } + } + ] + }, + "cborHex": "bf138044fd6805fe4404fdfc3eff", + "cborBytes": [191, 19, 128, 68, 253, 104, 5, 254, 68, 4, 253, 252, 62, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1613, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2643182104789510947" + } + }, + "cborHex": "1b24ae781ec0a5eb23", + "cborBytes": [27, 36, 174, 120, 30, 192, 165, 235, 35], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1614, + "sample": { + "_tag": "ByteArray", + "bytearray": "aa6425b332" + }, + "cborHex": "45aa6425b332", + "cborBytes": [69, 170, 100, 37, 179, 50], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1615, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3143899498962297316" + } + }, + "cborHex": "1b2ba15fefed2d21e4", + "cborBytes": [27, 43, 161, 95, 239, 237, 45, 33, 228], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1616, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12432599171494725575" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14686362895786334586" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10282175347176936341" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9171069528726428631" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bac89771363c247c7d8669f1bcbd0713df5d2597a9fbf1b8eb1a0003ec293951b7f462f255e25dbd7ffffffff", + "cborBytes": [ + 159, 27, 172, 137, 119, 19, 99, 194, 71, 199, 216, 102, 159, 27, 203, 208, 113, 61, 245, 210, 89, 122, 159, 191, + 27, 142, 177, 160, 0, 62, 194, 147, 149, 27, 127, 70, 47, 37, 94, 37, 219, 215, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1617, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0cd0524ad79e" + } + ] + }, + "cborHex": "9f460cd0524ad79eff", + "cborBytes": [159, 70, 12, 208, 82, 74, 215, 158, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1618, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7773800599386956626" + }, + "fields": [] + }, + "cborHex": "d8669f1b6be21675312da35280ff", + "cborBytes": [216, 102, 159, 27, 107, 226, 22, 117, 49, 45, 163, 82, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1619, + "sample": { + "_tag": "ByteArray", + "bytearray": "071a06" + }, + "cborHex": "43071a06", + "cborBytes": [67, 7, 26, 6], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1620, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11966024809556499526" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7871137521603682292" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "115839447937552180" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4788724238089993200" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6782506147213555921" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4924275235091177260" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5244106333711576156" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5610101176705329342" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14259053453998830868" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10538103671523159286" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "98694241923240370" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2413064496186564463" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11296218259351856137" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14708322747306618911" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6536276319186833939" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6876494251649416606" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d62143cb" + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba60fdc2a63205c4680ff9fd8669f1b6d3be5df716f9ff49f1b019b8b5d394b8f34ffffbf1b4274f752a2a83bf01b5e204d67d79138d11b44568a3c83dcdf2c1b48c6ceed11412c5c1b4ddb154bef85a8be1bc5e2559196e835141b923edd74bb60acf61b015ea1e3df3611b2ffff9f1b217ced5fd34e9f6f9f1b9cc43aa82df2e409ffbf1bcc1e759c5302301f1b5ab584ae7eedd213ff1b5f6e3716b1943d9e44d62143cbffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 166, 15, 220, 42, 99, 32, 92, 70, 128, 255, 159, 216, 102, 159, 27, 109, 59, 229, 223, + 113, 111, 159, 244, 159, 27, 1, 155, 139, 93, 57, 75, 143, 52, 255, 255, 191, 27, 66, 116, 247, 82, 162, 168, 59, + 240, 27, 94, 32, 77, 103, 215, 145, 56, 209, 27, 68, 86, 138, 60, 131, 220, 223, 44, 27, 72, 198, 206, 237, 17, + 65, 44, 92, 27, 77, 219, 21, 75, 239, 133, 168, 190, 27, 197, 226, 85, 145, 150, 232, 53, 20, 27, 146, 62, 221, + 116, 187, 96, 172, 246, 27, 1, 94, 161, 227, 223, 54, 17, 178, 255, 255, 159, 27, 33, 124, 237, 95, 211, 78, 159, + 111, 159, 27, 156, 196, 58, 168, 45, 242, 228, 9, 255, 191, 27, 204, 30, 117, 156, 83, 2, 48, 31, 27, 90, 181, + 132, 174, 126, 237, 210, 19, 255, 27, 95, 110, 55, 22, 177, 148, 61, 158, 68, 214, 33, 67, 203, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1621, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14210558589700939229" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "67d6c8c676303c9199401e53" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fca0db1fe871b659e5ff" + }, + { + "_tag": "ByteArray", + "bytearray": "341b126779" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4629998407866333161" + } + }, + { + "_tag": "ByteArray", + "bytearray": "437fd27d5e9a1fe44f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "84a8" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15081631024260074619" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15097739802971483574" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5133" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "765901613104072345" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8799fd8669f1bc5360bbf1f001ddd9f4c67d6c8c676303c9199401e539f4afca0db1fe871b659e5ff45341b1267791b40410f056b7f37e949437fd27d5e9a1fe44fff4284a8809f1bd14cb782ba884c7b1bd185f25c0b642db64251331b0aa107758df78699ffffffff", + "cborBytes": [ + 216, 121, 159, 216, 102, 159, 27, 197, 54, 11, 191, 31, 0, 29, 221, 159, 76, 103, 214, 200, 198, 118, 48, 60, 145, + 153, 64, 30, 83, 159, 74, 252, 160, 219, 31, 232, 113, 182, 89, 229, 255, 69, 52, 27, 18, 103, 121, 27, 64, 65, + 15, 5, 107, 127, 55, 233, 73, 67, 127, 210, 125, 94, 154, 31, 228, 79, 255, 66, 132, 168, 128, 159, 27, 209, 76, + 183, 130, 186, 136, 76, 123, 27, 209, 133, 242, 92, 11, 100, 45, 182, 66, 81, 51, 27, 10, 161, 7, 117, 141, 247, + 134, 153, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1622, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b80af8891e53b2ef2fd5aa" + }, + { + "_tag": "ByteArray", + "bytearray": "f19a436f4edda1f2b1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2380537719254187756" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3e6f49c728d27d4a" + }, + { + "_tag": "ByteArray", + "bytearray": "a5977b7a42e8829d23" + } + ] + } + ] + } + ] + }, + "cborHex": "d87d9f9f9f4bb80af8891e53b2ef2fd5aa49f19a436f4edda1f2b11b21095e716a907eec483e6f49c728d27d4a49a5977b7a42e8829d23ffffff", + "cborBytes": [ + 216, 125, 159, 159, 159, 75, 184, 10, 248, 137, 30, 83, 178, 239, 47, 213, 170, 73, 241, 154, 67, 111, 78, 221, + 161, 242, 177, 27, 33, 9, 94, 113, 106, 144, 126, 236, 72, 62, 111, 73, 199, 40, 210, 125, 74, 73, 165, 151, 123, + 122, 66, 232, 130, 157, 35, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1623, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14489450866691650189" + } + }, + "cborHex": "1bc914decb7ba1b28d", + "cborBytes": [27, 201, 20, 222, 203, 123, 161, 178, 141], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1624, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c04de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8610fd05bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05fa" + } + } + ] + }, + "cborHex": "bf0d431c04de458610fd05bf4205faff", + "cborBytes": [191, 13, 67, 28, 4, 222, 69, 134, 16, 253, 5, 191, 66, 5, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1625, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "25cf685afecc93d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16591216867022753099" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e13" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11133731030312283504" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c7d2b7c7b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4602977395582403294" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a70dba33ce2543c56eaec330" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9134476626917104517" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3196748964938625044" + } + }, + { + "_tag": "ByteArray", + "bytearray": "99a79c407e" + }, + { + "_tag": "ByteArray", + "bytearray": "e28c1eee4a2fbc82069a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edc8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12797407590667522584" + } + } + } + ] + }, + "cborHex": "bf4825cf685afecc93d31be63fd7d6265c4d4b422e131b9a82f5620e81ed70457c7d2b7c7b1b3fe10f8dbcd782de4ca70dba33ce2543c56eaec3309f1b7ec42e187c809b851b2c5d223f1b43b0144599a79c407e4ae28c1eee4a2fbc82069aff42edc81bb19986666fa01218ff", + "cborBytes": [ + 191, 72, 37, 207, 104, 90, 254, 204, 147, 211, 27, 230, 63, 215, 214, 38, 92, 77, 75, 66, 46, 19, 27, 154, 130, + 245, 98, 14, 129, 237, 112, 69, 124, 125, 43, 124, 123, 27, 63, 225, 15, 141, 188, 215, 130, 222, 76, 167, 13, + 186, 51, 206, 37, 67, 197, 110, 174, 195, 48, 159, 27, 126, 196, 46, 24, 124, 128, 155, 133, 27, 44, 93, 34, 63, + 27, 67, 176, 20, 69, 153, 167, 156, 64, 126, 74, 226, 140, 30, 238, 74, 47, 188, 130, 6, 154, 255, 66, 237, 200, + 27, 177, 153, 134, 102, 111, 160, 18, 24, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1626, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f2200" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bfe21172f8c96a3a73fe" + }, + { + "_tag": "ByteArray", + "bytearray": "dfdaea4ff8" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8014925902515231988" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ced166ea35" + }, + { + "_tag": "ByteArray", + "bytearray": "fe0415" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3771389903251172283" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4881031822351617365" + } + } + } + ] + }, + "cborHex": "bf0c430f22000fd905019f4abfe21172f8c96a3a73fe45dfdaea4ff8ff1b6f3abca4b87f5cf49f45ced166ea3543fe04151b3456ab22a4c7ebbbff1bfffffffffffffff21b43bce894e4a54d55ff", + "cborBytes": [ + 191, 12, 67, 15, 34, 0, 15, 217, 5, 1, 159, 74, 191, 226, 17, 114, 248, 201, 106, 58, 115, 254, 69, 223, 218, 234, + 79, 248, 255, 27, 111, 58, 188, 164, 184, 127, 92, 244, 159, 69, 206, 209, 102, 234, 53, 67, 254, 4, 21, 27, 52, + 86, 171, 34, 164, 199, 235, 187, 255, 27, 255, 255, 255, 255, 255, 255, 255, 242, 27, 67, 188, 232, 148, 228, 165, + 77, 85, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1627, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8625892408934895876" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "31d0925ec37a0018" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10680410665246452726" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "731f4e3a62f53c3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12319959576318193163" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2b0b036e42e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4077418658307837543" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf6c6cecf27b9bfabf8a5a09" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "111b0a16c24acfc427aa" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1429590273298110326" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b77b55371a94d91049f0dbf4831d0925ec37a00181b943870e9ad4eebf648731f4e3a62f53c3f1baaf949f5f19e2e0b46b2b0b036e42e1b3895e6aaa8fd0e674ccf6c6cecf27b9bfabf8a5a094a111b0a16c24acfc427aaffd8669f1b13d6ecc77e49977680ffffff", + "cborBytes": [ + 216, 102, 159, 27, 119, 181, 83, 113, 169, 77, 145, 4, 159, 13, 191, 72, 49, 208, 146, 94, 195, 122, 0, 24, 27, + 148, 56, 112, 233, 173, 78, 235, 246, 72, 115, 31, 78, 58, 98, 245, 60, 63, 27, 170, 249, 73, 245, 241, 158, 46, + 11, 70, 178, 176, 176, 54, 228, 46, 27, 56, 149, 230, 170, 168, 253, 14, 103, 76, 207, 108, 108, 236, 242, 123, + 155, 250, 191, 138, 90, 9, 74, 17, 27, 10, 22, 194, 74, 207, 196, 39, 170, 255, 216, 102, 159, 27, 19, 214, 236, + 199, 126, 73, 151, 118, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1628, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16548780637939587869" + } + }, + "cborHex": "1be5a9144f9e405b1d", + "cborBytes": [27, 229, 169, 20, 79, 158, 64, 91, 29], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1629, + "sample": { + "_tag": "ByteArray", + "bytearray": "8776edbef5b1244e50d9672b" + }, + "cborHex": "4c8776edbef5b1244e50d9672b", + "cborBytes": [76, 135, 118, 237, 190, 245, 177, 36, 78, 80, 217, 103, 43], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1630, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6211805960426787445" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1c94c859ce853e2f55cb4bf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7791439742268521163" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3037aab8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8553811037396060040" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cecc4ce247" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8452523022796444282" + } + } + } + ] + }, + "cborHex": "bf1b5634c49c04e492754cb1c94c859ce853e2f55cb4bf1b6c20c12a2ec6bacba0443037aab8d8669f1b76b53dd187cec78880ff45cecc4ce2471b754d64e7e597d27aff", + "cborBytes": [ + 191, 27, 86, 52, 196, 156, 4, 228, 146, 117, 76, 177, 201, 76, 133, 156, 232, 83, 226, 245, 92, 180, 191, 27, 108, + 32, 193, 42, 46, 198, 186, 203, 160, 68, 48, 55, 170, 184, 216, 102, 159, 27, 118, 181, 61, 209, 135, 206, 199, + 136, 128, 255, 69, 206, 204, 76, 226, 71, 27, 117, 77, 100, 231, 229, 151, 210, 122, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1631, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16068589939662626758" + } + }, + "cborHex": "1bdeff196a43019fc6", + "cborBytes": [27, 222, 255, 25, 106, 67, 1, 159, 198], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1632, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5711432604228781307" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04d351f91244ff50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0696" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c5c4a391395a4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06fefe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bbd435579" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0c801b4f4315b16da404fbbf4804d351f91244ff501bfffffffffffffffd420696476c5c4a391395a44306fefe07456bbd43557904ffff", + "cborBytes": [ + 191, 12, 128, 27, 79, 67, 21, 177, 109, 164, 4, 251, 191, 72, 4, 211, 81, 249, 18, 68, 255, 80, 27, 255, 255, 255, + 255, 255, 255, 255, 253, 66, 6, 150, 71, 108, 92, 74, 57, 19, 149, 164, 67, 6, 254, 254, 7, 69, 107, 189, 67, 85, + 121, 4, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1633, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7220226434580474962" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "db7b95" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10738205455508304235" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11649830886469694274" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b643365b0170dec529fa043db7b951b9505c4f7e4bbf16bd8669f1ba1ac8377c166734280ffffff", + "cborBytes": [ + 216, 102, 159, 27, 100, 51, 101, 176, 23, 13, 236, 82, 159, 160, 67, 219, 123, 149, 27, 149, 5, 196, 247, 228, + 187, 241, 107, 216, 102, 159, 27, 161, 172, 131, 119, 193, 102, 115, 66, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1634, + "sample": { + "_tag": "ByteArray", + "bytearray": "02010407" + }, + "cborHex": "4402010407", + "cborBytes": [68, 2, 1, 4, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1635, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8987477279762941278" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10260936869842176009" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13757159426849837522" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10488515618986066990" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "676951346031944011" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11933236227153314910" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6669734823537199848" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13977581451055431593" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04fdefd9f50d29d1a56b4203" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10692235967570714587" + } + } + } + ] + }, + "cborHex": "bf1b7cb9eef7df2a055ebf1b8e662bb7e5a6c8091bbeeb3f9c33cd11d21b918eb1628acd042e1b096503a99e74e14b1ba59b5f1fa44bc45e1b5c8fa87bf6fccae81bc1fa5845f93f7fa94c04fdefd9f50d29d1a56b4203ff41a71b946273f66db51fdbff", + "cborBytes": [ + 191, 27, 124, 185, 238, 247, 223, 42, 5, 94, 191, 27, 142, 102, 43, 183, 229, 166, 200, 9, 27, 190, 235, 63, 156, + 51, 205, 17, 210, 27, 145, 142, 177, 98, 138, 205, 4, 46, 27, 9, 101, 3, 169, 158, 116, 225, 75, 27, 165, 155, 95, + 31, 164, 75, 196, 94, 27, 92, 143, 168, 123, 246, 252, 202, 232, 27, 193, 250, 88, 69, 249, 63, 127, 169, 76, 4, + 253, 239, 217, 245, 13, 41, 209, 165, 107, 66, 3, 255, 65, 167, 27, 148, 98, 115, 246, 109, 181, 31, 219, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1636, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2239364150422164766" + } + }, + "cborHex": "1b1f13d1d484a8551e", + "cborBytes": [27, 31, 19, 209, 212, 132, 168, 85, 30], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1637, + "sample": { + "_tag": "ByteArray", + "bytearray": "705d01010ab1c18d56" + }, + "cborHex": "49705d01010ab1c18d56", + "cborBytes": [73, 112, 93, 1, 1, 10, 177, 193, 141, 86], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1638, + "sample": { + "_tag": "ByteArray", + "bytearray": "112379ede5" + }, + "cborHex": "45112379ede5", + "cborBytes": [69, 17, 35, 121, 237, 229], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1639, + "sample": { + "_tag": "ByteArray", + "bytearray": "15" + }, + "cborHex": "4115", + "cborBytes": [65, 21], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1640, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "cborHex": "00", + "cborBytes": [0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1641, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10866803170043866702" + } + }, + "cborHex": "1b96cea3e88a8dae4e", + "cborBytes": [27, 150, 206, 163, 232, 138, 141, 174, 78], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1642, + "sample": { + "_tag": "ByteArray", + "bytearray": "51810030aad9dc9ea2" + }, + "cborHex": "4951810030aad9dc9ea2", + "cborBytes": [73, 81, 129, 0, 48, 170, 217, 220, 158, 162], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1643, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12116704526999743690" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5e6e2554d5f14feaf497ea" + } + ] + }, + "cborHex": "d905039f1ba8272e91fc2fecca4b5e6e2554d5f14feaf497eaff", + "cborBytes": [ + 217, 5, 3, 159, 27, 168, 39, 46, 145, 252, 47, 236, 202, 75, 94, 110, 37, 84, 213, 241, 79, 234, 244, 151, 234, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1644, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "afa0d62bffe30601bafbca56" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e67fb" + } + } + ] + }, + "cborHex": "bf4cafa0d62bffe30601bafbca56435e67fbff", + "cborBytes": [191, 76, 175, 160, 214, 43, 255, 227, 6, 1, 186, 251, 202, 86, 67, 94, 103, 251, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1645, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13699518280656448843" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4027406597462757659" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13892452730804117484" + } + }, + { + "_tag": "ByteArray", + "bytearray": "946c6a671d83ff82880f" + }, + { + "_tag": "ByteArray", + "bytearray": "35e87b3d86400d61e944f4" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "370205" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + }, + "cborHex": "bf0bbf071bbe1e774b087f6d4bff1b37e438f657d5111b9f1bc0cbe8273e7c1fec4a946c6a671d83ff82880f4b35e87b3d86400d61e944f4ff4337020509ff", + "cborBytes": [ + 191, 11, 191, 7, 27, 190, 30, 119, 75, 8, 127, 109, 75, 255, 27, 55, 228, 56, 246, 87, 213, 17, 27, 159, 27, 192, + 203, 232, 39, 62, 124, 31, 236, 74, 148, 108, 106, 103, 29, 131, 255, 130, 136, 15, 75, 53, 232, 123, 61, 134, 64, + 13, 97, 233, 68, 244, 255, 67, 55, 2, 5, 9, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1646, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0010fe" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "189feb1797" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10844133559344688402" + } + } + ] + }, + "cborHex": "9f430010fea09f9f45189feb1797ffff1b967e1a047da1ed12ff", + "cborBytes": [ + 159, 67, 0, 16, 254, 160, 159, 159, 69, 24, 159, 235, 23, 151, 255, 255, 27, 150, 126, 26, 4, 125, 161, 237, 18, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1647, + "sample": { + "_tag": "ByteArray", + "bytearray": "baa5fa30b5cbbba038d2" + }, + "cborHex": "4abaa5fa30b5cbbba038d2", + "cborBytes": [74, 186, 165, 250, 48, 181, 203, 187, 160, 56, 210], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1648, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12905688126234303852" + } + }, + { + "_tag": "ByteArray", + "bytearray": "db5c58976c" + }, + { + "_tag": "ByteArray", + "bytearray": "4b5b8da5806f1bc4056a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11316199546898621875" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9b" + }, + { + "_tag": "ByteArray", + "bytearray": "0b05445cb05f717c" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ada03b07ec1e547b9bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9ab9fac4eb7cc306b" + } + } + ] + } + ] + }, + "cborHex": "9f1bb31a36f93a2c1d6c45db5c58976c4a4b5b8da5806f1bc4056a9fd8669f1b9d0b3788385425b39f419b480b05445cb05f717cffffffbf4a8ada03b07ec1e547b9bc49d9ab9fac4eb7cc306bffff", + "cborBytes": [ + 159, 27, 179, 26, 54, 249, 58, 44, 29, 108, 69, 219, 92, 88, 151, 108, 74, 75, 91, 141, 165, 128, 111, 27, 196, 5, + 106, 159, 216, 102, 159, 27, 157, 11, 55, 136, 56, 84, 37, 179, 159, 65, 155, 72, 11, 5, 68, 92, 176, 95, 113, + 124, 255, 255, 255, 191, 74, 138, 218, 3, 176, 126, 193, 229, 71, 185, 188, 73, 217, 171, 159, 172, 78, 183, 204, + 48, 107, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1649, + "sample": { + "_tag": "ByteArray", + "bytearray": "2dcdbb2fcd693709c7a60e" + }, + "cborHex": "4b2dcdbb2fcd693709c7a60e", + "cborBytes": [75, 45, 205, 187, 47, 205, 105, 55, 9, 199, 166, 14], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1650, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17571901662377517376" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70b8072fcd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bba996fe5e3272" + } + } + ] + } + ] + }, + "cborHex": "9fbf1bf3dbef76461ba14041834570b8072fcd47bba996fe5e3272ffff", + "cborBytes": [ + 159, 191, 27, 243, 219, 239, 118, 70, 27, 161, 64, 65, 131, 69, 112, 184, 7, 47, 205, 71, 187, 169, 150, 254, 94, + 50, 114, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1651, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4244830940778399618" + } + }, + "cborHex": "1b3ae8ab4024af0782", + "cborBytes": [27, 58, 232, 171, 64, 36, 175, 7, 130], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1652, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11240051657581471598" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35bf5e2bece7e7c439" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c64b121c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a770cdf719505" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13092703475023110326" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8dd052212afe2146893f57" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e38b95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb184865b0b1a3d0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2228817792150761439" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16eece45dd399b1f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446457535296126202" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3935430672068830822" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20a6da4c13" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15799419421717294717" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf411c1b9bfcaf6e232f276e4935bf5e2bece7e7c439453c64b121c9473a770cdf7195059f1bb5b2a071424660b6ff4b8dd052212afe2146893f5743e38b9548eb184865b0b1a3d0bf1b1eee59f922376fdf4816eece45dd399b1f1bfffefb6513a73cfa1b369d75586ed6e6664520a6da4c131bdb42d04150ddee7dffff", + "cborBytes": [ + 191, 65, 28, 27, 155, 252, 175, 110, 35, 47, 39, 110, 73, 53, 191, 94, 43, 236, 231, 231, 196, 57, 69, 60, 100, + 177, 33, 201, 71, 58, 119, 12, 223, 113, 149, 5, 159, 27, 181, 178, 160, 113, 66, 70, 96, 182, 255, 75, 141, 208, + 82, 33, 42, 254, 33, 70, 137, 63, 87, 67, 227, 139, 149, 72, 235, 24, 72, 101, 176, 177, 163, 208, 191, 27, 30, + 238, 89, 249, 34, 55, 111, 223, 72, 22, 238, 206, 69, 221, 57, 155, 31, 27, 255, 254, 251, 101, 19, 167, 60, 250, + 27, 54, 157, 117, 88, 110, 214, 230, 102, 69, 32, 166, 218, 76, 19, 27, 219, 66, 208, 65, 80, 221, 238, 125, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1653, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "281c62" + }, + { + "_tag": "ByteArray", + "bytearray": "5adef8c5fdb8d599" + } + ] + }, + "cborHex": "d87f9f43281c62485adef8c5fdb8d599ff", + "cborBytes": [216, 127, 159, 67, 40, 28, 98, 72, 90, 222, 248, 197, 253, 184, 213, 153, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1654, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4189926863584525776" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fccf03" + }, + { + "_tag": "ByteArray", + "bytearray": "04fd92" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17632288374681633803" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "dd03cf2a534cf4bb14e2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1932318464234783360" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + "cborHex": "d87d9fd8669f1b3a259c4882d27dd09fd8799f43fccf034304fd92ff9f1bf4b278db5e26040bffa04add03cf2a534cf4bb14e2d9050a9f1b1ad0f967c5a48280ffffff02ff", + "cborBytes": [ + 216, 125, 159, 216, 102, 159, 27, 58, 37, 156, 72, 130, 210, 125, 208, 159, 216, 121, 159, 67, 252, 207, 3, 67, 4, + 253, 146, 255, 159, 27, 244, 178, 120, 219, 94, 38, 4, 11, 255, 160, 74, 221, 3, 207, 42, 83, 76, 244, 187, 20, + 226, 217, 5, 10, 159, 27, 26, 208, 249, 103, 197, 164, 130, 128, 255, 255, 255, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1655, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17703448344614332783" + }, + "fields": [] + }, + "cborHex": "d8669f1bf5af4878f836e96f80ff", + "cborBytes": [216, 102, 159, 27, 245, 175, 72, 120, 248, 54, 233, 111, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1656, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8743580231316531448" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "040122980503c22103d98d91" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b30ac566da44" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0604da" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "956618106324665194" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9157992983645816052" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3240803618880749776" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ed19" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12032904432421253592" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18077428524555682920" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8cc688f768e97bafa6281c" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "611965780deaddac1c94b0" + } + ] + }, + "cborHex": "9f9fbf1b79576fe518bfe8f84c040122980503c22103d98d9146b30ac566da44430604daff1b0d4697196d30436ad8669f1b7f17ba18f5ba84f49f1b2cf9a5b88a3000d042ed191ba6fd76d406b131d81bfadfed76faa7c4684b8cc688f768e97bafa6281cffffff4b611965780deaddac1c94b0ff", + "cborBytes": [ + 159, 159, 191, 27, 121, 87, 111, 229, 24, 191, 232, 248, 76, 4, 1, 34, 152, 5, 3, 194, 33, 3, 217, 141, 145, 70, + 179, 10, 197, 102, 218, 68, 67, 6, 4, 218, 255, 27, 13, 70, 151, 25, 109, 48, 67, 106, 216, 102, 159, 27, 127, 23, + 186, 24, 245, 186, 132, 244, 159, 27, 44, 249, 165, 184, 138, 48, 0, 208, 66, 237, 25, 27, 166, 253, 118, 212, 6, + 177, 49, 216, 27, 250, 223, 237, 118, 250, 167, 196, 104, 75, 140, 198, 136, 247, 104, 233, 123, 175, 166, 40, 28, + 255, 255, 255, 75, 97, 25, 101, 120, 13, 234, 221, 172, 28, 148, 176, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1657, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [] + }, + "cborHex": "d9050c80", + "cborBytes": [217, 5, 12, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1658, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16048348796611776514" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b75e605a9155ba709c" + } + ] + }, + "cborHex": "d8669f1bdeb73033e59cd0029f49b75e605a9155ba709cffff", + "cborBytes": [ + 216, 102, 159, 27, 222, 183, 48, 51, 229, 156, 208, 2, 159, 73, 183, 94, 96, 90, 145, 85, 186, 112, 156, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1659, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11947158882861435273" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12801002817702599763" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12290089046188470854" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14015193974253328654" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6537069671445472360" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b93eb7e63b59a185b9c9b199" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14611311530205104162" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6046562140335334554" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14847480913502074841" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f99d71860db54243658f7f" + } + } + ] + }, + "cborHex": "bf1ba5ccd5b4881bc989a01bb1a64c3d75f01c539f1baa8f2adf2ffbb246ff1bc27ff8a9f590990ed8669f1b5ab8563b367ca4689f4cb93eb7e63b59a185b9c9b199ffff1bcac5ce6c3471c8221b53e9b43b0703649a1bce0cd939baaef7d94bf99d71860db54243658f7fff", + "cborBytes": [ + 191, 27, 165, 204, 213, 180, 136, 27, 201, 137, 160, 27, 177, 166, 76, 61, 117, 240, 28, 83, 159, 27, 170, 143, + 42, 223, 47, 251, 178, 70, 255, 27, 194, 127, 248, 169, 245, 144, 153, 14, 216, 102, 159, 27, 90, 184, 86, 59, 54, + 124, 164, 104, 159, 76, 185, 62, 183, 230, 59, 89, 161, 133, 185, 201, 177, 153, 255, 255, 27, 202, 197, 206, 108, + 52, 113, 200, 34, 27, 83, 233, 180, 59, 7, 3, 100, 154, 27, 206, 12, 217, 57, 186, 174, 247, 217, 75, 249, 157, + 113, 134, 13, 181, 66, 67, 101, 143, 127, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1660, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17272293754674901503" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fef6b5189fb3c45d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "180101876992511535" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e390e891bea439" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9f1befb383a8479871ff48fef6b5189fb3c45dbf1b027fd9b3f1850e2f47e390e891bea439ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 27, 239, 179, 131, 168, 71, 152, 113, 255, 72, + 254, 246, 181, 24, 159, 179, 196, 93, 191, 27, 2, 127, 217, 179, 241, 133, 14, 47, 71, 227, 144, 232, 145, 190, + 164, 57, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1661, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4898450656217672488" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a4e148a754201e3f7cebe3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4563727942165360136" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f9dc3f01b9e73ef3b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17131273633670099866" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15614724878459976992" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15519167379617844054" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6a5c42df0032e627" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2596374589105867796" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18121444115782255281" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8591686275468293818" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13539359691474174431" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b43facaeb31a22b289f4ba4e148a754201e3f7cebe31b3f559e623c4a6e08494f9dc3f01b9e73ef3b1bedbe829abcebf39aff1bd8b2a58bee0fbd20d8669f1bd75f2881f7f38b569f486a5c42df0032e6271b24082ceebf818c141bfb7c4d696a4b42b11b773bcd2596e2f6ba1bbbe577e7a08f81dfffffff", + "cborBytes": [ + 191, 27, 67, 250, 202, 235, 49, 162, 43, 40, 159, 75, 164, 225, 72, 167, 84, 32, 30, 63, 124, 235, 227, 27, 63, + 85, 158, 98, 60, 74, 110, 8, 73, 79, 157, 195, 240, 27, 158, 115, 239, 59, 27, 237, 190, 130, 154, 188, 235, 243, + 154, 255, 27, 216, 178, 165, 139, 238, 15, 189, 32, 216, 102, 159, 27, 215, 95, 40, 129, 247, 243, 139, 86, 159, + 72, 106, 92, 66, 223, 0, 50, 230, 39, 27, 36, 8, 44, 238, 191, 129, 140, 20, 27, 251, 124, 77, 105, 106, 75, 66, + 177, 27, 119, 59, 205, 37, 150, 226, 246, 186, 27, 187, 229, 119, 231, 160, 143, 129, 223, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1662, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9300714070349770325" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac5d85" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14523728969986140589" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17974513441128970022" + } + } + ] + } + ] + }, + "cborHex": "d905019fbf1b8112c62b70acee5543ac5d85ff1bc98ea68c5612e9ad9f1bf9724cbddcf9f726ffff", + "cborBytes": [ + 217, 5, 1, 159, 191, 27, 129, 18, 198, 43, 112, 172, 238, 85, 67, 172, 93, 133, 255, 27, 201, 142, 166, 140, 86, + 18, 233, 173, 159, 27, 249, 114, 76, 189, 220, 249, 247, 38, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1663, + "sample": { + "_tag": "ByteArray", + "bytearray": "b3af3371a426ecc42711f411" + }, + "cborHex": "4cb3af3371a426ecc42711f411", + "cborBytes": [76, 179, 175, 51, 113, 164, 38, 236, 196, 39, 17, 244, 17], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1664, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6351370145286641315" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8263" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "665a" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16056449334768761676" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "49b6c249f13a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7754565019289052561" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "19dc5ffb7f7051c6942fed" + } + ] + }, + "cborHex": "9f1b5824997f02d4d6a3bf42826342665affd8669f1bded3f79968f2fb4c9fbf4649b6c249f13a1b6b9dbfccb264e591ffffff4b19dc5ffb7f7051c6942fedff", + "cborBytes": [ + 159, 27, 88, 36, 153, 127, 2, 212, 214, 163, 191, 66, 130, 99, 66, 102, 90, 255, 216, 102, 159, 27, 222, 211, 247, + 153, 104, 242, 251, 76, 159, 191, 70, 73, 182, 194, 73, 241, 58, 27, 107, 157, 191, 204, 178, 100, 229, 145, 255, + 255, 255, 75, 25, 220, 95, 251, 127, 112, 81, 198, 148, 47, 237, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1665, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6843708571245882497" + } + }, + "cborHex": "1b5ef9bcaf9f682c81", + "cborBytes": [27, 94, 249, 188, 175, 159, 104, 44, 129], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1666, + "sample": { + "_tag": "ByteArray", + "bytearray": "00fc5b6b020c04000002" + }, + "cborHex": "4a00fc5b6b020c04000002", + "cborBytes": [74, 0, 252, 91, 107, 2, 12, 4, 0, 0, 2], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1667, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15595896307554080935" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7472125742147197162" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "475743230073055091" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2238102369877709959" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5355048230395587037" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4469636834179290084" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17597911925505952189" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cd89309593dd2ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17609622899488773416" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb6d8450922c8a2d58ee29" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16384901286989702769" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2675953363973191134" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11462609681146099646" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11872945672666814015" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d18d547d47581cc3a1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14994124071151708997" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8546904857796685223" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16668538659445816235" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3038654461822761568" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bd86fc10fa59658a79fd8669f1b67b252c601bc58ea9f9f1b069a2df278cd27731b1f0f563f578554871b4a50f3fe47d029ddff1b3e075705004213e4ffffd8669f1bf43857a8946489bd9fbf489cd89309593dd2ff1bf461f2ba309cd5284bfb6d8450922c8a2d58ee291be362dce8dadca671ff1b2522e5681f2235de1b9f135ec603aab7be1ba4c52d2f08d1163f9f49d18d547d47581cc3a11bd015d4668321ab451b769cb4af4a082da71be7528b98d9223bab1b2a2b78223019fa60ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 216, 111, 193, 15, 165, 150, 88, 167, 159, 216, 102, 159, 27, 103, 178, 82, 198, 1, 188, 88, + 234, 159, 159, 27, 6, 154, 45, 242, 120, 205, 39, 115, 27, 31, 15, 86, 63, 87, 133, 84, 135, 27, 74, 80, 243, 254, + 71, 208, 41, 221, 255, 27, 62, 7, 87, 5, 0, 66, 19, 228, 255, 255, 216, 102, 159, 27, 244, 56, 87, 168, 148, 100, + 137, 189, 159, 191, 72, 156, 216, 147, 9, 89, 61, 210, 255, 27, 244, 97, 242, 186, 48, 156, 213, 40, 75, 251, 109, + 132, 80, 146, 44, 138, 45, 88, 238, 41, 27, 227, 98, 220, 232, 218, 220, 166, 113, 255, 27, 37, 34, 229, 104, 31, + 34, 53, 222, 27, 159, 19, 94, 198, 3, 170, 183, 190, 27, 164, 197, 45, 47, 8, 209, 22, 63, 159, 73, 209, 141, 84, + 125, 71, 88, 28, 195, 161, 27, 208, 21, 212, 102, 131, 33, 171, 69, 27, 118, 156, 180, 175, 74, 8, 45, 167, 27, + 231, 82, 139, 152, 217, 34, 59, 171, 27, 42, 43, 120, 34, 48, 25, 250, 96, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1668, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3882339ebeca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9642f0866414ed4402e3d" + } + } + ] + }, + "cborHex": "bf463882339ebeca4bb9642f0866414ed4402e3dff", + "cborBytes": [191, 70, 56, 130, 51, 158, 190, 202, 75, 185, 100, 47, 8, 102, 65, 78, 212, 64, 46, 61, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1669, + "sample": { + "_tag": "ByteArray", + "bytearray": "ea0004" + }, + "cborHex": "43ea0004", + "cborBytes": [67, 234, 0, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1670, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13173552458644574195" + } + }, + "cborHex": "1bb6d1dc2a277bcff3", + "cborBytes": [27, 182, 209, 220, 42, 39, 123, 207, 243], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1671, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15455269776776515155" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2412743210497882717" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c04f76143ef45e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2907362345755258426" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b1c4895cacba69860" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3726212770750869501" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15219508450923439164" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bd67c25f9f8984e539fd905079fbf1b217bc92aabf63a5d47c04f76143ef45e1b285906a64c16ae3a499b1c4895cacba698601b33b62ac5ce212ffd1bd3368e4cb958e43cffffffff", + "cborBytes": [ + 216, 102, 159, 27, 214, 124, 37, 249, 248, 152, 78, 83, 159, 217, 5, 7, 159, 191, 27, 33, 123, 201, 42, 171, 246, + 58, 93, 71, 192, 79, 118, 20, 62, 244, 94, 27, 40, 89, 6, 166, 76, 22, 174, 58, 73, 155, 28, 72, 149, 202, 203, + 166, 152, 96, 27, 51, 182, 42, 197, 206, 33, 47, 253, 27, 211, 54, 142, 76, 185, 88, 228, 60, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1672, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b420d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a79c2d4c07c94c" + } + } + ] + }, + "cborHex": "bf43b420d347a79c2d4c07c94cff", + "cborBytes": [191, 67, 180, 32, 211, 71, 167, 156, 45, 76, 7, 201, 76, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1673, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12420201026156896205" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + }, + "cborHex": "d8669f1bac5d6b073b061fcd9f14ffff", + "cborBytes": [216, 102, 159, 27, 172, 93, 107, 7, 59, 6, 31, 205, 159, 20, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1674, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12230742596409450116" + } + }, + "cborHex": "1ba9bc539716395e84", + "cborBytes": [27, 169, 188, 83, 151, 22, 57, 94, 132], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1675, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6584093826410080232" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a8c070bac220d2405c713c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1570370068233887151" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6122286332017940425" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10433169888268671881" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7330441115229799142" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6268657239659925132" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11600264064350096721" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6760873090091987230" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12648224520547398556" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f85a124ba78b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14041040588388942891" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e39d16bb7d" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dab09403" + }, + { + "_tag": "ByteArray", + "bytearray": "9aeb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "374941030449999010" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3720597345657556901" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "66" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16690623503142312192" + } + }, + { + "_tag": "ByteArray", + "bytearray": "92" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8891461668000309138" + } + } + ] + }, + "cborHex": "9f1b5b5f66737b03e7e89f4ba8c070bac220d2405c713cffd8669f1b15cb1341c2fc9daf9fbf1b54f6bafb512897c91b90ca10bc6f8e5b891b65baf55b2030c2e61b56febe8bf49c4e8c1ba0fc6ab4a8510d511b5dd372413a6e311e1baf878530329cf39c46f85a124ba78b1bc2dbcc05c3c3c42b45e39d16bb7dff44dab09403429aeb1b05340ee173b0eca2ffffd8669f1b33a23792c42e0fa59f9f41661be7a101a5389559004192ffffff1b7b64d1472f291f92ff", + "cborBytes": [ + 159, 27, 91, 95, 102, 115, 123, 3, 231, 232, 159, 75, 168, 192, 112, 186, 194, 32, 210, 64, 92, 113, 60, 255, 216, + 102, 159, 27, 21, 203, 19, 65, 194, 252, 157, 175, 159, 191, 27, 84, 246, 186, 251, 81, 40, 151, 201, 27, 144, + 202, 16, 188, 111, 142, 91, 137, 27, 101, 186, 245, 91, 32, 48, 194, 230, 27, 86, 254, 190, 139, 244, 156, 78, + 140, 27, 160, 252, 106, 180, 168, 81, 13, 81, 27, 93, 211, 114, 65, 58, 110, 49, 30, 27, 175, 135, 133, 48, 50, + 156, 243, 156, 70, 248, 90, 18, 75, 167, 139, 27, 194, 219, 204, 5, 195, 195, 196, 43, 69, 227, 157, 22, 187, 125, + 255, 68, 218, 176, 148, 3, 66, 154, 235, 27, 5, 52, 14, 225, 115, 176, 236, 162, 255, 255, 216, 102, 159, 27, 51, + 162, 55, 146, 196, 46, 15, 165, 159, 159, 65, 102, 27, 231, 161, 1, 165, 56, 149, 89, 0, 65, 146, 255, 255, 255, + 27, 123, 100, 209, 71, 47, 41, 31, 146, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1676, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5678444677482797814" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "09baab143a48eabf" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "425e8ba47514a11d9bdfe7d4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "395e430302030576f803" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f13d8669f1b4ecde3593611daf69f4809baab143a48eabf800580bf080e0d4c425e8ba47514a11d9bdfe7d41bfffffffffffffff94a395e430302030576f803ffffffff", + "cborBytes": [ + 159, 19, 216, 102, 159, 27, 78, 205, 227, 89, 54, 17, 218, 246, 159, 72, 9, 186, 171, 20, 58, 72, 234, 191, 128, + 5, 128, 191, 8, 14, 13, 76, 66, 94, 139, 164, 117, 20, 161, 29, 155, 223, 231, 212, 27, 255, 255, 255, 255, 255, + 255, 255, 249, 74, 57, 94, 67, 3, 2, 3, 5, 118, 248, 3, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1677, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8947016978340876460" + } + } + ] + }, + "cborHex": "9f1b7c2a3089d96590acff", + "cborBytes": [159, 27, 124, 42, 48, 137, 217, 101, 144, 172, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1678, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0199e51b03" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3838340035840064851" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "430118628609520061" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1334719437933706264" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15766029766594500121" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2931" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0675dcdcfbaff8ab" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3001" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aaff0704" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6757515918094743545" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6287cfa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0302" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff4606ff0103ff" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be0a36ef" + }, + { + "_tag": "ByteArray", + "bytearray": "1a8f4232c11242028d71" + }, + { + "_tag": "ByteArray", + "bytearray": "2de733ecb5f55e" + }, + { + "_tag": "ByteArray", + "bytearray": "3c64fa4b561275" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12310151587820039883" + } + } + ] + } + } + ] + }, + "cborHex": "bf450199e51b03bf091b354485ed1b683d530c41031b05f8169d258c71bd1bfffffffffffffffe1b1285e041d4d8fc1841de1bdacc308a6c1996194229311bffffffffffffffec480675dcdcfbaff8abff4230010644aaff07041b5dc784ecb615b7f944b6287cfa42030247ff4606ff0103ff9f44be0a36ef4a1a8f4232c11242028d71472de733ecb5f55e473c64fa4b5612751baad671a5ab396ecbffff", + "cborBytes": [ + 191, 69, 1, 153, 229, 27, 3, 191, 9, 27, 53, 68, 133, 237, 27, 104, 61, 83, 12, 65, 3, 27, 5, 248, 22, 157, 37, + 140, 113, 189, 27, 255, 255, 255, 255, 255, 255, 255, 254, 27, 18, 133, 224, 65, 212, 216, 252, 24, 65, 222, 27, + 218, 204, 48, 138, 108, 25, 150, 25, 66, 41, 49, 27, 255, 255, 255, 255, 255, 255, 255, 236, 72, 6, 117, 220, 220, + 251, 175, 248, 171, 255, 66, 48, 1, 6, 68, 170, 255, 7, 4, 27, 93, 199, 132, 236, 182, 21, 183, 249, 68, 182, 40, + 124, 250, 66, 3, 2, 71, 255, 70, 6, 255, 1, 3, 255, 159, 68, 190, 10, 54, 239, 74, 26, 143, 66, 50, 193, 18, 66, + 2, 141, 113, 71, 45, 231, 51, 236, 181, 245, 94, 71, 60, 100, 250, 75, 86, 18, 117, 27, 170, 214, 113, 165, 171, + 57, 110, 203, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1679, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15978170332402174322" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a318678f013b2c66b8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6deac61877bc72a0be0a12" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4713953541915484822" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c4ee28" + }, + { + "_tag": "ByteArray", + "bytearray": "e87b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4334" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc66b5ab6ca9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8040601fe00ff0404" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16163344321247281680" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4036917530931697181" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bddbddd42e78449729fd905099f49a318678f013b2c66b89f4b6deac61877bc72a0be0a121b416b53c55191229643c4ee2842e87bffbf0742433446dc66b5ab6ca941cb49f8040601fe00ff04041be04fbc05ea458210ffffd8669f1b3806031b1abb161d80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 221, 189, 221, 66, 231, 132, 73, 114, 159, 217, 5, 9, 159, 73, 163, 24, 103, 143, 1, 59, 44, + 102, 184, 159, 75, 109, 234, 198, 24, 119, 188, 114, 160, 190, 10, 18, 27, 65, 107, 83, 197, 81, 145, 34, 150, 67, + 196, 238, 40, 66, 232, 123, 255, 191, 7, 66, 67, 52, 70, 220, 102, 181, 171, 108, 169, 65, 203, 73, 248, 4, 6, 1, + 254, 0, 255, 4, 4, 27, 224, 79, 188, 5, 234, 69, 130, 16, 255, 255, 216, 102, 159, 27, 56, 6, 3, 27, 26, 187, 22, + 29, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1680, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c98663af19" + } + ] + }, + "cborHex": "9f45c98663af19ff", + "cborBytes": [159, 69, 201, 134, 99, 175, 25, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1681, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1851043739170325216" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17799078243785314276" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9051d78c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18205527285394141969" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3997136027550505717" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09a497d136" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc2101" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1242562359431572790" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10603420745328079027" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0f8a8f59924f5d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13566314890211853855" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b19b03a7938f542e0d8669f1bf703075bf2350fe49f449051d78c1bfca7069bea9973111b3778ae0a11105af54509a497d136ffff43fc2101d87e9f1b113e77e1ed30ad361b9326eafd1149b0b3470f8a8f59924f5d1bbc453b83e62b861fffff", + "cborBytes": [ + 191, 27, 25, 176, 58, 121, 56, 245, 66, 224, 216, 102, 159, 27, 247, 3, 7, 91, 242, 53, 15, 228, 159, 68, 144, 81, + 215, 140, 27, 252, 167, 6, 155, 234, 153, 115, 17, 27, 55, 120, 174, 10, 17, 16, 90, 245, 69, 9, 164, 151, 209, + 54, 255, 255, 67, 252, 33, 1, 216, 126, 159, 27, 17, 62, 119, 225, 237, 48, 173, 54, 27, 147, 38, 234, 253, 17, + 73, 176, 179, 71, 15, 138, 143, 89, 146, 79, 93, 27, 188, 69, 59, 131, 230, 43, 134, 31, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1682, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7165856027109327807" + } + }, + "cborHex": "1b63723c171f7183bf", + "cborBytes": [27, 99, 114, 60, 23, 31, 113, 131, 191], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1683, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ab235c4fe2e013c9ea68" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8614279426024876615" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb2454003d9f4ec941c5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b178a30d8ffacb1515e3bec5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13514319470198679735" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf41bc9f4aab235c4fe2e013c9ea681b778c117f602b2a47ff4acb2454003d9f4ec941c5bf4cb178a30d8ffacb1515e3bec51bbb8c81f4ca5668b7ffff", + "cborBytes": [ + 191, 65, 188, 159, 74, 171, 35, 92, 79, 226, 224, 19, 201, 234, 104, 27, 119, 140, 17, 127, 96, 43, 42, 71, 255, + 74, 203, 36, 84, 0, 61, 159, 78, 201, 65, 197, 191, 76, 177, 120, 163, 13, 143, 250, 203, 21, 21, 227, 190, 197, + 27, 187, 140, 129, 244, 202, 86, 104, 183, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1684, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18390498157148544660" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4374481043248631232" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81f63614e5fcdda1103f58f1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5102650052309718304" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70812e48" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9086347426590061084" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13820151904569418554" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9572563839519653336" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69f78ee3649660e69ef6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10851000624652760896" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6805938360931257498" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15033808122983657875" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5319404196176863087" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2989002638490633741" + } + } + ] + }, + "cborHex": "9f1bff382ca30b509e94bf1b3cb54754f383cdc04c81f63614e5fcdda1103f58f11b46d04130050c95204470812e481b7e1930d7cbaf721c1bbfcb0aef55cc633a1b84d894182c517dd84a69f78ee3649660e69ef61b96967f93b9f837401b5e738ce13e830c9a1bd0a2d0d5d7d2b1931b49d251eed9d81f6fff1b297b121033f0860dff", + "cborBytes": [ + 159, 27, 255, 56, 44, 163, 11, 80, 158, 148, 191, 27, 60, 181, 71, 84, 243, 131, 205, 192, 76, 129, 246, 54, 20, + 229, 252, 221, 161, 16, 63, 88, 241, 27, 70, 208, 65, 48, 5, 12, 149, 32, 68, 112, 129, 46, 72, 27, 126, 25, 48, + 215, 203, 175, 114, 28, 27, 191, 203, 10, 239, 85, 204, 99, 58, 27, 132, 216, 148, 24, 44, 81, 125, 216, 74, 105, + 247, 142, 227, 100, 150, 96, 230, 158, 246, 27, 150, 150, 127, 147, 185, 248, 55, 64, 27, 94, 115, 140, 225, 62, + 131, 12, 154, 27, 208, 162, 208, 213, 215, 210, 177, 147, 27, 73, 210, 81, 238, 217, 216, 31, 111, 255, 27, 41, + 123, 18, 16, 51, 240, 134, 13, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1685, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5608964559428187163" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dbfa1b360b787e6fe2f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17591603942110372905" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3013dfcc735eb64951c1" + }, + { + "_tag": "ByteArray", + "bytearray": "5b40" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12224696649741782028" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b9e5caa3cbf15d0d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7235344401919876196" + } + } + ] + } + } + ] + }, + "cborHex": "bf03a01b4dd70b8c9a78f41b4adbfa1b360b787e6fe2f81bf421ee94bed9a4299f4a3013dfcc735eb64951c1425b401ba9a6d8d56ec44c0c48b9e5caa3cbf15d0d1b64691b66280b9c64ffff", + "cborBytes": [ + 191, 3, 160, 27, 77, 215, 11, 140, 154, 120, 244, 27, 74, 219, 250, 27, 54, 11, 120, 126, 111, 226, 248, 27, 244, + 33, 238, 148, 190, 217, 164, 41, 159, 74, 48, 19, 223, 204, 115, 94, 182, 73, 81, 193, 66, 91, 64, 27, 169, 166, + 216, 213, 110, 196, 76, 12, 72, 185, 229, 202, 163, 203, 241, 93, 13, 27, 100, 105, 27, 102, 40, 11, 156, 100, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1686, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18159849393787714872" + } + }, + "cborHex": "1bfc04becf034f3d38", + "cborBytes": [27, 252, 4, 190, 207, 3, 79, 61, 56], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1687, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10652030655074817649" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12714116967053966043" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7853556156984359919" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10786702224209841799" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16950593222916972431" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2568fdac043482d62689" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4536174724404643015" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a5b65d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "736182d122" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5671867577720893246" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5837249176447471263" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11793189370990833846" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c604036c033c55fa0702fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18308498958934907698" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "663c" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0110a36c0217" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b93d39d71a44e56719f9f1bb0719e04ee04badb1b6cfd6fb700a27befffd8669f1b95b21085c3f18e879f1beb3c9aba681c1f8f4a2568fdac043482d626891b3ef3bae0cf3e84c7ffffffff9fa0bf1bfffffffffffffff514ff43a5b65dbf0c45736182d12212071b4eb68582d71bef3e0f1b51021332eb97ce9f41031ba3a9d33ffad230b64bc604036c033c55fa0702fc1bfe14daccf1ec9b3242663cff460110a36c0217ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 147, 211, 157, 113, 164, 78, 86, 113, 159, 159, 27, 176, 113, 158, 4, 238, 4, 186, 219, + 27, 108, 253, 111, 183, 0, 162, 123, 239, 255, 216, 102, 159, 27, 149, 178, 16, 133, 195, 241, 142, 135, 159, 27, + 235, 60, 154, 186, 104, 28, 31, 143, 74, 37, 104, 253, 172, 4, 52, 130, 214, 38, 137, 27, 62, 243, 186, 224, 207, + 62, 132, 199, 255, 255, 255, 255, 159, 160, 191, 27, 255, 255, 255, 255, 255, 255, 255, 245, 20, 255, 67, 165, + 182, 93, 191, 12, 69, 115, 97, 130, 209, 34, 18, 7, 27, 78, 182, 133, 130, 215, 27, 239, 62, 15, 27, 81, 2, 19, + 50, 235, 151, 206, 159, 65, 3, 27, 163, 169, 211, 63, 250, 210, 48, 182, 75, 198, 4, 3, 108, 3, 60, 85, 250, 7, 2, + 252, 27, 254, 20, 218, 204, 241, 236, 155, 50, 66, 102, 60, 255, 70, 1, 16, 163, 108, 2, 23, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1688, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd7701f3cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "167172e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f588d43240c860" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18112103558417239581" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + ] + }, + "cborHex": "d905009f9fbf45cd7701f3cb44167172e547f588d43240c8601bfb5b1e396e8c4e1dffff1bfffffffffffffff2ff", + "cborBytes": [ + 217, 5, 0, 159, 159, 191, 69, 205, 119, 1, 243, 203, 68, 22, 113, 114, 229, 71, 245, 136, 212, 50, 64, 200, 96, + 27, 251, 91, 30, 57, 110, 140, 78, 29, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1689, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "43db9c934a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d5f2870ba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61524b3cfcfdf200648a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4404936834658076252" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5751864a6a1c81" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af99d8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5144418532850331504" + } + } + } + ] + }, + "cborHex": "bf4543db9c934a454d5f2870ba4a61524b3cfcfdf200648ad8669f1b3d217ab677d4065c9f475751864a6a1c81ffff43af99d81b4764a5663a7aef70ff", + "cborBytes": [ + 191, 69, 67, 219, 156, 147, 74, 69, 77, 95, 40, 112, 186, 74, 97, 82, 75, 60, 252, 253, 242, 0, 100, 138, 216, + 102, 159, 27, 61, 33, 122, 182, 119, 212, 6, 92, 159, 71, 87, 81, 134, 74, 106, 28, 129, 255, 255, 67, 175, 153, + 216, 27, 71, 100, 165, 102, 58, 122, 239, 112, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1690, + "sample": { + "_tag": "ByteArray", + "bytearray": "0e31c1d3fb4a160d2e046c09" + }, + "cborHex": "4c0e31c1d3fb4a160d2e046c09", + "cborBytes": [76, 14, 49, 193, 211, 251, 74, 22, 13, 46, 4, 108, 9], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1691, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6631028364811675113" + } + }, + "cborHex": "1b5c06252a4423a5e9", + "cborBytes": [27, 92, 6, 37, 42, 68, 35, 165, 233], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1692, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "538ca9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3432704019454257908" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5ba7" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b8143668" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14127641345055149256" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7b7888fb" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2653761730047566279" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c069aff8fb7c62ea1fb23eb2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "211780538269735695" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d84d7d12845fb10" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15954080627707413158" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9486749462047237057" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14713278798825304052" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2647226470002587195" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1134940075371678174" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3663253073496629795" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee0cbec49b424b9288f560" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5900636690716464322" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57f3bf889d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7839455623336820333" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a5202f7b55c7bfc748c36" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7873590946663620617" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e19d5adcf8e09d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5623510944568776778" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3391095213423121199" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16878991795717822853" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14187634958416248916" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5628766910050969467" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f43538ca9d8669f1b2fa36a1e52a06af49f425ba7ffff44b81436689f1bc40f76f3ae224cc8447b7888fba0ffd8669f1b24d40e3bb602e1c79f4cc069aff8fb7c62ea1fb23eb2bf1b02f0654709e89b0f488d84d7d12845fb101bdd6847cd747102a61b83a7b45f6e7423c1ff1bcc30111cfd44aff4bf1b24bcd672e883f63b1b0fc01dfc41e249de1b32d67d42f81fe2234bee0cbec49b424b9288f5601b51e345ceaaca94c24557f3bf889d1b6ccb575aad6dfe6d4b5a5202f7b55c7bfc748c361b6d449d3ffa9de00947e19d5adcf8e09dffbf1b4e0ab968d18b184a1b2f0f97213b9cd32f1bea3e399c067e59851bc4e49ad34b50805442ec211b4e1d65aea50fa77bffffffff", + "cborBytes": [ + 159, 67, 83, 140, 169, 216, 102, 159, 27, 47, 163, 106, 30, 82, 160, 106, 244, 159, 66, 91, 167, 255, 255, 68, + 184, 20, 54, 104, 159, 27, 196, 15, 118, 243, 174, 34, 76, 200, 68, 123, 120, 136, 251, 160, 255, 216, 102, 159, + 27, 36, 212, 14, 59, 182, 2, 225, 199, 159, 76, 192, 105, 175, 248, 251, 124, 98, 234, 31, 178, 62, 178, 191, 27, + 2, 240, 101, 71, 9, 232, 155, 15, 72, 141, 132, 215, 209, 40, 69, 251, 16, 27, 221, 104, 71, 205, 116, 113, 2, + 166, 27, 131, 167, 180, 95, 110, 116, 35, 193, 255, 27, 204, 48, 17, 28, 253, 68, 175, 244, 191, 27, 36, 188, 214, + 114, 232, 131, 246, 59, 27, 15, 192, 29, 252, 65, 226, 73, 222, 27, 50, 214, 125, 66, 248, 31, 226, 35, 75, 238, + 12, 190, 196, 155, 66, 75, 146, 136, 245, 96, 27, 81, 227, 69, 206, 170, 202, 148, 194, 69, 87, 243, 191, 136, + 157, 27, 108, 203, 87, 90, 173, 109, 254, 109, 75, 90, 82, 2, 247, 181, 92, 123, 252, 116, 140, 54, 27, 109, 68, + 157, 63, 250, 157, 224, 9, 71, 225, 157, 90, 220, 248, 224, 157, 255, 191, 27, 78, 10, 185, 104, 209, 139, 24, 74, + 27, 47, 15, 151, 33, 59, 156, 211, 47, 27, 234, 62, 57, 156, 6, 126, 89, 133, 27, 196, 228, 154, 211, 75, 80, 128, + 84, 66, 236, 33, 27, 78, 29, 101, 174, 165, 15, 167, 123, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1693, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4032902976503206023" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92" + } + } + ] + }, + "cborHex": "bf1b37f7bfe3d016d0874192ff", + "cborBytes": [191, 27, 55, 247, 191, 227, 208, 22, 208, 135, 65, 146, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1694, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3643884099519484197" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11b492d1088e9181dff40e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4117277106361935639" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13642993445335602665" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1ab3179eb33c" + }, + { + "_tag": "ByteArray", + "bytearray": "46d9ac73250c70" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1681533444598127086" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15630965465029134469" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15391183271511500534" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f650ec7c7e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e261332f" + } + } + ] + }, + "cborHex": "bf1b3291ad484a8d91254b11b492d1088e9181dff40e1b392381b6c68d2717d8669f1bbd55a6413e3615e99f461ab3179eb33c4746d9ac73250c701b175601c23b35d9ee1bd8ec58462775c8851bd59877a3b360a6f6ffff45f650ec7c7e44e261332fff", + "cborBytes": [ + 191, 27, 50, 145, 173, 72, 74, 141, 145, 37, 75, 17, 180, 146, 209, 8, 142, 145, 129, 223, 244, 14, 27, 57, 35, + 129, 182, 198, 141, 39, 23, 216, 102, 159, 27, 189, 85, 166, 65, 62, 54, 21, 233, 159, 70, 26, 179, 23, 158, 179, + 60, 71, 70, 217, 172, 115, 37, 12, 112, 27, 23, 86, 1, 194, 59, 53, 217, 238, 27, 216, 236, 88, 70, 39, 117, 200, + 133, 27, 213, 152, 119, 163, 179, 96, 166, 246, 255, 255, 69, 246, 80, 236, 124, 126, 68, 226, 97, 51, 47, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1695, + "sample": { + "_tag": "ByteArray", + "bytearray": "02f919feb1" + }, + "cborHex": "4502f919feb1", + "cborBytes": [69, 2, 249, 25, 254, 177], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1696, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1107012287531442872" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc068400ec" + } + } + ] + }, + "cborHex": "bf001b0f5ce5cf704de2b80e45fc068400ecff", + "cborBytes": [191, 0, 27, 15, 92, 229, 207, 112, 77, 226, 184, 14, 69, 252, 6, 132, 0, 236, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1697, + "sample": { + "_tag": "ByteArray", + "bytearray": "2061299cb776cfb2ccce48" + }, + "cborHex": "4b2061299cb776cfb2ccce48", + "cborBytes": [75, 32, 97, 41, 156, 183, 118, 207, 178, 204, 206, 72], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1698, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10204037814052920766" + } + }, + "cborHex": "1b8d9c06541d471dbe", + "cborBytes": [27, 141, 156, 6, 84, 29, 71, 29, 190], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1699, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4b6592b250fe144a94218f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17069716441865245202" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a9c41ca302c03ff5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b1769b9ed94b76" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e5272f6753d3f9" + }, + { + "_tag": "ByteArray", + "bytearray": "e3b1a67c04db04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7423394579965090329" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9393436601622789135" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9368536114193677448" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7200579772722027139" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dffab899f276" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13191346038884300249" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16464406990958852012" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5643934425816640336" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17739172883489356494" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc5277c66782a549baec" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4679ba" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15211154611643619082" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14741872061545456888" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9f4b4b6592b250fe144a94218f1bece3d0aa2605d21248a9c41ca302c03ff59f47b1769b9ed94b769f47e5272f6753d3f947e3b1a67c04db041b6705320a26611a19ffd8669f1b825c30d213e0fc0f9f1b8203b9f58feebc88ffffd8669f1b63ed992729f59a839f46dffab899f2761bb7111354e4f475d9ffffbf1be47d52ed158f77ac1b4e5348751a662b501bf62e33c0599fface4afc5277c66782a549baecffff9f434679bad8669f1bd318e086f290170a9f1bcc95a688c0ac24f8ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 75, 75, 101, 146, 178, 80, 254, 20, 74, 148, 33, + 143, 27, 236, 227, 208, 170, 38, 5, 210, 18, 72, 169, 196, 28, 163, 2, 192, 63, 245, 159, 71, 177, 118, 155, 158, + 217, 75, 118, 159, 71, 229, 39, 47, 103, 83, 211, 249, 71, 227, 177, 166, 124, 4, 219, 4, 27, 103, 5, 50, 10, 38, + 97, 26, 25, 255, 216, 102, 159, 27, 130, 92, 48, 210, 19, 224, 252, 15, 159, 27, 130, 3, 185, 245, 143, 238, 188, + 136, 255, 255, 216, 102, 159, 27, 99, 237, 153, 39, 41, 245, 154, 131, 159, 70, 223, 250, 184, 153, 242, 118, 27, + 183, 17, 19, 84, 228, 244, 117, 217, 255, 255, 191, 27, 228, 125, 82, 237, 21, 143, 119, 172, 27, 78, 83, 72, 117, + 26, 102, 43, 80, 27, 246, 46, 51, 192, 89, 159, 250, 206, 74, 252, 82, 119, 198, 103, 130, 165, 73, 186, 236, 255, + 255, 159, 67, 70, 121, 186, 216, 102, 159, 27, 211, 24, 224, 134, 242, 144, 23, 10, 159, 27, 204, 149, 166, 136, + 192, 172, 36, 248, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1700, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9428734074555653845" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10086037457188820715" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b4b86fc8d6b02afd90" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ae9a48a037d953ab835bb36e" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11555521224740844256" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c51889ccdd259fc2a59" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1358903128023605642" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7673217557415576082" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6052384495774264958" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050a9f9f9f1b82d997af6b82ded51b8bf8cda1130616eb49b4b86fc8d6b02afd90ff4cae9a48a037d953ab835bb36e80bf1ba05d7554832a32e04a3c51889ccdd259fc2a59ffd8669f1b12dbcb31f603a18a9f1b6a7cbeb6ca0bc2121b53fe63a1cab4ee7effffffff", + "cborBytes": [ + 217, 5, 10, 159, 159, 159, 27, 130, 217, 151, 175, 107, 130, 222, 213, 27, 139, 248, 205, 161, 19, 6, 22, 235, 73, + 180, 184, 111, 200, 214, 176, 42, 253, 144, 255, 76, 174, 154, 72, 160, 55, 217, 83, 171, 131, 91, 179, 110, 128, + 191, 27, 160, 93, 117, 84, 131, 42, 50, 224, 74, 60, 81, 136, 156, 205, 210, 89, 252, 42, 89, 255, 216, 102, 159, + 27, 18, 219, 203, 49, 246, 3, 161, 138, 159, 27, 106, 124, 190, 182, 202, 11, 194, 18, 27, 83, 254, 99, 161, 202, + 180, 238, 126, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1701, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14944062366897962351" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c5cc6de12e29bd8ace91962" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1487ebcc2f87" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fa" + } + ] + }, + "cborHex": "9f1bcf63f98bb03c7d6f4c1c5cc6de12e29bd8ace91962809f461487ebcc2f87ff41faff", + "cborBytes": [ + 159, 27, 207, 99, 249, 139, 176, 60, 125, 111, 76, 28, 92, 198, 222, 18, 226, 155, 216, 172, 233, 25, 98, 128, + 159, 70, 20, 135, 235, 204, 47, 135, 255, 65, 250, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1702, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6893890662638109956" + } + }, + "cborHex": "1b5fac050842ed4504", + "cborBytes": [27, 95, 172, 5, 8, 66, 237, 69, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1703, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6668311468999841257" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2218483716888963249" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4068486569259381151" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9764122008772773509" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91a14d" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "079607f807" + } + ] + } + ] + }, + "cborHex": "9f9fd9050d9f1b5c8a99f3696615e9ffbf1b1ec9a32fbd27a8b11b38762afa9e27319f1b8781213c047986854391a14dff45079607f807ffff", + "cborBytes": [ + 159, 159, 217, 5, 13, 159, 27, 92, 138, 153, 243, 105, 102, 21, 233, 255, 191, 27, 30, 201, 163, 47, 189, 39, 168, + 177, 27, 56, 118, 42, 250, 158, 39, 49, 159, 27, 135, 129, 33, 60, 4, 121, 134, 133, 67, 145, 161, 77, 255, 69, 7, + 150, 7, 248, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1704, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02fbce45069407" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13662102741041388032" + } + } + ] + } + } + ] + }, + "cborHex": "bf4702fbce45069407d8669f1bfffffffffffffff29f1bbd998a0edca99a00ffffff", + "cborBytes": [ + 191, 71, 2, 251, 206, 69, 6, 148, 7, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 189, 153, + 138, 14, 220, 169, 154, 0, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1705, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3883135244936642338" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13502692634160921464" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "384324e942" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16286937101240895617" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ab2" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6938011135921351091" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11775856957272561122" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7647771359315558695" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11742640212055222668" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b599cda5a549b88e0730bab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10900137122880467558" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d038f8ca533" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "560b0d5e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9901517102576516489" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b20122700d39" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "239ffbdcb13172f071cd95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4a784d7795d71ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13094672962223857831" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f492901d6f3438c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95d8bea38087" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b35e3aaee793f7f22bf1bbb6333691271fb7845384324e9421be206d3006e980881425ab2ff1b6048c45e744be9b31ba36c3f82f00b15e21b6a2257881b690127801ba2f63d0ec4c4e98cbf4c4b599cda5a549b88e0730bab1b974510f63c56b2664251c5464d038f8ca53344560b0d5e1b8969415824873d8946b20122700d394b239ffbdcb13172f071cd9548c4a784d7795d71ce1bb5b99fae3b43e0a748f492901d6f3438c14695d8bea38087ffff", + "cborBytes": [ + 191, 27, 53, 227, 170, 238, 121, 63, 127, 34, 191, 27, 187, 99, 51, 105, 18, 113, 251, 120, 69, 56, 67, 36, 233, + 66, 27, 226, 6, 211, 0, 110, 152, 8, 129, 66, 90, 178, 255, 27, 96, 72, 196, 94, 116, 75, 233, 179, 27, 163, 108, + 63, 130, 240, 11, 21, 226, 27, 106, 34, 87, 136, 27, 105, 1, 39, 128, 27, 162, 246, 61, 14, 196, 196, 233, 140, + 191, 76, 75, 89, 156, 218, 90, 84, 155, 136, 224, 115, 11, 171, 27, 151, 69, 16, 246, 60, 86, 178, 102, 66, 81, + 197, 70, 77, 3, 143, 140, 165, 51, 68, 86, 11, 13, 94, 27, 137, 105, 65, 88, 36, 135, 61, 137, 70, 178, 1, 34, + 112, 13, 57, 75, 35, 159, 251, 220, 177, 49, 114, 240, 113, 205, 149, 72, 196, 167, 132, 215, 121, 93, 113, 206, + 27, 181, 185, 159, 174, 59, 67, 224, 167, 72, 244, 146, 144, 29, 111, 52, 56, 193, 70, 149, 216, 190, 163, 128, + 135, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1706, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ba28adee73" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3f2f28dc54649d3f40d282" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1010085213484937427" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4273719228389907093" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7993369079730865070" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1445401572903343077" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9453864679785085616" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7361507131806688155" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36f5a6ebdb55" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12969293903214705809" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "825bc3758177ac1ab1f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13065305297830893996" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13700064645401690480" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4c36a182c6b7" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5449919635371037694" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2bbc93a585feb6db4897677d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16898732926413483158" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12807286209917555768" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3831715129816936951" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3a4640236b93" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6168506121541108891" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0e27012ee9ec5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15860126297228280367" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9754388894471770337" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "707dbd3360508f6a75" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "843c978ef8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4101027530292597978" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c3e98" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2860124438759906855" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9531600374934561846" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5ba3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2006765480930085360" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6461082273221234199" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17346266242272283668" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f70a746e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + } + ] + } + ] + }, + "cborHex": "9f45ba28adee739f9f4b3f2f28dc54649d3f40d2821b0e048b2666a4f0d31b3b4f4cfebdefda951b6eee26d3cbf303aeffbf1b140f19128eb1d3e51b8332dfd66933bab01b662953bbc2d7a39b4636f5a6ebdb551bb3fc301738c07c914a825bc3758177ac1ab1f91bb55149f2073d59ac1bbe2068357d0e4170ff9f464c36a182c6b7ffd8669f1b4ba2010890b793fe9f4c2bbc93a585feb6db4897677d1bea845c103112ac961bb1bc9ef3b6e514381b352cfc9bf93a71f7463a4640236b93ffffff9fbf1b559aefa2a947c49b47a0e27012ee9ec51bdc1a7cd6371f822f1b875e8d04c00150e149707dbd3360508f6a75416e45843c978ef81b38e9c6cf853014daffbf438c3e9841a1ffd8669f1b27b1340601b29e279f1b84470c0a58f46436425ba31b1bd97692965a89f01b59aa60185fecce171bf0ba513e2dfd4c14ffffff44f70a746ebf1bffffffffffffffff0effff", + "cborBytes": [ + 159, 69, 186, 40, 173, 238, 115, 159, 159, 75, 63, 47, 40, 220, 84, 100, 157, 63, 64, 210, 130, 27, 14, 4, 139, + 38, 102, 164, 240, 211, 27, 59, 79, 76, 254, 189, 239, 218, 149, 27, 110, 238, 38, 211, 203, 243, 3, 174, 255, + 191, 27, 20, 15, 25, 18, 142, 177, 211, 229, 27, 131, 50, 223, 214, 105, 51, 186, 176, 27, 102, 41, 83, 187, 194, + 215, 163, 155, 70, 54, 245, 166, 235, 219, 85, 27, 179, 252, 48, 23, 56, 192, 124, 145, 74, 130, 91, 195, 117, + 129, 119, 172, 26, 177, 249, 27, 181, 81, 73, 242, 7, 61, 89, 172, 27, 190, 32, 104, 53, 125, 14, 65, 112, 255, + 159, 70, 76, 54, 161, 130, 198, 183, 255, 216, 102, 159, 27, 75, 162, 1, 8, 144, 183, 147, 254, 159, 76, 43, 188, + 147, 165, 133, 254, 182, 219, 72, 151, 103, 125, 27, 234, 132, 92, 16, 49, 18, 172, 150, 27, 177, 188, 158, 243, + 182, 229, 20, 56, 27, 53, 44, 252, 155, 249, 58, 113, 247, 70, 58, 70, 64, 35, 107, 147, 255, 255, 255, 159, 191, + 27, 85, 154, 239, 162, 169, 71, 196, 155, 71, 160, 226, 112, 18, 238, 158, 197, 27, 220, 26, 124, 214, 55, 31, + 130, 47, 27, 135, 94, 141, 4, 192, 1, 80, 225, 73, 112, 125, 189, 51, 96, 80, 143, 106, 117, 65, 110, 69, 132, 60, + 151, 142, 248, 27, 56, 233, 198, 207, 133, 48, 20, 218, 255, 191, 67, 140, 62, 152, 65, 161, 255, 216, 102, 159, + 27, 39, 177, 52, 6, 1, 178, 158, 39, 159, 27, 132, 71, 12, 10, 88, 244, 100, 54, 66, 91, 163, 27, 27, 217, 118, + 146, 150, 90, 137, 240, 27, 89, 170, 96, 24, 95, 236, 206, 23, 27, 240, 186, 81, 62, 45, 253, 76, 20, 255, 255, + 255, 68, 247, 10, 116, 110, 191, 27, 255, 255, 255, 255, 255, 255, 255, 255, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1707, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff680ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1708, + "sample": { + "_tag": "ByteArray", + "bytearray": "83035606" + }, + "cborHex": "4483035606", + "cborBytes": [68, 131, 3, 86, 6], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1709, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17133755335689043165" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9766f207a5ad6c65238fa0a5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0bd6a6e6c3a6d38442c3f9" + }, + { + "_tag": "ByteArray", + "bytearray": "6a40a1" + }, + { + "_tag": "ByteArray", + "bytearray": "2d1fd88797659f36" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16480245295118344627" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "306570523800640908" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c1" + }, + { + "_tag": "ByteArray", + "bytearray": "23e5eb15d810" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b32039e7832d75f3a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9703382747367579208" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95b2c74d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8786963439530312170" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9202c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14552444885738137301" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb48c57dff6f0345d10374" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ea3b50e2964a21c3aab46" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ffa0faf01a020000ff04" + } + ] + }, + "cborHex": "d8799f1bedc753b30432fcdd9f4c9766f207a5ad6c65238fa0a59f4b0bd6a6e6c3a6d38442c3f9436a40a1482d1fd88797659f36ffd8669f1be4b597c7a2d4e1b39f1b0441284461be1d8cffff41c14623e5eb15d810ffbf498b32039e7832d75f3a1b86a95732b07f9e484495b2c74d1b79f190b1638c81ea43c9202c1bc9f4ab857bdf26d54bfb48c57dff6f0345d103744b6ea3b50e2964a21c3aab46ff4affa0faf01a020000ff04ff", + "cborBytes": [ + 216, 121, 159, 27, 237, 199, 83, 179, 4, 50, 252, 221, 159, 76, 151, 102, 242, 7, 165, 173, 108, 101, 35, 143, + 160, 165, 159, 75, 11, 214, 166, 230, 195, 166, 211, 132, 66, 195, 249, 67, 106, 64, 161, 72, 45, 31, 216, 135, + 151, 101, 159, 54, 255, 216, 102, 159, 27, 228, 181, 151, 199, 162, 212, 225, 179, 159, 27, 4, 65, 40, 68, 97, + 190, 29, 140, 255, 255, 65, 193, 70, 35, 229, 235, 21, 216, 16, 255, 191, 73, 139, 50, 3, 158, 120, 50, 215, 95, + 58, 27, 134, 169, 87, 50, 176, 127, 158, 72, 68, 149, 178, 199, 77, 27, 121, 241, 144, 177, 99, 140, 129, 234, 67, + 201, 32, 44, 27, 201, 244, 171, 133, 123, 223, 38, 213, 75, 251, 72, 197, 125, 255, 111, 3, 69, 209, 3, 116, 75, + 110, 163, 181, 14, 41, 100, 162, 28, 58, 171, 70, 255, 74, 255, 160, 250, 240, 26, 2, 0, 0, 255, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1710, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "471852166288099948" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13965496530781874753" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1628702792654371057" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14831506196074910822" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2039106340141074186" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15514460871966573752" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2552393507919917278" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d308b120a69031" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2088818570916214387" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15077608638816839330" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8772516810244014977" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14104139128165369450" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c5724" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12854530905748556226" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6552292988495784946" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "89671d6ed7dfaec8c6478d" + } + ] + } + } + ] + }, + "cborHex": "bf1b068c5b0b9619ca6c1bc1cf691a35342a411b169a508f88d9b8f19f1bcdd4184dfd0cd466ff1b1c4c5c69a75b070a1bd74e6ff6c343c4b81b236bec5f4e9470de9f47d308b120a690311b1cfcf96c57b336731bd13e6d2c2309e6a2ff1b79be3d8f64bcc381bf1bc3bbf7cf64fc066a430c5724ff1bb26477c0a76c49c2d8669f1b5aee6bc1eb92ebf29f4b89671d6ed7dfaec8c6478dffffff", + "cborBytes": [ + 191, 27, 6, 140, 91, 11, 150, 25, 202, 108, 27, 193, 207, 105, 26, 53, 52, 42, 65, 27, 22, 154, 80, 143, 136, 217, + 184, 241, 159, 27, 205, 212, 24, 77, 253, 12, 212, 102, 255, 27, 28, 76, 92, 105, 167, 91, 7, 10, 27, 215, 78, + 111, 246, 195, 67, 196, 184, 27, 35, 107, 236, 95, 78, 148, 112, 222, 159, 71, 211, 8, 177, 32, 166, 144, 49, 27, + 28, 252, 249, 108, 87, 179, 54, 115, 27, 209, 62, 109, 44, 35, 9, 230, 162, 255, 27, 121, 190, 61, 143, 100, 188, + 195, 129, 191, 27, 195, 187, 247, 207, 100, 252, 6, 106, 67, 12, 87, 36, 255, 27, 178, 100, 119, 192, 167, 108, + 73, 194, 216, 102, 159, 27, 90, 238, 107, 193, 235, 146, 235, 242, 159, 75, 137, 103, 29, 110, 215, 223, 174, 200, + 198, 71, 141, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1711, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3340840415225195213" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb655113087a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18265634572621224380" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16e23866da9fdb6b5867" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18321808176466695496" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7739487233925500727" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "138a3b9e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5384750504841037283" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9229839116148831509" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14231228477861242196" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4460fe10a5df4bb330313d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9033159894557352139" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "79590032220360639" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5793873475232088207" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "546026091325855053" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3799298080081040695" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14154615927410021234" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16793381591478697534" + } + }, + { + "_tag": "ByteArray", + "bytearray": "515f65038f9e33aa3bc566" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16762646695327638251" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4026272993743756669" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f80bf1b2e5d0ca838c42acd46fb655113087a1bfd7c91de4a2e99bc4a16e23866da9fdb6b58671bfe442376a12515481b6b682ea239cccf37ff44138a3b9e9f80801b4aba7a0df527c5e31b8016f9c63c0e7515ff9fd8669f1bc57f7ae67c57a5549f4b4460fe10a5df4bb330313d1b7d5c3b107a6560cb1b011ac2b66e280fbf1b5067f93a7cc4408f1b0793dfd64b92954dffffd8669f1b34b9d1796b0dd5379f1bc46f4c310d5c53721be90e139511abfe3e4b515f65038f9e33aa3bc5661be8a0e25b6a6122eb1b37e031f4a8d85d7dffffffff", + "cborBytes": [ + 159, 128, 191, 27, 46, 93, 12, 168, 56, 196, 42, 205, 70, 251, 101, 81, 19, 8, 122, 27, 253, 124, 145, 222, 74, + 46, 153, 188, 74, 22, 226, 56, 102, 218, 159, 219, 107, 88, 103, 27, 254, 68, 35, 118, 161, 37, 21, 72, 27, 107, + 104, 46, 162, 57, 204, 207, 55, 255, 68, 19, 138, 59, 158, 159, 128, 128, 27, 74, 186, 122, 13, 245, 39, 197, 227, + 27, 128, 22, 249, 198, 60, 14, 117, 21, 255, 159, 216, 102, 159, 27, 197, 127, 122, 230, 124, 87, 165, 84, 159, + 75, 68, 96, 254, 16, 165, 223, 75, 179, 48, 49, 61, 27, 125, 92, 59, 16, 122, 101, 96, 203, 27, 1, 26, 194, 182, + 110, 40, 15, 191, 27, 80, 103, 249, 58, 124, 196, 64, 143, 27, 7, 147, 223, 214, 75, 146, 149, 77, 255, 255, 216, + 102, 159, 27, 52, 185, 209, 121, 107, 13, 213, 55, 159, 27, 196, 111, 76, 49, 13, 92, 83, 114, 27, 233, 14, 19, + 149, 17, 171, 254, 62, 75, 81, 95, 101, 3, 143, 158, 51, 170, 59, 197, 102, 27, 232, 160, 226, 91, 106, 97, 34, + 235, 27, 55, 224, 49, 244, 168, 216, 93, 125, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1712, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2169199657929422348" + } + }, + "cborHex": "1b1e1a8b9891c8360c", + "cborBytes": [27, 30, 26, 139, 152, 145, 200, 54, 12], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1713, + "sample": { + "_tag": "ByteArray", + "bytearray": "ed02e40104e6ff07fef903d7" + }, + "cborHex": "4ced02e40104e6ff07fef903d7", + "cborBytes": [76, 237, 2, 228, 1, 4, 230, 255, 7, 254, 249, 3, 215], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1714, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0fa8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07dc4eb709d5ae40d3d0cc" + } + } + ] + }, + "cborHex": "bf43d0fa8f4b07dc4eb709d5ae40d3d0ccff", + "cborBytes": [191, 67, 208, 250, 143, 75, 7, 220, 78, 183, 9, 213, 174, 64, 211, 208, 204, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1715, + "sample": { + "_tag": "ByteArray", + "bytearray": "bf69f261365b" + }, + "cborHex": "46bf69f261365b", + "cborBytes": [70, 191, 105, 242, 97, 54, 91], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1716, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17378930820290221507" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9112011245105033402" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4766916546627382602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4566887115239465442" + } + }, + { + "_tag": "ByteArray", + "bytearray": "648422bf5b6ea03f619e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1008750065178734839" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dd2d0c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2215161913201499134" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c1e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c36c90a8d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8e8ebc434aa8d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b12b39c0d1bc4763f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5a3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c84fc22b8060df1b9dc6633a" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bf12e5d80e77c95c39fd8669f1b7e745df32dd9b0ba9fd8669f1b42277d57cba82d4a9f1b3f60d7a2892821e24a648422bf5b6ea03f619effffd8669f1b0dffccd6f62170f79f43dd2d0c1b1ebdd6060c599bfeffffbf420c1e455c36c90a8d47b8e8ebc434aa8d49b12b39c0d1bc4763f242e5a34cc84fc22b8060df1b9dc6633aff80ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 241, 46, 93, 128, 231, 124, 149, 195, 159, 216, 102, 159, 27, 126, 116, 93, 243, 45, 217, 176, + 186, 159, 216, 102, 159, 27, 66, 39, 125, 87, 203, 168, 45, 74, 159, 27, 63, 96, 215, 162, 137, 40, 33, 226, 74, + 100, 132, 34, 191, 91, 110, 160, 63, 97, 158, 255, 255, 216, 102, 159, 27, 13, 255, 204, 214, 246, 33, 112, 247, + 159, 67, 221, 45, 12, 27, 30, 189, 214, 6, 12, 89, 155, 254, 255, 255, 191, 66, 12, 30, 69, 92, 54, 201, 10, 141, + 71, 184, 232, 235, 196, 52, 170, 141, 73, 177, 43, 57, 192, 209, 188, 71, 99, 242, 66, 229, 163, 76, 200, 79, 194, + 43, 128, 96, 223, 27, 157, 198, 99, 58, 255, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1717, + "sample": { + "_tag": "ByteArray", + "bytearray": "2803e950" + }, + "cborHex": "442803e950", + "cborBytes": [68, 40, 3, 233, 80], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1718, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07212ef5eb017d2062022f21" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7722735403921685404" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dc396d9eb725929f90b0e1d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15512058983249537096" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac0e3f3458dc7a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11124328390323370544" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1512439707755578891" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "23244425" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "246ed0a0ed98c610a2fd6f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f205382bec9f18fe3af94cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "137efd7ceee1d9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "645465ec09ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4015085472784571197" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8989" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5093639233225350342" + } + } + } + ] + }, + "cborHex": "bf4c07212ef5eb017d2062022f21d8669f1b6b2caaeedd15bb9c9f4cdc396d9eb725929f90b0e1d81bd745e775777ee84847ac0e3f3458dc7a1b9a618dbb56047a301b14fd43e6a4f7860bffff44232444259f4b246ed0a0ed98c610a2fd6fff4c5f205382bec9f18fe3af94cc47137efd7ceee1d946645465ec09ab1b37b872f6f427db3d4289891b46b03de53663dcc6ff", + "cborBytes": [ + 191, 76, 7, 33, 46, 245, 235, 1, 125, 32, 98, 2, 47, 33, 216, 102, 159, 27, 107, 44, 170, 238, 221, 21, 187, 156, + 159, 76, 220, 57, 109, 158, 183, 37, 146, 159, 144, 176, 225, 216, 27, 215, 69, 231, 117, 119, 126, 232, 72, 71, + 172, 14, 63, 52, 88, 220, 122, 27, 154, 97, 141, 187, 86, 4, 122, 48, 27, 20, 253, 67, 230, 164, 247, 134, 11, + 255, 255, 68, 35, 36, 68, 37, 159, 75, 36, 110, 208, 160, 237, 152, 198, 16, 162, 253, 111, 255, 76, 95, 32, 83, + 130, 190, 201, 241, 143, 227, 175, 148, 204, 71, 19, 126, 253, 124, 238, 225, 217, 70, 100, 84, 101, 236, 9, 171, + 27, 55, 184, 114, 246, 244, 39, 219, 61, 66, 137, 137, 27, 70, 176, 61, 229, 54, 99, 220, 198, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1719, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6575870938733695777" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2523881608119150258" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e8f32072358d8f3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9327689146785726624" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0fd0e4e6646c266a1d345ff1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14871394625726207791" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14229060396146727432" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16933737128095523242" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16111379485283589844" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10711768943435025839" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14750457372222405665" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb5b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15129801155358248968" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1804650223155526153" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7468376670370815293" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14666735601551071555" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5849837731223077921" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10472834586002939854" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5461113900718500543" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4739847923343308621" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "614c47" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5531295258979104141" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87c08b4eceeb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b13b00d6d514336690" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92e21b85797e1e7884" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d5137" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b147e9ece788c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7087674148311455950" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4f761e59331a0a8cef59a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10220791711172320125" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b5b422fc7400953219fbf1b2306a0f3531566b2480e8f32072358d8f31b81729bdbd96e00a04c0fd0e4e6646c266a1d345ff11bce61ce9ebd10572f1bc577c70a9fe79a081beb00b832fffa21aa4183ffa01bdf971e47b5d81ed4d8669f1b94a7d919c5818daf9fbf1bccb426d429dbbc2142eb5b1bd1f7d9fd5b6c500841b9ffa0bf1b190b67d10703ba091b67a5010336445d3d1bcb8ab6526906d9431b512ecc6c3b3a8421ff801b9156fb918a215fceffff9f80bf1b4bc9c62892462abf1b41c75292d040374dffbf43614c471b4cc31bbb6340758d4687c08b4eceeb49b13b00d6d5143366904992e21b85797e1e7884439d513747b147e9ece788c11b625c7a15f5d2d8ce4bd4f761e59331a0a8cef59a1b8dd78be8c3aedb7dff80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 91, 66, 47, 199, 64, 9, 83, 33, 159, 191, 27, 35, 6, 160, 243, 83, 21, 102, 178, 72, 14, 143, + 50, 7, 35, 88, 216, 243, 27, 129, 114, 155, 219, 217, 110, 0, 160, 76, 15, 208, 228, 230, 100, 108, 38, 106, 29, + 52, 95, 241, 27, 206, 97, 206, 158, 189, 16, 87, 47, 27, 197, 119, 199, 10, 159, 231, 154, 8, 27, 235, 0, 184, 50, + 255, 250, 33, 170, 65, 131, 255, 160, 27, 223, 151, 30, 71, 181, 216, 30, 212, 216, 102, 159, 27, 148, 167, 217, + 25, 197, 129, 141, 175, 159, 191, 27, 204, 180, 38, 212, 41, 219, 188, 33, 66, 235, 91, 27, 209, 247, 217, 253, + 91, 108, 80, 8, 65, 185, 255, 160, 191, 27, 25, 11, 103, 209, 7, 3, 186, 9, 27, 103, 165, 1, 3, 54, 68, 93, 61, + 27, 203, 138, 182, 82, 105, 6, 217, 67, 27, 81, 46, 204, 108, 59, 58, 132, 33, 255, 128, 27, 145, 86, 251, 145, + 138, 33, 95, 206, 255, 255, 159, 128, 191, 27, 75, 201, 198, 40, 146, 70, 42, 191, 27, 65, 199, 82, 146, 208, 64, + 55, 77, 255, 191, 67, 97, 76, 71, 27, 76, 195, 27, 187, 99, 64, 117, 141, 70, 135, 192, 139, 78, 206, 235, 73, + 177, 59, 0, 214, 213, 20, 51, 102, 144, 73, 146, 226, 27, 133, 121, 126, 30, 120, 132, 67, 157, 81, 55, 71, 177, + 71, 233, 236, 231, 136, 193, 27, 98, 92, 122, 21, 245, 210, 216, 206, 75, 212, 247, 97, 229, 147, 49, 160, 168, + 206, 245, 154, 27, 141, 215, 139, 232, 195, 174, 219, 125, 255, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1720, + "sample": { + "_tag": "ByteArray", + "bytearray": "f0bfd3dc3f76" + }, + "cborHex": "46f0bfd3dc3f76", + "cborBytes": [70, 240, 191, 211, 220, 63, 118], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1721, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13897264672322594105" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11813516669579029248" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1c867971dbd938f1948f1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17387453094473397360" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17261381299137597699" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0f069bf2ebed" + }, + { + "_tag": "ByteArray", + "bytearray": "44ac7d1d4c5266" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8600116140911454595" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15252795520859102975" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2963965836467081508" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3785467424369083502" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f1bc0dd0096af5fa5391ba3f20ad1fe69eb004bc1c867971dbd938f1948f1ffd8669f1bf14ca4777cda747080ffd8669f1bef8cbed63baad10380ffa0ff460f069bf2ebed4744ac7d1d4c52661b7759c010962169839fbf1bd3acd0b6a479deff1b29221f3979039124ff1b3488ae90f255046effff", + "cborBytes": [ + 159, 159, 159, 27, 192, 221, 0, 150, 175, 95, 165, 57, 27, 163, 242, 10, 209, 254, 105, 235, 0, 75, 193, 200, 103, + 151, 29, 189, 147, 143, 25, 72, 241, 255, 216, 102, 159, 27, 241, 76, 164, 119, 124, 218, 116, 112, 128, 255, 216, + 102, 159, 27, 239, 140, 190, 214, 59, 170, 209, 3, 128, 255, 160, 255, 70, 15, 6, 155, 242, 235, 237, 71, 68, 172, + 125, 29, 76, 82, 102, 27, 119, 89, 192, 16, 150, 33, 105, 131, 159, 191, 27, 211, 172, 208, 182, 164, 121, 222, + 255, 27, 41, 34, 31, 57, 121, 3, 145, 36, 255, 27, 52, 136, 174, 144, 242, 85, 4, 110, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1722, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2979045905476632943" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "158358e35552ce608d0e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10607578259960220509" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41802be8da33ae1dd24d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3055832829758369894" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de8eaced" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5469732236618814411" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15727936102300008988" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b07f9451" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f1b2957b277a584416f9f9f4a158358e35552ce608d0eff1b9335b039e015cb5dbf4a41802be8da33ae1dd24d1b2a687fc4a6b9706644de8eaced1b4be8647d442ad3cbffd8669f1bda44da8e0ba2421c80ff44b07f9451ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 27, 41, 87, 178, 119, 165, 132, 65, 111, 159, 159, + 74, 21, 131, 88, 227, 85, 82, 206, 96, 141, 14, 255, 27, 147, 53, 176, 57, 224, 21, 203, 93, 191, 74, 65, 128, 43, + 232, 218, 51, 174, 29, 210, 77, 27, 42, 104, 127, 196, 166, 185, 112, 102, 68, 222, 142, 172, 237, 27, 75, 232, + 100, 125, 68, 42, 211, 203, 255, 216, 102, 159, 27, 218, 68, 218, 142, 11, 162, 66, 28, 128, 255, 68, 176, 127, + 148, 81, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1723, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a0c31f85cb0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16612971459857561606" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b00ccbe306edc04f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8efc708e9f81179a79da09" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eed6cdbb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10532269914332329556" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6080115932633189367" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10294918393292634511" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fce6c9c9272f4f1ce9b3121" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10868070624092578771" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f0922107fa6d08" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9470233517087123376" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6254553079557927621" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15095960134290702144" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6769535780875441424" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "433635823309453229" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64cd56c810a1dd1cf3c6c2" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bc3d25ec7ac445f233c11e82" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79fbf466a0c31f85cb01be68d21860083380648b00ccbe306edc04f4b8efc708e9f81179a79da0944eed6cdbb1b922a23af4a4ff654ff1b5460e93a15cb4bf7d8669f1b8edee5bbdfd7b98f9fbf4c1fce6c9c9272f4f1ce9b31211b96d324a6aee563d3ff47f0922107fa6d08d8669f1b836d073555f9e7b080ff1b56cca2e347e032c59f1bd17f9fc2a3daff401b5df238ed196095101b0604957bda3e77ad4b64cd56c810a1dd1cf3c6c2ffffff4cbc3d25ec7ac445f233c11e82ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 191, 70, 106, 12, 49, 248, 92, 176, 27, 230, 141, + 33, 134, 0, 131, 56, 6, 72, 176, 12, 203, 227, 6, 237, 192, 79, 75, 142, 252, 112, 142, 159, 129, 23, 154, 121, + 218, 9, 68, 238, 214, 205, 187, 27, 146, 42, 35, 175, 74, 79, 246, 84, 255, 27, 84, 96, 233, 58, 21, 203, 75, 247, + 216, 102, 159, 27, 142, 222, 229, 187, 223, 215, 185, 143, 159, 191, 76, 31, 206, 108, 156, 146, 114, 244, 241, + 206, 155, 49, 33, 27, 150, 211, 36, 166, 174, 229, 99, 211, 255, 71, 240, 146, 33, 7, 250, 109, 8, 216, 102, 159, + 27, 131, 109, 7, 53, 85, 249, 231, 176, 128, 255, 27, 86, 204, 162, 227, 71, 224, 50, 197, 159, 27, 209, 127, 159, + 194, 163, 218, 255, 64, 27, 93, 242, 56, 237, 25, 96, 149, 16, 27, 6, 4, 149, 123, 218, 62, 119, 173, 75, 100, + 205, 86, 200, 16, 161, 221, 28, 243, 198, 194, 255, 255, 255, 76, 188, 61, 37, 236, 122, 196, 69, 242, 51, 193, + 30, 130, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1724, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16728334163127484066" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "65f5db392f07f04f9f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13499786273844628912" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8198890283665444794" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10679386824958534307" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dd85238277911183eb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15544199435297382724" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16361934240208964889" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5585674231678764354" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d8848d064f6676" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15720691343796471522" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4987458285137451785" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "06590c2e4345ea425bcebe" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10172221805659347448" + } + }, + { + "_tag": "ByteArray", + "bytearray": "382778649a6685f96a94" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9fd8669f1be826fb4a753ebea29fbf4965f5db392f07f04f9f1bbb58e01754340db0ff1b71c84f45fe47cfba9f1b9434cdbc48a3e2a349dd85238277911183eb1bd7b817079aba6144ffffffd8669f1be311448091f4cd199f1b4d844d1e9a44054247d8848d064f6676ffff9fbf1bda2b1d7c428c06e21b453702e2b9b25b09ff4b06590c2e4345ea425bcebeff1b8d2afdd666ced9f84a382778649a6685f96a94ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 216, 102, 159, 27, 232, 38, 251, 74, 117, 62, 190, + 162, 159, 191, 73, 101, 245, 219, 57, 47, 7, 240, 79, 159, 27, 187, 88, 224, 23, 84, 52, 13, 176, 255, 27, 113, + 200, 79, 69, 254, 71, 207, 186, 159, 27, 148, 52, 205, 188, 72, 163, 226, 163, 73, 221, 133, 35, 130, 119, 145, + 17, 131, 235, 27, 215, 184, 23, 7, 154, 186, 97, 68, 255, 255, 255, 216, 102, 159, 27, 227, 17, 68, 128, 145, 244, + 205, 25, 159, 27, 77, 132, 77, 30, 154, 68, 5, 66, 71, 216, 132, 141, 6, 79, 102, 118, 255, 255, 159, 191, 27, + 218, 43, 29, 124, 66, 140, 6, 226, 27, 69, 55, 2, 226, 185, 178, 91, 9, 255, 75, 6, 89, 12, 46, 67, 69, 234, 66, + 91, 206, 190, 255, 27, 141, 42, 253, 214, 102, 206, 217, 248, 74, 56, 39, 120, 100, 154, 102, 133, 249, 106, 148, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1725, + "sample": { + "_tag": "ByteArray", + "bytearray": "b0ee57e80f71872b44" + }, + "cborHex": "49b0ee57e80f71872b44", + "cborBytes": [73, 176, 238, 87, 232, 15, 113, 135, 43, 68], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1726, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12774039925325156560" + } + }, + "cborHex": "1bb14681a1dfa9d0d0", + "cborBytes": [27, 177, 70, 129, 161, 223, 169, 208, 208], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1727, + "sample": { + "_tag": "ByteArray", + "bytearray": "863dd5c5e23db8aeac6147f5" + }, + "cborHex": "4c863dd5c5e23db8aeac6147f5", + "cborBytes": [76, 134, 61, 213, 197, 226, 61, 184, 174, 172, 97, 71, 245], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1728, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6715186525444714620" + } + }, + "cborHex": "1b5d312290f99f307c", + "cborBytes": [27, 93, 49, 34, 144, 249, 159, 48, 124], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1729, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6639649392443609973" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2bf4187859fbe2c449b1aa43" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14990518651388162113" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "140d6784e545f8bd5d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "989def927b0b8840b3b74123" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7aef1e30af9d70e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5bf5230f0d630" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7870886040896675770" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16903561264692244955" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aafe5f9b9325be21f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + ] + } + } + ] + }, + "cborHex": "bf05bf1b5c24c5f1adbd53754c2bf4187859fbe2c449b1aa431bd009054a4edbf04149140d6784e545f8bd5d4c989def927b0b8840b3b7412348f7aef1e30af9d70e47d5bf5230f0d6301b6d3b0127073a1fbaff0ea01bea9583694d08b1db9f49aafe5f9b9325be21f81bfffffffffffffff6ffff", + "cborBytes": [ + 191, 5, 191, 27, 92, 36, 197, 241, 173, 189, 83, 117, 76, 43, 244, 24, 120, 89, 251, 226, 196, 73, 177, 170, 67, + 27, 208, 9, 5, 74, 78, 219, 240, 65, 73, 20, 13, 103, 132, 229, 69, 248, 189, 93, 76, 152, 157, 239, 146, 123, 11, + 136, 64, 179, 183, 65, 35, 72, 247, 174, 241, 227, 10, 249, 215, 14, 71, 213, 191, 82, 48, 240, 214, 48, 27, 109, + 59, 1, 39, 7, 58, 31, 186, 255, 14, 160, 27, 234, 149, 131, 105, 77, 8, 177, 219, 159, 73, 170, 254, 95, 155, 147, + 37, 190, 33, 248, 27, 255, 255, 255, 255, 255, 255, 255, 246, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1730, + "sample": { + "_tag": "ByteArray", + "bytearray": "e40501f9034a0507430203" + }, + "cborHex": "4be40501f9034a0507430203", + "cborBytes": [75, 228, 5, 1, 249, 3, 74, 5, 7, 67, 2, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1731, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3421430845151507625" + } + }, + "cborHex": "1b2f7b5d39e4d1f4a9", + "cborBytes": [27, 47, 123, 93, 57, 228, 209, 244, 169], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1732, + "sample": { + "_tag": "ByteArray", + "bytearray": "95106494c9b82a" + }, + "cborHex": "4795106494c9b82a", + "cborBytes": [71, 149, 16, 100, 148, 201, 184, 42], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1733, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7276338756730194107" + } + }, + "cborHex": "1b64fabf8c2c4f88bb", + "cborBytes": [27, 100, 250, 191, 140, 44, 79, 136, 187], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1734, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6182786850116352835" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3169030849696420410" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + }, + "cborHex": "d8669f1b55cdabe1e3243b439f071b2bfaa8c47e68d23a11ffff", + "cborBytes": [ + 216, 102, 159, 27, 85, 205, 171, 225, 227, 36, 59, 67, 159, 7, 27, 43, 250, 168, 196, 126, 104, 210, 58, 17, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1735, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "841196166349493976" + } + }, + "cborHex": "1b0bac8774d9ae96d8", + "cborBytes": [27, 11, 172, 135, 116, 217, 174, 150, 216], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1736, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1251909462223636412" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17826176019537063064" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15263450641730081684" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "40a00662" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3589940196950943011" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c16a3b545a878da946be76" + }, + { + "_tag": "ByteArray", + "bytearray": "84" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b115fad05e2ca47bc9f1bf7634ca48417ec98d8669f1bd3d2ab7d4b0793949f9f4440a006621b31d20796bc2825234bc16a3b545a878da946be764184ff80ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 17, 95, 173, 5, 226, 202, 71, 188, 159, 27, 247, 99, 76, 164, 132, 23, 236, 152, 216, 102, 159, + 27, 211, 210, 171, 125, 75, 7, 147, 148, 159, 159, 68, 64, 160, 6, 98, 27, 49, 210, 7, 150, 188, 40, 37, 35, 75, + 193, 106, 59, 84, 90, 135, 141, 169, 70, 190, 118, 65, 132, 255, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1737, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "619252571466535875" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15a6e8ace499e6917f6367" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3185616287186496960" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1093357419192801930" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3995286617648079974" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2229653047737894226" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f43ae2a555c46a5fab3ad740" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12321483691681986540" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9570324200190564885" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14102070404445728024" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51112c6d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16669994886580684224" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e137" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17984854640616448739" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8" + } + } + ] + } + ] + }, + "cborHex": "d905059f80bf1b089806eecc8293c34b15a6e8ace499e6917f6367ff801b2c35952294732dc0bf1b0f2c62c7a7865a8a1b37721c02c4c924661b1ef151a23ac8c5524cf43ae2a555c46a5fab3ad7401baafeb422b47937ec1b84d09f2781aeda151bc3b49e511e896d184451112c6d1be757b807263845c042e1371bf9970a01fefaa2e341d8ffff", + "cborBytes": [ + 217, 5, 5, 159, 128, 191, 27, 8, 152, 6, 238, 204, 130, 147, 195, 75, 21, 166, 232, 172, 228, 153, 230, 145, 127, + 99, 103, 255, 128, 27, 44, 53, 149, 34, 148, 115, 45, 192, 191, 27, 15, 44, 98, 199, 167, 134, 90, 138, 27, 55, + 114, 28, 2, 196, 201, 36, 102, 27, 30, 241, 81, 162, 58, 200, 197, 82, 76, 244, 58, 226, 165, 85, 196, 106, 95, + 171, 58, 215, 64, 27, 170, 254, 180, 34, 180, 121, 55, 236, 27, 132, 208, 159, 39, 129, 174, 218, 21, 27, 195, + 180, 158, 81, 30, 137, 109, 24, 68, 81, 17, 44, 109, 27, 231, 87, 184, 7, 38, 56, 69, 192, 66, 225, 55, 27, 249, + 151, 10, 1, 254, 250, 162, 227, 65, 216, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1738, + "sample": { + "_tag": "ByteArray", + "bytearray": "b10e766f9eab" + }, + "cborHex": "46b10e766f9eab", + "cborBytes": [70, 177, 14, 118, 111, 158, 171], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1739, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9756222667818120457" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "98bd36dc17552d14dbcc64" + }, + { + "_tag": "ByteArray", + "bytearray": "dc4f13aace231b93912a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9478140330140116348" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2372500634214993683" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18348920794384059461" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b706fd" + }, + { + "_tag": "ByteArray", + "bytearray": "f882df03" + }, + { + "_tag": "ByteArray", + "bytearray": "0003" + }, + { + "_tag": "ByteArray", + "bytearray": "6b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7706bc0fd81" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12c6b160a65a8e" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a49f510702c1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7988088638023668454" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7b2a78da" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c876782f5748d315b002" + }, + { + "_tag": "ByteArray", + "bytearray": "58d1c264c15fe0a61d3af4c5" + } + ] + }, + "cborHex": "9fd905059fd8669f1b876510d360e9b5099f4b98bd36dc17552d14dbcc644adc4f13aace231b93912a1b83891e69b54e257c1b20ecd0c1bbc60f131bfea4763ee90a4c45ffff9f43b706fd44f882df03420003416bff1bffffffffffffffefbf46a7706bc0fd814712c6b160a65a8effff9f9f46a49f510702c1ff1b6edb644b27bc12e64106ff9f447b2a78da80ff4ac876782f5748d315b0024c58d1c264c15fe0a61d3af4c5ff", + "cborBytes": [ + 159, 217, 5, 5, 159, 216, 102, 159, 27, 135, 101, 16, 211, 96, 233, 181, 9, 159, 75, 152, 189, 54, 220, 23, 85, + 45, 20, 219, 204, 100, 74, 220, 79, 19, 170, 206, 35, 27, 147, 145, 42, 27, 131, 137, 30, 105, 181, 78, 37, 124, + 27, 32, 236, 208, 193, 187, 198, 15, 19, 27, 254, 164, 118, 62, 233, 10, 76, 69, 255, 255, 159, 67, 183, 6, 253, + 68, 248, 130, 223, 3, 66, 0, 3, 65, 107, 255, 27, 255, 255, 255, 255, 255, 255, 255, 239, 191, 70, 167, 112, 107, + 192, 253, 129, 71, 18, 198, 177, 96, 166, 90, 142, 255, 255, 159, 159, 70, 164, 159, 81, 7, 2, 193, 255, 27, 110, + 219, 100, 75, 39, 188, 18, 230, 65, 6, 255, 159, 68, 123, 42, 120, 218, 128, 255, 74, 200, 118, 120, 47, 87, 72, + 211, 21, 176, 2, 76, 88, 209, 194, 100, 193, 95, 224, 166, 29, 58, 244, 197, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1740, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4092374913227562838" + } + }, + "cborHex": "1b38cb094d1ea61f56", + "cborBytes": [27, 56, 203, 9, 77, 30, 166, 31, 86], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1741, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4157820291873315114" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9aee06a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15325911773368457985" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a7e9693583d7b93d0" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3038740914362792836" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "2724b4ea" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "92406278147764153" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "48700af1" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b39b38b86c105192a9f0ebf44a9aee06a1bd4b0938ec69a9b0142b9ed492a7e9693583d7b93d0ffd8669f1b2a2bc6c2fd0a3b8480ff442724b4ead8669f1b01484b0538036fb99f9f4448700af1ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 57, 179, 139, 134, 193, 5, 25, 42, 159, 14, 191, 68, 169, 174, 224, 106, 27, 212, 176, 147, + 142, 198, 154, 155, 1, 66, 185, 237, 73, 42, 126, 150, 147, 88, 61, 123, 147, 208, 255, 216, 102, 159, 27, 42, 43, + 198, 194, 253, 10, 59, 132, 128, 255, 68, 39, 36, 180, 234, 216, 102, 159, 27, 1, 72, 75, 5, 56, 3, 111, 185, 159, + 159, 68, 72, 112, 10, 241, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1742, + "sample": { + "_tag": "ByteArray", + "bytearray": "02fefeb8" + }, + "cborHex": "4402fefeb8", + "cborBytes": [68, 2, 254, 254, 184], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1743, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16032936231720035980" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0a01060af9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + ] + }, + "cborHex": "d8669f1bde806e8e7e29a68c9f450a01060af91bffffffffffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 222, 128, 110, 142, 126, 41, 166, 140, 159, 69, 10, 1, 6, 10, 249, 27, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1744, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "662d79312b77" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5823490661268887970" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80d084" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a55fb7ba602f68c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "400f52149c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9aa01dec7a82bc7c9c1521f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "007904b3034b" + } + } + ] + } + ] + }, + "cborHex": "9fbf46662d79312b771b50d131e6f9bc99a24380d08403488a55fb7ba602f68c45400f52149c4c9aa01dec7a82bc7c9c1521f746007904b3034bffff", + "cborBytes": [ + 159, 191, 70, 102, 45, 121, 49, 43, 119, 27, 80, 209, 49, 230, 249, 188, 153, 162, 67, 128, 208, 132, 3, 72, 138, + 85, 251, 123, 166, 2, 246, 140, 69, 64, 15, 82, 20, 156, 76, 154, 160, 29, 236, 122, 130, 188, 124, 156, 21, 33, + 247, 70, 0, 121, 4, 179, 3, 75, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1745, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4411419604370391864" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16815509478623684606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10050743403859582728" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0bacd85fdd25d96ae2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7524029918149350967" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17d864f67a990e331ec8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c97567de412f7d4d0e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18232764494348802593" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15921745960718331195" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3989050451799788540" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2325eb7d" + }, + { + "_tag": "ByteArray", + "bytearray": "9b710183271163dba7b7d4" + }, + { + "_tag": "ByteArray", + "bytearray": "030d780ea0cbfc27" + } + ] + } + } + ] + }, + "cborHex": "bf1b3d3882c1e9b10338bf1be95cb0c7469427fe1b8b7b69dfeba69f08490bacd85fdd25d96ae21b686ab958b6b41637410c4a17d864f67a990e331ec849c97567de412f7d4d0e1bfd07cab4cf03da21ff1bdcf5679820a06d3b41fa1bfffffffffffffff6d8669f1b375bf44042a34bfc9f442325eb7d4b9b710183271163dba7b7d448030d780ea0cbfc27ffffff", + "cborBytes": [ + 191, 27, 61, 56, 130, 193, 233, 177, 3, 56, 191, 27, 233, 92, 176, 199, 70, 148, 39, 254, 27, 139, 123, 105, 223, + 235, 166, 159, 8, 73, 11, 172, 216, 95, 221, 37, 217, 106, 226, 27, 104, 106, 185, 88, 182, 180, 22, 55, 65, 12, + 74, 23, 216, 100, 246, 122, 153, 14, 51, 30, 200, 73, 201, 117, 103, 222, 65, 47, 125, 77, 14, 27, 253, 7, 202, + 180, 207, 3, 218, 33, 255, 27, 220, 245, 103, 152, 32, 160, 109, 59, 65, 250, 27, 255, 255, 255, 255, 255, 255, + 255, 246, 216, 102, 159, 27, 55, 91, 244, 64, 66, 163, 75, 252, 159, 68, 35, 37, 235, 125, 75, 155, 113, 1, 131, + 39, 17, 99, 219, 167, 183, 212, 72, 3, 13, 120, 14, 160, 203, 252, 39, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1746, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1570873530029831215" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "498c314935f3e613" + }, + { + "_tag": "ByteArray", + "bytearray": "dd9d16" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6107123484358351607" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12343969169267542123" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6919064264915007991" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f084993159008676e8b1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2485443418761001398" + } + }, + { + "_tag": "ByteArray", + "bytearray": "14d78078a2c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9802068584481964066" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0d019699b0f1" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b15ccdd27187df42f9f48498c314935f3e61343dd9d16d8669f1b54c0dc73bca01af780ffd8669f1bab4e968eec90c86b80ffd8669f1b6005744a485bb9f79f4af084993159008676e8b19f1b227e119ef494f9b64614d78078a2c71b8807f171aa104022ff460d019699b0f180ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 21, 204, 221, 39, 24, 125, 244, 47, 159, 72, 73, 140, 49, 73, 53, 243, 230, 19, 67, 221, 157, + 22, 216, 102, 159, 27, 84, 192, 220, 115, 188, 160, 26, 247, 128, 255, 216, 102, 159, 27, 171, 78, 150, 142, 236, + 144, 200, 107, 128, 255, 216, 102, 159, 27, 96, 5, 116, 74, 72, 91, 185, 247, 159, 74, 240, 132, 153, 49, 89, 0, + 134, 118, 232, 177, 159, 27, 34, 126, 17, 158, 244, 148, 249, 182, 70, 20, 215, 128, 120, 162, 199, 27, 136, 7, + 241, 113, 170, 16, 64, 34, 255, 70, 13, 1, 150, 153, 176, 241, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1747, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16062262475763925028" + }, + "fields": [] + }, + "cborHex": "d8669f1bdee89e9ec4fec02480ff", + "cborBytes": [216, 102, 159, 27, 222, 232, 158, 158, 196, 254, 192, 36, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1748, + "sample": { + "_tag": "ByteArray", + "bytearray": "0b" + }, + "cborHex": "410b", + "cborBytes": [65, 11], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1749, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a0f7bbcbe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7279cb678fd7a0f77dc18603" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "33fb4488b0a1e23d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1071509488365145178" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6239093d142b3abc006a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "153340067112913876" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76bd1937344aab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd96fba77d41" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18304365565515840434" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3ee9de3f27fd80415f9b8d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6500690115534987768" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5076811836432487058" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b77e0d21c537ceb3656" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1818274286652924572" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5beac8ebf1ad1d32240fde" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6759400243714579331" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96a3986203384d26fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cd7db0c9409d9d46a8c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b53a53" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc7c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf955bb253fa12a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70255f8f7dd3361770a23b27" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11144400559371082009" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a6e8f7444923ac663" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5ee6c212d7146f27c6" + }, + { + "_tag": "ByteArray", + "bytearray": "57a4725e25d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12726879769622445993" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18114855365380627639" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14799073326756531251" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15599877525163437872" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d49a3e" + }, + { + "_tag": "ByteArray", + "bytearray": "c28e3f3f6c67" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10635646426944832667" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2431c7298750df84a824055e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17917715915940109785" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a428" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c102" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc0601" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef4e595f5b6100a0f71dc024" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f7104fe" + } + } + ] + } + ] + }, + "cborHex": "9fd9050d9fbf450a0f7bbcbe4c7279cb678fd7a0f77dc186034833fb4488b0a1e23d1b0edec433db770c5a4a6239093d142b3abc006a1b0220c5fa86198bd44776bd1937344aab46dd96fba77d4141bc1bfe062b804b76bbb24ce3ee9de3f27fd80415f9b8d51b5a371737cb5b21f8ffd8669f1b46747577960e929280ffbf4a0b77e0d21c537ceb36561b193bced4802ca29c4b5beac8ebf1ad1d32240fde1b5dce36b5754bdb834996a3986203384d26fc4a9cd7db0c9409d9d46a8c43b53a5342bc7c48cf955bb253fa12a54c70255f8f7dd3361770a23b27ffffd8669f1b9aa8dd435ffa59199f9f496a6e8f7444923ac663ff9f495ee6c212d7146f27c64657a4725e25d31bb09ef5b877737fa9ffd8669f1bfb64e4fa6b175cb780ffd8669f1bcd60dec826480c3380ff9f1bd87de5f51af76f3043d49a3e46c28e3f3f6c67ffffff9f9f1b9399681342b3049b4c2431c7298750df84a824055eff1bf8a883b183f91dd9ff42a428bf42c10243fc06014cef4e595f5b6100a0f71dc024446f7104feffff", + "cborBytes": [ + 159, 217, 5, 13, 159, 191, 69, 10, 15, 123, 188, 190, 76, 114, 121, 203, 103, 143, 215, 160, 247, 125, 193, 134, + 3, 72, 51, 251, 68, 136, 176, 161, 226, 61, 27, 14, 222, 196, 51, 219, 119, 12, 90, 74, 98, 57, 9, 61, 20, 43, 58, + 188, 0, 106, 27, 2, 32, 197, 250, 134, 25, 139, 212, 71, 118, 189, 25, 55, 52, 74, 171, 70, 221, 150, 251, 167, + 125, 65, 65, 188, 27, 254, 6, 43, 128, 75, 118, 187, 178, 76, 227, 238, 157, 227, 242, 127, 216, 4, 21, 249, 184, + 213, 27, 90, 55, 23, 55, 203, 91, 33, 248, 255, 216, 102, 159, 27, 70, 116, 117, 119, 150, 14, 146, 146, 128, 255, + 191, 74, 11, 119, 224, 210, 28, 83, 124, 235, 54, 86, 27, 25, 59, 206, 212, 128, 44, 162, 156, 75, 91, 234, 200, + 235, 241, 173, 29, 50, 36, 15, 222, 27, 93, 206, 54, 181, 117, 75, 219, 131, 73, 150, 163, 152, 98, 3, 56, 77, 38, + 252, 74, 156, 215, 219, 12, 148, 9, 217, 212, 106, 140, 67, 181, 58, 83, 66, 188, 124, 72, 207, 149, 91, 178, 83, + 250, 18, 165, 76, 112, 37, 95, 143, 125, 211, 54, 23, 112, 162, 59, 39, 255, 255, 216, 102, 159, 27, 154, 168, + 221, 67, 95, 250, 89, 25, 159, 159, 73, 106, 110, 143, 116, 68, 146, 58, 198, 99, 255, 159, 73, 94, 230, 194, 18, + 215, 20, 111, 39, 198, 70, 87, 164, 114, 94, 37, 211, 27, 176, 158, 245, 184, 119, 115, 127, 169, 255, 216, 102, + 159, 27, 251, 100, 228, 250, 107, 23, 92, 183, 128, 255, 216, 102, 159, 27, 205, 96, 222, 200, 38, 72, 12, 51, + 128, 255, 159, 27, 216, 125, 229, 245, 26, 247, 111, 48, 67, 212, 154, 62, 70, 194, 142, 63, 63, 108, 103, 255, + 255, 255, 159, 159, 27, 147, 153, 104, 19, 66, 179, 4, 155, 76, 36, 49, 199, 41, 135, 80, 223, 132, 168, 36, 5, + 94, 255, 27, 248, 168, 131, 177, 131, 249, 29, 217, 255, 66, 164, 40, 191, 66, 193, 2, 67, 252, 6, 1, 76, 239, 78, + 89, 95, 91, 97, 0, 160, 247, 29, 192, 36, 68, 111, 113, 4, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1750, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1282015244259784332" + } + }, + "cborHex": "1b11caa2127ebd768c", + "cborBytes": [27, 17, 202, 162, 18, 126, 189, 118, 140], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1751, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14928513632001549390" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12978910841095757054" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17207761107703172822" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10681531515620847618" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0d95ce90120e27e3e4e47a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5745925258746603839" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a1e555" + }, + { + "_tag": "ByteArray", + "bytearray": "a0c5" + } + ] + }, + "cborHex": "d8669f1bcf2cbc0dbc07644e9f1bb41e5aa50efa9cfe1beece3f8e8c6e0ed6d8669f1b943c6c51fdb870029f4b0d95ce90120e27e3e4e47a1b4fbda0946189293fffff43a1e55542a0c5ffff", + "cborBytes": [ + 216, 102, 159, 27, 207, 44, 188, 13, 188, 7, 100, 78, 159, 27, 180, 30, 90, 165, 14, 250, 156, 254, 27, 238, 206, + 63, 142, 140, 110, 14, 214, 216, 102, 159, 27, 148, 60, 108, 81, 253, 184, 112, 2, 159, 75, 13, 149, 206, 144, 18, + 14, 39, 227, 228, 228, 122, 27, 79, 189, 160, 148, 97, 137, 41, 63, 255, 255, 67, 161, 229, 85, 66, 160, 197, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1752, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0788e04e3a22fdc379f523" + }, + { + "_tag": "ByteArray", + "bytearray": "e6f905" + }, + { + "_tag": "ByteArray", + "bytearray": "1601aa9b06b65155" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68b2018803f9d798" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12359162322479780892" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8228290789985818755" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb900e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + } + ] + }, + "cborHex": "bf059f4b0788e04e3a22fdc379f52343e6f905481601aa9b06b6515509ff119f414b0d09ff4868b2018803f9d798d905029f1bab8490a690cc941c1b7230c2e0cdb91883ff43fb900e1bfffffffffffffff9ff", + "cborBytes": [ + 191, 5, 159, 75, 7, 136, 224, 78, 58, 34, 253, 195, 121, 245, 35, 67, 230, 249, 5, 72, 22, 1, 170, 155, 6, 182, + 81, 85, 9, 255, 17, 159, 65, 75, 13, 9, 255, 72, 104, 178, 1, 136, 3, 249, 215, 152, 217, 5, 2, 159, 27, 171, 132, + 144, 166, 144, 204, 148, 28, 27, 114, 48, 194, 224, 205, 185, 24, 131, 255, 67, 251, 144, 14, 27, 255, 255, 255, + 255, 255, 255, 255, 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1753, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13019764642852684203" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5258795550836069947" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16451495190862501481" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17252814304451191664" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bb4af7ef6046cc1ab9f1b48fafeb0f1fd163b1be44f73b65b6816691bef6e4f3358976370a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 180, 175, 126, 246, 4, 108, 193, 171, 159, 27, 72, 250, 254, 176, 241, 253, 22, 59, 27, 228, + 79, 115, 182, 91, 104, 22, 105, 27, 239, 110, 79, 51, 88, 151, 99, 112, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1754, + "sample": { + "_tag": "ByteArray", + "bytearray": "38a471" + }, + "cborHex": "4338a471", + "cborBytes": [67, 56, 164, 113], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1755, + "sample": { + "_tag": "ByteArray", + "bytearray": "298e6891b473df30" + }, + "cborHex": "48298e6891b473df30", + "cborBytes": [72, 41, 142, 104, 145, 180, 115, 223, 48], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1756, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffaa0ff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 250, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1757, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10e4d8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13365492604369646488" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2578921298621270936" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4109922448738474843" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0533839184a3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "204c617b2662cf1ca025f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f2601" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9af01aa0d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13811147402241392141" + } + } + } + ] + }, + "cborHex": "bf4310e4d8d8669f1bb97bc4b5d39033989f1b23ca2b41e4028b981b390960b11b75db5b460533839184a3ffff4b204c617b2662cf1ca025f5436f260145a9af01aa0d1bbfab0d6343283e0dff", + "cborBytes": [ + 191, 67, 16, 228, 216, 216, 102, 159, 27, 185, 123, 196, 181, 211, 144, 51, 152, 159, 27, 35, 202, 43, 65, 228, 2, + 139, 152, 27, 57, 9, 96, 177, 27, 117, 219, 91, 70, 5, 51, 131, 145, 132, 163, 255, 255, 75, 32, 76, 97, 123, 38, + 98, 207, 28, 160, 37, 245, 67, 111, 38, 1, 69, 169, 175, 1, 170, 13, 27, 191, 171, 13, 99, 67, 40, 62, 13, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1758, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c8e71d39d2" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7509124149661118906" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bcfd" + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffff9f45c8e71d39d2801b6835c4a10adbb1baffff42bcfdff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 69, 200, 231, 29, 57, 210, 128, 27, 104, 53, + 196, 161, 10, 219, 177, 186, 255, 255, 66, 188, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1759, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14133060582929226528" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9fea78d054f0" + } + ] + }, + "cborHex": "d8669f1bc422b7b852925b209f469fea78d054f0ffff", + "cborBytes": [ + 216, 102, 159, 27, 196, 34, 183, 184, 82, 146, 91, 32, 159, 70, 159, 234, 120, 208, 84, 240, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1760, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e09f7c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e70caf5e82" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cddf008e6780" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14129161247410633285" + } + } + } + ] + }, + "cborHex": "bf449e09f7c945e70caf5e8246cddf008e67801bc414dd4b86203a45ff", + "cborBytes": [ + 191, 68, 158, 9, 247, 201, 69, 231, 12, 175, 94, 130, 70, 205, 223, 0, 142, 103, 128, 27, 196, 20, 221, 75, 134, + 32, 58, 69, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1761, + "sample": { + "_tag": "ByteArray", + "bytearray": "0730" + }, + "cborHex": "420730", + "cborBytes": [66, 7, 48], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1762, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3919052901502057927" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b366345d991fe7dc780ff", + "cborBytes": [191, 27, 54, 99, 69, 217, 145, 254, 125, 199, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1763, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1003706" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17652730208636391244" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf44d1003706d8669f1bf4fb1898b9944f4c80ffff", + "cborBytes": [191, 68, 209, 0, 55, 6, 216, 102, 159, 27, 244, 251, 24, 152, 185, 148, 79, 76, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1764, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16746411300083935134" + } + }, + "cborHex": "1be8673459e417279e", + "cborBytes": [27, 232, 103, 52, 89, 228, 23, 39, 158], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1765, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7e4731" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1304f9f9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14087582172030486484" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a01b" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ac0afc9ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1491038348038993823" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65fd03" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e081" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00060501c507ad" + } + } + ] + } + ] + }, + "cborHex": "9f437e47319f441304f9f9d8669f1bc3812558a400c7d49f42a01bffffffbf03459ac0afc9ba1b14b13b7a4959779f4365fd03ff1bfffffffffffffff6bf42e0814700060501c507adffff", + "cborBytes": [ + 159, 67, 126, 71, 49, 159, 68, 19, 4, 249, 249, 216, 102, 159, 27, 195, 129, 37, 88, 164, 0, 199, 212, 159, 66, + 160, 27, 255, 255, 255, 191, 3, 69, 154, 192, 175, 201, 186, 27, 20, 177, 59, 122, 73, 89, 119, 159, 67, 101, 253, + 3, 255, 27, 255, 255, 255, 255, 255, 255, 255, 246, 191, 66, 224, 129, 71, 0, 6, 5, 1, 197, 7, 173, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1766, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15242357489495065507" + } + }, + "cborHex": "1bd387bb6114de43a3", + "cborBytes": [27, 211, 135, 187, 97, 20, 222, 67, 163], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1767, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4195348866939106493" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffeeaca47ff0daf17e9fdd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6378241142295751870" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14540647296732563342" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7918480172298689640" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10365403587715683314" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10754793007175870207" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0de3f4d762d2a7335" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17675935130149195154" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14206129281933906811" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "588231804875834087" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14513163568573196933" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c333ccf0db7afab3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8239767852932643528" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7625599514724517361" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3a38df910abe34bd4bffeeaca47ff0daf17e9fdd1b588410868a51ecbed8669f1bc9cac1ad3dfd078e80ff1b6de417c346d65c681b8fd94fa50f5a53f21b9540b3423992a6ff49c0de3f4d762d2a73351bf54d895989640d92d8669f1bc5264f508af2137b9f1b0829d1b5bf3602e71bc9691d5f1ff22a8548c333ccf0db7afab31b72598934c1bbbac81b69d3925b428bc5f1ffffff", + "cborBytes": [ + 191, 27, 58, 56, 223, 145, 10, 190, 52, 189, 75, 255, 238, 172, 164, 127, 240, 218, 241, 126, 159, 221, 27, 88, + 132, 16, 134, 138, 81, 236, 190, 216, 102, 159, 27, 201, 202, 193, 173, 61, 253, 7, 142, 128, 255, 27, 109, 228, + 23, 195, 70, 214, 92, 104, 27, 143, 217, 79, 165, 15, 90, 83, 242, 27, 149, 64, 179, 66, 57, 146, 166, 255, 73, + 192, 222, 63, 77, 118, 45, 42, 115, 53, 27, 245, 77, 137, 89, 137, 100, 13, 146, 216, 102, 159, 27, 197, 38, 79, + 80, 138, 242, 19, 123, 159, 27, 8, 41, 209, 181, 191, 54, 2, 231, 27, 201, 105, 29, 95, 31, 242, 42, 133, 72, 195, + 51, 204, 240, 219, 122, 250, 179, 27, 114, 89, 137, 52, 193, 187, 186, 200, 27, 105, 211, 146, 91, 66, 139, 197, + 241, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1768, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12448313006095932001" + } + }, + "cborHex": "1bacc14ab99d391a61", + "cborBytes": [27, 172, 193, 74, 185, 157, 57, 26, 97], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1769, + "sample": { + "_tag": "ByteArray", + "bytearray": "78b7de4ad3aa" + }, + "cborHex": "4678b7de4ad3aa", + "cborBytes": [70, 120, 183, 222, 74, 211, 170], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1770, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16281714481846919983" + } + }, + "cborHex": "1be1f4450e98d1a32f", + "cborBytes": [27, 225, 244, 69, 14, 152, 209, 163, 47], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1771, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9004774255414293873" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2631273316112625382" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d00ef35093" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12682165749653832239" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4531079902315300173" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14412342365583438540" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11703168552392129893" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6234812303570458962" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16471051381872421841" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8818399674162611313" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8312677662507709530" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16286513807809453778" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12714897018500237084" + } + } + } + ] + }, + "cborHex": "bf1b7cf76279d88d3571bf1b24842923d1db6ee645d00ef350931bb0001a8e6abe022f1b3ee1a12a1a6a454dff1bc802ed0589e9f2ccd8669f1ba26a01cad7dafd659f1b568680c1b38d59521be494edf6e5b66bd11b7a613fc821e204711b735c904aa618b45affff1be2055204bffa1ed21bb0746378cf61471cff", + "cborBytes": [ + 191, 27, 124, 247, 98, 121, 216, 141, 53, 113, 191, 27, 36, 132, 41, 35, 209, 219, 110, 230, 69, 208, 14, 243, 80, + 147, 27, 176, 0, 26, 142, 106, 190, 2, 47, 27, 62, 225, 161, 42, 26, 106, 69, 77, 255, 27, 200, 2, 237, 5, 137, + 233, 242, 204, 216, 102, 159, 27, 162, 106, 1, 202, 215, 218, 253, 101, 159, 27, 86, 134, 128, 193, 179, 141, 89, + 82, 27, 228, 148, 237, 246, 229, 182, 107, 209, 27, 122, 97, 63, 200, 33, 226, 4, 113, 27, 115, 92, 144, 74, 166, + 24, 180, 90, 255, 255, 27, 226, 5, 82, 4, 191, 250, 30, 210, 27, 176, 116, 99, 120, 207, 97, 71, 28, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1772, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3672699995942057385" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1912896634738347448" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f97785" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6234811292323830240" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45c7382f8219405c06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15336358100778767677" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a37568ff2f6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16792489778525055252" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf114b89e4" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3d57c415" + }, + { + "_tag": "ByteArray", + "bytearray": "759059877f77" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9166022862110231456" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b32f80d3000b475a99fbf1b1a8bf95ab59e8db843f977851b56867fd6408e59e04945c7382f8219405c061bd4d5b06fe91a553d464a37568ff2f61be90ae87baf5d291445cf114b89e4ff443d57c41546759059877f77809fd8669f1b7f34413abb308ba080ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 50, 248, 13, 48, 0, 180, 117, 169, 159, 191, 27, 26, 139, 249, 90, 181, 158, 141, 184, 67, 249, + 119, 133, 27, 86, 134, 127, 214, 64, 142, 89, 224, 73, 69, 199, 56, 47, 130, 25, 64, 92, 6, 27, 212, 213, 176, + 111, 233, 26, 85, 61, 70, 74, 55, 86, 143, 242, 246, 27, 233, 10, 232, 123, 175, 93, 41, 20, 69, 207, 17, 75, 137, + 228, 255, 68, 61, 87, 196, 21, 70, 117, 144, 89, 135, 127, 119, 128, 159, 216, 102, 159, 27, 127, 52, 65, 58, 187, + 48, 139, 160, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1773, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8380217974228663841" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14079948521309201722" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4679279685238010157" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16947745747704417791" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9795523066729625269" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e627d6f5a5c40f98" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11254778119644857582" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6c9600ec846b1290595f" + } + ] + } + ] + } + ] + }, + "cborHex": "9f80d8799fd8669f1b744c83d8e63e3e219f1bc3660694d46be53affff1b40f02414f350312d1beb327cf6eb8f0dffd8669f1b87f0b0548d9076b59f48e627d6f5a5c40f981b9c310111c74544ee4a6c9600ec846b1290595fffffffff", + "cborBytes": [ + 159, 128, 216, 121, 159, 216, 102, 159, 27, 116, 76, 131, 216, 230, 62, 62, 33, 159, 27, 195, 102, 6, 148, 212, + 107, 229, 58, 255, 255, 27, 64, 240, 36, 20, 243, 80, 49, 45, 27, 235, 50, 124, 246, 235, 143, 13, 255, 216, 102, + 159, 27, 135, 240, 176, 84, 141, 144, 118, 181, 159, 72, 230, 39, 214, 245, 165, 196, 15, 152, 27, 156, 49, 1, 17, + 199, 69, 68, 238, 74, 108, 150, 0, 236, 132, 107, 18, 144, 89, 95, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1774, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a6471483c16c4bd6de649f" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14204704422061017325" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + } + ] + }, + "cborHex": "9fd87b9f4ba6471483c16c4bd6de649f80ff9fd8669f1bfffffffffffffff59f41001bc5213f69805e08edffff02ffff", + "cborBytes": [ + 159, 216, 123, 159, 75, 166, 71, 20, 131, 193, 108, 75, 214, 222, 100, 159, 128, 255, 159, 216, 102, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 245, 159, 65, 0, 27, 197, 33, 63, 105, 128, 94, 8, 237, 255, 255, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1775, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6888945309492135112" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "936a9a5f95b3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10060634274273820232" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba8d46" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "294bf1dae8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "747b1af272bb" + } + } + ] + }, + "cborHex": "bf1b5f9a7342815f44c846936a9a5f95b31b8b9e8d91a535fe4843ba8d4645294bf1dae846747b1af272bbff", + "cborBytes": [ + 191, 27, 95, 154, 115, 66, 129, 95, 68, 200, 70, 147, 106, 154, 95, 149, 179, 27, 139, 158, 141, 145, 165, 53, + 254, 72, 67, 186, 141, 70, 69, 41, 75, 241, 218, 232, 70, 116, 123, 26, 242, 114, 187, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1776, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12453898892178957864" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f90d618570022521dc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad33a5a721dabd60b7b73148" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17646354720392274784" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "409166756062474592" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9456006140982381156" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6feabf32b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13984219881634072879" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15032008466513534617" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba2a5cd716470a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4741802994191249018" + } + } + } + ] + }, + "cborHex": "bf1bacd5230f10f5262849f90d618570022521dc4cad33a5a721dabd60b7b73148d8669f1bf4e4721fb184e3609f1b05ada6ff2d00b1601b833a7b7c332aca64456feabf32b91bc211ede409c1092f1bd09c6c0eab341e99ffff47ba2a5cd716470a1b41ce44b337a72e7aff", + "cborBytes": [ + 191, 27, 172, 213, 35, 15, 16, 245, 38, 40, 73, 249, 13, 97, 133, 112, 2, 37, 33, 220, 76, 173, 51, 165, 167, 33, + 218, 189, 96, 183, 183, 49, 72, 216, 102, 159, 27, 244, 228, 114, 31, 177, 132, 227, 96, 159, 27, 5, 173, 166, + 255, 45, 0, 177, 96, 27, 131, 58, 123, 124, 51, 42, 202, 100, 69, 111, 234, 191, 50, 185, 27, 194, 17, 237, 228, + 9, 193, 9, 47, 27, 208, 156, 108, 14, 171, 52, 30, 153, 255, 255, 71, 186, 42, 92, 215, 22, 71, 10, 27, 65, 206, + 68, 179, 55, 167, 46, 122, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1777, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17060827817487738974" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fed4f6774b23f67" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8489261847173146698" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a62800b10143bbd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6542040417580923567" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9373b49e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "492a58dd50fcdf12e5939219" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18249223017703053322" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d592de7ed964be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4d0a53aeaa343" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1d2" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9609320581046570532" + } + }, + { + "_tag": "ByteArray", + "bytearray": "49ae" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15107381353101240497" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13830347213775571236" + } + } + ] + }, + "cborHex": "d8669f1becc43c820375a85e9fbf483fed4f6774b23f671b75cfeaac0608284a488a62800b10143bbd1b5ac9ff193c28baaf449373b49e4c492a58dd50fcdf12e593921941b31bfd4243a56512980a47d592de7ed964be47c4d0a53aeaa34341fb42e1d2ff9f1b855b2a27f6218e244249aeffd8669f1bd1a8334c5df5a8b180ff1bbfef4383bd680924ffff", + "cborBytes": [ + 216, 102, 159, 27, 236, 196, 60, 130, 3, 117, 168, 94, 159, 191, 72, 63, 237, 79, 103, 116, 178, 63, 103, 27, 117, + 207, 234, 172, 6, 8, 40, 74, 72, 138, 98, 128, 11, 16, 20, 59, 189, 27, 90, 201, 255, 25, 60, 40, 186, 175, 68, + 147, 115, 180, 158, 76, 73, 42, 88, 221, 80, 252, 223, 18, 229, 147, 146, 25, 65, 179, 27, 253, 66, 67, 165, 101, + 18, 152, 10, 71, 213, 146, 222, 126, 217, 100, 190, 71, 196, 208, 165, 58, 234, 163, 67, 65, 251, 66, 225, 210, + 255, 159, 27, 133, 91, 42, 39, 246, 33, 142, 36, 66, 73, 174, 255, 216, 102, 159, 27, 209, 168, 51, 76, 93, 245, + 168, 177, 128, 255, 27, 191, 239, 67, 131, 189, 104, 9, 36, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1778, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17102368489295313928" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "24f5ba6379721271127405e1" + }, + { + "_tag": "ByteArray", + "bytearray": "d844263680aa42148f4220" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10702324740526953100" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bed57d1875e47fc089f4c24f5ba6379721271127405e14bd844263680aa42148f42201b94864ba5edfbd28cffff", + "cborBytes": [ + 191, 27, 237, 87, 209, 135, 94, 71, 252, 8, 159, 76, 36, 245, 186, 99, 121, 114, 18, 113, 18, 116, 5, 225, 75, + 216, 68, 38, 54, 128, 170, 66, 20, 143, 66, 32, 27, 148, 134, 75, 165, 237, 251, 210, 140, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1779, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16984141461144134874" + } + }, + "cborHex": "1bebb3caac4e7ae4da", + "cborBytes": [27, 235, 179, 202, 172, 78, 122, 228, 218], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1780, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2698724462600303177" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "933112974df0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1d6e" + }, + { + "_tag": "ByteArray", + "bytearray": "8e496f6963a9c159ed" + }, + { + "_tag": "ByteArray", + "bytearray": "aa406c32284f462d3c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10323146027706053188" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bad0513b67b505704841ab80" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b84aae1f1c" + }, + { + "_tag": "ByteArray", + "bytearray": "f9bb130a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc41f6fd861df163" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5667876487856056686" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5556391c534dc7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8504295228571016086" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b71490" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f3e227407ce" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99fd8669f1b2573cb99abf2b24980ff46933112974df09f9f421d6e498e496f6963a9c159ed49aa406c32284f462d3c1b8f432e9e29e772444cbad0513b67b505704841ab80ff45b84aae1f1c44f9bb130abf48fc41f6fd861df1631b4ea857a2d172e96effbf475556391c534dc71b76055373e4065b9643b71490464f3e227407ceffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 216, 102, 159, 27, 37, 115, 203, 153, 171, 242, + 178, 73, 128, 255, 70, 147, 49, 18, 151, 77, 240, 159, 159, 66, 29, 110, 73, 142, 73, 111, 105, 99, 169, 193, 89, + 237, 73, 170, 64, 108, 50, 40, 79, 70, 45, 60, 27, 143, 67, 46, 158, 41, 231, 114, 68, 76, 186, 208, 81, 59, 103, + 181, 5, 112, 72, 65, 171, 128, 255, 69, 184, 74, 174, 31, 28, 68, 249, 187, 19, 10, 191, 72, 252, 65, 246, 253, + 134, 29, 241, 99, 27, 78, 168, 87, 162, 209, 114, 233, 110, 255, 191, 71, 85, 86, 57, 28, 83, 77, 199, 27, 118, 5, + 83, 115, 228, 6, 91, 150, 67, 183, 20, 144, 70, 79, 62, 34, 116, 7, 206, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1781, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14846483086289986252" + } + }, + "cborHex": "1bce094db4fa28e2cc", + "cborBytes": [27, 206, 9, 77, 180, 250, 40, 226, 204], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1782, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17075027434008528011" + } + }, + "cborHex": "1becf6aefbde20c48b", + "cborBytes": [27, 236, 246, 174, 251, 222, 32, 196, 139], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1783, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15324260754305227690" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "eec3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "faa10b277a1cdd4ea1421f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f853f8" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bd4aab5f6f1d29baa131bfffffffffffffff6bf42eec31bffffffffffffffec4bfaa10b277a1cdd4ea1421f43f853f8ffff", + "cborBytes": [ + 191, 27, 212, 170, 181, 246, 241, 210, 155, 170, 19, 27, 255, 255, 255, 255, 255, 255, 255, 246, 191, 66, 238, + 195, 27, 255, 255, 255, 255, 255, 255, 255, 236, 75, 250, 161, 11, 39, 122, 28, 221, 78, 161, 66, 31, 67, 248, 83, + 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1784, + "sample": { + "_tag": "ByteArray", + "bytearray": "f919fdcb1a01" + }, + "cborHex": "46f919fdcb1a01", + "cborBytes": [70, 249, 25, 253, 203, 26, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1785, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "aa630fed07082cf85b2263" + } + ] + }, + "cborHex": "9f804baa630fed07082cf85b2263ff", + "cborBytes": [159, 128, 75, 170, 99, 15, 237, 7, 8, 44, 248, 91, 34, 99, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1786, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4364575643597130644" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8887613015678164370" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b16c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10216645707189996644" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13308891576452974171" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2422448962704131126" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "291b2c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7819689331638480583" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d901f8a0e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10050607997250969306" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14368445853413533737" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10307290259173464821" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14677383396153692552" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15025389920661061509" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15515775217384128243" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18370908156839075551" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b145c8624fb" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3c92166c5fedcb949f1b7b5724f2fca29d9242b16c1b8dc8d123fd144c64ff1bb8b2ae6010ab065bbf1b219e447f347e443643291b2c1b6c851e0442392ec7454d901f8a0e1b8b7aeeb91cd81eda1bc766f9605b25e8291b8f0ad9e15ee0daf51bcbb08a6f47f511881bd084e88660bcbf851bd7531b5aa6fd7ef31bfef293a2a9b81edf462b145c8624fbffff", + "cborBytes": [ + 191, 27, 60, 146, 22, 108, 95, 237, 203, 148, 159, 27, 123, 87, 36, 242, 252, 162, 157, 146, 66, 177, 108, 27, + 141, 200, 209, 35, 253, 20, 76, 100, 255, 27, 184, 178, 174, 96, 16, 171, 6, 91, 191, 27, 33, 158, 68, 127, 52, + 126, 68, 54, 67, 41, 27, 44, 27, 108, 133, 30, 4, 66, 57, 46, 199, 69, 77, 144, 31, 138, 14, 27, 139, 122, 238, + 185, 28, 216, 30, 218, 27, 199, 102, 249, 96, 91, 37, 232, 41, 27, 143, 10, 217, 225, 94, 224, 218, 245, 27, 203, + 176, 138, 111, 71, 245, 17, 136, 27, 208, 132, 232, 134, 96, 188, 191, 133, 27, 215, 83, 27, 90, 166, 253, 126, + 243, 27, 254, 242, 147, 162, 169, 184, 30, 223, 70, 43, 20, 92, 134, 36, 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1787, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff427805" + }, + "cborHex": "44ff427805", + "cborBytes": [68, 255, 66, 120, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1788, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14315558374411783419" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "440e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2808726594449469532" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78c08aa709875d267b9d307f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3809450231150207795" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccb6e75d76f8241b11d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9965084146361030029" + } + } + } + ] + } + ] + }, + "cborHex": "d9050b9fbf1bc6ab147e942eccfb415642440e1b26fa99f4d55a705c4c78c08aa709875d267b9d307f1b34dde2cd493ce3334accb6e75d76f8241b11d31b8a4b173bdcb9d58dffff", + "cborBytes": [ + 217, 5, 11, 159, 191, 27, 198, 171, 20, 126, 148, 46, 204, 251, 65, 86, 66, 68, 14, 27, 38, 250, 153, 244, 213, + 90, 112, 92, 76, 120, 192, 138, 167, 9, 135, 93, 38, 123, 157, 48, 127, 27, 52, 221, 226, 205, 73, 60, 227, 51, + 74, 204, 182, 231, 93, 118, 248, 36, 27, 17, 211, 27, 138, 75, 23, 59, 220, 185, 213, 141, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1789, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11756716361253334361" + } + }, + "cborHex": "1ba3283f3da5872d59", + "cborBytes": [27, 163, 40, 63, 61, 165, 135, 45, 89], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1790, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2ba4c0634e0ace177275" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12225095978234698330" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2977544233947407014" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16123427087246639670" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2231141254814360620" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13557330059548607017" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6456192110548445151" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14515765994947144163" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fbfdc23f28fc78c940" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b8013" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15313273865782684503" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c82e743" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13433807612167094598" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4239347307242983055" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10152581670087246765" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f625" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1838322118928815333" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2044354310865777288" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14767358229612977083" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5207694419126679393" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17614195356300587859" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14237485051865298796" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18397559793571204641" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6220878309138805652" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4fd666b506" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "051c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f527de681c1e66275cf3a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16191744651291676812" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2143097393f2d7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14078888996324267992" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f7b" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4a2ba4c0634e0ace1772751ba9a8440557bc5a5ad8669f1b29525cb47f72a2a69fd8669f1bdfc1eb82a13f42369f1b1ef69b2670ede42c1bbc254fdbfe1ec2291b59990084a6eb67df1bc9725c43bb84e9e3ffff49fbfdc23f28fc78c940bf430b80131bd483ad729e3feb57447c82e7431bba6e78d91028814642ae0e4173ffd8669f1b3ad52fea37ba0e8f9f1b8ce5373cfeb143adffff42f625ffffbf1b1983083a317ed4e51b1c5f016a0e317288ffd8669f1bccf03211ab05dbbb9f1b4845727b8ed47761bf1bf472315a40a1b3531bc595b538a35d776c1bff51432865d20e211b5654ffdccf26b394454fd666b50642051c4bf527de681c1e66275cf3a41be0b4a1f90a12508cff472143097393f2d7bf1bc36242f2f21057d8420f7bffffffff", + "cborBytes": [ + 159, 74, 43, 164, 192, 99, 78, 10, 206, 23, 114, 117, 27, 169, 168, 68, 5, 87, 188, 90, 90, 216, 102, 159, 27, 41, + 82, 92, 180, 127, 114, 162, 166, 159, 216, 102, 159, 27, 223, 193, 235, 130, 161, 63, 66, 54, 159, 27, 30, 246, + 155, 38, 112, 237, 228, 44, 27, 188, 37, 79, 219, 254, 30, 194, 41, 27, 89, 153, 0, 132, 166, 235, 103, 223, 27, + 201, 114, 92, 67, 187, 132, 233, 227, 255, 255, 73, 251, 253, 194, 63, 40, 252, 120, 201, 64, 191, 67, 11, 128, + 19, 27, 212, 131, 173, 114, 158, 63, 235, 87, 68, 124, 130, 231, 67, 27, 186, 110, 120, 217, 16, 40, 129, 70, 66, + 174, 14, 65, 115, 255, 216, 102, 159, 27, 58, 213, 47, 234, 55, 186, 14, 143, 159, 27, 140, 229, 55, 60, 254, 177, + 67, 173, 255, 255, 66, 246, 37, 255, 255, 191, 27, 25, 131, 8, 58, 49, 126, 212, 229, 27, 28, 95, 1, 106, 14, 49, + 114, 136, 255, 216, 102, 159, 27, 204, 240, 50, 17, 171, 5, 219, 187, 159, 27, 72, 69, 114, 123, 142, 212, 119, + 97, 191, 27, 244, 114, 49, 90, 64, 161, 179, 83, 27, 197, 149, 181, 56, 163, 93, 119, 108, 27, 255, 81, 67, 40, + 101, 210, 14, 33, 27, 86, 84, 255, 220, 207, 38, 179, 148, 69, 79, 214, 102, 181, 6, 66, 5, 28, 75, 245, 39, 222, + 104, 28, 30, 102, 39, 92, 243, 164, 27, 224, 180, 161, 249, 10, 18, 80, 140, 255, 71, 33, 67, 9, 115, 147, 242, + 215, 191, 27, 195, 98, 66, 242, 242, 16, 87, 216, 66, 15, 123, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1791, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1144690846343209199" + } + } + ] + }, + "cborHex": "9f1b0fe2c24289eda0efff", + "cborBytes": [159, 27, 15, 226, 194, 66, 137, 237, 160, 239, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1792, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bfde0e2d95" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16392340236659534042" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13749949613953163468" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fdc22a210429" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4805745790906427609" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12149267489757269811" + } + }, + { + "_tag": "ByteArray", + "bytearray": "521d0f5fe808a60c3448" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11074886024184976634" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7132774916407135778" + } + } + ] + } + ] + }, + "cborHex": "d905089f45bfde0e2d951be37d4a984b6f28dad8669f1bbed1a252d332a0cc9f9f46fdc22a2104291b42b17055bbce68d91ba89ade69902f0f334a521d0f5fe808a60c3448ff1b99b1e629677bd4fa1b62fcb4fed3438e22ffffff", + "cborBytes": [ + 217, 5, 8, 159, 69, 191, 222, 14, 45, 149, 27, 227, 125, 74, 152, 75, 111, 40, 218, 216, 102, 159, 27, 190, 209, + 162, 82, 211, 50, 160, 204, 159, 159, 70, 253, 194, 42, 33, 4, 41, 27, 66, 177, 112, 85, 187, 206, 104, 217, 27, + 168, 154, 222, 105, 144, 47, 15, 51, 74, 82, 29, 15, 95, 232, 8, 166, 12, 52, 72, 255, 27, 153, 177, 230, 41, 103, + 123, 212, 250, 27, 98, 252, 180, 254, 211, 67, 142, 34, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1793, + "sample": { + "_tag": "ByteArray", + "bytearray": "d1ff75cbf96daac603cc" + }, + "cborHex": "4ad1ff75cbf96daac603cc", + "cborBytes": [74, 209, 255, 117, 203, 249, 109, 170, 198, 3, 204], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1794, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16e73606" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10237891557180064861" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9539" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70ec035403509b147cdbac01" + } + } + ] + } + ] + }, + "cborHex": "9fbf4416e736061b8e144c20eab0445d4295394c70ec035403509b147cdbac01ffff", + "cborBytes": [ + 159, 191, 68, 22, 231, 54, 6, 27, 142, 20, 76, 32, 234, 176, 68, 93, 66, 149, 57, 76, 112, 236, 3, 84, 3, 80, 155, + 20, 124, 219, 172, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1795, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff280ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1796, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3267723582673103047" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9006364987605608134" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1667387448605757943" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5351098497386171105" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4112175700765387374" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14146682697207762601" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9745532885419068494" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16170294088451756919" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16077553325571702594" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0853" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17160426290518641694" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e9ce2e0487fc87806" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18045414526119411568" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17604944117360452966" + } + } + } + ] + } + ] + }, + "cborHex": "d8799fd8669f1b2d5949490965a8c79f9f1b7cfd093d0bbf66c6ffa0ffffbf1b1723c00ce11751f71b4a42ebbb66d44ae11b391162033a1d2a6e1bc4531cf5f53bcea91b873f1686764a8c4e1be0686cccafc413771bdf1ef1912c19ff424208531bee2614ca98a34c1e495e9ce2e0487fc878061bfa6e30e71e057f701bf451536655df6566ffff", + "cborBytes": [ + 216, 121, 159, 216, 102, 159, 27, 45, 89, 73, 73, 9, 101, 168, 199, 159, 159, 27, 124, 253, 9, 61, 11, 191, 102, + 198, 255, 160, 255, 255, 191, 27, 23, 35, 192, 12, 225, 23, 81, 247, 27, 74, 66, 235, 187, 102, 212, 74, 225, 27, + 57, 17, 98, 3, 58, 29, 42, 110, 27, 196, 83, 28, 245, 245, 59, 206, 169, 27, 135, 63, 22, 134, 118, 74, 140, 78, + 27, 224, 104, 108, 204, 175, 196, 19, 119, 27, 223, 30, 241, 145, 44, 25, 255, 66, 66, 8, 83, 27, 238, 38, 20, + 202, 152, 163, 76, 30, 73, 94, 156, 226, 224, 72, 127, 200, 120, 6, 27, 250, 110, 48, 231, 30, 5, 127, 112, 27, + 244, 81, 83, 102, 85, 223, 101, 102, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1797, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15275880519002242801" + } + }, + "cborHex": "1bd3fed4659e703ef1", + "cborBytes": [27, 211, 254, 212, 101, 158, 112, 62, 241], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1798, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "037b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2494282599874937176" + } + } + } + ] + }, + "cborHex": "bf42037b1b229d78cf2efbc158ff", + "cborBytes": [191, 66, 3, 123, 27, 34, 157, 120, 207, 46, 251, 193, 88, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1799, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b002648c855a1a15a01a77e9" + } + ] + }, + "cborHex": "9fa04cb002648c855a1a15a01a77e9ff", + "cborBytes": [159, 160, 76, 176, 2, 100, 140, 133, 90, 26, 21, 160, 26, 119, 233, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1800, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "35f7a8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5033568258944091942" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be583c1f12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17964589881709224128" + } + } + } + ] + }, + "cborHex": "bf4335f7a8d8669f1b45dad3a99b0b472680ff45be583c1f121bf94f0b5122dae0c0ff", + "cborBytes": [ + 191, 67, 53, 247, 168, 216, 102, 159, 27, 69, 218, 211, 169, 155, 11, 71, 38, 128, 255, 69, 190, 88, 60, 31, 18, + 27, 249, 79, 11, 81, 34, 218, 224, 192, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1801, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17652071353885889733" + } + } + ] + }, + "cborHex": "9f1bf4f8c15f263794c5ff", + "cborBytes": [159, 27, 244, 248, 193, 95, 38, 55, 148, 197, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1802, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4932053832862376057" + } + }, + "cborHex": "1b44722cd470dda079", + "cborBytes": [27, 68, 114, 44, 212, 112, 221, 160, 121], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1803, + "sample": { + "_tag": "ByteArray", + "bytearray": "2c2d08e231eb9411ad30113b" + }, + "cborHex": "4c2c2d08e231eb9411ad30113b", + "cborBytes": [76, 44, 45, 8, 226, 49, 235, 148, 17, 173, 48, 17, 59], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1804, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "034cefcb09" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d68507fefb04" + }, + { + "_tag": "ByteArray", + "bytearray": "fc040101fcfcfd3bf907fe04" + }, + { + "_tag": "ByteArray", + "bytearray": "0402" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7267814009075060036" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2f617aad287ed9571e" + }, + { + "_tag": "ByteArray", + "bytearray": "f89d0700" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13032943487099402522" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f3411753012bca97dd3e2b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1031173843744840793" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd13752a721fc75ece3a7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9754758349845424390" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2181841941312060170" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6374918607395985232" + } + } + ] + } + } + ] + }, + "cborHex": "bf1045034cefcb0913d8799f46d68507fefb044cfc040101fcfcfd3bf907fe04420402ff1b64dc7655b086cd44d905019f03492f617aad287ed9571e44f89d0700ff1bb4de510cce4cf91ad90505801bfffffffffffffffa9f4bf3411753012bca97dd3e2b1b0e4f7725c215dc594bfd13752a721fc75ece3a7b1b875fdd09484fe9061b1e4775af8bf43b0aff1bfffffffffffffffc9f1b587842b299dd9750ffff", + "cborBytes": [ + 191, 16, 69, 3, 76, 239, 203, 9, 19, 216, 121, 159, 70, 214, 133, 7, 254, 251, 4, 76, 252, 4, 1, 1, 252, 252, 253, + 59, 249, 7, 254, 4, 66, 4, 2, 255, 27, 100, 220, 118, 85, 176, 134, 205, 68, 217, 5, 1, 159, 3, 73, 47, 97, 122, + 173, 40, 126, 217, 87, 30, 68, 248, 157, 7, 0, 255, 27, 180, 222, 81, 12, 206, 76, 249, 26, 217, 5, 5, 128, 27, + 255, 255, 255, 255, 255, 255, 255, 250, 159, 75, 243, 65, 23, 83, 1, 43, 202, 151, 221, 62, 43, 27, 14, 79, 119, + 37, 194, 21, 220, 89, 75, 253, 19, 117, 42, 114, 31, 199, 94, 206, 58, 123, 27, 135, 95, 221, 9, 72, 79, 233, 6, + 27, 30, 71, 117, 175, 139, 244, 59, 10, 255, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 27, 88, 120, 66, + 178, 153, 221, 151, 80, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1805, + "sample": { + "_tag": "ByteArray", + "bytearray": "bcc52c25f771fcb7f2fd" + }, + "cborHex": "4abcc52c25f771fcb7f2fd", + "cborBytes": [74, 188, 197, 44, 37, 247, 113, 252, 183, 242, 253], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1806, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1677251606239338010" + } + }, + "cborHex": "1b1746cb730cd95e1a", + "cborBytes": [27, 23, 70, 203, 115, 12, 217, 94, 26], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1807, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "035c" + }, + { + "_tag": "ByteArray", + "bytearray": "050702" + } + ] + }, + "cborHex": "d905069f42035c43050702ff", + "cborBytes": [217, 5, 6, 159, 66, 3, 92, 67, 5, 7, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1808, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9463507070555110901" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3437518437555538600" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2665113022549999417" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10346428682179296068" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3737781534027838305" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10801154304538605516" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1495522580081819602" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10903371714218124521" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9032597927874271071" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13362519660107842791" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "df2c91842b31ae434e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8860558619124733986" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17608269459317989975" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7784888819225464437" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1060860547491961807" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "642a7d3137a9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7938156093395742217" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5000484336201710714" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9695675024119422079" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01056b46ede4f70963971f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17694921921066723903" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7b91d6d72" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8355218a75d5bdf59fd8669f1b2fb484ce635a8aa89fd8669f1b24fc622c735c3f3980ffbf1b8f95e6119735bb441b33df448067be73611b95e5689cee3477cc1b14c129dceb5a3fd2ffffffd8669f1b97508ece380364e99f9f1b7d5a3bf569e0175f1bb97134d54ce6c4e7ff49df2c91842b31ae434e1b7af7071e6c749822d8669f1bf45d23c7d80222579f1b6c097b228dd80e75ffffffffbf1b0eb8ef0c197c1bcf46642a7d3137a91b6e29fee8a674ae091b45654a0294353c7a1b868df5108643dc7f4b01056b46ede4f70963971f1bf590fdbc49746a3f45d7b91d6d72ffffff", + "cborBytes": [ + 216, 102, 159, 27, 131, 85, 33, 138, 117, 213, 189, 245, 159, 216, 102, 159, 27, 47, 180, 132, 206, 99, 90, 138, + 168, 159, 216, 102, 159, 27, 36, 252, 98, 44, 115, 92, 63, 57, 128, 255, 191, 27, 143, 149, 230, 17, 151, 53, 187, + 68, 27, 51, 223, 68, 128, 103, 190, 115, 97, 27, 149, 229, 104, 156, 238, 52, 119, 204, 27, 20, 193, 41, 220, 235, + 90, 63, 210, 255, 255, 255, 216, 102, 159, 27, 151, 80, 142, 206, 56, 3, 100, 233, 159, 159, 27, 125, 90, 59, 245, + 105, 224, 23, 95, 27, 185, 113, 52, 213, 76, 230, 196, 231, 255, 73, 223, 44, 145, 132, 43, 49, 174, 67, 78, 27, + 122, 247, 7, 30, 108, 116, 152, 34, 216, 102, 159, 27, 244, 93, 35, 199, 216, 2, 34, 87, 159, 27, 108, 9, 123, 34, + 141, 216, 14, 117, 255, 255, 255, 255, 191, 27, 14, 184, 239, 12, 25, 124, 27, 207, 70, 100, 42, 125, 49, 55, 169, + 27, 110, 41, 254, 232, 166, 116, 174, 9, 27, 69, 101, 74, 2, 148, 53, 60, 122, 27, 134, 141, 245, 16, 134, 67, + 220, 127, 75, 1, 5, 107, 70, 237, 228, 247, 9, 99, 151, 31, 27, 245, 144, 253, 188, 73, 116, 106, 63, 69, 215, + 185, 29, 109, 114, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1809, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fa1e06c2b70ce" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5deaa4f8" + }, + { + "_tag": "ByteArray", + "bytearray": "7b6c8d9bc57ad833a7" + }, + { + "_tag": "ByteArray", + "bytearray": "cc097bcc8c7a94" + } + ] + } + } + ] + }, + "cborHex": "bf470fa1e06c2b70ce9f445deaa4f8497b6c8d9bc57ad833a747cc097bcc8c7a94ffff", + "cborBytes": [ + 191, 71, 15, 161, 224, 108, 43, 112, 206, 159, 68, 93, 234, 164, 248, 73, 123, 108, 141, 155, 197, 122, 216, 51, + 167, 71, 204, 9, 123, 204, 140, 122, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1810, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14122776531834822393" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16121267937047364465" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12478994140329806229" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9990037804645880552" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4347dbac93e56920f04c" + }, + { + "_tag": "ByteArray", + "bytearray": "ca" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "60" + } + ] + } + ] + }, + "cborHex": "9f1bc3fe2e6e163cdef9d8669f1bdfba3fc64c9a43719fd8669f1bad2e4b0dd88a09959f1b8aa3be742ea412e84a4347dbac93e56920f04c41caffff4160ffffff", + "cborBytes": [ + 159, 27, 195, 254, 46, 110, 22, 60, 222, 249, 216, 102, 159, 27, 223, 186, 63, 198, 76, 154, 67, 113, 159, 216, + 102, 159, 27, 173, 46, 75, 13, 216, 138, 9, 149, 159, 27, 138, 163, 190, 116, 46, 164, 18, 232, 74, 67, 71, 219, + 172, 147, 229, 105, 32, 240, 76, 65, 202, 255, 255, 65, 96, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1811, + "sample": { + "_tag": "ByteArray", + "bytearray": "02a9" + }, + "cborHex": "4202a9", + "cborBytes": [66, 2, 169], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1812, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "828852106121" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13088370762605238893" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1684680292014881228" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16937379299197857290" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea7bf13c405f338df310f15c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf46828852106121d8669f1bb5a33bdd09b19a6d9f1b17612fccbda5f9cc1beb0da8bc0abe2e0a4cea7bf13c405f338df310f15cffff4188a0ff", + "cborBytes": [ + 191, 70, 130, 136, 82, 16, 97, 33, 216, 102, 159, 27, 181, 163, 59, 221, 9, 177, 154, 109, 159, 27, 23, 97, 47, + 204, 189, 165, 249, 204, 27, 235, 13, 168, 188, 10, 190, 46, 10, 76, 234, 123, 241, 60, 64, 95, 51, 141, 243, 16, + 241, 92, 255, 255, 65, 136, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1813, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "54d6" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2061cb9d9a1d5f4f" + }, + { + "_tag": "ByteArray", + "bytearray": "e80b00441bbd2221ee" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1064688319978634106" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9960644330598811324" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15769071429617341608" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "73b4" + } + ] + } + ] + } + ] + }, + "cborHex": "9fa09f4254d6a09f482061cb9d9a1d5f4f49e80b00441bbd2221eeff1b0ec68862d4d57b7affd8669f1b8a3b513eb359c6bc9fd8669f1bdad6feeac81a54a89f4273b4ffffffffff", + "cborBytes": [ + 159, 160, 159, 66, 84, 214, 160, 159, 72, 32, 97, 203, 157, 154, 29, 95, 79, 73, 232, 11, 0, 68, 27, 189, 34, 33, + 238, 255, 27, 14, 198, 136, 98, 212, 213, 123, 122, 255, 216, 102, 159, 27, 138, 59, 81, 62, 179, 89, 198, 188, + 159, 216, 102, 159, 27, 218, 214, 254, 234, 200, 26, 84, 168, 159, 66, 115, 180, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1814, + "sample": { + "_tag": "ByteArray", + "bytearray": "37" + }, + "cborHex": "4137", + "cborBytes": [65, 55], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1815, + "sample": { + "_tag": "ByteArray", + "bytearray": "388210" + }, + "cborHex": "43388210", + "cborBytes": [67, 56, 130, 16], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1816, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13948495045253278838" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8245416166684542380" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9140104588426059145" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17379309002764272341" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eec0f54f1dc15f0fd75c1444" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ab523489f50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8de2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1220652268120728572" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5393988517485127900" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a192cdfa16caa6b334" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17956217151350984294" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "441ca63828fc6a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18231604244112287207" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b09b7bb80" + }, + { + "_tag": "ByteArray", + "bytearray": "e6" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3b1c" + }, + { + "_tag": "ByteArray", + "bytearray": "f6a1e1fd237627522b20ea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14513040571210206602" + } + }, + { + "_tag": "ByteArray", + "bytearray": "def2" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5414971594149086156" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1931881609655495780" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2963262146725481151" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11533225782328475632" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16640904736561310063" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "397b7c99a4263a9111c5c3" + }, + { + "_tag": "ByteArray", + "bytearray": "1e" + }, + { + "_tag": "ByteArray", + "bytearray": "a506934ad0" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3486581387715968127" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bc1930257639e2c769fbf1b726d9a51487ec5ac1b7ed82cb2630d9d891bf12fb5755f8342d54ceec0f54f1dc15f0fd75c1444467ab523489f504283ff428de21b10f0a0c5439c63fcff1b4adb4bfa633ca8dc9f49a192cdfa16caa6b334ffd8669f1bf9314c5cf00d4e669f47441ca63828fc6a1bfd03ab76ffd125e7455b09b7bb8041e6ffff9f423b1c4bf6a1e1fd237627522b20ea1bc968ad8191d10d8a42def2ffffffd8669f1b4b25d7f9a21643cc9f1b1acf6c16a3a02c64d8669f1b291f9f38efef0abf9f1ba00e3fbe4e10bff0ffffd8669f1be6f05eb0cbda296f9f4b397b7c99a4263a9111c5c3411e45a506934ad0ffffd8669f1b3062d34ca74c7c7f80ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 193, 147, 2, 87, 99, 158, 44, 118, 159, 191, 27, 114, 109, 154, 81, 72, 126, 197, 172, 27, + 126, 216, 44, 178, 99, 13, 157, 137, 27, 241, 47, 181, 117, 95, 131, 66, 213, 76, 238, 192, 245, 79, 29, 193, 95, + 15, 215, 92, 20, 68, 70, 122, 181, 35, 72, 159, 80, 66, 131, 255, 66, 141, 226, 27, 16, 240, 160, 197, 67, 156, + 99, 252, 255, 27, 74, 219, 75, 250, 99, 60, 168, 220, 159, 73, 161, 146, 205, 250, 22, 202, 166, 179, 52, 255, + 216, 102, 159, 27, 249, 49, 76, 92, 240, 13, 78, 102, 159, 71, 68, 28, 166, 56, 40, 252, 106, 27, 253, 3, 171, + 118, 255, 209, 37, 231, 69, 91, 9, 183, 187, 128, 65, 230, 255, 255, 159, 66, 59, 28, 75, 246, 161, 225, 253, 35, + 118, 39, 82, 43, 32, 234, 27, 201, 104, 173, 129, 145, 209, 13, 138, 66, 222, 242, 255, 255, 255, 216, 102, 159, + 27, 75, 37, 215, 249, 162, 22, 67, 204, 159, 27, 26, 207, 108, 22, 163, 160, 44, 100, 216, 102, 159, 27, 41, 31, + 159, 56, 239, 239, 10, 191, 159, 27, 160, 14, 63, 190, 78, 16, 191, 240, 255, 255, 216, 102, 159, 27, 230, 240, + 94, 176, 203, 218, 41, 111, 159, 75, 57, 123, 124, 153, 164, 38, 58, 145, 17, 197, 195, 65, 30, 69, 165, 6, 147, + 74, 208, 255, 255, 216, 102, 159, 27, 48, 98, 211, 76, 167, 76, 124, 127, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1817, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5897915727172070828" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9545145014748033477" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d08d4887db433582" + } + } + ] + }, + "cborHex": "bf1b51d99b1af947edaca01b84772ad18da5b1c548d08d4887db433582ff", + "cborBytes": [ + 191, 27, 81, 217, 155, 26, 249, 71, 237, 172, 160, 27, 132, 119, 42, 209, 141, 165, 177, 197, 72, 208, 141, 72, + 135, 219, 67, 53, 130, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1818, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8182295015119605088" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15125138254646612654" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9115047747301957377" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "311796" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "556464612775113489" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d4ef6899961" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15877cb8ce0cd02c5f7ac2a0" + } + } + ] + }, + "cborHex": "bf1b718d59f6efa74d60d8669f1bd1e7491b2ee212ae80ff1b7e7f27a1f0a85f0180433117961b07b8f59df6893311469d4ef68999614c15877cb8ce0cd02c5f7ac2a0ff", + "cborBytes": [ + 191, 27, 113, 141, 89, 246, 239, 167, 77, 96, 216, 102, 159, 27, 209, 231, 73, 27, 46, 226, 18, 174, 128, 255, 27, + 126, 127, 39, 161, 240, 168, 95, 1, 128, 67, 49, 23, 150, 27, 7, 184, 245, 157, 246, 137, 51, 17, 70, 157, 78, + 246, 137, 153, 97, 76, 21, 135, 124, 184, 206, 12, 208, 44, 95, 122, 194, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1819, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9907440298430510360" + } + }, + "cborHex": "1b897e4c75a5573518", + "cborBytes": [27, 137, 126, 76, 117, 165, 87, 53, 24], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1820, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12169984060429333237" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4120725913201992453" + } + }, + { + "_tag": "ByteArray", + "bytearray": "86ea786bf0348e5241eb" + }, + { + "_tag": "ByteArray", + "bytearray": "91" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6443440856021937567" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "529cfe95" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14458522541254563051" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65fad0b418" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13179966184652693895" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e801b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a56200959" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e7795" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1963c811a631943a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe4b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a05cbed4f64e2b8b05b0" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2020829807757702755" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2642970976151792095" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3975024912878762641" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13603787050797461315" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10138709296838532279" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae22ce9a5c9d45ce6f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14907994179519950324" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6356389954329173927" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16801216003499273787" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1db3e7aa5c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8812062501855795739" + } + } + ] + }, + "cborHex": "9f9f9f1ba8e478060c0e72f51b392fc262b126e3054a86ea786bf0348e5241eb41911b596bb351da6d2d9fffbf44529cfe951bc8a6fda59074d4eb4565fad0b4181bb6e8a56a1be26187436e801b457a56200959438e7795481963c811a631943a42fe4b4aa05cbed4f64e2b8b05b0ffbf1b1c0b6e00daeb36631b24adb8198931e9df1b372a201901777a911bbcca5c3f2ad76f431b8cb3ee636702dcb749ae22ce9a5c9d45ce6f1bcee3d5b867e0adf41b58366efc61a6dfa7ff1be929e8f0432eae3bff451db3e7aa5c1b7a4abc2839a79a1bff", + "cborBytes": [ + 159, 159, 159, 27, 168, 228, 120, 6, 12, 14, 114, 245, 27, 57, 47, 194, 98, 177, 38, 227, 5, 74, 134, 234, 120, + 107, 240, 52, 142, 82, 65, 235, 65, 145, 27, 89, 107, 179, 81, 218, 109, 45, 159, 255, 191, 68, 82, 156, 254, 149, + 27, 200, 166, 253, 165, 144, 116, 212, 235, 69, 101, 250, 208, 180, 24, 27, 182, 232, 165, 106, 27, 226, 97, 135, + 67, 110, 128, 27, 69, 122, 86, 32, 9, 89, 67, 142, 119, 149, 72, 25, 99, 200, 17, 166, 49, 148, 58, 66, 254, 75, + 74, 160, 92, 190, 212, 246, 78, 43, 139, 5, 176, 255, 191, 27, 28, 11, 110, 0, 218, 235, 54, 99, 27, 36, 173, 184, + 25, 137, 49, 233, 223, 27, 55, 42, 32, 25, 1, 119, 122, 145, 27, 188, 202, 92, 63, 42, 215, 111, 67, 27, 140, 179, + 238, 99, 103, 2, 220, 183, 73, 174, 34, 206, 154, 92, 157, 69, 206, 111, 27, 206, 227, 213, 184, 103, 224, 173, + 244, 27, 88, 54, 110, 252, 97, 166, 223, 167, 255, 27, 233, 41, 232, 240, 67, 46, 174, 59, 255, 69, 29, 179, 231, + 170, 92, 27, 122, 74, 188, 40, 57, 167, 154, 27, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1821, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4341712407234442477" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87e9f1b3c40dc6e561d74eda0ff", + "cborBytes": [216, 126, 159, 27, 60, 64, 220, 110, 86, 29, 116, 237, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1822, + "sample": { + "_tag": "ByteArray", + "bytearray": "6105" + }, + "cborHex": "426105", + "cborBytes": [66, 97, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1823, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1db972f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f80701" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f51" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + } + ] + }, + "cborHex": "bf441db972f043f80701424f511bfffffffffffffff9ff", + "cborBytes": [ + 191, 68, 29, 185, 114, 240, 67, 248, 7, 1, 66, 79, 81, 27, 255, 255, 255, 255, 255, 255, 255, 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1824, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9349755832654096722" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1631369923235108031" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6823518bb3e8515dbb4f5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3760230005620599811" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14ab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6348382351196513918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18cbbb2e34b11a4c69225935" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16544832303607850645" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4172231930447310314" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10955224914388736124" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01360d2e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9302767464124746609" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bb339fda224727bc748" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a3974eb678288a3ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91d9119074a7c80abbfdf04e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8da702" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96a03f37cf491a82bb814cab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9fcef1849d7c37332ea99758" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "821cbafe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db762d0dd3fea1a7c0acc0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1395598824326549799" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6087251505969778805" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb307c81eef95b" + } + ] + }, + "cborHex": "d8669f1b81c1016485fbe9529f9fbf1b16a3ca4d43af54bf4ba6823518bb3e8515dbb4f51b342f05447ec7ec034214ab1b5819fc1cfd6d667e4c18cbbb2e34b11a4c692259351be59b0d5264f426951b39e6bed5d6daadeaff1b9808c70430a6587cbf4401360d2e1b811a11b86f378b714a5bb339fda224727bc748419f496a3974eb678288a3ea4c91d9119074a7c80abbfdf04e438da7024c96a03f37cf491a82bb814cab4c9fcef1849d7c37332ea9975844821cbafe4bdb762d0dd3fea1a7c0acc01b135e29bc8cefd127ffff1b547a42fe37ca507547cb307c81eef95bffff", + "cborBytes": [ + 216, 102, 159, 27, 129, 193, 1, 100, 133, 251, 233, 82, 159, 159, 191, 27, 22, 163, 202, 77, 67, 175, 84, 191, 75, + 166, 130, 53, 24, 187, 62, 133, 21, 219, 180, 245, 27, 52, 47, 5, 68, 126, 199, 236, 3, 66, 20, 171, 27, 88, 25, + 252, 28, 253, 109, 102, 126, 76, 24, 203, 187, 46, 52, 177, 26, 76, 105, 34, 89, 53, 27, 229, 155, 13, 82, 100, + 244, 38, 149, 27, 57, 230, 190, 213, 214, 218, 173, 234, 255, 27, 152, 8, 199, 4, 48, 166, 88, 124, 191, 68, 1, + 54, 13, 46, 27, 129, 26, 17, 184, 111, 55, 139, 113, 74, 91, 179, 57, 253, 162, 36, 114, 123, 199, 72, 65, 159, + 73, 106, 57, 116, 235, 103, 130, 136, 163, 234, 76, 145, 217, 17, 144, 116, 167, 200, 10, 187, 253, 240, 78, 67, + 141, 167, 2, 76, 150, 160, 63, 55, 207, 73, 26, 130, 187, 129, 76, 171, 76, 159, 206, 241, 132, 157, 124, 55, 51, + 46, 169, 151, 88, 68, 130, 28, 186, 254, 75, 219, 118, 45, 13, 211, 254, 161, 167, 192, 172, 192, 27, 19, 94, 41, + 188, 140, 239, 209, 39, 255, 255, 27, 84, 122, 66, 254, 55, 202, 80, 117, 71, 203, 48, 124, 129, 238, 249, 91, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1825, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14302932339914240013" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16679305713605786022" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3367442300573850431" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6849544912027375135" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11027361640142378400" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5020" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6580147655607742035" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "709125588494461867" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3968496744732704755" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8ce15aae3e2c7be1" + }, + { + "_tag": "ByteArray", + "bytearray": "71522f2972f5" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13155904261029942327" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12390638830910114106" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fe3ce7" + }, + { + "_tag": "ByteArray", + "bytearray": "55" + }, + { + "_tag": "ByteArray", + "bytearray": "1fe86173f32451d76b" + }, + { + "_tag": "ByteArray", + "bytearray": "0ec400dfa438" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9996086536477698073" + } + } + ] + }, + "cborHex": "9fd8669f1bc67e392ed708f00d9fd8669f1be778cc2cff9db9a69f1b2ebb8eee4f541b3f1b5f0e78ce9a79d61f1b99090efc7a7495a0ffffffff9f425020ffd8669f1b5b51616dfe1e6e539f9f1b09d751f7335a2babff1b3712eec36a163ff39f488ce15aae3e2c7be14671522f2972f5ffffffd8669f1bb6932938f1bcd4379f9f1babf4645e488f093a43fe3ce74155491fe86173f32451d76b460ec400dfa438ffffff1b8ab93bbe4ed16819ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 198, 126, 57, 46, 215, 8, 240, 13, 159, 216, 102, 159, 27, 231, 120, 204, 44, 255, 157, + 185, 166, 159, 27, 46, 187, 142, 238, 79, 84, 27, 63, 27, 95, 14, 120, 206, 154, 121, 214, 31, 27, 153, 9, 14, + 252, 122, 116, 149, 160, 255, 255, 255, 255, 159, 66, 80, 32, 255, 216, 102, 159, 27, 91, 81, 97, 109, 254, 30, + 110, 83, 159, 159, 27, 9, 215, 81, 247, 51, 90, 43, 171, 255, 27, 55, 18, 238, 195, 106, 22, 63, 243, 159, 72, + 140, 225, 90, 174, 62, 44, 123, 225, 70, 113, 82, 47, 41, 114, 245, 255, 255, 255, 216, 102, 159, 27, 182, 147, + 41, 56, 241, 188, 212, 55, 159, 159, 27, 171, 244, 100, 94, 72, 143, 9, 58, 67, 254, 60, 231, 65, 85, 73, 31, 232, + 97, 115, 243, 36, 81, 215, 107, 70, 14, 196, 0, 223, 164, 56, 255, 255, 255, 27, 138, 185, 59, 190, 78, 209, 104, + 25, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1826, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5462481727727136688" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a58e723144b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b05ba18c2979166cef25cf91" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2cc64680a0c06b06e8a0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18266972294028954306" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9392528109764182291" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e071" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5252568914431028616" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15182746968340551628" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7063841112853483311" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c04b20eb7b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7216359309598324575" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12839987717040220731" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8795525867015159792" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf1e4da0176b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12372001206413694311" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6715407" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16713523510460952645" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3209458348516368881" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b4bcea2309d3cefb0bf46a58e723144b64cb05ba18c2979166cef25cf914bd2cc64680a0c06b06e8a0f1bfd815284d37f8ac2ffd8669f1b8258f68d555d81139f42e071bf1b48e4df992eebad881bd2b3f3ed1293d7cc1b6207ce10f96e8f2f45c04b20eb7b1b6425a88ee430f75f1bb230ccccaa8faa3b1b7a0ffc2ce432bff046bf1e4da0176b1babb22d8c2cfe156744a67154071be7f25d14aa2a30451b2c8a495d10bae1f1ffffffff", + "cborBytes": [ + 159, 27, 75, 206, 162, 48, 157, 60, 239, 176, 191, 70, 165, 142, 114, 49, 68, 182, 76, 176, 91, 161, 140, 41, 121, + 22, 108, 239, 37, 207, 145, 75, 210, 204, 100, 104, 10, 12, 6, 176, 110, 138, 15, 27, 253, 129, 82, 132, 211, 127, + 138, 194, 255, 216, 102, 159, 27, 130, 88, 246, 141, 85, 93, 129, 19, 159, 66, 224, 113, 191, 27, 72, 228, 223, + 153, 46, 235, 173, 136, 27, 210, 179, 243, 237, 18, 147, 215, 204, 27, 98, 7, 206, 16, 249, 110, 143, 47, 69, 192, + 75, 32, 235, 123, 27, 100, 37, 168, 142, 228, 48, 247, 95, 27, 178, 48, 204, 204, 170, 143, 170, 59, 27, 122, 15, + 252, 44, 228, 50, 191, 240, 70, 191, 30, 77, 160, 23, 107, 27, 171, 178, 45, 140, 44, 254, 21, 103, 68, 166, 113, + 84, 7, 27, 231, 242, 93, 20, 170, 42, 48, 69, 27, 44, 138, 73, 93, 16, 186, 225, 241, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1827, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8773422101173197563" + } + }, + "cborHex": "1b79c174eadcfd5afb", + "cborBytes": [27, 121, 193, 116, 234, 220, 253, 90, 251], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1828, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1724143990261543945" + } + }, + "cborHex": "1b17ed63d30129f409", + "cborBytes": [27, 23, 237, 99, 211, 1, 41, 244, 9], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1829, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2648530656026542243" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3667040692136181125" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8b00" + }, + { + "_tag": "ByteArray", + "bytearray": "38" + }, + { + "_tag": "ByteArray", + "bytearray": "cefe223d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11631672644862203591" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4990014912172839037" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "402180382648472584" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de700187" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16940457543766364260" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c065847d6da17946d14b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18441575790950044480" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "59f75e3405a3a90c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b24c178996131c0a341e51b32e3f214a7adfd859f428b00413844cefe223dff1ba16c00a4aca3d6c7d8669f1b4540181fd7f6d07d9f1b0594d4ed5b64940844de700187ffff1beb189861b4c7d0644ac065847d6da17946d14b1bffeda37966055340bf4859f75e3405a3a90c417cffff", + "cborBytes": [ + 191, 27, 36, 193, 120, 153, 97, 49, 192, 163, 65, 229, 27, 50, 227, 242, 20, 167, 173, 253, 133, 159, 66, 139, 0, + 65, 56, 68, 206, 254, 34, 61, 255, 27, 161, 108, 0, 164, 172, 163, 214, 199, 216, 102, 159, 27, 69, 64, 24, 31, + 215, 246, 208, 125, 159, 27, 5, 148, 212, 237, 91, 100, 148, 8, 68, 222, 112, 1, 135, 255, 255, 27, 235, 24, 152, + 97, 180, 199, 208, 100, 74, 192, 101, 132, 125, 109, 161, 121, 70, 209, 75, 27, 255, 237, 163, 121, 102, 5, 83, + 64, 191, 72, 89, 247, 94, 52, 5, 163, 169, 12, 65, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1830, + "sample": { + "_tag": "ByteArray", + "bytearray": "32c4b7354accc81665c86f" + }, + "cborHex": "4b32c4b7354accc81665c86f", + "cborBytes": [75, 50, 196, 183, 53, 74, 204, 200, 22, 101, 200, 111], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1831, + "sample": { + "_tag": "ByteArray", + "bytearray": "45fefb79c417018304da0407" + }, + "cborHex": "4c45fefb79c417018304da0407", + "cborBytes": [76, 69, 254, 251, 121, 196, 23, 1, 131, 4, 218, 4, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1832, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3974821522038415902" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "992293014830853245" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "484366" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40c2cce79c71ff02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a34612df0f06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84f9ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1b4f2a3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12980729934830936917" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2968021656655479781" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5792691620285619204" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f7d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12252651849661039800" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2630272814281616940" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14235269887545512060" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edef19cc9f6a4beaa9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c496584e2d5ee9df" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5321737720057138000" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4f22900c8664" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17853653883220043075" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12940416299240165685" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14192067516976488367" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5cb3559251" + } + ] + } + ] + }, + "cborHex": "9fbf1b3729671d62ad621e1b0dc5553d56182c7d434843664840c2cce79c71ff0246a34612df0f064384f9ae44d1b4f2a31bb424d119d2e0a355ffd8669f1b293087f8b29dc3e59fbf1b5063c65670819c04427f7d1baa0a29f09f9444b81b24809b30559f6e2c415d1bc58dd68a80f7107c49edef19cc9f6a4beaa948c496584e2d5ee9dfffd8669f1b49da9c42b7cd8b509f464f22900c86641bf7c4eb9d341aa543ffff1bb395981019e29135ffff1bc4f45a36c1be5faf9f455cb3559251ffff", + "cborBytes": [ + 159, 191, 27, 55, 41, 103, 29, 98, 173, 98, 30, 27, 13, 197, 85, 61, 86, 24, 44, 125, 67, 72, 67, 102, 72, 64, + 194, 204, 231, 156, 113, 255, 2, 70, 163, 70, 18, 223, 15, 6, 67, 132, 249, 174, 68, 209, 180, 242, 163, 27, 180, + 36, 209, 25, 210, 224, 163, 85, 255, 216, 102, 159, 27, 41, 48, 135, 248, 178, 157, 195, 229, 159, 191, 27, 80, + 99, 198, 86, 112, 129, 156, 4, 66, 127, 125, 27, 170, 10, 41, 240, 159, 148, 68, 184, 27, 36, 128, 155, 48, 85, + 159, 110, 44, 65, 93, 27, 197, 141, 214, 138, 128, 247, 16, 124, 73, 237, 239, 25, 204, 159, 106, 75, 234, 169, + 72, 196, 150, 88, 78, 45, 94, 233, 223, 255, 216, 102, 159, 27, 73, 218, 156, 66, 183, 205, 139, 80, 159, 70, 79, + 34, 144, 12, 134, 100, 27, 247, 196, 235, 157, 52, 26, 165, 67, 255, 255, 27, 179, 149, 152, 16, 25, 226, 145, 53, + 255, 255, 27, 196, 244, 90, 54, 193, 190, 95, 175, 159, 69, 92, 179, 85, 146, 81, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1833, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13673543068982718448" + } + }, + "cborHex": "1bbdc22ef9c7b82ff0", + "cborBytes": [27, 189, 194, 46, 249, 199, 184, 47, 240], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1834, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8374161004614855746" + } + }, + "cborHex": "1b7436ff10c3ff2c42", + "cborBytes": [27, 116, 54, 255, 16, 195, 255, 44, 66], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1835, + "sample": { + "_tag": "ByteArray", + "bytearray": "8ac832d4" + }, + "cborHex": "448ac832d4", + "cborBytes": [68, 138, 200, 50, 212], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1836, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30366e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81046f37030505a1c0016e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e22ca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45992d7684a452f9" + } + } + ] + }, + "cborHex": "bf4330366e4b81046f37030505a1c0016e433e22ca4845992d7684a452f9ff", + "cborBytes": [ + 191, 67, 48, 54, 110, 75, 129, 4, 111, 55, 3, 5, 5, 161, 192, 1, 110, 67, 62, 34, 202, 72, 69, 153, 45, 118, 132, + 164, 82, 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1837, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3110ce1452affd95b186" + }, + { + "_tag": "ByteArray", + "bytearray": "7e6d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16749384035829354247" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9935850667325096377" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2577886768040611343" + } + } + ] + } + ] + }, + "cborHex": "d905049f9fd905079f4a3110ce1452affd95b186427e6d1be871c409de350f071b89e33b8a1f3d81b9ff1b23c67e5b783d8e0fffff", + "cborBytes": [ + 217, 5, 4, 159, 159, 217, 5, 7, 159, 74, 49, 16, 206, 20, 82, 175, 253, 149, 177, 134, 66, 126, 109, 27, 232, 113, + 196, 9, 222, 53, 15, 7, 27, 137, 227, 59, 138, 31, 61, 129, 185, 255, 27, 35, 198, 126, 91, 120, 61, 142, 15, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1838, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1552596965727880411" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ddee0b4137ebb72" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "21080392598587924" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41ee1cdd9402cdd50eda698c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14acdd61d02b2eee5f212036" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54f60ae0239263fb357fac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4e2e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4de94" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac0ef5ddec1e6d1e018bf488" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2465794124566304468" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10324720464047092103" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8127755750026563243" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1365664987355028097" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65d9991210bf7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c5e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14048191116364776695" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbc3f71924bfefc40e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3271831923259700476" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11830732580390832264" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77f2c3ec262d196846b5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11857525664380435925" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "845846848240646132" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12669819436277194309" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1946053619937129263" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11596107223360795917" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6501362344852190474" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b158beeb6dd8f44dbbf481ddee0b4137ebb721b004ae48160908a144c41ee1cdd9402cdd50eda698c4c14acdd61d02b2eee5f2120364b54f60ae0239263fb357fac43c4e2e843c4de944cac0ef5ddec1e6d1e018bf488ff1b223842b1240516d41b8f48c68f30bbb1871b70cb96cabd78ceabbf420e3f1b12f3d112057c1a814765d9991210bf7d428c5e417d1bc2f53363cbb884f749cbc3f71924bfefc40e1b2d67e1cc9ead74fcff1ba42f349996d608884a77f2c3ec262d196846b51ba48e64c494793dd51b0bbd0d3a1bc477f41bafd43da653a45e459f1b1b01c574ea37332f1ba0eda614b1c2f50d1b5a397a9b6103f50affff", + "cborBytes": [ + 191, 27, 21, 139, 238, 182, 221, 143, 68, 219, 191, 72, 29, 222, 224, 180, 19, 126, 187, 114, 27, 0, 74, 228, 129, + 96, 144, 138, 20, 76, 65, 238, 28, 221, 148, 2, 205, 213, 14, 218, 105, 140, 76, 20, 172, 221, 97, 208, 43, 46, + 238, 95, 33, 32, 54, 75, 84, 246, 10, 224, 35, 146, 99, 251, 53, 127, 172, 67, 196, 226, 232, 67, 196, 222, 148, + 76, 172, 14, 245, 221, 236, 30, 109, 30, 1, 139, 244, 136, 255, 27, 34, 56, 66, 177, 36, 5, 22, 212, 27, 143, 72, + 198, 143, 48, 187, 177, 135, 27, 112, 203, 150, 202, 189, 120, 206, 171, 191, 66, 14, 63, 27, 18, 243, 209, 18, 5, + 124, 26, 129, 71, 101, 217, 153, 18, 16, 191, 125, 66, 140, 94, 65, 125, 27, 194, 245, 51, 99, 203, 184, 132, 247, + 73, 203, 195, 247, 25, 36, 191, 239, 196, 14, 27, 45, 103, 225, 204, 158, 173, 116, 252, 255, 27, 164, 47, 52, + 153, 150, 214, 8, 136, 74, 119, 242, 195, 236, 38, 45, 25, 104, 70, 181, 27, 164, 142, 100, 196, 148, 121, 61, + 213, 27, 11, 189, 13, 58, 27, 196, 119, 244, 27, 175, 212, 61, 166, 83, 164, 94, 69, 159, 27, 27, 1, 197, 116, + 234, 55, 51, 47, 27, 160, 237, 166, 20, 177, 194, 245, 13, 27, 90, 57, 122, 155, 97, 3, 245, 10, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1839, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abd7a4423a3fa423ca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf0149abd7a4423a3fa423ca417380ff", + "cborBytes": [191, 1, 73, 171, 215, 164, 66, 58, 63, 164, 35, 202, 65, 115, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1840, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5621226052003330454" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12516520352830147494" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12776403301300818093" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1ddcab90cd70293" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13600127240792827755" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11277424667533959590" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bfc882" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14150239821482496534" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8485866b02ce1a23e3d4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14169971618986002962" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12514710359181497582" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "313681bd981c" + } + ] + } + } + ] + }, + "cborHex": "bf1b4e029b4fcfd479961badb39cf20e634ba61bb14ee71c3929d0ad48a1ddcab90cd702931bbcbd5bab3f91e76bbf1b9c8175fc1996e1a643bfc882ff1bc45fc0257e0d12164a8485866b02ce1a23e3d41bc4a5da1c9b070a12d8669f1badad2ec411ea14ee9f46313681bd981cffffff", + "cborBytes": [ + 191, 27, 78, 2, 155, 79, 207, 212, 121, 150, 27, 173, 179, 156, 242, 14, 99, 75, 166, 27, 177, 78, 231, 28, 57, + 41, 208, 173, 72, 161, 221, 202, 185, 12, 215, 2, 147, 27, 188, 189, 91, 171, 63, 145, 231, 107, 191, 27, 156, + 129, 117, 252, 25, 150, 225, 166, 67, 191, 200, 130, 255, 27, 196, 95, 192, 37, 126, 13, 18, 22, 74, 132, 133, + 134, 107, 2, 206, 26, 35, 227, 212, 27, 196, 165, 218, 28, 155, 7, 10, 18, 216, 102, 159, 27, 173, 173, 46, 196, + 17, 234, 20, 238, 159, 70, 49, 54, 129, 189, 152, 28, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1841, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6600228468162246510" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2432092698701615410" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d68" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14757149012788292097" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b581df90f5651066eadf2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0250a441ececa9f04ca1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bbf2222637c52e94" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63abd113c24591f0e17f8b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "556b7fde74c7920d437e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0670352e5ffbfc393e" + } + ] + }, + "cborHex": "d8669f1b5b98b8d2813b376e9fbf1b21c0876c76ee5132426d681bcccbecd724c0aa014b9b581df90f5651066eadf24a0250a441ececa9f04ca148bbf2222637c52e944b63abd113c24591f0e17f8b4a556b7fde74c7920d437eff490670352e5ffbfc393effff", + "cborBytes": [ + 216, 102, 159, 27, 91, 152, 184, 210, 129, 59, 55, 110, 159, 191, 27, 33, 192, 135, 108, 118, 238, 81, 50, 66, + 109, 104, 27, 204, 203, 236, 215, 36, 192, 170, 1, 75, 155, 88, 29, 249, 15, 86, 81, 6, 110, 173, 242, 74, 2, 80, + 164, 65, 236, 236, 169, 240, 76, 161, 72, 187, 242, 34, 38, 55, 197, 46, 148, 75, 99, 171, 209, 19, 194, 69, 145, + 240, 225, 127, 139, 74, 85, 107, 127, 222, 116, 199, 146, 13, 67, 126, 255, 73, 6, 112, 53, 46, 95, 251, 252, 57, + 62, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1842, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3971492058423437784" + } + }, + "cborHex": "1b371d92fc3a9d29d8", + "cborBytes": [27, 55, 29, 146, 252, 58, 157, 41, 216], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1843, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "933360166192193492" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2588645935855550205" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "320e39" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5427420105888870166" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f739cbab5" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0cf3f62041629fd4bf1b23ecb7c36fedbefd43320e391b4b5211d4a251af16458f739cbab5ffff", + "cborBytes": [ + 191, 27, 12, 243, 246, 32, 65, 98, 159, 212, 191, 27, 35, 236, 183, 195, 111, 237, 190, 253, 67, 50, 14, 57, 27, + 75, 82, 17, 212, 162, 81, 175, 22, 69, 143, 115, 156, 186, 181, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1844, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16723637477076615160" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2ffcd0c8d4c3709413cda319" + }, + { + "_tag": "ByteArray", + "bytearray": "4c3d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15507743528046050281" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2006899811288328206" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82df913460f115" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10057913355818677244" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "606ffd88001cc1" + }, + { + "_tag": "ByteArray", + "bytearray": "f7e23e12b4d343" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11085542897847971605" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ddeb" + }, + { + "_tag": "ByteArray", + "bytearray": "0430fc246953b8" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9540efdcc6e067" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "231823024612616052" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5878649435029462436" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9839488246516962005" + } + } + ] + } + } + ] + }, + "cborHex": "bf1be8164bae058fbff89f4c2ffcd0c8d4c3709413cda319424c3d1bd7369293410c3be91b1bd9f0becfa3a80eff4782df913460f115d8669f1b8b94e2e8733ab3fc9f47606ffd88001cc147f7e23e12b4d3431b99d7c28828952f1542ddeb470430fc246953b8ffff479540efdcc6e0679f1b033799d008caa7741b51952883c5fb5da41b888ce26da94652d5ffff", + "cborBytes": [ + 191, 27, 232, 22, 75, 174, 5, 143, 191, 248, 159, 76, 47, 252, 208, 200, 212, 195, 112, 148, 19, 205, 163, 25, 66, + 76, 61, 27, 215, 54, 146, 147, 65, 12, 59, 233, 27, 27, 217, 240, 190, 207, 163, 168, 14, 255, 71, 130, 223, 145, + 52, 96, 241, 21, 216, 102, 159, 27, 139, 148, 226, 232, 115, 58, 179, 252, 159, 71, 96, 111, 253, 136, 0, 28, 193, + 71, 247, 226, 62, 18, 180, 211, 67, 27, 153, 215, 194, 136, 40, 149, 47, 21, 66, 221, 235, 71, 4, 48, 252, 36, + 105, 83, 184, 255, 255, 71, 149, 64, 239, 220, 198, 224, 103, 159, 27, 3, 55, 153, 208, 8, 202, 167, 116, 27, 81, + 149, 40, 131, 197, 251, 93, 164, 27, 136, 140, 226, 109, 169, 70, 82, 213, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1845, + "sample": { + "_tag": "ByteArray", + "bytearray": "0503" + }, + "cborHex": "420503", + "cborBytes": [66, 5, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1846, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8240222925879964619" + } + }, + "cborHex": "1b725b2717af1af3cb", + "cborBytes": [27, 114, 91, 39, 23, 175, 26, 243, 203], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1847, + "sample": { + "_tag": "ByteArray", + "bytearray": "5bee072a37fbe85fea6e" + }, + "cborHex": "4a5bee072a37fbe85fea6e", + "cborBytes": [74, 91, 238, 7, 42, 55, 251, 232, 95, 234, 110], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1848, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7140299540362456007" + } + }, + "cborHex": "1b63177099dd306bc7", + "cborBytes": [27, 99, 23, 112, 153, 221, 48, 107, 199], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1849, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10017048590769067710" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d954ae765e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16425322610154391128" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7a881" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17857241165018656560" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14454560930065254810" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92f047083e4f245f1c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fd2526ccc57f93443739421" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2965a60b5ebcf6c60e89418" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8da157da0f7f1f8b59" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10429862166120538040" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "460d6a2d0006a49d9956" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3967060206373577802" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10196389276186563831" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fdb3a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17277978956892549862" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7eb8541f01308e3b73" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17430030604769836628" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5946906355230113096" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9252740815176813526" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10666961679358522430" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16399397933038618528" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1620752087702115086" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17560549270630844093" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1611925" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2018949" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e320" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfc7e45f5c88aa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "371bcb2701521037acca0900" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "277953ad1a96dc1b6875" + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9fbf1b8b03b49ee69e16be45d954ae765e1be3f277e38b71c65843d7a881ffd8669f1bf7d1aa3a556b6f309f80bf1bc898ea9514c7899a4992f047083e4f245f1c4c0fd2526ccc57f934437394214cf2965a60b5ebcf6c60e89418498da157da0f7f1f8b591b90be50615be69fb8ff4a460d6a2d0006a49d99569f1b370dd43d437c244affbf1b8d80da061eb3d4f7435fdb3a1befc7b651924132e6497eb8541f01308e3b73ffffffd8669f1bf1e3e87c9d7e3e549f1b5287a7d27000fd48a0bf1b806856bf8f5f4bd61b9408a921a2de743e1be3965d88490ac7a01b167e116fc875130e1bf3b39a8598b246bd44b1611925ffbf44b201894942e32047dfc7e45f5c88aa4c371bcb2701521037acca0900ff4a277953ad1a96dc1b6875ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 191, 27, 139, 3, 180, 158, 230, 158, 22, 190, 69, + 217, 84, 174, 118, 94, 27, 227, 242, 119, 227, 139, 113, 198, 88, 67, 215, 168, 129, 255, 216, 102, 159, 27, 247, + 209, 170, 58, 85, 107, 111, 48, 159, 128, 191, 27, 200, 152, 234, 149, 20, 199, 137, 154, 73, 146, 240, 71, 8, 62, + 79, 36, 95, 28, 76, 15, 210, 82, 108, 204, 87, 249, 52, 67, 115, 148, 33, 76, 242, 150, 90, 96, 181, 235, 207, + 108, 96, 232, 148, 24, 73, 141, 161, 87, 218, 15, 127, 31, 139, 89, 27, 144, 190, 80, 97, 91, 230, 159, 184, 255, + 74, 70, 13, 106, 45, 0, 6, 164, 157, 153, 86, 159, 27, 55, 13, 212, 61, 67, 124, 36, 74, 255, 191, 27, 141, 128, + 218, 6, 30, 179, 212, 247, 67, 95, 219, 58, 27, 239, 199, 182, 81, 146, 65, 50, 230, 73, 126, 184, 84, 31, 1, 48, + 142, 59, 115, 255, 255, 255, 216, 102, 159, 27, 241, 227, 232, 124, 157, 126, 62, 84, 159, 27, 82, 135, 167, 210, + 112, 0, 253, 72, 160, 191, 27, 128, 104, 86, 191, 143, 95, 75, 214, 27, 148, 8, 169, 33, 162, 222, 116, 62, 27, + 227, 150, 93, 136, 73, 10, 199, 160, 27, 22, 126, 17, 111, 200, 117, 19, 14, 27, 243, 179, 154, 133, 152, 178, 70, + 189, 68, 177, 97, 25, 37, 255, 191, 68, 178, 1, 137, 73, 66, 227, 32, 71, 223, 199, 228, 95, 92, 136, 170, 76, 55, + 27, 203, 39, 1, 82, 16, 55, 172, 202, 9, 0, 255, 74, 39, 121, 83, 173, 26, 150, 220, 27, 104, 117, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1850, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5180432580185931332" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30c875" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6311673041790461504" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9822008821402897047" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ca76d51dd055" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3475895943904897978" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8032531715578225315" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff8a0a" + }, + { + "_tag": "ByteArray", + "bytearray": "6f703d4aab80edb6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12856212868251702423" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16028953130540832784" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b47e497fc0cd7be44bf4330c8754166ff1b57979130da546640d8669f1b884ec8fbdc790a979f46ca76d51dd0551b303cdcf1e4ac2bba1b6f794909821962a343ff8a0a486f703d4aab80edb6ffff1bb26a717d10f2d4979f1bde7247f27b459810ffff", + "cborBytes": [ + 191, 27, 71, 228, 151, 252, 12, 215, 190, 68, 191, 67, 48, 200, 117, 65, 102, 255, 27, 87, 151, 145, 48, 218, 84, + 102, 64, 216, 102, 159, 27, 136, 78, 200, 251, 220, 121, 10, 151, 159, 70, 202, 118, 213, 29, 208, 85, 27, 48, 60, + 220, 241, 228, 172, 43, 186, 27, 111, 121, 73, 9, 130, 25, 98, 163, 67, 255, 138, 10, 72, 111, 112, 61, 74, 171, + 128, 237, 182, 255, 255, 27, 178, 106, 113, 125, 16, 242, 212, 151, 159, 27, 222, 114, 71, 242, 123, 69, 152, 16, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1851, + "sample": { + "_tag": "ByteArray", + "bytearray": "03" + }, + "cborHex": "4103", + "cborBytes": [65, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1852, + "sample": { + "_tag": "ByteArray", + "bytearray": "ac7d5f" + }, + "cborHex": "43ac7d5f", + "cborBytes": [67, 172, 125, 95], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1853, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8931242433228798374" + } + }, + "cborHex": "1b7bf225ac5b7f79a6", + "cborBytes": [27, 123, 242, 37, 172, 91, 127, 121, 166], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1854, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2657309098413272164" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "87571144176969275" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17027661187010529320" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bd847ef" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b24e0a88bc5562c641b01371d7ddd3e263b1bec4e67a217780828447bd847efffff", + "cborBytes": [ + 159, 191, 27, 36, 224, 168, 139, 197, 86, 44, 100, 27, 1, 55, 29, 125, 221, 62, 38, 59, 27, 236, 78, 103, 162, 23, + 120, 8, 40, 68, 123, 216, 71, 239, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1855, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff980ffff", + "cborBytes": [159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1856, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3771e63a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1844bdb534" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38aa337df0bdc4b8b8d77e" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80411043d363" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8733782501706572664" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6514966869588322911" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de7fcc364c1782" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11498630673787106919" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11839547031896809121" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf443771e63a451844bdb5344b38aa337df0bdc4b8b8d77ea04680411043d363bf1b7934a0e967be23781b5a69cfd9a1402a5fff47de7fcc364c1782bf1b9f9357acea7db6671ba44e854c01bd5ea1ffff", + "cborBytes": [ + 191, 68, 55, 113, 230, 58, 69, 24, 68, 189, 181, 52, 75, 56, 170, 51, 125, 240, 189, 196, 184, 184, 215, 126, 160, + 70, 128, 65, 16, 67, 211, 99, 191, 27, 121, 52, 160, 233, 103, 190, 35, 120, 27, 90, 105, 207, 217, 161, 64, 42, + 95, 255, 71, 222, 127, 204, 54, 76, 23, 130, 191, 27, 159, 147, 87, 172, 234, 125, 182, 103, 27, 164, 78, 133, 76, + 1, 189, 94, 161, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1857, + "sample": { + "_tag": "ByteArray", + "bytearray": "5a31397898157cb048" + }, + "cborHex": "495a31397898157cb048", + "cborBytes": [73, 90, 49, 57, 120, 152, 21, 124, 176, 72], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1858, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7860778040925078983" + } + }, + "cborHex": "1b6d1717fae387c5c7", + "cborBytes": [27, 109, 23, 23, 250, 227, 135, 197, 199], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1859, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7318448076876206622" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1027284312093404687" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15107200224411369823" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13915241418801706246" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "203097923682250506" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8042143926860980664" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "079df0d5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14308707066773366662" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3590095533006342344" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db4e2c54e49251a1bd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15829749540150682951" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8285ddc01cdf716300c2" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16930325731468715414" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15418349571892527892" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d1f1e8657675" + }, + { + "_tag": "ByteArray", + "bytearray": "a7" + }, + { + "_tag": "ByteArray", + "bytearray": "e37b4954" + }, + { + "_tag": "ByteArray", + "bytearray": "faf0dc8e63058140a5e1" + }, + { + "_tag": "ByteArray", + "bytearray": "9282" + } + ] + } + } + ] + }, + "cborHex": "bf1b659059c04958d21ed8669f1b0e41a5a399a8ae0f9f1bd1a78e900ebdc15f1bc11cde58237a75061b02d18c7c4bb32f0affff1b6f9b6f4ad91d21b844079df0d51bc692bd443625e786bf1b31d294ddba8f48c849db4e2c54e49251a1bd1bdbae91565015a5474a8285ddc01cdf716300c2ff1beaf4998d53d92596d8669f1bd5f8fb3ee77343149f46d1f1e865767541a744e37b49544afaf0dc8e63058140a5e1429282ffffff", + "cborBytes": [ + 191, 27, 101, 144, 89, 192, 73, 88, 210, 30, 216, 102, 159, 27, 14, 65, 165, 163, 153, 168, 174, 15, 159, 27, 209, + 167, 142, 144, 14, 189, 193, 95, 27, 193, 28, 222, 88, 35, 122, 117, 6, 27, 2, 209, 140, 124, 75, 179, 47, 10, + 255, 255, 27, 111, 155, 111, 74, 217, 29, 33, 184, 68, 7, 157, 240, 213, 27, 198, 146, 189, 68, 54, 37, 231, 134, + 191, 27, 49, 210, 148, 221, 186, 143, 72, 200, 73, 219, 78, 44, 84, 228, 146, 81, 161, 189, 27, 219, 174, 145, 86, + 80, 21, 165, 71, 74, 130, 133, 221, 192, 28, 223, 113, 99, 0, 194, 255, 27, 234, 244, 153, 141, 83, 217, 37, 150, + 216, 102, 159, 27, 213, 248, 251, 62, 231, 115, 67, 20, 159, 70, 209, 241, 232, 101, 118, 117, 65, 167, 68, 227, + 123, 73, 84, 74, 250, 240, 220, 142, 99, 5, 129, 64, 165, 225, 66, 146, 130, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1860, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3474867076134204540" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1810779585081017951" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10544110697552959875" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13355049658197468045" + } + }, + { + "_tag": "ByteArray", + "bytearray": "237aca7ca1d0799c" + } + ] + } + } + ] + }, + "cborHex": "bf1b30393531f2adf47cd8669f1b19212e704f48865f80ff1b925434d0780a59839f1bb956aae7f28fe38d48237aca7ca1d0799cffff", + "cborBytes": [ + 191, 27, 48, 57, 53, 49, 242, 173, 244, 124, 216, 102, 159, 27, 25, 33, 46, 112, 79, 72, 134, 95, 128, 255, 27, + 146, 84, 52, 208, 120, 10, 89, 131, 159, 27, 185, 86, 170, 231, 242, 143, 227, 141, 72, 35, 122, 202, 124, 161, + 208, 121, 156, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1861, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05fcfb8d07fd1acc07f32f35" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9476965954911082924" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "844b00b43fcad5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5359657245839364929" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a34ec9f748c481a878cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16821839486828481160" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cab8fdb7a19fda8f149c4e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9415238172375796511" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc080d4771d3d669" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9dcd7abd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f71bf1c9d8b0f2644d3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6841756122536111378" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4c05fcfb8d07fd1acc07f32f35d8669f1b8384f2532af219ac80ff4151bf47844b00b43fcad51b4a6153de501a93414aa34ec9f748c481a878cd1be9732de3290d0a884bcab8fdb7a19fda8f149c4e1b82a9a53bd4284b1f48dc080d4771d3d669449dcd7abd4af71bf1c9d8b0f2644d3f1b5ef2ccf1bb9e6d12ffff", + "cborBytes": [ + 191, 76, 5, 252, 251, 141, 7, 253, 26, 204, 7, 243, 47, 53, 216, 102, 159, 27, 131, 132, 242, 83, 42, 242, 25, + 172, 128, 255, 65, 81, 191, 71, 132, 75, 0, 180, 63, 202, 213, 27, 74, 97, 83, 222, 80, 26, 147, 65, 74, 163, 78, + 201, 247, 72, 196, 129, 168, 120, 205, 27, 233, 115, 45, 227, 41, 13, 10, 136, 75, 202, 184, 253, 183, 161, 159, + 218, 143, 20, 156, 78, 27, 130, 169, 165, 59, 212, 40, 75, 31, 72, 220, 8, 13, 71, 113, 211, 214, 105, 68, 157, + 205, 122, 189, 74, 247, 27, 241, 201, 216, 176, 242, 100, 77, 63, 27, 94, 242, 204, 241, 187, 158, 109, 18, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1862, + "sample": { + "_tag": "ByteArray", + "bytearray": "c9054ca7e193" + }, + "cborHex": "46c9054ca7e193", + "cborBytes": [70, 201, 5, 76, 167, 225, 147], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1863, + "sample": { + "_tag": "ByteArray", + "bytearray": "6cc6d86bb15b" + }, + "cborHex": "466cc6d86bb15b", + "cborBytes": [70, 108, 198, 216, 107, 177, 91], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1864, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1216382363705803238" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10456968065276171944" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17307488533597587015" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9124f1" + } + } + ] + }, + "cborHex": "bf1b10e17550abbc01e61b911e9d0d4e63d6a81bf0308d1f4f3b0647439124f1ff", + "cborBytes": [ + 191, 27, 16, 225, 117, 80, 171, 188, 1, 230, 27, 145, 30, 157, 13, 78, 99, 214, 168, 27, 240, 48, 141, 31, 79, 59, + 6, 71, 67, 145, 36, 241, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1865, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7226021542641173115" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8350939469987038547" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dae90b62e6" + }, + { + "_tag": "ByteArray", + "bytearray": "1f7440366a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9185728680922469072" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15161294913186046127" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16349816766388319219" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12804014832949658540" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9310553196413991753" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18328351804520889147" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8975231964949562680" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a4f" + }, + { + "_tag": "ByteArray", + "bytearray": "83c4d278" + }, + { + "_tag": "ByteArray", + "bytearray": "f53f72e177085e41529d0c" + } + ] + } + } + ] + }, + "cborHex": "bf1b6447fc4ed472827b801b73e47f33e95dc5539f45dae90b62e6451f7440366a1b7f7a4391358052d0ff1bd267bd65436420af419c1be2e637b9574d33f3d8669f1bb1b0ffa6e8cc03ac9f1b8135bacd7ea23b49ffff1bfe5b62dbc2db7b3b9f1b7c8e6deb578cc538420a4f4483c4d2784bf53f72e177085e41529d0cffff", + "cborBytes": [ + 191, 27, 100, 71, 252, 78, 212, 114, 130, 123, 128, 27, 115, 228, 127, 51, 233, 93, 197, 83, 159, 69, 218, 233, + 11, 98, 230, 69, 31, 116, 64, 54, 106, 27, 127, 122, 67, 145, 53, 128, 82, 208, 255, 27, 210, 103, 189, 101, 67, + 100, 32, 175, 65, 156, 27, 226, 230, 55, 185, 87, 77, 51, 243, 216, 102, 159, 27, 177, 176, 255, 166, 232, 204, 3, + 172, 159, 27, 129, 53, 186, 205, 126, 162, 59, 73, 255, 255, 27, 254, 91, 98, 219, 194, 219, 123, 59, 159, 27, + 124, 142, 109, 235, 87, 140, 197, 56, 66, 10, 79, 68, 131, 196, 210, 120, 75, 245, 63, 114, 225, 119, 8, 94, 65, + 82, 157, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1866, + "sample": { + "_tag": "ByteArray", + "bytearray": "3fecee" + }, + "cborHex": "433fecee", + "cborBytes": [67, 63, 236, 238], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1867, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "529960985489973132" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8846139606355502330" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18196912471293163181" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "514651752083555690" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3e3a8e1d585c4f094" + }, + { + "_tag": "ByteArray", + "bytearray": "24729ade3d382fa412380a" + }, + { + "_tag": "ByteArray", + "bytearray": "0180902d0b0e5334dbca" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6703439338439218462" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16298823278035797580" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13031473454854200163" + } + }, + { + "_tag": "ByteArray", + "bytearray": "981f6116bc535a775d5399" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1323122900141207419" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15522693898535344959" + } + } + ] + }, + "cborHex": "d8669f1b075accb55cf21f8c9f9fd8669f1b7ac3cd1a665564fa9f1bfc886b7b344df6ad1b0724690ab1f9056a49f3e3a8e1d585c4f0944b24729ade3d382fa412380a4a0180902d0b0e5334dbcaffff9f1b5d07668fdd0c951e1be2310d6aa031064c1bb4d9181040845b634b981f6116bc535a775d53991b125cad447919ef7bffff1bd76bafdba3529b3fffff", + "cborBytes": [ + 216, 102, 159, 27, 7, 90, 204, 181, 92, 242, 31, 140, 159, 159, 216, 102, 159, 27, 122, 195, 205, 26, 102, 85, + 100, 250, 159, 27, 252, 136, 107, 123, 52, 77, 246, 173, 27, 7, 36, 105, 10, 177, 249, 5, 106, 73, 243, 227, 168, + 225, 213, 133, 196, 240, 148, 75, 36, 114, 154, 222, 61, 56, 47, 164, 18, 56, 10, 74, 1, 128, 144, 45, 11, 14, 83, + 52, 219, 202, 255, 255, 159, 27, 93, 7, 102, 143, 221, 12, 149, 30, 27, 226, 49, 13, 106, 160, 49, 6, 76, 27, 180, + 217, 24, 16, 64, 132, 91, 99, 75, 152, 31, 97, 22, 188, 83, 90, 119, 93, 83, 153, 27, 18, 92, 173, 68, 121, 25, + 239, 123, 255, 255, 27, 215, 107, 175, 219, 163, 82, 155, 63, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1868, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + "cborHex": "9f0fff", + "cborBytes": [159, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1869, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2e763a751587808579" + }, + { + "_tag": "ByteArray", + "bytearray": "e9708ea6730f6c2f8029dfc8" + } + ] + }, + "cborHex": "9f492e763a7515878085794ce9708ea6730f6c2f8029dfc8ff", + "cborBytes": [ + 159, 73, 46, 118, 58, 117, 21, 135, 128, 133, 121, 76, 233, 112, 142, 166, 115, 15, 108, 47, 128, 41, 223, 200, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1870, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11584108484837912623" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14097782797139077960" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c90561816fc8b547" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e705909" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6406824381297392583" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3366" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9cd46fbf058b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85837500210a8176d3c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11098125377483030836" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f29c42c398f654875d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b2c68f748ac961" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8506600506966867138" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03b8c71ad3073e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12316703058298121041" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a9489d097afb13" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3411566018470986589" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15255041553531085383" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1cdf" + }, + { + "_tag": "ByteArray", + "bytearray": "bf97ac" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a7dfd8cc3e3205569cdafec7" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5707678425286852194" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0af8649ab50f736d" + }, + { + "_tag": "ByteArray", + "bytearray": "bc" + }, + { + "_tag": "ByteArray", + "bytearray": "f497ac" + }, + { + "_tag": "ByteArray", + "bytearray": "c43e39d7d8fddc43f8" + }, + { + "_tag": "ByteArray", + "bytearray": "b58abcd1f2f02fe636acf139" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "76e1b5df0e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2236978864495094247" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14901922257058955141" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8939402385042873510" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17698336049096038299" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7538291497859910858" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13575663264319763791" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7798320961963790156" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b3f8d4233f67" + } + ] + } + ] + }, + "cborHex": "d8669f1ba0c3054aae5a302f9fd8669f1bc3a562c2c0166b489f48c90561816fc8b54780bf441e7059091b58e99cd4798afbc742336647c9cd46fbf058b94a85837500210a8176d3c61b9a04763afd9fc134ffffff9f49f29c42c398f654875d9f47b2c68f748ac9611b760d841757eafcc24703b8c71ad3073e1baaedb82cc1d3ab5147a9489d097afb13ffd8669f1b2f585137f2c1c35d9f1bd3b4cb77e00b2247421cdf43bf97acffff4ca7dfd8cc3e3205569cdafec7ffd8669f1b4f35bf4987623e6280ff9f9f480af8649ab50f736d41bc43f497ac49c43e39d7d8fddc43f84cb58abcd1f2f02fe636acf139ff4576e1b5df0e9f1b1f0b586cdc4969e7ffd8669f1bcece4356ca7c7f859f1b7c0f231b30c29ca61bf59d1edde9dc179b1b689d642d7f498cca1bbc6671cfdc19754f1b6c393398fe558f4cffff46b3f8d4233f67ffffff", + "cborBytes": [ + 216, 102, 159, 27, 160, 195, 5, 74, 174, 90, 48, 47, 159, 216, 102, 159, 27, 195, 165, 98, 194, 192, 22, 107, 72, + 159, 72, 201, 5, 97, 129, 111, 200, 181, 71, 128, 191, 68, 30, 112, 89, 9, 27, 88, 233, 156, 212, 121, 138, 251, + 199, 66, 51, 102, 71, 201, 205, 70, 251, 240, 88, 185, 74, 133, 131, 117, 0, 33, 10, 129, 118, 211, 198, 27, 154, + 4, 118, 58, 253, 159, 193, 52, 255, 255, 255, 159, 73, 242, 156, 66, 195, 152, 246, 84, 135, 93, 159, 71, 178, + 198, 143, 116, 138, 201, 97, 27, 118, 13, 132, 23, 87, 234, 252, 194, 71, 3, 184, 199, 26, 211, 7, 62, 27, 170, + 237, 184, 44, 193, 211, 171, 81, 71, 169, 72, 157, 9, 122, 251, 19, 255, 216, 102, 159, 27, 47, 88, 81, 55, 242, + 193, 195, 93, 159, 27, 211, 180, 203, 119, 224, 11, 34, 71, 66, 28, 223, 67, 191, 151, 172, 255, 255, 76, 167, + 223, 216, 204, 62, 50, 5, 86, 156, 218, 254, 199, 255, 216, 102, 159, 27, 79, 53, 191, 73, 135, 98, 62, 98, 128, + 255, 159, 159, 72, 10, 248, 100, 154, 181, 15, 115, 109, 65, 188, 67, 244, 151, 172, 73, 196, 62, 57, 215, 216, + 253, 220, 67, 248, 76, 181, 138, 188, 209, 242, 240, 47, 230, 54, 172, 241, 57, 255, 69, 118, 225, 181, 223, 14, + 159, 27, 31, 11, 88, 108, 220, 73, 105, 231, 255, 216, 102, 159, 27, 206, 206, 67, 86, 202, 124, 127, 133, 159, + 27, 124, 15, 35, 27, 48, 194, 156, 166, 27, 245, 157, 30, 221, 233, 220, 23, 155, 27, 104, 157, 100, 45, 127, 73, + 140, 202, 27, 188, 102, 113, 207, 220, 25, 117, 79, 27, 108, 57, 51, 152, 254, 85, 143, 76, 255, 255, 70, 179, + 248, 212, 35, 63, 103, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1871, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d18ede1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8185144705149384467" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12084258011496200689" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15395401984211653554" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f62111e21f1fad27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16176825356867255830" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b0bed57371" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20f5ef0ecf453156e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14864918518082425063" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8792567844265484526" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2535814787690027161" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10267983164000064901" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dcede266733f4d3df6dc" + }, + { + "_tag": "ByteArray", + "bytearray": "57730b349fbb0c6a8031" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92c593f6dd29fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac92" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98d121478c1391bfe1" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc140c108c277c06a97defa8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2381417371457242048" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2cf63552f495" + }, + { + "_tag": "ByteArray", + "bytearray": "1f13499839" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9575355774378591962" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17671584323939306879" + } + } + ] + } + } + ] + }, + "cborHex": "bf440d18ede1d8669f1b719779be199937139f1ba7b3e8a2e56639f11bd5a774894b4793b248f62111e21f1fad271be07fa0f41d9abe1645b0bed57371ffff4920f5ef0ecf453156e81bce4acca26d6dd0e74189d8669f1b7a0579de8cf760ee9f1b2331061d347258991b8e7f344919ea55854adcede266733f4d3df6dc4a57730b349fbb0c6a8031ffff4792c593f6dd29fb42ac924998d121478c1391bfe1a04cfc140c108c277c06a97defa8d8669f1b210c7e7b67a743c09f462cf63552f495451f134998391b84e27f5829d246da1bf53e145086c38d7fffffff", + "cborBytes": [ + 191, 68, 13, 24, 237, 225, 216, 102, 159, 27, 113, 151, 121, 190, 25, 153, 55, 19, 159, 27, 167, 179, 232, 162, + 229, 102, 57, 241, 27, 213, 167, 116, 137, 75, 71, 147, 178, 72, 246, 33, 17, 226, 31, 31, 173, 39, 27, 224, 127, + 160, 244, 29, 154, 190, 22, 69, 176, 190, 213, 115, 113, 255, 255, 73, 32, 245, 239, 14, 207, 69, 49, 86, 232, 27, + 206, 74, 204, 162, 109, 109, 208, 231, 65, 137, 216, 102, 159, 27, 122, 5, 121, 222, 140, 247, 96, 238, 159, 27, + 35, 49, 6, 29, 52, 114, 88, 153, 27, 142, 127, 52, 73, 25, 234, 85, 133, 74, 220, 237, 226, 102, 115, 63, 77, 61, + 246, 220, 74, 87, 115, 11, 52, 159, 187, 12, 106, 128, 49, 255, 255, 71, 146, 197, 147, 246, 221, 41, 251, 66, + 172, 146, 73, 152, 209, 33, 71, 140, 19, 145, 191, 225, 160, 76, 252, 20, 12, 16, 140, 39, 124, 6, 169, 125, 239, + 168, 216, 102, 159, 27, 33, 12, 126, 123, 103, 167, 67, 192, 159, 70, 44, 246, 53, 82, 244, 149, 69, 31, 19, 73, + 152, 57, 27, 132, 226, 127, 88, 41, 210, 70, 218, 27, 245, 62, 20, 80, 134, 195, 141, 127, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1872, + "sample": { + "_tag": "ByteArray", + "bytearray": "ee54160700b70606fdfbfd03" + }, + "cborHex": "4cee54160700b70606fdfbfd03", + "cborBytes": [76, 238, 84, 22, 7, 0, 183, 6, 6, 253, 251, 253, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1873, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17997065071790017529" + } + }, + "cborHex": "1bf9c26b548ba24bf9", + "cborBytes": [27, 249, 194, 107, 84, 139, 162, 75, 249], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1874, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6447854787531509095" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6829984527437864759" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc3da41eefc306a6ed7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9782882007089372358" + } + } + ] + } + ] + }, + "cborHex": "d87f9f1b597b61c45e1e0d67d8669f1b5ec8fabdab591f379f4afc3da41eefc306a6ed7c1b87c3c75a801f5cc6ffffff", + "cborBytes": [ + 216, 127, 159, 27, 89, 123, 97, 196, 94, 30, 13, 103, 216, 102, 159, 27, 94, 200, 250, 189, 171, 89, 31, 55, 159, + 74, 252, 61, 164, 30, 239, 195, 6, 166, 237, 124, 27, 135, 195, 199, 90, 128, 31, 92, 198, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1875, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5388163891860035842" + } + }, + "cborHex": "1b4ac69a830de75902", + "cborBytes": [27, 74, 198, 154, 131, 13, 231, 89, 2], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1876, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11369393424769233171" + } + }, + "cborHex": "1b9dc833150b083113", + "cborBytes": [27, 157, 200, 51, 21, 11, 8, 49, 19], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1877, + "sample": { + "_tag": "ByteArray", + "bytearray": "84d8ac7084738c088c" + }, + "cborHex": "4984d8ac7084738c088c", + "cborBytes": [73, 132, 216, 172, 112, 132, 115, 140, 8, 140], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1878, + "sample": { + "_tag": "ByteArray", + "bytearray": "c6d5032f912290c54574" + }, + "cborHex": "4ac6d5032f912290c54574", + "cborBytes": [74, 198, 213, 3, 47, 145, 34, 144, 197, 69, 116], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1879, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16231540337199871563" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "86a158690664" + }, + { + "_tag": "ByteArray", + "bytearray": "dd500a2a9f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5631646963471218659" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3167618612224007871" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b69710a4aa66ec5f7a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7709942238529774141" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2973531645008398032" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17755505877222891901" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1087210917013215295" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1919292536487502885" + } + }, + { + "_tag": "ByteArray", + "bytearray": "085c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13447812602433304909" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14269017643994693415" + } + } + ] + }, + "cborHex": "d8669f1be14203f03438f64b9f4686a15869066445dd500a2a9f9f9f1b4e27a113561bf7e31b2bf5a45855871ebf49b69710a4aa66ec5f7a1b6aff379dee58e23d1b29441b46d51bc6d0ffa01bf6683a85cb3b217dff9f9f1b0f168c91987fd83f1b1aa2b264a165642542085c1bbaa03a4ff60ef94dffff1bc605bbf25c15bf27ffff", + "cborBytes": [ + 216, 102, 159, 27, 225, 66, 3, 240, 52, 56, 246, 75, 159, 70, 134, 161, 88, 105, 6, 100, 69, 221, 80, 10, 42, 159, + 159, 159, 27, 78, 39, 161, 19, 86, 27, 247, 227, 27, 43, 245, 164, 88, 85, 135, 30, 191, 73, 182, 151, 16, 164, + 170, 102, 236, 95, 122, 27, 106, 255, 55, 157, 238, 88, 226, 61, 27, 41, 68, 27, 70, 213, 27, 198, 208, 255, 160, + 27, 246, 104, 58, 133, 203, 59, 33, 125, 255, 159, 159, 27, 15, 22, 140, 145, 152, 127, 216, 63, 27, 26, 162, 178, + 100, 161, 101, 100, 37, 66, 8, 92, 27, 186, 160, 58, 79, 246, 14, 249, 77, 255, 255, 27, 198, 5, 187, 242, 92, 21, + 191, 39, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1880, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9575066190612512493" + } + }, + "cborHex": "1b84e177f8304fbeed", + "cborBytes": [27, 132, 225, 119, 248, 48, 79, 190, 237], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1881, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fbb4ec0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + }, + "cborHex": "bf11446fbb4ec01bfffffffffffffff50aff", + "cborBytes": [191, 17, 68, 111, 187, 78, 192, 27, 255, 255, 255, 255, 255, 255, 255, 245, 10, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1882, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5740846360092751924" + } + } + ] + }, + "cborHex": "d9050b9f1b4fab9559236c3834ff", + "cborBytes": [217, 5, 11, 159, 27, 79, 171, 149, 89, 35, 108, 56, 52, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1883, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12807442898652839126" + }, + "fields": [] + }, + "cborHex": "d8669f1bb1bd2d75a74d3cd680ff", + "cborBytes": [216, 102, 159, 27, 177, 189, 45, 117, 167, 77, 60, 214, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1884, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "916899510054048762" + } + }, + "cborHex": "1b0cb97b3f178053fa", + "cborBytes": [27, 12, 185, 123, 63, 23, 128, 83, 250], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1885, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "44e9" + }, + { + "_tag": "ByteArray", + "bytearray": "9aa3a1395dc205179a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5450711902003106164" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17949956950023545606" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e75b8cb82a59a799f61b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1676818935706961632" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15255795635002688183" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1420710136274213565" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7423" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16817426415502275852" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01de6bae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17985437524931828965" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6790786215296855757" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b51d5a777691c39bf688a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd535723c9fd7f471972" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17472313905822471112" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5150907325540313007" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f1580d8d20" + }, + { + "_tag": "ByteArray", + "bytearray": "468833d5" + }, + { + "_tag": "ByteArray", + "bytearray": "25f7737afa" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f4244e9499aa3a1395dc205179a1b4ba4d19883e39174ffd8669f1bf91b0ebe3bb523069fa04ae75b8cb82a59a799f61b1b174541f0177646e0ffffd8669f1bd3b7794d264a42b79fbf1b13b76057796bdabd4274231be9638038ec48b50c4401de6bae1bf9991c23538adce51b5e3db8156c636ecd4bb51d5a777691c39bf688a94add535723c9fd7f471972ff9f1bf27a20ecd0aa93c8ff9f1b477bb2ec01c9a7af45f1580d8d2044468833d54525f7737afaffffffff", + "cborBytes": [ + 159, 159, 66, 68, 233, 73, 154, 163, 161, 57, 93, 194, 5, 23, 154, 27, 75, 164, 209, 152, 131, 227, 145, 116, 255, + 216, 102, 159, 27, 249, 27, 14, 190, 59, 181, 35, 6, 159, 160, 74, 231, 91, 140, 184, 42, 89, 167, 153, 246, 27, + 27, 23, 69, 65, 240, 23, 118, 70, 224, 255, 255, 216, 102, 159, 27, 211, 183, 121, 77, 38, 74, 66, 183, 159, 191, + 27, 19, 183, 96, 87, 121, 107, 218, 189, 66, 116, 35, 27, 233, 99, 128, 56, 236, 72, 181, 12, 68, 1, 222, 107, + 174, 27, 249, 153, 28, 35, 83, 138, 220, 229, 27, 94, 61, 184, 21, 108, 99, 110, 205, 75, 181, 29, 90, 119, 118, + 145, 195, 155, 246, 136, 169, 74, 221, 83, 87, 35, 201, 253, 127, 71, 25, 114, 255, 159, 27, 242, 122, 32, 236, + 208, 170, 147, 200, 255, 159, 27, 71, 123, 178, 236, 1, 201, 167, 175, 69, 241, 88, 13, 141, 32, 68, 70, 136, 51, + 213, 69, 37, 247, 115, 122, 250, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1886, + "sample": { + "_tag": "ByteArray", + "bytearray": "30fb58fa" + }, + "cborHex": "4430fb58fa", + "cborBytes": [68, 48, 251, 88, 250], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1887, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16569277636323789816" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30a78b135f1b08ad7f0c0aad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "faff04" + } + } + ] + } + ] + }, + "cborHex": "d8669f1be5f1e638f1e74bf89fbf4c30a78b135f1b08ad7f0c0aad43faff04ffffff", + "cborBytes": [ + 216, 102, 159, 27, 229, 241, 230, 56, 241, 231, 75, 248, 159, 191, 76, 48, 167, 139, 19, 95, 27, 8, 173, 127, 12, + 10, 173, 67, 250, 255, 4, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1888, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17292544374983475930" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e79a906b9484567b5f4e19" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73d068de27282867880f59" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bde" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c86a92c0104a6db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0700" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1826286956181669426" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11190520045782381368" + } + }, + { + "_tag": "ByteArray", + "bytearray": "98" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15679283249272690382" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7ba000714e0035f3225a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6964a642838cd898f4" + }, + { + "_tag": "ByteArray", + "bytearray": "41d9b54c366ecee5597f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3432329827197289678" + } + } + ] + } + ] + }, + "cborHex": "d9050b9fbf1beffb757d3d91c2da4be79a906b9484567b5f4e194b73d068de27282867880f59423bdeffbf483c86a92c0104a6db42070041e913ff809f9f1b1958464f81234632ff9f1b9b4cb6b114bf333841981bd998010af5a196ce4a7ba000714e0035f3225aff496964a642838cd898f44a41d9b54c366ecee5597f1b2fa215cae61284ceffff", + "cborBytes": [ + 217, 5, 11, 159, 191, 27, 239, 251, 117, 125, 61, 145, 194, 218, 75, 231, 154, 144, 107, 148, 132, 86, 123, 95, + 78, 25, 75, 115, 208, 104, 222, 39, 40, 40, 103, 136, 15, 89, 66, 59, 222, 255, 191, 72, 60, 134, 169, 44, 1, 4, + 166, 219, 66, 7, 0, 65, 233, 19, 255, 128, 159, 159, 27, 25, 88, 70, 79, 129, 35, 70, 50, 255, 159, 27, 155, 76, + 182, 177, 20, 191, 51, 56, 65, 152, 27, 217, 152, 1, 10, 245, 161, 150, 206, 74, 123, 160, 0, 113, 78, 0, 53, 243, + 34, 90, 255, 73, 105, 100, 166, 66, 131, 140, 216, 152, 244, 74, 65, 217, 181, 76, 54, 110, 206, 229, 89, 127, 27, + 47, 162, 21, 202, 230, 18, 132, 206, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1889, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5807698913065937931" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6818400776903998523" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a4db1ab8d" + } + ] + }, + "cborHex": "9f1b5099176413b7ac0b1b5e9fd361939c3c3b451a4db1ab8dff", + "cborBytes": [ + 159, 27, 80, 153, 23, 100, 19, 183, 172, 11, 27, 94, 159, 211, 97, 147, 156, 60, 59, 69, 26, 77, 177, 171, 141, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1890, + "sample": { + "_tag": "ByteArray", + "bytearray": "75daa6" + }, + "cborHex": "4375daa6", + "cborBytes": [67, 117, 218, 166], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1891, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1946984194833420511" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + }, + "cborHex": "9f1b1b0513cf445890df1bffffffffffffffff07ff", + "cborBytes": [159, 27, 27, 5, 19, 207, 68, 88, 144, 223, 27, 255, 255, 255, 255, 255, 255, 255, 255, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1892, + "sample": { + "_tag": "ByteArray", + "bytearray": "078403" + }, + "cborHex": "43078403", + "cborBytes": [67, 7, 132, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1893, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2865593968369612550" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18156887101487838514" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4128453797489352814" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6c898f" + } + ] + }, + "cborHex": "9f1b27c4a2881b2c3706bf1bfbfa389e970df5321b394b36daf6f7206eff436c898fff", + "cborBytes": [ + 159, 27, 39, 196, 162, 136, 27, 44, 55, 6, 191, 27, 251, 250, 56, 158, 151, 13, 245, 50, 27, 57, 75, 54, 218, 246, + 247, 32, 110, 255, 67, 108, 137, 143, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1894, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1355334449553930793" + } + } + ] + }, + "cborHex": "9f1b12cf1d804182fa29ff", + "cborBytes": [159, 27, 18, 207, 29, 128, 65, 130, 250, 41, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1895, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f06e214fd9c86362647db823" + }, + { + "_tag": "ByteArray", + "bytearray": "b32c368347b4a3a3f34f9dac" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11861711086179150871" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15879166890984332063" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4e9da4355f1bdf49cc7d63a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12964889950922796866" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14169631391845254955" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5ede22ef3" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8273122c4b3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13643361753558581194" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2388450777320056700" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10060699151403960022" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17403287967099037589" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f680aed4a25d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c37c26b86fd583f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4398308514308709336" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9b3fb" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf41049f4cf06e214fd9c86362647db8234cb32c368347b4a3a3f34f9dac1ba49d436308056c17417d1bdc5e2227ea43db1fff4cb4e9da4355f1bdf49cc7d63ad8669f1bb3ec8ab82cc8ef429f1bc4a4a4ad4d29072bffff45b5ede22ef3a046b8273122c4b39f1bbd56f53aaf027fca1b21257b53d1aae77c1b8b9ec8930781c6d61bf184e63312c4a795ff46f680aed4a25dbf489c37c26b86fd583f1b3d09ee4a5ff25bd8ff43f9b3fba0ff", + "cborBytes": [ + 191, 65, 4, 159, 76, 240, 110, 33, 79, 217, 200, 99, 98, 100, 125, 184, 35, 76, 179, 44, 54, 131, 71, 180, 163, + 163, 243, 79, 157, 172, 27, 164, 157, 67, 99, 8, 5, 108, 23, 65, 125, 27, 220, 94, 34, 39, 234, 67, 219, 31, 255, + 76, 180, 233, 218, 67, 85, 241, 189, 244, 156, 199, 214, 58, 216, 102, 159, 27, 179, 236, 138, 184, 44, 200, 239, + 66, 159, 27, 196, 164, 164, 173, 77, 41, 7, 43, 255, 255, 69, 181, 237, 226, 46, 243, 160, 70, 184, 39, 49, 34, + 196, 179, 159, 27, 189, 86, 245, 58, 175, 2, 127, 202, 27, 33, 37, 123, 83, 209, 170, 231, 124, 27, 139, 158, 200, + 147, 7, 129, 198, 214, 27, 241, 132, 230, 51, 18, 196, 167, 149, 255, 70, 246, 128, 174, 212, 162, 93, 191, 72, + 156, 55, 194, 107, 134, 253, 88, 63, 27, 61, 9, 238, 74, 95, 242, 91, 216, 255, 67, 249, 179, 251, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1896, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1747191650326853634" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b183f458c8842b802a0ff", + "cborBytes": [191, 27, 24, 63, 69, 140, 136, 66, 184, 2, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1897, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "58" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10809787962480049255" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f17190e4714" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17982925147910489123" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8025962191828060578" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8870418958131877944" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a92754af44a28ec721ea1605" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77890436" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abb7ba6472746b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8556123189935963944" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10228711982499866670" + } + } + } + ] + }, + "cborHex": "bf41581b960414e110eabc67467f17190e47149f1bf9902f24f7a4c4231b6f61f21710a089a21b7b1a0f0b80575838ff4ca92754af44a28ec721ea1605447789043647abb7ba6472746b1b76bd74b57e9d7f2841be1b8df3af5aa2afa82eff", + "cborBytes": [ + 191, 65, 88, 27, 150, 4, 20, 225, 16, 234, 188, 103, 70, 127, 23, 25, 14, 71, 20, 159, 27, 249, 144, 47, 36, 247, + 164, 196, 35, 27, 111, 97, 242, 23, 16, 160, 137, 162, 27, 123, 26, 15, 11, 128, 87, 88, 56, 255, 76, 169, 39, 84, + 175, 68, 162, 142, 199, 33, 234, 22, 5, 68, 119, 137, 4, 54, 71, 171, 183, 186, 100, 114, 116, 107, 27, 118, 189, + 116, 181, 126, 157, 127, 40, 65, 190, 27, 141, 243, 175, 90, 162, 175, 168, 46, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1898, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4122997241150918227" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "978532b3" + }, + { + "_tag": "ByteArray", + "bytearray": "2582825ad0527c47b9" + }, + { + "_tag": "ByteArray", + "bytearray": "24fa056aea0556403f7f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15104068676442888961" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5378186863922883449" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14162707115754496820" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16940940733623718815" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12872605380462941637" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1493034306495043679" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18051504912268639690" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13710275581805824860" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5015262764086925094" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f" + }, + { + "_tag": "ByteArray", + "bytearray": "c15e29f1703b2204" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5105562581842473310" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24c8c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4994270607753509189" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f75b422fe03773" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "483bd21bb3a9413869" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c29d69d44d4765ef5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87495625c980b51d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc98" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94db87d82f11649e24" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3eb35725" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a98f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b417f8cf3926954843df939" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3937d42570b74e539f44978532b3492582825ad0527c47b94a24fa056aea0556403f7fffff1bd19c6e6fba7b9b011b4aa3287537cbab79d8669f1bc48c0b15a471a3349f9f1beb1a4fd71c96539f1bb2a4ae643c4695c541621b14b852ca941bd85f1bfa83d413a4fdbdcaffd8669f1bbe44af00623f8b5c9f1b4599cae974a51726418f48c15e29f1703b2204ffff1b46da9a1e253f315ebf4324c8c61b454f36a82f5279454246c147f75b422fe0377349483bd21bb3a9413869491c29d69d44d4765ef54887495625c980b51d42dc984994db87d82f11649e24443eb3572542a98f4c2b417f8cf3926954843df939ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 57, 55, 212, 37, 112, 183, 78, 83, 159, 68, 151, 133, 50, 179, 73, 37, 130, 130, 90, 208, + 82, 124, 71, 185, 74, 36, 250, 5, 106, 234, 5, 86, 64, 63, 127, 255, 255, 27, 209, 156, 110, 111, 186, 123, 155, + 1, 27, 74, 163, 40, 117, 55, 203, 171, 121, 216, 102, 159, 27, 196, 140, 11, 21, 164, 113, 163, 52, 159, 159, 27, + 235, 26, 79, 215, 28, 150, 83, 159, 27, 178, 164, 174, 100, 60, 70, 149, 197, 65, 98, 27, 20, 184, 82, 202, 148, + 27, 216, 95, 27, 250, 131, 212, 19, 164, 253, 189, 202, 255, 216, 102, 159, 27, 190, 68, 175, 0, 98, 63, 139, 92, + 159, 27, 69, 153, 202, 233, 116, 165, 23, 38, 65, 143, 72, 193, 94, 41, 241, 112, 59, 34, 4, 255, 255, 27, 70, + 218, 154, 30, 37, 63, 49, 94, 191, 67, 36, 200, 198, 27, 69, 79, 54, 168, 47, 82, 121, 69, 66, 70, 193, 71, 247, + 91, 66, 47, 224, 55, 115, 73, 72, 59, 210, 27, 179, 169, 65, 56, 105, 73, 28, 41, 214, 157, 68, 212, 118, 94, 245, + 72, 135, 73, 86, 37, 201, 128, 181, 29, 66, 220, 152, 73, 148, 219, 135, 216, 47, 17, 100, 158, 36, 68, 62, 179, + 87, 37, 66, 169, 143, 76, 43, 65, 127, 140, 243, 146, 105, 84, 132, 61, 249, 57, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1899, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "630c80" + } + ] + }, + "cborHex": "9f43630c80ff", + "cborBytes": [159, 67, 99, 12, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1900, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8832045847292564225" + } + }, + "cborHex": "1b7a91bae767d65301", + "cborBytes": [27, 122, 145, 186, 231, 103, 214, 83, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1901, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c885dbce7f726438419e" + } + } + ] + } + ] + }, + "cborHex": "9fbf1bfffffffffffffffb4ac885dbce7f726438419effff", + "cborBytes": [ + 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 251, 74, 200, 133, 219, 206, 127, 114, 100, 56, 65, 158, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1902, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6005381884635207086" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3439624704959310176" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93a261f4ecc2be5242f927e8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4744382215639183190" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8944694787783990303" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18259811638235501130" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9478995773135548318" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1631479778730816072" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be3d9093036f23" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9440293260703024288" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8845709368781231056" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3008e5f05b198914" + }, + { + "_tag": "ByteArray", + "bytearray": "c68e117c285d" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7782380843131490841" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7593882917371488353" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7da31360948a5a1f73aeac" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10809865855675739339" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5468c4efd504c07490e43879" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "239349680649098382" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02" + } + ] + }, + "cborHex": "9fd8669f1b53576701963f55ae9fbf1b2fbc0071fbc1e9604c93a261f4ecc2be5242f927e81b41d76e7d01daaf561b7c21f084ba271c1f1bfd67e1f0ba92124a1b838c286f0d2c6f9eff1b16a42e36fd7bb2489f47be3d9093036f231b8302a8b42bb7c4a01b7ac245cde88cd3d0483008e5f05b19891446c68e117c285dffffff809fbf1bfffffffffffffffc1bffffffffffffffeeffd8669f1b6c009224dda8521980ff9f1b6962e4477bd5a8614b7da31360948a5a1f73aeac1b96045bb8fd2d2ccbff41fcffbf4c5468c4efd504c07490e438791b035257443431548eff4102ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 83, 87, 103, 1, 150, 63, 85, 174, 159, 191, 27, 47, 188, 0, 113, 251, 193, 233, 96, 76, + 147, 162, 97, 244, 236, 194, 190, 82, 66, 249, 39, 232, 27, 65, 215, 110, 125, 1, 218, 175, 86, 27, 124, 33, 240, + 132, 186, 39, 28, 31, 27, 253, 103, 225, 240, 186, 146, 18, 74, 27, 131, 140, 40, 111, 13, 44, 111, 158, 255, 27, + 22, 164, 46, 54, 253, 123, 178, 72, 159, 71, 190, 61, 144, 147, 3, 111, 35, 27, 131, 2, 168, 180, 43, 183, 196, + 160, 27, 122, 194, 69, 205, 232, 140, 211, 208, 72, 48, 8, 229, 240, 91, 25, 137, 20, 70, 198, 142, 17, 124, 40, + 93, 255, 255, 255, 128, 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 252, 27, 255, 255, 255, 255, 255, 255, + 255, 238, 255, 216, 102, 159, 27, 108, 0, 146, 36, 221, 168, 82, 25, 128, 255, 159, 27, 105, 98, 228, 71, 123, + 213, 168, 97, 75, 125, 163, 19, 96, 148, 138, 90, 31, 115, 174, 172, 27, 150, 4, 91, 184, 253, 45, 44, 203, 255, + 65, 252, 255, 191, 76, 84, 104, 196, 239, 213, 4, 192, 116, 144, 228, 56, 121, 27, 3, 82, 87, 68, 52, 49, 84, 142, + 255, 65, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1903, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15646464288958561783" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4701138570996390815" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2603465433258103332" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11761081190550255111" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9800130138325218802" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc2fd1cea9c4c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9450325570401564871" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5521229561942302844" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8252243591314192141" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8983316028498712741" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13838292963583253610" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "18e96e6f3bd2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8196008824076523016" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10213283706320982621" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8579916282158710564" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13429093374819176717" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "77930d4089" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16895650081123042437" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9ecf0a6413c52f58edf89c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9979341812269506274" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1aa076" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10011939373698700445" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17447130860165127398" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21f61e5975b06f01188e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1990864642160173537" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bd923685f4e35bdf79fbf1b413dcc9f64209b9f1b24215e048e5b92241ba337c107a946b6071b88010e6fff7975f247cc2fd1cea9c4c21b83264d094b9378c7ffd8669f1b4c9f5908aaf4e07c80ff1b7285dbd2f446b70dd8669f1b7cab26550fbd18a59f1bc00b7e21c82adc6a9f4618e96e6f3bd21b71be1299e70c56081b8dbcdf6b298c125d1b7711fc6678a8ff241bba5db94625a6110dff4577930d40899f1bea79683b56a384854b9ecf0a6413c52f58edf89c1b8a7dbe816486dee2ff431aa076ffffbf1b8af18dd09a0ed49d1bf220a91415e5dce64a21f61e5975b06f01188e1b1ba0f8d80fd7a1e1ffffff", + "cborBytes": [ + 216, 102, 159, 27, 217, 35, 104, 95, 78, 53, 189, 247, 159, 191, 27, 65, 61, 204, 159, 100, 32, 155, 159, 27, 36, + 33, 94, 4, 142, 91, 146, 36, 27, 163, 55, 193, 7, 169, 70, 182, 7, 27, 136, 1, 14, 111, 255, 121, 117, 242, 71, + 204, 47, 209, 206, 169, 196, 194, 27, 131, 38, 77, 9, 75, 147, 120, 199, 255, 216, 102, 159, 27, 76, 159, 89, 8, + 170, 244, 224, 124, 128, 255, 27, 114, 133, 219, 210, 244, 70, 183, 13, 216, 102, 159, 27, 124, 171, 38, 85, 15, + 189, 24, 165, 159, 27, 192, 11, 126, 33, 200, 42, 220, 106, 159, 70, 24, 233, 110, 111, 59, 210, 27, 113, 190, 18, + 153, 231, 12, 86, 8, 27, 141, 188, 223, 107, 41, 140, 18, 93, 27, 119, 17, 252, 102, 120, 168, 255, 36, 27, 186, + 93, 185, 70, 37, 166, 17, 13, 255, 69, 119, 147, 13, 64, 137, 159, 27, 234, 121, 104, 59, 86, 163, 132, 133, 75, + 158, 207, 10, 100, 19, 197, 47, 88, 237, 248, 156, 27, 138, 125, 190, 129, 100, 134, 222, 226, 255, 67, 26, 160, + 118, 255, 255, 191, 27, 138, 241, 141, 208, 154, 14, 212, 157, 27, 242, 32, 169, 20, 21, 229, 220, 230, 74, 33, + 246, 30, 89, 117, 176, 111, 1, 24, 142, 27, 27, 160, 248, 216, 15, 215, 161, 225, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1904, + "sample": { + "_tag": "ByteArray", + "bytearray": "06118b5f01f9" + }, + "cborHex": "4606118b5f01f9", + "cborBytes": [70, 6, 17, 139, 95, 1, 249], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1905, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13730824113640186103" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14193685221324174276" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2205876283833638548" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "debdb3d5" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4809712369772498083" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12822884677982330380" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9483448597723436535" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2be6b93c80d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10214807258569192902" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17867316772044881454" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11206713963778511880" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11694759654049649863" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13093900858094697760" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16485690919662955950" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13790791759619409031" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29190b53d145705362" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10665978448569209278" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9465696334346233924" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bbe8dafc846e420f71bfffffffffffffff41bc4fa1981e6bd33c4d8669f1b1e9cd8cafc5cde949f44debdb3d5ffff1bffffffffffffffebbf1b42bf87ead8178ca31bb1f409ad12ef9e0c1b839bfa4110fb55f746a2be6b93c80d1b8dc24914d01935c61bf7f575f0671d3e2e1b9b863ef96e6d94081ba24c21f1a13314c71bb5b6e174baeabd201be4c8f08be764adae1bbf62bc09e37fc4874929190b53d145705362ff1bffffffffffffffecd8669f1bfffffffffffffff59f1b94052ae360f091be1b835ce8aa286ca844ffffff", + "cborBytes": [ + 191, 27, 190, 141, 175, 200, 70, 228, 32, 247, 27, 255, 255, 255, 255, 255, 255, 255, 244, 27, 196, 250, 25, 129, + 230, 189, 51, 196, 216, 102, 159, 27, 30, 156, 216, 202, 252, 92, 222, 148, 159, 68, 222, 189, 179, 213, 255, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 235, 191, 27, 66, 191, 135, 234, 216, 23, 140, 163, 27, 177, 244, 9, 173, + 18, 239, 158, 12, 27, 131, 155, 250, 65, 16, 251, 85, 247, 70, 162, 190, 107, 147, 200, 13, 27, 141, 194, 73, 20, + 208, 25, 53, 198, 27, 247, 245, 117, 240, 103, 29, 62, 46, 27, 155, 134, 62, 249, 110, 109, 148, 8, 27, 162, 76, + 33, 241, 161, 51, 20, 199, 27, 181, 182, 225, 116, 186, 234, 189, 32, 27, 228, 200, 240, 139, 231, 100, 173, 174, + 27, 191, 98, 188, 9, 227, 127, 196, 135, 73, 41, 25, 11, 83, 209, 69, 112, 83, 98, 255, 27, 255, 255, 255, 255, + 255, 255, 255, 236, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 27, 148, 5, 42, 227, 96, 240, + 145, 190, 27, 131, 92, 232, 170, 40, 108, 168, 68, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1906, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02f9e7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1d08fb022e019cd1a50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e993ee95c4cf9e46" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + } + ] + }, + "cborHex": "9f4302f9e7bf0b4ab1d08fb022e019cd1a500c48e993ee95c4cf9e461309ffff", + "cborBytes": [ + 159, 67, 2, 249, 231, 191, 11, 74, 177, 208, 143, 176, 34, 224, 25, 205, 26, 80, 12, 72, 233, 147, 238, 149, 196, + 207, 158, 70, 19, 9, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1907, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11854885987990437813" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13436774561209423783" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cd708636d17b1007" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ee35ef4689a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1707e28d497d7e6a5dbf" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "041c85" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17679571206175000091" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e60210" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fac95bdfb429b114c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16720409979205371317" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22f7d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3668151713184637495" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57239561" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70cb89" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e278" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "177551052309810234" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3ee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e1c9ab0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5b04aa756" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9760614537727171424" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15704112486352061123" + } + } + ] + } + ] + }, + "cborHex": "d87a9f9fd8669f1ba48503ff06ecffb59f1bba790345b7e497a748cd708636d17b1007ffffffbf466ee35ef4689a4a1707e28d497d7e6a5dbfff9fbf43041c851bf55a74577549061b43e60210499fac95bdfb429b114cff9f1be80ad4499d6ec5b5ffbf4322f7d51b32e7e48c669c623744572395614370cb8942e2781b0276c9bdca6c4c3a42f3ee447e1c9ab045f5b04aa7561b8774ab3546bddb60ff1bd9f0371a35ca82c3ffff", + "cborBytes": [ + 216, 122, 159, 159, 216, 102, 159, 27, 164, 133, 3, 255, 6, 236, 255, 181, 159, 27, 186, 121, 3, 69, 183, 228, + 151, 167, 72, 205, 112, 134, 54, 209, 123, 16, 7, 255, 255, 255, 191, 70, 110, 227, 94, 244, 104, 154, 74, 23, 7, + 226, 141, 73, 125, 126, 106, 93, 191, 255, 159, 191, 67, 4, 28, 133, 27, 245, 90, 116, 87, 117, 73, 6, 27, 67, + 230, 2, 16, 73, 159, 172, 149, 189, 251, 66, 155, 17, 76, 255, 159, 27, 232, 10, 212, 73, 157, 110, 197, 181, 255, + 191, 67, 34, 247, 213, 27, 50, 231, 228, 140, 102, 156, 98, 55, 68, 87, 35, 149, 97, 67, 112, 203, 137, 66, 226, + 120, 27, 2, 118, 201, 189, 202, 108, 76, 58, 66, 243, 238, 68, 126, 28, 154, 176, 69, 245, 176, 74, 167, 86, 27, + 135, 116, 171, 53, 70, 189, 219, 96, 255, 27, 217, 240, 55, 26, 53, 202, 130, 195, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1908, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4326891138885211372" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11638483578069553575" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d128f8ca39" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14224425997899467388" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3551007464333818567" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15490629065959315962" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6138851970234741959" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4477062785421636384" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb9abb989a55e12053605fc8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10570928496919467899" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12006793751130857568" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14027569418923931505" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14216496843759765826" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14686501674877053284" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a3ee48b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "30db68ede5bb4840c3f3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17330599938706137199" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e2d6204138b3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17572638230738604004" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5210132190601456104" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4185348182234636479" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3c0c3490e309d4ec9fbf1ba1843326a30d91a745d128f8ca391bc5675014b2a10a7c1b3147b6798a60bac71bd6f9c51007d899fa1b55319557868c74c7ff9fbf1b3e21b8e2022d73204ceb9abb989a55e12053605fc81b92b37b75f4f0577b1ba6a0b34d4b88e0601bc2abf010b517f7711bc54b248ea2c349421bcbd0ef75fc39e964449a3ee48bff4a30db68ede5bb4840c3f3ff9f9f1bf082a8d2a2fc606f46e2d6204138b31bf3de8d5df59f8fe441c1ffffd8669f1b484e1b9f75a0a9e89f1b3a1557ff2f6c20bfffffffff", + "cborBytes": [ + 216, 102, 159, 27, 60, 12, 52, 144, 227, 9, 212, 236, 159, 191, 27, 161, 132, 51, 38, 163, 13, 145, 167, 69, 209, + 40, 248, 202, 57, 27, 197, 103, 80, 20, 178, 161, 10, 124, 27, 49, 71, 182, 121, 138, 96, 186, 199, 27, 214, 249, + 197, 16, 7, 216, 153, 250, 27, 85, 49, 149, 87, 134, 140, 116, 199, 255, 159, 191, 27, 62, 33, 184, 226, 2, 45, + 115, 32, 76, 235, 154, 187, 152, 154, 85, 225, 32, 83, 96, 95, 200, 27, 146, 179, 123, 117, 244, 240, 87, 123, 27, + 166, 160, 179, 77, 75, 136, 224, 96, 27, 194, 171, 240, 16, 181, 23, 247, 113, 27, 197, 75, 36, 142, 162, 195, 73, + 66, 27, 203, 208, 239, 117, 252, 57, 233, 100, 68, 154, 62, 228, 139, 255, 74, 48, 219, 104, 237, 229, 187, 72, + 64, 195, 243, 255, 159, 159, 27, 240, 130, 168, 210, 162, 252, 96, 111, 70, 226, 214, 32, 65, 56, 179, 27, 243, + 222, 141, 93, 245, 159, 143, 228, 65, 193, 255, 255, 216, 102, 159, 27, 72, 78, 27, 159, 117, 160, 169, 232, 159, + 27, 58, 21, 87, 255, 47, 108, 32, 191, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1909, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15701743742741723568" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6949734054557694552" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b00f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22d6770c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10229006186652281800" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15070208974581477884" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f9bdf0" + }, + { + "_tag": "ByteArray", + "bytearray": "a863" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9604467003544665262" + } + }, + { + "_tag": "ByteArray", + "bytearray": "690b8c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1237438406915027735" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4178113428138675052" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "37" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ded1cb1f8c" + }, + { + "_tag": "ByteArray", + "bytearray": "3f7f5320590c2bbc44d26a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6718842548687908919" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7e40" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9655361853790646917" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10092150338380075524" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1746789446395232713" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10097642452760295965" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6802496669002996066" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1884117713852803190" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0414a6c3ddb302" + }, + { + "_tag": "ByteArray", + "bytearray": "39f6ddb0a5af1d5ccaed38f1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12120807418669150849" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c94d490d10d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "532973125778417203" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fcabd96b9cf3" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16819652774323173363" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2739998699195195985" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c584d4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15705662451372174891" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13008484078395524531" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b6d2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2618895022058664195" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1bd9e7ccbe1c5539b09fbf1b60726a4d2558ba58436b00f24422d6770c1b8df4baee60aeabc8ffd8669f1bd12423378cd531fc9f43f9bdf042a8631b8549ebda633d7cae43690b8c1b112c43acc3987317ffffd8669f1b39fba406bb7ecb6c9f4137ffff9f45ded1cb1f8c4b3f7f5320590c2bbc44d26affd8669f1b5d3e1fb33852b0379f427e401b85febc73210c7285ffffffff1b8c0e854322fb9204d8669f1b183dd7bf21ca01c99f9f1b8c22084fa9ae7a1d1b5e6752ade5b399621b1a25bb140937a876470414a6c3ddb3024c39f6ddb0a5af1d5ccaed38f1ffd8669f1ba835c220e4b1b2819f46c94d490d10d01b0765803becda263346fcabd96b9cf3ffffd8669f1be96b69157af237f39f1b26066e4cbe8fe25143c584d41bd9f5b8c9903aae2bffff1bb4876b58ef1705b342b6d2ffff9f801b24582f25a5d87103ff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 217, 231, 204, 190, 28, 85, 57, 176, 159, 191, 27, 96, 114, 106, 77, 37, 88, 186, 88, 67, + 107, 0, 242, 68, 34, 214, 119, 12, 27, 141, 244, 186, 238, 96, 174, 171, 200, 255, 216, 102, 159, 27, 209, 36, 35, + 55, 140, 213, 49, 252, 159, 67, 249, 189, 240, 66, 168, 99, 27, 133, 73, 235, 218, 99, 61, 124, 174, 67, 105, 11, + 140, 27, 17, 44, 67, 172, 195, 152, 115, 23, 255, 255, 216, 102, 159, 27, 57, 251, 164, 6, 187, 126, 203, 108, + 159, 65, 55, 255, 255, 159, 69, 222, 209, 203, 31, 140, 75, 63, 127, 83, 32, 89, 12, 43, 188, 68, 210, 106, 255, + 216, 102, 159, 27, 93, 62, 31, 179, 56, 82, 176, 55, 159, 66, 126, 64, 27, 133, 254, 188, 115, 33, 12, 114, 133, + 255, 255, 255, 255, 27, 140, 14, 133, 67, 34, 251, 146, 4, 216, 102, 159, 27, 24, 61, 215, 191, 33, 202, 1, 201, + 159, 159, 27, 140, 34, 8, 79, 169, 174, 122, 29, 27, 94, 103, 82, 173, 229, 179, 153, 98, 27, 26, 37, 187, 20, 9, + 55, 168, 118, 71, 4, 20, 166, 195, 221, 179, 2, 76, 57, 246, 221, 176, 165, 175, 29, 92, 202, 237, 56, 241, 255, + 216, 102, 159, 27, 168, 53, 194, 32, 228, 177, 178, 129, 159, 70, 201, 77, 73, 13, 16, 208, 27, 7, 101, 128, 59, + 236, 218, 38, 51, 70, 252, 171, 217, 107, 156, 243, 255, 255, 216, 102, 159, 27, 233, 107, 105, 21, 122, 242, 55, + 243, 159, 27, 38, 6, 110, 76, 190, 143, 226, 81, 67, 197, 132, 212, 27, 217, 245, 184, 201, 144, 58, 174, 43, 255, + 255, 27, 180, 135, 107, 88, 239, 23, 5, 179, 66, 182, 210, 255, 255, 159, 128, 27, 36, 88, 47, 37, 165, 216, 113, + 3, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1910, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ac3bd3b45e2f90e619d044" + } + ] + }, + "cborHex": "9f4bac3bd3b45e2f90e619d044ff", + "cborBytes": [159, 75, 172, 59, 211, 180, 94, 47, 144, 230, 25, 208, 68, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1911, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15056623360419545340" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3853" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9471169470706302702" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf041bd0f3df2c42a7c0fc14423853ffd8669f1b83705a7404f93eee80ffff", + "cborBytes": [ + 159, 191, 4, 27, 208, 243, 223, 44, 66, 167, 192, 252, 20, 66, 56, 83, 255, 216, 102, 159, 27, 131, 112, 90, 116, + 4, 249, 62, 238, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1912, + "sample": { + "_tag": "ByteArray", + "bytearray": "0367" + }, + "cborHex": "420367", + "cborBytes": [66, 3, 103], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1913, + "sample": { + "_tag": "ByteArray", + "bytearray": "be" + }, + "cborHex": "41be", + "cborBytes": [65, 190], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1914, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8fdf6" + }, + "cborHex": "43f8fdf6", + "cborBytes": [67, 248, 253, 246], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1915, + "sample": { + "_tag": "ByteArray", + "bytearray": "055c07" + }, + "cborHex": "43055c07", + "cborBytes": [67, 5, 92, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1916, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1876610103985166659" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6ca349ca" + } + ] + }, + "cborHex": "d8669f1b1a0b0ef265f1d9439f446ca349caffff", + "cborBytes": [216, 102, 159, 27, 26, 11, 14, 242, 101, 241, 217, 67, 159, 68, 108, 163, 73, 202, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1917, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4900109010720147592" + }, + "fields": [] + }, + "cborHex": "d8669f1b4400af2ef0aa488880ff", + "cborBytes": [216, 102, 159, 27, 68, 0, 175, 46, 240, 170, 72, 136, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1918, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3157600458764848892" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "85681876857945599" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3d7922a4a91893a22" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9356237847826596188" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3fda67" + }, + { + "_tag": "ByteArray", + "bytearray": "5440a834" + } + ] + } + } + ] + }, + "cborHex": "bf1b2bd20ce3374a0efc1b0130673689ce7dff49b3d7922a4a91893a22d8669f1bfffffffffffffff39f1b81d808c049c5015c433fda67445440a834ffffff", + "cborBytes": [ + 191, 27, 43, 210, 12, 227, 55, 74, 14, 252, 27, 1, 48, 103, 54, 137, 206, 125, 255, 73, 179, 215, 146, 42, 74, + 145, 137, 58, 34, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 27, 129, 216, 8, 192, 73, 197, + 1, 92, 67, 63, 218, 103, 68, 84, 64, 168, 52, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1919, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17999578142601927848" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13391d27cea7cbe65b6ff442" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4212446348451786886" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14501435225432302863" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b464fca524" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "414e1a1ab4701c0a18bb86" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee30f40641a602633817" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5377a8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be54e672" + } + } + ] + } + ] + }, + "cborHex": "9f9fa01bf9cb58f470ac5ca8ffbf4c13391d27cea7cbe65b6ff4421b3a759da2aadc308641851bc93f7281713aa50f45b464fca5244b414e1a1ab4701c0a18bb864aee30f40641a602633817435377a841f644be54e672ffff", + "cborBytes": [ + 159, 159, 160, 27, 249, 203, 88, 244, 112, 172, 92, 168, 255, 191, 76, 19, 57, 29, 39, 206, 167, 203, 230, 91, + 111, 244, 66, 27, 58, 117, 157, 162, 170, 220, 48, 134, 65, 133, 27, 201, 63, 114, 129, 113, 58, 165, 15, 69, 180, + 100, 252, 165, 36, 75, 65, 78, 26, 26, 180, 112, 28, 10, 24, 187, 134, 74, 238, 48, 244, 6, 65, 166, 2, 99, 56, + 23, 67, 83, 119, 168, 65, 246, 68, 190, 84, 230, 114, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1920, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4322002503454089885" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7de938ac81d55cbff487" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8606801918240630597" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3779200568527060391" + } + }, + { + "_tag": "ByteArray", + "bytearray": "79b08bfd52" + }, + { + "_tag": "ByteArray", + "bytearray": "06" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "37689608215504480" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7e" + }, + { + "_tag": "ByteArray", + "bytearray": "0d26" + }, + { + "_tag": "ByteArray", + "bytearray": "36b90b4d2b428f" + }, + { + "_tag": "ByteArray", + "bytearray": "4918c6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9090071325952995932" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8830ab2486" + } + ] + }, + "cborHex": "d905059f809f1b3bfad660c0bae29d4a7de938ac81d55cbff487ffd8669f1b777180be6ce227459fa0809f1b34726ae4de027da74579b08bfd524106ff1b0085e67fbd68a6609f417e420d264736b90b4d2b428f434918c61b7e266bb5ae64725cffffff458830ab2486ff", + "cborBytes": [ + 217, 5, 5, 159, 128, 159, 27, 59, 250, 214, 96, 192, 186, 226, 157, 74, 125, 233, 56, 172, 129, 213, 92, 191, 244, + 135, 255, 216, 102, 159, 27, 119, 113, 128, 190, 108, 226, 39, 69, 159, 160, 128, 159, 27, 52, 114, 106, 228, 222, + 2, 125, 167, 69, 121, 176, 139, 253, 82, 65, 6, 255, 27, 0, 133, 230, 127, 189, 104, 166, 96, 159, 65, 126, 66, + 13, 38, 71, 54, 185, 11, 77, 43, 66, 143, 67, 73, 24, 198, 27, 126, 38, 107, 181, 174, 100, 114, 92, 255, 255, + 255, 69, 136, 48, 171, 36, 134, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1921, + "sample": { + "_tag": "ByteArray", + "bytearray": "64f65a828177ac5a" + }, + "cborHex": "4864f65a828177ac5a", + "cborBytes": [72, 100, 246, 90, 130, 129, 119, 172, 90], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1922, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4550999471273401250" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2de9899e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b76d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17085548441107968287" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "837b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3786875338237088092" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab0acac725f67b31" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f299901f8751545c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15987051002147870467" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8521393607151578487" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10390740974166497887" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1563789856202470458" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a89df90c243bac34" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17767034940329284732" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b3f2865e82a3ddba29f442de9899ebf431b76d61bed1c0fc8b8f8311f42837b1b348daf0e704f115c41a548ab0acac725f67b3148f299901f8751545c1bdddd6a2ef5139703ffd8669f1b76421256618ded779fbf1b903353dd0e4a5a5f1b15b3b296c24eb43a48a89df90c243bac341bf6913024fa47d47cffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 63, 40, 101, 232, 42, 61, 219, 162, 159, 68, 45, 233, 137, 158, 191, 67, 27, 118, 214, 27, 237, + 28, 15, 200, 184, 248, 49, 31, 66, 131, 123, 27, 52, 141, 175, 14, 112, 79, 17, 92, 65, 165, 72, 171, 10, 202, + 199, 37, 246, 123, 49, 72, 242, 153, 144, 31, 135, 81, 84, 92, 27, 221, 221, 106, 46, 245, 19, 151, 3, 255, 216, + 102, 159, 27, 118, 66, 18, 86, 97, 141, 237, 119, 159, 191, 27, 144, 51, 83, 221, 14, 74, 90, 95, 27, 21, 179, + 178, 150, 194, 78, 180, 58, 72, 168, 157, 249, 12, 36, 59, 172, 52, 27, 246, 145, 48, 36, 250, 71, 212, 124, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1923, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16225029204913972838" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "75041934ae4506b846" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16375201885083372671" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3567022299634255329" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13464251234634508918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "766a073076d117aa6936" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15832654071290480892" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2535482999384342916" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16858474593011101751" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5236714192187764407" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4284bbc1d0e06641fbd209f0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "509883746832002009" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "209132379578515504" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e7a056ec551d6402e677fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7161622745778762353" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14497084935438074554" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "97129468343755041" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c84a29e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2598129900409791744" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed124829e5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2745053952479574272" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "188294" + } + } + ] + } + ] + }, + "cborHex": "d905009fd8669f1be12ae219153c666680ff4975041934ae4506b8469f1be340675addb38c7fbf1b31809be1f398c5e141fa1bbadaa12947012a764a766a073076d117aa6936ffd8669f1bdbb8e2fe2ae948fc9f1b232fd85ab85881841be9f55552835ff0371b48ac8bcfff992eb74c4284bbc1d0e06641fbd209f01b07137890f6aaabd9ffff9f1b02e6fcca8bcf40304be7a056ec551d6402e677fc1b636331f181803271ff1bc92ffdf09f7402baffbf1b015912bca1da2121441c84a29e1b240e6961023f250045ed124829e51b261864069ed3b90043188294ffff", + "cborBytes": [ + 217, 5, 0, 159, 216, 102, 159, 27, 225, 42, 226, 25, 21, 60, 102, 102, 128, 255, 73, 117, 4, 25, 52, 174, 69, 6, + 184, 70, 159, 27, 227, 64, 103, 90, 221, 179, 140, 127, 191, 27, 49, 128, 155, 225, 243, 152, 197, 225, 65, 250, + 27, 186, 218, 161, 41, 71, 1, 42, 118, 74, 118, 106, 7, 48, 118, 209, 23, 170, 105, 54, 255, 216, 102, 159, 27, + 219, 184, 226, 254, 42, 233, 72, 252, 159, 27, 35, 47, 216, 90, 184, 88, 129, 132, 27, 233, 245, 85, 82, 131, 95, + 240, 55, 27, 72, 172, 139, 207, 255, 153, 46, 183, 76, 66, 132, 187, 193, 208, 224, 102, 65, 251, 210, 9, 240, 27, + 7, 19, 120, 144, 246, 170, 171, 217, 255, 255, 159, 27, 2, 230, 252, 202, 139, 207, 64, 48, 75, 231, 160, 86, 236, + 85, 29, 100, 2, 230, 119, 252, 27, 99, 99, 49, 241, 129, 128, 50, 113, 255, 27, 201, 47, 253, 240, 159, 116, 2, + 186, 255, 191, 27, 1, 89, 18, 188, 161, 218, 33, 33, 68, 28, 132, 162, 158, 27, 36, 14, 105, 97, 2, 63, 37, 0, 69, + 237, 18, 72, 41, 229, 27, 38, 24, 100, 6, 158, 211, 185, 0, 67, 24, 130, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1924, + "sample": { + "_tag": "ByteArray", + "bytearray": "42eca132cdc16d20b7" + }, + "cborHex": "4942eca132cdc16d20b7", + "cborBytes": [73, 66, 236, 161, 50, 205, 193, 109, 32, 183], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1925, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9833940222252200713" + } + }, + "cborHex": "1b88792c8799c4b309", + "cborBytes": [27, 136, 121, 44, 135, 153, 196, 179, 9], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1926, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddae" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1600684471204700822" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf42ddaed8669f1b1636c60bb7a3e29680ffff", + "cborBytes": [191, 66, 221, 174, 216, 102, 159, 27, 22, 54, 198, 11, 183, 163, 226, 150, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1927, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a550d61" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3397130613203485218" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2ac97db6078470" + }, + { + "_tag": "ByteArray", + "bytearray": "42" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "473504048072273039" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8285c8ecafeff0" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd48b8ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7828844060261924705" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f73113a65af2751fd7e6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "609088462300755886" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de48817a2c90a9a360d2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2485647944636471780" + } + } + ] + } + } + ] + }, + "cborHex": "bf442a550d61d8669f1b2f25084b3f9942229f472ac97db607847041421b0692396c490eac8f478285c8ecafeff0ffff44bd48b8ce1b6ca5a4319dd6bf614af73113a65af2751fd7e6d8669f1b0873eabab839b7ae9f4ade48817a2c90a9a360d21b227ecba2d8bc99e4ffffff", + "cborBytes": [ + 191, 68, 42, 85, 13, 97, 216, 102, 159, 27, 47, 37, 8, 75, 63, 153, 66, 34, 159, 71, 42, 201, 125, 182, 7, 132, + 112, 65, 66, 27, 6, 146, 57, 108, 73, 14, 172, 143, 71, 130, 133, 200, 236, 175, 239, 240, 255, 255, 68, 189, 72, + 184, 206, 27, 108, 165, 164, 49, 157, 214, 191, 97, 74, 247, 49, 19, 166, 90, 242, 117, 31, 215, 230, 216, 102, + 159, 27, 8, 115, 234, 186, 184, 57, 183, 174, 159, 74, 222, 72, 129, 122, 44, 144, 169, 163, 96, 210, 27, 34, 126, + 203, 162, 216, 188, 153, 228, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1928, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7579557026565864936" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2973394144524230678" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8500741f807070549" + }, + { + "_tag": "ByteArray", + "bytearray": "8f7489e96baf9cc0" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "047ef70b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9419494811056384978" + } + } + ] + }, + "cborHex": "d905059f9f1b692ffef51b463de80bd8669f1b29439e388197e0169f49f8500741f807070549488f7489e96baf9cc0ffffff44047ef70b1b82b8c49fc0a6abd2ff", + "cborBytes": [ + 217, 5, 5, 159, 159, 27, 105, 47, 254, 245, 27, 70, 61, 232, 11, 216, 102, 159, 27, 41, 67, 158, 56, 129, 151, + 224, 22, 159, 73, 248, 80, 7, 65, 248, 7, 7, 5, 73, 72, 143, 116, 137, 233, 107, 175, 156, 192, 255, 255, 255, 68, + 4, 126, 247, 11, 27, 130, 184, 196, 159, 192, 166, 171, 210, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1929, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14414858506266710608" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7402322755755814064" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12308229449969061239" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4cafc41a1afcdb480e702519" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0e5571265c2d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8617110456331559878" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b529da3f0daf7a00a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "861a15ced5e0b07180cfe2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14521105160562861624" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "974323886af3461d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "369ac39f7c116a" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "25b566152d804ebd073e27" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5713586881479781798" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7885521cd139ac909fccea96" + }, + { + "_tag": "ByteArray", + "bytearray": "09" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16076292266746125106" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7074532874366811616" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "926d5f" + }, + { + "_tag": "ByteArray", + "bytearray": "bed9cfa9c4456a99a3f8" + } + ] + } + ] + }, + "cborHex": "d905009fd8669f1bc80bdd70318b92509fbf1b66ba5553c19dacb01baacf9d7913684d77ff4c4cafc41a1afcdb480e702519ffff460e5571265c2dd8669f1b7796204dfbf263c69fbf495b529da3f0daf7a00a41c24b861a15ced5e0b07180cfe21bc98554351970e63848974323886af3461d47369ac39f7c116aff4b25b566152d804ebd073e279f1b4f4abcff2fef2da64c7885521cd139ac909fccea9641091bdf1a76a408c31b321b622dca2ab074fde0ff43926d5f4abed9cfa9c4456a99a3f8ffffff", + "cborBytes": [ + 217, 5, 0, 159, 216, 102, 159, 27, 200, 11, 221, 112, 49, 139, 146, 80, 159, 191, 27, 102, 186, 85, 83, 193, 157, + 172, 176, 27, 170, 207, 157, 121, 19, 104, 77, 119, 255, 76, 76, 175, 196, 26, 26, 252, 219, 72, 14, 112, 37, 25, + 255, 255, 70, 14, 85, 113, 38, 92, 45, 216, 102, 159, 27, 119, 150, 32, 77, 251, 242, 99, 198, 159, 191, 73, 91, + 82, 157, 163, 240, 218, 247, 160, 10, 65, 194, 75, 134, 26, 21, 206, 213, 224, 176, 113, 128, 207, 226, 27, 201, + 133, 84, 53, 25, 112, 230, 56, 72, 151, 67, 35, 136, 106, 243, 70, 29, 71, 54, 154, 195, 159, 124, 17, 106, 255, + 75, 37, 181, 102, 21, 45, 128, 78, 189, 7, 62, 39, 159, 27, 79, 74, 188, 255, 47, 239, 45, 166, 76, 120, 133, 82, + 28, 209, 57, 172, 144, 159, 204, 234, 150, 65, 9, 27, 223, 26, 118, 164, 8, 195, 27, 50, 27, 98, 45, 202, 42, 176, + 116, 253, 224, 255, 67, 146, 109, 95, 74, 190, 217, 207, 169, 196, 69, 106, 153, 163, 248, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1930, + "sample": { + "_tag": "ByteArray", + "bytearray": "57f9fd0256fdf8b89d8f" + }, + "cborHex": "4a57f9fd0256fdf8b89d8f", + "cborBytes": [74, 87, 249, 253, 2, 86, 253, 248, 184, 157, 143], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1931, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + ] + }, + "cborHex": "9f1bffffffffffffffeeff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1932, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5467947640970465528" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "109951195325752603" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2422565812542360099" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7b77259a5fb675c41b8e" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "60" + } + ] + } + ] + }, + "cborHex": "9f9f1b4be20d68b67ad0f89f1b0186a0079405651b1b219eaec56d97ca234a7b77259a5fb675c41b8eff4160ffff", + "cborBytes": [ + 159, 159, 27, 75, 226, 13, 104, 182, 122, 208, 248, 159, 27, 1, 134, 160, 7, 148, 5, 101, 27, 27, 33, 158, 174, + 197, 109, 151, 202, 35, 74, 123, 119, 37, 154, 95, 182, 117, 196, 27, 142, 255, 65, 96, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1933, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17929254950375948953" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8279107512" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16605454396010819658" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5240113970130248718" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8906f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1784189172116864747" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "266142183674021789" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7083238299244645886" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6d" + }, + { + "_tag": "ByteArray", + "bytearray": "06fae5e54bd1c74a114afda6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11520063671207246786" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2697150287854927094" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7778292787851518498" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6050897939050529317" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6483395646664230936" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9519209556047679410" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "574643d8f4b2d959a246" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf8d18262549282999fbf1345827910751241b11be6726ccb302c704affd8669f1b48b89fe47c2ce40e9f9f438906f91b18c2b699581fbeeb1b03b186e7eda3079d1b624cb7b45deb4dfeff416d4c06fae5e54bd1c74a114afda61b9fdf7cdf8030bbc2bf1b256e33e58d6f7cf61b6bf20c1452df62221b53f91b9dd54002251b59f9a5fd79bc48181b841b06a802b9cfb24a574643d8f4b2d959a246ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 248, 209, 130, 98, 84, 146, 130, 153, 159, 191, 19, 69, 130, 121, 16, 117, 18, 65, 177, 27, + 230, 114, 108, 203, 48, 44, 112, 74, 255, 216, 102, 159, 27, 72, 184, 159, 228, 124, 44, 228, 14, 159, 159, 67, + 137, 6, 249, 27, 24, 194, 182, 153, 88, 31, 190, 235, 27, 3, 177, 134, 231, 237, 163, 7, 157, 27, 98, 76, 183, + 180, 93, 235, 77, 254, 255, 65, 109, 76, 6, 250, 229, 229, 75, 209, 199, 74, 17, 74, 253, 166, 27, 159, 223, 124, + 223, 128, 48, 187, 194, 191, 27, 37, 110, 51, 229, 141, 111, 124, 246, 27, 107, 242, 12, 20, 82, 223, 98, 34, 27, + 83, 249, 27, 157, 213, 64, 2, 37, 27, 89, 249, 165, 253, 121, 188, 72, 24, 27, 132, 27, 6, 168, 2, 185, 207, 178, + 74, 87, 70, 67, 216, 244, 178, 217, 89, 162, 70, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1934, + "sample": { + "_tag": "ByteArray", + "bytearray": "8defc103e96425" + }, + "cborHex": "478defc103e96425", + "cborBytes": [71, 141, 239, 193, 3, 233, 100, 37], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1935, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc9d749737" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11994133476196617104" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5523451763897489542" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12609167365450886862" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28485a6b5f1212" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12949526892626947753" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b00febcc30a8929ed72" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17055128253705750557" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11545542091015974185" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9fcc0d82066b69" + } + ] + }, + "cborHex": "9f0645cc9d749737bf1ba673b8d955520b901b4ca73e1d611d58861baefcc2e9a325eece4728485a6b5f12121bb3b5f6196c65aea94a5b00febcc30a8929ed721becaffcc8e8dc081d1ba03a015c6253ed29ff479fcc0d82066b69ff", + "cborBytes": [ + 159, 6, 69, 204, 157, 116, 151, 55, 191, 27, 166, 115, 184, 217, 85, 82, 11, 144, 27, 76, 167, 62, 29, 97, 29, 88, + 134, 27, 174, 252, 194, 233, 163, 37, 238, 206, 71, 40, 72, 90, 107, 95, 18, 18, 27, 179, 181, 246, 25, 108, 101, + 174, 169, 74, 91, 0, 254, 188, 195, 10, 137, 41, 237, 114, 27, 236, 175, 252, 200, 232, 220, 8, 29, 27, 160, 58, + 1, 92, 98, 83, 237, 41, 255, 71, 159, 204, 13, 130, 6, 107, 105, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1936, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7280372056109791880" + } + }, + "cborHex": "1b650913cfdd1aba88", + "cborBytes": [27, 101, 9, 19, 207, 221, 26, 186, 136], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1937, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0876fdab97" + } + ] + }, + "cborHex": "d87c9f450876fdab97ff", + "cborBytes": [216, 124, 159, 69, 8, 118, 253, 171, 151, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1938, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11079863385056311324" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12980484832560395439" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8831656479247910983" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "af27" + } + ] + } + } + ] + }, + "cborHex": "bf1b99c3950b8a23781c801bb423f22e811bb4afd8669f1b7a9058c697d948479f42af27ffffff", + "cborBytes": [ + 191, 27, 153, 195, 149, 11, 138, 35, 120, 28, 128, 27, 180, 35, 242, 46, 129, 27, 180, 175, 216, 102, 159, 27, + 122, 144, 88, 198, 151, 217, 72, 71, 159, 66, 175, 39, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1939, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5896731461917951270" + } + }, + "cborHex": "1b51d56605bb7d4526", + "cborBytes": [27, 81, 213, 102, 5, 187, 125, 69, 38], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1940, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6394355292101516329" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3578a23e4e29d0e8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10222357578832523293" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6523589026470443409" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3950945570460043089" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6951101970034511441" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "911799174079107989" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14623107085587154809" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3020698243377001052" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4929436364154702343" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3426415962465010023" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "775f3c8f71c81fefd554d4" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10743382947635065698" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d03660d100d13c" + }, + { + "_tag": "ByteArray", + "bytearray": "f2f50d751d2a0f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16712682543660771912" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b02494ac33f87014460f94" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3519264855956481873" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14756826202525641041" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "88c439" + }, + { + "_tag": "ByteArray", + "bytearray": "f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15847346554925833831" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16218432707863612096" + } + } + ] + }, + "cborHex": "d87a9fbf1b58bd504269599c29483578a23e4e29d0e81b8ddd1c0ebd55b01d1b5a8871a7f7683991ffbf1b36d49410362c87511b60774669c96cce51ff9fbf1b0ca75c84957ad3951bcaefb66af4eb87791b29ebad0c4a21f25c1b4468e04184558a071b2f8d1329f77481674b775f3c8f71c81fefd554d4ffd8669f1b951829deb7c6f3629f47d03660d100d13c47f2f50d751d2a0f1be7ef6039d2c5aa484bb02494ac33f87014460f941b30d6f0bd99cd6751ffffd8669f1bcccac73f05b7a9519f4388c43941f91bdbed15ba96dd5e67ffffff1be113729e6dc98ac0ff", + "cborBytes": [ + 216, 122, 159, 191, 27, 88, 189, 80, 66, 105, 89, 156, 41, 72, 53, 120, 162, 62, 78, 41, 208, 232, 27, 141, 221, + 28, 14, 189, 85, 176, 29, 27, 90, 136, 113, 167, 247, 104, 57, 145, 255, 191, 27, 54, 212, 148, 16, 54, 44, 135, + 81, 27, 96, 119, 70, 105, 201, 108, 206, 81, 255, 159, 191, 27, 12, 167, 92, 132, 149, 122, 211, 149, 27, 202, + 239, 182, 106, 244, 235, 135, 121, 27, 41, 235, 173, 12, 74, 33, 242, 92, 27, 68, 104, 224, 65, 132, 85, 138, 7, + 27, 47, 141, 19, 41, 247, 116, 129, 103, 75, 119, 95, 60, 143, 113, 200, 31, 239, 213, 84, 212, 255, 216, 102, + 159, 27, 149, 24, 41, 222, 183, 198, 243, 98, 159, 71, 208, 54, 96, 209, 0, 209, 60, 71, 242, 245, 13, 117, 29, + 42, 15, 27, 231, 239, 96, 57, 210, 197, 170, 72, 75, 176, 36, 148, 172, 51, 248, 112, 20, 70, 15, 148, 27, 48, + 214, 240, 189, 153, 205, 103, 81, 255, 255, 216, 102, 159, 27, 204, 202, 199, 63, 5, 183, 169, 81, 159, 67, 136, + 196, 57, 65, 249, 27, 219, 237, 21, 186, 150, 221, 94, 103, 255, 255, 255, 27, 225, 19, 114, 158, 109, 201, 138, + 192, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1941, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16405465576093831647" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11954025868660393133" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2576926619519827800" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85067f8e39a225" + }, + { + "_tag": "ByteArray", + "bytearray": "93ee3004146f88b8350c1c3f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4014378898924142055" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "856df0c5ed51dc29c5ca67" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2343687198930184443" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8227495772670947899" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8445916354978124938" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "707c4d6d56e0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1869328076854938957" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cda4" + }, + { + "_tag": "ByteArray", + "bytearray": "de946cbe72" + }, + { + "_tag": "ByteArray", + "bytearray": "9c80e7fc0c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16386372945145632411" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a441f44" + } + } + ] + }, + "cborHex": "bf01d8669f1bfffffffffffffffc9f1be3abec0585f8d1df1ba5e53b31415544ad1b23c3151b78ba3f584785067f8e39a2254c93ee3004146f88b8350c1c3fffff0341061b37b5f056e8327de79f4b856df0c5ed51dc29c5ca671b208673170cdd28fbff1b722defd06914723bd8669f1b7535ec2d2d22148a9f46707c4d6d56e01b19f12ffb559a4d4d42cda445de946cbe72459c80e7fc0cffff1be368175ff87a169b442a441f44ff", + "cborBytes": [ + 191, 1, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 27, 227, 171, 236, 5, 133, 248, 209, 223, + 27, 165, 229, 59, 49, 65, 85, 68, 173, 27, 35, 195, 21, 27, 120, 186, 63, 88, 71, 133, 6, 127, 142, 57, 162, 37, + 76, 147, 238, 48, 4, 20, 111, 136, 184, 53, 12, 28, 63, 255, 255, 3, 65, 6, 27, 55, 181, 240, 86, 232, 50, 125, + 231, 159, 75, 133, 109, 240, 197, 237, 81, 220, 41, 197, 202, 103, 27, 32, 134, 115, 23, 12, 221, 40, 251, 255, + 27, 114, 45, 239, 208, 105, 20, 114, 59, 216, 102, 159, 27, 117, 53, 236, 45, 45, 34, 20, 138, 159, 70, 112, 124, + 77, 109, 86, 224, 27, 25, 241, 47, 251, 85, 154, 77, 77, 66, 205, 164, 69, 222, 148, 108, 190, 114, 69, 156, 128, + 231, 252, 12, 255, 255, 27, 227, 104, 23, 95, 248, 122, 22, 155, 68, 42, 68, 31, 68, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1942, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8696341414813836699" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17010562403845352135" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4749164420218409229" + } + }, + { + "_tag": "ByteArray", + "bytearray": "570896f716f4f51448f4c3" + } + ] + }, + "cborHex": "d8669f1b78af9c710b7f259b9fa01bec11a86166d12ac71b41e86be0c70ad10d4b570896f716f4f51448f4c3ffff", + "cborBytes": [ + 216, 102, 159, 27, 120, 175, 156, 113, 11, 127, 37, 155, 159, 160, 27, 236, 17, 168, 97, 102, 209, 42, 199, 27, + 65, 232, 107, 224, 199, 10, 209, 13, 75, 87, 8, 150, 247, 22, 244, 245, 20, 72, 244, 195, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1943, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17022555119763121207" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7abd1929" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "389492537037988348" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11595614321042949187" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12384570746880179139" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3955999834803381853" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9817069781995813856" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8985895441434064557" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17321126800916692655" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "9c75d6da877916dbbce5" + } + ] + }, + "cborHex": "9fd8669f1bec3c43b12afce4379f9f447abd19291b0567c16618d0a1fcffd8669f1ba0ebe5c9ee3284439f1babded57a5f7cbbc3ffff1b36e688e3d4f5a65d1b883d3cf42314fbe0ffff1b7cb4504b6f7ab6add8669f1bf061010dde233eaf80ff4a9c75d6da877916dbbce5ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 236, 60, 67, 177, 42, 252, 228, 55, 159, 159, 68, 122, 189, 25, 41, 27, 5, 103, 193, 102, + 24, 208, 161, 252, 255, 216, 102, 159, 27, 160, 235, 229, 201, 238, 50, 132, 67, 159, 27, 171, 222, 213, 122, 95, + 124, 187, 195, 255, 255, 27, 54, 230, 136, 227, 212, 245, 166, 93, 27, 136, 61, 60, 244, 35, 20, 251, 224, 255, + 255, 27, 124, 180, 80, 75, 111, 122, 182, 173, 216, 102, 159, 27, 240, 97, 1, 13, 222, 35, 62, 175, 128, 255, 74, + 156, 117, 214, 218, 135, 121, 22, 219, 188, 229, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1944, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16749305338621802453" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "443e499416d1dbf6c91e72a6" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b4390fe20b5120fc1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25c7c11a43ed2625cfa0b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eecb9e43fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9030e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90ff" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03ff31" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35fa75cd78b5c9f56fdd1f7b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80ea52" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10726707399023599132" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7475233976555621063" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3330703423496604923" + } + }, + { + "_tag": "ByteArray", + "bytearray": "254d772b25c9d465597e" + } + ] + } + ] + }, + "cborHex": "d87f9f9fbf1be8717c76bf1b37d54c443e499416d1dbf6c91e72a6ffffbf490b4390fe20b5120fc14b25c7c11a43ed2625cfa0b545eecb9e43fa0643f9030e4290ffffbf4303ff314c35fa75cd78b5c9f56fdd1f7b4380ea5202ff0f9f1b94dceb8c005b1e1c9f1b67bd5db239874ac7ff1b2e39091de9b14cfb4a254d772b25c9d465597effff", + "cborBytes": [ + 216, 127, 159, 159, 191, 27, 232, 113, 124, 118, 191, 27, 55, 213, 76, 68, 62, 73, 148, 22, 209, 219, 246, 201, + 30, 114, 166, 255, 255, 191, 73, 11, 67, 144, 254, 32, 181, 18, 15, 193, 75, 37, 199, 193, 26, 67, 237, 38, 37, + 207, 160, 181, 69, 238, 203, 158, 67, 250, 6, 67, 249, 3, 14, 66, 144, 255, 255, 191, 67, 3, 255, 49, 76, 53, 250, + 117, 205, 120, 181, 201, 245, 111, 221, 31, 123, 67, 128, 234, 82, 2, 255, 15, 159, 27, 148, 220, 235, 140, 0, 91, + 30, 28, 159, 27, 103, 189, 93, 178, 57, 135, 74, 199, 255, 27, 46, 57, 9, 29, 233, 177, 76, 251, 74, 37, 77, 119, + 43, 37, 201, 212, 101, 89, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1945, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe0606" + }, + "cborHex": "43fe0606", + "cborBytes": [67, 254, 6, 6], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1946, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b46a9dd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9159641370816522183" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60bf2e99d9d92755542ad7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11876109175724896967" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b809beafc36d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "577567727731054417" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcdefcfc93" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11647537665682527935" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2a9e2e8f765a7f2d390" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1312807838783186744" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a" + } + } + ] + } + ] + }, + "cborHex": "9fbf440b46a9dd1b7f1d954c017da7c74b60bf2e99d9d92755542ad71ba4d06a5f7cd6f2c746b809beafc36d1b0803eec9cd23975145dcdefcfc931ba1a45dcbaefd56bf4af2a9e2e8f765a7f2d3901b123807c61905273842fb41412affff", + "cborBytes": [ + 159, 191, 68, 11, 70, 169, 221, 27, 127, 29, 149, 76, 1, 125, 167, 199, 75, 96, 191, 46, 153, 217, 217, 39, 85, + 84, 42, 215, 27, 164, 208, 106, 95, 124, 214, 242, 199, 70, 184, 9, 190, 175, 195, 109, 27, 8, 3, 238, 201, 205, + 35, 151, 81, 69, 220, 222, 252, 252, 147, 27, 161, 164, 93, 203, 174, 253, 86, 191, 74, 242, 169, 226, 232, 247, + 101, 167, 242, 211, 144, 27, 18, 56, 7, 198, 25, 5, 39, 56, 66, 251, 65, 65, 42, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1947, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12368976245873226115" + } + }, + "cborHex": "1baba76e5caa84b183", + "cborBytes": [27, 171, 167, 110, 92, 170, 132, 177, 131], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1948, + "sample": { + "_tag": "ByteArray", + "bytearray": "4a59b903bf" + }, + "cborHex": "454a59b903bf", + "cborBytes": [69, 74, 89, 185, 3, 191], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1949, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6648019805358768121" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f0e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8defcc1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df6a412f0007a6c4d423fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e1701cf00008afbff04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe0506" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f06" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1970205404166714256" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffff21b5c4282ca4e2bbff9bf423f0e0a44c8defcc141064bdf6a412f0007a6c4d423fa4a7e1701cf00008afbff0443fe0506429f06ff1b1b57936061e97390ff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 27, 92, 66, 130, 202, 78, 43, 191, 249, 191, 66, 63, 14, 10, 68, + 200, 222, 252, 193, 65, 6, 75, 223, 106, 65, 47, 0, 7, 166, 196, 212, 35, 250, 74, 126, 23, 1, 207, 0, 0, 138, + 251, 255, 4, 67, 254, 5, 6, 66, 159, 6, 255, 27, 27, 87, 147, 96, 97, 233, 115, 144, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1950, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4588711349603093076" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4293587163350756867" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bbb3bde4c88f3e5bd3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4522267835195685421" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "746a061c3273c12703c1ac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4739118326537685200" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4085084569405877487" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14219714362809717665" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "421a7f6b1c41" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15648764303597302389" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48f510e6e33f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17146771844201075101" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "235173788759767734" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1534538137180579608" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7d26d7a1f8fef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5296928588916258187" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3840756970244136195" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7627311095240648694" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5b222" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16573629739504568940" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3fae60a911e54a549fa09f80bf1b3b95e2c6d3b2ee0349bbb3bde4c88f3e5bd31b3ec252a2d8037a2d4b746a061c3273c12703c1ac1b41c4bb0251d288d01b38b122c5acddecef1bc55692dfaacb13a146421a7f6b1c411bd92b943931baf2754648f510e6e33f1bedf592251246519d1b034381509b823ab6ffbf1b154bc64e30f0271847f7d26d7a1f8fef1b4982787cbef6f58b1b354d1c1d8001dd031b69d9a707a736e7f643e5b222ffffbf11101be6015c6fee050a6c1bfffffffffffffff8ffffff", + "cborBytes": [ + 216, 102, 159, 27, 63, 174, 96, 169, 17, 229, 74, 84, 159, 160, 159, 128, 191, 27, 59, 149, 226, 198, 211, 178, + 238, 3, 73, 187, 179, 189, 228, 200, 143, 62, 91, 211, 27, 62, 194, 82, 162, 216, 3, 122, 45, 75, 116, 106, 6, 28, + 50, 115, 193, 39, 3, 193, 172, 27, 65, 196, 187, 2, 81, 210, 136, 208, 27, 56, 177, 34, 197, 172, 221, 236, 239, + 27, 197, 86, 146, 223, 170, 203, 19, 161, 70, 66, 26, 127, 107, 28, 65, 27, 217, 43, 148, 57, 49, 186, 242, 117, + 70, 72, 245, 16, 230, 227, 63, 27, 237, 245, 146, 37, 18, 70, 81, 157, 27, 3, 67, 129, 80, 155, 130, 58, 182, 255, + 191, 27, 21, 75, 198, 78, 48, 240, 39, 24, 71, 247, 210, 109, 122, 31, 143, 239, 27, 73, 130, 120, 124, 190, 246, + 245, 139, 27, 53, 77, 28, 29, 128, 1, 221, 3, 27, 105, 217, 167, 7, 167, 54, 231, 246, 67, 229, 178, 34, 255, 255, + 191, 17, 16, 27, 230, 1, 92, 111, 238, 5, 10, 108, 27, 255, 255, 255, 255, 255, 255, 255, 248, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1951, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff780ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1952, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1801044689358817787" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2275cfb4056284baea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04bbb1ef991efe2ae13b38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecf6c2152f1a01f2c801f71d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b164b1863a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44e788" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b39592" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9578651382586968294" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "22c2a2ea0d2dc8" + } + ] + }, + "cborHex": "9fbf1b18fe989a45d609fb492275cfb4056284baea4b04bbb1ef991efe2ae13b384cecf6c2152f1a01f2c801f71d45b164b1863a4344e78843b395921b84ee34aebe6688e6ff4722c2a2ea0d2dc8ff", + "cborBytes": [ + 159, 191, 27, 24, 254, 152, 154, 69, 214, 9, 251, 73, 34, 117, 207, 180, 5, 98, 132, 186, 234, 75, 4, 187, 177, + 239, 153, 30, 254, 42, 225, 59, 56, 76, 236, 246, 194, 21, 47, 26, 1, 242, 200, 1, 247, 29, 69, 177, 100, 177, + 134, 58, 67, 68, 231, 136, 67, 179, 149, 146, 27, 132, 238, 52, 174, 190, 102, 136, 230, 255, 71, 34, 194, 162, + 234, 13, 45, 200, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1953, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8515410293470400457" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11703235327301799237" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a779df5ece" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92600800" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5496088744879490559" + } + } + ] + }, + "cborHex": "9fbf1b762cd08b9b020fc91ba26a3e8616a04d4545a779df5ece4492600800ff1b4c4607980c9085ffff", + "cborBytes": [ + 159, 191, 27, 118, 44, 208, 139, 155, 2, 15, 201, 27, 162, 106, 62, 134, 22, 160, 77, 69, 69, 167, 121, 223, 94, + 206, 68, 146, 96, 8, 0, 255, 27, 76, 70, 7, 152, 12, 144, 133, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1954, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5984015934833462325" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4345894009952655286" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d8aedcb46" + } + ] + }, + "cborHex": "d8669f1b530b7ec9be068c359f1b3c4fb79396b9d7b6455d8aedcb46ffff", + "cborBytes": [ + 216, 102, 159, 27, 83, 11, 126, 201, 190, 6, 140, 53, 159, 27, 60, 79, 183, 147, 150, 185, 215, 182, 69, 93, 138, + 237, 203, 70, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1955, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8043656994341646324" + } + }, + "cborHex": "1b6fa0cf6b52d1eff4", + "cborBytes": [27, 111, 160, 207, 107, 82, 209, 239, 244], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1956, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27d13127a56a7070550a61" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "989204427454408658" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11564836557765574416" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17914407481341642735" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2007573690039061760" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1308f37d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb81d8b1da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "350726515376717795" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54685c44" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17872330806299207989" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9baa" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ed55264b0fe72cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44fab2f8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6dc8165195caff1772" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15926922729972813460" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "899e9cd0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71c2fef79b87cefc8aa840" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c846fa222c8de154" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6019871488538940907" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4b27d13127a56a7070550a61bf1b0dba5c2f8ca9e7d21ba07e8d937f117f101bf89cc2b08ef807ef1b1bdc55a26f32cd00441308f37d45cb81d8b1da41791b04de07e85256ffe3ff4454685c441bf807462d39bc2935429baabf485ed55264b0fe72cc4444fab2f8496dc8165195caff17721bdd07cbd6a51fce9444899e9cd04b71c2fef79b87cefc8aa84048c846fa222c8de1541b538ae13963dd95ebffff", + "cborBytes": [ + 191, 75, 39, 209, 49, 39, 165, 106, 112, 112, 85, 10, 97, 191, 27, 13, 186, 92, 47, 140, 169, 231, 210, 27, 160, + 126, 141, 147, 127, 17, 127, 16, 27, 248, 156, 194, 176, 142, 248, 7, 239, 27, 27, 220, 85, 162, 111, 50, 205, 0, + 68, 19, 8, 243, 125, 69, 203, 129, 216, 177, 218, 65, 121, 27, 4, 222, 7, 232, 82, 86, 255, 227, 255, 68, 84, 104, + 92, 68, 27, 248, 7, 70, 45, 57, 188, 41, 53, 66, 155, 170, 191, 72, 94, 213, 82, 100, 176, 254, 114, 204, 68, 68, + 250, 178, 248, 73, 109, 200, 22, 81, 149, 202, 255, 23, 114, 27, 221, 7, 203, 214, 165, 31, 206, 148, 68, 137, + 158, 156, 208, 75, 113, 194, 254, 247, 155, 135, 206, 252, 138, 168, 64, 72, 200, 70, 250, 34, 44, 141, 225, 84, + 27, 83, 138, 225, 57, 99, 221, 149, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1957, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35ed0834ca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf07bf024535ed0834ca1bfffffffffffffffb0dffff", + "cborBytes": [191, 7, 191, 2, 69, 53, 237, 8, 52, 202, 27, 255, 255, 255, 255, 255, 255, 255, 251, 13, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1958, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2661083341651118327" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16600185794786277971" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a9f99ae34752ff" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3055617737145214396" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7240098218285596144" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d40624ed953" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "210a9792" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9979ae6c2e64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2095469906720177641" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6f2daf5250c5283a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c3563932d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af67a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f884d71bd90ac8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e67bb17a027c03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12646349916178213910" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4370818207565473961" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad5a40dc" + } + } + ] + }, + "cborHex": "bf1b24ee113340d308f7d8669f1be65fb5075fb8ba539f47a9f99ae34752ffffff1b2a67bc247fec65bcbf421c491b6479fef847d9fdf0461d40624ed95344210a9792469979ae6c2e641b1d149ac72393bde949a6f2daf5250c5283a5451c3563932d43af67a947f884d71bd90ac847e67bb17a027c031baf80dc3edb17ec16ff1b3ca844008fbfe8a944ad5a40dcff", + "cborBytes": [ + 191, 27, 36, 238, 17, 51, 64, 211, 8, 247, 216, 102, 159, 27, 230, 95, 181, 7, 95, 184, 186, 83, 159, 71, 169, + 249, 154, 227, 71, 82, 255, 255, 255, 27, 42, 103, 188, 36, 127, 236, 101, 188, 191, 66, 28, 73, 27, 100, 121, + 254, 248, 71, 217, 253, 240, 70, 29, 64, 98, 78, 217, 83, 68, 33, 10, 151, 146, 70, 153, 121, 174, 108, 46, 100, + 27, 29, 20, 154, 199, 35, 147, 189, 233, 73, 166, 242, 218, 245, 37, 12, 82, 131, 165, 69, 28, 53, 99, 147, 45, + 67, 175, 103, 169, 71, 248, 132, 215, 27, 217, 10, 200, 71, 230, 123, 177, 122, 2, 124, 3, 27, 175, 128, 220, 62, + 219, 23, 236, 22, 255, 27, 60, 168, 68, 0, 143, 191, 232, 169, 68, 173, 90, 64, 220, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1959, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10397611333207616608" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6455041329157788029" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4da7" + }, + { + "_tag": "ByteArray", + "bytearray": "24b574" + }, + { + "_tag": "ByteArray", + "bytearray": "4f42eaafa8742829ab1535" + } + ] + } + } + ] + }, + "cborHex": "bf1b904bbc6b2c6a6c609f1b5994e9e37aea517d424da74324b5744b4f42eaafa8742829ab1535ffff", + "cborBytes": [ + 191, 27, 144, 75, 188, 107, 44, 106, 108, 96, 159, 27, 89, 148, 233, 227, 122, 234, 81, 125, 66, 77, 167, 67, 36, + 181, 116, 75, 79, 66, 234, 175, 168, 116, 40, 41, 171, 21, 53, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1960, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18420157707014205562" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15222118520740793822" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d65fb11c4708b5" + }, + { + "_tag": "ByteArray", + "bytearray": "f192cbdca749e84c6c6482" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7772605775997348249" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0257fde435cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8608461520853041059" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8800679557857739178" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14981820687350664960" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5124748060162738652" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1055534398653956903" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bffa18bd72141707a9fd8669f1bd33fd424f5a64dde9f47d65fb11c4708b54bf192cbdca749e84c6c64821b6bddd7c5b178a999460257fde435cc1b77776624c5107fa3ffff9f1b7a224b6e0c2701aaffbf1bcfea1e89be228f001b471ec335695f49dcff1b0ea602f16ff98327a0ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 161, 139, 215, 33, 65, 112, 122, 159, 216, 102, 159, 27, 211, 63, 212, 36, 245, 166, + 77, 222, 159, 71, 214, 95, 177, 28, 71, 8, 181, 75, 241, 146, 203, 220, 167, 73, 232, 76, 108, 100, 130, 27, 107, + 221, 215, 197, 177, 120, 169, 153, 70, 2, 87, 253, 228, 53, 204, 27, 119, 119, 102, 36, 197, 16, 127, 163, 255, + 255, 159, 27, 122, 34, 75, 110, 12, 39, 1, 170, 255, 191, 27, 207, 234, 30, 137, 190, 34, 143, 0, 27, 71, 30, 195, + 53, 105, 95, 73, 220, 255, 27, 14, 166, 2, 241, 111, 249, 131, 39, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1961, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0dbb72047388ad" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f0d8207ca938533" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1854399288704106524" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31d20617" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11384003899274609814" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffa470dbb72047388ad1bfffffffffffffffbbf482f0d8207ca9385331b19bc2653faf2001c4431d206171b9dfc1b3b39ecc496ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 250, 71, 13, 187, 114, 4, 115, 136, 173, 27, 255, 255, 255, 255, 255, + 255, 255, 251, 191, 72, 47, 13, 130, 7, 202, 147, 133, 51, 27, 25, 188, 38, 83, 250, 242, 0, 28, 68, 49, 210, 6, + 23, 27, 157, 252, 27, 59, 57, 236, 196, 150, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1962, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3892710809297598330" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a6d5ebdab20482ff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3117587524066801146" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8404633032387905938" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8980723110313574225" + } + }, + { + "_tag": "ByteArray", + "bytearray": "77c4a41542" + }, + { + "_tag": "ByteArray", + "bytearray": "e8f809759a09942c3a50d9" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16880807787342637769" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14449925850075763559" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6c0ee405ea5f6e294deeaf03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14917044661767793217" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18290036720257929758" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16276944116609374128" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b3605afdb4981b77a9f48a6d5ebdab20482ff1b2b43e555e030f5fa9f41361b74a341369afec9921b7ca1f0164061bf514577c4a415424be8f809759a09942c3a50d9ffd8669f1bea44ad3e8634aac99f1bc88873006c8013674c6c0ee405ea5f6e294deeaf031bcf03fd16034e6a41ffffd8669f1bfdd3437e07d3121e80ffffff9f1be1e3526f6362d7b0ff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 54, 5, 175, 219, 73, 129, 183, 122, 159, 72, 166, 213, 235, 218, 178, 4, 130, 255, 27, 43, + 67, 229, 85, 224, 48, 245, 250, 159, 65, 54, 27, 116, 163, 65, 54, 154, 254, 201, 146, 27, 124, 161, 240, 22, 64, + 97, 191, 81, 69, 119, 196, 164, 21, 66, 75, 232, 248, 9, 117, 154, 9, 148, 44, 58, 80, 217, 255, 216, 102, 159, + 27, 234, 68, 173, 62, 134, 52, 170, 201, 159, 27, 200, 136, 115, 0, 108, 128, 19, 103, 76, 108, 14, 228, 5, 234, + 95, 110, 41, 77, 238, 175, 3, 27, 207, 3, 253, 22, 3, 78, 106, 65, 255, 255, 216, 102, 159, 27, 253, 211, 67, 126, + 7, 211, 18, 30, 128, 255, 255, 255, 159, 27, 225, 227, 82, 111, 99, 98, 215, 176, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1963, + "sample": { + "_tag": "ByteArray", + "bytearray": "02f9" + }, + "cborHex": "4202f9", + "cborBytes": [66, 2, 249], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1964, + "sample": { + "_tag": "ByteArray", + "bytearray": "dafd00" + }, + "cborHex": "43dafd00", + "cborBytes": [67, 218, 253, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1965, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "017a6c49fe28fb8e802c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9258204302381457477" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6989657295134825498" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a9dce0c3c27bb829eb4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5b098b4efd006388c64" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ceb0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17480417469502996446" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e27ce985eef36e099510" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9f4a017a6c49fe28fb8e802cbf1b807bbfc2cd70a0451b61004046f23a9c1a4a4a9dce0c3c27bb829eb44ac5b098b4efd006388c6442ceb01bf296eb12c3423fdeff4ae27ce985eef36e099510ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 74, 1, 122, 108, 73, 254, 40, 251, 142, 128, 44, + 191, 27, 128, 123, 191, 194, 205, 112, 160, 69, 27, 97, 0, 64, 70, 242, 58, 156, 26, 74, 74, 157, 206, 12, 60, 39, + 187, 130, 158, 180, 74, 197, 176, 152, 180, 239, 208, 6, 56, 140, 100, 66, 206, 176, 27, 242, 150, 235, 18, 195, + 66, 63, 222, 255, 74, 226, 124, 233, 133, 238, 243, 110, 9, 149, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1966, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14832087203953784865" + } + }, + "cborHex": "1bcdd628ba6d483821", + "cborBytes": [27, 205, 214, 40, 186, 109, 72, 56, 33], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1967, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07d6bba30c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8034927093996043352" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "232a0c4cbf" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7113310024823729414" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16311966615411442677" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f2613e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4547517350713074277" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81826acbdae3e0d5d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13161555378159456298" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e629ffa5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15968136674817781680" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10056330458966824565" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3382216378357269097" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13483831308313870993" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2456538279983822652" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4126768718364883011" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c40ea4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1151147290988198129" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffc90727" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c8c8c6db2ca8ec765" + } + } + ] + }, + "cborHex": "bf4507d6bba30c1b6f81cb9f01cbbc5845232a0c4cbf9f1b62b78dc796d7ed061be25fbf3653a143f5ff4146bf443f2613e51b3f1c06efcb2da2654981826acbdae3e0d5d41bb6a73ce22ed3902a44e629ffa51bdd9a37b3f366afb0ff417d9f1b8b8f43458ea896751b2ef00be0597e42691bbb2031226f56c2911b2217608ce395b73c1b39453a48e8553843ff43c40ea41b0ff9b25cb38138f144ffc90727493c8c8c6db2ca8ec765ff", + "cborBytes": [ + 191, 69, 7, 214, 187, 163, 12, 27, 111, 129, 203, 159, 1, 203, 188, 88, 69, 35, 42, 12, 76, 191, 159, 27, 98, 183, + 141, 199, 150, 215, 237, 6, 27, 226, 95, 191, 54, 83, 161, 67, 245, 255, 65, 70, 191, 68, 63, 38, 19, 229, 27, 63, + 28, 6, 239, 203, 45, 162, 101, 73, 129, 130, 106, 203, 218, 227, 224, 213, 212, 27, 182, 167, 60, 226, 46, 211, + 144, 42, 68, 230, 41, 255, 165, 27, 221, 154, 55, 179, 243, 102, 175, 176, 255, 65, 125, 159, 27, 139, 143, 67, + 69, 142, 168, 150, 117, 27, 46, 240, 11, 224, 89, 126, 66, 105, 27, 187, 32, 49, 34, 111, 86, 194, 145, 27, 34, + 23, 96, 140, 227, 149, 183, 60, 27, 57, 69, 58, 72, 232, 85, 56, 67, 255, 67, 196, 14, 164, 27, 15, 249, 178, 92, + 179, 129, 56, 241, 68, 255, 201, 7, 39, 73, 60, 140, 140, 109, 178, 202, 142, 199, 101, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1968, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10093655993589792475" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b8c13dea5cee97edb80ffff", + "cborBytes": [159, 216, 102, 159, 27, 140, 19, 222, 165, 206, 233, 126, 219, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1969, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1225720272017763605" + } + }, + "cborHex": "1b1102a217df9d2d15", + "cborBytes": [27, 17, 2, 162, 23, 223, 157, 45, 21], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1970, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15299827396122717640" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05069e2913304ba7be" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17474605462100523343" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "650ce875a078f4" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8799f1bd453e7f46eaf2dc84905069e2913304ba7bed8669f1bf2824515569a394f9f47650ce875a078f4ffff80ff", + "cborBytes": [ + 216, 121, 159, 27, 212, 83, 231, 244, 110, 175, 45, 200, 73, 5, 6, 158, 41, 19, 48, 75, 167, 190, 216, 102, 159, + 27, 242, 130, 69, 21, 86, 154, 57, 79, 159, 71, 101, 12, 232, 117, 160, 120, 244, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1971, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16236657666263090928" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7545908950173954503" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f1be154321f393c06f01b68b87435d28f31c7ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 27, 225, 84, 50, 31, 57, 60, 6, 240, 27, 104, 184, + 116, 53, 210, 143, 49, 199, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1972, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07dc4f372fffe8" + }, + { + "_tag": "ByteArray", + "bytearray": "ed65cb9831094c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7021555487233676444" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17258969702577526127" + } + }, + { + "_tag": "ByteArray", + "bytearray": "668421dafe199ae8db392750" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6340121921349928007" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "688621749860309183" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17062001973618309838" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a4f57d5213e4652e3a3e" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "83754237685636199" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f4707dc4f372fffe847ed65cb9831094c1bfffffffffffffffdd8669f1bfffffffffffffff49f9f1b617193838b42149c1bef842d80a75cd56f4c668421dafe199ae8db392750ffd8669f1b57fca34bcabac4479f1b098e79d5410818bf1becc868658a887ace4aa4f57d5213e4652e3a3effff801b01298e0911af9c67ffff00ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 71, 7, 220, 79, 55, 47, 255, 232, 71, 237, 101, + 203, 152, 49, 9, 76, 27, 255, 255, 255, 255, 255, 255, 255, 253, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 244, 159, 159, 27, 97, 113, 147, 131, 139, 66, 20, 156, 27, 239, 132, 45, 128, 167, 92, 213, 111, 76, 102, + 132, 33, 218, 254, 25, 154, 232, 219, 57, 39, 80, 255, 216, 102, 159, 27, 87, 252, 163, 75, 202, 186, 196, 71, + 159, 27, 9, 142, 121, 213, 65, 8, 24, 191, 27, 236, 200, 104, 101, 138, 136, 122, 206, 74, 164, 245, 125, 82, 19, + 228, 101, 46, 58, 62, 255, 255, 128, 27, 1, 41, 142, 9, 17, 175, 156, 103, 255, 255, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1973, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16286434611405367118" + } + }, + "cborHex": "1be20509fd6671a74e", + "cborBytes": [27, 226, 5, 9, 253, 102, 113, 167, 78], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1974, + "sample": { + "_tag": "ByteArray", + "bytearray": "004e3301" + }, + "cborHex": "44004e3301", + "cborBytes": [68, 0, 78, 51, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1975, + "sample": { + "_tag": "ByteArray", + "bytearray": "603bdd1e5e5f420c" + }, + "cborHex": "48603bdd1e5e5f420c", + "cborBytes": [72, 96, 59, 221, 30, 94, 95, 66, 12], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1976, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2319053939794788892" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5099695186246245145" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ef7793" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18153700919949695971" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "882ef81a08" + } + ] + } + } + ] + }, + "cborHex": "bf1b202eef457870421c9f1b46c5c1c0a6fa1b1943ef7793ff1bfbeee6cde4489be39f45882ef81a08ffff", + "cborBytes": [ + 191, 27, 32, 46, 239, 69, 120, 112, 66, 28, 159, 27, 70, 197, 193, 192, 166, 250, 27, 25, 67, 239, 119, 147, 255, + 27, 251, 238, 230, 205, 228, 72, 155, 227, 159, 69, 136, 46, 248, 26, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1977, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa06ce020553" + }, + "cborHex": "46fa06ce020553", + "cborBytes": [70, 250, 6, 206, 2, 5, 83], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1978, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "888228387338806254" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13755034590182280518" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27808cbb0c98520c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1983119502358061822" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa5349ea890a866652fda0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1949744683633657181" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "246b658c32e1" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "31585258777005999" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16540026433802937270" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3114667795989276956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15603936408383286186" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3469200562477061828" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53f0da228be202f5facebe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4003567371205270901" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8731624026522384000" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13705176146009009062" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50d0" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1612250605162330301" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1916db59" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9165042506135537499" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4035ac9f567ae55056377d7c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "956361c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1ee805347949fc22c82" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ff1278bad2394b99a34243e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c14bcdd7b4672a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4c0fc2feb8f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "505167259378804177" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10614833359998500690" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3416990992862389640" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b0c539f0322bf63ee9fbf420b831bbee3b3151d068d464827808cbb0c98520c412541381b1b8574ae2d33a2fe4bfa5349ea890a866652fda01b1b0ee275a6b0c55dff46246b658c32e180bf1b007036a0218acfaf1be589fa68a26523b61b2b3985dbb54a291c1bd88c517d7f786baa1b30251387ed07d6c44b53f0da228be202f5facebe1b378f874ff308dd751b792cf5ca3d21f6801bbe32911777062ba64250d0ffd8669f1b165fdd62219bf8bd9fbf441916db591b7f30c599d190875b4c4035ac9f567ae55056377d7c4252c144956361c54aa1ee805347949fc22c824c9ff1278bad2394b99a34243e47c14bcdd7b4672a46e4c0fc2feb8f1b0702b6f2276e65d1ffd8669f1b934f76b37cad3f5280ff9f1b2f6b97343a45a588ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 12, 83, 159, 3, 34, 191, 99, 238, 159, 191, 66, 11, 131, 27, 190, 227, 179, 21, 29, 6, 141, 70, + 72, 39, 128, 140, 187, 12, 152, 82, 12, 65, 37, 65, 56, 27, 27, 133, 116, 174, 45, 51, 162, 254, 75, 250, 83, 73, + 234, 137, 10, 134, 102, 82, 253, 160, 27, 27, 14, 226, 117, 166, 176, 197, 93, 255, 70, 36, 107, 101, 140, 50, + 225, 128, 191, 27, 0, 112, 54, 160, 33, 138, 207, 175, 27, 229, 137, 250, 104, 162, 101, 35, 182, 27, 43, 57, 133, + 219, 181, 74, 41, 28, 27, 216, 140, 81, 125, 127, 120, 107, 170, 27, 48, 37, 19, 135, 237, 7, 214, 196, 75, 83, + 240, 218, 34, 139, 226, 2, 245, 250, 206, 190, 27, 55, 143, 135, 79, 243, 8, 221, 117, 27, 121, 44, 245, 202, 61, + 33, 246, 128, 27, 190, 50, 145, 23, 119, 6, 43, 166, 66, 80, 208, 255, 216, 102, 159, 27, 22, 95, 221, 98, 33, + 155, 248, 189, 159, 191, 68, 25, 22, 219, 89, 27, 127, 48, 197, 153, 209, 144, 135, 91, 76, 64, 53, 172, 159, 86, + 122, 229, 80, 86, 55, 125, 124, 66, 82, 193, 68, 149, 99, 97, 197, 74, 161, 238, 128, 83, 71, 148, 159, 194, 44, + 130, 76, 159, 241, 39, 139, 173, 35, 148, 185, 154, 52, 36, 62, 71, 193, 75, 205, 215, 180, 103, 42, 70, 228, 192, + 252, 47, 235, 143, 27, 7, 2, 182, 242, 39, 110, 101, 209, 255, 216, 102, 159, 27, 147, 79, 118, 179, 124, 173, 63, + 82, 128, 255, 159, 27, 47, 107, 151, 52, 58, 69, 165, 136, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1979, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ee2b1b04ff227651" + }, + { + "_tag": "ByteArray", + "bytearray": "5394b74114aa14" + } + ] + }, + "cborHex": "9f48ee2b1b04ff227651475394b74114aa14ff", + "cborBytes": [159, 72, 238, 43, 27, 4, 255, 34, 118, 81, 71, 83, 148, 183, 65, 20, 170, 20, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1980, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12371165053131851938" + } + }, + "cborHex": "1babaf351211a688a2", + "cborBytes": [27, 171, 175, 53, 18, 17, 166, 136, 162], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1981, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd3886f90204" + }, + "cborHex": "46fd3886f90204", + "cborBytes": [70, 253, 56, 134, 249, 2, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1982, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff4b05455b07f802e3" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf49ff4b05455b07f802e3a0ff", + "cborBytes": [191, 73, 255, 75, 5, 69, 91, 7, 248, 2, 227, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1983, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16621962350141297418" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc" + } + } + ] + }, + "cborHex": "bf041be6ad12b0c616d30a0a41fcff", + "cborBytes": [191, 4, 27, 230, 173, 18, 176, 198, 22, 211, 10, 10, 65, 252, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1984, + "sample": { + "_tag": "ByteArray", + "bytearray": "fff8" + }, + "cborHex": "42fff8", + "cborBytes": [66, 255, 248], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1985, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3263015987645515710" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13509583152229874567" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8391841625601830149" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16176320140110553551" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8726323065472736447" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18421115445147119151" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16616674890846374104" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "548671221812992128" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17605109224349270849" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a579cc8564ba593082be" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ffeb2b1937578f04025380b9" + }, + { + "_tag": "ByteArray", + "bytearray": "0dfcc6b1bc411acff8a45424" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9fbf1b2d488fc0a80807be1bbb7bae4cd4437b871b7475cf7f21556d051be07dd5762c4961cf1b791a209810ccdcbf1bffa4f2e5ea74ae2f1be69a49c6390d08d81b079d4591baa498801bf451e9904d4a83414aa579cc8564ba593082beff4cffeb2b1937578f04025380b94c0dfcc6b1bc411acff8a45424ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 191, 27, 45, 72, 143, 192, 168, 8, 7, 190, 27, + 187, 123, 174, 76, 212, 67, 123, 135, 27, 116, 117, 207, 127, 33, 85, 109, 5, 27, 224, 125, 213, 118, 44, 73, 97, + 207, 27, 121, 26, 32, 152, 16, 204, 220, 191, 27, 255, 164, 242, 229, 234, 116, 174, 47, 27, 230, 154, 73, 198, + 57, 13, 8, 216, 27, 7, 157, 69, 145, 186, 164, 152, 128, 27, 244, 81, 233, 144, 77, 74, 131, 65, 74, 165, 121, + 204, 133, 100, 186, 89, 48, 130, 190, 255, 76, 255, 235, 43, 25, 55, 87, 143, 4, 2, 83, 128, 185, 76, 13, 252, + 198, 177, 188, 65, 26, 207, 248, 164, 84, 36, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1986, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5999603517995522200" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14072560129697874954" + } + } + ] + }, + "cborHex": "d8669f1b5342df9cc34e98989f801bc34bc6e0daf7840affff", + "cborBytes": [ + 216, 102, 159, 27, 83, 66, 223, 156, 195, 78, 152, 152, 159, 128, 27, 195, 75, 198, 224, 218, 247, 132, 10, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1987, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8508999349884853226" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c6c3748a82797176" + } + ] + } + ] + }, + "cborHex": "d9050a9f9f1b761609d37bea9bea48c6c3748a82797176ffff", + "cborBytes": [ + 217, 5, 10, 159, 159, 27, 118, 22, 9, 211, 123, 234, 155, 234, 72, 198, 195, 116, 138, 130, 121, 113, 118, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1988, + "sample": { + "_tag": "ByteArray", + "bytearray": "62e4d56f60fd81dd3ce4bb98" + }, + "cborHex": "4c62e4d56f60fd81dd3ce4bb98", + "cborBytes": [76, 98, 228, 213, 111, 96, 253, 129, 221, 60, 228, 187, 152], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1989, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15137453686570962741" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2798304333467883100" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c4b3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3001923598326516176" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13958974404316242686" + } + }, + { + "_tag": "ByteArray", + "bytearray": "65d01d9791bde0ff1d86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9200997714766841861" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3345846614799877793" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6333cd832a428f217934" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "703586deef8c9e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4fe15a68" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f6dcb5a90154cfc6" + } + ] + } + ] + }, + "cborHex": "d905099fd8669f1bd21309ed1ffd4f359fd8669f1b26d592f719ca165c9f42c4b31b29a8f99b991d49d01bc1b83d434e0a22fe4a65d01d9791bde0ff1d861b7fb082ac2fdbc805ffffffffd8669f1b2e6ed5c4e41706a19f4a6333cd832a428f217934bf47703586deef8c9e444fe15a68ffffff9f48f6dcb5a90154cfc6ffff", + "cborBytes": [ + 217, 5, 9, 159, 216, 102, 159, 27, 210, 19, 9, 237, 31, 253, 79, 53, 159, 216, 102, 159, 27, 38, 213, 146, 247, + 25, 202, 22, 92, 159, 66, 196, 179, 27, 41, 168, 249, 155, 153, 29, 73, 208, 27, 193, 184, 61, 67, 78, 10, 34, + 254, 74, 101, 208, 29, 151, 145, 189, 224, 255, 29, 134, 27, 127, 176, 130, 172, 47, 219, 200, 5, 255, 255, 255, + 255, 216, 102, 159, 27, 46, 110, 213, 196, 228, 23, 6, 161, 159, 74, 99, 51, 205, 131, 42, 66, 143, 33, 121, 52, + 191, 71, 112, 53, 134, 222, 239, 140, 158, 68, 79, 225, 90, 104, 255, 255, 255, 159, 72, 246, 220, 181, 169, 1, + 84, 207, 198, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1990, + "sample": { + "_tag": "ByteArray", + "bytearray": "01fb" + }, + "cborHex": "4201fb", + "cborBytes": [66, 1, 251], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1991, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "85608922ac9d1d4af268e5" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12659071858802636788" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1915204480331165182" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6807270123485717354" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8481330504323176351" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13775657279693691022" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ac76a60163e9bcc52" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8dd01d515e3f1cbfd8b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2089899625476060408" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4583ff7bde2f3d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1039d18548d4bd" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "63cd9804506b42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81f42b27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9544833290708162340" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7521272466457955364" + } + } + ] + }, + "cborHex": "9f9f4b85608922ac9d1d4af268e5ff80d8669f1bafae0ec8f21337f49f1b1a942c53e2602dfe1b5e78481c607ee36abf1b75b3bd285cde179f41361bbf2cf74f2faa988e499ac76a60163e9bcc524ab8dd01d515e3f1cbfd8b1b1d00d0a2f8b8f4f848e4583ff7bde2f3d8471039d18548d4bdffbf4763cd9804506b42412f4481f42b271b84760f4ea4fb9724ffffff1b6860ed7576270c24ff", + "cborBytes": [ + 159, 159, 75, 133, 96, 137, 34, 172, 157, 29, 74, 242, 104, 229, 255, 128, 216, 102, 159, 27, 175, 174, 14, 200, + 242, 19, 55, 244, 159, 27, 26, 148, 44, 83, 226, 96, 45, 254, 27, 94, 120, 72, 28, 96, 126, 227, 106, 191, 27, + 117, 179, 189, 40, 92, 222, 23, 159, 65, 54, 27, 191, 44, 247, 79, 47, 170, 152, 142, 73, 154, 199, 106, 96, 22, + 62, 155, 204, 82, 74, 184, 221, 1, 213, 21, 227, 241, 203, 253, 139, 27, 29, 0, 208, 162, 248, 184, 244, 248, 72, + 228, 88, 63, 247, 189, 226, 243, 216, 71, 16, 57, 209, 133, 72, 212, 189, 255, 191, 71, 99, 205, 152, 4, 80, 107, + 66, 65, 47, 68, 129, 244, 43, 39, 27, 132, 118, 15, 78, 164, 251, 151, 36, 255, 255, 255, 27, 104, 96, 237, 117, + 118, 39, 12, 36, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1992, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14958149053199508113" + } + }, + "cborHex": "1bcf96054fed4d6291", + "cborBytes": [27, 207, 150, 5, 79, 237, 77, 98, 145], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1993, + "sample": { + "_tag": "ByteArray", + "bytearray": "aba12bc86b" + }, + "cborHex": "45aba12bc86b", + "cborBytes": [69, 171, 161, 43, 200, 107], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1994, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14217873488948285180" + } + }, + "cborHex": "1bc550089bd234cefc", + "cborBytes": [27, 197, 80, 8, 155, 210, 52, 206, 252], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1995, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9689181231387308516" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f1b8676e2fe9538f1e480ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 27, 134, 118, 226, 254, 149, 56, 241, 228, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1996, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11343369399568628919" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9085009403634913020" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "36" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "222220e6" + }, + { + "_tag": "ByteArray", + "bytearray": "21557509b1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13173741078026593818" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14877297714284965460" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1339449491584142604" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4884013158013281328" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e7d85f18c2918753c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6172156939577922873" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea81b6666d1a436144" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6850516360070357332" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa0c4a0e53f6c798c1550d7e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7619229258104625636" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4082360722078733320" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11056352330908491572" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12675412905941255022" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13319695521217875549" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbe807f2bbca4fe74b" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11270063907577720195" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14410489557780199448" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ddb2105b62011e9678bf4d" + }, + { + "_tag": "ByteArray", + "bytearray": "d5f0b4cf3d29b53f9f688eb3" + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b9d6bbe5e8152fcb71b7e146feb0cbe0efcff41369f9f44222220e64521557509b11bb6d287b686bf261affbf1bce76c772a5afae541b1296ae3744734d0c1bfffffffffffffff61bffffffffffffffecffff9fbf1b43c7801731b72430490e7d85f18c2918753c1b55a7e808f981153949ea81b6666d1a4361441b5f11ec5579fee1544cfa0c4a0e53f6c798c1550d7e1b69bcf0a44f96d9e41b38a775728c8294081b99700dddab5cdf341bafe81ce17807c36e1bb8d910817a8d8e5d49cbe807f2bbca4fe74bffa09f1b9c674f699f1eed831bc7fc57e71af6f8184bddb2105b62011e9678bf4d4cd5f0b4cf3d29b53f9f688eb3ffffff", + "cborBytes": [ + 159, 191, 27, 157, 107, 190, 94, 129, 82, 252, 183, 27, 126, 20, 111, 235, 12, 190, 14, 252, 255, 65, 54, 159, + 159, 68, 34, 34, 32, 230, 69, 33, 85, 117, 9, 177, 27, 182, 210, 135, 182, 134, 191, 38, 26, 255, 191, 27, 206, + 118, 199, 114, 165, 175, 174, 84, 27, 18, 150, 174, 55, 68, 115, 77, 12, 27, 255, 255, 255, 255, 255, 255, 255, + 246, 27, 255, 255, 255, 255, 255, 255, 255, 236, 255, 255, 159, 191, 27, 67, 199, 128, 23, 49, 183, 36, 48, 73, + 14, 125, 133, 241, 140, 41, 24, 117, 60, 27, 85, 167, 232, 8, 249, 129, 21, 57, 73, 234, 129, 182, 102, 109, 26, + 67, 97, 68, 27, 95, 17, 236, 85, 121, 254, 225, 84, 76, 250, 12, 74, 14, 83, 246, 199, 152, 193, 85, 13, 126, 27, + 105, 188, 240, 164, 79, 150, 217, 228, 27, 56, 167, 117, 114, 140, 130, 148, 8, 27, 153, 112, 13, 221, 171, 92, + 223, 52, 27, 175, 232, 28, 225, 120, 7, 195, 110, 27, 184, 217, 16, 129, 122, 141, 142, 93, 73, 203, 232, 7, 242, + 187, 202, 79, 231, 75, 255, 160, 159, 27, 156, 103, 79, 105, 159, 30, 237, 131, 27, 199, 252, 87, 231, 26, 246, + 248, 24, 75, 221, 178, 16, 91, 98, 1, 30, 150, 120, 191, 77, 76, 213, 240, 180, 207, 61, 41, 181, 63, 159, 104, + 142, 179, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1997, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd56c6fe5ff234318e5071" + }, + { + "_tag": "ByteArray", + "bytearray": "12a1f706" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10187408974266851170" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "240003987006018059" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6396799557448366166" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6030458373051730543" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d905079f4bfd56c6fe5ff234318e50714412a1f7069f801b8d60f27ca4cd5f62d8669f1b0354aa5ac62bd20b9f1b58c5ff4e4915f8561b53b07df086874a6fffffffa0ff", + "cborBytes": [ + 217, 5, 7, 159, 75, 253, 86, 198, 254, 95, 242, 52, 49, 142, 80, 113, 68, 18, 161, 247, 6, 159, 128, 27, 141, 96, + 242, 124, 164, 205, 95, 98, 216, 102, 159, 27, 3, 84, 170, 90, 198, 43, 210, 11, 159, 27, 88, 197, 255, 78, 73, + 21, 248, 86, 27, 83, 176, 125, 240, 134, 135, 74, 111, 255, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1998, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "009d3fc8d605d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16030463420673100723" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca487e87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c39fb0e0bd7582" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4ea0b3b1f7e0fe74a93" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5927126309349370080" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d50fbbeae27009aa715ee6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c29478d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e0174" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94e9ea6a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae6176" + } + } + ] + } + } + ] + }, + "cborHex": "bf47009d3fc8d605d61bde77a58c4e1d0bb344ca487e8747c39fb0e0bd75824ad4ea0b3b1f7e0fe74a931b524161f99fa428e04bd50fbbeae27009aa715ee6bf441c29478d436e01744494e9ea6a43ae6176ffff", + "cborBytes": [ + 191, 71, 0, 157, 63, 200, 214, 5, 214, 27, 222, 119, 165, 140, 78, 29, 11, 179, 68, 202, 72, 126, 135, 71, 195, + 159, 176, 224, 189, 117, 130, 74, 212, 234, 11, 59, 31, 126, 15, 231, 74, 147, 27, 82, 65, 97, 249, 159, 164, 40, + 224, 75, 213, 15, 187, 234, 226, 112, 9, 170, 113, 94, 230, 191, 68, 28, 41, 71, 141, 67, 110, 1, 116, 68, 148, + 233, 234, 106, 67, 174, 97, 118, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 1999, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5586360263695719074" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b6b6e1" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f30c9dd2c64b" + }, + { + "_tag": "ByteArray", + "bytearray": "b609da7abb3ab0" + }, + { + "_tag": "ByteArray", + "bytearray": "c33c17" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10435419319343056123" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2278370662518615463" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a1c33" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1393841110324597611" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10833487141156328767" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11333434187218334199" + } + } + ] + }, + "cborHex": "d8669f1b4d86bd0fe0f0daa29f43b6b6e1809f46f30c9dd2c64b47b609da7abb3ab043c33c17d8669f1b90d20e94ebb104fb9f1b1f9e660bd617eda7438a1c331b1357eb1ade3bd36bffff1b965847281762953fff1b9d4872589e6ab1f7ffff", + "cborBytes": [ + 216, 102, 159, 27, 77, 134, 189, 15, 224, 240, 218, 162, 159, 67, 182, 182, 225, 128, 159, 70, 243, 12, 157, 210, + 198, 75, 71, 182, 9, 218, 122, 187, 58, 176, 67, 195, 60, 23, 216, 102, 159, 27, 144, 210, 14, 148, 235, 177, 4, + 251, 159, 27, 31, 158, 102, 11, 214, 23, 237, 167, 67, 138, 28, 51, 27, 19, 87, 235, 26, 222, 59, 211, 107, 255, + 255, 27, 150, 88, 71, 40, 23, 98, 149, 63, 255, 27, 157, 72, 114, 88, 158, 106, 177, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2000, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2132997141643624010" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "381aca7db9fdf5" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2281959679169438097" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9618cb253dbf990b" + }, + { + "_tag": "ByteArray", + "bytearray": "a3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8120852829265072559" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14706966695721868917" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7515455734388138976" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6464828524868498098" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4878273700874663251" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11905254525304839227" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9229697103910188846" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16186636938333437796" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1d99ed9966977e4a9f47381aca7db9fdf5ff1b1fab263ce4a8a1919f489618cb253dbf990b41a31b70b3109f419211af1bcc19a449f6009e751b684c432bfd60a3e0ff1b59b7af4a8e9972b2d8669f1b43b31c15b1c3b5539f1ba537f5e9fd681c3b1b8016789d6f04b72e1be0a27c88f194bf64ffffff", + "cborBytes": [ + 191, 27, 29, 153, 237, 153, 102, 151, 126, 74, 159, 71, 56, 26, 202, 125, 185, 253, 245, 255, 27, 31, 171, 38, 60, + 228, 168, 161, 145, 159, 72, 150, 24, 203, 37, 61, 191, 153, 11, 65, 163, 27, 112, 179, 16, 159, 65, 146, 17, 175, + 27, 204, 25, 164, 73, 246, 0, 158, 117, 27, 104, 76, 67, 43, 253, 96, 163, 224, 255, 27, 89, 183, 175, 74, 142, + 153, 114, 178, 216, 102, 159, 27, 67, 179, 28, 21, 177, 195, 181, 83, 159, 27, 165, 55, 245, 233, 253, 104, 28, + 59, 27, 128, 22, 120, 157, 111, 4, 183, 46, 27, 224, 162, 124, 136, 241, 148, 191, 100, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2001, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "73527fedad402e" + }, + { + "_tag": "ByteArray", + "bytearray": "0602" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3435931096381663404" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5828522042406683811" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d8c60028c4a6a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13586339551988506578" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15844d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14185865927855629590" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6093712099623697067" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15330835125140059740" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4133783248309695998" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7778327926904263934" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13197156766851764605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1a185195a5b13be" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14029018862320038183" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e986b909b6db2d06d9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47873e1eaf70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef2664d040531948f4" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "39db56052d7d" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3d85e9" + }, + { + "_tag": "ByteArray", + "bytearray": "0731" + } + ] + }, + "cborHex": "d87b9f4773527fedad402e4206029f1b2faee120b88c28acbf1b50e311eaaf2f44a3472d8c60028c4a6a1bbc8c5fd6ca1d5fd24315844d1bc4de51e6c526e5161b549136de6591faab1bd4c21151f00df65c1b395e25f66df5b5feffd8669f1b6bf22c09c5a114fe80ffbf1bb725b8286d57917d48b1a185195a5b13be1bc2b116538bd7312749e986b909b6db2d06d94647873e1eaf7049ef2664d040531948f4ff9f4639db56052d7dffff433d85e9420731ff", + "cborBytes": [ + 216, 123, 159, 71, 115, 82, 127, 237, 173, 64, 46, 66, 6, 2, 159, 27, 47, 174, 225, 32, 184, 140, 40, 172, 191, + 27, 80, 227, 17, 234, 175, 47, 68, 163, 71, 45, 140, 96, 2, 140, 74, 106, 27, 188, 140, 95, 214, 202, 29, 95, 210, + 67, 21, 132, 77, 27, 196, 222, 81, 230, 197, 38, 229, 22, 27, 84, 145, 54, 222, 101, 145, 250, 171, 27, 212, 194, + 17, 81, 240, 13, 246, 92, 27, 57, 94, 37, 246, 109, 245, 181, 254, 255, 216, 102, 159, 27, 107, 242, 44, 9, 197, + 161, 20, 254, 128, 255, 191, 27, 183, 37, 184, 40, 109, 87, 145, 125, 72, 177, 161, 133, 25, 90, 91, 19, 190, 27, + 194, 177, 22, 83, 139, 215, 49, 39, 73, 233, 134, 185, 9, 182, 219, 45, 6, 217, 70, 71, 135, 62, 30, 175, 112, 73, + 239, 38, 100, 208, 64, 83, 25, 72, 244, 255, 159, 70, 57, 219, 86, 5, 45, 125, 255, 255, 67, 61, 133, 233, 66, 7, + 49, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2002, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [] + }, + "cborHex": "d9050380", + "cborBytes": [217, 5, 3, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2003, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11509218781772010398" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b9fb8f580e9c6539e80ffff", + "cborBytes": [159, 216, 102, 159, 27, 159, 184, 245, 128, 233, 198, 83, 158, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2004, + "sample": { + "_tag": "ByteArray", + "bytearray": "fac986373c4c5cdade21" + }, + "cborHex": "4afac986373c4c5cdade21", + "cborBytes": [74, 250, 201, 134, 55, 60, 76, 92, 218, 222, 33], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2005, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16028301230585678878" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f046b701a5c97fe01c7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12822068528366682661" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6416907777856333127" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0407e4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1805ced1b6a8af40586f" + } + ] + } + ] + }, + "cborHex": "9f1bfffffffffffffff39fa09f1bde6ff70c32040c1e4af046b701a5c97fe01c7b1bb1f123646f0302251b590d6fa02f916547ff430407e40f4a1805ced1b6a8af40586fffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 160, 159, 27, 222, 111, 247, 12, 50, 4, 12, 30, 74, 240, 70, + 183, 1, 165, 201, 127, 224, 28, 123, 27, 177, 241, 35, 100, 111, 3, 2, 37, 27, 89, 13, 111, 160, 47, 145, 101, 71, + 255, 67, 4, 7, 228, 15, 74, 24, 5, 206, 209, 182, 168, 175, 64, 88, 111, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2006, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4993333604363237362" + } + }, + "cborHex": "1b454be275151777f2", + "cborBytes": [27, 69, 75, 226, 117, 21, 23, 119, 242], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2007, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18420086537134326818" + } + }, + "cborHex": "1bffa14b1c99d8c422", + "cborBytes": [27, 255, 161, 75, 28, 153, 216, 196, 34], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2008, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e3162c6dd31b8ffc20d066" + }, + { + "_tag": "ByteArray", + "bytearray": "0ff688a2c8734a8418" + } + ] + } + } + ] + }, + "cborHex": "bf03d9050d9f4be3162c6dd31b8ffc20d066490ff688a2c8734a8418ffff", + "cborBytes": [ + 191, 3, 217, 5, 13, 159, 75, 227, 22, 44, 109, 211, 27, 143, 252, 32, 208, 102, 73, 15, 246, 136, 162, 200, 115, + 74, 132, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2009, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cef7a" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf430cef7a80ff", + "cborBytes": [191, 67, 12, 239, 122, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2010, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13972318846321001866" + } + }, + "cborHex": "1bc1e7a5f65375858a", + "cborBytes": [27, 193, 231, 165, 246, 83, 117, 133, 138], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2011, + "sample": { + "_tag": "ByteArray", + "bytearray": "cff1" + }, + "cborHex": "42cff1", + "cborBytes": [66, 207, 241], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2012, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15920627388484318338" + } + }, + "cborHex": "1bdcf16e423bf67482", + "cborBytes": [27, 220, 241, 110, 66, 59, 246, 116, 130], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2013, + "sample": { + "_tag": "ByteArray", + "bytearray": "0180020306f9ff" + }, + "cborHex": "470180020306f9ff", + "cborBytes": [71, 1, 128, 2, 3, 6, 249, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2014, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10124773762209366542" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcd4a1e729225230310b84d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10122107419902641526" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8915462907000529" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4191485051293083645" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14554982094185926601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16227102149877299102" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2971aa02be5bf7" + } + } + ] + } + ] + }, + "cborHex": "d905029fa0bf413d1b8c826c17e7af420e4cfcd4a1e729225230310b84d91b8c78f311b5a48576ffbf1b001fac90f79476d11b3a2b25725baf27fd1bc9fdaf195c1f8fc941061be1323f6e3169f79e472971aa02be5bf7ffff", + "cborBytes": [ + 217, 5, 2, 159, 160, 191, 65, 61, 27, 140, 130, 108, 23, 231, 175, 66, 14, 76, 252, 212, 161, 231, 41, 34, 82, 48, + 49, 11, 132, 217, 27, 140, 120, 243, 17, 181, 164, 133, 118, 255, 191, 27, 0, 31, 172, 144, 247, 148, 118, 209, + 27, 58, 43, 37, 114, 91, 175, 39, 253, 27, 201, 253, 175, 25, 92, 31, 143, 201, 65, 6, 27, 225, 50, 63, 110, 49, + 105, 247, 158, 71, 41, 113, 170, 2, 190, 91, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2015, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a6fbec9cc0b0c1a6d7fdc57" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15279008561249956991" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "45c754483ba56d78631a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7930291505944099413" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40f7c3290f45ddb39cad1c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11307132318485175315" + } + } + ] + }, + "cborHex": "d905089f9fbf4212cf4c9a6fbec9cc0b0c1a6d7fdc5742ff881bd409f155b574b47fffff4a45c754483ba56d78631abf1b6e0e0e1bb1187a554b40f7c3290f45ddb39cad1cff1b9ceb00ef97a5dc13ff", + "cborBytes": [ + 217, 5, 8, 159, 159, 191, 66, 18, 207, 76, 154, 111, 190, 201, 204, 11, 12, 26, 109, 127, 220, 87, 66, 255, 136, + 27, 212, 9, 241, 85, 181, 116, 180, 127, 255, 255, 74, 69, 199, 84, 72, 59, 165, 109, 120, 99, 26, 191, 27, 110, + 14, 14, 27, 177, 24, 122, 85, 75, 64, 247, 195, 41, 15, 69, 221, 179, 156, 173, 28, 255, 27, 156, 235, 0, 239, + 151, 165, 220, 19, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2016, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe4985a3e1dc4b97" + }, + "cborHex": "48fe4985a3e1dc4b97", + "cborBytes": [72, 254, 73, 133, 163, 225, 220, 75, 151], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2017, + "sample": { + "_tag": "ByteArray", + "bytearray": "5e1ee3ac53a16ef051c677" + }, + "cborHex": "4b5e1ee3ac53a16ef051c677", + "cborBytes": [75, 94, 30, 227, 172, 83, 161, 110, 240, 81, 198, 119], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2018, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14098375694777117781" + } + }, + "cborHex": "1bc3a77dff7d30ec55", + "cborBytes": [27, 195, 167, 125, 255, 125, 48, 236, 85], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2019, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10002725597705158719" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10769151314794700392" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb51fb054bfeca" + } + } + ] + } + ] + }, + "cborHex": "9f09bf1b8ad0d1ef34ec403f1b9573b6103ac4de681bffffffffffffffef47fb51fb054bfecaffff", + "cborBytes": [ + 159, 9, 191, 27, 138, 208, 209, 239, 52, 236, 64, 63, 27, 149, 115, 182, 16, 58, 196, 222, 104, 27, 255, 255, 255, + 255, 255, 255, 255, 239, 71, 251, 81, 251, 5, 75, 254, 202, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2020, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1786263793954369974" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91e6804af3e8e02c04db7f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18dfca4310be6f6e0c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2432278566542229985" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "550cd8d387" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82592487" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "652701e24828f302" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f05e8ae44d08c387a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a7b42" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10846604580505143245" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da6fa3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8400514369359728027" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9bdd571acc52c88" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdfe" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b18ca1574e1cab1b6a04b91e6804af3e8e02c04db7fbf4918dfca4310be6f6e0c1b21c13078318bc1e145550cd8d387448259248748652701e24828f302494f05e8ae44d08c387a437a7b421b9686e165f02247cd43da6fa31b74949f4fa4404d9b48f9bdd571acc52c8842bdfeffff", + "cborBytes": [ + 191, 27, 24, 202, 21, 116, 225, 202, 177, 182, 160, 75, 145, 230, 128, 74, 243, 232, 224, 44, 4, 219, 127, 191, + 73, 24, 223, 202, 67, 16, 190, 111, 110, 12, 27, 33, 193, 48, 120, 49, 139, 193, 225, 69, 85, 12, 216, 211, 135, + 68, 130, 89, 36, 135, 72, 101, 39, 1, 226, 72, 40, 243, 2, 73, 79, 5, 232, 174, 68, 208, 140, 56, 122, 67, 122, + 123, 66, 27, 150, 134, 225, 101, 240, 34, 71, 205, 67, 218, 111, 163, 27, 116, 148, 159, 79, 164, 64, 77, 155, 72, + 249, 189, 213, 113, 172, 197, 44, 136, 66, 189, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2021, + "sample": { + "_tag": "ByteArray", + "bytearray": "ac772707bacfb51996c0" + }, + "cborHex": "4aac772707bacfb51996c0", + "cborBytes": [74, 172, 119, 39, 7, 186, 207, 181, 25, 150, 192], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2022, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a6" + }, + { + "_tag": "ByteArray", + "bytearray": "fd" + }, + { + "_tag": "ByteArray", + "bytearray": "b0cc45" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13401324508124100449" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4022392883937980872" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15095077397828581772" + } + } + ] + } + } + ] + }, + "cborHex": "bf08d87e9f41a641fd43b0cc45ff1bb9fb11a30a793761d8669f1b37d26904322eb1c89f41fc1bfffffffffffffffa1bd17c7cea8a99b98cffffff", + "cborBytes": [ + 191, 8, 216, 126, 159, 65, 166, 65, 253, 67, 176, 204, 69, 255, 27, 185, 251, 17, 163, 10, 121, 55, 97, 216, 102, + 159, 27, 55, 210, 105, 4, 50, 46, 177, 200, 159, 65, 252, 27, 255, 255, 255, 255, 255, 255, 255, 250, 27, 209, + 124, 124, 234, 138, 153, 185, 140, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2023, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6079897069930539452" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "42" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5597191362173889587" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b59d928e078c5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3581557505021602142" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11020978746392791313" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9060635817468827061" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11447902759763795382" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf87246360da" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12122732926812604291" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5930498204699779723" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15384300791682051101" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7765519999579247504" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "658a0f6d" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14055410015605139324" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13919486384026611617" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17960443648220770989" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3096727160921568697" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7215327539034749845" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15446352256179041445" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17168395105088122138" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e688e1331c7bcd8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6738216719554825861" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5460222c2425e9bcbf41421b4dad37e382426c3347b59d928e078c5c1b31b43f932d72695eff1b98f261c737df49111b7dbdd8454b6915b51b9edf1ee80aef5db646bf87246360da1ba83c995e3198c783bf1b524d5cb23038e28b1bd580040f7df82c1d1b6bc4ab4bcf1cd39044658a0f6dff1bc30ed8f0c09ca77c1bc12bf31e1fcaefa11bf9405056ec9eb2adbf1b2af9c8f21908b5b91b6421fe2b16427b951bd65c7789e91af4a51bee426462d2552d1a480e688e1331c7bcd81b5d82f467e4a9ce85ffff", + "cborBytes": [ + 191, 27, 84, 96, 34, 44, 36, 37, 233, 188, 191, 65, 66, 27, 77, 173, 55, 227, 130, 66, 108, 51, 71, 181, 157, 146, + 142, 7, 140, 92, 27, 49, 180, 63, 147, 45, 114, 105, 94, 255, 27, 152, 242, 97, 199, 55, 223, 73, 17, 27, 125, + 189, 216, 69, 75, 105, 21, 181, 27, 158, 223, 30, 232, 10, 239, 93, 182, 70, 191, 135, 36, 99, 96, 218, 27, 168, + 60, 153, 94, 49, 152, 199, 131, 191, 27, 82, 77, 92, 178, 48, 56, 226, 139, 27, 213, 128, 4, 15, 125, 248, 44, 29, + 27, 107, 196, 171, 75, 207, 28, 211, 144, 68, 101, 138, 15, 109, 255, 27, 195, 14, 216, 240, 192, 156, 167, 124, + 27, 193, 43, 243, 30, 31, 202, 239, 161, 27, 249, 64, 80, 86, 236, 158, 178, 173, 191, 27, 42, 249, 200, 242, 25, + 8, 181, 185, 27, 100, 33, 254, 43, 22, 66, 123, 149, 27, 214, 92, 119, 137, 233, 26, 244, 165, 27, 238, 66, 100, + 98, 210, 85, 45, 26, 72, 14, 104, 142, 19, 49, 199, 188, 216, 27, 93, 130, 244, 103, 228, 169, 206, 133, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2024, + "sample": { + "_tag": "ByteArray", + "bytearray": "3667791032" + }, + "cborHex": "453667791032", + "cborBytes": [69, 54, 103, 121, 16, 50], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2025, + "sample": { + "_tag": "ByteArray", + "bytearray": "1ee8383e1772" + }, + "cborHex": "461ee8383e1772", + "cborBytes": [70, 30, 232, 56, 62, 23, 114], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2026, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5927024232285174568" + } + }, + "cborHex": "1b52410522f47d7b28", + "cborBytes": [27, 82, 65, 5, 34, 244, 125, 123, 40], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2027, + "sample": { + "_tag": "ByteArray", + "bytearray": "496e05fb01f8c60002878b" + }, + "cborHex": "4b496e05fb01f8c60002878b", + "cborBytes": [75, 73, 110, 5, 251, 1, 248, 198, 0, 2, 135, 139], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2028, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9842460684163849556" + } + }, + "cborHex": "1b889771d83b559d54", + "cborBytes": [27, 136, 151, 113, 216, 59, 85, 157, 84], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2029, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2565926512668629127" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1819332611587733198" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4141920952524970506" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8147597064220941700" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e0f41056a4d1f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "295742424316577217" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18122755335819773891" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b239c0091835ed8879f1b193f915ef9f876ce1b397b0f2956ff9a0a1b7112145cb1e79d84bf474e0f41056a4d1f1b041ab02b026705c141e81bfb80f5f59eda47c3ffffff", + "cborBytes": [ + 216, 102, 159, 27, 35, 156, 0, 145, 131, 94, 216, 135, 159, 27, 25, 63, 145, 94, 249, 248, 118, 206, 27, 57, 123, + 15, 41, 86, 255, 154, 10, 27, 113, 18, 20, 92, 177, 231, 157, 132, 191, 71, 78, 15, 65, 5, 106, 77, 31, 27, 4, 26, + 176, 43, 2, 103, 5, 193, 65, 232, 27, 251, 128, 245, 245, 158, 218, 71, 195, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2030, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9340743211147777971" + } + }, + "cborHex": "1b81a0fc760e9ad7b3", + "cborBytes": [27, 129, 160, 252, 118, 14, 154, 215, 179], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2031, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffff4ff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2032, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3601649408660847589" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fde1444dfeb1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5159921125250686734" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eafab1f0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6141604387472606037" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfbeb03aed393069561a53fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10301656325192331466" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15381533272721396902" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13018747758568556961" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11014431216835577247" + } + } + } + ] + } + ] + }, + "cborHex": "d87b9fbf1b31fba10e08b9bbe546fde1444dfeb11b479bb8eccb99df0e44eafab1f01b553b5ca69a4903554cdfbeb03aed393069561a53fa1b8ef6d5d8e53eb0ca1bd5762f04456914a61bb4abe21c31e449a11b98db1ed5b275459fffff", + "cborBytes": [ + 216, 123, 159, 191, 27, 49, 251, 161, 14, 8, 185, 187, 229, 70, 253, 225, 68, 77, 254, 177, 27, 71, 155, 184, 236, + 203, 153, 223, 14, 68, 234, 250, 177, 240, 27, 85, 59, 92, 166, 154, 73, 3, 85, 76, 223, 190, 176, 58, 237, 57, + 48, 105, 86, 26, 83, 250, 27, 142, 246, 213, 216, 229, 62, 176, 202, 27, 213, 118, 47, 4, 69, 105, 20, 166, 27, + 180, 171, 226, 28, 49, 228, 73, 161, 27, 152, 219, 30, 213, 178, 117, 69, 159, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2033, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dea68900f46e2cdaad3d25" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16687996450807411903" + } + } + } + ] + }, + "cborHex": "bf4bdea68900f46e2cdaad3d251be797ac5aef5af4bfff", + "cborBytes": [ + 191, 75, 222, 166, 137, 0, 244, 110, 44, 218, 173, 61, 37, 27, 231, 151, 172, 90, 239, 90, 244, 191, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2034, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15748835145752455693" + } + }, + "cborHex": "1bda8f1a1fc8c32a0d", + "cborBytes": [27, 218, 143, 26, 31, 200, 195, 42, 13], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2035, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e5096" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11745d007edc18cf281f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf430e50961bfffffffffffffff04a11745d007edc18cf281fd9050580ff", + "cborBytes": [ + 191, 67, 14, 80, 150, 27, 255, 255, 255, 255, 255, 255, 255, 240, 74, 17, 116, 93, 0, 126, 220, 24, 207, 40, 31, + 217, 5, 5, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2036, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8514547592360491488" + } + }, + "cborHex": "1b7629bfec59cdf9e0", + "cborBytes": [27, 118, 41, 191, 236, 89, 205, 249, 224], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2037, + "sample": { + "_tag": "ByteArray", + "bytearray": "4d4d6d" + }, + "cborHex": "434d4d6d", + "cborBytes": [67, 77, 77, 109], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2038, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1167392991731494659" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33e1156bdf1f139d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2107624773946422205" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3265243380396405242" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eae9f5485c831a64c4" + }, + { + "_tag": "ByteArray", + "bytearray": "8f584ae61c66b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15732709091871016379" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6208571678490238471" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "555467" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12185526680194841533" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16305957557222624234" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10538433236585491543" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0d937f6f1f43" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4048114430553072329" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14618484761313358355" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b30d6956312180f8a21444" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12349406051598527214" + } + } + ] + }, + "cborHex": "d87d9fd8669f1b103369bda96faf039fbf4833e1156bdf1f139d1b1d3fc990b2e3b3bdffa0d8669f1b2d50798df1b931fa9f49eae9f5485c831a64c4478f584ae61c66b71bda55cf904787c5bbffffffffd8669f1b5629470c12f61e079f9f435554671ba91baff4360efbbd1be24a660170d9cbeaff9f1b9240093193d92c57ff460d937f6f1f431b382dcaa0733fa2c9d8669f1bcadf4a70388b32139f4bb30d6956312180f8a21444ffffffff1bab61e75fbc96eaeeff", + "cborBytes": [ + 216, 125, 159, 216, 102, 159, 27, 16, 51, 105, 189, 169, 111, 175, 3, 159, 191, 72, 51, 225, 21, 107, 223, 31, 19, + 157, 27, 29, 63, 201, 144, 178, 227, 179, 189, 255, 160, 216, 102, 159, 27, 45, 80, 121, 141, 241, 185, 49, 250, + 159, 73, 234, 233, 245, 72, 92, 131, 26, 100, 196, 71, 143, 88, 74, 230, 28, 102, 183, 27, 218, 85, 207, 144, 71, + 135, 197, 187, 255, 255, 255, 255, 216, 102, 159, 27, 86, 41, 71, 12, 18, 246, 30, 7, 159, 159, 67, 85, 84, 103, + 27, 169, 27, 175, 244, 54, 14, 251, 189, 27, 226, 74, 102, 1, 112, 217, 203, 234, 255, 159, 27, 146, 64, 9, 49, + 147, 217, 44, 87, 255, 70, 13, 147, 127, 111, 31, 67, 27, 56, 45, 202, 160, 115, 63, 162, 201, 216, 102, 159, 27, + 202, 223, 74, 112, 56, 139, 50, 19, 159, 75, 179, 13, 105, 86, 49, 33, 128, 248, 162, 20, 68, 255, 255, 255, 255, + 27, 171, 97, 231, 95, 188, 150, 234, 238, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2039, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9053862371827909620" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15687825725186196445" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7da5c7db961403f49fbf0e09121bd9b65a611ff543ddffffff", + "cborBytes": [ + 216, 102, 159, 27, 125, 165, 199, 219, 150, 20, 3, 244, 159, 191, 14, 9, 18, 27, 217, 182, 90, 97, 31, 245, 67, + 221, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2040, + "sample": { + "_tag": "ByteArray", + "bytearray": "0139cec24b949108ca" + }, + "cborHex": "490139cec24b949108ca", + "cborBytes": [73, 1, 57, 206, 194, 75, 148, 145, 8, 202], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2041, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5488" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9560c8726db4c87743d0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "983f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17168582238098890642" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4d34b31e9b05e80473f044" + } + ] + }, + "cborHex": "9fbf4254884a9560c8726db4c87743d042983f1bee430e951ef71f92ff4b4d34b31e9b05e80473f044ff", + "cborBytes": [ + 159, 191, 66, 84, 136, 74, 149, 96, 200, 114, 109, 180, 200, 119, 67, 208, 66, 152, 63, 27, 238, 67, 14, 149, 30, + 247, 31, 146, 255, 75, 77, 52, 179, 30, 155, 5, 232, 4, 115, 240, 68, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2042, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15554718644669079526" + } + }, + "cborHex": "1bd7dd7631e4a55fe6", + "cborBytes": [27, 215, 221, 118, 49, 228, 165, 95, 230], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2043, + "sample": { + "_tag": "ByteArray", + "bytearray": "018dfa" + }, + "cborHex": "43018dfa", + "cborBytes": [67, 1, 141, 250], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2044, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "61dd50e4cedd0a81f7a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71e4f7f8a072cb7c316d81" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "694ae658f8ddb8ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "178cb800d42309" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "000603ff5a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17431092169324937965" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14615656633552177327" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9dba5a21004" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28147dde565673db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "baab389fc52c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d8af80fae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5bd433b1cd0932431" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5650441988724902848" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0dc86a72" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "557630768bdea8eaf8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a892ad2455cdb16e1811" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aeaf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6bde" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b82b686f2cc89122" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7a304" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba3eaa0e95c1dc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2492347936506562673" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "488366" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "815607981531466761" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15648304689791653925" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2068917544731658060" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4750157298045526421" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f6fa4267bf42f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5533072482915883581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8012157114263447257" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15697631227193115139" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7781237463910463097" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16536105145246525472" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14351434816172179529" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf4a61dd50e4cedd0a81f7a44b71e4f7f8a072cb7c316d8148694ae658f8ddb8ad47178cb800d42309ff45000603ff5ad8669f1bffffffffffffffec9f1bf1e7adf95fb4c2edbf424b101bcad53e4569f588af46a9dba5a210044828147dde565673db46baab389fc52c452d8af80fae49d5bd433b1cd09324311b4e6a670d29e64bc042de87440dc86a72ffbf49557630768bdea8eaf84aa892ad2455cdb16e181142aeaf426bde48b82b686f2cc8912243b7a30447ba3eaa0e95c1dc1b2296993e4426c871ff9f43488366ffbf1b0b519f234f280c091bd929f235041c58251b1cb6458b9b4dc74c41401b41ebf2e5293ba195472f6fa4267bf42f1b4cc96c1b94b09a3d1b6f30e671f84aa6d91bd9d9306e77ecc2031b6bfc823f255836791be57c0c047eeda8201bc72a89ed9b1dc049ffffffff", + "cborBytes": [ + 159, 191, 74, 97, 221, 80, 228, 206, 221, 10, 129, 247, 164, 75, 113, 228, 247, 248, 160, 114, 203, 124, 49, 109, + 129, 72, 105, 74, 230, 88, 248, 221, 184, 173, 71, 23, 140, 184, 0, 212, 35, 9, 255, 69, 0, 6, 3, 255, 90, 216, + 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 27, 241, 231, 173, 249, 95, 180, 194, 237, 191, 66, 75, + 16, 27, 202, 213, 62, 69, 105, 245, 136, 175, 70, 169, 219, 165, 162, 16, 4, 72, 40, 20, 125, 222, 86, 86, 115, + 219, 70, 186, 171, 56, 159, 197, 44, 69, 45, 138, 248, 15, 174, 73, 213, 189, 67, 59, 28, 208, 147, 36, 49, 27, + 78, 106, 103, 13, 41, 230, 75, 192, 66, 222, 135, 68, 13, 200, 106, 114, 255, 191, 73, 85, 118, 48, 118, 139, 222, + 168, 234, 248, 74, 168, 146, 173, 36, 85, 205, 177, 110, 24, 17, 66, 174, 175, 66, 107, 222, 72, 184, 43, 104, + 111, 44, 200, 145, 34, 67, 183, 163, 4, 71, 186, 62, 170, 14, 149, 193, 220, 27, 34, 150, 153, 62, 68, 38, 200, + 113, 255, 159, 67, 72, 131, 102, 255, 191, 27, 11, 81, 159, 35, 79, 40, 12, 9, 27, 217, 41, 242, 53, 4, 28, 88, + 37, 27, 28, 182, 69, 139, 155, 77, 199, 76, 65, 64, 27, 65, 235, 242, 229, 41, 59, 161, 149, 71, 47, 111, 164, 38, + 123, 244, 47, 27, 76, 201, 108, 27, 148, 176, 154, 61, 27, 111, 48, 230, 113, 248, 74, 166, 217, 27, 217, 217, 48, + 110, 119, 236, 194, 3, 27, 107, 252, 130, 63, 37, 88, 54, 121, 27, 229, 124, 12, 4, 126, 237, 168, 32, 27, 199, + 42, 137, 237, 155, 29, 192, 73, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2045, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0dd670a413cb580af3b3622e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "795119516442540584" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41d8ef9a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16482600670141598669" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5abb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff47" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6830f893828a1399c39ee6f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee918f530f549b5e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84621239" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "409ef6162e9a7d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bca1b30c1c949dfd8f90d3b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd7a" + } + } + ] + } + ] + }, + "cborHex": "9fbf4c0dd670a413cb580af3b3622e1b0b08d4fccb89ba284441d8ef9a1be4bdf5fb1e67cbcd425abb42ff474c6830f893828a1399c39ee6f848ee918f530f549b5e448462123947409ef6162e9a7d4cbca1b30c1c949dfd8f90d3b742dd7affff", + "cborBytes": [ + 159, 191, 76, 13, 214, 112, 164, 19, 203, 88, 10, 243, 179, 98, 46, 27, 11, 8, 212, 252, 203, 137, 186, 40, 68, + 65, 216, 239, 154, 27, 228, 189, 245, 251, 30, 103, 203, 205, 66, 90, 187, 66, 255, 71, 76, 104, 48, 248, 147, + 130, 138, 19, 153, 195, 158, 230, 248, 72, 238, 145, 143, 83, 15, 84, 155, 94, 68, 132, 98, 18, 57, 71, 64, 158, + 246, 22, 46, 154, 125, 76, 188, 161, 179, 12, 28, 148, 157, 253, 143, 144, 211, 183, 66, 221, 122, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2046, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f0d1bffffffffffffffeea0ff", + "cborBytes": [159, 13, 27, 255, 255, 255, 255, 255, 255, 255, 238, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2047, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [] + }, + "cborHex": "d8669f1bffffffffffffffec80ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2048, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13343627359663225791" + }, + "fields": [] + }, + "cborHex": "d8669f1bb92e1662d3e8fbbf80ff", + "cborBytes": [216, 102, 159, 27, 185, 46, 22, 98, 211, 232, 251, 191, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2049, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11431974384127434071" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9747" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2296481562827439221" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ad5c32e72ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0748372dc9e1b40a4" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9fd8669f1bffffffffffffffed9f1b9ea688221747dd57ffffbf4297471b1fdebdd069903c75469ad5c32e72ed49f0748372dc9e1b40a4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 237, 159, 27, 158, 166, 136, 34, 23, 71, 221, 87, 255, 255, 191, 66, 151, 71, 27, 31, 222, 189, 208, 105, + 144, 60, 117, 70, 154, 213, 195, 46, 114, 237, 73, 240, 116, 131, 114, 220, 158, 27, 64, 164, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2050, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6e6ea0cb00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15344980438076584655" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4188243325096876608" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03168c9fd740ba9d954202" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6520851470184016830" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d6e5bfd0ddb6c70829473" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6795888572882889514" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "318e046d4a753858cc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7875235973187772021" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8032980859141435644" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2047979438969559455" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10685163138100258677" + } + } + ] + } + ] + }, + "cborHex": "9f456e6ea0cb001bd4f4526840df72cf9f80bf1b3a1fa11d294cda404b03168c9fd740ba9d9542021b5a7eb7dcf966ebbe4b4d6e5bfd0ddb6c708294731b5e4fd8a69fd22b2a49318e046d4a753858cc1b6d4a7564903c1e751b6f7ae187e4a330fcffffd8669f1b1c6be272f715999f9f1b94495342fd906775ffffff", + "cborBytes": [ + 159, 69, 110, 110, 160, 203, 0, 27, 212, 244, 82, 104, 64, 223, 114, 207, 159, 128, 191, 27, 58, 31, 161, 29, 41, + 76, 218, 64, 75, 3, 22, 140, 159, 215, 64, 186, 157, 149, 66, 2, 27, 90, 126, 183, 220, 249, 102, 235, 190, 75, + 77, 110, 91, 253, 13, 219, 108, 112, 130, 148, 115, 27, 94, 79, 216, 166, 159, 210, 43, 42, 73, 49, 142, 4, 109, + 74, 117, 56, 88, 204, 27, 109, 74, 117, 100, 144, 60, 30, 117, 27, 111, 122, 225, 135, 228, 163, 48, 252, 255, + 255, 216, 102, 159, 27, 28, 107, 226, 114, 247, 21, 153, 159, 159, 27, 148, 73, 83, 66, 253, 144, 103, 117, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2051, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "434766041610031873" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2694748409979478893" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e646" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7488113958245321918" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "854ce1e52483a264" + } + ] + }, + "cborHex": "9fbf1b060899694e9193011b2565ab66c7e0236d42e6461b67eb1ff8a6db4cbeff48854ce1e52483a264ff", + "cborBytes": [ + 159, 191, 27, 6, 8, 153, 105, 78, 145, 147, 1, 27, 37, 101, 171, 102, 199, 224, 35, 109, 66, 230, 70, 27, 103, + 235, 31, 248, 166, 219, 76, 190, 255, 72, 133, 76, 225, 229, 36, 131, 162, 100, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2052, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15125302550431541658" + } + }, + "cborHex": "1bd1e7de8846c8299a", + "cborBytes": [27, 209, 231, 222, 136, 70, 200, 41, 154], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2053, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4636018808372723283" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9448886342932300267" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "59c6c94ab55542d5b515" + } + ] + }, + "cborHex": "9fd8669f1b4056728b2515fe539f1b83213011098501ebffff4a59c6c94ab55542d5b515ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 64, 86, 114, 139, 37, 21, 254, 83, 159, 27, 131, 33, 48, 17, 9, 133, 1, 235, 255, 255, 74, + 89, 198, 201, 74, 181, 85, 66, 213, 181, 21, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2054, + "sample": { + "_tag": "ByteArray", + "bytearray": "c5e00a038902d01ed0a6" + }, + "cborHex": "4ac5e00a038902d01ed0a6", + "cborBytes": [74, 197, 224, 10, 3, 137, 2, 208, 30, 208, 166], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2055, + "sample": { + "_tag": "ByteArray", + "bytearray": "8a7e30cddcc97b823bb7" + }, + "cborHex": "4a8a7e30cddcc97b823bb7", + "cborBytes": [74, 138, 126, 48, 205, 220, 201, 123, 130, 59, 183], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2056, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15531984436722027630" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c2f79f6fa0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16474579994740333152" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8839476561640973205" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6305300180087326016" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a436fd04484ae3135c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11632297834591440491" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13191172508075225218" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bd78cb18d9fb64c6e9f45c2f79f6fa0d8669f1be4a177381a411a609fa0ffff1b7aac211969006395bf1b5780ed1b5c4fc54049a436fd04484ae3135c1ba16e3940005e4e6b1bb71075819ab8f082ffffff", + "cborBytes": [ + 216, 102, 159, 27, 215, 140, 177, 141, 159, 182, 76, 110, 159, 69, 194, 247, 159, 111, 160, 216, 102, 159, 27, + 228, 161, 119, 56, 26, 65, 26, 96, 159, 160, 255, 255, 27, 122, 172, 33, 25, 105, 0, 99, 149, 191, 27, 87, 128, + 237, 27, 92, 79, 197, 64, 73, 164, 54, 253, 4, 72, 74, 227, 19, 92, 27, 161, 110, 57, 64, 0, 94, 78, 107, 27, 183, + 16, 117, 129, 154, 184, 240, 130, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2057, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16076074019547824005" + }, + "fields": [] + }, + "cborHex": "d8669f1bdf19b0256608bf8580ff", + "cborBytes": [216, 102, 159, 27, 223, 25, 176, 37, 102, 8, 191, 133, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2058, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c639958b7490498fd62362" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14017835081982386355" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10731930368358329724" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18421731610493971316" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "ByteArray", + "bytearray": "36c50f623681f9" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "36" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f168738f2ded135e9a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "403a36" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0304" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2e" + } + ] + }, + "cborHex": "9fd905029f4bc639958b7490498fd623629f41361bc2895abcc591a0b3ff1b94ef79cf5039ad7ca0d8669f1bffa7234c1713eb749f114736c50f623681f9ffffff80bf413649f168738f2ded135e9a43403a36420304ff412eff", + "cborBytes": [ + 159, 217, 5, 2, 159, 75, 198, 57, 149, 139, 116, 144, 73, 143, 214, 35, 98, 159, 65, 54, 27, 194, 137, 90, 188, + 197, 145, 160, 179, 255, 27, 148, 239, 121, 207, 80, 57, 173, 124, 160, 216, 102, 159, 27, 255, 167, 35, 76, 23, + 19, 235, 116, 159, 17, 71, 54, 197, 15, 98, 54, 129, 249, 255, 255, 255, 128, 191, 65, 54, 73, 241, 104, 115, 143, + 45, 237, 19, 94, 154, 67, 64, 58, 54, 66, 3, 4, 255, 65, 46, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2059, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "300064030846395541" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11686475270669165102" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3877051944564401041" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3475645683278112647" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6118085971103162351" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b60e8389a09611c7" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7768471879812069008" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2852074975413628706" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12614370097941109345" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3814524547081488590" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17491963238400361664" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5244025948470589090" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd3284d5b6430715e8c83c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13240036491614867945" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13737641134159542841" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04c3" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3018259029532826399" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f6613512" + }, + { + "_tag": "ByteArray", + "bytearray": "a7a99a7539deb56ae7a4d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14697337911069257104" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55a1d71a2c" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4e6760821bd18dfa27" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7044037041990229147" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12901633635305205616" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "791c06ce88cc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "093a7196076b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8806696624367847672" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3935a3b594228b222f07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17735262598427621343" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17877184817631728757" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c80b69789d21857b9920b3" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f80bf1b042a0aa57078a4951ba22eb357509f622e1b35ce0e33bb7fa3911b303bf9558ce967871b54e7cec694e79fef48b60e8389a09611c7ffd8669f1b6bcf2803fbcf36909f1b27949b14464f6f221baf0f3ec53116da61bf1b34efe9dd87ccc8ce1bf2bfefe3910b84c01b48c685d0eb8536a24bfd3284d5b6430715e8c83c1bb7be0f0a57e9d1e941721bbea5e7d38d5fba394204c3ffd8669f1b29e302988f6b5b1f9f44f66135124ba7a99a7539deb56ae7a4d51bcbf76ef5d52a2d904555a1d71a2cffffffffa09f494e6760821bd18dfa27d8669f1b61c1725e68855c9b9f1bb30bcf6f7e992f70ffff46791c06ce88ccbf46093a7196076b1b7a37abeb8413c8f84a3935a3b594228b222f071bf6204f5e298cb7dfffbf1bf81884dfcef214754bc80b69789d21857b9920b3ffffff", + "cborBytes": [ + 159, 128, 191, 27, 4, 42, 10, 165, 112, 120, 164, 149, 27, 162, 46, 179, 87, 80, 159, 98, 46, 27, 53, 206, 14, 51, + 187, 127, 163, 145, 27, 48, 59, 249, 85, 140, 233, 103, 135, 27, 84, 231, 206, 198, 148, 231, 159, 239, 72, 182, + 14, 131, 137, 160, 150, 17, 199, 255, 216, 102, 159, 27, 107, 207, 40, 3, 251, 207, 54, 144, 159, 27, 39, 148, + 155, 20, 70, 79, 111, 34, 27, 175, 15, 62, 197, 49, 22, 218, 97, 191, 27, 52, 239, 233, 221, 135, 204, 200, 206, + 27, 242, 191, 239, 227, 145, 11, 132, 192, 27, 72, 198, 133, 208, 235, 133, 54, 162, 75, 253, 50, 132, 213, 182, + 67, 7, 21, 232, 200, 60, 27, 183, 190, 15, 10, 87, 233, 209, 233, 65, 114, 27, 190, 165, 231, 211, 141, 95, 186, + 57, 66, 4, 195, 255, 216, 102, 159, 27, 41, 227, 2, 152, 143, 107, 91, 31, 159, 68, 246, 97, 53, 18, 75, 167, 169, + 154, 117, 57, 222, 181, 106, 231, 164, 213, 27, 203, 247, 110, 245, 213, 42, 45, 144, 69, 85, 161, 215, 26, 44, + 255, 255, 255, 255, 160, 159, 73, 78, 103, 96, 130, 27, 209, 141, 250, 39, 216, 102, 159, 27, 97, 193, 114, 94, + 104, 133, 92, 155, 159, 27, 179, 11, 207, 111, 126, 153, 47, 112, 255, 255, 70, 121, 28, 6, 206, 136, 204, 191, + 70, 9, 58, 113, 150, 7, 107, 27, 122, 55, 171, 235, 132, 19, 200, 248, 74, 57, 53, 163, 181, 148, 34, 139, 34, 47, + 7, 27, 246, 32, 79, 94, 41, 140, 183, 223, 255, 191, 27, 248, 24, 132, 223, 206, 242, 20, 117, 75, 200, 11, 105, + 120, 157, 33, 133, 123, 153, 32, 179, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2060, + "sample": { + "_tag": "ByteArray", + "bytearray": "aff501648e8a" + }, + "cborHex": "46aff501648e8a", + "cborBytes": [70, 175, 245, 1, 100, 142, 138], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2061, + "sample": { + "_tag": "ByteArray", + "bytearray": "3c6fdc675438e1e08acfb981" + }, + "cborHex": "4c3c6fdc675438e1e08acfb981", + "cborBytes": [76, 60, 111, 220, 103, 84, 56, 225, 224, 138, 207, 185, 129], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2062, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc07f8" + }, + "cborHex": "43fc07f8", + "cborBytes": [67, 252, 7, 248], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2063, + "sample": { + "_tag": "ByteArray", + "bytearray": "0001ff89" + }, + "cborHex": "440001ff89", + "cborBytes": [68, 0, 1, 255, 137], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2064, + "sample": { + "_tag": "ByteArray", + "bytearray": "7b1f45c1d3" + }, + "cborHex": "457b1f45c1d3", + "cborBytes": [69, 123, 31, 69, 193, 211], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2065, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4603095168489629465" + } + }, + "cborHex": "1b3fe17aaae1242719", + "cborBytes": [27, 63, 225, 122, 170, 225, 36, 39, 25], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2066, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6670237326089194810" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a199a09a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17442160291335179780" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10992001302030414520" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9f7539bd9dafe62ea6dcfb3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "791ca81b4c8a07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13579424269874349905" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8755c5607fa832d98f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "163ffcc1c12597" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "883d31048aaa70b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52d10dc177d981b94d28" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fa01b5c917181f5190d3a44a199a09a9f1bf20f005f58750e04bf1b988b6ef2322772b84cb9f7539bd9dafe62ea6dcfb347791ca81b4c8a071bbc73ce6d342dc751498755c5607fa832d98f47163ffcc1c1259748883d31048aaa70b14a52d10dc177d981b94d28ffffff", + "cborBytes": [ + 159, 160, 27, 92, 145, 113, 129, 245, 25, 13, 58, 68, 161, 153, 160, 154, 159, 27, 242, 15, 0, 95, 88, 117, 14, 4, + 191, 27, 152, 139, 110, 242, 50, 39, 114, 184, 76, 185, 247, 83, 155, 217, 218, 254, 98, 234, 109, 207, 179, 71, + 121, 28, 168, 27, 76, 138, 7, 27, 188, 115, 206, 109, 52, 45, 199, 81, 73, 135, 85, 197, 96, 127, 168, 50, 217, + 143, 71, 22, 63, 252, 193, 193, 37, 151, 72, 136, 61, 49, 4, 138, 170, 112, 177, 74, 82, 209, 13, 193, 119, 217, + 129, 185, 77, 40, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2067, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10992126346070295125" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05fab5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18141029536250757345" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca1b4466a9f4d57a858dce" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27d479916f07" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "46831146577ae3d23bfe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17682223400952850415" + } + } + ] + } + } + ] + }, + "cborHex": "bf14bf1b988be0ac47bb82554305fab51bfbc1e23f781880e11bfffffffffffffff21bffffffffffffffec0dff1bffffffffffffffec4bca1b4466a9f4d57a858dce1bffffffffffffffee091bfffffffffffffff1141bfffffffffffffff54627d479916f071bfffffffffffffff9d9050a9f4a46831146577ae3d23bfe1bf563e07face4e7efffff", + "cborBytes": [ + 191, 20, 191, 27, 152, 139, 224, 172, 71, 187, 130, 85, 67, 5, 250, 181, 27, 251, 193, 226, 63, 120, 24, 128, 225, + 27, 255, 255, 255, 255, 255, 255, 255, 242, 27, 255, 255, 255, 255, 255, 255, 255, 236, 13, 255, 27, 255, 255, + 255, 255, 255, 255, 255, 236, 75, 202, 27, 68, 102, 169, 244, 213, 122, 133, 141, 206, 27, 255, 255, 255, 255, + 255, 255, 255, 238, 9, 27, 255, 255, 255, 255, 255, 255, 255, 241, 20, 27, 255, 255, 255, 255, 255, 255, 255, 245, + 70, 39, 212, 121, 145, 111, 7, 27, 255, 255, 255, 255, 255, 255, 255, 249, 217, 5, 10, 159, 74, 70, 131, 17, 70, + 87, 122, 227, 210, 59, 254, 27, 245, 99, 224, 127, 172, 228, 231, 239, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2068, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1857583515616490116" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccefb9d9c6a53c18" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0f54c" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf41021b19c7765d94f1328448ccefb9d9c6a53c1843a0f54cffa0ff", + "cborBytes": [ + 159, 191, 65, 2, 27, 25, 199, 118, 93, 148, 241, 50, 132, 72, 204, 239, 185, 217, 198, 165, 60, 24, 67, 160, 245, + 76, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2069, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8149c90123" + }, + { + "_tag": "ByteArray", + "bytearray": "0062e204fb0074" + } + ] + }, + "cborHex": "d905019f458149c90123470062e204fb0074ff", + "cborBytes": [217, 5, 1, 159, 69, 129, 73, 201, 1, 35, 71, 0, 98, 226, 4, 251, 0, 116, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2070, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1334323631545080923" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10865008817776299423" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9946059372564033032" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e83ece6b39134" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10310126208639276319" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9fbf1b12847845f9a75c5b1b96c843f4590b0d9f1b8a07804d889fae08476e83ece6b39134ff1b8f14ed294f63951fffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 191, 27, 18, 132, 120, 69, 249, 167, 92, 91, 27, + 150, 200, 67, 244, 89, 11, 13, 159, 27, 138, 7, 128, 77, 136, 159, 174, 8, 71, 110, 131, 236, 230, 179, 145, 52, + 255, 27, 143, 20, 237, 41, 79, 99, 149, 31, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2071, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18032413576526648718" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8ce2b4b4f656ec33" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2200788429127374325" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15258267827733599721" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18157305752995842754" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8237991364393215233" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9fd8669f1bfa40009ba7cd558e9f488ce2b4b4f656ec339f1b1e8ac56a7fed55f51bd3c041bf5fd515e9ff1bfbfbb5617d794ac2ffff1b7253397fc964a501ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 216, 102, 159, 27, 250, 64, 0, 155, 167, 205, 85, + 142, 159, 72, 140, 226, 180, 180, 246, 86, 236, 51, 159, 27, 30, 138, 197, 106, 127, 237, 85, 245, 27, 211, 192, + 65, 191, 95, 213, 21, 233, 255, 27, 251, 251, 181, 97, 125, 121, 74, 194, 255, 255, 27, 114, 83, 57, 127, 201, + 100, 165, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2072, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3701553917581473181" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1417a666" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6246028408568432107" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12161808407237877117" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10417840912478835863" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a939fb8d80e862a22" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10860806025518798783" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2136977595100091831" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11800616914131774970" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11009212238145550822" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12875289486791236248" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7133425892431529966" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b335e8fad2666359d441417a6661b56ae59bea5b845eb1ba8c76c4f73c5dd7d1b90939b1d22d51497492a939fb8d80e862a221b96b95589857857bf1b1da811ccf0e8d5b71ba3c4368fa14a6dfa1b98c89433878c79e61bb2ae379270835a981b62ff050dfdf487eeffff", + "cborBytes": [ + 159, 191, 27, 51, 94, 143, 173, 38, 102, 53, 157, 68, 20, 23, 166, 102, 27, 86, 174, 89, 190, 165, 184, 69, 235, + 27, 168, 199, 108, 79, 115, 197, 221, 125, 27, 144, 147, 155, 29, 34, 213, 20, 151, 73, 42, 147, 159, 184, 216, + 14, 134, 42, 34, 27, 150, 185, 85, 137, 133, 120, 87, 191, 27, 29, 168, 17, 204, 240, 232, 213, 183, 27, 163, 196, + 54, 143, 161, 74, 109, 250, 27, 152, 200, 148, 51, 135, 140, 121, 230, 27, 178, 174, 55, 146, 112, 131, 90, 152, + 27, 98, 255, 5, 13, 253, 244, 135, 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2073, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8351211405189962654" + } + }, + "cborHex": "1b73e57686c289db9e", + "cborBytes": [27, 115, 229, 118, 134, 194, 137, 219, 158], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2074, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f400" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d29587980632c" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff09fbf42f400473d29587980632cffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 191, 66, 244, 0, 71, 61, 41, 88, 121, 128, + 99, 44, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2075, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11042537604291676176" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3836242867550464437" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e0c4e262dd919982ab41c54" + }, + { + "_tag": "ByteArray", + "bytearray": "877aac" + }, + { + "_tag": "ByteArray", + "bytearray": "30dbedcf0ba1482f" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7c1d561188b214" + }, + { + "_tag": "ByteArray", + "bytearray": "3d114fba" + }, + { + "_tag": "ByteArray", + "bytearray": "c925" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1789566026112015366" + } + } + ] + }, + "cborHex": "9f9fd8669f1b993ef971fab2c8109f1b353d12901078a9b54c4e0c4e262dd919982ab41c5443877aac4830dbedcf0ba1482fffffff477c1d561188b214443d114fba42c9251b18d5d0d1b8839c06ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 153, 62, 249, 113, 250, 178, 200, 16, 159, 27, 53, 61, 18, 144, 16, 120, 169, 181, + 76, 78, 12, 78, 38, 45, 217, 25, 152, 42, 180, 28, 84, 67, 135, 122, 172, 72, 48, 219, 237, 207, 11, 161, 72, 47, + 255, 255, 255, 71, 124, 29, 86, 17, 136, 178, 20, 68, 61, 17, 79, 186, 66, 201, 37, 27, 24, 213, 208, 209, 184, + 131, 156, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2076, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4131846997591052319" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16740964367222540036" + } + } + ] + }, + "cborHex": "9f1b395744f3edadd01f9f80ff1be853da6501c58704ff", + "cborBytes": [ + 159, 27, 57, 87, 68, 243, 237, 173, 208, 31, 159, 128, 255, 27, 232, 83, 218, 101, 1, 197, 135, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2077, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4087134938548157150" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10063760832206755060" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9826714314646106310" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6803339454204487266" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5138278545917012558" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9870370748119245447" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a23a785c73194c6d9ad5b2" + }, + { + "_tag": "ByteArray", + "bytearray": "a34db0fc6d1b4b26ea09" + } + ] + } + } + ] + }, + "cborHex": "bf1b38b86b9271403aded8669f1b8ba9a928242c54f49f1b885f809ae1ba30c61b5e6a51301e422662ffff1b474ed51d1e64ea4e9f1b88fa99e6630de2874ba23a785c73194c6d9ad5b24aa34db0fc6d1b4b26ea09ffff", + "cborBytes": [ + 191, 27, 56, 184, 107, 146, 113, 64, 58, 222, 216, 102, 159, 27, 139, 169, 169, 40, 36, 44, 84, 244, 159, 27, 136, + 95, 128, 154, 225, 186, 48, 198, 27, 94, 106, 81, 48, 30, 66, 38, 98, 255, 255, 27, 71, 78, 213, 29, 30, 100, 234, + 78, 159, 27, 136, 250, 153, 230, 99, 13, 226, 135, 75, 162, 58, 120, 92, 115, 25, 76, 109, 154, 213, 178, 74, 163, + 77, 176, 252, 109, 27, 75, 38, 234, 9, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2078, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12333083161761206863" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "95a084b76089" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10906429884312210953" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14778178567171229397" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4635490533658134952" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4750841107243049440" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d17b73451" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12340306714330016268" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bc" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8966326752642294965" + } + } + ] + }, + "cborHex": "d8669f1bab27e9caca20d24f9f4695a084b760899f1b975b6c31ee224e091bcd16a31bd38846d59f1b405492149a6109a81b41ee60d0e58ba1e0459d17b734511bab4193932f022a0cff41bcff1b7c6ecaad075364b5ffff", + "cborBytes": [ + 216, 102, 159, 27, 171, 39, 233, 202, 202, 32, 210, 79, 159, 70, 149, 160, 132, 183, 96, 137, 159, 27, 151, 91, + 108, 49, 238, 34, 78, 9, 27, 205, 22, 163, 27, 211, 136, 70, 213, 159, 27, 64, 84, 146, 20, 154, 97, 9, 168, 27, + 65, 238, 96, 208, 229, 139, 161, 224, 69, 157, 23, 183, 52, 81, 27, 171, 65, 147, 147, 47, 2, 42, 12, 255, 65, + 188, 255, 27, 124, 110, 202, 173, 7, 83, 100, 181, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2079, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16679869913398763001" + } + }, + "cborHex": "1be77acd4fffdbddf9", + "cborBytes": [27, 231, 122, 205, 79, 255, 219, 221, 249], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2080, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6944435205701886723" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d67ac92f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9635443459362798649" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de66c3c1f9fd7e99ba71" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fca3acffdf6638739571d99f" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "934b59dd9f9db6" + }, + { + "_tag": "ByteArray", + "bytearray": "a3b83911c9d589daf84774c2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10449030517229579446" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e8d15a14ada559" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17582687242973842845" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10901037367956357760" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c57ae9fe410055" + }, + { + "_tag": "ByteArray", + "bytearray": "8f7ecaa2bc9ade5377f238c9" + } + ] + }, + "cborHex": "9fd8669f1b605f9706c193e3039fbf44d67ac92f1b85b7f8c688ae3c394ade66c3c1f9fd7e99ba714cfca3acffdf6638739571d99fff47934b59dd9f9db64ca3b83911c9d589daf84774c21b910269e4e2af6cb647e8d15a14ada559ffff1bf40240e3f23f8d9d1b974843bae04c428047c57ae9fe4100554c8f7ecaa2bc9ade5377f238c9ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 96, 95, 151, 6, 193, 147, 227, 3, 159, 191, 68, 214, 122, 201, 47, 27, 133, 183, 248, 198, + 136, 174, 60, 57, 74, 222, 102, 195, 193, 249, 253, 126, 153, 186, 113, 76, 252, 163, 172, 255, 223, 102, 56, 115, + 149, 113, 217, 159, 255, 71, 147, 75, 89, 221, 159, 157, 182, 76, 163, 184, 57, 17, 201, 213, 137, 218, 248, 71, + 116, 194, 27, 145, 2, 105, 228, 226, 175, 108, 182, 71, 232, 209, 90, 20, 173, 165, 89, 255, 255, 27, 244, 2, 64, + 227, 242, 63, 141, 157, 27, 151, 72, 67, 186, 224, 76, 66, 128, 71, 197, 122, 233, 254, 65, 0, 85, 76, 143, 126, + 202, 162, 188, 154, 222, 83, 119, 242, 56, 201, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2081, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e6c9de471dca45f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2caccb6ac38a8a0c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "26ba81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6169904597295297489" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5aec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7dd25540e210543f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98122cbbb6ef917c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7bc00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38d07e1bdd" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5242599984691230706" + } + } + ] + }, + "cborHex": "9fbf481e6c9de471dca45f482caccb6ac38a8a0c4326ba811b559fe78aabd5f3d14236f7425aec41744179487dd25540e210543f4898122cbbb6ef917c43f7bc004538d07e1bddff1b48c174e8dafd37f2ff", + "cborBytes": [ + 159, 191, 72, 30, 108, 157, 228, 113, 220, 164, 95, 72, 44, 172, 203, 106, 195, 138, 138, 12, 67, 38, 186, 129, + 27, 85, 159, 231, 138, 171, 213, 243, 209, 66, 54, 247, 66, 90, 236, 65, 116, 65, 121, 72, 125, 210, 85, 64, 226, + 16, 84, 63, 72, 152, 18, 44, 187, 182, 239, 145, 124, 67, 247, 188, 0, 69, 56, 208, 126, 27, 221, 255, 27, 72, + 193, 116, 232, 218, 253, 55, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2082, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3429110980936564727" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + } + ] + }, + "cborHex": "bf1b2f96a644da1d7ff71bffffffffffffffebff", + "cborBytes": [191, 27, 47, 150, 166, 68, 218, 29, 127, 247, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2083, + "sample": { + "_tag": "ByteArray", + "bytearray": "c0388a97" + }, + "cborHex": "44c0388a97", + "cborBytes": [68, 192, 56, 138, 151], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2084, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15701980115654161235" + } + }, + "cborHex": "1bd9e8a3b8f7d03353", + "cborBytes": [27, 217, 232, 163, 184, 247, 208, 51, 83], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2085, + "sample": { + "_tag": "ByteArray", + "bytearray": "13b91f3946f60f2966" + }, + "cborHex": "4913b91f3946f60f2966", + "cborBytes": [73, 19, 185, 31, 57, 70, 246, 15, 41, 102], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2086, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1256b5490d5ef3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14120479611565782677" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11202121412729681731" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a5a5696d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15712298971089607797" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f8e286b0c0947d5a49540a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6076206764447027424" + } + }, + { + "_tag": "ByteArray", + "bytearray": "965ef97d457e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15242461721039516228" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ba9ea589" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3916683898635153404" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15821964342739065104" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7934d6" + }, + { + "_tag": "ByteArray", + "bytearray": "60217b58304fe0fbd3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2183354931402832218" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1799521953339195180" + } + }, + { + "_tag": "ByteArray", + "bytearray": "35fc42" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4274752292798832933" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8926512038713652189" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11217398116697368576" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "502c35aa3603f42e1488f5" + }, + { + "_tag": "ByteArray", + "bytearray": "482201d0daa12a" + }, + { + "_tag": "ByteArray", + "bytearray": "02ab1ff341e15b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12866225373262203857" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1a15" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2259920942685043870" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b126a2d9daf3c5fa9873" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3202476241041811809" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b179f8129184da3f131d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8426893084406181647" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "901332202621547765" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13820360735670488967" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be02d7b21947ca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14615681635619587490" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb3d6fd0a426de" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16697678807945540651" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7a25c3e" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6264819520359936921" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b9616e63e393" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f9f471256b5490d5ef3d8669f1bc3f60564a98636959f1b9b75ee12d08cb74344a5a5696d1bda0d4caab8881c75ffff9f4bf8e286b0c0947d5a49540a1b545305dbf0b0d0e046965ef97d457e1bd3881a2d610cb244ff44ba9ea589ff9fd8669f1b365adb411ba3effc9f1bdb92e8bdc9dbd910ffff437934d64960217b58304fe0fbd39f1b1e4cd5be00dcf95a1b18f92faeaa4cbf2c4335fc421b3b52f88fcb0fa1251b7be157678ec673ddffd8669f1b9bac3427a1e1e8009f4b502c35aa3603f42e1488f547482201d0daa12a4702ab1ff341e15b1bb28e03cf0d694bd1ffffff421a159fbf1b1f5cda1fb1353c9e4ab126a2d9daf3c5fa98731b2c717b2c7cece9614ab179f8129184da3f131d1b74f2569cd839ef0f1b0c822cdce1e0b4f51bbfcbc8dd9d654f8747be02d7b21947ca1bcad55502a94e45a247fb3d6fd0a426de1be7ba12686129742b44f7a25c3eff9f1b56f11c294cfcb399ffff46b9616e63e393ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 159, 71, 18, 86, 181, 73, 13, 94, 243, 216, 102, + 159, 27, 195, 246, 5, 100, 169, 134, 54, 149, 159, 27, 155, 117, 238, 18, 208, 140, 183, 67, 68, 165, 165, 105, + 109, 27, 218, 13, 76, 170, 184, 136, 28, 117, 255, 255, 159, 75, 248, 226, 134, 176, 192, 148, 125, 90, 73, 84, + 10, 27, 84, 83, 5, 219, 240, 176, 208, 224, 70, 150, 94, 249, 125, 69, 126, 27, 211, 136, 26, 45, 97, 12, 178, 68, + 255, 68, 186, 158, 165, 137, 255, 159, 216, 102, 159, 27, 54, 90, 219, 65, 27, 163, 239, 252, 159, 27, 219, 146, + 232, 189, 201, 219, 217, 16, 255, 255, 67, 121, 52, 214, 73, 96, 33, 123, 88, 48, 79, 224, 251, 211, 159, 27, 30, + 76, 213, 190, 0, 220, 249, 90, 27, 24, 249, 47, 174, 170, 76, 191, 44, 67, 53, 252, 66, 27, 59, 82, 248, 143, 203, + 15, 161, 37, 27, 123, 225, 87, 103, 142, 198, 115, 221, 255, 216, 102, 159, 27, 155, 172, 52, 39, 161, 225, 232, + 0, 159, 75, 80, 44, 53, 170, 54, 3, 244, 46, 20, 136, 245, 71, 72, 34, 1, 208, 218, 161, 42, 71, 2, 171, 31, 243, + 65, 225, 91, 27, 178, 142, 3, 207, 13, 105, 75, 209, 255, 255, 255, 66, 26, 21, 159, 191, 27, 31, 92, 218, 31, + 177, 53, 60, 158, 74, 177, 38, 162, 217, 218, 243, 197, 250, 152, 115, 27, 44, 113, 123, 44, 124, 236, 233, 97, + 74, 177, 121, 248, 18, 145, 132, 218, 63, 19, 29, 27, 116, 242, 86, 156, 216, 57, 239, 15, 27, 12, 130, 44, 220, + 225, 224, 180, 245, 27, 191, 203, 200, 221, 157, 101, 79, 135, 71, 190, 2, 215, 178, 25, 71, 202, 27, 202, 213, + 85, 2, 169, 78, 69, 162, 71, 251, 61, 111, 208, 164, 38, 222, 27, 231, 186, 18, 104, 97, 41, 116, 43, 68, 247, + 162, 92, 62, 255, 159, 27, 86, 241, 28, 41, 76, 252, 179, 153, 255, 255, 70, 185, 97, 110, 99, 227, 147, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2087, + "sample": { + "_tag": "ByteArray", + "bytearray": "9c1d01fe07048f5e051c8bfc" + }, + "cborHex": "4c9c1d01fe07048f5e051c8bfc", + "cborBytes": [76, 156, 29, 1, 254, 7, 4, 143, 94, 5, 28, 139, 252], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2088, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16039592645667846579" + } + }, + "cborHex": "1bde981487a2fff9b3", + "cborBytes": [27, 222, 152, 20, 135, 162, 255, 249, 179], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2089, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5728050972400760092" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "404676670555337641" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fba175cab1de7bee400abe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1882323115367320801" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14174442544392777670" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2444192659446166704" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4884386064482904263" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3052793661175455831" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1a29088d8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6462897361191536117" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1634c033d94" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13012952985824188180" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4052869221677322244" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e39a" + } + ] + }, + "cborHex": "d8669f1b4f7e2002c947351c9fbf1b059db349ad56b3a94bfba175cab1de7bee400abe1b1a1f5ae683f9cce11bc4b5bc650bb72fc61b21eb84461ce7f4b01b43c8d33f3f5f28c71b2a5db3a912ed605745e1a29088d81b59b0d2e879a185f546f1634c033d941bb4974bcb86e8d7141b383eaf158730d004ff42e39affff", + "cborBytes": [ + 216, 102, 159, 27, 79, 126, 32, 2, 201, 71, 53, 28, 159, 191, 27, 5, 157, 179, 73, 173, 86, 179, 169, 75, 251, + 161, 117, 202, 177, 222, 123, 238, 64, 10, 190, 27, 26, 31, 90, 230, 131, 249, 204, 225, 27, 196, 181, 188, 101, + 11, 183, 47, 198, 27, 33, 235, 132, 70, 28, 231, 244, 176, 27, 67, 200, 211, 63, 63, 95, 40, 199, 27, 42, 93, 179, + 169, 18, 237, 96, 87, 69, 225, 162, 144, 136, 216, 27, 89, 176, 210, 232, 121, 161, 133, 245, 70, 241, 99, 76, 3, + 61, 148, 27, 180, 151, 75, 203, 134, 232, 215, 20, 27, 56, 62, 175, 21, 135, 48, 208, 4, 255, 66, 227, 154, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2090, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbbb388133" + }, + "cborHex": "45fbbb388133", + "cborBytes": [69, 251, 187, 56, 129, 51], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2091, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10038272580301843040" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14903247433814230115" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8426665064308169225" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c12" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "169337105399361816" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff48" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9538851689781156049" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf42fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e032e13dabe664e97" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0435df518a1519e6a8" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3478922199636553569" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1b8b4f1bba0b6f6a601bced2f8948c3fc463bf1b74f1873ac7485a09421c12ffbf1b02599b333e9f311842ff481b8460cf12a68a58d143bf42fc496e032e13dabe664e97490435df518a1519e6a8ffd8669f1b30479d4ef68eaf6180ffff", + "cborBytes": [ + 159, 27, 139, 79, 27, 186, 11, 111, 106, 96, 27, 206, 210, 248, 148, 140, 63, 196, 99, 191, 27, 116, 241, 135, 58, + 199, 72, 90, 9, 66, 28, 18, 255, 191, 27, 2, 89, 155, 51, 62, 159, 49, 24, 66, 255, 72, 27, 132, 96, 207, 18, 166, + 138, 88, 209, 67, 191, 66, 252, 73, 110, 3, 46, 19, 218, 190, 102, 78, 151, 73, 4, 53, 223, 81, 138, 21, 25, 230, + 168, 255, 216, 102, 159, 27, 48, 71, 157, 78, 246, 142, 175, 97, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2092, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2103051128042892492" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28de6a9fa24bf4" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3027270089957171939" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8752599366059651604" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4142819730765358238" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12626923689743449889" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4185167732869449498" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc5020f43a3827da" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8271595456740511814" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2cb929974a8839d2cfbb" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13168490165068480985" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8196361679680595457" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3f" + } + ] + } + } + ] + }, + "cborHex": "bf1b1d2f89dbc77b2cccbf424e464728de6a9fa24bf4ff1b2a03061b8f0fe2e3d8669f1b79777ac00b4b721480ff1b397e409874bfa49e1baf3bd8320d1f7f211b3a14b3e10b1c471a48cc5020f43a3827da1b72ca9c3e3cc0d0469f4a2cb929974a8839d2cfbbff1bb6bfe0091521c1d99f1b71bf53857ffc6601413fffff", + "cborBytes": [ + 191, 27, 29, 47, 137, 219, 199, 123, 44, 204, 191, 66, 78, 70, 71, 40, 222, 106, 159, 162, 75, 244, 255, 27, 42, + 3, 6, 27, 143, 15, 226, 227, 216, 102, 159, 27, 121, 119, 122, 192, 11, 75, 114, 20, 128, 255, 27, 57, 126, 64, + 152, 116, 191, 164, 158, 27, 175, 59, 216, 50, 13, 31, 127, 33, 27, 58, 20, 179, 225, 11, 28, 71, 26, 72, 204, 80, + 32, 244, 58, 56, 39, 218, 27, 114, 202, 156, 62, 60, 192, 208, 70, 159, 74, 44, 185, 41, 151, 74, 136, 57, 210, + 207, 187, 255, 27, 182, 191, 224, 9, 21, 33, 193, 217, 159, 27, 113, 191, 83, 133, 127, 252, 102, 1, 65, 63, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2093, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8553735323985628794" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2677885727730686008" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16516769887008598485" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8275324328326902251" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbaae211d5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8371097252073944702" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15224436141668927187" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12628838316630995894" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8310898872110307405" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13525019461300503866" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12266282806712377648" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16888296534776748362" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14475782623746617300" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8780675084355714936" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd1a89" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "780720031756652109" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "85a1e7a45825a1c78e9c8c04" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3990585868217536837" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8832035389055178302" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17909010425171990604" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6214625362570811633" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "44d5fd90402fe33c" + }, + { + "_tag": "ByteArray", + "bytearray": "68" + }, + { + "_tag": "ByteArray", + "bytearray": "807eece30df36e9061" + }, + { + "_tag": "ByteArray", + "bytearray": "6b024df3a446" + }, + { + "_tag": "ByteArray", + "bytearray": "e1beef40e3f1231fe70115" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17370155280421640896" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e26495" + }, + { + "_tag": "ByteArray", + "bytearray": "74775fe853b3b7618396" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff1a37" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "085b4fb7e40bdef7ec80" + }, + { + "_tag": "ByteArray", + "bytearray": "f77ccb7cec" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6284511842110263036" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d19b72" + }, + { + "_tag": "ByteArray", + "bytearray": "839b80b32d6be08f" + }, + { + "_tag": "ByteArray", + "bytearray": "9da433b78ae8b143" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b76b4f8f520dfce7a9fbf1b2529c2e19e79d8381be5375ab3e00429d51b72d7dba1cf12b1eb45fbaae211d51b742c1c994a1db67e1bd348100221cb86d31baf42a589dca1f3b61b73563e7dbc54584d1bbbb2858a9b0fc53a1baa3a97392092a1301bea5f483868d4194a1bc8e44f99ae306fd4ffd8669f1b79db39779b253f789f43fd1a899f1b0ad5acbb81e30e4dff4c85a1e7a45825a1c78e9c8c04ffffd8669f1b376168b440ccd1459fd8669f1b7a91b1646850163e9f1bf88996187f24d84cffffd8669f1b563ec8d73c2a98f19f4844d5fd90402fe33c416849807eece30df36e9061466b024df3a4464be1beef40e3f1231fe70115ffffd8669f1bf10f30324ee85ac09f43e264954a74775fe853b3b7618396ffffffff9f9f43ff1a37ff4a085b4fb7e40bdef7ec8045f77ccb7cec809f1b573712393fb7cefc43d19b7248839b80b32d6be08f489da433b78ae8b143ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 118, 180, 248, 245, 32, 223, 206, 122, 159, 191, 27, 37, 41, 194, 225, 158, 121, 216, 56, 27, + 229, 55, 90, 179, 224, 4, 41, 213, 27, 114, 215, 219, 161, 207, 18, 177, 235, 69, 251, 170, 226, 17, 213, 27, 116, + 44, 28, 153, 74, 29, 182, 126, 27, 211, 72, 16, 2, 33, 203, 134, 211, 27, 175, 66, 165, 137, 220, 161, 243, 182, + 27, 115, 86, 62, 125, 188, 84, 88, 77, 27, 187, 178, 133, 138, 155, 15, 197, 58, 27, 170, 58, 151, 57, 32, 146, + 161, 48, 27, 234, 95, 72, 56, 104, 212, 25, 74, 27, 200, 228, 79, 153, 174, 48, 111, 212, 255, 216, 102, 159, 27, + 121, 219, 57, 119, 155, 37, 63, 120, 159, 67, 253, 26, 137, 159, 27, 10, 213, 172, 187, 129, 227, 14, 77, 255, 76, + 133, 161, 231, 164, 88, 37, 161, 199, 142, 156, 140, 4, 255, 255, 216, 102, 159, 27, 55, 97, 104, 180, 64, 204, + 209, 69, 159, 216, 102, 159, 27, 122, 145, 177, 100, 104, 80, 22, 62, 159, 27, 248, 137, 150, 24, 127, 36, 216, + 76, 255, 255, 216, 102, 159, 27, 86, 62, 200, 215, 60, 42, 152, 241, 159, 72, 68, 213, 253, 144, 64, 47, 227, 60, + 65, 104, 73, 128, 126, 236, 227, 13, 243, 110, 144, 97, 70, 107, 2, 77, 243, 164, 70, 75, 225, 190, 239, 64, 227, + 241, 35, 31, 231, 1, 21, 255, 255, 216, 102, 159, 27, 241, 15, 48, 50, 78, 232, 90, 192, 159, 67, 226, 100, 149, + 74, 116, 119, 95, 232, 83, 179, 183, 97, 131, 150, 255, 255, 255, 255, 159, 159, 67, 255, 26, 55, 255, 74, 8, 91, + 79, 183, 228, 11, 222, 247, 236, 128, 69, 247, 124, 203, 124, 236, 128, 159, 27, 87, 55, 18, 57, 63, 183, 206, + 252, 67, 209, 155, 114, 72, 131, 155, 128, 179, 45, 107, 224, 143, 72, 157, 164, 51, 183, 138, 232, 177, 67, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2094, + "sample": { + "_tag": "ByteArray", + "bytearray": "8df87d669721" + }, + "cborHex": "468df87d669721", + "cborBytes": [70, 141, 248, 125, 102, 151, 33], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2095, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17909397436344395213" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9fd8669f1bf88af6148e9965cd80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 216, 102, 159, 27, 248, 138, 246, 20, 142, 153, + 101, 205, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2096, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "319c86cc478ee052" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc7c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42f033d2308d87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce2f3a2403665c71b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2697974841487218998" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9fbf48319c86cc478ee05242cc7c4742f033d2308d8741c149ce2f3a2403665c71b91b257121d2e7c95936ffa0ff80ff", + "cborBytes": [ + 159, 159, 191, 72, 49, 156, 134, 204, 71, 142, 224, 82, 66, 204, 124, 71, 66, 240, 51, 210, 48, 141, 135, 65, 193, + 73, 206, 47, 58, 36, 3, 102, 92, 113, 185, 27, 37, 113, 33, 210, 231, 201, 89, 54, 255, 160, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2097, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4880667989039955085" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5fb2bc64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + }, + "cborHex": "bf001b43bb9dad5958bc8d445fb2bc6411ff", + "cborBytes": [191, 0, 27, 67, 187, 157, 173, 89, 88, 188, 141, 68, 95, 178, 188, 100, 17, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2098, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3703087151840267165" + } + }, + "cborHex": "1b3364022511c08b9d", + "cborBytes": [27, 51, 100, 2, 37, 17, 192, 139, 157], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2099, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2aeb9512" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1646850854715519545" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc5ea1bb5a6dafd1a5" + }, + { + "_tag": "ByteArray", + "bytearray": "fc2fced148d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15327412182020047669" + } + } + ] + } + } + ] + }, + "cborHex": "bf0b9f442aeb95121b16daca20815df23949fc5ea1bb5a6dafd1a546fc2fced148d51bd4b5e82be34cc335ffff", + "cborBytes": [ + 191, 11, 159, 68, 42, 235, 149, 18, 27, 22, 218, 202, 32, 129, 93, 242, 57, 73, 252, 94, 161, 187, 90, 109, 175, + 209, 165, 70, 252, 47, 206, 209, 72, 213, 27, 212, 181, 232, 43, 227, 76, 195, 53, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2100, + "sample": { + "_tag": "ByteArray", + "bytearray": "fdfe0104f903" + }, + "cborHex": "46fdfe0104f903", + "cborBytes": [70, 253, 254, 1, 4, 249, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2101, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4854759848855366017" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16101599715459105210" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5188869965672772151" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6168751797449095977" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4290055564932576275" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d9125e0055fe8bd0163" + }, + { + "_tag": "ByteArray", + "bytearray": "1bdaf29acab43cab303d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17492737377886426226" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6870903520387795452" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17212614115888012341" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3849" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff99f1b435f925c64da6981bf1bdf745fa19b7881ba1b480291bdf19e7237ffd8669f1b559bcf138a817b299f9f1b3b8956ce7e7e74134a6d9125e0055fe8bd01634a1bdaf29acab43cab303dffd8669f1bf2c2aff6f61e54729f1b5f5a5a5922b209fc1beedf7d5791611c35ffffffff423849ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 27, 67, 95, 146, 92, 100, 218, 105, 129, 191, 27, + 223, 116, 95, 161, 155, 120, 129, 186, 27, 72, 2, 145, 189, 241, 158, 114, 55, 255, 216, 102, 159, 27, 85, 155, + 207, 19, 138, 129, 123, 41, 159, 159, 27, 59, 137, 86, 206, 126, 126, 116, 19, 74, 109, 145, 37, 224, 5, 95, 232, + 189, 1, 99, 74, 27, 218, 242, 154, 202, 180, 60, 171, 48, 61, 255, 216, 102, 159, 27, 242, 194, 175, 246, 246, 30, + 84, 114, 159, 27, 95, 90, 90, 89, 34, 178, 9, 252, 27, 238, 223, 125, 87, 145, 97, 28, 53, 255, 255, 255, 255, 66, + 56, 73, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2102, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16205192306091078900" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7448204411779430845" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8303556767873623208" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "960601" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8368646158479893704" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18f86a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9164647327431998826" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "06fef9346c03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + } + } + ] + }, + "cborHex": "bf141be0e4688b2973b4f41b675d5673429c39bda01b733c28e2e165e4a8439606011b742367579721a4c84318f86a1b7f2f5e301b513d6ad9050a9f4606fef9346c0304ff1bfffffffffffffff39f03ffff", + "cborBytes": [ + 191, 20, 27, 224, 228, 104, 139, 41, 115, 180, 244, 27, 103, 93, 86, 115, 66, 156, 57, 189, 160, 27, 115, 60, 40, + 226, 225, 101, 228, 168, 67, 150, 6, 1, 27, 116, 35, 103, 87, 151, 33, 164, 200, 67, 24, 248, 106, 27, 127, 47, + 94, 48, 27, 81, 61, 106, 217, 5, 10, 159, 70, 6, 254, 249, 52, 108, 3, 4, 255, 27, 255, 255, 255, 255, 255, 255, + 255, 243, 159, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2103, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24dbbd0e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9203482337981414044" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5021273015375731043" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ed8e635e0105f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7fde0050908be222" + }, + { + "_tag": "ByteArray", + "bytearray": "359f7319df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2686135155247466539" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1462994234533753973" + } + }, + { + "_tag": "ByteArray", + "bytearray": "089d4e61c0921d1dc01c1523" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78036895193cf85a3a3d00d8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "18861bcec95b4cb86e" + }, + { + "_tag": "ByteArray", + "bytearray": "014a73ca89" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13539481921868538685" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2348705474223727176" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86bb7336" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b4b46d9c8612edb26378778" + } + } + ] + }, + "cborHex": "bf4424dbbd0ed8669f1b7fb9566c9bf6ba9c9f1b45af253421b99963ffff472ed8e635e0105f9f487fde0050908be22245359f7319df1b254711b12336c82b1b144d998149d434754c089d4e61c0921d1dc01c1523ff4c78036895193cf85a3a3d00d89f4918861bcec95b4cb86e45014a73ca891bbbe5e7129bcc233d1b2098472f511ee248ff4486bb73364c9b4b46d9c8612edb26378778ff", + "cborBytes": [ + 191, 68, 36, 219, 189, 14, 216, 102, 159, 27, 127, 185, 86, 108, 155, 246, 186, 156, 159, 27, 69, 175, 37, 52, 33, + 185, 153, 99, 255, 255, 71, 46, 216, 230, 53, 224, 16, 95, 159, 72, 127, 222, 0, 80, 144, 139, 226, 34, 69, 53, + 159, 115, 25, 223, 27, 37, 71, 17, 177, 35, 54, 200, 43, 27, 20, 77, 153, 129, 73, 212, 52, 117, 76, 8, 157, 78, + 97, 192, 146, 29, 29, 192, 28, 21, 35, 255, 76, 120, 3, 104, 149, 25, 60, 248, 90, 58, 61, 0, 216, 159, 73, 24, + 134, 27, 206, 201, 91, 76, 184, 110, 69, 1, 74, 115, 202, 137, 27, 187, 229, 231, 18, 155, 204, 35, 61, 27, 32, + 152, 71, 47, 81, 30, 226, 72, 255, 68, 134, 187, 115, 54, 76, 155, 75, 70, 217, 200, 97, 46, 219, 38, 55, 135, + 120, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2104, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11455751795234015997" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12669517143664001398" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9434a804d83c635712" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f4a02517f736ade3a1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6daae7be57c664e167c" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b9efb019005f78afd9fbf1bafd32ab757d08176499434a804d83c6357124a1f4a02517f736ade3a1b4ab6daae7be57c664e167cffffff", + "cborBytes": [ + 216, 102, 159, 27, 158, 251, 1, 144, 5, 247, 138, 253, 159, 191, 27, 175, 211, 42, 183, 87, 208, 129, 118, 73, + 148, 52, 168, 4, 216, 60, 99, 87, 18, 74, 31, 74, 2, 81, 127, 115, 106, 222, 58, 27, 74, 182, 218, 174, 123, 229, + 124, 102, 78, 22, 124, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2105, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbd181" + }, + "cborHex": "43fbd181", + "cborBytes": [67, 251, 209, 129], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2106, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b482b6d6d2" + }, + { + "_tag": "ByteArray", + "bytearray": "7b2800724ce04435e1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8724258681534304708" + } + }, + { + "_tag": "ByteArray", + "bytearray": "39fab8f8580478cef6f0" + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffeb9f45b482b6d6d2497b2800724ce04435e11b7912cb0c397851c44a39fab8f8580478cef6f0ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 69, 180, 130, 182, 214, 210, 73, 123, 40, 0, 114, 76, 224, + 68, 53, 225, 27, 121, 18, 203, 12, 57, 120, 81, 196, 74, 57, 250, 184, 248, 88, 4, 120, 206, 246, 240, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2107, + "sample": { + "_tag": "ByteArray", + "bytearray": "043b01cb" + }, + "cborHex": "44043b01cb", + "cborBytes": [68, 4, 59, 1, 203], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2108, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a7ae1e889e7cb39261705" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14030835743066856077" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "57671699" + }, + { + "_tag": "ByteArray", + "bytearray": "7ae194d4b8929e5a9e8cd8" + }, + { + "_tag": "ByteArray", + "bytearray": "d31981df88d4f9c7ab689a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4acf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3bd6fe1a43e0e67522656" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6dba" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ffefa0402c430e34934" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2138453749968308583" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "729c3568c5d32fa89d7a6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01fc1e32" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "835b53c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12996752470901565592" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac329c65e5e483" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12808461906471887923" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c10d9bf6c4d2fa6f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11826834475756481867" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14784807820970378693" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae666329" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7fed296dd87b791ee063cefd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddb8fbff212b5c4e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "309636263831996771" + } + } + } + ] + }, + "cborHex": "bf4b1a7ae1e889e7cb39261705d8669f1bc2b78ac50f5a9a8d9f44576716994b7ae194d4b8929e5a9e8cd84bd31981df88d4f9c7ab689affff424acf4be3bd6fe1a43e0e67522656426dbabf4a4ffefa0402c430e349341b1dad505b077689674b729c3568c5d32fa89d7a6b4401fc1e3244835b53c61bb45dbd8335c4a89847ac329c65e5e4831bb1c0cc3de661243348c10d9bf6c4d2fa6f1ba4215b4b60ceed4b42d5ea1bcd2e3061415b45c5ff44ae6663294c7fed296dd87b791ee063cefd48ddb8fbff212b5c4e1b044c0c8a9b490963ff", + "cborBytes": [ + 191, 75, 26, 122, 225, 232, 137, 231, 203, 57, 38, 23, 5, 216, 102, 159, 27, 194, 183, 138, 197, 15, 90, 154, 141, + 159, 68, 87, 103, 22, 153, 75, 122, 225, 148, 212, 184, 146, 158, 90, 158, 140, 216, 75, 211, 25, 129, 223, 136, + 212, 249, 199, 171, 104, 154, 255, 255, 66, 74, 207, 75, 227, 189, 111, 225, 164, 62, 14, 103, 82, 38, 86, 66, + 109, 186, 191, 74, 79, 254, 250, 4, 2, 196, 48, 227, 73, 52, 27, 29, 173, 80, 91, 7, 118, 137, 103, 75, 114, 156, + 53, 104, 197, 211, 47, 168, 157, 122, 107, 68, 1, 252, 30, 50, 68, 131, 91, 83, 198, 27, 180, 93, 189, 131, 53, + 196, 168, 152, 71, 172, 50, 156, 101, 229, 228, 131, 27, 177, 192, 204, 61, 230, 97, 36, 51, 72, 193, 13, 155, + 246, 196, 210, 250, 111, 27, 164, 33, 91, 75, 96, 206, 237, 75, 66, 213, 234, 27, 205, 46, 48, 97, 65, 91, 69, + 197, 255, 68, 174, 102, 99, 41, 76, 127, 237, 41, 109, 216, 123, 121, 30, 224, 99, 206, 253, 72, 221, 184, 251, + 255, 33, 43, 92, 78, 27, 4, 76, 12, 138, 155, 73, 9, 99, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2109, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27667aa6f1a3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7119173413010122337" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76c0152148cc15" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11439549979634922623" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d250058b1643f41354f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4cf7e4e432" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b972c4ef7fa9ef412be8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb8e1475" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "baf3bb5bd866ade9ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12d60681bc6f58" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6b0b2a50d428d0d59" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17094446717293488387" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7292802461188715782" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14749134209486031712" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13593093993799637600" + } + } + ] + }, + "cborHex": "d9050c9fbf4627667aa6f1a31b62cc628008dfa6614776c0152148cc151b9ec17218de77747f4a9d250058b1643f41354f454cf7e4e4324ab972c4ef7fa9ef412be844eb8e147549baf3bb5bd866ade9ad4712d60681bc6f5849c6b0b2a50d428d0d59414dffd8669f1bed3bacb8181ee9039fd8669f1b65353d33143f750680ffffff1bccaf736b54fa0b601bbca45ef7d2ec5a60ff", + "cborBytes": [ + 217, 5, 12, 159, 191, 70, 39, 102, 122, 166, 241, 163, 27, 98, 204, 98, 128, 8, 223, 166, 97, 71, 118, 192, 21, + 33, 72, 204, 21, 27, 158, 193, 114, 24, 222, 119, 116, 127, 74, 157, 37, 0, 88, 177, 100, 63, 65, 53, 79, 69, 76, + 247, 228, 228, 50, 74, 185, 114, 196, 239, 127, 169, 239, 65, 43, 232, 68, 235, 142, 20, 117, 73, 186, 243, 187, + 91, 216, 102, 173, 233, 173, 71, 18, 214, 6, 129, 188, 111, 88, 73, 198, 176, 178, 165, 13, 66, 141, 13, 89, 65, + 77, 255, 216, 102, 159, 27, 237, 59, 172, 184, 24, 30, 233, 3, 159, 216, 102, 159, 27, 101, 53, 61, 51, 20, 63, + 117, 6, 128, 255, 255, 255, 27, 204, 175, 115, 107, 84, 250, 11, 96, 27, 188, 164, 94, 247, 210, 236, 90, 96, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2110, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8663245962756445266" + } + }, + "cborHex": "1b783a084da3ef5452", + "cborBytes": [27, 120, 58, 8, 77, 163, 239, 84, 82], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2111, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12275346400642473303" + } + } + ] + }, + "cborHex": "9f1baa5aca83892a1d57ff", + "cborBytes": [159, 27, 170, 90, 202, 131, 137, 42, 29, 87, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2112, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17231307732025430059" + } + } + ] + }, + "cborHex": "d905019f1bef21e7163ed1502bff", + "cborBytes": [217, 5, 1, 159, 27, 239, 33, 231, 22, 62, 209, 80, 43, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2113, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "22a1e694" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12597134365869202144" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12886606167086360503" + } + } + ] + }, + "cborHex": "9f4422a1e6941baed202f6997fdae01bb2d66c08658a67b7ff", + "cborBytes": [ + 159, 68, 34, 161, 230, 148, 27, 174, 210, 2, 246, 153, 127, 218, 224, 27, 178, 214, 108, 8, 101, 138, 103, 183, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2114, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1559824468621985438" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "47fc207eafae5e67bb417f" + } + ] + }, + "cborHex": "d8669f1b15a59c17042d069e9f4b47fc207eafae5e67bb417fffff", + "cborBytes": [ + 216, 102, 159, 27, 21, 165, 156, 23, 4, 45, 6, 158, 159, 75, 71, 252, 32, 126, 175, 174, 94, 103, 187, 65, 127, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2115, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb0879f38dd11cf3" + }, + "cborHex": "48fb0879f38dd11cf3", + "cborBytes": [72, 251, 8, 121, 243, 141, 209, 28, 243], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2116, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c1392e739bbdd772b0bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4677895195598985388" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4495110510963527829" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15783285440779398106" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4159955760129058056" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16274911433029017720" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69fdb0" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ab81" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15f0009cd83c91593e60f62b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78a4e325e56996e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3341" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4cb79090d79bbf191af3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47bed93574bc3ba7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16073303615554225517" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d62" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3305260915943136860" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7e21" + } + ] + }, + "cborHex": "9f4ac1392e739bbdd772b0bc1b40eb38e5562f18ac9f801b3e61d731901b1095bf1bdb097e7c26402bda1b39bb21b933d525081be1dc19b85ca360784369fdb0ff42ab81bf4c15f0009cd83c91593e60f62b4878a4e325e56996e44233414a4cb79090d79bbf191af34847bed93574bc3ba71bdf0fd87a741c856d428d621b2ddea54a80c5de5cffff427e21ff", + "cborBytes": [ + 159, 74, 193, 57, 46, 115, 155, 189, 215, 114, 176, 188, 27, 64, 235, 56, 229, 86, 47, 24, 172, 159, 128, 27, 62, + 97, 215, 49, 144, 27, 16, 149, 191, 27, 219, 9, 126, 124, 38, 64, 43, 218, 27, 57, 187, 33, 185, 51, 213, 37, 8, + 27, 225, 220, 25, 184, 92, 163, 96, 120, 67, 105, 253, 176, 255, 66, 171, 129, 191, 76, 21, 240, 0, 156, 216, 60, + 145, 89, 62, 96, 246, 43, 72, 120, 164, 227, 37, 229, 105, 150, 228, 66, 51, 65, 74, 76, 183, 144, 144, 215, 155, + 191, 25, 26, 243, 72, 71, 190, 217, 53, 116, 188, 59, 167, 27, 223, 15, 216, 122, 116, 28, 133, 109, 66, 141, 98, + 27, 45, 222, 165, 74, 128, 197, 222, 92, 255, 255, 66, 126, 33, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2117, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2070cb2b09adea2bd82af229" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8929650179735157998" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8c5e1d2232f676b68" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6fecafac" + }, + { + "_tag": "ByteArray", + "bytearray": "0a0324fdbdd868a0c6" + }, + { + "_tag": "ByteArray", + "bytearray": "d7e24e8a" + }, + { + "_tag": "ByteArray", + "bytearray": "e0224bbeed" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4a6b18224" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9484816017037302772" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9eb2740e8d69443df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a03377dad8d7ccbf47a22c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddaa28bdda99695d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd3c20d1b4bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48af" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3a3e3ac727e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2bc237" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11724212650194945043" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b1a5eac427d37d04295" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11316935159796037243" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c2070cb2b09adea2bd82af2291b7bec7d86f39dfcee49a8c5e1d2232f676b689f446fecafac490a0324fdbdd868a0c644d7e24e8a45e0224bbeedff45c4a6b182241b83a0d5ea2f719bf449c9eb2740e8d69443df4ba03377dad8d7ccbf47a22c48ddaa28bdda99695dbf46dd3c20d1b4bb4248afff46e3a3e3ac727e9f432bc2371ba2b4c549ae02c4134a2b1a5eac427d37d042951b9d0dd49171c5767bffff", + "cborBytes": [ + 191, 76, 32, 112, 203, 43, 9, 173, 234, 43, 216, 42, 242, 41, 27, 123, 236, 125, 134, 243, 157, 252, 238, 73, 168, + 197, 225, 210, 35, 47, 103, 107, 104, 159, 68, 111, 236, 175, 172, 73, 10, 3, 36, 253, 189, 216, 104, 160, 198, + 68, 215, 226, 78, 138, 69, 224, 34, 75, 190, 237, 255, 69, 196, 166, 177, 130, 36, 27, 131, 160, 213, 234, 47, + 113, 155, 244, 73, 201, 235, 39, 64, 232, 214, 148, 67, 223, 75, 160, 51, 119, 218, 216, 215, 204, 191, 71, 162, + 44, 72, 221, 170, 40, 189, 218, 153, 105, 93, 191, 70, 221, 60, 32, 209, 180, 187, 66, 72, 175, 255, 70, 227, 163, + 227, 172, 114, 126, 159, 67, 43, 194, 55, 27, 162, 180, 197, 73, 174, 2, 196, 19, 74, 43, 26, 94, 172, 66, 125, + 55, 208, 66, 149, 27, 157, 13, 212, 145, 113, 197, 118, 123, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2118, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6347941145195205007" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3586142355893044350" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14627613378871555078" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "703138160891061023" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5e59ea27" + }, + { + "_tag": "ByteArray", + "bytearray": "417040f7231791eb965793e6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8039562917171585154" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3609425838763814437" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5073135119779183028" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13525373773592799536" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12451514544428844954" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9392729619400194876" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b58186ad6b672518f9fd8669f1b31c48978f4fcc47e9fd8669f1bcaffb8de1f63f4069f1b09c20c6e93eee31f445e59ea274c417040f7231791eb965793e61b6f9243e0b36a6082ffffd8669f1b321741ad42a22e259f1b4667658347ff39b4ffffd8669f1bbbb3c7c95d62293080ffffff1bacccaa81d84a879a1b8259add2f3a37b3ca0ffff", + "cborBytes": [ + 216, 102, 159, 27, 88, 24, 106, 214, 182, 114, 81, 143, 159, 216, 102, 159, 27, 49, 196, 137, 120, 244, 252, 196, + 126, 159, 216, 102, 159, 27, 202, 255, 184, 222, 31, 99, 244, 6, 159, 27, 9, 194, 12, 110, 147, 238, 227, 31, 68, + 94, 89, 234, 39, 76, 65, 112, 64, 247, 35, 23, 145, 235, 150, 87, 147, 230, 27, 111, 146, 67, 224, 179, 106, 96, + 130, 255, 255, 216, 102, 159, 27, 50, 23, 65, 173, 66, 162, 46, 37, 159, 27, 70, 103, 101, 131, 71, 255, 57, 180, + 255, 255, 216, 102, 159, 27, 187, 179, 199, 201, 93, 98, 41, 48, 128, 255, 255, 255, 27, 172, 204, 170, 129, 216, + 74, 135, 154, 27, 130, 89, 173, 210, 243, 163, 123, 60, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2119, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "92294d738cfd74dbe8f73620" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1b4eaa6a8ff1aa44ff" + } + ] + }, + "cborHex": "9f9f4c92294d738cfd74dbe8f73620ff491b4eaa6a8ff1aa44ffff", + "cborBytes": [ + 159, 159, 76, 146, 41, 77, 115, 140, 253, 116, 219, 232, 247, 54, 32, 255, 73, 27, 78, 170, 106, 143, 241, 170, + 68, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2120, + "sample": { + "_tag": "ByteArray", + "bytearray": "1c577ffb10" + }, + "cborHex": "451c577ffb10", + "cborBytes": [69, 28, 87, 127, 251, 16], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2121, + "sample": { + "_tag": "ByteArray", + "bytearray": "5d" + }, + "cborHex": "415d", + "cborBytes": [65, 93], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2122, + "sample": { + "_tag": "ByteArray", + "bytearray": "ea1bf87e" + }, + "cborHex": "44ea1bf87e", + "cborBytes": [68, 234, 27, 248, 126], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2123, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1244500614779431464" + } + }, + "cborHex": "1b11455ab72aaeea28", + "cborBytes": [27, 17, 69, 90, 183, 42, 174, 234, 40], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2124, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12677296117340317505" + } + } + ] + }, + "cborHex": "9f1bafeecda6ca822741ff", + "cborBytes": [159, 27, 175, 238, 205, 166, 202, 130, 39, 65, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2125, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3174875769679147484" + } + }, + "cborHex": "1b2c0f6cb0f9b871dc", + "cborBytes": [27, 44, 15, 108, 176, 249, 184, 113, 220], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2126, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cffbba690e" + } + ] + }, + "cborHex": "9f45cffbba690eff", + "cborBytes": [159, 69, 207, 251, 186, 105, 14, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2127, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18271101376859887293" + } + }, + "cborHex": "1bfd8ffde5d6e256bd", + "cborBytes": [27, 253, 143, 253, 229, 214, 226, 86, 189], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2128, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9300a627d7b91931d08338" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3af08d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5344722423c5227" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + } + ] + }, + "cborHex": "bf4b9300a627d7b91931d08338433af08d48f5344722423c52271bffffffffffffffecff", + "cborBytes": [ + 191, 75, 147, 0, 166, 39, 215, 185, 25, 49, 208, 131, 56, 67, 58, 240, 141, 72, 245, 52, 71, 34, 66, 60, 82, 39, + 27, 255, 255, 255, 255, 255, 255, 255, 236, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2129, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "94" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7531795980702992989" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6736869326734764710" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e9451998" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11283714876761711626" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd7c9e262f60" + }, + { + "_tag": "ByteArray", + "bytearray": "3dc263ab61c12727c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14777360852926301220" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4930d1c3865d6e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5702895143899957837" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e9e30097c30c3677" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1892251301460445096" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6bfb187d4a6532" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ab0c3a3a95fa" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7264077890695905938" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6e8b452" + }, + { + "_tag": "ByteArray", + "bytearray": "08bd" + }, + { + "_tag": "ByteArray", + "bytearray": "ff0e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1482448097452273053" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7b768e5b0fbac5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3698294252786224525" + } + } + ] + }, + "cborHex": "d905009f4194d8669f1b6886508a0e844a5d9fd8669f1b5d7e2af58e402aa69f44e94519981b9c97cee5902c240a46fd7c9e262f60493dc263ab61c12727c71bcd13bb66e46f8424ffff474930d1c3865d6e9f1b4f24c0eb0b750a4d48e9e30097c30c36771b1a42a088795207a8ff476bfb187d4a6532ffff9f46ab0c3a3a95fa9f1b64cf305ad7b2c29244d6e8b4524208bd42ff0eff1b1492b6b0b698ad9dff477b768e5b0fbac51b3352fb074c310d8dff", + "cborBytes": [ + 217, 5, 0, 159, 65, 148, 216, 102, 159, 27, 104, 134, 80, 138, 14, 132, 74, 93, 159, 216, 102, 159, 27, 93, 126, + 42, 245, 142, 64, 42, 166, 159, 68, 233, 69, 25, 152, 27, 156, 151, 206, 229, 144, 44, 36, 10, 70, 253, 124, 158, + 38, 47, 96, 73, 61, 194, 99, 171, 97, 193, 39, 39, 199, 27, 205, 19, 187, 102, 228, 111, 132, 36, 255, 255, 71, + 73, 48, 209, 195, 134, 93, 110, 159, 27, 79, 36, 192, 235, 11, 117, 10, 77, 72, 233, 227, 0, 151, 195, 12, 54, + 119, 27, 26, 66, 160, 136, 121, 82, 7, 168, 255, 71, 107, 251, 24, 125, 74, 101, 50, 255, 255, 159, 70, 171, 12, + 58, 58, 149, 250, 159, 27, 100, 207, 48, 90, 215, 178, 194, 146, 68, 214, 232, 180, 82, 66, 8, 189, 66, 255, 14, + 255, 27, 20, 146, 182, 176, 182, 152, 173, 157, 255, 71, 123, 118, 142, 91, 15, 186, 197, 27, 51, 82, 251, 7, 76, + 49, 13, 141, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2130, + "sample": { + "_tag": "ByteArray", + "bytearray": "ceca277be32e2670" + }, + "cborHex": "48ceca277be32e2670", + "cborBytes": [72, 206, 202, 39, 123, 227, 46, 38, 112], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2131, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "cborHex": "41ff", + "cborBytes": [65, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2132, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9348415042051529622" + } + }, + "cborHex": "1b81bc3df362665b96", + "cborBytes": [27, 129, 188, 61, 243, 98, 102, 91, 150], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2133, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0810aa2ebf" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4334299451187614052" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2902073845472449400" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10324682859816952808" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5886596246722870165" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2452932618945106513" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5200987547010446528" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7368347057816760367" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f4e586198a7287d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14883662237222049511" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14724262298807887937" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "455404385356388668" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "76f94d71e5b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e0163c12d1b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ecada6b3ce8207b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39ff43e7b6210b6936c0" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "935392844313178773" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cfc430c654c558" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3414187860251144700" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "068a7af285de3080e4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7788518264422705764" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6007125140408356831" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13041456956596646150" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "927ff2127932" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15774447796475019030" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4479882662666525165" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17307542583403915071" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12529062672069604970" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1414775079713552162" + } + } + ] + } + ] + }, + "cborHex": "d87b9f450810aa2ebfd8669f1b3c268663023551649fd8669f1b28463cc95f5653789f1b8f48a45bc5f423e81b51b164190e107b95ffffffffbf1b220a9138823112511b482d9e9e34c9b4c01b6641a09c22f6702f487f4e586198a7287d1bce8d63f29e8416e7418affd8669f1bcc57168c5c1ee8419f801b0651ebe02a52993cbf4676f94d71e5b4463e0163c12d1b487ecada6b3ce8207b4a39ff43e7b6210b6936c0ffbf1b0cfb2ed602bab29547cfc430c654c5581b2f61a1c50eb871fc49068a7af285de3080e41b6c1660189d8eaa641b535d987cf35bcfdf1bb4fc9001637d710646927ff21279321bdaea18b1bcd63f161b3e2bbd8bd7ab59ed1bf030be47c2bca73f1bade02c1e5150b66aff1b13a24a706f66b722ffffff", + "cborBytes": [ + 216, 123, 159, 69, 8, 16, 170, 46, 191, 216, 102, 159, 27, 60, 38, 134, 99, 2, 53, 81, 100, 159, 216, 102, 159, + 27, 40, 70, 60, 201, 95, 86, 83, 120, 159, 27, 143, 72, 164, 91, 197, 244, 35, 232, 27, 81, 177, 100, 25, 14, 16, + 123, 149, 255, 255, 255, 255, 191, 27, 34, 10, 145, 56, 130, 49, 18, 81, 27, 72, 45, 158, 158, 52, 201, 180, 192, + 27, 102, 65, 160, 156, 34, 246, 112, 47, 72, 127, 78, 88, 97, 152, 167, 40, 125, 27, 206, 141, 99, 242, 158, 132, + 22, 231, 65, 138, 255, 216, 102, 159, 27, 204, 87, 22, 140, 92, 30, 232, 65, 159, 128, 27, 6, 81, 235, 224, 42, + 82, 153, 60, 191, 70, 118, 249, 77, 113, 229, 180, 70, 62, 1, 99, 193, 45, 27, 72, 126, 202, 218, 107, 60, 232, + 32, 123, 74, 57, 255, 67, 231, 182, 33, 11, 105, 54, 192, 255, 191, 27, 12, 251, 46, 214, 2, 186, 178, 149, 71, + 207, 196, 48, 198, 84, 197, 88, 27, 47, 97, 161, 197, 14, 184, 113, 252, 73, 6, 138, 122, 242, 133, 222, 48, 128, + 228, 27, 108, 22, 96, 24, 157, 142, 170, 100, 27, 83, 93, 152, 124, 243, 91, 207, 223, 27, 180, 252, 144, 1, 99, + 125, 113, 6, 70, 146, 127, 242, 18, 121, 50, 27, 218, 234, 24, 177, 188, 214, 63, 22, 27, 62, 43, 189, 139, 215, + 171, 89, 237, 27, 240, 48, 190, 71, 194, 188, 167, 63, 27, 173, 224, 44, 30, 81, 80, 182, 106, 255, 27, 19, 162, + 74, 112, 111, 102, 183, 34, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2134, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "608214b4d7cb82" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "374affec8ee4392a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1daebb31d281759736" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c03e5c824" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6394065703288961112" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2105646664376561312" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3808554158846125502" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "299b2c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "561e9c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15233858081114152983" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09fbf47608214b4d7cb8248374affec8ee4392a416d491daebb31d281759736457c03e5c8241b58bc48e1430bf858ff1b1d38c27c2ca6aea0d8669f1b34dab3d431dc25be80ffbf43299b2c43561e9cff1bd36989365b85e017ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 191, 71, 96, 130, 20, 180, 215, 203, 130, 72, 55, + 74, 255, 236, 142, 228, 57, 42, 65, 109, 73, 29, 174, 187, 49, 210, 129, 117, 151, 54, 69, 124, 3, 229, 200, 36, + 27, 88, 188, 72, 225, 67, 11, 248, 88, 255, 27, 29, 56, 194, 124, 44, 166, 174, 160, 216, 102, 159, 27, 52, 218, + 179, 212, 49, 220, 37, 190, 128, 255, 191, 67, 41, 155, 44, 67, 86, 30, 156, 255, 27, 211, 105, 137, 54, 91, 133, + 224, 23, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2135, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "51" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1389581851804466513" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "675285c1b92107f0fe" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2946414256010917104" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16893269588233751465" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8542757994346856302" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8286892292000276983" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8ca473" + }, + { + "_tag": "ByteArray", + "bytearray": "eed8b4bf332489b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6832175379006610577" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7a23df1e35d1dc" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94876c12" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16972442756879328875" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4159179614074775392" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c10d464c9777f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5752014665360126187" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94727a2bb47d6add9ba37ec8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6242610368351033728" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5415e68b96eb5b834" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2a0aa20a0d4" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0d4accbfdcb7f1d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4765778243953429475" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b1807f679ea55e81937" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5298431423988265707" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12669206901700078430" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6806510523773465030" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e92a3cad3d851150b55a3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17872519803080941307" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c226aeb6aded1" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c80fb1e8ebef2a3231b1a3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5999651635419419836" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf41511b1348c954f7227d5149675285c1b92107f0fe9f1b28e3c427b2ad74f01bea70f32fa5950ba91b768df922672c3f6eff4194d8669f1b7300f4a23c9961f79f438ca47348eed8b4bf332489b01b5ed0c34f0cdbdc91477a23df1e35d1dcffff4494876c12bf1beb8a3ac37671a66b1b39b85fd29df92760477c10d464c9777f1b4fd342dcd7a0b0eb4c94727a2bb47d6add9ba37ec81b56a2350e24bbd98049c5415e68b96eb5b83446b2a0aa20a0d4ff48a0d4accbfdcb7f1dbf1b422372100d210be34a4b1807f679ea55e819371b4987cf4ecd9672eb1bafd2108d81c2ab5e1b5e7595424979b1c64b9e92a3cad3d851150b55a31bf807f21177c61efb470c226aeb6aded1ff4bc80fb1e8ebef2a3231b1a3d8669f1b53430b5ff94414bc80ffff", + "cborBytes": [ + 191, 65, 81, 27, 19, 72, 201, 84, 247, 34, 125, 81, 73, 103, 82, 133, 193, 185, 33, 7, 240, 254, 159, 27, 40, 227, + 196, 39, 178, 173, 116, 240, 27, 234, 112, 243, 47, 165, 149, 11, 169, 27, 118, 141, 249, 34, 103, 44, 63, 110, + 255, 65, 148, 216, 102, 159, 27, 115, 0, 244, 162, 60, 153, 97, 247, 159, 67, 140, 164, 115, 72, 238, 216, 180, + 191, 51, 36, 137, 176, 27, 94, 208, 195, 79, 12, 219, 220, 145, 71, 122, 35, 223, 30, 53, 209, 220, 255, 255, 68, + 148, 135, 108, 18, 191, 27, 235, 138, 58, 195, 118, 113, 166, 107, 27, 57, 184, 95, 210, 157, 249, 39, 96, 71, + 124, 16, 212, 100, 201, 119, 127, 27, 79, 211, 66, 220, 215, 160, 176, 235, 76, 148, 114, 122, 43, 180, 125, 106, + 221, 155, 163, 126, 200, 27, 86, 162, 53, 14, 36, 187, 217, 128, 73, 197, 65, 94, 104, 185, 110, 181, 184, 52, 70, + 178, 160, 170, 32, 160, 212, 255, 72, 160, 212, 172, 203, 253, 203, 127, 29, 191, 27, 66, 35, 114, 16, 13, 33, 11, + 227, 74, 75, 24, 7, 246, 121, 234, 85, 232, 25, 55, 27, 73, 135, 207, 78, 205, 150, 114, 235, 27, 175, 210, 16, + 141, 129, 194, 171, 94, 27, 94, 117, 149, 66, 73, 121, 177, 198, 75, 158, 146, 163, 202, 211, 216, 81, 21, 11, 85, + 163, 27, 248, 7, 242, 17, 119, 198, 30, 251, 71, 12, 34, 106, 235, 106, 222, 209, 255, 75, 200, 15, 177, 232, 235, + 239, 42, 50, 49, 177, 163, 216, 102, 159, 27, 83, 67, 11, 95, 249, 68, 20, 188, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2136, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11414136316103267740" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "24" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5073034165877417077" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3689830781650480551" + } + }, + { + "_tag": "ByteArray", + "bytearray": "33ed59816e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5123501309552273332" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10308953505850533990" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3f992b6c25ba92" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18441786112973622066" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7ea14b82b1fbd3" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16784110384157560968" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cb9084d134b4" + }, + { + "_tag": "ByteArray", + "bytearray": "65a8a2664a080012d9f186" + }, + { + "_tag": "ByteArray", + "bytearray": "462bfbd8012641a88cfe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6682388363123109086" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b9e6728813b38959c9f4124d8669f1b466709b21e8b24759f1b3334e98bdd942da74533ed59816e1b471a554baa1ca7b41b8f10c2982a3d2866473f992b6c25ba92ffffd8669f1bffee62c2cf864b329f477ea14b82b1fbd3ffffd8669f1be8ed2377e6a810889f46cb9084d134b44b65a8a2664a080012d9f1864a462bfbd8012641a88cfe1b5cbc9ccfbb282cdeffffffff", + "cborBytes": [ + 159, 27, 158, 103, 40, 129, 59, 56, 149, 156, 159, 65, 36, 216, 102, 159, 27, 70, 103, 9, 178, 30, 139, 36, 117, + 159, 27, 51, 52, 233, 139, 221, 148, 45, 167, 69, 51, 237, 89, 129, 110, 27, 71, 26, 85, 75, 170, 28, 167, 180, + 27, 143, 16, 194, 152, 42, 61, 40, 102, 71, 63, 153, 43, 108, 37, 186, 146, 255, 255, 216, 102, 159, 27, 255, 238, + 98, 194, 207, 134, 75, 50, 159, 71, 126, 161, 75, 130, 177, 251, 211, 255, 255, 216, 102, 159, 27, 232, 237, 35, + 119, 230, 168, 16, 136, 159, 70, 203, 144, 132, 209, 52, 180, 75, 101, 168, 162, 102, 74, 8, 0, 18, 217, 241, 134, + 74, 70, 43, 251, 216, 1, 38, 65, 168, 140, 254, 27, 92, 188, 156, 207, 187, 40, 44, 222, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2137, + "sample": { + "_tag": "ByteArray", + "bytearray": "f924" + }, + "cborHex": "42f924", + "cborBytes": [66, 249, 36], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2138, + "sample": { + "_tag": "ByteArray", + "bytearray": "04f605" + }, + "cborHex": "4304f605", + "cborBytes": [67, 4, 246, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2139, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2976133036728016737" + } + }, + "cborHex": "1b294d593a8a7a5f61", + "cborBytes": [27, 41, 77, 89, 58, 138, 122, 95, 97], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2140, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2059053268041729433" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04a02508fe7bb7daaffb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14202783627571750567" + } + } + } + ] + }, + "cborHex": "bf1b1c933a09b73c05994a04a02508fe7bb7daaffb1bffffffffffffffef1bc51a6c75af25e6a7ff", + "cborBytes": [ + 191, 27, 28, 147, 58, 9, 183, 60, 5, 153, 74, 4, 160, 37, 8, 254, 123, 183, 218, 175, 251, 27, 255, 255, 255, 255, + 255, 255, 255, 239, 27, 197, 26, 108, 117, 175, 37, 230, 167, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2141, + "sample": { + "_tag": "ByteArray", + "bytearray": "a1f03f" + }, + "cborHex": "43a1f03f", + "cborBytes": [67, 161, 240, 63], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2142, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9f61fee68b30ec5c98bed7d6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2542627088909496613" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1f3d" + } + ] + } + ] + } + ] + }, + "cborHex": "9f004c9f61fee68b30ec5c98bed7d6d905009fd8669f1bffffffffffffffeb9f1b234939ddaebc7125421f3dffffffff", + "cborBytes": [ + 159, 0, 76, 159, 97, 254, 230, 139, 48, 236, 92, 152, 190, 215, 214, 217, 5, 0, 159, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 235, 159, 27, 35, 73, 57, 221, 174, 188, 113, 37, 66, 31, 61, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2143, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11197536506700268068" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc" + }, + { + "_tag": "ByteArray", + "bytearray": "7303" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11842107366595406544" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10012188779188798833" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "981043a64d708b2162b27a2f" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6301288657115097288" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14064543743864593191" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12912292979932957705" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15243ea59ee29cf286687398" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3a6647e03bb3dcf0d4c8" + } + ] + }, + "cborHex": "9fd905019f1b9b65a4203156822441fc427303d8669f1ba4579de861f4aad09f1b8af270a5d7b34571ffffbf00071bfffffffffffffff24c981043a64d708b2162b27a2fffffbf1b5772aca5e28b28c81bc32f4c0494fddb271bb331ae0d90ac8c09031bffffffffffffffff4c15243ea59ee29cf286687398ff4a3a6647e03bb3dcf0d4c8ff", + "cborBytes": [ + 159, 217, 5, 1, 159, 27, 155, 101, 164, 32, 49, 86, 130, 36, 65, 252, 66, 115, 3, 216, 102, 159, 27, 164, 87, 157, + 232, 97, 244, 170, 208, 159, 27, 138, 242, 112, 165, 215, 179, 69, 113, 255, 255, 191, 0, 7, 27, 255, 255, 255, + 255, 255, 255, 255, 242, 76, 152, 16, 67, 166, 77, 112, 139, 33, 98, 178, 122, 47, 255, 255, 191, 27, 87, 114, + 172, 165, 226, 139, 40, 200, 27, 195, 47, 76, 4, 148, 253, 219, 39, 27, 179, 49, 174, 13, 144, 172, 140, 9, 3, 27, + 255, 255, 255, 255, 255, 255, 255, 255, 76, 21, 36, 62, 165, 158, 226, 156, 242, 134, 104, 115, 152, 255, 74, 58, + 102, 71, 224, 59, 179, 220, 240, 212, 200, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2144, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "19df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7084628767249016597" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "af77ed24" + }, + { + "_tag": "ByteArray", + "bytearray": "933e05f007be6e71" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "749a4055fe1072a84c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1504798235495318600" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78717294115f0be7c5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9429905352453335375" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91d7328a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9987944253010707948" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b298b90a20211db12e99" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c5ec947" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebc5406b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2681697655683139591" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd598af41c7c5e30110ba0ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3341054595162189881" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87b9f4219df1b6251a853ed6427159f44af77ed2448933e05f007be6e71bf49749a4055fe1072a84c1b14e21e05bd5544484978717294115f0be7c51b82ddc0f4ce89294f4491d7328a1b8a9c4e61351b85ec4ab298b90a20211db12e99446c5ec94744ebc5406b1b25374dcf41fdc8074cfd598af41c7c5e30110ba0ee1b2e5dcf73dfd43039ffffff", + "cborBytes": [ + 216, 123, 159, 66, 25, 223, 27, 98, 81, 168, 83, 237, 100, 39, 21, 159, 68, 175, 119, 237, 36, 72, 147, 62, 5, + 240, 7, 190, 110, 113, 191, 73, 116, 154, 64, 85, 254, 16, 114, 168, 76, 27, 20, 226, 30, 5, 189, 85, 68, 72, 73, + 120, 113, 114, 148, 17, 95, 11, 231, 197, 27, 130, 221, 192, 244, 206, 137, 41, 79, 68, 145, 215, 50, 138, 27, + 138, 156, 78, 97, 53, 27, 133, 236, 74, 178, 152, 185, 10, 32, 33, 29, 177, 46, 153, 68, 108, 94, 201, 71, 68, + 235, 197, 64, 107, 27, 37, 55, 77, 207, 65, 253, 200, 7, 76, 253, 89, 138, 244, 28, 124, 94, 48, 17, 11, 160, 238, + 27, 46, 93, 207, 115, 223, 212, 48, 57, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2145, + "sample": { + "_tag": "ByteArray", + "bytearray": "7149619dd77d92af94" + }, + "cborHex": "497149619dd77d92af94", + "cborBytes": [73, 113, 73, 97, 157, 215, 125, 146, 175, 148], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2146, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd07" + }, + "cborHex": "42fd07", + "cborBytes": [66, 253, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2147, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "202e442ddc03146a3feb" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2822503579993605572" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2377936549437183257" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3110287937710742683" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8fd1dc9aab2da49c5f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8888236985361834587" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4036565281947881771" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7fc1681e074245f13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6c4913dbac76f551f0ec0" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e9cda39d235d7272a4f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18257873009448867115" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4df1" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54fa25bf09b7" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2f8d4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13360730864808536608" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8731094986939811341" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a202e442ddc03146a3febbf1b272b8c0d3ec985c41b210020b15f9f15191b2b29f6667c6e5c9b498fd1dc9aab2da49c5f1b7b595c723ffb225b1b3804c2bcbf2d912b49b7fc1681e074245f134ba6c4913dbac76f551f0ec0ff4a3e9cda39d235d7272a4f1bfd60fec48a64552b424df1804654fa25bf09b7a043c2f8d4d8669f1bb96ad9eef082aa209f1b792b14a19cbdc60dffffff", + "cborBytes": [ + 191, 74, 32, 46, 68, 45, 220, 3, 20, 106, 63, 235, 191, 27, 39, 43, 140, 13, 62, 201, 133, 196, 27, 33, 0, 32, + 177, 95, 159, 21, 25, 27, 43, 41, 246, 102, 124, 110, 92, 155, 73, 143, 209, 220, 154, 171, 45, 164, 156, 95, 27, + 123, 89, 92, 114, 63, 251, 34, 91, 27, 56, 4, 194, 188, 191, 45, 145, 43, 73, 183, 252, 22, 129, 224, 116, 36, 95, + 19, 75, 166, 196, 145, 61, 186, 199, 111, 85, 31, 14, 192, 255, 74, 62, 156, 218, 57, 210, 53, 215, 39, 42, 79, + 27, 253, 96, 254, 196, 138, 100, 85, 43, 66, 77, 241, 128, 70, 84, 250, 37, 191, 9, 183, 160, 67, 194, 248, 212, + 216, 102, 159, 27, 185, 106, 217, 238, 240, 130, 170, 32, 159, 27, 121, 43, 20, 161, 156, 189, 198, 13, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2148, + "sample": { + "_tag": "ByteArray", + "bytearray": "692a594196cd6a1da9d9" + }, + "cborHex": "4a692a594196cd6a1da9d9", + "cborBytes": [74, 105, 42, 89, 65, 150, 205, 106, 29, 169, 217], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2149, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c503c557a83ea7992c1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3830333360565218292" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a5026af96cfa" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5f8883a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61b707" + } + } + ] + }, + "cborHex": "bf4a9c503c557a83ea7992c1d9050a9f1b352813e5bfd16bf41bfffffffffffffffa1146a5026af96cfaff44e5f8883a4361b707ff", + "cborBytes": [ + 191, 74, 156, 80, 60, 85, 122, 131, 234, 121, 146, 193, 217, 5, 10, 159, 27, 53, 40, 19, 229, 191, 209, 107, 244, + 27, 255, 255, 255, 255, 255, 255, 255, 250, 17, 70, 165, 2, 106, 249, 108, 250, 255, 68, 229, 248, 136, 58, 67, + 97, 183, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2150, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "74010590" + }, + { + "_tag": "ByteArray", + "bytearray": "01" + } + ] + }, + "cborHex": "9f44740105904101ff", + "cborBytes": [159, 68, 116, 1, 5, 144, 65, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2151, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87a9fa0ff", + "cborBytes": [216, 122, 159, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2152, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12639922901670881576" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2175793547710121175" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b388bd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3253259565997942695" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17783145121328958284" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4103708341172950254" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12265552715646456133" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6209425245409525570" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3140244916187117999" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10807774167623707705" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9b228" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "366371620872269386" + } + }, + { + "_tag": "ByteArray", + "bytearray": "69c48166ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12466856345351031557" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f9adc394cd62d95fc9" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11118911687584092162" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14586082572314339789" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "448556218948799893" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1baf6a06e8ee6ae9289fbf1b1e31f8b42bd944d743b388bd1b2d25e656b972e7a71bf6ca6c44ca088b4c1b38f34cfe716bd4ee1baa37ff358def51451b562c4f5c9bfa3f421b2b94641d110f39af1b95fced57e9daac3943b9b228ff9f9f1b05159d0c4de02e4a4569c48166ab1bad032bcb3a790b0549f9adc394cd62d95fc9ffd8669f1b9a4e4f44f36390029f1bca6c2cd1b34fe9cd1b063997812c3c4d95ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 175, 106, 6, 232, 238, 106, 233, 40, 159, 191, 27, 30, 49, 248, 180, 43, 217, 68, 215, 67, 179, + 136, 189, 27, 45, 37, 230, 86, 185, 114, 231, 167, 27, 246, 202, 108, 68, 202, 8, 139, 76, 27, 56, 243, 76, 254, + 113, 107, 212, 238, 27, 170, 55, 255, 53, 141, 239, 81, 69, 27, 86, 44, 79, 92, 155, 250, 63, 66, 27, 43, 148, + 100, 29, 17, 15, 57, 175, 27, 149, 252, 237, 87, 233, 218, 172, 57, 67, 185, 178, 40, 255, 159, 159, 27, 5, 21, + 157, 12, 77, 224, 46, 74, 69, 105, 196, 129, 102, 171, 27, 173, 3, 43, 203, 58, 121, 11, 5, 73, 249, 173, 195, + 148, 205, 98, 217, 95, 201, 255, 216, 102, 159, 27, 154, 78, 79, 68, 243, 99, 144, 2, 159, 27, 202, 108, 44, 209, + 179, 79, 233, 205, 27, 6, 57, 151, 129, 44, 60, 77, 149, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2153, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8426723588883099209" + }, + "fields": [] + }, + "cborHex": "d8669f1b74f1bc7517c82e4980ff", + "cborBytes": [216, 102, 159, 27, 116, 241, 188, 117, 23, 200, 46, 73, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2154, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4088520305142986332" + } + }, + "cborHex": "1b38bd578e3d04f65c", + "cborBytes": [27, 56, 189, 87, 142, 61, 4, 246, 92], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2155, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d79aa16575fa8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf04023df90201d400" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01f92d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdfde19375d77025b0a3b4eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea7325c4fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e16690c154c4bbdb0" + } + } + ] + } + } + ] + }, + "cborHex": "bf471d79aa16575fa849cf04023df90201d400415cbf4301f92d4cfdfde19375d77025b0a3b4eb45ea7325c4fb493e16690c154c4bbdb0ffff", + "cborBytes": [ + 191, 71, 29, 121, 170, 22, 87, 95, 168, 73, 207, 4, 2, 61, 249, 2, 1, 212, 0, 65, 92, 191, 67, 1, 249, 45, 76, + 253, 253, 225, 147, 117, 215, 112, 37, 176, 163, 180, 235, 69, 234, 115, 37, 196, 251, 73, 62, 22, 105, 12, 21, + 76, 75, 189, 176, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2156, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10467383956716882518" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18085186115723707094" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11265257586294592998" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "534ee952aa852a008338eadd" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10062033011226925415" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dbbb42015cd0d0" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15433210460785181062" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1c425705" + } + ] + }, + "cborHex": "9f1b91439e4003bb8a56a0d8669f1bfafb7cf3ec89c2d69fd8669f1b9c563c16be5d15e69f4c534ee952aa852a008338eaddffffbf1b8ba385b6786f596747dbbb42015cd0d0ff1bd62dc7253af18186ffff441c425705ff", + "cborBytes": [ + 159, 27, 145, 67, 158, 64, 3, 187, 138, 86, 160, 216, 102, 159, 27, 250, 251, 124, 243, 236, 137, 194, 214, 159, + 216, 102, 159, 27, 156, 86, 60, 22, 190, 93, 21, 230, 159, 76, 83, 78, 233, 82, 170, 133, 42, 0, 131, 56, 234, + 221, 255, 255, 191, 27, 139, 163, 133, 182, 120, 111, 89, 103, 71, 219, 187, 66, 1, 92, 208, 208, 255, 27, 214, + 45, 199, 37, 58, 241, 129, 134, 255, 255, 68, 28, 66, 87, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2157, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "022d00" + } + } + ] + }, + "cborHex": "bf1141121bffffffffffffffeb43022d00ff", + "cborBytes": [191, 17, 65, 18, 27, 255, 255, 255, 255, 255, 255, 255, 235, 67, 2, 45, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2158, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2735679651411101910" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3320765175419240543" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5631086597678659212" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1705309780315831847" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d732" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7734802670167040509" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4cfc1e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "161a01d9fce00207a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6767812157187317749" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1199714245246820955" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05e58f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7818123c26781b36949" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18243960587710078922" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f80ffd8669f1b25f71626119f88d69fd905029f1b2e15ba55375a005f1b4e25a36d0219768c1b17aa7a35c7b97e2742d7321b6b578a0c3b0ca1fdffbf0d434cfc1e49161a01d9fce00207a91b5dec194cafb85ff5ffffffbf1b10a63dbfebe9a25b4305e58f4ad7818123c26781b369491bfd2f917e6eaf9fcaffff", + "cborBytes": [ + 159, 159, 128, 255, 216, 102, 159, 27, 37, 247, 22, 38, 17, 159, 136, 214, 159, 217, 5, 2, 159, 27, 46, 21, 186, + 85, 55, 90, 0, 95, 27, 78, 37, 163, 109, 2, 25, 118, 140, 27, 23, 170, 122, 53, 199, 185, 126, 39, 66, 215, 50, + 27, 107, 87, 138, 12, 59, 12, 161, 253, 255, 191, 13, 67, 76, 252, 30, 73, 22, 26, 1, 217, 252, 224, 2, 7, 169, + 27, 93, 236, 25, 76, 175, 184, 95, 245, 255, 255, 255, 191, 27, 16, 166, 61, 191, 235, 233, 162, 91, 67, 5, 229, + 143, 74, 215, 129, 129, 35, 194, 103, 129, 179, 105, 73, 27, 253, 47, 145, 126, 110, 175, 159, 202, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2159, + "sample": { + "_tag": "ByteArray", + "bytearray": "8ccecae3dd24" + }, + "cborHex": "468ccecae3dd24", + "cborBytes": [70, 140, 206, 202, 227, 221, 36], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2160, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c7beb6b785bf3bd6cce5c94" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2898802034195946195" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "583842052586034760" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8eebea0faa7855210337" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1032510150384703249" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ab78db4605831" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3335438579986771850" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1741938939450251722" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3600411538116365119" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "279853126236037241" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4640751876709404863" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5365dd8acf1f553" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14678121728393818556" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1602879790735149797" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f4c7c7beb6b785bf3bd6cce5c941b283a9d17726ddad3bf1b081a3940e55356484a8eebea0faa78552103371b0e543682e4aa5711479ab78db46058311b2e49dbb7723eaf8a1b182c9c3c7a5a59ca1b31f73b37d6a4cb3f1b03e23cef8294e0791b4067433e7dfdd0bf48e5365dd8acf1f5531bcbb329f1a6db31bc1b163e92ad606bcae5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 76, 124, 123, 235, 107, 120, 91, 243, 189, 108, + 206, 92, 148, 27, 40, 58, 157, 23, 114, 109, 218, 211, 191, 27, 8, 26, 57, 64, 229, 83, 86, 72, 74, 142, 235, 234, + 15, 170, 120, 85, 33, 3, 55, 27, 14, 84, 54, 130, 228, 170, 87, 17, 71, 154, 183, 141, 180, 96, 88, 49, 27, 46, + 73, 219, 183, 114, 62, 175, 138, 27, 24, 44, 156, 60, 122, 90, 89, 202, 27, 49, 247, 59, 55, 214, 164, 203, 63, + 27, 3, 226, 60, 239, 130, 148, 224, 121, 27, 64, 103, 67, 62, 125, 253, 208, 191, 72, 229, 54, 93, 216, 172, 241, + 245, 83, 27, 203, 179, 41, 241, 166, 219, 49, 188, 27, 22, 62, 146, 173, 96, 107, 202, 229, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2161, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1be4945f114fb3be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d88e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39c03d659dcb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18412353478446810834" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49c0dac5846c64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13762972484886594838" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65d094b4e633d6c593fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc3a5e8c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9742935031740831947" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efb67b09" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1e8ccd4f5" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "78" + } + ] + }, + "cborHex": "9fbf481be4945f114fb3be42d88e4639c03d659dcb1bff85d1ef91c006d24749c0dac5846c641bbeffe68e3f2405164a65d094b4e633d6c593fa41a244bc3a5e8c1b8735dbca849f18cb44efb67b0945e1e8ccd4f5ff4178ff", + "cborBytes": [ + 159, 191, 72, 27, 228, 148, 95, 17, 79, 179, 190, 66, 216, 142, 70, 57, 192, 61, 101, 157, 203, 27, 255, 133, 209, + 239, 145, 192, 6, 210, 71, 73, 192, 218, 197, 132, 108, 100, 27, 190, 255, 230, 142, 63, 36, 5, 22, 74, 101, 208, + 148, 180, 230, 51, 214, 197, 147, 250, 65, 162, 68, 188, 58, 94, 140, 27, 135, 53, 219, 202, 132, 159, 24, 203, + 68, 239, 182, 123, 9, 69, 225, 232, 204, 212, 245, 255, 65, 120, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2162, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1152606563418936596" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10305784861110907962" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10312053496416020631" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7224476162019872947" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4647369992849887849" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10667700371994213071" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2769340724433294776" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10362692670447586344" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10321934591755934386" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "390663646ea18ccc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3de5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2183874559452536453" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0ffee1900a5e9514d8669f1b8f0580ba921d343a9f1b8f1bc604f6b3a897ffff1b64427ecadd78d0b3d8669f1b407ec662bba0926980ff1b940b48f7eb047acfbf1b266eacb75dde95b81b8fcfae1472928c281b8f3ee0d2c06ddab248390663646ea18ccc423de541714256f71b1e4eae57562e5e85ffff", + "cborBytes": [ + 191, 27, 15, 254, 225, 144, 10, 94, 149, 20, 216, 102, 159, 27, 143, 5, 128, 186, 146, 29, 52, 58, 159, 27, 143, + 27, 198, 4, 246, 179, 168, 151, 255, 255, 27, 100, 66, 126, 202, 221, 120, 208, 179, 216, 102, 159, 27, 64, 126, + 198, 98, 187, 160, 146, 105, 128, 255, 27, 148, 11, 72, 247, 235, 4, 122, 207, 191, 27, 38, 110, 172, 183, 93, + 222, 149, 184, 27, 143, 207, 174, 20, 114, 146, 140, 40, 27, 143, 62, 224, 210, 192, 109, 218, 178, 72, 57, 6, 99, + 100, 110, 161, 140, 204, 66, 61, 229, 65, 113, 66, 86, 247, 27, 30, 78, 174, 87, 86, 46, 94, 133, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2163, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1415833444681895653" + } + }, + "cborHex": "1b13a60d043b61cee5", + "cborBytes": [27, 19, 166, 13, 4, 59, 97, 206, 229], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2164, + "sample": { + "_tag": "ByteArray", + "bytearray": "3aa1c9967d" + }, + "cborHex": "453aa1c9967d", + "cborBytes": [69, 58, 161, 201, 150, 125], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2165, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12366191255557516008" + }, + "fields": [] + } + ] + }, + "cborHex": "d87e9fd8669f1bab9d896d940c2ae880ffff", + "cborBytes": [216, 126, 159, 216, 102, 159, 27, 171, 157, 137, 109, 148, 12, 42, 232, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2166, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5432142056915727247" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8394605971262933227" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14638621324476376565" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5805fe" + } + } + ] + }, + "cborHex": "bf1b4b62d86b87ebf38f1b747fa1a7828008eb1bcb26d4892edf65f5435805feff", + "cborBytes": [ + 191, 27, 75, 98, 216, 107, 135, 235, 243, 143, 27, 116, 127, 161, 167, 130, 128, 8, 235, 27, 203, 38, 212, 137, + 46, 223, 101, 245, 67, 88, 5, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2167, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1682095048677679939" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "825348515bdd224fce83d1" + } + ] + }, + "cborHex": "d8669f1b17580088dee063439f4b825348515bdd224fce83d1ffff", + "cborBytes": [ + 216, 102, 159, 27, 23, 88, 0, 136, 222, 224, 99, 67, 159, 75, 130, 83, 72, 81, 91, 221, 34, 79, 206, 131, 209, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2168, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6605c40" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96028c21ab902a4de5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6481450133217996298" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c097" + } + ] + }, + "cborHex": "9fbf44b6605c40418541e74996028c21ab902a4de541ea1b59f2bc8e53ddee0aff42c097ff", + "cborBytes": [ + 159, 191, 68, 182, 96, 92, 64, 65, 133, 65, 231, 73, 150, 2, 140, 33, 171, 144, 42, 77, 229, 65, 234, 27, 89, 242, + 188, 142, 83, 221, 238, 10, 255, 66, 192, 151, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2169, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4127481149612845225" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f87a05" + } + ] + }, + "cborHex": "d905049f1b3947c23cbbcb68a943f87a05ff", + "cborBytes": [217, 5, 4, 159, 27, 57, 71, 194, 60, 187, 203, 104, 169, 67, 248, 122, 5, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2170, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4759635825169368725" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "efe53ab2451b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14123216781917906369" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a92b69b" + }, + { + "_tag": "ByteArray", + "bytearray": "31ed" + }, + { + "_tag": "ByteArray", + "bytearray": "91d045a1bf304b0803a73e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12003897092095212155" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3341377542121761321" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "68edc1b61f" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b420d9f90bb7186959f46efe53ab2451b1bc3ffbed5cc0d65c19f449a92b69b4231ed4b91d045a1bf304b0803a73e1ba69668ce4eadfa7bffffffd8669f1b2e5ef52bd2a2aa2980ff9f4568edc1b61f80ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 66, 13, 159, 144, 187, 113, 134, 149, 159, 70, 239, 229, 58, 178, 69, 27, 27, 195, 255, + 190, 213, 204, 13, 101, 193, 159, 68, 154, 146, 182, 155, 66, 49, 237, 75, 145, 208, 69, 161, 191, 48, 75, 8, 3, + 167, 62, 27, 166, 150, 104, 206, 78, 173, 250, 123, 255, 255, 255, 216, 102, 159, 27, 46, 94, 245, 43, 210, 162, + 170, 41, 128, 255, 159, 69, 104, 237, 193, 182, 31, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2171, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02fd40fa" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9485756ee62d9712" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1557519803130863736" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20825ea01331320d806c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3931e310b0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1146762947979397277" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6124107942117931720" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18299697566248122126" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2169529769251996665" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1b30f27a3cac95c92758d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2324168556460897302" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7558653287315463049" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10315203456308837682" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10354899555313480174" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15926083148689186563" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15973713863508446057" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e136d9814708" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "008b" + } + } + ] + }, + "cborHex": "bf4402fd40fa9f489485756ee62d97121b159d6c0244406078ff4a20825ea01331320d806c0c453931e310b0d8669f1b0fea1ed34be4489d9f1b54fd33b9f8167ac81bfdf595fb054cb70effff4151bf1b1e1bb7d499e683f94bc1b30f27a3cac95c92758d1b20411afcf5fbf4161b68e5bb1e0ac6db891b8f26f6e4272b7d321b8fb3fe486f4f71ee1bdd04d03e64f41f031bddae082062274b69ff46e136d981470842008bff", + "cborBytes": [ + 191, 68, 2, 253, 64, 250, 159, 72, 148, 133, 117, 110, 230, 45, 151, 18, 27, 21, 157, 108, 2, 68, 64, 96, 120, + 255, 74, 32, 130, 94, 160, 19, 49, 50, 13, 128, 108, 12, 69, 57, 49, 227, 16, 176, 216, 102, 159, 27, 15, 234, 30, + 211, 75, 228, 72, 157, 159, 27, 84, 253, 51, 185, 248, 22, 122, 200, 27, 253, 245, 149, 251, 5, 76, 183, 14, 255, + 255, 65, 81, 191, 27, 30, 27, 183, 212, 153, 230, 131, 249, 75, 193, 179, 15, 39, 163, 202, 201, 92, 146, 117, + 141, 27, 32, 65, 26, 252, 245, 251, 244, 22, 27, 104, 229, 187, 30, 10, 198, 219, 137, 27, 143, 38, 246, 228, 39, + 43, 125, 50, 27, 143, 179, 254, 72, 111, 79, 113, 238, 27, 221, 4, 208, 62, 100, 244, 31, 3, 27, 221, 174, 8, 32, + 98, 39, 75, 105, 255, 70, 225, 54, 217, 129, 71, 8, 66, 0, 139, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2172, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0106bc39b2e245fe724f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "030707eb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f04e3344bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0eac941d9222598a9144" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9792839717032060877" + } + }, + { + "_tag": "ByteArray", + "bytearray": "473f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e00504" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11012407645525368559" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "70" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "864212198518334489" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12882763520459977586" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a0106bc39b2e245fe724f0644030707eb45f04e3344bb4a0eac941d9222598a91449f1b87e727d6840867cd42473fff43e00504d8669f1b98d3ee684955deef9f41701b0bfe4c6a6f3ea4191bb2c8c52a8260b372ffffff", + "cborBytes": [ + 191, 74, 1, 6, 188, 57, 178, 226, 69, 254, 114, 79, 6, 68, 3, 7, 7, 235, 69, 240, 78, 51, 68, 187, 74, 14, 172, + 148, 29, 146, 34, 89, 138, 145, 68, 159, 27, 135, 231, 39, 214, 132, 8, 103, 205, 66, 71, 63, 255, 67, 224, 5, 4, + 216, 102, 159, 27, 152, 211, 238, 104, 73, 85, 222, 239, 159, 65, 112, 27, 11, 254, 76, 106, 111, 62, 164, 25, 27, + 178, 200, 197, 42, 130, 96, 179, 114, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2173, + "sample": { + "_tag": "ByteArray", + "bytearray": "5001072c038cfa" + }, + "cborHex": "475001072c038cfa", + "cborBytes": [71, 80, 1, 7, 44, 3, 140, 250], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2174, + "sample": { + "_tag": "ByteArray", + "bytearray": "9d1774048563b0c6148f66" + }, + "cborHex": "4b9d1774048563b0c6148f66", + "cborBytes": [75, 157, 23, 116, 4, 133, 99, 176, 198, 20, 143, 102], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2175, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "acfc" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f42acfca0ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 66, 172, 252, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2176, + "sample": { + "_tag": "ByteArray", + "bytearray": "da0a63c088c3cc5194403f" + }, + "cborHex": "4bda0a63c088c3cc5194403f", + "cborBytes": [75, 218, 10, 99, 192, 136, 195, 204, 81, 148, 64, 63], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2177, + "sample": { + "_tag": "ByteArray", + "bytearray": "3c0853e6e64c4c" + }, + "cborHex": "473c0853e6e64c4c", + "cborBytes": [71, 60, 8, 83, 230, 230, 76, 76], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2178, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15496843508955796017" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3230867072783753609" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a6ef8ff548bf1baa9e2e7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10322359007020669995" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ab2b453064a32" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14083674853987829586" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bacf095c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d56a0b6a93" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed4bb75ff8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14807888489986818543" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8a152838bd629065fef37" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3369bd1b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "37c920b561f5e8744d43" + }, + { + "_tag": "ByteArray", + "bytearray": "f9223187e46a3a9038f428" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d9fdaf1ea1b00465" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13072795983251672115" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3297175133579244379" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d8edb3" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4458478562140977249" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4716025825779382815" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8106213774116549754" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8297233244957237744" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7883c6c5a8b8" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6a1fa2a060eb" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdb372efe8c8f7ff92b3fe83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8dd7b" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bd70fd910cb20d2319fd8669f1b2cd6587c1dc821899fbf4b2a6ef8ff548bf1baa9e2e71b8f4062d3a1855c2b476ab2b453064a321bc37343a9440bc75244bacf095c45d56a0b6a9345ed4bb75ff81bcd803020474281ef4bf8a152838bd629065fef37443369bd1bff4a37c920b561f5e8744d434bf9223187e46a3a9038f4289f48d9fdaf1ea1b004651bb56be6af22de8c331b2dc1eb50973df35b43d8edb3ffffff1b3ddfb2a1571b78611b4172b0808125fa1fd8669f1b707f0e7a9f98747a9f9f1b7325b1acf83ce1f0467883c6c5a8b8ff466a1fa2a060eba0ffffbf4cfdb372efe8c8f7ff92b3fe8343f8dd7bffffff", + "cborBytes": [ + 216, 102, 159, 27, 215, 15, 217, 16, 203, 32, 210, 49, 159, 216, 102, 159, 27, 44, 214, 88, 124, 29, 200, 33, 137, + 159, 191, 75, 42, 110, 248, 255, 84, 139, 241, 186, 169, 226, 231, 27, 143, 64, 98, 211, 161, 133, 92, 43, 71, + 106, 178, 180, 83, 6, 74, 50, 27, 195, 115, 67, 169, 68, 11, 199, 82, 68, 186, 207, 9, 92, 69, 213, 106, 11, 106, + 147, 69, 237, 75, 183, 95, 248, 27, 205, 128, 48, 32, 71, 66, 129, 239, 75, 248, 161, 82, 131, 139, 214, 41, 6, + 95, 239, 55, 68, 51, 105, 189, 27, 255, 74, 55, 201, 32, 181, 97, 245, 232, 116, 77, 67, 75, 249, 34, 49, 135, + 228, 106, 58, 144, 56, 244, 40, 159, 72, 217, 253, 175, 30, 161, 176, 4, 101, 27, 181, 107, 230, 175, 34, 222, + 140, 51, 27, 45, 193, 235, 80, 151, 61, 243, 91, 67, 216, 237, 179, 255, 255, 255, 27, 61, 223, 178, 161, 87, 27, + 120, 97, 27, 65, 114, 176, 128, 129, 37, 250, 31, 216, 102, 159, 27, 112, 127, 14, 122, 159, 152, 116, 122, 159, + 159, 27, 115, 37, 177, 172, 248, 60, 225, 240, 70, 120, 131, 198, 197, 168, 184, 255, 70, 106, 31, 162, 160, 96, + 235, 160, 255, 255, 191, 76, 253, 179, 114, 239, 232, 200, 247, 255, 146, 179, 254, 131, 67, 248, 221, 123, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2179, + "sample": { + "_tag": "ByteArray", + "bytearray": "3607b6" + }, + "cborHex": "433607b6", + "cborBytes": [67, 54, 7, 182], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2180, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "26a38e77847fc4e45b43" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4109035357256956604" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9102" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12569028722758273479" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4a26a38e77847fc4e45b43d8669f1bffffffffffffffff9f1b390639e306d23abcffff429102d8669f1bae6e29079fb049c780ffff", + "cborBytes": [ + 191, 74, 38, 163, 142, 119, 132, 127, 196, 228, 91, 67, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, + 159, 27, 57, 6, 57, 227, 6, 210, 58, 188, 255, 255, 66, 145, 2, 216, 102, 159, 27, 174, 110, 41, 7, 159, 176, 73, + 199, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2181, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "89500784011712025" + } + }, + "cborHex": "1b013df87d26231619", + "cborBytes": [27, 1, 61, 248, 125, 38, 35, 22, 25], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2182, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6385089018843635944" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6f0e4ccee675" + }, + { + "_tag": "ByteArray", + "bytearray": "f66c21ec17585339b6deaac7" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a17c617cc9b87eed4cb73f" + }, + { + "_tag": "ByteArray", + "bytearray": "75eb94108377b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4364043459251796245" + } + }, + { + "_tag": "ByteArray", + "bytearray": "40b1346a8ec98a01" + }, + { + "_tag": "ByteArray", + "bytearray": "0a9fc4934714029ace" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8731262921831749398" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1644a59a1cd88aeb" + }, + { + "_tag": "ByteArray", + "bytearray": "c20e1548e9a45b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "99126be056343f" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6bcfc4bc7e9a0520" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79f9fd8669f1b589c64a20b6c20e89f466f0e4ccee6754cf66c21ec17585339b6deaac7ffff9f4ba17c617cc9b87eed4cb73f4775eb94108377b61b3c9032678d11f9154840b1346a8ec98a01490a9fc4934714029aceffd8669f1b792bad5e005217169f481644a59a1cd88aeb47c20e1548e9a45bffff4799126be056343f80ff486bcfc4bc7e9a0520ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 159, 216, 102, 159, 27, 88, 156, 100, 162, 11, + 108, 32, 232, 159, 70, 111, 14, 76, 206, 230, 117, 76, 246, 108, 33, 236, 23, 88, 83, 57, 182, 222, 170, 199, 255, + 255, 159, 75, 161, 124, 97, 124, 201, 184, 126, 237, 76, 183, 63, 71, 117, 235, 148, 16, 131, 119, 182, 27, 60, + 144, 50, 103, 141, 17, 249, 21, 72, 64, 177, 52, 106, 142, 201, 138, 1, 73, 10, 159, 196, 147, 71, 20, 2, 154, + 206, 255, 216, 102, 159, 27, 121, 43, 173, 94, 0, 82, 23, 22, 159, 72, 22, 68, 165, 154, 28, 216, 138, 235, 71, + 194, 14, 21, 72, 233, 164, 91, 255, 255, 71, 153, 18, 107, 224, 86, 52, 63, 128, 255, 72, 107, 207, 196, 188, 126, + 154, 5, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2183, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4298263085967568833" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8706123625895910091" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5746339982503413548" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "990a65ad4c" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "668c5efbb4f1aaef0dfe43" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10471860437347814112" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18403776601063640314" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17497973516144547705" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e4d2261094f55d38454920" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7911557714029646029" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8609624291780097729" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2cb023b5e9c0571abc43" + }, + { + "_tag": "ByteArray", + "bytearray": "c1c52b5adabdf35526" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07b1cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18323342405681994459" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b3ba67f80e6456fc19f1b78d25d4f8c295acbbf1b4fbf19c4c7bd872c45990a65ad4cff4b668c5efbb4f1aaef0dfe43d8669f1b91538595e1954ae09fd8669f1bff67594fb00b4cfa9f1bf2d54a3466fd1779ffff9f4be4d2261094f55d384549201b6dcb7fd2dcbd10cd1b777b87ad792076c14a2cb023b5e9c0571abc4349c1c52b5adabdf35526ffbf4307b1cb1bfe4996d63486dadbffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 59, 166, 127, 128, 230, 69, 111, 193, 159, 27, 120, 210, 93, 79, 140, 41, 90, 203, 191, 27, 79, + 191, 25, 196, 199, 189, 135, 44, 69, 153, 10, 101, 173, 76, 255, 75, 102, 140, 94, 251, 180, 241, 170, 239, 13, + 254, 67, 216, 102, 159, 27, 145, 83, 133, 149, 225, 149, 74, 224, 159, 216, 102, 159, 27, 255, 103, 89, 79, 176, + 11, 76, 250, 159, 27, 242, 213, 74, 52, 102, 253, 23, 121, 255, 255, 159, 75, 228, 210, 38, 16, 148, 245, 93, 56, + 69, 73, 32, 27, 109, 203, 127, 210, 220, 189, 16, 205, 27, 119, 123, 135, 173, 121, 32, 118, 193, 74, 44, 176, 35, + 181, 233, 192, 87, 26, 188, 67, 73, 193, 197, 43, 90, 218, 189, 243, 85, 38, 255, 191, 67, 7, 177, 203, 27, 254, + 73, 150, 214, 52, 134, 218, 219, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2184, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "67540ae85bb52e9a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e82b8fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89a6cab95874b971b00dfeb8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4cf9cc7dfe158bf0625f5d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2365f4b6378ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3175135507020924498" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d85f9adc0cf3a5fc0d86" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9045456058336355957" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da3ccab73e5478484152e5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d145424" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e87b9ce52571c28ac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7caa39" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c540c3623790e" + } + } + ] + } + } + ] + }, + "cborHex": "bf4867540ae85bb52e9a440e82b8fc4c89a6cab95874b971b00dfeb84b4cf9cc7dfe158bf0625f5d47c2365f4b6378ed1b2c1058ebc9b646524ad85f9adc0cf3a5fc0d86d8669f1b7d87ea5c348b267580ff4bda3ccab73e5478484152e5bf443d145424491e87b9ce52571c28ac437caa39472c540c3623790effff", + "cborBytes": [ + 191, 72, 103, 84, 10, 232, 91, 181, 46, 154, 68, 14, 130, 184, 252, 76, 137, 166, 202, 185, 88, 116, 185, 113, + 176, 13, 254, 184, 75, 76, 249, 204, 125, 254, 21, 139, 240, 98, 95, 93, 71, 194, 54, 95, 75, 99, 120, 237, 27, + 44, 16, 88, 235, 201, 182, 70, 82, 74, 216, 95, 154, 220, 12, 243, 165, 252, 13, 134, 216, 102, 159, 27, 125, 135, + 234, 92, 52, 139, 38, 117, 128, 255, 75, 218, 60, 202, 183, 62, 84, 120, 72, 65, 82, 229, 191, 68, 61, 20, 84, 36, + 73, 30, 135, 185, 206, 82, 87, 28, 40, 172, 67, 124, 170, 57, 71, 44, 84, 12, 54, 35, 121, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2185, + "sample": { + "_tag": "ByteArray", + "bytearray": "faf9ea4e2406075a" + }, + "cborHex": "48faf9ea4e2406075a", + "cborBytes": [72, 250, 249, 234, 78, 36, 6, 7, 90], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2186, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10646178831284506180" + } + }, + "cborHex": "1b93bed33dbdff0e44", + "cborBytes": [27, 147, 190, 211, 61, 189, 255, 14, 68], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2187, + "sample": { + "_tag": "ByteArray", + "bytearray": "81f9248a22f36e852ee6" + }, + "cborHex": "4a81f9248a22f36e852ee6", + "cborBytes": [74, 129, 249, 36, 138, 34, 243, 110, 133, 46, 230], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2188, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8615476489135900618" + } + }, + "cborHex": "1b7790523859acc7ca", + "cborBytes": [27, 119, 144, 82, 56, 89, 172, 199, 202], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2189, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12501194467460267885" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8878263657005150361" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7152fd683a4f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9739630965151462121" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17963875582699200003" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "988575971628646270" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15927910847456863497" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bad7d2a224d0c3f6d9fbf1b7b35edc1ca0d7099467152fd683a4f1b872a1ec2913f72e91bf94c81aa70195e03ffd8669f1b0db8209bc6697f7e9f1bdd0b4e86acc1e509ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 173, 125, 42, 34, 77, 12, 63, 109, 159, 191, 27, 123, 53, 237, 193, 202, 13, 112, 153, 70, 113, + 82, 253, 104, 58, 79, 27, 135, 42, 30, 194, 145, 63, 114, 233, 27, 249, 76, 129, 170, 112, 25, 94, 3, 255, 216, + 102, 159, 27, 13, 184, 32, 155, 198, 105, 127, 126, 159, 27, 221, 11, 78, 134, 172, 193, 229, 9, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2190, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2635420378558428886" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12039505053818511374" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6058236549747538783" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13786069820373568718" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0ac0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4938424847530070835" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ae27a6b2da7a202eb582" + } + ] + }, + "cborHex": "9f9fd8669f1b2492e4df09ccf6d69f1ba714ea0ef45f600e1b54132e0b48fd7b5f1bbf51f575bc198cce420ac01b4488cf3be2fe1333ffffff4aae27a6b2da7a202eb582ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 36, 146, 228, 223, 9, 204, 246, 214, 159, 27, 167, 20, 234, 14, 244, 95, 96, 14, 27, + 84, 19, 46, 11, 72, 253, 123, 95, 27, 191, 81, 245, 117, 188, 25, 140, 206, 66, 10, 192, 27, 68, 136, 207, 59, + 226, 254, 19, 51, 255, 255, 255, 74, 174, 39, 166, 178, 218, 122, 32, 46, 181, 130, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2191, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11298864088507001461" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16445496853886974501" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14041256269997329043" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "97325371984779632" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3289904490880533440" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf1b9ccda10648e0aa751be43a2441b2bcba251bc2dc902f0d6aca931b0159c4e900c91970ffd8669f1b2da816b42be583c080ffff", + "cborBytes": [ + 159, 191, 27, 156, 205, 161, 6, 72, 224, 170, 117, 27, 228, 58, 36, 65, 178, 188, 186, 37, 27, 194, 220, 144, 47, + 13, 106, 202, 147, 27, 1, 89, 196, 233, 0, 201, 25, 112, 255, 216, 102, 159, 27, 45, 168, 22, 180, 43, 229, 131, + 192, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2192, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7243100921765462319" + } + }, + "cborHex": "1b6484a9e9aa22812f", + "cborBytes": [27, 100, 132, 169, 233, 170, 34, 129, 47], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2193, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2628901207987941173" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15578507012041418757" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8817df0fa3cbc39078" + }, + { + "_tag": "ByteArray", + "bytearray": "3ad984" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9697065646531823829" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17998724875773788018" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "547770282570994634" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89fd8669f1b247bbbb85bb76f359fa0d8669f1bd831f996c7a928059f498817df0fa3cbc39078433ad984ffffffffd8669f1b8692e5d4092c48d59fd8669f1bf9c850e9c67bbf7280ff1b079a122b7728d3caffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 216, 102, 159, 27, 36, 123, 187, 184, 91, 183, + 111, 53, 159, 160, 216, 102, 159, 27, 216, 49, 249, 150, 199, 169, 40, 5, 159, 73, 136, 23, 223, 15, 163, 203, + 195, 144, 120, 67, 58, 217, 132, 255, 255, 255, 255, 216, 102, 159, 27, 134, 146, 229, 212, 9, 44, 72, 213, 159, + 216, 102, 159, 27, 249, 200, 80, 233, 198, 123, 191, 114, 128, 255, 27, 7, 154, 18, 43, 119, 40, 211, 202, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2194, + "sample": { + "_tag": "ByteArray", + "bytearray": "591149" + }, + "cborHex": "43591149", + "cborBytes": [67, 89, 17, 73], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2195, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff180ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2196, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6845648747189033008" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd5d0ad770" + } + } + ] + }, + "cborHex": "bf1b5f00a144094cd83045bd5d0ad770ff", + "cborBytes": [191, 27, 95, 0, 161, 68, 9, 76, 216, 48, 69, 189, 93, 10, 215, 112, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2197, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5150971073930675299" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a4af1152de08b4fe1b71aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6176809747771664445" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11804720144418788952" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4946249050790360770" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e3b44fa167b8e8df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13407187663816327197" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0e8a9abbf28" + }, + { + "_tag": "ByteArray", + "bytearray": "40" + } + ] + } + ] + }, + "cborHex": "d8669f1b477bece695f344639fd905049f9f004ba4af1152de08b4fe1b71aa1b55b86fbd4d19a83dffd8669f1ba3d2ca6d60fad6589f1b44a49b4e2af8f6c2ffff48e3b44fa167b8e8df13ffd8669f1bba0fe6255ac5801d9f46c0e8a9abbf284140ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 71, 123, 236, 230, 149, 243, 68, 99, 159, 217, 5, 4, 159, 159, 0, 75, 164, 175, 17, 82, 222, 8, + 180, 254, 27, 113, 170, 27, 85, 184, 111, 189, 77, 25, 168, 61, 255, 216, 102, 159, 27, 163, 210, 202, 109, 96, + 250, 214, 88, 159, 27, 68, 164, 155, 78, 42, 248, 246, 194, 255, 255, 72, 227, 180, 79, 161, 103, 184, 232, 223, + 19, 255, 216, 102, 159, 27, 186, 15, 230, 37, 90, 197, 128, 29, 159, 70, 192, 232, 169, 171, 191, 40, 65, 64, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2198, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0bbda13be5" + }, + { + "_tag": "ByteArray", + "bytearray": "774146" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "20" + } + ] + } + ] + }, + "cborHex": "9f450bbda13be54377414614d87e9f4120ffff", + "cborBytes": [159, 69, 11, 189, 161, 59, 229, 67, 119, 65, 70, 20, 216, 126, 159, 65, 32, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2199, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0ff02fe0cf4c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b46e1e13ae9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "113e4ca8007516b02069" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "312ded028b6f0e861a2e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b347ac62" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "576752be" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7da66e47e7e4ca2db76416" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11444916383439739837" + } + } + ] + }, + "cborHex": "9f460ff02fe0cf4cbf462b46e1e13ae94a113e4ca8007516b020694a312ded028b6f0e861a2e44b347ac6241f244576752beff4b7da66e47e7e4ca2db764161b9ed482d01ef95bbdff", + "cborBytes": [ + 159, 70, 15, 240, 47, 224, 207, 76, 191, 70, 43, 70, 225, 225, 58, 233, 74, 17, 62, 76, 168, 0, 117, 22, 176, 32, + 105, 74, 49, 45, 237, 2, 139, 111, 14, 134, 26, 46, 68, 179, 71, 172, 98, 65, 242, 68, 87, 103, 82, 190, 255, 75, + 125, 166, 110, 71, 231, 228, 202, 45, 183, 100, 22, 27, 158, 212, 130, 208, 30, 249, 91, 189, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2200, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1107877940028604326" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "656146342629492254" + } + } + ] + }, + "cborHex": "d8669f1b0f5ff91ddde57fa69f1b091b199f491a461effff", + "cborBytes": [ + 216, 102, 159, 27, 15, 95, 249, 29, 221, 229, 127, 166, 159, 27, 9, 27, 25, 159, 73, 26, 70, 30, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2201, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3865424350816277989" + } + }, + "cborHex": "1b35a4bef7988c95e5", + "cborBytes": [27, 53, 164, 190, 247, 152, 140, 149, 229], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2202, + "sample": { + "_tag": "ByteArray", + "bytearray": "0903ef00" + }, + "cborHex": "440903ef00", + "cborBytes": [68, 9, 3, 239, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2203, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa18eecefb0a1d" + }, + "cborHex": "47fa18eecefb0a1d", + "cborBytes": [71, 250, 24, 238, 206, 251, 10, 29], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2204, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "72bd5752739b6bad67926c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10744187461117813903" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8560285453148159183" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13403304991501709570" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d82" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15720802952000168433" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8dbf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16589387169075696105" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6" + } + } + ] + } + ] + }, + "cborHex": "9f4b72bd5752739b6bad67926cbf1b951b05921c22248f1b76cc3e43ead6fccf1bba021ae042adf102428d821bda2b82fe11e1e1f1428dbf1be63957bc662e11e941d6ffff", + "cborBytes": [ + 159, 75, 114, 189, 87, 82, 115, 155, 107, 173, 103, 146, 108, 191, 27, 149, 27, 5, 146, 28, 34, 36, 143, 27, 118, + 204, 62, 67, 234, 214, 252, 207, 27, 186, 2, 26, 224, 66, 173, 241, 2, 66, 141, 130, 27, 218, 43, 130, 254, 17, + 225, 225, 241, 66, 141, 191, 27, 230, 57, 87, 188, 102, 46, 17, 233, 65, 214, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2205, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + }, + "cborHex": "9f13ff", + "cborBytes": [159, 19, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2206, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1821124985093322777" + } + }, + "cborHex": "1b1945ef8674137819", + "cborBytes": [27, 25, 69, 239, 134, 116, 19, 120, 25], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2207, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f302f5af1093bb57252298" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c0a8d7decc38c355d3d1d49" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9718d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11954045161561237008" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5077045630765859586" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16427968009486918315" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16332877598091265576" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bff5d4c1e4aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5997497470637043407" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17618439205288633682" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18013644573281653459" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "646556443125562420" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4d14599bec14" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17883202784361648468" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9977791637203785591" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2997393881462266775" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15960059178907401984" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11035262631955443153" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82fc6a40342759ec4b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17629016293413981650" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dde1bd01" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3737080606830107625" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1c" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1446296341120096120" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17133979300713130591" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3421980153152303220" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5664033257919489973" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3738985302658488207" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7497490374939196563" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7737979763425209283" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6215757789209390534" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15105422639499099268" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1716cc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17119105423630059943" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15791539743961937092" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "01" + } + ] + }, + "cborHex": "9fbf4bf302f5af1093bb572522984c0c0a8d7decc38c355d3d1d4943f9718d1ba5e54cbd3bd5a610ff9fd8669f1b46754a1a123f83029f415e1be3fbdddd92f2e2ab1be2aa09a3e22a4628ffff46bff5d4c1e4aa1b533b642c669feecfd8669f1bf481451c580b65529f1bf9fd524c8c9892d31b08f907a8cfbd3c34464d14599bec141bf82de62ee0271154ffffffd8669f1b8a783ca1226517779fbf1b2998e1dab47cdb971bdd7d854360fcff001b992520e57cd8add14982fc6a40342759ec4b1bf4a6d8ea94838dd244dde1bd01ffd8669f1b33dcc703131c1be99f411cffff80bf1b141246dc046917781bedc81f64efe6ea5f1b2f7d50d1a11470741b4e9ab03d1e4a27b51b33e38b52a15d978f1b680c6fc5c9293c931b6b62d398e61eebc31b5642cec6dbb16dc61bd1a13ddbd17cbc84431716cc1bed9347ae8feec9a71bdb26d1badf5074c4ffffff4101ff", + "cborBytes": [ + 159, 191, 75, 243, 2, 245, 175, 16, 147, 187, 87, 37, 34, 152, 76, 12, 10, 141, 125, 236, 195, 140, 53, 93, 61, + 29, 73, 67, 249, 113, 141, 27, 165, 229, 76, 189, 59, 213, 166, 16, 255, 159, 216, 102, 159, 27, 70, 117, 74, 26, + 18, 63, 131, 2, 159, 65, 94, 27, 227, 251, 221, 221, 146, 242, 226, 171, 27, 226, 170, 9, 163, 226, 42, 70, 40, + 255, 255, 70, 191, 245, 212, 193, 228, 170, 27, 83, 59, 100, 44, 102, 159, 238, 207, 216, 102, 159, 27, 244, 129, + 69, 28, 88, 11, 101, 82, 159, 27, 249, 253, 82, 76, 140, 152, 146, 211, 27, 8, 249, 7, 168, 207, 189, 60, 52, 70, + 77, 20, 89, 155, 236, 20, 27, 248, 45, 230, 46, 224, 39, 17, 84, 255, 255, 255, 216, 102, 159, 27, 138, 120, 60, + 161, 34, 101, 23, 119, 159, 191, 27, 41, 152, 225, 218, 180, 124, 219, 151, 27, 221, 125, 133, 67, 96, 252, 255, + 0, 27, 153, 37, 32, 229, 124, 216, 173, 209, 73, 130, 252, 106, 64, 52, 39, 89, 236, 75, 27, 244, 166, 216, 234, + 148, 131, 141, 210, 68, 221, 225, 189, 1, 255, 216, 102, 159, 27, 51, 220, 199, 3, 19, 28, 27, 233, 159, 65, 28, + 255, 255, 128, 191, 27, 20, 18, 70, 220, 4, 105, 23, 120, 27, 237, 200, 31, 100, 239, 230, 234, 95, 27, 47, 125, + 80, 209, 161, 20, 112, 116, 27, 78, 154, 176, 61, 30, 74, 39, 181, 27, 51, 227, 139, 82, 161, 93, 151, 143, 27, + 104, 12, 111, 197, 201, 41, 60, 147, 27, 107, 98, 211, 152, 230, 30, 235, 195, 27, 86, 66, 206, 198, 219, 177, + 109, 198, 27, 209, 161, 61, 219, 209, 124, 188, 132, 67, 23, 22, 204, 27, 237, 147, 71, 174, 143, 238, 201, 167, + 27, 219, 38, 209, 186, 223, 80, 116, 196, 255, 255, 255, 65, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2208, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6399008263993945942" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "037ebb16c0608bb77784f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f57395d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8ab8ee20de827930e" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9fbf1b58cdd81cda25ef564b037ebb16c0608bb77784f244f57395d449c8ab8ee20de827930effffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 191, 27, 88, 205, 216, 28, 218, 37, 239, 86, 75, + 3, 126, 187, 22, 192, 96, 139, 183, 119, 132, 242, 68, 245, 115, 149, 212, 73, 200, 171, 142, 226, 13, 232, 39, + 147, 14, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2209, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2465358614032482230" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1321456850413878161" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04e8cdadf39fb3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12388360318543144620" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac84dfe8d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14499264774107531184" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "564202355077308019" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1000943433212632351" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9590804493150888634" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88af36e3688d5b39493460" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b2236b698f15affb69f9fd8669f1b1256c2010aecfb9180ffffbf4704e8cdadf39fb31babec4c12c84f26ac45ac84dfe8d91bc937bc7ddd0387b0ffbf1b07d4730d7bd25e731b0de410bfd0e61d1f1b851961df4c7aa2ba4b88af36e3688d5b39493460ffffff", + "cborBytes": [ + 216, 102, 159, 27, 34, 54, 182, 152, 241, 90, 255, 182, 159, 159, 216, 102, 159, 27, 18, 86, 194, 1, 10, 236, 251, + 145, 128, 255, 255, 191, 71, 4, 232, 205, 173, 243, 159, 179, 27, 171, 236, 76, 18, 200, 79, 38, 172, 69, 172, + 132, 223, 232, 217, 27, 201, 55, 188, 125, 221, 3, 135, 176, 255, 191, 27, 7, 212, 115, 13, 123, 210, 94, 115, 27, + 13, 228, 16, 191, 208, 230, 29, 31, 27, 133, 25, 97, 223, 76, 122, 162, 186, 75, 136, 175, 54, 227, 104, 141, 91, + 57, 73, 52, 96, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2210, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e7fa4acf008b3bfa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + "cborHex": "9f48e7fa4acf008b3bfa06ff", + "cborBytes": [159, 72, 231, 250, 74, 207, 0, 139, 59, 250, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2211, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a44b41eeb516e2a81" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f50700024077ae6f35ae" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18236516704956472611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13225621508784396007" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc9f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7308868547985206291" + } + } + ] + } + } + ] + }, + "cborHex": "bf495a44b41eeb516e2a819f02ff4af50700024077ae6f35aebf1bfd151f526b685d231bb78ad8b09cdc16e7ff42fc9f9f1b656e513868aeec13ffff", + "cborBytes": [ + 191, 73, 90, 68, 180, 30, 235, 81, 110, 42, 129, 159, 2, 255, 74, 245, 7, 0, 2, 64, 119, 174, 111, 53, 174, 191, + 27, 253, 21, 31, 82, 107, 104, 93, 35, 27, 183, 138, 216, 176, 156, 220, 22, 231, 255, 66, 252, 159, 159, 27, 101, + 110, 81, 56, 104, 174, 236, 19, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2212, + "sample": { + "_tag": "ByteArray", + "bytearray": "12f8fcf3" + }, + "cborHex": "4412f8fcf3", + "cborBytes": [68, 18, 248, 252, 243], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2213, + "sample": { + "_tag": "ByteArray", + "bytearray": "00021c3de7a23e640040faf8" + }, + "cborHex": "4c00021c3de7a23e640040faf8", + "cborBytes": [76, 0, 2, 28, 61, 231, 162, 62, 100, 0, 64, 250, 248], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2214, + "sample": { + "_tag": "ByteArray", + "bytearray": "0509" + }, + "cborHex": "420509", + "cborBytes": [66, 5, 9], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2215, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f26" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1256644540256696357" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9177092377283713666" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37258b3041b434bbcd4f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4064611678956278217" + }, + "fields": [] + } + ] + }, + "cborHex": "d87c9fbf420f261b11707f8d26ef382541221b7f5b94e512f0da8241954a37258b3041b434bbcd4fffd8669f1b386866c96a17d1c980ffff", + "cborBytes": [ + 216, 124, 159, 191, 66, 15, 38, 27, 17, 112, 127, 141, 38, 239, 56, 37, 65, 34, 27, 127, 91, 148, 229, 18, 240, + 218, 130, 65, 149, 74, 55, 37, 139, 48, 65, 180, 52, 187, 205, 79, 255, 216, 102, 159, 27, 56, 104, 102, 201, 106, + 23, 209, 201, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2216, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5663411267341779552" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eb" + }, + { + "_tag": "ByteArray", + "bytearray": "00d97dd91c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0706" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89f9fd8669f1bfffffffffffffff29f1b4e987a8aa6da026041eb4500d97dd91cffff420706ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 242, 159, 27, 78, 152, 122, 138, 166, 218, 2, 96, 65, 235, 69, 0, 217, 125, 217, 28, 255, 255, 66, 7, 6, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2217, + "sample": { + "_tag": "ByteArray", + "bytearray": "30a0bcd82c9f794b" + }, + "cborHex": "4830a0bcd82c9f794b", + "cborBytes": [72, 48, 160, 188, 216, 44, 159, 121, 75], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2218, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "749c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01778110" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2035881844828541112" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17344598929753244740" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15096034747547116378" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7405810098164276773" + } + } + } + ] + }, + "cborHex": "bf1bffffffffffffffff42749c4401778110d905029f1b1c40e7c055ac10b81bf0b464d4bb9004441bd17fe39ee47fe35aff4207f91b66c6b90bef151e25ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 255, 66, 116, 156, 68, 1, 119, 129, 16, 217, 5, 2, 159, 27, 28, 64, + 231, 192, 85, 172, 16, 184, 27, 240, 180, 100, 212, 187, 144, 4, 68, 27, 209, 127, 227, 158, 228, 127, 227, 90, + 255, 66, 7, 249, 27, 102, 198, 185, 11, 239, 21, 30, 37, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2219, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3985457215535338061" + } + }, + "cborHex": "1b374f3038bf80524d", + "cborBytes": [27, 55, 79, 48, 56, 191, 128, 82, 77], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2220, + "sample": { + "_tag": "ByteArray", + "bytearray": "0070" + }, + "cborHex": "420070", + "cborBytes": [66, 0, 112], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2221, + "sample": { + "_tag": "ByteArray", + "bytearray": "01fe7e430201ff014ebbbdd2" + }, + "cborHex": "4c01fe7e430201ff014ebbbdd2", + "cborBytes": [76, 1, 254, 126, 67, 2, 1, 255, 1, 78, 187, 189, 210], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2222, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4645525321597099996" + }, + "fields": [] + }, + "cborHex": "d8669f1b407838aabce09fdc80ff", + "cborBytes": [216, 102, 159, 27, 64, 120, 56, 170, 188, 224, 159, 220, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2223, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4222360137030744855" + }, + "fields": [] + }, + "cborHex": "d8669f1b3a98d62c717cbb1780ff", + "cborBytes": [216, 102, 159, 27, 58, 152, 214, 44, 113, 124, 187, 23, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2224, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13080675057619585264" + } + }, + "cborHex": "1bb587e4a917ba48f0", + "cborBytes": [27, 181, 135, 228, 169, 23, 186, 72, 240], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2225, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7819492908789764542" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5730083669255443309" + } + } + ] + }, + "cborHex": "d8669f1b6c846b5f001991be9f1b4f8558bce73cd36dffff", + "cborBytes": [ + 216, 102, 159, 27, 108, 132, 107, 95, 0, 25, 145, 190, 159, 27, 79, 133, 88, 188, 231, 60, 211, 109, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2226, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6830477706258026075" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2d0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10412970542960981915" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17255337566813065687" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14690440664386531143" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11714896775007549492" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17065237005950582048" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3155928876939365420" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fefdf827" + }, + { + "_tag": "ByteArray", + "bytearray": "affc0001bf31" + }, + { + "_tag": "ByteArray", + "bytearray": "07044e07" + } + ] + } + ] + }, + "cborHex": "9fa0bf1b5ecabb48cfbc0e5b42b2d01b90824d89ddcbb79b1bef774618255891d71bcbdeedf372b66f471ba293ac8c76b1b8341becd3e6a43388fd201b2bcc1c97be5e4c2cffa09f44fefdf82746affc0001bf314407044e07ffff", + "cborBytes": [ + 159, 160, 191, 27, 94, 202, 187, 72, 207, 188, 14, 91, 66, 178, 208, 27, 144, 130, 77, 137, 221, 203, 183, 155, + 27, 239, 119, 70, 24, 37, 88, 145, 215, 27, 203, 222, 237, 243, 114, 182, 111, 71, 27, 162, 147, 172, 140, 118, + 177, 184, 52, 27, 236, 211, 230, 164, 51, 136, 253, 32, 27, 43, 204, 28, 151, 190, 94, 76, 44, 255, 160, 159, 68, + 254, 253, 248, 39, 70, 175, 252, 0, 1, 191, 49, 68, 7, 4, 78, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2227, + "sample": { + "_tag": "ByteArray", + "bytearray": "1aeb44e197f7317d980093" + }, + "cborHex": "4b1aeb44e197f7317d980093", + "cborBytes": [75, 26, 235, 68, 225, 151, 247, 49, 125, 152, 0, 147], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2228, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7521918058078745111" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17828770898235521571" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14296065834545005858" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7557343207747434407" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5432587588126778460" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4103131478538482210" + } + } + ] + }, + "cborHex": "d8669f1b6863389ef96132179fd8669f1bf76c84abcb267a239fd8669f1bc665d421f9a7452280ffd8669f1b68e1139b5f7f37a780ffffffd8669f1b4b646da0d97e245c80ff1b38f1405725027222ffff", + "cborBytes": [ + 216, 102, 159, 27, 104, 99, 56, 158, 249, 97, 50, 23, 159, 216, 102, 159, 27, 247, 108, 132, 171, 203, 38, 122, + 35, 159, 216, 102, 159, 27, 198, 101, 212, 33, 249, 167, 69, 34, 128, 255, 216, 102, 159, 27, 104, 225, 19, 155, + 95, 127, 55, 167, 128, 255, 255, 255, 216, 102, 159, 27, 75, 100, 109, 160, 217, 126, 36, 92, 128, 255, 27, 56, + 241, 64, 87, 37, 2, 114, 34, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2229, + "sample": { + "_tag": "ByteArray", + "bytearray": "9b" + }, + "cborHex": "419b", + "cborBytes": [65, 155], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2230, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5461513695328277411" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d2" + }, + { + "_tag": "ByteArray", + "bytearray": "fa08b206e6fd013a4fff01ff" + }, + { + "_tag": "ByteArray", + "bytearray": "3c529973b9c1a7" + }, + { + "_tag": "ByteArray", + "bytearray": "68841ad6be989cfed2004ec0" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fef41c5c5f8a36f0" + } + } + ] + }, + "cborHex": "bf04d8669f1b4bcb31c501f913a39f41d24cfa08b206e6fd013a4fff01ff473c529973b9c1a74c68841ad6be989cfed2004ec0ffff1448fef41c5c5f8a36f0ff", + "cborBytes": [ + 191, 4, 216, 102, 159, 27, 75, 203, 49, 197, 1, 249, 19, 163, 159, 65, 210, 76, 250, 8, 178, 6, 230, 253, 1, 58, + 79, 255, 1, 255, 71, 60, 82, 153, 115, 185, 193, 167, 76, 104, 132, 26, 214, 190, 152, 156, 254, 210, 0, 78, 192, + 255, 255, 20, 72, 254, 244, 28, 92, 95, 138, 54, 240, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2231, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8102933f1581b19a8ebd" + }, + { + "_tag": "ByteArray", + "bytearray": "70151d152e05" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1776479682753772173" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "669f5c0ee30416" + }, + { + "_tag": "ByteArray", + "bytearray": "2b5a8c4b227a3d9130118b60" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9718171676942195741" + } + } + ] + }, + "cborHex": "9f9fa04a8102933f1581b19a8ebd4670151d152e05d8669f1b18a752dbf93cba8d80ffff47669f5c0ee304164c2b5a8c4b227a3d9130118b601b86dde1a6ae66dc1dff", + "cborBytes": [ + 159, 159, 160, 74, 129, 2, 147, 63, 21, 129, 177, 154, 142, 189, 70, 112, 21, 29, 21, 46, 5, 216, 102, 159, 27, + 24, 167, 82, 219, 249, 60, 186, 141, 128, 255, 255, 71, 102, 159, 92, 14, 227, 4, 22, 76, 43, 90, 140, 75, 34, + 122, 61, 145, 48, 17, 139, 96, 27, 134, 221, 225, 166, 174, 102, 220, 29, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2232, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b70a467a5f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "023dfe310dd5ce52" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdf61be8703be6c11acf5f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a21f19ef5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bbb84e59acd469f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "501ec717e6b450" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77102783" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12083536022311883911" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9483ab0c1d85" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7831493148899977771" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95084b1a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dab5f71b7b2ff7d110ad42c5" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13003434766454871722" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13279893698989678923" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2986509092171166077" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4895587401863568735" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f45b70a467a5fbf48023dfe310dd5ce524bbdf61be8703be6c11acf5f450a21f19ef541f9481bbb84e59acd469f47501ec717e6b45044771027831ba7b157fdb0895487469483ab0c1d851b6caf0d86a116aa2b4495084b1a4cdab5f71b7b2ff7d110ad42c5ff9f1bb4757b066281d6aa1bb84ba8f5973a614b1b297236323556317d1b43f09ecdd6f49d5fffffff", + "cborBytes": [ + 159, 159, 69, 183, 10, 70, 122, 95, 191, 72, 2, 61, 254, 49, 13, 213, 206, 82, 75, 189, 246, 27, 232, 112, 59, + 230, 193, 26, 207, 95, 69, 10, 33, 241, 158, 245, 65, 249, 72, 27, 187, 132, 229, 154, 205, 70, 159, 71, 80, 30, + 199, 23, 230, 180, 80, 68, 119, 16, 39, 131, 27, 167, 177, 87, 253, 176, 137, 84, 135, 70, 148, 131, 171, 12, 29, + 133, 27, 108, 175, 13, 134, 161, 22, 170, 43, 68, 149, 8, 75, 26, 76, 218, 181, 247, 27, 123, 47, 247, 209, 16, + 173, 66, 197, 255, 159, 27, 180, 117, 123, 6, 98, 129, 214, 170, 27, 184, 75, 168, 245, 151, 58, 97, 75, 27, 41, + 114, 54, 50, 53, 86, 49, 125, 27, 67, 240, 158, 205, 214, 244, 157, 95, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2233, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15479503293820215017" + } + } + ] + }, + "cborHex": "9f1bd6d23e3b57a49ee9ff", + "cborBytes": [159, 27, 214, 210, 62, 59, 87, 164, 158, 233, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2234, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "534553500785945378" + } + }, + "cborHex": "1b076b1d93a7c9ab22", + "cborBytes": [27, 7, 107, 29, 147, 167, 201, 171, 34], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2235, + "sample": { + "_tag": "ByteArray", + "bytearray": "ade400a48cfedf96ce80ca" + }, + "cborHex": "4bade400a48cfedf96ce80ca", + "cborBytes": [75, 173, 228, 0, 164, 140, 254, 223, 150, 206, 128, 202], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2236, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12973934439616601592" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9bfd" + }, + { + "_tag": "ByteArray", + "bytearray": "55902f75ad2f6ef260" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3147939673257963325" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9061c73269" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "900481536207135322" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5962535084646807917" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8471949580641135838" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17376413634692719654" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17357796495978421372" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0cb214" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12413919435034537487" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17785b07218b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5009102193680486390" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b801127649" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10819235615531583245" + } + } + ] + } + ] + }, + "cborHex": "d905079f9fd8669f1bb40caca24c8dddf89f429bfd4955902f75ad2f6ef260ffffff9f1b2bafba744ee66f3d459061c73269bf1b0c7f272fac6ca25a1b52bf2e11912d396d1b75926941dd226cde1bf1256c22f61d2426ffd8669f1bf0e347f292505c7c9f430cb2141bac4719f4538d2e0f4617785b07218b1b4583e7e7e1f48ff645b801127649ffff1b9625a5783503c70dffff", + "cborBytes": [ + 217, 5, 7, 159, 159, 216, 102, 159, 27, 180, 12, 172, 162, 76, 141, 221, 248, 159, 66, 155, 253, 73, 85, 144, 47, + 117, 173, 47, 110, 242, 96, 255, 255, 255, 159, 27, 43, 175, 186, 116, 78, 230, 111, 61, 69, 144, 97, 199, 50, + 105, 191, 27, 12, 127, 39, 47, 172, 108, 162, 90, 27, 82, 191, 46, 17, 145, 45, 57, 109, 27, 117, 146, 105, 65, + 221, 34, 108, 222, 27, 241, 37, 108, 34, 246, 29, 36, 38, 255, 216, 102, 159, 27, 240, 227, 71, 242, 146, 80, 92, + 124, 159, 67, 12, 178, 20, 27, 172, 71, 25, 244, 83, 141, 46, 15, 70, 23, 120, 91, 7, 33, 139, 27, 69, 131, 231, + 231, 225, 244, 143, 246, 69, 184, 1, 18, 118, 73, 255, 255, 27, 150, 37, 165, 120, 53, 3, 199, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2237, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f0f95eaf71adfd62e9180188" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0ebdccab16f632277c14" + }, + { + "_tag": "ByteArray", + "bytearray": "bcf661b707dd7c51a5f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17690120151135664632" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10448432256365569980" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2efc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07a12d5d53" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97a93b8421f67a1358" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9f9f4cf0f95eaf71adfd62e9180188ffd905039f4a0ebdccab16f632277c144abcf661b707dd7c51a5f81bf57fee8d1a6bb9f8ff1b910049c76c6727bcff9f14d8669f1bfffffffffffffffe80ffff422efcbf4507a12d5d534997a93b8421f67a1358ff80ff", + "cborBytes": [ + 159, 159, 159, 76, 240, 249, 94, 175, 113, 173, 253, 98, 233, 24, 1, 136, 255, 217, 5, 3, 159, 74, 14, 189, 204, + 171, 22, 246, 50, 39, 124, 20, 74, 188, 246, 97, 183, 7, 221, 124, 81, 165, 248, 27, 245, 127, 238, 141, 26, 107, + 185, 248, 255, 27, 145, 0, 73, 199, 108, 103, 39, 188, 255, 159, 20, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 254, 128, 255, 255, 66, 46, 252, 191, 69, 7, 161, 45, 93, 83, 73, 151, 169, 59, 132, 33, 246, 122, 19, + 88, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2238, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "273536b716" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5696435019903426201" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8609231206046188571" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "06269e6b130068de429f" + }, + { + "_tag": "ByteArray", + "bytearray": "df9a93eed64fb295b7f9f76e" + }, + { + "_tag": "ByteArray", + "bytearray": "979cb70a" + }, + { + "_tag": "ByteArray", + "bytearray": "3b9cc1124744a75731" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8280344805492690484" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7573029139896659618" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10272467340051316561" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0b29ea276432" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3779041054880472999" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1359693639322757737" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "40dfc50aec23" + } + ] + }, + "cborHex": "9f45273536b716d8669f1b4f0dcd7837705e999fd8669f1b777a222b1197441b9f4a06269e6b130068de429f4cdf9a93eed64fb295b7f9f76e44979cb70a493b9cc1124744a75731ffffbf1b72e9b1babd248e341b6918cde10d38eea2ffffffd8669f1b8e8f229eb28f7f519f9f460b29ea2764321b3471d9d133c49fa7ff1b12de9a293730ea69ffff804640dfc50aec23ff", + "cborBytes": [ + 159, 69, 39, 53, 54, 183, 22, 216, 102, 159, 27, 79, 13, 205, 120, 55, 112, 94, 153, 159, 216, 102, 159, 27, 119, + 122, 34, 43, 17, 151, 68, 27, 159, 74, 6, 38, 158, 107, 19, 0, 104, 222, 66, 159, 76, 223, 154, 147, 238, 214, 79, + 178, 149, 183, 249, 247, 110, 68, 151, 156, 183, 10, 73, 59, 156, 193, 18, 71, 68, 167, 87, 49, 255, 255, 191, 27, + 114, 233, 177, 186, 189, 36, 142, 52, 27, 105, 24, 205, 225, 13, 56, 238, 162, 255, 255, 255, 216, 102, 159, 27, + 142, 143, 34, 158, 178, 143, 127, 81, 159, 159, 70, 11, 41, 234, 39, 100, 50, 27, 52, 113, 217, 209, 51, 196, 159, + 167, 255, 27, 18, 222, 154, 41, 55, 48, 234, 105, 255, 255, 128, 70, 64, 223, 197, 10, 236, 35, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2239, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17605047679324255638" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ade2b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "98efcba80783f854d157" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8368529619612096937" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b988a9fda" + }, + { + "_tag": "ByteArray", + "bytearray": "5c9823e831cd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4149157519422321973" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18055454411629749601" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e4f744dcd3b163e5a79ecacb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15600023252843421606" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e0c3e043805f" + }, + { + "_tag": "ByteArray", + "bytearray": "d55dfc6caeed9f" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1293071692153905548" + } + }, + { + "_tag": "ByteArray", + "bytearray": "280bdf4023a3233af2" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "29cd0e91b75b9b00db42ee" + }, + { + "_tag": "ByteArray", + "bytearray": "a96a6942d4d5f4b3d2e2" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf1bf451b196bbeff596434ade2bff9f9f4a98efcba80783f854d1571b7422fd59c55059a9450b988a9fda465c9823e831cd1b3994c4c7de4ef535ffd8669f1bfa91dc201f7365619f4ce4f744dcd3b163e5a79ecacb1bd87e6a7ef990dfa646e0c3e043805f47d55dfc6caeed9fffff9f1b11f1e9da5ff2618c49280bdf4023a3233af2ff4b29cd0e91b75b9b00db42ee4aa96a6942d4d5f4b3d2e2ff80a0ff", + "cborBytes": [ + 159, 191, 27, 244, 81, 177, 150, 187, 239, 245, 150, 67, 74, 222, 43, 255, 159, 159, 74, 152, 239, 203, 168, 7, + 131, 248, 84, 209, 87, 27, 116, 34, 253, 89, 197, 80, 89, 169, 69, 11, 152, 138, 159, 218, 70, 92, 152, 35, 232, + 49, 205, 27, 57, 148, 196, 199, 222, 78, 245, 53, 255, 216, 102, 159, 27, 250, 145, 220, 32, 31, 115, 101, 97, + 159, 76, 228, 247, 68, 220, 211, 177, 99, 229, 167, 158, 202, 203, 27, 216, 126, 106, 126, 249, 144, 223, 166, 70, + 224, 195, 224, 67, 128, 95, 71, 213, 93, 252, 108, 174, 237, 159, 255, 255, 159, 27, 17, 241, 233, 218, 95, 242, + 97, 140, 73, 40, 11, 223, 64, 35, 163, 35, 58, 242, 255, 75, 41, 205, 14, 145, 183, 91, 155, 0, 219, 66, 238, 74, + 169, 106, 105, 66, 212, 213, 244, 179, 210, 226, 255, 128, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2240, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18066483967819131782" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63235c4731189baf6663" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f51d730" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "def93fbd" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18185261591199653377" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1951160348204291834" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12360699528101937553" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "695d6a0d593836" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8877045620355576814" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0d355c49c73cdf87209126e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11138890969415975882" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6951708946565836824" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "21404a50cb732ec96bda" + }, + { + "_tag": "ByteArray", + "bytearray": "2396b4479649a592f0608a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2505884966521443599" + } + }, + { + "_tag": "ByteArray", + "bytearray": "27ce111e878e560f" + }, + { + "_tag": "ByteArray", + "bytearray": "6a0b613300abda16" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6a6c8fa7c6c2" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29fbf1bfab90b72ca262b864a63235c4731189baf6663440f51d73044def93fbdffbf1bfc5f07114b029e011b1b13e9ffbe8b56faffbf1bab8a06bb23dac191416eff9fbf47695d6a0d5938361b7b3199f5883b33eeff4c0d355c49c73cdf87209126e81b9a954a51ffd883cad8669f1b60796e7485f630189f4a21404a50cb732ec96bda4b2396b4479649a592f0608a1b22c6b119ad80950f4827ce111e878e560f486a0b613300abda16ffff466a6c8fa7c6c2ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 191, 27, 250, 185, 11, 114, 202, 38, 43, 134, 74, + 99, 35, 92, 71, 49, 24, 155, 175, 102, 99, 68, 15, 81, 215, 48, 68, 222, 249, 63, 189, 255, 191, 27, 252, 95, 7, + 17, 75, 2, 158, 1, 27, 27, 19, 233, 255, 190, 139, 86, 250, 255, 191, 27, 171, 138, 6, 187, 35, 218, 193, 145, 65, + 110, 255, 159, 191, 71, 105, 93, 106, 13, 89, 56, 54, 27, 123, 49, 153, 245, 136, 59, 51, 238, 255, 76, 13, 53, + 92, 73, 199, 60, 223, 135, 32, 145, 38, 232, 27, 154, 149, 74, 81, 255, 216, 131, 202, 216, 102, 159, 27, 96, 121, + 110, 116, 133, 246, 48, 24, 159, 74, 33, 64, 74, 80, 203, 115, 46, 201, 107, 218, 75, 35, 150, 180, 71, 150, 73, + 165, 146, 240, 96, 138, 27, 34, 198, 177, 25, 173, 128, 149, 15, 72, 39, 206, 17, 30, 135, 142, 86, 15, 72, 106, + 11, 97, 51, 0, 171, 218, 22, 255, 255, 70, 106, 108, 143, 167, 198, 194, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2241, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15064927622711542047" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3521695668771533989" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cc975fb50ed7770f81f89" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12949614381398619224" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "10626bd60d5103" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10944928328438176384" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77abf279a1cb27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11638356755082423715" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b20fc3f2c30737a2ded81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6551351020115052520" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad146e9d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "829fdda3cefb935536f57267" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79fd8669f1bd1115fdafeb1011f80ffbf41b21b30df938d5028b4a5ffbf4b0cc975fb50ed7770f81f891bb3b645ab7d8df4584710626bd60d51031b97e4325374aada804777abf279a1cb271ba183bfce5bf4ada34b9b20fc3f2c30737a2ded811b5aeb130ad0d9c7e844ad146e9d4c829fdda3cefb935536f57267ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 216, 102, 159, 27, 209, 17, 95, 218, 254, 177, 1, + 31, 128, 255, 191, 65, 178, 27, 48, 223, 147, 141, 80, 40, 180, 165, 255, 191, 75, 12, 201, 117, 251, 80, 237, + 119, 112, 248, 31, 137, 27, 179, 182, 69, 171, 125, 141, 244, 88, 71, 16, 98, 107, 214, 13, 81, 3, 27, 151, 228, + 50, 83, 116, 170, 218, 128, 71, 119, 171, 242, 121, 161, 203, 39, 27, 161, 131, 191, 206, 91, 244, 173, 163, 75, + 155, 32, 252, 63, 44, 48, 115, 122, 45, 237, 129, 27, 90, 235, 19, 10, 208, 217, 199, 232, 68, 173, 20, 110, 157, + 76, 130, 159, 221, 163, 206, 251, 147, 85, 54, 245, 114, 103, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2242, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "921974797426209939" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1966078468284385457" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8365157067885770277" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11501295352425107960" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10758469437821564490" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0878173b01f551" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2139172748011031473" + } + } + ] + } + } + ] + }, + "cborHex": "bf00bf1b0ccb83318473b4931b1b48e9f33ea288b11b7417020861adf6251b9f9ccf2fc22651f81b954dc2f3f040364a470878173b01f551ff1bfffffffffffffffd9f1b1dafde47ce64cbb1ffff", + "cborBytes": [ + 191, 0, 191, 27, 12, 203, 131, 49, 132, 115, 180, 147, 27, 27, 72, 233, 243, 62, 162, 136, 177, 27, 116, 23, 2, 8, + 97, 173, 246, 37, 27, 159, 156, 207, 47, 194, 38, 81, 248, 27, 149, 77, 194, 243, 240, 64, 54, 74, 71, 8, 120, 23, + 59, 1, 245, 81, 255, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 27, 29, 175, 222, 71, 206, 100, 203, 177, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2243, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6090997629607326842" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "161631d9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "971504278419592747" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e40ddf543c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "162b9610" + } + ] + }, + "cborHex": "d905079fd8669f1b54879212987db47a9f44161631d91b0d7b79fe74f8d62b45e40ddf543cffff44162b9610ff", + "cborBytes": [ + 217, 5, 7, 159, 216, 102, 159, 27, 84, 135, 146, 18, 152, 125, 180, 122, 159, 68, 22, 22, 49, 217, 27, 13, 123, + 121, 254, 116, 248, 214, 43, 69, 228, 13, 223, 84, 60, 255, 255, 68, 22, 43, 150, 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2244, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13811315938097550947" + }, + "fields": [] + }, + "cborHex": "d8669f1bbfaba6ab92fed66380ff", + "cborBytes": [216, 102, 159, 27, 191, 171, 166, 171, 146, 254, 214, 99, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2245, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14672916407112009012" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3534525063891424181" + } + } + ] + }, + "cborHex": "d8669f1bcba0abbb58e985349f1b310d27d1a2f693b5ffff", + "cborBytes": [ + 216, 102, 159, 27, 203, 160, 171, 187, 88, 233, 133, 52, 159, 27, 49, 13, 39, 209, 162, 246, 147, 181, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2246, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3b031fb5" + }, + { + "_tag": "ByteArray", + "bytearray": "9acaf274a7ef64a842" + }, + { + "_tag": "ByteArray", + "bytearray": "fb0191fffb3882523d" + }, + { + "_tag": "ByteArray", + "bytearray": "7e" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4414484672881026640" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15451422775456337782" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "493508580694307664" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf707b75" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12589665006692275723" + } + } + ] + } + } + ] + }, + "cborHex": "bf06d905099f443b031fb5499acaf274a7ef64a84249fb0191fffb3882523d417eff1b3d43666bc97ae650d8669f1bfffffffffffffff99f1bd66e7b262d748f761b06d94b707de4335044bf707b751baeb7799ee50f160bffffff", + "cborBytes": [ + 191, 6, 217, 5, 9, 159, 68, 59, 3, 31, 181, 73, 154, 202, 242, 116, 167, 239, 100, 168, 66, 73, 251, 1, 145, 255, + 251, 56, 130, 82, 61, 65, 126, 255, 27, 61, 67, 102, 107, 201, 122, 230, 80, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 249, 159, 27, 214, 110, 123, 38, 45, 116, 143, 118, 27, 6, 217, 75, 112, 125, 228, 51, 80, 68, + 191, 112, 123, 117, 27, 174, 183, 121, 158, 229, 15, 22, 11, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2247, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7933428511721811790" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17552569498985678808" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4916168200492112431" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6665229540768577063" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fb49d8eeddc4" + }, + { + "_tag": "ByteArray", + "bytearray": "2e54e105" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7140434995779608882" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9ba23cdb9bce83a34d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10315382886946929710" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8283364829927206424" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18066609211162633464" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9752561544802872699" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "58216f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5001007966827761042" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c320f396d0bbe623421" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af01ae65" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15898825246764198547" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2695691492882893396" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8459761541326518144" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18182106561573891529" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "668770212274187393" + } + }, + { + "_tag": "ByteArray", + "bytearray": "76b58aa90e5e" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18181669455579827221" + } + } + ] + }, + "cborHex": "d8669f1b6e193332c4226f4e9fd8669f1bf39740f63a65c7d89fd8669f1b4439bcee6e675a2f9f1b5c7fa6f413f3762746fb49d8eeddc4442e54e1051b6317ebcc09362132499ba23cdb9bce83a34dffffbf1b8f279a151a9d7c2e1b72f46c6cf8c66e181bfab97d5b472624f81b87580f0dc01c2d7bff80bf4358216f1b4567263fd5aacd924a7c320f396d0bbe62342141bf44af01ae651bdca3f9538b646a93ffd8669f1b256905216153ca549f1b75671c4cd34737801bfc53d195b6e92dc91b0947f2f6faf72c814676b58aa90e5effffffff1bfc52440a0b67cc15ffff", + "cborBytes": [ + 216, 102, 159, 27, 110, 25, 51, 50, 196, 34, 111, 78, 159, 216, 102, 159, 27, 243, 151, 64, 246, 58, 101, 199, + 216, 159, 216, 102, 159, 27, 68, 57, 188, 238, 110, 103, 90, 47, 159, 27, 92, 127, 166, 244, 19, 243, 118, 39, 70, + 251, 73, 216, 238, 221, 196, 68, 46, 84, 225, 5, 27, 99, 23, 235, 204, 9, 54, 33, 50, 73, 155, 162, 60, 219, 155, + 206, 131, 163, 77, 255, 255, 191, 27, 143, 39, 154, 21, 26, 157, 124, 46, 27, 114, 244, 108, 108, 248, 198, 110, + 24, 27, 250, 185, 125, 91, 71, 38, 36, 248, 27, 135, 88, 15, 13, 192, 28, 45, 123, 255, 128, 191, 67, 88, 33, 111, + 27, 69, 103, 38, 63, 213, 170, 205, 146, 74, 124, 50, 15, 57, 109, 11, 190, 98, 52, 33, 65, 191, 68, 175, 1, 174, + 101, 27, 220, 163, 249, 83, 139, 100, 106, 147, 255, 216, 102, 159, 27, 37, 105, 5, 33, 97, 83, 202, 84, 159, 27, + 117, 103, 28, 76, 211, 71, 55, 128, 27, 252, 83, 209, 149, 182, 233, 45, 201, 27, 9, 71, 242, 246, 250, 247, 44, + 129, 70, 118, 181, 138, 169, 14, 94, 255, 255, 255, 255, 27, 252, 82, 68, 10, 11, 103, 204, 21, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2248, + "sample": { + "_tag": "ByteArray", + "bytearray": "0424d2402da3287b9d0d" + }, + "cborHex": "4a0424d2402da3287b9d0d", + "cborBytes": [74, 4, 36, 210, 64, 45, 163, 40, 123, 157, 13], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2249, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1808914967548624042" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7825556899589068245" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6305934391842662347" + } + }, + { + "_tag": "ByteArray", + "bytearray": "adf96f042210c39d6e3906a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17812483596602739274" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17438153101788712078" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15277937423137699797" + } + }, + { + "_tag": "ByteArray", + "bytearray": "259ad4bbc4e917cdda" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17584502106431428066" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14154723993834987416" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f99ec550f29" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b191a8e94359f7caad8669f1b6c99f689e19d15d59f1b57832deb4ab367cb4cadf96f042210c39d6e3906a61bf732a774defa8a4affff1bf200c3dad2fe0c8e9f1bd4062323eec4f7d549259ad4bbc4e917cddaff1bf408b37fc5f415e2bf1bc46fae7a3a3b9f98462f99ec550f29ffff", + "cborBytes": [ + 191, 27, 25, 26, 142, 148, 53, 159, 124, 170, 216, 102, 159, 27, 108, 153, 246, 137, 225, 157, 21, 213, 159, 27, + 87, 131, 45, 235, 74, 179, 103, 203, 76, 173, 249, 111, 4, 34, 16, 195, 157, 110, 57, 6, 166, 27, 247, 50, 167, + 116, 222, 250, 138, 74, 255, 255, 27, 242, 0, 195, 218, 210, 254, 12, 142, 159, 27, 212, 6, 35, 35, 238, 196, 247, + 213, 73, 37, 154, 212, 187, 196, 233, 23, 205, 218, 255, 27, 244, 8, 179, 127, 197, 244, 21, 226, 191, 27, 196, + 111, 174, 122, 58, 59, 159, 152, 70, 47, 153, 236, 85, 15, 41, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2250, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5001106291355670538" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18060733468491827786" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7210987662440890921" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14296375816710970863" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10918694885536788210" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8270051119429050643" + } + } + } + ] + }, + "cborHex": "bf1b45677faccc39d80a1bfaa49d665476ca4a1b64129312d38382291bc666ee0f528addef1b9786ff260f4b6ef21b72c51fad2fe3e113ff", + "cborBytes": [ + 191, 27, 69, 103, 127, 172, 204, 57, 216, 10, 27, 250, 164, 157, 102, 84, 118, 202, 74, 27, 100, 18, 147, 18, 211, + 131, 130, 41, 27, 198, 102, 238, 15, 82, 138, 221, 239, 27, 151, 134, 255, 38, 15, 75, 110, 242, 27, 114, 197, 31, + 173, 47, 227, 225, 19, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2251, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "142d15776b68d5650a3d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "933f74d5eb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8309220116724670227" + } + }, + { + "_tag": "ByteArray", + "bytearray": "52d5" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "591b48fe480d6740" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11974368904795732795" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5ddfa96ed662d1d0d35a099" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2855080476052679623" + } + } + } + ] + }, + "cborHex": "bf4a142d15776b68d5650a3d9f45933f74d5eb1b735047ac09e75f134252d5ff48591b48fe480d67401ba62d811373d53b3b4cc5ddfa96ed662d1d0d35a0991b279f4890ec45ebc7ff", + "cborBytes": [ + 191, 74, 20, 45, 21, 119, 107, 104, 213, 101, 10, 61, 159, 69, 147, 63, 116, 213, 235, 27, 115, 80, 71, 172, 9, + 231, 95, 19, 66, 82, 213, 255, 72, 89, 27, 72, 254, 72, 13, 103, 64, 27, 166, 45, 129, 19, 115, 213, 59, 59, 76, + 197, 221, 250, 150, 237, 102, 45, 29, 13, 53, 160, 153, 27, 39, 159, 72, 144, 236, 69, 235, 199, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2252, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11e605fc91a025fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f801" + } + } + ] + }, + "cborHex": "bf4811e605fc91a025fc42f801ff", + "cborBytes": [191, 72, 17, 230, 5, 252, 145, 160, 37, 252, 66, 248, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2253, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15150810693642340512" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16419416422654122533" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1ffd07" + } + ] + }, + "cborHex": "9fbf1bd2427e0dadbdc8a01be3dd7c3e1b839a25ff431ffd07ff", + "cborBytes": [ + 159, 191, 27, 210, 66, 126, 13, 173, 189, 200, 160, 27, 227, 221, 124, 62, 27, 131, 154, 37, 255, 67, 31, 253, 7, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2254, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d6982d57b30" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1785f9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0227" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a9f2bd4e848f122" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ebeca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4749942174312046407" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73000807" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "016e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbb99f18" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + } + ] + }, + "cborHex": "bf460d6982d57b301bfffffffffffffff0431785f9d905079f420227ff481a9f2bd4e848f122bf433ebeca1b41eb2f3dc3841f47ff447300080742016e44fbb99f181bfffffffffffffff3ff", + "cborBytes": [ + 191, 70, 13, 105, 130, 213, 123, 48, 27, 255, 255, 255, 255, 255, 255, 255, 240, 67, 23, 133, 249, 217, 5, 7, 159, + 66, 2, 39, 255, 72, 26, 159, 43, 212, 232, 72, 241, 34, 191, 67, 62, 190, 202, 27, 65, 235, 47, 61, 195, 132, 31, + 71, 255, 68, 115, 0, 8, 7, 66, 1, 110, 68, 251, 185, 159, 24, 27, 255, 255, 255, 255, 255, 255, 255, 243, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2255, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12333746667993599920" + } + } + ] + }, + "cborHex": "9f1bab2a453f5f6a8fb0ff", + "cborBytes": [159, 27, 171, 42, 69, 63, 95, 106, 143, 176, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2256, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "352835246408900635" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13607509425475986383" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2043253148052253721" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18390414649525295796" + } + }, + { + "_tag": "ByteArray", + "bytearray": "299511d2c70297f1" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4093663340616392210" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16999486447034813833" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12741484158417754396" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15852348114449680912" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8855544658176295275" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11934502688002402232" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16130437447959359423" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea950c278d804399a86f3778" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5493852798051870539" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1725dad4206fbb667c9f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e96e7ee4b258d106eebb4b" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b04e585c98670a01b1bbcd795ba0f46a3cf1b1c5b17e99bda6c199f1bff37e0afe9185ab448299511d2c70297f1ff1b38cf9d1e7f7a9e12d8669f1bebea4edb3f93cd899f1bb0d2d855b5c1d91c1bdbfeda9ee99b4a10ffff1b7ae536f2ab34c16b1ba59fdef68953e7b81bdfdad3656d46afbfbf4cea950c278d804399a86f37781b4c3e16031c2ae74b4bf1725dad4206fbb667c9f04be96e7ee4b258d106eebb4bffff", + "cborBytes": [ + 191, 27, 4, 229, 133, 201, 134, 112, 160, 27, 27, 188, 215, 149, 186, 15, 70, 163, 207, 27, 28, 91, 23, 233, 155, + 218, 108, 25, 159, 27, 255, 55, 224, 175, 233, 24, 90, 180, 72, 41, 149, 17, 210, 199, 2, 151, 241, 255, 27, 56, + 207, 157, 30, 127, 122, 158, 18, 216, 102, 159, 27, 235, 234, 78, 219, 63, 147, 205, 137, 159, 27, 176, 210, 216, + 85, 181, 193, 217, 28, 27, 219, 254, 218, 158, 233, 155, 74, 16, 255, 255, 27, 122, 229, 54, 242, 171, 52, 193, + 107, 27, 165, 159, 222, 246, 137, 83, 231, 184, 27, 223, 218, 211, 101, 109, 70, 175, 191, 191, 76, 234, 149, 12, + 39, 141, 128, 67, 153, 168, 111, 55, 120, 27, 76, 62, 22, 3, 28, 42, 231, 75, 75, 241, 114, 93, 173, 66, 6, 251, + 182, 103, 201, 240, 75, 233, 110, 126, 228, 178, 88, 209, 6, 238, 187, 75, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2257, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11071435970484014669" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aa95c1596e05de8a7631dd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16545336340859960946" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7750332593757705275" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6ee9f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10386966970392379093" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7377010656952648404" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6460236507384413487" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2720199825941248279" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1b99a5a45b2e2e8e4d9f9f4baa95c1596e05de8a7631dd1be59cd7bdb651be72ff9f41f81b6b8eb66e560f543b436ee9f91b9025eb6d53f3fed5ff9f1b6660681b7fef02d4ffffbf1b59a75ee02ba87d2f1b25c01754574eb917ffa080ff", + "cborBytes": [ + 159, 27, 153, 165, 164, 91, 46, 46, 142, 77, 159, 159, 75, 170, 149, 193, 89, 110, 5, 222, 138, 118, 49, 221, 27, + 229, 156, 215, 189, 182, 81, 190, 114, 255, 159, 65, 248, 27, 107, 142, 182, 110, 86, 15, 84, 59, 67, 110, 233, + 249, 27, 144, 37, 235, 109, 83, 243, 254, 213, 255, 159, 27, 102, 96, 104, 27, 127, 239, 2, 212, 255, 255, 191, + 27, 89, 167, 94, 224, 43, 168, 125, 47, 27, 37, 192, 23, 84, 87, 78, 185, 23, 255, 160, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2258, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cfe42e9ed93bd35ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd3f1cc06084" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e01cd51e6b19ea723b4b2f7" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "612635068920200095" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f230a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5276c1148d9dceeced914474" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b26173f5310e9a09d92e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d77dcb1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13900352436263967935" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f14d" + }, + { + "_tag": "ByteArray", + "bytearray": "c733b1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7631604373629818870" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fffa" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e28" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b4247168f4fe40f3d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17096974849305993758" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af5e1a03b20912c19c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2414901398017610970" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf1e9a64b71229760f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6124090932811728569" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8c24d9e6c3d423efaccc0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4437443758070409900" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e95824f4b6c94ae8d" + } + } + ] + } + } + ] + }, + "cborHex": "bf493cfe42e9ed93bd35ea46fd3f1cc060844c4e01cd51e6b19ea723b4b2f79f1b088084596bef7b9f435f230aff4c5276c1148d9dceeced9144744ab26173f5310e9a09d92e446d77dcb19f1bc0e7f8e4c03fdcbf42f14d43c733b11b69e8e7be6c85d7f6ff42fffabf428e28492b4247168f4fe40f3d42aa051bed44a80ab2abe21e49af5e1a03b20912c19c1b21837406dc6f14da49cf1e9a64b71229760f1b54fd2441ae6f06b94be8c24d9e6c3d423efaccc01b3d94f7965e8faaac41f7496e95824f4b6c94ae8dffff", + "cborBytes": [ + 191, 73, 60, 254, 66, 233, 237, 147, 189, 53, 234, 70, 253, 63, 28, 192, 96, 132, 76, 78, 1, 205, 81, 230, 177, + 158, 167, 35, 180, 178, 247, 159, 27, 8, 128, 132, 89, 107, 239, 123, 159, 67, 95, 35, 10, 255, 76, 82, 118, 193, + 20, 141, 157, 206, 236, 237, 145, 68, 116, 74, 178, 97, 115, 245, 49, 14, 154, 9, 217, 46, 68, 109, 119, 220, 177, + 159, 27, 192, 231, 248, 228, 192, 63, 220, 191, 66, 241, 77, 67, 199, 51, 177, 27, 105, 232, 231, 190, 108, 133, + 215, 246, 255, 66, 255, 250, 191, 66, 142, 40, 73, 43, 66, 71, 22, 143, 79, 228, 15, 61, 66, 170, 5, 27, 237, 68, + 168, 10, 178, 171, 226, 30, 73, 175, 94, 26, 3, 178, 9, 18, 193, 156, 27, 33, 131, 116, 6, 220, 111, 20, 218, 73, + 207, 30, 154, 100, 183, 18, 41, 118, 15, 27, 84, 253, 36, 65, 174, 111, 6, 185, 75, 232, 194, 77, 158, 108, 61, + 66, 62, 250, 204, 192, 27, 61, 148, 247, 150, 94, 143, 170, 172, 65, 247, 73, 110, 149, 130, 79, 75, 108, 148, + 174, 141, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2259, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6c768ada395066eac3ab" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "332077" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf05618d7287dd74" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8057791566930166234" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b208e875ec" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2615663337790210103" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "56609504727954153" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4554685639794947988" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10279898121468527314" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9056118605257336626" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11092645664630392964" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14083750237223980861" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18037522598131759871" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3050" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8913fabd9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3628975618280697842" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c096" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6564635069808237043" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1d959c14b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2907545512661839136" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b17f375a0039a7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5021" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10831187004480413398" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7481683667435814344" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "423dea97a6839eeb" + }, + { + "_tag": "ByteArray", + "bytearray": "0719de1555618b93e7" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "29809b9c648825" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3092043826225782364" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "440a826ef29e177010" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee2d87c94211ae" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f4a6c768ada395066eac3ab9fbf413f4333207748cf05618d7287dd741b6fd306bcf502c1daff45b208e875ecd8669f1b244cb3f284ff803780ffd8669f1b00c91e0b6c3872e980ffffbf1b3f357e75278cf79441321b8ea988e0515642d21b7dadcbe3de2b67321b99f0fe75eb9248841bc3738838cb0f0f3d1bfa52273c71b97aff423050ffbf45b8913fabd91b325cb619022caff242c0961b5b1a44d0a7fdd9f345f1d959c14b1b2859ad3d2a7d6d20ff9f47b17f375a0039a79f4250211b96501b31c9e1ded61b67d447a7e75a7dc8ff9f48423dea97a6839eeb490719de1555618b93e7ffbf4729809b9c6488251b2ae9257a44209e5c49440a826ef29e17701047ee2d87c94211aeffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 74, 108, 118, 138, 218, 57, 80, 102, 234, 195, + 171, 159, 191, 65, 63, 67, 51, 32, 119, 72, 207, 5, 97, 141, 114, 135, 221, 116, 27, 111, 211, 6, 188, 245, 2, + 193, 218, 255, 69, 178, 8, 232, 117, 236, 216, 102, 159, 27, 36, 76, 179, 242, 132, 255, 128, 55, 128, 255, 216, + 102, 159, 27, 0, 201, 30, 11, 108, 56, 114, 233, 128, 255, 255, 191, 27, 63, 53, 126, 117, 39, 140, 247, 148, 65, + 50, 27, 142, 169, 136, 224, 81, 86, 66, 210, 27, 125, 173, 203, 227, 222, 43, 103, 50, 27, 153, 240, 254, 117, + 235, 146, 72, 132, 27, 195, 115, 136, 56, 203, 15, 15, 61, 27, 250, 82, 39, 60, 113, 185, 122, 255, 66, 48, 80, + 255, 191, 69, 184, 145, 63, 171, 217, 27, 50, 92, 182, 25, 2, 44, 175, 242, 66, 192, 150, 27, 91, 26, 68, 208, + 167, 253, 217, 243, 69, 241, 217, 89, 193, 75, 27, 40, 89, 173, 61, 42, 125, 109, 32, 255, 159, 71, 177, 127, 55, + 90, 0, 57, 167, 159, 66, 80, 33, 27, 150, 80, 27, 49, 201, 225, 222, 214, 27, 103, 212, 71, 167, 231, 90, 125, + 200, 255, 159, 72, 66, 61, 234, 151, 166, 131, 158, 235, 73, 7, 25, 222, 21, 85, 97, 139, 147, 231, 255, 191, 71, + 41, 128, 155, 156, 100, 136, 37, 27, 42, 233, 37, 122, 68, 32, 158, 92, 73, 68, 10, 130, 110, 242, 158, 23, 112, + 16, 71, 238, 45, 135, 201, 66, 17, 174, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2260, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6532398667820473217" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9622940630887821060" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1003303972592171019" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7776938169549803703" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13010199501088272514" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b5aa7bdfa6eac9b81d8669f1b858b8d84eebdef049f1b0dec73a5b818380bffff1b6bed3c0fac3150b7d8669f1bb48d8383e754b08280ffff", + "cborBytes": [ + 191, 27, 90, 167, 189, 250, 110, 172, 155, 129, 216, 102, 159, 27, 133, 139, 141, 132, 238, 189, 239, 4, 159, 27, + 13, 236, 115, 165, 184, 24, 56, 11, 255, 255, 27, 107, 237, 60, 15, 172, 49, 80, 183, 216, 102, 159, 27, 180, 141, + 131, 131, 231, 84, 176, 130, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2261, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12924677449078885139" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f1bb35dada97cd94b13ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 27, 179, 93, 173, 169, 124, 217, 75, 19, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2262, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6235881500826785970" + }, + "fields": [] + }, + "cborHex": "d8669f1b568a4d2f9635d8b280ff", + "cborBytes": [216, 102, 159, 27, 86, 138, 77, 47, 150, 53, 216, 178, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2263, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f1249acb685551c805" + } + ] + }, + "cborHex": "9fa049f1249acb685551c805ff", + "cborBytes": [159, 160, 73, 241, 36, 154, 203, 104, 85, 81, 200, 5, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2264, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3bf01000104" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf46a3bf01000104a0ff", + "cborBytes": [191, 70, 163, 191, 1, 0, 1, 4, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2265, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10430151779620511418" + } + }, + "cborHex": "1b90bf57c841b05eba", + "cborBytes": [27, 144, 191, 87, 200, 65, 176, 94, 186], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2266, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5763451754029692002" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "98d3095e8c" + }, + { + "_tag": "ByteArray", + "bytearray": "39" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1262589690412446369" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "574514a30518" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7175700545231516392" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18242619210732883865" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "16be6893" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "891797021697982200" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4848172380138732891" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1029363309821241665" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1213649451599641217" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3158813548029090785" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3aee1d1636b0ce56" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8769137075560764983" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8fca3697dfb5542d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14245678598403592042" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd499deaa799a2e92a7477" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14540535645022891715" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77fdc0765e0b99359548" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b4ffbe4d58f0ab4629f4598d3095e8c4139d8669f1b11859ea24a1ab2a19f46574514a305189f1b639535a09d19f2e8ff1bfd2acd84c4734f99ffff4416be6893bf1b0c604caa920f3ef81b43482b17d0077d5b1b0e490879fab729411b10d7bfbefc71ba811b2bd65c2f91f71be1483aee1d1636b0ce561b79b23bb59781d637488fca3697dfb5542d1bc5b2d1355a3b0f6a4bcd499deaa799a2e92a74771bc9ca5c214d7eaec34a77fdc0765e0b99359548ffffff", + "cborBytes": [ + 216, 102, 159, 27, 79, 251, 228, 213, 143, 10, 180, 98, 159, 69, 152, 211, 9, 94, 140, 65, 57, 216, 102, 159, 27, + 17, 133, 158, 162, 74, 26, 178, 161, 159, 70, 87, 69, 20, 163, 5, 24, 159, 27, 99, 149, 53, 160, 157, 25, 242, + 232, 255, 27, 253, 42, 205, 132, 196, 115, 79, 153, 255, 255, 68, 22, 190, 104, 147, 191, 27, 12, 96, 76, 170, + 146, 15, 62, 248, 27, 67, 72, 43, 23, 208, 7, 125, 91, 27, 14, 73, 8, 121, 250, 183, 41, 65, 27, 16, 215, 191, + 190, 252, 113, 186, 129, 27, 43, 214, 92, 47, 145, 247, 27, 225, 72, 58, 238, 29, 22, 54, 176, 206, 86, 27, 121, + 178, 59, 181, 151, 129, 214, 55, 72, 143, 202, 54, 151, 223, 181, 84, 45, 27, 197, 178, 209, 53, 90, 59, 15, 106, + 75, 205, 73, 157, 234, 167, 153, 162, 233, 42, 116, 119, 27, 201, 202, 92, 33, 77, 126, 174, 195, 74, 119, 253, + 192, 118, 94, 11, 153, 53, 149, 72, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2267, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b4f8af053eb4d7a41aa504a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13451598795563076928" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4517b7c732" + }, + { + "_tag": "ByteArray", + "bytearray": "3298f8c6c0bd" + }, + { + "_tag": "ByteArray", + "bytearray": "15047bfa00f97f5a07de04f2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f353bfd0c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "026a02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50e7c819a28c" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "637d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15518247716797701461" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8048f2e205b42eefcf2721b4" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f0705a8fc44" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2700844089832783479" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77190306130b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97fa" + } + } + ] + }, + "cborHex": "bf4c0b4f8af053eb4d7a41aa504ad8669f1bbaadadd5be9c0d409f454517b7c732463298f8c6c0bd4c15047bfa00f97f5a07de04f21bfffffffffffffffdffff450f353bfd0cbf43026a024650e7c819a28cff42637dbf1bd75be414483e5d554c8048f2e205b42eefcf2721b4ff466f0705a8fc441b257b5363d8323e774677190306130b4297faff", + "cborBytes": [ + 191, 76, 11, 79, 138, 240, 83, 235, 77, 122, 65, 170, 80, 74, 216, 102, 159, 27, 186, 173, 173, 213, 190, 156, 13, + 64, 159, 69, 69, 23, 183, 199, 50, 70, 50, 152, 248, 198, 192, 189, 76, 21, 4, 123, 250, 0, 249, 127, 90, 7, 222, + 4, 242, 27, 255, 255, 255, 255, 255, 255, 255, 253, 255, 255, 69, 15, 53, 59, 253, 12, 191, 67, 2, 106, 2, 70, 80, + 231, 200, 25, 162, 140, 255, 66, 99, 125, 191, 27, 215, 91, 228, 20, 72, 62, 93, 85, 76, 128, 72, 242, 226, 5, + 180, 46, 239, 207, 39, 33, 180, 255, 70, 111, 7, 5, 168, 252, 68, 27, 37, 123, 83, 99, 216, 50, 62, 119, 70, 119, + 25, 3, 6, 19, 11, 66, 151, 250, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2268, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1026133674763192134" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "869695fbe51539cde9fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15676878391408265102" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1729675999433879770" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3442596942912017342" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15651741362505301393" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef720e04d6a623" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16853714057434189802" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f28f4acf733b49320d16" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8309123275513945915" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2916089463269302782" + } + } + ] + }, + "cborHex": "d8669f1b0e3d8f23f85387469fbf4a869695fbe51539cde9fb41e9ffd8669f1bd98f75d65ae3078e9fd8669f1b18010b2842c670da80ff1b2fc68fae0f1dd3bed8669f1bd93627d7bc6abd9180ffffffbf47ef720e04d6a6231be9e46ba3f35f4fea4af28f4acf733b49320d161b734fef986ff05f3bff1b287807eaaf6d21feffff", + "cborBytes": [ + 216, 102, 159, 27, 14, 61, 143, 35, 248, 83, 135, 70, 159, 191, 74, 134, 150, 149, 251, 229, 21, 57, 205, 233, + 251, 65, 233, 255, 216, 102, 159, 27, 217, 143, 117, 214, 90, 227, 7, 142, 159, 216, 102, 159, 27, 24, 1, 11, 40, + 66, 198, 112, 218, 128, 255, 27, 47, 198, 143, 174, 15, 29, 211, 190, 216, 102, 159, 27, 217, 54, 39, 215, 188, + 106, 189, 145, 128, 255, 255, 255, 191, 71, 239, 114, 14, 4, 214, 166, 35, 27, 233, 228, 107, 163, 243, 95, 79, + 234, 74, 242, 143, 74, 207, 115, 59, 73, 50, 13, 22, 27, 115, 79, 239, 152, 111, 240, 95, 59, 255, 27, 40, 120, 7, + 234, 175, 109, 33, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2269, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "94746f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ab78d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f160c7ab00897fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "104bad006942285ca592a0" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "497926573856422619" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16640222505580636834" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12384790927605755789" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6bbbe00a3acac5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12460522459360939461" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1940366093947572486" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16386855648808502229" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ffc569c55fc9cf71fca36d2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17605286354252331977" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12665872809518459921" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4394746f434ab78d489f160c7ab00897fb4b104bad006942285ca592a0ffbf1b06e8fd94aef07adb1be6edf23484982aa21babdf9dbb316bef8d476bbbe00a3acac51bacecab2879fc4dc51b1aed90ae93f511061be369ce642cd583d54c1ffc569c55fc9cf71fca36d21bf4528aa9923dfbc91bafc63836ada06c11ffff", + "cborBytes": [ + 159, 191, 67, 148, 116, 111, 67, 74, 183, 141, 72, 159, 22, 12, 122, 176, 8, 151, 251, 75, 16, 75, 173, 0, 105, + 66, 40, 92, 165, 146, 160, 255, 191, 27, 6, 232, 253, 148, 174, 240, 122, 219, 27, 230, 237, 242, 52, 132, 152, + 42, 162, 27, 171, 223, 157, 187, 49, 107, 239, 141, 71, 107, 187, 224, 10, 58, 202, 197, 27, 172, 236, 171, 40, + 121, 252, 77, 197, 27, 26, 237, 144, 174, 147, 245, 17, 6, 27, 227, 105, 206, 100, 44, 213, 131, 213, 76, 31, 252, + 86, 156, 85, 252, 156, 247, 31, 202, 54, 210, 27, 244, 82, 138, 169, 146, 61, 251, 201, 27, 175, 198, 56, 54, 173, + 160, 108, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2270, + "sample": { + "_tag": "ByteArray", + "bytearray": "28c448c8ab1524dd" + }, + "cborHex": "4828c448c8ab1524dd", + "cborBytes": [72, 40, 196, 72, 200, 171, 21, 36, 221], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2271, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5366137825333262618" + } + }, + "cborHex": "1b4a7859ebcec6b91a", + "cborBytes": [27, 74, 120, 89, 235, 206, 198, 185, 26], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2272, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12759753584052795167" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5353856332761665333" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14588267473338439876" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10321159556032969531" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12726110489764130558" + } + }, + { + "_tag": "ByteArray", + "bytearray": "436017cf1add111d93cbfd37" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11006331860764397549" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14327911249554014151" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6147674008259535618" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17985295008716174565" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "781820965352595038" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17127055582239065011" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6890177943713940235" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bb113c047d6fbf71fd8669f1b4a4cb7f7fcbc0f359f1bca73eff99cb918c41b8f3c1feeaf793b3b1bb09c3a108ac36efe4c436017cf1add111d93cbfd371b98be588368ed0fedffff1bc6d6f75e72fd7fc71b5550ecf0513623021bf9989a852f2234e59f1b0ad9960695cb5e5e1bedaf864f1bbb03b31b5f9ed455864d030bffff", + "cborBytes": [ + 191, 27, 177, 19, 192, 71, 214, 251, 247, 31, 216, 102, 159, 27, 74, 76, 183, 247, 252, 188, 15, 53, 159, 27, 202, + 115, 239, 249, 156, 185, 24, 196, 27, 143, 60, 31, 238, 175, 121, 59, 59, 27, 176, 156, 58, 16, 138, 195, 110, + 254, 76, 67, 96, 23, 207, 26, 221, 17, 29, 147, 203, 253, 55, 27, 152, 190, 88, 131, 104, 237, 15, 237, 255, 255, + 27, 198, 214, 247, 94, 114, 253, 127, 199, 27, 85, 80, 236, 240, 81, 54, 35, 2, 27, 249, 152, 154, 133, 47, 34, + 52, 229, 159, 27, 10, 217, 150, 6, 149, 203, 94, 94, 27, 237, 175, 134, 79, 27, 187, 3, 179, 27, 95, 158, 212, 85, + 134, 77, 3, 11, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2273, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4344565068314524392" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b3c4afee940753ae880ff", + "cborBytes": [191, 27, 60, 74, 254, 233, 64, 117, 58, 232, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2274, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + ] + }, + "cborHex": "d9050a9f1bffffffffffffffebff", + "cborBytes": [217, 5, 10, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2275, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [] + }, + "cborHex": "d9050d80", + "cborBytes": [217, 5, 13, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2276, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8294129908685727186" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fe189bb67" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "039774134359ee82a969da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31e0c47cd8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4b49646056b2f7003" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d6168" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5652800994206174650" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2e720a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14358551388819820112" + } + } + } + ] + } + ] + }, + "cborHex": "d8799f1b731aab353027e5d2bf451fe189bb674b039774134359ee82a969da4531e0c47cd849c4b49646056b2f7003436d61681b4e72c88deda24dba44c2e720a61bc743d269cbcc0e50ffff", + "cborBytes": [ + 216, 121, 159, 27, 115, 26, 171, 53, 48, 39, 229, 210, 191, 69, 31, 225, 137, 187, 103, 75, 3, 151, 116, 19, 67, + 89, 238, 130, 169, 105, 218, 69, 49, 224, 196, 124, 216, 73, 196, 180, 150, 70, 5, 107, 47, 112, 3, 67, 109, 97, + 104, 27, 78, 114, 200, 141, 237, 162, 77, 186, 68, 194, 231, 32, 166, 27, 199, 67, 210, 105, 203, 204, 14, 80, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2277, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6538117272279039642" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5385869888675047941" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7172879070723655876" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15372925963571721202" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17028485188418121754" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01b74c67a3d1f0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16974070162855236411" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3976061049601073394" + } + }, + { + "_tag": "ByteArray", + "bytearray": "63dd928d59bcebee" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12477951742325659276" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6163271250439649018" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12999845506570663087" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9703033484830716045" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c8dc6b5825e119cb" + } + ] + } + } + ] + }, + "cborHex": "bf1b5abc0f04ca09be9a1b4abe7420d0f2ea051b638b2f82e35148c4d8669f1bd5579ab6f11273f29f1bec51550edea9b01a4701b74c67a3d1f01beb9002e1718b133b1b372dce7562bd20f24863dd928d59bcebeeffff1bad2a96ffa5c9968c1b5588568c40d536fa1bb468ba9cb21a34afd8669f1b86a8198bab0e308d9f48c8dc6b5825e119cbffffff", + "cborBytes": [ + 191, 27, 90, 188, 15, 4, 202, 9, 190, 154, 27, 74, 190, 116, 32, 208, 242, 234, 5, 27, 99, 139, 47, 130, 227, 81, + 72, 196, 216, 102, 159, 27, 213, 87, 154, 182, 241, 18, 115, 242, 159, 27, 236, 81, 85, 14, 222, 169, 176, 26, 71, + 1, 183, 76, 103, 163, 209, 240, 27, 235, 144, 2, 225, 113, 139, 19, 59, 27, 55, 45, 206, 117, 98, 189, 32, 242, + 72, 99, 221, 146, 141, 89, 188, 235, 238, 255, 255, 27, 173, 42, 150, 255, 165, 201, 150, 140, 27, 85, 136, 86, + 140, 64, 213, 54, 250, 27, 180, 104, 186, 156, 178, 26, 52, 175, 216, 102, 159, 27, 134, 168, 25, 139, 171, 14, + 48, 141, 159, 72, 200, 220, 107, 88, 37, 225, 25, 203, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2278, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12944066814875279778" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7215306608645763380" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "50" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14585019142732111373" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f1bb3a29030019021a21b6421eb21d9dbf134ff41509f1bca6865a2b4d1de0dffffff", + "cborBytes": [ + 159, 159, 159, 27, 179, 162, 144, 48, 1, 144, 33, 162, 27, 100, 33, 235, 33, 217, 219, 241, 52, 255, 65, 80, 159, + 27, 202, 104, 101, 162, 180, 209, 222, 13, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2279, + "sample": { + "_tag": "ByteArray", + "bytearray": "03643002" + }, + "cborHex": "4403643002", + "cborBytes": [68, 3, 100, 48, 2], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2280, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "881493166835840102" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11122607691978196905" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04e705fdde77" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13182504205864207331" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3632" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "64850307" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73ad0400" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f306" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcfffc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96356c" + } + } + ] + }, + "cborHex": "bf1b0c3bb15d692f3466d8669f1b9a5b70c4086347a980ff4604e705fdde779f1bb6f1a9bb38a103e3ff423632bf44648503074473ad040042f3061bffffffffffffffecff43fcfffc4396356cff", + "cborBytes": [ + 191, 27, 12, 59, 177, 93, 105, 47, 52, 102, 216, 102, 159, 27, 154, 91, 112, 196, 8, 99, 71, 169, 128, 255, 70, 4, + 231, 5, 253, 222, 119, 159, 27, 182, 241, 169, 187, 56, 161, 3, 227, 255, 66, 54, 50, 191, 68, 100, 133, 3, 7, 68, + 115, 173, 4, 0, 66, 243, 6, 27, 255, 255, 255, 255, 255, 255, 255, 236, 255, 67, 252, 255, 252, 67, 150, 53, 108, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2281, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "15cbfc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3564023020750314216" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f4315cbfc1b3175f40deb231ae8ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 67, 21, 203, 252, 27, 49, 117, 244, 13, 235, 35, + 26, 232, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2282, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17531939866089721331" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "279e5c1fe798" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4139957749404792035" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17921942348029971195" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f21f91f457acec580" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2965310065467759759" + } + }, + { + "_tag": "ByteArray", + "bytearray": "982cd793958f2ed3e3" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a97c582243061" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "501c0501" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa2f7d82ca7132c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "771518564308207504" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fa09fd8669f1bf34df66b85c98df39f46279e5c1fe7981b397415a37e65f4e3ffff9f1bf8b7879c6b5b4afb497f21f91f457acec5801b2926e5cb2d189c8f49982cd793958f2ed3e3ffbf473a97c58224306144501c050148fa2f7d82ca7132c41b0ab4fc0beb35c790ffff80ff", + "cborBytes": [ + 159, 160, 159, 216, 102, 159, 27, 243, 77, 246, 107, 133, 201, 141, 243, 159, 70, 39, 158, 92, 31, 231, 152, 27, + 57, 116, 21, 163, 126, 101, 244, 227, 255, 255, 159, 27, 248, 183, 135, 156, 107, 91, 74, 251, 73, 127, 33, 249, + 31, 69, 122, 206, 197, 128, 27, 41, 38, 229, 203, 45, 24, 156, 143, 73, 152, 44, 215, 147, 149, 143, 46, 211, 227, + 255, 191, 71, 58, 151, 197, 130, 36, 48, 97, 68, 80, 28, 5, 1, 72, 250, 47, 125, 130, 202, 113, 50, 196, 27, 10, + 180, 252, 11, 235, 53, 199, 144, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2283, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7940135092960996677" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6196990048848718747" + } + } + ] + }, + "cborHex": "9f1b6e3106cc648dad451b5600219dca422b9bff", + "cborBytes": [159, 27, 110, 49, 6, 204, 100, 141, 173, 69, 27, 86, 0, 33, 157, 202, 66, 43, 155, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2284, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14775907770807985277" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1343565215821702203" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16719802133326656444" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "921339223239485729" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11982526309295534023" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d83adc545b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15161231694154718204" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12917404868267245450" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18319142899105076717" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10223eb17f5b8fe7b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2512637795737841696" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "686bd4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10f0db90d96d5d2488913a9a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d05abaf18da4598c62c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15532152701516516393" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7cb8f239919feb14" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bcd0e91d4d8f1a47dd8669f1b12a54d71fd9fa43b9f1be808ab7477c0f3bc1b0cc941245ed2e9211ba64a7c3131552fc745d83adc545bffff1bd26783e5ef7c5bfcd8669f1bb343d749d0f87f8a80ff1bfe3aab6862c715edbf4910223eb17f5b8fe7b21b22deaec3402cb02043686bd44c10f0db90d96d5d2488913a9a4a6d05abaf18da4598c62c1bd78d4a96d3040c2941e2487cb8f239919feb14ffff", + "cborBytes": [ + 191, 27, 205, 14, 145, 212, 216, 241, 164, 125, 216, 102, 159, 27, 18, 165, 77, 113, 253, 159, 164, 59, 159, 27, + 232, 8, 171, 116, 119, 192, 243, 188, 27, 12, 201, 65, 36, 94, 210, 233, 33, 27, 166, 74, 124, 49, 49, 85, 47, + 199, 69, 216, 58, 220, 84, 91, 255, 255, 27, 210, 103, 131, 229, 239, 124, 91, 252, 216, 102, 159, 27, 179, 67, + 215, 73, 208, 248, 127, 138, 128, 255, 27, 254, 58, 171, 104, 98, 199, 21, 237, 191, 73, 16, 34, 62, 177, 127, 91, + 143, 231, 178, 27, 34, 222, 174, 195, 64, 44, 176, 32, 67, 104, 107, 212, 76, 16, 240, 219, 144, 217, 109, 93, 36, + 136, 145, 58, 154, 74, 109, 5, 171, 175, 24, 218, 69, 152, 198, 44, 27, 215, 141, 74, 150, 211, 4, 12, 41, 65, + 226, 72, 124, 184, 242, 57, 145, 159, 235, 20, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2285, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fe64" + }, + { + "_tag": "ByteArray", + "bytearray": "8040325014b3b29024ad983e" + } + ] + }, + "cborHex": "d9050c9f42fe644c8040325014b3b29024ad983eff", + "cborBytes": [217, 5, 12, 159, 66, 254, 100, 76, 128, 64, 50, 80, 20, 179, 178, 144, 36, 173, 152, 62, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2286, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5420843341749906096" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2620825536d4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11877485708376832873" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9266707482904129147" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16043802321754151108" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ecb74ac56" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17438761962462603160" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6193763831947701596" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1af5d00" + }, + { + "_tag": "ByteArray", + "bytearray": "0748cacf6154907a0473" + } + ] + } + } + ] + }, + "cborHex": "bf1b4b3ab44c680b6ab0462620825536d41ba4d54e5278947b691b8099f55bcbf46e7b1bdea709353abe58c4454ecb74ac561bf202ed9c3f2d67989f1b55f4ab63a1e7ad5c44c1af5d004a0748cacf6154907a0473ffff", + "cborBytes": [ + 191, 27, 75, 58, 180, 76, 104, 11, 106, 176, 70, 38, 32, 130, 85, 54, 212, 27, 164, 213, 78, 82, 120, 148, 123, + 105, 27, 128, 153, 245, 91, 203, 244, 110, 123, 27, 222, 167, 9, 53, 58, 190, 88, 196, 69, 78, 203, 116, 172, 86, + 27, 242, 2, 237, 156, 63, 45, 103, 152, 159, 27, 85, 244, 171, 99, 161, 231, 173, 92, 68, 193, 175, 93, 0, 74, 7, + 72, 202, 207, 97, 84, 144, 122, 4, 115, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2287, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16205695191063916412" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1e25" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16897910673924361384" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9f0d6c6b05ad2e6b3b29" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8244182359436718317" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "733c517e7ee5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1286397727529812639" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1217985536263015654" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13756917985144952135" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4981893807763512862" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6364695f02bb2ba7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16439001941984095013" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9eb98304c2cbdd17ba7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03335ab4b0886fa35f" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13637121731822332668" + } + } + ] + }, + "cborHex": "d8669f1be0e631ea319eef7c9fa09f9f421e251bea81703a9d8b0ca84a9f0d6c6b05ad2e6b3b291b7269382d25c470edff46733c517e7ee51b11da33eae548c29f1b10e727645e854ce6bf1bbeea64052cbf55471b45233e05e0765e1e486364695f02bb2ba71be423112b2deb2b254a9eb98304c2cbdd17ba7f4903335ab4b0886fa35fffff1bbd40c9f66807aafcffff", + "cborBytes": [ + 216, 102, 159, 27, 224, 230, 49, 234, 49, 158, 239, 124, 159, 160, 159, 159, 66, 30, 37, 27, 234, 129, 112, 58, + 157, 139, 12, 168, 74, 159, 13, 108, 107, 5, 173, 46, 107, 59, 41, 27, 114, 105, 56, 45, 37, 196, 112, 237, 255, + 70, 115, 60, 81, 126, 126, 229, 27, 17, 218, 51, 234, 229, 72, 194, 159, 27, 16, 231, 39, 100, 94, 133, 76, 230, + 191, 27, 190, 234, 100, 5, 44, 191, 85, 71, 27, 69, 35, 62, 5, 224, 118, 94, 30, 72, 99, 100, 105, 95, 2, 187, 43, + 167, 27, 228, 35, 17, 43, 45, 235, 43, 37, 74, 158, 185, 131, 4, 194, 203, 221, 23, 186, 127, 73, 3, 51, 90, 180, + 176, 136, 111, 163, 95, 255, 255, 27, 189, 64, 201, 246, 104, 7, 170, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2288, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17339168830163112242" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcffc4bf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8836572905475738862" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10274291145758966181" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10384003443101452819" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15360045528197183877" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0277" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16515274043092649078" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf021bf0a11a2f2665d1320cbf0a1bfffffffffffffff7ff0e44fcffc4bf1bfffffffffffffffdbf1b7aa1d03d46b90cee1bfffffffffffffff11b8e959d5c8de781a51b901b641d5c7eca131bd529d806e20539854202771bfffffffffffffffc1be5320a3d92c44476ffff", + "cborBytes": [ + 191, 2, 27, 240, 161, 26, 47, 38, 101, 209, 50, 12, 191, 10, 27, 255, 255, 255, 255, 255, 255, 255, 247, 255, 14, + 68, 252, 255, 196, 191, 27, 255, 255, 255, 255, 255, 255, 255, 253, 191, 27, 122, 161, 208, 61, 70, 185, 12, 238, + 27, 255, 255, 255, 255, 255, 255, 255, 241, 27, 142, 149, 157, 92, 141, 231, 129, 165, 27, 144, 27, 100, 29, 92, + 126, 202, 19, 27, 213, 41, 216, 6, 226, 5, 57, 133, 66, 2, 119, 27, 255, 255, 255, 255, 255, 255, 255, 252, 27, + 229, 50, 10, 61, 146, 196, 68, 118, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2289, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12987422582791632417" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a5bcf4f5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16236376829067435909" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e0e9d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16399134796193324528" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1beee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3594d7531895b6" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d1a8d52fb7b2f055d88c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2874830844413794781" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11045451749976947621" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "64109e723f8e4b343493f4dd" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a3427e71cc157b46a3adf4" + } + ] + }, + "cborHex": "9f1bb43c98075b2e762144a5bcf4f5d8669f1be15332b3b7f29f859fbf4102436e0e9d41551be3956e35f6d9ddf043d1beee473594d7531895b6ff4ad1a8d52fb7b2f055d88cbf1b27e5736be69ed9dd1b994953d86517bba5ff4c64109e723f8e4b343493f4ddffff4ba3427e71cc157b46a3adf4ff", + "cborBytes": [ + 159, 27, 180, 60, 152, 7, 91, 46, 118, 33, 68, 165, 188, 244, 245, 216, 102, 159, 27, 225, 83, 50, 179, 183, 242, + 159, 133, 159, 191, 65, 2, 67, 110, 14, 157, 65, 85, 27, 227, 149, 110, 53, 246, 217, 221, 240, 67, 209, 190, 238, + 71, 53, 148, 215, 83, 24, 149, 182, 255, 74, 209, 168, 213, 47, 183, 178, 240, 85, 216, 140, 191, 27, 39, 229, + 115, 107, 230, 158, 217, 221, 27, 153, 73, 83, 216, 101, 23, 187, 165, 255, 76, 100, 16, 158, 114, 63, 142, 75, + 52, 52, 147, 244, 221, 255, 255, 75, 163, 66, 126, 113, 204, 21, 123, 70, 163, 173, 244, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2290, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f262db4f624" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13250313304229317713" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "517a7c8c7a35ba895d83c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15698464852847776417" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f05bf464f262db4f6241bb7e291bf3d388c514b517a7c8c7a35ba895d83c91bd9dc269c10f252a1ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 5, 191, 70, 79, 38, 45, 180, 246, 36, 27, 183, + 226, 145, 191, 61, 56, 140, 81, 75, 81, 122, 124, 140, 122, 53, 186, 137, 93, 131, 201, 27, 217, 220, 38, 156, 16, + 242, 82, 161, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2291, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10934767169466105943" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fe0201" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10471414045814206052" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6223564101565279915" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b97c018ce45a180579fa043fe0201d8669f1bffffffffffffffff9f1b9151ef9840caae641b565e8a9396abeeabffffffff", + "cborBytes": [ + 216, 102, 159, 27, 151, 192, 24, 206, 69, 161, 128, 87, 159, 160, 67, 254, 2, 1, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 255, 159, 27, 145, 81, 239, 152, 64, 202, 174, 100, 27, 86, 94, 138, 147, 150, 171, 238, 171, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2292, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5843656852933544150" + } + }, + "cborHex": "1b5118d6f25c6188d6", + "cborBytes": [27, 81, 24, 214, 242, 92, 97, 136, 214], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2293, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12888444986300333003" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8911932580818332713" + } + } + ] + }, + "cborHex": "d87e9f1bb2dcf46ddb987bcb1b7bad8b76fde82c29ff", + "cborBytes": [ + 216, 126, 159, 27, 178, 220, 244, 109, 219, 152, 123, 203, 27, 123, 173, 139, 118, 253, 232, 44, 41, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2294, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10154153624217745752" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cbbfb067ce2e8c7c" + } + ] + }, + "cborHex": "d8669f1b8ceaccec163e79589f48cbbfb067ce2e8c7cffff", + "cborBytes": [ + 216, 102, 159, 27, 140, 234, 204, 236, 22, 62, 121, 88, 159, 72, 203, 191, 176, 103, 206, 46, 140, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2295, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15136725361679061900" + } + }, + "cborHex": "1bd2107384c586d38c", + "cborBytes": [27, 210, 16, 115, 132, 197, 134, 211, 140], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2296, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ec651573940f4d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18405002880871295113" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce8e9400b232b04ccf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10626090655095354327" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "012101" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10696022218413549224" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + }, + "cborHex": "9f9f47ec651573940f4d9f1bff6bb49b345fe88949ce8e9400b232b04ccf1b93777526c00e73d7ffff430121011bfffffffffffffff9d8669f1b946fe789a639a6a880ff0dff", + "cborBytes": [ + 159, 159, 71, 236, 101, 21, 115, 148, 15, 77, 159, 27, 255, 107, 180, 155, 52, 95, 232, 137, 73, 206, 142, 148, 0, + 178, 50, 176, 76, 207, 27, 147, 119, 117, 38, 192, 14, 115, 215, 255, 255, 67, 1, 33, 1, 27, 255, 255, 255, 255, + 255, 255, 255, 249, 216, 102, 159, 27, 148, 111, 231, 137, 166, 57, 166, 168, 128, 255, 13, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2297, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3759338679580860978" + } + }, + "cborHex": "1b342bda9c7acda232", + "cborBytes": [27, 52, 43, 218, 156, 122, 205, 162, 50], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2298, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13256097626150975147" + } + }, + "cborHex": "1bb7f71e8ea2a0b6ab", + "cborBytes": [27, 183, 247, 30, 142, 162, 160, 182, 171], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2299, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1741463700798708868" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55c52944c6d668" + } + } + ] + }, + "cborHex": "bf1b182aec025b581c844755c52944c6d668ff", + "cborBytes": [191, 27, 24, 42, 236, 2, 91, 88, 28, 132, 71, 85, 197, 41, 68, 198, 214, 104, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2300, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16217648699102912371" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5b403f0c0601" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3451570223007617860" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11883605916649639008" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1442b4b9f09e1895532" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4367909454735410403" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2589962756010940496" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2509cdc7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18174755389411188077" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8876953050524203243" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4844769922761842735" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2698026354010967437" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12819457408103110698" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8543597467284375642" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3854072991001834219" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4b9f1f88dbdd0f6f043650" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15779957613877812873" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1be110a9912a1adf739fa0465b403f0c0601d8669f1bfffffffffffffffb80ff1bffffffffffffffefffffd8669f1b2fe670d4a3af53449fbf417a1ba4eb0c9e80a1cc604aa1442b4b9f09e18955321b3c9dee81c49304e3ffbf1b23f1656785861850442509cdc71bfc39b3bb91785d6d1b7b3145c47050b8ebffd905009f1b433c149378b7602f1b257150ac99774d8d1bb1e7dc979f3c582a1b7690f4a16d69885aff1b357c6af72f1772eb9f4b4b9f1f88dbdd0f6f0436501bdafdabd811e85e89ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 225, 16, 169, 145, 42, 26, 223, 115, 159, 160, 70, 91, 64, 63, 12, 6, 1, 216, 102, 159, + 27, 255, 255, 255, 255, 255, 255, 255, 251, 128, 255, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255, 255, 216, + 102, 159, 27, 47, 230, 112, 212, 163, 175, 83, 68, 159, 191, 65, 122, 27, 164, 235, 12, 158, 128, 161, 204, 96, + 74, 161, 68, 43, 75, 159, 9, 225, 137, 85, 50, 27, 60, 157, 238, 129, 196, 147, 4, 227, 255, 191, 27, 35, 241, + 101, 103, 133, 134, 24, 80, 68, 37, 9, 205, 199, 27, 252, 57, 179, 187, 145, 120, 93, 109, 27, 123, 49, 69, 196, + 112, 80, 184, 235, 255, 217, 5, 0, 159, 27, 67, 60, 20, 147, 120, 183, 96, 47, 27, 37, 113, 80, 172, 153, 119, 77, + 141, 27, 177, 231, 220, 151, 159, 60, 88, 42, 27, 118, 144, 244, 161, 109, 105, 136, 90, 255, 27, 53, 124, 106, + 247, 47, 23, 114, 235, 159, 75, 75, 159, 31, 136, 219, 221, 15, 111, 4, 54, 80, 27, 218, 253, 171, 216, 17, 232, + 94, 137, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2301, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16236418995597329010" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f581485b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "458680e8cd0ef2ad50e9bd64" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "236836ad2b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5776dc338d3be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "381d969375" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38f0894ee6abdef5b89d2e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b70adb046430e5534" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2eaa43be070" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cac631" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "179c6c90db0bf902d08526" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3155821551624079697" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c77304344588782d3d62d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7285864545496745666" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "317d4539e0e4be" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13167607233310627478" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d41be8781c0df96c61e3" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8934892267218738721" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ddd6" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2156f8ad8e678a7a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7304127558892309605" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68f97bc4c9b430382d80" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab5c3742c8a14e30cd9168" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2bd0c55bbb289c8a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f188e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10035018032232478318" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f931" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d16cf127" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1be153590d60fbc2729f44f581485b9f4c458680e8cd0ef2ad50e9bd64ffbf45236836ad2b47d5776dc338d3be45381d9693754b38f0894ee6abdef5b89d2e496b70adb046430e553446f2eaa43be07043cac6314b179c6c90db0bf902d08526ffbf1b2bcbbafb1f1349514bc77304344588782d3d62d31b651c9733b3f246c247317d4539e0e4be1bb6bcbd03835816964ad41be8781c0df96c61e3ffffffd8669f1b7bff1d2d8df51e219f42ddd6ffffbf482156f8ad8e678a7a1b655d7950ddeacc654a68f97bc4c9b430382d8041564bab5c3742c8a14e30cd9168482bd0c55bbb289c8a43f188e11b8b438bbb85db366e42f93144d16cf127ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 225, 83, 89, 13, 96, 251, 194, 114, 159, 68, 245, 129, 72, 91, 159, 76, 69, 134, 128, 232, + 205, 14, 242, 173, 80, 233, 189, 100, 255, 191, 69, 35, 104, 54, 173, 43, 71, 213, 119, 109, 195, 56, 211, 190, + 69, 56, 29, 150, 147, 117, 75, 56, 240, 137, 78, 230, 171, 222, 245, 184, 157, 46, 73, 107, 112, 173, 176, 70, 67, + 14, 85, 52, 70, 242, 234, 164, 59, 224, 112, 67, 202, 198, 49, 75, 23, 156, 108, 144, 219, 11, 249, 2, 208, 133, + 38, 255, 191, 27, 43, 203, 186, 251, 31, 19, 73, 81, 75, 199, 115, 4, 52, 69, 136, 120, 45, 61, 98, 211, 27, 101, + 28, 151, 51, 179, 242, 70, 194, 71, 49, 125, 69, 57, 224, 228, 190, 27, 182, 188, 189, 3, 131, 88, 22, 150, 74, + 212, 27, 232, 120, 28, 13, 249, 108, 97, 227, 255, 255, 255, 216, 102, 159, 27, 123, 255, 29, 45, 141, 245, 30, + 33, 159, 66, 221, 214, 255, 255, 191, 72, 33, 86, 248, 173, 142, 103, 138, 122, 27, 101, 93, 121, 80, 221, 234, + 204, 101, 74, 104, 249, 123, 196, 201, 180, 48, 56, 45, 128, 65, 86, 75, 171, 92, 55, 66, 200, 161, 78, 48, 205, + 145, 104, 72, 43, 208, 197, 91, 187, 40, 156, 138, 67, 241, 136, 225, 27, 139, 67, 139, 187, 133, 219, 54, 110, + 66, 249, 49, 68, 209, 108, 241, 39, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2302, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16394342664128134055" + } + }, + "cborHex": "1be38467cac5637ba7", + "cborBytes": [27, 227, 132, 103, 202, 197, 99, 123, 167], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2303, + "sample": { + "_tag": "ByteArray", + "bytearray": "4b842f2391" + }, + "cborHex": "454b842f2391", + "cborBytes": [69, 75, 132, 47, 35, 145], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2304, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7075052909883002548" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9333572115367004381" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12935229163563220780" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10381471703721979148" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3904308639015494176" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "646977002868941773" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3cf8" + }, + { + "_tag": "ByteArray", + "bytearray": "74a3" + } + ] + } + } + ] + }, + "cborHex": "bf1b622fa322e4ab8eb4d8669f1b8187826335f108dd9f1bb3832a63f6757f2cffff1b90126582da1e2d0c9f1b362ee4057201e2201b08fa862801d9a3cd423cf84274a3ffff", + "cborBytes": [ + 191, 27, 98, 47, 163, 34, 228, 171, 142, 180, 216, 102, 159, 27, 129, 135, 130, 99, 53, 241, 8, 221, 159, 27, 179, + 131, 42, 99, 246, 117, 127, 44, 255, 255, 27, 144, 18, 101, 130, 218, 30, 45, 12, 159, 27, 54, 46, 228, 5, 114, 1, + 226, 32, 27, 8, 250, 134, 40, 1, 217, 163, 205, 66, 60, 248, 66, 116, 163, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2305, + "sample": { + "_tag": "ByteArray", + "bytearray": "02037cd61fe09e0cbe" + }, + "cborHex": "4902037cd61fe09e0cbe", + "cborBytes": [73, 2, 3, 124, 214, 31, 224, 158, 12, 190], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2306, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10086135418037340242" + } + }, + "cborHex": "1b8bf926b95c9a0852", + "cborBytes": [27, 139, 249, 38, 185, 92, 154, 8, 82], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2307, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1203672741930216543" + } + }, + "cborHex": "1b10b44dfb40922c5f", + "cborBytes": [27, 16, 180, 77, 251, 64, 146, 44, 95], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2308, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5741137748869056979" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8f4f8474a059afe9ab9dbf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5622948046055860430" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d210a76157141c27627a0391" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7117786509494645610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12898689300999136750" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aec4fe19" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13509629047583477296" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1281082170095448108" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13546154194399165366" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28b1e5d55dbf33372f4c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14146061631119587741" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "96528203168775126" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16412424435955914226" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4237515678652711706" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e8c529c0" + } + ] + }, + "cborHex": "d9050d9f9fd8669f1b4fac9e5d5fed09d39f4b8f4f8474a059afe9ab9dbf1b4e08b974cba2e8ceffff9f4cd210a76157141c27627a0391ffffbf1b62c7751e657ef36a41c61bb30159943e2f65ee44aec4fe191bbb7bd80aac830e301b11c751723ca0302c1bbbfd9b781dd47bb64a28b1e5d55dbf33372f4c1bc450e81abdaa799d1b0156efe3acae7bd61be3c4a5115817d5f21b3aceae0ef43e431aff44e8c529c0ff", + "cborBytes": [ + 217, 5, 13, 159, 159, 216, 102, 159, 27, 79, 172, 158, 93, 95, 237, 9, 211, 159, 75, 143, 79, 132, 116, 160, 89, + 175, 233, 171, 157, 191, 27, 78, 8, 185, 116, 203, 162, 232, 206, 255, 255, 159, 76, 210, 16, 167, 97, 87, 20, 28, + 39, 98, 122, 3, 145, 255, 255, 191, 27, 98, 199, 117, 30, 101, 126, 243, 106, 65, 198, 27, 179, 1, 89, 148, 62, + 47, 101, 238, 68, 174, 196, 254, 25, 27, 187, 123, 216, 10, 172, 131, 14, 48, 27, 17, 199, 81, 114, 60, 160, 48, + 44, 27, 187, 253, 155, 120, 29, 212, 123, 182, 74, 40, 177, 229, 213, 93, 191, 51, 55, 47, 76, 27, 196, 80, 232, + 26, 189, 170, 121, 157, 27, 1, 86, 239, 227, 172, 174, 123, 214, 27, 227, 196, 165, 17, 88, 23, 213, 242, 27, 58, + 206, 174, 14, 244, 62, 67, 26, 255, 68, 232, 197, 41, 192, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2309, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4840001995639104613" + }, + "fields": [] + }, + "cborHex": "d8669f1b432b242bee40246580ff", + "cborBytes": [216, 102, 159, 27, 67, 43, 36, 43, 238, 64, 36, 101, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2310, + "sample": { + "_tag": "ByteArray", + "bytearray": "93bec24a3d3705" + }, + "cborHex": "4793bec24a3d3705", + "cborBytes": [71, 147, 190, 194, 74, 61, 55, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2311, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4704715387671217169" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0240a7770ca16a86" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12138446143290989435" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0654d7c8de8362f3" + }, + { + "_tag": "ByteArray", + "bytearray": "cb1a62bc34212766d21f772d" + }, + { + "_tag": "ByteArray", + "bytearray": "0cf833abb5" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9501167973027303492" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3664839519870391100" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2342745418925349097" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18235635051154502858" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b414a81b7eb7504119f480240a7770ca16a8680d8669f1ba8746c748011db7b9f9f480654d7c8de8362f34ccb1a62bc34212766d21f772d450cf833abb5ff1b83daedee9f9c50441b32dc20204cb0133cd8669f1b20831a8bce3818e99f1bfd11fd7665b9f4caffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 65, 74, 129, 183, 235, 117, 4, 17, 159, 72, 2, 64, 167, 119, 12, 161, 106, 134, 128, 216, 102, + 159, 27, 168, 116, 108, 116, 128, 17, 219, 123, 159, 159, 72, 6, 84, 215, 200, 222, 131, 98, 243, 76, 203, 26, 98, + 188, 52, 33, 39, 102, 210, 31, 119, 45, 69, 12, 248, 51, 171, 181, 255, 27, 131, 218, 237, 238, 159, 156, 80, 68, + 27, 50, 220, 32, 32, 76, 176, 19, 60, 216, 102, 159, 27, 32, 131, 26, 139, 206, 56, 24, 233, 159, 27, 253, 17, + 253, 118, 101, 185, 244, 202, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2312, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14660101247875395594" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4241157014734506589" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14565378041390879441" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "655c0400f202" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bcb73246992dfb00a9f9f1b3adb9dd593e80a5d1bca229e287060d2d1ff46655c0400f202ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 203, 115, 36, 105, 146, 223, 176, 10, 159, 159, 27, 58, 219, 157, 213, 147, 232, 10, 93, + 27, 202, 34, 158, 40, 112, 96, 210, 209, 255, 70, 101, 92, 4, 0, 242, 2, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2313, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01ba00ff" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10141216180575180438" + } + }, + { + "_tag": "ByteArray", + "bytearray": "44d34c9d8331da9043b416e1" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3195fd1a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9784e0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "403abd462d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf344523fedf4ad8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e764651b5b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d7346892d05334d5d58" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38c12366c0036a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1fd3f03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b000" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3165473208959125056" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "66be99" + }, + { + "_tag": "ByteArray", + "bytearray": "0ae3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6553681665326166333" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12894249427936553086" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa" + } + } + ] + } + } + ] + }, + "cborHex": "bf4401ba00ff9f1b8cbcd662c1a096964c44d34c9d8331da9043b416e1ff443195fd1abf439784e045403abd462d48bf344523fedf4ad8414745e764651b5b4a9d7346892d05334d5d58ff4738c12366c0036a44a1fd3f0342b0001b2bee051cb606464041da9f4366be99420ae31b5af35ac070c1b13dff41fcbf1bb2f19389bd71287e41aaffff", + "cborBytes": [ + 191, 68, 1, 186, 0, 255, 159, 27, 140, 188, 214, 98, 193, 160, 150, 150, 76, 68, 211, 76, 157, 131, 49, 218, 144, + 67, 180, 22, 225, 255, 68, 49, 149, 253, 26, 191, 67, 151, 132, 224, 69, 64, 58, 189, 70, 45, 72, 191, 52, 69, 35, + 254, 223, 74, 216, 65, 71, 69, 231, 100, 101, 27, 91, 74, 157, 115, 70, 137, 45, 5, 51, 77, 93, 88, 255, 71, 56, + 193, 35, 102, 192, 3, 106, 68, 161, 253, 63, 3, 66, 176, 0, 27, 43, 238, 5, 28, 182, 6, 70, 64, 65, 218, 159, 67, + 102, 190, 153, 66, 10, 227, 27, 90, 243, 90, 192, 112, 193, 177, 61, 255, 65, 252, 191, 27, 178, 241, 147, 137, + 189, 113, 40, 126, 65, 170, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2314, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17784522854861553513" + } + }, + "cborHex": "1bf6cf514f5fd6bf69", + "cborBytes": [27, 246, 207, 81, 79, 95, 214, 191, 105], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2315, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4950640186250299922" + }, + "fields": [] + }, + "cborHex": "d8669f1b44b4350510390a1280ff", + "cborBytes": [216, 102, 159, 27, 68, 180, 53, 5, 16, 57, 10, 18, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2316, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fef7a9e5611334" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1618216978608749883" + } + } + } + ] + }, + "cborHex": "bf47fef7a9e56113341b16750fc4b37afd3bff", + "cborBytes": [191, 71, 254, 247, 169, 229, 97, 19, 52, 27, 22, 117, 15, 196, 179, 122, 253, 59, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2317, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11108228153807787614" + } + }, + "cborHex": "1b9a285aa6e7b4d65e", + "cborBytes": [27, 154, 40, 90, 166, 231, 180, 214, 94], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2318, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "43149f07e0391495" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b80206e01f81" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a9cb3dd4fc4a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7751433225517105664" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e5bfbb882d4de7fe7c" + }, + { + "_tag": "ByteArray", + "bytearray": "f1011eb88202" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14875696343803800101" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fa" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b2" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cf34c0f3e62cad60ee" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15396294807920803768" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "028e86c7c751ea6bba38" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "966147924613541371" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3290392550755322163" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0211" + }, + { + "_tag": "ByteArray", + "bytearray": "63ce0683" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8253559643149677190" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f08bf4843149f07e039149546b80206e01f81474a9cb3dd4fc4a61b6b929f73231b8200ff9f9f031bfffffffffffffff649e5bfbb882d4de7fe7c46f1011eb882021bce7117028700aa25ff8041faa041b2ff11d905059f49cf34c0f3e62cad60eed8669f1bd5aaa08e034f7fb89f4a028e86c7c751ea6bba381b0d68726b27122dfb1b2da9d297775cc9334202114463ce0683ffff9f1b728a88c4266fb286ffffff", + "cborBytes": [ + 159, 8, 191, 72, 67, 20, 159, 7, 224, 57, 20, 149, 70, 184, 2, 6, 224, 31, 129, 71, 74, 156, 179, 221, 79, 196, + 166, 27, 107, 146, 159, 115, 35, 27, 130, 0, 255, 159, 159, 3, 27, 255, 255, 255, 255, 255, 255, 255, 246, 73, + 229, 191, 187, 136, 45, 77, 231, 254, 124, 70, 241, 1, 30, 184, 130, 2, 27, 206, 113, 23, 2, 135, 0, 170, 37, 255, + 128, 65, 250, 160, 65, 178, 255, 17, 217, 5, 5, 159, 73, 207, 52, 192, 243, 230, 44, 173, 96, 238, 216, 102, 159, + 27, 213, 170, 160, 142, 3, 79, 127, 184, 159, 74, 2, 142, 134, 199, 199, 81, 234, 107, 186, 56, 27, 13, 104, 114, + 107, 39, 18, 45, 251, 27, 45, 169, 210, 151, 119, 92, 201, 51, 66, 2, 17, 68, 99, 206, 6, 131, 255, 255, 159, 27, + 114, 138, 136, 196, 38, 111, 178, 134, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2319, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14214187458321288500" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1389500954645044472" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9eed" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4646187140200891903" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12497003179570328738" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bc542f02ef00d8d34bf1b13487fc1a0af1cf8429eed1b407a929663a985ff1bad6e462e0b3774a2ffff", + "cborBytes": [ + 191, 27, 197, 66, 240, 46, 240, 13, 141, 52, 191, 27, 19, 72, 127, 193, 160, 175, 28, 248, 66, 158, 237, 27, 64, + 122, 146, 150, 99, 169, 133, 255, 27, 173, 110, 70, 46, 11, 55, 116, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2320, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5366312344098043481" + } + }, + "cborHex": "1b4a78f8a51fc1f659", + "cborBytes": [27, 74, 120, 248, 165, 31, 193, 246, 89], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2321, + "sample": { + "_tag": "ByteArray", + "bytearray": "a974b5eb4ba7564dafd7c34c" + }, + "cborHex": "4ca974b5eb4ba7564dafd7c34c", + "cborBytes": [76, 169, 116, 181, 235, 75, 167, 86, 77, 175, 215, 195, 76], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2322, + "sample": { + "_tag": "ByteArray", + "bytearray": "631fe7261610" + }, + "cborHex": "46631fe7261610", + "cborBytes": [70, 99, 31, 231, 38, 22, 16], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2323, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16719022746706055415" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9983367811809547468" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "954175ad8648" + } + ] + } + ] + }, + "cborHex": "d8669f1be805e69b611710f79fd8669f1b8a8c0c2174fa14cc9fa046954175ad8648ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 232, 5, 230, 155, 97, 23, 16, 247, 159, 216, 102, 159, 27, 138, 140, 12, 33, 116, 250, 20, 204, + 159, 160, 70, 149, 65, 117, 173, 134, 72, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2324, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9117898761661428274" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b867216a39a62aed" + }, + { + "_tag": "ByteArray", + "bytearray": "b915" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16655295298737752779" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1dda26a575a1e03662" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10007514456465306202" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf41029f1b7e89489d72cdb23248b867216a39a62aed42b9151be7237ed4a67f4acbff491dda26a575a1e03662d8669f1b8ae1d5604633725a80ffff", + "cborBytes": [ + 191, 65, 2, 159, 27, 126, 137, 72, 157, 114, 205, 178, 50, 72, 184, 103, 33, 106, 57, 166, 42, 237, 66, 185, 21, + 27, 231, 35, 126, 212, 166, 127, 74, 203, 255, 73, 29, 218, 38, 165, 117, 161, 224, 54, 98, 216, 102, 159, 27, + 138, 225, 213, 96, 70, 51, 114, 90, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2325, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1495728829611433413" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0dfd9fa111ba0f" + }, + { + "_tag": "ByteArray", + "bytearray": "96e43a0e34f90c8ca49eed" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d87a9f801b14c1e572214cddc5470dfd9fa111ba0f4b96e43a0e34f90c8ca49eed9f80ffff", + "cborBytes": [ + 216, 122, 159, 128, 27, 20, 193, 229, 114, 33, 76, 221, 197, 71, 13, 253, 159, 161, 17, 186, 15, 75, 150, 228, 58, + 14, 52, 249, 12, 140, 164, 158, 237, 159, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2326, + "sample": { + "_tag": "ByteArray", + "bytearray": "e277f82c" + }, + "cborHex": "44e277f82c", + "cborBytes": [68, 226, 119, 248, 44], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2327, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3530439545562949628" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48fe7ea89a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea5a842f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "571e0d9dee73" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9bcff86779604" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8522308ca6f36527b238" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5c92f81" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb2b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c435a6cf1b" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4330621620707819792" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16108212452906978450" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4398819490955548315" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c870b5e0dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a83cf361514c18b9a16" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d841129f738c53491643e2fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9476238006545248425" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8591384875162790528" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11653923192265134391" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13572382622647456259" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2adb" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16815348594446387432" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b30fea40fc64567fcbf4548fe7ea89a44ea5a842f46571e0d9dee7347a9bcff867796044a8522308ca6f36527b23844f5c92f8142eb2b45c435a6cf1bff1b3c19756b5eea8110d8669f1bdf8bdde1860b4c9280ff1b3d0bbf056578569bbf45c870b5e0dd4a7a83cf361514c18b9a164cd841129f738c53491643e2fe1b83825c427b2f70a9ff1b773abb065cbdea80801ba1bb0d65f2a65137d8669f1bbc5aca15f29612039f422adbffff1be95c1e74825748e880ff", + "cborBytes": [ + 191, 27, 48, 254, 164, 15, 198, 69, 103, 252, 191, 69, 72, 254, 126, 168, 154, 68, 234, 90, 132, 47, 70, 87, 30, + 13, 157, 238, 115, 71, 169, 188, 255, 134, 119, 150, 4, 74, 133, 34, 48, 140, 166, 243, 101, 39, 178, 56, 68, 245, + 201, 47, 129, 66, 235, 43, 69, 196, 53, 166, 207, 27, 255, 27, 60, 25, 117, 107, 94, 234, 129, 16, 216, 102, 159, + 27, 223, 139, 221, 225, 134, 11, 76, 146, 128, 255, 27, 61, 11, 191, 5, 101, 120, 86, 155, 191, 69, 200, 112, 181, + 224, 221, 74, 122, 131, 207, 54, 21, 20, 193, 139, 154, 22, 76, 216, 65, 18, 159, 115, 140, 83, 73, 22, 67, 226, + 254, 27, 131, 130, 92, 66, 123, 47, 112, 169, 255, 27, 119, 58, 187, 6, 92, 189, 234, 128, 128, 27, 161, 187, 13, + 101, 242, 166, 81, 55, 216, 102, 159, 27, 188, 90, 202, 21, 242, 150, 18, 3, 159, 66, 42, 219, 255, 255, 27, 233, + 92, 30, 116, 130, 87, 72, 232, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2328, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16320678638897981423" + } + }, + "cborHex": "1be27eb2c05cd1e7ef", + "cborBytes": [27, 226, 126, 178, 192, 92, 209, 231, 239], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2329, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6928304967659186768" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02be032bf84bb16ea15ef8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14085756695559244616" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4915183487855234098" + } + }, + { + "_tag": "ByteArray", + "bytearray": "69b539" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7840549294830818731" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9918493790154172560" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9723558051974436983" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10224997044100217684" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5792537752903494635" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6987206325590141319" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "23195270192397332" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3226080633387692352" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17523336457918806898" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2605283504927618888" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "afef6f8f1291" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8918190225418720232" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "49" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13851816209173521312" + } + } + ] + }, + "cborHex": "d8669f1b602648a90ce66a509f9f4b02be032bf84bb16ea15ef81bc37aa915c7638b489f1b44363d57277a0c324369b5391b6ccf3a0aea5495ab1b89a5918d3d0ea890ffffd8669f1b86f10487d8d358779fd8669f1b8de67ca323033b549f1b50633a6565da2beb41e51b60f78b222129a987ffffbf1b005267f9b0497c141b2cc5573e59d731401bf32f65aa75e6fb721b2427d38b5a653748ff9f46afef6f8f1291ff1b7bc3c6c2697193e8ffff4149a01bc03b8973c1c923a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 96, 38, 72, 169, 12, 230, 106, 80, 159, 159, 75, 2, 190, 3, 43, 248, 75, 177, 110, 161, 94, + 248, 27, 195, 122, 169, 21, 199, 99, 139, 72, 159, 27, 68, 54, 61, 87, 39, 122, 12, 50, 67, 105, 181, 57, 27, 108, + 207, 58, 10, 234, 84, 149, 171, 27, 137, 165, 145, 141, 61, 14, 168, 144, 255, 255, 216, 102, 159, 27, 134, 241, + 4, 135, 216, 211, 88, 119, 159, 216, 102, 159, 27, 141, 230, 124, 163, 35, 3, 59, 84, 159, 27, 80, 99, 58, 101, + 101, 218, 43, 235, 65, 229, 27, 96, 247, 139, 34, 33, 41, 169, 135, 255, 255, 191, 27, 0, 82, 103, 249, 176, 73, + 124, 20, 27, 44, 197, 87, 62, 89, 215, 49, 64, 27, 243, 47, 101, 170, 117, 230, 251, 114, 27, 36, 39, 211, 139, + 90, 101, 55, 72, 255, 159, 70, 175, 239, 111, 143, 18, 145, 255, 27, 123, 195, 198, 194, 105, 113, 147, 232, 255, + 255, 65, 73, 160, 27, 192, 59, 137, 115, 193, 201, 35, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2330, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10399758128742666260" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f673180fbe56e59d113a6d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16035296904287557217" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4590454343436865775" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1043742624026883695" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10537272235946406921" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7649595779233700887" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7e6fff132743" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9673764406961786188" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13152352236319319313" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1637fad3eb0535f4c34688" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "47ea" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2082989784087769603" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0298ec85dc94673eefece" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3902697127181861696" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb36fb52c223b3e98c1263de" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5509317668842034801" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6013233688851673574" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7a9c6d664afadec57" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "157006824099432828" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c0771ae1" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15052914604109237890" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "303a072ef60d739912b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8937578472120611776" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94572ce8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4213548fb53acd9b75503b1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb4fc5e3cc56" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9320aaec7156343" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c788d4f3e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "929324202754938799" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8708402057911749935" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b90535ceaf5b010149f9f9f4bf673180fbe56e59d113a6d1bde88d19367fb1661ff1b3fb491e7723410efffd8669f1b0e7c1e62f60e766f9fd8669f1b923be9450d2bf4099f1b6a28d2d4f88d5c17467e6fff1327431b86401d796dc64d4c1bb6868aacbea0a511ffff4b1637fad3eb0535f4c346889f4247eaffbf1b1ce8442c2751b2034be0298ec85dc94673eefece1b36292a5c1b9cc3404cfb36fb52c223b3e98c1263de1b4c75073aee1cd6711b53734c2e376a71e649e7a9c6d664afadec571b022dccdfe9c2497cff44c0771ae1ffff801bd0e6b21424388e82bf4a303a072ef60d739912b31b7c08a8445eed73c04494572ce84cd4213548fb53acd9b75503b146bb4fc5e3cc5648f9320aaec715634345c788d4f3e61b0ce59f704a6197af41ca1b78da7588571c4d2fffffff", + "cborBytes": [ + 216, 102, 159, 27, 144, 83, 92, 234, 245, 176, 16, 20, 159, 159, 159, 75, 246, 115, 24, 15, 190, 86, 229, 157, 17, + 58, 109, 27, 222, 136, 209, 147, 103, 251, 22, 97, 255, 27, 63, 180, 145, 231, 114, 52, 16, 239, 255, 216, 102, + 159, 27, 14, 124, 30, 98, 246, 14, 118, 111, 159, 216, 102, 159, 27, 146, 59, 233, 69, 13, 43, 244, 9, 159, 27, + 106, 40, 210, 212, 248, 141, 92, 23, 70, 126, 111, 255, 19, 39, 67, 27, 134, 64, 29, 121, 109, 198, 77, 76, 27, + 182, 134, 138, 172, 190, 160, 165, 17, 255, 255, 75, 22, 55, 250, 211, 235, 5, 53, 244, 195, 70, 136, 159, 66, 71, + 234, 255, 191, 27, 28, 232, 68, 44, 39, 81, 178, 3, 75, 224, 41, 142, 200, 93, 201, 70, 115, 238, 254, 206, 27, + 54, 41, 42, 92, 27, 156, 195, 64, 76, 251, 54, 251, 82, 194, 35, 179, 233, 140, 18, 99, 222, 27, 76, 117, 7, 58, + 238, 28, 214, 113, 27, 83, 115, 76, 46, 55, 106, 113, 230, 73, 231, 169, 198, 214, 100, 175, 173, 236, 87, 27, 2, + 45, 204, 223, 233, 194, 73, 124, 255, 68, 192, 119, 26, 225, 255, 255, 128, 27, 208, 230, 178, 20, 36, 56, 142, + 130, 191, 74, 48, 58, 7, 46, 246, 13, 115, 153, 18, 179, 27, 124, 8, 168, 68, 94, 237, 115, 192, 68, 148, 87, 44, + 232, 76, 212, 33, 53, 72, 251, 83, 172, 217, 183, 85, 3, 177, 70, 187, 79, 197, 227, 204, 86, 72, 249, 50, 10, + 174, 199, 21, 99, 67, 69, 199, 136, 212, 243, 230, 27, 12, 229, 159, 112, 74, 97, 151, 175, 65, 202, 27, 120, 218, + 117, 136, 87, 28, 77, 47, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2331, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06ffaf" + } + } + ] + }, + "cborHex": "bf084306ffafff", + "cborBytes": [191, 8, 67, 6, 255, 175, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2332, + "sample": { + "_tag": "ByteArray", + "bytearray": "19aa12734e8126c82c45" + }, + "cborHex": "4a19aa12734e8126c82c45", + "cborBytes": [74, 25, 170, 18, 115, 78, 129, 38, 200, 44, 69], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2333, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2728820362134248661" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4509568655083531571" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9d" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd00c0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "390976718833724171" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b9" + } + ] + }, + "cborHex": "9f9f1b25deb7a954dd5cd5d8669f1b3e9534cc907d6d339f419dffffffd87d9f43fd00c01b056d074119882b0bff41b9ff", + "cborBytes": [ + 159, 159, 27, 37, 222, 183, 169, 84, 221, 92, 213, 216, 102, 159, 27, 62, 149, 52, 204, 144, 125, 109, 51, 159, + 65, 157, 255, 255, 255, 216, 125, 159, 67, 253, 0, 192, 27, 5, 109, 7, 65, 25, 136, 43, 11, 255, 65, 185, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2334, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4275488245495074629" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff06135684" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3078a8e2b0ddc7ed8937626" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16340931257079396775" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b3b5595e822178f4545ff061356844cf3078a8e2b0ddc7ed89376261be2c6a6667d4b79a7ffff", + "cborBytes": [ + 159, 191, 27, 59, 85, 149, 232, 34, 23, 143, 69, 69, 255, 6, 19, 86, 132, 76, 243, 7, 138, 142, 43, 13, 220, 126, + 216, 147, 118, 38, 27, 226, 198, 166, 102, 125, 75, 121, 167, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2335, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0aa049b71d35b5fed05d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5372550189306284065" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adca7d74a6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d30740ed8f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7298764267168133549" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8005602810701254173" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14005030766157717191" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8384342548017559376" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1172747464987169141" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "758608373568763699" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ef264725c247dbc4a5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3682687451041245248" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15838381072276324635" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb55598a52ae41" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15336668197154196186" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14730845237439184920" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17865758368527276131" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "36" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5674803426281987939" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abce291e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7968894864423922989" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "133173564144777054" + } + } + ] + }, + "cborHex": "9fbf4a0aa049b71d35b5fed05d1b4a8f21eea38f082145adca7d74a6460d30740ed8f741ff1b654a6b6e33def1adff9fd8669f1b6f199d5740b78e1d9f1bc25bdd47ad3f5ec71b745b2b2011c7b7501b10466f9b1dccd175ffffd8669f1b0a871e4be633f7339f49ef264725c247dbc4a51b331b88b99a1a2840ffff9f1bdbcd3bab7e4d011b47cb55598a52ae411bd4d6ca77d9680ada1bcc6e79b232d140181bf7efec944f07d863ff4136bf412e1b4ec0f3a659b51f6344abce291e1b6e9733a87e6c2d2dffff1b01d920a6a852775eff", + "cborBytes": [ + 159, 191, 74, 10, 160, 73, 183, 29, 53, 181, 254, 208, 93, 27, 74, 143, 33, 238, 163, 143, 8, 33, 69, 173, 202, + 125, 116, 166, 70, 13, 48, 116, 14, 216, 247, 65, 255, 27, 101, 74, 107, 110, 51, 222, 241, 173, 255, 159, 216, + 102, 159, 27, 111, 25, 157, 87, 64, 183, 142, 29, 159, 27, 194, 91, 221, 71, 173, 63, 94, 199, 27, 116, 91, 43, + 32, 17, 199, 183, 80, 27, 16, 70, 111, 155, 29, 204, 209, 117, 255, 255, 216, 102, 159, 27, 10, 135, 30, 75, 230, + 51, 247, 51, 159, 73, 239, 38, 71, 37, 194, 71, 219, 196, 165, 27, 51, 27, 136, 185, 154, 26, 40, 64, 255, 255, + 159, 27, 219, 205, 59, 171, 126, 77, 1, 27, 71, 203, 85, 89, 138, 82, 174, 65, 27, 212, 214, 202, 119, 217, 104, + 10, 218, 27, 204, 110, 121, 178, 50, 209, 64, 24, 27, 247, 239, 236, 148, 79, 7, 216, 99, 255, 65, 54, 191, 65, + 46, 27, 78, 192, 243, 166, 89, 181, 31, 99, 68, 171, 206, 41, 30, 27, 110, 151, 51, 168, 126, 108, 45, 45, 255, + 255, 27, 1, 217, 32, 166, 168, 82, 119, 94, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2336, + "sample": { + "_tag": "ByteArray", + "bytearray": "c73b05" + }, + "cborHex": "43c73b05", + "cborBytes": [67, 199, 59, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2337, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13178447291356224528" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1fb1b552eace3793617d64" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14748442224046450536" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13187597114740071133" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2416e145afba9fcaa1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13658146794179428685" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "083aa2544162b5858a7f5454" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b069f023b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14957622935214719703" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f1bb6e33ffd347f1c104b1fb1b552eace3793617d641bccacfe0feaa92768ffd8669f1bb703c1b4790c5add80ffffbf08492416e145afba9fcaa11bbd8b7c253534814d41074c083aa2544162b5858a7f5454456b069f023b41fa0bffd8669f1bfffffffffffffffa9f1bcf9426cf89b582d7ffffff", + "cborBytes": [ + 159, 159, 159, 27, 182, 227, 63, 253, 52, 127, 28, 16, 75, 31, 177, 181, 82, 234, 206, 55, 147, 97, 125, 100, 27, + 204, 172, 254, 15, 234, 169, 39, 104, 255, 216, 102, 159, 27, 183, 3, 193, 180, 121, 12, 90, 221, 128, 255, 255, + 191, 8, 73, 36, 22, 225, 69, 175, 186, 159, 202, 161, 27, 189, 139, 124, 37, 53, 52, 129, 77, 65, 7, 76, 8, 58, + 162, 84, 65, 98, 181, 133, 138, 127, 84, 84, 69, 107, 6, 159, 2, 59, 65, 250, 11, 255, 216, 102, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 250, 159, 27, 207, 148, 38, 207, 137, 181, 130, 215, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2338, + "sample": { + "_tag": "ByteArray", + "bytearray": "0608487561" + }, + "cborHex": "450608487561", + "cborBytes": [69, 6, 8, 72, 117, 97], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2339, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9599875980819817622" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2996ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "449700931388479648" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18309624686840315912" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1953925355467662033" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3049312745992226896" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2676515730494524611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3001878277528541429" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3207472097228582413" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6413310251364228836" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6683808119360222919" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5905471357389963423" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17285435066202078926" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f1181eb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17945016329815189686" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11997719693345753504" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1553006267958086545" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16950220067168998439" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9228332109113909783" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4becf25e5ffe0c5dc53bd6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1663757638363899274" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9536f7fe8ae7a0" + }, + { + "_tag": "ByteArray", + "bytearray": "29d5b088e3a6a72e58" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ac976babd0293aa632ee723b" + }, + { + "_tag": "ByteArray", + "bytearray": "ed4c0cfc7e" + }, + { + "_tag": "ByteArray", + "bytearray": "f779d0" + } + ] + } + ] + }, + "cborHex": "d8669f1b85399c579c91e4969f432996ed1b063da89d4e9298a01bfe18daa4e5d70008bf1b1b1dbcc22a4762d11b2a5155c959f008501b2524e4e047df0cc31b29a8d063870cd8f51b2c833ae0e6496e0d1b5900a7b1c6ef9ee41b5cc1a8127d5676c71b51f472e93879009f1befe2339c4d0e3ece449f1181eb1bf90981467337e8b61ba680767e949509a0ff9fd8669f1b158d62f8f798cb919f1beb3b4758504e54271b80119f28d110e2174b4becf25e5ffe0c5dc53bd61b1716dac1d305e58affff9f479536f7fe8ae7a04929d5b088e3a6a72e58ff4cac976babd0293aa632ee723b45ed4c0cfc7e43f779d0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 133, 57, 156, 87, 156, 145, 228, 150, 159, 67, 41, 150, 237, 27, 6, 61, 168, 157, 78, 146, 152, + 160, 27, 254, 24, 218, 164, 229, 215, 0, 8, 191, 27, 27, 29, 188, 194, 42, 71, 98, 209, 27, 42, 81, 85, 201, 89, + 240, 8, 80, 27, 37, 36, 228, 224, 71, 223, 12, 195, 27, 41, 168, 208, 99, 135, 12, 216, 245, 27, 44, 131, 58, 224, + 230, 73, 110, 13, 27, 89, 0, 167, 177, 198, 239, 158, 228, 27, 92, 193, 168, 18, 125, 86, 118, 199, 27, 81, 244, + 114, 233, 56, 121, 0, 159, 27, 239, 226, 51, 156, 77, 14, 62, 206, 68, 159, 17, 129, 235, 27, 249, 9, 129, 70, + 115, 55, 232, 182, 27, 166, 128, 118, 126, 148, 149, 9, 160, 255, 159, 216, 102, 159, 27, 21, 141, 98, 248, 247, + 152, 203, 145, 159, 27, 235, 59, 71, 88, 80, 78, 84, 39, 27, 128, 17, 159, 40, 209, 16, 226, 23, 75, 75, 236, 242, + 94, 95, 254, 12, 93, 197, 59, 214, 27, 23, 22, 218, 193, 211, 5, 229, 138, 255, 255, 159, 71, 149, 54, 247, 254, + 138, 231, 160, 73, 41, 213, 176, 136, 227, 166, 167, 46, 88, 255, 76, 172, 151, 107, 171, 208, 41, 58, 166, 50, + 238, 114, 59, 69, 237, 76, 12, 252, 126, 67, 247, 121, 208, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2340, + "sample": { + "_tag": "ByteArray", + "bytearray": "04e00101" + }, + "cborHex": "4404e00101", + "cborBytes": [68, 4, 224, 1, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2341, + "sample": { + "_tag": "ByteArray", + "bytearray": "38a6aedacbd5ee" + }, + "cborHex": "4738a6aedacbd5ee", + "cborBytes": [71, 56, 166, 174, 218, 203, 213, 238], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2342, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "52fe3499dfcf971fdda42d" + } + ] + }, + "cborHex": "9f4b52fe3499dfcf971fdda42dff", + "cborBytes": [159, 75, 82, 254, 52, 153, 223, 207, 151, 31, 221, 164, 45, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2343, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16653239904375902977" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1376663530343547007" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11208132376151872834" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1650432248176079556" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8f4eecff8d61eaa4268ef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7785740834831759462" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c08458081fc254" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14873657045140310758" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6b0990e34f67c76d2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16486253443216712885" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16582334815260992408" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b84d8bcf3958de" + }, + { + "_tag": "ByteArray", + "bytearray": "35c3ceb704" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15495512839180640837" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "489459140543575920" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14131594980461750216" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7217122407006031015" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18439748853654365859" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5093215057377199834" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "739b70630fc0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16013218252846167869" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8be4606807c2fe2e8890" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5512366617623623847" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17067790516454179643" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9000bc4b6b4d84d165a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18102983109448078939" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15501319001965948180" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "291099060400507593" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eebe74d99772aab391bc1e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2435308211569103113" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15791260359866181441" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17303929619245843862" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2278316193368734527" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1be71c3175dbaf93019fbf1b131ae42fdd5cc07f1b9b8b49034c1655421b16e78362a66272c44bd8f4eecff8d61eaa4268ef1b6c0c8209e566786647c08458081fc2541bce69d8474e930ae649e6b0990e34f67c76d21be4caf0289ffe24b51be62049a852396398ff9f47b84d8bcf3958de4535c3ceb7049f1bd70b1ed417dde2451b06cae87ebc2af7701bc41d82c3281da7c81b64285e975a1b4ca71bffe725e2697c26a3ffd8669f1b46aebc1c13a386da9f46739b70630fc01bde3a6128c7b2773dffff4a8be4606807c2fe2e8890ff1b4c7fdc3ba32d78a7bf1becdcf90bb208433b4a9000bc4b6b4d84d165a51bfb3ab7396d8c965b1bd71fbf80b6316d14ffbf1b040a310d999f4ac94beebe74d99772aab391bc1e1b21cbf3ea652b11091bdb25d3a1b187e7411bf023e84efd8245961b1f9e3481bfc37b3fffffff", + "cborBytes": [ + 216, 102, 159, 27, 231, 28, 49, 117, 219, 175, 147, 1, 159, 191, 27, 19, 26, 228, 47, 221, 92, 192, 127, 27, 155, + 139, 73, 3, 76, 22, 85, 66, 27, 22, 231, 131, 98, 166, 98, 114, 196, 75, 216, 244, 238, 207, 248, 214, 30, 170, + 66, 104, 239, 27, 108, 12, 130, 9, 229, 102, 120, 102, 71, 192, 132, 88, 8, 31, 194, 84, 27, 206, 105, 216, 71, + 78, 147, 10, 230, 73, 230, 176, 153, 14, 52, 246, 124, 118, 210, 27, 228, 202, 240, 40, 159, 254, 36, 181, 27, + 230, 32, 73, 168, 82, 57, 99, 152, 255, 159, 71, 184, 77, 139, 207, 57, 88, 222, 69, 53, 195, 206, 183, 4, 159, + 27, 215, 11, 30, 212, 23, 221, 226, 69, 27, 6, 202, 232, 126, 188, 42, 247, 112, 27, 196, 29, 130, 195, 40, 29, + 167, 200, 27, 100, 40, 94, 151, 90, 27, 76, 167, 27, 255, 231, 37, 226, 105, 124, 38, 163, 255, 216, 102, 159, 27, + 70, 174, 188, 28, 19, 163, 134, 218, 159, 70, 115, 155, 112, 99, 15, 192, 27, 222, 58, 97, 40, 199, 178, 119, 61, + 255, 255, 74, 139, 228, 96, 104, 7, 194, 254, 46, 136, 144, 255, 27, 76, 127, 220, 59, 163, 45, 120, 167, 191, 27, + 236, 220, 249, 11, 178, 8, 67, 59, 74, 144, 0, 188, 75, 107, 77, 132, 209, 101, 165, 27, 251, 58, 183, 57, 109, + 140, 150, 91, 27, 215, 31, 191, 128, 182, 49, 109, 20, 255, 191, 27, 4, 10, 49, 13, 153, 159, 74, 201, 75, 238, + 190, 116, 217, 151, 114, 170, 179, 145, 188, 30, 27, 33, 203, 243, 234, 101, 43, 17, 9, 27, 219, 37, 211, 161, + 177, 135, 231, 65, 27, 240, 35, 232, 78, 253, 130, 69, 150, 27, 31, 158, 52, 129, 191, 195, 123, 63, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2344, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5697890275932499234" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3608697358276342385" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9786297046704372029" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81318165501720d806642a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10808453953816344267" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19443727" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11813361227479891207" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3ca22ce00cfb22f7e0a1011" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15217527468494075383" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1aa184db6cf8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16779936960702902718" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5046219740868831376" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15933934500375111166" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11723081133967934683" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "504396558930280172" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1081033747867101212" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13767267111656532572" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17124715155206517608" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06665011" + }, + { + "_tag": "ByteArray", + "bytearray": "1094dc" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5ebf35bf9fba141a25fa" + } + ] + } + ] + }, + "cborHex": "d9050d9fa09fbf1b4f12f9046a1bed221b3214ab20adf3b2711b87cfe9505f44b93d4b81318165501720d806642a1b95ff579af863b6cb44194437271ba3f17d724f4fbd074cc3ca22ce00cfb22f7e0a10111bd32f849b4f56b5f7461aa184db6cf81be8de4fc30824f1be1b4607c61e490ce890ffd8669f1bdd20b501a93325fe9f1ba2b0c02e073e04db1b06fff9ff78f7feec1b0f009a7753d3e81cffffd8669f1bbf0f287ef634aa5c9f1beda735b3f9d533684406665011431094dcffff4a5ebf35bf9fba141a25faffff", + "cborBytes": [ + 217, 5, 13, 159, 160, 159, 191, 27, 79, 18, 249, 4, 106, 27, 237, 34, 27, 50, 20, 171, 32, 173, 243, 178, 113, 27, + 135, 207, 233, 80, 95, 68, 185, 61, 75, 129, 49, 129, 101, 80, 23, 32, 216, 6, 100, 42, 27, 149, 255, 87, 154, + 248, 99, 182, 203, 68, 25, 68, 55, 39, 27, 163, 241, 125, 114, 79, 79, 189, 7, 76, 195, 202, 34, 206, 0, 207, 178, + 47, 126, 10, 16, 17, 27, 211, 47, 132, 155, 79, 86, 181, 247, 70, 26, 161, 132, 219, 108, 248, 27, 232, 222, 79, + 195, 8, 36, 241, 190, 27, 70, 7, 198, 30, 73, 12, 232, 144, 255, 216, 102, 159, 27, 221, 32, 181, 1, 169, 51, 37, + 254, 159, 27, 162, 176, 192, 46, 7, 62, 4, 219, 27, 6, 255, 249, 255, 120, 247, 254, 236, 27, 15, 0, 154, 119, 83, + 211, 232, 28, 255, 255, 216, 102, 159, 27, 191, 15, 40, 126, 246, 52, 170, 92, 159, 27, 237, 167, 53, 179, 249, + 213, 51, 104, 68, 6, 102, 80, 17, 67, 16, 148, 220, 255, 255, 74, 94, 191, 53, 191, 159, 186, 20, 26, 37, 250, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2345, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17011856258399140163" + } + }, + "cborHex": "1bec16412263e2f943", + "cborBytes": [27, 236, 22, 65, 34, 99, 226, 249, 67], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2346, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10640304407912484784" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "44826cd14bd1c2" + } + ] + }, + "cborHex": "d8669f1b93a9f47bf7a58fb09f4744826cd14bd1c2ffff", + "cborBytes": [ + 216, 102, 159, 27, 147, 169, 244, 123, 247, 165, 143, 176, 159, 71, 68, 130, 108, 209, 75, 209, 194, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2347, + "sample": { + "_tag": "ByteArray", + "bytearray": "6dab9bc5b210" + }, + "cborHex": "466dab9bc5b210", + "cborBytes": [70, 109, 171, 155, 197, 178, 16], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2348, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2539239414732482245" + } + }, + "cborHex": "1b233d30cb52cce6c5", + "cborBytes": [27, 35, 61, 48, 203, 82, 204, 230, 197], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2349, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16304981944443657165" + } + }, + "cborHex": "1be246eeb0e3b8dbcd", + "cborBytes": [27, 226, 70, 238, 176, 227, 184, 219, 205], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2350, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7779268699294635845" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11642786572124555426" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13425606405872748516" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11785880114455503745" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3694523152297740782" + } + }, + { + "_tag": "ByteArray", + "bytearray": "70a803a8bbef614e51607e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16455406511787725966" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12339114916016744069" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17403119810237381691" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "35793395189340422" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7634612066952132071" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "989a13d2faa68aff4807" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "689187699442868477" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6219252425093823157" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1408990742062357816" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9242640133522186860" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "22986951046527621" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc80e3e5ee7d720ba1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1109592610998926760" + } + } + } + ] + }, + "cborHex": "bf1b6bf583aa69c59745d8669f1ba1937cb3832c08a29f1bba5155e4ec4107e41ba38fdb851375e3811b3345953b8b29c9ee4b70a803a8bbef614e51607e1be45d5909b9c1d48effff1bab3d57a403e6e6859f1bf1844d4300c33c3b1b007f29e73d90d9061b69f397399897b5e7ff4a989a13d2faa68aff4807d8669f1b09907c8fa8dc60fd9f1b564f39212e343ab51b138dbd9d6070dd381b8044743b595be26c1b0051aa829b98fa85ffff49fc80e3e5ee7d720ba11b0f661099cffd3da8ff", + "cborBytes": [ + 191, 27, 107, 245, 131, 170, 105, 197, 151, 69, 216, 102, 159, 27, 161, 147, 124, 179, 131, 44, 8, 162, 159, 27, + 186, 81, 85, 228, 236, 65, 7, 228, 27, 163, 143, 219, 133, 19, 117, 227, 129, 27, 51, 69, 149, 59, 139, 41, 201, + 238, 75, 112, 168, 3, 168, 187, 239, 97, 78, 81, 96, 126, 27, 228, 93, 89, 9, 185, 193, 212, 142, 255, 255, 27, + 171, 61, 87, 164, 3, 230, 230, 133, 159, 27, 241, 132, 77, 67, 0, 195, 60, 59, 27, 0, 127, 41, 231, 61, 144, 217, + 6, 27, 105, 243, 151, 57, 152, 151, 181, 231, 255, 74, 152, 154, 19, 210, 250, 166, 138, 255, 72, 7, 216, 102, + 159, 27, 9, 144, 124, 143, 168, 220, 96, 253, 159, 27, 86, 79, 57, 33, 46, 52, 58, 181, 27, 19, 141, 189, 157, 96, + 112, 221, 56, 27, 128, 68, 116, 59, 89, 91, 226, 108, 27, 0, 81, 170, 130, 155, 152, 250, 133, 255, 255, 73, 252, + 128, 227, 229, 238, 125, 114, 11, 161, 27, 15, 102, 16, 153, 207, 253, 61, 168, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2351, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9849365867341297674" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4879599202688124522" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3642126390019021639" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6216066504151292197" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10342128117014145967" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13274952194674022458" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "184563d2de5f684700b6" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9539537902449187557" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5415597330976860361" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12895311896630217383" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b88affa1279bc380a9fbf1b43b7d19f2281466a1b328b6ea7a828db471b5643e78d282459251b8f869eba3c352baf1bb83a1aaff5d6583a4a184563d2de5f684700b6ff9f1b84633f2dfcdbdae51b4b281114576de8c91bb2f559d902834aa7ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 136, 175, 250, 18, 121, 188, 56, 10, 159, 191, 27, 67, 183, 209, 159, 34, 129, 70, 106, + 27, 50, 139, 110, 167, 168, 40, 219, 71, 27, 86, 67, 231, 141, 40, 36, 89, 37, 27, 143, 134, 158, 186, 60, 53, 43, + 175, 27, 184, 58, 26, 175, 245, 214, 88, 58, 74, 24, 69, 99, 210, 222, 95, 104, 71, 0, 182, 255, 159, 27, 132, 99, + 63, 45, 252, 219, 218, 229, 27, 75, 40, 17, 20, 87, 109, 232, 201, 27, 178, 245, 89, 217, 2, 131, 74, 167, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2352, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d0f94f52704276a9c8cbe6ae" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1855979001265435085" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d1ca767" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10190772115674125184" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6081009478880413383" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13703644875912953043" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8effac" + } + ] + }, + "cborHex": "d905009f41029f4cd0f94f52704276a9c8cbe6aebf1b19c1c3117902b1cd449d1ca7671b8d6ce53f05b653801b546415e7087346c71bbe2d2068dce4bcd341cfffff438effacff", + "cborBytes": [ + 217, 5, 0, 159, 65, 2, 159, 76, 208, 249, 79, 82, 112, 66, 118, 169, 200, 203, 230, 174, 191, 27, 25, 193, 195, + 17, 121, 2, 177, 205, 68, 157, 28, 167, 103, 27, 141, 108, 229, 63, 5, 182, 83, 128, 27, 84, 100, 21, 231, 8, 115, + 70, 199, 27, 190, 45, 32, 104, 220, 228, 188, 211, 65, 207, 255, 255, 67, 142, 255, 172, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2353, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8234542902263542721" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16862138987538868275" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "50545d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2242624280089129736" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5967" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03d3b6bf860f029ea0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "903277727973276581" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "13464780b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0613608a44ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bad1c84e1871c691a47e58" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb5c4d9e176e" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7246f9242121f3c19fd8669f1bea025a11d984e8339f4350545dd8669f1b1f1f66e69b60f30880ffffff425967bf4903d3b6bf860f029ea01b0c89164ecd5e7ba54513464780b0460613608a44ae4bbad1c84e1871c691a47e5846cb5c4d9e176effffff", + "cborBytes": [ + 216, 102, 159, 27, 114, 70, 249, 36, 33, 33, 243, 193, 159, 216, 102, 159, 27, 234, 2, 90, 17, 217, 132, 232, 51, + 159, 67, 80, 84, 93, 216, 102, 159, 27, 31, 31, 102, 230, 155, 96, 243, 8, 128, 255, 255, 255, 66, 89, 103, 191, + 73, 3, 211, 182, 191, 134, 15, 2, 158, 160, 27, 12, 137, 22, 78, 205, 94, 123, 165, 69, 19, 70, 71, 128, 176, 70, + 6, 19, 96, 138, 68, 174, 75, 186, 209, 200, 78, 24, 113, 198, 145, 164, 126, 88, 70, 203, 92, 77, 158, 23, 110, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2354, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8648466330320280434" + } + }, + "cborHex": "1b7805864e4eaa9b72", + "cborBytes": [27, 120, 5, 134, 78, 78, 170, 155, 114], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2355, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0705010eff04f102fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + }, + "cborHex": "bf490705010eff04f102fc10ff", + "cborBytes": [191, 73, 7, 5, 1, 14, 255, 4, 241, 2, 252, 16, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2356, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "20" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6752780b1d34c63be9a47" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e185e2692e2901f48126d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe90fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84d5f1f9daccf5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "150879294174733080" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d741d28db3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20c2aca4b3b38578" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e13b88866f" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf41204bc6752780b1d34c63be9a474b2e185e2692e2901f48126d43fe90fd4784d5f1f9daccf51b021807eb2d3f231845d741d28db34820c2aca4b3b3857845e13b88866fa0ff", + "cborBytes": [ + 191, 65, 32, 75, 198, 117, 39, 128, 177, 211, 76, 99, 190, 154, 71, 75, 46, 24, 94, 38, 146, 226, 144, 31, 72, 18, + 109, 67, 254, 144, 253, 71, 132, 213, 241, 249, 218, 204, 245, 27, 2, 24, 7, 235, 45, 63, 35, 24, 69, 215, 65, + 210, 141, 179, 72, 32, 194, 172, 164, 179, 179, 133, 120, 69, 225, 59, 136, 134, 111, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2357, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12936351832731278421" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18113036435111781943" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "56240768cb3a48f9" + }, + { + "_tag": "ByteArray", + "bytearray": "ec672d968774" + }, + { + "_tag": "ByteArray", + "bytearray": "87" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13579548317087700754" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "525256978316152250" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16923922522790229593" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1590703747376286817" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12289342358846112198" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9f1bb3872773bf6bdc559f1bfb5e6eabb68ba6379f4856240768cb3a48f946ec672d96877441871bbc743f3f32441712ffbf1b074a167058544dba1beaddd9de2124f659ffffd8669f1b161350a15d3f0c619f1baa8c83c37e2f01c6ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 27, 179, 135, 39, 115, 191, 107, 220, 85, 159, 27, + 251, 94, 110, 171, 182, 139, 166, 55, 159, 72, 86, 36, 7, 104, 203, 58, 72, 249, 70, 236, 103, 45, 150, 135, 116, + 65, 135, 27, 188, 116, 63, 63, 50, 68, 23, 18, 255, 191, 27, 7, 74, 22, 112, 88, 84, 77, 186, 27, 234, 221, 217, + 222, 33, 36, 246, 89, 255, 255, 216, 102, 159, 27, 22, 19, 80, 161, 93, 63, 12, 97, 159, 27, 170, 140, 131, 195, + 126, 47, 1, 198, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2358, + "sample": { + "_tag": "ByteArray", + "bytearray": "a5d5c49055c100fe740535ec" + }, + "cborHex": "4ca5d5c49055c100fe740535ec", + "cborBytes": [76, 165, 213, 196, 144, 85, 193, 0, 254, 116, 5, 53, 236], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2359, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12469412587210165591" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13783854894341751606" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6810968337079226287" + } + } + ] + }, + "cborHex": "d905089f1bad0c40aeaa724d57a0d8669f1bbf4a16ff14c5033680ff1b5e856b9dd40a4fafff", + "cborBytes": [ + 217, 5, 8, 159, 27, 173, 12, 64, 174, 170, 114, 77, 87, 160, 216, 102, 159, 27, 191, 74, 22, 255, 20, 197, 3, 54, + 128, 255, 27, 94, 133, 107, 157, 212, 10, 79, 175, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2360, + "sample": { + "_tag": "ByteArray", + "bytearray": "e1ee01ff13fefc2b07" + }, + "cborHex": "49e1ee01ff13fefc2b07", + "cborBytes": [73, 225, 238, 1, 255, 19, 254, 252, 43, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2361, + "sample": { + "_tag": "ByteArray", + "bytearray": "cc15208518" + }, + "cborHex": "45cc15208518", + "cborBytes": [69, 204, 21, 32, 133, 24], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2362, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11320954740341843208" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9f8f0e12ee29f104" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7030183662827976107" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22528f4269c0d30145" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16709883549724041808" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3419016997661898901" + } + } + ] + }, + "cborHex": "9f9fa0ffd8669f1b9d1c1c5af859a5089f9f489f8f0e12ee29f104ffffffbf1b61903acb389db5ab4922528f4269c0d30145ff1be7e56e8e4371e2501b2f72c9d83aa8f895ff", + "cborBytes": [ + 159, 159, 160, 255, 216, 102, 159, 27, 157, 28, 28, 90, 248, 89, 165, 8, 159, 159, 72, 159, 143, 14, 18, 238, 41, + 241, 4, 255, 255, 255, 191, 27, 97, 144, 58, 203, 56, 157, 181, 171, 73, 34, 82, 143, 66, 105, 192, 211, 1, 69, + 255, 27, 231, 229, 110, 142, 67, 113, 226, 80, 27, 47, 114, 201, 216, 58, 168, 248, 149, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2363, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1040063961598060677" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4ac29617a2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15380759998378501371" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d7dce5a37593a" + }, + { + "_tag": "ByteArray", + "bytearray": "833bedd2d05d1a266753418c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9260877821632824372" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1094594748866543266" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10847377754328780620" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "716989327709008901" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17242328745728222115" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "808fa41009fe36fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2de24fc5e18980" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1918046a8b105e61" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7650039687244355808" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14549144138421350689" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b34c53468361cc2b88cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81264a" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18324671191665777740" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7154707000466957949" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "060de9" + }, + { + "_tag": "ByteArray", + "bytearray": "4dfe" + } + ] + } + } + ] + }, + "cborHex": "bf051b0e6f0ca99ebce8850a9f454ac29617a21bd5736fba4ee364fb479d7dce5a37593a4c833bedd2d05d1a266753418cff0dbf1b80853f5002b7c4341b0f30c81feb32bea21b9689a0987f3dcf4c1b09f341fea9d774051bef490ea3f5a323a348808fa41009fe36fa472de24fc5e18980481918046a8b105e61ff1b6a2a66905bd718e0bf1bc9e8f1825c8fb121074ab34c53468361cc2b88cf4381264aff1bfe4e4f5c4d129c4c1b634aa01c12d5667d1bfffffffffffffff1d87f9f43060de9424dfeffff", + "cborBytes": [ + 191, 5, 27, 14, 111, 12, 169, 158, 188, 232, 133, 10, 159, 69, 74, 194, 150, 23, 162, 27, 213, 115, 111, 186, 78, + 227, 100, 251, 71, 157, 125, 206, 90, 55, 89, 58, 76, 131, 59, 237, 210, 208, 93, 26, 38, 103, 83, 65, 140, 255, + 13, 191, 27, 128, 133, 63, 80, 2, 183, 196, 52, 27, 15, 48, 200, 31, 235, 50, 190, 162, 27, 150, 137, 160, 152, + 127, 61, 207, 76, 27, 9, 243, 65, 254, 169, 215, 116, 5, 27, 239, 73, 14, 163, 245, 163, 35, 163, 72, 128, 143, + 164, 16, 9, 254, 54, 250, 71, 45, 226, 79, 197, 225, 137, 128, 72, 25, 24, 4, 106, 139, 16, 94, 97, 255, 27, 106, + 42, 102, 144, 91, 215, 24, 224, 191, 27, 201, 232, 241, 130, 92, 143, 177, 33, 7, 74, 179, 76, 83, 70, 131, 97, + 204, 43, 136, 207, 67, 129, 38, 74, 255, 27, 254, 78, 79, 92, 77, 18, 156, 76, 27, 99, 74, 160, 28, 18, 213, 102, + 125, 27, 255, 255, 255, 255, 255, 255, 255, 241, 216, 127, 159, 67, 6, 13, 233, 66, 77, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2364, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5893060602658335262" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16926744070020331616" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b3c10d63dec25239a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15985447053763804024" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15879954536575682554" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e42660aafa45417df8d1" + }, + { + "_tag": "ByteArray", + "bytearray": "a7a2c6a950d2bd" + }, + { + "_tag": "ByteArray", + "bytearray": "400057" + } + ] + }, + "cborHex": "9fbf1b51c85b65354caa1e1beae7e00cc982f860497b3c10d63dec25239a1bddd7b7669f67fb78ff9f1bdc60ee83f1f247faff4ae42660aafa45417df8d147a7a2c6a950d2bd43400057ff", + "cborBytes": [ + 159, 191, 27, 81, 200, 91, 101, 53, 76, 170, 30, 27, 234, 231, 224, 12, 201, 130, 248, 96, 73, 123, 60, 16, 214, + 61, 236, 37, 35, 154, 27, 221, 215, 183, 102, 159, 103, 251, 120, 255, 159, 27, 220, 96, 238, 131, 241, 242, 71, + 250, 255, 74, 228, 38, 96, 170, 250, 69, 65, 125, 248, 209, 71, 167, 162, 198, 169, 80, 210, 189, 67, 64, 0, 87, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2365, + "sample": { + "_tag": "ByteArray", + "bytearray": "2e8c71895fba84ed81" + }, + "cborHex": "492e8c71895fba84ed81", + "cborBytes": [73, 46, 140, 113, 137, 95, 186, 132, 237, 129], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2366, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e102fcfc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00" + } + } + ] + }, + "cborHex": "bf44e102fcfc4100ff", + "cborBytes": [191, 68, 225, 2, 252, 252, 65, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2367, + "sample": { + "_tag": "ByteArray", + "bytearray": "3ae1fac1" + }, + "cborHex": "443ae1fac1", + "cborBytes": [68, 58, 225, 250, 193], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2368, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6814115190924635286" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9c0ec0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "55dafbb3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a78f9a4a3f84d577f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a2ee34760e671d7e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac1101" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8f9e034b4736fcd0bc1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16510660210106180477" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee294cdc8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5323117910241778383" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3729058107354367284" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e8cb7e2cc4a093a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18026806620661917674" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9642068747778631032" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5946599211433031919" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + }, + "cborHex": "d8669f1b5e9099a9d5a7ec969f1bfffffffffffffffed905089f439c0ec0bf4455dafbb349a78f9a4a3f84d577f3495a2ee34760e671d7e843ac11014ac8f9e034b4736fcd0bc11be521a5fbde8e237d45ee294cdc8a1b49df8389497b1acfffbf1b33c046975ba5c534483e8cb7e2cc4a093a1bfa2c151c8336a7ea1b85cf8270b33da578ff1b52869079f31578efff09ffff", + "cborBytes": [ + 216, 102, 159, 27, 94, 144, 153, 169, 213, 167, 236, 150, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 217, 5, + 8, 159, 67, 156, 14, 192, 191, 68, 85, 218, 251, 179, 73, 167, 143, 154, 74, 63, 132, 213, 119, 243, 73, 90, 46, + 227, 71, 96, 230, 113, 215, 232, 67, 172, 17, 1, 74, 200, 249, 224, 52, 180, 115, 111, 205, 11, 193, 27, 229, 33, + 165, 251, 222, 142, 35, 125, 69, 238, 41, 76, 220, 138, 27, 73, 223, 131, 137, 73, 123, 26, 207, 255, 191, 27, 51, + 192, 70, 151, 91, 165, 197, 52, 72, 62, 140, 183, 226, 204, 74, 9, 58, 27, 250, 44, 21, 28, 131, 54, 167, 234, 27, + 133, 207, 130, 112, 179, 61, 165, 120, 255, 27, 82, 134, 144, 121, 243, 21, 120, 239, 255, 9, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2369, + "sample": { + "_tag": "ByteArray", + "bytearray": "d89339b8810fbc711224b1" + }, + "cborHex": "4bd89339b8810fbc711224b1", + "cborBytes": [75, 216, 147, 57, 184, 129, 15, 188, 113, 18, 36, 177], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2370, + "sample": { + "_tag": "ByteArray", + "bytearray": "98053b" + }, + "cborHex": "4398053b", + "cborBytes": [67, 152, 5, 59], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2371, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "890d01d68a7974c61fbff5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9736626789880960906" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3775904195668935784" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73f2c8608206a9d37d04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f353f73ccb34" + } + } + ] + } + ] + }, + "cborHex": "d905069f4b890d01d68a7974c61fbff5bf1b871f727a8168178a1b3466b4dc40c104684a73f2c8608206a9d37d0446f353f73ccb34ffff", + "cborBytes": [ + 217, 5, 6, 159, 75, 137, 13, 1, 214, 138, 121, 116, 198, 31, 191, 245, 191, 27, 135, 31, 114, 122, 129, 104, 23, + 138, 27, 52, 102, 180, 220, 64, 193, 4, 104, 74, 115, 242, 200, 96, 130, 6, 169, 211, 125, 4, 70, 243, 83, 247, + 60, 203, 52, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2372, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8656541235453443159" + } + }, + { + "_tag": "ByteArray", + "bytearray": "86e2d7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2935220214631310771" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "490fc54fcc3b787c5f99" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53b207b07007fd21" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa4f54" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "933cb830eeb679c4e65c5340" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13938636431332239803" + } + } + ] + } + ] + }, + "cborHex": "d87d9f1b78223663aab93c574386e2d7d8669f1b28bbff3bd6a525b39fbf4a490fc54fcc3b787c5f994853b207b07007fd2143aa4f544c933cb830eeb679c4e65c5340ff06a01bc16ffbfbf6e069bbffffff", + "cborBytes": [ + 216, 125, 159, 27, 120, 34, 54, 99, 170, 185, 60, 87, 67, 134, 226, 215, 216, 102, 159, 27, 40, 187, 255, 59, 214, + 165, 37, 179, 159, 191, 74, 73, 15, 197, 79, 204, 59, 120, 124, 95, 153, 72, 83, 178, 7, 176, 112, 7, 253, 33, 67, + 170, 79, 84, 76, 147, 60, 184, 48, 238, 182, 121, 196, 230, 92, 83, 64, 255, 6, 160, 27, 193, 111, 251, 251, 246, + 224, 105, 187, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2373, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7595392694574865359" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95f1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4615452364552380566" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6850970670213439797" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "610909a7" + }, + { + "_tag": "ByteArray", + "bytearray": "f66bbf28de0f661d6978" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bf912941b091c59d" + }, + { + "_tag": "ByteArray", + "bytearray": "de483cf24b4c0e6214" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11706274701912545073" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7817492082589079842" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2520068385761405433" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28291da008675b223cd8d647" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8974938518079075829" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0af4a247aa362ca0afc2" + } + ] + }, + "cborHex": "9f1b69684169e1bb5bcf4295f1d8669f1b400d6178cae1a0969fd8669f1b5f138986ccb121359f44610909a74af66bbf28de0f661d6978ffff9f48bf912941b091c59d49de483cf24b4c0e62141ba2750ad1a2a397311b6c7d4fa159269922ffbf1b22f914d84f0029f94c28291da008675b223cd8d647ff1b7c8d6307eb12f5f5ffff4a0af4a247aa362ca0afc2ff", + "cborBytes": [ + 159, 27, 105, 104, 65, 105, 225, 187, 91, 207, 66, 149, 241, 216, 102, 159, 27, 64, 13, 97, 120, 202, 225, 160, + 150, 159, 216, 102, 159, 27, 95, 19, 137, 134, 204, 177, 33, 53, 159, 68, 97, 9, 9, 167, 74, 246, 107, 191, 40, + 222, 15, 102, 29, 105, 120, 255, 255, 159, 72, 191, 145, 41, 65, 176, 145, 197, 157, 73, 222, 72, 60, 242, 75, 76, + 14, 98, 20, 27, 162, 117, 10, 209, 162, 163, 151, 49, 27, 108, 125, 79, 161, 89, 38, 153, 34, 255, 191, 27, 34, + 249, 20, 216, 79, 0, 41, 249, 76, 40, 41, 29, 160, 8, 103, 91, 34, 60, 216, 214, 71, 255, 27, 124, 141, 99, 7, + 235, 18, 245, 245, 255, 255, 74, 10, 244, 162, 71, 170, 54, 44, 160, 175, 194, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2374, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1931203749116544644" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a26" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3848870347346069511" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4526060230925888550" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2812fedae532b88236" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6075066455949800469" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7fd8a03479c77ae3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10899333992877500292" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1acd0393eefe8684421a261b3569ef305018c8079f1b3ecfcbccc85c2c26492812fedae532b882361b544ef8c12dc77415487fd8a03479c77ae31b97423684f5cda784ffff", + "cborBytes": [ + 191, 27, 26, 205, 3, 147, 238, 254, 134, 132, 66, 26, 38, 27, 53, 105, 239, 48, 80, 24, 200, 7, 159, 27, 62, 207, + 203, 204, 200, 92, 44, 38, 73, 40, 18, 254, 218, 229, 50, 184, 130, 54, 27, 84, 78, 248, 193, 45, 199, 116, 21, + 72, 127, 216, 160, 52, 121, 199, 122, 227, 27, 151, 66, 54, 132, 245, 205, 167, 132, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2375, + "sample": { + "_tag": "ByteArray", + "bytearray": "0300fa" + }, + "cborHex": "430300fa", + "cborBytes": [67, 3, 0, 250], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2376, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4649011099235660955" + } + } + ] + }, + "cborHex": "9f1b40849af696ca349bff", + "cborBytes": [159, 27, 64, 132, 154, 246, 150, 202, 52, 155, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2377, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4133843077740926024" + } + }, + "cborHex": "1b395e5c608df49448", + "cborBytes": [27, 57, 94, 92, 96, 141, 244, 148, 72], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2378, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6114026098218904736" + } + }, + "cborHex": "1b54d96257c3ce2ca0", + "cborBytes": [27, 84, 217, 98, 87, 195, 206, 44, 160], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2379, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "350579747096181413" + }, + "fields": [] + }, + "cborHex": "d8669f1b04dd826c2b1d3aa580ff", + "cborBytes": [216, 102, 159, 27, 4, 221, 130, 108, 43, 29, 58, 165, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2380, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d10592654473db2673d0b4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6308881229411059065" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2754759758577798763" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6332395489191598463" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9409093980251196909" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3526379457202325707" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e2ba7e3a33defbde4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13706832385161408699" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf4545ac2dd2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1672103664973339258" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8a889555594bdc004" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64c417b73dd43a5f2340" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8515879005692063682" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ff0b4206174e522c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8533603357828440936" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11dfcb0705388750a28a58" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15176816812713123434" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15963966531025379925" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1122360325143055087" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13805043858682127477" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d404550128a2c2d0c6ebc" + }, + { + "_tag": "ByteArray", + "bytearray": "bb7db124" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "759188141270226319" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f4bd10592654473db2673d0b41b578da60d612d05791b263adf67b3920e6bffbf1b57e130259e8d197f41791b8293d11f9f238ded1b30f0376ec9c788cb495e2ba7e3a33defbde41bbe38736eb15db0bb46cf4545ac2dd21b1734816c925d5a7affbf49e8a889555594bdc0044a64c417b73dd43a5f234041ec1b762e7ad62c7b6fc2ffff48ff0b4206174e522cbf1b766d730a7d71e3684b11dfcb0705388750a28a581bd29ee27b1ef11e6a414bffd8669f1bdd8b66faaffe22559fd8669f1b0f936cc4ea24caef9f1bbf955e3f496fa4754b0d404550128a2c2d0c6ebc44bb7db124ffff801b0a892d979619d58fffffff", + "cborBytes": [ + 159, 159, 159, 75, 209, 5, 146, 101, 68, 115, 219, 38, 115, 208, 180, 27, 87, 141, 166, 13, 97, 45, 5, 121, 27, + 38, 58, 223, 103, 179, 146, 14, 107, 255, 191, 27, 87, 225, 48, 37, 158, 141, 25, 127, 65, 121, 27, 130, 147, 209, + 31, 159, 35, 141, 237, 27, 48, 240, 55, 110, 201, 199, 136, 203, 73, 94, 43, 167, 227, 163, 61, 239, 189, 228, 27, + 190, 56, 115, 110, 177, 93, 176, 187, 70, 207, 69, 69, 172, 45, 210, 27, 23, 52, 129, 108, 146, 93, 90, 122, 255, + 191, 73, 232, 168, 137, 85, 85, 148, 189, 192, 4, 74, 100, 196, 23, 183, 61, 212, 58, 95, 35, 64, 65, 236, 27, + 118, 46, 122, 214, 44, 123, 111, 194, 255, 255, 72, 255, 11, 66, 6, 23, 78, 82, 44, 191, 27, 118, 109, 115, 10, + 125, 113, 227, 104, 75, 17, 223, 203, 7, 5, 56, 135, 80, 162, 138, 88, 27, 210, 158, 226, 123, 30, 241, 30, 106, + 65, 75, 255, 216, 102, 159, 27, 221, 139, 102, 250, 175, 254, 34, 85, 159, 216, 102, 159, 27, 15, 147, 108, 196, + 234, 36, 202, 239, 159, 27, 191, 149, 94, 63, 73, 111, 164, 117, 75, 13, 64, 69, 80, 18, 138, 44, 45, 12, 110, + 188, 68, 187, 125, 177, 36, 255, 255, 128, 27, 10, 137, 45, 151, 150, 25, 213, 143, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2381, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6582599233189696737" + } + }, + "cborHex": "1b5b5a17206107d4e1", + "cborBytes": [27, 91, 90, 23, 32, 97, 7, 212, 225], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2382, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12162349605265381912" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2646176173038045956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7201766108946619116" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ef2d575c126e6f2433f0a860" + } + ] + }, + "cborHex": "d8669f1ba8c95886eff49a189fbf1b24b91b3597090b041b63f1d01e9735daecff4cef2d575c126e6f2433f0a860ffff", + "cborBytes": [ + 216, 102, 159, 27, 168, 201, 88, 134, 239, 244, 154, 24, 159, 191, 27, 36, 185, 27, 53, 151, 9, 11, 4, 27, 99, + 241, 208, 30, 151, 53, 218, 236, 255, 76, 239, 45, 87, 92, 18, 110, 111, 36, 51, 240, 168, 96, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2383, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "147e59ed0e18" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0558" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1600a92341" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "87aa987d07ec9d7237d46c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12691819828943075511" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfc14d4039199c3b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11482840020459095976" + } + } + } + ] + }, + "cborHex": "bf46147e59ed0e18420558451600a92341bf4b87aa987d07ec9d7237d46c1bb02266e3e96938b7ff48cfc14d4039199c3b1b9f5b3e28f01a87a8ff", + "cborBytes": [ + 191, 70, 20, 126, 89, 237, 14, 24, 66, 5, 88, 69, 22, 0, 169, 35, 65, 191, 75, 135, 170, 152, 125, 7, 236, 157, + 114, 55, 212, 108, 27, 176, 34, 102, 227, 233, 105, 56, 183, 255, 72, 207, 193, 77, 64, 57, 25, 156, 59, 27, 159, + 91, 62, 40, 240, 26, 135, 168, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2384, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4377" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3549397447423135771" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f444b209968e2786252" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9a01af0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8fc8d01110" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5137e1f5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2ca1001c117612600" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2158674947571830578" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8fddc7fb1e9645095448c6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95457e2ea921872cc72e" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2772865332710900554" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1400954945328627511" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2947795377207149061" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7314435460449882864" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7395201366864676559" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6792838823396372387" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14245429461941965598" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6581404541936926111" + } + } + } + ] + } + ] + }, + "cborHex": "d9050a9fbf4243771b3141fe2c4455901b4a6f444b209968e278625244f9a01af0458fc8d01110445137e1f549b2ca1001c1176126001b1df5276d7b8dcf324cd8fddc7fb1e9645095448c6d4a95457e2ea921872cc72effbf1b267b32542e3a834a1b13713119a6a3bf371b28e8ac4708f882051b6582184c38a2d2f01b66a108763273c6cf1b5e4502eb7d05efa31bc5b1ee9ebfef531e1b5b55d88fa54afd9fffff", + "cborBytes": [ + 217, 5, 10, 159, 191, 66, 67, 119, 27, 49, 65, 254, 44, 68, 85, 144, 27, 74, 111, 68, 75, 32, 153, 104, 226, 120, + 98, 82, 68, 249, 160, 26, 240, 69, 143, 200, 208, 17, 16, 68, 81, 55, 225, 245, 73, 178, 202, 16, 1, 193, 23, 97, + 38, 0, 27, 29, 245, 39, 109, 123, 141, 207, 50, 76, 216, 253, 220, 127, 177, 233, 100, 80, 149, 68, 140, 109, 74, + 149, 69, 126, 46, 169, 33, 135, 44, 199, 46, 255, 191, 27, 38, 123, 50, 84, 46, 58, 131, 74, 27, 19, 113, 49, 25, + 166, 163, 191, 55, 27, 40, 232, 172, 71, 8, 248, 130, 5, 27, 101, 130, 24, 76, 56, 162, 210, 240, 27, 102, 161, 8, + 118, 50, 115, 198, 207, 27, 94, 69, 2, 235, 125, 5, 239, 163, 27, 197, 177, 238, 158, 191, 239, 83, 30, 27, 91, + 85, 216, 143, 165, 74, 253, 159, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2385, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4535542563022487814" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8200707905334494324" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d6da6014f22a49d40229b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7117195640679825066" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4b0dce98e863" + } + ] + }, + "cborHex": "d905089f9fd8669f1b3ef17bee449ec1069f1b71cec464043344744b2d6da6014f22a49d40229b1b62c55bba07adfeaaffffff464b0dce98e863ff", + "cborBytes": [ + 217, 5, 8, 159, 159, 216, 102, 159, 27, 62, 241, 123, 238, 68, 158, 193, 6, 159, 27, 113, 206, 196, 100, 4, 51, + 68, 116, 75, 45, 109, 166, 1, 79, 34, 164, 157, 64, 34, 155, 27, 98, 197, 91, 186, 7, 173, 254, 170, 255, 255, + 255, 70, 75, 13, 206, 152, 232, 99, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2386, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15223234655443095057" + } + }, + "cborHex": "1bd343cb43521a0e11", + "cborBytes": [27, 211, 67, 203, 67, 82, 26, 14, 17], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2387, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17295016068315390366" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17164722747906925115" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f3b99b58fd214ec00" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13864968318111235341" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ae5e45a8a20e15f4bd32ccbb" + }, + { + "_tag": "ByteArray", + "bytearray": "213b0f8b0480987ec58a8d" + }, + { + "_tag": "ByteArray", + "bytearray": "53" + }, + { + "_tag": "ByteArray", + "bytearray": "ea40" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4fc9954647215a515bae5d4a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4094046289471551320" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5605118417157517863" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7fad0a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11496488678812378926" + } + }, + { + "_tag": "ByteArray", + "bytearray": "262e" + }, + { + "_tag": "ByteArray", + "bytearray": "a5c1d44313" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5948ddd6841efce784431" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1747607916272150088" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18323644397447571275" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0b5d2e3785" + }, + { + "_tag": "ByteArray", + "bytearray": "6b25" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "326835392065965968" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f9fd8669f1bf0043d7b309ca19e9f41d61bee355865890f223b495f3b99b58fd214ec00ffffd8669f1bc06a4339bf10bd0d9f4cae5e45a8a20e15f4bd32ccbb4b213b0f8b0480987ec58a8d415342ea400effffffd905029fbf1bffffffffffffffef081bfffffffffffffff71bfffffffffffffff5ffff9f4c4fc9954647215a515bae5d4aff9f1b38d0f968b9f53758d8669f1b4dc96180d2ac72279f437fad0a1b9f8bbb8ad8e9672e42262e45a5c1d44313ffffbf4bb5948ddd6841efce7844311b1840c024000fe648ffd8669f1bfe4aa97f2470674b9f450b5d2e3785426b251b0489270eb41e0f90ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 159, 216, 102, 159, 27, 240, 4, 61, 123, 48, 156, + 161, 158, 159, 65, 214, 27, 238, 53, 88, 101, 137, 15, 34, 59, 73, 95, 59, 153, 181, 143, 210, 20, 236, 0, 255, + 255, 216, 102, 159, 27, 192, 106, 67, 57, 191, 16, 189, 13, 159, 76, 174, 94, 69, 168, 162, 14, 21, 244, 189, 50, + 204, 187, 75, 33, 59, 15, 139, 4, 128, 152, 126, 197, 138, 141, 65, 83, 66, 234, 64, 14, 255, 255, 255, 217, 5, 2, + 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 239, 8, 27, 255, 255, 255, 255, 255, 255, 255, 247, 27, 255, 255, + 255, 255, 255, 255, 255, 245, 255, 255, 159, 76, 79, 201, 149, 70, 71, 33, 90, 81, 91, 174, 93, 74, 255, 159, 27, + 56, 208, 249, 104, 185, 245, 55, 88, 216, 102, 159, 27, 77, 201, 97, 128, 210, 172, 114, 39, 159, 67, 127, 173, + 10, 27, 159, 139, 187, 138, 216, 233, 103, 46, 66, 38, 46, 69, 165, 193, 212, 67, 19, 255, 255, 191, 75, 181, 148, + 141, 221, 104, 65, 239, 206, 120, 68, 49, 27, 24, 64, 192, 36, 0, 15, 230, 72, 255, 216, 102, 159, 27, 254, 74, + 169, 127, 36, 112, 103, 75, 159, 69, 11, 93, 46, 55, 133, 66, 107, 37, 27, 4, 137, 39, 14, 180, 30, 15, 144, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2388, + "sample": { + "_tag": "ByteArray", + "bytearray": "07fb" + }, + "cborHex": "4207fb", + "cborBytes": [66, 7, 251], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2389, + "sample": { + "_tag": "ByteArray", + "bytearray": "65f6fe" + }, + "cborHex": "4365f6fe", + "cborBytes": [67, 101, 246, 254], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2390, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18296494925760951323" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16792284360790431843" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1490498643758404120" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2796928402784856862" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12706630563544475797" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5568501362439638466" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15818983233942420409" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f85f30dd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be3fd317" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17883807560033063833" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8b74b121c66be9ace" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1759443958378089982" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18329899209328984351" + } + } + ] + }, + "cborHex": "9f1bfdea35322cb7f41bd8669f1be90a2da82442d8639f1b14af509e976bd2181b26d0af9046312b1effff9fbf1bb057052cc830a8951b4d474a7c677e4dc21bdb8851704eff7bb944f85f30dd44be3fd3171bf8300c392f37539949d8b74b121c66be9ace1b186accf54d554dfeffa0ff1bfe60e23704c4811fff", + "cborBytes": [ + 159, 27, 253, 234, 53, 50, 44, 183, 244, 27, 216, 102, 159, 27, 233, 10, 45, 168, 36, 66, 216, 99, 159, 27, 20, + 175, 80, 158, 151, 107, 210, 24, 27, 38, 208, 175, 144, 70, 49, 43, 30, 255, 255, 159, 191, 27, 176, 87, 5, 44, + 200, 48, 168, 149, 27, 77, 71, 74, 124, 103, 126, 77, 194, 27, 219, 136, 81, 112, 78, 255, 123, 185, 68, 248, 95, + 48, 221, 68, 190, 63, 211, 23, 27, 248, 48, 12, 57, 47, 55, 83, 153, 73, 216, 183, 75, 18, 28, 102, 190, 154, 206, + 27, 24, 106, 204, 245, 77, 85, 77, 254, 255, 160, 255, 27, 254, 96, 226, 55, 4, 196, 129, 31, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2391, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15042019022292149155" + }, + "fields": [] + }, + "cborHex": "d8669f1bd0bffc9ad06463a380ff", + "cborBytes": [216, 102, 159, 27, 208, 191, 252, 154, 208, 100, 99, 163, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2392, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18134220488493228933" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e293eb4ba60f36" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12129377903709387223" + } + }, + { + "_tag": "ByteArray", + "bytearray": "93b4268f8b8a" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec118deee865522d78161b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d875c762b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14597732749059914814" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "08bcfc576e17f2e1e930f2" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10877043157103690086" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c3c079e3f40980d1" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15068087708079785137" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "679335508213515175" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f4c98ddaf5" + }, + { + "_tag": "ByteArray", + "bytearray": "f8de8d8a1eded68d" + }, + { + "_tag": "ByteArray", + "bytearray": "d0ac02535f034f85af82" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1346418825194698018" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87a9fd8669f1bfba9b1747f3fe3859f47e293eb4ba60f36ffff9f9f1ba85434f07111f9d74693b4268f8b8affffbf4bec118deee865522d78161b456d875c762bff9f801bca959097d9cd7c3e804b08bcfc576e17f2e1e930f29f1b96f3051f51c2416648c3c079e3f40980d1ffffd8669f1bd11c99efb48684b19fd8669f1b096d7c0ba26043a79f45f4c98ddaf548f8de8d8a1eded68d4ad0ac02535f034f85af821b12af70c9b2a0f522ffffffffff", + "cborBytes": [ + 216, 122, 159, 216, 102, 159, 27, 251, 169, 177, 116, 127, 63, 227, 133, 159, 71, 226, 147, 235, 75, 166, 15, 54, + 255, 255, 159, 159, 27, 168, 84, 52, 240, 113, 17, 249, 215, 70, 147, 180, 38, 143, 139, 138, 255, 255, 191, 75, + 236, 17, 141, 238, 232, 101, 82, 45, 120, 22, 27, 69, 109, 135, 92, 118, 43, 255, 159, 128, 27, 202, 149, 144, + 151, 217, 205, 124, 62, 128, 75, 8, 188, 252, 87, 110, 23, 242, 225, 233, 48, 242, 159, 27, 150, 243, 5, 31, 81, + 194, 65, 102, 72, 195, 192, 121, 227, 244, 9, 128, 209, 255, 255, 216, 102, 159, 27, 209, 28, 153, 239, 180, 134, + 132, 177, 159, 216, 102, 159, 27, 9, 109, 124, 11, 162, 96, 67, 167, 159, 69, 244, 201, 141, 218, 245, 72, 248, + 222, 141, 138, 30, 222, 214, 141, 74, 208, 172, 2, 83, 95, 3, 79, 133, 175, 130, 27, 18, 175, 112, 201, 178, 160, + 245, 34, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2393, + "sample": { + "_tag": "ByteArray", + "bytearray": "011d" + }, + "cborHex": "42011d", + "cborBytes": [66, 1, 29], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2394, + "sample": { + "_tag": "ByteArray", + "bytearray": "0720f80707067c" + }, + "cborHex": "470720f80707067c", + "cborBytes": [71, 7, 32, 248, 7, 7, 6, 124], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2395, + "sample": { + "_tag": "ByteArray", + "bytearray": "0505067705" + }, + "cborHex": "450505067705", + "cborBytes": [69, 5, 5, 6, 119, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2396, + "sample": { + "_tag": "ByteArray", + "bytearray": "6d3e6a18ed5d" + }, + "cborHex": "466d3e6a18ed5d", + "cborBytes": [70, 109, 62, 106, 24, 237, 93], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2397, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + "cborHex": "9f10ff", + "cborBytes": [159, 16, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2398, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3093750559499264382" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0680a599e62fac3c707708" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11884770386696034466" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "926b086da680646296d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "501620292768713195" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1094582207183784523" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16380250596445170372" + } + } + ] + }, + "cborHex": "d8669f1b2aef35be129ea17e9f80bf4b0680a599e62fac3c7077081ba4ef2fb2d01958a24a926b086da680646296d11b06f61cffa29b49ebff1b0f30bcb7d4a70a4b1be352572194feaac4ffff", + "cborBytes": [ + 216, 102, 159, 27, 42, 239, 53, 190, 18, 158, 161, 126, 159, 128, 191, 75, 6, 128, 165, 153, 230, 47, 172, 60, + 112, 119, 8, 27, 164, 239, 47, 178, 208, 25, 88, 162, 74, 146, 107, 8, 109, 166, 128, 100, 98, 150, 209, 27, 6, + 246, 28, 255, 162, 155, 73, 235, 255, 27, 15, 48, 188, 183, 212, 167, 10, 75, 27, 227, 82, 87, 33, 148, 254, 170, + 196, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2399, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "023bff8d39fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06ff07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14966862206960350894" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbb172f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16346040399858560985" + } + } + } + ] + } + ] + }, + "cborHex": "d87d9fbf46023bff8d39fe074306ff071bcfb4f9e1201736ae44cbb172f81be2d8cd237dc0efd9ffff", + "cborBytes": [ + 216, 125, 159, 191, 70, 2, 59, 255, 141, 57, 254, 7, 67, 6, 255, 7, 27, 207, 180, 249, 225, 32, 23, 54, 174, 68, + 203, 177, 114, 248, 27, 226, 216, 205, 35, 125, 192, 239, 217, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2400, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "020107" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06208019786683ba169a4233" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12793311403769607345" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d4e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf430201079f01144c06208019786683ba169a42331bb18af8f09aa434b1ff423d4ed87c80ff", + "cborBytes": [ + 191, 67, 2, 1, 7, 159, 1, 20, 76, 6, 32, 128, 25, 120, 102, 131, 186, 22, 154, 66, 51, 27, 177, 138, 248, 240, + 154, 164, 52, 177, 255, 66, 61, 78, 216, 124, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2401, + "sample": { + "_tag": "ByteArray", + "bytearray": "17" + }, + "cborHex": "4117", + "cborBytes": [65, 23], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2402, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15382811772673832239" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14250479865275752685" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6376474581564306033" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10714677827716424044" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b17f997bf0" + } + ] + } + ] + } + ] + }, + "cborHex": "d87e9fa09f9f1bd57ab9ce3cebb52f1bc5c3dfef689e20ed1b587dc9d91172b2711b94b22eb72bcaa16c45b17f997bf0ffffff", + "cborBytes": [ + 216, 126, 159, 160, 159, 159, 27, 213, 122, 185, 206, 60, 235, 181, 47, 27, 197, 195, 223, 239, 104, 158, 32, 237, + 27, 88, 125, 201, 217, 17, 114, 178, 113, 27, 148, 178, 46, 183, 43, 202, 161, 108, 69, 177, 127, 153, 123, 240, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2403, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3706202170320515834" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17262789459838920515" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "359015f9a3d5" + }, + { + "_tag": "ByteArray", + "bytearray": "1d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5371397824755039320" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18227472399431107009" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1536089442660774636" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9359bf4e6b4750bff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4534695056678053229" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2525901335505173484" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5451790641280990636" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0006767d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7525404442530535079" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95c919c3c19fe61a1a6b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13851861872041676139" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08bddacc2cd836b09a0de868" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16608886161846060199" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12324463758306249916" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5826301356797168117" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "39" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d84b4e59434b04849fe3d6" + } + ] + } + ] + }, + "cborHex": "d905029fd8669f1b336f133cd3bc72fa9fd8669f1bef91bf8d320e67439f46359015f9a3d5411dffff1b4a8b09dcdbd47c581bfcf4fd92f15401c1bf1b15514935a505f2ec49c9359bf4e6b4750bff1b3eee7920d203e56d1b230dcde1c0787bec1b4ba8a6b4135a3dac440006767d1b686f9b781c2dd6a74a95c919c3c19fe61a1a6b1bc03bb2fb78d24d6b4c08bddacc2cd836b09a0de8681be67e9df76fbc44a71bab094a7d89050cbcffffffd8669f1b50db2e37064589f580ff41399f4bd84b4e59434b04849fe3d6ffff", + "cborBytes": [ + 217, 5, 2, 159, 216, 102, 159, 27, 51, 111, 19, 60, 211, 188, 114, 250, 159, 216, 102, 159, 27, 239, 145, 191, + 141, 50, 14, 103, 67, 159, 70, 53, 144, 21, 249, 163, 213, 65, 29, 255, 255, 27, 74, 139, 9, 220, 219, 212, 124, + 88, 27, 252, 244, 253, 146, 241, 84, 1, 193, 191, 27, 21, 81, 73, 53, 165, 5, 242, 236, 73, 201, 53, 155, 244, + 230, 180, 117, 11, 255, 27, 62, 238, 121, 32, 210, 3, 229, 109, 27, 35, 13, 205, 225, 192, 120, 123, 236, 27, 75, + 168, 166, 180, 19, 90, 61, 172, 68, 0, 6, 118, 125, 27, 104, 111, 155, 120, 28, 45, 214, 167, 74, 149, 201, 25, + 195, 193, 159, 230, 26, 26, 107, 27, 192, 59, 178, 251, 120, 210, 77, 107, 76, 8, 189, 218, 204, 44, 216, 54, 176, + 154, 13, 232, 104, 27, 230, 126, 157, 247, 111, 188, 68, 167, 27, 171, 9, 74, 125, 137, 5, 12, 188, 255, 255, 255, + 216, 102, 159, 27, 80, 219, 46, 55, 6, 69, 137, 245, 128, 255, 65, 57, 159, 75, 216, 75, 78, 89, 67, 75, 4, 132, + 159, 227, 214, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2404, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe05800705fdfa" + }, + "cborHex": "47fe05800705fdfa", + "cborBytes": [71, 254, 5, 128, 7, 5, 253, 250], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2405, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7270363012498931883" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10192930759942195133" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b64e584a3cc2340ab1b8d7490858e81c7bdffffff", + "cborBytes": [ + 159, 159, 191, 27, 100, 229, 132, 163, 204, 35, 64, 171, 27, 141, 116, 144, 133, 142, 129, 199, 189, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2406, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2823444105527170287" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1673837515812748399" + } + } + ] + } + } + ] + }, + "cborHex": "bf41d1d8669f1bfffffffffffffff99f1b272ee374691e14ef1b173aaa5a2dbdbc6fffffff", + "cborBytes": [ + 191, 65, 209, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 27, 39, 46, 227, 116, 105, 30, 20, + 239, 27, 23, 58, 170, 90, 45, 189, 188, 111, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2407, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6110876047714794668" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0502fcfb0e" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17367058809156512572" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7772156484679076557" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "00042d3819f9f90902c9011c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2109954215624568122" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1a" + }, + { + "_tag": "ByteArray", + "bytearray": "06eca5b571" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11402343609381909779" + } + } + } + ] + }, + "cborHex": "bf1b54ce31637a7bbcac9f00450502fcfb0eff1bf1042ff8e917ab3cd8669f1b6bdc3f24e80b8acd80ff4c00042d3819f9f90902c9011cd8669f1b1d48102e1aa3ed3a9f411a4506eca5b571ffff41ce1b9e3d4319bc277513ff", + "cborBytes": [ + 191, 27, 84, 206, 49, 99, 122, 123, 188, 172, 159, 0, 69, 5, 2, 252, 251, 14, 255, 27, 241, 4, 47, 248, 233, 23, + 171, 60, 216, 102, 159, 27, 107, 220, 63, 36, 232, 11, 138, 205, 128, 255, 76, 0, 4, 45, 56, 25, 249, 249, 9, 2, + 201, 1, 28, 216, 102, 159, 27, 29, 72, 16, 46, 26, 163, 237, 58, 159, 65, 26, 69, 6, 236, 165, 181, 113, 255, 255, + 65, 206, 27, 158, 61, 67, 25, 188, 39, 117, 19, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2408, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2121885389200892905" + } + }, + "cborHex": "1b1d727384ed6923e9", + "cborBytes": [27, 29, 114, 115, 132, 237, 105, 35, 233], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2409, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "95c2399a44058007070505" + } + ] + }, + "cborHex": "9f4b95c2399a44058007070505ff", + "cborBytes": [159, 75, 149, 194, 57, 154, 68, 5, 128, 7, 7, 5, 5, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2410, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + }, + "cborHex": "9f00ff", + "cborBytes": [159, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2411, + "sample": { + "_tag": "ByteArray", + "bytearray": "030ffabd0601266e" + }, + "cborHex": "48030ffabd0601266e", + "cborBytes": [72, 3, 15, 250, 189, 6, 1, 38, 110], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2412, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16027386842515540795" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4809666715050717954" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18097071510171684453" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "9657d77ce4" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3883653668714169366" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "690041704523163908" + } + }, + { + "_tag": "ByteArray", + "bytearray": "25c9e592211860" + }, + { + "_tag": "ByteArray", + "bytearray": "27998200bd0d7307d76611" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3b27ee60" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8391842173793014760" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17526059715874807528" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9726306450457726159" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4109aee5da1136c98b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12771327490358236048" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73e0b281edf48652dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "035e594c" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bde6cb76aa1e88b3b9fd8669f1b42bf5e65069e330280ffd8669f1bfffffffffffffff79fd8669f1bfb25b6a7f6a00e6580ff459657d77ce4a0d8669f1b35e5826f6a59c4169f1b09938546364ee9044725c9e5922118604b27998200bd0d7307d76611ffff443b27ee60ffff10bf1b7475cffec41313e81bf33912745d005ee81b86fac82f3c1f8ccf494109aee5da1136c98b41181bb13cdeafe4fbd3904973e0b281edf48652dd44035e594cffffff", + "cborBytes": [ + 216, 102, 159, 27, 222, 108, 183, 106, 161, 232, 139, 59, 159, 216, 102, 159, 27, 66, 191, 94, 101, 6, 158, 51, 2, + 128, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 216, 102, 159, 27, 251, 37, 182, 167, + 246, 160, 14, 101, 128, 255, 69, 150, 87, 215, 124, 228, 160, 216, 102, 159, 27, 53, 229, 130, 111, 106, 89, 196, + 22, 159, 27, 9, 147, 133, 70, 54, 78, 233, 4, 71, 37, 201, 229, 146, 33, 24, 96, 75, 39, 153, 130, 0, 189, 13, + 115, 7, 215, 102, 17, 255, 255, 68, 59, 39, 238, 96, 255, 255, 16, 191, 27, 116, 117, 207, 254, 196, 19, 19, 232, + 27, 243, 57, 18, 116, 93, 0, 94, 232, 27, 134, 250, 200, 47, 60, 31, 140, 207, 73, 65, 9, 174, 229, 218, 17, 54, + 201, 139, 65, 24, 27, 177, 60, 222, 175, 228, 251, 211, 144, 73, 115, 224, 178, 129, 237, 244, 134, 82, 221, 68, + 3, 94, 89, 76, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2413, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aa" + }, + { + "_tag": "ByteArray", + "bytearray": "6ce80218" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8702426315908199763" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10296685671130539405" + } + }, + { + "_tag": "ByteArray", + "bytearray": "025a" + }, + { + "_tag": "ByteArray", + "bytearray": "42a9487b770d" + }, + { + "_tag": "ByteArray", + "bytearray": "7fd9c69f2b290d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17308163623032127447" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4813435230437479452" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14291343716161774316" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18364067531598261944" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13296266225875949058" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce0783c22dbe" + } + } + ] + }, + "cborHex": "bf059f41aa446ce80218ff0b9f1b78c53aa07bb835531b8ee52d104f97258d42025a4642a9487b770d477fd9c69f2b290dff1bf032f31cd12affd7d905059f1b42ccc1d6e393941c1bc6550d641cd562ec1bfeda461f7c32eeb81bb885d3af905c1602ff1bfffffffffffffff146ce0783c22dbeff", + "cborBytes": [ + 191, 5, 159, 65, 170, 68, 108, 232, 2, 24, 255, 11, 159, 27, 120, 197, 58, 160, 123, 184, 53, 83, 27, 142, 229, + 45, 16, 79, 151, 37, 141, 66, 2, 90, 70, 66, 169, 72, 123, 119, 13, 71, 127, 217, 198, 159, 43, 41, 13, 255, 27, + 240, 50, 243, 28, 209, 42, 255, 215, 217, 5, 5, 159, 27, 66, 204, 193, 214, 227, 147, 148, 28, 27, 198, 85, 13, + 100, 28, 213, 98, 236, 27, 254, 218, 70, 31, 124, 50, 238, 184, 27, 184, 133, 211, 175, 144, 92, 22, 2, 255, 27, + 255, 255, 255, 255, 255, 255, 255, 241, 70, 206, 7, 131, 194, 45, 190, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2414, + "sample": { + "_tag": "ByteArray", + "bytearray": "750433821c12a71a0acebd2f" + }, + "cborHex": "4c750433821c12a71a0acebd2f", + "cborBytes": [76, 117, 4, 51, 130, 28, 18, 167, 26, 10, 206, 189, 47], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2415, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7489097237270692496" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16005207114630994446" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5492304172953818489" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7803537237372238890" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14356860676596279029" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3eae" + } + ] + } + } + ] + }, + "cborHex": "bf061b67ee9e4223e1029014801bfffffffffffffff49f1bde1deb1250229a0e1b4c38958bbb4ed5791b6c4bbbc5c11afc2a1bc73dd0b82e4ba6f5423eaeffff", + "cborBytes": [ + 191, 6, 27, 103, 238, 158, 66, 35, 225, 2, 144, 20, 128, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 27, 222, + 29, 235, 18, 80, 34, 154, 14, 27, 76, 56, 149, 139, 187, 78, 213, 121, 27, 108, 75, 187, 197, 193, 26, 252, 42, + 27, 199, 61, 208, 184, 46, 75, 166, 245, 66, 62, 174, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2416, + "sample": { + "_tag": "ByteArray", + "bytearray": "12" + }, + "cborHex": "4112", + "cborBytes": [65, 18], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2417, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "97200165aed977dc299f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a87b7e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aed70c02c15e669bd5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa9f52" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "102daa131f40" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11359908345667922887" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4833341585033912555" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16099167425295981496" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "825a2b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45d53f2d81" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03835e8f95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55063f9882" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17655166305415056739" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4a97200165aed977dc299f41bc43a87b7e49aed70c02c15e669bd543aa9f5246102daa131f40ffbf1b9da68073f8882bc71b43137a903e11e0eb1bdf6bbb79ec4e9bb843825a2b4545d53f2d814503835e8f954555063f98821bf503c036b4b5cd63ffff", + "cborBytes": [ + 159, 191, 74, 151, 32, 1, 101, 174, 217, 119, 220, 41, 159, 65, 188, 67, 168, 123, 126, 73, 174, 215, 12, 2, 193, + 94, 102, 155, 213, 67, 170, 159, 82, 70, 16, 45, 170, 19, 31, 64, 255, 191, 27, 157, 166, 128, 115, 248, 136, 43, + 199, 27, 67, 19, 122, 144, 62, 17, 224, 235, 27, 223, 107, 187, 121, 236, 78, 155, 184, 67, 130, 90, 43, 69, 69, + 213, 63, 45, 129, 69, 3, 131, 94, 143, 149, 69, 85, 6, 63, 152, 130, 27, 245, 3, 192, 54, 180, 181, 205, 99, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2418, + "sample": { + "_tag": "ByteArray", + "bytearray": "147a9079" + }, + "cborHex": "44147a9079", + "cborBytes": [68, 20, 122, 144, 121], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2419, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2624fc9266" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb9f472a4e78" + } + } + ] + }, + "cborHex": "bf452624fc926646fb9f472a4e78ff", + "cborBytes": [191, 69, 38, 36, 252, 146, 102, 70, 251, 159, 71, 42, 78, 120, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2420, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22c57414457893f3791689e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10058632476663891847" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3197c581835df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "343a65c98ad4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d9e5dcf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db371e7ae9ba2a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4800504241892112443" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7837061895638423001" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4341137043710636957" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11938505622372455067" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d44ad17bea6e66a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2248617078242849011" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a7000fc1c83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3088935202903461917" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7f7922aa44016c8641885cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5519622898034475272" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e618" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18231360895703004015" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8151c5f1c246f30" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c84b654413" + } + } + ] + } + ] + }, + "cborHex": "9f80bf4c22c57414457893f3791689e01b8b9770f1d1c24787412547d3197c581835df46343a65c98ad4448d9e5dcf47db371e7ae9ba2a1b429ed12c80bc383bffbf1b6cc2d645844715d91b3c3ed12413a9739dff1ba5ae179c5283929bbf482d44ad17bea6e66a1b1f34b151a88ab0f3468a7000fc1c831b2ade1a337f42901d4cc7f7922aa44016c8641885cc1b4c99a3c81375010842e6181bfd02ce240853336f48e8151c5f1c246f3045c84b654413ffff", + "cborBytes": [ + 159, 128, 191, 76, 34, 197, 116, 20, 69, 120, 147, 243, 121, 22, 137, 224, 27, 139, 151, 112, 241, 209, 194, 71, + 135, 65, 37, 71, 211, 25, 124, 88, 24, 53, 223, 70, 52, 58, 101, 201, 138, 212, 68, 141, 158, 93, 207, 71, 219, + 55, 30, 122, 233, 186, 42, 27, 66, 158, 209, 44, 128, 188, 56, 59, 255, 191, 27, 108, 194, 214, 69, 132, 71, 21, + 217, 27, 60, 62, 209, 36, 19, 169, 115, 157, 255, 27, 165, 174, 23, 156, 82, 131, 146, 155, 191, 72, 45, 68, 173, + 23, 190, 166, 230, 106, 27, 31, 52, 177, 81, 168, 138, 176, 243, 70, 138, 112, 0, 252, 28, 131, 27, 42, 222, 26, + 51, 127, 66, 144, 29, 76, 199, 247, 146, 42, 164, 64, 22, 200, 100, 24, 133, 204, 27, 76, 153, 163, 200, 19, 117, + 1, 8, 66, 230, 24, 27, 253, 2, 206, 36, 8, 83, 51, 111, 72, 232, 21, 28, 95, 28, 36, 111, 48, 69, 200, 75, 101, + 68, 19, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2421, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15332894342869210013" + } + }, + "cborHex": "1bd4c9622aed50d39d", + "cborBytes": [27, 212, 201, 98, 42, 237, 80, 211, 157], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2422, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7953868616389044103" + } + }, + "cborHex": "1b6e61d15d7dff2787", + "cborBytes": [27, 110, 97, 209, 93, 125, 255, 39, 135], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2423, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14442159370260551870" + } + }, + "cborHex": "1bc86cdb6dedf598be", + "cborBytes": [27, 200, 108, 219, 109, 237, 245, 152, 190], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2424, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13148971613102059755" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3913466562361073785" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3717097605961987661" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6273bc62637b9cc24d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31baa3d3b5c5d3bd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4551801825201197353" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4b1175b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16819127452653086098" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cabcce02ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0b7f5457d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16329846362630169947" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13151898538035622333" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11197271199732865499" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17164967374677298402" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15139133248945931587" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dd37dce0f4d9e0a5" + }, + { + "_tag": "ByteArray", + "bytearray": "5b246af625149c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7100119272314058035" + } + }, + { + "_tag": "ByteArray", + "bytearray": "91ce4b36c2eacffbc4f296" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5145f0176f3b8e7dba8828a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3816941960748299109" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a213eeb9bdd78f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12837615415673313570" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4587926910668741402" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5893382665864354772" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bb67a880410a4b0eb9f1b364f6d1aa1e6a0799fbf1b3395c8941ed1b64d496273bc62637b9cc24d4831baa3d3b5c5d3bd1b3f2b3fa4bf17912944c4b1175b1be9698b4e7f68659245cabcce02ae45c0b7f5457dff1be29f44bf6146a55bbf1bb684ee09e197b1bd1b9b64b2d499ca19dbffffd8669f1bee3636e224cf4ce29f9f1bd219017ab6ba454348dd37dce0f4d9e0a5475b246af625149cff1b6288b0dc312f35334b91ce4b36c2eacffbc4f2969f4c5145f0176f3b8e7dba8828a81b34f8807d82af736547a213eeb9bdd78f1bb2285f3436495922ff9f1b3fab9737a5dd9b1affffff9f9f1b51c9804f644a1bd4ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 182, 122, 136, 4, 16, 164, 176, 235, 159, 27, 54, 79, 109, 26, 161, 230, 160, 121, 159, 191, + 27, 51, 149, 200, 148, 30, 209, 182, 77, 73, 98, 115, 188, 98, 99, 123, 156, 194, 77, 72, 49, 186, 163, 211, 181, + 197, 211, 189, 27, 63, 43, 63, 164, 191, 23, 145, 41, 68, 196, 177, 23, 91, 27, 233, 105, 139, 78, 127, 104, 101, + 146, 69, 202, 188, 206, 2, 174, 69, 192, 183, 245, 69, 125, 255, 27, 226, 159, 68, 191, 97, 70, 165, 91, 191, 27, + 182, 132, 238, 9, 225, 151, 177, 189, 27, 155, 100, 178, 212, 153, 202, 25, 219, 255, 255, 216, 102, 159, 27, 238, + 54, 54, 226, 36, 207, 76, 226, 159, 159, 27, 210, 25, 1, 122, 182, 186, 69, 67, 72, 221, 55, 220, 224, 244, 217, + 224, 165, 71, 91, 36, 106, 246, 37, 20, 156, 255, 27, 98, 136, 176, 220, 49, 47, 53, 51, 75, 145, 206, 75, 54, + 194, 234, 207, 251, 196, 242, 150, 159, 76, 81, 69, 240, 23, 111, 59, 142, 125, 186, 136, 40, 168, 27, 52, 248, + 128, 125, 130, 175, 115, 101, 71, 162, 19, 238, 185, 189, 215, 143, 27, 178, 40, 95, 52, 54, 73, 89, 34, 255, 159, + 27, 63, 171, 151, 55, 165, 221, 155, 26, 255, 255, 255, 159, 159, 27, 81, 201, 128, 79, 100, 74, 27, 212, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2425, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2854539649283822895" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3808376650440585558" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2004267126850689557" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9430152962614928249" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2627251217359386791" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af3a6040d0fd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4855132921249834537" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "517df60922f80817" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6201520235046756715" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3fa171f43738" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6894564842821181656" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45766d88627c890adc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9564129146908150639" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2176246671070189795" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13599732666562593969" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11196979880766873492" + } + } + } + ] + } + ] + }, + "cborHex": "d905099f1b279d5cafe0d4952fd8669f1b34da1262cc6731569f9f1b1bd0965532ed9a151b82dea2280a42a379ffffffbf1b2475df0ffa6b38a746af3a6040d0fd1b4360e5ab1466a62948517df60922f808171b561039cbf55be16b463fa171f437381b5fae6a321140e0d84945766d88627c890adc1b84ba9cc9436b8b6f1b1e3394d12cc3d8e31bbcbbf4ce46bd44b11b9b63a9e09e4e1f94ffff", + "cborBytes": [ + 217, 5, 9, 159, 27, 39, 157, 92, 175, 224, 212, 149, 47, 216, 102, 159, 27, 52, 218, 18, 98, 204, 103, 49, 86, + 159, 159, 27, 27, 208, 150, 85, 50, 237, 154, 21, 27, 130, 222, 162, 40, 10, 66, 163, 121, 255, 255, 255, 191, 27, + 36, 117, 223, 15, 250, 107, 56, 167, 70, 175, 58, 96, 64, 208, 253, 27, 67, 96, 229, 171, 20, 102, 166, 41, 72, + 81, 125, 246, 9, 34, 248, 8, 23, 27, 86, 16, 57, 203, 245, 91, 225, 107, 70, 63, 161, 113, 244, 55, 56, 27, 95, + 174, 106, 50, 17, 64, 224, 216, 73, 69, 118, 109, 136, 98, 124, 137, 10, 220, 27, 132, 186, 156, 201, 67, 107, + 139, 111, 27, 30, 51, 148, 209, 44, 195, 216, 227, 27, 188, 187, 244, 206, 70, 189, 68, 177, 27, 155, 99, 169, + 224, 158, 78, 31, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2426, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3742014333354933356" + } + }, + "cborHex": "1b33ee4e35cc0a7c6c", + "cborBytes": [27, 51, 238, 78, 53, 204, 10, 124, 108], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2427, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27caff77b4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1512832927212928828" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9430576290316969742" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e7cb1a" + }, + { + "_tag": "ByteArray", + "bytearray": "c1" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5023658f1d0a64d7251c9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f02544fc82031419c8" + }, + { + "_tag": "ByteArray", + "bytearray": "c49457" + }, + { + "_tag": "ByteArray", + "bytearray": "6d" + }, + { + "_tag": "ByteArray", + "bytearray": "5e76" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8780849146544805803" + } + } + ] + } + } + ] + }, + "cborHex": "bf4527caff77b4d8669f1b14fea9882f0a7f3c9f1b82e0232bb390670e43e7cb1a41c1ffff4be5023658f1d0a64d7251c99f49f02544fc82031419c843c49457416d425e761b79dbd7c69e1857abffff", + "cborBytes": [ + 191, 69, 39, 202, 255, 119, 180, 216, 102, 159, 27, 20, 254, 169, 136, 47, 10, 127, 60, 159, 27, 130, 224, 35, 43, + 179, 144, 103, 14, 67, 231, 203, 26, 65, 193, 255, 255, 75, 229, 2, 54, 88, 241, 208, 166, 77, 114, 81, 201, 159, + 73, 240, 37, 68, 252, 130, 3, 20, 25, 200, 67, 196, 148, 87, 65, 109, 66, 94, 118, 27, 121, 219, 215, 198, 158, + 24, 87, 171, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2428, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17337571315044625767" + } + }, + "cborHex": "1bf09b6d40ad3cad67", + "cborBytes": [27, 240, 155, 109, 64, 173, 60, 173, 103], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2429, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd5d01ad47" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04ed5a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17163878668161399205" + } + } + } + ] + } + ] + }, + "cborHex": "9f1bfffffffffffffff0bf1045dd5d01ad474304ed5a1bee3258b5e7aa39a5ffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 191, 16, 69, 221, 93, 1, 173, 71, 67, 4, 237, 90, 27, 238, 50, + 88, 181, 231, 170, 57, 165, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2430, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a0045fc82b050705000602f4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3431562867148460300" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e8be1eba804" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10756472661013536112" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0077934e8d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14112546906194865985" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11602526442717345189" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eab415c3989f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1ee86f8a31950616124bb" + } + } + ] + } + ] + }, + "cborHex": "9f4ca0045fc82b050705000602f4bf1b2f9f5c3f18ce110c467e8be1eba8041b9546aae51be99d70450077934e8d1bc3d9d6a3c3c86f411ba1047453ab3e75a546eab415c3989f4bb1ee86f8a31950616124bbffff", + "cborBytes": [ + 159, 76, 160, 4, 95, 200, 43, 5, 7, 5, 0, 6, 2, 244, 191, 27, 47, 159, 92, 63, 24, 206, 17, 12, 70, 126, 139, 225, + 235, 168, 4, 27, 149, 70, 170, 229, 27, 233, 157, 112, 69, 0, 119, 147, 78, 141, 27, 195, 217, 214, 163, 195, 200, + 111, 65, 27, 161, 4, 116, 83, 171, 62, 117, 165, 70, 234, 180, 21, 195, 152, 159, 75, 177, 238, 134, 248, 163, 25, + 80, 97, 97, 36, 187, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2431, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8806358700565340875" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f9fdb210" + } + ] + } + ] + }, + "cborHex": "d8669f1b7a3678947fde22cb9f9f44f9fdb210ffffff", + "cborBytes": [ + 216, 102, 159, 27, 122, 54, 120, 148, 127, 222, 34, 203, 159, 159, 68, 249, 253, 178, 16, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2432, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13340241079474745181" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4195586103160389650" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f9f1bb9220e95082a6f5d1b3a39b754e770c012ffa0ff", + "cborBytes": [ + 159, 159, 27, 185, 34, 14, 149, 8, 42, 111, 93, 27, 58, 57, 183, 84, 231, 112, 192, 18, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2433, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f9af7c55796f9005f306b96b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "321253006634437029" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15843724395941482724" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10169681321034180022" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "91edbd6e18de70d6644e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7d0c9ccfd4340d706f3b7" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8298620217769540345" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4d9f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ad69b0b407a07d7a0d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8215797177360691059" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "23e6b0aa197866a3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18123305730056883974" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af86d57f8ed7" + }, + { + "_tag": "ByteArray", + "bytearray": "e0f2" + }, + { + "_tag": "ByteArray", + "bytearray": "adbb6c641dc3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e2a97cca4931" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6022161185383740379" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17316937388717260082" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a5ca4177d998b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1875847198718095295" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2910970664919154205" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4935971786604682023" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f4cf9af7c55796f9005f306b96b1b047551e84f78c9a59fd8669f1bdbe03764fb4850e49f1b8d21f747bb2ae5b6ffffbf4a91edbd6e18de70d6644e4bb7d0c9ccfd4340d706f3b7ffd8669f1b732a9f1ebe073af99f424d9fffff49ad69b0b407a07d7a0dff9fd8669f1b72046000ef3daf739f4823e6b0aa197866a31bfb82ea8a43d78f0646af86d57f8ed742e0f246adbb6c641dc3ffff9f46e2a97cca49311b539303b0faf173db1bf0521ece542c3d3247a5ca4177d998b61b1a085916ac80efbfffbf1b2865d8659216be1d1b4480183021ec1b27ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 76, 249, 175, 124, 85, 121, 111, 144, 5, 243, 6, + 185, 107, 27, 4, 117, 81, 232, 79, 120, 201, 165, 159, 216, 102, 159, 27, 219, 224, 55, 100, 251, 72, 80, 228, + 159, 27, 141, 33, 247, 71, 187, 42, 229, 182, 255, 255, 191, 74, 145, 237, 189, 110, 24, 222, 112, 214, 100, 78, + 75, 183, 208, 201, 204, 253, 67, 64, 215, 6, 243, 183, 255, 216, 102, 159, 27, 115, 42, 159, 30, 190, 7, 58, 249, + 159, 66, 77, 159, 255, 255, 73, 173, 105, 176, 180, 7, 160, 125, 122, 13, 255, 159, 216, 102, 159, 27, 114, 4, 96, + 0, 239, 61, 175, 115, 159, 72, 35, 230, 176, 170, 25, 120, 102, 163, 27, 251, 130, 234, 138, 67, 215, 143, 6, 70, + 175, 134, 213, 127, 142, 215, 66, 224, 242, 70, 173, 187, 108, 100, 29, 195, 255, 255, 159, 70, 226, 169, 124, + 202, 73, 49, 27, 83, 147, 3, 176, 250, 241, 115, 219, 27, 240, 82, 30, 206, 84, 44, 61, 50, 71, 165, 202, 65, 119, + 217, 152, 182, 27, 26, 8, 89, 22, 172, 128, 239, 191, 255, 191, 27, 40, 101, 216, 101, 146, 22, 190, 29, 27, 68, + 128, 24, 48, 33, 236, 27, 39, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2434, + "sample": { + "_tag": "ByteArray", + "bytearray": "8cfa06" + }, + "cborHex": "438cfa06", + "cborBytes": [67, 140, 250, 6], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2435, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17490645582539360174" + }, + "fields": [] + }, + "cborHex": "d8669f1bf2bb417ce78387ae80ff", + "cborBytes": [216, 102, 159, 27, 242, 187, 65, 124, 231, 131, 135, 174, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2436, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6410476061424095866" + } + }, + { + "_tag": "ByteArray", + "bytearray": "699da4f2058c8c8c1d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5759755662868634410" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5dfe4a8a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10005632236141420271" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5063648527353172017" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14845790497869846521" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3577770134926697884" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18000404187099131105" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17204597900279416931" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "09a2" + } + ] + } + ] + }, + "cborHex": "d87b9f1bffffffffffffffee1b58f696038254127a49699da4f2058c8c8c1d9fbf1b4feec34246545b2a445dfe4a8a1b8adb2581b4681eef1b4645b181dc50d0311bce06d7cd2b66d7f91b31a6cafb5c4ea59c1bf9ce483ce97f6ce11beec302a2ed960863ff4209a2ffff", + "cborBytes": [ + 216, 123, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 27, 88, 246, 150, 3, 130, 84, 18, 122, 73, 105, 157, + 164, 242, 5, 140, 140, 140, 29, 159, 191, 27, 79, 238, 195, 66, 70, 84, 91, 42, 68, 93, 254, 74, 138, 27, 138, + 219, 37, 129, 180, 104, 30, 239, 27, 70, 69, 177, 129, 220, 80, 208, 49, 27, 206, 6, 215, 205, 43, 102, 215, 249, + 27, 49, 166, 202, 251, 92, 78, 165, 156, 27, 249, 206, 72, 60, 233, 127, 108, 225, 27, 238, 195, 2, 162, 237, 150, + 8, 99, 255, 66, 9, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2437, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb22d00f31d7" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9904" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2377f436" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "958a5e0a68691a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ffb10e081734806" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14635010624409726524" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8af15133e4c8e8f70842" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5378711331174610799" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb900b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "970b019bbfcd9c8195c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e90c13f1dd266d6c9c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "156fc53580c84ccd9c4e5076" + } + } + ] + } + ] + }, + "cborHex": "d87e9f0fbf41b946eb22d00f31d7ff13bf12429904ffbf442377f43647958a5e0a68691a482ffb10e0817348061bcb1a009f90026e3c4a8af15133e4c8e8f708421b4aa505754407f76f43cb900b4a970b019bbfcd9c8195c649e90c13f1dd266d6c9c4c156fc53580c84ccd9c4e5076ffff", + "cborBytes": [ + 216, 126, 159, 15, 191, 65, 185, 70, 235, 34, 208, 15, 49, 215, 255, 19, 191, 18, 66, 153, 4, 255, 191, 68, 35, + 119, 244, 54, 71, 149, 138, 94, 10, 104, 105, 26, 72, 47, 251, 16, 224, 129, 115, 72, 6, 27, 203, 26, 0, 159, 144, + 2, 110, 60, 74, 138, 241, 81, 51, 228, 200, 232, 247, 8, 66, 27, 74, 165, 5, 117, 68, 7, 247, 111, 67, 203, 144, + 11, 74, 151, 11, 1, 155, 191, 205, 156, 129, 149, 198, 73, 233, 12, 19, 241, 221, 38, 109, 108, 156, 76, 21, 111, + 197, 53, 128, 200, 76, 205, 156, 78, 80, 118, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2438, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15270334171411827723" + } + }, + "cborHex": "1bd3eb2005f082cc0b", + "cborBytes": [27, 211, 235, 32, 5, 240, 130, 204, 11], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2439, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4664810258675422440" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e987d859e1fc52e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ab17ce81f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ada6519a90f40ebf31" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07ee586b2355d1a4a338b7bc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "783142148c0ce35e0eb952ca" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7475534395644636398" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "19652c59" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4154565093016972586" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8300429538028587336" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "138cd926aa3ffe0345b6db04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4b29bb20b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "26de16" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14340876847323892192" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a653" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b73a20" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "644f747e29754e6374850f89" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1bd6f6281694acac7f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5684428036163127741" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dad5da980581" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16989027355286420588" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12052862256792874122" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11344154017750883622" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40292e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16190855596681941108" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4929f1d63b56cd63d3e2ca64" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13836792388217265709" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab498618" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4257621046684396675" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b40bcbc370cf254e8bf484e987d859e1fc52e451ab17ce81f49ada6519a90f40ebf314c07ee586b2355d1a4a338b7bc41c04c783142148c0ce35e0eb952caff1b67be6eecfe9cecee9f4419652c591b39a7faf0b583ad2aff1b73310caff15a8948bf4c138cd926aa3ffe0345b6db0445b4b29bb20b4326de161bc7050782ec5d49e041b442a65343b73a204c644f747e29754e6374850f894ac1bd6f6281694acac7f31b4ee3252e76c649bd46dad5da9805811bebc5265e2f3dbc6cff1ba7445e5d1eda2c8abf1b9d6e87f9a95c9d264340292e1be0b17961e1df50744c4929f1d63b56cd63d3e2ca64ff1bc006295dda84de2dbf44ab4986181b3b161bc8bbd9ac83ffff", + "cborBytes": [ + 191, 27, 64, 188, 188, 55, 12, 242, 84, 232, 191, 72, 78, 152, 125, 133, 158, 31, 197, 46, 69, 26, 177, 124, 232, + 31, 73, 173, 166, 81, 154, 144, 244, 14, 191, 49, 76, 7, 238, 88, 107, 35, 85, 209, 164, 163, 56, 183, 188, 65, + 192, 76, 120, 49, 66, 20, 140, 12, 227, 94, 14, 185, 82, 202, 255, 27, 103, 190, 110, 236, 254, 156, 236, 238, + 159, 68, 25, 101, 44, 89, 27, 57, 167, 250, 240, 181, 131, 173, 42, 255, 27, 115, 49, 12, 175, 241, 90, 137, 72, + 191, 76, 19, 140, 217, 38, 170, 63, 254, 3, 69, 182, 219, 4, 69, 180, 178, 155, 178, 11, 67, 38, 222, 22, 27, 199, + 5, 7, 130, 236, 93, 73, 224, 65, 180, 66, 166, 83, 67, 183, 58, 32, 76, 100, 79, 116, 126, 41, 117, 78, 99, 116, + 133, 15, 137, 74, 193, 189, 111, 98, 129, 105, 74, 202, 199, 243, 27, 78, 227, 37, 46, 118, 198, 73, 189, 70, 218, + 213, 218, 152, 5, 129, 27, 235, 197, 38, 94, 47, 61, 188, 108, 255, 27, 167, 68, 94, 93, 30, 218, 44, 138, 191, + 27, 157, 110, 135, 249, 169, 92, 157, 38, 67, 64, 41, 46, 27, 224, 177, 121, 97, 225, 223, 80, 116, 76, 73, 41, + 241, 214, 59, 86, 205, 99, 211, 226, 202, 100, 255, 27, 192, 6, 41, 93, 218, 132, 222, 45, 191, 68, 171, 73, 134, + 24, 27, 59, 22, 27, 200, 187, 217, 172, 131, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2440, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "37ace2b538b7f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa2d72" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9b09d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3687e45f3f47" + }, + { + "_tag": "ByteArray", + "bytearray": "0983f8cb67acaf" + } + ] + } + } + ] + }, + "cborHex": "bf4737ace2b538b7f843fa2d7243e9b09d9f463687e45f3f47470983f8cb67acafffff", + "cborBytes": [ + 191, 71, 55, 172, 226, 181, 56, 183, 248, 67, 250, 45, 114, 67, 233, 176, 157, 159, 70, 54, 135, 228, 95, 63, 71, + 71, 9, 131, 248, 203, 103, 172, 175, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2441, + "sample": { + "_tag": "ByteArray", + "bytearray": "d29a42bd26d9499fe7aac597" + }, + "cborHex": "4cd29a42bd26d9499fe7aac597", + "cborBytes": [76, 210, 154, 66, 189, 38, 217, 73, 159, 231, 170, 197, 151], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2442, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13166105240534973464" + } + }, + "cborHex": "1bb6b766f5917efc18", + "cborBytes": [27, 182, 183, 102, 245, 145, 126, 252, 24], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2443, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13759706061436977694" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1930995964681869995" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bd3903b3c40e7f90a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4029075275272548867" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0ee35b9be4a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6048571423974498072" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6650767765374063555" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6080630187038687674" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5477130816646926960" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6346598128645614716" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3477" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16720939186031511873" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4d28a5da0dd69b7" + } + } + ] + } + ] + }, + "cborHex": "d87f9fd8669f1bbef44bc2c5bd821e80ffbf1b1acc469959935aab493bd3903b3c40e7f90a1b37ea269dabedf20346f0ee35b9be4a1b53f0d7a9d4941f181b5c4c460b9abd53c31b5462bcf044f541ba1b4c02ad756a95d2701b5813a55f4e14ac7c4234771be80cb5992e51494148c4d28a5da0dd69b7ffff", + "cborBytes": [ + 216, 127, 159, 216, 102, 159, 27, 190, 244, 75, 194, 197, 189, 130, 30, 128, 255, 191, 27, 26, 204, 70, 153, 89, + 147, 90, 171, 73, 59, 211, 144, 59, 60, 64, 231, 249, 10, 27, 55, 234, 38, 157, 171, 237, 242, 3, 70, 240, 238, + 53, 185, 190, 74, 27, 83, 240, 215, 169, 212, 148, 31, 24, 27, 92, 76, 70, 11, 154, 189, 83, 195, 27, 84, 98, 188, + 240, 68, 245, 65, 186, 27, 76, 2, 173, 117, 106, 149, 210, 112, 27, 88, 19, 165, 95, 78, 20, 172, 124, 66, 52, + 119, 27, 232, 12, 181, 153, 46, 81, 73, 65, 72, 196, 210, 138, 93, 160, 221, 105, 183, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2444, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f3415e5082804c4fbdf51fbc" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13219234732484146839" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7024516086176626026" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4cf3415e5082804c4fbdf51fbc9fbf1bb77427f3603936971b617c1829b393356affffff", + "cborBytes": [ + 159, 76, 243, 65, 94, 80, 130, 128, 76, 79, 189, 245, 31, 188, 159, 191, 27, 183, 116, 39, 243, 96, 57, 54, 151, + 27, 97, 124, 24, 41, 179, 147, 53, 106, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2445, + "sample": { + "_tag": "ByteArray", + "bytearray": "b05d9ad310" + }, + "cborHex": "45b05d9ad310", + "cborBytes": [69, 176, 93, 154, 211, 16], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2446, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12277806233914827629" + } + }, + "cborHex": "1baa6387b81991e36d", + "cborBytes": [27, 170, 99, 135, 184, 25, 145, 227, 109], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2447, + "sample": { + "_tag": "ByteArray", + "bytearray": "90cc6a16882a" + }, + "cborHex": "4690cc6a16882a", + "cborBytes": [70, 144, 204, 106, 22, 136, 42], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2448, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3237868649425263667" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "81f10f77" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11352869615047940045" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5f9fae42d0573859969a" + }, + { + "_tag": "ByteArray", + "bytearray": "9f0c3740" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "923548737164974607" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15894234361906417414" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5544474988612332744" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "58" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15055247501103506545" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17150080399972114754" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a0d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e72468ff57ecfd355d44c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69271c7433e340bfc87d84fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16436271876841419517" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f35b7b276d2536f3d813cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30ca9030aed5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f738666c518b324605d4c62e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "319f29af97e45d075039ef" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03560d71f32dfea50efc1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31c5a47ffb8599207d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0aa6607c7f01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9343d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c90685f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cfb765ee6af0d7e86da6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93f3116bbbd3303c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3307726664914267873" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14444293946333190832" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18147312115023081598" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18071422228324544581" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "181ea5cf0f7bd62326b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12543356966893665731" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e043a6a0d1ce0f4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "231e8b55141daf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c3803707acbe2b7539c34" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13460951313452668072" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e163440518ae4bae8c327" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5662b583862c9f37f0fefc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86b6c59e61" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1ffe3eee36cf3c3a8aff6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aba7f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17852998557697110408" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c5718e471f34" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0430202a00a12ba4" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b2cef3861b65ddc339f9f4481f10f77ffd8669f1b9d8d7ec3ca4217cd9f4a5f9fae42d0573859969a449f0c37401b0cd11aaeeb7a9a0f1bdc93a9f0de3d4f06ffffa0d8669f1b4cf1eea05246acc89f41581bd0eefbd60cdca4711bee0153423dba2142ffffbf423a0d4be72468ff57ecfd355d44c04c69271c7433e340bfc87d84fb1be4195e305ae032fd4bf35b7b276d2536f3d813cf4630ca9030aed54cf738666c518b324605d4c62e4b319f29af97e45d075039efffffff9fbf4b03560d71f32dfea50efc1b4931c5a47ffb8599207d460aa6607c7f0143f9343d443c90685f4acfb765ee6af0d7e86da64893f3116bbbd3303c1b2de767e06c4d6ee1ffbf1bc87470d0a683dab041761bfbd834385417f07e1bfaca96c52961f0454a181ea5cf0f7bd62326b51bae12f4b42e9e3dc3ffbf481e043a6a0d1ce0f447231e8b55141daf4b3c3803707acbe2b7539c341bbacee7e6812c94a84b5e163440518ae4bae8c3274b5662b583862c9f37f0fefc4586b6c59e614ba1ffe3eee36cf3c3a8aff643aba7f71bf7c297995718f188ff9f46c5718e471f34ff480430202a00a12ba4ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 44, 239, 56, 97, 182, 93, 220, 51, 159, 159, 68, 129, 241, 15, 119, 255, 216, 102, 159, + 27, 157, 141, 126, 195, 202, 66, 23, 205, 159, 74, 95, 159, 174, 66, 208, 87, 56, 89, 150, 154, 68, 159, 12, 55, + 64, 27, 12, 209, 26, 174, 235, 122, 154, 15, 27, 220, 147, 169, 240, 222, 61, 79, 6, 255, 255, 160, 216, 102, 159, + 27, 76, 241, 238, 160, 82, 70, 172, 200, 159, 65, 88, 27, 208, 238, 251, 214, 12, 220, 164, 113, 27, 238, 1, 83, + 66, 61, 186, 33, 66, 255, 255, 191, 66, 58, 13, 75, 231, 36, 104, 255, 87, 236, 253, 53, 93, 68, 192, 76, 105, 39, + 28, 116, 51, 227, 64, 191, 200, 125, 132, 251, 27, 228, 25, 94, 48, 90, 224, 50, 253, 75, 243, 91, 123, 39, 109, + 37, 54, 243, 216, 19, 207, 70, 48, 202, 144, 48, 174, 213, 76, 247, 56, 102, 108, 81, 139, 50, 70, 5, 212, 198, + 46, 75, 49, 159, 41, 175, 151, 228, 93, 7, 80, 57, 239, 255, 255, 255, 159, 191, 75, 3, 86, 13, 113, 243, 45, 254, + 165, 14, 252, 27, 73, 49, 197, 164, 127, 251, 133, 153, 32, 125, 70, 10, 166, 96, 124, 127, 1, 67, 249, 52, 61, + 68, 60, 144, 104, 95, 74, 207, 183, 101, 238, 106, 240, 215, 232, 109, 166, 72, 147, 243, 17, 107, 187, 211, 48, + 60, 27, 45, 231, 103, 224, 108, 77, 110, 225, 255, 191, 27, 200, 116, 112, 208, 166, 131, 218, 176, 65, 118, 27, + 251, 216, 52, 56, 84, 23, 240, 126, 27, 250, 202, 150, 197, 41, 97, 240, 69, 74, 24, 30, 165, 207, 15, 123, 214, + 35, 38, 181, 27, 174, 18, 244, 180, 46, 158, 61, 195, 255, 191, 72, 30, 4, 58, 106, 13, 28, 224, 244, 71, 35, 30, + 139, 85, 20, 29, 175, 75, 60, 56, 3, 112, 122, 203, 226, 183, 83, 156, 52, 27, 186, 206, 231, 230, 129, 44, 148, + 168, 75, 94, 22, 52, 64, 81, 138, 228, 186, 232, 195, 39, 75, 86, 98, 181, 131, 134, 44, 159, 55, 240, 254, 252, + 69, 134, 182, 197, 158, 97, 75, 161, 255, 227, 238, 227, 108, 243, 195, 168, 175, 246, 67, 171, 167, 247, 27, 247, + 194, 151, 153, 87, 24, 241, 136, 255, 159, 70, 197, 113, 142, 71, 31, 52, 255, 72, 4, 48, 32, 42, 0, 161, 43, 164, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2449, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12596277217108676848" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd339ab8f9ab26b0fe290ad8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6735332538761950322" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "880826460127318238" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7479773265285528238" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d053a5b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12590534585974851879" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6301215651885096279" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13742455622063622170" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11883722420644112518" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14277818949185951017" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b2e7566644e6205b08bae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5df1ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "376df75e83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e135fff76e46d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bdcc552df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3476d5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a010c4b55dbb633380ebda6a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b372560b9172fc768" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9ebd7373f9dcfc877" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1db436feae60594c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd4126d6ec40fe20ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3837594626791533749" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5e64be2cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7046281926865374946" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8082975399824507485" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5cc2ad0779c937" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8806208978275374476" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4891" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9791905321815214345" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10217303128041086001" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10055942484843981193" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afe1ba763b628e0913" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11331022313942502717" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6021c58d1915cb7" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "87a812af05e6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "099a8b5d" + } + ] + }, + "cborHex": "d8669f1baecef7641a1bd0f09f4cfd339ab8f9ab26b0fe290ad89fbf1b5d78b542390934721b0c3952ffa8a750de1b67cd7e27bdcebaae442d053a5b1baeba907f994d09271b57726a4007be1d571bbeb70293deac081a1ba4eb769433d66886ff80ff9fd8669f1bc62500afe991d52980ffbf4b1b2e7566644e6205b08bae435df1ae45376df75e83471e135fff76e46d457bdcc552df433476d54ca010c4b55dbb633380ebda6a496b372560b9172fc76849e9ebd7373f9dcfc877481db436feae60594c49fd4126d6ec40fe20ea1b3541dffb09db6cb5ffbf45d5e64be2cb1b61c96c146610cee2ffbf1b702c7f4cfac2c25d475cc2ad0779c9371b7a35f0688ff5958c4248911b87e3d602ad0d89091b8dcb270fb5605c311b8b8de2694ae2698949afe1ba763b628e09131b9d3fe0c29c914d3d48f6021c58d1915cb7ff4687a812af05e6ff44099a8b5dffff", + "cborBytes": [ + 216, 102, 159, 27, 174, 206, 247, 100, 26, 27, 208, 240, 159, 76, 253, 51, 154, 184, 249, 171, 38, 176, 254, 41, + 10, 216, 159, 191, 27, 93, 120, 181, 66, 57, 9, 52, 114, 27, 12, 57, 82, 255, 168, 167, 80, 222, 27, 103, 205, + 126, 39, 189, 206, 186, 174, 68, 45, 5, 58, 91, 27, 174, 186, 144, 127, 153, 77, 9, 39, 27, 87, 114, 106, 64, 7, + 190, 29, 87, 27, 190, 183, 2, 147, 222, 172, 8, 26, 27, 164, 235, 118, 148, 51, 214, 104, 134, 255, 128, 255, 159, + 216, 102, 159, 27, 198, 37, 0, 175, 233, 145, 213, 41, 128, 255, 191, 75, 27, 46, 117, 102, 100, 78, 98, 5, 176, + 139, 174, 67, 93, 241, 174, 69, 55, 109, 247, 94, 131, 71, 30, 19, 95, 255, 118, 228, 109, 69, 123, 220, 197, 82, + 223, 67, 52, 118, 213, 76, 160, 16, 196, 181, 93, 187, 99, 51, 128, 235, 218, 106, 73, 107, 55, 37, 96, 185, 23, + 47, 199, 104, 73, 233, 235, 215, 55, 63, 157, 207, 200, 119, 72, 29, 180, 54, 254, 174, 96, 89, 76, 73, 253, 65, + 38, 214, 236, 64, 254, 32, 234, 27, 53, 65, 223, 251, 9, 219, 108, 181, 255, 191, 69, 213, 230, 75, 226, 203, 27, + 97, 201, 108, 20, 102, 16, 206, 226, 255, 191, 27, 112, 44, 127, 76, 250, 194, 194, 93, 71, 92, 194, 173, 7, 121, + 201, 55, 27, 122, 53, 240, 104, 143, 245, 149, 140, 66, 72, 145, 27, 135, 227, 214, 2, 173, 13, 137, 9, 27, 141, + 203, 39, 15, 181, 96, 92, 49, 27, 139, 141, 226, 105, 74, 226, 105, 137, 73, 175, 225, 186, 118, 59, 98, 142, 9, + 19, 27, 157, 63, 224, 194, 156, 145, 77, 61, 72, 246, 2, 28, 88, 209, 145, 92, 183, 255, 70, 135, 168, 18, 175, 5, + 230, 255, 68, 9, 154, 139, 93, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2450, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7390945860072976998" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25d328" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a34f5bee82d225bf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad03aa823bde" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6da07909aab15893e5488f30" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcbc52ea0012fa7e7afa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6e9e99b" + } + } + ] + }, + "cborHex": "bf1b6691ea19cfcb3266a04325d32848a34f5bee82d225bf46ad03aa823bde4c6da07909aab15893e5488f304afcbc52ea0012fa7e7afa44d6e9e99bff", + "cborBytes": [ + 191, 27, 102, 145, 234, 25, 207, 203, 50, 102, 160, 67, 37, 211, 40, 72, 163, 79, 91, 238, 130, 210, 37, 191, 70, + 173, 3, 170, 130, 59, 222, 76, 109, 160, 121, 9, 170, 177, 88, 147, 229, 72, 143, 48, 74, 252, 188, 82, 234, 0, + 18, 250, 126, 122, 250, 68, 214, 233, 233, 155, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2451, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7795059486502385001" + } + }, + "cborHex": "1b6c2d9d4d90037569", + "cborBytes": [27, 108, 45, 157, 77, 144, 3, 117, 105], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2452, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6428995349650336670" + } + }, + "cborHex": "1b593861354e8beb9e", + "cborBytes": [27, 89, 56, 97, 53, 78, 139, 235, 158], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2453, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8343016917729652812" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3345189820181718101" + } + } + ] + }, + "cborHex": "d8669f1b73c859aef859b04c9f1b2e6c806afa2f2455ffff", + "cborBytes": [ + 216, 102, 159, 27, 115, 200, 89, 174, 248, 89, 176, 76, 159, 27, 46, 108, 128, 106, 250, 47, 36, 85, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2454, + "sample": { + "_tag": "ByteArray", + "bytearray": "b076" + }, + "cborHex": "42b076", + "cborBytes": [66, 176, 118], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2455, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7157653432170726629" + } + }, + "cborHex": "1b635517dfa9e444e5", + "cborBytes": [27, 99, 85, 23, 223, 169, 228, 68, 229], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2456, + "sample": { + "_tag": "ByteArray", + "bytearray": "4425c4c8b30007b952f8defc" + }, + "cborHex": "4c4425c4c8b30007b952f8defc", + "cborBytes": [76, 68, 37, 196, 200, 179, 0, 7, 185, 82, 248, 222, 252], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2457, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10445073892771447549" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12835726795820500833" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9904990592852388027" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1930844462211493948" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12167732062241112381" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d28124984e4c842ce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17302464849280371592" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "517b24" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d2e6265d093386aee78" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88ac3a" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2329917769790717397" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12314794088851874784" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "651a9ffc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17661137505328898651" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf1c64fc6250" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c37b3a0cc63d1ca2daf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e1d630824ecb5" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b90f45b5d775942fd9fa01bb221a983a2d807611b897598771e8d68bbd8669f1b1acbbcceeea5703c9f1ba8dc77d7dc03413d490d28124984e4c842ce1bf01eb41ba80a0b88ffff43517b24ffffbf4a7d2e6265d093386aee784388ac3aff9fa01b205587de003efdd5ffbf1baae6effa2c18a3e044651a9ffc1bf518f6fd0675225b46bf1c64fc62504a6c37b3a0cc63d1ca2daf470e1d630824ecb5ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 144, 244, 91, 93, 119, 89, 66, 253, 159, 160, 27, 178, 33, 169, 131, 162, 216, 7, 97, 27, + 137, 117, 152, 119, 30, 141, 104, 187, 216, 102, 159, 27, 26, 203, 188, 206, 238, 165, 112, 60, 159, 27, 168, 220, + 119, 215, 220, 3, 65, 61, 73, 13, 40, 18, 73, 132, 228, 200, 66, 206, 27, 240, 30, 180, 27, 168, 10, 11, 136, 255, + 255, 67, 81, 123, 36, 255, 255, 191, 74, 125, 46, 98, 101, 208, 147, 56, 106, 238, 120, 67, 136, 172, 58, 255, + 159, 160, 27, 32, 85, 135, 222, 0, 62, 253, 213, 255, 191, 27, 170, 230, 239, 250, 44, 24, 163, 224, 68, 101, 26, + 159, 252, 27, 245, 24, 246, 253, 6, 117, 34, 91, 70, 191, 28, 100, 252, 98, 80, 74, 108, 55, 179, 160, 204, 99, + 209, 202, 45, 175, 71, 14, 29, 99, 8, 36, 236, 181, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2458, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11198050065172281740" + } + }, + "cborHex": "1b9b67773457a2398c", + "cborBytes": [27, 155, 103, 119, 52, 87, 162, 57, 140], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2459, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1036234682253791882" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5649618721836402698" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14642612291223960923" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "678f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15874292426442255245" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6375ae998a91" + }, + { + "_tag": "ByteArray", + "bytearray": "1d3f3c" + }, + { + "_tag": "ByteArray", + "bytearray": "a2367957d381" + }, + { + "_tag": "ByteArray", + "bytearray": "e809ced162d9dad603a5591e" + }, + { + "_tag": "ByteArray", + "bytearray": "3a6367647fed43b4" + } + ] + } + } + ] + }, + "cborHex": "bf1b0e6171f40bad528a1b4e677a4b6774880a1bcb35024c8a2c3d5b42678f1bdc4cd0db32c3ab8d9f466375ae998a91431d3f3c46a2367957d3814ce809ced162d9dad603a5591e483a6367647fed43b4ffff", + "cborBytes": [ + 191, 27, 14, 97, 113, 244, 11, 173, 82, 138, 27, 78, 103, 122, 75, 103, 116, 136, 10, 27, 203, 53, 2, 76, 138, 44, + 61, 91, 66, 103, 143, 27, 220, 76, 208, 219, 50, 195, 171, 141, 159, 70, 99, 117, 174, 153, 138, 145, 67, 29, 63, + 60, 70, 162, 54, 121, 87, 211, 129, 76, 232, 9, 206, 209, 98, 217, 218, 214, 3, 165, 89, 30, 72, 58, 99, 103, 100, + 127, 237, 67, 180, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2460, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13447616812320571105" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12479845344565349575" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3254f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d229d5c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cebd84d364688ed0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13290626645789992494" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9491809594635933948" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33959680b8cf8af8896311" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17321602181403679533" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "189838b817" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eede79d20e68ff474099" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e399a9f7c" + } + } + ] + } + ] + }, + "cborHex": "9fbf1bba9f883e05f03ee11bad31513846a14cc743b3254f444d229d5c48cebd84d364688ed01bb871ca8480a7662eff80bf1b83b9ae895beb58fc4b33959680b8cf8af88963111bf062b16903329b2d45189838b8174aeede79d20e68ff474099453e399a9f7cffff", + "cborBytes": [ + 159, 191, 27, 186, 159, 136, 62, 5, 240, 62, 225, 27, 173, 49, 81, 56, 70, 161, 76, 199, 67, 179, 37, 79, 68, 77, + 34, 157, 92, 72, 206, 189, 132, 211, 100, 104, 142, 208, 27, 184, 113, 202, 132, 128, 167, 102, 46, 255, 128, 191, + 27, 131, 185, 174, 137, 91, 235, 88, 252, 75, 51, 149, 150, 128, 184, 207, 138, 248, 137, 99, 17, 27, 240, 98, + 177, 105, 3, 50, 155, 45, 69, 24, 152, 56, 184, 23, 74, 238, 222, 121, 210, 14, 104, 255, 71, 64, 153, 69, 62, 57, + 154, 159, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2461, + "sample": { + "_tag": "ByteArray", + "bytearray": "933f" + }, + "cborHex": "42933f", + "cborBytes": [66, 147, 63], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2462, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "872276864321163702" + }, + "fields": [] + }, + "cborHex": "d8669f1b0c1af32fc3a791b680ff", + "cborBytes": [216, 102, 159, 27, 12, 26, 243, 47, 195, 167, 145, 182, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2463, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "53589177cb5366da320e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13050876929787993149" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0c0332e13f254d7002" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4761864517771621576" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7882019250191359055" + } + } + } + ] + } + ] + }, + "cborHex": "d905079f4a53589177cb5366da320e1bb51e076bcf5a9c3d809f490c0332e13f254d7002ffbf1b42158a8caa5074c81b6d628ebf50725c4fffff", + "cborBytes": [ + 217, 5, 7, 159, 74, 83, 88, 145, 119, 203, 83, 102, 218, 50, 14, 27, 181, 30, 7, 107, 207, 90, 156, 61, 128, 159, + 73, 12, 3, 50, 225, 63, 37, 77, 112, 2, 255, 191, 27, 66, 21, 138, 140, 170, 80, 116, 200, 27, 109, 98, 142, 191, + 80, 114, 92, 79, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2464, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "535078252647920347" + } + }, + "cborHex": "1b076cfad5f81db2db", + "cborBytes": [27, 7, 108, 250, 213, 248, 29, 178, 219], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2465, + "sample": { + "_tag": "ByteArray", + "bytearray": "060778ff" + }, + "cborHex": "44060778ff", + "cborBytes": [68, 6, 7, 120, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2466, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b35f603" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3690276428763085545" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be614f04" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "94fdc2b60fa6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4308663282644363808" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01ba5a02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + ] + } + } + ] + }, + "cborHex": "bf445b35f6031b33367edc2b6bbae944be614f049f4694fdc2b60fa61b3bcb726d62c92a204401ba5a021bfffffffffffffff0ffff", + "cborBytes": [ + 191, 68, 91, 53, 246, 3, 27, 51, 54, 126, 220, 43, 107, 186, 233, 68, 190, 97, 79, 4, 159, 70, 148, 253, 194, 182, + 15, 166, 27, 59, 203, 114, 109, 98, 201, 42, 32, 68, 1, 186, 90, 2, 27, 255, 255, 255, 255, 255, 255, 255, 240, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2467, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9788528825683965480" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "06120707f994ae02920392" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b87d7d71ae89076289f4b06120707f994ae0292039280ffff", + "cborBytes": [ + 216, 102, 159, 27, 135, 215, 215, 26, 232, 144, 118, 40, 159, 75, 6, 18, 7, 7, 249, 148, 174, 2, 146, 3, 146, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2468, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27a45d42c0c1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14126174183485416272" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16532308204873151979" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a00a03dae3" + }, + { + "_tag": "ByteArray", + "bytearray": "9afbfa47d246db" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17110380188810222367" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cee01fee8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6749165353457627356" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2374451980099862207" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6294229331916784846" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3801985541872931920" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9160673b5af96db4c961" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7759128824188474313" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dff26d7f54fa6a5bc2b0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8467902590538077309" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a4982fe4b68c79cb0e3d6e05" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10157375764040345403" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12087253474619140781" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2413586209409985460" + } + } + ] + } + } + ] + }, + "cborHex": "bf4627a45d42c0c1d8669f1bc40a409381f123509f1be56e8eb86cbd75eb45a00a03dae3479afbfa47d246db1bed74482085ea1b1fffff459cee01fee8d8669f1b5da9da215f3730dc9f1b20f3bf7eda133ebf1b5759983aa7be84ce1b34c35db4e081d4504a9160673b5af96db4c9611b6badf68e543f93c9ffff4adff26d7f54fa6a5bc2b0d8669f1b7584088a8da1d47d9f4ca4982fe4b68c79cb0e3d6e051b8cf63f70f9c9673b1ba7be8cfe80c7aaad1b217ec7dea6a9ebb4ffffff", + "cborBytes": [ + 191, 70, 39, 164, 93, 66, 192, 193, 216, 102, 159, 27, 196, 10, 64, 147, 129, 241, 35, 80, 159, 27, 229, 110, 142, + 184, 108, 189, 117, 235, 69, 160, 10, 3, 218, 227, 71, 154, 251, 250, 71, 210, 70, 219, 27, 237, 116, 72, 32, 133, + 234, 27, 31, 255, 255, 69, 156, 238, 1, 254, 232, 216, 102, 159, 27, 93, 169, 218, 33, 95, 55, 48, 220, 159, 27, + 32, 243, 191, 126, 218, 19, 62, 191, 27, 87, 89, 152, 58, 167, 190, 132, 206, 27, 52, 195, 93, 180, 224, 129, 212, + 80, 74, 145, 96, 103, 59, 90, 249, 109, 180, 201, 97, 27, 107, 173, 246, 142, 84, 63, 147, 201, 255, 255, 74, 223, + 242, 109, 127, 84, 250, 106, 91, 194, 176, 216, 102, 159, 27, 117, 132, 8, 138, 141, 161, 212, 125, 159, 76, 164, + 152, 47, 228, 182, 140, 121, 203, 14, 61, 110, 5, 27, 140, 246, 63, 112, 249, 201, 103, 59, 27, 167, 190, 140, + 254, 128, 199, 170, 173, 27, 33, 126, 199, 222, 166, 169, 235, 180, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2469, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13009876086158035113" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ced9838f20cd84bb5f" + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffff9f1bb48c5d5eff4c88a949ced9838f20cd84bb5fffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 27, 180, 140, 93, 94, 255, 76, 136, 169, 73, 206, 217, 131, + 143, 32, 205, 132, 187, 95, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2470, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "677812035670407118" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12197241261758918559" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "769227386504084452" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de3891e6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2769552571522762232" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc56" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6067153485131795481" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9893862541881339623" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16409070190697472857" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2547495619194422772" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6433073472612285203" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46dbab59174b7012c95532" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10338375796498646042" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10698366442079190993" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11450982955054335356" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18109319933252183668" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14403930807762085004" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50fdf148c77b73bb1a96badd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14580230182005805204" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16107556434173820653" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16051414351252000766" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18393514057609407907" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18357839131604234418" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7ef2bd0c543ce2197c917898" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13921203148414006466" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf1b096812748a9e77ce1ba9454e4dc6e0af9f1b0aacd83b8413fbe444de3891e61b266f6d63dc6245f842cc561b5432dbf3170dcc191b894e0f8fd9616ee71be3b8ba6642f963591b235a85c4b8f285f4ffbf1b5946de3d4d0b3b134b46dbab59174b7012c955321b8f794a0308cc441a1b94783b98c116ffd11b9eea1053e511057c1bfb513a883165a6741bc7e50ac11df6e48c4c50fdf148c77b73bb1a96badd1bca576219e5e290941bdf89893c427cfeed1bdec2144ef4fb8ffe1bff42e39516f66da3ffd8669f1bfec4256d1b0930b29f4c7ef2bd0c543ce2197c917898ffff1bc1320c817b4434c2a0ff", + "cborBytes": [ + 159, 191, 27, 9, 104, 18, 116, 138, 158, 119, 206, 27, 169, 69, 78, 77, 198, 224, 175, 159, 27, 10, 172, 216, 59, + 132, 19, 251, 228, 68, 222, 56, 145, 230, 27, 38, 111, 109, 99, 220, 98, 69, 248, 66, 204, 86, 27, 84, 50, 219, + 243, 23, 13, 204, 25, 27, 137, 78, 15, 143, 217, 97, 110, 231, 27, 227, 184, 186, 102, 66, 249, 99, 89, 27, 35, + 90, 133, 196, 184, 242, 133, 244, 255, 191, 27, 89, 70, 222, 61, 77, 11, 59, 19, 75, 70, 219, 171, 89, 23, 75, + 112, 18, 201, 85, 50, 27, 143, 121, 74, 3, 8, 204, 68, 26, 27, 148, 120, 59, 152, 193, 22, 255, 209, 27, 158, 234, + 16, 83, 229, 17, 5, 124, 27, 251, 81, 58, 136, 49, 101, 166, 116, 27, 199, 229, 10, 193, 29, 246, 228, 140, 76, + 80, 253, 241, 72, 199, 123, 115, 187, 26, 150, 186, 221, 27, 202, 87, 98, 25, 229, 226, 144, 148, 27, 223, 137, + 137, 60, 66, 124, 254, 237, 27, 222, 194, 20, 78, 244, 251, 143, 254, 27, 255, 66, 227, 149, 22, 246, 109, 163, + 255, 216, 102, 159, 27, 254, 196, 37, 109, 27, 9, 48, 178, 159, 76, 126, 242, 189, 12, 84, 60, 226, 25, 124, 145, + 120, 152, 255, 255, 27, 193, 50, 12, 129, 123, 68, 52, 194, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2471, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15492710638416839942" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13300734314811155095" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7609130882462820654" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d585425352e9a6742a137e01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d66e" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eb0e6b71a2a2cacfd8d9cb" + }, + { + "_tag": "ByteArray", + "bytearray": "8d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2803877121405370043" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eedf6eb4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11735148924196971172" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5682042107732337483" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b5abf2b176b09c" + }, + { + "_tag": "ByteArray", + "bytearray": "de3575e118d37d729b0e" + }, + { + "_tag": "ByteArray", + "bytearray": "f9eccbd4" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15771643184268431335" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cbe95982939d7800" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9583137320188312092" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18399654728405510597" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8182847844988692875" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1977708952642873689" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "554485027126365579" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9a0070bde5452c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5097177860940069507" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1d542" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e1a172f92b33d0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "19df56" + }, + { + "_tag": "ByteArray", + "bytearray": "f900918a8054104971" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6398378305137284497" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5a13b7f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14789549903085684186" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13320629429397528050" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "992962334536049871" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11199606969084731317" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bd7012a3de2c045069f9fbf1bb895b363962ae2971b6999103902a6a92e4cd585425352e9a6742a137e0142d66eff9f4beb0e6b71a2a2cacfd8d9cb418d1b26e95f62e7363ebb44eedf6eb41ba2db9fc5651162a4ffd8669f1b4edaab313632a34b9f47b5abf2b176b09c4ade3575e118d37d729b0e44f9eccbd4ffff1bdae021ea1287cfe748cbe95982939d7800ffd8669f1b84fe249e7b9cfa1c9f9f1bff58b47d6c7269c51b718f50c2ab9f298bff1b1b723bd067636959d8669f1b07b1ed31c323cd8b9f479a0070bde5452c1b46bcd0422e517a8343c1d542ffffffff9f47e1a172f92b33d09f4319df5649f900918a8054104971ffd8669f1b58cb9b2b204615919f445a13b7f91bcd3f09474955c5da1bb8dc61e3ebda9df21b0dc7b5fb795d24cf1b9b6cff334848dfb5ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 215, 1, 42, 61, 226, 192, 69, 6, 159, 159, 191, 27, 184, 149, 179, 99, 150, 42, 226, 151, 27, + 105, 153, 16, 57, 2, 166, 169, 46, 76, 213, 133, 66, 83, 82, 233, 166, 116, 42, 19, 126, 1, 66, 214, 110, 255, + 159, 75, 235, 14, 107, 113, 162, 162, 202, 207, 216, 217, 203, 65, 141, 27, 38, 233, 95, 98, 231, 54, 62, 187, 68, + 238, 223, 110, 180, 27, 162, 219, 159, 197, 101, 17, 98, 164, 255, 216, 102, 159, 27, 78, 218, 171, 49, 54, 50, + 163, 75, 159, 71, 181, 171, 242, 177, 118, 176, 156, 74, 222, 53, 117, 225, 24, 211, 125, 114, 155, 14, 68, 249, + 236, 203, 212, 255, 255, 27, 218, 224, 33, 234, 18, 135, 207, 231, 72, 203, 233, 89, 130, 147, 157, 120, 0, 255, + 216, 102, 159, 27, 132, 254, 36, 158, 123, 156, 250, 28, 159, 159, 27, 255, 88, 180, 125, 108, 114, 105, 197, 27, + 113, 143, 80, 194, 171, 159, 41, 139, 255, 27, 27, 114, 59, 208, 103, 99, 105, 89, 216, 102, 159, 27, 7, 177, 237, + 49, 195, 35, 205, 139, 159, 71, 154, 0, 112, 189, 229, 69, 44, 27, 70, 188, 208, 66, 46, 81, 122, 131, 67, 193, + 213, 66, 255, 255, 255, 255, 159, 71, 225, 161, 114, 249, 43, 51, 208, 159, 67, 25, 223, 86, 73, 249, 0, 145, 138, + 128, 84, 16, 73, 113, 255, 216, 102, 159, 27, 88, 203, 155, 43, 32, 70, 21, 145, 159, 68, 90, 19, 183, 249, 27, + 205, 63, 9, 71, 73, 85, 197, 218, 27, 184, 220, 97, 227, 235, 218, 157, 242, 27, 13, 199, 181, 251, 121, 93, 36, + 207, 27, 155, 108, 255, 51, 72, 72, 223, 181, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2472, + "sample": { + "_tag": "ByteArray", + "bytearray": "0caa759ded" + }, + "cborHex": "450caa759ded", + "cborBytes": [69, 12, 170, 117, 157, 237], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2473, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bee7c1d250e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2803061482754211833" + } + } + } + ] + }, + "cborHex": "bf467bee7c1d250e1b26e679913b24fff9ff", + "cborBytes": [191, 70, 123, 238, 124, 29, 37, 14, 27, 38, 230, 121, 145, 59, 36, 255, 249, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2474, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7764481361336526239" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "96a4ba296d258c5cb1d1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17981392552575191464" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6da0b2720b6952" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0619bc958d08" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b6bc0faa8ff9ae59f9f4a96a4ba296d258c5cb1d1d8669f1bf98abd41cf1949a89f476da0b2720b6952ffff460619bc958d08a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 107, 192, 250, 168, 255, 154, 229, 159, 159, 74, 150, 164, 186, 41, 109, 37, 140, 92, 177, 209, + 216, 102, 159, 27, 249, 138, 189, 65, 207, 25, 73, 168, 159, 71, 109, 160, 178, 114, 11, 105, 82, 255, 255, 70, 6, + 25, 188, 149, 141, 8, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2475, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6485155808639654620" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d" + }, + { + "_tag": "ByteArray", + "bytearray": "613efa763adc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1661534878006416830" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de06bdaab023629b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12309530412962143106" + } + } + ] + } + } + ] + }, + "cborHex": "bf020203d8669f1bfffffffffffffff69f1b59ffe6d91f071adc410d46613efa763adc1b170ef52b197e95be48de06bdaab023629bffff0ad8669f1bfffffffffffffff49f1baad43cb12079db82ffffff", + "cborBytes": [ + 191, 2, 2, 3, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 27, 89, 255, 230, 217, 31, 7, 26, + 220, 65, 13, 70, 97, 62, 250, 118, 58, 220, 27, 23, 14, 245, 43, 25, 126, 149, 190, 72, 222, 6, 189, 170, 176, 35, + 98, 155, 255, 255, 10, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 27, 170, 212, 60, 177, 32, + 121, 219, 130, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2476, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8935833922606131185" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1970932838724972750" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3070105351212441587" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3342589509309341501" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "700459344060335321" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "970c675860676f25" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11093490806445699923" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4443446979561151888" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14894139193650525472" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2754290502281467178" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0458fe3456b5" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7414689083283172412" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9681837564682331373" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16462507239514131173" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "58caa224c8b530" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5198377401441001886" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b347461e8f133" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7689fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "913e70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a81d347cefb7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e734bc4ad7aeaa2cea0678" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3863253120404379511" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2745980785219053848" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e2b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18a79a5653737e0bc0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7b1ea0a60ad1fd795b17cef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d54d223eb670bc20a1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14702869941967209993" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "755570" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6113519619209388202" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bc413b558" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12517953253279947254" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c2ff00ec03e89330addda21" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0159e47001bac" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7c02759bc8d2e7f19f9f1b1b5a28f9705ab0ce1b2a9b348d020b1ff31b2e634372ec549f3dbf1b09b8880fee51c4d948970c675860676f251b99f3ff1cd541f3531b3daa4b7c4b065d901bceb29caf20c335201b2639349e74b8152aff460458fe3456b5ff9f1b66e6446fc10f6c3cffd8669f1b865ccbf7efec64ed9f1be476931cbb894ae5bf4758caa224c8b5301b482458b4554f219e475b347461e8f133437689fc43913e7046a81d347cefb74be734bc4ad7aeaa2cea06781b359d083e9f1f5777ff1b261baef9af07a918ffffbf4100420e2b4918a79a5653737e0bc04ca7b1ea0a60ad1fd795b17cef4a2d54d223eb670bc20a1e1bcc0b165025b94609437555701b54d795b3ee5b60aa457bc413b5581badb8b42930b259f64c7c2ff00ec03e89330addda2147d0159e47001bacffffff", + "cborBytes": [ + 216, 102, 159, 27, 124, 2, 117, 155, 200, 210, 231, 241, 159, 159, 27, 27, 90, 40, 249, 112, 90, 176, 206, 27, 42, + 155, 52, 141, 2, 11, 31, 243, 27, 46, 99, 67, 114, 236, 84, 159, 61, 191, 27, 9, 184, 136, 15, 238, 81, 196, 217, + 72, 151, 12, 103, 88, 96, 103, 111, 37, 27, 153, 243, 255, 28, 213, 65, 243, 83, 27, 61, 170, 75, 124, 75, 6, 93, + 144, 27, 206, 178, 156, 175, 32, 195, 53, 32, 27, 38, 57, 52, 158, 116, 184, 21, 42, 255, 70, 4, 88, 254, 52, 86, + 181, 255, 159, 27, 102, 230, 68, 111, 193, 15, 108, 60, 255, 216, 102, 159, 27, 134, 92, 203, 247, 239, 236, 100, + 237, 159, 27, 228, 118, 147, 28, 187, 137, 74, 229, 191, 71, 88, 202, 162, 36, 200, 181, 48, 27, 72, 36, 88, 180, + 85, 79, 33, 158, 71, 91, 52, 116, 97, 232, 241, 51, 67, 118, 137, 252, 67, 145, 62, 112, 70, 168, 29, 52, 124, + 239, 183, 75, 231, 52, 188, 74, 215, 174, 170, 44, 234, 6, 120, 27, 53, 157, 8, 62, 159, 31, 87, 119, 255, 27, 38, + 27, 174, 249, 175, 7, 169, 24, 255, 255, 191, 65, 0, 66, 14, 43, 73, 24, 167, 154, 86, 83, 115, 126, 11, 192, 76, + 167, 177, 234, 10, 96, 173, 31, 215, 149, 177, 124, 239, 74, 45, 84, 210, 35, 235, 103, 11, 194, 10, 30, 27, 204, + 11, 22, 80, 37, 185, 70, 9, 67, 117, 85, 112, 27, 84, 215, 149, 179, 238, 91, 96, 170, 69, 123, 196, 19, 181, 88, + 27, 173, 184, 180, 41, 48, 178, 89, 246, 76, 124, 47, 240, 14, 192, 62, 137, 51, 10, 221, 218, 33, 71, 208, 21, + 158, 71, 0, 27, 172, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2477, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e91c" + }, + { + "_tag": "ByteArray", + "bytearray": "aa02077606f907030502" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c71c05f56b5f178259" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81deb2dd7cf1a3667f7ba604" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0fefd85b60501fd03f9fe06" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "527c650762" + }, + { + "_tag": "ByteArray", + "bytearray": "be0723" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14468137184276865949" + } + }, + { + "_tag": "ByteArray", + "bytearray": "99" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12110267901862791485" + } + } + ] + } + } + ] + }, + "cborHex": "bf0d9f42e91c4aaa02077606f907030502ff49c71c05f56b5f1782594c81deb2dd7cf1a3667f7ba6044cf0fefd85b60501fd03f9fe06d87e9f45527c65076243be07231bc8c9261d1671639d41991ba810507e6958c93dffff", + "cborBytes": [ + 191, 13, 159, 66, 233, 28, 74, 170, 2, 7, 118, 6, 249, 7, 3, 5, 2, 255, 73, 199, 28, 5, 245, 107, 95, 23, 130, 89, + 76, 129, 222, 178, 221, 124, 241, 163, 102, 127, 123, 166, 4, 76, 240, 254, 253, 133, 182, 5, 1, 253, 3, 249, 254, + 6, 216, 126, 159, 69, 82, 124, 101, 7, 98, 67, 190, 7, 35, 27, 200, 201, 38, 29, 22, 113, 99, 157, 65, 153, 27, + 168, 16, 80, 126, 105, 88, 201, 61, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2478, + "sample": { + "_tag": "ByteArray", + "bytearray": "b9be8023f9d639079e" + }, + "cborHex": "49b9be8023f9d639079e", + "cborBytes": [73, 185, 190, 128, 35, 249, 214, 57, 7, 158], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2479, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d14b9f19d6dd9d91e5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41c68e4d05ba20" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "506c4de55343ba" + } + } + ] + } + ] + }, + "cborHex": "9f49d14b9f19d6dd9d91e5bf4741c68e4d05ba2047506c4de55343baffff", + "cborBytes": [ + 159, 73, 209, 75, 159, 25, 214, 221, 157, 145, 229, 191, 71, 65, 198, 142, 77, 5, 186, 32, 71, 80, 108, 77, 229, + 83, 67, 186, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2480, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13170257438864198237" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "691697777369715632" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34907c9c0a3f9cf050" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4584698343526099266" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18098483440753988152" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16632312611931252601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11141890328335988854" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17027931298706309205" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f28a5bb41e53c54638403a5e" + } + } + ] + } + ] + }, + "cborHex": "9f1bb6c6275c93f24a5dbf1b09996776b80c93b04934907c9c0a3f9cf0501b3fa01eda4831e9421bfb2abaccab6e52381be6d1d832e36967791b9a9ff238aad3b8761bec4f5d4c5f2540554cf28a5bb41e53c54638403a5effff", + "cborBytes": [ + 159, 27, 182, 198, 39, 92, 147, 242, 74, 93, 191, 27, 9, 153, 103, 118, 184, 12, 147, 176, 73, 52, 144, 124, 156, + 10, 63, 156, 240, 80, 27, 63, 160, 30, 218, 72, 49, 233, 66, 27, 251, 42, 186, 204, 171, 110, 82, 56, 27, 230, + 209, 216, 50, 227, 105, 103, 121, 27, 154, 159, 242, 56, 170, 211, 184, 118, 27, 236, 79, 93, 76, 95, 37, 64, 85, + 76, 242, 138, 91, 180, 30, 83, 197, 70, 56, 64, 58, 94, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2481, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7472589426996857595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ae66f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11913421369802592605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1398998376481284549" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16323128938761536841" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "100158550683568713" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12297430577355745602" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3226578644343191016" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16265027777470387004" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17999872359658730210" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3620506370595941280" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15449547352499136916" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9ec4eb" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3684213528048661949" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bc42294a4a6d" + }, + { + "_tag": "ByteArray", + "bytearray": "e156fd895d517e6f" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3688541832758317144" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14114925891430417843" + } + }, + { + "_tag": "ByteArray", + "bytearray": "77f2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12497688795372697812" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d576369c6bc872f12c55" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "59" + } + ] + }, + "cborHex": "d905069fbf1b67b3f87e0c7ccafb433ae66f1ba554f99da6a1915d1b136a3d9c7783e1c51be287674941c7c5491b0163d5abd2b64a49ffd8669f1baaa93ff49d50e9429fd8669f1b2cc71c2e8feff5e89f1be1b8fc9679fbd33c1bf9cc648b2fd4b2e21b323e9f5c9e68eba01bd667d1763e49a994439ec4ebffffd8669f1b3320f4af180775bd9f46bc42294a4a6d48e156fd895d517e6fffffa09f1b3330554110ba50581bc3e24a506dac85b34277f21bad70b5be6991b8d44ad576369c6bc872f12c55ffffff4159ff", + "cborBytes": [ + 217, 5, 6, 159, 191, 27, 103, 179, 248, 126, 12, 124, 202, 251, 67, 58, 230, 111, 27, 165, 84, 249, 157, 166, 161, + 145, 93, 27, 19, 106, 61, 156, 119, 131, 225, 197, 27, 226, 135, 103, 73, 65, 199, 197, 73, 27, 1, 99, 213, 171, + 210, 182, 74, 73, 255, 216, 102, 159, 27, 170, 169, 63, 244, 157, 80, 233, 66, 159, 216, 102, 159, 27, 44, 199, + 28, 46, 143, 239, 245, 232, 159, 27, 225, 184, 252, 150, 121, 251, 211, 60, 27, 249, 204, 100, 139, 47, 212, 178, + 226, 27, 50, 62, 159, 92, 158, 104, 235, 160, 27, 214, 103, 209, 118, 62, 73, 169, 148, 67, 158, 196, 235, 255, + 255, 216, 102, 159, 27, 51, 32, 244, 175, 24, 7, 117, 189, 159, 70, 188, 66, 41, 74, 74, 109, 72, 225, 86, 253, + 137, 93, 81, 126, 111, 255, 255, 160, 159, 27, 51, 48, 85, 65, 16, 186, 80, 88, 27, 195, 226, 74, 80, 109, 172, + 133, 179, 66, 119, 242, 27, 173, 112, 181, 190, 105, 145, 184, 212, 74, 213, 118, 54, 156, 107, 200, 114, 241, 44, + 85, 255, 255, 255, 65, 89, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2482, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18269463630228145323" + }, + "fields": [] + }, + "cborHex": "d8669f1bfd8a2c603caac4ab80ff", + "cborBytes": [216, 102, 159, 27, 253, 138, 44, 96, 60, 170, 196, 171, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2483, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87276ecd8225110335" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9562603283817499655" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9e35d04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17900871459882626348" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f82ee47eaa0efe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3fb58b1a2c3" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "56130fc6c5057b7264" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f88ba26fb97" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c8e42dfa3742e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cf84a8c5e9f8fc6463904" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16909931381452259927" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6714540484405846797" + } + }, + { + "_tag": "ByteArray", + "bytearray": "61b5c545" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "390677247541923375" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "211987079487297929" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79fd8669f1bffffffffffffffef9fbf423d0f41034987276ecd82251103351b84b5310593ed0c0744a9e35d041bf86cabbff83b6d2c47f82ee47eaa0efe46a3fb58b1a2c3ffbf4956130fc6c5057b7264465f88ba26fb97478c8e42dfa3742e4b9cf84a8c5e9f8fc646390441e31beaac24ffafb14257ff9f1b5d2ed6fed2fd630d4461b5c5451b056bf6e301904e2f1b02f1212029d01989ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 239, 159, 191, 66, 61, 15, 65, 3, 73, 135, 39, 110, 205, 130, 37, 17, 3, 53, 27, 132, 181, 49, 5, 147, 237, + 12, 7, 68, 169, 227, 93, 4, 27, 248, 108, 171, 191, 248, 59, 109, 44, 71, 248, 46, 228, 126, 170, 14, 254, 70, + 163, 251, 88, 177, 162, 195, 255, 191, 73, 86, 19, 15, 198, 197, 5, 123, 114, 100, 70, 95, 136, 186, 38, 251, 151, + 71, 140, 142, 66, 223, 163, 116, 46, 75, 156, 248, 74, 140, 94, 159, 143, 198, 70, 57, 4, 65, 227, 27, 234, 172, + 36, 255, 175, 177, 66, 87, 255, 159, 27, 93, 46, 214, 254, 210, 253, 99, 13, 68, 97, 181, 197, 69, 27, 5, 107, + 246, 227, 1, 144, 78, 47, 27, 2, 241, 33, 32, 41, 208, 25, 137, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2484, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8488371968703002030" + } + }, + "cborHex": "1b75ccc1550becf5ae", + "cborBytes": [27, 117, 204, 193, 85, 11, 236, 245, 174], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2485, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18068487759667321925" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13923960238482259648" + } + } + ] + }, + "cborHex": "d8669f1bfac029e2ef76dc459f1bc13bd8108965fec0ffff", + "cborBytes": [ + 216, 102, 159, 27, 250, 192, 41, 226, 239, 118, 220, 69, 159, 27, 193, 59, 216, 16, 137, 101, 254, 192, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2486, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2325902027629945657" + } + }, + "cborHex": "1b204743922b3e6339", + "cborBytes": [27, 32, 71, 67, 146, 43, 62, 99, 57], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2487, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16799869360383056612" + }, + "fields": [] + }, + "cborHex": "d8669f1be925202c7a99dae480ff", + "cborBytes": [216, 102, 159, 27, 233, 37, 32, 44, 122, 153, 218, 228, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2488, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8cd9fd6637c4840919f146" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7f1ba86d6aa57c" + }, + { + "_tag": "ByteArray", + "bytearray": "541df5c94a80c50a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7826569273623925095" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13789478590023220696" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6194287119995094822" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15281068903567535536" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1134485105720275275" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2546095896557894375" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13079689094185107124" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5affbac7800d5739963cfd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18265801830490027814" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2194449760613298989" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9ec9b8f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11696163168882702750" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db2cc83340" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17685854297735371202" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "817838dd8b08" + }, + { + "_tag": "ByteArray", + "bytearray": "51de0557b23597c1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12974501223929268431" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6284481451784586993" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12216709891217237921" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10117428762878556850" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16222108815741245978" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ef6868bb018" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16241912702851036824" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17190259432476628779" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6172779178774020419" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7080904847284634437" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2220930390844026198" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18371181631607186834" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11675379333476131553" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11245574364135244768" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "552866225237412598" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12711914755581527430" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17599713236105164060" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8254376990f58d272" + }, + { + "_tag": "ByteArray", + "bytearray": "09" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17203395490899741228" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11755527098603448805" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f4b8cd9fd6637c4840919f1469f477f1ba86d6aa57c48541df5c94a80c50a1b6c9d8f49945751671bbf5e11b7c4303dd81b55f687512015c726ff1bd411433489692db0bf1b0fbe8031616db14b1b23558cba6669bae71bb58463ee97743eb44b5affbac7800d5739963cfd1bfd7d29fd0c09b7264100ffa0ffbf1b1e74406e3acbf32d44f9ec9b8f1ba2511e6ee442b99e45db2cc83340ffd8669f1bf570c6c7b5d519c29f46817838dd8b084851de0557b23597c19f1bb40eb01f0e2cc8cfff1b5736f6957326c6f1bf1ba98a78eb4e0127a11b8c6853dafbb23ab21be1208204fdfd5a1a467ef6868bb0181be166dd8cc65736981bee9011e03d93d72bffffff9fd8669f1b55aa1df553c0c1439f41271b62446d713ebe03451b1ed2546c6920ad561bfef38c5bf820a5921ba20747a51dc822e1ffff1b9c104e4d758543e01b07ac2ce713964af69f1bb069cb1e9d7bc5861bf43ebdf0e2c9f51c49c8254376990f58d2724109ffd8669f1beebebd0d2da2ca2c9f1ba324059cdbbca9e5ffffffff", + "cborBytes": [ + 159, 159, 75, 140, 217, 253, 102, 55, 196, 132, 9, 25, 241, 70, 159, 71, 127, 27, 168, 109, 106, 165, 124, 72, 84, + 29, 245, 201, 74, 128, 197, 10, 27, 108, 157, 143, 73, 148, 87, 81, 103, 27, 191, 94, 17, 183, 196, 48, 61, 216, + 27, 85, 246, 135, 81, 32, 21, 199, 38, 255, 27, 212, 17, 67, 52, 137, 105, 45, 176, 191, 27, 15, 190, 128, 49, 97, + 109, 177, 75, 27, 35, 85, 140, 186, 102, 105, 186, 231, 27, 181, 132, 99, 238, 151, 116, 62, 180, 75, 90, 255, + 186, 199, 128, 13, 87, 57, 150, 60, 253, 27, 253, 125, 41, 253, 12, 9, 183, 38, 65, 0, 255, 160, 255, 191, 27, 30, + 116, 64, 110, 58, 203, 243, 45, 68, 249, 236, 155, 143, 27, 162, 81, 30, 110, 228, 66, 185, 158, 69, 219, 44, 200, + 51, 64, 255, 216, 102, 159, 27, 245, 112, 198, 199, 181, 213, 25, 194, 159, 70, 129, 120, 56, 221, 139, 8, 72, 81, + 222, 5, 87, 178, 53, 151, 193, 159, 27, 180, 14, 176, 31, 14, 44, 200, 207, 255, 27, 87, 54, 246, 149, 115, 38, + 198, 241, 191, 27, 169, 138, 120, 235, 78, 1, 39, 161, 27, 140, 104, 83, 218, 251, 178, 58, 178, 27, 225, 32, 130, + 4, 253, 253, 90, 26, 70, 126, 246, 134, 139, 176, 24, 27, 225, 102, 221, 140, 198, 87, 54, 152, 27, 238, 144, 17, + 224, 61, 147, 215, 43, 255, 255, 255, 159, 216, 102, 159, 27, 85, 170, 29, 245, 83, 192, 193, 67, 159, 65, 39, 27, + 98, 68, 109, 113, 62, 190, 3, 69, 27, 30, 210, 84, 108, 105, 32, 173, 86, 27, 254, 243, 140, 91, 248, 32, 165, + 146, 27, 162, 7, 71, 165, 29, 200, 34, 225, 255, 255, 27, 156, 16, 78, 77, 117, 133, 67, 224, 27, 7, 172, 44, 231, + 19, 150, 74, 246, 159, 27, 176, 105, 203, 30, 157, 123, 197, 134, 27, 244, 62, 189, 240, 226, 201, 245, 28, 73, + 200, 37, 67, 118, 153, 15, 88, 210, 114, 65, 9, 255, 216, 102, 159, 27, 238, 190, 189, 13, 45, 162, 202, 44, 159, + 27, 163, 36, 5, 156, 219, 188, 169, 229, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2489, + "sample": { + "_tag": "ByteArray", + "bytearray": "98" + }, + "cborHex": "4198", + "cborBytes": [65, 152], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2490, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cc1e0fa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17903974234163505995" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4865" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2518214540685691712" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5481819b6168d8a5466d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2221764312855642664" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e64ce8b611db664c5f1686" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3524451793284006152" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "511105930134676535" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7833eaaa7a94ccbf" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12953820439979724798" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f28" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6cf7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b38e6ea5e6ffaf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9934210822796438877" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89d3b20e952f31c9704896" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7075954083747149466" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4950572713614984302" + } + } + ] + } + } + ] + }, + "cborHex": "bf441cc1e0fad8669f1bf877b1b4e70feb4b80ff424865d8669f1b22f27ec85dcb4b409f4a5481819b6168d8a5466d1b1ed54adf026682284be64ce8b611db664c5f16861b30e95e3b8eae81081b0717d022b045e437ffff487833eaaa7a94ccbfbf1bb3c5370ed12f8ffe426f284206c1426cf747b38e6ea5e6ffaf1b89dd681c109f6d5dff4b89d3b20e952f31c9704896d8669f1b6232d6bfc8b9369a9f1b44b3f7a75dc3446effffff", + "cborBytes": [ + 191, 68, 28, 193, 224, 250, 216, 102, 159, 27, 248, 119, 177, 180, 231, 15, 235, 75, 128, 255, 66, 72, 101, 216, + 102, 159, 27, 34, 242, 126, 200, 93, 203, 75, 64, 159, 74, 84, 129, 129, 155, 97, 104, 216, 165, 70, 109, 27, 30, + 213, 74, 223, 2, 102, 130, 40, 75, 230, 76, 232, 182, 17, 219, 102, 76, 95, 22, 134, 27, 48, 233, 94, 59, 142, + 174, 129, 8, 27, 7, 23, 208, 34, 176, 69, 228, 55, 255, 255, 72, 120, 51, 234, 170, 122, 148, 204, 191, 191, 27, + 179, 197, 55, 14, 209, 47, 143, 254, 66, 111, 40, 66, 6, 193, 66, 108, 247, 71, 179, 142, 110, 165, 230, 255, 175, + 27, 137, 221, 104, 28, 16, 159, 109, 93, 255, 75, 137, 211, 178, 14, 149, 47, 49, 201, 112, 72, 150, 216, 102, + 159, 27, 98, 50, 214, 191, 200, 185, 54, 154, 159, 27, 68, 179, 247, 167, 93, 195, 68, 110, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2491, + "sample": { + "_tag": "ByteArray", + "bytearray": "22" + }, + "cborHex": "4122", + "cborBytes": [65, 34], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2492, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "283564703563657310" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1581208055476408846" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d124b69" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56d34056209d17f539" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55fdf13f4a88434aa53412" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16566096999909577682" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7849565389329466307" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15389869605258433526" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "421f38ac0c68af0af40663" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6965276168174969949" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5989882015600514128" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9797897444536772957" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e627" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18139505947130030165" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2026515884754949073" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b03ef6c9872c0305e9fbf1b15f194594ea8520e445d124b694956d34056209d17f5394b55fdf13f4a88434aa53412ff1be5e69973524653d2d8669f1b6cef4222002f03c39fd8669f1bd593ccddf10293f69f4b421f38ac0c68af0af40663ffffffffa0d8669f1b60a9a1c57690245d9f9f1b532055f51a5e94501b87f91fd07752695d42e6271bfbbc788d3bc568551b1c1fa175d28153d1ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 3, 239, 108, 152, 114, 192, 48, 94, 159, 191, 27, 21, 241, 148, 89, 78, 168, 82, 14, 68, 93, + 18, 75, 105, 73, 86, 211, 64, 86, 32, 157, 23, 245, 57, 75, 85, 253, 241, 63, 74, 136, 67, 74, 165, 52, 18, 255, + 27, 229, 230, 153, 115, 82, 70, 83, 210, 216, 102, 159, 27, 108, 239, 66, 34, 0, 47, 3, 195, 159, 216, 102, 159, + 27, 213, 147, 204, 221, 241, 2, 147, 246, 159, 75, 66, 31, 56, 172, 12, 104, 175, 10, 244, 6, 99, 255, 255, 255, + 255, 160, 216, 102, 159, 27, 96, 169, 161, 197, 118, 144, 36, 93, 159, 159, 27, 83, 32, 85, 245, 26, 94, 148, 80, + 27, 135, 249, 31, 208, 119, 82, 105, 93, 66, 230, 39, 27, 251, 188, 120, 141, 59, 197, 104, 85, 27, 28, 31, 161, + 117, 210, 129, 83, 209, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2493, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "576249085028401151" + } + }, + "cborHex": "1b07ff3f7d5f42ffff", + "cborBytes": [27, 7, 255, 63, 125, 95, 66, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2494, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "163617509573765245" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14779791008395043712" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2627479738313320043" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd508da4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8493727568835907617" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8237002499790576256" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12822664797236800619" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bebd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18161531138834083594" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a42967e4d210b0a72e" + } + } + ] + }, + "cborHex": "bf1b02454942112da87d1bcd1c5d9d8de623801b2476aee6a8b3a66b44cd508da41b75dfc838df6810211b724fb621ce059a801bb1f341b21934ac6b42bebd1bfc0ab858cb66af0a49a42967e4d210b0a72eff", + "cborBytes": [ + 191, 27, 2, 69, 73, 66, 17, 45, 168, 125, 27, 205, 28, 93, 157, 141, 230, 35, 128, 27, 36, 118, 174, 230, 168, + 179, 166, 107, 68, 205, 80, 141, 164, 27, 117, 223, 200, 56, 223, 104, 16, 33, 27, 114, 79, 182, 33, 206, 5, 154, + 128, 27, 177, 243, 65, 178, 25, 52, 172, 107, 66, 190, 189, 27, 252, 10, 184, 88, 203, 102, 175, 10, 73, 164, 41, + 103, 228, 210, 16, 176, 167, 46, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2495, + "sample": { + "_tag": "ByteArray", + "bytearray": "8fe4fe000604079b0101" + }, + "cborHex": "4a8fe4fe000604079b0101", + "cborBytes": [74, 143, 228, 254, 0, 6, 4, 7, 155, 1, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2496, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "043ba46a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a18954" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "050b5d879445d918371d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8963665568708375256" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "974081d0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9015654612428277601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbb1bc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d42e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec541416" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f034ca0c8d8f980c9d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d599b93dc38e" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "351d63940c5c04" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4234646918056181546" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff10" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14015764536460216607" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9762718974354981071" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5812784893303304285" + } + } + ] + } + } + ] + }, + "cborHex": "bf44043ba46a43a189544a050b5d879445d918371dbf1b7c655657dc4332d844974081d01b7d1e0a1a5f66476143fbb1bc42d42e44ec54141649f034ca0c8d8f980c9d46d599b93dc38eff47351d63940c5c049f1b3ac47cef93f0ff2a42ff101bc281ff96533a891f1b877c252e9c6500cf1b50ab29102119b05dffff", + "cborBytes": [ + 191, 68, 4, 59, 164, 106, 67, 161, 137, 84, 74, 5, 11, 93, 135, 148, 69, 217, 24, 55, 29, 191, 27, 124, 101, 86, + 87, 220, 67, 50, 216, 68, 151, 64, 129, 208, 27, 125, 30, 10, 26, 95, 102, 71, 97, 67, 251, 177, 188, 66, 212, 46, + 68, 236, 84, 20, 22, 73, 240, 52, 202, 12, 141, 143, 152, 12, 157, 70, 213, 153, 185, 61, 195, 142, 255, 71, 53, + 29, 99, 148, 12, 92, 4, 159, 27, 58, 196, 124, 239, 147, 240, 255, 42, 66, 255, 16, 27, 194, 129, 255, 150, 83, + 58, 137, 31, 27, 135, 124, 37, 46, 156, 101, 0, 207, 27, 80, 171, 41, 16, 33, 25, 176, 93, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2497, + "sample": { + "_tag": "ByteArray", + "bytearray": "7b2c9b060405f902007588" + }, + "cborHex": "4b7b2c9b060405f902007588", + "cborBytes": [75, 123, 44, 155, 6, 4, 5, 249, 2, 0, 117, 136], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2498, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0001ff8c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f9f7a99cdbaa80095b712" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbc2501afef9fb43fb0521aa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a36c5ff45ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1f88e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7788b4b42cec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65f6d6ad86a371" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4c4065241fe05010af9fe3e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6314456898204639143" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c050534f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12981142458356855435" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5293f0a5cf155d6b5e91440c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f40f0b4aecafe935c3eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12637267821840331756" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16068676916711217601" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf440001ff8cbf4b2f9f7a99cdbaa80095b7124cfbc2501afef9fb43fb0521aa465a36c5ff45ae43c1f88e467788b4b42cec4765f6d6ad86a3714cd4c4065241fe05010af9fe3e1b57a17517ef009fa7ff454c050534f81bb4264849f119f28b4c5293f0a5cf155d6b5e91440c4af40f0b4aecafe935c3eb41aebf1baf609820fc4473ec1bdeff68852f1759c1ffff", + "cborBytes": [ + 191, 68, 0, 1, 255, 140, 191, 75, 47, 159, 122, 153, 205, 186, 168, 0, 149, 183, 18, 76, 251, 194, 80, 26, 254, + 249, 251, 67, 251, 5, 33, 170, 70, 90, 54, 197, 255, 69, 174, 67, 193, 248, 142, 70, 119, 136, 180, 180, 44, 236, + 71, 101, 246, 214, 173, 134, 163, 113, 76, 212, 196, 6, 82, 65, 254, 5, 1, 10, 249, 254, 62, 27, 87, 161, 117, 23, + 239, 0, 159, 167, 255, 69, 76, 5, 5, 52, 248, 27, 180, 38, 72, 73, 241, 25, 242, 139, 76, 82, 147, 240, 165, 207, + 21, 93, 107, 94, 145, 68, 12, 74, 244, 15, 11, 74, 236, 175, 233, 53, 195, 235, 65, 174, 191, 27, 175, 96, 152, + 32, 252, 68, 115, 236, 27, 222, 255, 104, 133, 47, 23, 89, 193, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2499, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9332492313492546" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12991887445060489634" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9608431161545077069" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14521589885863826973" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15155639569521665089" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "992594625731339435" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf1b002127da3136fc421bb44c74cc1cb011a21b8558013bd8b0314d1bc9870d1000d1961dff1bd253a5e3f5316441d8669f1b0dc6678d98ada4ab80ffff", + "cborBytes": [ + 159, 191, 27, 0, 33, 39, 218, 49, 54, 252, 66, 27, 180, 76, 116, 204, 28, 176, 17, 162, 27, 133, 88, 1, 59, 216, + 176, 49, 77, 27, 201, 135, 13, 16, 0, 209, 150, 29, 255, 27, 210, 83, 165, 227, 245, 49, 100, 65, 216, 102, 159, + 27, 13, 198, 103, 141, 152, 173, 164, 171, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2500, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17050464637234237256" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "208cbf15b431" + }, + { + "_tag": "ByteArray", + "bytearray": "c99636e3db41445fa256b8" + }, + { + "_tag": "ByteArray", + "bytearray": "8a32e0a421149969b90eee" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b7f8eb3117b663e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfd218" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b8f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "75068240973719717" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7086f5354a2f399da7b96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4a63525135922f5be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f77750" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14905626376423209155" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15614416497755865010" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6609334538719612575" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dbc1409ce8ff73dfbdc1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10514774146451997820" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2041623329688109714" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b409" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6614739752958421719" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3496066783895442686" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7387959282236984616" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10610098361730620220" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10315067153837644992" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9269af86a70e39dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10653180660944339353" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d636877eabc354e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12570380675350753769" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "494203045aa1d7" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2511952594448757307" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6d22e81a46" + }, + { + "_tag": "ByteArray", + "bytearray": "30d03306971a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4369525820966726773" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5079d0d516dd26cddd66eb22" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bec9f6b4015b4cf489f9f46208cbf15b4314bc99636e3db41445fa256b84b8a32e0a421149969b90eeeffbf486b7f8eb3117b663e43dfd218428b8f1b010ab22add26e8a54be7086f5354a2f399da7b9649a4a63525135922f5be43f7775041b0ffd8669f1bcedb6c374965f8c39f1bd8b18d1373bcbfb21b5bb912bec61a4e9fffff4adbc1409ce8ff73dfbdc1ffffd8669f1b91ebfb6064bb847c9fbf1b1c554d99f335c29242b4091b5bcc46c248bdead71b308486378d2154fe1b66874dd2f8c90d281b933ea43ecae85b3c1b8f267aecc2cadcc0489269af86a70e39dd1b93d7b35e3fa6019948d636877eabc354e91bae72f69f9db771e947494203045aa1d7ffd8669f1b22dc3f9364bd323b9f456d22e81a464630d03306971a1b3ca3ac955b9e6c75ffff4c5079d0d516dd26cddd66eb22ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 236, 159, 107, 64, 21, 180, 207, 72, 159, 159, 70, 32, 140, 191, 21, 180, 49, 75, 201, + 150, 54, 227, 219, 65, 68, 95, 162, 86, 184, 75, 138, 50, 224, 164, 33, 20, 153, 105, 185, 14, 238, 255, 191, 72, + 107, 127, 142, 179, 17, 123, 102, 62, 67, 223, 210, 24, 66, 139, 143, 27, 1, 10, 178, 42, 221, 38, 232, 165, 75, + 231, 8, 111, 83, 84, 162, 243, 153, 218, 123, 150, 73, 164, 166, 53, 37, 19, 89, 34, 245, 190, 67, 247, 119, 80, + 65, 176, 255, 216, 102, 159, 27, 206, 219, 108, 55, 73, 101, 248, 195, 159, 27, 216, 177, 141, 19, 115, 188, 191, + 178, 27, 91, 185, 18, 190, 198, 26, 78, 159, 255, 255, 74, 219, 193, 64, 156, 232, 255, 115, 223, 189, 193, 255, + 255, 216, 102, 159, 27, 145, 235, 251, 96, 100, 187, 132, 124, 159, 191, 27, 28, 85, 77, 153, 243, 53, 194, 146, + 66, 180, 9, 27, 91, 204, 70, 194, 72, 189, 234, 215, 27, 48, 132, 134, 55, 141, 33, 84, 254, 27, 102, 135, 77, + 210, 248, 201, 13, 40, 27, 147, 62, 164, 62, 202, 232, 91, 60, 27, 143, 38, 122, 236, 194, 202, 220, 192, 72, 146, + 105, 175, 134, 167, 14, 57, 221, 27, 147, 215, 179, 94, 63, 166, 1, 153, 72, 214, 54, 135, 126, 171, 195, 84, 233, + 27, 174, 114, 246, 159, 157, 183, 113, 233, 71, 73, 66, 3, 4, 90, 161, 215, 255, 216, 102, 159, 27, 34, 220, 63, + 147, 100, 189, 50, 59, 159, 69, 109, 34, 232, 26, 70, 70, 48, 208, 51, 6, 151, 26, 27, 60, 163, 172, 149, 91, 158, + 108, 117, 255, 255, 76, 80, 121, 208, 213, 22, 221, 38, 205, 221, 102, 235, 34, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2501, + "sample": { + "_tag": "ByteArray", + "bytearray": "b3dec187" + }, + "cborHex": "44b3dec187", + "cborBytes": [68, 179, 222, 193, 135], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2502, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41a21afa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8548758486401924374" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "73c6ff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + } + } + ] + }, + "cborHex": "bf4441a21afad8669f1b76a34a8cd497bd169f4373c6ff13ffffff", + "cborBytes": [ + 191, 68, 65, 162, 26, 250, 216, 102, 159, 27, 118, 163, 74, 140, 212, 151, 189, 22, 159, 67, 115, 198, 255, 19, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2503, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3064584929769469729" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13339701925562613218" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1a2b477c6940101a9e3f8c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17606169143373598527" + } + } + ] + }, + "cborHex": "d8669f1b2a8797c1baecb7219f1bb92024397ac0fde29f4b1a2b477c6940101a9e3f8cff1bf455ad8dee3a0f3fffff", + "cborBytes": [ + 216, 102, 159, 27, 42, 135, 151, 193, 186, 236, 183, 33, 159, 27, 185, 32, 36, 57, 122, 192, 253, 226, 159, 75, + 26, 43, 71, 124, 105, 64, 16, 26, 158, 63, 140, 255, 27, 244, 85, 173, 141, 238, 58, 15, 63, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2504, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1707064119838863370" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d87d9f1b17b0b5c5c7cf700aa0ff", + "cborBytes": [216, 125, 159, 27, 23, 176, 181, 197, 199, 207, 112, 10, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2505, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5371838734536736493" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b4a8c9ade2abefeeda0ff", + "cborBytes": [191, 27, 74, 140, 154, 222, 42, 190, 254, 237, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2506, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "152930404081820180" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "700c6e1c5146c5e9d174a30c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18046169497315814884" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "917a9021cd7020" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14020926522388797869" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13136078685016936889" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11870589837686668499" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d389fb03fd6526ab87" + }, + { + "_tag": "ByteArray", + "bytearray": "0b7a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10518209759186769961" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13118464435483309815" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "50d6b1f0cd" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9fd8669f1b021f51646aa762149f4c700c6e1c5146c5e9d174a30cd8669f1bfa70df8b8bffade49f47917a9021cd70201bc2945662d4d659adffffd8669f1bb64cb9f75203d1b99f1ba4bcce9075acfcd349d389fb03fd6526ab87420b7a1b91f8300c515fd8291bb60e25e64393f6f7ffff4550d6b1f0cdffffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 216, 102, 159, 27, 2, 31, 81, 100, 106, 167, 98, + 20, 159, 76, 112, 12, 110, 28, 81, 70, 197, 233, 209, 116, 163, 12, 216, 102, 159, 27, 250, 112, 223, 139, 139, + 255, 173, 228, 159, 71, 145, 122, 144, 33, 205, 112, 32, 27, 194, 148, 86, 98, 212, 214, 89, 173, 255, 255, 216, + 102, 159, 27, 182, 76, 185, 247, 82, 3, 209, 185, 159, 27, 164, 188, 206, 144, 117, 172, 252, 211, 73, 211, 137, + 251, 3, 253, 101, 38, 171, 135, 66, 11, 122, 27, 145, 248, 48, 12, 81, 95, 216, 41, 27, 182, 14, 37, 230, 67, 147, + 246, 247, 255, 255, 69, 80, 214, 177, 240, 205, 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2507, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9578149184951075837" + } + }, + "cborHex": "1b84ec6befbeb4c3fd", + "cborBytes": [27, 132, 236, 107, 239, 190, 180, 195, 253], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2508, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53ac0609" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2171cfce7d8abed2b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6ab0968f903cabb3f13" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0129c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "babcd37956ba" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + ] + }, + "cborHex": "d87f9fbf41dc4453ac060949e2171cfce7d8abed2b4ad6ab0968f903cabb3f1343f0129c46babcd37956baff1bfffffffffffffff5ff", + "cborBytes": [ + 216, 127, 159, 191, 65, 220, 68, 83, 172, 6, 9, 73, 226, 23, 28, 252, 231, 216, 171, 237, 43, 74, 214, 171, 9, + 104, 249, 3, 202, 187, 63, 19, 67, 240, 18, 156, 70, 186, 188, 211, 121, 86, 186, 255, 27, 255, 255, 255, 255, + 255, 255, 255, 245, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2509, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3578277404770529889" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5879351565128957367" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6745715041965847333" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5958753948486629209" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6281e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8755254741988295501" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "643682810843355569" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9292716368893253722" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "578a97c4a6a1" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b31a89857532772611b5197a7192d25fdb71b5d9d981720623325bf1b52b1bf253380775943e6281e1b7980e9ccee44434d1b08eed21b2857d9b11b80f65c4d7657185a46578a97c4a6a1ffff", + "cborBytes": [ + 191, 27, 49, 168, 152, 87, 83, 39, 114, 97, 27, 81, 151, 167, 25, 45, 37, 253, 183, 27, 93, 157, 152, 23, 32, 98, + 51, 37, 191, 27, 82, 177, 191, 37, 51, 128, 119, 89, 67, 230, 40, 30, 27, 121, 128, 233, 204, 238, 68, 67, 77, 27, + 8, 238, 210, 27, 40, 87, 217, 177, 27, 128, 246, 92, 77, 118, 87, 24, 90, 70, 87, 138, 151, 196, 166, 161, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2510, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9345746426852734698" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13789007134135126807" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10079566113732174623" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3935979518576664252" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9212610697174857673" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15380973248617787203" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e6e8f6dbef72dc1b8da0d" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5917520d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9605668352929204296" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b81b2c2dbfd6ef6ea9fd8669f1bbf5c64ee63738b179f801b8be1cffa0312231fbf1b369f6884b7f99ebc1b7fd9c49e5b1237c91bd57431ad7fa62f434b2e6e8f6dbef72dc1b8da0dff445917520d1b854e3079568e8848ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 129, 178, 194, 219, 253, 110, 246, 234, 159, 216, 102, 159, 27, 191, 92, 100, 238, 99, 115, + 139, 23, 159, 128, 27, 139, 225, 207, 250, 3, 18, 35, 31, 191, 27, 54, 159, 104, 132, 183, 249, 158, 188, 27, 127, + 217, 196, 158, 91, 18, 55, 201, 27, 213, 116, 49, 173, 127, 166, 47, 67, 75, 46, 110, 143, 109, 190, 247, 45, 193, + 184, 218, 13, 255, 68, 89, 23, 82, 13, 27, 133, 78, 48, 121, 86, 142, 136, 72, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2511, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c93acc39dc3c09674c4179" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1459672331495375716" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4171634597117642099" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8458050362415867991" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f54d8819f7f5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10319462083549711109" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9779064402158903606" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10707335967769247684" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "338a7c9e3ad576" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14439317064694255469" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85fb7151928534524ee2b1" + } + } + ] + } + ] + }, + "cborHex": "d905059fbf4bc93acc39dc3c09674c41791b1441cc40773f8364ff1b39e49f9055ed4573bf1b756107fdf029685746f54d8819f7f51b8f3618171317cb051b87b63743165961361b9498195531a63fc447338a7c9e3ad5761bc862c25e18564f6d4b85fb7151928534524ee2b1ffff", + "cborBytes": [ + 217, 5, 5, 159, 191, 75, 201, 58, 204, 57, 220, 60, 9, 103, 76, 65, 121, 27, 20, 65, 204, 64, 119, 63, 131, 100, + 255, 27, 57, 228, 159, 144, 85, 237, 69, 115, 191, 27, 117, 97, 7, 253, 240, 41, 104, 87, 70, 245, 77, 136, 25, + 247, 245, 27, 143, 54, 24, 23, 19, 23, 203, 5, 27, 135, 182, 55, 67, 22, 89, 97, 54, 27, 148, 152, 25, 85, 49, + 166, 63, 196, 71, 51, 138, 124, 158, 58, 213, 118, 27, 200, 98, 194, 94, 24, 86, 79, 109, 75, 133, 251, 113, 81, + 146, 133, 52, 82, 78, 226, 177, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2512, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "64" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11976279176109168144" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11690039442521346948" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4164d9050d9f1ba6344a7526e51610ff41fdd8669f1ba23b5cefbdca538480ffff", + "cborBytes": [ + 191, 65, 100, 217, 5, 13, 159, 27, 166, 52, 74, 117, 38, 229, 22, 16, 255, 65, 253, 216, 102, 159, 27, 162, 59, + 92, 239, 189, 202, 83, 132, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2513, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6520881647661327473" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d87c9fa0d8669f1bfffffffffffffff29fd8669f1b5a7ed34f3737a47180ffffffff", + "cborBytes": [ + 216, 124, 159, 160, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 216, 102, 159, 27, 90, 126, + 211, 79, 55, 55, 164, 113, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2514, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13952115270377080405" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bc19fdeeabc21065580ffff", + "cborBytes": [159, 216, 102, 159, 27, 193, 159, 222, 234, 188, 33, 6, 85, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2515, + "sample": { + "_tag": "ByteArray", + "bytearray": "905a950228" + }, + "cborHex": "45905a950228", + "cborBytes": [69, 144, 90, 149, 2, 40], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2516, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7925135526350433932" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14420788040578033411" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03866e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7193643927960526201" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "511f34f5fa6fdb41be8ddfa4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2793282804653003909" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db867e1bc9b468ec10f73d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85b754d7a00d915a74bb65" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fba936f93b4d4fc35eedf66a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dae2b469e0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fed2a4bc2fb2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d923822ad870" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15918587606144884730" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09a5d845ed2f2ff29c9ca0a0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6567" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f3a1260811676" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4c4621ddddd940f42" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6dfbbcc5a4f22e8ca01bc820ee517bdae703bf4303866e1b63d4f509f6bb9d794c511f34f5fa6fdb41be8ddfa41b26c3bbe9508c94854bdb867e1bc9b468ec10f73d4b85b754d7a00d915a74bb654cfba936f93b4d4fc35eedf66a45dae2b469e046fed2a4bc2fb246d923822ad870ff1bdcea2f1666339ffabf4c09a5d845ed2f2ff29c9ca0a0426567476f3a126081167649d4c4621ddddd940f42ffff", + "cborBytes": [ + 191, 27, 109, 251, 188, 197, 164, 242, 46, 140, 160, 27, 200, 32, 238, 81, 123, 218, 231, 3, 191, 67, 3, 134, 110, + 27, 99, 212, 245, 9, 246, 187, 157, 121, 76, 81, 31, 52, 245, 250, 111, 219, 65, 190, 141, 223, 164, 27, 38, 195, + 187, 233, 80, 140, 148, 133, 75, 219, 134, 126, 27, 201, 180, 104, 236, 16, 247, 61, 75, 133, 183, 84, 215, 160, + 13, 145, 90, 116, 187, 101, 76, 251, 169, 54, 249, 59, 77, 79, 195, 94, 237, 246, 106, 69, 218, 226, 180, 105, + 224, 70, 254, 210, 164, 188, 47, 178, 70, 217, 35, 130, 42, 216, 112, 255, 27, 220, 234, 47, 22, 102, 51, 159, + 250, 191, 76, 9, 165, 216, 69, 237, 47, 47, 242, 156, 156, 160, 160, 66, 101, 103, 71, 111, 58, 18, 96, 129, 22, + 118, 73, 212, 196, 98, 29, 221, 221, 148, 15, 66, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2517, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5367524380578798661" + } + }, + "cborHex": "1b4a7d46fc5ba5dc45", + "cborBytes": [27, 74, 125, 70, 252, 91, 165, 220, 69], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2518, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7348975144181941972" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f39ba5a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f904dd0103f9b640" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3211914754244883517" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b65fccdf50423c6d4443f39ba5a1bffffffffffffffee9f48f904dd0103f9b6401b2c930373979a343dffff", + "cborBytes": [ + 191, 27, 101, 252, 205, 245, 4, 35, 198, 212, 68, 63, 57, 186, 90, 27, 255, 255, 255, 255, 255, 255, 255, 238, + 159, 72, 249, 4, 221, 1, 3, 249, 182, 64, 27, 44, 147, 3, 115, 151, 154, 52, 61, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2519, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d892" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + "cborHex": "9fbf42d89212ff0bff", + "cborBytes": [159, 191, 66, 216, 146, 18, 255, 11, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2520, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10432697820817269730" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4a9b7" + } + } + ] + }, + "cborHex": "bf1b90c86364aace23e243a4a9b7ff", + "cborBytes": [191, 27, 144, 200, 99, 100, 170, 206, 35, 226, 67, 164, 169, 183, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2521, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17679127984404497309" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2e08646df1817232a8850c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14629692362684910414" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f31f1bcd5e3f72b2" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8292287587255654919" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15729394255744125" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02613352230aee585c579437" + }, + { + "_tag": "ByteArray", + "bytearray": "c4f3a304f183f6b5070070" + }, + { + "_tag": "ByteArray", + "bytearray": "8e4473" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8795921019978031751" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14828135185493774563" + } + }, + { + "_tag": "ByteArray", + "bytearray": "84bc2c46790e834f3349e7" + }, + { + "_tag": "ByteArray", + "bytearray": "6af9bee0a3ad8d04" + }, + { + "_tag": "ByteArray", + "bytearray": "f3fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13166917449400649992" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "875735128404142103" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f50a" + }, + { + "_tag": "ByteArray", + "bytearray": "bba8e1291099fa639b" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14035117972378927703" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f02332d518d16baf4df3ab" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1bf558e13bd919039d9f4b2e08646df1817232a8850cffffd8669f1bcb071bb143144b4e9f48f31f1bcd5e3f72b2ffffd8669f1b73141fa04dc11a079f41b81b0037e1ccfd254c7d4c02613352230aee585c5794374bc4f3a304f183f6b5070070438e4473ffffd8669f1b7a1163909c2ea2879f1bcdc81e636cd3d0e34b84bc2c46790e834f3349e7486af9bee0a3ad8d0442f3fa1bb6ba49a8ae6b0908ffff9f1b0c273c759ddc281742f50a49bba8e1291099fa639bffffd8669f1bc2c6c16f4458c2579f9f4bf02332d518d16baf4df3abffa0ffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 245, 88, 225, 59, 217, 25, 3, 157, 159, 75, 46, 8, 100, 109, 241, 129, 114, 50, 168, + 133, 12, 255, 255, 216, 102, 159, 27, 203, 7, 27, 177, 67, 20, 75, 78, 159, 72, 243, 31, 27, 205, 94, 63, 114, + 178, 255, 255, 216, 102, 159, 27, 115, 20, 31, 160, 77, 193, 26, 7, 159, 65, 184, 27, 0, 55, 225, 204, 253, 37, + 76, 125, 76, 2, 97, 51, 82, 35, 10, 238, 88, 92, 87, 148, 55, 75, 196, 243, 163, 4, 241, 131, 246, 181, 7, 0, 112, + 67, 142, 68, 115, 255, 255, 216, 102, 159, 27, 122, 17, 99, 144, 156, 46, 162, 135, 159, 27, 205, 200, 30, 99, + 108, 211, 208, 227, 75, 132, 188, 44, 70, 121, 14, 131, 79, 51, 73, 231, 72, 106, 249, 190, 224, 163, 173, 141, 4, + 66, 243, 250, 27, 182, 186, 73, 168, 174, 107, 9, 8, 255, 255, 159, 27, 12, 39, 60, 117, 157, 220, 40, 23, 66, + 245, 10, 73, 187, 168, 225, 41, 16, 153, 250, 99, 155, 255, 255, 216, 102, 159, 27, 194, 198, 193, 111, 68, 88, + 194, 87, 159, 159, 75, 240, 35, 50, 213, 24, 209, 107, 175, 77, 243, 171, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2522, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9768425324515684888" + } + } + ] + }, + "cborHex": "9f1b87906b13caaff218ff", + "cborBytes": [159, 27, 135, 144, 107, 19, 202, 175, 242, 24, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2523, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "041f80e4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcc5f048" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a5c61b338" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1daf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8358982901181591113" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24cdfef4cb2f880bd1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5eea587342fc7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27c50424a4450fd46fad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14039270745015838906" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efc6b2477d50902666b7844b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "add7dc8ffdc623f096e73027" + } + } + ] + } + ] + }, + "cborHex": "9fbf44041f80e444fcc5f048450a5c61b33842d9c7421daf1b740112a92c7e2e494924cdfef4cb2f880bd147d5eea587342fc74a27c50424a4450fd46fad1bc2d5825bfe33e8ba4cefc6b2477d50902666b7844b4cadd7dc8ffdc623f096e73027ffff", + "cborBytes": [ + 159, 191, 68, 4, 31, 128, 228, 68, 252, 197, 240, 72, 69, 10, 92, 97, 179, 56, 66, 217, 199, 66, 29, 175, 27, 116, + 1, 18, 169, 44, 126, 46, 73, 73, 36, 205, 254, 244, 203, 47, 136, 11, 209, 71, 213, 238, 165, 135, 52, 47, 199, + 74, 39, 197, 4, 36, 164, 69, 15, 212, 111, 173, 27, 194, 213, 130, 91, 254, 51, 232, 186, 76, 239, 198, 178, 71, + 125, 80, 144, 38, 102, 183, 132, 75, 76, 173, 215, 220, 143, 253, 198, 35, 240, 150, 231, 48, 39, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2524, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11275659214038124396" + } + }, + "cborHex": "1b9c7b30506d1a476c", + "cborBytes": [27, 156, 123, 48, 80, 109, 26, 71, 108], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2525, + "sample": { + "_tag": "ByteArray", + "bytearray": "28caa75941c1f8d019" + }, + "cborHex": "4928caa75941c1f8d019", + "cborBytes": [73, 40, 202, 167, 89, 65, 193, 248, 208, 25], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2526, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1376579175465245352" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17222794805911064442" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15728911569615521177" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13175504563961961755" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3890294337984442209" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9eea1b578ef53b96" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7429420271558731242" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10360697987805721383" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9474346557683812849" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99473789797b05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13953292832081478316" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7185888527420270022" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "280639446764485257" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12942732253562729078" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7142359693695657035" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13017325507127804998" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11664712515891210927" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8166609744712373192" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14928068969784406734" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4058132925572628175" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18048225533806799146" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "405f167214" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "675123327698318331" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1286383054696872661" + } + }, + { + "_tag": "ByteArray", + "bytearray": "707bab09242ec8b253" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8674135997237153155" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17233479727794248740" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2615472983998007001" + } + } + ] + }, + "cborHex": "9fd8669f1b131a977776ce5aa89f9f1bef03a8a02dc58f7aff1bda4851bcba7705999f410d1bb6d8cb98177d9d1bffbf1b35fd1a16b746af61489eea1b578ef53b961b671a9a5fcd5825ea1b8fc897ed3443b3271b837ba3ff39b049f14799473789797b051bc1a40de72f3882ac1b63b9678b1070a5c6ffbf1b03e50817065bfa891bb39dd2693c98f2761b631ec24cb0cc244b1bb4a6d49479fc04461ba1e1623b1cbfaaaf1b7155a04b54d313c81bcf2b27a2be87f2ce1b385162651812becf1bfa782d7fd8b0692a45405f167214ffffff9f1b095e8516ef09b3fb9f1b11da26929c49fad549707bab09242ec8b253ff801b7860b8bb60bfcd831bef299e816b125c24ff1b244c06d252d506d9ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 19, 26, 151, 119, 118, 206, 90, 168, 159, 159, 27, 239, 3, 168, 160, 45, 197, 143, 122, + 255, 27, 218, 72, 81, 188, 186, 119, 5, 153, 159, 65, 13, 27, 182, 216, 203, 152, 23, 125, 157, 27, 255, 191, 27, + 53, 253, 26, 22, 183, 70, 175, 97, 72, 158, 234, 27, 87, 142, 245, 59, 150, 27, 103, 26, 154, 95, 205, 88, 37, + 234, 27, 143, 200, 151, 237, 52, 67, 179, 39, 27, 131, 123, 163, 255, 57, 176, 73, 241, 71, 153, 71, 55, 137, 121, + 123, 5, 27, 193, 164, 13, 231, 47, 56, 130, 172, 27, 99, 185, 103, 139, 16, 112, 165, 198, 255, 191, 27, 3, 229, + 8, 23, 6, 91, 250, 137, 27, 179, 157, 210, 105, 60, 152, 242, 118, 27, 99, 30, 194, 76, 176, 204, 36, 75, 27, 180, + 166, 212, 148, 121, 252, 4, 70, 27, 161, 225, 98, 59, 28, 191, 170, 175, 27, 113, 85, 160, 75, 84, 211, 19, 200, + 27, 207, 43, 39, 162, 190, 135, 242, 206, 27, 56, 81, 98, 101, 24, 18, 190, 207, 27, 250, 120, 45, 127, 216, 176, + 105, 42, 69, 64, 95, 22, 114, 20, 255, 255, 255, 159, 27, 9, 94, 133, 22, 239, 9, 179, 251, 159, 27, 17, 218, 38, + 146, 156, 73, 250, 213, 73, 112, 123, 171, 9, 36, 46, 200, 178, 83, 255, 128, 27, 120, 96, 184, 187, 96, 191, 205, + 131, 27, 239, 41, 158, 129, 107, 18, 92, 36, 255, 27, 36, 76, 6, 210, 82, 213, 6, 217, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2527, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "106956" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6556427715186889520" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f8220702172e" + } + ] + }, + "cborHex": "9f090943106956d8669f1b5afd1c44ff3d933080ff46f8220702172eff", + "cborBytes": [ + 159, 9, 9, 67, 16, 105, 86, 216, 102, 159, 27, 90, 253, 28, 68, 255, 61, 147, 48, 128, 255, 70, 248, 34, 7, 2, 23, + 46, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2528, + "sample": { + "_tag": "ByteArray", + "bytearray": "52c59dc76ce5" + }, + "cborHex": "4652c59dc76ce5", + "cborBytes": [70, 82, 197, 157, 199, 108, 229], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2529, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "440359336631378519" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13029505484452050407" + } + } + } + ] + }, + "cborHex": "bf1b061c787bc970a2571bb4d21a346fc4b5e7ff", + "cborBytes": [191, 27, 6, 28, 120, 123, 201, 112, 162, 87, 27, 180, 210, 26, 52, 111, 196, 181, 231, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2530, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10823591612329755037" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dcc7ca7fe0dbe6deff49" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12189160599433718444" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a135df18" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b96351f39bed0019d4adcc7ca7fe0dbe6deff491ba92898fbf76f2aac44a135df18ffff", + "cborBytes": [ + 159, 191, 27, 150, 53, 31, 57, 190, 208, 1, 157, 74, 220, 199, 202, 127, 224, 219, 230, 222, 255, 73, 27, 169, 40, + 152, 251, 247, 111, 42, 172, 68, 161, 53, 223, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2531, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5729354923511965940" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0101" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0207059e89" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "344260fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6380b3d42ded5d75c663fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fef75624fc2b0ec2d74006" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c594ae1359c177ac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb39b7c1028ffe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b40f8" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4f82c1f29010e8f4bf420101450207059e8944344260fa1bfffffffffffffff14b6380b3d42ded5d75c663fa4bfef75624fc2b0ec2d7400648c594ae1359c177ac416847fb39b7c1028ffe434b40f8ffff", + "cborBytes": [ + 191, 27, 79, 130, 193, 242, 144, 16, 232, 244, 191, 66, 1, 1, 69, 2, 7, 5, 158, 137, 68, 52, 66, 96, 250, 27, 255, + 255, 255, 255, 255, 255, 255, 241, 75, 99, 128, 179, 212, 45, 237, 93, 117, 198, 99, 250, 75, 254, 247, 86, 36, + 252, 43, 14, 194, 215, 64, 6, 72, 197, 148, 174, 19, 89, 193, 119, 172, 65, 104, 71, 251, 57, 183, 193, 2, 143, + 254, 67, 75, 64, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2532, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17023997740023008779" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9407470788855686369" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aa1c84ffb714fd1ce6b4db" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6577170887154182379" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aee9245c9ed28adc93bae5c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16844964471693959253" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f42ab0f58d15571dbbd1fea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "157763022548622714" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48a55e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51f6e9ec6239b4862c" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3861622953418826532" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8497169975178484699" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2877689665709092254" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2956337411683403669" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7aeb8b" + }, + { + "_tag": "ByteArray", + "bytearray": "169eb769cb" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bec4163bf5f1fce0b9f1b828e0cd6ec9b64e19f4baa1c84ffb714fd1ce6b4db9f1b5b46ce1313dda8eb4caee9245c9ed28adc93bae5c41be9c555f04564e0554c7f42ab0f58d15571dbbd1fea1b02307ca215b3dd7affbf4348a55e4951f6e9ec6239b4862cffff9f1b35973d9dcb0623241b75ec03128ea0dbdb1b27ef9b811a672d9ed8669f1b290705366b9647959f437aeb8b45169eb769cbffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 236, 65, 99, 191, 95, 31, 206, 11, 159, 27, 130, 142, 12, 214, 236, 155, 100, 225, 159, 75, + 170, 28, 132, 255, 183, 20, 253, 28, 230, 180, 219, 159, 27, 91, 70, 206, 19, 19, 221, 168, 235, 76, 174, 233, 36, + 92, 158, 210, 138, 220, 147, 186, 229, 196, 27, 233, 197, 85, 240, 69, 100, 224, 85, 76, 127, 66, 171, 15, 88, + 209, 85, 113, 219, 189, 31, 234, 27, 2, 48, 124, 162, 21, 179, 221, 122, 255, 191, 67, 72, 165, 94, 73, 81, 246, + 233, 236, 98, 57, 180, 134, 44, 255, 255, 159, 27, 53, 151, 61, 157, 203, 6, 35, 36, 27, 117, 236, 3, 18, 142, + 160, 219, 219, 27, 39, 239, 155, 129, 26, 103, 45, 158, 216, 102, 159, 27, 41, 7, 5, 54, 107, 150, 71, 149, 159, + 67, 122, 235, 139, 69, 22, 158, 183, 105, 203, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2533, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "42c4518ace4923d2f02272" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3623368828246773443" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "93fe0d7aae6d1c19" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2047610040956969853" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "158620007126354055" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab138b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2265613618944924624" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e2adb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13887013681034268932" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "209cbd12" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10504351131328750171" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13473302160132013003" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15272900459045757520" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9345880758795599960" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7529974999270754711" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9396994323114019365" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13674670793195249303" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16232111024825859196" + } + } + } + ] + } + ] + }, + "cborHex": "9f804b42c4518ace4923d2f02272d8669f1b3248cac079df4ec39f4893fe0d7aae6d1c19ffffd8669f1b1c6a927bc9c3637d9fbf1b0233880e5b09488743ab138b1b1f7113952b7fdbd0433e2adb1bc0b8955dc909910444209cbd12ffbf1b91c6f3b312d2a25b1bbafac8ee162bfbcbffd8669f1bd3f43e0c5752a2509f1b81b33d08952b80581b687fd85dc71b0997ffff9f1b8268d48ca992ca25ffffffbf1bbdc630a288cfde971be1440af9c5727c7cffff", + "cborBytes": [ + 159, 128, 75, 66, 196, 81, 138, 206, 73, 35, 210, 240, 34, 114, 216, 102, 159, 27, 50, 72, 202, 192, 121, 223, 78, + 195, 159, 72, 147, 254, 13, 122, 174, 109, 28, 25, 255, 255, 216, 102, 159, 27, 28, 106, 146, 123, 201, 195, 99, + 125, 159, 191, 27, 2, 51, 136, 14, 91, 9, 72, 135, 67, 171, 19, 139, 27, 31, 113, 19, 149, 43, 127, 219, 208, 67, + 62, 42, 219, 27, 192, 184, 149, 93, 201, 9, 145, 4, 68, 32, 156, 189, 18, 255, 191, 27, 145, 198, 243, 179, 18, + 210, 162, 91, 27, 186, 250, 200, 238, 22, 43, 251, 203, 255, 216, 102, 159, 27, 211, 244, 62, 12, 87, 82, 162, 80, + 159, 27, 129, 179, 61, 8, 149, 43, 128, 88, 27, 104, 127, 216, 93, 199, 27, 9, 151, 255, 255, 159, 27, 130, 104, + 212, 140, 169, 146, 202, 37, 255, 255, 255, 191, 27, 189, 198, 48, 162, 136, 207, 222, 151, 27, 225, 68, 10, 249, + 197, 114, 124, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2534, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "64a9020313" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11826042731021216583" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1712372772860710732" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f4564a9020313d8669f1ba41e8b34f11c2b479fd8669f1b17c391f6e169cf4c80ffffffff", + "cborBytes": [ + 159, 69, 100, 169, 2, 3, 19, 216, 102, 159, 27, 164, 30, 139, 52, 241, 28, 43, 71, 159, 216, 102, 159, 27, 23, + 195, 145, 246, 225, 105, 207, 76, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2535, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8646428015464830886" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15765285140983457784" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7e90144929fc4a27c0c512" + } + ] + }, + "cborHex": "d8669f1b77fe487825c457a69f1bdac98b4ec31027f8a04b7e90144929fc4a27c0c512ffff", + "cborBytes": [ + 216, 102, 159, 27, 119, 254, 72, 120, 37, 196, 87, 166, 159, 27, 218, 201, 139, 78, 195, 16, 39, 248, 160, 75, + 126, 144, 20, 73, 41, 252, 74, 39, 192, 197, 18, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2536, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3653675534122912246" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15089436692260968708" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9100954395500388702" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae6a37" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13919430846967947389" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78b16318aaac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14827677913062003687" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31c1add5573ea008" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16108598303094043639" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb0aacdf81a18e2e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d518e92941838285" + }, + { + "_tag": "ByteArray", + "bytearray": "07" + } + ] + }, + "cborHex": "9fbf1b32b4768a4fee89f61bd16872b96ef5d9041b7e4d15cdc4d4a15e43ae6a371bc12bc09b6523a07d4678b16318aaac1bcdc67e8063f753e74831c1add5573ea0081bdf8d3ccf456173f748eb0aacdf81a18e2eff48d518e929418382854107ff", + "cborBytes": [ + 159, 191, 27, 50, 180, 118, 138, 79, 238, 137, 246, 27, 209, 104, 114, 185, 110, 245, 217, 4, 27, 126, 77, 21, + 205, 196, 212, 161, 94, 67, 174, 106, 55, 27, 193, 43, 192, 155, 101, 35, 160, 125, 70, 120, 177, 99, 24, 170, + 172, 27, 205, 198, 126, 128, 99, 247, 83, 231, 72, 49, 193, 173, 213, 87, 62, 160, 8, 27, 223, 141, 60, 207, 69, + 97, 115, 247, 72, 235, 10, 172, 223, 129, 161, 142, 46, 255, 72, 213, 24, 233, 41, 65, 131, 130, 133, 65, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2537, + "sample": { + "_tag": "ByteArray", + "bytearray": "6381acc22ecac25c" + }, + "cborHex": "486381acc22ecac25c", + "cborBytes": [72, 99, 129, 172, 194, 46, 202, 194, 92], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2538, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae00ae0b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f92ffa49" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13542173754916414762" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10730588075596850909" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0ddec00819b5e0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13315512042771844174" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3809504399965017243" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01fce3025758f2f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c452c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11ac7cdc44bd621f4b81a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0fff9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5290ce50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11275804916731334874" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "997fbf3cc1084785a2dd98" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6394801057555063832" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e33cfca2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe0105" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "533809480895681232" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5877d8d0dcee022c01cef190" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10136910883807252206" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7898467807271952709" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b95436" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "451f9af7e9e001077709" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e07663aa5903c47c4c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5900050845742942761" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + "cborHex": "9fbf44ae00ae0b44f92ffa49ffd8669f1bbbef7747d469252a9f9f1b94eab5006cfe26dd470ddec00819b5e01bb8ca33a77fda0c4e1b34de14117233d49b416cffbf4801fce3025758f2f8437c452c4b11ac7cdc44bd621f4b81a143f0fff9445290ce501b9c7bb4d47a5fd0da4b997fbf3cc1084785a2dd981b58bee5ae44dca41844e33cfca21043fe010513ffffffbf1b076878e50685d2d04c5877d8d0dcee022c01cef1901b8cad8abdbd1f4eee1b6d9cfe9f724da14543b954364a451f9af7e9e00107770949e07663aa5903c47c4c1b51e130fc01404a29ff02ff", + "cborBytes": [ + 159, 191, 68, 174, 0, 174, 11, 68, 249, 47, 250, 73, 255, 216, 102, 159, 27, 187, 239, 119, 71, 212, 105, 37, 42, + 159, 159, 27, 148, 234, 181, 0, 108, 254, 38, 221, 71, 13, 222, 192, 8, 25, 181, 224, 27, 184, 202, 51, 167, 127, + 218, 12, 78, 27, 52, 222, 20, 17, 114, 51, 212, 155, 65, 108, 255, 191, 72, 1, 252, 227, 2, 87, 88, 242, 248, 67, + 124, 69, 44, 75, 17, 172, 124, 220, 68, 189, 98, 31, 75, 129, 161, 67, 240, 255, 249, 68, 82, 144, 206, 80, 27, + 156, 123, 180, 212, 122, 95, 208, 218, 75, 153, 127, 191, 60, 193, 8, 71, 133, 162, 221, 152, 27, 88, 190, 229, + 174, 68, 220, 164, 24, 68, 227, 60, 252, 162, 16, 67, 254, 1, 5, 19, 255, 255, 255, 191, 27, 7, 104, 120, 229, 6, + 133, 210, 208, 76, 88, 119, 216, 208, 220, 238, 2, 44, 1, 206, 241, 144, 27, 140, 173, 138, 189, 189, 31, 78, 238, + 27, 109, 156, 254, 159, 114, 77, 161, 69, 67, 185, 84, 54, 74, 69, 31, 154, 247, 233, 224, 1, 7, 119, 9, 73, 224, + 118, 99, 170, 89, 3, 196, 124, 76, 27, 81, 225, 48, 252, 1, 64, 74, 41, 255, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2539, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fb310301fd0593" + }, + { + "_tag": "ByteArray", + "bytearray": "dac94236d6c5" + } + ] + }, + "cborHex": "9f47fb310301fd059346dac94236d6c5ff", + "cborBytes": [159, 71, 251, 49, 3, 1, 253, 5, 147, 70, 218, 201, 66, 54, 214, 197, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2540, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0105" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10651599445271359617" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9520463053667491189" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf420105d8669f1b93d21542c925b0819f1b841f7ab4ab14dd75ffff41ffd9050a80ff", + "cborBytes": [ + 191, 66, 1, 5, 216, 102, 159, 27, 147, 210, 21, 66, 201, 37, 176, 129, 159, 27, 132, 31, 122, 180, 171, 20, 221, + 117, 255, 255, 65, 255, 217, 5, 10, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2541, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17039573678886225101" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1860269540421500567" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "704e8ab9c3c4a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6213796372748087350" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4bfe" + } + } + ] + }, + "cborHex": "bf041bec78b9fb3e1c04cd0f801b19d1014a774d7e9747704e8ab9c3c4a51b563bd6e10042b0369f1bffffffffffffffec1bfffffffffffffff9ff1bfffffffffffffff2424bfeff", + "cborBytes": [ + 191, 4, 27, 236, 120, 185, 251, 62, 28, 4, 205, 15, 128, 27, 25, 209, 1, 74, 119, 77, 126, 151, 71, 112, 78, 138, + 185, 195, 196, 165, 27, 86, 59, 214, 225, 0, 66, 176, 54, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 27, + 255, 255, 255, 255, 255, 255, 255, 249, 255, 27, 255, 255, 255, 255, 255, 255, 255, 242, 66, 75, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2542, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4880063887265221127" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b48c94fd3c3f9b66c0d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10138356017618799388" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b67" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13795031954027259729" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6cc10aaf9c01594" + } + } + ] + } + ] + }, + "cborHex": "9fa0bf1b43b9783ff1a7ca074ab48c94fd3c3f9b66c0d31b8cb2ad152c9ccb1c428b671bbf71cc7914f5275148c6cc10aaf9c01594ffff", + "cborBytes": [ + 159, 160, 191, 27, 67, 185, 120, 63, 241, 167, 202, 7, 74, 180, 140, 148, 253, 60, 63, 155, 102, 192, 211, 27, + 140, 178, 173, 21, 44, 156, 203, 28, 66, 139, 103, 27, 191, 113, 204, 121, 20, 245, 39, 81, 72, 198, 204, 16, 170, + 249, 192, 21, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2543, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "115888064538970058" + } + }, + "cborHex": "1b019bb794a88d87ca", + "cborBytes": [27, 1, 155, 183, 148, 168, 141, 135, 202], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2544, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17823299160764741858" + } + }, + "cborHex": "1bf7591427a2e678e2", + "cborBytes": [27, 247, 89, 20, 39, 162, 230, 120, 226], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2545, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2497861336368855813" + } + }, + "cborHex": "1b22aa2fa6b472bb05", + "cborBytes": [27, 34, 170, 47, 166, 180, 114, 187, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2546, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17694915645729385247" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7802938861817929132" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b54bb3a5" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13878375193025934306" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7d6bde" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6795789160703569614" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0df4" + }, + { + "_tag": "ByteArray", + "bytearray": "3a8643e5cd1934" + }, + { + "_tag": "ByteArray", + "bytearray": "528f6ab80bc1d722" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3c2f122a4ea978f610" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5999948180940496822" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7529639644171839973" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8259f91f85" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3617537191212967053" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eca50459ac368d4820" + }, + { + "_tag": "ByteArray", + "bytearray": "fc53ac62c9f4" + } + ] + } + ] + } + ] + }, + "cborHex": "d905009fa0d8669f1bf590f8073233ab1f9fd8669f1b6c499b8d96bf9dac9f44b54bb3a5ffffd8669f1bc099e4b50fe773e29f437d6bde1b5e4f7e3c6c2faece420df4473a8643e5cd193448528f6ab80bc1d722ffff493c2f122a4ea978f6101b53441914dbb59fb69f1b687ea75cd58fa9e5458259f91f851b323412e8ac03648d49eca50459ac368d482046fc53ac62c9f4ffffffff", + "cborBytes": [ + 217, 5, 0, 159, 160, 216, 102, 159, 27, 245, 144, 248, 7, 50, 51, 171, 31, 159, 216, 102, 159, 27, 108, 73, 155, + 141, 150, 191, 157, 172, 159, 68, 181, 75, 179, 165, 255, 255, 216, 102, 159, 27, 192, 153, 228, 181, 15, 231, + 115, 226, 159, 67, 125, 107, 222, 27, 94, 79, 126, 60, 108, 47, 174, 206, 66, 13, 244, 71, 58, 134, 67, 229, 205, + 25, 52, 72, 82, 143, 106, 184, 11, 193, 215, 34, 255, 255, 73, 60, 47, 18, 42, 78, 169, 120, 246, 16, 27, 83, 68, + 25, 20, 219, 181, 159, 182, 159, 27, 104, 126, 167, 92, 213, 143, 169, 229, 69, 130, 89, 249, 31, 133, 27, 50, 52, + 18, 232, 172, 3, 100, 141, 73, 236, 165, 4, 89, 172, 54, 141, 72, 32, 70, 252, 83, 172, 98, 201, 244, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2547, + "sample": { + "_tag": "ByteArray", + "bytearray": "8c02770004ed12df05" + }, + "cborHex": "498c02770004ed12df05", + "cborBytes": [73, 140, 2, 119, 0, 4, 237, 18, 223, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2548, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9562944562885482701" + } + }, + "cborHex": "1b84b66769cd8ad8cd", + "cborBytes": [27, 132, 182, 103, 105, 205, 138, 216, 205], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2549, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13806754581614192954" + } + }, + "cborHex": "1bbf9b7224021c693a", + "cborBytes": [27, 191, 155, 114, 36, 2, 28, 105, 58], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2550, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2220748224352858152" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2346421951162412960" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14027402552339099122" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10422533164175242240" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6840923801621346660" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10504840991771405990" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab61bffb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13256270797832037597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6106712736593487833" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "307d2ef5969ba8a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd80586552" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7724153271956419863" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4622598857803859256" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "204f28675edefe1c007f81a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4862770515427104491" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2190688363311527861" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16275692785428285505" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5184424464572589609" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e54d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16387996714961929869" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9744142082804996239" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13440762600488389829" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15379783561275675079" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aa31d44557" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16981468199938497686" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7003600030100779159" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b1ed1aebe7821b0289f1b20902a552c36efa01bc2ab584d0d946df21b90a446b11e64b400ff1b5eefd7f3eb27b964bf1b91c8b139987f2ea644ab61bffb1bb7f7bc0e4f29a4dd1b54bf66e1120227d948307d2ef5969ba8a145bd80586552ff1b6b31b479fda23517bf1b4026c52b6a8685384c204f28675edefe1c007f81a71b437c08050c4696eb1b1e66e375acc3f7b51be1dee05b24d748411b47f2c6950fb1a62942e54d1be36ddc2f5793068dff1b873a2598fe86d88fd8669f1bba872e5f78774cc59f1bd56ff7a9d43a91c745aa31d44557ffff1bebaa4b5b2ded1c96d8669f1b6131c91ee712709780ffff", + "cborBytes": [ + 191, 27, 30, 209, 174, 190, 120, 33, 176, 40, 159, 27, 32, 144, 42, 85, 44, 54, 239, 160, 27, 194, 171, 88, 77, + 13, 148, 109, 242, 27, 144, 164, 70, 177, 30, 100, 180, 0, 255, 27, 94, 239, 215, 243, 235, 39, 185, 100, 191, 27, + 145, 200, 177, 57, 152, 127, 46, 166, 68, 171, 97, 191, 251, 27, 183, 247, 188, 14, 79, 41, 164, 221, 27, 84, 191, + 102, 225, 18, 2, 39, 217, 72, 48, 125, 46, 245, 150, 155, 168, 161, 69, 189, 128, 88, 101, 82, 255, 27, 107, 49, + 180, 121, 253, 162, 53, 23, 191, 27, 64, 38, 197, 43, 106, 134, 133, 56, 76, 32, 79, 40, 103, 94, 222, 254, 28, 0, + 127, 129, 167, 27, 67, 124, 8, 5, 12, 70, 150, 235, 27, 30, 102, 227, 117, 172, 195, 247, 181, 27, 225, 222, 224, + 91, 36, 215, 72, 65, 27, 71, 242, 198, 149, 15, 177, 166, 41, 66, 229, 77, 27, 227, 109, 220, 47, 87, 147, 6, 141, + 255, 27, 135, 58, 37, 152, 254, 134, 216, 143, 216, 102, 159, 27, 186, 135, 46, 95, 120, 119, 76, 197, 159, 27, + 213, 111, 247, 169, 212, 58, 145, 199, 69, 170, 49, 212, 69, 87, 255, 255, 27, 235, 170, 75, 91, 45, 237, 28, 150, + 216, 102, 159, 27, 97, 49, 201, 30, 231, 18, 112, 151, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2551, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17068592098263578908" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13481393077472033303" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14242814195359078082" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1388777940779608588" + } + }, + { + "_tag": "ByteArray", + "bytearray": "200559f15561" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16406985042692087503" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6096939483280697191" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "204b46eff261bdab" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "714b0a6dd7f1c106269a26" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "623395954167186973" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6bdbdf50713d" + }, + { + "_tag": "ByteArray", + "bytearray": "0267cdb59c4b32adb234c0" + }, + { + "_tag": "ByteArray", + "bytearray": "d1b1bfce6d86fd3746" + } + ] + } + } + ] + }, + "cborHex": "bf1becdfd214810a391cd8669f1bbb17879394217a179f1bc5a8a40c8c44d6c21b1345ee2dd8112a0c46200559f155611be3b151f7e8cf1ecf1b549cae2835ffe767ffff48204b46eff261bdab804b714b0a6dd7f1c106269a26d8669f1b08a6bf51428d061d9f466bdbdf50713d4b0267cdb59c4b32adb234c049d1b1bfce6d86fd3746ffffff", + "cborBytes": [ + 191, 27, 236, 223, 210, 20, 129, 10, 57, 28, 216, 102, 159, 27, 187, 23, 135, 147, 148, 33, 122, 23, 159, 27, 197, + 168, 164, 12, 140, 68, 214, 194, 27, 19, 69, 238, 45, 216, 17, 42, 12, 70, 32, 5, 89, 241, 85, 97, 27, 227, 177, + 81, 247, 232, 207, 30, 207, 27, 84, 156, 174, 40, 53, 255, 231, 103, 255, 255, 72, 32, 75, 70, 239, 242, 97, 189, + 171, 128, 75, 113, 75, 10, 109, 215, 241, 193, 6, 38, 154, 38, 216, 102, 159, 27, 8, 166, 191, 81, 66, 141, 6, 29, + 159, 70, 107, 219, 223, 80, 113, 61, 75, 2, 103, 205, 181, 156, 75, 50, 173, 178, 52, 192, 73, 209, 177, 191, 206, + 109, 134, 253, 55, 70, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2552, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "61" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c248d285e1efe0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c750e55b09cbad447" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4829966255294738898" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8c07e73f464b55aad97931b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8107839048104946572" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3599471191646442733" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13395668347161434944" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10506209042121279763" + } + } + ] + }, + "cborHex": "d905089fbf416147c248d285e1efe0497c750e55b09cbad4471b43077cb80bf771d241f44cb8c07e73f464b55aad97931bff1b7084d4a836562b8c1b31f3e3fa5d5694ed1bb9e6f96371805b401b91cd8d75a3a2c913ff", + "cborBytes": [ + 217, 5, 8, 159, 191, 65, 97, 71, 194, 72, 210, 133, 225, 239, 224, 73, 124, 117, 14, 85, 176, 156, 186, 212, 71, + 27, 67, 7, 124, 184, 11, 247, 113, 210, 65, 244, 76, 184, 192, 126, 115, 244, 100, 181, 90, 173, 151, 147, 27, + 255, 27, 112, 132, 212, 168, 54, 86, 43, 140, 27, 49, 243, 227, 250, 93, 86, 148, 237, 27, 185, 230, 249, 99, 113, + 128, 91, 64, 27, 145, 205, 141, 117, 163, 162, 201, 19, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2553, + "sample": { + "_tag": "ByteArray", + "bytearray": "8f1ce729dba266" + }, + "cborHex": "478f1ce729dba266", + "cborBytes": [71, 143, 28, 231, 41, 219, 162, 102], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2554, + "sample": { + "_tag": "ByteArray", + "bytearray": "0637" + }, + "cborHex": "420637", + "cborBytes": [66, 6, 55], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2555, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14208869298703784596" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16204003300498009416" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "368e3015477e21feeda191" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bc5300b5869315a949f9fbf1be0e02f263970ed484b368e3015477e21feeda191ffffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 197, 48, 11, 88, 105, 49, 90, 148, 159, 159, 191, 27, 224, 224, 47, 38, 57, 112, 237, 72, 75, + 54, 142, 48, 21, 71, 126, 33, 254, 237, 161, 145, 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2556, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8038127743732444611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "57fe38f90804c455" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "202484071632989834" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3535585443579245282" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff60" + }, + { + "_tag": "ByteArray", + "bytearray": "126a346e5aa9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13254982881441712088" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1d1265d10a1293868c" + } + ] + } + ] + } + ] + }, + "cborHex": "9fa0a0d8669f1b6f8d2a9858626dc39f4857fe38f90804c455d8669f1b02cf5e30ba5bee8a9f1b3110ec3a859532e242ff6046126a346e5aa91bb7f328b3e83787d8491d1265d10a1293868cffffffffff", + "cborBytes": [ + 159, 160, 160, 216, 102, 159, 27, 111, 141, 42, 152, 88, 98, 109, 195, 159, 72, 87, 254, 56, 249, 8, 4, 196, 85, + 216, 102, 159, 27, 2, 207, 94, 48, 186, 91, 238, 138, 159, 27, 49, 16, 236, 58, 133, 149, 50, 226, 66, 255, 96, + 70, 18, 106, 52, 110, 90, 169, 27, 183, 243, 40, 179, 232, 55, 135, 216, 73, 29, 18, 101, 209, 10, 18, 147, 134, + 140, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2557, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12338216938137942011" + } + }, + "cborHex": "1bab3a26ef3f6b77fb", + "cborBytes": [27, 171, 58, 38, 239, 63, 107, 119, 251], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2558, + "sample": { + "_tag": "ByteArray", + "bytearray": "e9445f79444de8f9b132" + }, + "cborHex": "4ae9445f79444de8f9b132", + "cborBytes": [74, 233, 68, 95, 121, 68, 77, 232, 249, 177, 50], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2559, + "sample": { + "_tag": "ByteArray", + "bytearray": "040205ec" + }, + "cborHex": "44040205ec", + "cborBytes": [68, 4, 2, 5, 236], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2560, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16219472972303071008" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b031b2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4632789388625891845" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c8f0f3792af3039c2f34ee4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14686167249267112863" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2536e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6515985763308347508" + } + } + ] + }, + "cborHex": "9f1be11724bbde2c772043b031b2d8669f1b404af967443ed2059fbf4c8c8f0f3792af3039c2f34ee41bcbcfbf4d748abb9f43f2536e41e6ffa0ffff1b5a6d6e874f7f2074ff", + "cborBytes": [ + 159, 27, 225, 23, 36, 187, 222, 44, 119, 32, 67, 176, 49, 178, 216, 102, 159, 27, 64, 74, 249, 103, 68, 62, 210, + 5, 159, 191, 76, 140, 143, 15, 55, 146, 175, 48, 57, 194, 243, 78, 228, 27, 203, 207, 191, 77, 116, 138, 187, 159, + 67, 242, 83, 110, 65, 230, 255, 160, 255, 255, 27, 90, 109, 110, 135, 79, 127, 32, 116, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2561, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a1c14879" + }, + { + "_tag": "ByteArray", + "bytearray": "bcbf04f1b302fa4cf5" + } + ] + }, + "cborHex": "9f44a1c1487949bcbf04f1b302fa4cf5ff", + "cborBytes": [159, 68, 161, 193, 72, 121, 73, 188, 191, 4, 241, 179, 2, 250, 76, 245, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2562, + "sample": { + "_tag": "ByteArray", + "bytearray": "e2e8b403" + }, + "cborHex": "44e2e8b403", + "cborBytes": [68, 226, 232, 180, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2563, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3238116369083821464" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "11b6fb2cf1411439a8f227c7" + }, + { + "_tag": "ByteArray", + "bytearray": "7c9a560bb6e820e6608c5d31" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12791156153699321492" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11230455438011643517" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17420125932037831386" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7653645419039095039" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2d50c4b7d73943" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10578386826752677205" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3788068232826461571" + } + } + ] + }, + "cborHex": "9f9fd8669f1b2cf019ae709e6d989f4c11b6fb2cf1411439a8f227c74c7c9a560bb6e820e6608c5d311bb18350c057ccc694ffff9f1b9bda97b82889b67dff1bf1c0b83d49af7ada1b6a3735f5369ef8ffff472d50c4b7d739431b92cdfac5b143d5551b3491ebfcda901d83ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 44, 240, 25, 174, 112, 158, 109, 152, 159, 76, 17, 182, 251, 44, 241, 65, 20, 57, + 168, 242, 39, 199, 76, 124, 154, 86, 11, 182, 232, 32, 230, 96, 140, 93, 49, 27, 177, 131, 80, 192, 87, 204, 198, + 148, 255, 255, 159, 27, 155, 218, 151, 184, 40, 137, 182, 125, 255, 27, 241, 192, 184, 61, 73, 175, 122, 218, 27, + 106, 55, 53, 245, 54, 158, 248, 255, 255, 71, 45, 80, 196, 183, 215, 57, 67, 27, 146, 205, 250, 197, 177, 67, 213, + 85, 27, 52, 145, 235, 252, 218, 144, 29, 131, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2564, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "087e81d88ab74506" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "285ffb3c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "994eb642" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6179f2b44471a56e5dd742" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8027732961959441847" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90332419fda49434306c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5240475690766501221" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f66785a02d1fd90c8698" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9867119446383100114" + } + } + } + ] + } + ] + }, + "cborHex": "9fd9050a80bf48087e81d88ab7450644285ffb3c4232e344994eb6424b6179f2b44471a56e5dd7421b6f683c989d4975b74a90332419fda49434306c1b48b9e8e0223505654af66785a02d1fd90c86981b88ef0cdbb60380d2ffff", + "cborBytes": [ + 159, 217, 5, 10, 128, 191, 72, 8, 126, 129, 216, 138, 183, 69, 6, 68, 40, 95, 251, 60, 66, 50, 227, 68, 153, 78, + 182, 66, 75, 97, 121, 242, 180, 68, 113, 165, 110, 93, 215, 66, 27, 111, 104, 60, 152, 157, 73, 117, 183, 74, 144, + 51, 36, 25, 253, 164, 148, 52, 48, 108, 27, 72, 185, 232, 224, 34, 53, 5, 101, 74, 246, 103, 133, 160, 45, 31, + 217, 12, 134, 152, 27, 136, 239, 12, 219, 182, 3, 128, 210, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2565, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1278470968713393882" + }, + "fields": [] + }, + "cborHex": "d8669f1b11be0a9289cfb6da80ff", + "cborBytes": [216, 102, 159, 27, 17, 190, 10, 146, 137, 207, 182, 218, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2566, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6240352299848113882" + } + }, + "cborHex": "1b569a2f5a99bd1eda", + "cborBytes": [27, 86, 154, 47, 90, 153, 189, 30, 218], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2567, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "003c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f3dd32dfe6980d3d50c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8047860908624940563" + } + } + } + ] + }, + "cborHex": "bf42003c094a9f3dd32dfe6980d3d50c1b6fafbedb64578e13ff", + "cborBytes": [ + 191, 66, 0, 60, 9, 74, 159, 61, 211, 45, 254, 105, 128, 211, 213, 12, 27, 111, 175, 190, 219, 100, 87, 142, 19, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2568, + "sample": { + "_tag": "ByteArray", + "bytearray": "030405" + }, + "cborHex": "43030405", + "cborBytes": [67, 3, 4, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2569, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48a0abee4d2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13106958247102005114" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53acf5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3156369369642482344" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67e0bc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11093167749341168468" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74c333b070d5c7e61141" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17947938324935133457" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b16906b760d5a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14be9ef0" + } + } + ] + } + } + ] + }, + "cborHex": "bf4648a0abee4d2d1bb5e5451504643f7a4353acf51b2bcdad37f176baa84367e0bcbf1b99f2d94b3d4cc3544a74c333b070d5c7e611411bf913e2d07460c911476b16906b760d5a41fb4414be9ef0ffff", + "cborBytes": [ + 191, 70, 72, 160, 171, 238, 77, 45, 27, 181, 229, 69, 21, 4, 100, 63, 122, 67, 83, 172, 245, 27, 43, 205, 173, 55, + 241, 118, 186, 168, 67, 103, 224, 188, 191, 27, 153, 242, 217, 75, 61, 76, 195, 84, 74, 116, 195, 51, 176, 112, + 213, 199, 230, 17, 65, 27, 249, 19, 226, 208, 116, 96, 201, 17, 71, 107, 22, 144, 107, 118, 13, 90, 65, 251, 68, + 20, 190, 158, 240, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2570, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3684499022101939941" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1245525318128077330" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b5e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3669532107004733773" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a8467ff8e511eda" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f63713d0610faac537ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ee86e78a35d21d99b844e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14178221957880815097" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15263562832958474148" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e89f9b1a48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea42df311b9b5d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f36698" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7794776897181004501" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14413983876907126081" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b3321f856dba906e59fd8669f1b1148fead81c78a1280ff1bfffffffffffffff1420b5e9f418c1b32eccc0261e8694dbf481a8467ff8e511eda4af63713d0610faac537ae4b4ee86e78a35d21d99b844e1bc4c329c052211df941711bd3d31186d95847a445e89f9b1a4847ea42df311b9b5d43f366981b6c2c9c4a1be532d5ff0fd8669f1bc808c1f7ad41cd4180ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 51, 33, 248, 86, 219, 169, 6, 229, 159, 216, 102, 159, 27, 17, 72, 254, 173, 129, 199, 138, 18, + 128, 255, 27, 255, 255, 255, 255, 255, 255, 255, 241, 66, 11, 94, 159, 65, 140, 27, 50, 236, 204, 2, 97, 232, 105, + 77, 191, 72, 26, 132, 103, 255, 142, 81, 30, 218, 74, 246, 55, 19, 208, 97, 15, 170, 197, 55, 174, 75, 78, 232, + 110, 120, 163, 93, 33, 217, 155, 132, 78, 27, 196, 195, 41, 192, 82, 33, 29, 249, 65, 113, 27, 211, 211, 17, 134, + 217, 88, 71, 164, 69, 232, 159, 155, 26, 72, 71, 234, 66, 223, 49, 27, 155, 93, 67, 243, 102, 152, 27, 108, 44, + 156, 74, 27, 229, 50, 213, 255, 15, 216, 102, 159, 27, 200, 8, 193, 247, 173, 65, 205, 65, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2571, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5047110673903380298" + } + }, + "cborHex": "1b460af06acc17e74a", + "cborBytes": [27, 70, 10, 240, 106, 204, 23, 231, 74], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2572, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13842376073274032277" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2ee28ec143598902ce0d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1167939490923430397" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13762084365740375034" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c95f2bc877831aa3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8511308722208481208" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c7a96" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16348127860313198830" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "caeeee334c23d6919c785c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9fbfd98fc041" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dd928afca4bf8fb262" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5944101358727189195" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11034941513328329781" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15577603578497749778" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "52b3a48306f052dfb5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5695462252291809652" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14271080369377725223" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13809069407153752209" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "233c9dd56ceb" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2661310245482472291" + } + } + ] + }, + "cborHex": "9f9f1bc019ffb2d6dd80954a2ee28ec143598902ce0dff9fd8669f1b10355ac76ba441fd9f1bbefcbed0e4e97bfa48c95f2bc877831aa31b761e3e3020eb9fb8434c7a961be2e037ac40a290eeffff4bcaeeee334c23d6919c785cff469fbfd98fc0419f9f49dd928afca4bf8fb2621b527db0b14bd9d2cb1b9923fcd73b258435ffd8669f1bd82ec3ebc436531280ff4952b3a48306f052dfb5bf1b4f0a58be1b7fe1741bc60d0ffc09cf4b271bbfa3ab76541d089146233c9dd56cebff80ff1b24eedf916b172363ff", + "cborBytes": [ + 159, 159, 27, 192, 25, 255, 178, 214, 221, 128, 149, 74, 46, 226, 142, 193, 67, 89, 137, 2, 206, 13, 255, 159, + 216, 102, 159, 27, 16, 53, 90, 199, 107, 164, 65, 253, 159, 27, 190, 252, 190, 208, 228, 233, 123, 250, 72, 201, + 95, 43, 200, 119, 131, 26, 163, 27, 118, 30, 62, 48, 32, 235, 159, 184, 67, 76, 122, 150, 27, 226, 224, 55, 172, + 64, 162, 144, 238, 255, 255, 75, 202, 238, 238, 51, 76, 35, 214, 145, 156, 120, 92, 255, 70, 159, 191, 217, 143, + 192, 65, 159, 159, 73, 221, 146, 138, 252, 164, 191, 143, 178, 98, 27, 82, 125, 176, 177, 75, 217, 210, 203, 27, + 153, 35, 252, 215, 59, 37, 132, 53, 255, 216, 102, 159, 27, 216, 46, 195, 235, 196, 54, 83, 18, 128, 255, 73, 82, + 179, 164, 131, 6, 240, 82, 223, 181, 191, 27, 79, 10, 88, 190, 27, 127, 225, 116, 27, 198, 13, 15, 252, 9, 207, + 75, 39, 27, 191, 163, 171, 118, 84, 29, 8, 145, 70, 35, 60, 157, 213, 108, 235, 255, 128, 255, 27, 36, 238, 223, + 145, 107, 23, 35, 99, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2573, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16730366222321812329" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b888275d8b184a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b7c5be510b2f69d8f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2badf494ebc934ddcff9" + }, + { + "_tag": "ByteArray", + "bytearray": "b8b09571d02e1dcbac63" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8289000310309158790" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7bec" + } + ] + } + } + ] + }, + "cborHex": "bf1be82e33701baf83699f47b888275d8b184aff492b7c5be510b2f69d8f9f4a2badf494ebc934ddcff94ab8b09571d02e1dcbac631b730871dd7f147f86427becffff", + "cborBytes": [ + 191, 27, 232, 46, 51, 112, 27, 175, 131, 105, 159, 71, 184, 136, 39, 93, 139, 24, 74, 255, 73, 43, 124, 91, 229, + 16, 178, 246, 157, 143, 159, 74, 43, 173, 244, 148, 235, 201, 52, 221, 207, 249, 74, 184, 176, 149, 113, 208, 46, + 29, 203, 172, 99, 27, 115, 8, 113, 221, 127, 20, 127, 134, 66, 123, 236, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2574, + "sample": { + "_tag": "ByteArray", + "bytearray": "78199d5a23a3" + }, + "cborHex": "4678199d5a23a3", + "cborBytes": [70, 120, 25, 157, 90, 35, 163], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2575, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13705325795976554867" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14867319822673197609" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4493691371484367355" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4077438399931354545" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10562144382562397118" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ec5c138" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16533737313728843330" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3002538800013709902" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcf3c381048b4c52e1141c31" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8662323479233725531" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56c81a064e938cf59ed9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa24bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd730cccca77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fc39b852a2f111fd9e8a6" + } + } + ] + } + ] + }, + "cborHex": "9f1bbe331932902e29731bce53549bb88f3a29bf1b3e5ccc7e679049fb1b3895f89f1d720db11b9294465af504ebbe443ec5c138ff1be573a27cc26dce42bf1b29ab29216725124e4cfcf3c381048b4c52e1141c311b7836c14f3540845b41ce4a56c81a064e938cf59ed943aa24bb46fd730cccca774b6fc39b852a2f111fd9e8a6ffff", + "cborBytes": [ + 159, 27, 190, 51, 25, 50, 144, 46, 41, 115, 27, 206, 83, 84, 155, 184, 143, 58, 41, 191, 27, 62, 92, 204, 126, + 103, 144, 73, 251, 27, 56, 149, 248, 159, 29, 114, 13, 177, 27, 146, 148, 70, 90, 245, 4, 235, 190, 68, 62, 197, + 193, 56, 255, 27, 229, 115, 162, 124, 194, 109, 206, 66, 191, 27, 41, 171, 41, 33, 103, 37, 18, 78, 76, 252, 243, + 195, 129, 4, 139, 76, 82, 225, 20, 28, 49, 27, 120, 54, 193, 79, 53, 64, 132, 91, 65, 206, 74, 86, 200, 26, 6, 78, + 147, 140, 245, 158, 217, 67, 170, 36, 187, 70, 253, 115, 12, 204, 202, 119, 75, 111, 195, 155, 133, 42, 47, 17, + 31, 217, 232, 166, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2576, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8541333927752846128" + } + }, + "cborHex": "1b7688e9f40fb34b30", + "cborBytes": [27, 118, 136, 233, 244, 15, 179, 75, 48], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2577, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4296799074523548456" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1546367459962118005" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3ba14bfe2c340b289fd8669f1bfffffffffffffff380ff1b1575cd030743df75ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 59, 161, 75, 254, 44, 52, 11, 40, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 243, 128, 255, 27, 21, 117, 205, 3, 7, 67, 223, 117, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2578, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13397485032038724735" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13759882188285799686" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ed2056b09dfa64ad87edf5" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "072dad150dd4e54083be405c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db4c1cb999be1ad6e07b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3747a5386b31e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10585627425147635084" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfc0f7e5616a505a1cfb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9272e221317acf27206511" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1a828e9a15f149051471d4b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12658430799960385942" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11430088990109663544" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8195810129890860592" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2091030604358124835" + } + } + ] + }, + "cborHex": "9f1bb9ed6da75a47f47fa01bbef4ebf27fffed069f9f4bed2056b09dfa64ad87edf5ffbf4c072dad150dd4e54083be405c4adb4c1cb999be1ad6e07b473747a5386b31e41b92e7b40ee08ec58c4adfc0f7e5616a505a1cfb4b9272e221317acf27206511ff9f4c1a828e9a15f149051471d4b71bafabc7becd80a9961b9e9fd560969701381b71bd5de3ceb15e30ffff1b1d04d541833c8523ff", + "cborBytes": [ + 159, 27, 185, 237, 109, 167, 90, 71, 244, 127, 160, 27, 190, 244, 235, 242, 127, 255, 237, 6, 159, 159, 75, 237, + 32, 86, 176, 157, 250, 100, 173, 135, 237, 245, 255, 191, 76, 7, 45, 173, 21, 13, 212, 229, 64, 131, 190, 64, 92, + 74, 219, 76, 28, 185, 153, 190, 26, 214, 224, 123, 71, 55, 71, 165, 56, 107, 49, 228, 27, 146, 231, 180, 14, 224, + 142, 197, 140, 74, 223, 192, 247, 229, 97, 106, 80, 90, 28, 251, 75, 146, 114, 226, 33, 49, 122, 207, 39, 32, 101, + 17, 255, 159, 76, 26, 130, 142, 154, 21, 241, 73, 5, 20, 113, 212, 183, 27, 175, 171, 199, 190, 205, 128, 169, + 150, 27, 158, 159, 213, 96, 150, 151, 1, 56, 27, 113, 189, 93, 227, 206, 177, 94, 48, 255, 255, 27, 29, 4, 213, + 65, 131, 60, 133, 35, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2579, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6887814154207643426" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12758355453735781337" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c20884544d5c5f54b594881" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1421229092386418592" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14900019773922321790" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2319965252800394887" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11662512688801476731" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2441558980810123772" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cef40ccb82" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4106028462748534263" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ed2e2bf64210794602c32" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4516197733704206626" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11029844332440720396" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6135935542804058129" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9886964225602561583" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b06616aa28536fa382f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d34c6aefb516c72cdf691199" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c809e99b1c303d0611c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c3e0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14659934270494194833" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b5f966e7ae47447229fbf1bb10ec8b04216c3d94c1c20884544d5c5f54b594881ffd8669f1b13b938545c24afa09f1bcec7810a6aefa57effffbf1b20322c1b106ab6871ba1d9917ff47f707b1b21e228f5055a29fc45cef40ccb821b38fb8b21d7c505f74b9ed2e2bf64210794602c321b3eacc1e934dd09221b9911e0fb52fc140cffbf1b552738ddd98790111b89358d946e09262f4a4b06616aa28536fa382f415a4cd34c6aefb516c72cdf6911994a6c809e99b1c303d0611cff9f42c3e01bcb728c8c1f61bc91ffffff", + "cborBytes": [ + 159, 27, 95, 150, 110, 122, 228, 116, 71, 34, 159, 191, 27, 177, 14, 200, 176, 66, 22, 195, 217, 76, 28, 32, 136, + 69, 68, 213, 197, 245, 75, 89, 72, 129, 255, 216, 102, 159, 27, 19, 185, 56, 84, 92, 36, 175, 160, 159, 27, 206, + 199, 129, 10, 106, 239, 165, 126, 255, 255, 191, 27, 32, 50, 44, 27, 16, 106, 182, 135, 27, 161, 217, 145, 127, + 244, 127, 112, 123, 27, 33, 226, 40, 245, 5, 90, 41, 252, 69, 206, 244, 12, 203, 130, 27, 56, 251, 139, 33, 215, + 197, 5, 247, 75, 158, 210, 226, 191, 100, 33, 7, 148, 96, 44, 50, 27, 62, 172, 193, 233, 52, 221, 9, 34, 27, 153, + 17, 224, 251, 82, 252, 20, 12, 255, 191, 27, 85, 39, 56, 221, 217, 135, 144, 17, 27, 137, 53, 141, 148, 110, 9, + 38, 47, 74, 75, 6, 97, 106, 162, 133, 54, 250, 56, 47, 65, 90, 76, 211, 76, 106, 239, 181, 22, 199, 44, 223, 105, + 17, 153, 74, 108, 128, 158, 153, 177, 195, 3, 208, 97, 28, 255, 159, 66, 195, 224, 27, 203, 114, 140, 140, 31, 97, + 188, 145, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2580, + "sample": { + "_tag": "ByteArray", + "bytearray": "3c5e0d2196bc0bab681bb5" + }, + "cborHex": "4b3c5e0d2196bc0bab681bb5", + "cborBytes": [75, 60, 94, 13, 33, 150, 188, 11, 171, 104, 27, 181], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2581, + "sample": { + "_tag": "ByteArray", + "bytearray": "004f" + }, + "cborHex": "42004f", + "cborBytes": [66, 0, 79], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2582, + "sample": { + "_tag": "ByteArray", + "bytearray": "d7eb439826" + }, + "cborHex": "45d7eb439826", + "cborBytes": [69, 215, 235, 67, 152, 38], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2583, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5915539167180949290" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8fd49b74" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1441636322146701106" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10553793625026815341" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7f244189d82674620ef4bb" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27d4b7d6a769ab" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11714592430950498806" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8480523942283367145" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9558082789440751047" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1539bc319" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2cd63cc6990c4b993962b168" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9354704119355150683" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "849a1cf774d72a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e249ac05a2c43e8400b2d4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e686463bd15cd00423" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e59a6619dbae39ae6c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcde45b83287" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11780716036107893740" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b52183787dabb072a9f448fd49b741b1401b898ccdacf32ff1b92769b62b481656d9f4b7f244189d82674620ef4bbff4727d4b7d6a769abd8669f1ba29297bfd748c1f69f1b75b0df9800fed2e91b84a521a7f66405c7ffff45c1539bc319bf4c2cd63cc6990c4b993962b1681b81d295d54d0c115b47849a1cf774d72a4be249ac05a2c43e8400b2d449e686463bd15cd0042349e59a6619dbae39ae6c46fcde45b832871ba37d82d163f57becffff", + "cborBytes": [ + 191, 27, 82, 24, 55, 135, 218, 187, 7, 42, 159, 68, 143, 212, 155, 116, 27, 20, 1, 184, 152, 204, 218, 207, 50, + 255, 27, 146, 118, 155, 98, 180, 129, 101, 109, 159, 75, 127, 36, 65, 137, 216, 38, 116, 98, 14, 244, 187, 255, + 71, 39, 212, 183, 214, 167, 105, 171, 216, 102, 159, 27, 162, 146, 151, 191, 215, 72, 193, 246, 159, 27, 117, 176, + 223, 152, 0, 254, 210, 233, 27, 132, 165, 33, 167, 246, 100, 5, 199, 255, 255, 69, 193, 83, 155, 195, 25, 191, 76, + 44, 214, 60, 198, 153, 12, 75, 153, 57, 98, 177, 104, 27, 129, 210, 149, 213, 77, 12, 17, 91, 71, 132, 154, 28, + 247, 116, 215, 42, 75, 226, 73, 172, 5, 162, 196, 62, 132, 0, 178, 212, 73, 230, 134, 70, 59, 209, 92, 208, 4, 35, + 73, 229, 154, 102, 25, 219, 174, 57, 174, 108, 70, 252, 222, 69, 184, 50, 135, 27, 163, 125, 130, 209, 99, 245, + 123, 236, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2584, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1682017545240194401" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "215bb438d0cbaa4f1d47" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9787906446874013325" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11393827688657880737" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "732844cca7dec87e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52b841" + } + } + ] + }, + "cborHex": "bf1b1757ba0bb2042d614a215bb438d0cbaa4f1d471b87d5a10e0cae6e8d1b9e1f01ea6e7686a148732844cca7dec87e4352b841ff", + "cborBytes": [ + 191, 27, 23, 87, 186, 11, 178, 4, 45, 97, 74, 33, 91, 180, 56, 208, 203, 170, 79, 29, 71, 27, 135, 213, 161, 14, + 12, 174, 110, 141, 27, 158, 31, 1, 234, 110, 118, 134, 161, 72, 115, 40, 68, 204, 167, 222, 200, 126, 67, 82, 184, + 65, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2585, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e17" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90070602fcf8ffca" + } + } + ] + }, + "cborHex": "bf426e174890070602fcf8ffcaff", + "cborBytes": [191, 66, 110, 23, 72, 144, 7, 6, 2, 252, 248, 255, 202, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2586, + "sample": { + "_tag": "ByteArray", + "bytearray": "8d" + }, + "cborHex": "418d", + "cborBytes": [65, 141], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2587, + "sample": { + "_tag": "ByteArray", + "bytearray": "f21f1e4c" + }, + "cborHex": "44f21f1e4c", + "cborBytes": [68, 242, 31, 30, 76], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2588, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9188287347358974387" + } + }, + "cborHex": "1b7f835aa9298c41b3", + "cborBytes": [27, 127, 131, 90, 169, 41, 140, 65, 179], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2589, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3242811078837564239" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6006024046937338930" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8395045872799650795" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10024247141706209602" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15518558880083927992" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce5ddea31e3b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17398685563682594829" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "405252668139299415" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "de728e35bcf2dfc9bd44" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b5d85" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c52fb0c350ac9" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "121e9500f6d531c33906f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12187727683106070892" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f50dd750b2abe02a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4866370570036143411" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68ef28" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5258368407304027824" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14127766025538199933" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d8af8d6b17ae15d3c7" + } + ] + }, + "cborHex": "9fbf1b2d00c77ebbd0734f1b5359af0ca62774321b748131be115513eb1b8b1d47aa261f99421bd75cff14a162e3b846ce5ddea31e3b1bf1748c568604a00d1b059fbf2790b8e257ff4ade728e35bcf2dfc9bd44bf439b5d85479c52fb0c350ac9ffbf4b121e9500f6d531c33906f61ba92381c122bb616c491f50dd750b2abe02a81b4388d240146b65334368ef281b48f97a34d77e3eb041ad1bc40fe8591e09617dff49d8af8d6b17ae15d3c7ff", + "cborBytes": [ + 159, 191, 27, 45, 0, 199, 126, 187, 208, 115, 79, 27, 83, 89, 175, 12, 166, 39, 116, 50, 27, 116, 129, 49, 190, + 17, 85, 19, 235, 27, 139, 29, 71, 170, 38, 31, 153, 66, 27, 215, 92, 255, 20, 161, 98, 227, 184, 70, 206, 93, 222, + 163, 30, 59, 27, 241, 116, 140, 86, 134, 4, 160, 13, 27, 5, 159, 191, 39, 144, 184, 226, 87, 255, 74, 222, 114, + 142, 53, 188, 242, 223, 201, 189, 68, 191, 67, 155, 93, 133, 71, 156, 82, 251, 12, 53, 10, 201, 255, 191, 75, 18, + 30, 149, 0, 246, 213, 49, 195, 57, 6, 246, 27, 169, 35, 129, 193, 34, 187, 97, 108, 73, 31, 80, 221, 117, 11, 42, + 190, 2, 168, 27, 67, 136, 210, 64, 20, 107, 101, 51, 67, 104, 239, 40, 27, 72, 249, 122, 52, 215, 126, 62, 176, + 65, 173, 27, 196, 15, 232, 89, 30, 9, 97, 125, 255, 73, 216, 175, 141, 107, 23, 174, 21, 211, 199, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2590, + "sample": { + "_tag": "ByteArray", + "bytearray": "bde530c1131cbf7f97a6" + }, + "cborHex": "4abde530c1131cbf7f97a6", + "cborBytes": [74, 189, 229, 48, 193, 19, 28, 191, 127, 151, 166], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2591, + "sample": { + "_tag": "ByteArray", + "bytearray": "e26e0970926e8c" + }, + "cborHex": "47e26e0970926e8c", + "cborBytes": [71, 226, 110, 9, 112, 146, 110, 140], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2592, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4416987467503675106" + } + } + ] + }, + "cborHex": "9f1b3d4c4ab311e8a6e2ff", + "cborBytes": [159, 27, 61, 76, 74, 179, 17, 232, 166, 226, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2593, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5718592085831758625" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3293525811190029849" + } + }, + { + "_tag": "ByteArray", + "bytearray": "15c6b9d2bcaee744" + } + ] + }, + "cborHex": "9f1b4f5c8534235cb3211b2db4f446828fde194815c6b9d2bcaee744ff", + "cborBytes": [ + 159, 27, 79, 92, 133, 52, 35, 92, 179, 33, 27, 45, 180, 244, 70, 130, 143, 222, 25, 72, 21, 198, 185, 210, 188, + 174, 231, 68, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2594, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10770699035973874817" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4469141112612321599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2c7b669ce261b411" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7466402743640459766" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9943806098874382362" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16002283895721231254" + } + }, + { + "_tag": "ByteArray", + "bytearray": "443068283ac1454d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16749220021250863499" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6579488326744081234" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6994473714515904723" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a3" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5db7e41f6b9a7687f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "883f4c1f5d599ca9ab9586" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6835501375026487824" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fca357" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6628725406569155622" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "20c6ea1034" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d5ec35dd7c0af3ebaf5f693" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10cbcbb4c99ee22d91d648ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "617a8106" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f3b1c60" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9799513cfd07d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13675079300134466050" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c717ae15cfa15b8fc3a0c859" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13539502207821433485" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f341881f9435" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "db" + } + ] + }, + "cborHex": "9fd8669f1b957935b525dd74819fd8669f1b3e059429d459f93f9f482c7b669ce261b4111b679dfdbc94b109f61b89ff7ef65ec5381a1bde13886b5f6b039648443068283ac1454dffff9f1be8712ede3f84b18b1b5b4f09c6076903521b61115cc8f88708d341a3ffbf495db7e41f6b9a7687f041ef4b883f4c1f5d599ca9ab95861b5edc9448d825e21043fca3571b5bfdf6a304294c26ff4520c6ea1034ffffbf4c4d5ec35dd7c0af3ebaf5f6934c10cbcbb4c99ee22d91d648ff44617a8106441f3b1c60479799513cfd07d51bbdc7a42b77cff2024cc717ae15cfa15b8fc3a0c8591bbbe5f985ccd04a8d46f341881f94354162ff41dbff", + "cborBytes": [ + 159, 216, 102, 159, 27, 149, 121, 53, 181, 37, 221, 116, 129, 159, 216, 102, 159, 27, 62, 5, 148, 41, 212, 89, + 249, 63, 159, 72, 44, 123, 102, 156, 226, 97, 180, 17, 27, 103, 157, 253, 188, 148, 177, 9, 246, 27, 137, 255, + 126, 246, 94, 197, 56, 26, 27, 222, 19, 136, 107, 95, 107, 3, 150, 72, 68, 48, 104, 40, 58, 193, 69, 77, 255, 255, + 159, 27, 232, 113, 46, 222, 63, 132, 177, 139, 27, 91, 79, 9, 198, 7, 105, 3, 82, 27, 97, 17, 92, 200, 248, 135, + 8, 211, 65, 163, 255, 191, 73, 93, 183, 228, 31, 107, 154, 118, 135, 240, 65, 239, 75, 136, 63, 76, 31, 93, 89, + 156, 169, 171, 149, 134, 27, 94, 220, 148, 72, 216, 37, 226, 16, 67, 252, 163, 87, 27, 91, 253, 246, 163, 4, 41, + 76, 38, 255, 69, 32, 198, 234, 16, 52, 255, 255, 191, 76, 77, 94, 195, 93, 215, 192, 175, 62, 186, 245, 246, 147, + 76, 16, 203, 203, 180, 201, 158, 226, 45, 145, 214, 72, 255, 68, 97, 122, 129, 6, 68, 31, 59, 28, 96, 71, 151, + 153, 81, 60, 253, 7, 213, 27, 189, 199, 164, 43, 119, 207, 242, 2, 76, 199, 23, 174, 21, 207, 161, 91, 143, 195, + 160, 200, 89, 27, 187, 229, 249, 133, 204, 208, 74, 141, 70, 243, 65, 136, 31, 148, 53, 65, 98, 255, 65, 219, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2595, + "sample": { + "_tag": "ByteArray", + "bytearray": "6303fd" + }, + "cborHex": "436303fd", + "cborBytes": [67, 99, 3, 253], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2596, + "sample": { + "_tag": "ByteArray", + "bytearray": "7463ae3f51b7629e" + }, + "cborHex": "487463ae3f51b7629e", + "cborBytes": [72, 116, 99, 174, 63, 81, 183, 98, 158], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2597, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12833187953185558255" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3023518182063571021" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca53" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11240297183429509594" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3552b9" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4113780756961095106" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15491684353977286711" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7769829300440756705" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8911757048283723459" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9196388527277236623" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "716cb2a25b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12736169910174761059" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17343101476276134487" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15755028348716374809" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "370703125626573536" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12150945631141741756" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "658860308163816811" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7812549506837942068" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0e" + }, + { + "_tag": "ByteArray", + "bytearray": "10" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bb218a47345728eef9fbf1b29f5b1c46dd5804d42ca53ff9f1b9bfd8ebc1423c1da433552b9ff9fbf1b391715cd7e80edc21bd6fd84d76b4b00371b6bd3fa951a3171e11b7bacebd1a388f6c31b7fa022a418d6618f45716cb2a25b1bb0bff70ddefc40631bf0af12e7acfde2571bdaa51acf3772db191b05250087581952e0ff1ba8a0d4ac4d49c4bc1b0924bdf5a0b56d6bd8669f1b6c6bc062413a8f349f410e4110ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 178, 24, 164, 115, 69, 114, 142, 239, 159, 191, 27, 41, 245, 177, 196, 109, 213, 128, 77, 66, + 202, 83, 255, 159, 27, 155, 253, 142, 188, 20, 35, 193, 218, 67, 53, 82, 185, 255, 159, 191, 27, 57, 23, 21, 205, + 126, 128, 237, 194, 27, 214, 253, 132, 215, 107, 75, 0, 55, 27, 107, 211, 250, 149, 26, 49, 113, 225, 27, 123, + 172, 235, 209, 163, 136, 246, 195, 27, 127, 160, 34, 164, 24, 214, 97, 143, 69, 113, 108, 178, 162, 91, 27, 176, + 191, 247, 13, 222, 252, 64, 99, 27, 240, 175, 18, 231, 172, 253, 226, 87, 27, 218, 165, 26, 207, 55, 114, 219, 25, + 27, 5, 37, 0, 135, 88, 25, 82, 224, 255, 27, 168, 160, 212, 172, 77, 73, 196, 188, 27, 9, 36, 189, 245, 160, 181, + 109, 107, 216, 102, 159, 27, 108, 107, 192, 98, 65, 58, 143, 52, 159, 65, 14, 65, 16, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2598, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "671933321153527690" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14123481232279302805" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10619655770044223338" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28e70646eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51a08f754514d0e3f7573b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8825be8fc90e2a84c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64620f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c6b" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15644340860473475577" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02feb4" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5a04020004000403" + }, + { + "_tag": "ByteArray", + "bytearray": "ffbb" + } + ] + }, + "cborHex": "9fbf1b09532fcba81abf8a1bc400af59f1e772951b936098a85269cf6a4528e70646eb4b51a08f754514d0e3f7573b498825be8fc90e2a84c64364620f427c6bffd8669f1bd91bdd2015a681f99f4302feb4ffff485a0402000400040342ffbbff", + "cborBytes": [ + 159, 191, 27, 9, 83, 47, 203, 168, 26, 191, 138, 27, 196, 0, 175, 89, 241, 231, 114, 149, 27, 147, 96, 152, 168, + 82, 105, 207, 106, 69, 40, 231, 6, 70, 235, 75, 81, 160, 143, 117, 69, 20, 208, 227, 247, 87, 59, 73, 136, 37, + 190, 143, 201, 14, 42, 132, 198, 67, 100, 98, 15, 66, 124, 107, 255, 216, 102, 159, 27, 217, 27, 221, 32, 21, 166, + 129, 249, 159, 67, 2, 254, 180, 255, 255, 72, 90, 4, 2, 0, 4, 0, 4, 3, 66, 255, 187, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2599, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17629109741786884448" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "523467157301220292" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13525520703375791975" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12288356716137424493" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13591519957396580209" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea" + }, + { + "_tag": "ByteArray", + "bytearray": "a3853b868f1d6b9850" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04adfa00" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6885273752316891699" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ba0" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bf4a72de83995e960d8669f1b0743ba9b2a85d3c49f1bbbb44d6b1ee7d7671baa890353aaa8266d1bbc9ec763ea41677141ea49a3853b868f1d6b9850ffff4404adfa00bf1b5f8d67ff7c2b5233428ba0ffff", + "cborBytes": [ + 191, 27, 244, 167, 45, 232, 57, 149, 233, 96, 216, 102, 159, 27, 7, 67, 186, 155, 42, 133, 211, 196, 159, 27, 187, + 180, 77, 107, 30, 231, 215, 103, 27, 170, 137, 3, 83, 170, 168, 38, 109, 27, 188, 158, 199, 99, 234, 65, 103, 113, + 65, 234, 73, 163, 133, 59, 134, 143, 29, 107, 152, 80, 255, 255, 68, 4, 173, 250, 0, 191, 27, 95, 141, 103, 255, + 124, 43, 82, 51, 66, 139, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2600, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12260106388486049261" + } + }, + "cborHex": "1baa24a5cdb2354ded", + "cborBytes": [27, 170, 36, 165, 205, 178, 53, 77, 237], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2601, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13072300279798430982" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6234701145581211171" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2709357491576162618" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9321732373495164787" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "76df1c424aaac1410bc8e457" + } + ] + }, + "cborHex": "9fd8669f1bb56a23d82e9ffd069f1b56861ba8b716ce231b25999248a6f0c93affff9fa01b815d72347d702f73ff4c76df1c424aaac1410bc8e457ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 181, 106, 35, 216, 46, 159, 253, 6, 159, 27, 86, 134, 27, 168, 183, 22, 206, 35, 27, 37, + 153, 146, 72, 166, 240, 201, 58, 255, 255, 159, 160, 27, 129, 93, 114, 52, 125, 112, 47, 115, 255, 76, 118, 223, + 28, 66, 74, 170, 193, 65, 11, 200, 228, 87, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2602, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18196790754958120418" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8483698278349154657" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a774c8eec236dd33c3b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a6c2fbd5ab00c68556" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4048385543127833617" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "81815776527016309" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10694829893356055567" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c276a52b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2267623086840338869" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "940cbcb789060761" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d993685c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a702e4ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "357002648121413331" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "becf0631998a1ba297ba0590" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13820376284130067187" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c75af4782321b315" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3306588110843568802" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6937141335644106886" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4df777c7bf51893d2bd12" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9684721864633488729" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7810338586698059950" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10149183927082545273" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4919960221090783844" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11739366809728219403" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3591360763626670836" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16405556933902214683" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3441930803410217362" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4887794c2766bc3fea52" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2256753822608630235" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e2ded27752e4b6e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a324ae7220f5790f4a58" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da8f13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31d77400da69ac4e334525" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16161577630196981509" + } + } + ] + }, + "cborHex": "9f1bfc87fcc7e96415e29fbf1b75bc26a2b69829614a2a774c8eec236dd33c3bff49a6c2fbd5ab00c68556809f1b382ec133c3f61c111b0122ab03e8ea6175ffffd8669f1b946bab1fd6b76c0f9fbf451c276a52b31b1f78372edf97d9b548940cbcb78906076144d993685c44a702e4ec1b04f4540459268ed34cbecf0631998a1ba297ba05901bbfcbd701c5ce42f3ffbf48c75af4782321b3151b2de35c5e255c62a2ffbf1b6045ad4a4bbef0864be4df777c7bf51893d2bd121b86670b3959f015591b6c63e5904baa10ae1b8cd925024ddbf0791b444735c1072b22641ba2ea9bea65dc790b1b31d71396303e4af41be3ac3f1c6bb0261b41f3ff1b2fc431d45ebda992ffffbf4a4887794c2766bc3fea521b1f5199a51617a1db485e2ded27752e4b6e4aa324ae7220f5790f4a5843da8f134b31d77400da69ac4e334525ff1be049753a19ca5f05ff", + "cborBytes": [ + 159, 27, 252, 135, 252, 199, 233, 100, 21, 226, 159, 191, 27, 117, 188, 38, 162, 182, 152, 41, 97, 74, 42, 119, + 76, 142, 236, 35, 109, 211, 60, 59, 255, 73, 166, 194, 251, 213, 171, 0, 198, 133, 86, 128, 159, 27, 56, 46, 193, + 51, 195, 246, 28, 17, 27, 1, 34, 171, 3, 232, 234, 97, 117, 255, 255, 216, 102, 159, 27, 148, 107, 171, 31, 214, + 183, 108, 15, 159, 191, 69, 28, 39, 106, 82, 179, 27, 31, 120, 55, 46, 223, 151, 217, 181, 72, 148, 12, 188, 183, + 137, 6, 7, 97, 68, 217, 147, 104, 92, 68, 167, 2, 228, 236, 27, 4, 244, 84, 4, 89, 38, 142, 211, 76, 190, 207, 6, + 49, 153, 138, 27, 162, 151, 186, 5, 144, 27, 191, 203, 215, 1, 197, 206, 66, 243, 255, 191, 72, 199, 90, 244, 120, + 35, 33, 179, 21, 27, 45, 227, 92, 94, 37, 92, 98, 162, 255, 191, 27, 96, 69, 173, 74, 75, 190, 240, 134, 75, 228, + 223, 119, 124, 123, 245, 24, 147, 210, 189, 18, 27, 134, 103, 11, 57, 89, 240, 21, 89, 27, 108, 99, 229, 144, 75, + 170, 16, 174, 27, 140, 217, 37, 2, 77, 219, 240, 121, 27, 68, 71, 53, 193, 7, 43, 34, 100, 27, 162, 234, 155, 234, + 101, 220, 121, 11, 27, 49, 215, 19, 150, 48, 62, 74, 244, 27, 227, 172, 63, 28, 107, 176, 38, 27, 65, 243, 255, + 27, 47, 196, 49, 212, 94, 189, 169, 146, 255, 255, 191, 74, 72, 135, 121, 76, 39, 102, 188, 63, 234, 82, 27, 31, + 81, 153, 165, 22, 23, 161, 219, 72, 94, 45, 237, 39, 117, 46, 75, 110, 74, 163, 36, 174, 114, 32, 245, 121, 15, + 74, 88, 67, 218, 143, 19, 75, 49, 215, 116, 0, 218, 105, 172, 78, 51, 69, 37, 255, 27, 224, 73, 117, 58, 25, 202, + 95, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2603, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2089941107005033714" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1bff" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16950459943236192949" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10103651001142174370" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e0cab4f790048a9a011d31" + }, + { + "_tag": "ByteArray", + "bytearray": "ac333b70" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6961217327812750486" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d59a6fba00" + }, + { + "_tag": "ByteArray", + "bytearray": "0506fed701050001" + }, + { + "_tag": "ByteArray", + "bytearray": "6e534727" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1312694162560836041" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15812889863310543488" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a084fba77bd8def73742c4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16482157766753777723" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17866722834583360434" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f9f9f0a1b1d00f65d24858cf213421bffffd87a9f1beb3c2182d014cab51b8c37610dd99962a24be0cab4f790048a9a011d3144ac333b701b609b36470c92ac96ffff45d59a6fba00480506fed701050001446e534727d8669f1b1237a062ca2ae1c99f9f1bdb72ab8ce7000a80ff4ba084fba77bd8def73742c49f1be4bc6329a34df83b1bf7f359c18fb393b2ff9f0bff80ffffff", + "cborBytes": [ + 159, 159, 159, 10, 27, 29, 0, 246, 93, 36, 133, 140, 242, 19, 66, 27, 255, 255, 216, 122, 159, 27, 235, 60, 33, + 130, 208, 20, 202, 181, 27, 140, 55, 97, 13, 217, 153, 98, 162, 75, 224, 202, 180, 247, 144, 4, 138, 154, 1, 29, + 49, 68, 172, 51, 59, 112, 27, 96, 155, 54, 71, 12, 146, 172, 150, 255, 255, 69, 213, 154, 111, 186, 0, 72, 5, 6, + 254, 215, 1, 5, 0, 1, 68, 110, 83, 71, 39, 216, 102, 159, 27, 18, 55, 160, 98, 202, 42, 225, 201, 159, 159, 27, + 219, 114, 171, 140, 231, 0, 10, 128, 255, 75, 160, 132, 251, 167, 123, 216, 222, 247, 55, 66, 196, 159, 27, 228, + 188, 99, 41, 163, 77, 248, 59, 27, 247, 243, 89, 193, 143, 179, 147, 178, 255, 159, 11, 255, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2604, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9300230608240675654" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17644274028562996884" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "49a015c8427559f510cf42b3" + }, + { + "_tag": "ByteArray", + "bytearray": "6e3aa4379eead738" + }, + { + "_tag": "ByteArray", + "bytearray": "bff354922977190740" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18030954803604814809" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13327902617149626287" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16637126202440813660" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4383365660860319747" + }, + "fields": [] + } + ] + }, + "cborHex": "d905029fd8669f1b81110e76a5668b469fd8669f1bf4dd0dbee025de949f4c49a015c8427559f510cf42b3486e3aa4379eead73849bff3549229771907401bfa3ad1dc9dfcfbd9ffff9f1bb8f638d0e833d7afff1be6e2f22243d40c5cffffd8669f1b3cd4d7d83039880380ffff", + "cborBytes": [ + 217, 5, 2, 159, 216, 102, 159, 27, 129, 17, 14, 118, 165, 102, 139, 70, 159, 216, 102, 159, 27, 244, 221, 13, 190, + 224, 37, 222, 148, 159, 76, 73, 160, 21, 200, 66, 117, 89, 245, 16, 207, 66, 179, 72, 110, 58, 164, 55, 158, 234, + 215, 56, 73, 191, 243, 84, 146, 41, 119, 25, 7, 64, 27, 250, 58, 209, 220, 157, 252, 251, 217, 255, 255, 159, 27, + 184, 246, 56, 208, 232, 51, 215, 175, 255, 27, 230, 226, 242, 34, 67, 212, 12, 92, 255, 255, 216, 102, 159, 27, + 60, 212, 215, 216, 48, 57, 136, 3, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2605, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1cacc285" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3966855394808416968" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "979d62e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13351316626776771874" + } + }, + { + "_tag": "ByteArray", + "bytearray": "78c1cb3f97d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7800242743141721683" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7937668504183471223" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15117262687009950961" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10974078369414680439" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4096351627705279145" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "369410902e7731" + } + ] + } + ] + }, + "cborHex": "9f9f441cacc285d8669f1b370d19f6dae5cac89f44979d62e51bb94967bbd6cbcd224678c1cb3f97d51b6c4007728ac7e653ffffd8669f1b6e284372f0a97c779f1bd1cb4e51b37eccf11b984bc22242428f771b38d92a1a1c7762a9ffff47369410902e7731ffff", + "cborBytes": [ + 159, 159, 68, 28, 172, 194, 133, 216, 102, 159, 27, 55, 13, 25, 246, 218, 229, 202, 200, 159, 68, 151, 157, 98, + 229, 27, 185, 73, 103, 187, 214, 203, 205, 34, 70, 120, 193, 203, 63, 151, 213, 27, 108, 64, 7, 114, 138, 199, + 230, 83, 255, 255, 216, 102, 159, 27, 110, 40, 67, 114, 240, 169, 124, 119, 159, 27, 209, 203, 78, 81, 179, 126, + 204, 241, 27, 152, 75, 194, 34, 66, 66, 143, 119, 27, 56, 217, 42, 26, 28, 119, 98, 169, 255, 255, 71, 54, 148, + 16, 144, 46, 119, 49, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2606, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + ] + }, + "cborHex": "9f1bffffffffffffffffff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2607, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7348795621844344109" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15001229179574412148" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9268603149696881048" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17643006913800518070" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b600" + }, + { + "_tag": "ByteArray", + "bytearray": "1f074c8ec6ebdcd7" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bdb3eb31e46ffa57eb08" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17627902928320035499" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3076768142837826391" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13096043741904399134" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6876310979813385404" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "279e7c1aea88942b74" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10714792309352423785" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf5730" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2770519642429809710" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b65fc2aaeb6fa5d2d9f1bd02f12757ac1e3749fd8669f1b80a0b1751dbfd1989f1bf4d88d4fbad739b642b600481f074c8ec6ebdcd7ffff4abdb3eb31e46ffa57eb081bf4a2e45111957aabbf1b2ab2e053121643571bb5be7e65bf306b1e1b5f6d906764e524bc49279e7c1aea88942b741b94b296d60109e16943cf5730ff1b2672dcef9a45642effffff", + "cborBytes": [ + 216, 102, 159, 27, 101, 252, 42, 174, 182, 250, 93, 45, 159, 27, 208, 47, 18, 117, 122, 193, 227, 116, 159, 216, + 102, 159, 27, 128, 160, 177, 117, 29, 191, 209, 152, 159, 27, 244, 216, 141, 79, 186, 215, 57, 182, 66, 182, 0, + 72, 31, 7, 76, 142, 198, 235, 220, 215, 255, 255, 74, 189, 179, 235, 49, 228, 111, 250, 87, 235, 8, 27, 244, 162, + 228, 81, 17, 149, 122, 171, 191, 27, 42, 178, 224, 83, 18, 22, 67, 87, 27, 181, 190, 126, 101, 191, 48, 107, 30, + 27, 95, 109, 144, 103, 100, 229, 36, 188, 73, 39, 158, 124, 26, 234, 136, 148, 43, 116, 27, 148, 178, 150, 214, 1, + 9, 225, 105, 67, 207, 87, 48, 255, 27, 38, 114, 220, 239, 154, 69, 100, 46, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2608, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef635282b518e65f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "486853574602026080" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d83d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "deaafd1336d448" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fec9" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "36407ed8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e1a3ca9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11725170320816012405" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68cf1b26" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "754456ec24af8c49" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d7c1fbb12c03fff12be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6469912571675453953" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "acfce862" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03f7473cb87cc35c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c68d8da4d400b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e13c543600a5f6" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf48ef635282b518e65f1b06c1a6bf23c86c60ffbf411042d83d47deaafd1336d44842fec9ff4436407ed8bf443e1a3ca91ba2b82c48bf30fc754468cf1b2648754456ec24af8c494a9d7c1fbb12c03fff12be1b59c9bf34728caa0144acfce8624803f7473cb87cc35c47c68d8da4d400b447e13c543600a5f6ffa0ff", + "cborBytes": [ + 159, 191, 72, 239, 99, 82, 130, 181, 24, 230, 95, 27, 6, 193, 166, 191, 35, 200, 108, 96, 255, 191, 65, 16, 66, + 216, 61, 71, 222, 170, 253, 19, 54, 212, 72, 66, 254, 201, 255, 68, 54, 64, 126, 216, 191, 68, 62, 26, 60, 169, + 27, 162, 184, 44, 72, 191, 48, 252, 117, 68, 104, 207, 27, 38, 72, 117, 68, 86, 236, 36, 175, 140, 73, 74, 157, + 124, 31, 187, 18, 192, 63, 255, 18, 190, 27, 89, 201, 191, 52, 114, 140, 170, 1, 68, 172, 252, 232, 98, 72, 3, + 247, 71, 60, 184, 124, 195, 92, 71, 198, 141, 141, 164, 212, 0, 180, 71, 225, 60, 84, 54, 0, 165, 246, 255, 160, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2609, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "729a941a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2931314792976709133" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c6886d21495" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7776670560101203006" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2494409977464734930" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12547720170266791873" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7fdd53cefd1016670d0d640c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13327417322335350719" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60f373bc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17130286831375839363" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2475802674605637126" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17309811725925254976" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14328669187857234876" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17909626685471967653" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e1de14b6eaa44" + } + } + ] + } + ] + }, + "cborHex": "d905069f44729a941a1b28ae1f460039760d460c6886d21495bf1b6bec48abfe11fc3e1b229deca896f9c4d21bae227503a1c18fc14c7fdd53cefd1016670d0d640c1bb8f47f71672fafbf4460f373bc1bedbb011cecb570831b225bd16a49d4be061bf038ce0dacaa87401bc6d9a8b5b650bbbc1bf88bc694c769c9a5475e1de14b6eaa44ffff", + "cborBytes": [ + 217, 5, 6, 159, 68, 114, 154, 148, 26, 27, 40, 174, 31, 70, 0, 57, 118, 13, 70, 12, 104, 134, 210, 20, 149, 191, + 27, 107, 236, 72, 171, 254, 17, 252, 62, 27, 34, 157, 236, 168, 150, 249, 196, 210, 27, 174, 34, 117, 3, 161, 193, + 143, 193, 76, 127, 221, 83, 206, 253, 16, 22, 103, 13, 13, 100, 12, 27, 184, 244, 127, 113, 103, 47, 175, 191, 68, + 96, 243, 115, 188, 27, 237, 187, 1, 28, 236, 181, 112, 131, 27, 34, 91, 209, 106, 73, 212, 190, 6, 27, 240, 56, + 206, 13, 172, 170, 135, 64, 27, 198, 217, 168, 181, 182, 80, 187, 188, 27, 248, 139, 198, 148, 199, 105, 201, 165, + 71, 94, 29, 225, 75, 110, 170, 68, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2610, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11420831167868816520" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4f2daf9cfdb27527dc87" + } + ] + }, + "cborHex": "d8669f1b9e7ef16fe087cc889f4a4f2daf9cfdb27527dc87ffff", + "cborBytes": [ + 216, 102, 159, 27, 158, 126, 241, 111, 224, 135, 204, 136, 159, 74, 79, 45, 175, 156, 253, 178, 117, 39, 220, 135, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2611, + "sample": { + "_tag": "ByteArray", + "bytearray": "05fe" + }, + "cborHex": "4205fe", + "cborBytes": [66, 5, 254], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2612, + "sample": { + "_tag": "ByteArray", + "bytearray": "0304" + }, + "cborHex": "420304", + "cborBytes": [66, 3, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2613, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8fcaf9479e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2705132100848173434" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b09082685ca8f296f805a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14332013219744249059" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7783220025543807103" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9554645380011503520" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17520172740030424517" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9804473045592471724" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17357614723481918513" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10697312663351193942" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb590186" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16262930660467961455" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f16b" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11104956229891414268" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5769515293308705025" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15675254314184017091" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11226189876658280713" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7e94712daa42" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8729043992184059731" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "848567897107306590" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8163413264245825181" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3137033781141351081" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5102180294614326332" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3686933762604284286" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9091873752959587995" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15065378908204006230" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ce834" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16421090255718108348" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2608614392089022839" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5a410af858" + } + ] + }, + "cborHex": "9f458fcaf9479ebf1b258a8f50358fc17a4b9b09082685ca8f296f805a1bc6e58a16cf0ef4e34104ffbf091b6c038d603f3ed07f1b8498eb59b669afa01bf3242847fcfee5c51b88107c49e46e78ac1bf0e2a2a05d3adc311b94747d30c655f15644cb5901861be1b1894560006e6f42af061bfffffffffffffff542f16bffd8669f1b9a1cbadac0f058fc9f9f1b50116f974fd959011bd989b0bf68d904c31b9bcb7036c34d9909467e94712daa42ffd8669f1b7923cb432ee3775380ffbf1b0bc6b801aae1985e1b714a451cba159e9d1b2b88fb9a6d54aaa91b46ce95f2087c1c3c1b332a9eb90e6c397e1b7e2cd301ebda969b1bd112fa4c16297b56434ce8341be3e36e95bcb4ccbc1b2433a8f7f4701177ffffff455a410af858ff", + "cborBytes": [ + 159, 69, 143, 202, 249, 71, 158, 191, 27, 37, 138, 143, 80, 53, 143, 193, 122, 75, 155, 9, 8, 38, 133, 202, 143, + 41, 111, 128, 90, 27, 198, 229, 138, 22, 207, 14, 244, 227, 65, 4, 255, 191, 9, 27, 108, 3, 141, 96, 63, 62, 208, + 127, 27, 132, 152, 235, 89, 182, 105, 175, 160, 27, 243, 36, 40, 71, 252, 254, 229, 197, 27, 136, 16, 124, 73, + 228, 110, 120, 172, 27, 240, 226, 162, 160, 93, 58, 220, 49, 27, 148, 116, 125, 48, 198, 85, 241, 86, 68, 203, 89, + 1, 134, 27, 225, 177, 137, 69, 96, 0, 110, 111, 66, 175, 6, 27, 255, 255, 255, 255, 255, 255, 255, 245, 66, 241, + 107, 255, 216, 102, 159, 27, 154, 28, 186, 218, 192, 240, 88, 252, 159, 159, 27, 80, 17, 111, 151, 79, 217, 89, 1, + 27, 217, 137, 176, 191, 104, 217, 4, 195, 27, 155, 203, 112, 54, 195, 77, 153, 9, 70, 126, 148, 113, 45, 170, 66, + 255, 216, 102, 159, 27, 121, 35, 203, 67, 46, 227, 119, 83, 128, 255, 191, 27, 11, 198, 184, 1, 170, 225, 152, 94, + 27, 113, 74, 69, 28, 186, 21, 158, 157, 27, 43, 136, 251, 154, 109, 84, 170, 169, 27, 70, 206, 149, 242, 8, 124, + 28, 60, 27, 51, 42, 158, 185, 14, 108, 57, 126, 27, 126, 44, 211, 1, 235, 218, 150, 155, 27, 209, 18, 250, 76, 22, + 41, 123, 86, 67, 76, 232, 52, 27, 227, 227, 110, 149, 188, 180, 204, 188, 27, 36, 51, 168, 247, 244, 112, 17, 119, + 255, 255, 255, 69, 90, 65, 10, 248, 88, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2614, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6928794658556103681" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba78ecd4ed423a025ce6a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14279541232769440407" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64c42a2219c0" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d5ed8b240fe69f9d7145232c" + } + ] + } + ] + }, + "cborHex": "9fa09fbf1b6028060818dc4c014bba78ecd4ed423a025ce6a71bc62b1f184ec41a974664c42a2219c0ff4cd5ed8b240fe69f9d7145232cffff", + "cborBytes": [ + 159, 160, 159, 191, 27, 96, 40, 6, 8, 24, 220, 76, 1, 75, 186, 120, 236, 212, 237, 66, 58, 2, 92, 230, 167, 27, + 198, 43, 31, 24, 78, 196, 26, 151, 70, 100, 196, 42, 34, 25, 192, 255, 76, 213, 237, 139, 36, 15, 230, 159, 157, + 113, 69, 35, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2615, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "96ee8bcec0d75c" + }, + { + "_tag": "ByteArray", + "bytearray": "401ee1b63f249175" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3162179172057256079" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f902fa" + }, + { + "_tag": "ByteArray", + "bytearray": "225fee26" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2205533476810869442" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10759612142277613876" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "faf9ebf901044efe4e66fa" + }, + { + "_tag": "ByteArray", + "bytearray": "f8fcceff1a4000ac" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8055950563348929774" + } + }, + { + "_tag": "ByteArray", + "bytearray": "66549766f17c4c30c352538e" + }, + { + "_tag": "ByteArray", + "bytearray": "229bcaafa6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16515066079304804836" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf039f4796ee8bcec0d75c48401ee1b63f2491751b2be25133fa9c908f43f902fa44225fee26ff09131b1e9ba103018b4ac21bffffffffffffffeb1b9551d23c8d6fd9349f4bfaf9ebf901044efe4e66fa48f8fcceff1a4000ac1b6fcc7c5ae8855cee4c66549766f17c4c30c352538e45229bcaafa6ff1be5314d193b10e9e480ff", + "cborBytes": [ + 191, 3, 159, 71, 150, 238, 139, 206, 192, 215, 92, 72, 64, 30, 225, 182, 63, 36, 145, 117, 27, 43, 226, 81, 51, + 250, 156, 144, 143, 67, 249, 2, 250, 68, 34, 95, 238, 38, 255, 9, 19, 27, 30, 155, 161, 3, 1, 139, 74, 194, 27, + 255, 255, 255, 255, 255, 255, 255, 235, 27, 149, 81, 210, 60, 141, 111, 217, 52, 159, 75, 250, 249, 235, 249, 1, + 4, 78, 254, 78, 102, 250, 72, 248, 252, 206, 255, 26, 64, 0, 172, 27, 111, 204, 124, 90, 232, 133, 92, 238, 76, + 102, 84, 151, 102, 241, 124, 76, 48, 195, 82, 83, 142, 69, 34, 155, 202, 175, 166, 255, 27, 229, 49, 77, 25, 59, + 16, 233, 228, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2616, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17556107147064249027" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12267775278525043248" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "454b4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3588" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ab7fa420b5cad5c7dc6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33b1f31c56a9dccca831ea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d2ba7f2794c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8322133065806245025" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffeb0d1bfffffffffffffff4bf1bf3a3d26f1b760ac31baa3fe49e4ccdd23043454b4c4235884a4ab7fa420b5cad5c7dc64b33b1f31c56a9dccca831ea468d2ba7f2794c1b737e27ee48e9eca1ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 235, 13, 27, 255, 255, 255, 255, 255, 255, 255, 244, 191, 27, 243, + 163, 210, 111, 27, 118, 10, 195, 27, 170, 63, 228, 158, 76, 205, 210, 48, 67, 69, 75, 76, 66, 53, 136, 74, 74, + 183, 250, 66, 11, 92, 173, 92, 125, 198, 75, 51, 177, 243, 28, 86, 169, 220, 204, 168, 49, 234, 70, 141, 43, 167, + 242, 121, 76, 27, 115, 126, 39, 238, 72, 233, 236, 161, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2617, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "124357939155325962" + } + }, + "cborHex": "1b01b9cee3045a540a", + "cborBytes": [27, 1, 185, 206, 227, 4, 90, 84, 10], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2618, + "sample": { + "_tag": "ByteArray", + "bytearray": "8006bd020311881ee8" + }, + "cborHex": "498006bd020311881ee8", + "cborBytes": [73, 128, 6, 189, 2, 3, 17, 136, 30, 232], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2619, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3229600272608384037" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10592208704097642275" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "76ca22" + } + ] + }, + "cborHex": "d8669f1b2cd1d8563753d4259fd8669f1b92ff15b24a8a672380ff4376ca22ffff", + "cborBytes": [ + 216, 102, 159, 27, 44, 209, 216, 86, 55, 83, 212, 37, 159, 216, 102, 159, 27, 146, 255, 21, 178, 74, 138, 103, 35, + 128, 255, 67, 118, 202, 34, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2620, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01f8c00200fc06d9f89c7933" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dc57d9d8672bd8" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7130a51e7ad8e7b0e8571b" + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffeb9fd9050c9f1bfffffffffffffff34c01f8c00200fc06d9f89c7933ff139f47dc57d9d8672bd8ffffff4b7130a51e7ad8e7b0e8571bff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 217, 5, 12, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 243, 76, 1, 248, 192, 2, 0, 252, 6, 217, 248, 156, 121, 51, 255, 19, 159, 71, 220, 87, 217, 216, 103, + 43, 216, 255, 255, 255, 75, 113, 48, 165, 30, 122, 216, 231, 176, 232, 87, 27, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2621, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "246895012794464281" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16364083554003417440" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b1097cecd8121c1f" + }, + { + "_tag": "ByteArray", + "bytearray": "9c2005751cf596" + }, + { + "_tag": "ByteArray", + "bytearray": "dd27f67c07dbf728e4e28e" + } + ] + } + ] + }, + "cborHex": "9f1b036d25b4be6df8199f1be318e74aaf2f796048b1097cecd8121c1f479c2005751cf5964bdd27f67c07dbf728e4e28effff", + "cborBytes": [ + 159, 27, 3, 109, 37, 180, 190, 109, 248, 25, 159, 27, 227, 24, 231, 74, 175, 47, 121, 96, 72, 177, 9, 124, 236, + 216, 18, 28, 31, 71, 156, 32, 5, 117, 28, 245, 150, 75, 221, 39, 246, 124, 7, 219, 247, 40, 228, 226, 142, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2622, + "sample": { + "_tag": "ByteArray", + "bytearray": "5e" + }, + "cborHex": "415e", + "cborBytes": [65, 94], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2623, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6467298221281679502" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9404775774522319177" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04e68ec4a9f901c9d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2072634677607220707" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e9eaafd5c9955fe44" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5252455592286064269" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "964779355858876062" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8498764725826535029" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2580835594938170544" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9673729713812428846" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1e6f0e6244e625415d02d31" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11638240208168054321" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13616892572775547123" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13043644688358317814" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "412a6174" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17784093260700381029" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5cb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17915714417002363472" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13371819997282739992" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8888570754240713679" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8bdc78d40b9b77" + }, + { + "_tag": "ByteArray", + "bytearray": "722bb0d107982798276c0118" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4308158576760927916" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31d3d2d5aaf27d3657ac63" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a69e333223cb96747754b387" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b59c075779002988e9fd8669f1b828479bd009a21499f4904e68ec4a9f901c9d31b1cc37a420bef45e3498e9eaafd5c9955fe441b48e4788850b98e8d1b0d6395b66899369effffffffbf1b75f1ad7d6082be751b23d0f84cbbf93cb01b863ffdebccee582e4ca1e6f0e6244e625415d02d311ba18355ceaa866e311bbcf8eba648f100f31bb50455bc62021ef644412a61741bf6cdca98b076ef6542b5cb1bf8a167573ac53a501bb9923f70ca80a718ffd8669f1b7b5a8c01df7193cf9f9f478bdc78d40b9b774c722bb0d107982798276c01181b3bc9a76663e336ac4b31d3d2d5aaf27d3657ac63ff9f4ca69e333223cb96747754b387ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 89, 192, 117, 119, 144, 2, 152, 142, 159, 216, 102, 159, 27, 130, 132, 121, 189, 0, 154, + 33, 73, 159, 73, 4, 230, 142, 196, 169, 249, 1, 201, 211, 27, 28, 195, 122, 66, 11, 239, 69, 227, 73, 142, 158, + 170, 253, 92, 153, 85, 254, 68, 27, 72, 228, 120, 136, 80, 185, 142, 141, 27, 13, 99, 149, 182, 104, 153, 54, 158, + 255, 255, 255, 255, 191, 27, 117, 241, 173, 125, 96, 130, 190, 117, 27, 35, 208, 248, 76, 187, 249, 60, 176, 27, + 134, 63, 253, 235, 204, 238, 88, 46, 76, 161, 230, 240, 230, 36, 78, 98, 84, 21, 208, 45, 49, 27, 161, 131, 85, + 206, 170, 134, 110, 49, 27, 188, 248, 235, 166, 72, 241, 0, 243, 27, 181, 4, 85, 188, 98, 2, 30, 246, 68, 65, 42, + 97, 116, 27, 246, 205, 202, 152, 176, 118, 239, 101, 66, 181, 203, 27, 248, 161, 103, 87, 58, 197, 58, 80, 27, + 185, 146, 63, 112, 202, 128, 167, 24, 255, 216, 102, 159, 27, 123, 90, 140, 1, 223, 113, 147, 207, 159, 159, 71, + 139, 220, 120, 212, 11, 155, 119, 76, 114, 43, 176, 209, 7, 152, 39, 152, 39, 108, 1, 24, 27, 59, 201, 167, 102, + 99, 227, 54, 172, 75, 49, 211, 210, 213, 170, 242, 125, 54, 87, 172, 99, 255, 159, 76, 166, 158, 51, 50, 35, 203, + 150, 116, 119, 84, 179, 135, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2624, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4983661950172925829" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2ab44fd0e023" + } + ] + }, + "cborHex": "9f1b452986239cb00f85462ab44fd0e023ff", + "cborBytes": [159, 27, 69, 41, 134, 35, 156, 176, 15, 133, 70, 42, 180, 79, 208, 224, 35, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2625, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8523492776789026144" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "710992219862654303" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15574762072326603693" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8376983340071244281" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cf54f129fd428e6b8b15f2" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c3a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + }, + "cborHex": "bf1b76498785661e25609f1b09ddf3a82efadd5f1bd824ab960e4103ad1b744105f6f24fd1f94bcf54f129fd428e6b8b15f2ff421c3a07ff", + "cborBytes": [ + 191, 27, 118, 73, 135, 133, 102, 30, 37, 96, 159, 27, 9, 221, 243, 168, 46, 250, 221, 95, 27, 216, 36, 171, 150, + 14, 65, 3, 173, 27, 116, 65, 5, 246, 242, 79, 209, 249, 75, 207, 84, 241, 41, 253, 66, 142, 107, 139, 21, 242, + 255, 66, 28, 58, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2626, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9c2cca2b" + } + ] + }, + "cborHex": "d9050a9f449c2cca2bff", + "cborBytes": [217, 5, 10, 159, 68, 156, 44, 202, 43, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2627, + "sample": { + "_tag": "ByteArray", + "bytearray": "c3" + }, + "cborHex": "41c3", + "cborBytes": [65, 195], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2628, + "sample": { + "_tag": "ByteArray", + "bytearray": "4e772eacf349" + }, + "cborHex": "464e772eacf349", + "cborBytes": [70, 78, 119, 46, 172, 243, 73], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2629, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8d009cfe07a8fb20faeb06" + } + ] + }, + "cborHex": "9f4b8d009cfe07a8fb20faeb06ff", + "cborBytes": [159, 75, 141, 0, 156, 254, 7, 168, 251, 32, 250, 235, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2630, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "942f1f8065da19" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1560063645483569321" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3015993181642487286" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1475232896074710591" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16373549253820093035" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8613e87d3799dbad00" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cbc1193cea642" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1042532801156303239" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c316811cbb53d36da2170ac1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c61c711cf34958" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6143588467744640734" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a360c1d9821bcfe4aafd" + }, + { + "_tag": "ByteArray", + "bytearray": "fedebcc8" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4289092314288488427" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6e063f5efd68a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10995072818353088448" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15554d2d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14321964386377429029" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95d5f32e00216c0a00f68a9e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15270693108113963940" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13a2c1de99f6e7" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14087015788863891977" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2312675542793221740" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2732028862918001493" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10590881369048649358" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "127755310459869650" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13683526290491384422" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8e49a7870257576d37ffcce" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13783639397522668765" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb544f2a2a7244" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15838861543540840189" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f4da8f5c13b5922" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17504473973753896610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14441858846025495385" + } + } + } + ] + } + ] + }, + "cborHex": "d87f9f9f9f47942f1f8065da191b15a6759eb80c90a9ffbf1b29daf5d1bcccf5f61b14791480bb80fe3f1be33a884baa4f126b498613e87d3799dbad00474cbc1193cea6421b0e77d20f1f9d49874cc316811cbb53d36da2170ac147c61c711cf34958ff9f1b554269294a1b0ede4aa360c1d9821bcfe4aafd44fedebcc8ffbf1b3b85eabc3a05ffeb47b6e063f5efd68a1b98965879517d27c04415554d2d1bc6c1d6ba77d270254c95d5f32e00216c0a00f68a9e1bd3ec667967237ba44713a2c1de99f6e7ff1bc37f2239488d2a09ffbf1b2018462730ec766c1b25ea1dc6a25783551b92fa5e7e04728e8e1b01c5e0c72a2159d21bbde5a6a9ab7522664cc8e49a7870257576d37ffcce1bbf495300d16afcdd47fb544f2a2a72441bdbcef0a7ed58d6fd488f4da8f5c13b59221bf2ec625621abdea21bc86bca1aadaeb359ffff", + "cborBytes": [ + 216, 127, 159, 159, 159, 71, 148, 47, 31, 128, 101, 218, 25, 27, 21, 166, 117, 158, 184, 12, 144, 169, 255, 191, + 27, 41, 218, 245, 209, 188, 204, 245, 246, 27, 20, 121, 20, 128, 187, 128, 254, 63, 27, 227, 58, 136, 75, 170, 79, + 18, 107, 73, 134, 19, 232, 125, 55, 153, 219, 173, 0, 71, 76, 188, 17, 147, 206, 166, 66, 27, 14, 119, 210, 15, + 31, 157, 73, 135, 76, 195, 22, 129, 28, 187, 83, 211, 109, 162, 23, 10, 193, 71, 198, 28, 113, 28, 243, 73, 88, + 255, 159, 27, 85, 66, 105, 41, 74, 27, 14, 222, 74, 163, 96, 193, 217, 130, 27, 207, 228, 170, 253, 68, 254, 222, + 188, 200, 255, 191, 27, 59, 133, 234, 188, 58, 5, 255, 235, 71, 182, 224, 99, 245, 239, 214, 138, 27, 152, 150, + 88, 121, 81, 125, 39, 192, 68, 21, 85, 77, 45, 27, 198, 193, 214, 186, 119, 210, 112, 37, 76, 149, 213, 243, 46, + 0, 33, 108, 10, 0, 246, 138, 158, 27, 211, 236, 102, 121, 103, 35, 123, 164, 71, 19, 162, 193, 222, 153, 246, 231, + 255, 27, 195, 127, 34, 57, 72, 141, 42, 9, 255, 191, 27, 32, 24, 70, 39, 48, 236, 118, 108, 27, 37, 234, 29, 198, + 162, 87, 131, 85, 27, 146, 250, 94, 126, 4, 114, 142, 142, 27, 1, 197, 224, 199, 42, 33, 89, 210, 27, 189, 229, + 166, 169, 171, 117, 34, 102, 76, 200, 228, 154, 120, 112, 37, 117, 118, 211, 127, 252, 206, 27, 191, 73, 83, 0, + 209, 106, 252, 221, 71, 251, 84, 79, 42, 42, 114, 68, 27, 219, 206, 240, 167, 237, 88, 214, 253, 72, 143, 77, 168, + 245, 193, 59, 89, 34, 27, 242, 236, 98, 86, 33, 171, 222, 162, 27, 200, 107, 202, 26, 173, 174, 179, 89, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2631, + "sample": { + "_tag": "ByteArray", + "bytearray": "2e03" + }, + "cborHex": "422e03", + "cborBytes": [66, 46, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2632, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446311632463945782" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "648b95dbceb146febdd648a6" + }, + { + "_tag": "ByteArray", + "bytearray": "fc1140b5abfdc4ee649f" + } + ] + } + ] + } + ] + }, + "cborHex": "9f09d8669f1bfffe76b26d2b60369fd8669f1bfffffffffffffffa9f4c648b95dbceb146febdd648a64afc1140b5abfdc4ee649fffffffffff", + "cborBytes": [ + 159, 9, 216, 102, 159, 27, 255, 254, 118, 178, 109, 43, 96, 54, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 250, 159, 76, 100, 139, 149, 219, 206, 177, 70, 254, 189, 214, 72, 166, 74, 252, 17, 64, 181, 171, 253, + 196, 238, 100, 159, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2633, + "sample": { + "_tag": "ByteArray", + "bytearray": "b051865edd554e8a31" + }, + "cborHex": "49b051865edd554e8a31", + "cborBytes": [73, 176, 81, 134, 94, 221, 85, 78, 138, 49], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2634, + "sample": { + "_tag": "ByteArray", + "bytearray": "f0fc99f8f90707b8" + }, + "cborHex": "48f0fc99f8f90707b8", + "cborBytes": [72, 240, 252, 153, 248, 249, 7, 7, 184], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2635, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15464501400741017570" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "01af2361214d9a2748d0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15730869713799077443" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15265651695373833785" + } + } + ] + } + ] + }, + "cborHex": "9f1bd69cf216ebb2f7e2a04a01af2361214d9a2748d0d8669f1bda4f46a8b2f1de439f1bd3da7d560798d639ffffff", + "cborBytes": [ + 159, 27, 214, 156, 242, 22, 235, 178, 247, 226, 160, 74, 1, 175, 35, 97, 33, 77, 154, 39, 72, 208, 216, 102, 159, + 27, 218, 79, 70, 168, 178, 241, 222, 67, 159, 27, 211, 218, 125, 86, 7, 152, 214, 57, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2636, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3088475879255711821" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16690484514768424376" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15220837796354435610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7dcd56644be6cce8ed2c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17200470077371935669" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da61" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0725c9b3c903dc43" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11004859745546069273" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "145540b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17f7be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e8f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9079948371833547144" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10861323372143467191" + } + } + } + ] + } + ] + }, + "cborHex": "d9050d9fbf1b2adc7872e066204d1be7a0833c77ee0db81bd33b4755138baa1a4a7dcd56644be6cce8ed2c1beeb45867437d6bb542da61ffbf480725c9b3c903dc431b98b91da1e044e51944145540b44317f7be421e8f1b7e0274efc206698841cb1b96bb2c0fab425ab7ffff", + "cborBytes": [ + 217, 5, 13, 159, 191, 27, 42, 220, 120, 114, 224, 102, 32, 77, 27, 231, 160, 131, 60, 119, 238, 13, 184, 27, 211, + 59, 71, 85, 19, 139, 170, 26, 74, 125, 205, 86, 100, 75, 230, 204, 232, 237, 44, 27, 238, 180, 88, 103, 67, 125, + 107, 181, 66, 218, 97, 255, 191, 72, 7, 37, 201, 179, 201, 3, 220, 67, 27, 152, 185, 29, 161, 224, 68, 229, 25, + 68, 20, 85, 64, 180, 67, 23, 247, 190, 66, 30, 143, 27, 126, 2, 116, 239, 194, 6, 105, 136, 65, 203, 27, 150, 187, + 44, 15, 171, 66, 90, 183, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2637, + "sample": { + "_tag": "ByteArray", + "bytearray": "af0afb" + }, + "cborHex": "43af0afb", + "cborBytes": [67, 175, 10, 251], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2638, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4051950194010136716" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8268205101622865772" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4117336244797388891" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "282a30780b1da5976ba6" + } + ] + } + } + ] + }, + "cborHex": "bf1b383b6b3bb98ca08c1b72be90bbac4daf6c1b3923b78003fd385b9f4a282a30780b1da5976ba6ffff", + "cborBytes": [ + 191, 27, 56, 59, 107, 59, 185, 140, 160, 140, 27, 114, 190, 144, 187, 172, 77, 175, 108, 27, 57, 35, 183, 128, 3, + 253, 56, 91, 159, 74, 40, 42, 48, 120, 11, 29, 165, 151, 107, 166, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2639, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10881634637777632062" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "390c8b4beeefa6" + }, + { + "_tag": "ByteArray", + "bytearray": "df494830d6a24c5685" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "425674b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10787978363388730238" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4616a72bf70e5030a47a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4915055555720455529" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3f45fdc9eba3de18752ef14" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84db6f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d648368f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16378947997514945051" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f42d8989c8aa37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14402046519725820641" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15494368485044294711" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3103954642122749478" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6cf5210d0e4dc6b4df" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13930369603707483326" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "627607736480347036" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7d3b" + } + ] + }, + "cborHex": "9fd8669f1b9703550cb8527b3e9f80ffff9f47390c8b4beeefa649df494830d6a24c5685bf44425674b61b95b6992a12629b7e4a4616a72bf70e5030a47a1b4435c8fca20725694ca3f45fdc9eba3de18752ef144384db6f44d648368f1be34db66ca279521b47f42d8989c8aa371bc7de59011ee88ae1ffffd8669f1bd7070e0b6212943780ffbf1b2b13764d32a6b626496cf5210d0e4dc6b4df1bc1529d592ae234be1b08b5b5e93f32b39cff427d3bff", + "cborBytes": [ + 159, 216, 102, 159, 27, 151, 3, 85, 12, 184, 82, 123, 62, 159, 128, 255, 255, 159, 71, 57, 12, 139, 75, 238, 239, + 166, 73, 223, 73, 72, 48, 214, 162, 76, 86, 133, 191, 68, 66, 86, 116, 182, 27, 149, 182, 153, 42, 18, 98, 155, + 126, 74, 70, 22, 167, 43, 247, 14, 80, 48, 164, 122, 27, 68, 53, 200, 252, 162, 7, 37, 105, 76, 163, 244, 95, 220, + 158, 186, 61, 225, 135, 82, 239, 20, 67, 132, 219, 111, 68, 214, 72, 54, 143, 27, 227, 77, 182, 108, 162, 121, 82, + 27, 71, 244, 45, 137, 137, 200, 170, 55, 27, 199, 222, 89, 1, 30, 232, 138, 225, 255, 255, 216, 102, 159, 27, 215, + 7, 14, 11, 98, 18, 148, 55, 128, 255, 191, 27, 43, 19, 118, 77, 50, 166, 182, 38, 73, 108, 245, 33, 13, 14, 77, + 198, 180, 223, 27, 193, 82, 157, 89, 42, 226, 52, 190, 27, 8, 181, 181, 233, 63, 50, 179, 156, 255, 66, 125, 59, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2640, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1366bbe9158a852e64a511f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2701899227865254289" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a8d4a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12106022067767938743" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6c1d9ff3948c33d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0f8a7997e59c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3245370098282825803" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4010" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14926410645116027446" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10996074069225336461" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccd30a3249eb564b39de6901" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8976430112142308770" + } + }, + { + "_tag": "ByteArray", + "bytearray": "951b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2498567262329986136" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a" + } + ] + } + } + ] + }, + "cborHex": "bf4c1366bbe9158a852e64a511f21b257f13084fcf8991435a8d4a9f1ba8013aee20590eb7ff48b6c1d9ff3948c33d9f460f8a7997e59c1b2d09dee8e0d2884b4240101bcf254365f1c002361b9899e71b340f6e8dff4cccd30a3249eb564b39de69019f1b7c92afa0b95cb5a242951b1b22acb1afe6995c58410affff", + "cborBytes": [ + 191, 76, 19, 102, 187, 233, 21, 138, 133, 46, 100, 165, 17, 242, 27, 37, 127, 19, 8, 79, 207, 137, 145, 67, 90, + 141, 74, 159, 27, 168, 1, 58, 238, 32, 89, 14, 183, 255, 72, 182, 193, 217, 255, 57, 72, 195, 61, 159, 70, 15, + 138, 121, 151, 229, 156, 27, 45, 9, 222, 232, 224, 210, 136, 75, 66, 64, 16, 27, 207, 37, 67, 101, 241, 192, 2, + 54, 27, 152, 153, 231, 27, 52, 15, 110, 141, 255, 76, 204, 211, 10, 50, 73, 235, 86, 75, 57, 222, 105, 1, 159, 27, + 124, 146, 175, 160, 185, 92, 181, 162, 66, 149, 27, 27, 34, 172, 177, 175, 230, 153, 92, 88, 65, 10, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2641, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04f9fcc205013018d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6944655864215926622" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6713d93da" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6983099896602186233" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f8148063be845" + } + } + ] + } + } + ] + }, + "cborHex": "bf4904f9fcc205013018d11b60605fb6d1ec775e45c6713d93dabf1b60e8f45ba00a51f9479f8148063be845ffff", + "cborBytes": [ + 191, 73, 4, 249, 252, 194, 5, 1, 48, 24, 209, 27, 96, 96, 95, 182, 209, 236, 119, 94, 69, 198, 113, 61, 147, 218, + 191, 27, 96, 232, 244, 91, 160, 10, 81, 249, 71, 159, 129, 72, 6, 59, 232, 69, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2642, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15224291285163766347" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10737394788906459812" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10669721105924755848" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3b049d8c82" + }, + { + "_tag": "ByteArray", + "bytearray": "48296325a6290c843c4c1ed5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5777936587558712695" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6afafdb1e5d5c0f919cd5e" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ceb55ff9b1dfd5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bb4ed67810db81" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7261821124103903248" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2664358184810571837" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11926596218981771194" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3ecc76" + } + ] + } + ] + }, + "cborHex": "d8669f1bd3478c431942f24b9f9fd8669f1b9502e3abdde662a480ff9f1b941276d0b3221188453b049d8c824c48296325a6290c843c4c1ed51b502f5ab6ac2b75774b6afafdb1e5d5c0f919cd5eff47ceb55ff9b1dfd59f47bb4ed67810db811b64c72bd66ca418101b24f9b3a71809e83d1ba583c81243ece7baff433ecc76ffffff", + "cborBytes": [ + 216, 102, 159, 27, 211, 71, 140, 67, 25, 66, 242, 75, 159, 159, 216, 102, 159, 27, 149, 2, 227, 171, 221, 230, 98, + 164, 128, 255, 159, 27, 148, 18, 118, 208, 179, 34, 17, 136, 69, 59, 4, 157, 140, 130, 76, 72, 41, 99, 37, 166, + 41, 12, 132, 60, 76, 30, 213, 27, 80, 47, 90, 182, 172, 43, 117, 119, 75, 106, 250, 253, 177, 229, 213, 192, 249, + 25, 205, 94, 255, 71, 206, 181, 95, 249, 177, 223, 213, 159, 71, 187, 78, 214, 120, 16, 219, 129, 27, 100, 199, + 43, 214, 108, 164, 24, 16, 27, 36, 249, 179, 167, 24, 9, 232, 61, 27, 165, 131, 200, 18, 67, 236, 231, 186, 255, + 67, 62, 204, 118, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2643, + "sample": { + "_tag": "ByteArray", + "bytearray": "f90102720064e49b05fe02" + }, + "cborHex": "4bf90102720064e49b05fe02", + "cborBytes": [75, 249, 1, 2, 114, 0, 100, 228, 155, 5, 254, 2], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2644, + "sample": { + "_tag": "ByteArray", + "bytearray": "7b" + }, + "cborHex": "417b", + "cborBytes": [65, 123], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2645, + "sample": { + "_tag": "ByteArray", + "bytearray": "6a801a6812cc" + }, + "cborHex": "466a801a6812cc", + "cborBytes": [70, 106, 128, 26, 104, 18, 204], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2646, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d53ab2a5a45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "395861726decf3384a9bbc32" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b573c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f063c5277b294b4432" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f9dfb3c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a64bba44c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cdef80d967" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fc0765de1f10f40e877" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5bd00d458e92a66d82786" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14393339926376138169" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1b77775436b5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17453945729040720259" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9272562968608095589" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1146698266023753021" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "35b07966941bfe7792075d" + }, + { + "_tag": "ByteArray", + "bytearray": "f3996d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3326861932188927146" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3684686921143700216" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d5c283207221cf2edb0fa8" + } + ] + }, + "cborHex": "9f9fbf466d53ab2a5a454c395861726decf3384a9bbc32437b573c49f063c5277b294b4432448f9dfb3c45a64bba44c745cdef80d9674a9fc0765de1f10f40e8774be5bd00d458e92a66d827861bc7bf6a676318c5b9ff461b77775436b5d8669f1bf238df2a646b21839f1b80aec2e44d53bd65ffffd8669f1b0fe9e3ff5ae6f53d9f4b35b07966941bfe7792075d43f3996d1b2e2b634d04e404aaffff1b3322a33b834c4af8ffa04bd5c283207221cf2edb0fa8ff", + "cborBytes": [ + 159, 159, 191, 70, 109, 83, 171, 42, 90, 69, 76, 57, 88, 97, 114, 109, 236, 243, 56, 74, 155, 188, 50, 67, 123, + 87, 60, 73, 240, 99, 197, 39, 123, 41, 75, 68, 50, 68, 143, 157, 251, 60, 69, 166, 75, 186, 68, 199, 69, 205, 239, + 128, 217, 103, 74, 159, 192, 118, 93, 225, 241, 15, 64, 232, 119, 75, 229, 189, 0, 212, 88, 233, 42, 102, 216, 39, + 134, 27, 199, 191, 106, 103, 99, 24, 197, 185, 255, 70, 27, 119, 119, 84, 54, 181, 216, 102, 159, 27, 242, 56, + 223, 42, 100, 107, 33, 131, 159, 27, 128, 174, 194, 228, 77, 83, 189, 101, 255, 255, 216, 102, 159, 27, 15, 233, + 227, 255, 90, 230, 245, 61, 159, 75, 53, 176, 121, 102, 148, 27, 254, 119, 146, 7, 93, 67, 243, 153, 109, 27, 46, + 43, 99, 77, 4, 228, 4, 170, 255, 255, 27, 51, 34, 163, 59, 131, 76, 74, 248, 255, 160, 75, 213, 194, 131, 32, 114, + 33, 207, 46, 219, 15, 168, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2647, + "sample": { + "_tag": "ByteArray", + "bytearray": "f887f9c80606fcd166ff02" + }, + "cborHex": "4bf887f9c80606fcd166ff02", + "cborBytes": [75, 248, 135, 249, 200, 6, 6, 252, 209, 102, 255, 2], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2648, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13446230278159290760" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8215078464962541193" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81ed" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9744779344604669086" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7aff7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12062694151248819661" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7be335ee4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14200438940872184559" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13059089281891220869" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6352234392324423237" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2418157612916189308" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bba9a9b3261c951889fd8669f1bffffffffffffffef9fa0bf1b7201d256aa0db6894281ed1b873c692f11b9a49e43f7aff71ba7674c6b6f5e35cd45c7be335ee41bc51217fac54f92ef1bb53b3483093cbd85ff1b5827ab8634843e45a09f1b218f058978c6a87cffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 186, 154, 155, 50, 97, 201, 81, 136, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 239, 159, 160, 191, 27, 114, 1, 210, 86, 170, 13, 182, 137, 66, 129, 237, 27, 135, 60, 105, 47, 17, 185, 164, 158, + 67, 247, 175, 247, 27, 167, 103, 76, 107, 111, 94, 53, 205, 69, 199, 190, 51, 94, 228, 27, 197, 18, 23, 250, 197, + 79, 146, 239, 27, 181, 59, 52, 131, 9, 60, 189, 133, 255, 27, 88, 39, 171, 134, 52, 132, 62, 69, 160, 159, 27, 33, + 143, 5, 137, 120, 198, 168, 124, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2649, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1995914365794543651" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18243289549008028749" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8380218988622569424" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3498622129861378151" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10261125308518477437" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ad4050df71b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16505178935273744957" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7785309426493202778" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3599881840995336113" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14735889152883657641" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10366474626209302336" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17317122560297780453" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5168789664964743227" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17617124838347324724" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8d2c83" + }, + { + "_tag": "ByteArray", + "bytearray": "272349f33c98087503e0eb75" + } + ] + } + } + ] + }, + "cborHex": "bf1b1bb2e98a774868231bfd2d2f300f38444d1b744c84c514d4dfd09f1b308d9a4a65b54067ff1b8e66d71a3203ae7d463ad4050df71b1be50e2ccb1f406a3dbf1b6c0af9acd0a0a15a1b31f559761de7ffb11bcc80651c47298ba91b8fdd1dbfa44e4740ff1bf052c737f273c4e51b47bb3ad09aef103b1bf47c99b371673d349f438d2c834c272349f33c98087503e0eb75ffff", + "cborBytes": [ + 191, 27, 27, 178, 233, 138, 119, 72, 104, 35, 27, 253, 45, 47, 48, 15, 56, 68, 77, 27, 116, 76, 132, 197, 20, 212, + 223, 208, 159, 27, 48, 141, 154, 74, 101, 181, 64, 103, 255, 27, 142, 102, 215, 26, 50, 3, 174, 125, 70, 58, 212, + 5, 13, 247, 27, 27, 229, 14, 44, 203, 31, 64, 106, 61, 191, 27, 108, 10, 249, 172, 208, 160, 161, 90, 27, 49, 245, + 89, 118, 29, 231, 255, 177, 27, 204, 128, 101, 28, 71, 41, 139, 169, 27, 143, 221, 29, 191, 164, 78, 71, 64, 255, + 27, 240, 82, 199, 55, 242, 115, 196, 229, 27, 71, 187, 58, 208, 154, 239, 16, 59, 27, 244, 124, 153, 179, 113, + 103, 61, 52, 159, 67, 141, 44, 131, 76, 39, 35, 73, 243, 60, 152, 8, 117, 3, 224, 235, 117, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2650, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "404734843889550188" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3739216880282387720" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8120807632706818021" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16869738293006735085" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "90a03a12dd30c86ee0b658" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8941226712227775525" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4192ce" + }, + { + "_tag": "ByteArray", + "bytearray": "ae5c483ac1155aa0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6676310813047420786" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8ca5525f84c05411c5fe5bac" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15745891127253730756" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0401009304480442" + }, + { + "_tag": "ByteArray", + "bytearray": "0801bf24ffb116a0a5b326" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5014452893561752665" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4bf4379f7076928cc8" + }, + { + "_tag": "ByteArray", + "bytearray": "f15ced5b79769eaa9e5153" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11287195920076419527" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3107066032502500772" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3867972202195593471" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "075e3f06fb000401ff32f0" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2217179641050499942" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11858992646756621736" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b30762daa9214cf77fd80a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10528581432683289227" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "85a0a2860b5e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7105611184676554417" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8011323910170872945" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10567356216129933363" + } + }, + { + "_tag": "ByteArray", + "bytearray": "44f04d" + }, + { + "_tag": "ByteArray", + "bytearray": "48f278a8e540c18e" + }, + { + "_tag": "ByteArray", + "bytearray": "d240d1a83edcab7294" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1806933941171719408" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aba798dea26abdc78376ff81" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2416031635621834527" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1375164330955851336" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4955514667630145655" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9737845089409799418" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12557549462919125370" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15539541348971297555" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18367714986050150701" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15873871128680092921" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b059de8323642836c9fd8669f1b33e45df0ff6045089f9f1b70b2e7841cc54fe5ffd8669f1bea1d5999087896ed9f4b90a03a12dd30c86ee0b6581b7c159e5276920425434192ce48ae5c483ac1155aa01b5ca7054fd5ca7772ffff4c8ca5525f84c05411c5fe5bacd8669f1bda84a48e0fef05c49f4804010093044804424b0801bf24ffb116a0a5b3261b4596ea56c7ad8c59ffff9f494bf4379f7076928cc84bf15ced5b79769eaa9e5153ffffff9fd8669f1b9ca42ce31e64b1c79f1b2b1e841838fe6da41b35adcc3978f428ffffff4b075e3f06fb000401ff32f0ff9fd8669f1b1ec50122ec0b0b669f1ba4939afb07e5dda84bb30762daa9214cf77fd80a1b921d0907bbdc5a8bffff4685a0a2860b5ed8669f1b629c33b9aeb046b19f1b6f2df0a686540c711b92a6ca7d8570d0334344f04d4848f278a8e540c18e49d240d1a83edcab7294ffffbf1b191384d890230cf04caba798dea26abdc78376ff811b218777f8cf586f1f1b131590ac4e6946481b44c58655b35530771b8723c683f80d94fa1bae4560b42ab1197a1bd7a78a865dedbb131bfee73b76a723612d1bdc4b51b02b4e54f9ffff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 5, 157, 232, 50, 54, 66, 131, 108, 159, 216, 102, 159, 27, 51, 228, 93, 240, 255, 96, 69, 8, + 159, 159, 27, 112, 178, 231, 132, 28, 197, 79, 229, 255, 216, 102, 159, 27, 234, 29, 89, 153, 8, 120, 150, 237, + 159, 75, 144, 160, 58, 18, 221, 48, 200, 110, 224, 182, 88, 27, 124, 21, 158, 82, 118, 146, 4, 37, 67, 65, 146, + 206, 72, 174, 92, 72, 58, 193, 21, 90, 160, 27, 92, 167, 5, 79, 213, 202, 119, 114, 255, 255, 76, 140, 165, 82, + 95, 132, 192, 84, 17, 197, 254, 91, 172, 216, 102, 159, 27, 218, 132, 164, 142, 15, 239, 5, 196, 159, 72, 4, 1, 0, + 147, 4, 72, 4, 66, 75, 8, 1, 191, 36, 255, 177, 22, 160, 165, 179, 38, 27, 69, 150, 234, 86, 199, 173, 140, 89, + 255, 255, 159, 73, 75, 244, 55, 159, 112, 118, 146, 140, 200, 75, 241, 92, 237, 91, 121, 118, 158, 170, 158, 81, + 83, 255, 255, 255, 159, 216, 102, 159, 27, 156, 164, 44, 227, 30, 100, 177, 199, 159, 27, 43, 30, 132, 24, 56, + 254, 109, 164, 27, 53, 173, 204, 57, 120, 244, 40, 255, 255, 255, 75, 7, 94, 63, 6, 251, 0, 4, 1, 255, 50, 240, + 255, 159, 216, 102, 159, 27, 30, 197, 1, 34, 236, 11, 11, 102, 159, 27, 164, 147, 154, 251, 7, 229, 221, 168, 75, + 179, 7, 98, 218, 169, 33, 76, 247, 127, 216, 10, 27, 146, 29, 9, 7, 187, 220, 90, 139, 255, 255, 70, 133, 160, + 162, 134, 11, 94, 216, 102, 159, 27, 98, 156, 51, 185, 174, 176, 70, 177, 159, 27, 111, 45, 240, 166, 134, 84, 12, + 113, 27, 146, 166, 202, 125, 133, 112, 208, 51, 67, 68, 240, 77, 72, 72, 242, 120, 168, 229, 64, 193, 142, 73, + 210, 64, 209, 168, 62, 220, 171, 114, 148, 255, 255, 191, 27, 25, 19, 132, 216, 144, 35, 12, 240, 76, 171, 167, + 152, 222, 162, 106, 189, 199, 131, 118, 255, 129, 27, 33, 135, 119, 248, 207, 88, 111, 31, 27, 19, 21, 144, 172, + 78, 105, 70, 72, 27, 68, 197, 134, 85, 179, 85, 48, 119, 27, 135, 35, 198, 131, 248, 13, 148, 250, 27, 174, 69, + 96, 180, 42, 177, 25, 122, 27, 215, 167, 138, 134, 93, 237, 187, 19, 27, 254, 231, 59, 118, 167, 35, 97, 45, 27, + 220, 75, 81, 176, 43, 78, 84, 249, 255, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2651, + "sample": { + "_tag": "ByteArray", + "bytearray": "14df3bd646e8" + }, + "cborHex": "4614df3bd646e8", + "cborBytes": [70, 20, 223, 59, 214, 70, 232], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2652, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "11" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6493797845862821834" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fedb30f5ca8b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17937430946158104085" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b7d044eea21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "191464660748619380" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9809" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a234" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b282" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9300214939705898529" + } + } + } + ] + } + ] + }, + "cborHex": "d87e9f9f80ff41111b5a1e9abc35d9afcabf471fedb30f5ca8b21bf8ee8e68b0da4e15465b7d044eea211b02a8381832f64e7442980942a23442b2821b8111003687f37621ffff", + "cborBytes": [ + 216, 126, 159, 159, 128, 255, 65, 17, 27, 90, 30, 154, 188, 53, 217, 175, 202, 191, 71, 31, 237, 179, 15, 92, 168, + 178, 27, 248, 238, 142, 104, 176, 218, 78, 21, 70, 91, 125, 4, 78, 234, 33, 27, 2, 168, 56, 24, 50, 246, 78, 116, + 66, 152, 9, 66, 162, 52, 66, 178, 130, 27, 129, 17, 0, 54, 135, 243, 118, 33, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2653, + "sample": { + "_tag": "ByteArray", + "bytearray": "b91a" + }, + "cborHex": "42b91a", + "cborBytes": [66, 185, 26], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2654, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ab457985d4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "828036083249300243" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4a0b3ec758f2c6ec53f1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0fafd043e7" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f0ae89" + }, + { + "_tag": "ByteArray", + "bytearray": "9c46" + } + ] + } + ] + } + ] + }, + "cborHex": "9f45ab457985d4d8669f1b0b7dc66e3b47c3139f4a4a0b3ec758f2c6ec53f19f450fafd043e7ff9f43f0ae89429c46ffffffff", + "cborBytes": [ + 159, 69, 171, 69, 121, 133, 212, 216, 102, 159, 27, 11, 125, 198, 110, 59, 71, 195, 19, 159, 74, 74, 11, 62, 199, + 88, 242, 198, 236, 83, 241, 159, 69, 15, 175, 208, 67, 231, 255, 159, 67, 240, 174, 137, 66, 156, 70, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2655, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5534999495305865277" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6133359075274898355" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6110674063452074749" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10265593691570957871" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45e2440d619c5a283a07fcf3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17749998653431780940" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6363" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "818535ca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6937c1d85b90e67b33e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d740c445677e76" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7dbc9590a2db98e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9646920240447530580" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b658bee12101" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13635604527726031259" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c9" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10538620757465378121" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18243979557392678278" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5c" + }, + { + "_tag": "ByteArray", + "bytearray": "7c971a72fae1ec8532" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d8fe4308411eb748066b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c626e60e2fe750f05eb6af" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "281a6254eb883180" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75399fa3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66b3d36423c165bb090ad5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17996204396156113200" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70c735fc17" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83b698" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "771cc67f6cad328d41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd7db6a7dd0e2913b5" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9008531953516524906" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05fedcf3" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19f1b4cd044b71dac283dd8669f1b551e119541adbbb380ffd8669f1b54cd79af5a40f2fd9f0cbf422f271b8e76b712b293ee2f4c45e2440d619c5a283a07fcf31bf654a9bb5576964c42636344818535ca4a6937c1d85b90e67b33e847d740c445677e7648a7dbc9590a2db98e1b85e0bed8dc66a65446b658bee121011bbd3b6612ccd1719bff41c9ffff9fd87c9f1b9240b3be2f482d49ffd8669f1bfd2fa2bf27e0fd869f11030fffff9f415c497c971a72fae1ec8532ffbf4b1d8fe4308411eb748066b54bc626e60e2fe750f05eb6af48281a6254eb8831804475399fa34b66b3d36423c165bb090ad51bf9bf5c8ce23551304570c735fc174383b69849771cc67f6cad328d4149dd7db6a7dd0e2913b5ff9f1b7d04bc151d1bb56affffbf1bffffffffffffffff4405fedcf3ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 27, 76, 208, 68, 183, 29, 172, 40, 61, 216, 102, + 159, 27, 85, 30, 17, 149, 65, 173, 187, 179, 128, 255, 216, 102, 159, 27, 84, 205, 121, 175, 90, 64, 242, 253, + 159, 12, 191, 66, 47, 39, 27, 142, 118, 183, 18, 178, 147, 238, 47, 76, 69, 226, 68, 13, 97, 156, 90, 40, 58, 7, + 252, 243, 27, 246, 84, 169, 187, 85, 118, 150, 76, 66, 99, 99, 68, 129, 133, 53, 202, 74, 105, 55, 193, 216, 91, + 144, 230, 123, 51, 232, 71, 215, 64, 196, 69, 103, 126, 118, 72, 167, 219, 201, 89, 10, 45, 185, 142, 27, 133, + 224, 190, 216, 220, 102, 166, 84, 70, 182, 88, 190, 225, 33, 1, 27, 189, 59, 102, 18, 204, 209, 113, 155, 255, 65, + 201, 255, 255, 159, 216, 124, 159, 27, 146, 64, 179, 190, 47, 72, 45, 73, 255, 216, 102, 159, 27, 253, 47, 162, + 191, 39, 224, 253, 134, 159, 17, 3, 15, 255, 255, 159, 65, 92, 73, 124, 151, 26, 114, 250, 225, 236, 133, 50, 255, + 191, 75, 29, 143, 228, 48, 132, 17, 235, 116, 128, 102, 181, 75, 198, 38, 230, 14, 47, 231, 80, 240, 94, 182, 175, + 72, 40, 26, 98, 84, 235, 136, 49, 128, 68, 117, 57, 159, 163, 75, 102, 179, 211, 100, 35, 193, 101, 187, 9, 10, + 213, 27, 249, 191, 92, 140, 226, 53, 81, 48, 69, 112, 199, 53, 252, 23, 67, 131, 182, 152, 73, 119, 28, 198, 127, + 108, 173, 50, 141, 65, 73, 221, 125, 182, 167, 221, 14, 41, 19, 181, 255, 159, 27, 125, 4, 188, 21, 29, 27, 181, + 106, 255, 255, 191, 27, 255, 255, 255, 255, 255, 255, 255, 255, 68, 5, 254, 220, 243, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2656, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6cba1057" + }, + { + "_tag": "ByteArray", + "bytearray": "b06287271d8d92" + } + ] + }, + "cborHex": "9f446cba105747b06287271d8d92ff", + "cborBytes": [159, 68, 108, 186, 16, 87, 71, 176, 98, 135, 39, 29, 141, 146, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2657, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8981993123868523715" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9656080943938828781" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9310410847569157107" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18164673818460028507" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e36c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f97dc981b158206" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4502ff8efb6dfbbc11" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10751699797745415338" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12629770955984664890" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "048cd917cdf773d704" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16021457483623977752" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b391a455af0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16964030016115016095" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3fe217c9b533ec020" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5cb69ac303aed9a6fa1ff7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c77838738175" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3d151d2a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be39601d53a8763b3119a5" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12877231692358902350" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2906126948850606629" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16511122586582764960" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8733415012178236285" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc1c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "014b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + } + ] + }, + "cborHex": "bf1b7ca67328532f3cc3bf1b86014a7559e479ed1b81353956524d9bf31bfc15e298ea25fe5b42e36c480f97dc981b158206494502ff8efb6dfbbc1141aa1b9535b600484134aaff1baf45f5c4e202f93abf49048cd917cdf773d7041bde57a6b22f6e5318469b391a455af01beb6c576b9d99819f49c3fe217c9b533ec0204b5cb69ac303aed9a6fa1ff746c7783873817541f645f3d151d2a44bbe39601d53a8763b3119a5ff1bb2b51dff6974624ebf1b2854a3100a6e222541f11be5234a834831cda01b793352ae94f2937d42bc1c412bff42014b1bfffffffffffffff7ff", + "cborBytes": [ + 191, 27, 124, 166, 115, 40, 83, 47, 60, 195, 191, 27, 134, 1, 74, 117, 89, 228, 121, 237, 27, 129, 53, 57, 86, 82, + 77, 155, 243, 27, 252, 21, 226, 152, 234, 37, 254, 91, 66, 227, 108, 72, 15, 151, 220, 152, 27, 21, 130, 6, 73, + 69, 2, 255, 142, 251, 109, 251, 188, 17, 65, 170, 27, 149, 53, 182, 0, 72, 65, 52, 170, 255, 27, 175, 69, 245, + 196, 226, 2, 249, 58, 191, 73, 4, 140, 217, 23, 205, 247, 115, 215, 4, 27, 222, 87, 166, 178, 47, 110, 83, 24, 70, + 155, 57, 26, 69, 90, 240, 27, 235, 108, 87, 107, 157, 153, 129, 159, 73, 195, 254, 33, 124, 155, 83, 62, 192, 32, + 75, 92, 182, 154, 195, 3, 174, 217, 166, 250, 31, 247, 70, 199, 120, 56, 115, 129, 117, 65, 246, 69, 243, 209, 81, + 210, 164, 75, 190, 57, 96, 29, 83, 168, 118, 59, 49, 25, 165, 255, 27, 178, 181, 29, 255, 105, 116, 98, 78, 191, + 27, 40, 84, 163, 16, 10, 110, 34, 37, 65, 241, 27, 229, 35, 74, 131, 72, 49, 205, 160, 27, 121, 51, 82, 174, 148, + 242, 147, 125, 66, 188, 28, 65, 43, 255, 66, 1, 75, 27, 255, 255, 255, 255, 255, 255, 255, 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2658, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2855225835337077581" + }, + "fields": [] + }, + "cborHex": "d8669f1b279fccc504c8d34d80ff", + "cborBytes": [216, 102, 159, 27, 39, 159, 204, 197, 4, 200, 211, 77, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2659, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6049c6184584f7d22154" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11014295660574941932" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9855" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b3f249bbaae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae6ecc905e25702e8e8b63d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bad61f5c042ce3b374fb92" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7562" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe1c8e84f6d001" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9945818368592785456" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17635619461595524333" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b0a977af34" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2128234184664688268" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e970" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3370827876370497154" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4775800092052929213" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3762827626411231543" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90d9d15ac54548" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4339172708971267691" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16989410475839673287" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13957717848549897429" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8608917217740870221" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0588" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3974070237444214125" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aceca1bb40323cdcae6b55a4" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29fbf4a6049c6184584f7d221541b98daa38c0bb222ec429855469b3f249bbaae4cae6ecc905e25702e8e8b63d44bbad61f5c042ce3b374fb9241f642756247fe1c8e84f6d0011b8a06a51c6c873030ffd8669f1bf4be4e767a5deced9f45b0a977af34bf1b1d8901b70fc8268c42e9701b2ec796181a0c3e821b42470ce16517babd1b34383fca374489374790d9d15ac545481b3c37d696c14d466b1bebc682d063b953c71bc1b3c66e9df234d51b77790498f830524dff9f4205881b3726bbd34f508d6dff4caceca1bb40323cdcae6b55a4ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 191, 74, 96, 73, 198, 24, 69, 132, 247, 210, 33, + 84, 27, 152, 218, 163, 140, 11, 178, 34, 236, 66, 152, 85, 70, 155, 63, 36, 155, 186, 174, 76, 174, 110, 204, 144, + 94, 37, 112, 46, 142, 139, 99, 212, 75, 186, 214, 31, 92, 4, 44, 227, 179, 116, 251, 146, 65, 246, 66, 117, 98, + 71, 254, 28, 142, 132, 246, 208, 1, 27, 138, 6, 165, 28, 108, 135, 48, 48, 255, 216, 102, 159, 27, 244, 190, 78, + 118, 122, 93, 236, 237, 159, 69, 176, 169, 119, 175, 52, 191, 27, 29, 137, 1, 183, 15, 200, 38, 140, 66, 233, 112, + 27, 46, 199, 150, 24, 26, 12, 62, 130, 27, 66, 71, 12, 225, 101, 23, 186, 189, 27, 52, 56, 63, 202, 55, 68, 137, + 55, 71, 144, 217, 209, 90, 197, 69, 72, 27, 60, 55, 214, 150, 193, 77, 70, 107, 27, 235, 198, 130, 208, 99, 185, + 83, 199, 27, 193, 179, 198, 110, 157, 242, 52, 213, 27, 119, 121, 4, 152, 248, 48, 82, 77, 255, 159, 66, 5, 136, + 27, 55, 38, 187, 211, 79, 80, 141, 109, 255, 76, 172, 236, 161, 187, 64, 50, 60, 220, 174, 107, 85, 164, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2660, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9267252578999636820" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10982838922168945666" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5a7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a9c6f07c3" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b279c41e630379f57d40" + } + ] + } + ] + }, + "cborHex": "9f9f1b809be51edf1893541b986ae1cf6536cc02bf42a5a7453a9c6f07c3ff4ab279c41e630379f57d40ffff", + "cborBytes": [ + 159, 159, 27, 128, 155, 229, 30, 223, 24, 147, 84, 27, 152, 106, 225, 207, 101, 54, 204, 2, 191, 66, 165, 167, 69, + 58, 156, 111, 7, 195, 255, 74, 178, 121, 196, 30, 99, 3, 121, 245, 125, 64, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2661, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74812e39edaa3a9436" + } + } + ] + }, + "cborHex": "bf41a44974812e39edaa3a9436ff", + "cborBytes": [191, 65, 164, 73, 116, 129, 46, 57, 237, 170, 58, 148, 54, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2662, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6301392405479474131" + } + } + } + ] + }, + "cborHex": "bf41b91b57730b01aef2c3d3ff", + "cborBytes": [191, 65, 185, 27, 87, 115, 11, 1, 174, 242, 195, 211, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2663, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16532074409700858560" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + } + ] + }, + "cborHex": "bf1be56dba15be8b9ac01bfffffffffffffffaff", + "cborBytes": [191, 27, 229, 109, 186, 21, 190, 139, 154, 192, 27, 255, 255, 255, 255, 255, 255, 255, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2664, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6630533209504977032" + } + }, + "cborHex": "1b5c0462d2eff99088", + "cborBytes": [27, 92, 4, 98, 210, 239, 249, 144, 136], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2665, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c54f3065a6299ec7efab" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15722247619160883853" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6d4d6a63fba6b9f6" + }, + { + "_tag": "ByteArray", + "bytearray": "26" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1990112088465751907" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0fa0ce16" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "814502202647735192" + } + } + ] + } + } + ] + }, + "cborHex": "bf0ed905059f4ac54f3065a6299ec7efabff1bda30a4e8dad0c28d9f486d4d6a63fba6b9f641261b1b9e4c6680363f63ff1bfffffffffffffffe9f440fa0ce161b0b4db17019976b98ffff", + "cborBytes": [ + 191, 14, 217, 5, 5, 159, 74, 197, 79, 48, 101, 166, 41, 158, 199, 239, 171, 255, 27, 218, 48, 164, 232, 218, 208, + 194, 141, 159, 72, 109, 77, 106, 99, 251, 166, 185, 246, 65, 38, 27, 27, 158, 76, 102, 128, 54, 63, 99, 255, 27, + 255, 255, 255, 255, 255, 255, 255, 254, 159, 68, 15, 160, 206, 22, 27, 11, 77, 177, 112, 25, 151, 107, 152, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2666, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aae232820aff810000fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "057589e0ee1f93b037a204" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b348d8af3f902836" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e50" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d59b3cc8d1387fb3cc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d90e5a494f96da6dbe5742" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1394862919888397846" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1568206247593653381" + } + } + ] + } + } + ] + }, + "cborHex": "bf4aaae232820aff810000fb4b057589e0ee1f93b037a20448b348d8af3f902836420e5041d349d59b3cc8d1387fb3cc4bd90e5a494f96da6dbe57429f1b135b8c6f724fe6161b15c36346025e3485ffff", + "cborBytes": [ + 191, 74, 170, 226, 50, 130, 10, 255, 129, 0, 0, 251, 75, 5, 117, 137, 224, 238, 31, 147, 176, 55, 162, 4, 72, 179, + 72, 216, 175, 63, 144, 40, 54, 66, 14, 80, 65, 211, 73, 213, 155, 60, 200, 209, 56, 127, 179, 204, 75, 217, 14, + 90, 73, 79, 150, 218, 109, 190, 87, 66, 159, 27, 19, 91, 140, 111, 114, 79, 230, 22, 27, 21, 195, 99, 70, 2, 94, + 52, 133, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2667, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11408116523712880149" + } + }, + "cborHex": "1b9e51c589182b9e15", + "cborBytes": [27, 158, 81, 197, 137, 24, 43, 158, 21], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2668, + "sample": { + "_tag": "ByteArray", + "bytearray": "adfbd9" + }, + "cborHex": "43adfbd9", + "cborBytes": [67, 173, 251, 217], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2669, + "sample": { + "_tag": "ByteArray", + "bytearray": "2df00603077d459e" + }, + "cborHex": "482df00603077d459e", + "cborBytes": [72, 45, 240, 6, 3, 7, 125, 69, 158], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2670, + "sample": { + "_tag": "ByteArray", + "bytearray": "fa5dcc03" + }, + "cborHex": "44fa5dcc03", + "cborBytes": [68, 250, 93, 204, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2671, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9344361122441790586" + } + }, + "cborHex": "1b81add6eeac1d047a", + "cborBytes": [27, 129, 173, 214, 238, 172, 29, 4, 122], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2672, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13372336498632714383" + } + }, + "cborHex": "1bb994153221fe688f", + "cborBytes": [27, 185, 148, 21, 50, 33, 254, 104, 143], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2673, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17061034490609162197" + } + }, + "cborHex": "1becc4f879d97257d5", + "cborBytes": [27, 236, 196, 248, 121, 217, 114, 87, 213], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2674, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6385501458626058047" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "ByteArray", + "bytearray": "970dfa48d0" + } + ] + } + } + ] + }, + "cborHex": "bf1b589ddbbeaa25173f804204fd10410f9f0d45970dfa48d0ffff", + "cborBytes": [ + 191, 27, 88, 157, 219, 190, 170, 37, 23, 63, 128, 66, 4, 253, 16, 65, 15, 159, 13, 69, 151, 13, 250, 72, 208, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2675, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9517615314574353098" + } + }, + "cborHex": "1b84155cb3be05a2ca", + "cborBytes": [27, 132, 21, 92, 179, 190, 5, 162, 202], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2676, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4316488056037039895" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "889450348290769526" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3a" + }, + { + "_tag": "ByteArray", + "bytearray": "bcc9424ce71570c83622dc" + }, + { + "_tag": "ByteArray", + "bytearray": "b6be2fa7962e645422bb" + }, + { + "_tag": "ByteArray", + "bytearray": "def6b90800d73a23c3f5e9d4" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10272433153291018858" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01053bf9" + }, + { + "_tag": "ByteArray", + "bytearray": "0092" + } + ] + } + ] + }, + "cborHex": "d8669f1b3be73f04694ddf179f9f9f1b0c57f66117380276413a4bbcc9424ce71570c83622dc4ab6be2fa7962e645422bb4cdef6b90800d73a23c3f5e9d4ffffd8669f1b8e8f0386f8db626a9f4401053bf9420092ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 59, 231, 63, 4, 105, 77, 223, 23, 159, 159, 159, 27, 12, 87, 246, 97, 23, 56, 2, 118, 65, 58, + 75, 188, 201, 66, 76, 231, 21, 112, 200, 54, 34, 220, 74, 182, 190, 47, 167, 150, 46, 100, 84, 34, 187, 76, 222, + 246, 185, 8, 0, 215, 58, 35, 195, 245, 233, 212, 255, 255, 216, 102, 159, 27, 142, 143, 3, 134, 248, 219, 98, 106, + 159, 68, 1, 5, 59, 249, 66, 0, 146, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2677, + "sample": { + "_tag": "ByteArray", + "bytearray": "55f9f9" + }, + "cborHex": "4355f9f9", + "cborBytes": [67, 85, 249, 249], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2678, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15939617040328646284" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5dd3253c27" + }, + { + "_tag": "ByteArray", + "bytearray": "c794f3851f991d" + } + ] + }, + "cborHex": "d8669f1bdd34e53f188d5e8c9f455dd3253c2747c794f3851f991dffff", + "cborBytes": [ + 216, 102, 159, 27, 221, 52, 229, 63, 24, 141, 94, 140, 159, 69, 93, 211, 37, 60, 39, 71, 199, 148, 243, 133, 31, + 153, 29, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2679, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9671516551815769304" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b8638210fde4a2cd89fd87a80ffff", + "cborBytes": [216, 102, 159, 27, 134, 56, 33, 15, 222, 74, 44, 216, 159, 216, 122, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2680, + "sample": { + "_tag": "ByteArray", + "bytearray": "73f4073c0d05263ce6898714" + }, + "cborHex": "4c73f4073c0d05263ce6898714", + "cborBytes": [76, 115, 244, 7, 60, 13, 5, 38, 60, 230, 137, 135, 20], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2681, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "4ac8b0d5308826" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "026d07f39a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14498368179923409348" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4838185357659324291" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12932944460890882746" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6335775635455294008" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15704066683410992474" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "794411963779506658" + } + }, + { + "_tag": "ByteArray", + "bytearray": "96d3b6af48" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4359270745077975710" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16346297931923012805" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd6abef913d0742b32aa5e8e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "076204a5faed0407c7" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f0fd8669f1bfffffffffffffff39f80474ac8b0d5308826bf08410745026d07f39a1bc9348d0b432959c4ffffff9fd8669f1b4324aff2f0c7bf839f1bb37b0c772b41c2ba1b57ed325f3fe33a381bd9f00d71e1c24d5a1b0b065178da65e1e24596d3b6af48ffffbf1b3c7f3da570200a9e1be2d9b75cd8f93cc54cfd6abef913d0742b32aa5e8e49076204a5faed0407c7ff80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 15, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 243, 159, 128, 71, 74, 200, 176, 213, 48, 136, 38, 191, 8, 65, 7, 69, 2, 109, 7, 243, 154, 27, 201, 52, + 141, 11, 67, 41, 89, 196, 255, 255, 255, 159, 216, 102, 159, 27, 67, 36, 175, 242, 240, 199, 191, 131, 159, 27, + 179, 123, 12, 119, 43, 65, 194, 186, 27, 87, 237, 50, 95, 63, 227, 58, 56, 27, 217, 240, 13, 113, 225, 194, 77, + 90, 27, 11, 6, 81, 120, 218, 101, 225, 226, 69, 150, 211, 182, 175, 72, 255, 255, 191, 27, 60, 127, 61, 165, 112, + 32, 10, 158, 27, 226, 217, 183, 92, 216, 249, 60, 197, 76, 253, 106, 190, 249, 19, 208, 116, 43, 50, 170, 94, 142, + 73, 7, 98, 4, 165, 250, 237, 4, 7, 199, 255, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2682, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1644615083070349747" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15087541235079729328" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b16d2d8b45aa861b39f0d1bfffffffffffffff71bd161b6d0eafc50b007ffff", + "cborBytes": [ + 191, 27, 22, 210, 216, 180, 90, 168, 97, 179, 159, 13, 27, 255, 255, 255, 255, 255, 255, 255, 247, 27, 209, 97, + 182, 208, 234, 252, 80, 176, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2683, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2168338496347307682" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9697044690821021050" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5027250488645794408" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10561784368351573360" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df214d071267ca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11852401481225375251" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17166981137473949074" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13616719664547697015" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10821073040024118781" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9265438925206796442" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10630476464272116190" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "abc385d864bdec" + } + ] + } + } + ] + }, + "cborHex": "bf1b1e177c5fc395fea2bf1b8692d2c4e7797d7a1b45c461af14a43a681b9292feec9dde757047df214d071267ca1ba47c3059b7c08e131bee3d5e63d4f74d921bbcf84e63f37111771b962c2c98ef31a5fdff1b8095739cb107389ad8669f1b93870a05861709de9f47abc385d864bdecffffff", + "cborBytes": [ + 191, 27, 30, 23, 124, 95, 195, 149, 254, 162, 191, 27, 134, 146, 210, 196, 231, 121, 125, 122, 27, 69, 196, 97, + 175, 20, 164, 58, 104, 27, 146, 146, 254, 236, 157, 222, 117, 112, 71, 223, 33, 77, 7, 18, 103, 202, 27, 164, 124, + 48, 89, 183, 192, 142, 19, 27, 238, 61, 94, 99, 212, 247, 77, 146, 27, 188, 248, 78, 99, 243, 113, 17, 119, 27, + 150, 44, 44, 152, 239, 49, 165, 253, 255, 27, 128, 149, 115, 156, 177, 7, 56, 154, 216, 102, 159, 27, 147, 135, + 10, 5, 134, 23, 9, 222, 159, 71, 171, 195, 133, 216, 100, 189, 236, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2684, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "227639486352547042" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b20e579ce2c2314555" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d88b2b085a2558663469724" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2660879924987503676" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6d78" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16238231206297390867" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8454392" + } + } + ] + }, + "cborHex": "bf1b0328bce820e55ce2bf49b20e579ce2c23145554c9d88b2b085a2558663469724ff1b24ed58319ed9243c9f426d78ff1be159c93f9004cf1344d8454392ff", + "cborBytes": [ + 191, 27, 3, 40, 188, 232, 32, 229, 92, 226, 191, 73, 178, 14, 87, 156, 226, 194, 49, 69, 85, 76, 157, 136, 178, + 176, 133, 162, 85, 134, 99, 70, 151, 36, 255, 27, 36, 237, 88, 49, 158, 217, 36, 60, 159, 66, 109, 120, 255, 27, + 225, 89, 201, 63, 144, 4, 207, 19, 68, 216, 69, 67, 146, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2685, + "sample": { + "_tag": "ByteArray", + "bytearray": "0506fb" + }, + "cborHex": "430506fb", + "cborBytes": [67, 5, 6, 251], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2686, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "440635729621313090" + } + } + ] + }, + "cborHex": "9f1b061d73dc8b6c6642ff", + "cborBytes": [159, 27, 6, 29, 115, 220, 139, 108, 102, 66, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2687, + "sample": { + "_tag": "ByteArray", + "bytearray": "2207f35499" + }, + "cborHex": "452207f35499", + "cborBytes": [69, 34, 7, 243, 84, 153], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2688, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "35" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10774255501237814050" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13919099700540000781" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "021e030045fd0270" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0dca734c5cafb47726f66261" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3927361319768668534" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44f5e56899aa398f014c63" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e5a6d8d2ee64abe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4623616595673147294" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be49e52b8f49ee0634455e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f41359f1b9585d84b3e940322ff9f1bc12a936e5beeca0dff48021e030045fd0270bf4c0dca734c5cafb47726f662611b3680ca4ff16bb976420f484b44f5e56899aa398f014c63481e5a6d8d2ee64abe1b402a62cbfab2e79e4bbe49e52b8f49ee0634455e4125ffffff", + "cborBytes": [ + 159, 159, 65, 53, 159, 27, 149, 133, 216, 75, 62, 148, 3, 34, 255, 159, 27, 193, 42, 147, 110, 91, 238, 202, 13, + 255, 72, 2, 30, 3, 0, 69, 253, 2, 112, 191, 76, 13, 202, 115, 76, 92, 175, 180, 119, 38, 246, 98, 97, 27, 54, 128, + 202, 79, 241, 107, 185, 118, 66, 15, 72, 75, 68, 245, 229, 104, 153, 170, 57, 143, 1, 76, 99, 72, 30, 90, 109, + 141, 46, 230, 74, 190, 27, 64, 42, 98, 203, 250, 178, 231, 158, 75, 190, 73, 229, 43, 143, 73, 238, 6, 52, 69, 94, + 65, 37, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2689, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "89684ad1a0f10ec5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42651f125e1d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab36ab484ceae65c151c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e8410a84926f62" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4387264769657722098" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10645026302714288175" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c19eec52" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d25c7db4c68b1ad1da" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11944116194470828437" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14741398135033913406" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2ce6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9927451748960360741" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f49802" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b73c0ed3ef5351db13b2f" + } + } + ] + }, + "cborHex": "bf4889684ad1a0f10ec54642651f125e1d4aab36ab484ceae65c151c9f47e8410a84926f621b3ce2b2103308d4f21b93babb05c5f9982fff44c19eec528049d25c7db4c68b1ad1dad8669f1ba5c206656f6c99959f1bcc93f780234d603e422ce61b89c564c48d9cd925ffff43f498024b6b73c0ed3ef5351db13b2fff", + "cborBytes": [ + 191, 72, 137, 104, 74, 209, 160, 241, 14, 197, 70, 66, 101, 31, 18, 94, 29, 74, 171, 54, 171, 72, 76, 234, 230, + 92, 21, 28, 159, 71, 232, 65, 10, 132, 146, 111, 98, 27, 60, 226, 178, 16, 51, 8, 212, 242, 27, 147, 186, 187, 5, + 197, 249, 152, 47, 255, 68, 193, 158, 236, 82, 128, 73, 210, 92, 125, 180, 198, 139, 26, 209, 218, 216, 102, 159, + 27, 165, 194, 6, 101, 111, 108, 153, 149, 159, 27, 204, 147, 247, 128, 35, 77, 96, 62, 66, 44, 230, 27, 137, 197, + 100, 196, 141, 156, 217, 37, 255, 255, 67, 244, 152, 2, 75, 107, 115, 192, 237, 62, 245, 53, 29, 177, 59, 47, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2690, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12242311934834017290" + } + }, + "cborHex": "1ba9e56dd7994e840a", + "cborBytes": [27, 169, 229, 109, 215, 153, 78, 132, 10], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2691, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8464375704828732165" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a12f1e53c3e69c295ea841e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16768253144425467981" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8ad8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14324696160088129718" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8e48f0dd4b9ae951eec6e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17856753626512015531" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9055593412653562402" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e06351a6" + } + } + ] + }, + "cborHex": "bf1b757780db7bc36305bf4c8a12f1e53c3e69c295ea841e1be8b4cd64914e904d43b8ad8a1bc6cb8b43197480b64bc8e48f0dd4b9ae951eec6e1bf7cfeed06deac0abff1b7dabee3aef953a2244e06351a6ff", + "cborBytes": [ + 191, 27, 117, 119, 128, 219, 123, 195, 99, 5, 191, 76, 138, 18, 241, 229, 60, 62, 105, 194, 149, 234, 132, 30, 27, + 232, 180, 205, 100, 145, 78, 144, 77, 67, 184, 173, 138, 27, 198, 203, 139, 67, 25, 116, 128, 182, 75, 200, 228, + 143, 13, 212, 185, 174, 149, 30, 236, 110, 27, 247, 207, 238, 208, 109, 234, 192, 171, 255, 27, 125, 171, 238, 58, + 239, 149, 58, 34, 68, 224, 99, 81, 166, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2692, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13362859413939793701" + }, + "fields": [] + }, + "cborHex": "d8669f1bb97269d6675daf2580ff", + "cborBytes": [216, 102, 159, 27, 185, 114, 105, 214, 103, 93, 175, 37, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2693, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15529156693249632121" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14368760746610855288" + } + }, + { + "_tag": "ByteArray", + "bytearray": "79e50284" + }, + { + "_tag": "ByteArray", + "bytearray": "c38e36cc" + }, + { + "_tag": "ByteArray", + "bytearray": "e0" + } + ] + } + ] + } + ] + }, + "cborHex": "9f0c9fd8669f1bffffffffffffffed9f1bd782a5bc4a8627791bc76817c524510d784479e5028444c38e36cc41e0ffffffff", + "cborBytes": [ + 159, 12, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 27, 215, 130, 165, 188, 74, 134, 39, + 121, 27, 199, 104, 23, 197, 36, 81, 13, 120, 68, 121, 229, 2, 132, 68, 195, 142, 54, 204, 65, 224, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2694, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "752474647035173882" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10427794754464829388" + } + } + ] + }, + "cborHex": "d8669f1b0a7153b46704dbfa9f1b90b6f814928ecfccffff", + "cborBytes": [ + 216, 102, 159, 27, 10, 113, 83, 180, 103, 4, 219, 250, 159, 27, 144, 182, 248, 20, 146, 142, 207, 204, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2695, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d00489" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11130819538653566521" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c51d6435" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11903274714425786389" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02449b0b2f2e" + }, + { + "_tag": "ByteArray", + "bytearray": "1547ad5bf0e7739a75f4" + } + ] + } + } + ] + }, + "cborHex": "bf43d004899f1b9a789d65946c563944c51d64351ba530ed49593d00154602449b0b2f2e4a1547ad5bf0e7739a75f4ffff", + "cborBytes": [ + 191, 67, 208, 4, 137, 159, 27, 154, 120, 157, 101, 148, 108, 86, 57, 68, 197, 29, 100, 53, 27, 165, 48, 237, 73, + 89, 61, 0, 21, 70, 2, 68, 155, 11, 47, 46, 74, 21, 71, 173, 91, 240, 231, 115, 154, 117, 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2696, + "sample": { + "_tag": "ByteArray", + "bytearray": "b2c199d933f83e276fb1b9" + }, + "cborHex": "4bb2c199d933f83e276fb1b9", + "cborBytes": [75, 178, 193, 153, 217, 51, 248, 62, 39, 111, 177, 185], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2697, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17522214367614977907" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12322553378634337551" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4428260001494312677" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13155520084069171043" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "702cef591264" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12470859291246087152" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9935788305745562148" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11352792067440282832" + } + }, + { + "_tag": "ByteArray", + "bytearray": "43082e4c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3202003206041442725" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c287d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4519646930841411543" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14792170837328050903" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1152121773533714802" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15167965879113418754" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18149028890128071708" + } + }, + { + "_tag": "ByteArray", + "bytearray": "63" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16054822561744018682" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3619125234434981466" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a8a31dd3a5038829" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15953843964136059735" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13058275089169021634" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffc9fd8669f1bf32b692173efc7739fd8669f1bab0281029b4a0d0f9f1b3d7457026a23a6e51bb691cbd0c675bf63ffff46702cef591264d8669f1bad116473b29a4bf080ffd8669f1b89e302d26f71ca249f1b9d8d383c54a68cd04443082e4c1b2c6fccf371c319a543c287d61b3eb902effefc9fd7ffff9f1bcd48590117d4bad7ffffffd8669f1b0ffd28a6197859729fd8669f1bd27f709a8dcd08029f1bfbde4d9e2e62bc1c41631bdece300eccaddcfa1b3239b739cc263e5a48a8a31dd3a5038829ffffd8669f1bdd67708eec56f35780ffd8669f1bb538500205407ac280ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 216, 102, 159, 27, 243, 43, 105, 33, 115, 239, + 199, 115, 159, 216, 102, 159, 27, 171, 2, 129, 2, 155, 74, 13, 15, 159, 27, 61, 116, 87, 2, 106, 35, 166, 229, 27, + 182, 145, 203, 208, 198, 117, 191, 99, 255, 255, 70, 112, 44, 239, 89, 18, 100, 216, 102, 159, 27, 173, 17, 100, + 115, 178, 154, 75, 240, 128, 255, 216, 102, 159, 27, 137, 227, 2, 210, 111, 113, 202, 36, 159, 27, 157, 141, 56, + 60, 84, 166, 140, 208, 68, 67, 8, 46, 76, 27, 44, 111, 204, 243, 113, 195, 25, 165, 67, 194, 135, 214, 27, 62, + 185, 2, 239, 254, 252, 159, 215, 255, 255, 159, 27, 205, 72, 89, 1, 23, 212, 186, 215, 255, 255, 255, 216, 102, + 159, 27, 15, 253, 40, 166, 25, 120, 89, 114, 159, 216, 102, 159, 27, 210, 127, 112, 154, 141, 205, 8, 2, 159, 27, + 251, 222, 77, 158, 46, 98, 188, 28, 65, 99, 27, 222, 206, 48, 14, 204, 173, 220, 250, 27, 50, 57, 183, 57, 204, + 38, 62, 90, 72, 168, 163, 29, 211, 165, 3, 136, 41, 255, 255, 216, 102, 159, 27, 221, 103, 112, 142, 236, 86, 243, + 87, 128, 255, 216, 102, 159, 27, 181, 56, 80, 2, 5, 64, 122, 194, 128, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2698, + "sample": { + "_tag": "ByteArray", + "bytearray": "6366a8" + }, + "cborHex": "436366a8", + "cborBytes": [67, 99, 102, 168], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2699, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "020229090601fb02fa96" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2196439125170527461" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8cc6445c07fa1104" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "ByteArray", + "bytearray": "57" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f83070602377c06fea14503" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16822221246213143998" + } + } + } + ] + }, + "cborHex": "bf4a020229090601fb02fa96d8669f1b1e7b51bf428f1ce59f488cc6445c07fa11041bfffffffffffffffb4157ffff4c3f83070602377c06fea145031be974891871903dbeff", + "cborBytes": [ + 191, 74, 2, 2, 41, 9, 6, 1, 251, 2, 250, 150, 216, 102, 159, 27, 30, 123, 81, 191, 66, 143, 28, 229, 159, 72, 140, + 198, 68, 92, 7, 250, 17, 4, 27, 255, 255, 255, 255, 255, 255, 255, 251, 65, 87, 255, 255, 76, 63, 131, 7, 6, 2, + 55, 124, 6, 254, 161, 69, 3, 27, 233, 116, 137, 24, 113, 144, 61, 190, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2700, + "sample": { + "_tag": "ByteArray", + "bytearray": "5d00dc6d60066b01" + }, + "cborHex": "485d00dc6d60066b01", + "cborBytes": [72, 93, 0, 220, 109, 96, 6, 107, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2701, + "sample": { + "_tag": "ByteArray", + "bytearray": "a200ca4e" + }, + "cborHex": "44a200ca4e", + "cborBytes": [68, 162, 0, 202, 78], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2702, + "sample": { + "_tag": "ByteArray", + "bytearray": "27ec410959cc" + }, + "cborHex": "4627ec410959cc", + "cborBytes": [70, 39, 236, 65, 9, 89, 204], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2703, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2747603629181274927" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28f0c14f" + }, + { + "_tag": "ByteArray", + "bytearray": "438d063fca9a016063" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6230024526303908470" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3cc28381378378fc43bc00" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6442116315861232877" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13363247484041647985" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6989361977521343060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2913936503997905426" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7245032379965189141" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9281374866050262329" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10650203532187969688" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2649269924996401114" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10698806639400772661" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4919c500ddeab8581b32" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16278883846693529281" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "716648140b9a65" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4762222390202982229" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d31199b877f81" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6040072339737163489" + } + } + ] + }, + "cborHex": "d8799f9f9f1b262172f17cec8b2f4428f0c14f49438d063fca9a0160631b56757e4c7050d2764b3cc28381378378fc43bc00ffbf1b5966fea850a82ced1bb973cac903ef57711b60ff33aff4c80a541b287061cfcad6ba121b648b869052072c151b80ce11440e2a25391b93cd1faf71aca8981b24c418f5d98947da1b9479cbf42e12e4354a4919c500ddeab8581b321be1ea369bfe0326c147716648140b9a65ffff9f80ff9f1b4216d0085575df55ffbf4189472d31199b877f81ff1b53d2a5ca93b236e1ff", + "cborBytes": [ + 216, 121, 159, 159, 159, 27, 38, 33, 114, 241, 124, 236, 139, 47, 68, 40, 240, 193, 79, 73, 67, 141, 6, 63, 202, + 154, 1, 96, 99, 27, 86, 117, 126, 76, 112, 80, 210, 118, 75, 60, 194, 131, 129, 55, 131, 120, 252, 67, 188, 0, + 255, 191, 27, 89, 102, 254, 168, 80, 168, 44, 237, 27, 185, 115, 202, 201, 3, 239, 87, 113, 27, 96, 255, 51, 175, + 244, 200, 10, 84, 27, 40, 112, 97, 207, 202, 214, 186, 18, 27, 100, 139, 134, 144, 82, 7, 44, 21, 27, 128, 206, + 17, 68, 14, 42, 37, 57, 27, 147, 205, 31, 175, 113, 172, 168, 152, 27, 36, 196, 24, 245, 217, 137, 71, 218, 27, + 148, 121, 203, 244, 46, 18, 228, 53, 74, 73, 25, 197, 0, 221, 234, 184, 88, 27, 50, 27, 225, 234, 54, 155, 254, 3, + 38, 193, 71, 113, 102, 72, 20, 11, 154, 101, 255, 255, 159, 128, 255, 159, 27, 66, 22, 208, 8, 85, 117, 223, 85, + 255, 191, 65, 137, 71, 45, 49, 25, 155, 135, 127, 129, 255, 27, 83, 210, 165, 202, 147, 178, 54, 225, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2704, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17556414936569288803" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7324844704981770586" + } + }, + { + "_tag": "ByteArray", + "bytearray": "150ad87c05040584059d2132" + } + ] + } + ] + } + ] + }, + "cborHex": "d905029fd87a9fd8669f1bf3a4ea5def9318639f1b65a713735356e15a4c150ad87c05040584059d2132ffffffff", + "cborBytes": [ + 217, 5, 2, 159, 216, 122, 159, 216, 102, 159, 27, 243, 164, 234, 93, 239, 147, 24, 99, 159, 27, 101, 167, 19, 115, + 83, 86, 225, 90, 76, 21, 10, 216, 124, 5, 4, 5, 132, 5, 157, 33, 50, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2705, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2564929931067207063" + } + }, + "cborHex": "1b2398762ec7072d97", + "cborBytes": [27, 35, 152, 118, 46, 199, 7, 45, 151], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2706, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10810552051038487054" + } + }, + "cborHex": "1b9606cbd04c05020e", + "cborBytes": [27, 150, 6, 203, 208, 76, 5, 2, 14], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2707, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13671657778532125246" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3719119192712129355" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14060513311593114540" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87d9f1bbdbb7c50641d0a3e9f9f1b339cf73376f1ab4b1bc320fa5c7128abacffffff", + "cborBytes": [ + 216, 125, 159, 27, 189, 187, 124, 80, 100, 29, 10, 62, 159, 159, 27, 51, 156, 247, 51, 118, 241, 171, 75, 27, 195, + 32, 250, 92, 113, 40, 171, 172, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2708, + "sample": { + "_tag": "ByteArray", + "bytearray": "db1cacfe" + }, + "cborHex": "44db1cacfe", + "cborBytes": [68, 219, 28, 172, 254], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2709, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4289025633256157287" + } + }, + "cborHex": "1b3b85ae16d6c73067", + "cborBytes": [27, 59, 133, 174, 22, 214, 199, 48, 103], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2710, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1587605525966579463" + } + } + ] + }, + "cborHex": "9f1b16084ed07aaf6707ff", + "cborBytes": [159, 27, 22, 8, 78, 208, 122, 175, 103, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2711, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2233302066537647204" + } + }, + "cborHex": "1b1efe4865a01f4c64", + "cborBytes": [27, 30, 254, 72, 101, 160, 31, 76, 100], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2712, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17977554366427833591" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7261996972047629465" + } + } + ] + }, + "cborHex": "d8669f1bf97d1a72753424f79f1b64c7cbc536dc7c99ffff", + "cborBytes": [ + 216, 102, 159, 27, 249, 125, 26, 114, 117, 52, 36, 247, 159, 27, 100, 199, 203, 197, 54, 220, 124, 153, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2713, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17042105270600827505" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11168694128083022569" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bec81b8735ef982719fd8669f1b9aff2c229d6132e980ffffff", + "cborBytes": [ + 216, 102, 159, 27, 236, 129, 184, 115, 94, 249, 130, 113, 159, 216, 102, 159, 27, 154, 255, 44, 34, 157, 97, 50, + 233, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2714, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7564856163518229250" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14720267335942169" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3573756769763147566" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2906959414227769596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d112258197e97b2e45" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11502786424240558772" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0d8521fb74f91d666ad" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11717194244873324190" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16852644019617788203" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3731311317462394091" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4407868434722413870" + } + }, + { + "_tag": "ByteArray", + "bytearray": "066006020456db0381" + } + ] + }, + "cborHex": "9f41fa9f1b68fbc499b36dab02ffbf1b00344c01518ec0191b319888d8f7613f2e1b2857982f7d8618fc49d112258197e97b2e451b9fa21b4ef80b52b44ad0d8521fb74f91d666ad1ba29bd615d9ed069e41571be9e09e725b6df12b1b33c847dfb7bda4ebff1b3d2be4fccc495d2e49066006020456db0381ff", + "cborBytes": [ + 159, 65, 250, 159, 27, 104, 251, 196, 153, 179, 109, 171, 2, 255, 191, 27, 0, 52, 76, 1, 81, 142, 192, 25, 27, 49, + 152, 136, 216, 247, 97, 63, 46, 27, 40, 87, 152, 47, 125, 134, 24, 252, 73, 209, 18, 37, 129, 151, 233, 123, 46, + 69, 27, 159, 162, 27, 78, 248, 11, 82, 180, 74, 208, 216, 82, 31, 183, 79, 145, 214, 102, 173, 27, 162, 155, 214, + 21, 217, 237, 6, 158, 65, 87, 27, 233, 224, 158, 114, 91, 109, 241, 43, 27, 51, 200, 71, 223, 183, 189, 164, 235, + 255, 27, 61, 43, 228, 252, 204, 73, 93, 46, 73, 6, 96, 6, 2, 4, 86, 219, 3, 129, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2715, + "sample": { + "_tag": "ByteArray", + "bytearray": "05010418d333" + }, + "cborHex": "4605010418d333", + "cborBytes": [70, 5, 1, 4, 24, 211, 51], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2716, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17919960005306124421" + } + }, + "cborHex": "1bf8b07cae497a8885", + "cborBytes": [27, 248, 176, 124, 174, 73, 122, 136, 133], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2717, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3564243428984812661" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6342178653515859611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "37f9e4" + }, + { + "_tag": "ByteArray", + "bytearray": "73e6ee8b5d6ad9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8923566454334139565" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d7f9441020f" + }, + { + "_tag": "ByteArray", + "bytearray": "5d0ed9861732a8e69f8c6080" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b3176bc83b5a8f475d8669f1b5803f1e210e0c69b9f4337f9e44773e6ee8b5d6ad99f1b7bd6e069402dacad460d7f9441020f4c5d0ed9861732a8e69f8c6080ffffffff", + "cborBytes": [ + 159, 27, 49, 118, 188, 131, 181, 168, 244, 117, 216, 102, 159, 27, 88, 3, 241, 226, 16, 224, 198, 155, 159, 67, + 55, 249, 228, 71, 115, 230, 238, 139, 93, 106, 217, 159, 27, 123, 214, 224, 105, 64, 45, 172, 173, 70, 13, 127, + 148, 65, 2, 15, 76, 93, 14, 217, 134, 23, 50, 168, 230, 159, 140, 96, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2718, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3648078505724243516" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b46c8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "976368829fdedd2819c0c4e8" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b32a09412966e6e3cbf43b46c8f4c976368829fdedd2819c0c4e8ffff", + "cborBytes": [ + 191, 27, 50, 160, 148, 18, 150, 110, 110, 60, 191, 67, 180, 108, 143, 76, 151, 99, 104, 130, 159, 222, 221, 40, + 25, 192, 196, 232, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2719, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "427850541586035838" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2273210528489810245" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bc62239043" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "174dc8b39a33acc85a98fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "ByteArray", + "bytearray": "15f6" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb0194b5fc062fb4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + }, + "cborHex": "9f1b05f007ccfc31b47ed8669f1b1f8c10ee825029459fd87a9f45bc62239043ff9f4b174dc8b39a33acc85a98fa1bfffffffffffffff94215f6ffbf48fb0194b5fc062fb41bfffffffffffffffdffffff03ff", + "cborBytes": [ + 159, 27, 5, 240, 7, 204, 252, 49, 180, 126, 216, 102, 159, 27, 31, 140, 16, 238, 130, 80, 41, 69, 159, 216, 122, + 159, 69, 188, 98, 35, 144, 67, 255, 159, 75, 23, 77, 200, 179, 154, 51, 172, 200, 90, 152, 250, 27, 255, 255, 255, + 255, 255, 255, 255, 249, 66, 21, 246, 255, 191, 72, 251, 1, 148, 181, 252, 6, 47, 180, 27, 255, 255, 255, 255, + 255, 255, 255, 253, 255, 255, 255, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2720, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "80" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "66296a5a0282cc" + }, + { + "_tag": "ByteArray", + "bytearray": "8a0604fffe04021701" + } + ] + } + } + ] + }, + "cborHex": "bf41809f4766296a5a0282cc498a0604fffe04021701ffff", + "cborBytes": [191, 65, 128, 159, 71, 102, 41, 106, 90, 2, 130, 204, 73, 138, 6, 4, 255, 254, 4, 2, 23, 1, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2721, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3934555482265007267" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6385170595310248274" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b369a595d6d78b4a39fd8669f1b589caed38bbca15280ffffff", + "cborBytes": [ + 216, 102, 159, 27, 54, 154, 89, 93, 109, 120, 180, 163, 159, 216, 102, 159, 27, 88, 156, 174, 211, 139, 188, 161, + 82, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2722, + "sample": { + "_tag": "ByteArray", + "bytearray": "5b561f4569c09c" + }, + "cborHex": "475b561f4569c09c", + "cborBytes": [71, 91, 86, 31, 69, 105, 192, 156], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2723, + "sample": { + "_tag": "ByteArray", + "bytearray": "f804fc" + }, + "cborHex": "43f804fc", + "cborBytes": [67, 248, 4, 252], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2724, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17988370426575879900" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1365897966575224469" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bf9a38798b4327edc9f1b12f4a4f6b9250695a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 249, 163, 135, 152, 180, 50, 126, 220, 159, 27, 18, 244, 164, 246, 185, 37, 6, 149, 160, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2725, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9725941882154433525" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "288161dac9bb6b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2613973075333169029" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3613023963537010891" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10039000980288856420" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af246ba60a41dad8c3c96e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13383833545768508793" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28feb81ae0c3e375d86722" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16540778984846762128" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f3198b01b9552465" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12311239661449799764" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b86f97c9c8fe8bbf59f47288161dac9bb6bbf1b2446b2a99fab3f851b32240a26f798f0cb1b8b51b233e1ea61644baf246ba60a41dad8c3c96e1bb9bcedb3047d1d794b28feb81ae0c3e375d86722ff9fd8669f1be58ca6d99409a09080ff48f3198b01b95524651baada4f3e8d6a6854ffffff", + "cborBytes": [ + 216, 102, 159, 27, 134, 249, 124, 156, 143, 232, 187, 245, 159, 71, 40, 129, 97, 218, 201, 187, 107, 191, 27, 36, + 70, 178, 169, 159, 171, 63, 133, 27, 50, 36, 10, 38, 247, 152, 240, 203, 27, 139, 81, 178, 51, 225, 234, 97, 100, + 75, 175, 36, 107, 166, 10, 65, 218, 216, 195, 201, 110, 27, 185, 188, 237, 179, 4, 125, 29, 121, 75, 40, 254, 184, + 26, 224, 195, 227, 117, 216, 103, 34, 255, 159, 216, 102, 159, 27, 229, 140, 166, 217, 148, 9, 160, 144, 128, 255, + 72, 243, 25, 139, 1, 185, 85, 36, 101, 27, 170, 218, 79, 62, 141, 106, 104, 84, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2726, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4989468084532146466" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "559d8677410ffc7978ceba" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11134809338786879905" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11790834978662803318" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b850ddcbcbc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13817895779867586936" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4441773202785304025" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06650c2fbc54" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11097377842611550814" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39803aa067bf35fc98" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15894101389641690359" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15365797661980579464" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4533896961692971714" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6b955cde9cc5a178524e2f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7689960449547615776" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15735030607471581798" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10975099513893855593" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "70c0be1156" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3388b7e98" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "52edd5d3bdca48" + } + ] + } + ] + }, + "cborHex": "d8669f1b453e26c99caff1229f4b559d8677410ffc7978ceba1b9a86ca19501819a1bf1ba3a175f14c726776462b850ddcbcbc1bbfc307005e6071781b3da45931c4ddfdd94606650c2fbc541b9a01ce59f726fa5e4939803aa067bf35fc981bdc933100d9a2acf7ffd8669f1bd53e478fe4e156889fd8669f1b3eeba343d9eeb2c29f4b6b955cde9cc5a178524e2f1b6ab83a492416be201bda5e0ef8403e1a661b984f62dbfc34a169ffffbf4570c0be115645a3388b7e98ff4752edd5d3bdca48ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 69, 62, 38, 201, 156, 175, 241, 34, 159, 75, 85, 157, 134, 119, 65, 15, 252, 121, 120, 206, + 186, 27, 154, 134, 202, 25, 80, 24, 25, 161, 191, 27, 163, 161, 117, 241, 76, 114, 103, 118, 70, 43, 133, 13, 220, + 188, 188, 27, 191, 195, 7, 0, 94, 96, 113, 120, 27, 61, 164, 89, 49, 196, 221, 253, 217, 70, 6, 101, 12, 47, 188, + 84, 27, 154, 1, 206, 89, 247, 38, 250, 94, 73, 57, 128, 58, 160, 103, 191, 53, 252, 152, 27, 220, 147, 49, 0, 217, + 162, 172, 247, 255, 216, 102, 159, 27, 213, 62, 71, 143, 228, 225, 86, 136, 159, 216, 102, 159, 27, 62, 235, 163, + 67, 217, 238, 178, 194, 159, 75, 107, 149, 92, 222, 156, 197, 161, 120, 82, 78, 47, 27, 106, 184, 58, 73, 36, 22, + 190, 32, 27, 218, 94, 14, 248, 64, 62, 26, 102, 27, 152, 79, 98, 219, 252, 52, 161, 105, 255, 255, 191, 69, 112, + 192, 190, 17, 86, 69, 163, 56, 139, 126, 152, 255, 71, 82, 237, 213, 211, 189, 202, 72, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2727, + "sample": { + "_tag": "ByteArray", + "bytearray": "e7" + }, + "cborHex": "41e7", + "cborBytes": [65, 231], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2728, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6302" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8805319224256855963" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "faba9669f3a28df61c" + }, + { + "_tag": "ByteArray", + "bytearray": "6533a0fbfd73954c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "227827722682737179" + } + } + ] + } + } + ] + }, + "cborHex": "bf0d4263021b7a32c72e8fbf7f9b9f49faba9669f3a28df61c486533a0fbfd73954c1b0329681b507da21bffff", + "cborBytes": [ + 191, 13, 66, 99, 2, 27, 122, 50, 199, 46, 143, 191, 127, 155, 159, 73, 250, 186, 150, 105, 243, 162, 141, 246, 28, + 72, 101, 51, 160, 251, 253, 115, 149, 76, 27, 3, 41, 104, 27, 80, 125, 162, 27, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2729, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17183429561842306888" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bc33" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11575783237004124874" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b830fa368c41ae" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b36613e68e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc635e87" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7ce9d44d64cb" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b3ba1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e0eaf75d0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2879014317834635578" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1bee77ce25108e8f4842bc33a0ffd8669f1ba0a57185de8d62ca9f47b830fa368c41aebf45b36613e68e44fc635e87ff467ce9d44d64cbbf435b3ba1454e0eaf75d041d71b27f45044b5cc093affffffff", + "cborBytes": [ + 159, 159, 27, 238, 119, 206, 37, 16, 142, 143, 72, 66, 188, 51, 160, 255, 216, 102, 159, 27, 160, 165, 113, 133, + 222, 141, 98, 202, 159, 71, 184, 48, 250, 54, 140, 65, 174, 191, 69, 179, 102, 19, 230, 142, 68, 252, 99, 94, 135, + 255, 70, 124, 233, 212, 77, 100, 203, 191, 67, 91, 59, 161, 69, 78, 14, 175, 117, 208, 65, 215, 27, 39, 244, 80, + 68, 181, 204, 9, 58, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2730, + "sample": { + "_tag": "ByteArray", + "bytearray": "1e" + }, + "cborHex": "411e", + "cborBytes": [65, 30], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2731, + "sample": { + "_tag": "ByteArray", + "bytearray": "f93d5fcc486dad20fd76d6d5" + }, + "cborHex": "4cf93d5fcc486dad20fd76d6d5", + "cborBytes": [76, 249, 61, 95, 204, 72, 109, 173, 32, 253, 118, 214, 213], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2732, + "sample": { + "_tag": "ByteArray", + "bytearray": "45c2e4f26d96" + }, + "cborHex": "4645c2e4f26d96", + "cborBytes": [70, 69, 194, 228, 242, 109, 150], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2733, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4092281151596930347" + } + }, + "cborHex": "1b38cab40689f6252b", + "cborBytes": [27, 56, 202, 180, 6, 137, 246, 37, 43], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2734, + "sample": { + "_tag": "ByteArray", + "bytearray": "0780" + }, + "cborHex": "420780", + "cborBytes": [66, 7, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2735, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b45649e4cef79a9f5b4" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9546567024173912451" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9827380158715408878" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17875206008589892351" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9927906081862299727" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de899bc093" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9258a630c13fe73e0d8b8973" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15993785577358294165" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adb99012d438898507b7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7866078078227914133" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1440111256463101373" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11907272108205016934" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1149878095101747344" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eccd484a9485ce4e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9951687440055896811" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4a0b45649e4cef79a9f5b49f1b847c3820ec5811831b8861de2fc8f431ee1bf8117d286cedbaffff4124d8669f1b89c701fb2cd7b04f9f45de899bc093ffff4c9258a630c13fe73e0d8b89731bddf5573e7034fc954aadb99012d438898507b7bf1b6d29ec55fc431d951b13fc4d8ec6864dbd1ba53f20e51d7a07661b0ff53009018ae09048eccd484a9485ce4e1b8a1b7f001c3f8aebffff", + "cborBytes": [ + 191, 74, 11, 69, 100, 158, 76, 239, 121, 169, 245, 180, 159, 27, 132, 124, 56, 32, 236, 88, 17, 131, 27, 136, 97, + 222, 47, 200, 244, 49, 238, 27, 248, 17, 125, 40, 108, 237, 186, 255, 255, 65, 36, 216, 102, 159, 27, 137, 199, 1, + 251, 44, 215, 176, 79, 159, 69, 222, 137, 155, 192, 147, 255, 255, 76, 146, 88, 166, 48, 193, 63, 231, 62, 13, + 139, 137, 115, 27, 221, 245, 87, 62, 112, 52, 252, 149, 74, 173, 185, 144, 18, 212, 56, 137, 133, 7, 183, 191, 27, + 109, 41, 236, 85, 252, 67, 29, 149, 27, 19, 252, 77, 142, 198, 134, 77, 189, 27, 165, 63, 32, 229, 29, 122, 7, + 102, 27, 15, 245, 48, 9, 1, 138, 224, 144, 72, 236, 205, 72, 74, 148, 133, 206, 78, 27, 138, 27, 127, 0, 28, 63, + 138, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2736, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03ff01fa7b36858a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17886475758820181463" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fd219b2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12689546947695454127" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8833c30f9f494fbd6b59b0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6583563566049563469" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12406925635830761924" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6354773479066212126" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8030492fd020707e3ff" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4083930586244611817" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9891d31b3b1a0d3fcef9e3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb7e3cd8e7e568" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "51fcdf20d6736cb80bcc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12046425845270481946" + } + } + ] + } + } + ] + }, + "cborHex": "bf4803ff01fa7b36858ad8669f1bf83986efa01cc5d780ff443fd219b2d905029f1bb01a53b78207a7afff4b8833c30f9f494fbd6b59b0bf1b5b5d842e9e96934d061bac2e41218e6149c41b5830b0cf67d0971eff4ab8030492fd020707e3ffd905019f1b38ad093b08767ee94b9891d31b3b1a0d3fcef9e3ff47eb7e3cd8e7e5689f4a51fcdf20d6736cb80bcc1ba72d807b486e8c1affff", + "cborBytes": [ + 191, 72, 3, 255, 1, 250, 123, 54, 133, 138, 216, 102, 159, 27, 248, 57, 134, 239, 160, 28, 197, 215, 128, 255, 68, + 63, 210, 25, 178, 217, 5, 2, 159, 27, 176, 26, 83, 183, 130, 7, 167, 175, 255, 75, 136, 51, 195, 15, 159, 73, 79, + 189, 107, 89, 176, 191, 27, 91, 93, 132, 46, 158, 150, 147, 77, 6, 27, 172, 46, 65, 33, 142, 97, 73, 196, 27, 88, + 48, 176, 207, 103, 208, 151, 30, 255, 74, 184, 3, 4, 146, 253, 2, 7, 7, 227, 255, 217, 5, 1, 159, 27, 56, 173, 9, + 59, 8, 118, 126, 233, 75, 152, 145, 211, 27, 59, 26, 13, 63, 206, 249, 227, 255, 71, 235, 126, 60, 216, 231, 229, + 104, 159, 74, 81, 252, 223, 32, 214, 115, 108, 184, 11, 204, 27, 167, 45, 128, 123, 72, 110, 140, 26, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2737, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a3464b66641846fc2eedfa6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2555509143034558586" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dfde217f9e4293" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13766337318733076417" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5475633736106175189" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cf6af98441c4a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "25a913bedf41c0c2fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10473868667915668988" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61be78ef82eaaeefdf21" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c85edb13a28c40b3d8d429d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a7312ff1b6525b806724d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9187169790545841570" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c84cdfeb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4076240760404991140" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4c2a3464b66641846fc2eedfa69f1b2376fe06a2d6787a47dfde217f9e42931bbf0bdadaad49d7c11b4bfd5bdf30c0ead5ff478cf6af98441c4abf4925a913bedf41c0c2fe1b915aa80f7f350dfc4a61be78ef82eaaeefdf214c7c85edb13a28c40b3d8d429d4b9a7312ff1b6525b806724d1b7f7f623fb0af4da244c84cdfeb1b3891b75feee85ca4ffff", + "cborBytes": [ + 191, 76, 42, 52, 100, 182, 102, 65, 132, 111, 194, 238, 223, 166, 159, 27, 35, 118, 254, 6, 162, 214, 120, 122, + 71, 223, 222, 33, 127, 158, 66, 147, 27, 191, 11, 218, 218, 173, 73, 215, 193, 27, 75, 253, 91, 223, 48, 192, 234, + 213, 255, 71, 140, 246, 175, 152, 68, 28, 74, 191, 73, 37, 169, 19, 190, 223, 65, 192, 194, 254, 27, 145, 90, 168, + 15, 127, 53, 13, 252, 74, 97, 190, 120, 239, 130, 234, 174, 239, 223, 33, 76, 124, 133, 237, 177, 58, 40, 196, 11, + 61, 141, 66, 157, 75, 154, 115, 18, 255, 27, 101, 37, 184, 6, 114, 77, 27, 127, 127, 98, 63, 176, 175, 77, 162, + 68, 200, 76, 223, 235, 27, 56, 145, 183, 95, 238, 232, 92, 164, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2738, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "71778274059163821" + } + }, + "cborHex": "1b00ff01f5bfe318ad", + "cborBytes": [27, 0, 255, 1, 245, 191, 227, 24, 173], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2739, + "sample": { + "_tag": "ByteArray", + "bytearray": "219ce0f0727c58b514e4" + }, + "cborHex": "4a219ce0f0727c58b514e4", + "cborBytes": [74, 33, 156, 224, 240, 114, 124, 88, 181, 20, 228], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2740, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15564659368830150440" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "63234c0bb37b8ee3fd4c3089" + }, + { + "_tag": "ByteArray", + "bytearray": "a233" + }, + { + "_tag": "ByteArray", + "bytearray": "b71171ad10fc8df73ce241" + }, + { + "_tag": "ByteArray", + "bytearray": "2b74197e56d09e9c440f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14240717848249166619" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2492039397204881267" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4520875524588674104" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17187445020961627281" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8079348511248270683" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3a28bd47ac" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "911099011621765934" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1835f1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3a789ca53d525fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6757743325654875445" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7c1591f57" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8756972336234483463" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1230691d4b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53a3a003a7ed3e3a6121b5" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bd800c73b1913a7289f9f4c63234c0bb37b8ee3fd4c308942a2334bb71171ad10fc8df73ce2414a2b74197e56d09e9c440fff1bc5a1316eb374eb1b9f1b229580a0dcacef731b3ebd605644dd9c381bee86122efef95c9141deff1b701f9caa2d88c55b453a28bd47acffffbf1b0ca4dfb94eecc32e431835f148a3a789ca53d525fb1b5dc853c028ecfd3545c7c1591f571b798703f1812dcf0746d1230691d4b14b53a3a003a7ed3e3a6121b5ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 216, 0, 199, 59, 25, 19, 167, 40, 159, 159, 76, 99, 35, 76, 11, 179, 123, 142, 227, 253, + 76, 48, 137, 66, 162, 51, 75, 183, 17, 113, 173, 16, 252, 141, 247, 60, 226, 65, 74, 43, 116, 25, 126, 86, 208, + 158, 156, 68, 15, 255, 27, 197, 161, 49, 110, 179, 116, 235, 27, 159, 27, 34, 149, 128, 160, 220, 172, 239, 115, + 27, 62, 189, 96, 86, 68, 221, 156, 56, 27, 238, 134, 18, 46, 254, 249, 92, 145, 65, 222, 255, 27, 112, 31, 156, + 170, 45, 136, 197, 91, 69, 58, 40, 189, 71, 172, 255, 255, 191, 27, 12, 164, 223, 185, 78, 236, 195, 46, 67, 24, + 53, 241, 72, 163, 167, 137, 202, 83, 213, 37, 251, 27, 93, 200, 83, 192, 40, 236, 253, 53, 69, 199, 193, 89, 31, + 87, 27, 121, 135, 3, 241, 129, 45, 207, 7, 70, 209, 35, 6, 145, 212, 177, 75, 83, 163, 160, 3, 167, 237, 62, 58, + 97, 33, 181, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2741, + "sample": { + "_tag": "ByteArray", + "bytearray": "c64be1bd924d" + }, + "cborHex": "46c64be1bd924d", + "cborBytes": [70, 198, 75, 225, 189, 146, 77], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2742, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4462767988632390250" + } + }, + "cborHex": "1b3deeefd7456b0a6a", + "cborBytes": [27, 61, 238, 239, 215, 69, 107, 10, 106], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2743, + "sample": { + "_tag": "ByteArray", + "bytearray": "aeb60331828c6e" + }, + "cborHex": "47aeb60331828c6e", + "cborBytes": [71, 174, 182, 3, 49, 130, 140, 110], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2744, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "630667780271806046" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8bdabf129aaf7903f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1586250922912896770" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15891368436034335895" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3506376230506915510" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12548855180410273269" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4169337873711969461" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15046575012054066065" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15145069917579171262" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7243ce8c" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19fa0bf1b08c095013662965e49c8bdabf129aaf7903f1b16037ecf60dbd7021bdc897b6580ae74971b30a9269aa43ce6b61bae267d4cc62cbdf51b39dc76b4bf2f34b51bd0d02c40d7c063911bd22e18d917c2d5be447243ce8cffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 160, 191, 27, 8, 192, 149, 1, 54, 98, 150, 94, 73, + 200, 189, 171, 241, 41, 170, 247, 144, 63, 27, 22, 3, 126, 207, 96, 219, 215, 2, 27, 220, 137, 123, 101, 128, 174, + 116, 151, 27, 48, 169, 38, 154, 164, 60, 230, 182, 27, 174, 38, 125, 76, 198, 44, 189, 245, 27, 57, 220, 118, 180, + 191, 47, 52, 181, 27, 208, 208, 44, 64, 215, 192, 99, 145, 27, 210, 46, 24, 217, 23, 194, 213, 190, 68, 114, 67, + 206, 140, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2745, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14171630471497595985" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "87aae11a3fa0368ca7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11432367610352796732" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbeb6f13c9291303812cae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf4ee4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d12b97420c81ba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17297b09c482f4b80d" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16836508616661731549" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7572470394174197051" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "195ad2941d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1775926117798886027" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c95b7cb564710bcdb3fa4" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8347215086855399543" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bc4abbed44db73c51bf4987aae11a3fa0368ca71b9ea7edc534c2843c4bbbeb6f13c9291303812cae43cf4ee447d12b97420c81ba4917297b09c482f4b80dff1be9a74b6219ed08dd1b6916d1b3ecea4d3b45195ad2941d1b18a55b6516bdba8b4b2c95b7cb564710bcdb3fa49f1b73d743e563cc2877ffff", + "cborBytes": [ + 191, 27, 196, 171, 190, 212, 77, 183, 60, 81, 191, 73, 135, 170, 225, 26, 63, 160, 54, 140, 167, 27, 158, 167, + 237, 197, 52, 194, 132, 60, 75, 187, 235, 111, 19, 201, 41, 19, 3, 129, 44, 174, 67, 207, 78, 228, 71, 209, 43, + 151, 66, 12, 129, 186, 73, 23, 41, 123, 9, 196, 130, 244, 184, 13, 255, 27, 233, 167, 75, 98, 25, 237, 8, 221, 27, + 105, 22, 209, 179, 236, 234, 77, 59, 69, 25, 90, 210, 148, 29, 27, 24, 165, 91, 101, 22, 189, 186, 139, 75, 44, + 149, 183, 203, 86, 71, 16, 188, 219, 63, 164, 159, 27, 115, 215, 67, 229, 99, 204, 40, 119, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2746, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4861637100357454918" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "49" + }, + { + "_tag": "ByteArray", + "bytearray": "b1f04c0544cb" + } + ] + }, + "cborHex": "d8669f1b4378012f49aa8c469f80414946b1f04c0544cbffff", + "cborBytes": [ + 216, 102, 159, 27, 67, 120, 1, 47, 73, 170, 140, 70, 159, 128, 65, 73, 70, 177, 240, 76, 5, 68, 203, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2747, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6867830390908229460" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4546499678859076815" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b50f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "972277462180565044" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef62d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00db3c9647ca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe5692" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2005353495975696528" + } + } + ] + }, + "cborHex": "d8669f1b5f4f6f5a6bb797549f1b3f18695e99d2a4cfbf42b50f1b0d7e39335464103443ef62d10a41f94600db3c9647ca43fe569213ff1b1bd4726138b81890ffff", + "cborBytes": [ + 216, 102, 159, 27, 95, 79, 111, 90, 107, 183, 151, 84, 159, 27, 63, 24, 105, 94, 153, 210, 164, 207, 191, 66, 181, + 15, 27, 13, 126, 57, 51, 84, 100, 16, 52, 67, 239, 98, 209, 10, 65, 249, 70, 0, 219, 60, 150, 71, 202, 67, 254, + 86, 146, 19, 255, 27, 27, 212, 114, 97, 56, 184, 24, 144, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2748, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13772760033504197846" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e12b2eb47254092c0a2b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "417076910830445827" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fcbcf56f5503148beaf09" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfd020d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17d08da424" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d47f7beae23b9d0e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc63f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa02e20207f0fe456f593d03" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1164986628749745824" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12697943171799633723" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f08dc7bd2199" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1614312414156393583" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b6d27bebc0a6a6727e11" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "273020907882169645" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf91" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14173850484607898372" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1150997183360159072" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14970181811375497114" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1197833728333280501" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bbf22ac477db6fcd69fbf4b2e12b2eb47254092c0a2b71b05c9c13d9a10e50341744b6fcbcf56f5503148beaf0944cfd020d84517d08da42448d47f7beae23b9d0e0543fc63f84cfa02e20207f0fe456f593d03ffd8669f1b102add2a9eb55ea09fd8669f1bb0382809c536cf3b80ff46f08dc7bd2199d8669f1b16673096724b8c6f9f4ab6d27bebc0a6a6727e11ffffffffbf1b03c9f711b692452d42cf911bc4b3a1eb628d53041b0ff929d70ba84d601bcfc0c50ac20cdf9a1b109f8f6df54974f5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 191, 34, 172, 71, 125, 182, 252, 214, 159, 191, 75, 46, 18, 178, 235, 71, 37, 64, 146, 192, + 162, 183, 27, 5, 201, 193, 61, 154, 16, 229, 3, 65, 116, 75, 111, 203, 207, 86, 245, 80, 49, 72, 190, 175, 9, 68, + 207, 208, 32, 216, 69, 23, 208, 141, 164, 36, 72, 212, 127, 123, 234, 226, 59, 157, 14, 5, 67, 252, 99, 248, 76, + 250, 2, 226, 2, 7, 240, 254, 69, 111, 89, 61, 3, 255, 216, 102, 159, 27, 16, 42, 221, 42, 158, 181, 94, 160, 159, + 216, 102, 159, 27, 176, 56, 40, 9, 197, 54, 207, 59, 128, 255, 70, 240, 141, 199, 189, 33, 153, 216, 102, 159, 27, + 22, 103, 48, 150, 114, 75, 140, 111, 159, 74, 182, 210, 123, 235, 192, 166, 166, 114, 126, 17, 255, 255, 255, 255, + 191, 27, 3, 201, 247, 17, 182, 146, 69, 45, 66, 207, 145, 27, 196, 179, 161, 235, 98, 141, 83, 4, 27, 15, 249, 41, + 215, 11, 168, 77, 96, 27, 207, 192, 197, 10, 194, 12, 223, 154, 27, 16, 159, 143, 109, 245, 73, 116, 245, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2749, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb5477060682030665" + }, + "cborHex": "49fb5477060682030665", + "cborBytes": [73, 251, 84, 119, 6, 6, 130, 3, 6, 101], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2750, + "sample": { + "_tag": "ByteArray", + "bytearray": "d209" + }, + "cborHex": "42d209", + "cborBytes": [66, 210, 9], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2751, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03400051ab0106112592fffd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9287920442521530702" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "33657c98f60b447b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5981bd11fed977" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d49e9e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dafe0701" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d3" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffeb9fd8669f1bfffffffffffffff69fbf4c03400051ab0106112592fffd1b80e5526ed695b14e4833657c98f60b447b1bfffffffffffffffb475981bd11fed9770a43d49e9e44dafe0701ffffff41d3ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 246, 159, 191, 76, 3, 64, 0, 81, 171, 1, 6, 17, 37, 146, 255, 253, 27, 128, 229, 82, 110, 214, 149, 177, 78, + 72, 51, 101, 124, 152, 246, 11, 68, 123, 27, 255, 255, 255, 255, 255, 255, 255, 251, 71, 89, 129, 189, 17, 254, + 217, 119, 10, 67, 212, 158, 158, 68, 218, 254, 7, 1, 255, 255, 255, 65, 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2752, + "sample": { + "_tag": "ByteArray", + "bytearray": "4203" + }, + "cborHex": "424203", + "cborBytes": [66, 66, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2753, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b2a4a8d0dfcb52b257" + }, + { + "_tag": "ByteArray", + "bytearray": "fdf326ee9d4cef81f65c05cd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14429609162540708428" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff39f49b2a4a8d0dfcb52b2574cfdf326ee9d4cef81f65c05cd1bc8404514fcf5f24cffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 73, 178, 164, 168, 208, 223, 203, 82, 178, 87, 76, 253, 243, + 38, 238, 157, 76, 239, 129, 246, 92, 5, 205, 27, 200, 64, 69, 20, 252, 245, 242, 76, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2754, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15146617637751600347" + } + }, + "cborHex": "1bd233987dc6d9b4db", + "cborBytes": [27, 210, 51, 152, 125, 198, 217, 180, 219], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2755, + "sample": { + "_tag": "ByteArray", + "bytearray": "334d5bff6f0bb57145c0" + }, + "cborHex": "4a334d5bff6f0bb57145c0", + "cborBytes": [74, 51, 77, 91, 255, 111, 11, 181, 113, 69, 192], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2756, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "523c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "043e2ecc14" + }, + { + "_tag": "ByteArray", + "bytearray": "d2a3ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1685912739538908573" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1024485b1064a69dc2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1143654110982593714" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c66c3c98824" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10528646777258993867" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e432e48da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7739179619689065591" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61f21bad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12934835959388076543" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11878183188846491520" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3119843571073055922" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e9f495ebcabcb5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9629869707083242800" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ece56fae430153d567e68f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd28cee375" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14255203521643260663" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f809f42523c9f45043e2ecc1443d2a3ca1b176590b44a85b59dffbf491024485b1064a69dc21b0fdf135ac7085cb2464c66c3c988241b921d4475f41568cb454e432e48da1b6b6716dc34826c774461f21bad1bb381c4c5fb4679ffffff9f80d8669f1ba4d7c8ad4c3637809f1b2b4be932c0987cb247e9f495ebcabcb51b85a42b7a33fddd30ffff4bece56fae430153d567e68fbf45cd28cee3751bc5d4a8135c71aaf7ffffff", + "cborBytes": [ + 159, 128, 159, 66, 82, 60, 159, 69, 4, 62, 46, 204, 20, 67, 210, 163, 202, 27, 23, 101, 144, 180, 74, 133, 181, + 157, 255, 191, 73, 16, 36, 72, 91, 16, 100, 166, 157, 194, 27, 15, 223, 19, 90, 199, 8, 92, 178, 70, 76, 102, 195, + 201, 136, 36, 27, 146, 29, 68, 117, 244, 21, 104, 203, 69, 78, 67, 46, 72, 218, 27, 107, 103, 22, 220, 52, 130, + 108, 119, 68, 97, 242, 27, 173, 27, 179, 129, 196, 197, 251, 70, 121, 255, 255, 255, 159, 128, 216, 102, 159, 27, + 164, 215, 200, 173, 76, 54, 55, 128, 159, 27, 43, 75, 233, 50, 192, 152, 124, 178, 71, 233, 244, 149, 235, 202, + 188, 181, 27, 133, 164, 43, 122, 51, 253, 221, 48, 255, 255, 75, 236, 229, 111, 174, 67, 1, 83, 213, 103, 230, + 143, 191, 69, 205, 40, 206, 227, 117, 27, 197, 212, 168, 19, 92, 113, 170, 247, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2757, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7612102939363074560" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9251407889700463503" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17687682598448252854" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5321" + } + } + ] + }, + "cborHex": "bf1b69a39f4aee7162001b80639a75a9d7a38f1bf577459c245dc7b6425321ff", + "cborBytes": [ + 191, 27, 105, 163, 159, 74, 238, 113, 98, 0, 27, 128, 99, 154, 117, 169, 215, 163, 143, 27, 245, 119, 69, 156, 36, + 93, 199, 182, 66, 83, 33, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2758, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cd" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c3ac10493fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13782721054215046380" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "998a0920140bbf8313" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12224384217628434984" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99a4e39f2bdc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1699405777338090375" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13975139931594051132" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7f4b742a468d8f3b29c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13604c238144f043" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de80" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12314773517563205093" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3727944754963048939" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3433549676373139584" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4466697067907259223" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9187719235930893512" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11772164203927616081" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6b2a691eb0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4049391520793515822" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "017959c9c74b3bf450b1ea" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17694125507997235111" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6359481888726246688" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15227591108876310596" + } + } + ] + } + ] + }, + "cborHex": "d87d9f41cd9fbf463c3ac10493fe1bbf460fc65ac904ec49998a0920140bbf83131ba9a5bcada9a262284699a4e39f2bdc1b1795808cf77bc38742b9ee1bc1f1abb96d0a4e3c4ad7f4b742a468d8f3b29c4813604c238144f04342de801baae6dd448bbe15e5ffd8669f1b33bc5200cdda69eb9f1b2fa66b3d2ae0e0801b3dfce55153e41b571b7f8155f769af2cc8ffffff1ba35f20f8ccacba51456b2a691eb0d8669f1b383254223160572e9f4b017959c9c74b3bf450b1ea80d8669f1bf58e2966eb5a77a780ff1b58416b15750ee5201bd353456f2d781844ffffff", + "cborBytes": [ + 216, 125, 159, 65, 205, 159, 191, 70, 60, 58, 193, 4, 147, 254, 27, 191, 70, 15, 198, 90, 201, 4, 236, 73, 153, + 138, 9, 32, 20, 11, 191, 131, 19, 27, 169, 165, 188, 173, 169, 162, 98, 40, 70, 153, 164, 227, 159, 43, 220, 27, + 23, 149, 128, 140, 247, 123, 195, 135, 66, 185, 238, 27, 193, 241, 171, 185, 109, 10, 78, 60, 74, 215, 244, 183, + 66, 164, 104, 216, 243, 178, 156, 72, 19, 96, 76, 35, 129, 68, 240, 67, 66, 222, 128, 27, 170, 230, 221, 68, 139, + 190, 21, 229, 255, 216, 102, 159, 27, 51, 188, 82, 0, 205, 218, 105, 235, 159, 27, 47, 166, 107, 61, 42, 224, 224, + 128, 27, 61, 252, 229, 81, 83, 228, 27, 87, 27, 127, 129, 85, 247, 105, 175, 44, 200, 255, 255, 255, 27, 163, 95, + 32, 248, 204, 172, 186, 81, 69, 107, 42, 105, 30, 176, 216, 102, 159, 27, 56, 50, 84, 34, 49, 96, 87, 46, 159, 75, + 1, 121, 89, 201, 199, 75, 59, 244, 80, 177, 234, 128, 216, 102, 159, 27, 245, 142, 41, 102, 235, 90, 119, 167, + 128, 255, 27, 88, 65, 107, 21, 117, 14, 229, 32, 27, 211, 83, 69, 111, 45, 120, 24, 68, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2759, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "702f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17166277485725831444" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10456151201909145135" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f42702f1bee3ade6c247951149f1b911bb61e7b917e2fffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 66, 112, 47, 27, 238, 58, 222, 108, 36, 121, 81, + 20, 159, 27, 145, 27, 182, 30, 123, 145, 126, 47, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2760, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13209857354695965372" + } + }, + "cborHex": "1bb752d746783bfabc", + "cborBytes": [27, 183, 82, 215, 70, 120, 59, 250, 188], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2761, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2727993006695485611" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f184f5f057a0a122e70f1438" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b4f98597e2184b216f1fa" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1680773976061591323" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f16478f07e12062a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9259510897467003188" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11cb18c414f2976dbc6f02" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13561694152119205326" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd397509c3addc6d9d457e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3126dc4abccbfec73720" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1951690002268041051" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13358269298697391646" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7cbae67b2aa6d1722" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17082305977965139944" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "395a41ef0de7a710" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b25dbc72fa1d590ab9fbf4cf184f5f057a0a122e70f14384b7b4f98597e2184b216f1faffbf1b17534f06aedf3f1b48f16478f07e12062a1b8080641a2d6111344b11cb18c414f2976dbc6f021bbc34d0fa798ebdce4bfd397509c3addc6d9d457eff4a3126dc4abccbfec737209f1b1b15cbb770de2f5bffffffbf1bb9621b26eadd4e1e49d7cbae67b2aa6d17221bed108ac7f124d7e848395a41ef0de7a710ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 37, 219, 199, 47, 161, 213, 144, 171, 159, 191, 76, 241, 132, 245, 240, 87, 160, 161, 34, + 231, 15, 20, 56, 75, 123, 79, 152, 89, 126, 33, 132, 178, 22, 241, 250, 255, 191, 27, 23, 83, 79, 6, 174, 223, 63, + 27, 72, 241, 100, 120, 240, 126, 18, 6, 42, 27, 128, 128, 100, 26, 45, 97, 17, 52, 75, 17, 203, 24, 196, 20, 242, + 151, 109, 188, 111, 2, 27, 188, 52, 208, 250, 121, 142, 189, 206, 75, 253, 57, 117, 9, 195, 173, 220, 109, 157, + 69, 126, 255, 74, 49, 38, 220, 74, 188, 203, 254, 199, 55, 32, 159, 27, 27, 21, 203, 183, 112, 222, 47, 91, 255, + 255, 255, 191, 27, 185, 98, 27, 38, 234, 221, 78, 30, 73, 215, 203, 174, 103, 178, 170, 109, 23, 34, 27, 237, 16, + 138, 199, 241, 36, 215, 232, 72, 57, 90, 65, 239, 13, 231, 167, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2762, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17831479080492395356" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7167962104499593397" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9493671da5b117" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2aabc7d810ba6e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18218901553751505268" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf77623bf9c8eeb5c9fd8669f1b6379b78e7a28e0b59f479493671da5b117a0bf472aabc7d810ba6e1bfcd68a6f6d2bb974ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 247, 118, 35, 191, 156, 142, 235, 92, 159, 216, 102, 159, 27, 99, 121, 183, 142, 122, 40, 224, + 181, 159, 71, 148, 147, 103, 29, 165, 177, 23, 160, 191, 71, 42, 171, 199, 216, 16, 186, 110, 27, 252, 214, 138, + 111, 109, 43, 185, 116, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2763, + "sample": { + "_tag": "ByteArray", + "bytearray": "79f783db48" + }, + "cborHex": "4579f783db48", + "cborBytes": [69, 121, 247, 131, 219, 72], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2764, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4352367969709242278" + }, + "fields": [] + }, + "cborHex": "d8669f1b3c66b79bce4eb7a680ff", + "cborBytes": [216, 102, 159, 27, 60, 102, 183, 155, 206, 78, 183, 166, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2765, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15027810429809442565" + } + }, + "cborHex": "1bd08d81f714b3bf05", + "cborBytes": [27, 208, 141, 129, 247, 20, 179, 191, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2766, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5418491247444845319" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7165497333876724297" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9829274b5856bc1173b8a3be" + }, + { + "_tag": "ByteArray", + "bytearray": "eae9801110cc1a" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8760677436473155704" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "890a740cb021ce" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10408862725977403632" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12241962355577602698" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9901195282797221368" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1920120147563207269" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14628725410029624072" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3272701834008484930" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ea24f0fe41dd" + }, + { + "_tag": "ByteArray", + "bytearray": "6b2cf9ce52" + }, + { + "_tag": "ByteArray", + "bytearray": "c8fb18f504" + }, + { + "_tag": "ByteArray", + "bytearray": "560a101259a88e" + }, + { + "_tag": "ByteArray", + "bytearray": "46d0941493" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "576071548584272711" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b96bd771f4e404a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "248089593544359110" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61c5ed9c842ba7b798a890" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "277715357970107410" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c82c9798c7ba4a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a616a52139973cf060" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15906739307305720833" + } + } + ] + } + ] + }, + "cborHex": "d87e9fd8669f1b4b325914c68363079f9f1b6370f5dc58bb12494c9829274b5856bc1173b8a3be47eae9801110cc1affffff9f1b79942db660c320789f47890a740cb021ceffffd8669f1b9073b58031aff0f09fd8669f1ba9e42fe6d5e8428a9f1b89681ca6a2e6d5f81b1aa5a319d9935a651bcb03ac410d8bdb08ffffd8669f1b2d6af8fa7fd85c429f46ea24f0fe41dd456b2cf9ce5245c8fb18f50447560a101259a88e4546d0941493ffff1b07fe9e0572932347bf482b96bd771f4e404a1b0371642bbfaebcc64b61c5ed9c842ba7b798a8901b03daa4a58c7a8c1247c82c9798c7ba4a49a616a52139973cf060ff1bdcc0171f5ab35c01ffffff", + "cborBytes": [ + 216, 126, 159, 216, 102, 159, 27, 75, 50, 89, 20, 198, 131, 99, 7, 159, 159, 27, 99, 112, 245, 220, 88, 187, 18, + 73, 76, 152, 41, 39, 75, 88, 86, 188, 17, 115, 184, 163, 190, 71, 234, 233, 128, 17, 16, 204, 26, 255, 255, 255, + 159, 27, 121, 148, 45, 182, 96, 195, 32, 120, 159, 71, 137, 10, 116, 12, 176, 33, 206, 255, 255, 216, 102, 159, + 27, 144, 115, 181, 128, 49, 175, 240, 240, 159, 216, 102, 159, 27, 169, 228, 47, 230, 213, 232, 66, 138, 159, 27, + 137, 104, 28, 166, 162, 230, 213, 248, 27, 26, 165, 163, 25, 217, 147, 90, 101, 27, 203, 3, 172, 65, 13, 139, 219, + 8, 255, 255, 216, 102, 159, 27, 45, 106, 248, 250, 127, 216, 92, 66, 159, 70, 234, 36, 240, 254, 65, 221, 69, 107, + 44, 249, 206, 82, 69, 200, 251, 24, 245, 4, 71, 86, 10, 16, 18, 89, 168, 142, 69, 70, 208, 148, 20, 147, 255, 255, + 27, 7, 254, 158, 5, 114, 147, 35, 71, 191, 72, 43, 150, 189, 119, 31, 78, 64, 74, 27, 3, 113, 100, 43, 191, 174, + 188, 198, 75, 97, 197, 237, 156, 132, 43, 167, 183, 152, 168, 144, 27, 3, 218, 164, 165, 140, 122, 140, 18, 71, + 200, 44, 151, 152, 199, 186, 74, 73, 166, 22, 165, 33, 57, 151, 60, 240, 96, 255, 27, 220, 192, 23, 31, 90, 179, + 92, 1, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2767, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4848969348095083478" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0165f8" + }, + { + "_tag": "ByteArray", + "bytearray": "cdfc02fef9" + } + ] + }, + "cborHex": "d8669f1b434affee5ff703d69f430165f845cdfc02fef9ffff", + "cborBytes": [ + 216, 102, 159, 27, 67, 74, 255, 238, 95, 247, 3, 214, 159, 67, 1, 101, 248, 69, 205, 252, 2, 254, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2768, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b728" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "038d1075" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7679046185293009357" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17461804842611750637" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16456555642875594620" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fa6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91f4875d8720" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45a4d1d6316afc7ae54fe2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10014065858090237844" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53635acb59ddfa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b935ee9ac10" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6cdf59f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15247737703735011235" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfb8435dd46227" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdf9a56496" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [] + } + ] + }, + "cborHex": "d905069fbf1bfffffffffffffff942b72844038d10751bfffffffffffffffc41da0bffd8669f1b6a9173d1f83551cd9f1bf254cafcdd11b6edbf411c1be4616e2aa80cc77c421fa64691f4875d87204b45a4d1d6316afc7ae54fe21b8af91bd754d5ff944753635acb59ddfa467b935ee9ac10446cdf59f21bd39ad8a7d374a7a347dfb8435dd4622745bdf9a56496ffffffd8669f1bfffffffffffffff780ffff", + "cborBytes": [ + 217, 5, 6, 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 249, 66, 183, 40, 68, 3, 141, 16, 117, 27, 255, 255, + 255, 255, 255, 255, 255, 252, 65, 218, 11, 255, 216, 102, 159, 27, 106, 145, 115, 209, 248, 53, 81, 205, 159, 27, + 242, 84, 202, 252, 221, 17, 182, 237, 191, 65, 28, 27, 228, 97, 110, 42, 168, 12, 199, 124, 66, 31, 166, 70, 145, + 244, 135, 93, 135, 32, 75, 69, 164, 209, 214, 49, 106, 252, 122, 229, 79, 226, 27, 138, 249, 27, 215, 84, 213, + 255, 148, 71, 83, 99, 90, 203, 89, 221, 250, 70, 123, 147, 94, 233, 172, 16, 68, 108, 223, 89, 242, 27, 211, 154, + 216, 167, 211, 116, 167, 163, 71, 223, 184, 67, 93, 212, 98, 39, 69, 189, 249, 165, 100, 150, 255, 255, 255, 216, + 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2769, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "515043" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10217899144901007990" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03995b0400bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4fdfd05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0bffd8" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f85ce1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14457718298188699408" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cac5c18244" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12735708571083552233" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cbb4d4b371758de56e" + } + ] + } + } + ] + }, + "cborHex": "bf01435150431b8dcd4522b2979a76bf4603995b0400bc44a4fdfd054107430bffd8ff43f85ce1d8669f1bfffffffffffffffa9f1bc8a422312233d71045cac5c182441bb0be5377fe5535e949cbb4d4b371758de56effffff", + "cborBytes": [ + 191, 1, 67, 81, 80, 67, 27, 141, 205, 69, 34, 178, 151, 154, 118, 191, 70, 3, 153, 91, 4, 0, 188, 68, 164, 253, + 253, 5, 65, 7, 67, 11, 255, 216, 255, 67, 248, 92, 225, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, + 159, 27, 200, 164, 34, 49, 34, 51, 215, 16, 69, 202, 197, 193, 130, 68, 27, 176, 190, 83, 119, 254, 85, 53, 233, + 73, 203, 180, 212, 179, 113, 117, 141, 229, 110, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2770, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10994710f9e1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "43c75a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7769209545031809140" + } + }, + { + "_tag": "ByteArray", + "bytearray": "29b596" + }, + { + "_tag": "ByteArray", + "bytearray": "43fcb48ab927ce56535a9e89" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14442743697352620070" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45d497282a50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2781960978842714414" + } + } + } + ] + }, + "cborHex": "bf4610994710f9e19f4343c75a1b6bd1c6eb0d31f8744329b5964c43fcb48ab927ce56535a9e891bc86eeedf2eb6f826ff4645d497282a501b269b82c552eb012eff", + "cborBytes": [ + 191, 70, 16, 153, 71, 16, 249, 225, 159, 67, 67, 199, 90, 27, 107, 209, 198, 235, 13, 49, 248, 116, 67, 41, 181, + 150, 76, 67, 252, 180, 138, 185, 39, 206, 86, 83, 90, 158, 137, 27, 200, 110, 238, 223, 46, 182, 248, 38, 255, 70, + 69, 212, 151, 40, 42, 80, 27, 38, 155, 130, 197, 82, 235, 1, 46, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2771, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8227978900592899020" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2026366634228601803" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4483618287200402767" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3090690477613526557" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10535408146064339309" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4907010502538213524" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5763232945923198085" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a23f2a6e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7696632002157807459" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "041c9d392a25" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10329378354586172587" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8799928414248423867" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12059156490628814156" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e836fd4c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12623807201849782145" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12314487614207717952" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13607997905044636179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3676773260350434549" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14971391879023525867" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6023882000873844817" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16918623281793666995" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcee4083859574" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "990422868776399546" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11346191305396085424" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10355074511933239835" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9940598156276201706" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14485090697747251217" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0919c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c865cf5e0901" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c5b3" + }, + { + "_tag": "ByteArray", + "bytearray": "da87b97cfb633a2dfd4f" + }, + { + "_tag": "ByteArray", + "bytearray": "2a7195f039" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2863615502467927106" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15727377534318480715" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7894567624673865142" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4359497573620871360" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1304394127849592061" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13013436247943710947" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17120891463810695929" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3223590408298838912" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e519" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c2285879d30b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4ab54cf691079f81e9eb" + }, + { + "_tag": "ByteArray", + "bytearray": "918d" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1b722fa737653fb3ccbf1b1c1f19b7b9e653cb1b3e390313b5067d4f1b2ae4569d3cd62e1d1b923549e3cdebf16d1b4419340db8e6b89441f41b4ffb1dd453948c8544a23f2a6e1b6acfee070785076346041c9d392a25ffbf1b8f5952e2d7b7bcab1b7a1fa044cc24d1bb1ba75abaefa2c6d54c44e836fd4c1baf30c5c42b462f811baae5d93d7bcc72401bbcd951ff127202131b330685ccc6d7acf51bcfc51197965d7feb1b539920c38ef470511beacb063c6ff70fb347fcee4083859574ffbf1b0dbeb05a06d732ba1b9d75c4e0a7c262b01b8fb49d67b27b721b1b89f4195b07bef8ea1bc905613e8a8a4011430919c046c865cf5e09014101ff9f42c5b34ada87b97cfb633a2dfd4f452a7195f0391b27bd9b209de70c42ffff9fbf1bda42de8a4d830d4b1b6d8f236d6bfc2db6ffff1b3c800bf212d970c0d8669f1b121a238c5d9494fd9f9f1bb4990351c1e088e341ff1bed99a013727442f91b2cbc7e65a4023b8042e519ff46c2285879d30b9f4a4ab54cf691079f81e9eb42918dffffffff", + "cborBytes": [ + 159, 159, 27, 114, 47, 167, 55, 101, 63, 179, 204, 191, 27, 28, 31, 25, 183, 185, 230, 83, 203, 27, 62, 57, 3, 19, + 181, 6, 125, 79, 27, 42, 228, 86, 157, 60, 214, 46, 29, 27, 146, 53, 73, 227, 205, 235, 241, 109, 27, 68, 25, 52, + 13, 184, 230, 184, 148, 65, 244, 27, 79, 251, 29, 212, 83, 148, 140, 133, 68, 162, 63, 42, 110, 27, 106, 207, 238, + 7, 7, 133, 7, 99, 70, 4, 28, 157, 57, 42, 37, 255, 191, 27, 143, 89, 82, 226, 215, 183, 188, 171, 27, 122, 31, + 160, 68, 204, 36, 209, 187, 27, 167, 90, 186, 239, 162, 198, 213, 76, 68, 232, 54, 253, 76, 27, 175, 48, 197, 196, + 43, 70, 47, 129, 27, 170, 229, 217, 61, 123, 204, 114, 64, 27, 188, 217, 81, 255, 18, 114, 2, 19, 27, 51, 6, 133, + 204, 198, 215, 172, 245, 27, 207, 197, 17, 151, 150, 93, 127, 235, 27, 83, 153, 32, 195, 142, 244, 112, 81, 27, + 234, 203, 6, 60, 111, 247, 15, 179, 71, 252, 238, 64, 131, 133, 149, 116, 255, 191, 27, 13, 190, 176, 90, 6, 215, + 50, 186, 27, 157, 117, 196, 224, 167, 194, 98, 176, 27, 143, 180, 157, 103, 178, 123, 114, 27, 27, 137, 244, 25, + 91, 7, 190, 248, 234, 27, 201, 5, 97, 62, 138, 138, 64, 17, 67, 9, 25, 192, 70, 200, 101, 207, 94, 9, 1, 65, 1, + 255, 159, 66, 197, 179, 74, 218, 135, 185, 124, 251, 99, 58, 45, 253, 79, 69, 42, 113, 149, 240, 57, 27, 39, 189, + 155, 32, 157, 231, 12, 66, 255, 255, 159, 191, 27, 218, 66, 222, 138, 77, 131, 13, 75, 27, 109, 143, 35, 109, 107, + 252, 45, 182, 255, 255, 27, 60, 128, 11, 242, 18, 217, 112, 192, 216, 102, 159, 27, 18, 26, 35, 140, 93, 148, 148, + 253, 159, 159, 27, 180, 153, 3, 81, 193, 224, 136, 227, 65, 255, 27, 237, 153, 160, 19, 114, 116, 66, 249, 27, 44, + 188, 126, 101, 164, 2, 59, 128, 66, 229, 25, 255, 70, 194, 40, 88, 121, 211, 11, 159, 74, 74, 181, 76, 246, 145, + 7, 159, 129, 233, 235, 66, 145, 141, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2772, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2061089105115455257" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e40d259d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e195f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d9d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a59c9bdbfd5f537" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d8f4724" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6054196764105372268" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46dad667633d1b6bb22ca4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fa5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cb0209530209191" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f09c1f5effed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14687221572416505438" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "443159080049063477" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6179601180983252625" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10949569679538962811" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4a39453104a73b3f9524" + }, + { + "_tag": "ByteArray", + "bytearray": "2bf86715a92257d0ab8c8d99" + }, + { + "_tag": "ByteArray", + "bytearray": "97e5" + }, + { + "_tag": "ByteArray", + "bytearray": "eb087ef7567f884a73" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10941927097879218722" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "39bbaf6324826d9b8e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16900766030651183660" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c0ec32076b56a648716" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a5ae2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bb93a30ca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b58b04885d9c9ab27da7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6088212420236427683" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2f1fb3146d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2744811217888124077" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14936625399840028980" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11921752826674745876" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8122bc470f095ed2b2192e69" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1d8d6171688033737" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "984391c28394258534b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14771002155939931370" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4296102597738620304" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14380502901571506460" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "206131315841279442" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5699374028218751995" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10632816823987397473" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "97665c0af8b4485f2a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4789880150444217253" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "83e604c64147" + } + ] + } + ] + }, + "cborHex": "d8669f1b1c9a759ef8d59f199f44e40d259d9fbf4100437e195f420d9d489a59c9bdbfd5f537446d8f47241b5404d3e164d1f26c417d4b46dad667633d1b6bb22ca4427fa5488cb020953020919146f09c1f5effed1bcbd37e343157065eff1b06266ad5d95036351b55c25a887e175691d8669f1b97f4af9c384ec17b9f4a4a39453104a73b3f95244c2bf86715a92257d0ab8c8d994297e549eb087ef7567f884a731b97d988b9034fca22ffffbf4939bbaf6324826d9b8e1bea8b952928f3d22c4a4c0ec32076b56a648716433a5ae24292ed457bb93a30ca4ab58b04885d9c9ab27da71b547dacf0815041a346d2f1fb3146d11b2617874291ba9cadffff1bcf498da9dc8ab934d8669f1ba57293081df512149fbf4c8122bc470f095ed2b2192e6949b1d8d61716880337374a984391c28394258534b11bccfd2433615424eaffffffd8669f1b3b9ed28d08d7e5909f1bc791cf32a3a4d11c9f1b02dc5356f1cda5d21b4f183e7b6a10dbfbffd8669f1b938f5a90fb90e3619f4997665c0af8b4485f2a1b4279129e73ec13a5ffff4683e604c64147ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 28, 154, 117, 158, 248, 213, 159, 25, 159, 68, 228, 13, 37, 157, 159, 191, 65, 0, 67, 126, 25, + 95, 66, 13, 157, 72, 154, 89, 201, 189, 191, 213, 245, 55, 68, 109, 143, 71, 36, 27, 84, 4, 211, 225, 100, 209, + 242, 108, 65, 125, 75, 70, 218, 214, 103, 99, 61, 27, 107, 178, 44, 164, 66, 127, 165, 72, 140, 176, 32, 149, 48, + 32, 145, 145, 70, 240, 156, 31, 94, 255, 237, 27, 203, 211, 126, 52, 49, 87, 6, 94, 255, 27, 6, 38, 106, 213, 217, + 80, 54, 53, 27, 85, 194, 90, 136, 126, 23, 86, 145, 216, 102, 159, 27, 151, 244, 175, 156, 56, 78, 193, 123, 159, + 74, 74, 57, 69, 49, 4, 167, 59, 63, 149, 36, 76, 43, 248, 103, 21, 169, 34, 87, 208, 171, 140, 141, 153, 66, 151, + 229, 73, 235, 8, 126, 247, 86, 127, 136, 74, 115, 27, 151, 217, 136, 185, 3, 79, 202, 34, 255, 255, 191, 73, 57, + 187, 175, 99, 36, 130, 109, 155, 142, 27, 234, 139, 149, 41, 40, 243, 210, 44, 74, 76, 14, 195, 32, 118, 181, 106, + 100, 135, 22, 67, 58, 90, 226, 66, 146, 237, 69, 123, 185, 58, 48, 202, 74, 181, 139, 4, 136, 93, 156, 154, 178, + 125, 167, 27, 84, 125, 172, 240, 129, 80, 65, 163, 70, 210, 241, 251, 49, 70, 209, 27, 38, 23, 135, 66, 145, 186, + 156, 173, 255, 255, 27, 207, 73, 141, 169, 220, 138, 185, 52, 216, 102, 159, 27, 165, 114, 147, 8, 29, 245, 18, + 20, 159, 191, 76, 129, 34, 188, 71, 15, 9, 94, 210, 178, 25, 46, 105, 73, 177, 216, 214, 23, 22, 136, 3, 55, 55, + 74, 152, 67, 145, 194, 131, 148, 37, 133, 52, 177, 27, 204, 253, 36, 51, 97, 84, 36, 234, 255, 255, 255, 216, 102, + 159, 27, 59, 158, 210, 141, 8, 215, 229, 144, 159, 27, 199, 145, 207, 50, 163, 164, 209, 28, 159, 27, 2, 220, 83, + 86, 241, 205, 165, 210, 27, 79, 24, 62, 123, 106, 16, 219, 251, 255, 216, 102, 159, 27, 147, 143, 90, 144, 251, + 144, 227, 97, 159, 73, 151, 102, 92, 10, 248, 180, 72, 95, 42, 27, 66, 121, 18, 158, 115, 236, 19, 165, 255, 255, + 70, 131, 230, 4, 198, 65, 71, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2773, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3713534621059308411" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5403341670782329691" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5658079076465994248" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6862115276657815852" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10525091465999585505" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5669652668430983803" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10163925310049195939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e75a30f38e" + } + } + ] + }, + "cborHex": "bf1b338920100d5adb7b9f41b81b4afc869f170be35bff1b4e8588f137d36a08d8669f1b5f3b217cb0f8712c9f1b9210a2ec8b6690e11b4eaea71015aca27bffff1b8d0d8437fd1597a345e75a30f38eff", + "cborBytes": [ + 191, 27, 51, 137, 32, 16, 13, 90, 219, 123, 159, 65, 184, 27, 74, 252, 134, 159, 23, 11, 227, 91, 255, 27, 78, + 133, 136, 241, 55, 211, 106, 8, 216, 102, 159, 27, 95, 59, 33, 124, 176, 248, 113, 44, 159, 27, 146, 16, 162, 236, + 139, 102, 144, 225, 27, 78, 174, 167, 16, 21, 172, 162, 123, 255, 255, 27, 141, 13, 132, 55, 253, 21, 151, 163, + 69, 231, 90, 48, 243, 142, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2774, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d99f93" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11000875037080875036" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5327879561838486785" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f43d99f93d8669f1b98aaf58fa3aaf01c9f1b49f06e3bb1726501ffffffff", + "cborBytes": [ + 159, 159, 67, 217, 159, 147, 216, 102, 159, 27, 152, 170, 245, 143, 163, 170, 240, 28, 159, 27, 73, 240, 110, 59, + 177, 114, 101, 1, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2775, + "sample": { + "_tag": "ByteArray", + "bytearray": "0c60c9" + }, + "cborHex": "430c60c9", + "cborBytes": [67, 12, 96, 201], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2776, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4589183809494900192" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15966511554868741173" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2457953546216228115" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "71c352c3" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2999632138756445502" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df5b373ce6a7c7ace21241" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11053321568842761641" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3271799714511543708" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12084503610680796833" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10553944303196934910" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15650027682967199913" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85c6f88778f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17220771474863410232" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15566224315496280967" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17301837867318908131" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "909847d58d6ef455e1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "648935852498958156" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3374991666358083476" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12966405296302485976" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "748611877807241508" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6533936519384232524" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6765186399582514547" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64cc34e9fde9562296" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2679615961555407644" + } + }, + { + "_tag": "ByteArray", + "bytearray": "21ac3f1a401655cf" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5205050975cd6f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36dbdd17fc75af29c9" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3fb00e5c35eadde09fd8669f1bdd9471aa3a1f043580ffd8669f1b221c67ba3ca145139f4471c352c3ffffbf1b29a0d589976c553e4bdf5b373ce6a7c7ace212411b99654967630945a91b2d67c4816faf5d9c1ba7b4c801e98de6a11b9277246d334f92fe1bd9301142a04a20a94685c6f88778f21beefc786ab569cc381bd806568aa33433871bf01c79df0af214e3414fffffff8049909847d58d6ef455e1d8669f1b09017bb83a37374c9fd8669f1b2ed6610a012d5f949f1bb3f1eceb03da71d8ffff1b0a639a895b56b9249f1b5aad34a566d9724c1b5de2c52fda6b6d734964cc34e9fde95622961b252fe88512fa131c4821ac3f1a401655cfffffffbf48c5205050975cd6f84936dbdd17fc75af29c9ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 63, 176, 14, 92, 53, 234, 221, 224, 159, 216, 102, 159, 27, 221, 148, 113, 170, 58, 31, 4, + 53, 128, 255, 216, 102, 159, 27, 34, 28, 103, 186, 60, 161, 69, 19, 159, 68, 113, 195, 82, 195, 255, 255, 191, 27, + 41, 160, 213, 137, 151, 108, 85, 62, 75, 223, 91, 55, 60, 230, 167, 199, 172, 226, 18, 65, 27, 153, 101, 73, 103, + 99, 9, 69, 169, 27, 45, 103, 196, 129, 111, 175, 93, 156, 27, 167, 180, 200, 1, 233, 141, 230, 161, 27, 146, 119, + 36, 109, 51, 79, 146, 254, 27, 217, 48, 17, 66, 160, 74, 32, 169, 70, 133, 198, 248, 135, 120, 242, 27, 238, 252, + 120, 106, 181, 105, 204, 56, 27, 216, 6, 86, 138, 163, 52, 51, 135, 27, 240, 28, 121, 223, 10, 242, 20, 227, 65, + 79, 255, 255, 255, 128, 73, 144, 152, 71, 213, 141, 110, 244, 85, 225, 216, 102, 159, 27, 9, 1, 123, 184, 58, 55, + 55, 76, 159, 216, 102, 159, 27, 46, 214, 97, 10, 1, 45, 95, 148, 159, 27, 179, 241, 236, 235, 3, 218, 113, 216, + 255, 255, 27, 10, 99, 154, 137, 91, 86, 185, 36, 159, 27, 90, 173, 52, 165, 102, 217, 114, 76, 27, 93, 226, 197, + 47, 218, 107, 109, 115, 73, 100, 204, 52, 233, 253, 233, 86, 34, 150, 27, 37, 47, 232, 133, 18, 250, 19, 28, 72, + 33, 172, 63, 26, 64, 22, 85, 207, 255, 255, 255, 191, 72, 197, 32, 80, 80, 151, 92, 214, 248, 73, 54, 219, 221, + 23, 252, 117, 175, 41, 201, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2777, + "sample": { + "_tag": "ByteArray", + "bytearray": "1449" + }, + "cborHex": "421449", + "cborBytes": [66, 20, 73], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2778, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14350805508392617768" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "222a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "409404661095143158" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3586" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02f606fb2402fc" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bc7284d9378760728bf42222a1b05ae7f5ec1f716f64235864702f606fb2402fcffff", + "cborBytes": [ + 191, 27, 199, 40, 77, 147, 120, 118, 7, 40, 191, 66, 34, 42, 27, 5, 174, 127, 94, 193, 247, 22, 246, 66, 53, 134, + 71, 2, 246, 6, 251, 36, 2, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2779, + "sample": { + "_tag": "ByteArray", + "bytearray": "0950cb3935902082d8" + }, + "cborHex": "490950cb3935902082d8", + "cborBytes": [73, 9, 80, 203, 57, 53, 144, 32, 130, 216], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2780, + "sample": { + "_tag": "ByteArray", + "bytearray": "7fdb" + }, + "cborHex": "427fdb", + "cborBytes": [66, 127, 219], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2781, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9a803d4fc04" + }, + "cborHex": "46f9a803d4fc04", + "cborBytes": [70, 249, 168, 3, 212, 252, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2782, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12576943082711001567" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01710103" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84c6558355ccd4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6534370436354292904" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a2f7ff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8695956638758799704" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13997166511639845816" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b93610ffbbc" + } + ] + } + } + ] + }, + "cborHex": "bf1bae8a4719254ba9dfd905029f4401710103ff4784c6558355ccd4d8669f1b5aaebf4a91b63ca89f43a2f7ff1b78ae3e7d636b09581bc23fecc83c495bb8464b93610ffbbcffffff", + "cborBytes": [ + 191, 27, 174, 138, 71, 25, 37, 75, 169, 223, 217, 5, 2, 159, 68, 1, 113, 1, 3, 255, 71, 132, 198, 85, 131, 85, + 204, 212, 216, 102, 159, 27, 90, 174, 191, 74, 145, 182, 60, 168, 159, 67, 162, 247, 255, 27, 120, 174, 62, 125, + 99, 107, 9, 88, 27, 194, 63, 236, 200, 60, 73, 91, 184, 70, 75, 147, 97, 15, 251, 188, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2783, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0e05800c60b75f99" + } + ] + }, + "cborHex": "d905079f480e05800c60b75f99ff", + "cborBytes": [217, 5, 7, 159, 72, 14, 5, 128, 12, 96, 183, 95, 153, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2784, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00eb06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cfd7" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "1d6d1a02da00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "d905079f9fbf4300eb064202ff4248fc42cfd7ff0aff80461d6d1a02da000eff", + "cborBytes": [ + 217, 5, 7, 159, 159, 191, 67, 0, 235, 6, 66, 2, 255, 66, 72, 252, 66, 207, 215, 255, 10, 255, 128, 70, 29, 109, + 26, 2, 218, 0, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2785, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fe03fd04" + }, + { + "_tag": "ByteArray", + "bytearray": "c1843a1637" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1485815573535528022" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16374615325055213118" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16547295014209614376" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9937525627900177417" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "979311546449469429" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b676fb46ec" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12400079779840177016" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3206966432457061003" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03059b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4514347598937452826" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "320d7e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11356752654172509142" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcbd05c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7809908975368950447" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ce00d4aa10c22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b89bb6a8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7df77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4824705" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d34e9da46a4b57421a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d49c1d3f3a55912653d5" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12800673743704946056" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b8ec4e3e8c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6380881857181183379" + } + } + ] + } + } + ] + }, + "cborHex": "bf129f44fe03fd0445c1843a1637ff134200f81b149ead6456541456d8669f1be33e51e1b7955e3e9f1be5a3cd24e38e72281b89e92ee84554ac091b0d9736a9b28f1ff545b676fb46ec1bac15eedc7fe0b378ffff1b2c816efaa534728bbf0f4303059b1b3ea62f39234df11a43320d7e1b9d9b4a5e49ed53d61044fcbd05c21bfffffffffffffff8ff1b6c625ed59d0052afbf470ce00d4aa10c2244b89bb6a843b7df7744e482470549d34e9da46a4b57421a4ad49c1d3f3a55912653d5ff1bb1a520f2f333f5889f45b8ec4e3e8c1b588d723de304ed93ffff", + "cborBytes": [ + 191, 18, 159, 68, 254, 3, 253, 4, 69, 193, 132, 58, 22, 55, 255, 19, 66, 0, 248, 27, 20, 158, 173, 100, 86, 84, + 20, 86, 216, 102, 159, 27, 227, 62, 81, 225, 183, 149, 94, 62, 159, 27, 229, 163, 205, 36, 227, 142, 114, 40, 27, + 137, 233, 46, 232, 69, 84, 172, 9, 27, 13, 151, 54, 169, 178, 143, 31, 245, 69, 182, 118, 251, 70, 236, 27, 172, + 21, 238, 220, 127, 224, 179, 120, 255, 255, 27, 44, 129, 110, 250, 165, 52, 114, 139, 191, 15, 67, 3, 5, 155, 27, + 62, 166, 47, 57, 35, 77, 241, 26, 67, 50, 13, 126, 27, 157, 155, 74, 94, 73, 237, 83, 214, 16, 68, 252, 189, 5, + 194, 27, 255, 255, 255, 255, 255, 255, 255, 248, 255, 27, 108, 98, 94, 213, 157, 0, 82, 175, 191, 71, 12, 224, 13, + 74, 161, 12, 34, 68, 184, 155, 182, 168, 67, 183, 223, 119, 68, 228, 130, 71, 5, 73, 211, 78, 157, 164, 106, 75, + 87, 66, 26, 74, 212, 156, 29, 63, 58, 85, 145, 38, 83, 213, 255, 27, 177, 165, 32, 242, 243, 51, 245, 136, 159, + 69, 184, 236, 78, 62, 140, 27, 88, 141, 114, 61, 227, 4, 237, 147, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2786, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15672314762235734747" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa240c1d444a6d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1775856705001586323" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7518f0330b1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7459811413400220314" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6df401d5382624e3056016" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8321081819400795233" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3faae4f98ec9c1343ef0094f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8412990213116110038" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "deffad30abec0e334166" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12146162399811853870" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17446446546471893568" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17972412219007432992" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0f1edffd7" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12023881792588075283" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12060782229484896750" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62b51eadf71e2a4e968672" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4143926012571585619" + } + }, + { + "_tag": "ByteArray", + "bytearray": "79b2bc" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b3232f796cfac72d81179769" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18289393189424863934" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f1ad387589d6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9192200079361938168" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7867233813201730945" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13816422479985559334" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72ad45" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b8c25f5449b52194a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11760230160932269856" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3ef834ad602d4b8d23f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3844800037453033688" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16382675682425983439" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "556d3a5d702ccc898b" + } + ] + }, + "cborHex": "d8669f1bd97f3f3da32beadb9f47aa240c1d444a6dbf1b18a51c43a99d7e9346f7518f0330b11b678692f4eb1ff29a4b6df401d5382624e30560161b737a6bd3e85874614c3faae4f98ec9c1343ef0094f1b74c0f2065f9fa4d64adeffad30abec0e3341661ba88fd65978fdde2e1bf21e3ab2e34c3a401bf96ad5b0f6d3f92045c0f1edffd7ff9fd8669f1ba6dd68c8fc7fd1139f1ba760818975ca81ee4b62b51eadf71e2a4e9686721b39822ec0c2d48c534379b2bcffff9f4cb3232f796cfac72d811797691bfdd0fa34551e1abeff46f1ad387589d6bf1b7f91414512af92f81b6d2e077880d4bd811bbfbdcb0b0242c7264372ad45494b8c25f5449b52194a1ba334bb05e333ef204ab3ef834ad602d4b8d23f1b355b794370cbf0d8ff1be35af4bbe96e51cfff49556d3a5d702ccc898bffff", + "cborBytes": [ + 216, 102, 159, 27, 217, 127, 63, 61, 163, 43, 234, 219, 159, 71, 170, 36, 12, 29, 68, 74, 109, 191, 27, 24, 165, + 28, 67, 169, 157, 126, 147, 70, 247, 81, 143, 3, 48, 177, 27, 103, 134, 146, 244, 235, 31, 242, 154, 75, 109, 244, + 1, 213, 56, 38, 36, 227, 5, 96, 22, 27, 115, 122, 107, 211, 232, 88, 116, 97, 76, 63, 170, 228, 249, 142, 201, + 193, 52, 62, 240, 9, 79, 27, 116, 192, 242, 6, 95, 159, 164, 214, 74, 222, 255, 173, 48, 171, 236, 14, 51, 65, + 102, 27, 168, 143, 214, 89, 120, 253, 222, 46, 27, 242, 30, 58, 178, 227, 76, 58, 64, 27, 249, 106, 213, 176, 246, + 211, 249, 32, 69, 192, 241, 237, 255, 215, 255, 159, 216, 102, 159, 27, 166, 221, 104, 200, 252, 127, 209, 19, + 159, 27, 167, 96, 129, 137, 117, 202, 129, 238, 75, 98, 181, 30, 173, 247, 30, 42, 78, 150, 134, 114, 27, 57, 130, + 46, 192, 194, 212, 140, 83, 67, 121, 178, 188, 255, 255, 159, 76, 179, 35, 47, 121, 108, 250, 199, 45, 129, 23, + 151, 105, 27, 253, 208, 250, 52, 85, 30, 26, 190, 255, 70, 241, 173, 56, 117, 137, 214, 191, 27, 127, 145, 65, 69, + 18, 175, 146, 248, 27, 109, 46, 7, 120, 128, 212, 189, 129, 27, 191, 189, 203, 11, 2, 66, 199, 38, 67, 114, 173, + 69, 73, 75, 140, 37, 245, 68, 155, 82, 25, 74, 27, 163, 52, 187, 5, 227, 51, 239, 32, 74, 179, 239, 131, 74, 214, + 2, 212, 184, 210, 63, 27, 53, 91, 121, 67, 112, 203, 240, 216, 255, 27, 227, 90, 244, 187, 233, 110, 81, 207, 255, + 73, 85, 109, 58, 93, 112, 44, 204, 137, 139, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2787, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10597318403941184579" + } + }, + "cborHex": "1b93113cf0fe9fb443", + "cborBytes": [27, 147, 17, 60, 240, 254, 159, 180, 67], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2788, + "sample": { + "_tag": "ByteArray", + "bytearray": "20fa03eb2e576c" + }, + "cborHex": "4720fa03eb2e576c", + "cborBytes": [71, 32, 250, 3, 235, 46, 87, 108], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2789, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "661481114852718801" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17073640484498816229" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e55" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7661016652077130443" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fb572" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8433286746597092444" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14045603825630401621" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4752806411511403215" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17003772769251776198" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f31a90d352f7" + } + } + ] + } + ] + }, + "cborHex": "9f1b092e0d91bc6cf8d1bf1becf1c18f8547bce5428e55ffbf1b6a51660e2568e2cb435fb5721b75090d9d53edec5c41181bc2ec02433a9154551b41f55c3ff45612cf1bebf9893e68b656c646f31a90d352f7ffff", + "cborBytes": [ + 159, 27, 9, 46, 13, 145, 188, 108, 248, 209, 191, 27, 236, 241, 193, 143, 133, 71, 188, 229, 66, 142, 85, 255, + 191, 27, 106, 81, 102, 14, 37, 104, 226, 203, 67, 95, 181, 114, 27, 117, 9, 13, 157, 83, 237, 236, 92, 65, 24, 27, + 194, 236, 2, 67, 58, 145, 84, 85, 27, 65, 245, 92, 63, 244, 86, 18, 207, 27, 235, 249, 137, 62, 104, 182, 86, 198, + 70, 243, 26, 144, 211, 82, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2790, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9526814242252187241" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0306aedffb02000301fefb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b80ccfd9176134fa257c79" + } + } + ] + }, + "cborHex": "bf1b84360b13fe92e6694b0306aedffb02000301fefb41014bb80ccfd9176134fa257c79ff", + "cborBytes": [ + 191, 27, 132, 54, 11, 19, 254, 146, 230, 105, 75, 3, 6, 174, 223, 251, 2, 0, 3, 1, 254, 251, 65, 1, 75, 184, 12, + 207, 217, 23, 97, 52, 250, 37, 124, 121, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2791, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4493196905368734004" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "219f719e52" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9618865533475204810" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "91a4b1c4d54381c5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "42" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f1bffffffffffffffefbf1b3e5b0ac78a63493445219f719e52ff9f9f1b857d133d6109aecaffff4891a4b1c4d54381c59f4142a0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 191, + 27, 62, 91, 10, 199, 138, 99, 73, 52, 69, 33, 159, 113, 158, 82, 255, 159, 159, 27, 133, 125, 19, 61, 97, 9, 174, + 202, 255, 255, 72, 145, 164, 177, 196, 213, 67, 129, 197, 159, 65, 66, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2792, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11163901712314622712" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9fd8669f1b9aee25755de362f880ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 216, 102, 159, 27, 154, 238, 37, 117, 93, 227, 98, + 248, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2793, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcf4b5b2be48" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11521102395114657320" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2aab23eb4719516246fba7" + } + ] + } + } + ] + }, + "cborHex": "bf46bcf4b5b2be48d8669f1b9fe32d9641b616289f4b2aab23eb4719516246fba7ffffff", + "cborBytes": [ + 191, 70, 188, 244, 181, 178, 190, 72, 216, 102, 159, 27, 159, 227, 45, 150, 65, 182, 22, 40, 159, 75, 42, 171, 35, + 235, 71, 25, 81, 98, 70, 251, 167, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2794, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9670830087346129329" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13192044296235210174" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7305963829112189669" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12964675406969276063" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10470392855454878757" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b8635b0b9e76d09b1031bfffffffffffffffdd8669f1bb7138e649a5155be9f1b6563ff64d815b2e51bb3ebc797c4a5869f1b914e4ed3d82d0c25ffffff", + "cborBytes": [ + 191, 27, 134, 53, 176, 185, 231, 109, 9, 177, 3, 27, 255, 255, 255, 255, 255, 255, 255, 253, 216, 102, 159, 27, + 183, 19, 142, 100, 154, 81, 85, 190, 159, 27, 101, 99, 255, 100, 216, 21, 178, 229, 27, 179, 235, 199, 151, 196, + 165, 134, 159, 27, 145, 78, 78, 211, 216, 45, 12, 37, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2795, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2cca4833" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eab9da974e8de14aee" + } + } + ] + }, + "cborHex": "bf442cca483349eab9da974e8de14aeeff", + "cborBytes": [191, 68, 44, 202, 72, 51, 73, 234, 185, 218, 151, 78, 141, 225, 74, 238, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2796, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11051008970539606321" + } + }, + "cborHex": "1b995d121ba2ab2131", + "cborBytes": [27, 153, 93, 18, 27, 162, 171, 33, 49], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2797, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16579680999166569027" + } + } + } + ] + } + ] + }, + "cborHex": "d87a9fbf413c1be616dc069c9dea43ffff", + "cborBytes": [216, 122, 159, 191, 65, 60, 27, 230, 22, 220, 6, 156, 157, 234, 67, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2798, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17745441512556196241" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b7c74ef3d3837521" + }, + { + "_tag": "ByteArray", + "bytearray": "6cf2079d759d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12766044842093913926" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f77ba6829959" + }, + { + "_tag": "ByteArray", + "bytearray": "1362bfab8cb371321ee43aad" + } + ] + }, + "cborHex": "d8669f1bf64479094a61f1919f48b7c74ef3d3837521466cf2079d759dd8669f1bb12a1a257fb7274680ff46f77ba68299594c1362bfab8cb371321ee43aadffff", + "cborBytes": [ + 216, 102, 159, 27, 246, 68, 121, 9, 74, 97, 241, 145, 159, 72, 183, 199, 78, 243, 211, 131, 117, 33, 70, 108, 242, + 7, 157, 117, 157, 216, 102, 159, 27, 177, 42, 26, 37, 127, 183, 39, 70, 128, 255, 70, 247, 123, 166, 130, 153, 89, + 76, 19, 98, 191, 171, 140, 179, 113, 50, 30, 228, 58, 173, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2799, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14120d462916288f4af4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7457631857896307705" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5469519952668645848" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15400831635507433392" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04041b03fc056d7303" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4397515387030260633" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1c64fed36948e26" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5659819834189828369" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11451778473122023679" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6858574308466810496" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a4f96d61035441b003f90206" + }, + { + "_tag": "ByteArray", + "bytearray": "0200fd05f9aca7" + }, + { + "_tag": "ByteArray", + "bytearray": "260655fafba600e0fd060359" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18307551304325280698" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f38" + } + } + ] + }, + "cborHex": "bf044a14120d462916288f4af406bf030e1b677ed4a99b8bbbf91b4be7a36b0eb9d9d81bd5babec68004cfb04904041b03fc056d7303ff1b3d071cf20a40cb9948d1c64fed36948e261b4e8bb826f5985111801b9eece3d8e0e748ffd8669f1b5f2e8cfec9c8de809f4ca4f96d61035441b003f90206470200fd05f9aca74c260655fafba600e0fd060359ffff1bfe117ce9e98c33ba428f38ff", + "cborBytes": [ + 191, 4, 74, 20, 18, 13, 70, 41, 22, 40, 143, 74, 244, 6, 191, 3, 14, 27, 103, 126, 212, 169, 155, 139, 187, 249, + 27, 75, 231, 163, 107, 14, 185, 217, 216, 27, 213, 186, 190, 198, 128, 4, 207, 176, 73, 4, 4, 27, 3, 252, 5, 109, + 115, 3, 255, 27, 61, 7, 28, 242, 10, 64, 203, 153, 72, 209, 198, 79, 237, 54, 148, 142, 38, 27, 78, 139, 184, 38, + 245, 152, 81, 17, 128, 27, 158, 236, 227, 216, 224, 231, 72, 255, 216, 102, 159, 27, 95, 46, 140, 254, 201, 200, + 222, 128, 159, 76, 164, 249, 109, 97, 3, 84, 65, 176, 3, 249, 2, 6, 71, 2, 0, 253, 5, 249, 172, 167, 76, 38, 6, + 85, 250, 251, 166, 0, 224, 253, 6, 3, 89, 255, 255, 27, 254, 17, 124, 233, 233, 140, 51, 186, 66, 143, 56, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2800, + "sample": { + "_tag": "ByteArray", + "bytearray": "0607" + }, + "cborHex": "420607", + "cborBytes": [66, 6, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2801, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3709897464030035448" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8291020460875849261" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5052179949451223430" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2199659471235422593" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "580280115275511382" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b8788e45a87772c6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4167406445552636979" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2985262727026661994" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7875772984672395526" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "140837284666950337" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14233417565227359204" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c40f247596" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14673076375042961913" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15087106075370098180" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8634e380" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18080023218546760038" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9844bcbccc78af2b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12370473604243463340" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1f782bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4066816765118918791" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16134579443512636457" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14309347723871145996" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b337c341670a1fdf89f1b730f9f2e74001e2d1b461cf2e57c6421861b1e86c2a281cf99811b080d91b0bd38365648b8788e45a87772c6ff1b39d59a1515d694331b296dc8a235a35a6a1b6d4c5dcd4b0421061b01f45ac3a3b442c11bc58741dd1b2e9be49f45c40f2475961bcba13d38c89cb1f9ff1bd1602b0a67128e04bf448634e3801bfae92553404b5966489844bcbccc78af2b1babacc03394471cac44d1f782bf1b38703c4d0b843087ff1bdfe98a84eae3f429d8669f1bc69503f0d0e2500c80ffff", + "cborBytes": [ + 191, 27, 51, 124, 52, 22, 112, 161, 253, 248, 159, 27, 115, 15, 159, 46, 116, 0, 30, 45, 27, 70, 28, 242, 229, + 124, 100, 33, 134, 27, 30, 134, 194, 162, 129, 207, 153, 129, 27, 8, 13, 145, 176, 189, 56, 54, 86, 72, 184, 120, + 142, 69, 168, 119, 114, 198, 255, 27, 57, 213, 154, 21, 21, 214, 148, 51, 27, 41, 109, 200, 162, 53, 163, 90, 106, + 27, 109, 76, 93, 205, 75, 4, 33, 6, 27, 1, 244, 90, 195, 163, 180, 66, 193, 27, 197, 135, 65, 221, 27, 46, 155, + 228, 159, 69, 196, 15, 36, 117, 150, 27, 203, 161, 61, 56, 200, 156, 177, 249, 255, 27, 209, 96, 43, 10, 103, 18, + 142, 4, 191, 68, 134, 52, 227, 128, 27, 250, 233, 37, 83, 64, 75, 89, 102, 72, 152, 68, 188, 188, 204, 120, 175, + 43, 27, 171, 172, 192, 51, 148, 71, 28, 172, 68, 209, 247, 130, 191, 27, 56, 112, 60, 77, 11, 132, 48, 135, 255, + 27, 223, 233, 138, 132, 234, 227, 244, 41, 216, 102, 159, 27, 198, 149, 3, 240, 208, 226, 80, 12, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2802, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16428275933129401079" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "71361d01d2b889cbb8d1db1a" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "774263295963004101" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5106766594150291115" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1157101184112773049" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3179" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6908779921631215141" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8371830441729030062" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6305158673457373637" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3147008938295786694" + } + }, + { + "_tag": "ByteArray", + "bytearray": "42ca03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15470227807245768265" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9263872398370364321" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f36425d4a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11821003100807314690" + } + } + ] + }, + "cborHex": "9f1be3fcf5eba246e2f79f4c71361d01d2b889cbb8d1db1aa0bf1b0abebc5d8e7f7cc51b46dee1291b28d6ab1b100ed9657839c7b94231791b5fe0eabc042dfe2542cbef1b742eb76e4f0f77ae1b57806c6847e661c5ff9f1b2bac6bf4b0197cc64342ca031bd6b14a39d54116491b808fe2dd3d695ba1ffff45f36425d4a71ba40ca3b098693d02ff", + "cborBytes": [ + 159, 27, 227, 252, 245, 235, 162, 70, 226, 247, 159, 76, 113, 54, 29, 1, 210, 184, 137, 203, 184, 209, 219, 26, + 160, 191, 27, 10, 190, 188, 93, 142, 127, 124, 197, 27, 70, 222, 225, 41, 27, 40, 214, 171, 27, 16, 14, 217, 101, + 120, 57, 199, 185, 66, 49, 121, 27, 95, 224, 234, 188, 4, 45, 254, 37, 66, 203, 239, 27, 116, 46, 183, 110, 79, + 15, 119, 174, 27, 87, 128, 108, 104, 71, 230, 97, 197, 255, 159, 27, 43, 172, 107, 244, 176, 25, 124, 198, 67, 66, + 202, 3, 27, 214, 177, 74, 57, 213, 65, 22, 73, 27, 128, 143, 226, 221, 61, 105, 91, 161, 255, 255, 69, 243, 100, + 37, 212, 167, 27, 164, 12, 163, 176, 152, 105, 61, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2803, + "sample": { + "_tag": "ByteArray", + "bytearray": "c335b9aa2a078c87" + }, + "cborHex": "48c335b9aa2a078c87", + "cborBytes": [72, 195, 53, 185, 170, 42, 7, 140, 135], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2804, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5951772417292846207" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5654017736740526115" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8b321f0a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3926579295994166323" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2575726327606569812" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5119730184119583969" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2287590961827061880" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14765342092867858060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3493604218005402272" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15481892683085502013" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2404233758665191123" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16223034578993689629" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18195365382534382026" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17121811449412328252" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3423535107086925571" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7499188758438983669" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b87b26fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e275a56fcb276f62d692" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b5298f17accb5447f9fd8669f1b4e771b2ce02d58239f448b321f0abf1b367e0310d822bc331b23bed172bb9c6b541b470cef7a1a4b04e11b1fbf27dc0f18a0781bcce908674082ee8c1b307bc686c004b2a01bd6dabb5e6207d63d1b215d8ddd863daed31be123cbff0bcc341d1bfc82ec698866c1ca1bed9ce4cc49701b3c1b2f82d70a8dfebf03ff9f1b68127871825bb7f5ffffffbf44b87b26fe4ae275a56fcb276f62d692ffffff", + "cborBytes": [ + 216, 102, 159, 27, 82, 152, 241, 122, 204, 181, 68, 127, 159, 216, 102, 159, 27, 78, 119, 27, 44, 224, 45, 88, 35, + 159, 68, 139, 50, 31, 10, 191, 27, 54, 126, 3, 16, 216, 34, 188, 51, 27, 35, 190, 209, 114, 187, 156, 107, 84, 27, + 71, 12, 239, 122, 26, 75, 4, 225, 27, 31, 191, 39, 220, 15, 24, 160, 120, 27, 204, 233, 8, 103, 64, 130, 238, 140, + 27, 48, 123, 198, 134, 192, 4, 178, 160, 27, 214, 218, 187, 94, 98, 7, 214, 61, 27, 33, 93, 141, 221, 134, 61, + 174, 211, 27, 225, 35, 203, 255, 11, 204, 52, 29, 27, 252, 130, 236, 105, 136, 102, 193, 202, 27, 237, 156, 228, + 204, 73, 112, 27, 60, 27, 47, 130, 215, 10, 141, 254, 191, 3, 255, 159, 27, 104, 18, 120, 113, 130, 91, 183, 245, + 255, 255, 255, 191, 68, 184, 123, 38, 254, 74, 226, 117, 165, 111, 203, 39, 111, 98, 214, 146, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2805, + "sample": { + "_tag": "ByteArray", + "bytearray": "a64740792ac80f3ddf8a85" + }, + "cborHex": "4ba64740792ac80f3ddf8a85", + "cborBytes": [75, 166, 71, 64, 121, 42, 200, 15, 61, 223, 138, 133], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2806, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e0d7a3b5b74" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6835116365725528083" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "474f3815369f1191d37e" + }, + { + "_tag": "ByteArray", + "bytearray": "f4195186161c010f5180b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9835251843868599383" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4276505370129876719" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5bc993018486" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1193250606fed8f221" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18237406637830170917" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bf179bb6f04" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2072274956771470468" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c7677" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2632248465610946723" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5663744438589030559" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2843015369337661050" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d2f94c9c934" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14521896719694992249" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17399064419198371014" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b635fc8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17428400980549573403" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7713262027246491763" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27443e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17153561074647357712" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8b0200e2" + }, + { + "_tag": "ByteArray", + "bytearray": "ef" + }, + { + "_tag": "ByteArray", + "bytearray": "9e8eddfda307" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6894265591683446100" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd7fe8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0c8044ce3cffec7e55f" + } + } + ] + }, + "cborHex": "bf460e0d7a3b5b74d8669f1b5edb361ee18770139f4a474f3815369f1191d37e4bf4195186161c010f5180b61b887dd5714e4b24571b3b5932f9eaa446ef465bc993018486ffff491193250606fed8f2211bfd1848b61037e925461bf179bb6f04bf1b1cc23318034d2c84434c76771b2487a008814eb8a31b4e99a98f20b1809f1b27746b6a5c58e67a465d2f94c9c9341bc988242052549379414d1bf175e4e7b27504c6440b635fc81bf1de1e5a28ba1b1b1b6b0b02f279895873ff4327443e1bee0db0e9f752d91041559f448b0200e241ef469e8eddfda3071b5fad5a073b7d7554ff43cd7fe84ab0c8044ce3cffec7e55fff", + "cborBytes": [ + 191, 70, 14, 13, 122, 59, 91, 116, 216, 102, 159, 27, 94, 219, 54, 30, 225, 135, 112, 19, 159, 74, 71, 79, 56, 21, + 54, 159, 17, 145, 211, 126, 75, 244, 25, 81, 134, 22, 28, 1, 15, 81, 128, 182, 27, 136, 125, 213, 113, 78, 75, 36, + 87, 27, 59, 89, 50, 249, 234, 164, 70, 239, 70, 91, 201, 147, 1, 132, 134, 255, 255, 73, 17, 147, 37, 6, 6, 254, + 216, 242, 33, 27, 253, 24, 72, 182, 16, 55, 233, 37, 70, 27, 241, 121, 187, 111, 4, 191, 27, 28, 194, 51, 24, 3, + 77, 44, 132, 67, 76, 118, 119, 27, 36, 135, 160, 8, 129, 78, 184, 163, 27, 78, 153, 169, 143, 32, 177, 128, 159, + 27, 39, 116, 107, 106, 92, 88, 230, 122, 70, 93, 47, 148, 201, 201, 52, 27, 201, 136, 36, 32, 82, 84, 147, 121, + 65, 77, 27, 241, 117, 228, 231, 178, 117, 4, 198, 68, 11, 99, 95, 200, 27, 241, 222, 30, 90, 40, 186, 27, 27, 27, + 107, 11, 2, 242, 121, 137, 88, 115, 255, 67, 39, 68, 62, 27, 238, 13, 176, 233, 247, 82, 217, 16, 65, 85, 159, 68, + 139, 2, 0, 226, 65, 239, 70, 158, 142, 221, 253, 163, 7, 27, 95, 173, 90, 7, 59, 125, 117, 84, 255, 67, 205, 127, + 232, 74, 176, 200, 4, 76, 227, 207, 254, 199, 229, 95, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2807, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4967650799326611424" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0aed2e9fe02cd2a11c340e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6624718532715363680" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5273018335630468096" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4d74eb" + }, + { + "_tag": "ByteArray", + "bytearray": "963bc2e49bb3" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "feb70a1b435f401008dd28c0" + } + ] + } + ] + }, + "cborHex": "d9050c9f9f1b44f0a4150e0c47e0ff4b0aed2e9fe02cd2a11c340ed8669f1b5befba67ff723d609fd8669f1b492d863d156024009f434d74eb46963bc2e49bb3ffff4cfeb70a1b435f401008dd28c0ffffff", + "cborBytes": [ + 217, 5, 12, 159, 159, 27, 68, 240, 164, 21, 14, 12, 71, 224, 255, 75, 10, 237, 46, 159, 224, 44, 210, 161, 28, 52, + 14, 216, 102, 159, 27, 91, 239, 186, 103, 255, 114, 61, 96, 159, 216, 102, 159, 27, 73, 45, 134, 61, 21, 96, 36, + 0, 159, 67, 77, 116, 235, 70, 150, 59, 194, 228, 155, 179, 255, 255, 76, 254, 183, 10, 27, 67, 95, 64, 16, 8, 221, + 40, 192, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2808, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2435221448638482382" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13050899819172910625" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17759572744707715274" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9772113268963973656" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5697793835476336906" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10605460832452681988" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12948377028449112962" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80f5" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "910144511943618538" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f2869b223" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7747708680116937658" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a56e9e5a7ccd4d42" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8306764826907745547" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b21cba501538247ce9f80d8669f1bb51e1c3d2902d6219f1bf676ad512b0330caffffd8669f1b879d853e457a9a189fbf1b4f12a14e1efa410a4257fa1b932e2a6fdda92104001bb3b1e04dce899382051bfffffffffffffffb4280f5ff9f1b0ca17b9c88abafea454f2869b223ffbf1b6b8563fed594a3ba48a56e9e5a7ccd4d42ff1b73478e99548b9d0bffffffff", + "cborBytes": [ + 216, 102, 159, 27, 33, 203, 165, 1, 83, 130, 71, 206, 159, 128, 216, 102, 159, 27, 181, 30, 28, 61, 41, 2, 214, + 33, 159, 27, 246, 118, 173, 81, 43, 3, 48, 202, 255, 255, 216, 102, 159, 27, 135, 157, 133, 62, 69, 122, 154, 24, + 159, 191, 27, 79, 18, 161, 78, 30, 250, 65, 10, 66, 87, 250, 27, 147, 46, 42, 111, 221, 169, 33, 4, 0, 27, 179, + 177, 224, 77, 206, 137, 147, 130, 5, 27, 255, 255, 255, 255, 255, 255, 255, 251, 66, 128, 245, 255, 159, 27, 12, + 161, 123, 156, 136, 171, 175, 234, 69, 79, 40, 105, 178, 35, 255, 191, 27, 107, 133, 99, 254, 213, 148, 163, 186, + 72, 165, 110, 158, 90, 124, 205, 77, 66, 255, 27, 115, 71, 142, 153, 84, 139, 157, 11, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2809, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1440834764156227059" + } + }, + "cborHex": "1b13fedf958990cdf3", + "cborBytes": [27, 19, 254, 223, 149, 137, 144, 205, 243], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2810, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10245180522722043801" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "539938975520765855" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14276246916400395055" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18103777780864758500" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9914497196415792673" + } + } + ] + }, + "cborHex": "d8669f1b8e2e3167749927999f4101a0d8669f1b077e3fa3344db79f9f9f1bc61f6aee81cfb32fffffff1bfb3d89f9490db2e41b89975eabbef83621ffff", + "cborBytes": [ + 216, 102, 159, 27, 142, 46, 49, 103, 116, 153, 39, 153, 159, 65, 1, 160, 216, 102, 159, 27, 7, 126, 63, 163, 52, + 77, 183, 159, 159, 159, 27, 198, 31, 106, 238, 129, 207, 179, 47, 255, 255, 255, 27, 251, 61, 137, 249, 73, 13, + 178, 228, 27, 137, 151, 94, 171, 190, 248, 54, 33, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2811, + "sample": { + "_tag": "ByteArray", + "bytearray": "a7" + }, + "cborHex": "41a7", + "cborBytes": [65, 167], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2812, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11385194138937163600" + }, + "fields": [] + }, + "cborHex": "d8669f1b9e0055bf7e357f5080ff", + "cborBytes": [216, 102, 159, 27, 158, 0, 85, 191, 126, 53, 127, 80, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2813, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17215811855228543109" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1beeead9ab46db2085a0ff", + "cborBytes": [191, 27, 238, 234, 217, 171, 70, 219, 32, 133, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2814, + "sample": { + "_tag": "ByteArray", + "bytearray": "ebef3ba4" + }, + "cborHex": "44ebef3ba4", + "cborBytes": [68, 235, 239, 59, 164], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2815, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01fffb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3078fa4dd47efa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14934157612208935662" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12928574293179078873" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05fb0a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12321222276409334843" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1100dc" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9979826558782462402" + } + }, + { + "_tag": "ByteArray", + "bytearray": "58ff622bcf7748cbd3abd26d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8234457369934715928" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d3787080cf457ae0" + } + ] + } + } + ] + }, + "cborHex": "bf4301fffbd905039f473078fa4dd47efa1bcf40c9394768d2ee1bb36b85d2352f98d94305fb0a1baafdc66138021c3bff431100dc9f1b8a7f77613c3cd9c24c58ff622bcf7748cbd3abd26d1b7246ab59950e5c1848d3787080cf457ae0ffff", + "cborBytes": [ + 191, 67, 1, 255, 251, 217, 5, 3, 159, 71, 48, 120, 250, 77, 212, 126, 250, 27, 207, 64, 201, 57, 71, 104, 210, + 238, 27, 179, 107, 133, 210, 53, 47, 152, 217, 67, 5, 251, 10, 27, 170, 253, 198, 97, 56, 2, 28, 59, 255, 67, 17, + 0, 220, 159, 27, 138, 127, 119, 97, 60, 60, 217, 194, 76, 88, 255, 98, 43, 207, 119, 72, 203, 211, 171, 210, 109, + 27, 114, 70, 171, 89, 149, 14, 92, 24, 72, 211, 120, 112, 128, 207, 69, 122, 224, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2816, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7461257243089309097" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2140230380123487929" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b84f4ed2d11052451de6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15600980838559133994" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6b98d6236f75941da01" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20a673e68e708c2bc3c219" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9236392519694693485" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f8bd3dd387ee7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2974970000802440267" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48791b96c9cc897218122aa1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16364947863636354335" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c30b09733bc5a07e55a8f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9365981747093596080" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b678bb5ee60260da99fbf1b1db3a030f8c27eb94ab84f4ed2d11052451de61bd881d16a45fe312a4ac6b98d6236f75941da014b20a673e68e708c2bc3c2191b802e420f667a346dffbf472f8bd3dd387ee71b294937742345e44b4c48791b96c9cc897218122aa11be31bf96073d5251f4bc30b09733bc5a07e55a8f11b81faa6c6a04e67b0ffffff", + "cborBytes": [ + 216, 102, 159, 27, 103, 139, 181, 238, 96, 38, 13, 169, 159, 191, 27, 29, 179, 160, 48, 248, 194, 126, 185, 74, + 184, 79, 78, 210, 209, 16, 82, 69, 29, 230, 27, 216, 129, 209, 106, 69, 254, 49, 42, 74, 198, 185, 141, 98, 54, + 247, 89, 65, 218, 1, 75, 32, 166, 115, 230, 142, 112, 140, 43, 195, 194, 25, 27, 128, 46, 66, 15, 102, 122, 52, + 109, 255, 191, 71, 47, 139, 211, 221, 56, 126, 231, 27, 41, 73, 55, 116, 35, 69, 228, 75, 76, 72, 121, 27, 150, + 201, 204, 137, 114, 24, 18, 42, 161, 27, 227, 27, 249, 96, 115, 213, 37, 31, 75, 195, 11, 9, 115, 59, 197, 160, + 126, 85, 168, 241, 27, 129, 250, 166, 198, 160, 78, 103, 176, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2817, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2152822953540053903" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6576521407297644451" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1996901571927665006" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "680d1325" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15223924323256625825" + } + }, + { + "_tag": "ByteArray", + "bytearray": "752919d32b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7697675232630339515" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6ddc94b4ab91f2bba9" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13013296487331847478" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f834bf552ae0222d69ea29" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14367825935579480992" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5141fdc11d3" + } + } + ] + }, + "cborHex": "bf1b1de05d11f20feb8f801b5b447f6043ba67a3d8669f1b1bb66b664e2ae96e9f44680d13251bd3463e831f23eaa145752919d32b1b6ad3a2d70d40f7bb496ddc94b4ab91f2bba9ffff1bb49884353440dd364bf834bf552ae0222d69ea291bc764c5907cdc03a046d5141fdc11d3ff", + "cborBytes": [ + 191, 27, 29, 224, 93, 17, 242, 15, 235, 143, 128, 27, 91, 68, 127, 96, 67, 186, 103, 163, 216, 102, 159, 27, 27, + 182, 107, 102, 78, 42, 233, 110, 159, 68, 104, 13, 19, 37, 27, 211, 70, 62, 131, 31, 35, 234, 161, 69, 117, 41, + 25, 211, 43, 27, 106, 211, 162, 215, 13, 64, 247, 187, 73, 109, 220, 148, 180, 171, 145, 242, 187, 169, 255, 255, + 27, 180, 152, 132, 53, 52, 64, 221, 54, 75, 248, 52, 191, 85, 42, 224, 34, 45, 105, 234, 41, 27, 199, 100, 197, + 144, 124, 220, 3, 160, 70, 213, 20, 31, 220, 17, 211, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2818, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14537738538391968166" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9785073942040686470" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d7" + }, + { + "_tag": "ByteArray", + "bytearray": "2a309d97e1" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2972329563305777641" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7221945713238230061" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bc9c06c2d2a5c19a69fd8669f1b87cb90e820442f869f41d7452a309d97e1ffffbf061b293fd5fd603b99e91b6439815cd8b8442d09ffffff", + "cborBytes": [ + 216, 102, 159, 27, 201, 192, 108, 45, 42, 92, 25, 166, 159, 216, 102, 159, 27, 135, 203, 144, 232, 32, 68, 47, + 134, 159, 65, 215, 69, 42, 48, 157, 151, 225, 255, 255, 191, 6, 27, 41, 63, 213, 253, 96, 59, 153, 233, 27, 100, + 57, 129, 92, 216, 184, 68, 45, 9, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2819, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09b3d5a3" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a3424dd321b43e43e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7691687055903106234" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8350900988187400447" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7905751656000242961" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f322e3adb5c871" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11913256083279727450" + } + } + ] + } + } + ] + }, + "cborHex": "bf4409b3d5a3a0491a3424dd321b43e43ed8669f1b6abe5ca0029324ba9f1b73e45c342b5e58ff1b6db6df3ea259c511ffff47f322e3adb5c8719f1ba5546349e2264b5affff", + "cborBytes": [ + 191, 68, 9, 179, 213, 163, 160, 73, 26, 52, 36, 221, 50, 27, 67, 228, 62, 216, 102, 159, 27, 106, 190, 92, 160, 2, + 147, 36, 186, 159, 27, 115, 228, 92, 52, 43, 94, 88, 255, 27, 109, 182, 223, 62, 162, 89, 197, 17, 255, 255, 71, + 243, 34, 227, 173, 181, 200, 113, 159, 27, 165, 84, 99, 73, 226, 38, 75, 90, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2820, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3457733882095915414" + } + }, + "cborHex": "1b2ffc56a55a28d196", + "cborBytes": [27, 47, 252, 86, 165, 90, 40, 209, 150], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2821, + "sample": { + "_tag": "ByteArray", + "bytearray": "271ac57713e7a555ef0620" + }, + "cborHex": "4b271ac57713e7a555ef0620", + "cborBytes": [75, 39, 26, 197, 119, 19, 231, 165, 85, 239, 6, 32], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2822, + "sample": { + "_tag": "ByteArray", + "bytearray": "370612c606f802" + }, + "cborHex": "47370612c606f802", + "cborBytes": [71, 55, 6, 18, 198, 6, 248, 2], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2823, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f301d93feba10d5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "143839185607242604" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1503455628122861351" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67051005012243" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90c3f10f06ad344af412" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcdcf767b7279e7744" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "faf8fe" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb71355358fc0725f800037e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + }, + "cborHex": "bf483f301d93feba10d5d8669f1b01ff04fa2ae6b36c9f0f1b14dd58ed99d32f27ffff4767051005012243bf42fc031bfffffffffffffff5ff4a90c3f10f06ad344af412d8669f1bfffffffffffffff280ff49bcdcf767b7279e77449f43faf8feff4cfb71355358fc0725f800037e11ff", + "cborBytes": [ + 191, 72, 63, 48, 29, 147, 254, 186, 16, 213, 216, 102, 159, 27, 1, 255, 4, 250, 42, 230, 179, 108, 159, 15, 27, + 20, 221, 88, 237, 153, 211, 47, 39, 255, 255, 71, 103, 5, 16, 5, 1, 34, 67, 191, 66, 252, 3, 27, 255, 255, 255, + 255, 255, 255, 255, 245, 255, 74, 144, 195, 241, 15, 6, 173, 52, 74, 244, 18, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 242, 128, 255, 73, 188, 220, 247, 103, 183, 39, 158, 119, 68, 159, 67, 250, 248, 254, 255, 76, + 251, 113, 53, 83, 88, 252, 7, 37, 248, 0, 3, 126, 17, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2824, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3156589515809292624" + } + }, + "cborHex": "1b2bce7570b7890150", + "cborBytes": [27, 43, 206, 117, 112, 183, 137, 1, 80], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2825, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5652416761111347319" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3487194673006949887" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10883033347922246136" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ec4836" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6574841847688486484" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "50699eebffc4b20bb3" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11015238392518966694" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b4e716b18b08180779fa0ffffd8669f1b306501144336b5ff80ff1b97084d2b4da2b9f843ec4836d8669f1b5b3e87d351d85e549f9f4950699eebffc4b20bb3ff1b98ddfcf4ee567da6ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 78, 113, 107, 24, 176, 129, 128, 119, 159, 160, 255, 255, 216, 102, 159, 27, 48, 101, 1, + 20, 67, 54, 181, 255, 128, 255, 27, 151, 8, 77, 43, 77, 162, 185, 248, 67, 236, 72, 54, 216, 102, 159, 27, 91, 62, + 135, 211, 81, 216, 94, 84, 159, 159, 73, 80, 105, 158, 235, 255, 196, 178, 11, 179, 255, 27, 152, 221, 252, 244, + 238, 86, 125, 166, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2826, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1601094996648527903" + } + }, + "cborHex": "1b16383b6a9ee4081f", + "cborBytes": [27, 22, 56, 59, 106, 158, 228, 8, 31], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2827, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14308159138057643024" + } + }, + "cborHex": "1bc690caed9daf6410", + "cborBytes": [27, 198, 144, 202, 237, 157, 175, 100, 16], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2828, + "sample": { + "_tag": "ByteArray", + "bytearray": "62bc9afb912a9bb9" + }, + "cborHex": "4862bc9afb912a9bb9", + "cborBytes": [72, 98, 188, 154, 251, 145, 42, 155, 185], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2829, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12174513542670753386" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "be" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "391911046125971851" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4199209294345269535" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8726982283985331578" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5159170009743514552" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8fa9da885ea1d03164829b2e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5709163147185089286" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9882648840587701654" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f428a550b1f29" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbebc52de2a492b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "559651255043810178" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1ba8f48f9050129e6a9f41bed8669f1b057059051fe3e98b9f1b3a46969ad6f7f11fd8669f1b791c78265612a57a80ff1b47990dca169c5bb84c8fa9da885ea1d03164829b2effff1b4f3b05a248b7eb06bf1b892638c28f27ed96477f428a550b1f2948dbebc52de2a492b81b07c447d9eefce382ffffff", + "cborBytes": [ + 216, 102, 159, 27, 168, 244, 143, 144, 80, 18, 158, 106, 159, 65, 190, 216, 102, 159, 27, 5, 112, 89, 5, 31, 227, + 233, 139, 159, 27, 58, 70, 150, 154, 214, 247, 241, 31, 216, 102, 159, 27, 121, 28, 120, 38, 86, 18, 165, 122, + 128, 255, 27, 71, 153, 13, 202, 22, 156, 91, 184, 76, 143, 169, 218, 136, 94, 161, 208, 49, 100, 130, 155, 46, + 255, 255, 27, 79, 59, 5, 162, 72, 183, 235, 6, 191, 27, 137, 38, 56, 194, 143, 39, 237, 150, 71, 127, 66, 138, 85, + 11, 31, 41, 72, 219, 235, 197, 45, 226, 164, 146, 184, 27, 7, 196, 71, 217, 238, 252, 227, 130, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2830, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "74fcfb0004811e07888b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5265361098908958720" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5909675675128681247" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "605283503865430670" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5466215073813261602" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce3eb925d2" + }, + { + "_tag": "ByteArray", + "bytearray": "aee36ccb2a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11177413094830247168" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12755941831336992209" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba1016a2c09a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15841162819780700290" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd90503804a74fcfb0004811e07888b9f80d8669f1b49125205baa100009f1b520362b739cfd31f1b08666623cc4d828e1b4bdbe5a5fc866d2245ce3eb925d245aee36ccb2affff08d8669f1b9b1e25fd41280d0080ffbf1bb106358300631dd10f46ba1016a2c09a1bdbd71da78e276882ffffff", + "cborBytes": [ + 159, 217, 5, 3, 128, 74, 116, 252, 251, 0, 4, 129, 30, 7, 136, 139, 159, 128, 216, 102, 159, 27, 73, 18, 82, 5, + 186, 161, 0, 0, 159, 27, 82, 3, 98, 183, 57, 207, 211, 31, 27, 8, 102, 102, 35, 204, 77, 130, 142, 27, 75, 219, + 229, 165, 252, 134, 109, 34, 69, 206, 62, 185, 37, 210, 69, 174, 227, 108, 203, 42, 255, 255, 8, 216, 102, 159, + 27, 155, 30, 37, 253, 65, 40, 13, 0, 128, 255, 191, 27, 177, 6, 53, 131, 0, 99, 29, 209, 15, 70, 186, 16, 22, 162, + 192, 154, 27, 219, 215, 29, 167, 142, 39, 104, 130, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2831, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9731627702700113797" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + ] + }, + "cborHex": "d8669f1b870dafd5d1ca7f859f1bfffffffffffffffcffff", + "cborBytes": [ + 216, 102, 159, 27, 135, 13, 175, 213, 209, 202, 127, 133, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2832, + "sample": { + "_tag": "ByteArray", + "bytearray": "73750841ac5a4e8e280a78e4" + }, + "cborHex": "4c73750841ac5a4e8e280a78e4", + "cborBytes": [76, 115, 117, 8, 65, 172, 90, 78, 142, 40, 10, 120, 228], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2833, + "sample": { + "_tag": "ByteArray", + "bytearray": "0679c50327" + }, + "cborHex": "450679c50327", + "cborBytes": [69, 6, 121, 197, 3, 39], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2834, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "841632837811159461" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2564727996417905964" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abaeb4037e9835a5359eb7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8605561813753939579" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11484348715459925385" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15183770948591487090" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0bae149b5909c1a5bf1b2397be8633fd152c4babaeb4037e9835a5359eb71b776d18e01978467b41751b9f609a4f5db3d5891bd2b7973b0db10872ffff", + "cborBytes": [ + 191, 27, 11, 174, 20, 155, 89, 9, 193, 165, 191, 27, 35, 151, 190, 134, 51, 253, 21, 44, 75, 171, 174, 180, 3, + 126, 152, 53, 165, 53, 158, 183, 27, 119, 109, 24, 224, 25, 120, 70, 123, 65, 117, 27, 159, 96, 154, 79, 93, 179, + 213, 137, 27, 210, 183, 151, 59, 13, 177, 8, 114, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2835, + "sample": { + "_tag": "ByteArray", + "bytearray": "3f7342c63a17ed181999b9" + }, + "cborHex": "4b3f7342c63a17ed181999b9", + "cborBytes": [75, 63, 115, 66, 198, 58, 23, 237, 24, 25, 153, 185], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2836, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8048810527946823192" + } + }, + { + "_tag": "ByteArray", + "bytearray": "069da2fc0612ea67ff91" + } + ] + }, + "cborHex": "9f1b6fb31e87deb1d6184a069da2fc0612ea67ff91ff", + "cborBytes": [159, 27, 111, 179, 30, 135, 222, 177, 214, 24, 74, 6, 157, 162, 252, 6, 18, 234, 103, 255, 145, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2837, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "507fae6dccf6c2" + }, + { + "_tag": "ByteArray", + "bytearray": "0278fd01ac935ffe71caf9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6356744862322869623" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9331752863207082775" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0715f6fd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11880766097957978926" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16401367605258521407" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eabe44" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5900783533601648216" + } + } + } + ] + } + ] + }, + "cborHex": "d905009f47507fae6dccf6c24b0278fd01ac935ffe71caf9bf0d0f1b5837b1c5d68b45771bfffffffffffffff31b81810bc98f314b17440715f6fd1ba4e0f5d1b04a032e1bfffffffffffffff91be39d5cf056088b3f43eabe441bfffffffffffffff11b51e3cb5c30ccee58ffff", + "cborBytes": [ + 217, 5, 0, 159, 71, 80, 127, 174, 109, 204, 246, 194, 75, 2, 120, 253, 1, 172, 147, 95, 254, 113, 202, 249, 191, + 13, 15, 27, 88, 55, 177, 197, 214, 139, 69, 119, 27, 255, 255, 255, 255, 255, 255, 255, 243, 27, 129, 129, 11, + 201, 143, 49, 75, 23, 68, 7, 21, 246, 253, 27, 164, 224, 245, 209, 176, 74, 3, 46, 27, 255, 255, 255, 255, 255, + 255, 255, 249, 27, 227, 157, 92, 240, 86, 8, 139, 63, 67, 234, 190, 68, 27, 255, 255, 255, 255, 255, 255, 255, + 241, 27, 81, 227, 203, 92, 48, 204, 238, 88, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2838, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9039842912324948152" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "35" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15020419121941828312" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3f74504c6ccf5db524" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10895453011169302392" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5368660352401654639" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6736715760951929162" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8387363247917677729" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abb2feb868ed860d5a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec96818b9ff4cadd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfd1886b5b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9bb14ad431fcf0" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e02dfc2fa2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1439445512311522617" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "604cc96412cc2ff42b109ff8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9407971378443616045" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9640375350875664663" + } + }, + { + "_tag": "ByteArray", + "bytearray": "519d170b6b0191eab5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "726602266103669671" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d3ddd" + }, + { + "_tag": "ByteArray", + "bytearray": "04e4f133" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b7d73f93bce7610b89f9f9f41351bd0733f9c1cd3d2d8493f74504c6ccf5db5241b97346cc97db4d7781b4a815025689fc36fffbf1b5d7d9f4abc50a94a1b7465e66f924cbca149abb2feb868ed860d5a48ec96818b9ff4cadd45bfd1886b5b479bb14ad431fcf0ff45e02dfc2fa2d8669f1b13f9f01122dbc5399f4c604cc96412cc2ff42b109ff81b828fd41f852c7f2d1b85c97e4e0260311749519d170b6b0191eab51b0a1568e94c1a63a7ffffff02439d3ddd4404e4f13380ffff", + "cborBytes": [ + 216, 102, 159, 27, 125, 115, 249, 59, 206, 118, 16, 184, 159, 159, 159, 65, 53, 27, 208, 115, 63, 156, 28, 211, + 210, 216, 73, 63, 116, 80, 76, 108, 207, 93, 181, 36, 27, 151, 52, 108, 201, 125, 180, 215, 120, 27, 74, 129, 80, + 37, 104, 159, 195, 111, 255, 191, 27, 93, 125, 159, 74, 188, 80, 169, 74, 27, 116, 101, 230, 111, 146, 76, 188, + 161, 73, 171, 178, 254, 184, 104, 237, 134, 13, 90, 72, 236, 150, 129, 139, 159, 244, 202, 221, 69, 191, 209, 136, + 107, 91, 71, 155, 177, 74, 212, 49, 252, 240, 255, 69, 224, 45, 252, 47, 162, 216, 102, 159, 27, 19, 249, 240, 17, + 34, 219, 197, 57, 159, 76, 96, 76, 201, 100, 18, 204, 47, 244, 43, 16, 159, 248, 27, 130, 143, 212, 31, 133, 44, + 127, 45, 27, 133, 201, 126, 78, 2, 96, 49, 23, 73, 81, 157, 23, 11, 107, 1, 145, 234, 181, 27, 10, 21, 104, 233, + 76, 26, 99, 167, 255, 255, 255, 2, 67, 157, 61, 221, 68, 4, 228, 241, 51, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2839, + "sample": { + "_tag": "ByteArray", + "bytearray": "c92e" + }, + "cborHex": "42c92e", + "cborBytes": [66, 201, 46], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2840, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4438242994029382355" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7365288545866773621" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13063230251288524073" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18370572855969866916" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba12424e" + } + } + ] + } + ] + }, + "cborHex": "d9050d9f9fd8669f1b3d97ce7cfdfccad39f1b6636c2e8d4a474751bb549eab39b307529ffffffbf1bfef162ae588464a444ba12424effff", + "cborBytes": [ + 217, 5, 13, 159, 159, 216, 102, 159, 27, 61, 151, 206, 124, 253, 252, 202, 211, 159, 27, 102, 54, 194, 232, 212, + 164, 116, 117, 27, 181, 73, 234, 179, 155, 48, 117, 41, 255, 255, 255, 191, 27, 254, 241, 98, 174, 88, 132, 100, + 164, 68, 186, 18, 66, 78, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2841, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1398" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12385266214105120333" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf0e4213981babe14e007461fe4d80ff", + "cborBytes": [191, 14, 66, 19, 152, 27, 171, 225, 78, 0, 116, 97, 254, 77, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2842, + "sample": { + "_tag": "ByteArray", + "bytearray": "ac06ff1efa5df8f9" + }, + "cborHex": "48ac06ff1efa5df8f9", + "cborBytes": [72, 172, 6, 255, 30, 250, 93, 248, 249], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2843, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01fa" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f213ece61cc3" + }, + { + "_tag": "ByteArray", + "bytearray": "05072b4c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bfaf0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f7331ebf69" + }, + { + "_tag": "ByteArray", + "bytearray": "8335b0559de145fb5a" + }, + { + "_tag": "ByteArray", + "bytearray": "3a604b12" + }, + { + "_tag": "ByteArray", + "bytearray": "b84f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f" + } + } + ] + }, + "cborHex": "bf4201fa9f46f213ece61cc34405072b4cff41040b439bfaf09f45f7331ebf69498335b0559de145fb5a443a604b1242b84fff41e6419fff", + "cborBytes": [ + 191, 66, 1, 250, 159, 70, 242, 19, 236, 230, 28, 195, 68, 5, 7, 43, 76, 255, 65, 4, 11, 67, 155, 250, 240, 159, + 69, 247, 51, 30, 191, 105, 73, 131, 53, 176, 85, 157, 225, 69, 251, 90, 68, 58, 96, 75, 18, 66, 184, 79, 255, 65, + 230, 65, 159, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2844, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "351758313103743177" + } + }, + { + "_tag": "ByteArray", + "bytearray": "023a3a51" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffa9f1b04e1b2527356d8c944023a3a51ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 27, 4, 225, 178, 82, 115, 86, 216, 201, 68, 2, 58, + 58, 81, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2845, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2031349655973483605" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a0bfa1538fcfb43850f0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c8169ee24240326478" + }, + { + "_tag": "ByteArray", + "bytearray": "96" + }, + { + "_tag": "ByteArray", + "bytearray": "fe37b0a9848bf1a40ed8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15617939619022261949" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87f9fbf41491b1c30cdbfe2e95455ff9f4aa0bfa1538fcfb43850f09f49c8169ee2424032647841964afe37b0a9848bf1a40ed81bd8be11560b524ebdffffff", + "cborBytes": [ + 216, 127, 159, 191, 65, 73, 27, 28, 48, 205, 191, 226, 233, 84, 85, 255, 159, 74, 160, 191, 161, 83, 143, 207, + 180, 56, 80, 240, 159, 73, 200, 22, 158, 226, 66, 64, 50, 100, 120, 65, 150, 74, 254, 55, 176, 169, 132, 139, 241, + 164, 14, 216, 27, 216, 190, 17, 86, 11, 82, 78, 189, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2846, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "060400" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17519058091684678634" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eaa5ed9b991890" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2397648293128859696" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2419095433730459844" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bfa0b1fb195f" + }, + { + "_tag": "ByteArray", + "bytearray": "512a1dd2d5ed6b43db" + }, + { + "_tag": "ByteArray", + "bytearray": "73b033c59a52bc9b694898ca" + } + ] + } + ] + } + ] + }, + "cborHex": "d905009fbf430604001bf3203283b24c4bea47eaa5ed9b99189012ffd8669f1b2146286b584470309f9f1b21925a7ae54608c446bfa0b1fb195f49512a1dd2d5ed6b43db4c73b033c59a52bc9b694898caffffffff", + "cborBytes": [ + 217, 5, 0, 159, 191, 67, 6, 4, 0, 27, 243, 32, 50, 131, 178, 76, 75, 234, 71, 234, 165, 237, 155, 153, 24, 144, + 18, 255, 216, 102, 159, 27, 33, 70, 40, 107, 88, 68, 112, 48, 159, 159, 27, 33, 146, 90, 122, 229, 70, 8, 196, 70, + 191, 160, 177, 251, 25, 95, 73, 81, 42, 29, 210, 213, 237, 107, 67, 219, 76, 115, 176, 51, 197, 154, 82, 188, 155, + 105, 72, 152, 202, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2847, + "sample": { + "_tag": "ByteArray", + "bytearray": "3ee0aed4" + }, + "cborHex": "443ee0aed4", + "cborBytes": [68, 62, 224, 174, 212], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2848, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8649000642342313935" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2257790325299348581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6636634058153691812" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16164442810042195990" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16760228597375315816" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00556a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea71bd296771b344a4ca0f53" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b78076c4284f05fcf9fbf1b1f554856acc804651b5c1a0f8374828aa41be053a317c4aea016071be8984b1c1ce62f681bfffffffffffffff81bfffffffffffffff34300556a1bffffffffffffffff4cea71bd296771b344a4ca0f53ffffff", + "cborBytes": [ + 216, 102, 159, 27, 120, 7, 108, 66, 132, 240, 95, 207, 159, 191, 27, 31, 85, 72, 86, 172, 200, 4, 101, 27, 92, 26, + 15, 131, 116, 130, 138, 164, 27, 224, 83, 163, 23, 196, 174, 160, 22, 7, 27, 232, 152, 75, 28, 28, 230, 47, 104, + 27, 255, 255, 255, 255, 255, 255, 255, 248, 27, 255, 255, 255, 255, 255, 255, 255, 243, 67, 0, 85, 106, 27, 255, + 255, 255, 255, 255, 255, 255, 255, 76, 234, 113, 189, 41, 103, 113, 179, 68, 164, 202, 15, 83, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2849, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7169675877599577457" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3942999872776759934" + } + } + } + ] + }, + "cborHex": "bf1b637fce395f0285711b36b8597e4e44ea7eff", + "cborBytes": [191, 27, 99, 127, 206, 57, 95, 2, 133, 113, 27, 54, 184, 89, 126, 78, 68, 234, 126, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2850, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12299088537471514853" + } + }, + "cborHex": "1baaaf23dc891178e5", + "cborBytes": [27, 170, 175, 35, 220, 137, 17, 120, 229], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2851, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15300758951283517234" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c37fbba0a3703ff2dc70" + } + ] + }, + "cborHex": "9f1bd45737330521e7324ac37fbba0a3703ff2dc70ff", + "cborBytes": [159, 27, 212, 87, 55, 51, 5, 33, 231, 50, 74, 195, 127, 187, 160, 163, 112, 63, 242, 220, 112, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2852, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3483266246698398353" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14384154164416200950" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4dc71f811360d9e2" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aa9cca71" + }, + { + "_tag": "ByteArray", + "bytearray": "ae9b0b06ffca" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12829579239052134804" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "392671810027048980" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2306201070568709719" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5592108282332259163" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5662760854254925804" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14172118750319395016" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2501458905423385742" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16612906544683762087" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8649098424541872881" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b30570c323c90f2919fbf1bc79ec800847bc0f6484dc71f811360d9e2ff44aa9cca7146ae9b0b06ffcaffff1bb20bd258096dc994bf1b05730cee45f8d0141b200145a7a7df9e571b4d9b28dac1ef235b1b4e962afe8dda37ec1bc4ad7aea9370c0c81b22b6f79f05ff948e1be68ce67bc2a341a71b7807c531363582f1ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 48, 87, 12, 50, 60, 144, 242, 145, 159, 191, 27, 199, 158, 200, 0, 132, 123, 192, 246, 72, + 77, 199, 31, 129, 19, 96, 217, 226, 255, 68, 170, 156, 202, 113, 70, 174, 155, 11, 6, 255, 202, 255, 255, 27, 178, + 11, 210, 88, 9, 109, 201, 148, 191, 27, 5, 115, 12, 238, 69, 248, 208, 20, 27, 32, 1, 69, 167, 167, 223, 158, 87, + 27, 77, 155, 40, 218, 193, 239, 35, 91, 27, 78, 150, 42, 254, 141, 218, 55, 236, 27, 196, 173, 122, 234, 147, 112, + 192, 200, 27, 34, 182, 247, 159, 5, 255, 148, 142, 27, 230, 140, 230, 123, 194, 163, 65, 167, 27, 120, 7, 197, 49, + 54, 53, 130, 241, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2853, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa28cc51d798bf413548" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9f4aaa28cc51d798bf41354880ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 74, 170, 40, 204, 81, 215, 152, 191, 65, 53, 72, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2854, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cabcd9cb39928f473f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1f9049900c800025400fe" + } + } + ] + }, + "cborHex": "bf49cabcd9cb39928f473f4bb1f9049900c800025400feff", + "cborBytes": [ + 191, 73, 202, 188, 217, 203, 57, 146, 143, 71, 63, 75, 177, 249, 4, 153, 0, 200, 0, 2, 84, 0, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2855, + "sample": { + "_tag": "ByteArray", + "bytearray": "503aa1fd" + }, + "cborHex": "44503aa1fd", + "cborBytes": [68, 80, 58, 161, 253], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2856, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2059774997594389650" + } + }, + "cborHex": "1b1c95ca7278d83c92", + "cborBytes": [27, 28, 149, 202, 114, 120, 216, 60, 146], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2857, + "sample": { + "_tag": "ByteArray", + "bytearray": "fafed104" + }, + "cborHex": "44fafed104", + "cborBytes": [68, 250, 254, 209, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2858, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7854489955342716356" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15849783819034612645" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29862a51590fe13fa43c81" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12234256160477285807" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b2727fae013770ed971c0d5b" + }, + { + "_tag": "ByteArray", + "bytearray": "499cd4cc0c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95484a47b252f5f7552d72" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5120551863886086879" + } + } + } + ] + }, + "cborHex": "bf1b6d00c0ffe0138dc41bdbf5be685c4ad3a54b29862a51590fe13fa43c81d8669f1ba9c8cf2878620daf9f4cb2727fae013770ed971c0d5b45499cd4cc0cffff4b95484a47b252f5f7552d721b470fdaca54e502dfff", + "cborBytes": [ + 191, 27, 109, 0, 192, 255, 224, 19, 141, 196, 27, 219, 245, 190, 104, 92, 74, 211, 165, 75, 41, 134, 42, 81, 89, + 15, 225, 63, 164, 60, 129, 216, 102, 159, 27, 169, 200, 207, 40, 120, 98, 13, 175, 159, 76, 178, 114, 127, 174, 1, + 55, 112, 237, 151, 28, 13, 91, 69, 73, 156, 212, 204, 12, 255, 255, 75, 149, 72, 74, 71, 178, 82, 245, 247, 85, + 45, 114, 27, 71, 15, 218, 202, 84, 229, 2, 223, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2859, + "sample": { + "_tag": "ByteArray", + "bytearray": "283a807f7c602bbada57" + }, + "cborHex": "4a283a807f7c602bbada57", + "cborBytes": [74, 40, 58, 128, 127, 124, 96, 43, 186, 218, 87], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2860, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9155528789878329550" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa00030370010052b7fd" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1535395195458460722" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1676577775802643395" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "beb2" + }, + { + "_tag": "ByteArray", + "bytearray": "bf9164572c4ee1e1d9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1628122294745876766" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9502276961423223837" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11032301406965261603" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3599336991263706154" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4833190137718642037" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7f0ef8ed238f50ce9f4aaa00030370010052b7fd9f1b154ed1cb9f249c321b1744669aad07f3c3ffffffd87c9f9f42beb249bf9164572c4ee1e1d91b16984099d538c91e1b83dede8d1b026c1d1b991a9bad9134e523ffd8669f1bffffffffffffffec9f1b31f369ec67324c2affffd8669f1b4312f0d2aaa4157580ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 127, 14, 248, 237, 35, 143, 80, 206, 159, 74, 170, 0, 3, 3, 112, 1, 0, 82, 183, 253, 159, + 27, 21, 78, 209, 203, 159, 36, 156, 50, 27, 23, 68, 102, 154, 173, 7, 243, 195, 255, 255, 255, 216, 124, 159, 159, + 66, 190, 178, 73, 191, 145, 100, 87, 44, 78, 225, 225, 217, 27, 22, 152, 64, 153, 213, 56, 201, 30, 27, 131, 222, + 222, 141, 27, 2, 108, 29, 27, 153, 26, 155, 173, 145, 52, 229, 35, 255, 216, 102, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 236, 159, 27, 49, 243, 105, 236, 103, 50, 76, 42, 255, 255, 216, 102, 159, 27, 67, 18, 240, 210, + 170, 164, 21, 117, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2861, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "68c73416a4" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06468ff9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f77bfd69faf5da46a7" + }, + { + "_tag": "ByteArray", + "bytearray": "d87ba8377c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16947662773964139175" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f87ce3f751d8f014e9" + } + ] + } + } + ] + }, + "cborHex": "bf139f4568c73416a4ff4406468ff99f49f77bfd69faf5da46a745d87ba8377c1beb323180173e6aa749f87ce3f751d8f014e9ffff", + "cborBytes": [ + 191, 19, 159, 69, 104, 199, 52, 22, 164, 255, 68, 6, 70, 143, 249, 159, 73, 247, 123, 253, 105, 250, 245, 218, 70, + 167, 69, 216, 123, 168, 55, 124, 27, 235, 50, 49, 128, 23, 62, 106, 167, 73, 248, 124, 227, 247, 81, 216, 240, 20, + 233, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2862, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f3e6c16e9af43d1d62a45f2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5164042312839687536" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9773d6295fbf3b192a9b9c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5488931003349154734" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13618577961380913780" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14225393948530870458" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28bf9e3e75f7c2fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00d014e4a2e9756fb2" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ced2" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3783140632216013123" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c4f3e6c16e9af43d1d62a45f2bf1b47aa5d1f8de56d704b9773d6295fbf3b192a9b9c1b4c2c99aa7b413bae1bbcfee8806612a2741bc56ac06d442c88ba4283f24828bf9e3e75f7c2fb4900d014e4a2e9756fb2ff42ced29f1b34806a5c6e950943ffff", + "cborBytes": [ + 191, 76, 79, 62, 108, 22, 233, 175, 67, 209, 214, 42, 69, 242, 191, 27, 71, 170, 93, 31, 141, 229, 109, 112, 75, + 151, 115, 214, 41, 95, 191, 59, 25, 42, 155, 156, 27, 76, 44, 153, 170, 123, 65, 59, 174, 27, 188, 254, 232, 128, + 102, 18, 162, 116, 27, 197, 106, 192, 109, 68, 44, 136, 186, 66, 131, 242, 72, 40, 191, 158, 62, 117, 247, 194, + 251, 73, 0, 208, 20, 228, 162, 233, 117, 111, 178, 255, 66, 206, 210, 159, 27, 52, 128, 106, 92, 110, 149, 9, 67, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2863, + "sample": { + "_tag": "ByteArray", + "bytearray": "f801" + }, + "cborHex": "42f801", + "cborBytes": [66, 248, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2864, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16267152514999411898" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3c6d2b2d499e1f301e67b9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "93c00772406e0a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16240037161778732688" + } + }, + { + "_tag": "ByteArray", + "bytearray": "58f2786743a6fa2b7c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2722733769786147116" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "53" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "794d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b01d9c6d9b966a7fbf25d004" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1223590374425336401" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d203" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17754105697374862988" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da25380ac6aa200a94a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8495927850760591222" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee1af024fb3b48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69212cc5c0125a98" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7997984208259956878" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16492207989279940401" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f9f801be1c089067ba464ba4b3c6d2b2d499e1f301e67b99f4793c00772406e0a1be16033c156f6de904958f2786743a6fa2b7cff9f1b25c917f01e10412cffffbf415342794d4cb01d9c6d9b966a7fbf25d0041b10fb10f672359a5142d2031bf663411104c47e8c4ada25380ac6aa200a94a41b75e7995dedeed77647ee1af024fb3b484869212cc5c0125a98ffd8669f1b6efe8c432484c08e9fd8669f1be4e017c96ae3df3180ffffffff", + "cborBytes": [ + 159, 159, 128, 27, 225, 192, 137, 6, 123, 164, 100, 186, 75, 60, 109, 43, 45, 73, 158, 31, 48, 30, 103, 185, 159, + 71, 147, 192, 7, 114, 64, 110, 10, 27, 225, 96, 51, 193, 86, 246, 222, 144, 73, 88, 242, 120, 103, 67, 166, 250, + 43, 124, 255, 159, 27, 37, 201, 23, 240, 30, 16, 65, 44, 255, 255, 191, 65, 83, 66, 121, 77, 76, 176, 29, 156, + 109, 155, 150, 106, 127, 191, 37, 208, 4, 27, 16, 251, 16, 246, 114, 53, 154, 81, 66, 210, 3, 27, 246, 99, 65, 17, + 4, 196, 126, 140, 74, 218, 37, 56, 10, 198, 170, 32, 10, 148, 164, 27, 117, 231, 153, 93, 237, 238, 215, 118, 71, + 238, 26, 240, 36, 251, 59, 72, 72, 105, 33, 44, 197, 192, 18, 90, 152, 255, 216, 102, 159, 27, 110, 254, 140, 67, + 36, 132, 192, 142, 159, 216, 102, 159, 27, 228, 224, 23, 201, 106, 227, 223, 49, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2865, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4466750173377565565" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e21e08" + }, + { + "_tag": "ByteArray", + "bytearray": "194c345ecf" + } + ] + }, + "cborHex": "9f1b3dfd159de895937da043e21e0845194c345ecfff", + "cborBytes": [159, 27, 61, 253, 21, 157, 232, 149, 147, 125, 160, 67, 226, 30, 8, 69, 25, 76, 52, 94, 207, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2866, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fffe00c12a39f9fbfe7873" + }, + { + "_tag": "ByteArray", + "bytearray": "befc2602" + } + ] + } + } + ] + }, + "cborHex": "bf0a9f4bfffe00c12a39f9fbfe787344befc2602ffff", + "cborBytes": [191, 10, 159, 75, 255, 254, 0, 193, 42, 57, 249, 251, 254, 120, 115, 68, 190, 252, 38, 2, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2867, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5132534522218697342" + } + } + ] + }, + "cborHex": "9f801b473a6cf46246527eff", + "cborBytes": [159, 128, 27, 71, 58, 108, 244, 98, 70, 82, 126, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2868, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14057551118738654437" + } + }, + "cborHex": "1bc31674432c5004e5", + "cborBytes": [27, 195, 22, 116, 67, 44, 80, 4, 229], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2869, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e843ec1992f1cdbef9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fc56049e490700" + }, + { + "_tag": "ByteArray", + "bytearray": "2e0bd1e6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7304130471991587070" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3fa558" + } + ] + } + } + ] + }, + "cborHex": "bf49e843ec1992f1cdbef99f47fc56049e490700442e0bd1e61b655d7bf7202a30fe1bfffffffffffffff5433fa558ffff", + "cborBytes": [ + 191, 73, 232, 67, 236, 25, 146, 241, 205, 190, 249, 159, 71, 252, 86, 4, 158, 73, 7, 0, 68, 46, 11, 209, 230, 27, + 101, 93, 123, 247, 32, 42, 48, 254, 27, 255, 255, 255, 255, 255, 255, 255, 245, 67, 63, 165, 88, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2870, + "sample": { + "_tag": "ByteArray", + "bytearray": "54c22414" + }, + "cborHex": "4454c22414", + "cborBytes": [68, 84, 194, 36, 20], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2871, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b477d85a5550b21a9786397a" + }, + { + "_tag": "ByteArray", + "bytearray": "ed28015db46370" + }, + { + "_tag": "ByteArray", + "bytearray": "d462b2ab3eb45625ae0b9d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11038073087467351651" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7acbd755ffcb51" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5584388830414031464" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5182469678963045702" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "383217575035587171" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13861802250854861341" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aa6ff2" + }, + { + "_tag": "ByteArray", + "bytearray": "0b" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15260690627134812617" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12804113017892961488" + } + }, + { + "_tag": "ByteArray", + "bytearray": "646ad2e103ae" + }, + { + "_tag": "ByteArray", + "bytearray": "f52f6358fca1f680" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c8fba2f2b7ef94560018e863" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11921024115194541431" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9014bd14556a8f9313" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11085473257819213243" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "303799632328425302" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "70df4be3d4cc8124df04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "625760052363867737" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6401594113053233337" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2da3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1586841258988337772" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc78315208facd" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e170095891430c772f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13306444227363748593" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11202fbea0e09ad750" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16188098157941737705" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "642d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14233418720148331482" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc4f6914e6b7dad76acc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11271509916710259940" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e54996d48950c5619861b432" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b2ad3c9499eff" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17823756720694668346" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2149301338657641261" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f4cb477d85a5550b21a9786397a47ed28015db463704bd462b2ab3eb45625ae0b9d1b992f1cfda74a6e63477acbd755ffcb51ffd8669f1b4d7fbc0dcc7cca689f1b47ebd4b711d33546ffffd8669f1b0551765aa7aeca639f1bc05f03b444ea0a1d43aa6ff2410bffffa0ffd8669f1bd3c8dd455180f1c99f9f1bb1b158f35f76fcd046646ad2e103ae48f52f6358fca1f680ff804cc8fba2f2b7ef94560018e863d8669f1ba56ffc45c10935779f499014bd14556a8f93131b99d78331d3680dbbffffd8669f1b04375027efd47f569f4a70df4be3d4cc8124df041b08af2573c3c73659ffffffffd8669f1b58d707edc0c510b99f9f422da31b160597b7b4eefa6c47fc78315208facdffbf4a0e170095891430c772f51bb8a9fc8633903af14911202fbea0e09ad7501be0a7ad81a545c8e942642d1bc58742ea01d61bda4acc4f6914e6b7dad76acc1b9c6c728cdbcecce44ce54996d48950c5619861b432477b2ad3c9499effffbf1bf75ab44d9bfcac3a1b1dd3da2e15f5d32dffffffff", + "cborBytes": [ + 159, 159, 159, 76, 180, 119, 216, 90, 85, 80, 178, 26, 151, 134, 57, 122, 71, 237, 40, 1, 93, 180, 99, 112, 75, + 212, 98, 178, 171, 62, 180, 86, 37, 174, 11, 157, 27, 153, 47, 28, 253, 167, 74, 110, 99, 71, 122, 203, 215, 85, + 255, 203, 81, 255, 216, 102, 159, 27, 77, 127, 188, 13, 204, 124, 202, 104, 159, 27, 71, 235, 212, 183, 17, 211, + 53, 70, 255, 255, 216, 102, 159, 27, 5, 81, 118, 90, 167, 174, 202, 99, 159, 27, 192, 95, 3, 180, 68, 234, 10, 29, + 67, 170, 111, 242, 65, 11, 255, 255, 160, 255, 216, 102, 159, 27, 211, 200, 221, 69, 81, 128, 241, 201, 159, 159, + 27, 177, 177, 88, 243, 95, 118, 252, 208, 70, 100, 106, 210, 225, 3, 174, 72, 245, 47, 99, 88, 252, 161, 246, 128, + 255, 128, 76, 200, 251, 162, 242, 183, 239, 148, 86, 0, 24, 232, 99, 216, 102, 159, 27, 165, 111, 252, 69, 193, 9, + 53, 119, 159, 73, 144, 20, 189, 20, 85, 106, 143, 147, 19, 27, 153, 215, 131, 49, 211, 104, 13, 187, 255, 255, + 216, 102, 159, 27, 4, 55, 80, 39, 239, 212, 127, 86, 159, 74, 112, 223, 75, 227, 212, 204, 129, 36, 223, 4, 27, 8, + 175, 37, 115, 195, 199, 54, 89, 255, 255, 255, 255, 216, 102, 159, 27, 88, 215, 7, 237, 192, 197, 16, 185, 159, + 159, 66, 45, 163, 27, 22, 5, 151, 183, 180, 238, 250, 108, 71, 252, 120, 49, 82, 8, 250, 205, 255, 191, 74, 14, + 23, 0, 149, 137, 20, 48, 199, 114, 245, 27, 184, 169, 252, 134, 51, 144, 58, 241, 73, 17, 32, 47, 190, 160, 224, + 154, 215, 80, 27, 224, 167, 173, 129, 165, 69, 200, 233, 66, 100, 45, 27, 197, 135, 66, 234, 1, 214, 27, 218, 74, + 204, 79, 105, 20, 230, 183, 218, 215, 106, 204, 27, 156, 108, 114, 140, 219, 206, 204, 228, 76, 229, 73, 150, 212, + 137, 80, 197, 97, 152, 97, 180, 50, 71, 123, 42, 211, 201, 73, 158, 255, 255, 191, 27, 247, 90, 180, 77, 155, 252, + 172, 58, 27, 29, 211, 218, 46, 21, 245, 211, 45, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2872, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3803917888613795775" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6125255349676240164" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11623119609992379918" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2847162825958262158" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "17bedc" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16409524159190084138" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fe568" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b34ca3b2a699447bf1b550147499c036d241ba14d9db40f78fe0e1b278327815af0858eff4317bedca0bf1be3ba574809b72a2a435fe568ffff", + "cborBytes": [ + 159, 191, 27, 52, 202, 59, 42, 105, 148, 71, 191, 27, 85, 1, 71, 73, 156, 3, 109, 36, 27, 161, 77, 157, 180, 15, + 120, 254, 14, 27, 39, 131, 39, 129, 90, 240, 133, 142, 255, 67, 23, 190, 220, 160, 191, 27, 227, 186, 87, 72, 9, + 183, 42, 42, 67, 95, 229, 104, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2873, + "sample": { + "_tag": "ByteArray", + "bytearray": "0141" + }, + "cborHex": "420141", + "cborBytes": [66, 1, 65], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2874, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9580229505562360315" + } + }, + "cborHex": "1b84f3cffa21c2b9fb", + "cborBytes": [27, 132, 243, 207, 250, 33, 194, 185, 251], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2875, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b6bd5d87" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1260752295324241350" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4791064831306053838" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "641883803719559094" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17182193272486534757" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7663234471174623158" + } + } + ] + } + ] + }, + "cborHex": "9f44b6bd5d879f1b117f1788688f4dc69f1b427d481475dd38ce1b08e86deb2bc7e7b6ff1bee7369bf04aa9e651b6a59472664e44fb6ffff", + "cborBytes": [ + 159, 68, 182, 189, 93, 135, 159, 27, 17, 127, 23, 136, 104, 143, 77, 198, 159, 27, 66, 125, 72, 20, 117, 221, 56, + 206, 27, 8, 232, 109, 235, 43, 199, 231, 182, 255, 27, 238, 115, 105, 191, 4, 170, 158, 101, 27, 106, 89, 71, 38, + 100, 228, 79, 182, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2876, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2474050981237361826" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2942730479615810761" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cc7e2341" + }, + { + "_tag": "ByteArray", + "bytearray": "790e" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a4a41e17d5" + } + ] + }, + "cborHex": "9f9fbf1b2255984264dc0ca21b28d6adc7ab371cc9ff44cc7e234142790eff45a4a41e17d5ff", + "cborBytes": [ + 159, 159, 191, 27, 34, 85, 152, 66, 100, 220, 12, 162, 27, 40, 214, 173, 199, 171, 55, 28, 201, 255, 68, 204, 126, + 35, 65, 66, 121, 14, 255, 69, 164, 164, 30, 23, 213, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2877, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2683645831359666324" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce43c34f22df28258b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3728871570959584099" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c8a28642d8fe9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8175647366255311467" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be4d9196ffd8042b06014c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10231563166554119975" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "92e6c71acad89448bca89bd2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3706763415668144684" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd2498c4ed56709af00a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8034432752253338600" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe7c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66d56be85bf708463bd13a4b" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14559683752409496734" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15622210325732632619" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17145508780759282410" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9759904961507990910" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16219721555240266807" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14203650827561585735" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4579580559109951360" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "299582249335316071" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b253e39aa4126989449ce43c34f22df28258b1b33bf9ceff8194b63472c8a28642d8fe91b7175bbf692817a6b4bbe4d9196ffd8042b06014c1b8dfdd07da76ddf27bf4c92e6c71acad89448bca89bd21b337111aff1503a2c4afd2498c4ed56709af00a1b6f800a0519d303e842fe7c4c66d56be85bf708463bd13a4bff1bca0e633b7864fc9e1bd8cd3d856fbba82b1bedf11565327f72ead8669f1b877225da30419d7e9f1be11806d197d7ac371bc51d812c6a7dcc471b3f8df0413e088f801b04285477f0a4de67ffffff", + "cborBytes": [ + 191, 27, 37, 62, 57, 170, 65, 38, 152, 148, 73, 206, 67, 195, 79, 34, 223, 40, 37, 139, 27, 51, 191, 156, 239, + 248, 25, 75, 99, 71, 44, 138, 40, 100, 45, 143, 233, 27, 113, 117, 187, 246, 146, 129, 122, 107, 75, 190, 77, 145, + 150, 255, 216, 4, 43, 6, 1, 76, 27, 141, 253, 208, 125, 167, 109, 223, 39, 191, 76, 146, 230, 199, 26, 202, 216, + 148, 72, 188, 168, 155, 210, 27, 51, 113, 17, 175, 241, 80, 58, 44, 74, 253, 36, 152, 196, 237, 86, 112, 154, 240, + 10, 27, 111, 128, 10, 5, 25, 211, 3, 232, 66, 254, 124, 76, 102, 213, 107, 232, 91, 247, 8, 70, 59, 209, 58, 75, + 255, 27, 202, 14, 99, 59, 120, 100, 252, 158, 27, 216, 205, 61, 133, 111, 187, 168, 43, 27, 237, 241, 21, 101, 50, + 127, 114, 234, 216, 102, 159, 27, 135, 114, 37, 218, 48, 65, 157, 126, 159, 27, 225, 24, 6, 209, 151, 215, 172, + 55, 27, 197, 29, 129, 44, 106, 125, 204, 71, 27, 63, 141, 240, 65, 62, 8, 143, 128, 27, 4, 40, 84, 119, 240, 164, + 222, 103, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2878, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8684578253893273931" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16438831359881309347" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "198476323656634526" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc7626dd47ddc251" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bc084947fed77b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9813900d3b77d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "708a7122022e2fcbba56" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16842664441676522490" + } + } + } + ] + }, + "cborHex": "bf1b7885d1e8b764094bd8669f1be42276067046eca39f1b02c1212a2fe1109e48fc7626dd47ddc251ffff482bc084947fed77b1479813900d3b77d34a708a7122022e2fcbba561be9bd2a12cd3b63faff", + "cborBytes": [ + 191, 27, 120, 133, 209, 232, 183, 100, 9, 75, 216, 102, 159, 27, 228, 34, 118, 6, 112, 70, 236, 163, 159, 27, 2, + 193, 33, 42, 47, 225, 16, 158, 72, 252, 118, 38, 221, 71, 221, 194, 81, 255, 255, 72, 43, 192, 132, 148, 127, 237, + 119, 177, 71, 152, 19, 144, 13, 59, 119, 211, 74, 112, 138, 113, 34, 2, 46, 47, 203, 186, 86, 27, 233, 189, 42, + 18, 205, 59, 99, 250, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2879, + "sample": { + "_tag": "ByteArray", + "bytearray": "06020018" + }, + "cborHex": "4406020018", + "cborBytes": [68, 6, 2, 0, 24], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2880, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6832096890983672412" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "027d0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c34910" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42567218f78a658c4112a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab9479b88dfea9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4748f1a81faba6f1dbe5c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8f81578ae8014e27994" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2100a3a72972624ba0ed" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b5ed07beca221ea5c9fbf43027d0e43c349104b42567218f78a658c4112a4416447ab9479b88dfea94b4748f1a81faba6f1dbe5c74af8f81578ae8014e279944a2100a3a72972624ba0edffffff", + "cborBytes": [ + 216, 102, 159, 27, 94, 208, 123, 236, 162, 33, 234, 92, 159, 191, 67, 2, 125, 14, 67, 195, 73, 16, 75, 66, 86, + 114, 24, 247, 138, 101, 140, 65, 18, 164, 65, 100, 71, 171, 148, 121, 184, 141, 254, 169, 75, 71, 72, 241, 168, + 31, 171, 166, 241, 219, 229, 199, 74, 248, 248, 21, 120, 174, 128, 20, 226, 121, 148, 74, 33, 0, 163, 167, 41, + 114, 98, 75, 160, 237, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2881, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2011192095737555013" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c7e10681ea061b33" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17924919717981627268" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15586819702881591453" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d50d6e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d248f3aeb8667ef30a436c5" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "78e6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16360310847266013954" + } + } + ] + }, + "cborHex": "d8669f1b1be9308e2982a8459f48c7e10681ea061b33bf1bf8c21b8361b0a3841bd84f81eff051209d43d50d6e4c8d248f3aeb8667ef30a436c5ff804278e61be30b8008f242c302ffff", + "cborBytes": [ + 216, 102, 159, 27, 27, 233, 48, 142, 41, 130, 168, 69, 159, 72, 199, 225, 6, 129, 234, 6, 27, 51, 191, 27, 248, + 194, 27, 131, 97, 176, 163, 132, 27, 216, 79, 129, 239, 240, 81, 32, 157, 67, 213, 13, 110, 76, 141, 36, 143, 58, + 235, 134, 103, 239, 48, 164, 54, 197, 255, 128, 66, 120, 230, 27, 227, 11, 128, 8, 242, 66, 195, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2882, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "927b0e" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf43927b0ea0ff", + "cborBytes": [191, 67, 146, 123, 14, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2883, + "sample": { + "_tag": "ByteArray", + "bytearray": "d80604" + }, + "cborHex": "43d80604", + "cborBytes": [67, 216, 6, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2884, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3525595469656107543" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7236831762966583864" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1607c6ce4186fb88c18f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13594927281601635820" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11881129174616290435" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7603866153792074950" + } + }, + { + "_tag": "ByteArray", + "bytearray": "852dc6fe8f7f79" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "459407630e24" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2485f9abe394" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91224e75" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "526940746185005625" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ade3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0da7f17ab98f8174c4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9e7b05d2b01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10732176747163998467" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13980862669376299004" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c1b6c205908baff696544d03" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7085858513012134031" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f95c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7299533287511483848" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4356248153404457193" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12596646233210288333" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3663143313927776447" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14441970627418989180" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9182" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14613383289610389764" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d557fa109725d30429a49a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c10dff76d7cf3e643fa2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d47e00bfd7ba8509a9b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49fd8669f1b30ed6e6676942a179fbf1b646e642562e31a384a1607c6ce4186fb88c18fffd8669f1bbcaae2556721e5ec9f41001ba4e240090f88b4831b69865bfad86474c647852dc6fe8f7f79ffffbf46459407630e24462485f9abe3944491224e751b075011d11a095a3942ade3490da7f17ab98f8174c446b9e7b05d2b011b94f059e3d96ad903ffffffd8669f1bc206008625b19ffc9f4cc1b6c205908baff696544d039f1b625606c66cc4108f42f95cff1b654d26d9b442e5c8ffffd8669f1b3c74809d791fc0e99fbf1baed047025bc2f8cd1b32d6196f940328bf1bc86c2fc4cfef227c4291821bcacd2aad47db49044bd557fa109725d30429a49a4ac10dff76d7cf3e643fa24a2d47e00bfd7ba8509a9bff9f418effa0ffffa080ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 216, 102, 159, 27, 48, 237, 110, 102, 118, 148, + 42, 23, 159, 191, 27, 100, 110, 100, 37, 98, 227, 26, 56, 74, 22, 7, 198, 206, 65, 134, 251, 136, 193, 143, 255, + 216, 102, 159, 27, 188, 170, 226, 85, 103, 33, 229, 236, 159, 65, 0, 27, 164, 226, 64, 9, 15, 136, 180, 131, 27, + 105, 134, 91, 250, 216, 100, 116, 198, 71, 133, 45, 198, 254, 143, 127, 121, 255, 255, 191, 70, 69, 148, 7, 99, + 14, 36, 70, 36, 133, 249, 171, 227, 148, 68, 145, 34, 78, 117, 27, 7, 80, 17, 209, 26, 9, 90, 57, 66, 173, 227, + 73, 13, 167, 241, 122, 185, 143, 129, 116, 196, 70, 185, 231, 176, 93, 43, 1, 27, 148, 240, 89, 227, 217, 106, + 217, 3, 255, 255, 255, 216, 102, 159, 27, 194, 6, 0, 134, 37, 177, 159, 252, 159, 76, 193, 182, 194, 5, 144, 139, + 175, 246, 150, 84, 77, 3, 159, 27, 98, 86, 6, 198, 108, 196, 16, 143, 66, 249, 92, 255, 27, 101, 77, 38, 217, 180, + 66, 229, 200, 255, 255, 216, 102, 159, 27, 60, 116, 128, 157, 121, 31, 192, 233, 159, 191, 27, 174, 208, 71, 2, + 91, 194, 248, 205, 27, 50, 214, 25, 111, 148, 3, 40, 191, 27, 200, 108, 47, 196, 207, 239, 34, 124, 66, 145, 130, + 27, 202, 205, 42, 173, 71, 219, 73, 4, 75, 213, 87, 250, 16, 151, 37, 211, 4, 41, 164, 154, 74, 193, 13, 255, 118, + 215, 207, 62, 100, 63, 162, 74, 45, 71, 224, 11, 253, 123, 168, 80, 154, 155, 255, 159, 65, 142, 255, 160, 255, + 255, 160, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2885, + "sample": { + "_tag": "ByteArray", + "bytearray": "3a829197f52d32604d59e0" + }, + "cborHex": "4b3a829197f52d32604d59e0", + "cborBytes": [75, 58, 130, 145, 151, 245, 45, 50, 96, 77, 89, 224], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2886, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4502638963825251003" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3710694441393675866" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17058394874333834616" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a68cac91010ad98ad624" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11207638524766301594" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18013205674809045901" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5225930440772836613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6400088422528464104" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4681437087878523871" + } + } + } + ] + }, + "cborHex": "bf1b3e7c964816a312bbd8669f1b337f08ef31495e5a9f1becbb97c24b032d784aa68cac91010ad98ad6241b9b8987db8fadad9affff1bf9fbc31f890b338dbf1b48863c0c372a5d051b58d1ae82dbe634e8ff417d1b40f7ce3a6556abdfff", + "cborBytes": [ + 191, 27, 62, 124, 150, 72, 22, 163, 18, 187, 216, 102, 159, 27, 51, 127, 8, 239, 49, 73, 94, 90, 159, 27, 236, + 187, 151, 194, 75, 3, 45, 120, 74, 166, 140, 172, 145, 1, 10, 217, 138, 214, 36, 27, 155, 137, 135, 219, 143, 173, + 173, 154, 255, 255, 27, 249, 251, 195, 31, 137, 11, 51, 141, 191, 27, 72, 134, 60, 12, 55, 42, 93, 5, 27, 88, 209, + 174, 130, 219, 230, 52, 232, 255, 65, 125, 27, 64, 247, 206, 58, 101, 86, 171, 223, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2887, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12483256653665760951" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18209045090960654550" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18402697477481363197" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7664986857211334566" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1086895856034661684" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3c0c7ab80931" + }, + { + "_tag": "ByteArray", + "bytearray": "53831837ac2a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10415741231147477584" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bad3d6fc991c776b71bfcb38608d9c7c0d61bff6383daa640f6fdd905059f1b6a5f80ef901e8fa61b0f156e05beca4534463c0c7ab809314653831837ac2a1b908c2576faef6a50ffff", + "cborBytes": [ + 191, 27, 173, 61, 111, 201, 145, 199, 118, 183, 27, 252, 179, 134, 8, 217, 199, 192, 214, 27, 255, 99, 131, 218, + 166, 64, 246, 253, 217, 5, 5, 159, 27, 106, 95, 128, 239, 144, 30, 143, 166, 27, 15, 21, 110, 5, 190, 202, 69, 52, + 70, 60, 12, 122, 184, 9, 49, 70, 83, 131, 24, 55, 172, 42, 27, 144, 140, 37, 118, 250, 239, 106, 80, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2888, + "sample": { + "_tag": "ByteArray", + "bytearray": "06c3060405" + }, + "cborHex": "4506c3060405", + "cborBytes": [69, 6, 195, 6, 4, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2889, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2933425692149001714" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15346785354797523159" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b05a" + } + ] + }, + "cborHex": "d8669f1b28b59f20038badf29f1bd4fabbf82cdfa0d742b05affff", + "cborBytes": [ + 216, 102, 159, 27, 40, 181, 159, 32, 3, 139, 173, 242, 159, 27, 212, 250, 187, 248, 44, 223, 160, 215, 66, 176, + 90, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2890, + "sample": { + "_tag": "ByteArray", + "bytearray": "070160" + }, + "cborHex": "43070160", + "cborBytes": [67, 7, 1, 96], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2891, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7103445305826688431" + }, + "fields": [] + }, + "cborHex": "d8669f1b629481deb7373daf80ff", + "cborBytes": [216, 102, 159, 27, 98, 148, 129, 222, 183, 55, 61, 175, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2892, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13973227722240248647" + } + }, + "cborHex": "1bc1eae0947dc54b47", + "cborBytes": [27, 193, 234, 224, 148, 125, 197, 75, 71], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2893, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "364085346134053106" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15140508272461813515" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1528661188509932674" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8024868649973362817" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3616942806390211861" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "974360491907181626" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8270783070229762501" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9192536362354104845" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14464837908689350028" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a006e47d7b" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15580311514272244583" + }, + "fields": [] + } + ] + }, + "cborHex": "d87c9f414abf1b050d7db17c3ed0f21bd21de40e52f3170b1b1536e540730f9c821b6f5e0f8502d4b0811b3231f651abcb05151b0d859fb47b4d6c3a1b72c7b961c35c11c51b7f92731e0efa5a0d1bc8bd6d70a1086d8c45a006e47d7bffd8669f1bd83862c63220236780ffff", + "cborBytes": [ + 216, 124, 159, 65, 74, 191, 27, 5, 13, 125, 177, 124, 62, 208, 242, 27, 210, 29, 228, 14, 82, 243, 23, 11, 27, 21, + 54, 229, 64, 115, 15, 156, 130, 27, 111, 94, 15, 133, 2, 212, 176, 129, 27, 50, 49, 246, 81, 171, 203, 5, 21, 27, + 13, 133, 159, 180, 123, 77, 108, 58, 27, 114, 199, 185, 97, 195, 92, 17, 197, 27, 127, 146, 115, 30, 14, 250, 90, + 13, 27, 200, 189, 109, 112, 161, 8, 109, 140, 69, 160, 6, 228, 125, 123, 255, 216, 102, 159, 27, 216, 56, 98, 198, + 50, 32, 35, 103, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2894, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d8a0fab30f72d060cf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5470866715202889284" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5777701959191267521" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4743674773985912537" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6822123972698726816" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8614760673014844802" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15573138069939005296" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8781532860476924748" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c802149d029b0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11351876189042713519" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4139c315e15316" + } + } + ] + } + ] + }, + "cborHex": "d905079fa049d8a0fab30f72d060cf1b4bec6c4aa52d2644d8669f1b502e8551ffac88c180ffbf1b41d4eb12e96966d91b5ead0d9ba66261a01b778dc7306c0e0d821bd81ee69088d3a7701b79de459c2c25a34c471c802149d029b01b9d89f73fc61b23af474139c315e15316ffff", + "cborBytes": [ + 217, 5, 7, 159, 160, 73, 216, 160, 250, 179, 15, 114, 208, 96, 207, 27, 75, 236, 108, 74, 165, 45, 38, 68, 216, + 102, 159, 27, 80, 46, 133, 81, 255, 172, 136, 193, 128, 255, 191, 27, 65, 212, 235, 18, 233, 105, 102, 217, 27, + 94, 173, 13, 155, 166, 98, 97, 160, 27, 119, 141, 199, 48, 108, 14, 13, 130, 27, 216, 30, 230, 144, 136, 211, 167, + 112, 27, 121, 222, 69, 156, 44, 37, 163, 76, 71, 28, 128, 33, 73, 208, 41, 176, 27, 157, 137, 247, 63, 198, 27, + 35, 175, 71, 65, 57, 195, 21, 225, 83, 22, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2895, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9902164229873324357" + } + }, + { + "_tag": "ByteArray", + "bytearray": "54186b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8718831915419680807" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16959253748458386205" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13809425231711815126" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0f1566735bd6a2b45ecb" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13275950816990540197" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7459390763746316944" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11825801786736922151" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f1b896b8de7352dd1454354186b1b78ff836ec6edc0271beb5b5f6e2492f31dff9f1bbfa4ef15307fc5d64a0f1566735bd6a2b45ecbff9f1bb83da6edd64731a51b67851460c9edd290ff1ba41db011baa24e27ffff", + "cborBytes": [ + 159, 159, 159, 27, 137, 107, 141, 231, 53, 45, 209, 69, 67, 84, 24, 107, 27, 120, 255, 131, 110, 198, 237, 192, + 39, 27, 235, 91, 95, 110, 36, 146, 243, 29, 255, 159, 27, 191, 164, 239, 21, 48, 127, 197, 214, 74, 15, 21, 102, + 115, 91, 214, 162, 180, 94, 203, 255, 159, 27, 184, 61, 166, 237, 214, 71, 49, 165, 27, 103, 133, 20, 96, 201, + 237, 210, 144, 255, 27, 164, 29, 176, 17, 186, 162, 78, 39, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2896, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f0effff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 14, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2897, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b61f572ba0a75b09874e37" + } + ] + }, + "cborHex": "9fa04bb61f572ba0a75b09874e37ff", + "cborBytes": [159, 160, 75, 182, 31, 87, 43, 160, 167, 91, 9, 135, 78, 55, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2898, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16755468119191348098" + } + }, + "cborHex": "1be887617ae9c86382", + "cborBytes": [27, 232, 135, 97, 122, 233, 200, 99, 130], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2899, + "sample": { + "_tag": "ByteArray", + "bytearray": "a8a9a4" + }, + "cborHex": "43a8a9a4", + "cborBytes": [67, 168, 169, 164], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2900, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fee664016f9d8184fd" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1141004523695363526" + }, + "fields": [] + } + ] + }, + "cborHex": "9f49fee664016f9d8184fdd8669f1b0fd5a991a9f9d5c680ffff", + "cborBytes": [ + 159, 73, 254, 230, 100, 1, 111, 157, 129, 132, 253, 216, 102, 159, 27, 15, 213, 169, 145, 169, 249, 213, 198, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2901, + "sample": { + "_tag": "ByteArray", + "bytearray": "63914b7d" + }, + "cborHex": "4463914b7d", + "cborBytes": [68, 99, 145, 75, 125], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2902, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1392444420160128869" + } + }, + "cborHex": "1b1352f4d2991e8765", + "cborBytes": [27, 19, 82, 244, 210, 153, 30, 135, 101], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2903, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe" + }, + "cborHex": "41fe", + "cborBytes": [65, 254], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2904, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7084cd83c2ea49" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d541f8fd65" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb78" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe93" + } + } + ] + }, + "cborHex": "bf477084cd83c2ea4945d541f8fd6542fb7842fe93ff", + "cborBytes": [ + 191, 71, 112, 132, 205, 131, 194, 234, 73, 69, 213, 65, 248, 253, 101, 66, 251, 120, 66, 254, 147, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2905, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + } + ] + }, + "cborHex": "bf100eff", + "cborBytes": [191, 16, 14, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2906, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4297651114121790970" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + "cborHex": "9f1b3ba452eb19ca85fa10ff", + "cborBytes": [159, 27, 59, 164, 82, 235, 25, 202, 133, 250, 16, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2907, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7678579776576361522" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3028751388269714202" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7822921786448870987" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8dc078bd0a953d18a3c836ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7408606638943988467" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be096fd9b0bd2460" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2be6235e8df4" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18090044372282946102" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fdc7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12524072632406552923" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "824252576009815685" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13731091447035700385" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3264310004885252624" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11901476206501789369" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8927489621797993190" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "33a863551c" + }, + { + "_tag": "ByteArray", + "bytearray": "5f95f3958974" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7831670929859133725" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d974d6" + } + ] + }, + "cborHex": "d87e9fbf1b6a8fcb9fba5514321b2a08495732c99b1a1b6c9099eacaf2fe4b41f04c8dc078bd0a953d18a3c836ce1b66d0a87c52db6af348be096fd9b0bd2460462be6235e8df4ff9fd8669f1bfb0cbf82ecfab2369f42fdc71badce71b42bc8b15b1b0b705559ce4406851bbe8ea2ebaef7a4a11b2d4d28a785f06a10ffff1ba52a898d974d7eb9d8669f1b7be4d082db417ae69f4533a863551c465f95f39589741b6cafaf377c01c11dffffff43d974d6ff", + "cborBytes": [ + 216, 126, 159, 191, 27, 106, 143, 203, 159, 186, 85, 20, 50, 27, 42, 8, 73, 87, 50, 201, 155, 26, 27, 108, 144, + 153, 234, 202, 242, 254, 75, 65, 240, 76, 141, 192, 120, 189, 10, 149, 61, 24, 163, 200, 54, 206, 27, 102, 208, + 168, 124, 82, 219, 106, 243, 72, 190, 9, 111, 217, 176, 189, 36, 96, 70, 43, 230, 35, 94, 141, 244, 255, 159, 216, + 102, 159, 27, 251, 12, 191, 130, 236, 250, 178, 54, 159, 66, 253, 199, 27, 173, 206, 113, 180, 43, 200, 177, 91, + 27, 11, 112, 85, 89, 206, 68, 6, 133, 27, 190, 142, 162, 235, 174, 247, 164, 161, 27, 45, 77, 40, 167, 133, 240, + 106, 16, 255, 255, 27, 165, 42, 137, 141, 151, 77, 126, 185, 216, 102, 159, 27, 123, 228, 208, 130, 219, 65, 122, + 230, 159, 69, 51, 168, 99, 85, 28, 70, 95, 149, 243, 149, 137, 116, 27, 108, 175, 175, 55, 124, 1, 193, 29, 255, + 255, 255, 67, 217, 116, 214, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2908, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2166695240959811251" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7694392994323926659" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + ] + }, + "cborHex": "d8669f1b1e11a5d78df05eb39f1b6ac7f9a964ee8e831bfffffffffffffff1ffff", + "cborBytes": [ + 216, 102, 159, 27, 30, 17, 165, 215, 141, 240, 94, 179, 159, 27, 106, 199, 249, 169, 100, 238, 142, 131, 27, 255, + 255, 255, 255, 255, 255, 255, 241, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2909, + "sample": { + "_tag": "ByteArray", + "bytearray": "2c6079c8daa6bafa9c27" + }, + "cborHex": "4a2c6079c8daa6bafa9c27", + "cborBytes": [74, 44, 96, 121, 200, 218, 166, 186, 250, 156, 39], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2910, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17623818369631653547" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12265670429852348724" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6844114251100081493" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "416cce570e4b32005778af" + }, + { + "_tag": "ByteArray", + "bytearray": "df8e10" + }, + { + "_tag": "ByteArray", + "bytearray": "c597e1" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4772644973006603514" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0fc3458f165bb230" + }, + { + "_tag": "ByteArray", + "bytearray": "a581" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15518398176647647020" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc0cc7ee89" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2853541684328492817" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5172efc2f8" + }, + { + "_tag": "ByteArray", + "bytearray": "c6e7" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bf494616ea3e60eab9fd8669f1baa386a45075cb1349fd8669f1b5efb2da653024d559f4b416cce570e4b32005778af43df8e1043c597e1ffff9f1b423bd750ff1cc4faff9f480fc3458f165bb23042a5811bd75c6cebf2270f2c45fc0cc7ee891b2799d10b0e2b6f11ff9f455172efc2f842c6e7ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 244, 148, 97, 110, 163, 230, 14, 171, 159, 216, 102, 159, 27, 170, 56, 106, 69, 7, 92, 177, 52, + 159, 216, 102, 159, 27, 94, 251, 45, 166, 83, 2, 77, 85, 159, 75, 65, 108, 206, 87, 14, 75, 50, 0, 87, 120, 175, + 67, 223, 142, 16, 67, 197, 151, 225, 255, 255, 159, 27, 66, 59, 215, 80, 255, 28, 196, 250, 255, 159, 72, 15, 195, + 69, 143, 22, 91, 178, 48, 66, 165, 129, 27, 215, 92, 108, 235, 242, 39, 15, 44, 69, 252, 12, 199, 238, 137, 27, + 39, 153, 209, 11, 14, 43, 111, 17, 255, 159, 69, 81, 114, 239, 194, 248, 66, 198, 231, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2911, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7890816696945683884" + } + }, + "cborHex": "1b6d81cffa812b2dac", + "cborBytes": [27, 109, 129, 207, 250, 129, 43, 45, 172], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2912, + "sample": { + "_tag": "ByteArray", + "bytearray": "87f40811253b" + }, + "cborHex": "4687f40811253b", + "cborBytes": [70, 135, 244, 8, 17, 37, 59], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2913, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9539733729475629327" + } + }, + "cborHex": "1b8463f1488535110f", + "cborBytes": [27, 132, 99, 241, 72, 133, 53, 17, 15], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2914, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7981576146986820271" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "24042b506a65e3" + } + ] + }, + "cborHex": "d8669f1b6ec44137ace162af9f4724042b506a65e3ffff", + "cborBytes": [ + 216, 102, 159, 27, 110, 196, 65, 55, 172, 225, 98, 175, 159, 71, 36, 4, 43, 80, 106, 101, 227, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2915, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10207177067596161915" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1487da703263f4a163" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14639718154738356162" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "468a4be8a8b0bc9b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbefbeb2d199d7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a313e4e8ac43b2b5cc1aaec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "898a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85a12ef5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11311518035750887409" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b8da72d768995237b491487da703263f4a1631bcb2aba18e1044fc2bf48468a4be8a8b0bc9b47cbefbeb2d199d74c4a313e4e8ac43b2b5cc1aaec42898a4485a12ef51b9cfa95b8f75b1ff1ffff", + "cborBytes": [ + 191, 27, 141, 167, 45, 118, 137, 149, 35, 123, 73, 20, 135, 218, 112, 50, 99, 244, 161, 99, 27, 203, 42, 186, 24, + 225, 4, 79, 194, 191, 72, 70, 138, 75, 232, 168, 176, 188, 155, 71, 203, 239, 190, 178, 209, 153, 215, 76, 74, 49, + 62, 78, 138, 196, 59, 43, 92, 193, 170, 236, 66, 137, 138, 68, 133, 161, 46, 245, 27, 156, 250, 149, 184, 247, 91, + 31, 241, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2916, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e4eedbab0bc8c3eb013" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17170965042495512854" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17886075927573576535" + } + }, + { + "_tag": "ByteArray", + "bytearray": "34c9e41b713a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15877125404553831933" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41adf7e9ea6fd5365bc8336a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13686924118070928746" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8b7fdcad" + }, + { + "_tag": "ByteArray", + "bytearray": "e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "106951979076621738" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4372790066278690031" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13482452897440086281" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6ae89e12c98" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c140d927" + } + } + ] + }, + "cborHex": "bf4a2e4eedbab0bc8c3eb013d8669f1bee4b85bb009861169f1bf8381b4aa8b03b574634c9e41b713affff41361bdc56e16f50c2e5fd4c41adf7e9ea6fd5365bc8336ad8669f1bbdf1b8f80d58256a9f448b7fdcad41e81b017bf84220e315aa1b3caf4565b1e5ecef1bbb1b4b7a24da3909ffff46f6ae89e12c9844c140d927ff", + "cborBytes": [ + 191, 74, 46, 78, 237, 186, 176, 188, 140, 62, 176, 19, 216, 102, 159, 27, 238, 75, 133, 187, 0, 152, 97, 22, 159, + 27, 248, 56, 27, 74, 168, 176, 59, 87, 70, 52, 201, 228, 27, 113, 58, 255, 255, 65, 54, 27, 220, 86, 225, 111, 80, + 194, 229, 253, 76, 65, 173, 247, 233, 234, 111, 213, 54, 91, 200, 51, 106, 216, 102, 159, 27, 189, 241, 184, 248, + 13, 88, 37, 106, 159, 68, 139, 127, 220, 173, 65, 232, 27, 1, 123, 248, 66, 32, 227, 21, 170, 27, 60, 175, 69, + 101, 177, 229, 236, 239, 27, 187, 27, 75, 122, 36, 218, 57, 9, 255, 255, 70, 246, 174, 137, 225, 44, 152, 68, 193, + 64, 217, 39, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2917, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9f90007466605" + }, + "cborHex": "47f9f90007466605", + "cborBytes": [71, 249, 249, 0, 7, 70, 102, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2918, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13309087669598283300" + } + }, + "cborHex": "1bb8b360b88eefe624", + "cborBytes": [27, 184, 179, 96, 184, 142, 239, 230, 36], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2919, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12080686545120359439" + } + } + ] + }, + "cborHex": "9f41e81ba7a7386814bd740fff", + "cborBytes": [159, 65, 232, 27, 167, 167, 56, 104, 20, 189, 116, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2920, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1508265253737510016" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b14ee6f41d416b4809f80ffff", + "cborBytes": [216, 102, 159, 27, 20, 238, 111, 65, 212, 22, 180, 128, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2921, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a97867083b74" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6841602303917384784" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13243121281043752703" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21ec33956178" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13419147671517308221" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2778503154045744475" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15585811883247631044" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "143507880501373638" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2761666633501294193" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f610" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "983821562998241506" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13410891601011749600" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15897070580794895468" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "42a6e01da4be9874c9d6dc" + } + ] + } + ] + } + ] + }, + "cborHex": "9f46a97867083b74bf1b5ef2410c0b7d64501bb7c904a3da0766ff4621ec339561781bba3a63b5a54ca53dffd8669f1b268f39e5c032f55b9f801bd84bed54a5097ac4d8669f1b01fdd7a82fc0eac69f1b2653692bd5e4be7142f6101b0da73c7fc0e138e2ffff1bba1d0edb6f9332e0d8669f1bdc9dbd778997ac6c9f4b42a6e01da4be9874c9d6dcffffffffff", + "cborBytes": [ + 159, 70, 169, 120, 103, 8, 59, 116, 191, 27, 94, 242, 65, 12, 11, 125, 100, 80, 27, 183, 201, 4, 163, 218, 7, 102, + 255, 70, 33, 236, 51, 149, 97, 120, 27, 186, 58, 99, 181, 165, 76, 165, 61, 255, 216, 102, 159, 27, 38, 143, 57, + 229, 192, 50, 245, 91, 159, 128, 27, 216, 75, 237, 84, 165, 9, 122, 196, 216, 102, 159, 27, 1, 253, 215, 168, 47, + 192, 234, 198, 159, 27, 38, 83, 105, 43, 213, 228, 190, 113, 66, 246, 16, 27, 13, 167, 60, 127, 192, 225, 56, 226, + 255, 255, 27, 186, 29, 14, 219, 111, 147, 50, 224, 216, 102, 159, 27, 220, 157, 189, 119, 137, 151, 172, 108, 159, + 75, 66, 166, 224, 29, 164, 190, 152, 116, 201, 214, 220, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2922, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10002283361898954256" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9060196966019024593" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13542009533600355545" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efd11bbc0d4f" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6a7e6a35e405" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19f9fbf1b8acf3fb928c97e101b7dbc49233aa2c6d11bbbeee1ec1333d4d946efd11bbc0d4fffa0ff466a7e6a35e405ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 159, 191, 27, 138, 207, 63, 185, 40, 201, 126, 16, + 27, 125, 188, 73, 35, 58, 162, 198, 209, 27, 187, 238, 225, 236, 19, 51, 212, 217, 70, 239, 209, 27, 188, 13, 79, + 255, 160, 255, 70, 106, 126, 106, 53, 228, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2923, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bfee3df70f03d2e7b5" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06f6fd42" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2352439047348426740" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4422e609d08597f7a06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "074feadaf9f880fbfb00a2" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4241211902002391844" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ba5172527c646b96" + } + ] + } + ] + }, + "cborHex": "9f9f49bfee3df70f03d2e7b5ffbf4406f6fd421b20a58ad98cf617f44aa4422e609d08597f7a064b074feadaf9f880fbfb00a2ff02d8669f1b3adbcfc10402eb249f48ba5172527c646b96ffffff", + "cborBytes": [ + 159, 159, 73, 191, 238, 61, 247, 15, 3, 210, 231, 181, 255, 191, 68, 6, 246, 253, 66, 27, 32, 165, 138, 217, 140, + 246, 23, 244, 74, 164, 66, 46, 96, 157, 8, 89, 127, 122, 6, 75, 7, 79, 234, 218, 249, 248, 128, 251, 251, 0, 162, + 255, 2, 216, 102, 159, 27, 58, 219, 207, 193, 4, 2, 235, 36, 159, 72, 186, 81, 114, 82, 124, 100, 107, 150, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2924, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12089492606318756433" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3468416336629441114" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4555345118251072499" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8666625350905070404" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11624898419005593670" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6132570610444116723" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b6f0e61ebad6e" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6792511691548518903" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12344753587929659135" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac87" + }, + { + "_tag": "ByteArray", + "bytearray": "7f22f37486" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8162063075576108017" + } + }, + { + "_tag": "ByteArray", + "bytearray": "db7ec9d33b2ebf" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13439293810498076593" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3359915700994038763" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d8b454dc68dbba5176" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9663618887227529128" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13681115076499728345" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10528719690709648536" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a1d676848ad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c67125ff43892bb0bc1ddf6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51112bd0e0b92a1e11" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c370069764c560d685ce3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1003081365543228763" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6102" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8488129552610244370" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11115621838949582580" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a276d9b70d056e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdff83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "544056c32b3998b237" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c26a50b53c45e16f407f76" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6dbed5" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1ba7c68178fa574251d8669f1b30224a481df5a25a9f9f1b3f37d63ff2aa3bf31b784609d6c21783441ba153ef854ed418461b551b447a7b85a2f3475b6f0e61ebad6effffff9fd8669f1b5e43d9652b6fe9f79f1bab515ffba046b6ff42ac87457f22f374861b7145791f6e0bd3f147db7ec9d33b2ebfffff1bba81f68426d7ffb1d8669f1b2ea0d1874901dbeb80ffff9f49d8b454dc68dbba5176bf1b861c122d89f3d7a81bbddd15ad2a01e7d91b921d86c67068c498460a1d676848ad4c1c67125ff43892bb0bc1ddf64951112bd0e0b92a1e114b8c370069764c560d685ce31b0deba92ffa04955bff9f4261021b75cbe4db26d43712ffa0bf1b9a429f2b602a06f447a276d9b70d056e43bdff8349544056c32b3998b2374bc26a50b53c45e16f407f76436dbed5ffffff", + "cborBytes": [ + 159, 27, 167, 198, 129, 120, 250, 87, 66, 81, 216, 102, 159, 27, 48, 34, 74, 72, 29, 245, 162, 90, 159, 159, 27, + 63, 55, 214, 63, 242, 170, 59, 243, 27, 120, 70, 9, 214, 194, 23, 131, 68, 27, 161, 83, 239, 133, 78, 212, 24, 70, + 27, 85, 27, 68, 122, 123, 133, 162, 243, 71, 91, 111, 14, 97, 235, 173, 110, 255, 255, 255, 159, 216, 102, 159, + 27, 94, 67, 217, 101, 43, 111, 233, 247, 159, 27, 171, 81, 95, 251, 160, 70, 182, 255, 66, 172, 135, 69, 127, 34, + 243, 116, 134, 27, 113, 69, 121, 31, 110, 11, 211, 241, 71, 219, 126, 201, 211, 59, 46, 191, 255, 255, 27, 186, + 129, 246, 132, 38, 215, 255, 177, 216, 102, 159, 27, 46, 160, 209, 135, 73, 1, 219, 235, 128, 255, 255, 159, 73, + 216, 180, 84, 220, 104, 219, 186, 81, 118, 191, 27, 134, 28, 18, 45, 137, 243, 215, 168, 27, 189, 221, 21, 173, + 42, 1, 231, 217, 27, 146, 29, 134, 198, 112, 104, 196, 152, 70, 10, 29, 103, 104, 72, 173, 76, 28, 103, 18, 95, + 244, 56, 146, 187, 11, 193, 221, 246, 73, 81, 17, 43, 208, 224, 185, 42, 30, 17, 75, 140, 55, 0, 105, 118, 76, 86, + 13, 104, 92, 227, 27, 13, 235, 169, 47, 250, 4, 149, 91, 255, 159, 66, 97, 2, 27, 117, 203, 228, 219, 38, 212, 55, + 18, 255, 160, 191, 27, 154, 66, 159, 43, 96, 42, 6, 244, 71, 162, 118, 217, 183, 13, 5, 110, 67, 189, 255, 131, + 73, 84, 64, 86, 195, 43, 57, 152, 178, 55, 75, 194, 106, 80, 181, 60, 69, 225, 111, 64, 127, 118, 67, 109, 190, + 213, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2925, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "26aee5185507aa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cdb73bd5096401" + } + } + ] + }, + "cborHex": "bf4726aee5185507aa47cdb73bd5096401ff", + "cborBytes": [191, 71, 38, 174, 229, 24, 85, 7, 170, 71, 205, 183, 59, 213, 9, 100, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2926, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5114018449289527049" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8965066cb863d4720088d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15211359493296556170" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5a08a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + } + ] + }, + "cborHex": "bf1b46f8a4af34b23f09bf4b8965066cb863d4720088d61bd3199addacb5088aff43b5a08a1bfffffffffffffffbff", + "cborBytes": [ + 191, 27, 70, 248, 164, 175, 52, 178, 63, 9, 191, 75, 137, 101, 6, 108, 184, 99, 212, 114, 0, 136, 214, 27, 211, + 25, 154, 221, 172, 181, 8, 138, 255, 67, 181, 160, 138, 27, 255, 255, 255, 255, 255, 255, 255, 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2927, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17401950648483015822" + } + }, + "cborHex": "1bf18025ea51b56c8e", + "cborBytes": [27, 241, 128, 37, 234, 81, 181, 108, 142], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2928, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7831028576917229836" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "68cc050c7f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15645656292143290483" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18240523930240757973" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1478867544790652748" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1871520924688580235" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12279992183051955536" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3862" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16461342892054553509" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9214e565" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11488107597906692587" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2821727239865668843" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5271498832425028403" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17855725710295268530" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "296c62847fc3e9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8751751331198377876" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3433928982203829412" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1caa805909a4b0663a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10114919497200239399" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7cd1d8556c5620f469" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5066782158290606595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2440142174988760239" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14055382094731612564" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11850772094843059623" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16313785058558662948" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10464450822112762941" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "746e53a30d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17550585226061108371" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0ca2f9e6fcc4f49f8421" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7154325763952488022" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12700207310330007351" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1151d0f9c9a82639c6f03fda" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c2c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7695311b0c8e525e11a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1425550300169832626" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7aad227e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f9bdd5c146472482ac7d5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb0f88655f7c218540" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13550117177849089216" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "35cd0c541f2b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9f8aa7b5316870d1e5" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f9fd8669f1b6cad67000915910c9f4568cc050c7fffffd8669f1bd9208980e30e58739f1bfd235bdf430330d51b1485fe325519d74c1b19f8fa5d81c5fe8b1baa6b4bd40b62ad50423862ffffd8669f1be4727024f6d023a59f449214e5651b9f6df4fe62b1c9eb1b2728c9f9793c94eb410b1b492820422c948b33ffffd8669f1bf7cc47ee08f57cb280ffff47296c62847fc3e99f1b797477778aa19f941b2fa7c437302d8ca4491caa805909a4b0663a1b8c5f69b10a4b0327ff9f497cd1d8556c5620f469bf1b4650d3872b32da031b21dd206135a774af1bc30ebf8beadd11941ba476666ea33b7da71be26635139d76d9241b9139329465935c3d45746e53a30d4158ffd8669f1bf3903446af9754939f4a0ca2f9e6fcc4f49f84211b6349456087d02e561bb04033429a0a0f37415cffffbf4c1151d0f9c9a82639c6f03fda422c2c4a7695311b0c8e525e11a01b13c89271f31308b2447aad227e4b5f9bdd5c146472482ac7d549eb0f88655f7c2185401bbc0bafc81a9d0cc0ff4635cd0c541f2bff499f8aa7b5316870d1e5ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 159, 216, 102, 159, 27, 108, 173, 103, 0, 9, 21, + 145, 12, 159, 69, 104, 204, 5, 12, 127, 255, 255, 216, 102, 159, 27, 217, 32, 137, 128, 227, 14, 88, 115, 159, 27, + 253, 35, 91, 223, 67, 3, 48, 213, 27, 20, 133, 254, 50, 85, 25, 215, 76, 27, 25, 248, 250, 93, 129, 197, 254, 139, + 27, 170, 107, 75, 212, 11, 98, 173, 80, 66, 56, 98, 255, 255, 216, 102, 159, 27, 228, 114, 112, 36, 246, 208, 35, + 165, 159, 68, 146, 20, 229, 101, 27, 159, 109, 244, 254, 98, 177, 201, 235, 27, 39, 40, 201, 249, 121, 60, 148, + 235, 65, 11, 27, 73, 40, 32, 66, 44, 148, 139, 51, 255, 255, 216, 102, 159, 27, 247, 204, 71, 238, 8, 245, 124, + 178, 128, 255, 255, 71, 41, 108, 98, 132, 127, 195, 233, 159, 27, 121, 116, 119, 119, 138, 161, 159, 148, 27, 47, + 167, 196, 55, 48, 45, 140, 164, 73, 28, 170, 128, 89, 9, 164, 176, 102, 58, 27, 140, 95, 105, 177, 10, 75, 3, 39, + 255, 159, 73, 124, 209, 216, 85, 108, 86, 32, 244, 105, 191, 27, 70, 80, 211, 135, 43, 50, 218, 3, 27, 33, 221, + 32, 97, 53, 167, 116, 175, 27, 195, 14, 191, 139, 234, 221, 17, 148, 27, 164, 118, 102, 110, 163, 59, 125, 167, + 27, 226, 102, 53, 19, 157, 118, 217, 36, 27, 145, 57, 50, 148, 101, 147, 92, 61, 69, 116, 110, 83, 163, 13, 65, + 88, 255, 216, 102, 159, 27, 243, 144, 52, 70, 175, 151, 84, 147, 159, 74, 12, 162, 249, 230, 252, 196, 244, 159, + 132, 33, 27, 99, 73, 69, 96, 135, 208, 46, 86, 27, 176, 64, 51, 66, 154, 10, 15, 55, 65, 92, 255, 255, 191, 76, + 17, 81, 208, 249, 201, 168, 38, 57, 198, 240, 63, 218, 66, 44, 44, 74, 118, 149, 49, 27, 12, 142, 82, 94, 17, 160, + 27, 19, 200, 146, 113, 243, 19, 8, 178, 68, 122, 173, 34, 126, 75, 95, 155, 221, 92, 20, 100, 114, 72, 42, 199, + 213, 73, 235, 15, 136, 101, 95, 124, 33, 133, 64, 27, 188, 11, 175, 200, 26, 157, 12, 192, 255, 70, 53, 205, 12, + 84, 31, 43, 255, 73, 159, 138, 167, 181, 49, 104, 112, 209, 229, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2929, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3754359576485490445" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "63908fc1e55825" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41aeb93d28" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7283968500163840154" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04975207" + }, + { + "_tag": "ByteArray", + "bytearray": "230263ede0ff430268" + }, + { + "_tag": "ByteArray", + "bytearray": "3a0c" + }, + { + "_tag": "ByteArray", + "bytearray": "3eb307dc6ce0e274c7" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10597266627222070069" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1217109122717468718" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14247781141289505347" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2bef23d54067817f4bccceb" + } + } + ] + }, + "cborHex": "bf1b341a2a24b380ef0dbf4763908fc1e558254541aeb93d28ff1b6515dac23f66889a9f440497520749230263ede0ff430268423a0c493eb307dc6ce0e274c7ff1b93110dd9c9ac63351b10e40a4c7076482e1bc5ba4975c41212431bfffffffffffffff21bfffffffffffffffd4ce2bef23d54067817f4bcccebff", + "cborBytes": [ + 191, 27, 52, 26, 42, 36, 179, 128, 239, 13, 191, 71, 99, 144, 143, 193, 229, 88, 37, 69, 65, 174, 185, 61, 40, + 255, 27, 101, 21, 218, 194, 63, 102, 136, 154, 159, 68, 4, 151, 82, 7, 73, 35, 2, 99, 237, 224, 255, 67, 2, 104, + 66, 58, 12, 73, 62, 179, 7, 220, 108, 224, 226, 116, 199, 255, 27, 147, 17, 13, 217, 201, 172, 99, 53, 27, 16, + 228, 10, 76, 112, 118, 72, 46, 27, 197, 186, 73, 117, 196, 18, 18, 67, 27, 255, 255, 255, 255, 255, 255, 255, 242, + 27, 255, 255, 255, 255, 255, 255, 255, 253, 76, 226, 190, 242, 61, 84, 6, 120, 23, 244, 188, 204, 235, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2930, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14562930355225348389" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18111210307514126075" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11882142102310122470" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a2f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14695116456095218986" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2849993896093532699" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13517734666655470160" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5660366418253807776" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17579237203385941943" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2026351535190838934" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10139454654962397947" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bca19ec0017f5c9259fd8669f1bfb57f1d13fc5cefb9f9f1ba4e5d949aae873e6421a2fff1bcbef8a8f0a8d7d2affffa0d8669f1b278d36593cafc21b9fbf1bbb98a40f2dfb92501b4e8da9447a9180a01bf3f5ff1902267fb71b1c1f0bfc351e0e96ff1b8cb694499d36f2fb80ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 202, 25, 236, 0, 23, 245, 201, 37, 159, 216, 102, 159, 27, 251, 87, 241, 209, 63, 197, 206, + 251, 159, 159, 27, 164, 229, 217, 73, 170, 232, 115, 230, 66, 26, 47, 255, 27, 203, 239, 138, 143, 10, 141, 125, + 42, 255, 255, 160, 216, 102, 159, 27, 39, 141, 54, 89, 60, 175, 194, 27, 159, 191, 27, 187, 152, 164, 15, 45, 251, + 146, 80, 27, 78, 141, 169, 68, 122, 145, 128, 160, 27, 243, 245, 255, 25, 2, 38, 127, 183, 27, 28, 31, 11, 252, + 53, 30, 14, 150, 255, 27, 140, 182, 148, 73, 157, 54, 242, 251, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2931, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d9050a9f80ff", + "cborBytes": [217, 5, 10, 159, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2932, + "sample": { + "_tag": "ByteArray", + "bytearray": "c6b8aae9" + }, + "cborHex": "44c6b8aae9", + "cborBytes": [68, 198, 184, 170, 233], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2933, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11840215751335346301" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5b1f7b35120b65b5ca5" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "518120621530088376" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10743286205828208454" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "be47897c5889a556028c30" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12808136551148905650" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12412035847629359293" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8d3dc222044" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11444323461830558431" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9fbf1ba450e57e6254007d4aa5b1f7b35120b65b5ca5ff1b0730bbf5cd1b03b89fd8669f1b9517d1e242be974680ff4bbe47897c5889a556028c30ffd8669f1bb1bfa45535ed64b29fd8669f1bac4068d7755cc8bd9f46f8d3dc2220441b9ed2678dcd1442dfffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 191, 27, 164, 80, 229, 126, 98, 84, 0, 125, 74, + 165, 177, 247, 179, 81, 32, 182, 91, 92, 165, 255, 27, 7, 48, 187, 245, 205, 27, 3, 184, 159, 216, 102, 159, 27, + 149, 23, 209, 226, 66, 190, 151, 70, 128, 255, 75, 190, 71, 137, 124, 88, 137, 165, 86, 2, 140, 48, 255, 216, 102, + 159, 27, 177, 191, 164, 85, 53, 237, 100, 178, 159, 216, 102, 159, 27, 172, 64, 104, 215, 117, 92, 200, 189, 159, + 70, 248, 211, 220, 34, 32, 68, 27, 158, 210, 103, 141, 205, 20, 66, 223, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2934, + "sample": { + "_tag": "ByteArray", + "bytearray": "0302" + }, + "cborHex": "420302", + "cborBytes": [66, 3, 2], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2935, + "sample": { + "_tag": "ByteArray", + "bytearray": "07dd3ef88eff" + }, + "cborHex": "4607dd3ef88eff", + "cborBytes": [70, 7, 221, 62, 248, 142, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2936, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11256336929016381208" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16315506084963150041" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b9c368acc5e21ff189f07d8669f1be26c52574cf3e8d99f14ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 156, 54, 138, 204, 94, 33, 255, 24, 159, 7, 216, 102, 159, 27, 226, 108, 82, 87, 76, 243, 232, + 217, 159, 20, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2937, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2304934214640527279" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14367866182568971410" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6898414701064740017" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1419594400692885674" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18285010214342731215" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13338569164513146222" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6373332027598486031" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66f85bec6d71f863424c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9184937453015757554" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15053407768097593677" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9b9cb70e40642c7e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14718939232632780344" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9207484050888499581" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16972283554683247669" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4249356515424923288" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9744569747104885430" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7337231dfccc585648d0a9" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10940983954557260620" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8178ff5b29abd64e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1630988563407579039" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2584521324476475042" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17597270837564932874" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff04063046af59c527ce6e" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1ffcc574c64ae7af9fa01bc764ea2b385f0c921b5fbc179f0a4bdcb1bf1b13b369960a6ed8aa1bfdc167e96c49a5cf1bb91c1dfbfec8f56e1b58729fb634a0ba0f4a66f85bec6d71f863424c41bbffd8669f1b7f7773f31b2f72f29f1bd0e8729bd490194d489b9cb70e40642c7e1bcc442d3f6fa336381b7fc78df60048a17dffffffffd8669f1beb89a9f850195c359f1b3af8bf3c99e4ee981b873baa8e59346ab64b7337231dfccc585648d0a9ffffd8669f1b97d62ef058a2534c9f488178ff5b29abd64ebf1b16a26f7502a2279f1b23de107383d7a6a21bf4361097a966030a4bff04063046af59c527ce6effa0ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 31, 252, 197, 116, 198, 74, 231, 175, 159, 160, 27, 199, 100, 234, 43, 56, 95, 12, 146, + 27, 95, 188, 23, 159, 10, 75, 220, 177, 191, 27, 19, 179, 105, 150, 10, 110, 216, 170, 27, 253, 193, 103, 233, + 108, 73, 165, 207, 27, 185, 28, 29, 251, 254, 200, 245, 110, 27, 88, 114, 159, 182, 52, 160, 186, 15, 74, 102, + 248, 91, 236, 109, 113, 248, 99, 66, 76, 65, 187, 255, 216, 102, 159, 27, 127, 119, 115, 243, 27, 47, 114, 242, + 159, 27, 208, 232, 114, 155, 212, 144, 25, 77, 72, 155, 156, 183, 14, 64, 100, 44, 126, 27, 204, 68, 45, 63, 111, + 163, 54, 56, 27, 127, 199, 141, 246, 0, 72, 161, 125, 255, 255, 255, 255, 216, 102, 159, 27, 235, 137, 169, 248, + 80, 25, 92, 53, 159, 27, 58, 248, 191, 60, 153, 228, 238, 152, 27, 135, 59, 170, 142, 89, 52, 106, 182, 75, 115, + 55, 35, 29, 252, 204, 88, 86, 72, 208, 169, 255, 255, 216, 102, 159, 27, 151, 214, 46, 240, 88, 162, 83, 76, 159, + 72, 129, 120, 255, 91, 41, 171, 214, 78, 191, 27, 22, 162, 111, 117, 2, 162, 39, 159, 27, 35, 222, 16, 115, 131, + 215, 166, 162, 27, 244, 54, 16, 151, 169, 102, 3, 10, 75, 255, 4, 6, 48, 70, 175, 89, 197, 39, 206, 110, 255, 160, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2938, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "246253751520037922" + }, + "fields": [] + }, + "cborHex": "d8669f1b036ade7b77f58c2280ff", + "cborBytes": [216, 102, 159, 27, 3, 106, 222, 123, 119, 245, 140, 34, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2939, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7484262626099819668" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12870325170249343913" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "17e0e85944" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be430c4cba2e51c0a7" + }, + { + "_tag": "ByteArray", + "bytearray": "f27e5517dcc4f491c45d85fa" + }, + { + "_tag": "ByteArray", + "bytearray": "9129b7c6e1cca72e5f" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1311416288663531628" + } + } + ] + }, + "cborHex": "d8669f1b67dd7134826974949fd8669f1bb29c948d6c7b23a99f4517e0e859449f49be430c4cba2e51c0a74cf27e5517dcc4f491c45d85fa499129b7c6e1cca72e5fffffffa01b1233162a9673706cffff", + "cborBytes": [ + 216, 102, 159, 27, 103, 221, 113, 52, 130, 105, 116, 148, 159, 216, 102, 159, 27, 178, 156, 148, 141, 108, 123, + 35, 169, 159, 69, 23, 224, 232, 89, 68, 159, 73, 190, 67, 12, 76, 186, 46, 81, 192, 167, 76, 242, 126, 85, 23, + 220, 196, 244, 145, 196, 93, 133, 250, 73, 145, 41, 183, 198, 225, 204, 167, 46, 95, 255, 255, 255, 160, 27, 18, + 51, 22, 42, 150, 115, 112, 108, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2940, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "160ffc5170c069c3aca7" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ab765080cb39abbefd8af9ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6260139951727872919" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b5c155f0dd8c5d6c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13846596889405748551" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21d63e28543634" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "424773011348578656" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18437089951853244909" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2eae921266afce86dfb4a708" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18256117895282263056" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd9c2185909af36de08d453c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "305f" + } + } + ] + }, + "cborHex": "bf4a160ffc5170c069c3aca79f4cab765080cb39abbefd8af9ab1b56e07c1e52f88b9748b5c155f0dd8c5d6c1bc028fe822d0ef547ff4721d63e285436349f1b05e518cda39ae1601bffddb3a09822f1edff4c2eae921266afce86dfb4a7089f1bfd5ac2802df384104cfd9c2185909af36de08d453cff42eb6d42305fff", + "cborBytes": [ + 191, 74, 22, 15, 252, 81, 112, 192, 105, 195, 172, 167, 159, 76, 171, 118, 80, 128, 203, 57, 171, 190, 253, 138, + 249, 171, 27, 86, 224, 124, 30, 82, 248, 139, 151, 72, 181, 193, 85, 240, 221, 140, 93, 108, 27, 192, 40, 254, + 130, 45, 14, 245, 71, 255, 71, 33, 214, 62, 40, 84, 54, 52, 159, 27, 5, 229, 24, 205, 163, 154, 225, 96, 27, 255, + 221, 179, 160, 152, 34, 241, 237, 255, 76, 46, 174, 146, 18, 102, 175, 206, 134, 223, 180, 167, 8, 159, 27, 253, + 90, 194, 128, 45, 243, 132, 16, 76, 253, 156, 33, 133, 144, 154, 243, 109, 224, 141, 69, 60, 255, 66, 235, 109, + 66, 48, 95, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2941, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16680763836443355757" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b2c07f802" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1be77dfa54ad636a6d9fbf456b2c07f8021bfffffffffffffff2ffffff", + "cborBytes": [ + 216, 102, 159, 27, 231, 125, 250, 84, 173, 99, 106, 109, 159, 191, 69, 107, 44, 7, 248, 2, 27, 255, 255, 255, 255, + 255, 255, 255, 242, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2942, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18072495491495954286" + } + }, + "cborHex": "1bface66e5b777076e", + "cborBytes": [27, 250, 206, 102, 229, 183, 119, 7, 110], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2943, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1232141441247666963" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11869595314390139787" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10653697021901424759" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50fb33" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14903861160192871434" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "743e9bd76124" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6da20fd46ec679e0a093c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e641ab234b7a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4626103339030968447" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1049330525116860096" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f736a1c53897bb114" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9495952186138762303" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17262080344697948193" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13615001144106356216" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "056e430c68ab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14970741831007793115" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d554" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5385542792484491050" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9336045470798471677" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3511973607330532761" + } + } + ] + }, + "cborHex": "d8669f1b1119721cd69ae3139fd8669f1ba4b9460cf5dd838b9fbf412b1b93d988fee71248774350fb331bced526c2db098c0a46743e9bd761244b6da20fd46ec679e0a093c9478e641ab234b7a41b4033387a0930787fffbf1b0e8ff88d919086c0499f736a1c53897bb1141b83c866339ae51c3f1bef8f3a9d75f948211bbcf23367baff0df846056e430c68ab1bcfc2c2607d4cefdb42d554ff1b4abd4aa2ccb40f2affff1b81904be425d661fd1b30bd09637d7bcd99ffff", + "cborBytes": [ + 216, 102, 159, 27, 17, 25, 114, 28, 214, 154, 227, 19, 159, 216, 102, 159, 27, 164, 185, 70, 12, 245, 221, 131, + 139, 159, 191, 65, 43, 27, 147, 217, 136, 254, 231, 18, 72, 119, 67, 80, 251, 51, 27, 206, 213, 38, 194, 219, 9, + 140, 10, 70, 116, 62, 155, 215, 97, 36, 75, 109, 162, 15, 212, 110, 198, 121, 224, 160, 147, 201, 71, 142, 100, + 26, 178, 52, 183, 164, 27, 64, 51, 56, 122, 9, 48, 120, 127, 255, 191, 27, 14, 143, 248, 141, 145, 144, 134, 192, + 73, 159, 115, 106, 28, 83, 137, 123, 177, 20, 27, 131, 200, 102, 51, 154, 229, 28, 63, 27, 239, 143, 58, 157, 117, + 249, 72, 33, 27, 188, 242, 51, 103, 186, 255, 13, 248, 70, 5, 110, 67, 12, 104, 171, 27, 207, 194, 194, 96, 125, + 76, 239, 219, 66, 213, 84, 255, 27, 74, 189, 74, 162, 204, 180, 15, 42, 255, 255, 27, 129, 144, 75, 228, 37, 214, + 97, 253, 27, 48, 189, 9, 99, 125, 123, 205, 153, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2944, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb0000fac900e504ff01" + }, + "cborHex": "4afb0000fac900e504ff01", + "cborBytes": [74, 251, 0, 0, 250, 201, 0, 229, 4, 255, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2945, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12520798765940224586" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8833520058104758862" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4450392663332201871" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4379876434320435542" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8538123156295302369" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "681103776538703779" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13066854601712243386" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7134294804991323469" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d7237edf2ec625cfead" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16821908357664541714" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3784484224419003221" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5851507803314561222" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0505fc2c03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6640521971422557058" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "80" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "41457e" + } + ] + } + ] + }, + "cborHex": "9fd8669f1badc2d023bc04324a9f1b7a96f7b0db9f424ebf1b3dc2f88c50eba58f1b3cc8726953c629561b767d81c61384bce11b0973c446afc437a31bb556cb0772bc92ba1b63021b53766c2d4d4a6d7237edf2ec625cfead1be9736c8666c50c12ffffffd8669f1bfffffffffffffff99fd8669f1b34853059de907b559f1b5134bb5830fda0c6450505fc2c031b5c27df8ccdd17382ffffffff9f80d9050b9f4180ffff9fa0804341457effff", + "cborBytes": [ + 159, 216, 102, 159, 27, 173, 194, 208, 35, 188, 4, 50, 74, 159, 27, 122, 150, 247, 176, 219, 159, 66, 78, 191, 27, + 61, 194, 248, 140, 80, 235, 165, 143, 27, 60, 200, 114, 105, 83, 198, 41, 86, 27, 118, 125, 129, 198, 19, 132, + 188, 225, 27, 9, 115, 196, 70, 175, 196, 55, 163, 27, 181, 86, 203, 7, 114, 188, 146, 186, 27, 99, 2, 27, 83, 118, + 108, 45, 77, 74, 109, 114, 55, 237, 242, 236, 98, 92, 254, 173, 27, 233, 115, 108, 134, 102, 197, 12, 18, 255, + 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 216, 102, 159, 27, 52, 133, 48, 89, 222, + 144, 123, 85, 159, 27, 81, 52, 187, 88, 48, 253, 160, 198, 69, 5, 5, 252, 44, 3, 27, 92, 39, 223, 140, 205, 209, + 115, 130, 255, 255, 255, 255, 159, 128, 217, 5, 11, 159, 65, 128, 255, 255, 159, 160, 128, 67, 65, 69, 126, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2946, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "87e4ef4423" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef96f4de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2c12be7d98983febc67" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2502452588603982828" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16535274619527175580" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4030386623023975153" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "607218701533773300" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8493232726390288269" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40ac68ed8c1397418219cdfe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9167055608607884420" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4327" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8130b0fcc5c9c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c418619550fb058ec90ba11b" + } + } + ] + }, + "cborHex": "bf4587e4ef442344ef96f4de4ae2c12be7d98983febc67bf1b22ba7f5eeaff43ec1be57918a8a8731d9c1b37eecf479cd48af11b086d46311de4fdf41b75de062a63372f8d4c40ac68ed8c1397418219cdfe1b7f37ec81c3534484424327ff47f8130b0fcc5c9c4cc418619550fb058ec90ba11bff", + "cborBytes": [ + 191, 69, 135, 228, 239, 68, 35, 68, 239, 150, 244, 222, 74, 226, 193, 43, 231, 217, 137, 131, 254, 188, 103, 191, + 27, 34, 186, 127, 94, 234, 255, 67, 236, 27, 229, 121, 24, 168, 168, 115, 29, 156, 27, 55, 238, 207, 71, 156, 212, + 138, 241, 27, 8, 109, 70, 49, 29, 228, 253, 244, 27, 117, 222, 6, 42, 99, 55, 47, 141, 76, 64, 172, 104, 237, 140, + 19, 151, 65, 130, 25, 205, 254, 27, 127, 55, 236, 129, 195, 83, 68, 132, 66, 67, 39, 255, 71, 248, 19, 11, 15, + 204, 92, 156, 76, 196, 24, 97, 149, 80, 251, 5, 142, 201, 11, 161, 27, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2947, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6911392772098990637" + } + }, + "cborHex": "1b5fea331bac29a22d", + "cborBytes": [27, 95, 234, 51, 27, 172, 41, 162, 45], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2948, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "08312e868e4d007bee06" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17920593326172613881" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17947681164823887406" + } + }, + { + "_tag": "ByteArray", + "bytearray": "22a2d1611a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13484026618173012466" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9280455698384112235" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20c0bcbcf789eb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7196893122789167958" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1a148ff" + }, + { + "_tag": "ByteArray", + "bytearray": "0132" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6854835597748152231" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13486401411027414935" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b8c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3388928764499964133" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4185d900b4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10112727257141254997" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b40818f4a6e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9328511278781387929" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "15ca673d1d34" + }, + { + "_tag": "ByteArray", + "bytearray": "28" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6252257510584749304" + } + } + } + ] + }, + "cborHex": "bf4a08312e868e4d007bee06d8669f1bf8b2bcaecac12cf99f1bf912f8edb34bfe2e4522a2d1611a1bbb20e2c48e1d39f21b80cacd49a7ef4a6bffff4720c0bcbcf789eb9f1b63e0802a164cd35644c1a148ff4201321b5f2144a85d7b27a71bbb2952a11a9daf97ff422b8c1b2f07e4c1891fb0e5454185d900b41b8c579fdc60509b55468b40818f4a6ed8669f1b817587955efd54999f4615ca673d1d344128ffff41a41b56c47b147aac0cf8ff", + "cborBytes": [ + 191, 74, 8, 49, 46, 134, 142, 77, 0, 123, 238, 6, 216, 102, 159, 27, 248, 178, 188, 174, 202, 193, 44, 249, 159, + 27, 249, 18, 248, 237, 179, 75, 254, 46, 69, 34, 162, 209, 97, 26, 27, 187, 32, 226, 196, 142, 29, 57, 242, 27, + 128, 202, 205, 73, 167, 239, 74, 107, 255, 255, 71, 32, 192, 188, 188, 247, 137, 235, 159, 27, 99, 224, 128, 42, + 22, 76, 211, 86, 68, 193, 161, 72, 255, 66, 1, 50, 27, 95, 33, 68, 168, 93, 123, 39, 167, 27, 187, 41, 82, 161, + 26, 157, 175, 151, 255, 66, 43, 140, 27, 47, 7, 228, 193, 137, 31, 176, 229, 69, 65, 133, 217, 0, 180, 27, 140, + 87, 159, 220, 96, 80, 155, 85, 70, 139, 64, 129, 143, 74, 110, 216, 102, 159, 27, 129, 117, 135, 149, 94, 253, 84, + 153, 159, 70, 21, 202, 103, 61, 29, 52, 65, 40, 255, 255, 65, 164, 27, 86, 196, 123, 20, 122, 172, 12, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2949, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1988108006479431839" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "15a7b65a34c171b65d76" + } + ] + }, + "cborHex": "d8669f1b1b972db2cd51089f9f4a15a7b65a34c171b65d76ffff", + "cborBytes": [ + 216, 102, 159, 27, 27, 151, 45, 178, 205, 81, 8, 159, 159, 74, 21, 167, 182, 90, 52, 193, 113, 182, 93, 118, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2950, + "sample": { + "_tag": "ByteArray", + "bytearray": "9659d230a90207ff0247" + }, + "cborHex": "4a9659d230a90207ff0247", + "cborBytes": [74, 150, 89, 210, 48, 169, 2, 7, 255, 2, 71], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2951, + "sample": { + "_tag": "ByteArray", + "bytearray": "5e0fc1" + }, + "cborHex": "435e0fc1", + "cborBytes": [67, 94, 15, 193], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2952, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "58b5bddf51459336cb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11188129828133490510" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1829272185858272926" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "235789203301850843" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "650b53eff8dd783d8c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8386936014170166427" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4582882957853100416" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2ccb55649ee44e2e654366c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15355192462201927138" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16058472520072171035" + } + }, + { + "_tag": "ByteArray", + "bytearray": "27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6884560234970950033" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7817292839899006518" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3ecb750454c1f83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15675032488498121789" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da545880d359f71d7c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17478043119453130128" + } + } + } + ] + }, + "cborHex": "bf4958b5bddf51459336cb9f1b9b4438cd2ad94f4e1b1962e15c7395ae9e1b0345b107f8addedb412dff49650b53eff8dd783d8cd8669f1b746461de768b149b9f1b3f99abc4de068980ffff4ca2ccb55649ee44e2e654366cd8669f1bd5189a30674d35e29f1bdedb27acf2460e1b41271b5f8adf0ec83929911b6c7c9a6b8b628636ffff48c3ecb750454c1f831bd988e6ff97a34c3d49da545880d359f71d7c1bf28e7b9d4ff6cd90ff", + "cborBytes": [ + 191, 73, 88, 181, 189, 223, 81, 69, 147, 54, 203, 159, 27, 155, 68, 56, 205, 42, 217, 79, 78, 27, 25, 98, 225, 92, + 115, 149, 174, 158, 27, 3, 69, 177, 7, 248, 173, 222, 219, 65, 45, 255, 73, 101, 11, 83, 239, 248, 221, 120, 61, + 140, 216, 102, 159, 27, 116, 100, 97, 222, 118, 139, 20, 155, 159, 27, 63, 153, 171, 196, 222, 6, 137, 128, 255, + 255, 76, 162, 204, 181, 86, 73, 238, 68, 226, 230, 84, 54, 108, 216, 102, 159, 27, 213, 24, 154, 48, 103, 77, 53, + 226, 159, 27, 222, 219, 39, 172, 242, 70, 14, 27, 65, 39, 27, 95, 138, 223, 14, 200, 57, 41, 145, 27, 108, 124, + 154, 107, 139, 98, 134, 54, 255, 255, 72, 195, 236, 183, 80, 69, 76, 31, 131, 27, 217, 136, 230, 255, 151, 163, + 76, 61, 73, 218, 84, 88, 128, 211, 89, 247, 29, 124, 27, 242, 142, 123, 157, 79, 246, 205, 144, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2953, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79fa0ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2954, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "399358564793482873" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5882066514457821370" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2146776100079813026" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9784613522980741808" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10432195357075103505" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d234d21ab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12313536290416882947" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + "cborHex": "9fbf1b058ace7fb0867e791b51a14c54937a80ba1b1dcae17d298e41a21b87c9ee2875c022b01b90c69a67b5f0df11458d234d21ab1baae27804272df5034198ff04ff", + "cborBytes": [ + 159, 191, 27, 5, 138, 206, 127, 176, 134, 126, 121, 27, 81, 161, 76, 84, 147, 122, 128, 186, 27, 29, 202, 225, + 125, 41, 142, 65, 162, 27, 135, 201, 238, 40, 117, 192, 34, 176, 27, 144, 198, 154, 103, 181, 240, 223, 17, 69, + 141, 35, 77, 33, 171, 27, 170, 226, 120, 4, 39, 45, 245, 3, 65, 152, 255, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2955, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12664208085188052591" + } + }, + "cborHex": "1bafc04e27d743866f", + "cborBytes": [27, 175, 192, 78, 39, 215, 67, 134, 111], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2956, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4585031602453428210" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5893592368676587751" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6692658098289685123" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af578d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2436460244253657422" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2244623836718505165" + } + }, + { + "_tag": "ByteArray", + "bytearray": "114ac81236fb2e4c0f" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b3fa14df32c2d37f29fd8669f1b51ca3f08a1ebc8e79f9f1b5ce11914c7b2b28343af578d1b21d00baee819c94e1b1f26817ca9fb1ccd49114ac81236fb2e4c0fffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 63, 161, 77, 243, 44, 45, 55, 242, 159, 216, 102, 159, 27, 81, 202, 63, 8, 161, 235, 200, 231, + 159, 159, 27, 92, 225, 25, 20, 199, 178, 178, 131, 67, 175, 87, 141, 27, 33, 208, 11, 174, 232, 25, 201, 78, 27, + 31, 38, 129, 124, 169, 251, 28, 205, 73, 17, 74, 200, 18, 54, 251, 46, 76, 15, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2957, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6850388029212363298" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11215653420729191976" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5841759131471435856" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f44912" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3595557745141145907" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10533486156382976997" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1059840432333450708" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16619060069972513483" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12235260330122638333" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17583547718831952371" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0768231ced6485e77c91a1cf" + }, + { + "_tag": "ByteArray", + "bytearray": "baec5049" + }, + { + "_tag": "ByteArray", + "bytearray": "66e712" + } + ] + } + } + ] + }, + "cborHex": "bf1b5f11779e1eca8a229f1b9ba6015cf2754e281b511218faa6bfd85043f449121b31e5fcb8188ae133ff1b922e75d9b5b3bbe51b0eb54f4207d4edd41be6a2c315039712cb1ba9cc6071ef6373fd1bf4054f7d181bd1f39f4c0768231ced6485e77c91a1cf44baec50494366e712ffff", + "cborBytes": [ + 191, 27, 95, 17, 119, 158, 30, 202, 138, 34, 159, 27, 155, 166, 1, 92, 242, 117, 78, 40, 27, 81, 18, 24, 250, 166, + 191, 216, 80, 67, 244, 73, 18, 27, 49, 229, 252, 184, 24, 138, 225, 51, 255, 27, 146, 46, 117, 217, 181, 179, 187, + 229, 27, 14, 181, 79, 66, 7, 212, 237, 212, 27, 230, 162, 195, 21, 3, 151, 18, 203, 27, 169, 204, 96, 113, 239, + 99, 115, 253, 27, 244, 5, 79, 125, 24, 27, 209, 243, 159, 76, 7, 104, 35, 28, 237, 100, 133, 231, 124, 145, 161, + 207, 68, 186, 236, 80, 73, 67, 102, 231, 18, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2958, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12999500806051814382" + } + } + ] + }, + "cborHex": "9f1bb467811bda1f5beeff", + "cborBytes": [159, 27, 180, 103, 129, 27, 218, 31, 91, 238, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2959, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11075756135529432176" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1488295ab5d7030619de4c2f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18061460782785339436" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "669ae0c3100d95196ca0dc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12756502195373207288" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4060642818646513450" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6335851537029488095" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7336530660053633094" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fecbff49864d59b5ba" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "133276515638550282" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5402758841979789404" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d1d54c3c7c029b" + }, + { + "_tag": "ByteArray", + "bytearray": "8fc5d671af0906d00d98db" + }, + { + "_tag": "ByteArray", + "bytearray": "bc7c6b0305" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5533545851442957025" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5a1c501fa990b487c798" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "11152c31ba" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11333962879735430523" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b99b4fd85fd15c4709fbf4c1488295ab5d7030619de4c2f1bfaa732e36291a02c4b669ae0c3100d95196ca0dc1bb1083328ebb5eef8ffd8669f1b385a4d211d2a972a9f9f1b57ed776776415ddf1b65d097c3c442484649fecbff49864d59b5baff1b01d97e48eb899f0ad8669f1b4afa748aaf4e605c9f47d1d54c3c7c029b4b8fc5d671af0906d00d98db45bc7c6b03051b4ccb1aa247980ae14a5a1c501fa990b487c798ffff9f4511152c31ba1b9d4a53307017fd7bffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 153, 180, 253, 133, 253, 21, 196, 112, 159, 191, 76, 20, 136, 41, 90, 181, 215, 3, 6, 25, 222, + 76, 47, 27, 250, 167, 50, 227, 98, 145, 160, 44, 75, 102, 154, 224, 195, 16, 13, 149, 25, 108, 160, 220, 27, 177, + 8, 51, 40, 235, 181, 238, 248, 255, 216, 102, 159, 27, 56, 90, 77, 33, 29, 42, 151, 42, 159, 159, 27, 87, 237, + 119, 103, 118, 65, 93, 223, 27, 101, 208, 151, 195, 196, 66, 72, 70, 73, 254, 203, 255, 73, 134, 77, 89, 181, 186, + 255, 27, 1, 217, 126, 72, 235, 137, 159, 10, 216, 102, 159, 27, 74, 250, 116, 138, 175, 78, 96, 92, 159, 71, 209, + 213, 76, 60, 124, 2, 155, 75, 143, 197, 214, 113, 175, 9, 6, 208, 13, 152, 219, 69, 188, 124, 107, 3, 5, 27, 76, + 203, 26, 162, 71, 152, 10, 225, 74, 90, 28, 80, 31, 169, 144, 180, 135, 199, 152, 255, 255, 159, 69, 17, 21, 44, + 49, 186, 27, 157, 74, 83, 48, 112, 23, 253, 123, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2960, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e0e2066" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3884870136228499701" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e6c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3494808276775439619" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b52fa83efa220b41" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14524958762907807483" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffbc4e67af0609e62cc138c5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "556e225c0845bfe9519c" + }, + { + "_tag": "ByteArray", + "bytearray": "11bdec75f9f5d2" + }, + { + "_tag": "ByteArray", + "bytearray": "22" + } + ] + } + } + ] + }, + "cborHex": "bf446e0e20661b35e9d4ce546c50f5426e6c1b30800d9c874b8d0348b52fa83efa220b411bc9930509d0512efb4cffbc4e67af0609e62cc138c59f4a556e225c0845bfe9519c4711bdec75f9f5d24122ffff", + "cborBytes": [ + 191, 68, 110, 14, 32, 102, 27, 53, 233, 212, 206, 84, 108, 80, 245, 66, 110, 108, 27, 48, 128, 13, 156, 135, 75, + 141, 3, 72, 181, 47, 168, 62, 250, 34, 11, 65, 27, 201, 147, 5, 9, 208, 81, 46, 251, 76, 255, 188, 78, 103, 175, + 6, 9, 230, 44, 193, 56, 197, 159, 74, 85, 110, 34, 92, 8, 69, 191, 233, 81, 156, 71, 17, 189, 236, 117, 249, 245, + 210, 65, 34, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2961, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "870600d7e63e7c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1749143094711483616" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6533542358092347090" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12903513992289628126" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92be8b97bcded26211" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14091734868029641521" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10227288940032757845" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17747526920664108048" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7c55a99acbf2669c4" + } + } + ] + } + } + ] + }, + "cborHex": "bf47870600d7e63e7cbf1b18463460959afce01b5aabce28930ff6d21bb3127d9c38b4afde4992be8b97bcded262111bc38fe63385e493311b8deea11abdef10551bf64be1b433ddcc1049a7c55a99acbf2669c4ffff", + "cborBytes": [ + 191, 71, 135, 6, 0, 215, 230, 62, 124, 191, 27, 24, 70, 52, 96, 149, 154, 252, 224, 27, 90, 171, 206, 40, 147, 15, + 246, 210, 27, 179, 18, 125, 156, 56, 180, 175, 222, 73, 146, 190, 139, 151, 188, 222, 210, 98, 17, 27, 195, 143, + 230, 51, 133, 228, 147, 49, 27, 141, 238, 161, 26, 189, 239, 16, 85, 27, 246, 75, 225, 180, 51, 221, 204, 16, 73, + 167, 197, 90, 153, 172, 191, 38, 105, 196, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2962, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7647916826352821083" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16614125947664643838" + } + } + } + ] + }, + "cborHex": "bf1b6a22dbd54a7e235b1be6913b862426b6feff", + "cborBytes": [191, 27, 106, 34, 219, 213, 74, 126, 35, 91, 27, 230, 145, 59, 134, 36, 38, 182, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2963, + "sample": { + "_tag": "ByteArray", + "bytearray": "1a007948021c0403fcfd8901" + }, + "cborHex": "4c1a007948021c0403fcfd8901", + "cborBytes": [76, 26, 0, 121, 72, 2, 28, 4, 3, 252, 253, 137, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2964, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5534103421221021876" + } + }, + "cborHex": "1b4ccd15bd9c2728b4", + "cborBytes": [27, 76, 205, 21, 189, 156, 39, 40, 180], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2965, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13575572732274607436" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f0a59edb3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f9d7c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "285c7f90eecadf1ea331d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e41b7da9fa643" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac25d8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44a61285" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9077161c2cf5f8d14aa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5c663a7c56e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6142782139712534824" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1777202948667374783" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8606d96fb1ca6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1906403962155293774" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "111ec16952b4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4887933923819715474" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18177699060290662154" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10883171983662467749" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f9bef829a02" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11290778118265365783" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db3a92b1" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bbc661f7939b5054cbf451f0a59edb3436f9d7c4b285c7f90eecadf1ea331d5476e41b7da9fa643414143ac25d84444a612854ac9077161c2cf5f8d14aa46d5c663a7c56e1b553f8bcf6a2df928ff412fbf1b18a9e4aa71187cbf47e8606d96fb1ca61b1a74e84d92a9dc4e46111ec16952b41b43d56e019edafb921bfc4428fc5a93af0a1b9708cb41f3af4aa5465f9bef829a021b9cb0e6e0a0f5e51744db3a92b1ffff", + "cborBytes": [ + 191, 27, 188, 102, 31, 121, 57, 181, 5, 76, 191, 69, 31, 10, 89, 237, 179, 67, 111, 157, 124, 75, 40, 92, 127, + 144, 238, 202, 223, 30, 163, 49, 213, 71, 110, 65, 183, 218, 159, 166, 67, 65, 65, 67, 172, 37, 216, 68, 68, 166, + 18, 133, 74, 201, 7, 113, 97, 194, 207, 95, 141, 20, 170, 70, 213, 198, 99, 167, 197, 110, 27, 85, 63, 139, 207, + 106, 45, 249, 40, 255, 65, 47, 191, 27, 24, 169, 228, 170, 113, 24, 124, 191, 71, 232, 96, 109, 150, 251, 28, 166, + 27, 26, 116, 232, 77, 146, 169, 220, 78, 70, 17, 30, 193, 105, 82, 180, 27, 67, 213, 110, 1, 158, 218, 251, 146, + 27, 252, 68, 40, 252, 90, 147, 175, 10, 27, 151, 8, 203, 65, 243, 175, 74, 165, 70, 95, 155, 239, 130, 154, 2, 27, + 156, 176, 230, 224, 160, 245, 229, 23, 68, 219, 58, 146, 177, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2966, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f80ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2967, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11363399785822764497" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0200040506fe0106" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e533e9bc99093baf3d6870b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b8806" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55fb750cbfa8ab2b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56e7b56734cdb9207a2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16449794784013466804" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5269314691852767240" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b9db2e7e63ab73dd1bf480200040506fe0106014c3e533e9bc99093baf3d6870b438b88064855fb750cbfa8ab2b1bfffffffffffffffe4a56e7b56734cdb9207a2d1be449693389323cb4429f811b49205dcb51a19008ffff", + "cborBytes": [ + 191, 27, 157, 178, 231, 230, 58, 183, 61, 209, 191, 72, 2, 0, 4, 5, 6, 254, 1, 6, 1, 76, 62, 83, 62, 155, 201, + 144, 147, 186, 243, 214, 135, 11, 67, 139, 136, 6, 72, 85, 251, 117, 12, 191, 168, 171, 43, 27, 255, 255, 255, + 255, 255, 255, 255, 254, 74, 86, 231, 181, 103, 52, 205, 185, 32, 122, 45, 27, 228, 73, 105, 51, 137, 50, 60, 180, + 66, 159, 129, 27, 73, 32, 93, 203, 81, 161, 144, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2968, + "sample": { + "_tag": "ByteArray", + "bytearray": "2972fed8ff68" + }, + "cborHex": "462972fed8ff68", + "cborBytes": [70, 41, 114, 254, 216, 255, 104], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2969, + "sample": { + "_tag": "ByteArray", + "bytearray": "010704bbf8" + }, + "cborHex": "45010704bbf8", + "cborBytes": [69, 1, 7, 4, 187, 248], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2970, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6094921734446298449" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a1f3f5848" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0306c3b1fd" + } + } + ] + }, + "cborHex": "bf021b54958306737ab551459a1f3f5848450306c3b1fdff", + "cborBytes": [ + 191, 2, 27, 84, 149, 131, 6, 115, 122, 181, 81, 69, 154, 31, 63, 88, 72, 69, 3, 6, 195, 177, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2971, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9327019996694833455" + }, + "fields": [] + }, + "cborHex": "d8669f1b81703b4533f5e92f80ff", + "cborBytes": [216, 102, 159, 27, 129, 112, 59, 69, 51, 245, 233, 47, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2972, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "71d7dfa92e79f1b4662c3a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c017e3dd70d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5134944460679590313" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9eb9c82e96e3" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa5a05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f4554d6f75c052c56ef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6f0aaff9b87530beae8d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6585775055190108614" + } + } + } + ] + }, + "cborHex": "bf4b71d7dfa92e79f1b4662c3abf46c017e3dd70d91b4742fcc7e82ab1a9ff469eb9c82e96e38043aa5a054a2f4554d6f75c052c56ef4bd6f0aaff9b87530beae8d41b5b655f850f3c29c6ff", + "cborBytes": [ + 191, 75, 113, 215, 223, 169, 46, 121, 241, 180, 102, 44, 58, 191, 70, 192, 23, 227, 221, 112, 217, 27, 71, 66, + 252, 199, 232, 42, 177, 169, 255, 70, 158, 185, 200, 46, 150, 227, 128, 67, 170, 90, 5, 74, 47, 69, 84, 214, 247, + 92, 5, 44, 86, 239, 75, 214, 240, 170, 255, 155, 135, 83, 11, 234, 232, 212, 27, 91, 101, 95, 133, 15, 60, 41, + 198, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2973, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0335179fd13a9b3acbf2c856" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3a53" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13077796960480304938" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15730106535918743617" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f9f9f4c0335179fd13a9b3acbf2c856ff423a531bb57dab0be21c9f2a1bda4c908d807cb041ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 159, 159, 76, 3, 53, 23, 159, 209, 58, 155, 58, + 203, 242, 200, 86, 255, 66, 58, 83, 27, 181, 125, 171, 11, 226, 28, 159, 42, 27, 218, 76, 144, 141, 128, 124, 176, + 65, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2974, + "sample": { + "_tag": "ByteArray", + "bytearray": "0dfb01ae" + }, + "cborHex": "440dfb01ae", + "cborBytes": [68, 13, 251, 1, 174], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2975, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9234923216078026881" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abf581" + } + } + ] + }, + "cborHex": "bf1b802909bc7e56b88143abf581ff", + "cborBytes": [191, 27, 128, 41, 9, 188, 126, 86, 184, 129, 67, 171, 245, 129, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2976, + "sample": { + "_tag": "ByteArray", + "bytearray": "8504cd04" + }, + "cborHex": "448504cd04", + "cborBytes": [68, 133, 4, 205, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2977, + "sample": { + "_tag": "ByteArray", + "bytearray": "10dfe4ddb4" + }, + "cborHex": "4510dfe4ddb4", + "cborBytes": [69, 16, 223, 228, 221, 180], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2978, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3ece9e58fed84879d9883a49" + }, + { + "_tag": "ByteArray", + "bytearray": "bef5b055035b57" + } + ] + }, + "cborHex": "9f4c3ece9e58fed84879d9883a4947bef5b055035b57ff", + "cborBytes": [ + 159, 76, 62, 206, 158, 88, 254, 216, 72, 121, 217, 136, 58, 73, 71, 190, 245, 176, 85, 3, 91, 87, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2979, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1333938959152250279" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a79b66e70" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "747524129254948605" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e041c4e67b741b1241e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18039421523682781996" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea6adb3423ff883dfb8d7bf8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5c3d52a1ff16fe586ad53" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9734801807246627023" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b12831a6a7452fda7bf457a79b66e701b0a5fbd3c29463efd4ae041c4e67b741b1241e31bfa58e64c80a5eb2c4cea6adb3423ff883dfb8d7bf842c2f74bf5c3d52a1ff16fe586ad531b8718f6aa9fc410cfffff", + "cborBytes": [ + 191, 27, 18, 131, 26, 106, 116, 82, 253, 167, 191, 69, 122, 121, 182, 110, 112, 27, 10, 95, 189, 60, 41, 70, 62, + 253, 74, 224, 65, 196, 230, 123, 116, 27, 18, 65, 227, 27, 250, 88, 230, 76, 128, 165, 235, 44, 76, 234, 106, 219, + 52, 35, 255, 136, 61, 251, 141, 123, 248, 66, 194, 247, 75, 245, 195, 213, 42, 31, 241, 111, 229, 134, 173, 83, + 27, 135, 24, 246, 170, 159, 196, 16, 207, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2980, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0817c1473e7ebbf8cd6dd481" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17720168765606494406" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ba986a4b208310" + }, + { + "_tag": "ByteArray", + "bytearray": "7547881e4f688317eee2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8929924908649488550" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a75799e11c932" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8bf" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8992460373899910687" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4d6c097ad1ba8464b7" + }, + { + "_tag": "ByteArray", + "bytearray": "6c2b46b6" + }, + { + "_tag": "ByteArray", + "bytearray": "7525d24f593f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3484638236885242548" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1515474524325759054" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c0817c1473e7ebbf8cd6dd481d8669f1bf5eaaf9b59f280c69f47ba986a4b2083104a7547881e4f688317eee21b7bed776442f720a6479a75799e11c932ffff42a8bfd8669f1b7ccba310e3149e1f9f494d6c097ad1ba8464b7446c2b46b6467525d24f593f1b305bec039849d2b41b15080c0cf097484effffff", + "cborBytes": [ + 191, 76, 8, 23, 193, 71, 62, 126, 187, 248, 205, 109, 212, 129, 216, 102, 159, 27, 245, 234, 175, 155, 89, 242, + 128, 198, 159, 71, 186, 152, 106, 75, 32, 131, 16, 74, 117, 71, 136, 30, 79, 104, 131, 23, 238, 226, 27, 123, 237, + 119, 100, 66, 247, 32, 166, 71, 154, 117, 121, 158, 17, 201, 50, 255, 255, 66, 168, 191, 216, 102, 159, 27, 124, + 203, 163, 16, 227, 20, 158, 31, 159, 73, 77, 108, 9, 122, 209, 186, 132, 100, 183, 68, 108, 43, 70, 182, 70, 117, + 37, 210, 79, 89, 63, 27, 48, 91, 236, 3, 152, 73, 210, 180, 27, 21, 8, 12, 12, 240, 151, 72, 78, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2981, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7326457099424525290" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1412611531798465195" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dffb" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc90584ec03e4c45a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15428154404886526711" + } + } + } + ] + }, + "cborHex": "bf1b65accdea29566beabf1b139a9ab42e77caab42dffbff49cc90584ec03e4c45a61bd61bd0b07b23baf7ff", + "cborBytes": [ + 191, 27, 101, 172, 205, 234, 41, 86, 107, 234, 191, 27, 19, 154, 154, 180, 46, 119, 202, 171, 66, 223, 251, 255, + 73, 204, 144, 88, 78, 192, 62, 76, 69, 166, 27, 214, 27, 208, 176, 123, 35, 186, 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2982, + "sample": { + "_tag": "ByteArray", + "bytearray": "4d71" + }, + "cborHex": "424d71", + "cborBytes": [66, 77, 113], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2983, + "sample": { + "_tag": "ByteArray", + "bytearray": "cf0134" + }, + "cborHex": "43cf0134", + "cborBytes": [67, 207, 1, 52], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2984, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15524431990547223135" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "243c7c085c0d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4732655128089765471" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89ff204382e0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "199d56fc5e9ffaaaa13af37c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1011830927128684219" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9630688134565032378" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6241717585696170525" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6481570244173234020" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0499" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec5cc0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9b8016df9a7c48ef8fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7424416599450674474" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bd771dca4b847125fbf46243c7c085c0d1b41adc4c3aa38a65f4689ff204382e041d0ff4c199d56fc5e9ffaaaa13af37cbf1b0e0abede084266bb1b85a713d5335171ba1b569f0912fbbaa21d1b59f329cbd6afff6442049943ec5cc04ac9b8016df9a7c48ef8fa1b6708d38f9ac5652affff", + "cborBytes": [ + 191, 27, 215, 113, 220, 164, 184, 71, 18, 95, 191, 70, 36, 60, 124, 8, 92, 13, 27, 65, 173, 196, 195, 170, 56, + 166, 95, 70, 137, 255, 32, 67, 130, 224, 65, 208, 255, 76, 25, 157, 86, 252, 94, 159, 250, 170, 161, 58, 243, 124, + 191, 27, 14, 10, 190, 222, 8, 66, 102, 187, 27, 133, 167, 19, 213, 51, 81, 113, 186, 27, 86, 159, 9, 18, 251, 186, + 162, 29, 27, 89, 243, 41, 203, 214, 175, 255, 100, 66, 4, 153, 67, 236, 92, 192, 74, 201, 184, 1, 109, 249, 167, + 196, 142, 248, 250, 27, 103, 8, 211, 143, 154, 197, 101, 42, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2985, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b6" + } + ] + }, + "cborHex": "9f41b6ff", + "cborBytes": [159, 65, 182, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2986, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f14b329778fcab61f887" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b808299d42d898" + } + } + ] + }, + "cborHex": "bf4af14b329778fcab61f88747b808299d42d898ff", + "cborBytes": [191, 74, 241, 75, 50, 151, 120, 252, 171, 97, 248, 135, 71, 184, 8, 41, 157, 66, 216, 152, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2987, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6334619228799502065" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9451981061155309694" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6a1deb9dd2a1046637b1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8998620326783633072" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b57e916a057f406f19f1b832c2eb245e1c87e4a6a1deb9dd2a1046637b11b7ce18582ae8c46b0ffff", + "cborBytes": [ + 191, 27, 87, 233, 22, 160, 87, 244, 6, 241, 159, 27, 131, 44, 46, 178, 69, 225, 200, 126, 74, 106, 29, 235, 157, + 210, 161, 4, 102, 55, 177, 27, 124, 225, 133, 130, 174, 140, 70, 176, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2988, + "sample": { + "_tag": "ByteArray", + "bytearray": "98f8fd3e53" + }, + "cborHex": "4598f8fd3e53", + "cborBytes": [69, 152, 248, 253, 62, 83], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2989, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8001628527477644905" + } + } + ] + } + } + ] + }, + "cborHex": "bf104231fe41d8d905039f1b6f0b7ec054efde69ffff", + "cborBytes": [191, 16, 66, 49, 254, 65, 216, 217, 5, 3, 159, 27, 111, 11, 126, 192, 84, 239, 222, 105, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2990, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "015c05d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6fa7d89bb77" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "271bf71c4a43f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ef7178d2c53032f2f5b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c48512852afff713aae47f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4570101220732429456" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85bd2fb53bb0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a85b917f578c94a539" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a867bcca5e795854" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4752948214357716618" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf935a2af701156e8cdc89" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3803996930956232647" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4347461283707414299" + } + }, + { + "_tag": "ByteArray", + "bytearray": "034b" + }, + { + "_tag": "ByteArray", + "bytearray": "02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3477359539046240705" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17710344827740987004" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "782164be4e6b23" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1278298567841960767" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a5a5099" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fed668a374" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c94002b3cdf835eac1fdff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3696900376641890740" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c964b2de" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14610f2e3b142b3edb56" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfecdac607135480" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "98415204818574277" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffe9fd90506809fbf44015c05d246e6fa7d89bb7747271bf71c4a43f74a3ef7178d2c53032f2f5b4c3c48512852afff713aae47f11b3f6c42d8c955e4904685bd2fb53bb049a85b917f578c94a53948a867bcca5e7958541b41f5dd38009e6e8a4bcf935a2af701156e8cdc891b34ca830de45287c7ffd8669f1bffffffffffffffeb9f1bfffffffffffffffb1b3c554900f224e71b42034b41021b30421013b12ad1c1ffffffbf414a1bf5c7c8c9932d9e7c47782164be4e6b231b11bd6dc6551c533f449a5a509945fed668a3744bc94002b3cdf835eac1fdff1b334e074e37bf69b444c964b2de4a14610f2e3b142b3edb5648dfecdac6071354801b015da41b7bb55bc5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 217, 5, 6, 128, 159, 191, 68, 1, 92, 5, 210, 70, + 230, 250, 125, 137, 187, 119, 71, 39, 27, 247, 28, 74, 67, 247, 74, 62, 247, 23, 141, 44, 83, 3, 47, 47, 91, 76, + 60, 72, 81, 40, 82, 175, 255, 113, 58, 174, 71, 241, 27, 63, 108, 66, 216, 201, 85, 228, 144, 70, 133, 189, 47, + 181, 59, 176, 73, 168, 91, 145, 127, 87, 140, 148, 165, 57, 72, 168, 103, 188, 202, 94, 121, 88, 84, 27, 65, 245, + 221, 56, 0, 158, 110, 138, 75, 207, 147, 90, 42, 247, 1, 21, 110, 140, 220, 137, 27, 52, 202, 131, 13, 228, 82, + 135, 199, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 251, 27, 60, 85, 73, 0, 242, 36, 231, 27, 66, 3, 75, 65, 2, 27, 48, 66, 16, 19, 177, 42, 209, 193, 255, 255, + 255, 191, 65, 74, 27, 245, 199, 200, 201, 147, 45, 158, 124, 71, 120, 33, 100, 190, 78, 107, 35, 27, 17, 189, 109, + 198, 85, 28, 83, 63, 68, 154, 90, 80, 153, 69, 254, 214, 104, 163, 116, 75, 201, 64, 2, 179, 205, 248, 53, 234, + 193, 253, 255, 27, 51, 78, 7, 78, 55, 191, 105, 180, 68, 201, 100, 178, 222, 74, 20, 97, 15, 46, 59, 20, 43, 62, + 219, 86, 72, 223, 236, 218, 198, 7, 19, 84, 128, 27, 1, 93, 164, 27, 123, 181, 91, 197, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2991, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04640000" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "049a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07cffa06048b0007481e35" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0606cc06b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10549592027571688187" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ef9fd1379a2fe00ff" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4599304452511665134" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b97f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a5a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2557253807163551203" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ac1e4060fe9ba1e50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6b19d8d9fd1d912a7d0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + ] + } + } + ] + }, + "cborHex": "bf440464000042049a4b07cffa06048b0007481e359f450606cc06b91b9267ae0e10b412fbff496ef9fd1379a2fe00ffd8669f1b3fd4030809d48bee9f051bfffffffffffffff942b97fffff427a5a1b237d30c9e87fade3497ac1e4060fe9ba1e50074ac6b19d8d9fd1d912a7d09f1bfffffffffffffff8ffff", + "cborBytes": [ + 191, 68, 4, 100, 0, 0, 66, 4, 154, 75, 7, 207, 250, 6, 4, 139, 0, 7, 72, 30, 53, 159, 69, 6, 6, 204, 6, 185, 27, + 146, 103, 174, 14, 16, 180, 18, 251, 255, 73, 110, 249, 253, 19, 121, 162, 254, 0, 255, 216, 102, 159, 27, 63, + 212, 3, 8, 9, 212, 139, 238, 159, 5, 27, 255, 255, 255, 255, 255, 255, 255, 249, 66, 185, 127, 255, 255, 66, 122, + 90, 27, 35, 125, 48, 201, 232, 127, 173, 227, 73, 122, 193, 228, 6, 15, 233, 186, 30, 80, 7, 74, 198, 177, 157, + 141, 159, 209, 217, 18, 167, 208, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2992, + "sample": { + "_tag": "ByteArray", + "bytearray": "4d4b7b2019e4629d19c9b86e" + }, + "cborHex": "4c4d4b7b2019e4629d19c9b86e", + "cborBytes": [76, 77, 75, 123, 32, 25, 228, 98, 157, 25, 201, 184, 110], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2993, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5249866277289053444" + } + }, + "cborHex": "1b48db4590701dcd04", + "cborBytes": [27, 72, 219, 69, 144, 112, 29, 205, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2994, + "sample": { + "_tag": "ByteArray", + "bytearray": "6d9a4e05124f" + }, + "cborHex": "466d9a4e05124f", + "cborBytes": [70, 109, 154, 78, 5, 18, 79], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2995, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4192643825158055523" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c35e84adc4f038d212e36e6c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4babbd106b649f6eb008" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a28" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15544137042222284609" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "937746762470018328" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13875305864098893247" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1297541289052528700" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12466367912567989199" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18124838441930888768" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5757577936436917819" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1343831600634904635" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3a2f43586c47e6639fbf4cc35e84adc4f038d212e36e6c4a4babbd106b649f6eb008ffbf08425a28091bd7b7de4895a67f411b0d038bb64a4c4d181bc08efd2b3b824dbf1b1201caed7f60e03c0c1bad016f911bf163cf1bfffffffffffffffd1bfb885c888ea296401b4fe706a0d3f2f63bff1bffffffffffffffebbf1b12a63fb889c9c03b4182ffbf1bffffffffffffffed1bffffffffffffffeeffffff", + "cborBytes": [ + 216, 102, 159, 27, 58, 47, 67, 88, 108, 71, 230, 99, 159, 191, 76, 195, 94, 132, 173, 196, 240, 56, 210, 18, 227, + 110, 108, 74, 75, 171, 189, 16, 107, 100, 159, 110, 176, 8, 255, 191, 8, 66, 90, 40, 9, 27, 215, 183, 222, 72, + 149, 166, 127, 65, 27, 13, 3, 139, 182, 74, 76, 77, 24, 27, 192, 142, 253, 43, 59, 130, 77, 191, 27, 18, 1, 202, + 237, 127, 96, 224, 60, 12, 27, 173, 1, 111, 145, 27, 241, 99, 207, 27, 255, 255, 255, 255, 255, 255, 255, 253, 27, + 251, 136, 92, 136, 142, 162, 150, 64, 27, 79, 231, 6, 160, 211, 242, 246, 59, 255, 27, 255, 255, 255, 255, 255, + 255, 255, 235, 191, 27, 18, 166, 63, 184, 137, 201, 192, 59, 65, 130, 255, 191, 27, 255, 255, 255, 255, 255, 255, + 255, 237, 27, 255, 255, 255, 255, 255, 255, 255, 238, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2996, + "sample": { + "_tag": "ByteArray", + "bytearray": "96" + }, + "cborHex": "4196", + "cborBytes": [65, 150], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2997, + "sample": { + "_tag": "ByteArray", + "bytearray": "13cb1a64a0b4" + }, + "cborHex": "4613cb1a64a0b4", + "cborBytes": [70, 19, 203, 26, 100, 160, 180], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2998, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17055184920394569529" + } + }, + "cborHex": "1becb03052a6b79739", + "cborBytes": [27, 236, 176, 48, 82, 166, 183, 151, 57], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 2999, + "sample": { + "_tag": "ByteArray", + "bytearray": "afa62f" + }, + "cborHex": "43afa62f", + "cborBytes": [67, 175, 166, 47], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3000, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6328e5707e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5700952155875541169" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e361d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10538209567526980050" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8d9e0b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af49398a4bfcbb2c0b74be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3903a116664" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6813333605983783852" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0b084a61e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1341731835334277843" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6a38b3a704b35140c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12423945636834636880" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8051526800898745901" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2802970274890842507" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11019451324080530551" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb486cb384a47ac7f1f6252a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1408611977315179568" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11342076302537446911" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7104457297409930261" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf456328e5707e1b4f1dd9c7e47580b1438e361d1b923f3dc4911189d244a8d9e0b04baf49398a4bfcbb2c0b74be46c3903a1166641b5e8dd2d0e8e50bac45f0b084a61e1b129ec9fed4eebad349f6a38b3a704b35140c1bac6ab8bb584af450ffd8669f1b6fbcc4f7731b662d9f9f1b26e6269d3ed9018b1b98ecf4987f8724774ccb486cb384a47ac7f1f6252a1b138c6521563b5c301b9d67264de41ed5ffff1b62981a455e0cf415ffff80ff", + "cborBytes": [ + 159, 191, 69, 99, 40, 229, 112, 126, 27, 79, 29, 217, 199, 228, 117, 128, 177, 67, 142, 54, 29, 27, 146, 63, 61, + 196, 145, 17, 137, 210, 68, 168, 217, 224, 176, 75, 175, 73, 57, 138, 75, 252, 187, 44, 11, 116, 190, 70, 195, + 144, 58, 17, 102, 100, 27, 94, 141, 210, 208, 232, 229, 11, 172, 69, 240, 176, 132, 166, 30, 27, 18, 158, 201, + 254, 212, 238, 186, 211, 73, 246, 163, 139, 58, 112, 75, 53, 20, 12, 27, 172, 106, 184, 187, 88, 74, 244, 80, 255, + 216, 102, 159, 27, 111, 188, 196, 247, 115, 27, 102, 45, 159, 159, 27, 38, 230, 38, 157, 62, 217, 1, 139, 27, 152, + 236, 244, 152, 127, 135, 36, 119, 76, 203, 72, 108, 179, 132, 164, 122, 199, 241, 246, 37, 42, 27, 19, 140, 101, + 33, 86, 59, 92, 48, 27, 157, 103, 38, 77, 228, 30, 213, 255, 255, 27, 98, 152, 26, 69, 94, 12, 244, 21, 255, 255, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3001, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04930e7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46ef888a6c06" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b8c4401f74472449609f7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7134125646681568906" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5712684075964513134" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15065699909691452427" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7bac77" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8340398113375718576" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5561455883789678729" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e446741d7d5ca3175a3aa977" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a131c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1494772214940093026" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4a3c79f" + } + } + ] + } + } + ] + }, + "cborHex": "bf4404930e7f42b9da4646ef888a6c06a04b6b8c4401f74472449609f7d8669f1b6301817a3975768a9f1b4f4787e665e53b6e1bd1141e3f11cb2c0b437bac771b73bf0be511190cb01b4d2e42a9134a3889ffff4ce446741d7d5ca3175a3aa977bf432a131c1b14be7f68eba0ca62417a44e4a3c79fffff", + "cborBytes": [ + 191, 68, 4, 147, 14, 127, 66, 185, 218, 70, 70, 239, 136, 138, 108, 6, 160, 75, 107, 140, 68, 1, 247, 68, 114, 68, + 150, 9, 247, 216, 102, 159, 27, 99, 1, 129, 122, 57, 117, 118, 138, 159, 27, 79, 71, 135, 230, 101, 229, 59, 110, + 27, 209, 20, 30, 63, 17, 203, 44, 11, 67, 123, 172, 119, 27, 115, 191, 11, 229, 17, 25, 12, 176, 27, 77, 46, 66, + 169, 19, 74, 56, 137, 255, 255, 76, 228, 70, 116, 29, 125, 92, 163, 23, 90, 58, 169, 119, 191, 67, 42, 19, 28, 27, + 20, 190, 127, 104, 235, 160, 202, 98, 65, 122, 68, 228, 163, 199, 159, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3002, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b14540f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3099449bde050640" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5901047108994232581" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf44b14540f9483099449bde050640ffd8669f1b51e4bb149e72710580ffff", + "cborBytes": [ + 159, 191, 68, 177, 69, 64, 249, 72, 48, 153, 68, 155, 222, 5, 6, 64, 255, 216, 102, 159, 27, 81, 228, 187, 20, + 158, 114, 113, 5, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3003, + "sample": { + "_tag": "ByteArray", + "bytearray": "05fabf82" + }, + "cborHex": "4405fabf82", + "cborBytes": [68, 5, 250, 191, 130], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3004, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6617869056268324495" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3263789493061571631" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2541137032593761670" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16521919329728881355" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8016764561061766719" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43e5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12335848503344704617" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1b9db07cd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17622848462723358941" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ff18611f1d66bfe4fbe2e62" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15174988360322931532" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8d4d255a8e3db2d96c2d9d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6559800289907181365" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14373199846756401705" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7116128467976842563" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14058943864480614927" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87f9f41be1b5bd764d7fcec4e8f9f1b2d4b4f406b96542fbf1b2343eeaae95765861be549a617f02662cb1b6f4144e4c606e63f4243e51bab31bcdb0ce52c6945d1b9db07cd1bf490ef4e972a20dd4c3ff18611f1d66bfe4fbe2e62ffd8669f1bd29863835fbc5b4c80ff9f4b8d4d255a8e3db2d96c2d9d1b5b09179bbd6c07351bc777dd1baf9d42291b62c1912385cded431bc31b66f50f864a0fffffff", + "cborBytes": [ + 216, 127, 159, 65, 190, 27, 91, 215, 100, 215, 252, 236, 78, 143, 159, 27, 45, 75, 79, 64, 107, 150, 84, 47, 191, + 27, 35, 67, 238, 170, 233, 87, 101, 134, 27, 229, 73, 166, 23, 240, 38, 98, 203, 27, 111, 65, 68, 228, 198, 6, + 230, 63, 66, 67, 229, 27, 171, 49, 188, 219, 12, 229, 44, 105, 69, 209, 185, 219, 7, 205, 27, 244, 144, 239, 78, + 151, 42, 32, 221, 76, 63, 241, 134, 17, 241, 214, 107, 254, 79, 190, 46, 98, 255, 216, 102, 159, 27, 210, 152, 99, + 131, 95, 188, 91, 76, 128, 255, 159, 75, 141, 77, 37, 90, 142, 61, 178, 217, 108, 45, 157, 27, 91, 9, 23, 155, + 189, 108, 7, 53, 27, 199, 119, 221, 27, 175, 157, 66, 41, 27, 98, 193, 145, 35, 133, 205, 237, 67, 27, 195, 27, + 102, 245, 15, 134, 74, 15, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3005, + "sample": { + "_tag": "ByteArray", + "bytearray": "fefafe90" + }, + "cborHex": "44fefafe90", + "cborBytes": [68, 254, 250, 254, 144], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3006, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18285018809670371468" + } + }, + "cborHex": "1bfdc16fbaadbd088c", + "cborBytes": [27, 253, 193, 111, 186, 173, 189, 8, 140], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3007, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0713" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6450356218845740164" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29235d920e961048" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38103d4bd3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18323f" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "12af709251dfc0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89497eda28" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c906" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c39e42e737eeeaae5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9ef92" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14699623977697347160" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "313b7bff07b322" + } + } + ] + } + } + ] + }, + "cborHex": "bf420713bf1b598444ce3b083c844829235d920e9610484538103d4bd34318323fff4712af709251dfc0044589497eda28a042c906497c39e42e737eeeaae543d9ef921bcbff8e203277065841ecbf1bffffffffffffffed47313b7bff07b322ffff", + "cborBytes": [ + 191, 66, 7, 19, 191, 27, 89, 132, 68, 206, 59, 8, 60, 132, 72, 41, 35, 93, 146, 14, 150, 16, 72, 69, 56, 16, 61, + 75, 211, 67, 24, 50, 63, 255, 71, 18, 175, 112, 146, 81, 223, 192, 4, 69, 137, 73, 126, 218, 40, 160, 66, 201, 6, + 73, 124, 57, 228, 46, 115, 126, 238, 170, 229, 67, 217, 239, 146, 27, 203, 255, 142, 32, 50, 119, 6, 88, 65, 236, + 191, 27, 255, 255, 255, 255, 255, 255, 255, 237, 71, 49, 59, 123, 255, 7, 179, 34, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3008, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11732752493229441310" + } + }, + "cborHex": "1ba2d31c3ad485011e", + "cborBytes": [27, 162, 211, 28, 58, 212, 133, 1, 30], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3009, + "sample": { + "_tag": "ByteArray", + "bytearray": "19eb" + }, + "cborHex": "4219eb", + "cborBytes": [66, 25, 235], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3010, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2621506494426458865" + } + }, + "cborHex": "1b2461764470ab2af1", + "cborBytes": [27, 36, 97, 118, 68, 112, 171, 42, 241], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3011, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e50bb07ca3cdd" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41102b6d0baeaa16e0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50767565aa3952" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "685de81062e535e4a36e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74f329f434" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c80f36aa7f33e9198561" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4290155849112853452" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15601860895089814795" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12004368671091695628" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf471e50bb07ca3cdd804941102b6d0baeaa16e04750767565aa39524a685de81062e535e4a36e4574f329f4344ac80f36aa7f33e9198561bf1b3b89b203b96f9bcc41f41bd884f1d266e2ed0b1ba69815b4593fa00cffff", + "cborBytes": [ + 191, 71, 30, 80, 187, 7, 202, 60, 221, 128, 73, 65, 16, 43, 109, 11, 174, 170, 22, 224, 71, 80, 118, 117, 101, + 170, 57, 82, 74, 104, 93, 232, 16, 98, 229, 53, 228, 163, 110, 69, 116, 243, 41, 244, 52, 74, 200, 15, 54, 170, + 127, 51, 233, 25, 133, 97, 191, 27, 59, 137, 178, 3, 185, 111, 155, 204, 65, 244, 27, 216, 132, 241, 210, 102, + 226, 237, 11, 27, 166, 152, 21, 180, 89, 63, 160, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3012, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4357676695782145181" + }, + "fields": [] + }, + "cborHex": "d8669f1b3c7993ddea17bc9d80ff", + "cborBytes": [216, 102, 159, 27, 60, 121, 147, 221, 234, 23, 188, 157, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3013, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d2278026" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12457077078265708176" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14556816672134499818" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4029261443550226942" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b70ab78ae98489d7" + }, + { + "_tag": "ByteArray", + "bytearray": "36324337ca42" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14553721281988496970" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3c1b9637" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14728709946016540974" + } + } + ] + }, + "cborHex": "9f44d22780261bace06d9a2db03e9041f0d8669f1bca0433a3530f8dea9f9f1b37eacfef59fd29fe48b70ab78ae98489d74636324337ca42ff1bc9f93465a4f78e4a443c1b9637ffff1bcc66e3a8ec14292eff", + "cborBytes": [ + 159, 68, 210, 39, 128, 38, 27, 172, 224, 109, 154, 45, 176, 62, 144, 65, 240, 216, 102, 159, 27, 202, 4, 51, 163, + 83, 15, 141, 234, 159, 159, 27, 55, 234, 207, 239, 89, 253, 41, 254, 72, 183, 10, 183, 138, 233, 132, 137, 215, + 70, 54, 50, 67, 55, 202, 66, 255, 27, 201, 249, 52, 101, 164, 247, 142, 74, 68, 60, 27, 150, 55, 255, 255, 27, + 204, 102, 227, 168, 236, 20, 41, 46, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3014, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4458444607652400936" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6231133507383695412" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4621014600826813294" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8415147422792272532" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9636004805716809737" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f1387" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10308962553888664698" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4" + } + } + ] + }, + "cborHex": "bf1b3ddf93bfb1e08f28d8669f1b56796ee937a3983480ff1b4021244bd82cfb6e1b74c89bfee413ca941b85b9f7512ab51809432f13871b8f10cad2d3566c7a41b4ff", + "cborBytes": [ + 191, 27, 61, 223, 147, 191, 177, 224, 143, 40, 216, 102, 159, 27, 86, 121, 110, 233, 55, 163, 152, 52, 128, 255, + 27, 64, 33, 36, 75, 216, 44, 251, 110, 27, 116, 200, 155, 254, 228, 19, 202, 148, 27, 133, 185, 247, 81, 42, 181, + 24, 9, 67, 47, 19, 135, 27, 143, 16, 202, 210, 211, 86, 108, 122, 65, 180, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3015, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d039e95de60" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4223740586206376522" + } + }, + { + "_tag": "ByteArray", + "bytearray": "514ded0d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa2e9cd49ef3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12384604237318241744" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbe6fd6d5dc3ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1037488822980613839" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f65755b5895e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1122139388346977168" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "889c11a8" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9311fe9535b13d5dc83" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2517216533463205583" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6f3f0bc48" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7950262194485202935" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8565" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9726957822912864356" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15126756312480382819" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10445569971609359592" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9607034618737094880" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12990885466348783482" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc1c4ac9e733d29b30768a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16466463440607501708" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8479e1d48662a5b075f9" + } + } + ] + } + } + ] + }, + "cborHex": "bf462d039e95de609f1b3a9dbdaf503b324a44514ded0dff46aa2e9cd49ef3d8669f1babdef3eff926bdd080ff47dbe6fd6d5dc3ea1b0e65e696703296cf46f65755b5895ebf1b0f92a3d40ee54b9044889c11a8ff4af9311fe9535b13d5dc83bf1b22eef319b3d086cf45b6f3f0bc481b6e550157f5820ff74285651b86fd189ab3eda0641bd1ed08b8a14a7f631b90f61e8bd24354e81b85530b15e2b470e01bb448e580c381077a4bbc1c4ac9e733d29b30768a1be484a141945ddd8c4a8479e1d48662a5b075f9ffff", + "cborBytes": [ + 191, 70, 45, 3, 158, 149, 222, 96, 159, 27, 58, 157, 189, 175, 80, 59, 50, 74, 68, 81, 77, 237, 13, 255, 70, 170, + 46, 156, 212, 158, 243, 216, 102, 159, 27, 171, 222, 243, 239, 249, 38, 189, 208, 128, 255, 71, 219, 230, 253, + 109, 93, 195, 234, 27, 14, 101, 230, 150, 112, 50, 150, 207, 70, 246, 87, 85, 181, 137, 94, 191, 27, 15, 146, 163, + 212, 14, 229, 75, 144, 68, 136, 156, 17, 168, 255, 74, 249, 49, 31, 233, 83, 91, 19, 213, 220, 131, 191, 27, 34, + 238, 243, 25, 179, 208, 134, 207, 69, 182, 243, 240, 188, 72, 27, 110, 85, 1, 87, 245, 130, 15, 247, 66, 133, 101, + 27, 134, 253, 24, 154, 179, 237, 160, 100, 27, 209, 237, 8, 184, 161, 74, 127, 99, 27, 144, 246, 30, 139, 210, 67, + 84, 232, 27, 133, 83, 11, 21, 226, 180, 112, 224, 27, 180, 72, 229, 128, 195, 129, 7, 122, 75, 188, 28, 74, 201, + 231, 51, 210, 155, 48, 118, 138, 27, 228, 132, 161, 65, 148, 93, 221, 140, 74, 132, 121, 225, 212, 134, 98, 165, + 176, 117, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3016, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8092183117384681359" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "86b16baebcfb68fcce96d1" + }, + { + "_tag": "ByteArray", + "bytearray": "d0458ddd" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "52a26fc17bed3349" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8250093013590995025" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b704d35abc920878f9f4b86b16baebcfb68fcce96d144d0458dddbf4852a26fc17bed33491b727e37e28f05f051ffffff", + "cborBytes": [ + 216, 102, 159, 27, 112, 77, 53, 171, 201, 32, 135, 143, 159, 75, 134, 177, 107, 174, 188, 251, 104, 252, 206, 150, + 209, 68, 208, 69, 141, 221, 191, 72, 82, 162, 111, 193, 123, 237, 51, 73, 27, 114, 126, 55, 226, 143, 5, 240, 81, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3017, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "853482070379839801" + } + }, + "cborHex": "1b0bd82d6bcb27c139", + "cborBytes": [27, 11, 216, 45, 107, 203, 39, 193, 57], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3018, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10529814815473832935" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10379856163967958757" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0742cebeedcb375a7ed6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5178030174811824745" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4343279090681816807" + } + }, + { + "_tag": "ByteArray", + "bytearray": "38958123" + }, + { + "_tag": "ByteArray", + "bytearray": "222ec1d34380fbdf01968c7e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8499715464685689078" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6055496877516471235" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9470374567466689909" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "685f4d892da3732c745f" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be595073f49dc03443aab6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7158150835254580621" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67c68d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b92216ac90af693e79f1b900ca82fb0f57ee59f4a0742cebeedcb375a7ed6d8669f1b47dc0f0275e9a2699f1b3c466d524078a6e744389581234c222ec1d34380fbdf01968c7e1b75f50e2e847c18f61b54097253a2db3bc3ffff1b836d877e2fbee575ff4a685f4d892da3732c745f80bf104bbe595073f49dc03443aab61bffffffffffffffeb1b6356dc425803d58d4367c68d13ffffff", + "cborBytes": [ + 216, 102, 159, 27, 146, 33, 106, 201, 10, 246, 147, 231, 159, 27, 144, 12, 168, 47, 176, 245, 126, 229, 159, 74, + 7, 66, 206, 190, 237, 203, 55, 90, 126, 214, 216, 102, 159, 27, 71, 220, 15, 2, 117, 233, 162, 105, 159, 27, 60, + 70, 109, 82, 64, 120, 166, 231, 68, 56, 149, 129, 35, 76, 34, 46, 193, 211, 67, 128, 251, 223, 1, 150, 140, 126, + 27, 117, 245, 14, 46, 132, 124, 24, 246, 27, 84, 9, 114, 83, 162, 219, 59, 195, 255, 255, 27, 131, 109, 135, 126, + 47, 190, 229, 117, 255, 74, 104, 95, 77, 137, 45, 163, 115, 44, 116, 95, 128, 191, 16, 75, 190, 89, 80, 115, 244, + 157, 192, 52, 67, 170, 182, 27, 255, 255, 255, 255, 255, 255, 255, 235, 27, 99, 86, 220, 66, 88, 3, 213, 141, 67, + 103, 198, 141, 19, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3019, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16866770698692069442" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5516dfff7d257c6a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4396001087330755542" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f23a5538f00c40" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18350652788317176414" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6757375971614827519" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9451ea2d79a6" + }, + { + "_tag": "ByteArray", + "bytearray": "50f967" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f32fdc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "135550627263668677" + } + } + } + ] + }, + "cborHex": "bf1bea12ce9623820842485516dfff7d257c6a4152d8669f1b3d01bbb2aa94a3d680ff47f23a5538f00c40d8669f1bfeaa9d7c2c2d425e9f1b5dc705a4e1dca3ff469451ea2d79a64350f967ffff43f32fdc1b01e19293cb21e1c5ff", + "cborBytes": [ + 191, 27, 234, 18, 206, 150, 35, 130, 8, 66, 72, 85, 22, 223, 255, 125, 37, 124, 106, 65, 82, 216, 102, 159, 27, + 61, 1, 187, 178, 170, 148, 163, 214, 128, 255, 71, 242, 58, 85, 56, 240, 12, 64, 216, 102, 159, 27, 254, 170, 157, + 124, 44, 45, 66, 94, 159, 27, 93, 199, 5, 164, 225, 220, 163, 255, 70, 148, 81, 234, 45, 121, 166, 67, 80, 249, + 103, 255, 255, 67, 243, 47, 220, 27, 1, 225, 146, 147, 203, 33, 225, 197, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3020, + "sample": { + "_tag": "ByteArray", + "bytearray": "e77ec285451fb1" + }, + "cborHex": "47e77ec285451fb1", + "cborBytes": [71, 231, 126, 194, 133, 69, 31, 177], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3021, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7ac1d21" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db7071c84a29b7e5750d8a" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10655544340174347955" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3266793634927068675" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ffff4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14411099481998777627" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6862470725536654869" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "955d9b5c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38bbbe1b2b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca7ba0b61499835ffb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15695433781906147096" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14676095822326549201" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16259215919190621139" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2905936654925565188" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "59031bc82dd6e87a00e3bad5" + }, + { + "_tag": "ByteArray", + "bytearray": "873eef95" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf44c7ac1d214bdb7071c84a29b7e5750d8affffd8669f1b93e0191f34841eb39fbf1b2d55fb80b455c603434ffff41bc7fe82a0275a5d1b1b5f3c64c41521261544955d9b5c4538bbbe1b2b49ca7ba0b61499835ffb1bd9d161ddde2e8718ff1bcbabf764a35e4ad11be1a456bbc5bbbbd31b2853f5fdc8a00d049f4c59031bc82dd6e87a00e3bad544873eef95ffffffff", + "cborBytes": [ + 159, 159, 191, 68, 199, 172, 29, 33, 75, 219, 112, 113, 200, 74, 41, 183, 229, 117, 13, 138, 255, 255, 216, 102, + 159, 27, 147, 224, 25, 31, 52, 132, 30, 179, 159, 191, 27, 45, 85, 251, 128, 180, 85, 198, 3, 67, 79, 255, 244, + 27, 199, 254, 130, 160, 39, 90, 93, 27, 27, 95, 60, 100, 196, 21, 33, 38, 21, 68, 149, 93, 155, 92, 69, 56, 187, + 190, 27, 43, 73, 202, 123, 160, 182, 20, 153, 131, 95, 251, 27, 217, 209, 97, 221, 222, 46, 135, 24, 255, 27, 203, + 171, 247, 100, 163, 94, 74, 209, 27, 225, 164, 86, 187, 197, 187, 187, 211, 27, 40, 83, 245, 253, 200, 160, 13, 4, + 159, 76, 89, 3, 27, 200, 45, 214, 232, 122, 0, 227, 186, 213, 68, 135, 62, 239, 149, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3022, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10189364523136358668" + } + }, + "cborHex": "1b8d67e50c5882990c", + "cborBytes": [27, 141, 103, 229, 12, 88, 130, 153, 12], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3023, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "94cc3fd7af" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5e" + }, + { + "_tag": "ByteArray", + "bytearray": "d85b249f2fb21e7cfa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2787108018764144542" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10000581514210535259" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "53" + }, + { + "_tag": "ByteArray", + "bytearray": "b27900" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5210682174884953177" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3687435263040409245" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2001072282164528685" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f4594cc3fd7af9f9f415e49d85b249f2fb21e7cfa141b26adcbf9f1145f9effd8669f1b8ac933e6dddb675b9f415343b279001b48500fd4a77a3c591b332c66d5b9c5ce9dffffffd8669f1b1bc53ca3744c062d80ff9f4103d9050580ff80ff", + "cborBytes": [ + 159, 69, 148, 204, 63, 215, 175, 159, 159, 65, 94, 73, 216, 91, 36, 159, 47, 178, 30, 124, 250, 20, 27, 38, 173, + 203, 249, 241, 20, 95, 158, 255, 216, 102, 159, 27, 138, 201, 51, 230, 221, 219, 103, 91, 159, 65, 83, 67, 178, + 121, 0, 27, 72, 80, 15, 212, 167, 122, 60, 89, 27, 51, 44, 102, 213, 185, 197, 206, 157, 255, 255, 255, 216, 102, + 159, 27, 27, 197, 60, 163, 116, 76, 6, 45, 128, 255, 159, 65, 3, 217, 5, 5, 128, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3024, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16504649828856279219" + }, + "fields": [] + }, + "cborHex": "d8669f1be50c4b92ef30b0b380ff", + "cborBytes": [216, 102, 159, 27, 229, 12, 75, 146, 239, 48, 176, 179, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3025, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14789380038981975457" + } + }, + "cborHex": "1bcd3e6ec9b7c5fda1", + "cborBytes": [27, 205, 62, 110, 201, 183, 197, 253, 161], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3026, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "459944396250275427" + } + }, + "cborHex": "1b06620cfdd2edde63", + "cborBytes": [27, 6, 98, 12, 253, 210, 237, 222, 99], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3027, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17709306477623509256" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10088252726256275498" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3170582275684585003" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9794169101661677854" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55604935499359f117bcf7" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ead7937f338833de58f5b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d354" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e858e34e" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bf5c41869d94601089f1b8c00ac6798df102a1b2c002bc801544e2b1b87ebe0e7fea6a91e4b55604935499359f117bcf7ff4b7ead7937f338833de58f5bbf42d35444e858e34effff", + "cborBytes": [ + 191, 27, 245, 196, 24, 105, 217, 70, 1, 8, 159, 27, 140, 0, 172, 103, 152, 223, 16, 42, 27, 44, 0, 43, 200, 1, 84, + 78, 43, 27, 135, 235, 224, 231, 254, 166, 169, 30, 75, 85, 96, 73, 53, 73, 147, 89, 241, 23, 188, 247, 255, 75, + 126, 173, 121, 55, 243, 56, 131, 61, 229, 143, 91, 191, 66, 211, 84, 68, 232, 88, 227, 78, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3028, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9937062863301967451" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf0b41f21b89e78a067dd6fe5b80ff", + "cborBytes": [191, 11, 65, 242, 27, 137, 231, 138, 6, 125, 214, 254, 91, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3029, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5b7f" + } + ] + }, + "cborHex": "9f425b7fff", + "cborBytes": [159, 66, 91, 127, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3030, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12465110212810723935" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14516568060831669912" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13834767299724651520" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15673446610554883050" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17391421160698592055" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1bacfcf7b210ad525f41181bc97535bd3fa71e981bbffef78f32472c001bd98344a69c2c8bea1bf15abd66e6a6bb37ffff", + "cborBytes": [ + 159, 191, 27, 172, 252, 247, 178, 16, 173, 82, 95, 65, 24, 27, 201, 117, 53, 189, 63, 167, 30, 152, 27, 191, 254, + 247, 143, 50, 71, 44, 0, 27, 217, 131, 68, 166, 156, 44, 139, 234, 27, 241, 90, 189, 102, 230, 166, 187, 55, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3031, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1990523587904776829" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2523" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11669614778827759870" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bc79" + }, + { + "_tag": "ByteArray", + "bytearray": "6933f0a1ab6576" + }, + { + "_tag": "ByteArray", + "bytearray": "1c1f710bbd6ed2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4148022685469570181" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1b9fc2a82e19aa7d4225231ba1f2ccd025ad60fe9f42bc79476933f0a1ab6576471c1f710bbd6ed21b3990bca7bfacf485ffff", + "cborBytes": [ + 191, 27, 27, 159, 194, 168, 46, 25, 170, 125, 66, 37, 35, 27, 161, 242, 204, 208, 37, 173, 96, 254, 159, 66, 188, + 121, 71, 105, 51, 240, 161, 171, 101, 118, 71, 28, 31, 113, 11, 189, 110, 210, 27, 57, 144, 188, 167, 191, 172, + 244, 133, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3032, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8799fa0ff", + "cborBytes": [216, 121, 159, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3033, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e6129b99" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7902654923503128236" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2945ef74c2efdb68a5e4" + }, + { + "_tag": "ByteArray", + "bytearray": "2f6c" + } + ] + }, + "cborHex": "9f44e6129b991b6dabdec869e54eac4a2945ef74c2efdb68a5e4422f6cff", + "cborBytes": [ + 159, 68, 230, 18, 155, 153, 27, 109, 171, 222, 200, 105, 229, 78, 172, 74, 41, 69, 239, 116, 194, 239, 219, 104, + 165, 228, 66, 47, 108, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3034, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13165824511000607888" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1bb6b667a321527c90a0ff", + "cborBytes": [191, 27, 182, 182, 103, 163, 33, 82, 124, 144, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3035, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0655" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a7e1bbc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d3755065cdecb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69" + } + } + ] + } + ] + }, + "cborHex": "9fbf420655447a7e1bbc473d3755065cdecb4169ffff", + "cborBytes": [159, 191, 66, 6, 85, 68, 122, 126, 27, 188, 71, 61, 55, 85, 6, 92, 222, 203, 65, 105, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3036, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1438295930695607271" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0703ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11422975683494041444" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5de0f5e0f9c3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11337357909440944526" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8fb02" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2046547601023629184" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1457113162369633859" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01a5ec36b5058eba86df" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18395403436785297733" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4463f1798509fabc6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5984668694147075854" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5c8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10539962377748328186" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6680686848183915149" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15455266214040300845" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "baca56ead0" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3052436248767819540" + } + } + } + ] + }, + "cborHex": "bf0a1bfffffffffffffff60bbf064207fc1b13f5da874f0063e7430703ff1b9e868fdcd4965764465de0f5e0f9c31bffffffffffffffed1b9d5662f363b1598e1bfffffffffffffff243b8fb02ff1b1c66cc3336f0f780bf1b1438b4b378968e434a01a5ec36b5058eba86dfff1bff4999f67596694549c4463f1798509fabc61bfffffffffffffff4bf1b530dd0781d098f0e42e5c81b924577f07fabaefa1b5cb6914ae9a0528d1bd67c22bc74f7ed2d45baca56ead0ff1bfffffffffffffffe1b2a5c6e988354ef14ff", + "cborBytes": [ + 191, 10, 27, 255, 255, 255, 255, 255, 255, 255, 246, 11, 191, 6, 66, 7, 252, 27, 19, 245, 218, 135, 79, 0, 99, + 231, 67, 7, 3, 255, 27, 158, 134, 143, 220, 212, 150, 87, 100, 70, 93, 224, 245, 224, 249, 195, 27, 255, 255, 255, + 255, 255, 255, 255, 237, 27, 157, 86, 98, 243, 99, 177, 89, 142, 27, 255, 255, 255, 255, 255, 255, 255, 242, 67, + 184, 251, 2, 255, 27, 28, 102, 204, 51, 54, 240, 247, 128, 191, 27, 20, 56, 180, 179, 120, 150, 142, 67, 74, 1, + 165, 236, 54, 181, 5, 142, 186, 134, 223, 255, 27, 255, 73, 153, 246, 117, 150, 105, 69, 73, 196, 70, 63, 23, 152, + 80, 159, 171, 198, 27, 255, 255, 255, 255, 255, 255, 255, 244, 191, 27, 83, 13, 208, 120, 29, 9, 143, 14, 66, 229, + 200, 27, 146, 69, 119, 240, 127, 171, 174, 250, 27, 92, 182, 145, 74, 233, 160, 82, 141, 27, 214, 124, 34, 188, + 116, 247, 237, 45, 69, 186, 202, 86, 234, 208, 255, 27, 255, 255, 255, 255, 255, 255, 255, 254, 27, 42, 92, 110, + 152, 131, 84, 239, 20, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3037, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "586769675982956272" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c25da70c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5626827207283785687" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8233787430297771490" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6734776232683368452" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15c056" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9835195226505128975" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9844090389723684485" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13095011944367246975" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15997987240574457730" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90eb21b05de53e78434bed" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12082432356573065138" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0124936049ae30429a630b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3662293817571649322" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9148800969805472829" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d4" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c437ca259a598dee" + }, + { + "_tag": "ByteArray", + "bytearray": "9500f6f4" + }, + { + "_tag": "ByteArray", + "bytearray": "a4" + } + ] + } + ] + }, + "cborHex": "d905049fbf1b08249fe955ef66f044c25da70c1b4e16818866a73fd71b72444a0b1af99de21b5d76bb4d1ed5f0044315c0561b887da1f30c74ac0f1b889d3c0da0511e851bb5bad3fba981ce7f418c1bde0444a263ac17824b90eb21b05de53e78434bedffd8669f1ba7ad6c367c392fb29f4b0124936049ae30429a630bd8669f1b32d314d2cb77a72a9f1b7ef712027601243d41d4ffff48c437ca259a598dee449500f6f441a4ffffff", + "cborBytes": [ + 217, 5, 4, 159, 191, 27, 8, 36, 159, 233, 85, 239, 102, 240, 68, 194, 93, 167, 12, 27, 78, 22, 129, 136, 102, 167, + 63, 215, 27, 114, 68, 74, 11, 26, 249, 157, 226, 27, 93, 118, 187, 77, 30, 213, 240, 4, 67, 21, 192, 86, 27, 136, + 125, 161, 243, 12, 116, 172, 15, 27, 136, 157, 60, 13, 160, 81, 30, 133, 27, 181, 186, 211, 251, 169, 129, 206, + 127, 65, 140, 27, 222, 4, 68, 162, 99, 172, 23, 130, 75, 144, 235, 33, 176, 93, 229, 62, 120, 67, 75, 237, 255, + 216, 102, 159, 27, 167, 173, 108, 54, 124, 57, 47, 178, 159, 75, 1, 36, 147, 96, 73, 174, 48, 66, 154, 99, 11, + 216, 102, 159, 27, 50, 211, 20, 210, 203, 119, 167, 42, 159, 27, 126, 247, 18, 2, 118, 1, 36, 61, 65, 212, 255, + 255, 72, 196, 55, 202, 37, 154, 89, 141, 238, 68, 149, 0, 246, 244, 65, 164, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3038, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9441651412417988576" + } + }, + "cborHex": "1b83077bef823d47e0", + "cborBytes": [27, 131, 7, 123, 239, 130, 61, 71, 224], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3039, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8381350291927072894" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6187863902961535369" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6902788555568968244" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6118697021747432919" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9854172737445926140" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3701456600737850267" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4071269455962528505" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5907671015288830263" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9684105792102461726" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8623800064925401343" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28a4e8c57282516224963e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14144694010296453333" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1051413177729846438" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17319157017410564890" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c020" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b745089af286e007e9f1b55dfb56f5e7c09891b5fcba19e6651f234a0ffffd87b9f1b54e9fa85e57f0dd71b88c10de522cd94fcbf1b335e372ace81239b1b38800dffeb8b5af91b51fc437cfc2979371b8664dae8c991f11e1b77ade477dbde80ff4b28a4e8c57282516224963e1bc44c0c42b450c8d51b0e975eb6eac08ca61bf05a018be7f8731a42c020ffff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 116, 80, 137, 175, 40, 110, 0, 126, 159, 27, 85, 223, 181, 111, 94, 124, 9, 137, 27, 95, + 203, 161, 158, 102, 81, 242, 52, 160, 255, 255, 216, 123, 159, 27, 84, 233, 250, 133, 229, 127, 13, 215, 27, 136, + 193, 13, 229, 34, 205, 148, 252, 191, 27, 51, 94, 55, 42, 206, 129, 35, 155, 27, 56, 128, 13, 255, 235, 139, 90, + 249, 27, 81, 252, 67, 124, 252, 41, 121, 55, 27, 134, 100, 218, 232, 201, 145, 241, 30, 27, 119, 173, 228, 119, + 219, 222, 128, 255, 75, 40, 164, 232, 197, 114, 130, 81, 98, 36, 150, 62, 27, 196, 76, 12, 66, 180, 80, 200, 213, + 27, 14, 151, 94, 182, 234, 192, 140, 166, 27, 240, 90, 1, 139, 231, 248, 115, 26, 66, 192, 32, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3040, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d0fce37870c3318c81b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4092610147179529446" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a286010df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4ddf8baa5fa4a7d17" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b19" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb7fd5c0e8ddcd12d2b6d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1fd732f60" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f504e51963874d931b8a85b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11728825916254802331" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8913664b4470958d752fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98c0acd0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf4ade657fd47f261027" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "862fdcb2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d29cfe15d1e6a4ccaa705c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3372718332f97042" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ba3997a62ffce4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c06f80bec7e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7859253173186922034" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb18323179" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5c2d8cfe98f4823b074" + } + } + ] + } + ] + }, + "cborHex": "d9050d9fbf4a0d0fce37870c3318c81b1b38cbdf3ecacb84e6452a286010df410149a4ddf8baa5fa4a7d17422b1941f741704bfb7fd5c0e8ddcd12d2b6d445e1fd732f60ffbf4c2f504e51963874d931b8a85b1ba2c5290762c3519b4ba8913664b4470958d752fe4498c0acd04abf4ade657fd47f26102744862fdcb24bd29cfe15d1e6a4ccaa705c483372718332f97042ff8047ba3997a62ffce4bf46c06f80bec7e21b6d11ad1ef3ab063245cb183231794af5c2d8cfe98f4823b074ffff", + "cborBytes": [ + 217, 5, 13, 159, 191, 74, 13, 15, 206, 55, 135, 12, 51, 24, 200, 27, 27, 56, 203, 223, 62, 202, 203, 132, 230, 69, + 42, 40, 96, 16, 223, 65, 1, 73, 164, 221, 248, 186, 165, 250, 74, 125, 23, 66, 43, 25, 65, 247, 65, 112, 75, 251, + 127, 213, 192, 232, 221, 205, 18, 210, 182, 212, 69, 225, 253, 115, 47, 96, 255, 191, 76, 47, 80, 78, 81, 150, 56, + 116, 217, 49, 184, 168, 91, 27, 162, 197, 41, 7, 98, 195, 81, 155, 75, 168, 145, 54, 100, 180, 71, 9, 88, 215, 82, + 254, 68, 152, 192, 172, 208, 74, 191, 74, 222, 101, 127, 212, 127, 38, 16, 39, 68, 134, 47, 220, 178, 75, 210, + 156, 254, 21, 209, 230, 164, 204, 170, 112, 92, 72, 51, 114, 113, 131, 50, 249, 112, 66, 255, 128, 71, 186, 57, + 151, 166, 47, 252, 228, 191, 70, 192, 111, 128, 190, 199, 226, 27, 109, 17, 173, 30, 243, 171, 6, 50, 69, 203, 24, + 50, 49, 121, 74, 245, 194, 216, 207, 233, 143, 72, 35, 176, 116, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3041, + "sample": { + "_tag": "ByteArray", + "bytearray": "5750391ec08996" + }, + "cborHex": "475750391ec08996", + "cborBytes": [71, 87, 80, 57, 30, 192, 137, 150], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3042, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5364983115972131251" + } + }, + "cborHex": "1b4a743fb8157cb9b3", + "cborBytes": [27, 74, 116, 63, 184, 21, 124, 185, 179], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3043, + "sample": { + "_tag": "ByteArray", + "bytearray": "e0a2939038fc07" + }, + "cborHex": "47e0a2939038fc07", + "cborBytes": [71, 224, 162, 147, 144, 56, 252, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3044, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a577773b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2fa" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf410544a577773b42e2fa80ff", + "cborBytes": [191, 65, 5, 68, 165, 119, 119, 59, 66, 226, 250, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3045, + "sample": { + "_tag": "ByteArray", + "bytearray": "beeecbc5564b64f7" + }, + "cborHex": "48beeecbc5564b64f7", + "cborBytes": [72, 190, 238, 203, 197, 86, 75, 100, 247], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3046, + "sample": { + "_tag": "ByteArray", + "bytearray": "63fc7948cf41" + }, + "cborHex": "4663fc7948cf41", + "cborBytes": [70, 99, 252, 121, 72, 207, 65], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3047, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5000472758785520865" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6eaa9f8cdc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8691078394580348430" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16966582615815168996" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa201a99" + }, + { + "_tag": "ByteArray", + "bytearray": "51f642" + }, + { + "_tag": "ByteArray", + "bytearray": "07f80241309bdab952957a2f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2582522455111363534" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18000412016628674869" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90849a89" + } + } + ] + }, + "cborHex": "bf1b45653f7b006db4e1456eaa9f8cdc1b789ce9c0a808ae0ea01beb7568ff0bfb23e49f44fa201a994351f6424c07f80241309bdab952957a2f1b23d6f67d7961ebceff1bf9ce4f5bddd331354490849a89ff", + "cborBytes": [ + 191, 27, 69, 101, 63, 123, 0, 109, 180, 225, 69, 110, 170, 159, 140, 220, 27, 120, 156, 233, 192, 168, 8, 174, 14, + 160, 27, 235, 117, 104, 255, 11, 251, 35, 228, 159, 68, 250, 32, 26, 153, 67, 81, 246, 66, 76, 7, 248, 2, 65, 48, + 155, 218, 185, 82, 149, 122, 47, 27, 35, 214, 246, 125, 121, 97, 235, 206, 255, 27, 249, 206, 79, 91, 221, 211, + 49, 53, 68, 144, 132, 154, 137, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3048, + "sample": { + "_tag": "ByteArray", + "bytearray": "af05" + }, + "cborHex": "42af05", + "cborBytes": [66, 175, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3049, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8058898f34" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "833015720418500754" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12098775355382489193" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9568986762453368567" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2174839296341730670" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe10d2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5472977978932764803" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e8f539ba0d53daf88" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15870325048996861547" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1314472993884877925" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2578a35b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5931e2c" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "00279d9758" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1906492677569318836" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d752e43e038d1e38" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16662130157710001149" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8ad7d0315e" + } + ] + } + ] + } + ] + }, + "cborHex": "9f458058898f349f1b0b8f77625bdc60929f1ba7e77c156ad2e069ffd8669f1b84cbdec30472bef780ffff9fbf1b1e2e94d13602656e43fe10d21b4bf3ec7989d2a083495e8f539ba0d53daf881bdc3eb88c2771166b1b123df2393b5a3465442578a35b44d5931e2cffff4500279d97589fd8669f1b1a7538fd3d670fb49f48d752e43e038d1e381be73bc71943a0c3fd458ad7d0315effffffff", + "cborBytes": [ + 159, 69, 128, 88, 137, 143, 52, 159, 27, 11, 143, 119, 98, 91, 220, 96, 146, 159, 27, 167, 231, 124, 21, 106, 210, + 224, 105, 255, 216, 102, 159, 27, 132, 203, 222, 195, 4, 114, 190, 247, 128, 255, 255, 159, 191, 27, 30, 46, 148, + 209, 54, 2, 101, 110, 67, 254, 16, 210, 27, 75, 243, 236, 121, 137, 210, 160, 131, 73, 94, 143, 83, 155, 160, 213, + 61, 175, 136, 27, 220, 62, 184, 140, 39, 113, 22, 107, 27, 18, 61, 242, 57, 59, 90, 52, 101, 68, 37, 120, 163, 91, + 68, 213, 147, 30, 44, 255, 255, 69, 0, 39, 157, 151, 88, 159, 216, 102, 159, 27, 26, 117, 56, 253, 61, 103, 15, + 180, 159, 72, 215, 82, 228, 62, 3, 141, 30, 56, 27, 231, 59, 199, 25, 67, 160, 195, 253, 69, 138, 215, 208, 49, + 94, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3050, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3146107704098096720" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8024595592838928290" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c314438ef0ea" + }, + { + "_tag": "ByteArray", + "bytearray": "4eeab5e13562a79f24" + }, + { + "_tag": "ByteArray", + "bytearray": "61fac44f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10979068838014852851" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18208114795530963599" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18283854263488302908" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c921479c569658294" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5437702151794719414" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d6a30d8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5824031308910324507" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6905087880827375865" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7625281568120892445" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6310384001725077199" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13493547651265675772" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2342ffb56e355998d3018064" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9725377799015249827" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ee6c013efbcb726e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8430769960193379042" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87ab2944df4dcb" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "121088780524963408" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0f4901cd69eb0a559" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6174806016210810702" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f1b2ba93849bfe3065080d8669f1b6f5d172cf15457a29f9f46c314438ef0ea494eeab5e13562a79f244461fac44f1b985d7cf0466f9ef3ff9f1bfcb037ef91284a8f1bfdbd4c94a43b4f3c498c921479c569658294ffbf1b4b76994c0019fab6446d6a30d81b50d31d9e505a6b1b1b5fd3ccd7c79210f91b69d2712f8c2dec1d1b5792fcd0d32196cf1bbb42b618d17f41fc4c2342ffb56e355998d3018064ff1b86f77b94b8c637a3ffff9f48ee6c013efbcb726ebf1b75001c9c545c4ae24787ab2944df4dcbffffd8669f1b01ae319ab579c6509f49c0f4901cd69eb0a5599f1b55b1515b3130b74effffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 27, 43, 169, 56, 73, 191, 227, 6, 80, 128, 216, + 102, 159, 27, 111, 93, 23, 44, 241, 84, 87, 162, 159, 159, 70, 195, 20, 67, 142, 240, 234, 73, 78, 234, 181, 225, + 53, 98, 167, 159, 36, 68, 97, 250, 196, 79, 27, 152, 93, 124, 240, 70, 111, 158, 243, 255, 159, 27, 252, 176, 55, + 239, 145, 40, 74, 143, 27, 253, 189, 76, 148, 164, 59, 79, 60, 73, 140, 146, 20, 121, 197, 105, 101, 130, 148, + 255, 191, 27, 75, 118, 153, 76, 0, 25, 250, 182, 68, 109, 106, 48, 216, 27, 80, 211, 29, 158, 80, 90, 107, 27, 27, + 95, 211, 204, 215, 199, 146, 16, 249, 27, 105, 210, 113, 47, 140, 45, 236, 29, 27, 87, 146, 252, 208, 211, 33, + 150, 207, 27, 187, 66, 182, 24, 209, 127, 65, 252, 76, 35, 66, 255, 181, 110, 53, 89, 152, 211, 1, 128, 100, 255, + 27, 134, 247, 123, 148, 184, 198, 55, 163, 255, 255, 159, 72, 238, 108, 1, 62, 251, 203, 114, 110, 191, 27, 117, + 0, 28, 156, 84, 92, 74, 226, 71, 135, 171, 41, 68, 223, 77, 203, 255, 255, 216, 102, 159, 27, 1, 174, 49, 154, + 181, 121, 198, 80, 159, 73, 192, 244, 144, 28, 214, 158, 176, 165, 89, 159, 27, 85, 177, 81, 91, 49, 48, 183, 78, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3051, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3328866622764522457" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a50484df0824a1cbae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6770360200243364927" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6762439575844772614" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11915411048709520023" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "857e47b5f7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17017439803967659874" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8630486341123977516" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf1b2e32828e6a889bd949a50484df0824a1cbae1b5df526bb30f2c43f1b5dd902f71d455b061ba55c0b37df187a9745857e47b5f71bec2a1756e615df621b77c5a599d98e312cffa0ff", + "cborBytes": [ + 159, 191, 27, 46, 50, 130, 142, 106, 136, 155, 217, 73, 165, 4, 132, 223, 8, 36, 161, 203, 174, 27, 93, 245, 38, + 187, 48, 242, 196, 63, 27, 93, 217, 2, 247, 29, 69, 91, 6, 27, 165, 92, 11, 55, 223, 24, 122, 151, 69, 133, 126, + 71, 181, 247, 27, 236, 42, 23, 86, 230, 21, 223, 98, 27, 119, 197, 165, 153, 217, 142, 49, 44, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3052, + "sample": { + "_tag": "ByteArray", + "bytearray": "a5d6" + }, + "cborHex": "42a5d6", + "cborBytes": [66, 165, 214], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3053, + "sample": { + "_tag": "ByteArray", + "bytearray": "fec5aa" + }, + "cborHex": "43fec5aa", + "cborBytes": [67, 254, 197, 170], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3054, + "sample": { + "_tag": "ByteArray", + "bytearray": "a3ff04" + }, + "cborHex": "43a3ff04", + "cborBytes": [67, 163, 255, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3055, + "sample": { + "_tag": "ByteArray", + "bytearray": "55dd80e7d0bab99e0cc8" + }, + "cborHex": "4a55dd80e7d0bab99e0cc8", + "cborBytes": [74, 85, 221, 128, 231, 208, 186, 185, 158, 12, 200], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3056, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7691510576799903296" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3191983403889754542" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12198375541932014000" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3816904327324666322" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6da2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10884299718154611343" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17570225607808159113" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11212013583945056058" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9699893801884982589" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13637148478982991929" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efc2d568cf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15473451430388685474" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8407343421409056331" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1427030122024378316" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4194005823334507901" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7636124354791840822" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5690868505148710422" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7589802339646140757" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7456785110885822353" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ab6de810" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3147049599232512692" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16998684515714992898" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14859153579874583067" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16093527742106934498" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dcf7" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6abdbc1e44516e409fbf1b2c4c33fe75ca81ae1ba94955ecf5abb9b01b34f85e434bd689d2426da21b970ccced197d6a8f1bf3d5fb1968e08d891b9b9912f367e63f3a1b869cf205445e1d3d1bbd40e249f70a303945efc2d568cf1bd6bcbe181593daa21b74ace24c39cdd64bffd8669f1b13cdd455d30b9fcc9f1b3a341a1355c5e57d9f1b69f8f6a48c139c361b4efa06c100d8de161b69546503f20971551b677bd28cf4c56f91ff44ab6de810ffffbf1b2bac90efccca12b41bebe7758110200b021bce3651742766021b41201bdf57b236db2d9ce242dcf7ffffff", + "cborBytes": [ + 216, 102, 159, 27, 106, 189, 188, 30, 68, 81, 110, 64, 159, 191, 27, 44, 76, 51, 254, 117, 202, 129, 174, 27, 169, + 73, 85, 236, 245, 171, 185, 176, 27, 52, 248, 94, 67, 75, 214, 137, 210, 66, 109, 162, 27, 151, 12, 204, 237, 25, + 125, 106, 143, 27, 243, 213, 251, 25, 104, 224, 141, 137, 27, 155, 153, 18, 243, 103, 230, 63, 58, 27, 134, 156, + 242, 5, 68, 94, 29, 61, 27, 189, 64, 226, 73, 247, 10, 48, 57, 69, 239, 194, 213, 104, 207, 27, 214, 188, 190, 24, + 21, 147, 218, 162, 27, 116, 172, 226, 76, 57, 205, 214, 75, 255, 216, 102, 159, 27, 19, 205, 212, 85, 211, 11, + 159, 204, 159, 27, 58, 52, 26, 19, 85, 197, 229, 125, 159, 27, 105, 248, 246, 164, 140, 19, 156, 54, 27, 78, 250, + 6, 193, 0, 216, 222, 22, 27, 105, 84, 101, 3, 242, 9, 113, 85, 27, 103, 123, 210, 140, 244, 197, 111, 145, 255, + 68, 171, 109, 232, 16, 255, 255, 191, 27, 43, 172, 144, 239, 204, 202, 18, 180, 27, 235, 231, 117, 129, 16, 32, + 11, 2, 27, 206, 54, 81, 116, 39, 102, 2, 27, 65, 32, 27, 223, 87, 178, 54, 219, 45, 156, 226, 66, 220, 247, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3057, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "485fb93053" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4406929323031272843" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62572174206843b4b1738d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f33" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a5804bbb0c5edf73c5ced3e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8698775003616596827" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf45485fb930531b3d288eded1881d8b4b62572174206843b4b1738d427f334c9a5804bbb0c5edf73c5ced3e1b78b841c7179d535bffff", + "cborBytes": [ + 159, 191, 69, 72, 95, 185, 48, 83, 27, 61, 40, 142, 222, 209, 136, 29, 139, 75, 98, 87, 33, 116, 32, 104, 67, 180, + 177, 115, 141, 66, 127, 51, 76, 154, 88, 4, 187, 176, 197, 237, 247, 60, 92, 237, 62, 27, 120, 184, 65, 199, 23, + 157, 83, 91, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3058, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1745442673619387593" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1298391638509551831" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2412300710414246569" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10880145574091405014" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5311222669905148442" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "650957244048888372" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7402468979323719179" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3381ab281f86c0dab09385a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7839768857679072598" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12221659725082608611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6078930390486045040" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9084745616909613005" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dff31cb334dd314b9f" + }, + { + "_tag": "ByteArray", + "bytearray": "2e7c5c599fa4bbc9a03a" + } + ] + } + } + ] + }, + "cborHex": "bf1b18390edd28e444c9d8669f1b1204d050e8b300d79f1b217a36b717a9e2a91b96fe0ac11041b6d61b49b540e0d2b2ba1a1b0908aa2a1f805234ffff1b66bada5115704e0b4c3381ab281f86c0dab09385a51b6ccc743d3b218d56d8669f1ba99c0ec44f3f43e39f1b545cb2fb8b3f5170416c1b7e1380016aaf37cd49dff31cb334dd314b9f4a2e7c5c599fa4bbc9a03affffff", + "cborBytes": [ + 191, 27, 24, 57, 14, 221, 40, 228, 68, 201, 216, 102, 159, 27, 18, 4, 208, 80, 232, 179, 0, 215, 159, 27, 33, 122, + 54, 183, 23, 169, 226, 169, 27, 150, 254, 10, 193, 16, 65, 182, 214, 27, 73, 181, 64, 224, 210, 178, 186, 26, 27, + 9, 8, 170, 42, 31, 128, 82, 52, 255, 255, 27, 102, 186, 218, 81, 21, 112, 78, 11, 76, 51, 129, 171, 40, 31, 134, + 192, 218, 176, 147, 133, 165, 27, 108, 204, 116, 61, 59, 33, 141, 86, 216, 102, 159, 27, 169, 156, 14, 196, 79, + 63, 67, 227, 159, 27, 84, 92, 178, 251, 139, 63, 81, 112, 65, 108, 27, 126, 19, 128, 1, 106, 175, 55, 205, 73, + 223, 243, 28, 179, 52, 221, 49, 75, 159, 74, 46, 124, 92, 89, 159, 164, 187, 201, 160, 58, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3059, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3504658062943757877" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "20ca5589f814b023da9fb9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5918816781171484113" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2287" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15412518341013957541" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d70f8b957c4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "245dd9" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b30a30bf094f8a6359fbf4b20ca5589f814b023da9fb91b5223dc80d458e5d14222871bd5e443c5aa546ba546d70f8b957c4c43245dd9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 48, 163, 11, 240, 148, 248, 166, 53, 159, 191, 75, 32, 202, 85, 137, 248, 20, 176, 35, 218, + 159, 185, 27, 82, 35, 220, 128, 212, 88, 229, 209, 66, 34, 135, 27, 213, 228, 67, 197, 170, 84, 107, 165, 70, 215, + 15, 139, 149, 124, 76, 67, 36, 93, 217, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3060, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc5f113fb74c" + }, + "cborHex": "46fc5f113fb74c", + "cborBytes": [70, 252, 95, 17, 63, 183, 76], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3061, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8439590094808364705" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17114004bc2175120ebfe3d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10531974686752172807" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71049b4754c8edeb708cfe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bad179ddbf39792087d76b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87bdbc19779473e808d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c84439e7a989" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1658890416147904980" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d205b781" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0c8b71452" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b751f7279f2f536a19fbf4c17114004bc2175120ebfe3d01b9229172d4344eb074b71049b4754c8edeb708cfe4bbad179ddbf39792087d76b4a87bdbc19779473e808d446c84439e7a98941ab1b1705900b57cbb9d444d205b78145d0c8b71452ffffff", + "cborBytes": [ + 216, 102, 159, 27, 117, 31, 114, 121, 242, 245, 54, 161, 159, 191, 76, 23, 17, 64, 4, 188, 33, 117, 18, 14, 191, + 227, 208, 27, 146, 41, 23, 45, 67, 68, 235, 7, 75, 113, 4, 155, 71, 84, 200, 237, 235, 112, 140, 254, 75, 186, + 209, 121, 221, 191, 57, 121, 32, 135, 215, 107, 74, 135, 189, 188, 25, 119, 148, 115, 232, 8, 212, 70, 200, 68, + 57, 231, 169, 137, 65, 171, 27, 23, 5, 144, 11, 87, 203, 185, 212, 68, 210, 5, 183, 129, 69, 208, 200, 183, 20, + 82, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3062, + "sample": { + "_tag": "ByteArray", + "bytearray": "55fff90524" + }, + "cborHex": "4555fff90524", + "cborBytes": [69, 85, 255, 249, 5, 36], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3063, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "700026784859113225" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "911244" + }, + { + "_tag": "ByteArray", + "bytearray": "e9f01ad57b26" + }, + { + "_tag": "ByteArray", + "bytearray": "868714c8ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6233873607214802657" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12509210821737246882" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5102816288276869542" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23a03aa3143afe69e5bb23c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8086958201021732123" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9f277bca8db2f0f50fbc9f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "973812646502203638" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8696935954131282190" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5139014152953313589" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "319523716703533504" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10373073951255955419" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b364bf" + }, + { + "_tag": "ByteArray", + "bytearray": "445b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8803337341138632566" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e75b41c926ed" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16350721802274017261" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b09b6fea6e4c947099f4391124446e9f01ad57b2645868714c8ed1b56832b046cb8a6e11bad99a4f73a1ef0a2ff1b46d0d860d8d1f1a64c23a03aa3143afe69e5bb23c11b703aa5a32555151b9f4b9f277bca8db2f0f50fbc9f1b0d83ad71488c00f6ff1b78b1b92c0451690e9f1b47517224fa7cb9351b046f2d209f6d39c01b8ff48fccbd7807db43b364bf42445bff1b7a2bbcab707fff7646e75b41c926ed1be2e96ed96dc70feda0ff", + "cborBytes": [ + 191, 27, 9, 182, 254, 166, 228, 201, 71, 9, 159, 67, 145, 18, 68, 70, 233, 240, 26, 213, 123, 38, 69, 134, 135, + 20, 200, 237, 27, 86, 131, 43, 4, 108, 184, 166, 225, 27, 173, 153, 164, 247, 58, 30, 240, 162, 255, 27, 70, 208, + 216, 96, 216, 209, 241, 166, 76, 35, 160, 58, 163, 20, 58, 254, 105, 229, 187, 35, 193, 27, 112, 58, 165, 163, 37, + 85, 21, 27, 159, 75, 159, 39, 123, 202, 141, 178, 240, 245, 15, 188, 159, 27, 13, 131, 173, 113, 72, 140, 0, 246, + 255, 27, 120, 177, 185, 44, 4, 81, 105, 14, 159, 27, 71, 81, 114, 36, 250, 124, 185, 53, 27, 4, 111, 45, 32, 159, + 109, 57, 192, 27, 143, 244, 143, 204, 189, 120, 7, 219, 67, 179, 100, 191, 66, 68, 91, 255, 27, 122, 43, 188, 171, + 112, 127, 255, 118, 70, 231, 91, 65, 201, 38, 237, 27, 226, 233, 110, 217, 109, 199, 15, 237, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3064, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ffac04a20e716b30b874473d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18356229461492671796" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12999186288123971497" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11871087317643742788" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5313883372641412224" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7aa33bccab7d32c6d45a31a5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11443508570955620165" + } + }, + { + "_tag": "ByteArray", + "bytearray": "688c8105711fcd0989" + }, + { + "_tag": "ByteArray", + "bytearray": "e2d967" + } + ] + } + ] + } + ] + }, + "cborHex": "9f4cffac04a20e716b30b874473dd8669f1bfebe6d7093d4a5349f1bb466630e70c207a9d8669f1ba4be930509ccce449f1b49beb4c5f42564804c7aa33bccab7d32c6d45a31a51b9ecf826a3bf29f4549688c8105711fcd098943e2d967ffffffffff", + "cborBytes": [ + 159, 76, 255, 172, 4, 162, 14, 113, 107, 48, 184, 116, 71, 61, 216, 102, 159, 27, 254, 190, 109, 112, 147, 212, + 165, 52, 159, 27, 180, 102, 99, 14, 112, 194, 7, 169, 216, 102, 159, 27, 164, 190, 147, 5, 9, 204, 206, 68, 159, + 27, 73, 190, 180, 197, 244, 37, 100, 128, 76, 122, 163, 59, 204, 171, 125, 50, 198, 212, 90, 49, 165, 27, 158, + 207, 130, 106, 59, 242, 159, 69, 73, 104, 140, 129, 5, 113, 31, 205, 9, 137, 67, 226, 217, 103, 255, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3065, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16234921591108343644" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11892477240028093264" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "da2af193929ce5f9" + }, + { + "_tag": "ByteArray", + "bytearray": "29076c9b611ce31d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2799448393706546574" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ea81" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11507431962523218138" + } + }, + { + "_tag": "ByteArray", + "bytearray": "16931535867ddc587db733" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d64132803130eed7cb46d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12186246006719074528" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b8ca57c2095" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34a90b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f6c70269874b9e571a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10476366737168690071" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce455ba211b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d9ca612453cf9442450" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd8c755f151fc1ff945eb4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8282684064747500903" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfdfab7a7e84" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d75b34885ddd350e3b" + } + } + ] + } + ] + }, + "cborHex": "d8669f1be14e072bba55175c9fd8669f1ba50a910a6f4adb509f48da2af193929ce5f94829076c9b611ce31dd8669f1b26d9a37b61eaa58e9f42ea811b9fb29c66a32c30da4b16931535867ddc587db733ffffffffbf4b0d64132803130eed7cb46d1ba91e3e2d780350e0466b8ca57c20954334a90b4a6f6c70269874b9e571a81b9163880a91a86b9746ce455ba211b34a2d9ca612453cf94424504bdd8c755f151fc1ff945eb41b72f20145fa10356746dfdfab7a7e8449d75b34885ddd350e3bffffff", + "cborBytes": [ + 216, 102, 159, 27, 225, 78, 7, 43, 186, 85, 23, 92, 159, 216, 102, 159, 27, 165, 10, 145, 10, 111, 74, 219, 80, + 159, 72, 218, 42, 241, 147, 146, 156, 229, 249, 72, 41, 7, 108, 155, 97, 28, 227, 29, 216, 102, 159, 27, 38, 217, + 163, 123, 97, 234, 165, 142, 159, 66, 234, 129, 27, 159, 178, 156, 102, 163, 44, 48, 218, 75, 22, 147, 21, 53, + 134, 125, 220, 88, 125, 183, 51, 255, 255, 255, 255, 191, 75, 13, 100, 19, 40, 3, 19, 14, 237, 124, 180, 109, 27, + 169, 30, 62, 45, 120, 3, 80, 224, 70, 107, 140, 165, 124, 32, 149, 67, 52, 169, 11, 74, 111, 108, 112, 38, 152, + 116, 185, 229, 113, 168, 27, 145, 99, 136, 10, 145, 168, 107, 151, 70, 206, 69, 91, 162, 17, 179, 74, 45, 156, + 166, 18, 69, 60, 249, 68, 36, 80, 75, 221, 140, 117, 95, 21, 31, 193, 255, 148, 94, 180, 27, 114, 242, 1, 69, 250, + 16, 53, 103, 70, 223, 223, 171, 122, 126, 132, 73, 215, 91, 52, 136, 93, 221, 53, 14, 59, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3066, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03698c4079c18cd85c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1557529dd0069a329d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a34" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10f1e3195dea9cead915bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8557e3dc98045eaf05c4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83b20504ec0b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6844496382514617350" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b910e6db44bbe862" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f26505749baa3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e20b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1980049471948317065" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29d858026f4a78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1345175323236489029" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5834733346635488030" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "642517745288074849" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "358972964873329054" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5218329481063197781" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f497e8df230a8462234f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11253858374003178623" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6019213490693005457" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10075666972797088222" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10870472915181623080" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1039867307752302774" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7428997333049136552" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4903698c4079c18cd85c4ae1557529dd0069a329d3421a34bf4b10f1e3195dea9cead915bb4a8557e3dc98045eaf05c44683b20504ec0b1b5efc89323a3adc0648b910e6db44bbe862479f26505749baa342e20b1b1b7a8c81052de189ff4729d858026f4a781b12ab05d45621d7454166d8669f1b50f92310a5559b1e9f1b08eaae7c31c7d66141d01b04fb5402773e599e1b486b3b03dfb86c554af497e8df230a8462234fffff41c0d8669f1b9c2dbc90cf03bc7f9f1b53888ac753fee0911b8bd3f5ba84b4b1de1b96dbad85a9e7d7281b0e6e59ce941e28b61b671919b6c1b7d5a8ffff41d380ff", + "cborBytes": [ + 191, 73, 3, 105, 140, 64, 121, 193, 140, 216, 92, 74, 225, 85, 117, 41, 221, 0, 105, 163, 41, 211, 66, 26, 52, + 191, 75, 16, 241, 227, 25, 93, 234, 156, 234, 217, 21, 187, 74, 133, 87, 227, 220, 152, 4, 94, 175, 5, 196, 70, + 131, 178, 5, 4, 236, 11, 27, 94, 252, 137, 50, 58, 58, 220, 6, 72, 185, 16, 230, 219, 68, 187, 232, 98, 71, 159, + 38, 80, 87, 73, 186, 163, 66, 226, 11, 27, 27, 122, 140, 129, 5, 45, 225, 137, 255, 71, 41, 216, 88, 2, 111, 74, + 120, 27, 18, 171, 5, 212, 86, 33, 215, 69, 65, 102, 216, 102, 159, 27, 80, 249, 35, 16, 165, 85, 155, 30, 159, 27, + 8, 234, 174, 124, 49, 199, 214, 97, 65, 208, 27, 4, 251, 84, 2, 119, 62, 89, 158, 27, 72, 107, 59, 3, 223, 184, + 108, 85, 74, 244, 151, 232, 223, 35, 10, 132, 98, 35, 79, 255, 255, 65, 192, 216, 102, 159, 27, 156, 45, 188, 144, + 207, 3, 188, 127, 159, 27, 83, 136, 138, 199, 83, 254, 224, 145, 27, 139, 211, 245, 186, 132, 180, 177, 222, 27, + 150, 219, 173, 133, 169, 231, 215, 40, 27, 14, 110, 89, 206, 148, 30, 40, 182, 27, 103, 25, 25, 182, 193, 183, + 213, 168, 255, 255, 65, 211, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3067, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2433008298950989379" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1654826264172478818" + } + } + ] + }, + "cborHex": "9f1b21c3c828428d16431b16f71fb838fcc162ff", + "cborBytes": [159, 27, 33, 195, 200, 40, 66, 141, 22, 67, 27, 22, 247, 31, 184, 56, 252, 193, 98, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3068, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2ec931308e" + }, + { + "_tag": "ByteArray", + "bytearray": "7554818e" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9f452ec931308e447554818effff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 69, 46, 201, 49, 48, 142, 68, 117, 84, 129, 142, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3069, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7688287987903888459" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00a9e16bb10a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddd1a91f6d053f28e8cc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f55d9e63db63d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "027e3bd9d4b2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88770413b024" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16287519976317145687" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae5ed5dbe3ef7447159429b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10552922982207989334" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af9642dff4c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13513317559183720348" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2448c741541881944bbb5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1929fc524675e4fefbab" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5db3823d47" + } + ] + }, + "cborHex": "d8669f1b6ab24930d1e9fc4b9fbf4600a9e16bb10a4addd1a91f6d053f28e8cc475f55d9e63db63d46027e3bd9d4b24688770413b0241be208e51f9c7652574cae5ed5dbe3ef7447159429b71b9273838a6090265646af9642dff4c81bbb88f2b93431bf9c4bf2448c741541881944bbb54a1929fc524675e4fefbabff455db3823d47ffff", + "cborBytes": [ + 216, 102, 159, 27, 106, 178, 73, 48, 209, 233, 252, 75, 159, 191, 70, 0, 169, 225, 107, 177, 10, 74, 221, 209, + 169, 31, 109, 5, 63, 40, 232, 204, 71, 95, 85, 217, 230, 61, 182, 61, 70, 2, 126, 59, 217, 212, 178, 70, 136, 119, + 4, 19, 176, 36, 27, 226, 8, 229, 31, 156, 118, 82, 87, 76, 174, 94, 213, 219, 227, 239, 116, 71, 21, 148, 41, 183, + 27, 146, 115, 131, 138, 96, 144, 38, 86, 70, 175, 150, 66, 223, 244, 200, 27, 187, 136, 242, 185, 52, 49, 191, + 156, 75, 242, 68, 140, 116, 21, 65, 136, 25, 68, 187, 181, 74, 25, 41, 252, 82, 70, 117, 228, 254, 251, 171, 255, + 69, 93, 179, 130, 61, 71, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3070, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff12feed000106fecb00" + }, + "cborHex": "4aff12feed000106fecb00", + "cborBytes": [74, 255, 18, 254, 237, 0, 1, 6, 254, 203, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3071, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1127fc6c8a2ad46f922f74" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11058138725380527878" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9deb59ae36fbcdb671" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5591202942390767201" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1ad10ba87982ecc5d4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3678757367542201012" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa5adc5e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ece" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17041908036428304630" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "876477832763315966" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9280141f5616e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2bdd2d5fd539e8d6" + } + } + ] + }, + "cborHex": "bf4b1127fc6c8a2ad46f922f74d8669f1b997666950b4c17069f499deb59ae36fbcdb671ffff419dd8669f1b4d97f173e0520e619f491ad10ba87982ecc5d41b330d9255bb343ab444fa5adc5effff429ecebf1bec810511362f10f61b0c29dff1f35c96feff47c9280141f5616e482bdd2d5fd539e8d6ff", + "cborBytes": [ + 191, 75, 17, 39, 252, 108, 138, 42, 212, 111, 146, 47, 116, 216, 102, 159, 27, 153, 118, 102, 149, 11, 76, 23, 6, + 159, 73, 157, 235, 89, 174, 54, 251, 205, 182, 113, 255, 255, 65, 157, 216, 102, 159, 27, 77, 151, 241, 115, 224, + 82, 14, 97, 159, 73, 26, 209, 11, 168, 121, 130, 236, 197, 212, 27, 51, 13, 146, 85, 187, 52, 58, 180, 68, 250, + 90, 220, 94, 255, 255, 66, 158, 206, 191, 27, 236, 129, 5, 17, 54, 47, 16, 246, 27, 12, 41, 223, 241, 243, 92, + 150, 254, 255, 71, 201, 40, 1, 65, 245, 97, 110, 72, 43, 221, 45, 95, 213, 57, 232, 214, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3072, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7043608389527127609" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a0564e79015d75eb31f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3250529783162938311" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0ee4a8cab6d332400e" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4fcac761325097dcfd3d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13203583158994885557" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15903594181772375879" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b61bfec82fab9c6399f9f9f4a6a0564e79015d75eb31f1b2d1c339da14123c7490ee4a8cab6d332400eff4a4fcac761325097dcfd3dd8669f1bb73c8ced72385bb59f1bdcb4eaa5c082f747ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 97, 191, 236, 130, 250, 185, 198, 57, 159, 159, 159, 74, 106, 5, 100, 231, 144, 21, 215, 94, + 179, 31, 27, 45, 28, 51, 157, 161, 65, 35, 199, 73, 14, 228, 168, 202, 182, 211, 50, 64, 14, 255, 74, 79, 202, + 199, 97, 50, 80, 151, 220, 253, 61, 216, 102, 159, 27, 183, 60, 140, 237, 114, 56, 91, 181, 159, 27, 220, 180, + 234, 165, 192, 130, 247, 71, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3073, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17755663888914806988" + } + }, + "cborHex": "1bf668ca3bc1ff78cc", + "cborBytes": [27, 246, 104, 202, 59, 193, 255, 120, 204], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3074, + "sample": { + "_tag": "ByteArray", + "bytearray": "34b7e502c1368ddad965c4fb" + }, + "cborHex": "4c34b7e502c1368ddad965c4fb", + "cborBytes": [76, 52, 183, 229, 2, 193, 54, 141, 218, 217, 101, 196, 251], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3075, + "sample": { + "_tag": "ByteArray", + "bytearray": "a84b" + }, + "cborHex": "42a84b", + "cborBytes": [66, 168, 75], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3076, + "sample": { + "_tag": "ByteArray", + "bytearray": "ce07e042210d715c01" + }, + "cborHex": "49ce07e042210d715c01", + "cborBytes": [73, 206, 7, 224, 66, 33, 13, 113, 92, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3077, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "32749767520662104" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "439199622091383198" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3030540183114940791" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b007459bd738bb258d8669f1b061859bab43e219e9f1b2a0ea43d741d0177ffffff", + "cborBytes": [ + 191, 27, 0, 116, 89, 189, 115, 139, 178, 88, 216, 102, 159, 27, 6, 24, 89, 186, 180, 62, 33, 158, 159, 27, 42, 14, + 164, 61, 116, 29, 1, 119, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3078, + "sample": { + "_tag": "ByteArray", + "bytearray": "0306001c05670500f4" + }, + "cborHex": "490306001c05670500f4", + "cborBytes": [73, 3, 6, 0, 28, 5, 103, 5, 0, 244], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3079, + "sample": { + "_tag": "ByteArray", + "bytearray": "4ca1216b32" + }, + "cborHex": "454ca1216b32", + "cborBytes": [69, 76, 161, 33, 107, 50], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3080, + "sample": { + "_tag": "ByteArray", + "bytearray": "d8" + }, + "cborHex": "41d8", + "cborBytes": [65, 216], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3081, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6206021190328335623" + } + }, + "cborHex": "1b5620376446113d07", + "cborBytes": [27, 86, 32, 55, 100, 70, 17, 61, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3082, + "sample": { + "_tag": "ByteArray", + "bytearray": "8c18387fcd477e2425f4" + }, + "cborHex": "4a8c18387fcd477e2425f4", + "cborBytes": [74, 140, 24, 56, 127, 205, 71, 126, 36, 37, 244], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3083, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5541944710528678162" + } + }, + { + "_tag": "ByteArray", + "bytearray": "68c973deb4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1799915907261520910" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e387cd13f863682" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3414751700881689226" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16891640740433555094" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13460174455263563088" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13531072134396958961" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1360199841269421357" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11302917655871184522" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3502057484172417972" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c81f46" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11815571410603084322" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "338919590524480416" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f1b4ce8f15a0beab9124568c973deb4bf1b18fa95fb35e5dc0e487e387cd13f8636821b2f63a2946f36ca8a1bea6b29c1f70eee961bbacc255a1cc58d501bbbc8066a60ead8f1ffbf1b12e0668c8a68152d1b9cdc07b8fbb15e8a1b3099ceba27185bb443c81f46429a001ba3f95798ab420a22ff1b04b4159268a1eba0ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 76, 232, 241, 90, 11, 234, 185, 18, 69, 104, + 201, 115, 222, 180, 191, 27, 24, 250, 149, 251, 53, 229, 220, 14, 72, 126, 56, 124, 209, 63, 134, 54, 130, 27, 47, + 99, 162, 148, 111, 54, 202, 138, 27, 234, 107, 41, 193, 247, 14, 238, 150, 27, 186, 204, 37, 90, 28, 197, 141, 80, + 27, 187, 200, 6, 106, 96, 234, 216, 241, 255, 191, 27, 18, 224, 102, 140, 138, 104, 21, 45, 27, 156, 220, 7, 184, + 251, 177, 94, 138, 27, 48, 153, 206, 186, 39, 24, 91, 180, 67, 200, 31, 70, 66, 154, 0, 27, 163, 249, 87, 152, + 171, 66, 10, 34, 255, 27, 4, 180, 21, 146, 104, 161, 235, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3084, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18198194695987408036" + }, + "fields": [] + }, + "cborHex": "d8669f1bfc8cf9a867ba2ca480ff", + "cborBytes": [216, 102, 159, 27, 252, 140, 249, 168, 103, 186, 44, 164, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3085, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd8d" + }, + "cborHex": "42fd8d", + "cborBytes": [66, 253, 141], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3086, + "sample": { + "_tag": "ByteArray", + "bytearray": "d040479c380efc7283" + }, + "cborHex": "49d040479c380efc7283", + "cborBytes": [73, 208, 64, 71, 156, 56, 14, 252, 114, 131], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3087, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "972560170775631586" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7c7fd47f180ac64" + } + } + ] + }, + "cborHex": "bf1b0d7f3a528dc656e248e7c7fd47f180ac64ff", + "cborBytes": [191, 27, 13, 127, 58, 82, 141, 198, 86, 226, 72, 231, 199, 253, 71, 241, 128, 172, 100, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3088, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8011f" + }, + "cborHex": "43f8011f", + "cborBytes": [67, 248, 1, 31], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3089, + "sample": { + "_tag": "ByteArray", + "bytearray": "c0a43a634227fd" + }, + "cborHex": "47c0a43a634227fd", + "cborBytes": [71, 192, 164, 58, 99, 66, 39, 253], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3090, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04008e" + } + ] + }, + "cborHex": "9f4304008eff", + "cborBytes": [159, 67, 4, 0, 142, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3091, + "sample": { + "_tag": "ByteArray", + "bytearray": "2404ad8837e5d404dc2b3e62" + }, + "cborHex": "4c2404ad8837e5d404dc2b3e62", + "cborBytes": [76, 36, 4, 173, 136, 55, 229, 212, 4, 220, 43, 62, 98], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3092, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00082826f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "950880917590246785" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f88e7baaea7b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13012724958622959572" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5054562323196271739" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "890049793622706366" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7220392886406066586" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3995533674756362055" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4622ef18f5aa77e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7113219166808109659" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de1b69b3142e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12011605275527997598" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7703148329204237862" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14496333905287362968" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3965284567372536903" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16639358338480710211" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18049858321565715124" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17970202075561152192" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7510342656810765231" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "668aca9f84a4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12374166192890532945" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64269ccf1fd1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17371411701383808906" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9bde" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9117571661029607827" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "15bb" + } + ] + } + ] + }, + "cborHex": "9fbf4500082826f31b0d32352814aa058146f88e7baaea7b1bb4967c67ce94c7d4ffd8669f1b462569a7192fdc7b9fbf1b0c5a1792554a88be1b6433fd132cfdb19a1b3772fcb53bf6cf4748e4622ef18f5aa77e1b62b73b250f18f25b46de1b69b3142e1ba6b1cb5b9e0de89e1b6ae71497a65cc6261bc92d52e1ca1ab9981b3707854e17941c47ffffff1be6eae03fef93a2439f9f1bfa7dfa82df0d8ab4ffffd8669f1bf962fb93d7cf4ec09f1b683a18dad8ab4baf9f46668aca9f84a41babb9de975ee354514664269ccf1fd11bf113a6e79c0bc78a429bdeff9f1b7e881f1e65d68993ff4215bbffffff", + "cborBytes": [ + 159, 191, 69, 0, 8, 40, 38, 243, 27, 13, 50, 53, 40, 20, 170, 5, 129, 70, 248, 142, 123, 170, 234, 123, 27, 180, + 150, 124, 103, 206, 148, 199, 212, 255, 216, 102, 159, 27, 70, 37, 105, 167, 25, 47, 220, 123, 159, 191, 27, 12, + 90, 23, 146, 85, 74, 136, 190, 27, 100, 51, 253, 19, 44, 253, 177, 154, 27, 55, 114, 252, 181, 59, 246, 207, 71, + 72, 228, 98, 46, 241, 143, 90, 167, 126, 27, 98, 183, 59, 37, 15, 24, 242, 91, 70, 222, 27, 105, 179, 20, 46, 27, + 166, 177, 203, 91, 158, 13, 232, 158, 27, 106, 231, 20, 151, 166, 92, 198, 38, 27, 201, 45, 82, 225, 202, 26, 185, + 152, 27, 55, 7, 133, 78, 23, 148, 28, 71, 255, 255, 255, 27, 230, 234, 224, 63, 239, 147, 162, 67, 159, 159, 27, + 250, 125, 250, 130, 223, 13, 138, 180, 255, 255, 216, 102, 159, 27, 249, 98, 251, 147, 215, 207, 78, 192, 159, 27, + 104, 58, 24, 218, 216, 171, 75, 175, 159, 70, 102, 138, 202, 159, 132, 164, 27, 171, 185, 222, 151, 94, 227, 84, + 81, 70, 100, 38, 156, 207, 31, 209, 27, 241, 19, 166, 231, 156, 11, 199, 138, 66, 155, 222, 255, 159, 27, 126, + 136, 31, 30, 101, 214, 137, 147, 255, 66, 21, 187, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3093, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5460592924916485463" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6664795378602463278" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "740a754c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8746f2c402e2a4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9128ecce9472b564c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa85a078ada851f02c13bd42" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14927716075729003514" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "73d24b7838e76ebe11407a2e" + }, + { + "_tag": "ByteArray", + "bytearray": "24929659ac" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9107531460178895185" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1bc606d4d4c8940d6e081b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11559365276837353905" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0bad8b410642e60cf1f9f3a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f705f33c79b3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd6d7de4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9718275670097558466" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7164293852850238320" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "083fae1348" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3585841512324884875" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32d3723d044a20972df4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1047b15561a37" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "806e4c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11628711068585251390" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5970211913729435643" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa24bec4b9370bdcb2d4b8fb" + }, + { + "_tag": "ByteArray", + "bytearray": "36291e020fa07029b63f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c0bd8a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0dda97b4d61e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9809080251478078976" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3922568cf724b496bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a836" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5bc2d905ed8dab1829" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa631fc0678f0d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd9aac41" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0aef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2076488354037613887" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71f686bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c30f2ff84788b5313ae7c2f" + } + } + ] + } + ] + }, + "cborHex": "d87d9fbf1b4bc7ec5570a88d571b5c7e1c15d243d02e44740a754c478746f2c402e2a4499128ecce9472b564c44cfa85a078ada851f02c13bd42ff9fd8669f1bcf29e6ae31b723fa9f4c73d24b7838e76ebe11407a2e4524929659acffff1b7e64739bf8a861514b1bc606d4d4c8940d6e081b1ba06b1d79a2e019b1bf4c0bad8b410642e60cf1f9f3a946f705f33c79b344dd6d7de41b86de403b797c7bc2ffffd8669f1b636caf4d15a733709fbf45083fae13481b31c377db5af9698b4a32d3723d044a20972df447c1047b15561a37ff43806e4cd8669f1ba1617b1af6ad523e9f1b52da741a9fa5e7fb4cfa24bec4b9370bdcb2d4b8fb4a36291e020fa07029b63fffff43c0bd8affffbf460dda97b4d61e1b8820da849aa67600493922568cf724b496bc411d42a836495bc2d905ed8dab182947fa631fc0678f0d44bd9aac41ffbf420aef1b1cd12b2802a5c53f4471f686bd4c0c30f2ff84788b5313ae7c2fffff", + "cborBytes": [ + 216, 125, 159, 191, 27, 75, 199, 236, 85, 112, 168, 141, 87, 27, 92, 126, 28, 21, 210, 67, 208, 46, 68, 116, 10, + 117, 76, 71, 135, 70, 242, 196, 2, 226, 164, 73, 145, 40, 236, 206, 148, 114, 181, 100, 196, 76, 250, 133, 160, + 120, 173, 168, 81, 240, 44, 19, 189, 66, 255, 159, 216, 102, 159, 27, 207, 41, 230, 174, 49, 183, 35, 250, 159, + 76, 115, 210, 75, 120, 56, 231, 110, 190, 17, 64, 122, 46, 69, 36, 146, 150, 89, 172, 255, 255, 27, 126, 100, 115, + 155, 248, 168, 97, 81, 75, 27, 198, 6, 212, 212, 200, 148, 13, 110, 8, 27, 27, 160, 107, 29, 121, 162, 224, 25, + 177, 191, 76, 11, 173, 139, 65, 6, 66, 230, 12, 241, 249, 243, 169, 70, 247, 5, 243, 60, 121, 179, 68, 221, 109, + 125, 228, 27, 134, 222, 64, 59, 121, 124, 123, 194, 255, 255, 216, 102, 159, 27, 99, 108, 175, 77, 21, 167, 51, + 112, 159, 191, 69, 8, 63, 174, 19, 72, 27, 49, 195, 119, 219, 90, 249, 105, 139, 74, 50, 211, 114, 61, 4, 74, 32, + 151, 45, 244, 71, 193, 4, 123, 21, 86, 26, 55, 255, 67, 128, 110, 76, 216, 102, 159, 27, 161, 97, 123, 26, 246, + 173, 82, 62, 159, 27, 82, 218, 116, 26, 159, 165, 231, 251, 76, 250, 36, 190, 196, 185, 55, 11, 220, 178, 212, + 184, 251, 74, 54, 41, 30, 2, 15, 160, 112, 41, 182, 63, 255, 255, 67, 192, 189, 138, 255, 255, 191, 70, 13, 218, + 151, 180, 214, 30, 27, 136, 32, 218, 132, 154, 166, 118, 0, 73, 57, 34, 86, 140, 247, 36, 180, 150, 188, 65, 29, + 66, 168, 54, 73, 91, 194, 217, 5, 237, 141, 171, 24, 41, 71, 250, 99, 31, 192, 103, 143, 13, 68, 189, 154, 172, + 65, 255, 191, 66, 10, 239, 27, 28, 209, 43, 40, 2, 165, 197, 63, 68, 113, 246, 134, 189, 76, 12, 48, 242, 255, + 132, 120, 139, 83, 19, 174, 124, 47, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3094, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5338800433608114603" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3814387702774085419" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7693749986953095782" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6908557112886805012" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18009336841792454273" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6496019468617559263" + } + }, + { + "_tag": "ByteArray", + "bytearray": "66469864d1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "479d5d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f15e0" + } + } + ] + } + ] + }, + "cborHex": "9f9f801b4a173ab54be9c1abffbf1b34ef6d67fb77b72b1b6ac5b0d993016a661b5fe02017501dc2141bf9ee0470a764fe81ff1b5a267f4a10f8acdf4566469864d1bf43479d5d434f15e0ffff", + "cborBytes": [ + 159, 159, 128, 27, 74, 23, 58, 181, 75, 233, 193, 171, 255, 191, 27, 52, 239, 109, 103, 251, 119, 183, 43, 27, + 106, 197, 176, 217, 147, 1, 106, 102, 27, 95, 224, 32, 23, 80, 29, 194, 20, 27, 249, 238, 4, 112, 167, 100, 254, + 129, 255, 27, 90, 38, 127, 74, 16, 248, 172, 223, 69, 102, 70, 152, 100, 209, 191, 67, 71, 157, 93, 67, 79, 21, + 224, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3095, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14449103210806473599" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5329401340656893610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1332113839609471187" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17404283078314576384" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9807897974792184751" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "38" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15323989332160629625" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12358314004890855935" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7654677157657383300" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3070558142030865196" + } + } + ] + }, + "cborHex": "9f1bc88586d0cb13737fbf1b49f5d6486f583eaa1b127c9e7ab24de0d31bf1886f3f75484a001b881ca73e5cc2e3afff9f41381bd4a9bf1b8d4f4b79d8669f1bab818d1c3c4129ff9f1b6a3ae05194771184ffffff1b2a9cd05c95eee32cff", + "cborBytes": [ + 159, 27, 200, 133, 134, 208, 203, 19, 115, 127, 191, 27, 73, 245, 214, 72, 111, 88, 62, 170, 27, 18, 124, 158, + 122, 178, 77, 224, 211, 27, 241, 136, 111, 63, 117, 72, 74, 0, 27, 136, 28, 167, 62, 92, 194, 227, 175, 255, 159, + 65, 56, 27, 212, 169, 191, 27, 141, 79, 75, 121, 216, 102, 159, 27, 171, 129, 141, 28, 60, 65, 41, 255, 159, 27, + 106, 58, 224, 81, 148, 119, 17, 132, 255, 255, 255, 27, 42, 156, 208, 92, 149, 238, 227, 44, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3096, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c637e465e1eaf69bc" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6546" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "213226305011357994" + } + } + ] + } + } + ] + }, + "cborHex": "bf491c637e465e1eaf69bc804265469f415f1b02f58831d6f8992affff", + "cborBytes": [ + 191, 73, 28, 99, 126, 70, 94, 30, 175, 105, 188, 128, 66, 101, 70, 159, 65, 95, 27, 2, 245, 136, 49, 214, 248, + 153, 42, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3097, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7292004166694488375" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f85b01a9c93e9a8874e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17923316341285017356" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "47865028923913978" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42da5685779ac177de948af7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8218927740686522137" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abcecd9c08559c0fed24d7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c17444c01bd930667704585a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10461807063511870838" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7128f73b3874babd6c23" + }, + { + "_tag": "ByteArray", + "bytearray": "44b40986ca23f6b956e2" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6908989056347777910" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f350594e5e1006977d4817ff" + } + ] + }, + "cborHex": "d8669f1b65326727a87e49379fbf4af85b01a9c93e9a8874e01bf8bc6940273f570cff9f418ebf1b00aa0cfd7e2c76fa4c42da5685779ac177de948af71b720f7f3c023957194babcecd9c08559c0fed24d74cc17444c01bd930667704585a1b912fce18614c2d76ff9f4a7128f73b3874babd6c234a44b40986ca23f6b956e2ffff0e1b5fe1a8f0fcabab764cf350594e5e1006977d4817ffffff", + "cborBytes": [ + 216, 102, 159, 27, 101, 50, 103, 39, 168, 126, 73, 55, 159, 191, 74, 248, 91, 1, 169, 201, 62, 154, 136, 116, 224, + 27, 248, 188, 105, 64, 39, 63, 87, 12, 255, 159, 65, 142, 191, 27, 0, 170, 12, 253, 126, 44, 118, 250, 76, 66, + 218, 86, 133, 119, 154, 193, 119, 222, 148, 138, 247, 27, 114, 15, 127, 60, 2, 57, 87, 25, 75, 171, 206, 205, 156, + 8, 85, 156, 15, 237, 36, 215, 76, 193, 116, 68, 192, 27, 217, 48, 102, 119, 4, 88, 90, 27, 145, 47, 206, 24, 97, + 76, 45, 118, 255, 159, 74, 113, 40, 247, 59, 56, 116, 186, 189, 108, 35, 74, 68, 180, 9, 134, 202, 35, 246, 185, + 86, 226, 255, 255, 14, 27, 95, 225, 168, 240, 252, 171, 171, 118, 76, 243, 80, 89, 78, 94, 16, 6, 151, 125, 72, + 23, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3098, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7566357152803250062" + } + }, + "cborHex": "1b690119be0092df8e", + "cborBytes": [27, 105, 1, 25, 190, 0, 146, 223, 142], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3099, + "sample": { + "_tag": "ByteArray", + "bytearray": "5749d6" + }, + "cborHex": "435749d6", + "cborBytes": [67, 87, 73, 214], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3100, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5530620077424421312" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1496677762205588439" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3506851854450315928" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11496064701492736754" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6946330059081327034" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8241174914922699358" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1bbe1b488c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12031896956227550315" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b4cc0b5a86e86a9c09f1b14c5447eb77d9bd71b30aad72e786e52981b9f8a39efef61b2f241bfff1b60665262b02921bad8669f1b725e88ebe7d3da5e9f451bbe1b488cffff1ba6f9e288b20bfc6b80ff", + "cborBytes": [ + 191, 27, 76, 192, 181, 168, 110, 134, 169, 192, 159, 27, 20, 197, 68, 126, 183, 125, 155, 215, 27, 48, 170, 215, + 46, 120, 110, 82, 152, 27, 159, 138, 57, 239, 239, 97, 178, 242, 65, 191, 255, 27, 96, 102, 82, 98, 176, 41, 33, + 186, 216, 102, 159, 27, 114, 94, 136, 235, 231, 211, 218, 94, 159, 69, 27, 190, 27, 72, 140, 255, 255, 27, 166, + 249, 226, 136, 178, 11, 252, 107, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3101, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a46c700505fd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d85" + } + } + ] + }, + "cborHex": "bf0746a46c700505fd09422d85ff", + "cborBytes": [191, 7, 70, 164, 108, 112, 5, 5, 253, 9, 66, 45, 133, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3102, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11692359593852890367" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10059486893549870927" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2376075117962588265" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4404819655211270452" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e9" + } + ] + } + } + ] + }, + "cborHex": "bf1ba2439b1a11bb6cffd8669f1bfffffffffffffffc9f1b8b9a7a0840bcdf4f1b20f983bb15cdf0691b3d2110238086c13441e9ffffff", + "cborBytes": [ + 191, 27, 162, 67, 155, 26, 17, 187, 108, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 27, + 139, 154, 122, 8, 64, 188, 223, 79, 27, 32, 249, 131, 187, 21, 205, 240, 105, 27, 61, 33, 16, 35, 128, 134, 193, + 52, 65, 233, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3103, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18369970907521423649" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5b8a2d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "90176785dd2407" + }, + { + "_tag": "ByteArray", + "bytearray": "4b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11225100371396620657" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2f837cd8fb17df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16007286914557041757" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfeef3f364d1319219f435b8a2dffff4790176785dd2407414b9fd8669f1b9bc791508d3371719f472f837cd8fb17df1bde254ea377ee5c5dffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 254, 239, 63, 54, 77, 19, 25, 33, 159, 67, 91, 138, 45, 255, 255, 71, 144, 23, 103, 133, + 221, 36, 7, 65, 75, 159, 216, 102, 159, 27, 155, 199, 145, 80, 141, 51, 113, 113, 159, 71, 47, 131, 124, 216, 251, + 23, 223, 27, 222, 37, 78, 163, 119, 238, 92, 93, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3104, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7998439463990720043" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c268a361b872c0955" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13797937224966454390" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10748368853060233910" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9ea903769167e4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11963305889836450816" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10171348554344618215" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1442380140749424084" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18b723dfd2b5a5c182b7d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58df732007b604" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cdc865781718503" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3305648206509216591" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "33baf72402" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "657d78b59d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45f1389c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1823988865475000284" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d13f86712b885bd6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9b0f8ec1576ee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa81a8482c2839e3fd6ec5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "897eb23643" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11690612404682921611" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f1b6f002a50a0a1f62b494c268a361b872c09551bbf7c1ecd2f43bc76d8669f1b9529e08649872ab69f479ea903769167e41ba60633528f0a44001b8d27e39ebc64d8e71b14045d18907285d4bf4b18b723dfd2b5a5c182b7d54758df732007b604481cdc8657817185031b2de005879d63934f4533baf7240245657d78b59d4445f1389c1b19501c3590e7b7dc48d13f86712b885bd647c9b0f8ec1576ee4bfa81a8482c2839e3fd6ec545897eb23643ffffff9f1ba23d660ae3e6968bffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 27, 111, 0, 42, 80, 160, 161, 246, 43, 73, 76, 38, + 138, 54, 27, 135, 44, 9, 85, 27, 191, 124, 30, 205, 47, 67, 188, 118, 216, 102, 159, 27, 149, 41, 224, 134, 73, + 135, 42, 182, 159, 71, 158, 169, 3, 118, 145, 103, 228, 27, 166, 6, 51, 82, 143, 10, 68, 0, 27, 141, 39, 227, 158, + 188, 100, 216, 231, 27, 20, 4, 93, 24, 144, 114, 133, 212, 191, 75, 24, 183, 35, 223, 210, 181, 165, 193, 130, + 183, 213, 71, 88, 223, 115, 32, 7, 182, 4, 72, 28, 220, 134, 87, 129, 113, 133, 3, 27, 45, 224, 5, 135, 157, 99, + 147, 79, 69, 51, 186, 247, 36, 2, 69, 101, 125, 120, 181, 157, 68, 69, 241, 56, 156, 27, 25, 80, 28, 53, 144, 231, + 183, 220, 72, 209, 63, 134, 113, 43, 136, 91, 214, 71, 201, 176, 248, 236, 21, 118, 238, 75, 250, 129, 168, 72, + 44, 40, 57, 227, 253, 110, 197, 69, 137, 126, 178, 54, 67, 255, 255, 255, 159, 27, 162, 61, 102, 10, 227, 230, + 150, 139, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3105, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "165a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b46b55299" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16010358696259521424" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bed639fb73573" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a51d28379bf3efc3fd5450" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17948677530064544059" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "901f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5595126972218344636" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a98e19aa37f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15435738949868913180" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4eb7fe" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e299bbd260" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62492df39c39c65ad2" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf42165abf451b46b552991bde30386861228b90472bed639fb735734ba51d28379bf3efc3fd54504276c41bf916831e0f88613b42901f1b4da5e256444804bcff461a98e19aa37f1bd636c2caf899021c434eb7fe9f45e299bbd260ff4962492df39c39c65ad2a0ff", + "cborBytes": [ + 191, 66, 22, 90, 191, 69, 27, 70, 181, 82, 153, 27, 222, 48, 56, 104, 97, 34, 139, 144, 71, 43, 237, 99, 159, 183, + 53, 115, 75, 165, 29, 40, 55, 155, 243, 239, 195, 253, 84, 80, 66, 118, 196, 27, 249, 22, 131, 30, 15, 136, 97, + 59, 66, 144, 31, 27, 77, 165, 226, 86, 68, 72, 4, 188, 255, 70, 26, 152, 225, 154, 163, 127, 27, 214, 54, 194, + 202, 248, 153, 2, 28, 67, 78, 183, 254, 159, 69, 226, 153, 187, 210, 96, 255, 73, 98, 73, 45, 243, 156, 57, 198, + 90, 210, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3106, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10816849534452851410" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10935812147716630875" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8349217847236105876" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8350e1d099df4fe7c2b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "867583442856536795" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4461119891208666428" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9285838842209888149" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74ac84bcd0ce9596" + }, + { + "_tag": "ByteArray", + "bytearray": "604adb465d8dfc" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3fec903" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05db" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15381567312394040179" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "641113a4e01af1d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f48612f8ae01b5acd92" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdd0a23981" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffc33b5b5e80f6cf2708" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d90dc2431bc9f50c3db5d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cad" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1585452949608909134" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7200775823335238708" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7c753961936d512b06a5" + }, + { + "_tag": "ByteArray", + "bytearray": "7b5021901f35f99538f74e" + }, + { + "_tag": "ByteArray", + "bytearray": "894161a8a93ca8c4e81dd88e" + } + ] + } + } + ] + }, + "cborHex": "bf08d8669f1b961d2b5769e962d29f1b97c3cf353b0d295b1b73de616560dc16944a8350e1d099df4fe7c2b91b0c0a468b6c796adb1b3de914e7afebfd3cffff1b80dded3a7f71e795d905009f071bfffffffffffffff14874ac84bcd0ce959647604adb465d8dfcff44b3fec903bf4205db1bd5764df9c001b37348641113a4e01af1d04a8f48612f8ae01b5acd9245bdd0a239814affc33b5b5e80f6cf27084bd90dc2431bc9f50c3db5d1421cadff41fad8669f1b1600a90ebd88c94e9f1b63ee4b75c11e2c344a7c753961936d512b06a54b7b5021901f35f99538f74e4c894161a8a93ca8c4e81dd88effffff", + "cborBytes": [ + 191, 8, 216, 102, 159, 27, 150, 29, 43, 87, 105, 233, 98, 210, 159, 27, 151, 195, 207, 53, 59, 13, 41, 91, 27, + 115, 222, 97, 101, 96, 220, 22, 148, 74, 131, 80, 225, 208, 153, 223, 79, 231, 194, 185, 27, 12, 10, 70, 139, 108, + 121, 106, 219, 27, 61, 233, 20, 231, 175, 235, 253, 60, 255, 255, 27, 128, 221, 237, 58, 127, 113, 231, 149, 217, + 5, 0, 159, 7, 27, 255, 255, 255, 255, 255, 255, 255, 241, 72, 116, 172, 132, 188, 208, 206, 149, 150, 71, 96, 74, + 219, 70, 93, 141, 252, 255, 68, 179, 254, 201, 3, 191, 66, 5, 219, 27, 213, 118, 77, 249, 192, 1, 179, 115, 72, + 100, 17, 19, 164, 224, 26, 241, 208, 74, 143, 72, 97, 47, 138, 224, 27, 90, 205, 146, 69, 189, 208, 162, 57, 129, + 74, 255, 195, 59, 91, 94, 128, 246, 207, 39, 8, 75, 217, 13, 194, 67, 27, 201, 245, 12, 61, 181, 209, 66, 28, 173, + 255, 65, 250, 216, 102, 159, 27, 22, 0, 169, 14, 189, 136, 201, 78, 159, 27, 99, 238, 75, 117, 193, 30, 44, 52, + 74, 124, 117, 57, 97, 147, 109, 81, 43, 6, 165, 75, 123, 80, 33, 144, 31, 53, 249, 149, 56, 247, 78, 76, 137, 65, + 97, 168, 169, 60, 168, 196, 232, 29, 216, 142, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3107, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1260349051463469080" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11306125972466452728" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b117da8c8e17b08181b9ce76dab66ae48f8ffff", + "cborBytes": [ + 159, 191, 27, 17, 125, 168, 200, 225, 123, 8, 24, 27, 156, 231, 109, 171, 102, 174, 72, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3108, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14811604964107273558" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a406a06c758991b5" + }, + { + "_tag": "ByteArray", + "bytearray": "196d240c" + } + ] + }, + "cborHex": "d8669f1bcd8d643d5706c5569f8048a406a06c758991b544196d240cffff", + "cborBytes": [ + 216, 102, 159, 27, 205, 141, 100, 61, 87, 6, 197, 86, 159, 128, 72, 164, 6, 160, 108, 117, 137, 145, 181, 68, 25, + 109, 36, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3109, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "39a16533" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12695838668493854120" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1774991557297001369" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87530b73aa" + }, + { + "_tag": "ByteArray", + "bytearray": "70" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1208632517356226080" + } + }, + { + "_tag": "ByteArray", + "bytearray": "20cb720a33a0ec1640b6f0" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c413a0259d55270" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17365056681498555300" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8439d185" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7099347326911891207" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89743ee33d3bcd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14131625852418948817" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5694245003132882460" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90c2ea3a0017ddeaaee4d8" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4439a16533d8669f1bb030ae00e93e95a89f1b18a2096ac40153994587530b73aa41701b10c5ecdef50106204b20cb720a33a0ec1640b6f0ffff485c413a0259d552701bf0fd130c3d3eb3a4448439d185bf1b6285f2c7a5b3c7074789743ee33d3bcd1bc41d9ed718287ed11b4f0605a933c74e1cff4b90c2ea3a0017ddeaaee4d8a0ff", + "cborBytes": [ + 191, 68, 57, 161, 101, 51, 216, 102, 159, 27, 176, 48, 174, 0, 233, 62, 149, 168, 159, 27, 24, 162, 9, 106, 196, + 1, 83, 153, 69, 135, 83, 11, 115, 170, 65, 112, 27, 16, 197, 236, 222, 245, 1, 6, 32, 75, 32, 203, 114, 10, 51, + 160, 236, 22, 64, 182, 240, 255, 255, 72, 92, 65, 58, 2, 89, 213, 82, 112, 27, 240, 253, 19, 12, 61, 62, 179, 164, + 68, 132, 57, 209, 133, 191, 27, 98, 133, 242, 199, 165, 179, 199, 7, 71, 137, 116, 62, 227, 61, 59, 205, 27, 196, + 29, 158, 215, 24, 40, 126, 209, 27, 79, 6, 5, 169, 51, 199, 78, 28, 255, 75, 144, 194, 234, 58, 0, 23, 221, 234, + 174, 228, 216, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3110, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10679769548519363788" + } + } + ] + }, + "cborHex": "9f1b943629d20e87d4ccff", + "cborBytes": [159, 27, 148, 54, 41, 210, 14, 135, 212, 204, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3111, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffff0ff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3112, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3766df3bc0e1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "508604884186335465" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0947324657b020e3e417d7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1844464626919852817" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91f4d25b9497c8f5304bb227" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07afe3c37511" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f3f31bf46700e802466" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5467430fb5e00a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13703398419827608544" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4303e632d31ffc6f9dbe8d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6050745643746889796" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "858dccddfa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a57f8aeaa98afdface84" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d675be2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13674172846607702176" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4510973346876560165" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12149869556276342956" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74c7cb" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd9beae39de6c154d597d232" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6419736387299983855" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf463766df3bc0e1bf1b070eed728cf488e94b0947324657b020e3e417d71b1998dace4854cb114c91f4d25b9497c8f5304bb2274607afe3c375114a6f3f31bf46700e802466475467430fb5e00a1bbe2c404255794be0ff4b4303e632d31ffc6f9dbe8d1b53f8911ad1c6904445858dccddfa4aa57f8aeaa98afdface84449d675be2d8669f1bbdc46bc14f5818a09f1b3e9a325bdbd513251ba89d01fd192f30ac4374c7cbffff4ccd9beae39de6c154d597d232d8669f1b59177c3b24aa41ef80ffff", + "cborBytes": [ + 191, 70, 55, 102, 223, 59, 192, 225, 191, 27, 7, 14, 237, 114, 140, 244, 136, 233, 75, 9, 71, 50, 70, 87, 176, 32, + 227, 228, 23, 215, 27, 25, 152, 218, 206, 72, 84, 203, 17, 76, 145, 244, 210, 91, 148, 151, 200, 245, 48, 75, 178, + 39, 70, 7, 175, 227, 195, 117, 17, 74, 111, 63, 49, 191, 70, 112, 14, 128, 36, 102, 71, 84, 103, 67, 15, 181, 224, + 10, 27, 190, 44, 64, 66, 85, 121, 75, 224, 255, 75, 67, 3, 230, 50, 211, 31, 252, 111, 157, 190, 141, 27, 83, 248, + 145, 26, 209, 198, 144, 68, 69, 133, 141, 204, 221, 250, 74, 165, 127, 138, 234, 169, 138, 253, 250, 206, 132, 68, + 157, 103, 91, 226, 216, 102, 159, 27, 189, 196, 107, 193, 79, 88, 24, 160, 159, 27, 62, 154, 50, 91, 219, 213, 19, + 37, 27, 168, 157, 1, 253, 25, 47, 48, 172, 67, 116, 199, 203, 255, 255, 76, 205, 155, 234, 227, 157, 230, 193, 84, + 213, 151, 210, 50, 216, 102, 159, 27, 89, 23, 124, 59, 36, 170, 65, 239, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3113, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b6df04fb" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f4105a0a044b6df04fbffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 65, 5, 160, 160, 68, 182, 223, 4, 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3114, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1459910308740119211" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "737c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5726674999260457675" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9757864770465465920" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13014699732072951637" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12605972930263364807" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5886854029281220657" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13256311622614557956" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca9cac6b" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e206cf7f5077fb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68e18519f4311f55c60e" + } + } + ] + }, + "cborHex": "bf1b1442a4b0dc62baab42737c1b4f793c921307aacbbf1b876ae64f31e486401bb49d807394946f551baef169973c89b4c71b51b24e8cbbe258311bb7f7e12f91d2a50444ca9cac6bff487e206cf7f5077fb64a68e18519f4311f55c60eff", + "cborBytes": [ + 191, 27, 20, 66, 164, 176, 220, 98, 186, 171, 66, 115, 124, 27, 79, 121, 60, 146, 19, 7, 170, 203, 191, 27, 135, + 106, 230, 79, 49, 228, 134, 64, 27, 180, 157, 128, 115, 148, 148, 111, 85, 27, 174, 241, 105, 151, 60, 137, 180, + 199, 27, 81, 178, 78, 140, 187, 226, 88, 49, 27, 183, 247, 225, 47, 145, 210, 165, 4, 68, 202, 156, 172, 107, 255, + 72, 126, 32, 108, 247, 245, 7, 127, 182, 74, 104, 225, 133, 25, 244, 49, 31, 85, 198, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3115, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5659976698278995632" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4746830160735161954" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + "cborHex": "d8669f1b4e8c46d1b9e866b09fd8669f1b41e020e1a3bace6280ff0bffff", + "cborBytes": [ + 216, 102, 159, 27, 78, 140, 70, 209, 185, 232, 102, 176, 159, 216, 102, 159, 27, 65, 224, 32, 225, 163, 186, 206, + 98, 128, 255, 11, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3116, + "sample": { + "_tag": "ByteArray", + "bytearray": "6f8e1de87663996075d4" + }, + "cborHex": "4a6f8e1de87663996075d4", + "cborBytes": [74, 111, 142, 29, 232, 118, 99, 153, 96, 117, 212], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3117, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9181361609545665654" + } + }, + "cborHex": "1b7f6abfbd2b60cc76", + "cborBytes": [27, 127, 106, 191, 189, 43, 96, 204, 118], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3118, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12380008077880368992" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2081084555477045460" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1babce9fc136869f609fd8669f1b1ce17f608cc2d0d480ffffff", + "cborBytes": [ + 216, 102, 159, 27, 171, 206, 159, 193, 54, 134, 159, 96, 159, 216, 102, 159, 27, 28, 225, 127, 96, 140, 194, 208, + 212, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3119, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f91e029a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf44f91e029ad9050d80ff", + "cborBytes": [191, 68, 249, 30, 2, 154, 217, 5, 13, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3120, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9448320054061769128" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6193878009487352231" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07060001030605" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0121f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f2bd5d87438bcde5876b443c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13073894185288614373" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9607fcaf" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8188545350159245089" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14191210846343841043" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "55c1c1ee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6a0913dc88647d9fce00451" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "691801387fbc8a77fd4b06c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15166150041185646155" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9e32e9c326737579e3acc74" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10820359915503686904" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "62df4de03fac797606cc16" + } + ] + }, + "cborHex": "d8669f1b831f2d07a28d21a89f9fd8669f1b55f5133ba998e1a79f4707060001030605ffffd905049f1bfffffffffffffff0430121f8054cf2bd5d87438bcde5876b443c1bb56fcd7e392c41e5ff03449607fcafffd87f9f1b71a38e9c776b1f219f1bc4f14f1394fec513ffbf4455c1c1ee4cf6a0913dc88647d9fce004514c691801387fbc8a77fd4b06c91bd278fd1bd725764b4ca9e32e9c326737579e3acc741b9629a403b17914f8ffff4b62df4de03fac797606cc16ffff", + "cborBytes": [ + 216, 102, 159, 27, 131, 31, 45, 7, 162, 141, 33, 168, 159, 159, 216, 102, 159, 27, 85, 245, 19, 59, 169, 152, 225, + 167, 159, 71, 7, 6, 0, 1, 3, 6, 5, 255, 255, 217, 5, 4, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 67, 1, + 33, 248, 5, 76, 242, 189, 93, 135, 67, 139, 205, 229, 135, 107, 68, 60, 27, 181, 111, 205, 126, 57, 44, 65, 229, + 255, 3, 68, 150, 7, 252, 175, 255, 216, 127, 159, 27, 113, 163, 142, 156, 119, 107, 31, 33, 159, 27, 196, 241, 79, + 19, 148, 254, 197, 19, 255, 191, 68, 85, 193, 193, 238, 76, 246, 160, 145, 61, 200, 134, 71, 217, 252, 224, 4, 81, + 76, 105, 24, 1, 56, 127, 188, 138, 119, 253, 75, 6, 201, 27, 210, 120, 253, 27, 215, 37, 118, 75, 76, 169, 227, + 46, 156, 50, 103, 55, 87, 158, 58, 204, 116, 27, 150, 41, 164, 3, 177, 121, 20, 248, 255, 255, 75, 98, 223, 77, + 224, 63, 172, 121, 118, 6, 204, 22, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3121, + "sample": { + "_tag": "ByteArray", + "bytearray": "a95a" + }, + "cborHex": "42a95a", + "cborBytes": [66, 169, 90], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3122, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10094013409857529192" + } + }, + "cborHex": "1b8c1523b744966568", + "cborBytes": [27, 140, 21, 35, 183, 68, 150, 101, 104], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3123, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "020811f993720101" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5551124960121140894" + } + } + } + ] + }, + "cborHex": "bf48020811f9937201011b4d098ebd77d3369eff", + "cborBytes": [191, 72, 2, 8, 17, 249, 147, 114, 1, 1, 27, 77, 9, 142, 189, 119, 211, 54, 158, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3124, + "sample": { + "_tag": "ByteArray", + "bytearray": "aaaa42c2f6a9" + }, + "cborHex": "46aaaa42c2f6a9", + "cborBytes": [70, 170, 170, 66, 194, 246, 169], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3125, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8946177173538599192" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13127275421437701168" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5a2db5f3bd5ca1c47df62c" + } + ] + } + ] + }, + "cborHex": "d8669f1b7c2734bd8e79f1189fd8669f1bb62d7371cb82ac309fa04b5a2db5f3bd5ca1c47df62cffffffff", + "cborBytes": [ + 216, 102, 159, 27, 124, 39, 52, 189, 142, 121, 241, 24, 159, 216, 102, 159, 27, 182, 45, 115, 113, 203, 130, 172, + 48, 159, 160, 75, 90, 45, 181, 243, 189, 92, 161, 196, 125, 246, 44, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3126, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15616752801325111887" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18420860804430170093" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bbf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c06f6a959f03c06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b79d46bb7b43088d" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5399198354734831396" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1760783927682918117" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c2411dd7a69f00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9734705530770728429" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16362330670601630611" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9925391001356093591" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1476061775831265460" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f2bfbd2d82cfb6d0052a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11218364001274369373" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5804208194941892381" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11689523838468692261" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "86edeb27711f00b0" + }, + { + "_tag": "ByteArray", + "bytearray": "9d351e" + }, + { + "_tag": "ByteArray", + "bytearray": "01453de612740660d7b3" + }, + { + "_tag": "ByteArray", + "bytearray": "faf2fe" + }, + { + "_tag": "ByteArray", + "bytearray": "20" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0744be79ec1c237a3e" + }, + { + "_tag": "ByteArray", + "bytearray": "d14abe" + } + ] + }, + "cborHex": "9fd8669f1bd8b9d9ee8411da4f9fbf1bffa40b4dc0fa07ed427bbf487c06f6a959f03c0648b79d46bb7b43088dff41d91b4aedce4c25d7d724d8669f1b186f8fa737c1e6e59f47c2411dd7a69f001b87189f1a829ea5ed41091be312ad0db6b073931b89be12875cb04897ffffbf1b147c065d56f470b44b3f2bfbd2d82cfb6d0052a71b9bafa29f28fd155d1b508cb099edec371dffffff9fd8669f1ba23987ff516319259f4886edeb27711f00b0439d351e4a01453de612740660d7b343faf2fe4120ffffff490744be79ec1c237a3e43d14abeff", + "cborBytes": [ + 159, 216, 102, 159, 27, 216, 185, 217, 238, 132, 17, 218, 79, 159, 191, 27, 255, 164, 11, 77, 192, 250, 7, 237, + 66, 123, 191, 72, 124, 6, 246, 169, 89, 240, 60, 6, 72, 183, 157, 70, 187, 123, 67, 8, 141, 255, 65, 217, 27, 74, + 237, 206, 76, 37, 215, 215, 36, 216, 102, 159, 27, 24, 111, 143, 167, 55, 193, 230, 229, 159, 71, 194, 65, 29, + 215, 166, 159, 0, 27, 135, 24, 159, 26, 130, 158, 165, 237, 65, 9, 27, 227, 18, 173, 13, 182, 176, 115, 147, 27, + 137, 190, 18, 135, 92, 176, 72, 151, 255, 255, 191, 27, 20, 124, 6, 93, 86, 244, 112, 180, 75, 63, 43, 251, 210, + 216, 44, 251, 109, 0, 82, 167, 27, 155, 175, 162, 159, 40, 253, 21, 93, 27, 80, 140, 176, 153, 237, 236, 55, 29, + 255, 255, 255, 159, 216, 102, 159, 27, 162, 57, 135, 255, 81, 99, 25, 37, 159, 72, 134, 237, 235, 39, 113, 31, 0, + 176, 67, 157, 53, 30, 74, 1, 69, 61, 230, 18, 116, 6, 96, 215, 179, 67, 250, 242, 254, 65, 32, 255, 255, 255, 73, + 7, 68, 190, 121, 236, 28, 35, 122, 62, 67, 209, 74, 190, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3127, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6091992a09b06d06" + } + ] + }, + "cborHex": "9f486091992a09b06d06ff", + "cborBytes": [159, 72, 96, 145, 153, 42, 9, 176, 109, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3128, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18352544970367064753" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5985896540932590303" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d68d2d407f2c5c5d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7345224384445766817" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2976483037483908506" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "852f5a63751d5a9a84ab3a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ed3f2" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8011745525477295009" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b4e946aaa1b611d0f0fd68" + }, + { + "_tag": "ByteArray", + "bytearray": "749fcbb069b40c8b9108f1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3427114197409342453" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfeb1566a231c5ab19fbf1b53122d307886cadf48d68d2d407f2c5c5d1b65ef7aa9366d5ca11b294e978d71343d9a4b852f5a63751d5a9a84ab3a438ed3f2ff9fd9050d9f1b6f2f701b7ce643a14bb4e946aaa1b611d0f0fd684b749fcbb069b40c8b9108f1ff1b2f8f8e34754823f5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 254, 177, 86, 106, 35, 28, 90, 177, 159, 191, 27, 83, 18, 45, 48, 120, 134, 202, 223, 72, 214, + 141, 45, 64, 127, 44, 92, 93, 27, 101, 239, 122, 169, 54, 109, 92, 161, 27, 41, 78, 151, 141, 113, 52, 61, 154, + 75, 133, 47, 90, 99, 117, 29, 90, 154, 132, 171, 58, 67, 142, 211, 242, 255, 159, 217, 5, 13, 159, 27, 111, 47, + 112, 27, 124, 230, 67, 161, 75, 180, 233, 70, 170, 161, 182, 17, 208, 240, 253, 104, 75, 116, 159, 203, 176, 105, + 180, 12, 139, 145, 8, 241, 255, 27, 47, 143, 142, 52, 117, 72, 35, 245, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3129, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9865468169006990435" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14009270275827003250" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6335289256355181992" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9756535948004651807" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1b88e92f07bc95c4639f1bc26aed17711b6f721b57eb78034a6635a8d8669f1b87662dc09b25731f80ff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 136, 233, 47, 7, 188, 149, 196, 99, 159, 27, 194, 106, 237, 23, 113, 27, 111, 114, 27, 87, 235, + 120, 3, 74, 102, 53, 168, 216, 102, 159, 27, 135, 102, 45, 192, 155, 37, 115, 31, 128, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3130, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1788420050286561224" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ffe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7060304768094404362" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17683893365398639280" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12557072854744923771" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5640d8162bc58615d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13023225353825494794" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16381581918110683416" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13193167398577039413" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12527825731028220534" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16148898215422360383" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4240e2ca44" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fdf8" + }, + { + "_tag": "ByteArray", + "bytearray": "76" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "003100" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b90107" + }, + { + "_tag": "ByteArray", + "bytearray": "06b54f21" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10667835299386262460" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7592344634237393119" + } + } + ] + } + ] + }, + "cborHex": "9f9fbf1b18d1be8f6e8447c8428ffe1b61fb3dc78c437f0a1bf569cf52927912b01bae43af3b2dc57e7b495640d8162bc58615d31bb4bbca7594a1270a1be35711f60ff311181bb7178bd93e72e8351baddbc72089ef7a761be01c695dcc307b3f454240e2ca44ffffd8669f1bffffffffffffffeb9fd9050a9f42fdf84176ff43003100ffff00d8669f1bfffffffffffffffc9f43b901074406b54f21ffffd905059f9f1b940bc3af264a83bc0bff1b695d6d38081018dfffff", + "cborBytes": [ + 159, 159, 191, 27, 24, 209, 190, 143, 110, 132, 71, 200, 66, 143, 254, 27, 97, 251, 61, 199, 140, 67, 127, 10, 27, + 245, 105, 207, 82, 146, 121, 18, 176, 27, 174, 67, 175, 59, 45, 197, 126, 123, 73, 86, 64, 216, 22, 43, 197, 134, + 21, 211, 27, 180, 187, 202, 117, 148, 161, 39, 10, 27, 227, 87, 17, 246, 15, 243, 17, 24, 27, 183, 23, 139, 217, + 62, 114, 232, 53, 27, 173, 219, 199, 32, 137, 239, 122, 118, 27, 224, 28, 105, 93, 204, 48, 123, 63, 69, 66, 64, + 226, 202, 68, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 217, 5, 10, 159, 66, 253, + 248, 65, 118, 255, 67, 0, 49, 0, 255, 255, 0, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 67, + 185, 1, 7, 68, 6, 181, 79, 33, 255, 255, 217, 5, 5, 159, 159, 27, 148, 11, 195, 175, 38, 74, 131, 188, 11, 255, + 27, 105, 93, 109, 56, 8, 16, 24, 223, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3131, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ac843ac364e71eeb03c7" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17034368248777667380" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12003327307134313859" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d215" + }, + { + "_tag": "ByteArray", + "bytearray": "4bbc7971" + }, + { + "_tag": "ByteArray", + "bytearray": "d252b98d50a3a68b646d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7927121979314586473" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fa04aac843ac364e71eeb03c780d8669f1bec663bab9995f3349fd8669f1ba6946296e87ca5839f42d215444bbc79714ad252b98d50a3a68b646d1b6e02cb70c43cc369ffffffffff", + "cborBytes": [ + 159, 160, 74, 172, 132, 58, 195, 100, 231, 30, 235, 3, 199, 128, 216, 102, 159, 27, 236, 102, 59, 171, 153, 149, + 243, 52, 159, 216, 102, 159, 27, 166, 148, 98, 150, 232, 124, 165, 131, 159, 66, 210, 21, 68, 75, 188, 121, 113, + 74, 210, 82, 185, 141, 80, 163, 166, 139, 100, 109, 27, 110, 2, 203, 112, 196, 60, 195, 105, 255, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3132, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "711337043322273631" + } + }, + "cborHex": "1b09df2d45a6ccff5f", + "cborBytes": [27, 9, 223, 45, 69, 166, 204, 255, 95], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3133, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11049603246062475467" + } + }, + "cborHex": "1b9958139be68e98cb", + "cborBytes": [27, 153, 88, 19, 155, 230, 142, 152, 203], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3134, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9627920694093252018" + } + } + ] + }, + "cborHex": "9f1b859d3edc410f85b2ff", + "cborBytes": [159, 27, 133, 157, 62, 220, 65, 15, 133, 178, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3135, + "sample": { + "_tag": "ByteArray", + "bytearray": "a6c552e1" + }, + "cborHex": "44a6c552e1", + "cborBytes": [68, 166, 197, 82, 225], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3136, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10918939142889289086" + } + } + ] + }, + "cborHex": "9f1b9787dd4ca806357eff", + "cborBytes": [159, 27, 151, 135, 221, 76, 168, 6, 53, 126, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3137, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12391189225472443164" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0219a7133968bd" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4b8aa94c8e37fef49e64c2" + }, + { + "_tag": "ByteArray", + "bytearray": "7200a6de31" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9581610103827238040" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2e0bdaa2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13768237433407812451" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffed9fd8669f1bffffffffffffffeb9fbf1babf658f300eec31c470219a7133968bdff9f4b4b8aa94c8e37fef49e64c2457200a6de311b84f8b79fb6ea8c98442e0bdaa21bbf129aff99823363ffa0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 235, 159, 191, 27, 171, 246, 88, 243, 0, 238, 195, 28, 71, 2, 25, 167, 19, 57, 104, 189, 255, 159, 75, 75, + 138, 169, 76, 142, 55, 254, 244, 158, 100, 194, 69, 114, 0, 166, 222, 49, 27, 132, 248, 183, 159, 182, 234, 140, + 152, 68, 46, 11, 218, 162, 27, 191, 18, 154, 255, 153, 130, 51, 99, 255, 160, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3138, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9229183237454796870" + } + }, + "cborHex": "1b8014a541937b9846", + "cborBytes": [27, 128, 20, 165, 65, 147, 123, 152, 70], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3139, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3070168493479609401" + }, + "fields": [] + }, + "cborHex": "d8669f1b2a9b6dfa7672c43980ff", + "cborBytes": [216, 102, 159, 27, 42, 155, 109, 250, 118, 114, 196, 57, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3140, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14794361874146211323" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a56b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "116448063416626966" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7523248574935593561" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5374127518581305127" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14534418769554450125" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1bcd5021bd9b1135fb9f9f42a56b1b019db4e58ebaef161b6867f2b811fff2591b4a94bc813ab0af27ffff1bc9b4a0dd401026cd80ff", + "cborBytes": [ + 159, 27, 205, 80, 33, 189, 155, 17, 53, 251, 159, 159, 66, 165, 107, 27, 1, 157, 180, 229, 142, 186, 239, 22, 27, + 104, 103, 242, 184, 17, 255, 242, 89, 27, 74, 148, 188, 129, 58, 176, 175, 39, 255, 255, 27, 201, 180, 160, 221, + 64, 16, 38, 205, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3141, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5737813241477956585" + } + }, + "cborHex": "1b4fa0cebe2dd383e9", + "cborBytes": [27, 79, 160, 206, 190, 45, 211, 131, 233], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3142, + "sample": { + "_tag": "ByteArray", + "bytearray": "bafbc3486211b9dc735fb6fd" + }, + "cborHex": "4cbafbc3486211b9dc735fb6fd", + "cborBytes": [76, 186, 251, 195, 72, 98, 17, 185, 220, 115, 95, 182, 253], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3143, + "sample": { + "_tag": "ByteArray", + "bytearray": "8bb90505000707ffc2faf0" + }, + "cborHex": "4b8bb90505000707ffc2faf0", + "cborBytes": [75, 139, 185, 5, 5, 0, 7, 7, 255, 194, 250, 240], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3144, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1311068233534351950" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9268703729266573202" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2382583932037885621" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6cbb4130e35940e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3186765081530081620" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15663651787642659858" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6251696273910695669" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89fcdfa01ab7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12810691675403496537" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5339657330932107771" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b1231d99cb01d2a4e1b80a10cef1f45bf921b2110a37674abeeb5486cbb4130e35940e91b2c39a9f51b3821541bd960784fafda64121b56c27ca3621486f54689fcdfa01ab71bb1c8b8346f7aac591b4a1a460d4084c9fbffff", + "cborBytes": [ + 159, 191, 27, 18, 49, 217, 156, 176, 29, 42, 78, 27, 128, 161, 12, 239, 31, 69, 191, 146, 27, 33, 16, 163, 118, + 116, 171, 238, 181, 72, 108, 187, 65, 48, 227, 89, 64, 233, 27, 44, 57, 169, 245, 27, 56, 33, 84, 27, 217, 96, + 120, 79, 175, 218, 100, 18, 27, 86, 194, 124, 163, 98, 20, 134, 245, 70, 137, 252, 223, 160, 26, 183, 27, 177, + 200, 184, 52, 111, 122, 172, 89, 27, 74, 26, 70, 13, 64, 132, 201, 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3145, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6874895150198706471" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4252837928466431996" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4157394322080400785" + } + }, + { + "_tag": "ByteArray", + "bytearray": "050101fe" + } + ] + } + } + ] + }, + "cborHex": "bf1b5f6888b6dfa65127d8669f1b3b051d903d8cbffc9f1b39b2081beed4059144050101feffffff", + "cborBytes": [ + 191, 27, 95, 104, 136, 182, 223, 166, 81, 39, 216, 102, 159, 27, 59, 5, 29, 144, 61, 140, 191, 252, 159, 27, 57, + 178, 8, 27, 238, 212, 5, 145, 68, 5, 1, 1, 254, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3146, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4696425105321529844" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + }, + "cborHex": "bf1b412d0dc024ea91f408ff", + "cborBytes": [191, 27, 65, 45, 13, 192, 36, 234, 145, 244, 8, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3147, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0602" + }, + { + "_tag": "ByteArray", + "bytearray": "bb83a91a43f1396b83" + }, + { + "_tag": "ByteArray", + "bytearray": "00" + } + ] + }, + "cborHex": "9f42060249bb83a91a43f1396b834100ff", + "cborBytes": [159, 66, 6, 2, 73, 187, 131, 169, 26, 67, 241, 57, 107, 131, 65, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3148, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13543561045774706640" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "de1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e920c8b3b75e04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f012eb24348dc0dce49e71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6306099286717899238" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7410262809038842064" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1638809087578545902" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5e27529907eb04aafee8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4508551195250217266" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c836046357e9d" + }, + { + "_tag": "ByteArray", + "bytearray": "5d" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2525053297527097786" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83dd73731cd1e3be" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5489427996185120088" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6636285285621824933" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9566186705718370072" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8561082673710355599" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10668285453826038263" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12232485957384328079" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16250119241073582930" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16265333170253311608" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16504238479082812446" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "82b3e13b7dbea5edcb2eef" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ce0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "952461ae6399852611" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e49779952da439c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13415607338115223384" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f4a7" + }, + { + "_tag": "ByteArray", + "bytearray": "76734553bc7b9001" + } + ] + }, + "cborHex": "d8669f1bbbf46503a73827d09fbf42de1b47e920c8b3b75e044bf012eb24348dc0dce49e711b5783c3e3df2a21e6ff9f1b66d68ac3790c68d0d8669f1b16be382eafcd1eee9f4a5e27529907eb04aafee81b3e91976cbc8d5132478c836046357e9d415dffffa0bf1b230aca98860809ba4883dd73731cd1e3be1b4c2e5dada4b2cd581b5c18d24e85a3fda51b84c1ec2001685f181b76cf13554b41d48f1b940d5d18e5c499f741161ba9c2852af1d8d38f1be184055a59ee63521be1ba12574653ae781be50ad5741a10741eff4b82b3e13b7dbea5edcb2eefffbf426ce049952461ae639985261148e49779952da439c81bba2dcfcb8a7b4f58ff42f4a74876734553bc7b9001ffff", + "cborBytes": [ + 216, 102, 159, 27, 187, 244, 101, 3, 167, 56, 39, 208, 159, 191, 66, 222, 27, 71, 233, 32, 200, 179, 183, 94, 4, + 75, 240, 18, 235, 36, 52, 141, 192, 220, 228, 158, 113, 27, 87, 131, 195, 227, 223, 42, 33, 230, 255, 159, 27, + 102, 214, 138, 195, 121, 12, 104, 208, 216, 102, 159, 27, 22, 190, 56, 46, 175, 205, 30, 238, 159, 74, 94, 39, 82, + 153, 7, 235, 4, 170, 254, 232, 27, 62, 145, 151, 108, 188, 141, 81, 50, 71, 140, 131, 96, 70, 53, 126, 157, 65, + 93, 255, 255, 160, 191, 27, 35, 10, 202, 152, 134, 8, 9, 186, 72, 131, 221, 115, 115, 28, 209, 227, 190, 27, 76, + 46, 93, 173, 164, 178, 205, 88, 27, 92, 24, 210, 78, 133, 163, 253, 165, 27, 132, 193, 236, 32, 1, 104, 95, 24, + 27, 118, 207, 19, 85, 75, 65, 212, 143, 27, 148, 13, 93, 24, 229, 196, 153, 247, 65, 22, 27, 169, 194, 133, 42, + 241, 216, 211, 143, 27, 225, 132, 5, 90, 89, 238, 99, 82, 27, 225, 186, 18, 87, 70, 83, 174, 120, 27, 229, 10, + 213, 116, 26, 16, 116, 30, 255, 75, 130, 179, 225, 59, 125, 190, 165, 237, 203, 46, 239, 255, 191, 66, 108, 224, + 73, 149, 36, 97, 174, 99, 153, 133, 38, 17, 72, 228, 151, 121, 149, 45, 164, 57, 200, 27, 186, 45, 207, 203, 138, + 123, 79, 88, 255, 66, 244, 167, 72, 118, 115, 69, 83, 188, 123, 144, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3149, + "sample": { + "_tag": "ByteArray", + "bytearray": "04b3a63107" + }, + "cborHex": "4504b3a63107", + "cborBytes": [69, 4, 179, 166, 49, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3150, + "sample": { + "_tag": "ByteArray", + "bytearray": "272505ed9b72d01f" + }, + "cborHex": "48272505ed9b72d01f", + "cborBytes": [72, 39, 37, 5, 237, 155, 114, 208, 31], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3151, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "072c6c02fdf900074810fac8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "316c4482ce8d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bb77b2f8287" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3024188" + } + } + ] + }, + "cborHex": "bf4c072c6c02fdf900074810fac846316c4482ce8d461bb77b2f828744e3024188ff", + "cborBytes": [ + 191, 76, 7, 44, 108, 2, 253, 249, 0, 7, 72, 16, 250, 200, 70, 49, 108, 68, 130, 206, 141, 70, 27, 183, 123, 47, + 130, 135, 68, 227, 2, 65, 136, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3152, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "461178206805522696" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9638131220200576169" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2892274555255177489" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13344300935901784505" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "410787a3c0128195" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13794528788907808710" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13909582267846951884" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14404509024662372593" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67793c002c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15668895066869842308" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "812778" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2d525ed75232abb5ad14fd8e" + }, + { + "_tag": "ByteArray", + "bytearray": "40c026" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16481963728358308663" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2192481cca32054769" + }, + { + "_tag": "ByteArray", + "bytearray": "5c9b05885e6f77a5790d" + }, + { + "_tag": "ByteArray", + "bytearray": "a64cc883e5bc2ffaaa8a1d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2234017588021591896" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9479450063939511142" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d3f4bd790a83d4ebc5884a" + }, + { + "_tag": "ByteArray", + "bytearray": "2c" + }, + { + "_tag": "ByteArray", + "bytearray": "7a6732454aec19d0fff7" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11400950992507373733" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13624492541179508230" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11543740175372211312" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17836036128992008687" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10370284612089653722" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9fbf1b06666f22bacb79081b85c185479ea854a91b28236c6252e2c11141551bb9307b000456a9b948410787a3c01281951bbf7002d8d2bfd7c61bc108c360611703cc1bc7e718a3bae8c0f14567793c002c1bd973190bc3a5c18443812778ff9f4c2d525ed75232abb5ad14fd8e4340c026d8669f1be4bbb2af8dab7b379f492192481cca320547694a5c9b05885e6f77a5790d4ba64cc883e5bc2ffaaa8a1d1b1f00d328f4007f584106ffffd8669f1b838dc59bdf2b23669f4bd3f4bd790a83d4ebc5884a412c4a7a6732454aec19d0fff7ffffbf1b9e385085da0a08a5413b1bbd13ebc7d1f6b6061ba0339a87347754701bf786545c259a19ef1b8feaa6e91b4da9daffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 191, 27, 6, 102, 111, 34, 186, 203, 121, 8, 27, + 133, 193, 133, 71, 158, 168, 84, 169, 27, 40, 35, 108, 98, 82, 226, 193, 17, 65, 85, 27, 185, 48, 123, 0, 4, 86, + 169, 185, 72, 65, 7, 135, 163, 192, 18, 129, 149, 27, 191, 112, 2, 216, 210, 191, 215, 198, 27, 193, 8, 195, 96, + 97, 23, 3, 204, 27, 199, 231, 24, 163, 186, 232, 192, 241, 69, 103, 121, 60, 0, 44, 27, 217, 115, 25, 11, 195, + 165, 193, 132, 67, 129, 39, 120, 255, 159, 76, 45, 82, 94, 215, 82, 50, 171, 181, 173, 20, 253, 142, 67, 64, 192, + 38, 216, 102, 159, 27, 228, 187, 178, 175, 141, 171, 123, 55, 159, 73, 33, 146, 72, 28, 202, 50, 5, 71, 105, 74, + 92, 155, 5, 136, 94, 111, 119, 165, 121, 13, 75, 166, 76, 200, 131, 229, 188, 47, 250, 170, 138, 29, 27, 31, 0, + 211, 40, 244, 0, 127, 88, 65, 6, 255, 255, 216, 102, 159, 27, 131, 141, 197, 155, 223, 43, 35, 102, 159, 75, 211, + 244, 189, 121, 10, 131, 212, 235, 197, 136, 74, 65, 44, 74, 122, 103, 50, 69, 74, 236, 25, 208, 255, 247, 255, + 255, 191, 27, 158, 56, 80, 133, 218, 10, 8, 165, 65, 59, 27, 189, 19, 235, 199, 209, 246, 182, 6, 27, 160, 51, + 154, 135, 52, 119, 84, 112, 27, 247, 134, 84, 92, 37, 154, 25, 239, 27, 143, 234, 166, 233, 27, 77, 169, 218, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3153, + "sample": { + "_tag": "ByteArray", + "bytearray": "220107" + }, + "cborHex": "43220107", + "cborBytes": [67, 34, 1, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3154, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5212775827574723486" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d21ad7859d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15670800857293212862" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7820e7495b2f8b463c1d1a" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4506" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10709874585148892291" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b48577fff2855939e45d21ad7859d1bd979de5a2cd94cbe4b7820e7495b2f8b463c1d1affbf4245061b94a11e311cc8a483ffff", + "cborBytes": [ + 159, 191, 27, 72, 87, 127, 255, 40, 85, 147, 158, 69, 210, 26, 215, 133, 157, 27, 217, 121, 222, 90, 44, 217, 76, + 190, 75, 120, 32, 231, 73, 91, 47, 139, 70, 60, 29, 26, 255, 191, 66, 69, 6, 27, 148, 161, 30, 49, 28, 200, 164, + 131, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3155, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9400451442465619539" + } + }, + "cborHex": "1b82751cc7fc78be53", + "cborBytes": [27, 130, 117, 28, 199, 252, 120, 190, 83], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3156, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8631808029474836598" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15912681475865174790" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8897414869971727770" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07b50a6c09e4e0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9563181044816403972" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fffcdededdf2604384" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10788929497123737410" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16211494237844697274" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b77ca57ab663650761bdcd5337e48e1e3061b7b79f7af07f1759a4707b50a6c09e4e01b84b73e7e0b07de0449fffcdededdf26043841b95b9fa3726cb4f421be0facc1dfd0670baffff", + "cborBytes": [ + 159, 191, 27, 119, 202, 87, 171, 102, 54, 80, 118, 27, 220, 213, 51, 126, 72, 225, 227, 6, 27, 123, 121, 247, 175, + 7, 241, 117, 154, 71, 7, 181, 10, 108, 9, 228, 224, 27, 132, 183, 62, 126, 11, 7, 222, 4, 73, 255, 252, 222, 222, + 221, 242, 96, 67, 132, 27, 149, 185, 250, 55, 38, 203, 79, 66, 27, 224, 250, 204, 29, 253, 6, 112, 186, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3157, + "sample": { + "_tag": "ByteArray", + "bytearray": "0433" + }, + "cborHex": "420433", + "cborBytes": [66, 4, 51], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3158, + "sample": { + "_tag": "ByteArray", + "bytearray": "74a637c6ce" + }, + "cborHex": "4574a637c6ce", + "cborBytes": [69, 116, 166, 55, 198, 206], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3159, + "sample": { + "_tag": "ByteArray", + "bytearray": "4a3c9da5af033b9d" + }, + "cborHex": "484a3c9da5af033b9d", + "cborBytes": [72, 74, 60, 157, 165, 175, 3, 59, 157], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3160, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9807216494786824359" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16698421046336139141" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f8640574b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5707897927179310177" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "db961799a4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11295486237742444550" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6091426401293777098" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c870edc563e0a778c2fe53de" + } + ] + } + } + ] + }, + "cborHex": "bf1b881a3b70ef1ec8a71be7bcb57838c5af85455f8640574bd8669f1b4f3686ec4bb614619f45db961799a41b9cc1a0e31df3b0061b54891809c88d38ca4cc870edc563e0a778c2fe53deffffff", + "cborBytes": [ + 191, 27, 136, 26, 59, 112, 239, 30, 200, 167, 27, 231, 188, 181, 120, 56, 197, 175, 133, 69, 95, 134, 64, 87, 75, + 216, 102, 159, 27, 79, 54, 134, 236, 75, 182, 20, 97, 159, 69, 219, 150, 23, 153, 164, 27, 156, 193, 160, 227, 29, + 243, 176, 6, 27, 84, 137, 24, 9, 200, 141, 56, 202, 76, 200, 112, 237, 197, 99, 224, 167, 120, 194, 254, 83, 222, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3161, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7517228023363945869" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9096bbe87c5cd051" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2a72e1bd4878cd77d1d74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3db7" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b68528f0f2c38458d489096bbe87c5cd0514ba2a72e1bd4878cd77d1d74423db7ffff", + "cborBytes": [ + 159, 191, 27, 104, 82, 143, 15, 44, 56, 69, 141, 72, 144, 150, 187, 232, 124, 92, 208, 81, 75, 162, 167, 46, 27, + 212, 135, 140, 215, 125, 29, 116, 66, 61, 183, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3162, + "sample": { + "_tag": "ByteArray", + "bytearray": "3de8f84f" + }, + "cborHex": "443de8f84f", + "cborBytes": [68, 61, 232, 248, 79], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3163, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17455763819442160531" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "349f" + }, + { + "_tag": "ByteArray", + "bytearray": "66e343345615f1e83d0b3192" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10851398915700995103" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4311048555941473288" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3953785747567189421" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b410bfec" + }, + { + "_tag": "ByteArray", + "bytearray": "38" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7873349120713488171" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11061647368555457451" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cbd543076b5c6591" + }, + { + "_tag": "ByteArray", + "bytearray": "08e7c8bdb14f628f95" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "809d3b7ba043746f803e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9125730203537363123" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14628190425750662818" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "228808105971287075" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11005596705210924168" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4788136783529869551" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cbd79799aadc69f2da2b12a2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6765423734279790642" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1306ca2ece5ad6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7969622333878314433" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5930927400923255911" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf23f54b58cf743939f9f42349f4c66e343345615f1e83d0b3192ffd8669f1b9697e9d2166ab41f9f1b3bd3ebd21a5a2c081b36deab3079be9dad44b410bfec4138ffff9f1b6d43c14f7cc2f72bffffffd905079f1b9982ddacb161ebab48cbd543076b5c65914908e7c8bdb14f628f95bf4a809d3b7ba043746f803e1b7ea51b4519e5d0b3ff1bcb01c5b051a36ea2ff1bfffffffffffffffc1b032ce3c296260423d905029f9f1b98bbbbe4ab4e7c88ffd8669f1b4272e109364780ef9f4ccbd79799aadc69f2da2b12a21b5de39d0aa4be6032471306ca2ece5ad61b6e99c949acd625c11b524ee30c38a95467ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 242, 63, 84, 181, 140, 247, 67, 147, 159, 159, 66, 52, 159, 76, 102, 227, 67, 52, 86, 21, + 241, 232, 61, 11, 49, 146, 255, 216, 102, 159, 27, 150, 151, 233, 210, 22, 106, 180, 31, 159, 27, 59, 211, 235, + 210, 26, 90, 44, 8, 27, 54, 222, 171, 48, 121, 190, 157, 173, 68, 180, 16, 191, 236, 65, 56, 255, 255, 159, 27, + 109, 67, 193, 79, 124, 194, 247, 43, 255, 255, 255, 217, 5, 7, 159, 27, 153, 130, 221, 172, 177, 97, 235, 171, 72, + 203, 213, 67, 7, 107, 92, 101, 145, 73, 8, 231, 200, 189, 177, 79, 98, 143, 149, 191, 74, 128, 157, 59, 123, 160, + 67, 116, 111, 128, 62, 27, 126, 165, 27, 69, 25, 229, 208, 179, 255, 27, 203, 1, 197, 176, 81, 163, 110, 162, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 252, 27, 3, 44, 227, 194, 150, 38, 4, 35, 217, 5, 2, 159, 159, 27, 152, + 187, 187, 228, 171, 78, 124, 136, 255, 216, 102, 159, 27, 66, 114, 225, 9, 54, 71, 128, 239, 159, 76, 203, 215, + 151, 153, 170, 220, 105, 242, 218, 43, 18, 162, 27, 93, 227, 157, 10, 164, 190, 96, 50, 71, 19, 6, 202, 46, 206, + 90, 214, 27, 110, 153, 201, 73, 172, 214, 37, 193, 27, 82, 78, 227, 12, 56, 169, 84, 103, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3164, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1d" + }, + { + "_tag": "ByteArray", + "bytearray": "4bec723cfa65" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3e81943e" + }, + { + "_tag": "ByteArray", + "bytearray": "d6ddd95fbeb057ec7ec5ff58" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14077543077747601457" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5255782238102294078" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12709942146699454051" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1b14d2a96bcae5ac" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c0c6d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4156090988158752754" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f1a6e125254f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ae8cfeca19" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4310004574634804666" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1739bd0b3e0308587892" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4517811883988409918" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1246586223262484243" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5022749432560236514" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df875974" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10576224530436226383" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2537667615247349487" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12859475490245888948" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12897062423520874121" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f411d464bec723cfa659f9f443e81943e4cd6ddd95fbeb057ec7ec5ff581bc35d7ad7db67b0311b48f04a1966e50e3effd8669f1bb062c90ad1c966639f481b14d2a96bcae5acffff9f43c0c6d61b39ad66bbdb6797f246f1a6e125254fff45ae8cfeca19bf1b3bd03653436a85ba4a1739bd0b3e03085878921b3eb27df8db2ade3e1b114cc390bb74c7131b45b463ff4b8c37e244df8759741b92c64c2cd96c7d4f1b23379b403cd4b6ef1bb27608d371f2cbb41bb2fb91f150000e89ffffff", + "cborBytes": [ + 159, 65, 29, 70, 75, 236, 114, 60, 250, 101, 159, 159, 68, 62, 129, 148, 62, 76, 214, 221, 217, 95, 190, 176, 87, + 236, 126, 197, 255, 88, 27, 195, 93, 122, 215, 219, 103, 176, 49, 27, 72, 240, 74, 25, 102, 229, 14, 62, 255, 216, + 102, 159, 27, 176, 98, 201, 10, 209, 201, 102, 99, 159, 72, 27, 20, 210, 169, 107, 202, 229, 172, 255, 255, 159, + 67, 192, 198, 214, 27, 57, 173, 102, 187, 219, 103, 151, 242, 70, 241, 166, 225, 37, 37, 79, 255, 69, 174, 140, + 254, 202, 25, 191, 27, 59, 208, 54, 83, 67, 106, 133, 186, 74, 23, 57, 189, 11, 62, 3, 8, 88, 120, 146, 27, 62, + 178, 125, 248, 219, 42, 222, 62, 27, 17, 76, 195, 144, 187, 116, 199, 19, 27, 69, 180, 99, 255, 75, 140, 55, 226, + 68, 223, 135, 89, 116, 27, 146, 198, 76, 44, 217, 108, 125, 79, 27, 35, 55, 155, 64, 60, 212, 182, 239, 27, 178, + 118, 8, 211, 113, 242, 203, 180, 27, 178, 251, 145, 241, 80, 0, 14, 137, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3165, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe0503" + }, + "cborHex": "43fe0503", + "cborBytes": [67, 254, 5, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3166, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "41dd" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "bd8e7e8b" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f4241dd8044bd8e7e8bffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 66, 65, 221, 128, 68, 189, 142, 126, 139, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3167, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b56d6ce06dec4b4073324d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6269571216173973314" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14491031294038485398" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17050230048613547679" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8209982144695716159" + } + } + ] + } + ] + }, + "cborHex": "9f4bb56d6ce06dec4b4073324d1b5701fdcdb2103f429f9f1bc91a7c2f663ba996ff1bec9e95e4aa4d3e9f1b71efb74322e3493fffff", + "cborBytes": [ + 159, 75, 181, 109, 108, 224, 109, 236, 75, 64, 115, 50, 77, 27, 87, 1, 253, 205, 178, 16, 63, 66, 159, 159, 27, + 201, 26, 124, 47, 102, 59, 169, 150, 255, 27, 236, 158, 149, 228, 170, 77, 62, 159, 27, 113, 239, 183, 67, 34, + 227, 73, 63, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3168, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "92adb7d9547d09da" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5497899415099423056" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "caa4ee36f417c3" + }, + { + "_tag": "ByteArray", + "bytearray": "fd90d94c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7851363876104323603" + } + }, + { + "_tag": "ByteArray", + "bytearray": "367d54cd0617ac" + }, + { + "_tag": "ByteArray", + "bytearray": "ef" + } + ] + } + } + ] + }, + "cborHex": "bf4892adb7d9547d09dad8669f1b4c4c76638fd439509f47caa4ee36f417c344fd90d94c1b6cf5a5d8d588421347367d54cd0617ac41efffffff", + "cborBytes": [ + 191, 72, 146, 173, 183, 217, 84, 125, 9, 218, 216, 102, 159, 27, 76, 76, 118, 99, 143, 212, 57, 80, 159, 71, 202, + 164, 238, 54, 244, 23, 195, 68, 253, 144, 217, 76, 27, 108, 245, 165, 216, 213, 136, 66, 19, 71, 54, 125, 84, 205, + 6, 23, 172, 65, 239, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3169, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14882881803860590481" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d905019f9fd8669f1bce8a9e25d13c3f9180ffffff", + "cborBytes": [217, 5, 1, 159, 159, 216, 102, 159, 27, 206, 138, 158, 37, 209, 60, 63, 145, 128, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3170, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8476218445438736403" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "efc7fc" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "48971686" + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19f9fd8669f1b75a193c466fd58139f43efc7fcffff4448971686ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 159, 216, 102, 159, 27, 117, 161, 147, 196, 102, + 253, 88, 19, 159, 67, 239, 199, 252, 255, 255, 68, 72, 151, 22, 134, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3171, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17935210909964587702" + }, + "fields": [] + }, + "cborHex": "d8669f1bf8e6ab4c3c2652b680ff", + "cborBytes": [216, 102, 159, 27, 248, 230, 171, 76, 60, 38, 82, 182, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3172, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7372390643922549661" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ccec43392" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11923956492829071375" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52" + } + } + ] + }, + "cborHex": "bf1b664ffe3ae46abb9d453ccec433921ba57a6741204a180f4152ff", + "cborBytes": [ + 191, 27, 102, 79, 254, 58, 228, 106, 187, 157, 69, 60, 206, 196, 51, 146, 27, 165, 122, 103, 65, 32, 74, 24, 15, + 65, 82, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3173, + "sample": { + "_tag": "ByteArray", + "bytearray": "959afb" + }, + "cborHex": "43959afb", + "cborBytes": [67, 149, 154, 251], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3174, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11368597209253416971" + } + }, + "cborHex": "1b9dc55eedac0c100b", + "cborBytes": [27, 157, 197, 94, 237, 172, 12, 16, 11], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3175, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + } + ] + }, + "cborHex": "9fd8799fa010ffff", + "cborBytes": [159, 216, 121, 159, 160, 16, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3176, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16788074989427580830" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6375c6f3d6a34d77f4" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1be8fb39417f735f9e9f496375c6f3d6a34d77f4a0ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 232, 251, 57, 65, 127, 115, 95, 158, 159, 73, 99, 117, 198, 243, 214, 163, 77, 119, 244, + 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3177, + "sample": { + "_tag": "ByteArray", + "bytearray": "062204000301d104" + }, + "cborHex": "48062204000301d104", + "cborBytes": [72, 6, 34, 4, 0, 3, 1, 209, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3178, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15303955930223767636" + }, + "fields": [] + }, + "cborHex": "d8669f1bd46292d5af38705480ff", + "cborBytes": [216, 102, 159, 27, 212, 98, 146, 213, 175, 56, 112, 84, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3179, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "111488acb5b69350" + } + ] + }, + "cborHex": "d905029f48111488acb5b69350ff", + "cborBytes": [217, 5, 2, 159, 72, 17, 20, 136, 172, 181, 182, 147, 80, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3180, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4704827469306094178" + } + } + ] + }, + "cborHex": "9f1b414ae7a7f57d6262ff", + "cborBytes": [159, 27, 65, 74, 231, 167, 245, 125, 98, 98, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3181, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "010106" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6042705599853921033" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "10d44a52ae7bab2a5fe54a24" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d8956ec9c5e3776325d77" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + } + ] + }, + "cborHex": "bf430101061b53dc00ba398e83094c10d44a52ae7bab2a5fe54a24a04b2d8956ec9c5e3776325d771bffffffffffffffffff", + "cborBytes": [ + 191, 67, 1, 1, 6, 27, 83, 220, 0, 186, 57, 142, 131, 9, 76, 16, 212, 74, 82, 174, 123, 171, 42, 95, 229, 74, 36, + 160, 75, 45, 137, 86, 236, 156, 94, 55, 118, 50, 93, 119, 27, 255, 255, 255, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3182, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6534279512293515392" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17174691240413130547" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6034707625335755640" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1605aefb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17467752782440818812" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1695fa60" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a22ffe0304aa58fbff03" + } + ] + }, + "cborHex": "9f9f1b5aae6c98a95e20801bee58c2b00fd66f331b53bf969cab7a93781bffffffffffffffedbf04441605aefb070a1bf269ec9b85b9e87c441695fa60ffff4aa22ffe0304aa58fbff03ff", + "cborBytes": [ + 159, 159, 27, 90, 174, 108, 152, 169, 94, 32, 128, 27, 238, 88, 194, 176, 15, 214, 111, 51, 27, 83, 191, 150, 156, + 171, 122, 147, 120, 27, 255, 255, 255, 255, 255, 255, 255, 237, 191, 4, 68, 22, 5, 174, 251, 7, 10, 27, 242, 105, + 236, 155, 133, 185, 232, 124, 68, 22, 149, 250, 96, 255, 255, 74, 162, 47, 254, 3, 4, 170, 88, 251, 255, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3183, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13700148280547062833" + }, + "fields": [] + }, + "cborHex": "d8669f1bbe20b446502fb43180ff", + "cborBytes": [216, 102, 159, 27, 190, 32, 180, 70, 80, 47, 180, 49, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3184, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7139918081008682702" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5009194640131004519" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16532493354475846047" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd14" + }, + { + "_tag": "ByteArray", + "bytearray": "b598ccb8c2eb202d2e73" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b631615aa6fe946ce9f9fd8669f1b45843bfc3fcc98679f1be56f371ced09f99f42fd144ab598ccb8c2eb202d2e73ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 99, 22, 21, 170, 111, 233, 70, 206, 159, 159, 216, 102, 159, 27, 69, 132, 59, 252, 63, 204, + 152, 103, 159, 27, 229, 111, 55, 28, 237, 9, 249, 159, 66, 253, 20, 74, 181, 152, 204, 184, 194, 235, 32, 45, 46, + 115, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3185, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6981143143084449513" + } + }, + { + "_tag": "ByteArray", + "bytearray": "97f2a5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "304485668236277860" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18222909585948742762" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5320070565001614808" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11563023955960715334" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16363302667327524180" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc8e36d6e4250a53983d" + }, + { + "_tag": "ByteArray", + "bytearray": "c2b66372068112e288ca27f1" + }, + { + "_tag": "ByteArray", + "bytearray": "34b3854c9ae0da" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14210876956785387889" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "115d30cbdafc1e722e7d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5554123230297038033" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e68dceea19350ae9e93dea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff29f1b60e200b371b3dee94397f2a5d8669f1b0439c01a1e6bb8649f1bfce4c7b82489146a1b49d4affdeeeed5d89f1ba0781d06405ed8461be316211456424d544acc8e36d6e4250a53983d4cc2b66372068112e288ca27f14734b3854c9ae0daff1bc5372d4cbbfa2971ffffbf4a115d30cbdafc1e722e7d1b4d1435a6a4999cd14be68dceea19350ae9e93dea4197ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 96, 226, 0, 179, 113, 179, 222, 233, 67, 151, + 242, 165, 216, 102, 159, 27, 4, 57, 192, 26, 30, 107, 184, 100, 159, 27, 252, 228, 199, 184, 36, 137, 20, 106, 27, + 73, 212, 175, 253, 238, 238, 213, 216, 159, 27, 160, 120, 29, 6, 64, 94, 216, 70, 27, 227, 22, 33, 20, 86, 66, 77, + 84, 74, 204, 142, 54, 214, 228, 37, 10, 83, 152, 61, 76, 194, 182, 99, 114, 6, 129, 18, 226, 136, 202, 39, 241, + 71, 52, 179, 133, 76, 154, 224, 218, 255, 27, 197, 55, 45, 76, 187, 250, 41, 113, 255, 255, 191, 74, 17, 93, 48, + 203, 218, 252, 30, 114, 46, 125, 27, 77, 20, 53, 166, 164, 153, 156, 209, 75, 230, 141, 206, 234, 25, 53, 10, 233, + 233, 61, 234, 65, 151, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3186, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8864138391893227184" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7347465164386544270" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8659553614720703586" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5f3f2d64476" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15200582517696845689" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74974cf56bb451" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e4a7f036c4ce2cdf5ae" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6018820218166187659" + } + } + ] + } + } + ] + }, + "cborHex": "bf009f1b7b03bee738b2b6b01b65f770a372d12a8e1b782cea21dee09c6246f5f3f2d644761bd2f3514382555779ff104774974cf56bb4514a7e4a7f036c4ce2cdf5ae9f1b538725196ebc168bffff", + "cborBytes": [ + 191, 0, 159, 27, 123, 3, 190, 231, 56, 178, 182, 176, 27, 101, 247, 112, 163, 114, 209, 42, 142, 27, 120, 44, 234, + 33, 222, 224, 156, 98, 70, 245, 243, 242, 214, 68, 118, 27, 210, 243, 81, 67, 130, 85, 87, 121, 255, 16, 71, 116, + 151, 76, 245, 107, 180, 81, 74, 126, 74, 127, 3, 108, 76, 226, 205, 245, 174, 159, 27, 83, 135, 37, 25, 110, 188, + 22, 139, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3187, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15583148973046585457" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c50aa9" + }, + { + "_tag": "ByteArray", + "bytearray": "680c" + } + ] + } + } + ] + }, + "cborHex": "bf1bd842776d8c6f5871d905049f43c50aa942680cffff", + "cborBytes": [ + 191, 27, 216, 66, 119, 109, 140, 111, 88, 113, 217, 5, 4, 159, 67, 197, 10, 169, 66, 104, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3188, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5115062867077494797" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4565234708342132462" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "93415636692958795" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15743602009383708821" + } + } + ] + }, + "cborHex": "d905039fd8669f1b46fc5a93abf1f80d9fd8669f1b3f5af8c793044eee9f1b014be106d18cfe4bffffffff1bda7c829d46712895ff", + "cborBytes": [ + 217, 5, 3, 159, 216, 102, 159, 27, 70, 252, 90, 147, 171, 241, 248, 13, 159, 216, 102, 159, 27, 63, 90, 248, 199, + 147, 4, 78, 238, 159, 27, 1, 75, 225, 6, 209, 140, 254, 75, 255, 255, 255, 255, 27, 218, 124, 130, 157, 70, 113, + 40, 149, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3189, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + }, + "cborHex": "d9050580", + "cborBytes": [217, 5, 5, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3190, + "sample": { + "_tag": "ByteArray", + "bytearray": "3f6a86ed33" + }, + "cborHex": "453f6a86ed33", + "cborBytes": [69, 63, 106, 134, 237, 51], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3191, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01107512fd02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15213669895212377256" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0616fd0236" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b905" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9461332077512455994" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "99751258350816816" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c4" + }, + { + "_tag": "ByteArray", + "bytearray": "176c8791b20588bb8ad7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14119867676167298769" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f301" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4601107512fd021bd321d02a0a3024a8450616fd02360642b9059f1b834d67656e23773a1b0162633dafe60e3041c44a176c8791b20588bb8ad71bc3f3d8d75978ded1ff42f301a0ff", + "cborBytes": [ + 191, 70, 1, 16, 117, 18, 253, 2, 27, 211, 33, 208, 42, 10, 48, 36, 168, 69, 6, 22, 253, 2, 54, 6, 66, 185, 5, 159, + 27, 131, 77, 103, 101, 110, 35, 119, 58, 27, 1, 98, 99, 61, 175, 230, 14, 48, 65, 196, 74, 23, 108, 135, 145, 178, + 5, 136, 187, 138, 215, 27, 195, 243, 216, 215, 89, 120, 222, 209, 255, 66, 243, 1, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3192, + "sample": { + "_tag": "ByteArray", + "bytearray": "98067ae000bc" + }, + "cborHex": "4698067ae000bc", + "cborBytes": [70, 152, 6, 122, 224, 0, 188], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3193, + "sample": { + "_tag": "ByteArray", + "bytearray": "36bc1ca60bbe2c21db89" + }, + "cborHex": "4a36bc1ca60bbe2c21db89", + "cborBytes": [74, 54, 188, 28, 166, 11, 190, 44, 33, 219, 137], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3194, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1194647401724373903" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9525bd98db68e2469d0f1e7c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8025342773233985496" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3674978737193377344" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16769330970029684320" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e8e7e173cb" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8433415141671614908" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8600722225195464631" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11964142437686165780" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14953969207326237026" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bc6f43e65cab65553e0ebf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5918358947834461567" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13512081892815695524" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f9dc81b73f5aef6af9f7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14247160817347067869" + } + }, + { + "_tag": "ByteArray", + "bytearray": "facea97a56e7d7de" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11442593034146817488" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18322831680034828487" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6c715a04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7008514342518902992" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c5aa3e6de7dba3b74a" + }, + { + "_tag": "ByteArray", + "bytearray": "d89273ff" + }, + { + "_tag": "ByteArray", + "bytearray": "223d" + } + ] + } + } + ] + }, + "cborHex": "bf1b10943d7b7b9feb8f4c9525bd98db68e2469d0f1e7c1b6f5fbebb6f5c27d8d8669f1b330025b0cb865e409f1be8b8a1ab6593766045e8e7e173cbffff1b75098263a2bcb9bc1b775be74b949537b71ba6092c288875c1149f1bcf872bc3b8cf61624bbc6f43e65cab65553e0ebf1b52223c1b32ed7d7fff1bbb848ee435446ea49f4af9dc81b73f5aef6af9f71bc5b8154757d5ffdd48facea97a56e7d7de1b9ecc41bd35ae25d0ff1bfe47c6559fbff0c79f446c715a041b61433ea96d11d0d049c5aa3e6de7dba3b74a44d89273ff42223dffff", + "cborBytes": [ + 191, 27, 16, 148, 61, 123, 123, 159, 235, 143, 76, 149, 37, 189, 152, 219, 104, 226, 70, 157, 15, 30, 124, 27, + 111, 95, 190, 187, 111, 92, 39, 216, 216, 102, 159, 27, 51, 0, 37, 176, 203, 134, 94, 64, 159, 27, 232, 184, 161, + 171, 101, 147, 118, 96, 69, 232, 231, 225, 115, 203, 255, 255, 27, 117, 9, 130, 99, 162, 188, 185, 188, 27, 119, + 91, 231, 75, 148, 149, 55, 183, 27, 166, 9, 44, 40, 136, 117, 193, 20, 159, 27, 207, 135, 43, 195, 184, 207, 97, + 98, 75, 188, 111, 67, 230, 92, 171, 101, 85, 62, 14, 191, 27, 82, 34, 60, 27, 50, 237, 125, 127, 255, 27, 187, + 132, 142, 228, 53, 68, 110, 164, 159, 74, 249, 220, 129, 183, 63, 90, 239, 106, 249, 247, 27, 197, 184, 21, 71, + 87, 213, 255, 221, 72, 250, 206, 169, 122, 86, 231, 215, 222, 27, 158, 204, 65, 189, 53, 174, 37, 208, 255, 27, + 254, 71, 198, 85, 159, 191, 240, 199, 159, 68, 108, 113, 90, 4, 27, 97, 67, 62, 169, 109, 17, 208, 208, 73, 197, + 170, 62, 109, 231, 219, 163, 183, 74, 68, 216, 146, 115, 255, 66, 34, 61, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3195, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15808591138037570375" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16463460217417785382" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7203015356683627475" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "223ca79c8d580d1310e8ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10297419864781300139" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73433ea97580f3342254d934" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5562161755807323320" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7ca96a6ae20268a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7a2d53b67befd6f8085d5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbf48ad7f72b5f58" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2033274654104960065" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bdb6365e1ee1e1b479f9fa0bf42b1c61be479f5d730f66026ff1b63f6404dbecfabd3bf4b223ca79c8d580d1310e8ce1b8ee7c8cf175721ab4c73433ea97580f3342254d9341b4d30c4a5b62894b848b7ca96a6ae20268a4bf7a2d53b67befd6f8085d548cbf48ad7f72b5f581b1c37a48670bb3c41ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 219, 99, 101, 225, 238, 30, 27, 71, 159, 159, 160, 191, 66, 177, 198, 27, 228, 121, 245, 215, + 48, 246, 96, 38, 255, 27, 99, 246, 64, 77, 190, 207, 171, 211, 191, 75, 34, 60, 167, 156, 141, 88, 13, 19, 16, + 232, 206, 27, 142, 231, 200, 207, 23, 87, 33, 171, 76, 115, 67, 62, 169, 117, 128, 243, 52, 34, 84, 217, 52, 27, + 77, 48, 196, 165, 182, 40, 148, 184, 72, 183, 202, 150, 166, 174, 32, 38, 138, 75, 247, 162, 213, 59, 103, 190, + 253, 111, 128, 133, 213, 72, 203, 244, 138, 215, 247, 43, 95, 88, 27, 28, 55, 164, 134, 112, 187, 60, 65, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3196, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6672143602190359964" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3962460364255045175" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12947910486589991220" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8315989041108602673" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1490273461150924040" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2780ee3aa17d7f173a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12706875080398953270" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11255772060322011029" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5903601854151577038" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87c740" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9748968665775914440" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5c98374172f39d9c9f9f1b36fd7cb50ffca6379f1bb3b037fc90c069341b736853f90f51cf311b14ae83d12e17bd08492780ee3aa17d7f173a1bb057e38fcc715b36ffd8669f1b9c34890da04297959f1b51edce9b940acdce4387c7401b874b4b5969fcbdc8ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 92, 152, 55, 65, 114, 243, 157, 156, 159, 159, 27, 54, 253, 124, 181, 15, 252, 166, 55, 159, + 27, 179, 176, 55, 252, 144, 192, 105, 52, 27, 115, 104, 83, 249, 15, 81, 207, 49, 27, 20, 174, 131, 209, 46, 23, + 189, 8, 73, 39, 128, 238, 58, 161, 125, 127, 23, 58, 27, 176, 87, 227, 143, 204, 113, 91, 54, 255, 216, 102, 159, + 27, 156, 52, 137, 13, 160, 66, 151, 149, 159, 27, 81, 237, 206, 155, 148, 10, 205, 206, 67, 135, 199, 64, 27, 135, + 75, 75, 89, 105, 252, 189, 200, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3197, + "sample": { + "_tag": "ByteArray", + "bytearray": "af070100f8041601fb03" + }, + "cborHex": "4aaf070100f8041601fb03", + "cborBytes": [74, 175, 7, 1, 0, 248, 4, 22, 1, 251, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3198, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "67" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a128ee755f5b4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9242344356649936264" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9135800973424965144" + } + } + ] + } + } + ] + }, + "cborHex": "bf416702477a128ee755f5b4d87a9f1b804367396df4a5880a1b7ec8e294efa9b618ffff", + "cborBytes": [ + 191, 65, 103, 2, 71, 122, 18, 142, 231, 85, 245, 180, 216, 122, 159, 27, 128, 67, 103, 57, 109, 244, 165, 136, 10, + 27, 126, 200, 226, 148, 239, 169, 182, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3199, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "febc91bc" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2388106673804530734" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3537359222755280743" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "571506609324228551" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ecb6ed" + } + ] + } + } + ] + }, + "cborHex": "bf44febc91bc9f1b2124425df9dbd42e1b31173978ab47c7671b07ee663bb38effc743ecb6edffff", + "cborBytes": [ + 191, 68, 254, 188, 145, 188, 159, 27, 33, 36, 66, 93, 249, 219, 212, 46, 27, 49, 23, 57, 120, 171, 71, 199, 103, + 27, 7, 238, 102, 59, 179, 142, 255, 199, 67, 236, 182, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3200, + "sample": { + "_tag": "ByteArray", + "bytearray": "54df78a15f9322" + }, + "cborHex": "4754df78a15f9322", + "cborBytes": [71, 84, 223, 120, 161, 95, 147, 34], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3201, + "sample": { + "_tag": "ByteArray", + "bytearray": "66ee7248100b65" + }, + "cborHex": "4766ee7248100b65", + "cborBytes": [71, 102, 238, 114, 72, 16, 11, 101], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3202, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff04fc03" + }, + "cborHex": "44ff04fc03", + "cborBytes": [68, 255, 4, 252, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3203, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14842618768561456945" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d7f5b1c29f3a302deaec" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15282212180811924289" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff94e019b1" + }, + { + "_tag": "ByteArray", + "bytearray": "3d2311cfe6917171883626bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3561128893983478232" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15256876971285457623" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bcdfb932164a6c7319f4ad7f5b1c29f3a302deaecd8669f1bd4155302837143419f9f45ff94e019b14c3d2311cfe6917171883626bc1b316babdc8543d1d8ffffff9fd8669f1bd3bb50c55f4eaad780ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 205, 251, 147, 33, 100, 166, 199, 49, 159, 74, 215, 245, 177, 194, 159, 58, 48, 45, 234, 236, + 216, 102, 159, 27, 212, 21, 83, 2, 131, 113, 67, 65, 159, 159, 69, 255, 148, 224, 25, 177, 76, 61, 35, 17, 207, + 230, 145, 113, 113, 136, 54, 38, 188, 27, 49, 107, 171, 220, 133, 67, 209, 216, 255, 255, 255, 159, 216, 102, 159, + 27, 211, 187, 80, 197, 95, 78, 170, 215, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3204, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6190900899168782138" + } + }, + "cborHex": "1b55ea7f91269a073a", + "cborBytes": [27, 85, 234, 127, 145, 38, 154, 7, 58], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3205, + "sample": { + "_tag": "ByteArray", + "bytearray": "d6" + }, + "cborHex": "41d6", + "cborBytes": [65, 214], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3206, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ba361f77e7" + }, + { + "_tag": "ByteArray", + "bytearray": "84ad776d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17671905679448862905" + }, + "fields": [] + } + ] + }, + "cborHex": "9f45ba361f77e74484ad776dd8669f1bf53f3895efc1f0b980ffff", + "cborBytes": [ + 159, 69, 186, 54, 31, 119, 231, 68, 132, 173, 119, 109, 216, 102, 159, 27, 245, 63, 56, 149, 239, 193, 240, 185, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3207, + "sample": { + "_tag": "ByteArray", + "bytearray": "059504480c0144caf9f9a2" + }, + "cborHex": "4b059504480c0144caf9f9a2", + "cborBytes": [75, 5, 149, 4, 72, 12, 1, 68, 202, 249, 249, 162], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3208, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "67" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1691303045260927289" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7204ff9d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "ByteArray", + "bytearray": "89d6284b50f860a7cc5f42c2" + } + ] + } + } + ] + }, + "cborHex": "bf41679f1b1778b728a4506139ff447204ff9dd905029f0a4c89d6284b50f860a7cc5f42c2ffff", + "cborBytes": [ + 191, 65, 103, 159, 27, 23, 120, 183, 40, 164, 80, 97, 57, 255, 68, 114, 4, 255, 157, 217, 5, 2, 159, 10, 76, 137, + 214, 40, 75, 80, 248, 96, 167, 204, 95, 66, 194, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3209, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ce474e70d6ac23149" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84f09bcd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fe93a7c9f8c484460" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "929199c8ca823d1b" + } + } + ] + } + ] + }, + "cborHex": "9fa0bf490ce474e70d6ac231494484f09bcd491fe93a7c9f8c48446048929199c8ca823d1bffff", + "cborBytes": [ + 159, 160, 191, 73, 12, 228, 116, 231, 13, 106, 194, 49, 73, 68, 132, 240, 155, 205, 73, 31, 233, 58, 124, 159, + 140, 72, 68, 96, 72, 146, 145, 153, 200, 202, 130, 61, 27, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3210, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4190630899437537726" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "441560268897255471" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8688714777208633254" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13396590125590610480" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "4180deb500d3d0d991a6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12148802714797722237" + } + } + ] + }, + "cborHex": "9f1b3a281c99a1c009bed8669f1b0620bcb99e8c002f9fbf1b7894840e1a3537a61bb9ea3fbdb5558230ff804a4180deb500d3d0d991a6ffff1ba89937b3b5d1ca7dff", + "cborBytes": [ + 159, 27, 58, 40, 28, 153, 161, 192, 9, 190, 216, 102, 159, 27, 6, 32, 188, 185, 158, 140, 0, 47, 159, 191, 27, + 120, 148, 132, 14, 26, 53, 55, 166, 27, 185, 234, 63, 189, 181, 85, 130, 48, 255, 128, 74, 65, 128, 222, 181, 0, + 211, 208, 217, 145, 166, 255, 255, 27, 168, 153, 55, 179, 181, 209, 202, 125, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3211, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7728591940449768331" + } + }, + "cborHex": "1b6b41796c0874938b", + "cborBytes": [27, 107, 65, 121, 108, 8, 116, 147, 139], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3212, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7659998691920823286" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1943438228381405531" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10989891059442451598" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "de679ddac0b8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "215166612607536498" + } + } + ] + }, + "cborHex": "d87a9f1b6a4dc839d3e5c3f69f809f1b1af87ac59d96915b413f1b9883efb10e4f048eff46de679ddac0b8ff1b02fc6ce4e7ff0d72ff", + "cborBytes": [ + 216, 122, 159, 27, 106, 77, 200, 57, 211, 229, 195, 246, 159, 128, 159, 27, 26, 248, 122, 197, 157, 150, 145, 91, + 65, 63, 27, 152, 131, 239, 177, 14, 79, 4, 142, 255, 70, 222, 103, 157, 218, 192, 184, 255, 27, 2, 252, 108, 228, + 231, 255, 13, 114, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3213, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1662035953405931854" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17186735995234348088" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d62f9e7121" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1364139543952856835" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15071944230555142796" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15634195096546985932" + } + }, + { + "_tag": "ByteArray", + "bytearray": "20536996ffa471b4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4596930993644433592" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1710bce4ceb0314ed8669f1bee838d54145cec389f45d62f9e7121ffff41549f1b12ee65b00d5f97031bd12a4d6c50bcca8c1bd8f7d19b56d647cc4820536996ffa471b41b3fcb94621528f0b8ffff", + "cborBytes": [ + 191, 27, 23, 16, 188, 228, 206, 176, 49, 78, 216, 102, 159, 27, 238, 131, 141, 84, 20, 92, 236, 56, 159, 69, 214, + 47, 158, 113, 33, 255, 255, 65, 84, 159, 27, 18, 238, 101, 176, 13, 95, 151, 3, 27, 209, 42, 77, 108, 80, 188, + 202, 140, 27, 216, 247, 209, 155, 86, 214, 71, 204, 72, 32, 83, 105, 150, 255, 164, 113, 180, 27, 63, 203, 148, + 98, 21, 40, 240, 184, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3214, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8c3e18158a59" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11974864539907273326" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "928888c5c3241a034376e3ad" + }, + { + "_tag": "ByteArray", + "bytearray": "16e14445c1e30718e7aa5304" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3741728307015598664" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16443561081086641399" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2eae5a3610a26daa" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f28e495c650" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3221527865014833668" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "894286554250179836" + } + } + ] + }, + "cborHex": "9f468c3e18158a59d8669f1ba62f43da7e98326e9f804c928888c5c3241a034376e3ad4c16e14445c1e30718e7aa53041b33ed4a1219b04248ffffd8669f1be43343ae789b84f79f482eae5a3610a26daabf461f28e495c6501b2cb52a865c3b5204ffffff1b0c6924e2097d74fcff", + "cborBytes": [ + 159, 70, 140, 62, 24, 21, 138, 89, 216, 102, 159, 27, 166, 47, 67, 218, 126, 152, 50, 110, 159, 128, 76, 146, 136, + 136, 197, 195, 36, 26, 3, 67, 118, 227, 173, 76, 22, 225, 68, 69, 193, 227, 7, 24, 231, 170, 83, 4, 27, 51, 237, + 74, 18, 25, 176, 66, 72, 255, 255, 216, 102, 159, 27, 228, 51, 67, 174, 120, 155, 132, 247, 159, 72, 46, 174, 90, + 54, 16, 162, 109, 170, 191, 70, 31, 40, 228, 149, 198, 80, 27, 44, 181, 42, 134, 92, 59, 82, 4, 255, 255, 255, 27, + 12, 105, 36, 226, 9, 125, 116, 252, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3215, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "17" + }, + { + "_tag": "ByteArray", + "bytearray": "571c86dc78ab9ddf1710" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ac0300" + } + ] + } + ] + }, + "cborHex": "9fa09f9f41174a571c86dc78ab9ddf1710ff43ac0300ffff", + "cborBytes": [ + 159, 160, 159, 159, 65, 23, 74, 87, 28, 134, 220, 120, 171, 157, 223, 23, 16, 255, 67, 172, 3, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3216, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b2494585afbd4f0e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "436b8310ba57b85851eeff04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15756918102053253744" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "619d2a838735b1e3dc8a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98f530ca9ec14f3f8b1b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9934296126223635601" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7764ce014845e21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13187056388098037984" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbb91e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17c52552f243f44d91" + } + } + ] + } + ] + }, + "cborHex": "d905069fd87a80bf490b2494585afbd4f0e842c9c54c436b8310ba57b85851eeff041bdaabd187b3ce72704a619d2a838735b1e3dc8a4a98f530ca9ec14f3f8b1b419c1b89ddb5b15119549148a7764ce014845e211bb701d5eabda118e043cbb91e4917c52552f243f44d91ffff", + "cborBytes": [ + 217, 5, 6, 159, 216, 122, 128, 191, 73, 11, 36, 148, 88, 90, 251, 212, 240, 232, 66, 201, 197, 76, 67, 107, 131, + 16, 186, 87, 184, 88, 81, 238, 255, 4, 27, 218, 171, 209, 135, 179, 206, 114, 112, 74, 97, 157, 42, 131, 135, 53, + 177, 227, 220, 138, 74, 152, 245, 48, 202, 158, 193, 79, 63, 139, 27, 65, 156, 27, 137, 221, 181, 177, 81, 25, 84, + 145, 72, 167, 118, 76, 224, 20, 132, 94, 33, 27, 183, 1, 213, 234, 189, 161, 24, 224, 67, 203, 185, 30, 73, 23, + 197, 37, 82, 242, 67, 244, 77, 145, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3217, + "sample": { + "_tag": "ByteArray", + "bytearray": "e1b9af" + }, + "cborHex": "43e1b9af", + "cborBytes": [67, 225, 185, 175], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3218, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eba0daa9131aab1269" + } + ] + }, + "cborHex": "d905029f49eba0daa9131aab1269ff", + "cborBytes": [217, 5, 2, 159, 73, 235, 160, 218, 169, 19, 26, 171, 18, 105, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3219, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17679588274568113758" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7165839892956013685" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8294977664925966079" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ac8f4411ea" + }, + { + "_tag": "ByteArray", + "bytearray": "6e425579de" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2d4f776d03c87c182a3ea366" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18415235212830829253" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1523565420308971841" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f78db5d418f08e08f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11007152940525775818" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13703323212965064762" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d281e8e451ed3d9fd781b0b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11062802841532104492" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b3448cb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3814471789617233971" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17203706195030932869" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "558839633777502828" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bf55a83dd80cb2e5e1b63722d6a98f76475d8669f1b731dae3cd1b61eff9f9f45ac8f4411ea456e425579deff9f4c2d4f776d03c87c182a3ea3661bff900edba40beac51b1524caad7595c14149f78db5d418f08e08f81b98c14347f06f6bcaffffffd8669f1bbe2bfbdbdf25b03a9f4cd281e8e451ed3d9fd781b0b81b9986f89235b3ff2c442b3448cbd8669f1b34efb9e1f9e240339f1beebfd7a29f017d851b07c165afa1b7aa6cffffffffff", + "cborBytes": [ + 159, 27, 245, 90, 131, 221, 128, 203, 46, 94, 27, 99, 114, 45, 106, 152, 247, 100, 117, 216, 102, 159, 27, 115, + 29, 174, 60, 209, 182, 30, 255, 159, 159, 69, 172, 143, 68, 17, 234, 69, 110, 66, 85, 121, 222, 255, 159, 76, 45, + 79, 119, 109, 3, 200, 124, 24, 42, 62, 163, 102, 27, 255, 144, 14, 219, 164, 11, 234, 197, 27, 21, 36, 202, 173, + 117, 149, 193, 65, 73, 247, 141, 181, 212, 24, 240, 142, 8, 248, 27, 152, 193, 67, 71, 240, 111, 107, 202, 255, + 255, 255, 216, 102, 159, 27, 190, 43, 251, 219, 223, 37, 176, 58, 159, 76, 210, 129, 232, 228, 81, 237, 61, 159, + 215, 129, 176, 184, 27, 153, 134, 248, 146, 53, 179, 255, 44, 68, 43, 52, 72, 203, 216, 102, 159, 27, 52, 239, + 185, 225, 249, 226, 64, 51, 159, 27, 238, 191, 215, 162, 159, 1, 125, 133, 27, 7, 193, 101, 175, 161, 183, 170, + 108, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3220, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7117738104512669741" + } + }, + "cborHex": "1b62c749183bbd682d", + "cborBytes": [27, 98, 199, 73, 24, 59, 189, 104, 45], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3221, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "44ea7fb4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd76883afb1c23117b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16840703287281051213" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10357394346540004677" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eca8085013a2d291" + }, + { + "_tag": "ByteArray", + "bytearray": "d8b2093c2fb821ab771e" + } + ] + } + ] + }, + "cborHex": "d9050a9fbf4444ea7fb449bd76883afb1c23117bff1be9b63269f623e64dd8669f1b8fbcdb484827f5459f48eca8085013a2d2914ad8b2093c2fb821ab771effffff", + "cborBytes": [ + 217, 5, 10, 159, 191, 68, 68, 234, 127, 180, 73, 189, 118, 136, 58, 251, 28, 35, 17, 123, 255, 27, 233, 182, 50, + 105, 246, 35, 230, 77, 216, 102, 159, 27, 143, 188, 219, 72, 72, 39, 245, 69, 159, 72, 236, 168, 8, 80, 19, 162, + 210, 145, 74, 216, 178, 9, 60, 47, 184, 33, 171, 119, 30, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3222, + "sample": { + "_tag": "ByteArray", + "bytearray": "fbfa607300005d4264fbae" + }, + "cborHex": "4bfbfa607300005d4264fbae", + "cborBytes": [75, 251, 250, 96, 115, 0, 0, 93, 66, 100, 251, 174], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3223, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8070537559176509891" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b70004f268929f9c380ff", + "cborBytes": [191, 27, 112, 0, 79, 38, 137, 41, 249, 195, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3224, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18406814454936109641" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8908297464912432049" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7431703892634697795" + } + } + ] + }, + "cborHex": "9f1bff72243928fe02491b7ba0a1589d9e4bb11b6722b750c4610043ff", + "cborBytes": [ + 159, 27, 255, 114, 36, 57, 40, 254, 2, 73, 27, 123, 160, 161, 88, 157, 158, 75, 177, 27, 103, 34, 183, 80, 196, + 97, 0, 67, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3225, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4438553917228594425" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6872669343321758665" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99e68170fdd58c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7213464759540377300" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10574181409315868141" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9940219901691412831" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8817848414520762381" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11272628057887353365" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1019542764764013423" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15946691690926896260" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "326302888129102722" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3387148031303585737" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16886049678065510509" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13726837473383049544" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6175863255589373734" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b78a9a44d09415a8878a5f78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1190032700481172110" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10718537440453235432" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f484ea55" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "01cb25f7b2f5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6038979459065066748" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e498" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15397623684413628117" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b027d472c63fea7b09efab0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5335333765518558939" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4200113878823700427" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f0065" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56db18" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75ecfc20d98faed436fe74ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10131129400228274000" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2c79cf4711719bc35a58c92" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "693968175480596840" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c94a64808b7e87c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adb5230b684bf8e415" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d03c10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9737277227d0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbb39fa7a770db4a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "526453478737961288" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b3d98e94570d434f99fbf1b5f60a05ad3691bc94799e68170fdd58c1b641b5ffaf033e6d41b92bf09f7a4cfcded1b89f2c155c595c15f1b7a5f4a69fec0600d1b9c706b7e637a2a151b0e2624be2714236f1bdd4e079a8c5ef4841b048742bf781e8382ffbf1b2f01913047838fc91bea574cb750b1a86d1bbe7f85f4428469481b55b512e8eacac7264cb78a9a44d09415a8878a5f781b1083d86f9f47728eff9f1b94bfe50349f092e844f484ea55804601cb25f7b2f59f1b53cec3d2777434fc42e4981bd5af59292e9d9ed54c0b027d472c63fea7b09efab01b4a0ae9cabbe186dbffff1b3a49cd51d37987cbbf436f00654356db184c75ecfc20d98faed436fe74ff1b8c990083321f5f504cc2c79cf4711719bc35a58c921b09a17860f8f2696848c94a64808b7e87c149adb5230b684bf8e41543d03c10469737277227d048fbb39fa7a770db4a1b074e56a64ef1e148ffffff", + "cborBytes": [ + 216, 102, 159, 27, 61, 152, 233, 69, 112, 212, 52, 249, 159, 191, 27, 95, 96, 160, 90, 211, 105, 27, 201, 71, 153, + 230, 129, 112, 253, 213, 140, 27, 100, 27, 95, 250, 240, 51, 230, 212, 27, 146, 191, 9, 247, 164, 207, 205, 237, + 27, 137, 242, 193, 85, 197, 149, 193, 95, 27, 122, 95, 74, 105, 254, 192, 96, 13, 27, 156, 112, 107, 126, 99, 122, + 42, 21, 27, 14, 38, 36, 190, 39, 20, 35, 111, 27, 221, 78, 7, 154, 140, 94, 244, 132, 27, 4, 135, 66, 191, 120, + 30, 131, 130, 255, 191, 27, 47, 1, 145, 48, 71, 131, 143, 201, 27, 234, 87, 76, 183, 80, 177, 168, 109, 27, 190, + 127, 133, 244, 66, 132, 105, 72, 27, 85, 181, 18, 232, 234, 202, 199, 38, 76, 183, 138, 154, 68, 208, 148, 21, + 168, 135, 138, 95, 120, 27, 16, 131, 216, 111, 159, 71, 114, 142, 255, 159, 27, 148, 191, 229, 3, 73, 240, 146, + 232, 68, 244, 132, 234, 85, 128, 70, 1, 203, 37, 247, 178, 245, 159, 27, 83, 206, 195, 210, 119, 116, 52, 252, 66, + 228, 152, 27, 213, 175, 89, 41, 46, 157, 158, 213, 76, 11, 2, 125, 71, 44, 99, 254, 167, 176, 158, 250, 176, 27, + 74, 10, 233, 202, 187, 225, 134, 219, 255, 255, 27, 58, 73, 205, 81, 211, 121, 135, 203, 191, 67, 111, 0, 101, 67, + 86, 219, 24, 76, 117, 236, 252, 32, 217, 143, 174, 212, 54, 254, 116, 255, 27, 140, 153, 0, 131, 50, 31, 95, 80, + 76, 194, 199, 156, 244, 113, 23, 25, 188, 53, 165, 140, 146, 27, 9, 161, 120, 96, 248, 242, 105, 104, 72, 201, 74, + 100, 128, 139, 126, 135, 193, 73, 173, 181, 35, 11, 104, 75, 248, 228, 21, 67, 208, 60, 16, 70, 151, 55, 39, 114, + 39, 208, 72, 251, 179, 159, 167, 167, 112, 219, 74, 27, 7, 78, 86, 166, 78, 241, 225, 72, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3226, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9201476708765303321" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b271e5f93a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7250aa7d8667920" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3301595112743390925" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03fc311200f7" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + "cborHex": "d8669f1b7fb23650aafc82199f9f12ffbf0e45b271e5f93a48c7250aa7d86679201b2dd19f432f3c4ecd41f34603fc311200f7ff04ffff", + "cborBytes": [ + 216, 102, 159, 27, 127, 178, 54, 80, 170, 252, 130, 25, 159, 159, 18, 255, 191, 14, 69, 178, 113, 229, 249, 58, + 72, 199, 37, 10, 167, 216, 102, 121, 32, 27, 45, 209, 159, 67, 47, 60, 78, 205, 65, 243, 70, 3, 252, 49, 18, 0, + 247, 255, 4, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3227, + "sample": { + "_tag": "ByteArray", + "bytearray": "43" + }, + "cborHex": "4143", + "cborBytes": [65, 67], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3228, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0706fc03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d7b96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5953b6ca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a713bedcd7f954fbad3d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6cc2" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11342814708216896878" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9bc1eb62eb8865be2a7bf1a8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4a0ed" + } + } + ] + } + ] + }, + "cborHex": "d87a9fbf440706fc034123432d7b96445953b6ca4aa713bedcd7f954fbad3d1bfffffffffffffff542fd1b426cc2ffbf011b9d69c5e15c581d6e054c9bc1eb62eb8865be2a7bf1a80743b4a0edffff", + "cborBytes": [ + 216, 122, 159, 191, 68, 7, 6, 252, 3, 65, 35, 67, 45, 123, 150, 68, 89, 83, 182, 202, 74, 167, 19, 190, 220, 215, + 249, 84, 251, 173, 61, 27, 255, 255, 255, 255, 255, 255, 255, 245, 66, 253, 27, 66, 108, 194, 255, 191, 1, 27, + 157, 105, 197, 225, 92, 88, 29, 110, 5, 76, 155, 193, 235, 98, 235, 136, 101, 190, 42, 123, 241, 168, 7, 67, 180, + 160, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3229, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3543467136002766395" + } + }, + "cborHex": "1b312cec960ab7363b", + "cborBytes": [27, 49, 44, 236, 150, 10, 183, 54, 59], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3230, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7724499812544248647" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7851508170864492711" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6302919119920409579" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "624d062ac89ab3c150bdc3" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b6b32efa742457b479fd8669f1b6cf62915137480a79fd8669f1b5778778b96dfabeb9f4b624d062ac89ab3c150bdc3ffffa0ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 107, 50, 239, 167, 66, 69, 123, 71, 159, 216, 102, 159, 27, 108, 246, 41, 21, 19, 116, 128, + 167, 159, 216, 102, 159, 27, 87, 120, 119, 139, 150, 223, 171, 235, 159, 75, 98, 77, 6, 42, 200, 154, 179, 193, + 80, 189, 195, 255, 255, 160, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3231, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fc94312f1059e979a293" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc6247" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + } + ] + }, + "cborHex": "9f4afc94312f1059e979a293a0bf43fc624708ffff", + "cborBytes": [159, 74, 252, 148, 49, 47, 16, 89, 233, 121, 162, 147, 160, 191, 67, 252, 98, 71, 8, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3232, + "sample": { + "_tag": "ByteArray", + "bytearray": "da" + }, + "cborHex": "41da", + "cborBytes": [65, 218], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3233, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4862038844586063836" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12377797102363215936" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17732432809426822632" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1b43796e91a7b3f7dc9f1babc6c4e25c380840d8669f1bf61641b0915e25e880ffffff", + "cborBytes": [ + 216, 102, 159, 27, 67, 121, 110, 145, 167, 179, 247, 220, 159, 27, 171, 198, 196, 226, 92, 56, 8, 64, 216, 102, + 159, 27, 246, 22, 65, 176, 145, 94, 37, 232, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3234, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6015" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1095560b83599950ebe60a73" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "568230534b61b83e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "525f3fbf41f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b9141c19ba02c30c5" + } + } + ] + } + ] + }, + "cborHex": "9f426015bf4c1095560b83599950ebe60a7348568230534b61b83e46525f3fbf41f5493b9141c19ba02c30c5ffff", + "cborBytes": [ + 159, 66, 96, 21, 191, 76, 16, 149, 86, 11, 131, 89, 153, 80, 235, 230, 10, 115, 72, 86, 130, 48, 83, 75, 97, 184, + 62, 70, 82, 95, 63, 191, 65, 245, 73, 59, 145, 65, 193, 155, 160, 44, 48, 197, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3235, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01d6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e58277d0bf4fcf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17802503257035818231" + } + } + } + ] + } + ] + }, + "cborHex": "9f4201d6bf47e58277d0bf4fcf1bf70f3263fc5ac4f7ffff", + "cborBytes": [ + 159, 66, 1, 214, 191, 71, 229, 130, 119, 208, 191, 79, 207, 27, 247, 15, 50, 99, 252, 90, 196, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3236, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d87b9f80ff", + "cborBytes": [216, 123, 159, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3237, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "602008289887193343" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16785502233918534019" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16056542485487773822" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f6d5ff237e6aae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16198908032550330386" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13304707227889543388" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17377752608925294591" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1b085ac3599e9108ff9f1be8f215592d3d7183d8669f1bded44c51c077687e9f9f47f6d5ff237e6aae1be0ce1507b56260121bb8a3d0bb7eeda8dcff80ffff1bf12a2ded319c1fffa0ffff", + "cborBytes": [ + 216, 102, 159, 27, 8, 90, 195, 89, 158, 145, 8, 255, 159, 27, 232, 242, 21, 89, 45, 61, 113, 131, 216, 102, 159, + 27, 222, 212, 76, 81, 192, 119, 104, 126, 159, 159, 71, 246, 213, 255, 35, 126, 106, 174, 27, 224, 206, 21, 7, + 181, 98, 96, 18, 27, 184, 163, 208, 187, 126, 237, 168, 220, 255, 128, 255, 255, 27, 241, 42, 45, 237, 49, 156, + 31, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3238, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e49a839f62" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12698244810316842797" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1570c877689c409cbf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15115726277356525217" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "238db3a734" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2844dbaafaee39a5f25" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86148a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebf2443ac5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c384a4d4dd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2187869213036136857" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e726fdb0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "248182dd7cab452d0e4956" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fb9e2520aef898" + }, + { + "_tag": "ByteArray", + "bytearray": "03e454d5021c" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0183" + }, + { + "_tag": "ByteArray", + "bytearray": "75413cb51f2c3e5532c116" + }, + { + "_tag": "ByteArray", + "bytearray": "0eb043be4ba0709f97" + } + ] + } + ] + }, + "cborHex": "d905029f9f45e49a839f629f1bb0393a6075e2072dffbf491570c877689c409cbf1bd1c5d8f673df96a145238db3a7344af2844dbaafaee39a5f254386148a45ebf2443ac545c384a4d4dd1b1e5cdf751a08499944e726fdb04b248182dd7cab452d0e4956ffa09f47fb9e2520aef8984603e454d5021cffff9f4201834b75413cb51f2c3e5532c116490eb043be4ba0709f97ffff", + "cborBytes": [ + 217, 5, 2, 159, 159, 69, 228, 154, 131, 159, 98, 159, 27, 176, 57, 58, 96, 117, 226, 7, 45, 255, 191, 73, 21, 112, + 200, 119, 104, 156, 64, 156, 191, 27, 209, 197, 216, 246, 115, 223, 150, 161, 69, 35, 141, 179, 167, 52, 74, 242, + 132, 77, 186, 175, 174, 227, 154, 95, 37, 67, 134, 20, 138, 69, 235, 242, 68, 58, 197, 69, 195, 132, 164, 212, + 221, 27, 30, 92, 223, 117, 26, 8, 73, 153, 68, 231, 38, 253, 176, 75, 36, 129, 130, 221, 124, 171, 69, 45, 14, 73, + 86, 255, 160, 159, 71, 251, 158, 37, 32, 174, 248, 152, 70, 3, 228, 84, 213, 2, 28, 255, 255, 159, 66, 1, 131, 75, + 117, 65, 60, 181, 31, 44, 62, 85, 50, 193, 22, 73, 14, 176, 67, 190, 75, 160, 112, 159, 151, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3239, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1065891440338448631" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "346ff1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9840898966588997090" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6277b198dc2c33" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6452857939912497949" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73dbf324f9f1f524e21d6f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4904425307857035742" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ac023df82cada1e2c9b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a59259092974c7f5289c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa7c76c1d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15829692335604403971" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3905736169000538716" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "528842990249533047" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5697558100683318568" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8575307744308522355" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb4024fae4ad405447c68386" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10508998276790101030" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "38a65f845f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b147c531aa156d6e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b11ad82811b3b68ec2d3c265" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9148706821453100938" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1161d7687be9115a5e90112" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12221417560551454630" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de36d994e1bb32ecf5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9877796472315604692" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11989118238934558088" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15338623180480300238" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6877e4084a" + }, + { + "_tag": "ByteArray", + "bytearray": "e2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2842696152911960468" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0ecace9e1e80b0f7bf43346ff11b8891e578860bbde2476277b198dc2c331b598d281b8e8b1b1d4b73dbf324f9f1f524e21d6f1b441004d52e4121de4a7ac023df82cada1e2c9b4aa59259092974c7f5289c45fa7c76c1d61bdbae5d4f576c8f03ff1b3633f65a2bac125c1b0756d3e5cfc75e771b4f11cae7d660e528801b77019cf5a32a6d734ccb4024fae4ad405447c683861b91d77640f1442426bf4538a65f845f48b147c531aa156d6e4cb11ad82811b3b68ec2d3c2651b7ef6bc61d6e7b78a4cd1161d7687be9115a5e901121ba99b3284fc63f7a649de36d994e1bb32ecf51b8914fb8e87fa6ed4ff1ba661e78469d9e588d8669f1bd4ddbc83e019c4ce9f456877e4084a41e21b27734916feafd994ffffff", + "cborBytes": [ + 191, 27, 14, 202, 206, 158, 30, 128, 176, 247, 191, 67, 52, 111, 241, 27, 136, 145, 229, 120, 134, 11, 189, 226, + 71, 98, 119, 177, 152, 220, 44, 51, 27, 89, 141, 40, 27, 142, 139, 27, 29, 75, 115, 219, 243, 36, 249, 241, 245, + 36, 226, 29, 111, 27, 68, 16, 4, 213, 46, 65, 33, 222, 74, 122, 192, 35, 223, 130, 202, 218, 30, 44, 155, 74, 165, + 146, 89, 9, 41, 116, 199, 245, 40, 156, 69, 250, 124, 118, 193, 214, 27, 219, 174, 93, 79, 87, 108, 143, 3, 255, + 27, 54, 51, 246, 90, 43, 172, 18, 92, 27, 7, 86, 211, 229, 207, 199, 94, 119, 27, 79, 17, 202, 231, 214, 96, 229, + 40, 128, 27, 119, 1, 156, 245, 163, 42, 109, 115, 76, 203, 64, 36, 250, 228, 173, 64, 84, 71, 198, 131, 134, 27, + 145, 215, 118, 64, 241, 68, 36, 38, 191, 69, 56, 166, 95, 132, 95, 72, 177, 71, 197, 49, 170, 21, 109, 110, 76, + 177, 26, 216, 40, 17, 179, 182, 142, 194, 211, 194, 101, 27, 126, 246, 188, 97, 214, 231, 183, 138, 76, 209, 22, + 29, 118, 135, 190, 145, 21, 165, 233, 1, 18, 27, 169, 155, 50, 132, 252, 99, 247, 166, 73, 222, 54, 217, 148, 225, + 187, 50, 236, 245, 27, 137, 20, 251, 142, 135, 250, 110, 212, 255, 27, 166, 97, 231, 132, 105, 217, 229, 136, 216, + 102, 159, 27, 212, 221, 188, 131, 224, 25, 196, 206, 159, 69, 104, 119, 228, 8, 74, 65, 226, 27, 39, 115, 73, 22, + 254, 175, 217, 148, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3240, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "774027c443ee970414fc" + }, + { + "_tag": "ByteArray", + "bytearray": "3208b2569996fe73f9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3767673540324923885" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5ee76e5882cfc4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7073469481118809025" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11885644378535951428" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "919474876039458820" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7826175862232856180" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6546483809824812176" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17187707898633507488" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13866578550108536122" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31a8b70ff5992661" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14121598324308757057" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ef48df6e321a0b8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15344692246620611428" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16366670413912740650" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5606" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13056173954802996668" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57e3e42517eb740e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "076357774024" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5df4abd595cf1ff4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8ee1f8953151ac0e481" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "986040181fd66dbe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7272595951738915833" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8581e4bdd5f3e08c0a7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fe1624bfb79" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c022269eb3647701f574f0e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "692d85d14727cf969b" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4700089284549004557" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3036242416524997972" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5299763522761734800" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d861a8cdd266a1e993fbde" + }, + { + "_tag": "ByteArray", + "bytearray": "d92c8a74ef" + }, + { + "_tag": "ByteArray", + "bytearray": "69832233edc3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dcaa" + }, + { + "_tag": "ByteArray", + "bytearray": "b2706cee432b84d579bc699d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14451664137546011385" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14810147303165142435" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8293148491382818441" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9102137679435849305" + } + } + ] + } + ] + }, + "cborHex": "9f4a774027c443ee970414fc493208b2569996fe73f9d8669f1b3449771f78b499ed9f9f475ee76e5882cfc41b622a030427a73bc11ba4f24a96e540fc44ffbf1b0cc2a187363a70041b6c9c297b5a2036741b5ad9c8571c742c901bee870144f939d2a01bc06ffbb919453d3a4831a8b70ff59926611bc3f9fedb452cca41486ef48df6e321a0b81bd4f34c4c738323641be3221806f12a132affffffbf4256061bb530d9098dbd55bc4857e3e42517eb740e46076357774024485df4abd595cf1ff44af8ee1f8953151ac0e48148986040181fd66dbe1b64ed737c7a578bf94aa8581e4bdd5f3e08c0a7465fe1624bfb794cc022269eb3647701f574f0e749692d85d14727cf969bffd8669f1b413a124d5a29cd0d9fd8669f1b2a22e66420f235549f1b498c8ad837c93a904bd861a8cdd266a1e993fbde45d92c8a74ef4669832233edc3ffff9f42dcaa4cb2706cee432b84d579bc699d1bc88e9ff703ae92f91bcd883681345e25a31b73172e9d2a708689ff1b7e5149fe8778de59ffffff", + "cborBytes": [ + 159, 74, 119, 64, 39, 196, 67, 238, 151, 4, 20, 252, 73, 50, 8, 178, 86, 153, 150, 254, 115, 249, 216, 102, 159, + 27, 52, 73, 119, 31, 120, 180, 153, 237, 159, 159, 71, 94, 231, 110, 88, 130, 207, 196, 27, 98, 42, 3, 4, 39, 167, + 59, 193, 27, 164, 242, 74, 150, 229, 64, 252, 68, 255, 191, 27, 12, 194, 161, 135, 54, 58, 112, 4, 27, 108, 156, + 41, 123, 90, 32, 54, 116, 27, 90, 217, 200, 87, 28, 116, 44, 144, 27, 238, 135, 1, 68, 249, 57, 210, 160, 27, 192, + 111, 251, 185, 25, 69, 61, 58, 72, 49, 168, 183, 15, 245, 153, 38, 97, 27, 195, 249, 254, 219, 69, 44, 202, 65, + 72, 110, 244, 141, 246, 227, 33, 160, 184, 27, 212, 243, 76, 76, 115, 131, 35, 100, 27, 227, 34, 24, 6, 241, 42, + 19, 42, 255, 255, 255, 191, 66, 86, 6, 27, 181, 48, 217, 9, 141, 189, 85, 188, 72, 87, 227, 228, 37, 23, 235, 116, + 14, 70, 7, 99, 87, 119, 64, 36, 72, 93, 244, 171, 213, 149, 207, 31, 244, 74, 248, 238, 31, 137, 83, 21, 26, 192, + 228, 129, 72, 152, 96, 64, 24, 31, 214, 109, 190, 27, 100, 237, 115, 124, 122, 87, 139, 249, 74, 168, 88, 30, 75, + 221, 95, 62, 8, 192, 167, 70, 95, 225, 98, 75, 251, 121, 76, 192, 34, 38, 158, 179, 100, 119, 1, 245, 116, 240, + 231, 73, 105, 45, 133, 209, 71, 39, 207, 150, 155, 255, 216, 102, 159, 27, 65, 58, 18, 77, 90, 41, 205, 13, 159, + 216, 102, 159, 27, 42, 34, 230, 100, 32, 242, 53, 84, 159, 27, 73, 140, 138, 216, 55, 201, 58, 144, 75, 216, 97, + 168, 205, 210, 102, 161, 233, 147, 251, 222, 69, 217, 44, 138, 116, 239, 70, 105, 131, 34, 51, 237, 195, 255, 255, + 159, 66, 220, 170, 76, 178, 112, 108, 238, 67, 43, 132, 213, 121, 188, 105, 157, 27, 200, 142, 159, 247, 3, 174, + 146, 249, 27, 205, 136, 54, 129, 52, 94, 37, 163, 27, 115, 23, 46, 157, 42, 112, 134, 137, 255, 27, 126, 81, 73, + 254, 135, 120, 222, 89, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3241, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15386466200663952903" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ee86dc86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4177952836615675272" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8936998876810283239" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a6e5c0f19fdbca831a53ca" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "004c9496" + } + ] + }, + "cborHex": "d8669f1bd587b57d0f210e079fa09f44ee86dc861b39fb11f81ad01d881b7c069920d25788e74ba6e5c0f19fdbca831a53caff44004c9496ffff", + "cborBytes": [ + 216, 102, 159, 27, 213, 135, 181, 125, 15, 33, 14, 7, 159, 160, 159, 68, 238, 134, 220, 134, 27, 57, 251, 17, 248, + 26, 208, 29, 136, 27, 124, 6, 153, 32, 210, 87, 136, 231, 75, 166, 229, 192, 241, 159, 219, 202, 131, 26, 83, 202, + 255, 68, 0, 76, 148, 150, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3242, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e7dc9e10f6e39995" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10491683165230080529" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5191258193038266062" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7691389132904081427" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b4c44b913" + }, + { + "_tag": "ByteArray", + "bytearray": "c3cf02d50562835f67" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10273203276767921093" + } + } + ] + } + ] + }, + "cborHex": "d87d9f8048e7dc9e10f6e39995d8669f1b9199f2405f7c22119fd8669f1b480b0dd27561cece9f417d1b6abd4daa680c2813452b4c44b91349c3cf02d50562835f67ffff1b8e91bff3512183c5ffffff", + "cborBytes": [ + 216, 125, 159, 128, 72, 231, 220, 158, 16, 246, 227, 153, 149, 216, 102, 159, 27, 145, 153, 242, 64, 95, 124, 34, + 17, 159, 216, 102, 159, 27, 72, 11, 13, 210, 117, 97, 206, 206, 159, 65, 125, 27, 106, 189, 77, 170, 104, 12, 40, + 19, 69, 43, 76, 68, 185, 19, 73, 195, 207, 2, 213, 5, 98, 131, 95, 103, 255, 255, 27, 142, 145, 191, 243, 81, 33, + 131, 197, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3243, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15157898197120810518" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "820314b61492" + }, + { + "_tag": "ByteArray", + "bytearray": "1172f6d43f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "401326459336724394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3991277297012712763" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14863650813963336418" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc5c2e409ab13775129184c4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15372285253434538927" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1eea9cb5943bd66903" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16277998951170652154" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc6916f619b657" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17327554788961139132" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15984896834730816771" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18035403797425582318" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17767823772481713342" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "48140096afceffbaa4cea639" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + }, + "cborHex": "d8669f1bd25bac19aceb7e169f9f46820314b61492451172f6d43fbf1b0591cc49d7bb0faa1b3763dd8e1086253b1bce464baa0fbafae24ccc5c2e409ab13775129184c41bd55553fdfcf0fbaf491eea9cb5943bd669031be1e711cd32b537fa47cc6916f619b6571bf077d7467625b9bc1bddd5c2fac56575031bfa4aa032b64870ee1bf693fd95468374beff4c48140096afceffbaa4cea639ff11ffff", + "cborBytes": [ + 216, 102, 159, 27, 210, 91, 172, 25, 172, 235, 126, 22, 159, 159, 70, 130, 3, 20, 182, 20, 146, 69, 17, 114, 246, + 212, 63, 191, 27, 5, 145, 204, 73, 215, 187, 15, 170, 27, 55, 99, 221, 142, 16, 134, 37, 59, 27, 206, 70, 75, 170, + 15, 186, 250, 226, 76, 204, 92, 46, 64, 154, 177, 55, 117, 18, 145, 132, 196, 27, 213, 85, 83, 253, 252, 240, 251, + 175, 73, 30, 234, 156, 181, 148, 59, 214, 105, 3, 27, 225, 231, 17, 205, 50, 181, 55, 250, 71, 204, 105, 22, 246, + 25, 182, 87, 27, 240, 119, 215, 70, 118, 37, 185, 188, 27, 221, 213, 194, 250, 197, 101, 117, 3, 27, 250, 74, 160, + 50, 182, 72, 112, 238, 27, 246, 147, 253, 149, 70, 131, 116, 190, 255, 76, 72, 20, 0, 150, 175, 206, 255, 186, + 164, 206, 166, 57, 255, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3244, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10709555424152500771" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11947551402526358527" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8588921553353779802" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3532460167849969197" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4290070663092068692" + } + }, + { + "_tag": "ByteArray", + "bytearray": "483ce3f7" + }, + { + "_tag": "ByteArray", + "bytearray": "7d342b7f3825e25e53" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13622776769382983943" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11829912600186237150" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8312461311030104044" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2814140272924615767" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17570557712211779778" + } + } + ] + }, + "cborHex": "9f80d8669f1b949ffbeaa6f7ba239fd8669f1ba5ce3ab3234dbbff80ffd8669f1b7731faa58f592a5a9f1b3105d1ce8fea062d1b3b896489ceed615444483ce3f7497d342b7f3825e25e53ffffd8669f1bbd0dd34b918429079f1ba42c4ad51204b0deffff9f1b735bcb8565208fecffffffd8669f1b270dd5ab13cae45780ff1bf3d729257de220c2ff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 148, 159, 251, 234, 166, 247, 186, 35, 159, 216, 102, 159, 27, 165, 206, 58, 179, 35, + 77, 187, 255, 128, 255, 216, 102, 159, 27, 119, 49, 250, 165, 143, 89, 42, 90, 159, 27, 49, 5, 209, 206, 143, 234, + 6, 45, 27, 59, 137, 100, 137, 206, 237, 97, 84, 68, 72, 60, 227, 247, 73, 125, 52, 43, 127, 56, 37, 226, 94, 83, + 255, 255, 216, 102, 159, 27, 189, 13, 211, 75, 145, 132, 41, 7, 159, 27, 164, 44, 74, 213, 18, 4, 176, 222, 255, + 255, 159, 27, 115, 91, 203, 133, 101, 32, 143, 236, 255, 255, 255, 216, 102, 159, 27, 39, 13, 213, 171, 19, 202, + 228, 87, 128, 255, 27, 243, 215, 41, 37, 125, 226, 32, 194, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3245, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3156319725421283695" + } + }, + "cborHex": "1b2bcd80113f4b496f", + "cborBytes": [27, 43, 205, 128, 17, 63, 75, 73, 111], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3246, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d2c9cd7d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14382683673261311640" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "608762cf1a2198a3fdbbaf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12074790403597241676" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9438869601426669422" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0df7d874e0430a2fe12ffce6" + }, + { + "_tag": "ByteArray", + "bytearray": "0c" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + }, + "cborHex": "9fd905029f44d2c9cd7dd8669f1bc7998e991d8d06989f4b608762cf1a2198a3fdbbaf1ba79245e5a7b58d4cffff9f1b82fd99e4aa44ff6e4c0df7d874e0430a2fe12ffce6410cffff14ff", + "cborBytes": [ + 159, 217, 5, 2, 159, 68, 210, 201, 205, 125, 216, 102, 159, 27, 199, 153, 142, 153, 29, 141, 6, 152, 159, 75, 96, + 135, 98, 207, 26, 33, 152, 163, 253, 187, 175, 27, 167, 146, 69, 229, 167, 181, 141, 76, 255, 255, 159, 27, 130, + 253, 153, 228, 170, 68, 255, 110, 76, 13, 247, 216, 116, 224, 67, 10, 47, 225, 47, 252, 230, 65, 12, 255, 255, 20, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3247, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15935080400412607067" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "344715631485597533" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2224897792487603201" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2419672406853104575" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4567518001656688380" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f969dbec9b93ea5799d5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7772058102207249906" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9efe592a2600542" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9179614163167992674" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3323213361890422353" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14061315609582593691" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13247105882472450962" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3856aee537ca94" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5918630364990009366" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9101724151439985015" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "662a0effba0c11662c" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bdd24c7324de2025b9fd8669f1b04c8ad0a5b39375d80ff9fbf1b1ee06cc116c63c011b2194673beb4b33bf1b3f63156c39f2eefc4af969dbec9b93ea5799d51b6bdbe5aa73c27df248c9efe592a26005421b7f648a721ac5db621b2e1e6cf20c4f6e511bc323d40bffd3669b1bb7d72c9d2ac20b92ff473856aee537ca949f1b522332f56e11f016ffffbf1b7e4fd1e48a2c897749662a0effba0c11662cffffff", + "cborBytes": [ + 216, 102, 159, 27, 221, 36, 199, 50, 77, 226, 2, 91, 159, 216, 102, 159, 27, 4, 200, 173, 10, 91, 57, 55, 93, 128, + 255, 159, 191, 27, 30, 224, 108, 193, 22, 198, 60, 1, 27, 33, 148, 103, 59, 235, 75, 51, 191, 27, 63, 99, 21, 108, + 57, 242, 238, 252, 74, 249, 105, 219, 236, 155, 147, 234, 87, 153, 213, 27, 107, 219, 229, 170, 115, 194, 125, + 242, 72, 201, 239, 229, 146, 162, 96, 5, 66, 27, 127, 100, 138, 114, 26, 197, 219, 98, 27, 46, 30, 108, 242, 12, + 79, 110, 81, 27, 195, 35, 212, 11, 255, 211, 102, 155, 27, 183, 215, 44, 157, 42, 194, 11, 146, 255, 71, 56, 86, + 174, 229, 55, 202, 148, 159, 27, 82, 35, 50, 245, 110, 17, 240, 22, 255, 255, 191, 27, 126, 79, 209, 228, 138, 44, + 137, 119, 73, 102, 42, 14, 255, 186, 12, 17, 102, 44, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3248, + "sample": { + "_tag": "ByteArray", + "bytearray": "063d00dc" + }, + "cborHex": "44063d00dc", + "cborBytes": [68, 6, 61, 0, 220], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3249, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05ff04" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0600" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e0104f6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5465052443370000337" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4ce893ec27d517f26" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16496621029933640706" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17399539110327788403" + } + }, + { + "_tag": "ByteArray", + "bytearray": "59" + } + ] + } + } + ] + }, + "cborHex": "bf4102094305ff04a042060080441e0104f6bf42c4a41b4bd7c43dfdf30fd1ff413c8049c4ce893ec27d517f26d8669f1be4efc56c836eec029f1bf17794a2569aa3734159ffffff", + "cborBytes": [ + 191, 65, 2, 9, 67, 5, 255, 4, 160, 66, 6, 0, 128, 68, 30, 1, 4, 246, 191, 66, 196, 164, 27, 75, 215, 196, 61, 253, + 243, 15, 209, 255, 65, 60, 128, 73, 196, 206, 137, 62, 194, 125, 81, 127, 38, 216, 102, 159, 27, 228, 239, 197, + 108, 131, 110, 236, 2, 159, 27, 241, 119, 148, 162, 86, 154, 163, 115, 65, 89, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3250, + "sample": { + "_tag": "ByteArray", + "bytearray": "e10ef28d761dd78e0af1a6" + }, + "cborHex": "4be10ef28d761dd78e0af1a6", + "cborBytes": [75, 225, 14, 242, 141, 118, 29, 215, 142, 10, 241, 166], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3251, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11301057053436345618" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a00d36df4817a41405" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15877861605277143886" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb197eaf4074" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6656249218759632022" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef45a647c4afe3b610" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17836980828820726052" + } + } + } + ] + } + ] + }, + "cborHex": "d87a9f1b9cd56b83b87efd12bf49a00d36df4817a414051bdc597f01675b934e46bb197eaf40741b5c5fbf65eca3a49649ef45a647c4afe3b6101bf789af8f374fe124ffff", + "cborBytes": [ + 216, 122, 159, 27, 156, 213, 107, 131, 184, 126, 253, 18, 191, 73, 160, 13, 54, 223, 72, 23, 164, 20, 5, 27, 220, + 89, 127, 1, 103, 91, 147, 78, 70, 187, 25, 126, 175, 64, 116, 27, 92, 95, 191, 101, 236, 163, 164, 150, 73, 239, + 69, 166, 71, 196, 175, 227, 182, 16, 27, 247, 137, 175, 143, 55, 79, 225, 36, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3252, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2295620010688652609" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffff41b1fdbae3cac602541ff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 27, 31, 219, 174, 60, 172, 96, 37, 65, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3253, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bf0e8ff0504548f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03df64031b00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b4cd1dda1d0c8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf485bf0e8ff0504548fbf4603df64031b00477b4cd1dda1d0c8415300ffff", + "cborBytes": [ + 191, 72, 91, 240, 232, 255, 5, 4, 84, 143, 191, 70, 3, 223, 100, 3, 27, 0, 71, 123, 76, 209, 221, 161, 208, 200, + 65, 83, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3254, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6033713741660464626" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "19f414" + }, + { + "_tag": "ByteArray", + "bytearray": "636f70c7" + }, + { + "_tag": "ByteArray", + "bytearray": "71f52223e16a" + }, + { + "_tag": "ByteArray", + "bytearray": "2e106651b1a18a8f7b39bb" + } + ] + }, + "cborHex": "d8669f1b53bc0eae1810a5f29f4319f41444636f70c74671f52223e16a4b2e106651b1a18a8f7b39bbffff", + "cborBytes": [ + 216, 102, 159, 27, 83, 188, 14, 174, 24, 16, 165, 242, 159, 67, 25, 244, 20, 68, 99, 111, 112, 199, 70, 113, 245, + 34, 35, 225, 106, 75, 46, 16, 102, 81, 177, 161, 138, 143, 123, 57, 187, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3255, + "sample": { + "_tag": "ByteArray", + "bytearray": "fb34b2" + }, + "cborHex": "43fb34b2", + "cborBytes": [67, 251, 52, 178], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3256, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15232237198074022968" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4683371641477602815" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10841531780043331845" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13553821996091593496" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7811558112588365882" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a26b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "967652156141084693" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ce4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2636339758547398991" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0164b63e880a98d647a182a9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5111347982069568937" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e6f3650d75ec2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9573457662859365280" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c08f9918233" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13070438465509083772" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8358694925943809231" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15359556392240413145" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fae438853344173f69b26bdc" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bd363c7071db18c38bf1b40feadb1c1691dff1b9674dbb68a9759051bbc18d94b51ea53181b6c683ab74b26803aff431a26b71b0d6dca8258ee2015429ce4bf1b2496290adf74f14f4c0164b63e880a98d647a182a91b46ef27e89aaa95a9479e6f3650d75ec21b84dbc105a2f94ba0461c08f99182331bb5638688c3454a7c1b74000cbfb6bda4cf1bd5281b290b11f9d94cfae438853344173f69b26bdcffff", + "cborBytes": [ + 191, 27, 211, 99, 199, 7, 29, 177, 140, 56, 191, 27, 64, 254, 173, 177, 193, 105, 29, 255, 27, 150, 116, 219, 182, + 138, 151, 89, 5, 27, 188, 24, 217, 75, 81, 234, 83, 24, 27, 108, 104, 58, 183, 75, 38, 128, 58, 255, 67, 26, 38, + 183, 27, 13, 109, 202, 130, 88, 238, 32, 21, 66, 156, 228, 191, 27, 36, 150, 41, 10, 223, 116, 241, 79, 76, 1, + 100, 182, 62, 136, 10, 152, 214, 71, 161, 130, 169, 27, 70, 239, 39, 232, 154, 170, 149, 169, 71, 158, 111, 54, + 80, 215, 94, 194, 27, 132, 219, 193, 5, 162, 249, 75, 160, 70, 28, 8, 249, 145, 130, 51, 27, 181, 99, 134, 136, + 195, 69, 74, 124, 27, 116, 0, 12, 191, 182, 189, 164, 207, 27, 213, 40, 27, 41, 11, 17, 249, 217, 76, 250, 228, + 56, 133, 51, 68, 23, 63, 105, 178, 107, 220, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3257, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14181354935627007982" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5162813578245365123" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15587962875789897697" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15819272647183627027" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5707ac53e5e6d2e3a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1838352599513745689" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17577676330462312851" + } + } + } + ] + }, + "cborHex": "bf1bc4ce4b2d8bc7c7ee9f1b47a5ff987ce0dd831bd85391a59f6eefe11bdb8958a8946ef31349f5707ac53e5e6d2e3a1b198323f301eec919ff42ff061bf3f0737df5ff7993ff", + "cborBytes": [ + 191, 27, 196, 206, 75, 45, 139, 199, 199, 238, 159, 27, 71, 165, 255, 152, 124, 224, 221, 131, 27, 216, 83, 145, + 165, 159, 110, 239, 225, 27, 219, 137, 88, 168, 148, 110, 243, 19, 73, 245, 112, 122, 197, 62, 94, 109, 46, 58, + 27, 25, 131, 35, 243, 1, 238, 201, 25, 255, 66, 255, 6, 27, 243, 240, 115, 125, 245, 255, 121, 147, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3258, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4179400466667773139" + }, + "fields": [] + }, + "cborHex": "d8669f1b3a003694bdd59cd380ff", + "cborBytes": [216, 102, 159, 27, 58, 0, 54, 148, 189, 213, 156, 211, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3259, + "sample": { + "_tag": "ByteArray", + "bytearray": "07fe" + }, + "cborHex": "4207fe", + "cborBytes": [66, 7, 254], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3260, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "750871198312582708" + } + }, + "cborHex": "1b0a6ba160677e4e34", + "cborBytes": [27, 10, 107, 161, 96, 103, 126, 78, 52], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3261, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4855525002257098871" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0ddb4f2eb5e35a8525" + }, + { + "_tag": "ByteArray", + "bytearray": "b677cc65b78c4f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17289180244175704813" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ae7628512a5376351a52ae" + }, + { + "_tag": "ByteArray", + "bytearray": "2a7139495e24adca" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12886026271388440126" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1563501622946542595" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2475f49278480db0634993" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f02dd548bd8a038cd54" + } + } + ] + }, + "cborHex": "bf1b43624a438d8fe8779f490ddb4f2eb5e35a852547b677cc65b78c4f1befef81d47fcb52ed4bae7628512a5376351a52ae482a7139495e24adcaff1bb2d45c9ee875963ed8669f1b15b2ac713979b40380ff4b2475f49278480db06349934a4f02dd548bd8a038cd54ff", + "cborBytes": [ + 191, 27, 67, 98, 74, 67, 141, 143, 232, 119, 159, 73, 13, 219, 79, 46, 181, 227, 90, 133, 37, 71, 182, 119, 204, + 101, 183, 140, 79, 27, 239, 239, 129, 212, 127, 203, 82, 237, 75, 174, 118, 40, 81, 42, 83, 118, 53, 26, 82, 174, + 72, 42, 113, 57, 73, 94, 36, 173, 202, 255, 27, 178, 212, 92, 158, 232, 117, 150, 62, 216, 102, 159, 27, 21, 178, + 172, 113, 57, 121, 180, 3, 128, 255, 75, 36, 117, 244, 146, 120, 72, 13, 176, 99, 73, 147, 74, 79, 2, 221, 84, + 139, 216, 160, 56, 205, 84, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3262, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15112568627754782757" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18309838964788102437" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6508b3b3abe200" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0357c3ebe3bb443e" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "509a80eb95" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17260472557613349271" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ec6e2e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11405383928911114948" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9d48007a714d3cc5ad2a226c" + } + ] + }, + "cborHex": "9fbf1bd1baa118dd0950251bfe199d875ecd0525476508b3b3abe200480357c3ebe3bb443eff9f45509a80eb95d8669f1bef8984575bebf99780ff43ec6e2e1b9e48104149b232c4ff4c9d48007a714d3cc5ad2a226cff", + "cborBytes": [ + 159, 191, 27, 209, 186, 161, 24, 221, 9, 80, 37, 27, 254, 25, 157, 135, 94, 205, 5, 37, 71, 101, 8, 179, 179, 171, + 226, 0, 72, 3, 87, 195, 235, 227, 187, 68, 62, 255, 159, 69, 80, 154, 128, 235, 149, 216, 102, 159, 27, 239, 137, + 132, 87, 91, 235, 249, 151, 128, 255, 67, 236, 110, 46, 27, 158, 72, 16, 65, 73, 178, 50, 196, 255, 76, 157, 72, + 0, 122, 113, 77, 60, 197, 173, 42, 34, 108, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3263, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16945402255620644857" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1882619b6c18e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11231365286599532122" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ef732c350" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7784196802445612032" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67908e98" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d5ff38f8aca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16935424259476681718" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11464387773520091851" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05b3b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "082d394a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b022542" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6100228885910095505" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b25a1f614131" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b6b8efd95b65c8715aa" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ff71c190dbca125595d3b6" + } + ] + }, + "cborHex": "9f9f9f1beb2a2992265f1ff9ffbf471882619b6c18e01b9bddd338ca6b1e5a455ef732c3501b6c0705bfd78094004467908e98417a466d5ff38f8aca1beb06b6a2e2a3f3f6ffff1b9f19aff067ff1acbbf4305b3b344082d394a443b0225421b54a85dd9f13f869146b25a1f6141314a5b6b8efd95b65c8715aaff4bff71c190dbca125595d3b6ff", + "cborBytes": [ + 159, 159, 159, 27, 235, 42, 41, 146, 38, 95, 31, 249, 255, 191, 71, 24, 130, 97, 155, 108, 24, 224, 27, 155, 221, + 211, 56, 202, 107, 30, 90, 69, 94, 247, 50, 195, 80, 27, 108, 7, 5, 191, 215, 128, 148, 0, 68, 103, 144, 142, 152, + 65, 122, 70, 109, 95, 243, 143, 138, 202, 27, 235, 6, 182, 162, 226, 163, 243, 246, 255, 255, 27, 159, 25, 175, + 240, 103, 255, 26, 203, 191, 67, 5, 179, 179, 68, 8, 45, 57, 74, 68, 59, 2, 37, 66, 27, 84, 168, 93, 217, 241, 63, + 134, 145, 70, 178, 90, 31, 97, 65, 49, 74, 91, 107, 142, 253, 149, 182, 92, 135, 21, 170, 255, 75, 255, 113, 193, + 144, 219, 202, 18, 85, 149, 211, 182, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3264, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9b" + } + ] + }, + "cborHex": "9f08419bff", + "cborBytes": [159, 8, 65, 155, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3265, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14409410107761635584" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2aee77" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13268470037416252213" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fae57c5810" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3299114491326601056" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cea9f94fcdaaa" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fd2f277540" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5756595371606664427" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9088265202853290941" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c16" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11618810029156236267" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c462" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4356083233417139000" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6715335459659277149" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1ebce265828aad2c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "571591b78a90d7e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ca6c778c6fa3421df6f275d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d70e26e56eeeb3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9186025604609917070" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1746689400457617206" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4027cfe02bcb3d7146e9df7f" + }, + { + "_tag": "ByteArray", + "bytearray": "c6d45b" + }, + { + "_tag": "ByteArray", + "bytearray": "ffc89feb8ab85e12d0f9" + }, + { + "_tag": "ByteArray", + "bytearray": "2641b8b33bde90a3f807" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10253349377334290839" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4485666666536942156" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4870972960098214216" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8928777366509068938" + } + }, + { + "_tag": "ByteArray", + "bytearray": "97122f71108898aab0" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b745811df795b1d8149ccf45" + }, + { + "_tag": "ByteArray", + "bytearray": "46393499" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13380145701893682262" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bc7f88226100e31009f9fbf02432aee77041bb82313331d1c13350645fae57c58101b2dc8cf2680dd9760471cea9f94fcdaaaffff9f45fd2f277540d8669f1b4fe388fda045e4eb80ffffd8669f1bffffffffffffffee9fbf1b7e20010ce09d23bd429c161ba13e4e29949a7beb42c462ffd8669f1b3c73ea9f0bdd13389f0c13ffff1b5d31aa056c93635d481ebce265828aad2cffffbf48571591b78a90d7e74c3ca6c778c6fa3421df6f275d47d70e26e56eeeb31b7f7b519e246ac08eff9fd8669f1b183d7cc15f375f369f4c4027cfe02bcb3d7146e9df7f43c6d45b4affc89feb8ab85e12d0f94a2641b8b33bde90a3f807ffffd8669f1b8e4b36ef21fba9979f1b3e404a112fbeba4c1b43992c19852fe148ffff9f1b7be963b54952228a4997122f71108898aab0ff9f4cb745811df795b1d8149ccf4544463934991bb9afd39ff457b456ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 199, 248, 130, 38, 16, 14, 49, 0, 159, 159, 191, 2, 67, 42, 238, 119, 4, 27, 184, 35, 19, 51, + 29, 28, 19, 53, 6, 69, 250, 229, 124, 88, 16, 27, 45, 200, 207, 38, 128, 221, 151, 96, 71, 28, 234, 159, 148, 252, + 218, 170, 255, 255, 159, 69, 253, 47, 39, 117, 64, 216, 102, 159, 27, 79, 227, 136, 253, 160, 69, 228, 235, 128, + 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 191, 27, 126, 32, 1, 12, 224, 157, 35, + 189, 66, 156, 22, 27, 161, 62, 78, 41, 148, 154, 123, 235, 66, 196, 98, 255, 216, 102, 159, 27, 60, 115, 234, 159, + 11, 221, 19, 56, 159, 12, 19, 255, 255, 27, 93, 49, 170, 5, 108, 147, 99, 93, 72, 30, 188, 226, 101, 130, 138, + 173, 44, 255, 255, 191, 72, 87, 21, 145, 183, 138, 144, 215, 231, 76, 60, 166, 199, 120, 198, 250, 52, 33, 223, + 111, 39, 93, 71, 215, 14, 38, 229, 110, 238, 179, 27, 127, 123, 81, 158, 36, 106, 192, 142, 255, 159, 216, 102, + 159, 27, 24, 61, 124, 193, 95, 55, 95, 54, 159, 76, 64, 39, 207, 224, 43, 203, 61, 113, 70, 233, 223, 127, 67, + 198, 212, 91, 74, 255, 200, 159, 235, 138, 184, 94, 18, 208, 249, 74, 38, 65, 184, 179, 59, 222, 144, 163, 248, 7, + 255, 255, 216, 102, 159, 27, 142, 75, 54, 239, 33, 251, 169, 151, 159, 27, 62, 64, 74, 17, 47, 190, 186, 76, 27, + 67, 153, 44, 25, 133, 47, 225, 72, 255, 255, 159, 27, 123, 233, 99, 181, 73, 82, 34, 138, 73, 151, 18, 47, 113, + 16, 136, 152, 170, 176, 255, 159, 76, 183, 69, 129, 29, 247, 149, 177, 216, 20, 156, 207, 69, 68, 70, 57, 52, 153, + 27, 185, 175, 211, 159, 244, 87, 180, 86, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3266, + "sample": { + "_tag": "ByteArray", + "bytearray": "5d997766" + }, + "cborHex": "445d997766", + "cborBytes": [68, 93, 153, 119, 102], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3267, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "421825927634999597" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15678803311337349550" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0e4302fc0518c704" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a30105070001fd0484e202" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06fa28f9c80702" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14652918694449600922" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f98afe02d54b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5203c39d85367cf4aa" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2844069203047725179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8328534746608636523" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17196618800721134966" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "709a96ef3cfb6670" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8039d9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f11a2c276c73562bc546" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17992382834481931317" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1164770179409390901" + } + } + ] + }, + "cborHex": "d8669f1b05daa0723dbbd92d9fd87c9fd8669f1bd9964c8ab37b21ae80ffff480e4302fc0518c7049fbf0e4ba30105070001fd0484e2024706fa28f9c807021bcb599feb0959599a46f98afe02d54b495203c39d85367cf4aaffbf1b277829df2449b87b1b7394e639bf1b126b1beea6a9b00ac9857641d148709a96ef3cfb6670438039d94af11a2c276c73562bc5461bf9b1c8dc3821a435ffff1b102a184e94aa2d35ffff", + "cborBytes": [ + 216, 102, 159, 27, 5, 218, 160, 114, 61, 187, 217, 45, 159, 216, 124, 159, 216, 102, 159, 27, 217, 150, 76, 138, + 179, 123, 33, 174, 128, 255, 255, 72, 14, 67, 2, 252, 5, 24, 199, 4, 159, 191, 14, 75, 163, 1, 5, 7, 0, 1, 253, 4, + 132, 226, 2, 71, 6, 250, 40, 249, 200, 7, 2, 27, 203, 89, 159, 235, 9, 89, 89, 154, 70, 249, 138, 254, 2, 213, 75, + 73, 82, 3, 195, 157, 133, 54, 124, 244, 170, 255, 191, 27, 39, 120, 41, 223, 36, 73, 184, 123, 27, 115, 148, 230, + 57, 191, 27, 18, 107, 27, 238, 166, 169, 176, 10, 201, 133, 118, 65, 209, 72, 112, 154, 150, 239, 60, 251, 102, + 112, 67, 128, 57, 217, 74, 241, 26, 44, 39, 108, 115, 86, 43, 197, 70, 27, 249, 177, 200, 220, 56, 33, 164, 53, + 255, 255, 27, 16, 42, 24, 78, 148, 170, 45, 53, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3268, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8408908451980963386" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + ] + }, + "cborHex": "d8669f1b74b271af4d1aee3a9f071bfffffffffffffff5ffff", + "cborBytes": [ + 216, 102, 159, 27, 116, 178, 113, 175, 77, 26, 238, 58, 159, 7, 27, 255, 255, 255, 255, 255, 255, 255, 245, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3269, + "sample": { + "_tag": "ByteArray", + "bytearray": "3052" + }, + "cborHex": "423052", + "cborBytes": [66, 48, 82], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3270, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4599501514615415924" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6607370851564997966" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1342371065795278290" + } + } + ] + }, + "cborHex": "d8669f1b3fd4b6422285e4749fd8669f1b5bb218c83acd4d4e80ff1b12a10f5f457d75d2ffff", + "cborBytes": [ + 216, 102, 159, 27, 63, 212, 182, 66, 34, 133, 228, 116, 159, 216, 102, 159, 27, 91, 178, 24, 200, 58, 205, 77, 78, + 128, 255, 27, 18, 161, 15, 95, 69, 125, 117, 210, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3271, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + ] + }, + "cborHex": "9f1bffffffffffffffecff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3272, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f802fbfb444d02fc05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + } + ] + } + ] + }, + "cborHex": "d87f9f80bf49f802fbfb444d02fc051bfffffffffffffff9ffff", + "cborBytes": [ + 216, 127, 159, 128, 191, 73, 248, 2, 251, 251, 68, 77, 2, 252, 5, 27, 255, 255, 255, 255, 255, 255, 255, 249, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3273, + "sample": { + "_tag": "ByteArray", + "bytearray": "cb5467de78cc9f" + }, + "cborHex": "47cb5467de78cc9f", + "cborBytes": [71, 203, 84, 103, 222, 120, 204, 159], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3274, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8294106736520969558" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2127bd5016" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9576321055282157773" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d2a192d3e2ba0a32b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10893238085071308459" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6339643637170121514" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2820194493851363308" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b731a9621ff81bd56079f452127bd5016d8669f1b84e5ed43232fd8cd9f49d2a192d3e2ba0a32b01b972c8e52d26e86abffff9f1b57faf04c94172b2a1b272357f33b85e7ecffffff", + "cborBytes": [ + 159, 27, 115, 26, 150, 33, 255, 129, 189, 86, 7, 159, 69, 33, 39, 189, 80, 22, 216, 102, 159, 27, 132, 229, 237, + 67, 35, 47, 216, 205, 159, 73, 210, 161, 146, 211, 226, 186, 10, 50, 176, 27, 151, 44, 142, 82, 210, 110, 134, + 171, 255, 255, 159, 27, 87, 250, 240, 76, 148, 23, 43, 42, 27, 39, 35, 87, 243, 59, 133, 231, 236, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3275, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13063034313762227308" + } + }, + "cborHex": "1bb549387f5889446c", + "cborBytes": [27, 181, 73, 56, 127, 88, 137, 68, 108], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3276, + "sample": { + "_tag": "ByteArray", + "bytearray": "0afac4c0c9" + }, + "cborHex": "450afac4c0c9", + "cborBytes": [69, 10, 250, 196, 192, 201], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3277, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10064051626194381749" + } + }, + { + "_tag": "ByteArray", + "bytearray": "80" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10677836061818354538" + } + }, + { + "_tag": "ByteArray", + "bytearray": "447cd907" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15073789143276190646" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8097945074972221484" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11421069608820463026" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8924615160096457592" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1516373482545790351" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f9fa09f1b8baab1a1e4822bb541801b942f4b531a89fb6a44447cd907ffd8669f1bd130db5c881dfbb69f1b7061ae241457e02c1b9e7fca4c3cc0d5b2ffff1b7bda9a34169d8378a0ff1b150b3da5f5f6bd8f80a0ff", + "cborBytes": [ + 159, 159, 160, 159, 27, 139, 170, 177, 161, 228, 130, 43, 181, 65, 128, 27, 148, 47, 75, 83, 26, 137, 251, 106, + 68, 68, 124, 217, 7, 255, 216, 102, 159, 27, 209, 48, 219, 92, 136, 29, 251, 182, 159, 27, 112, 97, 174, 36, 20, + 87, 224, 44, 27, 158, 127, 202, 76, 60, 192, 213, 178, 255, 255, 27, 123, 218, 154, 52, 22, 157, 131, 120, 160, + 255, 27, 21, 11, 61, 165, 245, 246, 189, 143, 128, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3278, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1656392771278238641" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f7b2ea5ebfaf4d8b208d" + }, + { + "_tag": "ByteArray", + "bytearray": "9684465db323837f5ab0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11400615461379047369" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "487317092471340128" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18361542994705517270" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4749558366818831198" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b16fcb073149073b19f4af7b2ea5ebfaf4d8b208d4a9684465db323837f5ab01b9e371f5bec52ffc91b06c34c504dbafc601bfed14e11ef7c0ad6ff1b41e9d22b9e388b5ea0ff", + "cborBytes": [ + 191, 27, 22, 252, 176, 115, 20, 144, 115, 177, 159, 74, 247, 178, 234, 94, 191, 175, 77, 139, 32, 141, 74, 150, + 132, 70, 93, 179, 35, 131, 127, 90, 176, 27, 158, 55, 31, 91, 236, 82, 255, 201, 27, 6, 195, 76, 80, 77, 186, 252, + 96, 27, 254, 209, 78, 17, 239, 124, 10, 214, 255, 27, 65, 233, 210, 43, 158, 56, 139, 94, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3279, + "sample": { + "_tag": "ByteArray", + "bytearray": "3a5eb3" + }, + "cborHex": "433a5eb3", + "cborBytes": [67, 58, 94, 179], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3280, + "sample": { + "_tag": "ByteArray", + "bytearray": "bbfdfe33" + }, + "cborHex": "44bbfdfe33", + "cborBytes": [68, 187, 253, 254, 51], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3281, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11766479907411429875" + } + }, + "cborHex": "1ba34aef22620789f3", + "cborBytes": [27, 163, 74, 239, 34, 98, 7, 137, 243], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3282, + "sample": { + "_tag": "ByteArray", + "bytearray": "ad1646b118604ea612" + }, + "cborHex": "49ad1646b118604ea612", + "cborBytes": [73, 173, 22, 70, 177, 24, 96, 78, 166, 18], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3283, + "sample": { + "_tag": "ByteArray", + "bytearray": "009ef1f8ad" + }, + "cborHex": "45009ef1f8ad", + "cborBytes": [69, 0, 158, 241, 248, 173], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3284, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10037951264599581939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07b8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17262510330472763953" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2061196748073797014" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14584396327589524780" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15198996157075935822" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1cb6c42185cc7f" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16004970028629161843" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12682128418171687774" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17642122285522089467" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16772497952352478837" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ac3815aac6cf045c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35be72ebbdef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13868341954082191041" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3976d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7cbe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5be98b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13873520920078597920" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d66d3c1d8a180cb2f05f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1482327112045742837" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "772772" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11782381570877405718" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11647768159814377516" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4449086568069733179" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c663" + }, + { + "_tag": "ByteArray", + "bytearray": "69" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7207817857307833545" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2702405d7d48cc53" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1720847662b" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16819492306339679149" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c20c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d641c1b73097d3e72" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "484d37f5fecd4c0da7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9248435919240814992" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61b02326a780570f69" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15596068705987190480" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d358f4b53a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12723191744132855858" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d97eff69657d83761e10d3dc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1886114413102479824" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6f1e5663c76283f49c" + }, + { + "_tag": "ByteArray", + "bytearray": "f6b50f4ec5fbb80007" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6268444307336306583" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7317940554961699547" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11320131288061300646" + } + }, + { + "_tag": "ByteArray", + "bytearray": "63fb7bece963c3" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a67acccf3cf3" + } + ] + } + ] + }, + "cborHex": "9fbf1b8b4df77de72424f34207b8ff9fa01bef90c1af53571231d8669f1b1c9ad7858d21059680ff9f1bca662f30417c352c1bd2edae7a2509d24e471cb6c42185cc7fffff80d8669f1bde1d13716d36f7739fd8669f1baffff89a8102935e9f1bf4d568bf288bf5fb414c1be8c3e205edefa675ffffbf490ac3815aac6cf045c54287f94635be72ebbdef1bc0763f8794b736c1433976d8427cbe435be98b1bc088a5c5913c3f204b5d66d3c1d8a180cb2f05f31b149248a79a6acaf5ff9f437727721ba3836d9cec41ba161ba1a52f6dc7d7602cff9f1b3dbe54a950c21b3b42c66341691b640750270e8cf4c9ffbf482702405d7d48cc5346d1720847662bffffff9fbf412a1be96ad7239dcacbad433c20c2499d641c1b73097d3e7249484d37f5fecd4c0da71b80590b77de4fe1904961b02326a780570f691bd8705ddb48f3ded045d358f4b53a1bb091db7b1e38b8324cd97eff69657d83761e10d3dc1b1a2cd310ceb7b9d0ff496f1e5663c76283f49c49f6b50f4ec5fbb800079f1b56fdfce2c9199f971b658e8c29a1eac2db1b9d192f6e0badcfa64763fb7bece963c3ff46a67acccf3cf3ffff", + "cborBytes": [ + 159, 191, 27, 139, 77, 247, 125, 231, 36, 36, 243, 66, 7, 184, 255, 159, 160, 27, 239, 144, 193, 175, 83, 87, 18, + 49, 216, 102, 159, 27, 28, 154, 215, 133, 141, 33, 5, 150, 128, 255, 159, 27, 202, 102, 47, 48, 65, 124, 53, 44, + 27, 210, 237, 174, 122, 37, 9, 210, 78, 71, 28, 182, 196, 33, 133, 204, 127, 255, 255, 128, 216, 102, 159, 27, + 222, 29, 19, 113, 109, 54, 247, 115, 159, 216, 102, 159, 27, 175, 255, 248, 154, 129, 2, 147, 94, 159, 27, 244, + 213, 104, 191, 40, 139, 245, 251, 65, 76, 27, 232, 195, 226, 5, 237, 239, 166, 117, 255, 255, 191, 73, 10, 195, + 129, 90, 172, 108, 240, 69, 197, 66, 135, 249, 70, 53, 190, 114, 235, 189, 239, 27, 192, 118, 63, 135, 148, 183, + 54, 193, 67, 57, 118, 216, 66, 124, 190, 67, 91, 233, 139, 27, 192, 136, 165, 197, 145, 60, 63, 32, 75, 93, 102, + 211, 193, 216, 161, 128, 203, 47, 5, 243, 27, 20, 146, 72, 167, 154, 106, 202, 245, 255, 159, 67, 119, 39, 114, + 27, 163, 131, 109, 156, 236, 65, 186, 22, 27, 161, 165, 47, 109, 199, 215, 96, 44, 255, 159, 27, 61, 190, 84, 169, + 80, 194, 27, 59, 66, 198, 99, 65, 105, 27, 100, 7, 80, 39, 14, 140, 244, 201, 255, 191, 72, 39, 2, 64, 93, 125, + 72, 204, 83, 70, 209, 114, 8, 71, 102, 43, 255, 255, 255, 159, 191, 65, 42, 27, 233, 106, 215, 35, 157, 202, 203, + 173, 67, 60, 32, 194, 73, 157, 100, 28, 27, 115, 9, 125, 62, 114, 73, 72, 77, 55, 245, 254, 205, 76, 13, 167, 27, + 128, 89, 11, 119, 222, 79, 225, 144, 73, 97, 176, 35, 38, 167, 128, 87, 15, 105, 27, 216, 112, 93, 219, 72, 243, + 222, 208, 69, 211, 88, 244, 181, 58, 27, 176, 145, 219, 123, 30, 56, 184, 50, 76, 217, 126, 255, 105, 101, 125, + 131, 118, 30, 16, 211, 220, 27, 26, 44, 211, 16, 206, 183, 185, 208, 255, 73, 111, 30, 86, 99, 199, 98, 131, 244, + 156, 73, 246, 181, 15, 78, 197, 251, 184, 0, 7, 159, 27, 86, 253, 252, 226, 201, 25, 159, 151, 27, 101, 142, 140, + 41, 161, 234, 194, 219, 27, 157, 25, 47, 110, 11, 173, 207, 166, 71, 99, 251, 123, 236, 233, 99, 195, 255, 70, + 166, 122, 204, 207, 60, 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3285, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf05d8669f1bfffffffffffffff880ffff", + "cborBytes": [191, 5, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3286, + "sample": { + "_tag": "ByteArray", + "bytearray": "4ff4b1" + }, + "cborHex": "434ff4b1", + "cborBytes": [67, 79, 244, 177], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3287, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c784b0cccb" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17146719208387285699" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4456227138214495354" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8581630279067967260" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15740879917968106206" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12514842675915248580" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7668032987478944483" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6efcbb279b56ae" + }, + { + "_tag": "ByteArray", + "bytearray": "66b959ad82a3e63185" + } + ] + }, + "cborHex": "9f45c784b0cccb9f1bedf56245d74a92c39f1b3dd7b2f8dbbb047a1b7718134579951f1c1bda72d6e2fa91a2de1badada71b75d3d3c41b6a6a536008a8eae3ffff476efcbb279b56ae4966b959ad82a3e63185ff", + "cborBytes": [ + 159, 69, 199, 132, 176, 204, 203, 159, 27, 237, 245, 98, 69, 215, 74, 146, 195, 159, 27, 61, 215, 178, 248, 219, + 187, 4, 122, 27, 119, 24, 19, 69, 121, 149, 31, 28, 27, 218, 114, 214, 226, 250, 145, 162, 222, 27, 173, 173, 167, + 27, 117, 211, 211, 196, 27, 106, 106, 83, 96, 8, 168, 234, 227, 255, 255, 71, 110, 252, 187, 39, 155, 86, 174, 73, + 102, 185, 89, 173, 130, 163, 230, 49, 133, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3288, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5983336332917050141" + } + }, + "cborHex": "1b530914b197358b1d", + "cborBytes": [27, 83, 9, 20, 177, 151, 53, 139, 29], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3289, + "sample": { + "_tag": "ByteArray", + "bytearray": "4d8bffea7c0120e8" + }, + "cborHex": "484d8bffea7c0120e8", + "cborBytes": [72, 77, 139, 255, 234, 124, 1, 32, 232], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3290, + "sample": { + "_tag": "ByteArray", + "bytearray": "03ad25" + }, + "cborHex": "4303ad25", + "cborBytes": [67, 3, 173, 37], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3291, + "sample": { + "_tag": "ByteArray", + "bytearray": "997e" + }, + "cborHex": "42997e", + "cborBytes": [66, 153, 126], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3292, + "sample": { + "_tag": "ByteArray", + "bytearray": "0350" + }, + "cborHex": "420350", + "cborBytes": [66, 3, 80], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3293, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2033614320199836854" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "643b34583c38b9e7c496dfab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9501436706585057072" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5306002820171286936" + } + }, + { + "_tag": "ByteArray", + "bytearray": "52b307fe61c6" + } + ] + } + } + ] + }, + "cborHex": "bf1b1c38d9731da8a4b64c643b34583c38b9e7c496dfab1b83dbe25807dc17309f1b49a2b573d987c9984652b307fe61c6ffff", + "cborBytes": [ + 191, 27, 28, 56, 217, 115, 29, 168, 164, 182, 76, 100, 59, 52, 88, 60, 56, 185, 231, 196, 150, 223, 171, 27, 131, + 219, 226, 88, 7, 220, 23, 48, 159, 27, 73, 162, 181, 115, 217, 135, 201, 152, 70, 82, 179, 7, 254, 97, 198, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3294, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06d96a4d05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3195626795657287591" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8240aee7dda76d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42" + } + } + ] + }, + "cborHex": "bf4506d96a4d051b2c5925a3b5df57a7478240aee7dda76d4142ff", + "cborBytes": [ + 191, 69, 6, 217, 106, 77, 5, 27, 44, 89, 37, 163, 181, 223, 87, 167, 71, 130, 64, 174, 231, 221, 167, 109, 65, 66, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3295, + "sample": { + "_tag": "ByteArray", + "bytearray": "658a0600bc" + }, + "cborHex": "45658a0600bc", + "cborBytes": [69, 101, 138, 6, 0, 188], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3296, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6187004636033399462" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9574362168794329673" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9628337392537125858" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18179997585449982870" + } + } + } + ] + }, + "cborHex": "bf1b55dca7efb2773aa61b84def7aa55ecb2491b859eb9d86bc943e21bfc4c537b72349b96ff", + "cborBytes": [ + 191, 27, 85, 220, 167, 239, 178, 119, 58, 166, 27, 132, 222, 247, 170, 85, 236, 178, 73, 27, 133, 158, 185, 216, + 107, 201, 67, 226, 27, 252, 76, 83, 123, 114, 52, 155, 150, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3297, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c3a" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff4426c3aff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 244, 66, 108, 58, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3298, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8842423400499102550" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10340391320751168067" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc939af821537fa14ac4acc7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5951646121763444752" + } + } + ] + }, + "cborHex": "d8669f1b7ab6993bcc59c3569f1b8f80731ed7e7da434cfc939af821537fa14ac4acc71b52987e9d548a9810ffff", + "cborBytes": [ + 216, 102, 159, 27, 122, 182, 153, 59, 204, 89, 195, 86, 159, 27, 143, 128, 115, 30, 215, 231, 218, 67, 76, 252, + 147, 154, 248, 33, 83, 127, 161, 74, 196, 172, 199, 27, 82, 152, 126, 157, 84, 138, 152, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3299, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3185052567808979345" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5710531717878761494" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3626597855990423268" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35dd8b98b41c55" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b663a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0060f40dbf83c737bd2" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12482742070287774561" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c5f3a7ac04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3967670244714349049" + } + }, + { + "_tag": "ByteArray", + "bytearray": "08eb442c67fae12a39" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4466176669203374792" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7872965690688230340" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3793643459185947392" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6451b1dd53dd790a0db7" + }, + { + "_tag": "ByteArray", + "bytearray": "174c1aa1d1893b425f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16175479359762241747" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b2c33946f6f3331911b4f3fe2577ac3c8161b3254438915809ee44735dd8b98b41c55438b663a4ac0060f40dbf83c737bd2ffa0ff9fd8669f1bad3b9bc6ca53b3619f45c5f3a7ac041b370fff10e21601f94908eb442c67fae12a391b3dfb0c04900122c8ffff1b6d4264953a4f53c4a0d8669f1b34a5baa0654333009f4a6451b1dd53dd790a0db749174c1aa1d1893b425f1be07ad8c6be4a98d3ffffffff", + "cborBytes": [ + 159, 159, 191, 27, 44, 51, 148, 111, 111, 51, 49, 145, 27, 79, 63, 226, 87, 122, 195, 200, 22, 27, 50, 84, 67, + 137, 21, 128, 158, 228, 71, 53, 221, 139, 152, 180, 28, 85, 67, 139, 102, 58, 74, 192, 6, 15, 64, 219, 248, 60, + 115, 123, 210, 255, 160, 255, 159, 216, 102, 159, 27, 173, 59, 155, 198, 202, 83, 179, 97, 159, 69, 197, 243, 167, + 172, 4, 27, 55, 15, 255, 16, 226, 22, 1, 249, 73, 8, 235, 68, 44, 103, 250, 225, 42, 57, 27, 61, 251, 12, 4, 144, + 1, 34, 200, 255, 255, 27, 109, 66, 100, 149, 58, 79, 83, 196, 160, 216, 102, 159, 27, 52, 165, 186, 160, 101, 67, + 51, 0, 159, 74, 100, 81, 177, 221, 83, 221, 121, 10, 13, 183, 73, 23, 76, 26, 161, 209, 137, 59, 66, 95, 27, 224, + 122, 216, 198, 190, 74, 152, 211, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3300, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4144687ca6846b1c8f9c37" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a34d0aa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "481281b17168a4bd3c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6094" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49ab0a0f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64143c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0899b5555" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f32e7d26a61454dfe3" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14105323258346950352" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16319624393974249503" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14550463389020769424" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6642747242746552721" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01afef376abe4845d67b" + }, + { + "_tag": "ByteArray", + "bytearray": "ff68431fbff44e" + }, + { + "_tag": "ByteArray", + "bytearray": "6e" + }, + { + "_tag": "ByteArray", + "bytearray": "5a967b1e60dc" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f4b4144687ca6846b1c8f9c3780ffbf441a34d0aa49481281b17168a4bd3c4260944449ab0a0f4364143c45a0899b5555ffd87f9f49f32e7d26a61454dfe3ffd8669f1bc3c02cc52fd34ed09f9f1be27af3ebd6a2781fff1bc9eda15c53e8cc900f9f1b5c2fc76c289d21914a01afef376abe4845d67b47ff68431fbff44e416e465a967b1e60dcffffffff", + "cborBytes": [ + 159, 159, 75, 65, 68, 104, 124, 166, 132, 107, 28, 143, 156, 55, 128, 255, 191, 68, 26, 52, 208, 170, 73, 72, 18, + 129, 177, 113, 104, 164, 189, 60, 66, 96, 148, 68, 73, 171, 10, 15, 67, 100, 20, 60, 69, 160, 137, 155, 85, 85, + 255, 216, 127, 159, 73, 243, 46, 125, 38, 166, 20, 84, 223, 227, 255, 216, 102, 159, 27, 195, 192, 44, 197, 47, + 211, 78, 208, 159, 159, 27, 226, 122, 243, 235, 214, 162, 120, 31, 255, 27, 201, 237, 161, 92, 83, 232, 204, 144, + 15, 159, 27, 92, 47, 199, 108, 40, 157, 33, 145, 74, 1, 175, 239, 55, 106, 190, 72, 69, 214, 123, 71, 255, 104, + 67, 31, 191, 244, 78, 65, 110, 70, 90, 150, 123, 30, 96, 220, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3301, + "sample": { + "_tag": "ByteArray", + "bytearray": "70f8fd143ca2164e9a6347" + }, + "cborHex": "4b70f8fd143ca2164e9a6347", + "cborBytes": [75, 112, 248, 253, 20, 60, 162, 22, 78, 154, 99, 71], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3302, + "sample": { + "_tag": "ByteArray", + "bytearray": "9f36c795" + }, + "cborHex": "449f36c795", + "cborBytes": [68, 159, 54, 199, 149], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3303, + "sample": { + "_tag": "ByteArray", + "bytearray": "6dfdda2cbe76" + }, + "cborHex": "466dfdda2cbe76", + "cborBytes": [70, 109, 253, 218, 44, 190, 118], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3304, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0149" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a948e0f924" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0201a9020301fd4c05ff07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28b3ff159b3236d5c3ef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17394820677521012612" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72fb700103" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "312637429131722874" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eeffd7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf00bf42014945a948e0f9244b0201a9020301fd4c05ff071bfffffffffffffff44a28b3ff159b3236d5c3ef1bf166d13e974277844572fb7001031b0456b615dae3407a43eeffd709ffff", + "cborBytes": [ + 191, 0, 191, 66, 1, 73, 69, 169, 72, 224, 249, 36, 75, 2, 1, 169, 2, 3, 1, 253, 76, 5, 255, 7, 27, 255, 255, 255, + 255, 255, 255, 255, 244, 74, 40, 179, 255, 21, 155, 50, 54, 213, 195, 239, 27, 241, 102, 209, 62, 151, 66, 119, + 132, 69, 114, 251, 112, 1, 3, 27, 4, 86, 182, 21, 218, 227, 64, 122, 67, 238, 255, 215, 9, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3305, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + "cborHex": "9f04ff", + "cborBytes": [159, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3306, + "sample": { + "_tag": "ByteArray", + "bytearray": "3c7ad117e9fec3722e" + }, + "cborHex": "493c7ad117e9fec3722e", + "cborBytes": [73, 60, 122, 209, 23, 233, 254, 195, 114, 46], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3307, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15946948334158243915" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17348746295255930100" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5671798045779850276" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9973753548451448952" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7261465972867741805" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8aa96587" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13712789347597384355" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3be" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14108412057663097441" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f6f4cb3b346" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15734047950082888043" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16444678548004964491" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18153580545250325454" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1209370019129379541" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18161541850314373962" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4764604836385032686" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27ef06" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "959026bbbe1b7cdb" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "74652e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d0e287611cc74536a326a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5274612420327177108" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4de7bc03820e0c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1570eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b42a9bccdef5609bc15a978" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11866536108826093308" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fc0d81c04b4f733" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb45" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b317209a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3386272116121702691" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11761114308302426805" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16977329432356246811" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17182965220985426689" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "406d8f8e092e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ed428a7c145" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bdd4ef104f502684b9f1bf0c320d6831a94f4bf1b4eb64645ac7674241b8a69e40254bd88781b64c5e8d4555e386d448aa965871bbe4d9d42174d7aa342b3be1bc3cb260451d8ca61462f6f4cb3b3461bda5a913f7fa7516b1be4373c030352888b1bfbee7952f91673ce1b10c88b9ff836cad5ffbf1bfc0ac216c160fb4a1b421f46dacfd689ee41194327ef06ff48959026bbbe1b7cdbffff4374652ebf4b2d0e287611cc74536a326a1b4933300cd976fb94474de7bc03820e0c431570eb4c5b42a9bccdef5609bc15a9781ba4ae67b828ece6fc487fc0d81c04b4f73342cb4544b317209a1b2efe748c623e9123ffbf1ba337df267d2152b51beb9b972b4260d51b1bee7627d448ba530146406d8f8e092e464ed428a7c14541ceffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 221, 78, 241, 4, 245, 2, 104, 75, 159, 27, 240, 195, 32, 214, 131, 26, 148, 244, 191, 27, + 78, 182, 70, 69, 172, 118, 116, 36, 27, 138, 105, 228, 2, 84, 189, 136, 120, 27, 100, 197, 232, 212, 85, 94, 56, + 109, 68, 138, 169, 101, 135, 27, 190, 77, 157, 66, 23, 77, 122, 163, 66, 179, 190, 27, 195, 203, 38, 4, 81, 216, + 202, 97, 70, 47, 111, 76, 179, 179, 70, 27, 218, 90, 145, 63, 127, 167, 81, 107, 27, 228, 55, 60, 3, 3, 82, 136, + 139, 27, 251, 238, 121, 82, 249, 22, 115, 206, 27, 16, 200, 139, 159, 248, 54, 202, 213, 255, 191, 27, 252, 10, + 194, 22, 193, 96, 251, 74, 27, 66, 31, 70, 218, 207, 214, 137, 238, 65, 25, 67, 39, 239, 6, 255, 72, 149, 144, 38, + 187, 190, 27, 124, 219, 255, 255, 67, 116, 101, 46, 191, 75, 45, 14, 40, 118, 17, 204, 116, 83, 106, 50, 106, 27, + 73, 51, 48, 12, 217, 118, 251, 148, 71, 77, 231, 188, 3, 130, 14, 12, 67, 21, 112, 235, 76, 91, 66, 169, 188, 205, + 239, 86, 9, 188, 21, 169, 120, 27, 164, 174, 103, 184, 40, 236, 230, 252, 72, 127, 192, 216, 28, 4, 180, 247, 51, + 66, 203, 69, 68, 179, 23, 32, 154, 27, 46, 254, 116, 140, 98, 62, 145, 35, 255, 191, 27, 163, 55, 223, 38, 125, + 33, 82, 181, 27, 235, 155, 151, 43, 66, 96, 213, 27, 27, 238, 118, 39, 212, 72, 186, 83, 1, 70, 64, 109, 143, 142, + 9, 46, 70, 78, 212, 40, 167, 193, 69, 65, 206, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3308, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b2abbe86d5129585f96fe7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6662327241591119108" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3973377794009496537" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1700719054429761569" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12620146436898333832" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14806229796947140763" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15247181402700863989" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9753477085036387820" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "69ef80d3" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0205826127fe0461ea3f30" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7539761416295293860" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3309e1f2ba1f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0133df538a7316" + } + } + ] + } + ] + }, + "cborHex": "9fd87b9f9f4bb2abbe86d5129585f96fe71b5c755753e4725d041b3724460d425c7bd9ffa01b179a2af81e063021a0bf1baf23c451e8bca4881bcd7a4b8db5d6a09b1bd398deb3e5ed59f51b875b4fbb92819decffff4469ef80d3bf4b0205826127fe0461ea3f301b68a29d0f8d7a23a4463309e1f2ba1f470133df538a7316ffff", + "cborBytes": [ + 159, 216, 123, 159, 159, 75, 178, 171, 190, 134, 213, 18, 149, 133, 249, 111, 231, 27, 92, 117, 87, 83, 228, 114, + 93, 4, 27, 55, 36, 70, 13, 66, 92, 123, 217, 255, 160, 27, 23, 154, 42, 248, 30, 6, 48, 33, 160, 191, 27, 175, 35, + 196, 81, 232, 188, 164, 136, 27, 205, 122, 75, 141, 181, 214, 160, 155, 27, 211, 152, 222, 179, 229, 237, 89, 245, + 27, 135, 91, 79, 187, 146, 129, 157, 236, 255, 255, 68, 105, 239, 128, 211, 191, 75, 2, 5, 130, 97, 39, 254, 4, + 97, 234, 63, 48, 27, 104, 162, 157, 15, 141, 122, 35, 164, 70, 51, 9, 225, 242, 186, 31, 71, 1, 51, 223, 83, 138, + 115, 22, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3309, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11515667264127380205" + } + }, + "cborHex": "1b9fcfde5d35e82aed", + "cborBytes": [27, 159, 207, 222, 93, 53, 232, 42, 237], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3310, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3276592610205666508" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17554902906434670165" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15929237876180927950" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e65" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b2d78cb9e6cfa8ccc1bf39f8b2efc82ce551bdd100573a07645ce426e65ffff", + "cborBytes": [ + 159, 191, 27, 45, 120, 203, 158, 108, 250, 140, 204, 27, 243, 159, 139, 46, 252, 130, 206, 85, 27, 221, 16, 5, + 115, 160, 118, 69, 206, 66, 110, 101, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3311, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10543803109240451986" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12394668716753065570" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16032514261349493079" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10644879443925179915" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2569cef01d00c191" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b510" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15562709182100626430" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7065042256105339418" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9708c73bd0d5dea45" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee785d14979f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7f6d01988f8" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "342549038773835213" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9957016432225415616" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10794612146957478573" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13571027310515881953" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2455287073995468455" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b92531d107befb3921bac02b58732b696621bde7eeec6dc1ee9571b93ba35748c049e0b482569cef01d00c19141fc42b5101bd7f9d98bddd15bfeffbf1b620c127fee487a1a49c9708c73bd0d5dea4546ee785d14979f46f7f6d01988f8ffd8669f1b04c0fa892e4415cd9f1b8a2e6db0c985f1c01b95ce2a8e2b846aadbf1bbc55f96fc06c87e11b2212ee95cb1baea7ffffffff", + "cborBytes": [ + 159, 191, 27, 146, 83, 29, 16, 123, 239, 179, 146, 27, 172, 2, 181, 135, 50, 182, 150, 98, 27, 222, 126, 238, 198, + 220, 30, 233, 87, 27, 147, 186, 53, 116, 140, 4, 158, 11, 72, 37, 105, 206, 240, 29, 0, 193, 145, 65, 252, 66, + 181, 16, 27, 215, 249, 217, 139, 221, 209, 91, 254, 255, 191, 27, 98, 12, 18, 127, 238, 72, 122, 26, 73, 201, 112, + 140, 115, 189, 13, 93, 234, 69, 70, 238, 120, 93, 20, 151, 159, 70, 247, 246, 208, 25, 136, 248, 255, 216, 102, + 159, 27, 4, 192, 250, 137, 46, 68, 21, 205, 159, 27, 138, 46, 109, 176, 201, 133, 241, 192, 27, 149, 206, 42, 142, + 43, 132, 106, 173, 191, 27, 188, 85, 249, 111, 192, 108, 135, 225, 27, 34, 18, 238, 149, 203, 27, 174, 167, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3312, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "90d1a200bbd5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6812632309914802855" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7c8e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "73" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12912597956730876473" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7aba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16690808760861621605" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14262898090765218812" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10362479644428712445" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7f" + }, + { + "_tag": "ByteArray", + "bytearray": "b9d7e7cb7f0ca8cb934cffd7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5291043074314041552" + } + }, + { + "_tag": "ByteArray", + "bytearray": "91a42573d3b501" + } + ] + } + ] + } + ] + }, + "cborHex": "d905059fbf4690d1a200bbd51b5e8b54fdb1d21aa7ff427c8ed8669f1bfffffffffffffff79fbf41731bb332c36d8260f239427aba1be7a1aa22e5227d65ff1bc5effe3ed7a873fcd8669f1b8fceec557663b9fd9f417f4cb9d7e7cb7f0ca8cb934cffd71b496d8fa497c778d04791a42573d3b501ffffffffff", + "cborBytes": [ + 217, 5, 5, 159, 191, 70, 144, 209, 162, 0, 187, 213, 27, 94, 139, 84, 253, 177, 210, 26, 167, 255, 66, 124, 142, + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 191, 65, 115, 27, 179, 50, 195, 109, 130, 96, 242, + 57, 66, 122, 186, 27, 231, 161, 170, 34, 229, 34, 125, 101, 255, 27, 197, 239, 254, 62, 215, 168, 115, 252, 216, + 102, 159, 27, 143, 206, 236, 85, 118, 99, 185, 253, 159, 65, 127, 76, 185, 215, 231, 203, 127, 12, 168, 203, 147, + 76, 255, 215, 27, 73, 109, 143, 164, 151, 199, 120, 208, 71, 145, 164, 37, 115, 211, 181, 1, 255, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3313, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6788177581221749672" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3646240721711018674" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "023e1850" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12329970188807790818" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fe91e92bf7031cc2" + }, + { + "_tag": "ByteArray", + "bytearray": "b6ff0c6cb57f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "93716a80848a54b0dd5eb387" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12901645198706833243" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "51735a" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7fc83174c323c67719" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1754806538473506232" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8394c37f51459526fd1c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea47da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ac31b28a6abbeaf1cb0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb032e0feca5323fdf713ee9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1448286506985678426" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb375c3a6cc6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12071751022654394353" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec33099676c8b65bc0557768" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3282346575878757479" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17661908458705890547" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54bdddaaea0adddd9bc9cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7037808469232845093" + } + } + } + ] + } + ] + }, + "cborHex": "d8799f9f1b5e34738b78fe23a8d8669f1b329a0c9e272632b29f44023e18501bab1cda8f4b0b60e248fe91e92bf7031cc246b6ff0c6cb57fffff4c93716a80848a54b0dd5eb3871bb30bd9f3cf0b775b9f4351735affff497fc83174c323c67719d8669f1b185a533fd73f05b880ffbf415e4a8394c37f51459526fd1c43ea47da4a9ac31b28a6abbeaf1cb04ceb032e0feca5323fdf713ee91b141958e79ddf665a46eb375c3a6cc61ba7877998a2460ff14cec33099676c8b65bc055776841beffbf1b2d8d3cd1f4f91c671bf51bb42a98a1acf34b54bdddaaea0adddd9bc9cb1b61ab5183cddc0125ffff", + "cborBytes": [ + 216, 121, 159, 159, 27, 94, 52, 115, 139, 120, 254, 35, 168, 216, 102, 159, 27, 50, 154, 12, 158, 39, 38, 50, 178, + 159, 68, 2, 62, 24, 80, 27, 171, 28, 218, 143, 75, 11, 96, 226, 72, 254, 145, 233, 43, 247, 3, 28, 194, 70, 182, + 255, 12, 108, 181, 127, 255, 255, 76, 147, 113, 106, 128, 132, 138, 84, 176, 221, 94, 179, 135, 27, 179, 11, 217, + 243, 207, 11, 119, 91, 159, 67, 81, 115, 90, 255, 255, 73, 127, 200, 49, 116, 195, 35, 198, 119, 25, 216, 102, + 159, 27, 24, 90, 83, 63, 215, 63, 5, 184, 128, 255, 191, 65, 94, 74, 131, 148, 195, 127, 81, 69, 149, 38, 253, 28, + 67, 234, 71, 218, 74, 154, 195, 27, 40, 166, 171, 190, 175, 28, 176, 76, 235, 3, 46, 15, 236, 165, 50, 63, 223, + 113, 62, 233, 27, 20, 25, 88, 231, 157, 223, 102, 90, 70, 235, 55, 92, 58, 108, 198, 27, 167, 135, 121, 152, 162, + 70, 15, 241, 76, 236, 51, 9, 150, 118, 200, 182, 91, 192, 85, 119, 104, 65, 190, 255, 191, 27, 45, 141, 60, 209, + 244, 249, 28, 103, 27, 245, 27, 180, 42, 152, 161, 172, 243, 75, 84, 189, 221, 170, 234, 10, 221, 221, 155, 201, + 203, 27, 97, 171, 81, 131, 205, 220, 1, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3314, + "sample": { + "_tag": "ByteArray", + "bytearray": "9a736d4395" + }, + "cborHex": "459a736d4395", + "cborBytes": [69, 154, 115, 109, 67, 149], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3315, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12520285677600058678" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "979414917364960535" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3872916782169729346" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3169918171580550892" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5352" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6063292636095855468" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14652691674924753070" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9f9f1badc0fd7d0bc32d36ffa0bf1b0d9794ad9d41cd171b35bf5d4b35e029421b2bfdcfc8381d4eec4253521b542524871fbc3b6c1bcb58d171ef36a0aeff80ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 159, 27, 173, 192, 253, 125, 11, 195, 45, 54, 255, + 160, 191, 27, 13, 151, 148, 173, 157, 65, 205, 23, 27, 53, 191, 93, 75, 53, 224, 41, 66, 27, 43, 253, 207, 200, + 56, 29, 78, 236, 66, 83, 82, 27, 84, 37, 36, 135, 31, 188, 59, 108, 27, 203, 88, 209, 113, 239, 54, 160, 174, 255, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3316, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9f862f9fa74bed412a344899" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6633530223786002609" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cc88150baef385" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12500623586428502542" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905039f4c9f862f9fa74bed412a344899d905079fa01b5c0f0897b39508b19f47cc88150baef3851bad7b22ebb3f0c20effffff", + "cborBytes": [ + 217, 5, 3, 159, 76, 159, 134, 47, 159, 167, 75, 237, 65, 42, 52, 72, 153, 217, 5, 7, 159, 160, 27, 92, 15, 8, 151, + 179, 149, 8, 177, 159, 71, 204, 136, 21, 11, 174, 243, 133, 27, 173, 123, 34, 235, 179, 240, 194, 14, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3317, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0438039067" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1de1fd5803fe7800a2793302" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55fbfc0605c70804ecd40707" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f616" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d944750fb89249862a55ff45" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1065416697685470876" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12984590572838228865" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc9e886ece" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17052624580734732130" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1006901763543525104" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf450438039067a04c1de1fd5803fe7800a2793302a04c55fbfc0605c70804ecd40707a042f616bf0f4cd944750fb89249862a55ff451b0ec91ed77b4fee9c1bffffffffffffffee1bb4328854a7e8938145bc9e886ece1beca717b51ec9c7621b0df93bd1b3b9e6f01bfffffffffffffff01bfffffffffffffff1ffff", + "cborBytes": [ + 191, 69, 4, 56, 3, 144, 103, 160, 76, 29, 225, 253, 88, 3, 254, 120, 0, 162, 121, 51, 2, 160, 76, 85, 251, 252, 6, + 5, 199, 8, 4, 236, 212, 7, 7, 160, 66, 246, 22, 191, 15, 76, 217, 68, 117, 15, 184, 146, 73, 134, 42, 85, 255, 69, + 27, 14, 201, 30, 215, 123, 79, 238, 156, 27, 255, 255, 255, 255, 255, 255, 255, 238, 27, 180, 50, 136, 84, 167, + 232, 147, 129, 69, 188, 158, 136, 110, 206, 27, 236, 167, 23, 181, 30, 201, 199, 98, 27, 13, 249, 59, 209, 179, + 185, 230, 240, 27, 255, 255, 255, 255, 255, 255, 255, 240, 27, 255, 255, 255, 255, 255, 255, 255, 241, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3318, + "sample": { + "_tag": "ByteArray", + "bytearray": "7718e371ab08fcf33dea31" + }, + "cborHex": "4b7718e371ab08fcf33dea31", + "cborBytes": [75, 119, 24, 227, 113, 171, 8, 252, 243, 61, 234, 49], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3319, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18157079613890760206" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fdad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6575305479846915799" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50865097" + } + } + ] + } + ] + }, + "cborHex": "d905099f9f1bfbfae7b560720e0eff42fdad1b5b402d7f17f46ed7bf427b414450865097ffff", + "cborBytes": [ + 217, 5, 9, 159, 159, 27, 251, 250, 231, 181, 96, 114, 14, 14, 255, 66, 253, 173, 27, 91, 64, 45, 127, 23, 244, + 110, 215, 191, 66, 123, 65, 68, 80, 134, 80, 151, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3320, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10287829276657640715" + }, + "fields": [] + }, + "cborHex": "d8669f1b8ec5b638490ae50b80ff", + "cborBytes": [216, 102, 159, 27, 142, 197, 182, 56, 73, 10, 229, 11, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3321, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14176591830765822669" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15703959249413015175" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15146682302781236669" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "379333e86ab865" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ae6" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bc4bd5f28c68062cda01bd9efabbbf4790687bf1bd233d34dc6f8a5bd428cea47379333e86ab865429ae6ffff", + "cborBytes": [ + 191, 27, 196, 189, 95, 40, 198, 128, 98, 205, 160, 27, 217, 239, 171, 187, 244, 121, 6, 135, 191, 27, 210, 51, + 211, 77, 198, 248, 165, 189, 66, 140, 234, 71, 55, 147, 51, 232, 106, 184, 101, 66, 154, 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3322, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "85aea7f011e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e0665483d0fb7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df83dc741842a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d0c14" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e2" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6834664492895294215" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1929779237119116122" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4194de94523dab3a80a4d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9934330534822310588" + } + }, + { + "_tag": "ByteArray", + "bytearray": "052f13" + }, + { + "_tag": "ByteArray", + "bytearray": "7629" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13469901677111057302" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4680219667044808368" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7238119261576355628" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "28" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10562511266962348789" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea3d2021" + } + ] + }, + "cborHex": "9f9f1bffffffffffffffffbf4685aea7f011e3410d42ca45471e0665483d0fb747df83dc741842a5432d0c14ff41e2ff1b5ed99b2509ffd3079f9f1b1ac7f3fde368c35a4be4194de94523dab3a80a4d1b89ddd4fcb16672bc43052f13427629ff1bbaeeb4356fa49b96d8669f1b40f37afd8500b6b080ffd8669f1b6472f71e842bdf2c9f41281b92959408e35a1af5ffffff0044ea3d2021ff", + "cborBytes": [ + 159, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 191, 70, 133, 174, 167, 240, 17, 227, 65, 13, 66, 202, 69, + 71, 30, 6, 101, 72, 61, 15, 183, 71, 223, 131, 220, 116, 24, 66, 165, 67, 45, 12, 20, 255, 65, 226, 255, 27, 94, + 217, 155, 37, 9, 255, 211, 7, 159, 159, 27, 26, 199, 243, 253, 227, 104, 195, 90, 75, 228, 25, 77, 233, 69, 35, + 218, 179, 168, 10, 77, 27, 137, 221, 212, 252, 177, 102, 114, 188, 67, 5, 47, 19, 66, 118, 41, 255, 27, 186, 238, + 180, 53, 111, 164, 155, 150, 216, 102, 159, 27, 64, 243, 122, 253, 133, 0, 182, 176, 128, 255, 216, 102, 159, 27, + 100, 114, 247, 30, 132, 43, 223, 44, 159, 65, 40, 27, 146, 149, 148, 8, 227, 90, 26, 245, 255, 255, 255, 0, 68, + 234, 61, 32, 33, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3323, + "sample": { + "_tag": "ByteArray", + "bytearray": "c1bf2101" + }, + "cborHex": "44c1bf2101", + "cborBytes": [68, 193, 191, 33, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3324, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13795884913675180921" + }, + "fields": [] + }, + "cborHex": "d8669f1bbf74d43c39c79b7980ff", + "cborBytes": [216, 102, 159, 27, 191, 116, 212, 60, 57, 199, 155, 121, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3325, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6515351776735321064" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4dab5e576fd28ffb58" + }, + { + "_tag": "ByteArray", + "bytearray": "0b71a6a65cd9bb2aaddafb52" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10889725599910580354" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17114948360140681631" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1761f1" + }, + { + "_tag": "ByteArray", + "bytearray": "60c1e821dfb819d205b715" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14690234903150243828" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5969ff2310" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5a6b2debcf04dbe89f494dab5e576fd28ffb584c0b71a6a65cd9bb2aaddafb521b972013bca425d0829fd8669f1bed8482dacb56f19f9f431761f14b60c1e821dfb819d205b7151bcbde32cfed50aff4455969ff2310ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 90, 107, 45, 235, 207, 4, 219, 232, 159, 73, 77, 171, 94, 87, 111, 210, 143, 251, 88, 76, 11, + 113, 166, 166, 92, 217, 187, 42, 173, 218, 251, 82, 27, 151, 32, 19, 188, 164, 37, 208, 130, 159, 216, 102, 159, + 27, 237, 132, 130, 218, 203, 86, 241, 159, 159, 67, 23, 97, 241, 75, 96, 193, 232, 33, 223, 184, 25, 210, 5, 183, + 21, 27, 203, 222, 50, 207, 237, 80, 175, 244, 69, 89, 105, 255, 35, 16, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3326, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "10aa8d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1408635069573234053" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3592816600925336820" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1a" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff09f9f9f4310aa8dffd8669f1b138c7a21ec11fd859f1b31dc3fa9b947f4f4ffff411a80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 159, 159, 67, 16, 170, 141, 255, 216, 102, 159, + 27, 19, 140, 122, 33, 236, 17, 253, 133, 159, 27, 49, 220, 63, 169, 185, 71, 244, 244, 255, 255, 65, 26, 128, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3327, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16267010997117438690" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5773602354841749558" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4706837433015943360" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "72a7c080f0" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3535b9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "984001982871790449" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8763145459197738291" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5992529206159819927" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1982631279918555834" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18400955427462177676" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4217653894697813990" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8311a71a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "431a3fc8aa1408528a" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19345a726107dab714bd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3946215012776553593" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "612ccfc5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7649129358347485002" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c76ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01995bd440e177" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bde9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a859a022ed9dd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f011da04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0116542fb8a7c18a671c4" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9fd8669f1be1c00850c88ecae29f1b501ff4c07ab388361b41520bb51a6d40c09f4572a7c080f0ff433535b9bf1b0da7e097075a63711b799cf25db28efd331b5329bd902f4f44971b1b83b8a5081fa2ba1bff5d537805ade38c1b3a881ddf030187e6448311a71a49431a3fc8aa1408528affffffbf4a19345a726107dab714bd1b36c3c5a56bdc2c7944612ccfc51b6a272a9fe5503f4a438c76ec4701995bd440e17742bde9471a859a022ed9dd44f011da044bc0116542fb8a7c18a671c4ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 216, 102, 159, 27, 225, 192, 8, 80, 200, 142, 202, + 226, 159, 27, 80, 31, 244, 192, 122, 179, 136, 54, 27, 65, 82, 11, 181, 26, 109, 64, 192, 159, 69, 114, 167, 192, + 128, 240, 255, 67, 53, 53, 185, 191, 27, 13, 167, 224, 151, 7, 90, 99, 113, 27, 121, 156, 242, 93, 178, 142, 253, + 51, 27, 83, 41, 189, 144, 47, 79, 68, 151, 27, 27, 131, 184, 165, 8, 31, 162, 186, 27, 255, 93, 83, 120, 5, 173, + 227, 140, 27, 58, 136, 29, 223, 3, 1, 135, 230, 68, 131, 17, 167, 26, 73, 67, 26, 63, 200, 170, 20, 8, 82, 138, + 255, 255, 255, 191, 74, 25, 52, 90, 114, 97, 7, 218, 183, 20, 189, 27, 54, 195, 197, 165, 107, 220, 44, 121, 68, + 97, 44, 207, 197, 27, 106, 39, 42, 159, 229, 80, 63, 74, 67, 140, 118, 236, 71, 1, 153, 91, 212, 64, 225, 119, 66, + 189, 233, 71, 26, 133, 154, 2, 46, 217, 221, 68, 240, 17, 218, 4, 75, 192, 17, 101, 66, 251, 138, 124, 24, 166, + 113, 196, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3328, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11516234985652194232" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10860732284110612257" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7a0a365581ee" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5bbe6bf9fc9e7e3a716658c9" + }, + { + "_tag": "ByteArray", + "bytearray": "d91bb6deb6fbc336f6" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15498127093613523694" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16993230845276690019" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3057644235403920822" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16762536539136635045" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0007fa79effafe" + } + ] + }, + "cborHex": "9f02d8669f1b9fd1e2b42db98bb89f1b96b912784307a7219f467a0a365581eeff9f4c5bbe6bf9fc9e7e3a716658c949d91bb6deb6fbc336f6ffd8669f1bd714687aa2b0f2ee9f0d1bebd4156b76ed9663ffffd8669f1b2a6eef3b64c585b69f1be8a07e2badbeb0a51bfffffffffffffff4ffffffff470007fa79effafeff", + "cborBytes": [ + 159, 2, 216, 102, 159, 27, 159, 209, 226, 180, 45, 185, 139, 184, 159, 27, 150, 185, 18, 120, 67, 7, 167, 33, 159, + 70, 122, 10, 54, 85, 129, 238, 255, 159, 76, 91, 190, 107, 249, 252, 158, 126, 58, 113, 102, 88, 201, 73, 217, 27, + 182, 222, 182, 251, 195, 54, 246, 255, 216, 102, 159, 27, 215, 20, 104, 122, 162, 176, 242, 238, 159, 13, 27, 235, + 212, 21, 107, 118, 237, 150, 99, 255, 255, 216, 102, 159, 27, 42, 110, 239, 59, 100, 197, 133, 182, 159, 27, 232, + 160, 126, 43, 173, 190, 176, 165, 27, 255, 255, 255, 255, 255, 255, 255, 244, 255, 255, 255, 255, 71, 0, 7, 250, + 121, 239, 250, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3329, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fec95c9a6f0324c58d372aee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16489618770209775868" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5900e80e66f6729edd01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8597671420512960226" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c1de412f94fd3a909" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "32acb85736a727" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3103837817165668643" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61a463adf305" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10066083673890076366" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7912147" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10375651241774511168" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9653919371339729594" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61421e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1101361194489238728" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0d1350a7bae47603169abe" + } + ] + } + ] + }, + "cborHex": "9fbf4cfec95c9a6f0324c58d372aee4176ff9f1be4d6e4e7dff7a0fc9f4a5900e80e66f6729edd011b7751109ac333fee2494c1de412f94fd3a909ff4732acb85736a727bf1b2b130c0cc49561234661a463adf3051b8bb1e9c4dd93b6ce44a79121471b8ffdb7d4f34f74401b85f99c8502f78aba4361421e1b0f48d22bceee54c8ff4b0d1350a7bae47603169abeffff", + "cborBytes": [ + 159, 191, 76, 254, 201, 92, 154, 111, 3, 36, 197, 141, 55, 42, 238, 65, 118, 255, 159, 27, 228, 214, 228, 231, + 223, 247, 160, 252, 159, 74, 89, 0, 232, 14, 102, 246, 114, 158, 221, 1, 27, 119, 81, 16, 154, 195, 51, 254, 226, + 73, 76, 29, 228, 18, 249, 79, 211, 169, 9, 255, 71, 50, 172, 184, 87, 54, 167, 39, 191, 27, 43, 19, 12, 12, 196, + 149, 97, 35, 70, 97, 164, 99, 173, 243, 5, 27, 139, 177, 233, 196, 221, 147, 182, 206, 68, 167, 145, 33, 71, 27, + 143, 253, 183, 212, 243, 79, 116, 64, 27, 133, 249, 156, 133, 2, 247, 138, 186, 67, 97, 66, 30, 27, 15, 72, 210, + 43, 206, 238, 84, 200, 255, 75, 13, 19, 80, 167, 186, 228, 118, 3, 22, 154, 190, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3330, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15259974353452478901" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bd3c651d2db1b31b59f1bffffffffffffffeb80ffff", + "cborBytes": [ + 216, 102, 159, 27, 211, 198, 81, 210, 219, 27, 49, 181, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3331, + "sample": { + "_tag": "ByteArray", + "bytearray": "667a466d9a96" + }, + "cborHex": "46667a466d9a96", + "cborBytes": [70, 102, 122, 70, 109, 154, 150], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3332, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f01bd50af47f" + }, + { + "_tag": "ByteArray", + "bytearray": "26a27c61d45a9734" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f9f414aff46f01bd50af47f4826a27c61d45a9734a0ff", + "cborBytes": [ + 159, 159, 65, 74, 255, 70, 240, 27, 213, 10, 244, 127, 72, 38, 162, 124, 97, 212, 90, 151, 52, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3333, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "927582761522526837" + } + }, + "cborHex": "1b0cdf6f9b68537a75", + "cborBytes": [27, 12, 223, 111, 155, 104, 83, 122, 117], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3334, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "740761" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a759e987b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7630d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce43" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + } + ] + }, + "cborHex": "bf43740761bf1bfffffffffffffff2141bfffffffffffffff40eff45a759e987b543a7630d42ce430fff", + "cborBytes": [ + 191, 67, 116, 7, 97, 191, 27, 255, 255, 255, 255, 255, 255, 255, 242, 20, 27, 255, 255, 255, 255, 255, 255, 255, + 244, 14, 255, 69, 167, 89, 233, 135, 181, 67, 167, 99, 13, 66, 206, 67, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3335, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14987761389482310737" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e2adb828cf69a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "457d2c2a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7735c0a3d5d7fb29fb5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13787764512631841816" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15415642643518679908" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10142220155498221598" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13249682950800383071" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5020559980934289734" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10107792053685636554" + } + }, + { + "_tag": "ByteArray", + "bytearray": "65844151c6bfc8" + } + ] + }, + "cborHex": "d8669f1bcfff39933e687c519fbf475e2adb828cf69a44457d2c2a4ab7735c0a3d5d7fb29fb51bbf57fac606286418ff1bd5ef5d4f074b6b64d8669f1b8cc0677ee247501e9fd8669f1bb7e05471a5019c5f9f1b45ac9cb3dd215946ffffffff1b8c461751c772cdca4765844151c6bfc8ffff", + "cborBytes": [ + 216, 102, 159, 27, 207, 255, 57, 147, 62, 104, 124, 81, 159, 191, 71, 94, 42, 219, 130, 140, 246, 154, 68, 69, + 125, 44, 42, 74, 183, 115, 92, 10, 61, 93, 127, 178, 159, 181, 27, 191, 87, 250, 198, 6, 40, 100, 24, 255, 27, + 213, 239, 93, 79, 7, 75, 107, 100, 216, 102, 159, 27, 140, 192, 103, 126, 226, 71, 80, 30, 159, 216, 102, 159, 27, + 183, 224, 84, 113, 165, 1, 156, 95, 159, 27, 69, 172, 156, 179, 221, 33, 89, 70, 255, 255, 255, 255, 27, 140, 70, + 23, 81, 199, 114, 205, 202, 71, 101, 132, 65, 81, 198, 191, 200, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3336, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09c779a7fdd3188e86" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13538895152094727700" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbacaa62f4ab870956020dd2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4af8b0e84211e7b76851de9" + } + } + ] + } + ] + }, + "cborHex": "9fbf4909c779a7fdd3188e861bbbe3d1689fdd4e1441af41f64cdbacaa62f4ab870956020dd24ce4af8b0e84211e7b76851de9ffff", + "cborBytes": [ + 159, 191, 73, 9, 199, 121, 167, 253, 211, 24, 142, 134, 27, 187, 227, 209, 104, 159, 221, 78, 20, 65, 175, 65, + 246, 76, 219, 172, 170, 98, 244, 171, 135, 9, 86, 2, 13, 210, 76, 228, 175, 139, 14, 132, 33, 30, 123, 118, 133, + 29, 233, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3337, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2445582804277684564" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10435412814853946157" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e41344595498c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c592472ddd918736e98" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45324b8cdd65efd9" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b21f0749a6dc669541b90d208aa79edbb2d4235a2472e41344595498c4a5c592472ddd918736e984845324b8cdd65efd9ffff", + "cborBytes": [ + 159, 191, 27, 33, 240, 116, 154, 109, 198, 105, 84, 27, 144, 210, 8, 170, 121, 237, 187, 45, 66, 53, 162, 71, 46, + 65, 52, 69, 149, 73, 140, 74, 92, 89, 36, 114, 221, 217, 24, 115, 110, 152, 72, 69, 50, 75, 140, 221, 101, 239, + 217, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3338, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16441785898962471554" + } + }, + "cborHex": "1be42cf529acaf4a82", + "cborBytes": [27, 228, 44, 245, 41, 172, 175, 74, 130], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3339, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "902202993790263060" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2db681837bb64e1a21" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17951778676569278857" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6710474813081209978" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c03988c2e9be6f4df" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7403067168291997738" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7610409899158128927" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c555b00867937089" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2594" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2850288767109257799" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5166294924607138427" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b1a5840a8af7a0559ee" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4363955356946760326" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5bbb2cd85b31c07bee" + } + ] + }, + "cborHex": "d8669f1b0c8544d7c0299f149f492db681837bb64e1a21d8669f1bf9218797ff5809899fbf1b5d206549f3e94c7a495c03988c2e9be6f4df1b66bcfa5dce66c82a41661b699d9b7b4a6fc91f48c555b00867937089ff422594d8669f1b278e42883ed55a479f1b47b25ddc9a1caa7b4a2b1a5840a8af7a0559eeffff1b3c8fe246a2798286ffff495bbb2cd85b31c07beeffff", + "cborBytes": [ + 216, 102, 159, 27, 12, 133, 68, 215, 192, 41, 159, 20, 159, 73, 45, 182, 129, 131, 123, 182, 78, 26, 33, 216, 102, + 159, 27, 249, 33, 135, 151, 255, 88, 9, 137, 159, 191, 27, 93, 32, 101, 73, 243, 233, 76, 122, 73, 92, 3, 152, + 140, 46, 155, 230, 244, 223, 27, 102, 188, 250, 93, 206, 102, 200, 42, 65, 102, 27, 105, 157, 155, 123, 74, 111, + 201, 31, 72, 197, 85, 176, 8, 103, 147, 112, 137, 255, 66, 37, 148, 216, 102, 159, 27, 39, 142, 66, 136, 62, 213, + 90, 71, 159, 27, 71, 178, 93, 220, 154, 28, 170, 123, 74, 43, 26, 88, 64, 168, 175, 122, 5, 89, 238, 255, 255, 27, + 60, 143, 226, 70, 162, 121, 130, 134, 255, 255, 73, 91, 187, 44, 216, 91, 49, 192, 123, 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3340, + "sample": { + "_tag": "ByteArray", + "bytearray": "5285c08a4b" + }, + "cborHex": "455285c08a4b", + "cborBytes": [69, 82, 133, 192, 138, 75], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3341, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [] + }, + "cborHex": "d8669f1bfffffffffffffff880ff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3342, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14310447716333036588" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7693631263468844130" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5831434493579474086" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79d54902a6b3df01482d5c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ac685987ca43dde32a1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee0a16" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d92d9980a23d0b11" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87e9fd905039f9f1bc698ec60c4d4a42c1b6ac544df1be67462ffbf4222a41b50ed6ac690c3b4a64b79d54902a6b3df01482d5c4a8ac685987ca43dde32a143ee0a1648d92d9980a23d0b11ffffff", + "cborBytes": [ + 216, 126, 159, 217, 5, 3, 159, 159, 27, 198, 152, 236, 96, 196, 212, 164, 44, 27, 106, 197, 68, 223, 27, 230, 116, + 98, 255, 191, 66, 34, 164, 27, 80, 237, 106, 198, 144, 195, 180, 166, 75, 121, 213, 73, 2, 166, 179, 223, 1, 72, + 45, 92, 74, 138, 198, 133, 152, 124, 164, 61, 222, 50, 161, 67, 238, 10, 22, 72, 217, 45, 153, 128, 162, 61, 11, + 17, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3343, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7338428324523496085" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "913b56720da6d78eec11" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16188171075944497559" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4724875083150473956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3382134794882664874" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12916906739863393492" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2836471156316062862" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15611987260849199804" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23c2a0e1c996a11d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18148266735511116738" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3150566994731691121" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0cd413debb3fe30500" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "4ca44246f1c23c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "903603648f9b4289" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b4d0d42bfea7627d1a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7976650714171336514" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5583674f615644b4" + }, + { + "_tag": "ByteArray", + "bytearray": "bff13c0b54" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17800108060124539048" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87ce74ae" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b985035b714398f617816" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17514591394388786785" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fed9e2449177e68b6516" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce7514f41354c69204" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff19f9fd8669f1b65d755ae34e352959f4a913b56720da6d78eec111be0a7efd330ecc197ffffbf1b419220dacb473ae41b2eefc1ad377849aa1bb342123e426814d41b275d2b7d07dc448e1bd8a8ebb2a8d71abc4823c2a0e1c996a11d1bfbdb98713b2d9bc21b2bb90ffd420d6c71ff490cd413debb3fe30500a0474ca44246f1c23cffbf41d348903603648f9b4289ff9f49b4d0d42bfea7627d1ad8669f1b6eb2c18ffb8c67429f485583674f615644b445bff13c0b541bf706aff8bf4a68a84487ce74aeffffffbf4b0b985035b714398f6178161bf3105413b0a83e614afed9e2449177e68b651649ce7514f41354c69204ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 159, 216, 102, 159, 27, 101, 215, 85, 174, 52, + 227, 82, 149, 159, 74, 145, 59, 86, 114, 13, 166, 215, 142, 236, 17, 27, 224, 167, 239, 211, 48, 236, 193, 151, + 255, 255, 191, 27, 65, 146, 32, 218, 203, 71, 58, 228, 27, 46, 239, 193, 173, 55, 120, 73, 170, 27, 179, 66, 18, + 62, 66, 104, 20, 212, 27, 39, 93, 43, 125, 7, 220, 68, 142, 27, 216, 168, 235, 178, 168, 215, 26, 188, 72, 35, + 194, 160, 225, 201, 150, 161, 29, 27, 251, 219, 152, 113, 59, 45, 155, 194, 27, 43, 185, 15, 253, 66, 13, 108, + 113, 255, 73, 12, 212, 19, 222, 187, 63, 227, 5, 0, 160, 71, 76, 164, 66, 70, 241, 194, 60, 255, 191, 65, 211, 72, + 144, 54, 3, 100, 143, 155, 66, 137, 255, 159, 73, 180, 208, 212, 43, 254, 167, 98, 125, 26, 216, 102, 159, 27, + 110, 178, 193, 143, 251, 140, 103, 66, 159, 72, 85, 131, 103, 79, 97, 86, 68, 180, 69, 191, 241, 60, 11, 84, 27, + 247, 6, 175, 248, 191, 74, 104, 168, 68, 135, 206, 116, 174, 255, 255, 255, 191, 75, 11, 152, 80, 53, 183, 20, 57, + 143, 97, 120, 22, 27, 243, 16, 84, 19, 176, 168, 62, 97, 74, 254, 217, 226, 68, 145, 119, 230, 139, 101, 22, 73, + 206, 117, 20, 244, 19, 84, 198, 146, 4, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3344, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12436978493067417062" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cf3b3362c3e5694660ea6a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16142547267014302964" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e7" + }, + { + "_tag": "ByteArray", + "bytearray": "d4715c631dc36a6dbb59" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13590389447619545057" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4951965439512105711" + } + }, + { + "_tag": "ByteArray", + "bytearray": "403f50f2bacd48" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aa9ba3b5c3c8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8336335745367613900" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17325995601865864397" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9555134134525841393" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "94630040982696113" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3315384366241767651" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8421623898383996777" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2644559947007206160" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9386455882989865339" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2246432387127208659" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13385039964167780735" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ac563d1208db27161" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14397585264293713032" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bac99060ba674d5e69f0c4bcf3b3362c3e5694660ea6a9fd8669f1be005d93664571cf49f41e74ad4715c631dc36a6dbb59ffff9f1bbc9ac332989487e11b44b8ea54a22152ef47403f50f2bacd48ffff46aa9ba3b5c3c89fd8669f1b73b09d314f0721cc9f1bf0724d33ed31f4cdffff1b849aa7debd9f4ff1bf1b0150318559dab0b11b2e029c83f3b960e31b74df9e50df1e57691b24b35d42a49723101b824363e4dd7c897b1b1f2cee5a9ea66ad31bb9c136ee30a0b97f492ac563d1208db27161ff1bc7ce7f8425a01488ffffff", + "cborBytes": [ + 216, 102, 159, 27, 172, 153, 6, 11, 166, 116, 213, 230, 159, 12, 75, 207, 59, 51, 98, 195, 229, 105, 70, 96, 234, + 106, 159, 216, 102, 159, 27, 224, 5, 217, 54, 100, 87, 28, 244, 159, 65, 231, 74, 212, 113, 92, 99, 29, 195, 106, + 109, 187, 89, 255, 255, 159, 27, 188, 154, 195, 50, 152, 148, 135, 225, 27, 68, 184, 234, 84, 162, 33, 82, 239, + 71, 64, 63, 80, 242, 186, 205, 72, 255, 255, 70, 170, 155, 163, 181, 195, 200, 159, 216, 102, 159, 27, 115, 176, + 157, 49, 79, 7, 33, 204, 159, 27, 240, 114, 77, 51, 237, 49, 244, 205, 255, 255, 27, 132, 154, 167, 222, 189, 159, + 79, 241, 191, 27, 1, 80, 49, 133, 89, 218, 176, 177, 27, 46, 2, 156, 131, 243, 185, 96, 227, 27, 116, 223, 158, + 80, 223, 30, 87, 105, 27, 36, 179, 93, 66, 164, 151, 35, 16, 27, 130, 67, 99, 228, 221, 124, 137, 123, 27, 31, 44, + 238, 90, 158, 166, 106, 211, 27, 185, 193, 54, 238, 48, 160, 185, 127, 73, 42, 197, 99, 209, 32, 141, 178, 113, + 97, 255, 27, 199, 206, 127, 132, 37, 160, 20, 136, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3345, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17627132533397916154" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "343f97e53d06" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30d5b2c16fd000d3f2c806cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10610356709302987492" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9783733426459888647" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dad52e85dc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7567463626511677525" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "75d4f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11988725032244434038" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "983760979369c0c7f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a459" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c435" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10380462988140035298" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c71ae3b9cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f47302b9e113eab823a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f75cc608ab33f82a4bb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "293240a1d2272afdd69f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11567155190573294466" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17825caf0f84d73804e2e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6280271788933169179" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5cebee4b88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3964169039864561684" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bda1ebcb5e9a108304" + }, + { + "_tag": "ByteArray", + "bytearray": "eeb63a8c1975ab7e8617231e" + }, + { + "_tag": "ByteArray", + "bytearray": "24da" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4157e192980d33" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13726924539823817218" + } + } + ] + }, + "cborHex": "9fbf1bf4a027a585ea09fa46343f97e53d064c30d5b2c16fd000d3f2c806cc1b933f8f36062feae441b81b87c6cdb70541cc0745dad52e85dc1b69050812fceaf855ffbf4375d4f11ba66081e5d8c3547649983760979369c0c7f042a45942c4351b900ed016f42d3ce245c71ae3b9cc412a4af47302b9e113eab823a541164af75cc608ab33f82a4bb64a293240a1d2272afdd69fffd8669f1ba086ca5c43efe3829fbf4b17825caf0f84d73804e2e11b572801eaf044c01b455cebee4b881b37038ebd1aba8014ff9f49bda1ebcb5e9a1083044ceeb63a8c1975ab7e8617231e4224daff474157e192980d33ffff1bbe7fd523feca8202ff", + "cborBytes": [ + 159, 191, 27, 244, 160, 39, 165, 133, 234, 9, 250, 70, 52, 63, 151, 229, 61, 6, 76, 48, 213, 178, 193, 111, 208, + 0, 211, 242, 200, 6, 204, 27, 147, 63, 143, 54, 6, 47, 234, 228, 65, 184, 27, 135, 198, 205, 183, 5, 65, 204, 7, + 69, 218, 213, 46, 133, 220, 27, 105, 5, 8, 18, 252, 234, 248, 85, 255, 191, 67, 117, 212, 241, 27, 166, 96, 129, + 229, 216, 195, 84, 118, 73, 152, 55, 96, 151, 147, 105, 192, 199, 240, 66, 164, 89, 66, 196, 53, 27, 144, 14, 208, + 22, 244, 45, 60, 226, 69, 199, 26, 227, 185, 204, 65, 42, 74, 244, 115, 2, 185, 225, 19, 234, 184, 35, 165, 65, + 22, 74, 247, 92, 198, 8, 171, 51, 248, 42, 75, 182, 74, 41, 50, 64, 161, 210, 39, 42, 253, 214, 159, 255, 216, + 102, 159, 27, 160, 134, 202, 92, 67, 239, 227, 130, 159, 191, 75, 23, 130, 92, 175, 15, 132, 215, 56, 4, 226, 225, + 27, 87, 40, 1, 234, 240, 68, 192, 27, 69, 92, 235, 238, 75, 136, 27, 55, 3, 142, 189, 26, 186, 128, 20, 255, 159, + 73, 189, 161, 235, 203, 94, 154, 16, 131, 4, 76, 238, 182, 58, 140, 25, 117, 171, 126, 134, 23, 35, 30, 66, 36, + 218, 255, 71, 65, 87, 225, 146, 152, 13, 51, 255, 255, 27, 190, 127, 213, 35, 254, 202, 130, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3346, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11240561142095346138" + } + }, + "cborHex": "1b9bfe7ecdbea6f9da", + "cborBytes": [27, 155, 254, 126, 205, 190, 166, 249, 218], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3347, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8efbc581ffbbf85f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12842553680377659644" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ae" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17714956977280556027" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "63c6e036f1063609" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5301145245494807206" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7121100398912728192" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9641214400109942662" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1015618395632676359" + } + }, + { + "_tag": "ByteArray", + "bytearray": "799155d26cd19124a4a5" + }, + { + "_tag": "ByteArray", + "bytearray": "45964a00d566aa9a" + }, + { + "_tag": "ByteArray", + "bytearray": "0c1c" + }, + { + "_tag": "ByteArray", + "bytearray": "3807c405" + } + ] + } + } + ] + }, + "cborHex": "bf06488efbc581ffbbf85f1bb239ea878fcbc0fc9f41aeff1bf5d82b8352229bfb9f4863c6e036f10636091b499173839c780aa61b62d33b156715ec801b85cc796a61ef1786ff1bfffffffffffffff99f1b0e18338cc309ae074a799155d26cd19124a4a54845964a00d566aa9a420c1c443807c405ffff", + "cborBytes": [ + 191, 6, 72, 142, 251, 197, 129, 255, 187, 248, 95, 27, 178, 57, 234, 135, 143, 203, 192, 252, 159, 65, 174, 255, + 27, 245, 216, 43, 131, 82, 34, 155, 251, 159, 72, 99, 198, 224, 54, 241, 6, 54, 9, 27, 73, 145, 115, 131, 156, + 120, 10, 166, 27, 98, 211, 59, 21, 103, 21, 236, 128, 27, 133, 204, 121, 106, 97, 239, 23, 134, 255, 27, 255, 255, + 255, 255, 255, 255, 255, 249, 159, 27, 14, 24, 51, 140, 195, 9, 174, 7, 74, 121, 145, 85, 210, 108, 209, 145, 36, + 164, 165, 72, 69, 150, 74, 0, 213, 102, 170, 154, 66, 12, 28, 68, 56, 7, 196, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3348, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14150163943987328748" + } + }, + "cborHex": "1bc45f7b22e2e7b6ec", + "cborBytes": [27, 196, 95, 123, 34, 226, 231, 182, 236], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3349, + "sample": { + "_tag": "ByteArray", + "bytearray": "ffdbf0ba03075e" + }, + "cborHex": "47ffdbf0ba03075e", + "cborBytes": [71, 255, 219, 240, 186, 3, 7, 94], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3350, + "sample": { + "_tag": "ByteArray", + "bytearray": "0701fbfa" + }, + "cborHex": "440701fbfa", + "cborBytes": [68, 7, 1, 251, 250], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3351, + "sample": { + "_tag": "ByteArray", + "bytearray": "a607" + }, + "cborHex": "42a607", + "cborBytes": [66, 166, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3352, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf9b19ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2208421046556153824" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4efdf340c0ea7858a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b32" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12517373163008512438" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd3702" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6204894025794993859" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4078742525875540059" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b4aecb2fb6855aa81c7d63" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12802385378932710346" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050c9f06bf44cf9b19ab1b1ea5e33dba79d7e049d4efdf340c0ea7858a424b32ff9fd9050b9f1badb6a492662151b643fd3702ffd8669f1b561c363dd4743ec39f1b389a9ab79917505b4bb4aecb2fb6855aa81c7d631bb1ab35ac14f05bcaffffffff", + "cborBytes": [ + 217, 5, 12, 159, 6, 191, 68, 207, 155, 25, 171, 27, 30, 165, 227, 61, 186, 121, 215, 224, 73, 212, 239, 223, 52, + 12, 14, 167, 133, 138, 66, 75, 50, 255, 159, 217, 5, 11, 159, 27, 173, 182, 164, 146, 102, 33, 81, 182, 67, 253, + 55, 2, 255, 216, 102, 159, 27, 86, 28, 54, 61, 212, 116, 62, 195, 159, 27, 56, 154, 154, 183, 153, 23, 80, 91, 75, + 180, 174, 203, 47, 182, 133, 90, 168, 28, 125, 99, 27, 177, 171, 53, 172, 20, 240, 91, 202, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3353, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11049993082345362194" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ac" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10914986708167278320" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e9b29aaa9457b837b448" + }, + { + "_tag": "ByteArray", + "bytearray": "7e1636feba42303501648c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9705590767602215447" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7321604150121361299" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8506264105218183915" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "03d39b0159a76e4966d925" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17842126074352131113" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "23eb5413" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10843887118472395077" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1ad419a531c69b80df6b" + } + ] + }, + "cborHex": "d8669f1b99597629bbb813129f9f41acffd8669f1b9779d294bc6bbef09f4ae9b29aaa9457b837b4484b7e1636feba42303501648cd8669f1b86b12f61763daa1780ffffffbf1b659b902eda026f931b760c5222b52f92eb4b03d39b0159a76e4966d9251bf79bf7220b7e5c294423eb54131b967d39e180fb3945ff4a1ad419a531c69b80df6bffff", + "cborBytes": [ + 216, 102, 159, 27, 153, 89, 118, 41, 187, 184, 19, 18, 159, 159, 65, 172, 255, 216, 102, 159, 27, 151, 121, 210, + 148, 188, 107, 190, 240, 159, 74, 233, 178, 154, 170, 148, 87, 184, 55, 180, 72, 75, 126, 22, 54, 254, 186, 66, + 48, 53, 1, 100, 140, 216, 102, 159, 27, 134, 177, 47, 97, 118, 61, 170, 23, 128, 255, 255, 255, 191, 27, 101, 155, + 144, 46, 218, 2, 111, 147, 27, 118, 12, 82, 34, 181, 47, 146, 235, 75, 3, 211, 155, 1, 89, 167, 110, 73, 102, 217, + 37, 27, 247, 155, 247, 34, 11, 126, 92, 41, 68, 35, 235, 84, 19, 27, 150, 125, 57, 225, 128, 251, 57, 69, 255, 74, + 26, 212, 25, 165, 49, 198, 155, 128, 223, 107, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3354, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8777105446123613332" + } + }, + "cborHex": "1b79ce8ae670582c94", + "cborBytes": [27, 121, 206, 138, 230, 112, 88, 44, 148], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3355, + "sample": { + "_tag": "ByteArray", + "bytearray": "067cc1" + }, + "cborHex": "43067cc1", + "cborBytes": [67, 6, 124, 193], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3356, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17059276650815110307" + } + }, + "cborHex": "1becbeb9bae0f33ca3", + "cborBytes": [27, 236, 190, 185, 186, 224, 243, 60, 163], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3357, + "sample": { + "_tag": "ByteArray", + "bytearray": "24cbf901d10738009874e5fc" + }, + "cborHex": "4c24cbf901d10738009874e5fc", + "cborBytes": [76, 36, 203, 249, 1, 209, 7, 56, 0, 152, 116, 229, 252], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3358, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48cb62c86a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14272362776342476861" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cce8aad46c" + } + ] + } + ] + }, + "cborHex": "9f9fbf4548cb62c86a1bc6119e53ad66b83dff45cce8aad46cffff", + "cborBytes": [ + 159, 159, 191, 69, 72, 203, 98, 200, 106, 27, 198, 17, 158, 83, 173, 102, 184, 61, 255, 69, 204, 232, 170, 212, + 108, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3359, + "sample": { + "_tag": "ByteArray", + "bytearray": "1971" + }, + "cborHex": "421971", + "cborBytes": [66, 25, 113], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3360, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "57feda998422bce1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8057507187380573980" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15301551268733143673" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "401045104688697182" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9046150071309069025" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1786437143805350385" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1937959307363352608" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2624394726255945899" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10247032428638403839" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6662719786377934917" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14040360088280501069" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14381886545083088533" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a610046" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f4857feda998422bce1ff1b6fd20418aef9d71cd8669f1bd45a07cecd444a7980ffffbf1b0590cc65dbe10f5e1b7d8a618fb1406ae11b18cab31e0a14d1f11b1ae503b8e88e00201b246bb91950e4e8ab1b8e34c5b3e6e67cff1b5c76bc585905f8451bc2d9611c7c880b4d1bc796b99d3fa5be95449a610046ffff", + "cborBytes": [ + 159, 159, 159, 72, 87, 254, 218, 153, 132, 34, 188, 225, 255, 27, 111, 210, 4, 24, 174, 249, 215, 28, 216, 102, + 159, 27, 212, 90, 7, 206, 205, 68, 74, 121, 128, 255, 255, 191, 27, 5, 144, 204, 101, 219, 225, 15, 94, 27, 125, + 138, 97, 143, 177, 64, 106, 225, 27, 24, 202, 179, 30, 10, 20, 209, 241, 27, 26, 229, 3, 184, 232, 142, 0, 32, 27, + 36, 107, 185, 25, 80, 228, 232, 171, 27, 142, 52, 197, 179, 230, 230, 124, 255, 27, 92, 118, 188, 88, 89, 5, 248, + 69, 27, 194, 217, 97, 28, 124, 136, 11, 77, 27, 199, 150, 185, 157, 63, 165, 190, 149, 68, 154, 97, 0, 70, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3361, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "367564681272592941" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3671881337256546841" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13432671453492494990" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d7cec7fe768e43928f4fb6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13779730239530596885" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10803311126053807359" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14800045462367701028" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "925d2295bc" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3641994325993355474" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "34864983575002342" + } + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff49f9f1b0519da21533b8a2dffd8669f1b32f5249f2c90121980ff1bba6a6f8481f3428e9f4bd7cec7fe768e43928f4fb6bf1bbf3b6fa50bedfa151b95ed123b127664ff1bcd6452ef1c0f082445925d2295bcff1b328af68b1ad278d2ff1b007bdd8491167ce6ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 159, 27, 5, 25, 218, 33, 83, 59, 138, 45, 255, + 216, 102, 159, 27, 50, 245, 36, 159, 44, 144, 18, 25, 128, 255, 27, 186, 106, 111, 132, 129, 243, 66, 142, 159, + 75, 215, 206, 199, 254, 118, 142, 67, 146, 143, 79, 182, 191, 27, 191, 59, 111, 165, 11, 237, 250, 21, 27, 149, + 237, 18, 59, 18, 118, 100, 255, 27, 205, 100, 82, 239, 28, 15, 8, 36, 69, 146, 93, 34, 149, 188, 255, 27, 50, 138, + 246, 139, 26, 210, 120, 210, 255, 27, 0, 123, 221, 132, 145, 22, 124, 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3362, + "sample": { + "_tag": "ByteArray", + "bytearray": "06062ec6" + }, + "cborHex": "4406062ec6", + "cborBytes": [68, 6, 6, 46, 198], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3363, + "sample": { + "_tag": "ByteArray", + "bytearray": "637cafae020da6d7bf" + }, + "cborHex": "49637cafae020da6d7bf", + "cborBytes": [73, 99, 124, 175, 174, 2, 13, 166, 215, 191], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3364, + "sample": { + "_tag": "ByteArray", + "bytearray": "0357" + }, + "cborHex": "420357", + "cborBytes": [66, 3, 87], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3365, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3634697530531550516" + }, + "fields": [] + }, + "cborHex": "d8669f1b32710a258552953480ff", + "cborBytes": [216, 102, 159, 27, 50, 113, 10, 37, 133, 82, 149, 52, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3366, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f41619dd10" + } + ] + }, + "cborHex": "9f45f41619dd10ff", + "cborBytes": [159, 69, 244, 22, 25, 221, 16, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3367, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14062893444841304306" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "35c0c61079dc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4777092699212103000" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "533c" + }, + { + "_tag": "ByteArray", + "bytearray": "99c3ee0c4bcc787bd3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10554569522807745516" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8433aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14569143471210364347" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bc3296f1465ef70f29f4635c0c61079dcd8669f1b424ba47ff3a63d589f42533c4999c3ee0c4bcc787bd31b92795d0f7c1eabec438433aa1bca2ffecbe331fdbbffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 195, 41, 111, 20, 101, 239, 112, 242, 159, 70, 53, 192, 198, 16, 121, 220, 216, 102, 159, + 27, 66, 75, 164, 127, 243, 166, 61, 88, 159, 66, 83, 60, 73, 153, 195, 238, 12, 75, 204, 120, 123, 211, 27, 146, + 121, 93, 15, 124, 30, 171, 236, 67, 132, 51, 170, 27, 202, 47, 254, 203, 227, 49, 253, 187, 255, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3368, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f06ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 6, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3369, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe4c9275e9e03f7cb593" + }, + "cborHex": "4afe4c9275e9e03f7cb593", + "cborBytes": [74, 254, 76, 146, 117, 233, 224, 63, 124, 181, 147], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3370, + "sample": { + "_tag": "ByteArray", + "bytearray": "66b3685e" + }, + "cborHex": "4466b3685e", + "cborBytes": [68, 102, 179, 104, 94], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3371, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15865823509111948399" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3710159449622508731" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ab1375d0d1c65a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12397429320411226880" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1765979162457081905" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "222a20319ddac623d34097da" + } + ] + }, + "cborHex": "9fd87c9f9f1bdc2eba6bb9a8c46f1b337d225cb6cef4bbff9f47ab1375d0d1c65a1bac0c8448531fa300ffff80bf1b188204b112ff083111ff4c222a20319ddac623d34097daff", + "cborBytes": [ + 159, 216, 124, 159, 159, 27, 220, 46, 186, 107, 185, 168, 196, 111, 27, 51, 125, 34, 92, 182, 206, 244, 187, 255, + 159, 71, 171, 19, 117, 208, 209, 198, 90, 27, 172, 12, 132, 72, 83, 31, 163, 0, 255, 255, 128, 191, 27, 24, 130, + 4, 177, 18, 255, 8, 49, 17, 255, 76, 34, 42, 32, 49, 157, 218, 198, 35, 211, 64, 151, 218, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3372, + "sample": { + "_tag": "ByteArray", + "bytearray": "ee95017f529ffbbefe2daf" + }, + "cborHex": "4bee95017f529ffbbefe2daf", + "cborBytes": [75, 238, 149, 1, 127, 82, 159, 251, 190, 254, 45, 175], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3373, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10097673533870488783" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5add373f60c9fe23bf7e982d" + }, + { + "_tag": "ByteArray", + "bytearray": "90f91cd341" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1186941130511525421" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12098444776028466964" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "9b28d9692aab57d5" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16230891142751509983" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5430881033384601895" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6586524470565555437" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9229200798936686158" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15967070964456244877" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15683465688676172188" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2746457189455287879" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3084655662108930513" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "51a45c3d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7870036650826948495" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2429752427202328918" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "374090281729505737" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ec1376b89efa5d03be92a41c" + } + ] + } + ] + } + ] + }, + "cborHex": "d905019fd8669f1b8c2224944c36bccf9f4c5add373f60c9fe23bf7e982d4590f91cd341d8669f1b1078dcab6570a62d9f1ba7e64f6c69db6f14ffff80489b28d9692aab57d5ffff1be13fb57fd7bcdddf9fbf1b4b5e5d869c4ba9271b5b68091bec7a4ced1b8014b53a6d5f5e4e1bdd966e71ebde468d1bd9a6dcf30492019c1b261d6043304cd647ffd8669f1b2acee5fb426671d19f4451a45c3d1b6d37fca2fdd85f8fffffd8669f1b21b836f58b89b9569f1b053109211469b9c94cec1376b89efa5d03be92a41cffffffff", + "cborBytes": [ + 217, 5, 1, 159, 216, 102, 159, 27, 140, 34, 36, 148, 76, 54, 188, 207, 159, 76, 90, 221, 55, 63, 96, 201, 254, 35, + 191, 126, 152, 45, 69, 144, 249, 28, 211, 65, 216, 102, 159, 27, 16, 120, 220, 171, 101, 112, 166, 45, 159, 27, + 167, 230, 79, 108, 105, 219, 111, 20, 255, 255, 128, 72, 155, 40, 217, 105, 42, 171, 87, 213, 255, 255, 27, 225, + 63, 181, 127, 215, 188, 221, 223, 159, 191, 27, 75, 94, 93, 134, 156, 75, 169, 39, 27, 91, 104, 9, 27, 236, 122, + 76, 237, 27, 128, 20, 181, 58, 109, 95, 94, 78, 27, 221, 150, 110, 113, 235, 222, 70, 141, 27, 217, 166, 220, 243, + 4, 146, 1, 156, 27, 38, 29, 96, 67, 48, 76, 214, 71, 255, 216, 102, 159, 27, 42, 206, 229, 251, 66, 102, 113, 209, + 159, 68, 81, 164, 92, 61, 27, 109, 55, 252, 162, 253, 216, 95, 143, 255, 255, 216, 102, 159, 27, 33, 184, 54, 245, + 139, 137, 185, 86, 159, 27, 5, 49, 9, 33, 20, 105, 185, 201, 76, 236, 19, 118, 184, 158, 250, 93, 3, 190, 146, + 164, 28, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3374, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3139451713920398127" + } + }, + "cborHex": "1b2b9192b345b7732f", + "cborBytes": [27, 43, 145, 146, 179, 69, 183, 115, 47], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3375, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07c5f907f202aefcfa00fee2" + }, + { + "_tag": "ByteArray", + "bytearray": "764c325346" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0200070707a205e4ff7103be" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "00fd4b060331fe3fd93045" + }, + { + "_tag": "ByteArray", + "bytearray": "d6ca06953920a6aeba39" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f90c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e0f" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff5d87d9f4c07c5f907f202aefcfa00fee245764c325346ff4c0200070707a205e4ff7103be9f4b00fd4b060331fe3fd930454ad6ca06953920a6aeba39ff42f90cd8669f1bfffffffffffffffb80ff41fc428e0fff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 245, 216, 125, 159, 76, 7, 197, 249, 7, 242, 2, 174, 252, 250, 0, 254, + 226, 69, 118, 76, 50, 83, 70, 255, 76, 2, 0, 7, 7, 7, 162, 5, 228, 255, 113, 3, 190, 159, 75, 0, 253, 75, 6, 3, + 49, 254, 63, 217, 48, 69, 74, 214, 202, 6, 149, 57, 32, 166, 174, 186, 57, 255, 66, 249, 12, 216, 102, 159, 27, + 255, 255, 255, 255, 255, 255, 255, 251, 128, 255, 65, 252, 66, 142, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3376, + "sample": { + "_tag": "ByteArray", + "bytearray": "e66fb0" + }, + "cborHex": "43e66fb0", + "cborBytes": [67, 230, 111, 176], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3377, + "sample": { + "_tag": "ByteArray", + "bytearray": "61e2" + }, + "cborHex": "4261e2", + "cborBytes": [66, 97, 226], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3378, + "sample": { + "_tag": "ByteArray", + "bytearray": "a8bc8f88d8f07f" + }, + "cborHex": "47a8bc8f88d8f07f", + "cborBytes": [71, 168, 188, 143, 136, 216, 240, 127], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3379, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "246095330605055167" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12335383278891533687" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "273303e070849db2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "468aeae0a91a697480a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0209e63" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53f85f691f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c2a5bb735c32b76322f07b6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d76" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7f2caacd8fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9070bfc70cf47343fe73745c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3865760661207076571" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c714d080be05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16809899646206136948" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6130768562685042834" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7633300068872562961" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b036a4e663998bcbf9fa0d8669f1bab3015bc8a9f85779fbf48273303e070849db241954a468aeae0a91a697480a844f0209e634553f85f691f4c7c2a5bb735c32b76322f07b6427d7646f7f2caacd8fa4c9070bfc70cf47343fe73745c1b35a5f0d6f5ed4edb46c714d080be051be948c2aa6214d274ffbf1b5514dd868af960921b69eeedf83d1d2911ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 3, 106, 78, 102, 57, 152, 188, 191, 159, 160, 216, 102, 159, 27, 171, 48, 21, 188, 138, 159, + 133, 119, 159, 191, 72, 39, 51, 3, 224, 112, 132, 157, 178, 65, 149, 74, 70, 138, 234, 224, 169, 26, 105, 116, + 128, 168, 68, 240, 32, 158, 99, 69, 83, 248, 95, 105, 31, 76, 124, 42, 91, 183, 53, 195, 43, 118, 50, 47, 7, 182, + 66, 125, 118, 70, 247, 242, 202, 172, 216, 250, 76, 144, 112, 191, 199, 12, 244, 115, 67, 254, 115, 116, 92, 27, + 53, 165, 240, 214, 245, 237, 78, 219, 70, 199, 20, 208, 128, 190, 5, 27, 233, 72, 194, 170, 98, 20, 210, 116, 255, + 191, 27, 85, 20, 221, 134, 138, 249, 96, 146, 27, 105, 238, 237, 248, 61, 29, 41, 17, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3380, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11343015841032963641" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03e603" + } + } + ] + }, + "cborHex": "bf01d8669f1bffffffffffffffee9f06ffff1b9d6a7ccf3e6606394303e603ff", + "cborBytes": [ + 191, 1, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 6, 255, 255, 27, 157, 106, 124, 207, 62, + 102, 6, 57, 67, 3, 230, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3381, + "sample": { + "_tag": "ByteArray", + "bytearray": "759097e1fc07d564041c42" + }, + "cborHex": "4b759097e1fc07d564041c42", + "cborBytes": [75, 117, 144, 151, 225, 252, 7, 213, 100, 4, 28, 66], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3382, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c258" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14302224066336702079" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13174789639221713086" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3a8c9eb4e2e92c3c2" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18395822666351412668" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff59f42c2581bc67bb5030c0abe7fbf1bb6d6415fb44e98be49e3a8c9eb4e2e92c3c2ff80d8669f1bff4b173ff2f485bc80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 66, 194, 88, 27, 198, 123, 181, 3, 12, 10, 190, + 127, 191, 27, 182, 214, 65, 95, 180, 78, 152, 190, 73, 227, 168, 201, 235, 78, 46, 146, 195, 194, 255, 128, 216, + 102, 159, 27, 255, 75, 23, 63, 242, 244, 133, 188, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3383, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1542046445346218083" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4685627956977825246" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9658422538796898164" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9801110018757762725" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13660769224679983947" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14147455247603841643" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "457854878801736732" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf0dbf041bfffffffffffffffe1b156673126a03e0631b4106b1cd254d75de1b86099c20639d9774061b880489a230941ea51bbd94cd3b63a38b4b1bc455db975d29ba6b11ff1b065aa09621a8341c80ff", + "cborBytes": [ + 191, 13, 191, 4, 27, 255, 255, 255, 255, 255, 255, 255, 254, 27, 21, 102, 115, 18, 106, 3, 224, 99, 27, 65, 6, + 177, 205, 37, 77, 117, 222, 27, 134, 9, 156, 32, 99, 157, 151, 116, 6, 27, 136, 4, 137, 162, 48, 148, 30, 165, 27, + 189, 148, 205, 59, 99, 163, 139, 75, 27, 196, 85, 219, 151, 93, 41, 186, 107, 17, 255, 27, 6, 90, 160, 150, 33, + 168, 52, 28, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3384, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16351850080756629451" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13460378004426857483" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14976223606051582771" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "95466e83bed29a3b2ce5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16057321402521487353" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "434168016169295661" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4179372695791468202" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b92a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11140256520609497925" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1be2ed71033bf0ffcb9f1bbaccde7a98581c0b1bcfd63c05b38633339f4a95466e83bed29a3b2ce51bded710bd819207f91b06067982a89b5f2d1b3a001d52d49dfeaaff42b92affff9fa01b9a9a244829a88345ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 226, 237, 113, 3, 59, 240, 255, 203, 159, 27, 186, 204, 222, 122, 152, 88, 28, 11, 27, + 207, 214, 60, 5, 179, 134, 51, 51, 159, 74, 149, 70, 110, 131, 190, 210, 154, 59, 44, 229, 27, 222, 215, 16, 189, + 129, 146, 7, 249, 27, 6, 6, 121, 130, 168, 155, 95, 45, 27, 58, 0, 29, 82, 212, 157, 254, 170, 255, 66, 185, 42, + 255, 255, 159, 160, 27, 154, 154, 36, 72, 41, 168, 131, 69, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3385, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3126752121389507632" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fd8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1992229727704918276" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2120507328916090448" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6584295922146607133" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02d53e84fe0605050093" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6717084674873352279" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7560962274479183072" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15892297541300743222" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8011303184368142007" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18149707361295865032" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6cfc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0204230307d300" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3900f5da2d16b1c8062045e8" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2b64747cf81ee430bf0e421fd81b1ba5d261ced329041b1d6d8e2e43a7ee501b5b601e418f9a001d4a02d53e84fe06050500931b5d37e0ec540be057081b68edef21027614e001ff1bdc8cc869ae0b6c361b6f2dddccec3806b71bfbe0b6af0f5514c8bf426cfc470204230307d30041ac4c3900f5da2d16b1c8062045e8ffff", + "cborBytes": [ + 191, 27, 43, 100, 116, 124, 248, 30, 228, 48, 191, 14, 66, 31, 216, 27, 27, 165, 210, 97, 206, 211, 41, 4, 27, 29, + 109, 142, 46, 67, 167, 238, 80, 27, 91, 96, 30, 65, 143, 154, 0, 29, 74, 2, 213, 62, 132, 254, 6, 5, 5, 0, 147, + 27, 93, 55, 224, 236, 84, 11, 224, 87, 8, 27, 104, 237, 239, 33, 2, 118, 20, 224, 1, 255, 27, 220, 140, 200, 105, + 174, 11, 108, 54, 27, 111, 45, 221, 204, 236, 56, 6, 183, 27, 251, 224, 182, 175, 15, 85, 20, 200, 191, 66, 108, + 252, 71, 2, 4, 35, 3, 7, 211, 0, 65, 172, 76, 57, 0, 245, 218, 45, 22, 177, 200, 6, 32, 69, 232, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3386, + "sample": { + "_tag": "ByteArray", + "bytearray": "63ad12fdbed40d1a822e4254" + }, + "cborHex": "4c63ad12fdbed40d1a822e4254", + "cborBytes": [76, 99, 173, 18, 253, 190, 212, 13, 26, 130, 46, 66, 84], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3387, + "sample": { + "_tag": "ByteArray", + "bytearray": "77f9f49685f421882a" + }, + "cborHex": "4977f9f49685f421882a", + "cborBytes": [73, 119, 249, 244, 150, 133, 244, 33, 136, 42], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3388, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd4ae064910f922de81b2c4a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5020718665008161720" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16726553838606894122" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9702650839310384313" + } + }, + { + "_tag": "ByteArray", + "bytearray": "966481143b6868" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12079914387985770143" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8100733786474154097" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15793072601982940213" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16596204943661173254" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cada9d59ff00f8fa05c0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9137220389097471235" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905079f9fbf4cbd4ae064910f922de81b2c4a1b45ad2d0660fc23b8ffd8669f1be820a8185a9c442a80ff9f1b86a6bd8810bdbcb947966481143b68681ba7a47a223d05a69fffd8669f1b706b967592cc08719f1bdb2c43db3125b435ffffd8669f1be65190773e818a0680ffff9f4acada9d59ff00f8fa05c09f1b7ecded88669c7d03ffffff", + "cborBytes": [ + 217, 5, 7, 159, 159, 191, 76, 189, 74, 224, 100, 145, 15, 146, 45, 232, 27, 44, 74, 27, 69, 173, 45, 6, 96, 252, + 35, 184, 255, 216, 102, 159, 27, 232, 32, 168, 24, 90, 156, 68, 42, 128, 255, 159, 27, 134, 166, 189, 136, 16, + 189, 188, 185, 71, 150, 100, 129, 20, 59, 104, 104, 27, 167, 164, 122, 34, 61, 5, 166, 159, 255, 216, 102, 159, + 27, 112, 107, 150, 117, 146, 204, 8, 113, 159, 27, 219, 44, 67, 219, 49, 37, 180, 53, 255, 255, 216, 102, 159, 27, + 230, 81, 144, 119, 62, 129, 138, 6, 128, 255, 255, 159, 74, 202, 218, 157, 89, 255, 0, 248, 250, 5, 192, 159, 27, + 126, 205, 237, 136, 102, 156, 125, 3, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3389, + "sample": { + "_tag": "ByteArray", + "bytearray": "657d1d493cacc9b5ba" + }, + "cborHex": "49657d1d493cacc9b5ba", + "cborBytes": [73, 101, 125, 29, 73, 60, 172, 201, 181, 186], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3390, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17317622767121495526" + } + } + ] + }, + "cborHex": "d9050d9f1bf0548e276c7e75e6ff", + "cborBytes": [217, 5, 13, 159, 27, 240, 84, 142, 39, 108, 126, 117, 230, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3391, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2626065738901424158" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9923218988525765428" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15061692545487478083" + } + }, + { + "_tag": "ByteArray", + "bytearray": "37788a1c83347c37f249" + }, + { + "_tag": "ByteArray", + "bytearray": "c5aa4505fbf8928fa1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3828003218185535556" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11676415275158883966" + } + } + ] + }, + "cborHex": "d8669f1b2471a8e0440b081e9f9fd8669f1b89b65b18377d43349f1bd105e191e1ee1d434a37788a1c83347c37f24949c5aa4505fbf8928fa11b351fcca533004044ffffff1ba20af5d415ca4e7effff", + "cborBytes": [ + 216, 102, 159, 27, 36, 113, 168, 224, 68, 11, 8, 30, 159, 159, 216, 102, 159, 27, 137, 182, 91, 24, 55, 125, 67, + 52, 159, 27, 209, 5, 225, 145, 225, 238, 29, 67, 74, 55, 120, 138, 28, 131, 52, 124, 55, 242, 73, 73, 197, 170, + 69, 5, 251, 248, 146, 143, 161, 27, 53, 31, 204, 165, 51, 0, 64, 68, 255, 255, 255, 27, 162, 10, 245, 212, 21, + 202, 78, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3392, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11260662782200494891" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f5576449920d7c83d9" + } + ] + }, + "cborHex": "9f1b9c45e9238c85bb2b8049f5576449920d7c83d9ff", + "cborBytes": [159, 27, 156, 69, 233, 35, 140, 133, 187, 43, 128, 73, 245, 87, 100, 73, 146, 13, 124, 131, 217, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3393, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01d90085fba8e905053e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11344828334356396138" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10214596641566974710" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17246959344398820732" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16525328297890049318" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c7e916531" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9452983096509939997" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f7a7af64de976cff3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3322499010983937976" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12774252022765261585" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "12e7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5865957884583495829" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfdae413dea59c9f40c115" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6866407864531669649" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75117799c9f3" + }, + { + "_tag": "ByteArray", + "bytearray": "2a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17373636510030486141" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a01d90085fba8e905053ebf1b9d70ed433b19786a1b8dc18986b87f62f61bef5982253a7ee57c1be555c28830726d26456c7e9165311b832fbe0acf3f411dff490f7a7af64de976cff39f1b2e1be33f4448c7b81bb1474288a83d1311ff4212e7d8669f1b5168119dea00489580ff4bbfdae413dea59c9f40c1159f1b5f4a6192b05bd2914675117799c9f3412a031bf11b8e5b3d1fda7dffff", + "cborBytes": [ + 191, 74, 1, 217, 0, 133, 251, 168, 233, 5, 5, 62, 191, 27, 157, 112, 237, 67, 59, 25, 120, 106, 27, 141, 193, 137, + 134, 184, 127, 98, 246, 27, 239, 89, 130, 37, 58, 126, 229, 124, 27, 229, 85, 194, 136, 48, 114, 109, 38, 69, 108, + 126, 145, 101, 49, 27, 131, 47, 190, 10, 207, 63, 65, 29, 255, 73, 15, 122, 122, 246, 77, 233, 118, 207, 243, 159, + 27, 46, 27, 227, 63, 68, 72, 199, 184, 27, 177, 71, 66, 136, 168, 61, 19, 17, 255, 66, 18, 231, 216, 102, 159, 27, + 81, 104, 17, 157, 234, 0, 72, 149, 128, 255, 75, 191, 218, 228, 19, 222, 165, 156, 159, 64, 193, 21, 159, 27, 95, + 74, 97, 146, 176, 91, 210, 145, 70, 117, 17, 119, 153, 201, 243, 65, 42, 3, 27, 241, 27, 142, 91, 61, 31, 218, + 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3394, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3909937715209732379" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7042033203585439268" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "186387227349613077" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9516677596791740014" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3f81b350a8d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3487101309809311537" + } + }, + { + "_tag": "ByteArray", + "bytearray": "739ad8795b6c8c03ac61" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17851705765147147777" + } + }, + { + "_tag": "ByteArray", + "bytearray": "730cfd" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1b3642e3a2e0fa811b1b61ba53e36c3756241b02962e321cd7fa15d8669f1b841207da4eb0966e9f463f81b350a8d11b3064ac2a72fbbf314a739ad8795b6c8c03ac611bf7bdffcf9e637e0143730cfdffffffff", + "cborBytes": [ + 159, 159, 27, 54, 66, 227, 162, 224, 250, 129, 27, 27, 97, 186, 83, 227, 108, 55, 86, 36, 27, 2, 150, 46, 50, 28, + 215, 250, 21, 216, 102, 159, 27, 132, 18, 7, 218, 78, 176, 150, 110, 159, 70, 63, 129, 179, 80, 168, 209, 27, 48, + 100, 172, 42, 114, 251, 191, 49, 74, 115, 154, 216, 121, 91, 108, 140, 3, 172, 97, 27, 247, 189, 255, 207, 158, + 99, 126, 1, 67, 115, 12, 253, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3395, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "708797692432424532" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12706063713777766788" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8cf5ba46667010e00001" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18417577924451137144" + } + } + ] + } + ] + }, + "cborHex": "d905039f1b09d627bef30d1e54d8669f1bb05501a0c93451849f4a8cf5ba46667010e000011bff98618ab1fc7678ffffff", + "cborBytes": [ + 217, 5, 3, 159, 27, 9, 214, 39, 190, 243, 13, 30, 84, 216, 102, 159, 27, 176, 85, 1, 160, 201, 52, 81, 132, 159, + 74, 140, 245, 186, 70, 102, 112, 16, 224, 0, 1, 27, 255, 152, 97, 138, 177, 252, 118, 120, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3396, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17658122418319433185" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5374199147183446512" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4989fcedcb517169f22b88" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3c602e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3938242954594583812" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3e464d" + } + ] + } + } + ] + }, + "cborHex": "bf1bf50e40c8604a9de11b4a94fda6901399f04b4989fcedcb517169f22b889f433c602e1b36a77319fbcb8504433e464dffff", + "cborBytes": [ + 191, 27, 245, 14, 64, 200, 96, 74, 157, 225, 27, 74, 148, 253, 166, 144, 19, 153, 240, 75, 73, 137, 252, 237, 203, + 81, 113, 105, 242, 43, 136, 159, 67, 60, 96, 46, 27, 54, 167, 115, 25, 251, 203, 133, 4, 67, 62, 70, 77, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3397, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16851927789866838575" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ae8eeb28" + } + ] + }, + "cborHex": "d8669f1be9de130a1f8bea2f9fa044ae8eeb28ffff", + "cborBytes": [216, 102, 159, 27, 233, 222, 19, 10, 31, 139, 234, 47, 159, 160, 68, 174, 142, 235, 40, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3398, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6362072553733282594" + } + }, + "cborHex": "1b584a9f47a888db22", + "cborBytes": [27, 88, 74, 159, 71, 168, 136, 219, 34], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3399, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "82080549460988392" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14765296859818306361" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6404331175262349647" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85f41fd6a023ee3784001b92" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8345738011121602490" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb3ce45ef87001" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12809657111913821418" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d46089" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15324280842507188028" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4bcb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15477213523960783311" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13683054004894665348" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8626781619304693095" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a90e1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcb78ace96d7516cfac2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c19b7d5ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0e9da07273b62486cc9d1b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0e5" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13984245996235986570" + } + } + ] + }, + "cborHex": "d905029fbf1b01239bd3299751e81bcce8df439ca92b391b58e0c145b578e94f4c85f41fd6a023ee3784001b921b73d20480e560cfba47cb3ce45ef870011bb1c50b465a2df4ea43d460891bd4aac83c17f6f73c424bcb1bd6ca1bb2c08de1cf1bbde3f91f1c3b8a84ffbf1b77b87c2d15867d67431a90e14abcb78ace96d7516cfac2457c19b7d5ae4cc0e9da07273b62486cc9d1b942e0e5ffa01bc21205a45153168aff", + "cborBytes": [ + 217, 5, 2, 159, 191, 27, 1, 35, 155, 211, 41, 151, 81, 232, 27, 204, 232, 223, 67, 156, 169, 43, 57, 27, 88, 224, + 193, 69, 181, 120, 233, 79, 76, 133, 244, 31, 214, 160, 35, 238, 55, 132, 0, 27, 146, 27, 115, 210, 4, 128, 229, + 96, 207, 186, 71, 203, 60, 228, 94, 248, 112, 1, 27, 177, 197, 11, 70, 90, 45, 244, 234, 67, 212, 96, 137, 27, + 212, 170, 200, 60, 23, 246, 247, 60, 66, 75, 203, 27, 214, 202, 27, 178, 192, 141, 225, 207, 27, 189, 227, 249, + 31, 28, 59, 138, 132, 255, 191, 27, 119, 184, 124, 45, 21, 134, 125, 103, 67, 26, 144, 225, 74, 188, 183, 138, + 206, 150, 215, 81, 108, 250, 194, 69, 124, 25, 183, 213, 174, 76, 192, 233, 218, 7, 39, 59, 98, 72, 108, 201, 209, + 185, 66, 224, 229, 255, 160, 27, 194, 18, 5, 164, 81, 83, 22, 138, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3400, + "sample": { + "_tag": "ByteArray", + "bytearray": "16903bd4686453153f58" + }, + "cborHex": "4a16903bd4686453153f58", + "cborBytes": [74, 22, 144, 59, 212, 104, 100, 83, 21, 63, 88], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3401, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12706928364839630453" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11870932388405087077" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04ba56609ee8765e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11144447872271590631" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "564081923159624477" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10522346331742183995" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3315123454111041056" + } + }, + { + "_tag": "ByteArray", + "bytearray": "65a9bb71bbd8d65b5dc6" + }, + { + "_tag": "ByteArray", + "bytearray": "0f7f7cc0b6ab94a2093f4d" + } + ] + } + } + ] + }, + "cborHex": "bf1bb05814060c99f6751ba4be061cc3908b654804ba56609ee8765ed8669f1b9aa9084b449b24e79f1b07d405853e260b1d1b9206e23d2b20a23b1b2e01af379cdac6204a65a9bb71bbd8d65b5dc64b0f7f7cc0b6ab94a2093f4dffffff", + "cborBytes": [ + 191, 27, 176, 88, 20, 6, 12, 153, 246, 117, 27, 164, 190, 6, 28, 195, 144, 139, 101, 72, 4, 186, 86, 96, 158, 232, + 118, 94, 216, 102, 159, 27, 154, 169, 8, 75, 68, 155, 36, 231, 159, 27, 7, 212, 5, 133, 62, 38, 11, 29, 27, 146, + 6, 226, 61, 43, 32, 162, 59, 27, 46, 1, 175, 55, 156, 218, 198, 32, 74, 101, 169, 187, 113, 187, 216, 214, 91, 93, + 198, 75, 15, 127, 124, 192, 182, 171, 148, 162, 9, 63, 77, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3402, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7a43db3370" + } + ] + }, + "cborHex": "d87f9f457a43db3370ff", + "cborBytes": [216, 127, 159, 69, 122, 67, 219, 51, 112, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3403, + "sample": { + "_tag": "ByteArray", + "bytearray": "7158bfcf16b0b08112a3ef" + }, + "cborHex": "4b7158bfcf16b0b08112a3ef", + "cborBytes": [75, 113, 88, 191, 207, 22, 176, 176, 129, 18, 163, 239], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3404, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2315017437750585973" + } + }, + "cborHex": "1b2020981819f56a75", + "cborBytes": [27, 32, 32, 152, 24, 25, 245, 106, 117], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3405, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12310362960858526314" + }, + "fields": [] + }, + "cborHex": "d8669f1baad731e3ca19326a80ff", + "cborBytes": [216, 102, 159, 27, 170, 215, 49, 227, 202, 25, 50, 106, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3406, + "sample": { + "_tag": "ByteArray", + "bytearray": "07f9d7" + }, + "cborHex": "4307f9d7", + "cborBytes": [67, 7, 249, 215], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3407, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10036152690069996024" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14963309414601800121" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1e4a72" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10115956106247140379" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13096759247010427259" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9f19c6448fdd030f" + }, + { + "_tag": "ByteArray", + "bytearray": "644272a6e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15525964174553159545" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8b4793b2a33401f89f1bcfa85aa2319939b9431e4a72bf1b8c63187b644df41b1bb5c1092542de717bff9f489f19c6448fdd030f45644272a6e31bd7774e281bae9779ffffff", + "cborBytes": [ + 216, 102, 159, 27, 139, 71, 147, 178, 163, 52, 1, 248, 159, 27, 207, 168, 90, 162, 49, 153, 57, 185, 67, 30, 74, + 114, 191, 27, 140, 99, 24, 123, 100, 77, 244, 27, 27, 181, 193, 9, 37, 66, 222, 113, 123, 255, 159, 72, 159, 25, + 198, 68, 143, 221, 3, 15, 69, 100, 66, 114, 166, 227, 27, 215, 119, 78, 40, 27, 174, 151, 121, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3408, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4011f20e6b0ece38b6d9" + }, + { + "_tag": "ByteArray", + "bytearray": "3fb86457785f53" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "170a9882" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13962583798803438524" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1660956355230001067" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17681077313996288302" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cef917153a68744ad79b8cb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16192335456755087273" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7714892816446849472" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7746749842037820422" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6024204144260846280" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d8befd850d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5077765902518634581" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12151067508055980925" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9778f9572a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd688794f16117ee29ff9f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dcb1" + } + } + ] + }, + "cborHex": "bf41009f4a4011f20e6b0ece38b6d9473fb86457785f53ff44170a9882d8669f1bc1c50ffcf24d9bbc9f1b170ce70144e967ab41de1bf55fce2382f7712effff4c3cef917153a68744ad79b8cbd8669f1be0b6bb4ea7d977a99f1b6b10ce242c8701c01b6b81fbeff27a4c061b539a45c0691a92c8ffff466d8befd850d61b4677d92f6836c8554187d8669f1ba8a14384fb77bb7d9f459778f9572affff4bdd688794f16117ee29ff9f42dcb1ff", + "cborBytes": [ + 191, 65, 0, 159, 74, 64, 17, 242, 14, 107, 14, 206, 56, 182, 217, 71, 63, 184, 100, 87, 120, 95, 83, 255, 68, 23, + 10, 152, 130, 216, 102, 159, 27, 193, 197, 15, 252, 242, 77, 155, 188, 159, 27, 23, 12, 231, 1, 68, 233, 103, 171, + 65, 222, 27, 245, 95, 206, 35, 130, 247, 113, 46, 255, 255, 76, 60, 239, 145, 113, 83, 166, 135, 68, 173, 121, + 184, 203, 216, 102, 159, 27, 224, 182, 187, 78, 167, 217, 119, 169, 159, 27, 107, 16, 206, 36, 44, 135, 1, 192, + 27, 107, 129, 251, 239, 242, 122, 76, 6, 27, 83, 154, 69, 192, 105, 26, 146, 200, 255, 255, 70, 109, 139, 239, + 216, 80, 214, 27, 70, 119, 217, 47, 104, 54, 200, 85, 65, 135, 216, 102, 159, 27, 168, 161, 67, 132, 251, 119, + 187, 125, 159, 69, 151, 120, 249, 87, 42, 255, 255, 75, 221, 104, 135, 148, 241, 97, 23, 238, 41, 255, 159, 66, + 220, 177, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3409, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11563897858639402376" + } + }, + "cborHex": "1ba07b37d5931a1588", + "cborBytes": [27, 160, 123, 55, 213, 147, 26, 21, 136], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3410, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8254748722819615796" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "629c88f9f9cd06a4c0fa" + } + ] + }, + "cborHex": "d8669f1b728ec23a55c5cc349f4a629c88f9f9cd06a4c0faffff", + "cborBytes": [ + 216, 102, 159, 27, 114, 142, 194, 58, 85, 197, 204, 52, 159, 74, 98, 156, 136, 249, 249, 205, 6, 164, 192, 250, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3411, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9913526516096853230" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5567168147334503236" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14894135916379009322" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18240077883744963250" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "958463129972557573" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9774577727943014985" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11018494361194034374" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17065703576749653112" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16476522890138962197" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "302e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46e19e97342658f8fc07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c993c570d15a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9600746711456884536" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7399" + }, + { + "_tag": "ByteArray", + "bytearray": "0f" + } + ] + } + } + ] + }, + "cborHex": "bf1b8993ebd79f5e64eed8669f1b4d428def12be1b449f1bceb299b41428712a1bfd21c631f813cab21b0d4d25237852c7051b87a646a7d77cfa491b98e98e3e369d74c6ffff1becd58efc2e46bc781be4a85e45b053491542302e4a46e19e97342658f8fc0746c993c570d15ad8669f1b853cb44462e327389f427399410fffffff", + "cborBytes": [ + 191, 27, 137, 147, 235, 215, 159, 94, 100, 238, 216, 102, 159, 27, 77, 66, 141, 239, 18, 190, 27, 68, 159, 27, + 206, 178, 153, 180, 20, 40, 113, 42, 27, 253, 33, 198, 49, 248, 19, 202, 178, 27, 13, 77, 37, 35, 120, 82, 199, 5, + 27, 135, 166, 70, 167, 215, 124, 250, 73, 27, 152, 233, 142, 62, 54, 157, 116, 198, 255, 255, 27, 236, 213, 142, + 252, 46, 70, 188, 120, 27, 228, 168, 94, 69, 176, 83, 73, 21, 66, 48, 46, 74, 70, 225, 158, 151, 52, 38, 88, 248, + 252, 7, 70, 201, 147, 197, 112, 209, 90, 216, 102, 159, 27, 133, 60, 180, 68, 98, 227, 39, 56, 159, 66, 115, 153, + 65, 15, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3412, + "sample": { + "_tag": "ByteArray", + "bytearray": "9206bbfa8a0cbd" + }, + "cborHex": "479206bbfa8a0cbd", + "cborBytes": [71, 146, 6, 187, 250, 138, 12, 189], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3413, + "sample": { + "_tag": "ByteArray", + "bytearray": "3afed15c501339aafd67ff" + }, + "cborHex": "4b3afed15c501339aafd67ff", + "cborBytes": [75, 58, 254, 209, 92, 80, 19, 57, 170, 253, 103, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3414, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2200942545276335064" + } + }, + "cborHex": "1b1e8b5195763d73d8", + "cborBytes": [27, 30, 139, 81, 149, 118, 61, 115, 216], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3415, + "sample": { + "_tag": "ByteArray", + "bytearray": "4106fd04" + }, + "cborHex": "444106fd04", + "cborBytes": [68, 65, 6, 253, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3416, + "sample": { + "_tag": "ByteArray", + "bytearray": "b391b386bb7b" + }, + "cborHex": "46b391b386bb7b", + "cborBytes": [70, 179, 145, 179, 134, 187, 123], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3417, + "sample": { + "_tag": "ByteArray", + "bytearray": "ee1f53d0dbea9dc6bbafb7" + }, + "cborHex": "4bee1f53d0dbea9dc6bbafb7", + "cborBytes": [75, 238, 31, 83, 208, 219, 234, 157, 198, 187, 175, 183], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3418, + "sample": { + "_tag": "ByteArray", + "bytearray": "ca8a05b986fbd105fc353e03" + }, + "cborHex": "4cca8a05b986fbd105fc353e03", + "cborBytes": [76, 202, 138, 5, 185, 134, 251, 209, 5, 252, 53, 62, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3419, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "67204b0b470e3cb5f024f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1687339761993144452" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4055240916521169707" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dc6dd8097b5859" + }, + { + "_tag": "ByteArray", + "bytearray": "36264799" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17786109451905042724" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1397365613361202862" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6957142410755156087" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1110972111373196985" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "d9050c9f80bf4b67204b0b470e3cb5f024f21b176aa292d8fe5884ff418b9fd8669f1b38471c20c3dfb32b9f47dc6dd8097b585944362647991bf6d4f44fc90489241b1364709f2dbd86ae1b608cbc297cdda877ffff801b0f6af73fc5c3deb9ff9fa0ffff", + "cborBytes": [ + 217, 5, 12, 159, 128, 191, 75, 103, 32, 75, 11, 71, 14, 60, 181, 240, 36, 242, 27, 23, 106, 162, 146, 216, 254, + 88, 132, 255, 65, 139, 159, 216, 102, 159, 27, 56, 71, 28, 32, 195, 223, 179, 43, 159, 71, 220, 109, 216, 9, 123, + 88, 89, 68, 54, 38, 71, 153, 27, 246, 212, 244, 79, 201, 4, 137, 36, 27, 19, 100, 112, 159, 45, 189, 134, 174, 27, + 96, 140, 188, 41, 124, 221, 168, 119, 255, 255, 128, 27, 15, 106, 247, 63, 197, 195, 222, 185, 255, 159, 160, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3420, + "sample": { + "_tag": "ByteArray", + "bytearray": "90b178" + }, + "cborHex": "4390b178", + "cborBytes": [67, 144, 177, 120], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3421, + "sample": { + "_tag": "ByteArray", + "bytearray": "49538e" + }, + "cborHex": "4349538e", + "cborBytes": [67, 73, 83, 142], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3422, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14914996957831925801" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11313564307481541241" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11287873474095750589" + } + }, + { + "_tag": "ByteArray", + "bytearray": "979728c86a1391a2dadfbc" + }, + { + "_tag": "ByteArray", + "bytearray": "ef7c2b" + } + ] + } + } + ] + }, + "cborHex": "bf1bcefcb6b5c99a90299f1b9d01dacbbaf9ba791b9ca6951e75081dbd4b979728c86a1391a2dadfbc43ef7c2bffff", + "cborBytes": [ + 191, 27, 206, 252, 182, 181, 201, 154, 144, 41, 159, 27, 157, 1, 218, 203, 186, 249, 186, 121, 27, 156, 166, 149, + 30, 117, 8, 29, 189, 75, 151, 151, 40, 200, 106, 19, 145, 162, 218, 223, 188, 67, 239, 124, 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3423, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13730542844267481233" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7d34" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10069012080633587723" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d982" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2c8d05244" + } + } + ] + } + ] + }, + "cborHex": "9f1bbe8caff825d84891427d34bf1b8bbc5123b148280b418fff42d982bf418a45b2c8d05244ffff", + "cborBytes": [ + 159, 27, 190, 140, 175, 248, 37, 216, 72, 145, 66, 125, 52, 191, 27, 139, 188, 81, 35, 177, 72, 40, 11, 65, 143, + 255, 66, 217, 130, 191, 65, 138, 69, 178, 200, 208, 82, 68, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3424, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10595129995791785748" + } + }, + "cborHex": "1b9309769884415f14", + "cborBytes": [27, 147, 9, 118, 152, 132, 65, 95, 20], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3425, + "sample": { + "_tag": "ByteArray", + "bytearray": "f70502bcfa" + }, + "cborHex": "45f70502bcfa", + "cborBytes": [69, 247, 5, 2, 188, 250], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3426, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7773330076404126184" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4283040085413119974" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6be06a8505ed91e89f1bfffffffffffffff79f1b3b706a43e1cec7e6ffffff", + "cborBytes": [ + 216, 102, 159, 27, 107, 224, 106, 133, 5, 237, 145, 232, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 27, + 59, 112, 106, 67, 225, 206, 199, 230, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3427, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3796987489645032802" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1749104463166411103" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b34b19c0128e4f562bf1b1846113dfa15915f41beffff", + "cborBytes": [ + 191, 27, 52, 177, 156, 1, 40, 228, 245, 98, 191, 27, 24, 70, 17, 61, 250, 21, 145, 95, 65, 190, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3428, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6047d75d344cba150fe9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41c6c6eb3de40d4b09" + } + } + ] + }, + "cborHex": "bf4a6047d75d344cba150fe94941c6c6eb3de40d4b09ff", + "cborBytes": [191, 74, 96, 71, 215, 93, 52, 76, 186, 21, 15, 233, 73, 65, 198, 198, 235, 61, 228, 13, 75, 9, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3429, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "608167864948930259" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11972210918567187730" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95dc89f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13202700115306804308" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17471352287433057656" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "821773170231767257" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6660f0461b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2049775054785557479" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e4edf007156536bb2de" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9461895998244325236" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b41aa10e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0c6b2d3a95d69c2fc93a23e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "644214cc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8007a2a38d5d05d017d74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9314ec0bd1162" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12955735025960770105" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbfdb08f8ffcb0ea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13940521773165551287" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cce7a81e7811" + }, + { + "_tag": "ByteArray", + "bytearray": "92fbff6c9ba3d0c0" + }, + { + "_tag": "ByteArray", + "bytearray": "864f17f7f968ae7c0dd0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14383731942265616934" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0870a5737216b6d3bf1ba625d666214015124495dc89f91bb73969cdd0def4541bf276b6569627e578ff1b0b678658299c70d9456660f0461b1b1c72438d59f333e74a8e4edf007156536bb2de1b834f6847750b0774bf456b41aa10e94ca0c6b2d3a95d69c2fc93a23e41b144644214cc4bc8007a2a38d5d05d017d7447b9314ec0bd1162ff1bb3cc045d1a7a5a3948fbfdb08f8ffcb0ea1bc176aeb151219eb79f46cce7a81e78114892fbff6c9ba3d0c04a864f17f7f968ae7c0dd01bc79d47fe432e7a26ffff", + "cborBytes": [ + 191, 27, 8, 112, 165, 115, 114, 22, 182, 211, 191, 27, 166, 37, 214, 102, 33, 64, 21, 18, 68, 149, 220, 137, 249, + 27, 183, 57, 105, 205, 208, 222, 244, 84, 27, 242, 118, 182, 86, 150, 39, 229, 120, 255, 27, 11, 103, 134, 88, 41, + 156, 112, 217, 69, 102, 96, 240, 70, 27, 27, 28, 114, 67, 141, 89, 243, 51, 231, 74, 142, 78, 223, 0, 113, 86, 83, + 107, 178, 222, 27, 131, 79, 104, 71, 117, 11, 7, 116, 191, 69, 107, 65, 170, 16, 233, 76, 160, 198, 178, 211, 169, + 93, 105, 194, 252, 147, 162, 62, 65, 177, 68, 100, 66, 20, 204, 75, 200, 0, 122, 42, 56, 213, 208, 93, 1, 125, + 116, 71, 185, 49, 78, 192, 189, 17, 98, 255, 27, 179, 204, 4, 93, 26, 122, 90, 57, 72, 251, 253, 176, 143, 143, + 252, 176, 234, 27, 193, 118, 174, 177, 81, 33, 158, 183, 159, 70, 204, 231, 168, 30, 120, 17, 72, 146, 251, 255, + 108, 155, 163, 208, 192, 74, 134, 79, 23, 247, 249, 104, 174, 124, 13, 208, 27, 199, 157, 71, 254, 67, 46, 122, + 38, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3430, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4568785588558838194" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15698918436667804126" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16968674096115974608" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17728590390054232757" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18137031795540474261" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7297509405894302646" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11043470945179737142" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "612099609531257957" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10222693797416761088" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "909748829659911702" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4864095104936766084" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5253030533854970445" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "318fc9af2531e9fb0bcd58fb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8086569148847246264" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5473127543762724526" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12882984744930148203" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7817341279667732936" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6916470160919041800" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f" + } + ] + }, + "cborHex": "d905069fbf1b3f6796494cf939b21bd9ddc324476a49de1beb7cd72fc05d81d01bf6089b07979622b51bfbb3ae52ed27b9951b6545f6240b66dbb6ff9f1b99424a5056c91c36ffbf1b087e9d5a114414651b8dde4dd8ba9d77001b0ca013bd92b4d6161b4380bcba1378ea841b48e6837054b4c24d4c318fc9af2531e9fb0bcd58fb1b703943cbe0ac4bb81b4bf47480d06226ae1bb2c98e5e58567f6b1b6c7cc679ce97c1c8ff1b5ffc3cf7612b1708416fff", + "cborBytes": [ + 217, 5, 6, 159, 191, 27, 63, 103, 150, 73, 76, 249, 57, 178, 27, 217, 221, 195, 36, 71, 106, 73, 222, 27, 235, + 124, 215, 47, 192, 93, 129, 208, 27, 246, 8, 155, 7, 151, 150, 34, 181, 27, 251, 179, 174, 82, 237, 39, 185, 149, + 27, 101, 69, 246, 36, 11, 102, 219, 182, 255, 159, 27, 153, 66, 74, 80, 86, 201, 28, 54, 255, 191, 27, 8, 126, + 157, 90, 17, 68, 20, 101, 27, 141, 222, 77, 216, 186, 157, 119, 0, 27, 12, 160, 19, 189, 146, 180, 214, 22, 27, + 67, 128, 188, 186, 19, 120, 234, 132, 27, 72, 230, 131, 112, 84, 180, 194, 77, 76, 49, 143, 201, 175, 37, 49, 233, + 251, 11, 205, 88, 251, 27, 112, 57, 67, 203, 224, 172, 75, 184, 27, 75, 244, 116, 128, 208, 98, 38, 174, 27, 178, + 201, 142, 94, 88, 86, 127, 107, 27, 108, 124, 198, 121, 206, 151, 193, 200, 255, 27, 95, 252, 60, 247, 97, 43, 23, + 8, 65, 111, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3431, + "sample": { + "_tag": "ByteArray", + "bytearray": "f9b60275" + }, + "cborHex": "44f9b60275", + "cborBytes": [68, 249, 182, 2, 117], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3432, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15503763527630722799" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e105739734b37a766138df6f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14862894732763317197" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8815932773042529985" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3996538854473545119" + } + }, + { + "_tag": "ByteArray", + "bytearray": "afa830db4190e14f8b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "49" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa22b1d237fcbaee39" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10168339142104631472" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8fe9826c89dacc46f3fde2" + }, + { + "_tag": "ByteArray", + "bytearray": "76ce69ee" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16955826199167895598" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "713fd49c6a3a3791f756a1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10879587627602103548" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5572203756901648407" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "930616222312040187" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6213604358676007553" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2332677025378431289" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16336989777283982939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c0ebe206e92c4a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5127982367089981045" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "ByteArray", + "bytearray": "113039fc7bab73fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15561681671712458704" + } + } + ] + }, + "cborHex": "d905079f9f9f1bd7286ec9321616ef4ce105739734b37a766138df6f1bce439c033061c3cd1b7a587c25f4eca6c1ff1b37768ee9dff1359f49afa830db4190e14f8bbf414949aa22b1d237fcbaee39ffd8669f1b8d1d329358d8c8b09f4b8fe9826c89dacc46f3fde24476ce69eeffffffd8669f1beb4f3217a2aa082e9f9f4b713fd49c6a3a3791f756a1ff1b96fc0f4e05f54cfcbf1b4d5471cb4a3848171b0cea3686092006fb1b563b283e3db3ca811b205f5565416571391be2b8a5a53633265b4111481c0ebe206e92c4a11b472a40cb2cdd7675ffffff0248113039fc7bab73fd1bd7f63307f620c7d0ff", + "cborBytes": [ + 217, 5, 7, 159, 159, 159, 27, 215, 40, 110, 201, 50, 22, 22, 239, 76, 225, 5, 115, 151, 52, 179, 122, 118, 97, 56, + 223, 111, 27, 206, 67, 156, 3, 48, 97, 195, 205, 27, 122, 88, 124, 37, 244, 236, 166, 193, 255, 27, 55, 118, 142, + 233, 223, 241, 53, 159, 73, 175, 168, 48, 219, 65, 144, 225, 79, 139, 191, 65, 73, 73, 170, 34, 177, 210, 55, 252, + 186, 238, 57, 255, 216, 102, 159, 27, 141, 29, 50, 147, 88, 216, 200, 176, 159, 75, 143, 233, 130, 108, 137, 218, + 204, 70, 243, 253, 226, 68, 118, 206, 105, 238, 255, 255, 255, 216, 102, 159, 27, 235, 79, 50, 23, 162, 170, 8, + 46, 159, 159, 75, 113, 63, 212, 156, 106, 58, 55, 145, 247, 86, 161, 255, 27, 150, 252, 15, 78, 5, 245, 76, 252, + 191, 27, 77, 84, 113, 203, 74, 56, 72, 23, 27, 12, 234, 54, 134, 9, 32, 6, 251, 27, 86, 59, 40, 62, 61, 179, 202, + 129, 27, 32, 95, 85, 101, 65, 101, 113, 57, 27, 226, 184, 165, 165, 54, 51, 38, 91, 65, 17, 72, 28, 14, 190, 32, + 110, 146, 196, 161, 27, 71, 42, 64, 203, 44, 221, 118, 117, 255, 255, 255, 2, 72, 17, 48, 57, 252, 123, 171, 115, + 253, 27, 215, 246, 51, 7, 246, 32, 199, 208, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3433, + "sample": { + "_tag": "ByteArray", + "bytearray": "c7ed01" + }, + "cborHex": "43c7ed01", + "cborBytes": [67, 199, 237, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3434, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2214869429735208560" + }, + "fields": [] + }, + "cborHex": "d8669f1b1ebccc02ef3d367080ff", + "cborBytes": [216, 102, 159, 27, 30, 188, 204, 2, 239, 61, 54, 112, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3435, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17741033764082979216" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17551156844026811812" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3045379489286387082" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5352317161853398472" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3379536817659167897" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10818673092338719453" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7703057881965673885" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "716d7ea7b9d1624e96c3" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1574182850252051736" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1769831084078612086" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bf634d036606091909f1bf3923c28dd6255a4bf1b2a435c82a92cf58a1b4a474019d57fadc81b2ee686d481edc4991b9623a5db91ed1add1b6ae6c254c2d63d9d4a716d7ea7b9d1624e96c3ff1b15d89ef640c915189f1b188fb3fe76f33e76ffffff", + "cborBytes": [ + 216, 102, 159, 27, 246, 52, 208, 54, 96, 96, 145, 144, 159, 27, 243, 146, 60, 40, 221, 98, 85, 164, 191, 27, 42, + 67, 92, 130, 169, 44, 245, 138, 27, 74, 71, 64, 25, 213, 127, 173, 200, 27, 46, 230, 134, 212, 129, 237, 196, 153, + 27, 150, 35, 165, 219, 145, 237, 26, 221, 27, 106, 230, 194, 84, 194, 214, 61, 157, 74, 113, 109, 126, 167, 185, + 209, 98, 78, 150, 195, 255, 27, 21, 216, 158, 246, 64, 201, 21, 24, 159, 27, 24, 143, 179, 254, 118, 243, 62, 118, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3436, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14913588909231074820" + } + }, + "cborHex": "1bcef7b618ecec6e04", + "cborBytes": [27, 206, 247, 182, 24, 236, 236, 110, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3437, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "396814586146929992" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14323169793678658679" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "462254584893053789" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7195971331963598359" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1082791119039741427" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8239749367815133498" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10053882157728100606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d6095cd05c47efdc6c8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10408677730361943766" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6021e6d913f342" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12458989857222004972" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99d69dad7756b433e5535090" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "34c658b491fe38699490332f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16085960897205619375" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57c98c1d864026" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16536318604706796094" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77bdee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f8586" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12819320224760569317" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c64b44" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54732921b38e4c927182a1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fac70aa7dbeb42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3db41" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5342571765174105671" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8876032799344925365" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8399514669905586254" + } + } + ] + }, + "cborHex": "9fbf1b0581c4c380fb3d481bc6c61f0a39d24c771b066a421888589b5d1b63dd39ccef95b6171b0f06d8c9304fbdf31b72597864daded93a1b8b86908e010570fe4a9d6095cd05c47efdc6c81b90730d3f8bbe26d6476021e6d913f3421bace73943bbe990ec4c99d69dad7756b433e5535090ffbf4c34c658b491fe38699490332f1bdf3cd0357cc3caaf4757c98c1d8640261be57cce28663b523e4377bdee4234b9438f85861bb1e75fd322d59de543c64b444b54732921b38e4c927182a147fac70aa7dbeb4243a3db41ff1b4a24a0b6da3bf6471b7b2e00cdc3ab9ab51b74911216f967a84eff", + "cborBytes": [ + 159, 191, 27, 5, 129, 196, 195, 128, 251, 61, 72, 27, 198, 198, 31, 10, 57, 210, 76, 119, 27, 6, 106, 66, 24, 136, + 88, 155, 93, 27, 99, 221, 57, 204, 239, 149, 182, 23, 27, 15, 6, 216, 201, 48, 79, 189, 243, 27, 114, 89, 120, + 100, 218, 222, 217, 58, 27, 139, 134, 144, 142, 1, 5, 112, 254, 74, 157, 96, 149, 205, 5, 196, 126, 253, 198, 200, + 27, 144, 115, 13, 63, 139, 190, 38, 214, 71, 96, 33, 230, 217, 19, 243, 66, 27, 172, 231, 57, 67, 187, 233, 144, + 236, 76, 153, 214, 157, 173, 119, 86, 180, 51, 229, 83, 80, 144, 255, 191, 76, 52, 198, 88, 180, 145, 254, 56, + 105, 148, 144, 51, 47, 27, 223, 60, 208, 53, 124, 195, 202, 175, 71, 87, 201, 140, 29, 134, 64, 38, 27, 229, 124, + 206, 40, 102, 59, 82, 62, 67, 119, 189, 238, 66, 52, 185, 67, 143, 133, 134, 27, 177, 231, 95, 211, 34, 213, 157, + 229, 67, 198, 75, 68, 75, 84, 115, 41, 33, 179, 142, 76, 146, 113, 130, 161, 71, 250, 199, 10, 167, 219, 235, 66, + 67, 163, 219, 65, 255, 27, 74, 36, 160, 182, 218, 59, 246, 71, 27, 123, 46, 0, 205, 195, 171, 154, 181, 27, 116, + 145, 18, 22, 249, 103, 168, 78, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3438, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3669783877229523582" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "6b60fe8845448395e09559" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16473950010473168559" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10301606446731033199" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7603483999912142061" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15817167030892046625" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "457e632a0fea21633c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7066310235225560231" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b32edb0fe34b8b27e9f804b6b60fe8845448395e09559ffffd8669f1be49f3a4075cbbeaf9f9f1b8ef6a87ba946fa6f06ff9f1b69850069b62124edffbf1bdb81dd9c9557292149457e632a0fea21633cff1b621093b8535394a7ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 50, 237, 176, 254, 52, 184, 178, 126, 159, 128, 75, 107, 96, 254, 136, 69, 68, 131, 149, + 224, 149, 89, 255, 255, 216, 102, 159, 27, 228, 159, 58, 64, 117, 203, 190, 175, 159, 159, 27, 142, 246, 168, 123, + 169, 70, 250, 111, 6, 255, 159, 27, 105, 133, 0, 105, 182, 33, 36, 237, 255, 191, 27, 219, 129, 221, 156, 149, 87, + 41, 33, 73, 69, 126, 99, 42, 15, 234, 33, 99, 60, 255, 27, 98, 16, 147, 184, 83, 83, 148, 167, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3439, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9565643b6655" + }, + { + "_tag": "ByteArray", + "bytearray": "c43b6eaad13c865a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12454581427318524659" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "696142d35078092ab5" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6309270496686922946" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a933c10a9d8982f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5766855" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1354906fce4cddcc4c15a7" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "747ac261416740765a4d3ffd" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fffe0706" + } + ] + } + ] + }, + "cborHex": "9f469565643b665548c43b6eaad13c865a9fd8669f1bacd78fd2297f8af380ffd87a9f49696142d35078092ab5ff1b578f0816bae05cc2bf48a933c10a9d8982f744c5766855ff4b1354906fce4cddcc4c15a7ff4c747ac261416740765a4d3ffdd8669f1bfffffffffffffff39f44fffe0706ffffff", + "cborBytes": [ + 159, 70, 149, 101, 100, 59, 102, 85, 72, 196, 59, 110, 170, 209, 60, 134, 90, 159, 216, 102, 159, 27, 172, 215, + 143, 210, 41, 127, 138, 243, 128, 255, 216, 122, 159, 73, 105, 97, 66, 211, 80, 120, 9, 42, 181, 255, 27, 87, 143, + 8, 22, 186, 224, 92, 194, 191, 72, 169, 51, 193, 10, 157, 137, 130, 247, 68, 197, 118, 104, 85, 255, 75, 19, 84, + 144, 111, 206, 76, 221, 204, 76, 21, 167, 255, 76, 116, 122, 194, 97, 65, 103, 64, 118, 90, 77, 63, 253, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 68, 255, 254, 7, 6, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3440, + "sample": { + "_tag": "ByteArray", + "bytearray": "662865b5" + }, + "cborHex": "44662865b5", + "cborBytes": [68, 102, 40, 101, 181], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3441, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e975d2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11946359688461614103" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31a4b006269e9ece23" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15252012612299861159" + } + }, + { + "_tag": "ByteArray", + "bytearray": "537fac732845ed6d" + }, + { + "_tag": "ByteArray", + "bytearray": "a55ef8d42475d04dd8" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d2533630a0a" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "facdee3a26b7f04499ac5d6c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "85" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14216735391464434406" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fad0a8834d6e59d0d0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15023281106479100028" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "48e2aa19c333516ea4b713" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7552830312120010693" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a811ef9cc6c33200c5590c" + }, + { + "_tag": "ByteArray", + "bytearray": "bfb55c1fbcf97952" + } + ] + } + } + ] + }, + "cborHex": "bf442e975d2d1ba5c9fed795ccfc174931a4b006269e9ece239f1bd3aa08a989e92ca748537fac732845ed6d49a55ef8d42475d04dd8ff467d2533630a0aa04cfacdee3a26b7f04499ac5d6cbf41851bc54bfd83d9f62ae6ff49fad0a8834d6e59d0d0d8669f1bd07d6a91d086307c9f4b48e2aa19c333516ea4b7131b68d10b26fab747c54ba811ef9cc6c33200c5590c48bfb55c1fbcf97952ffffff", + "cborBytes": [ + 191, 68, 46, 151, 93, 45, 27, 165, 201, 254, 215, 149, 204, 252, 23, 73, 49, 164, 176, 6, 38, 158, 158, 206, 35, + 159, 27, 211, 170, 8, 169, 137, 233, 44, 167, 72, 83, 127, 172, 115, 40, 69, 237, 109, 73, 165, 94, 248, 212, 36, + 117, 208, 77, 216, 255, 70, 125, 37, 51, 99, 10, 10, 160, 76, 250, 205, 238, 58, 38, 183, 240, 68, 153, 172, 93, + 108, 191, 65, 133, 27, 197, 75, 253, 131, 217, 246, 42, 230, 255, 73, 250, 208, 168, 131, 77, 110, 89, 208, 208, + 216, 102, 159, 27, 208, 125, 106, 145, 208, 134, 48, 124, 159, 75, 72, 226, 170, 25, 195, 51, 81, 110, 164, 183, + 19, 27, 104, 209, 11, 38, 250, 183, 71, 197, 75, 168, 17, 239, 156, 198, 195, 50, 0, 197, 89, 12, 72, 191, 181, + 92, 31, 188, 249, 121, 82, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3442, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "318608592041806474" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "727796812955304477" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1278682695815097993" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c446c792d41c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2536584513311485029" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12605500435687633283" + } + }, + { + "_tag": "ByteArray", + "bytearray": "82c6a0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15214682388890136700" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09365872a315e94087" + } + ] + } + } + ] + }, + "cborHex": "bf1b046becd38f0a0a8a9f1b0a19a75868dcc21dff1b11becb23187f6e8946c446c792d41c1b2333c22ceab02c659f1baeefbbdc053171834382c6a01bd32569059830307c4909365872a315e94087ffff", + "cborBytes": [ + 191, 27, 4, 107, 236, 211, 143, 10, 10, 138, 159, 27, 10, 25, 167, 88, 104, 220, 194, 29, 255, 27, 17, 190, 203, + 35, 24, 127, 110, 137, 70, 196, 70, 199, 146, 212, 28, 27, 35, 51, 194, 44, 234, 176, 44, 101, 159, 27, 174, 239, + 187, 220, 5, 49, 113, 131, 67, 130, 198, 160, 27, 211, 37, 105, 5, 152, 48, 48, 124, 73, 9, 54, 88, 114, 163, 21, + 233, 64, 135, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3443, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fba13837527ae580" + } + ] + }, + "cborHex": "9f48fba13837527ae580ff", + "cborBytes": [159, 72, 251, 161, 56, 55, 82, 122, 229, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3444, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "46e18342fb6b20" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a96bf503" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcc04d1ec3c07e1c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11455089045960975233" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3cffc4fb56bfdfa00faf5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17636230876382288233" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "570e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9317232796676358277" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f6757effe3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "daf10507" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f424d943888db78f497b0c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7011620812504267784" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e34f28b25a4b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9177225351431180778" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4206590043058205232" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10445155184051646029" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "995a16f34af146f065" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11795552474011675360" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10683201726408248873" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12130890070108516980" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15570262413543181510" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc2aa3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7374473862245994881" + } + } + ] + } + } + ] + }, + "cborHex": "bf4107bf4746e18342fb6b2044a96bf50348fcc04d1ec3c07e1c1b9ef8a6cbaef8e381ff4bd3cffc4fb56bfdfa00faf51bf4c07a8a938ad96941d79f42570e1bfffffffffffffff91b814d75dd1f83808545f6757effe3ff44daf10507124bf424d943888db78f497b0cbf1b614e47fad50d7c0846e34f28b25a4b1b7f5c0dd587c3d1ea1b3a60cf5b502df2301b90f4a54c913a6e4d49995a16f34af146f0651ba3b2387ac6f22ae01b94425b5e3e674e291ba859943f1e21b2741bd814af2b9adb8cc6ff43fc2aa39f1b665764e7f4935181ffff", + "cborBytes": [ + 191, 65, 7, 191, 71, 70, 225, 131, 66, 251, 107, 32, 68, 169, 107, 245, 3, 72, 252, 192, 77, 30, 195, 192, 126, + 28, 27, 158, 248, 166, 203, 174, 248, 227, 129, 255, 75, 211, 207, 252, 79, 181, 107, 253, 250, 0, 250, 245, 27, + 244, 192, 122, 138, 147, 138, 217, 105, 65, 215, 159, 66, 87, 14, 27, 255, 255, 255, 255, 255, 255, 255, 249, 27, + 129, 77, 117, 221, 31, 131, 128, 133, 69, 246, 117, 126, 255, 227, 255, 68, 218, 241, 5, 7, 18, 75, 244, 36, 217, + 67, 136, 141, 183, 143, 73, 123, 12, 191, 27, 97, 78, 71, 250, 213, 13, 124, 8, 70, 227, 79, 40, 178, 90, 75, 27, + 127, 92, 13, 213, 135, 195, 209, 234, 27, 58, 96, 207, 91, 80, 45, 242, 48, 27, 144, 244, 165, 76, 145, 58, 110, + 77, 73, 153, 90, 22, 243, 74, 241, 70, 240, 101, 27, 163, 178, 56, 122, 198, 242, 42, 224, 27, 148, 66, 91, 94, + 62, 103, 78, 41, 27, 168, 89, 148, 63, 30, 33, 178, 116, 27, 216, 20, 175, 43, 154, 219, 140, 198, 255, 67, 252, + 42, 163, 159, 27, 102, 87, 100, 231, 244, 147, 81, 129, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3445, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10537638308692912573" + } + }, + "cborHex": "1b923d3636013069bd", + "cborBytes": [27, 146, 61, 54, 54, 1, 48, 105, 189], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3446, + "sample": { + "_tag": "ByteArray", + "bytearray": "74f8900278fe04" + }, + "cborHex": "4774f8900278fe04", + "cborBytes": [71, 116, 248, 144, 2, 120, 254, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3447, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a84e1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4592919125870373627" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "756518d19398" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3108329341030244205" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebf60442ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d5daea256aac69408999f91" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6320078777733589139" + } + } + } + ] + }, + "cborHex": "bf4101d87c804107a0432a84e19f1b3fbd539c5399eafbff46756518d193981b2b23011129081f6d45ebf60442ff4c9d5daea256aac69408999f9142ff031b57b56e29c34ba893ff", + "cborBytes": [ + 191, 65, 1, 216, 124, 128, 65, 7, 160, 67, 42, 132, 225, 159, 27, 63, 189, 83, 156, 83, 153, 234, 251, 255, 70, + 117, 101, 24, 209, 147, 152, 27, 43, 35, 1, 17, 41, 8, 31, 109, 69, 235, 246, 4, 66, 255, 76, 157, 93, 174, 162, + 86, 170, 198, 148, 8, 153, 159, 145, 66, 255, 3, 27, 87, 181, 110, 41, 195, 75, 168, 147, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3448, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0406fd112e52fc660a02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fc657900301f6fff9fc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "159972692243086320" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1981421098738913380" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1249495792866907557" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13818151859024489239" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8d44b52a83e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11773561651960026310" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccc6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10307100178041490575" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5c06b10d518" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13646907334576249383" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4a0406fd112e52fc660a021bfffffffffffffffd4a6fc657900301f6fff9fcbf1b02385650e6e97bf01b1b7f6bfdc4cc10641b115719cdb22d55a51bbfc3efe7718eeb1746a8d44b52a83e1ba36417f1863d14c642ccc61b8f0a2d00a8874c8fff46b5c06b10d518d8669f1bbd638dea98171a2780ffff", + "cborBytes": [ + 191, 74, 4, 6, 253, 17, 46, 82, 252, 102, 10, 2, 27, 255, 255, 255, 255, 255, 255, 255, 253, 74, 111, 198, 87, + 144, 3, 1, 246, 255, 249, 252, 191, 27, 2, 56, 86, 80, 230, 233, 123, 240, 27, 27, 127, 107, 253, 196, 204, 16, + 100, 27, 17, 87, 25, 205, 178, 45, 85, 165, 27, 191, 195, 239, 231, 113, 142, 235, 23, 70, 168, 212, 75, 82, 168, + 62, 27, 163, 100, 23, 241, 134, 61, 20, 198, 66, 204, 198, 27, 143, 10, 45, 0, 168, 135, 76, 143, 255, 70, 181, + 192, 107, 16, 213, 24, 216, 102, 159, 27, 189, 99, 141, 234, 152, 23, 26, 39, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3449, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13340678484469276590" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "746245458002862629" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "844a57bf6d9817a115" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6495324347217608786" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8447138510946487650" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17139005409281842225" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14354169208660113247" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "878467840685196702" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7704fafcdb02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "ByteArray", + "bytearray": "45" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "78c2cbeb43" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bb9239c66517cdfae9f1bffffffffffffffebbf1b0a5b324a4f82622549844a57bf6d9817a1151b5a24071480da005241891b753a43b8897ccd621bedd9fa9d07be1c31ffffffd8669f1bc73440d7f809375f9fd8669f1b0c30f1d8c6a5459e9f467704fafcdb0200414511ffff4578c2cbeb43d9050680ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 185, 35, 156, 102, 81, 124, 223, 174, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, + 191, 27, 10, 91, 50, 74, 79, 130, 98, 37, 73, 132, 74, 87, 191, 109, 152, 23, 161, 21, 27, 90, 36, 7, 20, 128, + 218, 0, 82, 65, 137, 27, 117, 58, 67, 184, 137, 124, 205, 98, 27, 237, 217, 250, 157, 7, 190, 28, 49, 255, 255, + 255, 216, 102, 159, 27, 199, 52, 64, 215, 248, 9, 55, 95, 159, 216, 102, 159, 27, 12, 48, 241, 216, 198, 165, 69, + 158, 159, 70, 119, 4, 250, 252, 219, 2, 0, 65, 69, 17, 255, 255, 69, 120, 194, 203, 235, 67, 217, 5, 6, 128, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3450, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7017998870648208216" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0227ef91" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10360929799687160832" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8cd08502aebcbb7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d3edc2e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b6164f0ca37143b589f440227ef911b8fc96ac21d1cc40048c8cd08502aebcbb7d9050880bf441d3edc2e41f9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 97, 100, 240, 202, 55, 20, 59, 88, 159, 68, 2, 39, 239, 145, 27, 143, 201, 106, 194, 29, 28, + 196, 0, 72, 200, 205, 8, 80, 42, 235, 203, 183, 217, 5, 8, 128, 191, 68, 29, 62, 220, 46, 65, 249, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3451, + "sample": { + "_tag": "ByteArray", + "bytearray": "f3fd" + }, + "cborHex": "42f3fd", + "cborBytes": [66, 243, 253], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3452, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8940219580094745769" + } + }, + "cborHex": "1b7c120a573d8a0ca9", + "cborBytes": [27, 124, 18, 10, 87, 61, 138, 12, 169], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3453, + "sample": { + "_tag": "ByteArray", + "bytearray": "9a7393e58095bed25c" + }, + "cborHex": "499a7393e58095bed25c", + "cborBytes": [73, 154, 115, 147, 229, 128, 149, 190, 210, 92], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3454, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4006335020156075992" + } + }, + "cborHex": "1b37995c796f9c3fd8", + "cborBytes": [27, 55, 153, 92, 121, 111, 156, 63, 216], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3455, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7549738154216364424" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3545125452221262136" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "37983b51ac" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3793689002769925474" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9677462138422844687" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a2af5081e9c71f668e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14288867887876775972" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51934966bcb6b5ef45be2268" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11104354456211132964" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6b26f5dee9a6866be6da09e" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14395244774199991928" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "75ba7fd6df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13552587758000040014" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1914675742854338901" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7612fb30b878cd3a174b05" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b68c60ed9dd479988d8669f1b3132d0d0dfd829389f4537983b51ac9f1b34a5e40c566845621b864d408a9ffc5d0fffbf4a3a2af5081e9c71f668e11bc64c41a36b61a0244c51934966bcb6b5ef45be22681b9a1a978b667d9224419a4cc6b26f5dee9a6866be6da09effd8669f1bc7c62eda54fd1e789f4575ba7fd6df1bbc1476c2dee6684e1b1a924b7198e3d9554b7612fb30b878cd3a174b05ffffffffff", + "cborBytes": [ + 159, 27, 104, 198, 14, 217, 221, 71, 153, 136, 216, 102, 159, 27, 49, 50, 208, 208, 223, 216, 41, 56, 159, 69, 55, + 152, 59, 81, 172, 159, 27, 52, 165, 228, 12, 86, 104, 69, 98, 27, 134, 77, 64, 138, 159, 252, 93, 15, 255, 191, + 74, 58, 42, 245, 8, 30, 156, 113, 246, 104, 225, 27, 198, 76, 65, 163, 107, 97, 160, 36, 76, 81, 147, 73, 102, + 188, 182, 181, 239, 69, 190, 34, 104, 27, 154, 26, 151, 139, 102, 125, 146, 36, 65, 154, 76, 198, 178, 111, 93, + 238, 154, 104, 102, 190, 109, 160, 158, 255, 216, 102, 159, 27, 199, 198, 46, 218, 84, 253, 30, 120, 159, 69, 117, + 186, 127, 214, 223, 27, 188, 20, 118, 194, 222, 230, 104, 78, 27, 26, 146, 75, 113, 152, 227, 217, 85, 75, 118, + 18, 251, 48, 184, 120, 205, 58, 23, 75, 5, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3456, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd1dfe" + }, + "cborHex": "43fd1dfe", + "cborBytes": [67, 253, 29, 254], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3457, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14289863324642496454" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb110ce2" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12811050579422376291" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12909508631085329532" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7550904830061571757" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6093470038292864482" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4562" + }, + { + "_tag": "ByteArray", + "bytearray": "1257575e4fa76747" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5309863939185583021" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c9f79e9e0" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "54831dc43273788fb6a5" + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9fd8669f1bc64fcafb9a32cfc69f44fb110ce2ffff1bb1c9fea04a087163d8669f1bb327c9b3d4ae2c7c9f1b68ca33efc099eeadd8669f1b54905ab719ee9de29f424562481257575e4fa767471b49b06d1eacd023ad458c9f79e9e0ffff4a54831dc43273788fb6a5ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 216, 102, 159, 27, 198, 79, 202, 251, 154, 50, + 207, 198, 159, 68, 251, 17, 12, 226, 255, 255, 27, 177, 201, 254, 160, 74, 8, 113, 99, 216, 102, 159, 27, 179, 39, + 201, 179, 212, 174, 44, 124, 159, 27, 104, 202, 51, 239, 192, 153, 238, 173, 216, 102, 159, 27, 84, 144, 90, 183, + 25, 238, 157, 226, 159, 66, 69, 98, 72, 18, 87, 87, 94, 79, 167, 103, 71, 27, 73, 176, 109, 30, 172, 208, 35, 173, + 69, 140, 159, 121, 233, 224, 255, 255, 74, 84, 131, 29, 196, 50, 115, 120, 143, 182, 165, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3458, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8323298061586467339" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5961662815677206615" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04" + }, + { + "_tag": "ByteArray", + "bytearray": "4987" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e687bd6235" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4387654079810022526" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14359440375245478894" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8311161138413847084" + } + }, + { + "_tag": "ByteArray", + "bytearray": "916868c5b668" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8127182073733027957" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2842626014590057974" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9c8fab528f" + } + ] + } + ] + }, + "cborHex": "d8669f1b73824b7d008f0a0b9fd8669f1b52bc14be9f1850579f9f4104424987ffd905009f45e687bd62351b3ce41423885eac7e1bc746faf113e89bee1b73572d055e30422c46916868c5b668ffd8669f1bfffffffffffffffd9f1b70c98d0951c798751b2773094ca4ecbdf6ffff459c8fab528fffffffff", + "cborBytes": [ + 216, 102, 159, 27, 115, 130, 75, 125, 0, 143, 10, 11, 159, 216, 102, 159, 27, 82, 188, 20, 190, 159, 24, 80, 87, + 159, 159, 65, 4, 66, 73, 135, 255, 217, 5, 0, 159, 69, 230, 135, 189, 98, 53, 27, 60, 228, 20, 35, 136, 94, 172, + 126, 27, 199, 70, 250, 241, 19, 232, 155, 238, 27, 115, 87, 45, 5, 94, 48, 66, 44, 70, 145, 104, 104, 197, 182, + 104, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 27, 112, 201, 141, 9, 81, 199, 152, 117, + 27, 39, 115, 9, 76, 164, 236, 189, 246, 255, 255, 69, 156, 143, 171, 82, 143, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3459, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f81f85" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11159963374544828784" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16977196698914187979" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1255e6ca3a2ca1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3483613104634619779" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea25c1b8b38485" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6293554273962624933" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9280719336202187886" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4833563050430581765" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5371271645906782328" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4704" + } + ] + }, + "cborHex": "d905029f43f81f859f1b9ae0278fa61d3970d8669f1beb9b1e72d8b6eacb9f471255e6ca3a2ca11b305847a964a4678347ea25c1b8b384851b575732447a2f07a5ffffa01b80cbbd109e6e346ebf1b431443fc2c5e4c051b4a8a971a8e66c878ffff424704ff", + "cborBytes": [ + 217, 5, 2, 159, 67, 248, 31, 133, 159, 27, 154, 224, 39, 143, 166, 29, 57, 112, 216, 102, 159, 27, 235, 155, 30, + 114, 216, 182, 234, 203, 159, 71, 18, 85, 230, 202, 58, 44, 161, 27, 48, 88, 71, 169, 100, 164, 103, 131, 71, 234, + 37, 193, 184, 179, 132, 133, 27, 87, 87, 50, 68, 122, 47, 7, 165, 255, 255, 160, 27, 128, 203, 189, 16, 158, 110, + 52, 110, 191, 27, 67, 20, 67, 252, 44, 94, 76, 5, 27, 74, 138, 151, 26, 142, 102, 200, 120, 255, 255, 66, 71, 4, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3460, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "050415" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07c401a7" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "570503c602" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ca9aa1692" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3514550597316202081" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8b4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6752534836633733050" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10427294922820827097" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7531661373489428337" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4a64b0d4cb06095e04c53e7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11844117163531416966" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5648703461156717163" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12825522564188631738" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4455db6aac" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da11fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12267466709399231491" + } + } + } + ] + }, + "cborHex": "bf43050415d8669f1bfffffffffffffff69f4407c401a7ffff45570503c60207455ca9aa1692bf1b30c63125ba2b4e6142b8b41b5db5d2a84f0107ba1b90b5317c72f837d91b6885d61d5f5e37714cb4a64b0d4cb06095e04c53e71ba45ec1ceb265b5861b4e6439deabc4026b1bb1fd68d1d13872ba454455db6aacff43da11fa1baa3ecbf9f3abdc03ff", + "cborBytes": [ + 191, 67, 5, 4, 21, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 68, 7, 196, 1, 167, 255, 255, + 69, 87, 5, 3, 198, 2, 7, 69, 92, 169, 170, 22, 146, 191, 27, 48, 198, 49, 37, 186, 43, 78, 97, 66, 184, 180, 27, + 93, 181, 210, 168, 79, 1, 7, 186, 27, 144, 181, 49, 124, 114, 248, 55, 217, 27, 104, 133, 214, 29, 95, 94, 55, + 113, 76, 180, 166, 75, 13, 76, 176, 96, 149, 224, 76, 83, 231, 27, 164, 94, 193, 206, 178, 101, 181, 134, 27, 78, + 100, 57, 222, 171, 196, 2, 107, 27, 177, 253, 104, 209, 209, 56, 114, 186, 69, 68, 85, 219, 106, 172, 255, 67, + 218, 17, 250, 27, 170, 62, 203, 249, 243, 171, 220, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3461, + "sample": { + "_tag": "ByteArray", + "bytearray": "f494" + }, + "cborHex": "42f494", + "cborBytes": [66, 244, 148], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3462, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "077892fd78192c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "32" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7832274094865187304" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11d7bf11fccc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "58307769" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8710198428979563067" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0bf52e8419eeac9af6ba5fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15019473501672896544" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "826044619700627664" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55931c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10139608247807812204" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3fd15e2f76bd214606" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13125975513894932586" + } + }, + { + "_tag": "ByteArray", + "bytearray": "30" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10744710356867130595" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96396c4972fab1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17301299622657233364" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13217740534042163144" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5859d9758c66" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11532438550389810811" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "add1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15136244573719991772" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8795955372282469328" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5530581615242095310" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "456515916229965866" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64669ad5db1ff2" + } + ] + } + } + ] + }, + "cborHex": "bf47077892fd78192cbf41321b6cb1d3cac7ef01e8ff4611d7bf11fcccbf44583077691b78e0d752927e0a3b4cd0bf52e8419eeac9af6ba5fd1bd06fe392bc9af82041de1b0b76b3347de0e8d0ff4355931cd8669f1b8cb71ffabc34a26c9f493fd15e2f76bd2146061bb628d52f7c2ed06a41301b951ce1244386a4e3ffff4796396c4972fab1d8669f1bf01a9057311591d49f1bb76ed8fc30dd77c8465859d9758c661ba00b73c29601667bffff42add19f1bd20ebe3e9a0395dc1b7a1182cee115dbd01b4cc092ad41cfaace1b0655dece9d32f82a4764669ad5db1ff2ffff", + "cborBytes": [ + 191, 71, 7, 120, 146, 253, 120, 25, 44, 191, 65, 50, 27, 108, 177, 211, 202, 199, 239, 1, 232, 255, 70, 17, 215, + 191, 17, 252, 204, 191, 68, 88, 48, 119, 105, 27, 120, 224, 215, 82, 146, 126, 10, 59, 76, 208, 191, 82, 232, 65, + 158, 234, 201, 175, 107, 165, 253, 27, 208, 111, 227, 146, 188, 154, 248, 32, 65, 222, 27, 11, 118, 179, 52, 125, + 224, 232, 208, 255, 67, 85, 147, 28, 216, 102, 159, 27, 140, 183, 31, 250, 188, 52, 162, 108, 159, 73, 63, 209, + 94, 47, 118, 189, 33, 70, 6, 27, 182, 40, 213, 47, 124, 46, 208, 106, 65, 48, 27, 149, 28, 225, 36, 67, 134, 164, + 227, 255, 255, 71, 150, 57, 108, 73, 114, 250, 177, 216, 102, 159, 27, 240, 26, 144, 87, 49, 21, 145, 212, 159, + 27, 183, 110, 216, 252, 48, 221, 119, 200, 70, 88, 89, 217, 117, 140, 102, 27, 160, 11, 115, 194, 150, 1, 102, + 123, 255, 255, 66, 173, 209, 159, 27, 210, 14, 190, 62, 154, 3, 149, 220, 27, 122, 17, 130, 206, 225, 21, 219, + 208, 27, 76, 192, 146, 173, 65, 207, 170, 206, 27, 6, 85, 222, 206, 157, 50, 248, 42, 71, 100, 102, 154, 213, 219, + 31, 242, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3463, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d979aacca87ca6dabf142" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e30ab43cdcbd69" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1040601" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc03effe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4615693791f4e656f03e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15268584945237550773" + } + } + } + ] + }, + "cborHex": "bf4b2d979aacca87ca6dabf1421447e30ab43cdcbd69a044f104060144fc03effe4bf4615693791f4e656f03e51bd3e4e91c7bc2e6b5ff", + "cborBytes": [ + 191, 75, 45, 151, 154, 172, 202, 135, 202, 109, 171, 241, 66, 20, 71, 227, 10, 180, 60, 220, 189, 105, 160, 68, + 241, 4, 6, 1, 68, 252, 3, 239, 254, 75, 244, 97, 86, 147, 121, 31, 78, 101, 111, 3, 229, 27, 211, 228, 233, 28, + 123, 194, 230, 181, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3464, + "sample": { + "_tag": "ByteArray", + "bytearray": "44aa2108" + }, + "cborHex": "4444aa2108", + "cborBytes": [68, 68, 170, 33, 8], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3465, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4251138006647118493" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13606806856056759309" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16759322787893231066" + } + }, + { + "_tag": "ByteArray", + "bytearray": "053d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12524196811221606255" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05865201" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "700218a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + } + ] + }, + "cborHex": "bf1b3aff137e595d1a9d9f1bbcd516be5e9ce40d1be8951347e87c3dda42053d1badcee2a4cdf19f6f41f3ff44058652010d44700218a541fdff", + "cborBytes": [ + 191, 27, 58, 255, 19, 126, 89, 93, 26, 157, 159, 27, 188, 213, 22, 190, 94, 156, 228, 13, 27, 232, 149, 19, 71, + 232, 124, 61, 218, 66, 5, 61, 27, 173, 206, 226, 164, 205, 241, 159, 111, 65, 243, 255, 68, 5, 134, 82, 1, 13, 68, + 112, 2, 24, 165, 65, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3466, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "19ca0002" + } + ] + }, + "cborHex": "9f4419ca0002ff", + "cborBytes": [159, 68, 25, 202, 0, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3467, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11543301899868227864" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1ba0320beb3cbcc91880ffffff", + "cborBytes": [159, 159, 216, 102, 159, 27, 160, 50, 11, 235, 60, 188, 201, 24, 128, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3468, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28c0e361fc75fb0650" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1413206668381111596" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13611329964820299380" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10946240179973266627" + } + } + } + ] + }, + "cborHex": "bf4928c0e361fc75fb06509f1b139cb7fa3711c52c1bbce5287cb1be7e74ff41b61b97e8db72b16a1cc3ff", + "cborBytes": [ + 191, 73, 40, 192, 227, 97, 252, 117, 251, 6, 80, 159, 27, 19, 156, 183, 250, 55, 17, 197, 44, 27, 188, 229, 40, + 124, 177, 190, 126, 116, 255, 65, 182, 27, 151, 232, 219, 114, 177, 106, 28, 195, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3469, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16881050123681893067" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7807872574418750637" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4733165679720c219b42" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12413744362976139520" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60ffccf8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f768b74bf38221810c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8326894436883923697" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff03e714dfa6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b96b356b770116d4a26ee42" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15848878310992301557" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6556346869478929477" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6dac271d501b57732e1a50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7489469752706925365" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9703138932676011644" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9094887391898213230" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16efd5e4ca4b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9684522616001813123" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e81556ebbf84eeeadad791f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11749772974155471661" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3284845099870894273" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14800836853393386201" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11862060269444235084" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f1bea4589a5d99f8acb1b6c5b22bd11be8cad4a4733165679720c219b42ffd8669f1bac467aba2fb359009fbf054460ffccf8410b1bfffffffffffffffeffffff9fbf49f768b74bf38221810c1b738f125f60a482f146ff03e714dfa64c5b96b356b770116d4a26ee42ff1bdbf286da5716cdf5ff1bffffffffffffffefbf1b5afcd2bda38934454b6dac271d501b57732e1a501b67eff10f262103351b86a87973286aa67c1b7e3787e56a459b6e4616efd5e4ca4b1b866656022a065a834c4e81556ebbf84eeeadad791f1ba30f94445c059b2d1b2d961d36e7fcb8c11bcd6722b33105ead91ba49e80f7987f7f4cffff", + "cborBytes": [ + 159, 159, 27, 234, 69, 137, 165, 217, 159, 138, 203, 27, 108, 91, 34, 189, 17, 190, 140, 173, 74, 71, 51, 22, 86, + 121, 114, 12, 33, 155, 66, 255, 216, 102, 159, 27, 172, 70, 122, 186, 47, 179, 89, 0, 159, 191, 5, 68, 96, 255, + 204, 248, 65, 11, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255, 255, 255, 159, 191, 73, 247, 104, 183, 75, 243, + 130, 33, 129, 12, 27, 115, 143, 18, 95, 96, 164, 130, 241, 70, 255, 3, 231, 20, 223, 166, 76, 91, 150, 179, 86, + 183, 112, 17, 109, 74, 38, 238, 66, 255, 27, 219, 242, 134, 218, 87, 22, 205, 245, 255, 27, 255, 255, 255, 255, + 255, 255, 255, 239, 191, 27, 90, 252, 210, 189, 163, 137, 52, 69, 75, 109, 172, 39, 29, 80, 27, 87, 115, 46, 26, + 80, 27, 103, 239, 241, 15, 38, 33, 3, 53, 27, 134, 168, 121, 115, 40, 106, 166, 124, 27, 126, 55, 135, 229, 106, + 69, 155, 110, 70, 22, 239, 213, 228, 202, 75, 27, 134, 102, 86, 2, 42, 6, 90, 131, 76, 78, 129, 85, 110, 187, 248, + 78, 238, 173, 173, 121, 31, 27, 163, 15, 148, 68, 92, 5, 155, 45, 27, 45, 150, 29, 54, 231, 252, 184, 193, 27, + 205, 103, 34, 179, 49, 5, 234, 217, 27, 164, 158, 128, 247, 152, 127, 127, 76, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3470, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7068576298932359304" + } + }, + "cborHex": "1b6218a0b1659bd088", + "cborBytes": [27, 98, 24, 160, 177, 101, 155, 208, 136], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3471, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2e515466176d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2082e0d6de13d380e2845c49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5040699021694043123" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "218e93d97e854e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9742236020218299153" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56ce8aa5ddf4b5f5dc322421" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d0073f4c47dc17fce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "873f3aad1601bdae6b30e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f456a7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de8c7668d75caf9e29e08e71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13709577955316199400" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1186026473015911098" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a8e3d476206f62e937bcb9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7884209266783560302" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13565333727268146449" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "566297069651026595" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2929703498009955681" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13151691313843317354" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6419102356200653245" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3b2a824880a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12012685913487771952" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "858e3162a1100aa2c4d8c0f3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13009894774353420338" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9686910623619040262" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13020894775199041721" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aea2c505" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "246293274d9c8830d10f687f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4357198594112142455" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17318432187073417572" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7861660567262739498" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10097799945046550212" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15135414392523235064" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10836580494953255860" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1299187555084520954" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18141116082057528260" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb8a92174ea9ca1cff94" + } + } + ] + } + ] + }, + "cborHex": "9f462e515466176dbf4c2082e0d6de13d380e2845c491b45f4290dafbb83f347218e93d97e854e1b8733600b372083114c56ce8aa5ddf4b5f5dc322421498d0073f4c47dc17fce4b873f3aad1601bdae6b30e843f456a74cde8c7668d75caf9e29e08e711bbe4234838f25efe8ffd8669f1b10759ccb1a52a2ba9f4ba8e3d476206f62e937bcb9d8669f1b6d6a568e497a226e9f1bbc41bf2719718d111b07dbe42f39e4e2a3ffffbf1b28a865cf281a4d611bb6843191bd38aa6a1b59153b95463681bd46b3b2a824880a1ba6b5a2313fc709304c858e3162a1100aa2c4d8c0f31bb48c6e5e2e8be0321b866ed1e383c544061bb4b382cf757a88b944aea2c505ff4c246293274d9c8830d10f687fbf1b3c77e10931e2bc771bf0576e513133d164ffffffbf1b6d1a3aa210643c2a41dd1b8c22978cb17566c41bd20bcb32faae9ef81b9663448ba59d93b41b1207a432ad6bcdfa1bfbc230f5fc2a43c44afb8a92174ea9ca1cff94ffff", + "cborBytes": [ + 159, 70, 46, 81, 84, 102, 23, 109, 191, 76, 32, 130, 224, 214, 222, 19, 211, 128, 226, 132, 92, 73, 27, 69, 244, + 41, 13, 175, 187, 131, 243, 71, 33, 142, 147, 217, 126, 133, 78, 27, 135, 51, 96, 11, 55, 32, 131, 17, 76, 86, + 206, 138, 165, 221, 244, 181, 245, 220, 50, 36, 33, 73, 141, 0, 115, 244, 196, 125, 193, 127, 206, 75, 135, 63, + 58, 173, 22, 1, 189, 174, 107, 48, 232, 67, 244, 86, 167, 76, 222, 140, 118, 104, 215, 92, 175, 158, 41, 224, 142, + 113, 27, 190, 66, 52, 131, 143, 37, 239, 232, 255, 216, 102, 159, 27, 16, 117, 156, 203, 26, 82, 162, 186, 159, + 75, 168, 227, 212, 118, 32, 111, 98, 233, 55, 188, 185, 216, 102, 159, 27, 109, 106, 86, 142, 73, 122, 34, 110, + 159, 27, 188, 65, 191, 39, 25, 113, 141, 17, 27, 7, 219, 228, 47, 57, 228, 226, 163, 255, 255, 191, 27, 40, 168, + 101, 207, 40, 26, 77, 97, 27, 182, 132, 49, 145, 189, 56, 170, 106, 27, 89, 21, 59, 149, 70, 54, 129, 189, 70, + 179, 178, 168, 36, 136, 10, 27, 166, 181, 162, 49, 63, 199, 9, 48, 76, 133, 142, 49, 98, 161, 16, 10, 162, 196, + 216, 192, 243, 27, 180, 140, 110, 94, 46, 139, 224, 50, 27, 134, 110, 209, 227, 131, 197, 68, 6, 27, 180, 179, + 130, 207, 117, 122, 136, 185, 68, 174, 162, 197, 5, 255, 76, 36, 98, 147, 39, 77, 156, 136, 48, 209, 15, 104, 127, + 191, 27, 60, 119, 225, 9, 49, 226, 188, 119, 27, 240, 87, 110, 81, 49, 51, 209, 100, 255, 255, 255, 191, 27, 109, + 26, 58, 162, 16, 100, 60, 42, 65, 221, 27, 140, 34, 151, 140, 177, 117, 102, 196, 27, 210, 11, 203, 50, 250, 174, + 158, 248, 27, 150, 99, 68, 139, 165, 157, 147, 180, 27, 18, 7, 164, 50, 173, 107, 205, 250, 27, 251, 194, 48, 245, + 252, 42, 67, 196, 74, 251, 138, 146, 23, 78, 169, 202, 28, 255, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3472, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "010dbc1b28e04484564d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15387700660756195904" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f24438b1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a026ae5cc6839fcc4a11b5d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "604585cf622f8c30" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "694f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77952fdb67e4c26124cf" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6571147177329139162" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13437144660240261043" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10713061099565828653" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "930890d7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17938333085197223986" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00d8f0" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ce5bf28e0063c01d08c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9e135500ed40186d975f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17007017276339356570" + } + }, + { + "_tag": "ByteArray", + "bytearray": "94a2158b84" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10541614039344228016" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "944791b6c3cb5f0f" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4a010dbc1b28e04484564d9f1bd58c1839326aaa40ff454f24438b1b4c5a026ae5cc6839fcc4a11b5d48604585cf622f8c3042694f4a77952fdb67e4c26124cfbf1b5b31678ad7839dda1bba7a53e01d285fb31b94ac704f50ad4a2d44930890d71bf8f1c2e64dd148324300d8f0ff4a8ce5bf28e0063c01d08c9f4a9e135500ed40186d975f1bec05101b1523839a4594a2158b841b924b561dee6226b0ff48944791b6c3cb5f0fa0ff", + "cborBytes": [ + 191, 74, 1, 13, 188, 27, 40, 224, 68, 132, 86, 77, 159, 27, 213, 140, 24, 57, 50, 106, 170, 64, 255, 69, 79, 36, + 67, 139, 27, 76, 90, 2, 106, 229, 204, 104, 57, 252, 196, 161, 27, 93, 72, 96, 69, 133, 207, 98, 47, 140, 48, 66, + 105, 79, 74, 119, 149, 47, 219, 103, 228, 194, 97, 36, 207, 191, 27, 91, 49, 103, 138, 215, 131, 157, 218, 27, + 186, 122, 83, 224, 29, 40, 95, 179, 27, 148, 172, 112, 79, 80, 173, 74, 45, 68, 147, 8, 144, 215, 27, 248, 241, + 194, 230, 77, 209, 72, 50, 67, 0, 216, 240, 255, 74, 140, 229, 191, 40, 224, 6, 60, 1, 208, 140, 159, 74, 158, 19, + 85, 0, 237, 64, 24, 109, 151, 95, 27, 236, 5, 16, 27, 21, 35, 131, 154, 69, 148, 162, 21, 139, 132, 27, 146, 75, + 86, 29, 238, 98, 38, 176, 255, 72, 148, 71, 145, 182, 195, 203, 95, 15, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3473, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16742644498466907241" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b016d70e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "135295" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed0ef507b5acc10f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b28c89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38edfed8810fe054696cc1" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a4c235c7be80cea3c044" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11338618028515236235" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5f497d58f38a9934ba4e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16424129588467919381" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff89fbf1be859d2770bc4a46944b016d70e4313529548ed0ef507b5acc10f43b28c894b38edfed8810fe054696cc1ff4aa4c235c7be80cea3c0441b9d5add05b97d998bbf4bf5f497d58f38a9934ba4e81be3ee3ad7899cea15ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 191, 27, 232, 89, 210, 119, 11, 196, 164, 105, 68, + 176, 22, 215, 14, 67, 19, 82, 149, 72, 237, 14, 245, 7, 181, 172, 193, 15, 67, 178, 140, 137, 75, 56, 237, 254, + 216, 129, 15, 224, 84, 105, 108, 193, 255, 74, 164, 194, 53, 199, 190, 128, 206, 163, 192, 68, 27, 157, 90, 221, + 5, 185, 125, 153, 139, 191, 75, 245, 244, 151, 213, 143, 56, 169, 147, 75, 164, 232, 27, 227, 238, 58, 215, 137, + 156, 234, 21, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3474, + "sample": { + "_tag": "ByteArray", + "bytearray": "c3374a03a64ae4f461da" + }, + "cborHex": "4ac3374a03a64ae4f461da", + "cborBytes": [74, 195, 55, 74, 3, 166, 74, 228, 244, 97, 218], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3475, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16895313085288353186" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5578521765574807070" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10062870328362033370" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "25" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8701645007268033950" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3206878250879905271" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4102708107158212127" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11867303791681227805" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9405591034351561570" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2214569720162844090" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18305832166533491714" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16323121853375145095" + } + } + ] + } + ] + }, + "cborHex": "d8669f1bea7835bc619f0da29fd8669f1b4d6ae3fd50df0e1e9fd8669f1b8ba67f3f8ed660da80ff41251b78c27407e3c3359effffbf1b2c811ec7459f6df71b38efbf495047ce1f1ba4b121ec40ce4c1d1b82875f36791fab62ff417ed8669f1b1ebbbb6d5ca47dba9f1bfe0b615df425ec021be28760d78fd76487ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 234, 120, 53, 188, 97, 159, 13, 162, 159, 216, 102, 159, 27, 77, 106, 227, 253, 80, 223, 14, + 30, 159, 216, 102, 159, 27, 139, 166, 127, 63, 142, 214, 96, 218, 128, 255, 65, 37, 27, 120, 194, 116, 7, 227, + 195, 53, 158, 255, 255, 191, 27, 44, 129, 30, 199, 69, 159, 109, 247, 27, 56, 239, 191, 73, 80, 71, 206, 31, 27, + 164, 177, 33, 236, 64, 206, 76, 29, 27, 130, 135, 95, 54, 121, 31, 171, 98, 255, 65, 126, 216, 102, 159, 27, 30, + 187, 187, 109, 92, 164, 125, 186, 159, 27, 254, 11, 97, 93, 244, 37, 236, 2, 27, 226, 135, 96, 215, 143, 215, 100, + 135, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3476, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11802784545316317140" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4496e354dd67" + }, + { + "_tag": "ByteArray", + "bytearray": "ab8e406a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9558625579480005782" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c73" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9570695e41c0c26" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7adc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13403183809175236942" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbc62af1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88df8a6d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6dcd1b2bdcd238b6d569a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18125617958582055169" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8a90551edcd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16927364829399865457" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba3cbea02980ca7d49f9f464496e354dd6744ab8e406affd8669f1b84a70f521dde3c9680ffffffbf420c7348a9570695e41c0c26427adc1bba01aca94d28314e44bbc62af14488df8a6d4bd6dcd1b2bdcd238b6d569a1bfb8b217febb9710146f8a90551edcd1beaea14a097d1d871ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 163, 203, 234, 2, 152, 12, 167, 212, 159, 159, 70, 68, 150, 227, 84, 221, 103, 68, 171, + 142, 64, 106, 255, 216, 102, 159, 27, 132, 167, 15, 82, 29, 222, 60, 150, 128, 255, 255, 255, 191, 66, 12, 115, + 72, 169, 87, 6, 149, 228, 28, 12, 38, 66, 122, 220, 27, 186, 1, 172, 169, 77, 40, 49, 78, 68, 187, 198, 42, 241, + 68, 136, 223, 138, 109, 75, 214, 220, 209, 178, 189, 205, 35, 139, 109, 86, 154, 27, 251, 139, 33, 127, 235, 185, + 113, 1, 70, 248, 169, 5, 81, 237, 205, 27, 234, 234, 20, 160, 151, 209, 216, 113, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3477, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15292904907799474019" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13788115042581512716" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10018085218987727372" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4556cc5c881feee9a1" + }, + { + "_tag": "ByteArray", + "bytearray": "05cc3ea3b4236b2e5a3b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e38272053f8c8bb778" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "149655699868226731" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9520127259441761705" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "457448780792826114" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6602281650908324814" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8268400060882192139" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88d0f4bcb7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9593085609954873841" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1918146943123724021" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15233015369592550673" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c36f43" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16267304544151689975" + } + } + ] + }, + "cborHex": "9f1bd43b4ffd05372f639f9f1bbf593994234a820c1b8b07636db75ada0c494556cc5c881feee9a14a05cc3ea3b4236b2e5a3bff49e38272053f8c8bb778bf1b0213af10ed4214ab1b841e494d7b8a0da91b06592f3e121789021b5ba0042e5d7863ce1b72bf420c29b3870b4588d0f4bcb71b85217c89314591f11b1a9ea07b63e416f51bd3668ac54aa1351143c36f43ffff1be1c1134b87425af7ff", + "cborBytes": [ + 159, 27, 212, 59, 79, 253, 5, 55, 47, 99, 159, 159, 27, 191, 89, 57, 148, 35, 74, 130, 12, 27, 139, 7, 99, 109, + 183, 90, 218, 12, 73, 69, 86, 204, 92, 136, 31, 238, 233, 161, 74, 5, 204, 62, 163, 180, 35, 107, 46, 90, 59, 255, + 73, 227, 130, 114, 5, 63, 140, 139, 183, 120, 191, 27, 2, 19, 175, 16, 237, 66, 20, 171, 27, 132, 30, 73, 77, 123, + 138, 13, 169, 27, 6, 89, 47, 62, 18, 23, 137, 2, 27, 91, 160, 4, 46, 93, 120, 99, 206, 27, 114, 191, 66, 12, 41, + 179, 135, 11, 69, 136, 208, 244, 188, 183, 27, 133, 33, 124, 137, 49, 69, 145, 241, 27, 26, 158, 160, 123, 99, + 228, 22, 245, 27, 211, 102, 138, 197, 74, 161, 53, 17, 67, 195, 111, 67, 255, 255, 27, 225, 193, 19, 75, 135, 66, + 90, 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3478, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17691301086113277173" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0976056a9571" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffec1bf584209af443a4f5460976056a9571a0ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 236, 27, 245, 132, 32, 154, 244, 67, 164, 245, 70, 9, 118, 5, 106, + 149, 113, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3479, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9201527718678603487" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14163022069609261151" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6438325087760394925" + } + } + ] + }, + "cborHex": "d9050a9fbf1b7fb264b556bfa6df1bc48d29888d13e85fff1b5959868e3c71aaadff", + "cborBytes": [ + 217, 5, 10, 159, 191, 27, 127, 178, 100, 181, 86, 191, 166, 223, 27, 196, 141, 41, 136, 141, 19, 232, 95, 255, 27, + 89, 89, 134, 142, 60, 113, 170, 173, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3480, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10142409578874033949" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f586fbfea02527" + }, + { + "_tag": "ByteArray", + "bytearray": "c00addc11c52" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10506720557005519089" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "282719674146322783" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a2512ea1947bb46" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13353894303987412100" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63589a30" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3eb9cddd6c3f18" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bd3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7462" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9938" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "735855871438855706" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d102c63de389b7898cf3db" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14198171084129058165" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2892913785504236013" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "332d062d7a34b285087b420f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10239236220928163808" + } + } + ] + }, + "cborHex": "9f9fd8669f1b8cc113c6734e571d9f47f586fbfea0252746c00addc11c521b91cf5eadfa9bb8f1410affffbf1b03ec6c0bb481795f481a2512ea1947bb461bb952901e15482c844463589a30ffbf473eb9cddd6c3f18423bd3427462419e4299381b0a3649042eff9e1aff4bd102c63de389b7898cf3dbff1bc50a096039bc3d75d8669f1b2825b1c2b6cf81ed80ff4c332d062d7a34b285087b420f1b8e191317d7bc7fe0ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 140, 193, 19, 198, 115, 78, 87, 29, 159, 71, 245, 134, 251, 254, 160, 37, 39, 70, + 192, 10, 221, 193, 28, 82, 27, 145, 207, 94, 173, 250, 155, 184, 241, 65, 10, 255, 255, 191, 27, 3, 236, 108, 11, + 180, 129, 121, 95, 72, 26, 37, 18, 234, 25, 71, 187, 70, 27, 185, 82, 144, 30, 21, 72, 44, 132, 68, 99, 88, 154, + 48, 255, 191, 71, 62, 185, 205, 221, 108, 63, 24, 66, 59, 211, 66, 116, 98, 65, 158, 66, 153, 56, 27, 10, 54, 73, + 4, 46, 255, 158, 26, 255, 75, 209, 2, 198, 61, 227, 137, 183, 137, 140, 243, 219, 255, 27, 197, 10, 9, 96, 57, + 188, 61, 117, 216, 102, 159, 27, 40, 37, 177, 194, 182, 207, 129, 237, 128, 255, 76, 51, 45, 6, 45, 122, 52, 178, + 133, 8, 123, 66, 15, 27, 142, 25, 19, 23, 215, 188, 127, 224, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3481, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11864627871342886781" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9807549407809723983" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9022103711158645550" + } + }, + { + "_tag": "ByteArray", + "bytearray": "209342a1eb5aa08b11e477" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13529264529453320910" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17769971043634211279" + } + } + ] + } + } + ] + }, + "cborHex": "bf1ba4a7a02fff977f7d9f1b881b6a3949975e4f1b7d34f3862e58332e4b209342a1eb5aa08b11e4771bbbc19a688e5b8ace1bf69b9e83cccb69cfffff", + "cborBytes": [ + 191, 27, 164, 167, 160, 47, 255, 151, 127, 125, 159, 27, 136, 27, 106, 57, 73, 151, 94, 79, 27, 125, 52, 243, 134, + 46, 88, 51, 46, 75, 32, 147, 66, 161, 235, 90, 160, 139, 17, 228, 119, 27, 187, 193, 154, 104, 142, 91, 138, 206, + 27, 246, 155, 158, 131, 204, 203, 105, 207, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3482, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18384299107624142181" + }, + "fields": [] + }, + "cborHex": "d8669f1bff2226a25a77c56580ff", + "cborBytes": [216, 102, 159, 27, 255, 34, 38, 162, 90, 119, 197, 101, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3483, + "sample": { + "_tag": "ByteArray", + "bytearray": "9484b27cb2a3a7434b31b438" + }, + "cborHex": "4c9484b27cb2a3a7434b31b438", + "cborBytes": [76, 148, 132, 178, 124, 178, 163, 167, 67, 75, 49, 180, 56], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3484, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c0669773867a727" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3501153" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5d386368445" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7583ca" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "15b6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2504" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1793198" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b904c28a45669b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3eef69892c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afdd6f9603" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7746b00a9223e563" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1034113515732393311" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b5e924b2b0784209771" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68dcb50b696d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9321deb5f5207f9bc5f0a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14534135336674279539" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2259840197686239984" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17329788986897054490" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11680983938975718464" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14597916829103901763" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2" + } + } + ] + } + ] + }, + "cborHex": "9fbf488c0669773867a72744f350115346d5d386368445437583caff4215b6bf42250444e1793198413647b904c28a45669b453eef69892c45afdd6f9603487746b00a9223e5631b0e59e8c37aa8dd5f4a8b5e924b2b07842097714668dcb50b696d4bc9321deb5f5207f9bc5f0a1bc9b39f1563ec4073ffa0bf1b1f5c90afc83ca2f01bf07fc7443479bb1a1ba21b310105b0dc401bca963803536f4c4341a541f2ffff", + "cborBytes": [ + 159, 191, 72, 140, 6, 105, 119, 56, 103, 167, 39, 68, 243, 80, 17, 83, 70, 213, 211, 134, 54, 132, 69, 67, 117, + 131, 202, 255, 66, 21, 182, 191, 66, 37, 4, 68, 225, 121, 49, 152, 65, 54, 71, 185, 4, 194, 138, 69, 102, 155, 69, + 62, 239, 105, 137, 44, 69, 175, 221, 111, 150, 3, 72, 119, 70, 176, 10, 146, 35, 229, 99, 27, 14, 89, 232, 195, + 122, 168, 221, 95, 74, 139, 94, 146, 75, 43, 7, 132, 32, 151, 113, 70, 104, 220, 181, 11, 105, 109, 75, 201, 50, + 29, 235, 95, 82, 7, 249, 188, 95, 10, 27, 201, 179, 159, 21, 99, 236, 64, 115, 255, 160, 191, 27, 31, 92, 144, + 175, 200, 60, 162, 240, 27, 240, 127, 199, 68, 52, 121, 187, 26, 27, 162, 27, 49, 1, 5, 176, 220, 64, 27, 202, + 150, 56, 3, 83, 111, 76, 67, 65, 165, 65, 242, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3485, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2523184509810255538" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6453651826864278775" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02115d40" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6f6ae9ca343" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7710153468448498738" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4572538724737292878" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10320557423313704118" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e603a8e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + } + ] + }, + "cborHex": "bf1b230426f17a0226b2d8669f1b598ffa24c44bccf79f4402115d401bfffffffffffffff146d6f6ae9ca343ffff1b6afff7baba9e64329f1b3f74ebbe69af1a4eff1b8f39fc4bbca254b644e603a8e91bfffffffffffffff3801bfffffffffffffffa1bffffffffffffffffff", + "cborBytes": [ + 191, 27, 35, 4, 38, 241, 122, 2, 38, 178, 216, 102, 159, 27, 89, 143, 250, 36, 196, 75, 204, 247, 159, 68, 2, 17, + 93, 64, 27, 255, 255, 255, 255, 255, 255, 255, 241, 70, 214, 246, 174, 156, 163, 67, 255, 255, 27, 106, 255, 247, + 186, 186, 158, 100, 50, 159, 27, 63, 116, 235, 190, 105, 175, 26, 78, 255, 27, 143, 57, 252, 75, 188, 162, 84, + 182, 68, 230, 3, 168, 233, 27, 255, 255, 255, 255, 255, 255, 255, 243, 128, 27, 255, 255, 255, 255, 255, 255, 255, + 250, 27, 255, 255, 255, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3486, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3997810292803383118" + } + }, + "cborHex": "1b377b1347adf22f4e", + "cborBytes": [27, 55, 123, 19, 71, 173, 242, 47, 78], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3487, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "660197718182994078" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6de1950bea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5065fc288b50242" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7116762474111052404" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d1b0e0588e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11637424666296361499" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d726d4fe780ec8" + }, + { + "_tag": "ByteArray", + "bytearray": "c1c96ddb58909d" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "81" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8abf4f38cd61" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14444386636628772313" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10048024027992080154" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2759699711229225676" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4414692009354176904" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3647255149897050473" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14488195200105632444" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11077046057075426122" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "744138865885244615" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18264870699379300350" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51defdabc0d0b6150681" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b739413f" + }, + { + "_tag": "ByteArray", + "bytearray": "6565690b14e52487e712e0d2" + } + ] + }, + "cborHex": "9fd8669f1b09297e53a9d2209e9fbf410f41a5456de1950bea48b5065fc288b50242ffd8669f1b62c3d1c394382a749f45d1b0e0588e1ba180701386f6a21b47d726d4fe780ec847c1c96ddb58909dffffffff9f418180468abf4f38cd61bf1bc874c51dcaa845d91b8b71c09de30ebf1affbf1b264c6c440e90eacc1b3d4422fe124fa9881b329da73c1ed3e9691bc91068c5d2d0d2bc1b99b992b3409f434a1b0a53b65b1ca6ecc71bfd79db2130f197fe4a51defdabc0d0b6150681ffff44b739413f4c6565690b14e52487e712e0d2ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 9, 41, 126, 83, 169, 210, 32, 158, 159, 191, 65, 15, 65, 165, 69, 109, 225, 149, 11, 234, + 72, 181, 6, 95, 194, 136, 181, 2, 66, 255, 216, 102, 159, 27, 98, 195, 209, 195, 148, 56, 42, 116, 159, 69, 209, + 176, 224, 88, 142, 27, 161, 128, 112, 19, 134, 246, 162, 27, 71, 215, 38, 212, 254, 120, 14, 200, 71, 193, 201, + 109, 219, 88, 144, 157, 255, 255, 255, 255, 159, 65, 129, 128, 70, 138, 191, 79, 56, 205, 97, 191, 27, 200, 116, + 197, 29, 202, 168, 69, 217, 27, 139, 113, 192, 157, 227, 14, 191, 26, 255, 191, 27, 38, 76, 108, 68, 14, 144, 234, + 204, 27, 61, 68, 34, 254, 18, 79, 169, 136, 27, 50, 157, 167, 60, 30, 211, 233, 105, 27, 201, 16, 104, 197, 210, + 208, 210, 188, 27, 153, 185, 146, 179, 64, 159, 67, 74, 27, 10, 83, 182, 91, 28, 166, 236, 199, 27, 253, 121, 219, + 33, 48, 241, 151, 254, 74, 81, 222, 253, 171, 192, 208, 182, 21, 6, 129, 255, 255, 68, 183, 57, 65, 63, 76, 101, + 101, 105, 11, 20, 229, 36, 135, 231, 18, 224, 210, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3488, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13766648546320498839" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11954651512168743115" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5737583763343230894" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bbf0cf5e9ff14c0979f9f1ba5e774363c6780cb1b4f9ffe08a31f47aeffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 191, 12, 245, 233, 255, 20, 192, 151, 159, 159, 27, 165, 231, 116, 54, 60, 103, 128, 203, + 27, 79, 159, 254, 8, 163, 31, 71, 174, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3489, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6e3d4b3a2a58d77" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11439707773118974886" + } + } + } + ] + }, + "cborHex": "bf48d6e3d4b3a2a58d771b9ec2019c07080ba6ff", + "cborBytes": [191, 72, 214, 227, 212, 179, 162, 165, 141, 119, 27, 158, 194, 1, 156, 7, 8, 11, 166, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3490, + "sample": { + "_tag": "ByteArray", + "bytearray": "489622fad5f0d65f5d7d" + }, + "cborHex": "4a489622fad5f0d65f5d7d", + "cborBytes": [74, 72, 150, 34, 250, 213, 240, 214, 95, 93, 125], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3491, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ae" + }, + { + "_tag": "ByteArray", + "bytearray": "1355788b4982db51880db063" + }, + { + "_tag": "ByteArray", + "bytearray": "8ad34156cf874c" + }, + { + "_tag": "ByteArray", + "bytearray": "9d00b001030ff0d2ff01a9" + }, + { + "_tag": "ByteArray", + "bytearray": "009a0326bf034c07004d04" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15661081680750450393" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2175437bcb718396" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02e554" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61e3af21eeaf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12548535971848910733" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cddbc288" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0b80cf7d005e8a0ae" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "da6c450405f8b106" + } + ] + }, + "cborHex": "9f9fd87e9f41ae4c1355788b4982db51880db063478ad34156cf874c4b9d00b001030ff0d2ff01a94b009a0326bf034c07004d04ff1bd95756d00b8216d9ffbf482175437bcb7183964302e5544661e3af21eeaf1bae255afb3d43f78d44cddbc28849b0b80cf7d005e8a0aeff48da6c450405f8b106ff", + "cborBytes": [ + 159, 159, 216, 126, 159, 65, 174, 76, 19, 85, 120, 139, 73, 130, 219, 81, 136, 13, 176, 99, 71, 138, 211, 65, 86, + 207, 135, 76, 75, 157, 0, 176, 1, 3, 15, 240, 210, 255, 1, 169, 75, 0, 154, 3, 38, 191, 3, 76, 7, 0, 77, 4, 255, + 27, 217, 87, 86, 208, 11, 130, 22, 217, 255, 191, 72, 33, 117, 67, 123, 203, 113, 131, 150, 67, 2, 229, 84, 70, + 97, 227, 175, 33, 238, 175, 27, 174, 37, 90, 251, 61, 67, 247, 141, 68, 205, 219, 194, 136, 73, 176, 184, 12, 247, + 208, 5, 232, 160, 174, 255, 72, 218, 108, 69, 4, 5, 248, 177, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3492, + "sample": { + "_tag": "ByteArray", + "bytearray": "05046c09" + }, + "cborHex": "4405046c09", + "cborBytes": [68, 5, 4, 108, 9], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3493, + "sample": { + "_tag": "ByteArray", + "bytearray": "0183" + }, + "cborHex": "420183", + "cborBytes": [66, 1, 131], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3494, + "sample": { + "_tag": "ByteArray", + "bytearray": "f8040204" + }, + "cborHex": "44f8040204", + "cborBytes": [68, 248, 4, 2, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3495, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03fc0203" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "170300" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7937396448480029004" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4903fff306f9fafb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6021584bb1f2c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "33d7aa83" + }, + { + "_tag": "ByteArray", + "bytearray": "120d7f7a89fd1dcab50956" + } + ] + } + } + ] + }, + "cborHex": "bf4403fc0203a0431703001b6e274c040919694c484903fff306f9fafbd8798047a6021584bb1f2c9f4433d7aa834b120d7f7a89fd1dcab50956ffff", + "cborBytes": [ + 191, 68, 3, 252, 2, 3, 160, 67, 23, 3, 0, 27, 110, 39, 76, 4, 9, 25, 105, 76, 72, 73, 3, 255, 243, 6, 249, 250, + 251, 216, 121, 128, 71, 166, 2, 21, 132, 187, 31, 44, 159, 68, 51, 215, 170, 131, 75, 18, 13, 127, 122, 137, 253, + 29, 202, 181, 9, 86, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3496, + "sample": { + "_tag": "ByteArray", + "bytearray": "cd051f03abfe7406030707" + }, + "cborHex": "4bcd051f03abfe7406030707", + "cborBytes": [75, 205, 5, 31, 3, 171, 254, 116, 6, 3, 7, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3497, + "sample": { + "_tag": "ByteArray", + "bytearray": "a2" + }, + "cborHex": "41a2", + "cborBytes": [65, 162], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3498, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9217079124815855468" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8abf1b5518f84493445d" + }, + { + "_tag": "ByteArray", + "bytearray": "3241e88655e8c356c6f9a630" + }, + { + "_tag": "ByteArray", + "bytearray": "c21266a569" + }, + { + "_tag": "ByteArray", + "bytearray": "1d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10008186743895724420" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10758076741753208283" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ac0b8dc8c49" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "199c52715085a3ce563a84e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be36157ba9e66c3b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e53acb9783b47a6864c07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8330113407966646178" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffd9f9fa0d8669f1b7fe9a4a13d513f6c9f4a8abf1b5518f84493445d4c3241e88655e8c356c6f9a63045c21266a569411d1b8ae438d163ad9184ffff1b954c5dcc42977ddb464ac0b8dc8c49bf4c199c52715085a3ce563a84e548be36157ba9e66c3b4b2e53acb9783b47a6864c071b739a82027c920fa2ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 159, 160, 216, 102, 159, 27, 127, 233, 164, 161, + 61, 81, 63, 108, 159, 74, 138, 191, 27, 85, 24, 248, 68, 147, 68, 93, 76, 50, 65, 232, 134, 85, 232, 195, 86, 198, + 249, 166, 48, 69, 194, 18, 102, 165, 105, 65, 29, 27, 138, 228, 56, 209, 99, 173, 145, 132, 255, 255, 27, 149, 76, + 93, 204, 66, 151, 125, 219, 70, 74, 192, 184, 220, 140, 73, 191, 76, 25, 156, 82, 113, 80, 133, 163, 206, 86, 58, + 132, 229, 72, 190, 54, 21, 123, 169, 230, 108, 59, 75, 46, 83, 172, 185, 120, 59, 71, 166, 134, 76, 7, 27, 115, + 154, 130, 2, 124, 146, 15, 162, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3499, + "sample": { + "_tag": "ByteArray", + "bytearray": "f7fb" + }, + "cborHex": "42f7fb", + "cborBytes": [66, 247, 251], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3500, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1513116483874232885" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + "cborHex": "d8669f1b14ffab6cdd1c9a359f0affff", + "cborBytes": [216, 102, 159, 27, 20, 255, 171, 108, 221, 28, 154, 53, 159, 10, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3501, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11605087394913495463" + } + }, + "cborHex": "1ba10d8d7fd12ea9a7", + "cborBytes": [27, 161, 13, 141, 127, 209, 46, 169, 167], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3502, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + "cborHex": "9f06ff", + "cborBytes": [159, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3503, + "sample": { + "_tag": "ByteArray", + "bytearray": "43e2" + }, + "cborHex": "4243e2", + "cborBytes": [66, 67, 226], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3504, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6583139749503228142" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17450551089484558327" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "74fa" + }, + { + "_tag": "ByteArray", + "bytearray": "00f9ed5c0efd7a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ef5b6856" + }, + { + "_tag": "ByteArray", + "bytearray": "5a0f74fffc07070306" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9875838703272123572" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7332812963145072740" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16693142426206190753" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7796770912680164022" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6791849874259382514" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13454550981331807482" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39d3ce3a41f24785162fa5f6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16161667248009395498" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d5afd4f6d9e6ce23a5b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16751135386797700892" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed9779" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5b5c02b923e4d8eed8669f1bf22ccfc247886ff79f4274fa4700f9ed5c0efd7a0044ef5b6856495a0f74fffc07070306ffff1b890e06f9e796dcb4bf1b65c3628a00a440641be7a9f497b305bca11b6c33b1d605663ab61b5e417f79d30310f21bbab82ad50eaa6cfa4c39d3ce3a41f24785162fa5f61be049c6bbdfaa3d2a4a9d5afd4f6d9e6ce23a5b1be877fce20a8d771c43ed9779ffff", + "cborBytes": [ + 191, 27, 91, 92, 2, 185, 35, 228, 216, 238, 216, 102, 159, 27, 242, 44, 207, 194, 71, 136, 111, 247, 159, 66, 116, + 250, 71, 0, 249, 237, 92, 14, 253, 122, 0, 68, 239, 91, 104, 86, 73, 90, 15, 116, 255, 252, 7, 7, 3, 6, 255, 255, + 27, 137, 14, 6, 249, 231, 150, 220, 180, 191, 27, 101, 195, 98, 138, 0, 164, 64, 100, 27, 231, 169, 244, 151, 179, + 5, 188, 161, 27, 108, 51, 177, 214, 5, 102, 58, 182, 27, 94, 65, 127, 121, 211, 3, 16, 242, 27, 186, 184, 42, 213, + 14, 170, 108, 250, 76, 57, 211, 206, 58, 65, 242, 71, 133, 22, 47, 165, 246, 27, 224, 73, 198, 187, 223, 170, 61, + 42, 74, 157, 90, 253, 79, 109, 158, 108, 226, 58, 91, 27, 232, 119, 252, 226, 10, 141, 119, 28, 67, 237, 151, 121, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3505, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9018916299775952425" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5948371948842341165" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10030907032551461826" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1b7d29a097232046299fbf1b528cdcc58aa5532d0c41fc1b8b34f0ccd23293c2ffffff", + "cborBytes": [ + 216, 102, 159, 27, 125, 41, 160, 151, 35, 32, 70, 41, 159, 191, 27, 82, 140, 220, 197, 138, 165, 83, 45, 12, 65, + 252, 27, 139, 52, 240, 204, 210, 50, 147, 194, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3506, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f07a0ffff", + "cborBytes": [216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 7, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3507, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2945619677769626104" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14576676886554038408" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cefecc47ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8389" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d8f4b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc139b0531950b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb3bc504cd24e1bfe879190e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15438514949928259248" + } + } + } + ] + }, + "cborHex": "bf1b28e0f17d88dbf1f8bf1bca4ac265d4b3508845cefecc47ae41e4428389ff431d8f4b47dc139b0531950b4cbb3bc504cd24e1bfe879190e1bd6409f8cda080eb0ff", + "cborBytes": [ + 191, 27, 40, 224, 241, 125, 136, 219, 241, 248, 191, 27, 202, 74, 194, 101, 212, 179, 80, 136, 69, 206, 254, 204, + 71, 174, 65, 228, 66, 131, 137, 255, 67, 29, 143, 75, 71, 220, 19, 155, 5, 49, 149, 11, 76, 187, 59, 197, 4, 205, + 36, 225, 191, 232, 121, 25, 14, 27, 214, 64, 159, 140, 218, 8, 14, 176, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3508, + "sample": { + "_tag": "ByteArray", + "bytearray": "b569878c258d4147a6f910" + }, + "cborHex": "4bb569878c258d4147a6f910", + "cborBytes": [75, 181, 105, 135, 140, 37, 141, 65, 71, 166, 249, 16], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3509, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "44f9a97da757d2e5ccf8" + }, + { + "_tag": "ByteArray", + "bytearray": "4aa4d1f741" + }, + { + "_tag": "ByteArray", + "bytearray": "822847c5fa25" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18094176722101031443" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8d3230ecf92d069292" + }, + { + "_tag": "ByteArray", + "bytearray": "7bf08a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18233047594613588393" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15544389522214855206" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15576870719631492297" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13572920306334225066" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905039f9f9f4a44f9a97da757d2e5ccf8454aa4d1f74146822847c5fa25ffa09f1bfb1b6ddc97f95213498d3230ecf92d069292437bf08a1bfd08cc2f39bbc1a9ffd8669f1bd7b8c3e9a9eba2269f1bd82c2963c3d184c91bbc5cb31b2fbcd2aaffffffff", + "cborBytes": [ + 217, 5, 3, 159, 159, 159, 74, 68, 249, 169, 125, 167, 87, 210, 229, 204, 248, 69, 74, 164, 209, 247, 65, 70, 130, + 40, 71, 197, 250, 37, 255, 160, 159, 27, 251, 27, 109, 220, 151, 249, 82, 19, 73, 141, 50, 48, 236, 249, 45, 6, + 146, 146, 67, 123, 240, 138, 27, 253, 8, 204, 47, 57, 187, 193, 169, 255, 216, 102, 159, 27, 215, 184, 195, 233, + 169, 235, 162, 38, 159, 27, 216, 44, 41, 99, 195, 209, 132, 201, 27, 188, 92, 179, 27, 47, 188, 210, 170, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3510, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6704445296228164659" + } + }, + "cborHex": "1b5d0af979a9b7e433", + "cborBytes": [27, 93, 10, 249, 121, 169, 183, 228, 51], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3511, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13359799618757693993" + }, + "fields": [] + }, + "cborHex": "d8669f1bb9678af85273922980ff", + "cborBytes": [216, 102, 159, 27, 185, 103, 138, 248, 82, 115, 146, 41, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3512, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14633058466558656917" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1483178263560816528" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5683210106009401339" + } + }, + { + "_tag": "ByteArray", + "bytearray": "232178a4f16b08" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15425904519347177632" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2393993984215496798" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f3654278a" + }, + { + "_tag": "ByteArray", + "bytearray": "46cd" + }, + { + "_tag": "ByteArray", + "bytearray": "929b89" + }, + { + "_tag": "ByteArray", + "bytearray": "e14f9cd9d1" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8032863443430272334" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3672218871413775479" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "ByteArray", + "bytearray": "27e2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7515515512970328212" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "253770c3b0e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d1d2875b40551" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01825755" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d90eeb107" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "36fc04" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1097224292871050652" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68d978446131" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b3e8c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cca988555940cb3f4ff9eb" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "d8669f1bcb13112564c041959f9f9f1b14954ec5c21f87901b4eded17b0099b7fb47232178a4f16b081bd613d26e2ec808a0ff9f1b21392cd83f96385e456f3654278a4246cd43929b8945e14f9cd9d1ff801b6f7a76bdeae1ed4e1b32f6579b781a9c77ff134227e21b684c798a4688b894d87e9fbf46253770c3b0e114473d1d2875b405514401825755457d90eeb10709ff4336fc04bf1b0f3a1fae5782159c4668d978446131ffbf435b3e8c4bcca988555940cb3f4ff9ebffd8669f1bfffffffffffffffa80ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 203, 19, 17, 37, 100, 192, 65, 149, 159, 159, 159, 27, 20, 149, 78, 197, 194, 31, 135, 144, 27, + 78, 222, 209, 123, 0, 153, 183, 251, 71, 35, 33, 120, 164, 241, 107, 8, 27, 214, 19, 210, 110, 46, 200, 8, 160, + 255, 159, 27, 33, 57, 44, 216, 63, 150, 56, 94, 69, 111, 54, 84, 39, 138, 66, 70, 205, 67, 146, 155, 137, 69, 225, + 79, 156, 217, 209, 255, 128, 27, 111, 122, 118, 189, 234, 225, 237, 78, 27, 50, 246, 87, 155, 120, 26, 156, 119, + 255, 19, 66, 39, 226, 27, 104, 76, 121, 138, 70, 136, 184, 148, 216, 126, 159, 191, 70, 37, 55, 112, 195, 176, + 225, 20, 71, 61, 29, 40, 117, 180, 5, 81, 68, 1, 130, 87, 85, 69, 125, 144, 238, 177, 7, 9, 255, 67, 54, 252, 4, + 191, 27, 15, 58, 31, 174, 87, 130, 21, 156, 70, 104, 217, 120, 68, 97, 49, 255, 191, 67, 91, 62, 140, 75, 204, + 169, 136, 85, 89, 64, 203, 63, 79, 249, 235, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 128, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3513, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16219642047812963002" + } + }, + "cborHex": "1be117be81d3e18aba", + "cborBytes": [27, 225, 23, 190, 129, 211, 225, 138, 186], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3514, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10188122971977254424" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64e9ea5f0c32bd84" + } + ] + }, + "cborHex": "9f1b8d637bdd30b386184864e9ea5f0c32bd84ff", + "cborBytes": [159, 27, 141, 99, 123, 221, 48, 179, 134, 24, 72, 100, 233, 234, 95, 12, 50, 189, 132, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3515, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c564534948" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11618170332770223423" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9785791268725395595" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6428242585371484193" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "891514372239262041" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e4ff3956f194aec62" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5497372388308624332" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16714353006903363241" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6504762068700432663" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13072519321928140081" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9572968032005684466" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12453039937370508793" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14400861704571060265" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "720fd0e46d937bda" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16553627616262207051" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7bbe51ba4cb02314f14" + } + } + ] + } + ] + }, + "cborHex": "9f45c5645349489f1bfffffffffffffff7ff9fd8669f1ba13c085ca8c0453f80ff1bfffffffffffffffed8669f1bfffffffffffffff680ff1b87ce1d4fc27f108bbf4207f71b5935b492b71b2021ffffbf1b0c5f4b991d7a0159490e4ff3956f194aec621b4c4a970f932d23cc1be7f54f80daf506a91b5a458ea3455309171bb56aeb0fe6f505311b84da03b491de7cf21bacd215d810b8cdf91bc7da236bd87c002948720fd0e46d937bda1be5ba4c9cb367b64b4ab7bbe51ba4cb02314f14ffff", + "cborBytes": [ + 159, 69, 197, 100, 83, 73, 72, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 255, 159, 216, 102, 159, 27, 161, + 60, 8, 92, 168, 192, 69, 63, 128, 255, 27, 255, 255, 255, 255, 255, 255, 255, 254, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 246, 128, 255, 27, 135, 206, 29, 79, 194, 127, 16, 139, 191, 66, 7, 247, 27, 89, 53, 180, + 146, 183, 27, 32, 33, 255, 255, 191, 27, 12, 95, 75, 153, 29, 122, 1, 89, 73, 14, 79, 243, 149, 111, 25, 74, 236, + 98, 27, 76, 74, 151, 15, 147, 45, 35, 204, 27, 231, 245, 79, 128, 218, 245, 6, 169, 27, 90, 69, 142, 163, 69, 83, + 9, 23, 27, 181, 106, 235, 15, 230, 245, 5, 49, 27, 132, 218, 3, 180, 145, 222, 124, 242, 27, 172, 210, 21, 216, + 16, 184, 205, 249, 27, 199, 218, 35, 107, 216, 124, 0, 41, 72, 114, 15, 208, 228, 109, 147, 123, 218, 27, 229, + 186, 76, 156, 179, 103, 182, 75, 74, 183, 187, 229, 27, 164, 203, 2, 49, 79, 20, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3516, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7462825003053574884" + } + }, + "cborHex": "1b679147ccefe96ae4", + "cborBytes": [27, 103, 145, 71, 204, 239, 233, 106, 228], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3517, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9994827323545713472" + } + }, + "cborHex": "1b8ab4c27ef34f7b40", + "cborBytes": [27, 138, 180, 194, 126, 243, 79, 123, 64], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3518, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "865200363338746263" + } + }, + "cborHex": "1b0c01cf257c584997", + "cborBytes": [27, 12, 1, 207, 37, 124, 88, 73, 151], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3519, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17939303742270645955" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9531644713597596815" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7241b3279e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "196043620475719897" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10401464371390809349" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2494013983387102883" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "540efee9827a452532241e" + }, + { + "_tag": "ByteArray", + "bytearray": "88cd8328bf" + }, + { + "_tag": "ByteArray", + "bytearray": "1be5e0a2be48" + }, + { + "_tag": "ByteArray", + "bytearray": "060ae2643098ead823b0" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8047609280488642169" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6902379840049002530" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8bd79aa713dc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13933308488716878245" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4651755893349031830" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13994355873568131011" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14346633908562352566" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1295159674517842725" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10292089798200372265" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5759100527658751157" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9348176026256802883" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8608321057533880261" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12206484963962326134" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10180893495029721298" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6330944318155719970" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11834453680301263001" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "866c88f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14958295989604976879" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc9bebb20a" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1bf8f535b503e0a6c39f1b8447345dbf36f48f457241b3279e1b02b87ca256efd0d9ffffd8669f1b90596cbc88a1850580ffd8669f1b229c848108a52ea39f4b540efee9827a452532241e4588cd8328bf461be5e0a2be484a060ae2643098ead823b0ffffd8669f1b6faeda00a6a996799f1b5fca2de4e6f03822468bd79aa713dc1bc15d0e3fa7e781a5ffff9f1b408e5b56c4e61f961bc235f085906e07c31bc7197b87326ed9b6ffffbf1b11f954dca70beb251b8ed4d9244227ac291b4fec6f6ab8dd54b51b81bb64912edc04431b7776e6649ad267c51ba9662566e91f0c761b8d49ccb16b54e8d21b57dc0850887305221ba43c6cebad2bc89944866c88f81bcf968af3398e08ef45fc9bebb20affff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 248, 245, 53, 181, 3, 224, 166, 195, 159, 27, 132, 71, 52, 93, 191, 54, 244, 143, 69, + 114, 65, 179, 39, 158, 27, 2, 184, 124, 162, 86, 239, 208, 217, 255, 255, 216, 102, 159, 27, 144, 89, 108, 188, + 136, 161, 133, 5, 128, 255, 216, 102, 159, 27, 34, 156, 132, 129, 8, 165, 46, 163, 159, 75, 84, 14, 254, 233, 130, + 122, 69, 37, 50, 36, 30, 69, 136, 205, 131, 40, 191, 70, 27, 229, 224, 162, 190, 72, 74, 6, 10, 226, 100, 48, 152, + 234, 216, 35, 176, 255, 255, 216, 102, 159, 27, 111, 174, 218, 0, 166, 169, 150, 121, 159, 27, 95, 202, 45, 228, + 230, 240, 56, 34, 70, 139, 215, 154, 167, 19, 220, 27, 193, 93, 14, 63, 167, 231, 129, 165, 255, 255, 159, 27, 64, + 142, 91, 86, 196, 230, 31, 150, 27, 194, 53, 240, 133, 144, 110, 7, 195, 27, 199, 25, 123, 135, 50, 110, 217, 182, + 255, 255, 191, 27, 17, 249, 84, 220, 167, 11, 235, 37, 27, 142, 212, 217, 36, 66, 39, 172, 41, 27, 79, 236, 111, + 106, 184, 221, 84, 181, 27, 129, 187, 100, 145, 46, 220, 4, 67, 27, 119, 118, 230, 100, 154, 210, 103, 197, 27, + 169, 102, 37, 102, 233, 31, 12, 118, 27, 141, 73, 204, 177, 107, 84, 232, 210, 27, 87, 220, 8, 80, 136, 115, 5, + 34, 27, 164, 60, 108, 235, 173, 43, 200, 153, 68, 134, 108, 136, 248, 27, 207, 150, 138, 243, 57, 142, 8, 239, 69, + 252, 155, 235, 178, 10, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3520, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f9c9baa110c8c2f2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14389297931210547699" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5c7d56aed" + } + ] + }, + "cborHex": "d905009f48f9c9baa110c8c2f21bc7b10e3b0d1161f345f5c7d56aedff", + "cborBytes": [ + 217, 5, 0, 159, 72, 249, 201, 186, 161, 16, 200, 194, 242, 27, 199, 177, 14, 59, 13, 17, 97, 243, 69, 245, 199, + 213, 106, 237, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3521, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d9e5a31d07b562eaa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7039b" + } + } + ] + }, + "cborHex": "bf493d9e5a31d07b562eaa43b7039bff", + "cborBytes": [191, 73, 61, 158, 90, 49, 208, 123, 86, 46, 170, 67, 183, 3, 155, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3522, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a676deec8973" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9916655217201761779" + } + } + } + ] + }, + "cborHex": "bf46a676deec89731b899f09611d55cdf3ff", + "cborBytes": [191, 70, 166, 118, 222, 236, 137, 115, 27, 137, 159, 9, 97, 29, 85, 205, 243, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3523, + "sample": { + "_tag": "ByteArray", + "bytearray": "61e379de819393b28b229dc4" + }, + "cborHex": "4c61e379de819393b28b229dc4", + "cborBytes": [76, 97, 227, 121, 222, 129, 147, 147, 178, 139, 34, 157, 196], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3524, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11416658160008527629" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15392847899143528181" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12567599484020320032" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd6cd6fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17730739426406758657" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3300520516212814248" + } + } + ] + }, + "cborHex": "d8669f1b9e701e1bc55f7f0d9fbf1bd59e619c06115ef51bae6915250c69e72044fd6cd6fd1bf6103d911bfcf901ff1b2dcdcdec2ec0f1a8ffff", + "cborBytes": [ + 216, 102, 159, 27, 158, 112, 30, 27, 197, 95, 127, 13, 159, 191, 27, 213, 158, 97, 156, 6, 17, 94, 245, 27, 174, + 105, 21, 37, 12, 105, 231, 32, 68, 253, 108, 214, 253, 27, 246, 16, 61, 145, 27, 252, 249, 1, 255, 27, 45, 205, + 205, 236, 46, 192, 241, 168, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3525, + "sample": { + "_tag": "ByteArray", + "bytearray": "01c20707" + }, + "cborHex": "4401c20707", + "cborBytes": [68, 1, 194, 7, 7], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3526, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8786145687566533373" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "25166a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ee774e11578787b40ed78e44" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7015889810666060058" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905029f80d8669f1b79eea8f3ac3bc2fd9f4325166a9f4cee774e11578787b40ed78e441b615d729c6c08791affffffff", + "cborBytes": [ + 217, 5, 2, 159, 128, 216, 102, 159, 27, 121, 238, 168, 243, 172, 59, 194, 253, 159, 67, 37, 22, 106, 159, 76, 238, + 119, 78, 17, 87, 135, 135, 180, 14, 215, 142, 68, 27, 97, 93, 114, 156, 108, 8, 121, 26, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3527, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7906633153190760427" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5ed8df949d9618fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11268944552642161644" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17508173515133167617" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f939db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fefa030201" + } + } + ] + }, + "cborHex": "bf03d8669f1b6dba00f631430feb9f485ed8df949d9618fd1b9c63555d7dcf2bec1bf2f9870cbb6a2801ffff43f939db45fefa030201ff", + "cborBytes": [ + 191, 3, 216, 102, 159, 27, 109, 186, 0, 246, 49, 67, 15, 235, 159, 72, 94, 216, 223, 148, 157, 150, 24, 253, 27, + 156, 99, 85, 93, 125, 207, 43, 236, 27, 242, 249, 135, 12, 187, 106, 40, 1, 255, 255, 67, 249, 57, 219, 69, 254, + 250, 3, 2, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3528, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12357924262717162447" + } + }, + "cborHex": "1bab802aa4507003cf", + "cborBytes": [27, 171, 128, 42, 164, 80, 112, 3, 207], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3529, + "sample": { + "_tag": "ByteArray", + "bytearray": "22a40506005e7ef558" + }, + "cborHex": "4922a40506005e7ef558", + "cborBytes": [73, 34, 164, 5, 6, 0, 94, 126, 245, 88], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3530, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2019075000045161029" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ff3219f6686aff4" + } + } + ] + }, + "cborHex": "bf1b1c053203d8904a45483ff3219f6686aff4ff", + "cborBytes": [191, 27, 28, 5, 50, 3, 216, 144, 74, 69, 72, 63, 243, 33, 159, 102, 134, 175, 244, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3531, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "584c2b34" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2f20f287e7d451fbc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "931d3bc0dd8b16bde268c8b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1af4cab3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6f21ed93ba96f169a21ca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ba0271702" + } + } + ] + } + ] + }, + "cborHex": "d905019f44584c2b34bf410049f2f20f287e7d451fbc4c931d3bc0dd8b16bde268c8b3441af4cab34be6f21ed93ba96f169a21ca457ba0271702ffff", + "cborBytes": [ + 217, 5, 1, 159, 68, 88, 76, 43, 52, 191, 65, 0, 73, 242, 242, 15, 40, 126, 125, 69, 31, 188, 76, 147, 29, 59, 192, + 221, 139, 22, 189, 226, 104, 200, 179, 68, 26, 244, 202, 179, 75, 230, 242, 30, 217, 59, 169, 111, 22, 154, 33, + 202, 69, 123, 160, 39, 23, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3532, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14159808732214060025" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2727334215545412784" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8892560823231382059" + } + } + ] + }, + "cborHex": "9fa0d8669f1bc481bf052317e3f99f1b25d97004dd5a5cb0ffff1b7b68b8f43443022bff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 196, 129, 191, 5, 35, 23, 227, 249, 159, 27, 37, 217, 112, 4, 221, 90, 92, 176, 255, + 255, 27, 123, 104, 184, 244, 52, 67, 2, 43, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3533, + "sample": { + "_tag": "ByteArray", + "bytearray": "009500" + }, + "cborHex": "43009500", + "cborBytes": [67, 0, 149, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3534, + "sample": { + "_tag": "ByteArray", + "bytearray": "070500" + }, + "cborHex": "43070500", + "cborBytes": [67, 7, 5, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3535, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "444b783ffdc558352991" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9422058268201090124" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4a444b783ffdc558352991bf41bc1b82c1e01321287c4cffff", + "cborBytes": [ + 191, 74, 68, 75, 120, 63, 253, 197, 88, 53, 41, 145, 191, 65, 188, 27, 130, 193, 224, 19, 33, 40, 124, 76, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3536, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9878815699341230570" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3880764194945075812" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "020752f97204f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4790558956803727107" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9987e5a40db11" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + }, + "cborHex": "bf1b89189a89d0c941ea1b35db3e7960c18a641bfffffffffffffffb47020752f97204f91bffffffffffffffffd905039f1b427b7bfd5fda1f03415fff47d9987e5a40db1112ff", + "cborBytes": [ + 191, 27, 137, 24, 154, 137, 208, 201, 65, 234, 27, 53, 219, 62, 121, 96, 193, 138, 100, 27, 255, 255, 255, 255, + 255, 255, 255, 251, 71, 2, 7, 82, 249, 114, 4, 249, 27, 255, 255, 255, 255, 255, 255, 255, 255, 217, 5, 3, 159, + 27, 66, 123, 123, 253, 95, 218, 31, 3, 65, 95, 255, 71, 217, 152, 126, 90, 64, 219, 17, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3537, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cb538de977541978e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1eceb7523250a8fc6ef4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6027271711676761357" + } + } + ] + } + } + ] + }, + "cborHex": "bf490cb538de977541978e9f4a1eceb7523250a8fc6ef41b53a52bb01b41050dffff", + "cborBytes": [ + 191, 73, 12, 181, 56, 222, 151, 117, 65, 151, 142, 159, 74, 30, 206, 183, 82, 50, 80, 168, 252, 110, 244, 27, 83, + 165, 43, 176, 27, 65, 5, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3538, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7440220663558699595" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "480117544133953683" + } + } + ] + }, + "cborHex": "d9050d9f1b6740f94605effa4b1b06a9b85cd4898893ff", + "cborBytes": [217, 5, 13, 159, 27, 103, 64, 249, 70, 5, 239, 250, 75, 27, 6, 169, 184, 92, 212, 137, 136, 147, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3539, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4663258865345229397" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2da647b812a295d16207" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1805766535180181865" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9ff06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7ae3b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a205" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e9b5b297963001471dec" + }, + { + "_tag": "ByteArray", + "bytearray": "529527" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14646523127504193635" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "d8669f1b40b7393b2497f2559fbf4a2da647b812a295d162071b190f5f18acb3e169ffbf43f9ff0643d7ae3b42fc0742a205ff4ae9b5b297963001471dec43529527d8669f1bcb42e72f116e48639fa080ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 64, 183, 57, 59, 36, 151, 242, 85, 159, 191, 74, 45, 166, 71, 184, 18, 162, 149, 209, 98, 7, + 27, 25, 15, 95, 24, 172, 179, 225, 105, 255, 191, 67, 249, 255, 6, 67, 215, 174, 59, 66, 252, 7, 66, 162, 5, 255, + 74, 233, 181, 178, 151, 150, 48, 1, 71, 29, 236, 67, 82, 149, 39, 216, 102, 159, 27, 203, 66, 231, 47, 17, 110, + 72, 99, 159, 160, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3540, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11672361883008524915" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11767764336654361570" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ef9d2d4d7713df7b98" + }, + { + "_tag": "ByteArray", + "bytearray": "49a40f5916" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9494201312936644801" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "493649d3b66f4c" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "1fae" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11892023143406020602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13340151698142540059" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16327679993671483993" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8323444523363053384" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7ce74244cfe4e3a0af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "863503208921703057" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11578254371289783065" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14671963188202565491" + } + } + ] + } + ] + }, + "cborHex": "d8669f1ba1fc8f4a2e8862739fd8669f1ba34f7f50decb23e29f49ef9d2d4d7713df7b984549a40f5916ffffd8669f1b83c22dcaaba2d0c19f9f47493649d3b66f4cff80421faed8669f1ba508f40ad370a7fa9f1bb921bd4a519c311b1be29792724d0a8259ffff1b7382d0b1cab9af48ffff497ce74244cfe4e3a0af1b0bfbc797ee302291d8669f1ba0ae3901a7d75b199fa0a01bcb9d48c8c66bef73ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 161, 252, 143, 74, 46, 136, 98, 115, 159, 216, 102, 159, 27, 163, 79, 127, 80, 222, 203, 35, + 226, 159, 73, 239, 157, 45, 77, 119, 19, 223, 123, 152, 69, 73, 164, 15, 89, 22, 255, 255, 216, 102, 159, 27, 131, + 194, 45, 202, 171, 162, 208, 193, 159, 159, 71, 73, 54, 73, 211, 182, 111, 76, 255, 128, 66, 31, 174, 216, 102, + 159, 27, 165, 8, 244, 10, 211, 112, 167, 250, 159, 27, 185, 33, 189, 74, 81, 156, 49, 27, 27, 226, 151, 146, 114, + 77, 10, 130, 89, 255, 255, 27, 115, 130, 208, 177, 202, 185, 175, 72, 255, 255, 73, 124, 231, 66, 68, 207, 228, + 227, 160, 175, 27, 11, 251, 199, 151, 238, 48, 34, 145, 216, 102, 159, 27, 160, 174, 57, 1, 167, 215, 91, 25, 159, + 160, 160, 27, 203, 157, 72, 200, 198, 107, 239, 115, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3541, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17834944693574846688" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1ecb43d08d08f592e4486c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15045431438405056432" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2c5b101b211a0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb1217143cb8ba2157626d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6158768556702455433" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bf78273b4894448e09f4b1ecb43d08d08f592e4486cbf061bd0cc1c2ddaa0b7b00a47b2c5b101b211a00f4bfb1217143cb8ba2157626d1b5578575f2c1856891bfffffffffffffff9ffffff", + "cborBytes": [ + 216, 102, 159, 27, 247, 130, 115, 180, 137, 68, 72, 224, 159, 75, 30, 203, 67, 208, 141, 8, 245, 146, 228, 72, + 108, 191, 6, 27, 208, 204, 28, 45, 218, 160, 183, 176, 10, 71, 178, 197, 177, 1, 178, 17, 160, 15, 75, 251, 18, + 23, 20, 60, 184, 186, 33, 87, 98, 109, 27, 85, 120, 87, 95, 44, 24, 86, 137, 27, 255, 255, 255, 255, 255, 255, + 255, 249, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3542, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16932268957678136184" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "75" + } + ] + }, + "cborHex": "d8669f1beafb80e7efc76b789f4175ffff", + "cborBytes": [216, 102, 159, 27, 234, 251, 128, 231, 239, 199, 107, 120, 159, 65, 117, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3543, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13698505320186286787" + } + }, + "cborHex": "1bbe1ade02cb8092c3", + "cborBytes": [27, 190, 26, 222, 2, 203, 128, 146, 195], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3544, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11620066126628935415" + } + }, + "cborHex": "1ba142c493904456f7", + "cborBytes": [27, 161, 66, 196, 147, 144, 68, 86, 247], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3545, + "sample": { + "_tag": "ByteArray", + "bytearray": "5c4d32208abad1506af6" + }, + "cborHex": "4a5c4d32208abad1506af6", + "cborBytes": [74, 92, 77, 50, 32, 138, 186, 209, 80, 106, 246], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3546, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13441895476126604865" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15137796191659294336" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2350711803647780548" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0d985c0ec9ba5d9f6c8a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5cfd" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3a1935e5f35f928cf84a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5634600068699261114" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4011529491530593550" + } + } + ] + }, + "cborHex": "d8669f1bba8b34b7a274de419fa01bd214416ece1cfe80d8669f1b209f67ee49be66c49f4a0d985c0ec9ba5d9f6c8a9f425cfdff4a3a1935e5f35f928cf84a1b4e321ee8ba3608baffff1b37abd0d18caf350effff", + "cborBytes": [ + 216, 102, 159, 27, 186, 139, 52, 183, 162, 116, 222, 65, 159, 160, 27, 210, 20, 65, 110, 206, 28, 254, 128, 216, + 102, 159, 27, 32, 159, 103, 238, 73, 190, 102, 196, 159, 74, 13, 152, 92, 14, 201, 186, 93, 159, 108, 138, 159, + 66, 92, 253, 255, 74, 58, 25, 53, 229, 243, 95, 146, 140, 248, 74, 27, 78, 50, 30, 232, 186, 54, 8, 186, 255, 255, + 27, 55, 171, 208, 209, 140, 175, 53, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3547, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13523268372406550228" + } + }, + "cborHex": "1bbbac4cef73913ed4", + "cborBytes": [27, 187, 172, 76, 239, 115, 145, 62, 212], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3548, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1687087478024351791" + }, + "fields": [] + } + ] + }, + "cborHex": "d905039fd8669f1b1769bd1f68a6b02f80ffff", + "cborBytes": [217, 5, 3, 159, 216, 102, 159, 27, 23, 105, 189, 31, 104, 166, 176, 47, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3549, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7827023788362376362" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0102" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "003d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7b301360530ca06" + } + } + ] + }, + "cborHex": "bf1b6c9f2caa89df24aa42010242003d48e7b301360530ca06ff", + "cborBytes": [ + 191, 27, 108, 159, 44, 170, 137, 223, 36, 170, 66, 1, 2, 66, 0, 61, 72, 231, 179, 1, 54, 5, 48, 202, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3550, + "sample": { + "_tag": "ByteArray", + "bytearray": "ceeb96" + }, + "cborHex": "43ceeb96", + "cborBytes": [67, 206, 235, 150], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3551, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16615183365887094676" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15688555959074455638" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1172268712399875436" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11528026181473744192" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1254833300490068075" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16901697281975452002" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8322800917942640322" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17013630415034216507" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17552831303687042775" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5091911455618278835" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6228187673453071231" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1192030474553096903" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1732161286464491681" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bbe23f1b4456" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9648050790523174620" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b68d2435fb34" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11b854c348755c54df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7427078073223246300" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8637bdf8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4365c610a0ab07c417" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7849545dede" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9942790258186331374" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc36635a97de3b5d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17473234675080983482" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dce034c656cfadbf07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1779009866764724090" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3101906844632851985" + } + } + ] + }, + "cborHex": "9fd8669f1be694fd3d81adef949f1bd9b8f285f3788056bf1b1044bc2ed7e62d6c1b9ffbc6bbe42535401b116a103d080aa06b1bea8ee421015501621b73808756ba441ec21bec1c8eb86be5703b1bf3982f12629f76d71b46aa1a7da3dea5b3ffd8669f1b566ef7b0cea30b7f9f1b108af166a52d7ac71b1809df833d6650a146bbe23f1b44561b85e4c313900f7edcffffffff46b68d2435fb34bf4911b854c348755c54df1b67124828419071dc448637bdf8494365c610a0ab07c41746a7849545dede1b89fbe30f876924ee48cc36635a97de3b5d1bf27d665c1d3d73ba49dce034c656cfadbf071b18b0500c586d277aff1b2b0c2fd730b1a611ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 230, 148, 253, 61, 129, 173, 239, 148, 159, 27, 217, 184, 242, 133, 243, 120, 128, 86, + 191, 27, 16, 68, 188, 46, 215, 230, 45, 108, 27, 159, 251, 198, 187, 228, 37, 53, 64, 27, 17, 106, 16, 61, 8, 10, + 160, 107, 27, 234, 142, 228, 33, 1, 85, 1, 98, 27, 115, 128, 135, 86, 186, 68, 30, 194, 27, 236, 28, 142, 184, + 107, 229, 112, 59, 27, 243, 152, 47, 18, 98, 159, 118, 215, 27, 70, 170, 26, 125, 163, 222, 165, 179, 255, 216, + 102, 159, 27, 86, 110, 247, 176, 206, 163, 11, 127, 159, 27, 16, 138, 241, 102, 165, 45, 122, 199, 27, 24, 9, 223, + 131, 61, 102, 80, 161, 70, 187, 226, 63, 27, 68, 86, 27, 133, 228, 195, 19, 144, 15, 126, 220, 255, 255, 255, 255, + 70, 182, 141, 36, 53, 251, 52, 191, 73, 17, 184, 84, 195, 72, 117, 92, 84, 223, 27, 103, 18, 72, 40, 65, 144, 113, + 220, 68, 134, 55, 189, 248, 73, 67, 101, 198, 16, 160, 171, 7, 196, 23, 70, 167, 132, 149, 69, 222, 222, 27, 137, + 251, 227, 15, 135, 105, 36, 238, 72, 204, 54, 99, 90, 151, 222, 59, 93, 27, 242, 125, 102, 92, 29, 61, 115, 186, + 73, 220, 224, 52, 198, 86, 207, 173, 191, 7, 27, 24, 176, 80, 12, 88, 109, 39, 122, 255, 27, 43, 12, 47, 215, 48, + 177, 166, 17, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3552, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "25fba08fd9d0fefe414d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03fcbdfe02ff0502" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa0302fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d85" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "725b13aef3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cbfa0af3956d7b1f7d30abd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f904" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d37797f6" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a25fba08fd9d0fefe414dbf4803fcbdfe02ff050244fa0302fd415f424d8545725b13aef30a4c7cbfa0af3956d7b1f7d30abd410d42f90444d37797f6ffff", + "cborBytes": [ + 191, 74, 37, 251, 160, 143, 217, 208, 254, 254, 65, 77, 191, 72, 3, 252, 189, 254, 2, 255, 5, 2, 68, 250, 3, 2, + 253, 65, 95, 66, 77, 133, 69, 114, 91, 19, 174, 243, 10, 76, 124, 191, 160, 175, 57, 86, 215, 177, 247, 211, 10, + 189, 65, 13, 66, 249, 4, 68, 211, 119, 151, 246, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3553, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7661932997901034446" + }, + "fields": [] + }, + "cborHex": "d8669f1b6a54a77788bc23ce80ff", + "cborBytes": [216, 102, 159, 27, 106, 84, 167, 119, 136, 188, 35, 206, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3554, + "sample": { + "_tag": "ByteArray", + "bytearray": "51" + }, + "cborHex": "4151", + "cborBytes": [65, 81], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3555, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1731120439211178668" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "811703003855360211" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14661749504532193662" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7575675776009121501" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6701670803001708909" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10297659857235394399" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "501006" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11870655277903688017" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "707686dd37" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "436d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f2babc8c28832fa" + } + } + ] + }, + "cborHex": "bf1b18062cde1a99baacbf1b0b43bf94d7ea90d31bcb78ff7e3b66a17e1b692234fb0a8e2edd1b5d011e169e86116d1b8ee8a314b050bf5f435010061ba4bd0a14f290b15145707686dd37ff42436d485f2babc8c28832faff", + "cborBytes": [ + 191, 27, 24, 6, 44, 222, 26, 153, 186, 172, 191, 27, 11, 67, 191, 148, 215, 234, 144, 211, 27, 203, 120, 255, 126, + 59, 102, 161, 126, 27, 105, 34, 52, 251, 10, 142, 46, 221, 27, 93, 1, 30, 22, 158, 134, 17, 109, 27, 142, 232, + 163, 20, 176, 80, 191, 95, 67, 80, 16, 6, 27, 164, 189, 10, 20, 242, 144, 177, 81, 69, 112, 118, 134, 221, 55, + 255, 66, 67, 109, 72, 95, 43, 171, 200, 194, 136, 50, 250, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3556, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e8b62efa4115" + }, + { + "_tag": "ByteArray", + "bytearray": "e4089743be" + } + ] + } + ] + }, + "cborHex": "9f9f46e8b62efa411545e4089743beffff", + "cborBytes": [159, 159, 70, 232, 182, 46, 250, 65, 21, 69, 228, 8, 151, 67, 190, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3557, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02d3fd" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f4302d3fd80ff", + "cborBytes": [159, 67, 2, 211, 253, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3558, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14129064511381381614" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6853427593400874211" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1024955936576703159" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1925385574289129185" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13494344547251843241" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e15aa28" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3934175114570583260" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10699535506109665077" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7135581436562480878" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12505409533996171856" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17843823901016063500" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe7259c0bfcaf6964d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "553175508396792527" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13851365175147867058" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5c3737cd8ce94f58c72" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f750fb01a931080" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8ff87337d7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2375fb9c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01105fd7bde797e2a427" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b1e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23ec5f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b887e6670cdf95ab7d0b9f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0aeee7" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7145421551254896755" + } + }, + { + "_tag": "ByteArray", + "bytearray": "79b03e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18076015289985691481" + } + } + ] + }, + "cborHex": "9fd8669f1bc4148550697721ee9f1b5f1c4415ce84f4e3d8669f1b0e395ffe6e150ab79f1b1ab857fa8b2a3ee11bbb458ade9facf0a9449e15aa281b3698ff6c2c294cdcffffffff80bf1b947c62daaf588f351b6306ad82b82d9eee1bad8c23b6f4a002501bf7a1ff4c1eaffe0c49fe7259c0bfcaf6964d1b07ad4631ac6fdacfffd8669f1bc039ef3d36e7abb29fbf4af5c3737cd8ce94f58c72489f750fb01a931080ff458ff87337d7bf442375fb9c4a01105fd7bde797e2a427424b1e4323ec5f4bb887e6670cdf95ab7d0b9f430aeee7ff1b6329a30af4f800734379b03effff1bfadae822aa206f59ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 196, 20, 133, 80, 105, 119, 33, 238, 159, 27, 95, 28, 68, 21, 206, 132, 244, 227, 216, + 102, 159, 27, 14, 57, 95, 254, 110, 21, 10, 183, 159, 27, 26, 184, 87, 250, 139, 42, 62, 225, 27, 187, 69, 138, + 222, 159, 172, 240, 169, 68, 158, 21, 170, 40, 27, 54, 152, 255, 108, 44, 41, 76, 220, 255, 255, 255, 255, 128, + 191, 27, 148, 124, 98, 218, 175, 88, 143, 53, 27, 99, 6, 173, 130, 184, 45, 158, 238, 27, 173, 140, 35, 182, 244, + 160, 2, 80, 27, 247, 161, 255, 76, 30, 175, 254, 12, 73, 254, 114, 89, 192, 191, 202, 246, 150, 77, 27, 7, 173, + 70, 49, 172, 111, 218, 207, 255, 216, 102, 159, 27, 192, 57, 239, 61, 54, 231, 171, 178, 159, 191, 74, 245, 195, + 115, 124, 216, 206, 148, 245, 140, 114, 72, 159, 117, 15, 176, 26, 147, 16, 128, 255, 69, 143, 248, 115, 55, 215, + 191, 68, 35, 117, 251, 156, 74, 1, 16, 95, 215, 189, 231, 151, 226, 164, 39, 66, 75, 30, 67, 35, 236, 95, 75, 184, + 135, 230, 103, 12, 223, 149, 171, 125, 11, 159, 67, 10, 238, 231, 255, 27, 99, 41, 163, 10, 244, 248, 0, 115, 67, + 121, 176, 62, 255, 255, 27, 250, 218, 232, 34, 170, 32, 111, 89, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3559, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2b2ee61ff471e83432f1d" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4bc2b2ee61ff471e83432f1da0ff", + "cborBytes": [191, 75, 194, 178, 238, 97, 255, 71, 30, 131, 67, 47, 29, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3560, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8372917368427946269" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "db0f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3739503003002391593" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "641b700fcc74a71223" + }, + { + "_tag": "ByteArray", + "bytearray": "45" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13006454509461428922" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9672285508011187959" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05b9063507aa2f72e3" + } + ] + }, + "cborHex": "d8669f1b743293fc26d8a11d9f42db0fd8669f1b33e5622b2276cc299f49641b700fcc74a712234145ffff1bb480357717b9dabad8669f1b863adc6c6f2a5ef79fa0ffff4905b9063507aa2f72e3ffff", + "cborBytes": [ + 216, 102, 159, 27, 116, 50, 147, 252, 38, 216, 161, 29, 159, 66, 219, 15, 216, 102, 159, 27, 51, 229, 98, 43, 34, + 118, 204, 41, 159, 73, 100, 27, 112, 15, 204, 116, 167, 18, 35, 65, 69, 255, 255, 27, 180, 128, 53, 119, 23, 185, + 218, 186, 216, 102, 159, 27, 134, 58, 220, 108, 111, 42, 94, 247, 159, 160, 255, 255, 73, 5, 185, 6, 53, 7, 170, + 47, 114, 227, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3561, + "sample": { + "_tag": "ByteArray", + "bytearray": "1b3c20cd0c63c2b7442a1e" + }, + "cborHex": "4b1b3c20cd0c63c2b7442a1e", + "cborBytes": [75, 27, 60, 32, 205, 12, 99, 194, 183, 68, 42, 30], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3562, + "sample": { + "_tag": "ByteArray", + "bytearray": "3e" + }, + "cborHex": "413e", + "cborBytes": [65, 62], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3563, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd03fd" + }, + "cborHex": "43fd03fd", + "cborBytes": [67, 253, 3, 253], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3564, + "sample": { + "_tag": "ByteArray", + "bytearray": "a1060401fd2dad7204012c" + }, + "cborHex": "4ba1060401fd2dad7204012c", + "cborBytes": [75, 161, 6, 4, 1, 253, 45, 173, 114, 4, 1, 44], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3565, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4142051640496902571" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a4c149" + }, + { + "_tag": "ByteArray", + "bytearray": "1ad17c44c5e002b18af01bdb" + }, + { + "_tag": "ByteArray", + "bytearray": "6a043c58760cd997de6e59" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7664189826027986622" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2796ebfdd919d98e93a4d900" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f0d48d46ce809028a87" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9632757455674057226" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5334" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3361968473889259307" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "604f6302dad2ff1112c992be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bed05ff03ccbc7a349c887b7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c43e53c2b72a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "caa8538b446f2a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6fa3d2449be0629" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2841940404516418263" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10548526725786139941" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53703a12a613fb39" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13556609659623461380" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6121096869963351577" + } + } + } + ] + }, + "cborHex": "bf1b397b8605812451ab9f43a4c1494c1ad17c44c5e002b18af01bdb4b6a043c58760cd997de6e59ff1b6a5cac0a478f9ebebf4c2796ebfdd919d98e93a4d90041c94a4f0d48d46ce809028a871b85ae6dde90f2a20a4253341b2ea81c83b83b3f2b4c604f6302dad2ff1112c992be4cbed05ff03ccbc7a349c887b7479c43e53c2b72a147caa8538b446f2a48f6fa3d2449be06291b277099bd9c07f2d7ff1b9263e52b2a327d254853703a12a613fb391bbc22c0a8d07c52041b54f2812c19ebc619ff", + "cborBytes": [ + 191, 27, 57, 123, 134, 5, 129, 36, 81, 171, 159, 67, 164, 193, 73, 76, 26, 209, 124, 68, 197, 224, 2, 177, 138, + 240, 27, 219, 75, 106, 4, 60, 88, 118, 12, 217, 151, 222, 110, 89, 255, 27, 106, 92, 172, 10, 71, 143, 158, 190, + 191, 76, 39, 150, 235, 253, 217, 25, 217, 142, 147, 164, 217, 0, 65, 201, 74, 79, 13, 72, 212, 108, 232, 9, 2, + 138, 135, 27, 133, 174, 109, 222, 144, 242, 162, 10, 66, 83, 52, 27, 46, 168, 28, 131, 184, 59, 63, 43, 76, 96, + 79, 99, 2, 218, 210, 255, 17, 18, 201, 146, 190, 76, 190, 208, 95, 240, 60, 203, 199, 163, 73, 200, 135, 183, 71, + 156, 67, 229, 60, 43, 114, 161, 71, 202, 168, 83, 139, 68, 111, 42, 72, 246, 250, 61, 36, 73, 190, 6, 41, 27, 39, + 112, 153, 189, 156, 7, 242, 215, 255, 27, 146, 99, 229, 43, 42, 50, 125, 37, 72, 83, 112, 58, 18, 166, 19, 251, + 57, 27, 188, 34, 192, 168, 208, 124, 82, 4, 27, 84, 242, 129, 44, 25, 235, 198, 25, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3566, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12165023914067650480" + } + } + ] + }, + "cborHex": "9f801ba8d2d8cbfa2267b0ff", + "cborBytes": [159, 128, 27, 168, 210, 216, 203, 250, 34, 103, 176, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3567, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17973335907363213979" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16660869249419225888" + } + } + ] + }, + "cborHex": "d8669f1bf96e1dc7eb28529b9f1be7374c4f2cdcab20ffff", + "cborBytes": [ + 216, 102, 159, 27, 249, 110, 29, 199, 235, 40, 82, 155, 159, 27, 231, 55, 76, 79, 44, 220, 171, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3568, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14155684023368825398" + } + }, + "cborHex": "1bc473179e85923a36", + "cborBytes": [27, 196, 115, 23, 158, 133, 146, 58, 54], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3569, + "sample": { + "_tag": "ByteArray", + "bytearray": "6b025b030405" + }, + "cborHex": "466b025b030405", + "cborBytes": [70, 107, 2, 91, 3, 4, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3570, + "sample": { + "_tag": "ByteArray", + "bytearray": "f804221b337029e2" + }, + "cborHex": "48f804221b337029e2", + "cborBytes": [72, 248, 4, 34, 27, 51, 112, 41, 226], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3571, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "44325d551f88e20c36588ae1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17875301368591055953" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "691633cd63" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdf3e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9895971667369048730" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa68acb5a3dcf489" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "268743013063037730" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17764578191747269153" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4729291700160768072" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07753777fe67ec01e57f2cbc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99f6ae2e0d1ac94b6c27f2a6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e94b51d230b9bc8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15112137311973899780" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5099" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14368892919253977805" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7b6210fa73bb9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a21010d6" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6091354094763790453" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905009f9fbf4c44325d551f88e20c36588ae11bf811d3e327ec7c5145691633cd63419543bdf3e81b89558dcce4dcba9a48fa68acb5a3dcf4891b03bac458b57d9322ff9f1bf68875be9fbf42211b41a1d1be93492848ffffbf4c07753777fe67ec01e57f2cbc4c99f6ae2e0d1ac94b6c27f2a6480e94b51d230b9bc81bd1b918d155217e044250991bc7688ffafbc24acd47b7b6210fa73bb944a21010d6ff1b5488d6469b84507580ff", + "cborBytes": [ + 217, 5, 0, 159, 159, 191, 76, 68, 50, 93, 85, 31, 136, 226, 12, 54, 88, 138, 225, 27, 248, 17, 211, 227, 39, 236, + 124, 81, 69, 105, 22, 51, 205, 99, 65, 149, 67, 189, 243, 232, 27, 137, 85, 141, 204, 228, 220, 186, 154, 72, 250, + 104, 172, 181, 163, 220, 244, 137, 27, 3, 186, 196, 88, 181, 125, 147, 34, 255, 159, 27, 246, 136, 117, 190, 159, + 191, 66, 33, 27, 65, 161, 209, 190, 147, 73, 40, 72, 255, 255, 191, 76, 7, 117, 55, 119, 254, 103, 236, 1, 229, + 127, 44, 188, 76, 153, 246, 174, 46, 13, 26, 201, 75, 108, 39, 242, 166, 72, 14, 148, 181, 29, 35, 11, 155, 200, + 27, 209, 185, 24, 209, 85, 33, 126, 4, 66, 80, 153, 27, 199, 104, 143, 250, 251, 194, 74, 205, 71, 183, 182, 33, + 15, 167, 59, 185, 68, 162, 16, 16, 214, 255, 27, 84, 136, 214, 70, 155, 132, 80, 117, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3572, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d905039f80ff", + "cborBytes": [217, 5, 3, 159, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3573, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "92177d625dd4eb" + }, + { + "_tag": "ByteArray", + "bytearray": "4ae5b1" + }, + { + "_tag": "ByteArray", + "bytearray": "7b8296" + }, + { + "_tag": "ByteArray", + "bytearray": "8e" + } + ] + }, + "cborHex": "9f4792177d625dd4eb434ae5b1437b8296418eff", + "cborBytes": [159, 71, 146, 23, 125, 98, 93, 212, 235, 67, 74, 229, 177, 67, 123, 130, 150, 65, 142, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3574, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8e93cf9a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10268592736980639087" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15943540863254675031" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4407" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12085397886603134345" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f80448e93cf9a1b8e815eb05ee31d6f9f9f1bdd42d5f150383e574244071ba7b7f558c03c8589ffd9050080ffff", + "cborBytes": [ + 159, 128, 68, 142, 147, 207, 154, 27, 142, 129, 94, 176, 94, 227, 29, 111, 159, 159, 27, 221, 66, 213, 241, 80, + 56, 62, 87, 66, 68, 7, 27, 167, 183, 245, 88, 192, 60, 133, 137, 255, 217, 5, 0, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3575, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16449089900388093523" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7986109839582353505" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10c07a7340c11da066" + } + } + ] + } + ] + }, + "cborHex": "d8669f1be446e81d07190e539fbf1b6ed45c963d8ed8614910c07a7340c11da066ffffff", + "cborBytes": [ + 216, 102, 159, 27, 228, 70, 232, 29, 7, 25, 14, 83, 159, 191, 27, 110, 212, 92, 150, 61, 142, 216, 97, 73, 16, + 192, 122, 115, 64, 193, 29, 160, 102, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3576, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3308fc285020ee0985161a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "151b367531" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b307" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "edd3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "562d6f9f05" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b3308fc285020ee0985161a9f45151b367531ff42b307bf42edd345562d6f9f05ffff", + "cborBytes": [ + 191, 75, 51, 8, 252, 40, 80, 32, 238, 9, 133, 22, 26, 159, 69, 21, 27, 54, 117, 49, 255, 66, 179, 7, 191, 66, 237, + 211, 69, 86, 45, 111, 159, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3577, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8909413771962600164" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13614883725837767585" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16308937246316622538" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "53aec3ea7048364dc526" + } + ] + }, + "cborHex": "d8669f1b7ba4989f1acdcae49fd8669f1bbcf1c89d28ce93a19fd8669f1be254fc045ed6f2ca80ffffff4a53aec3ea7048364dc526ffff", + "cborBytes": [ + 216, 102, 159, 27, 123, 164, 152, 159, 26, 205, 202, 228, 159, 216, 102, 159, 27, 188, 241, 200, 157, 40, 206, + 147, 161, 159, 216, 102, 159, 27, 226, 84, 252, 4, 94, 214, 242, 202, 128, 255, 255, 255, 74, 83, 174, 195, 234, + 112, 72, 54, 77, 197, 38, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3578, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4414970144303945022" + } + }, + { + "_tag": "ByteArray", + "bytearray": "230c661275e175c4" + } + ] + }, + "cborHex": "9f1b3d451ff46931153e48230c661275e175c4ff", + "cborBytes": [159, 27, 61, 69, 31, 244, 105, 49, 21, 62, 72, 35, 12, 102, 18, 117, 225, 117, 196, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3579, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "105517972961631291" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13164080620586562356" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2376320483416398134" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a951f3e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5491346649585658429" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e03edbd920" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15028208625123174279" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1df20cde94fba8c76f72136e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16241206935271593244" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1682431487405702058" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0aac6dfa065f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5121211154179153937" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13294845872918676511" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10872071316311915487" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13999699304354691420" + } + }, + { + "_tag": "ByteArray", + "bytearray": "305bb64cbe7f4c6d72e5ac" + }, + { + "_tag": "ByteArray", + "bytearray": "d4dfc9fdc8" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fbf1b0176e0098fcc1c3b1bb6b0359400aa73341b20fa62e3ae84d936445a951f3e1b4c352eaef315aa3d45e03edbd9201bd08eec1f26eda7874c1df20cde94fba8c76f72136e1be1645ba87479551c1b175932861dbfbbaaff9fbf460aac6dfa065f4156ffff1b47123269509de011d8669f1bb880c7e1dee2c41f9fa0ffff9f1b96e15b426d7c3bdf1bc248ec57fe58395c4b305bb64cbe7f4c6d72e5ac45d4dfc9fdc8a0ffff", + "cborBytes": [ + 159, 191, 27, 1, 118, 224, 9, 143, 204, 28, 59, 27, 182, 176, 53, 148, 0, 170, 115, 52, 27, 32, 250, 98, 227, 174, + 132, 217, 54, 68, 90, 149, 31, 62, 27, 76, 53, 46, 174, 243, 21, 170, 61, 69, 224, 62, 219, 217, 32, 27, 208, 142, + 236, 31, 38, 237, 167, 135, 76, 29, 242, 12, 222, 148, 251, 168, 199, 111, 114, 19, 110, 27, 225, 100, 91, 168, + 116, 121, 85, 28, 27, 23, 89, 50, 134, 29, 191, 187, 170, 255, 159, 191, 70, 10, 172, 109, 250, 6, 95, 65, 86, + 255, 255, 27, 71, 18, 50, 105, 80, 157, 224, 17, 216, 102, 159, 27, 184, 128, 199, 225, 222, 226, 196, 31, 159, + 160, 255, 255, 159, 27, 150, 225, 91, 66, 109, 124, 59, 223, 27, 194, 72, 236, 87, 254, 88, 57, 92, 75, 48, 91, + 182, 76, 190, 127, 76, 109, 114, 229, 172, 69, 212, 223, 201, 253, 200, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3580, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "587ce723792341ba6c76db31" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7431938036769600709" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8ab200c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8226845476604682422" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e219699269471f0fa9" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae463f0813423a1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80f83a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be5bbe44e962" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11485009981255399021" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4042769093964061083" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03c3313e5342d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13485863734456924125" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cee5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6211f50d6ae6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8b0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8197843548356623541" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2930540520245677627" + } + }, + { + "_tag": "ByteArray", + "bytearray": "618e7688bfaec191b3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2283155718035079832" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c587ce723792341ba6c76db31bf1b67238c44b25db4c544f8ab200c1b722ba05f8f0d20b649e219699269471f0fa9ff48ae463f0813423a1d4380f83a46be5bbe44e962d8669f1b9f62f3ba4e8b366d9f1b381acd124aa7d99b4703c3313e5342d31bbb27699d85a0b7ddffff42cee5466211f50d6ae642d8b0d8669f1b71c49745f0063cb59f1b28ab5f139521ce3b49618e7688bfaec191b31b1faf660764620298ffffff", + "cborBytes": [ + 191, 76, 88, 124, 231, 35, 121, 35, 65, 186, 108, 118, 219, 49, 191, 27, 103, 35, 140, 68, 178, 93, 180, 197, 68, + 248, 171, 32, 12, 27, 114, 43, 160, 95, 143, 13, 32, 182, 73, 226, 25, 105, 146, 105, 71, 31, 15, 169, 255, 72, + 174, 70, 63, 8, 19, 66, 58, 29, 67, 128, 248, 58, 70, 190, 91, 190, 68, 233, 98, 216, 102, 159, 27, 159, 98, 243, + 186, 78, 139, 54, 109, 159, 27, 56, 26, 205, 18, 74, 167, 217, 155, 71, 3, 195, 49, 62, 83, 66, 211, 27, 187, 39, + 105, 157, 133, 160, 183, 221, 255, 255, 66, 206, 229, 70, 98, 17, 245, 13, 106, 230, 66, 216, 176, 216, 102, 159, + 27, 113, 196, 151, 69, 240, 6, 60, 181, 159, 27, 40, 171, 95, 19, 149, 33, 206, 59, 73, 97, 142, 118, 136, 191, + 174, 193, 145, 179, 27, 31, 175, 102, 7, 100, 98, 2, 152, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3581, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c08" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8161495823647451060" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bbd47351a6f5b46557e22e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b85de127120bd00d6c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6921774989861842451" + } + } + } + ] + }, + "cborHex": "bf422c08d8669f1b71437535cc5727b49f4bbbd47351a6f5b46557e22effff4a8b85de127120bd00d6c5417341fb1b600f15ae1de5ee13ff", + "cborBytes": [ + 191, 66, 44, 8, 216, 102, 159, 27, 113, 67, 117, 53, 204, 87, 39, 180, 159, 75, 187, 212, 115, 81, 166, 245, 180, + 101, 87, 226, 46, 255, 255, 74, 139, 133, 222, 18, 113, 32, 189, 0, 214, 197, 65, 115, 65, 251, 27, 96, 15, 21, + 174, 29, 229, 238, 19, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3582, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3487024350910525782" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16853955972667660816" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9171478850770717745" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7093239155342702944" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8544b53d8a9d665be873" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "93603383044979509" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13518453224559255753" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1186099167684901558" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7799914995312437284" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2304499460915355577" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3399" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3752114088262500000" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3595899400349161531" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8663331435959990780" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ff5cc1383966b6228" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12754395102964437019" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14284656806730243852" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0586c3350c9ff34b7d" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e81fc86531da2a11" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6732bb47db10716441c0ce9" + } + } + ] + }, + "cborHex": "bf1b3064662c0f28b156d8669f1be9e547a93aedda109f1b7f47a36c15324c311b62703f6e2117f9604a8544b53d8a9d665be8731b014c8bc7ec2bbb35ffff1bbb9b31957a96a0c9bf1b1075dee8a63ebab61b6c3edd5ccdd728241b1ffb3a0cc8f05fb94233991b34122fe23b9ffea01b31e73373e5da183b1b783a560a6bdeb9fc496ff5cc1383966b62281bb100b6c53d2d501b41481bc63d4baeaf859f0c490586c3350c9ff34b7dff48e81fc86531da2a114cb6732bb47db10716441c0ce9ff", + "cborBytes": [ + 191, 27, 48, 100, 102, 44, 15, 40, 177, 86, 216, 102, 159, 27, 233, 229, 71, 169, 58, 237, 218, 16, 159, 27, 127, + 71, 163, 108, 21, 50, 76, 49, 27, 98, 112, 63, 110, 33, 23, 249, 96, 74, 133, 68, 181, 61, 138, 157, 102, 91, 232, + 115, 27, 1, 76, 139, 199, 236, 43, 187, 53, 255, 255, 27, 187, 155, 49, 149, 122, 150, 160, 201, 191, 27, 16, 117, + 222, 232, 166, 62, 186, 182, 27, 108, 62, 221, 92, 205, 215, 40, 36, 27, 31, 251, 58, 12, 200, 240, 95, 185, 66, + 51, 153, 27, 52, 18, 47, 226, 59, 159, 254, 160, 27, 49, 231, 51, 115, 229, 218, 24, 59, 27, 120, 58, 86, 10, 107, + 222, 185, 252, 73, 111, 245, 204, 19, 131, 150, 107, 98, 40, 27, 177, 0, 182, 197, 61, 45, 80, 27, 65, 72, 27, + 198, 61, 75, 174, 175, 133, 159, 12, 73, 5, 134, 195, 53, 12, 159, 243, 75, 125, 255, 72, 232, 31, 200, 101, 49, + 218, 42, 17, 76, 182, 115, 43, 180, 125, 177, 7, 22, 68, 28, 12, 233, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3583, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f00abd4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f589f870ec0d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3150241581302555322" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f65d06a0bef94ba4a26e" + }, + { + "_tag": "ByteArray", + "bytearray": "b6245d958a88d6ca9d458f0a" + }, + { + "_tag": "ByteArray", + "bytearray": "b5f19468812411587f497f09" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0f4e4b3c4a6714f73309769" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bdcb5b3fffc81f" + }, + { + "_tag": "ByteArray", + "bytearray": "00f6b116a59cda382c4c" + }, + { + "_tag": "ByteArray", + "bytearray": "2975c249c4bebdc8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2625643607518740024" + } + } + ] + } + } + ] + }, + "cborHex": "bf444f00abd4d8669f1bffffffffffffffee9f46f589f870ec0d1b2bb7e8070a3422ba4af65d06a0bef94ba4a26e4cb6245d958a88d6ca9d458f0a4cb5f19468812411587f497f09ffff4ca0f4e4b3c4a6714f733097699f47bdcb5b3fffc81f4a00f6b116a59cda382c4c482975c249c4bebdc81b247028f324edfe38ffff", + "cborBytes": [ + 191, 68, 79, 0, 171, 212, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 70, 245, 137, 248, 112, + 236, 13, 27, 43, 183, 232, 7, 10, 52, 34, 186, 74, 246, 93, 6, 160, 190, 249, 75, 164, 162, 110, 76, 182, 36, 93, + 149, 138, 136, 214, 202, 157, 69, 143, 10, 76, 181, 241, 148, 104, 129, 36, 17, 88, 127, 73, 127, 9, 255, 255, 76, + 160, 244, 228, 179, 196, 166, 113, 79, 115, 48, 151, 105, 159, 71, 189, 203, 91, 63, 255, 200, 31, 74, 0, 246, + 177, 22, 165, 156, 218, 56, 44, 76, 72, 41, 117, 194, 73, 196, 190, 189, 200, 27, 36, 112, 40, 243, 36, 237, 254, + 56, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3584, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12418319431079099369" + } + }, + "cborHex": "1bac56bbba3cccfbe9", + "cborBytes": [27, 172, 86, 187, 186, 60, 204, 251, 233], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3585, + "sample": { + "_tag": "ByteArray", + "bytearray": "2712ff7963" + }, + "cborHex": "452712ff7963", + "cborBytes": [69, 39, 18, 255, 121, 99], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3586, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1973765478318695846" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "073a1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "235ec6dbd4d248" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1976563994470339289" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12556596267107202694" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "af73434674" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2095810154257222209" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17192282932603486815" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1b64393ebd1d65a6bf43073a1d47235ec6dbd4d24842d2d9416fff1b1b6e2a7b0e3b52d9d8669f1bae41fdc6f8ebb6869f45af73434674ffff1b1d15d03b31288a419f1bee97423d13d7825fffff", + "cborBytes": [ + 191, 27, 27, 100, 57, 62, 189, 29, 101, 166, 191, 67, 7, 58, 29, 71, 35, 94, 198, 219, 212, 210, 72, 66, 210, 217, + 65, 111, 255, 27, 27, 110, 42, 123, 14, 59, 82, 217, 216, 102, 159, 27, 174, 65, 253, 198, 248, 235, 182, 134, + 159, 69, 175, 115, 67, 70, 116, 255, 255, 27, 29, 21, 208, 59, 49, 40, 138, 65, 159, 27, 238, 151, 66, 61, 19, + 215, 130, 95, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3587, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8800e4" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f438800e480ff", + "cborBytes": [159, 67, 136, 0, 228, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3588, + "sample": { + "_tag": "ByteArray", + "bytearray": "9d1211" + }, + "cborHex": "439d1211", + "cborBytes": [67, 157, 18, 17], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3589, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ef276c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16414759179243280867" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "870f91c5f0e2ee52e9" + }, + { + "_tag": "ByteArray", + "bytearray": "8192" + }, + { + "_tag": "ByteArray", + "bytearray": "b60459" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3440569254424865791" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1789324621605197269" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12079167747247135472" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6682073550248671714" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d6bb8b7d1a2770c13" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15677568953281624308" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9222962147453315452" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17526456209109348762" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a310b18826" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3027705014144444689" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8345311822875909664" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3041918458907896971" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15445164440033547450" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14332548331201354034" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ced966086347db" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15524992158796494397" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dd4" + } + } + ] + } + ] + }, + "cborHex": "9f43ef276cd8669f1be3ccf0812060d9e39f9f49870f91c5f0e2ee52e942819243b604591b2fbf5b820b1febffffbf1b18d4f5435aa355d51ba7a1d31165055af01b5cbb7e7da59af9e2496d6bb8b7d1a2770c131bd991e9e6520b38f41b7ffe8b352fd4297c1bf33a7b102366f19a45a310b18826ffffffbf1b2a0491ab3cbfa9111b73d080e33662de201b2a3710b8bae8ac8b1bd6583f39e9b1d4ba1bc6e770c5275fd93247ced966086347db1bd773da1d0dca363d422dd4ffff", + "cborBytes": [ + 159, 67, 239, 39, 108, 216, 102, 159, 27, 227, 204, 240, 129, 32, 96, 217, 227, 159, 159, 73, 135, 15, 145, 197, + 240, 226, 238, 82, 233, 66, 129, 146, 67, 182, 4, 89, 27, 47, 191, 91, 130, 11, 31, 235, 255, 255, 191, 27, 24, + 212, 245, 67, 90, 163, 85, 213, 27, 167, 161, 211, 17, 101, 5, 90, 240, 27, 92, 187, 126, 125, 165, 154, 249, 226, + 73, 109, 107, 184, 183, 209, 162, 119, 12, 19, 27, 217, 145, 233, 230, 82, 11, 56, 244, 27, 127, 254, 139, 53, 47, + 212, 41, 124, 27, 243, 58, 123, 16, 35, 102, 241, 154, 69, 163, 16, 177, 136, 38, 255, 255, 255, 191, 27, 42, 4, + 145, 171, 60, 191, 169, 17, 27, 115, 208, 128, 227, 54, 98, 222, 32, 27, 42, 55, 16, 184, 186, 232, 172, 139, 27, + 214, 88, 63, 57, 233, 177, 212, 186, 27, 198, 231, 112, 197, 39, 95, 217, 50, 71, 206, 217, 102, 8, 99, 71, 219, + 27, 215, 115, 218, 29, 13, 202, 54, 61, 66, 45, 212, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3590, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e039cf866b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6044498089116540195" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5e1c4af114758777b00fcf77" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6210405240928152516" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8019351001355938306" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "901ea35364e9023abecef27e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "305cc0bffe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3dde828a4976c27dfed6e1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5120" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "768413234121029779" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "928cf1cd674c3be3c58e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1411af33fd" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12868802319083181393" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "74" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5774130603433976236" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3747376f491e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3483292608259456122" + } + } + ] + } + ] + }, + "cborHex": "9fbf462e039cf866b91b53e25efca7519d23ff4c5e1c4af114758777b00fcf779f801b562fcaa998bf2bc4bf1b6f4a753f54fe6a024c901ea35364e9023abecef27e45305cc0bffe4b3dde828a4976c27dfed6e14251201b0aa9f3c3e47e38934a928cf1cd674c3be3c58e451411af33fdff1bb2972b8701ad1551ff9f4174d8669f1b5021d530f064e1ac9f463747376f491effff1b3057242c040c7c7affff", + "cborBytes": [ + 159, 191, 70, 46, 3, 156, 248, 102, 185, 27, 83, 226, 94, 252, 167, 81, 157, 35, 255, 76, 94, 28, 74, 241, 20, + 117, 135, 119, 176, 15, 207, 119, 159, 128, 27, 86, 47, 202, 169, 152, 191, 43, 196, 191, 27, 111, 74, 117, 63, + 84, 254, 106, 2, 76, 144, 30, 163, 83, 100, 233, 2, 58, 190, 206, 242, 126, 69, 48, 92, 192, 191, 254, 75, 61, + 222, 130, 138, 73, 118, 194, 125, 254, 214, 225, 66, 81, 32, 27, 10, 169, 243, 195, 228, 126, 56, 147, 74, 146, + 140, 241, 205, 103, 76, 59, 227, 197, 142, 69, 20, 17, 175, 51, 253, 255, 27, 178, 151, 43, 135, 1, 173, 21, 81, + 255, 159, 65, 116, 216, 102, 159, 27, 80, 33, 213, 48, 240, 100, 225, 172, 159, 70, 55, 71, 55, 111, 73, 30, 255, + 255, 27, 48, 87, 36, 44, 4, 12, 124, 122, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3591, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8003896605148020973" + } + }, + "cborHex": "1b6f138d8e50cd80ed", + "cborBytes": [27, 111, 19, 141, 142, 80, 205, 128, 237], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3592, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7999149362620639594" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10613101304970822705" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "542371534551590491" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61dd74b5649ec23f6acc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a5bc79283cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4b3bf190f04ea77cf" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2241583444140841590" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8d2180390296f1" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "32b0848f334c7d780b2b0de5" + }, + { + "_tag": "ByteArray", + "bytearray": "32" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3a" + } + ] + }, + "cborHex": "d8669f1b6f02aff6c84ba96a9f9f1b93494f6800054431bf1b0786e4097d3b265b4a61dd74b5649ec23f6acc465a5bc79283cc49f4b3bf190f04ea77cfff9f1b1f1bb4441a695a76478d2180390296f1ff4c32b0848f334c7d780b2b0de54132ff413affff", + "cborBytes": [ + 216, 102, 159, 27, 111, 2, 175, 246, 200, 75, 169, 106, 159, 159, 27, 147, 73, 79, 104, 0, 5, 68, 49, 191, 27, 7, + 134, 228, 9, 125, 59, 38, 91, 74, 97, 221, 116, 181, 100, 158, 194, 63, 106, 204, 70, 90, 91, 199, 146, 131, 204, + 73, 244, 179, 191, 25, 15, 4, 234, 119, 207, 255, 159, 27, 31, 27, 180, 68, 26, 105, 90, 118, 71, 141, 33, 128, + 57, 2, 150, 241, 255, 76, 50, 176, 132, 143, 51, 76, 125, 120, 11, 43, 13, 229, 65, 50, 255, 65, 58, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3593, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10624063055920074487" + } + }, + "cborHex": "1b9370410f87778ef7", + "cborBytes": [27, 147, 112, 65, 15, 135, 119, 142, 247], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3594, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11842466544772899159" + } + }, + "cborHex": "1ba458e49411a2e157", + "cborBytes": [27, 164, 88, 228, 148, 17, 162, 225, 87], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3595, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6725421472717682608" + } + }, + "cborHex": "1b5d557f32561f37b0", + "cborBytes": [27, 93, 85, 127, 50, 86, 31, 55, 176], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3596, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "87" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bffb60266d00e7aabc" + }, + { + "_tag": "ByteArray", + "bytearray": "b76b8820708934" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12126079527900824428" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0d67fd48b89a1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2935733701849892078" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2026536593919933935" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3932835761604075651" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13139597388335030418" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddf0fab1d0ec4958f4" + } + } + ] + } + } + ] + }, + "cborHex": "bf41879f49bffb60266d00e7aabc47b76b88207089341ba8487d157aaa436cff47e0d67fd48b89a1bf1b28bdd23f65e7c4ee1b1c1fb44b8ced7def1b36943d49c25d208341751bb6593a35475c209249ddf0fab1d0ec4958f4ffff", + "cborBytes": [ + 191, 65, 135, 159, 73, 191, 251, 96, 38, 109, 0, 231, 170, 188, 71, 183, 107, 136, 32, 112, 137, 52, 27, 168, 72, + 125, 21, 122, 170, 67, 108, 255, 71, 224, 214, 127, 212, 139, 137, 161, 191, 27, 40, 189, 210, 63, 101, 231, 196, + 238, 27, 28, 31, 180, 75, 140, 237, 125, 239, 27, 54, 148, 61, 73, 194, 93, 32, 131, 65, 117, 27, 182, 89, 58, 53, + 71, 92, 32, 146, 73, 221, 240, 250, 177, 208, 236, 73, 88, 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3597, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11416092608433872115" + } + }, + "cborHex": "1b9e6e1bbe08a9dcf3", + "cborBytes": [27, 158, 110, 27, 190, 8, 169, 220, 243], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3598, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7146734740686577909" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f4a9df48c563a710923f25" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4395050563440088981" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15235317062101986772" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b41162fbaf184b11070e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48de2f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "565c11da9a1fa9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bd90083a793" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d85d5b9d31f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "932fe14c46744a7480" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "84f67244f8696f" + }, + { + "_tag": "ByteArray", + "bytearray": "fcd11cb9" + } + ] + } + } + ] + }, + "cborHex": "bf1b632e4d61b29120f59f4bf4a9df48c563a710923f251b3cfe5b3393ba17951bd36eb825d7096dd44ab41162fbaf184b11070eff4348de2f47565c11da9a1fa9466bd90083a79346d85d5b9d31f749932fe14c46744a74809f4784f67244f8696f44fcd11cb9ffff", + "cborBytes": [ + 191, 27, 99, 46, 77, 97, 178, 145, 32, 245, 159, 75, 244, 169, 223, 72, 197, 99, 167, 16, 146, 63, 37, 27, 60, + 254, 91, 51, 147, 186, 23, 149, 27, 211, 110, 184, 37, 215, 9, 109, 212, 74, 180, 17, 98, 251, 175, 24, 75, 17, 7, + 14, 255, 67, 72, 222, 47, 71, 86, 92, 17, 218, 154, 31, 169, 70, 107, 217, 0, 131, 167, 147, 70, 216, 93, 91, 157, + 49, 247, 73, 147, 47, 225, 76, 70, 116, 74, 116, 128, 159, 71, 132, 246, 114, 68, 248, 105, 111, 68, 252, 209, 28, + 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3599, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + }, + "cborHex": "d905009f1bffffffffffffffeb12ff", + "cborBytes": [217, 5, 0, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 18, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3600, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15607650422150428312" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3288430540640099562" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1bd899835db6c07698d8669f1b2da2da2763661cea80ffff", + "cborBytes": [ + 159, 27, 216, 153, 131, 93, 182, 192, 118, 152, 216, 102, 159, 27, 45, 162, 218, 39, 99, 102, 28, 234, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3601, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01023005f8fd87f800" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7585b81c0901" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bf48b073e33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13941d424c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5173826709092567681" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "767224" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6348239623554056905" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13133169201443742715" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15308769672917508626" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf4901023005f8fd87f800467585b81c0901465bf48b073e3341e942fa004513941d424cff9fd8669f1b47cd1ffad4e40a819f437672241b58197a4d9effc2c91bb64263ce6327a3fb1bd473ace87e856212ffffffff", + "cborBytes": [ + 159, 191, 73, 1, 2, 48, 5, 248, 253, 135, 248, 0, 70, 117, 133, 184, 28, 9, 1, 70, 91, 244, 139, 7, 62, 51, 65, + 233, 66, 250, 0, 69, 19, 148, 29, 66, 76, 255, 159, 216, 102, 159, 27, 71, 205, 31, 250, 212, 228, 10, 129, 159, + 67, 118, 114, 36, 27, 88, 25, 122, 77, 158, 255, 194, 201, 27, 182, 66, 99, 206, 99, 39, 163, 251, 27, 212, 115, + 172, 232, 126, 133, 98, 18, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3602, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9970339395333818767" + } + }, + "cborHex": "1b8a5dc2dadcf4898f", + "cborBytes": [27, 138, 93, 194, 218, 220, 244, 137, 143], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3603, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3303564454094828496" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17678660945066784996" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "81b2a784ebf32b37" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16868051800287093442" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17172589071278699476" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dfec20b054afb9e637d3c585" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9939812723738288017" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3995280771576283215" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12318783819630757441" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00bf7b964f6272272ef5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "26116ad2cbe9cf28e8e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17936a21" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9540299851792465038" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2061511663612851438" + } + }, + { + "_tag": "ByteArray", + "bytearray": "61d2db17" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5240720266859659939" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3c78e289c4334c8f4d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22e28e11b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11743633976413784355" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "665dbac11eec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "583160970c892bcfd3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6db9d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f6cf10cc30f401a93" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d8ca8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "139c8713" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b49c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15438568355341908050" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0b60daaf64f2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd48effe" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "490d8d73498215dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78349a08" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4910b2107e63b8d9ac20aaf6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e85faf196c" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13048618991981757430" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11700095978417821674" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10843570950295525495" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "be5ab3d50e3e" + }, + { + "_tag": "ByteArray", + "bytearray": "89" + }, + { + "_tag": "ByteArray", + "bytearray": "fd5fe7a8ab61e843" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16179721662039490968" + } + }, + { + "_tag": "ByteArray", + "bytearray": "88524214cfbe" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14779445346160984906" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3a3ba7aaf1fb24adef" + }, + { + "_tag": "ByteArray", + "bytearray": "d170c2dd94" + }, + { + "_tag": "ByteArray", + "bytearray": "d7c549a33a380e32" + } + ] + } + ] + } + ] + }, + "cborHex": "d905009f1b2dd89e5e32edf3d0d8669f1bf5573876c746f8e49f4881b2a784ebf32b37d8669f1bea175bbdd90022c29f1bee514ac6ab5273d44cdfec20b054afb9e637d3c5851b89f14f0244541f91ffffbf1b377216b19fc0c04f41051baaf51c9dc1ebc6414a00bf7b964f6272272ef54a26116ad2cbe9cf28e8e14417936a21ffd8669f1b8465f42b24cd3c8e9f1b1c9bf5ef89f7f4ee4461d2db17ffff1b48bac750f15c42a3ffff9f493c78e289c4334c8f4dbf4522e28e11b01ba2f9c4e1905a092346665dbac11eec49583160970c892bcfd3436db9d4494f6cf10cc30f401a93438d8ca844139c871342b49c1bd640d01f44bdb85247f0b60daaf64f2d44cd48effeffbf48490d8d73498215dd4478349a084c4910b2107e63b8d9ac20aaf645e85faf196cffff1bb51601d6b27d03f6d8669f1ba25f174d779217ea9fd8669f1b967c1a53dd1c18779f46be5ab3d50e3e418948fd5fe7a8ab61e8431be089eb20b68e81984688524214cfbeffffd8669f1bcd1b233ccb39c34a9f493a3ba7aaf1fb24adef45d170c2dd9448d7c549a33a380e32ffffffffff", + "cborBytes": [ + 217, 5, 0, 159, 27, 45, 216, 158, 94, 50, 237, 243, 208, 216, 102, 159, 27, 245, 87, 56, 118, 199, 70, 248, 228, + 159, 72, 129, 178, 167, 132, 235, 243, 43, 55, 216, 102, 159, 27, 234, 23, 91, 189, 217, 0, 34, 194, 159, 27, 238, + 81, 74, 198, 171, 82, 115, 212, 76, 223, 236, 32, 176, 84, 175, 185, 230, 55, 211, 197, 133, 27, 137, 241, 79, 2, + 68, 84, 31, 145, 255, 255, 191, 27, 55, 114, 22, 177, 159, 192, 192, 79, 65, 5, 27, 170, 245, 28, 157, 193, 235, + 198, 65, 74, 0, 191, 123, 150, 79, 98, 114, 39, 46, 245, 74, 38, 17, 106, 210, 203, 233, 207, 40, 232, 225, 68, + 23, 147, 106, 33, 255, 216, 102, 159, 27, 132, 101, 244, 43, 36, 205, 60, 142, 159, 27, 28, 155, 245, 239, 137, + 247, 244, 238, 68, 97, 210, 219, 23, 255, 255, 27, 72, 186, 199, 80, 241, 92, 66, 163, 255, 255, 159, 73, 60, 120, + 226, 137, 196, 51, 76, 143, 77, 191, 69, 34, 226, 142, 17, 176, 27, 162, 249, 196, 225, 144, 90, 9, 35, 70, 102, + 93, 186, 193, 30, 236, 73, 88, 49, 96, 151, 12, 137, 43, 207, 211, 67, 109, 185, 212, 73, 79, 108, 241, 12, 195, + 15, 64, 26, 147, 67, 141, 140, 168, 68, 19, 156, 135, 19, 66, 180, 156, 27, 214, 64, 208, 31, 68, 189, 184, 82, + 71, 240, 182, 13, 170, 246, 79, 45, 68, 205, 72, 239, 254, 255, 191, 72, 73, 13, 141, 115, 73, 130, 21, 221, 68, + 120, 52, 154, 8, 76, 73, 16, 178, 16, 126, 99, 184, 217, 172, 32, 170, 246, 69, 232, 95, 175, 25, 108, 255, 255, + 27, 181, 22, 1, 214, 178, 125, 3, 246, 216, 102, 159, 27, 162, 95, 23, 77, 119, 146, 23, 234, 159, 216, 102, 159, + 27, 150, 124, 26, 83, 221, 28, 24, 119, 159, 70, 190, 90, 179, 213, 14, 62, 65, 137, 72, 253, 95, 231, 168, 171, + 97, 232, 67, 27, 224, 137, 235, 32, 182, 142, 129, 152, 70, 136, 82, 66, 20, 207, 190, 255, 255, 216, 102, 159, + 27, 205, 27, 35, 60, 203, 57, 195, 74, 159, 73, 58, 59, 167, 170, 241, 251, 36, 173, 239, 69, 209, 112, 194, 221, + 148, 72, 215, 197, 73, 163, 58, 56, 14, 50, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3604, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18363037064660544907" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "d8669f1bfed69ceb346c6d8b9f80ffff", + "cborBytes": [216, 102, 159, 27, 254, 214, 156, 235, 52, 108, 109, 139, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3605, + "sample": { + "_tag": "ByteArray", + "bytearray": "cd02" + }, + "cborHex": "42cd02", + "cborBytes": [66, 205, 2], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3606, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3249767975970350066" + } + }, + "cborHex": "1b2d197ec1922723f2", + "cborBytes": [27, 45, 25, 126, 193, 146, 39, 35, 242], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3607, + "sample": { + "_tag": "ByteArray", + "bytearray": "f4" + }, + "cborHex": "41f4", + "cborBytes": [65, 244], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3608, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0702a9fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04c000" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35044c06" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c59e6607d8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16405819564461029802" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "405155009649494844" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f558565d3b" + }, + { + "_tag": "ByteArray", + "bytearray": "bf47b7e4d5cf6a38fea534" + }, + { + "_tag": "ByteArray", + "bytearray": "e207b56fb53f8b2e" + } + ] + } + } + ] + }, + "cborHex": "bf440702a9fc4304c00041b94435044c0645c59e6607d89f1be3ad2df8dcda79aa1b059f6655ad20cb3c45f558565d3b4bbf47b7e4d5cf6a38fea53448e207b56fb53f8b2effff", + "cborBytes": [ + 191, 68, 7, 2, 169, 252, 67, 4, 192, 0, 65, 185, 68, 53, 4, 76, 6, 69, 197, 158, 102, 7, 216, 159, 27, 227, 173, + 45, 248, 220, 218, 121, 170, 27, 5, 159, 102, 85, 173, 32, 203, 60, 69, 245, 88, 86, 93, 59, 75, 191, 71, 183, + 228, 213, 207, 106, 56, 254, 165, 52, 72, 226, 7, 181, 111, 181, 63, 139, 46, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3609, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14640860809434334474" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3e4709d262" + }, + { + "_tag": "ByteArray", + "bytearray": "8a5b4a6954988563" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3930246911732858969" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b91827c3656abd249392937" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15818802331808240538" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17321493007872793714" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16006023705884350657" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8563561952752263561" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13280007219039404918" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8115182412981793175" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7e05d6460e49a69c6aeea41" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4574645046034403152" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3054006565143761953" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15295167726659413246" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12466507651559973964" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2454439542586695984" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16325612992557364472" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a584c24604b8f30" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18419376466672151266" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2936325578932083710" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02ea4d26921b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "248394387440877027" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "08d98e7570d97c41cd27b0ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c32c48a7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9452" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1457acd9fcf192" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd3db507c6f36e00f299e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5866479859260898664" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da5181004e76e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17802675264593906792" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2992800541329581127" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13239144026752642389" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15495030992611509096" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16287497043546214051" + } + } + ] + } + ] + }, + "cborHex": "d87f9fd8669f1bcb2ec955e845850a9f9f453e4709d262488a5b4a6954988563ffbf1b368b0abe2d69c0594c5b91827c3656abd2493929371bdb87ace8bf8d139a1bf0624e1e11ab9c721bde20d1c1c7b7d8c11b76d7e2396dd96189ff1bb84c103489778376bf1b709eeb689546f1974cf7e05d6460e49a69c6aeea41ffffff1b3f7c676e8e618f50bf1b2a6202ca491ad4211bd4435a02978da4fe1bad01eea8a0ebe44c1b220febc2828d61301be2903a8519e234f8487a584c24604b8f301bff9ec54e702eeae21b28bfec8e8523dbfeffbf4602ea4d26921b1b037279611b9d3de34c08d98e7570d97c41cd27b0ff44c32c48a7429452471457acd9fcf1924bbd3db507c6f36e00f299e31b5169ec599d3abd6847da5181004e76e61bf70fced49dc0cc68ffd8669f1b2988903c5d8be4479f1bb7bae3592cd36d551bd7096897724703681be208d04428cc0ea3ffffff", + "cborBytes": [ + 216, 127, 159, 216, 102, 159, 27, 203, 46, 201, 85, 232, 69, 133, 10, 159, 159, 69, 62, 71, 9, 210, 98, 72, 138, + 91, 74, 105, 84, 152, 133, 99, 255, 191, 27, 54, 139, 10, 190, 45, 105, 192, 89, 76, 91, 145, 130, 124, 54, 86, + 171, 210, 73, 57, 41, 55, 27, 219, 135, 172, 232, 191, 141, 19, 154, 27, 240, 98, 78, 30, 17, 171, 156, 114, 27, + 222, 32, 209, 193, 199, 183, 216, 193, 27, 118, 215, 226, 57, 109, 217, 97, 137, 255, 27, 184, 76, 16, 52, 137, + 119, 131, 118, 191, 27, 112, 158, 235, 104, 149, 70, 241, 151, 76, 247, 224, 93, 100, 96, 228, 154, 105, 198, 174, + 234, 65, 255, 255, 255, 27, 63, 124, 103, 110, 142, 97, 143, 80, 191, 27, 42, 98, 2, 202, 73, 26, 212, 33, 27, + 212, 67, 90, 2, 151, 141, 164, 254, 27, 173, 1, 238, 168, 160, 235, 228, 76, 27, 34, 15, 235, 194, 130, 141, 97, + 48, 27, 226, 144, 58, 133, 25, 226, 52, 248, 72, 122, 88, 76, 36, 96, 75, 143, 48, 27, 255, 158, 197, 78, 112, 46, + 234, 226, 27, 40, 191, 236, 142, 133, 35, 219, 254, 255, 191, 70, 2, 234, 77, 38, 146, 27, 27, 3, 114, 121, 97, + 27, 157, 61, 227, 76, 8, 217, 142, 117, 112, 217, 124, 65, 205, 39, 176, 255, 68, 195, 44, 72, 167, 66, 148, 82, + 71, 20, 87, 172, 217, 252, 241, 146, 75, 189, 61, 181, 7, 198, 243, 110, 0, 242, 153, 227, 27, 81, 105, 236, 89, + 157, 58, 189, 104, 71, 218, 81, 129, 0, 78, 118, 230, 27, 247, 15, 206, 212, 157, 192, 204, 104, 255, 216, 102, + 159, 27, 41, 136, 144, 60, 93, 139, 228, 71, 159, 27, 183, 186, 227, 89, 44, 211, 109, 85, 27, 215, 9, 104, 151, + 114, 71, 3, 104, 27, 226, 8, 208, 68, 40, 204, 14, 163, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3610, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2000fd9b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15655949908305820279" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18225026715826757074" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0798010500fc01fc054e17" + }, + { + "_tag": "ByteArray", + "bytearray": "0700c5fdfa7376" + } + ] + }, + "cborHex": "d9050c9f9fd905079f01442000fd9b1bd9451b7e29e0ba771bfcec4d3cdadb9dd2ffff4b0798010500fc01fc054e17470700c5fdfa7376ff", + "cborBytes": [ + 217, 5, 12, 159, 159, 217, 5, 7, 159, 1, 68, 32, 0, 253, 155, 27, 217, 69, 27, 126, 41, 224, 186, 119, 27, 252, + 236, 77, 60, 218, 219, 157, 210, 255, 255, 75, 7, 152, 1, 5, 0, 252, 1, 252, 5, 78, 23, 71, 7, 0, 197, 253, 250, + 115, 118, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3611, + "sample": { + "_tag": "ByteArray", + "bytearray": "b7787fae4c76243e0ed1c9" + }, + "cborHex": "4bb7787fae4c76243e0ed1c9", + "cborBytes": [75, 183, 120, 127, 174, 76, 118, 36, 62, 14, 209, 201], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3612, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "056e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f86549ef583207d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ceae7b14d8e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15321782460190301045" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf42056ed8669f1bffffffffffffffed80ff480f86549ef583207dbf468ceae7b14d8e1bd4a1e7f821741b75ffff", + "cborBytes": [ + 191, 66, 5, 110, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 128, 255, 72, 15, 134, 84, 158, 245, + 131, 32, 125, 191, 70, 140, 234, 231, 177, 77, 142, 27, 212, 161, 231, 248, 33, 116, 27, 117, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3613, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0dd17c808eac32af3644" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10267139955826114264" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16481061754866625727" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d8dda51f" + }, + { + "_tag": "ByteArray", + "bytearray": "4ecf72bdaefde4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9117620866321910885" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4546837805260542296" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7d1a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14649630974475237473" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4872188170715771274" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4214805143831232231" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5018409895337735566" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d2d8eb2ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1140a0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d973ea64f70a2794df6" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6872684063014555772" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e8d2407" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11838334053169373753" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e0e86cd4be4" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf4a0dd17c808eac32af36441b8e7c3564663c3ed8ff9fd8669f1be4b87e587c19ecbf9f44d8dda51f474ecf72bdaefde41b7e884bdee5ce8c651b3f199ce4c9df1158427d1affff1bcb4df1c11427f861bf1b439d7d53ca5fb18a1b3a7dfef2838cbee71b45a4f9360ce9358e457d2d8eb2ae431140a04a6d973ea64f70a2794df6ffbf1b5f60adbe0578907c449e8d24071ba44a361963922239465e0e86cd4be4ffffff", + "cborBytes": [ + 159, 191, 74, 13, 209, 124, 128, 142, 172, 50, 175, 54, 68, 27, 142, 124, 53, 100, 102, 60, 62, 216, 255, 159, + 216, 102, 159, 27, 228, 184, 126, 88, 124, 25, 236, 191, 159, 68, 216, 221, 165, 31, 71, 78, 207, 114, 189, 174, + 253, 228, 27, 126, 136, 75, 222, 229, 206, 140, 101, 27, 63, 25, 156, 228, 201, 223, 17, 88, 66, 125, 26, 255, + 255, 27, 203, 77, 241, 193, 20, 39, 248, 97, 191, 27, 67, 157, 125, 83, 202, 95, 177, 138, 27, 58, 125, 254, 242, + 131, 140, 190, 231, 27, 69, 164, 249, 54, 12, 233, 53, 142, 69, 125, 45, 142, 178, 174, 67, 17, 64, 160, 74, 109, + 151, 62, 166, 79, 112, 162, 121, 77, 246, 255, 191, 27, 95, 96, 173, 190, 5, 120, 144, 124, 68, 158, 141, 36, 7, + 27, 164, 74, 54, 25, 99, 146, 34, 57, 70, 94, 14, 134, 205, 75, 228, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3614, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4645844275315177197" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18210308389672976455" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10872894949458422310" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c91360a366fe29485c6db6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11609314270132890332" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1474367260459205839" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b40795ac0eff176edd8669f1bfffffffffffffff29f1bfcb802ff80c60047ffff1b96e44859769baa264bc91360a366fe29485c6db61ba11c91d1e524eadcd8669f1b147601363c2304cf80ffff", + "cborBytes": [ + 191, 27, 64, 121, 90, 192, 239, 241, 118, 237, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, + 252, 184, 2, 255, 128, 198, 0, 71, 255, 255, 27, 150, 228, 72, 89, 118, 155, 170, 38, 75, 201, 19, 96, 163, 102, + 254, 41, 72, 92, 109, 182, 27, 161, 28, 145, 209, 229, 36, 234, 220, 216, 102, 159, 27, 20, 118, 1, 54, 60, 35, 4, + 207, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3615, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6261898320649065008" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d80fc7dff28e7eacfa77918" + }, + { + "_tag": "ByteArray", + "bytearray": "a33a7a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6933038936254086250" + } + }, + { + "_tag": "ByteArray", + "bytearray": "58e599" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5609039556977423272" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "077db4615737f5ecb02e111a" + }, + { + "_tag": "ByteArray", + "bytearray": "2dcd7045b4" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "396c3ada54" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12077872090413714645" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1151237515a4e6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16570508023113478890" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5861246458495398647" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5384299602519475482" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fbd1d8dbf98e74a2" + }, + { + "_tag": "ByteArray", + "bytearray": "4967f6d361eb1bbbf4" + }, + { + "_tag": "ByteArray", + "bytearray": "5f01cf4082a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12728758118626640608" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7520175118649063656" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d235c7901f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14723104547026527814" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0587af938066" + }, + { + "_tag": "ByteArray", + "bytearray": "7a469bbe7422d0212abc62" + }, + { + "_tag": "ByteArray", + "bytearray": "b5c4c7" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10641770505671293925" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "245279273714227562" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11438022621239203407" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6337770138520988195" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5a7f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13676227333813598613" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "40d8a7fe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13085188934840415275" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7758632460057794879" + } + }, + { + "_tag": "ByteArray", + "bytearray": "16eca3" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7819762afc392429bf69f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15747514436680240333" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14894431763074644455" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0e04fce0eb87b9c86c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1168722943853046502" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4a85e71c5819328d3f1e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8530816491729941946" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f1b56e6bb587de712304c2d80fc7dff28e7eacfa7791843a33a7a1b60371a2e01607c6a4358e599ffd8669f1b4dd74fc254c0f3a89f4c077db4615737f5ecb02e111a452dcd7045b4ffff45396c3ada54d8669f1ba79d38acc7b6ccd59f471151237515a4e61be5f64540b17072ea1b515754998ba272f7ffff1b4ab8dff61473451aff14d8669f1bffffffffffffffee9f9f48fbd1d8dbf98e74a2494967f6d361eb1bbbf4465f01cf4082a71bb0a5a211ac9c42e0ffd8669f1b685d076d43cef8e89f45d235c7901f1bcc52f99444746646460587af9380664b7a469bbe7422d0212abc6243b5c4c7ffffd8669f1b93af29e473c43be59f1b036768332c80996a1b9ebc04f907d8564fffffffffd905059fd8669f1b57f4485cae9f2a2380ff425a7fffd87b9fd8669f1bbdcbb84ce37279959f4440d8a7fe1bb597ee020808f42b1b6bac331d8c8f593f4316eca3ffffbf4b7819762afc392429bf69f11bda8a68f23da94ccdffd8669f1bceb3a6c6415bf9e79f490e04fce0eb87b9c86c1b103823534535aae64a4a85e71c5819328d3f1effff9f1b76638c66a99b75baffffff", + "cborBytes": [ + 159, 159, 159, 27, 86, 230, 187, 88, 125, 231, 18, 48, 76, 45, 128, 252, 125, 255, 40, 231, 234, 207, 167, 121, + 24, 67, 163, 58, 122, 27, 96, 55, 26, 46, 1, 96, 124, 106, 67, 88, 229, 153, 255, 216, 102, 159, 27, 77, 215, 79, + 194, 84, 192, 243, 168, 159, 76, 7, 125, 180, 97, 87, 55, 245, 236, 176, 46, 17, 26, 69, 45, 205, 112, 69, 180, + 255, 255, 69, 57, 108, 58, 218, 84, 216, 102, 159, 27, 167, 157, 56, 172, 199, 182, 204, 213, 159, 71, 17, 81, 35, + 117, 21, 164, 230, 27, 229, 246, 69, 64, 177, 112, 114, 234, 27, 81, 87, 84, 153, 139, 162, 114, 247, 255, 255, + 27, 74, 184, 223, 246, 20, 115, 69, 26, 255, 20, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, + 159, 72, 251, 209, 216, 219, 249, 142, 116, 162, 73, 73, 103, 246, 211, 97, 235, 27, 187, 244, 70, 95, 1, 207, 64, + 130, 167, 27, 176, 165, 162, 17, 172, 156, 66, 224, 255, 216, 102, 159, 27, 104, 93, 7, 109, 67, 206, 248, 232, + 159, 69, 210, 53, 199, 144, 31, 27, 204, 82, 249, 148, 68, 116, 102, 70, 70, 5, 135, 175, 147, 128, 102, 75, 122, + 70, 155, 190, 116, 34, 208, 33, 42, 188, 98, 67, 181, 196, 199, 255, 255, 216, 102, 159, 27, 147, 175, 41, 228, + 115, 196, 59, 229, 159, 27, 3, 103, 104, 51, 44, 128, 153, 106, 27, 158, 188, 4, 249, 7, 216, 86, 79, 255, 255, + 255, 255, 217, 5, 5, 159, 216, 102, 159, 27, 87, 244, 72, 92, 174, 159, 42, 35, 128, 255, 66, 90, 127, 255, 216, + 123, 159, 216, 102, 159, 27, 189, 203, 184, 76, 227, 114, 121, 149, 159, 68, 64, 216, 167, 254, 27, 181, 151, 238, + 2, 8, 8, 244, 43, 27, 107, 172, 51, 29, 140, 143, 89, 63, 67, 22, 236, 163, 255, 255, 191, 75, 120, 25, 118, 42, + 252, 57, 36, 41, 191, 105, 241, 27, 218, 138, 104, 242, 61, 169, 76, 205, 255, 216, 102, 159, 27, 206, 179, 166, + 198, 65, 91, 249, 231, 159, 73, 14, 4, 252, 224, 235, 135, 185, 200, 108, 27, 16, 56, 35, 83, 69, 53, 170, 230, + 74, 74, 133, 231, 28, 88, 25, 50, 141, 63, 30, 255, 255, 159, 27, 118, 99, 140, 102, 169, 155, 117, 186, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3616, + "sample": { + "_tag": "ByteArray", + "bytearray": "661daa" + }, + "cborHex": "43661daa", + "cborBytes": [67, 102, 29, 170], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3617, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14742707051649417174" + } + }, + "cborHex": "1bcc989df40935bfd6", + "cborBytes": [27, 204, 152, 157, 244, 9, 53, 191, 214], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3618, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "76fd9783020004500204" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2785100804050029676" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff03fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + } + ] + }, + "cborHex": "bf4a76fd97830200045002041b26a6aa6cd90e8c6c43ff03fe01ff", + "cborBytes": [ + 191, 74, 118, 253, 151, 131, 2, 0, 4, 80, 2, 4, 27, 38, 166, 170, 108, 217, 14, 140, 108, 67, 255, 3, 254, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3619, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa650526b60195" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01" + } + } + ] + }, + "cborHex": "bf425b1b41d647fa650526b601954101ff", + "cborBytes": [191, 66, 91, 27, 65, 214, 71, 250, 101, 5, 38, 182, 1, 149, 65, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3620, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f13b592054f17e" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff39f47f13b592054f17effff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 71, 241, 59, 89, 32, 84, 241, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3621, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae650962712b272f377ea8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00" + } + } + ] + } + ] + }, + "cborHex": "9f80bf024bae650962712b272f377ea81bffffffffffffffeb41fd1bfffffffffffffff54100ffff", + "cborBytes": [ + 159, 128, 191, 2, 75, 174, 101, 9, 98, 113, 43, 39, 47, 55, 126, 168, 27, 255, 255, 255, 255, 255, 255, 255, 235, + 65, 253, 27, 255, 255, 255, 255, 255, 255, 255, 245, 65, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3622, + "sample": { + "_tag": "ByteArray", + "bytearray": "4000" + }, + "cborHex": "424000", + "cborBytes": [66, 64, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3623, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6f72" + }, + { + "_tag": "ByteArray", + "bytearray": "846820cd9e1de753d4f3838f" + }, + { + "_tag": "ByteArray", + "bytearray": "efaeb98cbbe9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9687267689250525540" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a501f885" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "88779bce9f585fc2f197a06a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8279593308720668868" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4a33bda557743675466f06" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0260ee6b06048eff4a073e" + }, + { + "_tag": "ByteArray", + "bytearray": "06798d862aa83274" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15788785321165016701" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2871655641284670805" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7818470078829464732" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00025779" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "64" + } + ] + }, + "cborHex": "9fd87a9f9f426f724c846820cd9e1de753d4f3838f46efaeb98cbbe91b867016a355e591644164ff44a501f8859f4c88779bce9f585fc2f197a06a1b72e7063f42ff20c44b4a33bda557743675466f06ff9f4b0260ee6b06048eff4a073e4806798d862aa83274ffd8669f1bdb1d0898d6f14e7d9f1b27da2b975004f5551b6c80c91cd7a68c9c4400025779ffffffa04164ff", + "cborBytes": [ + 159, 216, 122, 159, 159, 66, 111, 114, 76, 132, 104, 32, 205, 158, 29, 231, 83, 212, 243, 131, 143, 70, 239, 174, + 185, 140, 187, 233, 27, 134, 112, 22, 163, 85, 229, 145, 100, 65, 100, 255, 68, 165, 1, 248, 133, 159, 76, 136, + 119, 155, 206, 159, 88, 95, 194, 241, 151, 160, 106, 27, 114, 231, 6, 63, 66, 255, 32, 196, 75, 74, 51, 189, 165, + 87, 116, 54, 117, 70, 111, 6, 255, 159, 75, 2, 96, 238, 107, 6, 4, 142, 255, 74, 7, 62, 72, 6, 121, 141, 134, 42, + 168, 50, 116, 255, 216, 102, 159, 27, 219, 29, 8, 152, 214, 241, 78, 125, 159, 27, 39, 218, 43, 151, 80, 4, 245, + 85, 27, 108, 128, 201, 28, 215, 166, 140, 156, 68, 0, 2, 87, 121, 255, 255, 255, 160, 65, 100, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3624, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8663339477925498898" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9408509366042747380" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7782036570170775398" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16173142655796600379" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fcfebe2cdeffa2ed7bc68dad" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16642398691180332453" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6101949018244516067" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0ca0b45feb" + } + ] + } + } + ] + }, + "cborHex": "bf1b783a5d5ad65e1012a01b8291bd6b84e9e1f4d8669f1b6bff59079220d7669f1be0728b8e74795e3b4cfcfebe2cdeffa2ed7bc68dadffff1be6f5ad6f363ac5a5d8669f1b54ae7a4d760208e39f450ca0b45febffffff", + "cborBytes": [ + 191, 27, 120, 58, 93, 90, 214, 94, 16, 18, 160, 27, 130, 145, 189, 107, 132, 233, 225, 244, 216, 102, 159, 27, + 107, 255, 89, 7, 146, 32, 215, 102, 159, 27, 224, 114, 139, 142, 116, 121, 94, 59, 76, 252, 254, 190, 44, 222, + 255, 162, 237, 123, 198, 141, 173, 255, 255, 27, 230, 245, 173, 111, 54, 58, 197, 165, 216, 102, 159, 27, 84, 174, + 122, 77, 118, 2, 8, 227, 159, 69, 12, 160, 180, 95, 235, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3625, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3180141986541408110" + } + }, + "cborHex": "1b2c222249a31b0f6e", + "cborBytes": [27, 44, 34, 34, 73, 163, 27, 15, 110], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3626, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6419104063912198696" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3293216938935255314" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "695364138247328160" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14915708931718880580" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2044015170592759395" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3224969921931028715" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8070913339792671011" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11604924608912498319" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5aaea2e97bb7d3c9609" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14339484175785050414" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "55551753180179829" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15186113245713984724" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16928314119269347401" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3126666778399517444" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9142e42916a4bb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7537420073131799971" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bfc158c384e55ad3a7d7b4b" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "316815324983695158" + }, + "fields": [] + } + ] + }, + "cborHex": "d905039fd8669f1b59153d22e1c0c22880ff80d8669f1b2db3db5b958901129fbf1b09a66dffe1c711a01bceff3e3f20399d441b1c5dccf7ceb0de631b2cc1650eb004a8eb1b7001a4ebc74dc12341c21ba10cf9723f6b1e8f4ac5aaea2e97bb7d3c96091bc70014e25000c12e1b00c55c0672f46d751bd2bfe98999a2ecd41beaed74005d477049ffbf1b2b6426de8184ab04479142e42916a4bb1b689a4b9f1deb75a34c8bfc158c384e55ad3a7d7b4bffffffd8669f1b04658ddc090d973680ffff", + "cborBytes": [ + 217, 5, 3, 159, 216, 102, 159, 27, 89, 21, 61, 34, 225, 192, 194, 40, 128, 255, 128, 216, 102, 159, 27, 45, 179, + 219, 91, 149, 137, 1, 18, 159, 191, 27, 9, 166, 109, 255, 225, 199, 17, 160, 27, 206, 255, 62, 63, 32, 57, 157, + 68, 27, 28, 93, 204, 247, 206, 176, 222, 99, 27, 44, 193, 101, 14, 176, 4, 168, 235, 27, 112, 1, 164, 235, 199, + 77, 193, 35, 65, 194, 27, 161, 12, 249, 114, 63, 107, 30, 143, 74, 197, 170, 234, 46, 151, 187, 125, 60, 150, 9, + 27, 199, 0, 20, 226, 80, 0, 193, 46, 27, 0, 197, 92, 6, 114, 244, 109, 117, 27, 210, 191, 233, 137, 153, 162, 236, + 212, 27, 234, 237, 116, 0, 93, 71, 112, 73, 255, 191, 27, 43, 100, 38, 222, 129, 132, 171, 4, 71, 145, 66, 228, + 41, 22, 164, 187, 27, 104, 154, 75, 159, 29, 235, 117, 163, 76, 139, 252, 21, 140, 56, 78, 85, 173, 58, 125, 123, + 75, 255, 255, 255, 216, 102, 159, 27, 4, 101, 141, 220, 9, 13, 151, 54, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3627, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4442330914698251359" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18224411137444829438" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12993960535659665798" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11573097497008228123" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14279472382520374886" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31701076a3739b1d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17639761546684038999" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fabe5616da553786" + } + ] + } + } + ] + }, + "cborHex": "bf1b3da6546e31534c5fd8669f1bfcea1d5f581258fe9f1bb453d243217059861ba09be6db4c23471bffff1bc62ae079dc20b6664831701076a3739b1d1bf4cd05aad0b27f579f48fabe5616da553786ffff", + "cborBytes": [ + 191, 27, 61, 166, 84, 110, 49, 83, 76, 95, 216, 102, 159, 27, 252, 234, 29, 95, 88, 18, 88, 254, 159, 27, 180, 83, + 210, 67, 33, 112, 89, 134, 27, 160, 155, 230, 219, 76, 35, 71, 27, 255, 255, 27, 198, 42, 224, 121, 220, 32, 182, + 102, 72, 49, 112, 16, 118, 163, 115, 155, 29, 27, 244, 205, 5, 170, 208, 178, 127, 87, 159, 72, 250, 190, 86, 22, + 218, 85, 55, 134, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3628, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3200250070622183896" + } + }, + "cborHex": "1b2c69927bcbdaa1d8", + "cborBytes": [27, 44, 105, 146, 123, 203, 218, 161, 216], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3629, + "sample": { + "_tag": "ByteArray", + "bytearray": "54fcad533316056a862adc59" + }, + "cborHex": "4c54fcad533316056a862adc59", + "cborBytes": [76, 84, 252, 173, 83, 51, 22, 5, 106, 134, 42, 220, 89], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3630, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [] + }, + "cborHex": "d9050680", + "cborBytes": [217, 5, 6, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3631, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5519777558243333874" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2137307940847653753" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "452042122594576290" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3524526364543316360" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8638367181424214708" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e5779d5a357fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4884a851b0f85355" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c19aa564" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7119017303736700610" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3437577090643070182" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13570538810624070796" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b4c9a3071b64456f29f41d6bf1b1da93e3f8dd893791b0645f9ea5cc367a21b30e9a20e081a71881b77e1a52ef82ec2b4478e5779d5a357fd484884a851b0f8535544c19aa5641b62cbd4850315cec2ff9fbf1b2fb4ba269fcd0ce61bbc543d2601e6548cffffffff", + "cborBytes": [ + 216, 102, 159, 27, 76, 154, 48, 113, 182, 68, 86, 242, 159, 65, 214, 191, 27, 29, 169, 62, 63, 141, 216, 147, 121, + 27, 6, 69, 249, 234, 92, 195, 103, 162, 27, 48, 233, 162, 14, 8, 26, 113, 136, 27, 119, 225, 165, 46, 248, 46, + 194, 180, 71, 142, 87, 121, 213, 163, 87, 253, 72, 72, 132, 168, 81, 176, 248, 83, 85, 68, 193, 154, 165, 100, 27, + 98, 203, 212, 133, 3, 21, 206, 194, 255, 159, 191, 27, 47, 180, 186, 38, 159, 205, 12, 230, 27, 188, 84, 61, 38, + 1, 230, 84, 140, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3632, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be2c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "157318270409811190" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91f7b5023e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14332143358110401566" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3087078822595731465" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9364827133116141408" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "58" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2782310334048803614" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d554f359ee1088966" + } + ] + }, + "cborHex": "9f42be2cbf1b022ee8222874a4f64591f7b5023e1bc6e600730225041e1b2ad781d546732009ffd8669f1b81f68ca91c53cf609f4158ffff1b269cc081ebe09b1e492d554f359ee1088966ff", + "cborBytes": [ + 159, 66, 190, 44, 191, 27, 2, 46, 232, 34, 40, 116, 164, 246, 69, 145, 247, 181, 2, 62, 27, 198, 230, 0, 115, 2, + 37, 4, 30, 27, 42, 215, 129, 213, 70, 115, 32, 9, 255, 216, 102, 159, 27, 129, 246, 140, 169, 28, 83, 207, 96, + 159, 65, 88, 255, 255, 27, 38, 156, 192, 129, 235, 224, 155, 30, 73, 45, 85, 79, 53, 158, 225, 8, 137, 102, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3633, + "sample": { + "_tag": "ByteArray", + "bytearray": "85f5178f" + }, + "cborHex": "4485f5178f", + "cborBytes": [68, 133, 245, 23, 143], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3634, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13739835634411572530" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14622023961933807776" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aae2668a90b675318b4f5088" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15" + } + } + ] + }, + "cborHex": "bf1bbeadb3b6755b0d321bcaebdd52945080a04caae2668a90b675318b4f50884115ff", + "cborBytes": [ + 191, 27, 190, 173, 179, 182, 117, 91, 13, 50, 27, 202, 235, 221, 82, 148, 80, 128, 160, 76, 170, 226, 102, 138, + 144, 182, 117, 49, 139, 79, 80, 136, 65, 21, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3635, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06e329c98f555ccd50c94ea1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12222746654629705092" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1097" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9425348227306556033" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f30a482cfb9d517a4890" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6109956196770316067" + } + }, + { + "_tag": "ByteArray", + "bytearray": "517e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15558921258325612914" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "328a8cd93a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16937373742051831004" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36d63081e45d5b70" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16079789677105456008" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "06b44361b4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17551749528112845582" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9454792417688662966" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "375528f0027978706fcd4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "633baa5fc024444fdd34" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5846ac85644f2292" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3056ea73fae1042929d921" + } + } + ] + }, + "cborHex": "bf4c06e329c98f555ccd50c94ea11ba99feb52d0cc3584421097d8669f1b82cd90466cf70a819f4af30a482cfb9d517a48901b54caecc9fdb0ff2342517e1bd7ec647322c59972ffff45328a8cd93a1beb0da3ae2b072cdc4836d63081e45d5b70d8669f1bdf26e38456dd23889f4506b44361b41bf3945733e1cbd30e1b83362b9c3963b3b6ffff4b375528f0027978706fcd4c4a633baa5fc024444fdd34485846ac85644f22924b3056ea73fae1042929d921ff", + "cborBytes": [ + 191, 76, 6, 227, 41, 201, 143, 85, 92, 205, 80, 201, 78, 161, 27, 169, 159, 235, 82, 208, 204, 53, 132, 66, 16, + 151, 216, 102, 159, 27, 130, 205, 144, 70, 108, 247, 10, 129, 159, 74, 243, 10, 72, 44, 251, 157, 81, 122, 72, + 144, 27, 84, 202, 236, 201, 253, 176, 255, 35, 66, 81, 126, 27, 215, 236, 100, 115, 34, 197, 153, 114, 255, 255, + 69, 50, 138, 140, 217, 58, 27, 235, 13, 163, 174, 43, 7, 44, 220, 72, 54, 214, 48, 129, 228, 93, 91, 112, 216, + 102, 159, 27, 223, 38, 227, 132, 86, 221, 35, 136, 159, 69, 6, 180, 67, 97, 180, 27, 243, 148, 87, 51, 225, 203, + 211, 14, 27, 131, 54, 43, 156, 57, 99, 179, 182, 255, 255, 75, 55, 85, 40, 240, 2, 121, 120, 112, 111, 205, 76, + 74, 99, 59, 170, 95, 192, 36, 68, 79, 221, 52, 72, 88, 70, 172, 133, 100, 79, 34, 146, 75, 48, 86, 234, 115, 250, + 225, 4, 41, 41, 217, 33, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3636, + "sample": { + "_tag": "ByteArray", + "bytearray": "040502c66ffd04fd21" + }, + "cborHex": "49040502c66ffd04fd21", + "cborBytes": [73, 4, 5, 2, 198, 111, 253, 4, 253, 33], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3637, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "311fdca9ce51" + } + } + ] + }, + "cborHex": "bf41f446311fdca9ce51ff", + "cborBytes": [191, 65, 244, 70, 49, 31, 220, 169, 206, 81, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3638, + "sample": { + "_tag": "ByteArray", + "bytearray": "ac01ebf9f9c66f0203f8fe01" + }, + "cborHex": "4cac01ebf9f9c66f0203f8fe01", + "cborBytes": [76, 172, 1, 235, 249, 249, 198, 111, 2, 3, 248, 254, 1], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3639, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5250d4ef" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11784374467358465394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3535346188591132187" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17665660168632718892" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab7521b22f00a5692aa2b1" + } + } + ] + } + } + ] + }, + "cborHex": "bf445250d4efbf1ba38a82244b159d721b311012a0a1016e1b1bf5290853a21ed62c4bab7521b22f00a5692aa2b1ffff", + "cborBytes": [ + 191, 68, 82, 80, 212, 239, 191, 27, 163, 138, 130, 36, 75, 21, 157, 114, 27, 49, 16, 18, 160, 161, 1, 110, 27, 27, + 245, 41, 8, 83, 162, 30, 214, 44, 75, 171, 117, 33, 178, 47, 0, 165, 105, 42, 162, 177, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3640, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10015477944608602781" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f07" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4296611284074354010" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9467881326403065456" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6313d8396642dbdd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1951398761075828423" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3b9ef387440b9afc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4967040123641762472" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "715a3aebc259189f6b92" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2881670724019864565" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10227302205352557530" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17836875440208237779" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02d72fa93516" + }, + { + "_tag": "ByteArray", + "bytearray": "3a38" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e97a969d33b9aad6625f0f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7991831126335445375" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf41069f1b8afe20205827ba9dff423f07bf1b3ba0a132cd2fd55a1b8364abe743cf1670ff486313d8396642dbdd9f1b1b14c2d5910fe6c7483b9ef387440b9afc1b44ee78ad0ac792a8ff4a715a3aebc259189f6b929f1b27fdc04178d8c3f51b8deead2b509bbbda1bf7894fb5848054d34602d72fa93516423a38ff4be97a969d33b9aad6625f0fd8669f1b6ee8b0111e22597f80ffff", + "cborBytes": [ + 191, 65, 6, 159, 27, 138, 254, 32, 32, 88, 39, 186, 157, 255, 66, 63, 7, 191, 27, 59, 160, 161, 50, 205, 47, 213, + 90, 27, 131, 100, 171, 231, 67, 207, 22, 112, 255, 72, 99, 19, 216, 57, 102, 66, 219, 221, 159, 27, 27, 20, 194, + 213, 145, 15, 230, 199, 72, 59, 158, 243, 135, 68, 11, 154, 252, 27, 68, 238, 120, 173, 10, 199, 146, 168, 255, + 74, 113, 90, 58, 235, 194, 89, 24, 159, 107, 146, 159, 27, 39, 253, 192, 65, 120, 216, 195, 245, 27, 141, 238, + 173, 43, 80, 155, 187, 218, 27, 247, 137, 79, 181, 132, 128, 84, 211, 70, 2, 215, 47, 169, 53, 22, 66, 58, 56, + 255, 75, 233, 122, 150, 157, 51, 185, 170, 214, 98, 95, 15, 216, 102, 159, 27, 110, 232, 176, 17, 30, 34, 89, 127, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3641, + "sample": { + "_tag": "ByteArray", + "bytearray": "54a347c43f9b6a32" + }, + "cborHex": "4854a347c43f9b6a32", + "cborBytes": [72, 84, 163, 71, 196, 63, 155, 106, 50], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3642, + "sample": { + "_tag": "ByteArray", + "bytearray": "a300" + }, + "cborHex": "42a300", + "cborBytes": [66, 163, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3643, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03194c64a8bf1dea" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2227305100343187393" + } + }, + { + "_tag": "ByteArray", + "bytearray": "58a047b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "692308666429648873" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8704081725361130495" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84dade293e3062b3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2014644b6009d6e2cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a190e6f78d0f2b925" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16449128792199490508" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4448216077398980786" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3937470490097671915" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cecd69604d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f92a95e515ab8a7e9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "daa1e769df3fcc83ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "232881941521140766" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4ed6a52f856" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "025f5e84bec91ad0a5563d13" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5687170801573323510" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cdd3cb0fcfe27d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46f379" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aed832c51f80e4f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8910036724861781694" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d635171e2e9d464f26" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e531a0ed36e64f1853a7b6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7887323390368933163" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd6cef900bca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5862344179941809284" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8485135059276786104" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14525918698048834208" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2df83733124e80a855" + }, + { + "_tag": "ByteArray", + "bytearray": "99fc733aa7346f52f677" + }, + { + "_tag": "ByteArray", + "bytearray": "9fcf721efa2907c90d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4e592fb958e67" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7263613487012330800" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10845308178602604298" + } + } + ] + } + } + ] + }, + "cborHex": "bf4803194c64a8bf1dea9f1b1ee8fa30205f17c14458a047b61b099b93106976afe91b78cb1c36881e8bffff4884dade293e3062b3bf492014644b6009d6e2cb41e4498a190e6f78d0f2b9251be4470b7c3bb36bcc41b01b3dbb3cf4698c38b241c21b36a4b48c93dadeeb45cecd69604d494f92a95e515ab8a7e949daa1e769df3fcc83ed1b033b5ce456f88c1eff46c4ed6a52f856bf4c025f5e84bec91ad0a5563d131b4eece3b64cc062f6489cdd3cb0fcfe27d64346f37948aed832c51f80e4f11b7ba6cf31a11246be49d635171e2e9d464f264be531a0ed36e64f1853a7b641de1b6d7566d5af91e52b46fd6cef900bca1b515b3af8bc829c84ff41dbd8669f1b75c141615767e9b89f1bc9966e182167caa0492df83733124e80a8554a99fc733aa7346f52f677499fcf721efa2907c90dffff47f4e592fb958e67d8669f1b64cd89fb6f1b3d309f1b96824653d93f370affffff", + "cborBytes": [ + 191, 72, 3, 25, 76, 100, 168, 191, 29, 234, 159, 27, 30, 232, 250, 48, 32, 95, 23, 193, 68, 88, 160, 71, 182, 27, + 9, 155, 147, 16, 105, 118, 175, 233, 27, 120, 203, 28, 54, 136, 30, 139, 255, 255, 72, 132, 218, 222, 41, 62, 48, + 98, 179, 191, 73, 32, 20, 100, 75, 96, 9, 214, 226, 203, 65, 228, 73, 138, 25, 14, 111, 120, 208, 242, 185, 37, + 27, 228, 71, 11, 124, 59, 179, 107, 204, 65, 176, 27, 61, 187, 60, 244, 105, 140, 56, 178, 65, 194, 27, 54, 164, + 180, 140, 147, 218, 222, 235, 69, 206, 205, 105, 96, 77, 73, 79, 146, 169, 94, 81, 90, 184, 167, 233, 73, 218, + 161, 231, 105, 223, 63, 204, 131, 237, 27, 3, 59, 92, 228, 86, 248, 140, 30, 255, 70, 196, 237, 106, 82, 248, 86, + 191, 76, 2, 95, 94, 132, 190, 201, 26, 208, 165, 86, 61, 19, 27, 78, 236, 227, 182, 76, 192, 98, 246, 72, 156, + 221, 60, 176, 252, 254, 39, 214, 67, 70, 243, 121, 72, 174, 216, 50, 197, 31, 128, 228, 241, 27, 123, 166, 207, + 49, 161, 18, 70, 190, 73, 214, 53, 23, 30, 46, 157, 70, 79, 38, 75, 229, 49, 160, 237, 54, 230, 79, 24, 83, 167, + 182, 65, 222, 27, 109, 117, 102, 213, 175, 145, 229, 43, 70, 253, 108, 239, 144, 11, 202, 27, 81, 91, 58, 248, + 188, 130, 156, 132, 255, 65, 219, 216, 102, 159, 27, 117, 193, 65, 97, 87, 103, 233, 184, 159, 27, 201, 150, 110, + 24, 33, 103, 202, 160, 73, 45, 248, 55, 51, 18, 78, 128, 168, 85, 74, 153, 252, 115, 58, 167, 52, 111, 82, 246, + 119, 73, 159, 207, 114, 30, 250, 41, 7, 201, 13, 255, 255, 71, 244, 229, 146, 251, 149, 142, 103, 216, 102, 159, + 27, 100, 205, 137, 251, 111, 27, 61, 48, 159, 27, 150, 130, 70, 83, 217, 63, 55, 10, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3644, + "sample": { + "_tag": "ByteArray", + "bytearray": "ee223a4f" + }, + "cborHex": "44ee223a4f", + "cborBytes": [68, 238, 34, 58, 79], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3645, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "884197241524815696" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15377972727677102430" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f044648556f16453b39b992" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "512038088861804441" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1dd0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12541929290112927678" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "764635256922226440" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15642473861876802179" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5478996286102623014" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7031537499540725626" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2237568809577825545" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ba1c926f896" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8def" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + }, + "cborHex": "d8669f1b0c454cb4dc7787509fd87d9f9f1bd56988b846d6a95e4c8f044648556f16453b39b9921b071b1fedce13e799421dd01bae0de23d473f87beffd8669f1b0a9c87b70796bf0880ffd8669f1bd9153b19997fe2839f1b4c094e17ded4d3261b61950a19e4f69f7a1b1f0d70fa27614509ffffffbf465ba1c926f896428defff03ffff", + "cborBytes": [ + 216, 102, 159, 27, 12, 69, 76, 180, 220, 119, 135, 80, 159, 216, 125, 159, 159, 27, 213, 105, 136, 184, 70, 214, + 169, 94, 76, 143, 4, 70, 72, 85, 111, 22, 69, 59, 57, 185, 146, 27, 7, 27, 31, 237, 206, 19, 231, 153, 66, 29, + 208, 27, 174, 13, 226, 61, 71, 63, 135, 190, 255, 216, 102, 159, 27, 10, 156, 135, 183, 7, 150, 191, 8, 128, 255, + 216, 102, 159, 27, 217, 21, 59, 25, 153, 127, 226, 131, 159, 27, 76, 9, 78, 23, 222, 212, 211, 38, 27, 97, 149, + 10, 25, 228, 246, 159, 122, 27, 31, 13, 112, 250, 39, 97, 69, 9, 255, 255, 255, 191, 70, 91, 161, 201, 38, 248, + 150, 66, 141, 239, 255, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3646, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "010557" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13597577018384145736" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e71221074aa0678" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16816496496992719224" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4730733752443135595" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f769c6b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2633053536713108184" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0e0cb7ccd5d2" + }, + { + "_tag": "ByteArray", + "bytearray": "39d66f3e8c6f8d8133" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17128290244998227919" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff9243b4a4" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9945131654467463825" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16977398581586333172" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "eefd0303cbfb01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + } + ] + }, + "cborHex": "9f43010557d8669f1bbcb44c4152cd5d489f80bf489e71221074aa06781be960327765da1178ffd8669f1b41a6f1488952e66b9f44f769c6b01b248a7c3dba5eead8460e0cb7ccd5d24939d66f3e8c6f8d8133ffffd8669f1bedb3e93a6ee867cf9f45ff9243b4a4ffff9f1b8a04348c5506aa911beb9bd60f51ac8df4ffffffbf47eefd0303cbfb0103ffff", + "cborBytes": [ + 159, 67, 1, 5, 87, 216, 102, 159, 27, 188, 180, 76, 65, 82, 205, 93, 72, 159, 128, 191, 72, 158, 113, 34, 16, 116, + 170, 6, 120, 27, 233, 96, 50, 119, 101, 218, 17, 120, 255, 216, 102, 159, 27, 65, 166, 241, 72, 137, 82, 230, 107, + 159, 68, 247, 105, 198, 176, 27, 36, 138, 124, 61, 186, 94, 234, 216, 70, 14, 12, 183, 204, 213, 210, 73, 57, 214, + 111, 62, 140, 111, 141, 129, 51, 255, 255, 216, 102, 159, 27, 237, 179, 233, 58, 110, 232, 103, 207, 159, 69, 255, + 146, 67, 180, 164, 255, 255, 159, 27, 138, 4, 52, 140, 85, 6, 170, 145, 27, 235, 155, 214, 15, 81, 172, 141, 244, + 255, 255, 255, 191, 71, 238, 253, 3, 3, 203, 251, 1, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3647, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18127735510266375843" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4694397670490811342" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7328110964642199212" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7792230574593022423" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a6747" + }, + { + "_tag": "ByteArray", + "bytearray": "7e891657b62c2aeca8" + } + ] + } + } + ] + }, + "cborHex": "bf1bfb92a766d7a96ea39f1b4125d9cf3006abce1b65b2ae18aa24b6ac1b6c23906c2e8e19d7430a6747497e891657b62c2aeca8ffff", + "cborBytes": [ + 191, 27, 251, 146, 167, 102, 215, 169, 110, 163, 159, 27, 65, 37, 217, 207, 48, 6, 171, 206, 27, 101, 178, 174, + 24, 170, 36, 182, 172, 27, 108, 35, 144, 108, 46, 142, 25, 215, 67, 10, 103, 71, 73, 126, 137, 22, 87, 182, 44, + 42, 236, 168, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3648, + "sample": { + "_tag": "ByteArray", + "bytearray": "518d" + }, + "cborHex": "42518d", + "cborBytes": [66, 81, 141], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3649, + "sample": { + "_tag": "ByteArray", + "bytearray": "04b2492f" + }, + "cborHex": "4404b2492f", + "cborBytes": [68, 4, 178, 73, 47], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3650, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1367d48fae" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5152013909023878605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdfa8c053f7f37da72" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6786775049690199849" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef75e5a992" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11170668101250449209" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3914567251227335591" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43398d5f4a2ff967b1156c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10436646299465559679" + } + } + } + ] + }, + "cborHex": "bf451367d48faebf1b477fa15a8d3d6dcd49bdfa8c053f7f37da721b5e2f77f32744b72945ef75e5a9921b9b062f740ed1ff391b3653562cbac85ba7ff4b43398d5f4a2ff967b1156c1b90d66a837e0a2e7fff", + "cborBytes": [ + 191, 69, 19, 103, 212, 143, 174, 191, 27, 71, 127, 161, 90, 141, 61, 109, 205, 73, 189, 250, 140, 5, 63, 127, 55, + 218, 114, 27, 94, 47, 119, 243, 39, 68, 183, 41, 69, 239, 117, 229, 169, 146, 27, 155, 6, 47, 116, 14, 209, 255, + 57, 27, 54, 83, 86, 44, 186, 200, 91, 167, 255, 75, 67, 57, 141, 95, 74, 47, 249, 103, 177, 21, 108, 27, 144, 214, + 106, 131, 126, 10, 46, 127, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3651, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "050700021506" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12295803256192298086" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98a70c10e4fd081dac" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0706f3aa490567f4" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c94cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15158180068337366384" + } + } + } + ] + }, + "cborHex": "bf46050700021506bf1baaa377ea616eec664998a70c10e4fd081dacff480706f3aa490567f480437c94cb1bd25cac75eea7b570ff", + "cborBytes": [ + 191, 70, 5, 7, 0, 2, 21, 6, 191, 27, 170, 163, 119, 234, 97, 110, 236, 102, 73, 152, 167, 12, 16, 228, 253, 8, 29, + 172, 255, 72, 7, 6, 243, 170, 73, 5, 103, 244, 128, 67, 124, 148, 203, 27, 210, 92, 172, 117, 238, 167, 181, 112, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3652, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6134812947548680910" + } + }, + "cborHex": "1b55233bdf461b32ce", + "cborBytes": [27, 85, 35, 59, 223, 70, 27, 50, 206], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3653, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + }, + "cborHex": "bf0e10ff", + "cborBytes": [191, 14, 16, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3654, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1c9afe541f4f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1299698183988149469" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "420433105694939720" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d2543ec2c65" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17647366167524907534" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1ecace49035969e91" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10599518345948587960" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd90e2d8c0c670" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6d139864f2a9699391600" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ef1764850adfd35bd771af5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8b6ba1cab0aa8a24a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5bdd6a30f64ec0bf7b" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9349998080385284122" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12895676945017193679" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "811eb1f552bcd1875263a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12847225173587490694" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0339c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11456895898898423769" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f66ad8bd8a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9974e74913e5847022a553" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6740260430589411739" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3369488536715203080" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "209109282683607067" + } + } + ] + } + ] + }, + "cborHex": "9fa09fbf47b1c9afe541f4f31b1209749cbbd57cddff1b05d5adae9cc2da48bf462d2543ec2c651bf4e80a0794919a0e49c1ecace49035969e911b93190dc6e88067b847cd90e2d8c0c67041304bd6d139864f2a96993916004c8ef1764850adfd35bd771af549e8b6ba1cab0aa8a24a495bdd6a30f64ec0bf7bffbf1b81c1ddb737f2f81a1bb2f6a5db75f1c4cf4b811eb1f552bcd1875263a01bb24a833a5523778643e0339c1b9eff121e6a785fd945f66ad8bd8a4b9974e74913e5847022a553ff1b5d8a372672e7419bffd8669f1b2ec2d3f8c9a912089f1b02e6e7c8e197d81bffffff", + "cborBytes": [ + 159, 160, 159, 191, 71, 177, 201, 175, 229, 65, 244, 243, 27, 18, 9, 116, 156, 187, 213, 124, 221, 255, 27, 5, + 213, 173, 174, 156, 194, 218, 72, 191, 70, 45, 37, 67, 236, 44, 101, 27, 244, 232, 10, 7, 148, 145, 154, 14, 73, + 193, 236, 172, 228, 144, 53, 150, 158, 145, 27, 147, 25, 13, 198, 232, 128, 103, 184, 71, 205, 144, 226, 216, 192, + 198, 112, 65, 48, 75, 214, 209, 57, 134, 79, 42, 150, 153, 57, 22, 0, 76, 142, 241, 118, 72, 80, 173, 253, 53, + 189, 119, 26, 245, 73, 232, 182, 186, 28, 171, 10, 168, 162, 74, 73, 91, 221, 106, 48, 246, 78, 192, 191, 123, + 255, 191, 27, 129, 193, 221, 183, 55, 242, 248, 26, 27, 178, 246, 165, 219, 117, 241, 196, 207, 75, 129, 30, 177, + 245, 82, 188, 209, 135, 82, 99, 160, 27, 178, 74, 131, 58, 85, 35, 119, 134, 67, 224, 51, 156, 27, 158, 255, 18, + 30, 106, 120, 95, 217, 69, 246, 106, 216, 189, 138, 75, 153, 116, 231, 73, 19, 229, 132, 112, 34, 165, 83, 255, + 27, 93, 138, 55, 38, 114, 231, 65, 155, 255, 216, 102, 159, 27, 46, 194, 211, 248, 201, 169, 18, 8, 159, 27, 2, + 230, 231, 200, 225, 151, 216, 27, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3655, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c88cb8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7244dbd4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18355549913898171220" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9597398215974749608" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dcc943" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4961511178892214958" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11181657514737353554" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a75abf7787a41084" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18304529607032253821" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16898513272466960034" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8532885325489166515" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11154467366909217419" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7fee3d" + }, + { + "_tag": "ByteArray", + "bytearray": "98115bc5a8" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16648250384744373087" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14281017664612895845" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3783000972648689668" + } + }, + { + "_tag": "ByteArray", + "bytearray": "30cfad" + }, + { + "_tag": "ByteArray", + "bytearray": "62cb5919ecbc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6598677417573956279" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1aaf8f97502349b76b3e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09da5450d205b7a2e5" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1505299161e0dcc756d0f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c0119495b9dcf7e2dad9f10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13890131236080384124" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4e69a9352e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4165359398811751099" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf43c88cb8412cff447244dbd49fd8669f1bfebc036512da3b549f1b8530ced4072485a843dcc9431b44dad421470002aeffffd8669f1b9b2d3a4445ff43529f48a75abf7787a41084ffffd8669f1bfe06c0b22fc72d7d9f1bea83944a059deea21b766ae5fe8eecd8b31b9acca0f8a74f8a8b437fee3d4598115bc5a8ffffd8669f1be70a7784ca72db5f9f1bc6305de6e2548c651b347feb5767aeb0044330cfad4662cb5919ecbc1b5b93362665e33ab7ffffffbf4bc1aaf8f97502349b76b3e34909da5450d205b7a2e5ffbf4b1505299161e0dcc756d0f3418a4c7c0119495b9dcf7e2dad9f101bc0c3a8c42220f87c46a4e69a9352e31b39ce544de00252bbffff", + "cborBytes": [ + 159, 191, 67, 200, 140, 184, 65, 44, 255, 68, 114, 68, 219, 212, 159, 216, 102, 159, 27, 254, 188, 3, 101, 18, + 218, 59, 84, 159, 27, 133, 48, 206, 212, 7, 36, 133, 168, 67, 220, 201, 67, 27, 68, 218, 212, 33, 71, 0, 2, 174, + 255, 255, 216, 102, 159, 27, 155, 45, 58, 68, 69, 255, 67, 82, 159, 72, 167, 90, 191, 119, 135, 164, 16, 132, 255, + 255, 216, 102, 159, 27, 254, 6, 192, 178, 47, 199, 45, 125, 159, 27, 234, 131, 148, 74, 5, 157, 238, 162, 27, 118, + 106, 229, 254, 142, 236, 216, 179, 27, 154, 204, 160, 248, 167, 79, 138, 139, 67, 127, 238, 61, 69, 152, 17, 91, + 197, 168, 255, 255, 216, 102, 159, 27, 231, 10, 119, 132, 202, 114, 219, 95, 159, 27, 198, 48, 93, 230, 226, 84, + 140, 101, 27, 52, 127, 235, 87, 103, 174, 176, 4, 67, 48, 207, 173, 70, 98, 203, 89, 25, 236, 188, 27, 91, 147, + 54, 38, 101, 227, 58, 183, 255, 255, 255, 191, 75, 193, 170, 248, 249, 117, 2, 52, 155, 118, 179, 227, 73, 9, 218, + 84, 80, 210, 5, 183, 162, 229, 255, 191, 75, 21, 5, 41, 145, 97, 224, 220, 199, 86, 208, 243, 65, 138, 76, 124, 1, + 25, 73, 91, 157, 207, 126, 45, 173, 159, 16, 27, 192, 195, 168, 196, 34, 32, 248, 124, 70, 164, 230, 154, 147, 82, + 227, 27, 57, 206, 84, 77, 224, 2, 82, 187, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3656, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13111107227004642924" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7312502020410474467" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3639345685511538837" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13613864812710934114" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1035876436656276525" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15237136608259183679" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4081139177527568980" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c677e87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7653289431016962477" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16892477871221508025" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bb27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11435581915250235983" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "afc63646fc0149d4d5c3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15695533005575273663" + } + } + ] + }, + "cborHex": "9f1bb5f4028eadab266c1b657b39d821e47fe3d8669f1b32818d9e6fc408959f1bbcee29eaf5d336621b0e602c217e18442dbf1bd3752f03f163943f1b38a31e758b75ea54445c677e8741dcff9f1b6a35f2304b0479ad1bea6e231faa4e07b942bb271b9eb35929e25f1a4fffffff4aafc63646fc0149d4d5c31bd9d1bc1c2dbbbcbfff", + "cborBytes": [ + 159, 27, 181, 244, 2, 142, 173, 171, 38, 108, 27, 101, 123, 57, 216, 33, 228, 127, 227, 216, 102, 159, 27, 50, + 129, 141, 158, 111, 196, 8, 149, 159, 27, 188, 238, 41, 234, 245, 211, 54, 98, 27, 14, 96, 44, 33, 126, 24, 68, + 45, 191, 27, 211, 117, 47, 3, 241, 99, 148, 63, 27, 56, 163, 30, 117, 139, 117, 234, 84, 68, 92, 103, 126, 135, + 65, 220, 255, 159, 27, 106, 53, 242, 48, 75, 4, 121, 173, 27, 234, 110, 35, 31, 170, 78, 7, 185, 66, 187, 39, 27, + 158, 179, 89, 41, 226, 95, 26, 79, 255, 255, 255, 74, 175, 198, 54, 70, 252, 1, 73, 212, 213, 195, 27, 217, 209, + 188, 28, 45, 187, 188, 191, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3657, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4062816355568199109" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6680071105912293269" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7496568621866048168" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18347525123859621832" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8834952643788489828" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15364416985583503730" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7770060204781681675" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16083736614036862594" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b8adb64de58447e82abff6e9" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17170786239455361192" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4089718defc34f52d6" + } + } + ] + }, + "cborHex": "bf1b386205f31d4a25c51b5cb461473e40c7951b680929716caa5aa81bfe9f80e40b3527c81b7a9c0e9eb4694464d8669f1bd5395fd81eaec9729f1b6bd4cc96b5693c0b1bdf34e93c349c76824cb8adb64de58447e82abff6e9ffff1bee4ae31c2ce6f8a8494089718defc34f52d6ff", + "cborBytes": [ + 191, 27, 56, 98, 5, 243, 29, 74, 37, 197, 27, 92, 180, 97, 71, 62, 64, 199, 149, 27, 104, 9, 41, 113, 108, 170, + 90, 168, 27, 254, 159, 128, 228, 11, 53, 39, 200, 27, 122, 156, 14, 158, 180, 105, 68, 100, 216, 102, 159, 27, + 213, 57, 95, 216, 30, 174, 201, 114, 159, 27, 107, 212, 204, 150, 181, 105, 60, 11, 27, 223, 52, 233, 60, 52, 156, + 118, 130, 76, 184, 173, 182, 77, 229, 132, 71, 232, 42, 191, 246, 233, 255, 255, 27, 238, 74, 227, 28, 44, 230, + 248, 168, 73, 64, 137, 113, 141, 239, 195, 79, 82, 214, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3658, + "sample": { + "_tag": "ByteArray", + "bytearray": "ea6bb080f06b65438278" + }, + "cborHex": "4aea6bb080f06b65438278", + "cborBytes": [74, 234, 107, 176, 128, 240, 107, 101, 67, 130, 120], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3659, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "31c2efe84c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13789120432914281455" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4919485454152761020" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f079ed1ae" + }, + { + "_tag": "ByteArray", + "bytearray": "5c543857b350e2e1" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "eb7cedaa8de7daf387dc" + }, + { + "_tag": "ByteArray", + "bytearray": "956101" + } + ] + } + ] + }, + "cborHex": "d905049f4531c2efe84c9fd8669f1bbf5ccbf9d0efb3ef9f1b444585f4bc79febc454f079ed1ae485c543857b350e2e1ffffa04aeb7cedaa8de7daf387dc43956101ffff", + "cborBytes": [ + 217, 5, 4, 159, 69, 49, 194, 239, 232, 76, 159, 216, 102, 159, 27, 191, 92, 203, 249, 208, 239, 179, 239, 159, 27, + 68, 69, 133, 244, 188, 121, 254, 188, 69, 79, 7, 158, 209, 174, 72, 92, 84, 56, 87, 179, 80, 226, 225, 255, 255, + 160, 74, 235, 124, 237, 170, 141, 231, 218, 243, 135, 220, 67, 149, 97, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3660, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02fa07" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17857221593063985414" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8268849672727161776" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8184775470502106189" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e016e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10017014716721435141" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "069f00fcfc8006" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13048297478280043619" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56c9f470bc49ae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15319488889507861210" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15646876277626306532" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0e9f4302fa07ff1bfffffffffffffff01bf7d1986d620391061bfffffffffffffff51b72c0daf79401ebb01bfffffffffffffffdbf0d0b1b719629ecf59bd44d439e016e1b8b0395cffc0a920547069f00fcfc80061bb514dd6c7481dc634756c9f470bc49ae1bd499c1fa97a8d2da1bd924df12e466ffe4ffff", + "cborBytes": [ + 191, 14, 159, 67, 2, 250, 7, 255, 27, 255, 255, 255, 255, 255, 255, 255, 240, 27, 247, 209, 152, 109, 98, 3, 145, + 6, 27, 255, 255, 255, 255, 255, 255, 255, 245, 27, 114, 192, 218, 247, 148, 1, 235, 176, 27, 255, 255, 255, 255, + 255, 255, 255, 253, 191, 13, 11, 27, 113, 150, 41, 236, 245, 155, 212, 77, 67, 158, 1, 110, 27, 139, 3, 149, 207, + 252, 10, 146, 5, 71, 6, 159, 0, 252, 252, 128, 6, 27, 181, 20, 221, 108, 116, 129, 220, 99, 71, 86, 201, 244, 112, + 188, 73, 174, 27, 212, 153, 193, 250, 151, 168, 210, 218, 27, 217, 36, 223, 18, 228, 102, 255, 228, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3661, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16846832195912763426" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17266998579462429631" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "41fd136fc708" + }, + { + "_tag": "ByteArray", + "bytearray": "1853" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15800090199002452356" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7ef0b4eca240c5512ace" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7fbfe920404012d0683ff48" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3adfe630f5507ead71d1cd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11100307792754245806" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "183127319460815982" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1be9cbf89fb3fe88229fd8669f1befa0b3b93a085bbf9f4641fd136fc7084218531bdb453252d2ac11844a7ef0b4eca240c5512aceffffffffbf014ce7fbfe920404012d0683ff48104b3adfe630f5507ead71d1cd1b9a0c3720249e00ae1b028a9953a921a46effff", + "cborBytes": [ + 159, 216, 102, 159, 27, 233, 203, 248, 159, 179, 254, 136, 34, 159, 216, 102, 159, 27, 239, 160, 179, 185, 58, 8, + 91, 191, 159, 70, 65, 253, 19, 111, 199, 8, 66, 24, 83, 27, 219, 69, 50, 82, 210, 172, 17, 132, 74, 126, 240, 180, + 236, 162, 64, 197, 81, 42, 206, 255, 255, 255, 255, 191, 1, 76, 231, 251, 254, 146, 4, 4, 1, 45, 6, 131, 255, 72, + 16, 75, 58, 223, 230, 48, 245, 80, 126, 173, 113, 209, 205, 27, 154, 12, 55, 32, 36, 158, 0, 174, 27, 2, 138, 153, + 83, 169, 33, 164, 110, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3662, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11630195151734943108" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5e647c50a27fd9" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16254761400401065509" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "16" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10702330067807712765" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9285656969257826292" + } + } + ] + }, + "cborHex": "d905029f1ba166c0deffa1ad84475e647c50a27fd9a09fd8669f1be194835f4ba2f62580ff41161b9486507e48a935fdff1b80dd47d0e6be37f4ff", + "cborBytes": [ + 217, 5, 2, 159, 27, 161, 102, 192, 222, 255, 161, 173, 132, 71, 94, 100, 124, 80, 162, 127, 217, 160, 159, 216, + 102, 159, 27, 225, 148, 131, 95, 75, 162, 246, 37, 128, 255, 65, 22, 27, 148, 134, 80, 126, 72, 169, 53, 253, 255, + 27, 128, 221, 71, 208, 230, 190, 55, 244, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3663, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5469821149757472248" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13752721431145616040" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "301b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15991614305140152198" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9095758652183812405" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18280803315859794162" + } + } + ] + }, + "cborHex": "9fbf1b4be8b55af8367df841991bbedb7b46ce5612a842301b1bddeda07bbaef17861b7e3aa04d821a1935ff1bfdb275c28a9b28f2ff", + "cborBytes": [ + 159, 191, 27, 75, 232, 181, 90, 248, 54, 125, 248, 65, 153, 27, 190, 219, 123, 70, 206, 86, 18, 168, 66, 48, 27, + 27, 221, 237, 160, 123, 186, 239, 23, 134, 27, 126, 58, 160, 77, 130, 26, 25, 53, 255, 27, 253, 178, 117, 194, + 138, 155, 40, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3664, + "sample": { + "_tag": "ByteArray", + "bytearray": "aefd" + }, + "cborHex": "42aefd", + "cborBytes": [66, 174, 253], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3665, + "sample": { + "_tag": "ByteArray", + "bytearray": "56f100f824" + }, + "cborHex": "4556f100f824", + "cborBytes": [69, 86, 241, 0, 248, 36], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3666, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "62165d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15979381970677233902" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "01f84bfdf0070370" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14551650744069761642" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13864291543014005289" + } + } + } + ] + } + ] + }, + "cborHex": "9f4362165dd8669f1bddc22b3d6c7f78ee80ff4801f84bfdf0070370bf1bc9f1d940f7d3aa6a1bc067dbb3c3cd5a29ffff", + "cborBytes": [ + 159, 67, 98, 22, 93, 216, 102, 159, 27, 221, 194, 43, 61, 108, 127, 120, 238, 128, 255, 72, 1, 248, 75, 253, 240, + 7, 3, 112, 191, 27, 201, 241, 217, 64, 247, 211, 170, 106, 27, 192, 103, 219, 179, 195, 205, 90, 41, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3667, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "efb070" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3539429124774410147" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15123445537371642063" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e49fb36bf0df34dd834d4e88" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56f62134" + } + } + ] + } + ] + }, + "cborHex": "9f43efb0701b311e940949d9b7a3bf1bd1e14596bb00d8cf41494ce49fb36bf0df34dd834d4e884456f62134ffff", + "cborBytes": [ + 159, 67, 239, 176, 112, 27, 49, 30, 148, 9, 73, 217, 183, 163, 191, 27, 209, 225, 69, 150, 187, 0, 216, 207, 65, + 73, 76, 228, 159, 179, 107, 240, 223, 52, 221, 131, 77, 78, 136, 68, 86, 246, 33, 52, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3668, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "930380334174412087" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1505460977951504916" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c112f24a323" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56c2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87a667ecf4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8999aaf7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa2c121109a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eaf98b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6953282eef0b2ebd15e4d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1bf7fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4e2731c829af85e2049854a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "229e1d33be93a86451" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6d2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8642908634326605922" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12113137310948253007" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14147594128099664561" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "154591242905696510" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14960715841943554203" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c7f9680c" + } + ] + } + } + ] + }, + "cborHex": "bf1b0ce95ffc0c799d37801b14e478c87e02fa14bf462c112f24a3234256c24587a667ecf4448999aaf746aa2c121109a943eaf98b4bc6953282eef0b2ebd15e4d431bf7fd4cd4e2731c829af85e2049854a49229e1d33be93a8645142d6d21b77f1c79c5f31a062ff1ba81a8234c699dd4fd8669f1bc45659e6ffc862b19f1b022537ea96c7b8fe1bcf9f23cb009ac89b44c7f9680cffffff", + "cborBytes": [ + 191, 27, 12, 233, 95, 252, 12, 121, 157, 55, 128, 27, 20, 228, 120, 200, 126, 2, 250, 20, 191, 70, 44, 17, 47, 36, + 163, 35, 66, 86, 194, 69, 135, 166, 103, 236, 244, 68, 137, 153, 170, 247, 70, 170, 44, 18, 17, 9, 169, 67, 234, + 249, 139, 75, 198, 149, 50, 130, 238, 240, 178, 235, 209, 94, 77, 67, 27, 247, 253, 76, 212, 226, 115, 28, 130, + 154, 248, 94, 32, 73, 133, 74, 73, 34, 158, 29, 51, 190, 147, 168, 100, 81, 66, 214, 210, 27, 119, 241, 199, 156, + 95, 49, 160, 98, 255, 27, 168, 26, 130, 52, 198, 153, 221, 79, 216, 102, 159, 27, 196, 86, 89, 230, 255, 200, 98, + 177, 159, 27, 2, 37, 55, 234, 150, 199, 184, 254, 27, 207, 159, 35, 203, 0, 154, 200, 155, 68, 199, 249, 104, 12, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3669, + "sample": { + "_tag": "ByteArray", + "bytearray": "15ab5e35b55a6c592270f7" + }, + "cborHex": "4b15ab5e35b55a6c592270f7", + "cborBytes": [75, 21, 171, 94, 53, 181, 90, 108, 89, 34, 112, 247], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3670, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5067651054444420332" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2210113856936611680" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15060650267749030066" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "70" + } + ] + } + ] + }, + "cborHex": "d8669f1b4653e9c8d1cb1cec9f1b1eabe6d7dbe00f60a080d8669f1bd1022d9faf9298b29f4170ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 70, 83, 233, 200, 209, 203, 28, 236, 159, 27, 30, 171, 230, 215, 219, 224, 15, 96, 160, 128, + 216, 102, 159, 27, 209, 2, 45, 159, 175, 146, 152, 178, 159, 65, 112, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3671, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10846607169661627991" + } + }, + "cborHex": "1b9686e3c0c5e2ee57", + "cborBytes": [27, 150, 134, 227, 192, 197, 226, 238, 87], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3672, + "sample": { + "_tag": "ByteArray", + "bytearray": "07fcf406" + }, + "cborHex": "4407fcf406", + "cborBytes": [68, 7, 252, 244, 6], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3673, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7568359745647186275" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12939269547113994473" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5143953192718045387" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14856471868116457364" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f96a9cc" + }, + { + "_tag": "ByteArray", + "bytearray": "7392a4379088d91c9723" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17469762567621295473" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3444" + } + } + ] + }, + "cborHex": "bf1b69083716fbaa9163a01bb391851910c258e99f1b4762fe2cc93210cb1bce2cca737aaa5794448f96a9cc4a7392a4379088d91c9723ff1bf271107f197bbd71423444ff", + "cborBytes": [ + 191, 27, 105, 8, 55, 22, 251, 170, 145, 99, 160, 27, 179, 145, 133, 25, 16, 194, 88, 233, 159, 27, 71, 98, 254, + 44, 201, 50, 16, 203, 27, 206, 44, 202, 115, 122, 170, 87, 148, 68, 143, 150, 169, 204, 74, 115, 146, 164, 55, + 144, 136, 217, 28, 151, 35, 255, 27, 242, 113, 16, 127, 25, 123, 189, 113, 66, 52, 68, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3674, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "91f6361fdac477f748" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56df3bb2ef37a9f98d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17395441999069527720" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14305541773747971531" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15976661499190473590" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17362378059593567163" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5369690287713421764" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13103563259863846734" + } + } + ] + }, + "cborHex": "d8669f1bffffffffffffffec9f9fbf4991f6361fdac477f7484956df3bb2ef37a9f98dff1bf169065549733ea8bf1bc6877e72ffc265cb1bddb880fc4be87376ff1bf0f38edafa1c4bbbff1b4a84f8dde90609c41bb5d9355bf40b4f4effff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 159, 191, 73, 145, 246, 54, 31, 218, 196, 119, + 247, 72, 73, 86, 223, 59, 178, 239, 55, 169, 249, 141, 255, 27, 241, 105, 6, 85, 73, 115, 62, 168, 191, 27, 198, + 135, 126, 114, 255, 194, 101, 203, 27, 221, 184, 128, 252, 75, 232, 115, 118, 255, 27, 240, 243, 142, 218, 250, + 28, 75, 187, 255, 27, 74, 132, 248, 221, 233, 6, 9, 196, 27, 181, 217, 53, 91, 244, 11, 79, 78, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3675, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "296587852006136083" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7057517111187575012" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0a79a86" + }, + { + "_tag": "ByteArray", + "bytearray": "09de" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "30065235126549172" + } + }, + { + "_tag": "ByteArray", + "bytearray": "105c45e3" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12787850427669185565" + } + }, + { + "_tag": "ByteArray", + "bytearray": "259928295e68" + }, + { + "_tag": "ByteArray", + "bytearray": "ab85f3143e6b0276fd33fb" + }, + { + "_tag": "ByteArray", + "bytearray": "6acec7" + }, + { + "_tag": "ByteArray", + "bytearray": "f4401173529771" + } + ] + } + ] + } + ] + }, + "cborHex": "d905039f9f1b041db1147b859913d8669f1b61f1566b989390e49f44c0a79a864209deffff1b006ad02c0bce7ab444105c45e3a0ff9f9f1bb1779236060c841d46259928295e684bab85f3143e6b0276fd33fb436acec747f4401173529771ffffff", + "cborBytes": [ + 217, 5, 3, 159, 159, 27, 4, 29, 177, 20, 123, 133, 153, 19, 216, 102, 159, 27, 97, 241, 86, 107, 152, 147, 144, + 228, 159, 68, 192, 167, 154, 134, 66, 9, 222, 255, 255, 27, 0, 106, 208, 44, 11, 206, 122, 180, 68, 16, 92, 69, + 227, 160, 255, 159, 159, 27, 177, 119, 146, 54, 6, 12, 132, 29, 70, 37, 153, 40, 41, 94, 104, 75, 171, 133, 243, + 20, 62, 107, 2, 118, 253, 51, 251, 67, 106, 206, 199, 71, 244, 64, 17, 115, 82, 151, 113, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3676, + "sample": { + "_tag": "ByteArray", + "bytearray": "3e4403d4f30606f9fcbc9e" + }, + "cborHex": "4b3e4403d4f30606f9fcbc9e", + "cborBytes": [75, 62, 68, 3, 212, 243, 6, 6, 249, 252, 188, 158], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3677, + "sample": { + "_tag": "ByteArray", + "bytearray": "0605" + }, + "cborHex": "420605", + "cborBytes": [66, 6, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3678, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10420835959433164115" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4fd393f45d1b1d" + } + } + ] + }, + "cborHex": "bf1b909e3f17d8a17553474fd393f45d1b1dff", + "cborBytes": [191, 27, 144, 158, 63, 23, 216, 161, 117, 83, 71, 79, 211, 147, 244, 93, 27, 29, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3679, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "20bc54bc" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4983306439736863050" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "58f1fa2664f2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12130143793305583556" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5e7758" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20d359395fc8cdf96072bb03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "661eb0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ee04593" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ad3" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a635c89692fb08221f73" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11484801318369420719" + } + }, + { + "_tag": "ByteArray", + "bytearray": "484ff2853925f515" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11718490672234678709" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "966736717327527664" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e806f5d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4818128537336470334" + } + } + } + ] + }, + "cborHex": "bf4420bc54bcd8669f1b452842cde36ea94a9f4658f1fa2664f21ba856ed8302637fc4435e7758ffff4c20d359395fc8cdf96072bb0343661eb0445ee04593a0426ad3a04aa635c89692fb08221f739f1b9f6235f33158e5af48484ff2853925f5151ba2a0712dde46c9b51b0d6a89ec23a26ef0ff44e806f5d61b42dd6e608e1cdb3eff", + "cborBytes": [ + 191, 68, 32, 188, 84, 188, 216, 102, 159, 27, 69, 40, 66, 205, 227, 110, 169, 74, 159, 70, 88, 241, 250, 38, 100, + 242, 27, 168, 86, 237, 131, 2, 99, 127, 196, 67, 94, 119, 88, 255, 255, 76, 32, 211, 89, 57, 95, 200, 205, 249, + 96, 114, 187, 3, 67, 102, 30, 176, 68, 94, 224, 69, 147, 160, 66, 106, 211, 160, 74, 166, 53, 200, 150, 146, 251, + 8, 34, 31, 115, 159, 27, 159, 98, 53, 243, 49, 88, 229, 175, 72, 72, 79, 242, 133, 57, 37, 245, 21, 27, 162, 160, + 113, 45, 222, 70, 201, 181, 27, 13, 106, 137, 236, 35, 162, 110, 240, 255, 68, 232, 6, 245, 214, 27, 66, 221, 110, + 96, 142, 28, 219, 62, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3680, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04d6c2c8315273ae" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9448838630228859105" + }, + "fields": [] + } + ] + }, + "cborHex": "9f4804d6c2c8315273aed8669f1b832104ac0ec798e180ffff", + "cborBytes": [ + 159, 72, 4, 214, 194, 200, 49, 82, 115, 174, 216, 102, 159, 27, 131, 33, 4, 172, 14, 199, 152, 225, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3681, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b4e7f00d9230781b3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0407" + }, + { + "_tag": "ByteArray", + "bytearray": "dd01ac01f98f1bf8f800074a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2000400064974" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "056b020085fe04" + } + } + ] + }, + "cborHex": "bf494b4e7f00d9230781b3d8799f4204074cdd01ac01f98f1bf8f800074aff47e200040006497447056b020085fe04ff", + "cborBytes": [ + 191, 73, 75, 78, 127, 0, 217, 35, 7, 129, 179, 216, 121, 159, 66, 4, 7, 76, 221, 1, 172, 1, 249, 143, 27, 248, + 248, 0, 7, 74, 255, 71, 226, 0, 4, 0, 6, 73, 116, 71, 5, 107, 2, 0, 133, 254, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3682, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17926734311949855352" + } + }, + "cborHex": "1bf8c88de07693ea78", + "cborBytes": [27, 248, 200, 141, 224, 118, 147, 234, 120], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3683, + "sample": { + "_tag": "ByteArray", + "bytearray": "5174" + }, + "cborHex": "425174", + "cborBytes": [66, 81, 116], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3684, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2923863915121185085" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13898215825418075279" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ad3de908f643d93" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c5917bd578f2d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a5f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1447674914583164521" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "427ef038eff5f1690189f0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2499658086683101233" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11553696599297898756" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a58cb59192d46c17" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15c4349cd616fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef15606d35b8f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4133590355813123493" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12114161129667508107" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17902381035058023858" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1264108814874213195" + } + }, + { + "_tag": "ByteArray", + "bytearray": "12fb28a2e41b22e1e4ab77dd" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b2893a6bd5061913d9fd8669f1bc0e061a845c1bc8f9fbf482ad3de908f643d93474c5917bd578f2d423a5f1b14172caa29f936694b427ef038eff5f1690189f01b22b091c93cadc83141781ba056f9d7cbca390448a58cb59192d46c174715c4349cd616fa47ef15606d35b8f41b395d76872538c5a5ff1ba81e255d25ad378b80d8669f1bf87208b35452cdb280ff9f1b118b044504047b4b4c12fb28a2e41b22e1e4ab77ddffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 40, 147, 166, 189, 80, 97, 145, 61, 159, 216, 102, 159, 27, 192, 224, 97, 168, 69, 193, 188, + 143, 159, 191, 72, 42, 211, 222, 144, 143, 100, 61, 147, 71, 76, 89, 23, 189, 87, 143, 45, 66, 58, 95, 27, 20, 23, + 44, 170, 41, 249, 54, 105, 75, 66, 126, 240, 56, 239, 245, 241, 105, 1, 137, 240, 27, 34, 176, 145, 201, 60, 173, + 200, 49, 65, 120, 27, 160, 86, 249, 215, 203, 202, 57, 4, 72, 165, 140, 181, 145, 146, 212, 108, 23, 71, 21, 196, + 52, 156, 214, 22, 250, 71, 239, 21, 96, 109, 53, 184, 244, 27, 57, 93, 118, 135, 37, 56, 197, 165, 255, 27, 168, + 30, 37, 93, 37, 173, 55, 139, 128, 216, 102, 159, 27, 248, 114, 8, 179, 84, 82, 205, 178, 128, 255, 159, 27, 17, + 139, 4, 69, 4, 4, 123, 75, 76, 18, 251, 40, 162, 228, 27, 34, 225, 228, 171, 119, 221, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3685, + "sample": { + "_tag": "ByteArray", + "bytearray": "0203" + }, + "cborHex": "420203", + "cborBytes": [66, 2, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3686, + "sample": { + "_tag": "ByteArray", + "bytearray": "47020707488c" + }, + "cborHex": "4647020707488c", + "cborBytes": [70, 71, 2, 7, 7, 72, 140], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3687, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17751296223628083727" + } + }, + "cborHex": "1bf65945dd7015c20f", + "cborBytes": [27, 246, 89, 69, 221, 112, 21, 194, 15], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3688, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8003451190791219902" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13714735713101858091" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6661162298541898683" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c2b37205" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11552131057534576186" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14003675120111877468" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b6f11f8743449aabe9fd8669f1bbe5487779fccc52b9f1b5c7133d173d07bbb44c2b37205ffff1ba05169fdb31b263a1bc2570c53bc3e7d5cffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 111, 17, 248, 116, 52, 73, 170, 190, 159, 216, 102, 159, 27, 190, 84, 135, 119, 159, 204, + 197, 43, 159, 27, 92, 113, 51, 209, 115, 208, 123, 187, 68, 194, 179, 114, 5, 255, 255, 27, 160, 81, 105, 253, + 179, 27, 38, 58, 27, 194, 87, 12, 83, 188, 62, 125, 92, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3689, + "sample": { + "_tag": "ByteArray", + "bytearray": "fdf8f805" + }, + "cborHex": "44fdf8f805", + "cborBytes": [68, 253, 248, 248, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3690, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9839222066777883972" + } + }, + "cborHex": "1b888bf056dc7b0544", + "cborBytes": [27, 136, 139, 240, 86, 220, 123, 5, 68], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3691, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6904063176774594306" + } + }, + "cborHex": "1b5fd028e146812f02", + "cborBytes": [27, 95, 208, 40, 225, 70, 129, 47, 2], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3692, + "sample": { + "_tag": "ByteArray", + "bytearray": "07ff0200" + }, + "cborHex": "4407ff0200", + "cborBytes": [68, 7, 255, 2, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3693, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14832126660788428412" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7913084420373538029" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1bcdd64c9d2fe51e7c9fd8669f1b6dd0ec5ae20ae4ed80ffffff", + "cborBytes": [ + 216, 102, 159, 27, 205, 214, 76, 157, 47, 229, 30, 124, 159, 216, 102, 159, 27, 109, 208, 236, 90, 226, 10, 228, + 237, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3694, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16830758201782506988" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "720150c348783b64533e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c92a2f36f674dcc95d654780" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8828541fcb0f424076e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17028196665814932737" + } + } + } + ] + } + ] + }, + "cborHex": "d87c9f1be992dd694dbd15ecbf4a720150c348783b64533e4cc92a2f36f674dcc95d6547804a8828541fcb0f424076e8414d4199419a42ec5c1bec504ea5f763dd01ffff", + "cborBytes": [ + 216, 124, 159, 27, 233, 146, 221, 105, 77, 189, 21, 236, 191, 74, 114, 1, 80, 195, 72, 120, 59, 100, 83, 62, 76, + 201, 42, 47, 54, 246, 116, 220, 201, 93, 101, 71, 128, 74, 136, 40, 84, 31, 203, 15, 66, 64, 118, 232, 65, 77, 65, + 153, 65, 154, 66, 236, 92, 27, 236, 80, 78, 165, 247, 99, 221, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3695, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11132329593065698352" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "809b387c2af4f1305a90" + } + } + ] + }, + "cborHex": "bf1b9a7dfac8853ff4304a809b387c2af4f1305a90ff", + "cborBytes": [191, 27, 154, 125, 250, 200, 133, 63, 244, 48, 74, 128, 155, 56, 124, 42, 244, 241, 48, 90, 144, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3696, + "sample": { + "_tag": "ByteArray", + "bytearray": "2c07f8f1b99203bf" + }, + "cborHex": "482c07f8f1b99203bf", + "cborBytes": [72, 44, 7, 248, 241, 185, 146, 3, 191], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3697, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3595861563217352562" + } + }, + "cborHex": "1b31e7110a410d1772", + "cborBytes": [27, 49, 231, 17, 10, 65, 13, 23, 114], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3698, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3242325262835604363" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb" + }, + { + "_tag": "ByteArray", + "bytearray": "da56e89bc179b2118204af54" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff1b75" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17195449090859836395" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8bb773b5cb" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6662424211339091491" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18364799883204901313" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16971001055697979645" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7003973248707563613" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16564500086191813168" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a0bdd648a1ac1c9dceea" + }, + { + "_tag": "ByteArray", + "bytearray": "19283b00c9e309e231ed" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1b2cff0da5e1975b8b41cb4cda56e89bc179b2118204af549f43ff1b751beea281d7be03a3ebffff9fd87c9f458bb773b5cbff9f1b5c75af856bd41e231bfedce031619039c11beb851b8b3fa848fd42f3e51b61331c8fa18d905dff9f1be5e0ed10df63f2304aa0bdd648a1ac1c9dceea4a19283b00c9e309e231edffffff", + "cborBytes": [ + 159, 159, 27, 44, 255, 13, 165, 225, 151, 91, 139, 65, 203, 76, 218, 86, 232, 155, 193, 121, 178, 17, 130, 4, 175, + 84, 159, 67, 255, 27, 117, 27, 238, 162, 129, 215, 190, 3, 163, 235, 255, 255, 159, 216, 124, 159, 69, 139, 183, + 115, 181, 203, 255, 159, 27, 92, 117, 175, 133, 107, 212, 30, 35, 27, 254, 220, 224, 49, 97, 144, 57, 193, 27, + 235, 133, 27, 139, 63, 168, 72, 253, 66, 243, 229, 27, 97, 51, 28, 143, 161, 141, 144, 93, 255, 159, 27, 229, 224, + 237, 16, 223, 99, 242, 48, 74, 160, 189, 214, 72, 161, 172, 28, 157, 206, 234, 74, 25, 40, 59, 0, 201, 227, 9, + 226, 49, 237, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3699, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5837962172653613186" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1497648983281327376" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10057599932364248020" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2b2a405ae30" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10261827035397905546" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5cd62f4a7515fe72486ab0" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81bc8f" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b51049baa492fb0821b14c8b7d0beb55d101b8b93c5d9dd9053d446f2b2a405ae301b8e695551b7645c8a9f4b5cd62f4a7515fe72486ab0ff4381bc8f80ff", + "cborBytes": [ + 191, 27, 81, 4, 155, 170, 73, 47, 176, 130, 27, 20, 200, 183, 208, 190, 181, 93, 16, 27, 139, 147, 197, 217, 221, + 144, 83, 212, 70, 242, 178, 164, 5, 174, 48, 27, 142, 105, 85, 81, 183, 100, 92, 138, 159, 75, 92, 214, 47, 74, + 117, 21, 254, 114, 72, 106, 176, 255, 67, 129, 188, 143, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3700, + "sample": { + "_tag": "ByteArray", + "bytearray": "a13faa319d" + }, + "cborHex": "45a13faa319d", + "cborBytes": [69, 161, 63, 170, 49, 157], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3701, + "sample": { + "_tag": "ByteArray", + "bytearray": "8b01fafa" + }, + "cborHex": "448b01fafa", + "cborBytes": [68, 139, 1, 250, 250], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3702, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9467281815978021884" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12300547235051653641" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e43b9bc8ea715547ab5b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17964497528821221838" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc2d8361" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22dfc077ac76c99c7b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "123f6df5c4fc486de9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edf8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "320c7356" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b83628aa6dde293fc9f9fa0bf1baab4528a082aca094ae43b9bc8ea715547ab5b1bf94eb7528dc589ce44cc2d83614922dfc077ac76c99c7b49123f6df5c4fc486de942edf844320c7356ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 131, 98, 138, 166, 221, 226, 147, 252, 159, 159, 160, 191, 27, 170, 180, 82, 138, 8, 42, 202, + 9, 74, 228, 59, 155, 200, 234, 113, 85, 71, 171, 91, 27, 249, 78, 183, 82, 141, 197, 137, 206, 68, 204, 45, 131, + 97, 73, 34, 223, 192, 119, 172, 118, 201, 156, 123, 73, 18, 63, 109, 245, 196, 252, 72, 109, 233, 66, 237, 248, + 68, 50, 12, 115, 86, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3703, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd07fefa" + }, + "cborHex": "44fd07fefa", + "cborBytes": [68, 253, 7, 254, 250], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3704, + "sample": { + "_tag": "ByteArray", + "bytearray": "3b" + }, + "cborHex": "413b", + "cborBytes": [65, 59], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3705, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15191632154049176098" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04010907" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb0d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7435bd0b9a58ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7097362344452614494" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f05926f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11505540582165169298" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bd2d384f49480e2229fa0d8669f1bfffffffffffffff280ffffffbf440401090742cb0d477435bd0b9a58ee1b627ee572e754e95e44f05926f61b9fabe43354cbc492ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 210, 211, 132, 244, 148, 128, 226, 34, 159, 160, 216, 102, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 242, 128, 255, 255, 255, 191, 68, 4, 1, 9, 7, 66, 203, 13, 71, 116, 53, 189, 11, 154, 88, 238, 27, + 98, 126, 229, 114, 231, 84, 233, 94, 68, 240, 89, 38, 246, 27, 159, 171, 228, 51, 84, 203, 196, 146, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3706, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "945f5542fce80c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4479949677481649554" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7017436052708893140" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "103a88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10240393657361750477" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ace93449dd7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11449806516174548125" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e980f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6914511839413315307" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6090430835399605306" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14584197933554573096" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13315079664490483524" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f47945f5542fce80cbf1b3e2bfa7ef1eb65921b6162f0e8f3bba1d443103a881b8e1d2fc68335d9cd468ace93449dd71b9ee5e25cdf896c9d438e980f1b5ff547e21f76a6ebff1b54858e9389143c3ad8669f1bca657ac00b819f289f1bfffffffffffffffdd8669f1bb8c8aa6895fb8f4480ffffffff", + "cborBytes": [ + 159, 71, 148, 95, 85, 66, 252, 232, 12, 191, 27, 62, 43, 250, 126, 241, 235, 101, 146, 27, 97, 98, 240, 232, 243, + 187, 161, 212, 67, 16, 58, 136, 27, 142, 29, 47, 198, 131, 53, 217, 205, 70, 138, 206, 147, 68, 157, 215, 27, 158, + 229, 226, 92, 223, 137, 108, 157, 67, 142, 152, 15, 27, 95, 245, 71, 226, 31, 118, 166, 235, 255, 27, 84, 133, + 142, 147, 137, 20, 60, 58, 216, 102, 159, 27, 202, 101, 122, 192, 11, 129, 159, 40, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 253, 216, 102, 159, 27, 184, 200, 170, 104, 149, 251, 143, 68, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3707, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "839262260981221204" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1216328078137985851" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0400647d340685aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14101572043286082285" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6969112817081916432" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d559efa3492" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8680619704272120595" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd50eb278390ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10507119447480070995" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf0b827ece023aca6791ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "897b9c4b5e7791737c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df2692fa161e68eb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d61e53200665260a" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9311442811062845720" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17753628043584509652" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10988464633976070969" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "130d9e0855d68f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77db2d6acd3264beef49f58e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa6b99923a35" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2761802796076512813" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0ba5a8946b2d475441511b10e143f153bf8b3b9f480400647d340685aa1bc3b2d90f5ea572edff1b60b7432ee5ca1c10bf460d559efa34921b7877c1a10f656b1347bd50eb278390ad1b91d0c977e7a5f3534bbf0b827ece023aca6791ab49897b9c4b5e7791737c48df2692fa161e68eb48d61e53200665260aff1b8138e3e70bc40118d8669f1bf6618ea4944496d480ff1b987ede5d7f162339bf47130d9e0855d68f4c77db2d6acd3264beef49f58e46fa6b99923a351b2653e502a7d2362dffff", + "cborBytes": [ + 191, 27, 11, 165, 168, 148, 107, 45, 71, 84, 65, 81, 27, 16, 225, 67, 241, 83, 191, 139, 59, 159, 72, 4, 0, 100, + 125, 52, 6, 133, 170, 27, 195, 178, 217, 15, 94, 165, 114, 237, 255, 27, 96, 183, 67, 46, 229, 202, 28, 16, 191, + 70, 13, 85, 158, 250, 52, 146, 27, 120, 119, 193, 161, 15, 101, 107, 19, 71, 189, 80, 235, 39, 131, 144, 173, 27, + 145, 208, 201, 119, 231, 165, 243, 83, 75, 191, 11, 130, 126, 206, 2, 58, 202, 103, 145, 171, 73, 137, 123, 156, + 75, 94, 119, 145, 115, 124, 72, 223, 38, 146, 250, 22, 30, 104, 235, 72, 214, 30, 83, 32, 6, 101, 38, 10, 255, 27, + 129, 56, 227, 231, 11, 196, 1, 24, 216, 102, 159, 27, 246, 97, 142, 164, 148, 68, 150, 212, 128, 255, 27, 152, + 126, 222, 93, 127, 22, 35, 57, 191, 71, 19, 13, 158, 8, 85, 214, 143, 76, 119, 219, 45, 106, 205, 50, 100, 190, + 239, 73, 245, 142, 70, 250, 107, 153, 146, 58, 53, 27, 38, 83, 229, 2, 167, 210, 54, 45, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3708, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26cc212eecb24d9b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e05a6bb0c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10659160460882690080" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f5f2a484f0cb8750d73" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11862899222183136453" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c590b969018add3837a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2177886992507712216" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c89d0b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3dce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df679d7bb764b94b1c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7699357673357355134" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2815284463082437164" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7326026240198928255" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1500320743948360254" + } + }, + { + "_tag": "ByteArray", + "bytearray": "76eaca" + }, + { + "_tag": "ByteArray", + "bytearray": "04d7c42daf9f" + }, + { + "_tag": "ByteArray", + "bytearray": "7d11" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17122920229286963138" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1593319159998510920" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a30796c6e53f7d90811df" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6779738331908281899" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7385141820546506981" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf7aa1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17611851709504587781" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3349786261120228308" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11346333004471703017" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10351899693100281002" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11105450764853719462" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17755048040029470812" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf021bffffffffffffffec084826cc212eecb24d9bff9fbf452e05a6bb0c1b93ecf1f6eacd40204a9f5f2a484f0cb8750d731ba4a17bfd807bccc54ac590b969018add3837a11b1e3968ae455db2d843c89d0b423dce49df679d7bb764b94b1c1b6ad99d02cf24a87eff1b2711e64d9bb47a2cd8669f1b65ab460cee3f677f9f1b14d235c480311a3e4376eaca4604d7c42daf9f427d111beda0d53a37ffe7c2ffffa0bf1b161c9b559188f7484b4a30796c6e53f7d90811df1b5e1678179f7e162b1b667d4b5b8d8e60e543cf7aa11bf469ddd175e08805ffff0cbf1b2e7cd4db478e1bd41b9d7645c08ad395e91b8fa955ec95b7acaa41071b9a1e7ca1a5b231a61bf6669a1f43f3c05cffff", + "cborBytes": [ + 159, 191, 2, 27, 255, 255, 255, 255, 255, 255, 255, 236, 8, 72, 38, 204, 33, 46, 236, 178, 77, 155, 255, 159, 191, + 69, 46, 5, 166, 187, 12, 27, 147, 236, 241, 246, 234, 205, 64, 32, 74, 159, 95, 42, 72, 79, 12, 184, 117, 13, 115, + 27, 164, 161, 123, 253, 128, 123, 204, 197, 74, 197, 144, 185, 105, 1, 138, 221, 56, 55, 161, 27, 30, 57, 104, + 174, 69, 93, 178, 216, 67, 200, 157, 11, 66, 61, 206, 73, 223, 103, 157, 123, 183, 100, 185, 75, 28, 27, 106, 217, + 157, 2, 207, 36, 168, 126, 255, 27, 39, 17, 230, 77, 155, 180, 122, 44, 216, 102, 159, 27, 101, 171, 70, 12, 238, + 63, 103, 127, 159, 27, 20, 210, 53, 196, 128, 49, 26, 62, 67, 118, 234, 202, 70, 4, 215, 196, 45, 175, 159, 66, + 125, 17, 27, 237, 160, 213, 58, 55, 255, 231, 194, 255, 255, 160, 191, 27, 22, 28, 155, 85, 145, 136, 247, 72, 75, + 74, 48, 121, 108, 110, 83, 247, 217, 8, 17, 223, 27, 94, 22, 120, 23, 159, 126, 22, 43, 27, 102, 125, 75, 91, 141, + 142, 96, 229, 67, 207, 122, 161, 27, 244, 105, 221, 209, 117, 224, 136, 5, 255, 255, 12, 191, 27, 46, 124, 212, + 219, 71, 142, 27, 212, 27, 157, 118, 69, 192, 138, 211, 149, 233, 27, 143, 169, 85, 236, 149, 183, 172, 170, 65, + 7, 27, 154, 30, 124, 161, 165, 178, 49, 166, 27, 246, 102, 154, 31, 67, 243, 192, 92, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3709, + "sample": { + "_tag": "ByteArray", + "bytearray": "973195d338" + }, + "cborHex": "45973195d338", + "cborBytes": [69, 151, 49, 149, 211, 56], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3710, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f634a92ccb6707316578" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13052104539493339003" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16408059682129876851" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16988304443792101263" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8070f890b1cb9f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4689564087370093846" + } + }, + { + "_tag": "ByteArray", + "bytearray": "10a83921" + }, + { + "_tag": "ByteArray", + "bytearray": "78" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10350895008609435501" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4086954855519950376" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4f533d74c5" + }, + { + "_tag": "ByteArray", + "bytearray": "5171eb636474e2" + }, + { + "_tag": "ByteArray", + "bytearray": "d77edbdf94516f01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4747145840816409572" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16977049605629457642" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050a9f4af634a92ccb67073165781bb52263ecf7c38f7b1be3b52358e6c29773d8669f1bebc294e23c6b0f8f9f9f478070f890b1cb9f1b4114adb0eb1f95164410a839214178ffa01b8fa5c42b3f877f6dd8669f1b38b7c7c9985316289f454f533d74c5475171eb636474e248d77edbdf94516f011b41e13ffda2d5cbe41beb9a98ab05bab4eaffffffffff", + "cborBytes": [ + 217, 5, 10, 159, 74, 246, 52, 169, 44, 203, 103, 7, 49, 101, 120, 27, 181, 34, 99, 236, 247, 195, 143, 123, 27, + 227, 181, 35, 88, 230, 194, 151, 115, 216, 102, 159, 27, 235, 194, 148, 226, 60, 107, 15, 143, 159, 159, 71, 128, + 112, 248, 144, 177, 203, 159, 27, 65, 20, 173, 176, 235, 31, 149, 22, 68, 16, 168, 57, 33, 65, 120, 255, 160, 27, + 143, 165, 196, 43, 63, 135, 127, 109, 216, 102, 159, 27, 56, 183, 199, 201, 152, 83, 22, 40, 159, 69, 79, 83, 61, + 116, 197, 71, 81, 113, 235, 99, 100, 116, 226, 72, 215, 126, 219, 223, 148, 81, 111, 1, 27, 65, 225, 63, 253, 162, + 213, 203, 228, 27, 235, 154, 152, 171, 5, 186, 180, 234, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3711, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "028447258e4a567149c2f8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13965273472493409732" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6ddc73e7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12068499378075356480" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc0d81d13f1e1887d80813" + }, + { + "_tag": "ByteArray", + "bytearray": "080c3f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13585894528375541480" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "475e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5d390294" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2385486146986447360" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3999037160804713119" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4348447858038307618" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8ce10d1922" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aaf412ac0cb2090c19" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1538216a354" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3641827257137178604" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba58f04c0220" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8705516929279072123" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16559245801449828214" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8710a1ac0f4b88df9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10207372551843660986" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "68fddcdad744" + } + ] + } + } + ] + }, + "cborHex": "bf4b028447258e4a567149c2f8d8669f1bc1ce9e3b6727d5c49f446ddc73e71ba77bec3e22344d404bcc0d81d13f1e1887d8081343080c3f1bbc8acb17a7bf4ee8ffff42475e9f445d3902941b211af30307be12001b377f6f1c255a029f1b3c58ca49aeae7b22458ce10d1922ff49aaf412ac0cb2090c198046b1538216a3541b328a5e985aff27ec46ba58f04c0220bf1b78d03585fbd4177b1be5ce42525fcbaf76ff49e8710a1ac0f4b88df9d8669f1b8da7df4142b6c4ba9f4668fddcdad744ffffff", + "cborBytes": [ + 191, 75, 2, 132, 71, 37, 142, 74, 86, 113, 73, 194, 248, 216, 102, 159, 27, 193, 206, 158, 59, 103, 39, 213, 196, + 159, 68, 109, 220, 115, 231, 27, 167, 123, 236, 62, 34, 52, 77, 64, 75, 204, 13, 129, 209, 63, 30, 24, 135, 216, + 8, 19, 67, 8, 12, 63, 27, 188, 138, 203, 23, 167, 191, 78, 232, 255, 255, 66, 71, 94, 159, 68, 93, 57, 2, 148, 27, + 33, 26, 243, 3, 7, 190, 18, 0, 27, 55, 127, 111, 28, 37, 90, 2, 159, 27, 60, 88, 202, 73, 174, 174, 123, 34, 69, + 140, 225, 13, 25, 34, 255, 73, 170, 244, 18, 172, 12, 178, 9, 12, 25, 128, 70, 177, 83, 130, 22, 163, 84, 27, 50, + 138, 94, 152, 90, 255, 39, 236, 70, 186, 88, 240, 76, 2, 32, 191, 27, 120, 208, 53, 133, 251, 212, 23, 123, 27, + 229, 206, 66, 82, 95, 203, 175, 118, 255, 73, 232, 113, 10, 26, 192, 244, 184, 141, 249, 216, 102, 159, 27, 141, + 167, 223, 65, 66, 182, 196, 186, 159, 70, 104, 253, 220, 218, 215, 68, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3712, + "sample": { + "_tag": "ByteArray", + "bytearray": "05fefa03" + }, + "cborHex": "4405fefa03", + "cborBytes": [68, 5, 254, 250, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3713, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "022d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07070200" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "161a3e74b735" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10241399695022580938" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fbdbf765945" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd7bcdf9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8a188bb2139362f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9bbf8fbfa59fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a5e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fef7f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "648441943905779761" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f42022dbf44070702001bffffffffffffffee46161a3e74b7351b8e20c2c2e89d64ca466fbdbf7659451bfffffffffffffff544dd7bcdf948a8a188bb2139362f47f9bbf8fbfa59fe426a5e43fef7f11b08ffba832bf7c031ffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 66, 2, 45, 191, 68, 7, 7, 2, 0, 27, 255, 255, 255, + 255, 255, 255, 255, 238, 70, 22, 26, 62, 116, 183, 53, 27, 142, 32, 194, 194, 232, 157, 100, 202, 70, 111, 189, + 191, 118, 89, 69, 27, 255, 255, 255, 255, 255, 255, 255, 245, 68, 221, 123, 205, 249, 72, 168, 161, 136, 187, 33, + 57, 54, 47, 71, 249, 187, 248, 251, 250, 89, 254, 66, 106, 94, 67, 254, 247, 241, 27, 8, 255, 186, 131, 43, 247, + 192, 49, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3714, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c3d2334607ba7da70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29a0ecb86f2f72fe2ca1259d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a02e77c78a6571" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11256744174643559302" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcd82664e8c256b00347a23f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3faca91b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "681457845386490146" + } + } + ] + }, + "cborHex": "9fbf491c3d2334607ba7da704c29a0ecb86f2f72fe2ca1259d47a02e77c78a65711b9c37fd2fa113bb864cbcd82664e8c256b00347a23f443faca91bff1b0975064cc3aa3122ff", + "cborBytes": [ + 159, 191, 73, 28, 61, 35, 52, 96, 123, 167, 218, 112, 76, 41, 160, 236, 184, 111, 47, 114, 254, 44, 161, 37, 157, + 71, 160, 46, 119, 199, 138, 101, 113, 27, 156, 55, 253, 47, 161, 19, 187, 134, 76, 188, 216, 38, 100, 232, 194, + 86, 176, 3, 71, 162, 63, 68, 63, 172, 169, 27, 255, 27, 9, 117, 6, 76, 195, 170, 49, 34, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3715, + "sample": { + "_tag": "ByteArray", + "bytearray": "70f9033b074a75" + }, + "cborHex": "4770f9033b074a75", + "cborBytes": [71, 112, 249, 3, 59, 7, 74, 117], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3716, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f603b86446980066bacc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18172308601562244781" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17375365411024809611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11130546637282627079" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5218124799101928540" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8995793947724494504" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7037810105296553408" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13713380716465604865" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "822fcb853793" + } + ] + }, + "cborHex": "9f4af603b86446980066baccd8669f1bfc31026460e4a6ad9fd8669f1bf121b2c85ebe2e8b9f1b9a77a531c7264e07ffff1b486a80dba420845cffffa0d8669f1b7cd77aef06ba36a89f1b61ab5300badb05c01bbe4fb71ae29fc901ffff46822fcb853793ff", + "cborBytes": [ + 159, 74, 246, 3, 184, 100, 70, 152, 0, 102, 186, 204, 216, 102, 159, 27, 252, 49, 2, 100, 96, 228, 166, 173, 159, + 216, 102, 159, 27, 241, 33, 178, 200, 94, 190, 46, 139, 159, 27, 154, 119, 165, 49, 199, 38, 78, 7, 255, 255, 27, + 72, 106, 128, 219, 164, 32, 132, 92, 255, 255, 160, 216, 102, 159, 27, 124, 215, 122, 239, 6, 186, 54, 168, 159, + 27, 97, 171, 83, 0, 186, 219, 5, 192, 27, 190, 79, 183, 26, 226, 159, 201, 1, 255, 255, 70, 130, 47, 203, 133, 55, + 147, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3717, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9913690130625118567" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8570730820698066331" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14562871498171667335" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9378248202914822672" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17581303685646423790" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d0" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3242251565400541973" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6bd91f5b7f77" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10915244756307750614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "745696825148998811" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15501484477727979724" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54bc55" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17612510631480739617" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a0f70b6a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11148796942335308686" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6324665290432584292" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "494470457341644668" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15620186126985804378" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b776856f5f91cacb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1366191902747716451" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff280ffd8669f1b899480a61934c1679f9f1b76f15a4591334d9b1bca19b6785e2ed3871b82263b0d6e2efa101bf3fd568d673896ee41d0ffbf1b2cfeca9edc274b15466bd91f5b7f771b977abd46402b2ed61b0a593f4fc524849b1bd72056008a3538cc4354bc55ffd8669f1bf46c351ab03347219f44a0f70b6affff1b9ab87bc00cdb738e1b57c5b992777a1a64ffffd8669f1b06dcb642d9c60f7c9f9f1bd8c60c85f0793a5a48b776856f5f91cacb1b12f5b04c124aeb63ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 128, 255, 216, 102, 159, 27, 137, 148, 128, 166, + 25, 52, 193, 103, 159, 159, 27, 118, 241, 90, 69, 145, 51, 77, 155, 27, 202, 25, 182, 120, 94, 46, 211, 135, 27, + 130, 38, 59, 13, 110, 46, 250, 16, 27, 243, 253, 86, 141, 103, 56, 150, 238, 65, 208, 255, 191, 27, 44, 254, 202, + 158, 220, 39, 75, 21, 70, 107, 217, 31, 91, 127, 119, 27, 151, 122, 189, 70, 64, 43, 46, 214, 27, 10, 89, 63, 79, + 197, 36, 132, 155, 27, 215, 32, 86, 0, 138, 53, 56, 204, 67, 84, 188, 85, 255, 216, 102, 159, 27, 244, 108, 53, + 26, 176, 51, 71, 33, 159, 68, 160, 247, 11, 106, 255, 255, 27, 154, 184, 123, 192, 12, 219, 115, 142, 27, 87, 197, + 185, 146, 119, 122, 26, 100, 255, 255, 216, 102, 159, 27, 6, 220, 182, 66, 217, 198, 15, 124, 159, 159, 27, 216, + 198, 12, 133, 240, 121, 58, 90, 72, 183, 118, 133, 111, 95, 145, 202, 203, 27, 18, 245, 176, 76, 18, 74, 235, 99, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3718, + "sample": { + "_tag": "ByteArray", + "bytearray": "8895bde65e979e5ca2" + }, + "cborHex": "498895bde65e979e5ca2", + "cborBytes": [73, 136, 149, 189, 230, 94, 151, 158, 92, 162], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3719, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11412503230738425138" + } + }, + "cborHex": "1b9e615b38ea296532", + "cborBytes": [27, 158, 97, 91, 56, 234, 41, 101, 50], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3720, + "sample": { + "_tag": "ByteArray", + "bytearray": "c68c05ff2d" + }, + "cborHex": "45c68c05ff2d", + "cborBytes": [69, 198, 140, 5, 255, 45], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3721, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f564bb3b0bfe421" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c818d9e15016" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d89aca692decf29" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a25e80" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e979" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6719966482383256323" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10846516050197824346" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13800806182092515286" + } + }, + { + "_tag": "ByteArray", + "bytearray": "582af3c3736ae2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17667063488569651670" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9256465178390415795" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9169848418930096215" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4709505098469961342" + } + } + ] + } + ] + }, + "cborHex": "9f41b8bf482f564bb3b0bfe42146c818d9e15016486d89aca692decf2943a25e80ff42e9791b5d421de96cfc3b039fd8669f1b968690e15e9d435a9f1bbf86501a51a3a7d647582af3c3736ae21bf52e04a38477b1d61b8075920971bbc9b31b7f41d88d96817857ffff1b415b85ef5e316e7effff", + "cborBytes": [ + 159, 65, 184, 191, 72, 47, 86, 75, 179, 176, 191, 228, 33, 70, 200, 24, 217, 225, 80, 22, 72, 109, 137, 172, 166, + 146, 222, 207, 41, 67, 162, 94, 128, 255, 66, 233, 121, 27, 93, 66, 29, 233, 108, 252, 59, 3, 159, 216, 102, 159, + 27, 150, 134, 144, 225, 94, 157, 67, 90, 159, 27, 191, 134, 80, 26, 81, 163, 167, 214, 71, 88, 42, 243, 195, 115, + 106, 226, 27, 245, 46, 4, 163, 132, 119, 177, 214, 27, 128, 117, 146, 9, 113, 187, 201, 179, 27, 127, 65, 216, + 141, 150, 129, 120, 87, 255, 255, 27, 65, 91, 133, 239, 94, 49, 110, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3722, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4243862740555181557" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f06c79fe6aedb932c1df9114" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "472674176472575182" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6b8934ef41a18a1903f99f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4404140393569386416" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f15fb339a15e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15468098021799310358" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ed84bd7dcc6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4c1fe673a97a1924e9925" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02" + } + } + ] + } + ] + }, + "cborHex": "9f1b3ae53aad764eadf59f4cf06c79fe6aedb932c1df91141b068f46a8bf25ecceffbf4cb6b8934ef41a18a1903f99f8415dffbf1b3d1ea65a93a6ffb046f15fb339a15e1bd6a9b93284453416464ed84bd7dcc64ba4c1fe673a97a1924e99254102ffff", + "cborBytes": [ + 159, 27, 58, 229, 58, 173, 118, 78, 173, 245, 159, 76, 240, 108, 121, 254, 106, 237, 185, 50, 193, 223, 145, 20, + 27, 6, 143, 70, 168, 191, 37, 236, 206, 255, 191, 76, 182, 184, 147, 78, 244, 26, 24, 161, 144, 63, 153, 248, 65, + 93, 255, 191, 27, 61, 30, 166, 90, 147, 166, 255, 176, 70, 241, 95, 179, 57, 161, 94, 27, 214, 169, 185, 50, 132, + 69, 52, 22, 70, 78, 216, 75, 215, 220, 198, 75, 164, 193, 254, 103, 58, 151, 161, 146, 78, 153, 37, 65, 2, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3723, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c6faa9cfd682c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16716202014914366661" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15087855159437312105" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bcbe00416274bb25b0ae" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63df8c3b1a2fc5e39d4e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c5ef7cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f54c8468f3ffa1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8780008095973752825" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "187122620089699005" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf470c6faa9cfd682cd8669f1be7fbe12a94a3ccc59f1bd162d45420ce40694abcbe00416274bb25b0aeffff4a63df8c3b1a2fc5e39d4e449c5ef7cd47f54c8468f3ffa1bf1b79d8dad84591bff91b0298cb0813e30abdffff", + "cborBytes": [ + 191, 71, 12, 111, 170, 156, 253, 104, 44, 216, 102, 159, 27, 231, 251, 225, 42, 148, 163, 204, 197, 159, 27, 209, + 98, 212, 84, 32, 206, 64, 105, 74, 188, 190, 0, 65, 98, 116, 187, 37, 176, 174, 255, 255, 74, 99, 223, 140, 59, + 26, 47, 197, 227, 157, 78, 68, 156, 94, 247, 205, 71, 245, 76, 132, 104, 243, 255, 161, 191, 27, 121, 216, 218, + 216, 69, 145, 191, 249, 27, 2, 152, 203, 8, 19, 227, 10, 189, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3724, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d8799f80a0ff", + "cborBytes": [216, 121, 159, 128, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3725, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5346903234291995448" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7293105774813058448" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7375176281383706732" + } + }, + { + "_tag": "ByteArray", + "bytearray": "82530b774dbb69f09f6ace37" + } + ] + } + } + ] + }, + "cborHex": "bf01a012d9050c9f1b4a340429985c93381b6536510fc91515901b6659e3c0a7c3206c4c82530b774dbb69f09f6ace37ffff", + "cborBytes": [ + 191, 1, 160, 18, 217, 5, 12, 159, 27, 74, 52, 4, 41, 152, 92, 147, 56, 27, 101, 54, 81, 15, 201, 21, 21, 144, 27, + 102, 89, 227, 192, 167, 195, 32, 108, 76, 130, 83, 11, 119, 77, 187, 105, 240, 159, 106, 206, 55, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3726, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2a02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "736138940642728584" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + "cborHex": "9f422a021b0a374a775e579a88a004ff", + "cborBytes": [159, 66, 42, 2, 27, 10, 55, 74, 119, 94, 87, 154, 136, 160, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3727, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11122789556850100837" + }, + "fields": [] + }, + "cborHex": "d8669f1b9a5c162bbf798a6580ff", + "cborBytes": [216, 102, 159, 27, 154, 92, 22, 43, 191, 121, 138, 101, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3728, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1231584592799501854" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2eea7e" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10082348384784622129" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8432957464944161623" + } + } + ] + }, + "cborHex": "9f1b111777a974a88e1e432eea7e801b8bebb26ff8d222311b7507e22277f9b357ff", + "cborBytes": [ + 159, 27, 17, 23, 119, 169, 116, 168, 142, 30, 67, 46, 234, 126, 128, 27, 139, 235, 178, 111, 248, 210, 34, 49, 27, + 117, 7, 226, 34, 119, 249, 179, 87, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3729, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17119651922368613825" + } + }, + "cborHex": "1bed9538b8371d4dc1", + "cborBytes": [27, 237, 149, 56, 184, 55, 29, 77, 193], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3730, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ff1085334a8f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "608e2491d71c4ab16c9a97" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb8dbea4d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "163003c5b53d75cb5b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1b26e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4062105243528854428" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "324cd90857" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10005835057377071544" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6153096074551659730" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13070432407723816506" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30007d06c3800ccd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17283731154114698135" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d4c29" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa2ebd84ec729474cc2f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9347013478837231047" + } + } + } + ] + }, + "cborHex": "bf471ff1085334a8f74b608e2491d71c4ab16c9a9745cb8dbea4d049163003c5b53d75cb5b43d1b26ebf1b385f7f3270c9fb9c45324cd908571b8adbddf8b41c51b81b5564304780808cd21bb56381065321b63a4830007d06c3800ccd1befdc25e95a5bdb97438d4c29ff4afa2ebd84ec729474cc2f1b81b7433c84e19dc7ff", + "cborBytes": [ + 191, 71, 31, 241, 8, 83, 52, 168, 247, 75, 96, 142, 36, 145, 215, 28, 74, 177, 108, 154, 151, 69, 203, 141, 190, + 164, 208, 73, 22, 48, 3, 197, 181, 61, 117, 203, 91, 67, 209, 178, 110, 191, 27, 56, 95, 127, 50, 112, 201, 251, + 156, 69, 50, 76, 217, 8, 87, 27, 138, 219, 221, 248, 180, 28, 81, 184, 27, 85, 100, 48, 71, 128, 128, 140, 210, + 27, 181, 99, 129, 6, 83, 33, 182, 58, 72, 48, 0, 125, 6, 195, 128, 12, 205, 27, 239, 220, 37, 233, 90, 91, 219, + 151, 67, 141, 76, 41, 255, 74, 250, 46, 189, 132, 236, 114, 148, 116, 204, 47, 27, 129, 183, 67, 60, 132, 225, + 157, 199, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3731, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "943881206810961197" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9077822910305468954" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2af8dbe21be922e5" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5718827471056147221" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4134431472755707254" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5479951103396182305" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1697307219184943216" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f8e084fba67d352b3080574" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13000981872622875075" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6665542607983126968" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13967070571761797060" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5725940165538600898" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3de178e7b4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11818727623005633198" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c2d7fb1ab9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12308680606256779213" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17288184801647173864" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a22e3fbe2f755fbee39ee" + } + } + ] + }, + "cborHex": "bf1b0d1956f4ea22652dbf1b7dfae7d72ea9021a482af8dbe21be922e5ff1b4f5d5b49080c13159f1b39607384f1cc8d761b4c0cb27e987079211b178e0bec523980704c7f8e084fba67d352b3080574ff1bb46cc42188fab1c31b5c80c3afb810a9b81bc1d500af2eac87c4d8669f1b4f76a03e4411d7c29f453de178e7b41ba4048e27a258faae45c2d7fb1ab91baad137cc15accfcdffff1befebf87af97ca0e84b1a22e3fbe2f755fbee39eeff", + "cborBytes": [ + 191, 27, 13, 25, 86, 244, 234, 34, 101, 45, 191, 27, 125, 250, 231, 215, 46, 169, 2, 26, 72, 42, 248, 219, 226, + 27, 233, 34, 229, 255, 27, 79, 93, 91, 73, 8, 12, 19, 21, 159, 27, 57, 96, 115, 132, 241, 204, 141, 118, 27, 76, + 12, 178, 126, 152, 112, 121, 33, 27, 23, 142, 11, 236, 82, 57, 128, 112, 76, 127, 142, 8, 79, 186, 103, 211, 82, + 179, 8, 5, 116, 255, 27, 180, 108, 196, 33, 136, 250, 177, 195, 27, 92, 128, 195, 175, 184, 16, 169, 184, 27, 193, + 213, 0, 175, 46, 172, 135, 196, 216, 102, 159, 27, 79, 118, 160, 62, 68, 17, 215, 194, 159, 69, 61, 225, 120, 231, + 180, 27, 164, 4, 142, 39, 162, 88, 250, 174, 69, 194, 215, 251, 26, 185, 27, 170, 209, 55, 204, 21, 172, 207, 205, + 255, 255, 27, 239, 235, 248, 122, 249, 124, 160, 232, 75, 26, 34, 227, 251, 226, 247, 85, 251, 238, 57, 238, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3732, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13936579388496434872" + } + }, + "cborHex": "1bc168ad1d5b5c56b8", + "cborBytes": [27, 193, 104, 173, 29, 91, 92, 86, 184], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3733, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "104549725831142435" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8334767890075283765" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4372734606602834347" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "33a78a012f946727a7fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17142024429114332181" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9867353826601405062" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24309a9566173d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11990618150995878772" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3044180646643340534" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13327132501193613253" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "706cecfd83d731c276c634f0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14840302814210881169" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1894126121192155920" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "80be9d1c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15082433789601541189" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15929248695188905350" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14408058776045266534" + } + } + } + ] + }, + "cborHex": "bf1b01736f6bf5879c23bf1b73ab0b3c8d44f1351b3caf12f4fb9e91ab4a33a78a012f946727a7fd1bede4b4655c6d9415ff1b88efe2069bab0a864724309a9566173d1ba6673bade775e3741b2a3f1a2b5b4b94f61bb8f37c6650355fc54c706cecfd83d731c276c634f01bcdf358c84044f691d8669f1b1a4949abf5726b109f4480be9d1c1bd14f919f198c6c45ffff1bdd100f4a9f96dd861bc7f3b51ea120a666ff", + "cborBytes": [ + 191, 27, 1, 115, 111, 107, 245, 135, 156, 35, 191, 27, 115, 171, 11, 60, 141, 68, 241, 53, 27, 60, 175, 18, 244, + 251, 158, 145, 171, 74, 51, 167, 138, 1, 47, 148, 103, 39, 167, 253, 27, 237, 228, 180, 101, 92, 109, 148, 21, + 255, 27, 136, 239, 226, 6, 155, 171, 10, 134, 71, 36, 48, 154, 149, 102, 23, 61, 27, 166, 103, 59, 173, 231, 117, + 227, 116, 27, 42, 63, 26, 43, 91, 75, 148, 246, 27, 184, 243, 124, 102, 80, 53, 95, 197, 76, 112, 108, 236, 253, + 131, 215, 49, 194, 118, 198, 52, 240, 27, 205, 243, 88, 200, 64, 68, 246, 145, 216, 102, 159, 27, 26, 73, 73, 171, + 245, 114, 107, 16, 159, 68, 128, 190, 157, 28, 27, 209, 79, 145, 159, 25, 140, 108, 69, 255, 255, 27, 221, 16, 15, + 74, 159, 150, 221, 134, 27, 199, 243, 181, 30, 161, 32, 166, 102, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3734, + "sample": { + "_tag": "ByteArray", + "bytearray": "06b53e06" + }, + "cborHex": "4406b53e06", + "cborBytes": [68, 6, 181, 62, 6], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3735, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e8f59ba99c543b351aba9b46" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "461368552149769726" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4268168891109308513" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1686adc2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5304179421510726012" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8134550820d376f22ede34" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6595366110432710866" + } + }, + { + "_tag": "ByteArray", + "bytearray": "40ee18494ef28b2bfd01fbbb" + } + ] + } + ] + } + ] + }, + "cborHex": "d8799f4ce8f59ba99c543b351aba9b46d8669f1b06671c40f56c5dfe9fbf1b3b3b94fe23f17861441686adc21b499c3b14c415717c4b8134550820d376f22ede34ff9f1b5b8772889ffdd0d24c40ee18494ef28b2bfd01fbbbffffffff", + "cborBytes": [ + 216, 121, 159, 76, 232, 245, 155, 169, 156, 84, 59, 53, 26, 186, 155, 70, 216, 102, 159, 27, 6, 103, 28, 64, 245, + 108, 93, 254, 159, 191, 27, 59, 59, 148, 254, 35, 241, 120, 97, 68, 22, 134, 173, 194, 27, 73, 156, 59, 20, 196, + 21, 113, 124, 75, 129, 52, 85, 8, 32, 211, 118, 242, 46, 222, 52, 255, 159, 27, 91, 135, 114, 136, 159, 253, 208, + 210, 76, 64, 238, 24, 73, 78, 242, 139, 43, 253, 1, 251, 187, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3736, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16254361958117887161" + } + }, + "cborHex": "1be1931814e43d4cb9", + "cborBytes": [27, 225, 147, 24, 20, 228, 61, 76, 185], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3737, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3551695502185639370" + } + }, + "cborHex": "1b314a283dd620adca", + "cborBytes": [27, 49, 74, 40, 61, 214, 32, 173, 202], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3738, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16596858084008932386" + } + }, + "cborHex": "1be653e27e54ec3422", + "cborBytes": [27, 230, 83, 226, 126, 84, 236, 52, 34], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3739, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01b0b521b498" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5633508500119628945" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5901929166751910284" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14338964672766178327" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11043931961223096340" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d5a3145" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8395457579651579553" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3725688028186362219" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13158248503511572247" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "209113195026001615" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15767564266556989960" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10311806049028699610" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d220a01cf40fe0d834" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11000663786564488777" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3185291d735fee2d5c6ef3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11381018562414594798" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "809ecd09c48c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15244957685625669706" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ca7c03471a278e8ef0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9633699925918815061" + } + }, + { + "_tag": "ByteArray", + "bytearray": "407a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17419593304976767839" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e78abb33489b59db5543e2e2" + }, + { + "_tag": "ByteArray", + "bytearray": "f0f9dd" + }, + { + "_tag": "ByteArray", + "bytearray": "0caab8606d272a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "52950e77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e2fe7204ad0fb6d5576" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7879" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5715729257518579060" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "971d77249c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5448" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecb1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1250648e28" + } + } + ] + } + } + ] + }, + "cborHex": "bf4601b0b521b498bf1b4e2e3e221cc62c911b51e7dd4eb1c3c98c1bc6fe3c66171a74171b9943ed9b00492814ff441d5a3145bf1b7482a83009fe3ea11b33b44d85a7f9416b1bb69b7d4c6e1f5f171b02e6eb57cb5f2ecf1bdad1a4290945a2081b8f1ae4f7a11475da49d220a01cf40fe0d8341b98aa356e0bae0e49ff4b3185291d735fee2d5c6ef3d8669f1b9df1801552d94aee9f46809ecd09c48c1bd390f83e6b94484a49ca7c03471a278e8ef01b85b1c70a8519135542407affff4137d8669f1bf1bed3d162e9bb5f9f4ce78abb33489b59db5543e2e243f0f9dd470caab8606d272affff418abf4452950e774a7e2fe7204ad0fb6d55764278791b4f525979fab3bd7445971d77249c42544842ecb1451250648e28ffff", + "cborBytes": [ + 191, 70, 1, 176, 181, 33, 180, 152, 191, 27, 78, 46, 62, 34, 28, 198, 44, 145, 27, 81, 231, 221, 78, 177, 195, + 201, 140, 27, 198, 254, 60, 102, 23, 26, 116, 23, 27, 153, 67, 237, 155, 0, 73, 40, 20, 255, 68, 29, 90, 49, 69, + 191, 27, 116, 130, 168, 48, 9, 254, 62, 161, 27, 51, 180, 77, 133, 167, 249, 65, 107, 27, 182, 155, 125, 76, 110, + 31, 95, 23, 27, 2, 230, 235, 87, 203, 95, 46, 207, 27, 218, 209, 164, 41, 9, 69, 162, 8, 27, 143, 26, 228, 247, + 161, 20, 117, 218, 73, 210, 32, 160, 28, 244, 15, 224, 216, 52, 27, 152, 170, 53, 110, 11, 174, 14, 73, 255, 75, + 49, 133, 41, 29, 115, 95, 238, 45, 92, 110, 243, 216, 102, 159, 27, 157, 241, 128, 21, 82, 217, 74, 238, 159, 70, + 128, 158, 205, 9, 196, 140, 27, 211, 144, 248, 62, 107, 148, 72, 74, 73, 202, 124, 3, 71, 26, 39, 142, 142, 240, + 27, 133, 177, 199, 10, 133, 25, 19, 85, 66, 64, 122, 255, 255, 65, 55, 216, 102, 159, 27, 241, 190, 211, 209, 98, + 233, 187, 95, 159, 76, 231, 138, 187, 51, 72, 155, 89, 219, 85, 67, 226, 226, 67, 240, 249, 221, 71, 12, 170, 184, + 96, 109, 39, 42, 255, 255, 65, 138, 191, 68, 82, 149, 14, 119, 74, 126, 47, 231, 32, 74, 208, 251, 109, 85, 118, + 66, 120, 121, 27, 79, 82, 89, 121, 250, 179, 189, 116, 69, 151, 29, 119, 36, 156, 66, 84, 72, 66, 236, 177, 69, + 18, 80, 100, 142, 40, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3740, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3693613661652869983" + } + }, + "cborHex": "1b33425a0e4059635f", + "cborBytes": [27, 51, 66, 90, 14, 64, 89, 99, 95], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3741, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7007097018151093163" + } + }, + "cborHex": "1b613e359ce19843ab", + "cborBytes": [27, 97, 62, 53, 156, 225, 152, 67, 171], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3742, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15669437277031312003" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8216527951315595131" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6225247815343205113" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7214594a6049e43ed382" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9387410600187428731" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2d9b3d27c1bc" + } + ] + }, + "cborHex": "d8669f1bd975062ee7b72a839f9fbf1b7206f8a3813bef7b1b566485e7c04eeaf94a7214594a6049e43ed3821b8246c83448e87f7bffff462d9b3d27c1bcffff", + "cborBytes": [ + 216, 102, 159, 27, 217, 117, 6, 46, 231, 183, 42, 131, 159, 159, 191, 27, 114, 6, 248, 163, 129, 59, 239, 123, 27, + 86, 100, 133, 231, 192, 78, 234, 249, 74, 114, 20, 89, 74, 96, 73, 228, 62, 211, 130, 27, 130, 70, 200, 52, 72, + 232, 127, 123, 255, 255, 70, 45, 155, 61, 39, 193, 188, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3743, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6146602305383773321" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "19c7" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16584806487350671735" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2031766251818514295" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12c7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8408898337832387501" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14050833902715975196" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1395eeab51f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3463624a56ad1e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc6d9f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1149892254644054138" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15715546366044856497" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9390232a1cbbbf8ba96e36c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8ba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f638f3ecce56" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e393b0b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6635410013014506398" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5579047146668268684" + } + } + ] + }, + "cborHex": "9f9fd8669f1b554d1e3b0bff34899f4219c7ffff9f1be62911a153217977ffbf1b1c3248a42a44f7774212c71b74b2687c6adf43ad1bc2fe96fd7166b61c461395eeab51f5473463624a56ad1e43bc6d9f1b0ff53ce9c808287aff80ff1bda18d627c748e0b1bf4c9390232a1cbbbf8ba96e36c242b8ba42abb646f638f3ecce5644e393b0b31b5c15b6403cccbb9eff1b4d6cc1d222519c8cff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 85, 77, 30, 59, 11, 255, 52, 137, 159, 66, 25, 199, 255, 255, 159, 27, 230, 41, 17, + 161, 83, 33, 121, 119, 255, 191, 27, 28, 50, 72, 164, 42, 68, 247, 119, 66, 18, 199, 27, 116, 178, 104, 124, 106, + 223, 67, 173, 27, 194, 254, 150, 253, 113, 102, 182, 28, 70, 19, 149, 238, 171, 81, 245, 71, 52, 99, 98, 74, 86, + 173, 30, 67, 188, 109, 159, 27, 15, 245, 60, 233, 200, 8, 40, 122, 255, 128, 255, 27, 218, 24, 214, 39, 199, 72, + 224, 177, 191, 76, 147, 144, 35, 42, 28, 187, 191, 139, 169, 110, 54, 194, 66, 184, 186, 66, 171, 182, 70, 246, + 56, 243, 236, 206, 86, 68, 227, 147, 176, 179, 27, 92, 21, 182, 64, 60, 204, 187, 158, 255, 27, 77, 108, 193, 210, + 34, 81, 156, 140, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3744, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "384254052170169027" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9892705454917427592" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c89dd117f03b0" + }, + { + "_tag": "ByteArray", + "bytearray": "2cd5aed110936f88" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10415482674169017291" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c6782da434adfd9be" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3921309380086124681" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd94" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8768089988945459085" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17325732646801829410" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2835435907130622526" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3819824638793344120" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1849604445209848847" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7896727922533831351" + } + }, + { + "_tag": "ByteArray", + "bytearray": "399bd3b306e5005d4bcd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5161296683045889819" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b055525064b1b7ac39f1b8949f3328bec2188475c89dd117f03b0482cd5aed110936f881b908b3a4efe1473cb494c6782da434adfd9beff1b366b4a1aee70d089bf42bd941b79ae8363bdc0b78dff1bf0715e0bee02ee22d8669f1b27597def4be8823e9f1b3502be454b8fe4781b19ab1d717bb76c0f1b6d96d034f68992b74a399bd3b306e5005d4bcd1b47a09bfccd5a271bffffff", + "cborBytes": [ + 191, 27, 5, 85, 37, 6, 75, 27, 122, 195, 159, 27, 137, 73, 243, 50, 139, 236, 33, 136, 71, 92, 137, 221, 17, 127, + 3, 176, 72, 44, 213, 174, 209, 16, 147, 111, 136, 27, 144, 139, 58, 78, 254, 20, 115, 203, 73, 76, 103, 130, 218, + 67, 74, 223, 217, 190, 255, 27, 54, 107, 74, 26, 238, 112, 208, 137, 191, 66, 189, 148, 27, 121, 174, 131, 99, + 189, 192, 183, 141, 255, 27, 240, 113, 94, 11, 238, 2, 238, 34, 216, 102, 159, 27, 39, 89, 125, 239, 75, 232, 130, + 62, 159, 27, 53, 2, 190, 69, 75, 143, 228, 120, 27, 25, 171, 29, 113, 123, 183, 108, 15, 27, 109, 150, 208, 52, + 246, 137, 146, 183, 74, 57, 155, 211, 179, 6, 229, 0, 93, 75, 205, 27, 71, 160, 155, 252, 205, 90, 39, 27, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3745, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c04c0579" + } + ] + }, + "cborHex": "9f44c04c0579ff", + "cborBytes": [159, 68, 192, 76, 5, 121, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3746, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16552839668876160849" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8757260120499082019" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3607257080630058672" + } + } + ] + } + ] + }, + "cborHex": "9f80d8669f1be5b77ffa675baf5180ff1b798809ae800ad3239f1b320f8d33e8779eb0ffff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 229, 183, 127, 250, 103, 91, 175, 81, 128, 255, 27, 121, 136, 9, 174, 128, 10, 211, + 35, 159, 27, 50, 15, 141, 51, 232, 119, 158, 176, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3747, + "sample": { + "_tag": "ByteArray", + "bytearray": "ff02" + }, + "cborHex": "42ff02", + "cborBytes": [66, 255, 2], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3748, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4895886385901803631" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16067326580506352049" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33b7c33da27a0c25" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6150571299581003567" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1060554069308209785" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df9247dc68f821c19fbc62" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6472508758403506370" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7cb67688" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94488c2ec2568e9b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8378724689419397217" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7070577230825271213" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "951b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2190412046822246911" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11118703784507893369" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "80aa14ebb9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5295742162305677663" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cab958536dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2e7e8cce1348f3560" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c61e58f0035894cb859" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1848983354746335109" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1170088eda7bc5f4fe7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c5d02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c91e671a6fc38bd080" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c0d85a118ac45f087663b" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11509515040109777468" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b43f1aeba7c59186fbf1bdefa9c658945d9b14833b7c33da27a0c25ff1b555b3802853d072fbf1b0eb7d84e9635fa794bdf9247dc68f821c19fbc621b59d2f86c463ee0c2447cb676884894488c2ec2568e9b1b744735b66fa36861ff1b621fbc87a84e2fad9f42951b1b1e65e826ba9389ffff1b9a4d922ebe626679bf4580aa14ebb91b497e41704649f95f468cab958536dc49d2e7e8cce1348f35604a9c61e58f0035894cb8591b19a8e8909743ef854ab1170088eda7bc5f4fe7438c5d0249c91e671a6fc38bd0804b9c0d85a118ac45f087663bff1b9fba02f2eec2523ca0ff", + "cborBytes": [ + 191, 27, 67, 241, 174, 186, 124, 89, 24, 111, 191, 27, 222, 250, 156, 101, 137, 69, 217, 177, 72, 51, 183, 195, + 61, 162, 122, 12, 37, 255, 27, 85, 91, 56, 2, 133, 61, 7, 47, 191, 27, 14, 183, 216, 78, 150, 53, 250, 121, 75, + 223, 146, 71, 220, 104, 248, 33, 193, 159, 188, 98, 27, 89, 210, 248, 108, 70, 62, 224, 194, 68, 124, 182, 118, + 136, 72, 148, 72, 140, 46, 194, 86, 142, 155, 27, 116, 71, 53, 182, 111, 163, 104, 97, 255, 27, 98, 31, 188, 135, + 168, 78, 47, 173, 159, 66, 149, 27, 27, 30, 101, 232, 38, 186, 147, 137, 255, 255, 27, 154, 77, 146, 46, 190, 98, + 102, 121, 191, 69, 128, 170, 20, 235, 185, 27, 73, 126, 65, 112, 70, 73, 249, 95, 70, 140, 171, 149, 133, 54, 220, + 73, 210, 231, 232, 204, 225, 52, 143, 53, 96, 74, 156, 97, 229, 143, 0, 53, 137, 76, 184, 89, 27, 25, 168, 232, + 144, 151, 67, 239, 133, 74, 177, 23, 0, 136, 237, 167, 188, 95, 79, 231, 67, 140, 93, 2, 73, 201, 30, 103, 26, + 111, 195, 139, 208, 128, 75, 156, 13, 133, 161, 24, 172, 69, 240, 135, 102, 59, 255, 27, 159, 186, 2, 242, 238, + 194, 82, 60, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3749, + "sample": { + "_tag": "ByteArray", + "bytearray": "bd2c23e3a79ec3b5e5402a88" + }, + "cborHex": "4cbd2c23e3a79ec3b5e5402a88", + "cborBytes": [76, 189, 44, 35, 227, 167, 158, 195, 181, 229, 64, 42, 136], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3750, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9604180334795175395" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8380703803707149654" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "636535078383428542" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8088251026423157659" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18436310290475880079" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5577117938334552055" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c4e962ee1" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "3c7a1df276f1dc3c537c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16103607115327725421" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2f759ab68c814e10c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14248759480424994527" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14343234885912410078" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4179367020349998496" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1343017903950915660" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "79b75584652b00dd53" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15415382783794906946" + } + } + ] + } + ] + }, + "cborHex": "d8669f1b8548e7211e4235e39fd8669f1b744e3db4e3bacd569fd8669f1b08d56d48021ea3be80ff9f1b703f3d748424139b1bffdaee8788b18e8f1b4d65e73750e3cff7451c4e962ee1ffffff9fa04a3c7a1df276f1dc3c537cbf1bdf7b8159cf8fdf6d49a2f759ab68c814e10cffd8669f1bc5bdc34118b616df80ffd8669f1bc70d682290ccb7de9f1b3a00182969f1c5a01b12a35bab03fbe84cffffff9f4979b75584652b00dd531bd5ee70f7b8c48742ffffff", + "cborBytes": [ + 216, 102, 159, 27, 133, 72, 231, 33, 30, 66, 53, 227, 159, 216, 102, 159, 27, 116, 78, 61, 180, 227, 186, 205, 86, + 159, 216, 102, 159, 27, 8, 213, 109, 72, 2, 30, 163, 190, 128, 255, 159, 27, 112, 63, 61, 116, 132, 36, 19, 155, + 27, 255, 218, 238, 135, 136, 177, 142, 143, 27, 77, 101, 231, 55, 80, 227, 207, 247, 69, 28, 78, 150, 46, 225, + 255, 255, 255, 159, 160, 74, 60, 122, 29, 242, 118, 241, 220, 60, 83, 124, 191, 27, 223, 123, 129, 89, 207, 143, + 223, 109, 73, 162, 247, 89, 171, 104, 200, 20, 225, 12, 255, 216, 102, 159, 27, 197, 189, 195, 65, 24, 182, 22, + 223, 128, 255, 216, 102, 159, 27, 199, 13, 104, 34, 144, 204, 183, 222, 159, 27, 58, 0, 24, 41, 105, 241, 197, + 160, 27, 18, 163, 91, 171, 3, 251, 232, 76, 255, 255, 255, 159, 73, 121, 183, 85, 132, 101, 43, 0, 221, 83, 27, + 213, 238, 112, 247, 184, 196, 135, 66, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3751, + "sample": { + "_tag": "ByteArray", + "bytearray": "443dbf3349e3b37718a796e3" + }, + "cborHex": "4c443dbf3349e3b37718a796e3", + "cborBytes": [76, 68, 61, 191, 51, 73, 227, 179, 119, 24, 167, 150, 227], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3752, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a2" + } + ] + } + ] + }, + "cborHex": "9f1bfffffffffffffff1d905099f41a2ffff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 217, 5, 9, 159, 65, 162, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3753, + "sample": { + "_tag": "ByteArray", + "bytearray": "0eac622360" + }, + "cborHex": "450eac622360", + "cborBytes": [69, 14, 172, 98, 35, 96], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3754, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14824510547411921592" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16831596251593389764" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "634816" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "515464dd98b6e258" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2dea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4088" + }, + { + "_tag": "ByteArray", + "bytearray": "fbb2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14681149831309090481" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d84bfc04" + }, + { + "_tag": "ByteArray", + "bytearray": "0001" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2559485102ff71c243" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3692157764737213097" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1494981098474529224" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1677277650647678654" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11010466977681808858" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14143478095823675000" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6200823955758541432" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "12" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "096c7c43197c4fb42055827f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5416a3e01c15df5191880" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15248864262775006267" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bcdbb3dcc9b84eab89fbf1be995d79cfb0536c4064363481648515464dd98b6e258ff9f80d87b9f422dea1bfffffffffffffff142408842fbb2ff9f1bcbbdebfccd76deb144d84bfc0442000111492559485102ff71c243ffff1b333d2decd5dca2a9d905089f9f1b14bf3d63687f61c841d6ffff9fbf1b1746e322fc8e7ebe1b98cd096157e49dda1bc447ba648e169e781b560dc088cdb86a7841124c096c7c43197c4fb42055827f4bf5416a3e01c15df51918801bd39ed9414ada643bffffffff", + "cborBytes": [ + 216, 102, 159, 27, 205, 187, 61, 204, 155, 132, 234, 184, 159, 191, 27, 233, 149, 215, 156, 251, 5, 54, 196, 6, + 67, 99, 72, 22, 72, 81, 84, 100, 221, 152, 182, 226, 88, 255, 159, 128, 216, 123, 159, 66, 45, 234, 27, 255, 255, + 255, 255, 255, 255, 255, 241, 66, 64, 136, 66, 251, 178, 255, 159, 27, 203, 189, 235, 252, 205, 118, 222, 177, 68, + 216, 75, 252, 4, 66, 0, 1, 17, 73, 37, 89, 72, 81, 2, 255, 113, 194, 67, 255, 255, 27, 51, 61, 45, 236, 213, 220, + 162, 169, 217, 5, 8, 159, 159, 27, 20, 191, 61, 99, 104, 127, 97, 200, 65, 214, 255, 255, 159, 191, 27, 23, 70, + 227, 34, 252, 142, 126, 190, 27, 152, 205, 9, 97, 87, 228, 157, 218, 27, 196, 71, 186, 100, 142, 22, 158, 120, 27, + 86, 13, 192, 136, 205, 184, 106, 120, 65, 18, 76, 9, 108, 124, 67, 25, 124, 79, 180, 32, 85, 130, 127, 75, 245, + 65, 106, 62, 1, 193, 93, 245, 25, 24, 128, 27, 211, 158, 217, 65, 74, 218, 100, 59, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3755, + "sample": { + "_tag": "ByteArray", + "bytearray": "fdfa0719a73730035fff55" + }, + "cborHex": "4bfdfa0719a73730035fff55", + "cborBytes": [75, 253, 250, 7, 25, 167, 55, 48, 3, 95, 255, 85], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3756, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6655277887304033063" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b5c5c4bfa3244e327a0ff", + "cborBytes": [191, 27, 92, 92, 75, 250, 50, 68, 227, 39, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3757, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11910204459433633874" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5413463048643545046" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f27d77715fa9bbfe3ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "402a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "757a86df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b3176584bd7f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfd3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12600519017826832988" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fea78da299f4b26b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4376586191911109340" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1ba5498bda56d0a8529fbf4105419c41401b4b207bf6031a07d64a5f27d77715fa9bbfe3ff42402a44757a86df477b3176584bd7f342dfd31baede09494b1f525c48fea78da299f4b26b1b3cbcc1f411bdc2dcffffff", + "cborBytes": [ + 216, 102, 159, 27, 165, 73, 139, 218, 86, 208, 168, 82, 159, 191, 65, 5, 65, 156, 65, 64, 27, 75, 32, 123, 246, 3, + 26, 7, 214, 74, 95, 39, 215, 119, 21, 250, 155, 191, 227, 255, 66, 64, 42, 68, 117, 122, 134, 223, 71, 123, 49, + 118, 88, 75, 215, 243, 66, 223, 211, 27, 174, 222, 9, 73, 75, 31, 82, 92, 72, 254, 167, 141, 162, 153, 244, 178, + 107, 27, 60, 188, 193, 244, 17, 189, 194, 220, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3758, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5369254739010750529" + }, + "fields": [] + }, + "cborHex": "d8669f1b4a836cbcd351884180ff", + "cborBytes": [216, 102, 159, 27, 74, 131, 108, 188, 211, 81, 136, 65, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3759, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fbc989dec04b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11986531833373678784" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19c5368ee36963f8cd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fe5a03d62498160dff15e1c4" + }, + { + "_tag": "ByteArray", + "bytearray": "2d733bada2493f1eb62b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9163943761708492641" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3667981994340892527" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9389118820324301265" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e33bf1ff7e92cf9ea" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6476289125393083173" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7055104547455812875" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60da702f1ffd01daefe9" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "55b12b" + }, + { + "_tag": "ByteArray", + "bytearray": "27072ca2a2d1a9" + }, + { + "_tag": "ByteArray", + "bytearray": "bf264502dbe9b6b11ba5" + }, + { + "_tag": "ByteArray", + "bytearray": "54" + } + ] + } + } + ] + }, + "cborHex": "bf470fbc989dec04b61ba658b731f1265cc04919c5368ee36963f8cd9f4cfe5a03d62498160dff15e1c44a2d733bada2493f1eb62b1b7f2cde4c724aa7611b32e74a30a737bf6f1b824cd9d2475d59d1ff491e33bf1ff7e92cf9ead8669f1b59e066a58dc7ab259f1b61e8c434d458c50bffff4a60da702f1ffd01daefe9a041909f4355b12b4727072ca2a2d1a94abf264502dbe9b6b11ba54154ffff", + "cborBytes": [ + 191, 71, 15, 188, 152, 157, 236, 4, 182, 27, 166, 88, 183, 49, 241, 38, 92, 192, 73, 25, 197, 54, 142, 227, 105, + 99, 248, 205, 159, 76, 254, 90, 3, 214, 36, 152, 22, 13, 255, 21, 225, 196, 74, 45, 115, 59, 173, 162, 73, 63, 30, + 182, 43, 27, 127, 44, 222, 76, 114, 74, 167, 97, 27, 50, 231, 74, 48, 167, 55, 191, 111, 27, 130, 76, 217, 210, + 71, 93, 89, 209, 255, 73, 30, 51, 191, 31, 247, 233, 44, 249, 234, 216, 102, 159, 27, 89, 224, 102, 165, 141, 199, + 171, 37, 159, 27, 97, 232, 196, 52, 212, 88, 197, 11, 255, 255, 74, 96, 218, 112, 47, 31, 253, 1, 218, 239, 233, + 160, 65, 144, 159, 67, 85, 177, 43, 71, 39, 7, 44, 162, 162, 209, 169, 74, 191, 38, 69, 2, 219, 233, 182, 177, 27, + 165, 65, 84, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3760, + "sample": { + "_tag": "ByteArray", + "bytearray": "53e9d7afa53f3f6c" + }, + "cborHex": "4853e9d7afa53f3f6c", + "cborBytes": [72, 83, 233, 215, 175, 165, 63, 63, 108], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3761, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9907951613194162312" + }, + "fields": [] + }, + "cborHex": "d8669f1b89801d7f6432508880ff", + "cborBytes": [216, 102, 159, 27, 137, 128, 29, 127, 100, 50, 80, 136, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3762, + "sample": { + "_tag": "ByteArray", + "bytearray": "5f635254a39b2f0b" + }, + "cborHex": "485f635254a39b2f0b", + "cborBytes": [72, 95, 99, 82, 84, 163, 155, 47, 11], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3763, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4114266862361130326" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7868267054476370027" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7d2d85078704" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5178675598985968770" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "206d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4d0059" + }, + { + "_tag": "ByteArray", + "bytearray": "c1e8189c4441d08a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "727e" + }, + { + "_tag": "ByteArray", + "bytearray": "07" + } + ] + }, + "cborHex": "d8669f1b3918cfe9ba3235569fd8669f1bfffffffffffffffa9fd8669f1b6d31b332bbf9206b9f467d2d85078704124101ffffd8669f1b47de5a04fc8abc8280ffd8669f1bfffffffffffffffe9f42206dffff434d005948c1e8189c4441d08affff42727e4107ffff", + "cborBytes": [ + 216, 102, 159, 27, 57, 24, 207, 233, 186, 50, 53, 86, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 250, 159, 216, 102, 159, 27, 109, 49, 179, 50, 187, 249, 32, 107, 159, 70, 125, 45, 133, 7, 135, 4, 18, 65, 1, + 255, 255, 216, 102, 159, 27, 71, 222, 90, 4, 252, 138, 188, 130, 128, 255, 216, 102, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 254, 159, 66, 32, 109, 255, 255, 67, 77, 0, 89, 72, 193, 232, 24, 156, 68, 65, 208, 138, 255, 255, + 66, 114, 126, 65, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3764, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16120056030040827698" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "755679432060468917" + } + } + } + ] + }, + "cborHex": "bf1bdfb5f18d35fa27321b0a7cb67090087eb5ff", + "cborBytes": [191, 27, 223, 181, 241, 141, 53, 250, 39, 50, 27, 10, 124, 182, 112, 144, 8, 126, 181, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3765, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "392121773195432174" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17660261853103347496" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1289287759911478468" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15407776846825873582" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4754878653019173740" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "891055ecacad6e439ed0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11159520440124352846" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4363966702304829786" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17779730625754839352" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2494391282882586108" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4e40" + } + ] + }, + "cborHex": "9fbf1b057118acd80290ee1bf515da965a9b57281b11e47862fec864c41bd5d36b68858b60ae1b41fcb8f1474bb36c4a891055ecacad6e439ed01b9ade94b6f152a94e1b3c8fec982e83215a1bf6be4acd964039381b229ddba7eb0c25fcff424e40ff", + "cborBytes": [ + 159, 191, 27, 5, 113, 24, 172, 216, 2, 144, 238, 27, 245, 21, 218, 150, 90, 155, 87, 40, 27, 17, 228, 120, 98, + 254, 200, 100, 196, 27, 213, 211, 107, 104, 133, 139, 96, 174, 27, 65, 252, 184, 241, 71, 75, 179, 108, 74, 137, + 16, 85, 236, 172, 173, 110, 67, 158, 208, 27, 154, 222, 148, 182, 241, 82, 169, 78, 27, 60, 143, 236, 152, 46, + 131, 33, 90, 27, 246, 190, 74, 205, 150, 64, 57, 56, 27, 34, 157, 219, 167, 235, 12, 37, 252, 255, 66, 78, 64, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3766, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3893443385021732388" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19f7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9165077194577781873" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5228050405312553351" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1199b23d1b23a135" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16342863642613105727" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1695372583521349794" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b36084a215d5096244219f71b7f30e52659d7a4711b488dc424ec7de187481199b23d1b23a135bf1be2cd83e50e99c43f1b17872c61dab9f0a2ffff", + "cborBytes": [ + 191, 27, 54, 8, 74, 33, 93, 80, 150, 36, 66, 25, 247, 27, 127, 48, 229, 38, 89, 215, 164, 113, 27, 72, 141, 196, + 36, 236, 125, 225, 135, 72, 17, 153, 178, 61, 27, 35, 161, 53, 191, 27, 226, 205, 131, 229, 14, 153, 196, 63, 27, + 23, 135, 44, 97, 218, 185, 240, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3767, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9843862171367149266" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1612789040459254440" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5502" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9236732931347020868" + } + }, + { + "_tag": "ByteArray", + "bytearray": "88edd64d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4e99cc256ee12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1889889773128056829" + } + } + } + ] + }, + "cborHex": "bf1b889c6c7d663e8ed29f1b1661c7165e378aa84255021b802f77a9aa177c444488edd64dff47b4e99cc256ee121b1a3a3cbc4ff0fffdff", + "cborBytes": [ + 191, 27, 136, 156, 108, 125, 102, 62, 142, 210, 159, 27, 22, 97, 199, 22, 94, 55, 138, 168, 66, 85, 2, 27, 128, + 47, 119, 169, 170, 23, 124, 68, 68, 136, 237, 214, 77, 255, 71, 180, 233, 156, 194, 86, 238, 18, 27, 26, 58, 60, + 188, 79, 240, 255, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3768, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "462473345158985790" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c0cf7b05219" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2513" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c94fdadbece7a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "421504882518061736" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3623782774580758039" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4924353772166461053" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8366562801202198418" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10709723106218107078" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9368982419077204169" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6342092176691048465" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12110561719589909719" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10808576692438762400" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11775303534933083314" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "441402b585" + }, + { + "_tag": "ByteArray", + "bytearray": "0a35abcb168abdf9" + }, + { + "_tag": "ByteArray", + "bytearray": "e5995b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10653229441295845787" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d905029fd8669f1b066b090ea049b83e80ff9fbf465c0cf7b0521942251347c94fdadbece7a441dfff1b05d97c751994f2a8bf1b324a433bde10c6171b4456d1aa5a56367d1b741c008a2ca777921b94a0946c2cec60c61b82054fdf03fa08c91b5803a33b9c7430111ba8115bb82e99b4d71b95ffc73c486103a0ffd8669f1ba36a482d421684b29f45441402b585480a35abcb168abdf943e5995b1b93d7dfbbcf2c099bffffffff", + "cborBytes": [ + 217, 5, 2, 159, 216, 102, 159, 27, 6, 107, 9, 14, 160, 73, 184, 62, 128, 255, 159, 191, 70, 92, 12, 247, 176, 82, + 25, 66, 37, 19, 71, 201, 79, 218, 219, 236, 231, 164, 65, 223, 255, 27, 5, 217, 124, 117, 25, 148, 242, 168, 191, + 27, 50, 74, 67, 59, 222, 16, 198, 23, 27, 68, 86, 209, 170, 90, 86, 54, 125, 27, 116, 28, 0, 138, 44, 167, 119, + 146, 27, 148, 160, 148, 108, 44, 236, 96, 198, 27, 130, 5, 79, 223, 3, 250, 8, 201, 27, 88, 3, 163, 59, 156, 116, + 48, 17, 27, 168, 17, 91, 184, 46, 153, 180, 215, 27, 149, 255, 199, 60, 72, 97, 3, 160, 255, 216, 102, 159, 27, + 163, 106, 72, 45, 66, 22, 132, 178, 159, 69, 68, 20, 2, 181, 133, 72, 10, 53, 171, 203, 22, 138, 189, 249, 67, + 229, 153, 91, 27, 147, 215, 223, 187, 207, 44, 9, 155, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3769, + "sample": { + "_tag": "ByteArray", + "bytearray": "86fac01447d9" + }, + "cborHex": "4686fac01447d9", + "cborBytes": [70, 134, 250, 192, 20, 71, 217], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3770, + "sample": { + "_tag": "ByteArray", + "bytearray": "35fd3da3e0b7" + }, + "cborHex": "4635fd3da3e0b7", + "cborBytes": [70, 53, 253, 61, 163, 224, 183], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3771, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "440068350688215253" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9073658610710518624" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2047457182133952776" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9e09eb1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4710857752008339681" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d6438e" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5221316844213439506" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15442463190485703812" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "58" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3081913841628220629" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8332109236463253361" + } + }, + { + "_tag": "ByteArray", + "bytearray": "140cffb380223c1a07f8ea10" + }, + { + "_tag": "ByteArray", + "bytearray": "f68aa780a5c0" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11088009266959336658" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f5c6f9ca60fe9a821774faf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16842292495036784815" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e5c1c001015e" + } + ] + } + } + ] + }, + "cborHex": "bf1b061b6fd557a9c0d51b7dec1c6ea0909b601b1c6a077591eaa10844e9e09eb11b4160542a8fda30e19f43d6438eff1b4875d8018f1b0c12d8669f1bd64ea6743df21c849f41581b2ac5284f6e9c0cd51b73a199348524b7714c140cffb380223c1a07f8ea1046f68aa780a5c0ffff1b99e085ae7759c4d24c6f5c6f9ca60fe9a821774faf1be9bbd7ca39e520af9f46e5c1c001015effff", + "cborBytes": [ + 191, 27, 6, 27, 111, 213, 87, 169, 192, 213, 27, 125, 236, 28, 110, 160, 144, 155, 96, 27, 28, 106, 7, 117, 145, + 234, 161, 8, 68, 233, 224, 158, 177, 27, 65, 96, 84, 42, 143, 218, 48, 225, 159, 67, 214, 67, 142, 255, 27, 72, + 117, 216, 1, 143, 27, 12, 18, 216, 102, 159, 27, 214, 78, 166, 116, 61, 242, 28, 132, 159, 65, 88, 27, 42, 197, + 40, 79, 110, 156, 12, 213, 27, 115, 161, 153, 52, 133, 36, 183, 113, 76, 20, 12, 255, 179, 128, 34, 60, 26, 7, + 248, 234, 16, 70, 246, 138, 167, 128, 165, 192, 255, 255, 27, 153, 224, 133, 174, 119, 89, 196, 210, 76, 111, 92, + 111, 156, 166, 15, 233, 168, 33, 119, 79, 175, 27, 233, 187, 215, 202, 57, 229, 32, 175, 159, 70, 229, 193, 192, + 1, 1, 94, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3772, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6509919828254846605" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16544557189232784963" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03fb207369f4f794495783f0" + }, + { + "_tag": "ByteArray", + "bytearray": "c9be62a22f127d62d971" + }, + { + "_tag": "ByteArray", + "bytearray": "c58093ece2" + }, + { + "_tag": "ByteArray", + "bytearray": "032ad5f7eb768b77fd18" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f1b5a57e197bf66ee8d9f9f1be59a131b565af6434c03fb207369f4f794495783f04ac9be62a22f127d62d97145c58093ece24a032ad5f7eb768b77fd18ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 27, 90, 87, 225, 151, 191, 102, 238, 141, 159, + 159, 27, 229, 154, 19, 27, 86, 90, 246, 67, 76, 3, 251, 32, 115, 105, 244, 247, 148, 73, 87, 131, 240, 74, 201, + 190, 98, 162, 47, 18, 125, 98, 217, 113, 69, 197, 128, 147, 236, 226, 74, 3, 42, 213, 247, 235, 118, 139, 119, + 253, 24, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3773, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17183296032911304452" + } + }, + "cborHex": "1bee7754b3700ea704", + "cborBytes": [27, 238, 119, 84, 179, 112, 14, 167, 4], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3774, + "sample": { + "_tag": "ByteArray", + "bytearray": "f0c6d8" + }, + "cborHex": "43f0c6d8", + "cborBytes": [67, 240, 198, 216], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3775, + "sample": { + "_tag": "ByteArray", + "bytearray": "f91f03e804ff8d" + }, + "cborHex": "47f91f03e804ff8d", + "cborBytes": [71, 249, 31, 3, 232, 4, 255, 141], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3776, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13209937147531919554" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "faf1bcde98e6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "07fbf278fe891e02c9fb" + }, + { + "_tag": "ByteArray", + "bytearray": "0174" + } + ] + } + } + ] + }, + "cborHex": "bf1bb7531fd8afe080c246faf1bcde98e61bffffffffffffffee9f4a07fbf278fe891e02c9fb420174ffff", + "cborBytes": [ + 191, 27, 183, 83, 31, 216, 175, 224, 128, 194, 70, 250, 241, 188, 222, 152, 230, 27, 255, 255, 255, 255, 255, 255, + 255, 238, 159, 74, 7, 251, 242, 120, 254, 137, 30, 2, 201, 251, 66, 1, 116, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3777, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3949480931263967867" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b36cf5ffb532af27b80ffff", + "cborBytes": [159, 216, 102, 159, 27, 54, 207, 95, 251, 83, 42, 242, 123, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3778, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0641302c776a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "320303350372724366" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ff200a625191f1b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6421594180901268354" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17790854678843115390" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c2e9d92655" + }, + { + "_tag": "ByteArray", + "bytearray": "3c76" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4744346086743630146" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3001894215792480362" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "750835178058052947" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bff1fcfd" + }, + { + "_tag": "ByteArray", + "bytearray": "73d502" + }, + { + "_tag": "ByteArray", + "bytearray": "da3ad5" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7405aa8ed0bb" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8517239526279667080" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0636" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6438804139128479879" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1600" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14010840833276250149" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15103337792055220125" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12991056307239128180" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11595686775081588861" + } + }, + { + "_tag": "ByteArray", + "bytearray": "76d88f8e66" + }, + { + "_tag": "ByteArray", + "bytearray": "e2ca1a5dcbd75465769605" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10735356912353751652" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17531758061214357926" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "86df731dad72489a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "928648022350095050" + } + }, + { + "_tag": "ByteArray", + "bytearray": "51ba37091b7040149a" + }, + { + "_tag": "ByteArray", + "bytearray": "0373e69689" + }, + { + "_tag": "ByteArray", + "bytearray": "6afc3bdf" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2634220994668558951" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93de6bb76112d87b2aed" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11433620314442370444" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6505ca42d419750" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5302607193" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd52c72a758463e5b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8737940a36bfd2677" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14534883465576218886" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87a9f9fbf460641302c776a1b0471f2333b556e8e483ff200a625191f1b1b591e15e26c55eb82ff9f1bf6e5d012070a477e45c2e9d92655423c761b41d74da117de6142ffff1b29a8dee2719c506ad8669f1bffffffffffffffff9fd8669f1b0a6b809dc90475539f1bfffffffffffffffe44bff1fcfd4373d50243da3ad5ffffd87b9f467405aa8ed0bbffd87e80d8669f1b763350390ed0dd8880ff420636ffffd8669f1bfffffffffffffff59f9f121b595b3a4013116087421600ffd8669f1bc270818157f8082580ff1bd199d5b3722f179dd8669f1bb44980e1c2160c749f1ba0ec27af736ed87d4576d88f8e664be2ca1a5dcbd754657696051b94fba63bc1e132641bf34d5111c6c5d9a6ffff9f4886df731dad72489a1b0ce33874c58be2ca4951ba37091b7040149a450373e69689446afc3bdfffffffd87a9fbf1b248ea209b7187a674a93de6bb76112d87b2aed1b9eac61191b070d8c48b6505ca42d41975045530260719349cd52c72a758463e5b949b8737940a36bfd26771bc9b64780b95e8106ffffff", + "cborBytes": [ + 216, 122, 159, 159, 191, 70, 6, 65, 48, 44, 119, 106, 27, 4, 113, 242, 51, 59, 85, 110, 142, 72, 63, 242, 0, 166, + 37, 25, 31, 27, 27, 89, 30, 21, 226, 108, 85, 235, 130, 255, 159, 27, 246, 229, 208, 18, 7, 10, 71, 126, 69, 194, + 233, 217, 38, 85, 66, 60, 118, 27, 65, 215, 77, 161, 23, 222, 97, 66, 255, 255, 27, 41, 168, 222, 226, 113, 156, + 80, 106, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 216, 102, 159, 27, 10, 107, 128, 157, + 201, 4, 117, 83, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 68, 191, 241, 252, 253, 67, 115, 213, 2, 67, + 218, 58, 213, 255, 255, 216, 123, 159, 70, 116, 5, 170, 142, 208, 187, 255, 216, 126, 128, 216, 102, 159, 27, 118, + 51, 80, 57, 14, 208, 221, 136, 128, 255, 66, 6, 54, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 245, 159, 159, 18, 27, 89, 91, 58, 64, 19, 17, 96, 135, 66, 22, 0, 255, 216, 102, 159, 27, 194, 112, 129, + 129, 87, 248, 8, 37, 128, 255, 27, 209, 153, 213, 179, 114, 47, 23, 157, 216, 102, 159, 27, 180, 73, 128, 225, + 194, 22, 12, 116, 159, 27, 160, 236, 39, 175, 115, 110, 216, 125, 69, 118, 216, 143, 142, 102, 75, 226, 202, 26, + 93, 203, 215, 84, 101, 118, 150, 5, 27, 148, 251, 166, 59, 193, 225, 50, 100, 27, 243, 77, 81, 17, 198, 197, 217, + 166, 255, 255, 159, 72, 134, 223, 115, 29, 173, 114, 72, 154, 27, 12, 227, 56, 116, 197, 139, 226, 202, 73, 81, + 186, 55, 9, 27, 112, 64, 20, 154, 69, 3, 115, 230, 150, 137, 68, 106, 252, 59, 223, 255, 255, 255, 216, 122, 159, + 191, 27, 36, 142, 162, 9, 183, 24, 122, 103, 74, 147, 222, 107, 183, 97, 18, 216, 123, 42, 237, 27, 158, 172, 97, + 25, 27, 7, 13, 140, 72, 182, 80, 92, 164, 45, 65, 151, 80, 69, 83, 2, 96, 113, 147, 73, 205, 82, 199, 42, 117, + 132, 99, 229, 185, 73, 184, 115, 121, 64, 163, 107, 253, 38, 119, 27, 201, 182, 71, 128, 185, 94, 129, 6, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3779, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "205647acfbb5c05bb7d5d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52f4a944a31c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22655f689a50f7b7b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13782590079215185391" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36ec" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1527425060538795883" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e3910c1f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15886194357385765814" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15567562616315109745" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "26df64e745c3218a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12822324481548284352" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b98e393c4a46176da2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96a86ed248c99d" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fbeace75df64634" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3984533455508584859" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "504fc05b0395eb22" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e40c86462a5e0e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "786908862219110946" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7841424481254135804" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2999293267858746132" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33d741b778" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6824229936990522108" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9495595cbe8a7c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7231787091957874857" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8094497410234173836" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0414bcb5cea75ba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86c217fcfd31" + } + } + ] + }, + "cborHex": "bf4b205647acfbb5c05bb7d5d44652f4a944a31c4922655f689a50f7b7b01bbf4598a75c71adef4236ecbf1b153280fffa71c76b456e3910c1f81bdc77199970cb23b61bd80b17b8141ce1714826df64e745c3218a1bb1f20c2e2d7af1c049b98e393c4a46176da24796a86ed248c99dff486fbeace75df64634d8669f1b374be8111b3fb99b9f48504fc05b0395eb22ffff47e40c86462a5e0ebf1b0aeba970e32d4a221b6cd25605223457fc1b299fa1560ff0eb144533d741b7781b5eb488f8abe80afc479495595cbe8a7c1b645c780b636780a91b70556e821453c98cff48f0414bcb5cea75ba4686c217fcfd31ff", + "cborBytes": [ + 191, 75, 32, 86, 71, 172, 251, 181, 192, 91, 183, 213, 212, 70, 82, 244, 169, 68, 163, 28, 73, 34, 101, 95, 104, + 154, 80, 247, 183, 176, 27, 191, 69, 152, 167, 92, 113, 173, 239, 66, 54, 236, 191, 27, 21, 50, 128, 255, 250, + 113, 199, 107, 69, 110, 57, 16, 193, 248, 27, 220, 119, 25, 153, 112, 203, 35, 182, 27, 216, 11, 23, 184, 20, 28, + 225, 113, 72, 38, 223, 100, 231, 69, 195, 33, 138, 27, 177, 242, 12, 46, 45, 122, 241, 192, 73, 185, 142, 57, 60, + 74, 70, 23, 109, 162, 71, 150, 168, 110, 210, 72, 201, 157, 255, 72, 111, 190, 172, 231, 93, 246, 70, 52, 216, + 102, 159, 27, 55, 75, 232, 17, 27, 63, 185, 155, 159, 72, 80, 79, 192, 91, 3, 149, 235, 34, 255, 255, 71, 228, 12, + 134, 70, 42, 94, 14, 191, 27, 10, 235, 169, 112, 227, 45, 74, 34, 27, 108, 210, 86, 5, 34, 52, 87, 252, 27, 41, + 159, 161, 86, 15, 240, 235, 20, 69, 51, 215, 65, 183, 120, 27, 94, 180, 136, 248, 171, 232, 10, 252, 71, 148, 149, + 89, 92, 190, 138, 124, 27, 100, 92, 120, 11, 99, 103, 128, 169, 27, 112, 85, 110, 130, 20, 83, 201, 140, 255, 72, + 240, 65, 75, 203, 92, 234, 117, 186, 70, 134, 194, 23, 252, 253, 49, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3780, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14311670" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1183195785795218573" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70116c67f3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f4ff76ad791595ee385" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06d901f9f994f9575800bd" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34ff01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "350786" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b9be01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44ff070301" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "acaaf2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "350315482120124170" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e17cf09c81bba132c0bef6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5488510769612958908" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f50215cbf40dfb" + } + ] + } + } + ] + }, + "cborHex": "bf4414311670bf1b106b8e4c60102c8d4570116c67f31bffffffffffffffff034a7f4ff76ad791595ee3854b06d901f9f994f9575800bdff4334ff011bfffffffffffffffd433507869f43b9be011bffffffffffffffeeff4544ff0703010c43acaaf21b04dc92132f16f70a4be17cf09c81bba132c0bef6d8669f1b4c2b1b7730afacbc9f47f50215cbf40dfbffffff", + "cborBytes": [ + 191, 68, 20, 49, 22, 112, 191, 27, 16, 107, 142, 76, 96, 16, 44, 141, 69, 112, 17, 108, 103, 243, 27, 255, 255, + 255, 255, 255, 255, 255, 255, 3, 74, 127, 79, 247, 106, 215, 145, 89, 94, 227, 133, 75, 6, 217, 1, 249, 249, 148, + 249, 87, 88, 0, 189, 255, 67, 52, 255, 1, 27, 255, 255, 255, 255, 255, 255, 255, 253, 67, 53, 7, 134, 159, 67, + 185, 190, 1, 27, 255, 255, 255, 255, 255, 255, 255, 238, 255, 69, 68, 255, 7, 3, 1, 12, 67, 172, 170, 242, 27, 4, + 220, 146, 19, 47, 22, 247, 10, 75, 225, 124, 240, 156, 129, 187, 161, 50, 192, 190, 246, 216, 102, 159, 27, 76, + 43, 27, 119, 48, 175, 172, 188, 159, 71, 245, 2, 21, 203, 244, 13, 251, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3781, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2939" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd21d93b9a7e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ae0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5090464415860327727" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4e2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9670435607739345116" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5353387234251747794" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16024422466196267051" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10699266435586322577" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d78" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11242882870458190820" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e0a74a1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58fac066" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "148a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1fc3c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13538248071565109987" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b16bad8bf7a3fb3b87d89c66" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11579627616142474756" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd20" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1916610413779438913" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14187794732113291172" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b0" + }, + { + "_tag": "ByteArray", + "bytearray": "ecad1d0946f49f6448a7598c" + } + ] + } + } + ] + }, + "cborHex": "bf42293946fd21d93b9a7e422ae0bf1b46a4f66a711f052f42c4e21b863449f2f697a8dc1b4a4b0d537aafb1d21bde622f54fc6ae02b1b947b6e22d261f091ff429d78bf1b9c06be6740fc0be4440e0a74a14458fac06642148a43b1fc3c1bbbe184e472c16ae3ff4cb16bad8bf7a3fb3b87d89c661ba0b319f72379be0442dd20d8669f1b1a992b0446234d419f1bc4e52c2381c567a441b04cecad1d0946f49f6448a7598cffffff", + "cborBytes": [ + 191, 66, 41, 57, 70, 253, 33, 217, 59, 154, 126, 66, 42, 224, 191, 27, 70, 164, 246, 106, 113, 31, 5, 47, 66, 196, + 226, 27, 134, 52, 73, 242, 246, 151, 168, 220, 27, 74, 75, 13, 83, 122, 175, 177, 210, 27, 222, 98, 47, 84, 252, + 106, 224, 43, 27, 148, 123, 110, 34, 210, 97, 240, 145, 255, 66, 157, 120, 191, 27, 156, 6, 190, 103, 64, 252, 11, + 228, 68, 14, 10, 116, 161, 68, 88, 250, 192, 102, 66, 20, 138, 67, 177, 252, 60, 27, 187, 225, 132, 228, 114, 193, + 106, 227, 255, 76, 177, 107, 173, 139, 247, 163, 251, 59, 135, 216, 156, 102, 27, 160, 179, 25, 247, 35, 121, 190, + 4, 66, 221, 32, 216, 102, 159, 27, 26, 153, 43, 4, 70, 35, 77, 65, 159, 27, 196, 229, 44, 35, 129, 197, 103, 164, + 65, 176, 76, 236, 173, 29, 9, 70, 244, 159, 100, 72, 167, 89, 140, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3782, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4753120627544535023" + } + }, + "cborHex": "1b41f67a07135fafef", + "cborBytes": [27, 65, 246, 122, 7, 19, 95, 175, 239], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3783, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c0f1ea5ee7fda1b75ddcb" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8918068345710468930" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16512255778538392286" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "486065141012056733" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4b8c0f1ea5ee7fda1b75ddcbbf04100b031b7bc357e914ba5f421bfffffffffffffff01be5275125182c0ade1b06bed9aba3b94a9dffff", + "cborBytes": [ + 191, 75, 140, 15, 30, 165, 238, 127, 218, 27, 117, 221, 203, 191, 4, 16, 11, 3, 27, 123, 195, 87, 233, 20, 186, + 95, 66, 27, 255, 255, 255, 255, 255, 255, 255, 240, 27, 229, 39, 81, 37, 24, 44, 10, 222, 27, 6, 190, 217, 171, + 163, 185, 74, 157, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3784, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18088047557311030633" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6712053527277116575" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f1445675e344e41d57" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14125613382968232636" + } + }, + { + "_tag": "ByteArray", + "bytearray": "66cdb8d2" + }, + { + "_tag": "ByteArray", + "bytearray": "64259623873d45e8f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13864695889588746332" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fbf5a3861c950b23143ebccd" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15990356562073418964" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18329286917771528142" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f2ad1cbc211180cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16081937874812887723" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10915716601821237192" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2462" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5286642493877372121" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "612936578268089621" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11404355218745996849" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8475b432997a43" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1d" + } + ] + }, + "cborHex": "d8669f1bfb05a76b35e565699fd8669f1b5d26011efec29c9f9f9f49f1445675e344e41d571bc4084287f6534abc4466cdb8d24964259623873d45e8f91bc0694b7409c1785cff4cfbf5a3861c950b23143ebccd80d8669f1bdde928929a38fcd480ffffff9f80ffd8669f1bfe5eb556c7fc87ce9f48f2ad1cbc211180cc1bdf2e854a981f62ab809f1b977c6a6a58638fc8422462ffffffbf1b495ded569e0bc4d91b0881969209834d151b9e4468a609ba3631478475b432997a43ff411dffff", + "cborBytes": [ + 216, 102, 159, 27, 251, 5, 167, 107, 53, 229, 101, 105, 159, 216, 102, 159, 27, 93, 38, 1, 30, 254, 194, 156, 159, + 159, 159, 73, 241, 68, 86, 117, 227, 68, 228, 29, 87, 27, 196, 8, 66, 135, 246, 83, 74, 188, 68, 102, 205, 184, + 210, 73, 100, 37, 150, 35, 135, 61, 69, 232, 249, 27, 192, 105, 75, 116, 9, 193, 120, 92, 255, 76, 251, 245, 163, + 134, 28, 149, 11, 35, 20, 62, 188, 205, 128, 216, 102, 159, 27, 221, 233, 40, 146, 154, 56, 252, 212, 128, 255, + 255, 255, 159, 128, 255, 216, 102, 159, 27, 254, 94, 181, 86, 199, 252, 135, 206, 159, 72, 242, 173, 28, 188, 33, + 17, 128, 204, 27, 223, 46, 133, 74, 152, 31, 98, 171, 128, 159, 27, 151, 124, 106, 106, 88, 99, 143, 200, 66, 36, + 98, 255, 255, 255, 191, 27, 73, 93, 237, 86, 158, 11, 196, 217, 27, 8, 129, 150, 146, 9, 131, 77, 21, 27, 158, 68, + 104, 166, 9, 186, 54, 49, 71, 132, 117, 180, 50, 153, 122, 67, 255, 65, 29, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3785, + "sample": { + "_tag": "ByteArray", + "bytearray": "0e5056245f7e7d70" + }, + "cborHex": "480e5056245f7e7d70", + "cborBytes": [72, 14, 80, 86, 36, 95, 126, 125, 112], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3786, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15481201311665005003" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4e90bbbd4d4140f1f0bcf3d7" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4269545468795480480" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5126702691911614465" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15790765227133694604" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4779270130203383915" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9864582012786873043" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16027408063146208750" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13604773018849079403" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5586389289683784663" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3452724825799455575" + } + } + ] + }, + "cborHex": "9f9fd8669f1bd6d84691ee1aa1cb9f4c4e90bbbd4d4140f1f0bcf3d7ffffd8669f1b3b4078fb9beee9a09f1b4725b4ef946e40011bdb24114f9ee4f28cffff1b425360dc9c68586b1b88e6091369de92d3ffd8669f1bde6ccab7720fadee9f1bbccddcfabe51706bffff1b4d86d77604a613d71b2fea8aef8cf2f357ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 214, 216, 70, 145, 238, 26, 161, 203, 159, 76, 78, 144, 187, 189, 77, 65, 64, 241, + 240, 188, 243, 215, 255, 255, 216, 102, 159, 27, 59, 64, 120, 251, 155, 238, 233, 160, 159, 27, 71, 37, 180, 239, + 148, 110, 64, 1, 27, 219, 36, 17, 79, 158, 228, 242, 140, 255, 255, 27, 66, 83, 96, 220, 156, 104, 88, 107, 27, + 136, 230, 9, 19, 105, 222, 146, 211, 255, 216, 102, 159, 27, 222, 108, 202, 183, 114, 15, 173, 238, 159, 27, 188, + 205, 220, 250, 190, 81, 112, 107, 255, 255, 27, 77, 134, 215, 118, 4, 166, 19, 215, 27, 47, 234, 138, 239, 140, + 242, 243, 87, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3787, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a19827eecbab4e05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16002454840085434438" + } + } + } + ] + }, + "cborHex": "bf48a19827eecbab4e051bde1423e47585d046ff", + "cborBytes": [191, 72, 161, 152, 39, 238, 203, 171, 78, 5, 27, 222, 20, 35, 228, 117, 133, 208, 70, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3788, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6301948fac3559137b17" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cb4dfba061d0d2c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12171661911938383746" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7bcb89ac2be4eba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12494248250079458436" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c54ba1947129bcb247" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d2c5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7769280921670619771" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3763da3752a5d8" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff708254f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7034127575091658937" + } + } + } + ] + }, + "cborHex": "bf4a6301948fac3559137b17489cb4dfba061d0d2c4179d8669f1ba8ea6e054b3d3f8280ff48b7bcb89ac2be4eba1bad647c960988348449c54ba1947129bcb2479f42d2c51b6bd207d5b865927b473763da3752a5d8ff45ff708254f81b619e3dc2da1e40b9ff", + "cborBytes": [ + 191, 74, 99, 1, 148, 143, 172, 53, 89, 19, 123, 23, 72, 156, 180, 223, 186, 6, 29, 13, 44, 65, 121, 216, 102, 159, + 27, 168, 234, 110, 5, 75, 61, 63, 130, 128, 255, 72, 183, 188, 184, 154, 194, 190, 78, 186, 27, 173, 100, 124, + 150, 9, 136, 52, 132, 73, 197, 75, 161, 148, 113, 41, 188, 178, 71, 159, 66, 210, 197, 27, 107, 210, 7, 213, 184, + 101, 146, 123, 71, 55, 99, 218, 55, 82, 165, 216, 255, 69, 255, 112, 130, 84, 248, 27, 97, 158, 61, 194, 218, 30, + 64, 185, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3789, + "sample": { + "_tag": "ByteArray", + "bytearray": "a4baeaf7d67fa9f7" + }, + "cborHex": "48a4baeaf7d67fa9f7", + "cborBytes": [72, 164, 186, 234, 247, 214, 127, 169, 247], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3790, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13272874687883581932" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75c85e8d756e8476" + }, + { + "_tag": "ByteArray", + "bytearray": "9cb37bcbdf143f659e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9154705673516040912" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cb54f7cc46fbd424fa" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1535662611794801384" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "22c851d792262a4ec5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6137741236311144237" + } + }, + { + "_tag": "ByteArray", + "bytearray": "898747" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16441296823768581392" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8330264111313206574" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9281876665223245513" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1058991111204695998" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a8f99a2a623871e1d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2847412065343665377" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11555954518376420428" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6462179378530833286" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9750885720566599980" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6740797292925287578" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3bf69c00fe557" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9496009331731972045" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12749420603317316156" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bb832b934b79319ec4875c85e8d756e8476499cb37bcbdf143f659ed8669f1b7f0c0c4e6d2d42d09f49cb54f7cc46fbd424fad8669f1b154fc50256e0b2e89f4922c851d792262a4ec51b552da322a197b72d43898747ffffd8669f1be42b3859fb7c051080ffbf1b739b0b12d8023d2e1b80cfd9a6479e6ec9ffbf1b0eb24ace0ba6efbe491a8f99a2a623871e1d1b27840a2febf874e11ba05eff688c65944c1b59ae45e81c2f53861b87521ae683cd112c1b5d8c1f6c73b9fc9a47e3bf69c00fe5571b83c89a2cd9adbfcd1bb0ef0a7d48c66a3cffffffff", + "cborBytes": [ + 159, 27, 184, 50, 185, 52, 183, 147, 25, 236, 72, 117, 200, 94, 141, 117, 110, 132, 118, 73, 156, 179, 123, 203, + 223, 20, 63, 101, 158, 216, 102, 159, 27, 127, 12, 12, 78, 109, 45, 66, 208, 159, 73, 203, 84, 247, 204, 70, 251, + 212, 36, 250, 216, 102, 159, 27, 21, 79, 197, 2, 86, 224, 178, 232, 159, 73, 34, 200, 81, 215, 146, 38, 42, 78, + 197, 27, 85, 45, 163, 34, 161, 151, 183, 45, 67, 137, 135, 71, 255, 255, 216, 102, 159, 27, 228, 43, 56, 89, 251, + 124, 5, 16, 128, 255, 191, 27, 115, 155, 11, 18, 216, 2, 61, 46, 27, 128, 207, 217, 166, 71, 158, 110, 201, 255, + 191, 27, 14, 178, 74, 206, 11, 166, 239, 190, 73, 26, 143, 153, 162, 166, 35, 135, 30, 29, 27, 39, 132, 10, 47, + 235, 248, 116, 225, 27, 160, 94, 255, 104, 140, 101, 148, 76, 27, 89, 174, 69, 232, 28, 47, 83, 134, 27, 135, 82, + 26, 230, 131, 205, 17, 44, 27, 93, 140, 31, 108, 115, 185, 252, 154, 71, 227, 191, 105, 192, 15, 229, 87, 27, 131, + 200, 154, 44, 217, 173, 191, 205, 27, 176, 239, 10, 125, 72, 198, 106, 60, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3791, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14629943084835864266" + } + }, + "cborHex": "1bcb07ffb90fd2feca", + "cborBytes": [27, 203, 7, 255, 185, 15, 210, 254, 202], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3792, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2931891445799633353" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11186117538277202002" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bb910e61af4502" + }, + { + "_tag": "ByteArray", + "bytearray": "40e9ba75" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "079e02fb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6691178471612892898" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b28b02bbc72e4c1c99f1b9b3d12a26cc7985247bb910e61af45024440e9ba75ff44079e02fbd8669f1b5cdbd75e593a46e280ffff", + "cborBytes": [ + 191, 27, 40, 176, 43, 188, 114, 228, 193, 201, 159, 27, 155, 61, 18, 162, 108, 199, 152, 82, 71, 187, 145, 14, 97, + 175, 69, 2, 68, 64, 233, 186, 117, 255, 68, 7, 158, 2, 251, 216, 102, 159, 27, 92, 219, 215, 94, 89, 58, 70, 226, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3793, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17821936770328991830" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5331787955857554145" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "187f41b845" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1667895976461790438" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18359467769117768453" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15411779358942059920" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5418743428817550724" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3094492738728480278" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9835500819429878847" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1be3e3c429" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3463691610429583970" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2398202965709576099" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15574879598408884947" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d2d661a8f2ff19d8e6248dc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10479982783472596434" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3830544690779780919" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3bb711" + }, + { + "_tag": "ByteArray", + "bytearray": "8e4f" + }, + { + "_tag": "ByteArray", + "bytearray": "f0407696" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "caf8771d4b8cd955da" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f12ccce6d4137611b9f8" + }, + { + "_tag": "ByteArray", + "bytearray": "06d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2887047320129240094" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1963820449182581310" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1231bccfb777" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5756682450393145448" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "835177579684761739" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11610141544013770318" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9eb44ad4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11790861990219089656" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "899415e43512db54f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12257196374835337555" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3a2f10e5d16" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17303472947525025255" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e330911611f569581e" + } + } + ] + } + ] + }, + "cborHex": "d905079f80d8669f1bf7543d1164ee98569f9f1b49fe50e596987ae1ffbf45187f41b8451b17258e8dbf4eece6ffa0ffffd8669f1bfec9eea9d37f7b0580ffd8669f1bd5e1a3abfe705d909fd8669f1b4b333e7053a6fd849f1b2af1d8c023efce161b887eb7e2722e6c3f451be3e3c429ffffd8669f1b3011812b1327f2629f1b214820e41e6857a31bd8251679baa3e2d34c6d2d661a8f2ff19d8e6248dc1b917060d0f517f5d2ffff9f1b3528d419e62ff737433bb711428e4f44f0407696ff49caf8771d4b8cd955da9f4af12ccce6d4137611b9f84206d01b2810da3dce0bfc1effffffbf1b1b40e44b342d023e461231bccfb7771b4fe3d8303c68a0681b0b972595717b108b1ba11f82389af22e4e449eb44ad41ba3a18e826aaa06f849899415e43512db54f21baa1a4f295844195346c3a2f10e5d161bf02248f7d1cf7de749e330911611f569581effff", + "cborBytes": [ + 217, 5, 7, 159, 128, 216, 102, 159, 27, 247, 84, 61, 17, 100, 238, 152, 86, 159, 159, 27, 73, 254, 80, 229, 150, + 152, 122, 225, 255, 191, 69, 24, 127, 65, 184, 69, 27, 23, 37, 142, 141, 191, 78, 236, 230, 255, 160, 255, 255, + 216, 102, 159, 27, 254, 201, 238, 169, 211, 127, 123, 5, 128, 255, 216, 102, 159, 27, 213, 225, 163, 171, 254, + 112, 93, 144, 159, 216, 102, 159, 27, 75, 51, 62, 112, 83, 166, 253, 132, 159, 27, 42, 241, 216, 192, 35, 239, + 206, 22, 27, 136, 126, 183, 226, 114, 46, 108, 63, 69, 27, 227, 227, 196, 41, 255, 255, 216, 102, 159, 27, 48, 17, + 129, 43, 19, 39, 242, 98, 159, 27, 33, 72, 32, 228, 30, 104, 87, 163, 27, 216, 37, 22, 121, 186, 163, 226, 211, + 76, 109, 45, 102, 26, 143, 47, 241, 157, 142, 98, 72, 220, 27, 145, 112, 96, 208, 245, 23, 245, 210, 255, 255, + 159, 27, 53, 40, 212, 25, 230, 47, 247, 55, 67, 59, 183, 17, 66, 142, 79, 68, 240, 64, 118, 150, 255, 73, 202, + 248, 119, 29, 75, 140, 217, 85, 218, 159, 74, 241, 44, 204, 230, 212, 19, 118, 17, 185, 248, 66, 6, 208, 27, 40, + 16, 218, 61, 206, 11, 252, 30, 255, 255, 255, 191, 27, 27, 64, 228, 75, 52, 45, 2, 62, 70, 18, 49, 188, 207, 183, + 119, 27, 79, 227, 216, 48, 60, 104, 160, 104, 27, 11, 151, 37, 149, 113, 123, 16, 139, 27, 161, 31, 130, 56, 154, + 242, 46, 78, 68, 158, 180, 74, 212, 27, 163, 161, 142, 130, 106, 170, 6, 248, 73, 137, 148, 21, 228, 53, 18, 219, + 84, 242, 27, 170, 26, 79, 41, 88, 68, 25, 83, 70, 195, 162, 241, 14, 93, 22, 27, 240, 34, 72, 247, 209, 207, 125, + 231, 73, 227, 48, 145, 22, 17, 245, 105, 88, 30, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3794, + "sample": { + "_tag": "ByteArray", + "bytearray": "0602" + }, + "cborHex": "420602", + "cborBytes": [66, 6, 2], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3795, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5218059317635898821" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7831372385186649982" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffefd8669f1b486a454d8c9addc59f1b6cae9fb122da977effffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 239, 216, 102, 159, 27, 72, 106, 69, 77, 140, 154, 221, 197, 159, 27, + 108, 174, 159, 177, 34, 218, 151, 126, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3796, + "sample": { + "_tag": "ByteArray", + "bytearray": "5021650c6b84" + }, + "cborHex": "465021650c6b84", + "cborBytes": [70, 80, 33, 101, 12, 107, 132], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3797, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18129302316505540879" + } + }, + "cborHex": "1bfb98386758faa90f", + "cborBytes": [27, 251, 152, 56, 103, 88, 250, 169, 15], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3798, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17090914998325543727" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0657f50a0438ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9986106144158815664" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b821066cd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9922b207831a55d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75bbedf463b9e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15033470752687245735" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3e70f9e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3818902250960291098" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8735312662846117131" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffff577a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9619958742462607956" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bed2f20a3b197032fbf470657f50a0438ab1b8a95c6a123ee95b0454b821066cd48b9922b207831a55d4775bbedf463b9e31bd0a19dffb325c9a744b3e70f9e1b34ff775d246d851a41d21b793a1095ceea150b44ffff577a1b8580f581ee65b254ffff", + "cborBytes": [ + 191, 27, 237, 47, 32, 163, 177, 151, 3, 47, 191, 71, 6, 87, 245, 10, 4, 56, 171, 27, 138, 149, 198, 161, 35, 238, + 149, 176, 69, 75, 130, 16, 102, 205, 72, 185, 146, 43, 32, 120, 49, 165, 93, 71, 117, 187, 237, 244, 99, 185, 227, + 27, 208, 161, 157, 255, 179, 37, 201, 167, 68, 179, 231, 15, 158, 27, 52, 255, 119, 93, 36, 109, 133, 26, 65, 210, + 27, 121, 58, 16, 149, 206, 234, 21, 11, 68, 255, 255, 87, 122, 27, 133, 128, 245, 129, 238, 101, 178, 84, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3799, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15164764235841680469" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1695779157024088986" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15829883903533880511" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f93c4beb5639661b6cb6" + } + } + ] + } + ] + }, + "cborHex": "9f80bf1bd27410b9e3e434551b17889e289feea39a1bdbaf0b8a39cf94bf4af93c4beb5639661b6cb6ffff", + "cborBytes": [ + 159, 128, 191, 27, 210, 116, 16, 185, 227, 228, 52, 85, 27, 23, 136, 158, 40, 159, 238, 163, 154, 27, 219, 175, + 11, 138, 57, 207, 148, 191, 74, 249, 60, 75, 235, 86, 57, 102, 27, 108, 182, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3800, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1311126163898257106" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "584922451b81a48b57b0" + }, + { + "_tag": "ByteArray", + "bytearray": "c49d9954140b4774a537" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09971c1068" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6533206603162643785" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "105212aa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e1107a8b264df3dfb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30a415b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18ea31" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f34285c0830c78e12f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0104eccc35942eae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d8c4ce50510901b1faa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17880210478214276785" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef6655fa4946" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "298c1f3173c6ff62" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4677722326299982422" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "345314731307532032" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8277846741868381545" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14054071017604470782" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2104286918985855138" + } + }, + { + "_tag": "ByteArray", + "bytearray": "42" + }, + { + "_tag": "ByteArray", + "bytearray": "86b7d44d2d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1842811553609195468" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15055935687232171089" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12578391024069826757" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14659265428046621908" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6983800704061492688" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c4" + }, + { + "_tag": "ByteArray", + "bytearray": "7c124555b7" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1661907277971963624" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4348525308116249407" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17400231965303685284" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11159773512313425689" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e1a4dd6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16681821015191402492" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43024c1f1648" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1660" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "889a12a079ff3f1e25ffdd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a2bf45f473828" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7435270037336648503" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b677dd555" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d605544" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e5c085820d892" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d64a68e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b12320e4ca6e04ed29f4a584922451b81a48b57b04ac49d9954140b4774a537bf4509971c10681b5aaa9cca89beed4944105212aa494e1107a8b264df3dfb4430a415b14318ea314a8f34285c0830c78e12f0480104eccc35942eae4a9d8c4ce50510901b1faa1bf82344b24f2de6b146ef6655fa494648298c1f3173c6ff62ff9fd8669f1b40ea9bac11063a569f1b04cacdeb274b7f001b72e0d1c0fa308569ffffd8669f1bc30a1720fc6d57fe9f1b1d33edcdc7a730a241424586b7d44d2dffffbf1b1992fb5828dc9fcc41201bd0f16dbcde99ac511bae8f6bfe43a4d8c5ffffd8669f1bcb702c3d1ae22cd49fd8669f1b60eb71bd13b54dd09f41c4457c124555b7ffff1b171047dd3927bee8bf1b3c5910ba6f10ab3f1bf17a0ac83552c0a41b9adf7ae1e7414f19445e1a4dd61be781bbd4492137fc4643024c1f1648ffbf4216604b889a12a079ff3f1e25ffdd471a2bf45f4738281b672f62b4888e6b37452b677dd5554103449d605544476e5c085820d89244d64a68e241deffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 18, 50, 14, 76, 166, 224, 78, 210, 159, 74, 88, 73, 34, 69, 27, 129, 164, 139, 87, 176, 74, + 196, 157, 153, 84, 20, 11, 71, 116, 165, 55, 191, 69, 9, 151, 28, 16, 104, 27, 90, 170, 156, 202, 137, 190, 237, + 73, 68, 16, 82, 18, 170, 73, 78, 17, 7, 168, 178, 100, 223, 61, 251, 68, 48, 164, 21, 177, 67, 24, 234, 49, 74, + 143, 52, 40, 92, 8, 48, 199, 142, 18, 240, 72, 1, 4, 236, 204, 53, 148, 46, 174, 74, 157, 140, 76, 229, 5, 16, + 144, 27, 31, 170, 27, 248, 35, 68, 178, 79, 45, 230, 177, 70, 239, 102, 85, 250, 73, 70, 72, 41, 140, 31, 49, 115, + 198, 255, 98, 255, 159, 216, 102, 159, 27, 64, 234, 155, 172, 17, 6, 58, 86, 159, 27, 4, 202, 205, 235, 39, 75, + 127, 0, 27, 114, 224, 209, 192, 250, 48, 133, 105, 255, 255, 216, 102, 159, 27, 195, 10, 23, 32, 252, 109, 87, + 254, 159, 27, 29, 51, 237, 205, 199, 167, 48, 162, 65, 66, 69, 134, 183, 212, 77, 45, 255, 255, 191, 27, 25, 146, + 251, 88, 40, 220, 159, 204, 65, 32, 27, 208, 241, 109, 188, 222, 153, 172, 81, 27, 174, 143, 107, 254, 67, 164, + 216, 197, 255, 255, 216, 102, 159, 27, 203, 112, 44, 61, 26, 226, 44, 212, 159, 216, 102, 159, 27, 96, 235, 113, + 189, 19, 181, 77, 208, 159, 65, 196, 69, 124, 18, 69, 85, 183, 255, 255, 27, 23, 16, 71, 221, 57, 39, 190, 232, + 191, 27, 60, 89, 16, 186, 111, 16, 171, 63, 27, 241, 122, 10, 200, 53, 82, 192, 164, 27, 154, 223, 122, 225, 231, + 65, 79, 25, 68, 94, 26, 77, 214, 27, 231, 129, 187, 212, 73, 33, 55, 252, 70, 67, 2, 76, 31, 22, 72, 255, 191, 66, + 22, 96, 75, 136, 154, 18, 160, 121, 255, 63, 30, 37, 255, 221, 71, 26, 43, 244, 95, 71, 56, 40, 27, 103, 47, 98, + 180, 136, 142, 107, 55, 69, 43, 103, 125, 213, 85, 65, 3, 68, 157, 96, 85, 68, 71, 110, 92, 8, 88, 32, 216, 146, + 68, 214, 74, 104, 226, 65, 222, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3801, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4648311206120735634" + } + }, + "cborHex": "1b40821e6a064b4392", + "cborBytes": [27, 64, 130, 30, 106, 6, 75, 67, 146], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3802, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8478159086498390675" + } + }, + "cborHex": "1b75a878c51bfca293", + "cborBytes": [27, 117, 168, 120, 197, 27, 252, 162, 147], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3803, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3565464400159896629" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40d9cc037fd7c2be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95e65e507ca9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2bc62a" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b317b12fb36d4f4354840d9cc037fd7c2be4695e65e507ca9432bc62affff", + "cborBytes": [ + 159, 191, 27, 49, 123, 18, 251, 54, 212, 244, 53, 72, 64, 217, 204, 3, 127, 215, 194, 190, 70, 149, 230, 94, 80, + 124, 169, 67, 43, 198, 42, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3804, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "070e01f8acf73e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14194763639140163436" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf47070e01f8acf73ed8669f1bc4fdee529d949f6c80ffff", + "cborBytes": [ + 191, 71, 7, 14, 1, 248, 172, 247, 62, 216, 102, 159, 27, 196, 253, 238, 82, 157, 148, 159, 108, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3805, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c3d6f878e483acb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15013913610823533329" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4710f5a365" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc1aafcbc69bb34b49785685" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9598479585637285335" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfe3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0767" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4bad94f1f9ca61f59" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16692124714424056990" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2848121728810484088" + } + }, + { + "_tag": "ByteArray", + "bytearray": "07e5b7d747bd" + } + ] + } + } + ] + }, + "cborHex": "bf480c3d6f878e483acbd8669f1bd05c22e1c58a03119f454710f5a365ffff4cbc1aafcbc69bb34b49785685d8669f1b8534a65405bfbdd780ff42cfe39f420767ff49d4bad94f1f9ca61f59d8669f1be7a656fd35c3bc9e9f1b27868f9f52d201784607e5b7d747bdffffff", + "cborBytes": [ + 191, 72, 12, 61, 111, 135, 142, 72, 58, 203, 216, 102, 159, 27, 208, 92, 34, 225, 197, 138, 3, 17, 159, 69, 71, + 16, 245, 163, 101, 255, 255, 76, 188, 26, 175, 203, 198, 155, 179, 75, 73, 120, 86, 133, 216, 102, 159, 27, 133, + 52, 166, 84, 5, 191, 189, 215, 128, 255, 66, 207, 227, 159, 66, 7, 103, 255, 73, 212, 186, 217, 79, 31, 156, 166, + 31, 89, 216, 102, 159, 27, 231, 166, 86, 253, 53, 195, 188, 158, 159, 27, 39, 134, 143, 159, 82, 210, 1, 120, 70, + 7, 229, 183, 215, 71, 189, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3806, + "sample": { + "_tag": "ByteArray", + "bytearray": "965bfa00" + }, + "cborHex": "44965bfa00", + "cborBytes": [68, 150, 91, 250, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3807, + "sample": { + "_tag": "ByteArray", + "bytearray": "3df829000301e548" + }, + "cborHex": "483df829000301e548", + "cborBytes": [72, 61, 248, 41, 0, 3, 1, 229, 72], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3808, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bafd" + } + ] + } + } + ] + }, + "cborHex": "bf41a19f42bafdffff", + "cborBytes": [191, 65, 161, 159, 66, 186, 253, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3809, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3693073169427714161" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "669934225594871832" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14149763432145620368" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1806152232410379415" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8882949653099245801" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7032043936639566377" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8df854" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11647311916742407529" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12411609721400370790" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18101177976101609118" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1303167cb90" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8a29e6" + } + ] + }, + "cborHex": "9f9f1b33406e7b1943d071bf1b094c15a0f37570181bc45e0edf74da0d901b1910bde2cf1974971b7b4693a546a8f0e91b6196d6b3f8574229438df8541ba1a3907a699af5691bac3ee54836daa6661bfb344d7711a91e9e46b1303167cb90ffff438a29e6ff", + "cborBytes": [ + 159, 159, 27, 51, 64, 110, 123, 25, 67, 208, 113, 191, 27, 9, 76, 21, 160, 243, 117, 112, 24, 27, 196, 94, 14, + 223, 116, 218, 13, 144, 27, 25, 16, 189, 226, 207, 25, 116, 151, 27, 123, 70, 147, 165, 70, 168, 240, 233, 27, 97, + 150, 214, 179, 248, 87, 66, 41, 67, 141, 248, 84, 27, 161, 163, 144, 122, 105, 154, 245, 105, 27, 172, 62, 229, + 72, 54, 218, 166, 102, 27, 251, 52, 77, 119, 17, 169, 30, 158, 70, 177, 48, 49, 103, 203, 144, 255, 255, 67, 138, + 41, 230, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3810, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12978370506992149443" + }, + "fields": [] + }, + "cborHex": "d8669f1bb41c6f36b8ac63c380ff", + "cborBytes": [216, 102, 159, 27, 180, 28, 111, 54, 184, 172, 99, 195, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3811, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1218488432021945097" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12188133879684827173" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "39" + }, + { + "_tag": "ByteArray", + "bytearray": "835aae" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4488850488751659197" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fefd01" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf09d905089f1b10e8f0c5e9973b091ba924f33025848825ff119f413943835aaeff1b3e4b99bc8fe198bdd8799f43fefd01ff1bfffffffffffffffe80ff", + "cborBytes": [ + 191, 9, 217, 5, 8, 159, 27, 16, 232, 240, 197, 233, 151, 59, 9, 27, 169, 36, 243, 48, 37, 132, 136, 37, 255, 17, + 159, 65, 57, 67, 131, 90, 174, 255, 27, 62, 75, 153, 188, 143, 225, 152, 189, 216, 121, 159, 67, 254, 253, 1, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 254, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3812, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6522408249893145075" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9efc" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4a00136e972bfc28811f0f99" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5a843fbefef549f39f429efc9fd8669f1bfffffffffffffff09f0f00094c4a00136e972bfc28811f0f99ffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 90, 132, 63, 190, 254, 245, 73, 243, 159, 66, 158, 252, 159, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 240, 159, 15, 0, 9, 76, 74, 0, 19, 110, 151, 43, 252, 40, 129, 31, 15, 153, 255, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3813, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6442982787623332968" + } + }, + "cborHex": "1b596a12b57e3eac68", + "cborBytes": [27, 89, 106, 18, 181, 126, 62, 172, 104], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3814, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21236ee09b69aa6fa629e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ec0887b8f8b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7805bdf5ad04f80301" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4626040241742231274" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0106ca00faac0772" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1010365" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6803fd" + } + } + ] + }, + "cborHex": "bf4b21236ee09b69aa6fa629e8460ec0887b8f8b497805bdf5ad04f803019f1b4032ff170db536ea480106ca00faac077200ff44d1010365436803fdff", + "cborBytes": [ + 191, 75, 33, 35, 110, 224, 155, 105, 170, 111, 166, 41, 232, 70, 14, 192, 136, 123, 143, 139, 73, 120, 5, 189, + 245, 173, 4, 248, 3, 1, 159, 27, 64, 50, 255, 23, 13, 181, 54, 234, 72, 1, 6, 202, 0, 250, 172, 7, 114, 0, 255, + 68, 209, 1, 3, 101, 67, 104, 3, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3815, + "sample": { + "_tag": "ByteArray", + "bytearray": "86" + }, + "cborHex": "4186", + "cborBytes": [65, 134], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3816, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1265185565342444450" + } + }, + "cborHex": "1b118ed79185302ba2", + "cborBytes": [27, 17, 142, 215, 145, 133, 48, 43, 162], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3817, + "sample": { + "_tag": "ByteArray", + "bytearray": "d4ebaa7493710fcb4eb3e7" + }, + "cborHex": "4bd4ebaa7493710fcb4eb3e7", + "cborBytes": [75, 212, 235, 170, 116, 147, 113, 15, 203, 78, 179, 231], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3818, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05fd" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f4205fda0ff", + "cborBytes": [159, 66, 5, 253, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3819, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2859052688362980911" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c48bc791e3060ba5f5cb7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6930145353685468077" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6312626614628891644" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8847226764477780089" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15394149897859083147" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12875338136854876358" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10429037523313847617" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14360620531588378306" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2c254a595b68574e9ebb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7885423759682897098" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1aa4" + }, + { + "_tag": "ByteArray", + "bytearray": "7adef934d9887d" + } + ] + } + } + ] + }, + "cborHex": "bf1b27ad6545ac00462f4b4c48bc791e3060ba5f5cb71b602cd27b503f03ad1b579af475d4a1bbfc1b7ac7a9de2006d079bf1bd5a301c53901ab8b1bb2ae63d1aa4650c6ff1b90bb625f3e576d41d8669f1bc74b2c49a381aec29f4a2c254a595b68574e9ebb1b6d6ea721735304ca421aa4477adef934d9887dffffff", + "cborBytes": [ + 191, 27, 39, 173, 101, 69, 172, 0, 70, 47, 75, 76, 72, 188, 121, 30, 48, 96, 186, 95, 92, 183, 27, 96, 44, 210, + 123, 80, 63, 3, 173, 27, 87, 154, 244, 117, 212, 161, 187, 252, 27, 122, 199, 169, 222, 32, 6, 208, 121, 191, 27, + 213, 163, 1, 197, 57, 1, 171, 139, 27, 178, 174, 99, 209, 170, 70, 80, 198, 255, 27, 144, 187, 98, 95, 62, 87, + 109, 65, 216, 102, 159, 27, 199, 75, 44, 73, 163, 129, 174, 194, 159, 74, 44, 37, 74, 89, 91, 104, 87, 78, 158, + 187, 27, 109, 110, 167, 33, 115, 83, 4, 202, 66, 26, 164, 71, 122, 222, 249, 52, 217, 136, 125, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3820, + "sample": { + "_tag": "ByteArray", + "bytearray": "1be0" + }, + "cborHex": "421be0", + "cborBytes": [66, 27, 224], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3821, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d0b901" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c3f14d5e610766ae711bebf" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33fa73723d4ba860f7df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3657713861281376677" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d49740a2260eaf2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8874210487581437950" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14216977527680528949" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d657179741731e5b67694bf4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10811355501024733236" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec263d11fa85eb3a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa059da1602564668d1442" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9706513533016487801" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "687c8fe36d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16876173685805184276" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf41289f43d0b901ff4c4c3f14d5e610766ae711bebfbf4a33fa73723d4ba860f7df1b32c2cf609fb2e9a5488d49740a2260eaf21b7b27876bbe566ffe41ac1bc54cd9bc951bf2354cd657179741731e5b67694bf41b9609a68c130b683441e448ec263d11fa85eb3a4bfa059da1602564668d14421b86b476a186f83779ff45687c8fe36dd8669f1bea34368dae36751480ffff", + "cborBytes": [ + 191, 65, 40, 159, 67, 208, 185, 1, 255, 76, 76, 63, 20, 213, 230, 16, 118, 106, 231, 17, 190, 191, 191, 74, 51, + 250, 115, 114, 61, 75, 168, 96, 247, 223, 27, 50, 194, 207, 96, 159, 178, 233, 165, 72, 141, 73, 116, 10, 34, 96, + 234, 242, 27, 123, 39, 135, 107, 190, 86, 111, 254, 65, 172, 27, 197, 76, 217, 188, 149, 27, 242, 53, 76, 214, 87, + 23, 151, 65, 115, 30, 91, 103, 105, 75, 244, 27, 150, 9, 166, 140, 19, 11, 104, 52, 65, 228, 72, 236, 38, 61, 17, + 250, 133, 235, 58, 75, 250, 5, 157, 161, 96, 37, 100, 102, 141, 20, 66, 27, 134, 180, 118, 161, 134, 248, 55, 121, + 255, 69, 104, 124, 143, 227, 109, 216, 102, 159, 27, 234, 52, 54, 141, 174, 54, 117, 20, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3822, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14540286236955030183" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12689614942696697036" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7611159038205933656" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1114324305797848379" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3706612765483898028" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffff0d8669f1bc9c9794b7634b2a79fd8669f1bb01a918ed3ececcc9f1b69a044d1d144b8581b0f76e00d5baa1d3b4187ffffa0ffff1b337088abf69894acff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 216, 102, 159, 27, 201, 201, 121, 75, 118, 52, 178, 167, 159, + 216, 102, 159, 27, 176, 26, 145, 142, 211, 236, 236, 204, 159, 27, 105, 160, 68, 209, 209, 68, 184, 88, 27, 15, + 118, 224, 13, 91, 170, 29, 59, 65, 135, 255, 255, 160, 255, 255, 27, 51, 112, 136, 171, 246, 152, 148, 172, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3823, + "sample": { + "_tag": "ByteArray", + "bytearray": "00fe07c4" + }, + "cborHex": "4400fe07c4", + "cborBytes": [68, 0, 254, 7, 196], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3824, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7231317613896105410" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2676494027827012579" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6350727665450650175" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6110831068521040805" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5316489793175782877" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6833444592418873347" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1364709759859863129" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1935426178352876570" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "823838327206915652" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9668628693543134751" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a7bcce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2131395817328106069" + } + }, + { + "_tag": "ByteArray", + "bytearray": "97424d08efc5f95c1f88e0cf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6988482178141682530" + } + }, + { + "_tag": "ByteArray", + "bytearray": "358ff3" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff69f1b645acd0e824d7dc280bf1b2524d1233c1563e31b5822512a046e8a3f1b54ce087af19e0ba51b49c7f74c863b85dd1b5ed545a6d370e0031b12f06c4bc9f4ae59ff1b1adc03dad9b70c1ad8669f1b0b6edc97fd852e449fa080d8669f1b862dde91f7c9a61f9f43a7bcce1b1d943d3407985a554c97424d08efc5f95c1f88e0cf1b60fc1383b3487b6243358ff3ffffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 27, 100, 90, 205, 14, 130, 77, 125, 194, 128, 191, + 27, 37, 36, 209, 35, 60, 21, 99, 227, 27, 88, 34, 81, 42, 4, 110, 138, 63, 27, 84, 206, 8, 122, 241, 158, 11, 165, + 27, 73, 199, 247, 76, 134, 59, 133, 221, 27, 94, 213, 69, 166, 211, 112, 224, 3, 27, 18, 240, 108, 75, 201, 244, + 174, 89, 255, 27, 26, 220, 3, 218, 217, 183, 12, 26, 216, 102, 159, 27, 11, 110, 220, 151, 253, 133, 46, 68, 159, + 160, 128, 216, 102, 159, 27, 134, 45, 222, 145, 247, 201, 166, 31, 159, 67, 167, 188, 206, 27, 29, 148, 61, 52, 7, + 152, 90, 85, 76, 151, 66, 77, 8, 239, 197, 249, 92, 31, 136, 224, 207, 27, 96, 252, 19, 131, 179, 72, 123, 98, 67, + 53, 143, 243, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3825, + "sample": { + "_tag": "ByteArray", + "bytearray": "8994b11ee5d02f89" + }, + "cborHex": "488994b11ee5d02f89", + "cborBytes": [72, 137, 148, 177, 30, 229, 208, 47, 137], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3826, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fea2053cc807" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13213804374594551814" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5177332877886398711" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f917f56c63e4d" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4664650865061905955" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3246643009595259693" + } + }, + { + "_tag": "ByteArray", + "bytearray": "81ad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4066064517285270487" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f46fea2053cc807d8669f1bb760dd11a73600069f41d9bf1b47d994d25e5ea0f7478f917f56c63e4dffffffa0d87b9f1b40bc2b3f553bc6239f1b2d0e649da36e3b2d4281ad1b386d9022b29bd3d7ffffff", + "cborBytes": [ + 159, 70, 254, 162, 5, 60, 200, 7, 216, 102, 159, 27, 183, 96, 221, 17, 167, 54, 0, 6, 159, 65, 217, 191, 27, 71, + 217, 148, 210, 94, 94, 160, 247, 71, 143, 145, 127, 86, 198, 62, 77, 255, 255, 255, 160, 216, 123, 159, 27, 64, + 188, 43, 63, 85, 59, 198, 35, 159, 27, 45, 14, 100, 157, 163, 110, 59, 45, 66, 129, 173, 27, 56, 109, 144, 34, + 178, 155, 211, 215, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3827, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "600759553689545765" + } + }, + "cborHex": "1b085653a191166c25", + "cborBytes": [27, 8, 86, 83, 161, 145, 22, 108, 37], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3828, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9218324293548566973" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7532269170007881932" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17824926570961233142" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2bb7" + } + ] + } + ] + }, + "cborHex": "d8669f1b7fee111aad50e9bd9fd8669f1b6887fee706f238cc9f41a81bf75edc469990e4f6422bb7ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 127, 238, 17, 26, 173, 80, 233, 189, 159, 216, 102, 159, 27, 104, 135, 254, 231, 6, 242, 56, + 204, 159, 65, 168, 27, 247, 94, 220, 70, 153, 144, 228, 246, 66, 43, 183, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3829, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2386282859155014474" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1371607063751033396" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4270455554146678280" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9de4015ad1a863" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12411053830921963333" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14526033066318412505" + } + }, + { + "_tag": "ByteArray", + "bytearray": "639b86c298d76a75a973ce2f" + }, + { + "_tag": "ByteArray", + "bytearray": "a2ef7b9480ecbaa12d3ebc74" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a64f8c9969b5" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b8acdf0aa" + } + } + ] + }, + "cborHex": "bf1b211dc79e0989c34ad8669f1b1308ed5b7e4c02349f1b3b43b4b35e01b608ffff479de4015ad1a863d8669f1bac3cebb3e05ac7459f1bc996d61c917cbad94c639b86c298d76a75a973ce2f4ca2ef7b9480ecbaa12d3ebc74ffff46a64f8c9969b5a041dd458b8acdf0aaff", + "cborBytes": [ + 191, 27, 33, 29, 199, 158, 9, 137, 195, 74, 216, 102, 159, 27, 19, 8, 237, 91, 126, 76, 2, 52, 159, 27, 59, 67, + 180, 179, 94, 1, 182, 8, 255, 255, 71, 157, 228, 1, 90, 209, 168, 99, 216, 102, 159, 27, 172, 60, 235, 179, 224, + 90, 199, 69, 159, 27, 201, 150, 214, 28, 145, 124, 186, 217, 76, 99, 155, 134, 194, 152, 215, 106, 117, 169, 115, + 206, 47, 76, 162, 239, 123, 148, 128, 236, 186, 161, 45, 62, 188, 116, 255, 255, 70, 166, 79, 140, 153, 105, 181, + 160, 65, 221, 69, 139, 138, 205, 240, 170, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3830, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6090389921484721609" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16515424535340013952" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "136eb2332b6089864ff1" + }, + { + "_tag": "ByteArray", + "bytearray": "13f1c3134bea421e47ae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13503575469110646556" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "ByteArray", + "bytearray": "bb3e54aed7" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0106a0" + } + ] + }, + "cborHex": "d8669f1b5485695d85b74dc99f9fd8669f1be532931cc7b659809f4a136eb2332b6089864ff14a13f1c3134bea421e47ae1bbb6656581a04d71c410045bb3e54aed7ffffff430106a0ffff", + "cborBytes": [ + 216, 102, 159, 27, 84, 133, 105, 93, 133, 183, 77, 201, 159, 159, 216, 102, 159, 27, 229, 50, 147, 28, 199, 182, + 89, 128, 159, 74, 19, 110, 178, 51, 43, 96, 137, 134, 79, 241, 74, 19, 241, 195, 19, 75, 234, 66, 30, 71, 174, 27, + 187, 102, 86, 88, 26, 4, 215, 28, 65, 0, 69, 187, 62, 84, 174, 215, 255, 255, 255, 67, 1, 6, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3831, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13026650438925438032" + } + }, + "cborHex": "1bb4c7f58e59564c50", + "cborBytes": [27, 180, 199, 245, 142, 89, 86, 76, 80], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3832, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14370708788167488682" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6573514891359007272" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15252296309991627333" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4467488498887054650" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15447359498847805223" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1bc76f0380e94eb4aad8669f1b5b39d0f73931b2289f1bd3ab0aaf0e0d5a451b3dffb51eb64e553affff1bd6600b9ede945f2780ff", + "cborBytes": [ + 191, 27, 199, 111, 3, 128, 233, 78, 180, 170, 216, 102, 159, 27, 91, 57, 208, 247, 57, 49, 178, 40, 159, 27, 211, + 171, 10, 175, 14, 13, 90, 69, 27, 61, 255, 181, 30, 182, 78, 85, 58, 255, 255, 27, 214, 96, 11, 158, 222, 148, 95, + 39, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3833, + "sample": { + "_tag": "ByteArray", + "bytearray": "5eca21ad977e2a5dde7923ed" + }, + "cborHex": "4c5eca21ad977e2a5dde7923ed", + "cborBytes": [76, 94, 202, 33, 173, 151, 126, 42, 93, 222, 121, 35, 237], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3834, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3371860189089128847" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11815110978567119044" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2ecb40fa22f0618f9f1ba3f7b4d5fb4fa0c4ffff", + "cborBytes": [ + 191, 27, 46, 203, 64, 250, 34, 240, 97, 143, 159, 27, 163, 247, 180, 213, 251, 79, 160, 196, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3835, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1329642170648796309" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f6ec209c4b91b5fda85f7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3126763305138482512" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "354d802bf5f9fa1ae06c7e4b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9927568650935540350" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d67fca3abe2ebc0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11793124682650663498" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "720695f7c042b9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12163293590326888386" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "739bbe89e2ce654061" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12801424353987371888" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4912692323847971477" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15241799430192131568" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "46499a972d950c7d" + } + ] + } + ] + }, + "cborHex": "9fbf1b1273d6826be69c954b2f6ec209c4b91b5fda85f71b2b647ea8e3816d504c354d802bf5f9fa1ae06c7e4b1b89c5cf16ea511a7e480d67fca3abe2ebc01ba3a9986a8d48ba4a47720695f7c042b91ba8ccb313963847c249739bbe89e2ce6540611bb1a7cba00673a3701b442d63a3d5bf2295ffd8669f1bd385bfd3c65a6df09f4846499a972d950c7dffffff", + "cborBytes": [ + 159, 191, 27, 18, 115, 214, 130, 107, 230, 156, 149, 75, 47, 110, 194, 9, 196, 185, 27, 95, 218, 133, 247, 27, 43, + 100, 126, 168, 227, 129, 109, 80, 76, 53, 77, 128, 43, 245, 249, 250, 26, 224, 108, 126, 75, 27, 137, 197, 207, + 22, 234, 81, 26, 126, 72, 13, 103, 252, 163, 171, 226, 235, 192, 27, 163, 169, 152, 106, 141, 72, 186, 74, 71, + 114, 6, 149, 247, 192, 66, 185, 27, 168, 204, 179, 19, 150, 56, 71, 194, 73, 115, 155, 190, 137, 226, 206, 101, + 64, 97, 27, 177, 167, 203, 160, 6, 115, 163, 112, 27, 68, 45, 99, 163, 213, 191, 34, 149, 255, 216, 102, 159, 27, + 211, 133, 191, 211, 198, 90, 109, 240, 159, 72, 70, 73, 154, 151, 45, 149, 12, 125, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3836, + "sample": { + "_tag": "ByteArray", + "bytearray": "1c423dbca128612ab9a8" + }, + "cborHex": "4a1c423dbca128612ab9a8", + "cborBytes": [74, 28, 66, 61, 188, 161, 40, 97, 42, 185, 168], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3837, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4106a0ff", + "cborBytes": [191, 65, 6, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3838, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4860282567702246090" + } + }, + "cborHex": "1b4373313e93ea72ca", + "cborBytes": [27, 67, 115, 49, 62, 147, 234, 114, 202], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3839, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6888082851690123559" + }, + "fields": [] + }, + "cborHex": "d8669f1b5f9762dbe673112780ff", + "cborBytes": [216, 102, 159, 27, 95, 151, 98, 219, 230, 115, 17, 39, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3840, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12194947424150298986" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d743eae3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18278721896406562606" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12326559587984659754" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6aa40f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "439419806585986887" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6194230010380101521" + } + } + ] + } + } + ] + }, + "cborHex": "bf1ba93d2812170b216a44d743eae31bfdab10b84f77b72ed8669f1bab10bca2e882d52a9f436aa40f1b061921fc66d41f471b55f6536041c52791ffffff", + "cborBytes": [ + 191, 27, 169, 61, 40, 18, 23, 11, 33, 106, 68, 215, 67, 234, 227, 27, 253, 171, 16, 184, 79, 119, 183, 46, 216, + 102, 159, 27, 171, 16, 188, 162, 232, 130, 213, 42, 159, 67, 106, 164, 15, 27, 6, 25, 33, 252, 102, 212, 31, 71, + 27, 85, 246, 83, 96, 65, 197, 39, 145, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3841, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15145103040613087150" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18408822462157125673" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18327423773397550750" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5823171511010973394" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "263652154326404550" + } + }, + { + "_tag": "ByteArray", + "bytearray": "081c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18340861973490119088" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10037379742105354166" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1bd22e36f9266e77ae9f1bff79467ec61b78291bfe5816d1ad69069e1b50d00fa303fbd6d21b03a8ae3ccae44dc642081cff1bfe87d4ca745931b0d8669f1b8b4befb1f3e43fb680ffff", + "cborBytes": [ + 191, 27, 210, 46, 54, 249, 38, 110, 119, 174, 159, 27, 255, 121, 70, 126, 198, 27, 120, 41, 27, 254, 88, 22, 209, + 173, 105, 6, 158, 27, 80, 208, 15, 163, 3, 251, 214, 210, 27, 3, 168, 174, 60, 202, 228, 77, 198, 66, 8, 28, 255, + 27, 254, 135, 212, 202, 116, 89, 49, 176, 216, 102, 159, 27, 139, 75, 239, 177, 243, 228, 63, 182, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3842, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18256195547433879219" + } + } + ] + }, + "cborHex": "d905059f1bfd5b091ffadd46b3ff", + "cborBytes": [217, 5, 5, 159, 27, 253, 91, 9, 31, 250, 221, 70, 179, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3843, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6180321070589989160" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14426967498617046109" + } + }, + { + "_tag": "ByteArray", + "bytearray": "38cd71" + }, + { + "_tag": "ByteArray", + "bytearray": "cba692cbb9ca" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18147022784768920851" + }, + "fields": [] + } + ] + }, + "cborHex": "9fa0d8669f1b55c4e944da60d1289f1bc836e280ad2cc45d4338cd7146cba692cbb9caffffd8669f1bfbd72d1361124d1380ffff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 85, 196, 233, 68, 218, 96, 209, 40, 159, 27, 200, 54, 226, 128, 173, 44, 196, 93, 67, + 56, 205, 113, 70, 203, 166, 146, 203, 185, 202, 255, 255, 216, 102, 159, 27, 251, 215, 45, 19, 97, 18, 77, 19, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3844, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14294345032628905448" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17548480654709944084" + } + } + } + ] + }, + "cborHex": "bf1bc65fb7128eb725e81bf388ba2dfbccef14ff", + "cborBytes": [191, 27, 198, 95, 183, 18, 142, 183, 37, 232, 27, 243, 136, 186, 45, 251, 204, 239, 20, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3845, + "sample": { + "_tag": "ByteArray", + "bytearray": "94924a89007ba9bec7" + }, + "cborHex": "4994924a89007ba9bec7", + "cborBytes": [73, 148, 146, 74, 137, 0, 123, 169, 190, 199], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3846, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "65349535857754149" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8" + }, + { + "_tag": "ByteArray", + "bytearray": "346cbf49f04630d6a53e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10397942380148856767" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b6991dcde6780e11287a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9674932592175407728" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e01f46d003587c2d591f8d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13506895032459717561" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b5910bcf03fccc8ef08496f0" + }, + { + "_tag": "ByteArray", + "bytearray": "e61929471fe3d9" + }, + { + "_tag": "ByteArray", + "bytearray": "8a3b5d31998ae924bd7771ee" + } + ] + } + } + ] + }, + "cborHex": "bf039f1b00e82b0e7f09c02541c84a346cbf49f04630d6a53e1b904ce9810bc097bf4ab6991dcde6780e11287aff1bffffffffffffffebd8669f1b864443eebe76e2709f4be01f46d003587c2d591f8d1bbb7221782c3febb94cb5910bcf03fccc8ef08496f047e61929471fe3d94c8a3b5d31998ae924bd7771eeffffff", + "cborBytes": [ + 191, 3, 159, 27, 0, 232, 43, 14, 127, 9, 192, 37, 65, 200, 74, 52, 108, 191, 73, 240, 70, 48, 214, 165, 62, 27, + 144, 76, 233, 129, 11, 192, 151, 191, 74, 182, 153, 29, 205, 230, 120, 14, 17, 40, 122, 255, 27, 255, 255, 255, + 255, 255, 255, 255, 235, 216, 102, 159, 27, 134, 68, 67, 238, 190, 118, 226, 112, 159, 75, 224, 31, 70, 208, 3, + 88, 124, 45, 89, 31, 141, 27, 187, 114, 33, 120, 44, 63, 235, 185, 76, 181, 145, 11, 207, 3, 252, 204, 142, 240, + 132, 150, 240, 71, 230, 25, 41, 71, 31, 227, 217, 76, 138, 59, 93, 49, 153, 138, 233, 36, 189, 119, 113, 238, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3847, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ecc31e724fcdf9681fa5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8573930111741147015" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5445559032426896998" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1234487086728859347" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e0bb" + }, + { + "_tag": "ByteArray", + "bytearray": "c9f8405f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8500051727921945236" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f0dfd243c3810" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "da79" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14874890272177509407" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b2d6d18173a3b0f4ed92" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5726592530372155160" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1035736368182275226" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16779906208019518869" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f" + } + ] + }, + "cborHex": "d905079f4aecc31e724fcdf9681fa51b76fcb8028f5b3787d8669f1b4b92831693399e669fd8669f1b1121c776fc47ced39f42e0bb44c9f8405f1b75f64002e73b9a94476f0dfd243c3810ffff9f42da79ff1bce6e39e45a0dd41f4ab2d6d18173a3b0f4ed92d8669f1b4f78f190ca3cd7189f1b0e5facbd42752c9affffffff1be8de33cadd601595417fff", + "cborBytes": [ + 217, 5, 7, 159, 74, 236, 195, 30, 114, 79, 205, 249, 104, 31, 165, 27, 118, 252, 184, 2, 143, 91, 55, 135, 216, + 102, 159, 27, 75, 146, 131, 22, 147, 57, 158, 102, 159, 216, 102, 159, 27, 17, 33, 199, 118, 252, 71, 206, 211, + 159, 66, 224, 187, 68, 201, 248, 64, 95, 27, 117, 246, 64, 2, 231, 59, 154, 148, 71, 111, 13, 253, 36, 60, 56, 16, + 255, 255, 159, 66, 218, 121, 255, 27, 206, 110, 57, 228, 90, 13, 212, 31, 74, 178, 214, 209, 129, 115, 163, 176, + 244, 237, 146, 216, 102, 159, 27, 79, 120, 241, 144, 202, 60, 215, 24, 159, 27, 14, 95, 172, 189, 66, 117, 44, + 154, 255, 255, 255, 255, 27, 232, 222, 51, 202, 221, 96, 21, 149, 65, 127, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3848, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17613010441294841374" + }, + "fields": [] + }, + "cborHex": "d8669f1bf46dfbadbaa0061e80ff", + "cborBytes": [216, 102, 159, 27, 244, 109, 251, 173, 186, 160, 6, 30, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3849, + "sample": { + "_tag": "ByteArray", + "bytearray": "a3e7b8946c21faca" + }, + "cborHex": "48a3e7b8946c21faca", + "cborBytes": [72, 163, 231, 184, 148, 108, 33, 250, 202], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3850, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13759954440874748491" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b0200c1014f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17445098298434032223" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcf907" + } + } + ] + }, + "cborHex": "bf1bbef52da91de5ea4b463b0200c1014f1bf21970796dee925f43fcf907ff", + "cborBytes": [ + 191, 27, 190, 245, 45, 169, 29, 229, 234, 75, 70, 59, 2, 0, 193, 1, 79, 27, 242, 25, 112, 121, 109, 238, 146, 95, + 67, 252, 249, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3851, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03de9aeb" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1188281644757779206" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "150635" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14e8a80a0add158006f636" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70c5bf211a64b84faec154" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b8ea6527632" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5678813642929790472" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53be" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11091817006523221445" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42ad8946351bc602bf8a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12724286552468882062" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a89ae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15371770582132989069" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03441b746732d53458a620" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17517022790748813195" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36a5d861e8d286" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17886443921865019611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3228245703440739322" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17900553747015333270" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12868844671720957961" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54c9ebfd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2669527080113689354" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "113e77df75c38bb6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15153898929226191573" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3450305960038100233" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87f271229cee" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16983913389934238876" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4403de9aebbf1b107d9fdc30e7830643150635ff4b14e8a80a0add158006f6364b70c5bf211a64b84faec154461b8ea65276321b4ecf32ebac78de084253bebf1b99ee0ccceb7405c54a42ad8946351bc602bf8a1bb095bf340c30028e437a89ae1bd5537fe6bcd61c8d4b03441b746732d53458a6201bf318f76b4501378b4736a5d861e8d2861bf83969fb01b590db1b2ccd085d01442bfa1bf86b8acaada2f5961bb297520bff9b2809ff4454c9ebfdbf1b250c10bc5076530a48113e77df75c38bb61bd24d76c98eb312d51b2fe1f2fd7a7bed09ff4687f271229ceed8669f1bebb2fb3e5707dc9c80ffff", + "cborBytes": [ + 191, 68, 3, 222, 154, 235, 191, 27, 16, 125, 159, 220, 48, 231, 131, 6, 67, 21, 6, 53, 255, 75, 20, 232, 168, 10, + 10, 221, 21, 128, 6, 246, 54, 75, 112, 197, 191, 33, 26, 100, 184, 79, 174, 193, 84, 70, 27, 142, 166, 82, 118, + 50, 27, 78, 207, 50, 235, 172, 120, 222, 8, 66, 83, 190, 191, 27, 153, 238, 12, 204, 235, 116, 5, 197, 74, 66, + 173, 137, 70, 53, 27, 198, 2, 191, 138, 27, 176, 149, 191, 52, 12, 48, 2, 142, 67, 122, 137, 174, 27, 213, 83, + 127, 230, 188, 214, 28, 141, 75, 3, 68, 27, 116, 103, 50, 213, 52, 88, 166, 32, 27, 243, 24, 247, 107, 69, 1, 55, + 139, 71, 54, 165, 216, 97, 232, 210, 134, 27, 248, 57, 105, 251, 1, 181, 144, 219, 27, 44, 205, 8, 93, 1, 68, 43, + 250, 27, 248, 107, 138, 202, 173, 162, 245, 150, 27, 178, 151, 82, 11, 255, 155, 40, 9, 255, 68, 84, 201, 235, + 253, 191, 27, 37, 12, 16, 188, 80, 118, 83, 10, 72, 17, 62, 119, 223, 117, 195, 139, 182, 27, 210, 77, 118, 201, + 142, 179, 18, 213, 27, 47, 225, 242, 253, 122, 123, 237, 9, 255, 70, 135, 242, 113, 34, 156, 238, 216, 102, 159, + 27, 235, 178, 251, 62, 87, 7, 220, 156, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3852, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3966060608349234481" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "906025542342514373" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1477599624602138317" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10180379374171843936" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e029f4bc8fd1ba1d4731" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53ccea80b8266948d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57111589" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d94dd4fe0cec39f005" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b370a471c36536531bf1b0c92d96e30c196c51b14817d07a8a936cd1b8d47f91a5439ed604ae029f4bc8fd1ba1d47314953ccea80b8266948d7445711158941e549d94dd4fe0cec39f005ffff", + "cborBytes": [ + 191, 27, 55, 10, 71, 28, 54, 83, 101, 49, 191, 27, 12, 146, 217, 110, 48, 193, 150, 197, 27, 20, 129, 125, 7, 168, + 169, 54, 205, 27, 141, 71, 249, 26, 84, 57, 237, 96, 74, 224, 41, 244, 188, 143, 209, 186, 29, 71, 49, 73, 83, + 204, 234, 128, 184, 38, 105, 72, 215, 68, 87, 17, 21, 137, 65, 229, 73, 217, 77, 212, 254, 12, 236, 57, 240, 5, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3853, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15627636384470432488" + } + }, + "cborHex": "1bd8e0847e2f547ae8", + "cborBytes": [27, 216, 224, 132, 126, 47, 84, 122, 232], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3854, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3166247335263599634" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "29c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc14b54071d296da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d6968" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97a320" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8879421" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91a87bbc38bdd22ea3" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4510562704156553108" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10265886456267984174" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7746278479869505986" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12534072275708570519" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10605872781776369575" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2170782886678041720" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10939489346308871057" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14992713242322072187" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11276763077289897765" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1747881987998190330" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11800035022809525465" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3530914076416614357" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3228704912740868136" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de617e93947211b3ff5c2f0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8206392874591889422" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15500841955123396849" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14595351522143388431" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "854040" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "726006275795223899" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f6b09d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16551166747544617205" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3527911828398357702" + } + } + } + ] + }, + "cborHex": "bf1b2bf0c52d0969fc12bf4229c848dc14b54071d296da439d69684397a32044f88794214991a87bbc38bdd22ea3ff1b3e98bce1a6606f94d8669f1b8e77c1574a58cd2e80ff1b6b804f3c63dff1c2d8669f1badf1f8538eae6b979f1b932fa11a4ac3b7a71b1e202b88bcf114781b97d0df99bee913911bd010d14253e6f27bffff1b9c7f1c459e1aef25bf1b1841b9684bef8afa1ba3c225557fbaecd91b310053a5193d1fd51b2cceaa03007a60284cde617e93947211b3ff5c2f0f1b71e2f6d71158a80eff1bd71e0da1969a00f1d8669f1bca8d1ae14150430f9f438540401b0a134adc7d7a855b43f6b09dffff1be5b18e770da780f51b30f5a91dc2953cc6ff", + "cborBytes": [ + 191, 27, 43, 240, 197, 45, 9, 105, 252, 18, 191, 66, 41, 200, 72, 220, 20, 181, 64, 113, 210, 150, 218, 67, 157, + 105, 104, 67, 151, 163, 32, 68, 248, 135, 148, 33, 73, 145, 168, 123, 188, 56, 189, 210, 46, 163, 255, 27, 62, + 152, 188, 225, 166, 96, 111, 148, 216, 102, 159, 27, 142, 119, 193, 87, 74, 88, 205, 46, 128, 255, 27, 107, 128, + 79, 60, 99, 223, 241, 194, 216, 102, 159, 27, 173, 241, 248, 83, 142, 174, 107, 151, 159, 27, 147, 47, 161, 26, + 74, 195, 183, 167, 27, 30, 32, 43, 136, 188, 241, 20, 120, 27, 151, 208, 223, 153, 190, 233, 19, 145, 27, 208, 16, + 209, 66, 83, 230, 242, 123, 255, 255, 27, 156, 127, 28, 69, 158, 26, 239, 37, 191, 27, 24, 65, 185, 104, 75, 239, + 138, 250, 27, 163, 194, 37, 85, 127, 186, 236, 217, 27, 49, 0, 83, 165, 25, 61, 31, 213, 27, 44, 206, 170, 3, 0, + 122, 96, 40, 76, 222, 97, 126, 147, 148, 114, 17, 179, 255, 92, 47, 15, 27, 113, 226, 246, 215, 17, 88, 168, 14, + 255, 27, 215, 30, 13, 161, 150, 154, 0, 241, 216, 102, 159, 27, 202, 141, 26, 225, 65, 80, 67, 15, 159, 67, 133, + 64, 64, 27, 10, 19, 74, 220, 125, 122, 133, 91, 67, 246, 176, 157, 255, 255, 27, 229, 177, 142, 119, 13, 167, 128, + 245, 27, 48, 245, 169, 29, 194, 149, 60, 198, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3855, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18337404221252889229" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21a4770a7c8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f516fe2733f8d183f638038d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "239ab8788020c04291" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc5553b0c389943a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2778d99dac36c7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50e004a264beb56a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10050686528050390526" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73ca5a49367e5d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c712647acdb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adfe42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16e947da" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9550565353114043148" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "379ae284" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc55521934" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e76ce015" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bfe7b8bfbc686ea8d9fbf4621a4770a7c8f4cf516fe2733f8d183f638038d49239ab8788020c0429148dc5553b0c389943a472778d99dac36c74850e004a264beb56a41661b8b7b36257d3f65fe4773ca5a49367e5d462c712647acdb43adfe424416e947daffbf1bfffffffffffffffc1b848a6c966c84030c44379ae28445dc5552193444e76ce0150affffff", + "cborBytes": [ + 216, 102, 159, 27, 254, 123, 139, 251, 198, 134, 234, 141, 159, 191, 70, 33, 164, 119, 10, 124, 143, 76, 245, 22, + 254, 39, 51, 248, 209, 131, 246, 56, 3, 141, 73, 35, 154, 184, 120, 128, 32, 192, 66, 145, 72, 220, 85, 83, 176, + 195, 137, 148, 58, 71, 39, 120, 217, 157, 172, 54, 199, 72, 80, 224, 4, 162, 100, 190, 181, 106, 65, 102, 27, 139, + 123, 54, 37, 125, 63, 101, 254, 71, 115, 202, 90, 73, 54, 126, 93, 70, 44, 113, 38, 71, 172, 219, 67, 173, 254, + 66, 68, 22, 233, 71, 218, 255, 191, 27, 255, 255, 255, 255, 255, 255, 255, 252, 27, 132, 138, 108, 150, 108, 132, + 3, 12, 68, 55, 154, 226, 132, 69, 220, 85, 82, 25, 52, 68, 231, 108, 224, 21, 10, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3856, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb9f4525" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6523475020964359601" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05523844fd36" + }, + { + "_tag": "ByteArray", + "bytearray": "da69d81e3bff031b" + }, + { + "_tag": "ByteArray", + "bytearray": "032cc9723e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6cddf508ce9e55d82172654" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1649275295042156160" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf6b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f03f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "179a3ed3ebd2286fae12" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5cfa40ff8377b51382" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ed6da126c6ca6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7505561303bf89ffb700ad00" + } + } + ] + } + } + ] + }, + "cborHex": "bf44bb9f4525d8669f1b5a8809f7fdb6edb19f4605523844fd3648da69d81e3bff031b45032cc9723effff4cc6cddf508ce9e55d82172654bf1b16e3672481d0b68042bf6b430f03f04a179a3ed3ebd2286fae12495cfa40ff8377b5138214477ed6da126c6ca64c7505561303bf89ffb700ad00ffff", + "cborBytes": [ + 191, 68, 187, 159, 69, 37, 216, 102, 159, 27, 90, 136, 9, 247, 253, 182, 237, 177, 159, 70, 5, 82, 56, 68, 253, + 54, 72, 218, 105, 216, 30, 59, 255, 3, 27, 69, 3, 44, 201, 114, 62, 255, 255, 76, 198, 205, 223, 80, 140, 233, + 229, 93, 130, 23, 38, 84, 191, 27, 22, 227, 103, 36, 129, 208, 182, 128, 66, 191, 107, 67, 15, 3, 240, 74, 23, + 154, 62, 211, 235, 210, 40, 111, 174, 18, 73, 92, 250, 64, 255, 131, 119, 181, 19, 130, 20, 71, 126, 214, 218, 18, + 108, 108, 166, 76, 117, 5, 86, 19, 3, 191, 137, 255, 183, 0, 173, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3857, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7829842526756971469" + } + }, + "cborHex": "1b6ca9304b3698a3cd", + "cborBytes": [27, 108, 169, 48, 75, 54, 152, 163, 205], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3858, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16205047215394737100" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75331bbcf789" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8808192049450579916" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2178372635640645591" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10121698970753004515" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16455436344977027818" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf241b168daafccacca4" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fdf3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16631633227007003109" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12352799951053841314" + } + } + ] + }, + "cborHex": "9f9f9f1be0e3e4959a094bcc4675331bbcf7891b7a3cfc004cebf7ccff80d8669f1b1e3b225edfcac7d79f1b8c777f963b2b73e31be45d742bce6872ea4abf241b168daafccacca4ffffff42fdf31be6cf6e4d425609e51bab6df61b8806e3a2ff", + "cborBytes": [ + 159, 159, 159, 27, 224, 227, 228, 149, 154, 9, 75, 204, 70, 117, 51, 27, 188, 247, 137, 27, 122, 60, 252, 0, 76, + 235, 247, 204, 255, 128, 216, 102, 159, 27, 30, 59, 34, 94, 223, 202, 199, 215, 159, 27, 140, 119, 127, 150, 59, + 43, 115, 227, 27, 228, 93, 116, 43, 206, 104, 114, 234, 74, 191, 36, 27, 22, 141, 170, 252, 202, 204, 164, 255, + 255, 255, 66, 253, 243, 27, 230, 207, 110, 77, 66, 86, 9, 229, 27, 171, 109, 246, 27, 136, 6, 227, 162, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3859, + "sample": { + "_tag": "ByteArray", + "bytearray": "2117f4" + }, + "cborHex": "432117f4", + "cborBytes": [67, 33, 23, 244], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3860, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7142258442938576417" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14542225889649431280" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17356860994802604321" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12949653742335571069" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "22b67dd3e943b0e7dc9bb6" + }, + { + "_tag": "ByteArray", + "bytearray": "72541663c8d1075dc9d8" + }, + { + "_tag": "ByteArray", + "bytearray": "ecd92eae5026ccf0b518" + }, + { + "_tag": "ByteArray", + "bytearray": "7555889b400c191aec30fe" + }, + { + "_tag": "ByteArray", + "bytearray": "a96e752b73d7388b24" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c9e9c3528ec" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13321557055512482021" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c860b032f2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9625920468055513703" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12081449193043914524" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8148305681852360046" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b631e663669636e211bc9d05d660c0b12f01bf0dff51d3b0ad921d8669f1bb3b66977ec38347d9f4b22b67dd3e943b0e7dc9bb64a72541663c8d1075dc9d84aecd92eae5026ccf0b5184b7555889b400c191aec30fe49a96e752b73d7388b24ffff463c9e9c3528ecd8669f1bb8dfad8fb4eb90e580ff45c860b032f2d8669f1b859623aa569c5a679f1ba7a9ee07e34fef1c1b711498d8981b656effffff", + "cborBytes": [ + 191, 27, 99, 30, 102, 54, 105, 99, 110, 33, 27, 201, 208, 93, 102, 12, 11, 18, 240, 27, 240, 223, 245, 29, 59, 10, + 217, 33, 216, 102, 159, 27, 179, 182, 105, 119, 236, 56, 52, 125, 159, 75, 34, 182, 125, 211, 233, 67, 176, 231, + 220, 155, 182, 74, 114, 84, 22, 99, 200, 209, 7, 93, 201, 216, 74, 236, 217, 46, 174, 80, 38, 204, 240, 181, 24, + 75, 117, 85, 136, 155, 64, 12, 25, 26, 236, 48, 254, 73, 169, 110, 117, 43, 115, 215, 56, 139, 36, 255, 255, 70, + 60, 158, 156, 53, 40, 236, 216, 102, 159, 27, 184, 223, 173, 143, 180, 235, 144, 229, 128, 255, 69, 200, 96, 176, + 50, 242, 216, 102, 159, 27, 133, 150, 35, 170, 86, 156, 90, 103, 159, 27, 167, 169, 238, 7, 227, 79, 239, 28, 27, + 113, 20, 152, 216, 152, 27, 101, 110, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3861, + "sample": { + "_tag": "ByteArray", + "bytearray": "000612" + }, + "cborHex": "43000612", + "cborBytes": [67, 0, 6, 18], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3862, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14269165379344975253" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16387369279486142484" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "894197a6f25f16975f265cf7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "560242aedbc06c3fc31d2b4b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5cdfe0e0" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13482030657420164213" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f283fd5d244a" + }, + { + "_tag": "ByteArray", + "bytearray": "b55ca09d06d28702d8" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f3b4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16276859768863343162" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17168369483305312415" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f615e854b3bea032" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "98767773353649422" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1342960145849581992" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9d8a5e541a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3737870410139755668" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5a3b21f71684747159f32e" + }, + { + "_tag": "ByteArray", + "bytearray": "bf82e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10458296098463021243" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8609539426197492675" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7d9809175" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1bc606424fad28c59541f01be36ba18922eba8144c894197a6f25f16975f265cf74c560242aedbc06c3fc31d2b4b445cdfe0e0ff9f1bbb19cb73ba747c75ff46f283fd5d244a49b55ca09d06d28702d8ffd9050b9f42f3b4bf1be1e305b8a5f2423a1bee424d154911e09f48f615e854b3bea0321b015ee4c43e00250eff9f1b12a3272328df01a8ff459d8a5e541ad8669f1b33df95557cd2e4949f4b5a3b21f71684747159f32e43bf82e81b912354e420bdf8bb1b777b3a7e2a38d3c345d7d9809175ffffffff", + "cborBytes": [ + 159, 159, 191, 27, 198, 6, 66, 79, 173, 40, 197, 149, 65, 240, 27, 227, 107, 161, 137, 34, 235, 168, 20, 76, 137, + 65, 151, 166, 242, 95, 22, 151, 95, 38, 92, 247, 76, 86, 2, 66, 174, 219, 192, 108, 63, 195, 29, 43, 75, 68, 92, + 223, 224, 224, 255, 159, 27, 187, 25, 203, 115, 186, 116, 124, 117, 255, 70, 242, 131, 253, 93, 36, 74, 73, 181, + 92, 160, 157, 6, 210, 135, 2, 216, 255, 217, 5, 11, 159, 66, 243, 180, 191, 27, 225, 227, 5, 184, 165, 242, 66, + 58, 27, 238, 66, 77, 21, 73, 17, 224, 159, 72, 246, 21, 232, 84, 179, 190, 160, 50, 27, 1, 94, 228, 196, 62, 0, + 37, 14, 255, 159, 27, 18, 163, 39, 35, 40, 223, 1, 168, 255, 69, 157, 138, 94, 84, 26, 216, 102, 159, 27, 51, 223, + 149, 85, 124, 210, 228, 148, 159, 75, 90, 59, 33, 247, 22, 132, 116, 113, 89, 243, 46, 67, 191, 130, 232, 27, 145, + 35, 84, 228, 32, 189, 248, 187, 27, 119, 123, 58, 126, 42, 56, 211, 195, 69, 215, 217, 128, 145, 117, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3863, + "sample": { + "_tag": "ByteArray", + "bytearray": "c3b27f41908b9f046b28" + }, + "cborHex": "4ac3b27f41908b9f046b28", + "cborBytes": [74, 195, 178, 127, 65, 144, 139, 159, 4, 107, 40], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3864, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "782387207000412610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11524662044962929001" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7530882718963996860" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14602855155289476483" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15247014139042823267" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13035572510391230158" + } + } + } + ] + }, + "cborHex": "bf1b0adb9904fe11d1c21b9fefd311d27139691b688311eebcfa18bc9f1bcaa7c364fd82cd83ff1bd3984693cb017c631bb4e7a821fdb75eceff", + "cborBytes": [ + 191, 27, 10, 219, 153, 4, 254, 17, 209, 194, 27, 159, 239, 211, 17, 210, 113, 57, 105, 27, 104, 131, 17, 238, 188, + 250, 24, 188, 159, 27, 202, 167, 195, 100, 253, 130, 205, 131, 255, 27, 211, 152, 70, 147, 203, 1, 124, 99, 27, + 180, 231, 168, 33, 253, 183, 94, 206, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3865, + "sample": { + "_tag": "ByteArray", + "bytearray": "3d78b5fa28c514c2ee4d" + }, + "cborHex": "4a3d78b5fa28c514c2ee4d", + "cborBytes": [74, 61, 120, 181, 250, 40, 197, 20, 194, 238, 77], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3866, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8cd3f3359f1777a2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1418377858569507199" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13890108624334387621" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10345062137346442567" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6754309469045933046" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12820789336596441030" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9882879819260278104" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15899233278915516629" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9bc9cb27e40a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17093293710361988904" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8b5a8c90719ed9a" + } + } + ] + } + ] + }, + "cborHex": "9f488cd3f3359f1777a2bf1b13af1725c150917f1bc0c394336d0a79a51b8f910b3413e0c5471b5dbc20ad1d8a43f61bb1ec97f963f267c61b89270ad578e2b5581bdca56c6deed418d5469bc9cb27e40a1bed379410bf8b8f2848b8b5a8c90719ed9affff", + "cborBytes": [ + 159, 72, 140, 211, 243, 53, 159, 23, 119, 162, 191, 27, 19, 175, 23, 37, 193, 80, 145, 127, 27, 192, 195, 148, 51, + 109, 10, 121, 165, 27, 143, 145, 11, 52, 19, 224, 197, 71, 27, 93, 188, 32, 173, 29, 138, 67, 246, 27, 177, 236, + 151, 249, 99, 242, 103, 198, 27, 137, 39, 10, 213, 120, 226, 181, 88, 27, 220, 165, 108, 109, 238, 212, 24, 213, + 70, 155, 201, 203, 39, 228, 10, 27, 237, 55, 148, 16, 191, 139, 143, 40, 72, 184, 181, 168, 201, 7, 25, 237, 154, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3867, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f23231" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "876716535720489182" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c59" + } + } + ] + }, + "cborHex": "bf0b43f232311b0c2ab90b5054b0de420c59ff", + "cborBytes": [191, 11, 67, 242, 50, 49, 27, 12, 42, 185, 11, 80, 84, 176, 222, 66, 12, 89, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3868, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17915801676870469566" + } + }, + "cborHex": "1bf8a1b6b4003647be", + "cborBytes": [27, 248, 161, 182, 180, 0, 54, 71, 190], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3869, + "sample": { + "_tag": "ByteArray", + "bytearray": "fd1e" + }, + "cborHex": "42fd1e", + "cborBytes": [66, 253, 30], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3870, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "32e66e539b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21fad83e5533" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b0988939f67dc2b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14343155161548481553" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8e27c52608783e2ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17691806403393630346" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc4263d40706225d98d62ce3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1482545765298871803" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f070150485b34d1f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8522252657889705527" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f133dc09201f962941fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14664209323456926416" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0ebf4532e66e539b4621fad83e5533486b0988939f67dc2b1bc70d1fa04a68641149c8e27c52608783e2ba1bf585ec304d42308a4cdc4263d40706225d98d62ce31b14930f84c7e61dfb48f070150485b34d1f1b76451fa3b7a4fe374af133dc09201f962941fd1bcb81bcaf749f12d0ffff", + "cborBytes": [ + 191, 14, 191, 69, 50, 230, 110, 83, 155, 70, 33, 250, 216, 62, 85, 51, 72, 107, 9, 136, 147, 159, 103, 220, 43, + 27, 199, 13, 31, 160, 74, 104, 100, 17, 73, 200, 226, 124, 82, 96, 135, 131, 226, 186, 27, 245, 133, 236, 48, 77, + 66, 48, 138, 76, 220, 66, 99, 212, 7, 6, 34, 93, 152, 214, 44, 227, 27, 20, 147, 15, 132, 199, 230, 29, 251, 72, + 240, 112, 21, 4, 133, 179, 77, 31, 27, 118, 69, 31, 163, 183, 164, 254, 55, 74, 241, 51, 220, 9, 32, 31, 150, 41, + 65, 253, 27, 203, 129, 188, 175, 116, 159, 18, 208, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3871, + "sample": { + "_tag": "ByteArray", + "bytearray": "34875ff900c92d" + }, + "cborHex": "4734875ff900c92d", + "cborBytes": [71, 52, 135, 95, 249, 0, 201, 45], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3872, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4672154489717009411" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6450083524574939266" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5071735719510220894" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3623169719080602575" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a9c5ff" + }, + { + "_tag": "ByteArray", + "bytearray": "81" + }, + { + "_tag": "ByteArray", + "bytearray": "d95775cb81" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10411055270869855929" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13179732140146196370" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5404123763381781292" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7229875491818962367" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8577788774741194264" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c" + } + } + ] + }, + "cborHex": "bf1b40d6d3c117542c031b59834ccaa5e388821b46626cc40411205ed8669f1b324815a9c2c04bcf9f43a9c5ff418145d95775cb811b907b7f9bd527eeb91bb6e7d08d60367f92ffff1b4aff4dee369e432cd8669f1b6455ad744c2bfdbf80ff1b770a6d718cc83618416cff", + "cborBytes": [ + 191, 27, 64, 214, 211, 193, 23, 84, 44, 3, 27, 89, 131, 76, 202, 165, 227, 136, 130, 27, 70, 98, 108, 196, 4, 17, + 32, 94, 216, 102, 159, 27, 50, 72, 21, 169, 194, 192, 75, 207, 159, 67, 169, 197, 255, 65, 129, 69, 217, 87, 117, + 203, 129, 27, 144, 123, 127, 155, 213, 39, 238, 185, 27, 182, 231, 208, 141, 96, 54, 127, 146, 255, 255, 27, 74, + 255, 77, 238, 54, 158, 67, 44, 216, 102, 159, 27, 100, 85, 173, 116, 76, 43, 253, 191, 128, 255, 27, 119, 10, 109, + 113, 140, 200, 54, 24, 65, 108, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3873, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16254151611159557604" + } + }, + "cborHex": "1be19258c5ac8235e4", + "cborBytes": [27, 225, 146, 88, 197, 172, 130, 53, 228], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3874, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a21b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7d0464125b7e8237a8f9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e5f32fba6b2c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0886a4b2e37cdc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f7511bec4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "667bd3168d5aafca99a614" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "594619" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "402ce42714" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f42a21b084a7d0464125b7e8237a8f99fd9050980bf472e5f32fba6b2c4470886a4b2e37cdc452f7511bec44b667bd3168d5aafca99a6144359461945402ce42714ffffff", + "cborBytes": [ + 159, 66, 162, 27, 8, 74, 125, 4, 100, 18, 91, 126, 130, 55, 168, 249, 159, 217, 5, 9, 128, 191, 71, 46, 95, 50, + 251, 166, 178, 196, 71, 8, 134, 164, 178, 227, 124, 220, 69, 47, 117, 17, 190, 196, 75, 102, 123, 211, 22, 141, + 90, 175, 202, 153, 166, 20, 67, 89, 70, 25, 69, 64, 44, 228, 39, 20, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3875, + "sample": { + "_tag": "ByteArray", + "bytearray": "92d89e9d" + }, + "cborHex": "4492d89e9d", + "cborBytes": [68, 146, 216, 158, 157], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3876, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4550994997059237474" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7840475301156508698" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88b83c2e1840984f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10895712691785031413" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1761063e815724c74c6e0a5a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17555233132950497244" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10417979942187973270" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b3f2861d66e4bb66241b61b6ccef6beeba8541a4888b83c2e1840984f1b973558f7188fdef54c1761063e815724c74c6e0a5a1bf3a0b785d6aea7dc1b9094198f83423a96ffff", + "cborBytes": [ + 159, 191, 27, 63, 40, 97, 214, 110, 75, 182, 98, 65, 182, 27, 108, 206, 246, 190, 235, 168, 84, 26, 72, 136, 184, + 60, 46, 24, 64, 152, 79, 27, 151, 53, 88, 247, 24, 143, 222, 245, 76, 23, 97, 6, 62, 129, 87, 36, 199, 76, 110, + 10, 90, 27, 243, 160, 183, 133, 214, 174, 167, 220, 27, 144, 148, 25, 143, 131, 66, 58, 150, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3877, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16306544424897083162" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9839931697148162646" + }, + "fields": [] + } + ] + }, + "cborHex": "d8669f1be24c7bc2381df71a9fd8669f1b888e75be8e9f725680ffffff", + "cborBytes": [ + 216, 102, 159, 27, 226, 76, 123, 194, 56, 29, 247, 26, 159, 216, 102, 159, 27, 136, 142, 117, 190, 142, 159, 114, + 86, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3878, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6873911204286426559" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4610642402682768057" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4d16ee70bf315cbb" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "481be1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9679669896441224145" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0cd3cd790d3a9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9746646302594575798" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90c8f1c00e00be77f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13253113632510449819" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16765502982506986782" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14025295319469739041" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93125e6bd8e6c5" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4550825913811839089" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffef9f1b5f6509d21d11edbf1b3ffc4ad646428ab9484d16ee70bf315cbb9f43481be1bf1b8655187c586bdbd147f0cd3cd790d3a91b87430b2c19862db64990c8f1c00e00be77f81bb7ec84a179ac189b1be8ab08229914bd1e1bc2a3dbc8aaf14c214793125e6bd8e6c5ff9f411e1b3f27c80eab65a871ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 27, 95, 101, 9, 210, 29, 17, 237, 191, 27, 63, + 252, 74, 214, 70, 66, 138, 185, 72, 77, 22, 238, 112, 191, 49, 92, 187, 159, 67, 72, 27, 225, 191, 27, 134, 85, + 24, 124, 88, 107, 219, 209, 71, 240, 205, 60, 215, 144, 211, 169, 27, 135, 67, 11, 44, 25, 134, 45, 182, 73, 144, + 200, 241, 192, 14, 0, 190, 119, 248, 27, 183, 236, 132, 161, 121, 172, 24, 155, 27, 232, 171, 8, 34, 153, 20, 189, + 30, 27, 194, 163, 219, 200, 170, 241, 76, 33, 71, 147, 18, 94, 107, 216, 230, 197, 255, 159, 65, 30, 27, 63, 39, + 200, 14, 171, 101, 168, 113, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3879, + "sample": { + "_tag": "ByteArray", + "bytearray": "ca77d996a934" + }, + "cborHex": "46ca77d996a934", + "cborBytes": [70, 202, 119, 217, 150, 169, 52], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3880, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5744181671346282871" + } + }, + "cborHex": "1b4fb76ecbcde7a177", + "cborBytes": [27, 79, 183, 110, 203, 205, 231, 161, 119], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3881, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13732562335261516850" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9901699288164403407" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70377c06d17f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11478904433538404681" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c2db9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "17" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18184304456145449430" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b529" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdd98b46" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "92e6fa22f2d4c33a0002fb53" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12e723a87270f313b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17741542474923634991" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "497f4478fab726a4f5cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c47" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84840e5f80def7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1145066565856887859" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2808844093504959094" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14134786607902474347" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "18b4b6" + }, + { + "_tag": "ByteArray", + "bytearray": "b44c88" + }, + { + "_tag": "ByteArray", + "bytearray": "a618f0501e14a57f77571a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4493480265440277297" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1bbe93dcaf892be4329fbf1b8969e70a87c708cf4670377c06d17f1b9f4d42c3b3b69149431c2db941171bfc5ba08eec1a31d642b52944fdd98b46ff4c92e6fa22f2d4c33a0002fb539f41c4bf4912e723a87270f313b71bf6369ee1d953f12f4a497f4478fab726a4f5cb427c474784840e5f80def71b0fe417f98e13843342b2c31b26fb04d236d13276ffd8669f1bc428d987d3f9c06b9f4318b4b643b44c884ba618f0501e14a57f77571affff9f1b3e5c0c7e72cbb331ffffffff", + "cborBytes": [ + 216, 102, 159, 27, 190, 147, 220, 175, 137, 43, 228, 50, 159, 191, 27, 137, 105, 231, 10, 135, 199, 8, 207, 70, + 112, 55, 124, 6, 209, 127, 27, 159, 77, 66, 195, 179, 182, 145, 73, 67, 28, 45, 185, 65, 23, 27, 252, 91, 160, + 142, 236, 26, 49, 214, 66, 181, 41, 68, 253, 217, 139, 70, 255, 76, 146, 230, 250, 34, 242, 212, 195, 58, 0, 2, + 251, 83, 159, 65, 196, 191, 73, 18, 231, 35, 168, 114, 112, 243, 19, 183, 27, 246, 54, 158, 225, 217, 83, 241, 47, + 74, 73, 127, 68, 120, 250, 183, 38, 164, 245, 203, 66, 124, 71, 71, 132, 132, 14, 95, 128, 222, 247, 27, 15, 228, + 23, 249, 142, 19, 132, 51, 66, 178, 195, 27, 38, 251, 4, 210, 54, 209, 50, 118, 255, 216, 102, 159, 27, 196, 40, + 217, 135, 211, 249, 192, 107, 159, 67, 24, 180, 182, 67, 180, 76, 136, 75, 166, 24, 240, 80, 30, 20, 165, 127, + 119, 87, 26, 255, 255, 159, 27, 62, 92, 12, 126, 114, 203, 179, 49, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3882, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6571346119454564147" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12900793112016084040" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12792413225503701326" + } + }, + { + "_tag": "ByteArray", + "bytearray": "63b65374c58885fea8" + }, + { + "_tag": "ByteArray", + "bytearray": "91df7dd5bfd4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1274336924778138770" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08fa035354f5e6fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70f76ac8af55" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae743574480bea69df60f939" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16679444076383410235" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5b96a6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a38dce6ca" + } + } + ] + }, + "cborHex": "bf4101d8669f1b5b321c7aaa3b1f339f1bb308d2fbea865c481bb187c80d2e28394e4963b65374c58885fea84691df7dd5bfd41b11af5aae6d908c92ffff415c4808fa035354f5e6fc4670f76ac8af55a04193d9050a804cae743574480bea69df60f9391be7794a0417d3983b44d5b96a6b454a38dce6caff", + "cborBytes": [ + 191, 65, 1, 216, 102, 159, 27, 91, 50, 28, 122, 170, 59, 31, 51, 159, 27, 179, 8, 210, 251, 234, 134, 92, 72, 27, + 177, 135, 200, 13, 46, 40, 57, 78, 73, 99, 182, 83, 116, 197, 136, 133, 254, 168, 70, 145, 223, 125, 213, 191, + 212, 27, 17, 175, 90, 174, 109, 144, 140, 146, 255, 255, 65, 92, 72, 8, 250, 3, 83, 84, 245, 230, 252, 70, 112, + 247, 106, 200, 175, 85, 160, 65, 147, 217, 5, 10, 128, 76, 174, 116, 53, 116, 72, 11, 234, 105, 223, 96, 249, 57, + 27, 231, 121, 74, 4, 23, 211, 152, 59, 68, 213, 185, 106, 107, 69, 74, 56, 220, 230, 202, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3883, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e8c4b6" + } + ] + }, + "cborHex": "d9050d9f43e8c4b6ff", + "cborBytes": [217, 5, 13, 159, 67, 232, 196, 182, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3884, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6291444671205155561" + } + }, + "cborHex": "1b574fb3984f3522e9", + "cborBytes": [27, 87, 79, 179, 152, 79, 53, 34, 233], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3885, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14761275028732326127" + } + }, + "cborHex": "1bccda956e176f30ef", + "cborBytes": [27, 204, 218, 149, 110, 23, 111, 48, 239], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3886, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17382308730493622662" + } + }, + "cborHex": "1bf13a5db1e93e5986", + "cborBytes": [27, 241, 58, 93, 177, 233, 62, 89, 134], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3887, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "09c5318c0d8a7ea4" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f4809c5318c0d8a7ea4ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 72, 9, 197, 49, 140, 13, 138, 126, 164, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3888, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5710867861691407711" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11703609847184300218" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01d5220501fc89d767ce0300" + } + } + ] + }, + "cborHex": "bf1b4f4114100f4f9d5f414a1ba26b9325cb2f18ba4c01d5220501fc89d767ce0300ff", + "cborBytes": [ + 191, 27, 79, 65, 20, 16, 15, 79, 157, 95, 65, 74, 27, 162, 107, 147, 37, 203, 47, 24, 186, 76, 1, 213, 34, 5, 1, + 252, 137, 215, 103, 206, 3, 0, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3889, + "sample": { + "_tag": "ByteArray", + "bytearray": "d6d9cf12" + }, + "cborHex": "44d6d9cf12", + "cborBytes": [68, 214, 217, 207, 18], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3890, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c8eb708184a9" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ec55f597f946f54d905715" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14887355335604231418" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "45283c01219dafbd" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2084472273796758952" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ffdc8e45" + }, + { + "_tag": "ByteArray", + "bytearray": "b71a14a2ca" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7841244197491251898" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f528f8afc40" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16155635686819181429" + } + }, + { + "_tag": "ByteArray", + "bytearray": "51ce61b37b597e100c2a9d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4936856074867047706" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10897376269516982171" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11109302352570754868" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15448740861454268508" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14830206213821659933" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17594556759125279586" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a053036573536906" + } + } + ] + } + ] + } + ] + }, + "cborHex": "d87e9f46c8eb708184a9a04bec55f597f946f54d9057151bce9a82cd17b4dcfa9f4845283c01219dafbdd8669f1b1ced887d2fce7da89f44ffdc8e4545b71a14a2caffff9f1b6cd1b20d8c8f1aba464f528f8afc401be034590f997b33754b51ce61b37b597e100c2a9d1b44833c7189adfd1affbf1b973b41faf854c79b1b9a2c2ba14b6427341bd664f3f66a0b385c1bcdcf79fa48a17b1d1bf42c6c27081c436248a053036573536906ffffff", + "cborBytes": [ + 216, 126, 159, 70, 200, 235, 112, 129, 132, 169, 160, 75, 236, 85, 245, 151, 249, 70, 245, 77, 144, 87, 21, 27, + 206, 154, 130, 205, 23, 180, 220, 250, 159, 72, 69, 40, 60, 1, 33, 157, 175, 189, 216, 102, 159, 27, 28, 237, 136, + 125, 47, 206, 125, 168, 159, 68, 255, 220, 142, 69, 69, 183, 26, 20, 162, 202, 255, 255, 159, 27, 108, 209, 178, + 13, 140, 143, 26, 186, 70, 79, 82, 143, 138, 252, 64, 27, 224, 52, 89, 15, 153, 123, 51, 117, 75, 81, 206, 97, + 179, 123, 89, 126, 16, 12, 42, 157, 27, 68, 131, 60, 113, 137, 173, 253, 26, 255, 191, 27, 151, 59, 65, 250, 248, + 84, 199, 155, 27, 154, 44, 43, 161, 75, 100, 39, 52, 27, 214, 100, 243, 246, 106, 11, 56, 92, 27, 205, 207, 121, + 250, 72, 161, 123, 29, 27, 244, 44, 108, 39, 8, 28, 67, 98, 72, 160, 83, 3, 101, 115, 83, 105, 6, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3891, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e602" + }, + { + "_tag": "ByteArray", + "bytearray": "1e79f7f9" + }, + { + "_tag": "ByteArray", + "bytearray": "9c271f7d3bf39f6deca3ed85" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7099293733316321125" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4823361213977395704" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2445709595952329831" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9920479801090965450" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2049356051598891005" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12433897840243609585" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2947864879941720265" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "59" + } + ] + }, + "cborHex": "d905029f42e602441e79f7f94c9c271f7d3bf39f6deca3ed85d8669f1b6285c2096a79df659fbf1b42f00578068501f81b21f0e7eb6a80b4671b89ac9fd17176ffca1b1c70c67891d957fdff1bac8e143545378ff11b28e8eb7d66c698c9ffff4159ff", + "cborBytes": [ + 217, 5, 2, 159, 66, 230, 2, 68, 30, 121, 247, 249, 76, 156, 39, 31, 125, 59, 243, 159, 109, 236, 163, 237, 133, + 216, 102, 159, 27, 98, 133, 194, 9, 106, 121, 223, 101, 159, 191, 27, 66, 240, 5, 120, 6, 133, 1, 248, 27, 33, + 240, 231, 235, 106, 128, 180, 103, 27, 137, 172, 159, 209, 113, 118, 255, 202, 27, 28, 112, 198, 120, 145, 217, + 87, 253, 255, 27, 172, 142, 20, 53, 69, 55, 143, 241, 27, 40, 232, 235, 125, 102, 198, 152, 201, 255, 255, 65, 89, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3892, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "290554674947521012" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "37d56305729f6204b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15855100144082593176" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6229095750866046081" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2108630004582065323" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2282488e0c2793" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4625642846774112794" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "314242976ac2a69a866b4924" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10076986487009515289" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b9c385a0e0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0eada5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e3b4cea7c9c51790a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11418996994595437215" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12834304647164496388" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5501201825874902723" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7570071493658516632" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6006967964497251578" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fb793426ad" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17502007025584191925" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "199f6affd13f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7081681169761603502" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9f0198170fb950a7" + }, + { + "_tag": "ByteArray", + "bytearray": "47d054255f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5150883679340466497" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2457992274802892647" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "832acaa79e74" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7040368742214188728" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15750038201663972282" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9617490628795197168" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a37579ca8da8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10246074774422358574" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec90d3d999fa11" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11762742190412953061" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17539519740707377164" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8065859701314183962" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "607233866591298654" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d708f9353d9e73c7437efa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14046692087038512661" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8df59051b781d0fa93" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5f24ee3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5a94a1343a7171e3fa7" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0353a6e4" + } + ] + }, + "cborHex": "9fd8669f1b040841effc1379f49f4937d56305729f6204b71bdc08a193be49a598d8669f1b567231950e440c819f1b1d435bd131d824abffffbf472282488e0c27931b403195a953cc321a4c314242976ac2a69a866b49241b8bd8a5d1dc9d1719464b9c385a0e0e430eada5496e3b4cea7c9c51790a1b9e786d44221d3a9fffd8669f1bb21c9c13d9628a049f1b4c5831e9fd00fec31b690e4bea5fd39c981b535d098995028cfa45fb793426adffffffffd8669f1bf2e39ea9005639b59f9f46199f6affd13f1b62472f80e8368fae489f0198170fb950a74547d054255f1b477b9d6a72721141ffffffbf1b221c8af37047df6746832acaa79e741b61b46a11cf70beb81bda93604c110363ba1b857830c56ffc66f046a37579ca8da81b8e315eb8a7890a2e47ec90d3d999fa111ba33da7b3541075e541cb1bf368e4469bd0900c1b6fefb0a9e0f8631affbf1b086d53fc01c2e45e4bd708f9353d9e73c7437efa1bc2efe007d5388e15498df59051b781d0fa9344f5f24ee34ac5a94a1343a7171e3fa7ff440353a6e4ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 4, 8, 65, 239, 252, 19, 121, 244, 159, 73, 55, 213, 99, 5, 114, 159, 98, 4, 183, 27, 220, + 8, 161, 147, 190, 73, 165, 152, 216, 102, 159, 27, 86, 114, 49, 149, 14, 68, 12, 129, 159, 27, 29, 67, 91, 209, + 49, 216, 36, 171, 255, 255, 191, 71, 34, 130, 72, 142, 12, 39, 147, 27, 64, 49, 149, 169, 83, 204, 50, 26, 76, 49, + 66, 66, 151, 106, 194, 166, 154, 134, 107, 73, 36, 27, 139, 216, 165, 209, 220, 157, 23, 25, 70, 75, 156, 56, 90, + 14, 14, 67, 14, 173, 165, 73, 110, 59, 76, 234, 124, 156, 81, 121, 10, 27, 158, 120, 109, 68, 34, 29, 58, 159, + 255, 216, 102, 159, 27, 178, 28, 156, 19, 217, 98, 138, 4, 159, 27, 76, 88, 49, 233, 253, 0, 254, 195, 27, 105, + 14, 75, 234, 95, 211, 156, 152, 27, 83, 93, 9, 137, 149, 2, 140, 250, 69, 251, 121, 52, 38, 173, 255, 255, 255, + 255, 216, 102, 159, 27, 242, 227, 158, 169, 0, 86, 57, 181, 159, 159, 70, 25, 159, 106, 255, 209, 63, 27, 98, 71, + 47, 128, 232, 54, 143, 174, 72, 159, 1, 152, 23, 15, 185, 80, 167, 69, 71, 208, 84, 37, 95, 27, 71, 123, 157, 106, + 114, 114, 17, 65, 255, 255, 255, 191, 27, 34, 28, 138, 243, 112, 71, 223, 103, 70, 131, 42, 202, 167, 158, 116, + 27, 97, 180, 106, 17, 207, 112, 190, 184, 27, 218, 147, 96, 76, 17, 3, 99, 186, 27, 133, 120, 48, 197, 111, 252, + 102, 240, 70, 163, 117, 121, 202, 141, 168, 27, 142, 49, 94, 184, 167, 137, 10, 46, 71, 236, 144, 211, 217, 153, + 250, 17, 27, 163, 61, 167, 179, 84, 16, 117, 229, 65, 203, 27, 243, 104, 228, 70, 155, 208, 144, 12, 27, 111, 239, + 176, 169, 224, 248, 99, 26, 255, 191, 27, 8, 109, 83, 252, 1, 194, 228, 94, 75, 215, 8, 249, 53, 61, 158, 115, + 199, 67, 126, 250, 27, 194, 239, 224, 7, 213, 56, 142, 21, 73, 141, 245, 144, 81, 183, 129, 208, 250, 147, 68, + 245, 242, 78, 227, 74, 197, 169, 74, 19, 67, 167, 23, 30, 63, 167, 255, 68, 3, 83, 166, 228, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3893, + "sample": { + "_tag": "ByteArray", + "bytearray": "6fd26e869c" + }, + "cborHex": "456fd26e869c", + "cborBytes": [69, 111, 210, 110, 134, 156], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3894, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8739583308022242661" + } + }, + "cborHex": "1b79493cb6df995d65", + "cborBytes": [27, 121, 73, 60, 182, 223, 153, 93, 101], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3895, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "266fed7124d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1063219051757463404" + } + } + ] + } + ] + }, + "cborHex": "9f9f46266fed7124d51b0ec150182a6e676cffff", + "cborBytes": [159, 159, 70, 38, 111, 237, 113, 36, 213, 27, 14, 193, 80, 24, 42, 110, 103, 108, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3896, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5591361079237265742" + } + }, + "cborHex": "1b4d988146fae1c94e", + "cborBytes": [27, 77, 152, 129, 70, 250, 225, 201, 78], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3897, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9632552770879099395" + } + }, + "cborHex": "1b85adb3b5ac741203", + "cborBytes": [27, 133, 173, 179, 181, 172, 116, 18, 3], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3898, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7774771918871300937" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "991417235851167976" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9040721992380458211" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3743988305862838766" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11153018925236399948" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10159800598636797396" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17087161714072731700" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b15e5ca5c78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7429771558053956955" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17141534259273042690" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30bcb01f2551f986" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7185196657846350424" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f6fa6af" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1167089460839601304" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "d9050c9fd8669f1b6be589de22018b499fbf1b0dc238b9271bc8e81b7d7718c094e624e31b33f55187162bc9ee1b9ac77b9f0becaf4c1b8cfedcd0c68c1dd41bed21cb0c1af5c034ffbf461b15e5ca5c781b671bd9de101b4d5bff9f1bede2f696cd288b02ffbf4830bcb01f2551f9861b63b6f24aa0417258444f6fa6af1b103255ae5e725498ffffffff", + "cborBytes": [ + 217, 5, 12, 159, 216, 102, 159, 27, 107, 229, 137, 222, 34, 1, 139, 73, 159, 191, 27, 13, 194, 56, 185, 39, 27, + 200, 232, 27, 125, 119, 24, 192, 148, 230, 36, 227, 27, 51, 245, 81, 135, 22, 43, 201, 238, 27, 154, 199, 123, + 159, 11, 236, 175, 76, 27, 140, 254, 220, 208, 198, 140, 29, 212, 27, 237, 33, 203, 12, 26, 245, 192, 52, 255, + 191, 70, 27, 21, 229, 202, 92, 120, 27, 103, 27, 217, 222, 16, 27, 77, 91, 255, 159, 27, 237, 226, 246, 150, 205, + 40, 139, 2, 255, 191, 72, 48, 188, 176, 31, 37, 81, 249, 134, 27, 99, 182, 242, 74, 160, 65, 114, 88, 68, 79, 111, + 166, 175, 27, 16, 50, 85, 174, 94, 114, 84, 152, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3899, + "sample": { + "_tag": "ByteArray", + "bytearray": "b8a6ef571ca16bacd8e0e838" + }, + "cborHex": "4cb8a6ef571ca16bacd8e0e838", + "cborBytes": [76, 184, 166, 239, 87, 28, 161, 107, 172, 216, 224, 232, 56], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3900, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11611376085140998459" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c838d6e30d0866eb544b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18057797193359288433" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3b7f" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17858492061716339021" + } + }, + { + "_tag": "ByteArray", + "bytearray": "438213dcb7cfabac67e2dec2" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11855503407221744907" + }, + "fields": [] + } + ] + }, + "cborHex": "9f9f1ba123e5079c4b893bbf4b5c838d6e30d0866eb544b31bfa9a2edf8039e871ff423b7f809f1bf7d61be96abc594d4c438213dcb7cfabac67e2dec2ffffd8669f1ba487358924e2a50b80ffff", + "cborBytes": [ + 159, 159, 27, 161, 35, 229, 7, 156, 75, 137, 59, 191, 75, 92, 131, 141, 110, 48, 208, 134, 110, 181, 68, 179, 27, + 250, 154, 46, 223, 128, 57, 232, 113, 255, 66, 59, 127, 128, 159, 27, 247, 214, 27, 233, 106, 188, 89, 77, 76, 67, + 130, 19, 220, 183, 207, 171, 172, 103, 226, 222, 194, 255, 255, 216, 102, 159, 27, 164, 135, 53, 137, 36, 226, + 165, 11, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3901, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4875659737388225427" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11058538339673261184" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5464095484223217250" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9591738076639753248" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6224782109135367833" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f40f7a24169" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6694595284374378833" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dde4ffcc1c46" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16503159154463713854" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17312562200128220748" + } + } + } + ] + } + ] + }, + "cborHex": "d87f9fbf1b43a9d2b2e4b313931b9977d2077f4344801b4bd45de493f0de621b851cb2f624b374201b5662de5913386e99462f40f7a241691b5ce7faf11023d95146dde4ffcc1c461be506ffd0418baa3e1bf04293985a7f6e4cffff", + "cborBytes": [ + 216, 127, 159, 191, 27, 67, 169, 210, 178, 228, 179, 19, 147, 27, 153, 119, 210, 7, 127, 67, 68, 128, 27, 75, 212, + 93, 228, 147, 240, 222, 98, 27, 133, 28, 178, 246, 36, 179, 116, 32, 27, 86, 98, 222, 89, 19, 56, 110, 153, 70, + 47, 64, 247, 162, 65, 105, 27, 92, 231, 250, 241, 16, 35, 217, 81, 70, 221, 228, 255, 204, 28, 70, 27, 229, 6, + 255, 208, 65, 139, 170, 62, 27, 240, 66, 147, 152, 90, 127, 110, 76, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3902, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1858963350434179300" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad33f7dffcb6ae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8393617279246202835" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2052898110544678135" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10524868057792453092" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13029418033780017952" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17844577603723344845" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcb472364bdd3a" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "843175e4333470" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3952082989614681408" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe227af26356f3cb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9670888970434789094" + } + } + ] + } + } + ] + }, + "cborHex": "bf410cbf1b19cc5d51691968e447ad33f7dffcb6ae1b747c1e71b60cf7d31b1c7d5bf46f160cf71b920fd7bc449319e41bb4d1caab3d86cb201bf7a4acc934d23bcd47fcb472364bdd3aff4146419847843175e43334701b36d89e8a3ed8cd404199a048fe227af26356f3cb9f1b8635e647b1023ee6ffff", + "cborBytes": [ + 191, 65, 12, 191, 27, 25, 204, 93, 81, 105, 25, 104, 228, 71, 173, 51, 247, 223, 252, 182, 174, 27, 116, 124, 30, + 113, 182, 12, 247, 211, 27, 28, 125, 91, 244, 111, 22, 12, 247, 27, 146, 15, 215, 188, 68, 147, 25, 228, 27, 180, + 209, 202, 171, 61, 134, 203, 32, 27, 247, 164, 172, 201, 52, 210, 59, 205, 71, 252, 180, 114, 54, 75, 221, 58, + 255, 65, 70, 65, 152, 71, 132, 49, 117, 228, 51, 52, 112, 27, 54, 216, 158, 138, 62, 216, 205, 64, 65, 153, 160, + 72, 254, 34, 122, 242, 99, 86, 243, 203, 159, 27, 134, 53, 230, 71, 177, 2, 62, 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3903, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11118071165819958438" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10536331763004088811" + } + } + ] + }, + "cborHex": "d8669f1b9a4b52d1ba3634a69f1b923891ea218621ebffff", + "cborBytes": [ + 216, 102, 159, 27, 154, 75, 82, 209, 186, 54, 52, 166, 159, 27, 146, 56, 145, 234, 33, 134, 33, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3904, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4725291208333639240" + } + }, + "cborHex": "1b41939b517d00be48", + "cborBytes": [27, 65, 147, 155, 81, 125, 0, 190, 72], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3905, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1769232852007534624" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd6c8d04293f7bccd9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32f5daa1b1b6e69ee30d16" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b188d93e7b4dc4020a0419ebf49cd6c8d04293f7bccd94b32f5daa1b1b6e69ee30d16ffff", + "cborBytes": [ + 191, 27, 24, 141, 147, 231, 180, 220, 64, 32, 160, 65, 158, 191, 73, 205, 108, 141, 4, 41, 63, 123, 204, 217, 75, + 50, 245, 218, 161, 177, 182, 230, 158, 227, 13, 22, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3906, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15990390744355145675" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2354054117524964604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4321033145148254345" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5925395264940437639" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13471728242148956186" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04040e" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffff79fa0bf10051bfffffffffffffff704ffd8669f1bdde947a948fb87cb9fbf1b20ab47bf611f04fc1b3bf764c06f402889ff1b523b3b99708e7087ffff1bbaf53175bfe2d81a4304040effff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 160, 191, 16, 5, 27, 255, 255, 255, 255, 255, 255, + 255, 247, 4, 255, 216, 102, 159, 27, 221, 233, 71, 169, 72, 251, 135, 203, 159, 191, 27, 32, 171, 71, 191, 97, 31, + 4, 252, 27, 59, 247, 100, 192, 111, 64, 40, 137, 255, 27, 82, 59, 59, 153, 112, 142, 112, 135, 255, 255, 27, 186, + 245, 49, 117, 191, 226, 216, 26, 67, 4, 4, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3907, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5462204406725033318" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6170" + }, + { + "_tag": "ByteArray", + "bytearray": "6a27" + } + ] + }, + "cborHex": "d8669f1b4bcda5f7c96b3d669f426170426a27ffff", + "cborBytes": [216, 102, 159, 27, 75, 205, 165, 247, 201, 107, 61, 102, 159, 66, 97, 112, 66, 106, 39, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3908, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f5" + }, + { + "_tag": "ByteArray", + "bytearray": "d1f5ebb37dd58197" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6134117542791526707" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "719db93f35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d793b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c30098a312e7af124" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7463cacaeb1c684d1a76" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95029bd4a72a340b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4764d1257c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9ee30b2b24e679a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7314879928268294448" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7d338" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6223663efb09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13930319192657315114" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd830e" + } + } + ] + } + ] + }, + "cborHex": "9f9f41f548d1f5ebb37dd581971b5520c367bc94b933bf45719db93f35435d793b497c30098a312e7af1244a7463cacaeb1c684d1a764895029bd4a72a340b46a4764d1257c748a9ee30b2b24e679a1b6583ac89f311093043b7d3384142ffffbf466223663efb091bc1526f7fee25452a418b43bd830effff", + "cborBytes": [ + 159, 159, 65, 245, 72, 209, 245, 235, 179, 125, 213, 129, 151, 27, 85, 32, 195, 103, 188, 148, 185, 51, 191, 69, + 113, 157, 185, 63, 53, 67, 93, 121, 59, 73, 124, 48, 9, 138, 49, 46, 122, 241, 36, 74, 116, 99, 202, 202, 235, 28, + 104, 77, 26, 118, 72, 149, 2, 155, 212, 167, 42, 52, 11, 70, 164, 118, 77, 18, 87, 199, 72, 169, 238, 48, 178, + 178, 78, 103, 154, 27, 101, 131, 172, 137, 243, 17, 9, 48, 67, 183, 211, 56, 65, 66, 255, 255, 191, 70, 98, 35, + 102, 62, 251, 9, 27, 193, 82, 111, 127, 238, 37, 69, 42, 65, 139, 67, 189, 131, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3909, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17760120641849531286" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ce663fe1390b48b6d57fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10023542939315610597" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bf6789fa069861b969fbf4b2ce663fe1390b48b6d57fc1b8b1ac73240c823e5ffffff", + "cborBytes": [ + 216, 102, 159, 27, 246, 120, 159, 160, 105, 134, 27, 150, 159, 191, 75, 44, 230, 99, 254, 19, 144, 180, 139, 109, + 87, 252, 27, 139, 26, 199, 50, 64, 200, 35, 229, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3910, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "176f75eb1082c6c696" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9fb1bcb0" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25c3" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf49176f75eb1082c6c696d905049f449fb1bcb0ff4225c380ff", + "cborBytes": [ + 191, 73, 23, 111, 117, 235, 16, 130, 198, 198, 150, 217, 5, 4, 159, 68, 159, 177, 188, 176, 255, 66, 37, 195, 128, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3911, + "sample": { + "_tag": "ByteArray", + "bytearray": "d954" + }, + "cborHex": "42d954", + "cborBytes": [66, 217, 84], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3912, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "838d42a143608f" + }, + { + "_tag": "ByteArray", + "bytearray": "5f4ab0dd0a13260137fc15" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1200925217757240274" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7cd3c4b418f577" + } + ] + } + ] + } + ] + }, + "cborHex": "d87a9f9f9f47838d42a143608f4b5f4ab0dd0a13260137fc151b10aa8b1f6e3a9bd2477cd3c4b418f577ffffff", + "cborBytes": [ + 216, 122, 159, 159, 159, 71, 131, 141, 66, 161, 67, 96, 143, 75, 95, 74, 176, 221, 10, 19, 38, 1, 55, 252, 21, 27, + 16, 170, 139, 31, 110, 58, 155, 210, 71, 124, 211, 196, 180, 24, 245, 119, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3913, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a169b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10126470460235470350" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cfe808cffc4be0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15839549078352258156" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8e2ba04ddafd5959928" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "308ccdd4d3613725ad" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "444392d8514d6190f50b" + } + ] + } + } + ] + }, + "cborHex": "bf430a169bbf1b8c88733b32d2560e47cfe808cffc4be01bdbd161f7198d646c4ad8e2ba04ddafd5959928ff49308ccdd4d3613725ad9f4a444392d8514d6190f50bffff", + "cborBytes": [ + 191, 67, 10, 22, 155, 191, 27, 140, 136, 115, 59, 50, 210, 86, 14, 71, 207, 232, 8, 207, 252, 75, 224, 27, 219, + 209, 97, 247, 25, 141, 100, 108, 74, 216, 226, 186, 4, 221, 175, 213, 149, 153, 40, 255, 73, 48, 140, 205, 212, + 211, 97, 55, 37, 173, 159, 74, 68, 67, 146, 216, 81, 77, 97, 144, 245, 11, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3914, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17180825868393719708" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "365009633240180736" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "beef124ea0b9cf3bb98910" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12720992232550978948" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5716976088788688216" + } + } + } + ] + } + ] + }, + "cborHex": "9f1bee6e8e197173279cbf1b0510c653d8e068004bbeef124ea0b9cf3bb989101bb08a0b096bb455841b4f56c77681a6dd58ffff", + "cborBytes": [ + 159, 27, 238, 110, 142, 25, 113, 115, 39, 156, 191, 27, 5, 16, 198, 83, 216, 224, 104, 0, 75, 190, 239, 18, 78, + 160, 185, 207, 59, 185, 137, 16, 27, 176, 138, 11, 9, 107, 180, 85, 132, 27, 79, 86, 199, 118, 129, 166, 221, 88, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3915, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6dd432" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3cafab6f1727c" + } + } + ] + }, + "cborHex": "bf436dd43247e3cafab6f1727cff", + "cborBytes": [191, 67, 109, 212, 50, 71, 227, 202, 250, 182, 241, 114, 124, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3916, + "sample": { + "_tag": "ByteArray", + "bytearray": "1d0b4e0d2803eddd" + }, + "cborHex": "481d0b4e0d2803eddd", + "cborBytes": [72, 29, 11, 78, 13, 40, 3, 237, 221], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3917, + "sample": { + "_tag": "ByteArray", + "bytearray": "0306" + }, + "cborHex": "420306", + "cborBytes": [66, 3, 6], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3918, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cd6c183e" + } + ] + }, + "cborHex": "d87d9f44cd6c183eff", + "cborBytes": [216, 125, 159, 68, 205, 108, 24, 62, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3919, + "sample": { + "_tag": "ByteArray", + "bytearray": "f184b9" + }, + "cborHex": "43f184b9", + "cborBytes": [67, 241, 132, 185], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3920, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fd1fc70552fc3f01ad07ff" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11817751396403615587" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10344253415448099326" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc42c5b6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5f6d6d36a31244a41a607e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11863554100610475496" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4bfd1fc70552fc3f01ad07ffd8669f1ba40116482a8397639fbf1b8f8e2bacd667b9fe44bc42c5b64ca5f6d6d36a31244a41a607e11ba4a3cf99448425e8ffffffff", + "cborBytes": [ + 159, 75, 253, 31, 199, 5, 82, 252, 63, 1, 173, 7, 255, 216, 102, 159, 27, 164, 1, 22, 72, 42, 131, 151, 99, 159, + 191, 27, 143, 142, 43, 172, 214, 103, 185, 254, 68, 188, 66, 197, 182, 76, 165, 246, 214, 211, 106, 49, 36, 74, + 65, 166, 7, 225, 27, 164, 163, 207, 153, 68, 132, 37, 232, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3921, + "sample": { + "_tag": "ByteArray", + "bytearray": "f601850802" + }, + "cborHex": "45f601850802", + "cborBytes": [69, 246, 1, 133, 8, 2], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3922, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7890366235765093046" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2370747109468788066" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16316412432405018845" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3951667364388116190" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3769582169036503174" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8055705104178515682" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13476398500400519640" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15099291226885869042" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12469778599885299221" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1252438277010578059" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10050901105043136090" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "18b131db8c64" + } + ] + }, + "cborHex": "9f1b6d8036495683b2b69fbf1b20e695ef702bd5621be26f8aa8c244b8dd1b36d72487f4db96de1b34503f02b91138861b6fcb9d1c7ddc8ee21bbb05c908fbfad9d81bd18b755f12b44df21bad0d8d91a1ee5e15ffffd8669f1b11618dfa2c515a8b9f1b8b7bf94d96ad5e5affff4618b131db8c64ff", + "cborBytes": [ + 159, 27, 109, 128, 54, 73, 86, 131, 178, 182, 159, 191, 27, 32, 230, 149, 239, 112, 43, 213, 98, 27, 226, 111, + 138, 168, 194, 68, 184, 221, 27, 54, 215, 36, 135, 244, 219, 150, 222, 27, 52, 80, 63, 2, 185, 17, 56, 134, 27, + 111, 203, 157, 28, 125, 220, 142, 226, 27, 187, 5, 201, 8, 251, 250, 217, 216, 27, 209, 139, 117, 95, 18, 180, 77, + 242, 27, 173, 13, 141, 145, 161, 238, 94, 21, 255, 255, 216, 102, 159, 27, 17, 97, 141, 250, 44, 81, 90, 139, 159, + 27, 139, 123, 249, 77, 150, 173, 94, 90, 255, 255, 70, 24, 177, 49, 219, 140, 100, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3923, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11633481833317130533" + } + }, + "cborHex": "1ba1726e172fd3e125", + "cborBytes": [27, 161, 114, 110, 23, 47, 211, 225, 37], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3924, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18077874965019736355" + } + }, + "cborHex": "1bfae1837fffedb923", + "cborBytes": [27, 250, 225, 131, 127, 255, 237, 185, 35], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3925, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15125763252078873434" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10374441191160446476" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85901a7f46b2dd7266" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1443328458187352225" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6641d35ddfb11b" + }, + { + "_tag": "ByteArray", + "bytearray": "5358f1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7953528369416178128" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bd1e98189bcd18b5a1b8ff96b4c164c7e0c4985901a7f46b2dd7266d8669f1b1407bb95ec7828a19f476641d35ddfb11b435358f11b6e609be9920b09d0ffffff", + "cborBytes": [ + 191, 27, 209, 233, 129, 137, 188, 209, 139, 90, 27, 143, 249, 107, 76, 22, 76, 126, 12, 73, 133, 144, 26, 127, 70, + 178, 221, 114, 102, 216, 102, 159, 27, 20, 7, 187, 149, 236, 120, 40, 161, 159, 71, 102, 65, 211, 93, 223, 177, + 27, 67, 83, 88, 241, 27, 110, 96, 155, 233, 146, 11, 9, 208, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3926, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15322716146963488471" + }, + "fields": [] + }, + "cborHex": "d8669f1bd4a5392705e69ed780ff", + "cborBytes": [216, 102, 159, 27, 212, 165, 57, 39, 5, 230, 158, 215, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3927, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f759" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5865631211009348399" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf42f7591b5166e8824ba8132fffff", + "cborBytes": [159, 191, 66, 247, 89, 27, 81, 102, 232, 130, 75, 168, 19, 47, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3928, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c99" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e39782175dd650ced" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a9d181d36" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a51faaf9f03fc0601068c" + } + } + ] + }, + "cborHex": "bf421c99492e39782175dd650ced452a9d181d364b0a51faaf9f03fc0601068cff", + "cborBytes": [ + 191, 66, 28, 153, 73, 46, 57, 120, 33, 117, 221, 101, 12, 237, 69, 42, 157, 24, 29, 54, 75, 10, 81, 250, 175, 159, + 3, 252, 6, 1, 6, 140, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3929, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3811230355577053687" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17205773599976324014" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c31a35bcb61f714a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8118637468648555956" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10974192414184332366" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12119885522122580418" + } + }, + { + "_tag": "ByteArray", + "bytearray": "16" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14402744937173683709" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1647e62c7d947d6535ce2050" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14539370004999406421" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "edb8bb2dc3ea9c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15192506109900716991" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1957ae79ad5e97eb579" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17450361563274270115" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7275126814888609031" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e42d0449a9e8bf88" + }, + { + "_tag": "ByteArray", + "bytearray": "a2ec69f889d6a7fcf9" + } + ] + } + } + ] + }, + "cborHex": "bf1b34e435d0cd5b21f7d8669f1beec72fedd861fbae9f48c31a35bcb61f714a1b70ab31c36af945b4ffff1b984c29db603e5c4e9f1ba8327bab208421c24116ff1bc7e0d4361acb0dfd4c1647e62c7d947d6535ce20501bc9c637fc95f5835547edb8bb2dc3ea9c1bd2d69fd048957bbf4af1957ae79ad5e97eb5791bf22c2362c517d5a39f1b64f6714af95ac50748e42d0449a9e8bf8849a2ec69f889d6a7fcf9ffff", + "cborBytes": [ + 191, 27, 52, 228, 53, 208, 205, 91, 33, 247, 216, 102, 159, 27, 238, 199, 47, 237, 216, 97, 251, 174, 159, 72, + 195, 26, 53, 188, 182, 31, 113, 74, 27, 112, 171, 49, 195, 106, 249, 69, 180, 255, 255, 27, 152, 76, 41, 219, 96, + 62, 92, 78, 159, 27, 168, 50, 123, 171, 32, 132, 33, 194, 65, 22, 255, 27, 199, 224, 212, 54, 26, 203, 13, 253, + 76, 22, 71, 230, 44, 125, 148, 125, 101, 53, 206, 32, 80, 27, 201, 198, 55, 252, 149, 245, 131, 85, 71, 237, 184, + 187, 45, 195, 234, 156, 27, 210, 214, 159, 208, 72, 149, 123, 191, 74, 241, 149, 122, 231, 154, 213, 233, 126, + 181, 121, 27, 242, 44, 35, 98, 197, 23, 213, 163, 159, 27, 100, 246, 113, 74, 249, 90, 197, 7, 72, 228, 45, 4, 73, + 169, 232, 191, 136, 73, 162, 236, 105, 248, 137, 214, 167, 252, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3930, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0705dc552a050552f91a03" + }, + { + "_tag": "ByteArray", + "bytearray": "3ea020" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2934757219700536743" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b6" + }, + { + "_tag": "ByteArray", + "bytearray": "4f68815a6b2ed48b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1597789778255307065" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3490622360790490611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "65" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7903997313232243105" + } + }, + { + "_tag": "ByteArray", + "bytearray": "477e" + } + ] + } + ] + } + ] + }, + "cborHex": "d9050c9f4b0705dc552a050552f91a03433ea020d905009f80a0d8669f1b28ba5a246e4375a79f41b6484f68815a6b2ed48b1b162c7d567ea86139ffffd8669f1b30712e8b03f3ddf39f41651b6db0a3ade0d989a142477effffffff", + "cborBytes": [ + 217, 5, 12, 159, 75, 7, 5, 220, 85, 42, 5, 5, 82, 249, 26, 3, 67, 62, 160, 32, 217, 5, 0, 159, 128, 160, 216, 102, + 159, 27, 40, 186, 90, 36, 110, 67, 117, 167, 159, 65, 182, 72, 79, 104, 129, 90, 107, 46, 212, 139, 27, 22, 44, + 125, 86, 126, 168, 97, 57, 255, 255, 216, 102, 159, 27, 48, 113, 46, 139, 3, 243, 221, 243, 159, 65, 101, 27, 109, + 176, 163, 173, 224, 217, 137, 161, 66, 71, 126, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3931, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd653358c1483dddfe240468" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f70d675d5578f" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8444751218080049260" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14509151900830367373" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14436104564936439757" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1ab7d0b74d9bec2b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7633764556237289909" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8928693299081072908" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18226341192789384138" + } + } + ] + }, + "cborHex": "9fbf4ccd653358c1483dddfe240468478f70d675d5578fff9fd8669f1b7531c87d9a35686c9f41011bc95adcc7f12d7e8d1bc857589db56e77cd481ab7d0b74d9bec2bffff1b69f0946b217db9b5a0ff1b7be9173fd023510c1bfcf0f8bf5f47dbcaff", + "cborBytes": [ + 159, 191, 76, 205, 101, 51, 88, 193, 72, 61, 221, 254, 36, 4, 104, 71, 143, 112, 214, 117, 213, 87, 143, 255, 159, + 216, 102, 159, 27, 117, 49, 200, 125, 154, 53, 104, 108, 159, 65, 1, 27, 201, 90, 220, 199, 241, 45, 126, 141, 27, + 200, 87, 88, 157, 181, 110, 119, 205, 72, 26, 183, 208, 183, 77, 155, 236, 43, 255, 255, 27, 105, 240, 148, 107, + 33, 125, 185, 181, 160, 255, 27, 123, 233, 23, 63, 208, 35, 81, 12, 27, 252, 240, 248, 191, 95, 71, 219, 202, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3932, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17890532247950031418" + }, + "fields": [] + }, + "cborHex": "d8669f1bf847f04a99bb7a3a80ff", + "cborBytes": [216, 102, 159, 27, 248, 71, 240, 74, 153, 187, 122, 58, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3933, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2929896757682764337" + } + }, + "cborHex": "1b28a91593ee3ffa31", + "cborBytes": [27, 40, 169, 21, 147, 238, 63, 250, 49], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3934, + "sample": { + "_tag": "ByteArray", + "bytearray": "186028219f" + }, + "cborHex": "45186028219f", + "cborBytes": [69, 24, 96, 40, 33, 159], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3935, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15672128794830613953" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "579664038288439745" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5543fb56ecaef56d80" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bd97e961aba0cadc19fd8669f1b080b615f234039c19f495543fb56ecaef56d80ffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 217, 126, 150, 26, 186, 12, 173, 193, 159, 216, 102, 159, 27, 8, 11, 97, 95, 35, 64, 57, + 193, 159, 73, 85, 67, 251, 86, 236, 174, 245, 109, 128, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3936, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10466354510638061489" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14004405343303344423" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1427630179189303828" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15221696302161865507" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4863090238551939841" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b913ff5f96be397b180ff9f1bc259a476122da127ffd8669f1b13cff6158534aa1480ff1bd33e5423893c2b23d8669f1b437d2ace638edb0180ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 145, 63, 245, 249, 107, 227, 151, 177, 128, 255, 159, 27, 194, 89, 164, 118, 18, 45, 161, + 39, 255, 216, 102, 159, 27, 19, 207, 246, 21, 133, 52, 170, 20, 128, 255, 27, 211, 62, 84, 35, 137, 60, 43, 35, + 216, 102, 159, 27, 67, 125, 42, 206, 99, 142, 219, 1, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3937, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5801254370278982412" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16605290203381974078" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6806352258818915942" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4fdda25d7a58f7cf4f" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b5082321d0829430c1be671d7761cdb443e1b5e7505515b143e66494fdda25d7a58f7cf4fffff", + "cborBytes": [ + 159, 191, 27, 80, 130, 50, 29, 8, 41, 67, 12, 27, 230, 113, 215, 118, 28, 219, 68, 62, 27, 94, 117, 5, 81, 91, 20, + 62, 102, 73, 79, 221, 162, 93, 122, 88, 247, 207, 79, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3938, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10551439497428861755" + } + }, + "cborHex": "1b926e3e51a946033b", + "cborBytes": [27, 146, 110, 62, 81, 169, 70, 3, 59], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3939, + "sample": { + "_tag": "ByteArray", + "bytearray": "0607d806b8fd" + }, + "cborHex": "460607d806b8fd", + "cborBytes": [70, 6, 7, 216, 6, 184, 253], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3940, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1258379885094123268" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6005517679487041949" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "511133966608152523" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b09dd523b311f42666512" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10267520736825040825" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "268376f521fba06d2dab" + } + ] + }, + "cborHex": "d8669f1bfffffffffffffffb9f1b1176a9d69b8837041b5357e282ca27419d9f1b0717e9a27050b7cbffbf4b9b09dd523b311f426665121b8e7d8fb5e269dfb9ff4a268376f521fba06d2dabffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 27, 17, 118, 169, 214, 155, 136, 55, 4, 27, 83, + 87, 226, 130, 202, 39, 65, 157, 159, 27, 7, 23, 233, 162, 112, 80, 183, 203, 255, 191, 75, 155, 9, 221, 82, 59, + 49, 31, 66, 102, 101, 18, 27, 142, 125, 143, 181, 226, 105, 223, 185, 255, 74, 38, 131, 118, 245, 33, 251, 160, + 109, 45, 171, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3941, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9910090694167653220" + } + }, + "cborHex": "1b8987b6fafdc46b64", + "cborBytes": [27, 137, 135, 182, 250, 253, 196, 107, 100], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3942, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "914cda45c0d743b45aad" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15359237439860148200" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4173049224038701450" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5579507505737089849" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6f" + }, + { + "_tag": "ByteArray", + "bytearray": "4ff908ec7793164acf8ec6ab" + }, + { + "_tag": "ByteArray", + "bytearray": "ff8fc44fad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18393494607995152981" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c5d803289b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8308427107897213177" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14261009519982933659" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3813605758900022451" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1837553540449125330" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10931644256133947209" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "9f069f9f4a914cda45c0d743b45aadff1bd526f91327be87e8d8669f1bffffffffffffffef80ffffd8669f1b39e9a628d50bd98a9fd8669f1b4d6e6483d515c3399f416f4c4ff908ec7793164acf8ec6ab45ff8fc44fad1bff42d1e49f9d2a55ffff45c5d803289b1b734d766f487080f9d8669f1bc5e94899b10bf69b9f1b34eca63b7c9eacb31b19804d35923b43d21b97b5008859cd9f49ffffffff41f90eff", + "cborBytes": [ + 159, 6, 159, 159, 74, 145, 76, 218, 69, 192, 215, 67, 180, 90, 173, 255, 27, 213, 38, 249, 19, 39, 190, 135, 232, + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 128, 255, 255, 216, 102, 159, 27, 57, 233, 166, 40, + 213, 11, 217, 138, 159, 216, 102, 159, 27, 77, 110, 100, 131, 213, 21, 195, 57, 159, 65, 111, 76, 79, 249, 8, 236, + 119, 147, 22, 74, 207, 142, 198, 171, 69, 255, 143, 196, 79, 173, 27, 255, 66, 209, 228, 159, 157, 42, 85, 255, + 255, 69, 197, 216, 3, 40, 155, 27, 115, 77, 118, 111, 72, 112, 128, 249, 216, 102, 159, 27, 197, 233, 72, 153, + 177, 11, 246, 155, 159, 27, 52, 236, 166, 59, 124, 158, 172, 179, 27, 25, 128, 77, 53, 146, 59, 67, 210, 27, 151, + 181, 0, 136, 89, 205, 159, 73, 255, 255, 255, 255, 65, 249, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3943, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6326853476671987118" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b57cd7fb746fa9dae9f0800ffffff", + "cborBytes": [159, 216, 102, 159, 27, 87, 205, 127, 183, 70, 250, 157, 174, 159, 8, 0, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3944, + "sample": { + "_tag": "ByteArray", + "bytearray": "01f888d8020000e2aa060388" + }, + "cborHex": "4c01f888d8020000e2aa060388", + "cborBytes": [76, 1, 248, 136, 216, 2, 0, 0, 226, 170, 6, 3, 136], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3945, + "sample": { + "_tag": "ByteArray", + "bytearray": "cd0770" + }, + "cborHex": "43cd0770", + "cborBytes": [67, 205, 7, 112], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3946, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16755747879263476919" + } + }, + "cborHex": "1be8885feba1811cb7", + "cborBytes": [27, 232, 136, 95, 235, 161, 129, 28, 183], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3947, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13961207540416868775" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10795461506284561835" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15138892701196697281" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12484872402185671310" + } + }, + { + "_tag": "ByteArray", + "bytearray": "751f2f60c3" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1917445962760856150" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16845966036226088221" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4400091385473006095" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18380598048354671470" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7635789393669904659" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9027149120352491783" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8456469458499815710" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e05a424cd124497" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17193304237599191887" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5145838296367260937" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3fc0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9472529771930356849" + } + } + ] + }, + "cborHex": "d8669f1bc1c02c49d20d71a79f9f41e89f1b95d12f0b0c7ea5ab1bd21826b3d3953ec11bad432d4d565ad28e45751f2f60c3ffffbf1b1a9c22f1ae5e22561be9c8e4db2f8d1d1d1b3d1043cd6a5ffa0f1bff15008a576b1b6e1b69f7c5ff5563d9131b7d46e04c0d1719071b755b6a2b0fd2491e486e05a424cd1244971bee9ae31c2d51734f1b4769b0aaae926509ff423fc01b83752fa3d4388c71ffff", + "cborBytes": [ + 216, 102, 159, 27, 193, 192, 44, 73, 210, 13, 113, 167, 159, 159, 65, 232, 159, 27, 149, 209, 47, 11, 12, 126, + 165, 171, 27, 210, 24, 38, 179, 211, 149, 62, 193, 27, 173, 67, 45, 77, 86, 90, 210, 142, 69, 117, 31, 47, 96, + 195, 255, 255, 191, 27, 26, 156, 34, 241, 174, 94, 34, 86, 27, 233, 200, 228, 219, 47, 141, 29, 29, 27, 61, 16, + 67, 205, 106, 95, 250, 15, 27, 255, 21, 0, 138, 87, 107, 27, 110, 27, 105, 247, 197, 255, 85, 99, 217, 19, 27, + 125, 70, 224, 76, 13, 23, 25, 7, 27, 117, 91, 106, 43, 15, 210, 73, 30, 72, 110, 5, 164, 36, 205, 18, 68, 151, 27, + 238, 154, 227, 28, 45, 81, 115, 79, 27, 71, 105, 176, 170, 174, 146, 101, 9, 255, 66, 63, 192, 27, 131, 117, 47, + 163, 212, 56, 140, 113, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3948, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12237481098642285464" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "24149e2320" + }, + { + "_tag": "ByteArray", + "bytearray": "6d101a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7695035953697583791" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "98f4e70dde880e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d94c365c9e25150ce95a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62be3e44abed9143" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4918384793083057463" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "451335" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4dbc45c8b0ce70f8a3b2cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d29677548e" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41771b037483242b77e00415" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ea65543ba22590d30" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1309414025310633718" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76040d8fdeb4a862c91f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4832594419112005425" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16649579607624390579" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9360230247064202895" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11528860127401451228" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14611860397408876290" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01454be092fb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17314693314702506128" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "509095be5114" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18056486420931101214" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee7ef7e253" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba9d44438e62163989f4524149e2320436d101ad8669f1b6aca426e0a00f2af9f4798f4e70dde880effffbf4ad94c365c9e25150ce95a4862be3e44abed9143ffffffd8669f1b44419ce91c6615379f43451335bf4b4dbc45c8b0ce70f8a3b2cf45d29677548effbf4c41771b037483242b77e00415498ea65543ba22590d30ffffffbf1b122bf91e528dfef64a76040d8fdeb4a862c91f1b4310d3051eb4cf311be70f30709c0a17b31b81e637d12c20ee8f1b9ffebd340eed9edc1bcac7c19d4f2777024601454be092fb1bf04a25d521ac789046509095be51141bfa9586bb8343421e45ee7ef7e253ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 169, 212, 68, 56, 230, 33, 99, 152, 159, 69, 36, 20, 158, 35, 32, 67, 109, 16, 26, 216, + 102, 159, 27, 106, 202, 66, 110, 10, 0, 242, 175, 159, 71, 152, 244, 231, 13, 222, 136, 14, 255, 255, 191, 74, + 217, 76, 54, 92, 158, 37, 21, 12, 233, 90, 72, 98, 190, 62, 68, 171, 237, 145, 67, 255, 255, 255, 216, 102, 159, + 27, 68, 65, 156, 233, 28, 102, 21, 55, 159, 67, 69, 19, 53, 191, 75, 77, 188, 69, 200, 176, 206, 112, 248, 163, + 178, 207, 69, 210, 150, 119, 84, 142, 255, 191, 76, 65, 119, 27, 3, 116, 131, 36, 43, 119, 224, 4, 21, 73, 142, + 166, 85, 67, 186, 34, 89, 13, 48, 255, 255, 255, 191, 27, 18, 43, 249, 30, 82, 141, 254, 246, 74, 118, 4, 13, 143, + 222, 180, 168, 98, 201, 31, 27, 67, 16, 211, 5, 30, 180, 207, 49, 27, 231, 15, 48, 112, 156, 10, 23, 179, 27, 129, + 230, 55, 209, 44, 32, 238, 143, 27, 159, 254, 189, 52, 14, 237, 158, 220, 27, 202, 199, 193, 157, 79, 39, 119, 2, + 70, 1, 69, 75, 224, 146, 251, 27, 240, 74, 37, 213, 33, 172, 120, 144, 70, 80, 144, 149, 190, 81, 20, 27, 250, + 149, 134, 187, 131, 67, 66, 30, 69, 238, 126, 247, 226, 83, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3949, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "135510" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "454222751514573203" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e969b74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72ee4166ce91c30f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f37555bebdf9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "32958a5e418d3dacd2487c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6174605363311351816" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf43135510d8669f1b064db92f98ed399380ff443e969b744872ee4166ce91c30f46f37555bebdf9bf4b32958a5e418d3dacd2487c1b55b09add0c651808ffff", + "cborBytes": [ + 191, 67, 19, 85, 16, 216, 102, 159, 27, 6, 77, 185, 47, 152, 237, 57, 147, 128, 255, 68, 62, 150, 155, 116, 72, + 114, 238, 65, 102, 206, 145, 195, 15, 70, 243, 117, 85, 190, 189, 249, 191, 75, 50, 149, 138, 94, 65, 141, 61, + 172, 210, 72, 124, 27, 85, 176, 154, 221, 12, 101, 24, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3950, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd660244" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ae2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "296094524925101165" + } + }, + { + "_tag": "ByteArray", + "bytearray": "770feeebfbdf25" + } + ] + } + } + ] + }, + "cborHex": "bf44cd660244424ae241cfd87a9f1b041bf066d219446d47770feeebfbdf25ffff", + "cborBytes": [ + 191, 68, 205, 102, 2, 68, 66, 74, 226, 65, 207, 216, 122, 159, 27, 4, 27, 240, 102, 210, 25, 68, 109, 71, 119, 15, + 238, 235, 251, 223, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3951, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8271470151095923175" + } + }, + "cborHex": "1b72ca2a473e51b1e7", + "cborBytes": [27, 114, 202, 42, 71, 62, 81, 177, 231], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3952, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4933631831777631430" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25320ce62fdab8" + } + } + ] + }, + "cborHex": "bf1b4477c802f1aa5cc64725320ce62fdab8ff", + "cborBytes": [191, 27, 68, 119, 200, 2, 241, 170, 92, 198, 71, 37, 50, 12, 230, 47, 218, 184, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3953, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0781051e66ccfb" + } + ] + }, + "cborHex": "9f470781051e66ccfbff", + "cborBytes": [159, 71, 7, 129, 5, 30, 102, 204, 251, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3954, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8c" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f418c80ff", + "cborBytes": [159, 65, 140, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3955, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13209749965139862398" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16119902874044041495" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13213280672447602681" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fafdc14a81b0010405" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7af8a772" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7356094935312739735" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "31705608974368326" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03" + } + ] + }, + "cborHex": "d8669f1bffffffffffffffee9f1bb752759ae3e3e37e41f9d8669f1bdfb56641cd3189179fd8669f1bb75f00c3bec61ff99f49fafdc14a81b0010405ffff8010447af8a7721b6616195e915dad97ffff1b0070a415584dfe464103ffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 27, 183, 82, 117, 154, 227, 227, 227, 126, 65, + 249, 216, 102, 159, 27, 223, 181, 102, 65, 205, 49, 137, 23, 159, 216, 102, 159, 27, 183, 95, 0, 195, 190, 198, + 31, 249, 159, 73, 250, 253, 193, 74, 129, 176, 1, 4, 5, 255, 255, 128, 16, 68, 122, 248, 167, 114, 27, 102, 22, + 25, 94, 145, 93, 173, 151, 255, 255, 27, 0, 112, 164, 21, 88, 77, 254, 70, 65, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3956, + "sample": { + "_tag": "ByteArray", + "bytearray": "a0499f" + }, + "cborHex": "43a0499f", + "cborBytes": [67, 160, 73, 159], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3957, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05588c9a31070506f8c6fa64" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "372048246761461236" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5047" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c0c500dfb0" + }, + { + "_tag": "ByteArray", + "bytearray": "1092fb" + }, + { + "_tag": "ByteArray", + "bytearray": "b276ccccd62a8242e485cafb" + }, + { + "_tag": "ByteArray", + "bytearray": "0d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15180888959091844456" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0e26" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8737371887052181453" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15865901660335074305" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14674005743777747005" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18169730324871131555" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "06fbfd52" + } + ] + }, + "cborHex": "d905019f9f4c05588c9a31070506f8c6fa64ffd8669f1b0529c7e8c38615f49f4250479f45c0c500dfb0431092fb4cb276ccccd62a8242e485cafb410dff1bd2ad5a139551a568420e26d8669f1b794161704e3acfcd9f1bdc2f017fb98d6c011bcba48a7a4dea103d1bfc27d9768e9631a3ffffffff4406fbfd52ff", + "cborBytes": [ + 217, 5, 1, 159, 159, 76, 5, 88, 140, 154, 49, 7, 5, 6, 248, 198, 250, 100, 255, 216, 102, 159, 27, 5, 41, 199, + 232, 195, 134, 21, 244, 159, 66, 80, 71, 159, 69, 192, 197, 0, 223, 176, 67, 16, 146, 251, 76, 178, 118, 204, 204, + 214, 42, 130, 66, 228, 133, 202, 251, 65, 13, 255, 27, 210, 173, 90, 19, 149, 81, 165, 104, 66, 14, 38, 216, 102, + 159, 27, 121, 65, 97, 112, 78, 58, 207, 205, 159, 27, 220, 47, 1, 127, 185, 141, 108, 1, 27, 203, 164, 138, 122, + 77, 234, 16, 61, 27, 252, 39, 217, 118, 142, 150, 49, 163, 255, 255, 255, 255, 68, 6, 251, 253, 82, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3958, + "sample": { + "_tag": "ByteArray", + "bytearray": "05364856ebc66b87e0" + }, + "cborHex": "4905364856ebc66b87e0", + "cborBytes": [73, 5, 54, 72, 86, 235, 198, 107, 135, 224], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3959, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9460440581892520883" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c3810b" + }, + { + "_tag": "ByteArray", + "bytearray": "24562b70623166" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14965965720503325903" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12087311432503184303" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6587174269325476486" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b834a3c95ee64bbb39f43c3810b4724562b70623166ff1bcfb1ca879b4614cfd8669f1ba7bec1b4dfdecbaf9f1b5b6a5818fcbd0286ffffff", + "cborBytes": [ + 191, 27, 131, 74, 60, 149, 238, 100, 187, 179, 159, 67, 195, 129, 11, 71, 36, 86, 43, 112, 98, 49, 102, 255, 27, + 207, 177, 202, 135, 155, 70, 20, 207, 216, 102, 159, 27, 167, 190, 193, 180, 223, 222, 203, 175, 159, 27, 91, 106, + 88, 24, 252, 189, 2, 134, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3960, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffdf070002e20e0305feffff" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00668a3bedb9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + } + } + ] + }, + "cborHex": "bf4cffdf070002e20e0305feffffd8669f1bfffffffffffffff59f4600668a3bedb912ffffff", + "cborBytes": [ + 191, 76, 255, 223, 7, 0, 2, 226, 14, 3, 5, 254, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 245, 159, 70, 0, 102, 138, 59, 237, 185, 18, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3961, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4374399514313516058" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4998526802790838365" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58fb49b0f8610f8fbfeffaa6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5152867944881446600" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11110815287603878641" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8387258795214903863" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c55dfc572c268fe104" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9516672094169954170" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3413948421756793291" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14892105415880302781" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d30e181a8f2ce2d0434" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15744544123969825694" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10102203350570687478" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d63c66a8ec2a7aa5465" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3cb4fd2e844c641abf1b455e55a4d09df05d4c58fb49b0f8610f8fbfeffaa61b4782aa184527dec81b9a318ba2ee9bdaf11b7465876fc80e1a3749c55dfc572c268fe1041b841202d920df777a1b2f60c8007051b1cb1bceab62f9573760bd4a3d30e181a8f2ce2d04341bda7fdb766baf6b9e1b8c323c6c6f86dbf6ff1bfffffffffffffff8bf4a0d63c66a8ec2a7aa54654130ffff", + "cborBytes": [ + 191, 27, 60, 180, 253, 46, 132, 76, 100, 26, 191, 27, 69, 94, 85, 164, 208, 157, 240, 93, 76, 88, 251, 73, 176, + 248, 97, 15, 143, 191, 239, 250, 166, 27, 71, 130, 170, 24, 69, 39, 222, 200, 27, 154, 49, 139, 162, 238, 155, + 218, 241, 27, 116, 101, 135, 111, 200, 14, 26, 55, 73, 197, 93, 252, 87, 44, 38, 143, 225, 4, 27, 132, 18, 2, 217, + 32, 223, 119, 122, 27, 47, 96, 200, 0, 112, 81, 177, 203, 27, 206, 171, 98, 249, 87, 55, 96, 189, 74, 61, 48, 225, + 129, 168, 242, 206, 45, 4, 52, 27, 218, 127, 219, 118, 107, 175, 107, 158, 27, 140, 50, 60, 108, 111, 134, 219, + 246, 255, 27, 255, 255, 255, 255, 255, 255, 255, 248, 191, 74, 13, 99, 198, 106, 142, 194, 167, 170, 84, 101, 65, + 48, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3962, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f1106704640f0863d40f30a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f6d0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1214615363638889179" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "57abf6a258e6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aae477240f" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf0f4c5f1106704640f0863d40f30a11410bff42f6d09fd8669f1b10db2e3ce86d8adb9f4657abf6a258e6ffff45aae477240f80ffd9050680ff", + "cborBytes": [ + 159, 191, 15, 76, 95, 17, 6, 112, 70, 64, 240, 134, 61, 64, 243, 10, 17, 65, 11, 255, 66, 246, 208, 159, 216, 102, + 159, 27, 16, 219, 46, 60, 232, 109, 138, 219, 159, 70, 87, 171, 246, 162, 88, 230, 255, 255, 69, 170, 228, 119, + 36, 15, 128, 255, 217, 5, 6, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3963, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13956048330438701961" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9fa3eb1787e11cadb7" + } + ] + }, + "cborHex": "d905069f1bc1add803a3fb7389499fa3eb1787e11cadb7ff", + "cborBytes": [ + 217, 5, 6, 159, 27, 193, 173, 216, 3, 163, 251, 115, 137, 73, 159, 163, 235, 23, 135, 225, 28, 173, 183, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3964, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18361241796810167894" + } + }, + "cborHex": "1bfed03c21d5ecd656", + "cborBytes": [27, 254, 208, 60, 33, 213, 236, 214, 86], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3965, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9e86104f4f97" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13438716842305072782" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8863936054795103808" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "351bd10361efa4a8360802bd" + }, + { + "_tag": "ByteArray", + "bytearray": "33486b" + }, + { + "_tag": "ByteArray", + "bytearray": "c22c20a283ca1a54c8e9875f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7285797195751081415" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14460590933954533194" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1646775178983560756" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e4b15e5b62ed633ca" + } + ] + } + ] + } + ] + }, + "cborHex": "9f469e86104f4f971bba7fe9c446a72e8ed8669f1b7b0306e0f1d6ee409f4c351bd10361efa4a8360802bd4333486b4cc22c20a283ca1a54c8e9875f9f1b651c59f29e47c5c71bc8ae56d6c498174a1b16da854ce03ed634496e4b15e5b62ed633caffffffff", + "cborBytes": [ + 159, 70, 158, 134, 16, 79, 79, 151, 27, 186, 127, 233, 196, 70, 167, 46, 142, 216, 102, 159, 27, 123, 3, 6, 224, + 241, 214, 238, 64, 159, 76, 53, 27, 209, 3, 97, 239, 164, 168, 54, 8, 2, 189, 67, 51, 72, 107, 76, 194, 44, 32, + 162, 131, 202, 26, 84, 200, 233, 135, 95, 159, 27, 101, 28, 89, 242, 158, 71, 197, 199, 27, 200, 174, 86, 214, + 196, 152, 23, 74, 27, 22, 218, 133, 76, 224, 62, 214, 52, 73, 110, 75, 21, 229, 182, 46, 214, 51, 202, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3966, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13824145761503122409" + } + }, + "cborHex": "1bbfd93b539d9d93e9", + "cborBytes": [27, 191, 217, 59, 83, 157, 157, 147, 233], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3967, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1296eb9585871dbc6f5a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14392863426476103184" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12940297068534404075" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6400050790803871126" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15743113643977371660" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1024520309679841211" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8047042088429746297" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8213124544440781562" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5383433619037939354" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ffbf3590" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "41904ce3b0331824" + }, + { + "_tag": "ByteArray", + "bytearray": "d170a361" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5082198978721707" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14080447441367566538" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18103502577207180314" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12230627782407429370" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3473624909917059714" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17930683398728653424" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16190037512078121034" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4a1296eb9585871dbc6f5ad905039fd8669f1bc7bdb9079bd1d6109f1bb3952b9f8a0593eb1b58d18c490a529596ffffffd8669f1bda7ac672d7e0700c9fbf1b0e37d3cb23a3dfbb1b6facd624f578f8791b71fae142176f4afa1b4ab5cc5a96a6e69aff9f44ffbf3590ff9f4841904ce3b033182444d170a361ffd8669f1b00120e3ba8cdf7ab9f1bc367cc58b54588ca1bfb3c8fad70cd7c1affffd8669f1ba9bbeb2ade6b1cfa9f1b3034cb73968dfa821bf8d6958ce1371a701be0ae9156b7aa584affffffffff", + "cborBytes": [ + 159, 74, 18, 150, 235, 149, 133, 135, 29, 188, 111, 90, 217, 5, 3, 159, 216, 102, 159, 27, 199, 189, 185, 7, 155, + 209, 214, 16, 159, 27, 179, 149, 43, 159, 138, 5, 147, 235, 27, 88, 209, 140, 73, 10, 82, 149, 150, 255, 255, 255, + 216, 102, 159, 27, 218, 122, 198, 114, 215, 224, 112, 12, 159, 191, 27, 14, 55, 211, 203, 35, 163, 223, 187, 27, + 111, 172, 214, 36, 245, 120, 248, 121, 27, 113, 250, 225, 66, 23, 111, 74, 250, 27, 74, 181, 204, 90, 150, 166, + 230, 154, 255, 159, 68, 255, 191, 53, 144, 255, 159, 72, 65, 144, 76, 227, 176, 51, 24, 36, 68, 209, 112, 163, 97, + 255, 216, 102, 159, 27, 0, 18, 14, 59, 168, 205, 247, 171, 159, 27, 195, 103, 204, 88, 181, 69, 136, 202, 27, 251, + 60, 143, 173, 112, 205, 124, 26, 255, 255, 216, 102, 159, 27, 169, 187, 235, 42, 222, 107, 28, 250, 159, 27, 48, + 52, 203, 115, 150, 141, 250, 130, 27, 248, 214, 149, 140, 225, 55, 26, 112, 27, 224, 174, 145, 86, 183, 170, 88, + 74, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3968, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13280056858963516329" + } + }, + "cborHex": "1bb84c3d5a3b829ba9", + "cborBytes": [27, 184, 76, 61, 90, 59, 130, 155, 169], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3969, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2046068914569575157" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7485810722311339713" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8566477064527462579" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2904" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6995739007672672240" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4051610678821430871" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b7fdc87852035e14d61fbd8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "104272da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bfa8872e319" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10705095043723004958" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4c2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12726119207292589192" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61a27a36bb27de69a4c8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13664751236951842734" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "619515650812485341" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f1" + }, + { + "_tag": "ByteArray", + "bytearray": "9dce222b4f4908b59768" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11911899250826326881" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e44cf9ec1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2848924534151523039" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15689440301789972881" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14890854972300288213" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17cd" + } + ] + } + } + ] + }, + "cborHex": "bf1b1c6518d656e37af5d8669f1b67e2f130bf2d7ec19f1b76e23d80c7b0c0b3422904ffff1b6115db8ffdac5ff0bf1b383a36722f54a6574c4b7fdc87852035e14d61fbd844104272da467bfa8872e319ff1b9490233967e78c1e42a4c21bb09c41fe3ff354884a61a27a36bb27de69a4c81bbda2f2d9de981faed8669f1b0898f633bb791edd9f41f14a9dce222b4f4908b597681ba54f9141b5beb361459e44cf9ec11b278969c501ff2adfffff1bd9bc16d408e389919f1bcea6f1b3c1d160d54217cdffff", + "cborBytes": [ + 191, 27, 28, 101, 24, 214, 86, 227, 122, 245, 216, 102, 159, 27, 103, 226, 241, 48, 191, 45, 126, 193, 159, 27, + 118, 226, 61, 128, 199, 176, 192, 179, 66, 41, 4, 255, 255, 27, 97, 21, 219, 143, 253, 172, 95, 240, 191, 27, 56, + 58, 54, 114, 47, 84, 166, 87, 76, 75, 127, 220, 135, 133, 32, 53, 225, 77, 97, 251, 216, 68, 16, 66, 114, 218, 70, + 123, 250, 136, 114, 227, 25, 255, 27, 148, 144, 35, 57, 103, 231, 140, 30, 66, 164, 194, 27, 176, 156, 65, 254, + 63, 243, 84, 136, 74, 97, 162, 122, 54, 187, 39, 222, 105, 164, 200, 27, 189, 162, 242, 217, 222, 152, 31, 174, + 216, 102, 159, 27, 8, 152, 246, 51, 187, 121, 30, 221, 159, 65, 241, 74, 157, 206, 34, 43, 79, 73, 8, 181, 151, + 104, 27, 165, 79, 145, 65, 181, 190, 179, 97, 69, 158, 68, 207, 158, 193, 27, 39, 137, 105, 197, 1, 255, 42, 223, + 255, 255, 27, 217, 188, 22, 212, 8, 227, 137, 145, 159, 27, 206, 166, 241, 179, 193, 209, 96, 213, 66, 23, 205, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3970, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6769" + } + ] + }, + "cborHex": "9f426769ff", + "cborBytes": [159, 66, 103, 105, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3971, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12982550248250508645" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0acac22f0e92977d72" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10743446987532576300" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54224d1a0792" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3232e75b0d9" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4510634879407349866" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66e170221b045c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10225471223336591225" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4794450979997976446" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10382102662821946842" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6449927f1b13" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75caa85e71028edb715d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82f294f0802a50fde42c73" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17476753501191679007" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "379312774264418140" + } + } + ] + }, + "cborHex": "9fbf1bb42b48aa91a18565490acac22f0e92977d7241061b9518641d2b1ea62c4654224d1a079246a3232e75b0d9ffbf1b3e98fe86428fe06a4766e170221b045c1b8de82be697f4df791b42894fc3a3cd877e1b9014a35d7723a5da466449927f1b134a75caa85e71028edb715d4b82f294f0802a50fde42c73ff1bf289e6b6a9982c1f1b054396f560cc6f5cff", + "cborBytes": [ + 159, 191, 27, 180, 43, 72, 170, 145, 161, 133, 101, 73, 10, 202, 194, 47, 14, 146, 151, 125, 114, 65, 6, 27, 149, + 24, 100, 29, 43, 30, 166, 44, 70, 84, 34, 77, 26, 7, 146, 70, 163, 35, 46, 117, 176, 217, 255, 191, 27, 62, 152, + 254, 134, 66, 143, 224, 106, 71, 102, 225, 112, 34, 27, 4, 92, 27, 141, 232, 43, 230, 151, 244, 223, 121, 27, 66, + 137, 79, 195, 163, 205, 135, 126, 27, 144, 20, 163, 93, 119, 35, 165, 218, 70, 100, 73, 146, 127, 27, 19, 74, 117, + 202, 168, 94, 113, 2, 142, 219, 113, 93, 75, 130, 242, 148, 240, 128, 42, 80, 253, 228, 44, 115, 255, 27, 242, + 137, 230, 182, 169, 152, 44, 31, 27, 5, 67, 150, 245, 96, 204, 111, 92, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3972, + "sample": { + "_tag": "ByteArray", + "bytearray": "81" + }, + "cborHex": "4181", + "cborBytes": [65, 129], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3973, + "sample": { + "_tag": "ByteArray", + "bytearray": "0100" + }, + "cborHex": "420100", + "cborBytes": [66, 1, 0], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3974, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6471049567846123729" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8dfdcc1129cd5f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10482179461485907060" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba9fb6cdc1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10385869756026425175" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18165079963166142995" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b59cdc94bff69c8d1478dfdcc1129cd5f1b91782eaee9c34c74a045ba9fb6cdc1bf1b90220584336d8f571bfc1753fbd9157213ffff", + "cborBytes": [ + 191, 27, 89, 205, 201, 75, 255, 105, 200, 209, 71, 141, 253, 204, 17, 41, 205, 95, 27, 145, 120, 46, 174, 233, + 195, 76, 116, 160, 69, 186, 159, 182, 205, 193, 191, 27, 144, 34, 5, 132, 51, 109, 143, 87, 27, 252, 23, 83, 251, + 217, 21, 114, 19, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3975, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9462739075379031363" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9430792970447620995" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4506448199680637347" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a8" + }, + { + "_tag": "ByteArray", + "bytearray": "2eb8feff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9949093433969088505" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13207570136798606385" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "387343138393323604" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15555305927189630268" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6434611160978427785" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bc5ba4feeb" + } + ] + } + ] + }, + "cborHex": "d87c9f80d8669f1b8352670da62ced439f1b82e0e83d79c80b83d8669f1b3e8a1ec2eca9b9a39f41a8442eb8feff1b8a1247c400e617f9ffffd8669f1bb74ab7100df0343180ffffff1b05601e883a1e78549f1bd7df8c5342aa8d3c1b594c54c245e20f8945bc5ba4feebffff", + "cborBytes": [ + 216, 124, 159, 128, 216, 102, 159, 27, 131, 82, 103, 13, 166, 44, 237, 67, 159, 27, 130, 224, 232, 61, 121, 200, + 11, 131, 216, 102, 159, 27, 62, 138, 30, 194, 236, 169, 185, 163, 159, 65, 168, 68, 46, 184, 254, 255, 27, 138, + 18, 71, 196, 0, 230, 23, 249, 255, 255, 216, 102, 159, 27, 183, 74, 183, 16, 13, 240, 52, 49, 128, 255, 255, 255, + 27, 5, 96, 30, 136, 58, 30, 120, 84, 159, 27, 215, 223, 140, 83, 66, 170, 141, 60, 27, 89, 76, 84, 194, 69, 226, + 15, 137, 69, 188, 91, 164, 254, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3976, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8097580816364201015" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3603671944121055959" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07d2eca4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6874985300429960797" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "635e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9144144297836199633" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2983518202070305867" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13302983356546258704" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12747231960484735951" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13786620727351484435" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4982064960289967259" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14942321762345689403" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37be7bce64b658bb" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4fd704" + } + ] + } + ] + }, + "cborHex": "d8669f1b706062d98367e4379fbf1b3202d08a44607ad74407d2eca41b5f68dab49c28f65d42635e1b7ee686ca8770bed11b296795ff57500c4b1bb89db0e16bdf97101bb0e743ee2a32ebcf1bbf53ea81c2d2a0131b4523d9af6e010c9b1bcf5dca799c34213b4837be7bce64b658bbffd9050c9f434fd704ffffff", + "cborBytes": [ + 216, 102, 159, 27, 112, 96, 98, 217, 131, 103, 228, 55, 159, 191, 27, 50, 2, 208, 138, 68, 96, 122, 215, 68, 7, + 210, 236, 164, 27, 95, 104, 218, 180, 156, 40, 246, 93, 66, 99, 94, 27, 126, 230, 134, 202, 135, 112, 190, 209, + 27, 41, 103, 149, 255, 87, 80, 12, 75, 27, 184, 157, 176, 225, 107, 223, 151, 16, 27, 176, 231, 67, 238, 42, 50, + 235, 207, 27, 191, 83, 234, 129, 194, 210, 160, 19, 27, 69, 35, 217, 175, 110, 1, 12, 155, 27, 207, 93, 202, 121, + 156, 52, 33, 59, 72, 55, 190, 123, 206, 100, 182, 88, 187, 255, 217, 5, 12, 159, 67, 79, 215, 4, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3977, + "sample": { + "_tag": "ByteArray", + "bytearray": "fe59abe80b" + }, + "cborHex": "45fe59abe80b", + "cborBytes": [69, 254, 89, 171, 232, 11], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3978, + "sample": { + "_tag": "ByteArray", + "bytearray": "65bca587e5c811" + }, + "cborHex": "4765bca587e5c811", + "cborBytes": [71, 101, 188, 165, 135, 229, 200, 17], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3979, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16835701247671330315" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3498419776796665717" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11553323904659932075" + } + }, + { + "_tag": "ByteArray", + "bytearray": "53693b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3797454325184726388" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15384999568756574571" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4d12b5f0bb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12055071537376644757" + } + } + ] + }, + "cborHex": "d8669f1be9a46d15dc0ce60b9f9fd8669f1b308ce240672aa7759f1ba055a6e11048c3ab4353693b1b34b34496c76805741bd5827f983546096b41fcffffff454d12b5f0bb1ba74c37b15741ce95ffff", + "cborBytes": [ + 216, 102, 159, 27, 233, 164, 109, 21, 220, 12, 230, 11, 159, 159, 216, 102, 159, 27, 48, 140, 226, 64, 103, 42, + 167, 117, 159, 27, 160, 85, 166, 225, 16, 72, 195, 171, 67, 83, 105, 59, 27, 52, 179, 68, 150, 199, 104, 5, 116, + 27, 213, 130, 127, 152, 53, 70, 9, 107, 65, 252, 255, 255, 255, 69, 77, 18, 181, 240, 187, 27, 167, 76, 55, 177, + 87, 65, 206, 149, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3980, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14817544805200473987" + } + }, + "cborHex": "1bcda27e7e5d68af83", + "cborBytes": [27, 205, 162, 126, 126, 93, 104, 175, 131], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3981, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "49dc30528c499ae9ce16" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8875888528648341327" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4093076509041035965" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14070127448502281047" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12988467782039880855" + } + } + } + ] + } + ] + }, + "cborHex": "9f4a49dc30528c499ae9ce16bf1b7b2d7d97200c874f1b38cd87661fe30abd1bc343225e2073a3571bb4404ea1c517c497ffff", + "cborBytes": [ + 159, 74, 73, 220, 48, 82, 140, 73, 154, 233, 206, 22, 191, 27, 123, 45, 125, 151, 32, 12, 135, 79, 27, 56, 205, + 135, 102, 31, 227, 10, 189, 27, 195, 67, 34, 94, 32, 115, 163, 87, 27, 180, 64, 78, 161, 197, 23, 196, 151, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3982, + "sample": { + "_tag": "ByteArray", + "bytearray": "90e9a5c00700a5162c2fdb80" + }, + "cborHex": "4c90e9a5c00700a5162c2fdb80", + "cborBytes": [76, 144, 233, 165, 192, 7, 0, 165, 22, 44, 47, 219, 128], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3983, + "sample": { + "_tag": "ByteArray", + "bytearray": "e7279ea29890736021b8bc43" + }, + "cborHex": "4ce7279ea29890736021b8bc43", + "cborBytes": [76, 231, 39, 158, 162, 152, 144, 115, 96, 33, 184, 188, 67], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3984, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17447002367633753059" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c63ce5a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84040201" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a85423" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "719806660845406240" + } + } + } + ] + }, + "cborHex": "bf4121d8669f1bf2203437163583e380ff443c63ce5a448404020143a854231b09fd445826a68820ff", + "cborBytes": [ + 191, 65, 33, 216, 102, 159, 27, 242, 32, 52, 55, 22, 53, 131, 227, 128, 255, 68, 60, 99, 206, 90, 68, 132, 4, 2, + 1, 67, 168, 84, 35, 27, 9, 253, 68, 88, 38, 166, 136, 32, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3985, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15882824631912600542" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1593958904857513937" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4164f03c2945b93" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2731928179468309167" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17941543941649669114" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7263314994245755487" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17484552994787977274" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7775192925093403874" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4111441566415402961" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11015447109446293295" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11261862077503346617" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18411864416565815321" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d6518db2f84d338d0cdce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "603929022266193712" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "722f568709aee6df3ffa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0bf0a337e8df9dfb6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a83e2191a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1069989316378887870" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3992ba2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12901856658635033774" + } + } + } + ] + } + ] + }, + "cborHex": "d8669f1bffffffffffffffff9f1bdc6b20da16f993debf1b161ee12dc69a4fd148b4164f03c2945b931b25e9c234711692af1bf8fd2b2814171bfa1b64cc7a812bc9625f1bf2a59c4fc6d4683a1b6be708c548529ce21b390ec65240f737d11b98debac8a0a6572f1b9c4a2be43f0797b9ff1bff841522fa0f6819bf4b6d6518db2f84d338d0cdce1b0861963ef9b9b7304a722f568709aee6df3ffa49e0bf0a337e8df9dfb6459a83e2191a1b0ed95d9d3c3a06be44f3992ba21bb30c9a4628f30caeffffff", + "cborBytes": [ + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 27, 220, 107, 32, 218, 22, 249, 147, 222, 191, 27, + 22, 30, 225, 45, 198, 154, 79, 209, 72, 180, 22, 79, 3, 194, 148, 91, 147, 27, 37, 233, 194, 52, 113, 22, 146, + 175, 27, 248, 253, 43, 40, 20, 23, 27, 250, 27, 100, 204, 122, 129, 43, 201, 98, 95, 27, 242, 165, 156, 79, 198, + 212, 104, 58, 27, 107, 231, 8, 197, 72, 82, 156, 226, 27, 57, 14, 198, 82, 64, 247, 55, 209, 27, 152, 222, 186, + 200, 160, 166, 87, 47, 27, 156, 74, 43, 228, 63, 7, 151, 185, 255, 27, 255, 132, 21, 34, 250, 15, 104, 25, 191, + 75, 109, 101, 24, 219, 47, 132, 211, 56, 208, 205, 206, 27, 8, 97, 150, 62, 249, 185, 183, 48, 74, 114, 47, 86, + 135, 9, 174, 230, 223, 63, 250, 73, 224, 191, 10, 51, 126, 141, 249, 223, 182, 69, 154, 131, 226, 25, 26, 27, 14, + 217, 93, 157, 60, 58, 6, 190, 68, 243, 153, 43, 162, 27, 179, 12, 154, 70, 40, 243, 12, 174, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3986, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2574261577321603881" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16492064321948732324" + } + }, + { + "_tag": "ByteArray", + "bytearray": "afed6f95" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3228753727454757722" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "916662303097229381" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10100883888385951384" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + }, + "cborHex": "9f9fa0d8669f1b23b99d43fb30e3299f1be4df951f42a5cba444afed6f951b2cced6689028c35affff1b0cb8a3820b1a1045ff1b8c2d8c6134b6069812ff", + "cborBytes": [ + 159, 159, 160, 216, 102, 159, 27, 35, 185, 157, 67, 251, 48, 227, 41, 159, 27, 228, 223, 149, 31, 66, 165, 203, + 164, 68, 175, 237, 111, 149, 27, 44, 206, 214, 104, 144, 40, 195, 90, 255, 255, 27, 12, 184, 163, 130, 11, 26, 16, + 69, 255, 27, 140, 45, 140, 97, 52, 182, 6, 152, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3987, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "49435783303094145" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10778891606245058107" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7556298075140277111" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a68a90e2eb576f7f56" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16291284140271655014" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90ac0672cc98e368" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d7d636af43e653f75" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3df60c9c9e2675e0f8d87629" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9330aa" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10935461277816682489" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17161558263866245358" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17334751736718489664" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17351359121863354316" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b238219f29e28" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18322025182971106697" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6f53f75" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12427637425006347019" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "d905069fbf1b00afa1953ef95f811b959650ce8ead263b1b68dd5d1079b4437749a68a90e2eb576f7f561be216449c53d8d8664890ac0672cc98e368497d7d636af43e653f754c3df60c9c9e2675e0f8d87629ff439330aa80bf1b97c29017f74d77f91bee2a1a50adeac0ee1bf09168dc70b0f8401bf0cc69309ce627cc475b238219f29e281bfe44e8d464c1158944b6f53f751bac77d664c2da830bffa0ff", + "cborBytes": [ + 217, 5, 6, 159, 191, 27, 0, 175, 161, 149, 62, 249, 95, 129, 27, 149, 150, 80, 206, 142, 173, 38, 59, 27, 104, + 221, 93, 16, 121, 180, 67, 119, 73, 166, 138, 144, 226, 235, 87, 111, 127, 86, 27, 226, 22, 68, 156, 83, 216, 216, + 102, 72, 144, 172, 6, 114, 204, 152, 227, 104, 73, 125, 125, 99, 106, 244, 62, 101, 63, 117, 76, 61, 246, 12, 156, + 158, 38, 117, 224, 248, 216, 118, 41, 255, 67, 147, 48, 170, 128, 191, 27, 151, 194, 144, 23, 247, 77, 119, 249, + 27, 238, 42, 26, 80, 173, 234, 192, 238, 27, 240, 145, 104, 220, 112, 176, 248, 64, 27, 240, 204, 105, 48, 156, + 230, 39, 204, 71, 91, 35, 130, 25, 242, 158, 40, 27, 254, 68, 232, 212, 100, 193, 21, 137, 68, 182, 245, 63, 117, + 27, 172, 119, 214, 100, 194, 218, 131, 11, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3988, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14361761638359063416" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01529d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "055207" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e547a3706f1d7490e2ef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "47379c1df1688725df9bf1a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1188248170768716341" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fa01bc74f3a1e43395b78bf4301529d430552074ae547a3706f1d7490e2ef0affbf4c47379c1df1688725df9bf1a51b107d816a6bad5235ffffff", + "cborBytes": [ + 159, 159, 160, 27, 199, 79, 58, 30, 67, 57, 91, 120, 191, 67, 1, 82, 157, 67, 5, 82, 7, 74, 229, 71, 163, 112, + 111, 29, 116, 144, 226, 239, 10, 255, 191, 76, 71, 55, 156, 29, 241, 104, 135, 37, 223, 155, 241, 165, 27, 16, + 125, 129, 106, 107, 173, 82, 53, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3989, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "792c070200" + } + ] + }, + "cborHex": "9f45792c070200ff", + "cborBytes": [159, 69, 121, 44, 7, 2, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3990, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16830240588012304397" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12931517203066537194" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0dee85bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37672b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72c956a6888099606b5e13f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5be7c953aad7" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1be99106a4f4d5b80d9fbf410d1bb375fa61cfa244ea440dee85bb4337672b4c72c956a6888099606b5e13f8465be7c953aad7ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 233, 145, 6, 164, 244, 213, 184, 13, 159, 191, 65, 13, 27, 179, 117, 250, 97, 207, 162, + 68, 234, 68, 13, 238, 133, 187, 67, 55, 103, 43, 76, 114, 201, 86, 166, 136, 128, 153, 96, 107, 94, 19, 248, 70, + 91, 231, 201, 83, 170, 215, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3991, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4505894889367550337" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0178299f3b00a64b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8160457262131254532" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19c3f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "558e8435471e2e309209" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31309d01af13444941" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9775569568455985340" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de9e976ea70a9e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f39097c69f41" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed5f771286" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57fcda893b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb7a82397423" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "959a8cb3819f6e74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36b9daf0daec07ed76" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2532345583436319895" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b4fc9f2ffb5f09287ba" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12289657686048083516" + } + }, + { + "_tag": "ByteArray", + "bytearray": "699d4adaff" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5116442823368481342" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9130700626595677999" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fa03fd" + } + ] + }, + "cborHex": "d8669f1b3e882787540039819f9fbf480178299f3b00a64b1b713fc4a4da1715044319c3f64a558e8435471e2e3092094931309d01af134449411b87a9ccbab4f008bc47de9e976ea70a9e46f39097c69f4145ed5f7712864557fcda893b46fb7a82397423413affbf48959a8cb3819f6e744936b9daf0daec07ed76ff9f1b2324b2e425404c974a4b4fc9f2ffb5f09287ba1baa8da28d540b8e3c45699d4adaffff9f1b470141a3c8799a3e1b7eb6c3d7e6ac072fffff43fa03fdffff", + "cborBytes": [ + 216, 102, 159, 27, 62, 136, 39, 135, 84, 0, 57, 129, 159, 159, 191, 72, 1, 120, 41, 159, 59, 0, 166, 75, 27, 113, + 63, 196, 164, 218, 23, 21, 4, 67, 25, 195, 246, 74, 85, 142, 132, 53, 71, 30, 46, 48, 146, 9, 73, 49, 48, 157, 1, + 175, 19, 68, 73, 65, 27, 135, 169, 204, 186, 180, 240, 8, 188, 71, 222, 158, 151, 110, 167, 10, 158, 70, 243, 144, + 151, 198, 159, 65, 69, 237, 95, 119, 18, 134, 69, 87, 252, 218, 137, 59, 70, 251, 122, 130, 57, 116, 35, 65, 58, + 255, 191, 72, 149, 154, 140, 179, 129, 159, 110, 116, 73, 54, 185, 218, 240, 218, 236, 7, 237, 118, 255, 159, 27, + 35, 36, 178, 228, 37, 64, 76, 151, 74, 75, 79, 201, 242, 255, 181, 240, 146, 135, 186, 27, 170, 141, 162, 141, 84, + 11, 142, 60, 69, 105, 157, 74, 218, 255, 255, 159, 27, 71, 1, 65, 163, 200, 121, 154, 62, 27, 126, 182, 195, 215, + 230, 172, 7, 47, 255, 255, 67, 250, 3, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3992, + "sample": { + "_tag": "ByteArray", + "bytearray": "5d89" + }, + "cborHex": "425d89", + "cborBytes": [66, 93, 137], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3993, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14879921895317693943" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2767154900934529324" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "540c58" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11917517904499903454" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "59817584812950672" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16663705622253589277" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1721386201476189041" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46ce73fafdd291" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d297a52" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0f51f61201ddf91328d5d25" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d74fbc7c08a5b279c3ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9371029888093559773" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "30668f7b50" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4922442822040222985" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd6dc4e10780a2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4983167784883929515" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "327b87f08171269d62" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfaf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1114500374307589848" + } + } + } + ] + } + ] + }, + "cborHex": "9f80d8669f1bce801a2067f7e5f79fbf1b2666e8b8acaf112c43540c58ff1ba563876476130bdebf1b00d483c6c61904901be7415ff9b01ad31d1b17e397a1443f4b714746ce73fafdd291445d297a524ca0f51f61201ddf91328d5d254ad74fbc7c08a5b279c3ed1b820c96088b629bddff9f4530668f7b50ffffff80bf1b445007aa9ae0fd0947cd6dc4e10780a21b4527c4b2ca2d41ab49327b87f08171269d6242cfaf1b0f77802f80a4ced8ffff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 206, 128, 26, 32, 103, 247, 229, 247, 159, 191, 27, 38, 102, 232, 184, 172, 175, 17, + 44, 67, 84, 12, 88, 255, 27, 165, 99, 135, 100, 118, 19, 11, 222, 191, 27, 0, 212, 131, 198, 198, 25, 4, 144, 27, + 231, 65, 95, 249, 176, 26, 211, 29, 27, 23, 227, 151, 161, 68, 63, 75, 113, 71, 70, 206, 115, 250, 253, 210, 145, + 68, 93, 41, 122, 82, 76, 160, 245, 31, 97, 32, 29, 223, 145, 50, 141, 93, 37, 74, 215, 79, 188, 124, 8, 165, 178, + 121, 195, 237, 27, 130, 12, 150, 8, 139, 98, 155, 221, 255, 159, 69, 48, 102, 143, 123, 80, 255, 255, 255, 128, + 191, 27, 68, 80, 7, 170, 154, 224, 253, 9, 71, 205, 109, 196, 225, 7, 128, 162, 27, 69, 39, 196, 178, 202, 45, 65, + 171, 73, 50, 123, 135, 240, 129, 113, 38, 157, 98, 66, 207, 175, 27, 15, 119, 128, 47, 128, 164, 206, 216, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3994, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf0b80ff", + "cborBytes": [191, 11, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3995, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11981012114695129365" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9289be6b4fb2762cb5" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7546170685572385630" + } + } + ] + }, + "cborHex": "d8669f1ba6451b0a4a0e09159f499289be6b4fb2762cb5801b68b96241d8020b5effff", + "cborBytes": [ + 216, 102, 159, 27, 166, 69, 27, 10, 74, 14, 9, 21, 159, 73, 146, 137, 190, 107, 79, 178, 118, 44, 181, 128, 27, + 104, 185, 98, 65, 216, 2, 11, 94, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3996, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "030000da" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8963201730489775728" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5888682491817887928" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10358608898747245996" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "568582291147107157" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10986018268012074380" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16839316547849654533" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ca9d181a3582662d5be74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22eca694c0" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "10" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41e423d69bfbc6b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85a511b4f1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4188219656473708224" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fee9594fe0cc7deb589f0d" + }, + { + "_tag": "ByteArray", + "bytearray": "3ef50b2e9062" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "466133176062646682" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3087957735279713068" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a88b9c41e260" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4925d3c7aa048cbe085a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dde6ff07effd02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "010101" + } + } + ] + }, + "cborHex": "bf44030000dabf1b7c63b07c1c0276701b51b8cd86d7de08b81b8fc12be94107a5ac1b07e40294d166ab551b98762d6888cfd58c1be9b1452e86ef91054b2ca9d181a3582662d5be744522eca694c0ff4110bf4841e423d69bfbc6b041ef4585a511b4f1414fff4193d8669f1b3a1f8b96616c86c09f4bfee9594fe0cc7deb589f0d463ef50b2e90621b067809a7693d199a1b2adaa13314c45b2cffff46a88b9c41e2604a4925d3c7aa048cbe085a47dde6ff07effd0243010101ff", + "cborBytes": [ + 191, 68, 3, 0, 0, 218, 191, 27, 124, 99, 176, 124, 28, 2, 118, 112, 27, 81, 184, 205, 134, 215, 222, 8, 184, 27, + 143, 193, 43, 233, 65, 7, 165, 172, 27, 7, 228, 2, 148, 209, 102, 171, 85, 27, 152, 118, 45, 104, 136, 207, 213, + 140, 27, 233, 177, 69, 46, 134, 239, 145, 5, 75, 44, 169, 209, 129, 163, 88, 38, 98, 213, 190, 116, 69, 34, 236, + 166, 148, 192, 255, 65, 16, 191, 72, 65, 228, 35, 214, 155, 251, 198, 176, 65, 239, 69, 133, 165, 17, 180, 241, + 65, 79, 255, 65, 147, 216, 102, 159, 27, 58, 31, 139, 150, 97, 108, 134, 192, 159, 75, 254, 233, 89, 79, 224, 204, + 125, 235, 88, 159, 13, 70, 62, 245, 11, 46, 144, 98, 27, 6, 120, 9, 167, 105, 61, 25, 154, 27, 42, 218, 161, 51, + 20, 196, 91, 44, 255, 255, 70, 168, 139, 156, 65, 226, 96, 74, 73, 37, 211, 199, 170, 4, 140, 190, 8, 90, 71, 221, + 230, 255, 7, 239, 253, 2, 67, 1, 1, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3997, + "sample": { + "_tag": "ByteArray", + "bytearray": "fc0605" + }, + "cborHex": "43fc0605", + "cborBytes": [67, 252, 6, 5], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3998, + "sample": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6663235211081355787" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0d3f585b94" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e7db9c06" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7031757770379494696" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17962418198932351421" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd" + } + ] + } + ] + } + ] + }, + "cborHex": "d8669f1b5c78911f0361120b9f450d3f585b949fa01bfffffffffffffff744e7db9c06d8669f1b6195d26fb21005289f1bf947542ed65fe9bd41fdffffffffff", + "cborBytes": [ + 216, 102, 159, 27, 92, 120, 145, 31, 3, 97, 18, 11, 159, 69, 13, 63, 88, 91, 148, 159, 160, 27, 255, 255, 255, + 255, 255, 255, 255, 247, 68, 231, 219, 156, 6, 216, 102, 159, 27, 97, 149, 210, 111, 178, 16, 5, 40, 159, 27, 249, + 71, 84, 46, 214, 95, 233, 189, 65, 253, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + }, + { + "index": 3999, + "sample": { + "_tag": "ByteArray", + "bytearray": "05679cd2fb8a9d53059b7bfb" + }, + "cborHex": "4c05679cd2fb8a9d53059b7bfb", + "cborBytes": [76, 5, 103, 156, 210, 251, 138, 157, 83, 5, 155, 123, 251], + "roundTripSuccess": true, + "metadata": { + "type": "data", + "seed": 12345 + } + } +] diff --git a/packages/evolution/test/golden/integer.golden.json b/packages/evolution/test/golden/integer.golden.json new file mode 100644 index 00000000..e19f0fb1 --- /dev/null +++ b/packages/evolution/test/golden/integer.golden.json @@ -0,0 +1,68002 @@ +[ + { + "index": 0, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4496640685389581286" + } + }, + "cborHex": "1b3e6746e10f370be6", + "cborBytes": [27, 62, 103, 70, 225, 15, 55, 11, 230], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "cborHex": "0f", + "cborBytes": [15], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "281214972417391024" + } + }, + "cborHex": "1b03e713870875b9b0", + "cborBytes": [27, 3, 231, 19, 135, 8, 117, 185, 176], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "cborHex": "1bfffffffffffffff3", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 243], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 4, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "cborHex": "0d", + "cborBytes": [13], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 5, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2177888734595164556" + } + }, + "cborHex": "1b1e396a43e1dea98c", + "cborBytes": [27, 30, 57, 106, 67, 225, 222, 169, 140], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 6, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5799673323721375890" + } + }, + "cborHex": "1b507c9428f1b8c092", + "cborBytes": [27, 80, 124, 148, 40, 241, 184, 192, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 7, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8988946840264575189" + } + }, + "cborHex": "1b7cbf278696d708d5", + "cborBytes": [27, 124, 191, 39, 134, 150, 215, 8, 213], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 8, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "cborHex": "06", + "cborBytes": [6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 9, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1027614762826778035" + } + }, + "cborHex": "1b0e42d22ea83cc5b3", + "cborBytes": [27, 14, 66, 210, 46, 168, 60, 197, 179], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 10, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1004743166660845163" + } + }, + "cborHex": "1b0df1909633521e6b", + "cborBytes": [27, 13, 241, 144, 150, 51, 82, 30, 107], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 11, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "cborHex": "1bfffffffffffffff2", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 12, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "cborHex": "1bfffffffffffffffd", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 253], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 13, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "cborHex": "08", + "cborBytes": [8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 14, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "cborHex": "09", + "cborBytes": [9], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 15, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "cborHex": "0c", + "cborBytes": [12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 16, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "cborHex": "13", + "cborBytes": [19], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 17, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "cborHex": "1bfffffffffffffff9", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 18, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "cborHex": "10", + "cborBytes": [16], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 19, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16049168184825087241" + } + }, + "cborHex": "1bdeba196e95000509", + "cborBytes": [27, 222, 186, 25, 110, 149, 0, 5, 9], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 20, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "cborHex": "1bfffffffffffffffe", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 21, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "cborHex": "12", + "cborBytes": [18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 22, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5696342278913390607" + } + }, + "cborHex": "1b4f0d791f45abf80f", + "cborBytes": [27, 79, 13, 121, 31, 69, 171, 248, 15], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 23, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "cborHex": "0b", + "cborBytes": [11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 24, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "cborHex": "1bffffffffffffffff", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 25, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6649776888681353690" + } + }, + "cborHex": "1b5c48c0d9257451da", + "cborBytes": [27, 92, 72, 192, 217, 37, 116, 81, 218], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 26, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8482919728594778280" + } + }, + "cborHex": "1b75b9628c790b78a8", + "cborBytes": [27, 117, 185, 98, 140, 121, 11, 120, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 27, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2600456191178789015" + } + }, + "cborHex": "1b2416ad20c92d5097", + "cborBytes": [27, 36, 22, 173, 32, 201, 45, 80, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 28, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4688741368617038374" + } + }, + "cborHex": "1b4111c16ec818f226", + "cborBytes": [27, 65, 17, 193, 110, 200, 24, 242, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 29, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3831388631931086364" + } + }, + "cborHex": "1b352bd3a942b8e61c", + "cborBytes": [27, 53, 43, 211, 169, 66, 184, 230, 28], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 30, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16346646299672926970" + } + }, + "cborHex": "1be2daf43388f55afa", + "cborBytes": [27, 226, 218, 244, 51, 136, 245, 90, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 31, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "46001221239445689" + } + }, + "cborHex": "1b00a36dddf33618b9", + "cborBytes": [27, 0, 163, 109, 221, 243, 54, 24, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 32, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "cborHex": "03", + "cborBytes": [3], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 33, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "cborHex": "1bffffffffffffffee", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 238], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 34, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "cborHex": "1bfffffffffffffff0", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 35, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10241589303068314332" + } + }, + "cborHex": "1b8e216f3578d3cadc", + "cborBytes": [27, 142, 33, 111, 53, 120, 211, 202, 220], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 36, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8578597705830281752" + } + }, + "cborHex": "1b770d4d297efeb218", + "cborBytes": [27, 119, 13, 77, 41, 126, 254, 178, 24], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 37, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "cborHex": "1bfffffffffffffff5", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 245], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 38, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11805040132891847358" + } + }, + "cborHex": "1ba3d3ed74803faabe", + "cborBytes": [27, 163, 211, 237, 116, 128, 63, 170, 190], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 39, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "235841768931833421" + } + }, + "cborHex": "1b0345e0d6dc61b64d", + "cborBytes": [27, 3, 69, 224, 214, 220, 97, 182, 77], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 40, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4037029657919630845" + } + }, + "cborHex": "1b38066915b4042dfd", + "cborBytes": [27, 56, 6, 105, 21, 180, 4, 45, 253], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 41, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3685186241402375173" + } + }, + "cborHex": "1b3324695c91f20c05", + "cborBytes": [27, 51, 36, 105, 92, 145, 242, 12, 5], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 42, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11444855278094823940" + } + }, + "cborHex": "1b9ed44b3cec98b204", + "cborBytes": [27, 158, 212, 75, 60, 236, 152, 178, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 43, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10919677485636264971" + } + }, + "cborHex": "1b978a7cd1792e240b", + "cborBytes": [27, 151, 138, 124, 209, 121, 46, 36, 11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 44, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16477550520336674915" + } + }, + "cborHex": "1be4ac04e57d387063", + "cborBytes": [27, 228, 172, 4, 229, 125, 56, 112, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 45, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10195940390852154678" + } + }, + "cborHex": "1b8d7f41c3dbccd536", + "cborBytes": [27, 141, 127, 65, 195, 219, 204, 213, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 46, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "cborHex": "1bffffffffffffffeb", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 235], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 47, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "cborHex": "0e", + "cborBytes": [14], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 48, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12499780310689097422" + } + }, + "cborHex": "1bad7823f7450ba6ce", + "cborBytes": [27, 173, 120, 35, 247, 69, 11, 166, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 49, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11862500904313802952" + } + }, + "cborHex": "1ba4a011b8e55fd0c8", + "cborBytes": [27, 164, 160, 17, 184, 229, 95, 208, 200], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 50, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10085258907193347354" + } + }, + "cborHex": "1b8bf6098ac71a8d1a", + "cborBytes": [27, 139, 246, 9, 138, 199, 26, 141, 26], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 51, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14303766824347751177" + } + }, + "cborHex": "1bc68130246343d309", + "cborBytes": [27, 198, 129, 48, 36, 99, 67, 211, 9], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 52, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4122267262083755760" + } + }, + "cborHex": "1b39353c3bf1b96ef0", + "cborBytes": [27, 57, 53, 60, 59, 241, 185, 110, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 53, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9964730895187105115" + } + }, + "cborHex": "1b8a49d5f429fcd55b", + "cborBytes": [27, 138, 73, 213, 244, 41, 252, 213, 91], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 54, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "cborHex": "02", + "cborBytes": [2], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 55, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2189967812941687774" + } + }, + "cborHex": "1b1e64541f77edabde", + "cborBytes": [27, 30, 100, 84, 31, 119, 237, 171, 222], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 56, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "cborHex": "1bffffffffffffffed", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 237], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 57, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "cborHex": "01", + "cborBytes": [1], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 58, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10884553839004222383" + } + }, + "cborHex": "1b970db40c387603af", + "cborBytes": [27, 151, 13, 180, 12, 56, 118, 3, 175], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 59, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16990724915483547805" + } + }, + "cborHex": "1bebcb2e4a37c6989d", + "cborBytes": [27, 235, 203, 46, 74, 55, 198, 152, 157], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 60, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7777007859613356500" + } + }, + "cborHex": "1b6bed7b71a7acd1d4", + "cborBytes": [27, 107, 237, 123, 113, 167, 172, 209, 212], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 61, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "cborHex": "11", + "cborBytes": [17], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 62, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8642534375753969278" + } + }, + "cborHex": "1b77f0733981eaee7e", + "cborBytes": [27, 119, 240, 115, 57, 129, 234, 238, 126], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 63, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13889620943365370589" + } + }, + "cborHex": "1bc0c1d8a85a1e72dd", + "cborBytes": [27, 192, 193, 216, 168, 90, 30, 114, 221], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 64, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "cborHex": "04", + "cborBytes": [4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 65, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1884770380770008070" + } + }, + "cborHex": "1b1a280cace4f95c06", + "cborBytes": [27, 26, 40, 12, 172, 228, 249, 92, 6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 66, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "cborHex": "0a", + "cborBytes": [10], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 67, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1600997481484929018" + } + }, + "cborHex": "1b1637e2ba1a3447fa", + "cborBytes": [27, 22, 55, 226, 186, 26, 52, 71, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 68, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "30549754228751463" + } + }, + "cborHex": "1b006c88d6f0c7bc67", + "cborBytes": [27, 0, 108, 136, 214, 240, 199, 188, 103], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 69, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2086321517934526299" + } + }, + "cborHex": "1b1cf41a5de3bdbf5b", + "cborBytes": [27, 28, 244, 26, 93, 227, 189, 191, 91], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 70, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "cborHex": "1bfffffffffffffff6", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 71, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5613627013747953636" + } + }, + "cborHex": "1b4de79c06d7fbcfe4", + "cborBytes": [27, 77, 231, 156, 6, 215, 251, 207, 228], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 72, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1426752816704714659" + } + }, + "cborHex": "1b13ccd820a5f8f7a3", + "cborBytes": [27, 19, 204, 216, 32, 165, 248, 247, 163], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 73, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "cborHex": "00", + "cborBytes": [0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 74, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17930391800907803201" + } + }, + "cborHex": "1bf8d58c57f8afaa41", + "cborBytes": [27, 248, 213, 140, 87, 248, 175, 170, 65], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 75, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10704966234954489864" + } + }, + "cborHex": "1b948fae12c7036008", + "cborBytes": [27, 148, 143, 174, 18, 199, 3, 96, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 76, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14192632803287554333" + } + }, + "cborHex": "1bc4f65c56bb82d91d", + "cborBytes": [27, 196, 246, 92, 86, 187, 130, 217, 29], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 77, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7240337754752046620" + } + }, + "cborHex": "1b647ad8d3b5d8561c", + "cborBytes": [27, 100, 122, 216, 211, 181, 216, 86, 28], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 78, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4631559137484385561" + } + }, + "cborHex": "1b40469a7f19f8ad19", + "cborBytes": [27, 64, 70, 154, 127, 25, 248, 173, 25], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 79, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9961096653692685318" + } + }, + "cborHex": "1b8a3ceca160af4c06", + "cborBytes": [27, 138, 60, 236, 161, 96, 175, 76, 6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 80, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17577429974725810168" + } + }, + "cborHex": "1bf3ef936ecbd5d7f8", + "cborBytes": [27, 243, 239, 147, 110, 203, 213, 215, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 81, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "888462514351913422" + } + }, + "cborHex": "1b0c5473f3143239ce", + "cborBytes": [27, 12, 84, 115, 243, 20, 50, 57, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 82, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1526537030344884728" + } + }, + "cborHex": "1b152f5957562fc1f8", + "cborBytes": [27, 21, 47, 89, 87, 86, 47, 193, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 83, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8373010797243001202" + } + }, + "cborHex": "1b7432e8f53e2de972", + "cborBytes": [27, 116, 50, 232, 245, 62, 45, 233, 114], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 84, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11574277751945525643" + } + }, + "cborHex": "1ba0a0184ad06b798b", + "cborBytes": [27, 160, 160, 24, 74, 208, 107, 121, 139], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 85, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13871034263072315964" + } + }, + "cborHex": "1bc07fd02b9db29a3c", + "cborBytes": [27, 192, 127, 208, 43, 157, 178, 154, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 86, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18387666776486292389" + } + }, + "cborHex": "1bff2e1d82dcb7aba5", + "cborBytes": [27, 255, 46, 29, 130, 220, 183, 171, 165], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 87, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6320017248681618912" + } + }, + "cborHex": "1b57b53633ea026de0", + "cborBytes": [27, 87, 181, 54, 51, 234, 2, 109, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 88, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15778432177600178524" + } + }, + "cborHex": "1bdaf84077c273a95c", + "cborBytes": [27, 218, 248, 64, 119, 194, 115, 169, 92], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 89, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "cborHex": "1bfffffffffffffff4", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 90, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4416157518012362900" + } + }, + "cborHex": "1b3d4957dd654c3094", + "cborBytes": [27, 61, 73, 87, 221, 101, 76, 48, 148], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 91, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11591690327767695263" + } + }, + "cborHex": "1ba0ddf4f00cecbf9f", + "cborBytes": [27, 160, 221, 244, 240, 12, 236, 191, 159], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 92, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9756361155730994599" + } + }, + "cborHex": "1b87658ec79bc3f5a7", + "cborBytes": [27, 135, 101, 142, 199, 155, 195, 245, 167], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 93, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "cborHex": "1bfffffffffffffff1", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 241], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 94, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2352031042383575073" + } + }, + "cborHex": "1b20a417c57df6f821", + "cborBytes": [27, 32, 164, 23, 197, 125, 246, 248, 33], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 95, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16197306966167346806" + } + }, + "cborHex": "1be0c864de645d5e76", + "cborBytes": [27, 224, 200, 100, 222, 100, 93, 94, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 96, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "cborHex": "05", + "cborBytes": [5], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 97, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "cborHex": "1bfffffffffffffffc", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 252], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 98, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3791785038453170239" + } + }, + "cborHex": "1b349f206719a4603f", + "cborBytes": [27, 52, 159, 32, 103, 25, 164, 96, 63], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 99, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "cborHex": "14", + "cborBytes": [20], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 100, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3583290941316675858" + } + }, + "cborHex": "1b31ba6820440e3912", + "cborBytes": [27, 49, 186, 104, 32, 68, 14, 57, 18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 101, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2544589541107843029" + } + }, + "cborHex": "1b235032b4b0e83fd5", + "cborBytes": [27, 35, 80, 50, 180, 176, 232, 63, 213], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 102, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13719508219026833339" + } + }, + "cborHex": "1bbe657c0940257fbb", + "cborBytes": [27, 190, 101, 124, 9, 64, 37, 127, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 103, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15417884701759152944" + } + }, + "cborHex": "1bd5f75472e448a330", + "cborBytes": [27, 213, 247, 84, 114, 228, 72, 163, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 104, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8082180721032016298" + } + }, + "cborHex": "1b7029ac8b679fb1aa", + "cborBytes": [27, 112, 41, 172, 139, 103, 159, 177, 170], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 105, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17297557209243449062" + } + }, + "cborHex": "1bf00d44a2aaf3f6e6", + "cborBytes": [27, 240, 13, 68, 162, 170, 243, 246, 230], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 106, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1450930393262615101" + } + }, + "cborHex": "1b1422bd815c3c6a3d", + "cborBytes": [27, 20, 34, 189, 129, 92, 60, 106, 61], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 107, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3893197424792444599" + } + }, + "cborHex": "1b36076a6e49381eb7", + "cborBytes": [27, 54, 7, 106, 110, 73, 56, 30, 183], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 108, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9648698507233355058" + } + }, + "cborHex": "1b85e7102bdc7c6532", + "cborBytes": [27, 133, 231, 16, 43, 220, 124, 101, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 109, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5501892816595589426" + } + }, + "cborHex": "1b4c5aa65dcd741932", + "cborBytes": [27, 76, 90, 166, 93, 205, 116, 25, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 110, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6976287301770952939" + } + }, + "cborHex": "1b60d0c056c92040eb", + "cborBytes": [27, 96, 208, 192, 86, 201, 32, 64, 235], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 111, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14900469687376872233" + } + }, + "cborHex": "1bcec91a3c0e930329", + "cborBytes": [27, 206, 201, 26, 60, 14, 147, 3, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 112, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "300354630590947981" + } + }, + "cborHex": "1b042b12f1f704628d", + "cborBytes": [27, 4, 43, 18, 241, 247, 4, 98, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 113, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12602391788322654115" + } + }, + "cborHex": "1baee4b08fa74587a3", + "cborBytes": [27, 174, 228, 176, 143, 167, 69, 135, 163], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 114, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "cborHex": "07", + "cborBytes": [7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 115, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1856804309770130325" + } + }, + "cborHex": "1b19c4b1ae95435395", + "cborBytes": [27, 25, 196, 177, 174, 149, 67, 83, 149], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 116, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12459545221780843999" + } + }, + "cborHex": "1bace9325d9f29addf", + "cborBytes": [27, 172, 233, 50, 93, 159, 41, 173, 223], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 117, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11991988019946670600" + } + }, + "cborHex": "1ba66c19915fa94a08", + "cborBytes": [27, 166, 108, 25, 145, 95, 169, 74, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 118, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1632086207238409554" + } + }, + "cborHex": "1b16a655c221428d52", + "cborBytes": [27, 22, 166, 85, 194, 33, 66, 141, 82], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 119, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "cborHex": "1bfffffffffffffffa", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 120, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4182351734222390540" + } + }, + "cborHex": "1b3a0ab2be4410850c", + "cborBytes": [27, 58, 10, 178, 190, 68, 16, 133, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 121, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6274431088284485032" + } + }, + "cborHex": "1b571341d4d8dd45a8", + "cborBytes": [27, 87, 19, 65, 212, 216, 221, 69, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 122, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "cborHex": "1bfffffffffffffff8", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 123, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "cborHex": "1bfffffffffffffff7", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 247], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 124, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11491875799629975577" + } + }, + "cborHex": "1b9f7b582737da5019", + "cborBytes": [27, 159, 123, 88, 39, 55, 218, 80, 25], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 125, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2752965780693400228" + } + }, + "cborHex": "1b26347fcaad093aa4", + "cborBytes": [27, 38, 52, 127, 202, 173, 9, 58, 164], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 126, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2641441416192917852" + } + }, + "cborHex": "1b24a848f91b2f015c", + "cborBytes": [27, 36, 168, 72, 249, 27, 47, 1, 92], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 127, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12375239339074194227" + } + }, + "cborHex": "1babbdae9caff50b33", + "cborBytes": [27, 171, 189, 174, 156, 175, 245, 11, 51], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 128, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "466201422765640091" + } + }, + "cborHex": "1b067847b955ba499b", + "cborBytes": [27, 6, 120, 71, 185, 85, 186, 73, 155], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 129, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11296798863647869531" + } + }, + "cborHex": "1b9cc64ab6a6c48a5b", + "cborBytes": [27, 156, 198, 74, 182, 166, 196, 138, 91], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 130, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15853845446397661546" + } + }, + "cborHex": "1bdc042c6fac7a116a", + "cborBytes": [27, 220, 4, 44, 111, 172, 122, 17, 106], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 131, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2250634212208456141" + } + }, + "cborHex": "1b1f3bdbe44206b1cd", + "cborBytes": [27, 31, 59, 219, 228, 66, 6, 177, 205], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 132, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "cborHex": "1bffffffffffffffef", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 239], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 133, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9446430487060103139" + } + }, + "cborHex": "1b8318767a88a33fe3", + "cborBytes": [27, 131, 24, 118, 122, 136, 163, 63, 227], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 134, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11685188195089496501" + } + }, + "cborHex": "1ba22a20c0ade5b9b5", + "cborBytes": [27, 162, 42, 32, 192, 173, 229, 185, 181], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 135, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4082228562277890959" + } + }, + "cborHex": "1b38a6fd3fb286fb8f", + "cborBytes": [27, 56, 166, 253, 63, 178, 134, 251, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 136, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7837206996483949252" + } + }, + "cborHex": "1b6cc35a3d70a1c2c4", + "cborBytes": [27, 108, 195, 90, 61, 112, 161, 194, 196], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 137, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17127501971191627050" + } + }, + "cborHex": "1bedb11c4c22adfd2a", + "cborBytes": [27, 237, 177, 28, 76, 34, 173, 253, 42], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 138, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8490681961655247187" + } + }, + "cborHex": "1b75d4f64231472153", + "cborBytes": [27, 117, 212, 246, 66, 49, 71, 33, 83], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 139, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14012002679188599543" + } + }, + "cborHex": "1bc274a232acdbb2f7", + "cborBytes": [27, 194, 116, 162, 50, 172, 219, 178, 247], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 140, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9760803566075964453" + } + }, + "cborHex": "1b87755720de52ec25", + "cborBytes": [27, 135, 117, 87, 32, 222, 82, 236, 37], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 141, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2379679838796441646" + } + }, + "cborHex": "1b210652348e9ee82e", + "cborBytes": [27, 33, 6, 82, 52, 142, 158, 232, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 142, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12657966155476535938" + } + }, + "cborHex": "1bafaa212754188a82", + "cborBytes": [27, 175, 170, 33, 39, 84, 24, 138, 130], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 143, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4234493878640528083" + } + }, + "cborHex": "1b3ac3f1bf4fef4ad3", + "cborBytes": [27, 58, 195, 241, 191, 79, 239, 74, 211], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 144, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11555354464222212931" + } + }, + "cborHex": "1ba05cdda98db07343", + "cborBytes": [27, 160, 92, 221, 169, 141, 176, 115, 67], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 145, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3457766544169494594" + } + }, + "cborHex": "1b2ffc745a1573e842", + "cborBytes": [27, 47, 252, 116, 90, 21, 115, 232, 66], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 146, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8292765375761564496" + } + }, + "cborHex": "1b7315d22c1bed4350", + "cborBytes": [27, 115, 21, 210, 44, 27, 237, 67, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 147, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17109540696510597097" + } + }, + "cborHex": "1bed714c9cfd9a87e9", + "cborBytes": [27, 237, 113, 76, 156, 253, 154, 135, 233], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 148, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11022573277844442445" + } + }, + "cborHex": "1b98f80bff00a18d4d", + "cborBytes": [27, 152, 248, 11, 255, 0, 161, 141, 77], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 149, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17973688880611318509" + } + }, + "cborHex": "1bf96f5ecee839daed", + "cborBytes": [27, 249, 111, 94, 206, 232, 57, 218, 237], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 150, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15979656162996458805" + } + }, + "cborHex": "1bddc3249dcc491535", + "cborBytes": [27, 221, 195, 36, 157, 204, 73, 21, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 151, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10953215543705624093" + } + }, + "cborHex": "1b9801a3811edc5e1d", + "cborBytes": [27, 152, 1, 163, 129, 30, 220, 94, 29], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 152, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16786565503494600280" + } + }, + "cborHex": "1be8f5dc62ea9f3658", + "cborBytes": [27, 232, 245, 220, 98, 234, 159, 54, 88], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 153, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17402220296124685198" + } + }, + "cborHex": "1bf1811b288d9adb8e", + "cborBytes": [27, 241, 129, 27, 40, 141, 154, 219, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 154, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8040893224126134608" + } + }, + "cborHex": "1b6f96fdc8ece23950", + "cborBytes": [27, 111, 150, 253, 200, 236, 226, 57, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 155, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5960517746901046367" + } + }, + "cborHex": "1b52b8034f8572d45f", + "cborBytes": [27, 82, 184, 3, 79, 133, 114, 212, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 156, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17973642766909075467" + } + }, + "cborHex": "1bf96f34de3962700b", + "cborBytes": [27, 249, 111, 52, 222, 57, 98, 112, 11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 157, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5628887142873804161" + } + }, + "cborHex": "1b4e1dd30887c1ad81", + "cborBytes": [27, 78, 29, 211, 8, 135, 193, 173, 129], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 158, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "257579229314852206" + } + }, + "cborHex": "1b03931af1c0d4a56e", + "cborBytes": [27, 3, 147, 26, 241, 192, 212, 165, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 159, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3255798778464545221" + } + }, + "cborHex": "1b2d2eebbd3287a9c5", + "cborBytes": [27, 45, 46, 235, 189, 50, 135, 169, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 160, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6148326758937930223" + } + }, + "cborHex": "1b55533e9cad8629ef", + "cborBytes": [27, 85, 83, 62, 156, 173, 134, 41, 239], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 161, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11806560535204531143" + } + }, + "cborHex": "1ba3d95440c0030bc7", + "cborBytes": [27, 163, 217, 84, 64, 192, 3, 11, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 162, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8685818791890827722" + } + }, + "cborHex": "1b788a3a2bfa10b9ca", + "cborBytes": [27, 120, 138, 58, 43, 250, 16, 185, 202], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 163, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12130558215857936363" + } + }, + "cborHex": "1ba858666d476897eb", + "cborBytes": [27, 168, 88, 102, 109, 71, 104, 151, 235], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 164, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5011738026567406797" + } + }, + "cborHex": "1b458d452e8cde14cd", + "cborBytes": [27, 69, 141, 69, 46, 140, 222, 20, 205], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 165, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6791753123564754473" + } + }, + "cborHex": "1b5e41277b4c3a1629", + "cborBytes": [27, 94, 65, 39, 123, 76, 58, 22, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 166, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16018675712205028662" + } + }, + "cborHex": "1bde4dc4b08e287d36", + "cborBytes": [27, 222, 77, 196, 176, 142, 40, 125, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 167, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7872842942169663077" + } + }, + "cborHex": "1b6d41f4f19c76c665", + "cborBytes": [27, 109, 65, 244, 241, 156, 118, 198, 101], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 168, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11488685320840256208" + } + }, + "cborHex": "1b9f70026dfced9ad0", + "cborBytes": [27, 159, 112, 2, 109, 252, 237, 154, 208], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 169, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1240481162985683724" + } + }, + "cborHex": "1b1137130b9e533b0c", + "cborBytes": [27, 17, 55, 19, 11, 158, 83, 59, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 170, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6751229591664349883" + } + }, + "cborHex": "1b5db12f8b484252bb", + "cborBytes": [27, 93, 177, 47, 139, 72, 66, 82, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 171, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10662622392148223188" + } + }, + "cborHex": "1b93f93e929a1ee4d4", + "cborBytes": [27, 147, 249, 62, 146, 154, 30, 228, 212], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 172, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9213889789486616130" + } + }, + "cborHex": "1b7fde4ff23df2ce42", + "cborBytes": [27, 127, 222, 79, 242, 61, 242, 206, 66], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 173, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2787761065134040090" + } + }, + "cborHex": "1b26b01deb25faa41a", + "cborBytes": [27, 38, 176, 29, 235, 37, 250, 164, 26], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 174, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13691460039412969186" + } + }, + "cborHex": "1bbe01d65d89aa6ee2", + "cborBytes": [27, 190, 1, 214, 93, 137, 170, 110, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 175, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7207497715775774385" + } + }, + "cborHex": "1b64062cfc4c411eb1", + "cborBytes": [27, 100, 6, 44, 252, 76, 65, 30, 177], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 176, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3935130984957045818" + } + }, + "cborHex": "1b369c64c816ff6c3a", + "cborBytes": [27, 54, 156, 100, 200, 22, 255, 108, 58], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 177, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17395408373297412089" + } + }, + "cborHex": "1bf168e7c02d3f77f9", + "cborBytes": [27, 241, 104, 231, 192, 45, 63, 119, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 178, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10326516828628536135" + } + }, + "cborHex": "1b8f4f2857e97f4b47", + "cborBytes": [27, 143, 79, 40, 87, 233, 127, 75, 71], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 179, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1218788410682764022" + } + }, + "cborHex": "1b10ea019a231beaf6", + "cborBytes": [27, 16, 234, 1, 154, 35, 27, 234, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 180, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13308597374576746307" + } + }, + "cborHex": "1bb8b1a2ccda57df43", + "cborBytes": [27, 184, 177, 162, 204, 218, 87, 223, 67], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 181, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18436820734162171173" + } + }, + "cborHex": "1bffdcbec6774af525", + "cborBytes": [27, 255, 220, 190, 198, 119, 74, 245, 37], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 182, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5713508991548282250" + } + }, + "cborHex": "1b4f4a7628063c558a", + "cborBytes": [27, 79, 74, 118, 40, 6, 60, 85, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 183, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10052359252395141743" + } + }, + "cborHex": "1b8b81277af99faa6f", + "cborBytes": [27, 139, 129, 39, 122, 249, 159, 170, 111], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 184, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8962301244680739326" + } + }, + "cborHex": "1b7c607d7f6b3c99fe", + "cborBytes": [27, 124, 96, 125, 127, 107, 60, 153, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 185, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8943955802593745070" + } + }, + "cborHex": "1b7c1f506a5464d8ae", + "cborBytes": [27, 124, 31, 80, 106, 84, 100, 216, 174], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 186, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13174061695979645246" + } + }, + "cborHex": "1bb6d3ab5035f2693e", + "cborBytes": [27, 182, 211, 171, 80, 53, 242, 105, 62], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 187, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3857981527443087198" + } + }, + "cborHex": "1b358a4dc23d439f5e", + "cborBytes": [27, 53, 138, 77, 194, 61, 67, 159, 94], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 188, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10485652850527763923" + } + }, + "cborHex": "1b918485b651c4fdd3", + "cborBytes": [27, 145, 132, 133, 182, 81, 196, 253, 211], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 189, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4394011711872604918" + } + }, + "cborHex": "1b3cfaaa5f19129af6", + "cborBytes": [27, 60, 250, 170, 95, 25, 18, 154, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 190, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5289842321426263311" + } + }, + "cborHex": "1b49694b908670ad0f", + "cborBytes": [27, 73, 105, 75, 144, 134, 112, 173, 15], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 191, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4260010663612864333" + } + }, + "cborHex": "1b3b1e9920c805574d", + "cborBytes": [27, 59, 30, 153, 32, 200, 5, 87, 77], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 192, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "cborHex": "1bffffffffffffffec", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 236], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 193, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8825514976477166762" + } + }, + "cborHex": "1b7a7a871c8ccfbcaa", + "cborBytes": [27, 122, 122, 135, 28, 140, 207, 188, 170], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 194, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14094050038486168056" + } + }, + "cborHex": "1bc3981fd6268c71f8", + "cborBytes": [27, 195, 152, 31, 214, 38, 140, 113, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 195, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15989885749807951788" + } + }, + "cborHex": "1bdde77c5f14622fac", + "cborBytes": [27, 221, 231, 124, 95, 20, 98, 47, 172], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 196, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12713886915566114898" + } + }, + "cborHex": "1bb070ccc9e4ce1852", + "cborBytes": [27, 176, 112, 204, 201, 228, 206, 24, 82], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 197, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2510882894489109553" + } + }, + "cborHex": "1b22d872b076a0c431", + "cborBytes": [27, 34, 216, 114, 176, 118, 160, 196, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 198, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1916998429437308029" + } + }, + "cborHex": "1b1a9a8bea3597ac7d", + "cborBytes": [27, 26, 154, 139, 234, 53, 151, 172, 125], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 199, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15555186996163211056" + } + }, + "cborHex": "1bd7df202879156f30", + "cborBytes": [27, 215, 223, 32, 40, 121, 21, 111, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 200, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10323689337146477105" + } + }, + "cborHex": "1b8f451cc1401a8a31", + "cborBytes": [27, 143, 69, 28, 193, 64, 26, 138, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 201, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10357193317900619437" + } + }, + "cborHex": "1b8fbc2472a7840ead", + "cborBytes": [27, 143, 188, 36, 114, 167, 132, 14, 173], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 202, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5647156533324618158" + } + }, + "cborHex": "1b4e5ebaf277d719ae", + "cborBytes": [27, 78, 94, 186, 242, 119, 215, 25, 174], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 203, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3198147191439663631" + } + }, + "cborHex": "1b2c6219ed152ca20f", + "cborBytes": [27, 44, 98, 25, 237, 21, 44, 162, 15], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 204, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2370148073268483812" + } + }, + "cborHex": "1b20e4751d743e96e4", + "cborBytes": [27, 32, 228, 117, 29, 116, 62, 150, 228], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 205, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7647780171706065411" + } + }, + "cborHex": "1b6a225f8be6d0e203", + "cborBytes": [27, 106, 34, 95, 139, 230, 208, 226, 3], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 206, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6324923027277767785" + } + }, + "cborHex": "1b57c6a3fb80946469", + "cborBytes": [27, 87, 198, 163, 251, 128, 148, 100, 105], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 207, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4001583390140216182" + } + }, + "cborHex": "1b37887ae45c693376", + "cborBytes": [27, 55, 136, 122, 228, 92, 105, 51, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 208, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7597158304860485899" + } + }, + "cborHex": "1b696e873a0f9e390b", + "cborBytes": [27, 105, 110, 135, 58, 15, 158, 57, 11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 209, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3345327730730840907" + } + }, + "cborHex": "1b2e6cfdd8c779b34b", + "cborBytes": [27, 46, 108, 253, 216, 199, 121, 179, 75], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 210, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3972016049208052650" + } + }, + "cborHex": "1b371f6f8d57324baa", + "cborBytes": [27, 55, 31, 111, 141, 87, 50, 75, 170], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 211, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "cborHex": "1bfffffffffffffffb", + "cborBytes": [27, 255, 255, 255, 255, 255, 255, 255, 251], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 212, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16110953409965544140" + } + }, + "cborHex": "1bdf959ac451dd52cc", + "cborBytes": [27, 223, 149, 154, 196, 81, 221, 82, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 213, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3863317464982565495" + } + }, + "cborHex": "1b359d42c402d93277", + "cborBytes": [27, 53, 157, 66, 196, 2, 217, 50, 119], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 214, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14339707291429193796" + } + }, + "cborHex": "1bc700dfce78b74844", + "cborBytes": [27, 199, 0, 223, 206, 120, 183, 72, 68], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 215, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16568311023648674830" + } + }, + "cborHex": "1be5ee7717e4c4940e", + "cborBytes": [27, 229, 238, 119, 23, 228, 196, 148, 14], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 216, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14980450081348591677" + } + }, + "cborHex": "1bcfe53ffaaa41203d", + "cborBytes": [27, 207, 229, 63, 250, 170, 65, 32, 61], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 217, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1211187341166024848" + } + }, + "cborHex": "1b10cf00783aa69890", + "cborBytes": [27, 16, 207, 0, 120, 58, 166, 152, 144], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 218, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3616507709835533586" + } + }, + "cborHex": "1b32306a99dc355d12", + "cborBytes": [27, 50, 48, 106, 153, 220, 53, 93, 18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 219, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6388429291640733759" + } + }, + "cborHex": "1b58a84297e8f2403f", + "cborBytes": [27, 88, 168, 66, 151, 232, 242, 64, 63], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 220, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16921415671018567706" + } + }, + "cborHex": "1bead4f1e637ca381a", + "cborBytes": [27, 234, 212, 241, 230, 55, 202, 56, 26], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 221, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11308126348238613661" + } + }, + "cborHex": "1b9cee89002dff6c9d", + "cborBytes": [27, 156, 238, 137, 0, 45, 255, 108, 157], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 222, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14461144520801383628" + } + }, + "cborHex": "1bc8b04e52bff3f4cc", + "cborBytes": [27, 200, 176, 78, 82, 191, 243, 244, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 223, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8818136345183976972" + } + }, + "cborHex": "1b7a60504913a6fe0c", + "cborBytes": [27, 122, 96, 80, 73, 19, 166, 254, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 224, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11641559523742506800" + } + }, + "cborHex": "1ba18f20b50c3cdf30", + "cborBytes": [27, 161, 143, 32, 181, 12, 60, 223, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 225, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "754413478606752880" + } + }, + "cborHex": "1b0a78370fce1f4c70", + "cborBytes": [27, 10, 120, 55, 15, 206, 31, 76, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 226, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17766337077006291631" + } + }, + "cborHex": "1bf68eb57102cfd2af", + "cborBytes": [27, 246, 142, 181, 113, 2, 207, 210, 175], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 227, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13468837116558448831" + } + }, + "cborHex": "1bbaeaebff1e1018bf", + "cborBytes": [27, 186, 234, 235, 255, 30, 16, 24, 191], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 228, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16153559194920478223" + } + }, + "cborHex": "1be02cf880a77ae60f", + "cborBytes": [27, 224, 44, 248, 128, 167, 122, 230, 15], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 229, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14522593214820348416" + } + }, + "cborHex": "1bc98a9d95badd7200", + "cborBytes": [27, 201, 138, 157, 149, 186, 221, 114, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 230, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8574817103960040828" + } + }, + "cborHex": "1b76ffdeb9877b657c", + "cborBytes": [27, 118, 255, 222, 185, 135, 123, 101, 124], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 231, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14248881472732960044" + } + }, + "cborHex": "1bc5be3234a4e4952c", + "cborBytes": [27, 197, 190, 50, 52, 164, 228, 149, 44], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 232, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3626388079283984280" + } + }, + "cborHex": "1b325384bea36ed798", + "cborBytes": [27, 50, 83, 132, 190, 163, 110, 215, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 233, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15474979534534263687" + } + }, + "cborHex": "1bd6c22be58e5ac387", + "cborBytes": [27, 214, 194, 43, 229, 142, 90, 195, 135], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 234, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1158727752278998692" + } + }, + "cborHex": "1b1014a0c061f9fea4", + "cborBytes": [27, 16, 20, 160, 192, 97, 249, 254, 164], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 235, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8064101969947684032" + } + }, + "cborHex": "1b6fe9720427426cc0", + "cborBytes": [27, 111, 233, 114, 4, 39, 66, 108, 192], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 236, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4676717622595015151" + } + }, + "cborHex": "1b40e709e64195d1ef", + "cborBytes": [27, 64, 231, 9, 230, 65, 149, 209, 239], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 237, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "100351253143796002" + } + }, + "cborHex": "1b016484eedc66b922", + "cborBytes": [27, 1, 100, 132, 238, 220, 102, 185, 34], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 238, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17534759028275320623" + } + }, + "cborHex": "1bf357fa6ede6c972f", + "cborBytes": [27, 243, 87, 250, 110, 222, 108, 151, 47], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 239, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11629909496884678657" + } + }, + "cborHex": "1ba165bd11cbc0d001", + "cborBytes": [27, 161, 101, 189, 17, 203, 192, 208, 1], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 240, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "889607175424122182" + } + }, + "cborHex": "1b0c58850340cb1d46", + "cborBytes": [27, 12, 88, 133, 3, 64, 203, 29, 70], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 241, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2184805485253266270" + } + }, + "cborHex": "1b1e51fd0363d88b5e", + "cborBytes": [27, 30, 81, 253, 3, 99, 216, 139, 94], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 242, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15353345941598995487" + } + }, + "cborHex": "1bd5120ac9d2b1841f", + "cborBytes": [27, 213, 18, 10, 201, 210, 177, 132, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 243, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14004855687609257343" + } + }, + "cborHex": "1bc25b3e0c068f0d7f", + "cborBytes": [27, 194, 91, 62, 12, 6, 143, 13, 127], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 244, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4909304130211113782" + } + }, + "cborHex": "1b44215a1887976b36", + "cborBytes": [27, 68, 33, 90, 24, 135, 151, 107, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 245, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1504594271017234937" + } + }, + "cborHex": "1b14e164848f11f1f9", + "cborBytes": [27, 20, 225, 100, 132, 143, 17, 241, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 246, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13838258147116220965" + } + }, + "cborHex": "1bc00b5e7771048225", + "cborBytes": [27, 192, 11, 94, 119, 113, 4, 130, 37], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 247, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5186323477751822953" + } + }, + "cborHex": "1b47f985b985aa7a69", + "cborBytes": [27, 71, 249, 133, 185, 133, 170, 122, 105], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 248, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3105212334217074557" + } + }, + "cborHex": "1b2b17ee2a752b977d", + "cborBytes": [27, 43, 23, 238, 42, 117, 43, 151, 125], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 249, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13677847853502252766" + } + }, + "cborHex": "1bbdd17a2787d746de", + "cborBytes": [27, 189, 209, 122, 39, 135, 215, 70, 222], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 250, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6506359104051002476" + } + }, + "cborHex": "1b5a4b3b220a16bc6c", + "cborBytes": [27, 90, 75, 59, 34, 10, 22, 188, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 251, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1529094418300521268" + } + }, + "cborHex": "1b15386f459ed5cb34", + "cborBytes": [27, 21, 56, 111, 69, 158, 213, 203, 52], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 252, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16926628415815194295" + } + }, + "cborHex": "1beae776dcf1b296b7", + "cborBytes": [27, 234, 231, 118, 220, 241, 178, 150, 183], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 253, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "690071860503620642" + } + }, + "cborHex": "1b0993a0b372cfac22", + "cborBytes": [27, 9, 147, 160, 179, 114, 207, 172, 34], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 254, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3244770522345223702" + } + }, + "cborHex": "1b2d07bd993a0bb616", + "cborBytes": [27, 45, 7, 189, 153, 58, 11, 182, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 255, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18091682511088008768" + } + }, + "cborHex": "1bfb129163d68c3e40", + "cborBytes": [27, 251, 18, 145, 99, 214, 140, 62, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 256, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "340580141272880152" + } + }, + "cborHex": "1b04b9fbd5821f5418", + "cborBytes": [27, 4, 185, 251, 213, 130, 31, 84, 24], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 257, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1172176250517163558" + } + }, + "cborHex": "1b10446816e2398e26", + "cborBytes": [27, 16, 68, 104, 22, 226, 57, 142, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 258, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4610471220818153051" + } + }, + "cborHex": "1b3ffbaf25e4070e5b", + "cborBytes": [27, 63, 251, 175, 37, 228, 7, 14, 91], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 259, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5016587145699160484" + } + }, + "cborHex": "1b459e7f6e143071a4", + "cborBytes": [27, 69, 158, 127, 110, 20, 48, 113, 164], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 260, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10944979020360770866" + } + }, + "cborHex": "1b97e4606e16b4e532", + "cborBytes": [27, 151, 228, 96, 110, 22, 180, 229, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 261, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8048457861701225859" + } + }, + "cborHex": "1b6fb1ddc85c66cd83", + "cborBytes": [27, 111, 177, 221, 200, 92, 102, 205, 131], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 262, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12021674963695207077" + } + }, + "cborHex": "1ba6d591af984282a5", + "cborBytes": [27, 166, 213, 145, 175, 152, 66, 130, 165], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 263, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9410031089648691070" + } + }, + "cborHex": "1b8297256b67e4677e", + "cborBytes": [27, 130, 151, 37, 107, 103, 228, 103, 126], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 264, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12067961478756032582" + } + }, + "cborHex": "1ba77a0306b059e046", + "cborBytes": [27, 167, 122, 3, 6, 176, 89, 224, 70], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 265, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6291961394568309658" + } + }, + "cborHex": "1b5751898d57b72b9a", + "cborBytes": [27, 87, 81, 137, 141, 87, 183, 43, 154], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 266, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11858404379097005012" + } + }, + "cborHex": "1ba49183f44b037bd4", + "cborBytes": [27, 164, 145, 131, 244, 75, 3, 123, 212], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 267, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12760698412942391678" + } + }, + "cborHex": "1bb1171b98f552797e", + "cborBytes": [27, 177, 23, 27, 152, 245, 82, 121, 126], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 268, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1724315212211635561" + } + }, + "cborHex": "1b17edff8cb8ad4569", + "cborBytes": [27, 23, 237, 255, 140, 184, 173, 69, 105], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 269, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1506633926740580666" + } + }, + "cborHex": "1b14e8a392e9ec993a", + "cborBytes": [27, 20, 232, 163, 146, 233, 236, 153, 58], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 270, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17355070809106902422" + } + }, + "cborHex": "1bf0d998f324916d96", + "cborBytes": [27, 240, 217, 152, 243, 36, 145, 109, 150], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 271, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10361082554565890812" + } + }, + "cborHex": "1b8fc9f5b0216592fc", + "cborBytes": [27, 143, 201, 245, 176, 33, 101, 146, 252], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 272, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4241407373950163039" + } + }, + "cborHex": "1b3adc8188e005985f", + "cborBytes": [27, 58, 220, 129, 136, 224, 5, 152, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 273, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5676057453939448973" + } + }, + "cborHex": "1b4ec5682e6ac4dc8d", + "cborBytes": [27, 78, 197, 104, 46, 106, 196, 220, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 274, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3320561642128279100" + } + }, + "cborHex": "1b2e1501386dd8063c", + "cborBytes": [27, 46, 21, 1, 56, 109, 216, 6, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 275, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15524832987566823460" + } + }, + "cborHex": "1bd77349591d2fd824", + "cborBytes": [27, 215, 115, 73, 89, 29, 47, 216, 36], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 276, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17056568629231506542" + } + }, + "cborHex": "1becb51acc786a546e", + "cborBytes": [27, 236, 181, 26, 204, 120, 106, 84, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 277, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "863881413580221121" + } + }, + "cborHex": "1b0bfd1f919082eac1", + "cborBytes": [27, 11, 253, 31, 145, 144, 130, 234, 193], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 278, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9161380129918458940" + } + }, + "cborHex": "1b7f23c2b0681c9c3c", + "cborBytes": [27, 127, 35, 194, 176, 104, 28, 156, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 279, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9300600090275443207" + } + }, + "cborHex": "1b81125e8162d57207", + "cborBytes": [27, 129, 18, 94, 129, 98, 213, 114, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 280, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1228709713486937375" + } + }, + "cborHex": "1b110d40f97475fd1f", + "cborBytes": [27, 17, 13, 64, 249, 116, 117, 253, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 281, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17782896527569838957" + } + }, + "cborHex": "1bf6c98a2c8b53e36d", + "cborBytes": [27, 246, 201, 138, 44, 139, 83, 227, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 282, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7898763935298014832" + } + }, + "cborHex": "1b6d9e0bf3201ace70", + "cborBytes": [27, 109, 158, 11, 243, 32, 26, 206, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 283, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11383721175663033793" + } + }, + "cborHex": "1b9dfb1a18817cbdc1", + "cborBytes": [27, 157, 251, 26, 24, 129, 124, 189, 193], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 284, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6064723300172051968" + } + }, + "cborHex": "1b542a39b58fca3600", + "cborBytes": [27, 84, 42, 57, 181, 143, 202, 54, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 285, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6021168518930067516" + } + }, + "cborHex": "1b538f7cddcf97703c", + "cborBytes": [27, 83, 143, 124, 221, 207, 151, 112, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 286, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3650080589034290133" + } + }, + "cborHex": "1b32a7b0f4eeeffbd5", + "cborBytes": [27, 50, 167, 176, 244, 238, 239, 251, 213], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 287, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3108559000664574629" + } + }, + "cborHex": "1b2b23d1f0f5f48aa5", + "cborBytes": [27, 43, 35, 209, 240, 245, 244, 138, 165], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 288, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8133678798748504371" + } + }, + "cborHex": "1b70e0a1c5fc87d133", + "cborBytes": [27, 112, 224, 161, 197, 252, 135, 209, 51], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 289, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3928808057123808181" + } + }, + "cborHex": "1b3685ee1cbb8ea3b5", + "cborBytes": [27, 54, 133, 238, 28, 187, 142, 163, 181], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 290, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4283332490993176140" + } + }, + "cborHex": "1b3b717434dc898e4c", + "cborBytes": [27, 59, 113, 116, 52, 220, 137, 142, 76], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 291, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10801120876085755845" + } + }, + "cborHex": "1b95e54a35c325bfc5", + "cborBytes": [27, 149, 229, 74, 53, 195, 37, 191, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 292, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5087364820039702139" + } + }, + "cborHex": "1b4699f3598d49167b", + "cborBytes": [27, 70, 153, 243, 89, 141, 73, 22, 123], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 293, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4445341381642352934" + } + }, + "cborHex": "1b3db1066f2622f926", + "cborBytes": [27, 61, 177, 6, 111, 38, 34, 249, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 294, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10019491701354139258" + } + }, + "cborHex": "1b8b0c629de9300e7a", + "cborBytes": [27, 139, 12, 98, 157, 233, 48, 14, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 295, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6827910546868664134" + } + }, + "cborHex": "1b5ec19c77703ff746", + "cborBytes": [27, 94, 193, 156, 119, 112, 63, 247, 70], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 296, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16527814856355804130" + } + }, + "cborHex": "1be55e980b3282f3e2", + "cborBytes": [27, 229, 94, 152, 11, 50, 130, 243, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 297, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16331438128194141847" + } + }, + "cborHex": "1be2a4ec732e483e97", + "cborBytes": [27, 226, 164, 236, 115, 46, 72, 62, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 298, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10578389776736218322" + } + }, + "cborHex": "1b92cdfd7489fc6cd2", + "cborBytes": [27, 146, 205, 253, 116, 137, 252, 108, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 299, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7614408514270374963" + } + }, + "cborHex": "1b69abd0336bcbac33", + "cborBytes": [27, 105, 171, 208, 51, 107, 203, 172, 51], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 300, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5596804241399401507" + } + }, + "cborHex": "1b4dabd7cdee02cc23", + "cborBytes": [27, 77, 171, 215, 205, 238, 2, 204, 35], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 301, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3348016329563996302" + } + }, + "cborHex": "1b2e768b1cf9de808e", + "cborBytes": [27, 46, 118, 139, 28, 249, 222, 128, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 302, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3552936799607805877" + } + }, + "cborHex": "1b314e9131ea0957b5", + "cborBytes": [27, 49, 78, 145, 49, 234, 9, 87, 181], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 303, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3811551740369882134" + } + }, + "cborHex": "1b34e55a1d07c4cc16", + "cborBytes": [27, 52, 229, 90, 29, 7, 196, 204, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 304, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7318671613293155212" + } + }, + "cborHex": "1b6591250e6a12d38c", + "cborBytes": [27, 101, 145, 37, 14, 106, 18, 211, 140], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 305, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13770224808975837262" + } + }, + "cborHex": "1bbf19aa818846a84e", + "cborBytes": [27, 191, 25, 170, 129, 136, 70, 168, 78], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 306, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7590211946356872176" + } + }, + "cborHex": "1b6955d98cf08713f0", + "cborBytes": [27, 105, 85, 217, 140, 240, 135, 19, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 307, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2078346187942457909" + } + }, + "cborHex": "1b1cd7c4d8ac98f235", + "cborBytes": [27, 28, 215, 196, 216, 172, 152, 242, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 308, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "806461084601772702" + } + }, + "cborHex": "1b0b31201568dd6a9e", + "cborBytes": [27, 11, 49, 32, 21, 104, 221, 106, 158], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 309, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13538032231998103297" + } + }, + "cborHex": "1bbbe0c09662091f01", + "cborBytes": [27, 187, 224, 192, 150, 98, 9, 31, 1], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 310, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9541299422967414292" + } + }, + "cborHex": "1b84698145f19cbe14", + "cborBytes": [27, 132, 105, 129, 69, 241, 156, 190, 20], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 311, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1284093104163781516" + } + }, + "cborHex": "1b11d203dff435fb8c", + "cborBytes": [27, 17, 210, 3, 223, 244, 53, 251, 140], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 312, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3626190893927171746" + } + }, + "cborHex": "1b3252d167d84906a2", + "cborBytes": [27, 50, 82, 209, 103, 216, 73, 6, 162], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 313, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1277080462240546333" + } + }, + "cborHex": "1b11b919ea05707e1d", + "cborBytes": [27, 17, 185, 25, 234, 5, 112, 126, 29], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 314, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5971847445913908319" + } + }, + "cborHex": "1b52e0439ca285b45f", + "cborBytes": [27, 82, 224, 67, 156, 162, 133, 180, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 315, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15331834619840966522" + } + }, + "cborHex": "1bd4c59e5aeea82f7a", + "cborBytes": [27, 212, 197, 158, 90, 238, 168, 47, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 316, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8344071117824124973" + } + }, + "cborHex": "1b73cc18790e80e82d", + "cborBytes": [27, 115, 204, 24, 121, 14, 128, 232, 45], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 317, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10186702452024045669" + } + }, + "cborHex": "1b8d5e6fe89d7e7065", + "cborBytes": [27, 141, 94, 111, 232, 157, 126, 112, 101], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 318, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7372645792004746938" + } + }, + "cborHex": "1b6650e6492f38aeba", + "cborBytes": [27, 102, 80, 230, 73, 47, 56, 174, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 319, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15107053923531169919" + } + }, + "cborHex": "1bd1a70980babf207f", + "cborBytes": [27, 209, 167, 9, 128, 186, 191, 32, 127], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 320, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11008408845425991537" + } + }, + "cborHex": "1b98c5b98515e25f71", + "cborBytes": [27, 152, 197, 185, 133, 21, 226, 95, 113], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 321, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3668465481854606731" + } + }, + "cborHex": "1b32e901eb5cb9dd8b", + "cborBytes": [27, 50, 233, 1, 235, 92, 185, 221, 139], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 322, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9798936347740087288" + } + }, + "cborHex": "1b87fcd0b0f7b623f8", + "cborBytes": [27, 135, 252, 208, 176, 247, 182, 35, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 323, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4422753552012726363" + } + }, + "cborHex": "1b3d60c6ec3cd0d05b", + "cborBytes": [27, 61, 96, 198, 236, 60, 208, 208, 91], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 324, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12484476561437950604" + } + }, + "cborHex": "1bad41c5497b33028c", + "cborBytes": [27, 173, 65, 197, 73, 123, 51, 2, 140], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 325, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18108593035480294039" + } + }, + "cborHex": "1bfb4ea56c1dea6297", + "cborBytes": [27, 251, 78, 165, 108, 29, 234, 98, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 326, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6108675736301181204" + } + }, + "cborHex": "1b54c660378e479914", + "cborBytes": [27, 84, 198, 96, 55, 142, 71, 153, 20], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 327, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8031718950126371493" + } + }, + "cborHex": "1b6f7665d4ce0e42a5", + "cborBytes": [27, 111, 118, 101, 212, 206, 14, 66, 165], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 328, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4682669771892830954" + } + }, + "cborHex": "1b40fc2f590221b2ea", + "cborBytes": [27, 64, 252, 47, 89, 2, 33, 178, 234], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 329, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7997821338717510649" + } + }, + "cborHex": "1b6efdf8221f4bdbf9", + "cborBytes": [27, 110, 253, 248, 34, 31, 75, 219, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 330, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8719324975439273683" + } + }, + "cborHex": "1b790143de423fded3", + "cborBytes": [27, 121, 1, 67, 222, 66, 63, 222, 211], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 331, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9789652734248720624" + } + }, + "cborHex": "1b87dbd54b435398f0", + "cborBytes": [27, 135, 219, 213, 75, 67, 83, 152, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 332, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12621112922465696173" + } + }, + "cborHex": "1baf2733555da8f9ad", + "cborBytes": [27, 175, 39, 51, 85, 93, 168, 249, 173], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 333, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8287654171323526053" + } + }, + "cborHex": "1b7303a98f1705eba5", + "cborBytes": [27, 115, 3, 169, 143, 23, 5, 235, 165], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 334, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13156962624679487676" + } + }, + "cborHex": "1bb696ebcc6f1ca8bc", + "cborBytes": [27, 182, 150, 235, 204, 111, 28, 168, 188], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 335, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17113143049272088834" + } + }, + "cborHex": "1bed7e18ef1a4ed902", + "cborBytes": [27, 237, 126, 24, 239, 26, 78, 217, 2], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 336, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13057178196237396496" + } + }, + "cborHex": "1bb5346a63bbb4aa10", + "cborBytes": [27, 181, 52, 106, 99, 187, 180, 170, 16], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 337, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13286856504701309048" + } + }, + "cborHex": "1bb8646598204f5078", + "cborBytes": [27, 184, 100, 101, 152, 32, 79, 80, 120], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 338, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7635000589530857565" + } + }, + "cborHex": "1b69f4f8958ee2805d", + "cborBytes": [27, 105, 244, 248, 149, 142, 226, 128, 93], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 339, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12647389438549776049" + } + }, + "cborHex": "1baf848daf84c956b1", + "cborBytes": [27, 175, 132, 141, 175, 132, 201, 86, 177], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 340, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13586002897337427944" + } + }, + "cborHex": "1bbc8b2da74539a7e8", + "cborBytes": [27, 188, 139, 45, 167, 69, 57, 167, 232], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 341, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "304253989076958048" + } + }, + "cborHex": "1b0438ed641c6d7b60", + "cborBytes": [27, 4, 56, 237, 100, 28, 109, 123, 96], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 342, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14410355001698343809" + } + }, + "cborHex": "1bc7fbdd865380db81", + "cborBytes": [27, 199, 251, 221, 134, 83, 128, 219, 129], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 343, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17470326456496897579" + } + }, + "cborHex": "1bf2731159b59b3e2b", + "cborBytes": [27, 242, 115, 17, 89, 181, 155, 62, 43], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 344, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1347128951757877537" + } + }, + "cborHex": "1b12b1f6a4ec2c3121", + "cborBytes": [27, 18, 177, 246, 164, 236, 44, 49, 33], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 345, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8373995841754551540" + } + }, + "cborHex": "1b743668d9ca60d4f4", + "cborBytes": [27, 116, 54, 104, 217, 202, 96, 212, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 346, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9193345871501201301" + } + }, + "cborHex": "1b7f95535c98220f95", + "cborBytes": [27, 127, 149, 83, 92, 152, 34, 15, 149], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 347, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14648175066926484047" + } + }, + "cborHex": "1bcb48c59d2fe30a4f", + "cborBytes": [27, 203, 72, 197, 157, 47, 227, 10, 79], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 348, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4026808939818684901" + } + }, + "cborHex": "1b37e21965544291e5", + "cborBytes": [27, 55, 226, 25, 101, 84, 66, 145, 229], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 349, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12935820791240013284" + } + }, + "cborHex": "1bb385447903f935e4", + "cborBytes": [27, 179, 133, 68, 121, 3, 249, 53, 228], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 350, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7354830827707395378" + } + }, + "cborHex": "1b66119bab94976d32", + "cborBytes": [27, 102, 17, 155, 171, 148, 151, 109, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 351, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11086608927415229928" + } + }, + "cborHex": "1b99db8c1482425de8", + "cborBytes": [27, 153, 219, 140, 20, 130, 66, 93, 232], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 352, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8459219478523036800" + } + }, + "cborHex": "1b75652f4bfe6e4480", + "cborBytes": [27, 117, 101, 47, 75, 254, 110, 68, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 353, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13224182019968058018" + } + }, + "cborHex": "1bb785bb7b814dc2a2", + "cborBytes": [27, 183, 133, 187, 123, 129, 77, 194, 162], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 354, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6978514109255294163" + } + }, + "cborHex": "1b60d8a99bce369cd3", + "cborBytes": [27, 96, 216, 169, 155, 206, 54, 156, 211], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 355, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5209417787403324282" + } + }, + "cborHex": "1b484b91e080c6cb7a", + "cborBytes": [27, 72, 75, 145, 224, 128, 198, 203, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 356, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17655146335901337443" + } + }, + "cborHex": "1bf503ae0d30f04763", + "cborBytes": [27, 245, 3, 174, 13, 48, 240, 71, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 357, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14644492936559180093" + } + }, + "cborHex": "1bcb3bb0bc6753b93d", + "cborBytes": [27, 203, 59, 176, 188, 103, 83, 185, 61], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 358, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13346352261409357702" + } + }, + "cborHex": "1bb937c4ab74893f86", + "cborBytes": [27, 185, 55, 196, 171, 116, 137, 63, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 359, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13071922101032680221" + } + }, + "cborHex": "1bb568cbe493a17b1d", + "cborBytes": [27, 181, 104, 203, 228, 147, 161, 123, 29], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 360, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11741267940623203535" + } + }, + "cborHex": "1ba2f15cfbed873ccf", + "cborBytes": [27, 162, 241, 92, 251, 237, 135, 60, 207], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 361, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4604653706184631906" + } + }, + "cborHex": "1b3fe7042636d22662", + "cborBytes": [27, 63, 231, 4, 38, 54, 210, 38, 98], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 362, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15179451070445025791" + } + }, + "cborHex": "1bd2a83e530b4c79ff", + "cborBytes": [27, 210, 168, 62, 83, 11, 76, 121, 255], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 363, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16409124190569998938" + } + }, + "cborHex": "1be3b8eb831631aa5a", + "cborBytes": [27, 227, 184, 235, 131, 22, 49, 170, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 364, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "446581171314382482" + } + }, + "cborHex": "1b063293358f925692", + "cborBytes": [27, 6, 50, 147, 53, 143, 146, 86, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 365, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9121664163459591563" + } + }, + "cborHex": "1b7e96a93a5f6b6d8b", + "cborBytes": [27, 126, 150, 169, 58, 95, 107, 109, 139], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 366, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12958060166475594861" + } + }, + "cborHex": "1bb3d4471110eabc6d", + "cborBytes": [27, 179, 212, 71, 17, 16, 234, 188, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 367, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8116971742160963351" + } + }, + "cborHex": "1b70a546cb3f634717", + "cborBytes": [27, 112, 165, 70, 203, 63, 99, 71, 23], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 368, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16732501396624328278" + } + }, + "cborHex": "1be835c95e1d854656", + "cborBytes": [27, 232, 53, 201, 94, 29, 133, 70, 86], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 369, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14134291246742680459" + } + }, + "cborHex": "1bc42717009202b38b", + "cborBytes": [27, 196, 39, 23, 0, 146, 2, 179, 139], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 370, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2280122363516598599" + } + }, + "cborHex": "1b1fa49f3581d4b947", + "cborBytes": [27, 31, 164, 159, 53, 129, 212, 185, 71], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 371, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1541225798667090010" + } + }, + "cborHex": "1b156388b2b838385a", + "cborBytes": [27, 21, 99, 136, 178, 184, 56, 56, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 372, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4181359342332357107" + } + }, + "cborHex": "1b3a072c2b05fb29f3", + "cborBytes": [27, 58, 7, 44, 43, 5, 251, 41, 243], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 373, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4311798385831264814" + } + }, + "cborHex": "1b3bd695c97a93422e", + "cborBytes": [27, 59, 214, 149, 201, 122, 147, 66, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 374, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7155624126459717000" + } + }, + "cborHex": "1b634de23b1bd8a588", + "cborBytes": [27, 99, 77, 226, 59, 27, 216, 165, 136], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 375, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10456176258384718076" + } + }, + "cborHex": "1b911bcce865e4e8fc", + "cborBytes": [27, 145, 27, 204, 232, 101, 228, 232, 252], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 376, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16695319763698978185" + } + }, + "cborHex": "1be7b1b0de96d60d89", + "cborBytes": [27, 231, 177, 176, 222, 150, 214, 13, 137], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 377, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16307992917162834607" + } + }, + "cborHex": "1be251a1279b13baaf", + "cborBytes": [27, 226, 81, 161, 39, 155, 19, 186, 175], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 378, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1846116930866430444" + } + }, + "cborHex": "1b199eb9914620c1ec", + "cborBytes": [27, 25, 158, 185, 145, 70, 32, 193, 236], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 379, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11695594060872984504" + } + }, + "cborHex": "1ba24f18d51b80a7b8", + "cborBytes": [27, 162, 79, 24, 213, 27, 128, 167, 184], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 380, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3443825982116239472" + } + }, + "cborHex": "1b2fcaed7c0c4c9870", + "cborBytes": [27, 47, 202, 237, 124, 12, 76, 152, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 381, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13290231865325335182" + } + }, + "cborHex": "1bb8706377834b328e", + "cborBytes": [27, 184, 112, 99, 119, 131, 75, 50, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 382, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13045702271701213321" + } + }, + "cborHex": "1bb50ba518d641e089", + "cborBytes": [27, 181, 11, 165, 24, 214, 65, 224, 137], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 383, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2628574107982102431" + } + }, + "cborHex": "1b247a9239740fff9f", + "cborBytes": [27, 36, 122, 146, 57, 116, 15, 255, 159], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 384, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6966862080380422264" + } + }, + "cborHex": "1b60af44266c36c878", + "cborBytes": [27, 96, 175, 68, 38, 108, 54, 200, 120], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 385, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8681948722664282868" + } + }, + "cborHex": "1b787c7a5d448f9af4", + "cborBytes": [27, 120, 124, 122, 93, 68, 143, 154, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 386, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18024770340138005003" + } + }, + "cborHex": "1bfa24d92001ec320b", + "cborBytes": [27, 250, 36, 217, 32, 1, 236, 50, 11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 387, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17028954148009522643" + } + }, + "cborHex": "1bec52ff930885b5d3", + "cborBytes": [27, 236, 82, 255, 147, 8, 133, 181, 211], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 388, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9200195309777709766" + } + }, + "cborHex": "1b7fada8e3b783eac6", + "cborBytes": [27, 127, 173, 168, 227, 183, 131, 234, 198], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 389, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13270397168388412050" + } + }, + "cborHex": "1bb829ebea42241292", + "cborBytes": [27, 184, 41, 235, 234, 66, 36, 18, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 390, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9408679929405080645" + } + }, + "cborHex": "1b8292588be5898445", + "cborBytes": [27, 130, 146, 88, 139, 229, 137, 132, 69], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 391, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6835118153051611403" + } + }, + "cborHex": "1b5edb37bf0677210b", + "cborBytes": [27, 94, 219, 55, 191, 6, 119, 33, 11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 392, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16335409513523232755" + } + }, + "cborHex": "1be2b308676216bff3", + "cborBytes": [27, 226, 179, 8, 103, 98, 22, 191, 243], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 393, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8584313943453020088" + } + }, + "cborHex": "1b77219c0cc7f32fb8", + "cborBytes": [27, 119, 33, 156, 12, 199, 243, 47, 184], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 394, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15212566133049197355" + } + }, + "cborHex": "1bd31de44c6289032b", + "cborBytes": [27, 211, 29, 228, 76, 98, 137, 3, 43], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 395, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2140489542235082200" + } + }, + "cborHex": "1b1db48be5da5c4dd8", + "cborBytes": [27, 29, 180, 139, 229, 218, 92, 77, 216], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 396, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2422584169223384198" + } + }, + "cborHex": "1b219ebf776d0b6c86", + "cborBytes": [27, 33, 158, 191, 119, 109, 11, 108, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 397, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "405796854040361288" + } + }, + "cborHex": "1b05a1ae16b80bf948", + "cborBytes": [27, 5, 161, 174, 22, 184, 11, 249, 72], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 398, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15967842357228829241" + } + }, + "cborHex": "1bdd992c05cc0f7a39", + "cborBytes": [27, 221, 153, 44, 5, 204, 15, 122, 57], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 399, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3790834054624209594" + } + }, + "cborHex": "1b349bbf7cec546aba", + "cborBytes": [27, 52, 155, 191, 124, 236, 84, 106, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 400, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11974897629103644538" + } + }, + "cborHex": "1ba62f61f2ac63df7a", + "cborBytes": [27, 166, 47, 97, 242, 172, 99, 223, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 401, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9330395578249410552" + } + }, + "cborHex": "1b817c3958076e77f8", + "cborBytes": [27, 129, 124, 57, 88, 7, 110, 119, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 402, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10539766634928225840" + } + }, + "cborHex": "1b9244c5e992693e30", + "cborBytes": [27, 146, 68, 197, 233, 146, 105, 62, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 403, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15551100787018936142" + } + }, + "cborHex": "1bd7d09bc5c48faf4e", + "cborBytes": [27, 215, 208, 155, 197, 196, 143, 175, 78], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 404, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10425417407897360196" + } + }, + "cborHex": "1b90ae85e570e55744", + "cborBytes": [27, 144, 174, 133, 229, 112, 229, 87, 68], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 405, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3081162019113624720" + } + }, + "cborHex": "1b2ac27c881cb16490", + "cborBytes": [27, 42, 194, 124, 136, 28, 177, 100, 144], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 406, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10778857313029301683" + } + }, + "cborHex": "1b9596319e0bbba5b3", + "cborBytes": [27, 149, 150, 49, 158, 11, 187, 165, 179], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 407, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8737748252769821333" + } + }, + "cborHex": "1b7942b7bdc722a295", + "cborBytes": [27, 121, 66, 183, 189, 199, 34, 162, 149], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 408, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10675244554199281769" + } + }, + "cborHex": "1b9426165cb778b069", + "cborBytes": [27, 148, 38, 22, 92, 183, 120, 176, 105], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 409, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15270207398275598326" + } + }, + "cborHex": "1bd3eaacb944c247f6", + "cborBytes": [27, 211, 234, 172, 185, 68, 194, 71, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 410, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15408567382067196393" + } + }, + "cborHex": "1bd5d63a6559c931e9", + "cborBytes": [27, 213, 214, 58, 101, 89, 201, 49, 233], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 411, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10079215653592232772" + } + }, + "cborHex": "1b8be0913c26ebf344", + "cborBytes": [27, 139, 224, 145, 60, 38, 235, 243, 68], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 412, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14576900036528801250" + } + }, + "cborHex": "1bca4b8d59fbad85e2", + "cborBytes": [27, 202, 75, 141, 89, 251, 173, 133, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 413, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6749188126013313042" + } + }, + "cborHex": "1b5da9eed7854ed012", + "cborBytes": [27, 93, 169, 238, 215, 133, 78, 208, 18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 414, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15440009124823748962" + } + }, + "cborHex": "1bd645ee7e8de8d162", + "cborBytes": [27, 214, 69, 238, 126, 141, 232, 209, 98], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 415, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10782407953108561750" + } + }, + "cborHex": "1b95a2cee7dc61ef56", + "cborBytes": [27, 149, 162, 206, 231, 220, 97, 239, 86], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 416, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8866854693140187894" + } + }, + "cborHex": "1b7b0d655d63a04af6", + "cborBytes": [27, 123, 13, 101, 93, 99, 160, 74, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 417, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14951368057736618562" + } + }, + "cborHex": "1bcf7dee0863836242", + "cborBytes": [27, 207, 125, 238, 8, 99, 131, 98, 66], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 418, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11674120224566906757" + } + }, + "cborHex": "1ba202ce7dfa838f85", + "cborBytes": [27, 162, 2, 206, 125, 250, 131, 143, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 419, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9697275893341311580" + } + }, + "cborHex": "1b8693a50bef91525c", + "cborBytes": [27, 134, 147, 165, 11, 239, 145, 82, 92], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 420, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1416625930189423450" + } + }, + "cborHex": "1b13a8ddc7248c435a", + "cborBytes": [27, 19, 168, 221, 199, 36, 140, 67, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 421, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17215751022419836467" + } + }, + "cborHex": "1beeeaa25788e6fe33", + "cborBytes": [27, 238, 234, 162, 87, 136, 230, 254, 51], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 422, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9336944903339843533" + } + }, + "cborHex": "1b81937deb9af71fcd", + "cborBytes": [27, 129, 147, 125, 235, 154, 247, 31, 205], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 423, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3552471543151919602" + } + }, + "cborHex": "1b314cea0bf44101f2", + "cborBytes": [27, 49, 76, 234, 11, 244, 65, 1, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 424, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12816631317070009294" + } + }, + "cborHex": "1bb1ddd247071ad3ce", + "cborBytes": [27, 177, 221, 210, 71, 7, 26, 211, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 425, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1343702073417567263" + } + }, + "cborHex": "1b12a5c9eaa2028c1f", + "cborBytes": [27, 18, 165, 201, 234, 162, 2, 140, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 426, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15741764725396021737" + } + }, + "cborHex": "1bda75fb9d430121e9", + "cborBytes": [27, 218, 117, 251, 157, 67, 1, 33, 233], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 427, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1701112814658035999" + } + }, + "cborHex": "1b179b9117908ea11f", + "cborBytes": [27, 23, 155, 145, 23, 144, 142, 161, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 428, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16251533014172103575" + } + }, + "cborHex": "1be1890b2c0d42f397", + "cborBytes": [27, 225, 137, 11, 44, 13, 66, 243, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 429, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17590844345208419483" + } + }, + "cborHex": "1bf41f3bbb4f56349b", + "cborBytes": [27, 244, 31, 59, 187, 79, 86, 52, 155], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 430, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10480469405129814301" + } + }, + "cborHex": "1b91721b65641cb11d", + "cborBytes": [27, 145, 114, 27, 101, 100, 28, 177, 29], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 431, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17185187028146463178" + } + }, + "cborHex": "1bee7e0c8d135221ca", + "cborBytes": [27, 238, 126, 12, 141, 19, 82, 33, 202], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 432, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "178800580139255815" + } + }, + "cborHex": "1b027b3a2e28d58807", + "cborBytes": [27, 2, 123, 58, 46, 40, 213, 136, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 433, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12036653123629560615" + } + }, + "cborHex": "1ba70ac83e36893327", + "cborBytes": [27, 167, 10, 200, 62, 54, 137, 51, 39], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 434, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5802842501832828402" + } + }, + "cborHex": "1b5087d682b948e5f2", + "cborBytes": [27, 80, 135, 214, 130, 185, 72, 229, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 435, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7049583218925004259" + } + }, + "cborHex": "1b61d526965a9465e3", + "cborBytes": [27, 97, 213, 38, 150, 90, 148, 101, 227], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 436, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9671211268480985106" + } + }, + "cborHex": "1b86370b688d906812", + "cborBytes": [27, 134, 55, 11, 104, 141, 144, 104, 18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 437, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9484174847051557065" + } + }, + "cborHex": "1b839e8ec62a33e8c9", + "cborBytes": [27, 131, 158, 142, 198, 42, 51, 232, 201], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 438, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13565030831366335854" + } + }, + "cborHex": "1bbc40ababa6cfed6e", + "cborBytes": [27, 188, 64, 171, 171, 166, 207, 237, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 439, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11432485923579665114" + } + }, + "cborHex": "1b9ea85960269e9ada", + "cborBytes": [27, 158, 168, 89, 96, 38, 158, 154, 218], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 440, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5137442258336296638" + } + }, + "cborHex": "1b474bdc83be372ebe", + "cborBytes": [27, 71, 75, 220, 131, 190, 55, 46, 190], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 441, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13932043964606473605" + } + }, + "cborHex": "1bc158902bb17e6585", + "cborBytes": [27, 193, 88, 144, 43, 177, 126, 101, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 442, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11653547943068897862" + } + }, + "cborHex": "1ba1b9b81c6f9b1246", + "cborBytes": [27, 161, 185, 184, 28, 111, 155, 18, 70], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 443, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8329576778799044886" + } + }, + "cborHex": "1b739899f2c5a8d916", + "cborBytes": [27, 115, 152, 153, 242, 197, 168, 217, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 444, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2922544606218099243" + } + }, + "cborHex": "1b288ef6d5c5dd1a2b", + "cborBytes": [27, 40, 142, 246, 213, 197, 221, 26, 43], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 445, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7890434267677831749" + } + }, + "cborHex": "1b6d8074294081b245", + "cborBytes": [27, 109, 128, 116, 41, 64, 129, 178, 69], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 446, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6839246803404290209" + } + }, + "cborHex": "1b5ee9e2bb582378a1", + "cborBytes": [27, 94, 233, 226, 187, 88, 35, 120, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 447, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9901476093238481138" + } + }, + "cborHex": "1b89691c0be98090f2", + "cborBytes": [27, 137, 105, 28, 11, 233, 128, 144, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 448, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5149652962603401442" + } + }, + "cborHex": "1b47773e15e08380e2", + "cborBytes": [27, 71, 119, 62, 21, 224, 131, 128, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 449, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8947157686665074292" + } + }, + "cborHex": "1b7c2ab0830f13d674", + "cborBytes": [27, 124, 42, 176, 131, 15, 19, 214, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 450, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5113764979808754764" + } + }, + "cborHex": "1b46f7be27be555c4c", + "cborBytes": [27, 70, 247, 190, 39, 190, 85, 92, 76], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 451, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16973434224100396385" + } + }, + "cborHex": "1beb8dc07f69f64d61", + "cborBytes": [27, 235, 141, 192, 127, 105, 246, 77, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 452, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10980957604457694850" + } + }, + "cborHex": "1b986432c2fb534682", + "cborBytes": [27, 152, 100, 50, 194, 251, 83, 70, 130], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 453, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17497684911577713078" + } + }, + "cborHex": "1bf2d443b86a4d49b6", + "cborBytes": [27, 242, 212, 67, 184, 106, 77, 73, 182], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 454, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4360737188797857467" + } + }, + "cborHex": "1b3c84735e7921bebb", + "cborBytes": [27, 60, 132, 115, 94, 121, 33, 190, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 455, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10202415076464501630" + } + }, + "cborHex": "1b8d96427513c1a37e", + "cborBytes": [27, 141, 150, 66, 117, 19, 193, 163, 126], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 456, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9116808760047431547" + } + }, + "cborHex": "1b7e856943abcbef7b", + "cborBytes": [27, 126, 133, 105, 67, 171, 203, 239, 123], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 457, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3479903315213118124" + } + }, + "cborHex": "1b304b19a0bbfb6aac", + "cborBytes": [27, 48, 75, 25, 160, 187, 251, 106, 172], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 458, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10423324196417316281" + } + }, + "cborHex": "1b90a71621aa3025b9", + "cborBytes": [27, 144, 167, 22, 33, 170, 48, 37, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 459, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9530478237084265782" + } + }, + "cborHex": "1b84430f7644ffad36", + "cborBytes": [27, 132, 67, 15, 118, 68, 255, 173, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 460, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17177798865536378146" + } + }, + "cborHex": "1bee63cd0e6b676522", + "cborBytes": [27, 238, 99, 205, 14, 107, 103, 101, 34], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 461, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4890105870161719128" + } + }, + "cborHex": "1b43dd2561490aaf58", + "cborBytes": [27, 67, 221, 37, 97, 73, 10, 175, 88], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 462, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10051374560522727277" + } + }, + "cborHex": "1b8b7da7e8885aef6d", + "cborBytes": [27, 139, 125, 167, 232, 136, 90, 239, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 463, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8918565188290575307" + } + }, + "cborHex": "1b7bc51bc942397bcb", + "cborBytes": [27, 123, 197, 27, 201, 66, 57, 123, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 464, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13558162234660000549" + } + }, + "cborHex": "1bbc2844b7dc069325", + "cborBytes": [27, 188, 40, 68, 183, 220, 6, 147, 37], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 465, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14560876639343868173" + } + }, + "cborHex": "1bca12a0281a5ff90d", + "cborBytes": [27, 202, 18, 160, 40, 26, 95, 249, 13], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 466, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12167500214264128998" + } + }, + "cborHex": "1ba8dba4fa8bb3e5e6", + "cborBytes": [27, 168, 219, 164, 250, 139, 179, 229, 230], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 467, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18000663153343695103" + } + }, + "cborHex": "1bf9cf33c4308388ff", + "cborBytes": [27, 249, 207, 51, 196, 48, 131, 136, 255], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 468, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3119973437538581706" + } + }, + "cborHex": "1b2b4c5f4fa5243cca", + "cborBytes": [27, 43, 76, 95, 79, 165, 36, 60, 202], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 469, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14555849828183185406" + } + }, + "cborHex": "1bca00c44c6cca17fe", + "cborBytes": [27, 202, 0, 196, 76, 108, 202, 23, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 470, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17824040028068284742" + } + }, + "cborHex": "1bf75bb5f83f5a8946", + "cborBytes": [27, 247, 91, 181, 248, 63, 90, 137, 70], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 471, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11203148253991307506" + } + }, + "cborHex": "1b9b7993faed3088f2", + "cborBytes": [27, 155, 121, 147, 250, 237, 48, 136, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 472, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "628361206279269632" + } + }, + "cborHex": "1b08b863301ae96d00", + "cborBytes": [27, 8, 184, 99, 48, 26, 233, 109, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 473, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1183090648240209242" + } + }, + "cborHex": "1b106b2ead2171bd5a", + "cborBytes": [27, 16, 107, 46, 173, 33, 113, 189, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 474, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16279417439478521566" + } + }, + "cborHex": "1be1ec1be8be6a9ede", + "cborBytes": [27, 225, 236, 27, 232, 190, 106, 158, 222], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 475, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13341963525520373259" + } + }, + "cborHex": "1bb9282d2340dc360b", + "cborBytes": [27, 185, 40, 45, 35, 64, 220, 54, 11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 476, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11773758183015120601" + } + }, + "cborHex": "1ba364caaff9f6fed9", + "cborBytes": [27, 163, 100, 202, 175, 249, 246, 254, 217], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 477, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14335575013922180159" + } + }, + "cborHex": "1bc6f23185a3cc0c3f", + "cborBytes": [27, 198, 242, 49, 133, 163, 204, 12, 63], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 478, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14966081743389806505" + } + }, + "cborHex": "1bcfb2340d4a354fa9", + "cborBytes": [27, 207, 178, 52, 13, 74, 53, 79, 169], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 479, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "623877379144057905" + } + }, + "cborHex": "1b08a8752bbf488431", + "cborBytes": [27, 8, 168, 117, 43, 191, 72, 132, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 480, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1391084242398606226" + } + }, + "cborHex": "1b134e1fbf88cff392", + "cborBytes": [27, 19, 78, 31, 191, 136, 207, 243, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 481, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10058281371165965417" + } + }, + "cborHex": "1b8b96319db346bc69", + "cborBytes": [27, 139, 150, 49, 157, 179, 70, 188, 105], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 482, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16110192181301577955" + } + }, + "cborHex": "1bdf92e66ef5c188e3", + "cborBytes": [27, 223, 146, 230, 110, 245, 193, 136, 227], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 483, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8611196818705224711" + } + }, + "cborHex": "1b77811de1ede61407", + "cborBytes": [27, 119, 129, 29, 225, 237, 230, 20, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 484, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "359848255324513205" + } + }, + "cborHex": "1b04fe7014e7a963b5", + "cborBytes": [27, 4, 254, 112, 20, 231, 169, 99, 181], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 485, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18040713907807165166" + } + }, + "cborHex": "1bfa5d7db7214b9aee", + "cborBytes": [27, 250, 93, 125, 183, 33, 75, 154, 238], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 486, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13600057863699592501" + } + }, + "cborHex": "1bbcbd1c9222927535", + "cborBytes": [27, 188, 189, 28, 146, 34, 146, 117, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 487, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4856781323543341978" + } + }, + "cborHex": "1b4366c0e1a58d6b9a", + "cborBytes": [27, 67, 102, 192, 225, 165, 141, 107, 154], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 488, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9337865991764894513" + } + }, + "cborHex": "1b8196c3a53758e331", + "cborBytes": [27, 129, 150, 195, 165, 55, 88, 227, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 489, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2807169708611928835" + } + }, + "cborHex": "1b26f511fa1a0d0303", + "cborBytes": [27, 38, 245, 17, 250, 26, 13, 3, 3], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 490, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10712819832556955876" + } + }, + "cborHex": "1b94ab94e0f65128e4", + "cborBytes": [27, 148, 171, 148, 224, 246, 81, 40, 228], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 491, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10290953069166533000" + } + }, + "cborHex": "1b8ed0cf4ae7e31988", + "cborBytes": [27, 142, 208, 207, 74, 231, 227, 25, 136], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 492, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14429472499401543265" + } + }, + "cborHex": "1bc83fc8c99f18ce61", + "cborBytes": [27, 200, 63, 200, 201, 159, 24, 206, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 493, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3367973931511877734" + } + }, + "cborHex": "1b2ebd7272488a9066", + "cborBytes": [27, 46, 189, 114, 114, 72, 138, 144, 102], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 494, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17305887299401297517" + } + }, + "cborHex": "1bf02adcceebc22e6d", + "cborBytes": [27, 240, 42, 220, 206, 235, 194, 46, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 495, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8497259811628052585" + } + }, + "cborHex": "1b75ec54c73c4af069", + "cborBytes": [27, 117, 236, 84, 199, 60, 74, 240, 105], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 496, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10479078867947654520" + } + }, + "cborHex": "1b916d2ab5b9528d78", + "cborBytes": [27, 145, 109, 42, 181, 185, 82, 141, 120], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 497, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4710786047362671602" + } + }, + "cborHex": "1b416012f385eb23f2", + "cborBytes": [27, 65, 96, 18, 243, 133, 235, 35, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 498, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1226677713329081222" + } + }, + "cborHex": "1b110608e18cde4b86", + "cborBytes": [27, 17, 6, 8, 225, 140, 222, 75, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 499, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11359803737986222802" + } + }, + "cborHex": "1b9da6215018d2cad2", + "cborBytes": [27, 157, 166, 33, 80, 24, 210, 202, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 500, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3548164694869629176" + } + }, + "cborHex": "1b313d9cfdb24958f8", + "cborBytes": [27, 49, 61, 156, 253, 178, 73, 88, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 501, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2604099285872305746" + } + }, + "cborHex": "1b24239e80de446652", + "cborBytes": [27, 36, 35, 158, 128, 222, 68, 102, 82], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 502, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4058294809018604292" + } + }, + "cborHex": "1b3851f5a0855d9b04", + "cborBytes": [27, 56, 81, 245, 160, 133, 93, 155, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 503, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6049926405690980873" + } + }, + "cborHex": "1b53f5a80318777a09", + "cborBytes": [27, 83, 245, 168, 3, 24, 119, 122, 9], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 504, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8519759536693092339" + } + }, + "cborHex": "1b763c4428b4569ff3", + "cborBytes": [27, 118, 60, 68, 40, 180, 86, 159, 243], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 505, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7176973588752219874" + } + }, + "cborHex": "1b6399bb7427efbee2", + "cborBytes": [27, 99, 153, 187, 116, 39, 239, 190, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 506, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18309847190084154059" + } + }, + "cborHex": "1bfe19a50278a672cb", + "cborBytes": [27, 254, 25, 165, 2, 120, 166, 114, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 507, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12990341774602213702" + } + }, + "cborHex": "1bb446f704aa151946", + "cborBytes": [27, 180, 70, 247, 4, 170, 21, 25, 70], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 508, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16881093234841323913" + } + }, + "cborHex": "1bea45b0db72f78989", + "cborBytes": [27, 234, 69, 176, 219, 114, 247, 137, 137], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 509, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2941214956184236341" + } + }, + "cborHex": "1b28d14b6b5f6d7135", + "cborBytes": [27, 40, 209, 75, 107, 95, 109, 113, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 510, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10056291529424182332" + } + }, + "cborHex": "1b8b8f1fdd91191c3c", + "cborBytes": [27, 139, 143, 31, 221, 145, 25, 28, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 511, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12274415918609156152" + } + }, + "cborHex": "1baa577c3ece194838", + "cborBytes": [27, 170, 87, 124, 62, 206, 25, 72, 56], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 512, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7559838555417058946" + } + }, + "cborHex": "1b68e9f11cc6ef9e82", + "cborBytes": [27, 104, 233, 241, 28, 198, 239, 158, 130], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 513, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15207004037620724815" + } + }, + "cborHex": "1bd30a219a2050744f", + "cborBytes": [27, 211, 10, 33, 154, 32, 80, 116, 79], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 514, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11130946310465792385" + } + }, + "cborHex": "1b9a7910b1f1422981", + "cborBytes": [27, 154, 121, 16, 177, 241, 66, 41, 129], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 515, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9885434261430387428" + } + }, + "cborHex": "1b89301e15e308c2e4", + "cborBytes": [27, 137, 48, 30, 21, 227, 8, 194, 228], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 516, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12843910108228553144" + } + }, + "cborHex": "1bb23ebc31880309b8", + "cborBytes": [27, 178, 62, 188, 49, 136, 3, 9, 184], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 517, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15712279487098729251" + } + }, + "cborHex": "1bda0d3af2402d3323", + "cborBytes": [27, 218, 13, 58, 242, 64, 45, 51, 35], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 518, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9061778734559186428" + } + }, + "cborHex": "1b7dc1e7bf6a96cdfc", + "cborBytes": [27, 125, 193, 231, 191, 106, 150, 205, 252], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 519, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16343858945901041099" + } + }, + "cborHex": "1be2d10d1e298595cb", + "cborBytes": [27, 226, 209, 13, 30, 41, 133, 149, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 520, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4611218489256318063" + } + }, + "cborHex": "1b3ffe56c8e1d6146f", + "cborBytes": [27, 63, 254, 86, 200, 225, 214, 20, 111], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 521, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4496517292578409744" + } + }, + "cborHex": "1b3e66d6a76e898d10", + "cborBytes": [27, 62, 102, 214, 167, 110, 137, 141, 16], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 522, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "724579433864829972" + } + }, + "cborHex": "1b0a0e3927f7111c14", + "cborBytes": [27, 10, 14, 57, 39, 247, 17, 28, 20], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 523, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16968557502512429643" + } + }, + "cborHex": "1beb7c6d25300afa4b", + "cborBytes": [27, 235, 124, 109, 37, 48, 10, 250, 75], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 524, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18028670324886797459" + } + }, + "cborHex": "1bfa32b423f780fc93", + "cborBytes": [27, 250, 50, 180, 35, 247, 128, 252, 147], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 525, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10268457513882473810" + } + }, + "cborHex": "1b8e80e3b44a27d552", + "cborBytes": [27, 142, 128, 227, 180, 74, 39, 213, 82], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 526, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8537070201651940013" + } + }, + "cborHex": "1b7679c41df8094aad", + "cborBytes": [27, 118, 121, 196, 29, 248, 9, 74, 173], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 527, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11484994240093453146" + } + }, + "cborHex": "1b9f62e569482d7b5a", + "cborBytes": [27, 159, 98, 229, 105, 72, 45, 123, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 528, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8798121081425906994" + } + }, + "cborHex": "1b7a19348255444d32", + "cborBytes": [27, 122, 25, 52, 130, 85, 68, 77, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 529, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11286118566755700208" + } + }, + "cborHex": "1b9ca0590a406a0df0", + "cborBytes": [27, 156, 160, 89, 10, 64, 106, 13, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 530, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2148391242449573531" + } + }, + "cborHex": "1b1dd09e73ccc4569b", + "cborBytes": [27, 29, 208, 158, 115, 204, 196, 86, 155], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 531, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2527519041939737734" + } + }, + "cborHex": "1b23138d2d61da8c86", + "cborBytes": [27, 35, 19, 141, 45, 97, 218, 140, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 532, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16674415272573257520" + } + }, + "cborHex": "1be7676c587713c730", + "cborBytes": [27, 231, 103, 108, 88, 119, 19, 199, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 533, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11525107772187108920" + } + }, + "cborHex": "1b9ff16874c74e6638", + "cborBytes": [27, 159, 241, 104, 116, 199, 78, 102, 56], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 534, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15891532598000864803" + } + }, + "cborHex": "1bdc8a10b37061ce23", + "cborBytes": [27, 220, 138, 16, 179, 112, 97, 206, 35], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 535, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16100478579827484191" + } + }, + "cborHex": "1bdf7063f6e067261f", + "cborBytes": [27, 223, 112, 99, 246, 224, 103, 38, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 536, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5174059482377187994" + } + }, + "cborHex": "1b47cdf3af95d5729a", + "cborBytes": [27, 71, 205, 243, 175, 149, 213, 114, 154], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 537, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9067487565636534336" + } + }, + "cborHex": "1b7dd62fe63b098040", + "cborBytes": [27, 125, 214, 47, 230, 59, 9, 128, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 538, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4020848372969026692" + } + }, + "cborHex": "1b37ccec4ab686b484", + "cborBytes": [27, 55, 204, 236, 74, 182, 134, 180, 132], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 539, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3174027446169896273" + } + }, + "cborHex": "1b2c0c6925444c0551", + "cborBytes": [27, 44, 12, 105, 37, 68, 76, 5, 81], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 540, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12478342628612930345" + } + }, + "cborHex": "1bad2bfa81f4167b29", + "cborBytes": [27, 173, 43, 250, 129, 244, 22, 123, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 541, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13620805355660459111" + } + }, + "cborHex": "1bbd06d24e0ae13c67", + "cborBytes": [27, 189, 6, 210, 78, 10, 225, 60, 103], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 542, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1486569788380266029" + } + }, + "cborHex": "1b14a15b58aa3bbe2d", + "cborBytes": [27, 20, 161, 91, 88, 170, 59, 190, 45], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 543, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2785890536072695648" + } + }, + "cborHex": "1b26a978aea9bc4f60", + "cborBytes": [27, 38, 169, 120, 174, 169, 188, 79, 96], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 544, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11119679117471155646" + } + }, + "cborHex": "1b9a51093e253285be", + "cborBytes": [27, 154, 81, 9, 62, 37, 50, 133, 190], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 545, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8305966114268393222" + } + }, + "cborHex": "1b7344b82c8d662f06", + "cborBytes": [27, 115, 68, 184, 44, 141, 102, 47, 6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 546, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9266378003730562712" + } + }, + "cborHex": "1b8098c9b2f2da7e98", + "cborBytes": [27, 128, 152, 201, 178, 242, 218, 126, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 547, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14902174130156720885" + } + }, + "cborHex": "1bcecf286a9101d2f5", + "cborBytes": [27, 206, 207, 40, 106, 145, 1, 210, 245], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 548, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7736402705940002527" + } + }, + "cborHex": "1b6b5d394596ecb6df", + "cborBytes": [27, 107, 93, 57, 69, 150, 236, 182, 223], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 549, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4280824121422849599" + } + }, + "cborHex": "1b3b688adb8f55263f", + "cborBytes": [27, 59, 104, 138, 219, 143, 85, 38, 63], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 550, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15506073526217335836" + } + }, + "cborHex": "1bd730a3b7a745e41c", + "cborBytes": [27, 215, 48, 163, 183, 167, 69, 228, 28], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 551, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1719985402999983556" + } + }, + "cborHex": "1b17de9d9c74abcdc4", + "cborBytes": [27, 23, 222, 157, 156, 116, 171, 205, 196], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 552, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3377353954860875297" + } + }, + "cborHex": "1b2edec587283e3e21", + "cborBytes": [27, 46, 222, 197, 135, 40, 62, 62, 33], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 553, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4554691308204638548" + } + }, + "cborHex": "1b3f35839cef18c154", + "cborBytes": [27, 63, 53, 131, 156, 239, 24, 193, 84], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 554, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2329309042992682466" + } + }, + "cborHex": "1b20535e3bbfaf15e2", + "cborBytes": [27, 32, 83, 94, 59, 191, 175, 21, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 555, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18253342233037789721" + } + }, + "cborHex": "1bfd50e60cf3da5a19", + "cborBytes": [27, 253, 80, 230, 12, 243, 218, 90, 25], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 556, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15477681165853785017" + } + }, + "cborHex": "1bd6cbc5041d77fbb9", + "cborBytes": [27, 214, 203, 197, 4, 29, 119, 251, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 557, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9215646538119995642" + } + }, + "cborHex": "1b7fe48db3283360fa", + "cborBytes": [27, 127, 228, 141, 179, 40, 51, 96, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 558, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14234315072287232925" + } + }, + "cborHex": "1bc58a722440ab539d", + "cborBytes": [27, 197, 138, 114, 36, 64, 171, 83, 157], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 559, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11427171639338442863" + } + }, + "cborHex": "1b9e95780fee2fa06f", + "cborBytes": [27, 158, 149, 120, 15, 238, 47, 160, 111], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 560, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6276281634758803134" + } + }, + "cborHex": "1b5719d4e4c61b3ebe", + "cborBytes": [27, 87, 25, 212, 228, 198, 27, 62, 190], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 561, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4871253201811268161" + } + }, + "cborHex": "1b439a2afa60f1e241", + "cborBytes": [27, 67, 154, 42, 250, 96, 241, 226, 65], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 562, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4460724157634499831" + } + }, + "cborHex": "1b3de7acfcc8ced4f7", + "cborBytes": [27, 61, 231, 172, 252, 200, 206, 212, 247], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 563, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14743420571781146578" + } + }, + "cborHex": "1bcc9b26e56333a7d2", + "cborBytes": [27, 204, 155, 38, 229, 99, 51, 167, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 564, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5575919449966194385" + } + }, + "cborHex": "1b4d61a5327f6d2ed1", + "cborBytes": [27, 77, 97, 165, 50, 127, 109, 46, 209], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 565, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4449421356656372813" + } + }, + "cborHex": "1b3dbf85265b8a2c4d", + "cborBytes": [27, 61, 191, 133, 38, 91, 138, 44, 77], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 566, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5698338103187773624" + } + }, + "cborHex": "1b4f149050529498b8", + "cborBytes": [27, 79, 20, 144, 80, 82, 148, 152, 184], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 567, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6769419200533645492" + } + }, + "cborHex": "1b5df1cee59f8448b4", + "cborBytes": [27, 93, 241, 206, 229, 159, 132, 72, 180], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 568, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12480185965502513446" + } + }, + "cborHex": "1bad3287034497c126", + "cborBytes": [27, 173, 50, 135, 3, 68, 151, 193, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 569, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15946084748454095209" + } + }, + "cborHex": "1bdd4bdf97bde16969", + "cborBytes": [27, 221, 75, 223, 151, 189, 225, 105, 105], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 570, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15893956294988319529" + } + }, + "cborHex": "1bdc92ad0a5e5ccb29", + "cborBytes": [27, 220, 146, 173, 10, 94, 92, 203, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 571, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9572246333691095559" + } + }, + "cborHex": "1b84d7735316316a07", + "cborBytes": [27, 132, 215, 115, 83, 22, 49, 106, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 572, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8842053406421277781" + } + }, + "cborHex": "1b7ab548b9d6c5dc55", + "cborBytes": [27, 122, 181, 72, 185, 214, 197, 220, 85], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 573, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "113280293176583280" + } + }, + "cborHex": "1b019273d392d7a470", + "cborBytes": [27, 1, 146, 115, 211, 146, 215, 164, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 574, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17552225319939847289" + } + }, + "cborHex": "1bf39607eecca1b479", + "cborBytes": [27, 243, 150, 7, 238, 204, 161, 180, 121], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 575, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9799623340140074527" + } + }, + "cborHex": "1b87ff4181d9ad161f", + "cborBytes": [27, 135, 255, 65, 129, 217, 173, 22, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 576, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16748402621425446101" + } + }, + "cborHex": "1be86e47728548ecd5", + "cborBytes": [27, 232, 110, 71, 114, 133, 72, 236, 213], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 577, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13624242989041686006" + } + }, + "cborHex": "1bbd1308d06f6f95f6", + "cborBytes": [27, 189, 19, 8, 208, 111, 111, 149, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 578, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11136017080717198419" + } + }, + "cborHex": "1b9a8b1488a4d4c453", + "cborBytes": [27, 154, 139, 20, 136, 164, 212, 196, 83], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 579, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12486923495863720344" + } + }, + "cborHex": "1bad4a76c2cc6f9998", + "cborBytes": [27, 173, 74, 118, 194, 204, 111, 153, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 580, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4150892696502206696" + } + }, + "cborHex": "1b399aeeea43c700e8", + "cborBytes": [27, 57, 154, 238, 234, 67, 199, 0, 232], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 581, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1534585393193492057" + } + }, + "cborHex": "1b154bf148d6cd1e59", + "cborBytes": [27, 21, 75, 241, 72, 214, 205, 30, 89], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 582, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11696129018183335161" + } + }, + "cborHex": "1ba250ff5f8ff4bcf9", + "cborBytes": [27, 162, 80, 255, 95, 143, 244, 188, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 583, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17938158533317673952" + } + }, + "cborHex": "1bf8f12425470ac3e0", + "cborBytes": [27, 248, 241, 36, 37, 71, 10, 195, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 584, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5330396049546637950" + } + }, + "cborHex": "1b49f95ef7255f727e", + "cborBytes": [27, 73, 249, 94, 247, 37, 95, 114, 126], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 585, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12110368272046822769" + } + }, + "cborHex": "1ba810abc7aa831571", + "cborBytes": [27, 168, 16, 171, 199, 170, 131, 21, 113], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 586, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2679929647811338871" + } + }, + "cborHex": "1b253105d0d8d52277", + "cborBytes": [27, 37, 49, 5, 208, 216, 213, 34, 119], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 587, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17548926769692457763" + } + }, + "cborHex": "1bf38a4feb38dcbb23", + "cborBytes": [27, 243, 138, 79, 235, 56, 220, 187, 35], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 588, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3010052777896091649" + } + }, + "cborHex": "1b29c5db0db5aca001", + "cborBytes": [27, 41, 197, 219, 13, 181, 172, 160, 1], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 589, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6064427581619098127" + } + }, + "cborHex": "1b54292cc1387cd20f", + "cborBytes": [27, 84, 41, 44, 193, 56, 124, 210, 15], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 590, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16765210363697139248" + } + }, + "cborHex": "1be8a9fdfff8dd8e30", + "cborBytes": [27, 232, 169, 253, 255, 248, 221, 142, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 591, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13217083536720021091" + } + }, + "cborHex": "1bb76c837314dc4663", + "cborBytes": [27, 183, 108, 131, 115, 20, 220, 70, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 592, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8850044632821174030" + } + }, + "cborHex": "1b7ad1acb439a88f0e", + "cborBytes": [27, 122, 209, 172, 180, 57, 168, 143, 14], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 593, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14401473205436238483" + } + }, + "cborHex": "1bc7dc4f93fc554a93", + "cborBytes": [27, 199, 220, 79, 147, 252, 85, 74, 147], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 594, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1347606249083131945" + } + }, + "cborHex": "1b12b3a8be5db25829", + "cborBytes": [27, 18, 179, 168, 190, 93, 178, 88, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 595, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8016612828116500369" + } + }, + "cborHex": "1b6f40bae4b1b93f91", + "cborBytes": [27, 111, 64, 186, 228, 177, 185, 63, 145], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 596, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5332801417103152394" + } + }, + "cborHex": "1b4a01eaa26c22150a", + "cborBytes": [27, 74, 1, 234, 162, 108, 34, 21, 10], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 597, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8420264961755939636" + } + }, + "cborHex": "1b74daca5ec8218334", + "cborBytes": [27, 116, 218, 202, 94, 200, 33, 131, 52], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 598, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "442336221757548720" + } + }, + "cborHex": "1b06237e733925a8b0", + "cborBytes": [27, 6, 35, 126, 115, 57, 37, 168, 176], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 599, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11345723864275793397" + } + }, + "cborHex": "1b9d741bbe09d4b5f5", + "cborBytes": [27, 157, 116, 27, 190, 9, 212, 181, 245], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 600, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13060918984058316092" + } + }, + "cborHex": "1bb541b49dc4f3a53c", + "cborBytes": [27, 181, 65, 180, 157, 196, 243, 165, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 601, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7317702513411015900" + } + }, + "cborHex": "1b658db3aa43d8c4dc", + "cborBytes": [27, 101, 141, 179, 170, 67, 216, 196, 220], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 602, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1496823670654523062" + } + }, + "cborHex": "1b14c5c932acc256b6", + "cborBytes": [27, 20, 197, 201, 50, 172, 194, 86, 182], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 603, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "833567941597572587" + } + }, + "cborHex": "1b0b916da05f13adeb", + "cborBytes": [27, 11, 145, 109, 160, 95, 19, 173, 235], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 604, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18219173055199291010" + } + }, + "cborHex": "1bfcd7815d4885a682", + "cborBytes": [27, 252, 215, 129, 93, 72, 133, 166, 130], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 605, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6303907726755223096" + } + }, + "cborHex": "1b577bfaad8e15d638", + "cborBytes": [27, 87, 123, 250, 173, 142, 21, 214, 56], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 606, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13162593259316947164" + } + }, + "cborHex": "1bb6aaecd4b889a8dc", + "cborBytes": [27, 182, 170, 236, 212, 184, 137, 168, 220], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 607, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5997028163348222791" + } + }, + "cborHex": "1b5339b95748625347", + "cborBytes": [27, 83, 57, 185, 87, 72, 98, 83, 71], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 608, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10861122709721839556" + } + }, + "cborHex": "1b96ba758f4ee5f7c4", + "cborBytes": [27, 150, 186, 117, 143, 78, 229, 247, 196], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 609, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1770455974842795955" + } + }, + "cborHex": "1b1891ec542ef907b3", + "cborBytes": [27, 24, 145, 236, 84, 46, 249, 7, 179], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 610, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18190851825374250689" + } + }, + "cborHex": "1bfc72e35b1d32c6c1", + "cborBytes": [27, 252, 114, 227, 91, 29, 50, 198, 193], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 611, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7802811231692728626" + } + }, + "cborHex": "1b6c49277962792932", + "cborBytes": [27, 108, 73, 39, 121, 98, 121, 41, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 612, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17686308555848567158" + } + }, + "cborHex": "1bf57263eceb4e4976", + "cborBytes": [27, 245, 114, 99, 236, 235, 78, 73, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 613, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5217542252779025424" + } + }, + "cborHex": "1b48686f09017c3410", + "cborBytes": [27, 72, 104, 111, 9, 1, 124, 52, 16], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 614, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1458239921829805956" + } + }, + "cborHex": "1b143cb57b99f57f84", + "cborBytes": [27, 20, 60, 181, 123, 153, 245, 127, 132], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 615, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10925965331597618683" + } + }, + "cborHex": "1b97a0d394b21bedfb", + "cborBytes": [27, 151, 160, 211, 148, 178, 27, 237, 251], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 616, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8141597102027868519" + } + }, + "cborHex": "1b70fcc36da2b88967", + "cborBytes": [27, 112, 252, 195, 109, 162, 184, 137, 103], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 617, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5735596326618522519" + } + }, + "cborHex": "1b4f98ee787721e397", + "cborBytes": [27, 79, 152, 238, 120, 119, 33, 227, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 618, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17745069423012115283" + } + }, + "cborHex": "1bf643269f71487353", + "cborBytes": [27, 246, 67, 38, 159, 113, 72, 115, 83], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 619, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4031996080003916941" + } + }, + "cborHex": "1b37f487128466a48d", + "cborBytes": [27, 55, 244, 135, 18, 132, 102, 164, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 620, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8321371844162850544" + } + }, + "cborHex": "1b737b739a8f438ef0", + "cborBytes": [27, 115, 123, 115, 154, 143, 67, 142, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 621, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7126178380361349094" + } + }, + "cborHex": "1b62e5457b1781b7e6", + "cborBytes": [27, 98, 229, 69, 123, 23, 129, 183, 230], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 622, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14991869389405647618" + } + }, + "cborHex": "1bd00dd1c782937302", + "cborBytes": [27, 208, 13, 209, 199, 130, 147, 115, 2], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 623, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13228371351160136360" + } + }, + "cborHex": "1bb7949da82edaa2a8", + "cborBytes": [27, 183, 148, 157, 168, 46, 218, 162, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 624, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "195349157601484445" + } + }, + "cborHex": "1b02b605061a021e9d", + "cborBytes": [27, 2, 182, 5, 6, 26, 2, 30, 157], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 625, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9407776904561387922" + } + }, + "cborHex": "1b828f23400a816992", + "cborBytes": [27, 130, 143, 35, 64, 10, 129, 105, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 626, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1878412145187198653" + } + }, + "cborHex": "1b1a1175e4cfa996bd", + "cborBytes": [27, 26, 17, 117, 228, 207, 169, 150, 189], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 627, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3418047482841839885" + } + }, + "cborHex": "1b2f6f58137834b90d", + "cborBytes": [27, 47, 111, 88, 19, 120, 52, 185, 13], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 628, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5806858444669784882" + } + }, + "cborHex": "1b50961afd47851332", + "cborBytes": [27, 80, 150, 26, 253, 71, 133, 19, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 629, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14495393255283907138" + } + }, + "cborHex": "1bc929fb5da4ca5a42", + "cborBytes": [27, 201, 41, 251, 93, 164, 202, 90, 66], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 630, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15584112832083376165" + } + }, + "cborHex": "1bd845e40d77efb825", + "cborBytes": [27, 216, 69, 228, 13, 119, 239, 184, 37], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 631, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5403331004855747806" + } + }, + "cborHex": "1b4afc7cebbc4804de", + "cborBytes": [27, 74, 252, 124, 235, 188, 72, 4, 222], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 632, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14087777046811920679" + } + }, + "cborHex": "1bc381d69576204927", + "cborBytes": [27, 195, 129, 214, 149, 118, 32, 73, 39], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 633, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "140994136162147926" + } + }, + "cborHex": "1b01f4e96b795b9e56", + "cborBytes": [27, 1, 244, 233, 107, 121, 91, 158, 86], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 634, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10714536516941521657" + } + }, + "cborHex": "1b94b1ae31b14022f9", + "cborBytes": [27, 148, 177, 174, 49, 177, 64, 34, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 635, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "803929369131443823" + } + }, + "cborHex": "1b0b2821807795666f", + "cborBytes": [27, 11, 40, 33, 128, 119, 149, 102, 111], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 636, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4891772052892828416" + } + }, + "cborHex": "1b43e310c3aedc4300", + "cborBytes": [27, 67, 227, 16, 195, 174, 220, 67, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 637, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16113809695226030908" + } + }, + "cborHex": "1bdf9fc08b0e316b3c", + "cborBytes": [27, 223, 159, 192, 139, 14, 49, 107, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 638, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1095576627261168708" + } + }, + "cborHex": "1b0f3445234c1f5c44", + "cborBytes": [27, 15, 52, 69, 35, 76, 31, 92, 68], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 639, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5528577794338871326" + } + }, + "cborHex": "1b4cb9743658ae581e", + "cborBytes": [27, 76, 185, 116, 54, 88, 174, 88, 30], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 640, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15259241804571443822" + } + }, + "cborHex": "1bd3c3b7930745826e", + "cborBytes": [27, 211, 195, 183, 147, 7, 69, 130, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 641, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4067378274077119550" + } + }, + "cborHex": "1b38723afd8982143e", + "cborBytes": [27, 56, 114, 58, 253, 137, 130, 20, 62], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 642, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16975259622434142115" + } + }, + "cborHex": "1beb943cb01537f7a3", + "cborBytes": [27, 235, 148, 60, 176, 21, 55, 247, 163], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 643, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16979758914161774745" + } + }, + "cborHex": "1beba438c512629099", + "cborBytes": [27, 235, 164, 56, 197, 18, 98, 144, 153], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 644, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12060106148230292734" + } + }, + "cborHex": "1ba75e1aa506c564fe", + "cborBytes": [27, 167, 94, 26, 165, 6, 197, 100, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 645, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17705633013187517303" + } + }, + "cborHex": "1bf5b70b6ac2789b77", + "cborBytes": [27, 245, 183, 11, 106, 194, 120, 155, 119], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 646, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17190587182418314966" + } + }, + "cborHex": "1bee913bf6786d46d6", + "cborBytes": [27, 238, 145, 59, 246, 120, 109, 70, 214], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 647, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13877900929741261448" + } + }, + "cborHex": "1bc098355e094a8a88", + "cborBytes": [27, 192, 152, 53, 94, 9, 74, 138, 136], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 648, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12472314588302162103" + } + }, + "cborHex": "1bad16900972ac38b7", + "cborBytes": [27, 173, 22, 144, 9, 114, 172, 56, 183], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 649, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2901491771686189711" + } + }, + "cborHex": "1b28442b64c212fa8f", + "cborBytes": [27, 40, 68, 43, 100, 194, 18, 250, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 650, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12729548595193716759" + } + }, + "cborHex": "1bb0a87100d7982017", + "cborBytes": [27, 176, 168, 113, 0, 215, 152, 32, 23], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 651, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12489405378470459728" + } + }, + "cborHex": "1bad5348051f95b950", + "cborBytes": [27, 173, 83, 72, 5, 31, 149, 185, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 652, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8933768230407755685" + } + }, + "cborHex": "1b7bfb1edf571fd7a5", + "cborBytes": [27, 123, 251, 30, 223, 87, 31, 215, 165], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 653, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4586072116660936800" + } + }, + "cborHex": "1b3fa5004ac3e62060", + "cborBytes": [27, 63, 165, 0, 74, 195, 230, 32, 96], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 654, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "408911936919476856" + } + }, + "cborHex": "1b05acbf3d78809a78", + "cborBytes": [27, 5, 172, 191, 61, 120, 128, 154, 120], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 655, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13122179410044215274" + } + }, + "cborHex": "1bb61b58a62ea15fea", + "cborBytes": [27, 182, 27, 88, 166, 46, 161, 95, 234], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 656, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "699940864186041127" + } + }, + "cborHex": "1b09b6b081ed96c327", + "cborBytes": [27, 9, 182, 176, 129, 237, 150, 195, 39], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 657, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18136831503714749072" + } + }, + "cborHex": "1bfbb2f828da080a90", + "cborBytes": [27, 251, 178, 248, 40, 218, 8, 10, 144], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 658, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6792995832713640201" + } + }, + "cborHex": "1b5e4591b8119af909", + "cborBytes": [27, 94, 69, 145, 184, 17, 154, 249, 9], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 659, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1831471366095202200" + } + }, + "cborHex": "1b196ab18100676798", + "cborBytes": [27, 25, 106, 177, 129, 0, 103, 103, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 660, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2645871472375485740" + } + }, + "cborHex": "1b24b80615f047d52c", + "cborBytes": [27, 36, 184, 6, 21, 240, 71, 213, 44], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 661, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "756089642263834311" + } + }, + "cborHex": "1b0a7e2b86117ceec7", + "cborBytes": [27, 10, 126, 43, 134, 17, 124, 238, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 662, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5826764630798738611" + } + }, + "cborHex": "1b50dcd38f6891a4b3", + "cborBytes": [27, 80, 220, 211, 143, 104, 145, 164, 179], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 663, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10472847311426888242" + } + }, + "cborHex": "1b9157072468812232", + "cborBytes": [27, 145, 87, 7, 36, 104, 129, 34, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 664, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12901062148413323080" + } + }, + "cborHex": "1bb309c7abd569f748", + "cborBytes": [27, 179, 9, 199, 171, 213, 105, 247, 72], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 665, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13289680885121538745" + } + }, + "cborHex": "1bb86e6e5a6ff7dab9", + "cborBytes": [27, 184, 110, 110, 90, 111, 247, 218, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 666, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4563948041490731952" + } + }, + "cborHex": "1b3f5666901a6513b0", + "cborBytes": [27, 63, 86, 102, 144, 26, 101, 19, 176], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 667, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "245931127073577384" + } + }, + "cborHex": "1b0369b90e9c6e99a8", + "cborBytes": [27, 3, 105, 185, 14, 156, 110, 153, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 668, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11028286646375924087" + } + }, + "cborHex": "1b990c5846466bc177", + "cborBytes": [27, 153, 12, 88, 70, 70, 107, 193, 119], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 669, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8525291052624525569" + } + }, + "cborHex": "1b764feb0b1e803901", + "cborBytes": [27, 118, 79, 235, 11, 30, 128, 57, 1], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 670, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10428350738879037636" + } + }, + "cborHex": "1b90b8f1bec81140c4", + "cborBytes": [27, 144, 184, 241, 190, 200, 17, 64, 196], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 671, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5206735390057000528" + } + }, + "cborHex": "1b48420a4033cd6e50", + "cborBytes": [27, 72, 66, 10, 64, 51, 205, 110, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 672, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17598108480551633640" + } + }, + "cborHex": "1bf4390a6c9e11c2e8", + "cborBytes": [27, 244, 57, 10, 108, 158, 17, 194, 232], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 673, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10741115053577753715" + } + }, + "cborHex": "1b95101b3b7c1a5473", + "cborBytes": [27, 149, 16, 27, 59, 124, 26, 84, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 674, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15899477813601488006" + } + }, + "cborHex": "1bdca64ad519ebcc86", + "cborBytes": [27, 220, 166, 74, 213, 25, 235, 204, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 675, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13737430371449101754" + } + }, + "cborHex": "1bbea5282388e2ddba", + "cborBytes": [27, 190, 165, 40, 35, 136, 226, 221, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 676, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12569252005976836412" + } + }, + "cborHex": "1bae6ef41acc9d893c", + "cborBytes": [27, 174, 110, 244, 26, 204, 157, 137, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 677, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1750366878465299165" + } + }, + "cborHex": "1b184a8d66f18892dd", + "cborBytes": [27, 24, 74, 141, 102, 241, 136, 146, 221], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 678, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16209281657555125275" + } + }, + "cborHex": "1be0f2efc97ed4041b", + "cborBytes": [27, 224, 242, 239, 201, 126, 212, 4, 27], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 679, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9270815461845678518" + } + }, + "cborHex": "1b80a88d8b2d82b9b6", + "cborBytes": [27, 128, 168, 141, 139, 45, 130, 185, 182], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 680, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15295291729544866237" + } + }, + "cborHex": "1bd443caca437de9bd", + "cborBytes": [27, 212, 67, 202, 202, 67, 125, 233, 189], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 681, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12369439456193298929" + } + }, + "cborHex": "1baba913a6391a41f1", + "cborBytes": [27, 171, 169, 19, 166, 57, 26, 65, 241], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 682, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "767711214728958989" + } + }, + "cborHex": "1b0aa775484400d40d", + "cborBytes": [27, 10, 167, 117, 72, 68, 0, 212, 13], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 683, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2227398316583142447" + } + }, + "cborHex": "1b1ee94ef7b93dc42f", + "cborBytes": [27, 30, 233, 78, 247, 185, 61, 196, 47], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 684, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13968660190444548007" + } + }, + "cborHex": "1bc1daa66f1f966fa7", + "cborBytes": [27, 193, 218, 166, 111, 31, 150, 111, 167], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 685, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "571208911027237542" + } + }, + "cborHex": "1b07ed577a6a50f2a6", + "cborBytes": [27, 7, 237, 87, 122, 106, 80, 242, 166], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 686, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12513545967245374521" + } + }, + "cborHex": "1bada90bc1f22eb439", + "cborBytes": [27, 173, 169, 11, 193, 242, 46, 180, 57], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 687, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17657982061037524024" + } + }, + "cborHex": "1bf50dc120e65c9438", + "cborBytes": [27, 245, 13, 193, 32, 230, 92, 148, 56], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 688, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12900720844734105399" + } + }, + "cborHex": "1bb3089141e0da8737", + "cborBytes": [27, 179, 8, 145, 65, 224, 218, 135, 55], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 689, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12558086081754787400" + } + }, + "cborHex": "1bae4748c179c56e48", + "cborBytes": [27, 174, 71, 72, 193, 121, 197, 110, 72], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 690, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9024202127743115453" + } + }, + "cborHex": "1b7d3c6805dd73e0bd", + "cborBytes": [27, 125, 60, 104, 5, 221, 115, 224, 189], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 691, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16631974839947764313" + } + }, + "cborHex": "1be6d0a4ff38522259", + "cborBytes": [27, 230, 208, 164, 255, 56, 82, 34, 89], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 692, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16831879782955891592" + } + }, + "cborHex": "1be996d97bc52a3b88", + "cborBytes": [27, 233, 150, 217, 123, 197, 42, 59, 136], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 693, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8621763350030483087" + } + }, + "cborHex": "1b77a6a816380c7e8f", + "cborBytes": [27, 119, 166, 168, 22, 56, 12, 126, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 694, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5501695243638247757" + } + }, + "cborHex": "1b4c59f2acc383914d", + "cborBytes": [27, 76, 89, 242, 172, 195, 131, 145, 77], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 695, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1976583568868689550" + } + }, + "cborHex": "1b1b6e3c48934ac68e", + "cborBytes": [27, 27, 110, 60, 72, 147, 74, 198, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 696, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6643505468026331821" + } + }, + "cborHex": "1b5c3279063d1322ad", + "cborBytes": [27, 92, 50, 121, 6, 61, 19, 34, 173], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 697, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11215046770052196968" + } + }, + "cborHex": "1b9ba3d99e145a6a68", + "cborBytes": [27, 155, 163, 217, 158, 20, 90, 106, 104], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 698, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13258389923081886545" + } + }, + "cborHex": "1bb7ff43639aea1b51", + "cborBytes": [27, 183, 255, 67, 99, 154, 234, 27, 81], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 699, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14632683307905769011" + } + }, + "cborHex": "1bcb11bbf0f682de33", + "cborBytes": [27, 203, 17, 187, 240, 246, 130, 222, 51], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 700, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3109201062649057462" + } + }, + "cborHex": "1b2b2619e4aa76d0b6", + "cborBytes": [27, 43, 38, 25, 228, 170, 118, 208, 182], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 701, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8934586619030900692" + } + }, + "cborHex": "1b7bfe07314a4b8fd4", + "cborBytes": [27, 123, 254, 7, 49, 74, 75, 143, 212], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 702, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13795796985398482578" + } + }, + "cborHex": "1bbf748443d414d692", + "cborBytes": [27, 191, 116, 132, 67, 212, 20, 214, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 703, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "73527196749162185" + } + }, + "cborHex": "1b010538988b9066c9", + "cborBytes": [27, 1, 5, 56, 152, 139, 144, 102, 201], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 704, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7325887245334700803" + } + }, + "cborHex": "1b65aac7a2aabd6303", + "cborBytes": [27, 101, 170, 199, 162, 170, 189, 99, 3], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 705, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4562974336979425028" + } + }, + "cborHex": "1b3f52f0fbdae1d704", + "cborBytes": [27, 63, 82, 240, 251, 218, 225, 215, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 706, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "803664463182719564" + } + }, + "cborHex": "1b0b2730923e9c6a4c", + "cborBytes": [27, 11, 39, 48, 146, 62, 156, 106, 76], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 707, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15761067901662789331" + } + }, + "cborHex": "1bdaba8fc0376bfed3", + "cborBytes": [27, 218, 186, 143, 192, 55, 107, 254, 211], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 708, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1162030488590883105" + } + }, + "cborHex": "1b10205c929aa21921", + "cborBytes": [27, 16, 32, 92, 146, 154, 162, 25, 33], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 709, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16825524657341147723" + } + }, + "cborHex": "1be9804587c8652a4b", + "cborBytes": [27, 233, 128, 69, 135, 200, 101, 42, 75], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 710, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9862104348628341328" + } + }, + "cborHex": "1b88dd3ba745d3d250", + "cborBytes": [27, 136, 221, 59, 167, 69, 211, 210, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 711, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4099685881773365901" + } + }, + "cborHex": "1b38e50296a1c91a8d", + "cborBytes": [27, 56, 229, 2, 150, 161, 201, 26, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 712, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12872062361537730778" + } + }, + "cborHex": "1bb2a2c084ca21d8da", + "cborBytes": [27, 178, 162, 192, 132, 202, 33, 216, 218], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 713, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12658408903951233419" + } + }, + "cborHex": "1bafabb3d4bda7b18b", + "cborBytes": [27, 175, 171, 179, 212, 189, 167, 177, 139], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 714, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16413311126941908624" + } + }, + "cborHex": "1be3c7cb822d56be90", + "cborBytes": [27, 227, 199, 203, 130, 45, 86, 190, 144], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 715, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10255933407101926140" + } + }, + "cborHex": "1b8e546518725f3afc", + "cborBytes": [27, 142, 84, 101, 24, 114, 95, 58, 252], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 716, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14211431251343195294" + } + }, + "cborHex": "1bc539256d7e323c9e", + "cborBytes": [27, 197, 57, 37, 109, 126, 50, 60, 158], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 717, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4163988271325313565" + } + }, + "cborHex": "1b39c97545613cfa1d", + "cborBytes": [27, 57, 201, 117, 69, 97, 60, 250, 29], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 718, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1765979599309004405" + } + }, + "cborHex": "1b18820516c9665e75", + "cborBytes": [27, 24, 130, 5, 22, 201, 102, 94, 117], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 719, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5376118115286785207" + } + }, + "cborHex": "1b4a9bcef124361cb7", + "cborBytes": [27, 74, 155, 206, 241, 36, 54, 28, 183], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 720, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12419967106376909536" + } + }, + "cborHex": "1bac5c964789a1c2e0", + "cborBytes": [27, 172, 92, 150, 71, 137, 161, 194, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 721, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6409919665114979998" + } + }, + "cborHex": "1b58f49bf965f81e9e", + "cborBytes": [27, 88, 244, 155, 249, 101, 248, 30, 158], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 722, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9239472549482483145" + } + }, + "cborHex": "1b80393354b7e04dc9", + "cborBytes": [27, 128, 57, 51, 84, 183, 224, 77, 201], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 723, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14939463482536718194" + } + }, + "cborHex": "1bcf53a2e27b856f72", + "cborBytes": [27, 207, 83, 162, 226, 123, 133, 111, 114], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 724, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13636316382267974866" + } + }, + "cborHex": "1bbd3ded8059ec24d2", + "cborBytes": [27, 189, 61, 237, 128, 89, 236, 36, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 725, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6092604631480174044" + } + }, + "cborHex": "1b548d47a1e04685dc", + "cborBytes": [27, 84, 141, 71, 161, 224, 70, 133, 220], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 726, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2005146736569340916" + } + }, + "cborHex": "1b1bd3b6554bbfd3f4", + "cborBytes": [27, 27, 211, 182, 85, 75, 191, 211, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 727, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5937570332032367665" + } + }, + "cborHex": "1b52667cc225affc31", + "cborBytes": [27, 82, 102, 124, 194, 37, 175, 252, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 728, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3945036721016283435" + } + }, + "cborHex": "1b36bf95fefe0c212b", + "cborBytes": [27, 54, 191, 149, 254, 254, 12, 33, 43], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 729, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8468915055654810333" + } + }, + "cborHex": "1b7587a15f754332dd", + "cborBytes": [27, 117, 135, 161, 95, 117, 67, 50, 221], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 730, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "873715521778549378" + } + }, + "cborHex": "1b0c200fa34e5b0282", + "cborBytes": [27, 12, 32, 15, 163, 78, 91, 2, 130], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 731, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9253885735700895992" + } + }, + "cborHex": "1b806c680c248198f8", + "cborBytes": [27, 128, 108, 104, 12, 36, 129, 152, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 732, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6770612855571868494" + } + }, + "cborHex": "1b5df60c85180deb4e", + "cborBytes": [27, 93, 246, 12, 133, 24, 13, 235, 78], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 733, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5127087370806581159" + } + }, + "cborHex": "1b472712cc9d5157a7", + "cborBytes": [27, 71, 39, 18, 204, 157, 81, 87, 167], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 734, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8851840675319494036" + } + }, + "cborHex": "1b7ad80e31f4c5b594", + "cborBytes": [27, 122, 216, 14, 49, 244, 197, 181, 148], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 735, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16092824118834535484" + } + }, + "cborHex": "1bdf553245cbf89c3c", + "cborBytes": [27, 223, 85, 50, 69, 203, 248, 156, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 736, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3758247881281858582" + } + }, + "cborHex": "1b3427fa8935ab6c16", + "cborBytes": [27, 52, 39, 250, 137, 53, 171, 108, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 737, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10727531926830836171" + } + }, + "cborHex": "1b94dfd9735769e9cb", + "cborBytes": [27, 148, 223, 217, 115, 87, 105, 233, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 738, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14049819261889976855" + } + }, + "cborHex": "1bc2fafc2df7649a17", + "cborBytes": [27, 194, 250, 252, 45, 247, 100, 154, 23], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 739, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16746302389938225465" + } + }, + "cborHex": "1be866d14c458b0139", + "cborBytes": [27, 232, 102, 209, 76, 69, 139, 1, 57], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 740, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10502165146016339" + } + }, + "cborHex": "1b00254fa9dee69a53", + "cborBytes": [27, 0, 37, 79, 169, 222, 230, 154, 83], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 741, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7792666817213456115" + } + }, + "cborHex": "1b6c251d2ed4fb5ef3", + "cborBytes": [27, 108, 37, 29, 46, 212, 251, 94, 243], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 742, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16136679528993909085" + } + }, + "cborHex": "1bdff100892bffe95d", + "cborBytes": [27, 223, 241, 0, 137, 43, 255, 233, 93], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 743, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16632657484816130463" + } + }, + "cborHex": "1be6d311dbdd35219f", + "cborBytes": [27, 230, 211, 17, 219, 221, 53, 33, 159], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 744, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4164007252580686884" + } + }, + "cborHex": "1b39c98688cc38dc24", + "cborBytes": [27, 57, 201, 134, 136, 204, 56, 220, 36], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 745, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9286080524358924591" + } + }, + "cborHex": "1b80dec9098216392f", + "cborBytes": [27, 128, 222, 201, 9, 130, 22, 57, 47], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 746, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17603350163971621773" + } + }, + "cborHex": "1bf44ba9b52457c38d", + "cborBytes": [27, 244, 75, 169, 181, 36, 87, 195, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 747, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13041804203801303173" + } + }, + "cborHex": "1bb4fdcbd32dc5d885", + "cborBytes": [27, 180, 253, 203, 211, 45, 197, 216, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 748, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16130277945158313760" + } + }, + "cborHex": "1bdfda4254497aa720", + "cborBytes": [27, 223, 218, 66, 84, 73, 122, 167, 32], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 749, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5809670098851030766" + } + }, + "cborHex": "1b50a0182c883966ee", + "cborBytes": [27, 80, 160, 24, 44, 136, 57, 102, 238], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 750, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15081915133811203062" + } + }, + "cborHex": "1bd14db9e823679bf6", + "cborBytes": [27, 209, 77, 185, 232, 35, 103, 155, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 751, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9389038581364529369" + } + }, + "cborHex": "1b824c90d830ab98d9", + "cborBytes": [27, 130, 76, 144, 216, 48, 171, 152, 217], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 752, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16689245331759527470" + } + }, + "cborHex": "1be79c1c34b0df762e", + "cborBytes": [27, 231, 156, 28, 52, 176, 223, 118, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 753, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3825351429761261005" + } + }, + "cborHex": "1b351660db97f3ddcd", + "cborBytes": [27, 53, 22, 96, 219, 151, 243, 221, 205], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 754, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8591881063339858479" + } + }, + "cborHex": "1b773c7e4e2cc71a2f", + "cborBytes": [27, 119, 60, 126, 78, 44, 199, 26, 47], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 755, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2380718212644518202" + } + }, + "cborHex": "1b210a0299cefab93a", + "cborBytes": [27, 33, 10, 2, 153, 206, 250, 185, 58], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 756, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11392594056019785440" + } + }, + "cborHex": "1b9e1a9feef34936e0", + "cborBytes": [27, 158, 26, 159, 238, 243, 73, 54, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 757, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3623000692263546233" + } + }, + "cborHex": "1b32477bef235ced79", + "cborBytes": [27, 50, 71, 123, 239, 35, 92, 237, 121], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 758, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12378997218630237614" + } + }, + "cborHex": "1babcb08623400fdae", + "cborBytes": [27, 171, 203, 8, 98, 52, 0, 253, 174], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 759, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11257244497404918025" + } + }, + "cborHex": "1b9c39c43a198a7909", + "cborBytes": [27, 156, 57, 196, 58, 25, 138, 121, 9], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 760, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4347426025881095367" + } + }, + "cborHex": "1b3c5528efd7ee4cc7", + "cborBytes": [27, 60, 85, 40, 239, 215, 238, 76, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 761, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18392333532899069667" + } + }, + "cborHex": "1bff3eb1e6c2f44ee3", + "cborBytes": [27, 255, 62, 177, 230, 194, 244, 78, 227], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 762, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10690674932988780497" + } + }, + "cborHex": "1b945ce835bdf81fd1", + "cborBytes": [27, 148, 92, 232, 53, 189, 248, 31, 209], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 763, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2474916774986032671" + } + }, + "cborHex": "1b2258abb1b5b2a61f", + "cborBytes": [27, 34, 88, 171, 177, 181, 178, 166, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 764, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4214335557084713584" + } + }, + "cborHex": "1b3a7c53dc54551270", + "cborBytes": [27, 58, 124, 83, 220, 84, 85, 18, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 765, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15504316285933304408" + } + }, + "cborHex": "1bd72a6584445bba58", + "cborBytes": [27, 215, 42, 101, 132, 68, 91, 186, 88], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 766, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3995429490598257658" + } + }, + "cborHex": "1b37729df3f83aa3fa", + "cborBytes": [27, 55, 114, 157, 243, 248, 58, 163, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 767, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9320617353007091932" + } + }, + "cborHex": "1b81597c198d5450dc", + "cborBytes": [27, 129, 89, 124, 25, 141, 84, 80, 220], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 768, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6376435074009544612" + } + }, + "cborHex": "1b587da5ea7fae37a4", + "cborBytes": [27, 88, 125, 165, 234, 127, 174, 55, 164], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 769, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10265623428730017668" + } + }, + "cborHex": "1b8e76d21e6b615784", + "cborBytes": [27, 142, 118, 210, 30, 107, 97, 87, 132], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 770, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7671328167968558846" + } + }, + "cborHex": "1b6a7608530736cefe", + "cborBytes": [27, 106, 118, 8, 83, 7, 54, 206, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 771, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15721329822320407376" + } + }, + "cborHex": "1bda2d622da029b350", + "cborBytes": [27, 218, 45, 98, 45, 160, 41, 179, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 772, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17561436381036147219" + } + }, + "cborHex": "1bf3b6c1581547f213", + "cborBytes": [27, 243, 182, 193, 88, 21, 71, 242, 19], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 773, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "117499563903985795" + } + }, + "cborHex": "1b01a1713b17c2a883", + "cborBytes": [27, 1, 161, 113, 59, 23, 194, 168, 131], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 774, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16949367239842786972" + } + }, + "cborHex": "1beb383fb3fa78ee9c", + "cborBytes": [27, 235, 56, 63, 179, 250, 120, 238, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 775, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14951173367575468383" + } + }, + "cborHex": "1bcf7d3cf68d9dd95f", + "cborBytes": [27, 207, 125, 60, 246, 141, 157, 217, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 776, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8306802606094080477" + } + }, + "cborHex": "1b7347b0f57b86d9dd", + "cborBytes": [27, 115, 71, 176, 245, 123, 134, 217, 221], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 777, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6546326072619654866" + } + }, + "cborHex": "1b5ad938e10e5f5ed2", + "cborBytes": [27, 90, 217, 56, 225, 14, 95, 94, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 778, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8790725169697383268" + } + }, + "cborHex": "1b79feedf771e5e364", + "cborBytes": [27, 121, 254, 237, 247, 113, 229, 227, 100], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 779, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7699320044946733146" + } + }, + "cborHex": "1b6ad97ac9c318385a", + "cborBytes": [27, 106, 217, 122, 201, 195, 24, 56, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 780, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12338187175882969440" + } + }, + "cborHex": "1bab3a0bddaec8d160", + "cborBytes": [27, 171, 58, 11, 221, 174, 200, 209, 96], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 781, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9774911661773146876" + } + }, + "cborHex": "1b87a7765ddecfcafc", + "cborBytes": [27, 135, 167, 118, 93, 222, 207, 202, 252], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 782, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3401760483123171560" + } + }, + "cborHex": "1b2f357b22d78490e8", + "cborBytes": [27, 47, 53, 123, 34, 215, 132, 144, 232], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 783, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4498386151085659539" + } + }, + "cborHex": "1b3e6d7a5ef5ff5593", + "cborBytes": [27, 62, 109, 122, 94, 245, 255, 85, 147], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 784, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13566238558488920704" + } + }, + "cborHex": "1bbc44f61788f08280", + "cborBytes": [27, 188, 68, 246, 23, 136, 240, 130, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 785, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15279861951261506661" + } + }, + "cborHex": "1bd40cf97d0df2fc65", + "cborBytes": [27, 212, 12, 249, 125, 13, 242, 252, 101], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 786, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16348203848027803851" + } + }, + "cborHex": "1be2e07cc8855f10cb", + "cborBytes": [27, 226, 224, 124, 200, 133, 95, 16, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 787, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11806627335766023373" + } + }, + "cborHex": "1ba3d99101f7c01ccd", + "cborBytes": [27, 163, 217, 145, 1, 247, 192, 28, 205], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 788, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2759049131357964814" + } + }, + "cborHex": "1b264a1c9120710a0e", + "cborBytes": [27, 38, 74, 28, 145, 32, 113, 10, 14], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 789, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14135286915753678087" + } + }, + "cborHex": "1bc42aa08ed3b99507", + "cborBytes": [27, 196, 42, 160, 142, 211, 185, 149, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 790, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13287713105701708235" + } + }, + "cborHex": "1bb86770ab16a721cb", + "cborBytes": [27, 184, 103, 112, 171, 22, 167, 33, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 791, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15784066919532866083" + } + }, + "cborHex": "1bdb0c453c59c02a23", + "cborBytes": [27, 219, 12, 69, 60, 89, 192, 42, 35], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 792, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4190011680494245728" + } + }, + "cborHex": "1b3a25e96c7c98d760", + "cborBytes": [27, 58, 37, 233, 108, 124, 152, 215, 96], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 793, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14875306683311582541" + } + }, + "cborHex": "1bce6fb49d9fc7ed4d", + "cborBytes": [27, 206, 111, 180, 157, 159, 199, 237, 77], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 794, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5445714733941519197" + } + }, + "cborHex": "1b4b9310b2a8b1f35d", + "cborBytes": [27, 75, 147, 16, 178, 168, 177, 243, 93], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 795, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13653944990550261848" + } + }, + "cborHex": "1bbd7c8ea090790058", + "cborBytes": [27, 189, 124, 142, 160, 144, 121, 0, 88], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 796, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5677086562242429179" + } + }, + "cborHex": "1b4ec910265d9a80fb", + "cborBytes": [27, 78, 201, 16, 38, 93, 154, 128, 251], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 797, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11224711217180303895" + } + }, + "cborHex": "1b9bc62f61865fe217", + "cborBytes": [27, 155, 198, 47, 97, 134, 95, 226, 23], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 798, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17954461994213830274" + } + }, + "cborHex": "1bf92b100e925dee82", + "cborBytes": [27, 249, 43, 16, 14, 146, 93, 238, 130], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 799, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4997200470907189803" + } + }, + "cborHex": "1b45599f5a1bd67a2b", + "cborBytes": [27, 69, 89, 159, 90, 27, 214, 122, 43], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 800, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16960115328328153469" + } + }, + "cborHex": "1beb5e6f0856a8397d", + "cborBytes": [27, 235, 94, 111, 8, 86, 168, 57, 125], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 801, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16163819233585436199" + } + }, + "cborHex": "1be0516bf40f7c9627", + "cborBytes": [27, 224, 81, 107, 244, 15, 124, 150, 39], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 802, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7212126506821723202" + } + }, + "cborHex": "1b64169ed8b249a442", + "cborBytes": [27, 100, 22, 158, 216, 178, 73, 164, 66], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 803, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "603763195061709110" + } + }, + "cborHex": "1b0860ff6d521ba936", + "cborBytes": [27, 8, 96, 255, 109, 82, 27, 169, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 804, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6000428689008614580" + } + }, + "cborHex": "1b5345ce19dc6bdcb4", + "cborBytes": [27, 83, 69, 206, 25, 220, 107, 220, 180], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 805, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11216072035150456840" + } + }, + "cborHex": "1b9ba77e173655e808", + "cborBytes": [27, 155, 167, 126, 23, 54, 85, 232, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 806, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "924214862530811045" + } + }, + "cborHex": "1b0cd37885514914a5", + "cborBytes": [27, 12, 211, 120, 133, 81, 73, 20, 165], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 807, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5830672841523161779" + } + }, + "cborHex": "1b50eab60ea0816ab3", + "cborBytes": [27, 80, 234, 182, 14, 160, 129, 106, 179], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 808, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4361933946181856098" + } + }, + "cborHex": "1b3c88b3d043e32b62", + "cborBytes": [27, 60, 136, 179, 208, 67, 227, 43, 98], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 809, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14632176911506341834" + } + }, + "cborHex": "1bcb0fef605d01ffca", + "cborBytes": [27, 203, 15, 239, 96, 93, 1, 255, 202], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 810, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16028358607101197328" + } + }, + "cborHex": "1bde702b3b34d77c10", + "cborBytes": [27, 222, 112, 43, 59, 52, 215, 124, 16], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 811, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3195582357889740557" + } + }, + "cborHex": "1b2c58fd393c85ef0d", + "cborBytes": [27, 44, 88, 253, 57, 60, 133, 239, 13], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 812, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6825504056255236998" + } + }, + "cborHex": "1b5eb90fc6ae14cb86", + "cborBytes": [27, 94, 185, 15, 198, 174, 20, 203, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 813, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5263356611775429838" + } + }, + "cborHex": "1b490b32f3b313fcce", + "cborBytes": [27, 73, 11, 50, 243, 179, 19, 252, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 814, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6553355765600033810" + } + }, + "cborHex": "1b5af23258ff591c12", + "cborBytes": [27, 90, 242, 50, 88, 255, 89, 28, 18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 815, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "644183120089309940" + } + }, + "cborHex": "1b08f099227b39e2f4", + "cborBytes": [27, 8, 240, 153, 34, 123, 57, 226, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 816, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8317264656822865854" + } + }, + "cborHex": "1b736cdc237cd68fbe", + "cborBytes": [27, 115, 108, 220, 35, 124, 214, 143, 190], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 817, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "85655869040357110" + } + }, + "cborHex": "1b01304f8f1f13eef6", + "cborBytes": [27, 1, 48, 79, 143, 31, 19, 238, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 818, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10379602477683670837" + } + }, + "cborHex": "1b900bc175c0197f35", + "cborBytes": [27, 144, 11, 193, 117, 192, 25, 127, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 819, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6932493716200291462" + } + }, + "cborHex": "1b60352a4e11befc86", + "cborBytes": [27, 96, 53, 42, 78, 17, 190, 252, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 820, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12222536951317353337" + } + }, + "cborHex": "1ba99f2c99755b5379", + "cborBytes": [27, 169, 159, 44, 153, 117, 91, 83, 121], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 821, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7513301176557277879" + } + }, + "cborHex": "1b68449b9ce73892b7", + "cborBytes": [27, 104, 68, 155, 156, 231, 56, 146, 183], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 822, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3759639115280689584" + } + }, + "cborHex": "1b342cebdb1df829b0", + "cborBytes": [27, 52, 44, 235, 219, 29, 248, 41, 176], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 823, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11601063256941284456" + } + }, + "cborHex": "1ba0ff41912ed24c68", + "cborBytes": [27, 160, 255, 65, 145, 46, 210, 76, 104], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 824, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1040642065463253254" + } + }, + "cborHex": "1b0e711a71ea441906", + "cborBytes": [27, 14, 113, 26, 113, 234, 68, 25, 6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 825, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17814128507329687278" + } + }, + "cborHex": "1bf7387f7e7e8baeee", + "cborBytes": [27, 247, 56, 127, 126, 126, 139, 174, 238], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 826, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7233040155368739745" + } + }, + "cborHex": "1b6460ebb2f2e3d3a1", + "cborBytes": [27, 100, 96, 235, 178, 242, 227, 211, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 827, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12772638430976759908" + } + }, + "cborHex": "1bb14186fb0adf5864", + "cborBytes": [27, 177, 65, 134, 251, 10, 223, 88, 100], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 828, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5598272237935758066" + } + }, + "cborHex": "1b4db10ef082178af2", + "cborBytes": [27, 77, 177, 14, 240, 130, 23, 138, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 829, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9723373193971376955" + } + }, + "cborHex": "1b86f05c673d38233b", + "cborBytes": [27, 134, 240, 92, 103, 61, 56, 35, 59], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 830, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2489341974319727368" + } + }, + "cborHex": "1b228beb5627cc0308", + "cborBytes": [27, 34, 139, 235, 86, 39, 204, 3, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 831, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3902011725622830553" + } + }, + "cborHex": "1b3626bafd9f2865d9", + "cborBytes": [27, 54, 38, 186, 253, 159, 40, 101, 217], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 832, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11323128554436476419" + } + }, + "cborHex": "1b9d23d56d8144be03", + "cborBytes": [27, 157, 35, 213, 109, 129, 68, 190, 3], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 833, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10309374739241770713" + } + }, + "cborHex": "1b8f1241b434e41ed9", + "cborBytes": [27, 143, 18, 65, 180, 52, 228, 30, 217], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 834, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14804489570714253629" + } + }, + "cborHex": "1bcd741cd3b765f93d", + "cborBytes": [27, 205, 116, 28, 211, 183, 101, 249, 61], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 835, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15353916510081845516" + } + }, + "cborHex": "1bd51411b7a66f090c", + "cborBytes": [27, 213, 20, 17, 183, 166, 111, 9, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 836, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13349892617271532896" + } + }, + "cborHex": "1bb944589aca145d60", + "cborBytes": [27, 185, 68, 88, 154, 202, 20, 93, 96], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 837, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14981021972838032099" + } + }, + "cborHex": "1bcfe7481c875522e3", + "cborBytes": [27, 207, 231, 72, 28, 135, 85, 34, 227], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 838, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2272415313641266914" + } + }, + "cborHex": "1b1f893db01fbedee2", + "cborBytes": [27, 31, 137, 61, 176, 31, 190, 222, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 839, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8971495622210834723" + } + }, + "cborHex": "1b7c8127bc41d95123", + "cborBytes": [27, 124, 129, 39, 188, 65, 217, 81, 35], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 840, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9155211359903117351" + } + }, + "cborHex": "1b7f0dd839b6a57027", + "cborBytes": [27, 127, 13, 216, 57, 182, 165, 112, 39], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 841, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14984564519849133105" + } + }, + "cborHex": "1bcff3de0a07878431", + "cborBytes": [27, 207, 243, 222, 10, 7, 135, 132, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 842, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15767902791035528446" + } + }, + "cborHex": "1bdad2d80be89024fe", + "cborBytes": [27, 218, 210, 216, 11, 232, 144, 36, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 843, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10336318407646155448" + } + }, + "cborHex": "1b8f71fad3dd1492b8", + "cborBytes": [27, 143, 113, 250, 211, 221, 20, 146, 184], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 844, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6580398841783425035" + } + }, + "cborHex": "1b5b5245e1d4e4980b", + "cborBytes": [27, 91, 82, 69, 225, 212, 228, 152, 11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 845, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5755913624768882804" + } + }, + "cborHex": "1b4fe11cf2122e2874", + "cborBytes": [27, 79, 225, 28, 242, 18, 46, 40, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 846, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5257526918311063712" + } + }, + "cborHex": "1b48f67ce06afc30a0", + "cborBytes": [27, 72, 246, 124, 224, 106, 252, 48, 160], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 847, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13830905250963763709" + } + }, + "cborHex": "1bbff13f0be5c7b1fd", + "cborBytes": [27, 191, 241, 63, 11, 229, 199, 177, 253], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 848, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8468173669468678952" + } + }, + "cborHex": "1b7584ff1608ff2b28", + "cborBytes": [27, 117, 132, 255, 22, 8, 255, 43, 40], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 849, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14377211354676296140" + } + }, + "cborHex": "1bc7861d8da83179cc", + "cborBytes": [27, 199, 134, 29, 141, 168, 49, 121, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 850, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15057381815688619636" + } + }, + "cborHex": "1bd0f690fbe38be674", + "cborBytes": [27, 208, 246, 144, 251, 227, 139, 230, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 851, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15255307803596136843" + } + }, + "cborHex": "1bd3b5bd9f0c97a18b", + "cborBytes": [27, 211, 181, 189, 159, 12, 151, 161, 139], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 852, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2441279384243905991" + } + }, + "cborHex": "1b21e12aaa5f57a5c7", + "cborBytes": [27, 33, 225, 42, 170, 95, 87, 165, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 853, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10989131903877622416" + } + }, + "cborHex": "1b98813d3e6089aa90", + "cborBytes": [27, 152, 129, 61, 62, 96, 137, 170, 144], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 854, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16032712476079956192" + } + }, + "cborHex": "1bde7fa30d52b820e0", + "cborBytes": [27, 222, 127, 163, 13, 82, 184, 32, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 855, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5128533144533116249" + } + }, + "cborHex": "1b472c35b90ab6a559", + "cborBytes": [27, 71, 44, 53, 185, 10, 182, 165, 89], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 856, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1892696432294270984" + } + }, + "cborHex": "1b1a443560928c9808", + "cborBytes": [27, 26, 68, 53, 96, 146, 140, 152, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 857, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "411627968065080817" + } + }, + "cborHex": "1b05b66574c0228df1", + "cborBytes": [27, 5, 182, 101, 116, 192, 34, 141, 241], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 858, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7324181663531536232" + } + }, + "cborHex": "1b65a4b86af53a0f68", + "cborBytes": [27, 101, 164, 184, 106, 245, 58, 15, 104], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 859, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15882718511507789729" + } + }, + "cborHex": "1bdc6ac05601f157a1", + "cborBytes": [27, 220, 106, 192, 86, 1, 241, 87, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 860, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9265344288241048025" + } + }, + "cborHex": "1b80951d8a4e4d59d9", + "cborBytes": [27, 128, 149, 29, 138, 78, 77, 89, 217], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 861, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7214706474661359394" + } + }, + "cborHex": "1b641fc95044e6af22", + "cborBytes": [27, 100, 31, 201, 80, 68, 230, 175, 34], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 862, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6447617661072677891" + } + }, + "cborHex": "1b597a8a1a0fc59c03", + "cborBytes": [27, 89, 122, 138, 26, 15, 197, 156, 3], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 863, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "293224452359819341" + } + }, + "cborHex": "1b0411be15fa5d904d", + "cborBytes": [27, 4, 17, 190, 21, 250, 93, 144, 77], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 864, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "172801200705855644" + } + }, + "cborHex": "1b0265e9c6c8d5609c", + "cborBytes": [27, 2, 101, 233, 198, 200, 213, 96, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 865, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7259099972655871470" + } + }, + "cborHex": "1b64bd80f6fb3375ee", + "cborBytes": [27, 100, 189, 128, 246, 251, 51, 117, 238], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 866, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16229546128279132347" + } + }, + "cborHex": "1be13aee3741e4d8bb", + "cborBytes": [27, 225, 58, 238, 55, 65, 228, 216, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 867, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13682888665723973451" + } + }, + "cborHex": "1bbde362bf15b22f4b", + "cborBytes": [27, 189, 227, 98, 191, 21, 178, 47, 75], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 868, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5041558786366920257" + } + }, + "cborHex": "1b45f737013fa65641", + "cborBytes": [27, 69, 247, 55, 1, 63, 166, 86, 65], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 869, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12993707343425837440" + } + }, + "cborHex": "1bb452ebfc38481980", + "cborBytes": [27, 180, 82, 235, 252, 56, 72, 25, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 870, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7008961873013921018" + } + }, + "cborHex": "1b6144d5b03d4054fa", + "cborBytes": [27, 97, 68, 213, 176, 61, 64, 84, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 871, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15191357694577374315" + } + }, + "cborHex": "1bd2d28b56012e746b", + "cborBytes": [27, 210, 210, 139, 86, 1, 46, 116, 107], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 872, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "846826509903844476" + } + }, + "cborHex": "1b0bc088395d33d47c", + "cborBytes": [27, 11, 192, 136, 57, 93, 51, 212, 124], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 873, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "174461014574069363" + } + }, + "cborHex": "1b026bcf5e50d77673", + "cborBytes": [27, 2, 107, 207, 94, 80, 215, 118, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 874, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8186934848531061939" + } + }, + "cborHex": "1b719dd5de55f5dcb3", + "cborBytes": [27, 113, 157, 213, 222, 85, 245, 220, 179], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 875, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9149219581553471678" + } + }, + "cborHex": "1b7ef88ebc1a8af0be", + "cborBytes": [27, 126, 248, 142, 188, 26, 138, 240, 190], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 876, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "460750579185359264" + } + }, + "cborHex": "1b0664ea35ea6619a0", + "cborBytes": [27, 6, 100, 234, 53, 234, 102, 25, 160], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 877, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1067003160353997527" + } + }, + "cborHex": "1b0ecec1b89b1e82d7", + "cborBytes": [27, 14, 206, 193, 184, 155, 30, 130, 215], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 878, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12180139719641691802" + } + }, + "cborHex": "1ba9088c8ab7de769a", + "cborBytes": [27, 169, 8, 140, 138, 183, 222, 118, 154], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 879, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4756035569853785987" + } + }, + "cborHex": "1b4200d526f841e783", + "cborBytes": [27, 66, 0, 213, 38, 248, 65, 231, 131], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 880, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5583957609504006103" + } + }, + "cborHex": "1b4d7e33dc5b535fd7", + "cborBytes": [27, 77, 126, 51, 220, 91, 83, 95, 215], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 881, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9290283170434210005" + } + }, + "cborHex": "1b80edb7524c8558d5", + "cborBytes": [27, 128, 237, 183, 82, 76, 133, 88, 213], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 882, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17945774738344174991" + } + }, + "cborHex": "1bf90c330b322ee58f", + "cborBytes": [27, 249, 12, 51, 11, 50, 46, 229, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 883, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4312971774259115930" + } + }, + "cborHex": "1b3bdac0fa4300379a", + "cborBytes": [27, 59, 218, 192, 250, 67, 0, 55, 154], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 884, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "628759550715279440" + } + }, + "cborHex": "1b08b9cd7ae584b850", + "cborBytes": [27, 8, 185, 205, 122, 229, 132, 184, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 885, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14093351198842558920" + } + }, + "cborHex": "1bc395a43eddd619c8", + "cborBytes": [27, 195, 149, 164, 62, 221, 214, 25, 200], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 886, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8039519982095578992" + } + }, + "cborHex": "1b6f921cd419763770", + "cborBytes": [27, 111, 146, 28, 212, 25, 118, 55, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 887, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7492902531841690456" + } + }, + "cborHex": "1b67fc2327530c8b58", + "cborBytes": [27, 103, 252, 35, 39, 83, 12, 139, 88], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 888, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "645169817517567017" + } + }, + "cborHex": "1b08f41a87e0f02c29", + "cborBytes": [27, 8, 244, 26, 135, 224, 240, 44, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 889, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7270811880783755764" + } + }, + "cborHex": "1b64e71ce216ce39f4", + "cborBytes": [27, 100, 231, 28, 226, 22, 206, 57, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 890, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13859312615218959168" + } + }, + "cborHex": "1bc0562b64cd375340", + "cborBytes": [27, 192, 86, 43, 100, 205, 55, 83, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 891, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9054730771623030529" + } + }, + "cborHex": "1b7da8dda9ab63af01", + "cborBytes": [27, 125, 168, 221, 169, 171, 99, 175, 1], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 892, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16064228823271544737" + } + }, + "cborHex": "1bdeef9b00b9b117a1", + "cborBytes": [27, 222, 239, 155, 0, 185, 177, 23, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 893, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16882964607085438774" + } + }, + "cborHex": "1bea4c56dc40d1e736", + "cborBytes": [27, 234, 76, 86, 220, 64, 209, 231, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 894, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1885115796412392637" + } + }, + "cborHex": "1b1a2946d43da364bd", + "cborBytes": [27, 26, 41, 70, 212, 61, 163, 100, 189], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 895, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10925742793496673129" + } + }, + "cborHex": "1b97a0092f01a73b69", + "cborBytes": [27, 151, 160, 9, 47, 1, 167, 59, 105], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 896, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1103649761639416782" + } + }, + "cborHex": "1b0f50f39c5ef643ce", + "cborBytes": [27, 15, 80, 243, 156, 94, 246, 67, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 897, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6632926391078088081" + } + }, + "cborHex": "1b5c0ce368f185ed91", + "cborBytes": [27, 92, 12, 227, 104, 241, 133, 237, 145], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 898, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "886179133017733823" + } + }, + "cborHex": "1b0c4c5739eee2babf", + "cborBytes": [27, 12, 76, 87, 57, 238, 226, 186, 191], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 899, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11237300416453389825" + } + }, + "cborHex": "1b9bf2e930e50dae01", + "cborBytes": [27, 155, 242, 233, 48, 229, 13, 174, 1], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 900, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8156643071010957710" + } + }, + "cborHex": "1b713237a84742698e", + "cborBytes": [27, 113, 50, 55, 168, 71, 66, 105, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 901, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15103264552530631373" + } + }, + "cborHex": "1bd19993170a565acd", + "cborBytes": [27, 209, 153, 147, 23, 10, 86, 90, 205], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 902, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8800775122226756247" + } + }, + "cborHex": "1b7a22a2585c6bba97", + "cborBytes": [27, 122, 34, 162, 88, 92, 107, 186, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 903, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3424708262838794535" + } + }, + "cborHex": "1b2f87020529d9f927", + "cborBytes": [27, 47, 135, 2, 5, 41, 217, 249, 39], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 904, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15751955324719545357" + } + }, + "cborHex": "1bda9a2fe90fbb3c0d", + "cborBytes": [27, 218, 154, 47, 233, 15, 187, 60, 13], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 905, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11569970884608793962" + } + }, + "cborHex": "1ba090cb381eb81d6a", + "cborBytes": [27, 160, 144, 203, 56, 30, 184, 29, 106], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 906, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4899184924867047475" + } + }, + "cborHex": "1b43fd66bb6fa63033", + "cborBytes": [27, 67, 253, 102, 187, 111, 166, 48, 51], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 907, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15058495928663674826" + } + }, + "cborHex": "1bd0fa864387aa0fca", + "cborBytes": [27, 208, 250, 134, 67, 135, 170, 15, 202], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 908, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18229093920782561674" + } + }, + "cborHex": "1bfcfac056cd7a318a", + "cborBytes": [27, 252, 250, 192, 86, 205, 122, 49, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 909, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3660742730544827973" + } + }, + "cborHex": "1b32cd921e3437ce45", + "cborBytes": [27, 50, 205, 146, 30, 52, 55, 206, 69], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 910, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4559589345498525665" + } + }, + "cborHex": "1b3f46ea5a1c186fe1", + "cborBytes": [27, 63, 70, 234, 90, 28, 24, 111, 225], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 911, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2650880740535529616" + } + }, + "cborHex": "1b24c9d1fd118b7090", + "cborBytes": [27, 36, 201, 209, 253, 17, 139, 112, 144], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 912, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9266889843039945837" + } + }, + "cborHex": "1b809a9b36d312446d", + "cborBytes": [27, 128, 154, 155, 54, 211, 18, 68, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 913, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1270774675872259199" + } + }, + "cborHex": "1b11a2b2d5b8ed9c7f", + "cborBytes": [27, 17, 162, 178, 213, 184, 237, 156, 127], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 914, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10870122012114042955" + } + }, + "cborHex": "1b96da6e60ad36404b", + "cborBytes": [27, 150, 218, 110, 96, 173, 54, 64, 75], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 915, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15745207488301891162" + } + }, + "cborHex": "1bda8236c9f70dfe5a", + "cborBytes": [27, 218, 130, 54, 201, 247, 13, 254, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 916, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14215077562027126915" + } + }, + "cborHex": "1bc54619ba5b40b083", + "cborBytes": [27, 197, 70, 25, 186, 91, 64, 176, 131], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 917, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9054252933366607465" + } + }, + "cborHex": "1b7da72b1247daee69", + "cborBytes": [27, 125, 167, 43, 18, 71, 218, 238, 105], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 918, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10798736988408201296" + } + }, + "cborHex": "1b95dcd213a8f14050", + "cborBytes": [27, 149, 220, 210, 19, 168, 241, 64, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 919, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5819780067699490729" + } + }, + "cborHex": "1b50c4032316207fa9", + "cborBytes": [27, 80, 196, 3, 35, 22, 32, 127, 169], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 920, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4617698327179682471" + } + }, + "cborHex": "1b40155c29b775e2a7", + "cborBytes": [27, 64, 21, 92, 41, 183, 117, 226, 167], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 921, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3981286038891304652" + } + }, + "cborHex": "1b37405e8f015696cc", + "cborBytes": [27, 55, 64, 94, 143, 1, 86, 150, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 922, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "675540513161785149" + } + }, + "cborHex": "1b096000847e64af3d", + "cborBytes": [27, 9, 96, 0, 132, 126, 100, 175, 61], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 923, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9212313849956308850" + } + }, + "cborHex": "1b7fd8b6a33a0e9772", + "cborBytes": [27, 127, 216, 182, 163, 58, 14, 151, 114], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 924, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5183855294847088365" + } + }, + "cborHex": "1b47f0c0ece86376ed", + "cborBytes": [27, 71, 240, 192, 236, 232, 99, 118, 237], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 925, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2418929927507197346" + } + }, + "cborHex": "1b2191c3f3f9a0bda2", + "cborBytes": [27, 33, 145, 195, 243, 249, 160, 189, 162], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 926, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13368602643961644620" + } + }, + "cborHex": "1bb986d14658ae864c", + "cborBytes": [27, 185, 134, 209, 70, 88, 174, 134, 76], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 927, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2834817025989602364" + } + }, + "cborHex": "1b27574b10cd56ec3c", + "cborBytes": [27, 39, 87, 75, 16, 205, 86, 236, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 928, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3202804207157396215" + } + }, + "cborHex": "1b2c72a5750cbe42f7", + "cborBytes": [27, 44, 114, 165, 117, 12, 190, 66, 247], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 929, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8866372006926863538" + } + }, + "cborHex": "1b7b0bae5d3f57ccb2", + "cborBytes": [27, 123, 11, 174, 93, 63, 87, 204, 178], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 930, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9443018380252489613" + } + }, + "cborHex": "1b830c572f826f278d", + "cborBytes": [27, 131, 12, 87, 47, 130, 111, 39, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 931, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1624680914634612032" + } + }, + "cborHex": "1b168c06af16271d40", + "cborBytes": [27, 22, 140, 6, 175, 22, 39, 29, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 932, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "806640223134296445" + } + }, + "cborHex": "1b0b31c3025976297d", + "cborBytes": [27, 11, 49, 195, 2, 89, 118, 41, 125], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 933, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15269039615387378615" + } + }, + "cborHex": "1bd3e686a1a08823b7", + "cborBytes": [27, 211, 230, 134, 161, 160, 136, 35, 183], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 934, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10372843947467322770" + } + }, + "cborHex": "1b8ff3be9ccf59b592", + "cborBytes": [27, 143, 243, 190, 156, 207, 89, 181, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 935, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9694537910006861212" + } + }, + "cborHex": "1b8689eadd83844d9c", + "cborBytes": [27, 134, 137, 234, 221, 131, 132, 77, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 936, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17376661986629582169" + } + }, + "cborHex": "1bf1264e02e716fd59", + "cborBytes": [27, 241, 38, 78, 2, 231, 22, 253, 89], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 937, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5422775159121740673" + } + }, + "cborHex": "1b4b419146b0438381", + "cborBytes": [27, 75, 65, 145, 70, 176, 67, 131, 129], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 938, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2895517846069548604" + } + }, + "cborHex": "1b282ef223cfc7963c", + "cborBytes": [27, 40, 46, 242, 35, 207, 199, 150, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 939, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2774223157086164960" + } + }, + "cborHex": "1b268005434dc897e0", + "cborBytes": [27, 38, 128, 5, 67, 77, 200, 151, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 940, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18321023762834362125" + } + }, + "cborHex": "1bfe415a0b193b8f0d", + "cborBytes": [27, 254, 65, 90, 11, 25, 59, 143, 13], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 941, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2009273590541769458" + } + }, + "cborHex": "1b1be25faf5cd0daf2", + "cborBytes": [27, 27, 226, 95, 175, 92, 208, 218, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 942, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12305390749513287640" + } + }, + "cborHex": "1baac587b09f1e07d8", + "cborBytes": [27, 170, 197, 135, 176, 159, 30, 7, 216], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 943, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15724304658280786383" + } + }, + "cborHex": "1bda37f3c698d8a9cf", + "cborBytes": [27, 218, 55, 243, 198, 152, 216, 169, 207], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 944, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12819012641504765814" + } + }, + "cborHex": "1bb1e6481454222776", + "cborBytes": [27, 177, 230, 72, 20, 84, 34, 39, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 945, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16294792829227977239" + } + }, + "cborHex": "1be222bbbea2b74a17", + "cborBytes": [27, 226, 34, 187, 190, 162, 183, 74, 23], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 946, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3719474072190318067" + } + }, + "cborHex": "1b339e39f6482df5f3", + "cborBytes": [27, 51, 158, 57, 246, 72, 45, 245, 243], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 947, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11150513645811106801" + } + }, + "cborHex": "1b9abe951539b783f1", + "cborBytes": [27, 154, 190, 149, 21, 57, 183, 131, 241], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 948, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1162179388263641574" + } + }, + "cborHex": "1b1020e3ff02bc31e6", + "cborBytes": [27, 16, 32, 227, 255, 2, 188, 49, 230], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 949, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "821773573046880002" + } + }, + "cborHex": "1b0b6786b5f3434702", + "cborBytes": [27, 11, 103, 134, 181, 243, 67, 71, 2], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 950, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9193367832199415008" + } + }, + "cborHex": "1b7f956755b7bfc4e0", + "cborBytes": [27, 127, 149, 103, 85, 183, 191, 196, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 951, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4741701078127099063" + } + }, + "cborHex": "1b41cde80208da3cb7", + "cborBytes": [27, 65, 205, 232, 2, 8, 218, 60, 183], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 952, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6440921347990981016" + } + }, + "cborHex": "1b5962bfd72d3b8998", + "cborBytes": [27, 89, 98, 191, 215, 45, 59, 137, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 953, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1699679621081028563" + } + }, + "cborHex": "1b1796799c2e8157d3", + "cborBytes": [27, 23, 150, 121, 156, 46, 129, 87, 211], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 954, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1866185603275670051" + } + }, + "cborHex": "1b19e605eb3031c223", + "cborBytes": [27, 25, 230, 5, 235, 48, 49, 194, 35], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 955, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1796371595017577890" + } + }, + "cborHex": "1b18edfe72b59fe5a2", + "cborBytes": [27, 24, 237, 254, 114, 181, 159, 229, 162], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 956, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6246573076635473760" + } + }, + "cborHex": "1b56b0491e10605760", + "cborBytes": [27, 86, 176, 73, 30, 16, 96, 87, 96], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 957, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10611580544362038045" + } + }, + "cborHex": "1b9343e8485425431d", + "cborBytes": [27, 147, 67, 232, 72, 84, 37, 67, 29], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 958, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7750333682459134892" + } + }, + "cborHex": "1b6b8eb76bd1b8cbac", + "cborBytes": [27, 107, 142, 183, 107, 209, 184, 203, 172], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 959, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "427268500629980791" + } + }, + "cborHex": "1b05edf67003c38677", + "cborBytes": [27, 5, 237, 246, 112, 3, 195, 134, 119], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 960, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7719147836919095561" + } + }, + "cborHex": "1b6b1fec0f5449a109", + "cborBytes": [27, 107, 31, 236, 15, 84, 73, 161, 9], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 961, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12835984248168370825" + } + }, + "cborHex": "1bb22293aa6e95d289", + "cborBytes": [27, 178, 34, 147, 170, 110, 149, 210, 137], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 962, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16500101383638919999" + } + }, + "cborHex": "1be4fc22c981baab3f", + "cborBytes": [27, 228, 252, 34, 201, 129, 186, 171, 63], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 963, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17009746285066221479" + } + }, + "cborHex": "1bec0ec21ff0e477a7", + "cborBytes": [27, 236, 14, 194, 31, 240, 228, 119, 167], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 964, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12799692080771927977" + } + }, + "cborHex": "1bb1a1a421bcca8fa9", + "cborBytes": [27, 177, 161, 164, 33, 188, 202, 143, 169], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 965, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8820782476408153999" + } + }, + "cborHex": "1b7a69b6ed834c678f", + "cborBytes": [27, 122, 105, 182, 237, 131, 76, 103, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 966, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5412051984183857672" + } + }, + "cborHex": "1b4b1b789af73a1208", + "cborBytes": [27, 75, 27, 120, 154, 247, 58, 18, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 967, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17059527036779904541" + } + }, + "cborHex": "1becbf9d7467703e1d", + "cborBytes": [27, 236, 191, 157, 116, 103, 112, 62, 29], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 968, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17825619181605860149" + } + }, + "cborHex": "1bf76152339501b335", + "cborBytes": [27, 247, 97, 82, 51, 149, 1, 179, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 969, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4603904583510851123" + } + }, + "cborHex": "1b3fe45ad37ff4fe33", + "cborBytes": [27, 63, 228, 90, 211, 127, 244, 254, 51], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 970, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9096179266092205731" + } + }, + "cborHex": "1b7e3c1ed950b306a3", + "cborBytes": [27, 126, 60, 30, 217, 80, 179, 6, 163], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 971, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15196466945153033777" + } + }, + "cborHex": "1bd2e4b22c1acfe631", + "cborBytes": [27, 210, 228, 178, 44, 26, 207, 230, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 972, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6374927905588629568" + } + }, + "cborHex": "1b58784b278155d040", + "cborBytes": [27, 88, 120, 75, 39, 129, 85, 208, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 973, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15756806435349723131" + } + }, + "cborHex": "1bdaab6bf8459bf7fb", + "cborBytes": [27, 218, 171, 107, 248, 69, 155, 247, 251], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 974, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5999608660514754334" + } + }, + "cborHex": "1b5342e44a1956cf1e", + "cborBytes": [27, 83, 66, 228, 74, 25, 86, 207, 30], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 975, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "469913893466372789" + } + }, + "cborHex": "1b0685783247157ab5", + "cborBytes": [27, 6, 133, 120, 50, 71, 21, 122, 181], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 976, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11658835608861105270" + } + }, + "cborHex": "1ba1cc813710d75c76", + "cborBytes": [27, 161, 204, 129, 55, 16, 215, 92, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 977, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18055058173005135668" + } + }, + "cborHex": "1bfa9073bfa0fbff34", + "cborBytes": [27, 250, 144, 115, 191, 160, 251, 255, 52], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 978, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15277407767732609914" + } + }, + "cborHex": "1bd404416bec7ee37a", + "cborBytes": [27, 212, 4, 65, 107, 236, 126, 227, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 979, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10690413897941064752" + } + }, + "cborHex": "1b945bfaccc8ad1c30", + "cborBytes": [27, 148, 91, 250, 204, 200, 173, 28, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 980, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6241694882460288480" + } + }, + "cborHex": "1b569ef46cf96b45e0", + "cborBytes": [27, 86, 158, 244, 108, 249, 107, 69, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 981, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15861126091029353062" + } + }, + "cborHex": "1bdc1e0a24d97c1266", + "cborBytes": [27, 220, 30, 10, 36, 217, 124, 18, 102], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 982, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17379972400262255316" + } + }, + "cborHex": "1bf13210d0a3b992d4", + "cborBytes": [27, 241, 50, 16, 208, 163, 185, 146, 212], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 983, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4658576952855902840" + } + }, + "cborHex": "1b40a6970e71cc3a78", + "cborBytes": [27, 64, 166, 151, 14, 113, 204, 58, 120], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 984, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14864922427607380084" + } + }, + "cborHex": "1bce4ad030af467074", + "cborBytes": [27, 206, 74, 208, 48, 175, 70, 112, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 985, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6885179239489873842" + } + }, + "cborHex": "1b5f8d120a00b027b2", + "cborBytes": [27, 95, 141, 18, 10, 0, 176, 39, 178], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 986, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7140771520592248717" + } + }, + "cborHex": "1b63191ddd53207f8d", + "cborBytes": [27, 99, 25, 29, 221, 83, 32, 127, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 987, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15201813461763719123" + } + }, + "cborHex": "1bd2f7b0cd022d7fd3", + "cborBytes": [27, 210, 247, 176, 205, 2, 45, 127, 211], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 988, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "429490064347986067" + } + }, + "cborHex": "1b05f5daf020057893", + "cborBytes": [27, 5, 245, 218, 240, 32, 5, 120, 147], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 989, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10653260493934486356" + } + }, + "cborHex": "1b93d7fbf9d0aae354", + "cborBytes": [27, 147, 215, 251, 249, 208, 170, 227, 84], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 990, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16550119030928087102" + } + }, + "cborHex": "1be5add59284e6983e", + "cborBytes": [27, 229, 173, 213, 146, 132, 230, 152, 62], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 991, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10967008710354635524" + } + }, + "cborHex": "1b9832a450fd4d8b04", + "cborBytes": [27, 152, 50, 164, 80, 253, 77, 139, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 992, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10613710048099895352" + } + }, + "cborHex": "1b934b790e0dfd0838", + "cborBytes": [27, 147, 75, 121, 14, 13, 253, 8, 56], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 993, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17487924262286131728" + } + }, + "cborHex": "1bf2b1967628800210", + "cborBytes": [27, 242, 177, 150, 118, 40, 128, 2, 16], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 994, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "204037588318540918" + } + }, + "cborHex": "1b02d4e31b048dd476", + "cborBytes": [27, 2, 212, 227, 27, 4, 141, 212, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 995, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4262980644952537661" + } + }, + "cborHex": "1b3b29264f72c2fa3d", + "cborBytes": [27, 59, 41, 38, 79, 114, 194, 250, 61], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 996, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11659723570041476724" + } + }, + "cborHex": "1ba1cfa8cfa3925674", + "cborBytes": [27, 161, 207, 168, 207, 163, 146, 86, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 997, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "618423872988564573" + } + }, + "cborHex": "1b0895153c661acc5d", + "cborBytes": [27, 8, 149, 21, 60, 102, 26, 204, 93], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 998, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1417820181146215780" + } + }, + "cborHex": "1b13ad1bf15c99a564", + "cborBytes": [27, 19, 173, 27, 241, 92, 153, 165, 100], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 999, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9891872928717679010" + } + }, + "cborHex": "1b8946fe04ef8529a2", + "cborBytes": [27, 137, 70, 254, 4, 239, 133, 41, 162], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1000, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8171642868924037499" + } + }, + "cborHex": "1b716781e4e192397b", + "cborBytes": [27, 113, 103, 129, 228, 225, 146, 57, 123], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1001, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13286021830178717908" + } + }, + "cborHex": "1bb8616e7651e340d4", + "cborBytes": [27, 184, 97, 110, 118, 81, 227, 64, 212], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1002, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4276926450732902073" + } + }, + "cborHex": "1b3b5ab1f2626826b9", + "cborBytes": [27, 59, 90, 177, 242, 98, 104, 38, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1003, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8521525644171914970" + } + }, + "cborHex": "1b76428a6ca53faeda", + "cborBytes": [27, 118, 66, 138, 108, 165, 63, 174, 218], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1004, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12860937058915713127" + } + }, + "cborHex": "1bb27b3a1d6b540067", + "cborBytes": [27, 178, 123, 58, 29, 107, 84, 0, 103], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1005, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12189255463245836156" + } + }, + "cborHex": "1ba928ef432b41ef7c", + "cborBytes": [27, 169, 40, 239, 67, 43, 65, 239, 124], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1006, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2358545007173205036" + } + }, + "cborHex": "1b20bb3c301b547c2c", + "cborBytes": [27, 32, 187, 60, 48, 27, 84, 124, 44], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1007, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2113077442609813785" + } + }, + "cborHex": "1b1d5328bd0da61919", + "cborBytes": [27, 29, 83, 40, 189, 13, 166, 25, 25], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1008, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "628310264028968437" + } + }, + "cborHex": "1b08b834db302db5f5", + "cborBytes": [27, 8, 184, 52, 219, 48, 45, 181, 245], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1009, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9031178959759503257" + } + }, + "cborHex": "1b7d55316a27726f99", + "cborBytes": [27, 125, 85, 49, 106, 39, 114, 111, 153], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1010, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13763399932182762326" + } + }, + "cborHex": "1bbf016b5113639356", + "cborBytes": [27, 191, 1, 107, 81, 19, 99, 147, 86], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1011, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "766271307629720469" + } + }, + "cborHex": "1b0aa257b1c4d7f395", + "cborBytes": [27, 10, 162, 87, 177, 196, 215, 243, 149], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1012, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16386423931992599822" + } + }, + "cborHex": "1be36845bf4560ed0e", + "cborBytes": [27, 227, 104, 69, 191, 69, 96, 237, 14], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1013, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14455719913671327626" + } + }, + "cborHex": "1bc89d08abfaeb7f8a", + "cborBytes": [27, 200, 157, 8, 171, 250, 235, 127, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1014, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14899661630486381560" + } + }, + "cborHex": "1bcec63b4fa6a883f8", + "cborBytes": [27, 206, 198, 59, 79, 166, 168, 131, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1015, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1185348744201086498" + } + }, + "cborHex": "1b10733467110fa622", + "cborBytes": [27, 16, 115, 52, 103, 17, 15, 166, 34], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1016, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6765225461700652572" + } + }, + "cborHex": "1b5de2e8b6b6186e1c", + "cborBytes": [27, 93, 226, 232, 182, 182, 24, 110, 28], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1017, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9727866357842432827" + } + }, + "cborHex": "1b870052e979abd33b", + "cborBytes": [27, 135, 0, 82, 233, 121, 171, 211, 59], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1018, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13651737226413645781" + } + }, + "cborHex": "1bbd74b6ad6b5c9fd5", + "cborBytes": [27, 189, 116, 182, 173, 107, 92, 159, 213], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1019, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17755798690530663998" + } + }, + "cborHex": "1bf66944d5b46d1e3e", + "cborBytes": [27, 246, 105, 68, 213, 180, 109, 30, 62], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1020, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "336518879410904644" + } + }, + "cborHex": "1b04ab8e234b7fde44", + "cborBytes": [27, 4, 171, 142, 35, 75, 127, 222, 68], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1021, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5456411810631412365" + } + }, + "cborHex": "1b4bb911a1e8ee6a8d", + "cborBytes": [27, 75, 185, 17, 161, 232, 238, 106, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1022, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9629334378107267721" + } + }, + "cborHex": "1b85a24499368a6a89", + "cborBytes": [27, 133, 162, 68, 153, 54, 138, 106, 137], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1023, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12041065476274092998" + } + }, + "cborHex": "1ba71a75411e897bc6", + "cborBytes": [27, 167, 26, 117, 65, 30, 137, 123, 198], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1024, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9993354447612221233" + } + }, + "cborHex": "1b8aaf86ec4c7f1731", + "cborBytes": [27, 138, 175, 134, 236, 76, 127, 23, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1025, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13113139247678239973" + } + }, + "cborHex": "1bb5fb3aab5c1834e5", + "cborBytes": [27, 181, 251, 58, 171, 92, 24, 52, 229], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1026, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8296780593953468248" + } + }, + "cborHex": "1b732415fdf1f36f58", + "cborBytes": [27, 115, 36, 21, 253, 241, 243, 111, 88], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1027, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3266669460434846667" + } + }, + "cborHex": "1b2d558a9113d603cb", + "cborBytes": [27, 45, 85, 138, 145, 19, 214, 3, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1028, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "914228339069147963" + } + }, + "cborHex": "1b0caffdd4a1cfdb3b", + "cborBytes": [27, 12, 175, 253, 212, 161, 207, 219, 59], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1029, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7271154138592293986" + } + }, + "cborHex": "1b64e8542a31e7b462", + "cborBytes": [27, 100, 232, 84, 42, 49, 231, 180, 98], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1030, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3469174061580988292" + } + }, + "cborHex": "1b3024fb6db488af84", + "cborBytes": [27, 48, 36, 251, 109, 180, 136, 175, 132], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1031, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13215259686657634556" + } + }, + "cborHex": "1bb76608aae5c4b0fc", + "cborBytes": [27, 183, 102, 8, 170, 229, 196, 176, 252], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1032, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12730619681592321449" + } + }, + "cborHex": "1bb0ac3f2693e825a9", + "cborBytes": [27, 176, 172, 63, 38, 147, 232, 37, 169], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1033, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3149504796151221026" + } + }, + "cborHex": "1b2bb549ece0fb8b22", + "cborBytes": [27, 43, 181, 73, 236, 224, 251, 139, 34], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1034, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17301436804513443107" + } + }, + "cborHex": "1bf01b0d1b54e4ad23", + "cborBytes": [27, 240, 27, 13, 27, 84, 228, 173, 35], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1035, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10007540707643202230" + } + }, + "cborHex": "1b8ae1ed405a559ab6", + "cborBytes": [27, 138, 225, 237, 64, 90, 85, 154, 182], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1036, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3407129872625709730" + } + }, + "cborHex": "1b2f488e91417a32a2", + "cborBytes": [27, 47, 72, 142, 145, 65, 122, 50, 162], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1037, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12411916293480251651" + } + }, + "cborHex": "1bac3ffc1b96c60103", + "cborBytes": [27, 172, 63, 252, 27, 150, 198, 1, 3], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1038, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13945406466418532280" + } + }, + "cborHex": "1bc188094b974fdfb8", + "cborBytes": [27, 193, 136, 9, 75, 151, 79, 223, 184], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1039, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9846938052288668829" + } + }, + "cborHex": "1b88a759fcbbf1649d", + "cborBytes": [27, 136, 167, 89, 252, 187, 241, 100, 157], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1040, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13657063369242554524" + } + }, + "cborHex": "1bbd87a2c6aeb3b09c", + "cborBytes": [27, 189, 135, 162, 198, 174, 179, 176, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1041, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17371678356107318833" + } + }, + "cborHex": "1bf114996d001e5631", + "cborBytes": [27, 241, 20, 153, 109, 0, 30, 86, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1042, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13010172254835432827" + } + }, + "cborHex": "1bb48d6abc241bdd7b", + "cborBytes": [27, 180, 141, 106, 188, 36, 27, 221, 123], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1043, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15544950233230214606" + } + }, + "cborHex": "1bd7bac1e05ed005ce", + "cborBytes": [27, 215, 186, 193, 224, 94, 208, 5, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1044, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6681527703177366758" + } + }, + "cborHex": "1b5cb98e0bb8d18ce6", + "cborBytes": [27, 92, 185, 142, 11, 184, 209, 140, 230], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1045, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14720710462701717341" + } + }, + "cborHex": "1bcc4a782c12b6475d", + "cborBytes": [27, 204, 74, 120, 44, 18, 182, 71, 93], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1046, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8659082008303678621" + } + }, + "cborHex": "1b782b3d3571eab49d", + "cborBytes": [27, 120, 43, 61, 53, 113, 234, 180, 157], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1047, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3115465098210369347" + } + }, + "cborHex": "1b2b3c5b0018f4df43", + "cborBytes": [27, 43, 60, 91, 0, 24, 244, 223, 67], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1048, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10290736265736541539" + } + }, + "cborHex": "1b8ed00a1c6c74d563", + "cborBytes": [27, 142, 208, 10, 28, 108, 116, 213, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1049, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "853575534784535920" + } + }, + "cborHex": "1b0bd8826d2bcbdd70", + "cborBytes": [27, 11, 216, 130, 109, 43, 203, 221, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1050, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1926386338330280435" + } + }, + "cborHex": "1b1abbe62b145781f3", + "cborBytes": [27, 26, 187, 230, 43, 20, 87, 129, 243], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1051, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15248753615904174182" + } + }, + "cborHex": "1bd39e749f4f6bf066", + "cborBytes": [27, 211, 158, 116, 159, 79, 107, 240, 102], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1052, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7520559555818217448" + } + }, + "cborHex": "1b685e651204b6dfe8", + "cborBytes": [27, 104, 94, 101, 18, 4, 182, 223, 232], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1053, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13642513117415418419" + } + }, + "cborHex": "1bbd53f1662f272a33", + "cborBytes": [27, 189, 83, 241, 102, 47, 39, 42, 51], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1054, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9562791791730368875" + } + }, + "cborHex": "1b84b5dc77ff1c216b", + "cborBytes": [27, 132, 181, 220, 119, 255, 28, 33, 107], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1055, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13940154650899863008" + } + }, + "cborHex": "1bc17560cc00e555e0", + "cborBytes": [27, 193, 117, 96, 204, 0, 229, 85, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1056, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13497147383057449339" + } + }, + "cborHex": "1bbb4f8008b03b817b", + "cborBytes": [27, 187, 79, 128, 8, 176, 59, 129, 123], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1057, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10407091627690097848" + } + }, + "cborHex": "1b906d6ab23d68fcb8", + "cborBytes": [27, 144, 109, 106, 178, 61, 104, 252, 184], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1058, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1871374740556740031" + } + }, + "cborHex": "1b19f875695c85f5bf", + "cborBytes": [27, 25, 248, 117, 105, 92, 133, 245, 191], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1059, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5233694818554604260" + } + }, + "cborHex": "1b48a1d1b54abfeae4", + "cborBytes": [27, 72, 161, 209, 181, 74, 191, 234, 228], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1060, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11458277207878927108" + } + }, + "cborHex": "1b9f03fa6979940304", + "cborBytes": [27, 159, 3, 250, 105, 121, 148, 3, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1061, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12945726103080294789" + } + }, + "cborHex": "1bb3a8754d259a5985", + "cborBytes": [27, 179, 168, 117, 77, 37, 154, 89, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1062, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13999323702909564569" + } + }, + "cborHex": "1bc24796bc77a17699", + "cborBytes": [27, 194, 71, 150, 188, 119, 161, 118, 153], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1063, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15517245068711939775" + } + }, + "cborHex": "1bd758542d1541cebf", + "cborBytes": [27, 215, 88, 84, 45, 21, 65, 206, 191], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1064, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9516427537741318467" + } + }, + "cborHex": "1b8411246ce5d10943", + "cborBytes": [27, 132, 17, 36, 108, 229, 209, 9, 67], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1065, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6353693156648499073" + } + }, + "cborHex": "1b582cda433ddd3781", + "cborBytes": [27, 88, 44, 218, 67, 61, 221, 55, 129], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1066, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3571221061215618203" + } + }, + "cborHex": "1b318f86a25026849b", + "cborBytes": [27, 49, 143, 134, 162, 80, 38, 132, 155], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1067, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14122926348331829371" + } + }, + "cborHex": "1bc3feb6aff552c87b", + "cborBytes": [27, 195, 254, 182, 175, 245, 82, 200, 123], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1068, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16757795266496098993" + } + }, + "cborHex": "1be88fa6021e38f2b1", + "cborBytes": [27, 232, 143, 166, 2, 30, 56, 242, 177], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1069, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17954468876790980814" + } + }, + "cborHex": "1bf92b16510beee0ce", + "cborBytes": [27, 249, 43, 22, 81, 11, 238, 224, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1070, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3472306981943963663" + } + }, + "cborHex": "1b30301ccd91e0f00f", + "cborBytes": [27, 48, 48, 28, 205, 145, 224, 240, 15], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1071, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5416227588815824600" + } + }, + "cborHex": "1b4b2a4e4bae09a6d8", + "cborBytes": [27, 75, 42, 78, 75, 174, 9, 166, 216], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1072, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2257209438150030955" + } + }, + "cborHex": "1b1f5338065897766b", + "cborBytes": [27, 31, 83, 56, 6, 88, 151, 118, 107], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1073, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6993731447903566150" + } + }, + "cborHex": "1b610eb9b28ec53946", + "cborBytes": [27, 97, 14, 185, 178, 142, 197, 57, 70], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1074, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9797775757065638245" + } + }, + "cborHex": "1b87f8b123e4d4d165", + "cborBytes": [27, 135, 248, 177, 35, 228, 212, 209, 101], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1075, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18443835975702803232" + } + }, + "cborHex": "1bfff5ab19ab55f320", + "cborBytes": [27, 255, 245, 171, 25, 171, 85, 243, 32], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1076, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6796034651785161914" + } + }, + "cborHex": "1b5e505d8244e66cba", + "cborBytes": [27, 94, 80, 93, 130, 68, 230, 108, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1077, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14455570540036560446" + } + }, + "cborHex": "1bc89c80d1387b163e", + "cborBytes": [27, 200, 156, 128, 209, 56, 123, 22, 62], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1078, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9992293372343811540" + } + }, + "cborHex": "1b8aabc1e1760afdd4", + "cborBytes": [27, 138, 171, 193, 225, 118, 10, 253, 212], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1079, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15289252956131524163" + } + }, + "cborHex": "1bd42e568ec34f7e43", + "cborBytes": [27, 212, 46, 86, 142, 195, 79, 126, 67], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1080, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12150544198193402926" + } + }, + "cborHex": "1ba89f67926900542e", + "cborBytes": [27, 168, 159, 103, 146, 105, 0, 84, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1081, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9232422486925485431" + } + }, + "cborHex": "1b802027561d85a577", + "cborBytes": [27, 128, 32, 39, 86, 29, 133, 165, 119], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1082, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9294861764166509865" + } + }, + "cborHex": "1b80fdfb8739816529", + "cborBytes": [27, 128, 253, 251, 135, 57, 129, 101, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1083, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7393732525307452438" + } + }, + "cborHex": "1b669bd08edf33dc16", + "cborBytes": [27, 102, 155, 208, 142, 223, 51, 220, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1084, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13244211516379426362" + } + }, + "cborHex": "1bb7cce4340beeee3a", + "cborBytes": [27, 183, 204, 228, 52, 11, 238, 238, 58], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1085, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13653887547389964322" + } + }, + "cborHex": "1bbd7c5a62094ef022", + "cborBytes": [27, 189, 124, 90, 98, 9, 78, 240, 34], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1086, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13325455053869836796" + } + }, + "cborHex": "1bb8ed86c52c5869fc", + "cborBytes": [27, 184, 237, 134, 197, 44, 88, 105, 252], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1087, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8170955573305592899" + } + }, + "cborHex": "1b716510cd6660cc43", + "cborBytes": [27, 113, 101, 16, 205, 102, 96, 204, 67], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1088, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12070088720684585325" + } + }, + "cborHex": "1ba78191bdcbda916d", + "cborBytes": [27, 167, 129, 145, 189, 203, 218, 145, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1089, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6901808455297614556" + } + }, + "cborHex": "1b5fc8263905cd42dc", + "cborBytes": [27, 95, 200, 38, 57, 5, 205, 66, 220], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1090, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2404742563333068973" + } + }, + "cborHex": "1b215f5c9ed7bad8ad", + "cborBytes": [27, 33, 95, 92, 158, 215, 186, 216, 173], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1091, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9192709875242276176" + } + }, + "cborHex": "1b7f9310ed2d0a9550", + "cborBytes": [27, 127, 147, 16, 237, 45, 10, 149, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1092, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "373330232377360347" + } + }, + "cborHex": "1b052e55de4cc43fdb", + "cborBytes": [27, 5, 46, 85, 222, 76, 196, 63, 219], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1093, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10408002657914273016" + } + }, + "cborHex": "1b9070a745fe4d3cf8", + "cborBytes": [27, 144, 112, 167, 69, 254, 77, 60, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1094, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16146017450531823806" + } + }, + "cborHex": "1be0122d53743520be", + "cborBytes": [27, 224, 18, 45, 83, 116, 53, 32, 190], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1095, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15407455636710539225" + } + }, + "cborHex": "1bd5d24744f6b8bfd9", + "cborBytes": [27, 213, 210, 71, 68, 246, 184, 191, 217], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1096, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1729788856484446801" + } + }, + "cborHex": "1b180171ccd72f4251", + "cborBytes": [27, 24, 1, 113, 204, 215, 47, 66, 81], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1097, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2308689490612519040" + } + }, + "cborHex": "1b200a1cdc18a30080", + "cborBytes": [27, 32, 10, 28, 220, 24, 163, 0, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1098, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15188144431429421891" + } + }, + "cborHex": "1bd2c720e3e0ad8b43", + "cborBytes": [27, 210, 199, 32, 227, 224, 173, 139, 67], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1099, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2184149621287243008" + } + }, + "cborHex": "1b1e4fa88229214d00", + "cborBytes": [27, 30, 79, 168, 130, 41, 33, 77, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1100, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9869414212621692092" + } + }, + "cborHex": "1b88f733ef9c81ecbc", + "cborBytes": [27, 136, 247, 51, 239, 156, 129, 236, 188], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1101, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16934675527746869190" + } + }, + "cborHex": "1beb040dab31da57c6", + "cborBytes": [27, 235, 4, 13, 171, 49, 218, 87, 198], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1102, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6047698402402277779" + } + }, + "cborHex": "1b53edbda7a7e29993", + "cborBytes": [27, 83, 237, 189, 167, 167, 226, 153, 147], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1103, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18392412543390756208" + } + }, + "cborHex": "1bff3ef9c2d33ead70", + "cborBytes": [27, 255, 62, 249, 194, 211, 62, 173, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1104, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9889569697172325371" + } + }, + "cborHex": "1b893ecf3e0d6c83fb", + "cborBytes": [27, 137, 62, 207, 62, 13, 108, 131, 251], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1105, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12064130179018315634" + } + }, + "cborHex": "1ba76c667ab474d772", + "cborBytes": [27, 167, 108, 102, 122, 180, 116, 215, 114], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1106, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16763588365683594036" + } + }, + "cborHex": "1be8a43acd21711334", + "cborBytes": [27, 232, 164, 58, 205, 33, 113, 19, 52], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1107, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15394837301253437547" + } + }, + "cborHex": "1bd5a572f5cc24f86b", + "cborBytes": [27, 213, 165, 114, 245, 204, 36, 248, 107], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1108, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5595104738318606353" + } + }, + "cborHex": "1b4da5ce1d8895e011", + "cborBytes": [27, 77, 165, 206, 29, 136, 149, 224, 17], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1109, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18071551694209224343" + } + }, + "cborHex": "1bfacb0c84c9730e97", + "cborBytes": [27, 250, 203, 12, 132, 201, 115, 14, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1110, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16410943333099496106" + } + }, + "cborHex": "1be3bf62033675e2aa", + "cborBytes": [27, 227, 191, 98, 3, 54, 117, 226, 170], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1111, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "562188634588464668" + } + }, + "cborHex": "1b07cd4b95a568461c", + "cborBytes": [27, 7, 205, 75, 149, 165, 104, 70, 28], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1112, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3528019468942829063" + } + }, + "cborHex": "1b30f60b03c6ffe607", + "cborBytes": [27, 48, 246, 11, 3, 198, 255, 230, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1113, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17108714683366782896" + } + }, + "cborHex": "1bed6e5d5bd19637b0", + "cborBytes": [27, 237, 110, 93, 91, 209, 150, 55, 176], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1114, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9662337625029467130" + } + }, + "cborHex": "1b861784e06fc5dbfa", + "cborBytes": [27, 134, 23, 132, 224, 111, 197, 219, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1115, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9334199425915054240" + } + }, + "cborHex": "1b8189bcec545268a0", + "cborBytes": [27, 129, 137, 188, 236, 84, 82, 104, 160], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1116, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2391353121549182056" + } + }, + "cborHex": "1b212fcafe7e75e468", + "cborBytes": [27, 33, 47, 202, 254, 126, 117, 228, 104], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1117, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5417751911045299899" + } + }, + "cborHex": "1b4b2fb8a89b0c7ebb", + "cborBytes": [27, 75, 47, 184, 168, 155, 12, 126, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1118, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16958429493524029517" + } + }, + "cborHex": "1beb5871c65601e04d", + "cborBytes": [27, 235, 88, 113, 198, 86, 1, 224, 77], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1119, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13005316092347267850" + } + }, + "cborHex": "1bb47c2a14b407bb0a", + "cborBytes": [27, 180, 124, 42, 20, 180, 7, 187, 10], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1120, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3150009991676428525" + } + }, + "cborHex": "1b2bb71565e0ce00ed", + "cborBytes": [27, 43, 183, 21, 101, 224, 206, 0, 237], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1121, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13770798123375819855" + } + }, + "cborHex": "1bbf1bb3eeb16e7c4f", + "cborBytes": [27, 191, 27, 179, 238, 177, 110, 124, 79], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1122, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7243252733658893897" + } + }, + "cborHex": "1b648533fc201d8e49", + "cborBytes": [27, 100, 133, 51, 252, 32, 29, 142, 73], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1123, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1475883767256732529" + } + }, + "cborHex": "1b147b64777d1a5371", + "cborBytes": [27, 20, 123, 100, 119, 125, 26, 83, 113], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1124, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10496748315851758272" + } + }, + "cborHex": "1b91abf0faa7061ac0", + "cborBytes": [27, 145, 171, 240, 250, 167, 6, 26, 192], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1125, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8048649571556653617" + } + }, + "cborHex": "1b6fb28c244a3bfa31", + "cborBytes": [27, 111, 178, 140, 36, 74, 59, 250, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1126, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1753425002124449002" + } + }, + "cborHex": "1b18556abfd7ea94ea", + "cborBytes": [27, 24, 85, 106, 191, 215, 234, 148, 234], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1127, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6597660949126625045" + } + }, + "cborHex": "1b5b8f99ad6528b715", + "cborBytes": [27, 91, 143, 153, 173, 101, 40, 183, 21], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1128, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16948845086581170149" + } + }, + "cborHex": "1beb3664ceb2cb9fe5", + "cborBytes": [27, 235, 54, 100, 206, 178, 203, 159, 229], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1129, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4030466067161981927" + } + }, + "cborHex": "1b37ef1788a474a3e7", + "cborBytes": [27, 55, 239, 23, 136, 164, 116, 163, 231], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1130, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8895822171801351761" + } + }, + "cborHex": "1b7b744f2217437651", + "cborBytes": [27, 123, 116, 79, 34, 23, 67, 118, 81], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1131, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3680030364726048663" + } + }, + "cborHex": "1b3312181e7c25b797", + "cborBytes": [27, 51, 18, 24, 30, 124, 37, 183, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1132, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5255954983580754914" + } + }, + "cborHex": "1b48f0e735d7c663e2", + "cborBytes": [27, 72, 240, 231, 53, 215, 198, 99, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1133, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18407461081748711204" + } + }, + "cborHex": "1bff747053b275a724", + "cborBytes": [27, 255, 116, 112, 83, 178, 117, 167, 36], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1134, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1231405229056304421" + } + }, + "cborHex": "1b1116d4881475a525", + "cborBytes": [27, 17, 22, 212, 136, 20, 117, 165, 37], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1135, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6344681021969562983" + } + }, + "cborHex": "1b580cd5c61fa87d67", + "cborBytes": [27, 88, 12, 213, 198, 31, 168, 125, 103], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1136, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7576397629806931463" + } + }, + "cborHex": "1b6924c580b9c0ee07", + "cborBytes": [27, 105, 36, 197, 128, 185, 192, 238, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1137, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9964940765579871347" + } + }, + "cborHex": "1b8a4a94d46c328473", + "cborBytes": [27, 138, 74, 148, 212, 108, 50, 132, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1138, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3897454579374504735" + } + }, + "cborHex": "1b36168a4a53d63b1f", + "cborBytes": [27, 54, 22, 138, 74, 83, 214, 59, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1139, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5426437441256038574" + } + }, + "cborHex": "1b4b4e941a31f220ae", + "cborBytes": [27, 75, 78, 148, 26, 49, 242, 32, 174], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1140, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10922442828478432954" + } + }, + "cborHex": "1b97944fe206f846ba", + "cborBytes": [27, 151, 148, 79, 226, 6, 248, 70, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1141, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10931474387877754566" + } + }, + "cborHex": "1b97b46609d0bbf6c6", + "cborBytes": [27, 151, 180, 102, 9, 208, 187, 246, 198], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1142, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8562712045477065516" + } + }, + "cborHex": "1b76d4dd3cf89e732c", + "cborBytes": [27, 118, 212, 221, 60, 248, 158, 115, 44], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1143, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16511063846298224671" + } + }, + "cborHex": "1be5231516be66881f", + "cborBytes": [27, 229, 35, 21, 22, 190, 102, 136, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1144, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3295642795939456919" + } + }, + "cborHex": "1b2dbc79a96e8be797", + "cborBytes": [27, 45, 188, 121, 169, 110, 139, 231, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1145, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3840758177907977909" + } + }, + "cborHex": "1b354d1d36ae61aeb5", + "cborBytes": [27, 53, 77, 29, 54, 174, 97, 174, 181], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1146, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11474146525466984304" + } + }, + "cborHex": "1b9f3c5b78e73dff70", + "cborBytes": [27, 159, 60, 91, 120, 231, 61, 255, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1147, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16216105541229720357" + } + }, + "cborHex": "1be10b2e12b93db325", + "cborBytes": [27, 225, 11, 46, 18, 185, 61, 179, 37], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1148, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2050549667982255791" + } + }, + "cborHex": "1b1c75040f0a60a6af", + "cborBytes": [27, 28, 117, 4, 15, 10, 96, 166, 175], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1149, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14848050898934191537" + } + }, + "cborHex": "1bce0edf9fcde455b1", + "cborBytes": [27, 206, 14, 223, 159, 205, 228, 85, 177], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1150, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10009193199926924983" + } + }, + "cborHex": "1b8ae7cc2f31e656b7", + "cborBytes": [27, 138, 231, 204, 47, 49, 230, 86, 183], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1151, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18353740161263273606" + } + }, + "cborHex": "1bfeb5956f33eb0686", + "cborBytes": [27, 254, 181, 149, 111, 51, 235, 6, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1152, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9669485048013065742" + } + }, + "cborHex": "1b8630e96b87c50e0e", + "cborBytes": [27, 134, 48, 233, 107, 135, 197, 14, 14], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1153, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10350270502763565855" + } + }, + "cborHex": "1b8fa38c2f266d131f", + "cborBytes": [27, 143, 163, 140, 47, 38, 109, 19, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1154, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6021967514059071122" + } + }, + "cborHex": "1b5392538c5c6ede92", + "cborBytes": [27, 83, 146, 83, 140, 92, 110, 222, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1155, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2953886638815950329" + } + }, + "cborHex": "1b28fe503f6565b5f9", + "cborBytes": [27, 40, 254, 80, 63, 101, 101, 181, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1156, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16665344915192644490" + } + }, + "cborHex": "1be74732e7516b838a", + "cborBytes": [27, 231, 71, 50, 231, 81, 107, 131, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1157, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1246859211503340228" + } + }, + "cborHex": "1b114dbbd8c2948ac4", + "cborBytes": [27, 17, 77, 187, 216, 194, 148, 138, 196], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1158, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2340677978607301834" + } + }, + "cborHex": "1b207bc2385877b4ca", + "cborBytes": [27, 32, 123, 194, 56, 88, 119, 180, 202], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1159, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17987995487805348697" + } + }, + "cborHex": "1bf9a2329777f79b59", + "cborBytes": [27, 249, 162, 50, 151, 119, 247, 155, 89], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1160, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16505440495783067005" + } + }, + "cborHex": "1be50f1aae6c7f3d7d", + "cborBytes": [27, 229, 15, 26, 174, 108, 127, 61, 125], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1161, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17001116125752675613" + } + }, + "cborHex": "1bebf0190a64a74d1d", + "cborBytes": [27, 235, 240, 25, 10, 100, 167, 77, 29], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1162, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "883067700992073970" + } + }, + "cborHex": "1b0c4149653640e0f2", + "cborBytes": [27, 12, 65, 73, 101, 54, 64, 224, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1163, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2461607912488065051" + } + }, + "cborHex": "1b2229635ab024581b", + "cborBytes": [27, 34, 41, 99, 90, 176, 36, 88, 27], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1164, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15248089025884966535" + } + }, + "cborHex": "1bd39c182e6367ce87", + "cborBytes": [27, 211, 156, 24, 46, 99, 103, 206, 135], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1165, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3197488052422692252" + } + }, + "cborHex": "1b2c5fc2715235cd9c", + "cborBytes": [27, 44, 95, 194, 113, 82, 53, 205, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1166, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13722966736305562067" + } + }, + "cborHex": "1bbe71c58a0dfea1d3", + "cborBytes": [27, 190, 113, 197, 138, 13, 254, 161, 211], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1167, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16643206367189442097" + } + }, + "cborHex": "1be6f88c02efd89e31", + "cborBytes": [27, 230, 248, 140, 2, 239, 216, 158, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1168, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7107474800154994982" + } + }, + "cborHex": "1b62a2d2ac79476926", + "cborBytes": [27, 98, 162, 210, 172, 121, 71, 105, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1169, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17379194052880646660" + } + }, + "cborHex": "1bf12f4ce984884204", + "cborBytes": [27, 241, 47, 76, 233, 132, 136, 66, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1170, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1449974984077510432" + } + }, + "cborHex": "1b141f5890d3248720", + "cborBytes": [27, 20, 31, 88, 144, 211, 36, 135, 32], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1171, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8640414264913302915" + } + }, + "cborHex": "1b77e8eafebc601583", + "cborBytes": [27, 119, 232, 234, 254, 188, 96, 21, 131], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1172, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "986737177405134651" + } + }, + "cborHex": "1b0db1983c21e7973b", + "cborBytes": [27, 13, 177, 152, 60, 33, 231, 151, 59], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1173, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3557024910301307266" + } + }, + "cborHex": "1b315d174f5bb9a182", + "cborBytes": [27, 49, 93, 23, 79, 91, 185, 161, 130], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1174, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15465982585089004339" + } + }, + "cborHex": "1bd6a23538069b9333", + "cborBytes": [27, 214, 162, 53, 56, 6, 155, 147, 51], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1175, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4438326081818967522" + } + }, + "cborHex": "1b3d981a0e602bbde2", + "cborBytes": [27, 61, 152, 26, 14, 96, 43, 189, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1176, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12572403807921801034" + } + }, + "cborHex": "1bae7a26a6dff2874a", + "cborBytes": [27, 174, 122, 38, 166, 223, 242, 135, 74], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1177, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6831274579720374665" + } + }, + "cborHex": "1b5ecd90095f638989", + "cborBytes": [27, 94, 205, 144, 9, 95, 99, 137, 137], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1178, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17113140673272306652" + } + }, + "cborHex": "1bed7e16c5e5af5bdc", + "cborBytes": [27, 237, 126, 22, 197, 229, 175, 91, 220], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1179, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15650036446568896022" + } + }, + "cborHex": "1bd930193b0fa7d616", + "cborBytes": [27, 217, 48, 25, 59, 15, 167, 214, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1180, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12633476570860070358" + } + }, + "cborHex": "1baf5320019455a5d6", + "cborBytes": [27, 175, 83, 32, 1, 148, 85, 165, 214], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1181, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9264777017917612657" + } + }, + "cborHex": "1b8093199c642ea271", + "cborBytes": [27, 128, 147, 25, 156, 100, 46, 162, 113], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1182, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4586023310636784782" + } + }, + "cborHex": "1b3fa4d3e73a2a9c8e", + "cborBytes": [27, 63, 164, 211, 231, 58, 42, 156, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1183, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8538208876345532699" + } + }, + "cborHex": "1b767dcfbc54a9a11b", + "cborBytes": [27, 118, 125, 207, 188, 84, 169, 161, 27], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1184, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7680587875759317072" + } + }, + "cborHex": "1b6a96edfac0ce6050", + "cborBytes": [27, 106, 150, 237, 250, 192, 206, 96, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1185, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3277267566064258408" + } + }, + "cborHex": "1b2d7b317cd52b4d68", + "cborBytes": [27, 45, 123, 49, 124, 213, 43, 77, 104], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1186, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14824801502533360693" + } + }, + "cborHex": "1bcdbc466be02d9c35", + "cborBytes": [27, 205, 188, 70, 107, 224, 45, 156, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1187, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8245538424897735972" + } + }, + "cborHex": "1b726e0982bddd0d24", + "cborBytes": [27, 114, 110, 9, 130, 189, 221, 13, 36], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1188, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4298571016603685347" + } + }, + "cborHex": "1b3ba797909673d1e3", + "cborBytes": [27, 59, 167, 151, 144, 150, 115, 209, 227], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1189, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11079813766681183118" + } + }, + "cborHex": "1b99c367eadc83c38e", + "cborBytes": [27, 153, 195, 103, 234, 220, 131, 195, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1190, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "168812433789522461" + } + }, + "cborHex": "1b0257be039db1921d", + "cborBytes": [27, 2, 87, 190, 3, 157, 177, 146, 29], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1191, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15417737458930835482" + } + }, + "cborHex": "1bd5f6ce883fce601a", + "cborBytes": [27, 213, 246, 206, 136, 63, 206, 96, 26], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1192, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "747388947256654361" + } + }, + "cborHex": "1b0a5f4249a6493a19", + "cborBytes": [27, 10, 95, 66, 73, 166, 73, 58, 25], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1193, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15907980876913475252" + } + }, + "cborHex": "1bdcc48052ce227eb4", + "cborBytes": [27, 220, 196, 128, 82, 206, 34, 126, 180], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1194, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17280835747520884148" + } + }, + "cborHex": "1befd1dc8df8daadb4", + "cborBytes": [27, 239, 209, 220, 141, 248, 218, 173, 180], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1195, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5037544643108709969" + } + }, + "cborHex": "1b45e8f429b0aaa651", + "cborBytes": [27, 69, 232, 244, 41, 176, 170, 166, 81], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1196, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11689672876296315602" + } + }, + "cborHex": "1ba23a0f8be42922d2", + "cborBytes": [27, 162, 58, 15, 139, 228, 41, 34, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1197, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17568374804249439478" + } + }, + "cborHex": "1bf3cf67cda035ecf6", + "cborBytes": [27, 243, 207, 103, 205, 160, 53, 236, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1198, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8748507313086848074" + } + }, + "cborHex": "1b7968f10cb772dc4a", + "cborBytes": [27, 121, 104, 241, 12, 183, 114, 220, 74], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1199, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11449359488166473507" + } + }, + "cborHex": "1b9ee44bcb0de92f23", + "cborBytes": [27, 158, 228, 75, 203, 13, 233, 47, 35], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1200, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14219656401834713295" + } + }, + "cborHex": "1bc5565e289377a0cf", + "cborBytes": [27, 197, 86, 94, 40, 147, 119, 160, 207], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1201, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7652425373115278870" + } + }, + "cborHex": "1b6a32e05522b8e616", + "cborBytes": [27, 106, 50, 224, 85, 34, 184, 230, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1202, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10997894274373490629" + } + }, + "cborHex": "1b98a05e92bd5597c5", + "cborBytes": [27, 152, 160, 94, 146, 189, 85, 151, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1203, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15550835772111789870" + } + }, + "cborHex": "1bd7cfaabe2d291f2e", + "cborBytes": [27, 215, 207, 170, 190, 45, 41, 31, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1204, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2120032740958633335" + } + }, + "cborHex": "1b1d6bde8ba5097d77", + "cborBytes": [27, 29, 107, 222, 139, 165, 9, 125, 119], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1205, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12837378165787615480" + } + }, + "cborHex": "1bb227876d2b2060f8", + "cborBytes": [27, 178, 39, 135, 109, 43, 32, 96, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1206, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6851945770079182713" + } + }, + "cborHex": "1b5f17005fedcf5f79", + "cborBytes": [27, 95, 23, 0, 95, 237, 207, 95, 121], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1207, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6469039188184404588" + } + }, + "cborHex": "1b59c6a4de01d0126c", + "cborBytes": [27, 89, 198, 164, 222, 1, 208, 18, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1208, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8213665671395056208" + } + }, + "cborHex": "1b71fccd6907529a50", + "cborBytes": [27, 113, 252, 205, 105, 7, 82, 154, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1209, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14944897086157028214" + } + }, + "cborHex": "1bcf66f0b7e928fb76", + "cborBytes": [27, 207, 102, 240, 183, 233, 40, 251, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1210, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4638893723976499268" + } + }, + "cborHex": "1b4060a94398688044", + "cborBytes": [27, 64, 96, 169, 67, 152, 104, 128, 68], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1211, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1598723639985759476" + } + }, + "cborHex": "1b162fceae1f5ee4f4", + "cborBytes": [27, 22, 47, 206, 174, 31, 94, 228, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1212, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11036659278306372359" + } + }, + "cborHex": "1b992a17238e786b07", + "cborBytes": [27, 153, 42, 23, 35, 142, 120, 107, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1213, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16823801393002447253" + } + }, + "cborHex": "1be97a263b09a20195", + "cborBytes": [27, 233, 122, 38, 59, 9, 162, 1, 149], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1214, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15476240994874240818" + } + }, + "cborHex": "1bd6c6a7302dd12f32", + "cborBytes": [27, 214, 198, 167, 48, 45, 209, 47, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1215, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16764214249881839742" + } + }, + "cborHex": "1be8a6740a26bfa87e", + "cborBytes": [27, 232, 166, 116, 10, 38, 191, 168, 126], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1216, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11376464442030675936" + } + }, + "cborHex": "1b9de152228b19d7e0", + "cborBytes": [27, 157, 225, 82, 34, 139, 25, 215, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1217, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1308745901757799880" + } + }, + "cborHex": "1b12299976af859dc8", + "cborBytes": [27, 18, 41, 153, 118, 175, 133, 157, 200], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1218, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7040761062980782346" + } + }, + "cborHex": "1b61b5cee21b5f090a", + "cborBytes": [27, 97, 181, 206, 226, 27, 95, 9, 10], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1219, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6234785785973434172" + } + }, + "cborHex": "1b568668a39799e73c", + "cborBytes": [27, 86, 134, 104, 163, 151, 153, 231, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1220, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14581644874701150133" + } + }, + "cborHex": "1bca5c68c1b57517b5", + "cborBytes": [27, 202, 92, 104, 193, 181, 117, 23, 181], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1221, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5580130558433113203" + } + }, + "cborHex": "1b4d709b2d97b53473", + "cborBytes": [27, 77, 112, 155, 45, 151, 181, 52, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1222, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17223242554830846730" + } + }, + "cborHex": "1bef053fd9d9157b0a", + "cborBytes": [27, 239, 5, 63, 217, 217, 21, 123, 10], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1223, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17951983656180714547" + } + }, + "cborHex": "1bf922420588450c33", + "cborBytes": [27, 249, 34, 66, 5, 136, 69, 12, 51], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1224, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17197211935677121446" + } + }, + "cborHex": "1beea8c524092483a6", + "cborBytes": [27, 238, 168, 197, 36, 9, 36, 131, 166], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1225, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "725922031487991797" + } + }, + "cborHex": "1b0a12fe3dd578bff5", + "cborBytes": [27, 10, 18, 254, 61, 213, 120, 191, 245], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1226, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12326100614310287447" + } + }, + "cborHex": "1bab0f1b33c5b05857", + "cborBytes": [27, 171, 15, 27, 51, 197, 176, 88, 87], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1227, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4414571282330039481" + } + }, + "cborHex": "1b3d43b5311eec34b9", + "cborBytes": [27, 61, 67, 181, 49, 30, 236, 52, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1228, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18206410294153249263" + } + }, + "cborHex": "1bfcaa29b36a0501ef", + "cborBytes": [27, 252, 170, 41, 179, 106, 5, 1, 239], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1229, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3010592075463980887" + } + }, + "cborHex": "1b29c7c58ab5a2f757", + "cborBytes": [27, 41, 199, 197, 138, 181, 162, 247, 87], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1230, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18130292050095153200" + } + }, + "cborHex": "1bfb9bbc8fa802a030", + "cborBytes": [27, 251, 155, 188, 143, 168, 2, 160, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1231, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8519943265378425562" + } + }, + "cborHex": "1b763ceb425f5cdada", + "cborBytes": [27, 118, 60, 235, 66, 95, 92, 218, 218], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1232, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2698012787312219329" + } + }, + "cborHex": "1b25714455db34d4c1", + "cborBytes": [27, 37, 113, 68, 85, 219, 52, 212, 193], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1233, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11381597303369298600" + } + }, + "cborHex": "1b9df38e71f3def2a8", + "cborBytes": [27, 157, 243, 142, 113, 243, 222, 242, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1234, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6169346261980323909" + } + }, + "cborHex": "1b559debbd19b8a045", + "cborBytes": [27, 85, 157, 235, 189, 25, 184, 160, 69], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1235, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "298703471574053628" + } + }, + "cborHex": "1b042535398c58f2fc", + "cborBytes": [27, 4, 37, 53, 57, 140, 88, 242, 252], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1236, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9321152159938070694" + } + }, + "cborHex": "1b815b6280fe7948a6", + "cborBytes": [27, 129, 91, 98, 128, 254, 121, 72, 166], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1237, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4268951589221026295" + } + }, + "cborHex": "1b3b3e5cda3edbc9f7", + "cborBytes": [27, 59, 62, 92, 218, 62, 219, 201, 247], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1238, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17286436995568320759" + } + }, + "cborHex": "1befe5c2dc290540f7", + "cborBytes": [27, 239, 229, 194, 220, 41, 5, 64, 247], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1239, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5891869108064585206" + } + }, + "cborHex": "1b51c41fbcc14985f6", + "cborBytes": [27, 81, 196, 31, 188, 193, 73, 133, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1240, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2892619235682051763" + } + }, + "cborHex": "1b2824a5de7d4a66b3", + "cborBytes": [27, 40, 36, 165, 222, 125, 74, 102, 179], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1241, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11753363114177047739" + } + }, + "cborHex": "1ba31c557af8b3acbb", + "cborBytes": [27, 163, 28, 85, 122, 248, 179, 172, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1242, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7862867537482317955" + } + }, + "cborHex": "1b6d1e845db7958083", + "cborBytes": [27, 109, 30, 132, 93, 183, 149, 128, 131], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1243, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "387693194974239393" + } + }, + "cborHex": "1b05615ce820469aa1", + "cborBytes": [27, 5, 97, 92, 232, 32, 70, 154, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1244, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "163379899945671793" + } + }, + "cborHex": "1b0244712743b35c71", + "cborBytes": [27, 2, 68, 113, 39, 67, 179, 92, 113], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1245, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7061201205085840741" + } + }, + "cborHex": "1b61fe6d158cb3a565", + "cborBytes": [27, 97, 254, 109, 21, 140, 179, 165, 101], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1246, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11337045073756328332" + } + }, + "cborHex": "1b9d55466da7d6918c", + "cborBytes": [27, 157, 85, 70, 109, 167, 214, 145, 140], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1247, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4409404609721174900" + } + }, + "cborHex": "1b3d315a2169668b74", + "cborBytes": [27, 61, 49, 90, 33, 105, 102, 139, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1248, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6552903450813724577" + } + }, + "cborHex": "1b5af096f8412ef7a1", + "cborBytes": [27, 90, 240, 150, 248, 65, 46, 247, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1249, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6611775295905709315" + } + }, + "cborHex": "1b5bc1be99d729bd03", + "cborBytes": [27, 91, 193, 190, 153, 215, 41, 189, 3], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1250, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13772896295087446215" + } + }, + "cborHex": "1bbf2328355cfb18c7", + "cborBytes": [27, 191, 35, 40, 53, 92, 251, 24, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1251, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13199936415289203041" + } + }, + "cborHex": "1bb72f983bc30e5961", + "cborBytes": [27, 183, 47, 152, 59, 195, 14, 89, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1252, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5786180134001212330" + } + }, + "cborHex": "1b504ca42ce5907baa", + "cborBytes": [27, 80, 76, 164, 44, 229, 144, 123, 170], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1253, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10318676620714971667" + } + }, + "cborHex": "1b8f334db741d81213", + "cborBytes": [27, 143, 51, 77, 183, 65, 216, 18, 19], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1254, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9264795157058165525" + } + }, + "cborHex": "1b80932a1bbd361b15", + "cborBytes": [27, 128, 147, 42, 27, 189, 54, 27, 21], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1255, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10545035504451296843" + } + }, + "cborHex": "1b92577debdab39e4b", + "cborBytes": [27, 146, 87, 125, 235, 218, 179, 158, 75], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1256, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6787759395451740161" + } + }, + "cborHex": "1b5e32f73502b8a001", + "cborBytes": [27, 94, 50, 247, 53, 2, 184, 160, 1], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1257, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1784769598761370705" + } + }, + "cborHex": "1b18c4c67e74168451", + "cborBytes": [27, 24, 196, 198, 126, 116, 22, 132, 81], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1258, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15381274128460833047" + } + }, + "cborHex": "1bd57543538bd06117", + "cborBytes": [27, 213, 117, 67, 83, 139, 208, 97, 23], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1259, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8550321483781054894" + } + }, + "cborHex": "1b76a8d816842921ae", + "cborBytes": [27, 118, 168, 216, 22, 132, 41, 33, 174], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1260, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15256371469474291657" + } + }, + "cborHex": "1bd3b985050f6b5fc9", + "cborBytes": [27, 211, 185, 133, 5, 15, 107, 95, 201], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1261, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17186671237087726042" + } + }, + "cborHex": "1bee83526e660989da", + "cborBytes": [27, 238, 131, 82, 110, 102, 9, 137, 218], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1262, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15491586362655092220" + } + }, + "cborHex": "1bd6fd2bb80957adfc", + "cborBytes": [27, 214, 253, 43, 184, 9, 87, 173, 252], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1263, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17083461049695904139" + } + }, + "cborHex": "1bed14a5500958a18b", + "cborBytes": [27, 237, 20, 165, 80, 9, 88, 161, 139], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1264, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15368101046323726556" + } + }, + "cborHex": "1bd546767a5a6f48dc", + "cborBytes": [27, 213, 70, 118, 122, 90, 111, 72, 220], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1265, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8006822621151975712" + } + }, + "cborHex": "1b6f1df2c081535920", + "cborBytes": [27, 111, 29, 242, 192, 129, 83, 89, 32], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1266, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18126559923114390694" + } + }, + "cborHex": "1bfb8e7a362110b4a6", + "cborBytes": [27, 251, 142, 122, 54, 33, 16, 180, 166], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1267, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8633688695428654388" + } + }, + "cborHex": "1b77d106201054a534", + "cborBytes": [27, 119, 209, 6, 32, 16, 84, 165, 52], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1268, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6273126112110983909" + } + }, + "cborHex": "1b570e9ef6679a3ae5", + "cborBytes": [27, 87, 14, 158, 246, 103, 154, 58, 229], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1269, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10214845449622882668" + } + }, + "cborHex": "1b8dc26bd0dc49896c", + "cborBytes": [27, 141, 194, 107, 208, 220, 73, 137, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1270, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8361177061341693786" + } + }, + "cborHex": "1b7408de3ce56a875a", + "cborBytes": [27, 116, 8, 222, 60, 229, 106, 135, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1271, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15882857826050768729" + } + }, + "cborHex": "1bdc6b3f0ab3c9ff59", + "cborBytes": [27, 220, 107, 63, 10, 179, 201, 255, 89], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1272, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13094867309479673780" + } + }, + "cborHex": "1bb5ba50703a693fb4", + "cborBytes": [27, 181, 186, 80, 112, 58, 105, 63, 180], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1273, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18236923787606918113" + } + }, + "cborHex": "1bfd16918fbc2e83e1", + "cborBytes": [27, 253, 22, 145, 143, 188, 46, 131, 225], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1274, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4506823183221098880" + } + }, + "cborHex": "1b3e8b73ce95638980", + "cborBytes": [27, 62, 139, 115, 206, 149, 99, 137, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1275, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15240779336814221922" + } + }, + "cborHex": "1bd382200ec6ecda62", + "cborBytes": [27, 211, 130, 32, 14, 198, 236, 218, 98], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1276, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10360973167208360160" + } + }, + "cborHex": "1b8fc9923366cee8e0", + "cborBytes": [27, 143, 201, 146, 51, 102, 206, 232, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1277, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1569376576469193273" + } + }, + "cborHex": "1b15c78bae6f43d239", + "cborBytes": [27, 21, 199, 139, 174, 111, 67, 210, 57], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1278, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1673197608761922210" + } + }, + "cborHex": "1b1738645c354992a2", + "cborBytes": [27, 23, 56, 100, 92, 53, 73, 146, 162], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1279, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5237834554518040384" + } + }, + "cborHex": "1b48b086c6ae506f40", + "cborBytes": [27, 72, 176, 134, 198, 174, 80, 111, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1280, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11292761840094967670" + } + }, + "cborHex": "1b9cb7f30fdbf27776", + "cborBytes": [27, 156, 183, 243, 15, 219, 242, 119, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1281, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9347973993939564043" + } + }, + "cborHex": "1b81baacd1de5b760b", + "cborBytes": [27, 129, 186, 172, 209, 222, 91, 118, 11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1282, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17424100034334553280" + } + }, + "cborHex": "1bf1ced6aa1561f4c0", + "cborBytes": [27, 241, 206, 214, 170, 21, 97, 244, 192], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1283, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2824290248396818654" + } + }, + "cborHex": "1b2731e504664ac8de", + "cborBytes": [27, 39, 49, 229, 4, 102, 74, 200, 222], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1284, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9857295060923550040" + } + }, + "cborHex": "1b88cc25a1b88f8958", + "cborBytes": [27, 136, 204, 37, 161, 184, 143, 137, 88], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1285, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17810376182561195851" + } + }, + "cborHex": "1bf72b2ac64da3474b", + "cborBytes": [27, 247, 43, 42, 198, 77, 163, 71, 75], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1286, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18321936636487044991" + } + }, + "cborHex": "1bfe44984c0f068f7f", + "cborBytes": [27, 254, 68, 152, 76, 15, 6, 143, 127], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1287, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "972131374555495188" + } + }, + "cborHex": "1b0d7db455a7647b14", + "cborBytes": [27, 13, 125, 180, 85, 167, 100, 123, 20], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1288, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14090854766019816723" + } + }, + "cborHex": "1bc38cc5c0ce3b2d13", + "cborBytes": [27, 195, 140, 197, 192, 206, 59, 45, 19], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1289, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18297659852052560312" + } + }, + "cborHex": "1bfdee58b0b684f9b8", + "cborBytes": [27, 253, 238, 88, 176, 182, 132, 249, 184], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1290, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5814862661660587349" + } + }, + "cborHex": "1b50b28ac845f63555", + "cborBytes": [27, 80, 178, 138, 200, 69, 246, 53, 85], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1291, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4812563118103426488" + } + }, + "cborHex": "1b42c9a8a869b375b8", + "cborBytes": [27, 66, 201, 168, 168, 105, 179, 117, 184], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1292, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3029243666872177670" + } + }, + "cborHex": "1b2a0a0910be049406", + "cborBytes": [27, 42, 10, 9, 16, 190, 4, 148, 6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1293, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1900397625491244175" + } + }, + "cborHex": "1b1a5f91925766c48f", + "cborBytes": [27, 26, 95, 145, 146, 87, 102, 196, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1294, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3351617803242983521" + } + }, + "cborHex": "1b2e8356a2692c5061", + "cborBytes": [27, 46, 131, 86, 162, 105, 44, 80, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1295, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4274071615405703164" + } + }, + "cborHex": "1b3b508d7d3cd63ffc", + "cborBytes": [27, 59, 80, 141, 125, 60, 214, 63, 252], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1296, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2810286971970277275" + } + }, + "cborHex": "1b2700251c89324f9b", + "cborBytes": [27, 39, 0, 37, 28, 137, 50, 79, 155], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1297, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10862819008556060816" + } + }, + "cborHex": "1b96c07c55a8585090", + "cborBytes": [27, 150, 192, 124, 85, 168, 88, 80, 144], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1298, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8493445140608630437" + } + }, + "cborHex": "1b75dec75aed3ebea5", + "cborBytes": [27, 117, 222, 199, 90, 237, 62, 190, 165], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1299, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13368942898911998562" + } + }, + "cborHex": "1bb98806bc20217262", + "cborBytes": [27, 185, 136, 6, 188, 32, 33, 114, 98], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1300, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2529605324834892928" + } + }, + "cborHex": "1b231af6a3f8b86c80", + "cborBytes": [27, 35, 26, 246, 163, 248, 184, 108, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1301, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1672419143336157529" + } + }, + "cborHex": "1b1735a0599a1d6159", + "cborBytes": [27, 23, 53, 160, 89, 154, 29, 97, 89], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1302, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17550991962981572702" + } + }, + "cborHex": "1bf391a6338140a05e", + "cborBytes": [27, 243, 145, 166, 51, 129, 64, 160, 94], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1303, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14285397639960890977" + } + }, + "cborHex": "1bc63fed775d128e61", + "cborBytes": [27, 198, 63, 237, 119, 93, 18, 142, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1304, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10406256437505921340" + } + }, + "cborHex": "1b906a73185f29913c", + "cborBytes": [27, 144, 106, 115, 24, 95, 41, 145, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1305, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4459021828319082287" + } + }, + "cborHex": "1b3de1a0ba5aabf72f", + "cborBytes": [27, 61, 225, 160, 186, 90, 171, 247, 47], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1306, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8181865324932623035" + } + }, + "cborHex": "1b718bd329e4b1eabb", + "cborBytes": [27, 113, 139, 211, 41, 228, 177, 234, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1307, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16695260533598470648" + } + }, + "cborHex": "1be7b17b0001bc41f8", + "cborBytes": [27, 231, 177, 123, 0, 1, 188, 65, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1308, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2400573374868998013" + } + }, + "cborHex": "1b21508cc40253c77d", + "cborBytes": [27, 33, 80, 140, 196, 2, 83, 199, 125], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1309, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8367889283195647784" + } + }, + "cborHex": "1b7420b6f7d4acb728", + "cborBytes": [27, 116, 32, 182, 247, 212, 172, 183, 40], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1310, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7684643111752909977" + } + }, + "cborHex": "1b6aa55631f5af4499", + "cborBytes": [27, 106, 165, 86, 49, 245, 175, 68, 153], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1311, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18071256421011241404" + } + }, + "cborHex": "1bfac9fff8235f39bc", + "cborBytes": [27, 250, 201, 255, 248, 35, 95, 57, 188], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1312, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10458196929946851593" + } + }, + "cborHex": "1b9122fab2a8901909", + "cborBytes": [27, 145, 34, 250, 178, 168, 144, 25, 9], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1313, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1675687118090939336" + } + }, + "cborHex": "1b17413c8e44822bc8", + "cborBytes": [27, 23, 65, 60, 142, 68, 130, 43, 200], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1314, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8261237528244753569" + } + }, + "cborHex": "1b72a5cfc3142794a1", + "cborBytes": [27, 114, 165, 207, 195, 20, 39, 148, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1315, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2622416836990648105" + } + }, + "cborHex": "1b2464b23815d4bf29", + "cborBytes": [27, 36, 100, 178, 56, 21, 212, 191, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1316, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15231732206259639715" + } + }, + "cborHex": "1bd361fbbd8bfb95a3", + "cborBytes": [27, 211, 97, 251, 189, 139, 251, 149, 163], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1317, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5169797588155348887" + } + }, + "cborHex": "1b47becf8402abb797", + "cborBytes": [27, 71, 190, 207, 132, 2, 171, 183, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1318, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18097649526818548116" + } + }, + "cborHex": "1bfb27c45bf3892994", + "cborBytes": [27, 251, 39, 196, 91, 243, 137, 41, 148], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1319, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12799881917232400762" + } + }, + "cborHex": "1bb1a250c97b95497a", + "cborBytes": [27, 177, 162, 80, 201, 123, 149, 73, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1320, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15054863510524306470" + } + }, + "cborHex": "1bd0ed9e9946caa426", + "cborBytes": [27, 208, 237, 158, 153, 70, 202, 164, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1321, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7021906654165760008" + } + }, + "cborHex": "1b6172d2e5f7807808", + "cborBytes": [27, 97, 114, 210, 229, 247, 128, 120, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1322, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12619066180455578785" + } + }, + "cborHex": "1baf1fedd51b333ca1", + "cborBytes": [27, 175, 31, 237, 213, 27, 51, 60, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1323, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "594619843327657652" + } + }, + "cborHex": "1b08408398d9f186b4", + "cborBytes": [27, 8, 64, 131, 152, 217, 241, 134, 180], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1324, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11435073884616069134" + } + }, + "cborHex": "1b9eb18b1cc8e3100e", + "cborBytes": [27, 158, 177, 139, 28, 200, 227, 16, 14], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1325, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9117859624640623669" + } + }, + "cborHex": "1b7e8925052694b435", + "cborBytes": [27, 126, 137, 37, 5, 38, 148, 180, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1326, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11288664517193558868" + } + }, + "cborHex": "1b9ca9649187e0eb54", + "cborBytes": [27, 156, 169, 100, 145, 135, 224, 235, 84], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1327, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "408209848720260876" + } + }, + "cborHex": "1b05aa40b1d2c97f0c", + "cborBytes": [27, 5, 170, 64, 177, 210, 201, 127, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1328, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17645004990420740859" + } + }, + "cborHex": "1bf4dfa68d3205eafb", + "cborBytes": [27, 244, 223, 166, 141, 50, 5, 234, 251], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1329, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6905562706678314878" + } + }, + "cborHex": "1b5fd57cb1c9bef77e", + "cborBytes": [27, 95, 213, 124, 177, 201, 190, 247, 126], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1330, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10482429611047565760" + } + }, + "cborHex": "1b917912316586b9c0", + "cborBytes": [27, 145, 121, 18, 49, 101, 134, 185, 192], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1331, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14205075985066660655" + } + }, + "cborHex": "1bc5229158c154932f", + "cborBytes": [27, 197, 34, 145, 88, 193, 84, 147, 47], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1332, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6959551244705795308" + } + }, + "cborHex": "1b60954afbd8d10cec", + "cborBytes": [27, 96, 149, 74, 251, 216, 209, 12, 236], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1333, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5308133906046444403" + } + }, + "cborHex": "1b49aa47a9f21ae373", + "cborBytes": [27, 73, 170, 71, 169, 242, 26, 227, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1334, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4481006633161043100" + } + }, + "cborHex": "1b3e2fbbca9dbbac9c", + "cborBytes": [27, 62, 47, 187, 202, 157, 187, 172, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1335, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15965591125443206258" + } + }, + "cborHex": "1bdd912c8a0d2bdc72", + "cborBytes": [27, 221, 145, 44, 138, 13, 43, 220, 114], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1336, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4216761698291547837" + } + }, + "cborHex": "1b3a84f26c5923febd", + "cborBytes": [27, 58, 132, 242, 108, 89, 35, 254, 189], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1337, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15718099742306969246" + } + }, + "cborHex": "1bda21e870045da69e", + "cborBytes": [27, 218, 33, 232, 112, 4, 93, 166, 158], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1338, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2168906762267385184" + } + }, + "cborHex": "1b1e1981357be3dd60", + "cborBytes": [27, 30, 25, 129, 53, 123, 227, 221, 96], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1339, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6455332094883913016" + } + }, + "cborHex": "1b5995f256a6bbdd38", + "cborBytes": [27, 89, 149, 242, 86, 166, 187, 221, 56], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1340, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8305671007473357302" + } + }, + "cborHex": "1b7343abc6a5b5d1f6", + "cborBytes": [27, 115, 67, 171, 198, 165, 181, 209, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1341, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15839200741302876162" + } + }, + "cborHex": "1bdbd025278f763802", + "cborBytes": [27, 219, 208, 37, 39, 143, 118, 56, 2], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1342, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7054492900762056180" + } + }, + "cborHex": "1b61e697eabc6ff5f4", + "cborBytes": [27, 97, 230, 151, 234, 188, 111, 245, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1343, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5008474244743150480" + } + }, + "cborHex": "1b4581acca209bbb90", + "cborBytes": [27, 69, 129, 172, 202, 32, 155, 187, 144], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1344, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1090997698379180" + } + }, + "cborHex": "1b0003e041b2433dac", + "cborBytes": [27, 0, 3, 224, 65, 178, 67, 61, 172], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1345, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14111240394637713629" + } + }, + "cborHex": "1bc3d5325fd68620dd", + "cborBytes": [27, 195, 213, 50, 95, 214, 134, 32, 221], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1346, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13552972510858787198" + } + }, + "cborHex": "1bbc15d4b1205f397e", + "cborBytes": [27, 188, 21, 212, 177, 32, 95, 57, 126], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1347, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13518167519366350558" + } + }, + "cborHex": "1bbb9a2dbc8e0e06de", + "cborBytes": [27, 187, 154, 45, 188, 142, 14, 6, 222], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1348, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15051854768350572441" + } + }, + "cborHex": "1bd0e2ee29e64e2f99", + "cborBytes": [27, 208, 226, 238, 41, 230, 78, 47, 153], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1349, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "863895460051032686" + } + }, + "cborHex": "1b0bfd2c58036a1a6e", + "cborBytes": [27, 11, 253, 44, 88, 3, 106, 26, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1350, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7540550921330943201" + } + }, + "cborHex": "1b68a56b1c84ace4e1", + "cborBytes": [27, 104, 165, 107, 28, 132, 172, 228, 225], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1351, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14297166893178261516" + } + }, + "cborHex": "1bc669bd8a2a5d900c", + "cborBytes": [27, 198, 105, 189, 138, 42, 93, 144, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1352, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7860330297502044666" + } + }, + "cborHex": "1b6d1580c27fd991fa", + "cborBytes": [27, 109, 21, 128, 194, 127, 217, 145, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1353, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2774309778941290081" + } + }, + "cborHex": "1b2680540b86b02661", + "cborBytes": [27, 38, 128, 84, 11, 134, 176, 38, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1354, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2142892565517120775" + } + }, + "cborHex": "1b1dbd156f4f793507", + "cborBytes": [27, 29, 189, 21, 111, 79, 121, 53, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1355, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9280426801729118749" + } + }, + "cborHex": "1b80cab301a114221d", + "cborBytes": [27, 128, 202, 179, 1, 161, 20, 34, 29], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1356, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7053144641062632855" + } + }, + "cborHex": "1b61e1cdae8ffcfd97", + "cborBytes": [27, 97, 225, 205, 174, 143, 252, 253, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1357, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15647307054219394390" + } + }, + "cborHex": "1bd92666dce235fd56", + "cborBytes": [27, 217, 38, 102, 220, 226, 53, 253, 86], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1358, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17215854066046484201" + } + }, + "cborHex": "1beeeb000f3faa3ee9", + "cborBytes": [27, 238, 235, 0, 15, 63, 170, 62, 233], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1359, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8203512936937841852" + } + }, + "cborHex": "1b71d8bb8d548064bc", + "cborBytes": [27, 113, 216, 187, 141, 84, 128, 100, 188], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1360, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14666926243288006" + } + }, + "cborHex": "1b00341b7de0ad93c6", + "cborBytes": [27, 0, 52, 27, 125, 224, 173, 147, 198], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1361, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11209187449636300890" + } + }, + "cborHex": "1b9b8f0898bc56a85a", + "cborBytes": [27, 155, 143, 8, 152, 188, 86, 168, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1362, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8123854694140972720" + } + }, + "cborHex": "1b70bdbacd63298eb0", + "cborBytes": [27, 112, 189, 186, 205, 99, 41, 142, 176], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1363, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1160983852937524855" + } + }, + "cborHex": "1b101ca4a9c04e3677", + "cborBytes": [27, 16, 28, 164, 169, 192, 78, 54, 119], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1364, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "714384616472913446" + } + }, + "cborHex": "1b09ea010611df2626", + "cborBytes": [27, 9, 234, 1, 6, 17, 223, 38, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1365, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11056332636341197678" + } + }, + "cborHex": "1b996ffbf42bacdb6e", + "cborBytes": [27, 153, 111, 251, 244, 43, 172, 219, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1366, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "208288826047721676" + } + }, + "cborHex": "1b02e3fd956f41f0cc", + "cborBytes": [27, 2, 227, 253, 149, 111, 65, 240, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1367, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3703411053808024507" + } + }, + "cborHex": "1b336528bb5f7b7bbb", + "cborBytes": [27, 51, 101, 40, 187, 95, 123, 123, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1368, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16624318621790660234" + } + }, + "cborHex": "1be6b571b504be668a", + "cborBytes": [27, 230, 181, 113, 181, 4, 190, 102, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1369, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6068143372816092080" + } + }, + "cborHex": "1b5436603f46d80bb0", + "cborBytes": [27, 84, 54, 96, 63, 70, 216, 11, 176], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1370, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1984760930457062410" + } + }, + "cborHex": "1b1b8b498ceff78c0a", + "cborBytes": [27, 27, 139, 73, 140, 239, 247, 140, 10], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1371, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12362773423768861035" + } + }, + "cborHex": "1bab9164ed9a61f96b", + "cborBytes": [27, 171, 145, 100, 237, 154, 97, 249, 107], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1372, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10614421110956325855" + } + }, + "cborHex": "1b934dffc346f57bdf", + "cborBytes": [27, 147, 77, 255, 195, 70, 245, 123, 223], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1373, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17029272236226012914" + } + }, + "cborHex": "1bec5420dfb7ac66f2", + "cborBytes": [27, 236, 84, 32, 223, 183, 172, 102, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1374, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10360173486404846861" + } + }, + "cborHex": "1b8fc6bae53494c50d", + "cborBytes": [27, 143, 198, 186, 229, 52, 148, 197, 13], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1375, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3462473568081628747" + } + }, + "cborHex": "1b300d2d5d7daf4e4b", + "cborBytes": [27, 48, 13, 45, 93, 125, 175, 78, 75], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1376, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15552726260679539705" + } + }, + "cborHex": "1bd7d66221d8b17bf9", + "cborBytes": [27, 215, 214, 98, 33, 216, 177, 123, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1377, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10052225626282361515" + } + }, + "cborHex": "1b8b80adf2b8a382ab", + "cborBytes": [27, 139, 128, 173, 242, 184, 163, 130, 171], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1378, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4609975603377169021" + } + }, + "cborHex": "1b3ff9ec62f683627d", + "cborBytes": [27, 63, 249, 236, 98, 246, 131, 98, 125], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1379, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10277359033610391269" + } + }, + "cborHex": "1b8ea08396db7fcee5", + "cborBytes": [27, 142, 160, 131, 150, 219, 127, 206, 229], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1380, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17254579327396643403" + } + }, + "cborHex": "1bef74947ac646824b", + "cborBytes": [27, 239, 116, 148, 122, 198, 70, 130, 75], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1381, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2539149021370957418" + } + }, + "cborHex": "1b233cde94fa98be6a", + "cborBytes": [27, 35, 60, 222, 148, 250, 152, 190, 106], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1382, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18386716775325643388" + } + }, + "cborHex": "1bff2abd7d7b00327c", + "cborBytes": [27, 255, 42, 189, 125, 123, 0, 50, 124], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1383, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9141160845537634721" + } + }, + "cborHex": "1b7edbed5b68fae9a1", + "cborBytes": [27, 126, 219, 237, 91, 104, 250, 233, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1384, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3282324726216842734" + } + }, + "cborHex": "1b2d8d28f2afa2ddee", + "cborBytes": [27, 45, 141, 40, 242, 175, 162, 221, 238], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1385, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3058035146880611030" + } + }, + "cborHex": "1b2a7052c3907a72d6", + "cborBytes": [27, 42, 112, 82, 195, 144, 122, 114, 214], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1386, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8561672030894130928" + } + }, + "cborHex": "1b76d12b59b4d786f0", + "cborBytes": [27, 118, 209, 43, 89, 180, 215, 134, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1387, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5513020512480606023" + } + }, + "cborHex": "1b4c822ef265d93747", + "cborBytes": [27, 76, 130, 46, 242, 101, 217, 55, 71], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1388, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16509787674741586310" + } + }, + "cborHex": "1be51e8c6ae6183986", + "cborBytes": [27, 229, 30, 140, 106, 230, 24, 57, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1389, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8121535599210839831" + } + }, + "cborHex": "1b70b57d9905a6bf17", + "cborBytes": [27, 112, 181, 125, 153, 5, 166, 191, 23], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1390, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15617901464228468664" + } + }, + "cborHex": "1bd8bdeea2706417b8", + "cborBytes": [27, 216, 189, 238, 162, 112, 100, 23, 184], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1391, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6176780293158260891" + } + }, + "cborHex": "1b55b854f35d54d09b", + "cborBytes": [27, 85, 184, 84, 243, 93, 84, 208, 155], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1392, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "535479415402803290" + } + }, + "cborHex": "1b076e67b0f39e305a", + "cborBytes": [27, 7, 110, 103, 176, 243, 158, 48, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1393, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "682016379975221722" + } + }, + "cborHex": "1b09770248bb6bc1da", + "cborBytes": [27, 9, 119, 2, 72, 187, 107, 193, 218], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1394, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16879873254370246811" + } + }, + "cborHex": "1bea415b4a9c5b009b", + "cborBytes": [27, 234, 65, 91, 74, 156, 91, 0, 155], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1395, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10009453991928798646" + } + }, + "cborHex": "1b8ae8b95f90881db6", + "cborBytes": [27, 138, 232, 185, 95, 144, 136, 29, 182], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1396, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1102579386196213027" + } + }, + "cborHex": "1b0f4d261c2ae4bd23", + "cborBytes": [27, 15, 77, 38, 28, 42, 228, 189, 35], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1397, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4059757082980621141" + } + }, + "cborHex": "1b3857278eb56f9b55", + "cborBytes": [27, 56, 87, 39, 142, 181, 111, 155, 85], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1398, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1179958016090047435" + } + }, + "cborHex": "1b10600d905eec03cb", + "cborBytes": [27, 16, 96, 13, 144, 94, 236, 3, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1399, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1927952914515741796" + } + }, + "cborHex": "1b1ac176f60563cc64", + "cborBytes": [27, 26, 193, 118, 246, 5, 99, 204, 100], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1400, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3558546736741382434" + } + }, + "cborHex": "1b31627f6730187922", + "cborBytes": [27, 49, 98, 127, 103, 48, 24, 121, 34], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1401, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12172988488122116375" + } + }, + "cborHex": "1ba8ef2488e1702917", + "cborBytes": [27, 168, 239, 36, 136, 225, 112, 41, 23], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1402, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7326145363148743172" + } + }, + "cborHex": "1b65abb264675b2204", + "cborBytes": [27, 101, 171, 178, 100, 103, 91, 34, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1403, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10555529845535960817" + } + }, + "cborHex": "1b927cc6780b346ef1", + "cborBytes": [27, 146, 124, 198, 120, 11, 52, 110, 241], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1404, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12681577794126718990" + } + }, + "cborHex": "1baffe03d05a67a80e", + "cborBytes": [27, 175, 254, 3, 208, 90, 103, 168, 14], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1405, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8773872226028766802" + } + }, + "cborHex": "1b79c30e4db91c4652", + "cborBytes": [27, 121, 195, 14, 77, 185, 28, 70, 82], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1406, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12641150866889299050" + } + }, + "cborHex": "1baf6e63bcdd0ed46a", + "cborBytes": [27, 175, 110, 99, 188, 221, 14, 212, 106], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1407, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18390547818458599801" + } + }, + "cborHex": "1bff3859cdb80f5179", + "cborBytes": [27, 255, 56, 89, 205, 184, 15, 81, 121], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1408, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "800788825187728537" + } + }, + "cborHex": "1b0b1cf931996abc99", + "cborBytes": [27, 11, 28, 249, 49, 153, 106, 188, 153], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1409, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8428899458985391126" + } + }, + "cborHex": "1b74f97766544e7416", + "cborBytes": [27, 116, 249, 119, 102, 84, 78, 116, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1410, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18071658560475124450" + } + }, + "cborHex": "1bfacb6db6874452e2", + "cborBytes": [27, 250, 203, 109, 182, 135, 68, 82, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1411, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17321706231396440493" + } + }, + "cborHex": "1bf063100b0a0e19ad", + "cborBytes": [27, 240, 99, 16, 11, 10, 14, 25, 173], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1412, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5632257419986031881" + } + }, + "cborHex": "1b4e29cc4851d35509", + "cborBytes": [27, 78, 41, 204, 72, 81, 211, 85, 9], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1413, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1405904851522900239" + } + }, + "cborHex": "1b1382c7037f05510f", + "cborBytes": [27, 19, 130, 199, 3, 127, 5, 81, 15], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1414, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13385970606511764935" + } + }, + "cborHex": "1bb9c485583ef435c7", + "cborBytes": [27, 185, 196, 133, 88, 62, 244, 53, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1415, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10897784036988521489" + } + }, + "cborHex": "1b973cb4d7bb9f8c11", + "cborBytes": [27, 151, 60, 180, 215, 187, 159, 140, 17], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1416, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1270900966265601797" + } + }, + "cborHex": "1b11a325b1fef63f05", + "cborBytes": [27, 17, 163, 37, 177, 254, 246, 63, 5], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1417, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15251167800776004360" + } + }, + "cborHex": "1bd3a7084f87211308", + "cborBytes": [27, 211, 167, 8, 79, 135, 33, 19, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1418, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18041036964705795955" + } + }, + "cborHex": "1bfa5ea388acfaff73", + "cborBytes": [27, 250, 94, 163, 136, 172, 250, 255, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1419, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2299761394240798753" + } + }, + "cborHex": "1b1fea64cdabe14021", + "cborBytes": [27, 31, 234, 100, 205, 171, 225, 64, 33], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1420, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1452983753535152731" + } + }, + "cborHex": "1b142a09068de0625b", + "cborBytes": [27, 20, 42, 9, 6, 141, 224, 98, 91], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1421, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6643347575080903201" + } + }, + "cborHex": "1b5c31e96bec266221", + "cborBytes": [27, 92, 49, 233, 107, 236, 38, 98, 33], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1422, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11399474587891192386" + } + }, + "cborHex": "1b9e3311bd9d58d242", + "cborBytes": [27, 158, 51, 17, 189, 157, 88, 210, 66], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1423, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8781711727189347207" + } + }, + "cborHex": "1b79dee849d300cb87", + "cborBytes": [27, 121, 222, 232, 73, 211, 0, 203, 135], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1424, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10192493761791716664" + } + }, + "cborHex": "1b8d730312fefaed38", + "cborBytes": [27, 141, 115, 3, 18, 254, 250, 237, 56], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1425, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "370898560004729846" + } + }, + "cborHex": "1b0525b24674c92bf6", + "cborBytes": [27, 5, 37, 178, 70, 116, 201, 43, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1426, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3398315942960508418" + } + }, + "cborHex": "1b2f293e5856b52e02", + "cborBytes": [27, 47, 41, 62, 88, 86, 181, 46, 2], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1427, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17865255707769679174" + } + }, + "cborHex": "1bf7ee23697b21ad46", + "cborBytes": [27, 247, 238, 35, 105, 123, 33, 173, 70], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1428, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14816623578455434335" + } + }, + "cborHex": "1bcd9f38a48c83645f", + "cborBytes": [27, 205, 159, 56, 164, 140, 131, 100, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1429, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12727703281541179462" + } + }, + "cborHex": "1bb0a1e2b346d5e846", + "cborBytes": [27, 176, 161, 226, 179, 70, 213, 232, 70], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1430, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13402474434297555326" + } + }, + "cborHex": "1bb9ff277d178f697e", + "cborBytes": [27, 185, 255, 39, 125, 23, 143, 105, 126], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1431, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15151590766398552648" + } + }, + "cborHex": "1bd245438685463a48", + "cborBytes": [27, 210, 69, 67, 134, 133, 70, 58, 72], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1432, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16772783832732928178" + } + }, + "cborHex": "1be8c4e607a47608b2", + "cborBytes": [27, 232, 196, 230, 7, 164, 118, 8, 178], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1433, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4935947519069311374" + } + }, + "cborHex": "1b4480021de818d18e", + "cborBytes": [27, 68, 128, 2, 29, 232, 24, 209, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1434, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15787872469991559295" + } + }, + "cborHex": "1bdb19ca5d1d04107f", + "cborBytes": [27, 219, 25, 202, 93, 29, 4, 16, 127], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1435, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16846439030019714924" + } + }, + "cborHex": "1be9ca930aa299ef6c", + "cborBytes": [27, 233, 202, 147, 10, 162, 153, 239, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1436, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5305498234609621699" + } + }, + "cborHex": "1b49a0ea88de5e5ac3", + "cborBytes": [27, 73, 160, 234, 136, 222, 94, 90, 195], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1437, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4164934846802374419" + } + }, + "cborHex": "1b39ccd22d284d2f13", + "cborBytes": [27, 57, 204, 210, 45, 40, 77, 47, 19], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1438, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7130415833956630352" + } + }, + "cborHex": "1b62f4536c23ce3f50", + "cborBytes": [27, 98, 244, 83, 108, 35, 206, 63, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1439, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "589797977459723085" + } + }, + "cborHex": "1b082f6222b7bb0b4d", + "cborBytes": [27, 8, 47, 98, 34, 183, 187, 11, 77], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1440, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12953138148196080907" + } + }, + "cborHex": "1bb3c2ca8461c9dd0b", + "cborBytes": [27, 179, 194, 202, 132, 97, 201, 221, 11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1441, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1902521383152214885" + } + }, + "cborHex": "1b1a671d1e345f6365", + "cborBytes": [27, 26, 103, 29, 30, 52, 95, 99, 101], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1442, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12111687938577208344" + } + }, + "cborHex": "1ba8155c0279471418", + "cborBytes": [27, 168, 21, 92, 2, 121, 71, 20, 24], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1443, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7557457721194004740" + } + }, + "cborHex": "1b68e17bc19ccd4104", + "cborBytes": [27, 104, 225, 123, 193, 156, 205, 65, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1444, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4191701178254265" + } + }, + "cborHex": "1b000ee4547bbc03b9", + "cborBytes": [27, 0, 14, 228, 84, 123, 188, 3, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1445, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1832431147210020214" + } + }, + "cborHex": "1b196e1a6b74d09576", + "cborBytes": [27, 25, 110, 26, 107, 116, 208, 149, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1446, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14980609041814790583" + } + }, + "cborHex": "1bcfe5d08d886021b7", + "cborBytes": [27, 207, 229, 208, 141, 136, 96, 33, 183], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1447, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16890024661589358683" + } + }, + "cborHex": "1bea656bf1499ef85b", + "cborBytes": [27, 234, 101, 107, 241, 73, 158, 248, 91], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1448, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10941229214289983935" + } + }, + "cborHex": "1b97d70e0053e179bf", + "cborBytes": [27, 151, 215, 14, 0, 83, 225, 121, 191], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1449, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3146268552183419958" + } + }, + "cborHex": "1b2ba9ca941ce01436", + "cborBytes": [27, 43, 169, 202, 148, 28, 224, 20, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1450, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9134267170371764375" + } + }, + "cborHex": "1b7ec36f9895858097", + "cborBytes": [27, 126, 195, 111, 152, 149, 133, 128, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1451, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17854302822501501616" + } + }, + "cborHex": "1bf7c739d22774cab0", + "cborBytes": [27, 247, 199, 57, 210, 39, 116, 202, 176], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1452, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2179333096392037753" + } + }, + "cborHex": "1b1e3e8be791b31579", + "cborBytes": [27, 30, 62, 139, 231, 145, 179, 21, 121], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1453, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16357431197878080655" + } + }, + "cborHex": "1be3014502536a548f", + "cborBytes": [27, 227, 1, 69, 2, 83, 106, 84, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1454, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10462193996096301310" + } + }, + "cborHex": "1b91312e02248b68fe", + "cborBytes": [27, 145, 49, 46, 2, 36, 139, 104, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1455, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2026317579073084967" + } + }, + "cborHex": "1b1c1eed1a2ec7de27", + "cborBytes": [27, 28, 30, 237, 26, 46, 199, 222, 39], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1456, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10938060377562761838" + } + }, + "cborHex": "1b97cbcbf608674a6e", + "cborBytes": [27, 151, 203, 203, 246, 8, 103, 74, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1457, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13974833082748261782" + } + }, + "cborHex": "1bc1f094a59c965596", + "cborBytes": [27, 193, 240, 148, 165, 156, 150, 85, 150], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1458, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1945542818533949270" + } + }, + "cborHex": "1b1afff4e2b2073f56", + "cborBytes": [27, 26, 255, 244, 226, 178, 7, 63, 86], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1459, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10562915460698529267" + } + }, + "cborHex": "1b929703a5936addf3", + "cborBytes": [27, 146, 151, 3, 165, 147, 106, 221, 243], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1460, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8093936147652200456" + } + }, + "cborHex": "1b7053700af380c808", + "cborBytes": [27, 112, 83, 112, 10, 243, 128, 200, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1461, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13214880977171182040" + } + }, + "cborHex": "1bb764b03bb95af1d8", + "cborBytes": [27, 183, 100, 176, 59, 185, 90, 241, 216], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1462, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18311704450331040836" + } + }, + "cborHex": "1bfe203e2d91ebdc44", + "cborBytes": [27, 254, 32, 62, 45, 145, 235, 220, 68], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1463, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1892633253541493618" + } + }, + "cborHex": "1b1a43fbea9f6ebb72", + "cborBytes": [27, 26, 67, 251, 234, 159, 110, 187, 114], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1464, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16532305396864651607" + } + }, + "cborHex": "1be56e8c2aa2641157", + "cborBytes": [27, 229, 110, 140, 42, 162, 100, 17, 87], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1465, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17364441112373183136" + } + }, + "cborHex": "1bf0fae330e23142a0", + "cborBytes": [27, 240, 250, 227, 48, 226, 49, 66, 160], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1466, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13389797461666293356" + } + }, + "cborHex": "1bb9d21dd9650be66c", + "cborBytes": [27, 185, 210, 29, 217, 101, 11, 230, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1467, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3303376327006891846" + } + }, + "cborHex": "1b2dd7f34472ae2f46", + "cborBytes": [27, 45, 215, 243, 68, 114, 174, 47, 70], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1468, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8547863078236674703" + } + }, + "cborHex": "1b76a01c2e5ef95a8f", + "cborBytes": [27, 118, 160, 28, 46, 94, 249, 90, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1469, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "407589932464791914" + } + }, + "cborHex": "1b05a80ce25296e16a", + "cborBytes": [27, 5, 168, 12, 226, 82, 150, 225, 106], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1470, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11998269316163928732" + } + }, + "cborHex": "1ba6826a5f9d6b829c", + "cborBytes": [27, 166, 130, 106, 95, 157, 107, 130, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1471, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14519230832190582754" + } + }, + "cborHex": "1bc97eab84049e6fe2", + "cborBytes": [27, 201, 126, 171, 132, 4, 158, 111, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1472, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17734686970274007904" + } + }, + "cborHex": "1bf61e43d649ee4b60", + "cborBytes": [27, 246, 30, 67, 214, 73, 238, 75, 96], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1473, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4087530094397609704" + } + }, + "cborHex": "1b38b9d2f6d549d6e8", + "cborBytes": [27, 56, 185, 210, 246, 213, 73, 214, 232], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1474, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11950673932085567710" + } + }, + "cborHex": "1ba5d9529fb47b20de", + "cborBytes": [27, 165, 217, 82, 159, 180, 123, 32, 222], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1475, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7727663275275841642" + } + }, + "cborHex": "1b6b3e2cce52a5f06a", + "cborBytes": [27, 107, 62, 44, 206, 82, 165, 240, 106], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1476, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3332066906835447418" + } + }, + "cborHex": "1b2e3de1329dc2ee7a", + "cborBytes": [27, 46, 61, 225, 50, 157, 194, 238, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1477, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5740575865406002293" + } + }, + "cborHex": "1b4faa9f55afb49475", + "cborBytes": [27, 79, 170, 159, 85, 175, 180, 148, 117], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1478, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8325534466603167467" + } + }, + "cborHex": "1b738a3d7c9f272eeb", + "cborBytes": [27, 115, 138, 61, 124, 159, 39, 46, 235], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1479, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4929749757460262380" + } + }, + "cborHex": "1b4469fd4914fcadec", + "cborBytes": [27, 68, 105, 253, 73, 20, 252, 173, 236], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1480, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9442647109054151478" + } + }, + "cborHex": "1b830b0584328abb36", + "cborBytes": [27, 131, 11, 5, 132, 50, 138, 187, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1481, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8463203492884854311" + } + }, + "cborHex": "1b757356bc9f3f3627", + "cborBytes": [27, 117, 115, 86, 188, 159, 63, 54, 39], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1482, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6501289110434746791" + } + }, + "cborHex": "1b5a393800299411a7", + "cborBytes": [27, 90, 57, 56, 0, 41, 148, 17, 167], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1483, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "78009841567062680" + } + }, + "cborHex": "1b011525899f96da98", + "cborBytes": [27, 1, 21, 37, 137, 159, 150, 218, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1484, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2672032556661746390" + } + }, + "cborHex": "1b2514f774081a2ad6", + "cborBytes": [27, 37, 20, 247, 116, 8, 26, 42, 214], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1485, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9928741188313940524" + } + }, + "cborHex": "1b89c9f9818c3e022c", + "cborBytes": [27, 137, 201, 249, 129, 140, 62, 2, 44], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1486, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "116642662435765097" + } + }, + "cborHex": "1b019e65e22c23bb69", + "cborBytes": [27, 1, 158, 101, 226, 44, 35, 187, 105], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1487, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18349444824959693201" + } + }, + "cborHex": "1bfea652d9495a3191", + "cborBytes": [27, 254, 166, 82, 217, 73, 90, 49, 145], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1488, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14900302516928620139" + } + }, + "cborHex": "1bcec88231a763a66b", + "cborBytes": [27, 206, 200, 130, 49, 167, 99, 166, 107], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1489, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15603316707576989018" + } + }, + "cborHex": "1bd88a1de0290b455a", + "cborBytes": [27, 216, 138, 29, 224, 41, 11, 69, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1490, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12486462920475007915" + } + }, + "cborHex": "1bad48d3debbffdbab", + "cborBytes": [27, 173, 72, 211, 222, 187, 255, 219, 171], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1491, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6289449216549335220" + } + }, + "cborHex": "1b57489cbd514830b4", + "cborBytes": [27, 87, 72, 156, 189, 81, 72, 48, 180], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1492, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17187531648817153909" + } + }, + "cborHex": "1bee8660f89d87c775", + "cborBytes": [27, 238, 134, 96, 248, 157, 135, 199, 117], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1493, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1195385286365030852" + } + }, + "cborHex": "1b1096dc95a38429c4", + "cborBytes": [27, 16, 150, 220, 149, 163, 132, 41, 196], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1494, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9061075224362351370" + } + }, + "cborHex": "1b7dbf67e8af35fb0a", + "cborBytes": [27, 125, 191, 103, 232, 175, 53, 251, 10], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1495, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15159125572332040704" + } + }, + "cborHex": "1bd26008643c643200", + "cborBytes": [27, 210, 96, 8, 100, 60, 100, 50, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1496, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13097592328321562308" + } + }, + "cborHex": "1bb5c3fed41e7cf6c4", + "cborBytes": [27, 181, 195, 254, 212, 30, 124, 246, 196], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1497, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13397277258171644167" + } + }, + "cborHex": "1bb9ecb0af3abd7907", + "cborBytes": [27, 185, 236, 176, 175, 58, 189, 121, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1498, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2835809564488146010" + } + }, + "cborHex": "1b275ad1c62df89c5a", + "cborBytes": [27, 39, 90, 209, 198, 45, 248, 156, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1499, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4535699849929616755" + } + }, + "cborHex": "1b3ef20afb7ad8ed73", + "cborBytes": [27, 62, 242, 10, 251, 122, 216, 237, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1500, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6070521759093965402" + } + }, + "cborHex": "1b543ed3607c13425a", + "cborBytes": [27, 84, 62, 211, 96, 124, 19, 66, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1501, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15379359063862876370" + } + }, + "cborHex": "1bd56e7595d2bb18d2", + "cborBytes": [27, 213, 110, 117, 149, 210, 187, 24, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1502, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7364115410907881047" + } + }, + "cborHex": "1b663297f31024de57", + "cborBytes": [27, 102, 50, 151, 243, 16, 36, 222, 87], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1503, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4352933046835917273" + } + }, + "cborHex": "1b3c68b98b13b6b1d9", + "cborBytes": [27, 60, 104, 185, 139, 19, 182, 177, 217], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1504, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7037390026460364414" + } + }, + "cborHex": "1b61a9d4f1810bfe7e", + "cborBytes": [27, 97, 169, 212, 241, 129, 11, 254, 126], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1505, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "129896419704408575" + } + }, + "cborHex": "1b01cd7c1b021389ff", + "cborBytes": [27, 1, 205, 124, 27, 2, 19, 137, 255], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1506, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3840337605747612193" + } + }, + "cborHex": "1b354b9eb498291a21", + "cborBytes": [27, 53, 75, 158, 180, 152, 41, 26, 33], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1507, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13475074708582533757" + } + }, + "cborHex": "1bbb01150daee98a7d", + "cborBytes": [27, 187, 1, 21, 13, 174, 233, 138, 125], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1508, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7512228082089796646" + } + }, + "cborHex": "1b6840cba3a0ad2426", + "cborBytes": [27, 104, 64, 203, 163, 160, 173, 36, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1509, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6131640395539960737" + } + }, + "cborHex": "1b5517f673f29853a1", + "cborBytes": [27, 85, 23, 246, 115, 242, 152, 83, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1510, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9153581107440437986" + } + }, + "cborHex": "1b7f080d84fbb6cae2", + "cborBytes": [27, 127, 8, 13, 132, 251, 182, 202, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1511, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17566755940303901818" + } + }, + "cborHex": "1bf3c9a7747dcc147a", + "cborBytes": [27, 243, 201, 167, 116, 125, 204, 20, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1512, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13386987924776825567" + } + }, + "cborHex": "1bb9c822971cc432df", + "cborBytes": [27, 185, 200, 34, 151, 28, 196, 50, 223], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1513, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "854644007227587031" + } + }, + "cborHex": "1b0bdc4e324c3779d7", + "cborBytes": [27, 11, 220, 78, 50, 76, 55, 121, 215], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1514, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18187516467716066427" + } + }, + "cborHex": "1bfc6709dda4c88c7b", + "cborBytes": [27, 252, 103, 9, 221, 164, 200, 140, 123], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1515, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1413582220728115881" + } + }, + "cborHex": "1b139e0d8a4f4ea2a9", + "cborBytes": [27, 19, 158, 13, 138, 79, 78, 162, 169], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1516, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10502135022437206605" + } + }, + "cborHex": "1b91bf1429038f0a4d", + "cborBytes": [27, 145, 191, 20, 41, 3, 143, 10, 77], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1517, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1757290113577469322" + } + }, + "cborHex": "1b1863260c3b17458a", + "cborBytes": [27, 24, 99, 38, 12, 59, 23, 69, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1518, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "79224538414463628" + } + }, + "cborHex": "1b0119764c45b03a8c", + "cborBytes": [27, 1, 25, 118, 76, 69, 176, 58, 140], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1519, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3524461813385329356" + } + }, + "cborHex": "1b30e967588b42facc", + "cborBytes": [27, 48, 233, 103, 88, 139, 66, 250, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1520, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13193115334731455872" + } + }, + "cborHex": "1bb7175c7f2f6d5d80", + "cborBytes": [27, 183, 23, 92, 127, 47, 109, 93, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1521, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12007047399751640847" + } + }, + "cborHex": "1ba6a199fe7779670f", + "cborBytes": [27, 166, 161, 153, 254, 119, 121, 103, 15], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1522, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17570986782199323939" + } + }, + "cborHex": "1bf3d8af6222131d23", + "cborBytes": [27, 243, 216, 175, 98, 34, 19, 29, 35], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1523, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10817913055008691003" + } + }, + "cborHex": "1b9620f29b96da933b", + "cborBytes": [27, 150, 32, 242, 155, 150, 218, 147, 59], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1524, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9072710312830483804" + } + }, + "cborHex": "1b7de8bdf5d248bd5c", + "cborBytes": [27, 125, 232, 189, 245, 210, 72, 189, 92], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1525, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10020842691246875813" + } + }, + "cborHex": "1b8b112f55c1d6e4a5", + "cborBytes": [27, 139, 17, 47, 85, 193, 214, 228, 165], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1526, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9960051404670711332" + } + }, + "cborHex": "1b8a3935fb60073624", + "cborBytes": [27, 138, 57, 53, 251, 96, 7, 54, 36], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1527, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16881375441313020348" + } + }, + "cborHex": "1bea46b185c37739bc", + "cborBytes": [27, 234, 70, 177, 133, 195, 119, 57, 188], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1528, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5847217480285999284" + } + }, + "cborHex": "1b51257d5184e6d0b4", + "cborBytes": [27, 81, 37, 125, 81, 132, 230, 208, 180], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1529, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13798615459600699904" + } + }, + "cborHex": "1bbf7e87a6fdb69200", + "cborBytes": [27, 191, 126, 135, 166, 253, 182, 146, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1530, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12384656841591278733" + } + }, + "cborHex": "1babdf23c7dc28cc8d", + "cborBytes": [27, 171, 223, 35, 199, 220, 40, 204, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1531, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13474398996037325615" + } + }, + "cborHex": "1bbafeae7f18af532f", + "cborBytes": [27, 186, 254, 174, 127, 24, 175, 83, 47], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1532, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2892786562967869048" + } + }, + "cborHex": "1b28253e0d68b91678", + "cborBytes": [27, 40, 37, 62, 13, 104, 185, 22, 120], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1533, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10246743083789761790" + } + }, + "cborHex": "1b8e33be8b8dfabcfe", + "cborBytes": [27, 142, 51, 190, 139, 141, 250, 188, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1534, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12543685509041897435" + } + }, + "cborHex": "1bae141f82dca83fdb", + "cborBytes": [27, 174, 20, 31, 130, 220, 168, 63, 219], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1535, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6405044090597370084" + } + }, + "cborHex": "1b58e349aa3ec568e4", + "cborBytes": [27, 88, 227, 73, 170, 62, 197, 104, 228], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1536, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17861208134259532750" + } + }, + "cborHex": "1bf7dfc22a55db63ce", + "cborBytes": [27, 247, 223, 194, 42, 85, 219, 99, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1537, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7766548812728240544" + } + }, + "cborHex": "1b6bc852ff096609a0", + "cborBytes": [27, 107, 200, 82, 255, 9, 102, 9, 160], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1538, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6021404977569769815" + } + }, + "cborHex": "1b539053eca0d0a957", + "cborBytes": [27, 83, 144, 83, 236, 160, 208, 169, 87], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1539, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9455846953292263310" + } + }, + "cborHex": "1b8339eab46d71ef8e", + "cborBytes": [27, 131, 57, 234, 180, 109, 113, 239, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1540, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11411952705160079092" + } + }, + "cborHex": "1b9e5f6685b09fe6f4", + "cborBytes": [27, 158, 95, 102, 133, 176, 159, 230, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1541, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13175842885407880326" + } + }, + "cborHex": "1bb6d9ff4bb1183486", + "cborBytes": [27, 182, 217, 255, 75, 177, 24, 52, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1542, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11181738893269265338" + } + }, + "cborHex": "1b9b2d8447b07bebba", + "cborBytes": [27, 155, 45, 132, 71, 176, 123, 235, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1543, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6735475994181056167" + } + }, + "cborHex": "1b5d7937bb0a5536a7", + "cborBytes": [27, 93, 121, 55, 187, 10, 85, 54, 167], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1544, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "697428708905057174" + } + }, + "cborHex": "1b09adc3b73271fb96", + "cborBytes": [27, 9, 173, 195, 183, 50, 113, 251, 150], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1545, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "863518189585977469" + } + }, + "cborHex": "1b0bfbd537e35c507d", + "cborBytes": [27, 11, 251, 213, 55, 227, 92, 80, 125], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1546, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2721393835729019233" + } + }, + "cborHex": "1b25c455466890e161", + "cborBytes": [27, 37, 196, 85, 70, 104, 144, 225, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1547, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2530026207788719237" + } + }, + "cborHex": "1b231c756e6bacdc85", + "cborBytes": [27, 35, 28, 117, 110, 107, 172, 220, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1548, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13411615916080763410" + } + }, + "cborHex": "1bba1fa19e2df81212", + "cborBytes": [27, 186, 31, 161, 158, 45, 248, 18, 18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1549, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12808662175562898823" + } + }, + "cborHex": "1bb1c18262ae689d87", + "cborBytes": [27, 177, 193, 130, 98, 174, 104, 157, 135], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1550, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8964885375572473011" + } + }, + "cborHex": "1b7c69abc0471774b3", + "cborBytes": [27, 124, 105, 171, 192, 71, 23, 116, 179], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1551, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16302611502484979680" + } + }, + "cborHex": "1be23e82c95cd07fe0", + "cborBytes": [27, 226, 62, 130, 201, 92, 208, 127, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1552, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "124999215676176903" + } + }, + "cborHex": "1b01bc161fd794ba07", + "cborBytes": [27, 1, 188, 22, 31, 215, 148, 186, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1553, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3224143258539257350" + } + }, + "cborHex": "1b2cbe75361e33ee06", + "cborBytes": [27, 44, 190, 117, 54, 30, 51, 238, 6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1554, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7968238200883587474" + } + }, + "cborHex": "1b6e94de6d195d2992", + "cborBytes": [27, 110, 148, 222, 109, 25, 93, 41, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1555, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2985917546924288242" + } + }, + "cborHex": "1b29701c30590728f2", + "cborBytes": [27, 41, 112, 28, 48, 89, 7, 40, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1556, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11640982094736852740" + } + }, + "cborHex": "1ba18d1389e1790704", + "cborBytes": [27, 161, 141, 19, 137, 225, 121, 7, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1557, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14401070121273208415" + } + }, + "cborHex": "1bc7dae0f9a3fb2e5f", + "cborBytes": [27, 199, 218, 224, 249, 163, 251, 46, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1558, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17683861288312464096" + } + }, + "cborHex": "1bf569b2260b2562e0", + "cborBytes": [27, 245, 105, 178, 38, 11, 37, 98, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1559, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12191444061106013281" + } + }, + "cborHex": "1ba930b5c7d1450461", + "cborBytes": [27, 169, 48, 181, 199, 209, 69, 4, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1560, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11888165443838540848" + } + }, + "cborHex": "1ba4fb3f7c2711fc30", + "cborBytes": [27, 164, 251, 63, 124, 39, 17, 252, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1561, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5249932235179522732" + } + }, + "cborHex": "1b48db818d74bf7aac", + "cborBytes": [27, 72, 219, 129, 141, 116, 191, 122, 172], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1562, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12432008113181772174" + } + }, + "cborHex": "1bac875d82e6f9498e", + "cborBytes": [27, 172, 135, 93, 130, 230, 249, 73, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1563, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8413389828751411021" + } + }, + "cborHex": "1b74c25d79239cc74d", + "cborBytes": [27, 116, 194, 93, 121, 35, 156, 199, 77], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1564, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1357392848072487020" + } + }, + "cborHex": "1b12d66d9a8204306c", + "cborBytes": [27, 18, 214, 109, 154, 130, 4, 48, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1565, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1084188700662190981" + } + }, + "cborHex": "1b0f0bcfe104765385", + "cborBytes": [27, 15, 11, 207, 225, 4, 118, 83, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1566, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13672894462880701756" + } + }, + "cborHex": "1bbdbfe1126768dd3c", + "cborBytes": [27, 189, 191, 225, 18, 103, 104, 221, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1567, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6320323087880577517" + } + }, + "cborHex": "1b57b64c5ca6d261ed", + "cborBytes": [27, 87, 182, 76, 92, 166, 210, 97, 237], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1568, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6582773445450268117" + } + }, + "cborHex": "1b5b5ab59254effdd5", + "cborBytes": [27, 91, 90, 181, 146, 84, 239, 253, 213], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1569, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1947525342310976638" + } + }, + "cborHex": "1b1b06fffafb844c7e", + "cborBytes": [27, 27, 6, 255, 250, 251, 132, 76, 126], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1570, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1887154470620381285" + } + }, + "cborHex": "1b1a3084fe119e4065", + "cborBytes": [27, 26, 48, 132, 254, 17, 158, 64, 101], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1571, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2335964853393534231" + } + }, + "cborHex": "1b206b03a85e51ad17", + "cborBytes": [27, 32, 107, 3, 168, 94, 81, 173, 23], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1572, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11136562318591945627" + } + }, + "cborHex": "1b9a8d046cbaac6b9b", + "cborBytes": [27, 154, 141, 4, 108, 186, 172, 107, 155], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1573, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3484032031276792751" + } + }, + "cborHex": "1b3059c4ac5a55fbaf", + "cborBytes": [27, 48, 89, 196, 172, 90, 85, 251, 175], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1574, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "993644934735681157" + } + }, + "cborHex": "1b0dca22cdb7c95685", + "cborBytes": [27, 13, 202, 34, 205, 183, 201, 86, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1575, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11049477632047136205" + } + }, + "cborHex": "1b9957a15d1bcb3dcd", + "cborBytes": [27, 153, 87, 161, 93, 27, 203, 61, 205], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1576, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11192211961684530160" + } + }, + "cborHex": "1b9b52b97af31593f0", + "cborBytes": [27, 155, 82, 185, 122, 243, 21, 147, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1577, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12929822259440068302" + } + }, + "cborHex": "1bb36ff4d6fedd26ce", + "cborBytes": [27, 179, 111, 244, 214, 254, 221, 38, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1578, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7953243735648098343" + } + }, + "cborHex": "1b6e5f990a1b67d827", + "cborBytes": [27, 110, 95, 153, 10, 27, 103, 216, 39], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1579, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1684627784267444457" + } + }, + "cborHex": "1b1761000b5403b0e9", + "cborBytes": [27, 23, 97, 0, 11, 84, 3, 176, 233], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1580, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15442124948162197624" + } + }, + "cborHex": "1bd64d72d31067b878", + "cborBytes": [27, 214, 77, 114, 211, 16, 103, 184, 120], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1581, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "376763395172720884" + } + }, + "cborHex": "1b053a884fcda3e0f4", + "cborBytes": [27, 5, 58, 136, 79, 205, 163, 224, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1582, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "713375456550823998" + } + }, + "cborHex": "1b09e66b32b731a83e", + "cborBytes": [27, 9, 230, 107, 50, 183, 49, 168, 62], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1583, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7436537269180220769" + } + }, + "cborHex": "1b6733e33ef070c561", + "cborBytes": [27, 103, 51, 227, 62, 240, 112, 197, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1584, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7842851369917866190" + } + }, + "cborHex": "1b6cd767c48a23e0ce", + "cborBytes": [27, 108, 215, 103, 196, 138, 35, 224, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1585, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7093074969535537186" + } + }, + "cborHex": "1b626faa1aa4616022", + "cborBytes": [27, 98, 111, 170, 26, 164, 97, 96, 34], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1586, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6944193833747614730" + } + }, + "cborHex": "1b605ebb7ff7fc0c0a", + "cborBytes": [27, 96, 94, 187, 127, 247, 252, 12, 10], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1587, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7354364160831106678" + } + }, + "cborHex": "1b660ff33d3b33ae76", + "cborBytes": [27, 102, 15, 243, 61, 59, 51, 174, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1588, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "372589808297032033" + } + }, + "cborHex": "1b052bb474e279b961", + "cborBytes": [27, 5, 43, 180, 116, 226, 121, 185, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1589, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9779676846426145466" + } + }, + "cborHex": "1b87b86446e157c2ba", + "cborBytes": [27, 135, 184, 100, 70, 225, 87, 194, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1590, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11668210954205549249" + } + }, + "cborHex": "1ba1edd00ac1be52c1", + "cborBytes": [27, 161, 237, 208, 10, 193, 190, 82, 193], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1591, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1127698450369736882" + } + }, + "cborHex": "1b0fa663c40c0bf0b2", + "cborBytes": [27, 15, 166, 99, 196, 12, 11, 240, 178], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1592, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18368041095000482211" + } + }, + "cborHex": "1bfee8640ecf47e1a3", + "cborBytes": [27, 254, 232, 100, 14, 207, 71, 225, 163], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1593, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3030064399687209538" + } + }, + "cborHex": "1b2a0cf3847de9d242", + "cborBytes": [27, 42, 12, 243, 132, 125, 233, 210, 66], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1594, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12179692288466299041" + } + }, + "cborHex": "1ba906f59b079928a1", + "cborBytes": [27, 169, 6, 245, 155, 7, 153, 40, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1595, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14025552641821002213" + } + }, + "cborHex": "1bc2a4c5d1324849e5", + "cborBytes": [27, 194, 164, 197, 209, 50, 72, 73, 229], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1596, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17542277874123740008" + } + }, + "cborHex": "1bf372b0c896571368", + "cborBytes": [27, 243, 114, 176, 200, 150, 87, 19, 104], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1597, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14512207598713383819" + } + }, + "cborHex": "1bc965b7ec0c092b8b", + "cborBytes": [27, 201, 101, 183, 236, 12, 9, 43, 139], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1598, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9626948875108839815" + } + }, + "cborHex": "1b8599caff03b57187", + "cborBytes": [27, 133, 153, 202, 255, 3, 181, 113, 135], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1599, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14219789712319239342" + } + }, + "cborHex": "1bc556d767578ad4ae", + "cborBytes": [27, 197, 86, 215, 103, 87, 138, 212, 174], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1600, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8113376141164894561" + } + }, + "cborHex": "1b7098809d27435961", + "cborBytes": [27, 112, 152, 128, 157, 39, 67, 89, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1601, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9060331599560269817" + } + }, + "cborHex": "1b7dbcc3960b095ff9", + "cborBytes": [27, 125, 188, 195, 150, 11, 9, 95, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1602, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8814817825670166571" + } + }, + "cborHex": "1b7a54861c0ad9f82b", + "cborBytes": [27, 122, 84, 134, 28, 10, 217, 248, 43], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1603, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13777127410303204440" + } + }, + "cborHex": "1bbf323062a46b7c58", + "cborBytes": [27, 191, 50, 48, 98, 164, 107, 124, 88], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1604, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11403765426096496589" + } + }, + "cborHex": "1b9e42503c3c5cdfcd", + "cborBytes": [27, 158, 66, 80, 60, 60, 92, 223, 205], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1605, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "826561728086038569" + } + }, + "cborHex": "1b0b7889832b805829", + "cborBytes": [27, 11, 120, 137, 131, 43, 128, 88, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1606, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15726393794799336591" + } + }, + "cborHex": "1bda3f5fd598ebfc8f", + "cborBytes": [27, 218, 63, 95, 213, 152, 235, 252, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1607, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13620628399581522503" + } + }, + "cborHex": "1bbd06315d3ea76a47", + "cborBytes": [27, 189, 6, 49, 93, 62, 167, 106, 71], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1608, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9245004960509292541" + } + }, + "cborHex": "1b804cdb0789e16ffd", + "cborBytes": [27, 128, 76, 219, 7, 137, 225, 111, 253], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1609, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2163225284168354027" + } + }, + "cborHex": "1b1e0551ef47ff88eb", + "cborBytes": [27, 30, 5, 81, 239, 71, 255, 136, 235], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1610, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12409173243558395648" + } + }, + "cborHex": "1bac363d5182947f00", + "cborBytes": [27, 172, 54, 61, 81, 130, 148, 127, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1611, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13517763434718398330" + } + }, + "cborHex": "1bbb98be394427877a", + "cborBytes": [27, 187, 152, 190, 57, 68, 39, 135, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1612, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13864899890662768563" + } + }, + "cborHex": "1bc06a04fdbd4e7fb3", + "cborBytes": [27, 192, 106, 4, 253, 189, 78, 127, 179], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1613, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2540173719422212573" + } + }, + "cborHex": "1b2340828a15f199dd", + "cborBytes": [27, 35, 64, 130, 138, 21, 241, 153, 221], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1614, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18165922749114601416" + } + }, + "cborHex": "1bfc1a527e3e29cfc8", + "cborBytes": [27, 252, 26, 82, 126, 62, 41, 207, 200], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1615, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4314499362146413608" + } + }, + "cborHex": "1b3be02e4f8862ec28", + "cborBytes": [27, 59, 224, 46, 79, 136, 98, 236, 40], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1616, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13058716121433076833" + } + }, + "cborHex": "1bb539e11fd8af7461", + "cborBytes": [27, 181, 57, 225, 31, 216, 175, 116, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1617, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16921201762897592624" + } + }, + "cborHex": "1bead42f59da398130", + "cborBytes": [27, 234, 212, 47, 89, 218, 57, 129, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1618, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16384943817426244889" + } + }, + "cborHex": "1be36303973e6c9519", + "cborBytes": [27, 227, 99, 3, 151, 62, 108, 149, 25], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1619, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5200455630440760902" + } + }, + "cborHex": "1b482bbad7ba9a0646", + "cborBytes": [27, 72, 43, 186, 215, 186, 154, 6, 70], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1620, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1554533398762739981" + } + }, + "cborHex": "1b1592cfe3d0bbd90d", + "cborBytes": [27, 21, 146, 207, 227, 208, 187, 217, 13], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1621, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "364493348448655809" + } + }, + "cborHex": "1b050ef0c4ed4659c1", + "cborBytes": [27, 5, 14, 240, 196, 237, 70, 89, 193], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1622, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11513069991680883934" + } + }, + "cborHex": "1b9fc6a42898593cde", + "cborBytes": [27, 159, 198, 164, 40, 152, 89, 60, 222], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1623, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18207319696683778372" + } + }, + "cborHex": "1bfcad64cc30cf4144", + "cborBytes": [27, 252, 173, 100, 204, 48, 207, 65, 68], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1624, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3222964506173284560" + } + }, + "cborHex": "1b2cba45247226a0d0", + "cborBytes": [27, 44, 186, 69, 36, 114, 38, 160, 208], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1625, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6262240480180057868" + } + }, + "cborHex": "1b56e7f289b734370c", + "cborBytes": [27, 86, 231, 242, 137, 183, 52, 55, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1626, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14964126994130890568" + } + }, + "cborHex": "1bcfab4237c3016f48", + "cborBytes": [27, 207, 171, 66, 55, 195, 1, 111, 72], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1627, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6059991307398431887" + } + }, + "cborHex": "1b541969fca370448f", + "cborBytes": [27, 84, 25, 105, 252, 163, 112, 68, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1628, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10234467431997824212" + } + }, + "cborHex": "1b8e0821e7a588dcd4", + "cborBytes": [27, 142, 8, 33, 231, 165, 136, 220, 212], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1629, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7566741147385715672" + } + }, + "cborHex": "1b690276fbb541dbd8", + "cborBytes": [27, 105, 2, 118, 251, 181, 65, 219, 216], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1630, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2275341684843441617" + } + }, + "cborHex": "1b1f93a33503bb6dd1", + "cborBytes": [27, 31, 147, 163, 53, 3, 187, 109, 209], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1631, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1323528539528659827" + } + }, + "cborHex": "1b125e1e31c0b28373", + "cborBytes": [27, 18, 94, 30, 49, 192, 178, 131, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1632, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "569721738153333360" + } + }, + "cborHex": "1b07e80ee6ff729270", + "cborBytes": [27, 7, 232, 14, 230, 255, 114, 146, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1633, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9340834816212482084" + } + }, + "cborHex": "1b81a14fc685f23824", + "cborBytes": [27, 129, 161, 79, 198, 133, 242, 56, 36], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1634, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4020912359204676864" + } + }, + "cborHex": "1b37cd267cab5f6500", + "cborBytes": [27, 55, 205, 38, 124, 171, 95, 101, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1635, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17509005443744617614" + } + }, + "cborHex": "1bf2fc7baf34c7548e", + "cborBytes": [27, 242, 252, 123, 175, 52, 199, 84, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1636, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7440936085277493480" + } + }, + "cborHex": "1b674383f21f59c8e8", + "cborBytes": [27, 103, 67, 131, 242, 31, 89, 200, 232], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1637, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3376539183607040906" + } + }, + "cborHex": "1b2edbe07f7115cb8a", + "cborBytes": [27, 46, 219, 224, 127, 113, 21, 203, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1638, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7756350059930761588" + } + }, + "cborHex": "1b6ba41748dbc0b974", + "cborBytes": [27, 107, 164, 23, 72, 219, 192, 185, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1639, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12586335343452214812" + } + }, + "cborHex": "1baeaba54f4269d61c", + "cborBytes": [27, 174, 171, 165, 79, 66, 105, 214, 28], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1640, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15263365202376867597" + } + }, + "cborHex": "1bd3d25dc864bb3f0d", + "cborBytes": [27, 211, 210, 93, 200, 100, 187, 63, 13], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1641, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13638052821502583483" + } + }, + "cborHex": "1bbd4418c89dace2bb", + "cborBytes": [27, 189, 68, 24, 200, 157, 172, 226, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1642, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6516854763926397084" + } + }, + "cborHex": "1b5a7084e148a5209c", + "cborBytes": [27, 90, 112, 132, 225, 72, 165, 32, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1643, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12600509459775789660" + } + }, + "cborHex": "1baede0097e2e29a5c", + "cborBytes": [27, 174, 222, 0, 151, 226, 226, 154, 92], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1644, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3752290557121854242" + } + }, + "cborHex": "1b3412d061974cfb22", + "cborBytes": [27, 52, 18, 208, 97, 151, 76, 251, 34], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1645, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6935809982576464312" + } + }, + "cborHex": "1b6040f26e811411b8", + "cborBytes": [27, 96, 64, 242, 110, 129, 20, 17, 184], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1646, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7621848617554880681" + } + }, + "cborHex": "1b69c63eef752928a9", + "cborBytes": [27, 105, 198, 62, 239, 117, 41, 40, 169], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1647, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "718948388036864941" + } + }, + "cborHex": "1b09fa37bff0c6ebad", + "cborBytes": [27, 9, 250, 55, 191, 240, 198, 235, 173], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1648, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14060192067367036948" + } + }, + "cborHex": "1bc31fd630f12d6814", + "cborBytes": [27, 195, 31, 214, 48, 241, 45, 104, 20], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1649, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8258136271146475976" + } + }, + "cborHex": "1b729acb2f647461c8", + "cborBytes": [27, 114, 154, 203, 47, 100, 116, 97, 200], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1650, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1426794463349434949" + } + }, + "cborHex": "1b13ccfe01436fea45", + "cborBytes": [27, 19, 204, 254, 1, 67, 111, 234, 69], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1651, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "315068722182711521" + } + }, + "cborHex": "1b045f5955618968e1", + "cborBytes": [27, 4, 95, 89, 85, 97, 137, 104, 225], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1652, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12319267241683183564" + } + }, + "cborHex": "1baaf6d44939a1e7cc", + "cborBytes": [27, 170, 246, 212, 73, 57, 161, 231, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1653, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7109505359567997944" + } + }, + "cborHex": "1b62aa0974edc94bf8", + "cborBytes": [27, 98, 170, 9, 116, 237, 201, 75, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1654, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16616722506202872528" + } + }, + "cborHex": "1be69a75148975fad0", + "cborBytes": [27, 230, 154, 117, 20, 137, 117, 250, 208], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1655, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18427596736017117023" + } + }, + "cborHex": "1bffbbf9990a72af5f", + "cborBytes": [27, 255, 187, 249, 153, 10, 114, 175, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1656, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2546742844421638117" + } + }, + "cborHex": "1b2357d91fb00507e5", + "cborBytes": [27, 35, 87, 217, 31, 176, 5, 7, 229], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1657, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15699592912764180392" + } + }, + "cborHex": "1bd9e02892fb8c97a8", + "cborBytes": [27, 217, 224, 40, 146, 251, 140, 151, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1658, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4968219534183080760" + } + }, + "cborHex": "1b44f2a957f523a338", + "cborBytes": [27, 68, 242, 169, 87, 245, 35, 163, 56], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1659, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16376014261842932000" + } + }, + "cborHex": "1be3434a3511e0f120", + "cborBytes": [27, 227, 67, 74, 53, 17, 224, 241, 32], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1660, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9792060701329086425" + } + }, + "cborHex": "1b87e46353c9c857d9", + "cborBytes": [27, 135, 228, 99, 83, 201, 200, 87, 217], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1661, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16306763359029799745" + } + }, + "cborHex": "1be24d42e0cb53ab41", + "cborBytes": [27, 226, 77, 66, 224, 203, 83, 171, 65], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1662, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5180866342155857079" + } + }, + "cborHex": "1b47e6227d20fa2cb7", + "cborBytes": [27, 71, 230, 34, 125, 32, 250, 44, 183], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1663, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13495079692611565962" + } + }, + "cborHex": "1bbb48277afdb3398a", + "cborBytes": [27, 187, 72, 39, 122, 253, 179, 57, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1664, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7390862911555526242" + } + }, + "cborHex": "1b66919ea8dae05e62", + "cborBytes": [27, 102, 145, 158, 168, 218, 224, 94, 98], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1665, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8989487955009935209" + } + }, + "cborHex": "1b7cc113aaaf051769", + "cborBytes": [27, 124, 193, 19, 170, 175, 5, 23, 105], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1666, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7032984797436268498" + } + }, + "cborHex": "1b619a2e6931e94fd2", + "cborBytes": [27, 97, 154, 46, 105, 49, 233, 79, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1667, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11456712491148866168" + } + }, + "cborHex": "1b9efe6b4f78b57278", + "cborBytes": [27, 158, 254, 107, 79, 120, 181, 114, 120], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1668, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2942323909421144768" + } + }, + "cborHex": "1b28d53c01ab2f9ac0", + "cborBytes": [27, 40, 213, 60, 1, 171, 47, 154, 192], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1669, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2741357624594247563" + } + }, + "cborHex": "1b260b423c383faf8b", + "cborBytes": [27, 38, 11, 66, 60, 56, 63, 175, 139], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1670, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6688005246740367314" + } + }, + "cborHex": "1b5cd091565be887d2", + "cborBytes": [27, 92, 208, 145, 86, 91, 232, 135, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1671, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16184198857303519080" + } + }, + "cborHex": "1be099d31cf7dbef68", + "cborBytes": [27, 224, 153, 211, 28, 247, 219, 239, 104], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1672, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5538867160311741397" + } + }, + "cborHex": "1b4cde02560c753bd5", + "cborBytes": [27, 76, 222, 2, 86, 12, 117, 59, 213], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1673, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11850292326192860788" + } + }, + "cborHex": "1ba474b215cb434e74", + "cborBytes": [27, 164, 116, 178, 21, 203, 67, 78, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1674, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10700326498368919877" + } + }, + "cborHex": "1b947f3241ebfa9945", + "cborBytes": [27, 148, 127, 50, 65, 235, 250, 153, 69], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1675, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "528206761562308430" + } + }, + "cborHex": "1b0754914046e17f4e", + "cborBytes": [27, 7, 84, 145, 64, 70, 225, 127, 78], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1676, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12688549104628073432" + } + }, + "cborHex": "1bb016c82f107503d8", + "cborBytes": [27, 176, 22, 200, 47, 16, 117, 3, 216], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1677, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8919564241206850000" + } + }, + "cborHex": "1b7bc8a86b646931d0", + "cborBytes": [27, 123, 200, 168, 107, 100, 105, 49, 208], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1678, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10788099110608507563" + } + }, + "cborHex": "1b95b706fbb98712ab", + "cborBytes": [27, 149, 183, 6, 251, 185, 135, 18, 171], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1679, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2213178496810307420" + } + }, + "cborHex": "1b1eb6ca1deee94f5c", + "cborBytes": [27, 30, 182, 202, 29, 238, 233, 79, 92], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1680, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7940967898568508002" + } + }, + "cborHex": "1b6e33fc3b0ef4c262", + "cborBytes": [27, 110, 51, 252, 59, 14, 244, 194, 98], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1681, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10295348756832396070" + } + }, + "cborHex": "1b8ee06d25b1c12326", + "cborBytes": [27, 142, 224, 109, 37, 177, 193, 35, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1682, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15337629370491180291" + } + }, + "cborHex": "1bd4da34a674b99503", + "cborBytes": [27, 212, 218, 52, 166, 116, 185, 149, 3], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1683, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14618560933474498470" + } + }, + "cborHex": "1bcadf8fb76f2677a6", + "cborBytes": [27, 202, 223, 143, 183, 111, 38, 119, 166], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1684, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6863189928873374879" + } + }, + "cborHex": "1b5f3ef2e0a889349f", + "cborBytes": [27, 95, 62, 242, 224, 168, 137, 52, 159], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1685, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6883923114531829710" + } + }, + "cborHex": "1b5f889b999ec537ce", + "cborBytes": [27, 95, 136, 155, 153, 158, 197, 55, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1686, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6872330250773516233" + } + }, + "cborHex": "1b5f5f6bf3b086cfc9", + "cborBytes": [27, 95, 95, 107, 243, 176, 134, 207, 201], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1687, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13773216113711043081" + } + }, + "cborHex": "1bbf244b14f06ed209", + "cborBytes": [27, 191, 36, 75, 20, 240, 110, 210, 9], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1688, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13051354210693715141" + } + }, + "cborHex": "1bb51fb9816e3294c5", + "cborBytes": [27, 181, 31, 185, 129, 110, 50, 148, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1689, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17996931715162794513" + } + }, + "cborHex": "1bf9c1f20b093d6a11", + "cborBytes": [27, 249, 193, 242, 11, 9, 61, 106, 17], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1690, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13783339735475805317" + } + }, + "cborHex": "1bbf4842764f8fdc85", + "cborBytes": [27, 191, 72, 66, 118, 79, 143, 220, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1691, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6119666087879403163" + } + }, + "cborHex": "1b54ed6be2300e669b", + "cborBytes": [27, 84, 237, 107, 226, 48, 14, 102, 155], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1692, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "762130304954471728" + } + }, + "cborHex": "1b0a93a179735f1530", + "cborBytes": [27, 10, 147, 161, 121, 115, 95, 21, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1693, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7177291733634800298" + } + }, + "cborHex": "1b639adcce08a65aaa", + "cborBytes": [27, 99, 154, 220, 206, 8, 166, 90, 170], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1694, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13095668102280010831" + } + }, + "cborHex": "1bb5bd28c154d05c4f", + "cborBytes": [27, 181, 189, 40, 193, 84, 208, 92, 79], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1695, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11063323856639054085" + } + }, + "cborHex": "1b9988d26e7e135105", + "cborBytes": [27, 153, 136, 210, 110, 126, 19, 81, 5], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1696, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8721130719263877801" + } + }, + "cborHex": "1b7907ae2ec1786aa9", + "cborBytes": [27, 121, 7, 174, 46, 193, 120, 106, 169], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1697, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1752455305757645094" + } + }, + "cborHex": "1b1851f8d0d06ed926", + "cborBytes": [27, 24, 81, 248, 208, 208, 110, 217, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1698, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12299259606689629901" + } + }, + "cborHex": "1baaafbf72b10bc6cd", + "cborBytes": [27, 170, 175, 191, 114, 177, 11, 198, 205], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1699, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16112778935447840464" + } + }, + "cborHex": "1bdf9c171297c3e6d0", + "cborBytes": [27, 223, 156, 23, 18, 151, 195, 230, 208], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1700, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18076949999221256141" + } + }, + "cborHex": "1bfade3a3f9e14afcd", + "cborBytes": [27, 250, 222, 58, 63, 158, 20, 175, 205], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1701, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17515054731411314291" + } + }, + "cborHex": "1bf311f97abf4bd673", + "cborBytes": [27, 243, 17, 249, 122, 191, 75, 214, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1702, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17258533694381124730" + } + }, + "cborHex": "1bef82a0f495b26c7a", + "cborBytes": [27, 239, 130, 160, 244, 149, 178, 108, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1703, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16354818925452427132" + } + }, + "cborHex": "1be2f7fd29416d7f7c", + "cborBytes": [27, 226, 247, 253, 41, 65, 109, 127, 124], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1704, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16491574950231611589" + } + }, + "cborHex": "1be4ddd80a874918c5", + "cborBytes": [27, 228, 221, 216, 10, 135, 73, 24, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1705, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6458242637256474825" + } + }, + "cborHex": "1b59a049761af440c9", + "cborBytes": [27, 89, 160, 73, 118, 26, 244, 64, 201], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1706, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16953393104335649939" + } + }, + "cborHex": "1beb468d34997bbc93", + "cborBytes": [27, 235, 70, 141, 52, 153, 123, 188, 147], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1707, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9931687611707953755" + } + }, + "cborHex": "1b89d471433400125b", + "cborBytes": [27, 137, 212, 113, 67, 52, 0, 18, 91], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1708, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4162129428288500282" + } + }, + "cborHex": "1b39c2daa9c255f23a", + "cborBytes": [27, 57, 194, 218, 169, 194, 85, 242, 58], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1709, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6988927345660015206" + } + }, + "cborHex": "1b60fda86457143266", + "cborBytes": [27, 96, 253, 168, 100, 87, 20, 50, 102], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1710, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3600572151186781042" + } + }, + "cborHex": "1b31f7cd4b7ba6f372", + "cborBytes": [27, 49, 247, 205, 75, 123, 166, 243, 114], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1711, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2972608745262331812" + } + }, + "cborHex": "1b2940d3e77d94b7a4", + "cborBytes": [27, 41, 64, 211, 231, 125, 148, 183, 164], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1712, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4896096225848524407" + } + }, + "cborHex": "1b43f26d93a7d4fe77", + "cborBytes": [27, 67, 242, 109, 147, 167, 212, 254, 119], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1713, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9687638744553431817" + } + }, + "cborHex": "1b8671681c616b2309", + "cborBytes": [27, 134, 113, 104, 28, 97, 107, 35, 9], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1714, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6467063084673557664" + } + }, + "cborHex": "1b59bf9f9c8e0264a0", + "cborBytes": [27, 89, 191, 159, 156, 142, 2, 100, 160], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1715, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "953875051373933248" + } + }, + "cborHex": "1b0d3cd84e2d4032c0", + "cborBytes": [27, 13, 60, 216, 78, 45, 64, 50, 192], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1716, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4110739838276384650" + } + }, + "cborHex": "1b390c481a7082b78a", + "cborBytes": [27, 57, 12, 72, 26, 112, 130, 183, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1717, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3906121979417112500" + } + }, + "cborHex": "1b3635553ea880afb4", + "cborBytes": [27, 54, 53, 85, 62, 168, 128, 175, 180], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1718, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10371787172732360227" + } + }, + "cborHex": "1b8feffd7b44aa5623", + "cborBytes": [27, 143, 239, 253, 123, 68, 170, 86, 35], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1719, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3731400743661518672" + } + }, + "cborHex": "1b33c89934e092bf50", + "cborBytes": [27, 51, 200, 153, 52, 224, 146, 191, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1720, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15967683205178245779" + } + }, + "cborHex": "1bdd989b46529ec293", + "cborBytes": [27, 221, 152, 155, 70, 82, 158, 194, 147], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1721, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2459202310888039057" + } + }, + "cborHex": "1b2220d778eb4d2291", + "cborBytes": [27, 34, 32, 215, 120, 235, 77, 34, 145], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1722, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6148396427531491216" + } + }, + "cborHex": "1b55537df9a94b9790", + "cborBytes": [27, 85, 83, 125, 249, 169, 75, 151, 144], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1723, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8552632663783572253" + } + }, + "cborHex": "1b76b10e180b39031d", + "cborBytes": [27, 118, 177, 14, 24, 11, 57, 3, 29], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1724, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14731785413921823569" + } + }, + "cborHex": "1bcc71d0c818175b51", + "cborBytes": [27, 204, 113, 208, 200, 24, 23, 91, 81], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1725, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13838743320715855499" + } + }, + "cborHex": "1bc00d17bab914068b", + "cborBytes": [27, 192, 13, 23, 186, 185, 20, 6, 139], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1726, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10409508349308925770" + } + }, + "cborHex": "1b907600b11705774a", + "cborBytes": [27, 144, 118, 0, 177, 23, 5, 119, 74], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1727, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5465523985766351803" + } + }, + "cborHex": "1b4bd9711b82fb03bb", + "cborBytes": [27, 75, 217, 113, 27, 130, 251, 3, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1728, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3106278878532650155" + } + }, + "cborHex": "1b2b1bb82ea83cc4ab", + "cborBytes": [27, 43, 27, 184, 46, 168, 60, 196, 171], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1729, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11828931798141969617" + } + }, + "cborHex": "1ba428cecc4c9324d1", + "cborBytes": [27, 164, 40, 206, 204, 76, 147, 36, 209], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1730, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3793185045953296469" + } + }, + "cborHex": "1b34a419b3bf5eb855", + "cborBytes": [27, 52, 164, 25, 179, 191, 94, 184, 85], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1731, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15896771997406682719" + } + }, + "cborHex": "1bdc9cade82ccd5e5f", + "cborBytes": [27, 220, 156, 173, 232, 44, 205, 94, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1732, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16017542551249126048" + } + }, + "cborHex": "1bde49be15f5e882a0", + "cborBytes": [27, 222, 73, 190, 21, 245, 232, 130, 160], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1733, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5540416377501457039" + } + }, + "cborHex": "1b4ce3835748bb1a8f", + "cborBytes": [27, 76, 227, 131, 87, 72, 187, 26, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1734, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17039999466928143455" + } + }, + "cborHex": "1bec7a3d3bbf18fc5f", + "cborBytes": [27, 236, 122, 61, 59, 191, 24, 252, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1735, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14195144647826684349" + } + }, + "cborHex": "1bc4ff48d91cff39bd", + "cborBytes": [27, 196, 255, 72, 217, 28, 255, 57, 189], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1736, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14149095524365850713" + } + }, + "cborHex": "1bc45baf6a0ee55859", + "cborBytes": [27, 196, 91, 175, 106, 14, 229, 88, 89], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1737, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12331387940586664760" + } + }, + "cborHex": "1bab21e3ff5a343338", + "cborBytes": [27, 171, 33, 227, 255, 90, 52, 51, 56], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1738, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3665266663452251751" + } + }, + "cborHex": "1b32dda49c6a271667", + "cborBytes": [27, 50, 221, 164, 156, 106, 39, 22, 103], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1739, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18088371386667050277" + } + }, + "cborHex": "1bfb06cdf09ba12525", + "cborBytes": [27, 251, 6, 205, 240, 155, 161, 37, 37], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1740, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10421922298417904921" + } + }, + "cborHex": "1b90a21b1cd9ebfd19", + "cborBytes": [27, 144, 162, 27, 28, 217, 235, 253, 25], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1741, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6110965500445690457" + } + }, + "cborHex": "1b54ce82bed0bb8a59", + "cborBytes": [27, 84, 206, 130, 190, 208, 187, 138, 89], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1742, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15971954807823477753" + } + }, + "cborHex": "1bdda7c84650e92bf9", + "cborBytes": [27, 221, 167, 200, 70, 80, 233, 43, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1743, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4912176801703268731" + } + }, + "cborHex": "1b442b8ec67b70117b", + "cborBytes": [27, 68, 43, 142, 198, 123, 112, 17, 123], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1744, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11329733463775256923" + } + }, + "cborHex": "1b9d3b4c8ecc2e215b", + "cborBytes": [27, 157, 59, 76, 142, 204, 46, 33, 91], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1745, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5562939130034293779" + } + }, + "cborHex": "1b4d3387aa40d08c13", + "cborBytes": [27, 77, 51, 135, 170, 64, 208, 140, 19], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1746, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "741386117143437535" + } + }, + "cborHex": "1b0a49eebed9bda0df", + "cborBytes": [27, 10, 73, 238, 190, 217, 189, 160, 223], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1747, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2106243987990798547" + } + }, + "cborHex": "1b1d3ae1bf6a7e60d3", + "cborBytes": [27, 29, 58, 225, 191, 106, 126, 96, 211], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1748, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18058016080892720465" + } + }, + "cborHex": "1bfa9af5f339e6f551", + "cborBytes": [27, 250, 154, 245, 243, 57, 230, 245, 81], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1749, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13842202392278975194" + } + }, + "cborHex": "1bc01961bc94d9c2da", + "cborBytes": [27, 192, 25, 97, 188, 148, 217, 194, 218], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1750, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3074760033483782352" + } + }, + "cborHex": "1b2aabbdf5ad5e78d0", + "cborBytes": [27, 42, 171, 189, 245, 173, 94, 120, 208], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1751, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3985348869125788295" + } + }, + "cborHex": "1b374ecdae623f5287", + "cborBytes": [27, 55, 78, 205, 174, 98, 63, 82, 135], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1752, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9245111526091906287" + } + }, + "cborHex": "1b804d3bf34593dcef", + "cborBytes": [27, 128, 77, 59, 243, 69, 147, 220, 239], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1753, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1296377824027965511" + } + }, + "cborHex": "1b11fda8c32fe17847", + "cborBytes": [27, 17, 253, 168, 195, 47, 225, 120, 71], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1754, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15172760822505338909" + } + }, + "cborHex": "1bd29079944f64f81d", + "cborBytes": [27, 210, 144, 121, 148, 79, 100, 248, 29], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1755, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8770613690319647027" + } + }, + "cborHex": "1b79b77aaec1ae3133", + "cborBytes": [27, 121, 183, 122, 174, 193, 174, 49, 51], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1756, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15777873698751871811" + } + }, + "cborHex": "1bdaf64488c5157b43", + "cborBytes": [27, 218, 246, 68, 136, 197, 21, 123, 67], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1757, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4436282293581474761" + } + }, + "cborHex": "1b3d90d73dd8476bc9", + "cborBytes": [27, 61, 144, 215, 61, 216, 71, 107, 201], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1758, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1296005525375839100" + } + }, + "cborHex": "1b11fc5628a6f86b7c", + "cborBytes": [27, 17, 252, 86, 40, 166, 248, 107, 124], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1759, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4538912081721520047" + } + }, + "cborHex": "1b3efd747d79bd6faf", + "cborBytes": [27, 62, 253, 116, 125, 121, 189, 111, 175], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1760, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13665496455928199943" + } + }, + "cborHex": "1bbda5989faef5bb07", + "cborBytes": [27, 189, 165, 152, 159, 174, 245, 187, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1761, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6898635073894381586" + } + }, + "cborHex": "1b5fbce00c96867812", + "cborBytes": [27, 95, 188, 224, 12, 150, 134, 120, 18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1762, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4685399604648369444" + } + }, + "cborHex": "1b4105e21db9d25d24", + "cborBytes": [27, 65, 5, 226, 29, 185, 210, 93, 36], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1763, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13979064870194145047" + } + }, + "cborHex": "1bc1ff9d6f68106717", + "cborBytes": [27, 193, 255, 157, 111, 104, 16, 103, 23], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1764, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13409032162830471073" + } + }, + "cborHex": "1bba1673b53f4c4fa1", + "cborBytes": [27, 186, 22, 115, 181, 63, 76, 79, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1765, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8577997778734735405" + } + }, + "cborHex": "1b770b2b881592e02d", + "cborBytes": [27, 119, 11, 43, 136, 21, 146, 224, 45], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1766, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10078243751415838763" + } + }, + "cborHex": "1b8bdd1d4b8af0f82b", + "cborBytes": [27, 139, 221, 29, 75, 138, 240, 248, 43], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1767, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15976395263909391050" + } + }, + "cborHex": "1bddb78ed8908d6aca", + "cborBytes": [27, 221, 183, 142, 216, 144, 141, 106, 202], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1768, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3652065964634087668" + } + }, + "cborHex": "1b32aebea5364f20f4", + "cborBytes": [27, 50, 174, 190, 165, 54, 79, 32, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1769, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16389613700196451392" + } + }, + "cborHex": "1be3739ad30e15c440", + "cborBytes": [27, 227, 115, 154, 211, 14, 21, 196, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1770, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2692540341954194440" + } + }, + "cborHex": "1b255dd32ce196ac08", + "cborBytes": [27, 37, 93, 211, 44, 225, 150, 172, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1771, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18161482850005721314" + } + }, + "cborHex": "1bfc0a8c6dacf0a0e2", + "cborBytes": [27, 252, 10, 140, 109, 172, 240, 160, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1772, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16633375970240614384" + } + }, + "cborHex": "1be6d59f5149b5cff0", + "cborBytes": [27, 230, 213, 159, 81, 73, 181, 207, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1773, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2539518829265589477" + } + }, + "cborHex": "1b233e2eeb96ca94e5", + "cborBytes": [27, 35, 62, 46, 235, 150, 202, 148, 229], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1774, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9914473823593132057" + } + }, + "cborHex": "1b89974969d62d7019", + "cborBytes": [27, 137, 151, 73, 105, 214, 45, 112, 25], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1775, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1642138487693755595" + } + }, + "cborHex": "1b16ca0c410efbc4cb", + "cborBytes": [27, 22, 202, 12, 65, 14, 251, 196, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1776, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2771852511776382496" + } + }, + "cborHex": "1b2677992c6e349e20", + "cborBytes": [27, 38, 119, 153, 44, 110, 52, 158, 32], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1777, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4065293711305839341" + } + }, + "cborHex": "1b386ad317720392ed", + "cborBytes": [27, 56, 106, 211, 23, 114, 3, 146, 237], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1778, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7939033994025229278" + } + }, + "cborHex": "1b6e2d1d5ad19fdbde", + "cborBytes": [27, 110, 45, 29, 90, 209, 159, 219, 222], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1779, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6215829173813967958" + } + }, + "cborHex": "1b56430fb361b0fc56", + "cborBytes": [27, 86, 67, 15, 179, 97, 176, 252, 86], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1780, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2288354679998137741" + } + }, + "cborHex": "1b1fc1de750d64458d", + "cborBytes": [27, 31, 193, 222, 117, 13, 100, 69, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1781, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "880033830233021565" + } + }, + "cborHex": "1b0c36821b215d9c7d", + "cborBytes": [27, 12, 54, 130, 27, 33, 93, 156, 125], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1782, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14170709683860510464" + } + }, + "cborHex": "1bc4a87960b9b19700", + "cborBytes": [27, 196, 168, 121, 96, 185, 177, 151, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1783, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8526086775567569999" + } + }, + "cborHex": "1b7652bebfcddc544f", + "cborBytes": [27, 118, 82, 190, 191, 205, 220, 84, 79], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1784, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3851680604152288668" + } + }, + "cborHex": "1b3573eb1a36c2559c", + "cborBytes": [27, 53, 115, 235, 26, 54, 194, 85, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1785, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6162121583110984819" + } + }, + "cborHex": "1b558440ee78191473", + "cborBytes": [27, 85, 132, 64, 238, 120, 25, 20, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1786, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2241331490769353957" + } + }, + "cborHex": "1b1f1acf1da3343ce5", + "cborBytes": [27, 31, 26, 207, 29, 163, 52, 60, 229], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1787, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1605703599412078022" + } + }, + "cborHex": "1b16489aea9185e5c6", + "cborBytes": [27, 22, 72, 154, 234, 145, 133, 229, 198], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1788, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2479645725119753323" + } + }, + "cborHex": "1b226978a636942c6b", + "cborBytes": [27, 34, 105, 120, 166, 54, 148, 44, 107], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1789, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12728964278183729402" + } + }, + "cborHex": "1bb0a65d91efc718fa", + "cborBytes": [27, 176, 166, 93, 145, 239, 199, 24, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1790, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12242184714203521410" + } + }, + "cborHex": "1ba9e4fa22bcd16182", + "cborBytes": [27, 169, 228, 250, 34, 188, 209, 97, 130], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1791, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4502825699401811706" + } + }, + "cborHex": "1b3e7d401dda5846fa", + "cborBytes": [27, 62, 125, 64, 29, 218, 88, 70, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1792, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8011395876846886370" + } + }, + "cborHex": "1b6f2e321a927cdde2", + "cborBytes": [27, 111, 46, 50, 26, 146, 124, 221, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1793, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15136918090983309379" + } + }, + "cborHex": "1bd21122ce0f3e8043", + "cborBytes": [27, 210, 17, 34, 206, 15, 62, 128, 67], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1794, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7164766847639075537" + } + }, + "cborHex": "1b636e5d7cc405bad1", + "cborBytes": [27, 99, 110, 93, 124, 196, 5, 186, 209], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1795, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2709951679334933366" + } + }, + "cborHex": "1b259baeb1c53b6376", + "cborBytes": [27, 37, 155, 174, 177, 197, 59, 99, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1796, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2705530340766617204" + } + }, + "cborHex": "1b258bf982aa6f8e74", + "cborBytes": [27, 37, 139, 249, 130, 170, 111, 142, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1797, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16438186989611755349" + } + }, + "cborHex": "1be4202bf94b41a755", + "cborBytes": [27, 228, 32, 43, 249, 75, 65, 167, 85], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1798, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1031106637936937039" + } + }, + "cborHex": "1b0e4f3a062fc7484f", + "cborBytes": [27, 14, 79, 58, 6, 47, 199, 72, 79], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1799, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12866076857716807165" + } + }, + "cborHex": "1bb28d7cbc151595fd", + "cborBytes": [27, 178, 141, 124, 188, 21, 21, 149, 253], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1800, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12820160932189571144" + } + }, + "cborHex": "1bb1ea5c7196800848", + "cborBytes": [27, 177, 234, 92, 113, 150, 128, 8, 72], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1801, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5006799339281212788" + } + }, + "cborHex": "1b457bb978cf846574", + "cborBytes": [27, 69, 123, 185, 120, 207, 132, 101, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1802, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9405272519064603813" + } + }, + "cborHex": "1b82863d865a96cca5", + "cborBytes": [27, 130, 134, 61, 134, 90, 150, 204, 165], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1803, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4577183266172973957" + } + }, + "cborHex": "1b3f856bedfc1a3385", + "cborBytes": [27, 63, 133, 107, 237, 252, 26, 51, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1804, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12331004018733473724" + } + }, + "cborHex": "1bab2086d29485dfbc", + "cborBytes": [27, 171, 32, 134, 210, 148, 133, 223, 188], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1805, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8747044799069966561" + } + }, + "cborHex": "1b7963bee6a2fe50e1", + "cborBytes": [27, 121, 99, 190, 230, 162, 254, 80, 225], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1806, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2895339321929767685" + } + }, + "cborHex": "1b282e4fc5ebd81b05", + "cborBytes": [27, 40, 46, 79, 197, 235, 216, 27, 5], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1807, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9815466614302245769" + } + }, + "cborHex": "1b88378ae192310389", + "cborBytes": [27, 136, 55, 138, 225, 146, 49, 3, 137], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1808, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2158524265159615572" + } + }, + "cborHex": "1b1df49e61ffe66454", + "cborBytes": [27, 29, 244, 158, 97, 255, 230, 100, 84], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1809, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5359750570563176763" + } + }, + "cborHex": "1b4a61a8bf2b1d893b", + "cborBytes": [27, 74, 97, 168, 191, 43, 29, 137, 59], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1810, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10479232454481294244" + } + }, + "cborHex": "1b916db665601a33a4", + "cborBytes": [27, 145, 109, 182, 101, 96, 26, 51, 164], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1811, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10167074056100511637" + } + }, + "cborHex": "1b8d18b3fc8ef5ff95", + "cborBytes": [27, 141, 24, 179, 252, 142, 245, 255, 149], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1812, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6159965282187914361" + } + }, + "cborHex": "1b557c97c9898cac79", + "cborBytes": [27, 85, 124, 151, 201, 137, 140, 172, 121], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1813, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16393184786466679789" + } + }, + "cborHex": "1be3804ab55eaf2bed", + "cborBytes": [27, 227, 128, 74, 181, 94, 175, 43, 237], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1814, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7139946339540188155" + } + }, + "cborHex": "1b63162f5de3a4bbfb", + "cborBytes": [27, 99, 22, 47, 93, 227, 164, 187, 251], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1815, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8892815664020220278" + } + }, + "cborHex": "1b7b69a0baf2f46976", + "cborBytes": [27, 123, 105, 160, 186, 242, 244, 105, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1816, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2666883735381251080" + } + }, + "cborHex": "1b2502aca0a8aa9408", + "cborBytes": [27, 37, 2, 172, 160, 168, 170, 148, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1817, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8097488905246146655" + } + }, + "cborHex": "1b70600f41c9dd005f", + "cborBytes": [27, 112, 96, 15, 65, 201, 221, 0, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1818, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14442570104281850271" + } + }, + "cborHex": "1bc86e50fd6565619f", + "cborBytes": [27, 200, 110, 80, 253, 101, 101, 97, 159], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1819, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2769789960126856446" + } + }, + "cborHex": "1b2670454b33cdfcfe", + "cborBytes": [27, 38, 112, 69, 75, 51, 205, 252, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1820, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8753245537097540919" + } + }, + "cborHex": "1b7979c6707678e537", + "cborBytes": [27, 121, 121, 198, 112, 118, 120, 229, 55], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1821, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15907178923619706078" + } + }, + "cborHex": "1bdcc1a6f380eee4de", + "cborBytes": [27, 220, 193, 166, 243, 128, 238, 228, 222], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1822, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4842593143609488518" + } + }, + "cborHex": "1b433458ce9495f486", + "cborBytes": [27, 67, 52, 88, 206, 148, 149, 244, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1823, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1128531069593570659" + } + }, + "cborHex": "1b0fa95907511dcd63", + "cborBytes": [27, 15, 169, 89, 7, 81, 29, 205, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1824, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11313743767950070971" + } + }, + "cborHex": "1b9d027e03a07414bb", + "cborBytes": [27, 157, 2, 126, 3, 160, 116, 20, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1825, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9263465043303485779" + } + }, + "cborHex": "1b808e70607f5a5153", + "cborBytes": [27, 128, 142, 112, 96, 127, 90, 81, 83], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1826, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4112940152806366707" + } + }, + "cborHex": "1b391419471676ddf3", + "cborBytes": [27, 57, 20, 25, 71, 22, 118, 221, 243], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1827, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10223083244726647526" + } + }, + "cborHex": "1b8ddfb00bff2dfae6", + "cborBytes": [27, 141, 223, 176, 11, 255, 45, 250, 230], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1828, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15133966091448113913" + } + }, + "cborHex": "1bd206a5fa1b925af9", + "cborBytes": [27, 210, 6, 165, 250, 27, 146, 90, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1829, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7526030509555887552" + } + }, + "cborHex": "1b6871d4dfb2d4adc0", + "cborBytes": [27, 104, 113, 212, 223, 178, 212, 173, 192], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1830, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12473082602471491095" + } + }, + "cborHex": "1bad194a8aae6b0617", + "cborBytes": [27, 173, 25, 74, 138, 174, 107, 6, 23], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1831, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2700656949623068278" + } + }, + "cborHex": "1b257aa92fde791676", + "cborBytes": [27, 37, 122, 169, 47, 222, 121, 22, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1832, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13689783244547656881" + } + }, + "cborHex": "1bbdfbe1544f5b8cb1", + "cborBytes": [27, 189, 251, 225, 84, 79, 91, 140, 177], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1833, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11858870627927507232" + } + }, + "cborHex": "1ba4932c014eeec120", + "cborBytes": [27, 164, 147, 44, 1, 78, 238, 193, 32], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1834, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3442601134711425457" + } + }, + "cborHex": "1b2fc6937e09d4c9b1", + "cborBytes": [27, 47, 198, 147, 126, 9, 212, 201, 177], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1835, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12092406704067974418" + } + }, + "cborHex": "1ba7d0dbd43b861512", + "cborBytes": [27, 167, 208, 219, 212, 59, 134, 21, 18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1836, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4637192672802331584" + } + }, + "cborHex": "1b405a9e2ac16d5bc0", + "cborBytes": [27, 64, 90, 158, 42, 193, 109, 91, 192], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1837, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15453383426834496288" + } + }, + "cborHex": "1bd6757259e660fb20", + "cborBytes": [27, 214, 117, 114, 89, 230, 96, 251, 32], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1838, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8167831038488457898" + } + }, + "cborHex": "1b7159f70df283b2aa", + "cborBytes": [27, 113, 89, 247, 13, 242, 131, 178, 170], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1839, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17087191949286895214" + } + }, + "cborHex": "1bed21e68bca28ee6e", + "cborBytes": [27, 237, 33, 230, 139, 202, 40, 238, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1840, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9596646814705153424" + } + }, + "cborHex": "1b852e236ec9627590", + "cborBytes": [27, 133, 46, 35, 110, 201, 98, 117, 144], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1841, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11302897903150249836" + } + }, + "cborHex": "1b9cdbf5c1f1c7376c", + "cborBytes": [27, 156, 219, 245, 193, 241, 199, 55, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1842, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1105253555445102032" + } + }, + "cborHex": "1b0f56a640b70af5d0", + "cborBytes": [27, 15, 86, 166, 64, 183, 10, 245, 208], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1843, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15666006747229159979" + } + }, + "cborHex": "1bd968d6227177822b", + "cborBytes": [27, 217, 104, 214, 34, 113, 119, 130, 43], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1844, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16519148675422821795" + } + }, + "cborHex": "1be53fce32b6711da3", + "cborBytes": [27, 229, 63, 206, 50, 182, 113, 29, 163], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1845, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6581533566647358842" + } + }, + "cborHex": "1b5b564de88d53557a", + "cborBytes": [27, 91, 86, 77, 232, 141, 83, 85, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1846, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6861134904682276961" + } + }, + "cborHex": "1b5f37a5d80d9ee861", + "cborBytes": [27, 95, 55, 165, 216, 13, 158, 232, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1847, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14291624672478182942" + } + }, + "cborHex": "1bc6560ceb5a453e1e", + "cborBytes": [27, 198, 86, 12, 235, 90, 69, 62, 30], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1848, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17427573199536877041" + } + }, + "cborHex": "1bf1db2d7d5f836df1", + "cborBytes": [27, 241, 219, 45, 125, 95, 131, 109, 241], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1849, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1141406467850298715" + } + }, + "cborHex": "1b0fd71722948ce55b", + "cborBytes": [27, 15, 215, 23, 34, 148, 140, 229, 91], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1850, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5597526220849425085" + } + }, + "cborHex": "1b4dae6870deaa2abd", + "cborBytes": [27, 77, 174, 104, 112, 222, 170, 42, 189], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1851, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12705893858964961352" + } + }, + "cborHex": "1bb0546725616c7848", + "cborBytes": [27, 176, 84, 103, 37, 97, 108, 120, 72], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1852, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10533305162631174144" + } + }, + "cborHex": "1b922dd13cd16b5800", + "cborBytes": [27, 146, 45, 209, 60, 209, 107, 88, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1853, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11573190619640609176" + } + }, + "cborHex": "1ba09c3b8d198fb998", + "cborBytes": [27, 160, 156, 59, 141, 25, 143, 185, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1854, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14735184036095046377" + } + }, + "cborHex": "1bcc7de3cf7b73b2e9", + "cborBytes": [27, 204, 125, 227, 207, 123, 115, 178, 233], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1855, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9698843193884175559" + } + }, + "cborHex": "1b8699367f87ae6cc7", + "cborBytes": [27, 134, 153, 54, 127, 135, 174, 108, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1856, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17542995307322590216" + } + }, + "cborHex": "1bf3753d49054ec408", + "cborBytes": [27, 243, 117, 61, 73, 5, 78, 196, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1857, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4928748990018679113" + } + }, + "cborHex": "1b44666f17c120f149", + "cborBytes": [27, 68, 102, 111, 23, 193, 32, 241, 73], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1858, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12966831719940683838" + } + }, + "cborHex": "1bb3f370bf8154f83e", + "cborBytes": [27, 179, 243, 112, 191, 129, 84, 248, 62], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1859, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1514892624376058125" + } + }, + "cborHex": "1b1505fad0cccb510d", + "cborBytes": [27, 21, 5, 250, 208, 204, 203, 81, 13], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1860, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2200228336770168179" + } + }, + "cborHex": "1b1e88c803d5ef3573", + "cborBytes": [27, 30, 136, 200, 3, 213, 239, 53, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1861, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8186420204451098905" + } + }, + "cborHex": "1b719c01cd6c637119", + "cborBytes": [27, 113, 156, 1, 205, 108, 99, 113, 25], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1862, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4890689528374674501" + } + }, + "cborHex": "1b43df3836cd7ec445", + "cborBytes": [27, 67, 223, 56, 54, 205, 126, 196, 69], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1863, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11455384339801160757" + } + }, + "cborHex": "1b9ef9b35d236bbc35", + "cborBytes": [27, 158, 249, 179, 93, 35, 107, 188, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1864, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14380253943997382830" + } + }, + "cborHex": "1bc790ecc5afdfc0ae", + "cborBytes": [27, 199, 144, 236, 197, 175, 223, 192, 174], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1865, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17588810377374277637" + } + }, + "cborHex": "1bf41801d945192005", + "cborBytes": [27, 244, 24, 1, 217, 69, 25, 32, 5], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1866, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10630290060717398059" + } + }, + "cborHex": "1b9386607d106d182b", + "cborBytes": [27, 147, 134, 96, 125, 16, 109, 24, 43], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1867, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9459778169374556338" + } + }, + "cborHex": "1b8347e21fff90c0b2", + "cborBytes": [27, 131, 71, 226, 31, 255, 144, 192, 178], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1868, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5956037230292114252" + } + }, + "cborHex": "1b52a8184df4901b4c", + "cborBytes": [27, 82, 168, 24, 77, 244, 144, 27, 76], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1869, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "453369257210183257" + } + }, + "cborHex": "1b064ab0eff8187e59", + "cborBytes": [27, 6, 74, 176, 239, 248, 24, 126, 89], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1870, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3245441396946496749" + } + }, + "cborHex": "1b2d0a1fc16457eced", + "cborBytes": [27, 45, 10, 31, 193, 100, 87, 236, 237], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1871, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17894357609956180372" + } + }, + "cborHex": "1bf8558770193f0194", + "cborBytes": [27, 248, 85, 135, 112, 25, 63, 1, 148], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1872, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17679259637758017708" + } + }, + "cborHex": "1bf55958f8c877c0ac", + "cborBytes": [27, 245, 89, 88, 248, 200, 119, 192, 172], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1873, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "491313025581381603" + } + }, + "cborHex": "1b06d17e97fb4cf7e3", + "cborBytes": [27, 6, 209, 126, 151, 251, 76, 247, 227], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1874, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12117341799804421686" + } + }, + "cborHex": "1ba829722a9f55c636", + "cborBytes": [27, 168, 41, 114, 42, 159, 85, 198, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1875, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13244255572717677243" + } + }, + "cborHex": "1bb7cd0c45b6532abb", + "cborBytes": [27, 183, 205, 12, 69, 182, 83, 42, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1876, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17327586188078284704" + } + }, + "cborHex": "1bf077f3d5235effa0", + "cborBytes": [27, 240, 119, 243, 213, 35, 94, 255, 160], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1877, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10069859597088354481" + } + }, + "cborHex": "1b8bbf53f37e8270b1", + "cborBytes": [27, 139, 191, 83, 243, 126, 130, 112, 177], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1878, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8951706425063608581" + } + }, + "cborHex": "1b7c3ad990bf7f9105", + "cborBytes": [27, 124, 58, 217, 144, 191, 127, 145, 5], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1879, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6186607259316338932" + } + }, + "cborHex": "1b55db3e86386740f4", + "cborBytes": [27, 85, 219, 62, 134, 56, 103, 64, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1880, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13430641435558094931" + } + }, + "cborHex": "1bba63393a20152853", + "cborBytes": [27, 186, 99, 57, 58, 32, 21, 40, 83], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1881, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11616712205682035661" + } + }, + "cborHex": "1ba136da33fd9f4bcd", + "cborBytes": [27, 161, 54, 218, 51, 253, 159, 75, 205], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1882, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14308086842780321172" + } + }, + "cborHex": "1bc690892d0f5c8594", + "cborBytes": [27, 198, 144, 137, 45, 15, 92, 133, 148], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1883, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7850093979365796897" + } + }, + "cborHex": "1b6cf122e1f587ec21", + "cborBytes": [27, 108, 241, 34, 225, 245, 135, 236, 33], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1884, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3235035776663708388" + } + }, + "cborHex": "1b2ce527e61fb862e4", + "cborBytes": [27, 44, 229, 39, 230, 31, 184, 98, 228], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1885, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6501910622136860085" + } + }, + "cborHex": "1b5a3b6d4321ce7db5", + "cborBytes": [27, 90, 59, 109, 67, 33, 206, 125, 181], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1886, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2753815098170196598" + } + }, + "cborHex": "1b2637843dcf8ac276", + "cborBytes": [27, 38, 55, 132, 61, 207, 138, 194, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1887, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5153963821963091231" + } + }, + "cborHex": "1b47868eca09531d1f", + "cborBytes": [27, 71, 134, 142, 202, 9, 83, 29, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1888, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15640092300403039283" + } + }, + "cborHex": "1bd90cc5151bd85c33", + "cborBytes": [27, 217, 12, 197, 21, 27, 216, 92, 51], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1889, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10750921026734723434" + } + }, + "cborHex": "1b9532f1b686cd116a", + "cborBytes": [27, 149, 50, 241, 182, 134, 205, 17, 106], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1890, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3295456647677696496" + } + }, + "cborHex": "1b2dbbd05c698759f0", + "cborBytes": [27, 45, 187, 208, 92, 105, 135, 89, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1891, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7829121253117075414" + } + }, + "cborHex": "1b6ca6a04c9b811fd6", + "cborBytes": [27, 108, 166, 160, 76, 155, 129, 31, 214], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1892, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18152451693724168319" + } + }, + "cborHex": "1bfbea76a3beddf07f", + "cborBytes": [27, 251, 234, 118, 163, 190, 221, 240, 127], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1893, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12001455885849983003" + } + }, + "cborHex": "1ba68dbc8aaf9bf81b", + "cborBytes": [27, 166, 141, 188, 138, 175, 155, 248, 27], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1894, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16066294855579807420" + } + }, + "cborHex": "1bdef6f20c5b852ebc", + "cborBytes": [27, 222, 246, 242, 12, 91, 133, 46, 188], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1895, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16748351402077637748" + } + }, + "cborHex": "1be86e18dd1640cc74", + "cborBytes": [27, 232, 110, 24, 221, 22, 64, 204, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1896, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4130156680261631940" + } + }, + "cborHex": "1b3951439e41b37fc4", + "cborBytes": [27, 57, 81, 67, 158, 65, 179, 127, 196], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1897, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4754337287161356150" + } + }, + "cborHex": "1b41facc92b7a59f76", + "cborBytes": [27, 65, 250, 204, 146, 183, 165, 159, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1898, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16533022919735972295" + } + }, + "cborHex": "1be57118bff24111c7", + "cborBytes": [27, 229, 113, 24, 191, 242, 65, 17, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1899, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1074625749280460293" + } + }, + "cborHex": "1b0ee9d66ce4598e05", + "cborBytes": [27, 14, 233, 214, 108, 228, 89, 142, 5], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1900, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9235187939245413299" + } + }, + "cborHex": "1b8029fa8028b1d3b3", + "cborBytes": [27, 128, 41, 250, 128, 40, 177, 211, 179], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1901, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4412009094046266522" + } + }, + "cborHex": "1b3d3a9ae52c6bb49a", + "cborBytes": [27, 61, 58, 154, 229, 44, 107, 180, 154], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1902, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4255778541089431627" + } + }, + "cborHex": "1b3b0f9008f85da04b", + "cborBytes": [27, 59, 15, 144, 8, 248, 93, 160, 75], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1903, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10778094470371132943" + } + }, + "cborHex": "1b95937bd0e612c60f", + "cborBytes": [27, 149, 147, 123, 208, 230, 18, 198, 15], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1904, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7922482051621850470" + } + }, + "cborHex": "1b6df24f736a540d66", + "cborBytes": [27, 109, 242, 79, 115, 106, 84, 13, 102], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1905, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2921434463885472524" + } + }, + "cborHex": "1b288b052a9e7a330c", + "cborBytes": [27, 40, 139, 5, 42, 158, 122, 51, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1906, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17093698329679836425" + } + }, + "cborHex": "1bed39041086413509", + "cborBytes": [27, 237, 57, 4, 16, 134, 65, 53, 9], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1907, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16834517889518656308" + } + }, + "cborHex": "1be9a038d3d1b7db34", + "cborBytes": [27, 233, 160, 56, 211, 209, 183, 219, 52], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1908, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "586427849058186884" + } + }, + "cborHex": "1b082369058d827684", + "cborBytes": [27, 8, 35, 105, 5, 141, 130, 118, 132], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1909, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15862425039061452904" + } + }, + "cborHex": "1bdc22a787c1850868", + "cborBytes": [27, 220, 34, 167, 135, 193, 133, 8, 104], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1910, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12132314631536265164" + } + }, + "cborHex": "1ba85ea3e0abfe47cc", + "cborBytes": [27, 168, 94, 163, 224, 171, 254, 71, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1911, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2057840568200417895" + } + }, + "cborHex": "1b1c8eeb1807f95267", + "cborBytes": [27, 28, 142, 235, 24, 7, 249, 82, 103], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1912, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11888455324506359257" + } + }, + "cborHex": "1ba4fc4721414d85d9", + "cborBytes": [27, 164, 252, 71, 33, 65, 77, 133, 217], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1913, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12916943229578429083" + } + }, + "cborHex": "1bb342336e2ee8c29b", + "cborBytes": [27, 179, 66, 51, 110, 46, 232, 194, 155], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1914, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12629914908564273289" + } + }, + "cborHex": "1baf4678b174623889", + "cborBytes": [27, 175, 70, 120, 177, 116, 98, 56, 137], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1915, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "89303900223115858" + } + }, + "cborHex": "1b013d456c91db1252", + "cborBytes": [27, 1, 61, 69, 108, 145, 219, 18, 82], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1916, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11944079130495733195" + } + }, + "cborHex": "1ba5c1e4afce5acdcb", + "cborBytes": [27, 165, 193, 228, 175, 206, 90, 205, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1917, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8968377022634611086" + } + }, + "cborHex": "1b7c761362b5e9518e", + "cborBytes": [27, 124, 118, 19, 98, 181, 233, 81, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1918, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5376842418959378616" + } + }, + "cborHex": "1b4a9e61b13b5368b8", + "cborBytes": [27, 74, 158, 97, 177, 59, 83, 104, 184], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1919, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18022696632864237377" + } + }, + "cborHex": "1bfa1d7b1968806741", + "cborBytes": [27, 250, 29, 123, 25, 104, 128, 103, 65], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1920, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10827379284369377964" + } + }, + "cborHex": "1b96429417dd428aac", + "cborBytes": [27, 150, 66, 148, 23, 221, 66, 138, 172], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1921, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15876094087577781294" + } + }, + "cborHex": "1bdc5337751ec0c42e", + "cborBytes": [27, 220, 83, 55, 117, 30, 192, 196, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1922, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6603960641488215411" + } + }, + "cborHex": "1b5ba5fb36d290dd73", + "cborBytes": [27, 91, 165, 251, 54, 210, 144, 221, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1923, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17438740551657878508" + } + }, + "cborHex": "1bf202da2327c473ec", + "cborBytes": [27, 242, 2, 218, 35, 39, 196, 115, 236], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1924, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1760671934501703837" + } + }, + "cborHex": "1b186f29cbc5f9509d", + "cborBytes": [27, 24, 111, 41, 203, 197, 249, 80, 157], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1925, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8434292488028343888" + } + }, + "cborHex": "1b750ca054c0acce50", + "cborBytes": [27, 117, 12, 160, 84, 192, 172, 206, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1926, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13937880552107044601" + } + }, + "cborHex": "1bc16d4c841e2a6ef9", + "cborBytes": [27, 193, 109, 76, 132, 30, 42, 110, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1927, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5277872422555109789" + } + }, + "cborHex": "1b493ec501443a499d", + "cborBytes": [27, 73, 62, 197, 1, 68, 58, 73, 157], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1928, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11377039209907399842" + } + }, + "cborHex": "1b9de35ce21e38aca2", + "cborBytes": [27, 157, 227, 92, 226, 30, 56, 172, 162], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1929, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "814859559038197471" + } + }, + "cborHex": "1b0b4ef6739e4d9edf", + "cborBytes": [27, 11, 78, 246, 115, 158, 77, 158, 223], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1930, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14445461962526387710" + } + }, + "cborHex": "1bc878971e9ccd6dfe", + "cborBytes": [27, 200, 120, 151, 30, 156, 205, 109, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1931, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9075605482894359796" + } + }, + "cborHex": "1b7df3071a21817cf4", + "cborBytes": [27, 125, 243, 7, 26, 33, 129, 124, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1932, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12372246269113016630" + } + }, + "cborHex": "1babb30c6e48222136", + "cborBytes": [27, 171, 179, 12, 110, 72, 34, 33, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1933, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16813215623943856378" + } + }, + "cborHex": "1be9548a879d38a0fa", + "cborBytes": [27, 233, 84, 138, 135, 157, 56, 160, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1934, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1822693014555006468" + } + }, + "cborHex": "1b194b81a3c3231604", + "cborBytes": [27, 25, 75, 129, 163, 195, 35, 22, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1935, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17678889453915528778" + } + }, + "cborHex": "1bf558084aa408de4a", + "cborBytes": [27, 245, 88, 8, 74, 164, 8, 222, 74], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1936, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1977908705126886191" + } + }, + "cborHex": "1b1b72f17ce73dab2f", + "cborBytes": [27, 27, 114, 241, 124, 231, 61, 171, 47], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1937, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11620086314374581696" + } + }, + "cborHex": "1ba142d6efe3accdc0", + "cborBytes": [27, 161, 66, 214, 239, 227, 172, 205, 192], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1938, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3760303081068316489" + } + }, + "cborHex": "1b342f47bab2e24749", + "cborBytes": [27, 52, 47, 71, 186, 178, 226, 71, 73], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1939, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9338040681194657077" + } + }, + "cborHex": "1b8197628644c11535", + "cborBytes": [27, 129, 151, 98, 134, 68, 193, 21, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1940, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11954423434321843533" + } + }, + "cborHex": "1ba5e6a4c6b95bd54d", + "cborBytes": [27, 165, 230, 164, 198, 185, 91, 213, 77], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1941, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16714790993125559909" + } + }, + "cborHex": "1be7f6ddd97825ce65", + "cborBytes": [27, 231, 246, 221, 217, 120, 37, 206, 101], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1942, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2457850623760464329" + } + }, + "cborHex": "1b221c0a1ebc36f9c9", + "cborBytes": [27, 34, 28, 10, 30, 188, 54, 249, 201], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1943, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8060161793607861549" + } + }, + "cborHex": "1b6fdb72725c2c052d", + "cborBytes": [27, 111, 219, 114, 114, 92, 44, 5, 45], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1944, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14582257004380689712" + } + }, + "cborHex": "1bca5e957c41901530", + "cborBytes": [27, 202, 94, 149, 124, 65, 144, 21, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1945, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13763607636186581400" + } + }, + "cborHex": "1bbf022838eec14998", + "cborBytes": [27, 191, 2, 40, 56, 238, 193, 73, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1946, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5944863711919458011" + } + }, + "cborHex": "1b5280660c7b11c6db", + "cborBytes": [27, 82, 128, 102, 12, 123, 17, 198, 219], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1947, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1408324372521340233" + } + }, + "cborHex": "1b138b5f8e20a8cd49", + "cborBytes": [27, 19, 139, 95, 142, 32, 168, 205, 73], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1948, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6651800778164100071" + } + }, + "cborHex": "1b5c4ff190a3235be7", + "cborBytes": [27, 92, 79, 241, 144, 163, 35, 91, 231], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1949, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10378800907738117985" + } + }, + "cborHex": "1b9008e86fb43b7761", + "cborBytes": [27, 144, 8, 232, 111, 180, 59, 119, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1950, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8122636155373977163" + } + }, + "cborHex": "1b70b9668c38cf7e4b", + "cborBytes": [27, 112, 185, 102, 140, 56, 207, 126, 75], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1951, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16118915823977453117" + } + }, + "cborHex": "1bdfb1e48a4c99563d", + "cborBytes": [27, 223, 177, 228, 138, 76, 153, 86, 61], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1952, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1400066223481228745" + } + }, + "cborHex": "1b136e08cff89f0dc9", + "cborBytes": [27, 19, 110, 8, 207, 248, 159, 13, 201], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1953, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9468683894805602921" + } + }, + "cborHex": "1b836785d5c859a269", + "cborBytes": [27, 131, 103, 133, 213, 200, 89, 162, 105], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1954, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2114345261861542386" + } + }, + "cborHex": "1b1d57a9d039c999f2", + "cborBytes": [27, 29, 87, 169, 208, 57, 201, 153, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1955, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5261782350609645653" + } + }, + "cborHex": "1b49059b2b75820055", + "cborBytes": [27, 73, 5, 155, 43, 117, 130, 0, 85], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1956, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9144605986662380253" + } + }, + "cborHex": "1b7ee82ab1d5ebf2dd", + "cborBytes": [27, 126, 232, 42, 177, 213, 235, 242, 221], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1957, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12895632659218965137" + } + }, + "cborHex": "1bb2f67d945eac2291", + "cborBytes": [27, 178, 246, 125, 148, 94, 172, 34, 145], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1958, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16384287774777900126" + } + }, + "cborHex": "1be360aeec69697c5e", + "cborBytes": [27, 227, 96, 174, 236, 105, 105, 124, 94], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1959, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14623121808254842418" + } + }, + "cborHex": "1bcaefc3ced84c3632", + "cborBytes": [27, 202, 239, 195, 206, 216, 76, 54, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1960, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15021161654325335544" + } + }, + "cborHex": "1bd075e2f067c7d5f8", + "cborBytes": [27, 208, 117, 226, 240, 103, 199, 213, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1961, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17328001274015559123" + } + }, + "cborHex": "1bf0796d59dd36add3", + "cborBytes": [27, 240, 121, 109, 89, 221, 54, 173, 211], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1962, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14476627990816112321" + } + }, + "cborHex": "1bc8e750750a123ec1", + "cborBytes": [27, 200, 231, 80, 117, 10, 18, 62, 193], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1963, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16209012889675438955" + } + }, + "cborHex": "1be0f1fb5818d51b6b", + "cborBytes": [27, 224, 241, 251, 88, 24, 213, 27, 107], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1964, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2208875224145667320" + } + }, + "cborHex": "1b1ea78050305d24f8", + "cborBytes": [27, 30, 167, 128, 80, 48, 93, 36, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1965, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13153406975559078104" + } + }, + "cborHex": "1bb68a49f45c5810d8", + "cborBytes": [27, 182, 138, 73, 244, 92, 88, 16, 216], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1966, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3116301558916506038" + } + }, + "cborHex": "1b2b3f53c1c836e1b6", + "cborBytes": [27, 43, 63, 83, 193, 200, 54, 225, 182], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1967, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4831203953463125448" + } + }, + "cborHex": "1b430be2661ba1e5c8", + "cborBytes": [27, 67, 11, 226, 102, 27, 161, 229, 200], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1968, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15450030420462976697" + } + }, + "cborHex": "1bd66988cf44acbeb9", + "cborBytes": [27, 214, 105, 136, 207, 68, 172, 190, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1969, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4094385019572709511" + } + }, + "cborHex": "1b38d22d7b794fe887", + "cborBytes": [27, 56, 210, 45, 123, 121, 79, 232, 135], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1970, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17482625192458074908" + } + }, + "cborHex": "1bf29ec2fc51c23b1c", + "cborBytes": [27, 242, 158, 194, 252, 81, 194, 59, 28], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1971, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13695354827622297322" + } + }, + "cborHex": "1bbe0faca7955baeea", + "cborBytes": [27, 190, 15, 172, 167, 149, 91, 174, 234], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1972, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8035592676270096560" + } + }, + "cborHex": "1b6f8428f6f4cf40b0", + "cborBytes": [27, 111, 132, 40, 246, 244, 207, 64, 176], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1973, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13009981239861113273" + } + }, + "cborHex": "1bb48cbd02006af1b9", + "cborBytes": [27, 180, 140, 189, 2, 0, 106, 241, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1974, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5521055973367206688" + } + }, + "cborHex": "1b4c9ebb27ed99d320", + "cborBytes": [27, 76, 158, 187, 39, 237, 153, 211, 32], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1975, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9650666636053754258" + } + }, + "cborHex": "1b85ee0e2c8fb2b192", + "cborBytes": [27, 133, 238, 14, 44, 143, 178, 177, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1976, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13181220910782452102" + } + }, + "cborHex": "1bb6ed1a94cd239186", + "cborBytes": [27, 182, 237, 26, 148, 205, 35, 145, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1977, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "186658454384953895" + } + }, + "cborHex": "1b029724e013f04a27", + "cborBytes": [27, 2, 151, 36, 224, 19, 240, 74, 39], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1978, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6815648554975232593" + } + }, + "cborHex": "1b5e960c3ff9340251", + "cborBytes": [27, 94, 150, 12, 63, 249, 52, 2, 81], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1979, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14286175703449086748" + } + }, + "cborHex": "1bc642b11c62e62b1c", + "cborBytes": [27, 198, 66, 177, 28, 98, 230, 43, 28], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1980, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1864987013564133104" + } + }, + "cborHex": "1b19e1c3cec634eef0", + "cborBytes": [27, 25, 225, 195, 206, 198, 52, 238, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1981, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7341319763249087466" + } + }, + "cborHex": "1b65e19b6dbf0443ea", + "cborBytes": [27, 101, 225, 155, 109, 191, 4, 67, 234], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1982, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12229259751745569554" + } + }, + "cborHex": "1ba9b70ef368c6c312", + "cborBytes": [27, 169, 183, 14, 243, 104, 198, 195, 18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1983, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15242548933445517300" + } + }, + "cborHex": "1bd388697f19877ff4", + "cborBytes": [27, 211, 136, 105, 127, 25, 135, 127, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1984, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4911669125817304263" + } + }, + "cborHex": "1b4429c10bfa9804c7", + "cborBytes": [27, 68, 41, 193, 11, 250, 152, 4, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1985, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1552640920516850920" + } + }, + "cborHex": "1b158c16b0e32474e8", + "cborBytes": [27, 21, 140, 22, 176, 227, 36, 116, 232], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1986, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3895654999768359930" + } + }, + "cborHex": "1b361025950caae3fa", + "cborBytes": [27, 54, 16, 37, 149, 12, 170, 227, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1987, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16512445299466056706" + } + }, + "cborHex": "1be527fd835fbe3402", + "cborBytes": [27, 229, 39, 253, 131, 95, 190, 52, 2], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1988, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14260266660071669515" + } + }, + "cborHex": "1bc5e6a4f923eaff0b", + "cborBytes": [27, 197, 230, 164, 249, 35, 234, 255, 11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1989, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9617004324276844561" + } + }, + "cborHex": "1b8576767ad7eab811", + "cborBytes": [27, 133, 118, 118, 122, 215, 234, 184, 17], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1990, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13178096652578209452" + } + }, + "cborHex": "1bb6e20115c0b03eac", + "cborBytes": [27, 182, 226, 1, 21, 192, 176, 62, 172], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1991, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11305949023743935642" + } + }, + "cborHex": "1b9ce6ccbc50ee849a", + "cborBytes": [27, 156, 230, 204, 188, 80, 238, 132, 154], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1992, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6832983843793675480" + } + }, + "cborHex": "1b5ed3a29a6d4e24d8", + "cborBytes": [27, 94, 211, 162, 154, 109, 78, 36, 216], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1993, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14841340210376852276" + } + }, + "cborHex": "1bcdf70849de3bc334", + "cborBytes": [27, 205, 247, 8, 73, 222, 59, 195, 52], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1994, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12239689342456978342" + } + }, + "cborHex": "1ba9dc1c9bba485ba6", + "cborBytes": [27, 169, 220, 28, 155, 186, 72, 91, 166], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1995, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11375342928504387279" + } + }, + "cborHex": "1b9ddd561fd3c176cf", + "cborBytes": [27, 157, 221, 86, 31, 211, 193, 118, 207], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1996, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17755206397866650922" + } + }, + "cborHex": "1bf6672a25d295ad2a", + "cborBytes": [27, 246, 103, 42, 37, 210, 149, 173, 42], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1997, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10250187500105133975" + } + }, + "cborHex": "1b8e3ffb3938ea6f97", + "cborBytes": [27, 142, 63, 251, 57, 56, 234, 111, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1998, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9170428658477960814" + } + }, + "cborHex": "1b7f43e84722a40e6e", + "cborBytes": [27, 127, 67, 232, 71, 34, 164, 14, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 1999, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10329828946992079180" + } + }, + "cborHex": "1b8f5aecb29002a14c", + "cborBytes": [27, 143, 90, 236, 178, 144, 2, 161, 76], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2000, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15841786765222913014" + } + }, + "cborHex": "1bdbd955212c98a3f6", + "cborBytes": [27, 219, 217, 85, 33, 44, 152, 163, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2001, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16578738441449386843" + } + }, + "cborHex": "1be61382c64ab4335b", + "cborBytes": [27, 230, 19, 130, 198, 74, 180, 51, 91], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2002, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1027731455864217031" + } + }, + "cborHex": "1b0e433c505f481dc7", + "cborBytes": [27, 14, 67, 60, 80, 95, 72, 29, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2003, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3239703509262117114" + } + }, + "cborHex": "1b2cf5bd2d4f27a8fa", + "cborBytes": [27, 44, 245, 189, 45, 79, 39, 168, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2004, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1780144904971752711" + } + }, + "cborHex": "1b18b4585c05901507", + "cborBytes": [27, 24, 180, 88, 92, 5, 144, 21, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2005, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9482198494955392940" + } + }, + "cborHex": "1b8397894ad58f4fac", + "cborBytes": [27, 131, 151, 137, 74, 213, 143, 79, 172], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2006, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9964246968976934073" + } + }, + "cborHex": "1b8a481dd3502204b9", + "cborBytes": [27, 138, 72, 29, 211, 80, 34, 4, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2007, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14476028671322114746" + } + }, + "cborHex": "1bc8e52f6118864aba", + "cborBytes": [27, 200, 229, 47, 97, 24, 134, 74, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2008, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6698232520692440505" + } + }, + "cborHex": "1b5cf4e6fd22d79db9", + "cborBytes": [27, 92, 244, 230, 253, 34, 215, 157, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2009, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1098414017267296051" + } + }, + "cborHex": "1b0f3e59baa386e733", + "cborBytes": [27, 15, 62, 89, 186, 163, 134, 231, 51], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2010, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11872393137741590653" + } + }, + "cborHex": "1ba4c336a7f8df707d", + "cborBytes": [27, 164, 195, 54, 167, 248, 223, 112, 125], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2011, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7004852720441685066" + } + }, + "cborHex": "1b61363c6f99daf44a", + "cborBytes": [27, 97, 54, 60, 111, 153, 218, 244, 74], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2012, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16140299299573552279" + } + }, + "cborHex": "1bdffddcb2af915497", + "cborBytes": [27, 223, 253, 220, 178, 175, 145, 84, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2013, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9361648901008615202" + } + }, + "cborHex": "1b81eb4213488b6722", + "cborBytes": [27, 129, 235, 66, 19, 72, 139, 103, 34], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2014, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3958834768707449580" + } + }, + "cborHex": "1b36f09b3f5145f2ec", + "cborBytes": [27, 54, 240, 155, 63, 81, 69, 242, 236], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2015, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8378820783816701709" + } + }, + "cborHex": "1b74478d1c280df70d", + "cborBytes": [27, 116, 71, 141, 28, 40, 13, 247, 13], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2016, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4819278134565799968" + } + }, + "cborHex": "1b42e183ee049a0820", + "cborBytes": [27, 66, 225, 131, 238, 4, 154, 8, 32], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2017, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3606933156564763485" + } + }, + "cborHex": "1b320e6698759f035d", + "cborBytes": [27, 50, 14, 102, 152, 117, 159, 3, 93], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2018, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3447499379997694462" + } + }, + "cborHex": "1b2fd7fa6ba42459fe", + "cborBytes": [27, 47, 215, 250, 107, 164, 36, 89, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2019, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9714955321840833134" + } + }, + "cborHex": "1b86d27464a71d126e", + "cborBytes": [27, 134, 210, 116, 100, 167, 29, 18, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2020, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6078498313310640568" + } + }, + "cborHex": "1b545b2a02bcb119b8", + "cborBytes": [27, 84, 91, 42, 2, 188, 177, 25, 184], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2021, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "817107865093749047" + } + }, + "cborHex": "1b0b56f3462a173937", + "cborBytes": [27, 11, 86, 243, 70, 42, 23, 57, 55], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2022, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6374542821188358562" + } + }, + "cborHex": "1b5876ecec0e72d1a2", + "cborBytes": [27, 88, 118, 236, 236, 14, 114, 209, 162], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2023, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16804975124503646105" + } + }, + "cborHex": "1be93743d6d350cf99", + "cborBytes": [27, 233, 55, 67, 214, 211, 80, 207, 153], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2024, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14368744200465147839" + } + }, + "cborHex": "1bc76808b8b12de7bf", + "cborBytes": [27, 199, 104, 8, 184, 177, 45, 231, 191], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2025, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2737010323891576231" + } + }, + "cborHex": "1b25fbd06366225da7", + "cborBytes": [27, 37, 251, 208, 99, 102, 34, 93, 167], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2026, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17747823439626229776" + } + }, + "cborHex": "1bf64cef62e745d810", + "cborBytes": [27, 246, 76, 239, 98, 231, 69, 216, 16], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2027, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16574543561679429277" + } + }, + "cborHex": "1be6049b8dbc23de9d", + "cborBytes": [27, 230, 4, 155, 141, 188, 35, 222, 157], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2028, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5231433574364455394" + } + }, + "cborHex": "1b4899c91e5a0ba1e2", + "cborBytes": [27, 72, 153, 201, 30, 90, 11, 161, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2029, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6991242284676363465" + } + }, + "cborHex": "1b6105e1d114d334c9", + "cborBytes": [27, 97, 5, 225, 209, 20, 211, 52, 201], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2030, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7036781159282058460" + } + }, + "cborHex": "1b61a7ab2e912b24dc", + "cborBytes": [27, 97, 167, 171, 46, 145, 43, 36, 220], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2031, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12677369076229692151" + } + }, + "cborHex": "1bafef1001db315af7", + "cborBytes": [27, 175, 239, 16, 1, 219, 49, 90, 247], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2032, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17558923799012422076" + } + }, + "cborHex": "1bf3add429fe49b1bc", + "cborBytes": [27, 243, 173, 212, 41, 254, 73, 177, 188], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2033, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4802954744367837548" + } + }, + "cborHex": "1b42a785e49252716c", + "cborBytes": [27, 66, 167, 133, 228, 146, 82, 113, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2034, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2560716381782111386" + } + }, + "cborHex": "1b23897dfb62a5749a", + "cborBytes": [27, 35, 137, 125, 251, 98, 165, 116, 154], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2035, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12065662384038319692" + } + }, + "cborHex": "1ba771d802fc65964c", + "cborBytes": [27, 167, 113, 216, 2, 252, 101, 150, 76], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2036, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9424240066270689033" + } + }, + "cborHex": "1b82c9a06894117709", + "cborBytes": [27, 130, 201, 160, 104, 148, 17, 119, 9], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2037, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7937972770513812045" + } + }, + "cborHex": "1b6e29582d7732fa4d", + "cborBytes": [27, 110, 41, 88, 45, 119, 50, 250, 77], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2038, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8787899622651142893" + } + }, + "cborHex": "1b79f4e42581e922ed", + "cborBytes": [27, 121, 244, 228, 37, 129, 233, 34, 237], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2039, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1014228021047443536" + } + }, + "cborHex": "1b0e134302f3c7c050", + "cborBytes": [27, 14, 19, 67, 2, 243, 199, 192, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2040, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1887945803055746725" + } + }, + "cborHex": "1b1a3354b48253cea5", + "cborBytes": [27, 26, 51, 84, 180, 130, 83, 206, 165], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2041, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6982537130725948443" + } + }, + "cborHex": "1b60e6f4867be53c1b", + "cborBytes": [27, 96, 230, 244, 134, 123, 229, 60, 27], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2042, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3810255875367853724" + } + }, + "cborHex": "1b34e0bf87f2a55e9c", + "cborBytes": [27, 52, 224, 191, 135, 242, 165, 94, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2043, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2790966602940663346" + } + }, + "cborHex": "1b26bb81569441c632", + "cborBytes": [27, 38, 187, 129, 86, 148, 65, 198, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2044, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16581509933405694629" + } + }, + "cborHex": "1be61d5b6e8c41eaa5", + "cborBytes": [27, 230, 29, 91, 110, 140, 65, 234, 165], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2045, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16114134989813114491" + } + }, + "cborHex": "1bdfa0e8659a80e67b", + "cborBytes": [27, 223, 160, 232, 101, 154, 128, 230, 123], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2046, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4279645453859162189" + } + }, + "cborHex": "1b3b645adda1e4084d", + "cborBytes": [27, 59, 100, 90, 221, 161, 228, 8, 77], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2047, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2196256929085690082" + } + }, + "cborHex": "1b1e7aac0a6da490e2", + "cborBytes": [27, 30, 122, 172, 10, 109, 164, 144, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2048, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11099533713850168055" + } + }, + "cborHex": "1b9a09771ada82f2f7", + "cborBytes": [27, 154, 9, 119, 26, 218, 130, 242, 247], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2049, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "738615647996628492" + } + }, + "cborHex": "1b0a401704bc624e0c", + "cborBytes": [27, 10, 64, 23, 4, 188, 98, 78, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2050, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13924169387040253711" + } + }, + "cborHex": "1bc13c9648bae7270f", + "cborBytes": [27, 193, 60, 150, 72, 186, 231, 39, 15], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2051, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8628282249424905027" + } + }, + "cborHex": "1b77bdd0fdc2c7a343", + "cborBytes": [27, 119, 189, 208, 253, 194, 199, 163, 67], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2052, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12528157017118153759" + } + }, + "cborHex": "1baddcf46e17a51c1f", + "cborBytes": [27, 173, 220, 244, 110, 23, 165, 28, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2053, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8148540577932200976" + } + }, + "cborHex": "1b71156e7b99814c10", + "cborBytes": [27, 113, 21, 110, 123, 153, 129, 76, 16], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2054, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16773667604663962029" + } + }, + "cborHex": "1be8c809d0d47909ad", + "cborBytes": [27, 232, 200, 9, 208, 212, 121, 9, 173], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2055, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18224681899204928914" + } + }, + "cborHex": "1bfceb13a0fa99e592", + "cborBytes": [27, 252, 235, 19, 160, 250, 153, 229, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2056, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13502453983597521632" + } + }, + "cborHex": "1bbb625a5be8636ae0", + "cborBytes": [27, 187, 98, 90, 91, 232, 99, 106, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2057, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7462389683874249753" + } + }, + "cborHex": "1b678fbbe14add3c19", + "cborBytes": [27, 103, 143, 187, 225, 74, 221, 60, 25], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2058, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13157773274866475237" + } + }, + "cborHex": "1bb699cd14a38b60e5", + "cborBytes": [27, 182, 153, 205, 20, 163, 139, 96, 229], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2059, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1380576620257108156" + } + }, + "cborHex": "1b1328cb1f1ba260bc", + "cborBytes": [27, 19, 40, 203, 31, 27, 162, 96, 188], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2060, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5245488670970656957" + } + }, + "cborHex": "1b48cbb8278a8ab8bd", + "cborBytes": [27, 72, 203, 184, 39, 138, 138, 184, 189], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2061, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17702628097567863044" + } + }, + "cborHex": "1bf5ac5e765261b104", + "cborBytes": [27, 245, 172, 94, 118, 82, 97, 177, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2062, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2139738730286524568" + } + }, + "cborHex": "1b1db1e109d2dfa898", + "cborBytes": [27, 29, 177, 225, 9, 210, 223, 168, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2063, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14682557411418339135" + } + }, + "cborHex": "1bcbc2ec2c95de773f", + "cborBytes": [27, 203, 194, 236, 44, 149, 222, 119, 63], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2064, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "535414937175685869" + } + }, + "cborHex": "1b076e2d0c71cb7aed", + "cborBytes": [27, 7, 110, 45, 12, 113, 203, 122, 237], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2065, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12733737722654196333" + } + }, + "cborHex": "1bb0b752fe15cb826d", + "cborBytes": [27, 176, 183, 82, 254, 21, 203, 130, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2066, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16674570302752154797" + } + }, + "cborHex": "1be767f9583dd1e4ad", + "cborBytes": [27, 231, 103, 249, 88, 61, 209, 228, 173], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2067, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1547850117413825496" + } + }, + "cborHex": "1b157b117b1dff6bd8", + "cborBytes": [27, 21, 123, 17, 123, 29, 255, 107, 216], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2068, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13311271559161061209" + } + }, + "cborHex": "1bb8bb22f4f88e1f59", + "cborBytes": [27, 184, 187, 34, 244, 248, 142, 31, 89], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2069, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1696136694891000489" + } + }, + "cborHex": "1b1789e356657bb2a9", + "cborBytes": [27, 23, 137, 227, 86, 101, 123, 178, 169], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2070, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4305414250006817509" + } + }, + "cborHex": "1b3bbfe773068faae5", + "cborBytes": [27, 59, 191, 231, 115, 6, 143, 170, 229], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2071, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8899705605415426586" + } + }, + "cborHex": "1b7b821b187056da1a", + "cborBytes": [27, 123, 130, 27, 24, 112, 86, 218, 26], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2072, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5017356126870571871" + } + }, + "cborHex": "1b45a13ad075c00b5f", + "cborBytes": [27, 69, 161, 58, 208, 117, 192, 11, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2073, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5569458275492236821" + } + }, + "cborHex": "1b4d4ab0cb16130e15", + "cborBytes": [27, 77, 74, 176, 203, 22, 19, 14, 21], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2074, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "314267601293150195" + } + }, + "cborHex": "1b045c80b7e37e07f3", + "cborBytes": [27, 4, 92, 128, 183, 227, 126, 7, 243], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2075, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7172426417584940455" + } + }, + "cborHex": "1b638993d35dc725a7", + "cborBytes": [27, 99, 137, 147, 211, 93, 199, 37, 167], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2076, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16939184921624959331" + } + }, + "cborHex": "1beb1412f0461bd963", + "cborBytes": [27, 235, 20, 18, 240, 70, 27, 217, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2077, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1798162094207379854" + } + }, + "cborHex": "1b18f45ae5c9cda98e", + "cborBytes": [27, 24, 244, 90, 229, 201, 205, 169, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2078, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1442097676899145620" + } + }, + "cborHex": "1b14035c3252fd5794", + "cborBytes": [27, 20, 3, 92, 50, 82, 253, 87, 148], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2079, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14737619871399022730" + } + }, + "cborHex": "1bcc868b30957a108a", + "cborBytes": [27, 204, 134, 139, 48, 149, 122, 16, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2080, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "430159109223953970" + } + }, + "cborHex": "1b05f83b6e46313632", + "cborBytes": [27, 5, 248, 59, 110, 70, 49, 54, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2081, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7257010248276061413" + } + }, + "cborHex": "1b64b6145f1bdd2ce5", + "cborBytes": [27, 100, 182, 20, 95, 27, 221, 44, 229], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2082, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2526101346090511049" + } + }, + "cborHex": "1b230e83ca585c6ac9", + "cborBytes": [27, 35, 14, 131, 202, 88, 92, 106, 201], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2083, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "371219137565716544" + } + }, + "cborHex": "1b0526d5d6bc6e7040", + "cborBytes": [27, 5, 38, 213, 214, 188, 110, 112, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2084, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4322471611654865238" + } + }, + "cborHex": "1b3bfc810784660156", + "cborBytes": [27, 59, 252, 129, 7, 132, 102, 1, 86], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2085, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14609589272204695138" + } + }, + "cborHex": "1bcabfb009c41e5662", + "cborBytes": [27, 202, 191, 176, 9, 196, 30, 86, 98], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2086, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4208527580603369032" + } + }, + "cborHex": "1b3a67b1896d4c4648", + "cborBytes": [27, 58, 103, 177, 137, 109, 76, 70, 72], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2087, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1385180337129976822" + } + }, + "cborHex": "1b1339262d787cf3f6", + "cborBytes": [27, 19, 57, 38, 45, 120, 124, 243, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2088, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1279264691190446983" + } + }, + "cborHex": "1b11c0dc75741b3b87", + "cborBytes": [27, 17, 192, 220, 117, 116, 27, 59, 135], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2089, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17556233922759802029" + } + }, + "cborHex": "1bf3a445bc5fc2bcad", + "cborBytes": [27, 243, 164, 69, 188, 95, 194, 188, 173], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2090, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7831932269081162334" + } + }, + "cborHex": "1b6cb09ce74380725e", + "cborBytes": [27, 108, 176, 156, 231, 67, 128, 114, 94], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2091, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13853496524685727293" + } + }, + "cborHex": "1bc04181b0b300563d", + "cborBytes": [27, 192, 65, 129, 176, 179, 0, 86, 61], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2092, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14253379562905226726" + } + }, + "cborHex": "1bc5ce2d31dfc74de6", + "cborBytes": [27, 197, 206, 45, 49, 223, 199, 77, 230], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2093, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5604340219445125656" + } + }, + "cborHex": "1b4dc69dbc8c762218", + "cborBytes": [27, 77, 198, 157, 188, 140, 118, 34, 24], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2094, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5163746689734670342" + } + }, + "cborHex": "1b47a950416fbbf806", + "cborBytes": [27, 71, 169, 80, 65, 111, 187, 248, 6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2095, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2565900028686835127" + } + }, + "cborHex": "1b239be87b3b0b1db7", + "cborBytes": [27, 35, 155, 232, 123, 59, 11, 29, 183], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2096, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7201467051081174575" + } + }, + "cborHex": "1b63f0c020c15f8e2f", + "cborBytes": [27, 99, 240, 192, 32, 193, 95, 142, 47], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2097, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6879331126177962247" + } + }, + "cborHex": "1b5f784b3604201907", + "cborBytes": [27, 95, 120, 75, 54, 4, 32, 25, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2098, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11204421333923943803" + } + }, + "cborHex": "1b9b7e19d6f258557b", + "cborBytes": [27, 155, 126, 25, 214, 242, 88, 85, 123], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2099, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8656391364711854221" + } + }, + "cborHex": "1b7821ae152a68b08d", + "cborBytes": [27, 120, 33, 174, 21, 42, 104, 176, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2100, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6148218752343830179" + } + }, + "cborHex": "1b5552dc616ed96ea3", + "cborBytes": [27, 85, 82, 220, 97, 110, 217, 110, 163], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2101, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "72774964255589882" + } + }, + "cborHex": "1b01028c71c4ff05fa", + "cborBytes": [27, 1, 2, 140, 113, 196, 255, 5, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2102, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7375017441026369875" + } + }, + "cborHex": "1b66595349c0afe953", + "cborBytes": [27, 102, 89, 83, 73, 192, 175, 233, 83], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2103, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18206090845733849418" + } + }, + "cborHex": "1bfca9072a0875094a", + "cborBytes": [27, 252, 169, 7, 42, 8, 117, 9, 74], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2104, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12390303452071301829" + } + }, + "cborHex": "1babf33357d00192c5", + "cborBytes": [27, 171, 243, 51, 87, 208, 1, 146, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2105, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8776113075509318154" + } + }, + "cborHex": "1b79cb04582664d20a", + "cborBytes": [27, 121, 203, 4, 88, 38, 100, 210, 10], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2106, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1431818377363388179" + } + }, + "cborHex": "1b13ded73a659ef713", + "cborBytes": [27, 19, 222, 215, 58, 101, 158, 247, 19], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2107, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2415505258245726552" + } + }, + "cborHex": "1b2185993c06d32158", + "cborBytes": [27, 33, 133, 153, 60, 6, 211, 33, 88], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2108, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12134765952471015320" + } + }, + "cborHex": "1ba86759574d8a1f98", + "cborBytes": [27, 168, 103, 89, 87, 77, 138, 31, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2109, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12232473122481453726" + } + }, + "cborHex": "1ba9c2797e96053a9e", + "cborBytes": [27, 169, 194, 121, 126, 150, 5, 58, 158], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2110, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1636005977802742727" + } + }, + "cborHex": "1b16b442c4d5591bc7", + "cborBytes": [27, 22, 180, 66, 196, 213, 89, 27, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2111, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15024091425619602750" + } + }, + "cborHex": "1bd0804b8cf10c6d3e", + "cborBytes": [27, 208, 128, 75, 140, 241, 12, 109, 62], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2112, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3792119584200904064" + } + }, + "cborHex": "1b34a050ab9a18cd80", + "cborBytes": [27, 52, 160, 80, 171, 154, 24, 205, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2113, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10355241289150692539" + } + }, + "cborHex": "1b8fb535168b48fcbb", + "cborBytes": [27, 143, 181, 53, 22, 139, 72, 252, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2114, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10225519025902174988" + } + }, + "cborHex": "1b8de857607ee5c30c", + "cborBytes": [27, 141, 232, 87, 96, 126, 229, 195, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2115, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4830921110827520909" + } + }, + "cborHex": "1b430ae127accf538d", + "cborBytes": [27, 67, 10, 225, 39, 172, 207, 83, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2116, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6337712862403110919" + } + }, + "cborHex": "1b57f414450bf62807", + "cborBytes": [27, 87, 244, 20, 69, 11, 246, 40, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2117, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18276695509632046597" + } + }, + "cborHex": "1bfda3ddbb5f985605", + "cborBytes": [27, 253, 163, 221, 187, 95, 152, 86, 5], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2118, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14303873813720803750" + } + }, + "cborHex": "1bc6819172cad729a6", + "cborBytes": [27, 198, 129, 145, 114, 202, 215, 41, 166], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2119, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15687368792161109416" + } + }, + "cborHex": "1bd9b4bacd1d4fc5a8", + "cborBytes": [27, 217, 180, 186, 205, 29, 79, 197, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2120, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14754355838369609226" + } + }, + "cborHex": "1bccc200768bbb360a", + "cborBytes": [27, 204, 194, 0, 118, 139, 187, 54, 10], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2121, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13067714403731192056" + } + }, + "cborHex": "1bb559d903b4a738f8", + "cborBytes": [27, 181, 89, 217, 3, 180, 167, 56, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2122, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10682980584734124196" + } + }, + "cborHex": "1b9441923daf78e8a4", + "cborBytes": [27, 148, 65, 146, 61, 175, 120, 232, 164], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2123, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7138622834367270567" + } + }, + "cborHex": "1b63117ba553f40ea7", + "cborBytes": [27, 99, 17, 123, 165, 83, 244, 14, 167], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2124, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12302284853123441544" + } + }, + "cborHex": "1baaba7ee4c4176388", + "cborBytes": [27, 170, 186, 126, 228, 196, 23, 99, 136], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2125, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17240563376892419628" + } + }, + "cborHex": "1bef42c90bff481e2c", + "cborBytes": [27, 239, 66, 201, 11, 255, 72, 30, 44], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2126, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8878382233580829059" + } + }, + "cborHex": "1b7b36599a0cb97983", + "cborBytes": [27, 123, 54, 89, 154, 12, 185, 121, 131], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2127, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1405555386543389611" + } + }, + "cborHex": "1b1381892d570e3bab", + "cborBytes": [27, 19, 129, 137, 45, 87, 14, 59, 171], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2128, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4064646791123076408" + } + }, + "cborHex": "1b386886b89a528538", + "cborBytes": [27, 56, 104, 134, 184, 154, 82, 133, 56], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2129, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7668559794744732617" + } + }, + "cborHex": "1b6a6c3280e89a2bc9", + "cborBytes": [27, 106, 108, 50, 128, 232, 154, 43, 201], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2130, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5821736611756204652" + } + }, + "cborHex": "1b50caf69a7f9d626c", + "cborBytes": [27, 80, 202, 246, 154, 127, 157, 98, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2131, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1808461339040567114" + } + }, + "cborHex": "1b1918f201978a4f4a", + "cborBytes": [27, 25, 24, 242, 1, 151, 138, 79, 74], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2132, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7439995605538463100" + } + }, + "cborHex": "1b67402c959e965d7c", + "cborBytes": [27, 103, 64, 44, 149, 158, 150, 93, 124], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2133, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13353796292354647917" + } + }, + "cborHex": "1bb95236f9f8ba276d", + "cborBytes": [27, 185, 82, 54, 249, 248, 186, 39, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2134, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12072925703514272400" + } + }, + "cborHex": "1ba78ba5f655a6b290", + "cborBytes": [27, 167, 139, 165, 246, 85, 166, 178, 144], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2135, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10157941190250198672" + } + }, + "cborHex": "1b8cf841b1862bf690", + "cborBytes": [27, 140, 248, 65, 177, 134, 43, 246, 144], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2136, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12688996670627538556" + } + }, + "cborHex": "1bb0185f3e24de667c", + "cborBytes": [27, 176, 24, 95, 62, 36, 222, 102, 124], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2137, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10290264602118205686" + } + }, + "cborHex": "1b8ece5d22ae0830f6", + "cborBytes": [27, 142, 206, 93, 34, 174, 8, 48, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2138, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6173743698354948516" + } + }, + "cborHex": "1b55ad8b2f0ac0c9a4", + "cborBytes": [27, 85, 173, 139, 47, 10, 192, 201, 164], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2139, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12104260962096484198" + } + }, + "cborHex": "1ba7faf936c2638f66", + "cborBytes": [27, 167, 250, 249, 54, 194, 99, 143, 102], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2140, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5712112132402074248" + } + }, + "cborHex": "1b4f457fb869065288", + "cborBytes": [27, 79, 69, 127, 184, 105, 6, 82, 136], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2141, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10994560570174670389" + } + }, + "cborHex": "1b989486963ec70635", + "cborBytes": [27, 152, 148, 134, 150, 62, 199, 6, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2142, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7478804242607682749" + } + }, + "cborHex": "1b67ca0cd59150b4bd", + "cborBytes": [27, 103, 202, 12, 213, 145, 80, 180, 189], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2143, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14066004459972441416" + } + }, + "cborHex": "1bc3347c880db7b548", + "cborBytes": [27, 195, 52, 124, 136, 13, 183, 181, 72], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2144, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14450381138747783471" + } + }, + "cborHex": "1bc88a11159410f92f", + "cborBytes": [27, 200, 138, 17, 21, 148, 16, 249, 47], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2145, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12703062089402142591" + } + }, + "cborHex": "1bb04a57aaa68bcf7f", + "cborBytes": [27, 176, 74, 87, 170, 166, 139, 207, 127], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2146, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8761164412941927141" + } + }, + "cborHex": "1b7995e89d6c3282e5", + "cborBytes": [27, 121, 149, 232, 157, 108, 50, 130, 229], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2147, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "423060602081904136" + } + }, + "cborHex": "1b05df0360498e0608", + "cborBytes": [27, 5, 223, 3, 96, 73, 142, 6, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2148, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7085934793084321874" + } + }, + "cborHex": "1b62564c26c35f4052", + "cborBytes": [27, 98, 86, 76, 38, 195, 95, 64, 82], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2149, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14135740149264444097" + } + }, + "cborHex": "1bc42c3cc57a226ac1", + "cborBytes": [27, 196, 44, 60, 197, 122, 34, 106, 193], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2150, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5884808136296609171" + } + }, + "cborHex": "1b51ab09d22749b593", + "cborBytes": [27, 81, 171, 9, 210, 39, 73, 181, 147], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2151, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2585414704433516171" + } + }, + "cborHex": "1b23e13cf9bed4ce8b", + "cborBytes": [27, 35, 225, 60, 249, 190, 212, 206, 139], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2152, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8295208676160511552" + } + }, + "cborHex": "1b731e805750491e40", + "cborBytes": [27, 115, 30, 128, 87, 80, 73, 30, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2153, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13034434474496174374" + } + }, + "cborHex": "1bb4e39d185c732926", + "cborBytes": [27, 180, 227, 157, 24, 92, 115, 41, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2154, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10091500954064567210" + } + }, + "cborHex": "1b8c0c36a69188bbaa", + "cborBytes": [27, 140, 12, 54, 166, 145, 136, 187, 170], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2155, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14199801807984356226" + } + }, + "cborHex": "1bc50fd482b5db6b82", + "cborBytes": [27, 197, 15, 212, 130, 181, 219, 107, 130], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2156, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7037370788317601004" + } + }, + "cborHex": "1b61a9c37246619cec", + "cborBytes": [27, 97, 169, 195, 114, 70, 97, 156, 236], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2157, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3637880059502990356" + } + }, + "cborHex": "1b327c58a3ca271414", + "cborBytes": [27, 50, 124, 88, 163, 202, 39, 20, 20], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2158, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15818528955982103441" + } + }, + "cborHex": "1bdb86b4467a8b4391", + "cborBytes": [27, 219, 134, 180, 70, 122, 139, 67, 145], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2159, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11280762272708844218" + } + }, + "cborHex": "1b9c8d5184dc705aba", + "cborBytes": [27, 156, 141, 81, 132, 220, 112, 90, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2160, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17324479740259188917" + } + }, + "cborHex": "1bf06cea88e499c0b5", + "cborBytes": [27, 240, 108, 234, 136, 228, 153, 192, 181], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2161, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6020994779591998644" + } + }, + "cborHex": "1b538eded9f80ffcb4", + "cborBytes": [27, 83, 142, 222, 217, 248, 15, 252, 180], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2162, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15046192072815146373" + } + }, + "cborHex": "1bd0cecff8da71f585", + "cborBytes": [27, 208, 206, 207, 248, 218, 113, 245, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2163, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15730336882103237884" + } + }, + "cborHex": "1bda4d620d26fd3cfc", + "cborBytes": [27, 218, 77, 98, 13, 38, 253, 60, 252], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2164, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14695375398202312974" + } + }, + "cborHex": "1bcbf07610b2dd090e", + "cborBytes": [27, 203, 240, 118, 16, 178, 221, 9, 14], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2165, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4786773266471140013" + } + }, + "cborHex": "1b426e08eca8593aad", + "cborBytes": [27, 66, 110, 8, 236, 168, 89, 58, 173], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2166, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13547406471434224456" + } + }, + "cborHex": "1bbc020e6895aa4348", + "cborBytes": [27, 188, 2, 14, 104, 149, 170, 67, 72], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2167, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17616533429438913380" + } + }, + "cborHex": "1bf47a7fd153801b64", + "cborBytes": [27, 244, 122, 127, 209, 83, 128, 27, 100], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2168, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2583665435738168677" + } + }, + "cborHex": "1b23db060663a0dd65", + "cborBytes": [27, 35, 219, 6, 6, 99, 160, 221, 101], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2169, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7967514810800567703" + } + }, + "cborHex": "1b6e924c81b86e7597", + "cborBytes": [27, 110, 146, 76, 129, 184, 110, 117, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2170, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3151564039497390886" + } + }, + "cborHex": "1b2bbc9acbd5231b26", + "cborBytes": [27, 43, 188, 154, 203, 213, 35, 27, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2171, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12232381609821674412" + } + }, + "cborHex": "1ba9c22643a2711bac", + "cborBytes": [27, 169, 194, 38, 67, 162, 113, 27, 172], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2172, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4384361267091727556" + } + }, + "cborHex": "1b3cd86157d3fbe4c4", + "cborBytes": [27, 60, 216, 97, 87, 211, 251, 228, 196], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2173, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9673386945125267012" + } + }, + "cborHex": "1b863ec62cbf17b644", + "cborBytes": [27, 134, 62, 198, 44, 191, 23, 182, 68], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2174, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11673181379748159344" + } + }, + "cborHex": "1ba1ff789e2297df70", + "cborBytes": [27, 161, 255, 120, 158, 34, 151, 223, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2175, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1072496432941994958" + } + }, + "cborHex": "1b0ee245d2cc6193ce", + "cborBytes": [27, 14, 226, 69, 210, 204, 97, 147, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2176, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4195698443644004530" + } + }, + "cborHex": "1b3a3a1d81360f68b2", + "cborBytes": [27, 58, 58, 29, 129, 54, 15, 104, 178], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2177, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8512252264203488446" + } + }, + "cborHex": "1b762198559e5d0cbe", + "cborBytes": [27, 118, 33, 152, 85, 158, 93, 12, 190], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2178, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4609892428574910022" + } + }, + "cborHex": "1b3ff9a0bd51f86646", + "cborBytes": [27, 63, 249, 160, 189, 81, 248, 102, 70], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2179, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9607974054948183917" + } + }, + "cborHex": "1b8556617f6c5b1f6d", + "cborBytes": [27, 133, 86, 97, 127, 108, 91, 31, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2180, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8936730718111084311" + } + }, + "cborHex": "1b7c05a53d42552f17", + "cborBytes": [27, 124, 5, 165, 61, 66, 85, 47, 23], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2181, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9908726154077939091" + } + }, + "cborHex": "1b8982ddf03e702593", + "cborBytes": [27, 137, 130, 221, 240, 62, 112, 37, 147], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2182, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5555070087393623309" + } + }, + "cborHex": "1b4d1792cffd7ebd0d", + "cborBytes": [27, 77, 23, 146, 207, 253, 126, 189, 13], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2183, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10917731891830551031" + } + }, + "cborHex": "1b9783934f9d8371f7", + "cborBytes": [27, 151, 131, 147, 79, 157, 131, 113, 247], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2184, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4550036707526489591" + } + }, + "cborHex": "1b3f24fa47431ab5f7", + "cborBytes": [27, 63, 36, 250, 71, 67, 26, 181, 247], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2185, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12632156210691277905" + } + }, + "cborHex": "1baf4e6f25457f8451", + "cborBytes": [27, 175, 78, 111, 37, 69, 127, 132, 81], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2186, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10539774545700940910" + } + }, + "cborHex": "1b9244cd1b71356c6e", + "cborBytes": [27, 146, 68, 205, 27, 113, 53, 108, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2187, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11142494860159749902" + } + }, + "cborHex": "1b9aa2180a33700f0e", + "cborBytes": [27, 154, 162, 24, 10, 51, 112, 15, 14], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2188, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4577006585828366987" + } + }, + "cborHex": "1b3f84cb3d62ec5a8b", + "cborBytes": [27, 63, 132, 203, 61, 98, 236, 90, 139], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2189, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17335387333503242823" + } + }, + "cborHex": "1bf093aaeed9445247", + "cborBytes": [27, 240, 147, 170, 238, 217, 68, 82, 71], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2190, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10841843346020499437" + } + }, + "cborHex": "1b9675f714a5fbffed", + "cborBytes": [27, 150, 117, 247, 20, 165, 251, 255, 237], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2191, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7500574122873301319" + } + }, + "cborHex": "1b6817646ccd59a947", + "cborBytes": [27, 104, 23, 100, 108, 205, 89, 169, 71], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2192, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11355423806443689571" + } + }, + "cborHex": "1b9d9691c9d1171663", + "cborBytes": [27, 157, 150, 145, 201, 209, 23, 22, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2193, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12078404372473899049" + } + }, + "cborHex": "1ba79f1cc85ad4e829", + "cborBytes": [27, 167, 159, 28, 200, 90, 212, 232, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2194, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14692543891881863058" + } + }, + "cborHex": "1bcbe666d342742792", + "cborBytes": [27, 203, 230, 102, 211, 66, 116, 39, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2195, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7921284067616244297" + } + }, + "cborHex": "1b6dee0de4073a4249", + "cborBytes": [27, 109, 238, 13, 228, 7, 58, 66, 73], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2196, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6186034659112676028" + } + }, + "cborHex": "1b55d935bf58aa6abc", + "cborBytes": [27, 85, 217, 53, 191, 88, 170, 106, 188], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2197, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18078739642595499773" + } + }, + "cborHex": "1bfae495eb6fad5efd", + "cborBytes": [27, 250, 228, 149, 235, 111, 173, 94, 253], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2198, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5097540214725538809" + } + }, + "cborHex": "1b46be19d13efbf3f9", + "cborBytes": [27, 70, 190, 25, 209, 62, 251, 243, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2199, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16308729423975838874" + } + }, + "cborHex": "1be2543f00f60a749a", + "cborBytes": [27, 226, 84, 63, 0, 246, 10, 116, 154], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2200, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13578236605026383072" + } + }, + "cborHex": "1bbc6f96406ecdb4e0", + "cborBytes": [27, 188, 111, 150, 64, 110, 205, 180, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2201, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13857005013243672765" + } + }, + "cborHex": "1bc04df8a4593238bd", + "cborBytes": [27, 192, 77, 248, 164, 89, 50, 56, 189], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2202, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5700034930198946634" + } + }, + "cborHex": "1b4f1a9791a5d3a34a", + "cborBytes": [27, 79, 26, 151, 145, 165, 211, 163, 74], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2203, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14400746314049855675" + } + }, + "cborHex": "1bc7d9ba79657520bb", + "cborBytes": [27, 199, 217, 186, 121, 101, 117, 32, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2204, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7621138960176447196" + } + }, + "cborHex": "1b69c3b9817934fedc", + "cborBytes": [27, 105, 195, 185, 129, 121, 52, 254, 220], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2205, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12578078452778194998" + } + }, + "cborHex": "1bae8e4fb616d6d836", + "cborBytes": [27, 174, 142, 79, 182, 22, 214, 216, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2206, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5424791155643718661" + } + }, + "cborHex": "1b4b48bad074d31c05", + "cborBytes": [27, 75, 72, 186, 208, 116, 211, 28, 5], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2207, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9523680524094391244" + } + }, + "cborHex": "1b842ae8fa60f3c3cc", + "cborBytes": [27, 132, 42, 232, 250, 96, 243, 195, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2208, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3833653928230433913" + } + }, + "cborHex": "1b3533dfefa7f4b479", + "cborBytes": [27, 53, 51, 223, 239, 167, 244, 180, 121], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2209, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1489208818229849529" + } + }, + "cborHex": "1b14aabb87aef82db9", + "cborBytes": [27, 20, 170, 187, 135, 174, 248, 45, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2210, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8529710049719563040" + } + }, + "cborHex": "1b765f9e190e9d3320", + "cborBytes": [27, 118, 95, 158, 25, 14, 157, 51, 32], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2211, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16842186378372639585" + } + }, + "cborHex": "1be9bb774703d2eb61", + "cborBytes": [27, 233, 187, 119, 71, 3, 210, 235, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2212, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12587958573118943543" + } + }, + "cborHex": "1baeb169a0de167137", + "cborBytes": [27, 174, 177, 105, 160, 222, 22, 113, 55], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2213, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9659923864338010218" + } + }, + "cborHex": "1b860ef192fb2f906a", + "cborBytes": [27, 134, 14, 241, 146, 251, 47, 144, 106], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2214, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8417751681302827062" + } + }, + "cborHex": "1b74d1dc8e13809036", + "cborBytes": [27, 116, 209, 220, 142, 19, 128, 144, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2215, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3435581453227399825" + } + }, + "cborHex": "1b2fada321148a1a91", + "cborBytes": [27, 47, 173, 163, 33, 20, 138, 26, 145], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2216, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16922959464530220662" + } + }, + "cborHex": "1beada6df8a7a89676", + "cborBytes": [27, 234, 218, 109, 248, 167, 168, 150, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2217, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12866921625581613514" + } + }, + "cborHex": "1bb2907d0bed9571ca", + "cborBytes": [27, 178, 144, 125, 11, 237, 149, 113, 202], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2218, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9508308489407870634" + } + }, + "cborHex": "1b83f44c31a5fcb6aa", + "cborBytes": [27, 131, 244, 76, 49, 165, 252, 182, 170], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2219, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16318938205794268301" + } + }, + "cborHex": "1be27883d633eaf48d", + "cborBytes": [27, 226, 120, 131, 214, 51, 234, 244, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2220, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13431955814844452276" + } + }, + "cborHex": "1bba67e4a5e68bcdb4", + "cborBytes": [27, 186, 103, 228, 165, 230, 139, 205, 180], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2221, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8067890864521032512" + } + }, + "cborHex": "1b6ff6e7feea653340", + "cborBytes": [27, 111, 246, 231, 254, 234, 101, 51, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2222, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2586155569341543643" + } + }, + "cborHex": "1b23e3dec9cc8034db", + "cborBytes": [27, 35, 227, 222, 201, 204, 128, 52, 219], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2223, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2261877543690090494" + } + }, + "cborHex": "1b1f63cda45d14b7fe", + "cborBytes": [27, 31, 99, 205, 164, 93, 20, 183, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2224, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12703512707178236150" + } + }, + "cborHex": "1bb04bf180470508f6", + "cborBytes": [27, 176, 75, 241, 128, 71, 5, 8, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2225, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3260976511223819228" + } + }, + "cborHex": "1b2d4150dc0c636bdc", + "cborBytes": [27, 45, 65, 80, 220, 12, 99, 107, 220], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2226, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4645464683566050855" + } + }, + "cborHex": "1b407801845893ae27", + "cborBytes": [27, 64, 120, 1, 132, 88, 147, 174, 39], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2227, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3014115495745186961" + } + }, + "cborHex": "1b29d44a12ebe46c91", + "cborBytes": [27, 41, 212, 74, 18, 235, 228, 108, 145], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2228, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16485547184571286345" + } + }, + "cborHex": "1be4c86dd1f8500349", + "cborBytes": [27, 228, 200, 109, 209, 248, 80, 3, 73], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2229, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11981612100080065456" + } + }, + "cborHex": "1ba6473cb945cb5bb0", + "cborBytes": [27, 166, 71, 60, 185, 69, 203, 91, 176], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2230, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4002593559203485075" + } + }, + "cborHex": "1b378c11a2ac971593", + "cborBytes": [27, 55, 140, 17, 162, 172, 151, 21, 147], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2231, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11771081747611690996" + } + }, + "cborHex": "1ba35b487bcc7aa7f4", + "cborBytes": [27, 163, 91, 72, 123, 204, 122, 167, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2232, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "87398557276027704" + } + }, + "cborHex": "1b013680865851bb38", + "cborBytes": [27, 1, 54, 128, 134, 88, 81, 187, 56], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2233, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5558337926035311212" + } + }, + "cborHex": "1b4d232ee4f6ea8a6c", + "cborBytes": [27, 77, 35, 46, 228, 246, 234, 138, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2234, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13282944874923050210" + } + }, + "cborHex": "1bb8567ffcd8e244e2", + "cborBytes": [27, 184, 86, 127, 252, 216, 226, 68, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2235, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14216625892558579210" + } + }, + "cborHex": "1bc54b99ed2693260a", + "cborBytes": [27, 197, 75, 153, 237, 38, 147, 38, 10], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2236, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17292893110159473836" + } + }, + "cborHex": "1beffcb2a979dafcac", + "cborBytes": [27, 239, 252, 178, 169, 121, 218, 252, 172], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2237, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11086282433717806574" + } + }, + "cborHex": "1b99da6322c56725ee", + "cborBytes": [27, 153, 218, 99, 34, 197, 103, 37, 238], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2238, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3190205489152036086" + } + }, + "cborHex": "1b2c45e2fd6d688cf6", + "cborBytes": [27, 44, 69, 226, 253, 109, 104, 140, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2239, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11292390081982016987" + } + }, + "cborHex": "1b9cb6a0f32daeaddb", + "cborBytes": [27, 156, 182, 160, 243, 45, 174, 173, 219], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2240, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9890795091725047789" + } + }, + "cborHex": "1b894329bb7472d7ed", + "cborBytes": [27, 137, 67, 41, 187, 116, 114, 215, 237], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2241, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8660124567020226219" + } + }, + "cborHex": "1b782ef1690fdfc6ab", + "cborBytes": [27, 120, 46, 241, 105, 15, 223, 198, 171], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2242, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16870320411663857610" + } + }, + "cborHex": "1bea1f6b08183ef7ca", + "cborBytes": [27, 234, 31, 107, 8, 24, 62, 247, 202], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2243, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17417573465008397754" + } + }, + "cborHex": "1bf1b7a6c8bf185dba", + "cborBytes": [27, 241, 183, 166, 200, 191, 24, 93, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2244, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14535254597638030028" + } + }, + "cborHex": "1bc9b7990ba41402cc", + "cborBytes": [27, 201, 183, 153, 11, 164, 20, 2, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2245, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10193944635681986384" + } + }, + "cborHex": "1b8d782aa2e5d2d750", + "cborBytes": [27, 141, 120, 42, 162, 229, 210, 215, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2246, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12773574959022805233" + } + }, + "cborHex": "1bb144dabf786110f1", + "cborBytes": [27, 177, 68, 218, 191, 120, 97, 16, 241], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2247, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "372414652986606836" + } + }, + "cborHex": "1b052b15275c6ac4f4", + "cborBytes": [27, 5, 43, 21, 39, 92, 106, 196, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2248, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9045515110405411569" + } + }, + "cborHex": "1b7d882011562492f1", + "cborBytes": [27, 125, 136, 32, 17, 86, 36, 146, 241], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2249, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15916138556184188864" + } + }, + "cborHex": "1bdce17bb08541d7c0", + "cborBytes": [27, 220, 225, 123, 176, 133, 65, 215, 192], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2250, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1263750107613224676" + } + }, + "cborHex": "1b1189be06f925dee4", + "cborBytes": [27, 17, 137, 190, 6, 249, 37, 222, 228], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2251, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16184664911690418802" + } + }, + "cborHex": "1be09b7afcb6094a72", + "cborBytes": [27, 224, 155, 122, 252, 182, 9, 74, 114], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2252, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9966961230870355222" + } + }, + "cborHex": "1b8a51c26ea81e1d16", + "cborBytes": [27, 138, 81, 194, 110, 168, 30, 29, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2253, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10915263686510591011" + } + }, + "cborHex": "1b977ace7dc82f3c23", + "cborBytes": [27, 151, 122, 206, 125, 200, 47, 60, 35], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2254, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7818412328269100861" + } + }, + "cborHex": "1b6c809496be03b73d", + "cborBytes": [27, 108, 128, 148, 150, 190, 3, 183, 61], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2255, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8892460857635090112" + } + }, + "cborHex": "1b7b685e092667aec0", + "cborBytes": [27, 123, 104, 94, 9, 38, 103, 174, 192], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2256, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5865016720994685805" + } + }, + "cborHex": "1b5164b9a2309d536d", + "cborBytes": [27, 81, 100, 185, 162, 48, 157, 83, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2257, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1689404977377092575" + } + }, + "cborHex": "1b1771f8e04656a3df", + "cborBytes": [27, 23, 113, 248, 224, 70, 86, 163, 223], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2258, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13110385706945293745" + } + }, + "cborHex": "1bb5f17256b2d52db1", + "cborBytes": [27, 181, 241, 114, 86, 178, 213, 45, 177], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2259, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3987627111181319933" + } + }, + "cborHex": "1b3756e5baf2adfefd", + "cborBytes": [27, 55, 86, 229, 186, 242, 173, 254, 253], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2260, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7753929950885427448" + } + }, + "cborHex": "1b6b9b7e354fc9b8f8", + "cborBytes": [27, 107, 155, 126, 53, 79, 201, 184, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2261, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8733968052231776212" + } + }, + "cborHex": "1b793549ab40e2a7d4", + "cborBytes": [27, 121, 53, 73, 171, 64, 226, 167, 212], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2262, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15344366389816381244" + } + }, + "cborHex": "1bd4f223ef0072cf3c", + "cborBytes": [27, 212, 242, 35, 239, 0, 114, 207, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2263, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6286272159589900110" + } + }, + "cborHex": "1b573d533919c89f4e", + "cborBytes": [27, 87, 61, 83, 57, 25, 200, 159, 78], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2264, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11832299153159568319" + } + }, + "cborHex": "1ba434c563bc3b3bbf", + "cborBytes": [27, 164, 52, 197, 99, 188, 59, 59, 191], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2265, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2118571571897256206" + } + }, + "cborHex": "1b1d66ad9eb62d490e", + "cborBytes": [27, 29, 102, 173, 158, 182, 45, 73, 14], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2266, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14003052044173440482" + } + }, + "cborHex": "1bc254d5a49043f5e2", + "cborBytes": [27, 194, 84, 213, 164, 144, 67, 245, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2267, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13238346613505224013" + } + }, + "cborHex": "1bb7b80e1aef796d4d", + "cborBytes": [27, 183, 184, 14, 26, 239, 121, 109, 77], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2268, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15625077789609718957" + } + }, + "cborHex": "1bd8d76d76e58874ad", + "cborBytes": [27, 216, 215, 109, 118, 229, 136, 116, 173], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2269, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3319666069063282966" + } + }, + "cborHex": "1b2e11d2b3936f3116", + "cborBytes": [27, 46, 17, 210, 179, 147, 111, 49, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2270, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7429608391417364083" + } + }, + "cborHex": "1b671b4577deb17e73", + "cborBytes": [27, 103, 27, 69, 119, 222, 177, 126, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2271, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1248503455425154558" + } + }, + "cborHex": "1b115393472176cdfe", + "cborBytes": [27, 17, 83, 147, 71, 33, 118, 205, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2272, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16755593499315480099" + } + }, + "cborHex": "1be887d3833f8b2623", + "cborBytes": [27, 232, 135, 211, 131, 63, 139, 38, 35], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2273, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16699134947001710745" + } + }, + "cborHex": "1be7bf3ec22c593899", + "cborBytes": [27, 231, 191, 62, 194, 44, 89, 56, 153], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2274, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16164115726321434744" + } + }, + "cborHex": "1be052799ca7b1c078", + "cborBytes": [27, 224, 82, 121, 156, 167, 177, 192, 120], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2275, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15207177438109968041" + } + }, + "cborHex": "1bd30abf4f12e126a9", + "cborBytes": [27, 211, 10, 191, 79, 18, 225, 38, 169], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2276, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14566409223654491260" + } + }, + "cborHex": "1bca26480344e6447c", + "cborBytes": [27, 202, 38, 72, 3, 68, 230, 68, 124], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2277, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12295112698691064707" + } + }, + "cborHex": "1baaa103db6ee01383", + "cborBytes": [27, 170, 161, 3, 219, 110, 224, 19, 131], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2278, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13058923027014891860" + } + }, + "cborHex": "1bb53a9d4dce643954", + "cborBytes": [27, 181, 58, 157, 77, 206, 100, 57, 84], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2279, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15699153453839247169" + } + }, + "cborHex": "1bd9de98e37a6f6741", + "cborBytes": [27, 217, 222, 152, 227, 122, 111, 103, 65], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2280, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1000453917406994737" + } + }, + "cborHex": "1b0de2538989312131", + "cborBytes": [27, 13, 226, 83, 137, 137, 49, 33, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2281, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8851450070922420616" + } + }, + "cborHex": "1b7ad6aaf1486fe188", + "cborBytes": [27, 122, 214, 170, 241, 72, 111, 225, 136], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2282, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14524150787894392776" + } + }, + "cborHex": "1bc990263078a7b7c8", + "cborBytes": [27, 201, 144, 38, 48, 120, 167, 183, 200], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2283, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6046212143716723001" + } + }, + "cborHex": "1b53e875e916e36939", + "cborBytes": [27, 83, 232, 117, 233, 22, 227, 105, 57], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2284, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13625725536885757582" + } + }, + "cborHex": "1bbd184d2f010b568e", + "cborBytes": [27, 189, 24, 77, 47, 1, 11, 86, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2285, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2379236458466529681" + } + }, + "cborHex": "1b2104bef4078e5191", + "cborBytes": [27, 33, 4, 190, 244, 7, 142, 81, 145], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2286, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8900507480526720843" + } + }, + "cborHex": "1b7b84f46589808f4b", + "cborBytes": [27, 123, 132, 244, 101, 137, 128, 143, 75], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2287, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7330403270794682491" + } + }, + "cborHex": "1b65bad2efc814207b", + "cborBytes": [27, 101, 186, 210, 239, 200, 20, 32, 123], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2288, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8460924652541198934" + } + }, + "cborHex": "1b756b3e24c2104256", + "cborBytes": [27, 117, 107, 62, 36, 194, 16, 66, 86], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2289, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7634910091532679814" + } + }, + "cborHex": "1b69f4a646d9d9ba86", + "cborBytes": [27, 105, 244, 166, 70, 217, 217, 186, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2290, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18251384263498008199" + } + }, + "cborHex": "1bfd49f149a4f40687", + "cborBytes": [27, 253, 73, 241, 73, 164, 244, 6, 135], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2291, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5530469224485356682" + } + }, + "cborHex": "1b4cc02c753eae048a", + "cborBytes": [27, 76, 192, 44, 117, 62, 174, 4, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2292, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "952720647844698464" + } + }, + "cborHex": "1b0d38be61a8f69960", + "cborBytes": [27, 13, 56, 190, 97, 168, 246, 153, 96], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2293, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6745556188911328001" + } + }, + "cborHex": "1b5d9d079d447f5b01", + "cborBytes": [27, 93, 157, 7, 157, 68, 127, 91, 1], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2294, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7830112314967274171" + } + }, + "cborHex": "1b6caa25aa2d0932bb", + "cborBytes": [27, 108, 170, 37, 170, 45, 9, 50, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2295, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7441575837241761973" + } + }, + "cborHex": "1b6745c9cbfbece0b5", + "cborBytes": [27, 103, 69, 201, 203, 251, 236, 224, 181], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2296, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "560506186152267287" + } + }, + "cborHex": "1b07c751681803ce17", + "cborBytes": [27, 7, 199, 81, 104, 24, 3, 206, 23], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2297, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17479203251687036646" + } + }, + "cborHex": "1bf2929abfa5a896e6", + "cborBytes": [27, 242, 146, 154, 191, 165, 168, 150, 230], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2298, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2874050159014145601" + } + }, + "cborHex": "1b27e2ad646ab16e41", + "cborBytes": [27, 39, 226, 173, 100, 106, 177, 110, 65], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2299, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9282818289817234867" + } + }, + "cborHex": "1b80d3320d570e2db3", + "cborBytes": [27, 128, 211, 50, 13, 87, 14, 45, 179], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2300, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12017686110775383424" + } + }, + "cborHex": "1ba6c765d866e99580", + "cborBytes": [27, 166, 199, 101, 216, 102, 233, 149, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2301, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9374406329761086911" + } + }, + "cborHex": "1b821894e3a1953dbf", + "cborBytes": [27, 130, 24, 148, 227, 161, 149, 61, 191], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2302, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17907342155496699240" + } + }, + "cborHex": "1bf883a8d031c23568", + "cborBytes": [27, 248, 131, 168, 208, 49, 194, 53, 104], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2303, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17078550127719156546" + } + }, + "cborHex": "1bed0332dae9670b42", + "cborBytes": [27, 237, 3, 50, 218, 233, 103, 11, 66], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2304, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "843610139667851301" + } + }, + "cborHex": "1b0bb51af3cfd1e825", + "cborBytes": [27, 11, 181, 26, 243, 207, 209, 232, 37], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2305, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7266468951898593530" + } + }, + "cborHex": "1b64d7af03295218fa", + "cborBytes": [27, 100, 215, 175, 3, 41, 82, 24, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2306, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6093531052753850801" + } + }, + "cborHex": "1b54909235233491b1", + "cborBytes": [27, 84, 144, 146, 53, 35, 52, 145, 177], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2307, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18412912363836576156" + } + }, + "cborHex": "1bff87ce3d36e0919c", + "cborBytes": [27, 255, 135, 206, 61, 54, 224, 145, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2308, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14422806515555187396" + } + }, + "cborHex": "1bc8281a1c4fdb3ac4", + "cborBytes": [27, 200, 40, 26, 28, 79, 219, 58, 196], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2309, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8534235140470196870" + } + }, + "cborHex": "1b766fb1a4d961ca86", + "cborBytes": [27, 118, 111, 177, 164, 217, 97, 202, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2310, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10970399999108048166" + } + }, + "cborHex": "1b983eb0aceec7e526", + "cborBytes": [27, 152, 62, 176, 172, 238, 199, 229, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2311, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6472675298835314564" + } + }, + "cborHex": "1b59d38fe3fd863784", + "cborBytes": [27, 89, 211, 143, 227, 253, 134, 55, 132], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2312, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7091510266067070006" + } + }, + "cborHex": "1b626a1b03b9f6ac36", + "cborBytes": [27, 98, 106, 27, 3, 185, 246, 172, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2313, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2934879740255365798" + } + }, + "cborHex": "1b28bac992f8696aa6", + "cborBytes": [27, 40, 186, 201, 146, 248, 105, 106, 166], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2314, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9598664124897381553" + } + }, + "cborHex": "1b85354e2a6acb4cb1", + "cborBytes": [27, 133, 53, 78, 42, 106, 203, 76, 177], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2315, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11116551588496727861" + } + }, + "cborHex": "1b9a45ecc58fa6df35", + "cborBytes": [27, 154, 69, 236, 197, 143, 166, 223, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2316, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6914437792329105628" + } + }, + "cborHex": "1b5ff50489b15000dc", + "cborBytes": [27, 95, 245, 4, 137, 177, 80, 0, 220], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2317, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14511323198125831807" + } + }, + "cborHex": "1bc96293907d2cf67f", + "cborBytes": [27, 201, 98, 147, 144, 125, 44, 246, 127], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2318, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15091281708624150764" + } + }, + "cborHex": "1bd16f00c1c7e480ec", + "cborBytes": [27, 209, 111, 0, 193, 199, 228, 128, 236], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2319, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6008429850980964449" + } + }, + "cborHex": "1b53623b1d8d92d861", + "cborBytes": [27, 83, 98, 59, 29, 141, 146, 216, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2320, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3908110997492466906" + } + }, + "cborHex": "1b363c663f045604da", + "cborBytes": [27, 54, 60, 102, 63, 4, 86, 4, 218], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2321, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17888869741610953263" + } + }, + "cborHex": "1bf84208402df46a2f", + "cborBytes": [27, 248, 66, 8, 64, 45, 244, 106, 47], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2322, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8016755615359361344" + } + }, + "cborHex": "1b6f413cc1f09ce140", + "cborBytes": [27, 111, 65, 60, 193, 240, 156, 225, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2323, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7172371111018590405" + } + }, + "cborHex": "1b638961864d8970c5", + "cborBytes": [27, 99, 137, 97, 134, 77, 137, 112, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2324, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4739700085782230612" + } + }, + "cborHex": "1b41c6cc1db2f03654", + "cborBytes": [27, 65, 198, 204, 29, 178, 240, 54, 84], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2325, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7006556355065355781" + } + }, + "cborHex": "1b613c49e1f26d1e05", + "cborBytes": [27, 97, 60, 73, 225, 242, 109, 30, 5], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2326, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4010792520197641424" + } + }, + "cborHex": "1b37a9328c0a2c94d0", + "cborBytes": [27, 55, 169, 50, 140, 10, 44, 148, 208], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2327, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3865218457968201026" + } + }, + "cborHex": "1b35a403b56e7a4d42", + "cborBytes": [27, 53, 164, 3, 181, 110, 122, 77, 66], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2328, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4059123527755481394" + } + }, + "cborHex": "1b3854e757a34bc132", + "cborBytes": [27, 56, 84, 231, 87, 163, 75, 193, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2329, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "656135445912893195" + } + }, + "cborHex": "1b091b0fb6322e370b", + "cborBytes": [27, 9, 27, 15, 182, 50, 46, 55, 11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2330, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4895582294190589163" + } + }, + "cborHex": "1b43f09a289dec04eb", + "cborBytes": [27, 67, 240, 154, 40, 157, 236, 4, 235], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2331, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3966445956300518588" + } + }, + "cborHex": "1b370ba5950613b4bc", + "cborBytes": [27, 55, 11, 165, 149, 6, 19, 180, 188], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2332, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3127566516264049057" + } + }, + "cborHex": "1b2b67592d0d5319a1", + "cborBytes": [27, 43, 103, 89, 45, 13, 83, 25, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2333, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1743313936001806692" + } + }, + "cborHex": "1b18317ec9cf603164", + "cborBytes": [27, 24, 49, 126, 201, 207, 96, 49, 100], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2334, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12591470436962592084" + } + }, + "cborHex": "1baebde3a662fce554", + "cborBytes": [27, 174, 189, 227, 166, 98, 252, 229, 84], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2335, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10061198297462558379" + } + }, + "cborHex": "1b8ba08e8b87054eab", + "cborBytes": [27, 139, 160, 142, 139, 135, 5, 78, 171], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2336, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6017159520497602824" + } + }, + "cborHex": "1b53813eb4201e9108", + "cborBytes": [27, 83, 129, 62, 180, 32, 30, 145, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2337, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1944596762966594341" + } + }, + "cborHex": "1b1afc9873f7ff9325", + "cborBytes": [27, 26, 252, 152, 115, 247, 255, 147, 37], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2338, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16121672725863106677" + } + }, + "cborHex": "1bdfbbafed8a2c8875", + "cborBytes": [27, 223, 187, 175, 237, 138, 44, 136, 117], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2339, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8351883497524250480" + } + }, + "cborHex": "1b73e7d9ca73614770", + "cborBytes": [27, 115, 231, 217, 202, 115, 97, 71, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2340, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11177005342838582096" + } + }, + "cborHex": "1b9b1cb32418896b50", + "cborBytes": [27, 155, 28, 179, 36, 24, 137, 107, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2341, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10861125811681046961" + } + }, + "cborHex": "1b96ba78618a1331b1", + "cborBytes": [27, 150, 186, 120, 97, 138, 19, 49, 177], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2342, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8507416865200347690" + } + }, + "cborHex": "1b76106a908e6f1a2a", + "cborBytes": [27, 118, 16, 106, 144, 142, 111, 26, 42], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2343, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17983816644114538848" + } + }, + "cborHex": "1bf99359f49a346160", + "cborBytes": [27, 249, 147, 89, 244, 154, 52, 97, 96], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2344, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6525392389705528419" + } + }, + "cborHex": "1b5a8ed9ce306f7463", + "cborBytes": [27, 90, 142, 217, 206, 48, 111, 116, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2345, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14296379753092943064" + } + }, + "cborHex": "1bc666f1a3d5310cd8", + "cborBytes": [27, 198, 102, 241, 163, 213, 49, 12, 216], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2346, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9010052416326607420" + } + }, + "cborHex": "1b7d0a22ef72cc223c", + "cborBytes": [27, 125, 10, 34, 239, 114, 204, 34, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2347, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3188163753864541893" + } + }, + "cborHex": "1b2c3ea20ae2df36c5", + "cborBytes": [27, 44, 62, 162, 10, 226, 223, 54, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2348, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13400842643628991510" + } + }, + "cborHex": "1bb9f95b623869a416", + "cborBytes": [27, 185, 249, 91, 98, 56, 105, 164, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2349, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17289075809923814165" + } + }, + "cborHex": "1befef22d9014ed315", + "cborBytes": [27, 239, 239, 34, 217, 1, 78, 211, 21], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2350, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15015590125468277254" + } + }, + "cborHex": "1bd06217a9c1665a06", + "cborBytes": [27, 208, 98, 23, 169, 193, 102, 90, 6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2351, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16396973048975607111" + } + }, + "cborHex": "1be38dc01cf7d84547", + "cborBytes": [27, 227, 141, 192, 28, 247, 216, 69, 71], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2352, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3062265385661715965" + } + }, + "cborHex": "1b2a7f5a24c85755fd", + "cborBytes": [27, 42, 127, 90, 36, 200, 87, 85, 253], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2353, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10372703712612545650" + } + }, + "cborHex": "1b8ff33f11d6a57472", + "cborBytes": [27, 143, 243, 63, 17, 214, 165, 116, 114], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2354, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12831935653932810279" + } + }, + "cborHex": "1bb214317da155c027", + "cborBytes": [27, 178, 20, 49, 125, 161, 85, 192, 39], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2355, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2516282251470021618" + } + }, + "cborHex": "1b22eba160397da3f2", + "cborBytes": [27, 34, 235, 161, 96, 57, 125, 163, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2356, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10731127369717396601" + } + }, + "cborHex": "1b94ec9f7c9f7a3479", + "cborBytes": [27, 148, 236, 159, 124, 159, 122, 52, 121], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2357, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15940219214216094522" + } + }, + "cborHex": "1bdd3708eba134e33a", + "cborBytes": [27, 221, 55, 8, 235, 161, 52, 227, 58], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2358, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15427948941140953781" + } + }, + "cborHex": "1bd61b15d239920ab5", + "cborBytes": [27, 214, 27, 21, 210, 57, 146, 10, 181], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2359, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9778331020123900321" + } + }, + "cborHex": "1b87b39c4146ab09a1", + "cborBytes": [27, 135, 179, 156, 65, 70, 171, 9, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2360, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2122720236970117235" + } + }, + "cborHex": "1b1d756acf12230873", + "cborBytes": [27, 29, 117, 106, 207, 18, 35, 8, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2361, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7208268506806083579" + } + }, + "cborHex": "1b6408ea0411cfdffb", + "cborBytes": [27, 100, 8, 234, 4, 17, 207, 223, 251], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2362, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11686736799329655515" + } + }, + "cborHex": "1ba22fa13333879adb", + "cborBytes": [27, 162, 47, 161, 51, 51, 135, 154, 219], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2363, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11212062647605328878" + } + }, + "cborHex": "1b9b993f92edf0fbee", + "cborBytes": [27, 155, 153, 63, 146, 237, 240, 251, 238], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2364, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4717377544271647881" + } + }, + "cborHex": "1b41777de1fdb75489", + "cborBytes": [27, 65, 119, 125, 225, 253, 183, 84, 137], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2365, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12722636006777680370" + } + }, + "cborHex": "1bb08fe20a6e93f1f2", + "cborBytes": [27, 176, 143, 226, 10, 110, 147, 241, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2366, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4088571597628539003" + } + }, + "cborHex": "1b38bd8634b366807b", + "cborBytes": [27, 56, 189, 134, 52, 179, 102, 128, 123], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2367, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18114376576001951944" + } + }, + "cborHex": "1bfb6331859440c8c8", + "cborBytes": [27, 251, 99, 49, 133, 148, 64, 200, 200], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2368, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4496777924524467231" + } + }, + "cborHex": "1b3e67c3b28919641f", + "cborBytes": [27, 62, 103, 195, 178, 137, 25, 100, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2369, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2775952189682361567" + } + }, + "cborHex": "1b268629cf137c24df", + "cborBytes": [27, 38, 134, 41, 207, 19, 124, 36, 223], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2370, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5789331638117685425" + } + }, + "cborHex": "1b5057d673a0ef58b1", + "cborBytes": [27, 80, 87, 214, 115, 160, 239, 88, 177], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2371, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5239939389603830957" + } + }, + "cborHex": "1b48b8011cc9e9dcad", + "cborBytes": [27, 72, 184, 1, 28, 201, 233, 220, 173], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2372, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14233046309271744503" + } + }, + "cborHex": "1bc585f03557d3aff7", + "cborBytes": [27, 197, 133, 240, 53, 87, 211, 175, 247], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2373, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3812142021107067629" + } + }, + "cborHex": "1b34e772f8796d2aed", + "cborBytes": [27, 52, 231, 114, 248, 121, 109, 42, 237], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2374, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17192764654231180983" + } + }, + "cborHex": "1bee98f85ca25756b7", + "cborBytes": [27, 238, 152, 248, 92, 162, 87, 86, 183], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2375, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4822369762929536222" + } + }, + "cborHex": "1b42ec7fbfd6ffecde", + "cborBytes": [27, 66, 236, 127, 191, 214, 255, 236, 222], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2376, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17477894449594926377" + } + }, + "cborHex": "1bf28df46669e08529", + "cborBytes": [27, 242, 141, 244, 102, 105, 224, 133, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2377, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9405528873666677005" + } + }, + "cborHex": "1b828726ad8f95090d", + "cborBytes": [27, 130, 135, 38, 173, 143, 149, 9, 13], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2378, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4251305302034976994" + } + }, + "cborHex": "1b3affaba5d78790e2", + "cborBytes": [27, 58, 255, 171, 165, 215, 135, 144, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2379, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3641604257068656012" + } + }, + "cborHex": "1b328993c71b20a58c", + "cborBytes": [27, 50, 137, 147, 199, 27, 32, 165, 140], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2380, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12415092917405160864" + } + }, + "cborHex": "1bac4b453afb6715a0", + "cborBytes": [27, 172, 75, 69, 58, 251, 103, 21, 160], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2381, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7049048392419440636" + } + }, + "cborHex": "1b61d3402a5ab2f7fc", + "cborBytes": [27, 97, 211, 64, 42, 90, 178, 247, 252], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2382, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8998212909163634624" + } + }, + "cborHex": "1b7ce012f760085fc0", + "cborBytes": [27, 124, 224, 18, 247, 96, 8, 95, 192], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2383, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18140195988021145633" + } + }, + "cborHex": "1bfbbeec23e5f77021", + "cborBytes": [27, 251, 190, 236, 35, 229, 247, 112, 33], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2384, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9025204496093152809" + } + }, + "cborHex": "1b7d3ff7abeee40629", + "cborBytes": [27, 125, 63, 247, 171, 238, 228, 6, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2385, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14390275695799236658" + } + }, + "cborHex": "1bc7b487809c0cf832", + "cborBytes": [27, 199, 180, 135, 128, 156, 12, 248, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2386, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14086871627228431028" + } + }, + "cborHex": "1bc37e9f1c097ac2b4", + "cborBytes": [27, 195, 126, 159, 28, 9, 122, 194, 180], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2387, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5931787782037650866" + } + }, + "cborHex": "1b5251f18f4f5b3db2", + "cborBytes": [27, 82, 81, 241, 143, 79, 91, 61, 178], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2388, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17155339719066546464" + } + }, + "cborHex": "1bee140294e41c7120", + "cborBytes": [27, 238, 20, 2, 148, 228, 28, 113, 32], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2389, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14073775503204594788" + } + }, + "cborHex": "1bc35018410d1ab464", + "cborBytes": [27, 195, 80, 24, 65, 13, 26, 180, 100], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2390, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2429763360224914687" + } + }, + "cborHex": "1b21b840e716772cff", + "cborBytes": [27, 33, 184, 64, 231, 22, 119, 44, 255], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2391, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15185243373023933553" + } + }, + "cborHex": "1bd2bcd26494f23471", + "cborBytes": [27, 210, 188, 210, 100, 148, 242, 52, 113], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2392, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11006270377147453006" + } + }, + "cborHex": "1b98be209823c74e4e", + "cborBytes": [27, 152, 190, 32, 152, 35, 199, 78, 78], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2393, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7970347897369732817" + } + }, + "cborHex": "1b6e9c5d2f170126d1", + "cborBytes": [27, 110, 156, 93, 47, 23, 1, 38, 209], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2394, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1386783841453937872" + } + }, + "cborHex": "1b133ed88e6a1d14d0", + "cborBytes": [27, 19, 62, 216, 142, 106, 29, 20, 208], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2395, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6893810788019079441" + } + }, + "cborHex": "1b5fabbc6300a20911", + "cborBytes": [27, 95, 171, 188, 99, 0, 162, 9, 17], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2396, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1999444664729710505" + } + }, + "cborHex": "1b1bbf74543d43afa9", + "cborBytes": [27, 27, 191, 116, 84, 61, 67, 175, 169], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2397, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4663534102326200922" + } + }, + "cborHex": "1b40b8338ebf12ca5a", + "cborBytes": [27, 64, 184, 51, 142, 191, 18, 202, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2398, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12997709957205503060" + } + }, + "cborHex": "1bb46124575ccaac54", + "cborBytes": [27, 180, 97, 36, 87, 92, 202, 172, 84], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2399, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15552662720597478497" + } + }, + "cborHex": "1bd7d62857c4ac4c61", + "cborBytes": [27, 215, 214, 40, 87, 196, 172, 76, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2400, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4137700234215169894" + } + }, + "cborHex": "1b396c1070c7721f66", + "cborBytes": [27, 57, 108, 16, 112, 199, 114, 31, 102], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2401, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15281197016785587473" + } + }, + "cborHex": "1bd411b7b938438d11", + "cborBytes": [27, 212, 17, 183, 185, 56, 67, 141, 17], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2402, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3811513772660488416" + } + }, + "cborHex": "1b34e53794fbeff8e0", + "cborBytes": [27, 52, 229, 55, 148, 251, 239, 248, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2403, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6537403773280644652" + } + }, + "cborHex": "1b5ab986185bb0ee2c", + "cborBytes": [27, 90, 185, 134, 24, 91, 176, 238, 44], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2404, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7093227486304103750" + } + }, + "cborHex": "1b627034d138316d46", + "cborBytes": [27, 98, 112, 52, 209, 56, 49, 109, 70], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2405, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17650753512054939130" + } + }, + "cborHex": "1bf4f412cd30035dfa", + "cborBytes": [27, 244, 244, 18, 205, 48, 3, 93, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2406, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18103935321568299369" + } + }, + "cborHex": "1bfb3e194196b9c969", + "cborBytes": [27, 251, 62, 25, 65, 150, 185, 201, 105], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2407, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8758182849129673571" + } + }, + "cborHex": "1b798b50e6004af363", + "cborBytes": [27, 121, 139, 80, 230, 0, 74, 243, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2408, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18258003321245544554" + } + }, + "cborHex": "1bfd6175491ebe306a", + "cborBytes": [27, 253, 97, 117, 73, 30, 190, 48, 106], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2409, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "736232654597175690" + } + }, + "cborHex": "1b0a379fb2d94eb98a", + "cborBytes": [27, 10, 55, 159, 178, 217, 78, 185, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2410, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16212292940278359152" + } + }, + "cborHex": "1be0fda28863dd6470", + "cborBytes": [27, 224, 253, 162, 136, 99, 221, 100, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2411, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10421919375295811567" + } + }, + "cborHex": "1b90a2187442448fef", + "cborBytes": [27, 144, 162, 24, 116, 66, 68, 143, 239], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2412, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10691432531324883208" + } + }, + "cborHex": "1b945f993dd9acd108", + "cborBytes": [27, 148, 95, 153, 61, 217, 172, 209, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2413, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12643092405614253589" + } + }, + "cborHex": "1baf75498e93139615", + "cborBytes": [27, 175, 117, 73, 142, 147, 19, 150, 21], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2414, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14660974039684695749" + } + }, + "cborHex": "1bcb763e3640a146c5", + "cborBytes": [27, 203, 118, 62, 54, 64, 161, 70, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2415, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4581472550652496304" + } + }, + "cborHex": "1b3f94a902d9d849b0", + "cborBytes": [27, 63, 148, 169, 2, 217, 216, 73, 176], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2416, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1424705449023397512" + } + }, + "cborHex": "1b13c5920eb69a5e88", + "cborBytes": [27, 19, 197, 146, 14, 182, 154, 94, 136], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2417, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2997778848120280482" + } + }, + "cborHex": "1b299a3ffabd6395a2", + "cborBytes": [27, 41, 154, 63, 250, 189, 99, 149, 162], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2418, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16334415463405081929" + } + }, + "cborHex": "1be2af80520de85549", + "cborBytes": [27, 226, 175, 128, 82, 13, 232, 85, 73], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2419, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16985726805700685346" + } + }, + "cborHex": "1bebb96c89199eae22", + "cborBytes": [27, 235, 185, 108, 137, 25, 158, 174, 34], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2420, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9369255701736245938" + } + }, + "cborHex": "1b8206486b97cacab2", + "cborBytes": [27, 130, 6, 72, 107, 151, 202, 202, 178], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2421, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "686845512661165539" + } + }, + "cborHex": "1b09882a5acdbd65e3", + "cborBytes": [27, 9, 136, 42, 90, 205, 189, 101, 227], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2422, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10473484182560864509" + } + }, + "cborHex": "1b91594a5f863678fd", + "cborBytes": [27, 145, 89, 74, 95, 134, 54, 120, 253], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2423, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4371350905179503297" + } + }, + "cborHex": "1b3caa287ce3ce7ac1", + "cborBytes": [27, 60, 170, 40, 124, 227, 206, 122, 193], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2424, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18078762774477613944" + } + }, + "cborHex": "1bfae4aaf53f4b2b78", + "cborBytes": [27, 250, 228, 170, 245, 63, 75, 43, 120], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2425, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18418882854401931416" + } + }, + "cborHex": "1bff9d045e6028f898", + "cborBytes": [27, 255, 157, 4, 94, 96, 40, 248, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2426, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1623854567039737285" + } + }, + "cborHex": "1b168917200b4c9dc5", + "cborBytes": [27, 22, 137, 23, 32, 11, 76, 157, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2427, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12842827389408397364" + } + }, + "cborHex": "1bb23ae37769584834", + "cborBytes": [27, 178, 58, 227, 119, 105, 88, 72, 52], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2428, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17517375738809603131" + } + }, + "cborHex": "1bf31a386c64cad43b", + "cborBytes": [27, 243, 26, 56, 108, 100, 202, 212, 59], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2429, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7212327374755973517" + } + }, + "cborHex": "1b64175588e827c98d", + "cborBytes": [27, 100, 23, 85, 136, 232, 39, 201, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2430, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4965336549902396699" + } + }, + "cborHex": "1b44e86b48df322d1b", + "cborBytes": [27, 68, 232, 107, 72, 223, 50, 45, 27], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2431, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17330454031560332861" + } + }, + "cborHex": "1bf082241efb63d63d", + "cborBytes": [27, 240, 130, 36, 30, 251, 99, 214, 61], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2432, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15727793516752422799" + } + }, + "cborHex": "1bda4458dfc2b8478f", + "cborBytes": [27, 218, 68, 88, 223, 194, 184, 71, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2433, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16972065812201875674" + } + }, + "cborHex": "1beb88e3ef30d828da", + "cborBytes": [27, 235, 136, 227, 239, 48, 216, 40, 218], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2434, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6381825621120356902" + } + }, + "cborHex": "1b5890cc970d5d9226", + "cborBytes": [27, 88, 144, 204, 151, 13, 93, 146, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2435, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "685996604482509312" + } + }, + "cborHex": "1b09852646f74dda00", + "cborBytes": [27, 9, 133, 38, 70, 247, 77, 218, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2436, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15709498338013325538" + } + }, + "cborHex": "1bda03598184dfa8e2", + "cborBytes": [27, 218, 3, 89, 129, 132, 223, 168, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2437, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5791478147127630882" + } + }, + "cborHex": "1b505f76b0b3fadc22", + "cborBytes": [27, 80, 95, 118, 176, 179, 250, 220, 34], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2438, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6209047125795886797" + } + }, + "cborHex": "1b562af776c6b956cd", + "cborBytes": [27, 86, 42, 247, 118, 198, 185, 86, 205], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2439, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7398048462764462150" + } + }, + "cborHex": "1b66ab25e15e335046", + "cborBytes": [27, 102, 171, 37, 225, 94, 51, 80, 70], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2440, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13918443862707017953" + } + }, + "cborHex": "1bc1283ef336de18e1", + "cborBytes": [27, 193, 40, 62, 243, 54, 222, 24, 225], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2441, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3402105485566419074" + } + }, + "cborHex": "1b2f36b4e9fb982082", + "cborBytes": [27, 47, 54, 180, 233, 251, 152, 32, 130], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2442, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7677318886539683147" + } + }, + "cborHex": "1b6a8b50d9e398654b", + "cborBytes": [27, 106, 139, 80, 217, 227, 152, 101, 75], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2443, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5858572432438093516" + } + }, + "cborHex": "1b514dd496565e66cc", + "cborBytes": [27, 81, 77, 212, 150, 86, 94, 102, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2444, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5501397207350194448" + } + }, + "cborHex": "1b4c58e39cc86f3110", + "cborBytes": [27, 76, 88, 227, 156, 200, 111, 49, 16], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2445, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3115776437640844948" + } + }, + "cborHex": "1b2b3d7629751d5694", + "cborBytes": [27, 43, 61, 118, 41, 117, 29, 86, 148], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2446, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12703522135884287790" + } + }, + "cborHex": "1bb04bfa1391b1cf2e", + "cborBytes": [27, 176, 75, 250, 19, 145, 177, 207, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2447, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7327886727245755761" + } + }, + "cborHex": "1b65b1e22753c87571", + "cborBytes": [27, 101, 177, 226, 39, 83, 200, 117, 113], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2448, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10422601170012061262" + } + }, + "cborHex": "1b90a4848af623be4e", + "cborBytes": [27, 144, 164, 132, 138, 246, 35, 190, 78], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2449, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16827103706829187722" + } + }, + "cborHex": "1be985e1aae4366a8a", + "cborBytes": [27, 233, 133, 225, 170, 228, 54, 106, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2450, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13624592525111707924" + } + }, + "cborHex": "1bbd1446b724b9c914", + "cborBytes": [27, 189, 20, 70, 183, 36, 185, 201, 20], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2451, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "629769893173192200" + } + }, + "cborHex": "1b08bd646194d2e608", + "cborBytes": [27, 8, 189, 100, 97, 148, 210, 230, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2452, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2209361257164411312" + } + }, + "cborHex": "1b1ea93a5b91cb91b0", + "cborBytes": [27, 30, 169, 58, 91, 145, 203, 145, 176], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2453, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6245683491797387646" + } + }, + "cborHex": "1b56ad200b741ac97e", + "cborBytes": [27, 86, 173, 32, 11, 116, 26, 201, 126], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2454, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10355175109246519004" + } + }, + "cborHex": "1b8fb4f8e5d59b06dc", + "cborBytes": [27, 143, 180, 248, 229, 213, 155, 6, 220], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2455, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12544364322780239664" + } + }, + "cborHex": "1bae1688e380665730", + "cborBytes": [27, 174, 22, 136, 227, 128, 102, 87, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2456, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11572776998365398506" + } + }, + "cborHex": "1ba09ac35d646185ea", + "cborBytes": [27, 160, 154, 195, 93, 100, 97, 133, 234], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2457, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8809004222947779189" + } + }, + "cborHex": "1b7a3fdeab2db7e275", + "cborBytes": [27, 122, 63, 222, 171, 45, 183, 226, 117], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2458, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15415077934946819746" + } + }, + "cborHex": "1bd5ed5bb591779ea2", + "cborBytes": [27, 213, 237, 91, 181, 145, 119, 158, 162], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2459, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10264716186356104959" + } + }, + "cborHex": "1b8e7398fc97f53eff", + "cborBytes": [27, 142, 115, 152, 252, 151, 245, 62, 255], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2460, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17000752658294649898" + } + }, + "cborHex": "1bebeece7807ee342a", + "cborBytes": [27, 235, 238, 206, 120, 7, 238, 52, 42], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2461, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4957020113545079708" + } + }, + "cborHex": "1b44cadf87a4522b9c", + "cborBytes": [27, 68, 202, 223, 135, 164, 82, 43, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2462, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17094425280670238048" + } + }, + "cborHex": "1bed3b9938fdce8560", + "cborBytes": [27, 237, 59, 153, 56, 253, 206, 133, 96], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2463, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17277513463591525900" + } + }, + "cborHex": "1befc60ef47766de0c", + "cborBytes": [27, 239, 198, 14, 244, 119, 102, 222, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2464, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1768977978413299650" + } + }, + "cborHex": "1b188cac1952d037c2", + "cborBytes": [27, 24, 140, 172, 25, 82, 208, 55, 194], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2465, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3046070410023871454" + } + }, + "cborHex": "1b2a45d0e62e4d23de", + "cborBytes": [27, 42, 69, 208, 230, 46, 77, 35, 222], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2466, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11973342441155900572" + } + }, + "cborHex": "1ba629db834334b49c", + "cborBytes": [27, 166, 41, 219, 131, 67, 52, 180, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2467, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16535937273437342706" + } + }, + "cborHex": "1be57b7356cb5fcbf2", + "cborBytes": [27, 229, 123, 115, 86, 203, 95, 203, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2468, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1931167333267545125" + } + }, + "cborHex": "1b1acce27535401c25", + "cborBytes": [27, 26, 204, 226, 117, 53, 64, 28, 37], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2469, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17367206102470519425" + } + }, + "cborHex": "1bf104b5ef4ec06a81", + "cborBytes": [27, 241, 4, 181, 239, 78, 192, 106, 129], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2470, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6214392067490564587" + } + }, + "cborHex": "1b563df4a8fdc7c9eb", + "cborBytes": [27, 86, 61, 244, 168, 253, 199, 201, 235], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2471, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "948082386188121734" + } + }, + "cborHex": "1b0d2843e8368c3686", + "cborBytes": [27, 13, 40, 67, 232, 54, 140, 54, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2472, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2854476077174200196" + } + }, + "cborHex": "1b279d22de57d19784", + "cborBytes": [27, 39, 157, 34, 222, 87, 209, 151, 132], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2473, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6949905582361188864" + } + }, + "cborHex": "1b6073064e13249a00", + "cborBytes": [27, 96, 115, 6, 78, 19, 36, 154, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2474, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3895916623771241574" + } + }, + "cborHex": "1b36111387226c8c66", + "cborBytes": [27, 54, 17, 19, 135, 34, 108, 140, 102], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2475, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17296066096568342654" + } + }, + "cborHex": "1bf007f879f1a2187e", + "cborBytes": [27, 240, 7, 248, 121, 241, 162, 24, 126], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2476, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16683466324708476898" + } + }, + "cborHex": "1be787943ac270c7e2", + "cborBytes": [27, 231, 135, 148, 58, 194, 112, 199, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2477, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15898358324709218048" + } + }, + "cborHex": "1bdca250a9c82ad700", + "cborBytes": [27, 220, 162, 80, 169, 200, 42, 215, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2478, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1650563025516388051" + } + }, + "cborHex": "1b16e7fa539f4c5ed3", + "cborBytes": [27, 22, 231, 250, 83, 159, 76, 94, 211], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2479, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9393021130650799458" + } + }, + "cborHex": "1b825ab6f3b42dcd62", + "cborBytes": [27, 130, 90, 182, 243, 180, 45, 205, 98], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2480, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16353012065246911833" + } + }, + "cborHex": "1be2f191d4d4b81d59", + "cborBytes": [27, 226, 241, 145, 212, 212, 184, 29, 89], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2481, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1979110330079815962" + } + }, + "cborHex": "1b1b77365c03b6a91a", + "cborBytes": [27, 27, 119, 54, 92, 3, 182, 169, 26], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2482, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5170300332670483802" + } + }, + "cborHex": "1b47c098c256e87d5a", + "cborBytes": [27, 71, 192, 152, 194, 86, 232, 125, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2483, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6348696755111760371" + } + }, + "cborHex": "1b581b1a0fdb1c91f3", + "cborBytes": [27, 88, 27, 26, 15, 219, 28, 145, 243], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2484, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16716423670115529876" + } + }, + "cborHex": "1be7fcaac2b42af494", + "cborBytes": [27, 231, 252, 170, 194, 180, 42, 244, 148], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2485, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4914329744372198312" + } + }, + "cborHex": "1b443334dd8270eba8", + "cborBytes": [27, 68, 51, 52, 221, 130, 112, 235, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2486, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5846472639988328798" + } + }, + "cborHex": "1b5122d7e3df8b695e", + "cborBytes": [27, 81, 34, 215, 227, 223, 139, 105, 94], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2487, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5373102696406642999" + } + }, + "cborHex": "1b4a91186f3902f137", + "cborBytes": [27, 74, 145, 24, 111, 57, 2, 241, 55], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2488, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12522271068538122780" + } + }, + "cborHex": "1badc80b30e55db21c", + "cborBytes": [27, 173, 200, 11, 48, 229, 93, 178, 28], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2489, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16954598819813162908" + } + }, + "cborHex": "1beb4ad5cc1c387f9c", + "cborBytes": [27, 235, 74, 213, 204, 28, 56, 127, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2490, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15264948827350235424" + } + }, + "cborHex": "1bd3d7fe14d0b9f920", + "cborBytes": [27, 211, 215, 254, 20, 208, 185, 249, 32], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2491, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11160349721521231159" + } + }, + "cborHex": "1b9ae186f110671537", + "cborBytes": [27, 154, 225, 134, 241, 16, 103, 21, 55], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2492, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9290821037122978664" + } + }, + "cborHex": "1b80efa08225710368", + "cborBytes": [27, 128, 239, 160, 130, 37, 113, 3, 104], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2493, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "978469564437418275" + } + }, + "cborHex": "1b0d9438e27bd2d123", + "cborBytes": [27, 13, 148, 56, 226, 123, 210, 209, 35], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2494, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15061720884284789415" + } + }, + "cborHex": "1bd105fb5805e092a7", + "cborBytes": [27, 209, 5, 251, 88, 5, 224, 146, 167], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2495, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14369973900477865394" + } + }, + "cborHex": "1bc76c6720899e1db2", + "cborBytes": [27, 199, 108, 103, 32, 137, 158, 29, 178], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2496, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2467465679964157106" + } + }, + "cborHex": "1b223e32f675bb34b2", + "cborBytes": [27, 34, 62, 50, 246, 117, 187, 52, 178], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2497, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17552079948629604508" + } + }, + "cborHex": "1bf39583b7e752f89c", + "cborBytes": [27, 243, 149, 131, 183, 231, 82, 248, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2498, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16631136339779649324" + } + }, + "cborHex": "1be6cdaa62afa7ff2c", + "cborBytes": [27, 230, 205, 170, 98, 175, 167, 255, 44], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2499, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5878028447237611730" + } + }, + "cborHex": "1b5192f3bac93d20d2", + "cborBytes": [27, 81, 146, 243, 186, 201, 61, 32, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2500, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7248705193314153216" + } + }, + "cborHex": "1b649892f7d104f300", + "cborBytes": [27, 100, 152, 146, 247, 209, 4, 243, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2501, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5652868212382453059" + } + }, + "cborHex": "1b4e7305b061274d43", + "cborBytes": [27, 78, 115, 5, 176, 97, 39, 77, 67], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2502, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5523187695208441249" + } + }, + "cborHex": "1b4ca64df218b525a1", + "cborBytes": [27, 76, 166, 77, 242, 24, 181, 37, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2503, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14274751080843103144" + } + }, + "cborHex": "1bc61a1a7a26c6cba8", + "cborBytes": [27, 198, 26, 26, 122, 38, 198, 203, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2504, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12216199137149327229" + } + }, + "cborHex": "1ba988a8641b38177d", + "cborBytes": [27, 169, 136, 168, 100, 27, 56, 23, 125], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2505, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16282970711775806615" + } + }, + "cborHex": "1be1f8bb976b7c8497", + "cborBytes": [27, 225, 248, 187, 151, 107, 124, 132, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2506, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5852021738232038052" + } + }, + "cborHex": "1b51368ec3fd2f42a4", + "cborBytes": [27, 81, 54, 142, 195, 253, 47, 66, 164], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2507, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1461888424444757595" + } + }, + "cborHex": "1b1449abc6d049065b", + "cborBytes": [27, 20, 73, 171, 198, 208, 73, 6, 91], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2508, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16185130428314254531" + } + }, + "cborHex": "1be09d225f3f097cc3", + "cborBytes": [27, 224, 157, 34, 95, 63, 9, 124, 195], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2509, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4073982952364979846" + } + }, + "cborHex": "1b3889b1e908b63686", + "cborBytes": [27, 56, 137, 177, 233, 8, 182, 54, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2510, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8383630320758220833" + } + }, + "cborHex": "1b7458a35bbcfce821", + "cborBytes": [27, 116, 88, 163, 91, 188, 252, 232, 33], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2511, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6174591421467350133" + } + }, + "cborHex": "1b55b08e2ef5bc5475", + "cborBytes": [27, 85, 176, 142, 46, 245, 188, 84, 117], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2512, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14169360353053565315" + } + }, + "cborHex": "1bc4a3ae2b2a42e183", + "cborBytes": [27, 196, 163, 174, 43, 42, 66, 225, 131], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2513, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3123431369726707587" + } + }, + "cborHex": "1b2b58a84838df4783", + "cborBytes": [27, 43, 88, 168, 72, 56, 223, 71, 131], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2514, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "598011340300056924" + } + }, + "cborHex": "1b084c9025463d795c", + "cborBytes": [27, 8, 76, 144, 37, 70, 61, 121, 92], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2515, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "233462605727580821" + } + }, + "cborHex": "1b033d6d00c2bac295", + "cborBytes": [27, 3, 61, 109, 0, 194, 186, 194, 149], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2516, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10854877052526603476" + } + }, + "cborHex": "1b96a4452aec632cd4", + "cborBytes": [27, 150, 164, 69, 42, 236, 99, 44, 212], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2517, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10752323935637332064" + } + }, + "cborHex": "1b9537eda6b597e060", + "cborBytes": [27, 149, 55, 237, 166, 181, 151, 224, 96], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2518, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7598343305656943794" + } + }, + "cborHex": "1b6972bcfa8f2644b2", + "cborBytes": [27, 105, 114, 188, 250, 143, 38, 68, 178], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2519, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2548822558436077537" + } + }, + "cborHex": "1b235f3c9cd715afe1", + "cborBytes": [27, 35, 95, 60, 156, 215, 21, 175, 225], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2520, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13108571715260050830" + } + }, + "cborHex": "1bb5eb0085d8ceed8e", + "cborBytes": [27, 181, 235, 0, 133, 216, 206, 237, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2521, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2218631840626505205" + } + }, + "cborHex": "1b1eca29e77be9f5f5", + "cborBytes": [27, 30, 202, 41, 231, 123, 233, 245, 245], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2522, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6961291961594741228" + } + }, + "cborHex": "1b609b7a2814a301ec", + "cborBytes": [27, 96, 155, 122, 40, 20, 163, 1, 236], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2523, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12972464817997070157" + } + }, + "cborHex": "1bb407740559f7bf4d", + "cborBytes": [27, 180, 7, 116, 5, 89, 247, 191, 77], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2524, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16512470594006935976" + } + }, + "cborHex": "1be5281484b7dde9a8", + "cborBytes": [27, 229, 40, 20, 132, 183, 221, 233, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2525, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14587478366484745985" + } + }, + "cborHex": "1bca7122495b04cf01", + "cborBytes": [27, 202, 113, 34, 73, 91, 4, 207, 1], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2526, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12100758091718796065" + } + }, + "cborHex": "1ba7ee875f31d52321", + "cborBytes": [27, 167, 238, 135, 95, 49, 213, 35, 33], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2527, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17025877081310005048" + } + }, + "cborHex": "1bec4810ff9cf28738", + "cborBytes": [27, 236, 72, 16, 255, 156, 242, 135, 56], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2528, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2830252402168570890" + } + }, + "cborHex": "1b274713907ff4240a", + "cborBytes": [27, 39, 71, 19, 144, 127, 244, 36, 10], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2529, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1155926945734311185" + } + }, + "cborHex": "1b100aad6ecacbbd11", + "cborBytes": [27, 16, 10, 173, 110, 202, 203, 189, 17], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2530, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10210122374358358637" + } + }, + "cborHex": "1b8db1a43434e5da6d", + "cborBytes": [27, 141, 177, 164, 52, 52, 229, 218, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2531, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "135409334880348201" + } + }, + "cborHex": "1b01e1121298d0a829", + "cborBytes": [27, 1, 225, 18, 18, 152, 208, 168, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2532, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3579342697574668286" + } + }, + "cborHex": "1b31ac6138225397fe", + "cborBytes": [27, 49, 172, 97, 56, 34, 83, 151, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2533, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5685846795678198389" + } + }, + "cborHex": "1b4ee82f8927b12a75", + "cborBytes": [27, 78, 232, 47, 137, 39, 177, 42, 117], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2534, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16648342044158055663" + } + }, + "cborHex": "1be70acae1e93dd4ef", + "cborBytes": [27, 231, 10, 202, 225, 233, 61, 212, 239], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2535, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16732204058652616534" + } + }, + "cborHex": "1be834baf0b956a756", + "cborBytes": [27, 232, 52, 186, 240, 185, 86, 167, 86], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2536, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8586782168477679664" + } + }, + "cborHex": "1b772a60e333c54030", + "cborBytes": [27, 119, 42, 96, 227, 51, 197, 64, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2537, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7076774248907459504" + } + }, + "cborHex": "1b6235c0af5dc2cbb0", + "cborBytes": [27, 98, 53, 192, 175, 93, 194, 203, 176], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2538, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11384328073567545807" + } + }, + "cborHex": "1b9dfd4210ef8029cf", + "cborBytes": [27, 157, 253, 66, 16, 239, 128, 41, 207], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2539, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17973207046433884804" + } + }, + "cborHex": "1bf96da895253d4a84", + "cborBytes": [27, 249, 109, 168, 149, 37, 61, 74, 132], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2540, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8914132582682733164" + } + }, + "cborHex": "1b7bb55c5ad78a2a6c", + "cborBytes": [27, 123, 181, 92, 90, 215, 138, 42, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2541, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12166538660837118494" + } + }, + "cborHex": "1ba8d83a737140d21e", + "cborBytes": [27, 168, 216, 58, 115, 113, 64, 210, 30], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2542, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9644885983552657776" + } + }, + "cborHex": "1b85d984b384ccd970", + "cborBytes": [27, 133, 217, 132, 179, 132, 204, 217, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2543, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5713583629985183550" + } + }, + "cborHex": "1b4f4aba0a23c0f73e", + "cborBytes": [27, 79, 74, 186, 10, 35, 192, 247, 62], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2544, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2349534638030977889" + } + }, + "cborHex": "1b209b394e0f4ffb61", + "cborBytes": [27, 32, 155, 57, 78, 15, 79, 251, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2545, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9214219479708944177" + } + }, + "cborHex": "1b7fdf7bcc3a894731", + "cborBytes": [27, 127, 223, 123, 204, 58, 137, 71, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2546, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4142047004508244375" + } + }, + "cborHex": "1b397b81ce1aaf4997", + "cborBytes": [27, 57, 123, 129, 206, 26, 175, 73, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2547, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14624672452971286528" + } + }, + "cborHex": "1bcaf5461c73cb5000", + "cborBytes": [27, 202, 245, 70, 28, 115, 203, 80, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2548, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14291597720462520327" + } + }, + "cborHex": "1bc655f46818f37007", + "cborBytes": [27, 198, 85, 244, 104, 24, 243, 112, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2549, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "349085616052117719" + } + }, + "cborHex": "1b04d83384acfc20d7", + "cborBytes": [27, 4, 216, 51, 132, 172, 252, 32, 215], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2550, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14168743148327839733" + } + }, + "cborHex": "1bc4a17cd2fdd4a7f5", + "cborBytes": [27, 196, 161, 124, 210, 253, 212, 167, 245], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2551, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8421173279686241272" + } + }, + "cborHex": "1b74de047b07b5abf8", + "cborBytes": [27, 116, 222, 4, 123, 7, 181, 171, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2552, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9478905301559878945" + } + }, + "cborHex": "1b838bd6267f0b2521", + "cborBytes": [27, 131, 139, 214, 38, 127, 11, 37, 33], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2553, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5075962278825702800" + } + }, + "cborHex": "1b467170cc8ab03590", + "cborBytes": [27, 70, 113, 112, 204, 138, 176, 53, 144], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2554, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9721452524551376838" + } + }, + "cborHex": "1b86e989908ab58fc6", + "cborBytes": [27, 134, 233, 137, 144, 138, 181, 143, 198], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2555, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "289283665048657042" + } + }, + "cborHex": "1b0403bdf5ee8c5c92", + "cborBytes": [27, 4, 3, 189, 245, 238, 140, 92, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2556, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5261155728593050833" + } + }, + "cborHex": "1b49036142a6ccdcd1", + "cborBytes": [27, 73, 3, 97, 66, 166, 204, 220, 209], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2557, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13146472911129646225" + } + }, + "cborHex": "1bb671a775ad2d9491", + "cborBytes": [27, 182, 113, 167, 117, 173, 45, 148, 145], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2558, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17397583620895842193" + } + }, + "cborHex": "1bf170a22079a69f91", + "cborBytes": [27, 241, 112, 162, 32, 121, 166, 159, 145], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2559, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5654172254414959749" + } + }, + "cborHex": "1b4e77a7b55345f485", + "cborBytes": [27, 78, 119, 167, 181, 83, 69, 244, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2560, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5369579212300356012" + } + }, + "cborHex": "1b4a8493d8267c09ac", + "cborBytes": [27, 74, 132, 147, 216, 38, 124, 9, 172], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2561, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17614803592030044231" + } + }, + "cborHex": "1bf4745a8a2b39c047", + "cborBytes": [27, 244, 116, 90, 138, 43, 57, 192, 71], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2562, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4722671346670344412" + } + }, + "cborHex": "1b418a4c91693398dc", + "cborBytes": [27, 65, 138, 76, 145, 105, 51, 152, 220], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2563, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4325369345374208725" + } + }, + "cborHex": "1b3c06cc80b964c2d5", + "cborBytes": [27, 60, 6, 204, 128, 185, 100, 194, 213], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2564, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17920390840192721385" + } + }, + "cborHex": "1bf8b20485d9d9e1e9", + "cborBytes": [27, 248, 178, 4, 133, 217, 217, 225, 233], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2565, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3117290283570588462" + } + }, + "cborHex": "1b2b42d6ff2e006b2e", + "cborBytes": [27, 43, 66, 214, 255, 46, 0, 107, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2566, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14834639306613546741" + } + }, + "cborHex": "1bcddf39da21bf5ef5", + "cborBytes": [27, 205, 223, 57, 218, 33, 191, 94, 245], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2567, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12049473966308808715" + } + }, + "cborHex": "1ba73854bb4427580b", + "cborBytes": [27, 167, 56, 84, 187, 68, 39, 88, 11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2568, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5438490970048308591" + } + }, + "cborHex": "1b4b7966b90fe6256f", + "cborBytes": [27, 75, 121, 102, 185, 15, 230, 37, 111], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2569, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17815275072396888550" + } + }, + "cborHex": "1bf73c9249fa1689e6", + "cborBytes": [27, 247, 60, 146, 73, 250, 22, 137, 230], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2570, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12937270822341973136" + } + }, + "cborHex": "1bb38a6b44b0b81490", + "cborBytes": [27, 179, 138, 107, 68, 176, 184, 20, 144], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2571, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2309855842521211634" + } + }, + "cborHex": "1b200e41a68fd662f2", + "cborBytes": [27, 32, 14, 65, 166, 143, 214, 98, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2572, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13635883887738392640" + } + }, + "cborHex": "1bbd3c64265f1e9040", + "cborBytes": [27, 189, 60, 100, 38, 95, 30, 144, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2573, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5479936211710996364" + } + }, + "cborHex": "1b4c0ca4f35ad56f8c", + "cborBytes": [27, 76, 12, 164, 243, 90, 213, 111, 140], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2574, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4147992375590723395" + } + }, + "cborHex": "1b3990a116ae1d1f43", + "cborBytes": [27, 57, 144, 161, 22, 174, 29, 31, 67], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2575, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13694265468469951127" + } + }, + "cborHex": "1bbe0bcde3640cba97", + "cborBytes": [27, 190, 11, 205, 227, 100, 12, 186, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2576, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11392571929423407857" + } + }, + "cborHex": "1b9e1a8bcf335e6af1", + "cborBytes": [27, 158, 26, 139, 207, 51, 94, 106, 241], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2577, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16520955582282416437" + } + }, + "cborHex": "1be5463991fff34135", + "cborBytes": [27, 229, 70, 57, 145, 255, 243, 65, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2578, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4035196822906919008" + } + }, + "cborHex": "1b37ffe6218c26d860", + "cborBytes": [27, 55, 255, 230, 33, 140, 38, 216, 96], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2579, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14331335759981807539" + } + }, + "cborHex": "1bc6e321f16a9187b3", + "cborBytes": [27, 198, 227, 33, 241, 106, 145, 135, 179], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2580, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9933291968814768783" + } + }, + "cborHex": "1b89da246ab371e28f", + "cborBytes": [27, 137, 218, 36, 106, 179, 113, 226, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2581, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11229849176119363340" + } + }, + "cborHex": "1b9bd87053cfcec70c", + "cborBytes": [27, 155, 216, 112, 83, 207, 206, 199, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2582, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13445980647904815271" + } + }, + "cborHex": "1bba99b828cf24a8a7", + "cborBytes": [27, 186, 153, 184, 40, 207, 36, 168, 167], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2583, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1981361069266336307" + } + }, + "cborHex": "1b1b7f356511687a33", + "cborBytes": [27, 27, 127, 53, 101, 17, 104, 122, 51], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2584, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13889081194318608896" + } + }, + "cborHex": "1bc0bfedc23beb3a00", + "cborBytes": [27, 192, 191, 237, 194, 59, 235, 58, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2585, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7867088704309314532" + } + }, + "cborHex": "1b6d2d837eb4d843e4", + "cborBytes": [27, 109, 45, 131, 126, 180, 216, 67, 228], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2586, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13435563984027446004" + } + }, + "cborHex": "1bba74b64240fceaf4", + "cborBytes": [27, 186, 116, 182, 66, 64, 252, 234, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2587, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6545097489509645225" + } + }, + "cborHex": "1b5ad4db7d4285fba9", + "cborBytes": [27, 90, 212, 219, 125, 66, 133, 251, 169], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2588, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17733557997899581401" + } + }, + "cborHex": "1bf61a410aec9787d9", + "cborBytes": [27, 246, 26, 65, 10, 236, 151, 135, 217], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2589, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4618921748048423848" + } + }, + "cborHex": "1b4019b4db95c0aba8", + "cborBytes": [27, 64, 25, 180, 219, 149, 192, 171, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2590, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11001484069814202714" + } + }, + "cborHex": "1b98ad1f791f64f15a", + "cborBytes": [27, 152, 173, 31, 121, 31, 100, 241, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2591, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11810089528477744497" + } + }, + "cborHex": "1ba3e5ddda8679fd71", + "cborBytes": [27, 163, 229, 221, 218, 134, 121, 253, 113], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2592, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16195236284067048136" + } + }, + "cborHex": "1be0c1099825556ac8", + "cborBytes": [27, 224, 193, 9, 152, 37, 85, 106, 200], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2593, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6604348373016487112" + } + }, + "cborHex": "1b5ba75bda9a93a4c8", + "cborBytes": [27, 91, 167, 91, 218, 154, 147, 164, 200], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2594, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14629003945803189871" + } + }, + "cborHex": "1bcb04a994b7630e6f", + "cborBytes": [27, 203, 4, 169, 148, 183, 99, 14, 111], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2595, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1747827280372780520" + } + }, + "cborHex": "1b184187a6af5b4de8", + "cborBytes": [27, 24, 65, 135, 166, 175, 91, 77, 232], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2596, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4463246298715407921" + } + }, + "cborHex": "1b3df0a2dc84024631", + "cborBytes": [27, 61, 240, 162, 220, 132, 2, 70, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2597, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10517783280786537934" + } + }, + "cborHex": "1b91f6ac2b13d2fdce", + "cborBytes": [27, 145, 246, 172, 43, 19, 210, 253, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2598, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6954093206633469326" + } + }, + "cborHex": "1b6081e6ed5458558e", + "cborBytes": [27, 96, 129, 230, 237, 84, 88, 85, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2599, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11074285572857168694" + } + }, + "cborHex": "1b99afc40def628336", + "cborBytes": [27, 153, 175, 196, 13, 239, 98, 131, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2600, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2287902628642181330" + } + }, + "cborHex": "1b1fc04351a4e650d2", + "cborBytes": [27, 31, 192, 67, 81, 164, 230, 80, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2601, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16197270792455926604" + } + }, + "cborHex": "1be0c843f80b25334c", + "cborBytes": [27, 224, 200, 67, 248, 11, 37, 51, 76], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2602, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5608435602551351346" + } + }, + "cborHex": "1b4dd52a773bba2832", + "cborBytes": [27, 77, 213, 42, 119, 59, 186, 40, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2603, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18181553341447307546" + } + }, + "cborHex": "1bfc51da6f1dc8811a", + "cborBytes": [27, 252, 81, 218, 111, 29, 200, 129, 26], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2604, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11971425699305044338" + } + }, + "cborHex": "1ba6230c3f060f3972", + "cborBytes": [27, 166, 35, 12, 63, 6, 15, 57, 114], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2605, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4989098910182992517" + } + }, + "cborHex": "1b453cd70682beea85", + "cborBytes": [27, 69, 60, 215, 6, 130, 190, 234, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2606, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7501290358464160695" + } + }, + "cborHex": "1b6819efd66551a3b7", + "cborBytes": [27, 104, 25, 239, 214, 101, 81, 163, 183], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2607, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17779496284041897925" + } + }, + "cborHex": "1bf6bd75aba7b1e7c5", + "cborBytes": [27, 246, 189, 117, 171, 167, 177, 231, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2608, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16239410415084435249" + } + }, + "cborHex": "1be15df9bb80e2f731", + "cborBytes": [27, 225, 93, 249, 187, 128, 226, 247, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2609, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4672341498269297416" + } + }, + "cborHex": "1b40d77dd669a86b08", + "cborBytes": [27, 64, 215, 125, 214, 105, 168, 107, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2610, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9376756700747003640" + } + }, + "cborHex": "1b8220ee8a0549f6f8", + "cborBytes": [27, 130, 32, 238, 138, 5, 73, 246, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2611, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5995213765344766953" + } + }, + "cborHex": "1b53334727d3e82be9", + "cborBytes": [27, 83, 51, 71, 39, 211, 232, 43, 233], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2612, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14126296159702522030" + } + }, + "cborHex": "1bc40aaf834f0898ae", + "cborBytes": [27, 196, 10, 175, 131, 79, 8, 152, 174], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2613, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "896979647180882805" + } + }, + "cborHex": "1b0c72b63c98f8c375", + "cborBytes": [27, 12, 114, 182, 60, 152, 248, 195, 117], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2614, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12427718666435532291" + } + }, + "cborHex": "1bac78204841619603", + "cborBytes": [27, 172, 120, 32, 72, 65, 97, 150, 3], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2615, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17991198817482069944" + } + }, + "cborHex": "1bf9ad9400c77257b8", + "cborBytes": [27, 249, 173, 148, 0, 199, 114, 87, 184], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2616, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13558877424760891438" + } + }, + "cborHex": "1bbc2acf2e07efa82e", + "cborBytes": [27, 188, 42, 207, 46, 7, 239, 168, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2617, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5737318654322961627" + } + }, + "cborHex": "1b4f9f0ceb22246cdb", + "cborBytes": [27, 79, 159, 12, 235, 34, 36, 108, 219], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2618, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14026063406205813185" + } + }, + "cborHex": "1bc2a6965acc00c1c1", + "cborBytes": [27, 194, 166, 150, 90, 204, 0, 193, 193], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2619, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12900925887914795405" + } + }, + "cborHex": "1bb3094bbe36cd618d", + "cborBytes": [27, 179, 9, 75, 190, 54, 205, 97, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2620, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8690499451196499290" + } + }, + "cborHex": "1b789adb34e54b655a", + "cborBytes": [27, 120, 154, 219, 52, 229, 75, 101, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2621, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4257774516647159493" + } + }, + "cborHex": "1b3b16a75d3e76e6c5", + "cborBytes": [27, 59, 22, 167, 93, 62, 118, 230, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2622, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8482893003402449807" + } + }, + "cborHex": "1b75b94a3e0773138f", + "cborBytes": [27, 117, 185, 74, 62, 7, 115, 19, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2623, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17942874543126204932" + } + }, + "cborHex": "1bf901e554e06fd204", + "cborBytes": [27, 249, 1, 229, 84, 224, 111, 210, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2624, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14264811449226813283" + } + }, + "cborHex": "1bc5f6ca6f5316df63", + "cborBytes": [27, 197, 246, 202, 111, 83, 22, 223, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2625, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7771934223635790544" + } + }, + "cborHex": "1b6bdb74ffb9833ad0", + "cborBytes": [27, 107, 219, 116, 255, 185, 131, 58, 208], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2626, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1444734510297489556" + } + }, + "cborHex": "1b140cba61f107a094", + "cborBytes": [27, 20, 12, 186, 97, 241, 7, 160, 148], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2627, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8466068350929687924" + } + }, + "cborHex": "1b757d844f5d575574", + "cborBytes": [27, 117, 125, 132, 79, 93, 87, 85, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2628, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13084518381796183844" + } + }, + "cborHex": "1bb5958c24bc07cf24", + "cborBytes": [27, 181, 149, 140, 36, 188, 7, 207, 36], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2629, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15206422459095433999" + } + }, + "cborHex": "1bd30810a8d2e7c30f", + "cborBytes": [27, 211, 8, 16, 168, 210, 231, 195, 15], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2630, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13089135469244749650" + } + }, + "cborHex": "1bb5a5f35c2d4c9752", + "cborBytes": [27, 181, 165, 243, 92, 45, 76, 151, 82], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2631, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8705069596039840896" + } + }, + "cborHex": "1b78ce9ead19020480", + "cborBytes": [27, 120, 206, 158, 173, 25, 2, 4, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2632, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4045391949211484432" + } + }, + "cborHex": "1b38241e8b5df9c110", + "cborBytes": [27, 56, 36, 30, 139, 93, 249, 193, 16], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2633, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9933660645853226645" + } + }, + "cborHex": "1b89db73ba035be695", + "cborBytes": [27, 137, 219, 115, 186, 3, 91, 230, 149], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2634, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16697847305034608062" + } + }, + "cborHex": "1be7baaba7aa4d2dbe", + "cborBytes": [27, 231, 186, 171, 167, 170, 77, 45, 190], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2635, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13941553002962776015" + } + }, + "cborHex": "1bc17a589736e06fcf", + "cborBytes": [27, 193, 122, 88, 151, 54, 224, 111, 207], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2636, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4806794602237597781" + } + }, + "cborHex": "1b42b52a3926a31855", + "cborBytes": [27, 66, 181, 42, 57, 38, 163, 24, 85], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2637, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1976054830833134286" + } + }, + "cborHex": "1b1b6c5b662880eace", + "cborBytes": [27, 27, 108, 91, 102, 40, 128, 234, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2638, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17008022131427641327" + } + }, + "cborHex": "1bec08a20423ba07ef", + "cborBytes": [27, 236, 8, 162, 4, 35, 186, 7, 239], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2639, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9384813405587516098" + } + }, + "cborHex": "1b823d8e11cb5e2ac2", + "cborBytes": [27, 130, 61, 142, 17, 203, 94, 42, 194], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2640, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15060845075725375809" + } + }, + "cborHex": "1bd102deccf3cd5941", + "cborBytes": [27, 209, 2, 222, 204, 243, 205, 89, 65], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2641, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9577246876413962284" + } + }, + "cborHex": "1b84e9374aaadfa82c", + "cborBytes": [27, 132, 233, 55, 74, 170, 223, 168, 44], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2642, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3749532629535354983" + } + }, + "cborHex": "1b3409040f8930f067", + "cborBytes": [27, 52, 9, 4, 15, 137, 48, 240, 103], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2643, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17113098035676480397" + } + }, + "cborHex": "1bed7deffe8eee838d", + "cborBytes": [27, 237, 125, 239, 254, 142, 238, 131, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2644, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1141730474491673059" + } + }, + "cborHex": "1b0fd83dd1415079e3", + "cborBytes": [27, 15, 216, 61, 209, 65, 80, 121, 227], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2645, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11720664766735535764" + } + }, + "cborHex": "1ba2a82a81b0b54e94", + "cborBytes": [27, 162, 168, 42, 129, 176, 181, 78, 148], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2646, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13420821748281482958" + } + }, + "cborHex": "1bba40564604279ece", + "cborBytes": [27, 186, 64, 86, 70, 4, 39, 158, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2647, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11213642361499738366" + } + }, + "cborHex": "1b9b9edc50bb76e0fe", + "cborBytes": [27, 155, 158, 220, 80, 187, 118, 224, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2648, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17872880009064704708" + } + }, + "cborHex": "1bf80939ac757b6ac4", + "cborBytes": [27, 248, 9, 57, 172, 117, 123, 106, 196], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2649, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5683973645180689003" + } + }, + "cborHex": "1b4ee187ea51ad5a6b", + "cborBytes": [27, 78, 225, 135, 234, 81, 173, 90, 107], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2650, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10533879005536849860" + } + }, + "cborHex": "1b922fdb2507f80fc4", + "cborBytes": [27, 146, 47, 219, 37, 7, 248, 15, 196], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2651, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1689025651389840359" + } + }, + "cborHex": "1b17709fe18f9d3be7", + "cborBytes": [27, 23, 112, 159, 225, 143, 157, 59, 231], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2652, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4735971135216164766" + } + }, + "cborHex": "1b41b98ca7bd101f9e", + "cborBytes": [27, 65, 185, 140, 167, 189, 16, 31, 158], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2653, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5586766846007461067" + } + }, + "cborHex": "1b4d882ed8b33444cb", + "cborBytes": [27, 77, 136, 46, 216, 179, 52, 68, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2654, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12343359847959428698" + } + }, + "cborHex": "1bab4c6c624070fe5a", + "cborBytes": [27, 171, 76, 108, 98, 64, 112, 254, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2655, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13422732399294047018" + } + }, + "cborHex": "1bba4720001f0c632a", + "cborBytes": [27, 186, 71, 32, 0, 31, 12, 99, 42], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2656, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13055772153971344823" + } + }, + "cborHex": "1bb52f6b9a01e605b7", + "cborBytes": [27, 181, 47, 107, 154, 1, 230, 5, 183], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2657, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8044090159697543201" + } + }, + "cborHex": "1b6fa259617dfcc021", + "cborBytes": [27, 111, 162, 89, 97, 125, 252, 192, 33], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2658, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12749568681628676445" + } + }, + "cborHex": "1bb0ef912a73ec315d", + "cborBytes": [27, 176, 239, 145, 42, 115, 236, 49, 93], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2659, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13471102214111474565" + } + }, + "cborHex": "1bbaf2f8173d17b385", + "cborBytes": [27, 186, 242, 248, 23, 61, 23, 179, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2660, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16533364849791414808" + } + }, + "cborHex": "1be5724fbbbdbf3218", + "cborBytes": [27, 229, 114, 79, 187, 189, 191, 50, 24], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2661, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4630929950478353127" + } + }, + "cborHex": "1b40445e4115fac2e7", + "cborBytes": [27, 64, 68, 94, 65, 21, 250, 194, 231], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2662, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8076727321295374538" + } + }, + "cborHex": "1b70164cb4d580c8ca", + "cborBytes": [27, 112, 22, 76, 180, 213, 128, 200, 202], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2663, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "482820989491484744" + } + }, + "cborHex": "1b06b35321c0be1848", + "cborBytes": [27, 6, 179, 83, 33, 192, 190, 24, 72], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2664, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9033781738729825262" + } + }, + "cborHex": "1b7d5e70a0db66e3ee", + "cborBytes": [27, 125, 94, 112, 160, 219, 102, 227, 238], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2665, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10864613381985902375" + } + }, + "cborHex": "1b96c6dc4ec7399f27", + "cborBytes": [27, 150, 198, 220, 78, 199, 57, 159, 39], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2666, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18421134558368545466" + } + }, + "cborHex": "1bffa504480f3ababa", + "cborBytes": [27, 255, 165, 4, 72, 15, 58, 186, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2667, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18205408178194328443" + } + }, + "cborHex": "1bfca69a481c43ab7b", + "cborBytes": [27, 252, 166, 154, 72, 28, 67, 171, 123], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2668, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3386984050877742996" + } + }, + "cborHex": "1b2f00fc0c9c7b3f94", + "cborBytes": [27, 47, 0, 252, 12, 156, 123, 63, 148], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2669, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13104648425792362249" + } + }, + "cborHex": "1bb5dd104fd5bc5709", + "cborBytes": [27, 181, 221, 16, 79, 213, 188, 87, 9], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2670, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13337182833740902962" + } + }, + "cborHex": "1bb917311fb5907232", + "cborBytes": [27, 185, 23, 49, 31, 181, 144, 114, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2671, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7090130332317113951" + } + }, + "cborHex": "1b626533f8dcfbde5f", + "cborBytes": [27, 98, 101, 51, 248, 220, 251, 222, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2672, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18366893945251722109" + } + }, + "cborHex": "1bfee450bb3200737d", + "cborBytes": [27, 254, 228, 80, 187, 50, 0, 115, 125], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2673, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1779691865310243468" + } + }, + "cborHex": "1b18b2bc5281782a8c", + "cborBytes": [27, 24, 178, 188, 82, 129, 120, 42, 140], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2674, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9943277056765661079" + } + }, + "cborHex": "1b89fd9dcd27cf0f97", + "cborBytes": [27, 137, 253, 157, 205, 39, 207, 15, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2675, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10949582627080348769" + } + }, + "cborHex": "1b97f4bb62cde9a461", + "cborBytes": [27, 151, 244, 187, 98, 205, 233, 164, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2676, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2516397122644618641" + } + }, + "cborHex": "1b22ec09d9c10c2d91", + "cborBytes": [27, 34, 236, 9, 217, 193, 12, 45, 145], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2677, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11399486900181037754" + } + }, + "cborHex": "1b9e331cf04b0272ba", + "cborBytes": [27, 158, 51, 28, 240, 75, 2, 114, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2678, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1731451146558529089" + } + }, + "cborHex": "1b180759a4e8905e41", + "cborBytes": [27, 24, 7, 89, 164, 232, 144, 94, 65], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2679, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5745428546928945863" + } + }, + "cborHex": "1b4fbbdcd2a616aac7", + "cborBytes": [27, 79, 187, 220, 210, 166, 22, 170, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2680, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14856821395932564735" + } + }, + "cborHex": "1bce2e085843fbccff", + "cborBytes": [27, 206, 46, 8, 88, 67, 251, 204, 255], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2681, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6456403211813850500" + } + }, + "cborHex": "1b5999c0837edb0d84", + "cborBytes": [27, 89, 153, 192, 131, 126, 219, 13, 132], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2682, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1062949398361901152" + } + }, + "cborHex": "1b0ec05ad897938860", + "cborBytes": [27, 14, 192, 90, 216, 151, 147, 136, 96], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2683, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8142636120701502006" + } + }, + "cborHex": "1b7100746905ad8236", + "cborBytes": [27, 113, 0, 116, 105, 5, 173, 130, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2684, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "94669109642075404" + } + }, + "cborHex": "1b0150550dbb6b1d0c", + "cborBytes": [27, 1, 80, 85, 13, 187, 107, 29, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2685, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2123573349650122643" + } + }, + "cborHex": "1b1d7872b5d861c793", + "cborBytes": [27, 29, 120, 114, 181, 216, 97, 199, 147], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2686, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15933154639101391231" + } + }, + "cborHex": "1bdd1defba0f01717f", + "cborBytes": [27, 221, 29, 239, 186, 15, 1, 113, 127], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2687, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "963415067147783292" + } + }, + "cborHex": "1b0d5ebce6309a4c7c", + "cborBytes": [27, 13, 94, 188, 230, 48, 154, 76, 124], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2688, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12894883604501336177" + } + }, + "cborHex": "1bb2f3d4517a4f9071", + "cborBytes": [27, 178, 243, 212, 81, 122, 79, 144, 113], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2689, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17671495587870023952" + } + }, + "cborHex": "1bf53dc39c0ce02110", + "cborBytes": [27, 245, 61, 195, 156, 12, 224, 33, 16], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2690, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1269972952034094621" + } + }, + "cborHex": "1b119fd9abd858ae1d", + "cborBytes": [27, 17, 159, 217, 171, 216, 88, 174, 29], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2691, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2453996332310498486" + } + }, + "cborHex": "1b220e58a9937a8cb6", + "cborBytes": [27, 34, 14, 88, 169, 147, 122, 140, 182], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2692, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13203521762705863590" + } + }, + "cborHex": "1bb73c55168238f3a6", + "cborBytes": [27, 183, 60, 85, 22, 130, 56, 243, 166], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2693, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18020486488397507470" + } + }, + "cborHex": "1bfa15a0fc0ca8eb8e", + "cborBytes": [27, 250, 21, 160, 252, 12, 168, 235, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2694, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14619710908366617392" + } + }, + "cborHex": "1bcae3a59cd4187b30", + "cborBytes": [27, 202, 227, 165, 156, 212, 24, 123, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2695, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5347186043832047272" + } + }, + "cborHex": "1b4a350560528916a8", + "cborBytes": [27, 74, 53, 5, 96, 82, 137, 22, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2696, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6909769158137986385" + } + }, + "cborHex": "1b5fe46e7096c3bd51", + "cborBytes": [27, 95, 228, 110, 112, 150, 195, 189, 81], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2697, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7262058305063086599" + } + }, + "cborHex": "1b64c8038d6b75ea07", + "cborBytes": [27, 100, 200, 3, 141, 107, 117, 234, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2698, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9395534937145087327" + } + }, + "cborHex": "1b8263a53ee34e155f", + "cborBytes": [27, 130, 99, 165, 62, 227, 78, 21, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2699, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8319241301137623208" + } + }, + "cborHex": "1b7373e1e2db1108a8", + "cborBytes": [27, 115, 115, 225, 226, 219, 17, 8, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2700, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4226361264868521909" + } + }, + "cborHex": "1b3aa70d2d9cf577b5", + "cborBytes": [27, 58, 167, 13, 45, 156, 245, 119, 181], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2701, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5369430378018843474" + } + }, + "cborHex": "1b4a840c7af8012b52", + "cborBytes": [27, 74, 132, 12, 122, 248, 1, 43, 82], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2702, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7204091875735068014" + } + }, + "cborHex": "1b63fa13645e775d6e", + "cborBytes": [27, 99, 250, 19, 100, 94, 119, 93, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2703, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6968749980597435714" + } + }, + "cborHex": "1b60b5f92f72053d42", + "cborBytes": [27, 96, 181, 249, 47, 114, 5, 61, 66], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2704, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8864405522986982614" + } + }, + "cborHex": "1b7b04b1db86a65cd6", + "cborBytes": [27, 123, 4, 177, 219, 134, 166, 92, 214], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2705, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14802267071442847716" + } + }, + "cborHex": "1bcd6c3779c7d007e4", + "cborBytes": [27, 205, 108, 55, 121, 199, 208, 7, 228], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2706, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1405652266853412979" + } + }, + "cborHex": "1b1381e14a0b853073", + "cborBytes": [27, 19, 129, 225, 74, 11, 133, 48, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2707, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2558543877673690051" + } + }, + "cborHex": "1b2381c619dafda3c3", + "cborBytes": [27, 35, 129, 198, 25, 218, 253, 163, 195], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2708, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1447636292387134221" + } + }, + "cborHex": "1b14170989bbb2db0d", + "cborBytes": [27, 20, 23, 9, 137, 187, 178, 219, 13], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2709, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11402184963756006985" + } + }, + "cborHex": "1b9e3cb2d02bfa1e49", + "cborBytes": [27, 158, 60, 178, 208, 43, 250, 30, 73], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2710, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8620031390576524257" + } + }, + "cborHex": "1b77a080e0fc07bbe1", + "cborBytes": [27, 119, 160, 128, 224, 252, 7, 187, 225], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2711, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7984069347842264692" + } + }, + "cborHex": "1b6ecd1cc53c390e74", + "cborBytes": [27, 110, 205, 28, 197, 60, 57, 14, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2712, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4785256111250180048" + } + }, + "cborHex": "1b4268a5146e5587d0", + "cborBytes": [27, 66, 104, 165, 20, 110, 85, 135, 208], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2713, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9830959246819856451" + } + }, + "cborHex": "1b886e95592c0a1043", + "cborBytes": [27, 136, 110, 149, 89, 44, 10, 16, 67], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2714, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2000149525856536555" + } + }, + "cborHex": "1b1bc1f565825847eb", + "cborBytes": [27, 27, 193, 245, 101, 130, 88, 71, 235], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2715, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12746423066654155954" + } + }, + "cborHex": "1bb0e4643ee4c424b2", + "cborBytes": [27, 176, 228, 100, 62, 228, 196, 36, 178], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2716, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14709122641688936991" + } + }, + "cborHex": "1bcc214d1c3f86421f", + "cborBytes": [27, 204, 33, 77, 28, 63, 134, 66, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2717, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10848234545726539167" + } + }, + "cborHex": "1b968cabd7ca26c59f", + "cborBytes": [27, 150, 140, 171, 215, 202, 38, 197, 159], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2718, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11062718646973423258" + } + }, + "cborHex": "1b9986abff22f0de9a", + "cborBytes": [27, 153, 134, 171, 255, 34, 240, 222, 154], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2719, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7625362491962603870" + } + }, + "cborHex": "1b69d2bac91904b95e", + "cborBytes": [27, 105, 210, 186, 201, 25, 4, 185, 94], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2720, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2195908005278698001" + } + }, + "cborHex": "1b1e796eb24612ca11", + "cborBytes": [27, 30, 121, 110, 178, 70, 18, 202, 17], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2721, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2003877813128546395" + } + }, + "cborHex": "1b1bcf344108d0485b", + "cborBytes": [27, 27, 207, 52, 65, 8, 208, 72, 91], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2722, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2357991791605565293" + } + }, + "cborHex": "1b20b9450a91efc76d", + "cborBytes": [27, 32, 185, 69, 10, 145, 239, 199, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2723, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17621771557644201794" + } + }, + "cborHex": "1bf48d1bde1676ef42", + "cborBytes": [27, 244, 141, 27, 222, 22, 118, 239, 66], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2724, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2449418133486074666" + } + }, + "cborHex": "1b21fe14d098d67b2a", + "cborBytes": [27, 33, 254, 20, 208, 152, 214, 123, 42], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2725, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8568290874183319227" + } + }, + "cborHex": "1b76e8af273feafebb", + "cborBytes": [27, 118, 232, 175, 39, 63, 234, 254, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2726, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13154700037190290535" + } + }, + "cborHex": "1bb68ee1fcbb8b8c67", + "cborBytes": [27, 182, 142, 225, 252, 187, 139, 140, 103], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2727, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10494217153083658064" + } + }, + "cborHex": "1b91a2f2e6655ccf50", + "cborBytes": [27, 145, 162, 242, 230, 101, 92, 207, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2728, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8162702344051471078" + } + }, + "cborHex": "1b7147be88b86fb2e6", + "cborBytes": [27, 113, 71, 190, 136, 184, 111, 178, 230], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2729, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15767412295002271320" + } + }, + "cborHex": "1bdad119f166bcae58", + "cborBytes": [27, 218, 209, 25, 241, 102, 188, 174, 88], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2730, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5668814352192859532" + } + }, + "cborHex": "1b4eabac9e60176d8c", + "cborBytes": [27, 78, 171, 172, 158, 96, 23, 109, 140], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2731, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18011825473129544577" + } + }, + "cborHex": "1bf9f6dbd64a37fb81", + "cborBytes": [27, 249, 246, 219, 214, 74, 55, 251, 129], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2732, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4454996349267271557" + } + }, + "cborHex": "1b3dd3539379bcdf85", + "cborBytes": [27, 61, 211, 83, 147, 121, 188, 223, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2733, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11799470467341167969" + } + }, + "cborHex": "1ba3c023dfaf952d61", + "cborBytes": [27, 163, 192, 35, 223, 175, 149, 45, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2734, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10406157488492984602" + } + }, + "cborHex": "1b906a191a0265391a", + "cborBytes": [27, 144, 106, 25, 26, 2, 101, 57, 26], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2735, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9293532071546221505" + } + }, + "cborHex": "1b80f9422e093673c1", + "cborBytes": [27, 128, 249, 66, 46, 9, 54, 115, 193], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2736, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7760008873458447786" + } + }, + "cborHex": "1b6bb116f4c45eb5aa", + "cborBytes": [27, 107, 177, 22, 244, 196, 94, 181, 170], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2737, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7032854366146786301" + } + }, + "cborHex": "1b6199b7c8cb3bf3fd", + "cborBytes": [27, 97, 153, 183, 200, 203, 59, 243, 253], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2738, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17769316482083520381" + } + }, + "cborHex": "1bf6994b31d014ff7d", + "cborBytes": [27, 246, 153, 75, 49, 208, 20, 255, 125], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2739, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3855951202227823736" + } + }, + "cborHex": "1b358317305007a478", + "cborBytes": [27, 53, 131, 23, 48, 80, 7, 164, 120], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2740, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17046128601114983110" + } + }, + "cborHex": "1bec9003a60115bac6", + "cborBytes": [27, 236, 144, 3, 166, 1, 21, 186, 198], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2741, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1137738172183547030" + } + }, + "cborHex": "1b0fca0ed6f0670c96", + "cborBytes": [27, 15, 202, 14, 214, 240, 103, 12, 150], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2742, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14917756076816822942" + } + }, + "cborHex": "1bcf06841d3c97729e", + "cborBytes": [27, 207, 6, 132, 29, 60, 151, 114, 158], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2743, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14653110919320651951" + } + }, + "cborHex": "1bcb5a4ebee08148af", + "cborBytes": [27, 203, 90, 78, 190, 224, 129, 72, 175], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2744, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1334476574783419456" + } + }, + "cborHex": "1b1285035fd90bb440", + "cborBytes": [27, 18, 133, 3, 95, 217, 11, 180, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2745, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8279714471274554670" + } + }, + "cborHex": "1b72e774719dfb252e", + "cborBytes": [27, 114, 231, 116, 113, 157, 251, 37, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2746, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6490628134271242501" + } + }, + "cborHex": "1b5a1357e63864d105", + "cborBytes": [27, 90, 19, 87, 230, 56, 100, 209, 5], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2747, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4749642445661535334" + } + }, + "cborHex": "1b41ea1ea3bfc5fc66", + "cborBytes": [27, 65, 234, 30, 163, 191, 197, 252, 102], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2748, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6272999603368815922" + } + }, + "cborHex": "1b570e2be74af6ed32", + "cborBytes": [27, 87, 14, 43, 231, 74, 246, 237, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2749, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10271020912286335766" + } + }, + "cborHex": "1b8e89ff19fd6f8316", + "cborBytes": [27, 142, 137, 255, 25, 253, 111, 131, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2750, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4163592288557001234" + } + }, + "cborHex": "1b39c80d2074feea12", + "cborBytes": [27, 57, 200, 13, 32, 116, 254, 234, 18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2751, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3119286991554077604" + } + }, + "cborHex": "1b2b49eefdfc13e3a4", + "cborBytes": [27, 43, 73, 238, 253, 252, 19, 227, 164], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2752, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15250364366655155525" + } + }, + "cborHex": "1bd3a42d9771c16d45", + "cborBytes": [27, 211, 164, 45, 151, 113, 193, 109, 69], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2753, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7254511159733576082" + } + }, + "cborHex": "1b64ad3376b706e192", + "cborBytes": [27, 100, 173, 51, 118, 183, 6, 225, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2754, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15369843965247426759" + } + }, + "cborHex": "1bd54ca7a749c110c7", + "cborBytes": [27, 213, 76, 167, 167, 73, 193, 16, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2755, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "934067604563192798" + } + }, + "cborHex": "1b0cf6798996306bde", + "cborBytes": [27, 12, 246, 121, 137, 150, 48, 107, 222], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2756, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8394238182526563860" + } + }, + "cborHex": "1b747e532705843614", + "cborBytes": [27, 116, 126, 83, 39, 5, 132, 54, 20], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2757, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14030172166886473837" + } + }, + "cborHex": "1bc2b52f4030d7406d", + "cborBytes": [27, 194, 181, 47, 64, 48, 215, 64, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2758, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17879036587840659488" + } + }, + "cborHex": "1bf81f190ca8746020", + "cborBytes": [27, 248, 31, 25, 12, 168, 116, 96, 32], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2759, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10668683795188973871" + } + }, + "cborHex": "1b940ec762f934812f", + "cborBytes": [27, 148, 14, 199, 98, 249, 52, 129, 47], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2760, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6569118808146031120" + } + }, + "cborHex": "1b5b2a32c056e1b210", + "cborBytes": [27, 91, 42, 50, 192, 86, 225, 178, 16], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2761, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "743479015899202160" + } + }, + "cborHex": "1b0a515e39d0a10270", + "cborBytes": [27, 10, 81, 94, 57, 208, 161, 2, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2762, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2885288971273863850" + } + }, + "cborHex": "1b280a9b084f2182aa", + "cborBytes": [27, 40, 10, 155, 8, 79, 33, 130, 170], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2763, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17914657209634409478" + } + }, + "cborHex": "1bf89da5d0f5264c06", + "cborBytes": [27, 248, 157, 165, 208, 245, 38, 76, 6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2764, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6183204455610998380" + } + }, + "cborHex": "1b55cf27b13e4e5e6c", + "cborBytes": [27, 85, 207, 39, 177, 62, 78, 94, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2765, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8701521949072484592" + } + }, + "cborHex": "1b78c2041c2bbae8f0", + "cborBytes": [27, 120, 194, 4, 28, 43, 186, 232, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2766, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8543683986722558674" + } + }, + "cborHex": "1b76914351cdca92d2", + "cborBytes": [27, 118, 145, 67, 81, 205, 202, 146, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2767, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7843729757572877756" + } + }, + "cborHex": "1b6cda86a81a4acdbc", + "cborBytes": [27, 108, 218, 134, 168, 26, 74, 205, 188], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2768, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2738138435727115208" + } + }, + "cborHex": "1b25ffd266675bc3c8", + "cborBytes": [27, 37, 255, 210, 102, 103, 91, 195, 200], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2769, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4238502699668650629" + } + }, + "cborHex": "1b3ad22fbfb148ba85", + "cborBytes": [27, 58, 210, 47, 191, 177, 72, 186, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2770, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15251779665698986521" + } + }, + "cborHex": "1bd3a934cc6e839a19", + "cborBytes": [27, 211, 169, 52, 204, 110, 131, 154, 25], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2771, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3360748840749698753" + } + }, + "cborHex": "1b2ea3c743c0310ec1", + "cborBytes": [27, 46, 163, 199, 67, 192, 49, 14, 193], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2772, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15764542966531049379" + } + }, + "cborHex": "1bdac6e84dce7747a3", + "cborBytes": [27, 218, 198, 232, 77, 206, 119, 71, 163], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2773, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17253338461235345516" + } + }, + "cborHex": "1bef702beb1b84786c", + "cborBytes": [27, 239, 112, 43, 235, 27, 132, 120, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2774, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8869177006510488685" + } + }, + "cborHex": "1b7b15a57f1b1ebc6d", + "cborBytes": [27, 123, 21, 165, 127, 27, 30, 188, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2775, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8931795579526889167" + } + }, + "cborHex": "1b7bf41cc1c41abecf", + "cborBytes": [27, 123, 244, 28, 193, 196, 26, 190, 207], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2776, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9795689264664282368" + } + }, + "cborHex": "1b87f1477c866c0500", + "cborBytes": [27, 135, 241, 71, 124, 134, 108, 5, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2777, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2284136112190576985" + } + }, + "cborHex": "1b1fb2e1b131c2d959", + "cborBytes": [27, 31, 178, 225, 177, 49, 194, 217, 89], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2778, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16285054292420296704" + } + }, + "cborHex": "1be2002298d7a98000", + "cborBytes": [27, 226, 0, 34, 152, 215, 169, 128, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2779, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5906073090274848187" + } + }, + "cborHex": "1b51f6962f13536dbb", + "cborBytes": [27, 81, 246, 150, 47, 19, 83, 109, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2780, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7137551022019385897" + } + }, + "cborHex": "1b630dacd691b11a29", + "cborBytes": [27, 99, 13, 172, 214, 145, 177, 26, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2781, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6622813989404671160" + } + }, + "cborHex": "1b5be8f63bf3f3fcb8", + "cborBytes": [27, 91, 232, 246, 59, 243, 243, 252, 184], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2782, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15341155237598196056" + } + }, + "cborHex": "1bd4e6bb685d29f158", + "cborBytes": [27, 212, 230, 187, 104, 93, 41, 241, 88], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2783, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12907117245512690477" + } + }, + "cborHex": "1bb31f4abffd1a2b2d", + "cborBytes": [27, 179, 31, 74, 191, 253, 26, 43, 45], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2784, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3845128395219630144" + } + }, + "cborHex": "1b355ca3e730d57840", + "cborBytes": [27, 53, 92, 163, 231, 48, 213, 120, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2785, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16693153149614082610" + } + }, + "cborHex": "1be7a9fe586ff0ca32", + "cborBytes": [27, 231, 169, 254, 88, 111, 240, 202, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2786, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10250001911133526493" + } + }, + "cborHex": "1b8e3f526e6c3059dd", + "cborBytes": [27, 142, 63, 82, 110, 108, 48, 89, 221], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2787, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13990458566920290885" + } + }, + "cborHex": "1bc22817f1261ac245", + "cborBytes": [27, 194, 40, 23, 241, 38, 26, 194, 69], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2788, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8078983830506250933" + } + }, + "cborHex": "1b701e50fd537322b5", + "cborBytes": [27, 112, 30, 80, 253, 83, 115, 34, 181], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2789, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10462334814485212102" + } + }, + "cborHex": "1b9131ae14fa97ebc6", + "cborBytes": [27, 145, 49, 174, 20, 250, 151, 235, 198], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2790, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4958077377987688862" + } + }, + "cborHex": "1b44cea11b33db399e", + "cborBytes": [27, 68, 206, 161, 27, 51, 219, 57, 158], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2791, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6332996977494911612" + } + }, + "cborHex": "1b57e353328734ea7c", + "cborBytes": [27, 87, 227, 83, 50, 135, 52, 234, 124], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2792, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15013143422990400163" + } + }, + "cborHex": "1bd05966667155baa3", + "cborBytes": [27, 208, 89, 102, 102, 113, 85, 186, 163], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2793, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4340608422008317515" + } + }, + "cborHex": "1b3c3cf05cbedfe64b", + "cborBytes": [27, 60, 60, 240, 92, 190, 223, 230, 75], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2794, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2400314318058478104" + } + }, + "cborHex": "1b214fa127a528da18", + "cborBytes": [27, 33, 79, 161, 39, 165, 40, 218, 24], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2795, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8887381606960078640" + } + }, + "cborHex": "1b7b56527bf2321f30", + "cborBytes": [27, 123, 86, 82, 123, 242, 50, 31, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2796, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15128604854867231489" + } + }, + "cborHex": "1bd1f399f5f19c8301", + "cborBytes": [27, 209, 243, 153, 245, 241, 156, 131, 1], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2797, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2024498893768166169" + } + }, + "cborHex": "1b1c18770483390b19", + "cborBytes": [27, 28, 24, 119, 4, 131, 57, 11, 25], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2798, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6574858840897060074" + } + }, + "cborHex": "1b5b3e9747dc017cea", + "cborBytes": [27, 91, 62, 151, 71, 220, 1, 124, 234], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2799, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12636946183277242940" + } + }, + "cborHex": "1baf5f7399abf7ea3c", + "cborBytes": [27, 175, 95, 115, 153, 171, 247, 234, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2800, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13876505663278281186" + } + }, + "cborHex": "1bc09340613f65f1e2", + "cborBytes": [27, 192, 147, 64, 97, 63, 101, 241, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2801, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1815643480152084299" + } + }, + "cborHex": "1b1932762021380f4b", + "cborBytes": [27, 25, 50, 118, 32, 33, 56, 15, 75], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2802, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2017811423034808382" + } + }, + "cborHex": "1b1c00b4cc65b7183e", + "cborBytes": [27, 28, 0, 180, 204, 101, 183, 24, 62], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2803, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6683822345453550038" + } + }, + "cborHex": "1b5cc1b502c293b9d6", + "cborBytes": [27, 92, 193, 181, 2, 194, 147, 185, 214], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2804, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1386826403708146370" + } + }, + "cborHex": "1b133eff44362812c2", + "cborBytes": [27, 19, 62, 255, 68, 54, 40, 18, 194], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2805, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11539467868318383791" + } + }, + "cborHex": "1ba0246ce33426beaf", + "cborBytes": [27, 160, 36, 108, 227, 52, 38, 190, 175], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2806, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6002746952824992074" + } + }, + "cborHex": "1b534e0a8cb7b1314a", + "cborBytes": [27, 83, 78, 10, 140, 183, 177, 49, 74], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2807, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16599584855482513560" + } + }, + "cborHex": "1be65d927a49fd3898", + "cborBytes": [27, 230, 93, 146, 122, 73, 253, 56, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2808, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12283402046062152391" + } + }, + "cborHex": "1baa776914a4d74ac7", + "cborBytes": [27, 170, 119, 105, 20, 164, 215, 74, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2809, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15271594431551037468" + } + }, + "cborHex": "1bd3ef9a391e6ee01c", + "cborBytes": [27, 211, 239, 154, 57, 30, 110, 224, 28], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2810, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10903248128657520346" + } + }, + "cborHex": "1b97501e67b692f6da", + "cborBytes": [27, 151, 80, 30, 103, 182, 146, 246, 218], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2811, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2123172528862249525" + } + }, + "cborHex": "1b1d77062a7bb3c235", + "cborBytes": [27, 29, 119, 6, 42, 123, 179, 194, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2812, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5522691830553187554" + } + }, + "cborHex": "1b4ca48af59c1314e2", + "cborBytes": [27, 76, 164, 138, 245, 156, 19, 20, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2813, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15121757583410723974" + } + }, + "cborHex": "1bd1db466752c3fc86", + "cborBytes": [27, 209, 219, 70, 103, 82, 195, 252, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2814, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1015271639293613060" + } + }, + "cborHex": "1b0e16f82d429fd404", + "cborBytes": [27, 14, 22, 248, 45, 66, 159, 212, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2815, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14810927345419819565" + } + }, + "cborHex": "1bcd8afbf2f1de1a2d", + "cborBytes": [27, 205, 138, 251, 242, 241, 222, 26, 45], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2816, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9521538714253802703" + } + }, + "cborHex": "1b84234d036a3a3ccf", + "cborBytes": [27, 132, 35, 77, 3, 106, 58, 60, 207], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2817, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17471919417503905030" + } + }, + "cborHex": "1bf278ba23d891f506", + "cborBytes": [27, 242, 120, 186, 35, 216, 145, 245, 6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2818, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1879505700692124464" + } + }, + "cborHex": "1b1a15587a0b136330", + "cborBytes": [27, 26, 21, 88, 122, 11, 19, 99, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2819, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1446517004409051684" + } + }, + "cborHex": "1b14130f8d315d1a24", + "cborBytes": [27, 20, 19, 15, 141, 49, 93, 26, 36], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2820, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8339563603442679957" + } + }, + "cborHex": "1b73bc14e994fa4095", + "cborBytes": [27, 115, 188, 20, 233, 148, 250, 64, 149], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2821, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1997747683058625952" + } + }, + "cborHex": "1b1bb96ceee791ada0", + "cborBytes": [27, 27, 185, 108, 238, 231, 145, 173, 160], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2822, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "175315055439551347" + } + }, + "cborHex": "1b026ed81d33409b73", + "cborBytes": [27, 2, 110, 216, 29, 51, 64, 155, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2823, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13124772756809914482" + } + }, + "cborHex": "1bb6248f48c7611872", + "cborBytes": [27, 182, 36, 143, 72, 199, 97, 24, 114], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2824, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4070638811517859845" + } + }, + "cborHex": "1b387dd06e9170b805", + "cborBytes": [27, 56, 125, 208, 110, 145, 112, 184, 5], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2825, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1715423735480701836" + } + }, + "cborHex": "1b17ce68cc7899d38c", + "cborBytes": [27, 23, 206, 104, 204, 120, 153, 211, 140], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2826, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "703831048773592319" + } + }, + "cborHex": "1b09c4829c1c0a64ff", + "cborBytes": [27, 9, 196, 130, 156, 28, 10, 100, 255], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2827, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11987436366470857664" + } + }, + "cborHex": "1ba65beddcf71843c0", + "cborBytes": [27, 166, 91, 237, 220, 247, 24, 67, 192], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2828, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12039243659150373403" + } + }, + "cborHex": "1ba713fc524408321b", + "cborBytes": [27, 167, 19, 252, 82, 68, 8, 50, 27], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2829, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2234238666849773367" + } + }, + "cborHex": "1b1f019c3ae105e737", + "cborBytes": [27, 31, 1, 156, 58, 225, 5, 231, 55], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2830, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1310450829643270085" + } + }, + "cborHex": "1b122fa8162480c7c5", + "cborBytes": [27, 18, 47, 168, 22, 36, 128, 199, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2831, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16140400067117879299" + } + }, + "cborHex": "1bdffe385875409003", + "cborBytes": [27, 223, 254, 56, 88, 117, 64, 144, 3], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2832, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14747345734729515823" + } + }, + "cborHex": "1bcca918cf9a6cc32f", + "cborBytes": [27, 204, 169, 24, 207, 154, 108, 195, 47], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2833, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2357076953008070679" + } + }, + "cborHex": "1b20b605001c4e6017", + "cborBytes": [27, 32, 182, 5, 0, 28, 78, 96, 23], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2834, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3564472514437454083" + } + }, + "cborHex": "1b31778cddd2b01903", + "cborBytes": [27, 49, 119, 140, 221, 210, 176, 25, 3], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2835, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4844961074707058966" + } + }, + "cborHex": "1b433cc26d80825116", + "cborBytes": [27, 67, 60, 194, 109, 128, 130, 81, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2836, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6941767258239600131" + } + }, + "cborHex": "1b60561c8ad4cf0603", + "cborBytes": [27, 96, 86, 28, 138, 212, 207, 6, 3], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2837, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16086598274631740288" + } + }, + "cborHex": "1bdf3f13e67bd62b80", + "cborBytes": [27, 223, 63, 19, 230, 123, 214, 43, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2838, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5640597315757800728" + } + }, + "cborHex": "1b4e476d5f9ec3fd18", + "cborBytes": [27, 78, 71, 109, 95, 158, 195, 253, 24], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2839, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1227610362295513822" + } + }, + "cborHex": "1b1109591ecf3672de", + "cborBytes": [27, 17, 9, 89, 30, 207, 54, 114, 222], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2840, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5238745122089260491" + } + }, + "cborHex": "1b48b3c2eeb6f0d5cb", + "cborBytes": [27, 72, 179, 194, 238, 182, 240, 213, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2841, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6768490571398633350" + } + }, + "cborHex": "1b5dee82504dcbd786", + "cborBytes": [27, 93, 238, 130, 80, 77, 203, 215, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2842, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11419045997507761677" + } + }, + "cborHex": "1b9e7899d5834bd60d", + "cborBytes": [27, 158, 120, 153, 213, 131, 75, 214, 13], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2843, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10630643344053651792" + } + }, + "cborHex": "1b9387a1cc40304950", + "cborBytes": [27, 147, 135, 161, 204, 64, 48, 73, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2844, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7671335186252032021" + } + }, + "cborHex": "1b6a760eb51981e815", + "cborBytes": [27, 106, 118, 14, 181, 25, 129, 232, 21], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2845, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13009411027607866691" + } + }, + "cborHex": "1bb48ab6671d9dcd43", + "cborBytes": [27, 180, 138, 182, 103, 29, 157, 205, 67], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2846, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12175350960871704306" + } + }, + "cborHex": "1ba8f78930ee7806f2", + "cborBytes": [27, 168, 247, 137, 48, 238, 120, 6, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2847, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10150281083416385901" + } + }, + "cborHex": "1b8cdd0addeb66996d", + "cborBytes": [27, 140, 221, 10, 221, 235, 102, 153, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2848, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10381062088363116989" + } + }, + "cborHex": "1b9010f0f7d82889bd", + "cborBytes": [27, 144, 16, 240, 247, 216, 40, 137, 189], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2849, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15611074184088981428" + } + }, + "cborHex": "1bd8a5ad4268e50fb4", + "cborBytes": [27, 216, 165, 173, 66, 104, 229, 15, 180], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2850, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12587888888892744581" + } + }, + "cborHex": "1baeb12a403e89e385", + "cborBytes": [27, 174, 177, 42, 64, 62, 137, 227, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2851, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6097239664202805970" + } + }, + "cborHex": "1b549dbf2b873af2d2", + "cborBytes": [27, 84, 157, 191, 43, 135, 58, 242, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2852, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5247927797407052031" + } + }, + "cborHex": "1b48d46286eb5870ff", + "cborBytes": [27, 72, 212, 98, 134, 235, 88, 112, 255], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2853, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5772750703033208822" + } + }, + "cborHex": "1b501cee2dd72e4ff6", + "cborBytes": [27, 80, 28, 238, 45, 215, 46, 79, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2854, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3584930370586735470" + } + }, + "cborHex": "1b31c03b2da354f36e", + "cborBytes": [27, 49, 192, 59, 45, 163, 84, 243, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2855, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7295507941792263111" + } + }, + "cborHex": "1b653ed9d1de91abc7", + "cborBytes": [27, 101, 62, 217, 209, 222, 145, 171, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2856, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10509054299194384099" + } + }, + "cborHex": "1b91d7a934acc5dee3", + "cborBytes": [27, 145, 215, 169, 52, 172, 197, 222, 227], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2857, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9905847629849305261" + } + }, + "cborHex": "1b8978a3ef985020ad", + "cborBytes": [27, 137, 120, 163, 239, 152, 80, 32, 173], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2858, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4767459740771407651" + } + }, + "cborHex": "1b42296b6009a7d723", + "cborBytes": [27, 66, 41, 107, 96, 9, 167, 215, 35], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2859, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3133153458950527281" + } + }, + "cborHex": "1b2b7b327883885931", + "cborBytes": [27, 43, 123, 50, 120, 131, 136, 89, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2860, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7660825177687033472" + } + }, + "cborHex": "1b6a50b7e90a678680", + "cborBytes": [27, 106, 80, 183, 233, 10, 103, 134, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2861, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1844555285083978771" + } + }, + "cborHex": "1b19992d4247fffc13", + "cborBytes": [27, 25, 153, 45, 66, 71, 255, 252, 19], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2862, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5640483081224126910" + } + }, + "cborHex": "1b4e47057a51f701be", + "cborBytes": [27, 78, 71, 5, 122, 81, 247, 1, 190], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2863, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3156413478682069700" + } + }, + "cborHex": "1b2bcdd555e1198ac4", + "cborBytes": [27, 43, 205, 213, 85, 225, 25, 138, 196], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2864, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15089092323959706506" + } + }, + "cborHex": "1bd1673985f0b1138a", + "cborBytes": [27, 209, 103, 57, 133, 240, 177, 19, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2865, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5190828216012282219" + } + }, + "cborHex": "1b480986c2a17c996b", + "cborBytes": [27, 72, 9, 134, 194, 161, 124, 153, 107], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2866, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16040264203167739195" + } + }, + "cborHex": "1bde9a774ecd3a2d3b", + "cborBytes": [27, 222, 154, 119, 78, 205, 58, 45, 59], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2867, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4819088978625541865" + } + }, + "cborHex": "1b42e0d7e4b7f9b6e9", + "cborBytes": [27, 66, 224, 215, 228, 183, 249, 182, 233], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2868, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8667856208975266230" + } + }, + "cborHex": "1b784a694c3c2281b6", + "cborBytes": [27, 120, 74, 105, 76, 60, 34, 129, 182], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2869, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17691372164519632083" + } + }, + "cborHex": "1bf58461402f6d1cd3", + "cborBytes": [27, 245, 132, 97, 64, 47, 109, 28, 211], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2870, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17757394046472032083" + } + }, + "cborHex": "1bf66eefcd749a0f53", + "cborBytes": [27, 246, 110, 239, 205, 116, 154, 15, 83], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2871, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8429734341864371103" + } + }, + "cborHex": "1b74fc6eb8a5bcb39f", + "cborBytes": [27, 116, 252, 110, 184, 165, 188, 179, 159], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2872, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15470073375449060780" + } + }, + "cborHex": "1bd6b0bdc560de95ac", + "cborBytes": [27, 214, 176, 189, 197, 96, 222, 149, 172], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2873, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "642148729767525152" + } + }, + "cborHex": "1b08e95ede12c2fb20", + "cborBytes": [27, 8, 233, 94, 222, 18, 194, 251, 32], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2874, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2667789527083245187" + } + }, + "cborHex": "1b2505e470b94dde83", + "cborBytes": [27, 37, 5, 228, 112, 185, 77, 222, 131], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2875, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13712502620973446292" + } + }, + "cborHex": "1bbe4c987b58bc3494", + "cborBytes": [27, 190, 76, 152, 123, 88, 188, 52, 148], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2876, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5246179477627848111" + } + }, + "cborHex": "1b48ce2c707ff3c5af", + "cborBytes": [27, 72, 206, 44, 112, 127, 243, 197, 175], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2877, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3891788855422211758" + } + }, + "cborHex": "1b360269582c43d6ae", + "cborBytes": [27, 54, 2, 105, 88, 44, 67, 214, 174], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2878, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10257941365575526858" + } + }, + "cborHex": "1b8e5b8752b5ea29ca", + "cborBytes": [27, 142, 91, 135, 82, 181, 234, 41, 202], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2879, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3945505338992437542" + } + }, + "cborHex": "1b36c140339e0d2926", + "cborBytes": [27, 54, 193, 64, 51, 158, 13, 41, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2880, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16731252547236003476" + } + }, + "cborHex": "1be831598bb559fe94", + "cborBytes": [27, 232, 49, 89, 139, 181, 89, 254, 148], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2881, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "259040144776974342" + } + }, + "cborHex": "1b03984ba3a3ff5006", + "cborBytes": [27, 3, 152, 75, 163, 163, 255, 80, 6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2882, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9375205197133273834" + } + }, + "cborHex": "1b821b6b746f865aea", + "cborBytes": [27, 130, 27, 107, 116, 111, 134, 90, 234], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2883, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14358233026112533903" + } + }, + "cborHex": "1bc742b0dd33b8358f", + "cborBytes": [27, 199, 66, 176, 221, 51, 184, 53, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2884, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "519996302496931436" + } + }, + "cborHex": "1b073765e1ced89e6c", + "cborBytes": [27, 7, 55, 101, 225, 206, 216, 158, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2885, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9459089020707242494" + } + }, + "cborHex": "1b83456f59120d81fe", + "cborBytes": [27, 131, 69, 111, 89, 18, 13, 129, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2886, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11223296187004255750" + } + }, + "cborHex": "1b9bc1286b23627e06", + "cborBytes": [27, 155, 193, 40, 107, 35, 98, 126, 6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2887, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16926895829992790487" + } + }, + "cborHex": "1beae86a1328c2d9d7", + "cborBytes": [27, 234, 232, 106, 19, 40, 194, 217, 215], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2888, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7749639896571584011" + } + }, + "cborHex": "1b6b8c406d34581e0b", + "cborBytes": [27, 107, 140, 64, 109, 52, 88, 30, 11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2889, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17225250310953962813" + } + }, + "cborHex": "1bef0c61e4ff990d3d", + "cborBytes": [27, 239, 12, 97, 228, 255, 153, 13, 61], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2890, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1652843593092286719" + } + }, + "cborHex": "1b16f0147da38bc8ff", + "cborBytes": [27, 22, 240, 20, 125, 163, 139, 200, 255], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2891, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17592585351318983593" + } + }, + "cborHex": "1bf4256b2ae21bd3a9", + "cborBytes": [27, 244, 37, 107, 42, 226, 27, 211, 169], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2892, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13398579498073612285" + } + }, + "cborHex": "1bb9f1511095825ffd", + "cborBytes": [27, 185, 241, 81, 16, 149, 130, 95, 253], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2893, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17167289599134987793" + } + }, + "cborHex": "1bee3e76ef28b2f611", + "cborBytes": [27, 238, 62, 118, 239, 40, 178, 246, 17], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2894, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5459929153970720922" + } + }, + "cborHex": "1b4bc590a33939509a", + "cborBytes": [27, 75, 197, 144, 163, 57, 57, 80, 154], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2895, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8976100618238898896" + } + }, + "cborHex": "1b7c9183f4724b32d0", + "cborBytes": [27, 124, 145, 131, 244, 114, 75, 50, 208], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2896, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16459160497239715353" + } + }, + "cborHex": "1be46aaf44931d6e19", + "cborBytes": [27, 228, 106, 175, 68, 147, 29, 110, 25], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2897, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12434953482049851709" + } + }, + "cborHex": "1bac91d44f0816913d", + "cborBytes": [27, 172, 145, 212, 79, 8, 22, 145, 61], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2898, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7065464892252012854" + } + }, + "cborHex": "1b620d92e293acc136", + "cborBytes": [27, 98, 13, 146, 226, 147, 172, 193, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2899, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13449508005539618560" + } + }, + "cborHex": "1bbaa64045c1f61f00", + "cborBytes": [27, 186, 166, 64, 69, 193, 246, 31, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2900, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3917951666092278854" + } + }, + "cborHex": "1b365f5c4838948446", + "cborBytes": [27, 54, 95, 92, 72, 56, 148, 132, 70], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2901, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7995759998710160004" + } + }, + "cborHex": "1b6ef6a55b00659a84", + "cborBytes": [27, 110, 246, 165, 91, 0, 101, 154, 132], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2902, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14849547070770134090" + } + }, + "cborHex": "1bce14306274b23c4a", + "cborBytes": [27, 206, 20, 48, 98, 116, 178, 60, 74], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2903, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18357347164162294087" + } + }, + "cborHex": "1bfec265fc026b0147", + "cborBytes": [27, 254, 194, 101, 252, 2, 107, 1, 71], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2904, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3653365453326557556" + } + }, + "cborHex": "1b32b35c860036a174", + "cborBytes": [27, 50, 179, 92, 134, 0, 54, 161, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2905, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6756399244423901806" + } + }, + "cborHex": "1b5dc38d50dc9ab26e", + "cborBytes": [27, 93, 195, 141, 80, 220, 154, 178, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2906, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14250261637821033641" + } + }, + "cborHex": "1bc5c319755eb2eca9", + "cborBytes": [27, 197, 195, 25, 117, 94, 178, 236, 169], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2907, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7255483196119433076" + } + }, + "cborHex": "1b64b0a7869283bf74", + "cborBytes": [27, 100, 176, 167, 134, 146, 131, 191, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2908, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8888213702479199391" + } + }, + "cborHex": "1b7b59474548083c9f", + "cborBytes": [27, 123, 89, 71, 69, 72, 8, 60, 159], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2909, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "445190353035482253" + } + }, + "cborHex": "1b062da244721c548d", + "cborBytes": [27, 6, 45, 162, 68, 114, 28, 84, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2910, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7259833670947351093" + } + }, + "cborHex": "1b64c01c426d3caa35", + "cborBytes": [27, 100, 192, 28, 66, 109, 60, 170, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2911, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5819373591441125021" + } + }, + "cborHex": "1b50c29172f5232e9d", + "cborBytes": [27, 80, 194, 145, 114, 245, 35, 46, 157], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2912, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13486301051430226188" + } + }, + "cborHex": "1bbb28f75a5079c90c", + "cborBytes": [27, 187, 40, 247, 90, 80, 121, 201, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2913, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1630834280900083708" + } + }, + "cborHex": "1b16a1e32350943ffc", + "cborBytes": [27, 22, 161, 227, 35, 80, 148, 63, 252], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2914, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11720180700138746467" + } + }, + "cborHex": "1ba2a672402728b263", + "cborBytes": [27, 162, 166, 114, 64, 39, 40, 178, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2915, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17817572307339004918" + } + }, + "cborHex": "1bf744bb9caac74bf6", + "cborBytes": [27, 247, 68, 187, 156, 170, 199, 75, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2916, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2886644633038973325" + } + }, + "cborHex": "1b280f6bffe913698d", + "cborBytes": [27, 40, 15, 107, 255, 233, 19, 105, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2917, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1509428507501338169" + } + }, + "cborHex": "1b14f2913af3771e39", + "cborBytes": [27, 20, 242, 145, 58, 243, 119, 30, 57], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2918, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8114160603482310960" + } + }, + "cborHex": "1b709b4a1405084930", + "cborBytes": [27, 112, 155, 74, 20, 5, 8, 73, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2919, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "223769431391880522" + } + }, + "cborHex": "1b031afd1cbdb4454a", + "cborBytes": [27, 3, 26, 253, 28, 189, 180, 69, 74], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2920, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5213027031653375920" + } + }, + "cborHex": "1b485864772a355fb0", + "cborBytes": [27, 72, 88, 100, 119, 42, 53, 95, 176], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2921, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3535253224647629602" + } + }, + "cborHex": "1b310fbe13c62d1b22", + "cborBytes": [27, 49, 15, 190, 19, 198, 45, 27, 34], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2922, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4394201923598535186" + } + }, + "cborHex": "1b3cfb575e376dca12", + "cborBytes": [27, 60, 251, 87, 94, 55, 109, 202, 18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2923, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11087933605802323946" + } + }, + "cborHex": "1b99e040de3af6afea", + "cborBytes": [27, 153, 224, 64, 222, 58, 246, 175, 234], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2924, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10448147865073949422" + } + }, + "cborHex": "1b90ff47206a7d1aee", + "cborBytes": [27, 144, 255, 71, 32, 106, 125, 26, 238], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2925, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1204613957934290780" + } + }, + "cborHex": "1b10b7a6032e26975c", + "cborBytes": [27, 16, 183, 166, 3, 46, 38, 151, 92], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2926, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1877859556820445268" + } + }, + "cborHex": "1b1a0f7f514e5ae854", + "cborBytes": [27, 26, 15, 127, 81, 78, 90, 232, 84], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2927, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9397815519222430461" + } + }, + "cborHex": "1b826bbf6c47e7fafd", + "cborBytes": [27, 130, 107, 191, 108, 71, 231, 250, 253], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2928, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1173475758381828233" + } + }, + "cborHex": "1b104905fc22e18889", + "cborBytes": [27, 16, 73, 5, 252, 34, 225, 136, 137], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2929, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9611169892515025402" + } + }, + "cborHex": "1b8561bc18574991fa", + "cborBytes": [27, 133, 97, 188, 24, 87, 73, 145, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2930, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17933595221558743490" + } + }, + "cborHex": "1bf8e0edd676a6d1c2", + "cborBytes": [27, 248, 224, 237, 214, 118, 166, 209, 194], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2931, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2362810876846422609" + } + }, + "cborHex": "1b20ca63f949dc3a51", + "cborBytes": [27, 32, 202, 99, 249, 73, 220, 58, 81], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2932, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2999439687251839006" + } + }, + "cborHex": "1b29a02680fbdac81e", + "cborBytes": [27, 41, 160, 38, 128, 251, 218, 200, 30], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2933, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6934526485346551558" + } + }, + "cborHex": "1b603c6319049e8706", + "cborBytes": [27, 96, 60, 99, 25, 4, 158, 135, 6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2934, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1090189765121228972" + } + }, + "cborHex": "1b0f2121d0b7d140ac", + "cborBytes": [27, 15, 33, 33, 208, 183, 209, 64, 172], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2935, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1818259650551000745" + } + }, + "cborHex": "1b193bc184c484aea9", + "cborBytes": [27, 25, 59, 193, 132, 196, 132, 174, 169], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2936, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12898510247860171005" + } + }, + "cborHex": "1bb300b6bb2f70f0fd", + "cborBytes": [27, 179, 0, 182, 187, 47, 112, 240, 253], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2937, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15754614583616919920" + } + }, + "cborHex": "1bdaa3a27e05acd970", + "cborBytes": [27, 218, 163, 162, 126, 5, 172, 217, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2938, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15567787922316672299" + } + }, + "cborHex": "1bd80be4a2384d3d2b", + "cborBytes": [27, 216, 11, 228, 162, 56, 77, 61, 43], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2939, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16646890051223306699" + } + }, + "cborHex": "1be705a24d762641cb", + "cborBytes": [27, 231, 5, 162, 77, 118, 38, 65, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2940, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9794551730968506250" + } + }, + "cborHex": "1b87ed3ce7d290af8a", + "cborBytes": [27, 135, 237, 60, 231, 210, 144, 175, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2941, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8242220856888561867" + } + }, + "cborHex": "1b726240333f2890cb", + "cborBytes": [27, 114, 98, 64, 51, 63, 40, 144, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2942, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15840182208906553139" + } + }, + "cborHex": "1bdbd3a1cb4b566733", + "cborBytes": [27, 219, 211, 161, 203, 75, 86, 103, 51], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2943, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5936423404803567524" + } + }, + "cborHex": "1b526269a257a1afa4", + "cborBytes": [27, 82, 98, 105, 162, 87, 161, 175, 164], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2944, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10614347914323603581" + } + }, + "cborHex": "1b934dbd30dbaab07d", + "cborBytes": [27, 147, 77, 189, 48, 219, 170, 176, 125], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2945, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1758177100794314145" + } + }, + "cborHex": "1b18664cc209123da1", + "cborBytes": [27, 24, 102, 76, 194, 9, 18, 61, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2946, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1238182878837143830" + } + }, + "cborHex": "1b112ee8c4a40ef916", + "cborBytes": [27, 17, 46, 232, 196, 164, 14, 249, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2947, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5144291256220003560" + } + }, + "cborHex": "1b476431a454242ce8", + "cborBytes": [27, 71, 100, 49, 164, 84, 36, 44, 232], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2948, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16704541002881366092" + } + }, + "cborHex": "1be7d27389a4b0f84c", + "cborBytes": [27, 231, 210, 115, 137, 164, 176, 248, 76], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2949, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3401064574035818437" + } + }, + "cborHex": "1b2f330235e191f7c5", + "cborBytes": [27, 47, 51, 2, 53, 225, 145, 247, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2950, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15331253923341844677" + } + }, + "cborHex": "1bd4c38e36fe1ac0c5", + "cborBytes": [27, 212, 195, 142, 54, 254, 26, 192, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2951, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7067704695554143596" + } + }, + "cborHex": "1b621587f96bdd756c", + "cborBytes": [27, 98, 21, 135, 249, 107, 221, 117, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2952, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14658010558939156332" + } + }, + "cborHex": "1bcb6bb6f11f7e4f6c", + "cborBytes": [27, 203, 107, 182, 241, 31, 126, 79, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2953, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6710343970611272232" + } + }, + "cborHex": "1b5d1fee49d0f81a28", + "cborBytes": [27, 93, 31, 238, 73, 208, 248, 26, 40], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2954, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6579542767706130497" + } + }, + "cborHex": "1b5b4f3b498d9d4841", + "cborBytes": [27, 91, 79, 59, 73, 141, 157, 72, 65], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2955, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9515015770568814708" + } + }, + "cborHex": "1b840c206e3cfe7074", + "cborBytes": [27, 132, 12, 32, 110, 60, 254, 112, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2956, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13886611250108520076" + } + }, + "cborHex": "1bc0b7275b88a9568c", + "cborBytes": [27, 192, 183, 39, 91, 136, 169, 86, 140], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2957, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18408971383380199996" + } + }, + "cborHex": "1bff79cdf032b54a3c", + "cborBytes": [27, 255, 121, 205, 240, 50, 181, 74, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2958, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5794895260664433255" + } + }, + "cborHex": "1b506b9a89727f8a67", + "cborBytes": [27, 80, 107, 154, 137, 114, 127, 138, 103], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2959, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14486148456504497636" + } + }, + "cborHex": "1bc9092345318615e4", + "cborBytes": [27, 201, 9, 35, 69, 49, 134, 21, 228], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2960, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8705142198465435322" + } + }, + "cborHex": "1b78cee0b52acb96ba", + "cborBytes": [27, 120, 206, 224, 181, 42, 203, 150, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2961, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2390848037992148336" + } + }, + "cborHex": "1b212dff9f90762d70", + "cborBytes": [27, 33, 45, 255, 159, 144, 118, 45, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2962, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7276356086416006970" + } + }, + "cborHex": "1b64facf4f0e13df3a", + "cborBytes": [27, 100, 250, 207, 79, 14, 19, 223, 58], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2963, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1175319914517341412" + } + }, + "cborHex": "1b104f933c323fa4e4", + "cborBytes": [27, 16, 79, 147, 60, 50, 63, 164, 228], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2964, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5385091719364951608" + } + }, + "cborHex": "1b4abbb06327a53e38", + "cborBytes": [27, 74, 187, 176, 99, 39, 165, 62, 56], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2965, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8195168789302631874" + } + }, + "cborHex": "1b71bb169810c05dc2", + "cborBytes": [27, 113, 187, 22, 152, 16, 192, 93, 194], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2966, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5934047184508130711" + } + }, + "cborHex": "1b5259f87971039597", + "cborBytes": [27, 82, 89, 248, 121, 113, 3, 149, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2967, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4025994192712284334" + } + }, + "cborHex": "1b37df34633c66b8ae", + "cborBytes": [27, 55, 223, 52, 99, 60, 102, 184, 174], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2968, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11134328592977454851" + } + }, + "cborHex": "1b9a8514dcf4e56703", + "cborBytes": [27, 154, 133, 20, 220, 244, 229, 103, 3], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2969, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1713420823875353186" + } + }, + "cborHex": "1b17c74b2945d8fa62", + "cborBytes": [27, 23, 199, 75, 41, 69, 216, 250, 98], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2970, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18324779969309235442" + } + }, + "cborHex": "1bfe4eb24b11ded8f2", + "cborBytes": [27, 254, 78, 178, 75, 17, 222, 216, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2971, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1900649847708755444" + } + }, + "cborHex": "1b1a6076f76714a5f4", + "cborBytes": [27, 26, 96, 118, 247, 103, 20, 165, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2972, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13347488814303025627" + } + }, + "cborHex": "1bb93bce5bcc0819db", + "cborBytes": [27, 185, 59, 206, 91, 204, 8, 25, 219], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2973, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12467655675880942437" + } + }, + "cborHex": "1bad0602c7dec42b65", + "cborBytes": [27, 173, 6, 2, 199, 222, 196, 43, 101], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2974, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5152473972936520991" + } + }, + "cborHex": "1b478143c78753b51f", + "cborBytes": [27, 71, 129, 67, 199, 135, 83, 181, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2975, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17752338243910567043" + } + }, + "cborHex": "1bf65cf993b0df0483", + "cborBytes": [27, 246, 92, 249, 147, 176, 223, 4, 131], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2976, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4662013601658628730" + } + }, + "cborHex": "1b40b2ccab98e6ea7a", + "cborBytes": [27, 64, 178, 204, 171, 152, 230, 234, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2977, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7919021696603457629" + } + }, + "cborHex": "1b6de60446baa9085d", + "cborBytes": [27, 109, 230, 4, 70, 186, 169, 8, 93], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2978, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16344191247993542133" + } + }, + "cborHex": "1be2d23b5845b415f5", + "cborBytes": [27, 226, 210, 59, 88, 69, 180, 21, 245], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2979, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10590936566499239846" + } + }, + "cborHex": "1b92fa90b1ace1e7a6", + "cborBytes": [27, 146, 250, 144, 177, 172, 225, 231, 166], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2980, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "305769630335027719" + } + }, + "cborHex": "1b043e4fdbd738ca07", + "cborBytes": [27, 4, 62, 79, 219, 215, 56, 202, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2981, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1585837701296768842" + } + }, + "cborHex": "1b160206fcb937474a", + "cborBytes": [27, 22, 2, 6, 252, 185, 55, 71, 74], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2982, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16415724560743664775" + } + }, + "cborHex": "1be3d05e8385c80c87", + "cborBytes": [27, 227, 208, 94, 131, 133, 200, 12, 135], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2983, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1393349791185644608" + } + }, + "cborHex": "1b13562c40b77c2c40", + "cborBytes": [27, 19, 86, 44, 64, 183, 124, 44, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2984, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12722612291558289931" + } + }, + "cborHex": "1bb08fcc78cd59b20b", + "cborBytes": [27, 176, 143, 204, 120, 205, 89, 178, 11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2985, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8703649341092187681" + } + }, + "cborHex": "1b78c992f6395cce21", + "cborBytes": [27, 120, 201, 146, 246, 57, 92, 206, 33], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2986, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17830549230781634684" + } + }, + "cborHex": "1bf772d60e1ada987c", + "cborBytes": [27, 247, 114, 214, 14, 26, 218, 152, 124], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2987, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5828421267124121636" + } + }, + "cborHex": "1b50e2b6431c43f024", + "cborBytes": [27, 80, 226, 182, 67, 28, 67, 240, 36], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2988, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11096179419677862489" + } + }, + "cborHex": "1b99fd8c6461e62a59", + "cborBytes": [27, 153, 253, 140, 100, 97, 230, 42, 89], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2989, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14028393824980597655" + } + }, + "cborHex": "1bc2aedddbb3407b97", + "cborBytes": [27, 194, 174, 221, 219, 179, 64, 123, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2990, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11682651227582269674" + } + }, + "cborHex": "1ba2211d64e6d288ea", + "cborBytes": [27, 162, 33, 29, 100, 230, 210, 136, 234], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2991, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14248294020101913785" + } + }, + "cborHex": "1bc5bc1bebab7f3cb9", + "cborBytes": [27, 197, 188, 27, 235, 171, 127, 60, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2992, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10718584498241385753" + } + }, + "cborHex": "1b94c00fcfc8afb519", + "cborBytes": [27, 148, 192, 15, 207, 200, 175, 181, 25], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2993, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16446285513518736222" + } + }, + "cborHex": "1be43cf189d3efe35e", + "cborBytes": [27, 228, 60, 241, 137, 211, 239, 227, 94], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2994, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "268280971248367156" + } + }, + "cborHex": "1b03b9201f37417634", + "cborBytes": [27, 3, 185, 32, 31, 55, 65, 118, 52], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2995, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "892215879516014084" + } + }, + "cborHex": "1b0c61c99d8183c604", + "cborBytes": [27, 12, 97, 201, 157, 129, 131, 198, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2996, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16361031093917842873" + } + }, + "cborHex": "1be30e0f187017fdb9", + "cborBytes": [27, 227, 14, 15, 24, 112, 23, 253, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2997, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2353470471303211755" + } + }, + "cborHex": "1b20a934eca7662aeb", + "cborBytes": [27, 32, 169, 52, 236, 167, 102, 42, 235], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2998, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2073127849044227826" + } + }, + "cborHex": "1b1cc53acb784036f2", + "cborBytes": [27, 28, 197, 58, 203, 120, 64, 54, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 2999, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6124671931166246469" + } + }, + "cborHex": "1b54ff34abe6f84645", + "cborBytes": [27, 84, 255, 52, 171, 230, 248, 70, 69], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3000, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15611272260493744154" + } + }, + "cborHex": "1bd8a66168aaa3981a", + "cborBytes": [27, 216, 166, 97, 104, 170, 163, 152, 26], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3001, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6806004599301554386" + } + }, + "cborHex": "1b5e73c91f910b40d2", + "cborBytes": [27, 94, 115, 201, 31, 145, 11, 64, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3002, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13044908926815731751" + } + }, + "cborHex": "1bb508d38dd62c8027", + "cborBytes": [27, 181, 8, 211, 141, 214, 44, 128, 39], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3003, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12301231946323517656" + } + }, + "cborHex": "1baab6c147cc4ce0d8", + "cborBytes": [27, 170, 182, 193, 71, 204, 76, 224, 216], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3004, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "548059732231542024" + } + }, + "cborHex": "1b079b196c375b5508", + "cborBytes": [27, 7, 155, 25, 108, 55, 91, 85, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3005, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "841769609386393358" + } + }, + "cborHex": "1b0bae90fff631ff0e", + "cborBytes": [27, 11, 174, 144, 255, 246, 49, 255, 14], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3006, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8121923828542525392" + } + }, + "cborHex": "1b70b6deb0b50ecfd0", + "cborBytes": [27, 112, 182, 222, 176, 181, 14, 207, 208], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3007, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1626025302365342423" + } + }, + "cborHex": "1b1690cd65bf488ad7", + "cborBytes": [27, 22, 144, 205, 101, 191, 72, 138, 215], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3008, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1881025030093094429" + } + }, + "cborHex": "1b1a1abe4c7c513e1d", + "cborBytes": [27, 26, 26, 190, 76, 124, 81, 62, 29], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3009, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5065876065136136775" + } + }, + "cborHex": "1b464d9b70ea97d247", + "cborBytes": [27, 70, 77, 155, 112, 234, 151, 210, 71], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3010, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13663708626334705115" + } + }, + "cborHex": "1bbd9f3e9a2b1ee5db", + "cborBytes": [27, 189, 159, 62, 154, 43, 30, 229, 219], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3011, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7151058931129007289" + } + }, + "cborHex": "1b633daa35bdd43cb9", + "cborBytes": [27, 99, 61, 170, 53, 189, 212, 60, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3012, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9641532137383777891" + } + }, + "cborHex": "1b85cd9a655b45d663", + "cborBytes": [27, 133, 205, 154, 101, 91, 69, 214, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3013, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14376857548480887005" + } + }, + "cborHex": "1bc784dbc4bb98b8dd", + "cborBytes": [27, 199, 132, 219, 196, 187, 152, 184, 221], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3014, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1833355896212657161" + } + }, + "cborHex": "1b197163795c9f9409", + "cborBytes": [27, 25, 113, 99, 121, 92, 159, 148, 9], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3015, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6312250207551565886" + } + }, + "cborHex": "1b57999e1eba7f303e", + "cborBytes": [27, 87, 153, 158, 30, 186, 127, 48, 62], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3016, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7449852330529488862" + } + }, + "cborHex": "1b676331393e537fde", + "cborBytes": [27, 103, 99, 49, 57, 62, 83, 127, 222], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3017, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15868179292301777597" + } + }, + "cborHex": "1bdc3718fe3ddb5abd", + "cborBytes": [27, 220, 55, 24, 254, 61, 219, 90, 189], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3018, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8334690196064588184" + } + }, + "cborHex": "1b73aac493015c5198", + "cborBytes": [27, 115, 170, 196, 147, 1, 92, 81, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3019, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1201118823065287367" + } + }, + "cborHex": "1b10ab3b34add77ac7", + "cborBytes": [27, 16, 171, 59, 52, 173, 215, 122, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3020, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18114476217095400502" + } + }, + "cborHex": "1bfb638c25143bac36", + "cborBytes": [27, 251, 99, 140, 37, 20, 59, 172, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3021, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "711385064803005835" + } + }, + "cborHex": "1b09df58f28619f58b", + "cborBytes": [27, 9, 223, 88, 242, 134, 25, 245, 139], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3022, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9317961899152173679" + } + }, + "cborHex": "1b81500cfa8596ea6f", + "cborBytes": [27, 129, 80, 12, 250, 133, 150, 234, 111], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3023, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9660921447347848620" + } + }, + "cborHex": "1b86127cdee01f05ac", + "cborBytes": [27, 134, 18, 124, 222, 224, 31, 5, 172], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3024, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15823106547350583184" + } + }, + "cborHex": "1bdb96f79205fd3790", + "cborBytes": [27, 219, 150, 247, 146, 5, 253, 55, 144], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3025, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9249281961483243136" + } + }, + "cborHex": "1b805c0cf06da30e80", + "cborBytes": [27, 128, 92, 12, 240, 109, 163, 14, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3026, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17348831376904675941" + } + }, + "cborHex": "1bf0c36e38208de265", + "cborBytes": [27, 240, 195, 110, 56, 32, 141, 226, 101], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3027, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11566989947144032607" + } + }, + "cborHex": "1ba08634128808d15f", + "cborBytes": [27, 160, 134, 52, 18, 136, 8, 209, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3028, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15228365930113669172" + } + }, + "cborHex": "1bd35606214e161834", + "cborBytes": [27, 211, 86, 6, 33, 78, 22, 24, 52], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3029, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7783205223618555733" + } + }, + "cborHex": "1b6c037fe9e7bfaf55", + "cborBytes": [27, 108, 3, 127, 233, 231, 191, 175, 85], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3030, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18304720914928592339" + } + }, + "cborHex": "1bfe076eb086fb65d3", + "cborBytes": [27, 254, 7, 110, 176, 134, 251, 101, 211], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3031, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12520788719583160598" + } + }, + "cborHex": "1badc2c700a278e916", + "cborBytes": [27, 173, 194, 199, 0, 162, 120, 233, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3032, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7259550330931542586" + } + }, + "cborHex": "1b64bf1a90303e7a3a", + "cborBytes": [27, 100, 191, 26, 144, 48, 62, 122, 58], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3033, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1367583354196779183" + } + }, + "cborHex": "1b12faa1d09ba2e0af", + "cborBytes": [27, 18, 250, 161, 208, 155, 162, 224, 175], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3034, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1595393440468418792" + } + }, + "cborHex": "1b1623f9e1a01bc0e8", + "cborBytes": [27, 22, 35, 249, 225, 160, 27, 192, 232], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3035, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15692888310688468413" + } + }, + "cborHex": "1bd9c856c62a774dbd", + "cborBytes": [27, 217, 200, 86, 198, 42, 119, 77, 189], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3036, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9728399401690625852" + } + }, + "cborHex": "1b870237b66ae4773c", + "cborBytes": [27, 135, 2, 55, 182, 106, 228, 119, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3037, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9222500432540427834" + } + }, + "cborHex": "1b7ffce747ce75663a", + "cborBytes": [27, 127, 252, 231, 71, 206, 117, 102, 58], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3038, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15783676746902531072" + } + }, + "cborHex": "1bdb0ae26034b7ec00", + "cborBytes": [27, 219, 10, 226, 96, 52, 183, 236, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3039, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16570134129755134042" + } + }, + "cborHex": "1be5f4f132dca1985a", + "cborBytes": [27, 229, 244, 241, 50, 220, 161, 152, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3040, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9598948517733082234" + } + }, + "cborHex": "1b853650d1c8be247a", + "cborBytes": [27, 133, 54, 80, 209, 200, 190, 36, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3041, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14384864330110680316" + } + }, + "cborHex": "1bc7a14de4da6f3cfc", + "cborBytes": [27, 199, 161, 77, 228, 218, 111, 60, 252], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3042, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8837094983222533998" + } + }, + "cborHex": "1b7aa3ab10f95d9f6e", + "cborBytes": [27, 122, 163, 171, 16, 249, 93, 159, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3043, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9046003044085651509" + } + }, + "cborHex": "1b7d89dbd73fd3d835", + "cborBytes": [27, 125, 137, 219, 215, 63, 211, 216, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3044, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4373712047595546216" + } + }, + "cborHex": "1b3cb28bef32c76668", + "cborBytes": [27, 60, 178, 139, 239, 50, 199, 102, 104], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3045, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9647836627288350043" + } + }, + "cborHex": "1b85e4004bcc865d5b", + "cborBytes": [27, 133, 228, 0, 75, 204, 134, 93, 91], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3046, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1592527125337142961" + } + }, + "cborHex": "1b1619cafba0e4f6b1", + "cborBytes": [27, 22, 25, 202, 251, 160, 228, 246, 177], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3047, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4385363037774372951" + } + }, + "cborHex": "1b3cdbf072bdab6057", + "cborBytes": [27, 60, 219, 240, 114, 189, 171, 96, 87], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3048, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4842520481106648155" + } + }, + "cborHex": "1b433416b885ea5c5b", + "cborBytes": [27, 67, 52, 22, 184, 133, 234, 92, 91], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3049, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4787059284502006408" + } + }, + "cborHex": "1b426f0d0e6b7a4a88", + "cborBytes": [27, 66, 111, 13, 14, 107, 122, 74, 136], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3050, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16132189145099252992" + } + }, + "cborHex": "1bdfe10c8e330db500", + "cborBytes": [27, 223, 225, 12, 142, 51, 13, 181, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3051, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9047828749111183235" + } + }, + "cborHex": "1b7d90584f5356c783", + "cborBytes": [27, 125, 144, 88, 79, 83, 86, 199, 131], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3052, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17736938735584275876" + } + }, + "cborHex": "1bf62643ce415deda4", + "cborBytes": [27, 246, 38, 67, 206, 65, 93, 237, 164], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3053, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11755379570801797288" + } + }, + "cborHex": "1ba3237f6fdd8668a8", + "cborBytes": [27, 163, 35, 127, 111, 221, 134, 104, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3054, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7668060910189079846" + } + }, + "cborHex": "1b6a6a6cc54be0ed26", + "cborBytes": [27, 106, 106, 108, 197, 75, 224, 237, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3055, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17199418111359412839" + } + }, + "cborHex": "1beeb09ba556ff6a67", + "cborBytes": [27, 238, 176, 155, 165, 86, 255, 106, 103], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3056, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15297298781492166513" + } + }, + "cborHex": "1bd44aec3175db3f71", + "cborBytes": [27, 212, 74, 236, 49, 117, 219, 63, 113], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3057, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3427631362887439656" + } + }, + "cborHex": "1b2f9164906de4d528", + "cborBytes": [27, 47, 145, 100, 144, 109, 228, 213, 40], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3058, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15560911563942853626" + } + }, + "cborHex": "1bd7f3769f4614fbfa", + "cborBytes": [27, 215, 243, 118, 159, 70, 20, 251, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3059, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10256775742506043704" + } + }, + "cborHex": "1b8e576331f0ea8938", + "cborBytes": [27, 142, 87, 99, 49, 240, 234, 137, 56], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3060, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8377129492345658924" + } + }, + "cborHex": "1b74418ae3acb61e2c", + "cborBytes": [27, 116, 65, 138, 227, 172, 182, 30, 44], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3061, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1471903291474920249" + } + }, + "cborHex": "1b146d403ec0174339", + "cborBytes": [27, 20, 109, 64, 62, 192, 23, 67, 57], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3062, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4379263548053725635" + } + }, + "cborHex": "1b3cc644fe9f8f21c3", + "cborBytes": [27, 60, 198, 68, 254, 159, 143, 33, 195], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3063, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12383539081531059416" + } + }, + "cborHex": "1babdb2b2f10d36cd8", + "cborBytes": [27, 171, 219, 43, 47, 16, 211, 108, 216], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3064, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13829218208980581615" + } + }, + "cborHex": "1bbfeb40b0d3a6bcef", + "cborBytes": [27, 191, 235, 64, 176, 211, 166, 188, 239], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3065, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2284868040477994464" + } + }, + "cborHex": "1b1fb57b6087556de0", + "cborBytes": [27, 31, 181, 123, 96, 135, 85, 109, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3066, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1145823759320406612" + } + }, + "cborHex": "1b0fe6c8a3657eda54", + "cborBytes": [27, 15, 230, 200, 163, 101, 126, 218, 84], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3067, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12045481433976319430" + } + }, + "cborHex": "1ba72a258b64b8adc6", + "cborBytes": [27, 167, 42, 37, 139, 100, 184, 173, 198], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3068, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1084478872747540951" + } + }, + "cborHex": "1b0f0cd7c9f88881d7", + "cborBytes": [27, 15, 12, 215, 201, 248, 136, 129, 215], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3069, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15657425797060334643" + } + }, + "cborHex": "1bd94a59ce4ad19433", + "cborBytes": [27, 217, 74, 89, 206, 74, 209, 148, 51], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3070, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9574407881336423796" + } + }, + "cborHex": "1b84df213d9dc20574", + "cborBytes": [27, 132, 223, 33, 61, 157, 194, 5, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3071, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9240421838469155539" + } + }, + "cborHex": "1b803c92b448b74ad3", + "cborBytes": [27, 128, 60, 146, 180, 72, 183, 74, 211], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3072, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "547596820776539423" + } + }, + "cborHex": "1b079974683e84d51f", + "cborBytes": [27, 7, 153, 116, 104, 62, 132, 213, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3073, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16567734203693282145" + } + }, + "cborHex": "1be5ec6a7a883a3361", + "cborBytes": [27, 229, 236, 106, 122, 136, 58, 51, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3074, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14837260911912379965" + } + }, + "cborHex": "1bcde88a302e53663d", + "cborBytes": [27, 205, 232, 138, 48, 46, 83, 102, 61], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3075, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13981292385949985361" + } + }, + "cborHex": "1bc2078759556c2a51", + "cborBytes": [27, 194, 7, 135, 89, 85, 108, 42, 81], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3076, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18071473067486606295" + } + }, + "cborHex": "1bfacac5021393f3d7", + "cborBytes": [27, 250, 202, 197, 2, 19, 147, 243, 215], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3077, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8225481424999641423" + } + }, + "cborHex": "1b7226c7c68bad714f", + "cborBytes": [27, 114, 38, 199, 198, 139, 173, 113, 79], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3078, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16761324343476861049" + } + }, + "cborHex": "1be89c2faf620bb879", + "cborBytes": [27, 232, 156, 47, 175, 98, 11, 184, 121], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3079, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16797996985634902270" + } + }, + "cborHex": "1be91e794242d9d0fe", + "cborBytes": [27, 233, 30, 121, 66, 66, 217, 208, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3080, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8010789181037800386" + } + }, + "cborHex": "1b6f2c0a51324cebc2", + "cborBytes": [27, 111, 44, 10, 81, 50, 76, 235, 194], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3081, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13093546420757269031" + } + }, + "cborHex": "1bb5b59f18db530a27", + "cborBytes": [27, 181, 181, 159, 24, 219, 83, 10, 39], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3082, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3403201634493088997" + } + }, + "cborHex": "1b2f3a99db0afd44e5", + "cborBytes": [27, 47, 58, 153, 219, 10, 253, 68, 229], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3083, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17428828434735835608" + } + }, + "cborHex": "1bf1dfa31e97a829d8", + "cborBytes": [27, 241, 223, 163, 30, 151, 168, 41, 216], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3084, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13141414466446923798" + } + }, + "cborHex": "1bb65faed4bebf9816", + "cborBytes": [27, 182, 95, 174, 212, 190, 191, 152, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3085, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18326785451263634215" + } + }, + "cborHex": "1bfe55d244b95dab27", + "cborBytes": [27, 254, 85, 210, 68, 185, 93, 171, 39], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3086, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8957751242651402497" + } + }, + "cborHex": "1b7c50534b848d0101", + "cborBytes": [27, 124, 80, 83, 75, 132, 141, 1, 1], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3087, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1348210360009192015" + } + }, + "cborHex": "1b12b5ce2de6d9724f", + "cborBytes": [27, 18, 181, 206, 45, 230, 217, 114, 79], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3088, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15502471875723988145" + } + }, + "cborHex": "1bd723d8090d030cb1", + "cborBytes": [27, 215, 35, 216, 9, 13, 3, 12, 177], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3089, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12102373368325843595" + } + }, + "cborHex": "1ba7f444751635aa8b", + "cborBytes": [27, 167, 244, 68, 117, 22, 53, 170, 139], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3090, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3861392715191351653" + } + }, + "cborHex": "1b35966c374742f965", + "cborBytes": [27, 53, 150, 108, 55, 71, 66, 249, 101], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3091, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2560388682995990202" + } + }, + "cborHex": "1b238853f110e7feba", + "cborBytes": [27, 35, 136, 83, 241, 16, 231, 254, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3092, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2114755343799009477" + } + }, + "cborHex": "1b1d591ec7ddffc0c5", + "cborBytes": [27, 29, 89, 30, 199, 221, 255, 192, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3093, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17569679376525899884" + } + }, + "cborHex": "1bf3d40a4e0755386c", + "cborBytes": [27, 243, 212, 10, 78, 7, 85, 56, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3094, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7916317727017373611" + } + }, + "cborHex": "1b6ddc6907bfff8fab", + "cborBytes": [27, 109, 220, 105, 7, 191, 255, 143, 171], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3095, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18378987419921879514" + } + }, + "cborHex": "1bff0f47aeafd111da", + "cborBytes": [27, 255, 15, 71, 174, 175, 209, 17, 218], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3096, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15216938187455741281" + } + }, + "cborHex": "1bd32d6ca8a0603d61", + "cborBytes": [27, 211, 45, 108, 168, 160, 96, 61, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3097, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11936794306033330476" + } + }, + "cborHex": "1ba5a8032d7005a92c", + "cborBytes": [27, 165, 168, 3, 45, 112, 5, 169, 44], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3098, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4262568898006125515" + } + }, + "cborHex": "1b3b27afd424488bcb", + "cborBytes": [27, 59, 39, 175, 212, 36, 72, 139, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3099, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17332910102380170788" + } + }, + "cborHex": "1bf08adde788264e24", + "cborBytes": [27, 240, 138, 221, 231, 136, 38, 78, 36], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3100, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11272017415853313492" + } + }, + "cborHex": "1b9c6e401e35f40dd4", + "cborBytes": [27, 156, 110, 64, 30, 53, 244, 13, 212], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3101, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5214324767793418132" + } + }, + "cborHex": "1b485d00bfe7d90f94", + "cborBytes": [27, 72, 93, 0, 191, 231, 217, 15, 148], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3102, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3786193640341385072" + } + }, + "cborHex": "1b348b430e47642f70", + "cborBytes": [27, 52, 139, 67, 14, 71, 100, 47, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3103, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18341364444923912134" + } + }, + "cborHex": "1bfe899dc933ab5fc6", + "cborBytes": [27, 254, 137, 157, 201, 51, 171, 95, 198], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3104, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13641417602260284765" + } + }, + "cborHex": "1bbd500d08af7c355d", + "cborBytes": [27, 189, 80, 13, 8, 175, 124, 53, 93], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3105, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10349306107853570954" + } + }, + "cborHex": "1b8fa01f127664838a", + "cborBytes": [27, 143, 160, 31, 18, 118, 100, 131, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3106, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5312485366430224373" + } + }, + "cborHex": "1b49b9bd4b4488cff5", + "cborBytes": [27, 73, 185, 189, 75, 68, 136, 207, 245], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3107, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16485705883485401120" + } + }, + "cborHex": "1be4c8fe27f0b6f020", + "cborBytes": [27, 228, 200, 254, 39, 240, 182, 240, 32], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3108, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13484513622568703004" + } + }, + "cborHex": "1bbb229db21a1f941c", + "cborBytes": [27, 187, 34, 157, 178, 26, 31, 148, 28], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3109, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16686631367802604165" + } + }, + "cborHex": "1be792d2d1c7c3ca85", + "cborBytes": [27, 231, 146, 210, 209, 199, 195, 202, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3110, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9485802367650516334" + } + }, + "cborHex": "1b83a456fed55e4d6e", + "cborBytes": [27, 131, 164, 86, 254, 213, 94, 77, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3111, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17733113842692035714" + } + }, + "cborHex": "1bf618ad15fb389482", + "cborBytes": [27, 246, 24, 173, 21, 251, 56, 148, 130], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3112, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4675252131584498855" + } + }, + "cborHex": "1b40e1d50b0a7b5ca7", + "cborBytes": [27, 64, 225, 213, 11, 10, 123, 92, 167], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3113, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4086514171162460740" + } + }, + "cborHex": "1b38b636fcc5bd0244", + "cborBytes": [27, 56, 182, 54, 252, 197, 189, 2, 68], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3114, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18281183722062919981" + } + }, + "cborHex": "1bfdb3cfbcc336b92d", + "cborBytes": [27, 253, 179, 207, 188, 195, 54, 185, 45], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3115, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17733361784773323474" + } + }, + "cborHex": "1bf6198e967ee6aad2", + "cborBytes": [27, 246, 25, 142, 150, 126, 230, 170, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3116, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4715580046444924319" + } + }, + "cborHex": "1b41711b116a450d9f", + "cborBytes": [27, 65, 113, 27, 17, 106, 69, 13, 159], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3117, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6030973916281018785" + } + }, + "cborHex": "1b53b252d2c99399a1", + "cborBytes": [27, 83, 178, 82, 210, 201, 147, 153, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3118, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5882562984696139917" + } + }, + "cborHex": "1b51a30fde0facd08d", + "cborBytes": [27, 81, 163, 15, 222, 15, 172, 208, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3119, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8506113154973623330" + } + }, + "cborHex": "1b760bc8d8dd7ae422", + "cborBytes": [27, 118, 11, 200, 216, 221, 122, 228, 34], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3120, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13802932206105492288" + } + }, + "cborHex": "1bbf8dddb5dbb77b40", + "cborBytes": [27, 191, 141, 221, 181, 219, 183, 123, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3121, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2100854065428995840" + } + }, + "cborHex": "1b1d27bba446d49f00", + "cborBytes": [27, 29, 39, 187, 164, 70, 212, 159, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3122, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18300793456734997433" + } + }, + "cborHex": "1bfdf97aafe87b8bb9", + "cborBytes": [27, 253, 249, 122, 175, 232, 123, 139, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3123, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6572302189788561541" + } + }, + "cborHex": "1b5b35820522de8085", + "cborBytes": [27, 91, 53, 130, 5, 34, 222, 128, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3124, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1150413099523975297" + } + }, + "cborHex": "1b0ff7169e6e152881", + "cborBytes": [27, 15, 247, 22, 158, 110, 21, 40, 129], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3125, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12684090071095548153" + } + }, + "cborHex": "1bb006f0b76ab598f9", + "cborBytes": [27, 176, 6, 240, 183, 106, 181, 152, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3126, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2719689663983453115" + } + }, + "cborHex": "1b25be4757010903bb", + "cborBytes": [27, 37, 190, 71, 87, 1, 9, 3, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3127, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6155730030456644230" + } + }, + "cborHex": "1b556d8bd92692a286", + "cborBytes": [27, 85, 109, 139, 217, 38, 146, 162, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3128, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17662191493050541329" + } + }, + "cborHex": "1bf51cb595aa342511", + "cborBytes": [27, 245, 28, 181, 149, 170, 52, 37, 17], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3129, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16320737530334347571" + } + }, + "cborHex": "1be27ee85017f70133", + "cborBytes": [27, 226, 126, 232, 80, 23, 247, 1, 51], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3130, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2563473131723815740" + } + }, + "cborHex": "1b2393493b3fa7fb3c", + "cborBytes": [27, 35, 147, 73, 59, 63, 167, 251, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3131, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7018246594897533462" + } + }, + "cborHex": "1b6165d21802f65a16", + "cborBytes": [27, 97, 101, 210, 24, 2, 246, 90, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3132, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14782961365700230222" + } + }, + "cborHex": "1bcd27a109e2e2bc4e", + "cborBytes": [27, 205, 39, 161, 9, 226, 226, 188, 78], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3133, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11679296969389815516" + } + }, + "cborHex": "1ba21532b6cec6b6dc", + "cborBytes": [27, 162, 21, 50, 182, 206, 198, 182, 220], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3134, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16774875448743362565" + } + }, + "cborHex": "1be8cc5457f1c50005", + "cborBytes": [27, 232, 204, 84, 87, 241, 197, 0, 5], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3135, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14123317087764038391" + } + }, + "cborHex": "1bc4001a10126142f7", + "cborBytes": [27, 196, 0, 26, 16, 18, 97, 66, 247], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3136, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9329248406154927675" + } + }, + "cborHex": "1b817825ff363e5e3b", + "cborBytes": [27, 129, 120, 37, 255, 54, 62, 94, 59], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3137, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6336293458019120283" + } + }, + "cborHex": "1b57ef095435dc749b", + "cborBytes": [27, 87, 239, 9, 84, 53, 220, 116, 155], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3138, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13162838946942398336" + } + }, + "cborHex": "1bb6abcc48542daf80", + "cborBytes": [27, 182, 171, 204, 72, 84, 45, 175, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3139, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13403232062777896173" + } + }, + "cborHex": "1bba01d88c3800aced", + "cborBytes": [27, 186, 1, 216, 140, 56, 0, 172, 237], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3140, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3383905426458134926" + } + }, + "cborHex": "1b2ef60c0e818dc98e", + "cborBytes": [27, 46, 246, 12, 14, 129, 141, 201, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3141, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7567401393490510738" + } + }, + "cborHex": "1b6904cf793bcc4392", + "cborBytes": [27, 105, 4, 207, 121, 59, 204, 67, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3142, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "343242285344530586" + } + }, + "cborHex": "1b04c3710a39daa09a", + "cborBytes": [27, 4, 195, 113, 10, 57, 218, 160, 154], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3143, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9836266254873021540" + } + }, + "cborHex": "1b8881700b45de4c64", + "cborBytes": [27, 136, 129, 112, 11, 69, 222, 76, 100], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3144, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13931851874922263966" + } + }, + "cborHex": "1bc157e1775419f59e", + "cborBytes": [27, 193, 87, 225, 119, 84, 25, 245, 158], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3145, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "669242823683515950" + } + }, + "cborHex": "1b0949a0cd6622a62e", + "cborBytes": [27, 9, 73, 160, 205, 102, 34, 166, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3146, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16764546089740888723" + } + }, + "cborHex": "1be8a7a1d8a3ab6a93", + "cborBytes": [27, 232, 167, 161, 216, 163, 171, 106, 147], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3147, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9996823907036928703" + } + }, + "cborHex": "1b8abbda60c5119abf", + "cborBytes": [27, 138, 187, 218, 96, 197, 17, 154, 191], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3148, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8937814319934487453" + } + }, + "cborHex": "1b7c097ec4f8183b9d", + "cborBytes": [27, 124, 9, 126, 196, 248, 24, 59, 157], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3149, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3266086433305724138" + } + }, + "cborHex": "1b2d53784e7ee904ea", + "cborBytes": [27, 45, 83, 120, 78, 126, 233, 4, 234], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3150, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2727207513146346970" + } + }, + "cborHex": "1b25d8fcc8a9dd4dda", + "cborBytes": [27, 37, 216, 252, 200, 169, 221, 77, 218], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3151, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1256921919931105143" + } + }, + "cborHex": "1b11717bd3a3e53f77", + "cborBytes": [27, 17, 113, 123, 211, 163, 229, 63, 119], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3152, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17789453558003875468" + } + }, + "cborHex": "1bf6e0d5c229213e8c", + "cborBytes": [27, 246, 224, 213, 194, 41, 33, 62, 140], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3153, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13405454914971016722" + } + }, + "cborHex": "1bba09be38535c9e12", + "cborBytes": [27, 186, 9, 190, 56, 83, 92, 158, 18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3154, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16853108985722939676" + } + }, + "cborHex": "1be9e24554b6f5a91c", + "cborBytes": [27, 233, 226, 69, 84, 182, 245, 169, 28], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3155, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16425235093247497586" + } + }, + "cborHex": "1be3f2284aed4c1572", + "cborBytes": [27, 227, 242, 40, 74, 237, 76, 21, 114], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3156, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13121287872119930523" + } + }, + "cborHex": "1bb6182dccd5597e9b", + "cborBytes": [27, 182, 24, 45, 204, 213, 89, 126, 155], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3157, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8572408048704598929" + } + }, + "cborHex": "1b76f74fb3a4bcb391", + "cborBytes": [27, 118, 247, 79, 179, 164, 188, 179, 145], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3158, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "27325738299222887" + } + }, + "cborHex": "1b0061149d3c8ceb67", + "cborBytes": [27, 0, 97, 20, 157, 60, 140, 235, 103], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3159, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5027927368301060992" + } + }, + "cborHex": "1b45c6c94d680ca380", + "cborBytes": [27, 69, 198, 201, 77, 104, 12, 163, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3160, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12959085301517423049" + } + }, + "cborHex": "1bb3d7eb6beaee91c9", + "cborBytes": [27, 179, 215, 235, 107, 234, 238, 145, 201], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3161, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8190155471477085608" + } + }, + "cborHex": "1b71a947020c9d15a8", + "cborBytes": [27, 113, 169, 71, 2, 12, 157, 21, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3162, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16445875951402958280" + } + }, + "cborHex": "1be43b7d0b37833dc8", + "cborBytes": [27, 228, 59, 125, 11, 55, 131, 61, 200], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3163, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18207888245205106531" + } + }, + "cborHex": "1bfcaf69e3b575ff63", + "cborBytes": [27, 252, 175, 105, 227, 181, 117, 255, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3164, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14426206656016346712" + } + }, + "cborHex": "1bc8342e85343aee58", + "cborBytes": [27, 200, 52, 46, 133, 52, 58, 238, 88], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3165, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13990493335944910348" + } + }, + "cborHex": "1bc22837907177560c", + "cborBytes": [27, 194, 40, 55, 144, 113, 119, 86, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3166, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6475696474990424479" + } + }, + "cborHex": "1b59de4ba2610db19f", + "cborBytes": [27, 89, 222, 75, 162, 97, 13, 177, 159], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3167, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2414686781521851106" + } + }, + "cborHex": "1b2182b0d59070f2e2", + "cborBytes": [27, 33, 130, 176, 213, 144, 112, 242, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3168, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4432044665579640453" + } + }, + "cborHex": "1b3d81c924308a1685", + "cborBytes": [27, 61, 129, 201, 36, 48, 138, 22, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3169, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10024655388009200340" + } + }, + "cborHex": "1b8b1ebaf665fe7ad4", + "cborBytes": [27, 139, 30, 186, 246, 101, 254, 122, 212], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3170, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14223440073111349224" + } + }, + "cborHex": "1bc563cf6331dba7e8", + "cborBytes": [27, 197, 99, 207, 99, 49, 219, 167, 232], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3171, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1111070099869120156" + } + }, + "cborHex": "1b0f6b505e7f41b69c", + "cborBytes": [27, 15, 107, 80, 94, 127, 65, 182, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3172, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12892589740097604315" + } + }, + "cborHex": "1bb2ebae0f8d5d0adb", + "cborBytes": [27, 178, 235, 174, 15, 141, 93, 10, 219], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3173, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3042024462356390709" + } + }, + "cborHex": "1b2a37712194cd2335", + "cborBytes": [27, 42, 55, 113, 33, 148, 205, 35, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3174, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13309156655868117134" + } + }, + "cborHex": "1bb8b39f76ad0b808e", + "cborBytes": [27, 184, 179, 159, 118, 173, 11, 128, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3175, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13222585853902080409" + } + }, + "cborHex": "1bb7800fc721f04999", + "cborBytes": [27, 183, 128, 15, 199, 33, 240, 73, 153], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3176, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17626500781152576543" + } + }, + "cborHex": "1bf49de9123dbea41f", + "cborBytes": [27, 244, 157, 233, 18, 61, 190, 164, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3177, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17078656859250917989" + } + }, + "cborHex": "1bed0393ed48708265", + "cborBytes": [27, 237, 3, 147, 237, 72, 112, 130, 101], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3178, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16056945174477186315" + } + }, + "cborHex": "1bded5ba9016a2a50b", + "cborBytes": [27, 222, 213, 186, 144, 22, 162, 165, 11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3179, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17436184463715240985" + } + }, + "cborHex": "1bf1f9c5638dee8c19", + "cborBytes": [27, 241, 249, 197, 99, 141, 238, 140, 25], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3180, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16428035574575830888" + } + }, + "cborHex": "1be3fc1b50cc129768", + "cborBytes": [27, 227, 252, 27, 80, 204, 18, 151, 104], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3181, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5941265917528024553" + } + }, + "cborHex": "1b52739ddfb264a5e9", + "cborBytes": [27, 82, 115, 157, 223, 178, 100, 165, 233], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3182, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14562936296483477894" + } + }, + "cborHex": "1bca19f167668a5986", + "cborBytes": [27, 202, 25, 241, 103, 102, 138, 89, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3183, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14928194477846984901" + } + }, + "cborHex": "1bcf2b99c8de0478c5", + "cborBytes": [27, 207, 43, 153, 200, 222, 4, 120, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3184, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6803358273231423721" + } + }, + "cborHex": "1b5e6a624dc3ac88e9", + "cborBytes": [27, 94, 106, 98, 77, 195, 172, 136, 233], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3185, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16725811348058693020" + } + }, + "cborHex": "1be81e04cdcd3c5d9c", + "cborBytes": [27, 232, 30, 4, 205, 205, 60, 93, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3186, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3459442479745047808" + } + }, + "cborHex": "1b3002689b3e199d00", + "cborBytes": [27, 48, 2, 104, 155, 62, 25, 157, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3187, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9715943575262803186" + } + }, + "cborHex": "1b86d5f734554734f2", + "cborBytes": [27, 134, 213, 247, 52, 85, 71, 52, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3188, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4829803267498277758" + } + }, + "cborHex": "1b4306e87b7e417b7e", + "cborBytes": [27, 67, 6, 232, 123, 126, 65, 123, 126], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3189, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9045791572696390593" + } + }, + "cborHex": "1b7d891b823aca5bc1", + "cborBytes": [27, 125, 137, 27, 130, 58, 202, 91, 193], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3190, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14821575831779670505" + } + }, + "cborHex": "1bcdb0d0b0e0bdf9e9", + "cborBytes": [27, 205, 176, 208, 176, 224, 189, 249, 233], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3191, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16254879190041933233" + } + }, + "cborHex": "1be194ee805556b5b1", + "cborBytes": [27, 225, 148, 238, 128, 85, 86, 181, 177], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3192, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11289092527978218304" + } + }, + "cborHex": "1b9caae9d78ea88340", + "cborBytes": [27, 156, 170, 233, 215, 142, 168, 131, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3193, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1785983068779556921" + } + }, + "cborHex": "1b18c916237577b039", + "cborBytes": [27, 24, 201, 22, 35, 117, 119, 176, 57], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3194, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6873806227999049261" + } + }, + "cborHex": "1b5f64aa586ac0462d", + "cborBytes": [27, 95, 100, 170, 88, 106, 192, 70, 45], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3195, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6131072118506636408" + } + }, + "cborHex": "1b5515f19ba3e3c478", + "cborBytes": [27, 85, 21, 241, 155, 163, 227, 196, 120], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3196, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1116903631365246746" + } + }, + "cborHex": "1b0f8009ef63de8f1a", + "cborBytes": [27, 15, 128, 9, 239, 99, 222, 143, 26], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3197, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5926454519677238836" + } + }, + "cborHex": "1b523efefc66debe34", + "cborBytes": [27, 82, 62, 254, 252, 102, 222, 190, 52], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3198, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10443136182972894462" + } + }, + "cborHex": "1b90ed79073f20ccfe", + "cborBytes": [27, 144, 237, 121, 7, 63, 32, 204, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3199, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10901518752413271792" + } + }, + "cborHex": "1b9749f98bedda46f0", + "cborBytes": [27, 151, 73, 249, 139, 237, 218, 70, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3200, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19022081045611749" + } + }, + "cborHex": "1b0043947b5f9cc4e5", + "cborBytes": [27, 0, 67, 148, 123, 95, 156, 196, 229], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3201, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13600344489104165795" + } + }, + "cborHex": "1bbcbe21414ffecba3", + "cborBytes": [27, 188, 190, 33, 65, 79, 254, 203, 163], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3202, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8833064180915241588" + } + }, + "cborHex": "1b7a955912adae0274", + "cborBytes": [27, 122, 149, 89, 18, 173, 174, 2, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3203, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14328506346999840142" + } + }, + "cborHex": "1bc6d9149b5edafd8e", + "cborBytes": [27, 198, 217, 20, 155, 94, 218, 253, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3204, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14028014205694668991" + } + }, + "cborHex": "1bc2ad8498b29070bf", + "cborBytes": [27, 194, 173, 132, 152, 178, 144, 112, 191], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3205, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12099798196743121127" + } + }, + "cborHex": "1ba7eb1e5a3ac928e7", + "cborBytes": [27, 167, 235, 30, 90, 58, 201, 40, 231], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3206, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7215045214969608062" + } + }, + "cborHex": "1b6420fd6564a5377e", + "cborBytes": [27, 100, 32, 253, 101, 100, 165, 55, 126], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3207, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17071615237344346119" + } + }, + "cborHex": "1becea8f9bec0e4007", + "cborBytes": [27, 236, 234, 143, 155, 236, 14, 64, 7], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3208, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3232621233555926369" + } + }, + "cborHex": "1b2cdc93e27f7c6d61", + "cborBytes": [27, 44, 220, 147, 226, 127, 124, 109, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3209, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8439887203720187931" + } + }, + "cborHex": "1b752080b2021b501b", + "cborBytes": [27, 117, 32, 128, 178, 2, 27, 80, 27], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3210, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15143284195048653520" + } + }, + "cborHex": "1bd227c0be2aa982d0", + "cborBytes": [27, 210, 39, 192, 190, 42, 169, 130, 208], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3211, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5067334388244862724" + } + }, + "cborHex": "1b4652c9c73974d704", + "cborBytes": [27, 70, 82, 201, 199, 57, 116, 215, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3212, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14514634519276441846" + } + }, + "cborHex": "1bc96e5731861850f6", + "cborBytes": [27, 201, 110, 87, 49, 134, 24, 80, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3213, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11191184595477295295" + } + }, + "cborHex": "1b9b4f13189d3f70bf", + "cborBytes": [27, 155, 79, 19, 24, 157, 63, 112, 191], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3214, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2189006288797583088" + } + }, + "cborHex": "1b1e60e99f2ee046f0", + "cborBytes": [27, 30, 96, 233, 159, 46, 224, 70, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3215, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9393365972737212796" + } + }, + "cborHex": "1b825bf095823e417c", + "cborBytes": [27, 130, 91, 240, 149, 130, 62, 65, 124], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3216, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4571403366202206267" + } + }, + "cborHex": "1b3f70e3242781e83b", + "cborBytes": [27, 63, 112, 227, 36, 39, 129, 232, 59], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3217, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14166174071509328611" + } + }, + "cborHex": "1bc4985c432ea9a2e3", + "cborBytes": [27, 196, 152, 92, 67, 46, 169, 162, 227], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3218, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14844795060762503992" + } + }, + "cborHex": "1bce034e74e838eb38", + "cborBytes": [27, 206, 3, 78, 116, 232, 56, 235, 56], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3219, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17857104126466924474" + } + }, + "cborHex": "1bf7d12d978f391fba", + "cborBytes": [27, 247, 209, 45, 151, 143, 57, 31, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3220, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7419814020751251005" + } + }, + "cborHex": "1b66f8798a3e57563d", + "cborBytes": [27, 102, 248, 121, 138, 62, 87, 86, 61], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3221, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3799717073345301725" + } + }, + "cborHex": "1b34bb4e8be3bbccdd", + "cborBytes": [27, 52, 187, 78, 139, 227, 187, 204, 221], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3222, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11632962380649838081" + } + }, + "cborHex": "1ba17095a6b01db601", + "cborBytes": [27, 161, 112, 149, 166, 176, 29, 182, 1], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3223, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15349260338607018827" + } + }, + "cborHex": "1bd50386f43fa9d34b", + "cborBytes": [27, 213, 3, 134, 244, 63, 169, 211, 75], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3224, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6377547279962784086" + } + }, + "cborHex": "1b588199762070c156", + "cborBytes": [27, 88, 129, 153, 118, 32, 112, 193, 86], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3225, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2945162571043509327" + } + }, + "cborHex": "1b28df51c114d3144f", + "cborBytes": [27, 40, 223, 81, 193, 20, 211, 20, 79], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3226, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5210353390124866363" + } + }, + "cborHex": "1b484ee4cd7ca51b3b", + "cborBytes": [27, 72, 78, 228, 205, 124, 165, 27, 59], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3227, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5577602713645677103" + } + }, + "cborHex": "1b4d67a01ddd1afa2f", + "cborBytes": [27, 77, 103, 160, 29, 221, 26, 250, 47], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3228, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12154075080604458825" + } + }, + "cborHex": "1ba8abf2e408db1f49", + "cborBytes": [27, 168, 171, 242, 228, 8, 219, 31, 73], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3229, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16458595280580703890" + } + }, + "cborHex": "1be468ad34d0eef692", + "cborBytes": [27, 228, 104, 173, 52, 208, 238, 246, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3230, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10052078512223855379" + } + }, + "cborHex": "1b8b8028260f70a313", + "cborBytes": [27, 139, 128, 40, 38, 15, 112, 163, 19], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3231, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2656349214846806172" + } + }, + "cborHex": "1b24dd3f897654e89c", + "cborBytes": [27, 36, 221, 63, 137, 118, 84, 232, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3232, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7390574728916899343" + } + }, + "cborHex": "1b6690988f1b12160f", + "cborBytes": [27, 102, 144, 152, 143, 27, 18, 22, 15], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3233, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9511363843450347499" + } + }, + "cborHex": "1b83ff2705b25a1feb", + "cborBytes": [27, 131, 255, 39, 5, 178, 90, 31, 235], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3234, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16243879616504924981" + } + }, + "cborHex": "1be16dda728bfc0b35", + "cborBytes": [27, 225, 109, 218, 114, 139, 252, 11, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3235, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1097945638081796666" + } + }, + "cborHex": "1b0f3cafbd9c8e1a3a", + "cborBytes": [27, 15, 60, 175, 189, 156, 142, 26, 58], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3236, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17154421480511018012" + } + }, + "cborHex": "1bee10bf72d130941c", + "cborBytes": [27, 238, 16, 191, 114, 209, 48, 148, 28], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3237, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8810914972898524201" + } + }, + "cborHex": "1b7a46a87c51c97c29", + "cborBytes": [27, 122, 70, 168, 124, 81, 201, 124, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3238, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17797732845235396869" + } + }, + "cborHex": "1bf6fe3fb9ef8ee105", + "cborBytes": [27, 246, 254, 63, 185, 239, 142, 225, 5], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3239, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "546627073038789235" + } + }, + "cborHex": "1b0796026d4116aa73", + "cborBytes": [27, 7, 150, 2, 109, 65, 22, 170, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3240, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "656192649510286315" + } + }, + "cborHex": "1b091b43bcf24873eb", + "cborBytes": [27, 9, 27, 67, 188, 242, 72, 115, 235], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3241, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3215201862330885273" + } + }, + "cborHex": "1b2c9eb10f15682499", + "cborBytes": [27, 44, 158, 177, 15, 21, 104, 36, 153], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3242, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13534008211201256298" + } + }, + "cborHex": "1bbbd274c307deeb6a", + "cborBytes": [27, 187, 210, 116, 195, 7, 222, 235, 106], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3243, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4972560479531861560" + } + }, + "cborHex": "1b450215690ea48638", + "cborBytes": [27, 69, 2, 21, 105, 14, 164, 134, 56], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3244, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4938656875050690486" + } + }, + "cborHex": "1b4489a24300efe7b6", + "cborBytes": [27, 68, 137, 162, 67, 0, 239, 231, 182], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3245, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14702272264131770413" + } + }, + "cborHex": "1bcc08f6ba6ea6f82d", + "cborBytes": [27, 204, 8, 246, 186, 110, 166, 248, 45], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3246, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "562054492994843" + } + }, + "cborHex": "1b0001ff2f82663d1b", + "cborBytes": [27, 0, 1, 255, 47, 130, 102, 61, 27], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3247, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6854674041868072566" + } + }, + "cborHex": "1b5f20b1b934a33676", + "cborBytes": [27, 95, 32, 177, 185, 52, 163, 54, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3248, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14072776050977998167" + } + }, + "cborHex": "1bc34c8b41f22b0557", + "cborBytes": [27, 195, 76, 139, 65, 242, 43, 5, 87], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3249, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2645303568276804026" + } + }, + "cborHex": "1b24b60194763651ba", + "cborBytes": [27, 36, 182, 1, 148, 118, 54, 81, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3250, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6545143374219455853" + } + }, + "cborHex": "1b5ad50538a05a2d6d", + "cborBytes": [27, 90, 213, 5, 56, 160, 90, 45, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3251, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8436936330325098147" + } + }, + "cborHex": "1b751604e4419d7ea3", + "cborBytes": [27, 117, 22, 4, 228, 65, 157, 126, 163], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3252, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13554046748592793513" + } + }, + "cborHex": "1bbc19a5b496e967a9", + "cborBytes": [27, 188, 25, 165, 180, 150, 233, 103, 169], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3253, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4420741323288666606" + } + }, + "cborHex": "1b3d59a0cfba82e1ee", + "cborBytes": [27, 61, 89, 160, 207, 186, 130, 225, 238], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3254, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14552983895681026111" + } + }, + "cborHex": "1bc9f695bf840c483f", + "cborBytes": [27, 201, 246, 149, 191, 132, 12, 72, 63], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3255, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16240494456644886171" + } + }, + "cborHex": "1be161d3a99904de9b", + "cborBytes": [27, 225, 97, 211, 169, 153, 4, 222, 155], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3256, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9396582483668471960" + } + }, + "cborHex": "1b82675dfbd1b79098", + "cborBytes": [27, 130, 103, 93, 251, 209, 183, 144, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3257, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7997571055745039680" + } + }, + "cborHex": "1b6efd148093a0fd40", + "cborBytes": [27, 110, 253, 20, 128, 147, 160, 253, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3258, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15590357665091728826" + } + }, + "cborHex": "1bd85c13b1f514b5ba", + "cborBytes": [27, 216, 92, 19, 177, 245, 20, 181, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3259, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1438707772555745347" + } + }, + "cborHex": "1b13f75118b6c75843", + "cborBytes": [27, 19, 247, 81, 24, 182, 199, 88, 67], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3260, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11723858228625381530" + } + }, + "cborHex": "1ba2b382f17a41989a", + "cborBytes": [27, 162, 179, 130, 241, 122, 65, 152, 154], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3261, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2971981565255343302" + } + }, + "cborHex": "1b293e997cc40ddcc6", + "cborBytes": [27, 41, 62, 153, 124, 196, 13, 220, 198], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3262, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9503314297694467555" + } + }, + "cborHex": "1b83e28e00c6f835e3", + "cborBytes": [27, 131, 226, 142, 0, 198, 248, 53, 227], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3263, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14298755450265524077" + } + }, + "cborHex": "1bc66f6252ef41d76d", + "cborBytes": [27, 198, 111, 98, 82, 239, 65, 215, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3264, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13208151459136019276" + } + }, + "cborHex": "1bb74cc7c5b55c1b4c", + "cborBytes": [27, 183, 76, 199, 197, 181, 92, 27, 76], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3265, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11381412771336977612" + } + }, + "cborHex": "1b9df2e69d3da27ccc", + "cborBytes": [27, 157, 242, 230, 157, 61, 162, 124, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3266, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16147414963933125132" + } + }, + "cborHex": "1be017245b660f9a0c", + "cborBytes": [27, 224, 23, 36, 91, 102, 15, 154, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3267, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11193186821276578834" + } + }, + "cborHex": "1b9b56301c22c63412", + "cborBytes": [27, 155, 86, 48, 28, 34, 198, 52, 18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3268, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3924005907144708791" + } + }, + "cborHex": "1b3674de950fe512b7", + "cborBytes": [27, 54, 116, 222, 149, 15, 229, 18, 183], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3269, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15669468754805182732" + } + }, + "cborHex": "1bd97522cfe53ed10c", + "cborBytes": [27, 217, 117, 34, 207, 229, 62, 209, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3270, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11517771176722652201" + } + }, + "cborHex": "1b9fd757dc88c95c29", + "cborBytes": [27, 159, 215, 87, 220, 136, 201, 92, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3271, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12015827009496178787" + } + }, + "cborHex": "1ba6c0cb00a7906063", + "cborBytes": [27, 166, 192, 203, 0, 167, 144, 96, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3272, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17900573784195724066" + } + }, + "cborHex": "1bf86b9d03f2a7f322", + "cborBytes": [27, 248, 107, 157, 3, 242, 167, 243, 34], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3273, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7960315625604922938" + } + }, + "cborHex": "1b6e78b8e2cc2c3e3a", + "cborBytes": [27, 110, 120, 184, 226, 204, 44, 62, 58], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3274, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8379784819402058091" + } + }, + "cborHex": "1b744af9e52eaba96b", + "cborBytes": [27, 116, 74, 249, 229, 46, 171, 169, 107], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3275, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6067725848873020457" + } + }, + "cborHex": "1b5434e482e8882c29", + "cborBytes": [27, 84, 52, 228, 130, 232, 136, 44, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3276, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15612236618431137980" + } + }, + "cborHex": "1bd8a9ce7cbeef08bc", + "cborBytes": [27, 216, 169, 206, 124, 190, 239, 8, 188], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3277, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1173198173582532881" + } + }, + "cborHex": "1b10480985e3862111", + "cborBytes": [27, 16, 72, 9, 133, 227, 134, 33, 17], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3278, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12271648676383507433" + } + }, + "cborHex": "1baa4da774043b43e9", + "cborBytes": [27, 170, 77, 167, 116, 4, 59, 67, 233], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3279, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1899473706515922717" + } + }, + "cborHex": "1b1a5c4945b1137f1d", + "cborBytes": [27, 26, 92, 73, 69, 177, 19, 127, 29], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3280, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "249843791252185990" + } + }, + "cborHex": "1b03779f9abaec6386", + "cborBytes": [27, 3, 119, 159, 154, 186, 236, 99, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3281, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12250668999182280539" + } + }, + "cborHex": "1baa031e8c4526675b", + "cborBytes": [27, 170, 3, 30, 140, 69, 38, 103, 91], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3282, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5320055807244855186" + } + }, + "cborHex": "1b49d4a291e0156792", + "cborBytes": [27, 73, 212, 162, 145, 224, 21, 103, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3283, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14563632420578183360" + } + }, + "cborHex": "1bca1c6a866becc8c0", + "cborBytes": [27, 202, 28, 106, 134, 107, 236, 200, 192], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3284, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6455231626817131780" + } + }, + "cborHex": "1b599596f69b4d5504", + "cborBytes": [27, 89, 149, 150, 246, 155, 77, 85, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3285, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8105779354652182879" + } + }, + "cborHex": "1b707d836075bd095f", + "cborBytes": [27, 112, 125, 131, 96, 117, 189, 9, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3286, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6494233627585818987" + } + }, + "cborHex": "1b5a2027138ca6316b", + "cborBytes": [27, 90, 32, 39, 19, 140, 166, 49, 107], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3287, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12000437908968361265" + } + }, + "cborHex": "1ba68a1eb27930cd31", + "cborBytes": [27, 166, 138, 30, 178, 121, 48, 205, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3288, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17708423871416910977" + } + }, + "cborHex": "1bf5c0f5b013da4481", + "cborBytes": [27, 245, 192, 245, 176, 19, 218, 68, 129], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3289, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17931307859028206893" + } + }, + "cborHex": "1bf8d8cd7e5f8be52d", + "cborBytes": [27, 248, 216, 205, 126, 95, 139, 229, 45], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3290, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15510568870942000685" + } + }, + "cborHex": "1bd7409c35a8bac62d", + "cborBytes": [27, 215, 64, 156, 53, 168, 186, 198, 45], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3291, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17148961908022303393" + } + }, + "cborHex": "1bedfd59ff0a5fdaa1", + "cborBytes": [27, 237, 253, 89, 255, 10, 95, 218, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3292, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3383134356199744956" + } + }, + "cborHex": "1b2ef34ec5b8b4a5bc", + "cborBytes": [27, 46, 243, 78, 197, 184, 180, 165, 188], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3293, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10171230902939855121" + } + }, + "cborHex": "1b8d27789de234a911", + "cborBytes": [27, 141, 39, 120, 157, 226, 52, 169, 17], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3294, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4193834505788687526" + } + }, + "cborHex": "1b3a337e435c4f84a6", + "cborBytes": [27, 58, 51, 126, 67, 92, 79, 132, 166], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3295, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4492021322315334868" + } + }, + "cborHex": "1b3e56dd97c81604d4", + "cborBytes": [27, 62, 86, 221, 151, 200, 22, 4, 212], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3296, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14065959764411064795" + } + }, + "cborHex": "1bc33453e18ea8a1db", + "cborBytes": [27, 195, 52, 83, 225, 142, 168, 161, 219], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3297, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15229381646621071647" + } + }, + "cborHex": "1bd359a1eb3bb3d91f", + "cborBytes": [27, 211, 89, 161, 235, 59, 179, 217, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3298, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13896966123688115347" + } + }, + "cborHex": "1bc0dbf10f6a113c93", + "cborBytes": [27, 192, 219, 241, 15, 106, 17, 60, 147], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3299, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2275479574969749653" + } + }, + "cborHex": "1b1f94209e0fba9095", + "cborBytes": [27, 31, 148, 32, 158, 15, 186, 144, 149], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3300, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3878753768282385054" + } + }, + "cborHex": "1b35d41a0071adea9e", + "cborBytes": [27, 53, 212, 26, 0, 113, 173, 234, 158], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3301, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10690860375756886775" + } + }, + "cborHex": "1b945d90de8049d2f7", + "cborBytes": [27, 148, 93, 144, 222, 128, 73, 210, 247], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3302, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14423833472846159471" + } + }, + "cborHex": "1bc82bc01f70625e6f", + "cborBytes": [27, 200, 43, 192, 31, 112, 98, 94, 111], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3303, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4362698709245985682" + } + }, + "cborHex": "1b3c8b6b5c8aa98392", + "cborBytes": [27, 60, 139, 107, 92, 138, 169, 131, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3304, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17526797376201945218" + } + }, + "cborHex": "1bf33bb15a4ac3f082", + "cborBytes": [27, 243, 59, 177, 90, 74, 195, 240, 130], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3305, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2306737627587142329" + } + }, + "cborHex": "1b20032da6925be2b9", + "cborBytes": [27, 32, 3, 45, 166, 146, 91, 226, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3306, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5173463006783237013" + } + }, + "cborHex": "1b47cbd531c9f06b95", + "cborBytes": [27, 71, 203, 213, 49, 201, 240, 107, 149], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3307, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13385734617521915819" + } + }, + "cborHex": "1bb9c3aeb6c70b07ab", + "cborBytes": [27, 185, 195, 174, 182, 199, 11, 7, 171], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3308, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4939572130456239868" + } + }, + "cborHex": "1b448ce2ae82437efc", + "cborBytes": [27, 68, 140, 226, 174, 130, 67, 126, 252], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3309, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1523086938181423574" + } + }, + "cborHex": "1b15231780285751d6", + "cborBytes": [27, 21, 35, 23, 128, 40, 87, 81, 214], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3310, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16828413046473746274" + } + }, + "cborHex": "1be98a8881489de762", + "cborBytes": [27, 233, 138, 136, 129, 72, 157, 231, 98], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3311, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8115107816908785861" + } + }, + "cborHex": "1b709ea79054d808c5", + "cborBytes": [27, 112, 158, 167, 144, 84, 216, 8, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3312, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1046855390903492347" + } + }, + "cborHex": "1b0e872d6e7a015efb", + "cborBytes": [27, 14, 135, 45, 110, 122, 1, 94, 251], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3313, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11928193444717216883" + } + }, + "cborHex": "1ba58974bd5c834473", + "cborBytes": [27, 165, 137, 116, 189, 92, 131, 68, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3314, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1775363368063492322" + } + }, + "cborHex": "1b18a35b93b4aa60e2", + "cborBytes": [27, 24, 163, 91, 147, 180, 170, 96, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3315, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15811855281800244595" + } + }, + "cborHex": "1bdb6efe9a9f966d73", + "cborBytes": [27, 219, 110, 254, 154, 159, 150, 109, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3316, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4527327109003063372" + } + }, + "cborHex": "1b3ed44c04d21fb04c", + "cborBytes": [27, 62, 212, 76, 4, 210, 31, 176, 76], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3317, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5352256850233027232" + } + }, + "cborHex": "1b4a47093f70ca6aa0", + "cborBytes": [27, 74, 71, 9, 63, 112, 202, 106, 160], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3318, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18247210624970887179" + } + }, + "cborHex": "1bfd3b1d62b31f900b", + "cborBytes": [27, 253, 59, 29, 98, 179, 31, 144, 11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3319, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1945806687357086146" + } + }, + "cborHex": "1b1b00e4df717fa9c2", + "cborBytes": [27, 27, 0, 228, 223, 113, 127, 169, 194], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3320, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4847622235798017855" + } + }, + "cborHex": "1b434636bd5a06973f", + "cborBytes": [27, 67, 70, 54, 189, 90, 6, 151, 63], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3321, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7765663050069142348" + } + }, + "cborHex": "1b6bc52d6658bf6b4c", + "cborBytes": [27, 107, 197, 45, 102, 88, 191, 107, 76], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3322, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5395925887154476408" + } + }, + "cborHex": "1b4ae22e016a2d5578", + "cborBytes": [27, 74, 226, 46, 1, 106, 45, 85, 120], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3323, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10904430175244096447" + } + }, + "cborHex": "1b97545178617993bf", + "cborBytes": [27, 151, 84, 81, 120, 97, 121, 147, 191], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3324, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7180745631234630304" + } + }, + "cborHex": "1b63a7221b3c2da2a0", + "cborBytes": [27, 99, 167, 34, 27, 60, 45, 162, 160], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3325, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10827897583279304072" + } + }, + "cborHex": "1b96446b7bbbac6d88", + "cborBytes": [27, 150, 68, 107, 123, 187, 172, 109, 136], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3326, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12905148126726664023" + } + }, + "cborHex": "1bb3184bd8cb572f57", + "cborBytes": [27, 179, 24, 75, 216, 203, 87, 47, 87], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3327, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13563457933205546542" + } + }, + "cborHex": "1bbc3b1520c2aba62e", + "cborBytes": [27, 188, 59, 21, 32, 194, 171, 166, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3328, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4608895776238344775" + } + }, + "cborHex": "1b3ff6164a1d7c1a47", + "cborBytes": [27, 63, 246, 22, 74, 29, 124, 26, 71], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3329, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15026335620833756406" + } + }, + "cborHex": "1bd08844a25b9844f6", + "cborBytes": [27, 208, 136, 68, 162, 91, 152, 68, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3330, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18034960675067045382" + } + }, + "cborHex": "1bfa490d2e3f82a606", + "cborBytes": [27, 250, 73, 13, 46, 63, 130, 166, 6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3331, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18052831525439126035" + } + }, + "cborHex": "1bfa888a9fd7c5ba13", + "cborBytes": [27, 250, 136, 138, 159, 215, 197, 186, 19], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3332, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4551720195023907942" + } + }, + "cborHex": "1b3f2af566bd5f2c66", + "cborBytes": [27, 63, 42, 245, 102, 189, 95, 44, 102], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3333, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14003096499385348157" + } + }, + "cborHex": "1bc254fe131961303d", + "cborBytes": [27, 194, 84, 254, 19, 25, 97, 48, 61], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3334, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11009199586570132485" + } + }, + "cborHex": "1b98c888b1dae3dc05", + "cborBytes": [27, 152, 200, 136, 177, 218, 227, 220, 5], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3335, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15462286041523280007" + } + }, + "cborHex": "1bd695133b6879d887", + "cborBytes": [27, 214, 149, 19, 59, 104, 121, 216, 135], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3336, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15376882301972850" + } + }, + "cborHex": "1b0036a131675cb172", + "cborBytes": [27, 0, 54, 161, 49, 103, 92, 177, 114], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3337, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10317835624486494765" + } + }, + "cborHex": "1b8f3050d59063622d", + "cborBytes": [27, 143, 48, 80, 213, 144, 99, 98, 45], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3338, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16832755487322430433" + } + }, + "cborHex": "1be999f5ee94dc5be1", + "cborBytes": [27, 233, 153, 245, 238, 148, 220, 91, 225], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3339, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15757076460759784998" + } + }, + "cborHex": "1bdaac618e76419e26", + "cborBytes": [27, 218, 172, 97, 142, 118, 65, 158, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3340, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13252733404827461685" + } + }, + "cborHex": "1bb7eb2ad0d1b1a835", + "cborBytes": [27, 183, 235, 42, 208, 209, 177, 168, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3341, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15300888670339246832" + } + }, + "cborHex": "1bd457ad2d975eaaf0", + "cborBytes": [27, 212, 87, 173, 45, 151, 94, 170, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3342, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5684199738392221829" + } + }, + "cborHex": "1b4ee2558bbf3c9885", + "cborBytes": [27, 78, 226, 85, 139, 191, 60, 152, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3343, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6480659685459372246" + } + }, + "cborHex": "1b59efeda5de0028d6", + "cborBytes": [27, 89, 239, 237, 165, 222, 0, 40, 214], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3344, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10589645308567211878" + } + }, + "cborHex": "1b92f5fa4d4287cf66", + "cborBytes": [27, 146, 245, 250, 77, 66, 135, 207, 102], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3345, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6704347630456447184" + } + }, + "cborHex": "1b5d0aa0a61416a0d0", + "cborBytes": [27, 93, 10, 160, 166, 20, 22, 160, 208], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3346, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10180258600242767233" + } + }, + "cborHex": "1b8d478b427515e581", + "cborBytes": [27, 141, 71, 139, 66, 117, 21, 229, 129], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3347, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1315194485173723938" + } + }, + "cborHex": "1b1240826a83552322", + "cborBytes": [27, 18, 64, 130, 106, 131, 85, 35, 34], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3348, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13881115104697750237" + } + }, + "cborHex": "1bc0a3a0a475d192dd", + "cborBytes": [27, 192, 163, 160, 164, 117, 209, 146, 221], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3349, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11409719229504671270" + } + }, + "cborHex": "1b9e5777301d91ce26", + "cborBytes": [27, 158, 87, 119, 48, 29, 145, 206, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3350, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3573689693588357647" + } + }, + "cborHex": "1b31984bd793cf020f", + "cborBytes": [27, 49, 152, 75, 215, 147, 207, 2, 15], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3351, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6242251574898655524" + } + }, + "cborHex": "1b56a0eebc08750124", + "cborBytes": [27, 86, 160, 238, 188, 8, 117, 1, 36], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3352, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12984347545282241356" + } + }, + "cborHex": "1bb431ab4c64c3634c", + "cborBytes": [27, 180, 49, 171, 76, 100, 195, 99, 76], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3353, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8620226115350278392" + } + }, + "cborHex": "1b77a131fae0ffb0f8", + "cborBytes": [27, 119, 161, 49, 250, 224, 255, 176, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3354, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "294406524842404945" + } + }, + "cborHex": "1b0415f12cacc9ec51", + "cborBytes": [27, 4, 21, 241, 44, 172, 201, 236, 81], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3355, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6650447262375293331" + } + }, + "cborHex": "1b5c4b228caf593193", + "cborBytes": [27, 92, 75, 34, 140, 175, 89, 49, 147], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3356, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17361176278564117251" + } + }, + "cborHex": "1bf0ef49d786c09b03", + "cborBytes": [27, 240, 239, 73, 215, 134, 192, 155, 3], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3357, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4812115720320347300" + } + }, + "cborHex": "1b42c811c07fc46ca4", + "cborBytes": [27, 66, 200, 17, 192, 127, 196, 108, 164], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3358, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10078362420959994833" + } + }, + "cborHex": "1b8bdd893972f763d1", + "cborBytes": [27, 139, 221, 137, 57, 114, 247, 99, 209], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3359, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14562418539873197150" + } + }, + "cborHex": "1bca181a81cbb45c5e", + "cborBytes": [27, 202, 24, 26, 129, 203, 180, 92, 94], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3360, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "173176114432860616" + } + }, + "cborHex": "1b02673ec2305a61c8", + "cborBytes": [27, 2, 103, 62, 194, 48, 90, 97, 200], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3361, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2415359647620669957" + } + }, + "cborHex": "1b218514cd693e2205", + "cborBytes": [27, 33, 133, 20, 205, 105, 62, 34, 5], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3362, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6562539060082921732" + } + }, + "cborHex": "1b5b12d2815cde5104", + "cborBytes": [27, 91, 18, 210, 129, 92, 222, 81, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3363, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15436221869154504441" + } + }, + "cborHex": "1bd6387a0161120ef9", + "cborBytes": [27, 214, 56, 122, 1, 97, 18, 14, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3364, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14103424790287474662" + } + }, + "cborHex": "1bc3b96e1fa585dfe6", + "cborBytes": [27, 195, 185, 110, 31, 165, 133, 223, 230], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3365, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17950749030533374899" + } + }, + "cborHex": "1bf91ddf22d92123b3", + "cborBytes": [27, 249, 29, 223, 34, 217, 33, 35, 179], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3366, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16716047507411886468" + } + }, + "cborHex": "1be7fb54a47fd6e184", + "cborBytes": [27, 231, 251, 84, 164, 127, 214, 225, 132], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3367, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1162333569468822141" + } + }, + "cborHex": "1b102170391eb3727d", + "cborBytes": [27, 16, 33, 112, 57, 30, 179, 114, 125], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3368, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1285906787518636314" + } + }, + "cborHex": "1b11d87569044fe11a", + "cborBytes": [27, 17, 216, 117, 105, 4, 79, 225, 26], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3369, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7687793658318287287" + } + }, + "cborHex": "1b6ab08799be8ff1b7", + "cborBytes": [27, 106, 176, 135, 153, 190, 143, 241, 183], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3370, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2545485472100240388" + } + }, + "cborHex": "1b2353618ce173cc04", + "cborBytes": [27, 35, 83, 97, 140, 225, 115, 204, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3371, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4437292136589247315" + } + }, + "cborHex": "1b3d946db03e094353", + "cborBytes": [27, 61, 148, 109, 176, 62, 9, 67, 83], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3372, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16465645804196778461" + } + }, + "cborHex": "1be481b99ec48cd1dd", + "cborBytes": [27, 228, 129, 185, 158, 196, 140, 209, 221], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3373, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7121438856525993350" + } + }, + "cborHex": "1b62d46ee8b4e55586", + "cborBytes": [27, 98, 212, 110, 232, 180, 229, 85, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3374, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17081460364156004065" + } + }, + "cborHex": "1bed0d89b3226ee6e1", + "cborBytes": [27, 237, 13, 137, 179, 34, 110, 230, 225], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3375, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7145885473426050100" + } + }, + "cborHex": "1b632b48fa412f0c34", + "cborBytes": [27, 99, 43, 72, 250, 65, 47, 12, 52], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3376, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16152378314966569370" + } + }, + "cborHex": "1be028c67f9d4e119a", + "cborBytes": [27, 224, 40, 198, 127, 157, 78, 17, 154], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3377, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4613525400426288172" + } + }, + "cborHex": "1b400688e87ea6942c", + "cborBytes": [27, 64, 6, 136, 232, 126, 166, 148, 44], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3378, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1476143793361344897" + } + }, + "cborHex": "1b147c50f588b35981", + "cborBytes": [27, 20, 124, 80, 245, 136, 179, 89, 129], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3379, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18210944424523298123" + } + }, + "cborHex": "1bfcba4577e817754b", + "cborBytes": [27, 252, 186, 69, 119, 232, 23, 117, 75], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3380, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4785131019592969130" + } + }, + "cborHex": "1b4268334f428aabaa", + "cborBytes": [27, 66, 104, 51, 79, 66, 138, 171, 170], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3381, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8968836827197248561" + } + }, + "cborHex": "1b7c77b5934d889431", + "cborBytes": [27, 124, 119, 181, 147, 77, 136, 148, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3382, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3264608251039314764" + } + }, + "cborHex": "1b2d4e37e85e01f34c", + "cborBytes": [27, 45, 78, 55, 232, 94, 1, 243, 76], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3383, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12974051027491921856" + } + }, + "cborHex": "1bb40d16ab87729fc0", + "cborBytes": [27, 180, 13, 22, 171, 135, 114, 159, 192], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3384, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3800534932474601962" + } + }, + "cborHex": "1b34be36628e9ca1ea", + "cborBytes": [27, 52, 190, 54, 98, 142, 156, 161, 234], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3385, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11359151101268702265" + } + }, + "cborHex": "1b9da3cfbe451bb439", + "cborBytes": [27, 157, 163, 207, 190, 69, 27, 180, 57], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3386, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6624581704277614208" + } + }, + "cborHex": "1b5bef3df62504de80", + "cborBytes": [27, 91, 239, 61, 246, 37, 4, 222, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3387, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10722116495113751220" + } + }, + "cborHex": "1b94cc9c24e39c8ab4", + "cborBytes": [27, 148, 204, 156, 36, 227, 156, 138, 180], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3388, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16332708282790578159" + } + }, + "cborHex": "1be2a96fa617d007ef", + "cborBytes": [27, 226, 169, 111, 166, 23, 208, 7, 239], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3389, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15478772147417448411" + } + }, + "cborHex": "1bd6cfa5420e06ffdb", + "cborBytes": [27, 214, 207, 165, 66, 14, 6, 255, 219], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3390, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7540459017475496367" + } + }, + "cborHex": "1b68a517867c0499af", + "cborBytes": [27, 104, 165, 23, 134, 124, 4, 153, 175], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3391, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7387660314403313576" + } + }, + "cborHex": "1b66863dea194297a8", + "cborBytes": [27, 102, 134, 61, 234, 25, 66, 151, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3392, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6550220192472981270" + } + }, + "cborHex": "1b5ae70e8f7cf15f16", + "cborBytes": [27, 90, 231, 14, 143, 124, 241, 95, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3393, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "162295239897040810" + } + }, + "cborHex": "1b024096a92accc7aa", + "cborBytes": [27, 2, 64, 150, 169, 42, 204, 199, 170], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3394, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17137968073785843535" + } + }, + "cborHex": "1bedd64b2989fd9f4f", + "cborBytes": [27, 237, 214, 75, 41, 137, 253, 159, 79], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3395, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7561819589767601793" + } + }, + "cborHex": "1b68f0fada47b01e81", + "cborBytes": [27, 104, 240, 250, 218, 71, 176, 30, 129], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3396, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2950982207237126877" + } + }, + "cborHex": "1b28f3feaeb8ddfadd", + "cborBytes": [27, 40, 243, 254, 174, 184, 221, 250, 221], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3397, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5906775557198528449" + } + }, + "cborHex": "1b51f91512e6c73fc1", + "cborBytes": [27, 81, 249, 21, 18, 230, 199, 63, 193], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3398, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3649029907218030598" + } + }, + "cborHex": "1b32a3f55e0281e006", + "cborBytes": [27, 50, 163, 245, 94, 2, 129, 224, 6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3399, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2118087795376705837" + } + }, + "cborHex": "1b1d64f5a0b684d12d", + "cborBytes": [27, 29, 100, 245, 160, 182, 132, 209, 45], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3400, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "72775217935372644" + } + }, + "cborHex": "1b01028cacd57d5164", + "cborBytes": [27, 1, 2, 140, 172, 213, 125, 81, 100], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3401, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12745142259192161617" + } + }, + "cborHex": "1bb0dfd75baaf7e551", + "cborBytes": [27, 176, 223, 215, 91, 170, 247, 229, 81], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3402, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3033695649490077315" + } + }, + "cborHex": "1b2a19da1eb8810683", + "cborBytes": [27, 42, 25, 218, 30, 184, 129, 6, 131], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3403, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3282975407413669990" + } + }, + "cborHex": "1b2d8f78bd353c3066", + "cborBytes": [27, 45, 143, 120, 189, 53, 60, 48, 102], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3404, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16019512105067421887" + } + }, + "cborHex": "1bde50bd62719d20bf", + "cborBytes": [27, 222, 80, 189, 98, 113, 157, 32, 191], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3405, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14765680002795586162" + } + }, + "cborHex": "1bccea3bbb09b84272", + "cborBytes": [27, 204, 234, 59, 187, 9, 184, 66, 114], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3406, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11431501788801365186" + } + }, + "cborHex": "1b9ea4da4f6abf74c2", + "cborBytes": [27, 158, 164, 218, 79, 106, 191, 116, 194], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3407, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9514975347127608344" + } + }, + "cborHex": "1b840bfbaa6c23e418", + "cborBytes": [27, 132, 11, 251, 170, 108, 35, 228, 24], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3408, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4846489180772616926" + } + }, + "cborHex": "1b4342303b6bb9cade", + "cborBytes": [27, 67, 66, 48, 59, 107, 185, 202, 222], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3409, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10807103991693191553" + } + }, + "cborHex": "1b95fa8bd26b942981", + "cborBytes": [27, 149, 250, 139, 210, 107, 148, 41, 129], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3410, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4701250357056029385" + } + }, + "cborHex": "1b413e324a9c80c2c9", + "cborBytes": [27, 65, 62, 50, 74, 156, 128, 194, 201], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3411, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10271841977776423937" + } + }, + "cborHex": "1b8e8ce9db324f4401", + "cborBytes": [27, 142, 140, 233, 219, 50, 79, 68, 1], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3412, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6099982814693627011" + } + }, + "cborHex": "1b54a77e0d05cd1483", + "cborBytes": [27, 84, 167, 126, 13, 5, 205, 20, 131], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3413, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3374054757777400175" + } + }, + "cborHex": "1b2ed30cecfa09e16f", + "cborBytes": [27, 46, 211, 12, 236, 250, 9, 225, 111], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3414, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12243292904577215634" + } + }, + "cborHex": "1ba9e8ea076a62ac92", + "cborBytes": [27, 169, 232, 234, 7, 106, 98, 172, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3415, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15954852901177430950" + } + }, + "cborHex": "1bdd6b062e624a93a6", + "cborBytes": [27, 221, 107, 6, 46, 98, 74, 147, 166], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3416, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18246811117036905752" + } + }, + "cborHex": "1bfd39b20902a22518", + "cborBytes": [27, 253, 57, 178, 9, 2, 162, 37, 24], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3417, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7371453944593576913" + } + }, + "cborHex": "1b664caa4e95a6f3d1", + "cborBytes": [27, 102, 76, 170, 78, 149, 166, 243, 209], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3418, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2467659856869314306" + } + }, + "cborHex": "1b223ee390cb2fcf02", + "cborBytes": [27, 34, 62, 227, 144, 203, 47, 207, 2], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3419, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5795688639429661930" + } + }, + "cborHex": "1b506e6c1c55f8d4ea", + "cborBytes": [27, 80, 110, 108, 28, 85, 248, 212, 234], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3420, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10771827709426804202" + } + }, + "cborHex": "1b957d383aea1825ea", + "cborBytes": [27, 149, 125, 56, 58, 234, 24, 37, 234], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3421, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6206902663143247503" + } + }, + "cborHex": "1b5623591628144e8f", + "cborBytes": [27, 86, 35, 89, 22, 40, 20, 78, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3422, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1431104317157530099" + } + }, + "cborHex": "1b13dc4dcb4cb3d9f3", + "cborBytes": [27, 19, 220, 77, 203, 76, 179, 217, 243], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3423, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17891381267251826304" + } + }, + "cborHex": "1bf84af4784f9f8e80", + "cborBytes": [27, 248, 74, 244, 120, 79, 159, 142, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3424, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2056423482243471600" + } + }, + "cborHex": "1b1c89e242fee4d8f0", + "cborBytes": [27, 28, 137, 226, 66, 254, 228, 216, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3425, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18229668033119760491" + } + }, + "cborHex": "1bfcfcca7dbf65b06b", + "cborBytes": [27, 252, 252, 202, 125, 191, 101, 176, 107], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3426, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2312941741518809409" + } + }, + "cborHex": "1b201938426966e941", + "cborBytes": [27, 32, 25, 56, 66, 105, 102, 233, 65], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3427, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13173055177459139496" + } + }, + "cborHex": "1bb6d017e3db1283a8", + "cborBytes": [27, 182, 208, 23, 227, 219, 18, 131, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3428, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7730197541114772340" + } + }, + "cborHex": "1b6b472db511be7b74", + "cborBytes": [27, 107, 71, 45, 181, 17, 190, 123, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3429, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12534826153329552854" + } + }, + "cborHex": "1badf4a5f95e7bedd6", + "cborBytes": [27, 173, 244, 165, 249, 94, 123, 237, 214], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3430, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8515107758903703426" + } + }, + "cborHex": "1b762bbd6449a0b782", + "cborBytes": [27, 118, 43, 189, 100, 73, 160, 183, 130], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3431, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2614972763038063388" + } + }, + "cborHex": "1b244a3fdf8e349b1c", + "cborBytes": [27, 36, 74, 63, 223, 142, 52, 155, 28], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3432, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10598432833814810583" + } + }, + "cborHex": "1b931532826b5e4fd7", + "cborBytes": [27, 147, 21, 50, 130, 107, 94, 79, 215], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3433, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11620758590362286069" + } + }, + "cborHex": "1ba1453a5e571cf7f5", + "cborBytes": [27, 161, 69, 58, 94, 87, 28, 247, 245], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3434, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14459520438562515394" + } + }, + "cborHex": "1bc8aa893aa304e9c2", + "cborBytes": [27, 200, 170, 137, 58, 163, 4, 233, 194], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3435, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6519071217649256586" + } + }, + "cborHex": "1b5a7864bba175088a", + "cborBytes": [27, 90, 120, 100, 187, 161, 117, 8, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3436, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14313780856348491058" + } + }, + "cborHex": "1bc6a4c3d9e7703d32", + "cborBytes": [27, 198, 164, 195, 217, 231, 112, 61, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3437, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3332573595159184263" + } + }, + "cborHex": "1b2e3fae072f4f4387", + "cborBytes": [27, 46, 63, 174, 7, 47, 79, 67, 135], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3438, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17066563266225939117" + } + }, + "cborHex": "1becd89cde3c20a2ad", + "cborBytes": [27, 236, 216, 156, 222, 60, 32, 162, 173], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3439, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "541043042086054929" + } + }, + "cborHex": "1b07822bc7bbbc6c11", + "cborBytes": [27, 7, 130, 43, 199, 187, 188, 108, 17], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3440, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14687387772576015826" + } + }, + "cborHex": "1bcbd4155caecf25d2", + "cborBytes": [27, 203, 212, 21, 92, 174, 207, 37, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3441, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7684719615397491760" + } + }, + "cborHex": "1b6aa59bc65a3e7430", + "cborBytes": [27, 106, 165, 155, 198, 90, 62, 116, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3442, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8779830281586351733" + } + }, + "cborHex": "1b79d8391fa22c1e75", + "cborBytes": [27, 121, 216, 57, 31, 162, 44, 30, 117], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3443, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13313802135627162070" + } + }, + "cborHex": "1bb8c42080b7e4e1d6", + "cborBytes": [27, 184, 196, 32, 128, 183, 228, 225, 214], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3444, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7938236392762352352" + } + }, + "cborHex": "1b6e2a47f0cdada2e0", + "cborBytes": [27, 110, 42, 71, 240, 205, 173, 162, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3445, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13377785294624180418" + } + }, + "cborHex": "1bb9a770d8cf84c8c2", + "cborBytes": [27, 185, 167, 112, 216, 207, 132, 200, 194], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3446, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16990206298107826254" + } + }, + "cborHex": "1bebc9569c3352504e", + "cborBytes": [27, 235, 201, 86, 156, 51, 82, 80, 78], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3447, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3439025851056065554" + } + }, + "cborHex": "1b2fb9dfca71950c12", + "cborBytes": [27, 47, 185, 223, 202, 113, 149, 12, 18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3448, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3603014199639336502" + } + }, + "cborHex": "1b32007a533230e636", + "cborBytes": [27, 50, 0, 122, 83, 50, 48, 230, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3449, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14203338986510589504" + } + }, + "cborHex": "1bc51c658e436b9e40", + "cborBytes": [27, 197, 28, 101, 142, 67, 107, 158, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3450, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18273340853721218074" + } + }, + "cborHex": "1bfd97f2b0adafbc1a", + "cborBytes": [27, 253, 151, 242, 176, 173, 175, 188, 26], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3451, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6011394220937984711" + } + }, + "cborHex": "1b536cc331b7d83ac7", + "cborBytes": [27, 83, 108, 195, 49, 183, 216, 58, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3452, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11881419372337303201" + } + }, + "cborHex": "1ba4e347f7fb9c0ea1", + "cborBytes": [27, 164, 227, 71, 247, 251, 156, 14, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3453, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2382157128195841377" + } + }, + "cborHex": "1b210f1f4971471d61", + "cborBytes": [27, 33, 15, 31, 73, 113, 71, 29, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3454, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10304384719123352640" + } + }, + "cborHex": "1b8f00874e9c4f8c40", + "cborBytes": [27, 143, 0, 135, 78, 156, 79, 140, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3455, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7254653107466155746" + } + }, + "cborHex": "1b64adb4907f3436e2", + "cborBytes": [27, 100, 173, 180, 144, 127, 52, 54, 226], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3456, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9014409444373269563" + } + }, + "cborHex": "1b7d199da117cb8c3b", + "cborBytes": [27, 125, 25, 157, 161, 23, 203, 140, 59], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3457, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15953012365769630930" + } + }, + "cborHex": "1bdd647c39571ce4d2", + "cborBytes": [27, 221, 100, 124, 57, 87, 28, 228, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3458, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9987227484123787806" + } + }, + "cborHex": "1b8a99c27b7237721e", + "cborBytes": [27, 138, 153, 194, 123, 114, 55, 114, 30], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3459, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13744563734943737697" + } + }, + "cborHex": "1bbebe7fe52609a761", + "cborBytes": [27, 190, 190, 127, 229, 38, 9, 167, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3460, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16321555536432649648" + } + }, + "cborHex": "1be281d048fae0d5b0", + "cborBytes": [27, 226, 129, 208, 72, 250, 224, 213, 176], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3461, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8695310630918700933" + } + }, + "cborHex": "1b78abf2f2f7963f85", + "cborBytes": [27, 120, 171, 242, 242, 247, 150, 63, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3462, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7871707849535403225" + } + }, + "cborHex": "1b6d3dec95433634d9", + "cborBytes": [27, 109, 61, 236, 149, 67, 54, 52, 217], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3463, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16389831498337926702" + } + }, + "cborHex": "1be37460e922f0be2e", + "cborBytes": [27, 227, 116, 96, 233, 34, 240, 190, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3464, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10483830855533696444" + } + }, + "cborHex": "1b917e0c9e0d5d95bc", + "cborBytes": [27, 145, 126, 12, 158, 13, 93, 149, 188], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3465, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6647535447225601137" + } + }, + "cborHex": "1b5c40ca44e3b30c71", + "cborBytes": [27, 92, 64, 202, 68, 227, 179, 12, 113], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3466, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14268972886990023833" + } + }, + "cborHex": "1bc605933d8eb86c99", + "cborBytes": [27, 198, 5, 147, 61, 142, 184, 108, 153], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3467, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16350875505306858246" + } + }, + "cborHex": "1be2e9faa434737306", + "cborBytes": [27, 226, 233, 250, 164, 52, 115, 115, 6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3468, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8021332649068981406" + } + }, + "cborHex": "1b6f517f8ba4ffec9e", + "cborBytes": [27, 111, 81, 127, 139, 164, 255, 236, 158], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3469, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16052684857172607633" + } + }, + "cborHex": "1bdec697d3ab10c291", + "cborBytes": [27, 222, 198, 151, 211, 171, 16, 194, 145], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3470, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "123986290098066689" + } + }, + "cborHex": "1b01b87cdfba505501", + "cborBytes": [27, 1, 184, 124, 223, 186, 80, 85, 1], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3471, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5790579662190045338" + } + }, + "cborHex": "1b505c4585e070689a", + "cborBytes": [27, 80, 92, 69, 133, 224, 112, 104, 154], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3472, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3753935768996489612" + } + }, + "cborHex": "1b3418a8b154ab298c", + "cborBytes": [27, 52, 24, 168, 177, 84, 171, 41, 140], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3473, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2433370595697307961" + } + }, + "cborHex": "1b21c511aa0b6b3139", + "cborBytes": [27, 33, 197, 17, 170, 11, 107, 49, 57], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3474, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14044382786612966778" + } + }, + "cborHex": "1bc2e7abbbedad357a", + "cborBytes": [27, 194, 231, 171, 187, 237, 173, 53, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3475, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4223398054269003357" + } + }, + "cborHex": "1b3a9c862761c7a65d", + "cborBytes": [27, 58, 156, 134, 39, 97, 199, 166, 93], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3476, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16021205767192629473" + } + }, + "cborHex": "1bde56c1c2e2f4d0e1", + "cborBytes": [27, 222, 86, 193, 194, 226, 244, 208, 225], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3477, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15131738318668471776" + } + }, + "cborHex": "1bd1febbd456669de0", + "cborBytes": [27, 209, 254, 187, 212, 86, 102, 157, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3478, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18309547427336179309" + } + }, + "cborHex": "1bfe189460848a4e6d", + "cborBytes": [27, 254, 24, 148, 96, 132, 138, 78, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3479, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17034154720854649752" + } + }, + "cborHex": "1bec657977c195ab98", + "cborBytes": [27, 236, 101, 121, 119, 193, 149, 171, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3480, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2203317304851945640" + } + }, + "cborHex": "1b1e93c16a432bd8a8", + "cborBytes": [27, 30, 147, 193, 106, 67, 43, 216, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3481, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "856650286993464364" + } + }, + "cborHex": "1b0be36ee5b4fb5c2c", + "cborBytes": [27, 11, 227, 110, 229, 180, 251, 92, 44], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3482, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17457323965833699572" + } + }, + "cborHex": "1bf244dfa7706e60f4", + "cborBytes": [27, 242, 68, 223, 167, 112, 110, 96, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3483, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10825190419119067530" + } + }, + "cborHex": "1b963acd54f58dd18a", + "cborBytes": [27, 150, 58, 205, 84, 245, 141, 209, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3484, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7363599167501788486" + } + }, + "cborHex": "1b6630c26dc74e6546", + "cborBytes": [27, 102, 48, 194, 109, 199, 78, 101, 70], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3485, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5708441430729357903" + } + }, + "cborHex": "1b4f38753c93befa4f", + "cborBytes": [27, 79, 56, 117, 60, 147, 190, 250, 79], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3486, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14850983588385928001" + } + }, + "cborHex": "1bce194ae3c6e63341", + "cborBytes": [27, 206, 25, 74, 227, 198, 230, 51, 65], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3487, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16047079870891435822" + } + }, + "cborHex": "1bdeb2ae1f1ace272e", + "cborBytes": [27, 222, 178, 174, 31, 26, 206, 39, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3488, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4291456987504381025" + } + }, + "cborHex": "1b3b8e51649d110c61", + "cborBytes": [27, 59, 142, 81, 100, 157, 17, 12, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3489, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3293388058523314511" + } + }, + "cborHex": "1b2db476fd77cba94f", + "cborBytes": [27, 45, 180, 118, 253, 119, 203, 169, 79], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3490, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1118276266250808384" + } + }, + "cborHex": "1b0f84ea56daa12c40", + "cborBytes": [27, 15, 132, 234, 86, 218, 161, 44, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3491, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17574963422956177783" + } + }, + "cborHex": "1bf3e6d01df5c94977", + "cborBytes": [27, 243, 230, 208, 29, 245, 201, 73, 119], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3492, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11759446058946518443" + } + }, + "cborHex": "1ba331f1e2eadfddab", + "cborBytes": [27, 163, 49, 241, 226, 234, 223, 221, 171], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3493, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2279617079042563733" + } + }, + "cborHex": "1b1fa2d3a7cc3ede95", + "cborBytes": [27, 31, 162, 211, 167, 204, 62, 222, 149], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3494, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3543237108536647286" + } + }, + "cborHex": "1b312c1b60994f1e76", + "cborBytes": [27, 49, 44, 27, 96, 153, 79, 30, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3495, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13708431107047711577" + } + }, + "cborHex": "1bbe3e2176237e6359", + "cborBytes": [27, 190, 62, 33, 118, 35, 126, 99, 89], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3496, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14351110749141743466" + } + }, + "cborHex": "1bc7296330dee2376a", + "cborBytes": [27, 199, 41, 99, 48, 222, 226, 55, 106], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3497, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4036711481524512707" + } + }, + "cborHex": "1b380547b47d0267c3", + "cborBytes": [27, 56, 5, 71, 180, 125, 2, 103, 195], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3498, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17915007763518963499" + } + }, + "cborHex": "1bf89ee4a4a4e9bf2b", + "cborBytes": [27, 248, 158, 228, 164, 164, 233, 191, 43], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3499, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5282139373199487326" + } + }, + "cborHex": "1b494dedc621a8f15e", + "cborBytes": [27, 73, 77, 237, 198, 33, 168, 241, 94], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3500, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9534299988641925529" + } + }, + "cborHex": "1b8450a35325034999", + "cborBytes": [27, 132, 80, 163, 83, 37, 3, 73, 153], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3501, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7975014229701668389" + } + }, + "cborHex": "1b6eacf130400dae25", + "cborBytes": [27, 110, 172, 241, 48, 64, 13, 174, 37], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3502, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4687889316660193269" + } + }, + "cborHex": "1b410eba7ef9e127f5", + "cborBytes": [27, 65, 14, 186, 126, 249, 225, 39, 245], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3503, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2317128908016595024" + } + }, + "cborHex": "1b20281877151e3050", + "cborBytes": [27, 32, 40, 24, 119, 21, 30, 48, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3504, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3599699174389237963" + } + }, + "cborHex": "1b31f4b353bbbcc8cb", + "cborBytes": [27, 49, 244, 179, 83, 187, 188, 200, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3505, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4872453623855958293" + } + }, + "cborHex": "1b439e6ec16a7fc915", + "cborBytes": [27, 67, 158, 110, 193, 106, 127, 201, 21], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3506, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13978017585102476094" + } + }, + "cborHex": "1bc1fbe4ef5832533e", + "cborBytes": [27, 193, 251, 228, 239, 88, 50, 83, 62], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3507, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17618791393146938546" + } + }, + "cborHex": "1bf482856c783ba4b2", + "cborBytes": [27, 244, 130, 133, 108, 120, 59, 164, 178], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3508, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1642262312250734706" + } + }, + "cborHex": "1b16ca7cdf35b77872", + "cborBytes": [27, 22, 202, 124, 223, 53, 183, 120, 114], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3509, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13930991101349600173" + } + }, + "cborHex": "1bc154d298dd121bad", + "cborBytes": [27, 193, 84, 210, 152, 221, 18, 27, 173], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3510, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6246915717184958071" + } + }, + "cborHex": "1b56b180bf489d2e77", + "cborBytes": [27, 86, 177, 128, 191, 72, 157, 46, 119], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3511, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9054814169435926972" + } + }, + "cborHex": "1b7da929833c66f1bc", + "cborBytes": [27, 125, 169, 41, 131, 60, 102, 241, 188], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3512, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15976984034993378722" + } + }, + "cborHex": "1bddb9a65483de15a2", + "cborBytes": [27, 221, 185, 166, 84, 131, 222, 21, 162], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3513, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10042537193262499365" + } + }, + "cborHex": "1b8b5e425ea00f4625", + "cborBytes": [27, 139, 94, 66, 94, 160, 15, 70, 37], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3514, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6067771791120438500" + } + }, + "cborHex": "1b54350e4babde94e4", + "cborBytes": [27, 84, 53, 14, 75, 171, 222, 148, 228], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3515, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9245355817110059733" + } + }, + "cborHex": "1b804e1a21b4efbad5", + "cborBytes": [27, 128, 78, 26, 33, 180, 239, 186, 213], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3516, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14289989760307424714" + } + }, + "cborHex": "1bc6503df9b317edca", + "cborBytes": [27, 198, 80, 61, 249, 179, 23, 237, 202], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3517, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16423685305245638109" + } + }, + "cborHex": "1be3eca6c4c9f81ddd", + "cborBytes": [27, 227, 236, 166, 196, 201, 248, 29, 221], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3518, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2672116879038280838" + } + }, + "cborHex": "1b25154424dd66f486", + "cborBytes": [27, 37, 21, 68, 36, 221, 102, 244, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3519, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1826307875170983183" + } + }, + "cborHex": "1b1958595616109d0f", + "cborBytes": [27, 25, 88, 89, 86, 22, 16, 157, 15], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3520, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7542368600165901843" + } + }, + "cborHex": "1b68abe047d9f2e613", + "cborBytes": [27, 104, 171, 224, 71, 217, 242, 230, 19], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3521, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "476338352799364223" + } + }, + "cborHex": "1b069c4b354780347f", + "cborBytes": [27, 6, 156, 75, 53, 71, 128, 52, 127], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3522, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18100437161580019141" + } + }, + "cborHex": "1bfb31abb2bf41bdc5", + "cborBytes": [27, 251, 49, 171, 178, 191, 65, 189, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3523, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15455720388413638400" + } + }, + "cborHex": "1bd67dbfce2b284700", + "cborBytes": [27, 214, 125, 191, 206, 43, 40, 71, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3524, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17192866175410860396" + } + }, + "cborHex": "1bee9954b1e031716c", + "cborBytes": [27, 238, 153, 84, 177, 224, 49, 113, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3525, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17642449354456439688" + } + }, + "cborHex": "1bf4d69236d4321b88", + "cborBytes": [27, 244, 214, 146, 54, 212, 50, 27, 136], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3526, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14279374236783679188" + } + }, + "cborHex": "1bc62a8736865b16d4", + "cborBytes": [27, 198, 42, 135, 54, 134, 91, 22, 212], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3527, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "350799995328653162" + } + }, + "cborHex": "1b04de4abcb4c5e76a", + "cborBytes": [27, 4, 222, 74, 188, 180, 197, 231, 106], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3528, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11442812087386657329" + } + }, + "cborHex": "1b9ecd08f7843a5231", + "cborBytes": [27, 158, 205, 8, 247, 132, 58, 82, 49], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3529, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3425463995009131450" + } + }, + "cborHex": "1b2f89b15ac568e3ba", + "cborBytes": [27, 47, 137, 177, 90, 197, 104, 227, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3530, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8884833805742219257" + } + }, + "cborHex": "1b7b4d4545bfa59ff9", + "cborBytes": [27, 123, 77, 69, 69, 191, 165, 159, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3531, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12544841793044467414" + } + }, + "cborHex": "1bae183b2535e3ced6", + "cborBytes": [27, 174, 24, 59, 37, 53, 227, 206, 214], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3532, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4026411760555197653" + } + }, + "cborHex": "1b37e0b029d35904d5", + "cborBytes": [27, 55, 224, 176, 41, 211, 89, 4, 213], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3533, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "30416404214760182" + } + }, + "cborHex": "1b006c0f8ef890c2f6", + "cborBytes": [27, 0, 108, 15, 142, 248, 144, 194, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3534, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5118109916270114394" + } + }, + "cborHex": "1b47072dda18af365a", + "cborBytes": [27, 71, 7, 45, 218, 24, 175, 54, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3535, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16103316932260563827" + } + }, + "cborHex": "1bdf7a796e4cec8b73", + "cborBytes": [27, 223, 122, 121, 110, 76, 236, 139, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3536, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17794634569329327508" + } + }, + "cborHex": "1bf6f33ddc5cc2bd94", + "cborBytes": [27, 246, 243, 61, 220, 92, 194, 189, 148], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3537, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2911463795724410622" + } + }, + "cborHex": "1b286798e588905efe", + "cborBytes": [27, 40, 103, 152, 229, 136, 144, 94, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3538, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17738760131943284428" + } + }, + "cborHex": "1bf62cbc5b24573ecc", + "cborBytes": [27, 246, 44, 188, 91, 36, 87, 62, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3539, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13941138879882245063" + } + }, + "cborHex": "1bc178dff2abc4b3c7", + "cborBytes": [27, 193, 120, 223, 242, 171, 196, 179, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3540, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7263930442911059046" + } + }, + "cborHex": "1b64ceaa407adc0c66", + "cborBytes": [27, 100, 206, 170, 64, 122, 220, 12, 102], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3541, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12719978751538986608" + } + }, + "cborHex": "1bb0867147fbff7e70", + "cborBytes": [27, 176, 134, 113, 71, 251, 255, 126, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3542, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8282106734641922082" + } + }, + "cborHex": "1b72eff431d633c022", + "cborBytes": [27, 114, 239, 244, 49, 214, 51, 192, 34], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3543, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4966868256252615823" + } + }, + "cborHex": "1b44eddc5d0c19dc8f", + "cborBytes": [27, 68, 237, 220, 93, 12, 25, 220, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3544, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6714194585119586086" + } + }, + "cborHex": "1b5d2d9c66dee77726", + "cborBytes": [27, 93, 45, 156, 102, 222, 231, 119, 38], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3545, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14789164008160557977" + } + }, + "cborHex": "1bcd3daa4f1f66fb99", + "cborBytes": [27, 205, 61, 170, 79, 31, 102, 251, 153], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3546, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4408244378615360676" + } + }, + "cborHex": "1b3d2d3ae80e7b2ca4", + "cborBytes": [27, 61, 45, 58, 232, 14, 123, 44, 164], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3547, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2439708965803630096" + } + }, + "cborHex": "1b21db9660d60f9e10", + "cborBytes": [27, 33, 219, 150, 96, 214, 15, 158, 16], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3548, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "535383195886515310" + } + }, + "cborHex": "1b076e102e1987746e", + "cborBytes": [27, 7, 110, 16, 46, 25, 135, 116, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3549, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11567075959904489161" + } + }, + "cborHex": "1ba086824cf0114ec9", + "cborBytes": [27, 160, 134, 130, 76, 240, 17, 78, 201], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3550, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10832786284938046226" + } + }, + "cborHex": "1b9655c9bb4974ab12", + "cborBytes": [27, 150, 85, 201, 187, 73, 116, 171, 18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3551, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11969451182103701861" + } + }, + "cborHex": "1ba61c086ee9aba965", + "cborBytes": [27, 166, 28, 8, 110, 233, 171, 169, 101], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3552, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18293321322390535622" + } + }, + "cborHex": "1bfddeeed20f2abdc6", + "cborBytes": [27, 253, 222, 238, 210, 15, 42, 189, 198], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3553, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12791762039877612565" + } + }, + "cborHex": "1bb18577cd363b3415", + "cborBytes": [27, 177, 133, 119, 205, 54, 59, 52, 21], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3554, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13199434235781970567" + } + }, + "cborHex": "1bb72dcf80fbe9fa87", + "cborBytes": [27, 183, 45, 207, 128, 251, 233, 250, 135], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3555, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6408606906569046495" + } + }, + "cborHex": "1b58eff206fb29b9df", + "cborBytes": [27, 88, 239, 242, 6, 251, 41, 185, 223], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3556, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8782290926901517039" + } + }, + "cborHex": "1b79e0f7114419daef", + "cborBytes": [27, 121, 224, 247, 17, 68, 25, 218, 239], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3557, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5060567057689870287" + } + }, + "cborHex": "1b463abeed4ba5ffcf", + "cborBytes": [27, 70, 58, 190, 237, 75, 165, 255, 207], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3558, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15817185844481848509" + } + }, + "cborHex": "1bdb81eeb8f6ad74bd", + "cborBytes": [27, 219, 129, 238, 184, 246, 173, 116, 189], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3559, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6237237968434457813" + } + }, + "cborHex": "1b568f1ee2d01d6cd5", + "cborBytes": [27, 86, 143, 30, 226, 208, 29, 108, 213], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3560, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9576699541737276683" + } + }, + "cborHex": "1b84e7457e61e5850b", + "cborBytes": [27, 132, 231, 69, 126, 97, 229, 133, 11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3561, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14157017136683911127" + } + }, + "cborHex": "1bc477d414272987d7", + "cborBytes": [27, 196, 119, 212, 20, 39, 41, 135, 215], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3562, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5756097995930770234" + } + }, + "cborHex": "1b4fe1c4a153ca9b3a", + "cborBytes": [27, 79, 225, 196, 161, 83, 202, 155, 58], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3563, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4362787054625473484" + } + }, + "cborHex": "1b3c8bbbb60d9fc3cc", + "cborBytes": [27, 60, 139, 187, 182, 13, 159, 195, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3564, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7890495228954104419" + } + }, + "cborHex": "1b6d80ab9ae7b95263", + "cborBytes": [27, 109, 128, 171, 154, 231, 185, 82, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3565, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4331682091171532548" + } + }, + "cborHex": "1b3c1d39e964334f04", + "cborBytes": [27, 60, 29, 57, 233, 100, 51, 79, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3566, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12009071948017120026" + } + }, + "cborHex": "1ba6a8cb4f57ab331a", + "cborBytes": [27, 166, 168, 203, 79, 87, 171, 51, 26], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3567, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11040456573928151255" + } + }, + "cborHex": "1b993794c2571d18d7", + "cborBytes": [27, 153, 55, 148, 194, 87, 29, 24, 215], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3568, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6045034311615611469" + } + }, + "cborHex": "1b53e446adaee5824d", + "cborBytes": [27, 83, 228, 70, 173, 174, 229, 130, 77], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3569, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10229176994662994360" + } + }, + "cborHex": "1b8df55647b77c51b8", + "cborBytes": [27, 141, 245, 86, 71, 183, 124, 81, 184], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3570, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7897623584322752203" + } + }, + "cborHex": "1b6d99fece794e0ecb", + "cborBytes": [27, 109, 153, 254, 206, 121, 78, 14, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3571, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15421900637394821113" + } + }, + "cborHex": "1bd60598ebc549dff9", + "cborBytes": [27, 214, 5, 152, 235, 197, 73, 223, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3572, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2765488245964717622" + } + }, + "cborHex": "1b2660fce8533ebe36", + "cborBytes": [27, 38, 96, 252, 232, 83, 62, 190, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3573, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10932190334040317244" + } + }, + "cborHex": "1b97b6f130056e9d3c", + "cborBytes": [27, 151, 182, 241, 48, 5, 110, 157, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3574, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5577199051061212969" + } + }, + "cborHex": "1b4d6630fcd8263729", + "cborBytes": [27, 77, 102, 48, 252, 216, 38, 55, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3575, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1351106507564612081" + } + }, + "cborHex": "1b12c01835cd1b79f1", + "cborBytes": [27, 18, 192, 24, 53, 205, 27, 121, 241], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3576, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18349689638147933684" + } + }, + "cborHex": "1bfea731814c7945f4", + "cborBytes": [27, 254, 167, 49, 129, 76, 121, 69, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3577, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4950301584292120433" + } + }, + "cborHex": "1b44b3011026c90771", + "cborBytes": [27, 68, 179, 1, 16, 38, 201, 7, 113], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3578, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17504829196310215436" + } + }, + "cborHex": "1bf2eda568d3f4fb0c", + "cborBytes": [27, 242, 237, 165, 104, 211, 244, 251, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3579, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1005753437955527351" + } + }, + "cborHex": "1b0df5276c50f792b7", + "cborBytes": [27, 13, 245, 39, 108, 80, 247, 146, 183], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3580, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "177100443790266140" + } + }, + "cborHex": "1b02752fea51aecf1c", + "cborBytes": [27, 2, 117, 47, 234, 81, 174, 207, 28], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3581, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10825049308870914168" + } + }, + "cborHex": "1b963a4cfe2b56b078", + "cborBytes": [27, 150, 58, 76, 254, 43, 86, 176, 120], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3582, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16551145335363389347" + } + }, + "cborHex": "1be5b17afda432c7a3", + "cborBytes": [27, 229, 177, 122, 253, 164, 50, 199, 163], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3583, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "570481266990416388" + } + }, + "cborHex": "1b07eac1b095fa8204", + "cborBytes": [27, 7, 234, 193, 176, 149, 250, 130, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3584, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7399627801479930828" + } + }, + "cborHex": "1b66b0c247d150e3cc", + "cborBytes": [27, 102, 176, 194, 71, 209, 80, 227, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3585, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4590168028256561924" + } + }, + "cborHex": "1b3fb38d807f966b04", + "cborBytes": [27, 63, 179, 141, 128, 127, 150, 107, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3586, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1006431537691769235" + } + }, + "cborHex": "1b0df79026b6de3993", + "cborBytes": [27, 13, 247, 144, 38, 182, 222, 57, 147], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3587, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12782429637470672452" + } + }, + "cborHex": "1bb1645007f3dd5644", + "cborBytes": [27, 177, 100, 80, 7, 243, 221, 86, 68], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3588, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4072010723437703061" + } + }, + "cborHex": "1b3882b02db415ef95", + "cborBytes": [27, 56, 130, 176, 45, 180, 21, 239, 149], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3589, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2459543962889479505" + } + }, + "cborHex": "1b22220e33f97be551", + "cborBytes": [27, 34, 34, 14, 51, 249, 123, 229, 81], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3590, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "899312405488191730" + } + }, + "cborHex": "1b0c7affde3739c8f2", + "cborBytes": [27, 12, 122, 255, 222, 55, 57, 200, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3591, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11556141084163146996" + } + }, + "cborHex": "1ba05fa916c7d784f4", + "cborBytes": [27, 160, 95, 169, 22, 199, 215, 132, 244], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3592, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17835022213842574813" + } + }, + "cborHex": "1bf782ba35a1499ddd", + "cborBytes": [27, 247, 130, 186, 53, 161, 73, 157, 221], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3593, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6344355435905792462" + } + }, + "cborHex": "1b580bada7b5fbb9ce", + "cborBytes": [27, 88, 11, 173, 167, 181, 251, 185, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3594, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7585917063540760649" + } + }, + "cborHex": "1b694697609bebe049", + "cborBytes": [27, 105, 70, 151, 96, 155, 235, 224, 73], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3595, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18106485456043116168" + } + }, + "cborHex": "1bfb4728970a3a0688", + "cborBytes": [27, 251, 71, 40, 151, 10, 58, 6, 136], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3596, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "604728748820224722" + } + }, + "cborHex": "1b08646d97d2e55ad2", + "cborBytes": [27, 8, 100, 109, 151, 210, 229, 90, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3597, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8462375656080461957" + } + }, + "cborHex": "1b757065d2d896d085", + "cborBytes": [27, 117, 112, 101, 210, 216, 150, 208, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3598, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3886019300823563729" + } + }, + "cborHex": "1b35ede9f70fe67dd1", + "cborBytes": [27, 53, 237, 233, 247, 15, 230, 125, 209], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3599, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7514247996526371091" + } + }, + "cborHex": "1b6847f8bd9b252113", + "cborBytes": [27, 104, 71, 248, 189, 155, 37, 33, 19], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3600, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12153353938672885419" + } + }, + "cborHex": "1ba8a9630418311eab", + "cborBytes": [27, 168, 169, 99, 4, 24, 49, 30, 171], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3601, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3762732300872016261" + } + }, + "cborHex": "1b3437e917825d6185", + "cborBytes": [27, 52, 55, 233, 23, 130, 93, 97, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3602, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14719271658388112434" + } + }, + "cborHex": "1bcc455b9656b2c432", + "cborBytes": [27, 204, 69, 91, 150, 86, 178, 196, 50], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3603, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13140749793377900218" + } + }, + "cborHex": "1bb65d52507c93d6ba", + "cborBytes": [27, 182, 93, 82, 80, 124, 147, 214, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3604, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15726647751218101358" + } + }, + "cborHex": "1bda4046ce6f0cfc6e", + "cborBytes": [27, 218, 64, 70, 206, 111, 12, 252, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3605, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17746392018025900630" + } + }, + "cborHex": "1bf647d9841742ea56", + "cborBytes": [27, 246, 71, 217, 132, 23, 66, 234, 86], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3606, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1381212600875035687" + } + }, + "cborHex": "1b132b0d8ae2732c27", + "cborBytes": [27, 19, 43, 13, 138, 226, 115, 44, 39], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3607, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14712687352601953904" + } + }, + "cborHex": "1bcc2df7322f38c670", + "cborBytes": [27, 204, 45, 247, 50, 47, 56, 198, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3608, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13749139818275837281" + } + }, + "cborHex": "1bbecec1d193829561", + "cborBytes": [27, 190, 206, 193, 209, 147, 130, 149, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3609, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3179446850804200416" + } + }, + "cborHex": "1b2c1faa10bc6b33e0", + "cborBytes": [27, 44, 31, 170, 16, 188, 107, 51, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3610, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17611098103651665431" + } + }, + "cborHex": "1bf467306aecb68617", + "cborBytes": [27, 244, 103, 48, 106, 236, 182, 134, 23], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3611, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13040978151756466813" + } + }, + "cborHex": "1bb4fadc88f3130a7d", + "cborBytes": [27, 180, 250, 220, 136, 243, 19, 10, 125], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3612, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10716637917606635305" + } + }, + "cborHex": "1b94b92568296ce729", + "cborBytes": [27, 148, 185, 37, 104, 41, 108, 231, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3613, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9573089082386331067" + } + }, + "cborHex": "1b84da71ccceceb5bb", + "cborBytes": [27, 132, 218, 113, 204, 206, 206, 181, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3614, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12906572122666936533" + } + }, + "cborHex": "1bb31d5af6af85a8d5", + "cborBytes": [27, 179, 29, 90, 246, 175, 133, 168, 213], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3615, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14506925436485834845" + } + }, + "cborHex": "1bc952f3d2d0d1185d", + "cborBytes": [27, 201, 82, 243, 210, 208, 209, 24, 93], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3616, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "789544607462644749" + } + }, + "cborHex": "1b0af506a32622dc0d", + "cborBytes": [27, 10, 245, 6, 163, 38, 34, 220, 13], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3617, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "653022553651271691" + } + }, + "cborHex": "1b0910008d7cb3d80b", + "cborBytes": [27, 9, 16, 0, 141, 124, 179, 216, 11], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3618, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5345793096464277002" + } + }, + "cborHex": "1b4a30127f7d7d1e0a", + "cborBytes": [27, 74, 48, 18, 127, 125, 125, 30, 10], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3619, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13442366557802430926" + } + }, + "cborHex": "1bba8ce129e26781ce", + "cborBytes": [27, 186, 140, 225, 41, 226, 103, 129, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3620, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5041124993962874624" + } + }, + "cborHex": "1b45f5ac7915801700", + "cborBytes": [27, 69, 245, 172, 121, 21, 128, 23, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3621, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3079111064447629623" + } + }, + "cborHex": "1b2abb333304603937", + "cborBytes": [27, 42, 187, 51, 51, 4, 96, 57, 55], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3622, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11465109295942687078" + } + }, + "cborHex": "1b9f1c4028efb15966", + "cborBytes": [27, 159, 28, 64, 40, 239, 177, 89, 102], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3623, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1059546630518910067" + } + }, + "cborHex": "1b0eb4440bf70aac73", + "cborBytes": [27, 14, 180, 68, 11, 247, 10, 172, 115], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3624, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12317883206787448122" + } + }, + "cborHex": "1baaf1e9837d50bd3a", + "cborBytes": [27, 170, 241, 233, 131, 125, 80, 189, 58], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3625, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15807320015765650824" + } + }, + "cborHex": "1bdb5ee1cdb6a23d88", + "cborBytes": [27, 219, 94, 225, 205, 182, 162, 61, 136], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3626, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6510433680710753560" + } + }, + "cborHex": "1b5a59b4f05880dd18", + "cborBytes": [27, 90, 89, 180, 240, 88, 128, 221, 24], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3627, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4078851581080455822" + } + }, + "cborHex": "1b389afde6fdd74a8e", + "cborBytes": [27, 56, 154, 253, 230, 253, 215, 74, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3628, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17750974459793855948" + } + }, + "cborHex": "1bf6582138f50b55cc", + "cborBytes": [27, 246, 88, 33, 56, 245, 11, 85, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3629, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5041744646044340265" + } + }, + "cborHex": "1b45f7e00b13b35029", + "cborBytes": [27, 69, 247, 224, 11, 19, 179, 80, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3630, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3407333546187571529" + } + }, + "cborHex": "1b2f4947ceb3c84149", + "cborBytes": [27, 47, 73, 71, 206, 179, 200, 65, 73], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3631, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13739058674388838977" + } + }, + "cborHex": "1bbeaaf1125b322a41", + "cborBytes": [27, 190, 170, 241, 18, 91, 50, 42, 65], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3632, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14355329238449431035" + } + }, + "cborHex": "1bc7385fe2738ea1fb", + "cborBytes": [27, 199, 56, 95, 226, 115, 142, 161, 251], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3633, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18147522896288099738" + } + }, + "cborHex": "1bfbd8f3ecaa852d9a", + "cborBytes": [27, 251, 216, 243, 236, 170, 133, 45, 154], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3634, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4509399619780563047" + } + }, + "cborHex": "1b3e949b0ff74d5067", + "cborBytes": [27, 62, 148, 155, 15, 247, 77, 80, 103], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3635, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6211484156020446006" + } + }, + "cborHex": "1b56339fee1790d336", + "cborBytes": [27, 86, 51, 159, 238, 23, 144, 211, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3636, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15610828668532933459" + } + }, + "cborHex": "1bd8a4cdf6dd63c353", + "cborBytes": [27, 216, 164, 205, 246, 221, 99, 195, 83], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3637, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5818693197478358308" + } + }, + "cborHex": "1b50c026a264aded24", + "cborBytes": [27, 80, 192, 38, 162, 100, 173, 237, 36], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3638, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2980873849960950313" + } + }, + "cborHex": "1b295e30f9232c6a29", + "cborBytes": [27, 41, 94, 48, 249, 35, 44, 106, 41], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3639, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4116710047262767228" + } + }, + "cborHex": "1b39217dfa0a60f87c", + "cborBytes": [27, 57, 33, 125, 250, 10, 96, 248, 124], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3640, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15875273182651263169" + } + }, + "cborHex": "1bdc504cd94c36a8c1", + "cborBytes": [27, 220, 80, 76, 217, 76, 54, 168, 193], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3641, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13046937981012608447" + } + }, + "cborHex": "1bb51008f7d4cf05bf", + "cborBytes": [27, 181, 16, 8, 247, 212, 207, 5, 191], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3642, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6145895793749346846" + } + }, + "cborHex": "1b554a9ba97cff4a1e", + "cborBytes": [27, 85, 74, 155, 169, 124, 255, 74, 30], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3643, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7772608428745434372" + } + }, + "cborHex": "1b6bddda2f55942504", + "cborBytes": [27, 107, 221, 218, 47, 85, 148, 37, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3644, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8794060371118806451" + } + }, + "cborHex": "1b7a0ac75089e055b3", + "cborBytes": [27, 122, 10, 199, 80, 137, 224, 85, 179], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3645, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7469176221856690279" + } + }, + "cborHex": "1b67a7d8334c8ff067", + "cborBytes": [27, 103, 167, 216, 51, 76, 143, 240, 103], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3646, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4696586013890337361" + } + }, + "cborHex": "1b412da01897005a51", + "cborBytes": [27, 65, 45, 160, 24, 151, 0, 90, 81], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3647, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17212913143652140079" + } + }, + "cborHex": "1beee08d4e6509c42f", + "cborBytes": [27, 238, 224, 141, 78, 101, 9, 196, 47], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3648, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16598824584092189998" + } + }, + "cborHex": "1be65adf03cfd6052e", + "cborBytes": [27, 230, 90, 223, 3, 207, 214, 5, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3649, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8909497244805971880" + } + }, + "cborHex": "1b7ba4e48a23fb3fa8", + "cborBytes": [27, 123, 164, 228, 138, 35, 251, 63, 168], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3650, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10629208117770380197" + } + }, + "cborHex": "1b938288779766e3a5", + "cborBytes": [27, 147, 130, 136, 119, 151, 102, 227, 165], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3651, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11414688115696058490" + } + }, + "cborHex": "1b9e691e5d15efc07a", + "cborBytes": [27, 158, 105, 30, 93, 21, 239, 192, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3652, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3945301242941850766" + } + }, + "cborHex": "1b36c08693cd74c48e", + "cborBytes": [27, 54, 192, 134, 147, 205, 116, 196, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3653, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4042684241306872684" + } + }, + "cborHex": "1b381a7fe5fe2a6b6c", + "cborBytes": [27, 56, 26, 127, 229, 254, 42, 107, 108], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3654, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14104413841068557391" + } + }, + "cborHex": "1bc3bcf1a8f9fe844f", + "cborBytes": [27, 195, 188, 241, 168, 249, 254, 132, 79], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3655, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1763349197977487836" + } + }, + "cborHex": "1b1878acc0c06b09dc", + "cborBytes": [27, 24, 120, 172, 192, 192, 107, 9, 220], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3656, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "945714727405897743" + } + }, + "cborHex": "1b0d1fda88b1e2480f", + "cborBytes": [27, 13, 31, 218, 136, 177, 226, 72, 15], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3657, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7884388116215119887" + } + }, + "cborHex": "1b6d6af937ea50400f", + "cborBytes": [27, 109, 106, 249, 55, 234, 80, 64, 15], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3658, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1399472028519004040" + } + }, + "cborHex": "1b136bec652cf87788", + "cborBytes": [27, 19, 107, 236, 101, 44, 248, 119, 136], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3659, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10496185876024737427" + } + }, + "cborHex": "1b91a9f1716ced3e93", + "cborBytes": [27, 145, 169, 241, 113, 108, 237, 62, 147], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3660, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14801995754648228046" + } + }, + "cborHex": "1bcd6b40b6eaa5d0ce", + "cborBytes": [27, 205, 107, 64, 182, 234, 165, 208, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3661, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2804842087016694594" + } + }, + "cborHex": "1b26eccd0477b20342", + "cborBytes": [27, 38, 236, 205, 4, 119, 178, 3, 66], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3662, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9855094063752876589" + } + }, + "cborHex": "1b88c453d6220d122d", + "cborBytes": [27, 136, 196, 83, 214, 34, 13, 18, 45], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3663, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14501806993654130484" + } + }, + "cborHex": "1bc940c4a07a07a734", + "cborBytes": [27, 201, 64, 196, 160, 122, 7, 167, 52], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3664, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12086747042482827877" + } + }, + "cborHex": "1ba7bcc06595313265", + "cborBytes": [27, 167, 188, 192, 101, 149, 49, 50, 101], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3665, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16688405828066545763" + } + }, + "cborHex": "1be79920ae81771063", + "cborBytes": [27, 231, 153, 32, 174, 129, 119, 16, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3666, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7576317759735684192" + } + }, + "cborHex": "1b69247cdc86875c60", + "cborBytes": [27, 105, 36, 124, 220, 134, 135, 92, 96], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3667, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2779751438361086957" + } + }, + "cborHex": "1b2693a9349764cbed", + "cborBytes": [27, 38, 147, 169, 52, 151, 100, 203, 237], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3668, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "873461563533241029" + } + }, + "cborHex": "1b0c1f28aa0b5b2ac5", + "cborBytes": [27, 12, 31, 40, 170, 11, 91, 42, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3669, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2898185098513706339" + } + }, + "cborHex": "1b28386bfdea3d6d63", + "cborBytes": [27, 40, 56, 107, 253, 234, 61, 109, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3670, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18433439075303529235" + } + }, + "cborHex": "1bffd0bb2ca8459b13", + "cborBytes": [27, 255, 208, 187, 44, 168, 69, 155, 19], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3671, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "997859839313509962" + } + }, + "cborHex": "1b0dd91c3ca9e8fe4a", + "cborBytes": [27, 13, 217, 28, 60, 169, 232, 254, 74], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3672, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15179583846731768136" + } + }, + "cborHex": "1bd2a8b7156eb46148", + "cborBytes": [27, 210, 168, 183, 21, 110, 180, 97, 72], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3673, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12408853540209448343" + } + }, + "cborHex": "1bac351a8cc6085597", + "cborBytes": [27, 172, 53, 26, 140, 198, 8, 85, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3674, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16053423011997772193" + } + }, + "cborHex": "1bdec9372cbb3569a1", + "cborBytes": [27, 222, 201, 55, 44, 187, 53, 105, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3675, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5636375921040874700" + } + }, + "cborHex": "1b4e386e099234dccc", + "cborBytes": [27, 78, 56, 110, 9, 146, 52, 220, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3676, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8663855956235457399" + } + }, + "cborHex": "1b783c3316d0911377", + "cborBytes": [27, 120, 60, 51, 22, 208, 145, 19, 119], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3677, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17941089645785607071" + } + }, + "cborHex": "1bf8fb8dfa147d6b9f", + "cborBytes": [27, 248, 251, 141, 250, 20, 125, 107, 159], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3678, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7568856761592739280" + } + }, + "cborHex": "1b6909fb1f868c75d0", + "cborBytes": [27, 105, 9, 251, 31, 134, 140, 117, 208], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3679, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14619016268808652383" + } + }, + "cborHex": "1bcae12dd773ff065f", + "cborBytes": [27, 202, 225, 45, 215, 115, 255, 6, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3680, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9762920748285188550" + } + }, + "cborHex": "1b877cdcb1c3d459c6", + "cborBytes": [27, 135, 124, 220, 177, 195, 212, 89, 198], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3681, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14536673906645272868" + } + }, + "cborHex": "1bc9bca3e645480924", + "cborBytes": [27, 201, 188, 163, 230, 69, 72, 9, 36], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3682, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1061768184472067687" + } + }, + "cborHex": "1b0ebc2889cd44de67", + "cborBytes": [27, 14, 188, 40, 137, 205, 68, 222, 103], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3683, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11296925226546488368" + } + }, + "cborHex": "1b9cc6bda3ce73e430", + "cborBytes": [27, 156, 198, 189, 163, 206, 115, 228, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3684, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18195959500463869408" + } + }, + "cborHex": "1bfc8508c2648b0de0", + "cborBytes": [27, 252, 133, 8, 194, 100, 139, 13, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3685, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14365050455784373252" + } + }, + "cborHex": "1bc75ae947bd973c04", + "cborBytes": [27, 199, 90, 233, 71, 189, 151, 60, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3686, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5574694432832439286" + } + }, + "cborHex": "1b4d5d4b0cf85343f6", + "cborBytes": [27, 77, 93, 75, 12, 248, 83, 67, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3687, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5927537265761249137" + } + }, + "cborHex": "1b5242d7bcde96e771", + "cborBytes": [27, 82, 66, 215, 188, 222, 150, 231, 113], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3688, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10704264820720251001" + } + }, + "cborHex": "1b948d30240cbdb079", + "cborBytes": [27, 148, 141, 48, 36, 12, 189, 176, 121], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3689, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6521676760047249129" + } + }, + "cborHex": "1b5a81a675be8966e9", + "cborBytes": [27, 90, 129, 166, 117, 190, 137, 102, 233], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3690, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8574590760721865251" + } + }, + "cborHex": "1b76ff10dde32c5a23", + "cborBytes": [27, 118, 255, 16, 221, 227, 44, 90, 35], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3691, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13191698191833780994" + } + }, + "cborHex": "1bb712539ce46a5302", + "cborBytes": [27, 183, 18, 83, 156, 228, 106, 83, 2], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3692, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2350008852524579842" + } + }, + "cborHex": "1b209ce899b9c03c02", + "cborBytes": [27, 32, 156, 232, 153, 185, 192, 60, 2], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3693, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2998805866258602437" + } + }, + "cborHex": "1b299de60c08b399c5", + "cborBytes": [27, 41, 157, 230, 12, 8, 179, 153, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3694, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16266193107329635338" + } + }, + "cborHex": "1be1bd2072fa4a540a", + "cborBytes": [27, 225, 189, 32, 114, 250, 74, 84, 10], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3695, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10157423914000898587" + } + }, + "cborHex": "1b8cf66b3bc314da1b", + "cborBytes": [27, 140, 246, 107, 59, 195, 20, 218, 27], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3696, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5034709226689815355" + } + }, + "cborHex": "1b45dee15ddc3a633b", + "cborBytes": [27, 69, 222, 225, 93, 220, 58, 99, 59], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3697, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2809438644263806812" + } + }, + "cborHex": "1b26fd218fd999675c", + "cborBytes": [27, 38, 253, 33, 143, 217, 153, 103, 92], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3698, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5200247492706869144" + } + }, + "cborHex": "1b482afd8ae2e89f98", + "cborBytes": [27, 72, 42, 253, 138, 226, 232, 159, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3699, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14415937753483220693" + } + }, + "cborHex": "1bc80fb302048296d5", + "cborBytes": [27, 200, 15, 179, 2, 4, 130, 150, 213], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3700, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14821989480375269557" + } + }, + "cborHex": "1bcdb248e6f25838b5", + "cborBytes": [27, 205, 178, 72, 230, 242, 88, 56, 181], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3701, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16783326562662945851" + } + }, + "cborHex": "1be8ea5a963ce7143b", + "cborBytes": [27, 232, 234, 90, 150, 60, 231, 20, 59], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3702, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5672687746861947587" + } + }, + "cborHex": "1b4eb96f73596adac3", + "cborBytes": [27, 78, 185, 111, 115, 89, 106, 218, 195], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3703, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9813297068199598445" + } + }, + "cborHex": "1b882fd5b0c16b596d", + "cborBytes": [27, 136, 47, 213, 176, 193, 107, 89, 109], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3704, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10441716149883763966" + } + }, + "cborHex": "1b90e86d840747fcfe", + "cborBytes": [27, 144, 232, 109, 132, 7, 71, 252, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3705, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18062554699144589788" + } + }, + "cborHex": "1bfaab15cca29371dc", + "cborBytes": [27, 250, 171, 21, 204, 162, 147, 113, 220], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3706, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15626663009348116466" + } + }, + "cborHex": "1bd8dd0f36a0ee5ff2", + "cborBytes": [27, 216, 221, 15, 54, 160, 238, 95, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3707, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13709944113828549992" + } + }, + "cborHex": "1bbe4381887b355568", + "cborBytes": [27, 190, 67, 129, 136, 123, 53, 85, 104], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3708, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2472218563349581572" + } + }, + "cborHex": "1b224f15af5b940f04", + "cborBytes": [27, 34, 79, 21, 175, 91, 148, 15, 4], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3709, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1595030493150608893" + } + }, + "cborHex": "1b1622afc85e287dfd", + "cborBytes": [27, 22, 34, 175, 200, 94, 40, 125, 253], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3710, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4327107386140018605" + } + }, + "cborHex": "1b3c0cf93ddfd847ad", + "cborBytes": [27, 60, 12, 249, 61, 223, 216, 71, 173], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3711, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10534734906251676667" + } + }, + "cborHex": "1b9232e594f20a0bfb", + "cborBytes": [27, 146, 50, 229, 148, 242, 10, 11, 251], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3712, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1274644147745636592" + } + }, + "cborHex": "1b11b072195968c0f0", + "cborBytes": [27, 17, 176, 114, 25, 89, 104, 192, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3713, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8084776387406093045" + } + }, + "cborHex": "1b7032e54a13ce5af5", + "cborBytes": [27, 112, 50, 229, 74, 19, 206, 90, 245], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3714, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18057188494644728478" + } + }, + "cborHex": "1bfa980543c991d29e", + "cborBytes": [27, 250, 152, 5, 67, 201, 145, 210, 158], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3715, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3752776328520771099" + } + }, + "cborHex": "1b34148a300ef9a61b", + "cborBytes": [27, 52, 20, 138, 48, 14, 249, 166, 27], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3716, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16990700297621984258" + } + }, + "cborHex": "1bebcb17e66ce1d402", + "cborBytes": [27, 235, 203, 23, 230, 108, 225, 212, 2], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3717, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4092598825048974767" + } + }, + "cborHex": "1b38cbd4f2a739a5af", + "cborBytes": [27, 56, 203, 212, 242, 167, 57, 165, 175], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3718, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3764748644818180341" + } + }, + "cborHex": "1b343f12f22b0558f5", + "cborBytes": [27, 52, 63, 18, 242, 43, 5, 88, 245], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3719, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15773453511544660792" + } + }, + "cborHex": "1bdae69065bcc1e338", + "cborBytes": [27, 218, 230, 144, 101, 188, 193, 227, 56], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3720, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16960615093182670968" + } + }, + "cborHex": "1beb603590e9482878", + "cborBytes": [27, 235, 96, 53, 144, 233, 72, 40, 120], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3721, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16516275862884059738" + } + }, + "cborHex": "1be5359963eb900a5a", + "cborBytes": [27, 229, 53, 153, 99, 235, 144, 10, 90], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3722, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14638911441327472015" + } + }, + "cborHex": "1bcb27dc6546b9bd8f", + "cborBytes": [27, 203, 39, 220, 101, 70, 185, 189, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3723, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7367239147049588745" + } + }, + "cborHex": "1b663db0f88f3e1809", + "cborBytes": [27, 102, 61, 176, 248, 143, 62, 24, 9], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3724, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16261092052146578625" + } + }, + "cborHex": "1be1ab0111041fe4c1", + "cborBytes": [27, 225, 171, 1, 17, 4, 31, 228, 193], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3725, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5139820288689954711" + } + }, + "cborHex": "1b47544f5214b5df97", + "cborBytes": [27, 71, 84, 79, 82, 20, 181, 223, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3726, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13791479511473182284" + } + }, + "cborHex": "1bbf652d8b986fd64c", + "cborBytes": [27, 191, 101, 45, 139, 152, 111, 214, 76], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3727, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4928015595793087378" + } + }, + "cborHex": "1b4463d4131ad4fb92", + "cborBytes": [27, 68, 99, 212, 19, 26, 212, 251, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3728, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10282271441751433462" + } + }, + "cborHex": "1b8eb1f76601bce0f6", + "cborBytes": [27, 142, 177, 247, 102, 1, 188, 224, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3729, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6247059755459646336" + } + }, + "cborHex": "1b56b203bfcecf9380", + "cborBytes": [27, 86, 178, 3, 191, 206, 207, 147, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3730, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8765309569724232263" + } + }, + "cborHex": "1b79a4a29cf1beb247", + "cborBytes": [27, 121, 164, 162, 156, 241, 190, 178, 71], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3731, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16196135966668658234" + } + }, + "cborHex": "1be0c43bd9d336963a", + "cborBytes": [27, 224, 196, 59, 217, 211, 54, 150, 58], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3732, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14351206008040277892" + } + }, + "cborHex": "1bc729b9d40fb14784", + "cborBytes": [27, 199, 41, 185, 212, 15, 177, 71, 132], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3733, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8153021957581900490" + } + }, + "cborHex": "1b71255a461ba10aca", + "cborBytes": [27, 113, 37, 90, 70, 27, 161, 10, 202], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3734, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4061787873030774778" + } + }, + "cborHex": "1b385e5e8cdcfd1ffa", + "cborBytes": [27, 56, 94, 94, 140, 220, 253, 31, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3735, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12984259905187137930" + } + }, + "cborHex": "1bb4315b971806c98a", + "cborBytes": [27, 180, 49, 91, 151, 24, 6, 201, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3736, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17579422350334935167" + } + }, + "cborHex": "1bf3f6a77ce446c07f", + "cborBytes": [27, 243, 246, 167, 124, 228, 70, 192, 127], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3737, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10685476031507247024" + } + }, + "cborHex": "1b944a6fd629f0afb0", + "cborBytes": [27, 148, 74, 111, 214, 41, 240, 175, 176], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3738, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13946929564962162275" + } + }, + "cborHex": "1bc18d728b9af68663", + "cborBytes": [27, 193, 141, 114, 139, 154, 246, 134, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3739, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11922116538861216986" + } + }, + "cborHex": "1ba573ddd375a1e4da", + "cborBytes": [27, 165, 115, 221, 211, 117, 161, 228, 218], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3740, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14807722014641708260" + } + }, + "cborHex": "1bcd7f98b7b7735ce4", + "cborBytes": [27, 205, 127, 152, 183, 183, 115, 92, 228], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3741, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4766621923595895954" + } + }, + "cborHex": "1b422671628685c492", + "cborBytes": [27, 66, 38, 113, 98, 134, 133, 196, 146], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3742, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16258938202013314839" + } + }, + "cborHex": "1be1a35a26b4082f17", + "cborBytes": [27, 225, 163, 90, 38, 180, 8, 47, 23], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3743, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18331110375073331143" + } + }, + "cborHex": "1bfe652fc384b937c7", + "cborBytes": [27, 254, 101, 47, 195, 132, 185, 55, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3744, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10017941827783861859" + } + }, + "cborHex": "1b8b06e103d995a663", + "cborBytes": [27, 139, 6, 225, 3, 217, 149, 166, 99], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3745, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5591626799384296515" + } + }, + "cborHex": "1b4d9972f2c5dafc43", + "cborBytes": [27, 77, 153, 114, 242, 197, 218, 252, 67], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3746, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17665462618983280470" + } + }, + "cborHex": "1bf52854a80570af56", + "cborBytes": [27, 245, 40, 84, 168, 5, 112, 175, 86], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3747, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7431670547614299675" + } + }, + "cborHex": "1b672298fd0648761b", + "cborBytes": [27, 103, 34, 152, 253, 6, 72, 118, 27], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3748, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2283759721513318704" + } + }, + "cborHex": "1b1fb18b5de9257930", + "cborBytes": [27, 31, 177, 139, 93, 233, 37, 121, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3749, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16513235767425283784" + } + }, + "cborHex": "1be52acc7089a8b6c8", + "cborBytes": [27, 229, 42, 204, 112, 137, 168, 182, 200], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3750, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8689369876395721850" + } + }, + "cborHex": "1b7896d7dd448c047a", + "cborBytes": [27, 120, 150, 215, 221, 68, 140, 4, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3751, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7592170464313806483" + } + }, + "cborHex": "1b695ccecfefa30e93", + "cborBytes": [27, 105, 92, 206, 207, 239, 163, 14, 147], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3752, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10288651543845122806" + } + }, + "cborHex": "1b8ec8a21148a9b2f6", + "cborBytes": [27, 142, 200, 162, 17, 72, 169, 178, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3753, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3941178320475732971" + } + }, + "cborHex": "1b36b1e0cd1c6d3beb", + "cborBytes": [27, 54, 177, 224, 205, 28, 109, 59, 235], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3754, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12605595884317756294" + } + }, + "cborHex": "1baef012ab62e2cb86", + "cborBytes": [27, 174, 240, 18, 171, 98, 226, 203, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3755, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17208910000442432502" + } + }, + "cborHex": "1beed25477fc09dbf6", + "cborBytes": [27, 238, 210, 84, 119, 252, 9, 219, 246], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3756, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5311204810648411577" + } + }, + "cborHex": "1b49b530a2a40b5db9", + "cborBytes": [27, 73, 181, 48, 162, 164, 11, 93, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3757, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12746315878535113308" + } + }, + "cborHex": "1bb0e402c23701aa5c", + "cborBytes": [27, 176, 228, 2, 194, 55, 1, 170, 92], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3758, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9666596089084176383" + } + }, + "cborHex": "1b8626a5ed5d0ae7ff", + "cborBytes": [27, 134, 38, 165, 237, 93, 10, 231, 255], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3759, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6455130524155611074" + } + }, + "cborHex": "1b59953b02cf1387c2", + "cborBytes": [27, 89, 149, 59, 2, 207, 19, 135, 194], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3760, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4602313121952911372" + } + }, + "cborHex": "1b3fdeb3667b1f500c", + "cborBytes": [27, 63, 222, 179, 102, 123, 31, 80, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3761, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5008943935021770115" + } + }, + "cborHex": "1b458357f86ad1e583", + "cborBytes": [27, 69, 131, 87, 248, 106, 209, 229, 131], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3762, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2300999096314150122" + } + }, + "cborHex": "1b1feeca7ca44cbcea", + "cborBytes": [27, 31, 238, 202, 124, 164, 76, 188, 234], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3763, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9126150754437925494" + } + }, + "cborHex": "1b7ea699c23cef8a76", + "cborBytes": [27, 126, 166, 153, 194, 60, 239, 138, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3764, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12505380533286473675" + } + }, + "cborHex": "1bad8c0956b3a00fcb", + "cborBytes": [27, 173, 140, 9, 86, 179, 160, 15, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3765, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7671032437566671005" + } + }, + "cborHex": "1b6a74fb5beda9089d", + "cborBytes": [27, 106, 116, 251, 91, 237, 169, 8, 157], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3766, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12420929747923280180" + } + }, + "cborHex": "1bac6001cbfd0ca134", + "cborBytes": [27, 172, 96, 1, 203, 253, 12, 161, 52], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3767, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "141558847955356316" + } + }, + "cborHex": "1b01f6eb05af314a9c", + "cborBytes": [27, 1, 246, 235, 5, 175, 49, 74, 156], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3768, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17855009032161877470" + } + }, + "cborHex": "1bf7c9bc1d67665dde", + "cborBytes": [27, 247, 201, 188, 29, 103, 102, 93, 222], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3769, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1603955292404949945" + } + }, + "cborHex": "1b164264d71f67a3b9", + "cborBytes": [27, 22, 66, 100, 215, 31, 103, 163, 185], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3770, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14070112570202208823" + } + }, + "cborHex": "1bc34314d600a93a37", + "cborBytes": [27, 195, 67, 20, 214, 0, 169, 58, 55], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3771, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6483256190804491681" + } + }, + "cborHex": "1b59f92727e0c0fda1", + "cborBytes": [27, 89, 249, 39, 39, 224, 192, 253, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3772, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14501319920984005944" + } + }, + "cborHex": "1bc93f09a3088c1d38", + "cborBytes": [27, 201, 63, 9, 163, 8, 140, 29, 56], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3773, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8334253283907372160" + } + }, + "cborHex": "1b73a93734776e8480", + "cborBytes": [27, 115, 169, 55, 52, 119, 110, 132, 128], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3774, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14162184983830355903" + } + }, + "cborHex": "1bc48a303554945fbf", + "cborBytes": [27, 196, 138, 48, 53, 84, 148, 95, 191], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3775, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4140035778345274763" + } + }, + "cborHex": "1b39745c9b05ad8d8b", + "cborBytes": [27, 57, 116, 92, 155, 5, 173, 141, 139], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3776, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14707066711002268396" + } + }, + "cborHex": "1bcc19ff40954342ec", + "cborBytes": [27, 204, 25, 255, 64, 149, 67, 66, 236], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3777, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5679183421706038171" + } + }, + "cborHex": "1b4ed0833b81136b9b", + "cborBytes": [27, 78, 208, 131, 59, 129, 19, 107, 155], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3778, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12972564161963527490" + } + }, + "cborHex": "1bb407ce5fabcc8d42", + "cborBytes": [27, 180, 7, 206, 95, 171, 204, 141, 66], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3779, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4831366918025239093" + } + }, + "cborHex": "1b430c769d4077da35", + "cborBytes": [27, 67, 12, 118, 157, 64, 119, 218, 53], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3780, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6145496290993416088" + } + }, + "cborHex": "1b554930510124a798", + "cborBytes": [27, 85, 73, 48, 81, 1, 36, 167, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3781, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16589711254174534316" + } + }, + "cborHex": "1be63a7e7d575f8aac", + "cborBytes": [27, 230, 58, 126, 125, 87, 95, 138, 172], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3782, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6409016034909176608" + } + }, + "cborHex": "1b58f16620988b4320", + "cborBytes": [27, 88, 241, 102, 32, 152, 139, 67, 32], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3783, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1150206357059375702" + } + }, + "cborHex": "1b0ff65a9672eb9256", + "cborBytes": [27, 15, 246, 90, 150, 114, 235, 146, 86], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3784, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10212702848887074200" + } + }, + "cborHex": "1b8dbacf21c088ad98", + "cborBytes": [27, 141, 186, 207, 33, 192, 136, 173, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3785, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12990071752036604882" + } + }, + "cborHex": "1bb446016f22fa5bd2", + "cborBytes": [27, 180, 70, 1, 111, 34, 250, 91, 210], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3786, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3464516885953464517" + } + }, + "cborHex": "1b30146fc0819948c5", + "cborBytes": [27, 48, 20, 111, 192, 129, 153, 72, 197], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3787, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13477483087271329307" + } + }, + "cborHex": "1bbb09a3760b247e1b", + "cborBytes": [27, 187, 9, 163, 118, 11, 36, 126, 27], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3788, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4352005488897807512" + } + }, + "cborHex": "1b3c656def2a4dd498", + "cborBytes": [27, 60, 101, 109, 239, 42, 77, 212, 152], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3789, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4949063289781260336" + } + }, + "cborHex": "1b44ae9ad73e569030", + "cborBytes": [27, 68, 174, 154, 215, 62, 86, 144, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3790, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13271472887182717788" + } + }, + "cborHex": "1bb82dbe468ec0f35c", + "cborBytes": [27, 184, 45, 190, 70, 142, 192, 243, 92], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3791, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9675323607305699517" + } + }, + "cborHex": "1b8645a78f0c6840bd", + "cborBytes": [27, 134, 69, 167, 143, 12, 104, 64, 189], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3792, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14511742907728429682" + } + }, + "cborHex": "1bc9641149bef28272", + "cborBytes": [27, 201, 100, 17, 73, 190, 242, 130, 114], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3793, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14325944348830668117" + } + }, + "cborHex": "1bc6cffa7bb0111555", + "cborBytes": [27, 198, 207, 250, 123, 176, 17, 21, 85], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3794, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8787977647375170952" + } + }, + "cborHex": "1b79f52b1c0ddebd88", + "cborBytes": [27, 121, 245, 43, 28, 13, 222, 189, 136], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3795, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16311885894307084851" + } + }, + "cborHex": "1be25f75cbfae0fa33", + "cborBytes": [27, 226, 95, 117, 203, 250, 224, 250, 51], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3796, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9986681846651377436" + } + }, + "cborHex": "1b8a97d23a527f571c", + "cborBytes": [27, 138, 151, 210, 58, 82, 127, 87, 28], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3797, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3903995965147263924" + } + }, + "cborHex": "1b362dc7a5632933b4", + "cborBytes": [27, 54, 45, 199, 165, 99, 41, 51, 180], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3798, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5373219491682384432" + } + }, + "cborHex": "1b4a9182a8bdeefa30", + "cborBytes": [27, 74, 145, 130, 168, 189, 238, 250, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3799, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15359225619742969392" + } + }, + "cborHex": "1bd526ee5311dbce30", + "cborBytes": [27, 213, 38, 238, 83, 17, 219, 206, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3800, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4932249740071678414" + } + }, + "cborHex": "1b4472df01a47c31ce", + "cborBytes": [27, 68, 114, 223, 1, 164, 124, 49, 206], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3801, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6085846541242814192" + } + }, + "cborHex": "1b5475452f60514ef0", + "cborBytes": [27, 84, 117, 69, 47, 96, 81, 78, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3802, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16007310268614979296" + } + }, + "cborHex": "1bde2563e102422ee0", + "cborBytes": [27, 222, 37, 99, 225, 2, 66, 46, 224], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3803, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12620442178356143269" + } + }, + "cborHex": "1baf24d14b954664a5", + "cborBytes": [27, 175, 36, 209, 75, 149, 70, 100, 165], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3804, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11330052630834089977" + } + }, + "cborHex": "1b9d3c6ed6ab588ff9", + "cborBytes": [27, 157, 60, 110, 214, 171, 88, 143, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3805, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16703520698992363359" + } + }, + "cborHex": "1be7ced393a1d3075f", + "cborBytes": [27, 231, 206, 211, 147, 161, 211, 7, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3806, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2939266360724311671" + } + }, + "cborHex": "1b28ca5f2ea33a4e77", + "cborBytes": [27, 40, 202, 95, 46, 163, 58, 78, 119], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3807, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14986923064763740647" + } + }, + "cborHex": "1bcffc3f1f8f59f1e7", + "cborBytes": [27, 207, 252, 63, 31, 143, 89, 241, 231], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3808, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "386433218326686390" + } + }, + "cborHex": "1b055ce2f6f3c5eab6", + "cborBytes": [27, 5, 92, 226, 246, 243, 197, 234, 182], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3809, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15249858151208990697" + } + }, + "cborHex": "1bd3a26130f9e837e9", + "cborBytes": [27, 211, 162, 97, 48, 249, 232, 55, 233], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3810, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13869626565875548462" + } + }, + "cborHex": "1bc07acfe09255412e", + "cborBytes": [27, 192, 122, 207, 224, 146, 85, 65, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3811, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11725388606018106464" + } + }, + "cborHex": "1ba2b8f2d03b1f3460", + "cborBytes": [27, 162, 184, 242, 208, 59, 31, 52, 96], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3812, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11905732065180577317" + } + }, + "cborHex": "1ba539a83be810ee25", + "cborBytes": [27, 165, 57, 168, 59, 232, 16, 238, 37], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3813, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14047677479713420279" + } + }, + "cborHex": "1bc2f3603d7192b3f7", + "cborBytes": [27, 194, 243, 96, 61, 113, 146, 179, 247], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3814, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14819243212223496607" + } + }, + "cborHex": "1bcda8872f90b3419f", + "cborBytes": [27, 205, 168, 135, 47, 144, 179, 65, 159], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3815, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5421318787495547991" + } + }, + "cborHex": "1b4b3c64b6bed2d457", + "cborBytes": [27, 75, 60, 100, 182, 190, 210, 212, 87], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3816, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9774754772396975850" + } + }, + "cborHex": "1b87a6e7ad3746a6ea", + "cborBytes": [27, 135, 166, 231, 173, 55, 70, 166, 234], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3817, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17639698491814885356" + } + }, + "cborHex": "1bf4cccc51b59eb7ec", + "cborBytes": [27, 244, 204, 204, 81, 181, 158, 183, 236], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3818, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9613241894217238546" + } + }, + "cborHex": "1b85691891d4b8c812", + "cborBytes": [27, 133, 105, 24, 145, 212, 184, 200, 18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3819, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3740596846055348620" + } + }, + "cborHex": "1b33e945035113598c", + "cborBytes": [27, 51, 233, 69, 3, 81, 19, 89, 140], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3820, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10281685088110152817" + } + }, + "cborHex": "1b8eafe21ce93c8c71", + "cborBytes": [27, 142, 175, 226, 28, 233, 60, 140, 113], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3821, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6736906979932499078" + } + }, + "cborHex": "1b5d7e4d345fb9ec86", + "cborBytes": [27, 93, 126, 77, 52, 95, 185, 236, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3822, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17034493887331277366" + } + }, + "cborHex": "1bec66adf01af19a36", + "cborBytes": [27, 236, 102, 173, 240, 26, 241, 154, 54], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3823, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8642317380130681330" + } + }, + "cborHex": "1b77efadde46dfb1f2", + "cborBytes": [27, 119, 239, 173, 222, 70, 223, 177, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3824, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4255844669413485308" + } + }, + "cborHex": "1b3b0fcc2daba16afc", + "cborBytes": [27, 59, 15, 204, 45, 171, 161, 106, 252], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3825, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5407376336085070080" + } + }, + "cborHex": "1b4b0adc20cf343100", + "cborBytes": [27, 75, 10, 220, 32, 207, 52, 49, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3826, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3247158675946214177" + } + }, + "cborHex": "1b2d10399c911a1321", + "cborBytes": [27, 45, 16, 57, 156, 145, 26, 19, 33], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3827, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9471451998163843094" + } + }, + "cborHex": "1b83715b6911b83816", + "cborBytes": [27, 131, 113, 91, 105, 17, 184, 56, 22], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3828, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9909295380090855608" + } + }, + "cborHex": "1b8984e3a580bc20b8", + "cborBytes": [27, 137, 132, 227, 165, 128, 188, 32, 184], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3829, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9416824601967059747" + } + }, + "cborHex": "1b82af48154067e323", + "cborBytes": [27, 130, 175, 72, 21, 64, 103, 227, 35], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3830, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13669002030061112723" + } + }, + "cborHex": "1bbdb20cecc3e2cd93", + "cborBytes": [27, 189, 178, 12, 236, 195, 226, 205, 147], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3831, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2025779207104317933" + } + }, + "cborHex": "1b1c1d0374b0d349ed", + "cborBytes": [27, 28, 29, 3, 116, 176, 211, 73, 237], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3832, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17729965558427366187" + } + }, + "cborHex": "1bf60d7dbcedf9332b", + "cborBytes": [27, 246, 13, 125, 188, 237, 249, 51, 43], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3833, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16663300705477394334" + } + }, + "cborHex": "1be73fefb4a77eff9e", + "cborBytes": [27, 231, 63, 239, 180, 167, 126, 255, 158], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3834, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6280587274895159396" + } + }, + "cborHex": "1b572920d9bcf6f064", + "cborBytes": [27, 87, 41, 32, 217, 188, 246, 240, 100], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3835, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9463085534784486375" + } + }, + "cborHex": "1b8353a22803f77be7", + "cborBytes": [27, 131, 83, 162, 40, 3, 247, 123, 231], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3836, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6088870593792335020" + } + }, + "cborHex": "1b5480038b7a505cac", + "cborBytes": [27, 84, 128, 3, 139, 122, 80, 92, 172], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3837, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3674747535255321609" + } + }, + "cborHex": "1b32ff5369e622bc09", + "cborBytes": [27, 50, 255, 83, 105, 230, 34, 188, 9], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3838, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12171362696898334490" + } + }, + "cborHex": "1ba8e95de2dd10cf1a", + "cborBytes": [27, 168, 233, 93, 226, 221, 16, 207, 26], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3839, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "200083576867994190" + } + }, + "cborHex": "1b02c6d6f3fc9b3a4e", + "cborBytes": [27, 2, 198, 214, 243, 252, 155, 58, 78], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3840, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2854016155220484628" + } + }, + "cborHex": "1b279b80926b24a214", + "cborBytes": [27, 39, 155, 128, 146, 107, 36, 162, 20], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3841, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7160321553826229844" + } + }, + "cborHex": "1b635e92842562ae54", + "cborBytes": [27, 99, 94, 146, 132, 37, 98, 174, 84], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3842, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13542007937022955376" + } + }, + "cborHex": "1bbbeee07857c60f70", + "cborBytes": [27, 187, 238, 224, 120, 87, 198, 15, 112], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3843, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10941263160392743661" + } + }, + "cborHex": "1b97d72ce00546faed", + "cborBytes": [27, 151, 215, 44, 224, 5, 70, 250, 237], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3844, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "28823602713181316" + } + }, + "cborHex": "1b006666e9f8ddbc84", + "cborBytes": [27, 0, 102, 102, 233, 248, 221, 188, 132], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3845, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13669810691259889012" + } + }, + "cborHex": "1bbdb4ec65df61f574", + "cborBytes": [27, 189, 180, 236, 101, 223, 97, 245, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3846, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7937937061251874438" + } + }, + "cborHex": "1b6e2937b341537e86", + "cborBytes": [27, 110, 41, 55, 179, 65, 83, 126, 134], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3847, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16921161295948495530" + } + }, + "cborHex": "1bead40a8be8193aaa", + "cborBytes": [27, 234, 212, 10, 139, 232, 25, 58, 170], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3848, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13271208735337337835" + } + }, + "cborHex": "1bb82cce07e9d7d3eb", + "cborBytes": [27, 184, 44, 206, 7, 233, 215, 211, 235], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3849, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4181259773271845843" + } + }, + "cborHex": "1b3a06d19c4b7fabd3", + "cborBytes": [27, 58, 6, 209, 156, 75, 127, 171, 211], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3850, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13193548023304378759" + } + }, + "cborHex": "1bb718e606581d5987", + "cborBytes": [27, 183, 24, 230, 6, 88, 29, 89, 135], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3851, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13387020229483324588" + } + }, + "cborHex": "1bb9c83ff8a35264ac", + "cborBytes": [27, 185, 200, 63, 248, 163, 82, 100, 172], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3852, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4711265651680631598" + } + }, + "cborHex": "1b4161c7261aec5b2e", + "cborBytes": [27, 65, 97, 199, 38, 26, 236, 91, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3853, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10816730695383692552" + } + }, + "cborHex": "1b961cbf420968b508", + "cborBytes": [27, 150, 28, 191, 66, 9, 104, 181, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3854, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10965613574317749583" + } + }, + "cborHex": "1b982daf729169354f", + "cborBytes": [27, 152, 45, 175, 114, 145, 105, 53, 79], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3855, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14756028896745375210" + } + }, + "cborHex": "1bccc7f219cde845ea", + "cborBytes": [27, 204, 199, 242, 25, 205, 232, 69, 234], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3856, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13229951619193580149" + } + }, + "cborHex": "1bb79a3ae701a32a75", + "cborBytes": [27, 183, 154, 58, 231, 1, 163, 42, 117], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3857, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8400202016341444462" + } + }, + "cborHex": "1b7493833a498d476e", + "cborBytes": [27, 116, 147, 131, 58, 73, 141, 71, 110], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3858, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5358366767696980986" + } + }, + "cborHex": "1b4a5cbe2f74d62bfa", + "cborBytes": [27, 74, 92, 190, 47, 116, 214, 43, 250], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3859, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11831811510980679892" + } + }, + "cborHex": "1ba43309e1b16198d4", + "cborBytes": [27, 164, 51, 9, 225, 177, 97, 152, 212], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3860, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8436833012313247401" + } + }, + "cborHex": "1b7515a6eca8384ea9", + "cborBytes": [27, 117, 21, 166, 236, 168, 56, 78, 169], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3861, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10517320690724279012" + } + }, + "cborHex": "1b91f50771ef7c92e4", + "cborBytes": [27, 145, 245, 7, 113, 239, 124, 146, 228], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3862, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "595477166977170675" + } + }, + "cborHex": "1b08438f541187bcf3", + "cborBytes": [27, 8, 67, 143, 84, 17, 135, 188, 243], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3863, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16067861982260645273" + } + }, + "cborHex": "1bdefc835778a64d99", + "cborBytes": [27, 222, 252, 131, 87, 120, 166, 77, 153], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3864, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12704231958120906188" + } + }, + "cborHex": "1bb04e7fa7eff63dcc", + "cborBytes": [27, 176, 78, 127, 167, 239, 246, 61, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3865, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11864712488803862863" + } + }, + "cborHex": "1ba4a7ed25894b894f", + "cborBytes": [27, 164, 167, 237, 37, 137, 75, 137, 79], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3866, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8215191154042846450" + } + }, + "cborHex": "1b720238d422a7bcf2", + "cborBytes": [27, 114, 2, 56, 212, 34, 167, 188, 242], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3867, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4612315474406509872" + } + }, + "cborHex": "1b40023c7ca4098d30", + "cborBytes": [27, 64, 2, 60, 124, 164, 9, 141, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3868, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8525443566686718052" + } + }, + "cborHex": "1b765075c111004864", + "cborBytes": [27, 118, 80, 117, 193, 17, 0, 72, 100], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3869, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3834023397033863824" + } + }, + "cborHex": "1b35352ff750bd6a90", + "cborBytes": [27, 53, 53, 47, 247, 80, 189, 106, 144], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3870, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12667066195577246623" + } + }, + "cborHex": "1bafca759785bd939f", + "cborBytes": [27, 175, 202, 117, 151, 133, 189, 147, 159], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3871, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14011742769467859758" + } + }, + "cborHex": "1bc273b5cfba47a32e", + "cborBytes": [27, 194, 115, 181, 207, 186, 71, 163, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3872, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10395974562029277393" + } + }, + "cborHex": "1b9045ebc8afc090d1", + "cborBytes": [27, 144, 69, 235, 200, 175, 192, 144, 209], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3873, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9692331852364979200" + } + }, + "cborHex": "1b86821477b16b1c00", + "cborBytes": [27, 134, 130, 20, 119, 177, 107, 28, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3874, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "409137012771358000" + } + }, + "cborHex": "1b05ad8bf206b38530", + "cborBytes": [27, 5, 173, 139, 242, 6, 179, 133, 48], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3875, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1497059488866039998" + } + }, + "cborHex": "1b14c69fac617cf8be", + "cborBytes": [27, 20, 198, 159, 172, 97, 124, 248, 190], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3876, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5428902284414957655" + } + }, + "cborHex": "1b4b5755dd36dc3857", + "cborBytes": [27, 75, 87, 85, 221, 54, 220, 56, 87], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3877, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15705862484054074642" + } + }, + "cborHex": "1bd9f66eb74d2d6512", + "cborBytes": [27, 217, 246, 110, 183, 77, 45, 101, 18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3878, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9528247174486378591" + } + }, + "cborHex": "1b843b22528761485f", + "cborBytes": [27, 132, 59, 34, 82, 135, 97, 72, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3879, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17081539229182884985" + } + }, + "cborHex": "1bed0dd16d54587c79", + "cborBytes": [27, 237, 13, 209, 109, 84, 88, 124, 121], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3880, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12062529782099064775" + } + }, + "cborHex": "1ba766b6ed4295b7c7", + "cborBytes": [27, 167, 102, 182, 237, 66, 149, 183, 199], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3881, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9645906533088615470" + } + }, + "cborHex": "1b85dd24e2b95ddc2e", + "cborBytes": [27, 133, 221, 36, 226, 185, 93, 220, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3882, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8249452023418649873" + } + }, + "cborHex": "1b727bf0e8677efd11", + "cborBytes": [27, 114, 123, 240, 232, 103, 126, 253, 17], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3883, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12186697373354069961" + } + }, + "cborHex": "1ba91fd8b173f48fc9", + "cborBytes": [27, 169, 31, 216, 177, 115, 244, 143, 201], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3884, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1495077208400504613" + } + }, + "cborHex": "1b14bf94ccbe7ea725", + "cborBytes": [27, 20, 191, 148, 204, 190, 126, 167, 37], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3885, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12226137084581968643" + } + }, + "cborHex": "1ba9abf6e6cdbcfb03", + "cborBytes": [27, 169, 171, 246, 230, 205, 188, 251, 3], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3886, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18327025741789388943" + } + }, + "cborHex": "1bfe56accfb8cbe08f", + "cborBytes": [27, 254, 86, 172, 207, 184, 203, 224, 143], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3887, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2976953881998651493" + } + }, + "cborHex": "1b295043c8793ff065", + "cborBytes": [27, 41, 80, 67, 200, 121, 63, 240, 101], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3888, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13738443189814538469" + } + }, + "cborHex": "1bbea8c14aafc7b0e5", + "cborBytes": [27, 190, 168, 193, 74, 175, 199, 176, 229], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3889, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7075114039471185688" + } + }, + "cborHex": "1b622fdabbbc0f1f18", + "cborBytes": [27, 98, 47, 218, 187, 188, 15, 31, 24], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3890, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10883761298928509176" + } + }, + "cborHex": "1b970ae33c9ac720f8", + "cborBytes": [27, 151, 10, 227, 60, 154, 199, 32, 248], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3891, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8600898981686470550" + } + }, + "cborHex": "1b775c880de870e796", + "cborBytes": [27, 119, 92, 136, 13, 232, 112, 231, 150], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3892, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16010156307674180379" + } + }, + "cborHex": "1bde2f80561d662b1b", + "cborBytes": [27, 222, 47, 128, 86, 29, 102, 43, 27], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3893, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10148292644298297075" + } + }, + "cborHex": "1b8cd5fa645c1c0ef3", + "cborBytes": [27, 140, 213, 250, 100, 92, 28, 14, 243], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3894, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13354522655231138828" + } + }, + "cborHex": "1bb954cb9981f55c0c", + "cborBytes": [27, 185, 84, 203, 153, 129, 245, 92, 12], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3895, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16372688338194546234" + } + }, + "cborHex": "1be337794c20443e3a", + "cborBytes": [27, 227, 55, 121, 76, 32, 68, 62, 58], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3896, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2630601376551177921" + } + }, + "cborHex": "1b2481c603b2fc8ec1", + "cborBytes": [27, 36, 129, 198, 3, 178, 252, 142, 193], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3897, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2288599489643395450" + } + }, + "cborHex": "1b1fc2bd1c3d55b97a", + "cborBytes": [27, 31, 194, 189, 28, 61, 85, 185, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3898, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14287254051405674970" + } + }, + "cborHex": "1bc64685dcd5cbb9da", + "cborBytes": [27, 198, 70, 133, 220, 213, 203, 185, 218], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3899, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "213878982667875643" + } + }, + "cborHex": "1b02f7d9cd32d7353b", + "cborBytes": [27, 2, 247, 217, 205, 50, 215, 53, 59], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3900, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1663934950740371500" + } + }, + "cborHex": "1b17177c05943ca82c", + "cborBytes": [27, 23, 23, 124, 5, 148, 60, 168, 44], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3901, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "311619915704547074" + } + }, + "cborHex": "1b045318a98c81b702", + "cborBytes": [27, 4, 83, 24, 169, 140, 129, 183, 2], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3902, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16816862361753327449" + } + }, + "cborHex": "1be9617f37ecf19759", + "cborBytes": [27, 233, 97, 127, 55, 236, 241, 151, 89], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3903, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7575424581499456899" + } + }, + "cborHex": "1b6921508543098d83", + "cborBytes": [27, 105, 33, 80, 133, 67, 9, 141, 131], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3904, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13423526506028623010" + } + }, + "cborHex": "1bba49f23c80e064a2", + "cborBytes": [27, 186, 73, 242, 60, 128, 224, 100, 162], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3905, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6332858072470688064" + } + }, + "cborHex": "1b57e2d4dd2e949140", + "cborBytes": [27, 87, 226, 212, 221, 46, 148, 145, 64], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3906, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18007054202773775634" + } + }, + "cborHex": "1bf9e5e86457892512", + "cborBytes": [27, 249, 229, 232, 100, 87, 137, 37, 18], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3907, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15967765150164564604" + } + }, + "cborHex": "1bdd98e5cda06bba7c", + "cborBytes": [27, 221, 152, 229, 205, 160, 107, 186, 124], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3908, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15246970944505771786" + } + }, + "cborHex": "1bd3981f4ac7f7f70a", + "cborBytes": [27, 211, 152, 31, 74, 199, 247, 247, 10], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3909, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3867261116929368073" + } + }, + "cborHex": "1b35ab457f08416009", + "cborBytes": [27, 53, 171, 69, 127, 8, 65, 96, 9], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3910, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18269492807577338046" + } + }, + "cborHex": "1bfd8a46e99e3380be", + "cborBytes": [27, 253, 138, 70, 233, 158, 51, 128, 190], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3911, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6778444194731414528" + } + }, + "cborHex": "1b5e11df14d4c65400", + "cborBytes": [27, 94, 17, 223, 20, 212, 198, 84, 0], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3912, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17306362590471098701" + } + }, + "cborHex": "1bf02c8d153f23914d", + "cborBytes": [27, 240, 44, 141, 21, 63, 35, 145, 77], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3913, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10786802732966803341" + } + }, + "cborHex": "1b95b26bef48b2f78d", + "cborBytes": [27, 149, 178, 107, 239, 72, 178, 247, 141], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3914, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12814832878430170498" + } + }, + "cborHex": "1bb1d76e9b66d3ad82", + "cborBytes": [27, 177, 215, 110, 155, 102, 211, 173, 130], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3915, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16547213280245651754" + } + }, + "cborHex": "1be5a382ceb7ab192a", + "cborBytes": [27, 229, 163, 130, 206, 183, 171, 25, 42], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3916, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5981824546289580546" + } + }, + "cborHex": "1b5303b5bb564d7a02", + "cborBytes": [27, 83, 3, 181, 187, 86, 77, 122, 2], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3917, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7574268858245293849" + } + }, + "cborHex": "1b691d35657903a719", + "cborBytes": [27, 105, 29, 53, 101, 121, 3, 167, 25], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3918, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17652715093675121734" + } + }, + "cborHex": "1bf4fb0ad97fae9c46", + "cborBytes": [27, 244, 251, 10, 217, 127, 174, 156, 70], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3919, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17339460585474747339" + } + }, + "cborHex": "1bf0a22388ba1bebcb", + "cborBytes": [27, 240, 162, 35, 136, 186, 27, 235, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3920, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8355611243048758946" + } + }, + "cborHex": "1b73f51827d72e6ea2", + "cborBytes": [27, 115, 245, 24, 39, 215, 46, 110, 162], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3921, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "645564850582506819" + } + }, + "cborHex": "1b08f581cfae72cd43", + "cborBytes": [27, 8, 245, 129, 207, 174, 114, 205, 67], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3922, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16457337686844545567" + } + }, + "cborHex": "1be464356e75049a1f", + "cborBytes": [27, 228, 100, 53, 110, 117, 4, 154, 31], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3923, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8026407519817086602" + } + }, + "cborHex": "1b6f63871d1138b68a", + "cborBytes": [27, 111, 99, 135, 29, 17, 56, 182, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3924, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5276087383667563713" + } + }, + "cborHex": "1b49386d85836cdcc1", + "cborBytes": [27, 73, 56, 109, 133, 131, 108, 220, 193], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3925, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17784143747005370059" + } + }, + "cborHex": "1bf6cdf88372bd4ecb", + "cborBytes": [27, 246, 205, 248, 131, 114, 189, 78, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3926, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10125806145032410472" + } + }, + "cborHex": "1b8c86170a431fd568", + "cborBytes": [27, 140, 134, 23, 10, 67, 31, 213, 104], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3927, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16634583784385580495" + } + }, + "cborHex": "1be6d9e9d16ec68dcf", + "cborBytes": [27, 230, 217, 233, 209, 110, 198, 141, 207], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3928, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6451296473071390733" + } + }, + "cborHex": "1b59879bf63a26900d", + "cborBytes": [27, 89, 135, 155, 246, 58, 38, 144, 13], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3929, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9599235737211660591" + } + }, + "cborHex": "1b8537560b47bc692f", + "cborBytes": [27, 133, 55, 86, 11, 71, 188, 105, 47], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3930, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14012005163891997880" + } + }, + "cborHex": "1bc274a47530b8bcb8", + "cborBytes": [27, 194, 116, 164, 117, 48, 184, 188, 184], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3931, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "134634105889376999" + } + }, + "cborHex": "1b01de510188304ae7", + "cborBytes": [27, 1, 222, 81, 1, 136, 48, 74, 231], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3932, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17656877794386854244" + } + }, + "cborHex": "1bf509d4cdc8e94164", + "cborBytes": [27, 245, 9, 212, 205, 200, 233, 65, 100], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3933, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18288473719394794777" + } + }, + "cborHex": "1bfdcdb5f38897fd19", + "cborBytes": [27, 253, 205, 181, 243, 136, 151, 253, 25], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3934, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14767871838973175694" + } + }, + "cborHex": "1bccf20531aa7da78e", + "cborBytes": [27, 204, 242, 5, 49, 170, 125, 167, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3935, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10921735552779815483" + } + }, + "cborHex": "1b9791cc9e92320a3b", + "cborBytes": [27, 151, 145, 204, 158, 146, 50, 10, 59], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3936, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5040463693010621008" + } + }, + "cborHex": "1b45f35305f526d250", + "cborBytes": [27, 69, 243, 83, 5, 245, 38, 210, 80], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3937, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6494971483429657719" + } + }, + "cborHex": "1b5a22c627001ddc77", + "cborBytes": [27, 90, 34, 198, 39, 0, 29, 220, 119], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3938, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18321242570887227940" + } + }, + "cborHex": "1bfe42210c517f6a24", + "cborBytes": [27, 254, 66, 33, 12, 81, 127, 106, 36], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3939, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10649932326476939887" + } + }, + "cborHex": "1b93cc2906719b826f", + "cborBytes": [27, 147, 204, 41, 6, 113, 155, 130, 111], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3940, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5123484083658931718" + } + }, + "cborHex": "1b471a45a0f2dbbe06", + "cborBytes": [27, 71, 26, 69, 160, 242, 219, 190, 6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3941, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10996335797786408590" + } + }, + "cborHex": "1b989ad525a1f8768e", + "cborBytes": [27, 152, 154, 213, 37, 161, 248, 118, 142], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3942, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7536251605789894299" + } + }, + "cborHex": "1b689624e81d12e69b", + "cborBytes": [27, 104, 150, 36, 232, 29, 18, 230, 155], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3943, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11595910332368429870" + } + }, + "cborHex": "1ba0ecf302701a232e", + "cborBytes": [27, 160, 236, 243, 2, 112, 26, 35, 46], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3944, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1712892169635543280" + } + }, + "cborHex": "1b17c56a5a5dacb8f0", + "cborBytes": [27, 23, 197, 106, 90, 93, 172, 184, 240], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3945, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16137428619893492643" + } + }, + "cborHex": "1bdff3a9d47cf94ba3", + "cborBytes": [27, 223, 243, 169, 212, 124, 249, 75, 163], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3946, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2492194807634513797" + } + }, + "cborHex": "1b22960df92c20cf85", + "cborBytes": [27, 34, 150, 13, 249, 44, 32, 207, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3947, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "63432419123093435" + } + }, + "cborHex": "1b00e15b72f9135fbb", + "cborBytes": [27, 0, 225, 91, 114, 249, 19, 95, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3948, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3853797733022926659" + } + }, + "cborHex": "1b357b709eb1098743", + "cborBytes": [27, 53, 123, 112, 158, 177, 9, 135, 67], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3949, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6967184862317783865" + } + }, + "cborHex": "1b60b069b7f2ee2b39", + "cborBytes": [27, 96, 176, 105, 183, 242, 238, 43, 57], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3950, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5951220454629051512" + } + }, + "cborHex": "1b5296fb78fa340c78", + "cborBytes": [27, 82, 150, 251, 120, 250, 52, 12, 120], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3951, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16594952392958869002" + } + }, + "cborHex": "1be64d1d470ed4fe0a", + "cborBytes": [27, 230, 77, 29, 71, 14, 212, 254, 10], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3952, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2107231992177253985" + } + }, + "cborHex": "1b1d3e645511105e61", + "cborBytes": [27, 29, 62, 100, 85, 17, 16, 94, 97], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3953, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8306425998556776314" + } + }, + "cborHex": "1b73465a6fb50bc77a", + "cborBytes": [27, 115, 70, 90, 111, 181, 11, 199, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3954, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "291422180905171408" + } + }, + "cborHex": "1b040b56edf485b9d0", + "cborBytes": [27, 4, 11, 86, 237, 244, 133, 185, 208], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3955, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10080880542577135151" + } + }, + "cborHex": "1b8be67b7153750e2f", + "cborBytes": [27, 139, 230, 123, 113, 83, 117, 14, 47], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3956, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14719107916263905697" + } + }, + "cborHex": "1bcc44c6aa278cd9a1", + "cborBytes": [27, 204, 68, 198, 170, 39, 140, 217, 161], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3957, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12626063643449886906" + } + }, + "cborHex": "1baf38c9fceb4e08ba", + "cborBytes": [27, 175, 56, 201, 252, 235, 78, 8, 186], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3958, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5184797746331075873" + } + }, + "cborHex": "1b47f41a147e4f4521", + "cborBytes": [27, 71, 244, 26, 20, 126, 79, 69, 33], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3959, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7727354323816871673" + } + }, + "cborHex": "1b6b3d13d0f4aef6f9", + "cborBytes": [27, 107, 61, 19, 208, 244, 174, 246, 249], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3960, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8710261803174397960" + } + }, + "cborHex": "1b78e110f606dd0808", + "cborBytes": [27, 120, 225, 16, 246, 6, 221, 8, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3961, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2450523367654958409" + } + }, + "cborHex": "1b22020204fade2549", + "cborBytes": [27, 34, 2, 2, 4, 250, 222, 37, 73], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3962, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14729389483902035224" + } + }, + "cborHex": "1bcc694db22a5ae518", + "cborBytes": [27, 204, 105, 77, 178, 42, 90, 229, 24], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3963, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4646566005683934123" + } + }, + "cborHex": "1b407beb29e23253ab", + "cborBytes": [27, 64, 123, 235, 41, 226, 50, 83, 171], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3964, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15554643198301046826" + } + }, + "cborHex": "1bd7dd3193aaae082a", + "cborBytes": [27, 215, 221, 49, 147, 170, 174, 8, 42], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3965, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3137140390925823240" + } + }, + "cborHex": "1b2b895c9073a9ed08", + "cborBytes": [27, 43, 137, 92, 144, 115, 169, 237, 8], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3966, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5873649146052500546" + } + }, + "cborHex": "1b518364c745bc5c42", + "cborBytes": [27, 81, 131, 100, 199, 69, 188, 92, 66], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3967, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12041330277669140063" + } + }, + "cborHex": "1ba71b6616ff9ff65f", + "cborBytes": [27, 167, 27, 102, 22, 255, 159, 246, 95], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3968, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11095103659866950268" + } + }, + "cborHex": "1b99f9b9fe88818a7c", + "cborBytes": [27, 153, 249, 185, 254, 136, 129, 138, 124], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3969, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7394698229986165678" + } + }, + "cborHex": "1b669f3edc838903ae", + "cborBytes": [27, 102, 159, 62, 220, 131, 137, 3, 174], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3970, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2152898316904058234" + } + }, + "cborHex": "1b1de0a19cd89a4d7a", + "cborBytes": [27, 29, 224, 161, 156, 216, 154, 77, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3971, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14879405754780766874" + } + }, + "cborHex": "1bce7e44b3129c529a", + "cborBytes": [27, 206, 126, 68, 179, 18, 156, 82, 154], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3972, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6392359583276683159" + } + }, + "cborHex": "1b58b6392c3dc54f97", + "cborBytes": [27, 88, 182, 57, 44, 61, 197, 79, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3973, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6757223805222075480" + } + }, + "cborHex": "1b5dc67b3fe2133c58", + "cborBytes": [27, 93, 198, 123, 63, 226, 19, 60, 88], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3974, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17832960087741177569" + } + }, + "cborHex": "1bf77b66b77b881ee1", + "cborBytes": [27, 247, 123, 102, 183, 123, 136, 30, 225], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3975, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15595956348026145974" + } + }, + "cborHex": "1bd86ff7aae898ccb6", + "cborBytes": [27, 216, 111, 247, 170, 232, 152, 204, 182], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3976, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12031132851875845335" + } + }, + "cborHex": "1ba6f72b95c99794d7", + "cborBytes": [27, 166, 247, 43, 149, 201, 151, 148, 215], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3977, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14209277451677746694" + } + }, + "cborHex": "1bc5317e8eee384606", + "cborBytes": [27, 197, 49, 126, 142, 238, 56, 70, 6], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3978, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17658450797001367178" + } + }, + "cborHex": "1bf50f6b70fefade8a", + "cborBytes": [27, 245, 15, 107, 112, 254, 250, 222, 138], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3979, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9113340091462478714" + } + }, + "cborHex": "1b7e79168754f26b7a", + "cborBytes": [27, 126, 121, 22, 135, 84, 242, 107, 122], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3980, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8657760269927562200" + } + }, + "cborHex": "1b78268b183f85bbd8", + "cborBytes": [27, 120, 38, 139, 24, 63, 133, 187, 216], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3981, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12371171848399566888" + } + }, + "cborHex": "1babaf3b40372b3828", + "cborBytes": [27, 171, 175, 59, 64, 55, 43, 56, 40], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3982, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11766591361850233976" + } + }, + "cborHex": "1ba34b548064435478", + "cborBytes": [27, 163, 75, 84, 128, 100, 67, 84, 120], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3983, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8430158656881089995" + } + }, + "cborHex": "1b74fdf0a22f94ddcb", + "cborBytes": [27, 116, 253, 240, 162, 47, 148, 221, 203], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3984, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5550992668610794612" + } + }, + "cborHex": "1b4d09166bf3581474", + "cborBytes": [27, 77, 9, 22, 107, 243, 88, 20, 116], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3985, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9762502582130144641" + } + }, + "cborHex": "1b877b605fdeb37581", + "cborBytes": [27, 135, 123, 96, 95, 222, 179, 117, 129], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3986, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8626204751856345838" + } + }, + "cborHex": "1b77b66f84aa2f22ee", + "cborBytes": [27, 119, 182, 111, 132, 170, 47, 34, 238], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3987, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4394719990310980568" + } + }, + "cborHex": "1b3cfd2e8c05cb4bd8", + "cborBytes": [27, 60, 253, 46, 140, 5, 203, 75, 216], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3988, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10549234823662066565" + } + }, + "cborHex": "1b9266692e0c8edb85", + "cborBytes": [27, 146, 102, 105, 46, 12, 142, 219, 133], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3989, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7565375666288248636" + } + }, + "cborHex": "1b68fd9d15dd7ec73c", + "cborBytes": [27, 104, 253, 157, 21, 221, 126, 199, 60], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3990, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17505528880922557564" + } + }, + "cborHex": "1bf2f021c4d8bafc7c", + "cborBytes": [27, 242, 240, 33, 196, 216, 186, 252, 124], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3991, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10155386836963577804" + } + }, + "cborHex": "1b8cef2e85cde44fcc", + "cborBytes": [27, 140, 239, 46, 133, 205, 228, 79, 204], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3992, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10312280117442862211" + } + }, + "cborHex": "1b8f1c942148815c83", + "cborBytes": [27, 143, 28, 148, 33, 72, 129, 92, 131], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3993, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8752790390264305782" + } + }, + "cborHex": "1b7978287c55281876", + "cborBytes": [27, 121, 120, 40, 124, 85, 40, 24, 118], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3994, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14097666908084196795" + } + }, + "cborHex": "1bc3a4f95c3a2355bb", + "cborBytes": [27, 195, 164, 249, 92, 58, 35, 85, 187], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3995, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9072895440076380880" + } + }, + "cborHex": "1b7de966551e039ad0", + "cborBytes": [27, 125, 233, 102, 85, 30, 3, 154, 208], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3996, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13287823484241645234" + } + }, + "cborHex": "1bb867d50e98510eb2", + "cborBytes": [27, 184, 103, 213, 14, 152, 81, 14, 178], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3997, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7372777846869583100" + } + }, + "cborHex": "1b66515e639a87e4fc", + "cborBytes": [27, 102, 81, 94, 99, 154, 135, 228, 252], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3998, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7464180592311432087" + } + }, + "cborHex": "1b679618b3a8167397", + "cborBytes": [27, 103, 150, 24, 179, 168, 22, 115, 151], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + }, + { + "index": 3999, + "sample": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9475548993056680446" + } + }, + "cborHex": "1b837fe99b06f429fe", + "cborBytes": [27, 131, 127, 233, 155, 6, 244, 41, 254], + "roundTripSuccess": true, + "metadata": { + "type": "integer", + "seed": 12345 + } + } +] diff --git a/packages/evolution/test/golden/list.golden.json b/packages/evolution/test/golden/list.golden.json new file mode 100644 index 00000000..fa81e3e4 --- /dev/null +++ b/packages/evolution/test/golden/list.golden.json @@ -0,0 +1,406612 @@ +[ + { + "index": 0, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e5633" + } + ] + }, + "cborHex": "9f438e5633ff", + "cborBytes": [159, 67, 142, 86, 51, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1, + "sample": { + "_tag": "List", + "list": [] + }, + "cborHex": "80", + "cborBytes": [128], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8c28" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4c20692eb3c3966b32" + }, + { + "_tag": "ByteArray", + "bytearray": "10883f12df" + } + ] + } + ] + }, + "cborHex": "9f428c289f494c20692eb3c3966b324510883f12dfffff", + "cborBytes": [ + 159, 66, 140, 40, 159, 73, 76, 32, 105, 46, 179, 195, 150, 107, 50, 69, 16, 136, 63, 18, 223, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27ad9e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4495522408236194158" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62ee48b23bed1f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07f9d904" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ca4048c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed" + } + } + ] + } + ] + }, + "cborHex": "9fbf4327ad9e1b3e634dcfdeba196e4762ee48b23bed1f4407f9d904448ca4048c41edffff", + "cborBytes": [ + 159, 191, 67, 39, 173, 158, 27, 62, 99, 77, 207, 222, 186, 25, 110, 71, 98, 238, 72, 178, 59, 237, 31, 68, 7, 249, + 217, 4, 68, 140, 164, 4, 140, 65, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 4, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4688741368617038374" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b1ddb9464f2d263c67a2a7" + }, + { + "_tag": "ByteArray", + "bytearray": "77706735dc" + }, + { + "_tag": "ByteArray", + "bytearray": "185c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11815335568321193770" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "be07d64d59" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17293214871891614254" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13796576323345291062" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05333c04f4429d11d1" + }, + { + "_tag": "ByteArray", + "bytearray": "e56387c33672" + }, + { + "_tag": "ByteArray", + "bytearray": "927ac45417cb20" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4975253619926259789" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b4111c16ec818f2269f9f4bb1ddb9464f2d263c67a2a74577706735dc42185cff1ba3f881195bd2a72a8045be07d64d599f1beffdd74d779a1a2e1bbf774911958f97364905333c04f4429d11d146e56387c3367247927ac45417cb20ffffff9f1b450ba6ceab2e584dffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 65, 17, 193, 110, 200, 24, 242, 38, 159, 159, 75, 177, 221, 185, 70, 79, 45, 38, 60, 103, + 162, 167, 69, 119, 112, 103, 53, 220, 66, 24, 92, 255, 27, 163, 248, 129, 25, 91, 210, 167, 42, 128, 69, 190, 7, + 214, 77, 89, 159, 27, 239, 253, 215, 77, 119, 154, 26, 46, 27, 191, 119, 73, 17, 149, 143, 151, 54, 73, 5, 51, 60, + 4, 244, 66, 157, 17, 209, 70, 229, 99, 135, 195, 54, 114, 71, 146, 122, 196, 84, 23, 203, 32, 255, 255, 255, 159, + 27, 69, 11, 166, 206, 171, 46, 88, 77, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 5, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15680834337772093100" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dea6f23f6aca90fcdee69c38" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12392096711631025164" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3745099503385652810" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d4a6" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd905059fa09f1bd99d83bfe4a73eac4cdea6f23f6aca90fcdee69c381babf9924d970db40cffd8669f1b33f94427ebcb2e4a9f42d4a6ffffffff", + "cborBytes": [ + 159, 217, 5, 5, 159, 160, 159, 27, 217, 157, 131, 191, 228, 167, 62, 172, 76, 222, 166, 242, 63, 106, 202, 144, + 252, 222, 230, 156, 56, 27, 171, 249, 146, 77, 151, 13, 180, 12, 255, 216, 102, 159, 27, 51, 249, 68, 39, 235, + 203, 46, 74, 159, 66, 212, 166, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 6, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "46b0ac02f7" + } + ] + }, + "cborHex": "9f4546b0ac02f7ff", + "cborBytes": [159, 69, 70, 176, 172, 2, 247, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 7, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2086321517934526299" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "610005471195102316" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4109120808ad5543" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15563261515909792944" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9520a39ed1c2" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4254746994838001875" + } + } + ] + }, + "cborHex": "9f9f1b1cf41a5de3bdbf5bbf1b08772cbe7da0fc6c484109120808ad55431bd7fbcfe41a4f84b0469520a39ed1c2ffff1b3b0be5d9647ad8d3ff", + "cborBytes": [ + 159, 159, 27, 28, 244, 26, 93, 227, 189, 191, 91, 191, 27, 8, 119, 44, 190, 125, 160, 252, 108, 72, 65, 9, 18, 8, + 8, 173, 85, 67, 27, 215, 251, 207, 228, 26, 79, 132, 176, 70, 149, 32, 163, 158, 209, 194, 255, 255, 27, 59, 11, + 229, 217, 100, 122, 216, 211, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 8, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "07" + } + ] + }, + "cborHex": "9f4107ff", + "cborBytes": [159, 65, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 9, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6966870740193610319" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d57f86e357dff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b74a8b052b3c9382a57ebb" + } + } + ] + } + ] + }, + "cborHex": "9f1b60af4c06b14d8a4fbf473d57f86e357dff4bb74a8b052b3c9382a57ebbffff", + "cborBytes": [ + 159, 27, 96, 175, 76, 6, 177, 77, 138, 79, 191, 71, 61, 87, 248, 110, 53, 125, 255, 75, 183, 74, 139, 5, 43, 60, + 147, 130, 165, 126, 187, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 10, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02c77cc485e082db3f33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdde" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "775cf61c0da5dd94" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16695403951904950187" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92c2149eab854b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30f5579f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f09fa053856c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5afc7a7c278" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15169600594667307430" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4a02c77cc485e082db3f3342fdde48775cf61c0da5dd941be7b1fd702ef287ab4792c2149eab854b4430f5579f419646f09fa053856c46e5afc7a7c2781bd2853f5e6db301a6ffff", + "cborBytes": [ + 159, 191, 74, 2, 199, 124, 196, 133, 224, 130, 219, 63, 51, 66, 253, 222, 72, 119, 92, 246, 28, 13, 165, 221, 148, + 27, 231, 177, 253, 112, 46, 242, 135, 171, 71, 146, 194, 20, 158, 171, 133, 75, 68, 48, 245, 87, 159, 65, 150, 70, + 240, 159, 160, 83, 133, 108, 70, 229, 175, 199, 167, 194, 120, 27, 210, 133, 63, 94, 109, 179, 1, 166, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 11, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "384717857506647916" + } + } + ] + }, + "cborHex": "9f1b0556cada636edf6cff", + "cborBytes": [159, 27, 5, 86, 202, 218, 99, 110, 223, 108, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 12, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15417884701759152944" + } + } + ] + }, + "cborHex": "9f1bd5f75472e448a330ff", + "cborBytes": [159, 27, 213, 247, 84, 114, 228, 72, 163, 48, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 13, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5950910081676447526" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "813d976eb7a12b32" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8112973328367224495" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12004754903691764573" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "323956ebc13c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64dba468ce" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "300354630590947981" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12602391788322654115" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11994253277191542670" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "82e934" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16142197229201648544" + } + } + ] + }, + "cborHex": "9fbf1b5295e130a49d8f2648813d976eb7a12b321b70971241fd8c06af1ba69974fb222d235d46323956ebc13c4564dba468ceff1b042b12f1f704628d1baee4b08fa74587a3d8669f1ba67425cead11178e9f4382e93480ffff1be0049adadcdbeba0ff", + "cborBytes": [ + 159, 191, 27, 82, 149, 225, 48, 164, 157, 143, 38, 72, 129, 61, 151, 110, 183, 161, 43, 50, 27, 112, 151, 18, 65, + 253, 140, 6, 175, 27, 166, 153, 116, 251, 34, 45, 35, 93, 70, 50, 57, 86, 235, 193, 60, 69, 100, 219, 164, 104, + 206, 255, 27, 4, 43, 18, 241, 247, 4, 98, 141, 27, 174, 228, 176, 143, 167, 69, 135, 163, 216, 102, 159, 27, 166, + 116, 37, 206, 173, 17, 23, 142, 159, 67, 130, 233, 52, 128, 255, 255, 27, 224, 4, 154, 218, 220, 219, 235, 160, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 14, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "87" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f27dd44dc2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1812009913808154122" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2efb03be0ce003" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7379924689404523899" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15626722870407448568" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10167211763549297204" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11539914840653217774" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17399501212044036534" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1433074254932046855" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7340932253771578168" + } + } + ] + }, + "cborHex": "9f9f41879f45f27dd44dc21b19258d6a8a056e0a472efb03be0ce003ffbf1b666ac2678d17757b1bd8dd45a81e1bc7f81b8d19313b12875a341ba02603680f64bfeeff1bf177722a74dd09b61b13e34d712dfb7407ff1b65e03afdaa433b38ff", + "cborBytes": [ + 159, 159, 65, 135, 159, 69, 242, 125, 212, 77, 194, 27, 25, 37, 141, 106, 138, 5, 110, 10, 71, 46, 251, 3, 190, + 12, 224, 3, 255, 191, 27, 102, 106, 194, 103, 141, 23, 117, 123, 27, 216, 221, 69, 168, 30, 27, 199, 248, 27, 141, + 25, 49, 59, 18, 135, 90, 52, 27, 160, 38, 3, 104, 15, 100, 191, 238, 255, 27, 241, 119, 114, 42, 116, 221, 9, 182, + 27, 19, 227, 77, 113, 45, 251, 116, 7, 255, 27, 101, 224, 58, 253, 170, 67, 59, 56, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 15, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fb7b2719da96431c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13764107066275506956" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "caa4c24c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5a3bd12f9c33800e98" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12860984583957589343" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9b25" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12016881831905911208" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7456532563188747741" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb026b539a5592" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd" + } + } + ] + } + ] + }, + "cborHex": "9f48fb7b2719da96431cd8669f1bbf03ee738fcbab0c9f44caa4c24c9f495a3bd12f9c33800e981bb27b6556b4912d5f429b25ff1ba6c48a5ba298e1a8ffff1b677aecdc1cff8dddbf47cb026b539a559241cdffff", + "cborBytes": [ + 159, 72, 251, 123, 39, 25, 218, 150, 67, 28, 216, 102, 159, 27, 191, 3, 238, 115, 143, 203, 171, 12, 159, 68, 202, + 164, 194, 76, 159, 73, 90, 59, 209, 47, 156, 51, 128, 14, 152, 27, 178, 123, 101, 86, 180, 145, 45, 95, 66, 155, + 37, 255, 27, 166, 196, 138, 91, 162, 152, 225, 168, 255, 255, 27, 103, 122, 236, 220, 28, 255, 141, 221, 191, 71, + 203, 2, 107, 83, 154, 85, 146, 65, 205, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 16, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17753848128008268814" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12712252951336774882" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf66256cefa2aac0e9f1bb06afeb4f356ece2ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 246, 98, 86, 206, 250, 42, 172, 14, 159, 27, 176, 106, 254, 180, 243, 86, 236, 226, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 17, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11685188195089496501" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3dc4f80a" + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba22a20c0ade5b9b59f443dc4f80affffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 162, 42, 32, 192, 173, 229, 185, 181, 159, 68, 61, 196, 248, 10, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 18, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffef9f02ffffff", + "cborBytes": [159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 2, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 19, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4845180421322637525" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2379679838796441646" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1998688565760094655" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a943780626a95a42" + }, + { + "_tag": "ByteArray", + "bytearray": "50" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1699475817646806567" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b433d89ec1d9d00d59fd8669f1b210652348e9ee82e9f1b1bbcc4a93ac3f1bf48a943780626a95a424150ffffd905099f1b1795c0407f345627ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 67, 61, 137, 236, 29, 157, 0, 213, 159, 216, 102, 159, 27, 33, 6, 82, 52, 142, 158, 232, + 46, 159, 27, 27, 188, 196, 169, 58, 195, 241, 191, 72, 169, 67, 120, 6, 38, 169, 90, 66, 65, 80, 255, 255, 217, 5, + 9, 159, 27, 23, 149, 192, 64, 127, 52, 86, 39, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 20, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3843739609445815048" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f16e8fbdc569" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6148326758937930223" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9223864308251960477" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "811de5625823288e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9463169255919503096" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd11abc850cb4f5f13" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17973642766909075467" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3134347143992126799" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e64efb21" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10150573484125159946" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15793741858473932364" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4e9cac1e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4445532104565119238" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d098" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14765708822931073690" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11297380144163921445" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1b036eff165" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "178bbbccef41b6a3" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ef02deb1a403b75bf5de2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "569c4cad7a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11002250626106210392" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b006427a1eae28abc13497" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92d47ff242124878" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "93adc0f9395747946896" + } + ] + }, + "cborHex": "9fbf1b3557b4cf4e1dd30846f16e8fbdc5691b55533e9cad8629ef41c71b8001bfb7ddc3249d48811de5625823288e1b8353ee4cdc7ac6f849dd11abc850cb4f5f131bf96f34de3962700b1b2b7f701ef8692d4fff9f9f44e64efb211b8cde14cdc3c7820a1bdb2ea48a9c8e764cff444e9cac1ebf1b3db1b3e54a32d90642d0981bccea55f13fa86a9a1b9cc85b6291711e25418946f1b036eff16541b648178bbbccef41b6a3ffbf4b3ef02deb1a403b75bf5de241b145569c4cad7a1b98afd8a6eae138584bb006427a1eae28abc134974892d47ff242124878ffa0ffa04a93adc0f9395747946896ff", + "cborBytes": [ + 159, 191, 27, 53, 87, 180, 207, 78, 29, 211, 8, 70, 241, 110, 143, 189, 197, 105, 27, 85, 83, 62, 156, 173, 134, + 41, 239, 65, 199, 27, 128, 1, 191, 183, 221, 195, 36, 157, 72, 129, 29, 229, 98, 88, 35, 40, 142, 27, 131, 83, + 238, 76, 220, 122, 198, 248, 73, 221, 17, 171, 200, 80, 203, 79, 95, 19, 27, 249, 111, 52, 222, 57, 98, 112, 11, + 27, 43, 127, 112, 30, 248, 105, 45, 79, 255, 159, 159, 68, 230, 78, 251, 33, 27, 140, 222, 20, 205, 195, 199, 130, + 10, 27, 219, 46, 164, 138, 156, 142, 118, 76, 255, 68, 78, 156, 172, 30, 191, 27, 61, 177, 179, 229, 74, 50, 217, + 6, 66, 208, 152, 27, 204, 234, 85, 241, 63, 168, 106, 154, 27, 156, 200, 91, 98, 145, 113, 30, 37, 65, 137, 70, + 241, 176, 54, 239, 241, 101, 65, 182, 72, 23, 139, 187, 204, 239, 65, 182, 163, 255, 191, 75, 62, 240, 45, 235, + 26, 64, 59, 117, 191, 93, 226, 65, 177, 69, 86, 156, 76, 173, 122, 27, 152, 175, 216, 166, 234, 225, 56, 88, 75, + 176, 6, 66, 122, 30, 174, 40, 171, 193, 52, 151, 72, 146, 212, 127, 242, 66, 18, 72, 120, 255, 160, 255, 160, 74, + 147, 173, 192, 249, 57, 87, 71, 148, 104, 150, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 21, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + "cborHex": "9f0a0cff", + "cborBytes": [159, 10, 12, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 22, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "28" + }, + { + "_tag": "ByteArray", + "bytearray": "a00005fef86a02" + }, + { + "_tag": "ByteArray", + "bytearray": "f9500002" + } + ] + }, + "cborHex": "9f412847a00005fef86a0244f9500002ff", + "cborBytes": [159, 65, 40, 71, 160, 0, 5, 254, 248, 106, 2, 68, 249, 80, 0, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 23, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d3ed5ff6aa5bd079900fc5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb1c07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01" + } + } + ] + } + ] + }, + "cborHex": "9f4bd3ed5ff6aa5bd079900fc5bf43fb1c071bffffffffffffffed41fd4101ffff", + "cborBytes": [ + 159, 75, 211, 237, 95, 246, 170, 91, 208, 121, 144, 15, 197, 191, 67, 251, 28, 7, 27, 255, 255, 255, 255, 255, + 255, 255, 237, 65, 253, 65, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 24, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "099b2a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9bf2aecfed0f671de4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25d2eaf3b4b5fc09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14373716824408416823" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b03125ea7df2fedcc128" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5dc13122df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "363df0ec581e0d234f72ad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b03804305cc8687f7fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e476b2e1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ea613a53a0b98" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17132523633758608634" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16690311674138565316" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6348959361821572122" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15902222684715303620" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17847595066000640788" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "44a6ab27fc4b56e08d6b74" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4482007771226865352" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0eb9fa3d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11504403259224558208" + } + }, + { + "_tag": "ByteArray", + "bytearray": "907849e77b" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15867691195940193847" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dcc8e5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4020087302718362713" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1618543482616369666" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2930072262106919864" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6021852426158404767" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11641559523742506800" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "708171af0a620c11ffbfbf80" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13831668039282849609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5061e96415" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18220959279232038310" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e352" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "14488a00e0e421" + } + ] + }, + "cborHex": "9fbf43099b2a499bf2aecfed0f671de44825d2eaf3b4b5fc091bc779b34beceb623741574ab03125ea7df2fedcc128455dc13122df4b363df0ec581e0d234f72ad4a8b03804305cc8687f7fb44e476b2e1479ea613a53a0b981bedc2f379102a9cfaff9f9f1be79fe609df959ac41b581c08e6bec3fc1affd8669f1bdcb00b47359d42c49f1bf7af6526e3fb8b14ffff4b44a6ab27fc4b56e08d6b749f1b3e334a523c847ec8440eb9fa3d1b9fa7d9cfb2ed0a8045907849e77bffffd8669f1bdc355d12739bc6379f43dcc8e5d8669f1b37ca381a3c96145980ff1b167638b8d6df5202bf1b28a9b532bd1bb3b81b5391eae05efef49f1ba18f20b50c3cdf304c708171af0a620c11ffbfbf801bbff3f4cc6493f749455061e964151bfcddd9ecf97bb5a642e352ffa0ffff4714488a00e0e421ff", + "cborBytes": [ + 159, 191, 67, 9, 155, 42, 73, 155, 242, 174, 207, 237, 15, 103, 29, 228, 72, 37, 210, 234, 243, 180, 181, 252, 9, + 27, 199, 121, 179, 75, 236, 235, 98, 55, 65, 87, 74, 176, 49, 37, 234, 125, 242, 254, 220, 193, 40, 69, 93, 193, + 49, 34, 223, 75, 54, 61, 240, 236, 88, 30, 13, 35, 79, 114, 173, 74, 139, 3, 128, 67, 5, 204, 134, 135, 247, 251, + 68, 228, 118, 178, 225, 71, 158, 166, 19, 165, 58, 11, 152, 27, 237, 194, 243, 121, 16, 42, 156, 250, 255, 159, + 159, 27, 231, 159, 230, 9, 223, 149, 154, 196, 27, 88, 28, 8, 230, 190, 195, 252, 26, 255, 216, 102, 159, 27, 220, + 176, 11, 71, 53, 157, 66, 196, 159, 27, 247, 175, 101, 38, 227, 251, 139, 20, 255, 255, 75, 68, 166, 171, 39, 252, + 75, 86, 224, 141, 107, 116, 159, 27, 62, 51, 74, 82, 60, 132, 126, 200, 68, 14, 185, 250, 61, 27, 159, 167, 217, + 207, 178, 237, 10, 128, 69, 144, 120, 73, 231, 123, 255, 255, 216, 102, 159, 27, 220, 53, 93, 18, 115, 155, 198, + 55, 159, 67, 220, 200, 229, 216, 102, 159, 27, 55, 202, 56, 26, 60, 150, 20, 89, 128, 255, 27, 22, 118, 56, 184, + 214, 223, 82, 2, 191, 27, 40, 169, 181, 50, 189, 27, 179, 184, 27, 83, 145, 234, 224, 94, 254, 244, 159, 27, 161, + 143, 32, 181, 12, 60, 223, 48, 76, 112, 129, 113, 175, 10, 98, 12, 17, 255, 191, 191, 128, 27, 191, 243, 244, 204, + 100, 147, 247, 73, 69, 80, 97, 233, 100, 21, 27, 252, 221, 217, 236, 249, 123, 181, 166, 66, 227, 82, 255, 160, + 255, 255, 71, 20, 72, 138, 0, 224, 228, 33, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 25, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03e527" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea9b47" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04fb03fd" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "100351253143796002" + }, + "fields": [] + } + ] + }, + "cborHex": "9f80bf4303e5271bfffffffffffffff043ea9b470f41fe4404fb03fdffd8669f1b016484eedc66b92280ffff", + "cborBytes": [ + 159, 128, 191, 67, 3, 229, 39, 27, 255, 255, 255, 255, 255, 255, 255, 240, 67, 234, 155, 71, 15, 65, 254, 68, 4, + 251, 3, 253, 255, 216, 102, 159, 27, 1, 100, 132, 238, 220, 102, 185, 34, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 26, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "024442d9183632a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e58fcb84f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6419bf04e46af2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9035e51c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c6d453425dcb7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17716115029161069142" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7725b655a2b2a570bbb9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a7d4127de7cfbe20eb29d75" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f303" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "910c7f3c1d116854" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9862846024916968591" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8273020305903837243" + } + } + ] + }, + "cborHex": "9fbf48024442d9183632a945e58fcb84f9476419bf04e46af245e9035e51c9476c6d453425dcb71bf5dc48c1491aca564a7725b655a2b2a570bbb94c2a7d4127de7cfbe20eb29d754285b742f30348910c7f3c1d1168541b88dfde343d8ca48fff1b72cfac22c8fde03bff", + "cborBytes": [ + 159, 191, 72, 2, 68, 66, 217, 24, 54, 50, 169, 69, 229, 143, 203, 132, 249, 71, 100, 25, 191, 4, 228, 106, 242, + 69, 233, 3, 94, 81, 201, 71, 108, 109, 69, 52, 37, 220, 183, 27, 245, 220, 72, 193, 73, 26, 202, 86, 74, 119, 37, + 182, 85, 162, 178, 165, 112, 187, 185, 76, 42, 125, 65, 39, 222, 124, 251, 226, 14, 178, 157, 117, 66, 133, 183, + 66, 243, 3, 72, 145, 12, 127, 60, 29, 17, 104, 84, 27, 136, 223, 222, 52, 61, 140, 164, 143, 255, 27, 114, 207, + 172, 34, 200, 253, 224, 59, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 27, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15459800069283690820" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "340580141272880152" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1172176250517163558" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2e29b878af2d36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14233509177317514899" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b2f6db6ea4" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7964298034929845788" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11004845084637712677" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17078337501180412356" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a8c07beb85c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5aea32ccbec680170d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb0646" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebdf825b98" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bd68c3e40e436b9449f1b04b9fbd5821f5418d8669f1b10446816e2398e269f472e29b878af2d361bc587952f3545de93ffffffff45b2f6db6ea480bf1b6e86deddb955c61c1b98b9104c5e08d1251bed027178f01741c4469a8c07beb85c495aea32ccbec680170d43bb064645ebdf825b9841d4ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 214, 140, 62, 64, 228, 54, 185, 68, 159, 27, 4, 185, 251, 213, 130, 31, 84, 24, 216, 102, + 159, 27, 16, 68, 104, 22, 226, 57, 142, 38, 159, 71, 46, 41, 184, 120, 175, 45, 54, 27, 197, 135, 149, 47, 53, 69, + 222, 147, 255, 255, 255, 255, 69, 178, 246, 219, 110, 164, 128, 191, 27, 110, 134, 222, 221, 185, 85, 198, 28, 27, + 152, 185, 16, 76, 94, 8, 209, 37, 27, 237, 2, 113, 120, 240, 23, 65, 196, 70, 154, 140, 7, 190, 184, 92, 73, 90, + 234, 50, 204, 190, 198, 128, 23, 13, 67, 187, 6, 70, 69, 235, 223, 130, 91, 152, 65, 212, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 28, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4b987e58" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "040292" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17355070809106902422" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1201882727002475508" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "06e8" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "383c7ef6ab363902d8f4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c735109cc" + } + } + ] + } + ] + }, + "cborHex": "9f444b987e58d8669f1bfffffffffffffff29f430402921bf0d998f324916d96d8669f1b10adf1f8eca90bf49f09ffff05ffff4206e880bf134a383c7ef6ab363902d8f41bfffffffffffffff8457c735109ccffff", + "cborBytes": [ + 159, 68, 75, 152, 126, 88, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 67, 4, 2, 146, 27, 240, + 217, 152, 243, 36, 145, 109, 150, 216, 102, 159, 27, 16, 173, 241, 248, 236, 169, 11, 244, 159, 9, 255, 255, 5, + 255, 255, 66, 6, 232, 128, 191, 19, 74, 56, 60, 126, 246, 171, 54, 57, 2, 216, 244, 27, 255, 255, 255, 255, 255, + 255, 255, 248, 69, 124, 115, 81, 9, 204, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 29, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f413d1b03c" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "77f3f91f3b2c6df3" + }, + { + "_tag": "ByteArray", + "bytearray": "e518c16245" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17476752172613515701" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cfe05fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0244f08b33" + } + } + ] + } + ] + }, + "cborHex": "9f9f45f413d1b03ca04877f3f91f3b2c6df345e518c162451bf289e581542a39b5ffbf443cfe05fe450244f08b33ffff", + "cborBytes": [ + 159, 159, 69, 244, 19, 209, 176, 60, 160, 72, 119, 243, 249, 31, 59, 44, 109, 243, 69, 229, 24, 193, 98, 69, 27, + 242, 137, 229, 129, 84, 42, 57, 181, 255, 191, 68, 60, 254, 5, 254, 69, 2, 68, 240, 139, 51, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 30, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0be2c3739756" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6407762357187364390" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f1f1c8804222e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "344ca4e7427f35c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "597bb49f21b253bc18b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f2664a4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d55f74" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4706393031824567109" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d79d7a40a46db293a33d7746" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7776367166772635149" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12538801608894065255" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7767491321197280389" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11248380251533496892" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5719576282470548606" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e642bc8af" + }, + { + "_tag": "ByteArray", + "bytearray": "531d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15736511403239341616" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8c1b814e981255" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16755337383851483157" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16833593794664563401" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2665100173055489739" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5165019762394780075" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0137451461df8c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3307856594813225643" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf460be2c37397561b58ecf1ea0145c626472f1f1c8804222e48344ca4e7427f35c54a597bb49f21b253bc18b7446f2664a443d55f741b41507786e346eb454cd79d7a40a46db293a33d77461b6beb34bcba7e660d41ee1bae02c5a13f3a2a67ff9fd8669f1b6bcbac33e3e4bc859f1b9c1a463e072c523c1b4f6004534668047e458e642bc8af42531d1bda6351bee1f6fe30ffff478c1b814e981255ff1be886ea93b84a6015d905099f1be99cf05e383382c99f1b24fc567cb1cdf6cb1b47add61bc369d1ab470137451461df8c1b2de7de0c15c68aabffff80ff", + "cborBytes": [ + 159, 191, 70, 11, 226, 195, 115, 151, 86, 27, 88, 236, 241, 234, 1, 69, 198, 38, 71, 47, 31, 28, 136, 4, 34, 46, + 72, 52, 76, 164, 231, 66, 127, 53, 197, 74, 89, 123, 180, 159, 33, 178, 83, 188, 24, 183, 68, 111, 38, 100, 164, + 67, 213, 95, 116, 27, 65, 80, 119, 134, 227, 70, 235, 69, 76, 215, 157, 122, 64, 164, 109, 178, 147, 163, 61, 119, + 70, 27, 107, 235, 52, 188, 186, 126, 102, 13, 65, 238, 27, 174, 2, 197, 161, 63, 58, 42, 103, 255, 159, 216, 102, + 159, 27, 107, 203, 172, 51, 227, 228, 188, 133, 159, 27, 156, 26, 70, 62, 7, 44, 82, 60, 27, 79, 96, 4, 83, 70, + 104, 4, 126, 69, 142, 100, 43, 200, 175, 66, 83, 29, 27, 218, 99, 81, 190, 225, 246, 254, 48, 255, 255, 71, 140, + 27, 129, 78, 152, 18, 85, 255, 27, 232, 134, 234, 147, 184, 74, 96, 21, 217, 5, 9, 159, 27, 233, 156, 240, 94, 56, + 51, 130, 201, 159, 27, 36, 252, 86, 124, 177, 205, 246, 203, 27, 71, 173, 214, 27, 195, 105, 209, 171, 71, 1, 55, + 69, 20, 97, 223, 140, 27, 45, 231, 222, 12, 21, 198, 138, 171, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 31, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8980212751451888106" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1624578050148749406" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f76d5b75b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17197047379440726902" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6474083300643848052" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9122492374831926127" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3546845724180781055" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9807f9f857197eb8b75b0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5644492563348727009" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cfa099ec5b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16117191294356091191" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11348631690811764322" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "257f65498c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18108593035480294039" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e4a2d005a7354c3" + } + ] + }, + "cborHex": "9fd8669f1b7ca01feb11b919ea9fbf1b168ba9211503505e455f76d5b75b1beea82f7a4d2073761b59d89075f52a3f74ff1b7e999a7b5c110b6fbf1b3138ed64e6e897ff4bd9807f9f857197eb8b75b01b4e5544149fbc24e145cfa099ec5b1bdfabc416f51cf1371b9d7e706529936e62ff8045257f65498cffff1bfb4ea56c1dea6297488e4a2d005a7354c3ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 124, 160, 31, 235, 17, 185, 25, 234, 159, 191, 27, 22, 139, 169, 33, 21, 3, 80, 94, 69, + 95, 118, 213, 183, 91, 27, 238, 168, 47, 122, 77, 32, 115, 118, 27, 89, 216, 144, 117, 245, 42, 63, 116, 255, 27, + 126, 153, 154, 123, 92, 17, 11, 111, 191, 27, 49, 56, 237, 100, 230, 232, 151, 255, 75, 217, 128, 127, 159, 133, + 113, 151, 235, 139, 117, 176, 27, 78, 85, 68, 20, 159, 188, 36, 225, 69, 207, 160, 153, 236, 91, 27, 223, 171, + 196, 22, 245, 28, 241, 55, 27, 157, 126, 112, 101, 41, 147, 110, 98, 255, 128, 69, 37, 127, 101, 73, 140, 255, + 255, 27, 251, 78, 165, 108, 29, 234, 98, 151, 72, 142, 74, 45, 0, 90, 115, 84, 195, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 32, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "eaf922f94dde" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4bf0" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12621112922465696173" + } + } + ] + }, + "cborHex": "9fbf46eaf922f94dde424bf0ff1baf2733555da8f9adff", + "cborBytes": [ + 159, 191, 70, 234, 249, 34, 249, 77, 222, 66, 75, 240, 255, 27, 175, 39, 51, 85, 93, 168, 249, 173, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 33, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a4a8c4f47c7b" + } + ] + }, + "cborHex": "9f46a4a8c4f47c7bff", + "cborBytes": [159, 70, 164, 168, 196, 244, 124, 123, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 34, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2328168011127780943" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a4a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11643825327888960943" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14083059469749238391" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4988202680171541266" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "304253989076958048" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6017050452050379858" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7291100520470568553" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d168efa42143d9f48e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "95139d4fe0" + }, + { + "_tag": "ByteArray", + "bytearray": "b0e3ba4ee3bac165e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7224063524690083391" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4541211978638744316" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e441ab32eb14e8a14b80" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a24b9bd3eef5705c62248cc2" + }, + { + "_tag": "ByteArray", + "bytearray": "e07ad641a54ca45984fd9176" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16345169967970003842" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5845771082469680929" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d1ab8613e41d01fbcf98" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8630618527652565718" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3041787163988919334" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15179451070445025791" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17809027819743127342" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17539208697174740216" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8961684981438979433" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2530330318473011616" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f1b204f507890b2f64f42a4a71ba1972d71af848dafff41b0d8669f1bc37113f8f51aba7780ffffd8669f1b4539a7e8b346b3129fd8669f1b0438ed641c6d7b609f1b5380db81a6110452ffffd8669f1b652f314b20505e699f49d168efa42143d9f48effff9f4595139d4fe049b0e3ba4ee3bac165e51b6441078040023e3f1b3f05a03bf482dafc4ae441ab32eb14e8a14b80ff4ca24b9bd3eef5705c62248cc24ce07ad641a54ca45984fd9176ffffd8669f1bfffffffffffffffa9f1be2d5b57c463c2b821b512059d3c8db27214ad1ab8613e41d01fbcf98d8669f1b77c61dd2eca2d2d69f1b2a36994f3fe70426ffffffff1bd2a83e530b4c79ffd8669f1bffffffffffffffee9f1bf72660721ed6a72e1bf367c962248accf89f1b7c5e4d02739f9d69ff1b231d8a04b4fc21a0ffffff", + "cborBytes": [ + 159, 159, 159, 27, 32, 79, 80, 120, 144, 178, 246, 79, 66, 164, 167, 27, 161, 151, 45, 113, 175, 132, 141, 175, + 255, 65, 176, 216, 102, 159, 27, 195, 113, 19, 248, 245, 26, 186, 119, 128, 255, 255, 216, 102, 159, 27, 69, 57, + 167, 232, 179, 70, 179, 18, 159, 216, 102, 159, 27, 4, 56, 237, 100, 28, 109, 123, 96, 159, 27, 83, 128, 219, 129, + 166, 17, 4, 82, 255, 255, 216, 102, 159, 27, 101, 47, 49, 75, 32, 80, 94, 105, 159, 73, 209, 104, 239, 164, 33, + 67, 217, 244, 142, 255, 255, 159, 69, 149, 19, 157, 79, 224, 73, 176, 227, 186, 78, 227, 186, 193, 101, 229, 27, + 100, 65, 7, 128, 64, 2, 62, 63, 27, 63, 5, 160, 59, 244, 130, 218, 252, 74, 228, 65, 171, 50, 235, 20, 232, 161, + 75, 128, 255, 76, 162, 75, 155, 211, 238, 245, 112, 92, 98, 36, 140, 194, 76, 224, 122, 214, 65, 165, 76, 164, 89, + 132, 253, 145, 118, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 27, 226, 213, 181, + 124, 70, 60, 43, 130, 27, 81, 32, 89, 211, 200, 219, 39, 33, 74, 209, 171, 134, 19, 228, 29, 1, 251, 207, 152, + 216, 102, 159, 27, 119, 198, 29, 210, 236, 162, 210, 214, 159, 27, 42, 54, 153, 79, 63, 231, 4, 38, 255, 255, 255, + 255, 27, 210, 168, 62, 83, 11, 76, 121, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 27, + 247, 38, 96, 114, 30, 214, 167, 46, 27, 243, 103, 201, 98, 36, 138, 204, 248, 159, 27, 124, 94, 77, 2, 115, 159, + 157, 105, 255, 27, 35, 29, 138, 4, 180, 252, 33, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 35, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + "cborHex": "9f1004ff", + "cborBytes": [159, 16, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 36, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10450349961988031049" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2491062781019047695" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4567572612685889249" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b910719ec0ed042499f1b22920866afd6470f1b3f63471758f1fee1ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 145, 7, 25, 236, 14, 208, 66, 73, 159, 27, 34, 146, 8, 102, 175, 214, 71, 15, 27, 63, 99, + 71, 23, 88, 241, 254, 225, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 37, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5b25ad6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da97de70" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + }, + "cborHex": "9fbf418b44d5b25ad644da97de700bff13ff", + "cborBytes": [159, 191, 65, 139, 68, 213, 178, 90, 214, 68, 218, 151, 222, 112, 11, 255, 19, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 38, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4311798385831264814" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "883fe8fccfde893e7a506327" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11174480364412521279" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11695594060872984504" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70dd778eb0" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bd267888b3310b5df4d3200b" + }, + { + "_tag": "ByteArray", + "bytearray": "d3ce2c6b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "334379940024517431" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7789e011f62c13" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14065621403857941693" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "277436374807342058" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13572750256060138479" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12613719343043336331" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16045851438355394812" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0b18dca78167f330" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5967175024839503489" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a09f4be5d8af778619" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17029353442215283465" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "58f8a1e9" + }, + { + "_tag": "ByteArray", + "bytearray": "c54e5c6989cfe544be0ba18f" + }, + { + "_tag": "ByteArray", + "bytearray": "139eb389bd95775c69" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1477451195902485780" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b3bd695c97a93422e4c883fe8fccfde893e7a5063271b9b13baafbe62cb3f41711ba24f18d51b80a7b84570dd778eb0ffd905059f4cbd267888b3310b5df4d3200b44d3ce2c6b9f1b04a3f4c8a92d8337477789e011f62c131bc3332024da1574bd1b03d9a6e9b829ebea1bbc5c1872458e83efff1baf0ceee98292588bd8669f1bdeae50de5ddd30fc9f480b18dca78167f3301b52cfaa11d4242e81ffffff079fd8669f1bffffffffffffffed80ff49a09f4be5d8af778619ffd905089fd8669f1bec546abaf5d14b0980ff4458f8a1e94cc54e5c6989cfe544be0ba18f49139eb389bd95775c691b1480f608e8be6514ffff", + "cborBytes": [ + 159, 191, 27, 59, 214, 149, 201, 122, 147, 66, 46, 76, 136, 63, 232, 252, 207, 222, 137, 62, 122, 80, 99, 39, 27, + 155, 19, 186, 175, 190, 98, 203, 63, 65, 113, 27, 162, 79, 24, 213, 27, 128, 167, 184, 69, 112, 221, 119, 142, + 176, 255, 217, 5, 5, 159, 76, 189, 38, 120, 136, 179, 49, 11, 93, 244, 211, 32, 11, 68, 211, 206, 44, 107, 159, + 27, 4, 163, 244, 200, 169, 45, 131, 55, 71, 119, 137, 224, 17, 246, 44, 19, 27, 195, 51, 32, 36, 218, 21, 116, + 189, 27, 3, 217, 166, 233, 184, 41, 235, 234, 27, 188, 92, 24, 114, 69, 142, 131, 239, 255, 27, 175, 12, 238, 233, + 130, 146, 88, 139, 216, 102, 159, 27, 222, 174, 80, 222, 93, 221, 48, 252, 159, 72, 11, 24, 220, 167, 129, 103, + 243, 48, 27, 82, 207, 170, 17, 212, 36, 46, 129, 255, 255, 255, 7, 159, 216, 102, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 237, 128, 255, 73, 160, 159, 75, 229, 216, 175, 119, 134, 25, 255, 217, 5, 8, 159, 216, 102, 159, + 27, 236, 84, 106, 186, 245, 209, 75, 9, 128, 255, 68, 88, 248, 161, 233, 76, 197, 78, 92, 105, 137, 207, 229, 68, + 190, 11, 161, 143, 73, 19, 158, 179, 137, 189, 149, 119, 92, 105, 27, 20, 128, 246, 8, 232, 190, 101, 20, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 39, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c982f3cdd3f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4444876aaa" + } + } + ] + } + ] + }, + "cborHex": "9fbf464c982f3cdd3f454444876aaaffff", + "cborBytes": [159, 191, 70, 76, 152, 47, 60, 221, 63, 69, 68, 68, 135, 106, 170, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 40, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e295d7123064362d7e62" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10782407953108561750" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f60a8a754831329d0842" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0b5cf7c75a92" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1363739381867926523" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c09b4905ebcd32b125a22b27" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6964378459101437043" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c97b3bb9b89651d8aaf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17118406062806797453" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd47ce1fea1f4b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f17" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2e07c680faeabec1" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fb3de53e270182" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "12e600fdd4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1539835740400019325" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3041030123698429609" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cf60dabb83be26" + }, + { + "_tag": "ByteArray", + "bytearray": "752b85871c46c0e036" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8329576778799044886" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2922544606218099243" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8475606662737361773" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0bf27915e206079a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11045466139766921129" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f67f79c8f16c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14411530848462090371" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3331781050314857355" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18168950118445007256" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7208183005624532075" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9369374049774842770" + } + } + ] + }, + "cborHex": "9f4ae295d7123064362d7e62d8669f1b95a2cee7dc61ef569f9f4af60a8a754831329d0842ff9f460b5cf7c75a921b12ecf9be0e72d3fb4cc09b4905ebcd32b125a22b27ffffffd8669f1b60a6714f481f9c739fbf4a2c97b3bb9b89651d8aaf1bed90cb9dee7e0c8d47cd47ce1fea1f4b425f17ff482e07c680faeabec18047fb3de53e270182ffff9f9f4512e600fdd41b155e98728efe677d1b2a33e8c9124e9ea947cf60dabb83be2649752b85871c46c0e036ff1b739899f2c5a8d9161b288ef6d5c5dd1a2ba0bf1b759f675aa464fb6d480bf27915e206079a1b994960eec76997a946f67f79c8f16c1bc8000af37c2ab0831b2e3cdd3675651b8b1bfc2513de97b4c1981b64089c40c641fc6bffff1b8206b40ea497b392ff", + "cborBytes": [ + 159, 74, 226, 149, 215, 18, 48, 100, 54, 45, 126, 98, 216, 102, 159, 27, 149, 162, 206, 231, 220, 97, 239, 86, + 159, 159, 74, 246, 10, 138, 117, 72, 49, 50, 157, 8, 66, 255, 159, 70, 11, 92, 247, 199, 90, 146, 27, 18, 236, + 249, 190, 14, 114, 211, 251, 76, 192, 155, 73, 5, 235, 205, 50, 177, 37, 162, 43, 39, 255, 255, 255, 216, 102, + 159, 27, 96, 166, 113, 79, 72, 31, 156, 115, 159, 191, 74, 44, 151, 179, 187, 155, 137, 101, 29, 138, 175, 27, + 237, 144, 203, 157, 238, 126, 12, 141, 71, 205, 71, 206, 31, 234, 31, 75, 66, 95, 23, 255, 72, 46, 7, 198, 128, + 250, 234, 190, 193, 128, 71, 251, 61, 229, 62, 39, 1, 130, 255, 255, 159, 159, 69, 18, 230, 0, 253, 212, 27, 21, + 94, 152, 114, 142, 254, 103, 125, 27, 42, 51, 232, 201, 18, 78, 158, 169, 71, 207, 96, 218, 187, 131, 190, 38, 73, + 117, 43, 133, 135, 28, 70, 192, 224, 54, 255, 27, 115, 152, 153, 242, 197, 168, 217, 22, 27, 40, 142, 246, 213, + 197, 221, 26, 43, 160, 191, 27, 117, 159, 103, 90, 164, 100, 251, 109, 72, 11, 242, 121, 21, 226, 6, 7, 154, 27, + 153, 73, 96, 238, 199, 105, 151, 169, 70, 246, 127, 121, 200, 241, 108, 27, 200, 0, 10, 243, 124, 42, 176, 131, + 27, 46, 60, 221, 54, 117, 101, 27, 139, 27, 252, 37, 19, 222, 151, 180, 193, 152, 27, 100, 8, 156, 64, 198, 65, + 252, 107, 255, 255, 27, 130, 6, 180, 14, 164, 151, 179, 146, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 41, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "acb830862d908cd97f" + } + ] + }, + "cborHex": "9f49acb830862d908cd97fff", + "cborBytes": [159, 73, 172, 184, 48, 134, 45, 144, 140, 217, 127, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 42, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7fc28211b8b6a2ce849b" + } + ] + }, + "cborHex": "9f4a7fc28211b8b6a2ce849bff", + "cborBytes": [159, 74, 127, 194, 130, 17, 184, 182, 162, 206, 132, 155, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 43, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "439ec1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04b321" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5cc00749e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb2bb7250528" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d97a25763670331eb90e22" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1642922829551910469" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf43439ec14304b321455cc00749e846cb2bb72505284bd97a25763670331eb90e221b16ccd59be0d23e45ffff", + "cborBytes": [ + 159, 191, 67, 67, 158, 193, 67, 4, 179, 33, 69, 92, 192, 7, 73, 232, 70, 203, 43, 183, 37, 5, 40, 75, 217, 122, + 37, 118, 54, 112, 51, 30, 185, 14, 34, 27, 22, 204, 213, 155, 224, 210, 62, 69, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 44, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10196176527431163845" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28bb5228873ed7" + } + ] + }, + "cborHex": "9f1b8d801887b0b5dfc54728bb5228873ed7ff", + "cborBytes": [159, 27, 141, 128, 24, 135, 176, 181, 223, 197, 71, 40, 187, 82, 40, 135, 62, 215, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 45, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f80ff", + "cborBytes": [159, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 46, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17824040028068284742" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2827546910290004672" + } + } + ] + }, + "cborHex": "9f1bf75bb5f83f5a89461b273d76ef1596cac0ff", + "cborBytes": [159, 27, 247, 91, 181, 248, 63, 90, 137, 70, 27, 39, 61, 118, 239, 21, 150, 202, 192, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 47, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15999556494521159924" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "335be063894c5d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad5a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffb7e2ccb93b30" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16557781706956104598" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1bde09d7dccbba50f447335be063894c5d42ad5a41de47ffb7e2ccb93b301be5c90ebc4f946396ffffff", + "cborBytes": [ + 159, 159, 191, 27, 222, 9, 215, 220, 203, 186, 80, 244, 71, 51, 91, 224, 99, 137, 76, 93, 66, 173, 90, 65, 222, + 71, 255, 183, 226, 204, 185, 59, 48, 27, 229, 201, 14, 188, 79, 148, 99, 150, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 48, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fa0ff", + "cborBytes": [159, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 49, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2408178668671258116" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1658337963390061642" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15828564957530018796" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6726208607976042909" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ee9e16ee379e107d6f116" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13575219852707301286" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93888db7eead92353fe19a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14068733452179199015" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14335575013922180159" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9432b31c9bf92c04ad6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17306597702462633684" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14331142146571437215" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5948377602122296777" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13403576409955864054" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22c94dd3ce6dfdc7698cac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b578dff3f20ea910" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51754a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15812138449891439993" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55c961ab7266b440" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1864490b4ab50d2a88e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7721863569922170109" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa0320979d1c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e89c2c13e0e46c" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "026f038902066b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "027c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6480b16915e446fe2873" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12274415918609156152" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd028f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe95" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fa09fd8669f1b216b91bd75d2ce0480ffbf1b170399976968cc4a1bdbaa5bf72dc5d3ec1b5d584b178b96319d4b1ee9e16ee379e107d6f1161bbc64de880c7307a64b93888db7eead92353fe19a1bc33e2e8910cbd42741b51bc6f23185a3cc0c3f4aa9432b31c9bf92c04ad61bf02d62ea85e076d41bc6e271da4805049fffbf1b528ce1e9cc63adc91bba0311bacb398df6ffbf4b22c94dd3ce6dfdc7698cac48b578dff3f20ea9104351754a1bdb700024d51335794855c961ab7266b440418d4ae1864490b4ab50d2a88e1b6b299201313d9cfd46fa0320979d1c47e89c2c13e0e46cffffd9050780d87980d905079fbf0747026f038902066b42027c4a6480b16915e446fe287341dd1baa577c3ece19483843fd028f42fe95ffffff", + "cborBytes": [ + 159, 160, 159, 216, 102, 159, 27, 33, 107, 145, 189, 117, 210, 206, 4, 128, 255, 191, 27, 23, 3, 153, 151, 105, + 104, 204, 74, 27, 219, 170, 91, 247, 45, 197, 211, 236, 27, 93, 88, 75, 23, 139, 150, 49, 157, 75, 30, 233, 225, + 110, 227, 121, 225, 7, 214, 241, 22, 27, 188, 100, 222, 136, 12, 115, 7, 166, 75, 147, 136, 141, 183, 238, 173, + 146, 53, 63, 225, 154, 27, 195, 62, 46, 137, 16, 203, 212, 39, 65, 181, 27, 198, 242, 49, 133, 163, 204, 12, 63, + 74, 169, 67, 43, 49, 201, 191, 146, 192, 74, 214, 27, 240, 45, 98, 234, 133, 224, 118, 212, 27, 198, 226, 113, + 218, 72, 5, 4, 159, 255, 191, 27, 82, 140, 225, 233, 204, 99, 173, 201, 27, 186, 3, 17, 186, 203, 57, 141, 246, + 255, 191, 75, 34, 201, 77, 211, 206, 109, 253, 199, 105, 140, 172, 72, 181, 120, 223, 243, 242, 14, 169, 16, 67, + 81, 117, 74, 27, 219, 112, 0, 36, 213, 19, 53, 121, 72, 85, 201, 97, 171, 114, 102, 180, 64, 65, 141, 74, 225, + 134, 68, 144, 180, 171, 80, 210, 168, 142, 27, 107, 41, 146, 1, 49, 61, 156, 253, 70, 250, 3, 32, 151, 157, 28, + 71, 232, 156, 44, 19, 224, 228, 108, 255, 255, 217, 5, 7, 128, 216, 121, 128, 217, 5, 7, 159, 191, 7, 71, 2, 111, + 3, 137, 2, 6, 107, 66, 2, 124, 74, 100, 128, 177, 105, 21, 228, 70, 254, 40, 115, 65, 221, 27, 170, 87, 124, 62, + 206, 25, 72, 56, 67, 253, 2, 143, 66, 254, 149, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 50, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "724579433864829972" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8613190592782410827" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a257d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15389071891997105682" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14355737515893431515" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5343474035305619911" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e204235ee7cccd695a2f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2527519041939737734" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15507524095894476525" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8008996871747227509" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6863835009863513007" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11796551479654313048" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12122834843942873204" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11896071033643275363" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f04c4b161005a97f739b59" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14361528654951956850" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfb323b4ad5c85f61f" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12813866210526900198" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2975405889515932112" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3794324197854735434" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "51c5812960fa56d14e67" + }, + { + "_tag": "ByteArray", + "bytearray": "2d" + }, + { + "_tag": "ByteArray", + "bytearray": "608e63dd213ebe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9429843697851767983" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bfffffffffffffff61b0a0e3927f7111c14d8669f1b77883335a188244b9f9f43a257d01bd590f759d96f9e121bc739d335f3939cdb1b4a27d552fcea21c74ae204235ee7cccd695a2fffbf1b23138d2d61da8c861bd735cb00b999d6ed1b6f25ac38abb54f751b5f413d9347cdf3af1ba3b5c511e7676c581ba83cf60f9ff168741ba5175593b71f14634bf04c4b161005a97f739b591bc74e66389601417249dfb323b4ad5c85f61fff1bb1d3ff6d7dd62fe61b294ac3e46333c9d0d8669f1b34a825c137ccec4a9f4a51c5812960fa56d14e67412d47608e63dd213ebe1b82dd88e1b9e91cafffffffffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 27, 10, 14, 57, 39, 247, 17, 28, 20, 216, 102, 159, 27, 119, 136, + 51, 53, 161, 136, 36, 75, 159, 159, 67, 162, 87, 208, 27, 213, 144, 247, 89, 217, 111, 158, 18, 27, 199, 57, 211, + 53, 243, 147, 156, 219, 27, 74, 39, 213, 82, 252, 234, 33, 199, 74, 226, 4, 35, 94, 231, 204, 205, 105, 90, 47, + 255, 191, 27, 35, 19, 141, 45, 97, 218, 140, 134, 27, 215, 53, 203, 0, 185, 153, 214, 237, 27, 111, 37, 172, 56, + 171, 181, 79, 117, 27, 95, 65, 61, 147, 71, 205, 243, 175, 27, 163, 181, 197, 17, 231, 103, 108, 88, 27, 168, 60, + 246, 15, 159, 241, 104, 116, 27, 165, 23, 85, 147, 183, 31, 20, 99, 75, 240, 76, 75, 22, 16, 5, 169, 127, 115, + 155, 89, 27, 199, 78, 102, 56, 150, 1, 65, 114, 73, 223, 179, 35, 180, 173, 92, 133, 246, 31, 255, 27, 177, 211, + 255, 109, 125, 214, 47, 230, 27, 41, 74, 195, 228, 99, 51, 201, 208, 216, 102, 159, 27, 52, 168, 37, 193, 55, 204, + 236, 74, 159, 74, 81, 197, 129, 41, 96, 250, 86, 209, 78, 103, 65, 45, 71, 96, 142, 99, 221, 33, 62, 190, 27, 130, + 221, 136, 225, 185, 233, 28, 175, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 51, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1919290315980609152" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1624942228355408447" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17408919931359402666" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6437216939279839755" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10448864561027439147" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c7ef9de2366ecfb7ecddb3f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17554239563480618483" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "412dfcf773e5d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d13a9d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46d92b1a33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "264d38e73bf550b8afe5b4d2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "542f3be2e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17571455961881609158" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "674704b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6793908502212181856" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3fa61249d030f6f16e8b4ee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ee41d39e4bea6260045" + } + } + ] + } + ] + }, + "cborHex": "9fa09f1b1aa2b05fa0df1680ffbf1b168cf458eda7e23f1bf198e870efe51aaa1b595596b34fe6f20b41a81b9101d2f532355a2b4c0c7ef9de2366ecfb7ecddb3f1bf39d2fe06b5ed5f341c4ffbf47412dfcf773e5d243d13a9d4546d92b1a334c264d38e73bf550b8afe5b4d245542f3be2e11bf3da5a198a5f83c644674704b91b5e48cfc97edcff604cb3fa61249d030f6f16e8b4ee4a0ee41d39e4bea6260045ffff", + "cborBytes": [ + 159, 160, 159, 27, 26, 162, 176, 95, 160, 223, 22, 128, 255, 191, 27, 22, 140, 244, 88, 237, 167, 226, 63, 27, + 241, 152, 232, 112, 239, 229, 26, 170, 27, 89, 85, 150, 179, 79, 230, 242, 11, 65, 168, 27, 145, 1, 210, 245, 50, + 53, 90, 43, 76, 12, 126, 249, 222, 35, 102, 236, 251, 126, 205, 219, 63, 27, 243, 157, 47, 224, 107, 94, 213, 243, + 65, 196, 255, 191, 71, 65, 45, 252, 247, 115, 229, 210, 67, 209, 58, 157, 69, 70, 217, 43, 26, 51, 76, 38, 77, 56, + 231, 59, 245, 80, 184, 175, 229, 180, 210, 69, 84, 47, 59, 226, 225, 27, 243, 218, 90, 25, 138, 95, 131, 198, 68, + 103, 71, 4, 185, 27, 94, 72, 207, 201, 126, 220, 255, 96, 76, 179, 250, 97, 36, 157, 3, 15, 111, 22, 232, 180, + 238, 74, 14, 228, 29, 57, 228, 190, 166, 38, 0, 69, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 52, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "54c70ac107b99caa" + } + ] + }, + "cborHex": "9f4854c70ac107b99caaff", + "cborBytes": [159, 72, 84, 199, 10, 193, 7, 185, 156, 170, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 53, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9c951b17ee" + }, + { + "_tag": "ByteArray", + "bytearray": "fa07fef88129" + } + ] + }, + "cborHex": "9f459c951b17ee46fa07fef88129ff", + "cborBytes": [159, 69, 156, 149, 27, 23, 238, 70, 250, 7, 254, 248, 129, 41, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 54, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "536459891022625942" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a91b10beae86283d40d4859" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6224659599223104829" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6432600118001544193" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13989616766889495567" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14731161788378493194" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14365204455851083593" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6a98853ee" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10625534920160206608" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10373123623460183110" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "2fd850" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2242976970971174130" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18229444502250766052" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6496207348690761064" + } + }, + { + "_tag": "ByteArray", + "bytearray": "675320" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3687964293583314737" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5119119293360594056" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7669778233915654600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16759733810467068151" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3639559890472687755" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7efbc771" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "88c4a143" + } + ] + }, + "cborHex": "9fbf1b0771e36db8a5fc964c1a91b10beae86283d40d48591b56626eed036b253d1b59452fb9d79e2c011bc2251a544e4c0c0f1bcc6f9998f51bb10a1bc75b7557acdcc74945f6a98853eeffa0d8669f1b93757bb6a0a85f109fd8669f1b8ff4bcf9f38e9c4680ff432fd850d8669f1b1f20a7abda1e54f29f1bfcfbff30e95abee41b5a272a2a4dfeb568436753201b332e47fc3f5b9f31ffffd8669f1b470ac3e0039b5c8880ffd8669f1b6a7086aae290c1c89f1be896891a8efe58f71b3282506fea62588b447efbc771ffffffff4488c4a143ff", + "cborBytes": [ + 159, 191, 27, 7, 113, 227, 109, 184, 165, 252, 150, 76, 26, 145, 177, 11, 234, 232, 98, 131, 212, 13, 72, 89, 27, + 86, 98, 110, 237, 3, 107, 37, 61, 27, 89, 69, 47, 185, 215, 158, 44, 1, 27, 194, 37, 26, 84, 78, 76, 12, 15, 27, + 204, 111, 153, 152, 245, 27, 177, 10, 27, 199, 91, 117, 87, 172, 220, 199, 73, 69, 246, 169, 136, 83, 238, 255, + 160, 216, 102, 159, 27, 147, 117, 123, 182, 160, 168, 95, 16, 159, 216, 102, 159, 27, 143, 244, 188, 249, 243, + 142, 156, 70, 128, 255, 67, 47, 216, 80, 216, 102, 159, 27, 31, 32, 167, 171, 218, 30, 84, 242, 159, 27, 252, 251, + 255, 48, 233, 90, 190, 228, 27, 90, 39, 42, 42, 77, 254, 181, 104, 67, 103, 83, 32, 27, 51, 46, 71, 252, 63, 91, + 159, 49, 255, 255, 216, 102, 159, 27, 71, 10, 195, 224, 3, 155, 92, 136, 128, 255, 216, 102, 159, 27, 106, 112, + 134, 170, 226, 144, 193, 200, 159, 27, 232, 150, 137, 26, 142, 254, 88, 247, 27, 50, 130, 80, 111, 234, 98, 88, + 139, 68, 126, 251, 199, 113, 255, 255, 255, 255, 68, 136, 196, 161, 67, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 55, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1347606249083131945" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91dacaa358" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4070359129372874421" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6044b11b73632e1d41" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4097355522220991464" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d0d01a5c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8929423070888697149" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64e25231" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17204983848410131636" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13896997594984338358" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18193661032805425369" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ae8ed281b5e34" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5c" + }, + { + "_tag": "ByteArray", + "bytearray": "161b049d0102f8dc000107" + } + ] + }, + "cborHex": "9f80bf1b12b3a8be5db258294591dacaa3581b387cd20ffe89d6b5496044b11b73632e1d411b38dcbb238477a3e8451d0d01a5c11b7bebaef90d7f9d3d4464e252311beec461a77ad1acb41bc0dc0daee57fd3b61bfc7cde50b03be0d9470ae8ed281b5e34ff415c4b161b049d0102f8dc000107ff", + "cborBytes": [ + 159, 128, 191, 27, 18, 179, 168, 190, 93, 178, 88, 41, 69, 145, 218, 202, 163, 88, 27, 56, 124, 210, 15, 254, 137, + 214, 181, 73, 96, 68, 177, 27, 115, 99, 46, 29, 65, 27, 56, 220, 187, 35, 132, 119, 163, 232, 69, 29, 13, 1, 165, + 193, 27, 123, 235, 174, 249, 13, 127, 157, 61, 68, 100, 226, 82, 49, 27, 238, 196, 97, 167, 122, 209, 172, 180, + 27, 192, 220, 13, 174, 229, 127, 211, 182, 27, 252, 124, 222, 80, 176, 59, 224, 217, 71, 10, 232, 237, 40, 27, 94, + 52, 255, 65, 92, 75, 22, 27, 4, 157, 1, 2, 248, 220, 0, 1, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 56, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9dd4dc3c49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10277216099107453271" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01943c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b54b366276e34ebbe035b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02d0fce3e7a8a8e3069d5540" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13068225381986825700" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f677b849d94fb4f6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf2a817897739f53eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d1a04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9af09d7be68d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df79326abb33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76e70910a2" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3418047482841839885" + } + } + ] + }, + "cborHex": "9fbf459dd4dc3c491b8ea001975339b957ffbf4301943c4b5b54b366276e34ebbe035b4c02d0fce3e7a8a8e3069d55401bb55ba9bf1a1175e4490f677b849d94fb4f6d49cf2a817897739f53eb438d1a04469af09d7be68d46df79326abb334576e70910a2ff1b2f6f58137834b90dff", + "cborBytes": [ + 159, 191, 69, 157, 212, 220, 60, 73, 27, 142, 160, 1, 151, 83, 57, 185, 87, 255, 191, 67, 1, 148, 60, 75, 91, 84, + 179, 102, 39, 110, 52, 235, 190, 3, 91, 76, 2, 208, 252, 227, 231, 168, 168, 227, 6, 157, 85, 64, 27, 181, 91, + 169, 191, 26, 17, 117, 228, 73, 15, 103, 123, 132, 157, 148, 251, 79, 109, 73, 207, 42, 129, 120, 151, 115, 159, + 83, 235, 67, 141, 26, 4, 70, 154, 240, 157, 123, 230, 141, 70, 223, 121, 50, 106, 187, 51, 69, 118, 231, 9, 16, + 162, 255, 27, 47, 111, 88, 19, 120, 52, 185, 13, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 57, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "523d65181ff330" + }, + { + "_tag": "ByteArray", + "bytearray": "7b0d25" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5403331004855747806" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "676b564cf1c16f31" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8616906092188059284" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15711313071533362093" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12600019526428281264" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12878531882303345470" + }, + "fields": [] + } + ] + }, + "cborHex": "9f9f47523d65181ff330437b0d25d8669f1b4afc7cebbc4804de9f48676b564cf1c16f31ffffffbf1b7795666fbfc4c6941bda09cbff17b28badff1baedc430063be49b0a0d8669f1bb2b9bc83793bd33e80ffff", + "cborBytes": [ + 159, 159, 71, 82, 61, 101, 24, 31, 243, 48, 67, 123, 13, 37, 216, 102, 159, 27, 74, 252, 124, 235, 188, 72, 4, + 222, 159, 72, 103, 107, 86, 76, 241, 193, 111, 49, 255, 255, 255, 191, 27, 119, 149, 102, 111, 191, 196, 198, 148, + 27, 218, 9, 203, 255, 23, 178, 139, 173, 255, 27, 174, 220, 67, 0, 99, 190, 73, 176, 160, 216, 102, 159, 27, 178, + 185, 188, 131, 121, 59, 211, 62, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 58, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1095576627261168708" + } + }, + { + "_tag": "ByteArray", + "bytearray": "84f4b95e87ad6d36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15259241804571443822" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85b0a369c599fa52550861" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6763501720750271171" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "77ce5f" + }, + { + "_tag": "ByteArray", + "bytearray": "25d0aa4082e9f6d6cb" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8150657100011135098" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8952637093315501370" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f050017b5055029df" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14116005681458496804" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f1b0f3445234c1f5c444884f4b95e87ad6d361bd3c3b7930745826e4b85b0a369c599fa52550861d8669f1bfffffffffffffffe9fd8669f1b5ddcc8faff102ac39f4377ce5f4925d0aa4082e9f6d6cbffff415b9f1b711cf372cc2de07a1b7c3e2800d60e5d3a498f050017b5055029dfff9f1bc3e62060a2bac524ffa0ffffff", + "cborBytes": [ + 159, 27, 15, 52, 69, 35, 76, 31, 92, 68, 72, 132, 244, 185, 94, 135, 173, 109, 54, 27, 211, 195, 183, 147, 7, 69, + 130, 110, 75, 133, 176, 163, 105, 197, 153, 250, 82, 85, 8, 97, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 254, 159, 216, 102, 159, 27, 93, 220, 200, 250, 255, 16, 42, 195, 159, 67, 119, 206, 95, 73, 37, 208, 170, + 64, 130, 233, 246, 214, 203, 255, 255, 65, 91, 159, 27, 113, 28, 243, 114, 204, 45, 224, 122, 27, 124, 62, 40, 0, + 214, 14, 93, 58, 73, 143, 5, 0, 23, 181, 5, 80, 41, 223, 255, 159, 27, 195, 230, 32, 96, 162, 186, 197, 36, 255, + 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 59, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7036318438640107325" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0505" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4972151777080838905" + } + } + ] + }, + "cborHex": "9fd8669f1b61a6065705acbf3d9f420505ffff1bfffffffffffffff3801b4500a1b29a3b0af9ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 97, 166, 6, 87, 5, 172, 191, 61, 159, 66, 5, 5, 255, 255, 27, 255, 255, 255, 255, 255, + 255, 255, 243, 128, 27, 69, 0, 161, 178, 154, 59, 10, 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 60, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "972890a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12950109942156647272" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5248795806516976543" + } + } + ] + }, + "cborHex": "9f44972890a81bb3b8086138805b681b48d777fa0a011b9fff", + "cborBytes": [ + 159, 68, 151, 40, 144, 168, 27, 179, 184, 8, 97, 56, 128, 91, 104, 27, 72, 215, 119, 250, 10, 1, 27, 159, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 61, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14762478411332898669" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17314041680224627535" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8fb3a7243234d21ab9ab4811" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8068157749201177017" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1901948064452196087" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11272115866328804171" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "616257807040209558" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c4ae157f774050" + }, + { + "_tag": "ByteArray", + "bytearray": "e8353b738e857950e9" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10305695424218222534" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3676781653501033108" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8656" + }, + { + "_tag": "ByteArray", + "bytearray": "6a108aa43fc2586d" + }, + { + "_tag": "ByteArray", + "bytearray": "23ba731a3c89" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17404322240415222822" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6fc91bbcf8fa80" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3279387674154493975" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4863300171118566432" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7681518954251197899" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f18e21aca1480d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8781168708007585670" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff39cbf72f542597d8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15778561700472897429" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0fbf9aea937410bd88c8b9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16851973899569590585" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a71cab4e297aa6db" + } + } + ] + } + ] + }, + "cborHex": "9fd905009f1bccdedbe66fdecf6dd8669f1bf047d52ca818ab4f9f4c8fb3a7243234d21ab9ab48111b6ff7dab9d8f389b91b1a6513b00aea36f71b9c6e99a87f92ab4bffffff9f9f1b088d6335deb1629647c4ae157f77405049e8353b738e857950e9ffd8669f1b8f052f62ebe54fc69f1b33068d6ef59a3a94428656486a108aa43fc2586d4623ba731a3c891bf18892dd98614c26ffff476fc91bbcf8fa80ffbf1b2d82b9b6f6c5e8171b437de9bd1f9e5c201b6a9a3cca5b929dcb47f18e21aca1480d1b79dcfa6a5191678649ff39cbf72f542597d81bdaf8b644a7453f954b0fbf9aea937410bd88c8b91be9de3cf9dffff13948a71cab4e297aa6dbffff", + "cborBytes": [ + 159, 217, 5, 0, 159, 27, 204, 222, 219, 230, 111, 222, 207, 109, 216, 102, 159, 27, 240, 71, 213, 44, 168, 24, + 171, 79, 159, 76, 143, 179, 167, 36, 50, 52, 210, 26, 185, 171, 72, 17, 27, 111, 247, 218, 185, 216, 243, 137, + 185, 27, 26, 101, 19, 176, 10, 234, 54, 247, 27, 156, 110, 153, 168, 127, 146, 171, 75, 255, 255, 255, 159, 159, + 27, 8, 141, 99, 53, 222, 177, 98, 150, 71, 196, 174, 21, 127, 119, 64, 80, 73, 232, 53, 59, 115, 142, 133, 121, + 80, 233, 255, 216, 102, 159, 27, 143, 5, 47, 98, 235, 229, 79, 198, 159, 27, 51, 6, 141, 110, 245, 154, 58, 148, + 66, 134, 86, 72, 106, 16, 138, 164, 63, 194, 88, 109, 70, 35, 186, 115, 26, 60, 137, 27, 241, 136, 146, 221, 152, + 97, 76, 38, 255, 255, 71, 111, 201, 27, 188, 248, 250, 128, 255, 191, 27, 45, 130, 185, 182, 246, 197, 232, 23, + 27, 67, 125, 233, 189, 31, 158, 92, 32, 27, 106, 154, 60, 202, 91, 146, 157, 203, 71, 241, 142, 33, 172, 161, 72, + 13, 27, 121, 220, 250, 106, 81, 145, 103, 134, 73, 255, 57, 203, 247, 47, 84, 37, 151, 216, 27, 218, 248, 182, 68, + 167, 69, 63, 149, 75, 15, 191, 154, 234, 147, 116, 16, 189, 136, 200, 185, 27, 233, 222, 60, 249, 223, 255, 241, + 57, 72, 167, 28, 171, 78, 41, 122, 166, 219, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 62, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17351887365774745169" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17657982061037524024" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12900720844734105399" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8774540706431432032" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdb7ff59e37b881cbe56" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14894686465322966176" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1466601627808593021" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b007" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1617372096128502159" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "336be4b6982d10b4b6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4488158636309739554" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11238017189418867434" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adad9e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14088263823389806983" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10613513788655440380" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17132514870247746680" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11283576045100987052" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "de" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3993565680852709424" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5471c3d407a4c79221a6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2026794b98c97860fa3da2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb048d924c07" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bf0ce499ffb979e511bf50dc120e65c9438d8669f1bb3089141e0da87379f1b79c56e48720cf560bf4abdb7ff59e37b881cbe561bceb48e6cbe64dca0ffbf1b145a6a68fc8a747d42b0071b16720f5a2b5e498f49336be4b6982d10b4b61b3e4924801cd7f82241e81b9bf575179b0b9aea43adad9e1bc383914df722d1871b934ac68ed78491fc1bedc2eb80a636ec781b9c9750a14c59f2acff9f41deffbf1b376bfed3f26ab0304a5471c3d407a4c79221a64b2026794b98c97860fa3da246fb048d924c07ffffffff", + "cborBytes": [ + 159, 27, 240, 206, 73, 159, 251, 151, 158, 81, 27, 245, 13, 193, 32, 230, 92, 148, 56, 216, 102, 159, 27, 179, 8, + 145, 65, 224, 218, 135, 55, 159, 27, 121, 197, 110, 72, 114, 12, 245, 96, 191, 74, 189, 183, 255, 89, 227, 123, + 136, 28, 190, 86, 27, 206, 180, 142, 108, 190, 100, 220, 160, 255, 191, 27, 20, 90, 106, 104, 252, 138, 116, 125, + 66, 176, 7, 27, 22, 114, 15, 90, 43, 94, 73, 143, 73, 51, 107, 228, 182, 152, 45, 16, 180, 182, 27, 62, 73, 36, + 128, 28, 215, 248, 34, 65, 232, 27, 155, 245, 117, 23, 155, 11, 154, 234, 67, 173, 173, 158, 27, 195, 131, 145, + 77, 247, 34, 209, 135, 27, 147, 74, 198, 142, 215, 132, 145, 252, 27, 237, 194, 235, 128, 166, 54, 236, 120, 27, + 156, 151, 80, 161, 76, 89, 242, 172, 255, 159, 65, 222, 255, 191, 27, 55, 107, 254, 211, 242, 106, 176, 48, 74, + 84, 113, 195, 212, 7, 164, 199, 146, 33, 166, 75, 32, 38, 121, 75, 152, 201, 120, 96, 250, 61, 162, 70, 251, 4, + 141, 146, 76, 7, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 63, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "62fd4b" + }, + { + "_tag": "ByteArray", + "bytearray": "ea" + } + ] + }, + "cborHex": "9f4362fd4b41eaff", + "cborBytes": [159, 67, 98, 253, 75, 65, 234, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 64, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "297747451d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "759ce451ae6d99b01f3ece" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "909518fcf96d9e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7370837957240697170" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecde1524" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b70a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d4" + } + ] + }, + "cborHex": "9fbf45297747451d4b759ce451ae6d99b01f3ece47909518fcf96d9e1b664a7a11da4c315244ecde1524419fff9f42b70aff41d4ff", + "cborBytes": [ + 159, 191, 69, 41, 119, 71, 69, 29, 75, 117, 156, 228, 81, 174, 109, 153, 176, 31, 62, 206, 71, 144, 149, 24, 252, + 249, 109, 158, 27, 102, 74, 122, 17, 218, 76, 49, 82, 68, 236, 222, 21, 36, 65, 159, 255, 159, 66, 183, 10, 255, + 65, 212, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 65, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9917422125238967153" + } + } + ] + }, + "cborHex": "9f1b89a1c2e0ce77db71ff", + "cborBytes": [159, 27, 137, 161, 194, 224, 206, 119, 219, 113, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 66, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15248798449967106267" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e2728f80d2665087129b" + } + ] + }, + "cborHex": "9f1bd39e9d660dd108db4ae2728f80d2665087129bff", + "cborBytes": [ + 159, 27, 211, 158, 157, 102, 13, 209, 8, 219, 74, 226, 114, 143, 128, 210, 102, 80, 135, 18, 155, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 67, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6092604631480174044" + } + } + ] + }, + "cborHex": "9f1b548d47a1e04685dcff", + "cborBytes": [159, 27, 84, 141, 71, 161, 224, 70, 133, 220, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 68, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e4" + } + ] + }, + "cborHex": "9f41e4ff", + "cborBytes": [159, 65, 228, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 69, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2330722717343673204" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17389515211317710385" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8468915055654810333" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8238ab5e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8517394971642062860" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9199167151097005115" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11979478356097574713" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "edcca7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15812622194160598210" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe2b6895fc2b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17637703165426044173" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e3b629389" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "096b8d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "235420468325452cee61" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ef38059" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5de4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32316d352d171696" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3985a9532a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f0088fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b205863f67533eb741bf153f7f37ad80e311b7587a15f754332dd448238ab5e1b7633dd99806c680c1b7faa01c8de94443b1ba63fa81849ad273943edcca71bdb71b81b52667cc246fe2b6895fc2b1bf4c5b59495008d0d458e3b629389ffbf43096b8d4a235420468325452cee61442ef38059425de44832316d352d17169611453985a9532a415b449f0088fd14ffff", + "cborBytes": [ + 159, 191, 27, 32, 88, 99, 246, 117, 51, 235, 116, 27, 241, 83, 247, 243, 122, 216, 14, 49, 27, 117, 135, 161, 95, + 117, 67, 50, 221, 68, 130, 56, 171, 94, 27, 118, 51, 221, 153, 128, 108, 104, 12, 27, 127, 170, 1, 200, 222, 148, + 68, 59, 27, 166, 63, 168, 24, 73, 173, 39, 57, 67, 237, 204, 167, 27, 219, 113, 184, 27, 82, 102, 124, 194, 70, + 254, 43, 104, 149, 252, 43, 27, 244, 197, 181, 148, 149, 0, 141, 13, 69, 142, 59, 98, 147, 137, 255, 191, 67, 9, + 107, 141, 74, 35, 84, 32, 70, 131, 37, 69, 44, 238, 97, 68, 46, 243, 128, 89, 66, 93, 228, 72, 50, 49, 109, 53, + 45, 23, 22, 150, 17, 69, 57, 133, 169, 83, 42, 65, 91, 68, 159, 0, 136, 253, 20, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 70, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01e9f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7d8d957342e35dbcd326da9" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5407772793546693792" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16373777042362755106" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6565870733948851218" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6884465049259123092" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17134143139139612298" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2fa199" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "32" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a02939e1eedd8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1859472522736221608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6107f3fa8b19dc58ded73c34" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11203378178031158639" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8afbb1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc706d845808" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "796962ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efc76fe6e320694e4135" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e58596" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11056823642049324522" + } + } + ] + }, + "cborHex": "9fbf4301e9f24ca7d8d957342e35dbcd326da9ffbf1b4b0c44b4415f5ca01be33b5777d17a68221b5b1ea8a5222794121b5f8a887ca1aea1941bedc8b4678b1cee8a432fa199ffbf4132473a02939e1eedd8423a091b19ce2c68534abda84c6107f3fa8b19dc58ded73c341b9b7a651849e9056f438afbb146dc706d84580841c444796962ae4aefc76fe6e320694e413543e58596ff41f81b9971ba85587da5eaff", + "cborBytes": [ + 159, 191, 67, 1, 233, 242, 76, 167, 216, 217, 87, 52, 46, 53, 219, 205, 50, 109, 169, 255, 191, 27, 75, 12, 68, + 180, 65, 95, 92, 160, 27, 227, 59, 87, 119, 209, 122, 104, 34, 27, 91, 30, 168, 165, 34, 39, 148, 18, 27, 95, 138, + 136, 124, 161, 174, 161, 148, 27, 237, 200, 180, 103, 139, 28, 238, 138, 67, 47, 161, 153, 255, 191, 65, 50, 71, + 58, 2, 147, 158, 30, 237, 216, 66, 58, 9, 27, 25, 206, 44, 104, 83, 74, 189, 168, 76, 97, 7, 243, 250, 139, 25, + 220, 88, 222, 215, 60, 52, 27, 155, 122, 101, 24, 73, 233, 5, 111, 67, 138, 251, 177, 70, 220, 112, 109, 132, 88, + 8, 65, 196, 68, 121, 105, 98, 174, 74, 239, 199, 111, 230, 227, 32, 105, 78, 65, 53, 67, 229, 133, 150, 255, 65, + 248, 27, 153, 113, 186, 133, 88, 125, 165, 234, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 71, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16661454241311610632" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3245834270642242008" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10265623428730017668" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fb06" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1be739605b36cdd7089f1b2d0b85126d6b81d81b8e76d21e6b6157840e42fb06ffffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 231, 57, 96, 91, 54, 205, 215, 8, 159, 27, 45, 11, 133, 18, 109, 107, 129, 216, 27, + 142, 118, 210, 30, 107, 97, 87, 132, 14, 66, 251, 6, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 72, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13277417665013575995" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b557d8e22f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17616788419885228411" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b39c20cf4e22775029f6" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17155504242222556277" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2fe1d24ac815" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10968508203412435489" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16663062270634430966" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8790725169697383268" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7699320044946733146" + } + } + ] + }, + "cborHex": "9f9fbf1bb842dd0501a1713b45b557d8e22f1bf47b67baea79617b4ab39c20cf4e22775029f6ff1bee149836ec61e4759f462fe1d24ac8151b9837f818ec5b32211be73f16d9b76111f6ff1b79feedf771e5e364ff1b6ad97ac9c318385aff", + "cborBytes": [ + 159, 159, 191, 27, 184, 66, 221, 5, 1, 161, 113, 59, 69, 181, 87, 216, 226, 47, 27, 244, 123, 103, 186, 234, 121, + 97, 123, 74, 179, 156, 32, 207, 78, 34, 119, 80, 41, 246, 255, 27, 238, 20, 152, 54, 236, 97, 228, 117, 159, 70, + 47, 225, 210, 74, 200, 21, 27, 152, 55, 248, 24, 236, 91, 50, 33, 27, 231, 63, 22, 217, 183, 97, 17, 246, 255, 27, + 121, 254, 237, 247, 113, 229, 227, 100, 255, 27, 106, 217, 122, 201, 195, 24, 56, 90, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 73, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "246bfd6d5d" + } + ] + }, + "cborHex": "9f45246bfd6d5dff", + "cborBytes": [159, 69, 36, 107, 253, 109, 93, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 74, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8ebcd91" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "806c5c5d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9874338425601433880" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f9fbf0d44c8ebcd9144806c5c5d1b8908b27b49f6a118ffffa0ff", + "cborBytes": [ + 159, 159, 191, 13, 68, 200, 235, 205, 145, 68, 128, 108, 92, 93, 27, 137, 8, 178, 123, 73, 246, 161, 24, 255, 255, + 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 75, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4904612478938128592" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1632310549465110048" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2005925009692027620" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4696091384796423572" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5677086562242429179" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17fb0e821b5a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10410352392307420652" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1316947532410884769" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14875306683311582541" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5dc3a0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15784066919532866083" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60627da321" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7804370304084896980" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9b087d225445b3f427" + }, + { + "_tag": "ByteArray", + "bytearray": "00fa" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + ] + }, + "cborHex": "9fd8669f1b4410af10580e20d080ff9f1b16a721cbdffd9620bf1b1bd67a2b20c3eae41b412bde3bc79025941b4ec910265d9a80fb4617fb0e821b5a1b907900582a1f2dec1b1246bccda12d92a11bce6fb49d9fc7ed4d435dc3a01bdb0c453c59c02a234560627da321ffd8669f1b6c4eb17136966cd480ffff9f499b087d225445b3f4274200faff1bffffffffffffffedff", + "cborBytes": [ + 159, 216, 102, 159, 27, 68, 16, 175, 16, 88, 14, 32, 208, 128, 255, 159, 27, 22, 167, 33, 203, 223, 253, 150, 32, + 191, 27, 27, 214, 122, 43, 32, 195, 234, 228, 27, 65, 43, 222, 59, 199, 144, 37, 148, 27, 78, 201, 16, 38, 93, + 154, 128, 251, 70, 23, 251, 14, 130, 27, 90, 27, 144, 121, 0, 88, 42, 31, 45, 236, 27, 18, 70, 188, 205, 161, 45, + 146, 161, 27, 206, 111, 180, 157, 159, 199, 237, 77, 67, 93, 195, 160, 27, 219, 12, 69, 60, 89, 192, 42, 35, 69, + 96, 98, 125, 163, 33, 255, 216, 102, 159, 27, 108, 78, 177, 113, 54, 150, 108, 212, 128, 255, 255, 159, 73, 155, + 8, 125, 34, 84, 69, 179, 244, 39, 66, 0, 250, 255, 27, 255, 255, 255, 255, 255, 255, 255, 237, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 76, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2801995301691817495" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12774379565831378004" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a5850eb351d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7516991596669169504" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7889992756279388987" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4446485628826838069" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15238726779344078966" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d11" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12543874640917860510" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11451800291096958570" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c7f3" + }, + { + "_tag": "ByteArray", + "bytearray": "58129d22f44923be8ab09a6a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7765385635598785993" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c24375" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6932493716200291462" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2501532260868930665" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b7" + }, + { + "_tag": "ByteArray", + "bytearray": "b0c036fce8edd83e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9347017869703926265" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3373843084232208842" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9374113925454028037" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f613cd715608988a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad7106" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee07b2a1ea335425fb64df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d163ac939e37fdd9283e4e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6314410078229685668" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff59fd8669f1b26e2afe19ba77e179f1bb147b6889763545446a5850eb351d01b6851b807cb0fef601b6d7ee29bde702b3bffffd8669f1b3db5171ef51a64359f1bd37ad54480094876420d111bae14cb868ef0909e1b9eecf7b0c58c966affff42c7f34c58129d22f44923be8ab09a6a1b6bc43117c1c95dc9ffff43c24375d8669f1b60352a4e11befc869fd8669f1b22b73a566b45bc699f41b748b0c036fce8edd83e1b81b7473ad8ee51f9ffff1b2ed24c68e391b1cabf1b82178af2f2badd0548f613cd715608988a43ad71064bee07b2a1ea335425fb64df4bd163ac939e37fdd9283e4e1b57a14a82cf06e5a4ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 216, 102, 159, 27, 38, 226, 175, 225, 155, + 167, 126, 23, 159, 27, 177, 71, 182, 136, 151, 99, 84, 84, 70, 165, 133, 14, 179, 81, 208, 27, 104, 81, 184, 7, + 203, 15, 239, 96, 27, 109, 126, 226, 155, 222, 112, 43, 59, 255, 255, 216, 102, 159, 27, 61, 181, 23, 30, 245, 26, + 100, 53, 159, 27, 211, 122, 213, 68, 128, 9, 72, 118, 66, 13, 17, 27, 174, 20, 203, 134, 142, 240, 144, 158, 27, + 158, 236, 247, 176, 197, 140, 150, 106, 255, 255, 66, 199, 243, 76, 88, 18, 157, 34, 244, 73, 35, 190, 138, 176, + 154, 106, 27, 107, 196, 49, 23, 193, 201, 93, 201, 255, 255, 67, 194, 67, 117, 216, 102, 159, 27, 96, 53, 42, 78, + 17, 190, 252, 134, 159, 216, 102, 159, 27, 34, 183, 58, 86, 107, 69, 188, 105, 159, 65, 183, 72, 176, 192, 54, + 252, 232, 237, 216, 62, 27, 129, 183, 71, 58, 216, 238, 81, 249, 255, 255, 27, 46, 210, 76, 104, 227, 145, 177, + 202, 191, 27, 130, 23, 138, 242, 242, 186, 221, 5, 72, 246, 19, 205, 113, 86, 8, 152, 138, 67, 173, 113, 6, 75, + 238, 7, 178, 161, 234, 51, 84, 37, 251, 100, 223, 75, 209, 99, 172, 147, 158, 55, 253, 217, 40, 62, 78, 27, 87, + 161, 74, 130, 207, 6, 229, 164, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 77, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14023782283628134836" + } + } + ] + }, + "cborHex": "9f1bc29e7baf8f1241b4ff", + "cborBytes": [159, 27, 194, 158, 123, 175, 143, 18, 65, 180, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 78, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27b70cf21f1f602fc9b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14561366162518690472" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13620126551970573226" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d1d1d1ce3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13243164775851149284" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0e2c9bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89591b3927" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + ] + }, + "cborHex": "9fbf4a27b70cf21f1f602fc9b11bca145d601951caa841501bbd0468efbe126baa459d1d1d1ce31bb7c92c32c692c7e444b0e2c9bc4589591b3927ff1bfffffffffffffff5ff", + "cborBytes": [ + 159, 191, 74, 39, 183, 12, 242, 31, 31, 96, 47, 201, 177, 27, 202, 20, 93, 96, 25, 81, 202, 168, 65, 80, 27, 189, + 4, 104, 239, 190, 18, 107, 170, 69, 157, 29, 29, 28, 227, 27, 183, 201, 44, 50, 198, 146, 199, 228, 68, 176, 226, + 201, 188, 69, 137, 89, 27, 57, 39, 255, 27, 255, 255, 255, 255, 255, 255, 255, 245, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 79, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5249540460838179710" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3974295742713671766" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fe7e3c2307d3b8b3" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15340553404058257168" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13545153635362610418" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10643698983923776736" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6156538423184277259" + } + }, + { + "_tag": "ByteArray", + "bytearray": "185f42b9647428" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13864428027171372822" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2586bb8dcc645a07baf83b" + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b48da1d3c624cd37e9f1b372788ebd8cbb05648fe7e3c2307d3b8b3ffffd8669f1bd4e4980b12cd47109f1bbbfa0d774fe11cf21b93b603d548f67ce01b55706b13bff13f0b47185f42b96474281bc06857d57584ff16ffff4b2586bb8dcc645a07baf83bffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 72, 218, 29, 60, 98, 76, 211, 126, 159, 27, 55, 39, 136, 235, 216, 203, 176, 86, 72, + 254, 126, 60, 35, 7, 211, 184, 179, 255, 255, 216, 102, 159, 27, 212, 228, 152, 11, 18, 205, 71, 16, 159, 27, 187, + 250, 13, 119, 79, 225, 28, 242, 27, 147, 182, 3, 213, 72, 246, 124, 224, 27, 85, 112, 107, 19, 191, 241, 63, 11, + 71, 24, 95, 66, 185, 100, 116, 40, 27, 192, 104, 87, 213, 117, 132, 255, 22, 255, 255, 75, 37, 134, 187, 141, 204, + 100, 90, 7, 186, 248, 59, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 80, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16396452255463238295" + } + } + ] + }, + "cborHex": "9f1be38be6744789ea97ff", + "cborBytes": [159, 27, 227, 139, 230, 116, 71, 137, 234, 151, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 81, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "520626afae" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8631664664310267198" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1374760440428247998" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11558745846870708521" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f45520626afaebf1b77c9d54798813d3e1b1314215636fc3bbe1ba068ea1b5bc011294138ffffff", + "cborBytes": [ + 159, 159, 69, 82, 6, 38, 175, 174, 191, 27, 119, 201, 213, 71, 152, 129, 61, 62, 27, 19, 20, 33, 86, 54, 252, 59, + 190, 27, 160, 104, 234, 27, 91, 192, 17, 41, 65, 56, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 82, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "74f1156a685ce60d5b56a152" + }, + { + "_tag": "ByteArray", + "bytearray": "d58ad9cf50224f1a03" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "397c28f04b295e733fde" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bcbe5c6e9787" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "566bd89d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cfff6b1bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78c603154d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8744121504946513539" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a00bb8d71d8a9a344cbe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14447134208474477889" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf4ba099874e9ba282113447" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97fc8029b0fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c69c16b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6ee54b81d5537bb" + } + } + ] + } + ] + }, + "cborHex": "9f804c74f1156a685ce60d5b56a15249d58ad9cf50224f1a03bf4a397c28f04b295e733fde46bcbe5c6e978744566bd89d452cfff6b1bb4578c603154d1b79595c2e2f30e6834aa00bb8d71d8a9a344cbe1bc87e8804b683f5414cbf4ba099874e9ba2821134474697fc8029b0fa44c69c16b648f6ee54b81d5537bbffff", + "cborBytes": [ + 159, 128, 76, 116, 241, 21, 106, 104, 92, 230, 13, 91, 86, 161, 82, 73, 213, 138, 217, 207, 80, 34, 79, 26, 3, + 191, 74, 57, 124, 40, 240, 75, 41, 94, 115, 63, 222, 70, 188, 190, 92, 110, 151, 135, 68, 86, 107, 216, 157, 69, + 44, 255, 246, 177, 187, 69, 120, 198, 3, 21, 77, 27, 121, 89, 92, 46, 47, 48, 230, 131, 74, 160, 11, 184, 215, 29, + 138, 154, 52, 76, 190, 27, 200, 126, 136, 4, 182, 131, 245, 65, 76, 191, 75, 160, 153, 135, 78, 155, 162, 130, 17, + 52, 71, 70, 151, 252, 128, 41, 176, 250, 68, 198, 156, 22, 182, 72, 246, 238, 84, 184, 29, 85, 55, 187, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 83, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7085482982021936092" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7483849721491350290" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6095148373927617288" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12481362007807391797" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3216418666464062931" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b6254b13b4d7e33dcbf1b67dbf9aba9e5e3121b54965127114163081bad36b49df46a78351b2ca303bc5f86add3ffff", + "cborBytes": [ + 159, 27, 98, 84, 177, 59, 77, 126, 51, 220, 191, 27, 103, 219, 249, 171, 169, 229, 227, 18, 27, 84, 150, 81, 39, + 17, 65, 99, 8, 27, 173, 54, 180, 157, 244, 106, 120, 53, 27, 44, 163, 3, 188, 95, 134, 173, 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 84, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4312971774259115930" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11813701698632409894" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f9f1b3bdac0fa4300379a1ba3f2b31a6d69e326a0ffff", + "cborBytes": [ + 159, 159, 27, 59, 218, 192, 250, 67, 0, 55, 154, 27, 163, 242, 179, 26, 109, 105, 227, 38, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 85, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7492902531841690456" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14521950096184124985" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7270811880783755764" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "959520011089744136" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14787379436466413837" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "132315594880808043" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a16afca575" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4670768509319864972" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4021018535500519862" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9262e5d4ab7c0d" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b67fc2327530c8b58d8669f1bc98854ac010126399f1b64e71ce216ce39f4d8669f1b0d50e65dc7e211089f1bcd375340257f210dffff9f1b01d614551f1d746b45a16afca5751b40d1e7366217628c1b37cd870dc3c519b6479262e5d4ab7c0dffffffff", + "cborBytes": [ + 159, 27, 103, 252, 35, 39, 83, 12, 139, 88, 216, 102, 159, 27, 201, 136, 84, 172, 1, 1, 38, 57, 159, 27, 100, 231, + 28, 226, 22, 206, 57, 244, 216, 102, 159, 27, 13, 80, 230, 93, 199, 226, 17, 8, 159, 27, 205, 55, 83, 64, 37, 127, + 33, 13, 255, 255, 159, 27, 1, 214, 20, 85, 31, 29, 116, 107, 69, 161, 106, 252, 165, 117, 27, 64, 209, 231, 54, + 98, 23, 98, 140, 27, 55, 205, 135, 13, 195, 197, 25, 182, 71, 146, 98, 229, 212, 171, 124, 13, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 86, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16663292680342346625" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bfa1" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1be73fe868282c1b819f80d905019f42bfa1ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 231, 63, 232, 104, 40, 44, 27, 129, 159, 128, 217, 5, 1, 159, 66, 191, 161, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 87, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "81f927e9a5043bbb" + }, + { + "_tag": "ByteArray", + "bytearray": "054306f8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17152755369082710117" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7641026177437709013" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0004604b5aba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "650204" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9054252933366607465" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17189414970372968979" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5819780067699490729" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a5ec798fcc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6332816730478917283" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5183855294847088365" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1961294506097766957" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fe00" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3202804207157396215" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6797054286361225489" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6232152515409631023" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9994bd" + }, + { + "_tag": "ByteArray", + "bytearray": "68beee6892" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1690626164967549150" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2662978193703390500" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10802581708227169537" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bd9c92abdd9c6d02" + } + ] + } + ] + }, + "cborHex": "9f4881f927e9a5043bbb44054306f8bf001bee0ad421055968651b6a0a60d311a2b2d5460004604b5aba436502044105ffd8669f1b7da72b1247daee699fbf1bee8d11d795dcd2131b50c4032316207fa9ff9f45a5ec798fcc091b57e2af437fd8b6a31b47f0c0ece86376ed1b1b37eaf63fe1f22dff42fe00d8669f1b2c72a5750cbe42f79f1b5e53fcdc719b69111b567d0db1830c572f439994bd4568beee68921b17764f8a2adf28deffffffff9f9f1b24f4cc8ee04d4d241b95ea7ad440034d01ff48bd9c92abdd9c6d02ffff", + "cborBytes": [ + 159, 72, 129, 249, 39, 233, 165, 4, 59, 187, 68, 5, 67, 6, 248, 191, 0, 27, 238, 10, 212, 33, 5, 89, 104, 101, 27, + 106, 10, 96, 211, 17, 162, 178, 213, 70, 0, 4, 96, 75, 90, 186, 67, 101, 2, 4, 65, 5, 255, 216, 102, 159, 27, 125, + 167, 43, 18, 71, 218, 238, 105, 159, 191, 27, 238, 141, 17, 215, 149, 220, 210, 19, 27, 80, 196, 3, 35, 22, 32, + 127, 169, 255, 159, 69, 165, 236, 121, 143, 204, 9, 27, 87, 226, 175, 67, 127, 216, 182, 163, 27, 71, 240, 192, + 236, 232, 99, 118, 237, 27, 27, 55, 234, 246, 63, 225, 242, 45, 255, 66, 254, 0, 216, 102, 159, 27, 44, 114, 165, + 117, 12, 190, 66, 247, 159, 27, 94, 83, 252, 220, 113, 155, 105, 17, 27, 86, 125, 13, 177, 131, 12, 87, 47, 67, + 153, 148, 189, 69, 104, 190, 238, 104, 146, 27, 23, 118, 79, 138, 42, 223, 40, 222, 255, 255, 255, 255, 159, 159, + 27, 36, 244, 204, 142, 224, 77, 77, 36, 27, 149, 234, 122, 212, 64, 3, 77, 1, 255, 72, 189, 156, 146, 171, 221, + 156, 109, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 88, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d6f074e54681165db0e4" + }, + { + "_tag": "ByteArray", + "bytearray": "b2a575502a6c6d233c" + }, + { + "_tag": "ByteArray", + "bytearray": "e00ecccc210b0ddc" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2944491648127961008" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6530677827697176863" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7612968832565823656" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "302773537204484011" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10821288577989093118" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4ad6f074e54681165db0e449b2a575502a6c6d233c48e00ecccc210b0ddc9f9f1b28dcef8daac587b0ffd8669f1b5aa1a0e21e68f11f9f1b69a6b2d16734c8a81b0433aaed8c7637ab1b962cf0a0c70826feffffffff", + "cborBytes": [ + 159, 74, 214, 240, 116, 229, 70, 129, 22, 93, 176, 228, 73, 178, 165, 117, 80, 42, 108, 109, 35, 60, 72, 224, 14, + 204, 204, 33, 11, 13, 220, 159, 159, 27, 40, 220, 239, 141, 170, 197, 135, 176, 255, 216, 102, 159, 27, 90, 161, + 160, 226, 30, 104, 241, 31, 159, 27, 105, 166, 178, 209, 103, 52, 200, 168, 27, 4, 51, 170, 237, 140, 118, 55, + 171, 27, 150, 44, 240, 160, 199, 8, 38, 254, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 89, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3719474072190318067" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5093987995451071658" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4325691575169861652" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14144784434289542177" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5055570125910661577" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf961263b0da52" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5736158486978815486" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0c147" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11150513645811106801" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e688618346fe24c89db1c4e1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16773682781912390318" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4dbe176f" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + }, + "cborHex": "9fbf1b339e39f6482df5f31b46b17b17bef71caa1b3c07f191b1e648141bc44c5e802e4d84211b4628fe3e73fb59c947cf961263b0da521b4f9aedc09fb6e5fe43a0c1471b9abe951539b783f14ce688618346fe24c89db1c4e11be8c8179e8ef95aae444dbe176fff07ff", + "cborBytes": [ + 159, 191, 27, 51, 158, 57, 246, 72, 45, 245, 243, 27, 70, 177, 123, 23, 190, 247, 28, 170, 27, 60, 7, 241, 145, + 177, 230, 72, 20, 27, 196, 76, 94, 128, 46, 77, 132, 33, 27, 70, 40, 254, 62, 115, 251, 89, 201, 71, 207, 150, 18, + 99, 176, 218, 82, 27, 79, 154, 237, 192, 159, 182, 229, 254, 67, 160, 193, 71, 27, 154, 190, 149, 21, 57, 183, + 131, 241, 76, 230, 136, 97, 131, 70, 254, 36, 200, 157, 177, 196, 225, 27, 232, 200, 23, 158, 142, 249, 90, 174, + 68, 77, 190, 23, 111, 255, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 90, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "637889054737756656" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "024012b86f" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1217421072997230548" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6440921347990981016" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5058693907883149244" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d3" + }, + { + "_tag": "ByteArray", + "bytearray": "231efe73" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6031453363794748740" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b172a2e2" + }, + { + "_tag": "ByteArray", + "bytearray": "c8fdf9af1e606b481d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7750333682459134892" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8443483074178493600" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13857232045789597854" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d2d09f7077d62052f1" + }, + { + "_tag": "ByteArray", + "bytearray": "17aa892a3eddcdc93fcf" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17358130423062477611" + } + } + ] + } + ] + }, + "cborHex": "9f9fbf1b08da3cb731c0f1f045024012b86fffffd8669f1b10e52604061327d49fd8669f1b5962bfd72d3b899880ff9f1b4634174e9ecec7bc41d344231efe73ffd8669f1b53b406e0dc5225449f44b172a2e249c8fdf9af1e606b481dffff1b6b8eb76bd1b8cbacffffd8669f1b752d471ed76eaca09fd8669f1bc04ec7207b72d09e9f49d2d09f7077d62052f14a17aa892a3eddcdc93fcfffff1bf0e477a7078a3b2bffffff", + "cborBytes": [ + 159, 159, 191, 27, 8, 218, 60, 183, 49, 192, 241, 240, 69, 2, 64, 18, 184, 111, 255, 255, 216, 102, 159, 27, 16, + 229, 38, 4, 6, 19, 39, 212, 159, 216, 102, 159, 27, 89, 98, 191, 215, 45, 59, 137, 152, 128, 255, 159, 27, 70, 52, + 23, 78, 158, 206, 199, 188, 65, 211, 68, 35, 30, 254, 115, 255, 216, 102, 159, 27, 83, 180, 6, 224, 220, 82, 37, + 68, 159, 68, 177, 114, 162, 226, 73, 200, 253, 249, 175, 30, 96, 107, 72, 29, 255, 255, 27, 107, 142, 183, 107, + 209, 184, 203, 172, 255, 255, 216, 102, 159, 27, 117, 45, 71, 30, 215, 110, 172, 160, 159, 216, 102, 159, 27, 192, + 78, 199, 32, 123, 114, 208, 158, 159, 73, 210, 208, 159, 112, 119, 214, 32, 82, 241, 74, 23, 170, 137, 42, 62, + 221, 205, 201, 63, 207, 255, 255, 27, 240, 228, 119, 167, 7, 138, 59, 43, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 91, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7453525678224413814" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12392554927560675673" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15855150642375653530" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "596397262447536763" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16942273956294572456" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d333" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17675249223528372664" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2374" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17825619181605860149" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6167061643301902383" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12289824494695751385" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "31" + }, + { + "_tag": "ByteArray", + "bytearray": "402ff8fb6a4fc6c5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1825874429869548584" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "195692470001932930" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5e616f3132b5d73776cf" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11600145866213331503" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11679185444049769221" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3243596537499744972" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14460244974595487658" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1683074090301211452" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14558108012588608647" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0448f8358dad5cd24" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15671421034829780795" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11797622140071057424" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17860181720007213273" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11653767198442967088" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "49583243530754601" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9fcdd379f093" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6157904696044186068" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b67703e1d26d194761babfb330c4cc551591bdc08cf814b1b789a1b0846d4267d336a7b1beb1f0c66344a39a842d3331bf54b198574e859b84223741bf76152339501b3351b5595cde3dcf2582fff9fd8669f1baa8e3a437e3c1ed99f413148402ff8fb6a4fc6c51b1956cf1ebcd7e4281b02b73d43bfaf1a824a5e616f3132b5d73776cfffff1ba0fbff34825c922f80bf1ba214cd484a7fd3051b2d0391dd945bfacc1bc8ad1c30d3e437aa1b175b7af7c311433c1bca08ca1af41cac8749e0448f8358dad5cd241bd97c1266829d173b1ba3b992d475381810ffa0ffd8669f1bf7dc1ca5a4f480d99f1ba1ba7f85ce4ad0309f1b00b027b281765a29469fcdd379f0931b557545b1f06c69d4ffffffff", + "cborBytes": [ + 159, 191, 27, 103, 112, 62, 29, 38, 209, 148, 118, 27, 171, 251, 51, 12, 76, 197, 81, 89, 27, 220, 8, 207, 129, + 75, 27, 120, 154, 27, 8, 70, 212, 38, 125, 51, 106, 123, 27, 235, 31, 12, 102, 52, 74, 57, 168, 66, 211, 51, 27, + 245, 75, 25, 133, 116, 232, 89, 184, 66, 35, 116, 27, 247, 97, 82, 51, 149, 1, 179, 53, 27, 85, 149, 205, 227, + 220, 242, 88, 47, 255, 159, 216, 102, 159, 27, 170, 142, 58, 67, 126, 60, 30, 217, 159, 65, 49, 72, 64, 47, 248, + 251, 106, 79, 198, 197, 27, 25, 86, 207, 30, 188, 215, 228, 40, 27, 2, 183, 61, 67, 191, 175, 26, 130, 74, 94, 97, + 111, 49, 50, 181, 215, 55, 118, 207, 255, 255, 27, 160, 251, 255, 52, 130, 92, 146, 47, 128, 191, 27, 162, 20, + 205, 72, 74, 127, 211, 5, 27, 45, 3, 145, 221, 148, 91, 250, 204, 27, 200, 173, 28, 48, 211, 228, 55, 170, 27, 23, + 91, 122, 247, 195, 17, 67, 60, 27, 202, 8, 202, 26, 244, 28, 172, 135, 73, 224, 68, 143, 131, 88, 218, 213, 205, + 36, 27, 217, 124, 18, 102, 130, 157, 23, 59, 27, 163, 185, 146, 212, 117, 56, 24, 16, 255, 160, 255, 216, 102, + 159, 27, 247, 220, 28, 165, 164, 244, 128, 217, 159, 27, 161, 186, 127, 133, 206, 74, 208, 48, 159, 27, 0, 176, + 39, 178, 129, 118, 90, 41, 70, 159, 205, 211, 121, 240, 147, 27, 85, 117, 69, 177, 240, 108, 105, 212, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 92, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "135004cf0e38f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8659994210013420394" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c49f8853c5d7e0a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15283799180499374588" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9eaa83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "154f3df9cf740c1e686e4f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c826d9601776108ef72a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5771735991835078614" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9f1643f04a2d9e4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76d4904c" + } + } + ] + } + ] + }, + "cborHex": "9fbf47135004cf0e38f41b782e7ad9f4ca1b6a481c49f8853c5d7e0a1bd41af660ac1251fc439eaa834b154f3df9cf740c1e686e4f4ac826d9601776108ef72a1b5019534dfaaaafd648c9f1643f04a2d9e44476d4904cffff", + "cborBytes": [ + 159, 191, 71, 19, 80, 4, 207, 14, 56, 244, 27, 120, 46, 122, 217, 244, 202, 27, 106, 72, 28, 73, 248, 133, 60, 93, + 126, 10, 27, 212, 26, 246, 96, 172, 18, 81, 252, 67, 158, 170, 131, 75, 21, 79, 61, 249, 207, 116, 12, 30, 104, + 110, 79, 74, 200, 38, 217, 96, 23, 118, 16, 142, 247, 42, 27, 80, 25, 83, 77, 250, 170, 175, 214, 72, 201, 241, + 100, 63, 4, 162, 217, 228, 68, 118, 212, 144, 76, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 93, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fffd6707034300079e28" + } + ] + }, + "cborHex": "9f804afffd6707034300079e28ff", + "cborBytes": [159, 128, 74, 255, 253, 103, 7, 3, 67, 0, 7, 158, 40, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 94, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5156" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab8a94087d38d600e8c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2604442552283577167" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d114cc8ca9bf0e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16083320623107743527" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5dbf532" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d6a99" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e567224bb61c8e9356" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2806649372140194603" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16554506937056645865" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4fd43b852a62336d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6054333010443372714" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64b941d53e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44f628c6b03a1ee1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8dbc63ddc99989e741c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3113abe5d1fd585191" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03c84bba80c2ba73" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18045913609853735830" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd26a98882" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec22c21fa3c11b23ef40b606" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c69cd96d3193bc7b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2752850608455189317" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c81c504552bdbc4b0043" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4023348163383748392" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0cedd0be6ff2c5d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d18" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11595405730060962332" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d70872bf3c99f663b12" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3669942656202555300" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15119934998646616422" + } + }, + { + "_tag": "ByteArray", + "bytearray": "60e1ef776b33cce0da8832" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5491142767116784055" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1856939856287374091" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10169106690450403165" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2428928813625950988" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17671909784332025838" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2b88369" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5e4b969" + } + } + ] + } + ] + }, + "cborHex": "9fbf4251564295da4aab8a94087d38d600e8c21b2424d6b3cec63b4f47d114cc8ca9bf0e1bdf336ee4c50d1f2744d5dbf532431d6a9949e567224bb61c8e93561b26f338bbd37d4b2bff80d8669f1be5bd6c59870052e99fbf484fd43b852a62336d1b54054fcbb76608aa4564b941d53e4844f628c6b03a1ee14a8dbc63ddc99989e741c6493113abe5d1fd5851914291a24803c84bba80c2ba7341b31bfa6ff6d11ab8139645bd26a988824cec22c21fa3c11b23ef40b606ffffff9fa0bf48c69cd96d3193bc7b1b2634170b0cb083454ac81c504552bdbc4b00431b37d5cdd68635672848e0cedd0be6ff2c5d429d18ff9f1ba0eb28138ed00a1c4a6d70872bf3c99f663b121b32ee4166d101bfa41bd1d4ccc5bd53f1664b60e1ef776b33cce0da8832ffbf1b4c347540dcf391b71b19c52cf5f7461b0b1b8d1feca81f582f5d1b21b549e310e2c30cffffbf419c1bf53f3c51addc3fee44b2b8836944b5e4b969ffff", + "cborBytes": [ + 159, 191, 66, 81, 86, 66, 149, 218, 74, 171, 138, 148, 8, 125, 56, 214, 0, 232, 194, 27, 36, 36, 214, 179, 206, + 198, 59, 79, 71, 209, 20, 204, 140, 169, 191, 14, 27, 223, 51, 110, 228, 197, 13, 31, 39, 68, 213, 219, 245, 50, + 67, 29, 106, 153, 73, 229, 103, 34, 75, 182, 28, 142, 147, 86, 27, 38, 243, 56, 187, 211, 125, 75, 43, 255, 128, + 216, 102, 159, 27, 229, 189, 108, 89, 135, 0, 82, 233, 159, 191, 72, 79, 212, 59, 133, 42, 98, 51, 109, 27, 84, 5, + 79, 203, 183, 102, 8, 170, 69, 100, 185, 65, 213, 62, 72, 68, 246, 40, 198, 176, 58, 30, 225, 74, 141, 188, 99, + 221, 201, 153, 137, 231, 65, 198, 73, 49, 19, 171, 229, 209, 253, 88, 81, 145, 66, 145, 162, 72, 3, 200, 75, 186, + 128, 194, 186, 115, 65, 179, 27, 250, 111, 246, 209, 26, 184, 19, 150, 69, 189, 38, 169, 136, 130, 76, 236, 34, + 194, 31, 163, 193, 27, 35, 239, 64, 182, 6, 255, 255, 255, 159, 160, 191, 72, 198, 156, 217, 109, 49, 147, 188, + 123, 27, 38, 52, 23, 11, 12, 176, 131, 69, 74, 200, 28, 80, 69, 82, 189, 188, 75, 0, 67, 27, 55, 213, 205, 214, + 134, 53, 103, 40, 72, 224, 206, 221, 11, 230, 255, 44, 93, 66, 157, 24, 255, 159, 27, 160, 235, 40, 19, 142, 208, + 10, 28, 74, 109, 112, 135, 43, 243, 201, 159, 102, 59, 18, 27, 50, 238, 65, 102, 209, 1, 191, 164, 27, 209, 212, + 204, 197, 189, 83, 241, 102, 75, 96, 225, 239, 119, 107, 51, 204, 224, 218, 136, 50, 255, 191, 27, 76, 52, 117, + 64, 220, 243, 145, 183, 27, 25, 197, 44, 245, 247, 70, 27, 11, 27, 141, 31, 236, 168, 31, 88, 47, 93, 27, 33, 181, + 73, 227, 16, 226, 195, 12, 255, 255, 191, 65, 156, 27, 245, 63, 60, 81, 173, 220, 63, 238, 68, 178, 184, 131, 105, + 68, 181, 228, 185, 105, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 95, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9e" + } + ] + }, + "cborHex": "9f419eff", + "cborBytes": [159, 65, 158, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 96, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffffdff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 97, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12814338598991670965" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4340627fd5438112da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db0feccad0860cfdba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5987cd02b170cf38f0cd05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5829427547705443389" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a71a29b0838711baf7b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3459849851880194862" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ce2dcd0fef4b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2306723911826618374" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ee54d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10287691898708678300" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db23" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1920bf82baefd13e" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5f8e43b3922eaa1d6a" + } + ] + }, + "cborHex": "9fd8669f1bb1d5ad100079aeb59fbf494340627fd5438112da49db0feccad0860cfdba4b5987cd02b170cf38f0cd051b50e6497810dc043d4a5a71a29b0838711baf7b1b3003db1bf581c32eff46ce2dcd0fef4b1b2003212d1f533806bf435ee54d1b8ec539467d31d69c42db23481920bf82baefd13effffff495f8e43b3922eaa1d6aff", + "cborBytes": [ + 159, 216, 102, 159, 27, 177, 213, 173, 16, 0, 121, 174, 181, 159, 191, 73, 67, 64, 98, 127, 213, 67, 129, 18, 218, + 73, 219, 15, 236, 202, 208, 134, 12, 253, 186, 75, 89, 135, 205, 2, 177, 112, 207, 56, 240, 205, 5, 27, 80, 230, + 73, 120, 16, 220, 4, 61, 74, 90, 113, 162, 155, 8, 56, 113, 27, 175, 123, 27, 48, 3, 219, 27, 245, 129, 195, 46, + 255, 70, 206, 45, 205, 15, 239, 75, 27, 32, 3, 33, 45, 31, 83, 56, 6, 191, 67, 94, 229, 77, 27, 142, 197, 57, 70, + 125, 49, 214, 156, 66, 219, 35, 72, 25, 32, 191, 130, 186, 239, 209, 62, 255, 255, 255, 73, 95, 142, 67, 179, 146, + 46, 170, 29, 106, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 98, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13417700807652659342" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13244211516379426362" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bba353fcb669bd08e9f1bb7cce4340beeee3affffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 186, 53, 63, 203, 102, 155, 208, 142, 159, 27, 183, 204, 228, 52, 11, 238, 238, 58, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 99, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13325455053869836796" + } + } + ] + }, + "cborHex": "9f1bb8ed86c52c5869fcff", + "cborBytes": [159, 27, 184, 237, 134, 197, 44, 88, 105, 252, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 100, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4307" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14689213033794770481" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + ] + }, + "cborHex": "9f4243071bcbda916d6d6016311bfffffffffffffffbff", + "cborBytes": [ + 159, 66, 67, 7, 27, 203, 218, 145, 109, 109, 96, 22, 49, 27, 255, 255, 255, 255, 255, 255, 255, 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 101, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9e56fa1ced0201fcfafa0006" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + "cborHex": "9f4c9e56fa1ced0201fcfafa000606ff", + "cborBytes": [159, 76, 158, 86, 250, 28, 237, 2, 1, 252, 250, 250, 0, 6, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 102, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10408002657914273016" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5793572503467262416" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "944c5986ec" + }, + { + "_tag": "ByteArray", + "bytearray": "36afb4a4dd" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17010700377409072467" + } + }, + { + "_tag": "ByteArray", + "bytearray": "44d9adcc5109" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1775263230003425186" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1427847482139361972" + } + } + ] + }, + "cborHex": "9f9f1b9070a745fe4d3cf8d8669f1b5066e77f09a301d09f45944c5986ec4536afb4a4ddffff801bec1225dde0122d534644d9adcc5109ff1b18a300807f2aafa21b13d0bbb84e5a42b4ff", + "cborBytes": [ + 159, 159, 27, 144, 112, 167, 69, 254, 77, 60, 248, 216, 102, 159, 27, 80, 102, 231, 127, 9, 163, 1, 208, 159, 69, + 148, 76, 89, 134, 236, 69, 54, 175, 180, 164, 221, 255, 255, 128, 27, 236, 18, 37, 221, 224, 18, 45, 83, 70, 68, + 217, 173, 204, 81, 9, 255, 27, 24, 163, 0, 128, 127, 42, 175, 162, 27, 19, 208, 187, 184, 78, 90, 66, 180, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 103, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17557705153943254403" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e343d38200c40378d2c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15855441202338805542" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17014461375729578991" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8da7932c85562d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15221794490223600795" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae693c920798b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8497" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f56b6f1d1198c1ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6514587344673877951" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbff7a72d7cd34" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5003381499611221755" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7043759921646876364" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1c16" + }, + { + "_tag": "ByteArray", + "bytearray": "08b849e7" + }, + { + "_tag": "ByteArray", + "bytearray": "681418ad" + }, + { + "_tag": "ByteArray", + "bytearray": "6e238bd7e0fa40acdb" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "13" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed9bee4f22c9ceadfc49" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16430869244557943794" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e19a50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15270289835652878976" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eccf7ea45c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5077306381201468262" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe68a1a8bb63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6197481184674223085" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6351342101546660090" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "31" + }, + { + "_tag": "ByteArray", + "bytearray": "ea95ad15e1cee5e2" + }, + { + "_tag": "ByteArray", + "bytearray": "2c059c4f88e7" + }, + { + "_tag": "ByteArray", + "bytearray": "519492e11e2254ba97f251" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e26aab318672" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18100002208733069176" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5585152367753265243" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5324ad88" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8007" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11879235862959938353" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5426437441256038574" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba7f09c6af3c2c6d161f9f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9385728589391941027" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e070d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9964940765579871347" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ff68d15301d2c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10046362928436351696" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16835858057136661711" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14520260345874048687" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5082022614685033046" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bf3a97fd013d535839f4ae343d38200c40378d2c41bdc09d7c48e7f37261bec1f827988f733efbf478da7932c85562d1bd33ead70b9c6a49b47ae693c920798b742849748f56b6f1d1198c1ea1b5a6876ac998aafbf47fbff7a72d7cd341b456f94f700168efbffff9fd8669f1b61c076544ce536cc9f421c164408b849e744681418ad496e238bd7e0fa40acdbffff4113bf410a4aed9bee4f22c9ceadfc4941661be4062c8600c463f243e19a501bd3eaf7b33759128045eccf7ea45c1b46763740c3566b6646fe68a1a8bb631b5601e04d42ac93edffff9fd8669f1b58247ffd91abf0fa9f413148ea95ad15e1cee5e2462c059c4f88e74b519492e11e2254ba97f251ffff9f46e26aab3186721bfb30201c6551ff781b4d82727cb05d805bff445324ad88bf4280071ba4db861416cedb31ffbf1b4b4e941a31f220ae4bba7f09c6af3c2c6d161f9f1b8240ce6ca0ef4da3432e070d1b8a4a94d46c328473471ff68d15301d2c1b8b6bd9db021a12d01be9a4fbb3e88764cf1bc98253da5a0366af1b4686f8a470cda256ffffff", + "cborBytes": [ + 159, 27, 243, 169, 127, 208, 19, 213, 53, 131, 159, 74, 227, 67, 211, 130, 0, 196, 3, 120, 210, 196, 27, 220, 9, + 215, 196, 142, 127, 55, 38, 27, 236, 31, 130, 121, 136, 247, 51, 239, 191, 71, 141, 167, 147, 44, 133, 86, 45, 27, + 211, 62, 173, 112, 185, 198, 164, 155, 71, 174, 105, 60, 146, 7, 152, 183, 66, 132, 151, 72, 245, 107, 111, 29, + 17, 152, 193, 234, 27, 90, 104, 118, 172, 153, 138, 175, 191, 71, 251, 255, 122, 114, 215, 205, 52, 27, 69, 111, + 148, 247, 0, 22, 142, 251, 255, 255, 159, 216, 102, 159, 27, 97, 192, 118, 84, 76, 229, 54, 204, 159, 66, 28, 22, + 68, 8, 184, 73, 231, 68, 104, 20, 24, 173, 73, 110, 35, 139, 215, 224, 250, 64, 172, 219, 255, 255, 65, 19, 191, + 65, 10, 74, 237, 155, 238, 79, 34, 201, 206, 173, 252, 73, 65, 102, 27, 228, 6, 44, 134, 0, 196, 99, 242, 67, 225, + 154, 80, 27, 211, 234, 247, 179, 55, 89, 18, 128, 69, 236, 207, 126, 164, 92, 27, 70, 118, 55, 64, 195, 86, 107, + 102, 70, 254, 104, 161, 168, 187, 99, 27, 86, 1, 224, 77, 66, 172, 147, 237, 255, 255, 159, 216, 102, 159, 27, 88, + 36, 127, 253, 145, 171, 240, 250, 159, 65, 49, 72, 234, 149, 173, 21, 225, 206, 229, 226, 70, 44, 5, 156, 79, 136, + 231, 75, 81, 148, 146, 225, 30, 34, 84, 186, 151, 242, 81, 255, 255, 159, 70, 226, 106, 171, 49, 134, 114, 27, + 251, 48, 32, 28, 101, 81, 255, 120, 27, 77, 130, 114, 124, 176, 93, 128, 91, 255, 68, 83, 36, 173, 136, 191, 66, + 128, 7, 27, 164, 219, 134, 20, 22, 206, 219, 49, 255, 191, 27, 75, 78, 148, 26, 49, 242, 32, 174, 75, 186, 127, 9, + 198, 175, 60, 44, 109, 22, 31, 159, 27, 130, 64, 206, 108, 160, 239, 77, 163, 67, 46, 7, 13, 27, 138, 74, 148, + 212, 108, 50, 132, 115, 71, 31, 246, 141, 21, 48, 29, 44, 27, 139, 107, 217, 219, 2, 26, 18, 208, 27, 233, 164, + 251, 179, 232, 135, 100, 207, 27, 201, 130, 83, 218, 90, 3, 102, 175, 27, 70, 134, 248, 164, 112, 205, 162, 86, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 104, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8362026541123542857" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dd1978706312" + } + ] + }, + "cborHex": "9f1b740be2d5d20e9f4946dd1978706312ff", + "cborBytes": [159, 27, 116, 11, 226, 213, 210, 14, 159, 73, 70, 221, 25, 120, 112, 99, 18, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 105, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "08982feb6f8650ff51cb6b0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f518c9296998d6b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a42f9fb1deff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10870560927131356207" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7306446055005885755" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7726973866412175968" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c43138cad397591bae" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0a1df67960a3" + }, + { + "_tag": "ByteArray", + "bytearray": "c694c1" + }, + { + "_tag": "ByteArray", + "bytearray": "1b48d67a4eb733" + } + ] + }, + "cborHex": "9fbf4c08982feb6f8650ff51cb6b0e481f518c9296998d6b46a42f9fb1deff1b96dbfd918ae7cc2fffd8669f1b6565b5f9cf2e153b9fd8669f1b6b3bb9cad03972609f49c43138cad397591baeffffffff460a1df67960a343c694c1471b48d67a4eb733ff", + "cborBytes": [ + 159, 191, 76, 8, 152, 47, 235, 111, 134, 80, 255, 81, 203, 107, 14, 72, 31, 81, 140, 146, 150, 153, 141, 107, 70, + 164, 47, 159, 177, 222, 255, 27, 150, 219, 253, 145, 138, 231, 204, 47, 255, 216, 102, 159, 27, 101, 101, 181, + 249, 207, 46, 21, 59, 159, 216, 102, 159, 27, 107, 59, 185, 202, 208, 57, 114, 96, 159, 73, 196, 49, 56, 202, 211, + 151, 89, 27, 174, 255, 255, 255, 255, 70, 10, 29, 246, 121, 96, 163, 67, 198, 148, 193, 71, 27, 72, 214, 122, 78, + 183, 51, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 106, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "649f8a16" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3177799100199898114" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14647051604646045252" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7ba82534b990209bfe8366e3" + } + ] + } + ] + }, + "cborHex": "9f44649f8a161b2c19cf71e6f88c02d905038002d8669f1bcb44c7d4bdbe26449fa04c7ba82534b990209bfe8366e3ffffff", + "cborBytes": [ + 159, 68, 100, 159, 138, 22, 27, 44, 25, 207, 113, 230, 248, 140, 2, 217, 5, 3, 128, 2, 216, 102, 159, 27, 203, 68, + 199, 212, 189, 190, 38, 68, 159, 160, 76, 123, 168, 37, 52, 185, 144, 32, 155, 254, 131, 102, 227, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 107, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3c3f823821fbfc04fd09b7dc" + }, + { + "_tag": "ByteArray", + "bytearray": "586f8048255e2901d67e16" + } + ] + }, + "cborHex": "9f4c3c3f823821fbfc04fd09b7dc4b586f8048255e2901d67e16ff", + "cborBytes": [ + 159, 76, 60, 63, 130, 56, 33, 251, 252, 4, 253, 9, 183, 220, 75, 88, 111, 128, 72, 37, 94, 41, 1, 214, 126, 22, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 108, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17593081559970074556" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa504cb442088a682b7c681c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4354670816239993049" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16153739193397516679" + } + } + ] + }, + "cborHex": "9f9f9f1bf4272e77767dcfbc4cfa504cb442088a682b7c681c1b3c6ee6090bbec0d9ffff1be02d9c35d0c39987ff", + "cborBytes": [ + 159, 159, 159, 27, 244, 39, 46, 119, 118, 125, 207, 188, 76, 250, 80, 76, 180, 66, 8, 138, 104, 43, 124, 104, 28, + 27, 60, 110, 230, 9, 11, 190, 192, 217, 255, 255, 27, 224, 45, 156, 53, 208, 195, 153, 135, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 109, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "663241966830837858" + } + }, + { + "_tag": "ByteArray", + "bytearray": "031db7881aeb49197e20e961" + }, + { + "_tag": "ByteArray", + "bytearray": "22" + } + ] + }, + "cborHex": "9f1bfffffffffffffff2011b09344f0e091560624c031db7881aeb49197e20e9614122ff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 1, 27, 9, 52, 79, 14, 9, 21, 96, 98, 76, 3, 29, 183, 136, 26, + 235, 73, 25, 126, 32, 233, 97, 65, 34, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 110, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f6678db45b2951998b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16156862784607966704" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4a327fcd90" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "68bb4a981ef97e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10967236952656523795" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "28cf6b55" + } + ] + } + ] + } + ] + }, + "cborHex": "9f49f6678db45b2951998b9f9f1be038b519914955f0454a327fcd90ff4768bb4a981ef97ed8669f1b983373e6caa132139f4428cf6b55ffffffff", + "cborBytes": [ + 159, 73, 246, 103, 141, 180, 91, 41, 81, 153, 139, 159, 159, 27, 224, 56, 181, 25, 145, 73, 85, 240, 69, 74, 50, + 127, 205, 144, 255, 71, 104, 187, 74, 152, 30, 249, 126, 216, 102, 159, 27, 152, 51, 115, 230, 202, 161, 50, 19, + 159, 68, 40, 207, 107, 85, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 111, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3254166490783197010" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12679055613115134191" + } + }, + { + "_tag": "ByteArray", + "bytearray": "16c844bf6df8995f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11472657065028826898" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16927001579060855858" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b2d291f2e9b1ca7529f9f1baff50de7532670ef4816c844bf6df8995fff1b9f3710d0deeb37121beae8ca40c8660432ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 45, 41, 31, 46, 155, 28, 167, 82, 159, 159, 27, 175, 245, 13, 231, 83, 38, 112, 239, 72, + 22, 200, 68, 191, 109, 248, 153, 95, 255, 27, 159, 55, 16, 208, 222, 235, 55, 18, 27, 234, 232, 202, 64, 200, 102, + 4, 50, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 112, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8213665671395056208" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "65" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07713b95bb303209" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aef4f8523706" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22e0f576c8de" + } + } + ] + } + ] + }, + "cborHex": "9f1b71fccd6907529a5080bf41654807713b95bb30320946aef4f852370609ffbf1bfffffffffffffff3141bfffffffffffffffa4622e0f576c8deffff", + "cborBytes": [ + 159, 27, 113, 252, 205, 105, 7, 82, 154, 80, 128, 191, 65, 101, 72, 7, 113, 59, 149, 187, 48, 50, 9, 70, 174, 244, + 248, 82, 55, 6, 9, 255, 191, 27, 255, 255, 255, 255, 255, 255, 255, 243, 20, 27, 255, 255, 255, 255, 255, 255, + 255, 250, 70, 34, 224, 245, 118, 200, 222, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 113, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffed80ffff", + "cborBytes": [159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 114, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "052d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "658796197121004380" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d3d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12401408083374993921" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5797590621013722404" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15642544164663814712" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13844016990628475463" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17951983656180714547" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3025675270505771324" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12326100614310287447" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10048787165551704377" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14628406208550419808" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e9c635422" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17257834859553220090" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18424639071518821049" + } + } + } + ] + } + ] + }, + "cborHex": "9f42052dbf1b092483a69cc6935c429d3d1bac1aa6f2443972011b50752df3eea8c5241bd9157b0a3e256a381bc01fd41aaee1f2471bf922420588450c331b29fd5ba0b82e313cffbf1bab0f1b33c5b058571b8b7476afb236b9391bcb0289f12ac43d60452e9c6354221bef80255e6c05e5fa1bffb1779e1ca98ab9ffff", + "cborBytes": [ + 159, 66, 5, 45, 191, 27, 9, 36, 131, 166, 156, 198, 147, 92, 66, 157, 61, 27, 172, 26, 166, 242, 68, 57, 114, 1, + 27, 80, 117, 45, 243, 238, 168, 197, 36, 27, 217, 21, 123, 10, 62, 37, 106, 56, 27, 192, 31, 212, 26, 174, 225, + 242, 71, 27, 249, 34, 66, 5, 136, 69, 12, 51, 27, 41, 253, 91, 160, 184, 46, 49, 60, 255, 191, 27, 171, 15, 27, + 51, 197, 176, 88, 87, 27, 139, 116, 118, 175, 178, 54, 185, 57, 27, 203, 2, 137, 241, 42, 196, 61, 96, 69, 46, + 156, 99, 84, 34, 27, 239, 128, 37, 94, 108, 5, 229, 250, 27, 255, 177, 119, 158, 28, 169, 138, 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 115, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6db3efd58a57" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "911966061743653973" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a809371a8c7bd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39fc784418ecf525d083" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1645775626993085678" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da54d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11328465091595378038" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a6f81631e2f081d5da" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11985844881122663105" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11305933593305175418" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14739316354933179100" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e5d2bbcf62fdeb356b0e2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15516133912313178661" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10169096027134618983" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17920857264190619024" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7963895803523302232" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18064284328822473821" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44" + } + } + ] + } + ] + }, + "cborHex": "9f466db3efd58a57a0bf1b0ca7f44d25714455472a809371a8c7bd4a39fc784418ecf525d0831b16d6f8368aeb2cee43da54d71b9d36cafae2f49d76ff49a6f81631e2f081d5dabf1ba656466a68401ac11b9ce6beb3a31c557a1bcc8c9221efe5c2dc4b8e5d2bbcf62fdeb356b0e21bd7546195d2d1aa251b8d1fe2f56031ed671bf8b3acbba68f7d901b6e857109ed3b03581bfab13ae36d1e845d4144ffff", + "cborBytes": [ + 159, 70, 109, 179, 239, 213, 138, 87, 160, 191, 27, 12, 167, 244, 77, 37, 113, 68, 85, 71, 42, 128, 147, 113, 168, + 199, 189, 74, 57, 252, 120, 68, 24, 236, 245, 37, 208, 131, 27, 22, 214, 248, 54, 138, 235, 44, 238, 67, 218, 84, + 215, 27, 157, 54, 202, 250, 226, 244, 157, 118, 255, 73, 166, 248, 22, 49, 226, 240, 129, 213, 218, 191, 27, 166, + 86, 70, 106, 104, 64, 26, 193, 27, 156, 230, 190, 179, 163, 28, 85, 122, 27, 204, 140, 146, 33, 239, 229, 194, + 220, 75, 142, 93, 43, 188, 246, 47, 222, 179, 86, 176, 226, 27, 215, 84, 97, 149, 210, 209, 170, 37, 27, 141, 31, + 226, 245, 96, 49, 237, 103, 27, 248, 179, 172, 187, 166, 143, 125, 144, 27, 110, 133, 113, 9, 237, 59, 3, 88, 27, + 250, 177, 58, 227, 109, 30, 132, 93, 65, 68, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 116, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15654f6d8c77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "016c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8793665082608878508" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11660097171077401008" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "adb845" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4696963733946582568" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12213068044761981721" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15504131016367033392" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fbf4615654f6d8c7742016cff9f1b7a095fcd42a883acd8669f1ba1d0fc99689b09b09f43adb8451b412ef7a164c74628ffff1ba97d88add9b66319d8669f1bd729bd03d5ac4c3080ffffff", + "cborBytes": [ + 159, 191, 70, 21, 101, 79, 109, 140, 119, 66, 1, 108, 255, 159, 27, 122, 9, 95, 205, 66, 168, 131, 172, 216, 102, + 159, 27, 161, 208, 252, 153, 104, 155, 9, 176, 159, 67, 173, 184, 69, 27, 65, 46, 247, 161, 100, 199, 70, 40, 255, + 255, 27, 169, 125, 136, 173, 217, 182, 99, 25, 216, 102, 159, 27, 215, 41, 189, 3, 213, 172, 76, 48, 128, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 117, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12479739235341787517" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c735" + }, + { + "_tag": "ByteArray", + "bytearray": "6b2caaf3b713" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12645028124132544687" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b0a2dc37eb4b29350191" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8365018844436640919" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fe09cd62ec719716aec305c9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3007900024139294186" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da86538d35b8fc" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17083461049695904139" + } + } + ] + }, + "cborHex": "9f9f1bad30f0b6cc0d617d42c735466b2caaf3b713d8669f1baf7c2a1529be90af9f4ab0a2dc37eb4b293501911b74168451ba1834974cfe09cd62ec719716aec305c91b29be3522aab625ea47da86538d35b8fcffffff1bed14a5500958a18bff", + "cborBytes": [ + 159, 159, 27, 173, 48, 240, 182, 204, 13, 97, 125, 66, 199, 53, 70, 107, 44, 170, 243, 183, 19, 216, 102, 159, 27, + 175, 124, 42, 21, 41, 190, 144, 175, 159, 74, 176, 162, 220, 55, 235, 75, 41, 53, 1, 145, 27, 116, 22, 132, 81, + 186, 24, 52, 151, 76, 254, 9, 205, 98, 236, 113, 151, 22, 174, 195, 5, 201, 27, 41, 190, 53, 34, 170, 182, 37, + 234, 71, 218, 134, 83, 141, 53, 184, 252, 255, 255, 255, 27, 237, 20, 165, 80, 9, 88, 161, 139, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 118, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16021475108538013683" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a65cdd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "210be45098a120" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6607368253583826678" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14544071706679102990" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16531174204098201802" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b6afe7725f8c" + }, + { + "_tag": "ByteArray", + "bytearray": "59cd70b43e8f2d9b8fe139" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10764598720370636387" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14334071831072632361" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f0525b9dae39d55ca2" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5237834554518040384" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15848861387821060479" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aac0cb04de4da158e3c6" + }, + { + "_tag": "ByteArray", + "bytearray": "4c7f862a42526ded7a786d43" + }, + { + "_tag": "ByteArray", + "bytearray": "45c0139fb0b8b7c855" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11547819973233796924" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11361249375038394600" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9ec0b9d25b72bfa8b872" + }, + { + "_tag": "ByteArray", + "bytearray": "b91006af92" + }, + { + "_tag": "ByteArray", + "bytearray": "cd09fe92eafc9633b1a261" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc051c9bad559046fe3a" + } + ] + } + ] + }, + "cborHex": "9f9f1bde57b6b9ce2bd7f3bf43a65cdd47210be45098a120ffffd8669f1b5bb2166b570e9ef69f1bc9d6ec28d06ace0effff9f9f1be56a875a4b5fc8ca46b6afe7725f8c4b59cd70b43e8f2d9b8fe1391b95638980bd50f6631bc6ecda629c046e29ff49f0525b9dae39d55ca2ffd8669f1b48b086c6ae506f409fd8669f1bdbf277761b7a917f9f4aaac0cb04de4da158e3c64c4c7f862a42526ded7a786d434945c0139fb0b8b7c855ffffd8669f1ba04219152ac2e73c9f1b9dab441cb3cad0e84a9ec0b9d25b72bfa8b87245b91006af924bcd09fe92eafc9633b1a261ffff4afc051c9bad559046fe3affffff", + "cborBytes": [ + 159, 159, 27, 222, 87, 182, 185, 206, 43, 215, 243, 191, 67, 166, 92, 221, 71, 33, 11, 228, 80, 152, 161, 32, 255, + 255, 216, 102, 159, 27, 91, 178, 22, 107, 87, 14, 158, 246, 159, 27, 201, 214, 236, 40, 208, 106, 206, 14, 255, + 255, 159, 159, 27, 229, 106, 135, 90, 75, 95, 200, 202, 70, 182, 175, 231, 114, 95, 140, 75, 89, 205, 112, 180, + 62, 143, 45, 155, 143, 225, 57, 27, 149, 99, 137, 128, 189, 80, 246, 99, 27, 198, 236, 218, 98, 156, 4, 110, 41, + 255, 73, 240, 82, 91, 157, 174, 57, 213, 92, 162, 255, 216, 102, 159, 27, 72, 176, 134, 198, 174, 80, 111, 64, + 159, 216, 102, 159, 27, 219, 242, 119, 118, 27, 122, 145, 127, 159, 74, 170, 192, 203, 4, 222, 77, 161, 88, 227, + 198, 76, 76, 127, 134, 42, 66, 82, 109, 237, 122, 120, 109, 67, 73, 69, 192, 19, 159, 176, 184, 183, 200, 85, 255, + 255, 216, 102, 159, 27, 160, 66, 25, 21, 42, 194, 231, 60, 159, 27, 157, 171, 68, 28, 179, 202, 208, 232, 74, 158, + 192, 185, 210, 91, 114, 191, 168, 184, 114, 69, 185, 16, 6, 175, 146, 75, 205, 9, 254, 146, 234, 252, 150, 51, + 177, 162, 97, 255, 255, 74, 252, 5, 28, 155, 173, 85, 144, 70, 254, 58, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 119, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "bc621ba38012a3c7df5959fe" + }, + { + "_tag": "ByteArray", + "bytearray": "fe80f03885" + }, + { + "_tag": "ByteArray", + "bytearray": "335e317761e9183c" + } + ] + }, + "cborHex": "9fa04cbc621ba38012a3c7df5959fe45fe80f0388548335e317761e9183cff", + "cborBytes": [ + 159, 160, 76, 188, 98, 27, 163, 128, 18, 163, 199, 223, 89, 89, 254, 69, 254, 128, 240, 56, 133, 72, 51, 94, 49, + 119, 97, 233, 24, 60, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 120, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6598828450294518569" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00f8" + } + ] + }, + "cborHex": "9f1b5b93bf83718bd3294200f8ff", + "cborBytes": [159, 27, 91, 147, 191, 131, 113, 139, 211, 41, 66, 0, 248, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 121, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f7283e7bbbb73199" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11648343750656958115" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18071256421011241404" + } + }, + { + "_tag": "ByteArray", + "bytearray": "44f9b209966fe9a38ec8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c3a11d382903bda311849796" + }, + { + "_tag": "ByteArray", + "bytearray": "c95b940e9fc0f9" + }, + { + "_tag": "ByteArray", + "bytearray": "aef7d8" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "26a3e5080440cdb25b80" + } + ] + } + ] + }, + "cborHex": "9f80d8669f1bffffffffffffffed9f9f48f7283e7bbbb731991ba1a73aecf78c9ea3ff1bfac9fff8235f39bc4a44f9b209966fe9a38ec89f4cc3a11d382903bda31184979647c95b940e9fc0f943aef7d8ff4a26a3e5080440cdb25b80ffffff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 159, 72, 247, 40, 62, 123, 187, 183, 49, + 153, 27, 161, 167, 58, 236, 247, 140, 158, 163, 255, 27, 250, 201, 255, 248, 35, 95, 57, 188, 74, 68, 249, 178, 9, + 150, 111, 233, 163, 142, 200, 159, 76, 195, 161, 29, 56, 41, 3, 189, 163, 17, 132, 151, 150, 71, 201, 91, 148, 14, + 159, 192, 249, 67, 174, 247, 216, 255, 74, 38, 163, 229, 8, 4, 64, 205, 178, 91, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 122, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "462466162675360694" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0e2d05353a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "540db10c7e805bc78dfb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9076843070881527405" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4883150775248548745" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15976984977257970967" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7e33965fb17e4a7c51c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6382869749819230640" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1785714577209591458" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "2f0056762ad480cbfb" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "314590750134189145" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b56387e69" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "494894039964920970" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10499620594885390956" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6423257582977225632" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f23c770570" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15821512377741959179" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "739e3413f876bc47ca9c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11940680844428820953" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8feaf4c80efd76aecc4429" + }, + { + "_tag": "ByteArray", + "bytearray": "0cfc5869a1b3ca9062d223" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10352375857835822637" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb5fdd66af" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9307159824080934471" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1026173473926927626" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6387987959731581611" + } + } + ] + }, + "cborHex": "9fa0d8669f1b066b028652e723b69f450e2d05353a9f4a540db10c7e805bc78dfb1b7df76cae89dbf66d1b43c46fc20f5cf389ffd8669f1bddb9a72fe736bd179f4a7e33965fb17e4a7c51c41b58948238358fc9b01b18c821f264d086a2419dffff80492f0056762ad480cbfbffff9fbf1b045da69ed75f3c59453b56387e691b06de3781dd912c8a1b91b6254d3a84f26c1b5923febd663113a045f23c7705701bdb914dae7cc1600b4a739e3413f876bc47ca9cff9f1ba5b5d1f6ac7dc1d94b8feaf4c80efd76aecc44294b0cfc5869a1b3ca9062d223ffd8669f1b8fab06fe53a24e2d9f45fb5fdd66afffff1b8129ac8c6e219647ff1b0e3db3566f57d50a1b58a6b1345145f2abff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 6, 107, 2, 134, 82, 231, 35, 182, 159, 69, 14, 45, 5, 53, 58, 159, 74, 84, 13, 177, + 12, 126, 128, 91, 199, 141, 251, 27, 125, 247, 108, 174, 137, 219, 246, 109, 27, 67, 196, 111, 194, 15, 92, 243, + 137, 255, 216, 102, 159, 27, 221, 185, 167, 47, 231, 54, 189, 23, 159, 74, 126, 51, 150, 95, 177, 126, 74, 124, + 81, 196, 27, 88, 148, 130, 56, 53, 143, 201, 176, 27, 24, 200, 33, 242, 100, 208, 134, 162, 65, 157, 255, 255, + 128, 73, 47, 0, 86, 118, 42, 212, 128, 203, 251, 255, 255, 159, 191, 27, 4, 93, 166, 158, 215, 95, 60, 89, 69, 59, + 86, 56, 126, 105, 27, 6, 222, 55, 129, 221, 145, 44, 138, 27, 145, 182, 37, 77, 58, 132, 242, 108, 27, 89, 35, + 254, 189, 102, 49, 19, 160, 69, 242, 60, 119, 5, 112, 27, 219, 145, 77, 174, 124, 193, 96, 11, 74, 115, 158, 52, + 19, 248, 118, 188, 71, 202, 156, 255, 159, 27, 165, 181, 209, 246, 172, 125, 193, 217, 75, 143, 234, 244, 200, 14, + 253, 118, 174, 204, 68, 41, 75, 12, 252, 88, 105, 161, 179, 202, 144, 98, 210, 35, 255, 216, 102, 159, 27, 143, + 171, 6, 254, 83, 162, 78, 45, 159, 69, 251, 95, 221, 102, 175, 255, 255, 27, 129, 41, 172, 140, 110, 33, 150, 71, + 255, 27, 14, 61, 179, 86, 111, 87, 213, 10, 27, 88, 166, 177, 52, 81, 69, 242, 171, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 123, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13518167519366350558" + } + } + ] + }, + "cborHex": "9f1bbb9a2dbc8e0e06deff", + "cborBytes": [159, 27, 187, 154, 45, 188, 142, 14, 6, 222, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 124, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "3663c75b586ecb1ce1e18a0c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5131985000619086389" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13932671237800957616" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10079516421856754394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15069928289484804427" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d181b12a5ae9727dc56" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9e0ff19858dbc0e2edb977d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61656f07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15414340656760094791" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "985a98b075fa0de22476da72" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8123854694140972720" + } + }, + { + "_tag": "ByteArray", + "bytearray": "77e70626f678" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3147131506152031737" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f804c3663c75b586ecb1ce1e18a0cbf1b4738792aea8892351bc15acaac1d6d96b01b8be1a2c8387cfada1bd12323ef755a114b4a1d181b12a5ae9727dc564ce9e0ff19858dbc0e2edb977d4461656f071bd5eabd289d0c0047ff4c985a98b075fa0de22476da729f1b70bdbacd63298eb04677e70626f6789f1b2bacdb6e3da1c5f9ffffff", + "cborBytes": [ + 159, 128, 76, 54, 99, 199, 91, 88, 110, 203, 28, 225, 225, 138, 12, 191, 27, 71, 56, 121, 42, 234, 136, 146, 53, + 27, 193, 90, 202, 172, 29, 109, 150, 176, 27, 139, 225, 162, 200, 56, 124, 250, 218, 27, 209, 35, 35, 239, 117, + 90, 17, 75, 74, 29, 24, 27, 18, 165, 174, 151, 39, 220, 86, 76, 233, 224, 255, 25, 133, 141, 188, 14, 46, 219, + 151, 125, 68, 97, 101, 111, 7, 27, 213, 234, 189, 40, 157, 12, 0, 71, 255, 76, 152, 90, 152, 176, 117, 250, 13, + 226, 36, 118, 218, 114, 159, 27, 112, 189, 186, 205, 99, 41, 142, 176, 70, 119, 231, 6, 38, 246, 120, 159, 27, 43, + 172, 219, 110, 61, 161, 197, 249, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 125, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9028653754607573625" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3703411053808024507" + } + } + ] + }, + "cborHex": "9f1b7d4c38c103619a791b336528bb5f7b7bbbff", + "cborBytes": [159, 27, 125, 76, 56, 193, 3, 97, 154, 121, 27, 51, 101, 40, 187, 95, 123, 123, 187, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 126, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9387718783797485956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8068306091873811854" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fb0ccc28880" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6443fb098c0ac0f6fc76" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7076703434601589593" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abc3dfabdff23e1f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15599451650212101159" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44cbe824a019e50d4a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1732031907054665531" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "baa453185de8ab5d4bc321" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2ab41627d5c81cd9b96e582" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14287250127635152138" + } + } + ] + }, + "cborHex": "9fbf1b8247e07edf82e1841b6ff861a491423d8e463fb0ccc288804a6443fb098c0ac0f6fc76ffbf1b62358047a036eb5948abc3dfabdff23e1f1bd87c62a05dc5fc274944cbe824a019e50d4a41381b180969d7bfa2bf3b4bbaa453185de8ab5d4bc3214cf2ab41627d5c81cd9b96e582ff1bc646824b42d8fd0aff", + "cborBytes": [ + 159, 191, 27, 130, 71, 224, 126, 223, 130, 225, 132, 27, 111, 248, 97, 164, 145, 66, 61, 142, 70, 63, 176, 204, + 194, 136, 128, 74, 100, 67, 251, 9, 140, 10, 192, 246, 252, 118, 255, 191, 27, 98, 53, 128, 71, 160, 54, 235, 89, + 72, 171, 195, 223, 171, 223, 242, 62, 31, 27, 216, 124, 98, 160, 93, 197, 252, 39, 73, 68, 203, 232, 36, 160, 25, + 229, 13, 74, 65, 56, 27, 24, 9, 105, 215, 191, 162, 191, 59, 75, 186, 164, 83, 24, 93, 232, 171, 93, 75, 195, 33, + 76, 242, 171, 65, 98, 125, 92, 129, 205, 155, 150, 229, 130, 255, 27, 198, 70, 130, 75, 66, 216, 253, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 127, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9826603440559275389" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7805251113176564521" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a13e2645cdf2ee90" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10883261504584438467" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8561672030894130928" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16379753523663161197" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13651180102478629994" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7079210474934730137" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16054782212969665165" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35a861f247" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17346536613107264666" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2077528790568300239" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f416a9f1b885f1bc3ff2abd7dd8669f1b6c51d2888f9c83299f48a13e2645cdf2ee90ffff80ff9f1b97091cad2a7052c3bf1b76d12b59b4d786f01be350930bce65476d1bbd72bbf9e51e8c6a1b623e686b70b57d991bdece0b5c5e51128d4535a861f2471bf0bb4724cb90ec9a1b1cd4dd6d84786ecfffffff", + "cborBytes": [ + 159, 65, 106, 159, 27, 136, 95, 27, 195, 255, 42, 189, 125, 216, 102, 159, 27, 108, 81, 210, 136, 143, 156, 131, + 41, 159, 72, 161, 62, 38, 69, 205, 242, 238, 144, 255, 255, 128, 255, 159, 27, 151, 9, 28, 173, 42, 112, 82, 195, + 191, 27, 118, 209, 43, 89, 180, 215, 134, 240, 27, 227, 80, 147, 11, 206, 101, 71, 109, 27, 189, 114, 187, 249, + 229, 30, 140, 106, 27, 98, 62, 104, 107, 112, 181, 125, 153, 27, 222, 206, 11, 92, 94, 81, 18, 141, 69, 53, 168, + 97, 242, 71, 27, 240, 187, 71, 36, 203, 144, 236, 154, 27, 28, 212, 221, 109, 132, 120, 110, 207, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 128, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8098624113208790227" + } + }, + { + "_tag": "ByteArray", + "bytearray": "25b05a36" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17967718166257098582" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1938046062964644395" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13505101050074232695" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5160611233141696028" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e55f4ca228b90cb" + }, + { + "_tag": "ByteArray", + "bytearray": "64be9d2e7367220388170a" + }, + { + "_tag": "ByteArray", + "bytearray": "2c3de6dd6404" + }, + { + "_tag": "ByteArray", + "bytearray": "f1" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0e509b8d88" + }, + { + "_tag": "ByteArray", + "bytearray": "52a1d22d4d525a94b8c68df4" + } + ] + }, + "cborHex": "9f1b706417b8fd390cd34425b05a36d8669f1bf95a2879a4165f569f9f1b1ae552a0455a1a2b1bbb6bc1da196df777ffa0809f1b479e2c930f4d261c488e55f4ca228b90cb4b64be9d2e7367220388170a462c3de6dd640441f1ffffff450e509b8d884c52a1d22d4d525a94b8c68df4ff", + "cborBytes": [ + 159, 27, 112, 100, 23, 184, 253, 57, 12, 211, 68, 37, 176, 90, 54, 216, 102, 159, 27, 249, 90, 40, 121, 164, 22, + 95, 86, 159, 159, 27, 26, 229, 82, 160, 69, 90, 26, 43, 27, 187, 107, 193, 218, 25, 109, 247, 119, 255, 160, 128, + 159, 27, 71, 158, 44, 147, 15, 77, 38, 28, 72, 142, 85, 244, 202, 34, 139, 144, 203, 75, 100, 190, 157, 46, 115, + 103, 34, 3, 136, 23, 10, 70, 44, 61, 230, 221, 100, 4, 65, 241, 255, 255, 255, 69, 14, 80, 155, 141, 136, 76, 82, + 161, 210, 45, 77, 82, 90, 148, 184, 198, 141, 244, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 129, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13262909010275030030" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3957568799355245600" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6074920585954938103" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9747006628199354193" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10966262255193655106" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f319959" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4b26404a0f89a69ae01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5896149835883934312" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1f030f6b58c767" + } + ] + }, + "cborHex": "9f9f1bb80f517995c5540e1b36ec1bdadbbd1420bf1b544e74162c8d4cf71b874452e2f1334f511b982ffd6b5a978742442f3199594ac4b26404a0f89a69ae011b51d355095e56f268ffff471f030f6b58c767ff", + "cborBytes": [ + 159, 159, 27, 184, 15, 81, 121, 149, 197, 84, 14, 27, 54, 236, 27, 218, 219, 189, 20, 32, 191, 27, 84, 78, 116, + 22, 44, 141, 76, 247, 27, 135, 68, 82, 226, 241, 51, 79, 81, 27, 152, 47, 253, 107, 90, 151, 135, 66, 68, 47, 49, + 153, 89, 74, 196, 178, 100, 4, 160, 248, 154, 105, 174, 1, 27, 81, 211, 85, 9, 94, 86, 242, 104, 255, 255, 71, 31, + 3, 15, 107, 88, 199, 103, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 130, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2fbfb105af4f08b46d12" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18041036964705795955" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12385250964667342748" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5b9f6b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16983225625130242493" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "515d567325274987a8" + }, + { + "_tag": "ByteArray", + "bytearray": "d51238407c56f4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7761815974584891216" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5802741d133f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8872563259210058173" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "43314909014014509" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "462d7d7edd8648cc" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4a2fbfb105af4f08b46d12d8669f1bfa5ea388acfaff739f1babe14021eb0f9f9c9f435b9f6bff1bebb089b99e3311bdffff49515d567325274987a847d51238407c56f4d8669f1b6bb782814915b7509fa0a0465802741d133f1b7b21ad468065c9bdbf1b0099e2ae25423a2d48462d7d7edd8648ccffffffff", + "cborBytes": [ + 159, 74, 47, 191, 177, 5, 175, 79, 8, 180, 109, 18, 216, 102, 159, 27, 250, 94, 163, 136, 172, 250, 255, 115, 159, + 27, 171, 225, 64, 33, 235, 15, 159, 156, 159, 67, 91, 159, 107, 255, 27, 235, 176, 137, 185, 158, 51, 17, 189, + 255, 255, 73, 81, 93, 86, 115, 37, 39, 73, 135, 168, 71, 213, 18, 56, 64, 124, 86, 244, 216, 102, 159, 27, 107, + 183, 130, 129, 73, 21, 183, 80, 159, 160, 160, 70, 88, 2, 116, 29, 19, 63, 27, 123, 33, 173, 70, 128, 101, 201, + 189, 191, 27, 0, 153, 226, 174, 37, 66, 58, 45, 72, 70, 45, 125, 126, 221, 134, 72, 204, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 131, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6772057497093334535" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1050829749617625017" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ec15d7f9ca1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8431279452181732226" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12734084223879445987" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a6c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2430468373303396706" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13f36c50a66c9dd5224d" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7606749155317106337" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7046406131993968966" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1e65af0218223b9dd9c1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10145020148257317972" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6b76b78db7c2eca7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13786683941089096886" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5b7e4ef0ec90" + }, + { + "_tag": "ByteArray", + "bytearray": "00bf06df1eb39436e1989749" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "79e84daf" + }, + { + "_tag": "ByteArray", + "bytearray": "8f22a1" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02fe" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6947348045243928182" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fdf66ee84bc6a8199012a0e6" + }, + { + "_tag": "ByteArray", + "bytearray": "96ea5cf309e2" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8d32d44d7ea72f52a5746f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7698511152123981970" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea669084" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f0a08368a332b" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11539454043526799537" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15147498309621948300" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16298881782174756798" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5989504714651950295" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14416786512728814404" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16874460324442439050" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "993740350635908142" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e26a695f9c8584e2" + }, + { + "_tag": "ByteArray", + "bytearray": "600ff6" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4857275247958865384" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "deebce6afb327aa155759f7c" + }, + { + "_tag": "ByteArray", + "bytearray": "3581cd49ec" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b5dfb2e69e8c4e60780ffbf1b0e954c16f95f07b9468ec15d7f9ca11b7501ebfdad579b821bb0b88e22303d7de3420a6c1b21bac21bbc92096241c34a13f36c50a66c9dd5224dffffa0d8669f1b69909a0df22dc6a19fd8669f1b61c9dd0b28a281469f4a1e65af0218223b9dd9c11b8cca5a13000ee454486b76b78db7c2eca71bbf5423ffdb32b4b6ffff465b7e4ef0ec904c00bf06df1eb39436e19897499f4479e84daf438f22a1ff4202feffffd8669f1b6069f03d0fc4ce769f4cfdf66ee84bc6a8199012a0e64696ea5cf309e2a0bf4cd8d32d44d7ea72f52a5746f51b6ad69b1ab9bbb09244ea669084473f0a08368a332bffd8669f1ba02460505e5c20b180ffffffd8669f1bd236b9752cd89f8c9f1be23142a02e9cafbed8669f1b531efecde15b5cd79f1bc812b6f32dd7f3441bea2e2042a6d07d8a1b0dca799576a01c2e48e26a695f9c8584e243600ff6ffffd8669f1b4368821a62e2b5e89f4cdeebce6afb327aa155759f7c453581cd49ecffffffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 93, 251, 46, 105, 232, 196, 230, 7, 128, 255, 191, 27, 14, 149, 76, 22, 249, 95, 7, + 185, 70, 142, 193, 93, 127, 156, 161, 27, 117, 1, 235, 253, 173, 87, 155, 130, 27, 176, 184, 142, 34, 48, 61, 125, + 227, 66, 10, 108, 27, 33, 186, 194, 27, 188, 146, 9, 98, 65, 195, 74, 19, 243, 108, 80, 166, 108, 157, 213, 34, + 77, 255, 255, 160, 216, 102, 159, 27, 105, 144, 154, 13, 242, 45, 198, 161, 159, 216, 102, 159, 27, 97, 201, 221, + 11, 40, 162, 129, 70, 159, 74, 30, 101, 175, 2, 24, 34, 59, 157, 217, 193, 27, 140, 202, 90, 19, 0, 14, 228, 84, + 72, 107, 118, 183, 141, 183, 194, 236, 167, 27, 191, 84, 35, 255, 219, 50, 180, 182, 255, 255, 70, 91, 126, 78, + 240, 236, 144, 76, 0, 191, 6, 223, 30, 179, 148, 54, 225, 152, 151, 73, 159, 68, 121, 232, 77, 175, 67, 143, 34, + 161, 255, 66, 2, 254, 255, 255, 216, 102, 159, 27, 96, 105, 240, 61, 15, 196, 206, 118, 159, 76, 253, 246, 110, + 232, 75, 198, 168, 25, 144, 18, 160, 230, 70, 150, 234, 92, 243, 9, 226, 160, 191, 76, 216, 211, 45, 68, 215, 234, + 114, 245, 42, 87, 70, 245, 27, 106, 214, 155, 26, 185, 187, 176, 146, 68, 234, 102, 144, 132, 71, 63, 10, 8, 54, + 138, 51, 43, 255, 216, 102, 159, 27, 160, 36, 96, 80, 94, 92, 32, 177, 128, 255, 255, 255, 216, 102, 159, 27, 210, + 54, 185, 117, 44, 216, 159, 140, 159, 27, 226, 49, 66, 160, 46, 156, 175, 190, 216, 102, 159, 27, 83, 30, 254, + 205, 225, 91, 92, 215, 159, 27, 200, 18, 182, 243, 45, 215, 243, 68, 27, 234, 46, 32, 66, 166, 208, 125, 138, 27, + 13, 202, 121, 149, 118, 160, 28, 46, 72, 226, 106, 105, 95, 156, 133, 132, 226, 67, 96, 15, 246, 255, 255, 216, + 102, 159, 27, 67, 104, 130, 26, 98, 226, 181, 232, 159, 76, 222, 235, 206, 106, 251, 50, 122, 161, 85, 117, 159, + 124, 69, 53, 129, 205, 73, 236, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 132, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b6a7d4bf8436d498456c4bc6" + }, + { + "_tag": "ByteArray", + "bytearray": "27f808b65c85082d00" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a8d206" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2938514556958246733" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd905069f4cb6a7d4bf8436d498456c4bc64927f808b65c85082d00ff9f1bfffffffffffffff643a8d2061b28c7b36baecf874d05ffffff", + "cborBytes": [ + 159, 159, 217, 5, 6, 159, 76, 182, 167, 212, 191, 132, 54, 212, 152, 69, 108, 75, 198, 73, 39, 248, 8, 182, 92, + 133, 8, 45, 0, 255, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 67, 168, 210, 6, 27, 40, 199, 179, 107, 174, + 207, 135, 77, 5, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 133, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11561094373369288053" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b67e05aa20e075e059d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab9e7e8703bdb4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7586c998" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2634200058348210320" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae5a676e5e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4e646" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2df875cc" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7047979537474525976" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5585875874991311810" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "819043335498613264" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18247609349713816337" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "af07b1c65a81fb73" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7750350470129583471" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8940562641773278682" + } + }, + { + "_tag": "ByteArray", + "bytearray": "047f824d95d279f357" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9923686511779426407" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1ba07142144b719575bf4a6b67e05aa20e075e059d47ab9e7e8703bdb4447586c9981b248e8eff1928889045ae5a676e5e418743c4e646442df875ccff9fd8669f1b61cf740c2b641b189f410a1b4d85048358480bc21b0b5dd392fc0bc21041001bfd3c880609c9eb11ffffff9f48af07b1c65a81fb73d8669f1b6b8ec6b080db056f9f41bd1b7c13425a830635da49047f824d95d279f3571b89b8044df4f2b067ffffffff", + "cborBytes": [ + 159, 27, 160, 113, 66, 20, 75, 113, 149, 117, 191, 74, 107, 103, 224, 90, 162, 14, 7, 94, 5, 157, 71, 171, 158, + 126, 135, 3, 189, 180, 68, 117, 134, 201, 152, 27, 36, 142, 142, 255, 25, 40, 136, 144, 69, 174, 90, 103, 110, 94, + 65, 135, 67, 196, 230, 70, 68, 45, 248, 117, 204, 255, 159, 216, 102, 159, 27, 97, 207, 116, 12, 43, 100, 27, 24, + 159, 65, 10, 27, 77, 133, 4, 131, 88, 72, 11, 194, 27, 11, 93, 211, 146, 252, 11, 194, 16, 65, 0, 27, 253, 60, + 136, 6, 9, 201, 235, 17, 255, 255, 255, 159, 72, 175, 7, 177, 198, 90, 129, 251, 115, 216, 102, 159, 27, 107, 142, + 198, 176, 128, 219, 5, 111, 159, 65, 189, 27, 124, 19, 66, 90, 131, 6, 53, 218, 73, 4, 127, 130, 77, 149, 210, + 121, 243, 87, 27, 137, 184, 4, 77, 244, 242, 176, 103, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 134, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9583204935423087857" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1161896733718213986" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "149614944813019081" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3992670d7d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1480470435084924603" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16322615812082710941" + } + }, + { + "_tag": "ByteArray", + "bytearray": "262a06cc" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18137907621899762287" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9064642666130225726" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14230798517795550663" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "df7932d7" + }, + { + "_tag": "ByteArray", + "bytearray": "7b8b8aa9b3294dfb0c8a" + }, + { + "_tag": "ByteArray", + "bytearray": "8c829e377d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10034858675442027057" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3417490500633299565" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17570986782199323939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bc5f55c" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b84fe621d61a9d4f11b101fe2ec5ef5f5629fd8669f1b021389ffe6ab6fc99f453992670d7d1b148bb0044fb476bb1be2859499a45d399d44262a06ccffffff9f9f1bfbb6cae2242f7a6fffffd8669f1b7dcc147a728aba3e9fd8669f1bc57df3da9b5bf5c79f44df7932d74a7b8b8aa9b3294dfb0c8a458c829e377d1b8b42facc60f80a31ffff1b2f6d5d80f1850a6dbf1bf3d8af6222131d23443bc5f55cffffffff", + "cborBytes": [ + 159, 27, 132, 254, 98, 29, 97, 169, 212, 241, 27, 16, 31, 226, 236, 94, 245, 245, 98, 159, 216, 102, 159, 27, 2, + 19, 137, 255, 230, 171, 111, 201, 159, 69, 57, 146, 103, 13, 125, 27, 20, 139, 176, 4, 79, 180, 118, 187, 27, 226, + 133, 148, 153, 164, 93, 57, 157, 68, 38, 42, 6, 204, 255, 255, 255, 159, 159, 27, 251, 182, 202, 226, 36, 47, 122, + 111, 255, 255, 216, 102, 159, 27, 125, 204, 20, 122, 114, 138, 186, 62, 159, 216, 102, 159, 27, 197, 125, 243, + 218, 155, 91, 245, 199, 159, 68, 223, 121, 50, 215, 74, 123, 139, 138, 169, 179, 41, 77, 251, 12, 138, 69, 140, + 130, 158, 55, 125, 27, 139, 66, 250, 204, 96, 248, 10, 49, 255, 255, 27, 47, 109, 93, 128, 241, 133, 10, 109, 191, + 27, 243, 216, 175, 98, 34, 19, 29, 35, 68, 59, 197, 245, 92, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 135, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00d2af1df0d143" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10898897506431046756" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "244861570f85bca3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "640633" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12033532145279075997" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5bddcb30c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8dd57f2ff10d7870" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e04304dc516f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aae42855872f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6186648252797958425" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4c6e994c6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13138474533452648574" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf4700d2af1df0d1431b9740a9898a36946448244861570f85bca341db436406331ba6ffb1bad09a869d45b5bddcb30c488dd57f2ff10d7870ffd8669f1bfffffffffffffff19f8046e04304dc516f9f46aae42855872f1b55db63cec250391945e4c6e994c61bb6553cfa40f6107effffffff", + "cborBytes": [ + 159, 191, 71, 0, 210, 175, 29, 240, 209, 67, 27, 151, 64, 169, 137, 138, 54, 148, 100, 72, 36, 72, 97, 87, 15, + 133, 188, 163, 65, 219, 67, 100, 6, 51, 27, 166, 255, 177, 186, 208, 154, 134, 157, 69, 181, 189, 220, 179, 12, + 72, 141, 213, 127, 47, 241, 13, 120, 112, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, + 128, 70, 224, 67, 4, 220, 81, 111, 159, 70, 170, 228, 40, 85, 135, 47, 27, 85, 219, 99, 206, 194, 80, 57, 25, 69, + 228, 198, 233, 148, 198, 27, 182, 85, 60, 250, 64, 246, 16, 126, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 136, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cdb48e45" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1519814368302040135" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3526749639585486080" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4278098297831397810" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dd8f02d02a1497f6abbba7" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4305674069986726947" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12532201442694055616" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dca2dc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14443441262469103970" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7da74661f2bf3e6c8a08e36e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b89ca46423" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "129962" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9c6f7c0b3fe6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9e086cc" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c104a874369e267aa67f8653" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14882325713783625247" + } + } + } + ] + } + ] + }, + "cborHex": "9f44cdb48e459f9f1b1517771d9b2d84471b30f1881c973ad5001b3b5edbbc4c7199b2ff4bdd8f02d02a1497f6abbba7ff1b3bc0d3c1142b5423bf1badeb52d04d6ac6c043dca2dc1bc871694db7b0c1624c7da74661f2bf3e6c8a08e36e45b89ca464234312996247d9c6f7c0b3fe6d44c9e086ccffbf4cc104a874369e267aa67f86531bce88a46301bc161fffff", + "cborBytes": [ + 159, 68, 205, 180, 142, 69, 159, 159, 27, 21, 23, 119, 29, 155, 45, 132, 71, 27, 48, 241, 136, 28, 151, 58, 213, + 0, 27, 59, 94, 219, 188, 76, 113, 153, 178, 255, 75, 221, 143, 2, 208, 42, 20, 151, 246, 171, 187, 167, 255, 27, + 59, 192, 211, 193, 20, 43, 84, 35, 191, 27, 173, 235, 82, 208, 77, 106, 198, 192, 67, 220, 162, 220, 27, 200, 113, + 105, 77, 183, 176, 193, 98, 76, 125, 167, 70, 97, 242, 191, 62, 108, 138, 8, 227, 110, 69, 184, 156, 164, 100, 35, + 67, 18, 153, 98, 71, 217, 198, 247, 192, 179, 254, 109, 68, 201, 224, 134, 204, 255, 191, 76, 193, 4, 168, 116, + 54, 158, 38, 122, 166, 127, 134, 83, 27, 206, 136, 164, 99, 1, 188, 22, 31, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 137, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2176344756212714768" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "822460602213375750" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13601551168109026352" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "92" + }, + { + "_tag": "ByteArray", + "bytearray": "7cb1e3b1f95fbc8cf74526e0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8434502012308650356" + } + }, + { + "_tag": "ByteArray", + "bytearray": "618b7c30" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15802369364535466941" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b1e33ee0666d7cd101b0b69f78f64ae9f069f9f1bbcc26ab929701c30ff9f41924c7cb1e3b1f95fbc8cf74526e01b750d5ee46cf9797444618b7c301bdb4d4b3666a6dbbdffffff", + "cborBytes": [ + 159, 27, 30, 51, 238, 6, 102, 215, 205, 16, 27, 11, 105, 247, 143, 100, 174, 159, 6, 159, 159, 27, 188, 194, 106, + 185, 41, 112, 28, 48, 255, 159, 65, 146, 76, 124, 177, 227, 177, 249, 95, 188, 140, 247, 69, 38, 224, 27, 117, 13, + 94, 228, 108, 249, 121, 116, 68, 97, 139, 124, 48, 27, 219, 77, 75, 54, 102, 166, 219, 189, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 138, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12570767453737229530" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdcd8564526a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d1f9a6c54ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1856b123cd233bd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edf8bb3774ef419ae2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15661551220799747474" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa7ebbfe65869f63d5a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c9b9bacaf7a22f78ad1a7ae" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1179396293854300651" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12670248606947157752" + } + }, + { + "_tag": "ByteArray", + "bytearray": "915dcdfa0e7406f4" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5155603569911708026" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "376763395172720884" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ed93e6107c4ce" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1974784627066250228" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef0b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4929161207210063141" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11596199722940864778" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6053876841927684879" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1bae7456657a0c9cda46fdcd8564526a464d1f9a6c54ae48e1856b123cd233bd49edf8bb3774ef419ae21bd95901db5b5ab5924afa7ebbfe65869f63d5a84c6c9b9bacaf7a22f78ad1a7aeffd8669f1b105e0eae389909eb9f1bafd5c3fa68f926f848915dcdfa0e7406f4ffffd8669f1b478c62219b52b97a80ffbf1b053a884fcda3e0f4473ed93e6107c4ce1b1b67d827cc2fa3f442ef0b1b4467e6008c6435251ba0edfa356e5f990a1b5403b0e9b510330f414dffffff", + "cborBytes": [ + 159, 159, 191, 27, 174, 116, 86, 101, 122, 12, 156, 218, 70, 253, 205, 133, 100, 82, 106, 70, 77, 31, 154, 108, + 84, 174, 72, 225, 133, 107, 18, 60, 210, 51, 189, 73, 237, 248, 187, 55, 116, 239, 65, 154, 226, 27, 217, 89, 1, + 219, 91, 90, 181, 146, 74, 250, 126, 187, 254, 101, 134, 159, 99, 213, 168, 76, 108, 155, 155, 172, 175, 122, 34, + 247, 138, 209, 167, 174, 255, 216, 102, 159, 27, 16, 94, 14, 174, 56, 153, 9, 235, 159, 27, 175, 213, 195, 250, + 104, 249, 38, 248, 72, 145, 93, 205, 250, 14, 116, 6, 244, 255, 255, 216, 102, 159, 27, 71, 140, 98, 33, 155, 82, + 185, 122, 128, 255, 191, 27, 5, 58, 136, 79, 205, 163, 224, 244, 71, 62, 217, 62, 97, 7, 196, 206, 27, 27, 103, + 216, 39, 204, 47, 163, 244, 66, 239, 11, 27, 68, 103, 230, 0, 140, 100, 53, 37, 27, 160, 237, 250, 53, 110, 95, + 153, 10, 27, 84, 3, 176, 233, 181, 16, 51, 15, 65, 77, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 139, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "07f93d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10109319371223748005" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16624306647521499097" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ba663948369ebb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1664347441774006326" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1541ba6187bd7cdc4b2fc" + }, + { + "_tag": "ByteArray", + "bytearray": "3e7c8762a44c10c61b010ea3" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "07a100fcd1f9026cecb8f8fc" + } + ] + }, + "cborHex": "9f4307f93dd8669f1bfffffffffffffff69fa0d8669f1b8c4b84681ac44da59f1be6b566d10aaf17d947ba663948369ebb1b1718f32e21c510364bc1541ba6187bd7cdc4b2fc4c3e7c8762a44c10c61b010ea3ffffffff4c07a100fcd1f9026cecb8f8fcff", + "cborBytes": [ + 159, 67, 7, 249, 61, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 160, 216, 102, 159, 27, 140, + 75, 132, 104, 26, 196, 77, 165, 159, 27, 230, 181, 102, 209, 10, 175, 23, 217, 71, 186, 102, 57, 72, 54, 158, 187, + 27, 23, 24, 243, 46, 33, 197, 16, 54, 75, 193, 84, 27, 166, 24, 123, 215, 205, 196, 178, 252, 76, 62, 124, 135, + 98, 164, 76, 16, 198, 27, 1, 14, 163, 255, 255, 255, 255, 76, 7, 161, 0, 252, 209, 249, 2, 108, 236, 184, 248, + 252, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 140, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "795272333280722941" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "781928874461431729" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1132515458090841544" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae5e7f6bf19d6101" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b0b095ff93ce4bffd1b0ad9f82b21e507b11b0fb780cf0e24b5c848ae5e7f6bf19d6101ffff", + "cborBytes": [ + 159, 191, 27, 11, 9, 95, 249, 60, 228, 191, 253, 27, 10, 217, 248, 43, 33, 229, 7, 177, 27, 15, 183, 128, 207, 14, + 36, 181, 200, 72, 174, 94, 127, 107, 241, 157, 97, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 141, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3ccd146d" + }, + { + "_tag": "ByteArray", + "bytearray": "83a58f" + } + ] + }, + "cborHex": "9f443ccd146d4383a58fff", + "cborBytes": [159, 68, 60, 205, 20, 109, 67, 131, 165, 143, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 142, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4514694007801937927" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7619291890781082095" + } + } + ] + }, + "cborHex": "9f1b3ea76a47bc9e80071b69bd299b1e0551efff", + "cborBytes": [159, 27, 62, 167, 106, 71, 188, 158, 128, 7, 27, 105, 189, 41, 155, 30, 5, 81, 239, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 143, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13640980728449537726" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14253633884496038408" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5596852423830738102" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14686876305657994664" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17886867940953780372" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f809fa0ff9f1bbd4e7fb3132f16be1bc5cf147fbbdb8a081b4dac03a046b714b641a41bcbd2442f82d89da8ffd8669f1bf83aeb9fa4df709480ff80ff", + "cborBytes": [ + 159, 128, 159, 160, 255, 159, 27, 189, 78, 127, 179, 19, 47, 22, 190, 27, 197, 207, 20, 127, 187, 219, 138, 8, 27, + 77, 172, 3, 160, 70, 183, 20, 182, 65, 164, 27, 203, 210, 68, 47, 130, 216, 157, 168, 255, 216, 102, 159, 27, 248, + 58, 235, 159, 164, 223, 112, 148, 128, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 144, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2994284915755299873" + } + } + ] + }, + "cborHex": "9f1b298dd64437e7b421ff", + "cborBytes": [159, 27, 41, 141, 214, 68, 55, 231, 180, 33, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 145, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4314499362146413608" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6159079809d7" + }, + { + "_tag": "ByteArray", + "bytearray": "e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c106fc49f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2275341684843441617" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27e67049c624de44" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2825920038207387387" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3222964506173284560" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5abc558c68ed980316" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4161874164487565791" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00c4c1c9786a1b183a" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8e61f2e8" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3be02e4f8862ec289f466159079809d741e311ffffd905069fbf01458c106fc49f1b1f93a33503bb6dd14827e67049c624de441b2737af4d690276fb121b2cba45247226a0d0495abc558c68ed9803161b39c1f280862831df4900c4c1c9786a1b183aff448e61f2e8ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 59, 224, 46, 79, 136, 98, 236, 40, 159, 70, 97, 89, 7, 152, 9, 215, 65, 227, 17, 255, 255, + 217, 5, 6, 159, 191, 1, 69, 140, 16, 111, 196, 159, 27, 31, 147, 163, 53, 3, 187, 109, 209, 72, 39, 230, 112, 73, + 198, 36, 222, 68, 27, 39, 55, 175, 77, 105, 2, 118, 251, 18, 27, 44, 186, 69, 36, 114, 38, 160, 208, 73, 90, 188, + 85, 140, 104, 237, 152, 3, 22, 27, 57, 193, 242, 128, 134, 40, 49, 223, 73, 0, 196, 193, 201, 120, 106, 27, 24, + 58, 255, 68, 142, 97, 242, 232, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 146, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8167838573717532516" + } + } + ] + }, + "cborHex": "9f1b7159fde8612aaf64ff", + "cborBytes": [159, 27, 113, 89, 253, 232, 97, 42, 175, 100, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 147, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15037453062870664102" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "48744a469c034f1c5fc80dbd" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "33e19c48699f3c25" + } + ] + }, + "cborHex": "9f1bd0afc3e38b0403a69f4c48744a469c034f1c5fc80dbdff4833e19c48699f3c25ff", + "cborBytes": [ + 159, 27, 208, 175, 195, 227, 139, 4, 3, 166, 159, 76, 72, 116, 74, 70, 156, 3, 79, 28, 95, 200, 13, 189, 255, 72, + 51, 225, 156, 72, 105, 159, 60, 37, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 148, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0d6eb8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12008346931871012084" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a985bfadd885973b" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9f9f430d6eb81ba6a637e95dd2d4f448a985bfadd885973bffff80ff", + "cborBytes": [ + 159, 159, 159, 67, 13, 110, 184, 27, 166, 166, 55, 233, 93, 210, 212, 244, 72, 169, 133, 191, 173, 216, 133, 151, + 59, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 149, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4776977731727228582" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2519695130832619174" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4008313242593433826" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aa0a" + }, + { + "_tag": "ByteArray", + "bytearray": "cff81ce8d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11714685417075837825" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "315068722182711521" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3d74f80cd4759a72c3" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6146353209877190190" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16616722506202872528" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f80d8669f1b424b3befff8d7ea680ff1b22f7c15f1f8f46a6d8669f1b37a063a83d4698e29f9f42aa0a45cff81ce8d31ba292ec51dc410b81ffd8669f1b045f5955618968e19f493d74f80cd4759a72c3ffffa01b554c3badfacfd62e1be69a75148975fad0ffff80ff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 66, 75, 59, 239, 255, 141, 126, 166, 128, 255, 27, 34, 247, 193, 95, 31, 143, 70, + 166, 216, 102, 159, 27, 55, 160, 99, 168, 61, 70, 152, 226, 159, 159, 66, 170, 10, 69, 207, 248, 28, 232, 211, 27, + 162, 146, 236, 81, 220, 65, 11, 129, 255, 216, 102, 159, 27, 4, 95, 89, 85, 97, 137, 104, 225, 159, 73, 61, 116, + 248, 12, 212, 117, 154, 114, 195, 255, 255, 160, 27, 85, 76, 59, 173, 250, 207, 214, 46, 27, 230, 154, 117, 20, + 137, 117, 250, 208, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 150, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5180866342155857079" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14485811749436561766" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6304804440315134604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7489726260051026317" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11258679799535815179" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a8ac4b98124" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13104715499092874966" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e59192a8e5573827" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16376014261842932000" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9c23b9943e0418a0aa7d8e1" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b47e6227d20fa2cb71bc907f109785899661b577f2a3bf34a028c1b67f0da59eb41a18d1b9c3edda06b32ca0b467a8ac4b981241bb5dd4d508dfc96d648e59192a8e55738271be3434a3511e0f1204cd9c23b9943e0418a0aa7d8e1ffff", + "cborBytes": [ + 159, 191, 27, 71, 230, 34, 125, 32, 250, 44, 183, 27, 201, 7, 241, 9, 120, 88, 153, 102, 27, 87, 127, 42, 59, 243, + 74, 2, 140, 27, 103, 240, 218, 89, 235, 65, 161, 141, 27, 156, 62, 221, 160, 107, 50, 202, 11, 70, 122, 138, 196, + 185, 129, 36, 27, 181, 221, 77, 80, 141, 252, 150, 214, 72, 229, 145, 146, 168, 229, 87, 56, 39, 27, 227, 67, 74, + 53, 17, 224, 241, 32, 76, 217, 194, 59, 153, 67, 224, 65, 138, 10, 167, 216, 225, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 151, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "69362b" + } + ] + } + ] + }, + "cborHex": "9f9f4369362bffff", + "cborBytes": [159, 159, 67, 105, 54, 43, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 152, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "787101c0fea041c4" + }, + { + "_tag": "ByteArray", + "bytearray": "3c8bb756d22b1c68af56" + }, + { + "_tag": "ByteArray", + "bytearray": "7408f7c5c341" + } + ] + }, + "cborHex": "9f48787101c0fea041c44a3c8bb756d22b1c68af56467408f7c5c341ff", + "cborBytes": [ + 159, 72, 120, 113, 1, 192, 254, 160, 65, 196, 74, 60, 139, 183, 86, 210, 43, 28, 104, 175, 86, 70, 116, 8, 247, + 197, 195, 65, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 153, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11805294580708178940" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7712289040374352444" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b6ae294a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10541536405638201826" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12688549104628073432" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4110829508530308039" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1149465671148403144" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7b6bd032" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15800992376949893017" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74d10ffc1759de137e331d5c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c7dcab3b62" + }, + { + "_tag": "ByteArray", + "bytearray": "268da60316aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16640893788673249207" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6119666087879403163" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3067" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7177291733634800298" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f38bba2d36e05f72ea9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7940572668273458286" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9400dc2f0b118b7685eb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12144295731710846291" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "560ec439f3c9a91409e781" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1ba3d4d4dfbff47bfc80ff1b6b078e0550a6ca3c44b6ae294a9f414e1b924b0f826ce9c1e2ffff1bb016c82f107503d89f1b390c99a86c2483c79f1b0ff3b8f0124e79c8447b6bd0321bdb4866d97ec0e7994c74d10ffc1759de137e331d5cff9f45c7dcab3b6246268da60316aa1be6f054bbcadf8fb7ffffbf1b54ed6be2300e669b4230671b639adcce08a65aaa4a4f38bba2d36e05f72ea91b6e3294c5559d7c6e4a9400dc2f0b118b7685eb1ba889349fefeae5534b560ec439f3c9a91409e781ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 163, 212, 212, 223, 191, 244, 123, 252, 128, 255, 27, 107, 7, 142, 5, 80, 166, 202, + 60, 68, 182, 174, 41, 74, 159, 65, 78, 27, 146, 75, 15, 130, 108, 233, 193, 226, 255, 255, 27, 176, 22, 200, 47, + 16, 117, 3, 216, 159, 27, 57, 12, 153, 168, 108, 36, 131, 199, 159, 27, 15, 243, 184, 240, 18, 78, 121, 200, 68, + 123, 107, 208, 50, 27, 219, 72, 102, 217, 126, 192, 231, 153, 76, 116, 209, 15, 252, 23, 89, 222, 19, 126, 51, 29, + 92, 255, 159, 69, 199, 220, 171, 59, 98, 70, 38, 141, 166, 3, 22, 170, 27, 230, 240, 84, 187, 202, 223, 143, 183, + 255, 255, 191, 27, 84, 237, 107, 226, 48, 14, 102, 155, 66, 48, 103, 27, 99, 154, 220, 206, 8, 166, 90, 170, 74, + 79, 56, 187, 162, 211, 110, 5, 247, 46, 169, 27, 110, 50, 148, 197, 85, 157, 124, 110, 74, 148, 0, 220, 47, 11, + 17, 139, 118, 133, 235, 27, 168, 137, 52, 159, 239, 234, 229, 83, 75, 86, 14, 196, 57, 243, 201, 169, 20, 9, 231, + 129, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 154, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a3842c8bf64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e421d3f08080dcec070f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "318414572807692532" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7a4f712d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13073768042642765467" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fad6190176c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3493fd435bc8f0f4" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a193" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9687638744553431817" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3260661931563639971" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8107244086652150822" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4947861849076053853" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16182206763988739076" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12440259416701621566" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16491616031738953083" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14699028315923280372" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15237459887354699410" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "93d4c769f4ebf15e74c9e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16955246181894937759" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12199010660465668207" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13649495404691033469" + } + } + ] + } + ] + }, + "cborHex": "9fbf463a3842c8bf6414424bff054ae421d3f08080dcec070f1b046b3c5def82a0f445e7a4f712d01bb56f5ac45993769b46fad6190176c2483493fd435bc8f0f4ff42a193d8669f1b8671681c616b23099fbf1b2d4032c0437d64a31b7082b78af449a4261b44aa562307e2b75d1be092bf509978e4041baca4ae073635553e1be4ddfd678feffd7b1bcbfd705fe203f1f41bd3765509390a5e92ffbf4b93d4c769f4ebf15e74c9e91beb4d2291d7255c9fffd8669f1ba94b97900442706f80ff1bbd6cbfc09fef8d7dffffff", + "cborBytes": [ + 159, 191, 70, 58, 56, 66, 200, 191, 100, 20, 66, 75, 255, 5, 74, 228, 33, 211, 240, 128, 128, 220, 236, 7, 15, 27, + 4, 107, 60, 93, 239, 130, 160, 244, 69, 231, 164, 247, 18, 208, 27, 181, 111, 90, 196, 89, 147, 118, 155, 70, 250, + 214, 25, 1, 118, 194, 72, 52, 147, 253, 67, 91, 200, 240, 244, 255, 66, 161, 147, 216, 102, 159, 27, 134, 113, + 104, 28, 97, 107, 35, 9, 159, 191, 27, 45, 64, 50, 192, 67, 125, 100, 163, 27, 112, 130, 183, 138, 244, 73, 164, + 38, 27, 68, 170, 86, 35, 7, 226, 183, 93, 27, 224, 146, 191, 80, 153, 120, 228, 4, 27, 172, 164, 174, 7, 54, 53, + 85, 62, 27, 228, 221, 253, 103, 143, 239, 253, 123, 27, 203, 253, 112, 95, 226, 3, 241, 244, 27, 211, 118, 85, 9, + 57, 10, 94, 146, 255, 191, 75, 147, 212, 199, 105, 244, 235, 241, 94, 116, 201, 233, 27, 235, 77, 34, 145, 215, + 37, 92, 159, 255, 216, 102, 159, 27, 169, 75, 151, 144, 4, 66, 112, 111, 128, 255, 27, 189, 108, 191, 192, 159, + 239, 141, 125, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 155, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14731785413921823569" + } + } + ] + }, + "cborHex": "9f1bcc71d0c818175b51ff", + "cborBytes": [159, 27, 204, 113, 208, 200, 24, 23, 91, 81, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 156, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13176870853543064851" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bb8d2eab" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0355fae8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "182075028486734746" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce9341578f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13309526162734305005" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f8bd9bdc0354e15" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1073361227552734445" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0605" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4b3f025642a5de71c1968e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11935442026533651134" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d546" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c67b" + } + } + ] + } + ] + }, + "cborHex": "9f9fa0d8669f1bffffffffffffffef9f1bb6dda63a2ca1f51344bb8d2eabffff440355fae89f1b0286dc46136bc39a45ce9341578f1bb8b4ef87328bceed485f8bd9bdc0354e151b0ee558597bf53cedff420605ffbf4cc4b3f025642a5de71c1968e31ba5a3354954ce82be42d54642c67bffff", + "cborBytes": [ + 159, 159, 160, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 27, 182, 221, 166, 58, 44, 161, + 245, 19, 68, 187, 141, 46, 171, 255, 255, 68, 3, 85, 250, 232, 159, 27, 2, 134, 220, 70, 19, 107, 195, 154, 69, + 206, 147, 65, 87, 143, 27, 184, 180, 239, 135, 50, 139, 206, 237, 72, 95, 139, 217, 189, 192, 53, 78, 21, 27, 14, + 229, 88, 89, 123, 245, 60, 237, 255, 66, 6, 5, 255, 191, 76, 196, 179, 240, 37, 100, 42, 93, 231, 28, 25, 104, + 227, 27, 165, 163, 53, 73, 84, 206, 130, 190, 66, 213, 70, 66, 198, 123, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 157, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "bedf8ab22eea40cc681f2c47" + } + ] + }, + "cborHex": "9fa04cbedf8ab22eea40cc681f2c47ff", + "cborBytes": [159, 160, 76, 190, 223, 138, 178, 46, 234, 64, 204, 104, 31, 44, 71, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 158, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "590974468683225502" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6df5d013" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3985348869125788295" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef9cc957" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14297015777266065852" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1020336245267710217" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5720970230123955028" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8cfe75de5e1683ae3327" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14201392528384953966" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c93c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6085835060346478993" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8829116087064203108" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "27c262" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7118943851455993384" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4538912081721520047" + } + } + ] + }, + "cborHex": "9fbf1b08339025ed30599e446df5d0131b374ecdae623f528744ef9cc9571bc6693419c01961bc1b0e28f668baa34109ff9f9f1b4f64f81d011f83544a8cfe75de5e1683ae33271bc5157b432a458e6eff9f42c93cff9f1b54753abe4591e1911b7a87524d72260f64ffff4327c262d8669f1b62cb91b711fc562880ff1b3efd747d79bd6fafff", + "cborBytes": [ + 159, 191, 27, 8, 51, 144, 37, 237, 48, 89, 158, 68, 109, 245, 208, 19, 27, 55, 78, 205, 174, 98, 63, 82, 135, 68, + 239, 156, 201, 87, 27, 198, 105, 52, 25, 192, 25, 97, 188, 27, 14, 40, 246, 104, 186, 163, 65, 9, 255, 159, 159, + 27, 79, 100, 248, 29, 1, 31, 131, 84, 74, 140, 254, 117, 222, 94, 22, 131, 174, 51, 39, 27, 197, 21, 123, 67, 42, + 69, 142, 110, 255, 159, 66, 201, 60, 255, 159, 27, 84, 117, 58, 190, 69, 145, 225, 145, 27, 122, 135, 82, 77, 114, + 38, 15, 100, 255, 255, 67, 39, 194, 98, 216, 102, 159, 27, 98, 203, 145, 183, 17, 252, 86, 40, 128, 255, 27, 62, + 253, 116, 125, 121, 189, 111, 175, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 159, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd905019f80ffd87c80ff", + "cborBytes": [159, 217, 5, 1, 159, 128, 255, 216, 124, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 160, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "161ce828" + }, + { + "_tag": "ByteArray", + "bytearray": "1525ec3e9408979fbf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16029039335159279860" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15809596538614217272" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13775246499842665712" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17546027309645760003" + } + }, + { + "_tag": "ByteArray", + "bytearray": "174c6554d9b5a1c2f226cf88" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "00044b41" + } + ] + }, + "cborHex": "9f44161ce828491525ec3e9408979fbf1bfffffffffffffffe9fd8669f1bde7296598eeeb0f49f1bdb66f849fe587a381bbf2b81b50c90acf01bf38002e012bd06034c174c6554d9b5a1c2f226cf88ffffff4400044b41ff", + "cborBytes": [ + 159, 68, 22, 28, 232, 40, 73, 21, 37, 236, 62, 148, 8, 151, 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 254, + 159, 216, 102, 159, 27, 222, 114, 150, 89, 142, 238, 176, 244, 159, 27, 219, 102, 248, 73, 254, 88, 122, 56, 27, + 191, 43, 129, 181, 12, 144, 172, 240, 27, 243, 128, 2, 224, 18, 189, 6, 3, 76, 23, 76, 101, 84, 217, 181, 161, + 194, 242, 38, 207, 136, 255, 255, 255, 68, 0, 4, 75, 65, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 161, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b9f404" + } + ] + }, + "cborHex": "9f43b9f404ff", + "cborBytes": [159, 67, 185, 244, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 162, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03fb19415d00" + }, + { + "_tag": "ByteArray", + "bytearray": "4a07ed05" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "86792773422345265" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "9f9fd8669f1bfffffffffffffff29f1bffffffffffffffec1bfffffffffffffffd4603fb19415d00444a07ed05ffffd8669f1b013459914ce8ec3180ffff0eff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 236, 27, 255, 255, 255, 255, 255, 255, 255, 253, 70, 3, 251, 25, 65, 93, 0, 68, 74, 7, 237, 5, 255, 255, 216, 102, + 159, 27, 1, 52, 89, 145, 76, 232, 236, 49, 128, 255, 255, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 163, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7039403664849463685" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d66fadaca362" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8312055181485612279" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17241637450199462673" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8743570030867145704" + } + }, + { + "_tag": "ByteArray", + "bytearray": "356f6000e25d31" + }, + { + "_tag": "ByteArray", + "bytearray": "8fc659ee185315881b48" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8526086775567569999" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3945810352257543470" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6568671608984840947" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8653970644990279298" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5573109759895664624" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2384334990792389245" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f135eac6e2" + }, + { + "_tag": "ByteArray", + "bytearray": "6da66bb191" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13812474780787735074" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fad8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13769976748980895426" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5191319393582260942" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72f95b7cd19bb176ae9320" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b61b0fc5639ef69859f9f46d66fadaca3621b735a5a25fde51cf71bef4699e92d35f311ff1b7957669e1e9663e847356f6000e25d314a8fc659ee185315881b48d8669f1b7652bebfcddc544f9f1b36c2559c0d5ead2e1b5b289c06abbc2af31b781914736f4dbe821b4d57a9cc8cd7f7f01b2116dc0a97b6f27dffffffff9f45f135eac6e2456da66bb191d8669f1bbfafc4a1a9e4fa2280ffff42fad81bbf18c8e59064fec29f9f1b480b457bd21122ce4b72f95b7cd19bb176ae9320ff80ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 97, 176, 252, 86, 57, 239, 105, 133, 159, 159, 70, 214, 111, 173, 172, 163, 98, 27, 115, + 90, 90, 37, 253, 229, 28, 247, 27, 239, 70, 153, 233, 45, 53, 243, 17, 255, 27, 121, 87, 102, 158, 30, 150, 99, + 232, 71, 53, 111, 96, 0, 226, 93, 49, 74, 143, 198, 89, 238, 24, 83, 21, 136, 27, 72, 216, 102, 159, 27, 118, 82, + 190, 191, 205, 220, 84, 79, 159, 27, 54, 194, 85, 156, 13, 94, 173, 46, 27, 91, 40, 156, 6, 171, 188, 42, 243, 27, + 120, 25, 20, 115, 111, 77, 190, 130, 27, 77, 87, 169, 204, 140, 215, 247, 240, 27, 33, 22, 220, 10, 151, 182, 242, + 125, 255, 255, 255, 255, 159, 69, 241, 53, 234, 198, 226, 69, 109, 166, 107, 177, 145, 216, 102, 159, 27, 191, + 175, 196, 161, 169, 228, 250, 34, 128, 255, 255, 66, 250, 216, 27, 191, 24, 200, 229, 144, 100, 254, 194, 159, + 159, 27, 72, 11, 69, 123, 210, 17, 34, 206, 75, 114, 249, 91, 124, 209, 155, 177, 118, 174, 147, 32, 255, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 164, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f306bc26987100065585d2" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c505d3e189a65694" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "65a481fc950c2d49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13069783898823516737" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf3b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17050992753405838719" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14289020611747688049" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c97961b5ede35dfbeeb60fde" + }, + { + "_tag": "ByteArray", + "bytearray": "1e4ec169ba76c6b568bf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12153689306557439343" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4bfd9fea2d5f281e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5295949670362849050" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + "cborHex": "9fd87f9f4bf306bc26987100065585d2ffd905019f48c505d3e189a65694bf4865a481fc950c2d491bb5613335947ee24142bf3b1beca14b91b683c57fff9f1bc64ccc8a3774ae714cc97961b5ede35dfbeeb60fde4a1e4ec169ba76c6b568bf1ba8aa940803d1dd6f484bfd9fea2d5f281eff1b497efe2a82531f1aff10ff", + "cborBytes": [ + 159, 216, 127, 159, 75, 243, 6, 188, 38, 152, 113, 0, 6, 85, 133, 210, 255, 217, 5, 1, 159, 72, 197, 5, 211, 225, + 137, 166, 86, 148, 191, 72, 101, 164, 129, 252, 149, 12, 45, 73, 27, 181, 97, 51, 53, 148, 126, 226, 65, 66, 191, + 59, 27, 236, 161, 75, 145, 182, 131, 197, 127, 255, 159, 27, 198, 76, 204, 138, 55, 116, 174, 113, 76, 201, 121, + 97, 181, 237, 227, 93, 251, 238, 182, 15, 222, 74, 30, 78, 193, 105, 186, 118, 198, 181, 104, 191, 27, 168, 170, + 148, 8, 3, 209, 221, 111, 72, 75, 253, 159, 234, 45, 95, 40, 30, 255, 27, 73, 126, 254, 42, 130, 83, 31, 26, 255, + 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 165, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11534817072734914160" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4835b3ce86" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63ee2e908703bb8c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d67960531d47f3790be6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3141422180342858454" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15133966091448113913" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6864364816579346404" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f76" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b12035a4d42de476e7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f258a1750fe024e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0440276cb4f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ec06c30" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8457637772494895677" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "790120df7eb18fd412e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b92ac07b5920e70daaab" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9596646814705153424" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11302897903150249836" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17080457201578358837" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13189624736435733106" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c9222b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1156981713133395161" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13304938016825851026" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e5abdad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3c859" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e1a6be87abe0f09c7d861" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1ae157db24fad77225b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13556016992063558778" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5ceece668d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12795702536978057498" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16044683614126467868" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17834588384832955610" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12991699623753649727" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3799270077550678332" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6358661379640910799" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17c81b7fc7" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba013e7037979c6709fbf454835b3ce864863ee2e908703bb8c4ad67960531d47f3790be61b2b9892d43cde82d6ff1bd206a5fa1b925af99f1b5f431f6e84e6bfe4ffffff9fbf422f7649b12035a4d42de476e7483f258a1750fe024e46b0440276cb4f446ec06c301b755f90be5c7bfa3d4a790120df7eb18fd412e64ab92ac07b5920e70daaabff1b852e236ec9627590d8669f1b9cdbf5c1f1c7376c9f1bed09f954255738351bb70af5d0eff5027243c9222b1b100e6cbcf6f05cd9ffffbf1bb8a4a2a23b7ebc92441e5abdad43a3c8594b7e1a6be87abe0f09c7d8614af1ae157db24fad77225b1bbc20a5a1a51b947affff9f455ceece668dd8669f1bb19377a9b024491a9f1bdeaa2abd1989eb1cffff1bf7812fa4f146a4dad8669f1bb44bc9f98e698e3f9f1b34b9b801922dd13cffffbf1b583e80d5cc7de3cf4517c81b7fc7ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 160, 19, 231, 3, 121, 121, 198, 112, 159, 191, 69, 72, 53, 179, 206, 134, 72, 99, 238, 46, + 144, 135, 3, 187, 140, 74, 214, 121, 96, 83, 29, 71, 243, 121, 11, 230, 27, 43, 152, 146, 212, 60, 222, 130, 214, + 255, 27, 210, 6, 165, 250, 27, 146, 90, 249, 159, 27, 95, 67, 31, 110, 132, 230, 191, 228, 255, 255, 255, 159, + 191, 66, 47, 118, 73, 177, 32, 53, 164, 212, 45, 228, 118, 231, 72, 63, 37, 138, 23, 80, 254, 2, 78, 70, 176, 68, + 2, 118, 203, 79, 68, 110, 192, 108, 48, 27, 117, 95, 144, 190, 92, 123, 250, 61, 74, 121, 1, 32, 223, 126, 177, + 143, 212, 18, 230, 74, 185, 42, 192, 123, 89, 32, 231, 13, 170, 171, 255, 27, 133, 46, 35, 110, 201, 98, 117, 144, + 216, 102, 159, 27, 156, 219, 245, 193, 241, 199, 55, 108, 159, 27, 237, 9, 249, 84, 37, 87, 56, 53, 27, 183, 10, + 245, 208, 239, 245, 2, 114, 67, 201, 34, 43, 27, 16, 14, 108, 188, 246, 240, 92, 217, 255, 255, 191, 27, 184, 164, + 162, 162, 59, 126, 188, 146, 68, 30, 90, 189, 173, 67, 163, 200, 89, 75, 126, 26, 107, 232, 122, 190, 15, 9, 199, + 216, 97, 74, 241, 174, 21, 125, 178, 79, 173, 119, 34, 91, 27, 188, 32, 165, 161, 165, 27, 148, 122, 255, 255, + 159, 69, 92, 238, 206, 102, 141, 216, 102, 159, 27, 177, 147, 119, 169, 176, 36, 73, 26, 159, 27, 222, 170, 42, + 189, 25, 137, 235, 28, 255, 255, 27, 247, 129, 47, 164, 241, 70, 164, 218, 216, 102, 159, 27, 180, 75, 201, 249, + 142, 105, 142, 63, 159, 27, 52, 185, 184, 1, 146, 45, 209, 60, 255, 255, 191, 27, 88, 62, 128, 213, 204, 125, 227, + 207, 69, 23, 200, 27, 127, 199, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 166, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6577643811097387538" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1768913873055695035" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73e5cd19" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4890689528374674501" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35cd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5608616901300532390" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16613541105191718535" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7284134694232485189" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14756977723075169876" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8399205301726338457" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9814907506653061187" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11432418593748512959" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9229665970142272679" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a23934" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "53" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8039332053922310663" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7d2b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15082641035897431110" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13285394437785672333" + } + }, + { + "_tag": "ByteArray", + "bytearray": "254d4c88892d909e1a39ef" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4369575873734123457" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8474940b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2183476987450006076" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15365442279482939640" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8426769251765185674" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8450629960683585175" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8661003328473887274" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d5a050e9d473f3b1bf90" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5339869275255194317" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4064288608031545294" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "be4d2b4d3a5350efed7f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15986122646663949635" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3b73c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94dfe1215e2a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9589719077075888102" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f455c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2375029466105839624" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7838722474531667949" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15123824939960274634" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "337ecf96f237d41287a5" + }, + { + "_tag": "ByteArray", + "bytearray": "6a827d059c6f034e32fc04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7788618708289069104" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cd5cf0388e46" + }, + { + "_tag": "ByteArray", + "bytearray": "d6" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3be59a0b084b23d00f8843" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73668d2a0c1110091ead" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13233158409675340457" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a1b06bc673f0cbcf0b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a37f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1027564065834775689" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2716cc46dbf0616927c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a1eb4a7dd74e59e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7d4fa32916c057b80b3063a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b5b487c324381a2129fbf1b188c71cba1bec0bb4473e5cd191b43df3836cd7ec4454235cd1b4dd5cf5b234534a61be68f279ce44d8e871b651671e951d36d451bcccb510da63f8e541b748ff8b894f9dd991b88358e602d5ee0431b9ea81c23b3f370bf1b80165c4c89d75ca7ff43a239349f41531b6f9171e8a9736a07410dff427d2bd8669f1bd1504e1c636564469f1bb85f33da252a5a8d4b254d4c88892d909e1a39efffffffffd8669f1b3ca3da1b2d0a1fc19f448474940b9f1b1e4d44c064329a3c1bd53d0457f55958f81b74f1e5fccfa5ec8a1b7546ab2d06d17e97ff414cffffd8669f1b783210a3a829722a9f9f4ad5a050e9d473f3b1bf90ff9f1b4a1b06d0629bc2cd1b386740f49a6317ceff4abe4d2b4d3a5350efed7fbf1bddda1dd95a3b6d4343b3b73c4694dfe1215e2a1b851586b12ce527e643f455c81b20f5ccb74a530008ffffffd8669f1b6cc8bc8f2b54bfed9fd8669f1bd1e29ea747868eca9f4a337ecf96f237d41287a54b6a827d059c6f034e32fc041b6c16bb730688203046cd5cf0388e4641d6ffffffffbf4b3be59a0b084b23d00f88434a73668d2a0c1110091ead41811bb7a59f76192bfaa94a8a1b06bc673f0cbcf0b1419e42a37f1b0e42a412d809b4894ab2716cc46dbf0616927c485a1eb4a7dd74e59e4cc7d4fa32916c057b80b3063a4154ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 91, 72, 124, 50, 67, 129, 162, 18, 159, 191, 27, 24, 140, 113, 203, 161, 190, 192, 187, + 68, 115, 229, 205, 25, 27, 67, 223, 56, 54, 205, 126, 196, 69, 66, 53, 205, 27, 77, 213, 207, 91, 35, 69, 52, 166, + 27, 230, 143, 39, 156, 228, 77, 142, 135, 27, 101, 22, 113, 233, 81, 211, 109, 69, 27, 204, 203, 81, 13, 166, 63, + 142, 84, 27, 116, 143, 248, 184, 148, 249, 221, 153, 27, 136, 53, 142, 96, 45, 94, 224, 67, 27, 158, 168, 28, 35, + 179, 243, 112, 191, 27, 128, 22, 92, 76, 137, 215, 92, 167, 255, 67, 162, 57, 52, 159, 65, 83, 27, 111, 145, 113, + 232, 169, 115, 106, 7, 65, 13, 255, 66, 125, 43, 216, 102, 159, 27, 209, 80, 78, 28, 99, 101, 100, 70, 159, 27, + 184, 95, 51, 218, 37, 42, 90, 141, 75, 37, 77, 76, 136, 137, 45, 144, 158, 26, 57, 239, 255, 255, 255, 255, 216, + 102, 159, 27, 60, 163, 218, 27, 45, 10, 31, 193, 159, 68, 132, 116, 148, 11, 159, 27, 30, 77, 68, 192, 100, 50, + 154, 60, 27, 213, 61, 4, 87, 245, 89, 88, 248, 27, 116, 241, 229, 252, 207, 165, 236, 138, 27, 117, 70, 171, 45, + 6, 209, 126, 151, 255, 65, 76, 255, 255, 216, 102, 159, 27, 120, 50, 16, 163, 168, 41, 114, 42, 159, 159, 74, 213, + 160, 80, 233, 212, 115, 243, 177, 191, 144, 255, 159, 27, 74, 27, 6, 208, 98, 155, 194, 205, 27, 56, 103, 64, 244, + 154, 99, 23, 206, 255, 74, 190, 77, 43, 77, 58, 83, 80, 239, 237, 127, 191, 27, 221, 218, 29, 217, 90, 59, 109, + 67, 67, 179, 183, 60, 70, 148, 223, 225, 33, 94, 42, 27, 133, 21, 134, 177, 44, 229, 39, 230, 67, 244, 85, 200, + 27, 32, 245, 204, 183, 74, 83, 0, 8, 255, 255, 255, 216, 102, 159, 27, 108, 200, 188, 143, 43, 84, 191, 237, 159, + 216, 102, 159, 27, 209, 226, 158, 167, 71, 134, 142, 202, 159, 74, 51, 126, 207, 150, 242, 55, 212, 18, 135, 165, + 75, 106, 130, 125, 5, 156, 111, 3, 78, 50, 252, 4, 27, 108, 22, 187, 115, 6, 136, 32, 48, 70, 205, 92, 240, 56, + 142, 70, 65, 214, 255, 255, 255, 255, 191, 75, 59, 229, 154, 11, 8, 75, 35, 208, 15, 136, 67, 74, 115, 102, 141, + 42, 12, 17, 16, 9, 30, 173, 65, 129, 27, 183, 165, 159, 118, 25, 43, 250, 169, 74, 138, 27, 6, 188, 103, 63, 12, + 188, 240, 177, 65, 158, 66, 163, 127, 27, 14, 66, 164, 18, 216, 9, 180, 137, 74, 178, 113, 108, 196, 109, 191, 6, + 22, 146, 124, 72, 90, 30, 180, 167, 221, 116, 229, 158, 76, 199, 212, 250, 50, 145, 108, 5, 123, 128, 179, 6, 58, + 65, 84, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 167, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "adb2ac18f93187" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12393422168141528969" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "574581030168950361" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a2724881cabe494e97c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3876485133760284809" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b189936c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9059049653202445487" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b198f628e45b1b8d271e6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12701533508586486493" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4117" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2e95" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15172870632426842610" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f47adb2ac18f931879f1babfe47cc7b86ff891b07f9526715e5f6594a0a2724881cabe494e97cffd8669f1b35cc0ab0cedd48899f44b189936c1b7db835a9a5c1e4af4b0b198f628e45b1b8d271e61bb044e96e3204baddffffff424117d8669f1bfffffffffffffff49f9f422e951bd290dd736cc229f2ffffffff", + "cborBytes": [ + 159, 159, 71, 173, 178, 172, 24, 249, 49, 135, 159, 27, 171, 254, 71, 204, 123, 134, 255, 137, 27, 7, 249, 82, + 103, 21, 229, 246, 89, 74, 10, 39, 36, 136, 28, 171, 228, 148, 233, 124, 255, 216, 102, 159, 27, 53, 204, 10, 176, + 206, 221, 72, 137, 159, 68, 177, 137, 147, 108, 27, 125, 184, 53, 169, 165, 193, 228, 175, 75, 11, 25, 143, 98, + 142, 69, 177, 184, 210, 113, 230, 27, 176, 68, 233, 110, 50, 4, 186, 221, 255, 255, 255, 66, 65, 23, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 159, 66, 46, 149, 27, 210, 144, 221, 115, 108, 194, 41, 242, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 168, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ec38723ecd7cb9d995450" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2570877353041602602" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "63e64f9acd84f9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17954097195501501777" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a28573df1b1efe" + }, + { + "_tag": "ByteArray", + "bytearray": "f4b56e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9333772659767770105" + } + }, + { + "_tag": "ByteArray", + "bytearray": "880d90" + }, + { + "_tag": "ByteArray", + "bytearray": "4ce7e6c587fa1e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04294a4aae4b4306f0ed2b7c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6495499779706285658" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10559415256448905702" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b11419efc007ba" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4954264383403788931" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1903927cd8d3d965491ec9" + }, + { + "_tag": "ByteArray", + "bytearray": "2d637c307b3898" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9297898453690841394" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7330714629093357786" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5944863711919458011" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16412538429582074129" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2353356521746529428" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a2e0f0ee9a214990e7a4b97f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5453669594208544894" + } + }, + { + "_tag": "ByteArray", + "bytearray": "61a05853" + }, + { + "_tag": "ByteArray", + "bytearray": "4bc84b04f8fbfbc6da" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5519537641883912613" + } + }, + { + "_tag": "ByteArray", + "bytearray": "543e713e4dce7bd56940" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14923561874661083180" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf4b1ec38723ecd7cb9d9954501b23ad9754dd24282aff4763e64f9acd84f9d8669f1bf929c44640b43d519f9f47a28573df1b1efe43f4b56e1b818838c817b5fbf943880d90474ce7e6c587fa1eff9f4c04294a4aae4b4306f0ed2b7cff1b5a24a6a290056e5a1b928a943ac47a31e647b11419efc007baffff9fd8669f1b44c1153538270a839f4b1903927cd8d3d965491ec9472d637c307b38981b8108c56199e579321b65bbee1d88de78daffffd8669f1b5280660c7b11c6db80ff80d8669f1be3c50cbe8dafe1119f1b20a8cd49b48cfc944ca2e0f0ee9a214990e7a4b97f1b4baf5399e526287e4461a05853494bc84b04f8fbfbc6daffff9f1b4c99563dd4e349a54a543e713e4dce7bd569401bcf1b2474e2bc882cffffff", + "cborBytes": [ + 159, 191, 75, 30, 195, 135, 35, 236, 215, 203, 157, 153, 84, 80, 27, 35, 173, 151, 84, 221, 36, 40, 42, 255, 71, + 99, 230, 79, 154, 205, 132, 249, 216, 102, 159, 27, 249, 41, 196, 70, 64, 180, 61, 81, 159, 159, 71, 162, 133, + 115, 223, 27, 30, 254, 67, 244, 181, 110, 27, 129, 136, 56, 200, 23, 181, 251, 249, 67, 136, 13, 144, 71, 76, 231, + 230, 197, 135, 250, 30, 255, 159, 76, 4, 41, 74, 74, 174, 75, 67, 6, 240, 237, 43, 124, 255, 27, 90, 36, 166, 162, + 144, 5, 110, 90, 27, 146, 138, 148, 58, 196, 122, 49, 230, 71, 177, 20, 25, 239, 192, 7, 186, 255, 255, 159, 216, + 102, 159, 27, 68, 193, 21, 53, 56, 39, 10, 131, 159, 75, 25, 3, 146, 124, 216, 211, 217, 101, 73, 30, 201, 71, 45, + 99, 124, 48, 123, 56, 152, 27, 129, 8, 197, 97, 153, 229, 121, 50, 27, 101, 187, 238, 29, 136, 222, 120, 218, 255, + 255, 216, 102, 159, 27, 82, 128, 102, 12, 123, 17, 198, 219, 128, 255, 128, 216, 102, 159, 27, 227, 197, 12, 190, + 141, 175, 225, 17, 159, 27, 32, 168, 205, 73, 180, 140, 252, 148, 76, 162, 224, 240, 238, 154, 33, 73, 144, 231, + 164, 185, 127, 27, 75, 175, 83, 153, 229, 38, 40, 126, 68, 97, 160, 88, 83, 73, 75, 200, 75, 4, 248, 251, 251, + 198, 218, 255, 255, 159, 27, 76, 153, 86, 61, 212, 227, 73, 165, 74, 84, 62, 113, 62, 77, 206, 123, 213, 105, 64, + 27, 207, 27, 36, 116, 226, 188, 136, 44, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 169, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + }, + "cborHex": "9f8012ff", + "cborBytes": [159, 128, 18, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 170, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11701216092971773924" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9144605986662380253" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eae8d7ec5e" + }, + { + "_tag": "ByteArray", + "bytearray": "3264db" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13327512462086001874" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17324238049226646256" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e175c1422ff4b9586bcafcd1" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5ca750f8ef" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6654086971018705764" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4800108521642462550" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "80268720312258862" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5443492403889475173" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "755686329043598113" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8762963032348049162" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2029377705687074807" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10087232033409577208" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13999450881637592007" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14269551911134140978" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1b65366c843cfb9377b8706" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5074748932087775172" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1c" + }, + { + "_tag": "ByteArray", + "bytearray": "ea5217a039f6b01b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "30102128071645790" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "407454151812715940" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c92" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5521055973367206688" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16862852501965276930" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12121604404917639828" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3066036608443032800" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "864651274450638471" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "224545103044338510" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1281664895078911073" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9486227896866694903" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0fc212f2f6dea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12198147246098130803" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38e695" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16038775252114082879" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c1c6cba810e" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba263120a75aaafe49f1b7ee82ab1d5ebf2dd9f45eae8d7ec5e433264db1bb8f4d5f8da3a54d21bf06c0eb7d075e2f0ff9f4ce175c1422ff4b9586bcafcd1ff455ca750f8efffffd8669f1b5c5810d8641ffb649fbf1b429d6944b3d30d561b011d2bf9d0c9912e1b4b8b2b801f5e8e651b0a7cbcb664433b211b799c4c7322fc3f0a1b1c29cc456e9347f71b8bfd0c170651b0f81bc2480a679289abc71bc607a1dc1f259a324cc1b65366c843cfb9377b8706ffd8669f1b466d21443d627fc49f411c48ea5217a039f6b01b1b006af1b9dab19a5effffbf1b05a791646d0e15a4422c921b4c9ebb27ed99d3201bea04e301df7287021ba83896fbb6ed1a941b2a8cc00d029724e0ffffffd8669f1b0bffdbc0c43816879fbf1b031dbe94df02e34e1b11c9636e78444c611b83a5da031323e6f747f0fc212f2f6dea1ba948864ab196a7734338e6951bde952d1d5e960c3f461c1c6cba810effffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 162, 99, 18, 10, 117, 170, 175, 228, 159, 27, 126, 232, 42, 177, 213, 235, 242, 221, 159, + 69, 234, 232, 215, 236, 94, 67, 50, 100, 219, 27, 184, 244, 213, 248, 218, 58, 84, 210, 27, 240, 108, 14, 183, + 208, 117, 226, 240, 255, 159, 76, 225, 117, 193, 66, 47, 244, 185, 88, 107, 202, 252, 209, 255, 69, 92, 167, 80, + 248, 239, 255, 255, 216, 102, 159, 27, 92, 88, 16, 216, 100, 31, 251, 100, 159, 191, 27, 66, 157, 105, 68, 179, + 211, 13, 86, 27, 1, 29, 43, 249, 208, 201, 145, 46, 27, 75, 139, 43, 128, 31, 94, 142, 101, 27, 10, 124, 188, 182, + 100, 67, 59, 33, 27, 121, 156, 76, 115, 34, 252, 63, 10, 27, 28, 41, 204, 69, 110, 147, 71, 247, 27, 139, 253, 12, + 23, 6, 81, 176, 248, 27, 194, 72, 10, 103, 146, 137, 171, 199, 27, 198, 7, 161, 220, 31, 37, 154, 50, 76, 193, + 182, 83, 102, 200, 67, 207, 185, 55, 123, 135, 6, 255, 216, 102, 159, 27, 70, 109, 33, 68, 61, 98, 127, 196, 159, + 65, 28, 72, 234, 82, 23, 160, 57, 246, 176, 27, 27, 0, 106, 241, 185, 218, 177, 154, 94, 255, 255, 191, 27, 5, + 167, 145, 100, 109, 14, 21, 164, 66, 44, 146, 27, 76, 158, 187, 39, 237, 153, 211, 32, 27, 234, 4, 227, 1, 223, + 114, 135, 2, 27, 168, 56, 150, 251, 182, 237, 26, 148, 27, 42, 140, 192, 13, 2, 151, 36, 224, 255, 255, 255, 216, + 102, 159, 27, 11, 255, 219, 192, 196, 56, 22, 135, 159, 191, 27, 3, 29, 190, 148, 223, 2, 227, 78, 27, 17, 201, + 99, 110, 120, 68, 76, 97, 27, 131, 165, 218, 3, 19, 35, 230, 247, 71, 240, 252, 33, 47, 47, 109, 234, 27, 169, 72, + 134, 74, 177, 150, 167, 115, 67, 56, 230, 149, 27, 222, 149, 45, 29, 94, 150, 12, 63, 70, 28, 28, 108, 186, 129, + 14, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 171, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0bc76c45" + }, + { + "_tag": "ByteArray", + "bytearray": "b0e8c2205082ffac" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5378768357526496931" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7d8302" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "746c3f7a115cf31460" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17904533180134850263" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13884666560240593702" + } + } + ] + } + ] + }, + "cborHex": "9f440bc76c4548b0e8c2205082ffacd8669f1b4aa53952bf7a66a39f437d8302bf49746c3f7a115cf314601bf879ae10a721fed7ff1bc0b03eac23e2ab26ffffff", + "cborBytes": [ + 159, 68, 11, 199, 108, 69, 72, 176, 232, 194, 32, 80, 130, 255, 172, 216, 102, 159, 27, 74, 165, 57, 82, 191, 122, + 102, 163, 159, 67, 125, 131, 2, 191, 73, 116, 108, 63, 122, 17, 92, 243, 20, 96, 27, 248, 121, 174, 16, 167, 33, + 254, 215, 255, 27, 192, 176, 62, 172, 35, 226, 171, 38, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 172, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a8050" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf9d252a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c9597b149" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "535532950932692123" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11239924721367902279" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5207487449155278549" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2345630943614719087" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4cf496" + }, + { + "_tag": "ByteArray", + "bytearray": "c1a5ce" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1508507765072691910" + } + }, + { + "_tag": "ByteArray", + "bytearray": "50c7285821a3" + }, + { + "_tag": "ByteArray", + "bytearray": "0cdecc" + }, + { + "_tag": "ByteArray", + "bytearray": "07" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17241563777932389807" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "534741276047153035" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b93b61ba" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3835281593240070969" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10530530452853340765" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2449843194240793861" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0d83fdb9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1098414017267296051" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "de34d6" + } + ] + }, + "cborHex": "9fbf432a805044cf9d252a459c9597b1491b076e9861a9dc1c9bff9fd8669f1b9bfc3bfb7f43e8479f1b4844b63e9b3496d51b208d5aea6051d46f434cf49643c1a5ceffff809f1b14ef4bd1e61382c64650c7285821a3430cdecc41071bef4656e803e6edafffffd8669f1b076bc85b7d87978b9f9f44b93b61ba1b3539a849f2ab2b391b9223f5a75ac1ba5d1b21ff9767c4217d05ff440d83fdb9d8669f1b0f3e59baa386e73380ffffff43de34d6ff", + "cborBytes": [ + 159, 191, 67, 42, 128, 80, 68, 207, 157, 37, 42, 69, 156, 149, 151, 177, 73, 27, 7, 110, 152, 97, 169, 220, 28, + 155, 255, 159, 216, 102, 159, 27, 155, 252, 59, 251, 127, 67, 232, 71, 159, 27, 72, 68, 182, 62, 155, 52, 150, + 213, 27, 32, 141, 90, 234, 96, 81, 212, 111, 67, 76, 244, 150, 67, 193, 165, 206, 255, 255, 128, 159, 27, 20, 239, + 75, 209, 230, 19, 130, 198, 70, 80, 199, 40, 88, 33, 163, 67, 12, 222, 204, 65, 7, 27, 239, 70, 86, 232, 3, 230, + 237, 175, 255, 255, 216, 102, 159, 27, 7, 107, 200, 91, 125, 135, 151, 139, 159, 159, 68, 185, 59, 97, 186, 27, + 53, 57, 168, 73, 242, 171, 43, 57, 27, 146, 35, 245, 167, 90, 193, 186, 93, 27, 33, 255, 151, 103, 196, 33, 125, + 5, 255, 68, 13, 131, 253, 185, 216, 102, 159, 27, 15, 62, 89, 186, 163, 134, 231, 51, 128, 255, 255, 255, 67, 222, + 52, 214, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 173, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11086442034164352660" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8905488398500617394" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1322" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b99daf44aa55346949f1b7b96a683dffddcb2421322ffffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 153, 218, 244, 74, 165, 83, 70, 148, 159, 27, 123, 150, 166, 131, 223, 253, 220, 178, + 66, 19, 34, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 174, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1339422911374768737" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9024422818578140444" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee205d985de3" + }, + { + "_tag": "ByteArray", + "bytearray": "41646eb502b863" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3032955783180661746" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2dd99b6809292d4d1125ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9789655234360747694" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43b8bfaf63" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ebc4b327e0593621068e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d9dbe6e18491ee2a0bc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99ecf8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5d1c9a52edc6701f7fa922b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bcc5e46cb1fb9ae1024c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16606714170333467839" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17566220323854836905" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "beecb0c6c18e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4672454355920522575" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd905059f9f1b1296960a94833a611b7d3d30bd74478d1c46ee205d985de34741646eb502b8631b2a1739372bf333f2ffbf4b2dd99b6809292d4d1125ed1b87dbd7915d9da6ae4543b8bfaf6341214b5ebc4b327e0593621068e54a8d9dbe6e18491ee2a0bc41a24399ecf84cb5d1c9a52edc6701f7fa922b4abcc5e46cb1fb9ae1024cffd8669f1be676e68d412c14bf9f1bf3c7c050919d64a9ffff46beecb0c6c18eff1b40d7e47b21de8d4fa0d87a80d8669f1bffffffffffffffeb80ffff", + "cborBytes": [ + 159, 217, 5, 5, 159, 159, 27, 18, 150, 150, 10, 148, 131, 58, 97, 27, 125, 61, 48, 189, 116, 71, 141, 28, 70, 238, + 32, 93, 152, 93, 227, 71, 65, 100, 110, 181, 2, 184, 99, 27, 42, 23, 57, 55, 43, 243, 51, 242, 255, 191, 75, 45, + 217, 155, 104, 9, 41, 45, 77, 17, 37, 237, 27, 135, 219, 215, 145, 93, 157, 166, 174, 69, 67, 184, 191, 175, 99, + 65, 33, 75, 94, 188, 75, 50, 126, 5, 147, 98, 16, 104, 229, 74, 141, 157, 190, 110, 24, 73, 30, 226, 160, 188, 65, + 162, 67, 153, 236, 248, 76, 181, 209, 201, 165, 46, 220, 103, 1, 247, 250, 146, 43, 74, 188, 197, 228, 108, 177, + 251, 154, 225, 2, 76, 255, 216, 102, 159, 27, 230, 118, 230, 141, 65, 44, 20, 191, 159, 27, 243, 199, 192, 80, + 145, 157, 100, 169, 255, 255, 70, 190, 236, 176, 198, 193, 142, 255, 27, 64, 215, 228, 123, 33, 222, 141, 79, 160, + 216, 122, 128, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 175, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a59090696afeee81657bf0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4219109263928993538" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13920703376357874397" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e2bceea5751af777040ce7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13467776158350643691" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b60f2a4cbf39436e1f117b10" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8710639557587192444" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5721643085814732496" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14225120327978413464" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15310279048897041346" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aa4cb2c62da092d55b" + }, + { + "_tag": "ByteArray", + "bytearray": "e119c314" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17639725727771839263" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bd237604" + }, + { + "_tag": "ByteArray", + "bytearray": "981409e2eb2c" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f4ba59090696afeee81657bf0d8669f1b3a8d4985910c27029fd8669f1bc13045f73b645add9f4be2bceea5751af777040ce71bbae7270f88f711eb4cb60f2a4cbf39436e1f117b10ffffffff9f1b78e26886d4734a7cbf1b4f675c126d8e96d01bc569c79204576d98ff9f1bd47909ad799d13c2ffff9f49aa4cb2c62da092d55b44e119c314d8669f1bf4cce5171328cb1f9f44bd23760446981409e2eb2cffffff80ff", + "cborBytes": [ + 159, 75, 165, 144, 144, 105, 106, 254, 238, 129, 101, 123, 240, 216, 102, 159, 27, 58, 141, 73, 133, 145, 12, 39, + 2, 159, 216, 102, 159, 27, 193, 48, 69, 247, 59, 100, 90, 221, 159, 75, 226, 188, 238, 165, 117, 26, 247, 119, 4, + 12, 231, 27, 186, 231, 39, 15, 136, 247, 17, 235, 76, 182, 15, 42, 76, 191, 57, 67, 110, 31, 17, 123, 16, 255, + 255, 255, 255, 159, 27, 120, 226, 104, 134, 212, 115, 74, 124, 191, 27, 79, 103, 92, 18, 109, 142, 150, 208, 27, + 197, 105, 199, 146, 4, 87, 109, 152, 255, 159, 27, 212, 121, 9, 173, 121, 157, 19, 194, 255, 255, 159, 73, 170, + 76, 178, 198, 45, 160, 146, 213, 91, 68, 225, 25, 195, 20, 216, 102, 159, 27, 244, 204, 229, 23, 19, 40, 203, 31, + 159, 68, 189, 35, 118, 4, 70, 152, 20, 9, 226, 235, 44, 255, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 176, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "598b56a9f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6829178657196526015" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a158" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11607ac1ee8f7bd8d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5f3181a1a0b97d7d05fbe89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffcb15d5b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3a7b7f0632fe58e" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5980032174247101454" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b308a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32d6ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e543c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "401add" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0756" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e14612fcac9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13750657468426856370" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8948632df6b3" + }, + { + "_tag": "ByteArray", + "bytearray": "23bcad4610ed09e7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12061264242714245096" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12898404155852208035" + } + }, + { + "_tag": "ByteArray", + "bytearray": "21bc18bc4b562a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14335345262670105436" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9788666697167906259" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16887447276847097979" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1446771284501381152" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8355027532838575417" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18190641997035300309" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11123907156650173028" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14339144612541659466" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5807961252738461619" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "297265093638041672" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2050d59623db7f3c588630" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1032589249786370391" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "213a1350faf80880" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a0af59d7e9e7bc4c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9993395687539242723" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b7ae7500b158d4b61a3c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46f05e654953e04a47732a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0c12eeed42a3157c51f58" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3283043435435428582" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7a5b38c3eb67e1d39" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb16bba03c" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10225519025902174988" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3bbb05f772a64dcd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1842658238911348854" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3247675737863813254" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03f8cb3da4b22fde17a5a71d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14129871793533944957" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18394985855648781041" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b838d8126f05" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16760757107799858550" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fbf45598b56a9f81b5ec61dce61e0c9bf42a1584911607ac1ee8f7bd8d14ce5f3181a1a0b97d7d05fbe89413b45ffcb15d5b748d3a7b7f0632fe58effbf1b52fd57943367c40e437b308a4332d6ae43e543c343401add420756468e14612fcac91bbed4261d09a7a7b2ff9f9f468948632df6b34823bcad4610ed09e71ba76237ece91a77e8419dff9f1bb300563db6fe37a34721bc18bc4b562a1bc6f160908207cb5cffff9fd8669f1b87d8547f9d63a5d39f1bea5c43d3239be87bffffd8669f1b1413f6d163f0c0209f1b73f3054637739d391bfc722484a59765d51b9a600e9f3a8f2264ffffd8669f1bc6fee00d9580794a9f1b509a05fccab56fb31b04201907166b3048ffffbf4b2050d59623db7f3c5886301b0e547e73a867595748213a1350faf808804146494a0af59d7e9e7bc4c71b8aafac6e37b276e34b7b7ae7500b158d4b61a3c94b46f05e654953e04a47732a4bc0c12eeed42a3157c51f581b2d8fb69c374e8ae649c7a5b38c3eb67e1d3945eb16bba03cffffd8669f1b8de857607ee5c30c9f9f483bbb05f772a64dcd1b19926fe7ccc200761b2d120fe06d06f8864c03f8cb3da4b22fde17a5a71d1bc41763886f67047dffd8669f1bff481e2cc647d2f180ffa046b838d8126f05d8669f1be89a2bc989039d7680ffffffff", + "cborBytes": [ + 159, 191, 69, 89, 139, 86, 169, 248, 27, 94, 198, 29, 206, 97, 224, 201, 191, 66, 161, 88, 73, 17, 96, 122, 193, + 238, 143, 123, 216, 209, 76, 229, 243, 24, 26, 26, 11, 151, 215, 208, 95, 190, 137, 65, 59, 69, 255, 203, 21, 213, + 183, 72, 211, 167, 183, 240, 99, 47, 229, 142, 255, 191, 27, 82, 253, 87, 148, 51, 103, 196, 14, 67, 123, 48, 138, + 67, 50, 214, 174, 67, 229, 67, 195, 67, 64, 26, 221, 66, 7, 86, 70, 142, 20, 97, 47, 202, 201, 27, 190, 212, 38, + 29, 9, 167, 167, 178, 255, 159, 159, 70, 137, 72, 99, 45, 246, 179, 72, 35, 188, 173, 70, 16, 237, 9, 231, 27, + 167, 98, 55, 236, 233, 26, 119, 232, 65, 157, 255, 159, 27, 179, 0, 86, 61, 182, 254, 55, 163, 71, 33, 188, 24, + 188, 75, 86, 42, 27, 198, 241, 96, 144, 130, 7, 203, 92, 255, 255, 159, 216, 102, 159, 27, 135, 216, 84, 127, 157, + 99, 165, 211, 159, 27, 234, 92, 67, 211, 35, 155, 232, 123, 255, 255, 216, 102, 159, 27, 20, 19, 246, 209, 99, + 240, 192, 32, 159, 27, 115, 243, 5, 70, 55, 115, 157, 57, 27, 252, 114, 36, 132, 165, 151, 101, 213, 27, 154, 96, + 14, 159, 58, 143, 34, 100, 255, 255, 216, 102, 159, 27, 198, 254, 224, 13, 149, 128, 121, 74, 159, 27, 80, 154, 5, + 252, 202, 181, 111, 179, 27, 4, 32, 25, 7, 22, 107, 48, 72, 255, 255, 191, 75, 32, 80, 213, 150, 35, 219, 127, 60, + 88, 134, 48, 27, 14, 84, 126, 115, 168, 103, 89, 87, 72, 33, 58, 19, 80, 250, 248, 8, 128, 65, 70, 73, 74, 10, + 245, 157, 126, 158, 123, 196, 199, 27, 138, 175, 172, 110, 55, 178, 118, 227, 75, 123, 122, 231, 80, 11, 21, 141, + 75, 97, 163, 201, 75, 70, 240, 94, 101, 73, 83, 224, 74, 71, 115, 42, 75, 192, 193, 46, 238, 212, 42, 49, 87, 197, + 31, 88, 27, 45, 143, 182, 156, 55, 78, 138, 230, 73, 199, 165, 179, 140, 62, 182, 126, 29, 57, 69, 235, 22, 187, + 160, 60, 255, 255, 216, 102, 159, 27, 141, 232, 87, 96, 126, 229, 195, 12, 159, 159, 72, 59, 187, 5, 247, 114, + 166, 77, 205, 27, 25, 146, 111, 231, 204, 194, 0, 118, 27, 45, 18, 15, 224, 109, 6, 248, 134, 76, 3, 248, 203, 61, + 164, 178, 47, 222, 23, 165, 167, 29, 27, 196, 23, 99, 136, 111, 103, 4, 125, 255, 216, 102, 159, 27, 255, 72, 30, + 44, 198, 71, 210, 241, 128, 255, 160, 70, 184, 56, 216, 18, 111, 5, 216, 102, 159, 27, 232, 154, 43, 201, 137, 3, + 157, 118, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 177, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "ByteArray", + "bytearray": "97014a5b957c61f9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12072925703514272400" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0e" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f034897014a5b957c61f9d8669f1ba78ba5f655a6b2909f410effff80ff", + "cborBytes": [ + 159, 3, 72, 151, 1, 74, 91, 149, 124, 97, 249, 216, 102, 159, 27, 167, 139, 165, 246, 85, 166, 178, 144, 159, 65, + 14, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 178, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f62cded3a12fa4eaa446aa" + }, + { + "_tag": "ByteArray", + "bytearray": "3666" + } + ] + }, + "cborHex": "9f4bf62cded3a12fa4eaa446aa423666ff", + "cborBytes": [159, 75, 246, 44, 222, 211, 161, 47, 164, 234, 164, 70, 170, 66, 54, 102, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 179, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3387180764659402481" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f279de5f8bd49" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3600808020224705376" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9488703839369387506" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3609402662911956364" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97d5bd65" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8410265632109767343" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14066004459972441416" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ff0" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10996568990646067698" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "07" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff19fa0bf1b2f01aef59b8f46f1477f279de5f8bd491b31f8a3d105df03601b83aea5de5c7f5df21b32172c993637558c4497d5bd651b74b744086c942aaf41921bc3347c880db7b548422ff0ff1b989ba93c1388e1f2ffff410780ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 160, 191, 27, 47, 1, 174, 245, 155, 143, 70, + 241, 71, 127, 39, 157, 229, 248, 189, 73, 27, 49, 248, 163, 209, 5, 223, 3, 96, 27, 131, 174, 165, 222, 92, 127, + 93, 242, 27, 50, 23, 44, 153, 54, 55, 85, 140, 68, 151, 213, 189, 101, 27, 116, 183, 68, 8, 108, 148, 42, 175, 65, + 146, 27, 195, 52, 124, 136, 13, 183, 181, 72, 66, 47, 240, 255, 27, 152, 155, 169, 60, 19, 136, 225, 242, 255, + 255, 65, 7, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 180, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5884808136296609171" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "149746915221101b84ba3427" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88b55078" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "402b1826" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8792496123965821328" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5071507194695910541" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6aae38282c616af5478" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "11d9b40bf885f63b72" + }, + { + "_tag": "ByteArray", + "bytearray": "fc4e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18169443539765948927" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14125756578982110270" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1707067211575714678" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ce60cfb9100e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9030422051549127201" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12085627983826976211" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ad" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13547406471434224456" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "649f06656cdad4b18197" + }, + { + "_tag": "ByteArray", + "bytearray": "f382e29bae74774e1d5fdc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12430035878318149804" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5262040068977756292" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17412876516365998795" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4853150284190640886" + } + }, + { + "_tag": "ByteArray", + "bytearray": "acb157c4" + }, + { + "_tag": "ByteArray", + "bytearray": "44" + }, + { + "_tag": "ByteArray", + "bytearray": "70e7d2cef218be3f81b23e" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16793883845731131581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4843957925046542719" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b51ab09d22749b5939fbf4c149746915221101b84ba34274488b5507844402b18261b7a0538a3ddfb519041631b46619cec6fb0048d4aa6aae38282c616af54784174ff9f4911d9b40bf885f63b7242fc4eff9f1bfc26d4a23243f1ff1bc408c4c461dda43effd8669f1b17b0b895a1afe3769f46ce60cfb9100e1b7d528102ba70a2211ba7b8c69e6f86fdd341adffff1bbc020e6895aa4348ffff4a649f06656cdad4b181974bf382e29bae74774e1d5fdc1bac805bc6308390acd8669f1b49068590314a88849fd8669f1bf1a6f6ef2bbc9acb9f1b4359da786ac4eaf644acb157c441444b70e7d2cef218be3f81b23effff80bf1be90fdc613ff9a0bd1b433932118556617fffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 81, 171, 9, 210, 39, 73, 181, 147, 159, 191, 76, 20, 151, 70, 145, 82, 33, 16, 27, 132, + 186, 52, 39, 68, 136, 181, 80, 120, 68, 64, 43, 24, 38, 27, 122, 5, 56, 163, 221, 251, 81, 144, 65, 99, 27, 70, + 97, 156, 236, 111, 176, 4, 141, 74, 166, 170, 227, 130, 130, 198, 22, 175, 84, 120, 65, 116, 255, 159, 73, 17, + 217, 180, 11, 248, 133, 246, 59, 114, 66, 252, 78, 255, 159, 27, 252, 38, 212, 162, 50, 67, 241, 255, 27, 196, 8, + 196, 196, 97, 221, 164, 62, 255, 216, 102, 159, 27, 23, 176, 184, 149, 161, 175, 227, 118, 159, 70, 206, 96, 207, + 185, 16, 14, 27, 125, 82, 129, 2, 186, 112, 162, 33, 27, 167, 184, 198, 158, 111, 134, 253, 211, 65, 173, 255, + 255, 27, 188, 2, 14, 104, 149, 170, 67, 72, 255, 255, 74, 100, 159, 6, 101, 108, 218, 212, 177, 129, 151, 75, 243, + 130, 226, 155, 174, 116, 119, 78, 29, 95, 220, 27, 172, 128, 91, 198, 48, 131, 144, 172, 216, 102, 159, 27, 73, 6, + 133, 144, 49, 74, 136, 132, 159, 216, 102, 159, 27, 241, 166, 246, 239, 43, 188, 154, 203, 159, 27, 67, 89, 218, + 120, 106, 196, 234, 246, 68, 172, 177, 87, 196, 65, 68, 75, 112, 231, 210, 206, 242, 24, 190, 63, 129, 178, 62, + 255, 255, 128, 191, 27, 233, 15, 220, 97, 63, 249, 160, 189, 27, 67, 57, 50, 17, 133, 86, 97, 127, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 181, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4779778358727425044" + } + } + ] + }, + "cborHex": "9f1b42552f17c90c3c14ff", + "cborBytes": [159, 27, 66, 85, 47, 23, 201, 12, 60, 20, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 182, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9908726154077939091" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8525425965839050065" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b54007" + }, + { + "_tag": "ByteArray", + "bytearray": "1147f711" + }, + { + "_tag": "ByteArray", + "bytearray": "ad1b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "733d8bb1ee4702" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8589011040016902382" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89e714edb16c47abc963" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6013942825074352125" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c829" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "926be4498a0797a86945d5bf" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17564199977300039147" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f9f6aa80cc35" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1440119069475094272" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "40e04fa4" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "902b27" + } + ] + }, + "cborHex": "9fd8669f1b8982ddf03e7025939fd8669f1b765065bf0cba65519f43b54007441147f71142ad1bffffbf47733d8bb1ee47021b77324c08cc1da8ee4a89e714edb16c47abc9631b5375d122dc10dffd42c8294c926be4498a0797a86945d5bfffd8669f1bf3c092d1fae495eb9f46f9f6aa80cc35ffff1b13fc54a9e2543f00ffff4440e04fa4a043902b27ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 137, 130, 221, 240, 62, 112, 37, 147, 159, 216, 102, 159, 27, 118, 80, 101, 191, 12, 186, + 101, 81, 159, 67, 181, 64, 7, 68, 17, 71, 247, 17, 66, 173, 27, 255, 255, 191, 71, 115, 61, 139, 177, 238, 71, 2, + 27, 119, 50, 76, 8, 204, 29, 168, 238, 74, 137, 231, 20, 237, 177, 108, 71, 171, 201, 99, 27, 83, 117, 209, 34, + 220, 16, 223, 253, 66, 200, 41, 76, 146, 107, 228, 73, 138, 7, 151, 168, 105, 69, 213, 191, 255, 216, 102, 159, + 27, 243, 192, 146, 209, 250, 228, 149, 235, 159, 70, 249, 246, 170, 128, 204, 53, 255, 255, 27, 19, 252, 84, 169, + 226, 84, 63, 0, 255, 255, 68, 64, 224, 79, 164, 160, 67, 144, 43, 39, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 183, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12466915554180127513" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7987" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19205d47" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81dcf1b63671" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8418102940490267643" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a037b004f617926a2abc06bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1405281648338819438" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc5e80" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9891361966217486319" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbe4b1e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91cbf876be4e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0d1df06959e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8900781123958287096" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15576414018289564939" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31aae2d84fdb" + } + ] + }, + "cborHex": "9f1bad0361a4dbb2db19bf4279874419205d474681dcf1b636711b74d31c05fa97fbfb4ca037b004f617926a2abc06bf1b13809036b29c596e43cc5e801b89452d4d3533dfef44dbe4b1e64691cbf876be4e46f0d1df06959e1b7b85ed461d092af8ff1bd82a8a05b2907d0b4631aae2d84fdbff", + "cborBytes": [ + 159, 27, 173, 3, 97, 164, 219, 178, 219, 25, 191, 66, 121, 135, 68, 25, 32, 93, 71, 70, 129, 220, 241, 182, 54, + 113, 27, 116, 211, 28, 5, 250, 151, 251, 251, 76, 160, 55, 176, 4, 246, 23, 146, 106, 42, 188, 6, 191, 27, 19, + 128, 144, 54, 178, 156, 89, 110, 67, 204, 94, 128, 27, 137, 69, 45, 77, 53, 51, 223, 239, 68, 219, 228, 177, 230, + 70, 145, 203, 248, 118, 190, 78, 70, 240, 209, 223, 6, 149, 158, 27, 123, 133, 237, 70, 29, 9, 42, 248, 255, 27, + 216, 42, 138, 5, 178, 144, 125, 11, 70, 49, 170, 226, 216, 79, 219, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 184, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2647403589385315493" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2586155569341543643" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "22a40594f902fe05060702" + } + ] + }, + "cborHex": "9fd8669f1b24bd7789ba67e4a59f1b23e3dec9cc8034dbbf1bfffffffffffffffc10ffffff4b22a40594f902fe05060702ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 36, 189, 119, 137, 186, 103, 228, 165, 159, 27, 35, 227, 222, 201, 204, 128, 52, 219, 191, + 27, 255, 255, 255, 255, 255, 255, 255, 252, 16, 255, 255, 255, 75, 34, 164, 5, 148, 249, 2, 254, 5, 6, 7, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 185, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2462ada40a0b2cdc60" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10816212191130852759" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e07d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b90221" + } + } + ] + } + ] + }, + "cborHex": "9f0ebf492462ada40a0b2cdc601b961ae7ae5b9a9d97437e07d143b90221ffff", + "cborBytes": [ + 159, 14, 191, 73, 36, 98, 173, 164, 10, 11, 44, 220, 96, 27, 150, 26, 231, 174, 91, 154, 157, 151, 67, 126, 7, + 209, 67, 185, 2, 33, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 186, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "71" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2987893444361069435" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a1c9e69c296" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4551825819986654523" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a21c0fb322" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14224379656419455921" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ab269" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14548005487832899827" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bbed2769" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11883675861961894664" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6099293793254856350" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bae4870709" + }, + { + "_tag": "ByteArray", + "bytearray": "90" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15263649628049739907" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16560535518514583577" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12daafd464584c6d27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10306124241388580883" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "239a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11942774744621308413" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3711" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0c0c906e455" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3db909c0cfa26d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfce9652b299a66f56" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1664e6f3f209026c0206e1" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "823578599496580661" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6220884984004271461" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d4afef3cfb394e0c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2426533941319964056" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8763bfb19e" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15759038965559594522" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9299704579064887441" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15283770134323531055" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12704624024824647681" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2074629036223982966" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5391632350458510716" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b3168b7773dd47feeeae" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f4171bf1b29772141d1dc237b460a1c9e69c2961b3f2b557777c1753b45a21c0fb3221bc56725eefb2cb3b1437ab2691bc9e4e5e99cb6a0f344bbed2769ffd8669f1ba4eb4c3bea1f6b089f1b54a50b63b7b3569e45bae487070941901bd3d3607767ed9083ffff1be5d2d750074d1819bf4912daafd464584c6d271b8f06b564b302301342239a1ba5bd425acda8d9fd42371146b0c0c906e455473db909c0cfa26d49dfce9652b299a66f5641724b1664e6f3f209026c0206e1ffff9fd8669f1b0b6df05f6b9b7e359f1b565505eeec22dd6548d4afef3cfb394e0c1b21acc7c367ce1598458763bfb19effffa0d8669f1bdab35a71b7b80e1a9f1b810f300aef3c78911bd41adbf5d5140d2f1bb04fe43d14911001ffff9f1b1cca901dd8d76d7641af1b4ad2ed0e80957d7c4ab3168b7773dd47feeeaeffffff", + "cborBytes": [ + 159, 159, 65, 113, 191, 27, 41, 119, 33, 65, 209, 220, 35, 123, 70, 10, 28, 158, 105, 194, 150, 27, 63, 43, 85, + 119, 119, 193, 117, 59, 69, 162, 28, 15, 179, 34, 27, 197, 103, 37, 238, 251, 44, 179, 177, 67, 122, 178, 105, 27, + 201, 228, 229, 233, 156, 182, 160, 243, 68, 187, 237, 39, 105, 255, 216, 102, 159, 27, 164, 235, 76, 59, 234, 31, + 107, 8, 159, 27, 84, 165, 11, 99, 183, 179, 86, 158, 69, 186, 228, 135, 7, 9, 65, 144, 27, 211, 211, 96, 119, 103, + 237, 144, 131, 255, 255, 27, 229, 210, 215, 80, 7, 77, 24, 25, 191, 73, 18, 218, 175, 212, 100, 88, 76, 109, 39, + 27, 143, 6, 181, 100, 179, 2, 48, 19, 66, 35, 154, 27, 165, 189, 66, 90, 205, 168, 217, 253, 66, 55, 17, 70, 176, + 192, 201, 6, 228, 85, 71, 61, 185, 9, 192, 207, 162, 109, 73, 223, 206, 150, 82, 178, 153, 166, 111, 86, 65, 114, + 75, 22, 100, 230, 243, 242, 9, 2, 108, 2, 6, 225, 255, 255, 159, 216, 102, 159, 27, 11, 109, 240, 95, 107, 155, + 126, 53, 159, 27, 86, 85, 5, 238, 236, 34, 221, 101, 72, 212, 175, 239, 60, 251, 57, 78, 12, 27, 33, 172, 199, + 195, 103, 206, 21, 152, 69, 135, 99, 191, 177, 158, 255, 255, 160, 216, 102, 159, 27, 218, 179, 90, 113, 183, 184, + 14, 26, 159, 27, 129, 15, 48, 10, 239, 60, 120, 145, 27, 212, 26, 219, 245, 213, 20, 13, 47, 27, 176, 79, 228, 61, + 20, 145, 16, 1, 255, 255, 159, 27, 28, 202, 144, 29, 216, 215, 109, 118, 65, 175, 27, 74, 210, 237, 14, 128, 149, + 125, 124, 74, 179, 22, 139, 119, 115, 221, 71, 254, 238, 174, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 187, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "99739c784c0b05" + }, + { + "_tag": "ByteArray", + "bytearray": "a9e1037c77db83654d5453e3" + }, + { + "_tag": "ByteArray", + "bytearray": "893133f1887730c8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4182570747343462073" + } + }, + { + "_tag": "ByteArray", + "bytearray": "39f011e91f2f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2379236458466529681" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4a9e60bca0f39d654b12" + } + ] + }, + "cborHex": "9f9f9f4799739c784c0b054ca9e1037c77db83654d5453e348893133f1887730c81b3a0b79ef3b58deb94639f011e91f2fff1b2104bef4078e5191ff4a4a9e60bca0f39d654b12ff", + "cborBytes": [ + 159, 159, 159, 71, 153, 115, 156, 120, 76, 11, 5, 76, 169, 225, 3, 124, 119, 219, 131, 101, 77, 84, 83, 227, 72, + 137, 49, 51, 241, 136, 119, 48, 200, 27, 58, 11, 121, 239, 59, 88, 222, 185, 70, 57, 240, 17, 233, 31, 47, 255, + 27, 33, 4, 190, 244, 7, 142, 81, 145, 255, 74, 74, 158, 96, 188, 160, 243, 157, 101, 75, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 188, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2102388830501066104" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f8" + } + ] + }, + "cborHex": "9f1b1d2d2f809dc3d57841f8ff", + "cborBytes": [159, 27, 29, 45, 47, 128, 157, 195, 213, 120, 65, 248, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 189, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10000180392577678884" + } + } + ] + }, + "cborHex": "9f1b8ac7c715756b3e24ff", + "cborBytes": [159, 27, 138, 199, 199, 21, 117, 107, 62, 36, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 190, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3831515548253827078" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11675343930379788118" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10233485971292307305" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2551053545772208811" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14708095445718218395" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5e01268" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a7d61605e9dd324e6bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0106461283aabb12d12c" + } + } + ] + } + ] + }, + "cborHex": "9f80bf1b352c4717450e30061ba207277230ccdf561b8e04a54584d23f691b236729af0ec0d2ab1bcc1da6e18c93369b44b5e012684a8a7d61605e9dd324e6bd4a0106461283aabb12d12cffff", + "cborBytes": [ + 159, 128, 191, 27, 53, 44, 71, 23, 69, 14, 48, 6, 27, 162, 7, 39, 114, 48, 204, 223, 86, 27, 142, 4, 165, 69, 132, + 210, 63, 105, 27, 35, 103, 41, 175, 14, 192, 210, 171, 27, 204, 29, 166, 225, 140, 147, 54, 155, 68, 181, 224, 18, + 104, 74, 138, 125, 97, 96, 94, 157, 211, 36, 230, 189, 74, 1, 6, 70, 18, 131, 170, 187, 18, 209, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 191, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bfe6bd64414f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6273001578971558284" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d88042d7e88c1929" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9374406329761086911" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0680a8ed8e9da4201f325f4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94f7a48696" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f66a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "969503fa7b35b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14948874308373482687" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8316f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbdf1cc41c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "166835a45bc0aa" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8664926805698419459" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13781139796740721042" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9532798763885264697" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "353389dc9590" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17205972856127436628" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82fdf381e384" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17899955458339784679" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7695328712155580558" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6707743376511271105" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6008429850980964449" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9922777364719314485" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2013755280445192429" + } + }, + { + "_tag": "ByteArray", + "bytearray": "23402f79c14005" + } + ] + } + ] + } + ] + }, + "cborHex": "9f46bfe6bd64414fd8669f1b570e2db34610718c9f48d88042d7e88c19291b821894e3a1953dbfbf418d4cd0680a8ed8e9da4201f325f44594f7a4869642f66a47969503fa7b35b11bcf7511fb1e908cbf43a8316f41ba45bbdf1cc41c47166835a45bc0aaffffffbf1b78400105626a1b031bbf4071a128bac9921b844b4df804a9ff3946353389dc95901beec7e526c87d37544682fdf381e3841bf8696aa6bda847e71b6acb4cb12de5c88effd8669f1b5d16b10fd16f00c19f1b53623b1d8d92d861d8669f1b89b4c970a961a6359f1b1bf24bc21b80b8ed4723402f79c14005ffffffffff", + "cborBytes": [ + 159, 70, 191, 230, 189, 100, 65, 79, 216, 102, 159, 27, 87, 14, 45, 179, 70, 16, 113, 140, 159, 72, 216, 128, 66, + 215, 232, 140, 25, 41, 27, 130, 24, 148, 227, 161, 149, 61, 191, 191, 65, 141, 76, 208, 104, 10, 142, 216, 233, + 218, 66, 1, 243, 37, 244, 69, 148, 247, 164, 134, 150, 66, 246, 106, 71, 150, 149, 3, 250, 123, 53, 177, 27, 207, + 117, 17, 251, 30, 144, 140, 191, 67, 168, 49, 111, 65, 186, 69, 187, 223, 28, 196, 28, 71, 22, 104, 53, 164, 91, + 192, 170, 255, 255, 255, 191, 27, 120, 64, 1, 5, 98, 106, 27, 3, 27, 191, 64, 113, 161, 40, 186, 201, 146, 27, + 132, 75, 77, 248, 4, 169, 255, 57, 70, 53, 51, 137, 220, 149, 144, 27, 238, 199, 229, 38, 200, 125, 55, 84, 70, + 130, 253, 243, 129, 227, 132, 27, 248, 105, 106, 166, 189, 168, 71, 231, 27, 106, 203, 76, 177, 45, 229, 200, 142, + 255, 216, 102, 159, 27, 93, 22, 177, 15, 209, 111, 0, 193, 159, 27, 83, 98, 59, 29, 141, 146, 216, 97, 216, 102, + 159, 27, 137, 180, 201, 112, 169, 97, 166, 53, 159, 27, 27, 242, 75, 194, 27, 128, 184, 237, 71, 35, 64, 47, 121, + 193, 64, 5, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 192, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f403" + } + ] + }, + "cborHex": "9f42f403ff", + "cborBytes": [159, 66, 244, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 193, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2745212666980430741" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16514517715233577860" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9564830153311981494" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28eb8395bce0e641a8bf8cb2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10981942487292639641" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09c96470bd9d7a9431b7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42535732cae9" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9729269069456057091" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1768062323127082765" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9902a89f460" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12355416089813523425" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63a68a2c28bfc804476c19" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c77325ee8e1ae3ed758f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8314004935709399103" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7ef3c690a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6216" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b2618f460384573951be52f5a5d45649b841b84bd1a59091b0fb64c28eb8395bce0e641a8bf8cb21b9867b281e2d8f9994a09c96470bd9d7a9431b741d04642535732cae9ff410f1b87054eabb91fa303a0bf1b18896b50b6bddf0d46d9902a89f4601bab774178cd7b1be14b63a68a2c28bfc804476c194ac77325ee8e1ae3ed758f1b7361477085cd983f45c7ef3c690a426216ffff", + "cborBytes": [ + 159, 191, 27, 38, 24, 244, 96, 56, 69, 115, 149, 27, 229, 47, 90, 93, 69, 100, 155, 132, 27, 132, 189, 26, 89, 9, + 27, 15, 182, 76, 40, 235, 131, 149, 188, 224, 230, 65, 168, 191, 140, 178, 27, 152, 103, 178, 129, 226, 216, 249, + 153, 74, 9, 201, 100, 112, 189, 157, 122, 148, 49, 183, 65, 208, 70, 66, 83, 87, 50, 202, 233, 255, 65, 15, 27, + 135, 5, 78, 171, 185, 31, 163, 3, 160, 191, 27, 24, 137, 107, 80, 182, 189, 223, 13, 70, 217, 144, 42, 137, 244, + 96, 27, 171, 119, 65, 120, 205, 123, 27, 225, 75, 99, 166, 138, 44, 40, 191, 200, 4, 71, 108, 25, 74, 199, 115, + 37, 238, 142, 26, 227, 237, 117, 143, 27, 115, 97, 71, 112, 133, 205, 152, 63, 69, 199, 239, 60, 105, 10, 66, 98, + 22, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 194, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a90630d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13733393198201290780" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14436101677171771161" + } + }, + { + "_tag": "ByteArray", + "bytearray": "177d2768aefc77" + }, + { + "_tag": "ByteArray", + "bytearray": "8d7c79" + }, + { + "_tag": "ByteArray", + "bytearray": "f50feb3a33d2b55f41a121cf" + }, + { + "_tag": "ByteArray", + "bytearray": "04fbc6a13bdd" + } + ] + } + ] + }, + "cborHex": "9f44a90630d51bbe96d059e38dc01c9f1bc85755fd593e871947177d2768aefc77438d7c794cf50feb3a33d2b55f41a121cf4604fbc6a13bddffff", + "cborBytes": [ + 159, 68, 169, 6, 48, 213, 27, 190, 150, 208, 89, 227, 141, 192, 28, 159, 27, 200, 87, 85, 253, 89, 62, 135, 25, + 71, 23, 125, 39, 104, 174, 252, 119, 67, 141, 124, 121, 76, 245, 15, 235, 58, 51, 210, 181, 95, 65, 161, 33, 207, + 70, 4, 251, 198, 161, 59, 221, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 195, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ee53e189fb0af2c3347b9f" + } + ] + }, + "cborHex": "9f4bee53e189fb0af2c3347b9fff", + "cborBytes": [159, 75, 238, 83, 225, 137, 251, 10, 242, 195, 52, 123, 159, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 196, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3456632616174536924" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13297388215586925007" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b1e0a8dbf44a8d21" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14549402707544948529" + } + }, + { + "_tag": "ByteArray", + "bytearray": "57f8ed29" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11697913901615485009" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15492361684884993387" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "69a5e2b699f1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c3eeb8b2e5e036877a3d4cc" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3aa0" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc63f7c0732321" + }, + { + "_tag": "ByteArray", + "bytearray": "299f8032" + } + ] + }, + "cborHex": "9f80d8669f1b2ff86d0ce61cc8dc9fd8669f1bb889d021268629cf9f48b1e0a8dbf44a8d211bc9e9dcad2d52bf314457f8ed29ffff1ba25756b71ee510511bd6ffecdecf71356bbf4669a5e2b699f14c8c3eeb8b2e5e036877a3d4ccff423aa0ffff47fc63f7c073232144299f8032ff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 47, 248, 109, 12, 230, 28, 200, 220, 159, 216, 102, 159, 27, 184, 137, 208, 33, 38, + 134, 41, 207, 159, 72, 177, 224, 168, 219, 244, 74, 141, 33, 27, 201, 233, 220, 173, 45, 82, 191, 49, 68, 87, 248, + 237, 41, 255, 255, 27, 162, 87, 86, 183, 30, 229, 16, 81, 27, 214, 255, 236, 222, 207, 113, 53, 107, 191, 70, 105, + 165, 226, 182, 153, 241, 76, 140, 62, 235, 139, 46, 94, 3, 104, 119, 163, 212, 204, 255, 66, 58, 160, 255, 255, + 71, 252, 99, 247, 192, 115, 35, 33, 68, 41, 159, 128, 50, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 197, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12277143625066391662" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "74da004eb78d416414" + } + ] + }, + "cborHex": "9f1baa612d147488a86ea0a04974da004eb78d416414ff", + "cborBytes": [ + 159, 27, 170, 97, 45, 20, 116, 136, 168, 110, 160, 160, 73, 116, 218, 0, 78, 183, 141, 65, 100, 20, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 198, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fff24709a2db2bb764714a78" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3f2fd11d8ed0c3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "54a95cfe16fe836a148d44e5" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e1575494eb6700" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3222851042881248391" + } + }, + { + "_tag": "ByteArray", + "bytearray": "82e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12342789493523463995" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10322496289608831088" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5771990779252107098" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed94e0ea8fe5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16981937221838069609" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9952706379378647685" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12792380874370083773" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d146" + }, + { + "_tag": "ByteArray", + "bytearray": "faacf78565416961e663" + }, + { + "_tag": "ByteArray", + "bytearray": "6a486d24b47908d9b28a" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7dac" + } + ] + }, + "cborHex": "9f4cfff24709a2db2bb764714a789f473f2fd11d8ed0c3ff9f9f4c54a95cfe16fe836a148d44e5ff47e1575494eb67001b2cb9ddf2b6ef1c874282e31bab4a65a642e3bf3bffd8669f1b8f40dfaf396c10709fd8669f1b501a3b084c26e75a9f46ed94e0ea8fe51bebabf5edd9a45f691b8a1f1db868a0e285ffff9f1bb187aaa0d8546bbd42d1464afaacf78565416961e6634a6a486d24b47908d9b28affffff427dacff", + "cborBytes": [ + 159, 76, 255, 242, 71, 9, 162, 219, 43, 183, 100, 113, 74, 120, 159, 71, 63, 47, 209, 29, 142, 208, 195, 255, 159, + 159, 76, 84, 169, 92, 254, 22, 254, 131, 106, 20, 141, 68, 229, 255, 71, 225, 87, 84, 148, 235, 103, 0, 27, 44, + 185, 221, 242, 182, 239, 28, 135, 66, 130, 227, 27, 171, 74, 101, 166, 66, 227, 191, 59, 255, 216, 102, 159, 27, + 143, 64, 223, 175, 57, 108, 16, 112, 159, 216, 102, 159, 27, 80, 26, 59, 8, 76, 38, 231, 90, 159, 70, 237, 148, + 224, 234, 143, 229, 27, 235, 171, 245, 237, 217, 164, 95, 105, 27, 138, 31, 29, 184, 104, 160, 226, 133, 255, 255, + 159, 27, 177, 135, 170, 160, 216, 84, 107, 189, 66, 209, 70, 74, 250, 172, 247, 133, 101, 65, 105, 97, 230, 99, + 74, 106, 72, 109, 36, 180, 121, 8, 217, 178, 138, 255, 255, 255, 66, 125, 172, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 199, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11941940055358183540" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0804" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2526802308554057425" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10597979367656246309" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4657081305728071465" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18290787541245024645" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12392229664436097550" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2575780014264567030" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10404940557412089850" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1002144691939080328" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c3a8e8826" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "450582124129725173" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2536119915071250238" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1846104358642473648" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b6bb29b5ae3f867ded35ffd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5311583826547680248" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e3f40dd5e98b8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12167913121654263520" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16188582119772421875" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17656048707603840122" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7cc1483c9adeaad7" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1623854567039737285" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7590896561135535531" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "888db2f920626403e7481b36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7163528788036965443" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18114557686241849666" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13173453159171384265" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14031043322578711038" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97264eeb522c29cdb746" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3981e276e4fe13b022" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd9be146d5f3e17be98205" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b306deb8091" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96cce19c10832994" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d09c6e1467" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "829e73" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da5edfe3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12889327310714605810" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2ec12771ff8a4efb" + }, + { + "_tag": "ByteArray", + "bytearray": "a3b714bd6108195bb0a30b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02e6ed6c7159caf8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "782a41879c2b3860e4d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24ba2e4cc7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16356471271015714548" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cd7db35e5dc59e3309b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7dab75d8c03b77" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a22bfcff4641" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1395183287491318700" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15743555620177796165" + } + } + ] + }, + "cborHex": "9f9fd8669f1ba5ba4b3590a218749f4208041b2311014fe30066d11b931396159a11cc25ffffd8669f1b40a146c5f608b7299f1bfdd5ee5c2a0cd9851babfa0b3913c5920e1b23bf0246a1ca44f61b9065c64f299a3ffaffffbf1b0de85549a8927888456c3a8e8826ffbf1b0640ca0dfae4aaf51b23321ba0359d9f3e1b199eae22132f5ab04c6b6bb29b5ae3f867ded35ffd1b49b689592815a3f8471e3f40dd5e98b81ba8dd1c840a044ee01be0a965aaca467ef31bf506e2c0f9b8bc7a487cc1483c9adeaad7ffffd8669f1b168917200b4c9dc59fd8669f1b695848343d37c5ab9f4c888db2f920626403e7481b361b6369f77a8d3a54431bfb63d63d97c471421bb6d181da31a863c9ffffffffd8669f1bc2b8478fee6bb1fe9fbf41194a97264eeb522c29cdb746493981e276e4fe13b0224bcd9be146d5f3e17be98205464b306deb80914896cce19c1083299445d09c6e146743829e7344da5edfe31bb2e016e604e290f2ff482ec12771ff8a4efb4ba3b714bd6108195bb0a30bffffbf4802e6ed6c7159caf84a782a41879c2b3860e4d14524ba2e4cc71be2fddbf5efc60ef44a7cd7db35e5dc59e3309b477dab75d8c03b7746a22bfcff46411b135cafced77b53acff1bda7c586c724d5c45ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 165, 186, 75, 53, 144, 162, 24, 116, 159, 66, 8, 4, 27, 35, 17, 1, 79, 227, 0, 102, + 209, 27, 147, 19, 150, 21, 154, 17, 204, 37, 255, 255, 216, 102, 159, 27, 64, 161, 70, 197, 246, 8, 183, 41, 159, + 27, 253, 213, 238, 92, 42, 12, 217, 133, 27, 171, 250, 11, 57, 19, 197, 146, 14, 27, 35, 191, 2, 70, 161, 202, 68, + 246, 27, 144, 101, 198, 79, 41, 154, 63, 250, 255, 255, 191, 27, 13, 232, 85, 73, 168, 146, 120, 136, 69, 108, 58, + 142, 136, 38, 255, 191, 27, 6, 64, 202, 13, 250, 228, 170, 245, 27, 35, 50, 27, 160, 53, 157, 159, 62, 27, 25, + 158, 174, 34, 19, 47, 90, 176, 76, 107, 107, 178, 155, 90, 227, 248, 103, 222, 211, 95, 253, 27, 73, 182, 137, 89, + 40, 21, 163, 248, 71, 30, 63, 64, 221, 94, 152, 184, 27, 168, 221, 28, 132, 10, 4, 78, 224, 27, 224, 169, 101, + 170, 202, 70, 126, 243, 27, 245, 6, 226, 192, 249, 184, 188, 122, 72, 124, 193, 72, 60, 154, 222, 170, 215, 255, + 255, 216, 102, 159, 27, 22, 137, 23, 32, 11, 76, 157, 197, 159, 216, 102, 159, 27, 105, 88, 72, 52, 61, 55, 197, + 171, 159, 76, 136, 141, 178, 249, 32, 98, 100, 3, 231, 72, 27, 54, 27, 99, 105, 247, 122, 141, 58, 84, 67, 27, + 251, 99, 214, 61, 151, 196, 113, 66, 27, 182, 209, 129, 218, 49, 168, 99, 201, 255, 255, 255, 255, 216, 102, 159, + 27, 194, 184, 71, 143, 238, 107, 177, 254, 159, 191, 65, 25, 74, 151, 38, 78, 235, 82, 44, 41, 205, 183, 70, 73, + 57, 129, 226, 118, 228, 254, 19, 176, 34, 75, 205, 155, 225, 70, 213, 243, 225, 123, 233, 130, 5, 70, 75, 48, 109, + 235, 128, 145, 72, 150, 204, 225, 156, 16, 131, 41, 148, 69, 208, 156, 110, 20, 103, 67, 130, 158, 115, 68, 218, + 94, 223, 227, 27, 178, 224, 22, 230, 4, 226, 144, 242, 255, 72, 46, 193, 39, 113, 255, 138, 78, 251, 75, 163, 183, + 20, 189, 97, 8, 25, 91, 176, 163, 11, 255, 255, 191, 72, 2, 230, 237, 108, 113, 89, 202, 248, 74, 120, 42, 65, + 135, 156, 43, 56, 96, 228, 209, 69, 36, 186, 46, 76, 199, 27, 226, 253, 219, 245, 239, 198, 14, 244, 74, 124, 215, + 219, 53, 229, 220, 89, 227, 48, 155, 71, 125, 171, 117, 216, 192, 59, 119, 70, 162, 43, 252, 255, 70, 65, 27, 19, + 92, 175, 206, 215, 123, 83, 172, 255, 27, 218, 124, 88, 108, 114, 77, 92, 69, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 200, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1498026612951003106" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf0e1b14ca0f448106afe2ffff", + "cborBytes": [159, 191, 14, 27, 20, 202, 15, 68, 129, 6, 175, 226, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 201, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8303fb" + } + ] + }, + "cborHex": "9f438303fbff", + "cborBytes": [159, 67, 131, 3, 251, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 202, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4564121229216237451" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1318486570836525995" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1a8" + }, + { + "_tag": "ByteArray", + "bytearray": "e88686c5133c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15852139894212398818" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "69de84a54e00ee13d5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16773432691890059385" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16831496646679827514" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9962554204463714473" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16782431605133377138" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f362e7d45900" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17387181298719077980" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5aff0ff385c294" + }, + { + "_tag": "ByteArray", + "bytearray": "8a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5373102696406642999" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10762761188395910394" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17975182845349989168" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16954598819813162908" + } + } + } + ] + } + ] + }, + "cborHex": "9f809fd8669f1b3f5704138340c78b9f1b124c348cefd583ab42c1a846e88686c5133c1bdbfe1d3edc540ee2ffff4969de84a54e00ee13d59f1be8c73429f007f8791be9957d05e787943a1b8a421a43dca250a9ffd8669f1be8e72ca0b3437e7280ff9f46f362e7d45900ffffd8669f1bf14bad451b77365c9f475aff0ff385c294418affffbf1b4a91186f3902f1371b955d0246fcb304fa1bf974ad8fadc80b301beb4ad5cc1c387f9cffff", + "cborBytes": [ + 159, 128, 159, 216, 102, 159, 27, 63, 87, 4, 19, 131, 64, 199, 139, 159, 27, 18, 76, 52, 140, 239, 213, 131, 171, + 66, 193, 168, 70, 232, 134, 134, 197, 19, 60, 27, 219, 254, 29, 62, 220, 84, 14, 226, 255, 255, 73, 105, 222, 132, + 165, 78, 0, 238, 19, 213, 159, 27, 232, 199, 52, 41, 240, 7, 248, 121, 27, 233, 149, 125, 5, 231, 135, 148, 58, + 27, 138, 66, 26, 67, 220, 162, 80, 169, 255, 216, 102, 159, 27, 232, 231, 44, 160, 179, 67, 126, 114, 128, 255, + 159, 70, 243, 98, 231, 212, 89, 0, 255, 255, 216, 102, 159, 27, 241, 75, 173, 69, 27, 119, 54, 92, 159, 71, 90, + 255, 15, 243, 133, 194, 148, 65, 138, 255, 255, 191, 27, 74, 145, 24, 111, 57, 2, 241, 55, 27, 149, 93, 2, 70, + 252, 179, 4, 250, 27, 249, 116, 173, 143, 173, 200, 11, 48, 27, 235, 74, 213, 204, 28, 56, 127, 156, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 203, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8483432263153644498" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16766099321275862089" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2823c42f75" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4272587923386695742" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "682fe2233b58a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16528585105022244646" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b24ab5ea86" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16346471341153218213" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ec" + }, + { + "_tag": "ByteArray", + "bytearray": "a3622ca6f09ccad0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17079624631458743525" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3563510612323990317" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14500782465410957283" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7000649097622239558" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e5f2a1297aa8f43f7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6126188604336692498" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b75bb34b2395c73d21be8ad26808990cc49452823c42f751b3b4b48144516803e47682fe2233b58a71be5615494b0a9d72645b24ab5ea861be2da5513d48a6ea5ff41ec48a3622ca6f09ccad0d8669f1bed07041c4f1c44e59fd8669f1b3174220588e7fb2d9f1bc93d20d2e8087fe3418f1b61274d4364eeb946ffff49e5f2a1297aa8f43f7c1b55049813e488dd12ffffff", + "cborBytes": [ + 159, 191, 27, 117, 187, 52, 178, 57, 92, 115, 210, 27, 232, 173, 38, 128, 137, 144, 204, 73, 69, 40, 35, 196, 47, + 117, 27, 59, 75, 72, 20, 69, 22, 128, 62, 71, 104, 47, 226, 35, 59, 88, 167, 27, 229, 97, 84, 148, 176, 169, 215, + 38, 69, 178, 74, 181, 234, 134, 27, 226, 218, 85, 19, 212, 138, 110, 165, 255, 65, 236, 72, 163, 98, 44, 166, 240, + 156, 202, 208, 216, 102, 159, 27, 237, 7, 4, 28, 79, 28, 68, 229, 159, 216, 102, 159, 27, 49, 116, 34, 5, 136, + 231, 251, 45, 159, 27, 201, 61, 32, 210, 232, 8, 127, 227, 65, 143, 27, 97, 39, 77, 67, 100, 238, 185, 70, 255, + 255, 73, 229, 242, 161, 41, 122, 168, 244, 63, 124, 27, 85, 4, 152, 19, 228, 136, 221, 18, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 204, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ec5d760bc3a4ddc6" + } + ] + }, + "cborHex": "9f48ec5d760bc3a4ddc6ff", + "cborBytes": [159, 72, 236, 93, 118, 11, 195, 164, 221, 198, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 205, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e0cd5d50fe5184" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2669089252911265164" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11614991503857623647" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "86d8d327675b21564863" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10598125135936952270" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17400105582721060787" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10968178192046629663" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6891849176846425267" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11413479015785912304" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83194883" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14910299357795454305" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c2c" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "95f64c829c37a4687f" + }, + { + "_tag": "ByteArray", + "bytearray": "3f6f8c712d5c614470" + } + ] + } + ] + }, + "cborHex": "9f47e0cd5d50fe5184d8669f1b250a8288b996b58c9fd8669f1ba130bd3be09d225f9f4a86d8d327675b21564863ffffbf1b93141aa8eca917ce1bf17997d678614fb31b9836cbf42a20231f1b5fa4c44fcf7fdcb31b9e64d2b1934b57f044831948831bceec06448c220d61425c2cff804995f64c829c37a4687f493f6f8c712d5c614470ffffff", + "cborBytes": [ + 159, 71, 224, 205, 93, 80, 254, 81, 132, 216, 102, 159, 27, 37, 10, 130, 136, 185, 150, 181, 140, 159, 216, 102, + 159, 27, 161, 48, 189, 59, 224, 157, 34, 95, 159, 74, 134, 216, 211, 39, 103, 91, 33, 86, 72, 99, 255, 255, 191, + 27, 147, 20, 26, 168, 236, 169, 23, 206, 27, 241, 121, 151, 214, 120, 97, 79, 179, 27, 152, 54, 203, 244, 42, 32, + 35, 31, 27, 95, 164, 196, 79, 207, 127, 220, 179, 27, 158, 100, 210, 177, 147, 75, 87, 240, 68, 131, 25, 72, 131, + 27, 206, 236, 6, 68, 140, 34, 13, 97, 66, 92, 44, 255, 128, 73, 149, 246, 76, 130, 156, 55, 164, 104, 127, 73, 63, + 111, 140, 113, 45, 92, 97, 68, 112, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 206, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17483611588760610966" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17033507507714952236" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "72c15f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9952706856133770490" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1651603248030273666" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2694385243773860327" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e1a2c14424" + }, + { + "_tag": "ByteArray", + "bytearray": "39858eebe7f50528ec" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9319310276645806984" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6698903879023748940" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62e5be" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9752681168669178716" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11879058491307766459" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "93f71e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14101790468225457510" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c384a8f64c28" + }, + { + "_tag": "ByteArray", + "bytearray": "0194ebabd75f" + }, + { + "_tag": "ByteArray", + "bytearray": "ff386d900a94b5f1bf6e" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "346d2c1757be87e4c51229e1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ed22aec8e5452efb3708801" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee85df0a3e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e61a5cc3135ce97051c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6114217026737534056" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "753cb1c1a5e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5fa45f056" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94e6c45110" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9584" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e33008414bf8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7fafb0ca6c102201" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fddd01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15531272908675408955" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf2a2441b9afaa8969f1bec632cd4b44c8c2cffff4372c15f9fd8669f1b8a1f1e276972bcfa9f1b16ebac674cb9d0821b2564611a8f31f9e745e1a2c144244939858eebe7f50528ecffffd8669f1b8154d7521f1ee3889f1b5cf74995edb2674c4362e5beffffd8669f1b87587bd9da2afb5c80ffd8669f1ba4dae4c2887cb2bb9f4393f71e1bc3b39fb763915d6646c384a8f64c28460194ebabd75f4aff386d900a94b5f1bf6effffff4c346d2c1757be87e4c51229e1bf4c1ed22aec8e5452efb370880145ee85df0a3e4a4e61a5cc3135ce97051c1b54da0ffdc655f46846753cb1c1a5e145a5fa45f0564594e6c4511042958446e33008414bf8487fafb0ca6c10220143fddd011bd78a2a6c173ee43bffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 242, 162, 68, 27, 154, 250, 168, 150, 159, 27, 236, 99, 44, 212, 180, 76, 140, 44, 255, + 255, 67, 114, 193, 95, 159, 216, 102, 159, 27, 138, 31, 30, 39, 105, 114, 188, 250, 159, 27, 22, 235, 172, 103, + 76, 185, 208, 130, 27, 37, 100, 97, 26, 143, 49, 249, 231, 69, 225, 162, 193, 68, 36, 73, 57, 133, 142, 235, 231, + 245, 5, 40, 236, 255, 255, 216, 102, 159, 27, 129, 84, 215, 82, 31, 30, 227, 136, 159, 27, 92, 247, 73, 149, 237, + 178, 103, 76, 67, 98, 229, 190, 255, 255, 216, 102, 159, 27, 135, 88, 123, 217, 218, 42, 251, 92, 128, 255, 216, + 102, 159, 27, 164, 218, 228, 194, 136, 124, 178, 187, 159, 67, 147, 247, 30, 27, 195, 179, 159, 183, 99, 145, 93, + 102, 70, 195, 132, 168, 246, 76, 40, 70, 1, 148, 235, 171, 215, 95, 74, 255, 56, 109, 144, 10, 148, 181, 241, 191, + 110, 255, 255, 255, 76, 52, 109, 44, 23, 87, 190, 135, 228, 197, 18, 41, 225, 191, 76, 30, 210, 42, 236, 142, 84, + 82, 239, 179, 112, 136, 1, 69, 238, 133, 223, 10, 62, 74, 78, 97, 165, 204, 49, 53, 206, 151, 5, 28, 27, 84, 218, + 15, 253, 198, 85, 244, 104, 70, 117, 60, 177, 193, 165, 225, 69, 165, 250, 69, 240, 86, 69, 148, 230, 196, 81, 16, + 66, 149, 132, 70, 227, 48, 8, 65, 75, 248, 72, 127, 175, 176, 202, 108, 16, 34, 1, 67, 253, 221, 1, 27, 215, 138, + 42, 108, 23, 62, 228, 59, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 207, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0142d1237591872091e7b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a58d69b11" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3390c6a46e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6041706679756897781" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "712f7fd8ac678a4750" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7791dc1ceca36980d5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85e97bff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5798786451027999194" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2f53e1243384653097bf87c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ebaa5572621efcc" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "83bb0bd3b96f6660d6cb" + }, + { + "_tag": "ByteArray", + "bytearray": "64f7f943449067" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10364580384244524393" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6854074290180727237" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6545260281374734488" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4147992375590723395" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13356232077374755116" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9022671119457286515" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e2d10" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8587814058964450985" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2b213adf6f" + }, + { + "_tag": "ByteArray", + "bytearray": "f1e4484f3991351cb72cf48b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12124679414228150847" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1680408631264142881" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4355916913526971188" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "81f1b310ca15d36a8fe153" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1934463662041660180" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1268771553362897390" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2817e019653305" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4317608441646819980" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28a76c4ee440" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16183168406574020196" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "277ee4da" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2690173760751189914" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8483184246765553569" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4618921748048423848" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a55da715ea9595063f3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5736879241194639557" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8716844664549869976" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6604348373016487112" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13329409774750172416" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14351233322015989272" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f41d7da9aa64c2c50ad9c9" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16393587629150688710" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5886937819224458253" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6535903621802902353" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9876665737187711926" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f84c1177" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12635778841014125184" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7fdc313f2b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14602722516203516386" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14932897572304578285" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15199066002504240622" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b73f72f26e9fd6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3306192235521748830" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17606346564771524759" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf4b0142d1237591872091e7b5456a58d69b11453390c6a46e1b53d874370403bdf549712f7fd8ac678a4750497791dc1ceca36980d54485e97bff1b50796d8dcddf39da4cd2f53e1243384653097bf87c484ebaa5572621efccff9f4a83bb0bd3b96f6660d6cb4764f7f9434490671b8fd662f210e065691b5f1e9040a25c21c5ff1b5ad56f8c31d07898bf1b3990a116ae1d1f431bb95ade4f5d99912c1b7d36f794386d7973432e2d10ffd8669f1b772e0b62edae7ea99f452b213adf6f4cf1e4484f3991351cb72cf48b1ba84383b01c8f6a3fffffff1b175202bf37ffe6211b3c73535aade41b349f4b81f1b310ca15d36a8fe153bf1b1ad898738ee4fb141b119b95016b50e9ee472817e0196533051b3beb3a0083962a8c4628a76c4ee4401be09629ec762b3664ff44277ee4dabf1b25556ac841a6bf9a1b75ba532068a687a11b4019b4db95c0aba84a5a55da715ea9595063f31b4f9d7d464ab810c51b78f87409e0c109981b5ba75bda9a93a4c81bb8fb9391619a85001bc729d2ab97831e184bf41d7da9aa64c2c50ad9c9ffffd8669f1be381b9177dc3d5c69fbf1b51b29ac199afc40d1b5ab431b71fc043511b8910f728be585bb644f84c11771baf5b4de89f0b4280457fdc313f2b1bcaa74ac28be8b1e21bcf3c4f396081e6edff1bd2edee004cfb4dee9f47b73f72f26e9fd61b2de1f4523d6daf5e1bf4564eeb11a03097ffffffff", + "cborBytes": [ + 159, 159, 191, 75, 1, 66, 209, 35, 117, 145, 135, 32, 145, 231, 181, 69, 106, 88, 214, 155, 17, 69, 51, 144, 198, + 164, 110, 27, 83, 216, 116, 55, 4, 3, 189, 245, 73, 113, 47, 127, 216, 172, 103, 138, 71, 80, 73, 119, 145, 220, + 28, 236, 163, 105, 128, 213, 68, 133, 233, 123, 255, 27, 80, 121, 109, 141, 205, 223, 57, 218, 76, 210, 245, 62, + 18, 67, 56, 70, 83, 9, 123, 248, 124, 72, 78, 186, 165, 87, 38, 33, 239, 204, 255, 159, 74, 131, 187, 11, 211, + 185, 111, 102, 96, 214, 203, 71, 100, 247, 249, 67, 68, 144, 103, 27, 143, 214, 98, 242, 16, 224, 101, 105, 27, + 95, 30, 144, 64, 162, 92, 33, 197, 255, 27, 90, 213, 111, 140, 49, 208, 120, 152, 191, 27, 57, 144, 161, 22, 174, + 29, 31, 67, 27, 185, 90, 222, 79, 93, 153, 145, 44, 27, 125, 54, 247, 148, 56, 109, 121, 115, 67, 46, 45, 16, 255, + 216, 102, 159, 27, 119, 46, 11, 98, 237, 174, 126, 169, 159, 69, 43, 33, 58, 223, 111, 76, 241, 228, 72, 79, 57, + 145, 53, 28, 183, 44, 244, 139, 27, 168, 67, 131, 176, 28, 143, 106, 63, 255, 255, 255, 27, 23, 82, 2, 191, 55, + 255, 230, 33, 27, 60, 115, 83, 90, 173, 228, 27, 52, 159, 75, 129, 241, 179, 16, 202, 21, 211, 106, 143, 225, 83, + 191, 27, 26, 216, 152, 115, 142, 228, 251, 20, 27, 17, 155, 149, 1, 107, 80, 233, 238, 71, 40, 23, 224, 25, 101, + 51, 5, 27, 59, 235, 58, 0, 131, 150, 42, 140, 70, 40, 167, 108, 78, 228, 64, 27, 224, 150, 41, 236, 118, 43, 54, + 100, 255, 68, 39, 126, 228, 218, 191, 27, 37, 85, 106, 200, 65, 166, 191, 154, 27, 117, 186, 83, 32, 104, 166, + 135, 161, 27, 64, 25, 180, 219, 149, 192, 171, 168, 74, 90, 85, 218, 113, 94, 169, 89, 80, 99, 243, 27, 79, 157, + 125, 70, 74, 184, 16, 197, 27, 120, 248, 116, 9, 224, 193, 9, 152, 27, 91, 167, 91, 218, 154, 147, 164, 200, 27, + 184, 251, 147, 145, 97, 154, 133, 0, 27, 199, 41, 210, 171, 151, 131, 30, 24, 75, 244, 29, 125, 169, 170, 100, + 194, 197, 10, 217, 201, 255, 255, 216, 102, 159, 27, 227, 129, 185, 23, 125, 195, 213, 198, 159, 191, 27, 81, 178, + 154, 193, 153, 175, 196, 13, 27, 90, 180, 49, 183, 31, 192, 67, 81, 27, 137, 16, 247, 40, 190, 88, 91, 182, 68, + 248, 76, 17, 119, 27, 175, 91, 77, 232, 159, 11, 66, 128, 69, 127, 220, 49, 63, 43, 27, 202, 167, 74, 194, 139, + 232, 177, 226, 27, 207, 60, 79, 57, 96, 129, 230, 237, 255, 27, 210, 237, 238, 0, 76, 251, 77, 238, 159, 71, 183, + 63, 114, 242, 110, 159, 214, 27, 45, 225, 244, 82, 61, 109, 175, 94, 27, 244, 86, 78, 235, 17, 160, 48, 151, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 208, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5097246900402520493" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16239410415084435249" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02" + }, + { + "_tag": "ByteArray", + "bytearray": "8af83327" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2eda31cd59ebdb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11836471384936748730" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75a21f624748036c56" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00b8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c16bbe8d146d43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a955dc5ac5a57d93e" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1339865171322877028" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3154" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15864662876810748581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "434499253436484990" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16172375704885436077" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67ffd0a622c52d61" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17368027047527360876" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d14f" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "248cbc9f67a80f8b5c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01ba9543a7be9597cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ce059" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10238690568356561935" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "417e6d09f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ceb8f3a53b04efa111c2c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8d6ce67" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5739354117003026059" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b46bd0f0caef401ad9fd8669f1be15df9bb80e2f7319f4102448af83327ffffbf472eda31cd59ebdb1ba4439803253b16ba4975a21f624748036c564200b847c16bbe8d146d43495a955dc5ac5a57d93effbf1b129828463f9e34644231541bdc2a9ad4f5a1a2a51b0607a6c4d8410d7e1be06fd204c7da9ead4867ffd0a622c52d611bf107a094793ea96c42d14fffffff49248cbc9f67a80f8b5cbf4901ba9543a7be9597cf4255d3432ce0591b8e1722d33409040f45417e6d09f241e34bceb8f3a53b04efa111c2c844b8d6ce6741e51b4fa6482938241e8bffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 70, 189, 15, 12, 174, 244, 1, 173, 159, 216, 102, 159, 27, 225, 93, 249, 187, 128, 226, + 247, 49, 159, 65, 2, 68, 138, 248, 51, 39, 255, 255, 191, 71, 46, 218, 49, 205, 89, 235, 219, 27, 164, 67, 152, 3, + 37, 59, 22, 186, 73, 117, 162, 31, 98, 71, 72, 3, 108, 86, 66, 0, 184, 71, 193, 107, 190, 141, 20, 109, 67, 73, + 90, 149, 93, 197, 172, 90, 87, 217, 62, 255, 191, 27, 18, 152, 40, 70, 63, 158, 52, 100, 66, 49, 84, 27, 220, 42, + 154, 212, 245, 161, 162, 165, 27, 6, 7, 166, 196, 216, 65, 13, 126, 27, 224, 111, 210, 4, 199, 218, 158, 173, 72, + 103, 255, 208, 166, 34, 197, 45, 97, 27, 241, 7, 160, 148, 121, 62, 169, 108, 66, 209, 79, 255, 255, 255, 73, 36, + 140, 188, 159, 103, 168, 15, 139, 92, 191, 73, 1, 186, 149, 67, 167, 190, 149, 151, 207, 66, 85, 211, 67, 44, 224, + 89, 27, 142, 23, 34, 211, 52, 9, 4, 15, 69, 65, 126, 109, 9, 242, 65, 227, 75, 206, 184, 243, 165, 59, 4, 239, + 161, 17, 194, 200, 68, 184, 214, 206, 103, 65, 229, 27, 79, 166, 72, 41, 56, 36, 30, 139, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 209, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f0f9e38101f9a7" + } + ] + }, + "cborHex": "9f47f0f9e38101f9a7ff", + "cborBytes": [159, 71, 240, 249, 227, 129, 1, 249, 167, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 210, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "50fe0ab649fbacc4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6188482197684308817" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4850fe0ab649fbacc49f1bfffffffffffffff49f1b55e1e7c553cd4b51ffffff", + "cborBytes": [ + 159, 72, 80, 254, 10, 182, 73, 251, 172, 196, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 27, 85, 225, + 231, 197, 83, 205, 75, 81, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 211, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11586671400810912804" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d0a42ba79e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1399430307517643424" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb2b625a0c" + }, + { + "_tag": "ByteArray", + "bytearray": "4f002ad99ab7d6401b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8044090159697543201" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2806223779675017802" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8353105686590614392" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11965661818266375369" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1364891101717264407" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bb18be0b2a1ed09c7050" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10012754578459876929" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7718f4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5116289371943132238" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48bad1487b570c94" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8208324413028419745" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11963779299651707553" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15384517097013729969" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64754d03a0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "09763a9b4857da78fc02c71f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17401986295662326591" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f85fabbb7d89" + } + ] + }, + "cborHex": "9fa09f80d8669f1ba0cc20400e831c249f45d0a42ba79e1b136bc6733f813aa045cb2b625a0c494f002ad99ab7d6401bffff1b6fa259617dfcc021ffd8669f1b26f1b5a8dbc8924a9fd8669f1b73ec315d84876b789f1ba60e9206e438d4c91b12f11139baf2f817ffff4abb18be0b2a1ed09c70501b8af4733d40445e41437718f4bf1b4700b61396c6dc4e4848bad1487b570c941b71e9d39067b9c8a11ba607e1e2dee962a11bd580c8ca006d5ab14564754d03a04c09763a9b4857da78fc02c71f1bf1804656132b333fffffff46f85fabbb7d89ff", + "cborBytes": [ + 159, 160, 159, 128, 216, 102, 159, 27, 160, 204, 32, 64, 14, 131, 28, 36, 159, 69, 208, 164, 43, 167, 158, 27, 19, + 107, 198, 115, 63, 129, 58, 160, 69, 203, 43, 98, 90, 12, 73, 79, 0, 42, 217, 154, 183, 214, 64, 27, 255, 255, 27, + 111, 162, 89, 97, 125, 252, 192, 33, 255, 216, 102, 159, 27, 38, 241, 181, 168, 219, 200, 146, 74, 159, 216, 102, + 159, 27, 115, 236, 49, 93, 132, 135, 107, 120, 159, 27, 166, 14, 146, 6, 228, 56, 212, 201, 27, 18, 241, 17, 57, + 186, 242, 248, 23, 255, 255, 74, 187, 24, 190, 11, 42, 30, 208, 156, 112, 80, 27, 138, 244, 115, 61, 64, 68, 94, + 65, 67, 119, 24, 244, 191, 27, 71, 0, 182, 19, 150, 198, 220, 78, 72, 72, 186, 209, 72, 123, 87, 12, 148, 27, 113, + 233, 211, 144, 103, 185, 200, 161, 27, 166, 7, 225, 226, 222, 233, 98, 161, 27, 213, 128, 200, 202, 0, 109, 90, + 177, 69, 100, 117, 77, 3, 160, 76, 9, 118, 58, 155, 72, 87, 218, 120, 252, 2, 199, 31, 27, 241, 128, 70, 86, 19, + 43, 51, 63, 255, 255, 255, 70, 248, 95, 171, 187, 125, 137, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 212, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10487139114771583830" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14837571184155426427" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a2d717f0ba7da441ad" + } + ] + }, + "cborHex": "9fd8669f1b9189cd762e1093569f1bcde9a4611127fe7bffff49a2d717f0ba7da441adff", + "cborBytes": [ + 159, 216, 102, 159, 27, 145, 137, 205, 118, 46, 16, 147, 86, 159, 27, 205, 233, 164, 97, 17, 39, 254, 123, 255, + 255, 73, 162, 215, 23, 240, 186, 125, 164, 65, 173, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 213, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "36" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + } + ] + }, + "cborHex": "9f41369f09ffff", + "cborBytes": [159, 65, 54, 159, 9, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 214, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9140914730529944535" + } + } + ] + }, + "cborHex": "9f1b7edb0d844b5f73d7ff", + "cborBytes": [159, 27, 126, 219, 13, 132, 75, 95, 115, 215, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 215, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "94669109642075404" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "48" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12398029780629188538" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e67cb413" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12894883604501336177" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9383517721273055554" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12764393436492213517" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13777288722792732841" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13547342936546235670" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17671495587870023952" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d146c41" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18020486488397507470" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6494064407535544071" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "980579677188391821" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b0150550dbb6b1d0c9f41481bac0ea665dd1defba44e67cb413ffffffd8669f1bb2f3d4517a4f90719fbf1b8238f3a6c81039421bb1243c33ab722d0d1bbf32c319220e58a91bbc01d49fb73c55161bf53dc39c0ce02110441d146c411bfa15a0fc0ca8eb8e1b5a1f8d2befa9e707ff011bfffffffffffffff4a01b0d9bb80564c8038dffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 1, 80, 85, 13, 187, 107, 29, 12, 159, 65, 72, 27, 172, 14, 166, 101, 221, 29, 239, + 186, 68, 230, 124, 180, 19, 255, 255, 255, 216, 102, 159, 27, 178, 243, 212, 81, 122, 79, 144, 113, 159, 191, 27, + 130, 56, 243, 166, 200, 16, 57, 66, 27, 177, 36, 60, 51, 171, 114, 45, 13, 27, 191, 50, 195, 25, 34, 14, 88, 169, + 27, 188, 1, 212, 159, 183, 60, 85, 22, 27, 245, 61, 195, 156, 12, 224, 33, 16, 68, 29, 20, 108, 65, 27, 250, 21, + 160, 252, 12, 168, 235, 142, 27, 90, 31, 141, 43, 239, 169, 231, 7, 255, 1, 27, 255, 255, 255, 255, 255, 255, 255, + 244, 160, 27, 13, 155, 184, 5, 100, 200, 3, 141, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 216, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5203422670215161150" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2a8492db55b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5369430378018843474" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17679870036189239136" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14883091641939190735" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17990231785598190732" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3285505464087029224" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5133973622898527192" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9670444819608744850" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2260360308094834120" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1316429729162310412" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b483645598263a53e46e2a8492db55b1b4a840c7af8012b521bf55b84203e21d7601bce8b5cfe8d5ee3cf1bf9aa247e1f85848cff1b2d9875cfee8325e81b473f89cf1f178bd8d8669f1b86345253c4cbb3929f9f1b1f5e69b96c6295c81b1244e5dd2a7bb30cffffffff", + "cborBytes": [ + 159, 191, 27, 72, 54, 69, 89, 130, 99, 165, 62, 70, 226, 168, 73, 45, 181, 91, 27, 74, 132, 12, 122, 248, 1, 43, + 82, 27, 245, 91, 132, 32, 62, 33, 215, 96, 27, 206, 139, 92, 254, 141, 94, 227, 207, 27, 249, 170, 36, 126, 31, + 133, 132, 140, 255, 27, 45, 152, 117, 207, 238, 131, 37, 232, 27, 71, 63, 137, 207, 31, 23, 139, 216, 216, 102, + 159, 27, 134, 52, 82, 83, 196, 203, 179, 146, 159, 159, 27, 31, 94, 105, 185, 108, 98, 149, 200, 27, 18, 68, 229, + 221, 42, 123, 179, 12, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 217, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + "cborHex": "9f10ff", + "cborBytes": [159, 16, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 218, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4897560147712981471" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1405652266853412979" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3583027431102280964" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13357586182596297349" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa19" + }, + { + "_tag": "ByteArray", + "bytearray": "0d93d049f3e0e1a246c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "51bed4ee0ae01ff48c" + } + ] + } + ] + }, + "cborHex": "9f1b43f7a101868ab9df9fd8669f1b1381e14a0b85307380ffd8669f1b31b978770354f5049f1bb95faddc8e51828542fa194a0d93d049f3e0e1a246c71bfffffffffffffffeffff4951bed4ee0ae01ff48cffff", + "cborBytes": [ + 159, 27, 67, 247, 161, 1, 134, 138, 185, 223, 159, 216, 102, 159, 27, 19, 129, 225, 74, 11, 133, 48, 115, 128, + 255, 216, 102, 159, 27, 49, 185, 120, 119, 3, 84, 245, 4, 159, 27, 185, 95, 173, 220, 142, 81, 130, 133, 66, 250, + 25, 74, 13, 147, 208, 73, 243, 224, 225, 162, 70, 199, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255, 255, 73, + 81, 190, 212, 238, 10, 224, 31, 244, 140, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 219, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7984069347842264692" + } + } + ] + }, + "cborHex": "9f1b6ecd1cc53c390e74ff", + "cborBytes": [159, 27, 110, 205, 28, 197, 60, 57, 14, 116, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 220, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14306824357069063217" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f93eb2371c1fb1d79f4cd7e1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17698716796866311827" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a5a26f689c95e3cc1f6649d" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "65cece" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3842908950103667342" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b211c141" + }, + { + "_tag": "ByteArray", + "bytearray": "0a6d" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "42d3d02a5d27bbce8ae4a4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1337076201176073068" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16598215668591752598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12161795089183095900" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16008001206512217268" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "67" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "428853735320950897" + } + }, + { + "_tag": "ByteArray", + "bytearray": "50b238" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8592172078588214920" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f6" + }, + { + "_tag": "ByteArray", + "bytearray": "80c75f2c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13834761978185799504" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ad9e8cf45e3e17d6815b93" + }, + { + "_tag": "ByteArray", + "bytearray": "df611d1a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2603d9" + } + ] + } + ] + }, + "cborHex": "9f9fbf1bc68c0cf3b30204314cf93eb2371c1fb1d79f4cd7e11bf59e7927a974b6934c9a5a26f689c95e3cc1f6649dff4365ceced8669f1b3554c1545b19328e9f44b211c141420a6dffffff4b42d3d02a5d27bbce8ae4a41b128e3fb888ba836cd8669f1be658b5359fbbf5969f1ba8c7603299d93c5cd8669f1bde27d848862f6cb49f41671b05f398333a6798714350b2381b773d86fb7147be88ffff9f41f64480c75f2c1bbffef2b82dd857504bad9e8cf45e3e17d6815b9344df611d1aff432603d9ffffff", + "cborBytes": [ + 159, 159, 191, 27, 198, 140, 12, 243, 179, 2, 4, 49, 76, 249, 62, 178, 55, 28, 31, 177, 215, 159, 76, 215, 225, + 27, 245, 158, 121, 39, 169, 116, 182, 147, 76, 154, 90, 38, 246, 137, 201, 94, 60, 193, 246, 100, 157, 255, 67, + 101, 206, 206, 216, 102, 159, 27, 53, 84, 193, 84, 91, 25, 50, 142, 159, 68, 178, 17, 193, 65, 66, 10, 109, 255, + 255, 255, 75, 66, 211, 208, 42, 93, 39, 187, 206, 138, 228, 164, 27, 18, 142, 63, 184, 136, 186, 131, 108, 216, + 102, 159, 27, 230, 88, 181, 53, 159, 187, 245, 150, 159, 27, 168, 199, 96, 50, 153, 217, 60, 92, 216, 102, 159, + 27, 222, 39, 216, 72, 134, 47, 108, 180, 159, 65, 103, 27, 5, 243, 152, 51, 58, 103, 152, 113, 67, 80, 178, 56, + 27, 119, 61, 134, 251, 113, 71, 190, 136, 255, 255, 159, 65, 246, 68, 128, 199, 95, 44, 27, 191, 254, 242, 184, + 45, 216, 87, 80, 75, 173, 158, 140, 244, 94, 62, 23, 214, 129, 91, 147, 68, 223, 97, 29, 26, 255, 67, 38, 3, 217, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 221, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4606663533900228194" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4d317dd29a98ef30" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a606" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0202d603" + } + ] + }, + "cborHex": "9f9f9f1b3fee2813b1de6662484d317dd29a98ef30ff42a606ff440202d603ff", + "cborBytes": [ + 159, 159, 159, 27, 63, 238, 40, 19, 177, 222, 102, 98, 72, 77, 49, 125, 210, 154, 152, 239, 48, 255, 66, 166, 6, + 255, 68, 2, 2, 214, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 222, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11913145057192604399" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ca7304a7beaf915f40eb71" + }, + { + "_tag": "ByteArray", + "bytearray": "1a" + } + ] + }, + "cborHex": "9f1ba553fe4f9baa72efa04bca7304a7beaf915f40eb71411aff", + "cborBytes": [ + 159, 27, 165, 83, 254, 79, 155, 170, 114, 239, 160, 75, 202, 115, 4, 167, 190, 175, 145, 95, 64, 235, 113, 65, 26, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 223, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8251007880324683638" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cbe732623fd8f618c2ad19" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18429056587605216544" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14568791157296561533" + } + }, + { + "_tag": "ByteArray", + "bytearray": "386bbffda40d97" + }, + { + "_tag": "ByteArray", + "bytearray": "7692" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d6344a7b79a7c77878725389" + } + ] + }, + "cborHex": "9f9fd8669f1b728177f391b397769f4bcbe732623fd8f618c2ad191bffc1295339c80d201bca2ebe5e69837d7d47386bbffda40d97427692ffffff4cd6344a7b79a7c77878725389ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 114, 129, 119, 243, 145, 179, 151, 118, 159, 75, 203, 231, 50, 98, 63, 216, 246, 24, + 194, 173, 25, 27, 255, 193, 41, 83, 57, 200, 13, 32, 27, 202, 46, 190, 94, 105, 131, 125, 125, 71, 56, 107, 191, + 253, 164, 13, 151, 66, 118, 146, 255, 255, 255, 76, 214, 52, 74, 123, 121, 167, 199, 120, 120, 114, 83, 137, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 224, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8342488115149813279" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9e49b2d9271401406da8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9380884382762123282" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b70c208f622f663d4818" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6569118808146031120" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2554301928604044489" + }, + "fields": [] + } + ] + }, + "cborHex": "9f9fd8669f1b73c678bd866c361f9f4a9e49b2d9271401406da81b822f98a4e18bc012ffffff4ab70c208f622f663d48189f1b5b2a32c056e1b210ffd8669f1b2372b4121f8a0cc980ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 115, 198, 120, 189, 134, 108, 54, 31, 159, 74, 158, 73, 178, 217, 39, 20, 1, 64, 109, + 168, 27, 130, 47, 152, 164, 225, 139, 192, 18, 255, 255, 255, 74, 183, 12, 32, 143, 98, 47, 102, 61, 72, 24, 159, + 27, 91, 42, 50, 192, 86, 225, 178, 16, 255, 216, 102, 159, 27, 35, 114, 180, 18, 31, 138, 12, 201, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 225, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0604760f73" + }, + { + "_tag": "ByteArray", + "bytearray": "1a" + }, + { + "_tag": "ByteArray", + "bytearray": "491cf01551" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15601216564836746339" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd87d9f9f450604760f73411a45491cf015511bd882a7ce9308c463ffffff", + "cborBytes": [ + 159, 216, 125, 159, 159, 69, 6, 4, 118, 15, 115, 65, 26, 69, 73, 28, 240, 21, 81, 27, 216, 130, 167, 206, 147, 8, + 196, 99, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 226, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4499703399844078528" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1894552803783402795" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7447761674384902159" + } + }, + { + "_tag": "ByteArray", + "bytearray": "53cc" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "524163435234152815" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "454d" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1405440179160827772" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14181988802267111857" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3585667232611767029" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15540092730135868630" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5901201967763664043" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bbb2b83037d6292cd97f8ace" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16203375797880377012" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13590674052208228167" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17305456157197819646" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99eb6c577f6dbecbb731c1cf" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3e722866d652e3c09f9f1b1a4acdbcbdbae52b1b675bc3c86d7b080f4253ccff1b074633de0161516fa09f42454dffffffbf1b1381206587f1477c1bc4d08bad1fb2e1b11b31c2d959b29512f51bd7a98000cc60f4d61b51e547ec7c63acab4cbbb2b83037d6292cd97f8ace1be0ddf47062d24eb41bbc9bc60b43fd77471bf02954afcddf5efe4c99eb6c577f6dbecbb731c1cfffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 62, 114, 40, 102, 214, 82, 227, 192, 159, 159, 27, 26, 74, 205, 188, 189, 186, 229, 43, + 27, 103, 91, 195, 200, 109, 123, 8, 15, 66, 83, 204, 255, 27, 7, 70, 51, 222, 1, 97, 81, 111, 160, 159, 66, 69, + 77, 255, 255, 255, 191, 27, 19, 129, 32, 101, 135, 241, 71, 124, 27, 196, 208, 139, 173, 31, 178, 225, 177, 27, + 49, 194, 217, 89, 178, 149, 18, 245, 27, 215, 169, 128, 0, 204, 96, 244, 214, 27, 81, 229, 71, 236, 124, 99, 172, + 171, 76, 187, 178, 184, 48, 55, 214, 41, 44, 217, 127, 138, 206, 27, 224, 221, 244, 112, 98, 210, 78, 180, 27, + 188, 155, 198, 11, 67, 253, 119, 71, 27, 240, 41, 84, 175, 205, 223, 94, 254, 76, 153, 235, 108, 87, 127, 109, + 190, 203, 183, 49, 193, 207, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 227, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17508424156166087048" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18035614646904930564" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d5a454c8c182e36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10076001775369801953" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7026be4f58" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7795829762972498066" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12560163687499306993" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6771b9ef5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9742669715028669895" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8f621fdb5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4772298049054513792" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e2de91cc6d3160e3" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14366218448921250284" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c4ba52718e2" + } + ] + }, + "cborHex": "9fd8669f1bf2fa6b01a525e1889f9f1bfa4b5ff6ee99c104482d5a454c8c182e361b8bd5263ad11f50e1457026be4f58ff80a0ffffd8669f1b6c3059dd8764b8929fbf1bae4eaa53c22817f141e545c6771b9ef51b8734ea7ca83d75c745e8f621fdb51b423a9bca782f1a80ff48e2de91cc6d3160e3ffff1bc75f0f90559d49ec465c4ba52718e2ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 242, 250, 107, 1, 165, 37, 225, 136, 159, 159, 27, 250, 75, 95, 246, 238, 153, 193, 4, 72, + 45, 90, 69, 76, 140, 24, 46, 54, 27, 139, 213, 38, 58, 209, 31, 80, 225, 69, 112, 38, 190, 79, 88, 255, 128, 160, + 255, 255, 216, 102, 159, 27, 108, 48, 89, 221, 135, 100, 184, 146, 159, 191, 27, 174, 78, 170, 83, 194, 40, 23, + 241, 65, 229, 69, 198, 119, 27, 158, 245, 27, 135, 52, 234, 124, 168, 61, 117, 199, 69, 232, 246, 33, 253, 181, + 27, 66, 58, 155, 202, 120, 47, 26, 128, 255, 72, 226, 222, 145, 204, 109, 49, 96, 227, 255, 255, 27, 199, 95, 15, + 144, 85, 157, 73, 236, 70, 92, 75, 165, 39, 24, 226, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 228, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7314642918331021138" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3236771256430001176" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2713396841833728661" + } + }, + { + "_tag": "ByteArray", + "bytearray": "88ed25a4865a02f77f" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9455601095016449524" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6ef80" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9922110215804104083" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7761e2b720" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13093357049205397319" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16374175067877881988" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f9f9f1b6582d4fac5f277521b2ceb524efeb47c181b25a7ec0d2c2a8a954988ed25a4865a02f77fffff9fbf1b83390b19164005f443c6ef801b89b26aabf3472d93457761e2b7201bb5b4f2dd5b3e97471be33cc1785aeb3884ffffa0ff", + "cborBytes": [ + 159, 159, 159, 27, 101, 130, 212, 250, 197, 242, 119, 82, 27, 44, 235, 82, 78, 254, 180, 124, 24, 27, 37, 167, + 236, 13, 44, 42, 138, 149, 73, 136, 237, 37, 164, 134, 90, 2, 247, 127, 255, 255, 159, 191, 27, 131, 57, 11, 25, + 22, 64, 5, 244, 67, 198, 239, 128, 27, 137, 178, 106, 171, 243, 71, 45, 147, 69, 119, 97, 226, 183, 32, 27, 181, + 180, 242, 221, 91, 62, 151, 71, 27, 227, 60, 193, 120, 90, 235, 56, 132, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 229, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7329353575910033613" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b65b7183ea55b48cd80ffff", + "cborBytes": [159, 216, 102, 159, 27, 101, 183, 24, 62, 165, 91, 72, 205, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 230, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b8c4a1ca1a4717a98cc5420" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bfffffffffffffff6d87e9f9f084c5b8c4a1ca1a4717a98cc5420ffffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 216, 126, 159, 159, 8, 76, 91, 140, 74, 28, 161, 164, 113, 122, + 152, 204, 84, 32, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 231, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + "cborHex": "9f0fff", + "cborBytes": [159, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 232, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17919681497935405692" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "67dadc10" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8666847959892161130" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9271510249846015530" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86ec502dff2d047a" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf8af7f613c94627c9f809f4467dadc101b7846d44cf3b0f26a1b80ab05731d77062affffffbf42f5e24886ec502dff2d047affff", + "cborBytes": [ + 159, 216, 102, 159, 27, 248, 175, 127, 97, 60, 148, 98, 124, 159, 128, 159, 68, 103, 218, 220, 16, 27, 120, 70, + 212, 76, 243, 176, 242, 106, 27, 128, 171, 5, 115, 29, 119, 6, 42, 255, 255, 255, 191, 66, 245, 226, 72, 134, 236, + 80, 45, 255, 45, 4, 122, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 233, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "87c7ba" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "40c657c923063af9f1857a30" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7977955807311495340" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1446517004409051684" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11929869474412145896" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11533010225489358904" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a0091d73687c2c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4764162196252885291" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72a443deb4" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8602763844944515182" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8690209555783088830" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8894595583262410278" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2612c59cff02b48957dcc0" + }, + { + "_tag": "ByteArray", + "bytearray": "1b7f3a3762268f5316c5ff" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f5cf2fef00177e03" + }, + { + "_tag": "ByteArray", + "bytearray": "dd03476d16ab8a034de6" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4039560687790255854" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5640597315757800728" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1578226421869400686" + } + } + } + ] + } + ] + }, + "cborHex": "9f4387c7babf4c40c657c923063af9f1857a301b6eb76489a89100acff9f1b14130f8d315d1a249f1ba58f69146f1cace81ba00d7bb2113db03847a0091d73687c2c1b421db4469fff812b4572a443deb4ffffd8669f1b77632823387dd06e9fd8669f1b7899d38c5c27fabe9f1b7b6ff38eb11d46264b2612c59cff02b48957dcc04b1b7f3a3762268f5316c5ffffff48f5cf2fef00177e034add03476d16ab8a034de6801b380f670b045eeeeeffffbf06021b4e476d5f9ec3fd181b15e6fc91a2a9526effff", + "cborBytes": [ + 159, 67, 135, 199, 186, 191, 76, 64, 198, 87, 201, 35, 6, 58, 249, 241, 133, 122, 48, 27, 110, 183, 100, 137, 168, + 145, 0, 172, 255, 159, 27, 20, 19, 15, 141, 49, 93, 26, 36, 159, 27, 165, 143, 105, 20, 111, 28, 172, 232, 27, + 160, 13, 123, 178, 17, 61, 176, 56, 71, 160, 9, 29, 115, 104, 124, 44, 27, 66, 29, 180, 70, 159, 255, 129, 43, 69, + 114, 164, 67, 222, 180, 255, 255, 216, 102, 159, 27, 119, 99, 40, 35, 56, 125, 208, 110, 159, 216, 102, 159, 27, + 120, 153, 211, 140, 92, 39, 250, 190, 159, 27, 123, 111, 243, 142, 177, 29, 70, 38, 75, 38, 18, 197, 156, 255, 2, + 180, 137, 87, 220, 192, 75, 27, 127, 58, 55, 98, 38, 143, 83, 22, 197, 255, 255, 255, 72, 245, 207, 47, 239, 0, + 23, 126, 3, 74, 221, 3, 71, 109, 22, 171, 138, 3, 77, 230, 128, 27, 56, 15, 103, 11, 4, 94, 238, 238, 255, 255, + 191, 6, 2, 27, 78, 71, 109, 95, 158, 195, 253, 24, 27, 21, 230, 252, 145, 162, 169, 82, 110, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 234, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cdd50d" + } + ] + }, + "cborHex": "9f43cdd50dff", + "cborBytes": [159, 67, 205, 213, 13, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 235, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10264618522331451061" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16133505696481850983" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "848947348543809740" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d0a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17880770900957593342" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72afa2787acd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd84477dee7987ac7657fe94" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12695994805677592992" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "42b4d540856f2bd27586" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15040837513291558445" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d6ea1d1c758" + } + ] + } + ] + }, + "cborHex": "9f1b8e7340296a760eb5d8669f1bdfe5b9f3b48ab6679f41f2bf1b0bc8111d96f6a8cc426d0a1bf8254265e5b7fefe4672afa2787acd4cbd84477dee7987ac7657fe941bb0313c026e9e11a0ff4a42b4d540856f2bd275861bd0bbca07501cee2d462d6ea1d1c758ffffff", + "cborBytes": [ + 159, 27, 142, 115, 64, 41, 106, 118, 14, 181, 216, 102, 159, 27, 223, 229, 185, 243, 180, 138, 182, 103, 159, 65, + 242, 191, 27, 11, 200, 17, 29, 150, 246, 168, 204, 66, 109, 10, 27, 248, 37, 66, 101, 229, 183, 254, 254, 70, 114, + 175, 162, 120, 122, 205, 76, 189, 132, 71, 125, 238, 121, 135, 172, 118, 87, 254, 148, 27, 176, 49, 60, 2, 110, + 158, 17, 160, 255, 74, 66, 180, 213, 64, 133, 111, 43, 210, 117, 134, 27, 208, 187, 202, 7, 80, 28, 238, 45, 70, + 45, 110, 161, 209, 199, 88, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 236, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a6aac9abefad96fa28e03f3c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f55c53d5c36023488f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8532768152817971832" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7660825177687033472" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7abee2738797" + }, + { + "_tag": "ByteArray", + "bytearray": "a1858a8bc26b6f4e3b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13454703771232091744" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e9187aae4b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4333168411237022984" + } + } + ] + } + ] + }, + "cborHex": "9f809f4ca6aac9abefad96fa28e03f3cff49f55c53d5c36023488fd8669f1b766a7b6d2b7b32789f1b6a50b7e90a6786809f467abee273879749a1858a8bc26b6f4e3b1bbab8b5cb3a65be6045e9187aae4bff1b3c2281b63fb9fd08ffffff", + "cborBytes": [ + 159, 128, 159, 76, 166, 170, 201, 171, 239, 173, 150, 250, 40, 224, 63, 60, 255, 73, 245, 92, 83, 213, 195, 96, + 35, 72, 143, 216, 102, 159, 27, 118, 106, 123, 109, 43, 123, 50, 120, 159, 27, 106, 80, 183, 233, 10, 103, 134, + 128, 159, 70, 122, 190, 226, 115, 135, 151, 73, 161, 133, 138, 139, 194, 107, 111, 78, 59, 27, 186, 184, 181, 203, + 58, 101, 190, 96, 69, 233, 24, 122, 174, 75, 255, 27, 60, 34, 129, 182, 63, 185, 253, 8, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 237, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16343085619002404813" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11942617808408512648" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d" + }, + { + "_tag": "ByteArray", + "bytearray": "8e" + }, + { + "_tag": "ByteArray", + "bytearray": "e0d32626d29dc3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1351918956548454239" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13352573125359793637" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3066842680493223024" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18313680082205567320" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3282945994038838437" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4378161142284980744" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cab486449ee748" + }, + { + "_tag": "ByteArray", + "bytearray": "26f8c7c344c61cc434c6bf8b" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6859313753216356269" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a306" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eafe62440ada03c3dd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5e16c9e449782edb04d59fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8597629185213706269" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11223296187004255750" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a450ef72e713" + }, + { + "_tag": "ByteArray", + "bytearray": "6d0b7fe43d4a14897a66" + } + ] + }, + "cborHex": "9f9f1be2ce4dc7f66eefcd9f1ba5bcb39f3e718888412d418e47e0d32626d29dc31b12c2fb20d22ff75fffd8669f1bb94dde83367f75e59f1b2a8f9d2b48ce2c70ffffd8669f1bfe274301360269589f1b2d8f5dfcdf7a04a51b3cc25a5cc750920847cab486449ee7484c26f8c7c344c61cc434c6bf8bffffffd8669f1b5f312d842f698fad9fbf42a30649eafe62440ada03c3dd4cd5e16c9e449782edb04d59fe1b7750ea311731b01dffffff1b9bc1286b23627e0646a450ef72e7134a6d0b7fe43d4a14897a66ff", + "cborBytes": [ + 159, 159, 27, 226, 206, 77, 199, 246, 110, 239, 205, 159, 27, 165, 188, 179, 159, 62, 113, 136, 136, 65, 45, 65, + 142, 71, 224, 211, 38, 38, 210, 157, 195, 27, 18, 194, 251, 32, 210, 47, 247, 95, 255, 216, 102, 159, 27, 185, 77, + 222, 131, 54, 127, 117, 229, 159, 27, 42, 143, 157, 43, 72, 206, 44, 112, 255, 255, 216, 102, 159, 27, 254, 39, + 67, 1, 54, 2, 105, 88, 159, 27, 45, 143, 93, 252, 223, 122, 4, 165, 27, 60, 194, 90, 92, 199, 80, 146, 8, 71, 202, + 180, 134, 68, 158, 231, 72, 76, 38, 248, 199, 195, 68, 198, 28, 196, 52, 198, 191, 139, 255, 255, 255, 216, 102, + 159, 27, 95, 49, 45, 132, 47, 105, 143, 173, 159, 191, 66, 163, 6, 73, 234, 254, 98, 68, 10, 218, 3, 195, 221, 76, + 213, 225, 108, 158, 68, 151, 130, 237, 176, 77, 89, 254, 27, 119, 80, 234, 49, 23, 49, 176, 29, 255, 255, 255, 27, + 155, 193, 40, 107, 35, 98, 126, 6, 70, 164, 80, 239, 114, 231, 19, 74, 109, 11, 127, 228, 61, 74, 20, 137, 122, + 102, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 238, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "06" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + }, + "cborHex": "9f41061bffffffffffffffefff", + "cborBytes": [159, 65, 6, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 239, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4432430751177482464" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a91d10fd63ef113cbbb7dc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4123415558803125494" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5aa0b66bf4d0bd44197cac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6791119682515712794" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f34f3d29e2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10641092458086625579" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "814846e95b84a40cde" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15953901391636082786" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6505136704628876796" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3d832848bf73a0e09f4ba91d10fd63ef113cbbb7dcbf1b3939509a9bc774f64b5aa0b66bf4d0bd44197cac1b5e3ee75ecf833b1a45f34f3d29e21b93acc1363257712b49814846e95b84a40cde1bdd67a4c9ce1430621b5a46e35dfec265fcffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 61, 131, 40, 72, 191, 115, 160, 224, 159, 75, 169, 29, 16, 253, 99, 239, 17, 60, 187, 183, + 220, 191, 27, 57, 57, 80, 154, 155, 199, 116, 246, 75, 90, 160, 182, 107, 244, 208, 189, 68, 25, 124, 172, 27, 94, + 62, 231, 94, 207, 131, 59, 26, 69, 243, 79, 61, 41, 226, 27, 147, 172, 193, 54, 50, 87, 113, 43, 73, 129, 72, 70, + 233, 91, 132, 164, 12, 222, 27, 221, 103, 164, 201, 206, 20, 48, 98, 27, 90, 70, 227, 93, 254, 194, 101, 252, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 240, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3653365453326557556" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6756399244423901806" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a92e5d547586743d459f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "445190353035482253" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2821701308167149008" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5593572377304035770" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35a25f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "729d895a0c5030355923fcb1" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10703511113640526659" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11271829354273506339" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15789674747506383471" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02574a0d1430" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a8f77b05b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "035c4a90940d5154" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12838342016342303407" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22cb5e12" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eac83d73b520ee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6048832675030143290" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "536681561964920684" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13458936821573027324" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11413206167629959968" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1463906305553775604" + } + }, + { + "_tag": "ByteArray", + "bytearray": "facdd6c2ed" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5322192982520311817" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8856854454237290057" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13245439088774783855" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4874702585967787382" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1b32b35c860036a1741b5dc38d50dc9ab26e4aa92e5d547586743d459f1b062da244721c548dbf1b2728b263c78ed5d01b4da05c70eea4f1ba4335a25f4c729d895a0c5030355923fcb1ffffbf1b948a82a5f1fd43431b9c6d9513b64b0423ffd8669f1bdb2031868c12da6f9f80bf4602574a0d1430454a8f77b05b48035c4a90940d51541bb22af40b1d0e22af4422cb5e1247eac83d73b520ee41541b53f1c54514f2913a41821b0772ad09826bbf6c42a6c61bbac7bfbb104905fcffd8669f1b9e63da8a29e193209f1b1450d7075efcbbf445facdd6c2edffffffffd8669f1b49dc3a51c53330099fa09f1b7ae9de3354265e491bb7d140ac847ea36fffa09f1b43a66c2cb649bd76ffffffff", + "cborBytes": [ + 159, 159, 27, 50, 179, 92, 134, 0, 54, 161, 116, 27, 93, 195, 141, 80, 220, 154, 178, 110, 74, 169, 46, 93, 84, + 117, 134, 116, 61, 69, 159, 27, 6, 45, 162, 68, 114, 28, 84, 141, 191, 27, 39, 40, 178, 99, 199, 142, 213, 208, + 27, 77, 160, 92, 112, 238, 164, 241, 186, 67, 53, 162, 95, 76, 114, 157, 137, 90, 12, 80, 48, 53, 89, 35, 252, + 177, 255, 255, 191, 27, 148, 138, 130, 165, 241, 253, 67, 67, 27, 156, 109, 149, 19, 182, 75, 4, 35, 255, 216, + 102, 159, 27, 219, 32, 49, 134, 140, 18, 218, 111, 159, 128, 191, 70, 2, 87, 74, 13, 20, 48, 69, 74, 143, 119, + 176, 91, 72, 3, 92, 74, 144, 148, 13, 81, 84, 27, 178, 42, 244, 11, 29, 14, 34, 175, 68, 34, 203, 94, 18, 71, 234, + 200, 61, 115, 181, 32, 238, 65, 84, 27, 83, 241, 197, 69, 20, 242, 145, 58, 65, 130, 27, 7, 114, 173, 9, 130, 107, + 191, 108, 66, 166, 198, 27, 186, 199, 191, 187, 16, 73, 5, 252, 255, 216, 102, 159, 27, 158, 99, 218, 138, 41, + 225, 147, 32, 159, 27, 20, 80, 215, 7, 94, 252, 187, 244, 69, 250, 205, 214, 194, 237, 255, 255, 255, 255, 216, + 102, 159, 27, 73, 220, 58, 81, 197, 51, 48, 9, 159, 160, 159, 27, 122, 233, 222, 51, 84, 38, 94, 73, 27, 183, 209, + 64, 172, 132, 126, 163, 111, 255, 160, 159, 27, 67, 166, 108, 44, 182, 73, 189, 118, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 241, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3ece" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16176586082718344276" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7e7030522287a22b04a3b71d" + }, + { + "_tag": "ByteArray", + "bytearray": "fac447f249d13e74" + }, + { + "_tag": "ByteArray", + "bytearray": "e78a0ab374be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5126542534086199907" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4551046625837749479" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb52b2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9188426016211947674" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e759affa2a429307dce9ae4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15776920420530989046" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17776304669660166783" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f423eced8669f1be07ec755c2f464549f4c7e7030522287a22b04a3b71d48fac447f249d13e7446e78a0ab374be1b47252345ee238a63ffffd8669f1b3f2890cb314c94e79f43fb52b21b7f83d8c78545509a4c8e759affa2a429307dce9ae41bdaf2e188635b27f61bf6b21eea06363a7fffffffff", + "cborBytes": [ + 159, 159, 66, 62, 206, 216, 102, 159, 27, 224, 126, 199, 85, 194, 244, 100, 84, 159, 76, 126, 112, 48, 82, 34, + 135, 162, 43, 4, 163, 183, 29, 72, 250, 196, 71, 242, 73, 209, 62, 116, 70, 231, 138, 10, 179, 116, 190, 27, 71, + 37, 35, 69, 238, 35, 138, 99, 255, 255, 216, 102, 159, 27, 63, 40, 144, 203, 49, 76, 148, 231, 159, 67, 251, 82, + 178, 27, 127, 131, 216, 199, 133, 69, 80, 154, 76, 142, 117, 154, 255, 162, 164, 41, 48, 125, 206, 154, 228, 27, + 218, 242, 225, 136, 99, 91, 39, 246, 27, 246, 178, 30, 234, 6, 54, 58, 127, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 242, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c416f801" + } + ] + }, + "cborHex": "9f0944c416f801ff", + "cborBytes": [159, 9, 68, 196, 22, 248, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 243, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8583507470586151477" + } + }, + { + "_tag": "ByteArray", + "bytearray": "36c52267" + }, + { + "_tag": "ByteArray", + "bytearray": "5c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5333180162925909126" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8077450891140199957" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16906077579827147059" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8755539345644292089" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14500140765643374734" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "207756711661057483" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13408515109390664682" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16888674762639370044" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6ce4" + } + ] + } + ] + }, + "cborHex": "9f9f9f1b771ebe912f3302354436c52267415c1b4a03431a0e5bd4861b7018deca1112f615ff1bea9e73fc92caf133d8669f1b7981eca5621587f99f1bc93ad9338955808e1b02e219a0e642b5cb1bba149d735cb043ea1bea60a0377239673cffff426ce4ffff", + "cborBytes": [ + 159, 159, 159, 27, 119, 30, 190, 145, 47, 51, 2, 53, 68, 54, 197, 34, 103, 65, 92, 27, 74, 3, 67, 26, 14, 91, 212, + 134, 27, 112, 24, 222, 202, 17, 18, 246, 21, 255, 27, 234, 158, 115, 252, 146, 202, 241, 51, 216, 102, 159, 27, + 121, 129, 236, 165, 98, 21, 135, 249, 159, 27, 201, 58, 217, 51, 137, 85, 128, 142, 27, 2, 226, 25, 160, 230, 66, + 181, 203, 27, 186, 20, 157, 115, 92, 176, 67, 234, 27, 234, 96, 160, 55, 114, 57, 103, 60, 255, 255, 66, 108, 228, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 244, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6710343970611272232" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1b" + }, + { + "_tag": "ByteArray", + "bytearray": "488c636e74735b8c22" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17878943648844541708" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ebf03ca38967b45310c8fac9" + }, + { + "_tag": "ByteArray", + "bytearray": "e46a456447b5" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9f0605ff" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13342935090238042211" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4095934270896564931" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98c23579978d63ae6c8343fb" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17646623980522160104" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10587833086147939887" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2962b29bcc0c5a20" + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b5d1fee49d0f81a289f411b49488c636e74735b8c221bf81ec4859c9aef0c4cebf03ca38967b45310c8fac946e46a456447b5ffff449f0605ffffd87e9fbf1bb92ba0c54abbb0631b38d7ae84a8236ac341704c98c23579978d63ae6c8343fbffd8669f1bf4e56703b3e9bfe89f1b92ef8a1858f9ce2fffff482962b29bcc0c5a20ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 93, 31, 238, 73, 208, 248, 26, 40, 159, 65, 27, 73, 72, 140, 99, 110, 116, 115, 91, + 140, 34, 27, 248, 30, 196, 133, 156, 154, 239, 12, 76, 235, 240, 60, 163, 137, 103, 180, 83, 16, 200, 250, 201, + 70, 228, 106, 69, 100, 71, 181, 255, 255, 68, 159, 6, 5, 255, 255, 216, 126, 159, 191, 27, 185, 43, 160, 197, 74, + 187, 176, 99, 27, 56, 215, 174, 132, 168, 35, 106, 195, 65, 112, 76, 152, 194, 53, 121, 151, 141, 99, 174, 108, + 131, 67, 251, 255, 216, 102, 159, 27, 244, 229, 103, 3, 179, 233, 191, 232, 159, 27, 146, 239, 138, 24, 88, 249, + 206, 47, 255, 255, 72, 41, 98, 178, 155, 204, 12, 90, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 245, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5860362cf271adf7f4215b" + } + ] + }, + "cborHex": "9f4b5860362cf271adf7f4215bff", + "cborBytes": [159, 75, 88, 96, 54, 44, 242, 113, 173, 247, 244, 33, 91, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 246, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "002734" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f159383d2193f1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1178630848087823514" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5ab7a2946" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58f54e8c9b0ea84081b1a69f" + } + } + ] + } + ] + }, + "cborHex": "9f43002734bf481f159383d2193f1e1b105b5682fd97949a45b5ab7a29464c58f54e8c9b0ea84081b1a69fffff", + "cborBytes": [ + 159, 67, 0, 39, 52, 191, 72, 31, 21, 147, 131, 210, 25, 63, 30, 27, 16, 91, 86, 130, 253, 151, 148, 154, 69, 181, + 171, 122, 41, 70, 76, 88, 245, 78, 140, 155, 14, 168, 64, 129, 177, 166, 159, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 247, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "410691332152670495" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13842353703764125743" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5677897398716728249" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21930e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9497614522680085274" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "780b54998380" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9639968778773276027" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13221491262445964682" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9858669623933953116" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4414534142756150915" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2114727766291526133" + } + } + ] + }, + "cborHex": "9f414abf1b05b31197354ab91f1bc019eb5a882c682f1b4ecbf199f1a003b94321930e1b83ce4e167df00b1a46780b549983801b85c80c8790a3257b1bb77c2c40b305cd8a1b88d107ca1c84645c1b3d439369e3d05e83ff1b1d5905b2fa7631f5ff", + "cborBytes": [ + 159, 65, 74, 191, 27, 5, 179, 17, 151, 53, 74, 185, 31, 27, 192, 25, 235, 90, 136, 44, 104, 47, 27, 78, 203, 241, + 153, 241, 160, 3, 185, 67, 33, 147, 14, 27, 131, 206, 78, 22, 125, 240, 11, 26, 70, 120, 11, 84, 153, 131, 128, + 27, 133, 200, 12, 135, 144, 163, 37, 123, 27, 183, 124, 44, 64, 179, 5, 205, 138, 27, 136, 209, 7, 202, 28, 132, + 100, 92, 27, 61, 67, 147, 105, 227, 208, 94, 131, 255, 27, 29, 89, 5, 178, 250, 118, 49, 245, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 248, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5913db9768" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ea" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5001204689262854339" + } + } + ] + }, + "cborHex": "9f455913db97689f41eaff1b4567d92ad887c0c3ff", + "cborBytes": [159, 69, 89, 19, 219, 151, 104, 159, 65, 234, 255, 27, 69, 103, 217, 42, 216, 135, 192, 195, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 249, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cf19df89" + }, + { + "_tag": "ByteArray", + "bytearray": "1f347822f552737e3a72" + }, + { + "_tag": "ByteArray", + "bytearray": "9d04b518b9f9eceb" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f219ab45" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf968d681add1f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6641572859309773709" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f44cf19df894a1f347822f552737e3a72489d04b518b9f9ecebff44f219ab45bf47bf968d681add1f1b5c2b9b53b508d38dffff", + "cborBytes": [ + 159, 159, 68, 207, 25, 223, 137, 74, 31, 52, 120, 34, 245, 82, 115, 126, 58, 114, 72, 157, 4, 181, 24, 185, 249, + 236, 235, 255, 68, 242, 25, 171, 69, 191, 71, 191, 150, 141, 104, 26, 221, 31, 27, 92, 43, 155, 83, 181, 8, 211, + 141, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 250, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14601218592530438508" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "122d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53819eb84174ae987856dc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "300623078750325996" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "464c8c39ee5cb1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6174386306980100871" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "656315c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7909" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b47eb7047" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db2735b93eeeae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3e2ece96d0bff0e15b0d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d78d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "071e3eb028b17f39de2bfe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1bdd1e5b87662be8de03b0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59f5a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1504292414191445510" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93980b34c722" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7817139763047236577" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "647365368928674167" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1457948255002614413" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9626139017875694867" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16149633029120123802" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6793244729719670107" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "431562233622850124" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7363320213981258669" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7900174116842773035" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "125f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6511908002037886687" + } + }, + { + "_tag": "ByteArray", + "bytearray": "34c63430dfe9554db0d3" + }, + { + "_tag": "ByteArray", + "bytearray": "1639903ac4f8335fd0" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fe98367a759c55b30fe1e8" + }, + { + "_tag": "ByteArray", + "bytearray": "bd2db6" + } + ] + } + ] + }, + "cborHex": "9f9f1bcaa1f2f3079b196cffbf42122d4b53819eb84174ae987856dc411d1b042c0718ec328cec47464c8c39ee5cb11b55afd3a20595bb0744656315c4427909458b47eb704747db2735b93eeeae4bd3e2ece96d0bff0e15b0d042d78dffbf4b071e3eb028b17f39de2bfe4b1bdd1e5b87662be8de03b04359f5a01b14e051fb0a3226064693980b34c7221b6c7c0f32900303e141b01b08fbe75f86e22177ffd8669f1b143bac36a054da8d9f9f1b8596ea6f6f0225131be01f05acf19ee39a1b5e467416eb3c455b1b05fd3790a1906a4c1b662fc4b8d9ce63adffd8669f1b6da30e809a261a2b9f42125f1b5a5ef1d3877deedf4a34c63430dfe9554db0d3491639903ac4f8335fd0ffff4bfe98367a759c55b30fe1e843bd2db6ffffff", + "cborBytes": [ + 159, 159, 27, 202, 161, 242, 243, 7, 155, 25, 108, 255, 191, 66, 18, 45, 75, 83, 129, 158, 184, 65, 116, 174, 152, + 120, 86, 220, 65, 29, 27, 4, 44, 7, 24, 236, 50, 140, 236, 71, 70, 76, 140, 57, 238, 92, 177, 27, 85, 175, 211, + 162, 5, 149, 187, 7, 68, 101, 99, 21, 196, 66, 121, 9, 69, 139, 71, 235, 112, 71, 71, 219, 39, 53, 185, 62, 238, + 174, 75, 211, 226, 236, 233, 109, 11, 255, 14, 21, 176, 208, 66, 215, 141, 255, 191, 75, 7, 30, 62, 176, 40, 177, + 127, 57, 222, 43, 254, 75, 27, 221, 30, 91, 135, 102, 43, 232, 222, 3, 176, 67, 89, 245, 160, 27, 20, 224, 81, + 251, 10, 50, 38, 6, 70, 147, 152, 11, 52, 199, 34, 27, 108, 124, 15, 50, 144, 3, 3, 225, 65, 176, 27, 8, 251, 231, + 95, 134, 226, 33, 119, 255, 216, 102, 159, 27, 20, 59, 172, 54, 160, 84, 218, 141, 159, 159, 27, 133, 150, 234, + 111, 111, 2, 37, 19, 27, 224, 31, 5, 172, 241, 158, 227, 154, 27, 94, 70, 116, 22, 235, 60, 69, 91, 27, 5, 253, + 55, 144, 161, 144, 106, 76, 27, 102, 47, 196, 184, 217, 206, 99, 173, 255, 216, 102, 159, 27, 109, 163, 14, 128, + 154, 38, 26, 43, 159, 66, 18, 95, 27, 90, 94, 241, 211, 135, 125, 238, 223, 74, 52, 198, 52, 48, 223, 233, 85, 77, + 176, 211, 73, 22, 57, 144, 58, 196, 248, 51, 95, 208, 255, 255, 75, 254, 152, 54, 122, 117, 156, 85, 179, 15, 225, + 232, 67, 189, 45, 182, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 251, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9647836627288350043" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9046003044085651509" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f06ac6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12815136215122815760" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6717193673771031870" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8827376707747975510" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17192401462561227106" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18fa813072c54dfbb1ef7257" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17266057163779235709" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7553454111011330933" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4842520481106648155" + } + } + ] + }, + "cborHex": "9f9fbf071b85e4004bcc865d5b1b7d89dbd73fd3d8351bfffffffffffffff11bfffffffffffffff643f06ac641041bb1d8827d7aa3ab10ff1bffffffffffffffedff9fbf1b5d38440e9c9f9d3e1b7a812458a3e011561bee97ae0a7bde41624c18fa813072c54dfbb1ef72571bef9d5b82cea65f7d1b68d3427e7a0b5b75ffff1b433416b885ea5c5bff", + "cborBytes": [ + 159, 159, 191, 7, 27, 133, 228, 0, 75, 204, 134, 93, 91, 27, 125, 137, 219, 215, 63, 211, 216, 53, 27, 255, 255, + 255, 255, 255, 255, 255, 241, 27, 255, 255, 255, 255, 255, 255, 255, 246, 67, 240, 106, 198, 65, 4, 27, 177, 216, + 130, 125, 122, 163, 171, 16, 255, 27, 255, 255, 255, 255, 255, 255, 255, 237, 255, 159, 191, 27, 93, 56, 68, 14, + 156, 159, 157, 62, 27, 122, 129, 36, 88, 163, 224, 17, 86, 27, 238, 151, 174, 10, 123, 222, 65, 98, 76, 24, 250, + 129, 48, 114, 197, 77, 251, 177, 239, 114, 87, 27, 239, 157, 91, 130, 206, 166, 95, 125, 27, 104, 211, 66, 126, + 122, 11, 91, 117, 255, 255, 27, 67, 52, 22, 184, 133, 234, 92, 91, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 252, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5b8e004e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3446657168996981093" + } + }, + { + "_tag": "ByteArray", + "bytearray": "025cf9307252fe45" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14941801686264857550" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11755379570801797288" + } + }, + { + "_tag": "ByteArray", + "bytearray": "26f7" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7115" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7918688415649205735" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f445b8e004e1b2fd4fc6f1c9e596548025cf9307252fe45d8669f1bcf5bf177f62643ce9f1ba3237f6fdd8668a84226f7a09f4271151b6de4d528b5c58de7ffffffff", + "cborBytes": [ + 159, 68, 91, 142, 0, 78, 27, 47, 212, 252, 111, 28, 158, 89, 101, 72, 2, 92, 249, 48, 114, 82, 254, 69, 216, 102, + 159, 27, 207, 91, 241, 119, 246, 38, 67, 206, 159, 27, 163, 35, 127, 111, 221, 134, 104, 168, 66, 38, 247, 160, + 159, 66, 113, 21, 27, 109, 228, 213, 40, 181, 197, 141, 231, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 253, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5de32c9044" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15467904175163916350" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30b94aac5173fe" + } + } + ] + } + ] + }, + "cborHex": "9f455de32c9044bf1bd6a908e5146d403e4730b94aac5173feffff", + "cborBytes": [ + 159, 69, 93, 227, 44, 144, 68, 191, 27, 214, 169, 8, 229, 20, 109, 64, 62, 71, 48, 185, 74, 172, 81, 115, 254, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 254, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12383539081531059416" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14029150943819365335" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15251084926458088454" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9751821379796424509" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d8bc6ffc9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "09" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6542fce339b3d7479" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f3203ffb0343b4f7a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "303dbd59514852a030de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1410739214759268868" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87e04f4af6d61cb3c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2f0d6b26aabaf" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3993384918009361246" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5863841043698630531" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1999210119725640956" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11508226008891600253" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3143379380816078353" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1babdb2b2f10d36cd89f1bc2b18e742ab07bd71bd3a6bcefd8d94c06ffffbf1b87556de0a7d3573d450d8bc6ffc9410949c6542fce339b3d7479ffbf491f3203ffb0343b4f7a4a303dbd59514852a030de41871b1393f3d7667092044987e04f4af6d61cb3c647b2f0d6b26aabafffffa01b376b5a6cd159b35ed8669f1b51608c5c7d033f839f9f1b1bbe9f02f99cecfc1b9fb56e94f6e52d7d1b2b9f86e47bd46611ffffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 171, 219, 43, 47, 16, 211, 108, 216, 159, 27, 194, 177, 142, 116, 42, 176, 123, 215, + 27, 211, 166, 188, 239, 216, 217, 76, 6, 255, 255, 191, 27, 135, 85, 109, 224, 167, 211, 87, 61, 69, 13, 139, 198, + 255, 201, 65, 9, 73, 198, 84, 47, 206, 51, 155, 61, 116, 121, 255, 191, 73, 31, 50, 3, 255, 176, 52, 59, 79, 122, + 74, 48, 61, 189, 89, 81, 72, 82, 160, 48, 222, 65, 135, 27, 19, 147, 243, 215, 102, 112, 146, 4, 73, 135, 224, 79, + 74, 246, 214, 28, 179, 198, 71, 178, 240, 214, 178, 106, 171, 175, 255, 255, 160, 27, 55, 107, 90, 108, 209, 89, + 179, 94, 216, 102, 159, 27, 81, 96, 140, 92, 125, 3, 63, 131, 159, 159, 27, 27, 190, 159, 2, 249, 156, 236, 252, + 27, 159, 181, 110, 148, 246, 229, 45, 125, 27, 43, 159, 134, 228, 123, 212, 102, 17, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 255, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "18d0fe00f9e5" + } + ] + }, + "cborHex": "9f4618d0fe00f9e5ff", + "cborBytes": [159, 70, 24, 208, 254, 0, 249, 229, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 256, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04e0" + } + ] + }, + "cborHex": "9f4204e0ff", + "cborBytes": [159, 66, 4, 224, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 257, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2dac52093d8b37" + }, + { + "_tag": "ByteArray", + "bytearray": "f1f902" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2114755343799009477" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7584603247245787483" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7916317727017373611" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "178185237973959469" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "24e71ed4dfbf944e51487d0e" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f472dac52093d8b3743f1f9021b1d591ec7ddffc0c51b6941ec77ea5c015b1bfffffffffffffff3ff1b6ddc6907bfff8fab9f1b02790a87a5a8032d13ffd87a9f4c24e71ed4dfbf944e51487d0effffff", + "cborBytes": [ + 159, 159, 159, 71, 45, 172, 82, 9, 61, 139, 55, 67, 241, 249, 2, 27, 29, 89, 30, 199, 221, 255, 192, 197, 27, 105, + 65, 236, 119, 234, 92, 1, 91, 27, 255, 255, 255, 255, 255, 255, 255, 243, 255, 27, 109, 220, 105, 7, 191, 255, + 143, 171, 159, 27, 2, 121, 10, 135, 165, 168, 3, 45, 19, 255, 216, 122, 159, 76, 36, 231, 30, 212, 223, 191, 148, + 78, 81, 72, 125, 14, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 258, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "ByteArray", + "bytearray": "27204047667f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9485802367650516334" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17733113842692035714" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2741723325817166778" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f0ba732f9a36415" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2991014103850514604" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12532795452787991554" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6228892331186043203" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14066634091780475475" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9144183914171265945" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44a466f13e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12753556335831254437" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5d2a125de8d903afa0fd822" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5169908915648773652" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2100854065428995840" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9666119851937589050" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7550bbafb9eb0585dd9e81" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9557" + } + } + ] + } + ] + }, + "cborHex": "9f1bfffffffffffffff3d87e9f9f0f0e4627204047667f04ff02ff9f1b83a456fed55e4d6ed8669f1bf618ad15fb3894829f1b260c8ed6abbc1bba487f0ba732f9a36415ffff1b2982377afa3178acffbf1baded6f100e0f24021b56717892b87fb9431bc336b92da1f98a531b7ee6aad26d04f3994544a466f13e1bb0fdbbea8c2785a54cd5d2a125de8d903afa0fd8221b47bf34c4765ebe14ffbf1b1d27bba446d49f001b8624f4cac317673a4b7550bbafb9eb0585dd9e81429557ffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 216, 126, 159, 159, 15, 14, 70, 39, 32, 64, 71, 102, 127, 4, 255, + 2, 255, 159, 27, 131, 164, 86, 254, 213, 94, 77, 110, 216, 102, 159, 27, 246, 24, 173, 21, 251, 56, 148, 130, 159, + 27, 38, 12, 142, 214, 171, 188, 27, 186, 72, 127, 11, 167, 50, 249, 163, 100, 21, 255, 255, 27, 41, 130, 55, 122, + 250, 49, 120, 172, 255, 191, 27, 173, 237, 111, 16, 14, 15, 36, 2, 27, 86, 113, 120, 146, 184, 127, 185, 67, 27, + 195, 54, 185, 45, 161, 249, 138, 83, 27, 126, 230, 170, 210, 109, 4, 243, 153, 69, 68, 164, 102, 241, 62, 27, 176, + 253, 187, 234, 140, 39, 133, 165, 76, 213, 210, 161, 37, 222, 141, 144, 58, 250, 15, 216, 34, 27, 71, 191, 52, + 196, 118, 94, 190, 20, 255, 191, 27, 29, 39, 187, 164, 70, 212, 159, 0, 27, 134, 36, 244, 202, 195, 23, 103, 58, + 75, 117, 80, 187, 175, 185, 235, 5, 133, 221, 158, 129, 66, 149, 87, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 259, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2779462616570307993" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16320737530334347571" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4028079672568071358" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d696f4851f3b3ce5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "213457083501746695" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8114705507846310223" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14899797475336365169" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17421330757315967737" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff3bfcabac40ea6b" + }, + { + "_tag": "ByteArray", + "bytearray": "9b5e33b21494a09f48" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2138849491250436236" + } + }, + { + "_tag": "ByteArray", + "bytearray": "94a2c50e8e7579923d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4168820988814464611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5717129012167827831" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11816886985297499506" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1b2692a2860726a5999fd8669f1be27ee85017f7013380ff1b37e69d1eda6444be80ff48d696f4851f3b3ce5d8669f1b02f65a1624e99a079f9f1b709d39aa7415c94f1bcec6b6dc7eafa471ffd8669f1bf1c500058867baf99f48ff3bfcabac40ea6b499b5e33b21494a09f481b1daeb847ba01d88c4994a2c50e8e7579923dffffd8669f1b39daa09a1a7a96639f1b4f57528bc157e177ffffffffd8669f1ba3fe041ac598157280ffff", + "cborBytes": [ + 159, 27, 38, 146, 162, 134, 7, 38, 165, 153, 159, 216, 102, 159, 27, 226, 126, 232, 80, 23, 247, 1, 51, 128, 255, + 27, 55, 230, 157, 30, 218, 100, 68, 190, 128, 255, 72, 214, 150, 244, 133, 31, 59, 60, 229, 216, 102, 159, 27, 2, + 246, 90, 22, 36, 233, 154, 7, 159, 159, 27, 112, 157, 57, 170, 116, 21, 201, 79, 27, 206, 198, 182, 220, 126, 175, + 164, 113, 255, 216, 102, 159, 27, 241, 197, 0, 5, 136, 103, 186, 249, 159, 72, 255, 59, 252, 171, 172, 64, 234, + 107, 73, 155, 94, 51, 178, 20, 148, 160, 159, 72, 27, 29, 174, 184, 71, 186, 1, 216, 140, 73, 148, 162, 197, 14, + 142, 117, 121, 146, 61, 255, 255, 216, 102, 159, 27, 57, 218, 160, 154, 26, 122, 150, 99, 159, 27, 79, 87, 82, + 139, 193, 87, 225, 119, 255, 255, 255, 255, 216, 102, 159, 27, 163, 254, 4, 26, 197, 152, 21, 114, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 260, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ee9d8930cdb23d07a0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9520407756832020355" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "db06" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2963718802516284808" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4317450779603100528" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6006849804545343959" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13183629423564002544" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13516176173380695628" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a2c6c9231ea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17206991654545113128" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1800676633448501193" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3740167" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7497547251672818615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12377915922584790826" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9552286485717207668" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6993351762848021469" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a87a71eaa30bc8621023ce" + }, + { + "_tag": "ByteArray", + "bytearray": "6fe3636785" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9000ac0205f9e2248a01fa02" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10575587749050078317" + } + } + ] + }, + "cborHex": "9fbf4a2ee9d8930cdb23d07a0f41bfffd8669f1b841f4869ded897839f42db06ffff9fa0bf1b29213e8c662115881b3beaaa9bf579e3701b535c9e12530cc1d71bb6f5a91c61eb94f01bbb931a9e2ff4764c465a2c6c9231ea1beecb83be4645c0281b18fd49db940b4fc9ffbf0544b3740167ffd8669f1b680ca3806eaa23b79f1babc730f35951672a1b849089f2d5f04a741b610d60603de87bdd4ba87a71eaa30bc8621023ce456fe3636785ffff4c9000ac0205f9e2248a01fa02ff1b92c40906a11a546dff", + "cborBytes": [ + 159, 191, 74, 46, 233, 216, 147, 12, 219, 35, 208, 122, 15, 65, 191, 255, 216, 102, 159, 27, 132, 31, 72, 105, + 222, 216, 151, 131, 159, 66, 219, 6, 255, 255, 159, 160, 191, 27, 41, 33, 62, 140, 102, 33, 21, 136, 27, 59, 234, + 170, 155, 245, 121, 227, 112, 27, 83, 92, 158, 18, 83, 12, 193, 215, 27, 182, 245, 169, 28, 97, 235, 148, 240, 27, + 187, 147, 26, 158, 47, 244, 118, 76, 70, 90, 44, 108, 146, 49, 234, 27, 238, 203, 131, 190, 70, 69, 192, 40, 27, + 24, 253, 73, 219, 148, 11, 79, 201, 255, 191, 5, 68, 179, 116, 1, 103, 255, 216, 102, 159, 27, 104, 12, 163, 128, + 110, 170, 35, 183, 159, 27, 171, 199, 48, 243, 89, 81, 103, 42, 27, 132, 144, 137, 242, 213, 240, 74, 116, 27, 97, + 13, 96, 96, 61, 232, 123, 221, 75, 168, 122, 113, 234, 163, 11, 200, 98, 16, 35, 206, 69, 111, 227, 99, 103, 133, + 255, 255, 76, 144, 0, 172, 2, 5, 249, 226, 36, 138, 1, 250, 2, 255, 27, 146, 196, 9, 6, 161, 26, 84, 109, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 261, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1f63e8ff5e9ce8eba26862e1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12892589740097604315" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "768e7c3f120ee505" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15876677854940872444" + } + }, + { + "_tag": "ByteArray", + "bytearray": "99b602ce" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6eefc81ad8" + }, + { + "_tag": "ByteArray", + "bytearray": "1fe8ee4415ed6580c0ea50" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6d900b2e78c4742f7454" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12450918569501364564" + } + }, + { + "_tag": "ByteArray", + "bytearray": "193e17af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13425814094989005961" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8683928219903162000" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17590405475401702100" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17838802795505162906" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16428035574575830888" + } + } + ] + }, + "cborHex": "9f4c1f63e8ff5e9ce8eba26862e1d8669f1bb2ebae0f8d5d0adb80ff9f9f48768e7c3f120ee5051bdc554a640d0fbefc4499b602ceff9f456eefc81ad84b1fe8ee4415ed6580c0ea50ff4a6d900b2e78c4742f74549f1bacca8c789e71915444193e17af1bba5212c9504094891b788382b4e25176901bf41dac94f8679ad4ff1bf79028a0e4549a9aff1be3fc1b50cc129768ff", + "cborBytes": [ + 159, 76, 31, 99, 232, 255, 94, 156, 232, 235, 162, 104, 98, 225, 216, 102, 159, 27, 178, 235, 174, 15, 141, 93, + 10, 219, 128, 255, 159, 159, 72, 118, 142, 124, 63, 18, 14, 229, 5, 27, 220, 85, 74, 100, 13, 15, 190, 252, 68, + 153, 182, 2, 206, 255, 159, 69, 110, 239, 200, 26, 216, 75, 31, 232, 238, 68, 21, 237, 101, 128, 192, 234, 80, + 255, 74, 109, 144, 11, 46, 120, 196, 116, 47, 116, 84, 159, 27, 172, 202, 140, 120, 158, 113, 145, 84, 68, 25, 62, + 23, 175, 27, 186, 82, 18, 201, 80, 64, 148, 137, 27, 120, 131, 130, 180, 226, 81, 118, 144, 27, 244, 29, 172, 148, + 248, 103, 154, 212, 255, 27, 247, 144, 40, 160, 228, 84, 154, 154, 255, 27, 227, 252, 27, 80, 204, 18, 151, 104, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 262, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d5795cd9c7ac1d74e1f3b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00e04444" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4575de2d05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12500486903047038213" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f4ebce5f3dfe9756786e7c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b56274de9161ae332c474" + } + } + ] + } + ] + }, + "cborHex": "9fbf4b3d5795cd9c7ac1d74e1f3b4400e04444454575de2d051bad7aa69b9f8aa5054c4f4ebce5f3dfe9756786e7c84b6b56274de9161ae332c474ffff", + "cborBytes": [ + 159, 191, 75, 61, 87, 149, 205, 156, 122, 193, 215, 78, 31, 59, 68, 0, 224, 68, 68, 69, 69, 117, 222, 45, 5, 27, + 173, 122, 166, 155, 159, 138, 165, 5, 76, 79, 78, 188, 229, 243, 223, 233, 117, 103, 134, 231, 200, 75, 107, 86, + 39, 77, 233, 22, 26, 227, 50, 196, 116, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 263, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13130474478422600828" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "455322040689283248" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3700c580b150c6d78dd740" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1569469277502595629" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3895261853539352303" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5427985537565165429" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b182c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9503658780918587755" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7100445727071017321" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17784681342256386712" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a870c0164a" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1785983068779556921" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78d22df141ef1aba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cedfc34f4fafa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe382b8dceed012039acc78b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1672c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff41" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2315273794600186953" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6686" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b657e9f9b0731e261aed688" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8eb251b77026393e74328398" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f14db55ae7280e3c24" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2f67b21b986f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14960431415545020606" + } + } + ] + }, + "cborHex": "9f1bb638d0f84ab62c7c9fbf1b0651a0fbcdb0d0b04b3700c580b150c6d78dd7401b15c7dffe136e622d1b360ec0048f57beef1b4b5414167487877543b182c11b83e3c74f072ca16b1b6289d9c4dd0219691bf6cfe17418b5929845a870c0164aff1b18c916237577b039bf412d4878d22df141ef1aba473cedfc34f4fafa4cfe382b8dceed012039acc78b415b431672c1417542ff41ffbf413c1b2021813fd4ea34494266864c5b657e9f9b0731e261aed6884c8eb251b77026393e7432839849f14db55ae7280e3c24ffff462f67b21b986f1bcf9e211bd227c0beff", + "cborBytes": [ + 159, 27, 182, 56, 208, 248, 74, 182, 44, 124, 159, 191, 27, 6, 81, 160, 251, 205, 176, 208, 176, 75, 55, 0, 197, + 128, 177, 80, 198, 215, 141, 215, 64, 27, 21, 199, 223, 254, 19, 110, 98, 45, 27, 54, 14, 192, 4, 143, 87, 190, + 239, 27, 75, 84, 20, 22, 116, 135, 135, 117, 67, 177, 130, 193, 27, 131, 227, 199, 79, 7, 44, 161, 107, 27, 98, + 137, 217, 196, 221, 2, 25, 105, 27, 246, 207, 225, 116, 24, 181, 146, 152, 69, 168, 112, 192, 22, 74, 255, 27, 24, + 201, 22, 35, 117, 119, 176, 57, 191, 65, 45, 72, 120, 210, 45, 241, 65, 239, 26, 186, 71, 60, 237, 252, 52, 244, + 250, 250, 76, 254, 56, 43, 141, 206, 237, 1, 32, 57, 172, 199, 139, 65, 91, 67, 22, 114, 193, 65, 117, 66, 255, + 65, 255, 191, 65, 60, 27, 32, 33, 129, 63, 212, 234, 52, 73, 66, 102, 134, 76, 91, 101, 126, 159, 155, 7, 49, 226, + 97, 174, 214, 136, 76, 142, 178, 81, 183, 112, 38, 57, 62, 116, 50, 131, 152, 73, 241, 77, 181, 90, 231, 40, 14, + 60, 36, 255, 255, 70, 47, 103, 178, 27, 152, 111, 27, 207, 158, 33, 27, 210, 39, 192, 190, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 264, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4140170371343648589" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a83aea395" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11751699096712114233" + } + }, + { + "_tag": "ByteArray", + "bytearray": "243bdf43" + }, + { + "_tag": "ByteArray", + "bytearray": "74381436" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5669107113647157416" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4629290354295034420" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ba0b8a3d360c4a6b" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "24151705a601" + }, + { + "_tag": "ByteArray", + "bytearray": "fc2df44b10ca6d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11742387217321120420" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2333173980940283217" + } + } + ] + }, + "cborHex": "9fd8669f1b3974d7046589074d9fa09f456a83aea3951ba3166c10b6cdf03944243bdf4344743814361b4eacb6e2369430a8ffd8669f1b403e8b0cd9e5d2349f48ba0b8a3d360c4a6bffffffff4624151705a60147fc2df44b10ca6dd8669f1ba2f556f5d78352a480ff1b2061195fbd212d51ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 57, 116, 215, 4, 101, 137, 7, 77, 159, 160, 159, 69, 106, 131, 174, 163, 149, 27, 163, 22, + 108, 16, 182, 205, 240, 57, 68, 36, 59, 223, 67, 68, 116, 56, 20, 54, 27, 78, 172, 182, 226, 54, 148, 48, 168, + 255, 216, 102, 159, 27, 64, 62, 139, 12, 217, 229, 210, 52, 159, 72, 186, 11, 138, 61, 54, 12, 74, 107, 255, 255, + 255, 255, 70, 36, 21, 23, 5, 166, 1, 71, 252, 45, 244, 75, 16, 202, 109, 216, 102, 159, 27, 162, 245, 86, 245, + 215, 131, 82, 164, 128, 255, 27, 32, 97, 25, 95, 189, 33, 45, 81, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 265, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1259452723295246681" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b117a79943769595980ffff", + "cborBytes": [159, 216, 102, 159, 27, 17, 122, 121, 148, 55, 105, 89, 89, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 266, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10784639452422530253" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12700177300107796509" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21723507" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48659e01721c337c29e62d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ae9899c358f0f709b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12219184093933283077" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a54b73e5db905d08f73" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a491" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34926d2613aea3c9a8405b38" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6179154" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24" + } + } + ] + } + ] + }, + "cborHex": "9f1b95aabc71484ee4cd1bb04017f74d67a01dbf44217235074b48659e01721c337c29e62d497ae9899c358f0f709b1ba993433183ff27054a9a54b73e5db905d08f734273fa42a4914c34926d2613aea3c9a8405b3844e61791544124ffff", + "cborBytes": [ + 159, 27, 149, 170, 188, 113, 72, 78, 228, 205, 27, 176, 64, 23, 247, 77, 103, 160, 29, 191, 68, 33, 114, 53, 7, + 75, 72, 101, 158, 1, 114, 28, 51, 124, 41, 230, 45, 73, 122, 233, 137, 156, 53, 143, 15, 112, 155, 27, 169, 147, + 67, 49, 131, 255, 39, 5, 74, 154, 84, 183, 62, 93, 185, 5, 208, 143, 115, 66, 115, 250, 66, 164, 145, 76, 52, 146, + 109, 38, 19, 174, 163, 201, 168, 64, 91, 56, 68, 230, 23, 145, 84, 65, 36, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 267, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eb" + } + ] + }, + "cborHex": "9f41ebff", + "cborBytes": [159, 65, 235, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 268, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1542523115435845321" + } + } + ] + }, + "cborHex": "9f1b15682499d161e6c9ff", + "cborBytes": [159, 27, 21, 104, 36, 153, 209, 97, 230, 201, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 269, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12a6d30056022db976734157" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc46298b94ba905b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "380230e4" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0004ffb4" + } + ] + } + ] + }, + "cborHex": "9fd9050580d905079fbf4c12a6d30056022db9767341570748fc46298b94ba905b44380230e4ff440004ffb4ffff", + "cborBytes": [ + 159, 217, 5, 5, 128, 217, 5, 7, 159, 191, 76, 18, 166, 211, 0, 86, 2, 45, 185, 118, 115, 65, 87, 7, 72, 252, 70, + 41, 139, 148, 186, 144, 91, 68, 56, 2, 48, 228, 255, 68, 0, 4, 255, 180, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 270, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13439552653916636869" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7693766534572831680" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2001082081663734040" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11026182547765826553" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ed42a3cdd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15590357665091728826" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14177046797551706827" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17698617333427352655" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10637780773642882247" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f19ae97cc69100e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14298755450265524077" + } + } + ] + }, + "cborHex": "9fd8669f1bba82e1eed4dc06c59fbf1b6ac5bfe65e0073c01b1bc5458d13f751181b9904de9ba43193f9452ed42a3cdd1bd85c13b1f514b5ba1bc4befcf2fc28a2cb1bf59e1eb18682344f1b93a0fd409376ccc7ffffff48f19ae97cc69100e31bc66f6252ef41d76dff", + "cborBytes": [ + 159, 216, 102, 159, 27, 186, 130, 225, 238, 212, 220, 6, 197, 159, 191, 27, 106, 197, 191, 230, 94, 0, 115, 192, + 27, 27, 197, 69, 141, 19, 247, 81, 24, 27, 153, 4, 222, 155, 164, 49, 147, 249, 69, 46, 212, 42, 60, 221, 27, 216, + 92, 19, 177, 245, 20, 181, 186, 27, 196, 190, 252, 242, 252, 40, 162, 203, 27, 245, 158, 30, 177, 134, 130, 52, + 79, 27, 147, 160, 253, 64, 147, 118, 204, 199, 255, 255, 255, 72, 241, 154, 233, 124, 198, 145, 0, 227, 27, 198, + 111, 98, 82, 239, 65, 215, 109, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 271, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13068350236226100075" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2016006316365364745" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff5b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12550868421160419179" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c12bf95b7e8434129cf0cf2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7015535132507420602" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9076572327427108271" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "00633a39" + } + ] + }, + "cborHex": "9fd8669f1bb55c1b4cfea61b6b9fd8669f1b1bfa4b103fe6be099f42ff5b1bae2da454e9ef3f6b4c1c12bf95b7e8434129cf0cf21b615c30087a60b7baffff1b7df676712a6eedafffff4400633a39ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 181, 92, 27, 76, 254, 166, 27, 107, 159, 216, 102, 159, 27, 27, 250, 75, 16, 63, 230, 190, + 9, 159, 66, 255, 91, 27, 174, 45, 164, 84, 233, 239, 63, 107, 76, 28, 18, 191, 149, 183, 232, 67, 65, 41, 207, 12, + 242, 27, 97, 92, 48, 8, 122, 96, 183, 186, 255, 255, 27, 125, 246, 118, 113, 42, 110, 237, 175, 255, 255, 68, 0, + 99, 58, 57, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 272, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e2fc05c0f90505" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8134663410031634292" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6991236494619034372" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "863cddd08f8c5b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10628872969400560600" + } + }, + { + "_tag": "ByteArray", + "bytearray": "92d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14910878692360723726" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7653800292554859396" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3184126740874212699" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3588042358511135366" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13998591088358954742" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17536368604079817568" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11236478928612763411" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "558096633621498366" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14314971811716183878" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "73030db231" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17148961908022303393" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8a" + }, + { + "_tag": "ByteArray", + "bytearray": "fce14f92ace4b79d" + }, + { + "_tag": "ByteArray", + "bytearray": "cd0b21" + }, + { + "_tag": "ByteArray", + "bytearray": "4797d40fe1db7e75544beb" + }, + { + "_tag": "ByteArray", + "bytearray": "0f93" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1095332526342545566" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11849856458290483502" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12394481469599746970" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16380016423873941082" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2637351476358004767" + } + } + } + ] + } + ] + }, + "cborHex": "9f47e2fc05c0f905051b70e42145aa4da7749fd8669f1b6105dc8cfa83c3049f47863cddd08f8c5b1b938157a6c7df2bd84292d81bceee152b631a1d0effffd8669f1b6a37c2d0838363849f1b2c304a668da1355b1b31cb4983ca1c6a861bc244fc6d599596f61bf35db255707d8360ffff1b9beffe0d5a202713d8669f1b07bec1ee6d59c9fe9f1bc6a8ff04cf12b746ffffbf4573030db2314181ffffd9050c9fd8669f1bedfd59ff0a5fdaa19f418a48fce14f92ace4b79d43cd0b214b4797d40fe1db7e75544beb420f93ffff9f1b0f3367211f94209effbf1ba47325aa63c5d12e1bac020b3a52a78b9affffbf1be351822708120e5a1b2499c131c82bc01fffff", + "cborBytes": [ + 159, 71, 226, 252, 5, 192, 249, 5, 5, 27, 112, 228, 33, 69, 170, 77, 167, 116, 159, 216, 102, 159, 27, 97, 5, 220, + 140, 250, 131, 195, 4, 159, 71, 134, 60, 221, 208, 143, 140, 91, 27, 147, 129, 87, 166, 199, 223, 43, 216, 66, + 146, 216, 27, 206, 238, 21, 43, 99, 26, 29, 14, 255, 255, 216, 102, 159, 27, 106, 55, 194, 208, 131, 131, 99, 132, + 159, 27, 44, 48, 74, 102, 141, 161, 53, 91, 27, 49, 203, 73, 131, 202, 28, 106, 134, 27, 194, 68, 252, 109, 89, + 149, 150, 246, 27, 243, 93, 178, 85, 112, 125, 131, 96, 255, 255, 27, 155, 239, 254, 13, 90, 32, 39, 19, 216, 102, + 159, 27, 7, 190, 193, 238, 109, 89, 201, 254, 159, 27, 198, 168, 255, 4, 207, 18, 183, 70, 255, 255, 191, 69, 115, + 3, 13, 178, 49, 65, 129, 255, 255, 217, 5, 12, 159, 216, 102, 159, 27, 237, 253, 89, 255, 10, 95, 218, 161, 159, + 65, 138, 72, 252, 225, 79, 146, 172, 228, 183, 157, 67, 205, 11, 33, 75, 71, 151, 212, 15, 225, 219, 126, 117, 84, + 75, 235, 66, 15, 147, 255, 255, 159, 27, 15, 51, 103, 33, 31, 148, 32, 158, 255, 191, 27, 164, 115, 37, 170, 99, + 197, 209, 46, 27, 172, 2, 11, 58, 82, 167, 139, 154, 255, 255, 191, 27, 227, 81, 130, 39, 8, 18, 14, 90, 27, 36, + 153, 193, 49, 200, 43, 192, 31, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 273, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9386485670085387073" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2906882067745339335" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13834093144177607029" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82f7a6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3195688c0dc1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14342565870957246563" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "426bb69eaf6b4a" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16120756517037571273" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6666247134194689911" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9366272581796036250" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a2be33" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15141014314979555726" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1569459082101808495" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c721a929f" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12907193436300966756" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b4a4785a2f62d2e066833" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f130b666667133d9db1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60731ba7d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fefb700078bb20" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "785178bf4452" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ba0ee3721ae450f497b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c289bd3f3eb5687f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6394947970069928077" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9952054942058746683" + } + } + ] + }, + "cborHex": "9f9fbf1b82437efc36bbe3411b285751d6dbe9f7c71bbffc926b205f81754382f7a6463195688c0dc11bc70b07ab620c3863ff47426bb69eaf6b4aff809f1bdfb86ea40c967cc9a0ff9fd8669f1b5c83447302a3e7779f1b81fbaf49db6efe9a43a2be331bd21fb04c8775f98e1b15c7d6b846305d6f459c721a929fffff9f1bb31f900b89f8fb64ffbf4b4b4a4785a2f62d2e0668334a9f130b666667133d9db14560731ba7d847fefb700078bb2046785178bf44524a1ba0ee3721ae450f497b48c289bd3f3eb5687f1b58bf6b4c011f988dffff1b8a1ccd3dd695133bff", + "cborBytes": [ + 159, 159, 191, 27, 130, 67, 126, 252, 54, 187, 227, 65, 27, 40, 87, 81, 214, 219, 233, 247, 199, 27, 191, 252, + 146, 107, 32, 95, 129, 117, 67, 130, 247, 166, 70, 49, 149, 104, 140, 13, 193, 27, 199, 11, 7, 171, 98, 12, 56, + 99, 255, 71, 66, 107, 182, 158, 175, 107, 74, 255, 128, 159, 27, 223, 184, 110, 164, 12, 150, 124, 201, 160, 255, + 159, 216, 102, 159, 27, 92, 131, 68, 115, 2, 163, 231, 119, 159, 27, 129, 251, 175, 73, 219, 110, 254, 154, 67, + 162, 190, 51, 27, 210, 31, 176, 76, 135, 117, 249, 142, 27, 21, 199, 214, 184, 70, 48, 93, 111, 69, 156, 114, 26, + 146, 159, 255, 255, 159, 27, 179, 31, 144, 11, 137, 248, 251, 100, 255, 191, 75, 75, 74, 71, 133, 162, 246, 45, + 46, 6, 104, 51, 74, 159, 19, 11, 102, 102, 103, 19, 61, 157, 177, 69, 96, 115, 27, 167, 216, 71, 254, 251, 112, 0, + 120, 187, 32, 70, 120, 81, 120, 191, 68, 82, 74, 27, 160, 238, 55, 33, 174, 69, 15, 73, 123, 72, 194, 137, 189, + 63, 62, 181, 104, 127, 27, 88, 191, 107, 76, 1, 31, 152, 141, 255, 255, 27, 138, 28, 205, 61, 214, 149, 19, 59, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 274, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2df0fa9f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b8570d88a95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39a87c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08d1133172" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3eb30beee1cd8e2617" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15110043174498718342" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "705c8b97ecce3c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8907866497744839811" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a2af3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e22f056a58af" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7421293850649929011" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3609238930031375494" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15944468617554772153" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5962821371670348457" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8786784403043411897" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d0ecea40009906" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9857339302158739286" + } + } + ] + }, + "cborHex": "9fbf442df0fa9f468b8570d88a954339a87c4508d1133172493eb30beee1cd8e26171bd1b1a835f4cfd28647705c8b97ecce3c1b7b9f196240af2483438a2af346e22f056a58af42d6c41b66fdbb6ffdc7a533ff80d8669f1b321697af2e07f4869f9f1bdd4621baf1b740b91b52c03271f584c2a91b79f0eddc355867b947d0ecea40009906ff80ffff1b88cc4dde6fab2756ff", + "cborBytes": [ + 159, 191, 68, 45, 240, 250, 159, 70, 139, 133, 112, 216, 138, 149, 67, 57, 168, 124, 69, 8, 209, 19, 49, 114, 73, + 62, 179, 11, 238, 225, 205, 142, 38, 23, 27, 209, 177, 168, 53, 244, 207, 210, 134, 71, 112, 92, 139, 151, 236, + 206, 60, 27, 123, 159, 25, 98, 64, 175, 36, 131, 67, 138, 42, 243, 70, 226, 47, 5, 106, 88, 175, 66, 214, 196, 27, + 102, 253, 187, 111, 253, 199, 165, 51, 255, 128, 216, 102, 159, 27, 50, 22, 151, 175, 46, 7, 244, 134, 159, 159, + 27, 221, 70, 33, 186, 241, 183, 64, 185, 27, 82, 192, 50, 113, 245, 132, 194, 169, 27, 121, 240, 237, 220, 53, 88, + 103, 185, 71, 208, 236, 234, 64, 0, 153, 6, 255, 128, 255, 255, 27, 136, 204, 77, 222, 111, 171, 39, 86, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 275, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "81016a22e5a4dd" + } + ] + }, + "cborHex": "9f4781016a22e5a4ddff", + "cborBytes": [159, 71, 129, 1, 106, 34, 229, 164, 221, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 276, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "16b1c836980438345d0244fc" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4ed06700e6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18269646248991852551" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "609394581976140863" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10499544097671138552" + } + }, + { + "_tag": "ByteArray", + "bytearray": "faf8a688" + } + ] + } + ] + }, + "cborHex": "9f9f4c16b1c836980438345d0244fcff454ed06700e61bfd8ad2777b350807d8669f1b08750124c2bc4c3f9f1b91b5dfba553cccf844faf8a688ffffff", + "cborBytes": [ + 159, 159, 76, 22, 177, 200, 54, 152, 4, 56, 52, 93, 2, 68, 252, 255, 69, 78, 208, 103, 0, 230, 27, 253, 138, 210, + 119, 123, 53, 8, 7, 216, 102, 159, 27, 8, 117, 1, 36, 194, 188, 76, 63, 159, 27, 145, 181, 223, 186, 85, 60, 204, + 248, 68, 250, 248, 166, 136, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 277, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6650447262375293331" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17d70358818e9f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d16b815ef665" + } + ] + }, + "cborHex": "9f1b5c4b228caf5931934717d70358818e9f0646d16b815ef665ff", + "cborBytes": [ + 159, 27, 92, 75, 34, 140, 175, 89, 49, 147, 71, 23, 215, 3, 88, 129, 142, 159, 6, 70, 209, 107, 129, 94, 246, 101, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 278, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12685661115993078385" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8aa48c836451553cd05be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7882479336515317320" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17326060829982576121" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18219148538579751326" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e6af22b3ee37511fa4841a6d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11212664287197753401" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9fbf1bb00c8592cfc0ba7141884bc8aa48c836451553cd05be1b6d643131825a2e48ff1bf072888707ebcdf99f1bfcd76b11101f919e4ce6af22b3ee37511fa4841a6d1b9b9b62c310217039ffff80ff", + "cborBytes": [ + 159, 159, 191, 27, 176, 12, 133, 146, 207, 192, 186, 113, 65, 136, 75, 200, 170, 72, 200, 54, 69, 21, 83, 205, 5, + 190, 27, 109, 100, 49, 49, 130, 90, 46, 72, 255, 27, 240, 114, 136, 135, 7, 235, 205, 249, 159, 27, 252, 215, 107, + 17, 16, 31, 145, 158, 76, 230, 175, 34, 179, 238, 55, 81, 31, 164, 132, 26, 109, 27, 155, 155, 98, 195, 16, 33, + 112, 57, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 279, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12859260774025855986" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "310714403624446832" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17932261942775716629" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b7c98c04580390afb053" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4391457120317034839" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ddb666a67de88613b3e12c" + }, + { + "_tag": "ByteArray", + "bytearray": "9bfa34057f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a1c3b5e82c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "774bc424741b4faa" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1719765159216658965" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4a965537e84c" + }, + { + "_tag": "ByteArray", + "bytearray": "c092735a2d62ea39be398284" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11706707106754627344" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7ac5c324b435a6ef125cc7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2057634430635950857" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4886279549212479934" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5053026755696544553" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "703d7c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6939625206952542563" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8936436538265375040" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7717242300737332036" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8df8f162fa9aa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12565874895551575197" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11747180103224826497" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2583378987791552870" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "81faf9" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bb275458aeded03f29f1b044fe11a96a1eb709f1bf8dc313a4e671b154ab7c98c04580390afb0531b3cf196fbe6db51574bddb666a67de88613b3e12c459bfa34057fff45a1c3b5e82c9f48774bc424741b4faaffd8669f1b17ddd54cf433ba159f464a965537e84c4cc092735a2d62ea39be3982841ba2769416bba68710ffffff9f4b7ac5c324b435a6ef125cc7bf1b1c8e2f9ce3ab43091b43cf8d5c8410d1be1b461ff50fedd64b2943703d7c1b604e805ba6c0c1631b7c0499af2d2111401b6b1926fc1d11234447a8df8f162fa9aa1bae62f4a40159b49d1ba3065e108d409a81ffd8669f1b23da01808786116680ff9f4381faf9ffffff", + "cborBytes": [ + 159, 27, 178, 117, 69, 138, 237, 237, 3, 242, 159, 27, 4, 79, 225, 26, 150, 161, 235, 112, 159, 27, 248, 220, 49, + 58, 78, 103, 27, 21, 74, 183, 201, 140, 4, 88, 3, 144, 175, 176, 83, 27, 60, 241, 150, 251, 230, 219, 81, 87, 75, + 221, 182, 102, 166, 125, 232, 134, 19, 179, 225, 44, 69, 155, 250, 52, 5, 127, 255, 69, 161, 195, 181, 232, 44, + 159, 72, 119, 75, 196, 36, 116, 27, 79, 170, 255, 216, 102, 159, 27, 23, 221, 213, 76, 244, 51, 186, 21, 159, 70, + 74, 150, 85, 55, 232, 76, 76, 192, 146, 115, 90, 45, 98, 234, 57, 190, 57, 130, 132, 27, 162, 118, 148, 22, 187, + 166, 135, 16, 255, 255, 255, 159, 75, 122, 197, 195, 36, 180, 53, 166, 239, 18, 92, 199, 191, 27, 28, 142, 47, + 156, 227, 171, 67, 9, 27, 67, 207, 141, 92, 132, 16, 209, 190, 27, 70, 31, 245, 15, 237, 214, 75, 41, 67, 112, 61, + 124, 27, 96, 78, 128, 91, 166, 192, 193, 99, 27, 124, 4, 153, 175, 45, 33, 17, 64, 27, 107, 25, 38, 252, 29, 17, + 35, 68, 71, 168, 223, 143, 22, 47, 169, 170, 27, 174, 98, 244, 164, 1, 89, 180, 157, 27, 163, 6, 94, 16, 141, 64, + 154, 129, 255, 216, 102, 159, 27, 35, 218, 1, 128, 135, 134, 17, 102, 128, 255, 159, 67, 129, 250, 249, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 280, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0712c1e75e06749a8046" + }, + { + "_tag": "ByteArray", + "bytearray": "fda02db7ac64cace63" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12745142259192161617" + } + } + ] + }, + "cborHex": "9f4a0712c1e75e06749a804649fda02db7ac64cace631bb0dfd75baaf7e551ff", + "cborBytes": [ + 159, 74, 7, 18, 193, 231, 94, 6, 116, 154, 128, 70, 73, 253, 160, 45, 183, 172, 100, 202, 206, 99, 27, 176, 223, + 215, 91, 170, 247, 229, 81, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 281, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "66e4ce0f3ca1" + } + ] + }, + "cborHex": "9f4666e4ce0f3ca1ff", + "cborBytes": [159, 70, 102, 228, 206, 15, 60, 161, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 282, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14958912732738496922" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17232740140617838258" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6237956046411068361" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9334739122688689632" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0448983c09b9aa" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7762458488288540533" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14937084841701040093" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "62" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "010102" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10271841977776423937" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "025cb641d7dfec" + }, + { + "_tag": "ByteArray", + "bytearray": "d4" + }, + { + "_tag": "ByteArray", + "bytearray": "0792732ea6bee5309d09" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7371453944593576913" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9f9f1bcf98bbdfecf2299a1bef26fddadc242eb2ffd8669f1b5691abf95ed4f3c99f1b818ba7c646cd05e0ffff470448983c09b9aaff12d8669f1b6bb9cade2a2777759f1bcf4b2f8601765fdd9f41620943010102ffd8669f1b8e8ce9db324f44019f47025cb641d7dfec41d44a0792732ea6bee5309d09ffff1b664caa4e95a6f3d1ffff80ff", + "cborBytes": [ + 159, 159, 159, 27, 207, 152, 187, 223, 236, 242, 41, 154, 27, 239, 38, 253, 218, 220, 36, 46, 178, 255, 216, 102, + 159, 27, 86, 145, 171, 249, 94, 212, 243, 201, 159, 27, 129, 139, 167, 198, 70, 205, 5, 224, 255, 255, 71, 4, 72, + 152, 60, 9, 185, 170, 255, 18, 216, 102, 159, 27, 107, 185, 202, 222, 42, 39, 119, 117, 159, 27, 207, 75, 47, 134, + 1, 118, 95, 221, 159, 65, 98, 9, 67, 1, 1, 2, 255, 216, 102, 159, 27, 142, 140, 233, 219, 50, 79, 68, 1, 159, 71, + 2, 92, 182, 65, 215, 223, 236, 65, 212, 74, 7, 146, 115, 46, 166, 190, 229, 48, 157, 9, 255, 255, 27, 102, 76, + 170, 78, 149, 166, 243, 209, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 283, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "010f1cea4d3aea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6206902663143247503" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1652836274614552240" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59424173e3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3590137351666382709" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12177133346394202118" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11024721514719532749" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3679686728404643253" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3157880" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0ca18b1ed7d6b70cf017e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f9d6" + } + ] + }, + "cborHex": "9f47010f1cea4d3aea1b5623591628144e8fbf1b16f00dd5ac47c6b04559424173e31b31d2bae664efb7751ba8fdde42e663e0061b98ffadce6076d6cd1b3310df956b472db544f31578804bf0ca18b1ed7d6b70cf017eff42f9d6ff", + "cborBytes": [ + 159, 71, 1, 15, 28, 234, 77, 58, 234, 27, 86, 35, 89, 22, 40, 20, 78, 143, 191, 27, 22, 240, 13, 213, 172, 71, + 198, 176, 69, 89, 66, 65, 115, 227, 27, 49, 210, 186, 230, 100, 239, 183, 117, 27, 168, 253, 222, 66, 230, 99, + 224, 6, 27, 152, 255, 173, 206, 96, 118, 214, 205, 27, 51, 16, 223, 149, 107, 71, 45, 181, 68, 243, 21, 120, 128, + 75, 240, 202, 24, 177, 237, 125, 107, 112, 207, 1, 126, 255, 66, 249, 214, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 284, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "505e4b8459e6df82d7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17884794292119432106" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15372487746299626092" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5313ac28fbb8adfd9328e" + }, + { + "_tag": "ByteArray", + "bytearray": "8307" + } + ] + }, + "cborHex": "9f49505e4b8459e6df82d71bf8338da6a6b66baa1bd5560c28883c026c4bf5313ac28fbb8adfd9328e428307ff", + "cborBytes": [ + 159, 73, 80, 94, 75, 132, 89, 230, 223, 130, 215, 27, 248, 51, 141, 166, 166, 182, 107, 170, 27, 213, 86, 12, 40, + 136, 60, 2, 108, 75, 245, 49, 58, 194, 143, 187, 138, 223, 217, 50, 142, 66, 131, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 285, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4332641706505242503" + } + } + ] + }, + "cborHex": "9f1b3c20a2ad3f498787ff", + "cborBytes": [159, 27, 60, 32, 162, 173, 63, 73, 135, 135, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 286, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10477923779753547100" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3042bacd8e1b9a" + }, + { + "_tag": "ByteArray", + "bytearray": "75d4e3008079015780d6b09d" + }, + { + "_tag": "ByteArray", + "bytearray": "f0e071d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14409201357721490543" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3698106543689326804" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15702621673539052149" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2607505076083784275" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2761834428470933038" + } + }, + { + "_tag": "ByteArray", + "bytearray": "40adb01a7331c7" + }, + { + "_tag": "ByteArray", + "bytearray": "a1d007feca7bc178" + }, + { + "_tag": "ByteArray", + "bytearray": "3d49618eecbc6623c103" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e790e25ba1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9236660510469159993" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6115" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18077683856606493217" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17840516817851783534" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2223846195853096722" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9a1e92e199ebc314471" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9995a406a6915bdaf12b" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17228f8b9e43d391cd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb85" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bb18cb3aa399a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3bb7a35275d14ae6e07c2" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b91691029cbd4155c9f473042bacd8e1b9a4c75d4e3008079015780d6b09d44f0e071d81bc7f7c44aa810d46fffff9f1b3352504ede2660d4ffd8669f1bd9eaeb374da5227580ffd8669f1b242fb80d32007a539f1b265401c7a574362e4740adb01a7331c748a1d007feca7bc1784a3d49618eecbc6623c103ffff45e790e25ba1ff1b802f35cbdd647c399f9f4261151bfae0d5b01ad7fa211bf7963f85d170196e1b1edcb0552aed7712ffffbf4ad9a1e92e199ebc3144714a9995a406a6915bdaf12bffbf4917228f8b9e43d391cd42eb85478bb18cb3aa399a4bc3bb7a35275d14ae6e07c2ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 145, 105, 16, 41, 203, 212, 21, 92, 159, 71, 48, 66, 186, 205, 142, 27, 154, 76, 117, + 212, 227, 0, 128, 121, 1, 87, 128, 214, 176, 157, 68, 240, 224, 113, 216, 27, 199, 247, 196, 74, 168, 16, 212, + 111, 255, 255, 159, 27, 51, 82, 80, 78, 222, 38, 96, 212, 255, 216, 102, 159, 27, 217, 234, 235, 55, 77, 165, 34, + 117, 128, 255, 216, 102, 159, 27, 36, 47, 184, 13, 50, 0, 122, 83, 159, 27, 38, 84, 1, 199, 165, 116, 54, 46, 71, + 64, 173, 176, 26, 115, 49, 199, 72, 161, 208, 7, 254, 202, 123, 193, 120, 74, 61, 73, 97, 142, 236, 188, 102, 35, + 193, 3, 255, 255, 69, 231, 144, 226, 91, 161, 255, 27, 128, 47, 53, 203, 221, 100, 124, 57, 159, 159, 66, 97, 21, + 27, 250, 224, 213, 176, 26, 215, 250, 33, 27, 247, 150, 63, 133, 209, 112, 25, 110, 27, 30, 220, 176, 85, 42, 237, + 119, 18, 255, 255, 191, 74, 217, 161, 233, 46, 25, 158, 188, 49, 68, 113, 74, 153, 149, 164, 6, 166, 145, 91, 218, + 241, 43, 255, 191, 73, 23, 34, 143, 139, 158, 67, 211, 145, 205, 66, 235, 133, 71, 139, 177, 140, 179, 170, 57, + 154, 75, 195, 187, 122, 53, 39, 93, 20, 174, 110, 7, 194, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 287, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7512283272990932008" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7798" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10680688290255923260" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a84267" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a2d7a" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15202686678695948663" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17324169227237908391" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4509638882190085460" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15923593309667769601" + } + }, + { + "_tag": "ByteArray", + "bytearray": "46d73c4fdbe341ba9888" + }, + { + "_tag": "ByteArray", + "bytearray": "2ed7646104b87456221d32e6" + }, + { + "_tag": "ByteArray", + "bytearray": "fd4f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1118276266250808384" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6284429177847231866" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10744308307358366553" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17710767787003285553" + } + } + ] + }, + "cborHex": "9f1b6840fdd5c2bbbc289fbf4277981b94396d694960e83c43a84267434a2d7affd8669f1bd2facafcab3c31779f1bf06bd01ff244dfa7ffffd8669f1b3e9574ab963acd549f1bdcfbf7bf9288bd014a46d73c4fdbe341ba98884c2ed7646104b87456221d32e642fd4fffffd8669f1b0f84ea56daa12c409f1b5736c70a79af357a1b951b737ad15fbb59ffffff1bf5c9497773c31031ff", + "cborBytes": [ + 159, 27, 104, 64, 253, 213, 194, 187, 188, 40, 159, 191, 66, 119, 152, 27, 148, 57, 109, 105, 73, 96, 232, 60, 67, + 168, 66, 103, 67, 74, 45, 122, 255, 216, 102, 159, 27, 210, 250, 202, 252, 171, 60, 49, 119, 159, 27, 240, 107, + 208, 31, 242, 68, 223, 167, 255, 255, 216, 102, 159, 27, 62, 149, 116, 171, 150, 58, 205, 84, 159, 27, 220, 251, + 247, 191, 146, 136, 189, 1, 74, 70, 215, 60, 79, 219, 227, 65, 186, 152, 136, 76, 46, 215, 100, 97, 4, 184, 116, + 86, 34, 29, 50, 230, 66, 253, 79, 255, 255, 216, 102, 159, 27, 15, 132, 234, 86, 218, 161, 44, 64, 159, 27, 87, + 54, 199, 10, 121, 175, 53, 122, 27, 149, 27, 115, 122, 209, 95, 187, 89, 255, 255, 255, 27, 245, 201, 73, 119, + 115, 195, 16, 49, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 288, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a795b84b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11883239286626208102" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91c65e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13991044647600316623" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8771048523234574683" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5938bfb991306aedb4c3e7" + } + } + ] + } + ] + }, + "cborHex": "9f44a795b84bbf1ba4e9bf2bcc5249664391c65e1bc22a2cfab0d8e0cf1b79b906292f1c815b41764b5938bfb991306aedb4c3e7ffff", + "cborBytes": [ + 159, 68, 167, 149, 184, 75, 191, 27, 164, 233, 191, 43, 204, 82, 73, 102, 67, 145, 198, 94, 27, 194, 42, 44, 250, + 176, 216, 224, 207, 27, 121, 185, 6, 41, 47, 28, 129, 91, 65, 118, 75, 89, 56, 191, 185, 145, 48, 106, 237, 180, + 195, 231, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 289, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "69" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8433920478060278064" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7ef5e886a791" + }, + { + "_tag": "ByteArray", + "bytearray": "6d53cbb5c115c9ef3e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5988450014237673278" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a171a7bdf72" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5236305447187238797" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32443c66750377" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8663699394121322388" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f9f41691b750b4dfd6eacf130467ef5e886a791496d53cbb5c115c9ef3e1b531b3f8f4dd1c73effffbf460a171a7bdf721b48ab180fa309cf8d4732443c667503771b783ba4b25b5e4f94ffff", + "cborBytes": [ + 159, 159, 159, 65, 105, 27, 117, 11, 77, 253, 110, 172, 241, 48, 70, 126, 245, 232, 134, 167, 145, 73, 109, 83, + 203, 181, 193, 21, 201, 239, 62, 27, 83, 27, 63, 143, 77, 209, 199, 62, 255, 255, 191, 70, 10, 23, 26, 123, 223, + 114, 27, 72, 171, 24, 15, 163, 9, 207, 141, 71, 50, 68, 60, 102, 117, 3, 119, 27, 120, 59, 164, 178, 91, 94, 79, + 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 290, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "860636f7c5a7bf779b" + }, + { + "_tag": "ByteArray", + "bytearray": "9f" + }, + { + "_tag": "ByteArray", + "bytearray": "ff5e25" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4be4c721d55b" + }, + { + "_tag": "ByteArray", + "bytearray": "a3c4dd" + }, + { + "_tag": "ByteArray", + "bytearray": "86" + }, + { + "_tag": "ByteArray", + "bytearray": "0fa14713d4477d" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "357f75b2c5f26fbcddce00bf" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16154818048235036228" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12565369181127758184" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6302050191591127208" + } + }, + { + "_tag": "ByteArray", + "bytearray": "887736d4fdbc6a52771ac8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4404452003231770901" + } + }, + { + "_tag": "ByteArray", + "bytearray": "169cc9275aba9745f9b9" + }, + { + "_tag": "ByteArray", + "bytearray": "ef29d5658ef673da5ad16e" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f49860636f7c5a7bf779b419f43ff5e259f464be4c721d55b43a3c4dd4186470fa14713d4477dffff9fa04c357f75b2c5f26fbcddce00bfd8669f1be031716c481e5e4480ffd8669f1bae6128b230c2d1689f1b577561427278b8a84b887736d4fdbc6a52771ac81b3d1fc1c2dae329154a169cc9275aba9745f9b94bef29d5658ef673da5ad16effffffff", + "cborBytes": [ + 159, 159, 73, 134, 6, 54, 247, 197, 167, 191, 119, 155, 65, 159, 67, 255, 94, 37, 159, 70, 75, 228, 199, 33, 213, + 91, 67, 163, 196, 221, 65, 134, 71, 15, 161, 71, 19, 212, 71, 125, 255, 255, 159, 160, 76, 53, 127, 117, 178, 197, + 242, 111, 188, 221, 206, 0, 191, 216, 102, 159, 27, 224, 49, 113, 108, 72, 30, 94, 68, 128, 255, 216, 102, 159, + 27, 174, 97, 40, 178, 48, 194, 209, 104, 159, 27, 87, 117, 97, 66, 114, 120, 184, 168, 75, 136, 119, 54, 212, 253, + 188, 106, 82, 119, 26, 200, 27, 61, 31, 193, 194, 218, 227, 41, 21, 74, 22, 156, 201, 39, 90, 186, 151, 69, 249, + 185, 75, 239, 41, 213, 101, 142, 246, 115, 218, 90, 209, 110, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 291, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6684113243588856784" + } + } + ] + }, + "cborHex": "9f1b5cc2bd94c2990bd0ff", + "cborBytes": [159, 27, 92, 194, 189, 148, 194, 153, 11, 208, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 292, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cc74d29ff07e8274238129f2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15063144482852481600" + } + }, + { + "_tag": "ByteArray", + "bytearray": "47706d3122e8dcc6263596ba" + }, + { + "_tag": "ByteArray", + "bytearray": "1ed3eecc5cccbd5d8f856626" + } + ] + }, + "cborHex": "9f4ccc74d29ff07e8274238129f21bd10b0a1964ceaa404c47706d3122e8dcc6263596ba4c1ed3eecc5cccbd5d8f856626ff", + "cborBytes": [ + 159, 76, 204, 116, 210, 159, 240, 126, 130, 116, 35, 129, 41, 242, 27, 209, 11, 10, 25, 100, 206, 170, 64, 76, 71, + 112, 109, 49, 34, 232, 220, 198, 38, 53, 150, 186, 76, 30, 211, 238, 204, 92, 204, 189, 93, 143, 133, 102, 38, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 293, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "535383195886515310" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fa041021b076e102e1987746ea0ff", + "cborBytes": [159, 160, 65, 2, 27, 7, 110, 16, 46, 25, 135, 116, 110, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 294, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17298694270186137740" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16602299292449708559" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16837737884820657501" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1092894518293655540" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9670360247245779565" + } + }, + { + "_tag": "ByteArray", + "bytearray": "46f5894d80877aa6b495" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18098200945763296866" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21b6ccfa7cf3bd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16697467681679288702" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7530f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e0b1114d7e83d8521a1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "989db8e8039f32f18292" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2bac9b75de9042d4f1aa3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6277200769251392692" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef3bedcf0e04885890a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdac3919086b0ce3e2" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11617743541565933720" + } + }, + { + "_tag": "ByteArray", + "bytearray": "93ad4d70ea36c681" + }, + { + "_tag": "ByteArray", + "bytearray": "fe238947b84cb1d329cecb" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13438650205346004200" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1055601664296338279" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3c0078df6a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "29782f772aaf152b35" + }, + { + "_tag": "ByteArray", + "bytearray": "a558ed" + }, + { + "_tag": "ByteArray", + "bytearray": "28" + }, + { + "_tag": "ByteArray", + "bytearray": "d40a36c11071ad680c836c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fe7107ea1c8abd9a2e732a" + } + ] + } + ] + }, + "cborHex": "9f1bf0114ec94c87a88c801be667373e652f1a0f9f9f1be9aba96565df555d1b0f2abdc623dd6ff41b86340568bb24b26d4a46f5894d80877aa6b4951bfb29b9df2ddc2662ffbf4721b6ccfa7cf3bd1be7b95263b70f297e437530f74a7e0b1114d7e83d8521a14a989db8e8039f32f1829241284be2bac9b75de9042d4f1aa31b571d18d77309bcb44aef3bedcf0e04885890a149bdac3919086b0ce3e2ff1ba13a843296a048984893ad4d70ea36c6814bfe238947b84cb1d329cecbff9fd8669f1bba7fad292660fce89f1b0ea6401ef0b1c367453c0078df6affff9f4929782f772aaf152b3543a558ed41284bd40a36c11071ad680c836cff4bfe7107ea1c8abd9a2e732affff", + "cborBytes": [ + 159, 27, 240, 17, 78, 201, 76, 135, 168, 140, 128, 27, 230, 103, 55, 62, 101, 47, 26, 15, 159, 159, 27, 233, 171, + 169, 101, 101, 223, 85, 93, 27, 15, 42, 189, 198, 35, 221, 111, 244, 27, 134, 52, 5, 104, 187, 36, 178, 109, 74, + 70, 245, 137, 77, 128, 135, 122, 166, 180, 149, 27, 251, 41, 185, 223, 45, 220, 38, 98, 255, 191, 71, 33, 182, + 204, 250, 124, 243, 189, 27, 231, 185, 82, 99, 183, 15, 41, 126, 67, 117, 48, 247, 74, 126, 11, 17, 20, 215, 232, + 61, 133, 33, 161, 74, 152, 157, 184, 232, 3, 159, 50, 241, 130, 146, 65, 40, 75, 226, 186, 201, 183, 93, 233, 4, + 45, 79, 26, 163, 27, 87, 29, 24, 215, 115, 9, 188, 180, 74, 239, 59, 237, 207, 14, 4, 136, 88, 144, 161, 73, 189, + 172, 57, 25, 8, 107, 12, 227, 226, 255, 27, 161, 58, 132, 50, 150, 160, 72, 152, 72, 147, 173, 77, 112, 234, 54, + 198, 129, 75, 254, 35, 137, 71, 184, 76, 177, 211, 41, 206, 203, 255, 159, 216, 102, 159, 27, 186, 127, 173, 41, + 38, 96, 252, 232, 159, 27, 14, 166, 64, 30, 240, 177, 195, 103, 69, 60, 0, 120, 223, 106, 255, 255, 159, 73, 41, + 120, 47, 119, 42, 175, 21, 43, 53, 67, 165, 88, 237, 65, 40, 75, 212, 10, 54, 193, 16, 113, 173, 104, 12, 131, + 108, 255, 75, 254, 113, 7, 234, 28, 138, 189, 154, 46, 115, 42, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 295, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6854252952465053792" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8332500419409443581" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8962228134849557137" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "049f47cca5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9193653357061230855" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13177032863823902172" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7499344424160439136" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11486484608011280319" + } + }, + { + "_tag": "ByteArray", + "bytearray": "42c082e5e0160a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7248422552840976470" + } + }, + { + "_tag": "ByteArray", + "bytearray": "44592b" + }, + { + "_tag": "ByteArray", + "bytearray": "78" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7239196019444127647" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4640998081524541180" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7996785018991152691" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10451231127942642051" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8903134877076077109" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a11c0aae8261de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9660412952215267606" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2681921565912468975" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ce6b6049c997881a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4663791192687089444" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1655503773104488719" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dd285e5f7d145bd1370ef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3730359994912427725" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13593318284872737540" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4067992982327564391" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1381212600875035687" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7081d1617510e0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9393771625371368832" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15978410952514722507" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12907752679696769445" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1676159670114253239" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14719271658388112434" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bab4428eb7ce6e8eba" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "178c7b053d887d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "185f" + }, + { + "_tag": "ByteArray", + "bytearray": "2efdae4cfeb8a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8731719552359540072" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9ce6e200c1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "960293411400838239" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8435099577141481046" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13478366656651852938" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3401145090314430952" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b5f1f32beb05a1860d8669f1b73a2fcfbe5b17afd9fd8669f1b7c603b0135b8329180ff9f45049f47cca51b7f966b04a7b651071bb6de399321df35dcffd8669f1b681306054263ab609f1b9f6830e49a811fbf4742c082e5e0160a1b649791e8740438564344592b4178ffffffffd8669f1b6476ca6cbe63979f9fbf1b4068232a848a26fc1b6efa499b22220e331b910a3b567e86b9831b7b8e49fff782ba3547a11c0aae8261de1b8610ae65a05fa916ffd8669f1b253819746bac0def9f48ce6b6049c997881a1b40b91d6142b59724ffffbf1b16f987e91036410f4b2dd285e5f7d145bd1370ef1b33c4e6a6ad154ecd1bbca52af5a8a963041b38746a10746a986741e1ffbf1b132b0d8ae2732c27477081d1617510e01b825d6185df677d801bddbeb81aa3d9dacb1bb3218cac89ec21a51b1742ea56dbfef9b71bcc455b9656b2c43249bab4428eb7ce6e8ebaff47178c7b053d887dffff9f9f42185f472efdae4cfeb8a81b792d4cab94b92568459ce6e200c1ffd8669f1b0d53a5c512b1ec5f9f41c41b750f7e5fd490ce561bbb0cc7101233fc8a1b2f334b7089c169e8ffffffff", + "cborBytes": [ + 159, 27, 95, 31, 50, 190, 176, 90, 24, 96, 216, 102, 159, 27, 115, 162, 252, 251, 229, 177, 122, 253, 159, 216, + 102, 159, 27, 124, 96, 59, 1, 53, 184, 50, 145, 128, 255, 159, 69, 4, 159, 71, 204, 165, 27, 127, 150, 107, 4, + 167, 182, 81, 7, 27, 182, 222, 57, 147, 33, 223, 53, 220, 255, 216, 102, 159, 27, 104, 19, 6, 5, 66, 99, 171, 96, + 159, 27, 159, 104, 48, 228, 154, 129, 31, 191, 71, 66, 192, 130, 229, 224, 22, 10, 27, 100, 151, 145, 232, 116, 4, + 56, 86, 67, 68, 89, 43, 65, 120, 255, 255, 255, 255, 216, 102, 159, 27, 100, 118, 202, 108, 190, 99, 151, 159, + 159, 191, 27, 64, 104, 35, 42, 132, 138, 38, 252, 27, 110, 250, 73, 155, 34, 34, 14, 51, 27, 145, 10, 59, 86, 126, + 134, 185, 131, 27, 123, 142, 73, 255, 247, 130, 186, 53, 71, 161, 28, 10, 174, 130, 97, 222, 27, 134, 16, 174, + 101, 160, 95, 169, 22, 255, 216, 102, 159, 27, 37, 56, 25, 116, 107, 172, 13, 239, 159, 72, 206, 107, 96, 73, 201, + 151, 136, 26, 27, 64, 185, 29, 97, 66, 181, 151, 36, 255, 255, 191, 27, 22, 249, 135, 233, 16, 54, 65, 15, 75, 45, + 210, 133, 229, 247, 209, 69, 189, 19, 112, 239, 27, 51, 196, 230, 166, 173, 21, 78, 205, 27, 188, 165, 42, 245, + 168, 169, 99, 4, 27, 56, 116, 106, 16, 116, 106, 152, 103, 65, 225, 255, 191, 27, 19, 43, 13, 138, 226, 115, 44, + 39, 71, 112, 129, 209, 97, 117, 16, 224, 27, 130, 93, 97, 133, 223, 103, 125, 128, 27, 221, 190, 184, 26, 163, + 217, 218, 203, 27, 179, 33, 140, 172, 137, 236, 33, 165, 27, 23, 66, 234, 86, 219, 254, 249, 183, 27, 204, 69, 91, + 150, 86, 178, 196, 50, 73, 186, 180, 66, 142, 183, 206, 110, 142, 186, 255, 71, 23, 140, 123, 5, 61, 136, 125, + 255, 255, 159, 159, 66, 24, 95, 71, 46, 253, 174, 76, 254, 184, 168, 27, 121, 45, 76, 171, 148, 185, 37, 104, 69, + 156, 230, 226, 0, 193, 255, 216, 102, 159, 27, 13, 83, 165, 197, 18, 177, 236, 95, 159, 65, 196, 27, 117, 15, 126, + 95, 212, 144, 206, 86, 27, 187, 12, 199, 16, 18, 51, 252, 138, 27, 47, 51, 75, 112, 137, 193, 105, 232, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 296, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3955949928061079510" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16613362735240132536" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9e4dccbbd40aecd9f6d5" + }, + { + "_tag": "ByteArray", + "bytearray": "97" + } + ] + }, + "cborHex": "9f9fd8669f1b36e65b8003500fd69f1be68e8562e6b337b8ffffff4a9e4dccbbd40aecd9f6d54197ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 54, 230, 91, 128, 3, 80, 15, 214, 159, 27, 230, 142, 133, 98, 230, 179, 55, 184, 255, + 255, 255, 74, 158, 77, 204, 187, 212, 10, 236, 217, 246, 213, 65, 151, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 297, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0df98d330a2901fb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11465109295942687078" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1834459010893746724" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17691834944783460900" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4719398947685534678" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13063567187501147273" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7904599232753480398" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11918613966722327567" + } + } + ] + }, + "cborHex": "9f480df98d330a2901fbd8669f1b9f1c4028efb159669fa0d8669f1b19754ec0435612249f1bf58606259ca92a241b417eac56a6260bd61bb54b1d24ae7464891b6db2c71f3018b2ceffffa0ffff1ba5676c41557e640fff", + "cborBytes": [ + 159, 72, 13, 249, 141, 51, 10, 41, 1, 251, 216, 102, 159, 27, 159, 28, 64, 40, 239, 177, 89, 102, 159, 160, 216, + 102, 159, 27, 25, 117, 78, 192, 67, 86, 18, 36, 159, 27, 245, 134, 6, 37, 156, 169, 42, 36, 27, 65, 126, 172, 86, + 166, 38, 11, 214, 27, 181, 75, 29, 36, 174, 116, 100, 137, 27, 109, 178, 199, 31, 48, 24, 178, 206, 255, 255, 160, + 255, 255, 27, 165, 103, 108, 65, 85, 126, 100, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 298, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8354086061722234956" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3379400930934517475" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e528b76e738cc" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "297a2c7008e1c0b7ce497435" + }, + { + "_tag": "ByteArray", + "bytearray": "12411285" + } + ] + }, + "cborHex": "9f1b73efad02e3fef04cbf1b2ee60b3de9f9eee3478e528b76e738ccff4c297a2c7008e1c0b7ce4974354412411285ff", + "cborBytes": [ + 159, 27, 115, 239, 173, 2, 227, 254, 240, 76, 191, 27, 46, 230, 11, 61, 233, 249, 238, 227, 71, 142, 82, 139, 118, + 231, 56, 204, 255, 76, 41, 122, 44, 112, 8, 225, 192, 183, 206, 73, 116, 53, 68, 18, 65, 18, 133, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 299, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1b0f6778e1b557ee3671f6" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a79a224ef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c71" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bf7bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7591805747129707433" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d48a1f01fa7c1a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c25e25866c17bbd9c10e09" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6145895793749346846" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f298b6ed50" + }, + { + "_tag": "ByteArray", + "bytearray": "ed5c4f33670864" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4576869257977896984" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f50358" + }, + { + "_tag": "ByteArray", + "bytearray": "5f4e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "698aa8dafef4123550b237" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "af" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10052131552990759031" + } + } + ] + }, + "cborHex": "9f4b1b0f6778e1b557ee3671f69fbf450a79a224ef422c71432bf7bf1b695b831a996f6ba947d48a1f01fa7c1a4bc25e25866c17bbd9c10e09ffd8669f1b554a9ba97cff4a1e9f45f298b6ed5047ed5c4f336708641b3f844e57412da01843f50358425f4effff9f4b698aa8dafef4123550b237ff41afff1b8b80586393828877ff", + "cborBytes": [ + 159, 75, 27, 15, 103, 120, 225, 181, 87, 238, 54, 113, 246, 159, 191, 69, 10, 121, 162, 36, 239, 66, 44, 113, 67, + 43, 247, 191, 27, 105, 91, 131, 26, 153, 111, 107, 169, 71, 212, 138, 31, 1, 250, 124, 26, 75, 194, 94, 37, 134, + 108, 23, 187, 217, 193, 14, 9, 255, 216, 102, 159, 27, 85, 74, 155, 169, 124, 255, 74, 30, 159, 69, 242, 152, 182, + 237, 80, 71, 237, 92, 79, 51, 103, 8, 100, 27, 63, 132, 78, 87, 65, 45, 160, 24, 67, 245, 3, 88, 66, 95, 78, 255, + 255, 159, 75, 105, 138, 168, 218, 254, 244, 18, 53, 80, 178, 55, 255, 65, 175, 255, 27, 139, 128, 88, 99, 147, + 130, 136, 119, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 300, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2814737881196671393" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13417657553334787263" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5794470788674843057" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4986084897085410629" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4166231408834107782" + } + } + ] + }, + "cborHex": "9fbf1b270ff530989031a11bba351874785b5cbf1b506a187b5c5771b11b453221cbe6b74d45ff1b39d16d6487a1d986ff", + "cborBytes": [ + 159, 191, 27, 39, 15, 245, 48, 152, 144, 49, 161, 27, 186, 53, 24, 116, 120, 91, 92, 191, 27, 80, 106, 24, 123, + 92, 87, 113, 177, 27, 69, 50, 33, 203, 230, 183, 77, 69, 255, 27, 57, 209, 109, 100, 135, 161, 217, 134, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 301, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "85938ea675b1a6c4dd4e21" + }, + { + "_tag": "ByteArray", + "bytearray": "e56ce8dd3899a84f71c0dc89" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "78ba79dab2" + } + ] + } + ] + }, + "cborHex": "9f4b85938ea675b1a6c4dd4e214ce56ce8dd3899a84f71c0dc899f4578ba79dab2ffff", + "cborBytes": [ + 159, 75, 133, 147, 142, 166, 117, 177, 166, 196, 221, 78, 33, 76, 229, 108, 232, 221, 56, 153, 168, 79, 113, 192, + 220, 137, 159, 69, 120, 186, 121, 218, 178, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 302, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14156745430679946975" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8c34399571" + }, + { + "_tag": "ByteArray", + "bytearray": "b6ce5c6df587044297d6" + }, + { + "_tag": "ByteArray", + "bytearray": "27f943a034516565d2" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5383972371749988810" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16575845649794304642" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5628304383274025944" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18090791602468314720" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14890776228745473793" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9328943172712586046" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10733477336935964831" + } + } + ] + } + ] + }, + "cborHex": "9f9f1bc476dcf6ab5006dfa09f458c343995714ab6ce5c6df587044297d64927f943a034516565d2ff1b4ab7b658baace9caffd8669f1be6093bcbbfb18a829f1b4e1bc1043cd283d89f1bfb0f671d02be5e601bcea6aa15d8346f01ff1b817710638356db3ea01b94f4f8c500c6209fffffff", + "cborBytes": [ + 159, 159, 27, 196, 118, 220, 246, 171, 80, 6, 223, 160, 159, 69, 140, 52, 57, 149, 113, 74, 182, 206, 92, 109, + 245, 135, 4, 66, 151, 214, 73, 39, 249, 67, 160, 52, 81, 101, 101, 210, 255, 27, 74, 183, 182, 88, 186, 172, 233, + 202, 255, 216, 102, 159, 27, 230, 9, 59, 203, 191, 177, 138, 130, 159, 27, 78, 27, 193, 4, 60, 210, 131, 216, 159, + 27, 251, 15, 103, 29, 2, 190, 94, 96, 27, 206, 166, 170, 21, 216, 52, 111, 1, 255, 27, 129, 119, 16, 99, 131, 86, + 219, 62, 160, 27, 148, 244, 248, 197, 0, 198, 32, 159, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 303, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aac5" + } + ] + }, + "cborHex": "9f42aac5ff", + "cborBytes": [159, 66, 170, 197, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 304, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b6a2b5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9113963132949715089" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c4ab71548b58c9722024631" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13489804399802943948" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "438f09cc071677ee87" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2344981173458669050" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c601e6248c86" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "878ab98967fce0727a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e51fd0af" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "140e3405" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15368939735812538687" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7244899683106088289" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8213015572234313098" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16357655179637628693" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17441887492006300428" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11432530515096310022" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13409328110462576928" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bc71e52479e1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13729618091572636459" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9c02a399" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3180926281242123184" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12146806662299985910" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7276777621404452546" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c522a9b603720a553b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14057100149842305103" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "009e302b8f5c498a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14975729201879690482" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5fb963bc09b3d1173c316" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16350493924264435693" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "324987968128194764" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fbf440b6a2b5c1b7e7b4d2e7b7958914c3c4ab71548b58c97220246311bbb3569a12bc189cc49438f09cc071677ee871b208b0bf3f8fb8dfa46c601e6248c8649878ab98967fce0727a44e51fd0af44140e3405ff1bd5497142f77e013f41c9d8669f1b648b0de06ce0e5619f1b71fa7e2605c71d8a1be30210b824a11f151bf20e08434d5d4b0c1b9ea881ee6c2111061bba1780deecc82920ffff46bc71e52479e1ffd8669f1bbe8966e961f6ab2b9f449c02a399ffffbf1b2c24eb997a241bb01ba892204d85bd27f61b64fc4eb1515306c249c522a9b603720a553b1bc314da1bcb70e04f48009e302b8f5c498a1bcfd47a5d427bacf24bb5fb963bc09b3d1173c3161be2e89f9871f6dfed1b048296d5cc8e98ccffff", + "cborBytes": [ + 159, 159, 191, 68, 11, 106, 43, 92, 27, 126, 123, 77, 46, 123, 121, 88, 145, 76, 60, 74, 183, 21, 72, 181, 140, + 151, 34, 2, 70, 49, 27, 187, 53, 105, 161, 43, 193, 137, 204, 73, 67, 143, 9, 204, 7, 22, 119, 238, 135, 27, 32, + 139, 11, 243, 248, 251, 141, 250, 70, 198, 1, 230, 36, 140, 134, 73, 135, 138, 185, 137, 103, 252, 224, 114, 122, + 68, 229, 31, 208, 175, 68, 20, 14, 52, 5, 255, 27, 213, 73, 113, 66, 247, 126, 1, 63, 65, 201, 216, 102, 159, 27, + 100, 139, 13, 224, 108, 224, 229, 97, 159, 27, 113, 250, 126, 38, 5, 199, 29, 138, 27, 227, 2, 16, 184, 36, 161, + 31, 21, 27, 242, 14, 8, 67, 77, 93, 75, 12, 27, 158, 168, 129, 238, 108, 33, 17, 6, 27, 186, 23, 128, 222, 236, + 200, 41, 32, 255, 255, 70, 188, 113, 229, 36, 121, 225, 255, 216, 102, 159, 27, 190, 137, 102, 233, 97, 246, 171, + 43, 159, 68, 156, 2, 163, 153, 255, 255, 191, 27, 44, 36, 235, 153, 122, 36, 27, 176, 27, 168, 146, 32, 77, 133, + 189, 39, 246, 27, 100, 252, 78, 177, 81, 83, 6, 194, 73, 197, 34, 169, 182, 3, 114, 10, 85, 59, 27, 195, 20, 218, + 27, 203, 112, 224, 79, 72, 0, 158, 48, 43, 143, 92, 73, 138, 27, 207, 212, 122, 93, 66, 123, 172, 242, 75, 181, + 251, 150, 59, 192, 155, 61, 17, 115, 195, 22, 27, 226, 232, 159, 152, 113, 246, 223, 237, 27, 4, 130, 150, 213, + 204, 142, 152, 204, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 305, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5937597103746500368" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fefe64e9f5ccdce4ce" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8375347819946672520" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17223396556090383979" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70ee6633fb18ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11548539254327807798" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11151621403383371183" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1595030493150608893" + } + } + ] + }, + "cborHex": "9fbf1b5266951b6c32c71049fefe64e9f5ccdce4ce1b743b3677be4381881bef05cbea0f741e6b4770ee6633fb18ae1ba044a743d8dd0f36ffd8669f1b9ac28495224f15af80ff1b1622afc85e287dfdff", + "cborBytes": [ + 159, 191, 27, 82, 102, 149, 27, 108, 50, 199, 16, 73, 254, 254, 100, 233, 245, 204, 220, 228, 206, 27, 116, 59, + 54, 119, 190, 67, 129, 136, 27, 239, 5, 203, 234, 15, 116, 30, 107, 71, 112, 238, 102, 51, 251, 24, 174, 27, 160, + 68, 167, 67, 216, 221, 15, 54, 255, 216, 102, 159, 27, 154, 194, 132, 149, 34, 79, 21, 175, 128, 255, 27, 22, 34, + 175, 200, 94, 40, 125, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 306, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10040477799351834912" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f00abcac92f1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14335784103552164156" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14490486325518081536" + } + } + ] + } + ] + }, + "cborHex": "9f1bfffffffffffffff6d8669f1b8b56f15c9d8fd9209f9f46f00abcac92f1ff1bc6f2efb01ceb213c1bc9188c8a07291e00ffffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 216, 102, 159, 27, 139, 86, 241, 92, 157, 143, 217, 32, 159, 159, + 70, 240, 10, 188, 172, 146, 241, 255, 27, 198, 242, 239, 176, 28, 235, 33, 60, 27, 201, 24, 140, 138, 7, 41, 30, + 0, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 307, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16809730106023609686" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72491d03635a8565" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02ebf2af01f2f5796538e3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f50c2b6c79439e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11928370061228222630" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1be94828783bba05564872491d03635a8565411b4b02ebf2af01f2f5796538e347f50c2b6c79439e1ba58a155f18e9a8a6ffff", + "cborBytes": [ + 159, 191, 27, 233, 72, 40, 120, 59, 186, 5, 86, 72, 114, 73, 29, 3, 99, 90, 133, 101, 65, 27, 75, 2, 235, 242, + 175, 1, 242, 245, 121, 101, 56, 227, 71, 245, 12, 43, 108, 121, 67, 158, 27, 165, 138, 21, 95, 24, 233, 168, 166, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 308, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2471f85c" + }, + { + "_tag": "ByteArray", + "bytearray": "6ff809f2dded0b11c1835297" + }, + { + "_tag": "ByteArray", + "bytearray": "4c5ee537571392b366f6121f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2004729867227235263" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8765309569724232263" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6978358832914195759" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16196135966668658234" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17330608216926605220" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f442471f85c4c6ff809f2dded0b11c18352974c4c5ee537571392b366f6121fd8669f1b1bd23b3156b203bf9f1b79a4a29cf1beb2471b60d81c62b70f652f1be0c43bd9d336963ad8669f1bf082b05a0f604fa480ffffffff", + "cborBytes": [ + 159, 68, 36, 113, 248, 92, 76, 111, 248, 9, 242, 221, 237, 11, 17, 193, 131, 82, 151, 76, 76, 94, 229, 55, 87, 19, + 146, 179, 102, 246, 18, 31, 216, 102, 159, 27, 27, 210, 59, 49, 86, 178, 3, 191, 159, 27, 121, 164, 162, 156, 241, + 190, 178, 71, 27, 96, 216, 28, 98, 183, 15, 101, 47, 27, 224, 196, 59, 217, 211, 54, 150, 58, 216, 102, 159, 27, + 240, 130, 176, 90, 15, 96, 79, 164, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 309, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13568851073540413722" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2617" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10489881403909940694" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3e5b033a265d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14807722014641708260" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "caecc0195d8cfa9a8b2f2c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "978a5642c424437844a8" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bb63fffa" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "452741623618716521" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3370c892f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6464279627116537075" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95cf93fb11f669cdebb1ab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7125481338496223593" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca5be255a2b90f" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02c2d2917e61660c4020" + }, + { + "_tag": "ByteArray", + "bytearray": "f81a03" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9126150754437925494" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b9db824007" + }, + { + "_tag": "ByteArray", + "bytearray": "34e7059c831dde0c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c99cc4a28da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7794556432851631271" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf41010541041bbc4e3e29188dd91a4226171b91938b8f200725d641c11447c3e5b033a265d31bcd7f98b7b7735ce44bcaecc0195d8cfa9a8b2f2c4a978a5642c424437844a8ff44bb63fffaffd90505809fd8669f1bffffffffffffffed80ffbf1b0648761ba2d3c369453370c892f91b59b5bc12571364f34b95cf93fb11f669cdebb1ab1b62e2cb8662be096947ca5be255a2b90fff129f0d4a02c2d2917e61660c402043f81a03ff0bffd8669f1b7ea699c23cef8a7680ffd8669f1bffffffffffffffef9f45b9db8240074834e7059c831dde0cbf466c99cc4a28da1b6c2bd3c741db7ca7ffffffff", + "cborBytes": [ + 159, 159, 191, 65, 1, 5, 65, 4, 27, 188, 78, 62, 41, 24, 141, 217, 26, 66, 38, 23, 27, 145, 147, 139, 143, 32, 7, + 37, 214, 65, 193, 20, 71, 195, 229, 176, 51, 162, 101, 211, 27, 205, 127, 152, 183, 183, 115, 92, 228, 75, 202, + 236, 192, 25, 93, 140, 250, 154, 139, 47, 44, 74, 151, 138, 86, 66, 196, 36, 67, 120, 68, 168, 255, 68, 187, 99, + 255, 250, 255, 217, 5, 5, 128, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 128, 255, 191, 27, + 6, 72, 118, 27, 162, 211, 195, 105, 69, 51, 112, 200, 146, 249, 27, 89, 181, 188, 18, 87, 19, 100, 243, 75, 149, + 207, 147, 251, 17, 246, 105, 205, 235, 177, 171, 27, 98, 226, 203, 134, 98, 190, 9, 105, 71, 202, 91, 226, 85, + 162, 185, 15, 255, 18, 159, 13, 74, 2, 194, 210, 145, 126, 97, 102, 12, 64, 32, 67, 248, 26, 3, 255, 11, 255, 216, + 102, 159, 27, 126, 166, 153, 194, 60, 239, 138, 118, 128, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 239, 159, 69, 185, 219, 130, 64, 7, 72, 52, 231, 5, 156, 131, 29, 222, 12, 191, 70, 108, 153, 204, 74, 40, + 218, 27, 108, 43, 211, 199, 65, 219, 124, 167, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 310, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "364419519784494887" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fd3e25a3387a2685e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8605961624678639068" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8017837808527329266" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bf044c572c2ff52480eb" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15139085602771983515" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16980c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17023704485297366272" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17466697626159015632" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10764234179725790053" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16039036046826005487" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d35" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b6e561830a135d35f42441e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8915439068355489354" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7daca120203b" + }, + { + "_tag": "ByteArray", + "bytearray": "692198" + }, + { + "_tag": "ByteArray", + "bytearray": "82876fd20dc0c52c85381e" + }, + { + "_tag": "ByteArray", + "bytearray": "3f761b75" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "308f465c76580e90fe42e78f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49726488" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d533019" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "772ff034b4e704" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "334b3a1c37a5b48ba8303437" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa5dc5437b55491c88b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2645620653475719404" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aa53" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1378633693499058163" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17479979985404655422" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5379076664505890221" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13813690291116439901" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b050ead9f59f927279f9f49fd3e25a3387a2685e51b776e8480559d25dc1b6f451501abf7c7f2ff9f4abf044c572c2ff52480ebffbf1bd218d62539745c9b4316980cffd8669f1bec405908af5fa50080ffd8669f1bf2662cf2ce5de6d080ffffffbf1b95623df481ac8b6541441bde961a4e5ebfe3ef429d354c9b6e561830a135d35f42441e1b7bba0098bdf7ee4aff9f467daca120203b436921984b82876fd20dc0c52c85381e443f761b75bf4c308f465c76580e90fe42e78f4449726488443d53301947772ff034b4e704419c4c334b3a1c37a5b48ba83034374afa5dc5437b55491c88b8414cffff9f1b24b721f79cdb68ec42aa539f1b1321e40a386567f31bf2955d2f0efb773effa0bf1b4aa651ba0f7775ad1bbfb41621b741f95dffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 5, 14, 173, 159, 89, 249, 39, 39, 159, 159, 73, 253, 62, 37, 163, 56, 122, 38, 133, 229, + 27, 119, 110, 132, 128, 85, 157, 37, 220, 27, 111, 69, 21, 1, 171, 247, 199, 242, 255, 159, 74, 191, 4, 76, 87, + 44, 47, 245, 36, 128, 235, 255, 191, 27, 210, 24, 214, 37, 57, 116, 92, 155, 67, 22, 152, 12, 255, 216, 102, 159, + 27, 236, 64, 89, 8, 175, 95, 165, 0, 128, 255, 216, 102, 159, 27, 242, 102, 44, 242, 206, 93, 230, 208, 128, 255, + 255, 255, 191, 27, 149, 98, 61, 244, 129, 172, 139, 101, 65, 68, 27, 222, 150, 26, 78, 94, 191, 227, 239, 66, 157, + 53, 76, 155, 110, 86, 24, 48, 161, 53, 211, 95, 66, 68, 30, 27, 123, 186, 0, 152, 189, 247, 238, 74, 255, 159, 70, + 125, 172, 161, 32, 32, 59, 67, 105, 33, 152, 75, 130, 135, 111, 210, 13, 192, 197, 44, 133, 56, 30, 68, 63, 118, + 27, 117, 191, 76, 48, 143, 70, 92, 118, 88, 14, 144, 254, 66, 231, 143, 68, 73, 114, 100, 136, 68, 61, 83, 48, 25, + 71, 119, 47, 240, 52, 180, 231, 4, 65, 156, 76, 51, 75, 58, 28, 55, 165, 180, 139, 168, 48, 52, 55, 74, 250, 93, + 197, 67, 123, 85, 73, 28, 136, 184, 65, 76, 255, 255, 159, 27, 36, 183, 33, 247, 156, 219, 104, 236, 66, 170, 83, + 159, 27, 19, 33, 228, 10, 56, 101, 103, 243, 27, 242, 149, 93, 47, 14, 251, 119, 62, 255, 160, 191, 27, 74, 166, + 81, 186, 15, 119, 117, 173, 27, 191, 180, 22, 33, 183, 65, 249, 93, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 311, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10575853438003470126" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "46659a" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13820993222992672013" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2f9f0fb657b7adea6751" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10649809391960266897" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12875467685972379917" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3740596846055348620" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6736906979932499078" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "364ac6316b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8642317380130681330" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc312000939c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10455690521110065596" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2715598824106860309" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17026024295168428053" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0705e03d8400" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28e7dead284b8bacf9690992" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e21a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e207f55" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c83b9c574ed73bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9eabd964aab6b962b8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02043502" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b229f8b3" + } + ] + }, + "cborHex": "9fd87b9f1b92c4faab28ca5f2e9f4346659affffd8669f1bffffffffffffffed9fbf1bbfce081c0b8f350d02ff9f4a2f9f0fb657b7adea67511b93cbb937856918911bb2aed9a4ab67890dffffffd8669f1b33e945035113598c9fbf1b5d7e4d345fb9ec8645364ac6316b1b77efadde46dfb1f246fc312000939c1b911a1321e02f31bc1b25afbebe1f5b9f15ff139f1bec4896e382af4815ffffffbf460705e03d840041c64c28e7dead284b8bacf969099242e21a444e207f55410e488c83b9c574ed73bc499eabd964aab6b962b841fe4402043502ff44b229f8b3ff", + "cborBytes": [ + 159, 216, 123, 159, 27, 146, 196, 250, 171, 40, 202, 95, 46, 159, 67, 70, 101, 154, 255, 255, 216, 102, 159, 27, + 255, 255, 255, 255, 255, 255, 255, 237, 159, 191, 27, 191, 206, 8, 28, 11, 143, 53, 13, 2, 255, 159, 74, 47, 159, + 15, 182, 87, 183, 173, 234, 103, 81, 27, 147, 203, 185, 55, 133, 105, 24, 145, 27, 178, 174, 217, 164, 171, 103, + 137, 13, 255, 255, 255, 216, 102, 159, 27, 51, 233, 69, 3, 81, 19, 89, 140, 159, 191, 27, 93, 126, 77, 52, 95, + 185, 236, 134, 69, 54, 74, 198, 49, 107, 27, 119, 239, 173, 222, 70, 223, 177, 242, 70, 252, 49, 32, 0, 147, 156, + 27, 145, 26, 19, 33, 224, 47, 49, 188, 27, 37, 175, 190, 190, 31, 91, 159, 21, 255, 19, 159, 27, 236, 72, 150, + 227, 130, 175, 72, 21, 255, 255, 255, 191, 70, 7, 5, 224, 61, 132, 0, 65, 198, 76, 40, 231, 222, 173, 40, 75, 139, + 172, 249, 105, 9, 146, 66, 226, 26, 68, 78, 32, 127, 85, 65, 14, 72, 140, 131, 185, 197, 116, 237, 115, 188, 73, + 158, 171, 217, 100, 170, 182, 185, 98, 184, 65, 254, 68, 2, 4, 53, 2, 255, 68, 178, 41, 248, 179, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 312, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13271208735337337835" + } + } + ] + }, + "cborHex": "9f1bb82cce07e9d7d3ebff", + "cborBytes": [159, 27, 184, 44, 206, 7, 233, 215, 211, 235, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 313, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16880526435687688989" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bef1d4686a80e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "677990789970383660" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14721465722937537049" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14953746607942684384" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17212049777815428675" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "418c8a28306f14d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8061775704608828736" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11215227129310495360" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fbf41ac1bea43ad5b3cc16b1dff80bf47bef1d4686a80e51b0968b508052bd32cff9f80d8669f1bcc4d2713ccc7f2199f1bcf86614fc3a04ee01beedd7c145f079e43ffff48418c8a28306f14d61b6fe12e4a4c156d40d8669f1b9ba47da73de0428080ffffff", + "cborBytes": [ + 159, 191, 65, 172, 27, 234, 67, 173, 91, 60, 193, 107, 29, 255, 128, 191, 71, 190, 241, 212, 104, 106, 128, 229, + 27, 9, 104, 181, 8, 5, 43, 211, 44, 255, 159, 128, 216, 102, 159, 27, 204, 77, 39, 19, 204, 199, 242, 25, 159, 27, + 207, 134, 97, 79, 195, 160, 78, 224, 27, 238, 221, 124, 20, 95, 7, 158, 67, 255, 255, 72, 65, 140, 138, 40, 48, + 111, 20, 214, 27, 111, 225, 46, 74, 76, 21, 109, 64, 216, 102, 159, 27, 155, 164, 125, 167, 61, 224, 66, 128, 128, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 314, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14161226506605520912" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5358366767696980986" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14319651794699680755" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "90322f01f6683881eca91571" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11270267503164031262" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f32357995a2aad4da7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14843317114137734437" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5a002bd4f2" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7c30fbc1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15267902215616442590" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9f1bc486c87a76116810a0ff1b4a5cbe2f74d62bfad8669f1bc6b99f70425bfbf39f4c90322f01f6683881eca91571d8669f1b9c680894e9b8811e9f49f32357995a2aad4da71bcdfe0e45a4a7ed25455a002bd4f2ffffffffd9050a9f9f447c30fbc11bd3e27c2c1b37b0deffff80ff", + "cborBytes": [ + 159, 159, 27, 196, 134, 200, 122, 118, 17, 104, 16, 160, 255, 27, 74, 92, 190, 47, 116, 214, 43, 250, 216, 102, + 159, 27, 198, 185, 159, 112, 66, 91, 251, 243, 159, 76, 144, 50, 47, 1, 246, 104, 56, 129, 236, 169, 21, 113, 216, + 102, 159, 27, 156, 104, 8, 148, 233, 184, 129, 30, 159, 73, 243, 35, 87, 153, 90, 42, 173, 77, 167, 27, 205, 254, + 14, 69, 164, 167, 237, 37, 69, 90, 0, 43, 212, 242, 255, 255, 255, 255, 217, 5, 10, 159, 159, 68, 124, 48, 251, + 193, 27, 211, 226, 124, 44, 27, 55, 176, 222, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 315, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "18" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "97" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c8d1917700448352" + } + ] + } + ] + }, + "cborHex": "9f41188041979f48c8d1917700448352ffff", + "cborBytes": [159, 65, 24, 128, 65, 151, 159, 72, 200, 209, 145, 119, 0, 68, 131, 82, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 316, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15705862484054074642" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "edc7226a570c38eb75e22eaa" + }, + { + "_tag": "ByteArray", + "bytearray": "05c9fecc7e" + }, + { + "_tag": "ByteArray", + "bytearray": "8eb7e6b0" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8047750231931626598" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c86552966b9f4ae5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16303036302811292076" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff9e9c" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f4105ffd8669f1bd9f66eb74d2d65129f9f4cedc7226a570c38eb75e22eaa4505c9fecc7e448eb7e6b0ffbf1b6faf5a32775a246648c86552966b9f4ae51be2400523e55d61ac43ff9e9cffffffff", + "cborBytes": [ + 159, 159, 65, 5, 255, 216, 102, 159, 27, 217, 246, 110, 183, 77, 45, 101, 18, 159, 159, 76, 237, 199, 34, 106, 87, + 12, 56, 235, 117, 226, 46, 170, 69, 5, 201, 254, 204, 126, 68, 142, 183, 230, 176, 255, 191, 27, 111, 175, 90, 50, + 119, 90, 36, 102, 72, 200, 101, 82, 150, 107, 159, 74, 229, 27, 226, 64, 5, 35, 229, 93, 97, 172, 67, 255, 158, + 156, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 317, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13864439639317932479" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c3a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "505e67ae6d9fe14c3a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b577a2bf8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1bf85535c88e73" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bfaf5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6637196389257881791" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "03c1d6011d151c7ae7dc" + } + ] + } + ] + }, + "cborHex": "9f9f1bc06862651f63e9bf80bf420c3a49505e67ae6d9fe14c3a453b577a2bf8471bf85535c88e73436bfaf51b5c1c0ef35e38a8bf41fd415fff4a03c1d6011d151c7ae7dcffff", + "cborBytes": [ + 159, 159, 27, 192, 104, 98, 101, 31, 99, 233, 191, 128, 191, 66, 12, 58, 73, 80, 94, 103, 174, 109, 159, 225, 76, + 58, 69, 59, 87, 122, 43, 248, 71, 27, 248, 85, 53, 200, 142, 115, 67, 107, 250, 245, 27, 92, 28, 14, 243, 94, 56, + 168, 191, 65, 253, 65, 95, 255, 74, 3, 193, 214, 1, 29, 21, 28, 122, 231, 220, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 318, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1663934950740371500" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4064fd01" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9082663287889416325" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9509471911081993677" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15246970944505771786" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "594862217816784935" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "338853434271080001" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19807c4dd1d946d988cb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6211327218023065867" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15885250703668317461" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18cfcd9b8237ce2acb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2fc1e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "23" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17145456461131967471" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15505452213433989091" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1fccbb" + }, + { + "_tag": "ByteArray", + "bytearray": "a0ca271d8a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3332045051492637809" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c12c5dc16b83" + }, + { + "_tag": "ByteArray", + "bytearray": "bca8201985a6c78d54055b" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16268917612189247560" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16135123940976823775" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6868e0f9ceddab9fd1cff3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4190194891644592910" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b8cce4bf9cdec90f01e7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0bb1b0ad1398aa16e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ff319" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "318e8c58eed82831eea4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1234825243088664068" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "539e3bab05508433616a24" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2362492273866392235" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f72777f50c24" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f627b" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b17177c05943ca82c9fbf06444064fd011b7e0c1a236921508541f91b83f86e51dd98e5cd1bd3981f4ac7f7f70aff1b084160090f454027bf1b04b3d96734a61e414a19807c4dd1d946d988cb1b563311321dfae90b1bdc73bf59f02c8d154918cfcd9b8237ce2acb43c2fc1e41231bedf0e5cf95b26befffd8669f1bd72e6ea2ff86f7e39f431fccbb45a0ca271d8a1b2e3dcd5205d11c7146c12c5dc16b834bbca8201985a6c78d54055bffff9f1be1c6ce5f32a2e8481bdfeb79bc9cd30ddf4b6868e0f9ceddab9fd1cff31b3a26900da821e30effffffa04ab8cce4bf9cdec90f01e7d9050c9f05ffbf490bb1b0ad1398aa16e2438ff3194a318e8c58eed82831eea41b1122fb0425fc36044b539e3bab05508433616a241b20c94234c06942ab46f72777f50c24436f627bffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 23, 23, 124, 5, 148, 60, 168, 44, 159, 191, 6, 68, 64, 100, 253, 1, 27, 126, 12, 26, 35, + 105, 33, 80, 133, 65, 249, 27, 131, 248, 110, 81, 221, 152, 229, 205, 27, 211, 152, 31, 74, 199, 247, 247, 10, + 255, 27, 8, 65, 96, 9, 15, 69, 64, 39, 191, 27, 4, 179, 217, 103, 52, 166, 30, 65, 74, 25, 128, 124, 77, 209, 217, + 70, 217, 136, 203, 27, 86, 51, 17, 50, 29, 250, 233, 11, 27, 220, 115, 191, 89, 240, 44, 141, 21, 73, 24, 207, + 205, 155, 130, 55, 206, 42, 203, 67, 194, 252, 30, 65, 35, 27, 237, 240, 229, 207, 149, 178, 107, 239, 255, 216, + 102, 159, 27, 215, 46, 110, 162, 255, 134, 247, 227, 159, 67, 31, 204, 187, 69, 160, 202, 39, 29, 138, 27, 46, 61, + 205, 82, 5, 209, 28, 113, 70, 193, 44, 93, 193, 107, 131, 75, 188, 168, 32, 25, 133, 166, 199, 141, 84, 5, 91, + 255, 255, 159, 27, 225, 198, 206, 95, 50, 162, 232, 72, 27, 223, 235, 121, 188, 156, 211, 13, 223, 75, 104, 104, + 224, 249, 206, 221, 171, 159, 209, 207, 243, 27, 58, 38, 144, 13, 168, 33, 227, 14, 255, 255, 255, 160, 74, 184, + 204, 228, 191, 156, 222, 201, 15, 1, 231, 217, 5, 12, 159, 5, 255, 191, 73, 11, 177, 176, 173, 19, 152, 170, 22, + 226, 67, 143, 243, 25, 74, 49, 142, 140, 88, 238, 216, 40, 49, 238, 164, 27, 17, 34, 251, 4, 37, 252, 54, 4, 75, + 83, 158, 59, 171, 5, 80, 132, 51, 97, 106, 36, 27, 32, 201, 66, 52, 192, 105, 66, 171, 70, 247, 39, 119, 245, 12, + 36, 67, 111, 98, 123, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 319, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd9050080ff", + "cborBytes": [159, 217, 5, 0, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 320, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9978351985569595629" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15865166676877045382" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11671208787892903651" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2094990334042718985" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12126890614429730208" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15477508677738091813" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "049d85" + } + ] + }, + "cborHex": "9fbf1b8a7a3a4367b080ed1bdc2c65090d9eee861ba1f8768e4dc61ee31b1d12e69bec7e43091ba84b5ec3471a45a01bd6cb2823989ad525ff43049d85ff", + "cborBytes": [ + 159, 191, 27, 138, 122, 58, 67, 103, 176, 128, 237, 27, 220, 44, 101, 9, 13, 158, 238, 134, 27, 161, 248, 118, + 142, 77, 198, 30, 227, 27, 29, 18, 230, 155, 236, 126, 67, 9, 27, 168, 75, 94, 195, 71, 26, 69, 160, 27, 214, 203, + 40, 35, 152, 154, 213, 37, 255, 67, 4, 157, 133, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 321, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "89" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "577567278856617985" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "095561fac5eb1c0ace0c56" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6638952993117665196" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9983360943175145675" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8888951500964915639" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4ed93787820bc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10080880542577135151" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1321575441551448715" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17739532171520094753" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "821193dbedd0e1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17917911947469976151" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2849891953730786341" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + "cborHex": "9f9f4189ffbf1b0803ee614a2340014b095561fac5eb1c0ace0c561b5c224c92934b77ac1b8a8c05e23a7698cb1b7b5be64b60b069b747e4ed93787820bc1b8be67b7153750e2f1b12572ddcb18dda8b1bf62f7a859d11b22147821193dbedd0e11bf8a935fba9acf2571b278cd9a1ee5e1425ffa00fff", + "cborBytes": [ + 159, 159, 65, 137, 255, 191, 27, 8, 3, 238, 97, 74, 35, 64, 1, 75, 9, 85, 97, 250, 197, 235, 28, 10, 206, 12, 86, + 27, 92, 34, 76, 146, 147, 75, 119, 172, 27, 138, 140, 5, 226, 58, 118, 152, 203, 27, 123, 91, 230, 75, 96, 176, + 105, 183, 71, 228, 237, 147, 120, 120, 32, 188, 27, 139, 230, 123, 113, 83, 117, 14, 47, 27, 18, 87, 45, 220, 177, + 141, 218, 139, 27, 246, 47, 122, 133, 157, 17, 178, 33, 71, 130, 17, 147, 219, 237, 208, 225, 27, 248, 169, 53, + 251, 169, 172, 242, 87, 27, 39, 140, 217, 161, 238, 94, 20, 37, 255, 160, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 322, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5941598873460320651" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b5274ccb20a76a98b80ffff", + "cborBytes": [159, 216, 102, 159, 27, 82, 116, 204, 178, 10, 118, 169, 139, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 323, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3ee8ba3b85f6089af8dd1d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18076926953372042795" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12575704377317250395" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d95d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ee67dc39008ffc7424d16" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85dc6e868e362f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8371661050121308387" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc303dfe7c94534d02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a2e3f71dcae40aa5f32" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8770433367053371613" + }, + "fields": [] + } + ] + }, + "cborHex": "9f4b3ee8ba3b85f6089af8dd1dd8669f1bfade2549d66cc62b80ff1bae85e0809251d55bbf432d95d34b0ee67dc39008ffc7424d164785dc6e868e362f1b742e1d5ec07448e349dc303dfe7c94534d024a8a2e3f71dcae40aa5f32ffd8669f1b79b6d6adf97308dd80ffff", + "cborBytes": [ + 159, 75, 62, 232, 186, 59, 133, 246, 8, 154, 248, 221, 29, 216, 102, 159, 27, 250, 222, 37, 73, 214, 108, 198, 43, + 128, 255, 27, 174, 133, 224, 128, 146, 81, 213, 91, 191, 67, 45, 149, 211, 75, 14, 230, 125, 195, 144, 8, 255, + 199, 66, 77, 22, 71, 133, 220, 110, 134, 142, 54, 47, 27, 116, 46, 29, 94, 192, 116, 72, 227, 73, 220, 48, 61, + 254, 124, 148, 83, 77, 2, 74, 138, 46, 63, 113, 220, 174, 64, 170, 95, 50, 255, 216, 102, 159, 27, 121, 182, 214, + 173, 249, 115, 8, 221, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 324, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a76bce6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + ] + }, + "cborHex": "9f449a76bce61bffffffffffffffecff", + "cborBytes": [159, 68, 154, 118, 188, 230, 27, 255, 255, 255, 255, 255, 255, 255, 236, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 325, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e8157e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f43e8157e9f80ffff", + "cborBytes": [159, 67, 232, 21, 126, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 326, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d77d8e06ed70" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16289904576016488071" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12371171848399566888" + } + } + } + ] + } + ] + }, + "cborHex": "9f46d77d8e06ed70bf0f1be2115de77e7916871bfffffffffffffff11babaf3b40372b3828ffff", + "cborBytes": [ + 159, 70, 215, 125, 142, 6, 237, 112, 191, 15, 27, 226, 17, 93, 231, 126, 121, 22, 135, 27, 255, 255, 255, 255, + 255, 255, 255, 241, 27, 171, 175, 59, 64, 55, 43, 56, 40, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 327, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17534787638015679625" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5286263851506169779" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb10f0d057" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16205143779234220798" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc5c2a213d21833b7c76" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a09bae70eb2e2f95d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8202505653009904237" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f184eedf8cd8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85f5153cf5c47c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bfb3970620" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10861291783728332525" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9129245298298446802" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8525930265711733147" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8171198221967750250" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "33cfa8ae872042" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aa21475a7e696968" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2cf2605b31d9532b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10294070309547921198" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e22b4955cf223adb147" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4658972148803144390" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8248b0ad227662691b7dbb25" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4872738894498308589" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f3c2ebbed55f98dde57" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3899639731643417481" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bf358147417d5dc89bf1b495c94f7120377b345bb10f0d0571be0e43c689f630afe4acc5c2a213d21833b7c76490a09bae70eb2e2f95d1b71d5276ec3c9f26d46f184eedf8cd84785f5153cf5c47cff9f9f45bfb39706201b96bb0f54eafefeed1b7eb1983ae07be3d21b76523067837fe99b1b7165ed7d71b0f46aff9f4733cfa8ae872042ff48aa21475a7e696968bf482cf2605b31d9532b1b8edbe267fd7fcf2e4a4e22b4955cf223adb1471b40a7fe7c2bd98ac64c8248b0ad227662691b7dbb251b439f723529cd21ed4a8f3c2ebbed55f98dde571b361e4dacbc9b0389ffffff", + "cborBytes": [ + 159, 27, 243, 88, 20, 116, 23, 213, 220, 137, 191, 27, 73, 92, 148, 247, 18, 3, 119, 179, 69, 187, 16, 240, 208, + 87, 27, 224, 228, 60, 104, 159, 99, 10, 254, 74, 204, 92, 42, 33, 61, 33, 131, 59, 124, 118, 73, 10, 9, 186, 231, + 14, 178, 226, 249, 93, 27, 113, 213, 39, 110, 195, 201, 242, 109, 70, 241, 132, 238, 223, 140, 216, 71, 133, 245, + 21, 60, 245, 196, 124, 255, 159, 159, 69, 191, 179, 151, 6, 32, 27, 150, 187, 15, 84, 234, 254, 254, 237, 27, 126, + 177, 152, 58, 224, 123, 227, 210, 27, 118, 82, 48, 103, 131, 127, 233, 155, 27, 113, 101, 237, 125, 113, 176, 244, + 106, 255, 159, 71, 51, 207, 168, 174, 135, 32, 66, 255, 72, 170, 33, 71, 90, 126, 105, 105, 104, 191, 72, 44, 242, + 96, 91, 49, 217, 83, 43, 27, 142, 219, 226, 103, 253, 127, 207, 46, 74, 78, 34, 180, 149, 92, 242, 35, 173, 177, + 71, 27, 64, 167, 254, 124, 43, 217, 138, 198, 76, 130, 72, 176, 173, 34, 118, 98, 105, 27, 125, 187, 37, 27, 67, + 159, 114, 53, 41, 205, 33, 237, 74, 143, 60, 46, 187, 237, 85, 249, 141, 222, 87, 27, 54, 30, 77, 172, 188, 155, + 3, 137, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 328, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17392333168231134" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adf6" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9781132408399853842" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14474644534594708243" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4376556855162537150" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5355139964918687848" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16126691987460152074" + } + }, + { + "_tag": "ByteArray", + "bytearray": "11" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14646992765779351928" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e93" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14020383056283996737" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "555e4ea1ebc0f7a2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5568321347129185610" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99b7af42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7352423390" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e81d4499beacdf7753" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16645634622035745641" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e5288ea386cf69" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9050711730867894464" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15819085286730256420" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1076560677059764763" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12333003711653537360" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2741962993453036488" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8ece" + }, + { + "_tag": "ByteArray", + "bytearray": "9b894576fb8d278e75e22b" + }, + { + "_tag": "ByteArray", + "bytearray": "f422278e34" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11986294392941726433" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15456001166405880899" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3c9bd787b5" + } + ] + } + ] + }, + "cborHex": "9f9fbf1b003dca3c204ec2de42adf6ff9f1b87bd901a4fbbf912ffff9fd8669f1bc8e04483a69123139f1b3cbca745934384be1b4a51476ce379e8681bdfcd84eb72b35b0a41111bcb4492513ffe9978ffffbf420e931bc292681b44b6924148555e4ea1ebc0f7a21b4d46a6c352dc154a4499b7af4245735242339049e81d4499beacdf77531be7012c7f13625b69ffff47e5288ea386cf69d8669f1b7d9a965dd2d778c09f1bdb88ae41532a5024a0ffffd8669f1b0ef0b63b5f4d221b9fd8669f1bab27a1885eaee65080ffd8669f1b260d68d0a408f3c89f428ece4b9b894576fb8d278e75e22b45f422278e341ba657df3e888c4ae11bd67ebf2be3a54c43ffff453c9bd787b5ffffff", + "cborBytes": [ + 159, 159, 191, 27, 0, 61, 202, 60, 32, 78, 194, 222, 66, 173, 246, 255, 159, 27, 135, 189, 144, 26, 79, 187, 249, + 18, 255, 255, 159, 216, 102, 159, 27, 200, 224, 68, 131, 166, 145, 35, 19, 159, 27, 60, 188, 167, 69, 147, 67, + 132, 190, 27, 74, 81, 71, 108, 227, 121, 232, 104, 27, 223, 205, 132, 235, 114, 179, 91, 10, 65, 17, 27, 203, 68, + 146, 81, 63, 254, 153, 120, 255, 255, 191, 66, 14, 147, 27, 194, 146, 104, 27, 68, 182, 146, 65, 72, 85, 94, 78, + 161, 235, 192, 247, 162, 27, 77, 70, 166, 195, 82, 220, 21, 74, 68, 153, 183, 175, 66, 69, 115, 82, 66, 51, 144, + 73, 232, 29, 68, 153, 190, 172, 223, 119, 83, 27, 231, 1, 44, 127, 19, 98, 91, 105, 255, 255, 71, 229, 40, 142, + 163, 134, 207, 105, 216, 102, 159, 27, 125, 154, 150, 93, 210, 215, 120, 192, 159, 27, 219, 136, 174, 65, 83, 42, + 80, 36, 160, 255, 255, 216, 102, 159, 27, 14, 240, 182, 59, 95, 77, 34, 27, 159, 216, 102, 159, 27, 171, 39, 161, + 136, 94, 174, 230, 80, 128, 255, 216, 102, 159, 27, 38, 13, 104, 208, 164, 8, 243, 200, 159, 66, 142, 206, 75, + 155, 137, 69, 118, 251, 141, 39, 142, 117, 226, 43, 69, 244, 34, 39, 142, 52, 27, 166, 87, 223, 62, 136, 140, 74, + 225, 27, 214, 126, 191, 43, 227, 165, 76, 67, 255, 255, 69, 60, 155, 215, 135, 181, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 329, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ca27f31ad5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1155254499227741725" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1e31817cb6" + }, + { + "_tag": "ByteArray", + "bytearray": "e9aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13563794921296010379" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1786338269845919596" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15665768996079665898" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8388526407585911533" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f59440f298" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2617bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "958d0d7ff2ffd2c5c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27ebe5a4e0abf48f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b60a24fe4f786e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "489641fa70a89d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37d7fd433d53f3327632413c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0eb2758f557" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14409600432368712785" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5924e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a2c05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d66129da8fe262f0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14253740351567811143" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13307066066993105303" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3824112683029687231" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12322342114838105570" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "16522d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4768691778901417681" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bb14e14c23b4670e90d903df" + } + ] + }, + "cborHex": "9f9f45ca27f31ad5d8669f1b100849d8a3a42e1d9f451e31817cb642e9aa1bbc3c479dea189c8b1b18ca593126da176cffff1bd967fde6b0a802ea1b746a0852c92452ed80ffd905029f45f59440f298bf432617bc49958d0d7ff2ffd2c5c04827ebe5a4e0abf48f47b60a24fe4f786e47489641fa70a89d4c37d7fd433d53f3327632413c46a0eb2758f5571bc7f92f3f76a6fc5143b5924e434a2c0548d66129da8fe262f01bc5cf755487d9d247ff9f1bb8ac321585c74997ffffbf1b3511fa39650cebbf1bab01c0ddebc2cde24316522d1b422dcbe844be9ed1ff4cbb14e14c23b4670e90d903dfff", + "cborBytes": [ + 159, 159, 69, 202, 39, 243, 26, 213, 216, 102, 159, 27, 16, 8, 73, 216, 163, 164, 46, 29, 159, 69, 30, 49, 129, + 124, 182, 66, 233, 170, 27, 188, 60, 71, 157, 234, 24, 156, 139, 27, 24, 202, 89, 49, 38, 218, 23, 108, 255, 255, + 27, 217, 103, 253, 230, 176, 168, 2, 234, 27, 116, 106, 8, 82, 201, 36, 82, 237, 128, 255, 217, 5, 2, 159, 69, + 245, 148, 64, 242, 152, 191, 67, 38, 23, 188, 73, 149, 141, 13, 127, 242, 255, 210, 197, 192, 72, 39, 235, 229, + 164, 224, 171, 244, 143, 71, 182, 10, 36, 254, 79, 120, 110, 71, 72, 150, 65, 250, 112, 168, 157, 76, 55, 215, + 253, 67, 61, 83, 243, 50, 118, 50, 65, 60, 70, 160, 235, 39, 88, 245, 87, 27, 199, 249, 47, 63, 118, 166, 252, 81, + 67, 181, 146, 78, 67, 74, 44, 5, 72, 214, 97, 41, 218, 143, 226, 98, 240, 27, 197, 207, 117, 84, 135, 217, 210, + 71, 255, 159, 27, 184, 172, 50, 21, 133, 199, 73, 151, 255, 255, 191, 27, 53, 17, 250, 57, 101, 12, 235, 191, 27, + 171, 1, 192, 221, 235, 194, 205, 226, 67, 22, 82, 45, 27, 66, 45, 203, 232, 68, 190, 158, 209, 255, 76, 187, 20, + 225, 76, 35, 180, 103, 14, 144, 217, 3, 223, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 330, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2a1c59516b0ef59e633a" + }, + { + "_tag": "ByteArray", + "bytearray": "d3af85ab9a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8bc48e8156a03ecd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "685404145654627993" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ed" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "13ae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + "cborHex": "9fd87d9f4a2a1c59516b0ef59e633a45d3af85ab9aff9f9f488bc48e8156a03ecd1b09830b706552fe99ff9f41edffff804213ae0fff", + "cborBytes": [ + 159, 216, 125, 159, 74, 42, 28, 89, 81, 107, 14, 245, 158, 99, 58, 69, 211, 175, 133, 171, 154, 255, 159, 159, 72, + 139, 196, 142, 129, 86, 160, 62, 205, 27, 9, 131, 11, 112, 101, 82, 254, 153, 255, 159, 65, 237, 255, 255, 128, + 66, 19, 174, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 331, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6090489953142481087" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "09" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12526789705055386247" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8593115383540251973" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7c9d76c44f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b1de650557b18630731756" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6979473878018026065" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18277616819448317804" + } + }, + { + "_tag": "ByteArray", + "bytearray": "853c5f32fdaf52" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6401526696530785996" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b5485c457f524a0bf9f41091badd818ddf1d8ba871b7740e0e9bddc7d45457c9d76c44f9f4bb1de650557b186307317561b60dc12836261ea511bfda723a887ec076c47853c5f32fdaf521b58d6ca9d1ee5b6ccffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 84, 133, 196, 87, 245, 36, 160, 191, 159, 65, 9, 27, 173, 216, 24, 221, 241, 216, 186, + 135, 27, 119, 64, 224, 233, 189, 220, 125, 69, 69, 124, 157, 118, 196, 79, 159, 75, 177, 222, 101, 5, 87, 177, + 134, 48, 115, 23, 86, 27, 96, 220, 18, 131, 98, 97, 234, 81, 27, 253, 167, 35, 168, 135, 236, 7, 108, 71, 133, 60, + 95, 50, 253, 175, 82, 27, 88, 214, 202, 157, 30, 229, 182, 204, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 332, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10093870101504393439" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7606704726232352985" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18445656576959124022" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7521290051559802644" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f3d23f7a" + }, + { + "_tag": "ByteArray", + "bytearray": "cabb0b85e8f5ca" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3011779167053518612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5bfee3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5664278316770668778" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4799054911676425655" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05d5e9eadf" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7368828478de268e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8df7a5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13354286505229669196" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15735449984667031496" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3158071485593696288" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10335874316858541309" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9646872996149585101" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a444e7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4141109203339423429" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14519757591743910569" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11306137782368192784" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "437841847373768395" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2fdfc37de3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4190278083847674199" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91ef23e032072b6de51fd4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6515007415842621580" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6982969750037014672" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8181723125182735704" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14484191638405411586" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "994ff1e0e689976bf429" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14561159552265584292" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6330044526320616429" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c1501e617f7e" + }, + { + "_tag": "ByteArray", + "bytearray": "2467bb49eb8046e21705a2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4854299939893666826" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17542640434690999708" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3518381764403099120" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15647936444903353708" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15146767647181926768" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10495658030996997847" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15265700126506309907" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17788790677803983351" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fedba2861254055c8b2a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c4bc3d8dd95967" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "512f6cdbb6da455e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7711902585794327512" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15771718330892738179" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16946561322886014421" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b69d4075acd2a88d9" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14593915113840862100" + } + } + ] + }, + "cborHex": "9f9fd8669f1b8c14a160b11b00df9f1b699071a57e5d48d9ffff1bfffc22ed6e7f1236d8669f1b6860fd73cfe6c7149f44f3d23f7a47cabb0b85e8f5caffffd8669f1b29cbfd32022597149f435bfee31b4e9b8f1e541030ea1b4299ab04041125b74505d5e9eadfffff487368828478de268eff9f9f438df7a51bb953f4d28d01d34c1bda5f8c641d0117c81b2bd3b948b21a3820ffd8669f1b8f7066edeb6fc4fd80ff9f1b85e093e0f0cde4cd43a444e71b39782ce14125aec51bc9808a99c8ad52a91b9ce778691badc910ffbf1b061386d72483a6cb452fdfc37de31b3a26dbb759d859574b91ef23e032072b6de51fd41b5a69f4ba0a55c88c41771b60e87dfd844128901b718b51d56f1da5581bc9022f8df9d673024a994ff1e0e689976bf4291bca13a176e6937ea41b57d8d5f56bbf03edff9f46c1501e617f7e4b2467bb49eb8046e21705a21b435df0137e8fe40affff9f9f1bf373fa87cc29459cff9f1b30d3cd92d37575f01bd928a34a525a6d6cffd8669f1bd23420ec91a871709f1b91a8115eed8d46d7ffff1bd3daa962480b5913415affd8669f1bf6de7adf564961f79f4afedba2861254055c8b2a9f47c4bc3d8dd95967ff9f48512f6cdbb6da455e1b6b062e8ad8aff3d81bdae066428260de831beb2e47bc86fea5d5494b69d4075acd2a88d9ffffff1bca88007962b06394ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 140, 20, 161, 96, 177, 27, 0, 223, 159, 27, 105, 144, 113, 165, 126, 93, 72, 217, + 255, 255, 27, 255, 252, 34, 237, 110, 127, 18, 54, 216, 102, 159, 27, 104, 96, 253, 115, 207, 230, 199, 20, 159, + 68, 243, 210, 63, 122, 71, 202, 187, 11, 133, 232, 245, 202, 255, 255, 216, 102, 159, 27, 41, 203, 253, 50, 2, 37, + 151, 20, 159, 67, 91, 254, 227, 27, 78, 155, 143, 30, 84, 16, 48, 234, 27, 66, 153, 171, 4, 4, 17, 37, 183, 69, 5, + 213, 233, 234, 223, 255, 255, 72, 115, 104, 130, 132, 120, 222, 38, 142, 255, 159, 159, 67, 141, 247, 165, 27, + 185, 83, 244, 210, 141, 1, 211, 76, 27, 218, 95, 140, 100, 29, 1, 23, 200, 27, 43, 211, 185, 72, 178, 26, 56, 32, + 255, 216, 102, 159, 27, 143, 112, 102, 237, 235, 111, 196, 253, 128, 255, 159, 27, 133, 224, 147, 224, 240, 205, + 228, 205, 67, 164, 68, 231, 27, 57, 120, 44, 225, 65, 37, 174, 197, 27, 201, 128, 138, 153, 200, 173, 82, 169, 27, + 156, 231, 120, 105, 27, 173, 201, 16, 255, 191, 27, 6, 19, 134, 215, 36, 131, 166, 203, 69, 47, 223, 195, 125, + 227, 27, 58, 38, 219, 183, 89, 216, 89, 87, 75, 145, 239, 35, 224, 50, 7, 43, 109, 229, 31, 212, 27, 90, 105, 244, + 186, 10, 85, 200, 140, 65, 119, 27, 96, 232, 125, 253, 132, 65, 40, 144, 27, 113, 139, 81, 213, 111, 29, 165, 88, + 27, 201, 2, 47, 141, 249, 214, 115, 2, 74, 153, 79, 241, 224, 230, 137, 151, 107, 244, 41, 27, 202, 19, 161, 118, + 230, 147, 126, 164, 27, 87, 216, 213, 245, 107, 191, 3, 237, 255, 159, 70, 193, 80, 30, 97, 127, 126, 75, 36, 103, + 187, 73, 235, 128, 70, 226, 23, 5, 162, 27, 67, 93, 240, 19, 126, 143, 228, 10, 255, 255, 159, 159, 27, 243, 115, + 250, 135, 204, 41, 69, 156, 255, 159, 27, 48, 211, 205, 146, 211, 117, 117, 240, 27, 217, 40, 163, 74, 82, 90, + 109, 108, 255, 216, 102, 159, 27, 210, 52, 32, 236, 145, 168, 113, 112, 159, 27, 145, 168, 17, 94, 237, 141, 70, + 215, 255, 255, 27, 211, 218, 169, 98, 72, 11, 89, 19, 65, 90, 255, 216, 102, 159, 27, 246, 222, 122, 223, 86, 73, + 97, 247, 159, 74, 254, 219, 162, 134, 18, 84, 5, 92, 139, 42, 159, 71, 196, 188, 61, 141, 217, 89, 103, 255, 159, + 72, 81, 47, 108, 219, 182, 218, 69, 94, 27, 107, 6, 46, 138, 216, 175, 243, 216, 27, 218, 224, 102, 66, 130, 96, + 222, 131, 27, 235, 46, 71, 188, 134, 254, 165, 213, 73, 75, 105, 212, 7, 90, 205, 42, 136, 217, 255, 255, 255, 27, + 202, 136, 0, 121, 98, 176, 99, 148, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 333, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "22" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f412280ff", + "cborBytes": [159, 65, 34, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 334, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11409978066758338641" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13327743764798845144" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4984208650210323906" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4846859104529744693" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14636722240861979381" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "91df5f6aa12fada0a474" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17267561008258697208" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4340963058727857380" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6" + }, + { + "_tag": "ByteArray", + "bytearray": "6cbeac9bc2af" + }, + { + "_tag": "ByteArray", + "bytearray": "5edae136b80072cae0" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4971386587939516233" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1871850153641350468" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14271915953511653177" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13380991033247894659" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7577959068845346232" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8446" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6641544508922372979" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14063591127219737552" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16438785583148807638" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f4289a08ea47bd391c" + }, + { + "_tag": "ByteArray", + "bytearray": "287742" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5694571553955659798" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "366b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3340271739282548873" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f1b9e5862995c2108511bb8f5a857364330d8d8669f1b452b775c22372dc29f1b434380ad01dd0335d8669f1bcb20155452a342f59f4a91df5f6aa12fada0a474ffff1befa2b33fe2a547f8ffff9f9f1b3c3e32e70a912ce441d6466cbeac9bc2af495edae136b80072cae0ffd8669f1b44fde9c31f46af499f1b19fa25cc188d95441bc61007f1a14adf391bb9b2d472ff6d8c83ffff9f1b692a519f94fa0db84284461b5c2b818ade43a373ff1bc32be99e3c4493d09f1be4224c643665b5d649f4289a08ea47bd391c432877421b4f072ea83d924016ffff9f42366b1b2e5b07730936688980ffff", + "cborBytes": [ + 159, 27, 158, 88, 98, 153, 92, 33, 8, 81, 27, 184, 245, 168, 87, 54, 67, 48, 216, 216, 102, 159, 27, 69, 43, 119, + 92, 34, 55, 45, 194, 159, 27, 67, 67, 128, 173, 1, 221, 3, 53, 216, 102, 159, 27, 203, 32, 21, 84, 82, 163, 66, + 245, 159, 74, 145, 223, 95, 106, 161, 47, 173, 160, 164, 116, 255, 255, 27, 239, 162, 179, 63, 226, 165, 71, 248, + 255, 255, 159, 159, 27, 60, 62, 50, 231, 10, 145, 44, 228, 65, 214, 70, 108, 190, 172, 155, 194, 175, 73, 94, 218, + 225, 54, 184, 0, 114, 202, 224, 255, 216, 102, 159, 27, 68, 253, 233, 195, 31, 70, 175, 73, 159, 27, 25, 250, 37, + 204, 24, 141, 149, 68, 27, 198, 16, 7, 241, 161, 74, 223, 57, 27, 185, 178, 212, 114, 255, 109, 140, 131, 255, + 255, 159, 27, 105, 42, 81, 159, 148, 250, 13, 184, 66, 132, 70, 27, 92, 43, 129, 138, 222, 67, 163, 115, 255, 27, + 195, 43, 233, 158, 60, 68, 147, 208, 159, 27, 228, 34, 76, 100, 54, 101, 181, 214, 73, 244, 40, 154, 8, 234, 71, + 189, 57, 28, 67, 40, 119, 66, 27, 79, 7, 46, 168, 61, 146, 64, 22, 255, 255, 159, 66, 54, 107, 27, 46, 91, 7, 115, + 9, 54, 104, 137, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 335, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c46ec69f0023329a0b8977b6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7437208439672995420" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "53f673c0456bd5" + }, + { + "_tag": "ByteArray", + "bytearray": "2751ea4e" + }, + { + "_tag": "ByteArray", + "bytearray": "6c33ff59fb15" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11879525580586090031" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5515592604815556553" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e3346d60d2a7ae" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "312888450655574657" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14951350368200451938" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "45777191865dc3" + }, + { + "_tag": "ByteArray", + "bytearray": "c8c22318add5a617bb70" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11190671384002033592" + } + }, + { + "_tag": "ByteArray", + "bytearray": "76eeb1cf2a0f6c5f679e6b75" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6888603205574484264" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eafa74c3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8040085604957035046" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1444038709954692840" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8374520968205833831" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f4cc46ec69f0023329a0b8977b6d8669f1b673645abff3efe5c9f4753f673c0456bd5442751ea4e466c33ff59fb151ba4dc8d933afffe2f1b4c8b52404fcd7fc9ffffffd905089f47e3346d60d2a7aed8669f1b04579a635ba5da8180ff1bcf7dddf1b8fe67629f4745777191865dc34ac8c22318add5a617bb701b9b4d40554191f7b84c76eeb1cf2a0f6c5f679e6b75ff9f1b5f993c1e3ae2612844eafa74c31b6f941f426f321a261b140a418e4cc346e81b7438467351f81667ffffff", + "cborBytes": [ + 159, 159, 76, 196, 110, 198, 159, 0, 35, 50, 154, 11, 137, 119, 182, 216, 102, 159, 27, 103, 54, 69, 171, 255, 62, + 254, 92, 159, 71, 83, 246, 115, 192, 69, 107, 213, 68, 39, 81, 234, 78, 70, 108, 51, 255, 89, 251, 21, 27, 164, + 220, 141, 147, 58, 255, 254, 47, 27, 76, 139, 82, 64, 79, 205, 127, 201, 255, 255, 255, 217, 5, 8, 159, 71, 227, + 52, 109, 96, 210, 167, 174, 216, 102, 159, 27, 4, 87, 154, 99, 91, 165, 218, 129, 128, 255, 27, 207, 125, 221, + 241, 184, 254, 103, 98, 159, 71, 69, 119, 113, 145, 134, 93, 195, 74, 200, 194, 35, 24, 173, 213, 166, 23, 187, + 112, 27, 155, 77, 64, 85, 65, 145, 247, 184, 76, 118, 238, 177, 207, 42, 15, 108, 95, 103, 158, 107, 117, 255, + 159, 27, 95, 153, 60, 30, 58, 226, 97, 40, 68, 234, 250, 116, 195, 27, 111, 148, 31, 66, 111, 50, 26, 38, 27, 20, + 10, 65, 142, 76, 195, 70, 232, 27, 116, 56, 70, 115, 81, 248, 22, 103, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 336, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b6830b59" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9156522754499057761" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "db409c05d42713c382d17b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5700075619159468360" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1b125" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17e4c0f053ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb396e0dabc6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "978908930034664802" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e42c40" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86adde2adb737019" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b36a551b9226495989" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "436438004115978262" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11010182991028385286" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11567688086408793306" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10861963063049819092" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12014733284501326161" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12425707245886573734" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13092552821936867312" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "400ffa9ae127" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18405136387634188625" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16139040541171451744" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14206999999427153318" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1398388479726524037" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11952462096662626476" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9f26218c9bac115d70" + }, + { + "_tag": "ByteArray", + "bytearray": "8acb" + }, + { + "_tag": "ByteArray", + "bytearray": "25b6b411ae300fec" + }, + { + "_tag": "ByteArray", + "bytearray": "7701625a8e3cf33d3c0f" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14477555806258360559" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11616994223736009948" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddfe5ce456196f03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecb2a2" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "559da72ff8434036" + } + ] + }, + "cborHex": "9f44b6830b59d8669f1b7f1280ee8fb298619f4bdb409c05d42713c382d17b1b4f1abc9348dd6948bf43b1b1254617e4c0f053ae46bb396e0dabc61b0d95c87c422c856243e42c404886adde2adb737019ff49b36a551b9226495989bf1b060e8a0d69d038161b98cc07188c4b76061ba088af06beea0cda1b96bd71db507f93d41ba6bce843f5c389511bac70fae7ea110ca61bb5b2176c9a95c7f046400ffa9ae1271bff6c2e07ab8d51511bdff963dd28270760ffffffd8669f1bc529673a41d48da69f1b136812e9d0191685ffffd8669f1ba5dfacf336e580ac9f9f499f26218c9bac115d70428acb4825b6b411ae300fec4a7701625a8e3cf33d3c0fff80a0bf1bc8ea9c4ce7ec70ef1ba137dab26f8cb4dc48ddfe5ce456196f0343ecb2a2ffffff48559da72ff8434036ff", + "cborBytes": [ + 159, 68, 182, 131, 11, 89, 216, 102, 159, 27, 127, 18, 128, 238, 143, 178, 152, 97, 159, 75, 219, 64, 156, 5, 212, + 39, 19, 195, 130, 209, 123, 27, 79, 26, 188, 147, 72, 221, 105, 72, 191, 67, 177, 177, 37, 70, 23, 228, 192, 240, + 83, 174, 70, 187, 57, 110, 13, 171, 198, 27, 13, 149, 200, 124, 66, 44, 133, 98, 67, 228, 44, 64, 72, 134, 173, + 222, 42, 219, 115, 112, 25, 255, 73, 179, 106, 85, 27, 146, 38, 73, 89, 137, 191, 27, 6, 14, 138, 13, 105, 208, + 56, 22, 27, 152, 204, 7, 24, 140, 75, 118, 6, 27, 160, 136, 175, 6, 190, 234, 12, 218, 27, 150, 189, 113, 219, 80, + 127, 147, 212, 27, 166, 188, 232, 67, 245, 195, 137, 81, 27, 172, 112, 250, 231, 234, 17, 12, 166, 27, 181, 178, + 23, 108, 154, 149, 199, 240, 70, 64, 15, 250, 154, 225, 39, 27, 255, 108, 46, 7, 171, 141, 81, 81, 27, 223, 249, + 99, 221, 40, 39, 7, 96, 255, 255, 255, 216, 102, 159, 27, 197, 41, 103, 58, 65, 212, 141, 166, 159, 27, 19, 104, + 18, 233, 208, 25, 22, 133, 255, 255, 216, 102, 159, 27, 165, 223, 172, 243, 54, 229, 128, 172, 159, 159, 73, 159, + 38, 33, 140, 155, 172, 17, 93, 112, 66, 138, 203, 72, 37, 182, 180, 17, 174, 48, 15, 236, 74, 119, 1, 98, 90, 142, + 60, 243, 61, 60, 15, 255, 128, 160, 191, 27, 200, 234, 156, 76, 231, 236, 112, 239, 27, 161, 55, 218, 178, 111, + 140, 180, 220, 72, 221, 254, 92, 228, 86, 25, 111, 3, 67, 236, 178, 162, 255, 255, 255, 72, 85, 157, 167, 47, 248, + 67, 64, 54, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 337, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13895432663715091833" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15252394890834893292" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3350778983333564030" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd905029fd8669f1bc0d67e62f11915799f1bd3ab6457b23259ec1b2e805bbb6e710e7effffffff", + "cborBytes": [ + 159, 217, 5, 2, 159, 216, 102, 159, 27, 192, 214, 126, 98, 241, 25, 21, 121, 159, 27, 211, 171, 100, 87, 178, 50, + 89, 236, 27, 46, 128, 91, 187, 110, 113, 14, 126, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 338, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17903341644975544970" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7033203424714664051" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9055221194004064113" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12195859707933182290" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9525c665191cb4e82fc1354" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14507352271968707419" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5337600346225851124" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1971336463316357401" + } + } + ] + }, + "cborHex": "9fbf0314061bf875725ec1399a8a1b619af540532da8731b7daa9bb3073367711ba94065c9b5db49524cc9525c665191cb4e82fc13541bc95478073226a35b1bfffffffffffffffcff1b4a12f73c2dcb3af441040f1b1b5b98119cbf1119ff", + "cborBytes": [ + 159, 191, 3, 20, 6, 27, 248, 117, 114, 94, 193, 57, 154, 138, 27, 97, 154, 245, 64, 83, 45, 168, 115, 27, 125, + 170, 155, 179, 7, 51, 103, 113, 27, 169, 64, 101, 201, 181, 219, 73, 82, 76, 201, 82, 92, 102, 81, 145, 203, 78, + 130, 252, 19, 84, 27, 201, 84, 120, 7, 50, 38, 163, 91, 27, 255, 255, 255, 255, 255, 255, 255, 252, 255, 27, 74, + 18, 247, 60, 45, 203, 58, 244, 65, 4, 15, 27, 27, 91, 152, 17, 156, 191, 17, 25, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 339, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10503402620644001136" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4752690446732087700" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1fc4dbdd746" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17483081531719524936" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fa" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7b59a7b9d29dbd5a9262" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2324353e86001ac9" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b91c39508b86485709f1b41f4f2c7ccdbd194bf46e1fc4dbdd7461bf2a062061555a248ff41fa9f4a7b59a7b9d29dbd5a9262ffffffbf1bfffffffffffffffa482324353e86001ac9ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 145, 195, 149, 8, 184, 100, 133, 112, 159, 27, 65, 244, 242, 199, 204, 219, 209, 148, 191, + 70, 225, 252, 77, 189, 215, 70, 27, 242, 160, 98, 6, 21, 85, 162, 72, 255, 65, 250, 159, 74, 123, 89, 167, 185, + 210, 157, 189, 90, 146, 98, 255, 255, 255, 191, 27, 255, 255, 255, 255, 255, 255, 255, 250, 72, 35, 36, 53, 62, + 134, 0, 26, 201, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 340, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8724019547010391731" + } + } + ] + }, + "cborHex": "9f1b7911f18e611e5eb3ff", + "cborBytes": [159, 27, 121, 17, 241, 142, 97, 30, 94, 179, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 341, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4370485385063210119" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6774657575716045943" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb0006" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12378705061245082416" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13763074221971297678" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16684195116824607345" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15232491447345299751" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7888063819138433222" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b3ca7154d48ba9c87bf1b5e046b2be376c47743fb00061babc9feab02d7db30141bbf004315c1ef558e1be78a2b0fe5a33a711bd364ae44233141271b6d780840315b80c61bfffffffffffffff806ffff", + "cborBytes": [ + 159, 27, 60, 167, 21, 77, 72, 186, 156, 135, 191, 27, 94, 4, 107, 43, 227, 118, 196, 119, 67, 251, 0, 6, 27, 171, + 201, 254, 171, 2, 215, 219, 48, 20, 27, 191, 0, 67, 21, 193, 239, 85, 142, 27, 231, 138, 43, 15, 229, 163, 58, + 113, 27, 211, 100, 174, 68, 35, 49, 65, 39, 27, 109, 120, 8, 64, 49, 91, 128, 198, 27, 255, 255, 255, 255, 255, + 255, 255, 248, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 342, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f7" + } + ] + }, + "cborHex": "9f41f7ff", + "cborBytes": [159, 65, 247, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 343, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "ByteArray", + "bytearray": "68924875c21028ea93c95e" + } + ] + } + ] + }, + "cborHex": "9fd87c9f034b68924875c21028ea93c95effff", + "cborBytes": [159, 216, 124, 159, 3, 75, 104, 146, 72, 117, 194, 16, 40, 234, 147, 201, 94, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 344, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8fd8fd5729545c0beda9" + } + ] + }, + "cborHex": "9f4a8fd8fd5729545c0beda9ff", + "cborBytes": [159, 74, 143, 216, 253, 87, 41, 84, 92, 11, 237, 169, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 345, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16079463426781938305" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2230" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3399664885824545176" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9432988629131556916" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17306891427066722334" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7331329654897537351" + } + }, + { + "_tag": "ByteArray", + "bytearray": "22" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11437551828540434747" + } + } + ] + }, + "cborHex": "9fd9050c9fd87c9f41fc1bdf25bacb443902811bfffffffffffffffd422230ff071b2f2e093392f0e198bf1b82e8b52e19af7834141bf02e6e0e9c90b81e04ffd905039f1b65be1d7a637471474122ffff1b9eba58ca1045a93bff", + "cborBytes": [ + 159, 217, 5, 12, 159, 216, 124, 159, 65, 252, 27, 223, 37, 186, 203, 68, 57, 2, 129, 27, 255, 255, 255, 255, 255, + 255, 255, 253, 66, 34, 48, 255, 7, 27, 47, 46, 9, 51, 146, 240, 225, 152, 191, 27, 130, 232, 181, 46, 25, 175, + 120, 52, 20, 27, 240, 46, 110, 14, 156, 144, 184, 30, 4, 255, 217, 5, 3, 159, 27, 101, 190, 29, 122, 99, 116, 113, + 71, 65, 34, 255, 255, 27, 158, 186, 88, 202, 16, 69, 169, 59, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 346, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "18" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "724906943592895449" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13631225058197480838" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ca5ebcf54f64246956950e" + }, + { + "_tag": "ByteArray", + "bytearray": "6626defbba6a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4600479614413223840" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5126499899063994447" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14622925891859321246" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05a03dd08598d9f09b9f25" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11801746445594458628" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1831224144752737898" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f700dbcfc3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7427607211902924658" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17298206035064445501" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16862501224061031560" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f4118d905019f041bfffffffffffffff9ffd8669f1b0a0f6306441193d99fd8669f1bbd2bd6f81743a5869f4bca5ebcf54f64246956950e466626defbba6a1b3fd82fd5bd86b7a0ffff1b4724fc7f30c9084fd8669f1bcaef119f8123119e9f4b05a03dd08598d9f09b9f251ba3c839dd2ae2fa04ffffbf1b1969d0a84c1afe6a45f700dbcfc31b67142967f49a77721bf00f92bd3388da3dffa0ffffd905039f1bea03a3859cbf548880ffff", + "cborBytes": [ + 159, 65, 24, 217, 5, 1, 159, 4, 27, 255, 255, 255, 255, 255, 255, 255, 249, 255, 216, 102, 159, 27, 10, 15, 99, 6, + 68, 17, 147, 217, 159, 216, 102, 159, 27, 189, 43, 214, 248, 23, 67, 165, 134, 159, 75, 202, 94, 188, 245, 79, + 100, 36, 105, 86, 149, 14, 70, 102, 38, 222, 251, 186, 106, 27, 63, 216, 47, 213, 189, 134, 183, 160, 255, 255, + 27, 71, 36, 252, 127, 48, 201, 8, 79, 216, 102, 159, 27, 202, 239, 17, 159, 129, 35, 17, 158, 159, 75, 5, 160, 61, + 208, 133, 152, 217, 240, 155, 159, 37, 27, 163, 200, 57, 221, 42, 226, 250, 4, 255, 255, 191, 27, 25, 105, 208, + 168, 76, 26, 254, 106, 69, 247, 0, 219, 207, 195, 27, 103, 20, 41, 103, 244, 154, 119, 114, 27, 240, 15, 146, 189, + 51, 136, 218, 61, 255, 160, 255, 255, 217, 5, 3, 159, 27, 234, 3, 163, 133, 156, 191, 84, 136, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 347, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "03" + } + ] + }, + "cborHex": "9fa04103ff", + "cborBytes": [159, 160, 65, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 348, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1700464959174924826" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6395264609996378511" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2033835050029125750" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bfe8534a8bab822378" + }, + { + "_tag": "ByteArray", + "bytearray": "1e459348" + }, + { + "_tag": "ByteArray", + "bytearray": "24" + }, + { + "_tag": "ByteArray", + "bytearray": "94f302" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12856002525911603711" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bf748ce10ab2496cab9b275c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1905368017261410623" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "31bb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9414795644922511420" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7b9a7c66de70ce" + }, + { + "_tag": "ByteArray", + "bytearray": "f38698919c95" + }, + { + "_tag": "ByteArray", + "bytearray": "09c7ae9c24a7" + }, + { + "_tag": "ByteArray", + "bytearray": "2f96b172569c1c7916af" + }, + { + "_tag": "ByteArray", + "bytearray": "a411082a1a72af" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "db0d4e02f29be930ae" + } + ] + }, + "cborHex": "9f1b179943def49eda1ad8669f1b58c08b477b76118f9fd8669f1b1c39a233c8b990769f49bfe8534a8bab822378441e45934841244394f3021bb269b22eec7c59ffffffffff4cbf748ce10ab2496cab9b275cd8669f1b1a713a1ddb41b93f9f4231bbd8669f1b82a812c1e080403c9f477b9a7c66de70ce46f38698919c954609c7ae9c24a74a2f96b172569c1c7916af47a411082a1a72afffffffff49db0d4e02f29be930aeff", + "cborBytes": [ + 159, 27, 23, 153, 67, 222, 244, 158, 218, 26, 216, 102, 159, 27, 88, 192, 139, 71, 123, 118, 17, 143, 159, 216, + 102, 159, 27, 28, 57, 162, 51, 200, 185, 144, 118, 159, 73, 191, 232, 83, 74, 139, 171, 130, 35, 120, 68, 30, 69, + 147, 72, 65, 36, 67, 148, 243, 2, 27, 178, 105, 178, 46, 236, 124, 89, 255, 255, 255, 255, 255, 76, 191, 116, 140, + 225, 10, 178, 73, 108, 171, 155, 39, 92, 216, 102, 159, 27, 26, 113, 58, 29, 219, 65, 185, 63, 159, 66, 49, 187, + 216, 102, 159, 27, 130, 168, 18, 193, 224, 128, 64, 60, 159, 71, 123, 154, 124, 102, 222, 112, 206, 70, 243, 134, + 152, 145, 156, 149, 70, 9, 199, 174, 156, 36, 167, 74, 47, 150, 177, 114, 86, 156, 28, 121, 22, 175, 71, 164, 17, + 8, 42, 26, 114, 175, 255, 255, 255, 255, 73, 219, 13, 78, 2, 242, 155, 233, 48, 174, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 349, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fd2d3ecbdca5c0" + } + ] + }, + "cborHex": "9f47fd2d3ecbdca5c0ff", + "cborBytes": [159, 71, 253, 45, 62, 203, 220, 165, 192, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 350, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1249498701074607926" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10428535791729859855" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3040150114784901946" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0fcb0a4433762324a27faf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14847216034236498817" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "936b51e531" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15426794256549476313" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15680497533183545809" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8736384351457580738" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "058e03" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fbf1b11571c72d0dd2f361b90b99a0cc1815d0f1b2a30c86c079dfb3a4b0fcb0a4433762324a27faf1bce0be851b826838145936b51e5311bd616fba444aaf7d91bd99c516d76cb51d1ff9fbf071bfffffffffffffff61b793ddf47c1e916c243058e03ff80ffff", + "cborBytes": [ + 159, 191, 27, 17, 87, 28, 114, 208, 221, 47, 54, 27, 144, 185, 154, 12, 193, 129, 93, 15, 27, 42, 48, 200, 108, 7, + 157, 251, 58, 75, 15, 203, 10, 68, 51, 118, 35, 36, 162, 127, 175, 27, 206, 11, 232, 81, 184, 38, 131, 129, 69, + 147, 107, 81, 229, 49, 27, 214, 22, 251, 164, 68, 170, 247, 217, 27, 217, 156, 81, 109, 118, 203, 81, 209, 255, + 159, 191, 7, 27, 255, 255, 255, 255, 255, 255, 255, 246, 27, 121, 61, 223, 71, 193, 233, 22, 194, 67, 5, 142, 3, + 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 351, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0405" + } + ] + }, + "cborHex": "9f420405ff", + "cborBytes": [159, 66, 4, 5, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 352, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13669361976201473737" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3584932074180924985" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "58ec9458592b8a4ce82e" + }, + { + "_tag": "ByteArray", + "bytearray": "05b9da2611fbdccf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "50391072704219592" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8789421999537309361" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15936191809574183607" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d74d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "37836036b5761164e9613a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6fc43351cb302d654118354" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47d22e0346ab1d2f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17351703730328629042" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc601876da7c27d9e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12896981909505117139" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed0403a0a20082c9ee67" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6003292040699886577" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3b9047cfb35709316efe" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "357411425241625416" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4546064470324476552" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10589619161764658644" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4731286481095880413" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "086fb5a1" + }, + { + "_tag": "ByteArray", + "bytearray": "2951b0" + }, + { + "_tag": "ByteArray", + "bytearray": "1360597828224a4cab" + }, + { + "_tag": "ByteArray", + "bytearray": "69" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16251578126821042487" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bbdb3544b41b86ec99f809f1b31c03cba49755639ff9f4a58ec9458592b8a4ce82e4805b9da2611fbdccf1b00b30669e462c9c81b79fa4cbd7f6cc6b11bdd28ba046a28a2b7ff42d74dbf4b37836036b5761164e9613a4cb6fc43351cb302d6541183544847d22e0346ab1d2f1bf0cda29c060eef3249dc601876da7c27d9e01bb2fb48b72eb10bd34aed0403a0a20082c9ee671b534ffa4de0d8bbf141f94198ffffff4a3b9047cfb35709316efed8669f1b04f5c7cc303173489fd8669f1b3f16dd8cb7b6fa8880ff1b92f5e2857ba6fdd4d8669f1b41a8e7fcb453eedd9f44086fb5a1432951b0491360597828224a4cab4169ffffffffd8669f1be1893433a8ad293780ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 189, 179, 84, 75, 65, 184, 110, 201, 159, 128, 159, 27, 49, 192, 60, 186, 73, 117, 86, 57, + 255, 159, 74, 88, 236, 148, 88, 89, 43, 138, 76, 232, 46, 72, 5, 185, 218, 38, 17, 251, 220, 207, 27, 0, 179, 6, + 105, 228, 98, 201, 200, 27, 121, 250, 76, 189, 127, 108, 198, 177, 27, 221, 40, 186, 4, 106, 40, 162, 183, 255, + 66, 215, 77, 191, 75, 55, 131, 96, 54, 181, 118, 17, 100, 233, 97, 58, 76, 182, 252, 67, 53, 28, 179, 2, 214, 84, + 17, 131, 84, 72, 71, 210, 46, 3, 70, 171, 29, 47, 27, 240, 205, 162, 156, 6, 14, 239, 50, 73, 220, 96, 24, 118, + 218, 124, 39, 217, 224, 27, 178, 251, 72, 183, 46, 177, 11, 211, 74, 237, 4, 3, 160, 162, 0, 130, 201, 238, 103, + 27, 83, 79, 250, 77, 224, 216, 187, 241, 65, 249, 65, 152, 255, 255, 255, 74, 59, 144, 71, 207, 179, 87, 9, 49, + 110, 254, 216, 102, 159, 27, 4, 245, 199, 204, 48, 49, 115, 72, 159, 216, 102, 159, 27, 63, 22, 221, 140, 183, + 182, 250, 136, 128, 255, 27, 146, 245, 226, 133, 123, 166, 253, 212, 216, 102, 159, 27, 65, 168, 231, 252, 180, + 83, 238, 221, 159, 68, 8, 111, 181, 161, 67, 41, 81, 176, 73, 19, 96, 89, 120, 40, 34, 74, 76, 171, 65, 105, 255, + 255, 255, 255, 216, 102, 159, 27, 225, 137, 52, 51, 168, 173, 41, 55, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 353, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ebb561" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + }, + "cborHex": "9f43ebb56108ff", + "cborBytes": [159, 67, 235, 181, 97, 8, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 354, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2364489855391352356" + } + }, + { + "_tag": "ByteArray", + "bytearray": "45352960b75c16cee82e18" + }, + { + "_tag": "ByteArray", + "bytearray": "267ca3" + }, + { + "_tag": "ByteArray", + "bytearray": "ca88e56c27279548a09a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1709468219545250504" + } + } + ] + }, + "cborHex": "9f1b20d05afef19dc6244b45352960b75c16cee82e1843267ca34aca88e56c27279548a09a1b17b94049dcd06ac8ff", + "cborBytes": [ + 159, 27, 32, 208, 90, 254, 241, 157, 198, 36, 75, 69, 53, 41, 96, 183, 92, 22, 206, 232, 46, 24, 67, 38, 124, 163, + 74, 202, 136, 229, 108, 39, 39, 149, 72, 160, 154, 27, 23, 185, 64, 73, 220, 208, 106, 200, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 355, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d6fc0dfd7a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6985304226335739667" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10018871139690282236" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7407972336877715476" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b38541" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10983478176700839787" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "249a3136d94327" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11857329914688739843" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55755b6bd1b877fbe69e44" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9377837926746302265" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2655331448487695132" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13194102956740270207" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3016723722116860463" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "210903e31f49d9e7a505" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a908288bd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8142b1d937bd14" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68c2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98650fa232" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cfebde" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5785e996a3d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1624092430282418909" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff6adf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4069570865034676517" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f45d6fc0dfd7abf1b60f0c92f22c6cf131b8b0a2e3823a6fcfc1b66ce67975d84401443b385411b986d27357082376b47249a3136d943271ba48db2bc0da29a034b55755b6bd1b877fbe69e44ffd8669f1b8224c5e890e627399f801b24d9a1e24408531c1bb71adebbda6f587fd8669f1b29dd8e3df2450a2f80ffbf4a210903e31f49d9e7a505453a908288bd478142b1d937bd144268c24598650fa23243cfebde46f5785e996a3d1b1689ef75e5626add43ff6adf1b387a0523e6abc925ffffffff", + "cborBytes": [ + 159, 69, 214, 252, 13, 253, 122, 191, 27, 96, 240, 201, 47, 34, 198, 207, 19, 27, 139, 10, 46, 56, 35, 166, 252, + 252, 27, 102, 206, 103, 151, 93, 132, 64, 20, 67, 179, 133, 65, 27, 152, 109, 39, 53, 112, 130, 55, 107, 71, 36, + 154, 49, 54, 217, 67, 39, 27, 164, 141, 178, 188, 13, 162, 154, 3, 75, 85, 117, 91, 107, 209, 184, 119, 251, 230, + 158, 68, 255, 216, 102, 159, 27, 130, 36, 197, 232, 144, 230, 39, 57, 159, 128, 27, 36, 217, 161, 226, 68, 8, 83, + 28, 27, 183, 26, 222, 187, 218, 111, 88, 127, 216, 102, 159, 27, 41, 221, 142, 61, 242, 69, 10, 47, 128, 255, 191, + 74, 33, 9, 3, 227, 31, 73, 217, 231, 165, 5, 69, 58, 144, 130, 136, 189, 71, 129, 66, 177, 217, 55, 189, 20, 66, + 104, 194, 69, 152, 101, 15, 162, 50, 67, 207, 235, 222, 70, 245, 120, 94, 153, 106, 61, 27, 22, 137, 239, 117, + 229, 98, 106, 221, 67, 255, 106, 223, 27, 56, 122, 5, 35, 230, 171, 201, 37, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 356, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d25fb3" + } + ] + }, + "cborHex": "9f43d25fb3ff", + "cborBytes": [159, 67, 210, 95, 179, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 357, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cd7722792ff2e011876f4f" + } + ] + }, + "cborHex": "9f4bcd7722792ff2e011876f4fff", + "cborBytes": [159, 75, 205, 119, 34, 121, 47, 242, 224, 17, 135, 111, 79, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 358, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eb2ff7c40c3fd388d3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10357489048971537133" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5460572898172654817" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4246568779500064734" + } + }, + { + "_tag": "ByteArray", + "bytearray": "832973b0" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9fa81c8ed3cb697f9e140ea4" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1364122588319046768" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1156508ef1ce26f5" + }, + { + "_tag": "ByteArray", + "bytearray": "7cecf8be1926b8d8" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1947935136784778778" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "6b333b396e7a84" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1176620405550882623" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8615531722591774408" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cbb74f17" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14819239275640955432" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "187225679370886874" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5603083201494488510" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e2387c0da639438c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8318782447317604856" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "21fc788e0fa9d5b1cb64" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12731526807452666758" + } + }, + { + "_tag": "ByteArray", + "bytearray": "111303" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11180090276910551659" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17095772461076794574" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f9f49eb2ff7c40c3fd388d3d8669f1b8fbd3169e8f26aed9f415b1b4bc7da1e99b4d4e11b3aeed7ce405d8fde44832973b0ffff4c9fa81c8ed3cb697f9e140ea4a0ffd8669f1b12ee564442d7dc709f481156508ef1ce26f5487cecf8be1926b8d8ffff9fd8669f1b1b0874afb18f061a80ff476b333b396e7a841b105432065c561f3f809f1b77908474643126c8ffff44cbb74f17d8669f1bcda8839b0218a2289fbf1b029928c36fbb9eda1b4dc2267c400995be494e2387c0da639438c91b7372408fa01ed9f8ff9f4a21fc788e0fa9d5b1cb641bb0af782d46944b86431113031b9b27a8df480d526bff1bed406279df634ccea0ffffff", + "cborBytes": [ + 159, 159, 73, 235, 47, 247, 196, 12, 63, 211, 136, 211, 216, 102, 159, 27, 143, 189, 49, 105, 232, 242, 106, 237, + 159, 65, 91, 27, 75, 199, 218, 30, 153, 180, 212, 225, 27, 58, 238, 215, 206, 64, 93, 143, 222, 68, 131, 41, 115, + 176, 255, 255, 76, 159, 168, 28, 142, 211, 203, 105, 127, 158, 20, 14, 164, 160, 255, 216, 102, 159, 27, 18, 238, + 86, 68, 66, 215, 220, 112, 159, 72, 17, 86, 80, 142, 241, 206, 38, 245, 72, 124, 236, 248, 190, 25, 38, 184, 216, + 255, 255, 159, 216, 102, 159, 27, 27, 8, 116, 175, 177, 143, 6, 26, 128, 255, 71, 107, 51, 59, 57, 110, 122, 132, + 27, 16, 84, 50, 6, 92, 86, 31, 63, 128, 159, 27, 119, 144, 132, 116, 100, 49, 38, 200, 255, 255, 68, 203, 183, 79, + 23, 216, 102, 159, 27, 205, 168, 131, 155, 2, 24, 162, 40, 159, 191, 27, 2, 153, 40, 195, 111, 187, 158, 218, 27, + 77, 194, 38, 124, 64, 9, 149, 190, 73, 78, 35, 135, 192, 218, 99, 148, 56, 201, 27, 115, 114, 64, 143, 160, 30, + 217, 248, 255, 159, 74, 33, 252, 120, 142, 15, 169, 213, 177, 203, 100, 27, 176, 175, 120, 45, 70, 148, 75, 134, + 67, 17, 19, 3, 27, 155, 39, 168, 223, 72, 13, 82, 107, 255, 27, 237, 64, 98, 121, 223, 99, 76, 206, 160, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 359, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14954748745223572457" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11289094449518007242" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9833664546970318144" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "902475837903848411" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18389449766426924968" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15771644403049837178" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fb03795" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24a34231a5ccae34e00002a0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b745b89264684" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13395069498544171654" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17259487933658271243" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b9" + }, + { + "_tag": "ByteArray", + "bytearray": "41610728382e217b669346" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8454122899359219830" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d31935a5a5" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17909424680032824771" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16203788990645433831" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3500ce8cf6837c6d674aa4" + }, + { + "_tag": "ByteArray", + "bytearray": "77f1bdff96" + }, + { + "_tag": "ByteArray", + "bytearray": "59cce387d3da649fd6" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bcf89f0c008450be99fd8669f1b9caaeb96f35ad3ca9f1b887831cdf284b5404185ffffbf1b0c863cfe38a1c3db1bff3473218ec457a81bdae02305d790327a449fb037954c24a34231a5ccae34e00002a04253c1473b745b892646841bb9e4d8bd22652a86ff1bef8604d4bad78e0bffff41b94b41610728382e217b669346d8669f1b755313fc2fcd40769f45d31935a5a5ffffd8669f1bf88b0edbb8f86dc39f1be0df6c3c52ce75e74b3500ce8cf6837c6d674aa44577f1bdff964959cce387d3da649fd6ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 207, 137, 240, 192, 8, 69, 11, 233, 159, 216, 102, 159, 27, 156, 170, 235, 150, 243, 90, + 211, 202, 159, 27, 136, 120, 49, 205, 242, 132, 181, 64, 65, 133, 255, 255, 191, 27, 12, 134, 60, 254, 56, 161, + 195, 219, 27, 255, 52, 115, 33, 142, 196, 87, 168, 27, 218, 224, 35, 5, 215, 144, 50, 122, 68, 159, 176, 55, 149, + 76, 36, 163, 66, 49, 165, 204, 174, 52, 224, 0, 2, 160, 66, 83, 193, 71, 59, 116, 91, 137, 38, 70, 132, 27, 185, + 228, 216, 189, 34, 101, 42, 134, 255, 27, 239, 134, 4, 212, 186, 215, 142, 11, 255, 255, 65, 185, 75, 65, 97, 7, + 40, 56, 46, 33, 123, 102, 147, 70, 216, 102, 159, 27, 117, 83, 19, 252, 47, 205, 64, 118, 159, 69, 211, 25, 53, + 165, 165, 255, 255, 216, 102, 159, 27, 248, 139, 14, 219, 184, 248, 109, 195, 159, 27, 224, 223, 108, 60, 82, 206, + 117, 231, 75, 53, 0, 206, 140, 246, 131, 124, 109, 103, 74, 164, 69, 119, 241, 189, 255, 150, 73, 89, 204, 227, + 135, 211, 218, 100, 159, 214, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 360, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16898844674512190052" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12841287334508538233" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6735943582129638085" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e510" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9726140153975673603" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6bb2a52ebc59815a543" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9839627454245842749" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0506e478" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12904525994245547637" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2993180803114256413" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff79fbf1bea84c1b292ccfa641bb2356acb701aa979ffffffbf071b5d7ae0ffd7e8cac51442e5101b86fa30f0516213034ab6bb2a52ebc59815a5431b888d61097c812f3d440506e4781bb316160549cce675001bfffffffffffffff31b2989ea14f624c81dffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 191, 27, 234, 132, 193, 178, 146, 204, 250, + 100, 27, 178, 53, 106, 203, 112, 26, 169, 121, 255, 255, 255, 191, 7, 27, 93, 122, 224, 255, 215, 232, 202, 197, + 20, 66, 229, 16, 27, 134, 250, 48, 240, 81, 98, 19, 3, 74, 182, 187, 42, 82, 235, 197, 152, 21, 165, 67, 27, 136, + 141, 97, 9, 124, 129, 47, 61, 68, 5, 6, 228, 120, 27, 179, 22, 22, 5, 73, 204, 230, 117, 0, 27, 255, 255, 255, + 255, 255, 255, 255, 243, 27, 41, 137, 234, 20, 246, 36, 200, 29, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 361, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ef974e994f93a7c32983272" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f4685a0311033f9c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99585db0e0199046" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12219032908930819786" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5cffc2acbe2578ccb79f" + }, + { + "_tag": "ByteArray", + "bytearray": "ff9c34630e07" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17376916255390879424" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "485619" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df19168721d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e78dd368a2df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efc1e7029d853132" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17534989322977972537" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6211305211173920179" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3463c9b88da4fb59ef1e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1097511940853291847" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf4c7ef974e994f93a7c32983272494f4685a0311033f9c34899585db0e01990461ba992b9b103a126caff4a5cffc2acbe2578ccb79f46ff9c34630e07bf1bf12735447648cec04348561946df19168721d146e78dd368a2df48efc1e7029d8531321bf358cbe2885e9139ffd8669f1b5632fd2e3f8dddb39f809f4a3463c9b88da4fb59ef1e1b0f3b254b9b4f5b47ffffffff", + "cborBytes": [ + 159, 191, 76, 126, 249, 116, 233, 148, 249, 58, 124, 50, 152, 50, 114, 73, 79, 70, 133, 160, 49, 16, 51, 249, 195, + 72, 153, 88, 93, 176, 224, 25, 144, 70, 27, 169, 146, 185, 177, 3, 161, 38, 202, 255, 74, 92, 255, 194, 172, 190, + 37, 120, 204, 183, 159, 70, 255, 156, 52, 99, 14, 7, 191, 27, 241, 39, 53, 68, 118, 72, 206, 192, 67, 72, 86, 25, + 70, 223, 25, 22, 135, 33, 209, 70, 231, 141, 211, 104, 162, 223, 72, 239, 193, 231, 2, 157, 133, 49, 50, 27, 243, + 88, 203, 226, 136, 94, 145, 57, 255, 216, 102, 159, 27, 86, 50, 253, 46, 63, 141, 221, 179, 159, 128, 159, 74, 52, + 99, 201, 184, 141, 164, 251, 89, 239, 30, 27, 15, 59, 37, 75, 155, 79, 91, 71, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 362, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "12c7eb27" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15795884686714122431" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "426153783524693529" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16842334440611048946" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9106564367623960081" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18422850173224685795" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18380362092390756856" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8280411337066780338" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9862500445447958607" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3646703215535463009" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c0ffbe661bd48ce6c2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15100022026720740367" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f9f4412c7eb279f1bdb36416eb0a0b0bf1b05ea009bb6ad9619ff9f1be9bbfdf070f2edf21b7e61040b3074b6111bffab1c9fc54d10e31bff1429f09001b1f81b72e9ee3d53fb96b2ff9f1b88dea3e6c00eb04f1b329bb140e3441a61ff49c0ffbe661bd48ce6c2ff9f1bd18e0e07ab43840fa0ffff", + "cborBytes": [ + 159, 159, 68, 18, 199, 235, 39, 159, 27, 219, 54, 65, 110, 176, 160, 176, 191, 27, 5, 234, 0, 155, 182, 173, 150, + 25, 255, 159, 27, 233, 187, 253, 240, 112, 242, 237, 242, 27, 126, 97, 4, 11, 48, 116, 182, 17, 27, 255, 171, 28, + 159, 197, 77, 16, 227, 27, 255, 20, 41, 240, 144, 1, 177, 248, 27, 114, 233, 238, 61, 83, 251, 150, 178, 255, 159, + 27, 136, 222, 163, 230, 192, 14, 176, 79, 27, 50, 155, 177, 64, 227, 68, 26, 97, 255, 73, 192, 255, 190, 102, 27, + 212, 140, 230, 194, 255, 159, 27, 209, 142, 14, 7, 171, 67, 132, 15, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 363, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14728857373545008856" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11358254682950236832" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11336048876182044442" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3665176503311632806" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14878350114530293696" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2913464676108956981" + } + }, + { + "_tag": "ByteArray", + "bytearray": "260147cca6993701" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12081882142237961621" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d37bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60a480" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25b546b25c9af6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6028fc3c9b6adb9eda78de8b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29db601063" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1227688070818712190" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "888730519313262e25d63591" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1689339215168686393" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6db7e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e82c0e5e51" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "454264554159565271" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8e05787b0b14" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9614157556022189890" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9415153331594899196" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2960727068093917522" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13011491878955785892" + } + }, + { + "_tag": "ByteArray", + "bytearray": "206f577ec215e63cebcb47" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17655614655942293886" + } + } + ] + } + ] + }, + "cborHex": "9f4100d8669f1bcc6769be918b0ed89f1b9da0a0749daa7aa09f1b9d51bc64554bff1aff9f1b32dd529c5eff89a61bce7a8499ac7877c01b286eb4afcd1f753548260147cca69937011ba7ab77cbba3aad95ffbf430d37bc4360a4804725b546b25c9af64c6028fc3c9b6adb9eda78de8b4529db6010631b11099fcbbc224a7e4c888730519313262e25d635911b1771bd10d144493943c6db7e413245e82c0e5e511b064ddf3488bb69d7ff468e05787b0b14ffff9fbf1b856c595bf5571f421b82a958124b8caefcffd8669f1b29169d94f29f29529f1bb4921aed130a1ea44b206f577ec215e63cebcb47ffff1bf50557fc729ef97effff", + "cborBytes": [ + 159, 65, 0, 216, 102, 159, 27, 204, 103, 105, 190, 145, 139, 14, 216, 159, 27, 157, 160, 160, 116, 157, 170, 122, + 160, 159, 27, 157, 81, 188, 100, 85, 75, 255, 26, 255, 159, 27, 50, 221, 82, 156, 94, 255, 137, 166, 27, 206, 122, + 132, 153, 172, 120, 119, 192, 27, 40, 110, 180, 175, 205, 31, 117, 53, 72, 38, 1, 71, 204, 166, 153, 55, 1, 27, + 167, 171, 119, 203, 186, 58, 173, 149, 255, 191, 67, 13, 55, 188, 67, 96, 164, 128, 71, 37, 181, 70, 178, 92, 154, + 246, 76, 96, 40, 252, 60, 155, 106, 219, 158, 218, 120, 222, 139, 69, 41, 219, 96, 16, 99, 27, 17, 9, 159, 203, + 188, 34, 74, 126, 76, 136, 135, 48, 81, 147, 19, 38, 46, 37, 214, 53, 145, 27, 23, 113, 189, 16, 209, 68, 73, 57, + 67, 198, 219, 126, 65, 50, 69, 232, 44, 14, 94, 81, 27, 6, 77, 223, 52, 136, 187, 105, 215, 255, 70, 142, 5, 120, + 123, 11, 20, 255, 255, 159, 191, 27, 133, 108, 89, 91, 245, 87, 31, 66, 27, 130, 169, 88, 18, 75, 140, 174, 252, + 255, 216, 102, 159, 27, 41, 22, 157, 148, 242, 159, 41, 82, 159, 27, 180, 146, 26, 237, 19, 10, 30, 164, 75, 32, + 111, 87, 126, 194, 21, 230, 60, 235, 203, 71, 255, 255, 27, 245, 5, 87, 252, 114, 158, 249, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 364, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "68" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3446974275452533135" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14352332339109288949" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12066170581222116363" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c01c42cd53d4c1e5af5260" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16141833373494477109" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d25777685a281c60c441a0" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2176255891939488416" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2640209455616694712" + }, + "fields": [] + } + ] + }, + "cborHex": "9f41681b2fd61cd73641f98f9f9f1bc72dba3872f5dbf51ba773a636dd034c0b4bc01c42cd53d4c1e5af52601be0034fee1aaf0135ff4bd25777685a281c60c441a0ff1b1e339d34136772a0d8669f1b24a3e882eea919b880ffff", + "cborBytes": [ + 159, 65, 104, 27, 47, 214, 28, 215, 54, 65, 249, 143, 159, 159, 27, 199, 45, 186, 56, 114, 245, 219, 245, 27, 167, + 115, 166, 54, 221, 3, 76, 11, 75, 192, 28, 66, 205, 83, 212, 193, 229, 175, 82, 96, 27, 224, 3, 79, 238, 26, 175, + 1, 53, 255, 75, 210, 87, 119, 104, 90, 40, 28, 96, 196, 65, 160, 255, 27, 30, 51, 157, 52, 19, 103, 114, 160, 216, + 102, 159, 27, 36, 163, 232, 130, 238, 169, 25, 184, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 365, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12875157303336143401" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff22" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14666876168677379652" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e89a9b56e038fb6978d07" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8450799597626558817" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4c7e93f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4837208018503287376" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16464927651812002289" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3873680903137860038" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1bb2adbf5a14a08a2942ff221bcb8b362abea84e444b6e89a9b56e038fb6978d07ffbf1b75474575b48b896144c4c7e93f41f21b432137106f8f4250ffbf1be47f2c76e2c2c9f11b35c21441fcbf19c6ffff", + "cborBytes": [ + 159, 191, 27, 178, 173, 191, 90, 20, 160, 138, 41, 66, 255, 34, 27, 203, 139, 54, 42, 190, 168, 78, 68, 75, 110, + 137, 169, 181, 110, 3, 143, 182, 151, 141, 7, 255, 191, 27, 117, 71, 69, 117, 180, 139, 137, 97, 68, 196, 199, + 233, 63, 65, 242, 27, 67, 33, 55, 16, 111, 143, 66, 80, 255, 191, 27, 228, 127, 44, 118, 226, 194, 201, 241, 27, + 53, 194, 20, 65, 252, 191, 25, 198, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 366, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13927723512910188066" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5387673823226428879" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4225574532322896054" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a23df29404674ec5f71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2155405295951996177" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4977b32bbfc664bf1d09ff96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0c3e0db7279ae7b51f986" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6040183d7d5527686505" + } + ] + }, + "cborHex": "9fd8669f1bc14936be24de0e229fbf1b4ac4dccc0f14fdcf1b3aa441a62b0b28b64a3a23df29404674ec5f711b1de989b26436e5114c4977b32bbfc664bf1d09ff964bc0c3e0db7279ae7b51f986ffffff4a6040183d7d5527686505ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 193, 73, 54, 190, 36, 222, 14, 34, 159, 191, 27, 74, 196, 220, 204, 15, 20, 253, 207, 27, + 58, 164, 65, 166, 43, 11, 40, 182, 74, 58, 35, 223, 41, 64, 70, 116, 236, 95, 113, 27, 29, 233, 137, 178, 100, 54, + 229, 17, 76, 73, 119, 179, 43, 191, 198, 100, 191, 29, 9, 255, 150, 75, 192, 195, 224, 219, 114, 121, 174, 123, + 81, 249, 134, 255, 255, 255, 74, 96, 64, 24, 61, 125, 85, 39, 104, 101, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 367, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6197353045612960025" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1a2de049" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16155903870933653406" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11110621646726471683" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ffec88fa76" + }, + { + "_tag": "ByteArray", + "bytearray": "97fa7a" + }, + { + "_tag": "ByteArray", + "bytearray": "8ad6b395" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce190781fcd20097221402" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4634031547581671440" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06f954c0db332095a891" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9138840673947930935" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16862933512190602249" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32fd070206000603" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18240299297167777581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5ffb23aaed9e56d95" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8414651532546674438" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11550867490221899914" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b300020407460af832" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13188936260109713358" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "399005148511354003" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b56016bc28f7219199f441a2de0491be0354cf9145bd79e1b9a30db8566e5a003ffff45ffec88fa764397fa7a448ad6b395bf0f4bce190781fcd2009722140210101b404f6323ef8f28104a06f954c0db332095a8911b7ed3af2c5d8ed13741051bea052caf8926ac094832fd0702060006031bfd228f91cc7e1f2d0effffbf0c49d5ffb23aaed9e56d951b74c6d8fc72240f061bfffffffffffffff31ba04cecc88248c08a49b300020407460af8321bb70883a68d1bbfce1b05898d118c923c93ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 86, 1, 107, 194, 143, 114, 25, 25, 159, 68, 26, 45, 224, 73, 27, 224, 53, 76, 249, + 20, 91, 215, 158, 27, 154, 48, 219, 133, 102, 229, 160, 3, 255, 255, 69, 255, 236, 136, 250, 118, 67, 151, 250, + 122, 68, 138, 214, 179, 149, 191, 15, 75, 206, 25, 7, 129, 252, 210, 0, 151, 34, 20, 2, 16, 16, 27, 64, 79, 99, + 35, 239, 143, 40, 16, 74, 6, 249, 84, 192, 219, 51, 32, 149, 168, 145, 27, 126, 211, 175, 44, 93, 142, 209, 55, + 65, 5, 27, 234, 5, 44, 175, 137, 38, 172, 9, 72, 50, 253, 7, 2, 6, 0, 6, 3, 27, 253, 34, 143, 145, 204, 126, 31, + 45, 14, 255, 255, 191, 12, 73, 213, 255, 178, 58, 174, 217, 229, 109, 149, 27, 116, 198, 216, 252, 114, 36, 15, 6, + 27, 255, 255, 255, 255, 255, 255, 255, 243, 27, 160, 76, 236, 200, 130, 72, 192, 138, 73, 179, 0, 2, 4, 7, 70, 10, + 248, 50, 27, 183, 8, 131, 166, 141, 27, 191, 206, 27, 5, 137, 141, 17, 140, 146, 60, 147, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 368, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1384399047708378619" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15325313771917802106" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5894144390472147195" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9725181948527552422" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14853367007563819010" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6764998283341143113" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "626364174690130775" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14045398951409882033" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "788400003240170519" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4146995314976988274" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446222556061859200" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "63d43b08" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "783773443451129832" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2491060678660004724" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4483678321182516186" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7829864031821371518" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7933532328976594820" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9003667760023073340" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9360561692480700121" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "319d2dcdef398221593c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11572625683355457870" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15876704754072337919" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11846938627763878645" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ad8edb124352d2c0bbe73" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f80bf1b13365f995a0c05fb1bd4ae73adb68ffa7a1b51cc351838f420fb1b86f6c974ba06a7a61bce21c298cc5928021b5de21a18a0ad1c49ffbf1b08b14ae5f46f9b571bc2eb47ee3b6e13b11b0af0f5a0360c14171b398d16446a699c721bfffe25aeb5dd7d8041e5ff9f4463d43b0880bf1b0ae085cb514a0fe81b2292067d31791b741b3e3939ad753423da1b6ca943da4052187e1b6e19919e9aba37841b7cf3741fcfcff23c1b81e76543d270fed94a319d2dcdef398221593c1ba09a39be9ef6d94e1bdc5562dafe3cbdff1ba468c7ea07b83af54b3ad8edb124352d2c0bbe73ffffff", + "cborBytes": [ + 159, 128, 191, 27, 19, 54, 95, 153, 90, 12, 5, 251, 27, 212, 174, 115, 173, 182, 143, 250, 122, 27, 81, 204, 53, + 24, 56, 244, 32, 251, 27, 134, 246, 201, 116, 186, 6, 167, 166, 27, 206, 33, 194, 152, 204, 89, 40, 2, 27, 93, + 226, 26, 24, 160, 173, 28, 73, 255, 191, 27, 8, 177, 74, 229, 244, 111, 155, 87, 27, 194, 235, 71, 238, 59, 110, + 19, 177, 27, 10, 240, 245, 160, 54, 12, 20, 23, 27, 57, 141, 22, 68, 106, 105, 156, 114, 27, 255, 254, 37, 174, + 181, 221, 125, 128, 65, 229, 255, 159, 68, 99, 212, 59, 8, 128, 191, 27, 10, 224, 133, 203, 81, 74, 15, 232, 27, + 34, 146, 6, 125, 49, 121, 27, 116, 27, 62, 57, 57, 173, 117, 52, 35, 218, 27, 108, 169, 67, 218, 64, 82, 24, 126, + 27, 110, 25, 145, 158, 154, 186, 55, 132, 27, 124, 243, 116, 31, 207, 207, 242, 60, 27, 129, 231, 101, 67, 210, + 112, 254, 217, 74, 49, 157, 45, 205, 239, 57, 130, 33, 89, 60, 27, 160, 154, 57, 190, 158, 246, 217, 78, 27, 220, + 85, 98, 218, 254, 60, 189, 255, 27, 164, 104, 199, 234, 7, 184, 58, 245, 75, 58, 216, 237, 177, 36, 53, 45, 44, + 11, 190, 115, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 369, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14751065241022739432" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "211c506f22b3a7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7101571342683447554" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12287723012816427807" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11821067078197081648" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ea2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14173246965295401302" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18326022871012690034" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15258392495211716341" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02ac760c9d7e3d0046" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "48e66c4c" + }, + { + "_tag": "ByteArray", + "bytearray": "3cb8ac" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d840d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1034539322225722237" + } + } + } + ] + } + ] + }, + "cborHex": "9f1bccb64faea5c5b3e89f47211c506f22b3a7bf1b628dd982abbda1021baa86c2fa1d50db1f1ba40cdde07e007630423ea21bc4b17d059850c9561bfe531cb4ac654872ffd8669f1bd3c0b321c8949ef59f4902ac760c9d7e3d0046ffffff4448e66c4c433cb8acbf43d840d11b0e5b6c084770037dffff", + "cborBytes": [ + 159, 27, 204, 182, 79, 174, 165, 197, 179, 232, 159, 71, 33, 28, 80, 111, 34, 179, 167, 191, 27, 98, 141, 217, + 130, 171, 189, 161, 2, 27, 170, 134, 194, 250, 29, 80, 219, 31, 27, 164, 12, 221, 224, 126, 0, 118, 48, 66, 62, + 162, 27, 196, 177, 125, 5, 152, 80, 201, 86, 27, 254, 83, 28, 180, 172, 101, 72, 114, 255, 216, 102, 159, 27, 211, + 192, 179, 33, 200, 148, 158, 245, 159, 73, 2, 172, 118, 12, 157, 126, 61, 0, 70, 255, 255, 255, 68, 72, 230, 108, + 76, 67, 60, 184, 172, 191, 67, 216, 64, 209, 27, 14, 91, 108, 8, 71, 112, 3, 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 370, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14959961182886419967" + } + } + ] + }, + "cborHex": "9f1bcf9c756f3f93ddffff", + "cborBytes": [159, 27, 207, 156, 117, 111, 63, 147, 221, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 371, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12064194655717379924" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7119683ba5e1a9e2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5095714275337322252" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "422f39d3b12e9a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16038625662288104885" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0abce56e58" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17985842084790400068" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c356975b3a890b43cf" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4313865087067592041" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd905069fd8669f1ba76ca11edb334f5480ff487119683ba5e1a9e2bf1b46b79d229a5e3f0c47422f39d3b12e9a1bde94a51046258db5450abce56e581bf99a8c154233f44449c356975b3a890b43cfffd8669f1b3bdded70db9f956980ffffa0ff", + "cborBytes": [ + 159, 217, 5, 6, 159, 216, 102, 159, 27, 167, 108, 161, 30, 219, 51, 79, 84, 128, 255, 72, 113, 25, 104, 59, 165, + 225, 169, 226, 191, 27, 70, 183, 157, 34, 154, 94, 63, 12, 71, 66, 47, 57, 211, 177, 46, 154, 27, 222, 148, 165, + 16, 70, 37, 141, 181, 69, 10, 188, 229, 110, 88, 27, 249, 154, 140, 21, 66, 51, 244, 68, 73, 195, 86, 151, 91, 58, + 137, 11, 67, 207, 255, 216, 102, 159, 27, 59, 221, 237, 112, 219, 159, 149, 105, 128, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 372, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13598385207792720527" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12864010920204866253" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18054419117494524802" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "960257657948206500" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2032456346181891096" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e335005093f718fcdd971a48" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1945694037545704683" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12252252089790425008" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "905819054909413273" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "359116791741467228" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9689" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7945911562673932867" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4924752926023393399" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16208193336956364466" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "434b7863dceb5063e3" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "251714a59b36be26612abf5c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15830473672297194245" + } + } + ] + }, + "cborHex": "9fd8669f1bbcb72b4c95695a8f9f1bb28625c6858e92cdd8669f1bfa8e2e87ec485b8280ff9f1b0d53854092d9f5a41b1c34bc4747a8f4184ce335005093f718fcdd971a48ff1b1b007e6b1d81dcebd8669f1baa08be5c467ee7b09f1b0c921da196a7d799ffffffffbf1b04fbd6d1c4a0ca5c4296891b6e458c778dd94a431b44583cb19a30a0771be0ef11f71c2326b249434b7863dceb5063e3ff4c251714a59b36be26612abf5c1bdbb123ee7772a305ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 188, 183, 43, 76, 149, 105, 90, 143, 159, 27, 178, 134, 37, 198, 133, 142, 146, 205, 216, + 102, 159, 27, 250, 142, 46, 135, 236, 72, 91, 130, 128, 255, 159, 27, 13, 83, 133, 64, 146, 217, 245, 164, 27, 28, + 52, 188, 71, 71, 168, 244, 24, 76, 227, 53, 0, 80, 147, 247, 24, 252, 221, 151, 26, 72, 255, 27, 27, 0, 126, 107, + 29, 129, 220, 235, 216, 102, 159, 27, 170, 8, 190, 92, 70, 126, 231, 176, 159, 27, 12, 146, 29, 161, 150, 167, + 215, 153, 255, 255, 255, 255, 191, 27, 4, 251, 214, 209, 196, 160, 202, 92, 66, 150, 137, 27, 110, 69, 140, 119, + 141, 217, 74, 67, 27, 68, 88, 60, 177, 154, 48, 160, 119, 27, 224, 239, 17, 247, 28, 35, 38, 178, 73, 67, 75, 120, + 99, 220, 235, 80, 99, 227, 255, 76, 37, 23, 20, 165, 155, 54, 190, 38, 97, 42, 191, 92, 27, 219, 177, 35, 238, + 119, 114, 163, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 373, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12943620196957392957" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10652137893472774548" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3641380832952306590" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0688d201fd05f9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5933029625782668806" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17902008398033486954" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16991842779168096707" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13262622042403472605" + } + } + } + ] + } + ] + }, + "cborHex": "9fa09fd8669f1bb3a0f9fdab37903d9f1b93d3fefa06ec29941b3288c8932009cb9effffff80470688d201fd05f9bf1b52565b0296a50e061bf870b5ca02d8846a1bebcf26fb2399c1c31bb80e4c7aabb984ddffff", + "cborBytes": [ + 159, 160, 159, 216, 102, 159, 27, 179, 160, 249, 253, 171, 55, 144, 61, 159, 27, 147, 211, 254, 250, 6, 236, 41, + 148, 27, 50, 136, 200, 147, 32, 9, 203, 158, 255, 255, 255, 128, 71, 6, 136, 210, 1, 253, 5, 249, 191, 27, 82, 86, + 91, 2, 150, 165, 14, 6, 27, 248, 112, 181, 202, 2, 216, 132, 106, 27, 235, 207, 38, 251, 35, 153, 193, 195, 27, + 184, 14, 76, 122, 171, 185, 132, 221, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 374, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11099234442927439097" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4506448952845102890" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16725519321946425303" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1485664211596641504" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f3e28c317f2" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d36f49b9c938" + }, + { + "_tag": "ByteArray", + "bytearray": "8edeebe2f86b18ac7a64" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b9a0866eb69787cf99f1b3e8a1f7248c36f2a1be81cfb352c8c87d71b149e23baa3ba84e0464f3e28c317f2ffff46d36f49b9c9384a8edeebe2f86b18ac7a6480ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 154, 8, 102, 235, 105, 120, 124, 249, 159, 27, 62, 138, 31, 114, 72, 195, 111, 42, + 27, 232, 28, 251, 53, 44, 140, 135, 215, 27, 20, 158, 35, 186, 163, 186, 132, 224, 70, 79, 62, 40, 195, 23, 242, + 255, 255, 70, 211, 111, 73, 185, 201, 56, 74, 142, 222, 235, 226, 248, 107, 24, 172, 122, 100, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 375, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3704668252676613724" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17167401597277319036" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3369a025cb74e65c9fd8669f1bee3edccbc2302f7c80ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 51, 105, 160, 37, 203, 116, 230, 92, 159, 216, 102, 159, 27, 238, 62, 220, 203, 194, 48, + 47, 124, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 376, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5a4fee466c9f7b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f899fdfc" + } + ] + } + ] + }, + "cborHex": "9f475a4fee466c9f7b9f0544f899fdfcffff", + "cborBytes": [159, 71, 90, 79, 238, 70, 108, 159, 123, 159, 5, 68, 248, 153, 253, 252, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 377, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15702102968195553034" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11600685537874558449" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "105449253425526931" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4458328934954686578" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "720223182467821450" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1245992763070683726" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10302632820914602683" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17646498089717289969" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11673526579049393486" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "817d18bf07c566d5b8de" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17977535768082930695" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "937019072024188800" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "da6a42" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1853643921091064697" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4161ac811a7c1e25e4814a0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5847367606058916031" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16439664982912339325" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7748375740868644196" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14187212667073449542" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14986969990309389632" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f2c0ab6436e2bb9a2eb" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14512278974561001977" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15010991123397566413" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18269695834747019868" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14255606468055724447" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7127852665107055224" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5569705569834204968" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7562563833701246157" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60f830415bd72257" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12950948595265905019" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b71aca302e63d8401ccf0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14858904026208286504" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14650092591877671214" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15663946640016314753" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8796127090105837668" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f1bd9e91374cde7170aa01ba0fdea089c063df1bf1b0176a1898c4238931b3ddf2a8b8bd1d8721b09febf2b25feef8a1b114aa7d103891a4e1b8efa4df705e542bb1bf4e4f484773553f11ba200b2931c51ed4e4a817d18bf07c566d5b8de1bf97d098831765c071b0d00f5e1a7c49780ff43da6a42ffbf1b19b9775340b1f3794ce4161ac811a7c1e25e4814a01b512605db664498bf1be4256c336ceb0d7d1b6b87c2af04bacd641bc4e31ac0edd5ce461bcffc69cd43d4a5404a4f2c0ab6436e2bb9a2ebff417cd8669f1bc965f8d6881421f99f1bd051c0e524a75fcd1bfd8aff909087a25c1bc5d6168da238f19fffffbf1b62eb383be30702781b4d4b91b4c97b7f281b68f39fbd12faa4cd4860f830415bd722571bb3bb03215d2b217b4b8b71aca302e63d8401ccf01bce356e7c69c437281bcb4f9597c173492e1bd961847a5ad891811b7a121efc0cf2e864ffff", + "cborBytes": [ + 159, 159, 27, 217, 233, 19, 116, 205, 231, 23, 10, 160, 27, 160, 253, 234, 8, 156, 6, 61, 241, 191, 27, 1, 118, + 161, 137, 140, 66, 56, 147, 27, 61, 223, 42, 139, 139, 209, 216, 114, 27, 9, 254, 191, 43, 37, 254, 239, 138, 27, + 17, 74, 167, 209, 3, 137, 26, 78, 27, 142, 250, 77, 247, 5, 229, 66, 187, 27, 244, 228, 244, 132, 119, 53, 83, + 241, 27, 162, 0, 178, 147, 28, 81, 237, 78, 74, 129, 125, 24, 191, 7, 197, 102, 213, 184, 222, 27, 249, 125, 9, + 136, 49, 118, 92, 7, 27, 13, 0, 245, 225, 167, 196, 151, 128, 255, 67, 218, 106, 66, 255, 191, 27, 25, 185, 119, + 83, 64, 177, 243, 121, 76, 228, 22, 26, 200, 17, 167, 193, 226, 94, 72, 20, 160, 27, 81, 38, 5, 219, 102, 68, 152, + 191, 27, 228, 37, 108, 51, 108, 235, 13, 125, 27, 107, 135, 194, 175, 4, 186, 205, 100, 27, 196, 227, 26, 192, + 237, 213, 206, 70, 27, 207, 252, 105, 205, 67, 212, 165, 64, 74, 79, 44, 10, 182, 67, 110, 43, 185, 162, 235, 255, + 65, 124, 216, 102, 159, 27, 201, 101, 248, 214, 136, 20, 33, 249, 159, 27, 208, 81, 192, 229, 36, 167, 95, 205, + 27, 253, 138, 255, 144, 144, 135, 162, 92, 27, 197, 214, 22, 141, 162, 56, 241, 159, 255, 255, 191, 27, 98, 235, + 56, 59, 227, 7, 2, 120, 27, 77, 75, 145, 180, 201, 123, 127, 40, 27, 104, 243, 159, 189, 18, 250, 164, 205, 72, + 96, 248, 48, 65, 91, 215, 34, 87, 27, 179, 187, 3, 33, 93, 43, 33, 123, 75, 139, 113, 172, 163, 2, 230, 61, 132, + 1, 204, 240, 27, 206, 53, 110, 124, 105, 196, 55, 40, 27, 203, 79, 149, 151, 193, 115, 73, 46, 27, 217, 97, 132, + 122, 90, 216, 145, 129, 27, 122, 18, 30, 252, 12, 242, 232, 100, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 378, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14321341835043070028" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "944972940715379462" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0bca24144d263b9c637191" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7d97d4bb49788b1b7201" + }, + { + "_tag": "ByteArray", + "bytearray": "05c2cbf43ee9" + }, + { + "_tag": "ByteArray", + "bytearray": "2183593887e820ba" + }, + { + "_tag": "ByteArray", + "bytearray": "e1519f" + }, + { + "_tag": "ByteArray", + "bytearray": "7465" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10014954603306255560" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d93f07a76a20ddffe3e334" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17855193488079377181" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17293165062867125587" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a2946da042a063f588b59" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17038485686759731590" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5904162888255646808" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "4b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3170471871017688268" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18406519415108813860" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6643054567664814009" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1bc6bfa08570aee04c9f1b0d1d37e205b24b064b0bca24144d263b9c637191ffff9f4a7d97d4bb49788b1b72014605c2cbf43ee9482183593887e820ba43e1519f427465ffd8669f1b8afc442673bb84c89f4bd93f07a76a20ddffe3e3341bf7ca63e064d6d31d1beffdaa0066640553ffffbf4b5a2946da042a063f588b591bec74dc7555e4318641cf1b51efccdd8285ac58ffff9f0480414bd8669f1b2bffc75e6a609ccc9f034203b01bff7117e2d8e44424ffff1b5c30deeed13287b9ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 198, 191, 160, 133, 112, 174, 224, 76, 159, 27, 13, 29, 55, 226, 5, 178, 75, 6, 75, + 11, 202, 36, 20, 77, 38, 59, 156, 99, 113, 145, 255, 255, 159, 74, 125, 151, 212, 187, 73, 120, 139, 27, 114, 1, + 70, 5, 194, 203, 244, 62, 233, 72, 33, 131, 89, 56, 135, 232, 32, 186, 67, 225, 81, 159, 66, 116, 101, 255, 216, + 102, 159, 27, 138, 252, 68, 38, 115, 187, 132, 200, 159, 75, 217, 63, 7, 167, 106, 32, 221, 255, 227, 227, 52, 27, + 247, 202, 99, 224, 100, 214, 211, 29, 27, 239, 253, 170, 0, 102, 100, 5, 83, 255, 255, 191, 75, 90, 41, 70, 218, + 4, 42, 6, 63, 88, 139, 89, 27, 236, 116, 220, 117, 85, 228, 49, 134, 65, 207, 27, 81, 239, 204, 221, 130, 133, + 172, 88, 255, 255, 159, 4, 128, 65, 75, 216, 102, 159, 27, 43, 255, 199, 94, 106, 96, 156, 204, 159, 3, 66, 3, + 176, 27, 255, 113, 23, 226, 216, 228, 68, 36, 255, 255, 27, 92, 48, 222, 238, 209, 50, 135, 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 379, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8792270520871427370" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f3ea2b8ca3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7973001758220326250" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5092280813482883398" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b32c0b36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15764434354105255567" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3902994125855854016" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8021781314454445262" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16890718095612315255" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f9f1b7a046b748dae1d2aff9f45f3ea2b8ca3d8669f1b6ea5cadb3849956a9f1b46ab6a6b782f394644b32c0b361bdac685858168868fffffff9f80d8669f1b362a387a80130dc09f1b6f53179ab1ec5cce1bea67e29dfa3c0677ffffa0ffff", + "cborBytes": [ + 159, 159, 27, 122, 4, 107, 116, 141, 174, 29, 42, 255, 159, 69, 243, 234, 43, 140, 163, 216, 102, 159, 27, 110, + 165, 202, 219, 56, 73, 149, 106, 159, 27, 70, 171, 106, 107, 120, 47, 57, 70, 68, 179, 44, 11, 54, 27, 218, 198, + 133, 133, 129, 104, 134, 143, 255, 255, 255, 159, 128, 216, 102, 159, 27, 54, 42, 56, 122, 128, 19, 13, 192, 159, + 27, 111, 83, 23, 154, 177, 236, 92, 206, 27, 234, 103, 226, 157, 250, 60, 6, 119, 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 380, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4184159216811808296" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1bc1959b7397" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b3a111ea399be9628461bc1959b7397ffff", + "cborBytes": [159, 191, 27, 58, 17, 30, 163, 153, 190, 150, 40, 70, 27, 193, 149, 155, 115, 151, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 381, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8345149035766648125" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "feb69b07500483fa03" + } + } + ] + } + ] + }, + "cborHex": "9fbf1441381b73cfecd562908d3d1bffffffffffffffeb1bffffffffffffffef49feb69b07500483fa03ffff", + "cborBytes": [ + 159, 191, 20, 65, 56, 27, 115, 207, 236, 213, 98, 144, 141, 61, 27, 255, 255, 255, 255, 255, 255, 255, 235, 27, + 255, 255, 255, 255, 255, 255, 255, 239, 73, 254, 182, 155, 7, 80, 4, 131, 250, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 382, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2726867584718815749" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6873725200232056905" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8084626337174239430" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10104085836978485197" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9440698094298755479" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13053714685005951843" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18402834729282482805" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27efca03de" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "60cb3049ec4e2a679cfe" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3774590749867757274" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6028069944233855101" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13591186100585536010" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17482742396352643604" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9853360341462202560" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ba5d5c08924c17c3b95d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11611612501079175826" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14583054911281205906" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf1b25d7c79ee8b142051b5f6460a6ab7b88491b70325cd1c909b8c61b8c38ec88f52877cd1b830418e5d66271971bb5281c582f1473631bff6400af131ab2754527efca03deff4a60cb3049ec4e2a679cfed8669f1b34620a49d257ceda9f1b53a801ad1b44887dd8669f1bbc9d97bfd1a09a0a9f1bf29f2d94fa42c214412cffff1b88be2b0674c6b8c04aba5d5c08924c17c3b95d1ba124bc0c7c4f3292ffffd8669f1bca616b2d6eee929280ffff", + "cborBytes": [ + 159, 191, 27, 37, 215, 199, 158, 232, 177, 66, 5, 27, 95, 100, 96, 166, 171, 123, 136, 73, 27, 112, 50, 92, 209, + 201, 9, 184, 198, 27, 140, 56, 236, 136, 245, 40, 119, 205, 27, 131, 4, 24, 229, 214, 98, 113, 151, 27, 181, 40, + 28, 88, 47, 20, 115, 99, 27, 255, 100, 0, 175, 19, 26, 178, 117, 69, 39, 239, 202, 3, 222, 255, 74, 96, 203, 48, + 73, 236, 78, 42, 103, 156, 254, 216, 102, 159, 27, 52, 98, 10, 73, 210, 87, 206, 218, 159, 27, 83, 168, 1, 173, + 27, 68, 136, 125, 216, 102, 159, 27, 188, 157, 151, 191, 209, 160, 154, 10, 159, 27, 242, 159, 45, 148, 250, 66, + 194, 20, 65, 44, 255, 255, 27, 136, 190, 43, 6, 116, 198, 184, 192, 74, 186, 93, 92, 8, 146, 76, 23, 195, 185, 93, + 27, 161, 36, 188, 12, 124, 79, 50, 146, 255, 255, 216, 102, 159, 27, 202, 97, 107, 45, 110, 238, 146, 146, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 383, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34020732f7406713f818af03" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18005998725564877158" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16925812666036937199" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9520320765218364600" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "216308302579772535" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dbe05923169" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6125697741979271391" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9e5215bbb1222465ff4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12092792734132371310" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed279a66e6d4cb38895fe1" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "392c703fda9e" + } + ] + } + ] + }, + "cborHex": "9fbf1bfffffffffffffff84c34020732f7406713f818af03ffd8799f1bf9e22870e76e49661beae490f165f061ef1b841ef94b8e9d9cb8bf1b03007b41513c2c77462dbe059231691b5502d9a4181640df4ad9e5215bbb1222465ff41ba7d23aebdc627f6e4bed279a66e6d4cb38895fe1ff46392c703fda9effff", + "cborBytes": [ + 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 248, 76, 52, 2, 7, 50, 247, 64, 103, 19, 248, 24, 175, 3, 255, + 216, 121, 159, 27, 249, 226, 40, 112, 231, 110, 73, 102, 27, 234, 228, 144, 241, 101, 240, 97, 239, 27, 132, 30, + 249, 75, 142, 157, 156, 184, 191, 27, 3, 0, 123, 65, 81, 60, 44, 119, 70, 45, 190, 5, 146, 49, 105, 27, 85, 2, + 217, 164, 24, 22, 64, 223, 74, 217, 229, 33, 91, 187, 18, 34, 70, 95, 244, 27, 167, 210, 58, 235, 220, 98, 127, + 110, 75, 237, 39, 154, 102, 230, 212, 203, 56, 137, 95, 225, 255, 70, 57, 44, 112, 63, 218, 158, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 384, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7517560483295107762" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "21c78085ed14" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12232677346720094648" + } + }, + { + "_tag": "ByteArray", + "bytearray": "20" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5799185800190028312" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15194683390771414108" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7475525062763161558" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5873ea169837d32" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9475bf4ed6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14162783407493365411" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aae427c759fa729a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c01a7d9eaa" + } + ] + } + ] + } + ] + }, + "cborHex": "9fa09fd8669f1b6853bd6e08519ab29f4621c78085ed141ba9c3333c3f3819b84120ffffbf1b507ad8c286d0ea181bd2de5c09fd75445c1b67be6670038727d648b5873ea169837d32459475bf4ed61bc48c5078b2703ea3ff48aae427c759fa729a9f45c01a7d9eaaffffff", + "cborBytes": [ + 159, 160, 159, 216, 102, 159, 27, 104, 83, 189, 110, 8, 81, 154, 178, 159, 70, 33, 199, 128, 133, 237, 20, 27, + 169, 195, 51, 60, 63, 56, 25, 184, 65, 32, 255, 255, 191, 27, 80, 122, 216, 194, 134, 208, 234, 24, 27, 210, 222, + 92, 9, 253, 117, 68, 92, 27, 103, 190, 102, 112, 3, 135, 39, 214, 72, 181, 135, 62, 161, 105, 131, 125, 50, 69, + 148, 117, 191, 78, 214, 27, 196, 140, 80, 120, 178, 112, 62, 163, 255, 72, 170, 228, 39, 199, 89, 250, 114, 154, + 159, 69, 192, 26, 125, 158, 170, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 385, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13291061580188600020" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9a9409e69b900cfcec83ca58" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c95b61b9a90caa9f167b3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15807604267827992920" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1047927071518794976" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b901e369836c43345842a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2513438007826711226" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a57069dcdbf5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4572168498109220582" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14088320111134097654" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9093026773673758890" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f72a3364eb6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9243835584685733208" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0aa14cf7b6c2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16465829457715101380" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11940978457189189352" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c43f4a0a" + } + ] + }, + "cborHex": "9fd8669f1bb87356168efbc6d49f4c9a9409e69b900cfcec83ca58bf4bc95b61b9a90caa9f167b3f1bdb5fe4544dd61958ffbf1b0e8afc1e9064a4e04bb901e369836c43345842a41b22e1868d257a02ba46a57069dcdbf51b3f739b064f0806e61bc383c47f7a23c0f61b7e30ebac79f0d0aa463f72a3364eb61b8048b37d034ef558460aa14cf7b6c21be48260a6ef457ec41ba5b6e0a40b5a86e8ffffff44c43f4a0aff", + "cborBytes": [ + 159, 216, 102, 159, 27, 184, 115, 86, 22, 142, 251, 198, 212, 159, 76, 154, 148, 9, 230, 155, 144, 12, 252, 236, + 131, 202, 88, 191, 75, 201, 91, 97, 185, 169, 12, 170, 159, 22, 123, 63, 27, 219, 95, 228, 84, 77, 214, 25, 88, + 255, 191, 27, 14, 138, 252, 30, 144, 100, 164, 224, 75, 185, 1, 227, 105, 131, 108, 67, 52, 88, 66, 164, 27, 34, + 225, 134, 141, 37, 122, 2, 186, 70, 165, 112, 105, 220, 219, 245, 27, 63, 115, 155, 6, 79, 8, 6, 230, 27, 195, + 131, 196, 127, 122, 35, 192, 246, 27, 126, 48, 235, 172, 121, 240, 208, 170, 70, 63, 114, 163, 54, 78, 182, 27, + 128, 72, 179, 125, 3, 78, 245, 88, 70, 10, 161, 76, 247, 182, 194, 27, 228, 130, 96, 166, 239, 69, 126, 196, 27, + 165, 182, 224, 164, 11, 90, 134, 232, 255, 255, 255, 68, 196, 63, 74, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 386, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f9" + } + ] + }, + "cborHex": "9f41f9ff", + "cborBytes": [159, 65, 249, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 387, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bdadfac8fa3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12193105869275337027" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15351923595356058889" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18172272906231510262" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf2ae0149682e2455fd82d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "724fc1a285" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "236778464434826180" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "179604" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1449063627418223575" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10313462530882715756" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4970461374436575202" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6496610647988795612" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7588464646273213456" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf04" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02" + } + ] + }, + "cborHex": "9fbf462bdadfac8fa31ba9369d2faee31143ffbf1bd50cfd2c0822b5091bfc30e1ed696274f6ffbf4bcf2ae0149682e2455fd82d45724fc1a285ff9fbf14081b034934c24719abc4431796041b141c1bb11133c3d71b8f20c7875d90c06c1b44faa049111787e21b5a2898f6bd6478dcffbf1b694fa463efb9a41042cf04ffff4102ff", + "cborBytes": [ + 159, 191, 70, 43, 218, 223, 172, 143, 163, 27, 169, 54, 157, 47, 174, 227, 17, 67, 255, 191, 27, 213, 12, 253, 44, + 8, 34, 181, 9, 27, 252, 48, 225, 237, 105, 98, 116, 246, 255, 191, 75, 207, 42, 224, 20, 150, 130, 226, 69, 95, + 216, 45, 69, 114, 79, 193, 162, 133, 255, 159, 191, 20, 8, 27, 3, 73, 52, 194, 71, 25, 171, 196, 67, 23, 150, 4, + 27, 20, 28, 27, 177, 17, 51, 195, 215, 27, 143, 32, 199, 135, 93, 144, 192, 108, 27, 68, 250, 160, 73, 17, 23, + 135, 226, 27, 90, 40, 152, 246, 189, 100, 120, 220, 255, 191, 27, 105, 79, 164, 99, 239, 185, 164, 16, 66, 207, 4, + 255, 255, 65, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 388, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "753672211645791133" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7797" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3858994736035734298" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4206060249308920918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b3298dc57f37eda0d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7722626078613588292" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6522e905dcf1f510" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9402918563297469498" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5587845679651653128" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13938573491485086370" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8701e273bd6e06a31880" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b0a7594e2243afb9d4277971b358de7443f83231a41da1b3a5eed8317f2fc56493b3298dc57f37eda0d1b6b2c478094ee4944486522e905dcf1f5101b827de09d5145a43a1b4d8c040a3b5686081bc16fc2bda3a512a24a8701e273bd6e06a31880ffff", + "cborBytes": [ + 159, 191, 27, 10, 117, 148, 226, 36, 58, 251, 157, 66, 119, 151, 27, 53, 141, 231, 68, 63, 131, 35, 26, 65, 218, + 27, 58, 94, 237, 131, 23, 242, 252, 86, 73, 59, 50, 152, 220, 87, 243, 126, 218, 13, 27, 107, 44, 71, 128, 148, + 238, 73, 68, 72, 101, 34, 233, 5, 220, 241, 245, 16, 27, 130, 125, 224, 157, 81, 69, 164, 58, 27, 77, 140, 4, 10, + 59, 86, 134, 8, 27, 193, 111, 194, 189, 163, 165, 18, 162, 74, 135, 1, 226, 115, 189, 110, 6, 163, 24, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 389, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cebef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15173641386123603905" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82964a0be282c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38b5b5b86081b0dae77b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a40ec3057660" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06abcbe120a7b031" + } + } + ] + } + ] + }, + "cborHex": "9fbf437cebef1bd2939a7281102fc14782964a0be282c94a38b5b5b86081b0dae77b46a40ec30576604806abcbe120a7b031ffff", + "cborBytes": [ + 159, 191, 67, 124, 235, 239, 27, 210, 147, 154, 114, 129, 16, 47, 193, 71, 130, 150, 74, 11, 226, 130, 201, 74, + 56, 181, 181, 184, 96, 129, 176, 218, 231, 123, 70, 164, 14, 195, 5, 118, 96, 72, 6, 171, 203, 225, 32, 167, 176, + 49, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 390, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "127152cd07051ef894" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "901bde" + } + } + ] + } + ] + }, + "cborHex": "9fbf49127152cd07051ef89443901bdeffff", + "cborBytes": [159, 191, 73, 18, 113, 82, 205, 7, 5, 30, 248, 148, 67, 144, 27, 222, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 391, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1552d09bf612bbcb818b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92b365b92abf660c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4256619244644398461" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "881f916233ecb2457365d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6870077734232645209" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2173789720394212131" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13347522407125849421" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c13ca5f4cc8" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c162f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bf54cc9cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7dca180ff8a7406e049e60" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17556898459526484495" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c50b2d6da7f15ccf8720" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "032ee3db" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "79" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3166603051993416540" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "729c9b525196fe3a4983e2" + }, + { + "_tag": "ByteArray", + "bytearray": "9f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3942936090126679659" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16919806852469354822" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0a4399c92f9d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3371230631612887893" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9601695196778499139" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8aa3b29bed" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3328690263909544791" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cdaea0d05ce" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3351145189726667372" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9011324132920342564" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13684898624198080492" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17806954755132469286" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14447998105833111483" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a5907f0487b97167fd1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14736241201259601683" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15038772857819908398" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17301040446618316555" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7034442279881942704" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16928194514482124486" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "538e2d2279d89f917308" + } + ] + }, + "cborHex": "9fbf4a1552d09bf612bbcb818b4892b365b92abf660c417a1b3b128ca6851ef57d4b881f916233ecb2457365d01b5f576b4cd041de59ffd8669f1b1e2ada3bc47e23239f1bb93bece93c4d954d461c13ca5f4cc8ffff9fbf432c162f453bf54cc9cd4b7dca180ff8a7406e049e601bf3a6a220e5add20f4ac50b2d6da7f15ccf872044032ee3dbff4179d8669f1b2bf208b2cabc435c9f4b729c9b525196fe3a4983e2419f1b36b81f7bc0117e6b1beacf3aaff5a7f146ffff460a4399c92f9d1b2ec90465dd33b355ffd8669f1b854012e8d58e8c439f458aa3b29bedbf1b2e31e228aba13357461cdaea0d05ce1b2e81a8cb806ac26c1b7d0ea78e0a9f38241bbdea86cb028ef7ec1bf71f0301271fb0261bc88199ba7db2ffbb4a4a5907f0487b97167fd11bcc81a54bed8ddf131bd0b4743c4024492e1bf019a49f1159af0b4184ffa0d8669f1b619f5bfbc55a26b080ff1beaed0738b46c56c6ffff4a538e2d2279d89f917308ff", + "cborBytes": [ + 159, 191, 74, 21, 82, 208, 155, 246, 18, 187, 203, 129, 139, 72, 146, 179, 101, 185, 42, 191, 102, 12, 65, 122, + 27, 59, 18, 140, 166, 133, 30, 245, 125, 75, 136, 31, 145, 98, 51, 236, 178, 69, 115, 101, 208, 27, 95, 87, 107, + 76, 208, 65, 222, 89, 255, 216, 102, 159, 27, 30, 42, 218, 59, 196, 126, 35, 35, 159, 27, 185, 59, 236, 233, 60, + 77, 149, 77, 70, 28, 19, 202, 95, 76, 200, 255, 255, 159, 191, 67, 44, 22, 47, 69, 59, 245, 76, 201, 205, 75, 125, + 202, 24, 15, 248, 167, 64, 110, 4, 158, 96, 27, 243, 166, 162, 32, 229, 173, 210, 15, 74, 197, 11, 45, 109, 167, + 241, 92, 207, 135, 32, 68, 3, 46, 227, 219, 255, 65, 121, 216, 102, 159, 27, 43, 242, 8, 178, 202, 188, 67, 92, + 159, 75, 114, 156, 155, 82, 81, 150, 254, 58, 73, 131, 226, 65, 159, 27, 54, 184, 31, 123, 192, 17, 126, 107, 27, + 234, 207, 58, 175, 245, 167, 241, 70, 255, 255, 70, 10, 67, 153, 201, 47, 157, 27, 46, 201, 4, 101, 221, 51, 179, + 85, 255, 216, 102, 159, 27, 133, 64, 18, 232, 213, 142, 140, 67, 159, 69, 138, 163, 178, 155, 237, 191, 27, 46, + 49, 226, 40, 171, 161, 51, 87, 70, 28, 218, 234, 13, 5, 206, 27, 46, 129, 168, 203, 128, 106, 194, 108, 27, 125, + 14, 167, 142, 10, 159, 56, 36, 27, 189, 234, 134, 203, 2, 142, 247, 236, 27, 247, 31, 3, 1, 39, 31, 176, 38, 27, + 200, 129, 153, 186, 125, 178, 255, 187, 74, 74, 89, 7, 240, 72, 123, 151, 22, 127, 209, 27, 204, 129, 165, 75, + 237, 141, 223, 19, 27, 208, 180, 116, 60, 64, 36, 73, 46, 27, 240, 25, 164, 159, 17, 89, 175, 11, 65, 132, 255, + 160, 216, 102, 159, 27, 97, 159, 91, 251, 197, 90, 38, 176, 128, 255, 27, 234, 237, 7, 56, 180, 108, 86, 198, 255, + 255, 74, 83, 142, 45, 34, 121, 216, 159, 145, 115, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 392, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "774087814112732796" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cef1d2f8c19e9e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15429183371118487306" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "014dc0f42ca4bb1059a37380" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11538173168540062627" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "505f11d8fb74d7e8bacf9450" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56d8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12428404043486981371" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14824947878330956328" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7435" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd9a64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10479582862369255251" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cb5a9bb137e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7307809820082670459" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f6d6ed60381fd3520332b36" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1034fbd612" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0dfe265eff05fc5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8572360114464220677" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3856160511850404387" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b0abe1cc40125e67c9f47cef1d2f8c19e9effff1bd61f788759e1a70abf4c014dc0f42ca4bb1059a373801ba01fd35d6bc613a341344c505f11d8fb74d7e8bacf94504256d81bac7a8fa10911ecfb41601bcdbccb8ca598fa2842743541a843dd9a641b916ef51711ca6f53ffffbf460cb5a9bb137e1b656a8e501c238b7b4c3f6d6ed60381fd3520332b36451034fbd61248b0dfe265eff05fc51b76f7241b155de60541fc1b3583d58e01bb5a23ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 10, 190, 28, 196, 1, 37, 230, 124, 159, 71, 206, 241, 210, 248, 193, 158, 158, 255, + 255, 27, 214, 31, 120, 135, 89, 225, 167, 10, 191, 76, 1, 77, 192, 244, 44, 164, 187, 16, 89, 163, 115, 128, 27, + 160, 31, 211, 93, 107, 198, 19, 163, 65, 52, 76, 80, 95, 17, 216, 251, 116, 215, 232, 186, 207, 148, 80, 66, 86, + 216, 27, 172, 122, 143, 161, 9, 17, 236, 251, 65, 96, 27, 205, 188, 203, 140, 165, 152, 250, 40, 66, 116, 53, 65, + 168, 67, 221, 154, 100, 27, 145, 110, 245, 23, 17, 202, 111, 83, 255, 255, 191, 70, 12, 181, 169, 187, 19, 126, + 27, 101, 106, 142, 80, 28, 35, 139, 123, 76, 63, 109, 110, 214, 3, 129, 253, 53, 32, 51, 43, 54, 69, 16, 52, 251, + 214, 18, 72, 176, 223, 226, 101, 239, 240, 95, 197, 27, 118, 247, 36, 27, 21, 93, 230, 5, 65, 252, 27, 53, 131, + 213, 142, 1, 187, 90, 35, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 393, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "91126c32839d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13177192909246648227" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16754420876054079059" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5717447242248543275" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d2d86b6ef74" + }, + { + "_tag": "ByteArray", + "bytearray": "65c82bb10d36" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "de6fc4b96e8d456fcdc45f0d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15533187529421377112" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7126499306862175839" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06" + } + ] + }, + "cborHex": "9f4691126c32839d9f1bb6decb229c714fa3d8669f1be883a9049e97a6539f1b4f5873f97842dc2b469d2d86b6ef744665c82bb10d36ffffbf4cde6fc4b96e8d456fcdc45f0d1bd790f7c278b04e58ffffd87f9f0f80ff1b62e6695c9d96665f4106ff", + "cborBytes": [ + 159, 70, 145, 18, 108, 50, 131, 157, 159, 27, 182, 222, 203, 34, 156, 113, 79, 163, 216, 102, 159, 27, 232, 131, + 169, 4, 158, 151, 166, 83, 159, 27, 79, 88, 115, 249, 120, 66, 220, 43, 70, 157, 45, 134, 182, 239, 116, 70, 101, + 200, 43, 177, 13, 54, 255, 255, 191, 76, 222, 111, 196, 185, 110, 141, 69, 111, 205, 196, 95, 13, 27, 215, 144, + 247, 194, 120, 176, 78, 88, 255, 255, 216, 127, 159, 15, 128, 255, 27, 98, 230, 105, 92, 157, 150, 102, 95, 65, 6, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 394, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff79f05ffffff", + "cborBytes": [159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 5, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 395, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1f23fb151e1ff086dc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14674766742231805174" + } + }, + { + "_tag": "ByteArray", + "bytearray": "39a639b88092ebc6747808" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "07028e06" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0450a1fc0404b7f875040452" + } + ] + }, + "cborHex": "9f9fd9050a9f491f23fb151e1ff086dc1bcba73e9a10716cf64b39a639b88092ebc6747808ff9f4407028e06ffff4c0450a1fc0404b7f875040452ff", + "cborBytes": [ + 159, 159, 217, 5, 10, 159, 73, 31, 35, 251, 21, 30, 31, 240, 134, 220, 27, 203, 167, 62, 154, 16, 113, 108, 246, + 75, 57, 166, 57, 184, 128, 146, 235, 198, 116, 120, 8, 255, 159, 68, 7, 2, 142, 6, 255, 255, 76, 4, 80, 161, 252, + 4, 4, 183, 248, 117, 4, 4, 82, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 396, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12029657860698190055" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb44019098a4b9749c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12868794398881425792" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d633e381dbcd03477d37e469" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6554368954944763281" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13220175013710041930" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7cf9f4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5db" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3ab2e016c4" + }, + { + "_tag": "ByteArray", + "bytearray": "d4286bc82ff6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12575528014785934624" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17648938466040648745" + } + }, + { + "_tag": "ByteArray", + "bytearray": "37bdb388d981ad52631a50" + }, + { + "_tag": "ByteArray", + "bytearray": "42022471" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2005195495689304647" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8690711151827308932" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16902679527181143128" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8e" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "00" + } + ] + }, + "cborHex": "9fbf41071ba6f1ee16a466b0e749bb44019098a4b9749c1bb2972452f0dd29804cd633e381dbcd03477d37e4691b5af5cbd68654b59142f0c31bb7777f21a8ae934a44f7cf9f4c42e5dbff453ab2e016c446d4286bc82ff6d8669f1bae854019f849f5209f1bf4eda006db1494294b37bdb388d981ad52631a504442022471d8669f1b1bd3e2ade9c63a479f1b789b9bbf4a3151841bea926179c9e64c58ffff418effff4100ff", + "cborBytes": [ + 159, 191, 65, 7, 27, 166, 241, 238, 22, 164, 102, 176, 231, 73, 187, 68, 1, 144, 152, 164, 185, 116, 156, 27, 178, + 151, 36, 82, 240, 221, 41, 128, 76, 214, 51, 227, 129, 219, 205, 3, 71, 125, 55, 228, 105, 27, 90, 245, 203, 214, + 134, 84, 181, 145, 66, 240, 195, 27, 183, 119, 127, 33, 168, 174, 147, 74, 68, 247, 207, 159, 76, 66, 229, 219, + 255, 69, 58, 178, 224, 22, 196, 70, 212, 40, 107, 200, 47, 246, 216, 102, 159, 27, 174, 133, 64, 25, 248, 73, 245, + 32, 159, 27, 244, 237, 160, 6, 219, 20, 148, 41, 75, 55, 189, 179, 136, 217, 129, 173, 82, 99, 26, 80, 68, 66, 2, + 36, 113, 216, 102, 159, 27, 27, 211, 226, 173, 233, 198, 58, 71, 159, 27, 120, 155, 155, 191, 74, 49, 81, 132, 27, + 234, 146, 97, 121, 201, 230, 76, 88, 255, 255, 65, 142, 255, 255, 65, 0, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 397, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3720598607171810502" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16430262784122764796" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "88956ff4ca42b84d21a8aadc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "174667943501335820" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6004098654220696577" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9518900143077259705" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7038890fd4d71" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbb169" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3726415d0a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e534bfcf57" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "33ec637d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15157271834702271219" + } + }, + { + "_tag": "ByteArray", + "bytearray": "15d62b80767ae8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17531360365073305753" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1154" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13995973959671008617" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f30d922e25a60d27b2f7c2e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5839110424727231770" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7327" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fb9eab3fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f020b05020a845" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8b0455e259b231c2c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f64880f560404130" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ee5" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8722667799560556698" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8472234319208496094" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b33a238b87c49f4c69fd8669f1be40404f36df53dfc9f4c88956ff4ca42b84d21a8aadc1b026c8b91b60b8d0c1b5352d7ea3939bc011b8419ed3f3088f9b9ffffbf42c3b7414447c7038890fd4d7143cbb16946f3726415d0a945e534bfcf57ff4433ec637d9f1bd259726d4f7652f34715d62b80767ae81bf34be75ded8e90994211541bc23bb02997cecd69ffffffbf4c0f30d922e25a60d27b2f7c2e1b5108affe8e259d1a427327456fb9eab3fc47f020b05020a84549c8b0455e259b231c2c48f64880f560404130425ee5ff9fa09f1b790d2426268b909a1b75936c39ba4bbbdeffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 51, 162, 56, 184, 124, 73, 244, 198, 159, 216, 102, 159, 27, 228, 4, 4, 243, 109, 245, 61, + 252, 159, 76, 136, 149, 111, 244, 202, 66, 184, 77, 33, 168, 170, 220, 27, 2, 108, 139, 145, 182, 11, 141, 12, 27, + 83, 82, 215, 234, 57, 57, 188, 1, 27, 132, 25, 237, 63, 48, 136, 249, 185, 255, 255, 191, 66, 195, 183, 65, 68, + 71, 199, 3, 136, 144, 253, 77, 113, 67, 203, 177, 105, 70, 243, 114, 100, 21, 208, 169, 69, 229, 52, 191, 207, 87, + 255, 68, 51, 236, 99, 125, 159, 27, 210, 89, 114, 109, 79, 118, 82, 243, 71, 21, 214, 43, 128, 118, 122, 232, 27, + 243, 75, 231, 93, 237, 142, 144, 153, 66, 17, 84, 27, 194, 59, 176, 41, 151, 206, 205, 105, 255, 255, 255, 191, + 76, 15, 48, 217, 34, 226, 90, 96, 210, 123, 47, 124, 46, 27, 81, 8, 175, 254, 142, 37, 157, 26, 66, 115, 39, 69, + 111, 185, 234, 179, 252, 71, 240, 32, 176, 80, 32, 168, 69, 73, 200, 176, 69, 94, 37, 155, 35, 28, 44, 72, 246, + 72, 128, 245, 96, 64, 65, 48, 66, 94, 229, 255, 159, 160, 159, 27, 121, 13, 36, 38, 38, 139, 144, 154, 27, 117, + 147, 108, 57, 186, 75, 187, 222, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 398, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa465f74c0ab633929e0b547" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3501714180741670422" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9504476128729000432" + } + } + ] + }, + "cborHex": "9f9f4cfa465f74c0ab633929e0b5471b3098967e980e2616ff1b83e6aeaea51269f0ff", + "cborBytes": [ + 159, 159, 76, 250, 70, 95, 116, 192, 171, 99, 57, 41, 224, 181, 71, 27, 48, 152, 150, 126, 152, 14, 38, 22, 255, + 27, 131, 230, 174, 174, 165, 18, 105, 240, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 399, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05a9a645e248abd235" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1cd0d3a10cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "478e3a86" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d11a48ef16b7e2a69" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7075857331717100479" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16428682777614858679" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b238f2d1c56acf08829e5cb8" + }, + { + "_tag": "ByteArray", + "bytearray": "4182e35e94591e93a2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16155837536741981753" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2115399108861853076" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c384f5d6dbd9a2fd2650a629" + }, + { + "_tag": "ByteArray", + "bytearray": "45" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8742081937542974716" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13472102709300594598" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2ee160f3" + }, + { + "_tag": "ByteArray", + "bytearray": "78da05cafc3690745d716154" + }, + { + "_tag": "ByteArray", + "bytearray": "782d0606ac" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11414790008542138271" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10276762636508346794" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17826156778025163295" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf4905a9a645e248abd23546e1cd0d3a10cb44478e3a86490d11a48ef16b7e2a69ff9fd8669f1b62327ec0f25753bf9f1be3fe67f17f4fb9b74cb238f2d1c56acf08829e5cb8494182e35e94591e93a21be03510a4726d7e391b1d5b684819e37d94ffffff9f9f4cc384f5d6dbd9a2fd2650a62941451b79521d34649b8cfc1bbaf686092d7087a6ff9f442ee160f34c78da05cafc3690745d71615445782d0606ac1b9e697b08dcd50f9fff9f1b8e9e652b561639aa1bf7633b24809c9a1fffffff", + "cborBytes": [ + 159, 191, 73, 5, 169, 166, 69, 226, 72, 171, 210, 53, 70, 225, 205, 13, 58, 16, 203, 68, 71, 142, 58, 134, 73, 13, + 17, 164, 142, 241, 107, 126, 42, 105, 255, 159, 216, 102, 159, 27, 98, 50, 126, 192, 242, 87, 83, 191, 159, 27, + 227, 254, 103, 241, 127, 79, 185, 183, 76, 178, 56, 242, 209, 197, 106, 207, 8, 130, 158, 92, 184, 73, 65, 130, + 227, 94, 148, 89, 30, 147, 162, 27, 224, 53, 16, 164, 114, 109, 126, 57, 27, 29, 91, 104, 72, 25, 227, 125, 148, + 255, 255, 255, 159, 159, 76, 195, 132, 245, 214, 219, 217, 162, 253, 38, 80, 166, 41, 65, 69, 27, 121, 82, 29, 52, + 100, 155, 140, 252, 27, 186, 246, 134, 9, 45, 112, 135, 166, 255, 159, 68, 46, 225, 96, 243, 76, 120, 218, 5, 202, + 252, 54, 144, 116, 93, 113, 97, 84, 69, 120, 45, 6, 6, 172, 27, 158, 105, 123, 8, 220, 213, 15, 159, 255, 159, 27, + 142, 158, 101, 43, 86, 22, 57, 170, 27, 247, 99, 59, 36, 128, 156, 154, 31, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 400, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bad3947649" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "203213250063842933" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8e8ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e36df01f3ca396120" + } + } + ] + } + ] + }, + "cborHex": "9fbf45bad39476491b02d1f55fcfb53e7543f8e8ad498e36df01f3ca396120ffff", + "cborBytes": [ + 159, 191, 69, 186, 211, 148, 118, 73, 27, 2, 209, 245, 95, 207, 181, 62, 117, 67, 248, 232, 173, 73, 142, 54, 223, + 1, 243, 202, 57, 97, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 401, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6257699926309017421" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b0aca68d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15438576399295768689" + } + } + ] + }, + "cborHex": "9f1b56d7d0eda2a3174d8044b0aca68d1bd640d77025c0e871ff", + "cborBytes": [ + 159, 27, 86, 215, 208, 237, 162, 163, 23, 77, 128, 68, 176, 172, 166, 141, 27, 214, 64, 215, 112, 37, 192, 232, + 113, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 402, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13439642900775854795" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17326909616123427699" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4681778209389917189" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "907504955812821415" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16436437127992222359" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fa" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "219d20c4cb" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e6f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a07424d6bfb8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30ec27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc76b00b84ea19" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3377d7771d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8654025160597942402" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a778254036f273593bade8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17325241441237417052" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d468bea6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15913849374043995671" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14216242484988283961" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17415939313306367446" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14400193215809741883" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11702967084611586780" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1bba83340310d862cb9f1bf0758c7e74563b731b40f90479efd9b4051b0c981af2fb2139a71be419f47be304a297ffffff9fa080ff41fa9f45219d20c4cbbf421e6f46a07424d6bfb84330ec2747bc76b00b84ea19453377d7771d1b7819460856bbb0824ba778254036f273593bade81bf06f9f4c38d53c5c44d468bea61bdcd959b0c4f6fe17ffd8669f1bc54a3d381e8b0c399f1bf1b1d8882762f5d61bc7d7c36f2d54643b1ba2694a8ef85ccadcffffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 186, 131, 52, 3, 16, 216, 98, 203, 159, 27, 240, 117, 140, 126, 116, 86, 59, 115, 27, + 64, 249, 4, 121, 239, 217, 180, 5, 27, 12, 152, 26, 242, 251, 33, 57, 167, 27, 228, 25, 244, 123, 227, 4, 162, + 151, 255, 255, 255, 159, 160, 128, 255, 65, 250, 159, 69, 33, 157, 32, 196, 203, 191, 66, 30, 111, 70, 160, 116, + 36, 214, 191, 184, 67, 48, 236, 39, 71, 188, 118, 176, 11, 132, 234, 25, 69, 51, 119, 215, 119, 29, 27, 120, 25, + 70, 8, 86, 187, 176, 130, 75, 167, 120, 37, 64, 54, 242, 115, 89, 59, 173, 232, 27, 240, 111, 159, 76, 56, 213, + 60, 92, 68, 212, 104, 190, 166, 27, 220, 217, 89, 176, 196, 246, 254, 23, 255, 216, 102, 159, 27, 197, 74, 61, 56, + 30, 139, 12, 57, 159, 27, 241, 177, 216, 136, 39, 98, 245, 214, 27, 199, 215, 195, 111, 45, 84, 100, 59, 27, 162, + 105, 74, 142, 248, 92, 202, 220, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 403, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "97" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5927275164817462075" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "2c950d" + } + ] + }, + "cborHex": "9f41971b5241e95bbcf0933b80432c950dff", + "cborBytes": [159, 65, 151, 27, 82, 65, 233, 91, 188, 240, 147, 59, 128, 67, 44, 149, 13, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 404, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48a68013ef118df590" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13541870569582971845" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c700d7216961db9f4875ac8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10611639544392481370" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7588f8f318ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "943217911791203705" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e62f6355" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "182241f5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7d499b242d2b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4950106435055379489" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4948a68013ef118df5901bbbee6388fe4f4bc54c4c700d7216961db9f4875ac81b93441df158007a5a467588f8f318ee1b0d16fbb18219b57944e62f635544182241f547f7d499b242d2b51b44b24f936dd9e421ffff", + "cborBytes": [ + 159, 191, 73, 72, 166, 128, 19, 239, 17, 141, 245, 144, 27, 187, 238, 99, 136, 254, 79, 75, 197, 76, 76, 112, 13, + 114, 22, 150, 29, 185, 244, 135, 90, 200, 27, 147, 68, 29, 241, 88, 0, 122, 90, 70, 117, 136, 248, 243, 24, 238, + 27, 13, 22, 251, 177, 130, 25, 181, 121, 68, 230, 47, 99, 85, 68, 24, 34, 65, 245, 71, 247, 212, 153, 178, 66, + 210, 181, 27, 68, 178, 79, 147, 109, 217, 228, 33, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 405, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14071509792225957523" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "99" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bc3480b9a1b0f16939f4199ffffff", + "cborBytes": [159, 216, 102, 159, 27, 195, 72, 11, 154, 27, 15, 22, 147, 159, 65, 153, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 406, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "676273014490873836" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05f9f7005838a8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1883646881474959642" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb67d74e5bb5c9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6582863974719617335" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17993728754061954869" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12421455691382076284" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e" + } + } + ] + } + ] + }, + "cborHex": "9f80bf1b09629ab93fe93fec4705f9f7005838a81b1a240edbd496591a47fb67d74e5bb5c91b5b5b07e851e0f9371bf9b690f78a984f351bac61e023be15337c414effff", + "cborBytes": [ + 159, 128, 191, 27, 9, 98, 154, 185, 63, 233, 63, 236, 71, 5, 249, 247, 0, 88, 56, 168, 27, 26, 36, 14, 219, 212, + 150, 89, 26, 71, 251, 103, 215, 78, 91, 181, 201, 27, 91, 91, 7, 232, 81, 224, 249, 55, 27, 249, 182, 144, 247, + 138, 152, 79, 53, 27, 172, 97, 224, 35, 190, 21, 51, 124, 65, 78, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 407, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12269450893200404266" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1baa45d894be4f2f2ad9050680ff", + "cborBytes": [159, 27, 170, 69, 216, 148, 190, 79, 47, 42, 217, 5, 6, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 408, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "852194405643577195" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8718701711227571160" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "058dd285" + }, + { + "_tag": "ByteArray", + "bytearray": "27ca0608fcaad875cfd0cd85" + }, + { + "_tag": "ByteArray", + "bytearray": "44fa4203e7977ca116b1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6000291218955566404" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2182dcc07eb8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "607d5a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10431934858759766920" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13901787075346073768" + } + }, + { + "_tag": "ByteArray", + "bytearray": "92a88e66b4f0954e77" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17344681149076865097" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd87a809fd8669f1b0bd39a4bfbf5e76b80ffd8669f1b78ff0d03404f4bd89f44058dd2854c27ca0608fcaad875cfd0cd854a44fa4203e7977ca116b11b534551129ebdfd44ffff462182dcc07eb89f43607d5a1b90c5ad7bb86403881bc0ed11b0b11e88a84992a88e66b4f0954e771bf0b4af9be9240049ffffff", + "cborBytes": [ + 159, 216, 122, 128, 159, 216, 102, 159, 27, 11, 211, 154, 75, 251, 245, 231, 107, 128, 255, 216, 102, 159, 27, + 120, 255, 13, 3, 64, 79, 75, 216, 159, 68, 5, 141, 210, 133, 76, 39, 202, 6, 8, 252, 170, 216, 117, 207, 208, 205, + 133, 74, 68, 250, 66, 3, 231, 151, 124, 161, 22, 177, 27, 83, 69, 81, 18, 158, 189, 253, 68, 255, 255, 70, 33, + 130, 220, 192, 126, 184, 159, 67, 96, 125, 90, 27, 144, 197, 173, 123, 184, 100, 3, 136, 27, 192, 237, 17, 176, + 177, 30, 136, 168, 73, 146, 168, 142, 102, 180, 240, 149, 78, 119, 27, 240, 180, 175, 155, 233, 36, 0, 73, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 409, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "faee48fea2d0fa87589ad628" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3528352229714151095" + } + } + ] + }, + "cborHex": "9f4cfaee48fea2d0fa87589ad6281b30f739a8ae91c6b7ff", + "cborBytes": [ + 159, 76, 250, 238, 72, 254, 162, 208, 250, 135, 88, 154, 214, 40, 27, 48, 247, 57, 168, 174, 145, 198, 183, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 410, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7328550194229714090" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9514642899053226568" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13717408832914175366" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2020805990552839751" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9431" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b06b293fe1be20f96ff7d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16137162340853984550" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bff72d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df348814063d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16119104303548920447" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b65b43d92c5ae9caa1b840acd4e52c2aa48ff9f1bbe5e06a7d4a7b586d8669f1b1c0b58577ae226479f429431ffffbf4bb06b293fe1be20f96ff7d11bdff2b7a69169ad2643bff72d46df348814063dff1bdfb28ff61e80f27fffff", + "cborBytes": [ + 159, 191, 27, 101, 180, 61, 146, 197, 174, 156, 170, 27, 132, 10, 205, 78, 82, 194, 170, 72, 255, 159, 27, 190, + 94, 6, 167, 212, 167, 181, 134, 216, 102, 159, 27, 28, 11, 88, 87, 122, 226, 38, 71, 159, 66, 148, 49, 255, 255, + 191, 75, 176, 107, 41, 63, 225, 190, 32, 249, 111, 247, 209, 27, 223, 242, 183, 166, 145, 105, 173, 38, 67, 191, + 247, 45, 70, 223, 52, 136, 20, 6, 61, 255, 27, 223, 178, 143, 246, 30, 128, 242, 127, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 411, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1078963637416362567" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5417816794970720926" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1967094155498415630" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8199308849870886436" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12447808114107013874" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96bc204d514c5b2fdc7c2e" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b0ef93fb62dc402471b4b2ff3ab92600a9e1b1b4c85b65a3ae60e1b71c9cbf5084556241bacbf7f874992daf24b96bc204d514c5b2fdc7c2effff", + "cborBytes": [ + 159, 191, 27, 14, 249, 63, 182, 45, 196, 2, 71, 27, 75, 47, 243, 171, 146, 96, 10, 158, 27, 27, 76, 133, 182, 90, + 58, 230, 14, 27, 113, 201, 203, 245, 8, 69, 86, 36, 27, 172, 191, 127, 135, 73, 146, 218, 242, 75, 150, 188, 32, + 77, 81, 76, 91, 47, 220, 124, 46, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 412, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11976601288154492097" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3453425241798474013" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5663810941444531704" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f92777f902a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1c4bf7950f5af65aa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd996fd0d51a4ed05720082e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10470261331978048707" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1ba6356f6ab4ef2cc19fbf1b2fed07f5dbc3f91d1b4e99e60b07c5a5f8465f92777f902a49d1c4bf7950f5af65aa4cdd996fd0d51a4ed05720082e1b914dd735260f54c3ffffff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 166, 53, 111, 106, 180, 239, 44, 193, 159, 191, 27, 47, 237, 7, 245, 219, 195, 249, 29, + 27, 78, 153, 230, 11, 7, 197, 165, 248, 70, 95, 146, 119, 127, 144, 42, 73, 209, 196, 191, 121, 80, 245, 175, 101, + 170, 76, 221, 153, 111, 208, 213, 26, 78, 208, 87, 32, 8, 46, 27, 145, 77, 215, 53, 38, 15, 84, 195, 255, 255, + 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 413, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e4d1ebb91699" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7779453730605843980" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14871859637372047494" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8037323832031090159" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b08209cc7009ed05dee1a2b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c0c2803" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "303e6657732ea2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5246945552132988" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fa2b50d16bf53" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "edd7bf28a3312176cb9717" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "524009023a8cc3b1b7f6f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "607dbfa9990a20a4f17f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3332fc8158239f9dd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16586476196419698013" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6d9e7830969433e5b8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12956817789387131505" + } + } + ] + } + ] + }, + "cborHex": "9f46e4d1ebb916991b6bf62bf35f59460cd8669f1bce63758bb307d0869fa0d8669f1b6f8a4f7110fe95ef80ffbf4c1b08209cc7009ed05dee1a2b447c0c280347303e6657732ea2485246945552132988473fa2b50d16bf534bedd7bf28a3312176cb97174b524009023a8cc3b1b7f6f54a607dbfa9990a20a4f17f49a3332fc8158239f9dd1be62f0038c3117d5dff9f496d9e7830969433e5b8ff1bb3cfdd219be1ca71ffffff", + "cborBytes": [ + 159, 70, 228, 209, 235, 185, 22, 153, 27, 107, 246, 43, 243, 95, 89, 70, 12, 216, 102, 159, 27, 206, 99, 117, 139, + 179, 7, 208, 134, 159, 160, 216, 102, 159, 27, 111, 138, 79, 113, 16, 254, 149, 239, 128, 255, 191, 76, 27, 8, 32, + 156, 199, 0, 158, 208, 93, 238, 26, 43, 68, 124, 12, 40, 3, 71, 48, 62, 102, 87, 115, 46, 162, 72, 82, 70, 148, + 85, 82, 19, 41, 136, 71, 63, 162, 181, 13, 22, 191, 83, 75, 237, 215, 191, 40, 163, 49, 33, 118, 203, 151, 23, 75, + 82, 64, 9, 2, 58, 140, 195, 177, 183, 246, 245, 74, 96, 125, 191, 169, 153, 10, 32, 164, 241, 127, 73, 163, 51, + 47, 200, 21, 130, 57, 249, 221, 27, 230, 47, 0, 56, 195, 17, 125, 93, 255, 159, 73, 109, 158, 120, 48, 150, 148, + 51, 229, 184, 255, 27, 179, 207, 221, 33, 155, 225, 202, 113, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 414, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6085354268640173867" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16129317474867558174" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13054615937902371387" + } + }, + { + "_tag": "ByteArray", + "bytearray": "40" + }, + { + "_tag": "ByteArray", + "bytearray": "f740" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6523870892890164256" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3f5cc0c4" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11568725437829180993" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eb7989176a8d414d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c884" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af4f96d81ad6c896f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbbf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2141250828118304264" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9841961610086439737" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ec315e17a2bc2de2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3870424451099409596" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12163474090294602052" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17707906700424578363" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3192490448522439249" + } + }, + { + "_tag": "ByteArray", + "bytearray": "314c097de23c750609c125" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2225645490176726194" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10897831845487757856" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "816d" + } + ] + }, + "cborHex": "9fd8669f1b547385773ab45f2b9fd8669f1bdfd6d8c95efb371e9f1bb52b500779d2e23b414042f7401b5a8972031b3a8c20ffffffff9f443f5cc0c4ffd8669f1ba08c5e7df1d56e419f48eb7989176a8d414dbf42c88449af4f96d81ad6c896f642dbbf41c2ffd8669f1b1db740488900a6089f1b8895abf07e3bdb3948ec315e17a2bc2de21b35b6828829c43cbc1ba8cd573d82ad6944ffffd8669f1bf5bf1f52d291053b9f1b2c4e0125fd01ea514b314c097de23c750609c1251b1ee314c805ef14b21b973ce053043cca20ffffa0ffff42816dff", + "cborBytes": [ + 159, 216, 102, 159, 27, 84, 115, 133, 119, 58, 180, 95, 43, 159, 216, 102, 159, 27, 223, 214, 216, 201, 94, 251, + 55, 30, 159, 27, 181, 43, 80, 7, 121, 210, 226, 59, 65, 64, 66, 247, 64, 27, 90, 137, 114, 3, 27, 58, 140, 32, + 255, 255, 255, 255, 159, 68, 63, 92, 192, 196, 255, 216, 102, 159, 27, 160, 140, 94, 125, 241, 213, 110, 65, 159, + 72, 235, 121, 137, 23, 106, 141, 65, 77, 191, 66, 200, 132, 73, 175, 79, 150, 216, 26, 214, 200, 150, 246, 66, + 219, 191, 65, 194, 255, 216, 102, 159, 27, 29, 183, 64, 72, 137, 0, 166, 8, 159, 27, 136, 149, 171, 240, 126, 59, + 219, 57, 72, 236, 49, 94, 23, 162, 188, 45, 226, 27, 53, 182, 130, 136, 41, 196, 60, 188, 27, 168, 205, 87, 61, + 130, 173, 105, 68, 255, 255, 216, 102, 159, 27, 245, 191, 31, 82, 210, 145, 5, 59, 159, 27, 44, 78, 1, 37, 253, 1, + 234, 81, 75, 49, 76, 9, 125, 226, 60, 117, 6, 9, 193, 37, 27, 30, 227, 20, 200, 5, 239, 20, 178, 27, 151, 60, 224, + 83, 4, 60, 202, 32, 255, 255, 160, 255, 255, 66, 129, 109, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 415, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1039405261902583236" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16595262389924933723" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13165549553404236383" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6094969198445928030" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cb82549de8a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10906385389559739329" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66cb87a3079f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16730782328054985323" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "817bd9505936e7c447" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6500dceaf12092774816df0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1876e93" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5befb9a0a3ec8c2de62a5353" + }, + { + "_tag": "ByteArray", + "bytearray": "8324e0ef8e2b" + }, + { + "_tag": "ByteArray", + "bytearray": "d4a027" + } + ] + }, + "cborHex": "9fd8669f1b0e6cb594256015c49f1be64e3737d9e0305b1bb6b56d909376525f80bf1b5495ae3186511e5e469cb82549de8a1b975b43ba3037f3c14666cb87a3079f1be82fade24619b26b49817bd9505936e7c4474cf6500dceaf12092774816df044d1876e93ffffff4c5befb9a0a3ec8c2de62a5353468324e0ef8e2b43d4a027ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 14, 108, 181, 148, 37, 96, 21, 196, 159, 27, 230, 78, 55, 55, 217, 224, 48, 91, 27, 182, + 181, 109, 144, 147, 118, 82, 95, 128, 191, 27, 84, 149, 174, 49, 134, 81, 30, 94, 70, 156, 184, 37, 73, 222, 138, + 27, 151, 91, 67, 186, 48, 55, 243, 193, 70, 102, 203, 135, 163, 7, 159, 27, 232, 47, 173, 226, 70, 25, 178, 107, + 73, 129, 123, 217, 80, 89, 54, 231, 196, 71, 76, 246, 80, 13, 206, 175, 18, 9, 39, 116, 129, 109, 240, 68, 209, + 135, 110, 147, 255, 255, 255, 76, 91, 239, 185, 160, 163, 236, 140, 45, 230, 42, 83, 83, 70, 131, 36, 224, 239, + 142, 43, 67, 212, 160, 39, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 416, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "53cac89a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12449546558147883383" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12704293744037953034" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13594816214869089946" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10582317282259658429" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15291745546795154333" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1509026677224314399" + } + } + ] + }, + "cborHex": "9f4453cac89abf1bacc5aca2551771771bb04eb7d997997e0a1bbcaa7d51a9fe1e9a1b92dbf1802d9066bdff1bd437318e4062fb9d1b14f123c48c8b161fff", + "cborBytes": [ + 159, 68, 83, 202, 200, 154, 191, 27, 172, 197, 172, 162, 85, 23, 113, 119, 27, 176, 78, 183, 217, 151, 153, 126, + 10, 27, 188, 170, 125, 81, 169, 254, 30, 154, 27, 146, 219, 241, 128, 45, 144, 102, 189, 255, 27, 212, 55, 49, + 142, 64, 98, 251, 157, 27, 20, 241, 35, 196, 140, 139, 22, 31, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 417, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "48" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17038452094288312429" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1519105333089642294" + } + }, + { + "_tag": "ByteArray", + "bytearray": "431962fe2c4e0c1770ef" + } + ] + } + ] + } + ] + }, + "cborHex": "9f41489f9f1bec74bde7fa90b86d1b1514f2407b35a7364a431962fe2c4e0c1770efffffff", + "cborBytes": [ + 159, 65, 72, 159, 159, 27, 236, 116, 189, 231, 250, 144, 184, 109, 27, 21, 20, 242, 64, 123, 53, 167, 54, 74, 67, + 25, 98, 254, 44, 78, 12, 23, 112, 239, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 418, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12146341938478215804" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba89079a3936c727c9f80ffffff", + "cborBytes": [159, 216, 102, 159, 27, 168, 144, 121, 163, 147, 108, 114, 124, 159, 128, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 419, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0dbdd4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10800967840048277132" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e684c023ce2c6fbab5555" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12637967306914633810" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "54a4e9fc33903d3ee2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10659980922862827792" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bcff0e120d4996a403" + } + ] + }, + "cborHex": "9f80bf430dbdd41b95e4bf06487ee68c4b9e684c023ce2c6fbab55551baf63144e8ba59852ff4954a4e9fc33903d3ee21b93efdc2b9badf91049bcff0e120d4996a403ff", + "cborBytes": [ + 159, 128, 191, 67, 13, 189, 212, 27, 149, 228, 191, 6, 72, 126, 230, 140, 75, 158, 104, 76, 2, 60, 226, 198, 251, + 171, 85, 85, 27, 175, 99, 20, 78, 139, 165, 152, 82, 255, 73, 84, 164, 233, 252, 51, 144, 61, 62, 226, 27, 147, + 239, 220, 43, 155, 173, 249, 16, 73, 188, 255, 14, 18, 13, 73, 150, 164, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 420, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10694202987438312883" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2ecd42" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4852141695352047069" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7a382ca602c9b914181b2d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16455494067574362259" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2155" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fe5e85ed05" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "673261562566448420" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce6a0bf204090525" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10296568635350041511" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbd94f82ec" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12525896081133154190" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2908081098697800583" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10479488999265780355" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8077915937241088813" + }, + "fields": [] + } + ] + }, + "cborHex": "9f9fd8669f1b946970f4ee2e8db39f432ecd421b4356452a075205dd4b7a382ca602c9b914181b2d1be45da8ab65515093422155ffff45fe5e85ed05ffbf1b0957e7d2f5b2952448ce6a0bf2040905251b8ee4c29ecb77c3a745cbd94f82ec1badd4ec1ee9662f8e1b285b945a01e8fb8742c2a41b916e9fb8dcd9c283ffd8669f1b701a85bf0cb8c32d80ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 148, 105, 112, 244, 238, 46, 141, 179, 159, 67, 46, 205, 66, 27, 67, 86, 69, 42, 7, + 82, 5, 221, 75, 122, 56, 44, 166, 2, 201, 185, 20, 24, 27, 45, 27, 228, 93, 168, 171, 101, 81, 80, 147, 66, 33, + 85, 255, 255, 69, 254, 94, 133, 237, 5, 255, 191, 27, 9, 87, 231, 210, 245, 178, 149, 36, 72, 206, 106, 11, 242, + 4, 9, 5, 37, 27, 142, 228, 194, 158, 203, 119, 195, 167, 69, 203, 217, 79, 130, 236, 27, 173, 212, 236, 30, 233, + 102, 47, 142, 27, 40, 91, 148, 90, 1, 232, 251, 135, 66, 194, 164, 27, 145, 110, 159, 184, 220, 217, 194, 131, + 255, 216, 102, 159, 27, 112, 26, 133, 191, 12, 184, 195, 45, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 421, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0307e704" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10971164925312305495" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0928" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13019752421955948048" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ad6e21ae6492e7c9e74d47c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2030230197100223409" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10914830096176206254" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14240355970563169882" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea67d330d151c377" + }, + { + "_tag": "ByteArray", + "bytearray": "7b4a836857" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f90ddb" + }, + { + "_tag": "ByteArray", + "bytearray": "e578de679a080dfd31" + }, + { + "_tag": "ByteArray", + "bytearray": "469bbdba1e9ace0f7f860644" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11226400856477590787" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d0f0ff" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12971130033012641409" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17239005298162958451" + } + } + ] + }, + "cborHex": "9f440307e704bf1b9841685f317709574209281bb4af73d89e374e104c6ad6e21ae6492e7c9e74d47cffd8669f1b1c2cd39b8e6e1bb19f1b97794424aa5351ae9f1bc59fe84e7c87de5a48ea67d330d151c377457b4a836857ff9f43f90ddb49e578de679a080dfd314c469bbdba1e9ace0f7f8606441b9bcc3019547ce50343d0f0ffffffffd8669f1bb402b60a811e8e8180ff1bef3d3ffb86148073ff", + "cborBytes": [ + 159, 68, 3, 7, 231, 4, 191, 27, 152, 65, 104, 95, 49, 119, 9, 87, 66, 9, 40, 27, 180, 175, 115, 216, 158, 55, 78, + 16, 76, 106, 214, 226, 26, 230, 73, 46, 124, 158, 116, 212, 124, 255, 216, 102, 159, 27, 28, 44, 211, 155, 142, + 110, 27, 177, 159, 27, 151, 121, 68, 36, 170, 83, 81, 174, 159, 27, 197, 159, 232, 78, 124, 135, 222, 90, 72, 234, + 103, 211, 48, 209, 81, 195, 119, 69, 123, 74, 131, 104, 87, 255, 159, 67, 249, 13, 219, 73, 229, 120, 222, 103, + 154, 8, 13, 253, 49, 76, 70, 155, 189, 186, 30, 154, 206, 15, 127, 134, 6, 68, 27, 155, 204, 48, 25, 84, 124, 229, + 3, 67, 208, 240, 255, 255, 255, 255, 216, 102, 159, 27, 180, 2, 182, 10, 129, 30, 142, 129, 128, 255, 27, 239, 61, + 63, 251, 134, 20, 128, 115, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 422, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "14258dad53c073" + } + ] + }, + "cborHex": "9f804714258dad53c073ff", + "cborBytes": [159, 128, 71, 20, 37, 141, 173, 83, 192, 115, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 423, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16511537247390110491" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67f7dbb36315e5c49464" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "478668f868db76f1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b67df3c6de01f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5829c4bd4a160a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "590b0d54975d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74169f8988d8ced5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10645064411179447867" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b571b948bb47" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68cba7" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "675db766" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4250076917550667771" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14520456720672385536" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57135b93e42cd3de0d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15672321085681907222" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7890926006408701985" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "919141161125273674" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12003592862874010786" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5047003142303346760" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1296137987127912773" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14550854561348677622" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10146399624969227719" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e9" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1055542286420505993" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "193781115212377435" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "293c1fb9f8849606f4280754" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1936144301056568779" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0263394a8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12194623808469508552" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d471ee18f1e3759cf4b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13073895116125530405" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14251743581929056409" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "945f26d8713dd688b9fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62" + } + } + ] + } + ] + }, + "cborHex": "9f1be524c3a50651931b9fbf41354a67f7dbb36315e5c4946448478668f868db76f1476b67df3c6de01f475829c4bd4a160a46590b0d54975d4874169f8988d8ced51b93baddae9780f63b46b571b948bb474368cba7ff44675db766bf1b3afb4e704ab1d7fb41661bc98306746c1c6a004957135b93e42cd3de0d1bd97f44fdedef36161b6d82336518e1e821ffbf1b0cc17204274fe04a1ba695541c6c0504a21b460a8e9e254570481b11fccea1cea629451bc9ef05213b8f6ff61b8ccf40b373728dc7ff41e9ffbf1b0ea60a1df37f75891b02b072e5c869ad5bff4c293c1fb9f8849606f4280754bf1b1ade90fbd25fadcb45f0263394a81ba93c01be7158a1c84a1d471ee18f1e3759cf4b1bb56fce56f36069251bc5c85d475ed5a8994a945f26d8713dd688b9fd4162ffff", + "cborBytes": [ + 159, 27, 229, 36, 195, 165, 6, 81, 147, 27, 159, 191, 65, 53, 74, 103, 247, 219, 179, 99, 21, 229, 196, 148, 100, + 72, 71, 134, 104, 248, 104, 219, 118, 241, 71, 107, 103, 223, 60, 109, 224, 31, 71, 88, 41, 196, 189, 74, 22, 10, + 70, 89, 11, 13, 84, 151, 93, 72, 116, 22, 159, 137, 136, 216, 206, 213, 27, 147, 186, 221, 174, 151, 128, 246, 59, + 70, 181, 113, 185, 72, 187, 71, 67, 104, 203, 167, 255, 68, 103, 93, 183, 102, 191, 27, 58, 251, 78, 112, 74, 177, + 215, 251, 65, 102, 27, 201, 131, 6, 116, 108, 28, 106, 0, 73, 87, 19, 91, 147, 228, 44, 211, 222, 13, 27, 217, + 127, 68, 253, 237, 239, 54, 22, 27, 109, 130, 51, 101, 24, 225, 232, 33, 255, 191, 27, 12, 193, 114, 4, 39, 79, + 224, 74, 27, 166, 149, 84, 28, 108, 5, 4, 162, 27, 70, 10, 142, 158, 37, 69, 112, 72, 27, 17, 252, 206, 161, 206, + 166, 41, 69, 27, 201, 239, 5, 33, 59, 143, 111, 246, 27, 140, 207, 64, 179, 115, 114, 141, 199, 255, 65, 233, 255, + 191, 27, 14, 166, 10, 29, 243, 127, 117, 137, 27, 2, 176, 114, 229, 200, 105, 173, 91, 255, 76, 41, 60, 31, 185, + 248, 132, 150, 6, 244, 40, 7, 84, 191, 27, 26, 222, 144, 251, 210, 95, 173, 203, 69, 240, 38, 51, 148, 168, 27, + 169, 60, 1, 190, 113, 88, 161, 200, 74, 29, 71, 30, 225, 143, 30, 55, 89, 207, 75, 27, 181, 111, 206, 86, 243, 96, + 105, 37, 27, 197, 200, 93, 71, 94, 213, 168, 153, 74, 148, 95, 38, 216, 113, 61, 214, 136, 185, 253, 65, 98, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 424, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15304482364055691752" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80d07df2653e7d60" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f0ca06b7443" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4594d3be55" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96a5a1d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2120" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4c13b5b29ba929426d" + }, + { + "_tag": "ByteArray", + "bytearray": "dd7d6929855a8758a05c08b6" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f0bbf1bd464719f9cc521e84880d07df2653e7d60464f0ca06b7443454594d3be554496a5a1d1422120ff494c13b5b29ba929426d4cdd7d6929855a8758a05c08b680ff", + "cborBytes": [ + 159, 11, 191, 27, 212, 100, 113, 159, 156, 197, 33, 232, 72, 128, 208, 125, 242, 101, 62, 125, 96, 70, 79, 12, + 160, 107, 116, 67, 69, 69, 148, 211, 190, 85, 68, 150, 165, 161, 209, 66, 33, 32, 255, 73, 76, 19, 181, 178, 155, + 169, 41, 66, 109, 76, 221, 125, 105, 41, 133, 90, 135, 88, 160, 92, 8, 182, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 425, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fd3445159fb9dd" + } + ] + }, + "cborHex": "9f47fd3445159fb9ddff", + "cborBytes": [159, 71, 253, 52, 69, 21, 159, 185, 221, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 426, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13818683943936112642" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1498193403359136374" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "13dd1a7c9a0ff3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17745247680078197196" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ba2decdc54940b219061b0c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1d0d301f76b8c155bba" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "783b7abdc088cebb" + } + ] + }, + "cborHex": "9fbf1bbfc5d3d51db4b8021b14caa6f66c0e0a764713dd1a7c9a0ff31bf643c8bf2662b1cc4c2ba2decdc54940b219061b0c4ab1d0d301f76b8c155bbaff48783b7abdc088cebbff", + "cborBytes": [ + 159, 191, 27, 191, 197, 211, 213, 29, 180, 184, 2, 27, 20, 202, 166, 246, 108, 14, 10, 118, 71, 19, 221, 26, 124, + 154, 15, 243, 27, 246, 67, 200, 191, 38, 98, 177, 204, 76, 43, 162, 222, 205, 197, 73, 64, 178, 25, 6, 27, 12, 74, + 177, 208, 211, 1, 247, 107, 140, 21, 91, 186, 255, 72, 120, 59, 122, 189, 192, 136, 206, 187, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 427, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c9121aa84a7af8709098cdb0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b174a9f945d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9038ef4a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1584ed2471d04c01b45" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9503436532908701464" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e83ee9cdb423613525f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2556476746167464863" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14501608318050804238" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4409818094224649869" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac60e9ec0fc29a5f09f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22bec9defbf3cd586401db3e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9454761872273901742" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89c0e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae72b199c36a194ec3" + } + } + ] + } + ] + }, + "cborHex": "9f4cc9121aa84a7af8709098cdb0bf46b174a9f945d8449038ef4a4ad1584ed2471d04c01b451b83e2fd2ce17e37184ae83ee9cdb423613525f61b237a6e0e4bdbb39fff1bc9400feeb544a20ebf1b3d32d2314659ae8d4aac60e9ec0fc29a5f09f74c22bec9defbf3cd586401db3e1b83360fd450cb08ae4389c0e549ae72b199c36a194ec3ffff", + "cborBytes": [ + 159, 76, 201, 18, 26, 168, 74, 122, 248, 112, 144, 152, 205, 176, 191, 70, 177, 116, 169, 249, 69, 216, 68, 144, + 56, 239, 74, 74, 209, 88, 78, 210, 71, 29, 4, 192, 27, 69, 27, 131, 226, 253, 44, 225, 126, 55, 24, 74, 232, 62, + 233, 205, 180, 35, 97, 53, 37, 246, 27, 35, 122, 110, 14, 75, 219, 179, 159, 255, 27, 201, 64, 15, 238, 181, 68, + 162, 14, 191, 27, 61, 50, 210, 49, 70, 89, 174, 141, 74, 172, 96, 233, 236, 15, 194, 154, 95, 9, 247, 76, 34, 190, + 201, 222, 251, 243, 205, 88, 100, 1, 219, 62, 27, 131, 54, 15, 212, 80, 203, 8, 174, 67, 137, 192, 229, 73, 174, + 114, 177, 153, 195, 106, 25, 78, 195, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 428, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9289497822425479473" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7f5601efeea1c5" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b80eaed0d376f79319f9f477f5601efeea1c5ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 128, 234, 237, 13, 55, 111, 121, 49, 159, 159, 71, 127, 86, 1, 239, 238, 161, 197, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 429, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8452136852097895486" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13878156425788712329" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11522598545834067768" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4015446003442388650" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15141396894854363082" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12056647322950775401" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f48b41" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17435198848804593456" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7324409283716067652" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb886d2fef04fa77f39428" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2000560992919157924" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12790037519530828731" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa6c416d63a68fd6fa72a2" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9633004209020527111" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "110a32e284e6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6b" + } + ] + }, + "cborHex": "9f1b754c05af86488c3ed8669f1bc0991dbd5870e5899f9f1b9fe87e53fddf47381b37b9badd89f20eaa1bd2210c40d8ff37ca1ba751d0dc82a53269ff9f43f48b411bf1f644fa334c1f301b65a5876fe97831444bcb886d2fef04fa77f39428ff1b1bc36b9fa672fca4bf1bb17f575c078da3bb4bfa6c416d63a68fd6fa72a2ff80ffffd8669f1b85af4e4a4e82e2079f46110a32e284e6ffff416bff", + "cborBytes": [ + 159, 27, 117, 76, 5, 175, 134, 72, 140, 62, 216, 102, 159, 27, 192, 153, 29, 189, 88, 112, 229, 137, 159, 159, 27, + 159, 232, 126, 83, 253, 223, 71, 56, 27, 55, 185, 186, 221, 137, 242, 14, 170, 27, 210, 33, 12, 64, 216, 255, 55, + 202, 27, 167, 81, 208, 220, 130, 165, 50, 105, 255, 159, 67, 244, 139, 65, 27, 241, 246, 68, 250, 51, 76, 31, 48, + 27, 101, 165, 135, 111, 233, 120, 49, 68, 75, 203, 136, 109, 47, 239, 4, 250, 119, 243, 148, 40, 255, 27, 27, 195, + 107, 159, 166, 114, 252, 164, 191, 27, 177, 127, 87, 92, 7, 141, 163, 187, 75, 250, 108, 65, 109, 99, 166, 143, + 214, 250, 114, 162, 255, 128, 255, 255, 216, 102, 159, 27, 133, 175, 78, 74, 78, 130, 226, 7, 159, 70, 17, 10, 50, + 226, 132, 230, 255, 255, 65, 107, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 430, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4641745097155512589" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14501790299791144691" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3267586272109410687" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ab31ee31dda53699a34aecad" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5229576318046112442" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "26809025066215804" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16908448824038416343" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd905089f1b406aca92a5dd890dff9fd87e9f1bc940b571a241b6f31b2d58cc66ee06397f4cab31ee31dda53699a34aecadffd87f9f1b48932ff42aef0aba1b005f3eaa8fd8a97c111beaa6e09ee3ae5fd7ffffff", + "cborBytes": [ + 159, 217, 5, 8, 159, 27, 64, 106, 202, 146, 165, 221, 137, 13, 255, 159, 216, 126, 159, 27, 201, 64, 181, 113, + 162, 65, 182, 243, 27, 45, 88, 204, 102, 238, 6, 57, 127, 76, 171, 49, 238, 49, 221, 165, 54, 153, 163, 74, 236, + 173, 255, 216, 127, 159, 27, 72, 147, 47, 244, 42, 239, 10, 186, 27, 0, 95, 62, 170, 143, 216, 169, 124, 17, 27, + 234, 166, 224, 158, 227, 174, 95, 215, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 431, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1955776409649922801" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c30798618efa05791046" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15012607497967212632" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23ca3493c29909d2f8" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8768733738577420394" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dadd0595b268041fa1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11591901392324574110" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dac91ce7a171fef9800faf9" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b1b2450484d45c2f14ac30798618efa057910461bd0577efaacb398584923ca3493c29909d2f8ffd9050780bf1b79b0cce061e3e06a49dadd0595b268041fa11ba0deb4e658dcbb9e4c2dac91ce7a171fef9800faf9ffff", + "cborBytes": [ + 159, 191, 27, 27, 36, 80, 72, 77, 69, 194, 241, 74, 195, 7, 152, 97, 142, 250, 5, 121, 16, 70, 27, 208, 87, 126, + 250, 172, 179, 152, 88, 73, 35, 202, 52, 147, 194, 153, 9, 210, 248, 255, 217, 5, 7, 128, 191, 27, 121, 176, 204, + 224, 97, 227, 224, 106, 73, 218, 221, 5, 149, 178, 104, 4, 31, 161, 27, 160, 222, 180, 230, 88, 220, 187, 158, 76, + 45, 172, 145, 206, 122, 23, 31, 239, 152, 0, 250, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 432, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13166200193381007868" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bb6b7bd51802781fc9fa0ffffff", + "cborBytes": [159, 216, 102, 159, 27, 182, 183, 189, 81, 128, 39, 129, 252, 159, 160, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 433, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7911925326694709229" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17442335383081603140" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a92" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "787a4a1d4d07c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ed652d0ce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9653a3ca182d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11005662256244320459" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b6dccce2a5b0df7eda01bf20f9f9e11ce5044bf422a9247787a4a1d4d07c6455ed652d0ce4130469653a3ca182d1b98bbf782f55de8cbffff", + "cborBytes": [ + 159, 27, 109, 204, 206, 42, 91, 13, 247, 237, 160, 27, 242, 15, 159, 158, 17, 206, 80, 68, 191, 66, 42, 146, 71, + 120, 122, 74, 29, 77, 7, 198, 69, 94, 214, 82, 208, 206, 65, 48, 70, 150, 83, 163, 202, 24, 45, 27, 152, 187, 247, + 130, 245, 93, 232, 203, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 434, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0912473223d05b42c66c" + } + ] + }, + "cborHex": "9f4a0912473223d05b42c66cff", + "cborBytes": [159, 74, 9, 18, 71, 50, 35, 208, 91, 66, 198, 108, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 435, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c50af0344368" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2239977250614002811" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13977740042909858019" + } + }, + { + "_tag": "ByteArray", + "bytearray": "93c592b6ea" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f46c50af03443681b1f15ff7107cdc47b1bc1fae883046538e34593c592b6eaffffff", + "cborBytes": [ + 159, 159, 159, 70, 197, 10, 240, 52, 67, 104, 27, 31, 21, 255, 113, 7, 205, 196, 123, 27, 193, 250, 232, 131, 4, + 101, 56, 227, 69, 147, 197, 146, 182, 234, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 436, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1577041208576487227" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "ByteArray", + "bytearray": "edfb061afc6b" + } + ] + } + ] + } + ] + }, + "cborHex": "9f41009f1b15e2c69fa95aaf3bd905029f1bfffffffffffffff646edfb061afc6bffffff", + "cborBytes": [ + 159, 65, 0, 159, 27, 21, 226, 198, 159, 169, 90, 175, 59, 217, 5, 2, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 246, 70, 237, 251, 6, 26, 252, 107, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 437, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8488d138b7f4fa9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2337711055356395921" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12303168973061244994" + } + }, + { + "_tag": "ByteArray", + "bytearray": "40e31147" + } + ] + } + ] + }, + "cborHex": "9fd905079f48f8488d138b7f4fa9d8669f1b207137d1b205819180ff1baabda2fefaec48424440e31147ffff", + "cborBytes": [ + 159, 217, 5, 7, 159, 72, 248, 72, 141, 19, 139, 127, 79, 169, 216, 102, 159, 27, 32, 113, 55, 209, 178, 5, 129, + 145, 128, 255, 27, 170, 189, 162, 254, 250, 236, 72, 66, 68, 64, 227, 17, 71, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 438, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3c16535e27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18003544191561546842" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15499043870574112257" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "08cd03c21f93c3e1a9f08d" + }, + { + "_tag": "ByteArray", + "bytearray": "76" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6762961544378788036" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5093369852766537290" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12509785056622559648" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7183215136799574616" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11117595379686262908" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14226751542846728841" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d01758b5a0b63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15481193838709981827" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad48ee60d3b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac4e2d53d567afcfc8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7bce38cca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "108011455347698372" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "457390208616826706" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "bbb969d14fee55f6b9" + } + ] + } + ] + }, + "cborHex": "9f453c16535e271bf9d9700e2c12bc5ad8669f1bd717aa4867c3ee019f9f4b08cd03c21f93c3e1a9f08d41761b5ddaddb1625328c4ffa0d8669f1b46af48e52fd5464a9f1bad9baf3ab47a41a01b63afe81bce25ca581b9a49a21822b9487c1bc56f9326d31eaa89ffffffffbf475d01758b5a0b631bd6d83fc5ff46428346ad48ee60d3b549ac4e2d53d567afcfc845c7bce38cca1b017fbbd8abac2ac4ffd8669f1b0658f9f8ac5907529f808049bbb969d14fee55f6b9ffffff", + "cborBytes": [ + 159, 69, 60, 22, 83, 94, 39, 27, 249, 217, 112, 14, 44, 18, 188, 90, 216, 102, 159, 27, 215, 23, 170, 72, 103, + 195, 238, 1, 159, 159, 75, 8, 205, 3, 194, 31, 147, 195, 225, 169, 240, 141, 65, 118, 27, 93, 218, 221, 177, 98, + 83, 40, 196, 255, 160, 216, 102, 159, 27, 70, 175, 72, 229, 47, 213, 70, 74, 159, 27, 173, 155, 175, 58, 180, 122, + 65, 160, 27, 99, 175, 232, 27, 206, 37, 202, 88, 27, 154, 73, 162, 24, 34, 185, 72, 124, 27, 197, 111, 147, 38, + 211, 30, 170, 137, 255, 255, 255, 255, 191, 71, 93, 1, 117, 139, 90, 11, 99, 27, 214, 216, 63, 197, 255, 70, 66, + 131, 70, 173, 72, 238, 96, 211, 181, 73, 172, 78, 45, 83, 213, 103, 175, 207, 200, 69, 199, 188, 227, 140, 202, + 27, 1, 127, 187, 216, 171, 172, 42, 196, 255, 216, 102, 159, 27, 6, 88, 249, 248, 172, 89, 7, 82, 159, 128, 128, + 73, 187, 185, 105, 209, 79, 238, 85, 246, 185, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 439, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c042904a7d7a7642" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a57cc460b9587d" + } + ] + }, + "cborHex": "9f48c042904a7d7a76421bfffffffffffffff647a57cc460b9587dff", + "cborBytes": [ + 159, 72, 192, 66, 144, 74, 125, 122, 118, 66, 27, 255, 255, 255, 255, 255, 255, 255, 246, 71, 165, 124, 196, 96, + 185, 88, 125, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 440, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "711cc97aef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3049fcc88d45469eb4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79666ecf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f63d9c0611cdfc6a043fff7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ac6877d34a6156080" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7897193953840533441" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c1639aed0f24fbd64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4989717056231930204" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac8504aff4da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15613411996279026012" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1135358164023063275" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2a413a0b4d309b68df93" + } + ] + }, + "cborHex": "9f419bbf45711cc97aef493049fcc88d45469eb44479666ecf4c7f63d9c0611cdfc6a043fff7497ac6877d34a61560801b6d98780f55070fc1498c1639aed0f24fbd641b453f0939da69795c46ac8504aff4da1bd8adfb7cba08b15cff801b0fc19a3c1b6f32eb4a2a413a0b4d309b68df93ff", + "cborBytes": [ + 159, 65, 155, 191, 69, 113, 28, 201, 122, 239, 73, 48, 73, 252, 200, 141, 69, 70, 158, 180, 68, 121, 102, 110, + 207, 76, 127, 99, 217, 192, 97, 28, 223, 198, 160, 67, 255, 247, 73, 122, 198, 135, 125, 52, 166, 21, 96, 128, 27, + 109, 152, 120, 15, 85, 7, 15, 193, 73, 140, 22, 57, 174, 208, 242, 79, 189, 100, 27, 69, 63, 9, 57, 218, 105, 121, + 92, 70, 172, 133, 4, 175, 244, 218, 27, 216, 173, 251, 124, 186, 8, 177, 92, 255, 128, 27, 15, 193, 154, 60, 27, + 111, 50, 235, 74, 42, 65, 58, 11, 77, 48, 155, 104, 223, 147, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 441, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4514023458402239306" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bc3ef9d8ec55" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2252201297412993831" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b3ea5086b49d8834a9f46bc3ef9d8ec55ffff1b1f416d25b6f9b327ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 62, 165, 8, 107, 73, 216, 131, 74, 159, 70, 188, 62, 249, 216, 236, 85, 255, 255, 27, + 31, 65, 109, 37, 182, 249, 179, 39, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 442, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4863370226528671324" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9776298902699261203" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14888003873506112747" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00fe9e34dfb4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35033a6d1f0e7d8d75" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b5d6b0813" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16081212781033351280" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "583864356679088941" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2678107420946795653" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "906524907328541353" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9160501341706614543" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8584206190655634467" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15067682442782507988" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9890330790078857858" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83ecf2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10962877104502630179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15667623549340318524" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15974842608532225807" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5769" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b437e29742b73d65c1b87ac640e116e3d131bce9cd0a496f8b4eb4600fe9e34dfb44935033a6d1f0e7d8d75458b5d6b0813ff1bdf2bf1d28af6e870bf1b081a4d89f8de7b2d1b252a8c8297df0c851b0c949f99a95c92a91b7f20a36f94e9770f1b77213a0ca0bcfc231bd11b2959867103d41b89418373cdc242824383ecf21b9823f6a48a2467231bd96e949b84f97b3c1bddb20ab6d0567f0f425769ffff", + "cborBytes": [ + 159, 191, 27, 67, 126, 41, 116, 43, 115, 214, 92, 27, 135, 172, 100, 14, 17, 110, 61, 19, 27, 206, 156, 208, 164, + 150, 248, 180, 235, 70, 0, 254, 158, 52, 223, 180, 73, 53, 3, 58, 109, 31, 14, 125, 141, 117, 69, 139, 93, 107, 8, + 19, 255, 27, 223, 43, 241, 210, 138, 246, 232, 112, 191, 27, 8, 26, 77, 137, 248, 222, 123, 45, 27, 37, 42, 140, + 130, 151, 223, 12, 133, 27, 12, 148, 159, 153, 169, 92, 146, 169, 27, 127, 32, 163, 111, 148, 233, 119, 15, 27, + 119, 33, 58, 12, 160, 188, 252, 35, 27, 209, 27, 41, 89, 134, 113, 3, 212, 27, 137, 65, 131, 115, 205, 194, 66, + 130, 67, 131, 236, 242, 27, 152, 35, 246, 164, 138, 36, 103, 35, 27, 217, 110, 148, 155, 132, 249, 123, 60, 27, + 221, 178, 10, 182, 208, 86, 127, 15, 66, 87, 105, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 443, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12102267270922113333" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18175965890093315405" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "76c3175156f7b9d85c" + }, + { + "_tag": "ByteArray", + "bytearray": "be450ba194756f30f1" + }, + { + "_tag": "ByteArray", + "bytearray": "7d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15309442731445655853" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2143a9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1281779610277351213" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b2aa3348ccc76525c2b9" + }, + { + "_tag": "ByteArray", + "bytearray": "17eeee" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13365146724013874723" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5e9f646e1dfece40" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15115180334427755128" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a045d2" + }, + { + "_tag": "ByteArray", + "bytearray": "fdbebd55d5e580b3e2fa36" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16178779377960617533" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15363681521793066275" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67482a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "567603b51294a5e7dcc0d2f8" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f80d8669f1ba7f3e3f65c2611359fd8669f1bfc3e00ad38a0f54d9f4976c3175156f7b9d85c49be450ba194756f30f1417dffff41e2d8669f1bd476110d2501192d9f432143a91b11c9cbc3aeeb8f2d4ab2aa3348ccc76525c2b94317eeeeffffd8669f1bb97a8a2247d29e239f485e9f646e1dfece401bd1c3e86e3589527843a045d24bfdbebd55d5e580b3e2fa36ffffbf1be08692201ac2063d1bd536c2f19cb565234367482a4c567603b51294a5e7dcc0d2f8ffffffff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 167, 243, 227, 246, 92, 38, 17, 53, 159, 216, 102, 159, 27, 252, 62, 0, 173, 56, 160, + 245, 77, 159, 73, 118, 195, 23, 81, 86, 247, 185, 216, 92, 73, 190, 69, 11, 161, 148, 117, 111, 48, 241, 65, 125, + 255, 255, 65, 226, 216, 102, 159, 27, 212, 118, 17, 13, 37, 1, 25, 45, 159, 67, 33, 67, 169, 27, 17, 201, 203, + 195, 174, 235, 143, 45, 74, 178, 170, 51, 72, 204, 199, 101, 37, 194, 185, 67, 23, 238, 238, 255, 255, 216, 102, + 159, 27, 185, 122, 138, 34, 71, 210, 158, 35, 159, 72, 94, 159, 100, 110, 29, 254, 206, 64, 27, 209, 195, 232, + 110, 53, 137, 82, 120, 67, 160, 69, 210, 75, 253, 190, 189, 85, 213, 229, 128, 179, 226, 250, 54, 255, 255, 191, + 27, 224, 134, 146, 32, 26, 194, 6, 61, 27, 213, 54, 194, 241, 156, 181, 101, 35, 67, 103, 72, 42, 76, 86, 118, 3, + 181, 18, 148, 165, 231, 220, 192, 210, 248, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 444, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16027147542508421714" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8353336122436154999" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e589f0ac3e20449c9db" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2585251064752553707" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f2f6d760774ea00aba50" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15407106597539510792" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bdb2f668" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bde6bddc641fd4252d8669f1b73ed02f20b3ef6779fbf4a2e589f0ac3e20449c9db1b23e0a82569c6beebff9f4af2f6d760774ea00aba50ff1bd5d109d1f2eb7a089f44bdb2f668ffffffff", + "cborBytes": [ + 159, 27, 222, 107, 221, 198, 65, 253, 66, 82, 216, 102, 159, 27, 115, 237, 2, 242, 11, 62, 246, 119, 159, 191, 74, + 46, 88, 159, 10, 195, 226, 4, 73, 201, 219, 27, 35, 224, 168, 37, 105, 198, 190, 235, 255, 159, 74, 242, 246, 215, + 96, 119, 78, 160, 10, 186, 80, 255, 27, 213, 209, 9, 209, 242, 235, 122, 8, 159, 68, 189, 178, 246, 104, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 445, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2555033753861175154" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2894880341433974497" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10720524302652224256" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12476048822063045111" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7bb528e167f7b68d19011" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57c0fe10c901c7d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d698c8f77af2f8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c309a2d7679721a07e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7728ed08e1ebcd" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4064258961086825077" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7731288744906797153" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d01177" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d368fffebbabb94ecf011692" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6665780066540497769" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15560378488017443372" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5985343331578862249" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4a3a32ab224ab091087" + }, + { + "_tag": "ByteArray", + "bytearray": "586ea83ac2ea4cbd" + }, + { + "_tag": "ByteArray", + "bytearray": "cc09c2d48f1b1dee07" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a789cb0115" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12036406834638733814" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b23754da9780737729fbf1b282cae55326efee11b94c6f40db18733001bad23d44d7f7f99f74bd7bb528e167f7b68d190114857c0fe10c901c7d547d698c8f77af2f849c309a2d7679721a07e477728ed08e1ebcdffffff1b386725fde2c74275d8669f1b6b4b0e26c02530619f8043d01177804cd368fffebbabb94ecf011692ffff9f1b5c819ba75906ab69d8669f1bd7f191cadce8da2c9f1b5310360c6182daa94ae4a3a32ab224ab09108748586ea83ac2ea4cbd49cc09c2d48f1b1dee07ffffa045a789cb0115ffbf1ba709e83e96b9c1f6413effff", + "cborBytes": [ + 159, 216, 102, 159, 27, 35, 117, 77, 169, 120, 7, 55, 114, 159, 191, 27, 40, 44, 174, 85, 50, 110, 254, 225, 27, + 148, 198, 244, 13, 177, 135, 51, 0, 27, 173, 35, 212, 77, 127, 127, 153, 247, 75, 215, 187, 82, 142, 22, 127, 123, + 104, 209, 144, 17, 72, 87, 192, 254, 16, 201, 1, 199, 213, 71, 214, 152, 200, 247, 122, 242, 248, 73, 195, 9, 162, + 215, 103, 151, 33, 160, 126, 71, 119, 40, 237, 8, 225, 235, 205, 255, 255, 255, 27, 56, 103, 37, 253, 226, 199, + 66, 117, 216, 102, 159, 27, 107, 75, 14, 38, 192, 37, 48, 97, 159, 128, 67, 208, 17, 119, 128, 76, 211, 104, 255, + 254, 187, 171, 185, 78, 207, 1, 22, 146, 255, 255, 159, 27, 92, 129, 155, 167, 89, 6, 171, 105, 216, 102, 159, 27, + 215, 241, 145, 202, 220, 232, 218, 44, 159, 27, 83, 16, 54, 12, 97, 130, 218, 169, 74, 228, 163, 163, 42, 178, 36, + 171, 9, 16, 135, 72, 88, 110, 168, 58, 194, 234, 76, 189, 73, 204, 9, 194, 212, 143, 27, 29, 238, 7, 255, 255, + 160, 69, 167, 137, 203, 1, 21, 255, 191, 27, 167, 9, 232, 62, 150, 185, 193, 246, 65, 62, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 446, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9398624597405915588" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15040015297264832521" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14595590178418290924" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15860235469057425207" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3516db512eed1402abe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "329140006631698202" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0f88ca31b75b500230ff1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13550983384699087485" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15900353603705078578" + } + } + ] + }, + "cborHex": "9fbf1b826e9f4679a0d9c41bd0b8de3a39e950091bca8df3efbfcd70ec1bdc1ae020c337ff374aa3516db512eed1402abe1b0491571798a6ef1a4bc0f88ca31b75b500230ff11bbc0ec3979a35aa7dff1bdca9675bdff18332ff", + "cborBytes": [ + 159, 191, 27, 130, 110, 159, 70, 121, 160, 217, 196, 27, 208, 184, 222, 58, 57, 233, 80, 9, 27, 202, 141, 243, + 239, 191, 205, 112, 236, 27, 220, 26, 224, 32, 195, 55, 255, 55, 74, 163, 81, 109, 181, 18, 238, 209, 64, 42, 190, + 27, 4, 145, 87, 23, 152, 166, 239, 26, 75, 192, 248, 140, 163, 27, 117, 181, 0, 35, 15, 241, 27, 188, 14, 195, + 151, 154, 53, 170, 125, 255, 27, 220, 169, 103, 91, 223, 241, 131, 50, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 447, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b4937be13cb2b03164" + } + ] + }, + "cborHex": "9f49b4937be13cb2b03164ff", + "cborBytes": [159, 73, 180, 147, 123, 225, 60, 178, 176, 49, 100, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 448, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "32c5d9541ef35adc7c6f05b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e1631" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4711ae1113af4a28123e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f116fe6ce03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11885356057393777603" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16190296276468972808" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10963090149188920640" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "674406282675766985" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16282202695334331873" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10360418771826657343" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "debd92a013cf031d8003dd" + } + ] + } + ] + }, + "cborHex": "9fbf4c32c5d9541ef35adc7c6f05b4436e16314a4711ae1113af4a28123e412c468f116fe6ce031ba4f1445ce5fe4bc3ffd8669f1be0af7caeff433d089fd8669f1b9824b867defd65409f1b095bf8f0e12e46c91be1f60115a84f85e11b8fc799fb2b04483fffff4bdebd92a013cf031d8003ddffffff", + "cborBytes": [ + 159, 191, 76, 50, 197, 217, 84, 30, 243, 90, 220, 124, 111, 5, 180, 67, 110, 22, 49, 74, 71, 17, 174, 17, 19, 175, + 74, 40, 18, 62, 65, 44, 70, 143, 17, 111, 230, 206, 3, 27, 164, 241, 68, 92, 229, 254, 75, 195, 255, 216, 102, + 159, 27, 224, 175, 124, 174, 255, 67, 61, 8, 159, 216, 102, 159, 27, 152, 36, 184, 103, 222, 253, 101, 64, 159, + 27, 9, 91, 248, 240, 225, 46, 70, 201, 27, 225, 246, 1, 21, 168, 79, 133, 225, 27, 143, 199, 153, 251, 43, 4, 72, + 63, 255, 255, 75, 222, 189, 146, 160, 19, 207, 3, 29, 128, 3, 221, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 449, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14882371978341461475" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14623563756261433027" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7212708851081530582" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "20da427a24e9" + }, + { + "_tag": "ByteArray", + "bytearray": "836f23410e0f3715" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11336799571129505518" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2674000644409422944" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5b794ec946a3" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7874019414328160051" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18083978719459632708" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8e92ac370e4" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5262078301593368918" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7572697122152811825" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2b2b9c3f19cf00dfcd07e0fd" + }, + { + "_tag": "ByteArray", + "bytearray": "ce317e75e586e2253cc6604e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13281126292309635672" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bce88ce76d0452de3d8669f1bcaf155c1e23d5ec39f1b6418b07c4907ccd69f4620da427a24e948836f23410e0f37151b9d5467251ef996ee1b251bf56b2b307460ff465b794ec946a3ffff1b6d4622f0618f2f33bf1bfaf732d5131d664446b8e92ac370e4ffd8669f1b4906a855eac379569fd8669f1b69179fe9258a8d319f4c2b2b9c3f19cf00dfcd07e0fd4cce317e75e586e2253cc6604e1bb85009ff16377258ffffffffff", + "cborBytes": [ + 159, 27, 206, 136, 206, 118, 208, 69, 45, 227, 216, 102, 159, 27, 202, 241, 85, 193, 226, 61, 94, 195, 159, 27, + 100, 24, 176, 124, 73, 7, 204, 214, 159, 70, 32, 218, 66, 122, 36, 233, 72, 131, 111, 35, 65, 14, 15, 55, 21, 27, + 157, 84, 103, 37, 30, 249, 150, 238, 27, 37, 27, 245, 107, 43, 48, 116, 96, 255, 70, 91, 121, 78, 201, 70, 163, + 255, 255, 27, 109, 70, 34, 240, 97, 143, 47, 51, 191, 27, 250, 247, 50, 213, 19, 29, 102, 68, 70, 184, 233, 42, + 195, 112, 228, 255, 216, 102, 159, 27, 73, 6, 168, 85, 234, 195, 121, 86, 159, 216, 102, 159, 27, 105, 23, 159, + 233, 37, 138, 141, 49, 159, 76, 43, 43, 156, 63, 25, 207, 0, 223, 205, 7, 224, 253, 76, 206, 49, 126, 117, 229, + 134, 226, 37, 60, 198, 96, 78, 27, 184, 80, 9, 255, 22, 55, 114, 88, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 450, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17869272471051079688" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16642018483375968718" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf7fc68a30faa90089f1be6f453a32f1c11ceffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 247, 252, 104, 163, 15, 170, 144, 8, 159, 27, 230, 244, 83, 163, 47, 28, 17, 206, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 451, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6428817447786007697" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7266236633193982181" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17939885535908915457" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "29b14a783242" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03424dfd5ef7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7de41359911f78cb57" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11997199063679939244" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0b329bd9a0d53" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fdceff64bb28ffc05f9f17f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2d74fbb28c0e95d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11098222001270245331" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b5937bf684d1e4c919f9f1b64d6dbb83f7528e51bf8f746d86704e901ff9f4629b14a783242ffffffbf4603424dfd5ef741ae497de41359911f78cb571ba67e9cfc0a4ab2ac47a0b329bd9a0d534c1fdceff64bb28ffc05f9f17f48e2d74fbb28c0e95d1b9a04ce1bf82347d3ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 89, 55, 191, 104, 77, 30, 76, 145, 159, 159, 27, 100, 214, 219, 184, 63, 117, 40, 229, 27, + 248, 247, 70, 216, 103, 4, 233, 1, 255, 159, 70, 41, 177, 74, 120, 50, 66, 255, 255, 255, 191, 70, 3, 66, 77, 253, + 94, 247, 65, 174, 73, 125, 228, 19, 89, 145, 31, 120, 203, 87, 27, 166, 126, 156, 252, 10, 74, 178, 172, 71, 160, + 179, 41, 189, 154, 13, 83, 76, 31, 220, 239, 246, 75, 178, 143, 252, 5, 249, 241, 127, 72, 226, 215, 79, 187, 40, + 192, 233, 93, 27, 154, 4, 206, 27, 248, 35, 71, 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 452, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13233289621948838374" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2141827287322075278" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5af" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4719745241804720406" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca8a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5374919764720684512" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ba12d18b2b7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6400820416637000468" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdc0e2b795ac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8335460619047921912" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e4cba91951f1ab12359a440" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11326835487679323227" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd26fe2a753226c454623a" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "20c446c04f607e9fc3b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9129447825094245470" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f104776c2412444625" + } + ] + }, + "cborHex": "9fd8669f1bb7a616cc561fb1e69fbf1b1db94c91e712208e42d5af1b417fe74a881c491642ca8a1b4a978d0c68670de0461ba12d18b2b71b58d4484184b75b1446bdc0e2b795ac1b73ad8145159be8f84c5e4cba91951f1ab12359a4401b9d3100dd286a1c5b4bfd26fe2a753226c454623affffff4a20c446c04f607e9fc3b91b7eb2506d52347c5e49f104776c2412444625ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 183, 166, 22, 204, 86, 31, 177, 230, 159, 191, 27, 29, 185, 76, 145, 231, 18, 32, 142, 66, + 213, 175, 27, 65, 127, 231, 74, 136, 28, 73, 22, 66, 202, 138, 27, 74, 151, 141, 12, 104, 103, 13, 224, 70, 27, + 161, 45, 24, 178, 183, 27, 88, 212, 72, 65, 132, 183, 91, 20, 70, 189, 192, 226, 183, 149, 172, 27, 115, 173, 129, + 69, 21, 155, 232, 248, 76, 94, 76, 186, 145, 149, 31, 26, 177, 35, 89, 164, 64, 27, 157, 49, 0, 221, 40, 106, 28, + 91, 75, 253, 38, 254, 42, 117, 50, 38, 196, 84, 98, 58, 255, 255, 255, 74, 32, 196, 70, 192, 79, 96, 126, 159, + 195, 185, 27, 126, 178, 80, 109, 82, 52, 124, 94, 73, 241, 4, 119, 108, 36, 18, 68, 70, 37, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 453, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8100627507347667605" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5efdba" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17503884888843405341" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4138c5a7b2841cdd" + } + ] + }, + "cborHex": "9f1b706b35cc89373a95435efdba1bf2ea4a911cd6c81d484138c5a7b2841cddff", + "cborBytes": [ + 159, 27, 112, 107, 53, 204, 137, 55, 58, 149, 67, 94, 253, 186, 27, 242, 234, 74, 145, 28, 214, 200, 29, 72, 65, + 56, 197, 167, 178, 132, 28, 221, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 454, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2536514984431060158" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1b233382f0767804be80ff", + "cborBytes": [159, 27, 35, 51, 130, 240, 118, 120, 4, 190, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 455, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17479708730394183828" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "af" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "40ff08" + } + ] + }, + "cborHex": "9fd8669f1bf294667a9470889480ff41af80804340ff08ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 242, 148, 102, 122, 148, 112, 136, 148, 128, 255, 65, 175, 128, 128, 67, 64, 255, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 456, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e801801c5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14090030765216781555" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf455e801801c51bc389d8542b1254f3ff80ff", + "cborBytes": [159, 191, 69, 94, 128, 24, 1, 197, 27, 195, 137, 216, 84, 43, 18, 84, 243, 255, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 457, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10066025396246298741" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16633104894689180783" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04eb5bd3e45183" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e613c248537886be6be5c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d9b86" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f790e0b4d9895" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6746" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b6e2" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9365790847618143435" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3252491302687972607" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2805" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7ee137035b49" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8269792420005690616" + } + } + ] + }, + "cborHex": "9f9fbf1b8bb1b4c40b5240751be6d4a8c697c27c6f415e4704eb5bd3e451834b7e613c248537886be6be5c433d9b86478f790e0b4d9895426746ff42b6e280d8669f1b81f9f92760e254cb9f1b2d232b9b7bc39cff410304422805ffff467ee137035b49ffd87b80141b72c4346408a83cf8ff", + "cborBytes": [ + 159, 159, 191, 27, 139, 177, 180, 196, 11, 82, 64, 117, 27, 230, 212, 168, 198, 151, 194, 124, 111, 65, 94, 71, 4, + 235, 91, 211, 228, 81, 131, 75, 126, 97, 60, 36, 133, 55, 136, 107, 230, 190, 92, 67, 61, 155, 134, 71, 143, 121, + 14, 11, 77, 152, 149, 66, 103, 70, 255, 66, 182, 226, 128, 216, 102, 159, 27, 129, 249, 249, 39, 96, 226, 84, 203, + 159, 27, 45, 35, 43, 155, 123, 195, 156, 255, 65, 3, 4, 66, 40, 5, 255, 255, 70, 126, 225, 55, 3, 91, 73, 255, + 216, 123, 128, 20, 27, 114, 196, 52, 100, 8, 168, 60, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 458, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9242" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "139727593647688041" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00fd4505" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3048f50d1907621369bb2994" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1657736746302910576" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "505fa6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a53f1c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7618d9c65c3df7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4373635295672993985" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe3c473f2e4b9e56b1d295" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ab508da8d9f74" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4292421b01f0698190b0c9694400fd45059fbf4c3048f50d1907621369bb29941b170176c9a67f307043505fa6445a53f1c9477618d9c65c3df71b3cb24620ffb308c14bfe3c473f2e4b9e56b1d295470ab508da8d9f74ffffff", + "cborBytes": [ + 159, 66, 146, 66, 27, 1, 240, 105, 129, 144, 176, 201, 105, 68, 0, 253, 69, 5, 159, 191, 76, 48, 72, 245, 13, 25, + 7, 98, 19, 105, 187, 41, 148, 27, 23, 1, 118, 201, 166, 127, 48, 112, 67, 80, 95, 166, 68, 90, 83, 241, 201, 71, + 118, 24, 217, 198, 92, 61, 247, 27, 60, 178, 70, 32, 255, 179, 8, 193, 75, 254, 60, 71, 63, 46, 75, 158, 86, 177, + 210, 149, 71, 10, 181, 8, 218, 141, 159, 116, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 459, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4211610375769725822" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f7e37f5c30" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa93affa35ea6b70b9b094c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3911423030979865165" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17833509151470069998" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e550da40a222576f5b365ad0" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17626521143372937620" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a1c515d80d66e0318" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3a72a5529c1a9b7e9f45f7e37f5c309f4cfa93affa35ea6b70b9b094c71b36482a85e7d62a4dff1bf77d5a16580d28ee4ce550da40a222576f5b365ad0ffffbf1bf49dfb9730a7f994495a1c515d80d66e0318ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 58, 114, 165, 82, 156, 26, 155, 126, 159, 69, 247, 227, 127, 92, 48, 159, 76, 250, 147, + 175, 250, 53, 234, 107, 112, 185, 176, 148, 199, 27, 54, 72, 42, 133, 231, 214, 42, 77, 255, 27, 247, 125, 90, 22, + 88, 13, 40, 238, 76, 229, 80, 218, 64, 162, 34, 87, 111, 91, 54, 90, 208, 255, 255, 191, 27, 244, 157, 251, 151, + 48, 167, 249, 148, 73, 90, 28, 81, 93, 128, 214, 110, 3, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 460, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3305441754614114179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9019455494202438328" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7776164817575146341" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13332078016000652695" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11889692355496270146" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44f3d295ebbf6df8917908da" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15487254388916889268" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42403892b3f0b42ef26c44" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf1b2ddf49c34984a7831b7d2b8afc1f61b2b81b6bea7cb3a274f3651bb9050e51b58375971ba500ac33fa0859424c44f3d295ebbf6df8917908da1bd6edc7cfcd8026b44b42403892b3f0b42ef26c44ffd87a80ff", + "cborBytes": [ + 159, 191, 27, 45, 223, 73, 195, 73, 132, 167, 131, 27, 125, 43, 138, 252, 31, 97, 178, 184, 27, 107, 234, 124, + 179, 162, 116, 243, 101, 27, 185, 5, 14, 81, 181, 131, 117, 151, 27, 165, 0, 172, 51, 250, 8, 89, 66, 76, 68, 243, + 210, 149, 235, 191, 109, 248, 145, 121, 8, 218, 27, 214, 237, 199, 207, 205, 128, 38, 180, 75, 66, 64, 56, 146, + 179, 240, 180, 46, 242, 108, 68, 255, 216, 122, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 461, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13769360671663986548" + } + } + ] + }, + "cborHex": "9f1bbf169893e2c41774ff", + "cborBytes": [159, 27, 191, 22, 152, 147, 226, 196, 23, 116, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 462, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9980492976123918930" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14621449918438122822" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3484857041106244688" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1242339688971226125" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13568542979250825408" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9986948263958798246" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14557842879742412705" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12218931024700299104" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c4543d7820d3e96d4" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4982881785437000310" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a16019d62e4d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7185832530961133891" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4082312184447785895" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17215462388733017114" + } + }, + { + "_tag": "ByteArray", + "bytearray": "57dd2576d9a189fe" + } + ] + }, + "cborHex": "9fd8669f1b8a81d57b9d25ba529fd8669f1bcae9d33ba9ab254680ff1b305cb303ec281450bf1b113dad5d6b7fcc0d1bbc4d25f34ddda8c01b8a98c4886f77dfa61bca07d8f7e6ff07a11ba9925d073e42d760494c4543d7820d3e96d4ff9f1b4526c0955abc9276471a16019d62e4d81b63b9349d5f627143ffffff1b38a7494d80425ba71beee99bd4c4877c1a4857dd2576d9a189feff", + "cborBytes": [ + 159, 216, 102, 159, 27, 138, 129, 213, 123, 157, 37, 186, 82, 159, 216, 102, 159, 27, 202, 233, 211, 59, 169, 171, + 37, 70, 128, 255, 27, 48, 92, 179, 3, 236, 40, 20, 80, 191, 27, 17, 61, 173, 93, 107, 127, 204, 13, 27, 188, 77, + 37, 243, 77, 221, 168, 192, 27, 138, 152, 196, 136, 111, 119, 223, 166, 27, 202, 7, 216, 247, 230, 255, 7, 161, + 27, 169, 146, 93, 7, 62, 66, 215, 96, 73, 76, 69, 67, 215, 130, 13, 62, 150, 212, 255, 159, 27, 69, 38, 192, 149, + 90, 188, 146, 118, 71, 26, 22, 1, 157, 98, 228, 216, 27, 99, 185, 52, 157, 95, 98, 113, 67, 255, 255, 255, 27, 56, + 167, 73, 77, 128, 66, 91, 167, 27, 238, 233, 155, 212, 196, 135, 124, 26, 72, 87, 221, 37, 118, 217, 161, 137, + 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 463, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6c9ed2d689266d8e1f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13280567344284004960" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "29a0f80590d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a28ae10adb7fdd814ff4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a4348a0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65ffb710" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17445906071504364448" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3276811034494572500" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18189079842645503932" + } + } + } + ] + } + ] + }, + "cborHex": "9f496c9ed2d689266d8e1f1bb84e0da2dbb37260bf4629a0f80590d64aa28ae10adb7fdd814ff4448a4348a04465ffb71042a2d41bf21c4f23c0d923a0ffbf1b2d7992464b2117d41bfc6c97bf3c1a6fbcffff", + "cborBytes": [ + 159, 73, 108, 158, 210, 214, 137, 38, 109, 142, 31, 27, 184, 78, 13, 162, 219, 179, 114, 96, 191, 70, 41, 160, + 248, 5, 144, 214, 74, 162, 138, 225, 10, 219, 127, 221, 129, 79, 244, 68, 138, 67, 72, 160, 68, 101, 255, 183, 16, + 66, 162, 212, 27, 242, 28, 79, 35, 192, 217, 35, 160, 255, 191, 27, 45, 121, 146, 70, 75, 33, 23, 212, 27, 252, + 108, 151, 191, 60, 26, 111, 188, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 464, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00c3fa5d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39e2f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72962c80254db266bed0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd0d540180026d51050120f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15798438547853487376" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf41284400c3fa5d4339e2f21bfffffffffffffffb4a72962c80254db266bed01bfffffffffffffff04cfd0d540180026d51050120f81bdb3f5427d2a52d10ffff", + "cborBytes": [ + 159, 191, 65, 40, 68, 0, 195, 250, 93, 67, 57, 226, 242, 27, 255, 255, 255, 255, 255, 255, 255, 251, 74, 114, 150, + 44, 128, 37, 77, 178, 102, 190, 208, 27, 255, 255, 255, 255, 255, 255, 255, 240, 76, 253, 13, 84, 1, 128, 2, 109, + 81, 5, 1, 32, 248, 27, 219, 63, 84, 39, 210, 165, 45, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 465, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1949525449878794117" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17000197609029470463" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11de6a95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8da4c7ac80e74f7da9e635" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e370576" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1b0e1b11509bef859fbf1bebecd5a78da588ff4411de6a954b8da4c7ac80e74f7da9e635441e370576ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 27, 14, 27, 17, 80, 155, 239, 133, 159, 191, 27, 235, 236, 213, 167, 141, 165, 136, 255, + 68, 17, 222, 106, 149, 75, 141, 164, 199, 172, 128, 231, 79, 125, 169, 230, 53, 68, 30, 55, 5, 118, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 466, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13351502306335377134" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15036997356064488080" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10030997394489982219" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eca94fe999ad040e10b46de2" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9779037666729063012" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11058141113605526054" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4656064236033350545" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2387b16a191d4a842d0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8650505137275892850" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2e5fcab34031ecd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12770095628595746347" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "078e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "51200b040a539d8d7fd465fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8779039754080061838" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7562758464619531959" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6825821774841007948" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1bb94a109bbaedc6eed8669f1bd0ae256d08b63a909f1b8b3542fbd971bd0b4ceca94fe999ad040e10b46de2ffffd8669f1b87b61ef2428cf2649f1b997668c118999226bf1b409da9c0f82b1b914ae2387b16a191d4a842d01b780cc4970b05747248a2e5fcab34031ecd1bb1387e50ba37d62b42078eff4c51200b040a539d8d7fd465fb1b79d56a249af9898e1b68f450c11db9ceb7ffffd8669f1b5eba30bd4d864f4c80ffff", + "cborBytes": [ + 159, 27, 185, 74, 16, 155, 186, 237, 198, 238, 216, 102, 159, 27, 208, 174, 37, 109, 8, 182, 58, 144, 159, 27, + 139, 53, 66, 251, 217, 113, 189, 11, 76, 236, 169, 79, 233, 153, 173, 4, 14, 16, 180, 109, 226, 255, 255, 216, + 102, 159, 27, 135, 182, 30, 242, 66, 140, 242, 100, 159, 27, 153, 118, 104, 193, 24, 153, 146, 38, 191, 27, 64, + 157, 169, 192, 248, 43, 27, 145, 74, 226, 56, 123, 22, 161, 145, 212, 168, 66, 208, 27, 120, 12, 196, 151, 11, 5, + 116, 114, 72, 162, 229, 252, 171, 52, 3, 30, 205, 27, 177, 56, 126, 80, 186, 55, 214, 43, 66, 7, 142, 255, 76, 81, + 32, 11, 4, 10, 83, 157, 141, 127, 212, 101, 251, 27, 121, 213, 106, 36, 154, 249, 137, 142, 27, 104, 244, 80, 193, + 29, 185, 206, 183, 255, 255, 216, 102, 159, 27, 94, 186, 48, 189, 77, 134, 79, 76, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 467, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "983241279642109842" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5533012310938559147" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6460ea277860b5fdb6" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8b" + } + ] + } + ] + }, + "cborHex": "9fbf1b0da52cbc019187921b4cc93561b35b22abff496460ea277860b5fdb69f418bffff", + "cborBytes": [ + 159, 191, 27, 13, 165, 44, 188, 1, 145, 135, 146, 27, 76, 201, 53, 97, 179, 91, 34, 171, 255, 73, 100, 96, 234, + 39, 120, 96, 181, 253, 182, 159, 65, 139, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 468, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9294370668450689710" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3789386869997017231" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6aac3819aacd" + }, + { + "_tag": "ByteArray", + "bytearray": "9323c6cf" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "988c3f2723edb9cff110" + } + ] + } + ] + }, + "cborHex": "9f9f1b80fc3ce117d032ae809f1b34969b47feb3988f466aac3819aacd449323c6cfffd87f9f0bff4a988c3f2723edb9cff110ffff", + "cborBytes": [ + 159, 159, 27, 128, 252, 60, 225, 23, 208, 50, 174, 128, 159, 27, 52, 150, 155, 71, 254, 179, 152, 143, 70, 106, + 172, 56, 25, 170, 205, 68, 147, 35, 198, 207, 255, 216, 127, 159, 11, 255, 74, 152, 140, 63, 39, 35, 237, 185, + 207, 241, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 469, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b39d0cf50b5c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7100529508253808687" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "ByteArray", + "bytearray": "66a2d2" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17648602128145153046" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bd45d026" + }, + { + "_tag": "ByteArray", + "bytearray": "bb0502a38b05076bb8009eb5" + }, + { + "_tag": "ByteArray", + "bytearray": "31" + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1346b39d0cf50b5cffd8669f1b628a25f7b0a5b82f9f064366a2d29f1bf4ec6e21164b7c1644bd45d0264cbb0502a38b05076bb8009eb54131ffffffff", + "cborBytes": [ + 159, 191, 19, 70, 179, 157, 12, 245, 11, 92, 255, 216, 102, 159, 27, 98, 138, 37, 247, 176, 165, 184, 47, 159, 6, + 67, 102, 162, 210, 159, 27, 244, 236, 110, 33, 22, 75, 124, 22, 68, 189, 69, 208, 38, 76, 187, 5, 2, 163, 139, 5, + 7, 107, 184, 0, 158, 181, 65, 49, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 470, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02fe890006ba3c" + } + ] + }, + "cborHex": "9f4702fe890006ba3cff", + "cborBytes": [159, 71, 2, 254, 137, 0, 6, 186, 60, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 471, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7632377407930000681" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bfd5c6aa95b97386bb212d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8589398871386453157" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16845110321297123873" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9908090962456039081" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1778322659643027566" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12324669367397486669" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3de40f09" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a7e11578f9ce203a5c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4691929111373234733" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a820b4542b2a5756c1377" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12418461008892845089" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31eb1b9ef79016056912" + }, + { + "_tag": "ByteArray", + "bytearray": "2c98a5" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b69eba6d07f6265294bbfd5c6aa95b97386bb212d1b7733acc3d32174a51be9c5da96872e6a211b89809c3c2b734ea91b18addf09780cf06e1bab0a057da1dd904d443de40f09ff9f49a7e11578f9ce203a5cff1b411d14aafab7422d4b1a820b4542b2a5756c13779f1bac573c7de418dc214a31eb1b9ef79016056912432c98a5ffffff", + "cborBytes": [ + 159, 159, 191, 27, 105, 235, 166, 208, 127, 98, 101, 41, 75, 191, 213, 198, 170, 149, 185, 115, 134, 187, 33, 45, + 27, 119, 51, 172, 195, 211, 33, 116, 165, 27, 233, 197, 218, 150, 135, 46, 106, 33, 27, 137, 128, 156, 60, 43, + 115, 78, 169, 27, 24, 173, 223, 9, 120, 12, 240, 110, 27, 171, 10, 5, 125, 161, 221, 144, 77, 68, 61, 228, 15, 9, + 255, 159, 73, 167, 225, 21, 120, 249, 206, 32, 58, 92, 255, 27, 65, 29, 20, 170, 250, 183, 66, 45, 75, 26, 130, + 11, 69, 66, 178, 165, 117, 108, 19, 119, 159, 27, 172, 87, 60, 125, 228, 24, 220, 33, 74, 49, 235, 27, 158, 247, + 144, 22, 5, 105, 18, 67, 44, 152, 165, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 472, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10982214363405967274" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14971018302841176816" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6479946848689114712" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b10122d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12931108930746268901" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1f3dba90aa32d976" + }, + { + "_tag": "ByteArray", + "bytearray": "0d06" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "680f9ee97d88" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f0f132f088888ad91bbc4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4070387039a5f7cda54453" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90400815bed1410f967df8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e8dc6c67a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14036417004908665873" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "913d4f4e3a4994aae17a4fbf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8daab9df450c337d9d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "709b1b1c959a7a18c118" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "288989573208222384" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3354323213554997198" + } + }, + { + "_tag": "ByteArray", + "bytearray": "38e5" + }, + { + "_tag": "ByteArray", + "bytearray": "d4cd1c3f1518d6fb5c4eae" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "69" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a903bac50403e64b9e" + } + ] + } + ] + }, + "cborHex": "9f1b9868a9c6fa015faad8669f1bffffffffffffffed9f80d8669f1bcfc3bdd39ab842f09f1b59ed65539f86ce58445b10122dffffd8669f1bb374870f81033ce59f481f3dba90aa32d976420d06ffffbf411d46680f9ee97d884b2f0f132f088888ad91bbc441d44b4070387039a5f7cda544534b90400815bed1410f967df8458e8dc6c67a1bc2cb5ee5d8d55c114c913d4f4e3a4994aae17a4fbf498daab9df450c337d9dff9f4a709b1b1c959a7a18c1181b0402b27c56de2ab01b2e8cf330d5cad7ce4238e54bd4cd1c3f1518d6fb5c4eaeffffff9f418b9f4169ffff9f80038049a903bac50403e64b9effff", + "cborBytes": [ + 159, 27, 152, 104, 169, 198, 250, 1, 95, 170, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 128, + 216, 102, 159, 27, 207, 195, 189, 211, 154, 184, 66, 240, 159, 27, 89, 237, 101, 83, 159, 134, 206, 88, 68, 91, + 16, 18, 45, 255, 255, 216, 102, 159, 27, 179, 116, 135, 15, 129, 3, 60, 229, 159, 72, 31, 61, 186, 144, 170, 50, + 217, 118, 66, 13, 6, 255, 255, 191, 65, 29, 70, 104, 15, 158, 233, 125, 136, 75, 47, 15, 19, 47, 8, 136, 136, 173, + 145, 187, 196, 65, 212, 75, 64, 112, 56, 112, 57, 165, 247, 205, 165, 68, 83, 75, 144, 64, 8, 21, 190, 209, 65, + 15, 150, 125, 248, 69, 142, 141, 198, 198, 122, 27, 194, 203, 94, 229, 216, 213, 92, 17, 76, 145, 61, 79, 78, 58, + 73, 148, 170, 225, 122, 79, 191, 73, 141, 170, 185, 223, 69, 12, 51, 125, 157, 255, 159, 74, 112, 155, 27, 28, + 149, 154, 122, 24, 193, 24, 27, 4, 2, 178, 124, 86, 222, 42, 176, 27, 46, 140, 243, 48, 213, 202, 215, 206, 66, + 56, 229, 75, 212, 205, 28, 63, 21, 24, 214, 251, 92, 78, 174, 255, 255, 255, 159, 65, 139, 159, 65, 105, 255, 255, + 159, 128, 3, 128, 73, 169, 3, 186, 197, 4, 3, 230, 75, 158, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 473, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "463190768144455046" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08a76ed83ed90e22da59ec" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1027700911940895940" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3596742085824219842" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16872518855935865029" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6304920877781426148" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad18cd7bd5474fc25a9560" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8298197127172102259" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72d5cd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14596288390537811860" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17400980961887507661" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1dec" + }, + { + "_tag": "ByteArray", + "bytearray": "7de743cdaa6cb1adcd" + } + ] + }, + "cborHex": "9fbf1b066d958cae7d95864b08a76ed83ed90e22da59ec1b0e432088cf9504c441791b31ea31dee6400ac21bea273a814a2330c51b577f9422291b1fe44bad18cd7bd5474fc25a95601b73291e52494298734372d5cd1bca906ef4ed2a17941bf17cb3fd90a3d4cdff421dec497de743cdaa6cb1adcdff", + "cborBytes": [ + 159, 191, 27, 6, 109, 149, 140, 174, 125, 149, 134, 75, 8, 167, 110, 216, 62, 217, 14, 34, 218, 89, 236, 27, 14, + 67, 32, 136, 207, 149, 4, 196, 65, 121, 27, 49, 234, 49, 222, 230, 64, 10, 194, 27, 234, 39, 58, 129, 74, 35, 48, + 197, 27, 87, 127, 148, 34, 41, 27, 31, 228, 75, 173, 24, 205, 123, 213, 71, 79, 194, 90, 149, 96, 27, 115, 41, 30, + 82, 73, 66, 152, 115, 67, 114, 213, 205, 27, 202, 144, 110, 244, 237, 42, 23, 148, 27, 241, 124, 179, 253, 144, + 163, 212, 205, 255, 66, 29, 236, 73, 125, 231, 67, 205, 170, 108, 177, 173, 205, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 474, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8008667587236752771" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10e2d866288aab" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4190959046565814906" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b6f2480bd256e6d834710e2d866288aabffd9050b9f1b3a29470c56c3e27affff", + "cborBytes": [ + 159, 191, 27, 111, 36, 128, 189, 37, 110, 109, 131, 71, 16, 226, 216, 102, 40, 138, 171, 255, 217, 5, 11, 159, 27, + 58, 41, 71, 12, 86, 195, 226, 122, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 475, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ee0b77c233" + }, + { + "_tag": "ByteArray", + "bytearray": "724326" + } + ] + }, + "cborHex": "9f45ee0b77c23343724326ff", + "cborBytes": [159, 69, 238, 11, 119, 194, 51, 67, 114, 67, 38, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 476, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3806847365407584384" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04c593ca4ec6d008e59dc6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f030a2e61e0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2ac5d3e161d504db97c57c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d87adceceba8389cacd5ce6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a815162637d89821cc" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b34d4a382614030804b04c593ca4ec6d008e59dc6460f030a2e61e04cd2ac5d3e161d504db97c57c14cd87adceceba8389cacd5ce6b49a815162637d89821ccffff", + "cborBytes": [ + 159, 191, 27, 52, 212, 163, 130, 97, 64, 48, 128, 75, 4, 197, 147, 202, 78, 198, 208, 8, 229, 157, 198, 70, 15, 3, + 10, 46, 97, 224, 76, 210, 172, 93, 62, 22, 29, 80, 77, 185, 124, 87, 193, 76, 216, 122, 220, 236, 235, 168, 56, + 156, 172, 213, 206, 107, 73, 168, 21, 22, 38, 55, 216, 152, 33, 204, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 477, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10476880885754987172" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "179275c0f964ce7f65" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17469287902142678137" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "724a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "694e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "101638909642267817" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf1b91655ba81d8182a449179275c0f964ce7f651bf26f60ca6e3e447942724a42694e1b0169180cc095dca9ff80ff", + "cborBytes": [ + 159, 191, 27, 145, 101, 91, 168, 29, 129, 130, 164, 73, 23, 146, 117, 192, 249, 100, 206, 127, 101, 27, 242, 111, + 96, 202, 110, 62, 68, 121, 66, 114, 74, 66, 105, 78, 27, 1, 105, 24, 12, 192, 149, 220, 169, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 478, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3159535487834881229" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5cba3e3dce79ec" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4736251390777712741" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5384925051149578276" + } + } + ] + }, + "cborHex": "9fbf1b2bd8ecc947a37ccd475cba3e3dce79ecffbf41ca1b41ba8b8bd2416065ff1b4abb18cdafdf7024ff", + "cborBytes": [ + 159, 191, 27, 43, 216, 236, 201, 71, 163, 124, 205, 71, 92, 186, 62, 61, 206, 121, 236, 255, 191, 65, 202, 27, 65, + 186, 139, 139, 210, 65, 96, 101, 255, 27, 74, 187, 24, 205, 175, 223, 112, 36, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 479, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eccb884db53e2d" + } + ] + }, + "cborHex": "9f47eccb884db53e2dff", + "cborBytes": [159, 71, 236, 203, 136, 77, 181, 62, 45, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 480, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4111202392762177009" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c4d0c7109e1a94573" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b73be7b2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdfc6b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16304988889194208179" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2246255930349877658" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "61158a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3817237372965609594" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a4f2eb9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9799021102732904080" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7560178906dc1519f7e780" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16429138573195260391" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3201501242749046725" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8975036785118455389" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "18705045f7bea8981a93" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1838933759971942922" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "08da17d7456b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8853889861460856405" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10752300562299395868" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2652601106511738247" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a771cb2ade9919b4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7238356331901748095" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c13f9029423e5ceb6c1" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3383704957576060672" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15123792322175317232" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12614481144842883868" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "766999ef8feb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80739677541747d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0810f7c6ff19" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c7ea8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2003382224181979799" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ff71b2b14a" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "99afabbc8d" + }, + { + "_tag": "ByteArray", + "bytearray": "6e5d57bb7a8e917e5236" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b390deccb4c5355f19fbf490c4d0c7109e1a9457344b73be7b243bdfc6b1be246f501d71c9bb3ffffffd8669f1b1f2c4dde131e799a80ff4361158ad8669f1b34f98d2a86f5e07a9fbf442a4f2eb91b87fd1dc686f386904b7560178906dc1519f7e7801be400067cacf8b1e741d51b2c6e046b02074fc5ffd8669f1b7c8dbc677f0ca65d9f4a18705045f7bea8981a931b19853482f899e20affffbf4608da17d7456b1b7adf55eb48ce8e55ffffffd8669f1b9537d864ae169f1c9fbf1b24cfeea6fc70b58748a771cb2ade9919b41b6473cebbc0b4037f4a6c13f9029423e5ceb6c1ffbf1b2ef555bb350c9f001bd1e280fcdc0a34f01baf0fa3c45039131c46766999ef8feb4880739677541747d9460810f7c6ff19439c7ea81b1bcd7184bdb2ea97ff45ff71b2b14a809f4599afabbc8d4a6e5d57bb7a8e917e5236ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 57, 13, 236, 203, 76, 83, 85, 241, 159, 191, 73, 12, 77, 12, 113, 9, 225, 169, 69, 115, + 68, 183, 59, 231, 178, 67, 189, 252, 107, 27, 226, 70, 245, 1, 215, 28, 155, 179, 255, 255, 255, 216, 102, 159, + 27, 31, 44, 77, 222, 19, 30, 121, 154, 128, 255, 67, 97, 21, 138, 216, 102, 159, 27, 52, 249, 141, 42, 134, 245, + 224, 122, 159, 191, 68, 42, 79, 46, 185, 27, 135, 253, 29, 198, 134, 243, 134, 144, 75, 117, 96, 23, 137, 6, 220, + 21, 25, 247, 231, 128, 27, 228, 0, 6, 124, 172, 248, 177, 231, 65, 213, 27, 44, 110, 4, 107, 2, 7, 79, 197, 255, + 216, 102, 159, 27, 124, 141, 188, 103, 127, 12, 166, 93, 159, 74, 24, 112, 80, 69, 247, 190, 168, 152, 26, 147, + 27, 25, 133, 52, 130, 248, 153, 226, 10, 255, 255, 191, 70, 8, 218, 23, 215, 69, 107, 27, 122, 223, 85, 235, 72, + 206, 142, 85, 255, 255, 255, 216, 102, 159, 27, 149, 55, 216, 100, 174, 22, 159, 28, 159, 191, 27, 36, 207, 238, + 166, 252, 112, 181, 135, 72, 167, 113, 203, 42, 222, 153, 25, 180, 27, 100, 115, 206, 187, 192, 180, 3, 127, 74, + 108, 19, 249, 2, 148, 35, 229, 206, 182, 193, 255, 191, 27, 46, 245, 85, 187, 53, 12, 159, 0, 27, 209, 226, 128, + 252, 220, 10, 52, 240, 27, 175, 15, 163, 196, 80, 57, 19, 28, 70, 118, 105, 153, 239, 143, 235, 72, 128, 115, 150, + 119, 84, 23, 71, 217, 70, 8, 16, 247, 198, 255, 25, 67, 156, 126, 168, 27, 27, 205, 113, 132, 189, 178, 234, 151, + 255, 69, 255, 113, 178, 177, 74, 128, 159, 69, 153, 175, 171, 188, 141, 74, 110, 93, 87, 187, 122, 142, 145, 126, + 82, 54, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 481, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2074581577151397183" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "48428de6623b" + }, + { + "_tag": "ByteArray", + "bytearray": "1c403227b3a76c" + } + ] + }, + "cborHex": "9fa01b1cca64f3ebadbd3f804648428de6623b471c403227b3a76cff", + "cborBytes": [ + 159, 160, 27, 28, 202, 100, 243, 235, 173, 189, 63, 128, 70, 72, 66, 141, 230, 98, 59, 71, 28, 64, 50, 39, 179, + 167, 108, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 482, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18130444082891959509" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3677058468559566615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0905" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7762262826964547693" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "510cb852da" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10238470541930081523" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10510373408759297390" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15105969726577107992" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13305500853206237854" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17085329754630806671" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf8851" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13002496912468566741" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f96eb643379d63e0ed6a27" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15581586790576450031" + } + } + ] + }, + "cborHex": "9fd8669f1bfb9c46d58cdbacd59fbf1b33078931fcd5b7174209051b6bb918ea3670f86d45510cb852da1b8e165ab64f0b2cf31b91dc58edcdcf356e1bd1a32f6e746ee4181bb8a6a287ca03c29e1bed1b48e3cf2e5c8f43cf8851ffffffd8669f1bb472260d3ccd62d59f4bf96eb643379d63e0ed6a27ffff1bd83ceaa1993a69efff", + "cborBytes": [ + 159, 216, 102, 159, 27, 251, 156, 70, 213, 140, 219, 172, 213, 159, 191, 27, 51, 7, 137, 49, 252, 213, 183, 23, + 66, 9, 5, 27, 107, 185, 24, 234, 54, 112, 248, 109, 69, 81, 12, 184, 82, 218, 27, 142, 22, 90, 182, 79, 11, 44, + 243, 27, 145, 220, 88, 237, 205, 207, 53, 110, 27, 209, 163, 47, 110, 116, 110, 228, 24, 27, 184, 166, 162, 135, + 202, 3, 194, 158, 27, 237, 27, 72, 227, 207, 46, 92, 143, 67, 207, 136, 81, 255, 255, 255, 216, 102, 159, 27, 180, + 114, 38, 13, 60, 205, 98, 213, 159, 75, 249, 110, 182, 67, 55, 157, 99, 224, 237, 106, 39, 255, 255, 27, 216, 60, + 234, 161, 153, 58, 105, 239, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 483, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d21249cdeb0732b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7378178684069509510" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12706405737859693313" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fbf489d21249cdeb0732b1b66648e6c01527986ff9fd8669f1bb05638b2791cbb0180ffffff", + "cborBytes": [ + 159, 191, 72, 157, 33, 36, 156, 222, 176, 115, 43, 27, 102, 100, 142, 108, 1, 82, 121, 134, 255, 159, 216, 102, + 159, 27, 176, 86, 56, 178, 121, 28, 187, 1, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 484, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3795955930463556186" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b24db08427de664" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7425800064181527162" + } + }, + { + "_tag": "ByteArray", + "bytearray": "db760a08b577" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03236cff2afa457b" + }, + { + "_tag": "ByteArray", + "bytearray": "230604" + }, + { + "_tag": "ByteArray", + "bytearray": "06f981179dbb0504030300" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4070178650102083941" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1599985271634996912" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "203635070545884060" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16903345775137459256" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7999133785539397829" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c1d40" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c32" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "580ea9a7c080" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e562eafec3308713b6f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "698eb9219f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12709830784593419372" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e4be5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03857bcc9b" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11975881844803001601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7342727496276644540" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b34adf1ce9251525a9f9f1bfffffffffffffff2488b24db08427de6641b670dbdd0969ce27a46db760a08b577ff9f4803236cff2afa457b432306044b06f981179dbb05040303001b387c2deae3b6b165ffffff9f9f1b16344a20a1a92eb01b02d375048bb2f39c1bea94bf6cbaab0c381b6f02a1cbf5e6c8c5ffbf431c1d40420c3246580ea9a7c0804a0e562eafec3308713b6f45698eb9219f1bb06263c24f03dc6c437e4be54503857bcc9bffffbf1ba632e1163f885d011b65e69bc1221012bcffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 52, 173, 241, 206, 146, 81, 82, 90, 159, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, + 72, 139, 36, 219, 8, 66, 125, 230, 100, 27, 103, 13, 189, 208, 150, 156, 226, 122, 70, 219, 118, 10, 8, 181, 119, + 255, 159, 72, 3, 35, 108, 255, 42, 250, 69, 123, 67, 35, 6, 4, 75, 6, 249, 129, 23, 157, 187, 5, 4, 3, 3, 0, 27, + 56, 124, 45, 234, 227, 182, 177, 101, 255, 255, 255, 159, 159, 27, 22, 52, 74, 32, 161, 169, 46, 176, 27, 2, 211, + 117, 4, 139, 178, 243, 156, 27, 234, 148, 191, 108, 186, 171, 12, 56, 27, 111, 2, 161, 203, 245, 230, 200, 197, + 255, 191, 67, 28, 29, 64, 66, 12, 50, 70, 88, 14, 169, 167, 192, 128, 74, 14, 86, 46, 175, 236, 51, 8, 113, 59, + 111, 69, 105, 142, 185, 33, 159, 27, 176, 98, 99, 194, 79, 3, 220, 108, 67, 126, 75, 229, 69, 3, 133, 123, 204, + 155, 255, 255, 191, 27, 166, 50, 225, 22, 63, 136, 93, 1, 27, 101, 230, 155, 193, 34, 16, 18, 188, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 485, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9460461406435238835" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f911063c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14433819946073117307" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14409277394608757866" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "937771992946968905" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14869203507899928811" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5888" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b780a36c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17b7388836b8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c91cd9a16b75" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6bcbe" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16243221105263224649" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10273517503780851452" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "79" + }, + { + "_tag": "ByteArray", + "bytearray": "7aee0231a00b643055" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1050910713810057562" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b834a4f8685dd63b39fd905079f44f911063c0a1bc84f3ac46da2d27bffbf1bc7f809725fb89c6a1b0d03a2a8b7ea09491bce5a05cf5d5e10eb42588844b780a36c4617b7388836b846c91cd9a16b7543a6bcbeff9f1be16b8388f357a749ff1b8e92ddbcfe9d8efcbf42fc271bfffffffffffffffaffffff4179497aee0231a00b6430559fd8669f1b0e9595b9eb4cf95a80ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 131, 74, 79, 134, 133, 221, 99, 179, 159, 217, 5, 7, 159, 68, 249, 17, 6, 60, 10, 27, 200, + 79, 58, 196, 109, 162, 210, 123, 255, 191, 27, 199, 248, 9, 114, 95, 184, 156, 106, 27, 13, 3, 162, 168, 183, 234, + 9, 73, 27, 206, 90, 5, 207, 93, 94, 16, 235, 66, 88, 136, 68, 183, 128, 163, 108, 70, 23, 183, 56, 136, 54, 184, + 70, 201, 28, 217, 161, 107, 117, 67, 166, 188, 190, 255, 159, 27, 225, 107, 131, 136, 243, 87, 167, 73, 255, 27, + 142, 146, 221, 188, 254, 157, 142, 252, 191, 66, 252, 39, 27, 255, 255, 255, 255, 255, 255, 255, 250, 255, 255, + 255, 65, 121, 73, 122, 238, 2, 49, 160, 11, 100, 48, 85, 159, 216, 102, 159, 27, 14, 149, 149, 185, 235, 76, 249, + 90, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 486, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6076647642245880329" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1b545496d5cd47da09d9050180ff", + "cborBytes": [159, 27, 84, 84, 150, 213, 205, 71, 218, 9, 217, 5, 1, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 487, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6728612901300195374" + } + } + ] + }, + "cborHex": "9f1b5d60d5c8b51bd02eff", + "cborBytes": [159, 27, 93, 96, 213, 200, 181, 27, 208, 46, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 488, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12709173899421718152" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f556fb91f47d26bd0a1cb0" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17566494167926976378" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6889500234181589722" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16443345623295024091" + } + } + ] + }, + "cborHex": "9f9f1bb0600e534fb296889f4bf556fb91f47d26bd0a1cb0ffffd8669f1bf3c8b95fdc422f7a9f9f1b5f9c6bf5fa5d3ada41e4ffffff1be4327fb94b795bdbff", + "cborBytes": [ + 159, 159, 27, 176, 96, 14, 83, 79, 178, 150, 136, 159, 75, 245, 86, 251, 145, 244, 125, 38, 189, 10, 28, 176, 255, + 255, 216, 102, 159, 27, 243, 200, 185, 95, 220, 66, 47, 122, 159, 159, 27, 95, 156, 107, 245, 250, 93, 58, 218, + 65, 228, 255, 255, 255, 27, 228, 50, 127, 185, 75, 121, 91, 219, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 489, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "feb7ef60ecbf95aedc69" + }, + { + "_tag": "ByteArray", + "bytearray": "8fc89ab7d9" + }, + { + "_tag": "ByteArray", + "bytearray": "6574206b2ead7454" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7010716574575747874" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b671fbe4982dd7a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14139023438638234424" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63f556" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7938c11880" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10500697341992934314" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14099621711746411837" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12521448688944485022" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "25c18d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8313628988585541516" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f9f4afeb7ef60ecbf95aedc69458fc89ab7d9486574206b2ead74541b614b11948887e322ffbf482b671fbe4982dd7a1bc437e6e7daf43b384363f5564158457938c118804164ffd8669f1b91b9f898f3609baa80ffff1bc3abeb3e6c07ad3d1badc51f3db9d1129ebf4325c18d1b735ff1848307ff8cffff", + "cborBytes": [ + 159, 159, 159, 74, 254, 183, 239, 96, 236, 191, 149, 174, 220, 105, 69, 143, 200, 154, 183, 217, 72, 101, 116, 32, + 107, 46, 173, 116, 84, 27, 97, 75, 17, 148, 136, 135, 227, 34, 255, 191, 72, 43, 103, 31, 190, 73, 130, 221, 122, + 27, 196, 55, 230, 231, 218, 244, 59, 56, 67, 99, 245, 86, 65, 88, 69, 121, 56, 193, 24, 128, 65, 100, 255, 216, + 102, 159, 27, 145, 185, 248, 152, 243, 96, 155, 170, 128, 255, 255, 27, 195, 171, 235, 62, 108, 7, 173, 61, 27, + 173, 197, 31, 61, 185, 209, 18, 158, 191, 67, 37, 193, 141, 27, 115, 95, 241, 132, 131, 7, 255, 140, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 490, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6474458250435707653" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11567357163240975839" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7673022674719994189" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4540654427421541888" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6766729632773346742" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13280559229414478792" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17021373588622245976" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b807c097091a1063ea3f" + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b59d9e579c25143051ba087820db10c6ddf1b6a7c0d782033f14d4195ffd8669f1b3f03a524f24406009fd8669f1b5de840bfd49095b69f1bb84e064177c913c81bec381118830b80584ab807c097091a1063ea3fffffffffff", + "cborBytes": [ + 159, 191, 27, 89, 217, 229, 121, 194, 81, 67, 5, 27, 160, 135, 130, 13, 177, 12, 109, 223, 27, 106, 124, 13, 120, + 32, 51, 241, 77, 65, 149, 255, 216, 102, 159, 27, 63, 3, 165, 36, 242, 68, 6, 0, 159, 216, 102, 159, 27, 93, 232, + 64, 191, 212, 144, 149, 182, 159, 27, 184, 78, 6, 65, 119, 201, 19, 200, 27, 236, 56, 17, 24, 131, 11, 128, 88, + 74, 184, 7, 192, 151, 9, 26, 16, 99, 234, 63, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 491, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4134138683991286880" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15605977746170730586" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2339939455727142720" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17364951506672326026" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "814761063434790670" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17664264003918546835" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c7d418fed2b88" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "43a5" + }, + { + "_tag": "ByteArray", + "bytearray": "04b2035c4a" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7447904988791522456" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10122244204199719313" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8683037817543878662" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10741851280759864692" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8854093617465710476" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17589839556202572552" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7c8d63ea7ba43ae09" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b395f693abf8064609fbf1bd89392137d28585a1b2079228996898740ffbf1bf0fcb3645116958a1b0b4e9cded2d9a70e1bf5241285b448c793474c7d418fed2b88ff4243a54504b2035c4aa0ffffbf1b675c462069c744981b8c796f794914b1911b788058e3edfc680641ad1b9512b8d3bbc43d741b7ae00f3bed18d78c1bf41ba9e1a391ab0849c7c8d63ea7ba43ae09ff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 57, 95, 105, 58, 191, 128, 100, 96, 159, 191, 27, 216, 147, 146, 19, 125, 40, 88, 90, 27, + 32, 121, 34, 137, 150, 137, 135, 64, 255, 191, 27, 240, 252, 179, 100, 81, 22, 149, 138, 27, 11, 78, 156, 222, + 210, 217, 167, 14, 27, 245, 36, 18, 133, 180, 72, 199, 147, 71, 76, 125, 65, 143, 237, 43, 136, 255, 66, 67, 165, + 69, 4, 178, 3, 92, 74, 160, 255, 255, 191, 27, 103, 92, 70, 32, 105, 199, 68, 152, 27, 140, 121, 111, 121, 73, 20, + 177, 145, 27, 120, 128, 88, 227, 237, 252, 104, 6, 65, 173, 27, 149, 18, 184, 211, 187, 196, 61, 116, 27, 122, + 224, 15, 59, 237, 24, 215, 140, 27, 244, 27, 169, 225, 163, 145, 171, 8, 73, 199, 200, 214, 62, 167, 186, 67, 174, + 9, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 492, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "85" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10462476455805750721" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0a76617c67ff8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12899478614317120203" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08dc7f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17906747405029695464" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31e5536dd8e8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11913357396281850971" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57bb772d403e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12689569408149162913" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17254913989191124166" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13102693971074504177" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6813898989324530303" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4983958019255055598" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13719975886176664516" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "74a1e25a6819983f" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8996979269324880864" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a689bc83dcf615e352a" + }, + { + "_tag": "ByteArray", + "bytearray": "05fdc074fb5ad9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14513805544150372727" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9029178867837549275" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8565904028418129873" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10712130779579899879" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16394572824154469264" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14796124430539178278" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12461991860537467862" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4185bf1b91322ee76b308dc147c0a76617c67ff81bb3042774921ebacb4308dc7f1bf8818be40f715fe84631e5536dd8e8ff9fbf1ba554bf6ea7a6fc5b4657bb772d403e1bb01a6824fd650ba11bef75c4da4ba7c4c6ffd8669f1bb5d61ebee28c55f19f1b5e8fd5077a14f27f1b452a9369912834eeffffffd8669f1bbe6725607e7c3bc49f4874a1e25a6819983f80ffffd8669f1b7cdbb0fa37a9bbe09fa09f4a6a689bc83dcf615e352a4705fdc074fb5ad91bc96b653eb62d91771b7d4e165776ebbadbff9f1b76e0345469f33fd1ff9f1b94a9223050635fe71be385391f13fff3901bcd5664c6bec441261bacf1e392192523d6ffffffff", + "cborBytes": [ + 159, 65, 133, 191, 27, 145, 50, 46, 231, 107, 48, 141, 193, 71, 192, 167, 102, 23, 198, 127, 248, 27, 179, 4, 39, + 116, 146, 30, 186, 203, 67, 8, 220, 127, 27, 248, 129, 139, 228, 15, 113, 95, 232, 70, 49, 229, 83, 109, 216, 232, + 255, 159, 191, 27, 165, 84, 191, 110, 167, 166, 252, 91, 70, 87, 187, 119, 45, 64, 62, 27, 176, 26, 104, 36, 253, + 101, 11, 161, 27, 239, 117, 196, 218, 75, 167, 196, 198, 255, 216, 102, 159, 27, 181, 214, 30, 190, 226, 140, 85, + 241, 159, 27, 94, 143, 213, 7, 122, 20, 242, 127, 27, 69, 42, 147, 105, 145, 40, 52, 238, 255, 255, 255, 216, 102, + 159, 27, 190, 103, 37, 96, 126, 124, 59, 196, 159, 72, 116, 161, 226, 90, 104, 25, 152, 63, 128, 255, 255, 216, + 102, 159, 27, 124, 219, 176, 250, 55, 169, 187, 224, 159, 160, 159, 74, 106, 104, 155, 200, 61, 207, 97, 94, 53, + 42, 71, 5, 253, 192, 116, 251, 90, 217, 27, 201, 107, 101, 62, 182, 45, 145, 119, 27, 125, 78, 22, 87, 118, 235, + 186, 219, 255, 159, 27, 118, 224, 52, 84, 105, 243, 63, 209, 255, 159, 27, 148, 169, 34, 48, 80, 99, 95, 231, 27, + 227, 133, 57, 31, 19, 255, 243, 144, 27, 205, 86, 100, 198, 190, 196, 65, 38, 27, 172, 241, 227, 146, 25, 37, 35, + 214, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 493, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c468e629" + }, + { + "_tag": "ByteArray", + "bytearray": "b2cf8758cda2fe2327c6c8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17633311327314829488" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "493dc1256a65e589cb2f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "118387eace8d9f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c7aa77f" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "19fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8206338803782604977" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f44c468e6294bb2cf8758cda2fe2327c6c81bf4b61b3a1678e0b0ffbf4a493dc1256a65e589cb2f47118387eace8d9f41a7445c7aa77fff4219fb1b71e2c5a9b9f758b1ffff", + "cborBytes": [ + 159, 159, 159, 68, 196, 104, 230, 41, 75, 178, 207, 135, 88, 205, 162, 254, 35, 39, 198, 200, 27, 244, 182, 27, + 58, 22, 120, 224, 176, 255, 191, 74, 73, 61, 193, 37, 106, 101, 229, 137, 203, 47, 71, 17, 131, 135, 234, 206, + 141, 159, 65, 167, 68, 92, 122, 167, 127, 255, 66, 25, 251, 27, 113, 226, 197, 169, 185, 247, 88, 177, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 494, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1290915550446271184" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e18db3c" + }, + { + "_tag": "ByteArray", + "bytearray": "0d52b09fc245e3f77794" + } + ] + }, + "cborHex": "9f1b11ea40da8360bad0448e18db3c4a0d52b09fc245e3f77794ff", + "cborBytes": [ + 159, 27, 17, 234, 64, 218, 131, 96, 186, 208, 68, 142, 24, 219, 60, 74, 13, 82, 176, 159, 194, 69, 227, 247, 119, + 148, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 495, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7706861299086284417" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b1769695e93" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6563265851940974962" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "19464e67d69458" + }, + { + "_tag": "ByteArray", + "bytearray": "bad9a0d68d0befb40e" + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b6af44584d13e5681462b1769695e93ff9fd8669f1b5b156784c764b1729f4719464e67d6945849bad9a0d68d0befb40effffffff", + "cborBytes": [ + 159, 191, 27, 106, 244, 69, 132, 209, 62, 86, 129, 70, 43, 23, 105, 105, 94, 147, 255, 159, 216, 102, 159, 27, 91, + 21, 103, 132, 199, 100, 177, 114, 159, 71, 25, 70, 78, 103, 214, 148, 88, 73, 186, 217, 160, 214, 141, 11, 239, + 180, 14, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 496, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f7" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7361738366310627995" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2cf45a26" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8286830584438525734" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e785206fa00d62cbc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12863060682232180754" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ce6609db5d549c9060f" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48ad3fc21a8a8bacd5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14433361676158781324" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b588e6cd4465c946b303d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10384487337486547837" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4102715949971380443" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e676420525b46c3bb4f78f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14579496016706422112" + } + } + } + ] + } + ] + }, + "cborHex": "9f41f7801b662a260a3d4f3a9bbf442cf45a261b7300bc82d34d0f26493e785206fa00d62cbc1bb282c58a00be301241954a1ce6609db5d549c9060fffbf4948ad3fc21a8a8bacd51bc84d99f9262e478c4b8b588e6cd4465c946b303d1b901d1c36cd6d7b7d41d91b38efc66b5c5f98db4be676420525b46c3bb4f78f1bca54c661b8024560ffff", + "cborBytes": [ + 159, 65, 247, 128, 27, 102, 42, 38, 10, 61, 79, 58, 155, 191, 68, 44, 244, 90, 38, 27, 115, 0, 188, 130, 211, 77, + 15, 38, 73, 62, 120, 82, 6, 250, 0, 214, 44, 188, 27, 178, 130, 197, 138, 0, 190, 48, 18, 65, 149, 74, 28, 230, + 96, 157, 181, 213, 73, 201, 6, 15, 255, 191, 73, 72, 173, 63, 194, 26, 138, 139, 172, 213, 27, 200, 77, 153, 249, + 38, 46, 71, 140, 75, 139, 88, 142, 108, 212, 70, 92, 148, 107, 48, 61, 27, 144, 29, 28, 54, 205, 109, 123, 125, + 65, 217, 27, 56, 239, 198, 107, 92, 95, 152, 219, 75, 230, 118, 66, 5, 37, 180, 108, 59, 180, 247, 143, 27, 202, + 84, 198, 97, 184, 2, 69, 96, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 497, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12393555805173352444" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d2900cd6af05e" + } + ] + }, + "cborHex": "9f1babfec157475687fc479d2900cd6af05eff", + "cborBytes": [159, 27, 171, 254, 193, 87, 71, 86, 135, 252, 71, 157, 41, 0, 205, 106, 240, 94, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 498, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9210260139113798935" + } + } + ] + }, + "cborHex": "9f1b7fd16acc68d15d17ff", + "cborBytes": [159, 27, 127, 209, 106, 204, 104, 209, 93, 23, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 499, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5f3bddb5747905" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d08ac103f128ccb4b7" + }, + { + "_tag": "ByteArray", + "bytearray": "d18c082275a6aa59" + }, + { + "_tag": "ByteArray", + "bytearray": "ae98e3491451167494" + } + ] + } + ] + }, + "cborHex": "9f475f3bddb5747905809f49d08ac103f128ccb4b748d18c082275a6aa5949ae98e3491451167494ffff", + "cborBytes": [ + 159, 71, 95, 59, 221, 181, 116, 121, 5, 128, 159, 73, 208, 138, 193, 3, 241, 40, 204, 180, 183, 72, 209, 140, 8, + 34, 117, 166, 170, 89, 73, 174, 152, 227, 73, 20, 81, 22, 116, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 500, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15627355680000371506" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7599994848093115987" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "285117622473435980" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7807743698270012859" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d75c1d3" + }, + { + "_tag": "ByteArray", + "bytearray": "223d132cc4a05a83" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3648809742564884715" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7484464454379223364" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6138101695615029799" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5275681735669693691" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "900355632052570031" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18314702075533282870" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8984742599754906389" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5185494977067651060" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a3d89f9fb9725a5dcb32f558" + }, + { + "_tag": "ByteArray", + "bytearray": "c6acab31" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7223228364704499465" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2673054167782737815" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14335995182895858787" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12758782556282686148" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17121101126882844738" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6ffa4bd1e9f13418a833" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7905372437522587087" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16470240589862087144" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9793431407777771309" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8115980162236911019" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12663748061927727971" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f17b3bd732b6cc0221ccf1" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13631907657664226506" + } + } + ] + }, + "cborHex": "9f9f9f1bd8df8531951aeb321b69789b0c3f639653ff1b03f4f0f78ebbab4c9f1b6c5aad86c0adc5bb446d75c1d348223d132cc4a05a831b32a32d20ee9080ebff9f1b67de28c4514fb9441b552eeaf89a5b5227ffffd8669f1b4936fc963a9bbcfb9f1b0c7eb4ad540407afd8669f1bfe2ae48093454e369f417c1b7cb037ca90b5fb15ffff9f1b47f694352cb08ff44ca3d89f9fb9725a5dcb32f55844c6acab311b643e0fed69bcc709ff9f1b2518989a681147971bc6f3afa9da3804631bb1104d22d1ae0ac41bed9a5ec36f646042ff4a6ffa4bd1e9f13418a833ffffbf1b6db58658f3b29dcf1be4920c8dabf329e81b87e941fa40bf6f2d1b70a1c0f50e3f8dab1bafbeabc4543e63634bf17b3bd732b6cc0221ccf1ff1bbd2e43ca2a00e4caff", + "cborBytes": [ + 159, 159, 159, 27, 216, 223, 133, 49, 149, 26, 235, 50, 27, 105, 120, 155, 12, 63, 99, 150, 83, 255, 27, 3, 244, + 240, 247, 142, 187, 171, 76, 159, 27, 108, 90, 173, 134, 192, 173, 197, 187, 68, 109, 117, 193, 211, 72, 34, 61, + 19, 44, 196, 160, 90, 131, 27, 50, 163, 45, 32, 238, 144, 128, 235, 255, 159, 27, 103, 222, 40, 196, 81, 79, 185, + 68, 27, 85, 46, 234, 248, 154, 91, 82, 39, 255, 255, 216, 102, 159, 27, 73, 54, 252, 150, 58, 155, 188, 251, 159, + 27, 12, 126, 180, 173, 84, 4, 7, 175, 216, 102, 159, 27, 254, 42, 228, 128, 147, 69, 78, 54, 159, 65, 124, 27, + 124, 176, 55, 202, 144, 181, 251, 21, 255, 255, 159, 27, 71, 246, 148, 53, 44, 176, 143, 244, 76, 163, 216, 159, + 159, 185, 114, 90, 93, 203, 50, 245, 88, 68, 198, 172, 171, 49, 27, 100, 62, 15, 237, 105, 188, 199, 9, 255, 159, + 27, 37, 24, 152, 154, 104, 17, 71, 151, 27, 198, 243, 175, 169, 218, 56, 4, 99, 27, 177, 16, 77, 34, 209, 174, 10, + 196, 27, 237, 154, 94, 195, 111, 100, 96, 66, 255, 74, 111, 250, 75, 209, 233, 241, 52, 24, 168, 51, 255, 255, + 191, 27, 109, 181, 134, 88, 243, 178, 157, 207, 27, 228, 146, 12, 141, 171, 243, 41, 232, 27, 135, 233, 65, 250, + 64, 191, 111, 45, 27, 112, 161, 192, 245, 14, 63, 141, 171, 27, 175, 190, 171, 196, 84, 62, 99, 99, 75, 241, 123, + 59, 215, 50, 182, 204, 2, 33, 204, 241, 255, 27, 189, 46, 67, 202, 42, 0, 228, 202, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 501, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e5c0c9490bc9208668fe" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f4ae5c0c9490bc9208668fea0ff", + "cborBytes": [159, 74, 229, 192, 201, 73, 11, 201, 32, 134, 104, 254, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 502, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "82" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8bc4d70bac7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc760547050e87f705fcfa88" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0607a7" + } + } + ] + } + ] + }, + "cborHex": "9fbf418246d8bc4d70bac74cfc760547050e87f705fcfa88430607a7ffff", + "cborBytes": [ + 159, 191, 65, 130, 70, 216, 188, 77, 112, 186, 199, 76, 252, 118, 5, 71, 5, 14, 135, 247, 5, 252, 250, 136, 67, 6, + 7, 167, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 503, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04a885" + } + ] + } + ] + }, + "cborHex": "9fa09f4304a885ffff", + "cborBytes": [159, 160, 159, 67, 4, 168, 133, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 504, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e3d877b8c8fcfe0759fc039d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9682445319683551087" + }, + "fields": [] + } + ] + }, + "cborHex": "9f4ce3d877b8c8fcfe0759fc039dd8669f1b865ef4b7ece1af6f80ffff", + "cborBytes": [ + 159, 76, 227, 216, 119, 184, 200, 252, 254, 7, 89, 252, 3, 157, 216, 102, 159, 27, 134, 94, 244, 183, 236, 225, + 175, 111, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 505, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10381561481424500172" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "371273c74cb0226c2af2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5739415536197443748" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4abd7964d33f535585ba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1337aeee3647e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82fad06f836f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7be2ff5368fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3045911158810057199" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16934438354893484743" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11615450062200062077" + } + } + ] + }, + "cborHex": "9fbf41021b9012b729da2f75cc4a371273c74cb0226c2af21b4fa680057d6820a44a4abd7964d33f535585ba471337aeee3647e24682fad06f836f418aff467be2ff5368fc1b2a45400f9e4599ef1beb0335f6162d32c71ba1325e4a4fb9407dff", + "cborBytes": [ + 159, 191, 65, 2, 27, 144, 18, 183, 41, 218, 47, 117, 204, 74, 55, 18, 115, 199, 76, 176, 34, 108, 42, 242, 27, 79, + 166, 128, 5, 125, 104, 32, 164, 74, 74, 189, 121, 100, 211, 63, 83, 85, 133, 186, 71, 19, 55, 174, 238, 54, 71, + 226, 70, 130, 250, 208, 111, 131, 111, 65, 138, 255, 70, 123, 226, 255, 83, 104, 252, 27, 42, 69, 64, 15, 158, 69, + 153, 239, 27, 235, 3, 53, 246, 22, 45, 50, 199, 27, 161, 50, 94, 74, 79, 185, 64, 125, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 506, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6585794251750757053" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8577503069324333601" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "140038157676397997" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2470423597078060275" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8199200339211655138" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e2819d013f38b971da9e1b26" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4337613149155759424" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ca2f1ecd7a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c8f9142cfe8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9795986871347890354" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddb3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13805960024955727835" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4d7363012" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4baf785218a791" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff624d832e273f24b048f2" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4585720270341782289" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9500628021009722792" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "760fa6d4179f70c37b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8086812533511037587" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "daf958103fb8cb8467909e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14918857484033209381" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6102874079937540870" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1233912746516251502" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8700423924697388062" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9273609749114772089" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5335104386008608461" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11274682528119595765" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6fbbc15c7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15173868989206149520" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0591becab788180d86a9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17156202422871868355" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e980b91" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "78cf" + }, + { + "_tag": "ByteArray", + "bytearray": "0de9d11949" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7ec5cd7c28ff982a4bcf24" + } + ] + }, + "cborHex": "9fd8669f1b5b6570fa9b69d2bd9f9f1b7709699892e652211b01f183f6634d45ad1b2248b52c34949cf31b71c969446cf917e24ce2819d013f38b971da9e1b26ff9f1b3c324c2d707e154045ca2f1ecd7affbf464c8f9142cfe81b87f256287b14c8b242ddb31bbf989f7edebaafdbffbf45b4d7363012474baf785218a79141d34bff624d832e273f24b048f2ff1b3fa3c04a2907bb11ffffd8669f1b83d902d93f682da89fbf49760fa6d4179f70c37b1b703a2127491a22934bdaf958103fb8cb8467909e1bcf0a6dd6967a3425ff1b54b1c3a42b9db306bf1b111fbd1afbed836e1b78be1d7672e5d41e1b80b27aeee195da791b4a0a192c27abeecd1b9c77b80603df22f545e6fbbc15c71bd294697379f2b9904a0591becab788180d86a91bee171334c5f943c3443e980b91ff9f4278cf450de9d11949ffffff4b7ec5cd7c28ff982a4bcf24ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 91, 101, 112, 250, 155, 105, 210, 189, 159, 159, 27, 119, 9, 105, 152, 146, 230, 82, 33, + 27, 1, 241, 131, 246, 99, 77, 69, 173, 27, 34, 72, 181, 44, 52, 148, 156, 243, 27, 113, 201, 105, 68, 108, 249, + 23, 226, 76, 226, 129, 157, 1, 63, 56, 185, 113, 218, 158, 27, 38, 255, 159, 27, 60, 50, 76, 45, 112, 126, 21, 64, + 69, 202, 47, 30, 205, 122, 255, 191, 70, 76, 143, 145, 66, 207, 232, 27, 135, 242, 86, 40, 123, 20, 200, 178, 66, + 221, 179, 27, 191, 152, 159, 126, 222, 186, 175, 219, 255, 191, 69, 180, 215, 54, 48, 18, 71, 75, 175, 120, 82, + 24, 167, 145, 65, 211, 75, 255, 98, 77, 131, 46, 39, 63, 36, 176, 72, 242, 255, 27, 63, 163, 192, 74, 41, 7, 187, + 17, 255, 255, 216, 102, 159, 27, 131, 217, 2, 217, 63, 104, 45, 168, 159, 191, 73, 118, 15, 166, 212, 23, 159, + 112, 195, 123, 27, 112, 58, 33, 39, 73, 26, 34, 147, 75, 218, 249, 88, 16, 63, 184, 203, 132, 103, 144, 158, 27, + 207, 10, 109, 214, 150, 122, 52, 37, 255, 27, 84, 177, 195, 164, 43, 157, 179, 6, 191, 27, 17, 31, 189, 26, 251, + 237, 131, 110, 27, 120, 190, 29, 118, 114, 229, 212, 30, 27, 128, 178, 122, 238, 225, 149, 218, 121, 27, 74, 10, + 25, 44, 39, 171, 238, 205, 27, 156, 119, 184, 6, 3, 223, 34, 245, 69, 230, 251, 188, 21, 199, 27, 210, 148, 105, + 115, 121, 242, 185, 144, 74, 5, 145, 190, 202, 183, 136, 24, 13, 134, 169, 27, 238, 23, 19, 52, 197, 249, 67, 195, + 68, 62, 152, 11, 145, 255, 159, 66, 120, 207, 69, 13, 233, 209, 25, 73, 255, 255, 255, 75, 126, 197, 205, 124, 40, + 255, 152, 42, 75, 207, 36, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 507, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1972244775394443614" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df01c0fa94" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10443578223074894464" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c003edfa33898f7f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13130702606044742173" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17514093186772739904" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3eff461aa1154beb94" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b1b5ed22c7f81815e45df01c0fa941b90ef0b0fba62628048c003edfa33898f7f1bb639a0736497c21d1bf30e8ef5b0ada740493eff461aa1154beb944176ffff", + "cborBytes": [ + 159, 191, 27, 27, 94, 210, 44, 127, 129, 129, 94, 69, 223, 1, 192, 250, 148, 27, 144, 239, 11, 15, 186, 98, 98, + 128, 72, 192, 3, 237, 250, 51, 137, 143, 127, 27, 182, 57, 160, 115, 100, 151, 194, 29, 27, 243, 14, 142, 245, + 176, 173, 167, 64, 73, 62, 255, 70, 26, 161, 21, 75, 235, 148, 65, 118, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 508, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15516955684371293720" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1d5242" + } + ] + } + ] + } + ] + }, + "cborHex": "9f10d8669f1bd7574cfb8a6de6189f9f431d5242ffffffff", + "cborBytes": [ + 159, 16, 216, 102, 159, 27, 215, 87, 76, 251, 138, 109, 230, 24, 159, 159, 67, 29, 82, 66, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 509, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1104822028412512829" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5313903996591578262" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d519c3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14236775057817996621" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1929550292801086063" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1b0f551dc7ff8dea3dbf1b49bec787d75e9c9643d519c31bc5932f7c44620d4d1b1ac723c4a2a8e26fffffff", + "cborBytes": [ + 159, 159, 27, 15, 85, 29, 199, 255, 141, 234, 61, 191, 27, 73, 190, 199, 135, 215, 94, 156, 150, 67, 213, 25, 195, + 27, 197, 147, 47, 124, 68, 98, 13, 77, 27, 26, 199, 35, 196, 162, 168, 226, 111, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 510, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13590397554266075590" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7513952329360565635" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f3059d53" + }, + { + "_tag": "ByteArray", + "bytearray": "47cba3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6888385301844742890" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10413066286691446826" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "744c02b5bef8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5394769813863536999" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16596682541769493831" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f166a535bb953b02d0b19e" + }, + { + "_tag": "ByteArray", + "bytearray": "147ce1dd1175c7603d" + } + ] + }, + "cborHex": "9fd8669f1bbc9aca92125df1c69f80d8669f1b6846ebd53ac165839f44f3059d534347cba31b5f9875ef907a52ea1b9082a49df0d6f02affff46744c02b5bef8ffff1b4ade1290205619671be65342d6b8190d474bf166a535bb953b02d0b19e49147ce1dd1175c7603dff", + "cborBytes": [ + 159, 216, 102, 159, 27, 188, 154, 202, 146, 18, 93, 241, 198, 159, 128, 216, 102, 159, 27, 104, 70, 235, 213, 58, + 193, 101, 131, 159, 68, 243, 5, 157, 83, 67, 71, 203, 163, 27, 95, 152, 117, 239, 144, 122, 82, 234, 27, 144, 130, + 164, 157, 240, 214, 240, 42, 255, 255, 70, 116, 76, 2, 181, 190, 248, 255, 255, 27, 74, 222, 18, 144, 32, 86, 25, + 103, 27, 230, 83, 66, 214, 184, 25, 13, 71, 75, 241, 102, 165, 53, 187, 149, 59, 2, 208, 177, 158, 73, 20, 124, + 225, 221, 17, 117, 199, 96, 61, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 511, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16527396668850870371" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9226625421772861873" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13457476581068445543" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10440168724358413235" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c77f45ad13a862" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b465d71b7ac5644c690600" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13451121674690768997" + } + } + } + ] + } + ] + }, + "cborHex": "9f1be55d1bb454d49863bf1b800b8eefb45c31b11bbac28fa653b917671b90e2ee23f286bbb347c77f45ad13a8624bb465d71b7ac5644c6906001bbaabfbe562803065ffff", + "cborBytes": [ + 159, 27, 229, 93, 27, 180, 84, 212, 152, 99, 191, 27, 128, 11, 142, 239, 180, 92, 49, 177, 27, 186, 194, 143, 166, + 83, 185, 23, 103, 27, 144, 226, 238, 35, 242, 134, 187, 179, 71, 199, 127, 69, 173, 19, 168, 98, 75, 180, 101, + 215, 27, 122, 197, 100, 76, 105, 6, 0, 27, 186, 171, 251, 229, 98, 128, 48, 101, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 512, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17983031234420721305" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7ead6a9d9d0822cf56b07f1f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30cc33b2fcd0afbf83256e47" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13443673708304642191" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "345f824d1ebcf1a06a55" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15852797df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a85a27bc719f67a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2581596607390668479" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be04243a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2d9c30efb01117b65045e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1659082517599485652" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1f" + }, + { + "_tag": "ByteArray", + "bytearray": "e0645198d69a665bea203416" + } + ] + }, + "cborHex": "9f1bf9908fa12866c6994c7ead6a9d9d0822cf56b07f1fbf4c30cc33b2fcd0afbf83256e471bba91860293c1b08f4a345f824d1ebcf1a06a554515852797df48a85a27bc719f67a51b23d3ac6fc0dfd6bf44be04243a419a4bc2d9c30efb01117b65045e1b17063ec27293fed4ff411f4ce0645198d69a665bea203416ff", + "cborBytes": [ + 159, 27, 249, 144, 143, 161, 40, 102, 198, 153, 76, 126, 173, 106, 157, 157, 8, 34, 207, 86, 176, 127, 31, 191, + 76, 48, 204, 51, 178, 252, 208, 175, 191, 131, 37, 110, 71, 27, 186, 145, 134, 2, 147, 193, 176, 143, 74, 52, 95, + 130, 77, 30, 188, 241, 160, 106, 85, 69, 21, 133, 39, 151, 223, 72, 168, 90, 39, 188, 113, 159, 103, 165, 27, 35, + 211, 172, 111, 192, 223, 214, 191, 68, 190, 4, 36, 58, 65, 154, 75, 194, 217, 195, 14, 251, 1, 17, 123, 101, 4, + 94, 27, 23, 6, 62, 194, 114, 147, 254, 212, 255, 65, 31, 76, 224, 100, 81, 152, 214, 154, 102, 91, 234, 32, 52, + 22, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 513, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0400a4ff" + }, + { + "_tag": "ByteArray", + "bytearray": "0326" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17338736009039703306" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3fcedde014e0bf7d" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0476" + } + ] + } + ] + }, + "cborHex": "9f440400a4ff420326d8669f1bf09f90892115ed0a9f483fcedde014e0bf7dffffa09f420476ffff", + "cborBytes": [ + 159, 68, 4, 0, 164, 255, 66, 3, 38, 216, 102, 159, 27, 240, 159, 144, 137, 33, 21, 237, 10, 159, 72, 63, 206, 221, + 224, 20, 224, 191, 125, 255, 255, 160, 159, 66, 4, 118, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 514, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + }, + "cborHex": "9f0dff", + "cborBytes": [159, 13, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 515, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16812086733811993702" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10140581905158318061" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17205781948787373528" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "115c686c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "745e3149de324956a461" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "efc1c0775f9d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9282789965393204112" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1485698442921247756" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f6c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3e1f274c25e370" + }, + { + "_tag": "ByteArray", + "bytearray": "33b163b879eb69" + }, + { + "_tag": "ByteArray", + "bytearray": "26fb593d3cde772ae8453f3e" + }, + { + "_tag": "ByteArray", + "bytearray": "e9" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1be95087cf65ebcc669f9f1b8cba958400b727edff1beec73785b44cb5d89f44115c686cff4a745e3149de324956a461ffffbf46efc1c0775f9d1b80d3184a8bd29390ff9f9f1b149e42dcbdac040c428f6cff9f473e1f274c25e3704733b163b879eb694c26fb593d3cde772ae8453f3e41e9ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 233, 80, 135, 207, 101, 235, 204, 102, 159, 159, 27, 140, 186, 149, 132, 0, 183, 39, 237, + 255, 27, 238, 199, 55, 133, 180, 76, 181, 216, 159, 68, 17, 92, 104, 108, 255, 74, 116, 94, 49, 73, 222, 50, 73, + 86, 164, 97, 255, 255, 191, 70, 239, 193, 192, 119, 95, 157, 27, 128, 211, 24, 74, 139, 210, 147, 144, 255, 159, + 159, 27, 20, 158, 66, 220, 189, 172, 4, 12, 66, 143, 108, 255, 159, 71, 62, 31, 39, 76, 37, 227, 112, 71, 51, 177, + 99, 184, 121, 235, 105, 76, 38, 251, 89, 61, 60, 222, 119, 42, 232, 69, 63, 62, 65, 233, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 516, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16752056769087324437" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "412dd325" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "618154275214641051" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a9b9176f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a743d712" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cdc371d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9261693528541256901" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9515e58ae2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "824474580499236460" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3776505077301566a389dd0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec5c3046f22a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f585fffc919a2" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "50f833" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4775f6632c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c9358" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "996b13986d7e5224cc2c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0b4" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4336047200801938092" + } + }, + { + "_tag": "ByteArray", + "bytearray": "918ac7387c2e5897" + }, + { + "_tag": "ByteArray", + "bytearray": "6bb473910b9cbe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10223489573514882636" + } + }, + { + "_tag": "ByteArray", + "bytearray": "11a20264ea" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b61c254f2ffb7d" + } + ] + }, + "cborHex": "9f1be87b42e012a0c115bf44412dd3251b08942009c68ec79b455a9b9176f244a743d712447cdc371d1b80882531933c5cc5459515e58ae21b0b711f4340ff066c419c4cf3776505077301566a389dd046ec5c3046f22a475f585fffc919a2ff4350f833d8669f1bfffffffffffffff99fbf454775f6632c436c93584a996b13986d7e5224cc2c42f0b4ff9f1b3c2cbbf4ad205aac48918ac7387c2e5897476bb473910b9cbe1b8de12199ca43ae4c4511a20264eaffffff47b61c254f2ffb7dff", + "cborBytes": [ + 159, 27, 232, 123, 66, 224, 18, 160, 193, 21, 191, 68, 65, 45, 211, 37, 27, 8, 148, 32, 9, 198, 142, 199, 155, 69, + 90, 155, 145, 118, 242, 68, 167, 67, 215, 18, 68, 124, 220, 55, 29, 27, 128, 136, 37, 49, 147, 60, 92, 197, 69, + 149, 21, 229, 138, 226, 27, 11, 113, 31, 67, 64, 255, 6, 108, 65, 156, 76, 243, 119, 101, 5, 7, 115, 1, 86, 106, + 56, 157, 208, 70, 236, 92, 48, 70, 242, 42, 71, 95, 88, 95, 255, 201, 25, 162, 255, 67, 80, 248, 51, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 191, 69, 71, 117, 246, 99, 44, 67, 108, 147, 88, 74, 153, + 107, 19, 152, 109, 126, 82, 36, 204, 44, 66, 240, 180, 255, 159, 27, 60, 44, 187, 244, 173, 32, 90, 172, 72, 145, + 138, 199, 56, 124, 46, 88, 151, 71, 107, 180, 115, 145, 11, 156, 190, 27, 141, 225, 33, 153, 202, 67, 174, 76, 69, + 17, 162, 2, 100, 234, 255, 255, 255, 71, 182, 28, 37, 79, 47, 251, 125, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 517, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6557294062812479693" + } + } + ] + }, + "cborHex": "9f1b5b00303545b740cdff", + "cborBytes": [159, 27, 91, 0, 48, 53, 69, 183, 64, 205, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 518, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10425887218524590153" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c3f6037" + }, + { + "_tag": "ByteArray", + "bytearray": "d41e8554f83529760772121a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4842444970839370660" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9115461486420477861" + } + } + ] + }, + "cborHex": "9f9fd8669f1b90b0312fc07190499f447c3f60374cd41e8554f83529760772121affff1b4333d20b6b41eba4ff1b7e809fed15d8c7a5ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 144, 176, 49, 47, 192, 113, 144, 73, 159, 68, 124, 63, 96, 55, 76, 212, 30, 133, 84, + 248, 53, 41, 118, 7, 114, 18, 26, 255, 255, 27, 67, 51, 210, 11, 107, 65, 235, 164, 255, 27, 126, 128, 159, 237, + 21, 216, 199, 165, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 519, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6aac15d1a2e981f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04bd1d71f6624401d61c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bf6b23ffabce4d91c54c759" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4672588341223901545" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8224d14d381396ad41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9fc65dce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12bf4c6752" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6795728811404255647" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dce414e0e6ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1738981046836382174" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf486aac15d1a2e981f54a04bd1d71f6624401d61c4c7bf6b23ffabce4d91c54c7591b40d85e5704484969ffbf498224d14d381396ad4142d4b5449fc65dce4512bf4c675241a91b5e4f475941a3619f46dce414e0e6ed1b18221a0c6fd1c9deffff", + "cborBytes": [ + 159, 191, 72, 106, 172, 21, 209, 162, 233, 129, 245, 74, 4, 189, 29, 113, 246, 98, 68, 1, 214, 28, 76, 123, 246, + 178, 63, 250, 188, 228, 217, 28, 84, 199, 89, 27, 64, 216, 94, 87, 4, 72, 73, 105, 255, 191, 73, 130, 36, 209, 77, + 56, 19, 150, 173, 65, 66, 212, 181, 68, 159, 198, 93, 206, 69, 18, 191, 76, 103, 82, 65, 169, 27, 94, 79, 71, 89, + 65, 163, 97, 159, 70, 220, 228, 20, 224, 230, 237, 27, 24, 34, 26, 12, 111, 209, 201, 222, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 520, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5026420717779466288" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8766083555860855601" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12378344334563923988" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11886397507019043984" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75b601a6823a6bb61f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c4c30e11535bc8f83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17137431500914961721" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13756586958251436747" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a9e41" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10074356208799962467" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94901b711882da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17455974425663425312" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6468822dcafdd688f2965" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "149698164b814dd9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10058683929885242360" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "794b07381eac44eb15" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5078151608969671790" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14914395914299263395" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a9bfd31" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a26eb7ec3a71f686a515" + }, + { + "_tag": "ByteArray", + "bytearray": "dc5320b65a8b242d12" + }, + { + "_tag": "ByteArray", + "bytearray": "189dc1707738a23e836633" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10687663422628362177" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1676111340799701915" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12045103555888608069" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0d8c7ec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b4107148cb54e29f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7cbfafb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee8df0bf34798e6fe314c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0324a32b8493e77e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f24335" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17899155605572097312" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "86b20816d2cf05" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18406374536442790261" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "38a47ba0224cc1c3100363" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9779210694509415353" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "520668054302435267" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2905258289991563730" + } + }, + { + "_tag": "ByteArray", + "bytearray": "20d07def278c41c5" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b45c16f02fee8b8309f1b79a7628ca27abb31ffffa0d8669f1babc8b696c926d8149f9f1ba4f4f78e48f574904975b601a6823a6bb61fffbf492c4c30e11535bc8f831bedd46326eea02d394239ea1bbee936f3f8592acb435a9e411b8bcf4d987e45d5634794901b711882da1bf240144121f8cb204bd6468822dcafdd688f296548149698164b814dd9ffd8669f1b8b979fbdb4bd73f89f49794b07381eac44eb151b467937fbb037346e1bcefa94106f5849a3441a9bfd31ffffffff9f9f4aa26eb7ec3a71f686a51549dc5320b65a8b242d124b189dc1707738a23e8366331b94523541d8b2f7c1ffffd8669f1b1742be62505eb39b9fbf1ba728cdddcb88f34544f0d8c7ec495b4107148cb54e29f544e7cbfafb4bee8df0bf34798e6fe314c8480324a32b8493e77e43f243351bf866933081911520ff4786b20816d2cf05801bff70941ea777c1759f4b38a47ba0224cc1c31003631b87b6bc506def4bb91b0739c8d6369727c31b28518d05a3b4b9d24820d07def278c41c5ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 69, 193, 111, 2, 254, 232, 184, 48, 159, 27, 121, 167, 98, 140, 162, 122, 187, 49, 255, + 255, 160, 216, 102, 159, 27, 171, 200, 182, 150, 201, 38, 216, 20, 159, 159, 27, 164, 244, 247, 142, 72, 245, 116, + 144, 73, 117, 182, 1, 166, 130, 58, 107, 182, 31, 255, 191, 73, 44, 76, 48, 225, 21, 53, 188, 143, 131, 27, 237, + 212, 99, 38, 238, 160, 45, 57, 66, 57, 234, 27, 190, 233, 54, 243, 248, 89, 42, 203, 67, 90, 158, 65, 27, 139, + 207, 77, 152, 126, 69, 213, 99, 71, 148, 144, 27, 113, 24, 130, 218, 27, 242, 64, 20, 65, 33, 248, 203, 32, 75, + 214, 70, 136, 34, 220, 175, 221, 104, 143, 41, 101, 72, 20, 150, 152, 22, 75, 129, 77, 217, 255, 216, 102, 159, + 27, 139, 151, 159, 189, 180, 189, 115, 248, 159, 73, 121, 75, 7, 56, 30, 172, 68, 235, 21, 27, 70, 121, 55, 251, + 176, 55, 52, 110, 27, 206, 250, 148, 16, 111, 88, 73, 163, 68, 26, 155, 253, 49, 255, 255, 255, 255, 159, 159, 74, + 162, 110, 183, 236, 58, 113, 246, 134, 165, 21, 73, 220, 83, 32, 182, 90, 139, 36, 45, 18, 75, 24, 157, 193, 112, + 119, 56, 162, 62, 131, 102, 51, 27, 148, 82, 53, 65, 216, 178, 247, 193, 255, 255, 216, 102, 159, 27, 23, 66, 190, + 98, 80, 94, 179, 155, 159, 191, 27, 167, 40, 205, 221, 203, 136, 243, 69, 68, 240, 216, 199, 236, 73, 91, 65, 7, + 20, 140, 181, 78, 41, 245, 68, 231, 203, 250, 251, 75, 238, 141, 240, 191, 52, 121, 142, 111, 227, 20, 200, 72, 3, + 36, 163, 43, 132, 147, 231, 126, 67, 242, 67, 53, 27, 248, 102, 147, 48, 129, 145, 21, 32, 255, 71, 134, 178, 8, + 22, 210, 207, 5, 128, 27, 255, 112, 148, 30, 167, 119, 193, 117, 159, 75, 56, 164, 123, 160, 34, 76, 193, 195, 16, + 3, 99, 27, 135, 182, 188, 80, 109, 239, 75, 185, 27, 7, 57, 200, 214, 54, 151, 39, 195, 27, 40, 81, 141, 5, 163, + 180, 185, 210, 72, 32, 208, 125, 239, 39, 140, 65, 197, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 521, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16190510774703745759" + } + } + ] + }, + "cborHex": "9f061be0b03fc4c259eadfff", + "cborBytes": [159, 6, 27, 224, 176, 63, 196, 194, 89, 234, 223, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 522, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "60a110fe05f8d2" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d201" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7240931459" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5399896764589541933" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffff9f4760a110fe05f8d28042d201bf4572409314591b4af0497f5d240a2dffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 71, 96, 161, 16, 254, 5, 248, 210, 128, 66, + 210, 1, 191, 69, 114, 64, 147, 20, 89, 27, 74, 240, 73, 127, 93, 36, 10, 45, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 523, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1252723584930776309" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16263088615596830698" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17089990501212648225" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac753f8c4b7c0ab14ee3a081" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff7066d15794aa813a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba60b52d4e14cdd8f2234d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14904164871053800662" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1870240930701554323" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4348085510963834884" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11176331694383161191" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10433892920651380547" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3283062412835285212" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e4780a79d57caee94" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2916933051928241554" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ea093f4c3f95f7f36" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3516703314936114130" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1b11629176998d84f5bf1be1b218ee2b592fea1bed2bd7d06f9473214cac753f8c4b7c0ab14ee3a08149ff7066d15794aa813a4bba60b52d4e14cdd8f2234d1bced63afc0d0474d6ff9f1b19f46e37aedcb2931b3c5780bc2e05b004ff1b9b1a4e7617a5df67bf1b90cca25487e377431b2d8fc7debc7be8dc491e4780a79d57caee941b287b0727f9c76592497ea093f4c3f95f7f361b30cdd7085b34abd2ffffff", + "cborBytes": [ + 159, 159, 27, 17, 98, 145, 118, 153, 141, 132, 245, 191, 27, 225, 178, 24, 238, 43, 89, 47, 234, 27, 237, 43, 215, + 208, 111, 148, 115, 33, 76, 172, 117, 63, 140, 75, 124, 10, 177, 78, 227, 160, 129, 73, 255, 112, 102, 209, 87, + 148, 170, 129, 58, 75, 186, 96, 181, 45, 78, 20, 205, 216, 242, 35, 77, 27, 206, 214, 58, 252, 13, 4, 116, 214, + 255, 159, 27, 25, 244, 110, 55, 174, 220, 178, 147, 27, 60, 87, 128, 188, 46, 5, 176, 4, 255, 27, 155, 26, 78, + 118, 23, 165, 223, 103, 191, 27, 144, 204, 162, 84, 135, 227, 119, 67, 27, 45, 143, 199, 222, 188, 123, 232, 220, + 73, 30, 71, 128, 167, 157, 87, 202, 238, 148, 27, 40, 123, 7, 39, 249, 199, 101, 146, 73, 126, 160, 147, 244, 195, + 249, 95, 127, 54, 27, 48, 205, 215, 8, 91, 52, 171, 210, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 524, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7860504300559784345" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14727941223272988845" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1978138545085560819" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f19f625270173313" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7599062704336643077" + } + }, + { + "_tag": "ByteArray", + "bytearray": "40b6aca6b72184cf" + }, + { + "_tag": "ByteArray", + "bytearray": "9837457340ade8815a2f" + }, + { + "_tag": "ByteArray", + "bytearray": "357c43529b514adcea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5270323528564188965" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b7928f2929" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12824455867627479877" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16662348136126438409" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "002628a4ff0919c4ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d1c1218878e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40d77cb2635600e21670ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8935571464198787867" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4983128724927984632" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14084179667844615371" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1728110307315799036" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4733600fca6a9f016dab92" + }, + { + "_tag": "ByteArray", + "bytearray": "64394c6adb31e9ed2dc596" + }, + { + "_tag": "ByteArray", + "bytearray": "12868fcf434807e3" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0e4b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "37fc45ad6c3fdf8d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10494658281353968415" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cacf7826c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4675168916799250078" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "94459750577338824" + } + } + ] + }, + "cborHex": "9fd8669f1b6d161f03be4bd9999fd8669f1bcc642882b604c0ad9f1b1b73c286b05537f348f19f625270173313ffff9f1b69754b449de7a4054840b6aca6b72184cf4a9837457340ade8815a2f49357c43529b514adcea1b4923f3536b73a725ff45b7928f29299f1bb1f99eaa2b9c2345ffffffd8669f1be73c8d5951b55c099fbf49002628a4ff0919c4ad464d1c1218878e4b40d77cb2635600e21670ee1b7c0186e76caf931bffd8669f1b4527a12c6f60b3f89f1bc3750ec966a84ccb1b17fb7b2b283fd3fcffff4b4733600fca6a9f016dab924b64394c6adb31e9ed2dc5964812868fcf434807e3ffff420e4bbf4837fc45ad6c3fdf8d1b91a4841a9336fb1f458cacf7826c1b40e1895c16c45e9eff1b014f96a486bbf9c8ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 109, 22, 31, 3, 190, 75, 217, 153, 159, 216, 102, 159, 27, 204, 100, 40, 130, 182, 4, 192, + 173, 159, 27, 27, 115, 194, 134, 176, 85, 55, 243, 72, 241, 159, 98, 82, 112, 23, 51, 19, 255, 255, 159, 27, 105, + 117, 75, 68, 157, 231, 164, 5, 72, 64, 182, 172, 166, 183, 33, 132, 207, 74, 152, 55, 69, 115, 64, 173, 232, 129, + 90, 47, 73, 53, 124, 67, 82, 155, 81, 74, 220, 234, 27, 73, 35, 243, 83, 107, 115, 167, 37, 255, 69, 183, 146, + 143, 41, 41, 159, 27, 177, 249, 158, 170, 43, 156, 35, 69, 255, 255, 255, 216, 102, 159, 27, 231, 60, 141, 89, 81, + 181, 92, 9, 159, 191, 73, 0, 38, 40, 164, 255, 9, 25, 196, 173, 70, 77, 28, 18, 24, 135, 142, 75, 64, 215, 124, + 178, 99, 86, 0, 226, 22, 112, 238, 27, 124, 1, 134, 231, 108, 175, 147, 27, 255, 216, 102, 159, 27, 69, 39, 161, + 44, 111, 96, 179, 248, 159, 27, 195, 117, 14, 201, 102, 168, 76, 203, 27, 23, 251, 123, 43, 40, 63, 211, 252, 255, + 255, 75, 71, 51, 96, 15, 202, 106, 159, 1, 109, 171, 146, 75, 100, 57, 76, 106, 219, 49, 233, 237, 45, 197, 150, + 72, 18, 134, 143, 207, 67, 72, 7, 227, 255, 255, 66, 14, 75, 191, 72, 55, 252, 69, 173, 108, 63, 223, 141, 27, + 145, 164, 132, 26, 147, 54, 251, 31, 69, 140, 172, 247, 130, 108, 27, 64, 225, 137, 92, 22, 196, 94, 158, 255, 27, + 1, 79, 150, 164, 134, 187, 249, 200, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 525, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8892216808030036466" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1095175203080648749" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "24409c123929cab14db43b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8119299400674135983" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "524070500861019811" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b7b678012ec6361f29fd8669f1b0f32d80b7270382d9f4b24409c123929cab14db43bffff1b70ad8bc97a394faf80ffffd8669f1b0745df58091506a380ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 123, 103, 128, 18, 236, 99, 97, 242, 159, 216, 102, 159, 27, 15, 50, 216, 11, 114, 112, + 56, 45, 159, 75, 36, 64, 156, 18, 57, 41, 202, 177, 77, 180, 59, 255, 255, 27, 112, 173, 139, 201, 122, 57, 79, + 175, 128, 255, 255, 216, 102, 159, 27, 7, 69, 223, 88, 9, 21, 6, 163, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 526, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3123254432350493202" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15302245387161293207" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5322883532892396121" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d259e0e36a9ac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10799902631971789343" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15984030428739532193" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16098027612601440091" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13926308592814721176" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "062b804bf51484ff81" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3768908764031975265" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9326b2bc052303c055b2fd47" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1413311206510654282" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10855331902466597792" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10443775153720184067" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4193221533508710815" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14259126120364251194" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9705531325600074284" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17281506409589196360" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2384502368cff255fc57" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17553056371258103210" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10726919489934651156" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2277322666132721852" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4749815208371364180" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "683808825346018528" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1a80b9cb95" + }, + { + "_tag": "ByteArray", + "bytearray": "c3cc909d50eeb804c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2200587421703206059" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12896921604879244140" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14809268803336047722" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b2b58075bc76a5a121bd45c7f1ad79bd1971b49deae5f0ed3da59471d259e0e36a9ac1b95e0f639337c1a1f1bddd2aefce80df5a11bdf67aed29989d75b1bc1442fe163310898ff9f49062b804bf51484ff811b344dda8d66fb7f614c9326b2bc052303c055b2fd47bf1b139d170de525734a1b96a5e2d9ed7ca3a01b90efbe2b378acd031b3a3150c4a14e319f1bc5e297a88bce183a1b86b0f9518ad18a2c1befd43e84a73346484a2384502368cff255fc571bf398fbc5033f15aa1b94ddac7143c4ef14ffff801b1f9aace629c950bcd8669f1b41eabbc433b921549fd8669f1b097d6080f106cce09f451a80b9cb9549c3cc909d50eeb804c71b1e8a0e99cfcff4ab1bb2fb11de6ae35b6c4102ffff1bcd851783861e8c6affffff", + "cborBytes": [ + 159, 191, 27, 43, 88, 7, 91, 199, 106, 90, 18, 27, 212, 92, 127, 26, 215, 155, 209, 151, 27, 73, 222, 174, 95, 14, + 211, 218, 89, 71, 29, 37, 158, 14, 54, 169, 172, 27, 149, 224, 246, 57, 51, 124, 26, 31, 27, 221, 210, 174, 252, + 232, 13, 245, 161, 27, 223, 103, 174, 210, 153, 137, 215, 91, 27, 193, 68, 47, 225, 99, 49, 8, 152, 255, 159, 73, + 6, 43, 128, 75, 245, 20, 132, 255, 129, 27, 52, 77, 218, 141, 102, 251, 127, 97, 76, 147, 38, 178, 188, 5, 35, 3, + 192, 85, 178, 253, 71, 191, 27, 19, 157, 23, 13, 229, 37, 115, 74, 27, 150, 165, 226, 217, 237, 124, 163, 160, 27, + 144, 239, 190, 43, 55, 138, 205, 3, 27, 58, 49, 80, 196, 161, 78, 49, 159, 27, 197, 226, 151, 168, 139, 206, 24, + 58, 27, 134, 176, 249, 81, 138, 209, 138, 44, 27, 239, 212, 62, 132, 167, 51, 70, 72, 74, 35, 132, 80, 35, 104, + 207, 242, 85, 252, 87, 27, 243, 152, 251, 197, 3, 63, 21, 170, 27, 148, 221, 172, 113, 67, 196, 239, 20, 255, 255, + 128, 27, 31, 154, 172, 230, 41, 201, 80, 188, 216, 102, 159, 27, 65, 234, 187, 196, 51, 185, 33, 84, 159, 216, + 102, 159, 27, 9, 125, 96, 128, 241, 6, 204, 224, 159, 69, 26, 128, 185, 203, 149, 73, 195, 204, 144, 157, 80, 238, + 184, 4, 199, 27, 30, 138, 14, 153, 207, 207, 244, 171, 27, 178, 251, 17, 222, 106, 227, 91, 108, 65, 2, 255, 255, + 27, 205, 133, 23, 131, 134, 30, 140, 106, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 527, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1776ac62c193745a66" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b5250be43b642c1668aaab2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8aeee408a16519" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "177350da5056db4f45c94296" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4084199125677089235" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14856989427397249660" + } + } + ] + } + ] + }, + "cborHex": "9fbf491776ac62c193745a664c4b5250be43b642c1668aaab2478aeee408a165194c177350da5056db4f45c94296ffd8669f1b38adfd773df1a1d39f1bce2ea12b23bf4a7cffffff", + "cborBytes": [ + 159, 191, 73, 23, 118, 172, 98, 193, 147, 116, 90, 102, 76, 75, 82, 80, 190, 67, 182, 66, 193, 102, 138, 170, 178, + 71, 138, 238, 228, 8, 161, 101, 25, 76, 23, 115, 80, 218, 80, 86, 219, 79, 69, 201, 66, 150, 255, 216, 102, 159, + 27, 56, 173, 253, 119, 61, 241, 161, 211, 159, 27, 206, 46, 161, 43, 35, 191, 74, 124, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 528, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "462c00185a0303" + }, + { + "_tag": "ByteArray", + "bytearray": "b021ed755f66" + } + ] + }, + "cborHex": "9f47462c00185a030346b021ed755f66ff", + "cborBytes": [159, 71, 70, 44, 0, 24, 90, 3, 3, 70, 176, 33, 237, 117, 95, 102, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 529, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ceabb9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17431460615386366709" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e5460961082ca380e4db" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "536f26" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0607" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10800063374922595277" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8924781418404529112" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d291c3f7" + } + ] + }, + "cborHex": "9fbf43ceabb91bf1e8fd12e85102f5ff4ae5460961082ca380e4db9f80a0ffd8669f1bfffffffffffffff79f43536f2609bf4206071b95e1886b15f7bbcd41cd0bff1b7bdb316a1e0243d8ffff44d291c3f7ff", + "cborBytes": [ + 159, 191, 67, 206, 171, 185, 27, 241, 232, 253, 18, 232, 81, 2, 245, 255, 74, 229, 70, 9, 97, 8, 44, 163, 128, + 228, 219, 159, 128, 160, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 67, 83, 111, 38, 9, + 191, 66, 6, 7, 27, 149, 225, 136, 107, 21, 247, 187, 205, 65, 205, 11, 255, 27, 123, 219, 49, 106, 30, 2, 67, 216, + 255, 255, 68, 210, 145, 195, 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 530, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e87" + } + } + ] + } + ] + }, + "cborHex": "9fbf0d428e87ffff", + "cborBytes": [159, 191, 13, 66, 142, 135, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 531, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b601ff72023c2002251c44" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15695299473184485461" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c9eb1ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2401586434752386661" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f07ab5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2156658664798605957" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f17e16ae01e19b35384294" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10310093453364034940" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8090697762210513680" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17400237370061154789" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "106754944038448798" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7496439631246211785" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4307304210017740502" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + "cborHex": "9f4bb601ff72023c2002251c44d8669f1bd9d0e7b6ae8970559fbf449c9eb1ff1b2154262364d0166543f07ab51b1dedfda11116d2854bf17e16ae01e19b353842941b8f14cf5ee0d7fd7cffffffd8669f1b7047eebf959b03109f809f1bf17a0fb299f8e9e51b017b450e556dae9e1b6808b42074973ac91b3bc69e5ba1a6e6d6ffffff0aff", + "cborBytes": [ + 159, 75, 182, 1, 255, 114, 2, 60, 32, 2, 37, 28, 68, 216, 102, 159, 27, 217, 208, 231, 182, 174, 137, 112, 85, + 159, 191, 68, 156, 158, 177, 255, 27, 33, 84, 38, 35, 100, 208, 22, 101, 67, 240, 122, 181, 27, 29, 237, 253, 161, + 17, 22, 210, 133, 75, 241, 126, 22, 174, 1, 225, 155, 53, 56, 66, 148, 27, 143, 20, 207, 94, 224, 215, 253, 124, + 255, 255, 255, 216, 102, 159, 27, 112, 71, 238, 191, 149, 155, 3, 16, 159, 128, 159, 27, 241, 122, 15, 178, 153, + 248, 233, 229, 27, 1, 123, 69, 14, 85, 109, 174, 158, 27, 104, 8, 180, 32, 116, 151, 58, 201, 27, 59, 198, 158, + 91, 161, 166, 230, 214, 255, 255, 255, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 532, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a6fe02" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff69f43a6fe02ffffff", + "cborBytes": [159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 67, 166, 254, 2, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 533, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3366775601102883570" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14049762279280392068" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "38a74f4ad627131532" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04f12cae262b5016" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddebc327bbeb12" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37a83751d413" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4cd4ceb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4826842694492886661" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18094252427445845560" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cdf233" + }, + { + "_tag": "ByteArray", + "bytearray": "2d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b2d8ea3f5c8f20f4ee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10994793447302686068" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3150323026670269054" + } + } + ] + } + ] + }, + "cborHex": "9f801b2eb930923e308af21bc2fac85aab30b7849fbf4938a74f4ad6271315324804f12cae262b501647ddebc327bbeb124637a83751d41344f4cd4ceb1b42fc63db5ff01685ffd8669f1bfb1bb2b71e28be389f43cdf233412dffff49b2d8ea3f5c8f20f4ee1b98955a632d44e5741b2bb8321a046a327effff", + "cborBytes": [ + 159, 128, 27, 46, 185, 48, 146, 62, 48, 138, 242, 27, 194, 250, 200, 90, 171, 48, 183, 132, 159, 191, 73, 56, 167, + 79, 74, 214, 39, 19, 21, 50, 72, 4, 241, 44, 174, 38, 43, 80, 22, 71, 221, 235, 195, 39, 187, 235, 18, 70, 55, + 168, 55, 81, 212, 19, 68, 244, 205, 76, 235, 27, 66, 252, 99, 219, 95, 240, 22, 133, 255, 216, 102, 159, 27, 251, + 27, 178, 183, 30, 40, 190, 56, 159, 67, 205, 242, 51, 65, 45, 255, 255, 73, 178, 216, 234, 63, 92, 143, 32, 244, + 238, 27, 152, 149, 90, 99, 45, 68, 229, 116, 27, 43, 184, 50, 26, 4, 106, 50, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 534, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2982370677237957567" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14959138510930181422" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9485585419944845313" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb691d69b26b8a" + } + ] + }, + "cborHex": "9fd8669f1b29638254654f43bf80ffd8669f1bcf99893801dbfd2e80ff1b83a391aec26fe00147cb691d69b26b8aff", + "cborBytes": [ + 159, 216, 102, 159, 27, 41, 99, 130, 84, 101, 79, 67, 191, 128, 255, 216, 102, 159, 27, 207, 153, 137, 56, 1, 219, + 253, 46, 128, 255, 27, 131, 163, 145, 174, 194, 111, 224, 1, 71, 203, 105, 29, 105, 178, 107, 138, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 535, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "34" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5efbbd628dc90083" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c504a0a67afd66501cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4263525146563991224" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51781612ce0b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4715778657801347529" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64d2d552d4fdcb14" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9186263916405987514" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fae3521f9a32d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "248f496167a3f65fa029e265" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12448578191015030199" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14461522480046824688" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3074307717724384183" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16166543088586926748" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3031774786125206733" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da21674fbcb903e1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2079606534364294641" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1148886718748951747" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13513166527209874666" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16850257211337770183" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2517" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7277882995918731729" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10141049547358502306" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8435609562799991833" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf4134485efbbd628dc900834a4c504a0a67afd66501cd1b3b2b15881be456b84651781612ce0b1b4171cfb4399e21c94864d2d552d4fdcb141b7f7c2a5c6e5e18ba47fae3521f9a32d54c248f496167a3f65fa029e265ffd8669f1bacc23be8ca202db79f41ffffff9f9f1bc8b1a6133e845cf01b2aaa2294b5342bb71be05b1948f9452a9c1b2a13071addfa94cd48da21674fbcb903e1ffd8669f1b1cdc3f1ff15d6df180ffd8669f1b0ff1aa62363204c39f418e1bbb88695c550b24ea1be9d823a83fc084c74225171b65003c06609779d1ffffd8669f1b8cbc3ed56ff07da280ffff1b75114e341e94ec1980ff", + "cborBytes": [ + 159, 191, 65, 52, 72, 94, 251, 189, 98, 141, 201, 0, 131, 74, 76, 80, 74, 10, 103, 175, 214, 101, 1, 205, 27, 59, + 43, 21, 136, 27, 228, 86, 184, 70, 81, 120, 22, 18, 206, 11, 27, 65, 113, 207, 180, 57, 158, 33, 201, 72, 100, + 210, 213, 82, 212, 253, 203, 20, 27, 127, 124, 42, 92, 110, 94, 24, 186, 71, 250, 227, 82, 31, 154, 50, 213, 76, + 36, 143, 73, 97, 103, 163, 246, 95, 160, 41, 226, 101, 255, 216, 102, 159, 27, 172, 194, 59, 232, 202, 32, 45, + 183, 159, 65, 255, 255, 255, 159, 159, 27, 200, 177, 166, 19, 62, 132, 92, 240, 27, 42, 170, 34, 148, 181, 52, 43, + 183, 27, 224, 91, 25, 72, 249, 69, 42, 156, 27, 42, 19, 7, 26, 221, 250, 148, 205, 72, 218, 33, 103, 79, 188, 185, + 3, 225, 255, 216, 102, 159, 27, 28, 220, 63, 31, 241, 93, 109, 241, 128, 255, 216, 102, 159, 27, 15, 241, 170, 98, + 54, 50, 4, 195, 159, 65, 142, 27, 187, 136, 105, 92, 85, 11, 36, 234, 27, 233, 216, 35, 168, 63, 192, 132, 199, + 66, 37, 23, 27, 101, 0, 60, 6, 96, 151, 121, 209, 255, 255, 216, 102, 159, 27, 140, 188, 62, 213, 111, 240, 125, + 162, 128, 255, 255, 27, 117, 17, 78, 52, 30, 148, 236, 25, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 536, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ed0e8da8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + }, + "cborHex": "9f44ed0e8da811ff", + "cborBytes": [159, 68, 237, 14, 141, 168, 17, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 537, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c473c1329dcfab2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8608c65" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df061e5de244379710a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffa62723aef891f8bba3" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8f07800fb5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15629002157599734689" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6736576177815008294" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4781818875224476425" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15101739804158119647" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "db05" + }, + { + "_tag": "ByteArray", + "bytearray": "c3e6" + }, + { + "_tag": "ByteArray", + "bytearray": "97d3dffc279ca66a5828" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04b89e6c5037fb092633a297" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2361843861351861574" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4c8fdd2e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd1b8b2a" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4353104202726500738" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "35" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16102981650942179558" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "691c60bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "822059367123" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c045" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12369139647150787821" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13593543127729495292" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf480c473c1329dcfab244f8608c654adf061e5de244379710a94affa62723aef891f8bba3ff9f458f07800fb5d8669f1bd8e55ea8058bbba19f1b5d7d20578105b426ffff1b425c6eee8e034b091bd1942856e538cedf9f42db0542c3e64a97d3dffc279ca66a5828ffff9fbf4c04b89e6c5037fb092633a2971b20c6f47a72d08d4645e4c8fdd2e544cd1b8b2aff1b3c69553569c5e982bf41351bdf79487e890ab8e644691c60bf4682205936712342c0451baba802f97d9f8ced42ef2d1bbca5f773f744dcfcffff80ff", + "cborBytes": [ + 159, 191, 72, 12, 71, 60, 19, 41, 220, 250, 178, 68, 248, 96, 140, 101, 74, 223, 6, 30, 93, 226, 68, 55, 151, 16, + 169, 74, 255, 166, 39, 35, 174, 248, 145, 248, 187, 163, 255, 159, 69, 143, 7, 128, 15, 181, 216, 102, 159, 27, + 216, 229, 94, 168, 5, 139, 187, 161, 159, 27, 93, 125, 32, 87, 129, 5, 180, 38, 255, 255, 27, 66, 92, 110, 238, + 142, 3, 75, 9, 27, 209, 148, 40, 86, 229, 56, 206, 223, 159, 66, 219, 5, 66, 195, 230, 74, 151, 211, 223, 252, 39, + 156, 166, 106, 88, 40, 255, 255, 159, 191, 76, 4, 184, 158, 108, 80, 55, 251, 9, 38, 51, 162, 151, 27, 32, 198, + 244, 122, 114, 208, 141, 70, 69, 228, 200, 253, 210, 229, 68, 205, 27, 139, 42, 255, 27, 60, 105, 85, 53, 105, + 197, 233, 130, 191, 65, 53, 27, 223, 121, 72, 126, 137, 10, 184, 230, 68, 105, 28, 96, 191, 70, 130, 32, 89, 54, + 113, 35, 66, 192, 69, 27, 171, 168, 2, 249, 125, 159, 140, 237, 66, 239, 45, 27, 188, 165, 247, 115, 247, 68, 220, + 252, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 538, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15129428694976852271" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13735409090314652883" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "57d6d56abfa668bc1292" + }, + { + "_tag": "ByteArray", + "bytearray": "6222823ac77ac82a23ed37" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4622879875028731112" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0db464e8a1c5d4e595f2" + }, + { + "_tag": "ByteArray", + "bytearray": "b40816" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "99507863652266930" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f92ccb5687cf083868d919" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11829346884022616893" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4a4c75c61d0f15bdaa0d3d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9716006204321730790" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4572865427044072208" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fdbe9792c9f80f" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16637551434067260472" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f2ee41" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3782264985157768106" + } + } + ] + }, + "cborHex": "9fd8669f1bd1f6873d2ab2712f9fd8669f1bbe9df9cb58e04cd39f4a57d6d56abfa668bc12924b6222823ac77ac82a23ed371b4027c4c0d663c4e84a0db464e8a1c5d4e595f243b40816ffff1b016185dff159f3b24bf92ccb5687cf083868d919ffff9fd8669f1ba42a4851030ac33d9f4b4a4c75c61d0f15bdaa0d3d1b86d6302a4c1690e61b3f7614e0b8a07b1047fdbe9792c9f80fffffff1be6e474e137deb43843f2ee411b347d4df6f6ba13aaff", + "cborBytes": [ + 159, 216, 102, 159, 27, 209, 246, 135, 61, 42, 178, 113, 47, 159, 216, 102, 159, 27, 190, 157, 249, 203, 88, 224, + 76, 211, 159, 74, 87, 214, 213, 106, 191, 166, 104, 188, 18, 146, 75, 98, 34, 130, 58, 199, 122, 200, 42, 35, 237, + 55, 27, 64, 39, 196, 192, 214, 99, 196, 232, 74, 13, 180, 100, 232, 161, 197, 212, 229, 149, 242, 67, 180, 8, 22, + 255, 255, 27, 1, 97, 133, 223, 241, 89, 243, 178, 75, 249, 44, 203, 86, 135, 207, 8, 56, 104, 217, 25, 255, 255, + 159, 216, 102, 159, 27, 164, 42, 72, 81, 3, 10, 195, 61, 159, 75, 74, 76, 117, 198, 29, 15, 21, 189, 170, 13, 61, + 27, 134, 214, 48, 42, 76, 22, 144, 230, 27, 63, 118, 20, 224, 184, 160, 123, 16, 71, 253, 190, 151, 146, 201, 248, + 15, 255, 255, 255, 27, 230, 228, 116, 225, 55, 222, 180, 56, 67, 242, 238, 65, 27, 52, 125, 77, 246, 246, 186, 19, + 170, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 539, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9518111181405076292" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2756545746323170888" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7816540040354849303" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13959002432533938564" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8358300224018271973" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10570431275367391173" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12520583467546487307" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f08698ca6cabb9c4f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13154537220418563722" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "caeb85c4f5605e920fff" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b84171fb0bc52bb449f1b264137c060b4e648bf1b6c79edc0bdf7e2171bc1b856c121ffc1841b73fea5c502ad4ee51b92b1b73d8af3dfc51badc20c53abbcaa0b490f08698ca6cabb9c4f1bb68e4de7ffb3ee8a4acaeb85c4f5605e920fffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 132, 23, 31, 176, 188, 82, 187, 68, 159, 27, 38, 65, 55, 192, 96, 180, 230, 72, 191, 27, + 108, 121, 237, 192, 189, 247, 226, 23, 27, 193, 184, 86, 193, 33, 255, 193, 132, 27, 115, 254, 165, 197, 2, 173, + 78, 229, 27, 146, 177, 183, 61, 138, 243, 223, 197, 27, 173, 194, 12, 83, 171, 188, 170, 11, 73, 15, 8, 105, 140, + 166, 202, 187, 156, 79, 27, 182, 142, 77, 231, 255, 179, 238, 138, 74, 202, 235, 133, 196, 245, 96, 94, 146, 15, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 540, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "56fe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17774807547319494556" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0fb207e1fc070d06b9" + }, + { + "_tag": "ByteArray", + "bytearray": "29" + } + ] + } + ] + }, + "cborHex": "9f4256fe1bf6accd4a10e9279c9f490fb207e1fc070d06b94129ffff", + "cborBytes": [ + 159, 66, 86, 254, 27, 246, 172, 205, 74, 16, 233, 39, 156, 159, 73, 15, 178, 7, 225, 252, 7, 13, 6, 185, 65, 41, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 541, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "861696112524924602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4402719396245141558" + } + }, + { + "_tag": "ByteArray", + "bytearray": "015f5255ca62fd988684a835" + }, + { + "_tag": "ByteArray", + "bytearray": "b6" + }, + { + "_tag": "ByteArray", + "bytearray": "a75deffe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15607847806479775065" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b0bf55c0c836216ba9f1b3d1999f6dae9f8364c015f5255ca62fd988684a83541b644a75deffe1bd89a36e2d5963559ffffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 11, 245, 92, 12, 131, 98, 22, 186, 159, 27, 61, 25, 153, 246, 218, 233, 248, 54, 76, + 1, 95, 82, 85, 202, 98, 253, 152, 134, 132, 168, 53, 65, 182, 68, 167, 93, 239, 254, 27, 216, 154, 54, 226, 213, + 150, 53, 89, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 542, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4648452640890272455" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + ] + }, + "cborHex": "9f1b40829f0c5f7dbac71bfffffffffffffff3ff", + "cborBytes": [159, 27, 64, 130, 159, 12, 95, 125, 186, 199, 27, 255, 255, 255, 255, 255, 255, 255, 243, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 543, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "448654085619133414" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11009212751533116000" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "693103165636880186" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17530444098066228203" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "797692085291416037" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9216e3feb92dbb1802b26f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5004819364926898426" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17977171065788396146" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10232029772320252495" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28b388" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "997394c228d49ea3b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10912267623401797520" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17927804643887814459" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "577694577117486046" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d09a1a6c96b0646a666eab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12949465323629734386" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb4b224fa2da" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bc20d0ac71839a4f72" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6510107285924755601" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "56" + }, + { + "_tag": "ByteArray", + "bytearray": "0e6500" + }, + { + "_tag": "ByteArray", + "bytearray": "32b3d5f683eb103305c5a039" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "98cc2e0d8c43daed8d" + } + ] + }, + "cborHex": "9f9fa0ffd8669f1bffffffffffffffee9fbf1b0639f083885b2be61b98c894ab0fd50a601b099e65a82c7c273a1bf348a606e414a3eb1b0b11f8b9a7ef79e54cf9216e3feb92dbb1802b26f21b4574b0b21b76c0fa1bf97bbdd652bf72721b8dff78ddc65ea24f4328b388ffffffd8669f1bffffffffffffffec9fbf49997394c228d49ea3b01b977029967adc3790ff1bf8cc5b568988173bbf1b0804622839c1dbde4bd09a1a6c96b0646a666eab1bb3b5be1a463069f246eb4b224fa2daff49bc20d0ac71839a4f72d8669f1b5a588c15a33a38919f4156430e65004c32b3d5f683eb103305c5a039ffffffff4998cc2e0d8c43daed8dff", + "cborBytes": [ + 159, 159, 160, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 191, 27, 6, 57, 240, 131, 136, + 91, 43, 230, 27, 152, 200, 148, 171, 15, 213, 10, 96, 27, 9, 158, 101, 168, 44, 124, 39, 58, 27, 243, 72, 166, 6, + 228, 20, 163, 235, 27, 11, 17, 248, 185, 167, 239, 121, 229, 76, 249, 33, 110, 63, 235, 146, 219, 177, 128, 43, + 38, 242, 27, 69, 116, 176, 178, 27, 118, 192, 250, 27, 249, 123, 189, 214, 82, 191, 114, 114, 27, 141, 255, 120, + 221, 198, 94, 162, 79, 67, 40, 179, 136, 255, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, + 159, 191, 73, 153, 115, 148, 194, 40, 212, 158, 163, 176, 27, 151, 112, 41, 150, 122, 220, 55, 144, 255, 27, 248, + 204, 91, 86, 137, 136, 23, 59, 191, 27, 8, 4, 98, 40, 57, 193, 219, 222, 75, 208, 154, 26, 108, 150, 176, 100, + 106, 102, 110, 171, 27, 179, 181, 190, 26, 70, 48, 105, 242, 70, 235, 75, 34, 79, 162, 218, 255, 73, 188, 32, 208, + 172, 113, 131, 154, 79, 114, 216, 102, 159, 27, 90, 88, 140, 21, 163, 58, 56, 145, 159, 65, 86, 67, 14, 101, 0, + 76, 50, 179, 213, 246, 131, 235, 16, 51, 5, 197, 160, 57, 255, 255, 255, 255, 73, 152, 204, 46, 13, 140, 67, 218, + 237, 141, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 544, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "486699615547" + } + ] + }, + "cborHex": "9f46486699615547ff", + "cborBytes": [159, 70, 72, 102, 153, 97, 85, 71, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 545, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14885645878127385531" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e0550e3be048f48d2e6c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6864168666823160292" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5349004435125894241" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4865739073651656119" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1951983887966919172" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d18a37dd9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15216850164842280608" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5142525926338963397" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2fdf97cf8d5ec5b2" + } + ] + } + ] + } + ] + }, + "cborHex": "9fa0a09f1bce94700f020a5bbbbf4b1e0550e3be048f48d2e6c81b5f426d08d85c71e4ff1b4a3b7b3189aafc61a0ffd8669f1b438693e85ebec5b79f9f1b1b16d701098dda04450d18a37dd91bd32d1c9a43c4b6a01b475dec156faba7c5482fdf97cf8d5ec5b2ffffffff", + "cborBytes": [ + 159, 160, 160, 159, 27, 206, 148, 112, 15, 2, 10, 91, 187, 191, 75, 30, 5, 80, 227, 190, 4, 143, 72, 210, 230, + 200, 27, 95, 66, 109, 8, 216, 92, 113, 228, 255, 27, 74, 59, 123, 49, 137, 170, 252, 97, 160, 255, 216, 102, 159, + 27, 67, 134, 147, 232, 94, 190, 197, 183, 159, 159, 27, 27, 22, 215, 1, 9, 141, 218, 4, 69, 13, 24, 163, 125, 217, + 27, 211, 45, 28, 154, 67, 196, 182, 160, 27, 71, 93, 236, 21, 111, 171, 167, 197, 72, 47, 223, 151, 207, 141, 94, + 197, 178, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 546, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3275573600147303641" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "132773698725843177" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3603463342408361244" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8068623748061774128" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6335116339468430461" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11541018314318853472" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13670294453931874848" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "443c5bec" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15247474008581733623" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "758790667001949872" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17430134493088790449" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12332c97d1f6f4a0b93b28" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "81b54b5a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cd6a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15745645228141563334" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5252857361492322371" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "49b6f88d75e6a6c981846abc" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5761211201001140216" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1379969757423878655" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b2d752cd5a86d6cd91b01d7b4f9bc1190e91b320212d16564651c1b6ff9828ca980c1301b57eadabef0c9ec7d1ba029ef028b40b5601bbdb6a460a59a1a2044443c5bec1bd399e8d38383fcf71b0a87c41765886eb01bf1e446f8ffd737b14b12332c97d1f6f4a0b93b28ffff4481b54b5a9f42cd6aff1bda83c4e936b3cdc6d8669f1b48e5e5f07f8ba8439f9f4c49b6f88d75e6a6c981846abcff1b4ff3ef1027acaff81b1326a32ed80841ff80ffffff", + "cborBytes": [ + 159, 159, 191, 27, 45, 117, 44, 213, 168, 109, 108, 217, 27, 1, 215, 180, 249, 188, 17, 144, 233, 27, 50, 2, 18, + 209, 101, 100, 101, 28, 27, 111, 249, 130, 140, 169, 128, 193, 48, 27, 87, 234, 218, 190, 240, 201, 236, 125, 27, + 160, 41, 239, 2, 139, 64, 181, 96, 27, 189, 182, 164, 96, 165, 154, 26, 32, 68, 68, 60, 91, 236, 27, 211, 153, + 232, 211, 131, 131, 252, 247, 27, 10, 135, 196, 23, 101, 136, 110, 176, 27, 241, 228, 70, 248, 255, 215, 55, 177, + 75, 18, 51, 44, 151, 209, 246, 244, 160, 185, 59, 40, 255, 255, 68, 129, 181, 75, 90, 159, 66, 205, 106, 255, 27, + 218, 131, 196, 233, 54, 179, 205, 198, 216, 102, 159, 27, 72, 229, 229, 240, 127, 139, 168, 67, 159, 159, 76, 73, + 182, 248, 141, 117, 230, 166, 201, 129, 132, 106, 188, 255, 27, 79, 243, 239, 16, 39, 172, 175, 248, 27, 19, 38, + 163, 46, 216, 8, 65, 255, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 547, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "66cf" + }, + { + "_tag": "ByteArray", + "bytearray": "b67f111a8a2d3f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1871746214908751559" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3655803915342048537" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2091875838760822798" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5460504670273681478" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2735963349938192860" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7736293472365582751" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9591876997907208040" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4401353357040146020" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12677813737223655341" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9435510689220418687" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c7562fc8b54631" + }, + { + "_tag": "ByteArray", + "bytearray": "b539962a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6942367050813737226" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16797291006280628067" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dfdac112571e1728e0405b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7779232151805176884" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5993945009464935818" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "9f4266cf47b67f111a8a2d3f9fbf1b19f9c743f9516ec71b32bc064aae71ed191b1d07d5fdfb8fa80e1b4bc79c110e0638461b25f8182bc78dc1dc1b6b5cd5ecaa86199f1b851d314f457fd7681b3d14bf8f1159d664ffbf131baff0a46c8fc88fadffffd8669f1bffffffffffffffed9fd8669f1b82f1aafaf9625c7f9f47c7562fc8b5463144b539962affff1b60583e0cec21090a1be91bf72ca23877639f4bdfdac112571e1728e0405b1b6bf5626d09a52c34ff1b532ec53a9462058affff0eff", + "cborBytes": [ + 159, 66, 102, 207, 71, 182, 127, 17, 26, 138, 45, 63, 159, 191, 27, 25, 249, 199, 67, 249, 81, 110, 199, 27, 50, + 188, 6, 74, 174, 113, 237, 25, 27, 29, 7, 213, 253, 251, 143, 168, 14, 27, 75, 199, 156, 17, 14, 6, 56, 70, 27, + 37, 248, 24, 43, 199, 141, 193, 220, 27, 107, 92, 213, 236, 170, 134, 25, 159, 27, 133, 29, 49, 79, 69, 127, 215, + 104, 27, 61, 20, 191, 143, 17, 89, 214, 100, 255, 191, 19, 27, 175, 240, 164, 108, 143, 200, 143, 173, 255, 255, + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 216, 102, 159, 27, 130, 241, 170, 250, 249, 98, + 92, 127, 159, 71, 199, 86, 47, 200, 181, 70, 49, 68, 181, 57, 150, 42, 255, 255, 27, 96, 88, 62, 12, 236, 33, 9, + 10, 27, 233, 27, 247, 44, 162, 56, 119, 99, 159, 75, 223, 218, 193, 18, 87, 30, 23, 40, 224, 64, 91, 27, 107, 245, + 98, 109, 9, 165, 44, 52, 255, 27, 83, 46, 197, 58, 148, 98, 5, 138, 255, 255, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 548, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9218242417641251467" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17030249827875588449" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f812827c6cf428883c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5591397326908858212" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "faac60" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13336703469597139477" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "796311865640206364" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17113569729965371666" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7fedc6a374f1e28b9f1bec5799fd02ae896149f812827c6cf428883cbf1b4d98a23e8c789f6443faac60ff1bb9157d250c0ea2151b0b0d116c39e9c01cffff9f1bed7f9cff7176b112ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 127, 237, 198, 163, 116, 241, 226, 139, 159, 27, 236, 87, 153, 253, 2, 174, 137, 97, 73, + 248, 18, 130, 124, 108, 244, 40, 136, 60, 191, 27, 77, 152, 162, 62, 140, 120, 159, 100, 67, 250, 172, 96, 255, + 27, 185, 21, 125, 37, 12, 14, 162, 21, 27, 11, 13, 17, 108, 57, 233, 192, 28, 255, 255, 159, 27, 237, 127, 156, + 255, 113, 118, 177, 18, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 549, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8691278411166366035" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3957705938143205597" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8961629518244170907" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18066059220079507949" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b789d9faaa597b9539f1b36ec9894f87ad8dd1b7c5e1a90eb994c9b1bfab78924800279edffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 120, 157, 159, 170, 165, 151, 185, 83, 159, 27, 54, 236, 152, 148, 248, 122, 216, 221, 27, + 124, 94, 26, 144, 235, 153, 76, 155, 27, 250, 183, 137, 36, 128, 2, 121, 237, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 550, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14425982457547053531" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "137e9b8d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1192589915586736504" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2241774123889062357" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4175ddd7b649eb6552" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1088570642223492279" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2082379209670675087" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6736070162727637644" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5223130097099961265" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f9fd8669f1bc833629cee1bd9db9f44137e9b8d1b108cee35a942b1781b1f1c61b03111f1d5494175ddd7b649eb65521b0f1b613b4aa66cb7ffff1b1ce618dbb8144a8f1b5d7b541faf7d128cff1b487c4926654b73b1a0ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 200, 51, 98, 156, 238, 27, 217, 219, 159, 68, 19, 126, 155, 141, 27, 16, 140, 238, + 53, 169, 66, 177, 120, 27, 31, 28, 97, 176, 49, 17, 241, 213, 73, 65, 117, 221, 215, 182, 73, 235, 101, 82, 27, + 15, 27, 97, 59, 74, 166, 108, 183, 255, 255, 27, 28, 230, 24, 219, 184, 20, 74, 143, 27, 93, 123, 84, 31, 175, + 125, 18, 140, 255, 27, 72, 124, 73, 38, 101, 75, 115, 177, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 551, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2171751840632442942" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6379323189000187397" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3fa1be493faaab69f7cb2fe2" + }, + { + "_tag": "ByteArray", + "bytearray": "a034f82e93dd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17202606391220048645" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16223067093490579771" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7558849671812766912" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f1b1e239ccae932903ed8669f1b5887e8a42bc4ae059f9f4c3fa1be493faaab69f7cb2fe246a034f82e93dd1beebbef5e97891305ffd8669f1be123e9916ad5b93b9f1b68e66dba5efa5cc0ffffa0ffffa0ff", + "cborBytes": [ + 159, 27, 30, 35, 156, 202, 233, 50, 144, 62, 216, 102, 159, 27, 88, 135, 232, 164, 43, 196, 174, 5, 159, 159, 76, + 63, 161, 190, 73, 63, 170, 171, 105, 247, 203, 47, 226, 70, 160, 52, 248, 46, 147, 221, 27, 238, 187, 239, 94, + 151, 137, 19, 5, 255, 216, 102, 159, 27, 225, 35, 233, 145, 106, 213, 185, 59, 159, 27, 104, 230, 109, 186, 94, + 250, 92, 192, 255, 255, 160, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 552, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5aed736cdb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11658232693465584314" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c185ec3ec35a759" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11913339326984142533" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12061868864584401692" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ed99cc0cece45e00dd99b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14791659937622016314" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16249907672868201681" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1672053674463096846" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8faa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3744080125285434352" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e3434" + }, + { + "_tag": "ByteArray", + "bytearray": "134b266501a84f686d" + }, + { + "_tag": "ByteArray", + "bytearray": "7bef91c609a7c4" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "999cd9265e46672fb1d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d71d72d4ddf0844559a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5f767f43ce29687cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4710249480268172554" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8ba6737" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf455aed736cdb1ba1ca5cdde2dc92ba485c185ec3ec35a7591ba554aeff9194bec5ff801ba7645dd368e5c31cbf4b9ed99cc0cece45e00dd99b1bcd468857fc56413affd8669f1be18344eeca3424d19fd8669f1b173453f53fc2700e9f428faa1b33f5a509763d03f0438e343449134b266501a84f686d477bef91c609a7c4ffffbf4a999cd9265e46672fb1d14a7d71d72d4ddf0844559a49d5f767f43ce29687cf1b415e2af242da4d0a44d8ba67374161ffffffff", + "cborBytes": [ + 159, 191, 69, 90, 237, 115, 108, 219, 27, 161, 202, 92, 221, 226, 220, 146, 186, 72, 92, 24, 94, 195, 236, 53, + 167, 89, 27, 165, 84, 174, 255, 145, 148, 190, 197, 255, 128, 27, 167, 100, 93, 211, 104, 229, 195, 28, 191, 75, + 158, 217, 156, 192, 206, 206, 69, 224, 13, 217, 155, 27, 205, 70, 136, 87, 252, 86, 65, 58, 255, 216, 102, 159, + 27, 225, 131, 68, 238, 202, 52, 36, 209, 159, 216, 102, 159, 27, 23, 52, 83, 245, 63, 194, 112, 14, 159, 66, 143, + 170, 27, 51, 245, 165, 9, 118, 61, 3, 240, 67, 142, 52, 52, 73, 19, 75, 38, 101, 1, 168, 79, 104, 109, 71, 123, + 239, 145, 198, 9, 167, 196, 255, 255, 191, 74, 153, 156, 217, 38, 94, 70, 103, 47, 177, 209, 74, 125, 113, 215, + 45, 77, 223, 8, 68, 85, 154, 73, 213, 247, 103, 244, 60, 226, 150, 135, 207, 27, 65, 94, 42, 242, 66, 218, 77, 10, + 68, 216, 186, 103, 55, 65, 97, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 553, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be5af757815de5c161f7e719" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13897078018649584105" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5023" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13707499774120492887" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3267792851853091681" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df6b0994490e1c" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c53d8392d065bd314f" + } + ] + } + ] + }, + "cborHex": "9f4cbe5af757815de5c161f7e7199fd8669f1bc0dc56d3fd7f71e99f4250231bbe3ad26b4b32ff571b2d5988490643a36147df6b0994490e1cffffa049c53d8392d065bd314fffff", + "cborBytes": [ + 159, 76, 190, 90, 247, 87, 129, 93, 229, 193, 97, 247, 231, 25, 159, 216, 102, 159, 27, 192, 220, 86, 211, 253, + 127, 113, 233, 159, 66, 80, 35, 27, 190, 58, 210, 107, 75, 50, 255, 87, 27, 45, 89, 136, 73, 6, 67, 163, 97, 71, + 223, 107, 9, 148, 73, 14, 28, 255, 255, 160, 73, 197, 61, 131, 146, 208, 101, 189, 49, 79, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 554, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10592004514815581884" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4321491330688146760" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6473855453705010089" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f1b92fe5bfcc4ea9ebcd8669f1bfffffffffffffff89fa01b3bf905781198dd48d8669f1b59d7c13c354ffba980ffffffff", + "cborBytes": [ + 159, 27, 146, 254, 91, 252, 196, 234, 158, 188, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, + 160, 27, 59, 249, 5, 120, 17, 152, 221, 72, 216, 102, 159, 27, 89, 215, 193, 60, 53, 79, 251, 169, 128, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 555, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7185462658446116158" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c202f5becfaa450f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16447150429743192886" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4683666355137880672" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5222cf52a13660" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13426773902798377125" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f8aed72a372cf60a0b6e" + }, + { + "_tag": "ByteArray", + "bytearray": "bce525255d630a" + } + ] + }, + "cborHex": "9fbf1b63b7e437b783c53e495c202f5becfaa450f81be440042cd4419b361b40ffb9bc20712260475222cf52a13660419e419f1bba557bb9fbc850a5ff4af8aed72a372cf60a0b6e47bce525255d630aff", + "cborBytes": [ + 159, 191, 27, 99, 183, 228, 55, 183, 131, 197, 62, 73, 92, 32, 47, 91, 236, 250, 164, 80, 248, 27, 228, 64, 4, 44, + 212, 65, 155, 54, 27, 64, 255, 185, 188, 32, 113, 34, 96, 71, 82, 34, 207, 82, 161, 54, 96, 65, 158, 65, 159, 27, + 186, 85, 123, 185, 251, 200, 80, 165, 255, 74, 248, 174, 215, 42, 55, 44, 246, 10, 11, 110, 71, 188, 229, 37, 37, + 93, 99, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 556, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ff80ee4bcd4b6f9a8f4ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9127231252115259779" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f79935b7e006f4a7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3948466f92a8b4da74" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15932789588709601516" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15489685714735565717" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8230554331953321652" + } + }, + { + "_tag": "ByteArray", + "bytearray": "953ec87b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "86" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7377633778863533590" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8c05d790" + }, + { + "_tag": "ByteArray", + "bytearray": "618375e4438b19bfafb1fcc3" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5871794315248745871" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5da4579d2479" + }, + { + "_tag": "ByteArray", + "bytearray": "acad0da426" + }, + { + "_tag": "ByteArray", + "bytearray": "87b2b2aecfa190604c09fd" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "411869262e1a" + } + ] + } + ] + }, + "cborHex": "9fbf4b8ff80ee4bcd4b6f9a8f4ba1b7eaa7077352c818348f79935b7e006f4a7493948466f92a8b4da74ffd8669f1bdd1ca3b72413f0ec9f9f1bd6f66b16f5418b95ff9f1b7238cd8ebca156b444953ec87bff4186ffff9fd8669f1b66629ed560156e169f448c05d7904c618375e4438b19bfafb1fcc3ffffd8669f1b517ccdd1d28f3d8f9f465da4579d247945acad0da4264b87b2b2aecfa190604c09fdffff46411869262e1affff", + "cborBytes": [ + 159, 191, 75, 143, 248, 14, 228, 188, 212, 182, 249, 168, 244, 186, 27, 126, 170, 112, 119, 53, 44, 129, 131, 72, + 247, 153, 53, 183, 224, 6, 244, 167, 73, 57, 72, 70, 111, 146, 168, 180, 218, 116, 255, 216, 102, 159, 27, 221, + 28, 163, 183, 36, 19, 240, 236, 159, 159, 27, 214, 246, 107, 22, 245, 65, 139, 149, 255, 159, 27, 114, 56, 205, + 142, 188, 161, 86, 180, 68, 149, 62, 200, 123, 255, 65, 134, 255, 255, 159, 216, 102, 159, 27, 102, 98, 158, 213, + 96, 21, 110, 22, 159, 68, 140, 5, 215, 144, 76, 97, 131, 117, 228, 67, 139, 25, 191, 175, 177, 252, 195, 255, 255, + 216, 102, 159, 27, 81, 124, 205, 209, 210, 143, 61, 143, 159, 70, 93, 164, 87, 157, 36, 121, 69, 172, 173, 13, + 164, 38, 75, 135, 178, 178, 174, 207, 161, 144, 96, 76, 9, 253, 255, 255, 70, 65, 24, 105, 38, 46, 26, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 557, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "483d2b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c91f780541ac623c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f4d54b8ac7766ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d0706ff050689fcfdff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d706064f030101bb6a7a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8103196459792735845" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf43483d2b48c91f780541ac623c487f4d54b8ac7766ff4a5d0706ff050689fcfdff4ad706064f030101bb6a7a1b7074563f63261e65ffff", + "cborBytes": [ + 159, 191, 67, 72, 61, 43, 72, 201, 31, 120, 5, 65, 172, 98, 60, 72, 127, 77, 84, 184, 172, 119, 102, 255, 74, 93, + 7, 6, 255, 5, 6, 137, 252, 253, 255, 74, 215, 6, 6, 79, 3, 1, 1, 187, 106, 122, 27, 112, 116, 86, 63, 99, 38, 30, + 101, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 558, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffff6ff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 559, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7eefe0" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1965621933347533167" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11516341488100491965" + } + } + ] + }, + "cborHex": "9f437eefe080d8669f1b1b474abbebe5716f80ff1b9fd243913652c2bdff", + "cborBytes": [ + 159, 67, 126, 239, 224, 128, 216, 102, 159, 27, 27, 71, 74, 187, 235, 229, 113, 111, 128, 255, 27, 159, 210, 67, + 145, 54, 82, 194, 189, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 560, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4024927513813235062" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53e7f8f968" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7308050795076616112" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84c34de083c00f939dcd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18024271602941077401" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5675518199652734140" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9646135359442569395" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6821745427292332748" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4302776410854299561" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10068206594530624349" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95103d01e1f3ac276d653c" + }, + { + "_tag": "ByteArray", + "bytearray": "276882a57ee8d19d81d7" + }, + { + "_tag": "ByteArray", + "bytearray": "4d41d9f2" + }, + { + "_tag": "ByteArray", + "bytearray": "8cc1bf27324a2f92" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0fd5" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11027773510150412364" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5726563433768900793" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "486320619444871236" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3927915912574082145" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "87f93c5e58" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b418f92a5e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "092de1253bd007a7fb746e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebd99f3256" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4626245229191772463" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4343317608877381182" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a372ab8c35" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15688026971956021060" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b37db6a3fb388b5764553e7f8f9681b656b697a790d7fb04a84c34de083c00f939dcd1bfa231386b476a7991b4ec37dbb7e90d4bcffd8669f1b85ddf50082e8c8b39f1b5eabb552ade7a2ccd8669f1b3bb688593ce697a99f1b8bb9748dd83e435d4b95103d01e1f3ac276d653c4a276882a57ee8d19d81d7444d41d9f2488cc1bf27324a2f92ffff420fd5ffffd8669f1b990a85946ffa584c9fd8669f1b4f78d71a358958b99f1b06bfc206d8f5a0441b3682c2b624951c61ffffbf4587f93c5e5845b418f92a5e41e04b092de1253bd007a7fb746e45ebd99f32561b4033b98669d2392fff9f1b3c46905a77d5d63e45a372ab8c35ff1bd9b711698a2f8744ffffff", + "cborBytes": [ + 159, 191, 27, 55, 219, 106, 63, 179, 136, 181, 118, 69, 83, 231, 248, 249, 104, 27, 101, 107, 105, 122, 121, 13, + 127, 176, 74, 132, 195, 77, 224, 131, 192, 15, 147, 157, 205, 27, 250, 35, 19, 134, 180, 118, 167, 153, 27, 78, + 195, 125, 187, 126, 144, 212, 188, 255, 216, 102, 159, 27, 133, 221, 245, 0, 130, 232, 200, 179, 159, 27, 94, 171, + 181, 82, 173, 231, 162, 204, 216, 102, 159, 27, 59, 182, 136, 89, 60, 230, 151, 169, 159, 27, 139, 185, 116, 141, + 216, 62, 67, 93, 75, 149, 16, 61, 1, 225, 243, 172, 39, 109, 101, 60, 74, 39, 104, 130, 165, 126, 232, 209, 157, + 129, 215, 68, 77, 65, 217, 242, 72, 140, 193, 191, 39, 50, 74, 47, 146, 255, 255, 66, 15, 213, 255, 255, 216, 102, + 159, 27, 153, 10, 133, 148, 111, 250, 88, 76, 159, 216, 102, 159, 27, 79, 120, 215, 26, 53, 137, 88, 185, 159, 27, + 6, 191, 194, 6, 216, 245, 160, 68, 27, 54, 130, 194, 182, 36, 149, 28, 97, 255, 255, 191, 69, 135, 249, 60, 94, + 88, 69, 180, 24, 249, 42, 94, 65, 224, 75, 9, 45, 225, 37, 59, 208, 7, 167, 251, 116, 110, 69, 235, 217, 159, 50, + 86, 27, 64, 51, 185, 134, 105, 210, 57, 47, 255, 159, 27, 60, 70, 144, 90, 119, 213, 214, 62, 69, 163, 114, 171, + 140, 53, 255, 27, 217, 183, 17, 105, 138, 47, 135, 68, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 561, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "bf63bf0c7ba502cc4fdee62f" + } + ] + }, + "cborHex": "9f04804cbf63bf0c7ba502cc4fdee62fff", + "cborBytes": [159, 4, 128, 76, 191, 99, 191, 12, 123, 165, 2, 204, 79, 222, 230, 47, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 562, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1505fb" + } + ] + }, + "cborHex": "9f431505fbff", + "cborBytes": [159, 67, 21, 5, 251, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 563, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "57feae28fd" + } + ] + }, + "cborHex": "9f4557feae28fdff", + "cborBytes": [159, 69, 87, 254, 174, 40, 253, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 564, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6334516447091651126" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6398b3663b4b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13835202549604030338" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14702504602106596835" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17234391455480079956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1832896117656626120" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7309780963940134641" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6587436868100049862" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8187064055827145454" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "928746528004741618" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f8a4224ebb829fa3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7d" + }, + { + "_tag": "ByteArray", + "bytearray": "54e00a157c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14470653484114593846" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7638179840659866063" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "50233960d99b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8636581130565131825" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8386575147275876744" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16064131089269265688" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9371474567749358083" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12039717842865478706" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11888306890213989335" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2e" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13174164833733169609" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a480" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3989869625811565282" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0294f6" + }, + { + "_tag": "ByteArray", + "bytearray": "f7492f2f7a7b76d5cf936c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7110368843521461838" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3010589398610549834" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a7c9239aff278048" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb5848aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1086721981282853927" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "04e90404fe290604" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf1b57e8b9259cc47236466398b3663b4b1bc000836ab4ba17821bcc09ca09d51c0de31bef2cdbb78feae6541b196fc14ed31da3c8ffd9050d9fbf1b65718f0ecd906ef11b5b6b46ee076a4bc61b719e4b61c0f222ee1b0ce3920be81999f2ff48f8a4224ebb829fa39f417d4554e00a157c1bc8d216accc6b4836ffd8669f1b6a004418a514c1cf9f4650233960d99b1b77db4cc7992d1e311b746319a9977f7988ffffd8669f1bdeef421d413415189f1b820e2a77984ed2031ba715ab96c3eddc321ba4fbc02134089bd7412effffffd8669f1bb6d4091dd71bd1c99fbf42a48041e3ffd8669f1b375edd49129e7ae29f430294f64bf7492f2f7a7b76d5cf936c1b62ad1aca741a0e4e1b29c7c31b74bd1c4affff48a7c9239aff278048bf44cb5848aa1b0f14cfe25ff92427ffffff4804e90404fe29060480ff", + "cborBytes": [ + 159, 191, 27, 87, 232, 185, 37, 156, 196, 114, 54, 70, 99, 152, 179, 102, 59, 75, 27, 192, 0, 131, 106, 180, 186, + 23, 130, 27, 204, 9, 202, 9, 213, 28, 13, 227, 27, 239, 44, 219, 183, 143, 234, 230, 84, 27, 25, 111, 193, 78, + 211, 29, 163, 200, 255, 217, 5, 13, 159, 191, 27, 101, 113, 143, 14, 205, 144, 110, 241, 27, 91, 107, 70, 238, 7, + 106, 75, 198, 27, 113, 158, 75, 97, 192, 242, 34, 238, 27, 12, 227, 146, 11, 232, 25, 153, 242, 255, 72, 248, 164, + 34, 78, 187, 130, 159, 163, 159, 65, 125, 69, 84, 224, 10, 21, 124, 27, 200, 210, 22, 172, 204, 107, 72, 54, 255, + 216, 102, 159, 27, 106, 0, 68, 24, 165, 20, 193, 207, 159, 70, 80, 35, 57, 96, 217, 155, 27, 119, 219, 76, 199, + 153, 45, 30, 49, 27, 116, 99, 25, 169, 151, 127, 121, 136, 255, 255, 216, 102, 159, 27, 222, 239, 66, 29, 65, 52, + 21, 24, 159, 27, 130, 14, 42, 119, 152, 78, 210, 3, 27, 167, 21, 171, 150, 195, 237, 220, 50, 27, 164, 251, 192, + 33, 52, 8, 155, 215, 65, 46, 255, 255, 255, 216, 102, 159, 27, 182, 212, 9, 29, 215, 27, 209, 201, 159, 191, 66, + 164, 128, 65, 227, 255, 216, 102, 159, 27, 55, 94, 221, 73, 18, 158, 122, 226, 159, 67, 2, 148, 246, 75, 247, 73, + 47, 47, 122, 123, 118, 213, 207, 147, 108, 27, 98, 173, 26, 202, 116, 26, 14, 78, 27, 41, 199, 195, 27, 116, 189, + 28, 74, 255, 255, 72, 167, 201, 35, 154, 255, 39, 128, 72, 191, 68, 203, 88, 72, 170, 27, 15, 20, 207, 226, 95, + 249, 36, 39, 255, 255, 255, 72, 4, 233, 4, 4, 254, 41, 6, 4, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 565, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9934a4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10227721545268590108" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45c181cf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15810270969880601736" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13034092028330311316" + } + } + } + ] + } + ] + }, + "cborHex": "9f439934a4bf1b8df02a8e7f57f61c4445c181cf1bdb695dae426764881bb4e265a46660fe94ffff", + "cborBytes": [ + 159, 67, 153, 52, 164, 191, 27, 141, 240, 42, 142, 127, 87, 246, 28, 68, 69, 193, 129, 207, 27, 219, 105, 93, 174, + 66, 103, 100, 136, 27, 180, 226, 101, 164, 102, 96, 254, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 566, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10974863642737988919" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c687d62" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16321742398944507831" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28011ecb1fd9c215" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "298409f4bb65211e46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b38ba444e97a54" + } + } + ] + } + ] + }, + "cborHex": "9f00bf1b984e8c55f3bf5537441c687d621be2827a3c4c84f7b74828011ecb1fd9c21549298409f4bb65211e4647b38ba444e97a54ffff", + "cborBytes": [ + 159, 0, 191, 27, 152, 78, 140, 85, 243, 191, 85, 55, 68, 28, 104, 125, 98, 27, 226, 130, 122, 60, 76, 132, 247, + 183, 72, 40, 1, 30, 203, 31, 217, 194, 21, 73, 41, 132, 9, 244, 187, 101, 33, 30, 70, 71, 179, 139, 164, 68, 233, + 122, 84, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 567, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24bf59095201a1540ff4b6d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "172387fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6abb6c2a08c18e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "470169503802948966" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbfca98abe12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9123166521663071162" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7392320151306738199" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f6ab9b9817d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13263466052729658604" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a102094a61c3f54908" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2499099d4b9a22d10c700899" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11252873622010873657" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "537771128d73142a0eaf" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17121474369961207184" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10274239681737665411" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6717701546111045540" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6fab065d126a422103024e" + }, + { + "_tag": "ByteArray", + "bytearray": "8b87f37575" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8717162819902700603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14229436054531569971" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16649860638295317456" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17575018825573084124" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e2717bcf58af4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17614647537948753772" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "43" + } + ] + }, + "cborHex": "9fbf4c24bf59095201a1540ff4b6d644172387fa476abb6c2a08c18e1b068660ac32657d6646fbfca98abe121b7e9bff9d6676a3baffd8669f1b6696cc02ec999a179f80bf465f6ab9b9817d1bb8114c1a23675cec49a102094a61c3f549084c2499099d4b9a22d10c700899ff9f1b9c2a3cf05e524739ffffff4a537771128d73142a0eaf9fd8669f1bed9bb239dc7e25909f1b8e956e8e27322b831b5d3a11f6db0a8fa44b6fab065d126a422103024e458b87f37575ffffbf1b78f99566318afc3b1bc5791cb3687d79331be71030092959dbd01bf3e7028163162bdc470e2717bcf58af41bf473cc9bff24ff6cffff4143ff", + "cborBytes": [ + 159, 191, 76, 36, 191, 89, 9, 82, 1, 161, 84, 15, 244, 182, 214, 68, 23, 35, 135, 250, 71, 106, 187, 108, 42, 8, + 193, 142, 27, 6, 134, 96, 172, 50, 101, 125, 102, 70, 251, 252, 169, 138, 190, 18, 27, 126, 155, 255, 157, 102, + 118, 163, 186, 255, 216, 102, 159, 27, 102, 150, 204, 2, 236, 153, 154, 23, 159, 128, 191, 70, 95, 106, 185, 185, + 129, 125, 27, 184, 17, 76, 26, 35, 103, 92, 236, 73, 161, 2, 9, 74, 97, 195, 245, 73, 8, 76, 36, 153, 9, 157, 75, + 154, 34, 209, 12, 112, 8, 153, 255, 159, 27, 156, 42, 60, 240, 94, 82, 71, 57, 255, 255, 255, 74, 83, 119, 113, + 18, 141, 115, 20, 42, 14, 175, 159, 216, 102, 159, 27, 237, 155, 178, 57, 220, 126, 37, 144, 159, 27, 142, 149, + 110, 142, 39, 50, 43, 131, 27, 93, 58, 17, 246, 219, 10, 143, 164, 75, 111, 171, 6, 93, 18, 106, 66, 33, 3, 2, 78, + 69, 139, 135, 243, 117, 117, 255, 255, 191, 27, 120, 249, 149, 102, 49, 138, 252, 59, 27, 197, 121, 28, 179, 104, + 125, 121, 51, 27, 231, 16, 48, 9, 41, 89, 219, 208, 27, 243, 231, 2, 129, 99, 22, 43, 220, 71, 14, 39, 23, 188, + 245, 138, 244, 27, 244, 115, 204, 155, 255, 36, 255, 108, 255, 255, 65, 67, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 568, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "521154872415505260" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bd421b41151769f5822107c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14589030517587830465" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8786727557721422818" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58dd33de369588ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a724a01e1575" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8344e8a3507757de" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f8ac8e966" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b073b8398634a4b6c4c7bd421b41151769f5822107c1bca76a5f5b227e6c11b79f0ba28e01efbe24858dd33de369588ff46a724a01e1575488344e8a3507757de452f8ac8e966ffff", + "cborBytes": [ + 159, 191, 27, 7, 59, 131, 152, 99, 74, 75, 108, 76, 123, 212, 33, 180, 17, 81, 118, 159, 88, 34, 16, 124, 27, 202, + 118, 165, 245, 178, 39, 230, 193, 27, 121, 240, 186, 40, 224, 30, 251, 226, 72, 88, 221, 51, 222, 54, 149, 136, + 255, 70, 167, 36, 160, 30, 21, 117, 72, 131, 68, 232, 163, 80, 119, 87, 222, 69, 47, 138, 200, 233, 102, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 569, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15647918649953101432" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4418931512454772822" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff02b78d132eb6bd13ae" + }, + { + "_tag": "ByteArray", + "bytearray": "003ecdf052969de7a9" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ba0a14595bdda4675648" + }, + { + "_tag": "ByteArray", + "bytearray": "e3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15651088106143680199" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c514" + } + ] + } + ] + }, + "cborHex": "9f1bd928931b1caa26789fd8669f1b3d5332cc4ea578569f4aff02b78d132eb6bd13ae49003ecdf052969de7a9ffff4aba0a14595bdda467564841e3ff9f9f1bd933d5b5a30906c7ff42c514ffff", + "cborBytes": [ + 159, 27, 217, 40, 147, 27, 28, 170, 38, 120, 159, 216, 102, 159, 27, 61, 83, 50, 204, 78, 165, 120, 86, 159, 74, + 255, 2, 183, 141, 19, 46, 182, 189, 19, 174, 73, 0, 62, 205, 240, 82, 150, 157, 231, 169, 255, 255, 74, 186, 10, + 20, 89, 91, 221, 164, 103, 86, 72, 65, 227, 255, 159, 159, 27, 217, 51, 213, 181, 163, 9, 6, 199, 255, 66, 197, + 20, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 570, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3658555501824999640" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "60f1a30c9c346d138b2f76" + }, + { + "_tag": "ByteArray", + "bytearray": "feab" + }, + { + "_tag": "ByteArray", + "bytearray": "40330657" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18047444818696276696" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b32c5ccd8555480d880ff4b60f1a30c9c346d138b2f7642feab4440330657d8669f1bfa75677171db0ad880ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 50, 197, 204, 216, 85, 84, 128, 216, 128, 255, 75, 96, 241, 163, 12, 156, 52, 109, 19, + 139, 47, 118, 66, 254, 171, 68, 64, 51, 6, 87, 216, 102, 159, 27, 250, 117, 103, 113, 113, 219, 10, 216, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 571, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be0401" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + }, + "cborHex": "9f43be04011bffffffffffffffefff", + "cborBytes": [159, 67, 190, 4, 1, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 572, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7848252033539332598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1474088545913768213" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3825784147970831691" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17625287947522227126" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d2e0338dfbc0784296" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5951623270291293757" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4368480837860251370" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e649a3b9b720f628c8" + }, + { + "_tag": "ByteArray", + "bytearray": "087cdff09204ba21a4ee5b18" + }, + { + "_tag": "ByteArray", + "bytearray": "2d96f5833c24" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11351377454932953005" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "40222002249749500" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14625690456574897801" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1912513811069741448" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b33488" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4256427396054587338" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1761539732165100533" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10899556447409567825" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7310585800391585055" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17352150615725615446" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5269374389829212739" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17464538237931992008" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5819599281530850310" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11748154328619615475" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15093023694862470036" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b6cea97a486d959f69f1b147503b8f2a98915ffff1b3517ea69a71f354b1bf4999a0168093bb69f49d2e0338dfbc0784296d8669f1b529869d4cea9463d9f1b3c9ff62d44c2d6ea49e649a3b9b720f628c84c087cdff09204ba21a4ee5b18462d96f5833c241b9d8831a730a807adffffbf1b008ee5b2ac4053fc1bcaf8e3fae2f7ae891b1a8a9d2da0d7298843b334881b3b11de2a4a1317ca1b18723f0da97003f51b974300d7312a78511b65746b0d645aed1f1bf0cf390ca366a9561b49209416d64f9a431bf25e80ff0e29b3c81b50c35eb686c3cc06ffd8669f1ba309d41e13d704f39f1bd17531158ed4cb94ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 108, 234, 151, 164, 134, 217, 89, 246, 159, 27, 20, 117, 3, 184, 242, 169, 137, 21, 255, + 255, 27, 53, 23, 234, 105, 167, 31, 53, 75, 27, 244, 153, 154, 1, 104, 9, 59, 182, 159, 73, 210, 224, 51, 141, + 251, 192, 120, 66, 150, 216, 102, 159, 27, 82, 152, 105, 212, 206, 169, 70, 61, 159, 27, 60, 159, 246, 45, 68, + 194, 214, 234, 73, 230, 73, 163, 185, 183, 32, 246, 40, 200, 76, 8, 124, 223, 240, 146, 4, 186, 33, 164, 238, 91, + 24, 70, 45, 150, 245, 131, 60, 36, 27, 157, 136, 49, 167, 48, 168, 7, 173, 255, 255, 191, 27, 0, 142, 229, 178, + 172, 64, 83, 252, 27, 202, 248, 227, 250, 226, 247, 174, 137, 27, 26, 138, 157, 45, 160, 215, 41, 136, 67, 179, + 52, 136, 27, 59, 17, 222, 42, 74, 19, 23, 202, 27, 24, 114, 63, 13, 169, 112, 3, 245, 27, 151, 67, 0, 215, 49, 42, + 120, 81, 27, 101, 116, 107, 13, 100, 90, 237, 31, 27, 240, 207, 57, 12, 163, 102, 169, 86, 27, 73, 32, 148, 22, + 214, 79, 154, 67, 27, 242, 94, 128, 255, 14, 41, 179, 200, 27, 80, 195, 94, 182, 134, 195, 204, 6, 255, 216, 102, + 159, 27, 163, 9, 212, 30, 19, 215, 4, 243, 159, 27, 209, 117, 49, 21, 142, 212, 203, 148, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 573, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9a96cbb1b24b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83d3fe04b73e074b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcee83da26030002fb05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afe465f4c356" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "36004338ff8d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3132134016933945253" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + }, + "cborHex": "9fbf47d9a96cbb1b24b84883d3fe04b73e074b4afcee83da26030002fb0546afe465f4c356ff804636004338ff8d1b2b77934b2c43dfa511ff", + "cborBytes": [ + 159, 191, 71, 217, 169, 108, 187, 27, 36, 184, 72, 131, 211, 254, 4, 183, 62, 7, 75, 74, 252, 238, 131, 218, 38, + 3, 0, 2, 251, 5, 70, 175, 228, 101, 244, 195, 86, 255, 128, 70, 54, 0, 67, 56, 255, 141, 27, 43, 119, 147, 75, 44, + 67, 223, 165, 17, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 574, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14737798201449157364" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12511397732197722505" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05060580" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13232770557537375955" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14826579439885958458" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3275858503034156146" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "1d4d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1006271252245886710" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bcc872d6148c492f4d8669f1bada169f2ff45e9899f809f44050605801bb7a43eb63c4356d3ffffffa01bcdc297722c833d3ad8669f1b2d762ff3c7cb34729fa0421d4dbf1b0df6fe5f59cdb6f60affffffff", + "cborBytes": [ + 159, 27, 204, 135, 45, 97, 72, 196, 146, 244, 216, 102, 159, 27, 173, 161, 105, 242, 255, 69, 233, 137, 159, 128, + 159, 68, 5, 6, 5, 128, 27, 183, 164, 62, 182, 60, 67, 86, 211, 255, 255, 255, 160, 27, 205, 194, 151, 114, 44, + 131, 61, 58, 216, 102, 159, 27, 45, 118, 47, 243, 199, 203, 52, 114, 159, 160, 66, 29, 77, 191, 27, 13, 246, 254, + 95, 89, 205, 182, 246, 10, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 575, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16295279106260236098" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1034278a1deb726f6e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16553039706218006774" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee5d" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15574156621454689484" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5401300581470694931" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12084235184603379642" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "739db3231f352783041c9a8c" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12738414297482388664" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17750622379418761950" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abde8061d2823634" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f8b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2204159604940938021" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92a91b62fd55e8ea3ed7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87a09d1370" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f1be2247602d47c7742491034278a1deb726f6e1be5b835e93a0f88f642ee5dffff80d8669f1bd82284ee8a1ac4cc9f1b4af54642f3abee13bf1ba7b3d3e0188fb7ba4c739db3231f352783041c9a8cffbf1bb0c7f0500331e4b81bf656e101db5abade48abde8061d28236344128ffffffa0bf426f8b1b1e96bf7b88c51b254a92a91b62fd55e8ea3ed74587a09d1370ffff", + "cborBytes": [ + 159, 159, 159, 27, 226, 36, 118, 2, 212, 124, 119, 66, 73, 16, 52, 39, 138, 29, 235, 114, 111, 110, 27, 229, 184, + 53, 233, 58, 15, 136, 246, 66, 238, 93, 255, 255, 128, 216, 102, 159, 27, 216, 34, 132, 238, 138, 26, 196, 204, + 159, 27, 74, 245, 70, 66, 243, 171, 238, 19, 191, 27, 167, 179, 211, 224, 24, 143, 183, 186, 76, 115, 157, 179, + 35, 31, 53, 39, 131, 4, 28, 154, 140, 255, 191, 27, 176, 199, 240, 80, 3, 49, 228, 184, 27, 246, 86, 225, 1, 219, + 90, 186, 222, 72, 171, 222, 128, 97, 210, 130, 54, 52, 65, 40, 255, 255, 255, 160, 191, 66, 111, 139, 27, 30, 150, + 191, 123, 136, 197, 27, 37, 74, 146, 169, 27, 98, 253, 85, 232, 234, 62, 215, 69, 135, 160, 157, 19, 112, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 576, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2924706354936311912" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16487731255128684562" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c406670321040482" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16656983906913592460" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f41021b2896a4ef1e4e7068ffbf1be4d03038860cf81248c4066703210404821be7297e9c60fba48c11ffff", + "cborBytes": [ + 159, 159, 65, 2, 27, 40, 150, 164, 239, 30, 78, 112, 104, 255, 191, 27, 228, 208, 48, 56, 134, 12, 248, 18, 72, + 196, 6, 103, 3, 33, 4, 4, 130, 27, 231, 41, 126, 156, 96, 251, 164, 140, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 577, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5060961772699946438" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "809657880317442780" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13160248497970933208" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9833497031415156803" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1143608913128502863" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14258023254470960463" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff78b1900f818c8cb66ff4" + }, + { + "_tag": "ByteArray", + "bytearray": "e6444974db2de83f72" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4413396293228982842" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "812544249373658377" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "25901a68c3da" + } + ] + }, + "cborHex": "9f1b463c25eb0b9c8dc6d8669f1b0b3c7b8d69eabadc9f1bb6a298486d6cedd8d8669f1b88779973315bd0439f1b0fdeea3f54feb64f1bc5deac9b9200254f4bff78b1900f818c8cb66ff449e6444974db2de83f72ffff1b3d3f888ba6f0723affffd8669f1b0b46bcb094340d0980ff4625901a68c3daff", + "cborBytes": [ + 159, 27, 70, 60, 37, 235, 11, 156, 141, 198, 216, 102, 159, 27, 11, 60, 123, 141, 105, 234, 186, 220, 159, 27, + 182, 162, 152, 72, 109, 108, 237, 216, 216, 102, 159, 27, 136, 119, 153, 115, 49, 91, 208, 67, 159, 27, 15, 222, + 234, 63, 84, 254, 182, 79, 27, 197, 222, 172, 155, 146, 0, 37, 79, 75, 255, 120, 177, 144, 15, 129, 140, 140, 182, + 111, 244, 73, 230, 68, 73, 116, 219, 45, 232, 63, 114, 255, 255, 27, 61, 63, 136, 139, 166, 240, 114, 58, 255, + 255, 216, 102, 159, 27, 11, 70, 188, 176, 148, 52, 13, 9, 128, 255, 70, 37, 144, 26, 104, 195, 218, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 578, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bfa4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b78e95" + }, + { + "_tag": "ByteArray", + "bytearray": "2e22b70628c682" + }, + { + "_tag": "ByteArray", + "bytearray": "26b589b18f9a34" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11874769517887498454" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2542121604051772650" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f42bfa4d9050b9f9f43b78e95472e22b70628c6824726b589b18f9a341ba4cba7f6175228d61b23476e21515a24eaffa0ffff", + "cborBytes": [ + 159, 66, 191, 164, 217, 5, 11, 159, 159, 67, 183, 142, 149, 71, 46, 34, 183, 6, 40, 198, 130, 71, 38, 181, 137, + 177, 143, 154, 52, 27, 164, 203, 167, 246, 23, 82, 40, 214, 27, 35, 71, 110, 33, 81, 90, 36, 234, 255, 160, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 579, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1525614959881704825" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9f3d9749ff372dcabdce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17135832073096236075" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "218bf9615e59673b" + }, + { + "_tag": "ByteArray", + "bytearray": "670e523fcb55" + }, + { + "_tag": "ByteArray", + "bytearray": "47bf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10715919080607472913" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6099285852157509615" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4316fc5d7f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14829228915470906999" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d4988c30870211ad" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9501394916825628774" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6f2effb9149601" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17808420244762505739" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10906375365578528188" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c68d9b22d00" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1958617449019350352" + } + } + ] + }, + "cborHex": "9fd8669f1b152c12b913c555799f4a9f3d9749ff372dcabdce1bedceb47b1fa58c2b9f48218bf9615e59673b46670e523fcb554247bf1b94b697a0e1705d11ffffff1b54a5042ac969ffef9f454316fc5d7f1bcdcc01214798367748d4988c30870211add8669f1b83dbbc56181800669f476f2effb9149601ffff1bf72437dc0bf1b20bffbf1b975b3a9c4c6115bc469c68d9b22d00ff1b1b2e683153ae1d50ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 21, 44, 18, 185, 19, 197, 85, 121, 159, 74, 159, 61, 151, 73, 255, 55, 45, 202, 189, 206, + 27, 237, 206, 180, 123, 31, 165, 140, 43, 159, 72, 33, 139, 249, 97, 94, 89, 103, 59, 70, 103, 14, 82, 63, 203, + 85, 66, 71, 191, 27, 148, 182, 151, 160, 225, 112, 93, 17, 255, 255, 255, 27, 84, 165, 4, 42, 201, 105, 255, 239, + 159, 69, 67, 22, 252, 93, 127, 27, 205, 204, 1, 33, 71, 152, 54, 119, 72, 212, 152, 140, 48, 135, 2, 17, 173, 216, + 102, 159, 27, 131, 219, 188, 86, 24, 24, 0, 102, 159, 71, 111, 46, 255, 185, 20, 150, 1, 255, 255, 27, 247, 36, + 55, 220, 11, 241, 178, 11, 255, 191, 27, 151, 91, 58, 156, 76, 97, 21, 188, 70, 156, 104, 217, 178, 45, 0, 255, + 27, 27, 46, 104, 49, 83, 174, 29, 80, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 580, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1340366539053558661" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cd11c22fec863b6a9205017f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10766169393213040111" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bd1da0761b5f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16641585158865505982" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1299f044051b6b859f4ccd11c22fec863b6a9205017f1b95691e05822565ef46bd1da0761b5fd8669f1be6f2c987f5974ebe80ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 18, 153, 240, 68, 5, 27, 107, 133, 159, 76, 205, 17, 194, 47, 236, 134, 59, 106, 146, 5, + 1, 127, 27, 149, 105, 30, 5, 130, 37, 101, 239, 70, 189, 29, 160, 118, 27, 95, 216, 102, 159, 27, 230, 242, 201, + 135, 245, 151, 78, 190, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 581, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17478200877088371741" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "290845573845751785" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53913db8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1699982956825182298" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afaf7c28b0ec3639ca97e44e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7768902632455910697" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8f448e7fd44ee6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1f59a97c4b4f" + } + ] + }, + "cborHex": "9f41d9d8669f1bf28f0b181fc5f41d9fbf1b04094a82299217e94453913db841981b17978d7e09c8805a4cafaf7c28b0ec3639ca97e44e4155ffd8669f1b6bd0afc86621b52980ff478f448e7fd44ee6ffff461f59a97c4b4fff", + "cborBytes": [ + 159, 65, 217, 216, 102, 159, 27, 242, 143, 11, 24, 31, 197, 244, 29, 159, 191, 27, 4, 9, 74, 130, 41, 146, 23, + 233, 68, 83, 145, 61, 184, 65, 152, 27, 23, 151, 141, 126, 9, 200, 128, 90, 76, 175, 175, 124, 40, 176, 236, 54, + 57, 202, 151, 228, 78, 65, 85, 255, 216, 102, 159, 27, 107, 208, 175, 200, 102, 33, 181, 41, 128, 255, 71, 143, + 68, 142, 127, 212, 78, 230, 255, 255, 70, 31, 89, 169, 124, 75, 79, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 582, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "98475ab9c8ab960d42409d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15212772263120664617" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "816708883804310934" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5447539364703564711" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12070538930736114048" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a851e4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12421905742356230530" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2676921021748841179" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13570231568906076765" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18434819228396208479" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17984346353427577324" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7917725771111191049" + } + } + } + ] + } + ] + }, + "cborHex": "9f4b98475ab9c8ab960d42409d1bd31e9fc5c838f829bf1b0b558867180fcd961b4b998c309d1cf3a71ba7832b347e0ca98043a851e41bac637975668731821b2526557c811d8adb1bbc5325b6b870425d1bffd5a26a9718c15f1bf9953bb929a479ec1b6de169a39009d209ffff", + "cborBytes": [ + 159, 75, 152, 71, 90, 185, 200, 171, 150, 13, 66, 64, 157, 27, 211, 30, 159, 197, 200, 56, 248, 41, 191, 27, 11, + 85, 136, 103, 24, 15, 205, 150, 27, 75, 153, 140, 48, 157, 28, 243, 167, 27, 167, 131, 43, 52, 126, 12, 169, 128, + 67, 168, 81, 228, 27, 172, 99, 121, 117, 102, 135, 49, 130, 27, 37, 38, 85, 124, 129, 29, 138, 219, 27, 188, 83, + 37, 182, 184, 112, 66, 93, 27, 255, 213, 162, 106, 151, 24, 193, 95, 27, 249, 149, 59, 185, 41, 164, 121, 236, 27, + 109, 225, 105, 163, 144, 9, 210, 9, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 583, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10074778597653186633" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f42e231281257e94" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15235689849598206788" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1741073711001425769" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15460924576488744012" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10677166219254355049" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4716bf41e7e564" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + }, + "cborHex": "9fbf1b8bd0cdc18fd3884948f42e231281257e941bd3700b32315363441b18298950c802d7691bd6903cfca0b7e44c1b942cea1b3a74d469ff474716bf41e7e56401ff", + "cborBytes": [ + 159, 191, 27, 139, 208, 205, 193, 143, 211, 136, 73, 72, 244, 46, 35, 18, 129, 37, 126, 148, 27, 211, 112, 11, 50, + 49, 83, 99, 68, 27, 24, 41, 137, 80, 200, 2, 215, 105, 27, 214, 144, 60, 252, 160, 183, 228, 76, 27, 148, 44, 234, + 27, 58, 116, 212, 105, 255, 71, 71, 22, 191, 65, 231, 229, 100, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 584, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3280335c44b667f5f377a3b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6ea9782786597d370fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14706579844431657708" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "08b9e9416635" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "944a80a3d0a0aa6a87fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d2ca865d1879dbfa6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73958307d2a7f4179ed4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5198331968506160602" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a805" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8406375849339707268" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d760069f5922ce1d65386e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40e097" + } + } + ] + } + ] + }, + "cborHex": "9fbf4c3280335c44b667f5f377a3b841674ac6ea9782786597d370fc1bcc1844732044baecffbf4608b9e94166354a944a80a3d0a0aa6a87fd4159499d2ca865d1879dbfa64a73958307d2a7f4179ed41b48242f62275de5da42a8051b74a9724bcc50df844bd760069f5922ce1d65386e4340e097ffff", + "cborBytes": [ + 159, 191, 76, 50, 128, 51, 92, 68, 182, 103, 245, 243, 119, 163, 184, 65, 103, 74, 198, 234, 151, 130, 120, 101, + 151, 211, 112, 252, 27, 204, 24, 68, 115, 32, 68, 186, 236, 255, 191, 70, 8, 185, 233, 65, 102, 53, 74, 148, 74, + 128, 163, 208, 160, 170, 106, 135, 253, 65, 89, 73, 157, 44, 168, 101, 209, 135, 157, 191, 166, 74, 115, 149, 131, + 7, 210, 167, 244, 23, 158, 212, 27, 72, 36, 47, 98, 39, 93, 229, 218, 66, 168, 5, 27, 116, 169, 114, 75, 204, 80, + 223, 132, 75, 215, 96, 6, 159, 89, 34, 206, 29, 101, 56, 110, 67, 64, 224, 151, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 585, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2426713482982295958" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4521178362685648330" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6179021027940836046" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "71a337" + }, + { + "_tag": "ByteArray", + "bytearray": "8fe1a152e6" + }, + { + "_tag": "ByteArray", + "bytearray": "901ebbd1b273ad3c688e0fc5" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2888739782689172663" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50acdb65ccae69966f81b4ce" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4679187294631370128" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4278434949854098989" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10962032288059082581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10797066743449628062" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14721919306878393401" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14313089695888070496" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15026114773280683419" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14266952143715979483" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f412bbf1b21ad6b0e34cf89961b3ebe73c4420f6dcaff1b55c04ae3161522ce9f4371a337458fe1a152e64c901ebbd1b273ad3c688e0fc5ffffbf1b2816dd86f3ba2cb74c50acdb65ccae69966f81b4ce1b40efd00d96061d901b3b600deb34ab762d1b9820f649621fc7551b95d6e2ff737fad9e1bcc4ec39c0a739c391bc6a24f3e91b657601bd0877bc647a4f59b1bc5fe656299b050dbffff", + "cborBytes": [ + 159, 159, 65, 43, 191, 27, 33, 173, 107, 14, 52, 207, 137, 150, 27, 62, 190, 115, 196, 66, 15, 109, 202, 255, 27, + 85, 192, 74, 227, 22, 21, 34, 206, 159, 67, 113, 163, 55, 69, 143, 225, 161, 82, 230, 76, 144, 30, 187, 209, 178, + 115, 173, 60, 104, 142, 15, 197, 255, 255, 191, 27, 40, 22, 221, 134, 243, 186, 44, 183, 76, 80, 172, 219, 101, + 204, 174, 105, 150, 111, 129, 180, 206, 27, 64, 239, 208, 13, 150, 6, 29, 144, 27, 59, 96, 13, 235, 52, 171, 118, + 45, 27, 152, 32, 246, 73, 98, 31, 199, 85, 27, 149, 214, 226, 255, 115, 127, 173, 158, 27, 204, 78, 195, 156, 10, + 115, 156, 57, 27, 198, 162, 79, 62, 145, 182, 87, 96, 27, 208, 135, 123, 198, 71, 164, 245, 155, 27, 197, 254, + 101, 98, 153, 176, 80, 219, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 586, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2542534332841284239" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11e36d767493" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7675896444769556277" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3171817864615766013" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14924108761447116958" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14536744416512024845" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05ca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5955617876078798419" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2fe77530474c391d84" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2078d0be98c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5470ab8f7af8e8ed49d675be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5582303409383003790" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7afd40c3539a8e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb48d7c63db8601648" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17523495649992267078" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb509f6df1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11093779341768455689" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13546470351946387662" + } + } + ] + }, + "cborHex": "9fbf1b2348e5813a3d528f4611e36d7674931b6a864325db2c57351b2c048f8af8a927fd1bcf1d15d8e359b09e1bc9bce40720d7a10dffbf4205ca1b52a69ae771a4a653492fe77530474c391d84462078d0be98c34c5470ab8f7af8e8ed49d675be1b4d78535fe0b9d68e477afd40c3539a8e41bc49cb48d7c63db86016481bf32ff67340e4554645fb509f6df11b99f50588b2acf609ff1bbbfebb03482010ceff", + "cborBytes": [ + 159, 191, 27, 35, 72, 229, 129, 58, 61, 82, 143, 70, 17, 227, 109, 118, 116, 147, 27, 106, 134, 67, 37, 219, 44, + 87, 53, 27, 44, 4, 143, 138, 248, 169, 39, 253, 27, 207, 29, 21, 216, 227, 89, 176, 158, 27, 201, 188, 228, 7, 32, + 215, 161, 13, 255, 191, 66, 5, 202, 27, 82, 166, 154, 231, 113, 164, 166, 83, 73, 47, 231, 117, 48, 71, 76, 57, + 29, 132, 70, 32, 120, 208, 190, 152, 195, 76, 84, 112, 171, 143, 122, 248, 232, 237, 73, 214, 117, 190, 27, 77, + 120, 83, 95, 224, 185, 214, 142, 71, 122, 253, 64, 195, 83, 154, 142, 65, 188, 73, 203, 72, 215, 198, 61, 184, 96, + 22, 72, 27, 243, 47, 246, 115, 64, 228, 85, 70, 69, 251, 80, 159, 109, 241, 27, 153, 245, 5, 136, 178, 172, 246, + 9, 255, 27, 187, 254, 187, 3, 72, 32, 16, 206, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 587, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16781383965568861414" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1252204396310830054" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8669375168811379221" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14509390609552425924" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "54bee340a8f8ec9459" + }, + { + "_tag": "ByteArray", + "bytearray": "7d3a01" + }, + { + "_tag": "ByteArray", + "bytearray": "e4" + }, + { + "_tag": "ByteArray", + "bytearray": "9e7aea3f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18063780060088919494" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4641072685605710903" + } + }, + { + "_tag": "ByteArray", + "bytearray": "710b72" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12084931616915968447" + } + }, + { + "_tag": "ByteArray", + "bytearray": "241c2b38008661d081701a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8195374144519742947" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10221388546353806281" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2835689053303027499" + } + }, + { + "_tag": "ByteArray", + "bytearray": "346d2578" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5125387180090300156" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1be8e373ce1b2b04e61b1160b943944a1be6d8669f1b784fcec8a1982a159f9f1bc95bb5e2a5c2c3c4ff9f4954bee340a8f8ec9459437d3a0141e4449e7aea3fffd8669f1bfaaf7042366265c69f1b40686704a24bec3743710b721ba7b64d46e129d1bf4b241c2b38008661d081701affffd8669f1b71bbd15d0d8525e39f1b8dd9aaba48aa3bc91b275a642b7b97372b44346d25781b4721087c1d9f96fcffffffffff", + "cborBytes": [ + 159, 27, 232, 227, 115, 206, 27, 43, 4, 230, 27, 17, 96, 185, 67, 148, 74, 27, 230, 216, 102, 159, 27, 120, 79, + 206, 200, 161, 152, 42, 21, 159, 159, 27, 201, 91, 181, 226, 165, 194, 195, 196, 255, 159, 73, 84, 190, 227, 64, + 168, 248, 236, 148, 89, 67, 125, 58, 1, 65, 228, 68, 158, 122, 234, 63, 255, 216, 102, 159, 27, 250, 175, 112, 66, + 54, 98, 101, 198, 159, 27, 64, 104, 103, 4, 162, 75, 236, 55, 67, 113, 11, 114, 27, 167, 182, 77, 70, 225, 41, + 209, 191, 75, 36, 28, 43, 56, 0, 134, 97, 208, 129, 112, 26, 255, 255, 216, 102, 159, 27, 113, 187, 209, 93, 13, + 133, 37, 227, 159, 27, 141, 217, 170, 186, 72, 170, 59, 201, 27, 39, 90, 100, 43, 123, 151, 55, 43, 68, 52, 109, + 37, 120, 27, 71, 33, 8, 124, 29, 159, 150, 252, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 588, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3944854410478184545" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3442339692603521283" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2327535386022131610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3999286862088574729" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2680879211973880936" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11193973177459738382" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "84d74c761d555b451e" + } + ] + } + ] + }, + "cborHex": "9f9f0a9f1b36bef02f832f68611b2fc5a5b64ddc3903ffbf1b204d111a0e00379a1b3780523641ad17091b253465707b6eac681b9b58fb4bf3bd070eff4984d74c761d555b451effff", + "cborBytes": [ + 159, 159, 10, 159, 27, 54, 190, 240, 47, 131, 47, 104, 97, 27, 47, 197, 165, 182, 77, 220, 57, 3, 255, 191, 27, + 32, 77, 17, 26, 14, 0, 55, 154, 27, 55, 128, 82, 54, 65, 173, 23, 9, 27, 37, 52, 101, 112, 123, 110, 172, 104, 27, + 155, 88, 251, 75, 243, 189, 7, 14, 255, 73, 132, 215, 76, 118, 29, 85, 91, 69, 30, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 589, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17a80b2152fb46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c13dd326b79f81c60c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "598123eece01b45009" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2535843900398364536" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd00d58a0d8d5883908d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15872646213153280968" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c60f202b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7849718ea80f71f9281d3c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f08c11" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9513212223675066640" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17609278685994743603" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13386396287900307461" + } + } + ] + }, + "cborHex": "9fbf4717a80b2152fb464a8c13dd326b79f81c60c649598123eece01b450091b233120978915e7784abd00d58a0d8d5883908d1bdc46f7a24c7353c844c60f202b4b7849718ea80f71f9281d3c43f08c111b8405b81d410e6910ff9fa0ff1bf460b9aabd92f7331bb9c6087feae7d005ff", + "cborBytes": [ + 159, 191, 71, 23, 168, 11, 33, 82, 251, 70, 74, 140, 19, 221, 50, 107, 121, 248, 28, 96, 198, 73, 89, 129, 35, + 238, 206, 1, 180, 80, 9, 27, 35, 49, 32, 151, 137, 21, 231, 120, 74, 189, 0, 213, 138, 13, 141, 88, 131, 144, 141, + 27, 220, 70, 247, 162, 76, 115, 83, 200, 68, 198, 15, 32, 43, 75, 120, 73, 113, 142, 168, 15, 113, 249, 40, 29, + 60, 67, 240, 140, 17, 27, 132, 5, 184, 29, 65, 14, 105, 16, 255, 159, 160, 255, 27, 244, 96, 185, 170, 189, 146, + 247, 51, 27, 185, 198, 8, 127, 234, 231, 208, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 590, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12473110665360520610" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8229" + }, + { + "_tag": "ByteArray", + "bytearray": "b245106909f441c0ae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "901549910950133387" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14186712765193772957" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0bab4efcdf8324e315" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63927ff22d502bdffcfce18d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6741c87172a9e23960" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5457274474165561366" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16170210848082912892" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d805a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94e89d60e5a3a894b9ef" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "32" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "994229913456613703" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "156ab3ea7fb5eb748955" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2577953277660405774" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8f887" + } + ] + } + ] + }, + "cborHex": "9f1bad19641094f335a2d9050d9f9f42822949b245106909f441c0ae1b0c82f2de0d77be8b1bc4e1541873dfdf9dffbf490bab4efcdf8324e3154c63927ff22d502bdffcfce18d496741c87172a9e239601b4bbc22386a71e81641891be0682117c726667c43d805a14a94e89d60e5a3a894b9efff4132d8669f1b0dcc36d6b0a619479f4a156ab3ea7fb5eb7489551b23c6bad8f280a00effffffd8669f1bffffffffffffffef9f43f8f887ffffff", + "cborBytes": [ + 159, 27, 173, 25, 100, 16, 148, 243, 53, 162, 217, 5, 13, 159, 159, 66, 130, 41, 73, 178, 69, 16, 105, 9, 244, 65, + 192, 174, 27, 12, 130, 242, 222, 13, 119, 190, 139, 27, 196, 225, 84, 24, 115, 223, 223, 157, 255, 191, 73, 11, + 171, 78, 252, 223, 131, 36, 227, 21, 76, 99, 146, 127, 242, 45, 80, 43, 223, 252, 252, 225, 141, 73, 103, 65, 200, + 113, 114, 169, 226, 57, 96, 27, 75, 188, 34, 56, 106, 113, 232, 22, 65, 137, 27, 224, 104, 33, 23, 199, 38, 102, + 124, 67, 216, 5, 161, 74, 148, 232, 157, 96, 229, 163, 168, 148, 185, 239, 255, 65, 50, 216, 102, 159, 27, 13, + 204, 54, 214, 176, 166, 25, 71, 159, 74, 21, 106, 179, 234, 127, 181, 235, 116, 137, 85, 27, 35, 198, 186, 216, + 242, 128, 160, 14, 255, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 67, 248, 248, + 135, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 591, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9985622922553019502" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12778170314602105028" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e83f2f36ad8d5c1c" + }, + { + "_tag": "ByteArray", + "bytearray": "ed" + }, + { + "_tag": "ByteArray", + "bytearray": "97" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16464529487861417343" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e3b510824af343d9c218967e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "822002467642941472" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12262570620879167907" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6026f1e50e3345cc2f18a1de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2072084592451325906" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b8a940f2457c54c6ed8669f1bb1552e33114cc8c49f48e83f2f36ad8d5c1c41ed41971be47dc2561dec857fffff4ce3b510824af343d9c218967ebf1b0b6856e3a05a20201baa2d670282a4e1a3ffbf4c6026f1e50e3345cc2f18a1de1b1cc185f55d9f0fd2ffff", + "cborBytes": [ + 159, 27, 138, 148, 15, 36, 87, 197, 76, 110, 216, 102, 159, 27, 177, 85, 46, 51, 17, 76, 200, 196, 159, 72, 232, + 63, 47, 54, 173, 141, 92, 28, 65, 237, 65, 151, 27, 228, 125, 194, 86, 29, 236, 133, 127, 255, 255, 76, 227, 181, + 16, 130, 74, 243, 67, 217, 194, 24, 150, 126, 191, 27, 11, 104, 86, 227, 160, 90, 32, 32, 27, 170, 45, 103, 2, + 130, 164, 225, 163, 255, 191, 76, 96, 38, 241, 229, 14, 51, 69, 204, 47, 24, 161, 222, 27, 28, 193, 133, 245, 93, + 159, 15, 210, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 592, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "22484480b57f24dbfa1872d2" + }, + { + "_tag": "ByteArray", + "bytearray": "5595" + }, + { + "_tag": "ByteArray", + "bytearray": "0d13881e6f24" + }, + { + "_tag": "ByteArray", + "bytearray": "83e59467b1" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f4c22484480b57f24dbfa1872d2425595460d13881e6f244583e59467b1ffffff", + "cborBytes": [ + 159, 159, 159, 76, 34, 72, 68, 128, 181, 127, 36, 219, 250, 24, 114, 210, 66, 85, 149, 70, 13, 19, 136, 30, 111, + 36, 69, 131, 229, 148, 103, 177, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 593, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c7eaf4" + } + ] + }, + "cborHex": "9f43c7eaf4ff", + "cborBytes": [159, 67, 199, 234, 244, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 594, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6370091598487678245" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d9" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6936784184509459159" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fdfd9007290107f8" + }, + { + "_tag": "ByteArray", + "bytearray": "266f579987d4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "104faaa681" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be94bb6d7a007db538bad81f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10013081691023715683" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb4d99d55dea1610" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26f10e3bf38bf6f36937" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b58671c8f028eed259f41d9ffffd8669f1b60446876913bead780ffff48fdfd9007290107f846266f579987d4bf45104faaa6814cbe94bb6d7a007db538bad81f41451b8af59cbf146fad6348bb4d99d55dea16104a26f10e3bf38bf6f36937ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 88, 103, 28, 143, 2, 142, 237, 37, 159, 65, 217, 255, 255, 216, 102, 159, 27, 96, 68, + 104, 118, 145, 59, 234, 215, 128, 255, 255, 72, 253, 253, 144, 7, 41, 1, 7, 248, 70, 38, 111, 87, 153, 135, 212, + 191, 69, 16, 79, 170, 166, 129, 76, 190, 148, 187, 109, 122, 0, 125, 181, 56, 186, 216, 31, 65, 69, 27, 138, 245, + 156, 191, 20, 111, 173, 99, 72, 187, 77, 153, 213, 93, 234, 22, 16, 74, 38, 241, 14, 59, 243, 139, 246, 243, 105, + 55, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 595, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12882294653943749654" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "397737987520435840" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1015439870897632252" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11526203387114964869" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a28bb4fe15f3043b4485" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17800928336146491232" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10791440876674730608" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2291195334516691970" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8266063003260877868" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fef928" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11867331779009010408" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b072ade1b8b3c930bfbd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18360604085353362738" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f01afdcfbf205f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9769925249781462780" + } + } + } + ] + } + ] + }, + "cborHex": "9fd9050880d8669f1bb2c71abc043b1c169fbf1b05850c97a3d596801b0e17912ebb9f33fc1b9ff54ce981e447854aa28bb4fe15f3043b44851bf7099a02243267601b95c2e64d44d3ca70ffffffbf031b1fcbf60478e654021b72b6f481885cfc2c43fef9281ba4b13b608f895ae84ab072ade1b8b3c930bfbd1bfecdf8231112b532488f01afdcfbf205f81bfffffffffffffff21b8795bf405b57f6fcffff", + "cborBytes": [ + 159, 217, 5, 8, 128, 216, 102, 159, 27, 178, 199, 26, 188, 4, 59, 28, 22, 159, 191, 27, 5, 133, 12, 151, 163, 213, + 150, 128, 27, 14, 23, 145, 46, 187, 159, 51, 252, 27, 159, 245, 76, 233, 129, 228, 71, 133, 74, 162, 139, 180, + 254, 21, 243, 4, 59, 68, 133, 27, 247, 9, 154, 2, 36, 50, 103, 96, 27, 149, 194, 230, 77, 68, 211, 202, 112, 255, + 255, 255, 191, 3, 27, 31, 203, 246, 4, 120, 230, 84, 2, 27, 114, 182, 244, 129, 136, 92, 252, 44, 67, 254, 249, + 40, 27, 164, 177, 59, 96, 143, 137, 90, 232, 74, 176, 114, 173, 225, 184, 179, 201, 48, 191, 189, 27, 254, 205, + 248, 35, 17, 18, 181, 50, 72, 143, 1, 175, 220, 251, 242, 5, 248, 27, 255, 255, 255, 255, 255, 255, 255, 242, 27, + 135, 149, 191, 64, 91, 87, 246, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 596, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5672455241789380446" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8769325080770247493" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14974604302293529967" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "440cb3f19ae473" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15358057388964047374" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b72678a498bb0cd3848b56ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e5c0f86" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3fc7f8fe538f9c772918be8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17503783107695850607" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7724818156603108206" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10974943737702558746" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f5099c6654af92786f41006" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3419087022225569324" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80bcae017c165222" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6563419026716977529" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b09ed59966a7bdec06ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f3e182e0c521434920492c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b357faed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0fa38e0b8802e66" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13975278764078207612" + } + } + ] + }, + "cborHex": "9fd8669f1b4eb89bfd0b28975e9fbf1b79b2e6b2f73bfb451bcfd07b462a3df56f47440cb3f19ae4731bd522c7d32543ea0effbf4cb72678a498bb0cd3848b56ea444e5c0f864cf3fc7f8fe538f9c772918be81bf2e9edff57b1b46fffffffd8669f1b6b34112f82d0eb6e80ffbf410b1b984ed52e83a8ac1a4c4f5099c6654af92786f410061b2f73098817e7362c4880bcae017c1652221b5b15f2d48f8169794ab09ed59966a7bdec06ad4c7f3e182e0c521434920492c044b357faed48d0fa38e0b8802e66ff1bc1f229fde1f1127cff", + "cborBytes": [ + 159, 216, 102, 159, 27, 78, 184, 155, 253, 11, 40, 151, 94, 159, 191, 27, 121, 178, 230, 178, 247, 59, 251, 69, + 27, 207, 208, 123, 70, 42, 61, 245, 111, 71, 68, 12, 179, 241, 154, 228, 115, 27, 213, 34, 199, 211, 37, 67, 234, + 14, 255, 191, 76, 183, 38, 120, 164, 152, 187, 12, 211, 132, 139, 86, 234, 68, 78, 92, 15, 134, 76, 243, 252, 127, + 143, 229, 56, 249, 199, 114, 145, 139, 232, 27, 242, 233, 237, 255, 87, 177, 180, 111, 255, 255, 255, 216, 102, + 159, 27, 107, 52, 17, 47, 130, 208, 235, 110, 128, 255, 191, 65, 11, 27, 152, 78, 213, 46, 131, 168, 172, 26, 76, + 79, 80, 153, 198, 101, 74, 249, 39, 134, 244, 16, 6, 27, 47, 115, 9, 136, 23, 231, 54, 44, 72, 128, 188, 174, 1, + 124, 22, 82, 34, 27, 91, 21, 242, 212, 143, 129, 105, 121, 74, 176, 158, 213, 153, 102, 167, 189, 236, 6, 173, 76, + 127, 62, 24, 46, 12, 82, 20, 52, 146, 4, 146, 192, 68, 179, 87, 250, 237, 72, 208, 250, 56, 224, 184, 128, 46, + 102, 255, 27, 193, 242, 41, 253, 225, 241, 18, 124, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 597, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15207918366373298132" + } + } + ] + }, + "cborHex": "9f1bd30d612de0d1bfd4ff", + "cborBytes": [159, 27, 211, 13, 97, 45, 224, 209, 191, 212, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 598, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14357008409381095324" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6471697804471438601" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "580271718886344204" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18348645539910942133" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2488510349966204035" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11746850842946963245" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6197248273604054551" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4ba2019160c0a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11899970908714721161" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14121776410188018750" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "745513946341367348" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9dce5015d3ccedcb1aca" + }, + { + "_tag": "ByteArray", + "bytearray": "d07d0e23d510c37d76588b" + }, + { + "_tag": "ByteArray", + "bytearray": "869457d1" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bc73e5714e674c79c9f1b59d016dd59320d09bf1b080d8a0dcd6d060c1bfea37be73bf27db51b2288f6fa859e5c831ba305329aab5a072d1b56010c786d128e1747b4ba2019160c0a1ba525307e236c5f891bc3faa0d31ebf743effd8669f1b0a5898fbfac6de349f4a9dce5015d3ccedcb1aca4bd07d0e23d510c37d76588b44869457d1ffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 199, 62, 87, 20, 230, 116, 199, 156, 159, 27, 89, 208, 22, 221, 89, 50, 13, 9, 191, 27, 8, + 13, 138, 13, 205, 109, 6, 12, 27, 254, 163, 123, 231, 59, 242, 125, 181, 27, 34, 136, 246, 250, 133, 158, 92, 131, + 27, 163, 5, 50, 154, 171, 90, 7, 45, 27, 86, 1, 12, 120, 109, 18, 142, 23, 71, 180, 186, 32, 25, 22, 12, 10, 27, + 165, 37, 48, 126, 35, 108, 95, 137, 27, 195, 250, 160, 211, 30, 191, 116, 62, 255, 216, 102, 159, 27, 10, 88, 152, + 251, 250, 198, 222, 52, 159, 74, 157, 206, 80, 21, 211, 204, 237, 203, 26, 202, 75, 208, 125, 14, 35, 213, 16, + 195, 125, 118, 88, 139, 68, 134, 148, 87, 209, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 599, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14845011793125114805" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2973157637056232149" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0299faf5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10227852669929731717" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18360076617015333183" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14150287795597140302" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1621458191046251205" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16258293888929336552" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17159548213381085531" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b686865f13a24d3b8" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "420182013af834554b06" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10333318029442526710" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7198286118608560231" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f1bce041392d7b503b5bf1b2942c71e51f9fad5440299faf51b8df0a1d0563136851bfecc18684627913f1bc45febc7561ce14e1b168093a2477592c51be1a11026df898ce841a61bee22f62f54c4b95b497b686865f13a24d3b8ff4a420182013af834554b0610d8669f1b8f6751ffe00fadf69f1b63e573163349e06780a0ffffff", + "cborBytes": [ + 159, 27, 206, 4, 19, 146, 215, 181, 3, 181, 191, 27, 41, 66, 199, 30, 81, 249, 250, 213, 68, 2, 153, 250, 245, 27, + 141, 240, 161, 208, 86, 49, 54, 133, 27, 254, 204, 24, 104, 70, 39, 145, 63, 27, 196, 95, 235, 199, 86, 28, 225, + 78, 27, 22, 128, 147, 162, 71, 117, 146, 197, 27, 225, 161, 16, 38, 223, 137, 140, 232, 65, 166, 27, 238, 34, 246, + 47, 84, 196, 185, 91, 73, 123, 104, 104, 101, 241, 58, 36, 211, 184, 255, 74, 66, 1, 130, 1, 58, 248, 52, 85, 75, + 6, 16, 216, 102, 159, 27, 143, 103, 81, 255, 224, 15, 173, 246, 159, 27, 99, 229, 115, 22, 51, 73, 224, 103, 128, + 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 600, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "751599775358379409" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13817750808627578901" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53200e9cc8ac8441ee5c25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4509894ce8747d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7340965358102041833" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14506826989678886837" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f440af020b8880daa3a5" + } + ] + }, + "cborHex": "9fbf1b0a6e3803777fe5911bbfc283269f1d08154b53200e9cc8ac8441ee5c25474509894ce8747dff9f1b65e059195e1ed4e9d8669f1bc9529a4961dbffb580ffff4af440af020b8880daa3a5ff", + "cborBytes": [ + 159, 191, 27, 10, 110, 56, 3, 119, 127, 229, 145, 27, 191, 194, 131, 38, 159, 29, 8, 21, 75, 83, 32, 14, 156, 200, + 172, 132, 65, 238, 92, 37, 71, 69, 9, 137, 76, 232, 116, 125, 255, 159, 27, 101, 224, 89, 25, 94, 30, 212, 233, + 216, 102, 159, 27, 201, 82, 154, 73, 97, 219, 255, 181, 128, 255, 255, 74, 244, 64, 175, 2, 11, 136, 128, 218, + 163, 165, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 601, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13278151738179073375" + } + } + ] + }, + "cborHex": "9f1bb84578a7bbe6355fff", + "cborBytes": [159, 27, 184, 69, 120, 167, 187, 230, 53, 95, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 602, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15856726780802478237" + } + } + ] + }, + "cborHex": "9f1bdc0e68fe9e27b09dff", + "cborBytes": [159, 27, 220, 14, 104, 254, 158, 39, 176, 157, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 603, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11477267709225588204" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3e8d94d8d6" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9279077981415881248" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4937604652983008215" + } + } + ] + }, + "cborHex": "9f1b9f47722c2073d5ec9f453e8d94d8d6ffd8669f1b80c5e842ed713a2080ff1b4485e545765e3bd7ff", + "cborBytes": [ + 159, 27, 159, 71, 114, 44, 32, 115, 213, 236, 159, 69, 62, 141, 148, 216, 214, 255, 216, 102, 159, 27, 128, 197, + 232, 66, 237, 113, 58, 32, 128, 255, 27, 68, 133, 229, 69, 118, 94, 59, 215, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 604, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07ba417243a5a53c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b84dd936" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54e13a31c9eb9f7d7ebdd9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6443305589123916577" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97d02d92072f62648df3a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15894790827161975715" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4320274862010441159" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "824620814616427475" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6850597137136534669" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a95e8c19487c9a3204a2ef32" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3074871575099945241" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b944446e9f701ec61b0597" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "448b23dff20c538e02237a41" + } + } + ] + } + ] + }, + "cborHex": "9fbf4807ba417243a5a53c44b84dd9364b54e13a31c9eb9f7d7ebdd91b596b384b930523214b97d02d92072f62648df3a241c7ffd8669f1bdc95a40b08207ba380ff1b3bf4b318e22e9dc71b0b71a443099afbd3bf420a091b5f1235ccda54c48d4ca95e8c19487c9a3204a2ef321b2aac2367fbc731194bb944446e9f701ec61b05974c448b23dff20c538e02237a41ffff", + "cborBytes": [ + 159, 191, 72, 7, 186, 65, 114, 67, 165, 165, 60, 68, 184, 77, 217, 54, 75, 84, 225, 58, 49, 201, 235, 159, 125, + 126, 189, 217, 27, 89, 107, 56, 75, 147, 5, 35, 33, 75, 151, 208, 45, 146, 7, 47, 98, 100, 141, 243, 162, 65, 199, + 255, 216, 102, 159, 27, 220, 149, 164, 11, 8, 32, 123, 163, 128, 255, 27, 59, 244, 179, 24, 226, 46, 157, 199, 27, + 11, 113, 164, 67, 9, 154, 251, 211, 191, 66, 10, 9, 27, 95, 18, 53, 204, 218, 84, 196, 141, 76, 169, 94, 140, 25, + 72, 124, 154, 50, 4, 162, 239, 50, 27, 42, 172, 35, 103, 251, 199, 49, 25, 75, 185, 68, 68, 110, 159, 112, 30, + 198, 27, 5, 151, 76, 68, 139, 35, 223, 242, 12, 83, 142, 2, 35, 122, 65, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 605, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "1f1f278d9aadabcb856a05" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14626223102499825967" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "241791461859862380" + } + } + ] + }, + "cborHex": "9f804b1f1f278d9aadabcb856a051bcafac86b2e1d292f1b035b040db1e1276cff", + "cborBytes": [ + 159, 128, 75, 31, 31, 39, 141, 154, 173, 171, 203, 133, 106, 5, 27, 202, 250, 200, 107, 46, 29, 41, 47, 27, 3, 91, + 4, 13, 177, 225, 39, 108, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 606, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2972587275196747242" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "50ab4157ec415c34ae7cbf04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "267308762943606564" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e53c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14341723073639508621" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3704470038247803709" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15317933347555430211" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "450279374620574747" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "716351461914311158" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14848535324536166330" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15938607987663575082" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72608eaef45afb" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c890540276" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14214683993063500281" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6654f54c42c564ef4b19056e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3583440953367226539" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13866744358121328313" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6229671117640914229" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "333932954063857329" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10388111638693162298" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4771344323425046072" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17002516539745545851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17258581751688029624" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b2940c06099f2cdea9f9f4c50ab4157ec415c34ae7cbf041b03b5abe7549a4f2442e53cffd8669f1bc7080926574e6a8d9f1b3368ebdf66d68b3d1bd4943b38c226cf43ffff9f1b063fb6b49df1c41b1b09f0fddbf5bbf9f61bce109834edd157ba1bdd314f84b6e4182a4772608eaef45afbff45c8905402761bc544b3c770fb29f9ffff4c6654f54c42c564ef4b19056ebf1b31baf08fab0a68ab1bc070928648f94eb91b56743ce0127f55351b04a25e40a1c5e6b11b9029fc7f2f682d3a1b42373861ead38e381bebf512b5af3cae7b1bef82cca9cc6765b8ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 41, 64, 192, 96, 153, 242, 205, 234, 159, 159, 76, 80, 171, 65, 87, 236, 65, 92, 52, 174, + 124, 191, 4, 27, 3, 181, 171, 231, 84, 154, 79, 36, 66, 229, 60, 255, 216, 102, 159, 27, 199, 8, 9, 38, 87, 78, + 106, 141, 159, 27, 51, 104, 235, 223, 102, 214, 139, 61, 27, 212, 148, 59, 56, 194, 38, 207, 67, 255, 255, 159, + 27, 6, 63, 182, 180, 157, 241, 196, 27, 27, 9, 240, 253, 219, 245, 187, 249, 246, 27, 206, 16, 152, 52, 237, 209, + 87, 186, 27, 221, 49, 79, 132, 182, 228, 24, 42, 71, 114, 96, 142, 174, 244, 90, 251, 255, 69, 200, 144, 84, 2, + 118, 27, 197, 68, 179, 199, 112, 251, 41, 249, 255, 255, 76, 102, 84, 245, 76, 66, 197, 100, 239, 75, 25, 5, 110, + 191, 27, 49, 186, 240, 143, 171, 10, 104, 171, 27, 192, 112, 146, 134, 72, 249, 78, 185, 27, 86, 116, 60, 224, 18, + 127, 85, 53, 27, 4, 162, 94, 64, 161, 197, 230, 177, 27, 144, 41, 252, 127, 47, 104, 45, 58, 27, 66, 55, 56, 97, + 234, 211, 142, 56, 27, 235, 245, 18, 181, 175, 60, 174, 123, 27, 239, 130, 204, 169, 204, 103, 101, 184, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 607, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6801fe46049504000d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13281641463103809824" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12039811806537070181" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4133438775412145824" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15603822416691357364" + } + } + ] + } + ] + }, + "cborHex": "9f496801fe46049504000d9f1bb851de8aa266e9201ba716010c633236651b395cecaa95443ea01bd88be9d0bd2a66b4ffff", + "cborBytes": [ + 159, 73, 104, 1, 254, 70, 4, 149, 4, 0, 13, 159, 27, 184, 81, 222, 138, 162, 102, 233, 32, 27, 167, 22, 1, 12, 99, + 50, 54, 101, 27, 57, 92, 236, 170, 149, 68, 62, 160, 27, 216, 139, 233, 208, 189, 42, 102, 180, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 608, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "189018677737702452" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04" + } + ] + }, + "cborHex": "9f1b029f877c667844344104ff", + "cborBytes": [159, 27, 2, 159, 135, 124, 102, 120, 68, 52, 65, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 609, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05e95a808be372c489" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "da750a57" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ab7924379fce18" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5934204348234903032" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "531aea850b9a45203f4d8eb0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16967319906611403820" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17129189503913390159" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff49f4905e95a808be372c489ffffbf44da750a57414fff9f47ab7924379fce1805bf1b525a8769f91eadf84c531aea850b9a45203f4d8eb01beb78078eeffc9c2c1bedb71b19771b704fffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 73, 5, 233, 90, 128, 139, 227, 114, 196, 137, + 255, 255, 191, 68, 218, 117, 10, 87, 65, 79, 255, 159, 71, 171, 121, 36, 55, 159, 206, 24, 5, 191, 27, 82, 90, + 135, 105, 249, 30, 173, 248, 76, 83, 26, 234, 133, 11, 154, 69, 32, 63, 77, 142, 176, 27, 235, 120, 7, 142, 239, + 252, 156, 44, 27, 237, 183, 27, 25, 119, 27, 112, 79, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 610, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6769617052009833002" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8877825300538574039" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1323921205189995605" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3896" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3948559466395218882" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6516f4e60607756ce39354" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cad8d6bdec9598685acc" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17811436415681716055" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2103580433980008203" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f9361b5cb000626" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3015853360484421124" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3448962115552886062" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12825883621838457352" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7ce8a51ab97475174" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13160221414678231928" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10400914349337488928" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18130188764277188030" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17969698471024937443" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10229621139351445541" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9579468386831753060" + } + } + ] + }, + "cborHex": "9fbf1b5df282d78279222a1b7b345f12f893c4d71bffffffffffffffeb1b125f835259f4ec554238961b36cc19ea10fe33c24b6516f4e60607756ce393544acad8d6bdec9598685accffd8669f1bf72eef0d102a5f579fbf1b1d316b426bd7270b480f9361b5cb0006261b29da76a716578e041b2fdd2cc54d4f3d2e1bb1feb1331a2e8a0849c7ce8a51ab974751741bb6a27fa69b627b781b9057787e8b862e201bfb9b5e9f8d8525be1bf961318d465249e3ffffff1b8df6ea3a35dea0251b84f11bbe5e30df64ff", + "cborBytes": [ + 159, 191, 27, 93, 242, 130, 215, 130, 121, 34, 42, 27, 123, 52, 95, 18, 248, 147, 196, 215, 27, 255, 255, 255, + 255, 255, 255, 255, 235, 27, 18, 95, 131, 82, 89, 244, 236, 85, 66, 56, 150, 27, 54, 204, 25, 234, 16, 254, 51, + 194, 75, 101, 22, 244, 230, 6, 7, 117, 108, 227, 147, 84, 74, 202, 216, 214, 189, 236, 149, 152, 104, 90, 204, + 255, 216, 102, 159, 27, 247, 46, 239, 13, 16, 42, 95, 87, 159, 191, 27, 29, 49, 107, 66, 107, 215, 39, 11, 72, 15, + 147, 97, 181, 203, 0, 6, 38, 27, 41, 218, 118, 167, 22, 87, 142, 4, 27, 47, 221, 44, 197, 77, 79, 61, 46, 27, 177, + 254, 177, 51, 26, 46, 138, 8, 73, 199, 206, 138, 81, 171, 151, 71, 81, 116, 27, 182, 162, 127, 166, 155, 98, 123, + 120, 27, 144, 87, 120, 126, 139, 134, 46, 32, 27, 251, 155, 94, 159, 141, 133, 37, 190, 27, 249, 97, 49, 141, 70, + 82, 73, 227, 255, 255, 255, 27, 141, 246, 234, 58, 53, 222, 160, 37, 27, 132, 241, 27, 190, 94, 48, 223, 100, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 611, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4a818" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3a51aa6" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15152711966711820698" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15309023525615067641" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "570879700511519856" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9870022895637094714" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17419552707486476057" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17048422714619728794" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c35006" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7588191735785080940" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bb3d" + } + ] + } + ] + }, + "cborHex": "9fbf43e4a81844b3a51aa6ff1bfffffffffffffffd9fd8669f1bd2493f404fab319a9f1bd47493c92e6261f91b07ec2c101e7874701b88f95d87ab6be13affff9f1bf1beaee50bece7191bec982a21ed9c139aff43c35006ff1b694eac2e0306486c9f42bb3dffff", + "cborBytes": [ + 159, 191, 67, 228, 168, 24, 68, 179, 165, 26, 166, 255, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 216, 102, + 159, 27, 210, 73, 63, 64, 79, 171, 49, 154, 159, 27, 212, 116, 147, 201, 46, 98, 97, 249, 27, 7, 236, 44, 16, 30, + 120, 116, 112, 27, 136, 249, 93, 135, 171, 107, 225, 58, 255, 255, 159, 27, 241, 190, 174, 229, 11, 236, 231, 25, + 27, 236, 152, 42, 33, 237, 156, 19, 154, 255, 67, 195, 80, 6, 255, 27, 105, 78, 172, 46, 3, 6, 72, 108, 159, 66, + 187, 61, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 612, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8b2ed98277ea" + }, + { + "_tag": "ByteArray", + "bytearray": "dc2b481cd5bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13578977423718718729" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6802762479946408525" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ef7377474c4413" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11883664261545501803" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dd2d7d06417b76e4" + }, + { + "_tag": "ByteArray", + "bytearray": "23dc9d8351ee146bd026c7" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7078939553577317551" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f468b2ed98277ea46dc2b481cd5bc1bbc723805b9cd9d09ff9f1b5e68446ed48fa24d47ef7377474c44131ba4eb41aefb6ca46b48dd2d7d06417b76e44b23dc9d8351ee146bd026c7ff1b623d7204a57034afffff", + "cborBytes": [ + 159, 159, 159, 70, 139, 46, 217, 130, 119, 234, 70, 220, 43, 72, 28, 213, 188, 27, 188, 114, 56, 5, 185, 205, 157, + 9, 255, 159, 27, 94, 104, 68, 110, 212, 143, 162, 77, 71, 239, 115, 119, 71, 76, 68, 19, 27, 164, 235, 65, 174, + 251, 108, 164, 107, 72, 221, 45, 125, 6, 65, 123, 118, 228, 75, 35, 220, 157, 131, 81, 238, 20, 107, 208, 38, 199, + 255, 27, 98, 61, 114, 4, 165, 112, 52, 175, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 613, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10186924593590951310" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11431012943046442243" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "425e2559db6fce4f41be76cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14895423950213026926" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17238224833177335645" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3695033228492392955" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cf4c916f321fdf6e734d80" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "50e44e8722acc053" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b1660b43c7ff33" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4679580637704002515" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "626b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9808869766611888424" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "663c5797bcb12e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d609fb329a9abd443464b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5d4f776" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9791d09b173d87b8c6" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9560f017a19cda0a2db0" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15999936781815259254" + } + } + ] + }, + "cborHex": "9fbf1b8d5f39f1faaddd8e1b9ea31db5252cfd034c425e2559db6fce4f41be76cf1bceb72d29d34b146e41a91bef3a7a275bda375dffd8669f1b33476524e98dc9fb9f9f4bcf4c916f321fdf6e734d80ff4850e44e8722acc053ffff9f47b1660b43c7ff33a01b40f135cbe8249bd3bf42626b1b88201b1546f8692847663c5797bcb12e410441a74b6d609fb329a9abd443464b44c5d4f776499791d09b173d87b8c6ff4a9560f017a19cda0a2db0ff1bde0b31bb54ce2076ff", + "cborBytes": [ + 159, 191, 27, 141, 95, 57, 241, 250, 173, 221, 142, 27, 158, 163, 29, 181, 37, 44, 253, 3, 76, 66, 94, 37, 89, + 219, 111, 206, 79, 65, 190, 118, 207, 27, 206, 183, 45, 41, 211, 75, 20, 110, 65, 169, 27, 239, 58, 122, 39, 91, + 218, 55, 93, 255, 216, 102, 159, 27, 51, 71, 101, 36, 233, 141, 201, 251, 159, 159, 75, 207, 76, 145, 111, 50, 31, + 223, 110, 115, 77, 128, 255, 72, 80, 228, 78, 135, 34, 172, 192, 83, 255, 255, 159, 71, 177, 102, 11, 67, 199, + 255, 51, 160, 27, 64, 241, 53, 203, 232, 36, 155, 211, 191, 66, 98, 107, 27, 136, 32, 27, 21, 70, 248, 105, 40, + 71, 102, 60, 87, 151, 188, 177, 46, 65, 4, 65, 167, 75, 109, 96, 159, 179, 41, 169, 171, 212, 67, 70, 75, 68, 197, + 212, 247, 118, 73, 151, 145, 208, 155, 23, 61, 135, 184, 198, 255, 74, 149, 96, 240, 23, 161, 156, 218, 10, 45, + 176, 255, 27, 222, 11, 49, 187, 84, 206, 32, 118, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 614, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "843244599163242032" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8118506623499780355" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2618410645879344262" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18117031579283655011" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2657885104440624652" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6f2eb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6138446205892835889" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5807af6f7f3d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6144898815115559271" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "100773073377361144" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15348850296308303912" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4290346334646483007" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17744340575819943042" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65ae00311c82bf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18046423273902591464" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cdc5" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15947035614139590280" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60742251bd76a42b7613" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "781f38fce30a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2536508034974798143" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3875890937411019285" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14340301499154322031" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18113921082092569311" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1501080936147786650" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "99a1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8755455889550811789" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5156834548926067561" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee5151440bcb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11944410215706641545" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b0bb3ce7ec7e446301b70aabac2a85c41031b2456769c07bd4c861bfb6ca03bb3bc8963ffbf1b24e2b46b9ffc460c43e6f2eb1b5530244d27163a31465807af6f7f3d1b554710ea4fae81671b016604938994fcf81bd5021205d61b08281b3b8a5f429800b83f1bf6408fbd7b4c4c824765ae00311c82bf1bfa71c65a834e4de842cdc5ff9fa0bf1bdd4f4066694b26884a60742251bd76a42b761346781f38fce30a1b23337c9e6a98d13fffffd8669f1b35c9ee45b08a22159f1bc702fc3c3d18526f1bfb619340a39642dfd8669f1b14d4e9288a331b9a9f4299a11b7981a0be3f47228d1b4790c1b33e33336946ee5151440bcb1ba5c311ce96bdc489ffffffffff", + "cborBytes": [ + 159, 191, 27, 11, 179, 206, 126, 199, 228, 70, 48, 27, 112, 170, 186, 194, 168, 92, 65, 3, 27, 36, 86, 118, 156, + 7, 189, 76, 134, 27, 251, 108, 160, 59, 179, 188, 137, 99, 255, 191, 27, 36, 226, 180, 107, 159, 252, 70, 12, 67, + 230, 242, 235, 27, 85, 48, 36, 77, 39, 22, 58, 49, 70, 88, 7, 175, 111, 127, 61, 27, 85, 71, 16, 234, 79, 174, + 129, 103, 27, 1, 102, 4, 147, 137, 148, 252, 248, 27, 213, 2, 18, 5, 214, 27, 8, 40, 27, 59, 138, 95, 66, 152, 0, + 184, 63, 27, 246, 64, 143, 189, 123, 76, 76, 130, 71, 101, 174, 0, 49, 28, 130, 191, 27, 250, 113, 198, 90, 131, + 78, 77, 232, 66, 205, 197, 255, 159, 160, 191, 27, 221, 79, 64, 102, 105, 75, 38, 136, 74, 96, 116, 34, 81, 189, + 118, 164, 43, 118, 19, 70, 120, 31, 56, 252, 227, 10, 27, 35, 51, 124, 158, 106, 152, 209, 63, 255, 255, 216, 102, + 159, 27, 53, 201, 238, 69, 176, 138, 34, 21, 159, 27, 199, 2, 252, 60, 61, 24, 82, 111, 27, 251, 97, 147, 64, 163, + 150, 66, 223, 216, 102, 159, 27, 20, 212, 233, 40, 138, 51, 27, 154, 159, 66, 153, 161, 27, 121, 129, 160, 190, + 63, 71, 34, 141, 27, 71, 144, 193, 179, 62, 51, 51, 105, 70, 238, 81, 81, 68, 11, 203, 27, 165, 195, 17, 206, 150, + 189, 196, 137, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 615, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13572968782992598185" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fcfa" + }, + { + "_tag": "ByteArray", + "bytearray": "dbf869da" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "720e22fcce4aa62a3536e2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5091537897772662022" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10576681570723829516" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cd1918" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05eaeada308d05830a27" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13766147535450252060" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "179443207305490342" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adf1954462949d444ba90dd6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4034032384480323257" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9393132358763206081" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10948643261653468898" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10425702362226288403" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13021223955966893199" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df8de5fc06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14661214735486296610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + ] + }, + "cborHex": "9fd8669f1bbc5cdf3209bd64a99f9f42fcfa44dbf869daffd90501809f4b720e22fcce4aa62a3536e21b46a8c6bded2dbd061b92c7ebd9d56a170c43cd1918ff80ffff9f1bffffffffffffffefd8669f1bfffffffffffffffc9f4a05eaeada308d05830a27ffffbf071bbf0b2e3f5021a31c1b027d82a574ccefa64cadf1954462949d444ba90dd61b37fbc314995f26b91b825b1c1d044ed5c11b97f16509bf5446e21b90af890f8a72e7131bb4b4ae32d4369c8f45df8de5fc061bcb77191f9c6222221bfffffffffffffff5ffff1bfffffffffffffff2ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 188, 92, 223, 50, 9, 189, 100, 169, 159, 159, 66, 252, 250, 68, 219, 248, 105, 218, 255, + 217, 5, 1, 128, 159, 75, 114, 14, 34, 252, 206, 74, 166, 42, 53, 54, 226, 27, 70, 168, 198, 189, 237, 45, 189, 6, + 27, 146, 199, 235, 217, 213, 106, 23, 12, 67, 205, 25, 24, 255, 128, 255, 255, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 239, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 74, 5, 234, 234, 218, 48, 141, 5, + 131, 10, 39, 255, 255, 191, 7, 27, 191, 11, 46, 63, 80, 33, 163, 28, 27, 2, 125, 130, 165, 116, 204, 239, 166, 76, + 173, 241, 149, 68, 98, 148, 157, 68, 75, 169, 13, 214, 27, 55, 251, 195, 20, 153, 95, 38, 185, 27, 130, 91, 28, + 29, 4, 78, 213, 193, 27, 151, 241, 101, 9, 191, 84, 70, 226, 27, 144, 175, 137, 15, 138, 114, 231, 19, 27, 180, + 180, 174, 50, 212, 54, 156, 143, 69, 223, 141, 229, 252, 6, 27, 203, 119, 25, 31, 156, 98, 34, 34, 27, 255, 255, + 255, 255, 255, 255, 255, 245, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 616, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9228591439616500638" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "67ee2ea1f7436fd210" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97c9c20a" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cc22baff57" + }, + { + "_tag": "ByteArray", + "bytearray": "2dc8bf23d8e7" + }, + { + "_tag": "ByteArray", + "bytearray": "318b86ee777b" + }, + { + "_tag": "ByteArray", + "bytearray": "785364258ccad4" + }, + { + "_tag": "ByteArray", + "bytearray": "dc2465" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "85d74f39589aa5d8d7f4e6" + }, + { + "_tag": "ByteArray", + "bytearray": "48fdb8" + }, + { + "_tag": "ByteArray", + "bytearray": "eff30a48876b8e3b186e942f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8426709823037648549" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6732730414741853066" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12580727914874533407" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b80128b04e78d639e9fbf4967ee2ea1f7436fd2104497c9c20aff9f45cc22baff57462dc8bf23d8e746318b86ee777b47785364258ccad443dc2465ff9f4b85d74f39589aa5d8d7f4e64348fdb84ceff30a48876b8e3b186e942fffd8669f1b74f1afeffb742ea59f1b5d6f76a40328138a1bae97b9620deff61fffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 128, 18, 139, 4, 231, 141, 99, 158, 159, 191, 73, 103, 238, 46, 161, 247, 67, 111, 210, + 16, 68, 151, 201, 194, 10, 255, 159, 69, 204, 34, 186, 255, 87, 70, 45, 200, 191, 35, 216, 231, 70, 49, 139, 134, + 238, 119, 123, 71, 120, 83, 100, 37, 140, 202, 212, 67, 220, 36, 101, 255, 159, 75, 133, 215, 79, 57, 88, 154, + 165, 216, 215, 244, 230, 67, 72, 253, 184, 76, 239, 243, 10, 72, 135, 107, 142, 59, 24, 110, 148, 47, 255, 216, + 102, 159, 27, 116, 241, 175, 239, 251, 116, 46, 165, 159, 27, 93, 111, 118, 164, 3, 40, 19, 138, 27, 174, 151, + 185, 98, 13, 239, 246, 31, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 617, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5650950670361021402" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "399894759808626491" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15174953416946976707" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13549469138829983672" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a58" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "544f7d64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18275858248531997633" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6177b3ccca857e65df0ca9b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66107ba7fd73f2" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12053075543227448684" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1f6e9a47b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6327407386290872187" + } + }, + { + "_tag": "ByteArray", + "bytearray": "380706b3" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e11b55f37b025efcc70dd260" + } + ] + } + ] + }, + "cborHex": "9f9f1b4e6c35b1d61fcbdabf1b058cb62a51eeef3b1bd29843bb7c3987c31bbc096264c3143fb8420a5844544f7d641bfda0e43f552473c14c6177b3ccca857e65df0ca9b84766107ba7fd73f2ff1ba7452058bd053d6c9f451f6e9a47b61b57cf777e690cdf7b44380706b3ff4ce11b55f37b025efcc70dd260ffff", + "cborBytes": [ + 159, 159, 27, 78, 108, 53, 177, 214, 31, 203, 218, 191, 27, 5, 140, 182, 42, 81, 238, 239, 59, 27, 210, 152, 67, + 187, 124, 57, 135, 195, 27, 188, 9, 98, 100, 195, 20, 63, 184, 66, 10, 88, 68, 84, 79, 125, 100, 27, 253, 160, + 228, 63, 85, 36, 115, 193, 76, 97, 119, 179, 204, 202, 133, 126, 101, 223, 12, 169, 184, 71, 102, 16, 123, 167, + 253, 115, 242, 255, 27, 167, 69, 32, 88, 189, 5, 61, 108, 159, 69, 31, 110, 154, 71, 182, 27, 87, 207, 119, 126, + 105, 12, 223, 123, 68, 56, 7, 6, 179, 255, 76, 225, 27, 85, 243, 123, 2, 94, 252, 199, 13, 210, 96, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 618, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "df25" + } + ] + }, + "cborHex": "9f42df25ff", + "cborBytes": [159, 66, 223, 37, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 619, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13585419893165916812" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "dc0456b671743354" + } + ] + }, + "cborHex": "9f1bbc891b6a08ae028cd8669f1bfffffffffffffffb80ff48dc0456b671743354ff", + "cborBytes": [ + 159, 27, 188, 137, 27, 106, 8, 174, 2, 140, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 128, 255, + 72, 220, 4, 86, 182, 113, 116, 51, 84, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 620, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6979606425816343647" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b2e240e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1201225784484270673" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "767d23d4e2f517ae54" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8445915969916682492" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5256014077745933236" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7422950194955904095" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c55e0c55ab25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ad64537c34f2961" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "90da7f6fbf7c13" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9501698193753272536" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2453646631725704950" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15636752620770565672" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3199603207294383674" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b60dc8b1092d1245f9fbf442b2e240e1b10ab9c7c93399251ff9f49767d23d4e2f517ae541b7535ebd385aec0fcffbf1b48f11cf4c67fabb41b67039ddfb3c3645f46c55e0c55ab25488ad64537c34f2961ff4790da7f6fbf7c13ffffbf1b83dcd02a41a270d81b220d1a9c905826f61bd900e7a959b01e281b2c67462a30fb763affff", + "cborBytes": [ + 159, 216, 102, 159, 27, 96, 220, 139, 16, 146, 209, 36, 95, 159, 191, 68, 43, 46, 36, 14, 27, 16, 171, 156, 124, + 147, 57, 146, 81, 255, 159, 73, 118, 125, 35, 212, 226, 245, 23, 174, 84, 27, 117, 53, 235, 211, 133, 174, 192, + 252, 255, 191, 27, 72, 241, 28, 244, 198, 127, 171, 180, 27, 103, 3, 157, 223, 179, 195, 100, 95, 70, 197, 94, 12, + 85, 171, 37, 72, 138, 214, 69, 55, 195, 79, 41, 97, 255, 71, 144, 218, 127, 111, 191, 124, 19, 255, 255, 191, 27, + 131, 220, 208, 42, 65, 162, 112, 216, 27, 34, 13, 26, 156, 144, 88, 38, 246, 27, 217, 0, 231, 169, 89, 176, 30, + 40, 27, 44, 103, 70, 42, 48, 251, 118, 58, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 621, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7065588263809315572" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7528971273328083973" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1179518212658100257" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10454475600132859607" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "353388551442454343" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4dd6c91cfbaf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16287201740793483116" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19b57931dee6b22428fa" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5513839649667797323" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18210926078074232836" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9129291123076288460" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c29347740f4495ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11851931892030190304" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e95adeb991e4cab303" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12282353820447728791" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6912" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e7a0070fd9c12232" + }, + { + "_tag": "ByteArray", + "bytearray": "0eb8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5052683731744702474" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "839309dc4a6515ac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64a4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8458ecb44f68a68323c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8591099043613721857" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbfa995d0621dade1c5f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14194628126047649787" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "77e1fe4c21046a" + } + ] + }, + "cborHex": "9fd8669f1b620e03174185f2f49fbf1b687c477b9ed744051b105e7d90a796f8211b9115c22b0ae866d71b04e77d03e46ad747464dd6c91cfbaf1be207c3b0a11e8f6c41e64a19b57931dee6b22428faffbf1b4c8517f2a2e9d14b1bfcba34c84a8320041b7eb1c1e84a16cfcc48c29347740f4495ba1ba47a8542f69532e049e95adeb991e4cab3031baa73afb99972e497426912ff80ffff9f48e7a0070fd9c12232420eb8ff1b461ebd157109c00abf48839309dc4a6515ac4264a44a8458ecb44f68a68323c61b7739b71004cb45014afbfa995d0621dade1c5f1bc4fd731303d6bffbff4777e1fe4c21046aff", + "cborBytes": [ + 159, 216, 102, 159, 27, 98, 14, 3, 23, 65, 133, 242, 244, 159, 191, 27, 104, 124, 71, 123, 158, 215, 68, 5, 27, + 16, 94, 125, 144, 167, 150, 248, 33, 27, 145, 21, 194, 43, 10, 232, 102, 215, 27, 4, 231, 125, 3, 228, 106, 215, + 71, 70, 77, 214, 201, 28, 251, 175, 27, 226, 7, 195, 176, 161, 30, 143, 108, 65, 230, 74, 25, 181, 121, 49, 222, + 230, 178, 36, 40, 250, 255, 191, 27, 76, 133, 23, 242, 162, 233, 209, 75, 27, 252, 186, 52, 200, 74, 131, 32, 4, + 27, 126, 177, 193, 232, 74, 22, 207, 204, 72, 194, 147, 71, 116, 15, 68, 149, 186, 27, 164, 122, 133, 66, 246, + 149, 50, 224, 73, 233, 90, 222, 185, 145, 228, 202, 179, 3, 27, 170, 115, 175, 185, 153, 114, 228, 151, 66, 105, + 18, 255, 128, 255, 255, 159, 72, 231, 160, 7, 15, 217, 193, 34, 50, 66, 14, 184, 255, 27, 70, 30, 189, 21, 113, 9, + 192, 10, 191, 72, 131, 147, 9, 220, 74, 101, 21, 172, 66, 100, 164, 74, 132, 88, 236, 180, 79, 104, 166, 131, 35, + 198, 27, 119, 57, 183, 16, 4, 203, 69, 1, 74, 251, 250, 153, 93, 6, 33, 218, 222, 28, 95, 27, 196, 253, 115, 19, + 3, 214, 191, 251, 255, 71, 119, 225, 254, 76, 33, 4, 106, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 622, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13804004995118957160" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "148e793a3da42d07f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13083298847786285975" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6766028302323993324" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12205137978460711833" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "75ac02cda12a1b57a4d162" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b1bf7c6" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8669f1bbf91ad6803c882689f49148e793a3da42d07f91bb59136fbd8943b97d8669f1b5de5c2e49c42caec9f1ba9615c5368c7ab99ffffbf4b75ac02cda12a1b57a4d162449b1bf7c6ff80ffffa0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 191, 145, 173, 104, 3, 200, 130, 104, 159, 73, 20, 142, 121, 58, 61, 164, 45, 7, 249, 27, + 181, 145, 54, 251, 216, 148, 59, 151, 216, 102, 159, 27, 93, 229, 194, 228, 156, 66, 202, 236, 159, 27, 169, 97, + 92, 83, 104, 199, 171, 153, 255, 255, 191, 75, 117, 172, 2, 205, 161, 42, 27, 87, 164, 209, 98, 68, 155, 27, 247, + 198, 255, 128, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 623, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1434868180359987006" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e285dfb0abf9dd7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14343444117709165128" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1133914970214842084" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d4696bedd4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11820629143487623299" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11421601345636113274" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11010294365058540616" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5801683088515629152" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d83ec7d997683e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "761797709323247362" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b9a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10810518121425229990" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d63b70854282cdd2181bd" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9321256099374191737" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14034704733642790595" + } + } + ] + } + ] + }, + "cborHex": "9f1b13e9ad01fdde3f3e9f9f48e285dfb0abf9dd7b1bc70e266e23b892481b0fbc79a85d273ee445d4696bedd41ba40b4f93df35b083ff41e11b9e81ade8dcc39b7a1b98cc6c63d5cca448d8669f1b5083b807c65d80609f47d83ec7d997683e1b0a9272fafeeb1f02422b9a1b9606acf4717958a64b5d63b70854282cdd2181bdffffffd8669f1b815bc10947a454799f1bc2c54998a04596c3ffffff", + "cborBytes": [ + 159, 27, 19, 233, 173, 1, 253, 222, 63, 62, 159, 159, 72, 226, 133, 223, 176, 171, 249, 221, 123, 27, 199, 14, 38, + 110, 35, 184, 146, 72, 27, 15, 188, 121, 168, 93, 39, 62, 228, 69, 212, 105, 107, 237, 212, 27, 164, 11, 79, 147, + 223, 53, 176, 131, 255, 65, 225, 27, 158, 129, 173, 232, 220, 195, 155, 122, 27, 152, 204, 108, 99, 213, 204, 164, + 72, 216, 102, 159, 27, 80, 131, 184, 7, 198, 93, 128, 96, 159, 71, 216, 62, 199, 217, 151, 104, 62, 27, 10, 146, + 114, 250, 254, 235, 31, 2, 66, 43, 154, 27, 150, 6, 172, 244, 113, 121, 88, 166, 75, 93, 99, 183, 8, 84, 40, 44, + 221, 33, 129, 189, 255, 255, 255, 216, 102, 159, 27, 129, 91, 193, 9, 71, 164, 84, 121, 159, 27, 194, 197, 73, + 152, 160, 69, 150, 195, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 624, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2966672122039517490" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5552857621245959781" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf1b292bbc93af3841321b4d0fb69612af9e65ff80ff", + "cborBytes": [ + 159, 191, 27, 41, 43, 188, 147, 175, 56, 65, 50, 27, 77, 15, 182, 150, 18, 175, 158, 101, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 625, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a1911da387a1c1238e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "261434" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38d9e7a2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10152439442107147810" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77235fad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2bad93881660b3b4f36" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a7a5181512d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d47f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad" + } + } + ] + } + ] + }, + "cborHex": "9f49a1911da387a1c1238ebf4326143441a74438d9e7a21b8ce4b5e1f67626224477235fad410c4ad2bad93881660b3b4f36467a7a5181512d42d47f41adffff", + "cborBytes": [ + 159, 73, 161, 145, 29, 163, 135, 161, 193, 35, 142, 191, 67, 38, 20, 52, 65, 167, 68, 56, 217, 231, 162, 27, 140, + 228, 181, 225, 246, 118, 38, 34, 68, 119, 35, 95, 173, 65, 12, 74, 210, 186, 217, 56, 129, 102, 11, 59, 79, 54, + 70, 122, 122, 81, 129, 81, 45, 66, 212, 127, 65, 173, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 626, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10723461485137770952" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15133152750845198956" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7725771916858624002" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9220270299858214453" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "999674690053957402" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17930998347577931626" + } + }, + { + "_tag": "ByteArray", + "bytearray": "69e96c9e7536cf1eea24" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d542289a8f42d42ef7d04030" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b94d16367c83839c89fd8669f1bd203c23f7dda826c9f1b6b3774a0200c08021b7ff4fafc94221e351b0ddf8ed5879d671a1bf8d7b3fe9f7fb76a4a69e96c9e7536cf1eea24ffff4cd542289a8f42d42ef7d04030ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 148, 209, 99, 103, 200, 56, 57, 200, 159, 216, 102, 159, 27, 210, 3, 194, 63, 125, 218, + 130, 108, 159, 27, 107, 55, 116, 160, 32, 12, 8, 2, 27, 127, 244, 250, 252, 148, 34, 30, 53, 27, 13, 223, 142, + 213, 135, 157, 103, 26, 27, 248, 215, 179, 254, 159, 127, 183, 106, 74, 105, 233, 108, 158, 117, 54, 207, 30, 234, + 36, 255, 255, 76, 213, 66, 40, 154, 143, 66, 212, 46, 247, 208, 64, 48, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 627, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "1167b4e339c50828efb6" + }, + { + "_tag": "ByteArray", + "bytearray": "bc95255a4c" + } + ] + }, + "cborHex": "9fa04a1167b4e339c50828efb645bc95255a4cff", + "cborBytes": [159, 160, 74, 17, 103, 180, 227, 57, 197, 8, 40, 239, 182, 69, 188, 149, 37, 90, 76, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 628, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5769923480299686870" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "162a182a22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09233d0cdb178ac2ded4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5df34dd4e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec6d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1149378834326092358" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eaa65a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8538585507962815846" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5927fd4b3397a1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10717563599863805752" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4181666766269991005" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4f18936ee3" + }, + { + "_tag": "ByteArray", + "bytearray": "6ef8c7a6ab8c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2043563544003283584" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9a4a" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b5012e2d5c072cbd69fbf45162a182a224a09233d0cdb178ac2ded4455df34dd4e842ec6d41c21b0ff369f5cc5bfa4643eaa65a1b767f2647b66c0566ff475927fd4b3397a19f1b94bc6f4f5b89f7381b3a0843c4bc94485dff9f454f18936ee3466ef8c7a6ab8c1b1c5c32374c410a80ff429a4affffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 80, 18, 226, 213, 192, 114, 203, 214, 159, 191, 69, 22, 42, 24, 42, 34, 74, 9, 35, 61, 12, + 219, 23, 138, 194, 222, 212, 69, 93, 243, 77, 212, 232, 66, 236, 109, 65, 194, 27, 15, 243, 105, 245, 204, 91, + 250, 70, 67, 234, 166, 90, 27, 118, 127, 38, 71, 182, 108, 5, 102, 255, 71, 89, 39, 253, 75, 51, 151, 161, 159, + 27, 148, 188, 111, 79, 91, 137, 247, 56, 27, 58, 8, 67, 196, 188, 148, 72, 93, 255, 159, 69, 79, 24, 147, 110, + 227, 70, 110, 248, 199, 166, 171, 140, 27, 28, 92, 50, 55, 76, 65, 10, 128, 255, 66, 154, 74, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 629, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15152644388954498084" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0591f9ef" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4853637847403100018" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11987558501842599061" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5469022192630686702" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c296c122f54f69274" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf9ce451e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4045253399916036677" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bd24901ca2372e424440591f9ef9fa0bf1b435b95e812da77721ba65c5cf1d28abc951b4be5deb5447ae3ee493c296c122f54f6927445cf9ce451e81b3823a088d86fc245ffffff", + "cborBytes": [ + 159, 27, 210, 73, 1, 202, 35, 114, 228, 36, 68, 5, 145, 249, 239, 159, 160, 191, 27, 67, 91, 149, 232, 18, 218, + 119, 114, 27, 166, 92, 92, 241, 210, 138, 188, 149, 27, 75, 229, 222, 181, 68, 122, 227, 238, 73, 60, 41, 108, 18, + 47, 84, 246, 146, 116, 69, 207, 156, 228, 81, 232, 27, 56, 35, 160, 136, 216, 111, 194, 69, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 630, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1505822213244786713" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9887832096582165511" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16772245450102157573" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6989271987171829917" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15194139824881888131" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e33d0f2d75b2a304b310cac4" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14165627458008488068" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc03" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b14e5c153235918199f1b8938a2e7637c64071be8c2fc5fab0031051b60fee1d771f7289dffffbf1bd2dc6dab31b36b834ce33d0f2d75b2a304b310cac4ff80ffbf0d1bc4966b1ecf1d98841bfffffffffffffffb42fc03ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 20, 229, 193, 83, 35, 89, 24, 25, 159, 27, 137, 56, 162, 231, 99, 124, 100, 7, 27, + 232, 194, 252, 95, 171, 0, 49, 5, 27, 96, 254, 225, 215, 113, 247, 40, 157, 255, 255, 191, 27, 210, 220, 109, 171, + 49, 179, 107, 131, 76, 227, 61, 15, 45, 117, 178, 163, 4, 179, 16, 202, 196, 255, 128, 255, 191, 13, 27, 196, 150, + 107, 30, 207, 29, 152, 132, 27, 255, 255, 255, 255, 255, 255, 255, 251, 66, 252, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 631, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9430191040530446954" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14958209049786974597" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13249700364100642666" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0724" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "ByteArray", + "bytearray": "952456931fb0a011ccdadb" + } + ] + } + ] + } + ] + }, + "cborHex": "9f80d8669f1b82dec4c9bee37a6a9fd8669f1bcf963be0f89601859f1bb7e06447fe95276a420724044b952456931fb0a011ccdadbffffffffff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 130, 222, 196, 201, 190, 227, 122, 106, 159, 216, 102, 159, 27, 207, 150, 59, 224, + 248, 150, 1, 133, 159, 27, 183, 224, 100, 71, 254, 149, 39, 106, 66, 7, 36, 4, 75, 149, 36, 86, 147, 31, 176, 160, + 17, 204, 218, 219, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 632, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6700426573322519318" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15050470175036326902" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6235232146387539758" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11659063233802972503" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11163786792827818494" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "143825" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73fdf2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a73cd2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7978b63bb8d39e12" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4600a195b9ce5d422c339" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1028228588091590040" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb99520f8164" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17557721977012048478" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb7152e8827973968d34" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7a481" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "947cc4" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7792131007623329432" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16953902353889255591" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "281628676621638839" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d13f0e14f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3130321430812900103" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17892909692659516812" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10348459312367347618" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9160999316032171353" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18359219383948004136" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8501463032389824267" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a5199842dbc862b79e6a570" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2185144530424619027" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "561b840ec91e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6933829758044761844" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3b49e08" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4077868892250416836" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f410b1b5cfcb277d27a0316d8669f1bd0de02e225a6c3f69fd8669f1b5687fe99f986972e9f1ba1cd503d20a4ad571b9aedbcf096b311feffffbf431438254373fdf243a73cd2487978b63bb8d39e124bb4600a195b9ce5d422c3391b0e450073fd19c59846bb99520f81641bf3a98f1d00df525e42ca384acb7152e8827973968d3443f7a48143947cc4ff80ffff1b6c2335ddf0b1f698d8669f1beb485c5d803a60a79fbf1b03e88bca0c989cb7457d13f0e14f1b2b7122c194653b071bf8506290951d458c1b8f9d1cea863d27a21b7f22685743b1ad591bfec90cc225afcb281b75fb4395d4b5ef0bffbf4c2a5199842dbc862b79e6a5701b1e53315f7ed8e01346561b840ec91e1b6039e96d8d4a6ef444e3b49e081b38978026eb33a6c4ffffffff", + "cborBytes": [ + 159, 65, 11, 27, 92, 252, 178, 119, 210, 122, 3, 22, 216, 102, 159, 27, 208, 222, 2, 226, 37, 166, 195, 246, 159, + 216, 102, 159, 27, 86, 135, 254, 153, 249, 134, 151, 46, 159, 27, 161, 205, 80, 61, 32, 164, 173, 87, 27, 154, + 237, 188, 240, 150, 179, 17, 254, 255, 255, 191, 67, 20, 56, 37, 67, 115, 253, 242, 67, 167, 60, 210, 72, 121, + 120, 182, 59, 184, 211, 158, 18, 75, 180, 96, 10, 25, 91, 156, 229, 212, 34, 195, 57, 27, 14, 69, 0, 115, 253, 25, + 197, 152, 70, 187, 153, 82, 15, 129, 100, 27, 243, 169, 143, 29, 0, 223, 82, 94, 66, 202, 56, 74, 203, 113, 82, + 232, 130, 121, 115, 150, 141, 52, 67, 247, 164, 129, 67, 148, 124, 196, 255, 128, 255, 255, 27, 108, 35, 53, 221, + 240, 177, 246, 152, 216, 102, 159, 27, 235, 72, 92, 93, 128, 58, 96, 167, 159, 191, 27, 3, 232, 139, 202, 12, 152, + 156, 183, 69, 125, 19, 240, 225, 79, 27, 43, 113, 34, 193, 148, 101, 59, 7, 27, 248, 80, 98, 144, 149, 29, 69, + 140, 27, 143, 157, 28, 234, 134, 61, 39, 162, 27, 127, 34, 104, 87, 67, 177, 173, 89, 27, 254, 201, 12, 194, 37, + 175, 203, 40, 27, 117, 251, 67, 149, 212, 181, 239, 11, 255, 191, 76, 42, 81, 153, 132, 45, 188, 134, 43, 121, + 230, 165, 112, 27, 30, 83, 49, 95, 126, 216, 224, 19, 70, 86, 27, 132, 14, 201, 30, 27, 96, 57, 233, 109, 141, 74, + 110, 244, 68, 227, 180, 158, 8, 27, 56, 151, 128, 38, 235, 51, 166, 196, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 633, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff013c010500fbfd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50eefd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2fb511fbc41b9d3352435" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fb9" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17708882752899913512" + } + } + ] + }, + "cborHex": "9fbf410b48ff013c010500fbfd4350eefd074be2fb511fbc41b9d3352435426fb9ffbf1bffffffffffffffff03ff1bf5c29709bfa41728ff", + "cborBytes": [ + 159, 191, 65, 11, 72, 255, 1, 60, 1, 5, 0, 251, 253, 67, 80, 238, 253, 7, 75, 226, 251, 81, 31, 188, 65, 185, 211, + 53, 36, 53, 66, 111, 185, 255, 191, 27, 255, 255, 255, 255, 255, 255, 255, 255, 3, 255, 27, 245, 194, 151, 9, 191, + 164, 23, 40, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 634, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13562394992731923523" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8111020007046796463" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12632099395733063491" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14627631546407456570" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17508285808062751250" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14837868078680852639" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6528198461221407745" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16975090218622995744" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "deb6" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10564438926108639313" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "278980740941612423" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "769c448bce99be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16947008395441774484" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7187235746832372522" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13055362156411929261" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12173227658877925465" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d01439b5450c3f4eca21cc93" + }, + { + "_tag": "ByteArray", + "bytearray": "78ddca0764f14219bfa48c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "344000195434370813" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17896185227839206187" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15671814442056907369" + } + } + ] + }, + "cborHex": "9fd8669f1bbc374e63a552a44380ffbf1b709021b8ee1c54af1baf4e3b79021887431bcaffc96414ea0f3a1bf2f9ed2df797e2121bcdeab26735e1489f1b5a98d1e9a05a8c011beb93a29daf3b4d2042deb6ffd8669f1b929c6d3b0203c0519f1b03df23817b0005879f47769c448bce99be1beb2fde58b7de9f94ffffff9f1b63be30d506eed32ad8669f1bb52df6b60302c2ad9f1ba8effe0f2960f8594cd01439b5450c3f4eca21cc934b78ddca0764f14219bfa48cffff1b04c6225aeb87d6fd1bf85c05a58bf2f32bff1bd97d7833c4a37a69ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 188, 55, 78, 99, 165, 82, 164, 67, 128, 255, 191, 27, 112, 144, 33, 184, 238, 28, 84, 175, + 27, 175, 78, 59, 121, 2, 24, 135, 67, 27, 202, 255, 201, 100, 20, 234, 15, 58, 27, 242, 249, 237, 45, 247, 151, + 226, 18, 27, 205, 234, 178, 103, 53, 225, 72, 159, 27, 90, 152, 209, 233, 160, 90, 140, 1, 27, 235, 147, 162, 157, + 175, 59, 77, 32, 66, 222, 182, 255, 216, 102, 159, 27, 146, 156, 109, 59, 2, 3, 192, 81, 159, 27, 3, 223, 35, 129, + 123, 0, 5, 135, 159, 71, 118, 156, 68, 139, 206, 153, 190, 27, 235, 47, 222, 88, 183, 222, 159, 148, 255, 255, + 255, 159, 27, 99, 190, 48, 213, 6, 238, 211, 42, 216, 102, 159, 27, 181, 45, 246, 182, 3, 2, 194, 173, 159, 27, + 168, 239, 254, 15, 41, 96, 248, 89, 76, 208, 20, 57, 181, 69, 12, 63, 78, 202, 33, 204, 147, 75, 120, 221, 202, 7, + 100, 241, 66, 25, 191, 164, 140, 255, 255, 27, 4, 198, 34, 90, 235, 135, 214, 253, 27, 248, 92, 5, 165, 139, 242, + 243, 43, 255, 27, 217, 125, 120, 51, 196, 163, 122, 105, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 635, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6d" + } + ] + }, + "cborHex": "9f416dff", + "cborBytes": [159, 65, 109, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 636, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0200febe0e" + } + ] + }, + "cborHex": "9f450200febe0eff", + "cborBytes": [159, 69, 2, 0, 254, 190, 14, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 637, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10963724098726061910" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "03bf31f8d3fbd7bfe703bcf9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "36dd656560c2a870d4a280" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0604" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a4b874d4d54917b1f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70eb0ea58ee9151cd68706f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6345386388425754636" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "719180471682152834" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16583064330111579485" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e37282dc8" + }, + { + "_tag": "ByteArray", + "bytearray": "cf44f252a578e27d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15443431292513074231" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14840812531568274248" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3097d54f2681c3c1ce" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f77b8165c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20cabc9e43aa7d2dc4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa969b2b24ee56" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ba52e8927be1b97" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2724e2d403" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c9e63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14518137176680879575" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "346327789103588647" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9fc070d01e230" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bb1431608" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6841b00a32342b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0cefe32ec2ba340a45fd28f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16025665960650489649" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9482e86b5e1dd9f886d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b9826f8fabff4e7569f4c03bf31f8d3fbd7bfe703bcf9bf4b36dd656560c2a870d4a280420604499a4b874d4d54917b1f1bffffffffffffffefffbf4163064c70eb0ea58ee9151cd68706f61b580f574d0cb7480cffffffd8669f1b09fb0ad4200339829f9f1be622e125bbc0755d459e37282dc848cf44f252a578e27dffd8669f1bd65216f00f64bc3780ffbf4217b51bcdf5285e124aeb48ff493097d54f2681c3c1ceffffbf4113451f77b8165c4920cabc9e43aa7d2dc447fa969b2b24ee56485ba52e8927be1b97452724e2d403438c9e631bc97ac8d78074d5d7ffbf1b04ce674a0d5da52747d9fc070d01e230ff9fbf452bb1431608476841b00a32342b4ca0cefe32ec2ba340a45fd28f1bde669a4899a43f314aa9482e86b5e1dd9f886d1bfffffffffffffffaff1bfffffffffffffffcffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 152, 38, 248, 250, 191, 244, 231, 86, 159, 76, 3, 191, 49, 248, 211, 251, 215, 191, 231, + 3, 188, 249, 191, 75, 54, 221, 101, 101, 96, 194, 168, 112, 212, 162, 128, 66, 6, 4, 73, 154, 75, 135, 77, 77, 84, + 145, 123, 31, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255, 191, 65, 99, 6, 76, 112, 235, 14, 165, 142, 233, + 21, 28, 214, 135, 6, 246, 27, 88, 15, 87, 77, 12, 183, 72, 12, 255, 255, 255, 216, 102, 159, 27, 9, 251, 10, 212, + 32, 3, 57, 130, 159, 159, 27, 230, 34, 225, 37, 187, 192, 117, 93, 69, 158, 55, 40, 45, 200, 72, 207, 68, 242, 82, + 165, 120, 226, 125, 255, 216, 102, 159, 27, 214, 82, 22, 240, 15, 100, 188, 55, 128, 255, 191, 66, 23, 181, 27, + 205, 245, 40, 94, 18, 74, 235, 72, 255, 73, 48, 151, 213, 79, 38, 129, 195, 193, 206, 255, 255, 191, 65, 19, 69, + 31, 119, 184, 22, 92, 73, 32, 202, 188, 158, 67, 170, 125, 45, 196, 71, 250, 150, 155, 43, 36, 238, 86, 72, 91, + 165, 46, 137, 39, 190, 27, 151, 69, 39, 36, 226, 212, 3, 67, 140, 158, 99, 27, 201, 122, 200, 215, 128, 116, 213, + 215, 255, 191, 27, 4, 206, 103, 74, 13, 93, 165, 39, 71, 217, 252, 7, 13, 1, 226, 48, 255, 159, 191, 69, 43, 177, + 67, 22, 8, 71, 104, 65, 176, 10, 50, 52, 43, 76, 160, 206, 254, 50, 236, 43, 163, 64, 164, 95, 210, 143, 27, 222, + 102, 154, 72, 153, 164, 63, 49, 74, 169, 72, 46, 134, 181, 225, 221, 159, 136, 109, 27, 255, 255, 255, 255, 255, + 255, 255, 250, 255, 27, 255, 255, 255, 255, 255, 255, 255, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 638, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17503393690220135574" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17242059088934585789" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14563629715921447822" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ac3b9d75efcb9ba16d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "679058187682941675" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10550079236423025607" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "80d651cb47a0" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf2e88bd3056284969fd9050a9f1bef481963983dc5bd1bca1c6810b1d22b8effd905069f49ac3b9d75efcb9ba16d1b096c7fd2eaa98aebffffff1bffffffffffffffedd8669f1b9269692b373803c79f4680d651cb47a0ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 242, 232, 139, 211, 5, 98, 132, 150, 159, 217, 5, 10, 159, 27, 239, 72, 25, 99, 152, 61, + 197, 189, 27, 202, 28, 104, 16, 177, 210, 43, 142, 255, 217, 5, 6, 159, 73, 172, 59, 157, 117, 239, 203, 155, 161, + 109, 27, 9, 108, 127, 210, 234, 169, 138, 235, 255, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 237, 216, + 102, 159, 27, 146, 105, 105, 43, 55, 56, 3, 199, 159, 70, 128, 214, 81, 203, 71, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 639, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7719359459759519963" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16070155246287640229" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b6b20ac879c8478db9fa0ffff1bdf04a90d9c5ad6a580ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 107, 32, 172, 135, 156, 132, 120, 219, 159, 160, 255, 255, 27, 223, 4, 169, 13, 156, 90, + 214, 165, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 640, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6721878459004547567" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b645e6c9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10456602357662315071" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "954e69" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10545220232446176561" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06d891c210039e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15204201709698414503" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6edfe1458120cd958a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18247101677397263521" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "758418215816198906" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9494095085815794129" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12407780368828939047" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11021558159234289314" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7780338500886236965" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17990363263721835216" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3063963677157627486" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "461e0ddb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efa0722252" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c66" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13813167186880722062" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb1f0b762d1644d446d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3415629815121086597" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fbf1b5d48e8d82c50f1ef44b645e6c91b911d50715df9723f43954e691b925825ee31376d314706d891c210039e1bd3002ce64ff5f7a7496edfe1458120cd958a1bfd3aba4c5db2c4a11b0a86715958e8fafaffd8669f1b83c1cd2dbdd509d19f1bac314a81971d3b271b98f470c04877cea2ffffffd8669f1b6bf950a5019e8f2580ff80bf1bf9aa9c1242608ad01b2a8562bb15ae165e44461e0ddb45efa0722252427c661bbfb23a5f051b748e4acb1f0b762d1644d446d71b2f66c13856868885ffff", + "cborBytes": [ + 159, 159, 191, 27, 93, 72, 232, 216, 44, 80, 241, 239, 68, 182, 69, 230, 201, 27, 145, 29, 80, 113, 93, 249, 114, + 63, 67, 149, 78, 105, 27, 146, 88, 37, 238, 49, 55, 109, 49, 71, 6, 216, 145, 194, 16, 3, 158, 27, 211, 0, 44, + 230, 79, 245, 247, 167, 73, 110, 223, 225, 69, 129, 32, 205, 149, 138, 27, 253, 58, 186, 76, 93, 178, 196, 161, + 27, 10, 134, 113, 89, 88, 232, 250, 250, 255, 216, 102, 159, 27, 131, 193, 205, 45, 189, 213, 9, 209, 159, 27, + 172, 49, 74, 129, 151, 29, 59, 39, 27, 152, 244, 112, 192, 72, 119, 206, 162, 255, 255, 255, 216, 102, 159, 27, + 107, 249, 80, 165, 1, 158, 143, 37, 128, 255, 128, 191, 27, 249, 170, 156, 18, 66, 96, 138, 208, 27, 42, 133, 98, + 187, 21, 174, 22, 94, 68, 70, 30, 13, 219, 69, 239, 160, 114, 34, 82, 66, 124, 102, 27, 191, 178, 58, 95, 5, 27, + 116, 142, 74, 203, 31, 11, 118, 45, 22, 68, 212, 70, 215, 27, 47, 102, 193, 56, 86, 134, 136, 133, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 641, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7d" + } + ] + }, + "cborHex": "9f417dff", + "cborBytes": [159, 65, 125, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 642, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17858476048116001905" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b2cb6ba654" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14288178910361761572" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "3a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5426650006605491192" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18014136477831005564" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55ae86" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14347183843287602169" + } + } + ] + }, + "cborHex": "9fd8669f1bf7d60d58f5c6ac719f45b2cb6ba654ffffd8669f1bc649cf04575737249f80a0413a1b4b4f556dec176bf8bf1bf9ff11af0086057c4355ae86ffffff1bc71b6fb0da6193f9ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 247, 214, 13, 88, 245, 198, 172, 113, 159, 69, 178, 203, 107, 166, 84, 255, 255, 216, 102, + 159, 27, 198, 73, 207, 4, 87, 87, 55, 36, 159, 128, 160, 65, 58, 27, 75, 79, 85, 109, 236, 23, 107, 248, 191, 27, + 249, 255, 17, 175, 0, 134, 5, 124, 67, 85, 174, 134, 255, 255, 255, 27, 199, 27, 111, 176, 218, 97, 147, 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 643, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "214842cee617da496b5442" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "437511c7a492477a9f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7452297239787807243" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5291438399648402037" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2100055358039207780" + } + } + ] + }, + "cborHex": "9f9f4b214842cee617da496b54429f49437511c7a492477a9f1b676be0db0a2d220b1b496ef73071e78a75ff80ffa01b1d24e538b8952f64ff", + "cborBytes": [ + 159, 159, 75, 33, 72, 66, 206, 230, 23, 218, 73, 107, 84, 66, 159, 73, 67, 117, 17, 199, 164, 146, 71, 122, 159, + 27, 103, 107, 224, 219, 10, 45, 34, 11, 27, 73, 110, 247, 48, 113, 231, 138, 117, 255, 128, 255, 160, 27, 29, 36, + 229, 56, 184, 149, 47, 100, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 644, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e0c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d4824b921e54fc5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f531dba8a33404bd922" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4eda1f3690e92f46fb7ca6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "195c0dc740" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b37675c20a663066d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76aee3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a898da7f2312c6ea59c7462a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7320330802071901328" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe894c7d84" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e1ff091db32" + } + } + ] + } + ] + }, + "cborHex": "9fbf427e0c480d4824b921e54fc54a7f531dba8a33404bd9224b4eda1f3690e92f46fb7ca6419445195c0dc740499b37675c20a663066d4376aee34ca898da7f2312c6ea59c7462a1b65970a1467d8949045fe894c7d84460e1ff091db32ffff", + "cborBytes": [ + 159, 191, 66, 126, 12, 72, 13, 72, 36, 185, 33, 229, 79, 197, 74, 127, 83, 29, 186, 138, 51, 64, 75, 217, 34, 75, + 78, 218, 31, 54, 144, 233, 47, 70, 251, 124, 166, 65, 148, 69, 25, 92, 13, 199, 64, 73, 155, 55, 103, 92, 32, 166, + 99, 6, 109, 67, 118, 174, 227, 76, 168, 152, 218, 127, 35, 18, 198, 234, 89, 199, 70, 42, 27, 101, 151, 10, 20, + 103, 216, 148, 144, 69, 254, 137, 76, 125, 132, 70, 14, 31, 240, 145, 219, 50, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 645, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10818208860582341395" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13640329047583547992" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b9621ffa430fe6b1380ffd8669f1bbd4c2effcca8e25880ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 150, 33, 255, 164, 48, 254, 107, 19, 128, 255, 216, 102, 159, 27, 189, 76, 46, 255, 204, + 168, 226, 88, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 646, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3bbe0cc590c087f6" + } + ] + }, + "cborHex": "9f483bbe0cc590c087f6ff", + "cborBytes": [159, 72, 59, 190, 12, 197, 144, 192, 135, 246, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 647, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "43bd571501402957" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ddcbd23c9e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a83c32f3e8ed34abddffa474" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cc4bb1deba5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5c1f907acb72ff3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84dae97f4f1473b9e46e491d" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1290539165298541575" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "365bff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16375429221038594683" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13929662590612040914" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6278492804402346232" + } + }, + { + "_tag": "ByteArray", + "bytearray": "84446c30224ba82c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4161609646889854429" + } + }, + { + "_tag": "ByteArray", + "bytearray": "866567a5fd2a" + } + ] + } + ] + }, + "cborHex": "9f9fbf4843bd571501402957469ddcbd23c9e84ca83c32f3e8ed34abddffa474468cc4bb1deba548e5c1f907acb72ff34c84dae97f4f1473b9e46e491dffd8669f1b11e8ea88845944079f43365bff1be341361da48e9a7b1bc1501a52da7a6cd21b5721aff0d33f78f84884446c30224ba82cffff1b39c101ecb8b565dd46866567a5fd2affff", + "cborBytes": [ + 159, 159, 191, 72, 67, 189, 87, 21, 1, 64, 41, 87, 70, 157, 220, 189, 35, 201, 232, 76, 168, 60, 50, 243, 232, + 237, 52, 171, 221, 255, 164, 116, 70, 140, 196, 187, 29, 235, 165, 72, 229, 193, 249, 7, 172, 183, 47, 243, 76, + 132, 218, 233, 127, 79, 20, 115, 185, 228, 110, 73, 29, 255, 216, 102, 159, 27, 17, 232, 234, 136, 132, 89, 68, 7, + 159, 67, 54, 91, 255, 27, 227, 65, 54, 29, 164, 142, 154, 123, 27, 193, 80, 26, 82, 218, 122, 108, 210, 27, 87, + 33, 175, 240, 211, 63, 120, 248, 72, 132, 68, 108, 48, 34, 75, 168, 44, 255, 255, 27, 57, 193, 1, 236, 184, 181, + 101, 221, 70, 134, 101, 103, 165, 253, 42, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 648, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14508976973172518875" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "89493758896882608" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12653999991427053551" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "210132576876809329" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12595312803334469075" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16652400820269809278" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16918642551782243474" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1411842722370652100" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "355f8f9744f91184e5" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17147920030747349623" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9713914944952073786" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1bc95a3daf6c452fdb9fbf1b013df2197ca9c3b01baf9c09f2ccce37ef1b02ea8a77207acc711baecb8a4305ae35d31be71936515d9afe7e1beacb17c314c9fc92ffffffd8669f1b1397df79c99f87c49f49355f8f9744f91184e5ffff1bedf9a66a158052771b86cec22d0839fe3a80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 201, 90, 61, 175, 108, 69, 47, 219, 159, 191, 27, 1, 61, 242, 25, 124, 169, 195, 176, 27, + 175, 156, 9, 242, 204, 206, 55, 239, 27, 2, 234, 138, 119, 32, 122, 204, 113, 27, 174, 203, 138, 67, 5, 174, 53, + 211, 27, 231, 25, 54, 81, 93, 154, 254, 126, 27, 234, 203, 23, 195, 20, 201, 252, 146, 255, 255, 255, 216, 102, + 159, 27, 19, 151, 223, 121, 201, 159, 135, 196, 159, 73, 53, 95, 143, 151, 68, 249, 17, 132, 229, 255, 255, 27, + 237, 249, 166, 106, 21, 128, 82, 119, 27, 134, 206, 194, 45, 8, 57, 254, 58, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 649, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15294086418459151920" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33ae" + } + } + ] + } + ] + }, + "cborHex": "9fbf1bd43f8290e8624e304233aeffff", + "cborBytes": [159, 191, 27, 212, 63, 130, 144, 232, 98, 78, 48, 66, 51, 174, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 650, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a5" + } + ] + }, + "cborHex": "9f41a5ff", + "cborBytes": [159, 65, 165, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 651, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16300435894763237192" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8158247349448021063" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1be236c8153763af4880ffd8669f1b7137eabd759f144780ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 226, 54, 200, 21, 55, 99, 175, 72, 128, 255, 216, 102, 159, 27, 113, 55, 234, 189, 117, + 159, 20, 71, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 652, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8d4ab393139953a140b3ce5b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2150517155343116390" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "102526920042966203" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16433899324487003819" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18400933578235272974" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9359399844253370127" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9339304574646928672" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "07066db6e6f7dbd2d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17079864294775019079" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16642282017230659482" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17041031076465924576" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2652" + }, + { + "_tag": "ByteArray", + "bytearray": "393f7e77dcb32102e3d7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12089927446352606854" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12883776619138464202" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12768964235283517168" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "625863577579891157" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f4c8d4ab393139953a140b3ce5bd8669f1b1dd82bf5779c286680ff1b016c3fb0c9136cbb1be410f05d76946eabff9f1bff5d3f98da455f0effd8669f1b81e34491f391870f9f1b819be0076502c5209f4907066db6e6f7dbd2d51bed07de1545f156471be6f54351f0e79f9affd8669f1bec7de77a0f24d9e09f4226524a393f7e77dcb32102e3d71ba7c80cf51017b686ffffd8669f1bb2cc5e92ed3b39ca9f1bb1347951b1bdcef01b08af839b9b8129d5ffffffffff", + "cborBytes": [ + 159, 159, 76, 141, 74, 179, 147, 19, 153, 83, 161, 64, 179, 206, 91, 216, 102, 159, 27, 29, 216, 43, 245, 119, + 156, 40, 102, 128, 255, 27, 1, 108, 63, 176, 201, 19, 108, 187, 27, 228, 16, 240, 93, 118, 148, 110, 171, 255, + 159, 27, 255, 93, 63, 152, 218, 69, 95, 14, 255, 216, 102, 159, 27, 129, 227, 68, 145, 243, 145, 135, 15, 159, 27, + 129, 155, 224, 7, 101, 2, 197, 32, 159, 73, 7, 6, 109, 182, 230, 247, 219, 210, 213, 27, 237, 7, 222, 21, 69, 241, + 86, 71, 27, 230, 245, 67, 81, 240, 231, 159, 154, 255, 216, 102, 159, 27, 236, 125, 231, 122, 15, 36, 217, 224, + 159, 66, 38, 82, 74, 57, 63, 126, 119, 220, 179, 33, 2, 227, 215, 27, 167, 200, 12, 245, 16, 23, 182, 134, 255, + 255, 216, 102, 159, 27, 178, 204, 94, 146, 237, 59, 57, 202, 159, 27, 177, 52, 121, 81, 177, 189, 206, 240, 27, 8, + 175, 131, 155, 155, 129, 41, 213, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 653, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9285558611788488272" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10343524779782364531" + } + } + ] + }, + "cborHex": "9f9f1b80dcee5c44b8de50ff1b8f8b94fc2060dd73ff", + "cborBytes": [ + 159, 159, 27, 128, 220, 238, 92, 68, 184, 222, 80, 255, 27, 143, 139, 148, 252, 32, 96, 221, 115, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 654, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "9f0eff", + "cborBytes": [159, 14, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 655, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a1c71c48c243" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10737936444333492307" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6107645515776611818" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11437427559148834567" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6290162062746790415" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6967145578623764698" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3697480165244040803" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2ec5fb8690f46445" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17336372404177612237" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "50" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12900498694182252389" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de87a54a17bf8b60fc8a" + } + ] + }, + "cborHex": "9f46a1c71c48c243d8669f1b9504d04dd93808539fbf1b54c2b73ca5df55ea1b9eb9e7c457544f07ff9f1b574b2511c1a92a0f1b60b045fd804d88da1b3350169ec56c7663482ec5fb8690f464451bf0972ad97ce42dcdffffff41501bb307c7366c1faf654ade87a54a17bf8b60fc8aff", + "cborBytes": [ + 159, 70, 161, 199, 28, 72, 194, 67, 216, 102, 159, 27, 149, 4, 208, 77, 217, 56, 8, 83, 159, 191, 27, 84, 194, + 183, 60, 165, 223, 85, 234, 27, 158, 185, 231, 196, 87, 84, 79, 7, 255, 159, 27, 87, 75, 37, 17, 193, 169, 42, 15, + 27, 96, 176, 69, 253, 128, 77, 136, 218, 27, 51, 80, 22, 158, 197, 108, 118, 99, 72, 46, 197, 251, 134, 144, 244, + 100, 69, 27, 240, 151, 42, 217, 124, 228, 45, 205, 255, 255, 255, 65, 80, 27, 179, 7, 199, 54, 108, 31, 175, 101, + 74, 222, 135, 165, 74, 23, 191, 139, 96, 252, 138, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 656, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5fe26f19061c1af6af" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "00da10" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15641821497382659047" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13798022526936882771" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf422cda" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14446142563824929610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11641363196146312326" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15985336670081286639" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5560618773402956344" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8c0a3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88efa0" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11675643839915528318" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14573383774297656090" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cbe7a30605f66db" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "719182864475554723" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e83256b924ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12378949911905197775" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f495fe26f19061c1af6af9fa04300da109f1bd912e9c7278fe3e7ffbf1bbf7c6c6218e91e5344cf422cda1bc87b021f736f8b4a1ba18e6e25f79b64861bddd75301eb3881ef1b4d2b4950200d323843c8c0a34388efa0ffbf1ba20838365224907e1bca3f0f5462740b1a483cbe7a30605f66db1b09fb0d013d9d03a341cc41c846e83256b924ce1babcadd5bbf765ecfffffff", + "cborBytes": [ + 159, 73, 95, 226, 111, 25, 6, 28, 26, 246, 175, 159, 160, 67, 0, 218, 16, 159, 27, 217, 18, 233, 199, 39, 143, + 227, 231, 255, 191, 27, 191, 124, 108, 98, 24, 233, 30, 83, 68, 207, 66, 44, 218, 27, 200, 123, 2, 31, 115, 111, + 139, 74, 27, 161, 142, 110, 37, 247, 155, 100, 134, 27, 221, 215, 83, 1, 235, 56, 129, 239, 27, 77, 43, 73, 80, + 32, 13, 50, 56, 67, 200, 192, 163, 67, 136, 239, 160, 255, 191, 27, 162, 8, 56, 54, 82, 36, 144, 126, 27, 202, 63, + 15, 84, 98, 116, 11, 26, 72, 60, 190, 122, 48, 96, 95, 102, 219, 27, 9, 251, 13, 1, 61, 157, 3, 163, 65, 204, 65, + 200, 70, 232, 50, 86, 185, 36, 206, 27, 171, 202, 221, 91, 191, 118, 94, 207, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 657, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "216145396923209129" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15530577982542598764" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13815203703739238442" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3958485466971310737" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ba623c8d855f8b86" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5726117663665081305" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8458890361328431739" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11274866527370448168" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "777f852e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12477177985473436958" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9989246714979243416" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16425444896992373796" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eaed" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "521b5666c69e8395cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1024134095838104108" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12400873310744166425" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14037540770429789618" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8be1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "150701099551433040" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "68626de38641ee6572c5" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b02ffe717e37195a99f1bd787b263fdf4526cd8669f1bbfb976928d09c82a9f1b36ef5d8f2b5f0a9148ba623c8d855f8b86ffffbf1b4f7741ad44d8cbd91b756403f76cf4f27b1b9c785f5eaddb8d2844777f852e1bad27d7455777dd1e1b8aa0eef6441355981be3f2e71baafbac2442eaedff49521b5666c69e8395cc1b0e367488b8cbca2cffff1bac18c092cf874019d8669f1bc2cf5cf4e587e5b29f428be11b021765da02062150ffff4a68626de38641ee6572c580ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 2, 255, 231, 23, 227, 113, 149, 169, 159, 27, 215, 135, 178, 99, 253, 244, 82, 108, 216, + 102, 159, 27, 191, 185, 118, 146, 141, 9, 200, 42, 159, 27, 54, 239, 93, 143, 43, 95, 10, 145, 72, 186, 98, 60, + 141, 133, 95, 139, 134, 255, 255, 191, 27, 79, 119, 65, 173, 68, 216, 203, 217, 27, 117, 100, 3, 247, 108, 244, + 242, 123, 27, 156, 120, 95, 94, 173, 219, 141, 40, 68, 119, 127, 133, 46, 27, 173, 39, 215, 69, 87, 119, 221, 30, + 27, 138, 160, 238, 246, 68, 19, 85, 152, 27, 227, 242, 231, 27, 170, 251, 172, 36, 66, 234, 237, 255, 73, 82, 27, + 86, 102, 198, 158, 131, 149, 204, 27, 14, 54, 116, 136, 184, 203, 202, 44, 255, 255, 27, 172, 24, 192, 146, 207, + 135, 64, 25, 216, 102, 159, 27, 194, 207, 92, 244, 229, 135, 229, 178, 159, 66, 139, 225, 27, 2, 23, 101, 218, 2, + 6, 33, 80, 255, 255, 74, 104, 98, 109, 227, 134, 65, 238, 101, 114, 197, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 658, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "273101220567576284" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a90acb3dc63445" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3651378226148449322" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8787111585552665754" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a21ef48e45b0c17" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbf8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "975963010404" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6425495547446155617" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ef619a5a546991b6ecc072" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12620070043452347070" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12542410268406321267" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b03ca401cf7a7eedc9f9f47a90acb3dc634451b32ac4d269e2c9c2a1b79f2176e52960c9affbf0341ff11484a21ef48e45b0c17417342fbf84697596301040401ffff9f9f1b592bf2281b61d9614bef619a5a546991b6ecc0721baf237ed72c8692be1bae0f97afc3921073ffffff", + "cborBytes": [ + 159, 27, 3, 202, 64, 28, 247, 167, 238, 220, 159, 159, 71, 169, 10, 203, 61, 198, 52, 69, 27, 50, 172, 77, 38, + 158, 44, 156, 42, 27, 121, 242, 23, 110, 82, 150, 12, 154, 255, 191, 3, 65, 255, 17, 72, 74, 33, 239, 72, 228, 91, + 12, 23, 65, 115, 66, 251, 248, 70, 151, 89, 99, 1, 4, 4, 1, 255, 255, 159, 159, 27, 89, 43, 242, 40, 27, 97, 217, + 97, 75, 239, 97, 154, 90, 84, 105, 145, 182, 236, 192, 114, 27, 175, 35, 126, 215, 44, 134, 146, 190, 27, 174, 15, + 151, 175, 195, 146, 16, 115, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 659, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15883052633607673879" + } + }, + { + "_tag": "ByteArray", + "bytearray": "050db64f7d023b78" + }, + { + "_tag": "ByteArray", + "bytearray": "287f9d72" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ad5e809ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14743877861118480771" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55b8d3edacbb1046" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3136205369795372142" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "749412c1b74010" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1470f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89df87d2fe86" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a412f01" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5130080708599196397" + } + } + ] + }, + "cborHex": "9f1bdc6bf037df04981748050db64f7d023b7844287f9d72bf453ad5e809ff1bcc9cc6cc5bb691834855b8d3edacbb10461b2b860a2ae153646e47749412c1b7401043d1470f4689df87d2fe86440a412f01ff1b4731b5396123aaedff", + "cborBytes": [ + 159, 27, 220, 107, 240, 55, 223, 4, 152, 23, 72, 5, 13, 182, 79, 125, 2, 59, 120, 68, 40, 127, 157, 114, 191, 69, + 58, 213, 232, 9, 255, 27, 204, 156, 198, 204, 91, 182, 145, 131, 72, 85, 184, 211, 237, 172, 187, 16, 70, 27, 43, + 134, 10, 42, 225, 83, 100, 110, 71, 116, 148, 18, 193, 183, 64, 16, 67, 209, 71, 15, 70, 137, 223, 135, 210, 254, + 134, 68, 10, 65, 47, 1, 255, 27, 71, 49, 181, 57, 97, 35, 170, 237, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 660, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fce3fa02078600" + } + ] + }, + "cborHex": "9fa047fce3fa02078600ff", + "cborBytes": [159, 160, 71, 252, 227, 250, 2, 7, 134, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 661, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2955488998528269673" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14965846917495435090" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10026245208859007391" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6372399302271847517" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "ByteArray", + "bytearray": "61ca199f2d2a" + } + ] + }, + "cborHex": "9f9f1b29040195d6da3d691bcfb15e7aa030af521b8b2460e56900d99fff1b586f4f672adc4c5d1bfffffffffffffffe074661ca199f2d2aff", + "cborBytes": [ + 159, 159, 27, 41, 4, 1, 149, 214, 218, 61, 105, 27, 207, 177, 94, 122, 160, 48, 175, 82, 27, 139, 36, 96, 229, + 105, 0, 217, 159, 255, 27, 88, 111, 79, 103, 42, 220, 76, 93, 27, 255, 255, 255, 255, 255, 255, 255, 254, 7, 70, + 97, 202, 25, 159, 45, 42, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 662, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16605528905442547265" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4964287379660295061" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13851357111197793448" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8f37aa7c24" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16526241539286749530" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f50abd138422df8605df75" + }, + { + "_tag": "ByteArray", + "bytearray": "835f2f968fea67e53c0ae9" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16879637027433307453" + } + } + ] + }, + "cborHex": "9fd8669f1be672b08f446256419f9f1b44e4b111e39b4b95ffd8669f1bc039e7e7ae067ca89f458f37aa7c241be559011ec57dd15a4bf50abd138422df8605df754b835f2f968fea67e53c0ae9ffffffff1bea408471bdb15d3dff", + "cborBytes": [ + 159, 216, 102, 159, 27, 230, 114, 176, 143, 68, 98, 86, 65, 159, 159, 27, 68, 228, 177, 17, 227, 155, 75, 149, + 255, 216, 102, 159, 27, 192, 57, 231, 231, 174, 6, 124, 168, 159, 69, 143, 55, 170, 124, 36, 27, 229, 89, 1, 30, + 197, 125, 209, 90, 75, 245, 10, 189, 19, 132, 34, 223, 134, 5, 223, 117, 75, 131, 95, 47, 150, 143, 234, 103, 229, + 60, 10, 233, 255, 255, 255, 255, 27, 234, 64, 132, 113, 189, 177, 93, 61, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 663, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bea4e1" + } + ] + }, + "cborHex": "9f43bea4e1ff", + "cborBytes": [159, 67, 190, 164, 225, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 664, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f2e5ad86cde1b9" + } + ] + }, + "cborHex": "9f47f2e5ad86cde1b9ff", + "cborBytes": [159, 71, 242, 229, 173, 134, 205, 225, 185, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 665, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15948307279639439765" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0be8a8ef4b2b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13075716497529268094" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16839116617304591060" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6341085309266762955" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5488170167711932173" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7355598509188991260" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15012595657374457545" + } + }, + { + "_tag": "ByteArray", + "bytearray": "326e577c4b5e0d3f45f1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2095634942555379393" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11215097510441947193" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a3541a732957cacd" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2686685084337328891" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bdd53c4f91baf69959f9f460be8a8ef4b2b1bb57646e05af2677e1be9b08f5891d14ad41b58000f7e054b1ccb1b4c29e5b0a15d9f0dffd8669f1b661455df5a9a491c9f1bd0577435d2605ec94a326e577c4b5e0d3f45f11b1d1530e089e8d6c1ffffffffa01b9ba407c3ff42903948a3541a732957cacdd8669f1b254905d97b4452fb80ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 221, 83, 196, 249, 27, 175, 105, 149, 159, 159, 70, 11, 232, 168, 239, 75, 43, 27, 181, + 118, 70, 224, 90, 242, 103, 126, 27, 233, 176, 143, 88, 145, 209, 74, 212, 27, 88, 0, 15, 126, 5, 75, 28, 203, 27, + 76, 41, 229, 176, 161, 93, 159, 13, 255, 216, 102, 159, 27, 102, 20, 85, 223, 90, 154, 73, 28, 159, 27, 208, 87, + 116, 53, 210, 96, 94, 201, 74, 50, 110, 87, 124, 75, 94, 13, 63, 69, 241, 27, 29, 21, 48, 224, 137, 232, 214, 193, + 255, 255, 255, 255, 160, 27, 155, 164, 7, 195, 255, 66, 144, 57, 72, 163, 84, 26, 115, 41, 87, 202, 205, 216, 102, + 159, 27, 37, 73, 5, 217, 123, 68, 82, 251, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 666, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1509232435821454606" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8806943926569930782" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17751957113841068211" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9801470356424922813" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a06f4c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16253683296340464584" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ca75a03ff8f8260a1c8d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8423977943886783839" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9933171927208857954" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1777cafcefe0a7a64c69a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15816909949125356517" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f6facc2ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16465124822197891959" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "225668c3941bda3c2c93" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "858226850377967287" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f343b061" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a00b0c05e684" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "621141474504334997" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b21eadb680281801fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2333649718546725406" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e0a337aa1707e9f8d37e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0e72e6fa84a018d392aa8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6fc7f" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b14f1dee774a2a50e9f9f1b7a388cd70bfc101e1bf65b9ef0ee7728b31b8805d15bd73a96bd43a06f4c1be190aed7a212d3c8ff4aca75a03ff8f8260a1c8d1b74e7fb4ecd18e55f1b89d9b73d562a9162ffff80bf4b1777cafcefe0a7a64c69a51bdb80f3cc11f56be5451f6facc2ad1be47fdfca319273774a225668c3941bda3c2c931b0be908c5f97b26b7414f44f343b06146a00b0c05e6841b089ebce14f17de9549b21eadb680281801fe1b2062ca0e082afa1eff9f4ae0a337aa1707e9f8d37effbf4ba0e72e6fa84a018d392aa843f6fc7fffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 20, 241, 222, 231, 116, 162, 165, 14, 159, 159, 27, 122, 56, 140, 215, 11, 252, 16, 30, + 27, 246, 91, 158, 240, 238, 119, 40, 179, 27, 136, 5, 209, 91, 215, 58, 150, 189, 67, 160, 111, 76, 27, 225, 144, + 174, 215, 162, 18, 211, 200, 255, 74, 202, 117, 160, 63, 248, 248, 38, 10, 28, 141, 27, 116, 231, 251, 78, 205, + 24, 229, 95, 27, 137, 217, 183, 61, 86, 42, 145, 98, 255, 255, 128, 191, 75, 23, 119, 202, 252, 239, 224, 167, + 166, 76, 105, 165, 27, 219, 128, 243, 204, 17, 245, 107, 229, 69, 31, 111, 172, 194, 173, 27, 228, 127, 223, 202, + 49, 146, 115, 119, 74, 34, 86, 104, 195, 148, 27, 218, 60, 44, 147, 27, 11, 233, 8, 197, 249, 123, 38, 183, 65, + 79, 68, 243, 67, 176, 97, 70, 160, 11, 12, 5, 230, 132, 27, 8, 158, 188, 225, 79, 23, 222, 149, 73, 178, 30, 173, + 182, 128, 40, 24, 1, 254, 27, 32, 98, 202, 14, 8, 42, 250, 30, 255, 159, 74, 224, 163, 55, 170, 23, 7, 233, 248, + 211, 126, 255, 191, 75, 160, 231, 46, 111, 168, 74, 1, 141, 57, 42, 168, 67, 246, 252, 127, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 667, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3021407683117224216" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17110056618129545714" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12469980818895786581" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40356b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e560ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fa0d87f9fbf1b29ee324799d691181bed7321d75a6ed9f21bad0e457c6a37d2554340356b43e560ae41c0ffffff", + "cborBytes": [ + 159, 160, 216, 127, 159, 191, 27, 41, 238, 50, 71, 153, 214, 145, 24, 27, 237, 115, 33, 215, 90, 110, 217, 242, + 27, 173, 14, 69, 124, 106, 55, 210, 85, 67, 64, 53, 107, 67, 229, 96, 174, 65, 192, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 668, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1267960499573134775" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9804938477700103330" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2134620152275361490" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "384559" + }, + { + "_tag": "ByteArray", + "bytearray": "c547" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "efe08e4c2522b68fabdec4f8" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1230907698" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f1bfffffffffffffff99fd8669f1b1198b35b3e4895b79f1b88122398bfdfbca21b1d9fb1b802c35ed2ffff9f4338455942c547ff4cefe08e4c2522b68fabdec4f8ff451230907698a0ff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 216, 102, 159, 27, 17, 152, 179, 91, 62, 72, 149, 183, 159, + 27, 136, 18, 35, 152, 191, 223, 188, 162, 27, 29, 159, 177, 184, 2, 195, 94, 210, 255, 255, 159, 67, 56, 69, 89, + 66, 197, 71, 255, 76, 239, 224, 142, 76, 37, 34, 182, 143, 171, 222, 196, 248, 255, 69, 18, 48, 144, 118, 152, + 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 669, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa979f81d859995f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f47de8f907f9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14445605376856924757" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7438859333326284998" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15321604401063495461" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18108481478111691109" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de4b344b70ba5e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2866cf8704" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e10aa24aebab3120e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1236" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7031632398199764325" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf48fa979f81d859995f0aff46f47de8f907f9bf1bc879198ddd07a2551b673c2326a10328c61bd4a14606827387251bfb4e3ff62496816547de4b344b70ba5e452866cf870449e10aa24aebab3120e9421236ffd8669f1b6195606935d3356580ffff", + "cborBytes": [ + 159, 191, 72, 250, 151, 159, 129, 216, 89, 153, 95, 10, 255, 70, 244, 125, 232, 249, 7, 249, 191, 27, 200, 121, + 25, 141, 221, 7, 162, 85, 27, 103, 60, 35, 38, 161, 3, 40, 198, 27, 212, 161, 70, 6, 130, 115, 135, 37, 27, 251, + 78, 63, 246, 36, 150, 129, 101, 71, 222, 75, 52, 75, 112, 186, 94, 69, 40, 102, 207, 135, 4, 73, 225, 10, 162, 74, + 235, 171, 49, 32, 233, 66, 18, 54, 255, 216, 102, 159, 27, 97, 149, 96, 105, 53, 211, 53, 101, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 670, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6443044528383195646" + } + } + ] + }, + "cborHex": "9f1b596a4adca24df9feff", + "cborBytes": [159, 27, 89, 106, 74, 220, 162, 77, 249, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 671, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5088541795559675191" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5701e24d10de1a3350" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b26e9c019001b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "988b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e6b13084183c0cc7414a8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f00f35a2" + }, + { + "_tag": "ByteArray", + "bytearray": "bd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16317585063835541776" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "41e627882bbec6ed9a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "029f4be61ae52925f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8944204963413869615" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ddb321b6f01270fde65" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac3383652cb14e438d3275e9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35180e00acc3d087" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14480480420890339738" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "449715c8c5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12328319773122159967" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "749d23f370da25" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4779679809850259742" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de2f0be252c285d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13035557024819169598" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3509139372915396316" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10240685948543949277" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4595604765077166256" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16e13eb1d4c72f11" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5546469681368530468" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3292631849148654565" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10801472090452773820" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2027" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15844914205808162789" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4088419944174847745" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17008743440938944177" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ca9de3fb8081df2907e" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "757189341814224935" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16280287675246449590" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5217367129756099234" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ba0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0435" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "042e45a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a00bd07fc0004af450403fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8dd62d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c210e68e7ba78afcd7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74d60477302c75" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8ba5e1c1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1522749520387630800" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9e441b1f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13537590867651962965" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "04982f015c59de" + } + ] + }, + "cborHex": "9fd8669f1b469e21cd851015379fbf495701e24d10de1a335047b26e9c019001b942988b4b2e6b13084183c0cc7414a8ff9f44f00f35a241bd1be273b5294a232110ff9f4941e627882bbec6ed9affbf49029f4be61ae52925f31b7c2033069a91c42f4a0ddb321b6f01270fde654cac3383652cb14e438d3275e94835180e00acc3d0871bc8f50038d02ae99a45449715c8c51bab16fd83f25ee55f47749d23f370da251b4254d576963b391e48de2f0be252c285d51bb4e79a0c79b1c93effbf1b30b2f7aaddf58edc1b8e1e399cdb4bd9dd1b3fc6de2f6e8458b04816e13eb1d4c72f111b4cf904c9eb71fe241b2db1c738c0a4a3e51b95e689a33abbcbbc4220271bdbe471852dbc77e51b38bcfc47212a07011bec0b320b18ebc6b14a1ca9de3fb8081df2907effffffd8669f1b0a8213b1d28c78279f1be1ef33624c3c13b6a01b4867cfc2ffe962a2424ba0bf42043544042e45a24c1a00bd07fc0004af450403fb438dd62d49c210e68e7ba78afcd74774d60477302c75ffffff9f448ba5e1c1d8669f1b1521e49ef499e6d09f449e441b1f1bbbdf2f2b3cf7a855ffffff4704982f015c59deff", + "cborBytes": [ + 159, 216, 102, 159, 27, 70, 158, 33, 205, 133, 16, 21, 55, 159, 191, 73, 87, 1, 226, 77, 16, 222, 26, 51, 80, 71, + 178, 110, 156, 1, 144, 1, 185, 66, 152, 139, 75, 46, 107, 19, 8, 65, 131, 192, 204, 116, 20, 168, 255, 159, 68, + 240, 15, 53, 162, 65, 189, 27, 226, 115, 181, 41, 74, 35, 33, 16, 255, 159, 73, 65, 230, 39, 136, 43, 190, 198, + 237, 154, 255, 191, 73, 2, 159, 75, 230, 26, 229, 41, 37, 243, 27, 124, 32, 51, 6, 154, 145, 196, 47, 74, 13, 219, + 50, 27, 111, 1, 39, 15, 222, 101, 76, 172, 51, 131, 101, 44, 177, 78, 67, 141, 50, 117, 233, 72, 53, 24, 14, 0, + 172, 195, 208, 135, 27, 200, 245, 0, 56, 208, 42, 233, 154, 69, 68, 151, 21, 200, 197, 27, 171, 22, 253, 131, 242, + 94, 229, 95, 71, 116, 157, 35, 243, 112, 218, 37, 27, 66, 84, 213, 118, 150, 59, 57, 30, 72, 222, 47, 11, 226, 82, + 194, 133, 213, 27, 180, 231, 154, 12, 121, 177, 201, 62, 255, 191, 27, 48, 178, 247, 170, 221, 245, 142, 220, 27, + 142, 30, 57, 156, 219, 75, 217, 221, 27, 63, 198, 222, 47, 110, 132, 88, 176, 72, 22, 225, 62, 177, 212, 199, 47, + 17, 27, 76, 249, 4, 201, 235, 113, 254, 36, 27, 45, 177, 199, 56, 192, 164, 163, 229, 27, 149, 230, 137, 163, 58, + 187, 203, 188, 66, 32, 39, 27, 219, 228, 113, 133, 45, 188, 119, 229, 27, 56, 188, 252, 71, 33, 42, 7, 1, 27, 236, + 11, 50, 11, 24, 235, 198, 177, 74, 28, 169, 222, 63, 184, 8, 29, 242, 144, 126, 255, 255, 255, 216, 102, 159, 27, + 10, 130, 19, 177, 210, 140, 120, 39, 159, 27, 225, 239, 51, 98, 76, 60, 19, 182, 160, 27, 72, 103, 207, 194, 255, + 233, 98, 162, 66, 75, 160, 191, 66, 4, 53, 68, 4, 46, 69, 162, 76, 26, 0, 189, 7, 252, 0, 4, 175, 69, 4, 3, 251, + 67, 141, 214, 45, 73, 194, 16, 230, 142, 123, 167, 138, 252, 215, 71, 116, 214, 4, 119, 48, 44, 117, 255, 255, + 255, 159, 68, 139, 165, 225, 193, 216, 102, 159, 27, 21, 33, 228, 158, 244, 153, 230, 208, 159, 68, 158, 68, 27, + 31, 27, 187, 223, 47, 43, 60, 247, 168, 85, 255, 255, 255, 71, 4, 152, 47, 1, 92, 89, 222, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 672, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffff8ff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 673, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14756700141160328740" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14680200122845600804" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "70a80dbb32c200bf" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8669f1bccca549812d16e2480ffd8669f1bcbba8c3b91db9c2480ff4870a80dbb32c200bfa0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 204, 202, 84, 152, 18, 209, 110, 36, 128, 255, 216, 102, 159, 27, 203, 186, 140, 59, 145, + 219, 156, 36, 128, 255, 72, 112, 168, 13, 187, 50, 194, 0, 191, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 674, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8969934179651208298" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "af151627" + }, + { + "_tag": "ByteArray", + "bytearray": "fe0bf678d709b098a454f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6306518552177466296" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3466143216678416209" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "21673179978603494" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2456819818591545278" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e8fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1772009102598788711" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2838517972805075762" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3600616c92b05c" + } + ] + }, + "cborHex": "9fd8669f1b7c7b9b9c94bec46a9f9f44af1516274bfe0bf678d709b098a454f81b57854135b7f2dbb841041b301a36e422bf2f51ffd8669f1b004cffa471c71be69f1b2218609bb449e7beffff42e8fa1b189770e3eb28d6671b2764710ea19bc332ffff473600616c92b05cff", + "cborBytes": [ + 159, 216, 102, 159, 27, 124, 123, 155, 156, 148, 190, 196, 106, 159, 159, 68, 175, 21, 22, 39, 75, 254, 11, 246, + 120, 215, 9, 176, 152, 164, 84, 248, 27, 87, 133, 65, 53, 183, 242, 219, 184, 65, 4, 27, 48, 26, 54, 228, 34, 191, + 47, 81, 255, 216, 102, 159, 27, 0, 76, 255, 164, 113, 199, 27, 230, 159, 27, 34, 24, 96, 155, 180, 73, 231, 190, + 255, 255, 66, 232, 250, 27, 24, 151, 112, 227, 235, 40, 214, 103, 27, 39, 100, 113, 14, 161, 155, 195, 50, 255, + 255, 71, 54, 0, 97, 108, 146, 176, 92, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 675, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2948b9b0efeaad24" + }, + { + "_tag": "ByteArray", + "bytearray": "8c835e3461a71ee97ff328ce" + } + ] + }, + "cborHex": "9f482948b9b0efeaad244c8c835e3461a71ee97ff328ceff", + "cborBytes": [ + 159, 72, 41, 72, 185, 176, 239, 234, 173, 36, 76, 140, 131, 94, 52, 97, 167, 30, 233, 127, 243, 40, 206, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 676, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6f0c046ca2fd5e" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15225976906342795658" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15407153334611721402" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b193bf3f32572396" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e80fef05ac2c0a8b69329a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "688fa625" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fcbbb8aada322b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15385214488885573019" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4f999a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "81b9f9db" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5769134540351443833" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83ed66b2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f89a2c8a6a3196bb1c" + } + } + ] + } + ] + }, + "cborHex": "9f476f0c046ca2fd5ea0d8669f1bd34d89535cdd098a9f1bd5d13453c581bcba48b193bf3f32572396bf4be80fef05ac2c0a8b69329a44688fa625ff47fcbbb8aada322b1bd58343103337b59bffff434f999abf4481b9f9db1b5010154c5b1593794483ed66b249f89a2c8a6a3196bb1cffff", + "cborBytes": [ + 159, 71, 111, 12, 4, 108, 162, 253, 94, 160, 216, 102, 159, 27, 211, 77, 137, 83, 92, 221, 9, 138, 159, 27, 213, + 209, 52, 83, 197, 129, 188, 186, 72, 177, 147, 191, 63, 50, 87, 35, 150, 191, 75, 232, 15, 239, 5, 172, 44, 10, + 139, 105, 50, 154, 68, 104, 143, 166, 37, 255, 71, 252, 187, 184, 170, 218, 50, 43, 27, 213, 131, 67, 16, 51, 55, + 181, 155, 255, 255, 67, 79, 153, 154, 191, 68, 129, 185, 249, 219, 27, 80, 16, 21, 76, 91, 21, 147, 121, 68, 131, + 237, 102, 178, 73, 248, 154, 44, 138, 106, 49, 150, 187, 28, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 677, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5386219236871844549" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b4abfb1dbc81f32c580ffff", + "cborBytes": [159, 216, 102, 159, 27, 74, 191, 177, 219, 200, 31, 50, 197, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 678, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d13c6f449bcd47" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1887159658893831010" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ba3a5d23c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29082290f9f3dc6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a673ca0eba13" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "65" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f13e218be2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f2630" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e387e1465d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc011c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "208ae9792ab538" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15183665940271890014" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1885657841935390778" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "862840695104772810" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10448506733552218695" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9331630361862459174" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ddcb5a6ccc50499cc44a372" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8178667897398391065" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2256" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af378de76e24302baa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e7d856d7fac89e90f8d99" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5190969711834954350" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2158b81b7355d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13696893270868832112" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbad871855691300c33ad4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12532387370105398809" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f47d13c6f449bcd479fbf1b1a3089b60ed06b62453ba3a5d23c4829082290f9f3dc6b46a673ca0eba13ffbf416545f13e218be2437f263045e387e1465d43dc011c47208ae9792ab538ffffa0a0d8669f1bd2b737b9e61a7e5e9fbf1b1a2b33d10c7d183a1b0bf96d0a69789aca1b91008d83fea832471b81809c5f7e0fcf26ffbf4c0ddcb5a6ccc50499cc44a3721b7180771ec852711942225649af378de76e24302baa4b3e7d856d7fac89e90f8d99410341b01b480a077331bbfa6e47f2158b81b7355d1bbe1523dc50932f704bfbad871855691300c33ad41badebfbe9e6b96619ffffffff", + "cborBytes": [ + 159, 71, 209, 60, 111, 68, 155, 205, 71, 159, 191, 27, 26, 48, 137, 182, 14, 208, 107, 98, 69, 59, 163, 165, 210, + 60, 72, 41, 8, 34, 144, 249, 243, 220, 107, 70, 166, 115, 202, 14, 186, 19, 255, 191, 65, 101, 69, 241, 62, 33, + 139, 226, 67, 127, 38, 48, 69, 227, 135, 225, 70, 93, 67, 220, 1, 28, 71, 32, 138, 233, 121, 42, 181, 56, 255, + 255, 160, 160, 216, 102, 159, 27, 210, 183, 55, 185, 230, 26, 126, 94, 159, 191, 27, 26, 43, 51, 209, 12, 125, 24, + 58, 27, 11, 249, 109, 10, 105, 120, 154, 202, 27, 145, 0, 141, 131, 254, 168, 50, 71, 27, 129, 128, 156, 95, 126, + 15, 207, 38, 255, 191, 76, 13, 220, 181, 166, 204, 197, 4, 153, 204, 68, 163, 114, 27, 113, 128, 119, 30, 200, 82, + 113, 25, 66, 34, 86, 73, 175, 55, 141, 231, 110, 36, 48, 43, 170, 75, 62, 125, 133, 109, 127, 172, 137, 233, 15, + 141, 153, 65, 3, 65, 176, 27, 72, 10, 7, 115, 49, 187, 250, 110, 71, 242, 21, 139, 129, 183, 53, 93, 27, 190, 21, + 35, 220, 80, 147, 47, 112, 75, 251, 173, 135, 24, 85, 105, 19, 0, 195, 58, 212, 27, 173, 235, 251, 233, 230, 185, + 102, 25, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 679, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + ] + } + ] + }, + "cborHex": "9f9f1bffffffffffffffecffff", + "cborBytes": [159, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 680, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5186435948081100646" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4621292890681244876" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f57a23ec0c869db31236" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1622897813338911207" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17219340327176762301" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "55a083" + }, + { + "_tag": "ByteArray", + "bytearray": "41623c48" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14586459751590696947" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de" + }, + { + "_tag": "ByteArray", + "bytearray": "8d" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fa01b47f9ec040fb0b7669f1b402221664017fccc4af57a23ec0c869db312361b1685b0f676d2f1e7ffd8669f1beef762cbabedf3bd9f4355a0834441623c481bca6d83dc981897f341de418dffffffff", + "cborBytes": [ + 159, 159, 160, 27, 71, 249, 236, 4, 15, 176, 183, 102, 159, 27, 64, 34, 33, 102, 64, 23, 252, 204, 74, 245, 122, + 35, 236, 12, 134, 157, 179, 18, 54, 27, 22, 133, 176, 246, 118, 210, 241, 231, 255, 216, 102, 159, 27, 238, 247, + 98, 203, 171, 237, 243, 189, 159, 67, 85, 160, 131, 68, 65, 98, 60, 72, 27, 202, 109, 131, 220, 152, 24, 151, 243, + 65, 222, 65, 141, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 681, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ba6202011006" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2976708245370562118" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14426295891300412420" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2997124770964593500" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "017e06069a010604ef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10254321310790360540" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13271805844909226819" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1432180314205751588" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "90212d11e4b3" + } + ] + }, + "cborHex": "9f9f0146ba62020110061b294f6460bd49e646bf0a1bc8347fade9a36c040c051b2997ed1988de5b5c49017e06069a010604ef1b8e4eaae706609ddc4175ff1bb82eed1951c47b43ff9f1b13e02068628a8924ffd90507804690212d11e4b3ff", + "cborBytes": [ + 159, 159, 1, 70, 186, 98, 2, 1, 16, 6, 27, 41, 79, 100, 96, 189, 73, 230, 70, 191, 10, 27, 200, 52, 127, 173, 233, + 163, 108, 4, 12, 5, 27, 41, 151, 237, 25, 136, 222, 91, 92, 73, 1, 126, 6, 6, 154, 1, 6, 4, 239, 27, 142, 78, 170, + 231, 6, 96, 157, 220, 65, 117, 255, 27, 184, 46, 237, 25, 81, 196, 123, 67, 255, 159, 27, 19, 224, 32, 104, 98, + 138, 137, 36, 255, 217, 5, 7, 128, 70, 144, 33, 45, 17, 228, 179, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 682, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f844f8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1374102259246572988" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12564578766862636492" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4002618206218646392" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "104437c66e5bc39a91" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6178805331509631409" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12f4e436b6fdb8257399bb89" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8544989717259242738" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6047916171596771045" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9541438867377512363" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "963ead7d1d767cd478bfbf4d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17590180130541278985" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "beb099" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11450997560955537543" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7285776582372587533" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f9f43f844f8bf1b1311cab9777425bc1bae5e59d1874355cc1b378c280d412c737849104437c66e5bc39a911b55bf86b658ebd9b14c12f4e436b6fdb8257399bb891b7695e6dfe29a4cf21b53ee83b6ff5daee51b846a0018e0245fab4c963ead7d1d767cd478bfbf4d1bf41cdfa1c80c170943beb099ff9f1b9eea1d9c989e88871b651c4733312d780dffffa0ff", + "cborBytes": [ + 159, 159, 67, 248, 68, 248, 191, 27, 19, 17, 202, 185, 119, 116, 37, 188, 27, 174, 94, 89, 209, 135, 67, 85, 204, + 27, 55, 140, 40, 13, 65, 44, 115, 120, 73, 16, 68, 55, 198, 110, 91, 195, 154, 145, 27, 85, 191, 134, 182, 88, + 235, 217, 177, 76, 18, 244, 228, 54, 182, 253, 184, 37, 115, 153, 187, 137, 27, 118, 149, 230, 223, 226, 154, 76, + 242, 27, 83, 238, 131, 182, 255, 93, 174, 229, 27, 132, 106, 0, 24, 224, 36, 95, 171, 76, 150, 62, 173, 125, 29, + 118, 124, 212, 120, 191, 191, 77, 27, 244, 28, 223, 161, 200, 12, 23, 9, 67, 190, 176, 153, 255, 159, 27, 158, + 234, 29, 156, 152, 158, 136, 135, 27, 101, 28, 71, 51, 49, 45, 120, 13, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 683, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1701109070242986571" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eeede5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17520387628479494708" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0513698da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5679c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4461bfb696e38e62a59b76" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0ff43a7951a94c7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73364af82e8251459ab42c" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d5e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13384338548248624179" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b179b8dafc0073a4b43eeede51bf324ebb89aab3a3445d0513698da43a5679c4b4461bfb696e38e62a59b7648e0ff43a7951a94c74b73364af82e8251459ab42cffbf423d5e1bb9beb8ff11ed3c33ffff", + "cborBytes": [ + 159, 191, 27, 23, 155, 141, 175, 192, 7, 58, 75, 67, 238, 237, 229, 27, 243, 36, 235, 184, 154, 171, 58, 52, 69, + 208, 81, 54, 152, 218, 67, 165, 103, 156, 75, 68, 97, 191, 182, 150, 227, 142, 98, 165, 155, 118, 72, 224, 255, + 67, 167, 149, 26, 148, 199, 75, 115, 54, 74, 248, 46, 130, 81, 69, 154, 180, 44, 255, 191, 66, 61, 94, 27, 185, + 190, 184, 255, 17, 237, 60, 51, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 684, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "010606fc0306fb01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "020708" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6eddc6a8406" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f67" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d1b421b2e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bde6f83773890347aba4c333" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b5cf2d0cfe504" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e739b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5069197877526727222" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15669951489065402016" + } + } + ] + }, + "cborHex": "9fbf48010606fc0306fb0141004302070846f6eddc6a8406420f674118451d1b421b2e4cbde6f83773890347aba4c333474b5cf2d0cfe5040c43e739b21b4659689ca2250a36ff1bd976d9db3958bea0ff", + "cborBytes": [ + 159, 191, 72, 1, 6, 6, 252, 3, 6, 251, 1, 65, 0, 67, 2, 7, 8, 70, 246, 237, 220, 106, 132, 6, 66, 15, 103, 65, 24, + 69, 29, 27, 66, 27, 46, 76, 189, 230, 248, 55, 115, 137, 3, 71, 171, 164, 195, 51, 71, 75, 92, 242, 208, 207, 229, + 4, 12, 67, 231, 57, 178, 27, 70, 89, 104, 156, 162, 37, 10, 54, 255, 27, 217, 118, 217, 219, 57, 88, 190, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 685, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6275c6672e190763e3f1bc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "362c3cb4aa5e21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10753786578459844669" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8223218765651118550" + } + } + ] + }, + "cborHex": "9f4b6275c6672e190763e3f1bcbf47362c3cb4aa5e211b953d1feac776603dff1b721ebde61cf609d6ff", + "cborBytes": [ + 159, 75, 98, 117, 198, 103, 46, 25, 7, 99, 227, 241, 188, 191, 71, 54, 44, 60, 180, 170, 94, 33, 27, 149, 61, 31, + 234, 199, 118, 96, 61, 255, 27, 114, 30, 189, 230, 28, 246, 9, 214, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 686, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15685179224722319689" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4393a872fe9a33d9ce9f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11708211645340382215" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4edef72b7cd78ba3f146df" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15081478536752379768" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b55b9357a17248b25e4ac4e3" + }, + { + "_tag": "ByteArray", + "bytearray": "c2" + }, + { + "_tag": "ByteArray", + "bytearray": "de0c21a895cb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13067607865822927765" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c1ff7181aa9d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03b36620c22916c3100f7b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11466282002521576077" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19fd040732b9e8598c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c99dc456f07caf04af946a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b97668a16e1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97453cf6b14152645699d97f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13639494912093390327" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6c8d9202d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e58e5bec83df" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bd9acf366b7e929499f4a4393a872fe9a33d9ce9fd8669f1ba27bec756b9af4079f4b4edef72b7cd78ba3f146dfffffffffd8669f1bd14c2cd2f6cdb7789f9f4cb55b9357a17248b25e4ac4e341c246de0c21a895cb1bb559781e6a79db95ffffff46c1ff7181aa9dbf4b03b36620c22916c3100f7b1b9f206abaf6c0d28d4919fd040732b9e8598c4bc99dc456f07caf04af946a4179465b97668a16e14c97453cf6b14152645699d97f1bbd49385b7f1305f745b6c8d9202d46e58e5bec83dfffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 217, 172, 243, 102, 183, 233, 41, 73, 159, 74, 67, 147, 168, 114, 254, 154, 51, 217, 206, + 159, 216, 102, 159, 27, 162, 123, 236, 117, 107, 154, 244, 7, 159, 75, 78, 222, 247, 43, 124, 215, 139, 163, 241, + 70, 223, 255, 255, 255, 255, 216, 102, 159, 27, 209, 76, 44, 210, 246, 205, 183, 120, 159, 159, 76, 181, 91, 147, + 87, 161, 114, 72, 178, 94, 74, 196, 227, 65, 194, 70, 222, 12, 33, 168, 149, 203, 27, 181, 89, 120, 30, 106, 121, + 219, 149, 255, 255, 255, 70, 193, 255, 113, 129, 170, 157, 191, 75, 3, 179, 102, 32, 194, 41, 22, 195, 16, 15, + 123, 27, 159, 32, 106, 186, 246, 192, 210, 141, 73, 25, 253, 4, 7, 50, 185, 232, 89, 140, 75, 201, 157, 196, 86, + 240, 124, 175, 4, 175, 148, 106, 65, 121, 70, 91, 151, 102, 138, 22, 225, 76, 151, 69, 60, 246, 177, 65, 82, 100, + 86, 153, 217, 127, 27, 189, 73, 56, 91, 127, 19, 5, 247, 69, 182, 200, 217, 32, 45, 70, 229, 142, 91, 236, 131, + 223, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 687, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8956988150011768546" + } + } + ] + }, + "cborHex": "9f1b7c4d9d442ad5aee2ff", + "cborBytes": [159, 27, 124, 77, 157, 68, 42, 213, 174, 226, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 688, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1054306635235278199" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17326795077115680064" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a77d9d165" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16172485709617034652" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6086939026143052754" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10135396426542271850" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1911209486535052135" + } + } + ] + } + ] + }, + "cborHex": "9f1b0ea1a64c7d893d77bf1bf075245243779540457a77d9d165ff1be070361140cdf59cd8669f1b547926cb56b803d29f1b8ca82959add0cd6a1b1a85fae6e8474b67ffffff", + "cborBytes": [ + 159, 27, 14, 161, 166, 76, 125, 137, 61, 119, 191, 27, 240, 117, 36, 82, 67, 119, 149, 64, 69, 122, 119, 217, 209, + 101, 255, 27, 224, 112, 54, 17, 64, 205, 245, 156, 216, 102, 159, 27, 84, 121, 38, 203, 86, 184, 3, 210, 159, 27, + 140, 168, 41, 89, 173, 208, 205, 106, 27, 26, 133, 250, 230, 232, 71, 75, 103, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 689, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0e7eb21e370b96" + } + ] + }, + "cborHex": "9f470e7eb21e370b96ff", + "cborBytes": [159, 71, 14, 126, 178, 30, 55, 11, 150, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 690, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + ] + }, + "cborHex": "9f001bfffffffffffffff4ff", + "cborBytes": [159, 0, 27, 255, 255, 255, 255, 255, 255, 255, 244, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 691, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6279392381129016772" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8797386268510779312" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6351692071620951584" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1076" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "181aac6c73416c05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9527855624867177455" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "462e1132" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7137903870607284014" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad6188eaa4582ddea2b80368" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8564" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f70a739a3c2e29a7399c63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15672287343299190457" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15335769188304244573" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10006693123439746571" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "19dd" + }, + { + "_tag": "ByteArray", + "bytearray": "b6bc1f3ef85fa8b8627a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18286341298231346539" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7de79dd4aea128057ba242" + }, + { + "_tag": "ByteArray", + "bytearray": "6c0b75712a7d5f255f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8963151416329868478" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15669305308546066945" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9223358338423951337" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18324884915187454489" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12961436665918881720" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "174d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8372f79e834118c7321cb8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5306" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b01a4cea4261253" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5aec85" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15939611793233111193" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecf62e668aa237" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f1b5724e219da7d45c41b7a1698335e7bf7b01b5825be4953a1be20ffffbf42107648181aac6c73416c054221f41b8439be35c76a63ef44462e11321b630eedc0886ed72e4cad6188eaa4582ddea2b803684285644bf70a739a3c2e29a7399c631bd97f264dab32deb941f81bd4d398d30a414f5dff9fa0d8669f1b8adeea60c6f85e0b9f4219dd4ab6bc1f3ef85fa8b8627a1bfdc622868aa2856b4b7de79dd4aea128057ba242496c0b75712a7d5f255fffff1b7c6382b96e6194bed8669f1bd9748e289907ea019f1b7ffff38a95e58fe91bfe4f11bdafa992191bb3e045f99ad17fb8ffffffbf42174d4b8372f79e834118c7321cb8425306482b01a4cea4261253435aec851bdd34e0796949689947ecf62e668aa2374196ffff", + "cborBytes": [ + 159, 159, 159, 27, 87, 36, 226, 25, 218, 125, 69, 196, 27, 122, 22, 152, 51, 94, 123, 247, 176, 27, 88, 37, 190, + 73, 83, 161, 190, 32, 255, 255, 191, 66, 16, 118, 72, 24, 26, 172, 108, 115, 65, 108, 5, 66, 33, 244, 27, 132, 57, + 190, 53, 199, 106, 99, 239, 68, 70, 46, 17, 50, 27, 99, 14, 237, 192, 136, 110, 215, 46, 76, 173, 97, 136, 234, + 164, 88, 45, 222, 162, 184, 3, 104, 66, 133, 100, 75, 247, 10, 115, 154, 60, 46, 41, 167, 57, 156, 99, 27, 217, + 127, 38, 77, 171, 50, 222, 185, 65, 248, 27, 212, 211, 152, 211, 10, 65, 79, 93, 255, 159, 160, 216, 102, 159, 27, + 138, 222, 234, 96, 198, 248, 94, 11, 159, 66, 25, 221, 74, 182, 188, 31, 62, 248, 95, 168, 184, 98, 122, 27, 253, + 198, 34, 134, 138, 162, 133, 107, 75, 125, 231, 157, 212, 174, 161, 40, 5, 123, 162, 66, 73, 108, 11, 117, 113, + 42, 125, 95, 37, 95, 255, 255, 27, 124, 99, 130, 185, 110, 97, 148, 190, 216, 102, 159, 27, 217, 116, 142, 40, + 153, 7, 234, 1, 159, 27, 127, 255, 243, 138, 149, 229, 143, 233, 27, 254, 79, 17, 189, 175, 169, 146, 25, 27, 179, + 224, 69, 249, 154, 209, 127, 184, 255, 255, 255, 191, 66, 23, 77, 75, 131, 114, 247, 158, 131, 65, 24, 199, 50, + 28, 184, 66, 83, 6, 72, 43, 1, 164, 206, 164, 38, 18, 83, 67, 90, 236, 133, 27, 221, 52, 224, 121, 105, 73, 104, + 153, 71, 236, 246, 46, 102, 138, 162, 55, 65, 150, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 692, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13793408085772523183" + } + } + ] + }, + "cborHex": "9f1bbf6c0792ca78d6afff", + "cborBytes": [159, 27, 191, 108, 7, 146, 202, 120, 214, 175, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 693, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10340070777351211484" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1146684977085062764" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11966027029121564662" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03d7ed4d711f30c077a23e" + }, + { + "_tag": "ByteArray", + "bytearray": "c25c" + }, + { + "_tag": "ByteArray", + "bytearray": "5d96c8de3cb17b8cb00e39e6" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1977836590344072984" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3745957156278072648" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17958126188998156748" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b8f7f4f96846a89dc9f9f1b0fe9d7e9486e9e6c1ba60fde2f2b837ff64b03d7ed4d711f30c077a23e42c25c4c5d96c8de3cb17b8cb00e39e6ffd8669f1b1b72afe65f3a6f189f1b33fc502fcbc975481bf938149f66dfe1ccffffa0ffffd8669f1bffffffffffffffee80ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 143, 127, 79, 150, 132, 106, 137, 220, 159, 159, 27, 15, 233, 215, 233, 72, 110, 158, 108, + 27, 166, 15, 222, 47, 43, 131, 127, 246, 75, 3, 215, 237, 77, 113, 31, 48, 192, 119, 162, 62, 66, 194, 92, 76, 93, + 150, 200, 222, 60, 177, 123, 140, 176, 14, 57, 230, 255, 216, 102, 159, 27, 27, 114, 175, 230, 95, 58, 111, 24, + 159, 27, 51, 252, 80, 47, 203, 201, 117, 72, 27, 249, 56, 20, 159, 102, 223, 225, 204, 255, 255, 160, 255, 255, + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 694, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14935302294795598188" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "4f1b72b12502" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4052293158617649532" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5510852990407087372" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4704257100800335491" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8aee0da6ba9a1ddb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16207034374923277874" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2554331987203217468" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e74a246ea09e6d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9720892043043670036" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "add1295246" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2443993324615534789" + } + } + ] + }, + "cborHex": "9fd8669f1bcf44da4e765e396c80ff464f1b72b12502bf1b383ca3286526917c1b4c7a7b98d69d150c1b4148e0e8b1501e83488aee0da6ba9a1ddb1be0eaf3e53bd8d6321b2372cf68afaa583c47e74a246ea09e6d1b86e78bcf458a0814ff45add12952461b21eacefadb2288c5ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 207, 68, 218, 78, 118, 94, 57, 108, 128, 255, 70, 79, 27, 114, 177, 37, 2, 191, 27, 56, + 60, 163, 40, 101, 38, 145, 124, 27, 76, 122, 123, 152, 214, 157, 21, 12, 27, 65, 72, 224, 232, 177, 80, 30, 131, + 72, 138, 238, 13, 166, 186, 154, 29, 219, 27, 224, 234, 243, 229, 59, 216, 214, 50, 27, 35, 114, 207, 104, 175, + 170, 88, 60, 71, 231, 74, 36, 110, 160, 158, 109, 27, 134, 231, 139, 207, 69, 138, 8, 20, 255, 69, 173, 209, 41, + 82, 70, 27, 33, 234, 206, 250, 219, 34, 136, 197, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 695, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01d1c5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f0642" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12256499232909690759" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15584223288996094408" + } + } + ] + }, + "cborHex": "9fbf4301d1c508438f06421baa17d51d576e0787ff1bd846488338fb61c8ff", + "cborBytes": [ + 159, 191, 67, 1, 209, 197, 8, 67, 143, 6, 66, 27, 170, 23, 213, 29, 87, 110, 7, 135, 255, 27, 216, 70, 72, 131, + 56, 251, 97, 200, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 696, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e88066024c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8107035214460428248" + } + } + ] + }, + "cborHex": "9f45e88066024c1b7081f9931b7f1fd8ff", + "cborBytes": [159, 69, 232, 128, 102, 2, 76, 27, 112, 129, 249, 147, 27, 127, 31, 216, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 697, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a1d9836bc268e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8759445617900400501" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "856767857651234550" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16372154882454103780" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4041280012034181071" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16593472136532017382" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f47a1d9836bc268e81b798fcd61444e2f751b0be3d9d3c24636f6d8669f1be335941f485aa6e49fbf1b381582c2632f07cf1be647dafe005540e6ff80ffffff", + "cborBytes": [ + 159, 71, 161, 217, 131, 107, 194, 104, 232, 27, 121, 143, 205, 97, 68, 78, 47, 117, 27, 11, 227, 217, 211, 194, + 70, 54, 246, 216, 102, 159, 27, 227, 53, 148, 31, 72, 90, 166, 228, 159, 191, 27, 56, 21, 130, 194, 99, 47, 7, + 207, 27, 230, 71, 218, 254, 0, 85, 64, 230, 255, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 698, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5424ffed374dc2a44cf7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1818285625843109764" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6104225992837051517" + } + } + ] + } + ] + }, + "cborHex": "9fbf4a5424ffed374dc2a44cf71b193bd9249c93cf84ff9fa01b54b69132ebc2347dffff", + "cborBytes": [ + 159, 191, 74, 84, 36, 255, 237, 55, 77, 194, 164, 76, 247, 27, 25, 59, 217, 36, 156, 147, 207, 132, 255, 159, 160, + 27, 84, 182, 145, 50, 235, 194, 52, 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 699, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12559523705216522422" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8b4b060ab355939375925f" + }, + { + "_tag": "ByteArray", + "bytearray": "ffa9c70c" + }, + { + "_tag": "ByteArray", + "bytearray": "e740" + }, + { + "_tag": "ByteArray", + "bytearray": "2780414cf96d4f27b793f9" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3a4a27d5b158eb77f4a764" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4311646568498928293" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bd6a7bc8449125864e08f5de" + }, + { + "_tag": "ByteArray", + "bytearray": "2a56cd415f69361820a0bfe9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10129581351782604513" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "00f724" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4860655201891782920" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7819283612577060700" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15029143226953123935" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15407180690563200446" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f82426f13d0e50c4acd759" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2147418624532251502" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3743590e1eb2a292c4bb" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5729813915642511582" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15515453632191937373" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dc80d6" + }, + { + "_tag": "ByteArray", + "bytearray": "070ecf46e5c8" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10833383718121539055" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e40f" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f3c9fc" + } + ] + }, + "cborHex": "9fbf42a6a81bae4c6444458758b6ffd8799f9f4b8b4b060ab355939375925f44ffa9c70c42e7404b2780414cf96d4f27b793f9ff4b3a4a27d5b158eb77f4a764d8669f1b3bd60bb5c0691aa59f4cbd6a7bc8449125864e08f5de4c2a56cd415f69361820a0bfe91b8c938092146c5ee141f3ffff4300f724d8669f1b437484273c6a11089f1b6c83ad046db0575c1bd0923e231902485f1bd5d14d351346f5be4bf82426f13d0e50c4acd759ffffffd8669f1b1dcd29dc8b4d836e9f9f4a3743590e1eb2a292c4bbffd8669f1b4f846365fef640de9f1bd751f6dfc3d83b5d43dc80d646070ecf46e5c8ffffd8669f1b9657e9180a2285ef9f42e40fffffffff43f3c9fcff", + "cborBytes": [ + 159, 191, 66, 166, 168, 27, 174, 76, 100, 68, 69, 135, 88, 182, 255, 216, 121, 159, 159, 75, 139, 75, 6, 10, 179, + 85, 147, 147, 117, 146, 95, 68, 255, 169, 199, 12, 66, 231, 64, 75, 39, 128, 65, 76, 249, 109, 79, 39, 183, 147, + 249, 255, 75, 58, 74, 39, 213, 177, 88, 235, 119, 244, 167, 100, 216, 102, 159, 27, 59, 214, 11, 181, 192, 105, + 26, 165, 159, 76, 189, 106, 123, 200, 68, 145, 37, 134, 78, 8, 245, 222, 76, 42, 86, 205, 65, 95, 105, 54, 24, 32, + 160, 191, 233, 27, 140, 147, 128, 146, 20, 108, 94, 225, 65, 243, 255, 255, 67, 0, 247, 36, 216, 102, 159, 27, 67, + 116, 132, 39, 60, 106, 17, 8, 159, 27, 108, 131, 173, 4, 109, 176, 87, 92, 27, 208, 146, 62, 35, 25, 2, 72, 95, + 27, 213, 209, 77, 53, 19, 70, 245, 190, 75, 248, 36, 38, 241, 61, 14, 80, 196, 172, 215, 89, 255, 255, 255, 216, + 102, 159, 27, 29, 205, 41, 220, 139, 77, 131, 110, 159, 159, 74, 55, 67, 89, 14, 30, 178, 162, 146, 196, 187, 255, + 216, 102, 159, 27, 79, 132, 99, 101, 254, 246, 64, 222, 159, 27, 215, 81, 246, 223, 195, 216, 59, 93, 67, 220, + 128, 214, 70, 7, 14, 207, 70, 229, 200, 255, 255, 216, 102, 159, 27, 150, 87, 233, 24, 10, 34, 133, 239, 159, 66, + 228, 15, 255, 255, 255, 255, 67, 243, 201, 252, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 700, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f807f9f3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13589126571788907605" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5707011645143165436" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b5b64" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7461429541768447130" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12008547228526687438" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16207339581301362461" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15857019677392877520" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f44f807f9f39f1bbc96469e674cb455bf1b4f3360daadc6a9fc438b5b641b678c52a2c9b6c49a1ba6a6ee1490d5b4ce1be0ec097aa1988f1d1bdc0f7361eb61b7d0ffffff", + "cborBytes": [ + 159, 68, 248, 7, 249, 243, 159, 27, 188, 150, 70, 158, 103, 76, 180, 85, 191, 27, 79, 51, 96, 218, 173, 198, 169, + 252, 67, 139, 91, 100, 27, 103, 140, 82, 162, 201, 182, 196, 154, 27, 166, 166, 238, 20, 144, 213, 180, 206, 27, + 224, 236, 9, 122, 161, 152, 143, 29, 27, 220, 15, 115, 97, 235, 97, 183, 208, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 701, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18206342992701400499" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8b39ae0ccbf70dc2b8b4da" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18254830124532044100" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3703faa6fd4a94f320db" + }, + { + "_tag": "ByteArray", + "bytearray": "58ce90e3fb34b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18103791586489504132" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "974984899378602435" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "84" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16636762741782267348" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "889e59d54188543f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2116460b14c95ce5ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfe3a4df95fb37f27e4228" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1385641286227708070" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfca9ec7d92e3a5b39f4b8b39ae0ccbf70dc2b8b4da9f1bfd562f47afd511444a3703faa6fd4a94f320db4758ce90e3fb34b71bfb3d9687a8699184ffd8669f1b0d87d799acd4e1c380ffffffbf41841be6e1a7917c62c5d448889e59d54188543f492116460b14c95ce5ff4bdfe3a4df95fb37f27e42281b133ac9688bb7c8a6ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 252, 169, 236, 125, 146, 227, 165, 179, 159, 75, 139, 57, 174, 12, 203, 247, 13, 194, 184, + 180, 218, 159, 27, 253, 86, 47, 71, 175, 213, 17, 68, 74, 55, 3, 250, 166, 253, 74, 148, 243, 32, 219, 71, 88, + 206, 144, 227, 251, 52, 183, 27, 251, 61, 150, 135, 168, 105, 145, 132, 255, 216, 102, 159, 27, 13, 135, 215, 153, + 172, 212, 225, 195, 128, 255, 255, 255, 191, 65, 132, 27, 230, 225, 167, 145, 124, 98, 197, 212, 72, 136, 158, 89, + 213, 65, 136, 84, 63, 73, 33, 22, 70, 11, 20, 201, 92, 229, 255, 75, 223, 227, 164, 223, 149, 251, 55, 242, 126, + 66, 40, 27, 19, 58, 201, 104, 139, 183, 200, 166, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 702, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14003735346825232305" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8151095591848305385" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17687495955120384293" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c414d49b00" + } + } + ] + } + ] + }, + "cborHex": "9fbf1bc257431a5c197fb11b711e8241225ee2e91bf5769bdbdb1be92545c414d49b00ffff", + "cborBytes": [ + 159, 191, 27, 194, 87, 67, 26, 92, 25, 127, 177, 27, 113, 30, 130, 65, 34, 94, 226, 233, 27, 245, 118, 155, 219, + 219, 27, 233, 37, 69, 196, 20, 212, 155, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 703, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6966965015847327857" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11933104847155811648" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7221161511960168722" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17187067495078447741" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11833078612572208680" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12154046241400022436" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12726259407901939094" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba757d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15352614566907340459" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa283f02111d68a686" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2194467820399832645" + } + }, + { + "_tag": "ByteArray", + "bytearray": "406defa97fcb" + }, + { + "_tag": "ByteArray", + "bytearray": "82a54126" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5996068179333285117" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8928577720009572065" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6df8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3667598954153864098" + } + } + ] + }, + "cborHex": "9fbf1b60afa1c4f42758711ba59ae7a25a36d5401b6436b822c21bc9121bee84bad366d04a7d1ba4378a4dc5a37e281ba8abd8a96251e5a41bb09cc1813f77d59643ba757dff9fd8669f1bd50f719b61ffe6ab9f49fa283f02111d68a6861b1e7450db19f52e4546406defa97fcb4482a54126ffff1b5336503d962f04fd1b7be8ae2176a33ee1426df8ff1b32e5edd128ef6ba2ff", + "cborBytes": [ + 159, 191, 27, 96, 175, 161, 196, 244, 39, 88, 113, 27, 165, 154, 231, 162, 90, 54, 213, 64, 27, 100, 54, 184, 34, + 194, 27, 201, 18, 27, 238, 132, 186, 211, 102, 208, 74, 125, 27, 164, 55, 138, 77, 197, 163, 126, 40, 27, 168, + 171, 216, 169, 98, 81, 229, 164, 27, 176, 156, 193, 129, 63, 119, 213, 150, 67, 186, 117, 125, 255, 159, 216, 102, + 159, 27, 213, 15, 113, 155, 97, 255, 230, 171, 159, 73, 250, 40, 63, 2, 17, 29, 104, 166, 134, 27, 30, 116, 80, + 219, 25, 245, 46, 69, 70, 64, 109, 239, 169, 127, 203, 68, 130, 165, 65, 38, 255, 255, 27, 83, 54, 80, 61, 150, + 47, 4, 253, 27, 123, 232, 174, 33, 118, 163, 62, 225, 66, 109, 248, 255, 27, 50, 229, 237, 209, 40, 239, 107, 162, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 704, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3079" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8216a221bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2944169530277189122" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f9ef69254" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b39b90f920" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aaea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb3d6dfc532c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17104431164685167851" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3082884599951811735" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10033949472218230834" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5690202659285410420" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c69e058325" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9228357734851812982" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10903360948078660110" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17798464979892552595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15395486323771663776" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18267997034639107978" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6dd888791c10b635" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "501765791524354632" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "936ab3fc32918e94b566" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3211838709382597515" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18322200915985000348" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f9e0b1218dffb0e8f3a50f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16446394600366595614" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11511783425093524293" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15387422045983592704" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13785751500828760309" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e2dbbcf321e351f0beb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13911714991765249184" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + }, + "cborHex": "9fbf423079458216a221bb413c1b28dbca96c2b35602459f9ef6925445b39b90f92042aaea46fb3d6dfc532cffd8669f1bed5f2585682e2ceb9fbf1b2ac89b35b7a664971b8b3fbfe201c930321b4ef7a92baeb0a27445c69e0583251b8011b67746121e761b9750850388184a0e1bf700d99951b9c3931bd5a7c13e20cb65a01bfd84f683d78da78a486dd888791c10b635ffd8669f1b06f6a15434407a489f4a936ab3fc32918e94b5661b2c92be4a04994b8b1bfe4588a86c9f679cffff9f4bf9e0b1218dffb0e8f3a50f1be43d54c096c0de1eff1b9fc2120877eddb45ffffbf1bd58b1ad323ddd1001bbf50d3f330b4d8f54a4e2dbbcf321e351f0beb1bc1105713dca4dca0ff05ff", + "cborBytes": [ + 159, 191, 66, 48, 121, 69, 130, 22, 162, 33, 187, 65, 60, 27, 40, 219, 202, 150, 194, 179, 86, 2, 69, 159, 158, + 246, 146, 84, 69, 179, 155, 144, 249, 32, 66, 170, 234, 70, 251, 61, 109, 252, 83, 44, 255, 216, 102, 159, 27, + 237, 95, 37, 133, 104, 46, 44, 235, 159, 191, 27, 42, 200, 155, 53, 183, 166, 100, 151, 27, 139, 63, 191, 226, 1, + 201, 48, 50, 27, 78, 247, 169, 43, 174, 176, 162, 116, 69, 198, 158, 5, 131, 37, 27, 128, 17, 182, 119, 70, 18, + 30, 118, 27, 151, 80, 133, 3, 136, 24, 74, 14, 27, 247, 0, 217, 153, 81, 185, 195, 147, 27, 213, 167, 193, 62, 32, + 203, 101, 160, 27, 253, 132, 246, 131, 215, 141, 167, 138, 72, 109, 216, 136, 121, 28, 16, 182, 53, 255, 216, 102, + 159, 27, 6, 246, 161, 84, 52, 64, 122, 72, 159, 74, 147, 106, 179, 252, 50, 145, 142, 148, 181, 102, 27, 44, 146, + 190, 74, 4, 153, 75, 139, 27, 254, 69, 136, 168, 108, 159, 103, 156, 255, 255, 159, 75, 249, 224, 177, 33, 141, + 255, 176, 232, 243, 165, 15, 27, 228, 61, 84, 192, 150, 192, 222, 30, 255, 27, 159, 194, 18, 8, 119, 237, 219, 69, + 255, 255, 191, 27, 213, 139, 26, 211, 35, 221, 209, 0, 27, 191, 80, 211, 243, 48, 180, 216, 245, 74, 78, 45, 187, + 207, 50, 30, 53, 31, 11, 235, 27, 193, 16, 87, 19, 220, 164, 220, 160, 255, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 705, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2d64aca3cd27989a28cea0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1da5ae41f6bbe42dba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3925005990913863655" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ea30fb9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f72a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a04a8e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15646045973711493093" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "749a7c840067f352866650" + }, + { + "_tag": "ByteArray", + "bytearray": "1e591cf1328fee" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6697367260984573072" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3f58be7ef58da180" + }, + { + "_tag": "ByteArray", + "bytearray": "75e9df0b4bb234a6ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15852140360190899883" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7578692381341483283" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a89dd156a77b553737e9" + }, + { + "_tag": "ByteArray", + "bytearray": "b8e3be" + }, + { + "_tag": "ByteArray", + "bytearray": "8413" + } + ] + } + ] + } + ] + }, + "cborHex": "9f4b2d64aca3cd27989a28cea0bf491da5ae41f6bbe42dba1b36786c2735b36fe7444ea30fb942f72a43a04a8e1bd921ebeab28117e5ff9f4b749a7c840067f352866650471e591cf1328feed8669f1b5cf1d40a2950fc909f483f58be7ef58da1804975e9df0b4bb234a6ed1bdbfe1dab5acfb6ab1b692cec9133d18113ffff9f4aa89dd156a77b553737e943b8e3be428413ffffff", + "cborBytes": [ + 159, 75, 45, 100, 172, 163, 205, 39, 152, 154, 40, 206, 160, 191, 73, 29, 165, 174, 65, 246, 187, 228, 45, 186, + 27, 54, 120, 108, 39, 53, 179, 111, 231, 68, 78, 163, 15, 185, 66, 247, 42, 67, 160, 74, 142, 27, 217, 33, 235, + 234, 178, 129, 23, 229, 255, 159, 75, 116, 154, 124, 132, 0, 103, 243, 82, 134, 102, 80, 71, 30, 89, 28, 241, 50, + 143, 238, 216, 102, 159, 27, 92, 241, 212, 10, 41, 80, 252, 144, 159, 72, 63, 88, 190, 126, 245, 141, 161, 128, + 73, 117, 233, 223, 11, 75, 178, 52, 166, 237, 27, 219, 254, 29, 171, 90, 207, 182, 171, 27, 105, 44, 236, 145, 51, + 209, 129, 19, 255, 255, 159, 74, 168, 157, 209, 86, 167, 123, 85, 55, 55, 233, 67, 184, 227, 190, 66, 132, 19, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 706, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2292872790374797256" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2750516184590120669" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "161270177420615183" + } + }, + { + "_tag": "ByteArray", + "bytearray": "545731e44e2b0ce682" + }, + { + "_tag": "ByteArray", + "bytearray": "b0ed790427c65be1" + }, + { + "_tag": "ByteArray", + "bytearray": "40b99dfbd52c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "934955725921817010" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "77fda6adc971d700d1d16779" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b06f65041417040e8dac2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13549943827884223393" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "838177748e53be622edcf890" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddb6180c0040" + } + } + ] + } + ] + }, + "cborHex": "9fd87e9fa01b1fd1eba79972cfc8d8669f1b262bcbe5a374f6dd9f1b023cf25f36051e0f49545731e44e2b0ce68248b0ed790427c65be14640b99dfbd52cffff1b0cf9a147744991b2ffd9050980d8669f1bfffffffffffffff99f4c77fda6adc971d700d1d16779a0ffffbf4b2b06f65041417040e8dac21bbc0b121eeb892ba14c838177748e53be622edcf89046ddb6180c0040ffff", + "cborBytes": [ + 159, 216, 126, 159, 160, 27, 31, 209, 235, 167, 153, 114, 207, 200, 216, 102, 159, 27, 38, 43, 203, 229, 163, 116, + 246, 221, 159, 27, 2, 60, 242, 95, 54, 5, 30, 15, 73, 84, 87, 49, 228, 78, 43, 12, 230, 130, 72, 176, 237, 121, 4, + 39, 198, 91, 225, 70, 64, 185, 157, 251, 213, 44, 255, 255, 27, 12, 249, 161, 71, 116, 73, 145, 178, 255, 217, 5, + 9, 128, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 76, 119, 253, 166, 173, 201, 113, 215, 0, + 209, 209, 103, 121, 160, 255, 255, 191, 75, 43, 6, 246, 80, 65, 65, 112, 64, 232, 218, 194, 27, 188, 11, 18, 30, + 235, 137, 43, 161, 76, 131, 129, 119, 116, 142, 83, 190, 98, 46, 220, 248, 144, 70, 221, 182, 24, 12, 0, 64, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 707, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3347288162855757097" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1441019025860549605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25234d5e826f0ef54f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10752124400530658576" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14592089431145978929" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2415886046653073923" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "408284713311386842" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0e" + }, + { + "_tag": "ByteArray", + "bytearray": "8eb41b92321ba1ef65032611" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fc99e1b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11528307489038091936" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cdd7b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8619235140833713900" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b73e9bdb04fab1c8cbc81e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "564f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce7b791da6dd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2960675892028015096" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d13f5ed1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7036557686119414974" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9137129028795573336" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f198ef" + }, + { + "_tag": "ByteArray", + "bytearray": "67" + }, + { + "_tag": "ByteArray", + "bytearray": "30abb1bac78d28725544dab3" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15088280801119088260" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c0ba12491d3d8ac6af3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6978458838710114995" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7745362404146451689" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17081935775563105305" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c2cb7a3a9e44" + }, + { + "_tag": "ByteArray", + "bytearray": "ef3fb1d8cda4" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9047254588256221517" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11346864461484215787" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16261874734679840651" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13429169040569134925" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b2e73f4d973e325299fbf1b13ff872b4eff5be54925234d5e826f0ef54f1b9537382cd27095101bca81840682301c31ff9f1b2186f38f3c944a031b05aa84c89825bcdaff410e4c8eb41b92321ba1ef65032611ffffbf446fc99e1b1b9ffcc694e99746a0439cdd7b1b779dacb1a4f51eec4bb73e9bdb04fab1c8cbc81e42564f46ce7b791da6dd1b29166f09976481f844d13f5ed11b61a6dfef2ab13cbeff9fd8669f1b7ecd9a70ec4524589f43f198ef41674c30abb1bac78d28725544dab3ffffff9f1bd16457728e0cae844a9c0ba12491d3d8ac6af3d8669f1b60d8775721005ab39f41b01b6b7d0e11e3d094e91bed0f3a157a79c41946c2cb7a3a9e4446ef3fb1d8cda4ffffffd8669f1b7d8e4e1d1588f94d9fd8669f1b9d78291c05454deb9f1be1adc8e97e7dd78b1bba5dfe1773cbef4dffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 46, 115, 244, 217, 115, 227, 37, 41, 159, 191, 27, 19, 255, 135, 43, 78, 255, 91, 229, 73, + 37, 35, 77, 94, 130, 111, 14, 245, 79, 27, 149, 55, 56, 44, 210, 112, 149, 16, 27, 202, 129, 132, 6, 130, 48, 28, + 49, 255, 159, 27, 33, 134, 243, 143, 60, 148, 74, 3, 27, 5, 170, 132, 200, 152, 37, 188, 218, 255, 65, 14, 76, + 142, 180, 27, 146, 50, 27, 161, 239, 101, 3, 38, 17, 255, 255, 191, 68, 111, 201, 158, 27, 27, 159, 252, 198, 148, + 233, 151, 70, 160, 67, 156, 221, 123, 27, 119, 157, 172, 177, 164, 245, 30, 236, 75, 183, 62, 155, 219, 4, 250, + 177, 200, 203, 200, 30, 66, 86, 79, 70, 206, 123, 121, 29, 166, 221, 27, 41, 22, 111, 9, 151, 100, 129, 248, 68, + 209, 63, 94, 209, 27, 97, 166, 223, 239, 42, 177, 60, 190, 255, 159, 216, 102, 159, 27, 126, 205, 154, 112, 236, + 69, 36, 88, 159, 67, 241, 152, 239, 65, 103, 76, 48, 171, 177, 186, 199, 141, 40, 114, 85, 68, 218, 179, 255, 255, + 255, 159, 27, 209, 100, 87, 114, 142, 12, 174, 132, 74, 156, 11, 161, 36, 145, 211, 216, 172, 106, 243, 216, 102, + 159, 27, 96, 216, 119, 87, 33, 0, 90, 179, 159, 65, 176, 27, 107, 125, 14, 17, 227, 208, 148, 233, 27, 237, 15, + 58, 21, 122, 121, 196, 25, 70, 194, 203, 122, 58, 158, 68, 70, 239, 63, 177, 216, 205, 164, 255, 255, 255, 216, + 102, 159, 27, 125, 142, 78, 29, 21, 136, 249, 77, 159, 216, 102, 159, 27, 157, 120, 41, 28, 5, 69, 77, 235, 159, + 27, 225, 173, 200, 233, 126, 125, 215, 139, 27, 186, 93, 254, 23, 115, 203, 239, 77, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 708, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "00025eb8ae" + } + ] + }, + "cborHex": "9fd90506804500025eb8aeff", + "cborBytes": [159, 217, 5, 6, 128, 69, 0, 2, 94, 184, 174, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 709, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2754573404163107585" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4f7d0ae31cf4a8da9c" + }, + { + "_tag": "ByteArray", + "bytearray": "a1030afc082c75b0a3c6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3098115752042446565" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11617345945197046420" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15616186404770308021" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10530087013666473059" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4324583559786081786" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15256756279907928011" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bca9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90fb20b771d2a0a417" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1941782893605497852" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17642559178104622898" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5bf9" + }, + { + "_tag": "ByteArray", + "bytearray": "f4f33a1b39aaf27dc45eae" + }, + { + "_tag": "ByteArray", + "bytearray": "d1c5efcba5" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1e674035" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01a37cfe47" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b66fb283ca73fa720bd8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37d382" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10383954742248852454" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3acc63b362e72e3c63aad20d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3807001320963570745" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81fa366c0780cd634f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09a54d4063" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1570209368748551433" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16735126407194771353" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15566777835887114865" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3117974077525795177" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "caa4c025cc2521bf19360725" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16893414174025200815" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16012596302632517232" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c2ef8f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17591268526416231855" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2215711787753697337" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7048793371689900604" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b51d71196c379d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11538550598163300371" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7fd0e7b2b7f99486" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "923cdbdb7f5a6c4731cf" + } + ] + }, + "cborHex": "9fd8669f1b263a35eaaee16b019f9f494f7d0ae31cf4a8da9c4aa1030afc082c75b0a3c6ff1b2afeb7dca9883ee59f1ba1391a95f84b6a941bd8b7d6cc0a9e5fb51b922262591f8b44631b3c0401d5c28b2dfaffbf1bd3bae300b89f47cb42bca94990fb20b771d2a0a4171b1af29940f4492bfcffd8669f1bf4d6f61923bbcf329f425bf94bf4f33a1b39aaf27dc45eae45d1c5efcba5ffffffff441e674035bf4501a37cfe474ab66fb283ca73fa720bd84337d3821b901b37d24f79cbe64c3acc63b362e72e3c63aad20d1b34d52f87f379fc394981fa366c0780cd634f4509a54d4063ff9f1b15ca8119ff3f6d09d8669f1be83f1ccd041a7f999f1bd8084df72579ba71ffffbf1b2b4544e75dcd21694ccaa4c025cc2521bf193607251bea7176afa65234af1bde382b7fb624fe70448c2ef8f81bf420bd85b18c7dafffd8669f1b1ebfca21b1b470399f1b61d25839b6b45a3c47b51d71196c379dffffd8669f1ba0212aa29a6500139f487fd0e7b2b7f99486ffffff4a923cdbdb7f5a6c4731cfff", + "cborBytes": [ + 159, 216, 102, 159, 27, 38, 58, 53, 234, 174, 225, 107, 1, 159, 159, 73, 79, 125, 10, 227, 28, 244, 168, 218, 156, + 74, 161, 3, 10, 252, 8, 44, 117, 176, 163, 198, 255, 27, 42, 254, 183, 220, 169, 136, 62, 229, 159, 27, 161, 57, + 26, 149, 248, 75, 106, 148, 27, 216, 183, 214, 204, 10, 158, 95, 181, 27, 146, 34, 98, 89, 31, 139, 68, 99, 27, + 60, 4, 1, 213, 194, 139, 45, 250, 255, 191, 27, 211, 186, 227, 0, 184, 159, 71, 203, 66, 188, 169, 73, 144, 251, + 32, 183, 113, 210, 160, 164, 23, 27, 26, 242, 153, 64, 244, 73, 43, 252, 255, 216, 102, 159, 27, 244, 214, 246, + 25, 35, 187, 207, 50, 159, 66, 91, 249, 75, 244, 243, 58, 27, 57, 170, 242, 125, 196, 94, 174, 69, 209, 197, 239, + 203, 165, 255, 255, 255, 255, 68, 30, 103, 64, 53, 191, 69, 1, 163, 124, 254, 71, 74, 182, 111, 178, 131, 202, + 115, 250, 114, 11, 216, 67, 55, 211, 130, 27, 144, 27, 55, 210, 79, 121, 203, 230, 76, 58, 204, 99, 179, 98, 231, + 46, 60, 99, 170, 210, 13, 27, 52, 213, 47, 135, 243, 121, 252, 57, 73, 129, 250, 54, 108, 7, 128, 205, 99, 79, 69, + 9, 165, 77, 64, 99, 255, 159, 27, 21, 202, 129, 25, 255, 63, 109, 9, 216, 102, 159, 27, 232, 63, 28, 205, 4, 26, + 127, 153, 159, 27, 216, 8, 77, 247, 37, 121, 186, 113, 255, 255, 191, 27, 43, 69, 68, 231, 93, 205, 33, 105, 76, + 202, 164, 192, 37, 204, 37, 33, 191, 25, 54, 7, 37, 27, 234, 113, 118, 175, 166, 82, 52, 175, 27, 222, 56, 43, + 127, 182, 36, 254, 112, 68, 140, 46, 248, 248, 27, 244, 32, 189, 133, 177, 140, 125, 175, 255, 216, 102, 159, 27, + 30, 191, 202, 33, 177, 180, 112, 57, 159, 27, 97, 210, 88, 57, 182, 180, 90, 60, 71, 181, 29, 113, 25, 108, 55, + 157, 255, 255, 216, 102, 159, 27, 160, 33, 42, 162, 154, 101, 0, 19, 159, 72, 127, 208, 231, 178, 183, 249, 148, + 134, 255, 255, 255, 74, 146, 60, 219, 219, 127, 90, 108, 71, 49, 207, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 710, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3f4cfc3da4" + } + ] + } + ] + }, + "cborHex": "9fd9050d9f453f4cfc3da4ffff", + "cborBytes": [159, 217, 5, 13, 159, 69, 63, 76, 252, 61, 164, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 711, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10790954433218787422" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4727279949039649071" + } + } + ] + }, + "cborHex": "9f1b95c12be2536eb85e1b419aac114455c12fff", + "cborBytes": [159, 27, 149, 193, 43, 226, 83, 110, 184, 94, 27, 65, 154, 172, 17, 68, 85, 193, 47, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 712, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6b1e682020b507" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2962519982247587295" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "317844951077218894" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e733db8cf6be16236d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7952231859639096729" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89d009f7523c" + } + } + ] + } + ] + }, + "cborHex": "9f476b1e682020b5071b291cfc3a4ddd2ddfbf1b0469364c8a9bea4e49e733db8cf6be16236d1b6e5c00be5d5515994689d009f7523cffff", + "cborBytes": [ + 159, 71, 107, 30, 104, 32, 32, 181, 7, 27, 41, 28, 252, 58, 77, 221, 45, 223, 191, 27, 4, 105, 54, 76, 138, 155, + 234, 78, 73, 231, 51, 219, 140, 246, 190, 22, 35, 109, 27, 110, 92, 0, 190, 93, 85, 21, 153, 70, 137, 208, 9, 247, + 82, 60, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 713, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9155868019994251918" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed3d474a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "324051715a9b77dae8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5280485879445801860" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b563" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8836063602656987944" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3703425826308573074" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10853982728802954265" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6ecfec29" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2d9a1823f581644235" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17246564217947791137" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4029104606722354008" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5df1c114bcc64b0d409" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5848375812899385955" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13015739841445795564" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7596061435642229566" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13154471331548001124" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12400681590543931762" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2322641502811360753" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13198228313480421629" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7156993166219313971" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9561502585771891514" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13283924075606060537" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9002145109779906546" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7f102d744e1dd28e9f44ed3d474abf49324051715a9b77dae81b49480dee1dd54b8442b5631b7aa00107f920cb28ffbf1b3365362add2147921b96a117c8f4866c19ff9f446ecfec29ff492d9a1823f581644235ffff1bef581ac7aebd9f21bf1b37ea414aee936b584ad5df1c114bcc64b0d4091b51299ad0d8dab2631bb4a1326cea4696ec1b696aa1a14b7fb33e1bb68e11fb0cfa73641bac1812347918d9721b203bae2413a68df11bb72986b95180e0fd1b6352bf5d84668333ff1b84b147f157e99b3ad8669f1bb859fa90c5c22df99f1b7cee0b482cf37ff2ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 127, 16, 45, 116, 78, 29, 210, 142, 159, 68, 237, 61, 71, 74, 191, 73, 50, 64, 81, 113, + 90, 155, 119, 218, 232, 27, 73, 72, 13, 238, 29, 213, 75, 132, 66, 181, 99, 27, 122, 160, 1, 7, 249, 32, 203, 40, + 255, 191, 27, 51, 101, 54, 42, 221, 33, 71, 146, 27, 150, 161, 23, 200, 244, 134, 108, 25, 255, 159, 68, 110, 207, + 236, 41, 255, 73, 45, 154, 24, 35, 245, 129, 100, 66, 53, 255, 255, 27, 239, 88, 26, 199, 174, 189, 159, 33, 191, + 27, 55, 234, 65, 74, 238, 147, 107, 88, 74, 213, 223, 28, 17, 75, 204, 100, 176, 212, 9, 27, 81, 41, 154, 208, + 216, 218, 178, 99, 27, 180, 161, 50, 108, 234, 70, 150, 236, 27, 105, 106, 161, 161, 75, 127, 179, 62, 27, 182, + 142, 17, 251, 12, 250, 115, 100, 27, 172, 24, 18, 52, 121, 24, 217, 114, 27, 32, 59, 174, 36, 19, 166, 141, 241, + 27, 183, 41, 134, 185, 81, 128, 224, 253, 27, 99, 82, 191, 93, 132, 102, 131, 51, 255, 27, 132, 177, 71, 241, 87, + 233, 155, 58, 216, 102, 159, 27, 184, 89, 250, 144, 197, 194, 45, 249, 159, 27, 124, 238, 11, 72, 44, 243, 127, + 242, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 714, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45acd9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8fd" + } + } + ] + } + ] + }, + "cborHex": "9f0abf4202fb1bffffffffffffffeb4345acd942c8fdffff", + "cborBytes": [ + 159, 10, 191, 66, 2, 251, 27, 255, 255, 255, 255, 255, 255, 255, 235, 67, 69, 172, 217, 66, 200, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 715, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15777807955956839308" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3041152822382568988" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "036bde91b6a776e5c77bb220" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "33b0c98733" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8344248412833354142" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1936546692987191744" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "54420757885831321" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5339267020971890551" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8658736038605859223" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6174827060496516906" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13261212971682786916" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7580271988880601534" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed7cfac926d0dc3e28" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9732611823279595659" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "065553f54cf2ca5854" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7066" + }, + { + "_tag": "ByteArray", + "bytearray": "aea1c021caf3ca" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14281490072065055735" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18336663760852369691" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17409413186699411" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16081179305988377268" + } + }, + { + "_tag": "ByteArray", + "bytearray": "66930a31" + }, + { + "_tag": "ByteArray", + "bytearray": "d3fddf" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12510444369820583886" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d56db2e7735416a50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb0ea558c6d1a43ec13bbb00" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8785186313412676685" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8ba79139cb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba6f07f1ff4a" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4360661527969526359" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53eec3" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12783077998285211483" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14535954846056821747" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9465" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17813167223261818516" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bdaf608bdd523b38c9fbf1b2a34586115ca261c4c036bde91b6a776e5c77bb2204533b0c987331b73ccb9b8c48c919effbf1b1adffef4fe7581c01b00c15764163148991b4a18e31121fcd7771b782a028d18f9a9971b55b1647ef25d472a1bb8094aefd3f46e641b693289363e1271be49ed7cfac926d0dc3e281b87112ee33f58e08b49065553f54cf2ca5854ff42706647aea1c021caf3caffff9f1bc6320b8dd0b49bf7bf1bfe78ea89e762411b1b003dd9c4e0bdc093ff9f1bdf2bd36086cccab44466930a3143d3fddfffffd8669f1bad9e06df057107ce9fbf491d56db2e7735416a504ccb0ea558c6d1a43ec13bbb00415f1b79eb4067f8960c4d46d8ba79139cb646ba6f07f1ff4affa0bf1b3c842e8e5055f2574353eec3ffd8669f1bb1669db637e6c75b9f1bc9ba15eaee55b3f3429465ffff1bf73515361b26ee94ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 218, 246, 8, 189, 213, 35, 179, 140, 159, 191, 27, 42, 52, 88, 97, 21, 202, 38, 28, 76, 3, + 107, 222, 145, 182, 167, 118, 229, 199, 123, 178, 32, 69, 51, 176, 201, 135, 51, 27, 115, 204, 185, 184, 196, 140, + 145, 158, 255, 191, 27, 26, 223, 254, 244, 254, 117, 129, 192, 27, 0, 193, 87, 100, 22, 49, 72, 153, 27, 74, 24, + 227, 17, 33, 252, 215, 119, 27, 120, 42, 2, 141, 24, 249, 169, 151, 27, 85, 177, 100, 126, 242, 93, 71, 42, 27, + 184, 9, 74, 239, 211, 244, 110, 100, 27, 105, 50, 137, 54, 62, 18, 113, 190, 73, 237, 124, 250, 201, 38, 208, 220, + 62, 40, 27, 135, 17, 46, 227, 63, 88, 224, 139, 73, 6, 85, 83, 245, 76, 242, 202, 88, 84, 255, 66, 112, 102, 71, + 174, 161, 192, 33, 202, 243, 202, 255, 255, 159, 27, 198, 50, 11, 141, 208, 180, 155, 247, 191, 27, 254, 120, 234, + 137, 231, 98, 65, 27, 27, 0, 61, 217, 196, 224, 189, 192, 147, 255, 159, 27, 223, 43, 211, 96, 134, 204, 202, 180, + 68, 102, 147, 10, 49, 67, 211, 253, 223, 255, 255, 216, 102, 159, 27, 173, 158, 6, 223, 5, 113, 7, 206, 159, 191, + 73, 29, 86, 219, 46, 119, 53, 65, 106, 80, 76, 203, 14, 165, 88, 198, 209, 164, 62, 193, 59, 187, 0, 65, 95, 27, + 121, 235, 64, 103, 248, 150, 12, 77, 70, 216, 186, 121, 19, 156, 182, 70, 186, 111, 7, 241, 255, 74, 255, 160, + 191, 27, 60, 132, 46, 142, 80, 85, 242, 87, 67, 83, 238, 195, 255, 216, 102, 159, 27, 177, 102, 157, 182, 55, 230, + 199, 91, 159, 27, 201, 186, 21, 234, 238, 85, 179, 243, 66, 148, 101, 255, 255, 27, 247, 53, 21, 54, 27, 38, 238, + 148, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 716, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17753172758770645763" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5097708962747567952" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2189151960754047076" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10584300478922846277" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89c25e2257e7d3ed8968d522" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe2572cd70cebfdfd1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c793fb25b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11849117195185879089" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3844f3b475eb690c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2957363144040446842" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "af3052bde2661edc" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "943493295544684223" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9785566454502522611" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2639754221558366115" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8360955091259131712" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3205326337639008325" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3674263953461532669" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12326328288954961096" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4353140ce51b18b97edcc6" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "381666dde6f4c2c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15640686518716030967" + } + } + } + ] + } + ] + }, + "cborHex": "9f1bf65ff09052aa7b03d8669f1b46beb34af4e4cf509fbf1b1e616e1c141848641b92e2fd35223170454c89c25e2257e7d3ed8968d52249fe2572cd70cebfdfd145c793fb25b51ba470854f4906f831ff483844f3b475eb690cd8669f1b290aaa1c585cfb7a9f48af3052bde2661edcffffffffbf1b0d17f62748e74ebf1b87cd50d81e99fef31b24a24a7a7e52ffa31b7408145b757e87401b2c7b9b52502d48451b32fd9b993d18d7fd1bab0fea4568024cc84b4353140ce51b18b97edcc6ffbf48381666dde6f4c2c41bd90ee185574f5ff7ffff", + "cborBytes": [ + 159, 27, 246, 95, 240, 144, 82, 170, 123, 3, 216, 102, 159, 27, 70, 190, 179, 74, 244, 228, 207, 80, 159, 191, 27, + 30, 97, 110, 28, 20, 24, 72, 100, 27, 146, 226, 253, 53, 34, 49, 112, 69, 76, 137, 194, 94, 34, 87, 231, 211, 237, + 137, 104, 213, 34, 73, 254, 37, 114, 205, 112, 206, 191, 223, 209, 69, 199, 147, 251, 37, 181, 27, 164, 112, 133, + 79, 73, 6, 248, 49, 255, 72, 56, 68, 243, 180, 117, 235, 105, 12, 216, 102, 159, 27, 41, 10, 170, 28, 88, 92, 251, + 122, 159, 72, 175, 48, 82, 189, 226, 102, 30, 220, 255, 255, 255, 255, 191, 27, 13, 23, 246, 39, 72, 231, 78, 191, + 27, 135, 205, 80, 216, 30, 153, 254, 243, 27, 36, 162, 74, 122, 126, 82, 255, 163, 27, 116, 8, 20, 91, 117, 126, + 135, 64, 27, 44, 123, 155, 82, 80, 45, 72, 69, 27, 50, 253, 155, 153, 61, 24, 215, 253, 27, 171, 15, 234, 69, 104, + 2, 76, 200, 75, 67, 83, 20, 12, 229, 27, 24, 185, 126, 220, 198, 255, 191, 72, 56, 22, 102, 221, 230, 244, 194, + 196, 27, 217, 14, 225, 133, 87, 79, 95, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 717, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "19" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6379175217020332681" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "ByteArray", + "bytearray": "326eb1cf89cc4dbae1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17353983647272282462" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75db" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1057842680668969627" + } + }, + { + "_tag": "ByteArray", + "bytearray": "faa6073703049406" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "99fc9153c138" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9957258456390098891" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3081032897119684641" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5f01" + } + ] + }, + "cborHex": "9f411980d8669f1b5887620fc278ea899f1bfffffffffffffffa49326eb1cf89cc4dbae1ffffd905079fd8669f1bf0d5bc2e8d9a295e9f140c4275db1b0eae365039855a9b48faa6073703049406ffff4699fc9153c1389f1b8a2f49cf6de2dfcb1b2ac207188e1c8821ffff425f01ff", + "cborBytes": [ + 159, 65, 25, 128, 216, 102, 159, 27, 88, 135, 98, 15, 194, 120, 234, 137, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 250, 73, 50, 110, 177, 207, 137, 204, 77, 186, 225, 255, 255, 217, 5, 7, 159, 216, 102, 159, 27, 240, 213, + 188, 46, 141, 154, 41, 94, 159, 20, 12, 66, 117, 219, 27, 14, 174, 54, 80, 57, 133, 90, 155, 72, 250, 166, 7, 55, + 3, 4, 148, 6, 255, 255, 70, 153, 252, 145, 83, 193, 56, 159, 27, 138, 47, 73, 207, 109, 226, 223, 203, 27, 42, + 194, 7, 24, 142, 28, 136, 33, 255, 255, 66, 95, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 718, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e640a499" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14527189526928319435" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2263843770429754549" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11780401181120064393" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7891df661563f11f3b8bf732" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15738610264885699800" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1550937444986266608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3256a4d6dbe71563d159" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d0edd8c3eac330cf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18330504049985585270" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf44e640a4991bc99af1e8095663cbffffd8669f1b1f6ac9ea33724cb59fbf1ba37c64758040eb894c7891df661563f11f3b8bf7321bda6ac6a630d424d81b15860963954223f0417a4a3256a4d6dbe71563d159ff9f48d0edd8c3eac330cf1bfe63085075400076ffffffff", + "cborBytes": [ + 159, 159, 191, 68, 230, 64, 164, 153, 27, 201, 154, 241, 232, 9, 86, 99, 203, 255, 255, 216, 102, 159, 27, 31, + 106, 201, 234, 51, 114, 76, 181, 159, 191, 27, 163, 124, 100, 117, 128, 64, 235, 137, 76, 120, 145, 223, 102, 21, + 99, 241, 31, 59, 139, 247, 50, 27, 218, 106, 198, 166, 48, 212, 36, 216, 27, 21, 134, 9, 99, 149, 66, 35, 240, 65, + 122, 74, 50, 86, 164, 214, 219, 231, 21, 99, 209, 89, 255, 159, 72, 208, 237, 216, 195, 234, 195, 48, 207, 27, + 254, 99, 8, 80, 117, 64, 0, 118, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 719, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2837977532061848212" + } + } + ] + }, + "cborHex": "9f1b2762858777161294ff", + "cborBytes": [159, 27, 39, 98, 133, 135, 119, 22, 18, 148, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 720, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "57d039de8dc3b3e6522309" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2388959153354472253" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dccf3e7eb80507" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4472001919574010681" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6593172766208183093" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2382494338764378354" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4bac67da0cac88e83c29" + }, + { + "_tag": "ByteArray", + "bytearray": "90d95f7d0ca93f74061a9154" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6231698732171963875" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8970291884647926847" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ed605959c2f7ac818e9d203f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4061040515334513016" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2201448837445843706" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7192566050860784246" + } + }, + { + "_tag": "ByteArray", + "bytearray": "360bfa" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fe0fe77c65e6a0e710d406" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3043254061871355929" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3186514966572908281" + } + } + ] + } + ] + }, + "cborHex": "9f4b57d039de8dc3b3e6522309d8669f1b212749b1569c7b3d9f47dccf3e7eb80507d8669f1b3e0fbe0d5b12eb3980ffd8669f1b5b7fa7b2e09e4b359f1b211051fa656e10f24a4bac67da0cac88e83c294c90d95f7d0ca93f74061a91541b567b70fade5cade31b7c7ce0f144024c3fffff9f4ced605959c2f7ac818e9d203f1b385bb6d516fba1781b1e8d1e0dcb27fafa1b63d120b725175a7643360bfaffffff4bfe0fe77c65e6a0e710d406d8669f1b2a3bcf72071b58199f1b2c38c67aae0b3ef9ffffff", + "cborBytes": [ + 159, 75, 87, 208, 57, 222, 141, 195, 179, 230, 82, 35, 9, 216, 102, 159, 27, 33, 39, 73, 177, 86, 156, 123, 61, + 159, 71, 220, 207, 62, 126, 184, 5, 7, 216, 102, 159, 27, 62, 15, 190, 13, 91, 18, 235, 57, 128, 255, 216, 102, + 159, 27, 91, 127, 167, 178, 224, 158, 75, 53, 159, 27, 33, 16, 81, 250, 101, 110, 16, 242, 74, 75, 172, 103, 218, + 12, 172, 136, 232, 60, 41, 76, 144, 217, 95, 125, 12, 169, 63, 116, 6, 26, 145, 84, 27, 86, 123, 112, 250, 222, + 92, 173, 227, 27, 124, 124, 224, 241, 68, 2, 76, 63, 255, 255, 159, 76, 237, 96, 89, 89, 194, 247, 172, 129, 142, + 157, 32, 63, 27, 56, 91, 182, 213, 22, 251, 161, 120, 27, 30, 141, 30, 13, 203, 39, 250, 250, 27, 99, 209, 32, + 183, 37, 23, 90, 118, 67, 54, 11, 250, 255, 255, 255, 75, 254, 15, 231, 124, 101, 230, 160, 231, 16, 212, 6, 216, + 102, 159, 27, 42, 59, 207, 114, 7, 27, 88, 25, 159, 27, 44, 56, 198, 122, 174, 11, 62, 249, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 721, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "339674015629185458" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e27a9956825a60068c57" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9083628944905128822" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6583385748304934056" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8bfb59137025f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9655252215994641742" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1ae7cfdf36c27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06c387" + } + } + ] + } + ] + }, + "cborHex": "9f801b04b6c3b7b10211b24ae27a9956825a60068c57bf1b7e0f8865f486cb761b5b5ce2753315b4a847a8bfb59137025f1b85fe58bc1729ed4e47e1ae7cfdf36c274306c387ffff", + "cborBytes": [ + 159, 128, 27, 4, 182, 195, 183, 177, 2, 17, 178, 74, 226, 122, 153, 86, 130, 90, 96, 6, 140, 87, 191, 27, 126, 15, + 136, 101, 244, 134, 203, 118, 27, 91, 92, 226, 117, 51, 21, 180, 168, 71, 168, 191, 181, 145, 55, 2, 95, 27, 133, + 254, 88, 188, 23, 41, 237, 78, 71, 225, 174, 124, 253, 243, 108, 39, 67, 6, 195, 135, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 722, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d81682b9ff60fdb4af3c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a95e49e9a90fe3e6cc" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16986739649687864129" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10071682381838070868" + } + }, + { + "_tag": "ByteArray", + "bytearray": "36ec0568950b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17124725628532281259" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1771512077691796351" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5286890340655051978" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f32" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "422915883314526974" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51d74ac917ffc22062492841" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6954fd2c02100a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d248f97310bfcfa553" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4931991228289890451" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fbf4ad81682b9ff60fdb4af3c49a95e49e9a90fe3e6ccffff9f1bebbd05b637b043411b8bc5cdc3a404b4544636ec0568950bd8669f1beda73f3a7cb1cfab80ffd8669f1b1895acd94a223b7f9f1b495ecec0f13034caffffffbf420f321b05de7fc152d53afe4c51d74ac917ffc22062492841476954fd2c02100a49d248f97310bfcfa5531b4471f3e42d8fb893ffff", + "cborBytes": [ + 159, 159, 191, 74, 216, 22, 130, 185, 255, 96, 253, 180, 175, 60, 73, 169, 94, 73, 233, 169, 15, 227, 230, 204, + 255, 255, 159, 27, 235, 189, 5, 182, 55, 176, 67, 65, 27, 139, 197, 205, 195, 164, 4, 180, 84, 70, 54, 236, 5, + 104, 149, 11, 216, 102, 159, 27, 237, 167, 63, 58, 124, 177, 207, 171, 128, 255, 216, 102, 159, 27, 24, 149, 172, + 217, 74, 34, 59, 127, 159, 27, 73, 94, 206, 192, 241, 48, 52, 202, 255, 255, 255, 191, 66, 15, 50, 27, 5, 222, + 127, 193, 82, 213, 58, 254, 76, 81, 215, 74, 201, 23, 255, 194, 32, 98, 73, 40, 65, 71, 105, 84, 253, 44, 2, 16, + 10, 73, 210, 72, 249, 115, 16, 191, 207, 165, 83, 27, 68, 113, 243, 228, 45, 143, 184, 147, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 723, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14747300642191668352" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "77943f4f" + }, + { + "_tag": "ByteArray", + "bytearray": "08dedfd97534" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "59256c32f534f0f7" + }, + { + "_tag": "ByteArray", + "bytearray": "903a1be143388f59fc" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f1bcca8efccadb97480a09f9f4477943f4f4608dedfd97534ff9f4859256c32f534f0f749903a1be143388f59fcff80ffff", + "cborBytes": [ + 159, 27, 204, 168, 239, 204, 173, 185, 116, 128, 160, 159, 159, 68, 119, 148, 63, 79, 70, 8, 222, 223, 217, 117, + 52, 255, 159, 72, 89, 37, 108, 50, 245, 52, 240, 247, 73, 144, 58, 27, 225, 67, 56, 143, 89, 252, 255, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 724, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d911508fe9803f998cab" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13505270190796847999" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5066662343148116003" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12848172041706374726" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c144bae82bab1d3e33d9" + }, + { + "_tag": "ByteArray", + "bytearray": "49f30d3518bd128c72" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8171863976177301035" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "53c16b8cbaba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7cbc7e3c2b0a7340c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6012fafeb9d0206305f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "070e66ce2177b88f38a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "997d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8aade5a2fa5634b094206" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "39" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82865d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11518602950078049285" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fc5b64ec935b2f62f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bff185352ed747b5506c44cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9519f97a2a3701fc1d9c8f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2202535185772923246" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e3b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd5f372c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2e9ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "562788473779113206" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3048d0287a6c33" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f944e66cf1618211cfc95e2c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35fa02bc010702" + } + } + ] + } + ] + }, + "cborHex": "9f1bffffffffffffffec4ad911508fe9803f998cab9f9f1bbb6c5baf3e1e3b7fffd8669f1b4650668e883118239f1bb24de0663f0386464ac144bae82bab1d3e33d94949f30d3518bd128c721b71684afd6cdbf62bffffbf4653c16b8cbaba49d7cbc7e3c2b0a7340c4a6012fafeb9d0206305f64a070e66ce2177b88f38a242997d4bd8aade5a2fa5634b094206ff80bf41394382865d41571b9fda4c5adc2b2c05497fc5b64ec935b2f62f4cbff185352ed747b5506c44cd4b9519f97a2a3701fc1d9c8f1b1e90fa14f94b496e429e3b44cd5f372c43a2e9ad1b07cf6d229749ccf6ffffbf0b473048d0287a6c334cf944e66cf1618211cfc95e2c4735fa02bc010702ffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 74, 217, 17, 80, 143, 233, 128, 63, 153, 140, 171, 159, 159, 27, + 187, 108, 91, 175, 62, 30, 59, 127, 255, 216, 102, 159, 27, 70, 80, 102, 142, 136, 49, 24, 35, 159, 27, 178, 77, + 224, 102, 63, 3, 134, 70, 74, 193, 68, 186, 232, 43, 171, 29, 62, 51, 217, 73, 73, 243, 13, 53, 24, 189, 18, 140, + 114, 27, 113, 104, 74, 253, 108, 219, 246, 43, 255, 255, 191, 70, 83, 193, 107, 140, 186, 186, 73, 215, 203, 199, + 227, 194, 176, 167, 52, 12, 74, 96, 18, 250, 254, 185, 208, 32, 99, 5, 246, 74, 7, 14, 102, 206, 33, 119, 184, + 143, 56, 162, 66, 153, 125, 75, 216, 170, 222, 90, 47, 165, 99, 75, 9, 66, 6, 255, 128, 191, 65, 57, 67, 130, 134, + 93, 65, 87, 27, 159, 218, 76, 90, 220, 43, 44, 5, 73, 127, 197, 182, 78, 201, 53, 178, 246, 47, 76, 191, 241, 133, + 53, 46, 215, 71, 181, 80, 108, 68, 205, 75, 149, 25, 249, 122, 42, 55, 1, 252, 29, 156, 143, 27, 30, 144, 250, 20, + 249, 75, 73, 110, 66, 158, 59, 68, 205, 95, 55, 44, 67, 162, 233, 173, 27, 7, 207, 109, 34, 151, 73, 204, 246, + 255, 255, 191, 11, 71, 48, 72, 208, 40, 122, 108, 51, 76, 249, 68, 230, 108, 241, 97, 130, 17, 207, 201, 94, 44, + 71, 53, 250, 2, 188, 1, 7, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 725, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1041189513881663448" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7c85ea5337e051a18" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1662305912838005852" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8384a6e3e159fb4f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7178330157791871449" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13774897757338114546" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9597295617552376909" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16691746921183930321" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf5b23e5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18108634943299290052" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b581e588e48e73c1c90b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18052241785563377774" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "178810f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7993316d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ee3e31d1f3cfb88" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bfd20df0385fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d215ad4489936758" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ab6bbc569a652c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f40f80163a84" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13150641979449743078" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f67a1f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4d77d812f53c060" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14501846775867196041" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "50117a64" + } + ] + }, + "cborHex": "9fbf1b0e730c58aec737d849f7c85ea5337e051a181b1711b26ba2bda45c488384a6e3e159fb4f1b639e8d3effa881d91bbf2a44871b7699f21b85307183f89f644d415b1be7a4ff635de367d144cf5b23e51bfb4ecb898a9483c44ab581e588e48e73c1c90bff1bfa86724253f7f06e9fbf44178810f8419b447993316d482ee3e31d1f3cfb88479bfd20df0385fc418148d215ad4489936758489ab6bbc569a652c346f40f80163a841bb6807734897116e643f67a1f48a4d77d812f53c060ff1bc940e8cefeb54289ff4450117a64ff", + "cborBytes": [ + 159, 191, 27, 14, 115, 12, 88, 174, 199, 55, 216, 73, 247, 200, 94, 165, 51, 126, 5, 26, 24, 27, 23, 17, 178, 107, + 162, 189, 164, 92, 72, 131, 132, 166, 227, 225, 89, 251, 79, 27, 99, 158, 141, 62, 255, 168, 129, 217, 27, 191, + 42, 68, 135, 27, 118, 153, 242, 27, 133, 48, 113, 131, 248, 159, 100, 77, 65, 91, 27, 231, 164, 255, 99, 93, 227, + 103, 209, 68, 207, 91, 35, 229, 27, 251, 78, 203, 137, 138, 148, 131, 196, 74, 181, 129, 229, 136, 228, 142, 115, + 193, 201, 11, 255, 27, 250, 134, 114, 66, 83, 247, 240, 110, 159, 191, 68, 23, 136, 16, 248, 65, 155, 68, 121, + 147, 49, 109, 72, 46, 227, 227, 29, 31, 60, 251, 136, 71, 155, 253, 32, 223, 3, 133, 252, 65, 129, 72, 210, 21, + 173, 68, 137, 147, 103, 88, 72, 154, 182, 187, 197, 105, 166, 82, 195, 70, 244, 15, 128, 22, 58, 132, 27, 182, + 128, 119, 52, 137, 113, 22, 230, 67, 246, 122, 31, 72, 164, 215, 125, 129, 47, 83, 192, 96, 255, 27, 201, 64, 232, + 206, 254, 181, 66, 137, 255, 68, 80, 17, 122, 100, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 726, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d39de6c4bf9d2197a06f" + }, + { + "_tag": "ByteArray", + "bytearray": "26af2c250a53" + } + ] + }, + "cborHex": "9fa04ad39de6c4bf9d2197a06f4626af2c250a53ff", + "cborBytes": [159, 160, 74, 211, 157, 230, 196, 191, 157, 33, 151, 160, 111, 70, 38, 175, 44, 37, 10, 83, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 727, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3675238425905728256" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7318249001280243328" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7427730827673329658" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8240414187760068106" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16354038990883015383" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e2d540121" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "934ff9a0bd876a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e115ec7b4911417ec8" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1170924495665367430" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15033213453394744348" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16f2df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17880029933752747910" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ca0f03c5c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c10c5c78680dc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92f5686890b5487a38e89e38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7865" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9464801515709518005" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11833039300893616219" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11812760258366194118" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3316578772608340102" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13379370891738599498" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d33b5af7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16525268547971938751" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16301279896336600950" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8389276131656689257" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7979f3780d8d1d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10635464419756711750" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10550914930384915576" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1053973548747530688" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eb8b8bddff24e8d94f9e0f" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2fbf94ffcf" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4039089746586296714" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bbebf36ea1c0ea0d27" + }, + { + "_tag": "ByteArray", + "bytearray": "b4e82b75b05ac9a8841a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5102058974739597651" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4088317960590026794" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b683e5e0f514fa798e3758" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36d668750c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2854866565395525525" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb98c7ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6244446979128256935" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1baf0bff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15997324679288502152" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fb9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11182118711452511479" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20da8ddf5a4f99bdd8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10829652868508189679" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2785" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea2925b2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad8e6607d2eb7f48a7c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7aaab94cd2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf08b1db" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9591000887149090921" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b330111e048fa0b00d8669f1b658fa4b1632a86809fbf1b671499d57eafdffa1b725bd50b4f87260a1be2f537d096784ad7452e2d54012147934ff9a0bd876a49e115ec7b4911417ec8ffffff9fbf1b103ff59ffef009861bd0a0b3fc8a37941cffbf4316f2df1bf822a07e06af0786457ca0f03c5c478c10c5c78680dc4c92f5686890b5487a38e89e38427865ffbf1b8359bad4f571d0b51ba437668ccf00285b1ba3ef5ade48c4c1c61b2e06dad25aebd0861bb9ad12f06847d04a44d33b5af71be5558c3093cd79bf1be239c7b2a55c0f76ffd8669f1b746cb231860f66699f477979f3780d8d1d1b9398c28a68e79f461b926c613a60f54c781b0ea0775bbfc121c04beb8b8bddff24e8d94f9e0fffffff452fbf94ffcfd8669f1b380dbab97932e18a9f9f49bbebf36ea1c0ea0d274ab4e82b75b05ac9a8841a1b46ce279b0c728953ffbf1b38bc9f8639d1682a4bb683e5e0f514fa798e37584536d668750c1b279e8603f78a2f9544fb98c7ce1b56a8bb7169b369a7ffbf441baf0bff1bde01ea09d194b788421fb91b9b2eddb900602cf74920da8ddf5a4f99bdd81b964aa7e7ec3883ef42278544ea2925b24aad8e6607d2eb7f48a7c6457aaab94cd244cf08b1db1b851a147dd6fa5869ffffffff", + "cborBytes": [ + 159, 27, 51, 1, 17, 224, 72, 250, 11, 0, 216, 102, 159, 27, 101, 143, 164, 177, 99, 42, 134, 128, 159, 191, 27, + 103, 20, 153, 213, 126, 175, 223, 250, 27, 114, 91, 213, 11, 79, 135, 38, 10, 27, 226, 245, 55, 208, 150, 120, 74, + 215, 69, 46, 45, 84, 1, 33, 71, 147, 79, 249, 160, 189, 135, 106, 73, 225, 21, 236, 123, 73, 17, 65, 126, 200, + 255, 255, 255, 159, 191, 27, 16, 63, 245, 159, 254, 240, 9, 134, 27, 208, 160, 179, 252, 138, 55, 148, 28, 255, + 191, 67, 22, 242, 223, 27, 248, 34, 160, 126, 6, 175, 7, 134, 69, 124, 160, 240, 60, 92, 71, 140, 16, 197, 199, + 134, 128, 220, 76, 146, 245, 104, 104, 144, 181, 72, 122, 56, 232, 158, 56, 66, 120, 101, 255, 191, 27, 131, 89, + 186, 212, 245, 113, 208, 181, 27, 164, 55, 102, 140, 207, 0, 40, 91, 27, 163, 239, 90, 222, 72, 196, 193, 198, 27, + 46, 6, 218, 210, 90, 235, 208, 134, 27, 185, 173, 18, 240, 104, 71, 208, 74, 68, 211, 59, 90, 247, 27, 229, 85, + 140, 48, 147, 205, 121, 191, 27, 226, 57, 199, 178, 165, 92, 15, 118, 255, 216, 102, 159, 27, 116, 108, 178, 49, + 134, 15, 102, 105, 159, 71, 121, 121, 243, 120, 13, 141, 29, 27, 147, 152, 194, 138, 104, 231, 159, 70, 27, 146, + 108, 97, 58, 96, 245, 76, 120, 27, 14, 160, 119, 91, 191, 193, 33, 192, 75, 235, 139, 139, 221, 255, 36, 232, 217, + 79, 158, 15, 255, 255, 255, 69, 47, 191, 148, 255, 207, 216, 102, 159, 27, 56, 13, 186, 185, 121, 50, 225, 138, + 159, 159, 73, 187, 235, 243, 110, 161, 192, 234, 13, 39, 74, 180, 232, 43, 117, 176, 90, 201, 168, 132, 26, 27, + 70, 206, 39, 155, 12, 114, 137, 83, 255, 191, 27, 56, 188, 159, 134, 57, 209, 104, 42, 75, 182, 131, 229, 224, + 245, 20, 250, 121, 142, 55, 88, 69, 54, 214, 104, 117, 12, 27, 39, 158, 134, 3, 247, 138, 47, 149, 68, 251, 152, + 199, 206, 27, 86, 168, 187, 113, 105, 179, 105, 167, 255, 191, 68, 27, 175, 11, 255, 27, 222, 1, 234, 9, 209, 148, + 183, 136, 66, 31, 185, 27, 155, 46, 221, 185, 0, 96, 44, 247, 73, 32, 218, 141, 223, 90, 79, 153, 189, 216, 27, + 150, 74, 167, 231, 236, 56, 131, 239, 66, 39, 133, 68, 234, 41, 37, 178, 74, 173, 142, 102, 7, 210, 235, 127, 72, + 167, 198, 69, 122, 170, 185, 76, 210, 68, 207, 8, 177, 219, 27, 133, 26, 20, 125, 214, 250, 88, 105, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 728, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8749111545796157334" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3250704900249466749" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5439995402139207129" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffeb80ffd8669f1b796b16989b72df969fa01b2d1cd2e240fdb77dffffd8669f1b4b7ebefef44405d980ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 128, 255, 216, 102, 159, 27, 121, 107, 22, 152, + 155, 114, 223, 150, 159, 160, 27, 45, 28, 210, 226, 64, 253, 183, 125, 255, 255, 216, 102, 159, 27, 75, 126, 190, + 254, 244, 68, 5, 217, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 729, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16518732685594383225" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2643664242941762406" + } + } + ] + }, + "cborHex": "9f1be53e53db887cd3791b24b02e9f49f21b66ff", + "cborBytes": [159, 27, 229, 62, 83, 219, 136, 124, 211, 121, 27, 36, 176, 46, 159, 73, 242, 27, 102, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 730, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eb52880ede" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f9f45eb52880ede0780ffff", + "cborBytes": [159, 159, 69, 235, 82, 136, 14, 222, 7, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 731, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1903f800b73501edff067d" + }, + { + "_tag": "ByteArray", + "bytearray": "f9dbf8fd6f06" + } + ] + }, + "cborHex": "9f4b1903f800b73501edff067d46f9dbf8fd6f06ff", + "cborBytes": [159, 75, 25, 3, 248, 0, 183, 53, 1, 237, 255, 6, 125, 70, 249, 219, 248, 253, 111, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 732, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "55f07d99" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10043535650952917509" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3360123421216233431" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6be" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f4455f07d99d8669f1b8b61ce762c0532059f1b2ea18e72eb1057d742d6beffffffff", + "cborBytes": [ + 159, 159, 68, 85, 240, 125, 153, 216, 102, 159, 27, 139, 97, 206, 118, 44, 5, 50, 5, 159, 27, 46, 161, 142, 114, + 235, 16, 87, 215, 66, 214, 190, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 733, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17147511470959850087" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6024925936532276318" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf1bedf832d4d87f72671b539cd637c50b445eff80ff", + "cborBytes": [ + 159, 191, 27, 237, 248, 50, 212, 216, 127, 114, 103, 27, 83, 156, 214, 55, 197, 11, 68, 94, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 734, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14816580891275247422" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cb94ade9a7" + }, + { + "_tag": "ByteArray", + "bytearray": "7962afec32e625" + }, + { + "_tag": "ByteArray", + "bytearray": "34a51f93ac8a" + }, + { + "_tag": "ByteArray", + "bytearray": "de62c066b7e69f032628d209" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3938623072052436208" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6430973745030752322" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15241955544202118898" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7599193526261365127" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15348060780156776216" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2f05b8" + }, + { + "_tag": "ByteArray", + "bytearray": "4fe3a6cb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12155628759841527809" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee212e58c2b7" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8b9db52437f4684b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12746975421467370539" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10737003973489244386" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2153928591348658239" + } + } + ] + }, + "cborHex": "9fa0d8669f1bcd9f11d1aa4d3f3e9f45cb94ade9a7477962afec32e6254634a51f93ac8a4cde62c066b7e69f032628d209d8669f1b36a8ccd0f9d7dcf09f1b593f688c606be8421bd3864dcfe67686f2ffffffff9fd8669f1b6975c23ff841b9879f1bd4ff43f648596f18432f05b8444fe3a6cb1ba8b177f42be0580146ee212e58c2b7ffff488b9db52437f4684b1bb0e65a9c0532a42ba09f1b9501803a0fc8b8e2ffff1b1de44aa44ee4f03fff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 205, 159, 17, 209, 170, 77, 63, 62, 159, 69, 203, 148, 173, 233, 167, 71, 121, 98, + 175, 236, 50, 230, 37, 70, 52, 165, 31, 147, 172, 138, 76, 222, 98, 192, 102, 183, 230, 159, 3, 38, 40, 210, 9, + 216, 102, 159, 27, 54, 168, 204, 208, 249, 215, 220, 240, 159, 27, 89, 63, 104, 140, 96, 107, 232, 66, 27, 211, + 134, 77, 207, 230, 118, 134, 242, 255, 255, 255, 255, 159, 216, 102, 159, 27, 105, 117, 194, 63, 248, 65, 185, + 135, 159, 27, 212, 255, 67, 246, 72, 89, 111, 24, 67, 47, 5, 184, 68, 79, 227, 166, 203, 27, 168, 177, 119, 244, + 43, 224, 88, 1, 70, 238, 33, 46, 88, 194, 183, 255, 255, 72, 139, 157, 181, 36, 55, 244, 104, 75, 27, 176, 230, + 90, 156, 5, 50, 164, 43, 160, 159, 27, 149, 1, 128, 58, 15, 200, 184, 226, 255, 255, 27, 29, 228, 74, 164, 78, + 228, 240, 63, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 735, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "682f51c9f71f48c90f09bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "784712" + } + } + ] + } + ] + }, + "cborHex": "9fbf4b682f51c9f71f48c90f09bc43784712ffff", + "cborBytes": [159, 191, 75, 104, 47, 81, 201, 247, 31, 72, 201, 15, 9, 188, 67, 120, 71, 18, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 736, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5670465114075227143" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15616530743636362088" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b9b8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14106764315569115208" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "104338699824876886" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b4eb189fa53b2e4071bd8b90ff8ae6983688042b9b8bf1bc3c54b6777a750481b0172af7ea3634d56ffff", + "cborBytes": [ + 159, 27, 78, 177, 137, 250, 83, 178, 228, 7, 27, 216, 185, 15, 248, 174, 105, 131, 104, 128, 66, 185, 184, 191, + 27, 195, 197, 75, 103, 119, 167, 80, 72, 27, 1, 114, 175, 126, 163, 99, 77, 86, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 737, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15888082333714090742" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4544930073789962309" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13649962176825041884" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7765572145439431822" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a4cc7b8c5e9069658b6268e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12197288163255670788" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86dabf9ccaa22d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17517268264259004474" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11699563718347381769" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13626213031607338117" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2954602128202649077" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17da4edd4fbd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15686185543525262689" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3763397801901608033" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1131862070279613595" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f467b3a3ce9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16121350369739958057" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca7b5a1bda" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14840779672629583112" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb40d81bf63c00d9c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11118252592076070866" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0789ffa9af5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15014632514775996146" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d257a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "484ca3276f7a73d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9ab336900" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16983784008825589648" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00fe6ffc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ab01d36171486f352b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3df5ce714c40d8022ad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c30569cda" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0fef5c6f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ae4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18104933983746559636" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87a2d2d80de9feba2bf0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e" + } + } + ] + } + ] + }, + "cborHex": "9fd905059f1bdc7dceb42f300af6bf1b3f12d5d2713d98451bbd6e68477b2ca3dc1b6bc4dab8f695dc8e4c6a4cc7b8c5e9069658b6268e1ba94578f5e1ee58044786dabf9ccaa22d1bf319d6ad0661a83a1ba25d33370324dc09ffd8669f1bbd1a088eb6c104859f1b2900dafb4021cdf54617da4edd4fbd1bd9b086a492b0e5611b343a465c8ad4cc611b0fb52e8e59c12c9bffffffd905059f00bf461f467b3a3ce91bdfba8abf27f6672945ca7b5a1bda1bcdf50a7b80ec9d0849cb40d81bf63c00d9c61b9a4bf7d351c29fd246d0789ffa9af51bd05eb0b8a440d6f243d257a2417cffbf48484ca3276f7a73d345c9ab336900ffa0d8669f1bfffffffffffffff49f1bebb2859274024f90ffffff1bffffffffffffffeb4400fe6ffcbf4a2ab01d36171486f352b34ab3df5ce714c40d8022ad454c30569cda440fef5c6f427ae41bfb41a588bf1c8e944a87a2d2d80de9feba2bf0410effff", + "cborBytes": [ + 159, 217, 5, 5, 159, 27, 220, 125, 206, 180, 47, 48, 10, 246, 191, 27, 63, 18, 213, 210, 113, 61, 152, 69, 27, + 189, 110, 104, 71, 123, 44, 163, 220, 27, 107, 196, 218, 184, 246, 149, 220, 142, 76, 106, 76, 199, 184, 197, 233, + 6, 150, 88, 182, 38, 142, 27, 169, 69, 120, 245, 225, 238, 88, 4, 71, 134, 218, 191, 156, 202, 162, 45, 27, 243, + 25, 214, 173, 6, 97, 168, 58, 27, 162, 93, 51, 55, 3, 36, 220, 9, 255, 216, 102, 159, 27, 189, 26, 8, 142, 182, + 193, 4, 133, 159, 27, 41, 0, 218, 251, 64, 33, 205, 245, 70, 23, 218, 78, 221, 79, 189, 27, 217, 176, 134, 164, + 146, 176, 229, 97, 27, 52, 58, 70, 92, 138, 212, 204, 97, 27, 15, 181, 46, 142, 89, 193, 44, 155, 255, 255, 255, + 217, 5, 5, 159, 0, 191, 70, 31, 70, 123, 58, 60, 233, 27, 223, 186, 138, 191, 39, 246, 103, 41, 69, 202, 123, 90, + 27, 218, 27, 205, 245, 10, 123, 128, 236, 157, 8, 73, 203, 64, 216, 27, 246, 60, 0, 217, 198, 27, 154, 75, 247, + 211, 81, 194, 159, 210, 70, 208, 120, 159, 250, 154, 245, 27, 208, 94, 176, 184, 164, 64, 214, 242, 67, 210, 87, + 162, 65, 124, 255, 191, 72, 72, 76, 163, 39, 111, 122, 115, 211, 69, 201, 171, 51, 105, 0, 255, 160, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 27, 235, 178, 133, 146, 116, 2, 79, 144, 255, 255, 255, 27, + 255, 255, 255, 255, 255, 255, 255, 235, 68, 0, 254, 111, 252, 191, 74, 42, 176, 29, 54, 23, 20, 134, 243, 82, 179, + 74, 179, 223, 92, 231, 20, 196, 13, 128, 34, 173, 69, 76, 48, 86, 156, 218, 68, 15, 239, 92, 111, 66, 122, 228, + 27, 251, 65, 165, 136, 191, 28, 142, 148, 74, 135, 162, 210, 216, 13, 233, 254, 186, 43, 240, 65, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 738, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0203" + } + ] + }, + "cborHex": "9f420203ff", + "cborBytes": [159, 66, 2, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 739, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00021f180da2885097a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8829104777311244472" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "726150" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "146981629961069344" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5558867048860708658" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4ef078e7a4054af7061d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3544e40d49" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e634c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a423440d2ed31e2ff" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "16ca50089e75" + }, + { + "_tag": "ByteArray", + "bytearray": "0628812a9972ce973858b7ce" + }, + { + "_tag": "ByteArray", + "bytearray": "ba7bd3f7" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10853899497884308505" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14773058719044443188" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "405c27e802db5cd026224ebc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6302757554694116637" + } + }, + { + "_tag": "ByteArray", + "bytearray": "261c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4161958389267141783" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14894683319533491770" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6369504676161698021" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d519" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12783408678934698951" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f552773366c53f6ce424" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c71485f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee2d6c503cc0" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf4a00021f180da2885097a51b7a874804305750b8437261501b020a2f038256632041771b4d251020f8f76f324ba4ef078e7a4054af7061d1453544e40d4943e634c0498a423440d2ed31e2ffff9f9f4616ca50089e754c0628812a9972ce973858b7ce44ba7bd3f7ff9f1b96a0cc163f2f5419ffffd8669f1bcd0472a24aa19c349f4c405c27e802db5cd026224ebc1b5777e49a40f3d51d42261cbf1b39c23f1aa23994971bceb48b904ebad63a1b586506c181ceb8e542d5191bb167ca76ce8c5bc74af552773366c53f6ce424448c71485f46ee2d6c503cc0ffffffff", + "cborBytes": [ + 159, 191, 74, 0, 2, 31, 24, 13, 162, 136, 80, 151, 165, 27, 122, 135, 72, 4, 48, 87, 80, 184, 67, 114, 97, 80, 27, + 2, 10, 47, 3, 130, 86, 99, 32, 65, 119, 27, 77, 37, 16, 32, 248, 247, 111, 50, 75, 164, 239, 7, 142, 122, 64, 84, + 175, 112, 97, 209, 69, 53, 68, 228, 13, 73, 67, 230, 52, 192, 73, 138, 66, 52, 64, 210, 237, 49, 226, 255, 255, + 159, 159, 70, 22, 202, 80, 8, 158, 117, 76, 6, 40, 129, 42, 153, 114, 206, 151, 56, 88, 183, 206, 68, 186, 123, + 211, 247, 255, 159, 27, 150, 160, 204, 22, 63, 47, 84, 25, 255, 255, 216, 102, 159, 27, 205, 4, 114, 162, 74, 161, + 156, 52, 159, 76, 64, 92, 39, 232, 2, 219, 92, 208, 38, 34, 78, 188, 27, 87, 119, 228, 154, 64, 243, 213, 29, 66, + 38, 28, 191, 27, 57, 194, 63, 26, 162, 57, 148, 151, 27, 206, 180, 139, 144, 78, 186, 214, 58, 27, 88, 101, 6, + 193, 129, 206, 184, 229, 66, 213, 25, 27, 177, 103, 202, 118, 206, 140, 91, 199, 74, 245, 82, 119, 51, 102, 197, + 63, 108, 228, 36, 68, 140, 113, 72, 95, 70, 238, 45, 108, 80, 60, 192, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 740, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af38237f12b473a2876deb30" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02d8fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c9a2c6a4f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4181594556080978375" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13220070803822166464" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06b812df429a5b3e75" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12348394749337717370" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "9fbf004caf38237f12b473a2876deb300107084302d8fc0a456c9a2c6a4f1b3a080217fde9f9c71bb777205a675541c01bfffffffffffffff14906b812df429a5b3e75ff801bab5e4f999492ca7a0eff", + "cborBytes": [ + 159, 191, 0, 76, 175, 56, 35, 127, 18, 180, 115, 162, 135, 109, 235, 48, 1, 7, 8, 67, 2, 216, 252, 10, 69, 108, + 154, 44, 106, 79, 27, 58, 8, 2, 23, 253, 233, 249, 199, 27, 183, 119, 32, 90, 103, 85, 65, 192, 27, 255, 255, 255, + 255, 255, 255, 255, 241, 73, 6, 184, 18, 223, 66, 154, 91, 62, 117, 255, 128, 27, 171, 94, 79, 153, 148, 146, 202, + 122, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 741, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3305312806852393837" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e22fd31efa110db4e5671822" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6645754921667914359" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2359030951467499751" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8460831838697678976" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e96d630b24f442aa286e33" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9332594594451384976" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3994876191387835695" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14582998190156938112" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4de7dab60bfe4f5cc7499d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18220100539748487208" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3243268293181761342" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5718448865643082709" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85e2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8938000837732962452" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7563604c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9440870505749911945" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16588060744635403636" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbc2402343646aa4e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22308cb0f4d234" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "258475837445108897" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15515630208144219321" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8068067868911142562" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5180037558839987932" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17875850119969510643" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6774568436073719907" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23b862" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8cf6831d058" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67b8a44db69c3e621905" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10000717825350517686" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c26c69" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "843084" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b2dded47c4bfc7b6d4ce22fd31efa110db4e56718221b5c3a76e3fa51ea771b20bcf626d45f40e71b756ae9bad9e3e8804be96d630b24f442aa286e331b8184095663016a901b3770a6baf5565d2f1bca6137970477fb804cc4de7dab60bfe4f5cc7499d31bfcdacce81b9c90281b2d0267543e62e73eff80bf1b4f5c02f216e433d54285e21b7c0a286807379094447563604c1b8304b5b481af99891be634a15c24984d7449cbc2402343646aa4e84722308cb0f4d234ffd905009f809f1b03964a6799eff4a1ff1bd75297780ec19cb9d8669f1b6ff788faf63106a29f1b47e330b6f9d6cedc1bf813c6f94ae814f3ffff415cffd8669f1b5e041a1972bf68639fbf4323b86246d8cf6831d0584a67b8a44db69c3e6219051b8ac9afe046ef43b643c26c6943843084ffffffff", + "cborBytes": [ + 159, 191, 27, 45, 222, 212, 124, 75, 252, 123, 109, 76, 226, 47, 211, 30, 250, 17, 13, 180, 229, 103, 24, 34, 27, + 92, 58, 118, 227, 250, 81, 234, 119, 27, 32, 188, 246, 38, 212, 95, 64, 231, 27, 117, 106, 233, 186, 217, 227, + 232, 128, 75, 233, 109, 99, 11, 36, 244, 66, 170, 40, 110, 51, 27, 129, 132, 9, 86, 99, 1, 106, 144, 27, 55, 112, + 166, 186, 245, 86, 93, 47, 27, 202, 97, 55, 151, 4, 119, 251, 128, 76, 196, 222, 125, 171, 96, 191, 228, 245, 204, + 116, 153, 211, 27, 252, 218, 204, 232, 27, 156, 144, 40, 27, 45, 2, 103, 84, 62, 98, 231, 62, 255, 128, 191, 27, + 79, 92, 2, 242, 22, 228, 51, 213, 66, 133, 226, 27, 124, 10, 40, 104, 7, 55, 144, 148, 68, 117, 99, 96, 76, 27, + 131, 4, 181, 180, 129, 175, 153, 137, 27, 230, 52, 161, 92, 36, 152, 77, 116, 73, 203, 194, 64, 35, 67, 100, 106, + 164, 232, 71, 34, 48, 140, 176, 244, 210, 52, 255, 217, 5, 0, 159, 128, 159, 27, 3, 150, 74, 103, 153, 239, 244, + 161, 255, 27, 215, 82, 151, 120, 14, 193, 156, 185, 216, 102, 159, 27, 111, 247, 136, 250, 246, 49, 6, 162, 159, + 27, 71, 227, 48, 182, 249, 214, 206, 220, 27, 248, 19, 198, 249, 74, 232, 20, 243, 255, 255, 65, 92, 255, 216, + 102, 159, 27, 94, 4, 26, 25, 114, 191, 104, 99, 159, 191, 67, 35, 184, 98, 70, 216, 207, 104, 49, 208, 88, 74, + 103, 184, 164, 77, 182, 156, 62, 98, 25, 5, 27, 138, 201, 175, 224, 70, 239, 67, 182, 67, 194, 108, 105, 67, 132, + 48, 132, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 742, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ccc5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc3103771bf6b62183" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "53326795687391471" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + } + ] + }, + "cborHex": "9f05bf0742ccc51449fc3103771bf6b621831b00bd747029f4f0ef0c1bffffffffffffffff08ffff", + "cborBytes": [ + 159, 5, 191, 7, 66, 204, 197, 20, 73, 252, 49, 3, 119, 27, 246, 182, 33, 131, 27, 0, 189, 116, 112, 41, 244, 240, + 239, 12, 27, 255, 255, 255, 255, 255, 255, 255, 255, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 743, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0e5c234659310153" + }, + { + "_tag": "ByteArray", + "bytearray": "b342ac9fe9" + }, + { + "_tag": "ByteArray", + "bytearray": "7fdee378acab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14184810876012317413" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4311312039353742553" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14692808254673525072" + } + }, + { + "_tag": "ByteArray", + "bytearray": "006c41ec633a05" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17650268569180698212" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10691334760274899739" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b02b4e23d0a3" + }, + { + "_tag": "ByteArray", + "bytearray": "9834b9385d89978261a78ad8" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f9fa09f480e5c23465931015345b342ac9fe9467fdee378acab1bc4da92565ecfcae5ffffd8669f1b3bd4db751d8b74d99f9f1bcbe7574304be195047006c41ec633a051bf4f259bfa041f6641b945f4051c0f8b31bff9f46b02b4e23d0a34c9834b9385d89978261a78ad8ffffff80d8669f1bfffffffffffffff79fa0ffffff", + "cborBytes": [ + 159, 159, 160, 159, 72, 14, 92, 35, 70, 89, 49, 1, 83, 69, 179, 66, 172, 159, 233, 70, 127, 222, 227, 120, 172, + 171, 27, 196, 218, 146, 86, 94, 207, 202, 229, 255, 255, 216, 102, 159, 27, 59, 212, 219, 117, 29, 139, 116, 217, + 159, 159, 27, 203, 231, 87, 67, 4, 190, 25, 80, 71, 0, 108, 65, 236, 99, 58, 5, 27, 244, 242, 89, 191, 160, 65, + 246, 100, 27, 148, 95, 64, 81, 192, 248, 179, 27, 255, 159, 70, 176, 43, 78, 35, 208, 163, 76, 152, 52, 185, 56, + 93, 137, 151, 130, 97, 167, 138, 216, 255, 255, 255, 128, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 247, 159, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 744, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6966086040002549940" + } + } + ] + }, + "cborHex": "9f121b60ac82587128d8b4ff", + "cborBytes": [159, 18, 27, 96, 172, 130, 88, 113, 40, 216, 180, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 745, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18253291640249513343" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "03ffeda6f0686b" + }, + { + "_tag": "ByteArray", + "bytearray": "2413ceb4" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17401033923450759548" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5492949182355213984" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b7588af3" + }, + { + "_tag": "ByteArray", + "bytearray": "374995238bb33a3c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c02b5101" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ef719c51" + }, + { + "_tag": "ByteArray", + "bytearray": "ba8a4464730a3de2" + }, + { + "_tag": "ByteArray", + "bytearray": "84042e4f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12807746636860081658" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11036858464438710661" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15419461007008848318" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "06b9fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2370095577149988124" + } + } + ] + }, + "cborHex": "9f9fd8669f1bfd50b80966adf57f9f4703ffeda6f0686b442413ceb4ffffff9f1bf17ce428a3cde97c9f1b4c3ae02daf8e0ea044b7588af348374995238bb33a3cff44c02b5101ff9f44ef719c5148ba8a4464730a3de24484042e4fd8669f1bb1be41b5373fc5fa9f1b992acc4c3121f185ffff1bd5fcee170ebfd9beff4306b9fd1b20e4455ebfbfdd1cff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 253, 80, 184, 9, 102, 173, 245, 127, 159, 71, 3, 255, 237, 166, 240, 104, 107, 68, + 36, 19, 206, 180, 255, 255, 255, 159, 27, 241, 124, 228, 40, 163, 205, 233, 124, 159, 27, 76, 58, 224, 45, 175, + 142, 14, 160, 68, 183, 88, 138, 243, 72, 55, 73, 149, 35, 139, 179, 58, 60, 255, 68, 192, 43, 81, 1, 255, 159, 68, + 239, 113, 156, 81, 72, 186, 138, 68, 100, 115, 10, 61, 226, 68, 132, 4, 46, 79, 216, 102, 159, 27, 177, 190, 65, + 181, 55, 63, 197, 250, 159, 27, 153, 42, 204, 76, 49, 33, 241, 133, 255, 255, 27, 213, 252, 238, 23, 14, 191, 217, + 190, 255, 67, 6, 185, 253, 27, 32, 228, 69, 94, 191, 191, 221, 28, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 746, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffffaff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 747, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a5f0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1374586349181841942" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7e047221b4df1bc44" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9554636453116468167" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9492d39103b3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15717780873546384667" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ae82a7e4330c6e2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16668718092137804783" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1254240876944583819" + } + } + } + ] + } + ] + }, + "cborHex": "9f42a5f0bf1b131383007015b21649a7e047221b4df1bc441b8498e33b42015bc7469492d39103b31bda20c66d9929451b489ae82a7e4330c6e21be7532eca470033ef1b1167f56ead0e6c8bffff", + "cborBytes": [ + 159, 66, 165, 240, 191, 27, 19, 19, 131, 0, 112, 21, 178, 22, 73, 167, 224, 71, 34, 27, 77, 241, 188, 68, 27, 132, + 152, 227, 59, 66, 1, 91, 199, 70, 148, 146, 211, 145, 3, 179, 27, 218, 32, 198, 109, 153, 41, 69, 27, 72, 154, + 232, 42, 126, 67, 48, 198, 226, 27, 231, 83, 46, 202, 71, 0, 51, 239, 27, 17, 103, 245, 110, 173, 14, 108, 139, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 748, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14365292647451791247" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c7740305c62d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14316599739168782337" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2995302315876590734" + } + }, + { + "_tag": "ByteArray", + "bytearray": "adc31e25b6a708" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f9" + } + ] + } + ] + }, + "cborHex": "9f9f801bc75bc58d61e50f8f46c7740305c62dff1bffffffffffffffee1bc6aec79c349af8010f9f9f1b2991739624baa48e47adc31e25b6a708ff41f9ffff", + "cborBytes": [ + 159, 159, 128, 27, 199, 91, 197, 141, 97, 229, 15, 143, 70, 199, 116, 3, 5, 198, 45, 255, 27, 255, 255, 255, 255, + 255, 255, 255, 238, 27, 198, 174, 199, 156, 52, 154, 248, 1, 15, 159, 159, 27, 41, 145, 115, 150, 36, 186, 164, + 142, 71, 173, 195, 30, 37, 182, 167, 8, 255, 65, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 749, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ae87" + }, + { + "_tag": "ByteArray", + "bytearray": "abec7c28e315" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1620851692241043255" + } + }, + { + "_tag": "ByteArray", + "bytearray": "68" + }, + { + "_tag": "ByteArray", + "bytearray": "526dc9a1bae9df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6638419051991282959" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7184560534992059682" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5477559343990337744" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "144610962970522622" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14667344956384146722" + } + } + ] + } + ] + }, + "cborHex": "9f9f42ae8746abec7c28e3159f1b167e6c06c59e3f37416847526dc9a1bae9df1b5c2066f4b820350fffff1b63b4afbdbb7dfd221b4c043333b6aa70d09f1b0201c2e7967c33fe1bcb8ce086e364f522ffff", + "cborBytes": [ + 159, 159, 66, 174, 135, 70, 171, 236, 124, 40, 227, 21, 159, 27, 22, 126, 108, 6, 197, 158, 63, 55, 65, 104, 71, + 82, 109, 201, 161, 186, 233, 223, 27, 92, 32, 102, 244, 184, 32, 53, 15, 255, 255, 27, 99, 180, 175, 189, 187, + 125, 253, 34, 27, 76, 4, 51, 51, 182, 170, 112, 208, 159, 27, 2, 1, 194, 231, 150, 124, 51, 254, 27, 203, 140, + 224, 134, 227, 100, 245, 34, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 750, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9133597702854676904" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3021473146754536673" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12608021220921143623" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "ByteArray", + "bytearray": "014f9ade37" + } + ] + }, + "cborHex": "9f1b7ec10eb807fa11a81b29ee6dd18aaf94e11baef8b080119771470745014f9ade37ff", + "cborBytes": [ + 159, 27, 126, 193, 14, 184, 7, 250, 17, 168, 27, 41, 238, 109, 209, 138, 175, 148, 225, 27, 174, 248, 176, 128, + 17, 151, 113, 71, 7, 69, 1, 79, 154, 222, 55, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 751, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "714013974661335780" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb1d9900" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14068825422802447627" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "446daa13b0ad432c" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4280478278334413930" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6676280031505708183" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9392709299523079153" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3174a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a462344b2e9" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3b7ba458764fe30bd18debd7" + } + ] + }, + "cborHex": "9fbf1b09e8afed4c5a8ae444fb1d99001bc33e822ea51fed0b48446daa13b0ad432cffbf1b3b675050b0e5fc6a1b5ca6e950f2ee74971b82599b57dc94cbf1433174a24141468a462344b2e9ff4c3b7ba458764fe30bd18debd7ff", + "cborBytes": [ + 159, 191, 27, 9, 232, 175, 237, 76, 90, 138, 228, 68, 251, 29, 153, 0, 27, 195, 62, 130, 46, 165, 31, 237, 11, 72, + 68, 109, 170, 19, 176, 173, 67, 44, 255, 191, 27, 59, 103, 80, 80, 176, 229, 252, 106, 27, 92, 166, 233, 80, 242, + 238, 116, 151, 27, 130, 89, 155, 87, 220, 148, 203, 241, 67, 49, 116, 162, 65, 65, 70, 138, 70, 35, 68, 178, 233, + 255, 76, 59, 123, 164, 88, 118, 79, 227, 11, 209, 141, 235, 215, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 752, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1883430922290918385" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff8ea778" + }, + { + "_tag": "ByteArray", + "bytearray": "45" + }, + { + "_tag": "ByteArray", + "bytearray": "b50da1e60414ed4d4d12cd79" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1a234a71ea22f3f19f44ff8ea77841454cb50da1e60414ed4d4d12cd79ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 26, 35, 74, 113, 234, 34, 243, 241, 159, 68, 255, 142, 167, 120, 65, 69, 76, 181, 13, 161, + 230, 4, 20, 237, 77, 77, 18, 205, 121, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 753, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12403485801411725934" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14252540753324817275" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3328940984169108865" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f17a6e8cb0" + }, + { + "_tag": "ByteArray", + "bytearray": "bee5a1efdf7d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e40fe0c602eddff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1031d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15151881293139784998" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cdddd70470a79" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d996d0518" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b584b540d344120a30d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17987994438750897199" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6108508065163474158" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "deefad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10098601149259068636" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bac22089eb1bf4a6ed8669f1bc5cb324d4cb43b7b9fd8669f1b2e32c63007a3958180ff45f17a6e8cb046bee5a1efdf7dbf420f38482e40fe0c602eddff431031d51bd2464bc20c7bb526473cdddd70470a79457d996d05184a5b584b540d344120a30d1bf9a231a33773042f41b61b54c5c7b893ad74ee43deefad1b8c25703d95f034dcffffffff", + "cborBytes": [ + 159, 27, 172, 34, 8, 158, 177, 191, 74, 110, 216, 102, 159, 27, 197, 203, 50, 77, 76, 180, 59, 123, 159, 216, 102, + 159, 27, 46, 50, 198, 48, 7, 163, 149, 129, 128, 255, 69, 241, 122, 110, 140, 176, 70, 190, 229, 161, 239, 223, + 125, 191, 66, 15, 56, 72, 46, 64, 254, 12, 96, 46, 221, 255, 67, 16, 49, 213, 27, 210, 70, 75, 194, 12, 123, 181, + 38, 71, 60, 221, 221, 112, 71, 10, 121, 69, 125, 153, 109, 5, 24, 74, 91, 88, 75, 84, 13, 52, 65, 32, 163, 13, 27, + 249, 162, 49, 163, 55, 115, 4, 47, 65, 182, 27, 84, 197, 199, 184, 147, 173, 116, 238, 67, 222, 239, 173, 27, 140, + 37, 112, 61, 149, 240, 52, 220, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 754, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "408235e36bac6ad26070" + }, + { + "_tag": "ByteArray", + "bytearray": "0392e05784" + } + ] + }, + "cborHex": "9f4a408235e36bac6ad26070450392e05784ff", + "cborBytes": [159, 74, 64, 130, 53, 227, 107, 172, 106, 210, 96, 112, 69, 3, 146, 224, 87, 132, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 755, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1494bd783036" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7154918866284152154" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11537983055944777517" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12199622570938718861" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13035160059223796850" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9620051580728789326" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9166365314505625266" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "94e5180d714290e97e5f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "38e87f892fc9c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f37334527e08dcdc9435" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0411894" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16183258343794218457" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "62245067151391938" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9000071219814806257" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "575691234756954723" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f461494bd7830369f1b634b60cced9b855ad8669f1ba01f267562107f2d80ffd8669f1ba94dc41786a3da8d9f1bb4e63102b864ec7241cc1b858149f18646494effffffd8669f1b7f3578b02491ceb29f4a94e5180d714290e97e5fbf4738e87f892fc9c04af37334527e08dcdc943544d04118941be0967bb89a3b15d9ff9f1b00dd238f0c943cc21b7ce6ad170a4732f11b07fd4420bbfe8a63ffffffff", + "cborBytes": [ + 159, 70, 20, 148, 189, 120, 48, 54, 159, 27, 99, 75, 96, 204, 237, 155, 133, 90, 216, 102, 159, 27, 160, 31, 38, + 117, 98, 16, 127, 45, 128, 255, 216, 102, 159, 27, 169, 77, 196, 23, 134, 163, 218, 141, 159, 27, 180, 230, 49, 2, + 184, 100, 236, 114, 65, 204, 27, 133, 129, 73, 241, 134, 70, 73, 78, 255, 255, 255, 216, 102, 159, 27, 127, 53, + 120, 176, 36, 145, 206, 178, 159, 74, 148, 229, 24, 13, 113, 66, 144, 233, 126, 95, 191, 71, 56, 232, 127, 137, + 47, 201, 192, 74, 243, 115, 52, 82, 126, 8, 220, 220, 148, 53, 68, 208, 65, 24, 148, 27, 224, 150, 123, 184, 154, + 59, 21, 217, 255, 159, 27, 0, 221, 35, 143, 12, 148, 60, 194, 27, 124, 230, 173, 23, 10, 71, 50, 241, 27, 7, 253, + 68, 32, 187, 254, 138, 99, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 756, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8793838084869155922" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9252868608245667560" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13682952880320516031" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "658df13c41045b5f1e3b7e" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8531457553812154410" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d8f531796f8c" + }, + { + "_tag": "ByteArray", + "bytearray": "85e6d5d03f06e25ca5462f6a" + }, + { + "_tag": "ByteArray", + "bytearray": "4112dfe75c3b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5659550121020558502" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7a09fd257ced6c5280ffd8669f1b8068caf9b3d896e89f1bbde39d2635e98fbf9f4b658df13c41045b5f1e3b7effffff9fd8669f1b7665d3718f4be82a9f46d8f531796f8c4c85e6d5d03f06e25ca5462f6a464112dfe75c3b1b4e8ac2d977f30ca6ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 122, 9, 253, 37, 124, 237, 108, 82, 128, 255, 216, 102, 159, 27, 128, 104, 202, 249, 179, + 216, 150, 232, 159, 27, 189, 227, 157, 38, 53, 233, 143, 191, 159, 75, 101, 141, 241, 60, 65, 4, 91, 95, 30, 59, + 126, 255, 255, 255, 159, 216, 102, 159, 27, 118, 101, 211, 113, 143, 75, 232, 42, 159, 70, 216, 245, 49, 121, 111, + 140, 76, 133, 230, 213, 208, 63, 6, 226, 92, 165, 70, 47, 106, 70, 65, 18, 223, 231, 92, 59, 27, 78, 138, 194, + 217, 119, 243, 12, 166, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 757, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01dd53e604ceeefe6303" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f4a01dd53e604ceeefe6303d8669f1bffffffffffffffeb9fd9050780ffffff", + "cborBytes": [ + 159, 74, 1, 221, 83, 230, 4, 206, 238, 254, 99, 3, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, + 217, 5, 7, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 758, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d8477a570d26af8d03" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f0549d8477a570d26af8d0380a0ff", + "cborBytes": [159, 5, 73, 216, 71, 122, 87, 13, 38, 175, 141, 3, 128, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 759, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bd56793e35c70563767c06" + }, + { + "_tag": "ByteArray", + "bytearray": "543e45a4fab17740" + } + ] + }, + "cborHex": "9f4bbd56793e35c70563767c0648543e45a4fab17740ff", + "cborBytes": [159, 75, 189, 86, 121, 62, 53, 199, 5, 99, 118, 124, 6, 72, 84, 62, 69, 164, 250, 177, 119, 64, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 760, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0130bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b07" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15164547725122171818" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4246578096243376100" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10904398721641551952" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10636788608484240537" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10451830919121806173" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3586e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e01269" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0b520df3bb7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2463161955623223018" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16686168693614029190" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1086903474867654661" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6075243822350534201" + } + }, + { + "_tag": "ByteArray", + "bytearray": "539f5e7dc08542a9dca68c01" + }, + { + "_tag": "ByteArray", + "bytearray": "b365c70baadb8ea3e7" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2236628271147825287" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "278608bc58b1d7898d8f97d2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d919708bc9be711506a5353" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2296592613019605011" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1239754619655502855" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3805557069320528593" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7513336543086464965" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a124867a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8029944835828091357" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5366298431925266346" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13958663572741663370" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5972243734669968496" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15988953012119727797" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd1ed405d9bbf6347f47" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16846990432181916231" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f501961daca7674" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3151" + }, + { + "_tag": "ByteArray", + "bytearray": "f84e7763019f8e85" + }, + { + "_tag": "ByteArray", + "bytearray": "a13592f5e6aa1d3907" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7435190430894583526" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16435695995512906375" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "33" + }, + { + "_tag": "ByteArray", + "bytearray": "8991a6b103a6b68d5aca8d2a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4500972035943163712" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17424023898428201591" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14521031093173059030" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "269431b681" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15119968028241725558" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7addd9c0ccfe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cd17430d44fa010f245" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b40cce" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [] + } + ] + }, + "cborHex": "9fa09fbf1bfffffffffffffffb13430130bd427b07ff80ff9f1bd2734bcf8f5d73aabf1b3aeee047798a7fe41b975434dd04ab18501b939d76e21f9fec991b910c5cd842b3235d433586e943e0126946a0b520df3bb71b222ee8bf8d2dbeeaffd8669f1be7912e050d1ba9869f1b0f1574f3a49fd0051b544f9a11831706394c539f5e7dc08542a9dca68c0149b365c70baadb8ea3e7ffffff9fbf1b1f0a198ffc5cb8874c278608bc58b1d7898d8f97d24c8d919708bc9be711506a53531b1fdf22d04cd1d813ffbf1b11347e4211373c071b34d00dfde953a2d11b6844bbc750a14fc544a124867a1b6f701848a18409dd1b4a78ebfdf1a427aa1bc1b722903073aa8a1b52e1ac08cd0e44701bdde42c0d29ceeeb54add1ed405d9bbf6347f471be9cc8889f49b9247489f501961daca7674ff9f42315148f84e7763019f8e8549a13592f5e6aa1d39071b672f1a4db6daeee61be417526d88db6287ff9f41334c8991a6b103a6b68d5aca8d2a1b3e76aa38325be7401bf1ce916b4fbada77ffbf1bc98510d7f0fb7dd645269431b6811bd1d4ead00a9c8876467addd9c0ccfe4a0cd17430d44fa010f24541f342f7cf43b40cceffffd8669f1bfffffffffffffff480ffff", + "cborBytes": [ + 159, 160, 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 251, 19, 67, 1, 48, 189, 66, 123, 7, 255, 128, 255, + 159, 27, 210, 115, 75, 207, 143, 93, 115, 170, 191, 27, 58, 238, 224, 71, 121, 138, 127, 228, 27, 151, 84, 52, + 221, 4, 171, 24, 80, 27, 147, 157, 118, 226, 31, 159, 236, 153, 27, 145, 12, 92, 216, 66, 179, 35, 93, 67, 53, + 134, 233, 67, 224, 18, 105, 70, 160, 181, 32, 223, 59, 183, 27, 34, 46, 232, 191, 141, 45, 190, 234, 255, 216, + 102, 159, 27, 231, 145, 46, 5, 13, 27, 169, 134, 159, 27, 15, 21, 116, 243, 164, 159, 208, 5, 27, 84, 79, 154, 17, + 131, 23, 6, 57, 76, 83, 159, 94, 125, 192, 133, 66, 169, 220, 166, 140, 1, 73, 179, 101, 199, 11, 170, 219, 142, + 163, 231, 255, 255, 255, 159, 191, 27, 31, 10, 25, 143, 252, 92, 184, 135, 76, 39, 134, 8, 188, 88, 177, 215, 137, + 141, 143, 151, 210, 76, 141, 145, 151, 8, 188, 155, 231, 17, 80, 106, 83, 83, 27, 31, 223, 34, 208, 76, 209, 216, + 19, 255, 191, 27, 17, 52, 126, 66, 17, 55, 60, 7, 27, 52, 208, 13, 253, 233, 83, 162, 209, 27, 104, 68, 187, 199, + 80, 161, 79, 197, 68, 161, 36, 134, 122, 27, 111, 112, 24, 72, 161, 132, 9, 221, 27, 74, 120, 235, 253, 241, 164, + 39, 170, 27, 193, 183, 34, 144, 48, 115, 170, 138, 27, 82, 225, 172, 8, 205, 14, 68, 112, 27, 221, 228, 44, 13, + 41, 206, 238, 181, 74, 221, 30, 212, 5, 217, 187, 246, 52, 127, 71, 27, 233, 204, 136, 137, 244, 155, 146, 71, 72, + 159, 80, 25, 97, 218, 202, 118, 116, 255, 159, 66, 49, 81, 72, 248, 78, 119, 99, 1, 159, 142, 133, 73, 161, 53, + 146, 245, 230, 170, 29, 57, 7, 27, 103, 47, 26, 77, 182, 218, 238, 230, 27, 228, 23, 82, 109, 136, 219, 98, 135, + 255, 159, 65, 51, 76, 137, 145, 166, 177, 3, 166, 182, 141, 90, 202, 141, 42, 27, 62, 118, 170, 56, 50, 91, 231, + 64, 27, 241, 206, 145, 107, 79, 186, 218, 119, 255, 191, 27, 201, 133, 16, 215, 240, 251, 125, 214, 69, 38, 148, + 49, 182, 129, 27, 209, 212, 234, 208, 10, 156, 136, 118, 70, 122, 221, 217, 192, 204, 254, 74, 12, 209, 116, 48, + 212, 79, 160, 16, 242, 69, 65, 243, 66, 247, 207, 67, 180, 12, 206, 255, 255, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 244, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 761, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13619913353992533660" + } + } + ] + }, + "cborHex": "9f1bbd03a708b852f69cff", + "cborBytes": [159, 27, 189, 3, 167, 8, 184, 82, 246, 156, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 762, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14287927421019449648" + } + } + ] + }, + "cborHex": "9fa01bc648ea49ea6d6930ff", + "cborBytes": [159, 160, 27, 198, 72, 234, 73, 234, 109, 105, 48, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 763, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01d75c78c8db1f5edfafd7" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f4b01d75c78c8db1f5edfafd7a0ff", + "cborBytes": [159, 75, 1, 215, 92, 120, 200, 219, 31, 94, 223, 175, 215, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 764, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9635659502506255203" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a88a1e1f201cb02279" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7045934258506099512" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18383384460921408793" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17746516494901690706" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "52484476615192365" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c761c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10282474928852574511" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12060285460479271962" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13201027324667999893" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "807444f02e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14486156626055062874" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1561076868341787890" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16834545720839531426" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11492319457615452184" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e50445c878" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15049015813828084652" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8638648542499571688" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11023108684917268115" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14622567238652445688" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13142783143738793870" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16331216125680872380" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14900728986974574279" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1552258589596698409" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13367200406328380524" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c04bb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2186570189496458866" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "af6ec31fa8fbf4ac7e8c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9044518652727341050" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7596848747068384308" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ad19ee53ced983a6" + }, + { + "_tag": "ByteArray", + "bytearray": "8fe4" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "97af" + } + ] + } + ] + }, + "cborHex": "9f9f9f1b85b8bd43ff80a36349a88a1e1f201cb022791b61c82fe08d02eb381bff1ee6c492a80d19ff1bf6484aba1f39c152bf1b00ba765a78deef2d437c761c1b8eb2b0780a1e212f1ba75ebdba69ace41a1bb7337868e50fb69545807444f02e1bc9092ab350aee55a1b15aa0f240c976cf2ff9f1be9a05223cdb66ba21b9f7ceba8647a981845e50445c878ffd8669f1bd0d8d8264a7583ac9f1b77e2a514732207e81b98f9f2f22d045e931bcaedcb6e0c24c3f8ffffffd8669f1bb6648ba2c28adf8e9fd8669f1be2a4228a3156ebbc9f1bceca0610f2fc56c71b158abaf68875c7291bb981d5f274a90c6c435c04bb1b1e5842009d651e72ffff4aaf6ec31fa8fbf4ac7e8cd8669f1b7d8495cb74352ffa80ffd8669f1b696d6daf8561e4349f48ad19ee53ced983a6428fe4ffff4297afffffff", + "cborBytes": [ + 159, 159, 159, 27, 133, 184, 189, 67, 255, 128, 163, 99, 73, 168, 138, 30, 31, 32, 28, 176, 34, 121, 27, 97, 200, + 47, 224, 141, 2, 235, 56, 27, 255, 30, 230, 196, 146, 168, 13, 25, 255, 27, 246, 72, 74, 186, 31, 57, 193, 82, + 191, 27, 0, 186, 118, 90, 120, 222, 239, 45, 67, 124, 118, 28, 27, 142, 178, 176, 120, 10, 30, 33, 47, 27, 167, + 94, 189, 186, 105, 172, 228, 26, 27, 183, 51, 120, 104, 229, 15, 182, 149, 69, 128, 116, 68, 240, 46, 27, 201, 9, + 42, 179, 80, 174, 229, 90, 27, 21, 170, 15, 36, 12, 151, 108, 242, 255, 159, 27, 233, 160, 82, 35, 205, 182, 107, + 162, 27, 159, 124, 235, 168, 100, 122, 152, 24, 69, 229, 4, 69, 200, 120, 255, 216, 102, 159, 27, 208, 216, 216, + 38, 74, 117, 131, 172, 159, 27, 119, 226, 165, 20, 115, 34, 7, 232, 27, 152, 249, 242, 242, 45, 4, 94, 147, 27, + 202, 237, 203, 110, 12, 36, 195, 248, 255, 255, 255, 216, 102, 159, 27, 182, 100, 139, 162, 194, 138, 223, 142, + 159, 216, 102, 159, 27, 226, 164, 34, 138, 49, 86, 235, 188, 159, 27, 206, 202, 6, 16, 242, 252, 86, 199, 27, 21, + 138, 186, 246, 136, 117, 199, 41, 27, 185, 129, 213, 242, 116, 169, 12, 108, 67, 92, 4, 187, 27, 30, 88, 66, 0, + 157, 101, 30, 114, 255, 255, 74, 175, 110, 195, 31, 168, 251, 244, 172, 126, 140, 216, 102, 159, 27, 125, 132, + 149, 203, 116, 53, 47, 250, 128, 255, 216, 102, 159, 27, 105, 109, 109, 175, 133, 97, 228, 52, 159, 72, 173, 25, + 238, 83, 206, 217, 131, 166, 66, 143, 228, 255, 255, 66, 151, 175, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 765, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11375416059972325577" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5813565118785135079" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4116455419460370597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14236414936422178504" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17213491322159551976" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad653f22cd92491fce3b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7667a506" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "050105" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "864a998f4c97da4b10" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf061b9ddd98a312ec90c90d1b50adeeac87ca21e71b39209664e2aac0a51bffffffffffffffed1bc591e7f4f8825ec81bffffffffffffffec1beee29b281196d5e84aad653f22cd92491fce3b1bfffffffffffffffa447667a506ff9fbf4305010510417d49864a998f4c97da4b10ffffff", + "cborBytes": [ + 159, 191, 6, 27, 157, 221, 152, 163, 18, 236, 144, 201, 13, 27, 80, 173, 238, 172, 135, 202, 33, 231, 27, 57, 32, + 150, 100, 226, 170, 192, 165, 27, 255, 255, 255, 255, 255, 255, 255, 237, 27, 197, 145, 231, 244, 248, 130, 94, + 200, 27, 255, 255, 255, 255, 255, 255, 255, 236, 27, 238, 226, 155, 40, 17, 150, 213, 232, 74, 173, 101, 63, 34, + 205, 146, 73, 31, 206, 59, 27, 255, 255, 255, 255, 255, 255, 255, 250, 68, 118, 103, 165, 6, 255, 159, 191, 67, 5, + 1, 5, 16, 65, 125, 73, 134, 74, 153, 143, 76, 151, 218, 75, 16, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 766, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7688181247210843700" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9b3441b763b9e93ffc17" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3590302460162559620" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1401292861185898423" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6423848200533043338" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a82a0573b6d660" + }, + { + "_tag": "ByteArray", + "bytearray": "6a81a4" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8395207582288930383" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3674960149212696222" + } + }, + { + "_tag": "ByteArray", + "bytearray": "637d0265c054026e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14506698786873288707" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4478264459858208634" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5239916809199057599" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8149707096796988292" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a793e657d3f7" + } + ] + }, + "cborHex": "9fd8669f1b6ab1e81c50d26e349f4a9b3441b763b9e93ffc17d8669f1b31d35110b6334e849f1b1372646ed146b7b71b592617e743cde88a47a82a0573b6d660436a81a4ffffd8669f1b7481c4d0fdff664f9f1b330014c8f18a0e9e48637d0265c054026e1bc95225afd72c28031b3e25fdcca41ae77a1b48b7ec9360e87abfffffffff1b7119936cf010838446a793e657d3f7ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 106, 177, 232, 28, 80, 210, 110, 52, 159, 74, 155, 52, 65, 183, 99, 185, 233, 63, 252, 23, + 216, 102, 159, 27, 49, 211, 81, 16, 182, 51, 78, 132, 159, 27, 19, 114, 100, 110, 209, 70, 183, 183, 27, 89, 38, + 23, 231, 67, 205, 232, 138, 71, 168, 42, 5, 115, 182, 214, 96, 67, 106, 129, 164, 255, 255, 216, 102, 159, 27, + 116, 129, 196, 208, 253, 255, 102, 79, 159, 27, 51, 0, 20, 200, 241, 138, 14, 158, 72, 99, 125, 2, 101, 192, 84, + 2, 110, 27, 201, 82, 37, 175, 215, 44, 40, 3, 27, 62, 37, 253, 204, 164, 26, 231, 122, 27, 72, 183, 236, 147, 96, + 232, 122, 191, 255, 255, 255, 255, 27, 113, 25, 147, 108, 240, 16, 131, 132, 70, 167, 147, 230, 87, 211, 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 767, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0278fd65ff5267" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0603fefdf9a102e5fc057cce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0103ab06021602" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9001da04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6436463812826775762" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e05a728340689b2146" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14039791220629562296" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe58060c5d" + } + } + ] + } + ] + }, + "cborHex": "9fa0bf470278fd65ff526741fa4c0603fefdf9a102e5fc057cce470103ab06021602449001da041b5952e9bc653240d241ab1bfffffffffffffff349e05a728340689b21461bc2d75bbaaa45e3b841f445fe58060c5dffff", + "cborBytes": [ + 159, 160, 191, 71, 2, 120, 253, 101, 255, 82, 103, 65, 250, 76, 6, 3, 254, 253, 249, 161, 2, 229, 252, 5, 124, + 206, 71, 1, 3, 171, 6, 2, 22, 2, 68, 144, 1, 218, 4, 27, 89, 82, 233, 188, 101, 50, 64, 210, 65, 171, 27, 255, + 255, 255, 255, 255, 255, 255, 243, 73, 224, 90, 114, 131, 64, 104, 155, 33, 70, 27, 194, 215, 91, 186, 170, 69, + 227, 184, 65, 244, 69, 254, 88, 6, 12, 93, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 768, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b278b856" + } + ] + }, + "cborHex": "9f44b278b856ff", + "cborBytes": [159, 68, 178, 120, 184, 86, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 769, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2395916996630784727" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14632379777886327935" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9256239129916691187" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13061554679828160621" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10973758161026208184" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43ce24ad134b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11857067046686305091" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16740542980401676587" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13116991275478349734" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "912187237728484553" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12342107300046177434" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fbd2baca198304afb690" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5457600516465174579" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7dca2de2cd2b86" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b214001d0777faad7d8669f1bcb10a7e1df86147f9fbf1b8074c4726ec152f31bb543f6c7397fa06d1b984a9ee7ef02d1b84643ce24ad134b1ba48cc3a853ba2b431be8525b253e00412b1bb608ea1178c8f7a61b0ca8bd75b1737cc9ffd8669f1bab47f932b702049a9f4afbd2baca198304afb6901b4bbd4ac10de52833477dca2de2cd2b86ffffffffff", + "cborBytes": [ + 159, 27, 33, 64, 1, 208, 119, 127, 170, 215, 216, 102, 159, 27, 203, 16, 167, 225, 223, 134, 20, 127, 159, 191, + 27, 128, 116, 196, 114, 110, 193, 82, 243, 27, 181, 67, 246, 199, 57, 127, 160, 109, 27, 152, 74, 158, 231, 239, + 2, 209, 184, 70, 67, 206, 36, 173, 19, 75, 27, 164, 140, 195, 168, 83, 186, 43, 67, 27, 232, 82, 91, 37, 62, 0, + 65, 43, 27, 182, 8, 234, 17, 120, 200, 247, 166, 27, 12, 168, 189, 117, 177, 115, 124, 201, 255, 216, 102, 159, + 27, 171, 71, 249, 50, 183, 2, 4, 154, 159, 74, 251, 210, 186, 202, 25, 131, 4, 175, 182, 144, 27, 75, 189, 74, + 193, 13, 229, 40, 51, 71, 125, 202, 45, 226, 205, 43, 134, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 770, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16015621284925177685" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "680634fe" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6117777562208716256" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12198462959213867867" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3614751043030579151" + } + }, + { + "_tag": "ByteArray", + "bytearray": "540b71a300ae7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1cfc01faa5fef995eb07ce" + } + ] + }, + "cborHex": "9fd8669f1bde42eab449267f559f44680634fe9f1b54e6b6478a4e45e0ffd8669f1ba949a56e61b3f35b9f1b322a2cebff4f77cf47540b71a300ae7c1bfffffffffffffffaffff1bfffffffffffffff2ffff4b1cfc01faa5fef995eb07ceff", + "cborBytes": [ + 159, 216, 102, 159, 27, 222, 66, 234, 180, 73, 38, 127, 85, 159, 68, 104, 6, 52, 254, 159, 27, 84, 230, 182, 71, + 138, 78, 69, 224, 255, 216, 102, 159, 27, 169, 73, 165, 110, 97, 179, 243, 91, 159, 27, 50, 42, 44, 235, 255, 79, + 119, 207, 71, 84, 11, 113, 163, 0, 174, 124, 27, 255, 255, 255, 255, 255, 255, 255, 250, 255, 255, 27, 255, 255, + 255, 255, 255, 255, 255, 242, 255, 255, 75, 28, 252, 1, 250, 165, 254, 249, 149, 235, 7, 206, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 771, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8879464122317904512" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4080a9978e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13083335532197792065" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8642382830285738607" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "68f31b62" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15811539651627775701" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11166188196493948879" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "99599d900eeaa1dc55" + }, + { + "_tag": "ByteArray", + "bytearray": "2154801f31" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13239764248815674373" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10903855267604832421" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "182960914863160557" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d7b5388c6050eccd6" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "882644" + }, + { + "_tag": "ByteArray", + "bytearray": "46083d628efd5d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18331197103850412810" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3347086947737629036" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8703773868229565311" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "74b24ae1a3b87c62a3c1a828" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7201688528637396807" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b66d9e8e10" + }, + { + "_tag": "ByteArray", + "bytearray": "ec" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b7b3a3192e6959a80454080a9978e1bb591585919e549411b77efe965141dd26fff4468f31b62a01bdb6ddf8a3f46f6d5d8669f1b9af64500f32e77cf9f4999599d900eeaa1dc55452154801f311bb7bd176fe0932405ffffff9f1b9752469843dba0a5bf1b028a01fb9232fced498d7b5388c6050eccd6ff9f438826444746083d628efd5d1bfe657ea4a2ac5b0affd8669f1b2e733dd8683f716c80ffd8669f1b78ca0437f5269b7f9f4c74b24ae1a3b87c62a3c1a8281b63f1898f8470074745b66d9e8e1041ecffffffff", + "cborBytes": [ + 159, 159, 191, 27, 123, 58, 49, 146, 230, 149, 154, 128, 69, 64, 128, 169, 151, 142, 27, 181, 145, 88, 89, 25, + 229, 73, 65, 27, 119, 239, 233, 101, 20, 29, 210, 111, 255, 68, 104, 243, 27, 98, 160, 27, 219, 109, 223, 138, 63, + 70, 246, 213, 216, 102, 159, 27, 154, 246, 69, 0, 243, 46, 119, 207, 159, 73, 153, 89, 157, 144, 14, 234, 161, + 220, 85, 69, 33, 84, 128, 31, 49, 27, 183, 189, 23, 111, 224, 147, 36, 5, 255, 255, 255, 159, 27, 151, 82, 70, + 152, 67, 219, 160, 165, 191, 27, 2, 138, 1, 251, 146, 50, 252, 237, 73, 141, 123, 83, 136, 198, 5, 14, 204, 214, + 255, 159, 67, 136, 38, 68, 71, 70, 8, 61, 98, 142, 253, 93, 27, 254, 101, 126, 164, 162, 172, 91, 10, 255, 216, + 102, 159, 27, 46, 115, 61, 216, 104, 63, 113, 108, 128, 255, 216, 102, 159, 27, 120, 202, 4, 55, 245, 38, 155, + 127, 159, 76, 116, 178, 74, 225, 163, 184, 124, 98, 163, 193, 168, 40, 27, 99, 241, 137, 143, 132, 112, 7, 71, 69, + 182, 109, 158, 142, 16, 65, 236, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 772, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "403780320919955296" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9225620909431001771" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13794339016805168109" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8551964876390082530" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b059a841003ba27601b8007fd56730d12abbf1bbf6f56400ffbb3ed1b76aeaebeacd927e2ffff", + "cborBytes": [ + 159, 27, 5, 154, 132, 16, 3, 186, 39, 96, 27, 128, 7, 253, 86, 115, 13, 18, 171, 191, 27, 191, 111, 86, 64, 15, + 251, 179, 237, 27, 118, 174, 174, 190, 172, 217, 39, 226, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 773, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5315" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4983338814241262234" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2951583679818325978" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f447453610cf18110a5434" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5765887230726238558" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e2a2da0591fcb2c71b1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13570993852236011869" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10099369161295321813" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15594482227571953165" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7216159631412895444" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17466558783748754221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8507" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "648b74c60afa589cef74" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11920469952933828066" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12912215323749081073" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72f346e82d051a9b8ff0" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14349835381448718557" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f4253151b4528603faa444a9abf1b28f621b7f8695fda4bf447453610cf18110a54341b50048be32a65f15e4a9e2a2da0591fcb2c71b11bbc55db01a389995d1b8c282abe528adad51bd86abaf67e918e0d1b6424f2f3b0e11ed41bf265aeac09d2cb2d428507ff9f4a648b74c60afa589cef741ba56e0443cc5695e21bb331676cd36b5ff14a72f346e82d051a9b8ff0a0ff9fd8669f1bc724db40309538dd80ffffff", + "cborBytes": [ + 159, 66, 83, 21, 27, 69, 40, 96, 63, 170, 68, 74, 154, 191, 27, 40, 246, 33, 183, 248, 105, 95, 218, 75, 244, 71, + 69, 54, 16, 207, 24, 17, 10, 84, 52, 27, 80, 4, 139, 227, 42, 101, 241, 94, 74, 158, 42, 45, 160, 89, 31, 203, 44, + 113, 177, 27, 188, 85, 219, 1, 163, 137, 153, 93, 27, 140, 40, 42, 190, 82, 138, 218, 213, 27, 216, 106, 186, 246, + 126, 145, 142, 13, 27, 100, 36, 242, 243, 176, 225, 30, 212, 27, 242, 101, 174, 172, 9, 210, 203, 45, 66, 133, 7, + 255, 159, 74, 100, 139, 116, 198, 10, 250, 88, 156, 239, 116, 27, 165, 110, 4, 67, 204, 86, 149, 226, 27, 179, 49, + 103, 108, 211, 107, 95, 241, 74, 114, 243, 70, 232, 45, 5, 26, 155, 143, 240, 160, 255, 159, 216, 102, 159, 27, + 199, 36, 219, 64, 48, 149, 56, 221, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 774, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5405447373965092157" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "3d8398adc3cd85d07d94" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16753424913503799022" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15523898320306772954" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2511268500302364068" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b09ac28c2e02924c2ba8cf" + }, + { + "_tag": "ByteArray", + "bytearray": "d5a601a1ee" + }, + { + "_tag": "ByteArray", + "bytearray": "8e96d7416ad38f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8913116741800605740" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18070908735334629106" + } + } + ] + } + ] + }, + "cborHex": "9f1b4b0401bf5141e53d9f804a3d8398adc3cd85d07d94ffd8669f1be8801f320492c6ee9fd8669f1bd76ff745ef2b1bda9f1b22d9d16550267da44bb09ac28c2e02924c2ba8cf45d5a601a1ee478e96d7416ad38f1b7bb1c073f49cb82cffff1bfac8c3c0421fbef2ffffff", + "cborBytes": [ + 159, 27, 75, 4, 1, 191, 81, 65, 229, 61, 159, 128, 74, 61, 131, 152, 173, 195, 205, 133, 208, 125, 148, 255, 216, + 102, 159, 27, 232, 128, 31, 50, 4, 146, 198, 238, 159, 216, 102, 159, 27, 215, 111, 247, 69, 239, 43, 27, 218, + 159, 27, 34, 217, 209, 101, 80, 38, 125, 164, 75, 176, 154, 194, 140, 46, 2, 146, 76, 43, 168, 207, 69, 213, 166, + 1, 161, 238, 71, 142, 150, 215, 65, 106, 211, 143, 27, 123, 177, 192, 115, 244, 156, 184, 44, 255, 255, 27, 250, + 200, 195, 192, 66, 31, 190, 242, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 775, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "93" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fd0099014cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6396621ee78a0466b8791ba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0bdb573129cbf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9453862499149023201" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4193461fd0099014cd4ce6396621ee78a0466b8791ba418f47f0bdb573129cbf1b8332dddab12a07e1ffff", + "cborBytes": [ + 159, 191, 65, 147, 70, 31, 208, 9, 144, 20, 205, 76, 230, 57, 102, 33, 238, 120, 160, 70, 107, 135, 145, 186, 65, + 143, 71, 240, 189, 181, 115, 18, 156, 191, 27, 131, 50, 221, 218, 177, 42, 7, 225, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 776, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "93f4" + } + ] + }, + "cborHex": "9f4293f4ff", + "cborBytes": [159, 66, 147, 244, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 777, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e72c03a0784d795c6a7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d77a3405" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2655caa2a1e44125" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "039a21" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7874048367592041631" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c64d19" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "baf76809d2d163" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fbf4a1e72c03a0784d795c6a744d77a3405482655caa2a1e4412543039a214275e51b6d463d4596916c9f43c64d1947baf76809d2d163ffd8669f1bffffffffffffffec9f80ffffff", + "cborBytes": [ + 159, 191, 74, 30, 114, 192, 58, 7, 132, 215, 149, 198, 167, 68, 215, 122, 52, 5, 72, 38, 85, 202, 162, 161, 228, + 65, 37, 67, 3, 154, 33, 66, 117, 229, 27, 109, 70, 61, 69, 150, 145, 108, 159, 67, 198, 77, 25, 71, 186, 247, 104, + 9, 210, 209, 99, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 778, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5f5958a6f52662" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "699089948721020154" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6695323472531522134" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1885626684843454718" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29c70e12f4617dc8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17981073026669185492" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3ee89b913bf" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5364575cc52b06a6622d48" + }, + { + "_tag": "ByteArray", + "bytearray": "551243f3961e47fb6931b57c" + }, + { + "_tag": "ByteArray", + "bytearray": "18" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5934178879661560550" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df5eb8" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f475f5958a6f52662bf1b09b3aa9abb8ffcfa1b5cea9139949382561b1a2b177ab91770fe4829c70e12f4617dc81bf9899aa662f989d446a3ee89b913bfff9f4b5364575cc52b06a6622d484c551243f3961e47fb6931b57c41181b525a70401bda52e643df5eb8ffffff", + "cborBytes": [ + 159, 159, 71, 95, 89, 88, 166, 245, 38, 98, 191, 27, 9, 179, 170, 154, 187, 143, 252, 250, 27, 92, 234, 145, 57, + 148, 147, 130, 86, 27, 26, 43, 23, 122, 185, 23, 112, 254, 72, 41, 199, 14, 18, 244, 97, 125, 200, 27, 249, 137, + 154, 166, 98, 249, 137, 212, 70, 163, 238, 137, 185, 19, 191, 255, 159, 75, 83, 100, 87, 92, 197, 43, 6, 166, 98, + 45, 72, 76, 85, 18, 67, 243, 150, 30, 71, 251, 105, 49, 181, 124, 65, 24, 27, 82, 90, 112, 64, 27, 218, 82, 230, + 67, 223, 94, 184, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 779, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2177534527240556345" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1375375602002310287" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da5be3b225c6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14039308867622013831" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bc89a5d8990c10d4cbbb2df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1d27dc4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "325bf4b0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa89db1127" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc3d6e1f7b001e63b79d" + } + } + ] + } + ] + }, + "cborHex": "9f1b1e38281d8e524f39bf1b131650d2ae16348f46da5be3b225c61bc2d5a5081a9a0b874c3bc89a5d8990c10d4cbbb2df44d1d27dc444325bf4b045fa89db11274afc3d6e1f7b001e63b79dffff", + "cborBytes": [ + 159, 27, 30, 56, 40, 29, 142, 82, 79, 57, 191, 27, 19, 22, 80, 210, 174, 22, 52, 143, 70, 218, 91, 227, 178, 37, + 198, 27, 194, 213, 165, 8, 26, 154, 11, 135, 76, 59, 200, 154, 93, 137, 144, 193, 13, 76, 187, 178, 223, 68, 209, + 210, 125, 196, 68, 50, 91, 244, 176, 69, 250, 137, 219, 17, 39, 74, 252, 61, 110, 31, 123, 0, 30, 99, 183, 157, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 780, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9468822429278315907" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11752588900877282136" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "992536503497653984" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcda" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7679498753673746057" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63f042" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13852315142346047268" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5010141361270390016" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11011243503234673851" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d7fbe01d168965205ed092fe" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8404505561454839629" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dee900eadea593f12973ba86" + }, + { + "_tag": "ByteArray", + "bytearray": "22b3f9774f466e5ed5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8583593242732737112" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17592800322564909502" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3533896436665187753" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c1" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ce9fd10346" + }, + { + "_tag": "ByteArray", + "bytearray": "75a22db52a09c7cdb7832d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5454361326647766962" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7127293389830981627" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14916125168655080555" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6614db7e7cd1e88c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16094053657507343963" + } + } + ] + }, + "cborHex": "9fd8669f1b836803d4da62a5839f9f1ba319955663fd2b58ffbf1b0dc632b0f595fee042fcda1b6a930f6dc1c756894363f0421bc03d4f3ab04cff241b45879905f1037d00ffd8669f1b98cfcba049a16cbb9f4cd7fbe01d168965205ed092feffffd8669f1b74a2cd47774f874d9f4cdee900eadea593f12973ba864922b3f9774f466e5ed51b771f0c93918732581bf4262eaec6dbe9be1b310aec15f4727da9ffff41c1ffff45ce9fd103464b75a22db52a09c7cdb7832dbf1b4bb1c8ba6777efb21b62e93b9376dd87fb1bcf00b8cfd6f31c6b486614db7e7cd1e88cff1bdf59908813cd2e5bff", + "cborBytes": [ + 159, 216, 102, 159, 27, 131, 104, 3, 212, 218, 98, 165, 131, 159, 159, 27, 163, 25, 149, 86, 99, 253, 43, 88, 255, + 191, 27, 13, 198, 50, 176, 245, 149, 254, 224, 66, 252, 218, 27, 106, 147, 15, 109, 193, 199, 86, 137, 67, 99, + 240, 66, 27, 192, 61, 79, 58, 176, 76, 255, 36, 27, 69, 135, 153, 5, 241, 3, 125, 0, 255, 216, 102, 159, 27, 152, + 207, 203, 160, 73, 161, 108, 187, 159, 76, 215, 251, 224, 29, 22, 137, 101, 32, 94, 208, 146, 254, 255, 255, 216, + 102, 159, 27, 116, 162, 205, 71, 119, 79, 135, 77, 159, 76, 222, 233, 0, 234, 222, 165, 147, 241, 41, 115, 186, + 134, 73, 34, 179, 249, 119, 79, 70, 110, 94, 213, 27, 119, 31, 12, 147, 145, 135, 50, 88, 27, 244, 38, 46, 174, + 198, 219, 233, 190, 27, 49, 10, 236, 21, 244, 114, 125, 169, 255, 255, 65, 193, 255, 255, 69, 206, 159, 209, 3, + 70, 75, 117, 162, 45, 181, 42, 9, 199, 205, 183, 131, 45, 191, 27, 75, 177, 200, 186, 103, 119, 239, 178, 27, 98, + 233, 59, 147, 118, 221, 135, 251, 27, 207, 0, 184, 207, 214, 243, 28, 107, 72, 102, 20, 219, 126, 124, 209, 232, + 140, 255, 27, 223, 89, 144, 136, 19, 205, 46, 91, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 781, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "460b85" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "14fa48" + }, + { + "_tag": "ByteArray", + "bytearray": "527708910692fc" + }, + { + "_tag": "ByteArray", + "bytearray": "729ef4f59f74dd" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7526914284431560545" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3745899745353441360" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7e1e06ba11e7be765eb7eff3" + }, + { + "_tag": "ByteArray", + "bytearray": "d2b36197bd83" + }, + { + "_tag": "ByteArray", + "bytearray": "27810b73620b964d5ac146" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6423118260712316115" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3dc14d57247ea8" + } + ] + } + ] + } + ] + }, + "cborHex": "9f43460b859f4314fa4847527708910692fc47729ef4f59f74ddbf1b6874f8a9925b4f611b33fc1bf8c604a050ff9f4c7e1e06ba11e7be765eb7eff346d2b36197bd834b27810b73620b964d5ac1461b59238006e8151cd3473dc14d57247ea8ffffff", + "cborBytes": [ + 159, 67, 70, 11, 133, 159, 67, 20, 250, 72, 71, 82, 119, 8, 145, 6, 146, 252, 71, 114, 158, 244, 245, 159, 116, + 221, 191, 27, 104, 116, 248, 169, 146, 91, 79, 97, 27, 51, 252, 27, 248, 198, 4, 160, 80, 255, 159, 76, 126, 30, + 6, 186, 17, 231, 190, 118, 94, 183, 239, 243, 70, 210, 179, 97, 151, 189, 131, 75, 39, 129, 11, 115, 98, 11, 150, + 77, 90, 193, 70, 27, 89, 35, 128, 6, 232, 21, 28, 211, 71, 61, 193, 77, 87, 36, 126, 168, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 782, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e746" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + "cborHex": "9f42e7460bff", + "cborBytes": [159, 66, 231, 70, 11, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 783, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16494732776509372486" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "142046ed0abe4151" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18215757127047230594" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4daefe5037a888ed594e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1711526854520133760" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66afc82f8fdf638f6f796b03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8889861958627787369" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6eea30fd651ba8fbf6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "804a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d648" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9476788307350975143" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4607645456124048778" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0a71f4a7e1e10c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1114591423061877512" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2866838908673205314" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8596942483657395283" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3ea37f2aacc5d0407e33" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "606721049467050951" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4059345333557243911" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b1b1abee8c6adf804" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "580728577124562629" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13716184241361161315" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4812786007963830620" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8734888384778309869" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14911694077816284664" + } + }, + { + "_tag": "ByteArray", + "bytearray": "220c241286" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "957127290167757062" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0808af9fd02674639f1889" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11345421576636117049" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1469181714347346101" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15597042342909171109" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba04b66f4a1950aa336974ca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16649892008111955378" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9ed30ee7a43" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18214732727594505575" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4816970151037937180" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8888474031493032781" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4026974635549770840" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7e" + }, + { + "_tag": "ByteArray", + "bytearray": "f7" + }, + { + "_tag": "ByteArray", + "bytearray": "d67184ffbdbf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "604584228317189120" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1be4e9101140d578469fbf48142046ed0abe41511bfccb5e988870b4824a4daefe5037a888ed594e1b17c0909b2b36d8804c66afc82f8fdf638f6f796b031b7b5f2259d2448269496eea30fd651ba8fbf642804a42d6481b838450c15f3af2a741dc1b3ff1a5214737758aff9f470a71f4a7e1e10cff9f1b0f77d2fe714ce3081b27c90ecc5bbc24421b774e79a3ecdd0c534a3ea37f2aacc5d0407e33ffffffbf1b086b8194773c5bc71b3855b112d351b007499b1b1abee8c6adf8041b080f2990666d76c5ffd8669f1bbe59ace564248c639fd8669f1b42ca736000a7895c9f1b79388eb4df6590ed1bcef0fac21b8925f845220c241286ffffbf1b0d486633074809064b0808af9fd02674639f18891b9d7308d03672b0391b146394fc322c48b51bd873d35fcbd3d5a54cba04b66f4a1950aa336974ca1be7104c910420ddb246a9ed30ee7a431bfcc7bae8f2f3d5671b42d950d4ba46a61cff1b7b5a3409da6d2b4dd8669f1b37e2b0185f73c4589f417e41f746d67184ffbdbf1b0863ea2705a65400ffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 228, 233, 16, 17, 64, 213, 120, 70, 159, 191, 72, 20, 32, 70, 237, 10, 190, 65, 81, 27, + 252, 203, 94, 152, 136, 112, 180, 130, 74, 77, 174, 254, 80, 55, 168, 136, 237, 89, 78, 27, 23, 192, 144, 155, 43, + 54, 216, 128, 76, 102, 175, 200, 47, 143, 223, 99, 143, 111, 121, 107, 3, 27, 123, 95, 34, 89, 210, 68, 130, 105, + 73, 110, 234, 48, 253, 101, 27, 168, 251, 246, 66, 128, 74, 66, 214, 72, 27, 131, 132, 80, 193, 95, 58, 242, 167, + 65, 220, 27, 63, 241, 165, 33, 71, 55, 117, 138, 255, 159, 71, 10, 113, 244, 167, 225, 225, 12, 255, 159, 27, 15, + 119, 210, 254, 113, 76, 227, 8, 27, 39, 201, 14, 204, 91, 188, 36, 66, 27, 119, 78, 121, 163, 236, 221, 12, 83, + 74, 62, 163, 127, 42, 172, 197, 208, 64, 126, 51, 255, 255, 255, 191, 27, 8, 107, 129, 148, 119, 60, 91, 199, 27, + 56, 85, 177, 18, 211, 81, 176, 7, 73, 155, 27, 26, 190, 232, 198, 173, 248, 4, 27, 8, 15, 41, 144, 102, 109, 118, + 197, 255, 216, 102, 159, 27, 190, 89, 172, 229, 100, 36, 140, 99, 159, 216, 102, 159, 27, 66, 202, 115, 96, 0, + 167, 137, 92, 159, 27, 121, 56, 142, 180, 223, 101, 144, 237, 27, 206, 240, 250, 194, 27, 137, 37, 248, 69, 34, + 12, 36, 18, 134, 255, 255, 191, 27, 13, 72, 102, 51, 7, 72, 9, 6, 75, 8, 8, 175, 159, 208, 38, 116, 99, 159, 24, + 137, 27, 157, 115, 8, 208, 54, 114, 176, 57, 27, 20, 99, 148, 252, 50, 44, 72, 181, 27, 216, 115, 211, 95, 203, + 211, 213, 165, 76, 186, 4, 182, 111, 74, 25, 80, 170, 51, 105, 116, 202, 27, 231, 16, 76, 145, 4, 32, 221, 178, + 70, 169, 237, 48, 238, 122, 67, 27, 252, 199, 186, 232, 242, 243, 213, 103, 27, 66, 217, 80, 212, 186, 70, 166, + 28, 255, 27, 123, 90, 52, 9, 218, 109, 43, 77, 216, 102, 159, 27, 55, 226, 176, 24, 95, 115, 196, 88, 159, 65, + 126, 65, 247, 70, 214, 113, 132, 255, 189, 191, 27, 8, 99, 234, 39, 5, 166, 84, 0, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 784, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6507434077790266823" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3104151a7dc00bda4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06871b724ebc88977aacd4b1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69c958395e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d555ab509" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "812e0f77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf9cd5754e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0d36cb2cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2998291316705106015" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0c6d693" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b24cd0e9614495" + } + } + ] + } + ] + }, + "cborHex": "9f1b5a4f0cd0ddf5e5c7bf493104151a7dc00bda4c4c06871b724ebc88977aacd4b141464569c958395e4147452d555ab50944812e0f7745cf9cd5754e45c0d36cb2cd1b299c12112158985f44e0c6d69347b24cd0e9614495ffff", + "cborBytes": [ + 159, 27, 90, 79, 12, 208, 221, 245, 229, 199, 191, 73, 49, 4, 21, 26, 125, 192, 11, 218, 76, 76, 6, 135, 27, 114, + 78, 188, 136, 151, 122, 172, 212, 177, 65, 70, 69, 105, 201, 88, 57, 94, 65, 71, 69, 45, 85, 90, 181, 9, 68, 129, + 46, 15, 119, 69, 207, 156, 213, 117, 78, 69, 192, 211, 108, 178, 205, 27, 41, 156, 18, 17, 33, 88, 152, 95, 68, + 224, 198, 214, 147, 71, 178, 76, 208, 233, 97, 68, 149, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 785, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3903778289831834224" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "58019db0b01654def184f712" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8326296485323022477" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7a0c7f7aa206" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e501fead" + } + ] + }, + "cborHex": "9fd8669f1b362d01abe74ef2709fa0ffffd8669f1bfffffffffffffff79f9f4c58019db0b01654def184f7121b738cf289ee43208d467a0c7f7aa206ffffff44e501feadff", + "cborBytes": [ + 159, 216, 102, 159, 27, 54, 45, 1, 171, 231, 78, 242, 112, 159, 160, 255, 255, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 247, 159, 159, 76, 88, 1, 157, 176, 176, 22, 84, 222, 241, 132, 247, 18, 27, 115, 140, 242, + 137, 238, 67, 32, 141, 70, 122, 12, 127, 122, 162, 6, 255, 255, 255, 68, 229, 1, 254, 173, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 786, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5056151262108806102" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11560006975817581949" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9589070625781799952" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6158666953828432373" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b9352446" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6981533000976410415" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fedabebfa7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8614258140592862104" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c81b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6275277235436120053" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14051552981275011140" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10181113051966800121" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11829291370380702895" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12139472556187054002" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f44f14fc4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfc9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15624583162157354759" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0dccceb5cc3c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cab9dfb4b767bd67041661" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "147d12a854" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8659863577808975816" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10005582826179897421" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87a79b2a1cbd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2588155992537606490" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a622165bafdc45f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "409706499289679177" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2b829d22" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8883990574344411153" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "983f508cd62d64cc70" + }, + { + "_tag": "ByteArray", + "bytearray": "c11faa8ae938" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5121025017980526512" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "222c74" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b462b0ec8c4a36bd69fd8669f1ba06d6518d2a5057d9f1b851338edd7db5c101b5577faf6e8e179f544b93524461b60e363464edda72fffff9f45fedabebfa71b778bfe23798df39842c81b1b57164365d543e7f5ffffff9f1bc30124fcf77a6844ffbf1b8d4a9461009300f91ba42a15d3bc22b4af1ba87811f8e021efb2453f44f14fc442dfc91bd8d5ab9a77f04f07ffbf460dccceb5cc3c4bcab9dfb4b767bd6704166145147d12a8541b782e040ac6a5b7c8413a1b8adaf8918d33a84d4687a79b2a1cbd1b23eafa299e80a95a48a622165bafdc45f21b05af91e3f0548549ff9f442b829d221b7b4a465ba3b798119f49983f508cd62d64cc7046c11faa8ae938ffd8669f1b4711891f1a9e1fb09f43222c74ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 70, 43, 14, 200, 196, 163, 107, 214, 159, 216, 102, 159, 27, 160, 109, 101, 24, 210, 165, + 5, 125, 159, 27, 133, 19, 56, 237, 215, 219, 92, 16, 27, 85, 119, 250, 246, 232, 225, 121, 245, 68, 185, 53, 36, + 70, 27, 96, 227, 99, 70, 78, 221, 167, 47, 255, 255, 159, 69, 254, 218, 190, 191, 167, 27, 119, 139, 254, 35, 121, + 141, 243, 152, 66, 200, 27, 27, 87, 22, 67, 101, 213, 67, 231, 245, 255, 255, 255, 159, 27, 195, 1, 36, 252, 247, + 122, 104, 68, 255, 191, 27, 141, 74, 148, 97, 0, 147, 0, 249, 27, 164, 42, 21, 211, 188, 34, 180, 175, 27, 168, + 120, 17, 248, 224, 33, 239, 178, 69, 63, 68, 241, 79, 196, 66, 223, 201, 27, 216, 213, 171, 154, 119, 240, 79, 7, + 255, 191, 70, 13, 204, 206, 181, 204, 60, 75, 202, 185, 223, 180, 183, 103, 189, 103, 4, 22, 97, 69, 20, 125, 18, + 168, 84, 27, 120, 46, 4, 10, 198, 165, 183, 200, 65, 58, 27, 138, 218, 248, 145, 141, 51, 168, 77, 70, 135, 167, + 155, 42, 28, 189, 27, 35, 234, 250, 41, 158, 128, 169, 90, 72, 166, 34, 22, 91, 175, 220, 69, 242, 27, 5, 175, + 145, 227, 240, 84, 133, 73, 255, 159, 68, 43, 130, 157, 34, 27, 123, 74, 70, 91, 163, 183, 152, 17, 159, 73, 152, + 63, 80, 140, 214, 45, 100, 204, 112, 70, 193, 31, 170, 138, 233, 56, 255, 216, 102, 159, 27, 71, 17, 137, 31, 26, + 158, 31, 176, 159, 67, 34, 44, 116, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 787, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13468822351603752922" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "37f7593bacd3cefbd9e1bd43" + } + ] + }, + "cborHex": "9fd8669f1bbaeade91622edfda80ff4c37f7593bacd3cefbd9e1bd43ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 186, 234, 222, 145, 98, 46, 223, 218, 128, 255, 76, 55, 247, 89, 59, 172, 211, 206, 251, + 217, 225, 189, 67, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 788, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2633524868546221696" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "397980912962974807" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1706830164920433912" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12530003672938250967" + } + }, + { + "_tag": "ByteArray", + "bytearray": "45eb1b6a63b0c6e05f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12772499065900444001" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cbb314ae3f40c35900" + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b248c28ea38dad6809f1b0585e988208b34571b17afe0fde800fcf81bade383f427d302d74945eb1b6a63b0c6e05f1bb141083a95012961ffff49cbb314ae3f40c35900ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 36, 140, 40, 234, 56, 218, 214, 128, 159, 27, 5, 133, 233, 136, 32, 139, 52, 87, 27, + 23, 175, 224, 253, 232, 0, 252, 248, 27, 173, 227, 131, 244, 39, 211, 2, 215, 73, 69, 235, 27, 106, 99, 176, 198, + 224, 95, 27, 177, 65, 8, 58, 149, 1, 41, 97, 255, 255, 73, 203, 179, 20, 174, 63, 64, 195, 89, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 789, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "743049402766931779" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d3795b29c8d962204841130e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "209973089970857524" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "66c8889604e938b476" + } + ] + }, + "cborHex": "9fbf111b0a4fd77eb67d3743ff9f4cd3795b29c8d962204841130ed8669f1b02e9f969b01aa63480ffff4966c8889604e938b476ff", + "cborBytes": [ + 159, 191, 17, 27, 10, 79, 215, 126, 182, 125, 55, 67, 255, 159, 76, 211, 121, 91, 41, 200, 217, 98, 32, 72, 65, + 19, 14, 216, 102, 159, 27, 2, 233, 249, 105, 176, 26, 166, 52, 128, 255, 255, 73, 102, 200, 136, 150, 4, 233, 56, + 180, 118, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 790, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2a26ec0f54e7ec5f17c9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16511440126579485943" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6891475127515310172" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "937b7ebe070284502c13d3" + }, + { + "_tag": "ByteArray", + "bytearray": "5241d3af38c9d430" + }, + { + "_tag": "ByteArray", + "bytearray": "9283" + }, + { + "_tag": "ByteArray", + "bytearray": "a1052095c82fa63d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a032dd55df74" + }, + { + "_tag": "ByteArray", + "bytearray": "2f4b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15429136479708901735" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6f8a2aab68" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10147303172350013285" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7d" + }, + { + "_tag": "ByteArray", + "bytearray": "4e1456721c" + } + ] + } + ] + } + ] + }, + "cborHex": "9f4a2a26ec0f54e7ec5f17c9d8669f1be5246b5052e6acf780ff809fd8669f1b5fa3701da9fd685c9f4b937b7ebe070284502c13d3485241d3af38c9d43042928348a1052095c82fa63dffff46a032dd55df74422f4bd8669f1bd61f4de19811f1679f456f8a2aab681b8cd27678f81def65417d454e1456721cffffffff", + "cborBytes": [ + 159, 74, 42, 38, 236, 15, 84, 231, 236, 95, 23, 201, 216, 102, 159, 27, 229, 36, 107, 80, 82, 230, 172, 247, 128, + 255, 128, 159, 216, 102, 159, 27, 95, 163, 112, 29, 169, 253, 104, 92, 159, 75, 147, 123, 126, 190, 7, 2, 132, 80, + 44, 19, 211, 72, 82, 65, 211, 175, 56, 201, 212, 48, 66, 146, 131, 72, 161, 5, 32, 149, 200, 47, 166, 61, 255, + 255, 70, 160, 50, 221, 85, 223, 116, 66, 47, 75, 216, 102, 159, 27, 214, 31, 77, 225, 152, 17, 241, 103, 159, 69, + 111, 138, 42, 171, 104, 27, 140, 210, 118, 120, 248, 29, 239, 101, 65, 125, 69, 78, 20, 86, 114, 28, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 791, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "849915695118530154" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6710692400644474797" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1529725118240997158" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0437050d509e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9397353239611246335" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34dff1f64d7e" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10980338858322024755" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd40ccf269b903" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7badace5042ca07f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2427981718398103248" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6389a81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9212550502999725971" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e975762037075c51ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e95bdee8" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17485729432149902623" + } + } + ] + }, + "cborHex": "9fbf1b0bcb81d25891b66a1b5d212b2f0153c7ad1b153aace3e4bf3f26460437050d509e1b826a1afb6be506ff4634dff1f64d7effbf1b98620003ebb3d93347fd40ccf269b903487badace5042ca07f1b21b1ec824642eed044b6389a811b7fd98ddf4ea5179349e975762037075c51ff44e95bdee8ff1bf2a9ca4671e3451fff", + "cborBytes": [ + 159, 191, 27, 11, 203, 129, 210, 88, 145, 182, 106, 27, 93, 33, 43, 47, 1, 83, 199, 173, 27, 21, 58, 172, 227, + 228, 191, 63, 38, 70, 4, 55, 5, 13, 80, 158, 27, 130, 106, 26, 251, 107, 229, 6, 255, 70, 52, 223, 241, 246, 77, + 126, 255, 191, 27, 152, 98, 0, 3, 235, 179, 217, 51, 71, 253, 64, 204, 242, 105, 185, 3, 72, 123, 173, 172, 229, + 4, 44, 160, 127, 27, 33, 177, 236, 130, 70, 66, 238, 208, 68, 182, 56, 154, 129, 27, 127, 217, 141, 223, 78, 165, + 23, 147, 73, 233, 117, 118, 32, 55, 7, 92, 81, 255, 68, 233, 91, 222, 232, 255, 27, 242, 169, 202, 70, 113, 227, + 69, 31, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 792, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2462783211830356317" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5979801994011496913" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5426657522195629721" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6552299720210261770" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6106222810664861579" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15084978705718170664" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6345727753710604724" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02aa97105f671101053b5e41" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7094018782945530158" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13389669264879763930" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15885037647616251767" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "584796" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7dcaf19bb0a1" + } + ] + }, + "cborHex": "9fbf1b222d904863f1a95d1b52fc863b303a51d11b4b4f5c43c82c06991b5aee71e14506270a1b54bda94b4d10ff8b1bd1589c358ea9d4281b58108dc5594211b44c02aa97105f671101053b5e411b6273047f536ad12e1bb9d1a941411fc1da1bdc72fd93f5df977743584796ffa0467dcaf19bb0a1ff", + "cborBytes": [ + 159, 191, 27, 34, 45, 144, 72, 99, 241, 169, 93, 27, 82, 252, 134, 59, 48, 58, 81, 209, 27, 75, 79, 92, 67, 200, + 44, 6, 153, 27, 90, 238, 113, 225, 69, 6, 39, 10, 27, 84, 189, 169, 75, 77, 16, 255, 139, 27, 209, 88, 156, 53, + 142, 169, 212, 40, 27, 88, 16, 141, 197, 89, 66, 17, 180, 76, 2, 170, 151, 16, 95, 103, 17, 1, 5, 59, 94, 65, 27, + 98, 115, 4, 127, 83, 106, 209, 46, 27, 185, 209, 169, 65, 65, 31, 193, 218, 27, 220, 114, 253, 147, 245, 223, 151, + 119, 67, 88, 71, 150, 255, 160, 70, 125, 202, 241, 155, 176, 161, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 793, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16603017632164936478" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4029627627895086932" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2fcef09c8d6988" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3395892903586400953" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b9483f006430" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6278009131918289649" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "245123751435556200" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2308563376001561967" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d7e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "64e07e2f72aa22d6ca648898" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10519389299794372120" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18333560572412202427" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea" + }, + { + "_tag": "ByteArray", + "bytearray": "fa21072587f5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10648447108325368162" + } + }, + { + "_tag": "ByteArray", + "bytearray": "65b6b0c11b" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "06" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "4e5f2f7782118cb6287c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12937750509550450950" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10397509993700285625" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15639248846674134124" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5928379245884891463" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18399802733582692822" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15fc6a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d30751898" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18261859093285751237" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4571049417888931880" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3b11650c5bd7cd4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7209068900727946248" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7134297811225169846" + } + }, + { + "_tag": "ByteArray", + "bytearray": "155592e1e4de325319" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13781095115302896510" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17711006447654755278" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "381634433023901427" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15844744718258515751" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a1a4b994" + } + ] + }, + "cborHex": "9fd8669f1be669c491e4bcfb1e9f1b37ec1cfa49c95f54472fcef09c8d6988d8669f1b2f20a29a85898ab99f46b9483f0064301b571ff80b0ca5eaf11b0366dac0d253d5681b2009aa28c00cb56f429d7effff9f4c64e07e2f72aa22d6ca648898ffd8669f1b91fc60d58449e6189f1bfe6de4348abc8dbb41ea46fa21072587f51b93c6e23a2544e1624565b6b0c11bffffffff9f4106a04a4e5f2f7782118cb6287cbf1bb38c1f8a926239064127ffffd8669f1b904b60403b145cb99f1bd909c5f73bf3046cd8669f1b5245d583a4c461479f410affffbf1bff593b19907531d64315fc6a453d307518981bfd6f28170188c9c542d5c21b3f6fa13a2406a02848e3b11650c5bd7cd41b640bc1f84d347c08ff9f1b63021e0f67ec4fb649155592e1e4de3253191bbf4048fdf380037effd8669f1bf5ca2286f71d5bce9f1b054bd67eae727ef31bdbe3d75f488baf27ffffffffa044a1a4b994ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 230, 105, 196, 145, 228, 188, 251, 30, 159, 27, 55, 236, 28, 250, 73, 201, 95, 84, 71, 47, + 206, 240, 156, 141, 105, 136, 216, 102, 159, 27, 47, 32, 162, 154, 133, 137, 138, 185, 159, 70, 185, 72, 63, 0, + 100, 48, 27, 87, 31, 248, 11, 12, 165, 234, 241, 27, 3, 102, 218, 192, 210, 83, 213, 104, 27, 32, 9, 170, 40, 192, + 12, 181, 111, 66, 157, 126, 255, 255, 159, 76, 100, 224, 126, 47, 114, 170, 34, 214, 202, 100, 136, 152, 255, 216, + 102, 159, 27, 145, 252, 96, 213, 132, 73, 230, 24, 159, 27, 254, 109, 228, 52, 138, 188, 141, 187, 65, 234, 70, + 250, 33, 7, 37, 135, 245, 27, 147, 198, 226, 58, 37, 68, 225, 98, 69, 101, 182, 176, 193, 27, 255, 255, 255, 255, + 159, 65, 6, 160, 74, 78, 95, 47, 119, 130, 17, 140, 182, 40, 124, 191, 27, 179, 140, 31, 138, 146, 98, 57, 6, 65, + 39, 255, 255, 216, 102, 159, 27, 144, 75, 96, 64, 59, 20, 92, 185, 159, 27, 217, 9, 197, 247, 59, 243, 4, 108, + 216, 102, 159, 27, 82, 69, 213, 131, 164, 196, 97, 71, 159, 65, 10, 255, 255, 191, 27, 255, 89, 59, 25, 144, 117, + 49, 214, 67, 21, 252, 106, 69, 61, 48, 117, 24, 152, 27, 253, 111, 40, 23, 1, 136, 201, 197, 66, 213, 194, 27, 63, + 111, 161, 58, 36, 6, 160, 40, 72, 227, 177, 22, 80, 197, 189, 124, 212, 27, 100, 11, 193, 248, 77, 52, 124, 8, + 255, 159, 27, 99, 2, 30, 15, 103, 236, 79, 182, 73, 21, 85, 146, 225, 228, 222, 50, 83, 25, 27, 191, 64, 72, 253, + 243, 128, 3, 126, 255, 216, 102, 159, 27, 245, 202, 34, 134, 247, 29, 91, 206, 159, 27, 5, 75, 214, 126, 174, 114, + 126, 243, 27, 219, 227, 215, 95, 72, 139, 175, 39, 255, 255, 255, 255, 160, 68, 161, 164, 185, 148, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 794, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1988044519390954283" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "26602a1ac6a40d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1099623689255450369" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "816956423537700194" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15934960133863557263" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11681166576008979381" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4982e89098ef92" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5897458380325411212" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99ddd703e2209dd5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6c423d52746e3129e4e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5565002218580931031" + } + } + ] + }, + "cborHex": "9f80d8669f1b1b96f3f50ff5c32b9f4726602a1ac6a40dd8669f1b0f42a5eb58acf7019f1b0b566989edf02d621bdd2459d090f2c88f41ed1ba21bd71c852e63b5ffff80ffffbf474982e89098ef921b51d7fb269cf2598c4899ddd703e2209dd54aa6c423d52746e3129e4eff1b4d3adc087cc6f1d7ff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 27, 150, 243, 245, 15, 245, 195, 43, 159, 71, 38, 96, 42, 26, 198, 164, 13, 216, 102, + 159, 27, 15, 66, 165, 235, 88, 172, 247, 1, 159, 27, 11, 86, 105, 137, 237, 240, 45, 98, 27, 221, 36, 89, 208, + 144, 242, 200, 143, 65, 237, 27, 162, 27, 215, 28, 133, 46, 99, 181, 255, 255, 128, 255, 255, 191, 71, 73, 130, + 232, 144, 152, 239, 146, 27, 81, 215, 251, 38, 156, 242, 89, 140, 72, 153, 221, 215, 3, 226, 32, 157, 213, 74, + 166, 196, 35, 213, 39, 70, 227, 18, 158, 78, 255, 27, 77, 58, 220, 8, 124, 198, 241, 215, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 795, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2365451405078825372" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60149f62c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15660430553162298877" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae0deeea53a2974f63" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a11845" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8944a6bff51bf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2e5ea44892558be8197a8a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9282675665528997360" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13429552668120773975" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "761655985472968622" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ec275cc9e9fa" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15121604640317891400" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3366415560911385835" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ced" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5062247174449871375" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1abb87e95c9656652232ef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16561510689985264113" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17996267182682130439" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f36e08db2b3e12e587" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13967030682090717061" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13548777892384243468" + } + }, + { + "_tag": "ByteArray", + "bytearray": "32a0f25e9387d274" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "727619562988229172" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d08738e2e06822b4a384a1" + }, + { + "_tag": "ByteArray", + "bytearray": "e1f6fdad9c7b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "155b921ef7c168db" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "717721498242174010" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "881573489292de11" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "555f7a3dcb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3fa61d0196b11b8ec6c8330a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b26777b6bc8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9013ab" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b20d3c5852d2c099c4560149f62c11bd955069d96e9b5fd49ae0deeea53a2974f6343a1184547d8944a6bff51bf4cf2e5ea44892558be8197a8a41b80d2b0560904c5f0ffd8669f1bba5f5affb3bcf5579f1b0a91f215572a97ae46ec275cc9e9faffffd8669f1bd1dabb4d7c0be3489fbf1b2eb7e91dda7874eb420ced1b4640b6fbf64f3a0f4b1abb87e95c9656652232ef1be5d64e39d467f9f11bf9bf95a782c9c80749f36e08db2b3e12e5874140ffd8669f1bc1d4dc67a4ffbf859f1bbc06edb5683a7f0c4832a0f25e9387d2741b0a1906232f89d2344bd08738e2e06822b4a384a146e1f6fdad9c7bffffbf48155b921ef7c168db1b09f5dbe66662cc3a414c48881573489292de1145555f7a3dcb4c3fa61d0196b11b8ec6c8330a465b26777b6bc8439013abffffffff", + "cborBytes": [ + 159, 191, 27, 32, 211, 197, 133, 45, 44, 9, 156, 69, 96, 20, 159, 98, 193, 27, 217, 85, 6, 157, 150, 233, 181, + 253, 73, 174, 13, 238, 234, 83, 162, 151, 79, 99, 67, 161, 24, 69, 71, 216, 148, 74, 107, 255, 81, 191, 76, 242, + 229, 234, 68, 137, 37, 88, 190, 129, 151, 168, 164, 27, 128, 210, 176, 86, 9, 4, 197, 240, 255, 216, 102, 159, 27, + 186, 95, 90, 255, 179, 188, 245, 87, 159, 27, 10, 145, 242, 21, 87, 42, 151, 174, 70, 236, 39, 92, 201, 233, 250, + 255, 255, 216, 102, 159, 27, 209, 218, 187, 77, 124, 11, 227, 72, 159, 191, 27, 46, 183, 233, 29, 218, 120, 116, + 235, 66, 12, 237, 27, 70, 64, 182, 251, 246, 79, 58, 15, 75, 26, 187, 135, 233, 92, 150, 86, 101, 34, 50, 239, 27, + 229, 214, 78, 57, 212, 103, 249, 241, 27, 249, 191, 149, 167, 130, 201, 200, 7, 73, 243, 110, 8, 219, 43, 62, 18, + 229, 135, 65, 64, 255, 216, 102, 159, 27, 193, 212, 220, 103, 164, 255, 191, 133, 159, 27, 188, 6, 237, 181, 104, + 58, 127, 12, 72, 50, 160, 242, 94, 147, 135, 210, 116, 27, 10, 25, 6, 35, 47, 137, 210, 52, 75, 208, 135, 56, 226, + 224, 104, 34, 180, 163, 132, 161, 70, 225, 246, 253, 173, 156, 123, 255, 255, 191, 72, 21, 91, 146, 30, 247, 193, + 104, 219, 27, 9, 245, 219, 230, 102, 98, 204, 58, 65, 76, 72, 136, 21, 115, 72, 146, 146, 222, 17, 69, 85, 95, + 122, 61, 203, 76, 63, 166, 29, 1, 150, 177, 27, 142, 198, 200, 51, 10, 70, 91, 38, 119, 123, 107, 200, 67, 144, + 19, 171, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 796, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b2d68dc37635" + } + ] + }, + "cborHex": "9f46b2d68dc37635ff", + "cborBytes": [159, 70, 178, 214, 141, 195, 118, 53, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 797, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3034728443147059095" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4515144424957103442" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15797357231978817567" + } + }, + { + "_tag": "ByteArray", + "bytearray": "91ca5e1301e1c6" + }, + { + "_tag": "ByteArray", + "bytearray": "ad89" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13596243403685915641" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cf72bc4225dc9b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "114fca7e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "942186451bc687" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1035856642915740437" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23e04e94cb66cb0a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf2a22ae492064905c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae7dce5e30cd864b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc1d6a9f46dfc12ebe15" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ed2f060" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14930699080775876907" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b2a1d8570bb8dff979fd8669f1b3ea903eea7274d529f1bdb3b7cb45a0ba81f4791ca5e1301e1c642ad89ffff9f1bbcaf8f56f4726bf9ffbf487cf72bc4225dc9b644114fca7e47942186451bc6871b0e601a20e738ab1541ad4823e04e94cb66cb0a49bf2a22ae492064905c48ae7dce5e30cd864b4acc1d6a9f46dfc12ebe15444ed2f060ff1bcf347fb52de5c12bffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 42, 29, 133, 112, 187, 141, 255, 151, 159, 216, 102, 159, 27, 62, 169, 3, 238, 167, 39, + 77, 82, 159, 27, 219, 59, 124, 180, 90, 11, 168, 31, 71, 145, 202, 94, 19, 1, 225, 198, 66, 173, 137, 255, 255, + 159, 27, 188, 175, 143, 86, 244, 114, 107, 249, 255, 191, 72, 124, 247, 43, 196, 34, 93, 201, 182, 68, 17, 79, + 202, 126, 71, 148, 33, 134, 69, 27, 198, 135, 27, 14, 96, 26, 32, 231, 56, 171, 21, 65, 173, 72, 35, 224, 78, 148, + 203, 102, 203, 10, 73, 191, 42, 34, 174, 73, 32, 100, 144, 92, 72, 174, 125, 206, 94, 48, 205, 134, 75, 74, 204, + 29, 106, 159, 70, 223, 193, 46, 190, 21, 68, 78, 210, 240, 96, 255, 27, 207, 52, 127, 181, 45, 229, 193, 43, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 798, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f3f6c79f0105eb8efa61ff06" + } + ] + }, + "cborHex": "9fa04cf3f6c79f0105eb8efa61ff06ff", + "cborBytes": [159, 160, 76, 243, 246, 199, 159, 1, 5, 235, 142, 250, 97, 255, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 799, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8cf4a92a21ab5faffe7960" + }, + { + "_tag": "ByteArray", + "bytearray": "942c36" + } + ] + }, + "cborHex": "9f4b8cf4a92a21ab5faffe796043942c36ff", + "cborBytes": [159, 75, 140, 244, 169, 42, 33, 171, 95, 175, 254, 121, 96, 67, 148, 44, 54, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 800, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12989372124563440373" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17135dd6f944ac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84bd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fa721f581111faa8e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6615601758576988757" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f9f16f959a9af49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10564136293792170536" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "738d76e20fd8e59b658534" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16646932298209325865" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88c00a3ef7a1b74d2bd2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9788992881862993126" + } + } + } + ] + } + ] + }, + "cborHex": "9f10bf061bfffffffffffffff11bb44385206bf702f54717135dd6f944ac1bfffffffffffffff24284bd411b1bffffffffffffffffffbf490fa721f581111faa8e1b5bcf56bf9b6e5255486f9f16f959a9af491b929b59fcee4b42284b738d76e20fd8e59b6585341be705c8b9dabe73294a88c00a3ef7a1b74d2bd21b87d97d29684564e6ffff", + "cborBytes": [ + 159, 16, 191, 6, 27, 255, 255, 255, 255, 255, 255, 255, 241, 27, 180, 67, 133, 32, 107, 247, 2, 245, 71, 23, 19, + 93, 214, 249, 68, 172, 27, 255, 255, 255, 255, 255, 255, 255, 242, 66, 132, 189, 65, 27, 27, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 191, 73, 15, 167, 33, 245, 129, 17, 31, 170, 142, 27, 91, 207, 86, 191, 155, 110, 82, 85, + 72, 111, 159, 22, 249, 89, 169, 175, 73, 27, 146, 155, 89, 252, 238, 75, 66, 40, 75, 115, 141, 118, 226, 15, 216, + 229, 155, 101, 133, 52, 27, 231, 5, 200, 185, 218, 190, 115, 41, 74, 136, 192, 10, 62, 247, 161, 183, 77, 43, 210, + 27, 135, 217, 125, 41, 104, 69, 100, 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 801, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4686209579331377245" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17435173889637582931" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12289315423959344908" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d9322" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15275530065422298429" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2940005713143162347" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17168275047376214704" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd55ce6062bb94" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5526974822740503461" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6ad5cdbae5" + }, + { + "_tag": "ByteArray", + "bytearray": "64" + }, + { + "_tag": "ByteArray", + "bytearray": "1f20" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3916185850312479887" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2197234716032142331" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "960489538230375224" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10844947626188743236" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5151239588135198343" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a27e7cfa67" + }, + { + "_tag": "ByteArray", + "bytearray": "5ac1ed64b637cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11774218711946371596" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7b" + } + ] + }, + "cborHex": "9fbf1b4108c2c8a714585d1bf1f62e46f10388531baa8c6b4439d3670c434d93221bd3fd95a9494bad3d1b28ccff9e898465eb1bee41f731b50fdab047bd55ce6062bb94ff9fd8669f1b4cb3c2516ff9aba59f456ad5cdbae54164421f201b365916483249548fffffff1b1e7e255531408bfbd8669f1b0d54582568b353389f9f1b9680fe6832b222441b477ce11cebba5e8745a27e7cfa67475ac1ed64b637cc1ba3666d893952220cffffff417bff", + "cborBytes": [ + 159, 191, 27, 65, 8, 194, 200, 167, 20, 88, 93, 27, 241, 246, 46, 70, 241, 3, 136, 83, 27, 170, 140, 107, 68, 57, + 211, 103, 12, 67, 77, 147, 34, 27, 211, 253, 149, 169, 73, 75, 173, 61, 27, 40, 204, 255, 158, 137, 132, 101, 235, + 27, 238, 65, 247, 49, 181, 15, 218, 176, 71, 189, 85, 206, 96, 98, 187, 148, 255, 159, 216, 102, 159, 27, 76, 179, + 194, 81, 111, 249, 171, 165, 159, 69, 106, 213, 205, 186, 229, 65, 100, 66, 31, 32, 27, 54, 89, 22, 72, 50, 73, + 84, 143, 255, 255, 255, 27, 30, 126, 37, 85, 49, 64, 139, 251, 216, 102, 159, 27, 13, 84, 88, 37, 104, 179, 83, + 56, 159, 159, 27, 150, 128, 254, 104, 50, 178, 34, 68, 27, 71, 124, 225, 28, 235, 186, 94, 135, 69, 162, 126, 124, + 250, 103, 71, 90, 193, 237, 100, 182, 55, 204, 27, 163, 102, 109, 137, 57, 82, 34, 12, 255, 255, 255, 65, 123, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 802, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2915281836011943100" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4387019761768666907" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e4d1568707dcedf90ab9f5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2902578659422326318" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11702479470358944435" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17956055910024073514" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b287529624fa3f4bc9fd8669f1b3ce1d33adad7171b9f4be4d1568707dcedf90ab9f51b284807e9877f4e2effff1ba2678f136e0bdab31bf930b9b70409d12affffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 40, 117, 41, 98, 79, 163, 244, 188, 159, 216, 102, 159, 27, 60, 225, 211, 58, 218, 215, + 23, 27, 159, 75, 228, 209, 86, 135, 7, 220, 237, 249, 10, 185, 245, 27, 40, 72, 7, 233, 135, 127, 78, 46, 255, + 255, 27, 162, 103, 143, 19, 110, 11, 218, 179, 27, 249, 48, 185, 183, 4, 9, 209, 42, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 803, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16987813785897279979" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "22" + }, + { + "_tag": "ByteArray", + "bytearray": "cc9147c0d4a5936d64" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "94c38de3d3e220f7911917d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76b428e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb84" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3836244711136513863" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7491900738719529674" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4292549453914103378" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3811634371400607182" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8932792759398276223" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5585582908750069953" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11078086024980815313" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bebc0d6a20ae421eb9f412249cc9147c0d4a5936d64bf4c94c38de3d3e220f7911917d14476b428e542cb841b353d143d4ec34f47ffd8669f1b67f894072fdd3aca9f1b3b9232fc4558de521b34e5a5441100a5ceffff1b7bf7a7afcc1d9c7fffff1b4d83fa0fd38a80c1a0a0d8669f1b99bd448ba6335dd180ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 235, 192, 214, 162, 10, 228, 33, 235, 159, 65, 34, 73, 204, 145, 71, 192, 212, 165, 147, + 109, 100, 191, 76, 148, 195, 141, 227, 211, 226, 32, 247, 145, 25, 23, 209, 68, 118, 180, 40, 229, 66, 203, 132, + 27, 53, 61, 20, 61, 78, 195, 79, 71, 255, 216, 102, 159, 27, 103, 248, 148, 7, 47, 221, 58, 202, 159, 27, 59, 146, + 50, 252, 69, 88, 222, 82, 27, 52, 229, 165, 68, 17, 0, 165, 206, 255, 255, 27, 123, 247, 167, 175, 204, 29, 156, + 127, 255, 255, 27, 77, 131, 250, 15, 211, 138, 128, 193, 160, 160, 216, 102, 159, 27, 153, 189, 68, 139, 166, 51, + 93, 209, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 804, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9115819087210455588" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a95f06a004050505029c9100" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d4edb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9560456741052862980" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14415831620579478297" + } + }, + { + "_tag": "ByteArray", + "bytearray": "50455f937db756b181a04b89" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15398069308649006223" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6ef1b4df37a7dd480ea030" + }, + { + "_tag": "ByteArray", + "bytearray": "7eb0fee8" + }, + { + "_tag": "ByteArray", + "bytearray": "52c5a362eef959be5957e6ac" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "189012566769800835" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13223479100569458059" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1c64b43f939a8af" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1fdcd56b5e3ca9e18805e" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b7e81e52981e7a2244ca95f06a004050505029c9100437d4edb1bfffffffffffffff5ffd8669f1b84ad90c0a4f1d2049f9f1bc80f527b067bcb194c50455f937db756b181a04b89ffd8669f1bd5b0ee7428de648f9f4b6ef1b4df37a7dd480ea030447eb0fee84c52c5a362eef959be5957e6ac1b029f81ed94661683ffff1bb7833c2e543e958bbf48d1c64b43f939a8af4bc1fdcd56b5e3ca9e18805effffffff", + "cborBytes": [ + 159, 191, 27, 126, 129, 229, 41, 129, 231, 162, 36, 76, 169, 95, 6, 160, 4, 5, 5, 5, 2, 156, 145, 0, 67, 125, 78, + 219, 27, 255, 255, 255, 255, 255, 255, 255, 245, 255, 216, 102, 159, 27, 132, 173, 144, 192, 164, 241, 210, 4, + 159, 159, 27, 200, 15, 82, 123, 6, 123, 203, 25, 76, 80, 69, 95, 147, 125, 183, 86, 177, 129, 160, 75, 137, 255, + 216, 102, 159, 27, 213, 176, 238, 116, 40, 222, 100, 143, 159, 75, 110, 241, 180, 223, 55, 167, 221, 72, 14, 160, + 48, 68, 126, 176, 254, 232, 76, 82, 197, 163, 98, 238, 249, 89, 190, 89, 87, 230, 172, 27, 2, 159, 129, 237, 148, + 102, 22, 131, 255, 255, 27, 183, 131, 60, 46, 84, 62, 149, 139, 191, 72, 209, 198, 75, 67, 249, 57, 168, 175, 75, + 193, 253, 205, 86, 181, 227, 202, 158, 24, 128, 94, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 805, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13278696221227093464" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "533564169917210600" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1637659575461427059" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1144587351803304234" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15184930963686163751" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8284846084680957804" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bf86f866702" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14178444003173851209" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f8867abe39c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16323096956848938847" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13358773631155375212" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15236641308349760916" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18012941536307930507" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af142e58e136" + } + ] + }, + "cborHex": "9f1bb84767dc12900dd8bf1b076799c91cca9fe81b16ba22b50a6537731b0fe26421d6a4192a1bd2bbb6421d5805271b72f9af9e7831bf6c467bf86f8667021bc4c3f3b344f1e049466f8867abe39c1be2874a32e33d9f5f4152ff9f80a01bb963e5d6f7df0c6c1bd3736c8af23b0594ff1bf9fad2e3ff83658b46af142e58e136ff", + "cborBytes": [ + 159, 27, 184, 71, 103, 220, 18, 144, 13, 216, 191, 27, 7, 103, 153, 201, 28, 202, 159, 232, 27, 22, 186, 34, 181, + 10, 101, 55, 115, 27, 15, 226, 100, 33, 214, 164, 25, 42, 27, 210, 187, 182, 66, 29, 88, 5, 39, 27, 114, 249, 175, + 158, 120, 49, 191, 108, 70, 123, 248, 111, 134, 103, 2, 27, 196, 195, 243, 179, 68, 241, 224, 73, 70, 111, 136, + 103, 171, 227, 156, 27, 226, 135, 74, 50, 227, 61, 159, 95, 65, 82, 255, 159, 128, 160, 27, 185, 99, 229, 214, + 247, 223, 12, 108, 27, 211, 115, 108, 138, 242, 59, 5, 148, 255, 27, 249, 250, 210, 227, 255, 131, 101, 139, 70, + 175, 20, 46, 88, 225, 54, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 806, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "276844301380708728" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + ] + }, + "cborHex": "9f1b03d78c6ce1e369781bfffffffffffffff2ff", + "cborBytes": [159, 27, 3, 215, 140, 108, 225, 227, 105, 120, 27, 255, 255, 255, 255, 255, 255, 255, 242, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 807, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1685075887364007493" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d923" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8596691574951202798" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9432647930566586085" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "298dd1ca49b350ad67e78b5e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7443652391704225875" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5972" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8186400061766215742" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6809262310128815588" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f2e74" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9325044644317065895" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2054960303626296488" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b1762979775e8664542d9231b774d9570b08f4fee1b82e77f5108beaee5ff9f4c298dd1ca49b350ad67e78b5e1b674d2a697f0468534259721b719bef7b96cfa83eff9f1b5e7f5bfe79af0de4435f2e741b816936b2a32d72a71b1c84af822d2c9ca8ffffff", + "cborBytes": [ + 159, 159, 191, 27, 23, 98, 151, 151, 117, 232, 102, 69, 66, 217, 35, 27, 119, 77, 149, 112, 176, 143, 79, 238, 27, + 130, 231, 127, 81, 8, 190, 174, 229, 255, 159, 76, 41, 141, 209, 202, 73, 179, 80, 173, 103, 231, 139, 94, 27, + 103, 77, 42, 105, 127, 4, 104, 83, 66, 89, 114, 27, 113, 155, 239, 123, 150, 207, 168, 62, 255, 159, 27, 94, 127, + 91, 254, 121, 175, 13, 228, 67, 95, 46, 116, 27, 129, 105, 54, 178, 163, 45, 114, 167, 27, 28, 132, 175, 130, 45, + 44, 156, 168, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 808, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5107909965912422540" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5205193948916691575" + } + } + ] + }, + "cborHex": "9fd8669f1b46e2f10d16e3388c80ff1b483c905178313277ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 70, 226, 241, 13, 22, 227, 56, 140, 128, 255, 27, 72, 60, 144, 81, 120, 49, 50, 119, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 809, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17761790405485562097" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c965f88" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1509415567581289551" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a43eed99772df0af" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8505850866193743033" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e7d588a0e7d2801fab5db" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9163513051710276018" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdcf3733" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9377493284453774842" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14275751557306779996" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12575422443176300492" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db56a5cf30da20" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8770343923077683051" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10419294192628042105" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17761325029030718119" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a5" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7a7e9e1a6765876359" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2f7c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2083ae4e30605b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15737598200633127134" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e50438efc71652b576edd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14826784743733681363" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1eb35a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8759493006550091941" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6a7815d4a35" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8609369404827344957" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f99530172293a6bb6938" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ac62257" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9073f5f51827b996ea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + ] + }, + "cborHex": "9fd8669f1bf67e8e448de888f19f447c965f88bf1b14f2857624209c4f48a43eed99772df0af1b760ada4bffed3cb94b4e7d588a0e7d2801fab5db1b7f2b5691f5d8c1b244fdcf37331b82238c75477a75fa1bc61da867bb00095c1bae84e015a9ff8fcc47db56a5cf30da20ff9f414a1b79b68554ad0d176b1b9098c4dd49e289791bf67ce702a7a16aa741a5ff497a7e9e1a6765876359ffffd905009f422f7cffbf472083ae4e30605b1bda672e2e9e9070de4b5e50438efc71652b576edd41cf4286aa1bcdc3522b336d5cd344b1eb35a61b798ff87acbefc8a546e6a7815d4a351b777a9fdbfad9a03d4af99530172293a6bb6938441ac62257ff499073f5f51827b996ea1bffffffffffffffebff", + "cborBytes": [ + 159, 216, 102, 159, 27, 246, 126, 142, 68, 141, 232, 136, 241, 159, 68, 124, 150, 95, 136, 191, 27, 20, 242, 133, + 118, 36, 32, 156, 79, 72, 164, 62, 237, 153, 119, 45, 240, 175, 27, 118, 10, 218, 75, 255, 237, 60, 185, 75, 78, + 125, 88, 138, 14, 125, 40, 1, 250, 181, 219, 27, 127, 43, 86, 145, 245, 216, 193, 178, 68, 253, 207, 55, 51, 27, + 130, 35, 140, 117, 71, 122, 117, 250, 27, 198, 29, 168, 103, 187, 0, 9, 92, 27, 174, 132, 224, 21, 169, 255, 143, + 204, 71, 219, 86, 165, 207, 48, 218, 32, 255, 159, 65, 74, 27, 121, 182, 133, 84, 173, 13, 23, 107, 27, 144, 152, + 196, 221, 73, 226, 137, 121, 27, 246, 124, 231, 2, 167, 161, 106, 167, 65, 165, 255, 73, 122, 126, 158, 26, 103, + 101, 135, 99, 89, 255, 255, 217, 5, 0, 159, 66, 47, 124, 255, 191, 71, 32, 131, 174, 78, 48, 96, 91, 27, 218, 103, + 46, 46, 158, 144, 112, 222, 75, 94, 80, 67, 142, 252, 113, 101, 43, 87, 110, 221, 65, 207, 66, 134, 170, 27, 205, + 195, 82, 43, 51, 109, 92, 211, 68, 177, 235, 53, 166, 27, 121, 143, 248, 122, 203, 239, 200, 165, 70, 230, 167, + 129, 93, 74, 53, 27, 119, 122, 159, 219, 250, 217, 160, 61, 74, 249, 149, 48, 23, 34, 147, 166, 187, 105, 56, 68, + 26, 198, 34, 87, 255, 73, 144, 115, 245, 245, 24, 39, 185, 150, 234, 27, 255, 255, 255, 255, 255, 255, 255, 235, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 810, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + "cborHex": "9f0bff", + "cborBytes": [159, 11, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 811, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f9ba6489b0375f899776d4c1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f4978960df52929290" + }, + { + "_tag": "ByteArray", + "bytearray": "c91c98735d09" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6360" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1640350514513276158" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f09759e" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1729d8610bbfe18e831e1b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12363119229535374752" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10964306139731133473" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3fee4d85cc9c4d4d73" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11020995246910135217" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a2ebe6269b13822f5491" + }, + { + "_tag": "ByteArray", + "bytearray": "46a72bf192509e1c56a1" + }, + { + "_tag": "ByteArray", + "bytearray": "45a2915fe176" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "752851519119377292" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fa0a04cf9ba6489b0375f899776d4c19f49f4978960df5292929046c91c98735d09ffffa0bf4263601b16c3b21a1cb16cfe41e7448f09759eff9f4b1729d8610bbfe18e831e1bd8669f1bab929f6fc841cda080ff9f1b98290a57bb4f0421493fee4d85cc9c4d4d73ffd8669f1b98f270c90b58dbb19f4aa2ebe6269b13822f54914a46a72bf192509e1c56a14645a2915fe176ffffffbf1bffffffffffffffff1b0a72aa77c5b9438cffff", + "cborBytes": [ + 159, 159, 160, 160, 76, 249, 186, 100, 137, 176, 55, 95, 137, 151, 118, 212, 193, 159, 73, 244, 151, 137, 96, 223, + 82, 146, 146, 144, 70, 201, 28, 152, 115, 93, 9, 255, 255, 160, 191, 66, 99, 96, 27, 22, 195, 178, 26, 28, 177, + 108, 254, 65, 231, 68, 143, 9, 117, 158, 255, 159, 75, 23, 41, 216, 97, 11, 191, 225, 142, 131, 30, 27, 216, 102, + 159, 27, 171, 146, 159, 111, 200, 65, 205, 160, 128, 255, 159, 27, 152, 41, 10, 87, 187, 79, 4, 33, 73, 63, 238, + 77, 133, 204, 156, 77, 77, 115, 255, 216, 102, 159, 27, 152, 242, 112, 201, 11, 88, 219, 177, 159, 74, 162, 235, + 230, 38, 155, 19, 130, 47, 84, 145, 74, 70, 167, 43, 241, 146, 80, 158, 28, 86, 161, 70, 69, 162, 145, 95, 225, + 118, 255, 255, 255, 191, 27, 255, 255, 255, 255, 255, 255, 255, 255, 27, 10, 114, 170, 119, 197, 185, 67, 140, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 812, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "390311a983b0f7d76de5dc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14903219134462860479" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ccf2fd540654" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "015d0003" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "641476844121613686" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e1c5d0d8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12d7f81270819464d656" + } + } + ] + } + ] + }, + "cborHex": "9f4b390311a983b0f7d76de5dcbf1bced2ded797769cbf46ccf2fd5406541bffffffffffffffff1bfffffffffffffffa44015d00031b08e6fbca8181e576450e1c5d0d8f4a12d7f81270819464d656ffff", + "cborBytes": [ + 159, 75, 57, 3, 17, 169, 131, 176, 247, 215, 109, 229, 220, 191, 27, 206, 210, 222, 215, 151, 118, 156, 191, 70, + 204, 242, 253, 84, 6, 84, 27, 255, 255, 255, 255, 255, 255, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 250, + 68, 1, 93, 0, 3, 27, 8, 230, 251, 202, 129, 129, 229, 118, 69, 14, 28, 93, 13, 143, 74, 18, 215, 248, 18, 112, + 129, 148, 100, 214, 86, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 813, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12094406449787468039" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4aa11cb6f10f4b9cd09e76" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12889793492904247711" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3597878ec6679639" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ce4c1a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9658828104332127836" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13650132395685012535" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2705812083236341457" + } + }, + { + "_tag": "ByteArray", + "bytearray": "98d9e6bf4a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2399231235558545726" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12697218398200699810" + } + } + ] + }, + "cborHex": "9f417a9fbf1ba7d7f69650c679074b4aa11cb6f10f4b9cd09e761bb2e1bee384b3019f483597878ec6679639441ce4c1a61b860b0cfc7946ae5cff1bbd6f0317a5db64371b258cf9c0f24306d14598d9e6bf4a1b214bc818d97d193eff1bb03594dc444e9ba2ff", + "cborBytes": [ + 159, 65, 122, 159, 191, 27, 167, 215, 246, 150, 80, 198, 121, 7, 75, 74, 161, 28, 182, 241, 15, 75, 156, 208, 158, + 118, 27, 178, 225, 190, 227, 132, 179, 1, 159, 72, 53, 151, 135, 142, 198, 103, 150, 57, 68, 28, 228, 193, 166, + 27, 134, 11, 12, 252, 121, 70, 174, 92, 255, 27, 189, 111, 3, 23, 165, 219, 100, 55, 27, 37, 140, 249, 192, 242, + 67, 6, 209, 69, 152, 217, 230, 191, 74, 27, 33, 75, 200, 24, 217, 125, 25, 62, 255, 27, 176, 53, 148, 220, 68, 78, + 155, 162, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 814, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9009077488430843614" + } + } + ] + }, + "cborHex": "9f1bffffffffffffffee1b7d06ac3e5be386deff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 27, 125, 6, 172, 62, 91, 227, 134, 222, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 815, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "53" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14391917885166132861" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7518032554112406060" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "690624413434dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd5b344a5a02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f9aea88" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "291b4938b63ad2ebe7db" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2066121637672254031" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04eacee8cd7f22" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3001422944029756839" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16057675968883835702" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4637088863402054790" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14735958432011037454" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf41531bc7ba5d109deb1e7d41581b68556ac695b1522c47690624413434dd46dd5b344a5a02446f9aea884a291b4938b63ad2ebe7dbffbf1b1cac56aec433fa4f4704eacee8cd7f221b29a73243ef99cda71bded853376ba5c3361b405a3fc0beffd4861bcc80a41e94f0ab0effff", + "cborBytes": [ + 159, 191, 65, 83, 27, 199, 186, 93, 16, 157, 235, 30, 125, 65, 88, 27, 104, 85, 106, 198, 149, 177, 82, 44, 71, + 105, 6, 36, 65, 52, 52, 221, 70, 221, 91, 52, 74, 90, 2, 68, 111, 154, 234, 136, 74, 41, 27, 73, 56, 182, 58, 210, + 235, 231, 219, 255, 191, 27, 28, 172, 86, 174, 196, 51, 250, 79, 71, 4, 234, 206, 232, 205, 127, 34, 27, 41, 167, + 50, 67, 239, 153, 205, 167, 27, 222, 216, 83, 55, 107, 165, 195, 54, 27, 64, 90, 63, 192, 190, 255, 212, 134, 27, + 204, 128, 164, 30, 148, 240, 171, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 816, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12104254000168555844" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10940454297350087493" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3469056921006774028" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8526531426410950168" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11204917210376379426" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13318074826870435957" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16105553933371917" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14206167958068897547" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f44e6acb7" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4836996436692009117" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd4b6c28897523e0a0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12737845489311608306" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76c0de4c5ed7ff6a59" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6233ba88ee6b5ecaf3e7ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9de4fc4731b" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12881486034580106566" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10618270551656428147" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f455a80eb7d8caa65cc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17470357835051597884" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6159641863459365808" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ed1bb09d820b1d35607f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16026761760459533123" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba7faf2e1cf25d5449fd8669f1b97d44d37eaf2a3459f1b302490e3ca38170cffffbf1b76545328256dee181b9b7fdcd62e251c221bb8d34e7e2baf30751b003937ea7d1c0a0d1bc526727d883ba70b453f44e6acb7ffbf1b432076a1b4db809d49cd4b6c28897523e0a01bb0c5eafc0a3aedf24976c0de4c5ed7ff6a594b6233ba88ee6b5ecaf3e7ea46c9de4fc4731bffffff1bb2c43b4ca64d6d46bf1b935baccf0878f2734a3f455a80eb7d8caa65cc1bf2732de39936803c1b557b71a3bf1ee3b04b3ed1bb09d820b1d35607f71bde6a7ee860012b43ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 167, 250, 242, 225, 207, 37, 213, 68, 159, 216, 102, 159, 27, 151, 212, 77, 55, 234, 242, + 163, 69, 159, 27, 48, 36, 144, 227, 202, 56, 23, 12, 255, 255, 191, 27, 118, 84, 83, 40, 37, 109, 238, 24, 27, + 155, 127, 220, 214, 46, 37, 28, 34, 27, 184, 211, 78, 126, 43, 175, 48, 117, 27, 0, 57, 55, 234, 125, 28, 10, 13, + 27, 197, 38, 114, 125, 136, 59, 167, 11, 69, 63, 68, 230, 172, 183, 255, 191, 27, 67, 32, 118, 161, 180, 219, 128, + 157, 73, 205, 75, 108, 40, 137, 117, 35, 224, 160, 27, 176, 197, 234, 252, 10, 58, 237, 242, 73, 118, 192, 222, + 76, 94, 215, 255, 106, 89, 75, 98, 51, 186, 136, 238, 107, 94, 202, 243, 231, 234, 70, 201, 222, 79, 196, 115, 27, + 255, 255, 255, 27, 178, 196, 59, 76, 166, 77, 109, 70, 191, 27, 147, 91, 172, 207, 8, 120, 242, 115, 74, 63, 69, + 90, 128, 235, 125, 140, 170, 101, 204, 27, 242, 115, 45, 227, 153, 54, 128, 60, 27, 85, 123, 113, 163, 191, 30, + 227, 176, 75, 62, 209, 187, 9, 216, 32, 177, 211, 86, 7, 247, 27, 222, 106, 126, 232, 96, 1, 43, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 817, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3868236168800865670" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6839829402835250679" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13604657495168582857" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7045727017385511344" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8228061971934903542" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12777217070215330420" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f811f2fc674ddadd7377" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13043762765783804088" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf85bbeecc18b8a725" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17195485069487527443" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6574046757827796653" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18268208464845894654" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91cd2870be92442cc2a2" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3103fdb354e73fa3c7581a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "09076e2f66e8ea65bff36a33" + }, + { + "_tag": "ByteArray", + "bytearray": "9dc29afe" + }, + { + "_tag": "ByteArray", + "bytearray": "af21418f98b98696d1c4" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6560868601058745363" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12138322706402679746" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c21709ba367df37917d38c6b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "45030612261f28f4508c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10689186883052691769" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b35aebc4cfcb18d869fbf1b5eebf49a58446df71bbccd73e94a6104c91b61c7736477a2c9b01b722ff2c4f3147cf61bb151cb3a903dfa744af811f2fc674ddadd73771bb504c1206d02a8b849bf85bbeecc18b8a7251beea2a290ab5656131b5b3bb4b209225ead1bfd85b6cf45ec73fe4a91cd2870be92442cc2a2ff4b3103fdb354e73fa3c7581a9f4c09076e2f66e8ea65bff36a33449dc29afe4aaf21418f98b98696d1c4ffffffd8669f1b5b0ce33b501edc139f9f1ba873fc309c309bc24cc21709ba367df37917d38c6bffbf4a45030612261f28f4508c1b94579ed61e1ee139ffffff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 53, 174, 188, 76, 252, 177, 141, 134, 159, 191, 27, 94, 235, 244, 154, 88, 68, 109, 247, + 27, 188, 205, 115, 233, 74, 97, 4, 201, 27, 97, 199, 115, 100, 119, 162, 201, 176, 27, 114, 47, 242, 196, 243, 20, + 124, 246, 27, 177, 81, 203, 58, 144, 61, 250, 116, 74, 248, 17, 242, 252, 103, 77, 218, 221, 115, 119, 27, 181, 4, + 193, 32, 109, 2, 168, 184, 73, 191, 133, 187, 238, 204, 24, 184, 167, 37, 27, 238, 162, 162, 144, 171, 86, 86, 19, + 27, 91, 59, 180, 178, 9, 34, 94, 173, 27, 253, 133, 182, 207, 69, 236, 115, 254, 74, 145, 205, 40, 112, 190, 146, + 68, 44, 194, 162, 255, 75, 49, 3, 253, 179, 84, 231, 63, 163, 199, 88, 26, 159, 76, 9, 7, 110, 47, 102, 232, 234, + 101, 191, 243, 106, 51, 68, 157, 194, 154, 254, 74, 175, 33, 65, 143, 152, 185, 134, 150, 209, 196, 255, 255, 255, + 216, 102, 159, 27, 91, 12, 227, 59, 80, 30, 220, 19, 159, 159, 27, 168, 115, 252, 48, 156, 48, 155, 194, 76, 194, + 23, 9, 186, 54, 125, 243, 121, 23, 211, 140, 107, 255, 191, 74, 69, 3, 6, 18, 38, 31, 40, 244, 80, 140, 27, 148, + 87, 158, 214, 30, 30, 225, 57, 255, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 818, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9874313611152021675" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "537582489818913072" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7eda990186" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14f4afa282d9f46da6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11684747147301200987" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5148a51036db07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10681899693901071334" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3959242d14" + }, + { + "_tag": "ByteArray", + "bytearray": "30068b2e2f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16888264421236489924" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f410f1b89089be9b98558abbf1b0775e06d1f205930457eda9901864914f4afa282d9f46da61ba2288f9f3d25a45b475148a51036db071b943dbb2d2d53c3e6ff9f453959242d144530068b2e2f1bea5f2b0364ab3ec4ffffff", + "cborBytes": [ + 159, 159, 65, 15, 27, 137, 8, 155, 233, 185, 133, 88, 171, 191, 27, 7, 117, 224, 109, 31, 32, 89, 48, 69, 126, + 218, 153, 1, 134, 73, 20, 244, 175, 162, 130, 217, 244, 109, 166, 27, 162, 40, 143, 159, 61, 37, 164, 91, 71, 81, + 72, 165, 16, 54, 219, 7, 27, 148, 61, 187, 45, 45, 83, 195, 230, 255, 159, 69, 57, 89, 36, 45, 20, 69, 48, 6, 139, + 46, 47, 27, 234, 95, 43, 3, 100, 171, 62, 196, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 819, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1387865166492593326" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7600ba4e7a327a6776f5ac" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10801390020019208991" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3969854401068136478" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8982178217086212231" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2009678343272560668" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e1c5fa1e31c722e7" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9767636589077509707" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10907182198453374593" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10015892043781830305" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "639ad4efad98cd0b769a3b92" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5595995946209116033" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "62e4" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17304444529495577172" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7214219757136071295" + } + } + ] + }, + "cborHex": "9fd8669f1b1342b00404edecae9f4b7600ba4e7a327a6776f5ac9f1b95e63efeb7b1c31f1b3717c18b69aff81e1b7ca71b7fb2acd8871b1be3cfce338e781c48e1c5fa1e31c722e7ffbf1b878d9dba0312b64b1b975e186bb7470e811b8aff98bf5246f6a14c639ad4efad98cd0b769a3b92ffd8669f1b4da8f8aa0a51ff819f4262e4ffff1bf025bc9de0091254ffff1b641e0ea583b34a7fff", + "cborBytes": [ + 159, 216, 102, 159, 27, 19, 66, 176, 4, 4, 237, 236, 174, 159, 75, 118, 0, 186, 78, 122, 50, 122, 103, 118, 245, + 172, 159, 27, 149, 230, 62, 254, 183, 177, 195, 31, 27, 55, 23, 193, 139, 105, 175, 248, 30, 27, 124, 167, 27, + 127, 178, 172, 216, 135, 27, 27, 227, 207, 206, 51, 142, 120, 28, 72, 225, 197, 250, 30, 49, 199, 34, 231, 255, + 191, 27, 135, 141, 157, 186, 3, 18, 182, 75, 27, 151, 94, 24, 107, 183, 71, 14, 129, 27, 138, 255, 152, 191, 82, + 70, 246, 161, 76, 99, 154, 212, 239, 173, 152, 205, 11, 118, 154, 59, 146, 255, 216, 102, 159, 27, 77, 168, 248, + 170, 10, 81, 255, 129, 159, 66, 98, 228, 255, 255, 27, 240, 37, 188, 157, 224, 9, 18, 84, 255, 255, 27, 100, 30, + 14, 165, 131, 179, 74, 127, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 820, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4ef81ffb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13517277715054601099" + }, + "fields": [] + } + ] + }, + "cborHex": "9f444ef81ffbd8669f1bbb970476d822238b80ffff", + "cborBytes": [159, 68, 78, 248, 31, 251, 216, 102, 159, 27, 187, 151, 4, 118, 216, 34, 35, 139, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 821, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2bf80590a4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "00fc61" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "060541" + } + } + ] + } + ] + }, + "cborHex": "9fbf1bffffffffffffffeb452bf80590a44300fc6143060541ffff", + "cborBytes": [ + 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 235, 69, 43, 248, 5, 144, 164, 67, 0, 252, 97, 67, 6, 5, 65, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 822, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12875675698100219213" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10344111674390143907" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14314547284698914285" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9c3f95f01" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "940044838904" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2149610145035907325" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a78a83a742" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + ] + } + ] + }, + "cborHex": "9fbf0c1bb2af96d44464ad4d1b8f8daac32cfee3a31bfffffffffffffffe1bc6a77ce9e902dded094273d145f9c3f95f01ff1bfffffffffffffff89f469400448389049f1b1dd4f309ac70f0fd45a78a83a742ff1bffffffffffffffffffff", + "cborBytes": [ + 159, 191, 12, 27, 178, 175, 150, 212, 68, 100, 173, 77, 27, 143, 141, 170, 195, 44, 254, 227, 163, 27, 255, 255, + 255, 255, 255, 255, 255, 254, 27, 198, 167, 124, 233, 233, 2, 221, 237, 9, 66, 115, 209, 69, 249, 195, 249, 95, 1, + 255, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 70, 148, 0, 68, 131, 137, 4, 159, 27, 29, 212, 243, 9, 172, + 112, 240, 253, 69, 167, 138, 131, 167, 66, 255, 27, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 823, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7145069722041339200" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed0faa4186c185e23e5e802e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d585e59ecf90dd16d0" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fe" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16031752813813721699" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55f4685f082961cb82" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dc6ca0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2186476119064697340" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7415714506149877179" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13892904701564569983" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12166047027203569350" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11802469664887592547" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "72fa182ad3c72a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "433167073450448813" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14002450619694893107" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4058e91229443556c167" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11397617434247021405" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7370337244737089394" + } + }, + { + "_tag": "ByteArray", + "bytearray": "634768677b8de07dd0acae" + }, + { + "_tag": "ByteArray", + "bytearray": "50a651e112b7bec695b2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "46" + }, + { + "_tag": "ByteArray", + "bytearray": "360d6a927162162052aefd62" + }, + { + "_tag": "ByteArray", + "bytearray": "5b2674b521f3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1269378079254917121" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b6328630e55ac4d40bf4ced0faa4186c185e23e5e802e49d585e59ecf90dd16d0ff9f9f41feff1bde7c3a3e8a3c6a634955f4685f082961cb829f43dc6ca01b1e57ec7222b9d9fc1b66e9e90d9ec655bb1bc0cd8337e31c497f1ba8d67b50112a76c6ff1ba3cacba0c7f2d663ff4772fa182ad3c72ad8669f1b0602eb288568d7ad9fd8669f1bc252b2a683dcc8339f4a4058e91229443556c1671b9e2c78ab5617c35d1b6648b2aca362af724b634768677b8de07dd0acae4a50a651e112b7bec695b2ffff9f41464c360d6a927162162052aefd62465b2674b521f31b119dbca33ba83001ffffffff", + "cborBytes": [ + 159, 27, 99, 40, 99, 14, 85, 172, 77, 64, 191, 76, 237, 15, 170, 65, 134, 193, 133, 226, 62, 94, 128, 46, 73, 213, + 133, 229, 158, 207, 144, 221, 22, 208, 255, 159, 159, 65, 254, 255, 27, 222, 124, 58, 62, 138, 60, 106, 99, 73, + 85, 244, 104, 95, 8, 41, 97, 203, 130, 159, 67, 220, 108, 160, 27, 30, 87, 236, 114, 34, 185, 217, 252, 27, 102, + 233, 233, 13, 158, 198, 85, 187, 27, 192, 205, 131, 55, 227, 28, 73, 127, 27, 168, 214, 123, 80, 17, 42, 118, 198, + 255, 27, 163, 202, 203, 160, 199, 242, 214, 99, 255, 71, 114, 250, 24, 42, 211, 199, 42, 216, 102, 159, 27, 6, 2, + 235, 40, 133, 104, 215, 173, 159, 216, 102, 159, 27, 194, 82, 178, 166, 131, 220, 200, 51, 159, 74, 64, 88, 233, + 18, 41, 68, 53, 86, 193, 103, 27, 158, 44, 120, 171, 86, 23, 195, 93, 27, 102, 72, 178, 172, 163, 98, 175, 114, + 75, 99, 71, 104, 103, 123, 141, 224, 125, 208, 172, 174, 74, 80, 166, 81, 225, 18, 183, 190, 198, 149, 178, 255, + 255, 159, 65, 70, 76, 54, 13, 106, 146, 113, 98, 22, 32, 82, 174, 253, 98, 70, 91, 38, 116, 181, 33, 243, 27, 17, + 157, 188, 163, 59, 168, 48, 1, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 824, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13381940109274844893" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06536bd925a310ad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12961604634055429467" + } + }, + { + "_tag": "ByteArray", + "bytearray": "043b43f96d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5958527629778201823" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9598664331865377280" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "85ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12169603630472301535" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f9f1bb9b633a0fae10edd4806536bd925a310ad1bb3e0debdbbee4d5b45043b43f96dff1b52b0f14f4547acdf1b85354e5a9b0c4a0080ffbf4285ba1ba8e31e064b9b0bdfffff", + "cborBytes": [ + 159, 159, 159, 27, 185, 182, 51, 160, 250, 225, 14, 221, 72, 6, 83, 107, 217, 37, 163, 16, 173, 27, 179, 224, 222, + 189, 187, 238, 77, 91, 69, 4, 59, 67, 249, 109, 255, 27, 82, 176, 241, 79, 69, 71, 172, 223, 27, 133, 53, 78, 90, + 155, 12, 74, 0, 128, 255, 191, 66, 133, 186, 27, 168, 227, 30, 6, 75, 155, 11, 223, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 825, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7194422858823603133" + } + } + ] + }, + "cborHex": "9fa01b63d7b978f02193bdff", + "cborBytes": [159, 160, 27, 99, 215, 185, 120, 240, 33, 147, 189, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 826, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18256625864783774987" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16603481999794599232" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5a746c1525b419379c35e4" + }, + { + "_tag": "ByteArray", + "bytearray": "813d5cb6360087ae05" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8669f1bfd5c907f0ba5450b9f1be66b6ae8e85975404b5a746c1525b419379c35e449813d5cb6360087ae05ffffa0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 253, 92, 144, 127, 11, 165, 69, 11, 159, 27, 230, 107, 106, 232, 232, 89, 117, 64, 75, 90, + 116, 108, 21, 37, 180, 25, 55, 156, 53, 228, 73, 129, 61, 92, 182, 54, 0, 135, 174, 5, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 827, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "52142746fb5d0d41" + } + ] + } + ] + }, + "cborHex": "9f9f4852142746fb5d0d41ffff", + "cborBytes": [159, 159, 72, 82, 20, 39, 70, 251, 93, 13, 65, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 828, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa3643fc" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4915131021305782214" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17613397702871538666" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14364012751819106483" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1eb81cdf0b749722360e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16557781500969358868" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13812373186286750075" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1391496200262268147" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12105892434314242770" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4064672047055913225" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "759e599688ae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6395570100833542707" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd1642" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18291913584012441100" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10904598741817607290" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17911020194654217637" + } + } + ] + } + ] + }, + "cborHex": "9f44fa3643fc9fbf1b44360d9f556f1fc61bf46f5be41756dbea1bc757397e755be8b34a1eb81cdf0b749722360e1be5c90e8c59d016141bbfaf683b59c0897bffbf1b134f966bf2f034f31ba800c5077c63aad21b38689db0f53a410946759e599688ae1b58c1a11f1c4ae23343fd16421bfdd9ee7d6d34360c1b9754eac7d835c47aff1bf890b9f86b3665a5ffff", + "cborBytes": [ + 159, 68, 250, 54, 67, 252, 159, 191, 27, 68, 54, 13, 159, 85, 111, 31, 198, 27, 244, 111, 91, 228, 23, 86, 219, + 234, 27, 199, 87, 57, 126, 117, 91, 232, 179, 74, 30, 184, 28, 223, 11, 116, 151, 34, 54, 14, 27, 229, 201, 14, + 140, 89, 208, 22, 20, 27, 191, 175, 104, 59, 89, 192, 137, 123, 255, 191, 27, 19, 79, 150, 107, 242, 240, 52, 243, + 27, 168, 0, 197, 7, 124, 99, 170, 210, 27, 56, 104, 157, 176, 245, 58, 65, 9, 70, 117, 158, 89, 150, 136, 174, 27, + 88, 193, 161, 31, 28, 74, 226, 51, 67, 253, 22, 66, 27, 253, 217, 238, 125, 109, 52, 54, 12, 27, 151, 84, 234, + 199, 216, 53, 196, 122, 255, 27, 248, 144, 185, 248, 107, 54, 101, 165, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 829, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6986423680346534097" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "782d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9087797310998136633" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10685932881681606775" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10214600696013870409" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16762784561932574821" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb7e26a04b7bdcb3" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf1b60f4c352556eb0d142782d1b7e1e578150cb473941791b944c0f56e24c68771b8dc18d36b85d55491be8a15fbefc64a06548bb7e26a04b7bdcb3ffa0ff", + "cborBytes": [ + 159, 191, 27, 96, 244, 195, 82, 85, 110, 176, 209, 66, 120, 45, 27, 126, 30, 87, 129, 80, 203, 71, 57, 65, 121, + 27, 148, 76, 15, 86, 226, 76, 104, 119, 27, 141, 193, 141, 54, 184, 93, 85, 73, 27, 232, 161, 95, 190, 252, 100, + 160, 101, 72, 187, 126, 38, 160, 75, 123, 220, 179, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 830, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16673604025364319334" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "134a08" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ad18b35010ec40c40" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "174d7bbab08706" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb1ebb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "872453e5144da58ae075bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0ddaac3761bb680b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21299f5d4deef93086f892" + } + } + ] + } + ] + }, + "cborHex": "9fbf1be7648a85415d0c6643134a08495ad18b35010ec40c4047174d7bbab0870643cb1ebb4b872453e5144da58ae075bb49e0ddaac3761bb680b94b21299f5d4deef93086f892ffff", + "cborBytes": [ + 159, 191, 27, 231, 100, 138, 133, 65, 93, 12, 102, 67, 19, 74, 8, 73, 90, 209, 139, 53, 1, 14, 196, 12, 64, 71, + 23, 77, 123, 186, 176, 135, 6, 67, 203, 30, 187, 75, 135, 36, 83, 229, 20, 77, 165, 138, 224, 117, 187, 73, 224, + 221, 170, 195, 118, 27, 182, 128, 185, 75, 33, 41, 159, 93, 77, 238, 249, 48, 134, 248, 146, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 831, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9a506a209" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7684443810628691150" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff01ca02fc86103cffd7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1395414786873131008" + } + } + ] + }, + "cborHex": "9fbf41f91bfffffffffffffff545f9a506a2091b6aa4a0ee8cf8e4ce4aff01ca02fc86103cffd71bfffffffffffffff4ff1b135d825afde68000ff", + "cborBytes": [ + 159, 191, 65, 249, 27, 255, 255, 255, 255, 255, 255, 255, 245, 69, 249, 165, 6, 162, 9, 27, 106, 164, 160, 238, + 140, 248, 228, 206, 74, 255, 1, 202, 2, 252, 134, 16, 60, 255, 215, 27, 255, 255, 255, 255, 255, 255, 255, 244, + 255, 27, 19, 93, 130, 90, 253, 230, 128, 0, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 832, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18242549947555131111" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15748210342371434135" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9358664076421516361" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a56ad926ca88f64bdc6d9df3" + }, + { + "_tag": "ByteArray", + "bytearray": "fc8d331071f496" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3435519157740442113" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff280ff9f9f1bfd2a8e862d582ee7ffff9fd8669f1bda8ce1de692e9e979f416d1b81e0a764a7504c494ca56ad926ca88f64bdc6d9df347fc8d331071f496ffff1b2fad6a78c82b1201ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 128, 255, 159, 159, 27, 253, 42, 142, 134, 45, 88, + 46, 231, 255, 255, 159, 216, 102, 159, 27, 218, 140, 225, 222, 105, 46, 158, 151, 159, 65, 109, 27, 129, 224, 167, + 100, 167, 80, 76, 73, 76, 165, 106, 217, 38, 202, 136, 246, 75, 220, 109, 157, 243, 71, 252, 141, 51, 16, 113, + 244, 150, 255, 255, 27, 47, 173, 106, 120, 200, 43, 18, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 833, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28e08e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5516968456982350915" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90c8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12545651100871439717" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f832724ffb553d2bba388d2c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14718808500172527220" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15982351232548554872" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b53cfbe7ffd" + } + } + ] + } + ] + }, + "cborHex": "9f0d4328e08ebf1b4c903594db77cc434290c81bae1b1b34df6e35654cf832724ffb553d2bba388d2c1bcc43b658e9c8967441f91bddccb7c493954878467b53cfbe7ffdffff", + "cborBytes": [ + 159, 13, 67, 40, 224, 142, 191, 27, 76, 144, 53, 148, 219, 119, 204, 67, 66, 144, 200, 27, 174, 27, 27, 52, 223, + 110, 53, 101, 76, 248, 50, 114, 79, 251, 85, 61, 43, 186, 56, 141, 44, 27, 204, 67, 182, 88, 233, 200, 150, 116, + 65, 249, 27, 221, 204, 183, 196, 147, 149, 72, 120, 70, 123, 83, 207, 190, 127, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 834, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "793058291983861727" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9c55a4e12838da0c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6648" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff71326a95dfe40a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8782867841338033268" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "148c40" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8509123288153946960" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "392a6ca9b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e92370d827fea38637a4ac88" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c5e032cfda57e46b29a82c3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7ba19f7274a0eedb43b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74a6d6321f285f2b71" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d187f7a0769307f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12960577694418461037" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de4ef9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10734746853400098503" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "13aef22b9f58c5d1" + }, + { + "_tag": "ByteArray", + "bytearray": "cf50ddb5670b28d7500a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4435271088142735594" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1307257004982373029" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11985766441509087607" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce2546" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16319440210150530342" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5283800077682324674" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15098189556804663546" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "361e11b9ee" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3691828603561625650" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9956328653232469256" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4452049262817727661" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b339d13" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8634429487968757131" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "441f9231" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9621005372491659620" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5680974135474888519" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12908668991490238779" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11061494069981667566" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14554852037977760286" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1358845642316778723" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b0b01825093e047df49f9c55a4e12838da0c7410642664848ff71326a95dfe40a1b79e303c4a027c474ffbf43148c401b76167a8c1c6b7b5045392a6ca9b04ce92370d827fea38637a4ac884c3c5e032cfda57e46b29a82c34af7ba19f7274a0eedb43b41884974a6d6321f285f2b71489d187f7a0769307f1bb3dd38beb7a9e16d43de4ef91b94f97b6356a7b6c7ff9f4813aef22b9f58c5d14acf50ddb5670b28d7500a9f1b3d8d3f8e3b4ed8ea1b12244f51e41d8aa51ba655ff1342f2697743ce2546ff1be27a4c68333f9d261b4953d42d066fb4c2ffd8669f1bd1878b6884dab8fa9f45361e11b9eebf1b333c028e06eac8321b8a2bfc28c2f6f5081b3dc8db3770ca54ad445b339d131b77d3a7df4489258b44441f92311b8584ad69797d79641b4ed6dfe08b299f471bb324ce0e00e0293b1b998252401658e0ee1bc9fd38d04a08e21e1b12db96e986e10ce3ffffffff", + "cborBytes": [ + 159, 191, 27, 11, 1, 130, 80, 147, 224, 71, 223, 73, 249, 197, 90, 78, 18, 131, 141, 160, 199, 65, 6, 66, 102, 72, + 72, 255, 113, 50, 106, 149, 223, 228, 10, 27, 121, 227, 3, 196, 160, 39, 196, 116, 255, 191, 67, 20, 140, 64, 27, + 118, 22, 122, 140, 28, 107, 123, 80, 69, 57, 42, 108, 169, 176, 76, 233, 35, 112, 216, 39, 254, 163, 134, 55, 164, + 172, 136, 76, 60, 94, 3, 44, 253, 165, 126, 70, 178, 154, 130, 195, 74, 247, 186, 25, 247, 39, 74, 14, 237, 180, + 59, 65, 136, 73, 116, 166, 214, 50, 31, 40, 95, 43, 113, 72, 157, 24, 127, 122, 7, 105, 48, 127, 27, 179, 221, 56, + 190, 183, 169, 225, 109, 67, 222, 78, 249, 27, 148, 249, 123, 99, 86, 167, 182, 199, 255, 159, 72, 19, 174, 242, + 43, 159, 88, 197, 209, 74, 207, 80, 221, 181, 103, 11, 40, 215, 80, 10, 159, 27, 61, 141, 63, 142, 59, 78, 216, + 234, 27, 18, 36, 79, 81, 228, 29, 138, 165, 27, 166, 85, 255, 19, 66, 242, 105, 119, 67, 206, 37, 70, 255, 27, + 226, 122, 76, 104, 51, 63, 157, 38, 27, 73, 83, 212, 45, 6, 111, 180, 194, 255, 216, 102, 159, 27, 209, 135, 139, + 104, 132, 218, 184, 250, 159, 69, 54, 30, 17, 185, 238, 191, 27, 51, 60, 2, 142, 6, 234, 200, 50, 27, 138, 43, + 252, 40, 194, 246, 245, 8, 27, 61, 200, 219, 55, 112, 202, 84, 173, 68, 91, 51, 157, 19, 27, 119, 211, 167, 223, + 68, 137, 37, 139, 68, 68, 31, 146, 49, 27, 133, 132, 173, 105, 121, 125, 121, 100, 27, 78, 214, 223, 224, 139, 41, + 159, 71, 27, 179, 36, 206, 14, 0, 224, 41, 59, 27, 153, 130, 82, 64, 22, 88, 224, 238, 27, 201, 253, 56, 208, 74, + 8, 226, 30, 27, 18, 219, 150, 233, 134, 225, 12, 227, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 835, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9fc5954def" + }, + { + "_tag": "ByteArray", + "bytearray": "09463d4d07f5d838655365" + }, + { + "_tag": "ByteArray", + "bytearray": "6b7a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "368a2c0bf6" + }, + { + "_tag": "ByteArray", + "bytearray": "dc794b43b2436f95" + }, + { + "_tag": "ByteArray", + "bytearray": "8f33227fcc0181535178917e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3845958336351837319" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4958916222988548195" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8654776148697222145" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b032bb3665a7b9f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b2b07e582fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8987d67778" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "65fa93f64546" + }, + { + "_tag": "ByteArray", + "bytearray": "6e7ab739dc779c13d85d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9493454634152996230" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "464293426290949264" + } + }, + { + "_tag": "ByteArray", + "bytearray": "253dccbbc58607" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18112091851488517013" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15109160724163316720" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f9f9f459fc5954def4b09463d4d07f5d838655365426b7aff45368a2c0bf648dc794b43b2436f954c8f33227fcc0181535178917eff9fbf1b355f96baeb341c871b44d19c08062778631b781bf10d619f0c01481b032bb3665a7b9f464b2b07e582fb458987d67778ff9f4665fa93f645464a6e7ab739dc779c13d85d1b83bf86b0f7f9ad861b06718069499efc9047253dccbbc58607ff1bfb5b1393b3385b95d8669f1bd1ae85a07a09cbf080ffffff", + "cborBytes": [ + 159, 159, 159, 69, 159, 197, 149, 77, 239, 75, 9, 70, 61, 77, 7, 245, 216, 56, 101, 83, 101, 66, 107, 122, 255, + 69, 54, 138, 44, 11, 246, 72, 220, 121, 75, 67, 178, 67, 111, 149, 76, 143, 51, 34, 127, 204, 1, 129, 83, 81, 120, + 145, 126, 255, 159, 191, 27, 53, 95, 150, 186, 235, 52, 28, 135, 27, 68, 209, 156, 8, 6, 39, 120, 99, 27, 120, 27, + 241, 13, 97, 159, 12, 1, 72, 27, 3, 43, 179, 102, 90, 123, 159, 70, 75, 43, 7, 229, 130, 251, 69, 137, 135, 214, + 119, 120, 255, 159, 70, 101, 250, 147, 246, 69, 70, 74, 110, 122, 183, 57, 220, 119, 156, 19, 216, 93, 27, 131, + 191, 134, 176, 247, 249, 173, 134, 27, 6, 113, 128, 105, 73, 158, 252, 144, 71, 37, 61, 204, 187, 197, 134, 7, + 255, 27, 251, 91, 19, 147, 179, 56, 91, 149, 216, 102, 159, 27, 209, 174, 133, 160, 122, 9, 203, 240, 128, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 836, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07fe37b31c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "119f21f552f4f73628" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9883" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d4dcc99" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4909323268186742003" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16519684074018605752" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + } + ] + }, + "cborHex": "9fbf4507fe37b31c49119f21f552f4f73628429883442d4dcc99ffd8669f1b44216b806fd49cf39f1be541b523e98e8ab80effffff", + "cborBytes": [ + 159, 191, 69, 7, 254, 55, 179, 28, 73, 17, 159, 33, 245, 82, 244, 247, 54, 40, 66, 152, 131, 68, 45, 77, 204, 153, + 255, 216, 102, 159, 27, 68, 33, 107, 128, 111, 212, 156, 243, 159, 27, 229, 65, 181, 35, 233, 142, 138, 184, 14, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 837, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2dfd2621311e1fbed6b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff76daf1d70f826873e3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36e21ce7897952d5d9400d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14985012008324495779" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38556b7662c1fbb2ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57b8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "163a89603d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9990918301986252413" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1774cf593f742835dd07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9094393838183397470" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e44c4d36ab825b428e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15554543016487771185" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eba009680e35bc5f36d465" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f12ace938ee8510bb70052" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6822979382580445667" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f13e57633d0e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9708360869526629092" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf4a2dfd2621311e1fbed6b94aff76daf1d70f826873e34b36e21ce7897952d5d9400d1bcff575070f24f9a34938556b7662c1fbb2ab4257b8ff9fa0bf45163a89603d1b8aa6df42f1d6e67d4a1774cf593f742835dd071b7e35c702fc6c385e49e44c4d36ab825b428e1bd7dcd67645495c314beba009680e35bc5f36d46541f24bf12ace938ee8510bb700521b5eb01799488581e346f13e57633d0e1b86bb06c6136feae4ffffff", + "cborBytes": [ + 159, 191, 74, 45, 253, 38, 33, 49, 30, 31, 190, 214, 185, 74, 255, 118, 218, 241, 215, 15, 130, 104, 115, 227, 75, + 54, 226, 28, 231, 137, 121, 82, 213, 217, 64, 13, 27, 207, 245, 117, 7, 15, 36, 249, 163, 73, 56, 85, 107, 118, + 98, 193, 251, 178, 171, 66, 87, 184, 255, 159, 160, 191, 69, 22, 58, 137, 96, 61, 27, 138, 166, 223, 66, 241, 214, + 230, 125, 74, 23, 116, 207, 89, 63, 116, 40, 53, 221, 7, 27, 126, 53, 199, 2, 252, 108, 56, 94, 73, 228, 76, 77, + 54, 171, 130, 91, 66, 142, 27, 215, 220, 214, 118, 69, 73, 92, 49, 75, 235, 160, 9, 104, 14, 53, 188, 95, 54, 212, + 101, 65, 242, 75, 241, 42, 206, 147, 142, 232, 81, 11, 183, 0, 82, 27, 94, 176, 23, 153, 72, 133, 129, 227, 70, + 241, 62, 87, 99, 61, 14, 27, 134, 187, 6, 198, 19, 111, 234, 228, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 838, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "ByteArray", + "bytearray": "86f1" + } + ] + }, + "cborHex": "9f074286f1ff", + "cborBytes": [159, 7, 66, 134, 241, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 839, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "56240ed6" + } + ] + }, + "cborHex": "9f4456240ed6ff", + "cborBytes": [159, 68, 86, 36, 14, 214, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 840, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "99d5036fff7ccc6f6f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11892292802334159602" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6155671469122080995" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3357387924360599021" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15568794231555015972" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4999d5036fff7ccc6f6fd8669f1ba509e94bb00ff2f29fd8669f1b556d5696470750e39f1b2e97d6876cb315ed1bd80f77ddd8fcc524ffffffffff", + "cborBytes": [ + 159, 73, 153, 213, 3, 111, 255, 124, 204, 111, 111, 216, 102, 159, 27, 165, 9, 233, 75, 176, 15, 242, 242, 159, + 216, 102, 159, 27, 85, 109, 86, 150, 71, 7, 80, 227, 159, 27, 46, 151, 214, 135, 108, 179, 21, 237, 27, 216, 15, + 119, 221, 216, 252, 197, 36, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 841, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1177353360936985173" + } + } + ] + }, + "cborHex": "9f1b1056cca4d5c2e255ff", + "cborBytes": [159, 27, 16, 86, 204, 164, 213, 194, 226, 85, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 842, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13521618255773217539" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9015765961011549472" + } + }, + { + "_tag": "ByteArray", + "bytearray": "963d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6687298158870014881" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "030f0301" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2497288856148640864" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7677601353076580214" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b624067" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17985459128830679072" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0b4d1f3145c941fb46379" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1b6efa3f8206" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7455738553974933687" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14693891681503958873" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ae0e1f7a1318a7573e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13934120601926856257" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a9ef1" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bbba67029bbccb3039f1b7d1e6f5fbc26d52042963dffff1b5cce0e3ea2922ba1bf1244030f03011b22a826fbc448046013ff1b6a8c51c0c1301f76d9050a9fbf410b41b3447b6240671bf9992fc960425820419e4bd0b4d1f3145c941fb46379ff461b6efa3f82069f1b67781ab66fdc48b71bcbeb30a1fc1c575949ae0e1f7a1318a7573effbf1bc15ff0dc7f4d6e41438a9ef1ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 187, 166, 112, 41, 187, 204, 179, 3, 159, 27, 125, 30, 111, 95, 188, 38, 213, 32, 66, 150, + 61, 255, 255, 27, 92, 206, 14, 62, 162, 146, 43, 161, 191, 18, 68, 3, 15, 3, 1, 27, 34, 168, 38, 251, 196, 72, 4, + 96, 19, 255, 27, 106, 140, 81, 192, 193, 48, 31, 118, 217, 5, 10, 159, 191, 65, 11, 65, 179, 68, 123, 98, 64, 103, + 27, 249, 153, 47, 201, 96, 66, 88, 32, 65, 158, 75, 208, 180, 209, 243, 20, 92, 148, 31, 180, 99, 121, 255, 70, + 27, 110, 250, 63, 130, 6, 159, 27, 103, 120, 26, 182, 111, 220, 72, 183, 27, 203, 235, 48, 161, 252, 28, 87, 89, + 73, 174, 14, 31, 122, 19, 24, 167, 87, 62, 255, 191, 27, 193, 95, 240, 220, 127, 77, 110, 65, 67, 138, 158, 241, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 843, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05d3d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d8da39a50cbfb6cd1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "15064543f3b2a35079e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11062745623324339504" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a683a1dbd0df56e9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "459b6a9c654f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11145226439694019694" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfcfce967bc106596806" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12971526740785865167" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4305d3d6491d8da39a50cbfb6cd14a15064543f3b2a35079e11b9986c4880ec12d30413548a683a1dbd0df56e946459b6a9c654f1b9aabcc659f40ec6e4abfcfce967bc1065968061bb4041ed83b05a1cfffff", + "cborBytes": [ + 159, 191, 67, 5, 211, 214, 73, 29, 141, 163, 154, 80, 203, 251, 108, 209, 74, 21, 6, 69, 67, 243, 178, 163, 80, + 121, 225, 27, 153, 134, 196, 136, 14, 193, 45, 48, 65, 53, 72, 166, 131, 161, 219, 208, 223, 86, 233, 70, 69, 155, + 106, 156, 101, 79, 27, 154, 171, 204, 101, 159, 64, 236, 110, 74, 191, 207, 206, 150, 123, 193, 6, 89, 104, 6, 27, + 180, 4, 30, 216, 59, 5, 161, 207, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 844, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15387787741894434233" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2324732aa7aed0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15125667330454167469" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7440633395069504754" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95e7" + }, + { + "_tag": "ByteArray", + "bytearray": "c620a056a3a1815b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fe02" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fe04fa" + }, + { + "_tag": "ByteArray", + "bytearray": "5d4f67" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9fd8669f1bd58c676c5aba5db99f472324732aa7aed01bd1e92a4c3e739fad1b674270a69106ccf24295e748c620a056a3a1815bffff42fe02ff43fe04fa435d4f6780ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 213, 140, 103, 108, 90, 186, 93, 185, 159, 71, 35, 36, 115, 42, 167, 174, 208, 27, + 209, 233, 42, 76, 62, 115, 159, 173, 27, 103, 66, 112, 166, 145, 6, 204, 242, 66, 149, 231, 72, 198, 32, 160, 86, + 163, 161, 129, 91, 255, 255, 66, 254, 2, 255, 67, 254, 4, 250, 67, 93, 79, 103, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 845, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3d" + }, + { + "_tag": "ByteArray", + "bytearray": "306940d56f4557b17e7368d5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3721dd2ae8237a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8267420240410759407" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f503" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2222877713866151245" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "698575437e485fce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49fa22ffac08de84" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e3d846929fb05f8" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f9f413d4c306940d56f4557b17e7368d5bf473721dd2ae8237a1b72bbc6e7ee8ed0efffbf1bfffffffffffffff842f503ffffbf1b1ed93f80e21fd54d48698575437e485fce4849fa22ffac08de84487e3d846929fb05f8ffa0ff", + "cborBytes": [ + 159, 159, 65, 61, 76, 48, 105, 64, 213, 111, 69, 87, 177, 126, 115, 104, 213, 191, 71, 55, 33, 221, 42, 232, 35, + 122, 27, 114, 187, 198, 231, 238, 142, 208, 239, 255, 191, 27, 255, 255, 255, 255, 255, 255, 255, 248, 66, 245, 3, + 255, 255, 191, 27, 30, 217, 63, 128, 226, 31, 213, 77, 72, 105, 133, 117, 67, 126, 72, 95, 206, 72, 73, 250, 34, + 255, 172, 8, 222, 132, 72, 126, 61, 132, 105, 41, 251, 5, 248, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 846, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "76b141136841613d9dcded" + }, + { + "_tag": "ByteArray", + "bytearray": "54eabbe82a" + } + ] + }, + "cborHex": "9f4b76b141136841613d9dcded4554eabbe82aff", + "cborBytes": [159, 75, 118, 177, 65, 19, 104, 65, 97, 61, 157, 205, 237, 69, 84, 234, 187, 232, 42, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 847, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17648389089688560578" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2332181628296685305" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17859666143049744398" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf4ebac5f34c423c29fd8669f1b205d92d5a250e6f99f1bf7da47bb878d000effffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 244, 235, 172, 95, 52, 196, 35, 194, 159, 216, 102, 159, 27, 32, 93, 146, 213, 162, 80, + 230, 249, 159, 27, 247, 218, 71, 187, 135, 141, 0, 14, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 848, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2345496737644998088" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7f03b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2003cf8de1" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f6" + }, + { + "_tag": "ByteArray", + "bytearray": "57" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16350322624638699825" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f7901ffc943a17d846" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2194665694882288681" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bb605853856bd9" + }, + { + "_tag": "ByteArray", + "bytearray": "65fc74a5c8" + }, + { + "_tag": "ByteArray", + "bytearray": "4cbb5eba8fff32" + }, + { + "_tag": "ByteArray", + "bytearray": "95a19c901a2d5dd19efc4b" + }, + { + "_tag": "ByteArray", + "bytearray": "368bb86ae49dd619534b11f3" + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1bffffffffffffffec1b208ce0db1d2aedc843a7f03b452003cf8de1ffd8799f9f41f64157ff9f1be2e803cca49f493149f7901ffc943a17d846ff80d8669f1b1e7504d25831d4299f47bb605853856bd94565fc74a5c8474cbb5eba8fff324b95a19c901a2d5dd19efc4b4c368bb86ae49dd619534b11f3ffffffff", + "cborBytes": [ + 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 236, 27, 32, 140, 224, 219, 29, 42, 237, 200, 67, 167, 240, 59, + 69, 32, 3, 207, 141, 225, 255, 216, 121, 159, 159, 65, 246, 65, 87, 255, 159, 27, 226, 232, 3, 204, 164, 159, 73, + 49, 73, 247, 144, 31, 252, 148, 58, 23, 216, 70, 255, 128, 216, 102, 159, 27, 30, 117, 4, 210, 88, 49, 212, 41, + 159, 71, 187, 96, 88, 83, 133, 107, 217, 69, 101, 252, 116, 165, 200, 71, 76, 187, 94, 186, 143, 255, 50, 75, 149, + 161, 156, 144, 26, 45, 93, 209, 158, 252, 75, 76, 54, 139, 184, 106, 228, 157, 214, 25, 83, 75, 17, 243, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 849, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0401" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a90004" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7904650387345756415" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a7f34d1bcad3c32561" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13083584787122154566" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2e9f5d1d3fb7975a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7206079228613564698" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17901033548860365961" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fbf1bfffffffffffffffe42040143a900041bfffffffffffffff9ffd8669f1bffffffffffffffee9f9f1b6db2f5a58b65d0ffff9f49a7f34d1bcad3c32561ffd8669f1bfffffffffffffffb9f1bb5923b0b491eec46482e9f5d1d3fb7975a1b640122e104d5191a1bf86d3f2b402c1c89ffffa0ffffff", + "cborBytes": [ + 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 254, 66, 4, 1, 67, 169, 0, 4, 27, 255, 255, 255, 255, 255, 255, + 255, 249, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 159, 27, 109, 178, 245, 165, 139, + 101, 208, 255, 255, 159, 73, 167, 243, 77, 27, 202, 211, 195, 37, 97, 255, 216, 102, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 251, 159, 27, 181, 146, 59, 11, 73, 30, 236, 70, 72, 46, 159, 93, 29, 63, 183, 151, 90, 27, 100, 1, + 34, 225, 4, 213, 25, 26, 27, 248, 109, 63, 43, 64, 44, 28, 137, 255, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 850, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3863867588160394227" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15524258819425229102" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fa09fd8669f1b359f37198b7213f380ffd8669f1bd7713f252d10d92e80ffffff", + "cborBytes": [ + 159, 160, 159, 216, 102, 159, 27, 53, 159, 55, 25, 139, 114, 19, 243, 128, 255, 216, 102, 159, 27, 215, 113, 63, + 37, 45, 16, 217, 46, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 851, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e49e" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f42e49ea0ff", + "cborBytes": [159, 66, 228, 158, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 852, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9534564069712397739" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4cf621b2c69e3b7197bd" + } + ] + }, + "cborHex": "9f9f1b845193814f6905abff4a4cf621b2c69e3b7197bdff", + "cborBytes": [ + 159, 159, 27, 132, 81, 147, 129, 79, 105, 5, 171, 255, 74, 76, 246, 33, 178, 198, 158, 59, 113, 151, 189, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 853, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1177130354098587054" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58482146" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3464323751946919984" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3513" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4165191402227508835" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4007d39db1" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17569140283153412616" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4149093306647836416" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c" + } + ] + } + ] + }, + "cborHex": "9fbf1b105601d2026045ae44584821461b3013c018fdbea030423513ffd8669f1b39cdbb831f4826639f454007d39db1ffff9f1bf3d22000925d72081b39948a612ab1f700415cffff", + "cborBytes": [ + 159, 191, 27, 16, 86, 1, 210, 2, 96, 69, 174, 68, 88, 72, 33, 70, 27, 48, 19, 192, 24, 253, 190, 160, 48, 66, 53, + 19, 255, 216, 102, 159, 27, 57, 205, 187, 131, 31, 72, 38, 99, 159, 69, 64, 7, 211, 157, 177, 255, 255, 159, 27, + 243, 210, 32, 0, 146, 93, 114, 8, 27, 57, 148, 138, 97, 42, 177, 247, 0, 65, 92, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 854, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9611457439978253708" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10298307522828833245" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17756504274672409533" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3353fde9" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf1b8562c19e33b06d8c1b8eeaf02115f211dd1bf66bc68f508ddbbd443353fde9ffa0ff", + "cborBytes": [ + 159, 191, 27, 133, 98, 193, 158, 51, 176, 109, 140, 27, 142, 234, 240, 33, 21, 242, 17, 221, 27, 246, 107, 198, + 143, 80, 141, 219, 189, 68, 51, 83, 253, 233, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 855, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04" + } + ] + }, + "cborHex": "9f4104ff", + "cborBytes": [159, 65, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 856, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6df2315d85dfd93e4a9cc002" + }, + { + "_tag": "ByteArray", + "bytearray": "d49e84a013d74a0c471c7b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12295555075948403496" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18034461414267938837" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f852d8520b7062f64e330ec" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f4c6df2315d85dfd93e4a9cc0024bd49e84a013d74a0c471c7bd8669f1baaa296326a27db289f1bfa47471b08ede8154c6f852d8520b7062f64e330ecffffa0ff", + "cborBytes": [ + 159, 76, 109, 242, 49, 93, 133, 223, 217, 62, 74, 156, 192, 2, 75, 212, 158, 132, 160, 19, 215, 74, 12, 71, 28, + 123, 216, 102, 159, 27, 170, 162, 150, 50, 106, 39, 219, 40, 159, 27, 250, 71, 71, 27, 8, 237, 232, 21, 76, 111, + 133, 45, 133, 32, 183, 6, 47, 100, 227, 48, 236, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 857, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6380779556640373595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6982131221130068584" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16631567446291498195" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16287191223998286935" + } + }, + { + "_tag": "ByteArray", + "bytearray": "999803e07dc43ed0a9a564" + }, + { + "_tag": "ByteArray", + "bytearray": "8ae3fc3032550530e266" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11004737321505249566" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aae80302c9889f" + }, + { + "_tag": "ByteArray", + "bytearray": "5d82057610fafd52405648" + }, + { + "_tag": "ByteArray", + "bytearray": "6e14ff" + }, + { + "_tag": "ByteArray", + "bytearray": "582035ba0e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "578577608730804716" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10891029868726928295" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aff6046bd49039d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "227110344683296941" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fe0a84c9901c15c289" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8a798484b8f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "284344679620867563" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3198864775506698938" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4d85db1a0e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2396563621535443654" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17632929875699625737" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8321996413964442402" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1098209365" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bf9369" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4456052080480663993" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15117092857769540328" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16374660464482326045" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14002765690966294462" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17671975340599009445" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55f6ac5835" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58423e0d9d9329" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52e0c76ebf3346e966" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a296d1c537fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "685d828edbfac11b26c1" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c3f3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12708250045022804353" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00f435a323" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0854ee3c1fa6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12823067763826326429" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d531626f1542bc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12236117073862426316" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b588d15332f9fbb5b9f1b60e5835a4a9f4268d8669f1be6cf32797e27c4d39f1be207ba1fff470c574b999803e07dc43ed0a9a5644a8ae3fc3032550530e266ffffffffd8669f1b98b8ae49cecdd91e9f9f47aae80302c9889f4b5d82057610fafd52405648436e14ff45582035ba0e1b080785450b6501ecffd8669f1b9724b5f663a343a79f417cffff48aff6046bd49039d81b0326dba7bbaa18adffff9fa049fe0a84c9901c15c289bf46b8a798484b8f1b03f231fac692f5ebffd8669f1b2c64a690a49622ba9f454d85db1a0e1b21424dea8f3e6ac61bf4b4c04c7672ef091b737daba58c6cdb22451098209365ffff43bf9369ff1b3dd713c20db0b9b9d8669f1bd1cab3dc3ff2bae89fbf1be33e7aef8f1a161d1bc253d134c312bfbe1bf53f77f12fdde0a54555f6ac58354758423e0d9d93294952e0c76ebf3346e96646a296d1c537fd4a685d828edbfac11b26c1ff9f42c3f31bb05cc615b26d19814500f435a323ffbf460854ee3c1fa61bb1f4b03111a17b9d47d531626f1542bc1ba9cf6ba621a97eccffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 88, 141, 21, 51, 47, 159, 187, 91, 159, 27, 96, 229, 131, 90, 74, 159, 66, 104, 216, 102, + 159, 27, 230, 207, 50, 121, 126, 39, 196, 211, 159, 27, 226, 7, 186, 31, 255, 71, 12, 87, 75, 153, 152, 3, 224, + 125, 196, 62, 208, 169, 165, 100, 74, 138, 227, 252, 48, 50, 85, 5, 48, 226, 102, 255, 255, 255, 255, 216, 102, + 159, 27, 152, 184, 174, 73, 206, 205, 217, 30, 159, 159, 71, 170, 232, 3, 2, 201, 136, 159, 75, 93, 130, 5, 118, + 16, 250, 253, 82, 64, 86, 72, 67, 110, 20, 255, 69, 88, 32, 53, 186, 14, 27, 8, 7, 133, 69, 11, 101, 1, 236, 255, + 216, 102, 159, 27, 151, 36, 181, 246, 99, 163, 67, 167, 159, 65, 124, 255, 255, 72, 175, 246, 4, 107, 212, 144, + 57, 216, 27, 3, 38, 219, 167, 187, 170, 24, 173, 255, 255, 159, 160, 73, 254, 10, 132, 201, 144, 28, 21, 194, 137, + 191, 70, 184, 167, 152, 72, 75, 143, 27, 3, 242, 49, 250, 198, 146, 245, 235, 255, 216, 102, 159, 27, 44, 100, + 166, 144, 164, 150, 34, 186, 159, 69, 77, 133, 219, 26, 14, 27, 33, 66, 77, 234, 143, 62, 106, 198, 27, 244, 180, + 192, 76, 118, 114, 239, 9, 27, 115, 125, 171, 165, 140, 108, 219, 34, 69, 16, 152, 32, 147, 101, 255, 255, 67, + 191, 147, 105, 255, 27, 61, 215, 19, 194, 13, 176, 185, 185, 216, 102, 159, 27, 209, 202, 179, 220, 63, 242, 186, + 232, 159, 191, 27, 227, 62, 122, 239, 143, 26, 22, 29, 27, 194, 83, 209, 52, 195, 18, 191, 190, 27, 245, 63, 119, + 241, 47, 221, 224, 165, 69, 85, 246, 172, 88, 53, 71, 88, 66, 62, 13, 157, 147, 41, 73, 82, 224, 199, 110, 191, + 51, 70, 233, 102, 70, 162, 150, 209, 197, 55, 253, 74, 104, 93, 130, 142, 219, 250, 193, 27, 38, 193, 255, 159, + 66, 195, 243, 27, 176, 92, 198, 21, 178, 109, 25, 129, 69, 0, 244, 53, 163, 35, 255, 191, 70, 8, 84, 238, 60, 31, + 166, 27, 177, 244, 176, 49, 17, 161, 123, 157, 71, 213, 49, 98, 111, 21, 66, 188, 27, 169, 207, 107, 166, 33, 169, + 126, 204, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 858, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "de40ccfc963d" + } + ] + }, + "cborHex": "9f46de40ccfc963dff", + "cborBytes": [159, 70, 222, 64, 204, 252, 150, 61, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 859, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "991399756152102083" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b0dc228d357dadcc39fa0ffffff", + "cborBytes": [159, 216, 102, 159, 27, 13, 194, 40, 211, 87, 218, 220, 195, 159, 160, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 860, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18a3f209eed2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4807359132bafce4b4362a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27a0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b08ade39b1c2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45de0129fe8c26" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f43e0ccace210" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71f20d7d620ffc1da5018104" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9498517053490082678" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf7b1458ff6f1aed66cede" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f13e1d41c2222d7a40" + } + } + ] + } + ] + }, + "cborHex": "9fbf4618a3f209eed24b4807359132bafce4b4362a4227a046b08ade39b1c24745de0129fe8c26472f43e0ccace2104c71f20d7d620ffc1da50181041b83d182ef524433764bbf7b1458ff6f1aed66cede49f13e1d41c2222d7a40ffff", + "cborBytes": [ + 159, 191, 70, 24, 163, 242, 9, 238, 210, 75, 72, 7, 53, 145, 50, 186, 252, 228, 180, 54, 42, 66, 39, 160, 70, 176, + 138, 222, 57, 177, 194, 71, 69, 222, 1, 41, 254, 140, 38, 71, 47, 67, 224, 204, 172, 226, 16, 76, 113, 242, 13, + 125, 98, 15, 252, 29, 165, 1, 129, 4, 27, 131, 209, 130, 239, 82, 68, 51, 118, 75, 191, 123, 20, 88, 255, 111, 26, + 237, 102, 206, 222, 73, 241, 62, 29, 65, 194, 34, 45, 122, 64, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 861, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f533d12c27af7de72741e1c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13704231580481476743" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13472344540084152437" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "168a20ce" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10577269576925680058" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f05c90aabdba16b02bb" + } + } + ] + } + ] + }, + "cborHex": "9f4cf533d12c27af7de72741e1c41bbe2f3603aa49d887d8669f1bbaf761facb63a8759f44168a20ceffffbf1b92ca02a3b23391ba4a0f05c90aabdba16b02bbffff", + "cborBytes": [ + 159, 76, 245, 51, 209, 44, 39, 175, 125, 231, 39, 65, 225, 196, 27, 190, 47, 54, 3, 170, 73, 216, 135, 216, 102, + 159, 27, 186, 247, 97, 250, 203, 99, 168, 117, 159, 68, 22, 138, 32, 206, 255, 255, 191, 27, 146, 202, 2, 163, + 178, 51, 145, 186, 74, 15, 5, 201, 10, 171, 219, 161, 107, 2, 187, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 862, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2036650476632378618" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2481180684886655955" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6312583746699975748" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6646733227442330094" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1398681336923853572" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6663195301535085596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "200fa42919f0fb5e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13280111032445903277" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b060870629e85eaae783e2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13809523648759556601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c849b8201bd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14813286007947402296" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14589290996744852086" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18329792984113849845" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1b1c43a2d15f4d8cfabf1b226eecafe23ac3d31b579acd78dcf4dc441b5c3df0a78a7c59ee1b13691d43f15093041b5c786cd2d90cf41c48200fa42919f0fb5e1bb84c6e9f7aaf21ad4bb060870629e85eaae783e21bbfa54897b1ab69f9460c849b8201bd1bcd935d23dbf81c381bca7792dd39c81276ffd8669f1bfe60819a888da5f580ffff", + "cborBytes": [ + 159, 27, 28, 67, 162, 209, 95, 77, 140, 250, 191, 27, 34, 110, 236, 175, 226, 58, 195, 211, 27, 87, 154, 205, 120, + 220, 244, 220, 68, 27, 92, 61, 240, 167, 138, 124, 89, 238, 27, 19, 105, 29, 67, 241, 80, 147, 4, 27, 92, 120, + 108, 210, 217, 12, 244, 28, 72, 32, 15, 164, 41, 25, 240, 251, 94, 27, 184, 76, 110, 159, 122, 175, 33, 173, 75, + 176, 96, 135, 6, 41, 232, 94, 170, 231, 131, 226, 27, 191, 165, 72, 151, 177, 171, 105, 249, 70, 12, 132, 155, + 130, 1, 189, 27, 205, 147, 93, 35, 219, 248, 28, 56, 27, 202, 119, 146, 221, 57, 200, 18, 118, 255, 216, 102, 159, + 27, 254, 96, 129, 154, 136, 141, 165, 245, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 863, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8da740f1df44910dd29ce6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + ] + }, + "cborHex": "9f4b8da740f1df44910dd29ce61bffffffffffffffeeff", + "cborBytes": [ + 159, 75, 141, 167, 64, 241, 223, 68, 145, 13, 210, 156, 230, 27, 255, 255, 255, 255, 255, 255, 255, 238, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 864, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1230b505252501b1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "208dd5fb7e467582" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "111993c9535a84" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5cf0ad6d9a4b7e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15184330881603177110" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8631616188182638610" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8eb5d41b1061b4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11011978325442738605" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af6b4212b77995b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2478951426555111676" + } + } + } + ] + } + ] + }, + "cborHex": "9f481230b505252501b1bf48208dd5fb7e46758247111993c9535a84475cf0ad6d9a4b7e1bd2b9947c9df38a9641611b77c9a930de233012478eb5d41b1061b41b98d267f16a50b9ad48af6b4212b77995b01b226701303b43e8fcffff", + "cborBytes": [ + 159, 72, 18, 48, 181, 5, 37, 37, 1, 177, 191, 72, 32, 141, 213, 251, 126, 70, 117, 130, 71, 17, 25, 147, 201, 83, + 90, 132, 71, 92, 240, 173, 109, 154, 75, 126, 27, 210, 185, 148, 124, 157, 243, 138, 150, 65, 97, 27, 119, 201, + 169, 48, 222, 35, 48, 18, 71, 142, 181, 212, 27, 16, 97, 180, 27, 152, 210, 103, 241, 106, 80, 185, 173, 72, 175, + 107, 66, 18, 183, 121, 149, 176, 27, 34, 103, 1, 48, 59, 67, 232, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 865, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1bffffffffffffffed80ff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 866, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13659055527337269278" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "63069c03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a8edb5018e7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6970ec31fefc20" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10357206014135429728" + } + } + } + ] + } + ] + }, + "cborHex": "9f1bbd8eb6a22246181ebf4463069c03465a8edb5018e7476970ec31fefc201b8fbc2ffeba14ea60ffff", + "cborBytes": [ + 159, 27, 189, 142, 182, 162, 34, 70, 24, 30, 191, 68, 99, 6, 156, 3, 70, 90, 142, 219, 80, 24, 231, 71, 105, 112, + 236, 49, 254, 252, 32, 27, 143, 188, 47, 254, 186, 20, 234, 96, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 867, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "366306" + } + ] + }, + "cborHex": "9f43366306ff", + "cborBytes": [159, 67, 54, 99, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 868, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10149137963519104065" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2377373059828106158" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e434d5279e3f7c4043e21018" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2752918312485311213" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8799312577477953626" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6843946208741063679" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66d17e75d42042519835" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9702073043590109418" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2bbe61" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11086696008416830246" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c8df48aeb" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6010517770590198359" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5966707561953369495" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3bea63e0e2e8041b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7280037802919411079" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18408146667034685235" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13519957438133856806" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3235140709987513209" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4733cfcb4606" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18086705910518452625" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06264fec68883f" + }, + { + "_tag": "ByteArray", + "bytearray": "e23b57ea026e3d82" + }, + { + "_tag": "ByteArray", + "bytearray": "7a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "86d99bb6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f2130802c7b42a7881ae" + }, + { + "_tag": "ByteArray", + "bytearray": "d9b2b7ec63" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12385604385020987824" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1161489472990288724" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5a6a37832e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e20422" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e2568aaaaefbfe321d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1069938480731960145" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3958246930642791654" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7825830236534446712" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7839968421722502464" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10144346669524877292" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11894540712785937682" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b10ad7d25a6764526" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b8cd8fb3493fcd4419fbf1b20fe2033b9a343ae4ce434d5279e3f7c4043e210181b2634549e9f5ad2ed1b7a1d702b2033485a1b5efa94d0e9e47bff4a66d17e75d420425198351b86a4b0078414d8ea432bbe611b99dbdb47a26d2326459c8df48aebff9f1b5369a61138339a571b52ce00ea24de1d97483bea63e0e2e8041b1b6507e3cf7a6d3d871bff76dfdcf5e4af33ff1bbba089a87e5e6a26d8669f1b2ce58755d135f3799f464733cfcb46061bfb00e332b96911914706264fec68883f48e23b57ea026e3d82417affff4486d99bb6ffff4af2130802c7b42a7881ae45d9b2b7ec639f9f1babe2819101b249b01b101e708597f11b54455a6a37832e1bfffffffffffffffa43e20422ff9f49e2568aaaaefbfe321d1b0ed92f61238cb3511b36ee849c9a3e6ce61b6c9aef2319259a784128ff9f1b6ccd29bddb0cb5401b8cc7f58c83727fecffffbf06091ba511e5c220070512491b10ad7d25a6764526ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 140, 216, 251, 52, 147, 252, 212, 65, 159, 191, 27, 32, 254, 32, 51, 185, 163, 67, 174, + 76, 228, 52, 213, 39, 158, 63, 124, 64, 67, 226, 16, 24, 27, 38, 52, 84, 158, 159, 90, 210, 237, 27, 122, 29, 112, + 43, 32, 51, 72, 90, 27, 94, 250, 148, 208, 233, 228, 123, 255, 74, 102, 209, 126, 117, 212, 32, 66, 81, 152, 53, + 27, 134, 164, 176, 7, 132, 20, 216, 234, 67, 43, 190, 97, 27, 153, 219, 219, 71, 162, 109, 35, 38, 69, 156, 141, + 244, 138, 235, 255, 159, 27, 83, 105, 166, 17, 56, 51, 154, 87, 27, 82, 206, 0, 234, 36, 222, 29, 151, 72, 59, + 234, 99, 224, 226, 232, 4, 27, 27, 101, 7, 227, 207, 122, 109, 61, 135, 27, 255, 118, 223, 220, 245, 228, 175, 51, + 255, 27, 187, 160, 137, 168, 126, 94, 106, 38, 216, 102, 159, 27, 44, 229, 135, 85, 209, 53, 243, 121, 159, 70, + 71, 51, 207, 203, 70, 6, 27, 251, 0, 227, 50, 185, 105, 17, 145, 71, 6, 38, 79, 236, 104, 136, 63, 72, 226, 59, + 87, 234, 2, 110, 61, 130, 65, 122, 255, 255, 68, 134, 217, 155, 182, 255, 255, 74, 242, 19, 8, 2, 199, 180, 42, + 120, 129, 174, 69, 217, 178, 183, 236, 99, 159, 159, 27, 171, 226, 129, 145, 1, 178, 73, 176, 27, 16, 30, 112, + 133, 151, 241, 27, 84, 69, 90, 106, 55, 131, 46, 27, 255, 255, 255, 255, 255, 255, 255, 250, 67, 226, 4, 34, 255, + 159, 73, 226, 86, 138, 170, 174, 251, 254, 50, 29, 27, 14, 217, 47, 97, 35, 140, 179, 81, 27, 54, 238, 132, 156, + 154, 62, 108, 230, 27, 108, 154, 239, 35, 25, 37, 154, 120, 65, 40, 255, 159, 27, 108, 205, 41, 189, 219, 12, 181, + 64, 27, 140, 199, 245, 140, 131, 114, 127, 236, 255, 255, 191, 6, 9, 27, 165, 17, 229, 194, 32, 7, 5, 18, 73, 27, + 16, 173, 125, 37, 166, 118, 69, 38, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 869, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18324840435523360007" + } + } + ] + }, + "cborHex": "9f011bfe4ee94975159507ff", + "cborBytes": [159, 1, 27, 254, 78, 233, 73, 117, 21, 149, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 870, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5589559455407666740" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "00341103" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2329044911026705945" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17272413669584851617" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "441895323100552677" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b7b62634" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16705964316952949950" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10197133332884796719" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5cabd21fce37c962d2289197" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8039048946965574107" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ce0f0e769fafa77b7f67e9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8614963658451525969" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5621956303980661096" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4776212926756105382" + } + } + ] + }, + "cborHex": "9f9fd8669f1b4d921ab5be7ff63480ffff44003411039f1b20526e01bbad96191befb3f0b82534d2a1d8669f1b0621ed7481509de59f44b7b626341be7d78208c654f4be1b8d837ebd51e4b52f4c5cabd21fce37c962d22891971b6f90706cafdc71dbffff4bce0f0e769fafa77b7f67e9d8669f1b778e7fcda6e721519f1b4e053378d9890968ffffff1b42488459f6ed2ca6ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 77, 146, 26, 181, 190, 127, 246, 52, 128, 255, 255, 68, 0, 52, 17, 3, 159, 27, 32, + 82, 110, 1, 187, 173, 150, 25, 27, 239, 179, 240, 184, 37, 52, 210, 161, 216, 102, 159, 27, 6, 33, 237, 116, 129, + 80, 157, 229, 159, 68, 183, 182, 38, 52, 27, 231, 215, 130, 8, 198, 84, 244, 190, 27, 141, 131, 126, 189, 81, 228, + 181, 47, 76, 92, 171, 210, 31, 206, 55, 201, 98, 210, 40, 145, 151, 27, 111, 144, 112, 108, 175, 220, 113, 219, + 255, 255, 75, 206, 15, 14, 118, 159, 175, 167, 123, 127, 103, 233, 216, 102, 159, 27, 119, 142, 127, 205, 166, + 231, 33, 81, 159, 27, 78, 5, 51, 120, 217, 137, 9, 104, 255, 255, 255, 27, 66, 72, 132, 89, 246, 237, 44, 166, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 871, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3744917607429345128" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc9bd4a3474235cbd73c8d" + } + ] + }, + "cborHex": "9f1b33f89eb8f7ee8f684bcc9bd4a3474235cbd73c8dff", + "cborBytes": [ + 159, 27, 51, 248, 158, 184, 247, 238, 143, 104, 75, 204, 155, 212, 163, 71, 66, 53, 203, 215, 60, 141, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 872, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7650381059040776721" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "df4d793073a76f939830ed2a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2779406543946265883" + } + }, + { + "_tag": "ByteArray", + "bytearray": "78250735" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16076523038676879406" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1444342372633882250" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46bdc7401545025f2c245893" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6938116977252285507" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10191660395134280858" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9452926959876104942" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9973768125538661671" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b68b371cfd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1806436947206499017" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15775618337607283205" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "436ad4775e0c244acdffa6" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15784689787244539665" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00a585754e832c703d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12338127233290468666" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11495084876491426640" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10139264352037182504" + } + }, + { + "_tag": "ByteArray", + "bytearray": "19e3" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17797126542871797143" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbc1ee98936f0e39105a43" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3091003528094676043" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8b18" + }, + { + "_tag": "ByteArray", + "bytearray": "7b4007d6deda2e6cc5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1041069292460839114" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10754048708143366561" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "9704fb4e4c8a3764" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2394297476806529794" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b6a2b9d0a2c8092119f4cdf4d793073a76f939830ed2a9f1b26926f869a50351b44782507351bdf1b4886cfb8082effbf1b140b55bc46e32e8a4c46bdc7401545025f2c2458931b604924a18f3abc431b8d700d21b365649a1b832f8afc7b20e2ee1b8a69f14452d87527ff9f45b68b371cfd1b1911c0d523626ac91bdaee414b95387205ffa0ffff4b436ad4775e0c244acdffa69fd8669f1bdb0e7bbb0a726f119f4900a585754e832c703d1bab39d55935d9fd3a1b9f86becaa63c8b501b8cb5e73542f51c284219e3ffffbf1bf6fc184c2a8c9d974bcbc1ee98936f0e39105a43ffd8669f1b2ae57354fb8ff44b9f428b18497b4007d6deda2e6cc51b0e729f0173b210caffffffd8669f1b953e0e529a2241a19f80489704fb4e4c8a37641b213a40de9faad302ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 106, 43, 157, 10, 44, 128, 146, 17, 159, 76, 223, 77, 121, 48, 115, 167, 111, 147, 152, + 48, 237, 42, 159, 27, 38, 146, 111, 134, 154, 80, 53, 27, 68, 120, 37, 7, 53, 27, 223, 27, 72, 134, 207, 184, 8, + 46, 255, 191, 27, 20, 11, 85, 188, 70, 227, 46, 138, 76, 70, 189, 199, 64, 21, 69, 2, 95, 44, 36, 88, 147, 27, 96, + 73, 36, 161, 143, 58, 188, 67, 27, 141, 112, 13, 33, 179, 101, 100, 154, 27, 131, 47, 138, 252, 123, 32, 226, 238, + 27, 138, 105, 241, 68, 82, 216, 117, 39, 255, 159, 69, 182, 139, 55, 28, 253, 27, 25, 17, 192, 213, 35, 98, 106, + 201, 27, 218, 238, 65, 75, 149, 56, 114, 5, 255, 160, 255, 255, 75, 67, 106, 212, 119, 94, 12, 36, 74, 205, 255, + 166, 159, 216, 102, 159, 27, 219, 14, 123, 187, 10, 114, 111, 17, 159, 73, 0, 165, 133, 117, 78, 131, 44, 112, 61, + 27, 171, 57, 213, 89, 53, 217, 253, 58, 27, 159, 134, 190, 202, 166, 60, 139, 80, 27, 140, 181, 231, 53, 66, 245, + 28, 40, 66, 25, 227, 255, 255, 191, 27, 246, 252, 24, 76, 42, 140, 157, 151, 75, 203, 193, 238, 152, 147, 111, 14, + 57, 16, 90, 67, 255, 216, 102, 159, 27, 42, 229, 115, 84, 251, 143, 244, 75, 159, 66, 139, 24, 73, 123, 64, 7, + 214, 222, 218, 46, 108, 197, 27, 14, 114, 159, 1, 115, 178, 16, 202, 255, 255, 255, 216, 102, 159, 27, 149, 62, + 14, 82, 154, 34, 65, 161, 159, 128, 72, 151, 4, 251, 78, 76, 138, 55, 100, 27, 33, 58, 64, 222, 159, 170, 211, 2, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 873, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "190671e2d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + ] + }, + "cborHex": "9f45190671e2d01bfffffffffffffffaff", + "cborBytes": [159, 69, 25, 6, 113, 226, 208, 27, 255, 255, 255, 255, 255, 255, 255, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 874, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2197850912619947500" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6687307018906311174" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5c55742402" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17664681627589552705" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9802574156720827205" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fee3f31980c01773" + }, + { + "_tag": "ByteArray", + "bytearray": "2e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2460636215568468829" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7664226884118717769" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16473686453182218622" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14876595871156058337" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7724237343842488453" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17557063049229626443" + } + } + ] + }, + "cborHex": "9fd8669f1b1e8055c2a3fae5ec9fd8669f1b5cce164d85e31a069f455c557424021bf5258e594ad82a411b8809bd425fc4eb4548fee3f31980c01773412effff1b2225ef99de6b8b5d9f1b6a5ccdbe89e525491be49e4a8c3f17417e1bce7449200f4cb8e11b6b3200f08089d085ffffff1bf3a737d26c77ec4bff", + "cborBytes": [ + 159, 216, 102, 159, 27, 30, 128, 85, 194, 163, 250, 229, 236, 159, 216, 102, 159, 27, 92, 206, 22, 77, 133, 227, + 26, 6, 159, 69, 92, 85, 116, 36, 2, 27, 245, 37, 142, 89, 74, 216, 42, 65, 27, 136, 9, 189, 66, 95, 196, 235, 69, + 72, 254, 227, 243, 25, 128, 192, 23, 115, 65, 46, 255, 255, 27, 34, 37, 239, 153, 222, 107, 139, 93, 159, 27, 106, + 92, 205, 190, 137, 229, 37, 73, 27, 228, 158, 74, 140, 63, 23, 65, 126, 27, 206, 116, 73, 32, 15, 76, 184, 225, + 27, 107, 50, 0, 240, 128, 137, 208, 133, 255, 255, 255, 27, 243, 167, 55, 210, 108, 119, 236, 75, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 875, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14729147780681555071" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4898938068467518096" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13962620855969981752" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9436209289585749071" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7689415516028426175" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12739779772643280850" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16331101532201900804" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bcc6871de3fc1dc7f9f1b43fc8637b3a50a90ffffd8669f1bc1c531b0fd8d25389f1b82f4265a8bffec4fffffbf1b6ab64aabeb4057bf1bb0ccca34791c07d24264d31be2a3ba5151bb5b04ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 204, 104, 113, 222, 63, 193, 220, 127, 159, 27, 67, 252, 134, 55, 179, 165, 10, 144, 255, + 255, 216, 102, 159, 27, 193, 197, 49, 176, 253, 141, 37, 56, 159, 27, 130, 244, 38, 90, 139, 255, 236, 79, 255, + 255, 191, 27, 106, 182, 74, 171, 235, 64, 87, 191, 27, 176, 204, 202, 52, 121, 28, 7, 210, 66, 100, 211, 27, 226, + 163, 186, 81, 81, 187, 91, 4, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 876, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffff9ff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 877, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0536" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9998226060646513383" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5fd80d3b39556" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2591426070618228701" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fc8bf204664197943eed" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11923043001734122314" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f420536ff1b8ac0d5a118e37ae747f5fd80d3b395561b23f6984800e2c7ddffa04afc8bf204664197943eed9f1ba57728706811cb4affff", + "cborBytes": [ + 159, 159, 159, 66, 5, 54, 255, 27, 138, 192, 213, 161, 24, 227, 122, 231, 71, 245, 253, 128, 211, 179, 149, 86, + 27, 35, 246, 152, 72, 0, 226, 199, 221, 255, 160, 74, 252, 139, 242, 4, 102, 65, 151, 148, 62, 237, 159, 27, 165, + 119, 40, 112, 104, 17, 203, 74, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 878, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4179820586767469537" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "216526931081393361" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d500fc1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10941388225728683429" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd8536125d9c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17897041084581235631" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10405050764531932324" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9900376666799362322" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12420687898446867224" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1870561508021497843" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3265692910354111630" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4e3169e36" + }, + { + "_tag": "ByteArray", + "bytearray": "3907a3eec464181dea" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13651127412533787455" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + "cborHex": "9f1b3a01b4ad9323cbe1bf1b03014218bb6974d1447d500fc11b97d79e9f10331da546fd8536125d9c1bf85f100b39094baf1b90662a8ac1d51ca4ffd8669f1b8965341fbf2451129fd8669f1bac5f25d604eb2b189f1b19f591c7e823eff31b2d5212664b2b1c8e45e4e3169e36493907a3eec464181deaffffffff1bbd728c0e0fac7b3f10ff", + "cborBytes": [ + 159, 27, 58, 1, 180, 173, 147, 35, 203, 225, 191, 27, 3, 1, 66, 24, 187, 105, 116, 209, 68, 125, 80, 15, 193, 27, + 151, 215, 158, 159, 16, 51, 29, 165, 70, 253, 133, 54, 18, 93, 156, 27, 248, 95, 16, 11, 57, 9, 75, 175, 27, 144, + 102, 42, 138, 193, 213, 28, 164, 255, 216, 102, 159, 27, 137, 101, 52, 31, 191, 36, 81, 18, 159, 216, 102, 159, + 27, 172, 95, 37, 214, 4, 235, 43, 24, 159, 27, 25, 245, 145, 199, 232, 35, 239, 243, 27, 45, 82, 18, 102, 75, 43, + 28, 142, 69, 228, 227, 22, 158, 54, 73, 57, 7, 163, 238, 196, 100, 24, 29, 234, 255, 255, 255, 255, 27, 189, 114, + 140, 14, 15, 172, 123, 63, 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 879, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "730de00900000100fa03e5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5012040550347532325" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6840158306961754816" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11959747419592440297" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b81ebc466bca9db6a2e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15955916712152882535" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6896250155204518429" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4368401219954562088" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "378b0817a92e9728" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ce1a741" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4963c59a5d0824" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdc6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4b730de00900000100fa03e5bf1b458e58535b5168251b5eed1fbd4de48ac01ba5f98ee9a433b9e94a8b81ebc466bca9db6a2e1bdd6ecdb62d975d671b5fb466fa6f32a21dffd87d9f1b3c9fadc3c7c65428bf48378b0817a92e97280d444ce1a741474963c59a5d082442fdc6412cffffff", + "cborBytes": [ + 159, 75, 115, 13, 224, 9, 0, 0, 1, 0, 250, 3, 229, 191, 27, 69, 142, 88, 83, 91, 81, 104, 37, 27, 94, 237, 31, + 189, 77, 228, 138, 192, 27, 165, 249, 142, 233, 164, 51, 185, 233, 74, 139, 129, 235, 196, 102, 188, 169, 219, + 106, 46, 27, 221, 110, 205, 182, 45, 151, 93, 103, 27, 95, 180, 102, 250, 111, 50, 162, 29, 255, 216, 125, 159, + 27, 60, 159, 173, 195, 199, 198, 84, 40, 191, 72, 55, 139, 8, 23, 169, 46, 151, 40, 13, 68, 76, 225, 167, 65, 71, + 73, 99, 197, 154, 93, 8, 36, 66, 253, 198, 65, 44, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 880, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14395291094263751477" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "17009d2c570d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11524610957237118723" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5390485798285908399" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16945985923204661011" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da4d301dbb28" + }, + { + "_tag": "ByteArray", + "bytearray": "2d81037b3ec1a26892" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c7a6c88b622e672dd1b8330d" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16276358961974718109" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5901975436158665406" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3be8bede1376e40b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5283178214215273886" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bc7c658fb0fef63359f4617009d2c570dd8669f1b9fefa49b08b167039f1b4aceda46059e99af1beb2c3c69d9623f1346da4d301dbb28492d81037b3ec1a26892ffff4cc7a6c88b622e672dd1b8330d80d8669f1be1e13e3d753fae9d80ffffff9fd8669f1b51e80763a15182be9f483be8bede1376e40b1b49519e9827624d9effffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 199, 198, 88, 251, 15, 239, 99, 53, 159, 70, 23, 0, 157, 44, 87, 13, 216, 102, 159, 27, + 159, 239, 164, 155, 8, 177, 103, 3, 159, 27, 74, 206, 218, 70, 5, 158, 153, 175, 27, 235, 44, 60, 105, 217, 98, + 63, 19, 70, 218, 77, 48, 29, 187, 40, 73, 45, 129, 3, 123, 62, 193, 162, 104, 146, 255, 255, 76, 199, 166, 200, + 139, 98, 46, 103, 45, 209, 184, 51, 13, 128, 216, 102, 159, 27, 225, 225, 62, 61, 117, 63, 174, 157, 128, 255, + 255, 255, 159, 216, 102, 159, 27, 81, 232, 7, 99, 161, 81, 130, 190, 159, 72, 59, 232, 190, 222, 19, 118, 228, 11, + 27, 73, 81, 158, 152, 39, 98, 77, 158, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 881, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2518784256405009358" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8b8597ae8bf46b982" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14899694636577249650" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14425919386456329388" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3ab47129314d2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2283460896738824390" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3388962229748291738" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7523908243803371497" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1782756016048660353" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0126696e0a02d4412e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11648850308281605757" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3059416186399239154" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7826435237497683103" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "948509928346678709" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e237c77e01992cf9a" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14619133345907220191" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9653372802266479922" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c1cfc2042" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3149941236485022101" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15019232295336311827" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15082980481027166978" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f002cba69c5e969967749337" + }, + { + "_tag": "ByteArray", + "bytearray": "9563ccdadb686f272f7975" + }, + { + "_tag": "ByteArray", + "bytearray": "291671279b70c2f144" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "86c1f8a0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13535019732420886602" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17723965199237785195" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13264976497195230626" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5271011001150213039" + } + } + ] + }, + "cborHex": "9fbf1b22f484efa4ddf3ce49c8b8597ae8bf46b9821bcec659547afad9721bc83329400c268cac47a3ab47129314d21b1fb07b96589cd0c6ffd8669f1b2f080331455cd89a9fbf1b686a4aaf328877e91b18bd9f26b1c55f81490126696e0a02d4412e1ba1a907a31ad31e7dffd8669f1b2a753acfe2682bf29f1b6c9d1561dca63c9f1b0d29c8c12108f5b5499e237c77e01992cf9affffffffd8669f1bcae1985296de1edf9f1b85f7ab6afb82bd32454c1cfc204280d8669f1b2bb6d6dd900b61959f1bd06f083282987c131bd15182d59dc653024cf002cba69c5e9699677493374b9563ccdadb686f272f797549291671279b70c2f144ffff9f4486c1f8a01bbbd60cbc2ad9804a1bf5f82c716ff4266b1bb816a9d7e53a25a2ffffff1b492664941abc0bafff", + "cborBytes": [ + 159, 191, 27, 34, 244, 132, 239, 164, 221, 243, 206, 73, 200, 184, 89, 122, 232, 191, 70, 185, 130, 27, 206, 198, + 89, 84, 122, 250, 217, 114, 27, 200, 51, 41, 64, 12, 38, 140, 172, 71, 163, 171, 71, 18, 147, 20, 210, 27, 31, + 176, 123, 150, 88, 156, 208, 198, 255, 216, 102, 159, 27, 47, 8, 3, 49, 69, 92, 216, 154, 159, 191, 27, 104, 106, + 74, 175, 50, 136, 119, 233, 27, 24, 189, 159, 38, 177, 197, 95, 129, 73, 1, 38, 105, 110, 10, 2, 212, 65, 46, 27, + 161, 169, 7, 163, 26, 211, 30, 125, 255, 216, 102, 159, 27, 42, 117, 58, 207, 226, 104, 43, 242, 159, 27, 108, + 157, 21, 97, 220, 166, 60, 159, 27, 13, 41, 200, 193, 33, 8, 245, 181, 73, 158, 35, 124, 119, 224, 25, 146, 207, + 154, 255, 255, 255, 255, 216, 102, 159, 27, 202, 225, 152, 82, 150, 222, 30, 223, 159, 27, 133, 247, 171, 106, + 251, 130, 189, 50, 69, 76, 28, 252, 32, 66, 128, 216, 102, 159, 27, 43, 182, 214, 221, 144, 11, 97, 149, 159, 27, + 208, 111, 8, 50, 130, 152, 124, 19, 27, 209, 81, 130, 213, 157, 198, 83, 2, 76, 240, 2, 203, 166, 156, 94, 150, + 153, 103, 116, 147, 55, 75, 149, 99, 204, 218, 219, 104, 111, 39, 47, 121, 117, 73, 41, 22, 113, 39, 155, 112, + 194, 241, 68, 255, 255, 159, 68, 134, 193, 248, 160, 27, 187, 214, 12, 188, 42, 217, 128, 74, 27, 245, 248, 44, + 113, 111, 244, 38, 107, 27, 184, 22, 169, 215, 229, 58, 37, 162, 255, 255, 255, 27, 73, 38, 100, 148, 26, 188, 11, + 175, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 882, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e5cd47dad6c6093a9acea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11294790636104621451" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3065da09863639" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a35a9bd472276c2692" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f90654dcd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1954275799385944831" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14214851854486868764" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15637389879420197820" + } + }, + { + "_tag": "ByteArray", + "bytearray": "47d943db119c47a19765c9" + }, + { + "_tag": "ByteArray", + "bytearray": "9e30073d57c4" + } + ] + } + ] + }, + "cborHex": "9fbf4b2e5cd47dad6c6093a9acea1b9cbf283dbd6c9d8b473065da0986363949a35a9bd472276c2692459f90654dcd1b1b1efb7c3f8ab2ffff9f1bc5454c72b97e131c1bd9032b3eb1211bbc4b47d943db119c47a19765c9469e30073d57c4ffff", + "cborBytes": [ + 159, 191, 75, 46, 92, 212, 125, 173, 108, 96, 147, 169, 172, 234, 27, 156, 191, 40, 61, 189, 108, 157, 139, 71, + 48, 101, 218, 9, 134, 54, 57, 73, 163, 90, 155, 212, 114, 39, 108, 38, 146, 69, 159, 144, 101, 77, 205, 27, 27, + 30, 251, 124, 63, 138, 178, 255, 255, 159, 27, 197, 69, 76, 114, 185, 126, 19, 28, 27, 217, 3, 43, 62, 177, 33, + 27, 188, 75, 71, 217, 67, 219, 17, 156, 71, 161, 151, 101, 201, 70, 158, 48, 7, 61, 87, 196, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 883, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15921430110158115856" + } + } + ] + }, + "cborHex": "9f1bdcf44854702ed410ff", + "cborBytes": [159, 27, 220, 244, 72, 84, 112, 46, 212, 16, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 884, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12878194451662808592" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fffb1ebf1443f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcc72f826f9beb9d05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e00579" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2762" + } + } + ] + } + ] + }, + "cborHex": "9fbf1bb2b8899f47c4a610476fffb1ebf1443f49dcc72f826f9beb9d051bffffffffffffffef43e00579422762ffff", + "cborBytes": [ + 159, 191, 27, 178, 184, 137, 159, 71, 196, 166, 16, 71, 111, 255, 177, 235, 241, 68, 63, 73, 220, 199, 47, 130, + 111, 155, 235, 157, 5, 27, 255, 255, 255, 255, 255, 255, 255, 239, 67, 224, 5, 121, 66, 39, 98, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 885, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8484519115543582419" + } + } + ] + }, + "cborHex": "9f1b75bf112ec3fc96d3ff", + "cborBytes": [159, 27, 117, 191, 17, 46, 195, 252, 150, 211, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 886, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fe04fefbfefba6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3120067190140354342" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13617751459470603860" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4185328674465481601" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9be31d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1505946750203014157" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ecbce4d1d0036e" + } + ] + } + ] + }, + "cborHex": "9f47fe04fefbfefba6d8669f1b2b4cb4941faabf269f1bbcfbf8cd6d4d76549f1b3a1546412dc58381439be31dff1b14e6329728812c0d47ecbce4d1d0036effffff", + "cborBytes": [ + 159, 71, 254, 4, 254, 251, 254, 251, 166, 216, 102, 159, 27, 43, 76, 180, 148, 31, 170, 191, 38, 159, 27, 188, + 251, 248, 205, 109, 77, 118, 84, 159, 27, 58, 21, 70, 65, 45, 197, 131, 129, 67, 155, 227, 29, 255, 27, 20, 230, + 50, 151, 40, 129, 44, 13, 71, 236, 188, 228, 209, 208, 3, 110, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 887, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4dcd180d89cf99f0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c736fc" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14050002009324063947" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7610280846998544203" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2145286852932683973" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fd" + } + ] + }, + "cborHex": "9f484dcd180d89cf99f09f43c736fcff1bc2fba2632b490ccbd8669f1b699d261bfe4e9f4b9f1b1dc59706ca5e48c5ffff41fdff", + "cborBytes": [ + 159, 72, 77, 205, 24, 13, 137, 207, 153, 240, 159, 67, 199, 54, 252, 255, 27, 194, 251, 162, 99, 43, 73, 12, 203, + 216, 102, 159, 27, 105, 157, 38, 27, 254, 78, 159, 75, 159, 27, 29, 197, 151, 6, 202, 94, 72, 197, 255, 255, 65, + 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 888, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3e205d9a89c00f0f05860b" + }, + { + "_tag": "ByteArray", + "bytearray": "7465d81abe03" + }, + { + "_tag": "ByteArray", + "bytearray": "c6db15" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3687193792564349737" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14792180378881021210" + } + }, + { + "_tag": "ByteArray", + "bytearray": "936fb38701" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fa060004" + } + ] + }, + "cborHex": "9f9f9f4b3e205d9a89c00f0f05860b467465d81abe0343c6db15ffd8669f1b332b8b37ffd2cb2980ff1bcd4861aea8b4d51a45936fb38701ff44fa060004ff", + "cborBytes": [ + 159, 159, 159, 75, 62, 32, 93, 154, 137, 192, 15, 15, 5, 134, 11, 70, 116, 101, 216, 26, 190, 3, 67, 198, 219, 21, + 255, 216, 102, 159, 27, 51, 43, 139, 55, 255, 210, 203, 41, 128, 255, 27, 205, 72, 97, 174, 168, 180, 213, 26, 69, + 147, 111, 179, 135, 1, 255, 68, 250, 6, 0, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 889, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "326142449493539575" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3075972695924299819" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1bfffffffffffffff3d905029fa01b0486b0d4703cfaf7ff1b2ab00cdea75e582b80ff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 217, 5, 2, 159, 160, 27, 4, 134, 176, 212, 112, 60, 250, 247, + 255, 27, 42, 176, 12, 222, 167, 94, 88, 43, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 890, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "75033d66a4f9ea0793d7" + }, + { + "_tag": "ByteArray", + "bytearray": "2a2409" + } + ] + }, + "cborHex": "9f4a75033d66a4f9ea0793d7432a2409ff", + "cborBytes": [159, 74, 117, 3, 61, 102, 164, 249, 234, 7, 147, 215, 67, 42, 36, 9, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 891, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4425942812424877127" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17067549905386771515" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5557666585607405945" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a460929e73024d4a88e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14106397651419285326" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9a0" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "47728005253948196" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58add1cc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8806728997025702129" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ab9e9c21cc0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07d2c12e2806" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ef879e6da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "671d2b14bba1b862f5a2" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a41810" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1675044428975514942" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4348817850498314344" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b8d75ee16" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20e2622bfb30" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8812601610301109835" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12243081145760352880" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13944814128696877364" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8669f1b3d6c1b89cac734479f1becdc1e3610d4943bbf1b4d20cc50573001794a2a460929e73024d4a88e1bc3c3fdecd140474e42b9a0ffbf1b00a9905e2effe3244458add1cc1b7a37c95cdcd960f141b2463ab9e9c21cc04607d2c12e2806453ef879e6da4a671d2b14bba1b862f5a2ff9f43a418101b173ef4088c15253effbf1b3c5a1acb43d47068453b8d75ee164620e2622bfb301b7a4ca6793108764bffffffd8669f1ba9e8296f79540a7080ff1bc185ee9137d36134a0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 61, 108, 27, 137, 202, 199, 52, 71, 159, 27, 236, 220, 30, 54, 16, 212, 148, 59, 191, 27, + 77, 32, 204, 80, 87, 48, 1, 121, 74, 42, 70, 9, 41, 231, 48, 36, 212, 168, 142, 27, 195, 195, 253, 236, 209, 64, + 71, 78, 66, 185, 160, 255, 191, 27, 0, 169, 144, 94, 46, 255, 227, 36, 68, 88, 173, 209, 204, 27, 122, 55, 201, + 92, 220, 217, 96, 241, 65, 178, 70, 58, 185, 233, 194, 28, 192, 70, 7, 210, 193, 46, 40, 6, 69, 62, 248, 121, 230, + 218, 74, 103, 29, 43, 20, 187, 161, 184, 98, 245, 162, 255, 159, 67, 164, 24, 16, 27, 23, 62, 244, 8, 140, 21, 37, + 62, 255, 191, 27, 60, 90, 26, 203, 67, 212, 112, 104, 69, 59, 141, 117, 238, 22, 70, 32, 226, 98, 43, 251, 48, 27, + 122, 76, 166, 121, 49, 8, 118, 75, 255, 255, 255, 216, 102, 159, 27, 169, 232, 41, 111, 121, 84, 10, 112, 128, + 255, 27, 193, 133, 238, 145, 55, 211, 97, 52, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 892, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16674749618188459127" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10461002996017442174" + } + }, + { + "_tag": "ByteArray", + "bytearray": "daa120f1b5d1385c" + }, + { + "_tag": "ByteArray", + "bytearray": "9fa1129aaaf7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10672782557958288795" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11448224592431855001" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13023411708721698385" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "462426144131618915" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18167569682191392782" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1be7689c6e5eb41c779f1b912cf2ccd3eaad7e48daa120f1b5d1385c469fa1129aaaf7bf1b941d57308c16b59b1b9ee0439c8ccab5991bb4bc73f2b60516514138ff1b066ade20c7d19863ffff9f1bfc202c5ebb2ca00effff", + "cborBytes": [ + 159, 216, 102, 159, 27, 231, 104, 156, 110, 94, 180, 28, 119, 159, 27, 145, 44, 242, 204, 211, 234, 173, 126, 72, + 218, 161, 32, 241, 181, 209, 56, 92, 70, 159, 161, 18, 154, 170, 247, 191, 27, 148, 29, 87, 48, 140, 22, 181, 155, + 27, 158, 224, 67, 156, 140, 202, 181, 153, 27, 180, 188, 115, 242, 182, 5, 22, 81, 65, 56, 255, 27, 6, 106, 222, + 32, 199, 209, 152, 99, 255, 255, 159, 27, 252, 32, 44, 94, 187, 44, 160, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 893, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a9668e4b60f43de46" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3650515792840015150" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "438774997762497039" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7403451389127428015" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9383189814725844381" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9089999364231567296" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16217016580979361667" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9662074151498382826" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75cbeb013355180360d715c5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9817256994625546750" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17431599875346746961" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11084897077130065368" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11951290518638468057" + } + } + } + ] + } + ] + }, + "cborHex": "9f499a9668e4b60f43de46bf1b32a93cc5b72ebd2e1b0616d78925f4da0f1b66be57d030d007af1b8237c96c16cc1d9d1b7e262a42c98c97c01be10e6aa8b1e507831b8616953fb98b7dea4c75cbeb013355180360d715c51b883de738f95fe9fe1bf1e97bbae4c94e511b99d577294e1a75d81ba5db8367f2f09bd9ffff", + "cborBytes": [ + 159, 73, 154, 150, 104, 228, 182, 15, 67, 222, 70, 191, 27, 50, 169, 60, 197, 183, 46, 189, 46, 27, 6, 22, 215, + 137, 37, 244, 218, 15, 27, 102, 190, 87, 208, 48, 208, 7, 175, 27, 130, 55, 201, 108, 22, 204, 29, 157, 27, 126, + 38, 42, 66, 201, 140, 151, 192, 27, 225, 14, 106, 168, 177, 229, 7, 131, 27, 134, 22, 149, 63, 185, 139, 125, 234, + 76, 117, 203, 235, 1, 51, 85, 24, 3, 96, 215, 21, 197, 27, 136, 61, 231, 56, 249, 95, 233, 254, 27, 241, 233, 123, + 186, 228, 201, 78, 81, 27, 153, 213, 119, 41, 78, 26, 117, 216, 27, 165, 219, 131, 103, 242, 240, 155, 217, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 894, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "082b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16699079926963550066" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f482bfdcf0d59c30f2627a3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "040258cc03f85e02079706" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd03a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4ff0b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3973028578091610812" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f3e2f28c20f61df3077afb1b" + } + ] + }, + "cborHex": "9f9fbf42082b1be7bf0cb7d284b7724c6f482bfdcf0d59c30f2627a34b040258cc03f85e020797064280e943fd03a243c4ff0b1b3723087117a032bcffff4cf3e2f28c20f61df3077afb1bff", + "cborBytes": [ + 159, 159, 191, 66, 8, 43, 27, 231, 191, 12, 183, 210, 132, 183, 114, 76, 111, 72, 43, 253, 207, 13, 89, 195, 15, + 38, 39, 163, 75, 4, 2, 88, 204, 3, 248, 94, 2, 7, 151, 6, 66, 128, 233, 67, 253, 3, 162, 67, 196, 255, 11, 27, 55, + 35, 8, 113, 23, 160, 50, 188, 255, 255, 76, 243, 226, 242, 140, 32, 246, 29, 243, 7, 122, 251, 27, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 895, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ecf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4483328517786543143" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "837909241041ce513aad51" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31f1a0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7a9feed98f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11357481877087283547" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9582404931581778905" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "25d8" + }, + { + "_tag": "ByteArray", + "bytearray": "f141f943c9" + }, + { + "_tag": "ByteArray", + "bytearray": "e67d75cf57ab87544b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16217617953346031341" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2691701213343304429" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9773911665785283045" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5244728165518795352" + } + }, + { + "_tag": "ByteArray", + "bytearray": "634a433e8e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "292e7c15" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a9f3486055c7255f80536d" + } + ] + }, + "cborHex": "9fbf423ecf1b3e37fb88820ba4274b837909241041ce513aad514331f1a046d7a9feed98f51b9d9de197bab9695bffd8669f1b84fb8a83f8e21bd99f9f4225d845f141f943c949e67d75cf57ab87544b1be1108d9a9c300eedff9f1b255ad7fe06d0caed1b87a3e8e0292da1e51b48c9047a913be25845634a433e8eff9f44292e7c15ff80ffff4ba9f3486055c7255f80536dff", + "cborBytes": [ + 159, 191, 66, 62, 207, 27, 62, 55, 251, 136, 130, 11, 164, 39, 75, 131, 121, 9, 36, 16, 65, 206, 81, 58, 173, 81, + 67, 49, 241, 160, 70, 215, 169, 254, 237, 152, 245, 27, 157, 157, 225, 151, 186, 185, 105, 91, 255, 216, 102, 159, + 27, 132, 251, 138, 131, 248, 226, 27, 217, 159, 159, 66, 37, 216, 69, 241, 65, 249, 67, 201, 73, 230, 125, 117, + 207, 87, 171, 135, 84, 75, 27, 225, 16, 141, 154, 156, 48, 14, 237, 255, 159, 27, 37, 90, 215, 254, 6, 208, 202, + 237, 27, 135, 163, 232, 224, 41, 45, 161, 229, 27, 72, 201, 4, 122, 145, 59, 226, 88, 69, 99, 74, 67, 62, 142, + 255, 159, 68, 41, 46, 124, 21, 255, 128, 255, 255, 75, 169, 243, 72, 96, 85, 199, 37, 95, 128, 83, 109, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 896, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3073900917551680995" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ad71ad50ac5e7fd43b3c606" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "298b1501" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b8322ecc67f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3" + } + } + ] + } + ] + }, + "cborHex": "9fd87e9f1b2aa8b099296a4de3ffbf413a4c1ad71ad50ac5e7fd43b3c6064249a244298b1501ffbf461b8322ecc67f41c3ffff", + "cborBytes": [ + 159, 216, 126, 159, 27, 42, 168, 176, 153, 41, 106, 77, 227, 255, 191, 65, 58, 76, 26, 215, 26, 213, 10, 197, 231, + 253, 67, 179, 198, 6, 66, 73, 162, 68, 41, 139, 21, 1, 255, 191, 70, 27, 131, 34, 236, 198, 127, 65, 195, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 897, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1503237228879744098" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fe2a46" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1292081954299758662" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "167439999827067927" + } + }, + { + "_tag": "ByteArray", + "bytearray": "215239705b09f3" + }, + { + "_tag": "ByteArray", + "bytearray": "5a4e5fb2e6fc1eff9c" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14674938631724649549" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02993f5d14feff" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05230221" + } + ] + }, + "cborHex": "9f1b14dc924b90850c629f9f43fe2a461b11ee65b112bac8461b0252ddcaeee2441747215239705b09f3495a4e5fb2e6fc1eff9cffff9f9f1bcba7daef349acc4d011bfffffffffffffff34702993f5d14feffffff044405230221ff", + "cborBytes": [ + 159, 27, 20, 220, 146, 75, 144, 133, 12, 98, 159, 159, 67, 254, 42, 70, 27, 17, 238, 101, 177, 18, 186, 200, 70, + 27, 2, 82, 221, 202, 238, 226, 68, 23, 71, 33, 82, 57, 112, 91, 9, 243, 73, 90, 78, 95, 178, 230, 252, 30, 255, + 156, 255, 255, 159, 159, 27, 203, 167, 218, 239, 52, 154, 204, 77, 1, 27, 255, 255, 255, 255, 255, 255, 255, 243, + 71, 2, 153, 63, 93, 20, 254, 255, 255, 255, 4, 68, 5, 35, 2, 33, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 898, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5912387071461617328" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5660255481607811370" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12592658873059891584" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14408083005761670727" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13363381119772421953" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2113385982771120890" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14517029596803257400" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea1dd9cf28339d8fb7" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e02168fdea81" + } + ] + }, + "cborHex": "9fbf1b520d04b76114eeb01b4e8d445f0730f12a1baec21c86ba67d9801bc7f3cb280cc44e471bb974445382326f411b1d54415aa85ccafa1bc976d980f74a543849ea1dd9cf28339d8fb7ff46e02168fdea81ff", + "cborBytes": [ + 159, 191, 27, 82, 13, 4, 183, 97, 20, 238, 176, 27, 78, 141, 68, 95, 7, 48, 241, 42, 27, 174, 194, 28, 134, 186, + 103, 217, 128, 27, 199, 243, 203, 40, 12, 196, 78, 71, 27, 185, 116, 68, 83, 130, 50, 111, 65, 27, 29, 84, 65, 90, + 168, 92, 202, 250, 27, 201, 118, 217, 128, 247, 74, 84, 56, 73, 234, 29, 217, 207, 40, 51, 157, 143, 183, 255, 70, + 224, 33, 104, 253, 234, 129, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 899, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16402802877109975860" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10049467629151655871" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8129083934927215450" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2780756294393689476" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "09e58c635df2" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10050699770789986218" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8494907884485077338" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1be3a2764f9ae53b349fd8669f1b8b76e190795f17bf9f1b70d04ec4e2abdb5affffd8669f1b26973b1dde4475849f4609e58c635df2ffff1b8b7b4230ce097faad8669f1b75e3f9b68665e95a80ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 227, 162, 118, 79, 154, 229, 59, 52, 159, 216, 102, 159, 27, 139, 118, 225, 144, 121, 95, + 23, 191, 159, 27, 112, 208, 78, 196, 226, 171, 219, 90, 255, 255, 216, 102, 159, 27, 38, 151, 59, 29, 222, 68, + 117, 132, 159, 70, 9, 229, 140, 99, 93, 242, 255, 255, 27, 139, 123, 66, 48, 206, 9, 127, 170, 216, 102, 159, 27, + 117, 227, 249, 182, 134, 101, 233, 90, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 900, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7615720595353836494" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8482a19061e1a1ae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11535564930322435372" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5749910525615423684" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12871661090612676260" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c9cae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18297601122223569886" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cf3" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5b06a65088135ee3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "185059542269272116" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1905414289601038423" + } + }, + { + "_tag": "ByteArray", + "bytearray": "082920c5f68bfdff96675f7e" + }, + { + "_tag": "ByteArray", + "bytearray": "830ff5336723b192" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11041263309693507443" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cc20c9" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2080736956522139117" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "615709635614168935" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5133526521581570757" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0f6110" + } + ] + }, + "cborHex": "9f9fbf1b69b079881ab11bce488482a19061e1a1ae1ba0168f2fa3528d2c1b4fcbc928a19640c41bb2a153909f2f86a4437c9cae1bfdee23469becbbde429cf3ff9f485b06a65088135ee31b029176ac5741a0341b1a716433799f88574c082920c5f68bfdff96675f7e48830ff5336723b192ffd8669f1b993a727b25d5d7739f43cc20c9ffff1b1ce0433cdc878ded1b088b70a6c3915767ff1b473df32c3bea8ac5430f6110ff", + "cborBytes": [ + 159, 159, 191, 27, 105, 176, 121, 136, 26, 177, 27, 206, 72, 132, 130, 161, 144, 97, 225, 161, 174, 27, 160, 22, + 143, 47, 163, 82, 141, 44, 27, 79, 203, 201, 40, 161, 150, 64, 196, 27, 178, 161, 83, 144, 159, 47, 134, 164, 67, + 124, 156, 174, 27, 253, 238, 35, 70, 155, 236, 187, 222, 66, 156, 243, 255, 159, 72, 91, 6, 166, 80, 136, 19, 94, + 227, 27, 2, 145, 118, 172, 87, 65, 160, 52, 27, 26, 113, 100, 51, 121, 159, 136, 87, 76, 8, 41, 32, 197, 246, 139, + 253, 255, 150, 103, 95, 126, 72, 131, 15, 245, 51, 103, 35, 177, 146, 255, 216, 102, 159, 27, 153, 58, 114, 123, + 37, 213, 215, 115, 159, 67, 204, 32, 201, 255, 255, 27, 28, 224, 67, 60, 220, 135, 141, 237, 27, 8, 139, 112, 166, + 195, 145, 87, 103, 255, 27, 71, 61, 243, 44, 59, 234, 138, 197, 67, 15, 97, 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 901, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10781220985294097960" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10915099022101739305" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3454964868222008489" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e567f37c6a36a2fe" + }, + { + "_tag": "ByteArray", + "bytearray": "94bf51571a17044a2cde75" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4759982034421557516" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ec7ac593e4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7277959658964552078" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7502070566618540110" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6f9e99453a4a9d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9714153053378686957" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "317305266612487300" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2156ba26dd23" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d514afac427ba705" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d39cc412e080be177" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5801484758708950757" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d1da025" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1df78f242f0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "569f28f2d8e772" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0637bf9aad82c692633dd760" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ac98d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42c353e5afde9cc31232" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1a7c7e2cb635f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15855510890792021866" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b959e975d61710e289f9f1b977a38badc967729ffd8669f1b2ff2803e11d3bca99f48e567f37c6a36a2fe4b94bf51571a17044a2cde751b420eda70daf0290c45ec7ac593e41b650081bfe234898effffd8669f1b681cb56ec336284e9f476f9e99453a4a9d1b86cf9abbf869afed1b04674b7575cc4484462156ba26dd23ffffffff48d514afac427ba705bf490d39cc412e080be1771b508303a684b096e5443d1da02546f1df78f242f047569f28f2d8e7724c0637bf9aad82c692633dd760436ac98d4a42c353e5afde9cc3123247a1a7c7e2cb635f1bdc0a172629feef6affff", + "cborBytes": [ + 159, 216, 102, 159, 27, 149, 158, 151, 93, 97, 113, 14, 40, 159, 159, 27, 151, 122, 56, 186, 220, 150, 119, 41, + 255, 216, 102, 159, 27, 47, 242, 128, 62, 17, 211, 188, 169, 159, 72, 229, 103, 243, 124, 106, 54, 162, 254, 75, + 148, 191, 81, 87, 26, 23, 4, 74, 44, 222, 117, 27, 66, 14, 218, 112, 218, 240, 41, 12, 69, 236, 122, 197, 147, + 228, 27, 101, 0, 129, 191, 226, 52, 137, 142, 255, 255, 216, 102, 159, 27, 104, 28, 181, 110, 195, 54, 40, 78, + 159, 71, 111, 158, 153, 69, 58, 74, 157, 27, 134, 207, 154, 187, 248, 105, 175, 237, 27, 4, 103, 75, 117, 117, + 204, 68, 132, 70, 33, 86, 186, 38, 221, 35, 255, 255, 255, 255, 72, 213, 20, 175, 172, 66, 123, 167, 5, 191, 73, + 13, 57, 204, 65, 46, 8, 11, 225, 119, 27, 80, 131, 3, 166, 132, 176, 150, 229, 68, 61, 29, 160, 37, 70, 241, 223, + 120, 242, 66, 240, 71, 86, 159, 40, 242, 216, 231, 114, 76, 6, 55, 191, 154, 173, 130, 198, 146, 99, 61, 215, 96, + 67, 106, 201, 141, 74, 66, 195, 83, 229, 175, 222, 156, 195, 18, 50, 71, 161, 167, 199, 226, 203, 99, 95, 27, 220, + 10, 23, 38, 41, 254, 239, 106, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 902, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "664aab" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8186692194391466813" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07ff0336166d4b382d051e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57823f2789" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a1bf1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0eb551d39c48082d8aaf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2498062be7f7388d752f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4308958567113110668" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ec2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc6784d6f4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "518a47729b76797729ee4ea9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2753290a4a2b34" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aefd300deab1b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "926699024489288690" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f43664aabff1b719cf92d042aa33dbf4b07ff0336166d4b382d051e4557823f2789431a1bf14a0eb551d39c48082d8aaf4a2498062be7f7388d752f1b3bcc7efca8a7348c423ec245bc6784d6f44c518a47729b76797729ee4ea9472753290a4a2b3447aefd300deab1b11b0cdc4bda586293f2ffff", + "cborBytes": [ + 159, 159, 67, 102, 74, 171, 255, 27, 113, 156, 249, 45, 4, 42, 163, 61, 191, 75, 7, 255, 3, 54, 22, 109, 75, 56, + 45, 5, 30, 69, 87, 130, 63, 39, 137, 67, 26, 27, 241, 74, 14, 181, 81, 211, 156, 72, 8, 45, 138, 175, 74, 36, 152, + 6, 43, 231, 247, 56, 141, 117, 47, 27, 59, 204, 126, 252, 168, 167, 52, 140, 66, 62, 194, 69, 188, 103, 132, 214, + 244, 76, 81, 138, 71, 114, 155, 118, 121, 119, 41, 238, 78, 169, 71, 39, 83, 41, 10, 74, 43, 52, 71, 174, 253, 48, + 13, 234, 177, 177, 27, 12, 220, 75, 218, 88, 98, 147, 242, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 903, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7848479740071651475" + } + } + ] + }, + "cborHex": "9f1b6ceb66bd95d22893ff", + "cborBytes": [159, 27, 108, 235, 102, 189, 149, 210, 40, 147, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 904, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4460241853471707552" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8114540413641755523" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10096309529251204091" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27baf18bb49f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18355591255822321722" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87bda00a0fcbe9f3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05fe99763b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11154396676832894849" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10721185212077754407" + } + }, + { + "_tag": "ByteArray", + "bytearray": "149f6c6586a52b81" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9439054182330122975" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2194a34e93" + }, + { + "_tag": "ByteArray", + "bytearray": "c793b11eb7e4b7" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18371386202802935234" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4154768707699326138" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11540326726437518754" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17733851696429657664" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64818bc12d246a74cdb0" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fafdfbf9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18242114673082161086" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16629579258307456330" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a7255" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2904199700138915616" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40bd4b9fa8d62610ece8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "995754890c711ba9b321" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "513fd0524640d0" + } + } + ] + } + ] + }, + "cborHex": "9f1bfffffffffffffffebf1b3de5f6559882d1a041d91b709ca38376ab0b83081b8c1d4c063968cbfb4627baf18bb49f1bfebc28febd8e483a4887bda00a0fcbe9f31bfffffffffffffff51bfffffffffffffff5ffd87d9f9f4505fe99763b1b9acc60add66c1f81ffd9050b9f1b94c94d25a910c82748149f6c6586a52b811b82fe41c4c173c2df452194a34e9347c793b11eb7e4b7ff9f1bfef4466a6994d5c21b39a8b4207253bcba1ba0277a03b1413da21bf61b4c28f125ee404a64818bc12d246a74cdb0ff9f1bfffffffffffffff7ffff44fafdfbf9bf1bfd2902a4f100d7be1be6c8223a679ead4a431a72551b284dca3d7b9377204a40bd4b9fa8d62610ece84a995754890c711ba9b321414547513fd0524640d0ffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 191, 27, 61, 229, 246, 85, 152, 130, 209, 160, 65, 217, 27, 112, + 156, 163, 131, 118, 171, 11, 131, 8, 27, 140, 29, 76, 6, 57, 104, 203, 251, 70, 39, 186, 241, 139, 180, 159, 27, + 254, 188, 40, 254, 189, 142, 72, 58, 72, 135, 189, 160, 10, 15, 203, 233, 243, 27, 255, 255, 255, 255, 255, 255, + 255, 245, 27, 255, 255, 255, 255, 255, 255, 255, 245, 255, 216, 125, 159, 159, 69, 5, 254, 153, 118, 59, 27, 154, + 204, 96, 173, 214, 108, 31, 129, 255, 217, 5, 11, 159, 27, 148, 201, 77, 37, 169, 16, 200, 39, 72, 20, 159, 108, + 101, 134, 165, 43, 129, 27, 130, 254, 65, 196, 193, 115, 194, 223, 69, 33, 148, 163, 78, 147, 71, 199, 147, 177, + 30, 183, 228, 183, 255, 159, 27, 254, 244, 70, 106, 105, 148, 213, 194, 27, 57, 168, 180, 32, 114, 83, 188, 186, + 27, 160, 39, 122, 3, 177, 65, 61, 162, 27, 246, 27, 76, 40, 241, 37, 238, 64, 74, 100, 129, 139, 193, 45, 36, 106, + 116, 205, 176, 255, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 255, 255, 68, 250, 253, 251, 249, 191, 27, + 253, 41, 2, 164, 241, 0, 215, 190, 27, 230, 200, 34, 58, 103, 158, 173, 74, 67, 26, 114, 85, 27, 40, 77, 202, 61, + 123, 147, 119, 32, 74, 64, 189, 75, 159, 168, 214, 38, 16, 236, 232, 74, 153, 87, 84, 137, 12, 113, 27, 169, 179, + 33, 65, 69, 71, 81, 63, 208, 82, 70, 64, 208, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 905, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10725225199127155911" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b94d7a77e720ad4c7051bfffffffffffffff31bfffffffffffffff8ffff", + "cborBytes": [ + 159, 191, 27, 148, 215, 167, 126, 114, 10, 212, 199, 5, 27, 255, 255, 255, 255, 255, 255, 255, 243, 27, 255, 255, + 255, 255, 255, 255, 255, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 906, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ca345585859f0d55116d" + }, + { + "_tag": "ByteArray", + "bytearray": "c06b1ee8011c2245" + }, + { + "_tag": "ByteArray", + "bytearray": "f119eb887813da" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8154733367767244159" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2a627b25863d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1058561145731853216" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12739150517225255940" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b535305395f8cee1" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "89" + }, + { + "_tag": "ByteArray", + "bytearray": "8fc98f9dc2d9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8879405905323076413" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21dfbdb47c8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6794881588841050755" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a708f4d9de2d4ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17281254733698653663" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6b379357a348" + }, + { + "_tag": "ByteArray", + "bytearray": "cbfbf04b0a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8677213485513034191" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8830186742114420499" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10300538915435982101" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b5c3a2a5" + }, + { + "_tag": "ByteArray", + "bytearray": "09a1f907563509" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3959517625747991618" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "009328fbfd8181" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8908526330301651194" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "68e8ce6f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8838948721592433121" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8668e670cb05f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4081352354955164807" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14825698308279398696" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9894265928727114005" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "19301c1995f0ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15498357194980464973" + } + }, + { + "_tag": "ByteArray", + "bytearray": "15ac" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f4aca345585859f0d55116d48c06b1ee8011c224547f119eb887813dad8669f1b712b6ecad7ca9d7f9f462a627b25863d1b0eb0c3c0e860aba0ffffd8669f1bb0ca8de68771f4049f48b535305395f8cee1ffffff9f4189468fc98f9dc2d91b7b39fca03349ab3dffbf4621dfbdb47c8a1b5e4c44cde1b67283485a708f4d9de2d4ae1befd3599ecb255ddfff9f9f466b379357a34845cbfbf04b0a1b786ba7b0f43bc9cfff1b7a8b200ec01807139f1b8ef2dd91a9a62d1544b5c3a2a54709a1f907563509ffbf1b36f3084d5c9b6c4247009328fbfd8181ff1b7ba1717f7dd818faff9f9f4468e8ce6f1b7aaa41081268f9e147c8668e670cb05f1b38a3e057c84e7c87ff9f1bcdbf760fbc1a7128ffd8669f1b894f7e70ab07b1159f4719301c1995f0ed1bd71539c148ee194d4215acffffffff", + "cborBytes": [ + 159, 159, 74, 202, 52, 85, 133, 133, 159, 13, 85, 17, 109, 72, 192, 107, 30, 232, 1, 28, 34, 69, 71, 241, 25, 235, + 136, 120, 19, 218, 216, 102, 159, 27, 113, 43, 110, 202, 215, 202, 157, 127, 159, 70, 42, 98, 123, 37, 134, 61, + 27, 14, 176, 195, 192, 232, 96, 171, 160, 255, 255, 216, 102, 159, 27, 176, 202, 141, 230, 135, 113, 244, 4, 159, + 72, 181, 53, 48, 83, 149, 248, 206, 225, 255, 255, 255, 159, 65, 137, 70, 143, 201, 143, 157, 194, 217, 27, 123, + 57, 252, 160, 51, 73, 171, 61, 255, 191, 70, 33, 223, 189, 180, 124, 138, 27, 94, 76, 68, 205, 225, 182, 114, 131, + 72, 90, 112, 143, 77, 157, 226, 212, 174, 27, 239, 211, 89, 158, 203, 37, 93, 223, 255, 159, 159, 70, 107, 55, + 147, 87, 163, 72, 69, 203, 251, 240, 75, 10, 27, 120, 107, 167, 176, 244, 59, 201, 207, 255, 27, 122, 139, 32, 14, + 192, 24, 7, 19, 159, 27, 142, 242, 221, 145, 169, 166, 45, 21, 68, 181, 195, 162, 165, 71, 9, 161, 249, 7, 86, 53, + 9, 255, 191, 27, 54, 243, 8, 77, 92, 155, 108, 66, 71, 0, 147, 40, 251, 253, 129, 129, 255, 27, 123, 161, 113, + 127, 125, 216, 24, 250, 255, 159, 159, 68, 104, 232, 206, 111, 27, 122, 170, 65, 8, 18, 104, 249, 225, 71, 200, + 102, 142, 103, 12, 176, 95, 27, 56, 163, 224, 87, 200, 78, 124, 135, 255, 159, 27, 205, 191, 118, 15, 188, 26, + 113, 40, 255, 216, 102, 159, 27, 137, 79, 126, 112, 171, 7, 177, 21, 159, 71, 25, 48, 28, 25, 149, 240, 237, 27, + 215, 21, 57, 193, 72, 238, 25, 77, 66, 21, 172, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 907, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fd86ff8a" + } + ] + }, + "cborHex": "9f44fd86ff8aff", + "cborBytes": [159, 68, 253, 134, 255, 138, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 908, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "badd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13375129770607935918" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f76da44914161dfb3c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3465a1abb1b6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42abdd26c41a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57f2d0f524" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49d46e3672d33091596a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92dec58b3baa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bc2b10f5c0f0efdd5bc7448" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11822332313428416363" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2896b7b5e59d56d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11976846286433235714" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01f4685dbd5d182b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1f1319418" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5526" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16720651152991742587" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b46a1d1e26623bf7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "294809618840405105" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9410708033744733409" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b831" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5836363153150471884" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d0c8e277fc3e8240f9b7" + }, + { + "_tag": "ByteArray", + "bytearray": "42d1bcf5efc028ed9eceb2" + }, + { + "_tag": "ByteArray", + "bytearray": "a7e55d8500f82c" + } + ] + }, + "cborHex": "9f9f42badd1bb99e01a971d681aebf4a3f76da44914161dfb3c2463465a1abb1b64642abdd26c41a4557f2d0f5244a49d46e3672d33091596a4692dec58b3baa4c7bc2b10f5c0f0efdd5bc74481ba4115c9a0685d76b48c2896b7b5e59d56d1ba6364e3dd04f3302ffbf4801f4685dbd5d182b45d1f13194184255261be80bafa2434c6a7b48b46a1d1e26623bf71b04175fc94f59c47141b91b82998d18bc4504e141d942b831ffffd8669f1b50feed5d8bb66ecc80ff4ad0c8e277fc3e8240f9b74b42d1bcf5efc028ed9eceb247a7e55d8500f82cff", + "cborBytes": [ + 159, 159, 66, 186, 221, 27, 185, 158, 1, 169, 113, 214, 129, 174, 191, 74, 63, 118, 218, 68, 145, 65, 97, 223, + 179, 194, 70, 52, 101, 161, 171, 177, 182, 70, 66, 171, 221, 38, 196, 26, 69, 87, 242, 208, 245, 36, 74, 73, 212, + 110, 54, 114, 211, 48, 145, 89, 106, 70, 146, 222, 197, 139, 59, 170, 76, 123, 194, 177, 15, 92, 15, 14, 253, 213, + 188, 116, 72, 27, 164, 17, 92, 154, 6, 133, 215, 107, 72, 194, 137, 107, 123, 94, 89, 213, 109, 27, 166, 54, 78, + 61, 208, 79, 51, 2, 255, 191, 72, 1, 244, 104, 93, 189, 93, 24, 43, 69, 209, 241, 49, 148, 24, 66, 85, 38, 27, + 232, 11, 175, 162, 67, 76, 106, 123, 72, 180, 106, 29, 30, 38, 98, 59, 247, 27, 4, 23, 95, 201, 79, 89, 196, 113, + 65, 185, 27, 130, 153, 141, 24, 188, 69, 4, 225, 65, 217, 66, 184, 49, 255, 255, 216, 102, 159, 27, 80, 254, 237, + 93, 139, 182, 110, 204, 128, 255, 74, 208, 200, 226, 119, 252, 62, 130, 64, 249, 183, 75, 66, 209, 188, 245, 239, + 192, 40, 237, 158, 206, 178, 71, 167, 229, 93, 133, 0, 248, 44, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 909, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "43d57725d5a722" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16767835811259871289" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17753551373482636383" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3477069116019393212" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4328423874799348160" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7296276166174092331" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14960314142983649795" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8799f9f4743d57725d5a7221be8b351d49e37f039ffd8669f1bf66148e96e14b45f9f1b304107f04fd142bc1b3c11a694c6bc29c01b654194840bf4ac2bffffffa09f9f1bcf9db6732ccafa03ffffa0ff", + "cborBytes": [ + 159, 216, 121, 159, 159, 71, 67, 213, 119, 37, 213, 167, 34, 27, 232, 179, 81, 212, 158, 55, 240, 57, 255, 216, + 102, 159, 27, 246, 97, 72, 233, 110, 20, 180, 95, 159, 27, 48, 65, 7, 240, 79, 209, 66, 188, 27, 60, 17, 166, 148, + 198, 188, 41, 192, 27, 101, 65, 148, 132, 11, 244, 172, 43, 255, 255, 255, 160, 159, 159, 27, 207, 157, 182, 115, + 44, 202, 250, 3, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 910, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e7f25f0" + } + ] + }, + "cborHex": "9f448e7f25f0ff", + "cborBytes": [159, 68, 142, 127, 37, 240, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 911, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b944db4a7f63e66e327ca5e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35037dd7c5108728f8f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ba5998b9c35ea3557fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2357098472686310706" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5a4141bce010e0a191f4d5" + } + ] + }, + "cborHex": "9fbf4c1b944db4a7f63e66e327ca5e4a35037dd7c5108728f8f64a5ba5998b9c35ea3557fb1b20b618928d155532ff4b5a4141bce010e0a191f4d5ff", + "cborBytes": [ + 159, 191, 76, 27, 148, 77, 180, 167, 246, 62, 102, 227, 39, 202, 94, 74, 53, 3, 125, 215, 197, 16, 135, 40, 248, + 246, 74, 91, 165, 153, 139, 156, 53, 234, 53, 87, 251, 27, 32, 182, 24, 146, 141, 21, 85, 50, 255, 75, 90, 65, 65, + 188, 224, 16, 224, 161, 145, 244, 213, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 912, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1599325413672845293" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "130eb1b33e787afd20" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6462823175352865495" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12391393481360780866" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9f067f09" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11393136589425309132" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7894178536127048481" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5547037078078679413" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10342904892510469848" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31728a49" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5729573244233204874" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1631f1fd7a397fed9f49130eb1b33e787afd20d8669f1b59b08f6fbd11d2d79f1babf712b80899ae42449f067f091b9e1c8d5d5a3375ccffffbf1b6d8dc18daf5dab211b4cfb08d542cce9751b8f8961335fbc7ed84431728a49ff1b4f838882511a448affffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 22, 49, 241, 253, 122, 57, 127, 237, 159, 73, 19, 14, 177, 179, 62, 120, 122, 253, 32, + 216, 102, 159, 27, 89, 176, 143, 111, 189, 17, 210, 215, 159, 27, 171, 247, 18, 184, 8, 153, 174, 66, 68, 159, 6, + 127, 9, 27, 158, 28, 141, 93, 90, 51, 117, 204, 255, 255, 191, 27, 109, 141, 193, 141, 175, 93, 171, 33, 27, 76, + 251, 8, 213, 66, 204, 233, 117, 27, 143, 137, 97, 51, 95, 188, 126, 216, 68, 49, 114, 138, 73, 255, 27, 79, 131, + 136, 130, 81, 26, 68, 138, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 913, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ef" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4b6b1b8d28" + }, + { + "_tag": "ByteArray", + "bytearray": "20092ce7e548b48eb21d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18362821221546490603" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "623317984702064845" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "1307b5376f9970" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17460244120650089408" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3547934142678085184" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c15b48f7162c42" + }, + { + "_tag": "ByteArray", + "bytearray": "c5ed52fee9" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11280545061144470233" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "db754a67" + }, + { + "_tag": "ByteArray", + "bytearray": "b7f3071864871532397ed3" + }, + { + "_tag": "ByteArray", + "bytearray": "64585d52acfb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15959928314705375014" + } + }, + { + "_tag": "ByteArray", + "bytearray": "58a55ac4d5a124" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e669c52d5e25b02ce8fa6c2c" + }, + { + "_tag": "ByteArray", + "bytearray": "27a4623a70891d5f3bb9679d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e7ab" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f9f41ef9f454b6b1b8d284a20092ce7e548b48eb21d1bfed5d89c50487aebffd8669f1b08a67867944768cd80ff471307b5376f9970ffd905099f9f1bf24f3f84f6f383c01b313ccb4e14ceae4047c15b48f7162c4245c5ed52fee9ffd8669f1b9c8c8bf75a4da2d99f44db754a674bb7f3071864871532397ed34664585d52acfb1bdd7d0e3e2eb66f264758a55ac4d5a124ffff9f4ce669c52d5e25b02ce8fa6c2c4c27a4623a70891d5f3bb9679dff42e7abff9fa0ffff", + "cborBytes": [ + 159, 159, 65, 239, 159, 69, 75, 107, 27, 141, 40, 74, 32, 9, 44, 231, 229, 72, 180, 142, 178, 29, 27, 254, 213, + 216, 156, 80, 72, 122, 235, 255, 216, 102, 159, 27, 8, 166, 120, 103, 148, 71, 104, 205, 128, 255, 71, 19, 7, 181, + 55, 111, 153, 112, 255, 217, 5, 9, 159, 159, 27, 242, 79, 63, 132, 246, 243, 131, 192, 27, 49, 60, 203, 78, 20, + 206, 174, 64, 71, 193, 91, 72, 247, 22, 44, 66, 69, 197, 237, 82, 254, 233, 255, 216, 102, 159, 27, 156, 140, 139, + 247, 90, 77, 162, 217, 159, 68, 219, 117, 74, 103, 75, 183, 243, 7, 24, 100, 135, 21, 50, 57, 126, 211, 70, 100, + 88, 93, 82, 172, 251, 27, 221, 125, 14, 62, 46, 182, 111, 38, 71, 88, 165, 90, 196, 213, 161, 36, 255, 255, 159, + 76, 230, 105, 197, 45, 94, 37, 176, 44, 232, 250, 108, 44, 76, 39, 164, 98, 58, 112, 137, 29, 95, 59, 185, 103, + 157, 255, 66, 231, 171, 255, 159, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 914, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8460345942496315221" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "527ba4e39d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1443722612691899046" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11605324687809329931" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17507200997934817722" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eb01412254" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8468736213804303652" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4786415780435217597" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14152909250035322006" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14022236685049166069" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10717638039395097715" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7957730499768305283" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "22b05583d3a6b4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3535057010501094051" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8438395546283234170" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10796311429080433007" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1220264810388990649" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4500581693963963055" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2149520630840688058" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12052504617721781151" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17731251330828314039" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e06afdb37bae" + } + ] + }, + "cborHex": "9fd8669f1b75692fcf536907559f9f45527ba4e39d1b140922112bb312a61ba10e6550dff23b0b1bf2f6128ced44e1ba45eb01412254ffd8669f1b7586feb7984ac5249f1b426cc3caf42a4cbd1bc4693bfa42b20c96ffff1bc298fdf8d8ce78f51b94bcb303295bdc731b6e6f89ba48fb4683ffff4722b05583d3a6b4bf1b310f0b9f1bac0aa31b751b340a7273537a1b95d4340b1ed4416f1b10ef40613b252ab9ff9fbf1b3e7547349f590aaf1b1dd4a1a006a1fdba1ba7431917c90fdb9f1bf6120f242531a5b7ffff46e06afdb37baeff", + "cborBytes": [ + 159, 216, 102, 159, 27, 117, 105, 47, 207, 83, 105, 7, 85, 159, 159, 69, 82, 123, 164, 227, 157, 27, 20, 9, 34, + 17, 43, 179, 18, 166, 27, 161, 14, 101, 80, 223, 242, 59, 11, 27, 242, 246, 18, 140, 237, 68, 225, 186, 69, 235, + 1, 65, 34, 84, 255, 216, 102, 159, 27, 117, 134, 254, 183, 152, 74, 197, 36, 159, 27, 66, 108, 195, 202, 244, 42, + 76, 189, 27, 196, 105, 59, 250, 66, 178, 12, 150, 255, 255, 27, 194, 152, 253, 248, 216, 206, 120, 245, 27, 148, + 188, 179, 3, 41, 91, 220, 115, 27, 110, 111, 137, 186, 72, 251, 70, 131, 255, 255, 71, 34, 176, 85, 131, 211, 166, + 180, 191, 27, 49, 15, 11, 159, 27, 172, 10, 163, 27, 117, 27, 52, 10, 114, 115, 83, 122, 27, 149, 212, 52, 11, 30, + 212, 65, 111, 27, 16, 239, 64, 97, 59, 37, 42, 185, 255, 159, 191, 27, 62, 117, 71, 52, 159, 89, 10, 175, 27, 29, + 212, 161, 160, 6, 161, 253, 186, 27, 167, 67, 25, 23, 201, 15, 219, 159, 27, 246, 18, 15, 36, 37, 49, 165, 183, + 255, 255, 70, 224, 106, 253, 179, 123, 174, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 915, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "85036c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3528773381547300858" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8790628796856063574" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fe04e0cc06fa390105" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5036810393902530289" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a0" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "83102f1261abc6460e" + } + ] + }, + "cborHex": "9f4385036c1b30f8b8b1bbfb17fa9f9f1b79fe9650e4ecd65649fe04e0cc06fa390105ffd8669f1b45e6585df98e3ef19f41a0ffffff4983102f1261abc6460eff", + "cborBytes": [ + 159, 67, 133, 3, 108, 27, 48, 248, 184, 177, 187, 251, 23, 250, 159, 159, 27, 121, 254, 150, 80, 228, 236, 214, + 86, 73, 254, 4, 224, 204, 6, 250, 57, 1, 5, 255, 216, 102, 159, 27, 69, 230, 88, 93, 249, 142, 62, 241, 159, 65, + 160, 255, 255, 255, 73, 131, 16, 47, 18, 97, 171, 198, 70, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 916, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "529727856160446581" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9217133046535130199" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11871095302249624997" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2658575778879579250" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "79b32cd6685287" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f95b7e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c605890833d5b2bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfaa4e9f3ed836" + } + } + ] + } + ] + }, + "cborHex": "9f1b0759f8adb61298751b7fe9d5abde3d8c571ba4be9a481965b5a51b24e52895cc932472bf4779b32cd6685287448f95b7e548c605890833d5b2bc47dfaa4e9f3ed836ffff", + "cborBytes": [ + 159, 27, 7, 89, 248, 173, 182, 18, 152, 117, 27, 127, 233, 213, 171, 222, 61, 140, 87, 27, 164, 190, 154, 72, 25, + 101, 181, 165, 27, 36, 229, 40, 149, 204, 147, 36, 114, 191, 71, 121, 179, 44, 214, 104, 82, 135, 68, 143, 149, + 183, 229, 72, 198, 5, 137, 8, 51, 213, 178, 188, 71, 223, 170, 78, 159, 62, 216, 54, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 917, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8201134679152426616" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b37a017b3c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12795331141938757955" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9898521409274239864" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "40cfeb6d0581d3" + } + ] + }, + "cborHex": "9f1b71d0488a0a047e789f45b37a017b3c9f1bb19225e18ac0c1431b895e9cc6f163db78ff417fff4740cfeb6d0581d3ff", + "cborBytes": [ + 159, 27, 113, 208, 72, 138, 10, 4, 126, 120, 159, 69, 179, 122, 1, 123, 60, 159, 27, 177, 146, 37, 225, 138, 192, + 193, 67, 27, 137, 94, 156, 198, 241, 99, 219, 120, 255, 65, 127, 255, 71, 64, 207, 235, 109, 5, 129, 211, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 918, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8662310247251804034" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13600999953913421918" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "ByteArray", + "bytearray": "51262e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04d83903" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5866000901099306189" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b640b72efa6bd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12505968570028105576" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6673022302722363333" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7356651148481966575" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15551444862522808002" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e08d64d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15037323447720528087" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12483629178615066187" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16974230017345344119" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3901" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17617937379740632917" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7766590127002239510" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "27a995" + }, + { + "_tag": "ByteArray", + "bytearray": "2569a539dd430d68980d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16048712600510966286" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1990800409867552477" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "360346533417803613" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3" + }, + { + "_tag": "ByteArray", + "bytearray": "d4" + }, + { + "_tag": "ByteArray", + "bytearray": "97" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12762080380231759182" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3678660173653899831" + } + }, + { + "_tag": "ByteArray", + "bytearray": "32" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14930976459004299574" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e6787ef243cd29" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2898ce5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45a95691c432952a46ce9dde" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3606095463122808215" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9024129436191889482" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14074559191775339328" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17814922362152697821" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3006240471c667518" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "146d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9986246691d2e" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1359709535079100696" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81551937537f8b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7245705918871575667" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7836b54665ab7f829f1bbcc075659b1d205e1bffffffffffffffeb4351262ed8799f4404d83903ffffffbf1b516838bd7a253ccd472b640b72efa6bd1bad8e2027acb99f681b5c9b566ddc068fc5ffd8669f1bfffffffffffffff19fbf1b6618133e09bcb1ef1bd7d1d4b516bed6c2ff44e08d64d81bd0af4e012a08c8d7d8669f1bad3ec298cb0d6e4b9f1beb90944477a452774239011bf47f7cb3fa844755ffffffffd8669f1bfffffffffffffff29fd8669f1b6bc87892440642169f4327a9954a2569a539dd430d68980d1bdeb87b1497caaa0effffd8669f1b1ba0be6cd0db86dd9f1b0500354350695f5d41f341d44197ffff9f1bb11c047d4ab2354e1b330d39f004047a3741321bcf357bfb54abc93647e6787ef243cd29ffbf44b2898ce54c45a95691c432952a46ce9ddeffbf1b320b6cb7c1952d9741501b7d3c25e90b5d184a1bc352e103c3fa63401bf73b518039463fdd49f3006240471c66751842146d47d9986246691d2effffffbf1b12dea89e3c19f1184781551937537f8b1b648deb24d1491c7303ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 120, 54, 181, 70, 101, 171, 127, 130, 159, 27, 188, 192, 117, 101, 155, 29, 32, 94, 27, + 255, 255, 255, 255, 255, 255, 255, 235, 67, 81, 38, 46, 216, 121, 159, 68, 4, 216, 57, 3, 255, 255, 255, 191, 27, + 81, 104, 56, 189, 122, 37, 60, 205, 71, 43, 100, 11, 114, 239, 166, 189, 27, 173, 142, 32, 39, 172, 185, 159, 104, + 27, 92, 155, 86, 109, 220, 6, 143, 197, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 191, + 27, 102, 24, 19, 62, 9, 188, 177, 239, 27, 215, 209, 212, 181, 22, 190, 214, 194, 255, 68, 224, 141, 100, 216, 27, + 208, 175, 78, 1, 42, 8, 200, 215, 216, 102, 159, 27, 173, 62, 194, 152, 203, 13, 110, 75, 159, 27, 235, 144, 148, + 68, 119, 164, 82, 119, 66, 57, 1, 27, 244, 127, 124, 179, 250, 132, 71, 85, 255, 255, 255, 255, 216, 102, 159, 27, + 255, 255, 255, 255, 255, 255, 255, 242, 159, 216, 102, 159, 27, 107, 200, 120, 146, 68, 6, 66, 22, 159, 67, 39, + 169, 149, 74, 37, 105, 165, 57, 221, 67, 13, 104, 152, 13, 27, 222, 184, 123, 20, 151, 202, 170, 14, 255, 255, + 216, 102, 159, 27, 27, 160, 190, 108, 208, 219, 134, 221, 159, 27, 5, 0, 53, 67, 80, 105, 95, 93, 65, 243, 65, + 212, 65, 151, 255, 255, 159, 27, 177, 28, 4, 125, 74, 178, 53, 78, 27, 51, 13, 57, 240, 4, 4, 122, 55, 65, 50, 27, + 207, 53, 123, 251, 84, 171, 201, 54, 71, 230, 120, 126, 242, 67, 205, 41, 255, 191, 68, 178, 137, 140, 229, 76, + 69, 169, 86, 145, 196, 50, 149, 42, 70, 206, 157, 222, 255, 191, 27, 50, 11, 108, 183, 193, 149, 45, 151, 65, 80, + 27, 125, 60, 37, 233, 11, 93, 24, 74, 27, 195, 82, 225, 3, 195, 250, 99, 64, 27, 247, 59, 81, 128, 57, 70, 63, + 221, 73, 243, 0, 98, 64, 71, 28, 102, 117, 24, 66, 20, 109, 71, 217, 152, 98, 70, 105, 29, 46, 255, 255, 255, 191, + 27, 18, 222, 168, 158, 60, 25, 241, 24, 71, 129, 85, 25, 55, 83, 127, 139, 27, 100, 141, 235, 36, 209, 73, 28, + 115, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 919, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2281508918715642263" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8638992646244036994" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1698c610bbd198" + }, + { + "_tag": "ByteArray", + "bytearray": "c6a83a1bb64d2830" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8294735448412830105" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5013f45cbcb9d8094545" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12811265532138394319" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7a717305bd6a3f" + }, + { + "_tag": "ByteArray", + "bytearray": "2987af49ed13" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11206036175552897599" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1d4c84c2d5eb6452e65db" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12668326827281782176" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ca88d781340d889245" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17523205317137333402" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8509431773378883491" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2355636089186604484" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11355001775795765210" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11333114313901855203" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9237913865344358611" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1397119777576175271" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1843642517955627842" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14722424241033738926" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8042171253662314541" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9d839681567" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13475441619773668219" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "200316668023657065" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17550871418786235634" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b61a3" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b1fa98c460bee71979f9f1b77e3de0a58967182471698c610bbd19848c6a83a1bb64d28301b731cd1f1647cb999ff4a5013f45cbcb9d80945459f1bb1cac21fde5092cf477a717305bd6a3f462987af49ed131b9b83d6879001e23f4bc1d4c84c2d5eb6452e65dbffffff9fd8669f1bafcef02136ae95a09f49ca88d781340d8892451bf32eee64de34fc9a1b7617931cecabafa31b20b0e68adc0ed5c4ffff1b9d9511f4263c7fdad8669f1b9d474f6c4f03d1e39f1b8033a9b7498198d3ffff801b136391091319c6a7ffd8669f1b1995ef1a1f8d4b429fd8669f1bcc508ed82f6a7aae80ffbf1b6f9b88255d66702d46a9d8396815671bbb0262c1da1fbb7b1b02c7aaf2c023d2691bf39138911f4f44f2431b61a3ffffff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 31, 169, 140, 70, 11, 238, 113, 151, 159, 159, 27, 119, 227, 222, 10, 88, 150, 113, 130, + 71, 22, 152, 198, 16, 187, 209, 152, 72, 198, 168, 58, 27, 182, 77, 40, 48, 27, 115, 28, 209, 241, 100, 124, 185, + 153, 255, 74, 80, 19, 244, 92, 188, 185, 216, 9, 69, 69, 159, 27, 177, 202, 194, 31, 222, 80, 146, 207, 71, 122, + 113, 115, 5, 189, 106, 63, 70, 41, 135, 175, 73, 237, 19, 27, 155, 131, 214, 135, 144, 1, 226, 63, 75, 193, 212, + 200, 76, 45, 94, 182, 69, 46, 101, 219, 255, 255, 255, 159, 216, 102, 159, 27, 175, 206, 240, 33, 54, 174, 149, + 160, 159, 73, 202, 136, 215, 129, 52, 13, 136, 146, 69, 27, 243, 46, 238, 100, 222, 52, 252, 154, 27, 118, 23, + 147, 28, 236, 171, 175, 163, 27, 32, 176, 230, 138, 220, 14, 213, 196, 255, 255, 27, 157, 149, 17, 244, 38, 60, + 127, 218, 216, 102, 159, 27, 157, 71, 79, 108, 79, 3, 209, 227, 159, 27, 128, 51, 169, 183, 73, 129, 152, 211, + 255, 255, 128, 27, 19, 99, 145, 9, 19, 25, 198, 167, 255, 216, 102, 159, 27, 25, 149, 239, 26, 31, 141, 75, 66, + 159, 216, 102, 159, 27, 204, 80, 142, 216, 47, 106, 122, 174, 128, 255, 191, 27, 111, 155, 136, 37, 93, 102, 112, + 45, 70, 169, 216, 57, 104, 21, 103, 27, 187, 2, 98, 193, 218, 31, 187, 123, 27, 2, 199, 170, 242, 192, 35, 210, + 105, 27, 243, 145, 56, 145, 31, 79, 68, 242, 67, 27, 97, 163, 255, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 920, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8129791647510230793" + } + } + ] + }, + "cborHex": "9f1b70d2d26e0fc8f709ff", + "cborBytes": [159, 27, 112, 210, 210, 110, 15, 200, 247, 9, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 921, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5618599699015255107" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8630411765811424641" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea5ccb86e15bd5d73289" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10829166690585645286" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0dc65507ae95ca020406ad" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15649709220347642261" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07079a05010105" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17362259886687754622" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca16d3532196c383dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "efb40b34" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd905099fd9050080a0ffbf0f1b4df946a85aebc4431b77c561c66e8aad814aea5ccb86e15bd5d732891b9648edbacdd990e64b0dc65507ae95ca020406ad1bd92eef9ec4fa01954707079a050101051bf0f32360b409997e49ca16d3532196c383dd1bffffffffffffffef4101ff44efb40b34a0ff", + "cborBytes": [ + 159, 217, 5, 9, 159, 217, 5, 0, 128, 160, 255, 191, 15, 27, 77, 249, 70, 168, 90, 235, 196, 67, 27, 119, 197, 97, + 198, 110, 138, 173, 129, 74, 234, 92, 203, 134, 225, 91, 213, 215, 50, 137, 27, 150, 72, 237, 186, 205, 217, 144, + 230, 75, 13, 198, 85, 7, 174, 149, 202, 2, 4, 6, 173, 27, 217, 46, 239, 158, 196, 250, 1, 149, 71, 7, 7, 154, 5, + 1, 1, 5, 27, 240, 243, 35, 96, 180, 9, 153, 126, 73, 202, 22, 211, 83, 33, 150, 195, 131, 221, 27, 255, 255, 255, + 255, 255, 255, 255, 239, 65, 1, 255, 68, 239, 180, 11, 52, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 922, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6758502826864251171" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "73986f665532e360161ceca0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1670767228590751938" + } + }, + { + "_tag": "ByteArray", + "bytearray": "20f1c91102c5a7497d86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10946833119784940240" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5101437273291405910" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4538401912088393587" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17892291781347479767" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2962b18ced1f9649" + }, + { + "_tag": "ByteArray", + "bytearray": "651338" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15076347565010043187" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ba29b1b25f5a8dbe36bc" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b5dcb068350b7912380ff4c73986f665532e360161ceca09fa09f1b172fc1f13a8400c24a20f1c91102c5a7497d861b97eaf6b9404332d01b46cbf22be678ba56ff1b3efba47e59fb77731bf84e3093e4db90d79f482962b18ced1f9649436513381bd139f23b82bfc1334aba29b1b25f5a8dbe36bcffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 93, 203, 6, 131, 80, 183, 145, 35, 128, 255, 76, 115, 152, 111, 102, 85, 50, 227, 96, 22, + 28, 236, 160, 159, 160, 159, 27, 23, 47, 193, 241, 58, 132, 0, 194, 74, 32, 241, 201, 17, 2, 197, 167, 73, 125, + 134, 27, 151, 234, 246, 185, 64, 67, 50, 208, 27, 70, 203, 242, 43, 230, 120, 186, 86, 255, 27, 62, 251, 164, 126, + 89, 251, 119, 115, 27, 248, 78, 48, 147, 228, 219, 144, 215, 159, 72, 41, 98, 177, 140, 237, 31, 150, 73, 67, 101, + 19, 56, 27, 209, 57, 242, 59, 130, 191, 193, 51, 74, 186, 41, 177, 178, 95, 90, 141, 190, 54, 188, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 923, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2593329806399770850" + } + } + ] + }, + "cborHex": "9f1b23fd5bb807e410e2ff", + "cborBytes": [159, 27, 35, 253, 91, 184, 7, 228, 16, 226, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 924, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18199314189397011874" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa5d" + }, + { + "_tag": "ByteArray", + "bytearray": "6aad8f8ad173ac76e1" + } + ] + }, + "cborHex": "9f1bfc90f3d4c6bc2da242fa5d496aad8f8ad173ac76e1ff", + "cborBytes": [ + 159, 27, 252, 144, 243, 212, 198, 188, 45, 162, 66, 250, 93, 73, 106, 173, 143, 138, 209, 115, 172, 118, 225, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 925, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "51f7b7fe7a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c7578cd335aaee1" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8643010031792396894" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e0fd0c1023470540e25c8a02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6775510206457321458" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "159728070119911817" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d538031af4" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04316417" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17768836572385536118" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ec822dc941fcf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11003545605843589810" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83c4b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17144330420026243054" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "85d037" + } + ] + } + ] + }, + "cborHex": "9f9f80bf4551f7b7fe7a488c7578cd335aaee1ffd8669f1b77f223d4cf1f9a5e9f4ce0fd0c1023470540e25c8a021b5e0772a273ec17f21b023777d56027f18945d538031af4ffffbf44043164171bf69796b821026876474ec822dc941fcf1b98b4726de21e1ab24383c4b71bedece5aeb59677eeff4385d037ffff", + "cborBytes": [ + 159, 159, 128, 191, 69, 81, 247, 183, 254, 122, 72, 140, 117, 120, 205, 51, 90, 174, 225, 255, 216, 102, 159, 27, + 119, 242, 35, 212, 207, 31, 154, 94, 159, 76, 224, 253, 12, 16, 35, 71, 5, 64, 226, 92, 138, 2, 27, 94, 7, 114, + 162, 115, 236, 23, 242, 27, 2, 55, 119, 213, 96, 39, 241, 137, 69, 213, 56, 3, 26, 244, 255, 255, 191, 68, 4, 49, + 100, 23, 27, 246, 151, 150, 184, 33, 2, 104, 118, 71, 78, 200, 34, 220, 148, 31, 207, 27, 152, 180, 114, 109, 226, + 30, 26, 178, 67, 131, 196, 183, 27, 237, 236, 229, 174, 181, 150, 119, 238, 255, 67, 133, 208, 55, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 926, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18264146262288326566" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9817815711812543743" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3908788344432694553" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3734997259869575599" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8410966445614261285" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c58fc3eb2022fc" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15021338948943959336" + } + } + ] + } + ] + }, + "cborHex": "9f12d8669f1bfd77484209795fa69f1b883fe35f74d5e4ff0ad8669f1b363ece4a241915199f1b33d560380f9559afffffbf1b74b9c16b4891642547c58fc3eb2022fcff1bd0768430068b5528ffffff", + "cborBytes": [ + 159, 18, 216, 102, 159, 27, 253, 119, 72, 66, 9, 121, 95, 166, 159, 27, 136, 63, 227, 95, 116, 213, 228, 255, 10, + 216, 102, 159, 27, 54, 62, 206, 74, 36, 25, 21, 25, 159, 27, 51, 213, 96, 56, 15, 149, 89, 175, 255, 255, 191, 27, + 116, 185, 193, 107, 72, 145, 100, 37, 71, 197, 143, 195, 235, 32, 34, 252, 255, 27, 208, 118, 132, 48, 6, 139, 85, + 40, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 927, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1603558852231840485" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12434637566692732239" + } + } + ] + }, + "cborHex": "9f1b1640fc47b3b642e51bac90b4fc4172ad4fff", + "cborBytes": [159, 27, 22, 64, 252, 71, 179, 182, 66, 229, 27, 172, 144, 180, 252, 65, 114, 173, 79, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 928, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5617117031612024884" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b4df4022df308083480ffff", + "cborBytes": [159, 216, 102, 159, 27, 77, 244, 2, 45, 243, 8, 8, 52, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 929, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb0003" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "275319513159317585" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11293854618649876221" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6434915085393581555" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07070743" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de3a2cb1a23fbf12a6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7032fecdb306e00fa97" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8675892805200666346" + } + } + ] + }, + "cborHex": "9fbf43fb00031bffffffffffffffffffbf1b03d221a3759838511b9cbbd4f03187d6fd1b594d692d30afd5f30a1bfffffffffffffff0440707074349de3a2cb1a23fbf12a64ae7032fecdb306e00fa97ff1b7866f68a1b5a5eeaff", + "cborBytes": [ + 159, 191, 67, 251, 0, 3, 27, 255, 255, 255, 255, 255, 255, 255, 255, 255, 191, 27, 3, 210, 33, 163, 117, 152, 56, + 81, 27, 156, 187, 212, 240, 49, 135, 214, 253, 27, 89, 77, 105, 45, 48, 175, 213, 243, 10, 27, 255, 255, 255, 255, + 255, 255, 255, 240, 68, 7, 7, 7, 67, 73, 222, 58, 44, 177, 162, 63, 191, 18, 166, 74, 231, 3, 47, 236, 219, 48, + 110, 0, 250, 151, 255, 27, 120, 102, 246, 138, 27, 90, 94, 234, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 930, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "08ce4b9b449bba04" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "55acc0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9946dfdb4b063fee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ea966b4336761" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "edac172f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "769c5b0839f8a33025" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b72bd873e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c178aa3b64" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d040d1" + } + } + ] + } + ] + }, + "cborHex": "9f4808ce4b9b449bba04bf4355acc0489946dfdb4b063fee476ea966b433676144edac172f49769c5b0839f8a3302545b72bd873e545c178aa3b6443d040d1ffff", + "cborBytes": [ + 159, 72, 8, 206, 75, 155, 68, 155, 186, 4, 191, 67, 85, 172, 192, 72, 153, 70, 223, 219, 75, 6, 63, 238, 71, 110, + 169, 102, 180, 51, 103, 97, 68, 237, 172, 23, 47, 73, 118, 156, 91, 8, 57, 248, 163, 48, 37, 69, 183, 43, 216, + 115, 229, 69, 193, 120, 170, 59, 100, 67, 208, 64, 209, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 931, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4346064350345862291" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6278920999335039982" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12074382579215542530" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03410a063a176c1193" + }, + { + "_tag": "ByteArray", + "bytearray": "a5f157273aa815" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15406568707077914020" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2480980723016308292" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18111513511432548654" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7570153028507011382" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9180443759340921118" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4224896283743678295" + } + }, + { + "_tag": "ByteArray", + "bytearray": "10034c7c21df29da6177da8f" + }, + { + "_tag": "ByteArray", + "bytearray": "17121683a9c4e299e8fb12" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dca7e60de7961cb1fa" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1278736759482593571" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7045f56ac446" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4593963261447501547" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12681524900737388166" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12020476872395389804" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3564704955560192420" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15495658605370517695" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13259659640309233627" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18015001452313678702" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9698322536039634418" + } + } + } + ] + } + ] + }, + "cborHex": "9f8041a0d87d9f1b3c5052800d5a9c939f1b57233561ba1b13ee1ba790d2fba44ea9024903410a063a176c119347a5f157273aa8151bd5cf209c91073da4ff9f1b226e36d2a1fa96441bfb590594699ff12e1b690e96122f820936ff9f1b7f677cf583f7a11e1b3aa1d8c91d68ef574c10034c7c21df29da6177da8f4b17121683a9c4e299e8fb12ff49dca7e60de7961cb1faffbf1b11befc4ec631b123467045f56ac4461b3fc1093f15c5f6eb1baffdd3b526b90e861ba6d1500739ecfb6c1b317860453d3d69a41bd70ba366edd5a8bf1bb803c630af3737db1bfa02245f914d936e1b86975cf66dced5f2ffff", + "cborBytes": [ + 159, 128, 65, 160, 216, 125, 159, 27, 60, 80, 82, 128, 13, 90, 156, 147, 159, 27, 87, 35, 53, 97, 186, 27, 19, + 238, 27, 167, 144, 210, 251, 164, 78, 169, 2, 73, 3, 65, 10, 6, 58, 23, 108, 17, 147, 71, 165, 241, 87, 39, 58, + 168, 21, 27, 213, 207, 32, 156, 145, 7, 61, 164, 255, 159, 27, 34, 110, 54, 210, 161, 250, 150, 68, 27, 251, 89, + 5, 148, 105, 159, 241, 46, 27, 105, 14, 150, 18, 47, 130, 9, 54, 255, 159, 27, 127, 103, 124, 245, 131, 247, 161, + 30, 27, 58, 161, 216, 201, 29, 104, 239, 87, 76, 16, 3, 76, 124, 33, 223, 41, 218, 97, 119, 218, 143, 75, 23, 18, + 22, 131, 169, 196, 226, 153, 232, 251, 18, 255, 73, 220, 167, 230, 13, 231, 150, 28, 177, 250, 255, 191, 27, 17, + 190, 252, 78, 198, 49, 177, 35, 70, 112, 69, 245, 106, 196, 70, 27, 63, 193, 9, 63, 21, 197, 246, 235, 27, 175, + 253, 211, 181, 38, 185, 14, 134, 27, 166, 209, 80, 7, 57, 236, 251, 108, 27, 49, 120, 96, 69, 61, 61, 105, 164, + 27, 215, 11, 163, 102, 237, 213, 168, 191, 27, 184, 3, 198, 48, 175, 55, 55, 219, 27, 250, 2, 36, 95, 145, 77, + 147, 110, 27, 134, 151, 92, 246, 109, 206, 213, 242, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 932, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1606992552769426695" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23f6888e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7701436111226607114" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1163941d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17703293029709247117" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11745956652604184182" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18044329819332877952" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8ba" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b164d2f36688515074423f6888e1b6ae0ff56d607160a441163941d1bf5aebb36e677f28d1ba3020557c19bd6761bfa6a565e23531e8042a8baffffff", + "cborBytes": [ + 159, 159, 191, 27, 22, 77, 47, 54, 104, 133, 21, 7, 68, 35, 246, 136, 142, 27, 106, 224, 255, 86, 214, 7, 22, 10, + 68, 17, 99, 148, 29, 27, 245, 174, 187, 54, 230, 119, 242, 141, 27, 163, 2, 5, 87, 193, 155, 214, 118, 27, 250, + 106, 86, 94, 35, 83, 30, 128, 66, 168, 186, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 933, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd092d1d6e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb19d48656d3" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ac" + }, + { + "_tag": "ByteArray", + "bytearray": "d589e5cdbd67c2b562" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12946070624817231379" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "41dcad43bdb3a2af" + }, + { + "_tag": "ByteArray", + "bytearray": "f2d606b9549dd240" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14051908389231490981" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17703623828825483336" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11856382042780317263" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1542a9e65da4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2779766681451337812" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "49f3a01e9268fc8494c299b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f339" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfdc7fc96138" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7917314137567615504" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "495314583251841415" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c5d9fbc300168b43094cee" + }, + { + "_tag": "ByteArray", + "bytearray": "9efac280fe68b3" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "453506bb64bdd99a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16606962516414977458" + } + } + ] + }, + "cborHex": "9fbf45bd092d1d6e46eb19d48656d3ff9f41ac49d589e5cdbd67c2b562d8669f1bb3a9aea45d59b6139f4841dcad43bdb3a2af48f2d606b9549dd2401bc302683ad47977a541cbffffd8669f1bf5afe8131248a8489f41e81ba48a54a66d3db64f461542a9e65da41b2693b711a65f9854415cffffbf4c49f3a01e9268fc8494c299b742f339ffffbf46dfdc7fc961381b6ddff342a8e55a10ffd8669f1b06dfb5fd3acbf1879f9f4bc5d9fbc300168b43094cee479efac280fe68b3ffbf48453506bb64bdd99a4150ffffff1be677c86bd52455b2ff", + "cborBytes": [ + 159, 191, 69, 189, 9, 45, 29, 110, 70, 235, 25, 212, 134, 86, 211, 255, 159, 65, 172, 73, 213, 137, 229, 205, 189, + 103, 194, 181, 98, 216, 102, 159, 27, 179, 169, 174, 164, 93, 89, 182, 19, 159, 72, 65, 220, 173, 67, 189, 179, + 162, 175, 72, 242, 214, 6, 185, 84, 157, 210, 64, 27, 195, 2, 104, 58, 212, 121, 119, 165, 65, 203, 255, 255, 216, + 102, 159, 27, 245, 175, 232, 19, 18, 72, 168, 72, 159, 65, 232, 27, 164, 138, 84, 166, 109, 61, 182, 79, 70, 21, + 66, 169, 230, 93, 164, 27, 38, 147, 183, 17, 166, 95, 152, 84, 65, 92, 255, 255, 191, 76, 73, 243, 160, 30, 146, + 104, 252, 132, 148, 194, 153, 183, 66, 243, 57, 255, 255, 191, 70, 223, 220, 127, 201, 97, 56, 27, 109, 223, 243, + 66, 168, 229, 90, 16, 255, 216, 102, 159, 27, 6, 223, 181, 253, 58, 203, 241, 135, 159, 159, 75, 197, 217, 251, + 195, 0, 22, 139, 67, 9, 76, 238, 71, 158, 250, 194, 128, 254, 104, 179, 255, 191, 72, 69, 53, 6, 187, 100, 189, + 217, 154, 65, 80, 255, 255, 255, 27, 230, 119, 200, 107, 213, 36, 85, 178, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 934, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11729219944124166021" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10455850050559006209" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2262620207597233735" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb915dddfeeb708d8d914e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0b3272933332d9bb0909" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5108727814353019386" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f81e2be58f2d9efe66d37d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12254165540190737429" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8906610687065823128" + } + }, + { + "_tag": "ByteArray", + "bytearray": "138137" + }, + { + "_tag": "ByteArray", + "bytearray": "336ac53d51605b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "20" + }, + { + "_tag": "ByteArray", + "bytearray": "6ee0c0a6f87b6c981ee5" + }, + { + "_tag": "ByteArray", + "bytearray": "24f91c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5060751001709275306" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8aba3415" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7357426589501151938" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9aac8651e3ab88d47976db" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14036456869421484666" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8145236802665863045" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48c401c72137b883c2f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11686379927062999628" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bb7ca932709945c83fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6971622534831958368" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7371871404133279177" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "97f528447c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1942303043352486861" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a70b80406cd6cb5e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9867929427450188223" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1ba2c68f6525f2af85d8669f1b911aa4393851d6019fbf1b1f667117477426474bcb915dddfeeb708d8d914eff4a0b3272933332d9bb0909ffffd8669f1b46e5d8e144ab61fa9f4bf81e2be58f2d9efe66d37d9f1baa0f8aa229e6d4151b7b9aa33b0b4197984313813747336ac53d51605bff41204a6ee0c0a6f87b6c981ee54324f91cffffd8669f1b463b6639199568aa9f448aba3415bf1b661ad480783adac24b9aac8651e3ab88d47976db1bc2cb832786f58a7a1b7109b1b77a5657854a48c401c72137b883c2f81ba22e5ca066d8724c4a7bb7ca932709945c83fb1b60c02dc218c46960ffd8669f1b664e25fbf53965c980ffbf4597f528447c1b1af47253c12f63cd48a70b80406cd6cb5e1b88f1ed881fcad1bfffffffff", + "cborBytes": [ + 159, 27, 162, 198, 143, 101, 37, 242, 175, 133, 216, 102, 159, 27, 145, 26, 164, 57, 56, 81, 214, 1, 159, 191, 27, + 31, 102, 113, 23, 71, 116, 38, 71, 75, 203, 145, 93, 221, 254, 235, 112, 141, 141, 145, 78, 255, 74, 11, 50, 114, + 147, 51, 50, 217, 187, 9, 9, 255, 255, 216, 102, 159, 27, 70, 229, 216, 225, 68, 171, 97, 250, 159, 75, 248, 30, + 43, 229, 143, 45, 158, 254, 102, 211, 125, 159, 27, 170, 15, 138, 162, 41, 230, 212, 21, 27, 123, 154, 163, 59, + 11, 65, 151, 152, 67, 19, 129, 55, 71, 51, 106, 197, 61, 81, 96, 91, 255, 65, 32, 74, 110, 224, 192, 166, 248, + 123, 108, 152, 30, 229, 67, 36, 249, 28, 255, 255, 216, 102, 159, 27, 70, 59, 102, 57, 25, 149, 104, 170, 159, 68, + 138, 186, 52, 21, 191, 27, 102, 26, 212, 128, 120, 58, 218, 194, 75, 154, 172, 134, 81, 227, 171, 136, 212, 121, + 118, 219, 27, 194, 203, 131, 39, 134, 245, 138, 122, 27, 113, 9, 177, 183, 122, 86, 87, 133, 74, 72, 196, 1, 199, + 33, 55, 184, 131, 194, 248, 27, 162, 46, 92, 160, 102, 216, 114, 76, 74, 123, 183, 202, 147, 39, 9, 148, 92, 131, + 251, 27, 96, 192, 45, 194, 24, 196, 105, 96, 255, 216, 102, 159, 27, 102, 78, 37, 251, 245, 57, 101, 201, 128, + 255, 191, 69, 151, 245, 40, 68, 124, 27, 26, 244, 114, 83, 193, 47, 99, 205, 72, 167, 11, 128, 64, 108, 214, 203, + 94, 27, 136, 241, 237, 136, 31, 202, 209, 191, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 935, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1572166048953023888" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d90cfef7f589d0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "942659482441214653" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17510693027041748332" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8349033900065979692" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a4e340b025e7a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9533114646165737605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7a0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14120054978734090194" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd9a2f2fcec73e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17119288423335149796" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9111690862057874853" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16020384026507000236" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cb1d2be0d3f25fcd0066" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3365298025860093200" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17964471679261482379" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2010389188357485455" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c78f64dfe5eaca" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2421573936017360636" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14803474748865906817" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7857139054068400836" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1860782193583946831" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8373555507948713394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4524280234553178644" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13037733745515099464" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f12f87bdfdec215f97" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13205722417912245168" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d030635f5e1ed6eee273" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14750066424310095803" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "341585230468516724" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "804ddabb6ccdf25e86f3860b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3591848813403105672" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16488975650557450154" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7296505834679014451" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13085873348447279697" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14137366949186623054" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2038913206571561742" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17629043718337225585" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3835364d1e3e33817b64e40b" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b15d174b11bc63d909f47d90cfef7f589d0bf1b0d14ffce0b0feabd1bf3027a884fbba56c1b73ddba18d7207d2c471a4e340b025e7a1b844c6d4317c8508542d7a01bc3f48331206e67d247cd9a2f2fcec73e1bed93ee1e805940e41b7e733a903021e5a5ffd8669f1bde53d664794ab9ac9f4acb1d2be0d3f25fcd0066ffffd8669f1b2eb3f0b972b6d5109f1bf94e9fcffbf21d8bffffffffd8669f1b1be65650b855738f9f47c78f64dfe5eacabf1b219b28aa2da8c6fc1bcd7081da179e08811b6d0a2a573c9882c41b19d2d38bd4f17c4f1b7434d85e964c75b21b3ec978e714dcfa141bb4ef55c3c18cf54849f12f87bdfdec215f971bb74426927a126bb04ad030635f5e1ed6eee2731bccb2c343826b5fbb41edffbf1b04bd8df512988b744c804ddabb6ccdf25e86f3860b1b31d8cf7721cce9881be4d49bfde98ad7aa1b65426565e99b94331bb59a5c7a7df39a511bc4320456599dd64e1b1c4bacc23d8cf30e1bf4a6f1dbf15263714c3835364d1e3e33817b64e40bffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 21, 209, 116, 177, 27, 198, 61, 144, 159, 71, 217, 12, 254, 247, 245, 137, 208, 191, 27, + 13, 20, 255, 206, 11, 15, 234, 189, 27, 243, 2, 122, 136, 79, 187, 165, 108, 27, 115, 221, 186, 24, 215, 32, 125, + 44, 71, 26, 78, 52, 11, 2, 94, 122, 27, 132, 76, 109, 67, 23, 200, 80, 133, 66, 215, 160, 27, 195, 244, 131, 49, + 32, 110, 103, 210, 71, 205, 154, 47, 47, 206, 199, 62, 27, 237, 147, 238, 30, 128, 89, 64, 228, 27, 126, 115, 58, + 144, 48, 33, 229, 165, 255, 216, 102, 159, 27, 222, 83, 214, 100, 121, 74, 185, 172, 159, 74, 203, 29, 43, 224, + 211, 242, 95, 205, 0, 102, 255, 255, 216, 102, 159, 27, 46, 179, 240, 185, 114, 182, 213, 16, 159, 27, 249, 78, + 159, 207, 251, 242, 29, 139, 255, 255, 255, 255, 216, 102, 159, 27, 27, 230, 86, 80, 184, 85, 115, 143, 159, 71, + 199, 143, 100, 223, 229, 234, 202, 191, 27, 33, 155, 40, 170, 45, 168, 198, 252, 27, 205, 112, 129, 218, 23, 158, + 8, 129, 27, 109, 10, 42, 87, 60, 152, 130, 196, 27, 25, 210, 211, 139, 212, 241, 124, 79, 27, 116, 52, 216, 94, + 150, 76, 117, 178, 27, 62, 201, 120, 231, 20, 220, 250, 20, 27, 180, 239, 85, 195, 193, 140, 245, 72, 73, 241, 47, + 135, 189, 253, 236, 33, 95, 151, 27, 183, 68, 38, 146, 122, 18, 107, 176, 74, 208, 48, 99, 95, 94, 30, 214, 238, + 226, 115, 27, 204, 178, 195, 67, 130, 107, 95, 187, 65, 237, 255, 191, 27, 4, 189, 141, 245, 18, 152, 139, 116, + 76, 128, 77, 218, 187, 108, 205, 242, 94, 134, 243, 134, 11, 27, 49, 216, 207, 119, 33, 204, 233, 136, 27, 228, + 212, 155, 253, 233, 138, 215, 170, 27, 101, 66, 101, 101, 233, 155, 148, 51, 27, 181, 154, 92, 122, 125, 243, 154, + 81, 27, 196, 50, 4, 86, 89, 157, 214, 78, 27, 28, 75, 172, 194, 61, 140, 243, 14, 27, 244, 166, 241, 219, 241, 82, + 99, 113, 76, 56, 53, 54, 77, 30, 62, 51, 129, 123, 100, 228, 11, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 936, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b3c5a773fb68fda6a9446ab3" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2263f7fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "276cc16cedc1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "435826ff9358a968a7133acd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12137733155838217685" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c789525522cd3577ac210d82" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a4a8c5d98bee8521c0a" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8858447017761656351" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f9720684c601318fe84823" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2422791658521929109" + } + } + ] + } + ] + }, + "cborHex": "9f4cb3c5a773fb68fda6a9446ab3bf442263f7fa46276cc16cedc14c435826ff9358a968a7133acd1ba871e3ff2c37cdd54cc789525522cd3577ac210d824a4a4a8c5d98bee8521c0affd8669f1b7aef86a0eb4d4e1f9f4bf9720684c601318fe848231b219f7c2d4afaa595ffffff", + "cborBytes": [ + 159, 76, 179, 197, 167, 115, 251, 104, 253, 166, 169, 68, 106, 179, 191, 68, 34, 99, 247, 250, 70, 39, 108, 193, + 108, 237, 193, 76, 67, 88, 38, 255, 147, 88, 169, 104, 167, 19, 58, 205, 27, 168, 113, 227, 255, 44, 55, 205, 213, + 76, 199, 137, 82, 85, 34, 205, 53, 119, 172, 33, 13, 130, 74, 74, 74, 140, 93, 152, 190, 232, 82, 28, 10, 255, + 216, 102, 159, 27, 122, 239, 134, 160, 235, 77, 78, 31, 159, 75, 249, 114, 6, 132, 198, 1, 49, 143, 232, 72, 35, + 27, 33, 159, 124, 45, 74, 250, 165, 149, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 937, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17826566903614046543" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8df1e94ac9" + }, + { + "_tag": "ByteArray", + "bytearray": "cd3d9bf039d94a05320a03" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f1bf764b0264ea6814f458df1e94ac94bcd3d9bf039d94a05320a03a0ff", + "cborBytes": [ + 159, 27, 247, 100, 176, 38, 78, 166, 129, 79, 69, 141, 241, 233, 74, 201, 75, 205, 61, 155, 240, 57, 217, 74, 5, + 50, 10, 3, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 938, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14853e98d0df5bc57d0107" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12782463145812797342" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4770601c927e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "853ab267fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7877c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7534437870801137954" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "816cb2ffc6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9132879748716957401" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93f2b9692d0ff1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3444" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b1e73fbb4a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eba37f55a87d5fd4bb59bc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "880aa6253f131415" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16586947952723458432" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad45d1513c2a1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21ad8554766725e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2f64e77e9621a902c11" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6475249407571799142" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6161230bc79c7e39a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "223188096962192757" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9876f41a8fd0f92" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8ca60ec73151f19eb" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "00a76d3d295e30eb89edb3" + } + ] + }, + "cborHex": "9fbf4b14853e98d0df5bc57d01071bb1646e81b8b1a79e464770601c927e45853ab267fd437877c61b688fb353075a312245816cb2ffc61b7ebe81be4ea20ed94793f2b9692d0ff1423444ffbf463b1e73fbb4a84beba37f55a87d5fd4bb59bc48880aa6253f1314151be630ad4815f9798047ad45d1513c2a1d4821ad8554766725e24ab2f64e77e9621a902c111b59dcb50762602c6649b6161230bc79c7e39a1b0318ec644586e57548b9876f41a8fd0f9249d8ca60ec73151f19ebff4b00a76d3d295e30eb89edb3ff", + "cborBytes": [ + 159, 191, 75, 20, 133, 62, 152, 208, 223, 91, 197, 125, 1, 7, 27, 177, 100, 110, 129, 184, 177, 167, 158, 70, 71, + 112, 96, 28, 146, 126, 69, 133, 58, 178, 103, 253, 67, 120, 119, 198, 27, 104, 143, 179, 83, 7, 90, 49, 34, 69, + 129, 108, 178, 255, 198, 27, 126, 190, 129, 190, 78, 162, 14, 217, 71, 147, 242, 185, 105, 45, 15, 241, 66, 52, + 68, 255, 191, 70, 59, 30, 115, 251, 180, 168, 75, 235, 163, 127, 85, 168, 125, 95, 212, 187, 89, 188, 72, 136, 10, + 166, 37, 63, 19, 20, 21, 27, 230, 48, 173, 72, 21, 249, 121, 128, 71, 173, 69, 209, 81, 60, 42, 29, 72, 33, 173, + 133, 84, 118, 103, 37, 226, 74, 178, 246, 78, 119, 233, 98, 26, 144, 44, 17, 27, 89, 220, 181, 7, 98, 96, 44, 102, + 73, 182, 22, 18, 48, 188, 121, 199, 227, 154, 27, 3, 24, 236, 100, 69, 134, 229, 117, 72, 185, 135, 111, 65, 168, + 253, 15, 146, 73, 216, 202, 96, 236, 115, 21, 31, 25, 235, 255, 75, 0, 167, 109, 61, 41, 94, 48, 235, 137, 237, + 179, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 939, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5896846624395453875" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "295333921596817845" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16663264743277565426" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1971652114252477360" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5909952015628019973" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10029786833200078340" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40daaa6e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13158482198428415462" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c663985e840fc09c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13506618813205603939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a95ae737f8951a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16893037717782072805" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f74cc63c5ef3b9077" + } + } + ] + } + ] + }, + "cborHex": "9f1b51d5cec3160d65b3bf1b04193ca30ee6c1b51be73fceff8d5995f21b1b5cb726d2aab3b01b52045e0bc31ca9051b8b30f5fc15c7de044440daaa6e1bb69c51d7c4a075e648c663985e840fc09c1bbb71263fddba6663488a95ae737f8951a41bea70204d19ad0de5490f74cc63c5ef3b9077ffff", + "cborBytes": [ + 159, 27, 81, 213, 206, 195, 22, 13, 101, 179, 191, 27, 4, 25, 60, 163, 14, 230, 193, 181, 27, 231, 63, 206, 255, + 141, 89, 149, 242, 27, 27, 92, 183, 38, 210, 170, 179, 176, 27, 82, 4, 94, 11, 195, 28, 169, 5, 27, 139, 48, 245, + 252, 21, 199, 222, 4, 68, 64, 218, 170, 110, 27, 182, 156, 81, 215, 196, 160, 117, 230, 72, 198, 99, 152, 94, 132, + 15, 192, 156, 27, 187, 113, 38, 63, 221, 186, 102, 99, 72, 138, 149, 174, 115, 127, 137, 81, 164, 27, 234, 112, + 32, 77, 25, 173, 13, 229, 73, 15, 116, 204, 99, 197, 239, 59, 144, 119, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 940, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0f0a73f0da6f8b98" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10523920129340507075" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e26a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15068075827341374847" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f77c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16051257965133768521" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d32e20523e29464" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1518959646278092230" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6454f99258d2e60a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9015292406468430049" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8120833218408069797" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14c1649c12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8445162577628649381" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7086099347172491263" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "28" + }, + { + "_tag": "ByteArray", + "bytearray": "9a32b21c43f03f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14926030519719272913" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a4f1fb7f7a45b26fad" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4952348171171473849" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0a3636b175922784" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5211077069081976124" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f480f0a73f0da6f8b98bf1b920c799979ec83c342e26a1bd11c8f218155357f42f77c1bdec1861379f52749486d32e20523e29464ffbf1b15146dc0208f05c6486454f99258d2e60a1b7d1cc0adb9d3c8e11b70b2fec93f67baa54514c1649c121b75333e9eb5fa57a5ff9fd8669f1b6256e1cfff57ffff9f4128479a32b21c43f03f1bcf23e9ad1a81a1d1ffff49a4f1fb7f7a45b26fadd8669f1b44ba466c4abb29b99f480a3636b1759227841b485176fc1fd09d3cffffffff", + "cborBytes": [ + 159, 72, 15, 10, 115, 240, 218, 111, 139, 152, 191, 27, 146, 12, 121, 153, 121, 236, 131, 195, 66, 226, 106, 27, + 209, 28, 143, 33, 129, 85, 53, 127, 66, 247, 124, 27, 222, 193, 134, 19, 121, 245, 39, 73, 72, 109, 50, 226, 5, + 35, 226, 148, 100, 255, 191, 27, 21, 20, 109, 192, 32, 143, 5, 198, 72, 100, 84, 249, 146, 88, 210, 230, 10, 27, + 125, 28, 192, 173, 185, 211, 200, 225, 27, 112, 178, 254, 201, 63, 103, 186, 165, 69, 20, 193, 100, 156, 18, 27, + 117, 51, 62, 158, 181, 250, 87, 165, 255, 159, 216, 102, 159, 27, 98, 86, 225, 207, 255, 87, 255, 255, 159, 65, + 40, 71, 154, 50, 178, 28, 67, 240, 63, 27, 207, 35, 233, 173, 26, 129, 161, 209, 255, 255, 73, 164, 241, 251, 127, + 122, 69, 178, 111, 173, 216, 102, 159, 27, 68, 186, 70, 108, 74, 187, 41, 185, 159, 72, 10, 54, 54, 177, 117, 146, + 39, 132, 27, 72, 81, 118, 252, 31, 208, 157, 60, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 941, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15749754266966354705" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8619133877791714378" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + "cborHex": "9fbf1bda925e0f5e38eb111b779d5098814f6c4aff02ff", + "cborBytes": [ + 159, 191, 27, 218, 146, 94, 15, 94, 56, 235, 17, 27, 119, 157, 80, 152, 129, 79, 108, 74, 255, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 942, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8988707943905326820" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14826017439333871327" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16869577523361880320" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1bff277e58edf2b45f64d21d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13641287187211227350" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8e2556495c35c24" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7421254194657291110" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c3d737200" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4018797265230151253" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b7cbe4e40323576e41bcdc0984f393deedf1bea1cc760eee619004c1bff277e58edf2b45f64d21dffbf1bbd4f966c10d010d648e8e2556495c35c24ff1b66fd975edc6ceb66bf450c3d7372001b37c5a2d1fa5abe55ffff", + "cborBytes": [ + 159, 191, 27, 124, 190, 78, 64, 50, 53, 118, 228, 27, 205, 192, 152, 79, 57, 61, 238, 223, 27, 234, 28, 199, 96, + 238, 230, 25, 0, 76, 27, 255, 39, 126, 88, 237, 242, 180, 95, 100, 210, 29, 255, 191, 27, 189, 79, 150, 108, 16, + 208, 16, 214, 72, 232, 226, 85, 100, 149, 195, 92, 36, 255, 27, 102, 253, 151, 94, 220, 108, 235, 102, 191, 69, + 12, 61, 115, 114, 0, 27, 55, 197, 162, 209, 250, 90, 190, 85, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 943, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2666281374019366119" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "505921b6516f2befb97c1d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "58a6" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ddc9333e0b09" + } + ] + }, + "cborHex": "9fbf1b250088c879aa2ce74b505921b6516f2befb97c1dff9f9f4258a6ffff46ddc9333e0b09ff", + "cborBytes": [ + 159, 191, 27, 37, 0, 136, 200, 121, 170, 44, 231, 75, 80, 89, 33, 182, 81, 111, 43, 239, 185, 124, 29, 255, 159, + 159, 66, 88, 166, 255, 255, 70, 221, 201, 51, 62, 11, 9, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 944, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17710031158208659567" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15252529057431985363" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9605cf279477bc" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2469270211350150492" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5d268ab324a709" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7375945352733245312" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8479195274374386304" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "288717411893242581" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7480284522062960569" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14448508998576941699" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5896cc8f33b2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6182775019632005492" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3992b859b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cbae5e8b6323" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15413241744391422576" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18382158876057209404" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9e437e6b77867ee0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12210653907491432451" + } + }, + { + "_tag": "ByteArray", + "bytearray": "50b60bdf0d23" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1bf5c6ab81b220806f9f1bd3abde5dca8e9cd3479605cf279477bcffffffd8669f1b22449c2ca9fabd5c80ff475d268ab324a709d8669f1b665c9f38085bbf809fbf1b75ac272d664192801b0401baf4d85dead5ff9f1b67cf4f23fc6a57b91bc8836a61fa36aa83465896cc8f33b21b55cda11f6353117445f3992b859bff46cbae5e8b63231bd5e6d5b423ac4270d8669f1bff1a8c1adc2f0a3c9f489e437e6b77867ee01ba974f508b74328034650b60bdf0d23ffffffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 245, 198, 171, 129, 178, 32, 128, 111, 159, 27, 211, 171, 222, 93, 202, 142, 156, + 211, 71, 150, 5, 207, 39, 148, 119, 188, 255, 255, 255, 216, 102, 159, 27, 34, 68, 156, 44, 169, 250, 189, 92, + 128, 255, 71, 93, 38, 138, 179, 36, 167, 9, 216, 102, 159, 27, 102, 92, 159, 56, 8, 91, 191, 128, 159, 191, 27, + 117, 172, 39, 45, 102, 65, 146, 128, 27, 4, 1, 186, 244, 216, 93, 234, 213, 255, 159, 27, 103, 207, 79, 35, 252, + 106, 87, 185, 27, 200, 131, 106, 97, 250, 54, 170, 131, 70, 88, 150, 204, 143, 51, 178, 27, 85, 205, 161, 31, 99, + 83, 17, 116, 69, 243, 153, 43, 133, 155, 255, 70, 203, 174, 94, 139, 99, 35, 27, 213, 230, 213, 180, 35, 172, 66, + 112, 216, 102, 159, 27, 255, 26, 140, 26, 220, 47, 10, 60, 159, 72, 158, 67, 126, 107, 119, 134, 126, 224, 27, + 169, 116, 245, 8, 183, 67, 40, 3, 70, 80, 182, 11, 223, 13, 35, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 945, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "040005fbc39699e7550004" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7358109624466701152" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b377c8ed551ff73124dea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12550716881968399589" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8059603707111160910" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7898763801217785824" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "07" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f9f4b040005fbc39699e7550004ff9fbf1b661d41b7f0b87b604b0b377c8ed551ff73124dea1bae2d1a81f23984e51b6fd976deb8c83c4eff9f1b6d9e0bd3e84cdfe0ff4107bf1bffffffffffffffed08ffa0ffff", + "cborBytes": [ + 159, 159, 75, 4, 0, 5, 251, 195, 150, 153, 231, 85, 0, 4, 255, 159, 191, 27, 102, 29, 65, 183, 240, 184, 123, 96, + 75, 11, 55, 124, 142, 213, 81, 255, 115, 18, 77, 234, 27, 174, 45, 26, 129, 242, 57, 132, 229, 27, 111, 217, 118, + 222, 184, 200, 60, 78, 255, 159, 27, 109, 158, 11, 211, 232, 76, 223, 224, 255, 65, 7, 191, 27, 255, 255, 255, + 255, 255, 255, 255, 237, 8, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 946, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5db9" + } + ] + }, + "cborHex": "9fa0425db9ff", + "cborBytes": [159, 160, 66, 93, 185, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 947, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14933182820047618419" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5829847243819451818" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "366cb0f16e77a2e2aad7d0ca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "16951b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9885476767504975534" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5089288254461309417" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1971180373633236384" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4089874176546224106" + } + } + ] + }, + "cborHex": "9fd8669f1bcf3d52a7cae781739fbf1b50e7c72e2ea605aa4c366cb0f16e77a2e2aad7d0ca4316951b1b893044be9a82c6ae42c1c81b46a0c8b406bbf1e9ffffff1b1b5b0a1b26a17da0a01b38c226e4fd14b7eaff", + "cborBytes": [ + 159, 216, 102, 159, 27, 207, 61, 82, 167, 202, 231, 129, 115, 159, 191, 27, 80, 231, 199, 46, 46, 166, 5, 170, 76, + 54, 108, 176, 241, 110, 119, 162, 226, 170, 215, 208, 202, 67, 22, 149, 27, 27, 137, 48, 68, 190, 154, 130, 198, + 174, 66, 193, 200, 27, 70, 160, 200, 180, 6, 187, 241, 233, 255, 255, 255, 27, 27, 91, 10, 27, 38, 161, 125, 160, + 160, 27, 56, 194, 38, 228, 253, 20, 183, 234, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 948, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10265425681814738944" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7147038189426148942" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "26fdbcd4fc59" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3738484547084424099" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc89f864f1e12a58" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4310602076433289986" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18069025141787364714" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12674016281503408569" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8847f8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "743d5f137ddd38fa61" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2755804613229478471" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "26bb" + } + ] + }, + "cborHex": "9fa0d8669f1b8e761e44e0bd58009fd8669f1b632f615ddce5864e9f4626fdbcd4fc59ffffffffbf1b33e1c3e3634113a348dc89f864f1e12a581b3bd255bffdde13021bfac212a1f5d68d6a1bafe326a8808721b9438847f849743d5f137ddd38fa611b263e95b1e1ed0247ff4226bbff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 142, 118, 30, 68, 224, 189, 88, 0, 159, 216, 102, 159, 27, 99, 47, 97, 93, 220, 229, + 134, 78, 159, 70, 38, 253, 188, 212, 252, 89, 255, 255, 255, 255, 191, 27, 51, 225, 195, 227, 99, 65, 19, 163, 72, + 220, 137, 248, 100, 241, 225, 42, 88, 27, 59, 210, 85, 191, 253, 222, 19, 2, 27, 250, 194, 18, 161, 245, 214, 141, + 106, 27, 175, 227, 38, 168, 128, 135, 33, 185, 67, 136, 71, 248, 73, 116, 61, 95, 19, 125, 221, 56, 250, 97, 27, + 38, 62, 149, 177, 225, 237, 2, 71, 255, 66, 38, 187, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 949, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "338825c8b6cce1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3801726128393622676" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c0cbdcdce" + }, + { + "_tag": "ByteArray", + "bytearray": "896074455f7e8ffe13" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10278261832580487076" + }, + "fields": [] + } + ] + }, + "cborHex": "9f47338825c8b6cce11b34c271c578391494450c0cbdcdce49896074455f7e8ffe13d8669f1b8ea3b8ae1f6a57a480ffff", + "cborBytes": [ + 159, 71, 51, 136, 37, 200, 182, 204, 225, 27, 52, 194, 113, 197, 120, 57, 20, 148, 69, 12, 12, 189, 205, 206, 73, + 137, 96, 116, 69, 95, 126, 143, 254, 19, 216, 102, 159, 27, 142, 163, 184, 174, 31, 106, 87, 164, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 950, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3686686324038559755" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13084634625176089363" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "42e0df8bc8c80607" + }, + { + "_tag": "ByteArray", + "bytearray": "85e05df0246501591e" + }, + { + "_tag": "ByteArray", + "bytearray": "e0be645fba676f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5129025326338212056" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14645700942503445649" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11260857778149645223" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0dd306e53a08f79e52" + }, + { + "_tag": "ByteArray", + "bytearray": "6f7070be11f7" + }, + { + "_tag": "ByteArray", + "bytearray": "2055b84ceb690b0b87812e39" + }, + { + "_tag": "ByteArray", + "bytearray": "1d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1715073865297032988" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16616880823902210269" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3526070440663707391" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f7764e79bbced1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14338199469794012130" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15006001886847989608" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1602014770136890371" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10494737526828480632" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "1eb33db326b4bb71" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9404564578654152308" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13f15e771c471f78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "736200138216507457" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e67301f8356ccde7e6da493" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "328779" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30c521fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54d80b5dfea38bba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0877ee0fe3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12695119742160505646" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2510351061322729800" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1716996978270060594" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3666376009332344755" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c273c2601de996" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a7429047097efd111095b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6c0f272a576105f05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13e71536b4" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f9dff5f0e1b806" + }, + { + "_tag": "ByteArray", + "bytearray": "f17462348458ef1a36" + }, + { + "_tag": "ByteArray", + "bytearray": "81990021399a22e653ce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1855472957428585748" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a956b56358d4ba5" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "213e271ed8" + } + ] + }, + "cborHex": "9fd8669f1b3329bdadc69be80b9fd8669f1bb595f5ddc165b3139f4842e0df8bc8c806074985e05df0246501591e47e0be645fba676f1b472df55c0c5f00d81bcb3ffb6934858491ffffd8669f1b9c469a7c94cddba79f490dd306e53a08f79e52466f7070be11f74c2055b84ceb690b0b87812e39411dffffd8669f1b17cd2a97f895f71c9f1be69b0511bfb108dd1b30ef1e6244c3eeff47f7764e79bbced1ffff1bc6fb847363c42be2ffff9fd8669f1bd0400735fc6a77689f1b163b7ff212f03c031b91a4cc2d5992b878ffff80481eb33db326b4bb71ffd8669f1b8283b9a821e6e6749fbf4813f15e771c471f781b0a37822009fd08414c2e67301f8356ccde7e6da493433287794430c521fc4854d80b5dfea38bba46d0877ee0fe3f1bb02e2024d4868b2effbf1b22d68efd67aa89481b17d3ffa79a34c0321b32e1958e2144c7b347c273c2601de9964b6a7429047097efd111095b41cf49e6c0f272a576105f054513e71536b4ff9f47f9dff5f0e1b80649f17462348458ef1a364a81990021399a22e653ce1b19bff6d2f5dfd514489a956b56358d4ba5ffffff45213e271ed8ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 51, 41, 189, 173, 198, 155, 232, 11, 159, 216, 102, 159, 27, 181, 149, 245, 221, 193, 101, + 179, 19, 159, 72, 66, 224, 223, 139, 200, 200, 6, 7, 73, 133, 224, 93, 240, 36, 101, 1, 89, 30, 71, 224, 190, 100, + 95, 186, 103, 111, 27, 71, 45, 245, 92, 12, 95, 0, 216, 27, 203, 63, 251, 105, 52, 133, 132, 145, 255, 255, 216, + 102, 159, 27, 156, 70, 154, 124, 148, 205, 219, 167, 159, 73, 13, 211, 6, 229, 58, 8, 247, 158, 82, 70, 111, 112, + 112, 190, 17, 247, 76, 32, 85, 184, 76, 235, 105, 11, 11, 135, 129, 46, 57, 65, 29, 255, 255, 216, 102, 159, 27, + 23, 205, 42, 151, 248, 149, 247, 28, 159, 27, 230, 155, 5, 17, 191, 177, 8, 221, 27, 48, 239, 30, 98, 68, 195, + 238, 255, 71, 247, 118, 78, 121, 187, 206, 209, 255, 255, 27, 198, 251, 132, 115, 99, 196, 43, 226, 255, 255, 159, + 216, 102, 159, 27, 208, 64, 7, 53, 252, 106, 119, 104, 159, 27, 22, 59, 127, 242, 18, 240, 60, 3, 27, 145, 164, + 204, 45, 89, 146, 184, 120, 255, 255, 128, 72, 30, 179, 61, 179, 38, 180, 187, 113, 255, 216, 102, 159, 27, 130, + 131, 185, 168, 33, 230, 230, 116, 159, 191, 72, 19, 241, 94, 119, 28, 71, 31, 120, 27, 10, 55, 130, 32, 9, 253, 8, + 65, 76, 46, 103, 48, 31, 131, 86, 204, 222, 126, 109, 164, 147, 67, 50, 135, 121, 68, 48, 197, 33, 252, 72, 84, + 216, 11, 93, 254, 163, 139, 186, 70, 208, 135, 126, 224, 254, 63, 27, 176, 46, 32, 36, 212, 134, 139, 46, 255, + 191, 27, 34, 214, 142, 253, 103, 170, 137, 72, 27, 23, 211, 255, 167, 154, 52, 192, 50, 27, 50, 225, 149, 142, 33, + 68, 199, 179, 71, 194, 115, 194, 96, 29, 233, 150, 75, 106, 116, 41, 4, 112, 151, 239, 209, 17, 9, 91, 65, 207, + 73, 230, 192, 242, 114, 165, 118, 16, 95, 5, 69, 19, 231, 21, 54, 180, 255, 159, 71, 249, 223, 245, 240, 225, 184, + 6, 73, 241, 116, 98, 52, 132, 88, 239, 26, 54, 74, 129, 153, 0, 33, 57, 154, 34, 230, 83, 206, 27, 25, 191, 246, + 210, 245, 223, 213, 20, 72, 154, 149, 107, 86, 53, 141, 75, 165, 255, 255, 255, 69, 33, 62, 39, 30, 216, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 951, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1741681092117697415" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c07f9fdc034542db5a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + } + ] + }, + "cborHex": "9fd905059f80ffbf1b182bb1b9b7b0938749c07f9fdc034542db5a1bffffffffffffffed10ffff", + "cborBytes": [ + 159, 217, 5, 5, 159, 128, 255, 191, 27, 24, 43, 177, 185, 183, 176, 147, 135, 73, 192, 127, 159, 220, 3, 69, 66, + 219, 90, 27, 255, 255, 255, 255, 255, 255, 255, 237, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 952, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "88e63bead16e48da" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6477810464425388324" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10291518854521146334" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c2f287358d" + }, + { + "_tag": "ByteArray", + "bytearray": "c37de6f7d2afe0ef" + }, + { + "_tag": "ByteArray", + "bytearray": "45cb01bcfa6aa11d" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8441208852484612356" + } + } + ] + }, + "cborHex": "9f4888e63bead16e48da9f1b59e5ce4be66229241b8ed2d1df12f7cbde9f45c2f287358d48c37de6f7d2afe0ef4845cb01bcfa6aa11dffff1b752532ba573a6104ff", + "cborBytes": [ + 159, 72, 136, 230, 59, 234, 209, 110, 72, 218, 159, 27, 89, 229, 206, 75, 230, 98, 41, 36, 27, 142, 210, 209, 223, + 18, 247, 203, 222, 159, 69, 194, 242, 135, 53, 141, 72, 195, 125, 230, 247, 210, 175, 224, 239, 72, 69, 203, 1, + 188, 250, 106, 161, 29, 255, 255, 27, 117, 37, 50, 186, 87, 58, 97, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 953, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "4bfd0163" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7348529115376114905" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17273253752988362805" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18360029613831025003" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6377940054784100976" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6923796662098688721" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12084321897955110506" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc82" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12283461071729949152" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11349475283324205324" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14693234221723144451" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5014717711035748969" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f80444bfd0163d8669f1bfffffffffffffffe9fd8669f1b65fb384bd79bdcd99f1befb6ecc54e0de8351bfecbeda87e0cf16bffffbf1b5882feb024244a701b601644615d6d7ad11ba7b422bd9f16ae6a42dc821baa779ec3a0cd79e01b9d816fa3599d790c1bcbe8daad336bd1031b4597db3067255269ffffffff", + "cborBytes": [ + 159, 128, 68, 75, 253, 1, 99, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 216, 102, 159, 27, + 101, 251, 56, 75, 215, 155, 220, 217, 159, 27, 239, 182, 236, 197, 78, 13, 232, 53, 27, 254, 203, 237, 168, 126, + 12, 241, 107, 255, 255, 191, 27, 88, 130, 254, 176, 36, 36, 74, 112, 27, 96, 22, 68, 97, 93, 109, 122, 209, 27, + 167, 180, 34, 189, 159, 22, 174, 106, 66, 220, 130, 27, 170, 119, 158, 195, 160, 205, 121, 224, 27, 157, 129, 111, + 163, 89, 157, 121, 12, 27, 203, 232, 218, 173, 51, 107, 209, 3, 27, 69, 151, 219, 48, 103, 37, 82, 105, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 954, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16801904002522249645" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16378975061098155057" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18434369412226533457" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6438543875906811018" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3c4a3aec2ab6484ab4f7e5e4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12345137427733089340" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11169839489225123517" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d8e7f2724d20d773a6bcea3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12948085321425787388" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c96df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13163458990231888733" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fd4c68da3d9c83f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "844aa3f73a358a311f5cb5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6642d67f2b6d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12298028974577631224" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5600fe60a3828ba36f69c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15388354745294391866" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1be92c5aab848d79ad9f1be34dcf09ddbccc31ffffd8669f1bffd4094f9a16c8519fd8669f1b595a4d8ad231348a9f4c3c4a3aec2ab6484ab4f7e5e41bab52bd154b690c3c1b9b033dd5c964e6bdffffa0bf4c1d8e7f2724d20d773a6bcea31bb3b0d6ff790899fc432c96df1bb6ae00356831a35d483fd4c68da3d9c83f4b844aa3f73a358a311f5cb5466642d67f2b6d1baaab6031d3293ff84be5600fe60a3828ba36f69c1bd58e6b1c1ef80a3affffff9f80a0ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 233, 44, 90, 171, 132, 141, 121, 173, 159, 27, 227, 77, 207, 9, 221, 188, 204, 49, 255, + 255, 216, 102, 159, 27, 255, 212, 9, 79, 154, 22, 200, 81, 159, 216, 102, 159, 27, 89, 90, 77, 138, 210, 49, 52, + 138, 159, 76, 60, 74, 58, 236, 42, 182, 72, 74, 180, 247, 229, 228, 27, 171, 82, 189, 21, 75, 105, 12, 60, 27, + 155, 3, 61, 213, 201, 100, 230, 189, 255, 255, 160, 191, 76, 29, 142, 127, 39, 36, 210, 13, 119, 58, 107, 206, + 163, 27, 179, 176, 214, 255, 121, 8, 153, 252, 67, 44, 150, 223, 27, 182, 174, 0, 53, 104, 49, 163, 93, 72, 63, + 212, 198, 141, 163, 217, 200, 63, 75, 132, 74, 163, 247, 58, 53, 138, 49, 31, 92, 181, 70, 102, 66, 214, 127, 43, + 109, 27, 170, 171, 96, 49, 211, 41, 63, 248, 75, 229, 96, 15, 230, 10, 56, 40, 186, 54, 246, 156, 27, 213, 142, + 107, 28, 30, 248, 10, 58, 255, 255, 255, 159, 128, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 955, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1945123677547333940" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51c3577c734549" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4243252245467931541" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9757292486388594956" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9e8d036c22c7e270" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ac33e93633" + }, + { + "_tag": "ByteArray", + "bytearray": "acc553ad9a99ab5005690bf3" + }, + { + "_tag": "ByteArray", + "bytearray": "df120839dc9c" + }, + { + "_tag": "ByteArray", + "bytearray": "23aa9b7c563a97" + }, + { + "_tag": "ByteArray", + "bytearray": "e6813a7a6c082deaf7934ca1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8758240874940751146" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6700592970512388941" + } + } + ] + }, + "cborHex": "9fbf1b1afe77add46909344751c3577c734549ffbf1b3ae30f6f7f7ea3951b8768ddd1ecc7b90cff489e8d036c22c7e2709f9f45ac33e936334cacc553ad9a99ab5005690bf346df120839dc9c4723aa9b7c563a974ce6813a7a6c082deaf7934ca1ff1b798b85ac30265d2aff1b5cfd49ce2fded34dff", + "cborBytes": [ + 159, 191, 27, 26, 254, 119, 173, 212, 105, 9, 52, 71, 81, 195, 87, 124, 115, 69, 73, 255, 191, 27, 58, 227, 15, + 111, 127, 126, 163, 149, 27, 135, 104, 221, 209, 236, 199, 185, 12, 255, 72, 158, 141, 3, 108, 34, 199, 226, 112, + 159, 159, 69, 172, 51, 233, 54, 51, 76, 172, 197, 83, 173, 154, 153, 171, 80, 5, 105, 11, 243, 70, 223, 18, 8, 57, + 220, 156, 71, 35, 170, 155, 124, 86, 58, 151, 76, 230, 129, 58, 122, 108, 8, 45, 234, 247, 147, 76, 161, 255, 27, + 121, 139, 133, 172, 48, 38, 93, 42, 255, 27, 92, 253, 73, 206, 47, 222, 211, 77, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 956, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12214289532760265484" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1ea540ec1989e76f" + } + ] + }, + "cborHex": "9f1ba981df9daff2930c1bffffffffffffffec481ea540ec1989e76fff", + "cborBytes": [ + 159, 27, 169, 129, 223, 157, 175, 242, 147, 12, 27, 255, 255, 255, 255, 255, 255, 255, 236, 72, 30, 165, 64, 236, + 25, 137, 231, 111, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 957, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13453896428609875486" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16754774012387819754" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2211831305405720082" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c8dc94bb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8429432468346138118" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9216759833346776505" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2acb1222a3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16526161027000879881" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc19ebc45e6413e7f770b1" + } + } + ] + } + ] + }, + "cborHex": "9f1bbab5d78520302e1e80d8669f1be884ea31945280ea9fd8669f1b1eb200da7dcbe6129f44c8dc94bb1b74fb5c2b3dea6e06ffffffffbf1b7fe8823c66b91db9452acb1222a31be558b7e50b4acb094bdc19ebc45e6413e7f770b1ffff", + "cborBytes": [ + 159, 27, 186, 181, 215, 133, 32, 48, 46, 30, 128, 216, 102, 159, 27, 232, 132, 234, 49, 148, 82, 128, 234, 159, + 216, 102, 159, 27, 30, 178, 0, 218, 125, 203, 230, 18, 159, 68, 200, 220, 148, 187, 27, 116, 251, 92, 43, 61, 234, + 110, 6, 255, 255, 255, 255, 191, 27, 127, 232, 130, 60, 102, 185, 29, 185, 69, 42, 203, 18, 34, 163, 27, 229, 88, + 183, 229, 11, 74, 203, 9, 75, 220, 25, 235, 196, 94, 100, 19, 231, 247, 112, 177, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 958, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa03cd00900002" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15380191879619977345" + } + } + ] + }, + "cborHex": "9f47fa03cd009000021bd5716b06da18a081ff", + "cborBytes": [159, 71, 250, 3, 205, 0, 144, 0, 2, 27, 213, 113, 107, 6, 218, 24, 160, 129, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 959, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10837743664657173047" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4691853916905656197" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1479450199635397265" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f7e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8880974371007032472" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15449822150574887545" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7117271774990304158" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1230534817556082694" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b1834c4aa65db3b0" + } + ] + }, + "cborHex": "9fd8669f1b9667667132a18a379fd8669f1b411cd047672fcf859f1b1488101e3c260a91428f7e1b7b3f8f231338ec981bd668cb63a7fa52791b62c5a0f86e36039effffffff1b1113bce59c2e300648b1834c4aa65db3b0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 150, 103, 102, 113, 50, 161, 138, 55, 159, 216, 102, 159, 27, 65, 28, 208, 71, 103, 47, + 207, 133, 159, 27, 20, 136, 16, 30, 60, 38, 10, 145, 66, 143, 126, 27, 123, 63, 143, 35, 19, 56, 236, 152, 27, + 214, 104, 203, 99, 167, 250, 82, 121, 27, 98, 197, 160, 248, 110, 54, 3, 158, 255, 255, 255, 255, 27, 17, 19, 188, + 229, 156, 46, 48, 6, 72, 177, 131, 76, 74, 166, 93, 179, 176, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 960, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1542013819732065496" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "553638417822271341" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3301859830362356587" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e9f52" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10752872913282399833" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8fe719023f6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11712338946621991544" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17597446290685106041" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12513628941629377492" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7549972639809865357" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dce748bef7fd3e74d3950c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5e303eb74228" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4921005515354580423" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14613331935401191696" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "884266981862367882" + } + } + ] + }, + "cborHex": "9fbf1b156655662bdf7cd81b07aeeb352c4e476d1b2dd290058ee13b6b438e9f521b9539e0f1871dfe5946c8fe719023f61ba28a9637a2606a781bf436b02a864d17791bada95738ecddcbd41b68c6e41d4bc9068dff9f9f4bdce748bef7fd3e74d3950cff465e303eb742281b444aec719072a5c7ff1bcaccfbf87275a9101b0c458c228c83628aff", + "cborBytes": [ + 159, 191, 27, 21, 102, 85, 102, 43, 223, 124, 216, 27, 7, 174, 235, 53, 44, 78, 71, 109, 27, 45, 210, 144, 5, 142, + 225, 59, 107, 67, 142, 159, 82, 27, 149, 57, 224, 241, 135, 29, 254, 89, 70, 200, 254, 113, 144, 35, 246, 27, 162, + 138, 150, 55, 162, 96, 106, 120, 27, 244, 54, 176, 42, 134, 77, 23, 121, 27, 173, 169, 87, 56, 236, 221, 203, 212, + 27, 104, 198, 228, 29, 75, 201, 6, 141, 255, 159, 159, 75, 220, 231, 72, 190, 247, 253, 62, 116, 211, 149, 12, + 255, 70, 94, 48, 62, 183, 66, 40, 27, 68, 74, 236, 113, 144, 114, 165, 199, 255, 27, 202, 204, 251, 248, 114, 117, + 169, 16, 27, 12, 69, 140, 34, 140, 131, 98, 138, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 961, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16364552415577304185" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a94b747d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5075195608448897935" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "853777233535206001" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16961049636477856871" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4c321641783b58c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d75b2df15496" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16004204594515723549" + } + } + ] + } + ] + }, + "cborHex": "9f1be31a91b806beec7944a94b747d1b466eb7842f38138fbf1b0bd939ded22e82711beb61c0c7e807ec6748f4c321641783b58c46d75b2df15496ff9fa01bde1a5b48e8c8c51dffff", + "cborBytes": [ + 159, 27, 227, 26, 145, 184, 6, 190, 236, 121, 68, 169, 75, 116, 125, 27, 70, 110, 183, 132, 47, 56, 19, 143, 191, + 27, 11, 217, 57, 222, 210, 46, 130, 113, 27, 235, 97, 192, 199, 232, 7, 236, 103, 72, 244, 195, 33, 100, 23, 131, + 181, 140, 70, 215, 91, 45, 241, 84, 150, 255, 159, 160, 27, 222, 26, 91, 72, 232, 200, 197, 29, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 962, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4396191373815147447" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f877ab63128" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10577328425328514419" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2007229384622701959" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12856363881311020731" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14015402964712306760" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14652571277923355276" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88e79d44108f60cdee" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2982500752005932275" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2281385616104827755" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b3d0268c330e36bb7461f877ab631281b92ca3829685915731b1bdb1c7d95297d871bb26afad588b4a6bb1bc280b6bd57a238481bcb5863f1d2b68a8c4988e79d44108f60cdeeffd8669f1b2963f8a1c9a624f39f1b1fa91c216b9d2b6bffffff", + "cborBytes": [ + 159, 191, 27, 61, 2, 104, 195, 48, 227, 107, 183, 70, 31, 135, 122, 182, 49, 40, 27, 146, 202, 56, 41, 104, 89, + 21, 115, 27, 27, 219, 28, 125, 149, 41, 125, 135, 27, 178, 106, 250, 213, 136, 180, 166, 187, 27, 194, 128, 182, + 189, 87, 162, 56, 72, 27, 203, 88, 99, 241, 210, 182, 138, 140, 73, 136, 231, 157, 68, 16, 143, 96, 205, 238, 255, + 216, 102, 159, 27, 41, 99, 248, 161, 201, 166, 36, 243, 159, 27, 31, 169, 28, 33, 107, 157, 43, 107, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 963, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9baed54902e21db0bb3afc3e" + }, + { + "_tag": "ByteArray", + "bytearray": "5ee044e515be98" + }, + { + "_tag": "ByteArray", + "bytearray": "237bbaa3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "32450494121590019" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2954792062790081394" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4cdd9fcaf9a068740723" + }, + { + "_tag": "ByteArray", + "bytearray": "5c92" + }, + { + "_tag": "ByteArray", + "bytearray": "f0feb4531613e2a713ec22" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3226607183747999210" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6695344682829246885" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dfdaa05bcedc322363" + } + ] + }, + "cborHex": "9f4c9baed54902e21db0bb3afc3e475ee044e515be9844237bbaa39fd8669f1b0073498d6ee73d039f1b290187b9d7bf1b724a4cdd9fcaf9a068740723425c924bf0feb4531613e2a713ec221b2cc736236905e5eaffff1b5ceaa483fcd671a5ff49dfdaa05bcedc322363ff", + "cborBytes": [ + 159, 76, 155, 174, 213, 73, 2, 226, 29, 176, 187, 58, 252, 62, 71, 94, 224, 68, 229, 21, 190, 152, 68, 35, 123, + 186, 163, 159, 216, 102, 159, 27, 0, 115, 73, 141, 110, 231, 61, 3, 159, 27, 41, 1, 135, 185, 215, 191, 27, 114, + 74, 76, 221, 159, 202, 249, 160, 104, 116, 7, 35, 66, 92, 146, 75, 240, 254, 180, 83, 22, 19, 226, 167, 19, 236, + 34, 27, 44, 199, 54, 35, 105, 5, 229, 234, 255, 255, 27, 92, 234, 164, 131, 252, 214, 113, 165, 255, 73, 223, 218, + 160, 91, 206, 220, 50, 35, 99, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 964, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e084" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2b0c6e13d263e82222ee840c" + }, + { + "_tag": "ByteArray", + "bytearray": "a81eed468d83be" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a35" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2172310109055462852" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64b827ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14991565788633684570" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ec17eff2a7c0b7c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28b44c70806d0ffe5f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92334a23554a4d50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17028989264432700553" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f809f42e084ff4c2b0c6e13d263e82222ee840c47a81eed468d83beffbf424a351b1e259888e83dadc44464b827ce1bd00cbda7f268da5a487ec17eff2a7c0b7c4928b44c70806d0ffe5f4892334a23554a4d501bec531f8336739c89ffff", + "cborBytes": [ + 159, 159, 128, 159, 66, 224, 132, 255, 76, 43, 12, 110, 19, 210, 99, 232, 34, 34, 238, 132, 12, 71, 168, 30, 237, + 70, 141, 131, 190, 255, 191, 66, 74, 53, 27, 30, 37, 152, 136, 232, 61, 173, 196, 68, 100, 184, 39, 206, 27, 208, + 12, 189, 167, 242, 104, 218, 90, 72, 126, 193, 126, 255, 42, 124, 11, 124, 73, 40, 180, 76, 112, 128, 109, 15, + 254, 95, 72, 146, 51, 74, 35, 85, 74, 77, 80, 27, 236, 83, 31, 131, 54, 115, 156, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 965, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7015311962927982288" + } + } + ] + }, + "cborHex": "9f1b615b650fc2dee6d0ff", + "cborBytes": [159, 27, 97, 91, 101, 15, 194, 222, 230, 208, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 966, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13649726276918153808" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "358bf06e89e0cfcf23fc" + } + ] + }, + "cborHex": "9f9f1bbd6d91bac1059250ff4a358bf06e89e0cfcf23fcff", + "cborBytes": [ + 159, 159, 27, 189, 109, 145, 186, 193, 5, 146, 80, 255, 74, 53, 139, 240, 110, 137, 224, 207, 207, 35, 252, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 967, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4569937320498780358" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e40a009af5d2de4f534" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63337a3820c6b6f52429c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce2f99bb2cd33844" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a898606a6a" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11097628153183723729" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6912502907750458227" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8285889053050813422" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5ad884b73f873dccebdb" + }, + { + "_tag": "ByteArray", + "bytearray": "ee0f7ca4ffdd5c872c35" + }, + { + "_tag": "ByteArray", + "bytearray": "c1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2430283780531298896" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e2c63a601264" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15604215507755891052" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6aafae759c76404f70" + }, + { + "_tag": "ByteArray", + "bytearray": "4829c6" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8536947449206195079" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11037620662379098235" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7624541346570450101" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f4cbe2c473030de181c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5485125229736760033" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14921003718127736743" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4943553898325630175" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6007d1dcfb1a6b4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "640c9ec155a89cfe29193d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c46a93d76f686be1033885aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12634665999406239423" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3e9839960bbfbaccdbb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "945fc82647e0bf" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3f6badc7ca2158c69fbf4a2e40a009af5d2de4f5344b63337a3820c6b6f52429c648ce2f99bb2cd3384445a898606a6affd8669f1b9a02b201efe3e0d19f1b5fee24c5455223731b72fd643177643bee4a5ad884b73f873dccebdb4aee0f7ca4ffdd5c872c3541c1ffff1b21ba1a38e1f622509f46e2c63a601264ff9f1bd88d4f54626e796c496aafae759c76404f70434829c6ffffff9fd8669f1b76795479701cc3879f1b992d81833a9e307b1b69cfcff5499c34b54a7f4cbe2c473030de181c1b4c1f1455c2fe12e1ffffbf1bcf120dd3a74957a71b449b081415b25cdf486007d1dcfb1a6b4c4b640c9ec155a89cfe29193d4cc46a93d76f686be1033885aa1baf5759c8fe508ebf4af3e9839960bbfbaccdbb47945fc82647e0bfffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 63, 107, 173, 199, 202, 33, 88, 198, 159, 191, 74, 46, 64, 160, 9, 175, 93, 45, 228, 245, + 52, 75, 99, 51, 122, 56, 32, 198, 182, 245, 36, 41, 198, 72, 206, 47, 153, 187, 44, 211, 56, 68, 69, 168, 152, 96, + 106, 106, 255, 216, 102, 159, 27, 154, 2, 178, 1, 239, 227, 224, 209, 159, 27, 95, 238, 36, 197, 69, 82, 35, 115, + 27, 114, 253, 100, 49, 119, 100, 59, 238, 74, 90, 216, 132, 183, 63, 135, 61, 204, 235, 219, 74, 238, 15, 124, + 164, 255, 221, 92, 135, 44, 53, 65, 193, 255, 255, 27, 33, 186, 26, 56, 225, 246, 34, 80, 159, 70, 226, 198, 58, + 96, 18, 100, 255, 159, 27, 216, 141, 79, 84, 98, 110, 121, 108, 73, 106, 175, 174, 117, 156, 118, 64, 79, 112, 67, + 72, 41, 198, 255, 255, 255, 159, 216, 102, 159, 27, 118, 121, 84, 121, 112, 28, 195, 135, 159, 27, 153, 45, 129, + 131, 58, 158, 48, 123, 27, 105, 207, 207, 245, 73, 156, 52, 181, 74, 127, 76, 190, 44, 71, 48, 48, 222, 24, 28, + 27, 76, 31, 20, 85, 194, 254, 18, 225, 255, 255, 191, 27, 207, 18, 13, 211, 167, 73, 87, 167, 27, 68, 155, 8, 20, + 21, 178, 92, 223, 72, 96, 7, 209, 220, 251, 26, 107, 76, 75, 100, 12, 158, 193, 85, 168, 156, 254, 41, 25, 61, 76, + 196, 106, 147, 215, 111, 104, 107, 225, 3, 56, 133, 170, 27, 175, 87, 89, 200, 254, 80, 142, 191, 74, 243, 233, + 131, 153, 96, 187, 251, 172, 205, 187, 71, 148, 95, 200, 38, 71, 224, 191, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 968, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10216711952832239086" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40cd66d3db59" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74841d5800785304edd3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8455612057677977381" + } + } + } + ] + } + ] + }, + "cborHex": "9f0fbf1b8dc90d64010d95ee4640cd66d3db594a74841d5800785304edd31b75585e5de067d725ffff", + "cborBytes": [ + 159, 15, 191, 27, 141, 201, 13, 100, 1, 13, 149, 238, 70, 64, 205, 102, 211, 219, 89, 74, 116, 132, 29, 88, 0, + 120, 83, 4, 237, 211, 27, 117, 88, 94, 93, 224, 103, 215, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 969, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7024589590289771750" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17261381430894643148" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15832463956875800624" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13635556036706957776" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3360520743451124928" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5376108475315363727" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15194271952891806351" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e8c12dcfcced47d506cc7fc3" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1366efda4f1ce7c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5849308832408275949" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9255d12d95fad62534" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5705ed0c9bd8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0274b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8772060007264543645" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6d6e22d4bfd924ab8b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4313919193696518450" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6671087644970763428" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17516889103773409432" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "674e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17750476254966728730" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8223630064459292468" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4676016721857331199" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4157378278824098005" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10706365544413298137" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10000785528736279399" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b617c5b03b620ece69f9f1bef8cbef4e8ffc7cc1bdbb83615b4c1f0301bbd3b39f89ad9f9d01b2ea2f7cfb5bc64c0ff1b4a9bc62ca9239f8f1bd2dce5d6a4cc028fffff4ce8c12dcfcced47d506cc7fc3bf481366efda4f1ce7c11b512ceb6461400bed499255d12d95fad62534465705ed0c9bd843e0274b1b79bc9e19a969e39d4af6d6e22d4bfd924ab8b21b3bde1ea68a054132ffd8669f1b5c9476de3ffac4a49f1bf3187dd4d85320989f42674e1bf6565c1b9b4c481a1b722033f914519f34ffd8669f1b40e48c6f1617bfff9f1b39b1f984923c38d5ffff9f1b9494a6bce63c7dd9ff1b8ac9ed73b3316b67ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 97, 124, 91, 3, 182, 32, 236, 230, 159, 159, 27, 239, 140, 190, 244, 232, 255, 199, 204, + 27, 219, 184, 54, 21, 180, 193, 240, 48, 27, 189, 59, 57, 248, 154, 217, 249, 208, 27, 46, 162, 247, 207, 181, + 188, 100, 192, 255, 27, 74, 155, 198, 44, 169, 35, 159, 143, 27, 210, 220, 229, 214, 164, 204, 2, 143, 255, 255, + 76, 232, 193, 45, 207, 204, 237, 71, 213, 6, 204, 127, 195, 191, 72, 19, 102, 239, 218, 79, 28, 231, 193, 27, 81, + 44, 235, 100, 97, 64, 11, 237, 73, 146, 85, 209, 45, 149, 250, 214, 37, 52, 70, 87, 5, 237, 12, 155, 216, 67, 224, + 39, 75, 27, 121, 188, 158, 25, 169, 105, 227, 157, 74, 246, 214, 226, 45, 75, 253, 146, 74, 184, 178, 27, 59, 222, + 30, 166, 138, 5, 65, 50, 255, 216, 102, 159, 27, 92, 148, 118, 222, 63, 250, 196, 164, 159, 27, 243, 24, 125, 212, + 216, 83, 32, 152, 159, 66, 103, 78, 27, 246, 86, 92, 27, 155, 76, 72, 26, 27, 114, 32, 51, 249, 20, 81, 159, 52, + 255, 216, 102, 159, 27, 64, 228, 140, 111, 22, 23, 191, 255, 159, 27, 57, 177, 249, 132, 146, 60, 56, 213, 255, + 255, 159, 27, 148, 148, 166, 188, 230, 60, 125, 217, 255, 27, 138, 201, 237, 115, 179, 49, 107, 103, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 970, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1913cd" + } + ] + }, + "cborHex": "9fbf1307ff431913cdff", + "cborBytes": [159, 191, 19, 7, 255, 67, 25, 19, 205, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 971, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6452577039095382877" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "98f7b7bd06" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18364490461814212431" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16661066521757324575" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5419360106188495724" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8cd609986233" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3307606173340624366" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4772712183918695151" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2252767850693933677" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14577543751663275426" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1462077073084180900" + } + } + ] + }, + "cborHex": "9fd8669f1b598c28a13d1f435d9f9f4598f7b7bd061bfedbc6c6997c474fffd8669f1be737ffba387f951f9f1b4b356f4db749db6c468cd6099862331b2de6fa4a4adb65ee1b423c1471c1a712efffff1b1f43706cae083a6d1bca4dd6ce979acda2ffff1b144a5759ff6ce9a4ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 89, 140, 40, 161, 61, 31, 67, 93, 159, 159, 69, 152, 247, 183, 189, 6, 27, 254, 219, 198, + 198, 153, 124, 71, 79, 255, 216, 102, 159, 27, 231, 55, 255, 186, 56, 127, 149, 31, 159, 27, 75, 53, 111, 77, 183, + 73, 219, 108, 70, 140, 214, 9, 152, 98, 51, 27, 45, 230, 250, 74, 74, 219, 101, 238, 27, 66, 60, 20, 113, 193, + 167, 18, 239, 255, 255, 27, 31, 67, 112, 108, 174, 8, 58, 109, 27, 202, 77, 214, 206, 151, 154, 205, 162, 255, + 255, 27, 20, 74, 87, 89, 255, 108, 233, 164, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 972, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1918309626800801382" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16012002952706294519" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c53479a740779af" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4ebf22d029f5891" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13674787854278595791" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aaab3addbec3f3a4540d0d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15699561102406102810" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3958867910905971523" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5126429678140383453" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16663390270680083689" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7134054823234242984" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e27c6bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67efce692234" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15137746588938581019" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bfb3e1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b9546d0fc5dfb5011" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9920310e965be2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14458823875469364594" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1f7f07ba4ac21a63a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14371383521826866310" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7a05d98dca159f03c0e539" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8251777150695763250" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12728647452548179585" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14230219160072187279" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a6d8b5506fbe2e" + }, + { + "_tag": "ByteArray", + "bytearray": "772bce942d477c88" + }, + { + "_tag": "ByteArray", + "bytearray": "7f" + }, + { + "_tag": "ByteArray", + "bytearray": "fc165c3308" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fbed294d92a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5479888325631075166" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "325761f70fb89c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2974875269831842704" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d492bf82d390d97bc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13971537343131571445" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fa0ffbf1b1a9f347122ac86661bde360fd9aa9082f74137480c53479a740779af48a4ebf22d029f58911bbdc69b19f11a14cf4baaab3addbec3f3a4540d0d1bd9e00ba48e74af1affd8669f1b36f0b963d63e43439f1b4724bca19b93e0dd1be740412a2d962ce9ffffd8669f1b630141105b0a09a89fbf444e27c6bf413c4667efce6922341bd2141451c590b41b448bfb3e1d492b9546d0fc5dfb5011479920310e965be21bc8a80fb56749cd7249b1f7f07ba4ac21a63a1bc771692b95648486ff9f4b7a05d98dca159f03c0e5391b7284339948e7ed32ffd8669f1bb0a53d6b3850a6819f1bc57be4ee600f6d8f47a6d8b5506fbe2e48772bce942d477c88417f45fc165c3308ffffbf461fbed294d92a1b4c0c7966020ce35e47325761f70fb89c1b2948e14bdd6bdb90498d492bf82d390d97bc1bc1e4df306f7654f5ffffffff", + "cborBytes": [ + 159, 159, 160, 255, 191, 27, 26, 159, 52, 113, 34, 172, 134, 102, 27, 222, 54, 15, 217, 170, 144, 130, 247, 65, + 55, 72, 12, 83, 71, 154, 116, 7, 121, 175, 72, 164, 235, 242, 45, 2, 159, 88, 145, 27, 189, 198, 155, 25, 241, 26, + 20, 207, 75, 170, 171, 58, 221, 190, 195, 243, 164, 84, 13, 13, 27, 217, 224, 11, 164, 142, 116, 175, 26, 255, + 216, 102, 159, 27, 54, 240, 185, 99, 214, 62, 67, 67, 159, 27, 71, 36, 188, 161, 155, 147, 224, 221, 27, 231, 64, + 65, 42, 45, 150, 44, 233, 255, 255, 216, 102, 159, 27, 99, 1, 65, 16, 91, 10, 9, 168, 159, 191, 68, 78, 39, 198, + 191, 65, 60, 70, 103, 239, 206, 105, 34, 52, 27, 210, 20, 20, 81, 197, 144, 180, 27, 68, 139, 251, 62, 29, 73, 43, + 149, 70, 208, 252, 93, 251, 80, 17, 71, 153, 32, 49, 14, 150, 91, 226, 27, 200, 168, 15, 181, 103, 73, 205, 114, + 73, 177, 247, 240, 123, 164, 172, 33, 166, 58, 27, 199, 113, 105, 43, 149, 100, 132, 134, 255, 159, 75, 122, 5, + 217, 141, 202, 21, 159, 3, 192, 229, 57, 27, 114, 132, 51, 153, 72, 231, 237, 50, 255, 216, 102, 159, 27, 176, + 165, 61, 107, 56, 80, 166, 129, 159, 27, 197, 123, 228, 238, 96, 15, 109, 143, 71, 166, 216, 181, 80, 111, 190, + 46, 72, 119, 43, 206, 148, 45, 71, 124, 136, 65, 127, 69, 252, 22, 92, 51, 8, 255, 255, 191, 70, 31, 190, 210, + 148, 217, 42, 27, 76, 12, 121, 102, 2, 12, 227, 94, 71, 50, 87, 97, 247, 15, 184, 156, 27, 41, 72, 225, 75, 221, + 107, 219, 144, 73, 141, 73, 43, 248, 45, 57, 13, 151, 188, 27, 193, 228, 223, 48, 111, 118, 84, 245, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 973, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18056956376291648425" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "771858380035355919" + } + }, + { + "_tag": "ByteArray", + "bytearray": "204065a384d66082ef6a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "98367885576008250" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9686269562346050349" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2437633702639799810" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4599c5648e173a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "416360299981243876" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17911976391727996030" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4135177123693274887" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "077e5077cf0411ad2a1466" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6907020441223443371" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8837686175309265713" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10339493441318104336" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc36" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1bfa9732278596a3a99f1b0ab6311b6eea750f4a204065a384d66082ef6a1b015d79121d10723affffff1b866c8ad8ce50932d1b21d436effa5d8e02474599c5648e173abf1b05c7357ca2f505e41bf8941fa066215c7e1b396319af550f27074b077e5077cf0411ad2a14661b5fdaaa7f0f7c33ab1b7aa5c4c09bb07b311b8f7d4280ff3f2d1042dc36ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 250, 151, 50, 39, 133, 150, 163, 169, 159, 27, 10, 182, 49, 27, 110, 234, 117, 15, + 74, 32, 64, 101, 163, 132, 214, 96, 130, 239, 106, 27, 1, 93, 121, 18, 29, 16, 114, 58, 255, 255, 255, 27, 134, + 108, 138, 216, 206, 80, 147, 45, 27, 33, 212, 54, 239, 250, 93, 142, 2, 71, 69, 153, 197, 100, 142, 23, 58, 191, + 27, 5, 199, 53, 124, 162, 245, 5, 228, 27, 248, 148, 31, 160, 102, 33, 92, 126, 27, 57, 99, 25, 175, 85, 15, 39, + 7, 75, 7, 126, 80, 119, 207, 4, 17, 173, 42, 20, 102, 27, 95, 218, 170, 127, 15, 124, 51, 171, 27, 122, 165, 196, + 192, 155, 176, 123, 49, 27, 143, 125, 66, 128, 255, 63, 45, 16, 66, 220, 54, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 974, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6643637072381398565" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7122807033748610773" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e99130f65" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b27c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c99241c09298dab6df8e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f04ce7253b3" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5949125923431988315" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "63e2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11682154139619355369" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9f1b5c32f0b7c3e8ce2580bf421a091b62d94b424a3d5ed5456e99130f65439b27c54ac99241c09298dab6df8e469f04ce7253b3ff1b528f8a81ee3b3c5b9f4263e21ba21f594b975eeae9ffff80ff", + "cborBytes": [ + 159, 159, 27, 92, 50, 240, 183, 195, 232, 206, 37, 128, 191, 66, 26, 9, 27, 98, 217, 75, 66, 74, 61, 94, 213, 69, + 110, 153, 19, 15, 101, 67, 155, 39, 197, 74, 201, 146, 65, 192, 146, 152, 218, 182, 223, 142, 70, 159, 4, 206, + 114, 83, 179, 255, 27, 82, 143, 138, 129, 238, 59, 60, 91, 159, 66, 99, 226, 27, 162, 31, 89, 75, 151, 94, 234, + 233, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 975, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fc057505ef01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16826525429692512732" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "875382969726214680" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c4391c76b9eae0669f9e5f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11855148797198725138" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5e2ae3278aa8" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2117334b2400a28892" + } + ] + }, + "cborHex": "9f46fc057505ef0100d905039fd8669f1be983d3ba40e639dc80ffd8669f1b0c25fc2c48f522189f4bc4391c76b9eae0669f9e5f1ba485f305106df012465e2ae3278aa8ffffff492117334b2400a28892ff", + "cborBytes": [ + 159, 70, 252, 5, 117, 5, 239, 1, 0, 217, 5, 3, 159, 216, 102, 159, 27, 233, 131, 211, 186, 64, 230, 57, 220, 128, + 255, 216, 102, 159, 27, 12, 37, 252, 44, 72, 245, 34, 24, 159, 75, 196, 57, 28, 118, 185, 234, 224, 102, 159, 158, + 95, 27, 164, 133, 243, 5, 16, 109, 240, 18, 70, 94, 42, 227, 39, 138, 168, 255, 255, 255, 73, 33, 23, 51, 75, 36, + 0, 162, 136, 146, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 976, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16247654007827686921" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "135433327621355416" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "908458250397223802" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7632869411181752902" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7375867598733499195" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "617768928868155953" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11051340022574111537" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c6f87" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15852520281566898289" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8393" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0e68f44d5f7a" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff29f1be17b433c82056609ffffd8669f1b01e127e4d79eb7989fbf1b0c9b7df72c330b7a1b69ed6649ee6ef2461b665c588084d2db3b1b0892c1915675c2311b995e3f32b1965b31436c6f871bdbff7734b1786871428393ff460e68f44d5f7affff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 225, 123, 67, 60, 130, 5, 102, 9, 255, + 255, 216, 102, 159, 27, 1, 225, 39, 228, 215, 158, 183, 152, 159, 191, 27, 12, 155, 125, 247, 44, 51, 11, 122, 27, + 105, 237, 102, 73, 238, 110, 242, 70, 27, 102, 92, 88, 128, 132, 210, 219, 59, 27, 8, 146, 193, 145, 86, 117, 194, + 49, 27, 153, 94, 63, 50, 177, 150, 91, 49, 67, 108, 111, 135, 27, 219, 255, 119, 52, 177, 120, 104, 113, 66, 131, + 147, 255, 70, 14, 104, 244, 77, 95, 122, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 977, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "07c57903ffd3fc6f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13165871042573733791" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "642e4121111e94" + }, + { + "_tag": "ByteArray", + "bytearray": "46bbe68d61026f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13516833591127657994" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc0b6bdb0b85b17eaee2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1760519399458370635" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2cf0b6acb40fbcbc" + }, + { + "_tag": "ByteArray", + "bytearray": "81b5d078793a0cedd1d77b3a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5746534451961755036" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5246460445647195930" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "59603556546258483" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13973628892931244961" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1290208622493207283" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16672387258790298896" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2564684017275683520" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5609966660273092072" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7208" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17114251305358971464" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "580832" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17271267684686374850" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4807c57903ffd3fc6fd8669f1bb6b691f51b358f9f9f47642e4121111e944746bbe68d61026fd8669f1bbb9570892f3b4e0a9f4afc0b6bdb0b85b17eaee21b186e9f10f0e6744b482cf0b6acb40fbcbc4c81b5d078793a0cedd1d77b3a1b4fbfcaa33ab9759cffff1b48cf2bfa76f04f1affffbf1b00d3c11e6f4a26331bc1ec4d71524d43a11b11e7bde805da8af31be76037e0b5f1c5101b2397968682d6c2c0413e1b4dda9af4635cb5e84272081bed8208e314afd248435808321befafde73be6a27c24190ff9f1bfffffffffffffff6d87c9f1bfffffffffffffffaffffff", + "cborBytes": [ + 159, 72, 7, 197, 121, 3, 255, 211, 252, 111, 216, 102, 159, 27, 182, 182, 145, 245, 27, 53, 143, 159, 159, 71, + 100, 46, 65, 33, 17, 30, 148, 71, 70, 187, 230, 141, 97, 2, 111, 216, 102, 159, 27, 187, 149, 112, 137, 47, 59, + 78, 10, 159, 74, 252, 11, 107, 219, 11, 133, 177, 126, 174, 226, 27, 24, 110, 159, 16, 240, 230, 116, 75, 72, 44, + 240, 182, 172, 180, 15, 188, 188, 76, 129, 181, 208, 120, 121, 58, 12, 237, 209, 215, 123, 58, 27, 79, 191, 202, + 163, 58, 185, 117, 156, 255, 255, 27, 72, 207, 43, 250, 118, 240, 79, 26, 255, 255, 191, 27, 0, 211, 193, 30, 111, + 74, 38, 51, 27, 193, 236, 77, 113, 82, 77, 67, 161, 27, 17, 231, 189, 232, 5, 218, 138, 243, 27, 231, 96, 55, 224, + 181, 241, 197, 16, 27, 35, 151, 150, 134, 130, 214, 194, 192, 65, 62, 27, 77, 218, 154, 244, 99, 92, 181, 232, 66, + 114, 8, 27, 237, 130, 8, 227, 20, 175, 210, 72, 67, 88, 8, 50, 27, 239, 175, 222, 115, 190, 106, 39, 194, 65, 144, + 255, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 216, 124, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 978, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14313742098951546225" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14351548668597772294" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "050ad8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1edab2d3a68e1b1a5c4da7c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11101346115171955933" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12573555914129569037" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13114677394972223746" + } + } + ] + } + ] + }, + "cborHex": "9fd9050d9fbf1bc6a4a099fe8fa5711bfffffffffffffff11bffffffffffffffff1bc72af179f080200643050ad84cc1edab2d3a68e1b1a5c4da7c41dd1b9a0fe7796b7cb4ddffbf0e41001bae7e3e7c8134750d1bfffffffffffffff7ff1bb600b19b2f2a2902ffff", + "cborBytes": [ + 159, 217, 5, 13, 159, 191, 27, 198, 164, 160, 153, 254, 143, 165, 113, 27, 255, 255, 255, 255, 255, 255, 255, 241, + 27, 255, 255, 255, 255, 255, 255, 255, 255, 27, 199, 42, 241, 121, 240, 128, 32, 6, 67, 5, 10, 216, 76, 193, 237, + 171, 45, 58, 104, 225, 177, 165, 196, 218, 124, 65, 221, 27, 154, 15, 231, 121, 107, 124, 180, 221, 255, 191, 14, + 65, 0, 27, 174, 126, 62, 124, 129, 52, 117, 13, 27, 255, 255, 255, 255, 255, 255, 255, 247, 255, 27, 182, 0, 177, + 155, 47, 42, 41, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 979, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13654590248808900793" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4858018024275963305" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2bd3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "809538579397128133" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1548800732169907464" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12395224778989043260" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4705065163186831567" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6349193716284746377" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9118409209630868478" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9130696935701370282" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4728276087299726435" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1bd1883426b7d2aede2cc5b8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2948821081974957800" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13467722987241474564" + } + }, + { + "_tag": "ByteArray", + "bytearray": "761ec7e015d97ede" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14077743027156073063" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7019370622635459306" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de7f04df" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3371396f" + }, + { + "_tag": "ByteArray", + "bytearray": "d070f3cd7b" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bbd7ed97c75c468b99fd8669f1b436b25a77969eda99f422bd31b0b3c0f0c80f0afc5ffffbf1b157e720f5cda2d081bac04af4386c2fe3c1b414bbfd660d100cf1b581cde0ba54b6a891b7e8b18dd60b2c3fe1b7eb6c07c8c3a55aa41321b419e360cc7795c63ff4c1bd1883426b7d2aede2cc5b8d8669f1b28ec5126894ce6e89f1bbae6f6b3abe40a0448761ec7e015d97edeffffffffd8669f1bc35e30b234deba679f9f1b6169d0641cffc2ea44de7f04dfff443371396f45d070f3cd7bffff9f80ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 189, 126, 217, 124, 117, 196, 104, 185, 159, 216, 102, 159, 27, 67, 107, 37, 167, 121, + 105, 237, 169, 159, 66, 43, 211, 27, 11, 60, 15, 12, 128, 240, 175, 197, 255, 255, 191, 27, 21, 126, 114, 15, 92, + 218, 45, 8, 27, 172, 4, 175, 67, 134, 194, 254, 60, 27, 65, 75, 191, 214, 96, 209, 0, 207, 27, 88, 28, 222, 11, + 165, 75, 106, 137, 27, 126, 139, 24, 221, 96, 178, 195, 254, 27, 126, 182, 192, 124, 140, 58, 85, 170, 65, 50, 27, + 65, 158, 54, 12, 199, 121, 92, 99, 255, 76, 27, 209, 136, 52, 38, 183, 210, 174, 222, 44, 197, 184, 216, 102, 159, + 27, 40, 236, 81, 38, 137, 76, 230, 232, 159, 27, 186, 230, 246, 179, 171, 228, 10, 4, 72, 118, 30, 199, 224, 21, + 217, 126, 222, 255, 255, 255, 255, 216, 102, 159, 27, 195, 94, 48, 178, 52, 222, 186, 103, 159, 159, 27, 97, 105, + 208, 100, 28, 255, 194, 234, 68, 222, 127, 4, 223, 255, 68, 51, 113, 57, 111, 69, 208, 112, 243, 205, 123, 255, + 255, 159, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 980, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16005967118564389411" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11872991188271628670" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dcf9068436" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8669f1bde209e4a849cf2239f1ba4c556947646017e45dcf9068436ffffa0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 222, 32, 158, 74, 132, 156, 242, 35, 159, 27, 164, 197, 86, 148, 118, 70, 1, 126, 69, 220, + 249, 6, 132, 54, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 981, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "077d47fae2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebbc757bc9fb7101" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9618783418497995314" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1307136694274391791" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14947468472514708677" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9101" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15307268460440641619" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13485942032319150217" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11527364735618525314" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf0845077d47fae20b48ebbc757bc9fb71011b857cc88e7efd92321b1223e1e5df1a7eef1bcf701361739704c54291011bd46e57903a1ae0531bbb27b0d3a9e478891bfffffffffffffff91b9ff96d2706e82882ffff", + "cborBytes": [ + 159, 191, 8, 69, 7, 125, 71, 250, 226, 11, 72, 235, 188, 117, 123, 201, 251, 113, 1, 27, 133, 124, 200, 142, 126, + 253, 146, 50, 27, 18, 35, 225, 229, 223, 26, 126, 239, 27, 207, 112, 19, 97, 115, 151, 4, 197, 66, 145, 1, 27, + 212, 110, 87, 144, 58, 26, 224, 83, 27, 187, 39, 176, 211, 169, 228, 120, 137, 27, 255, 255, 255, 255, 255, 255, + 255, 249, 27, 159, 249, 109, 39, 6, 232, 40, 130, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 982, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "844dcc96c6879a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d6b88b13e0ea77" + }, + { + "_tag": "ByteArray", + "bytearray": "5349d9607f42" + }, + { + "_tag": "ByteArray", + "bytearray": "841cb56dec333a7ed084" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7050240455459575117" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b61c57778f8a00f434" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15966657299436099259" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16486227833977348705" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d67a11f5ce34f10ccb4db46" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4fe0fd24299bfc2ed3675cd6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1ba8cd31c2d80fb61667b050" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "839026869017997472" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4805915695140105925" + }, + "fields": [] + } + ] + }, + "cborHex": "9f9f47844dcc96c6879a9f47d6b88b13e0ea77465349d9607f424a841cb56dec333a7ed0841b61d77c5728c1954d49b61c57778f8a00f434ffff9fd8669f1bdd94f638074956bb80ffbf1be4cad8de0260a2614c2d67a11f5ce34f10ccb4db46ff4c4fe0fd24299bfc2ed3675cd6ff4c1ba8cd31c2d80fb61667b0501b0ba4d27df4d370a0d8669f1b42b20adca54ceec580ffff", + "cborBytes": [ + 159, 159, 71, 132, 77, 204, 150, 198, 135, 154, 159, 71, 214, 184, 139, 19, 224, 234, 119, 70, 83, 73, 217, 96, + 127, 66, 74, 132, 28, 181, 109, 236, 51, 58, 126, 208, 132, 27, 97, 215, 124, 87, 40, 193, 149, 77, 73, 182, 28, + 87, 119, 143, 138, 0, 244, 52, 255, 255, 159, 216, 102, 159, 27, 221, 148, 246, 56, 7, 73, 86, 187, 128, 255, 191, + 27, 228, 202, 216, 222, 2, 96, 162, 97, 76, 45, 103, 161, 31, 92, 227, 79, 16, 204, 180, 219, 70, 255, 76, 79, + 224, 253, 36, 41, 155, 252, 46, 211, 103, 92, 214, 255, 76, 27, 168, 205, 49, 194, 216, 15, 182, 22, 103, 176, 80, + 27, 11, 164, 210, 125, 244, 211, 112, 160, 216, 102, 159, 27, 66, 178, 10, 220, 165, 76, 238, 197, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 983, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16255092474357883460" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3122151727863400141" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f939615e545e97f4ee79b3a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11574974242098493762" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7335536381898436790" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2f268087d7" + }, + { + "_tag": "ByteArray", + "bytearray": "1b072148" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffff9f10ffffd8669f1be195b07b753a22449f1b2b541c74622b86cd9f4cf939615e545e97f4ee79b3a61ba0a291bf1093b9421b65cd0f795802b0b6ffffff9f452f268087d7441b072148ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 16, 255, 255, 216, 102, 159, 27, 225, 149, + 176, 123, 117, 58, 34, 68, 159, 27, 43, 84, 28, 116, 98, 43, 134, 205, 159, 76, 249, 57, 97, 94, 84, 94, 151, 244, + 238, 121, 179, 166, 27, 160, 162, 145, 191, 16, 147, 185, 66, 27, 101, 205, 15, 121, 88, 2, 176, 182, 255, 255, + 255, 159, 69, 47, 38, 128, 135, 215, 68, 27, 7, 33, 72, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 984, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8296528746254793810" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4299909933724714306" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5488387915178081612" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1a6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2aca032a248c745407" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "479820339732756641" + } + } + ] + }, + "cborHex": "9f04d8669f1b732330f015557c529f1b3bac594d85d5c5429f1b4c2aabbae9bc7d4c42c1a6ff492aca032a248c745407ffff1b06a8aa0e89c738a1ff", + "cborBytes": [ + 159, 4, 216, 102, 159, 27, 115, 35, 48, 240, 21, 85, 124, 82, 159, 27, 59, 172, 89, 77, 133, 213, 197, 66, 159, + 27, 76, 42, 171, 186, 233, 188, 125, 76, 66, 193, 166, 255, 73, 42, 202, 3, 42, 36, 140, 116, 84, 7, 255, 255, 27, + 6, 168, 170, 14, 137, 199, 56, 161, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 985, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00ff23ff2dfa55123b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b000608aff806a85971f8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f9d06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8ebf88d0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2148530169350837895" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ecc9293" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8656057772743782492" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60c9fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11072628996126314542" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16496532705116060880" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "534a5a7da6053ca0c77a4d48" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9608651743547127914" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c57" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2629983675987434073" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10067287415317696733" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf4900ff23ff2dfa55123b4b0b000608aff806a85971f8435f9d060f45e8ebf88d0f1b1dd11cce3d5dd687ff9fbf0b442ecc92930d1bfffffffffffffff81b78207eaebba6f05c4360c9fa1b99a9e1681bcc902e1be4ef7517ca0e7cd01bfffffffffffffff94c534a5a7da6053ca0c77a4d48ffbf1b8558c9da1890786a4195427c571b247f9438144e9a5941f61b8bb63090c1c590ddffffff", + "cborBytes": [ + 159, 191, 73, 0, 255, 35, 255, 45, 250, 85, 18, 59, 75, 11, 0, 6, 8, 175, 248, 6, 168, 89, 113, 248, 67, 95, 157, + 6, 15, 69, 232, 235, 248, 141, 15, 27, 29, 209, 28, 206, 61, 93, 214, 135, 255, 159, 191, 11, 68, 46, 204, 146, + 147, 13, 27, 255, 255, 255, 255, 255, 255, 255, 248, 27, 120, 32, 126, 174, 187, 166, 240, 92, 67, 96, 201, 250, + 27, 153, 169, 225, 104, 27, 204, 144, 46, 27, 228, 239, 117, 23, 202, 14, 124, 208, 27, 255, 255, 255, 255, 255, + 255, 255, 249, 76, 83, 74, 90, 125, 166, 5, 60, 160, 199, 122, 77, 72, 255, 191, 27, 133, 88, 201, 218, 24, 144, + 120, 106, 65, 149, 66, 124, 87, 27, 36, 127, 148, 56, 20, 78, 154, 89, 65, 246, 27, 139, 182, 48, 144, 193, 197, + 144, 221, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 986, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2614970178536821621" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f6a0e3c54219bb" + }, + { + "_tag": "ByteArray", + "bytearray": "30e4e307" + }, + { + "_tag": "ByteArray", + "bytearray": "13" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10953457859112052613" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f80d87e9f9f1b244a3d85cded537547f6a0e3c54219bb4430e4e30741131b98027fe39295a785ffffff", + "cborBytes": [ + 159, 128, 216, 126, 159, 159, 27, 36, 74, 61, 133, 205, 237, 83, 117, 71, 246, 160, 227, 197, 66, 25, 187, 68, 48, + 228, 227, 7, 65, 19, 27, 152, 2, 127, 227, 146, 149, 167, 133, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 987, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2134543473230660702" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a656b44aca395af7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7001545557611899766" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4361f798a458c9f025" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14605612607541813217" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6625347086169275220" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44b77278174f6e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e23371ae6e" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b1d9f6bfac78ac45e48a656b44aca395af71b612a7c96c02beb76494361f798a458c9f0251bcab18f485f7f1fe11b5bf1f61280c9fb544744b77278174f6e45e23371ae6effff", + "cborBytes": [ + 159, 191, 27, 29, 159, 107, 250, 199, 138, 196, 94, 72, 166, 86, 180, 74, 202, 57, 90, 247, 27, 97, 42, 124, 150, + 192, 43, 235, 118, 73, 67, 97, 247, 152, 164, 88, 201, 240, 37, 27, 202, 177, 143, 72, 95, 127, 31, 225, 27, 91, + 241, 246, 18, 128, 201, 251, 84, 71, 68, 183, 114, 120, 23, 79, 110, 69, 226, 51, 113, 174, 110, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 988, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6084684542226052593" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "19cb1c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "810442186946139554" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1553816963565497793" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4310624086434400324" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1330489336148821929" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12197870230222734898" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d217bab1e9fe659e59c7c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f358efa038ebe8dadb6a6" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3200130778039022608" + } + } + ] + }, + "cborHex": "9f9fd8669f1b5471245a65b1b5f19f4319cb1c1b0b3f44e007ea55a21b1590444bbf4c2dc11b3bd269c4982a4844ffffbf1b1276d900829887a91ba9478a58e8bd06324bd217bab1e9fe659e59c7c54b3f358efa038ebe8dadb6a6ffff1b2c6925fcd3cf7410ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 84, 113, 36, 90, 101, 177, 181, 241, 159, 67, 25, 203, 28, 27, 11, 63, 68, 224, 7, + 234, 85, 162, 27, 21, 144, 68, 75, 191, 76, 45, 193, 27, 59, 210, 105, 196, 152, 42, 72, 68, 255, 255, 191, 27, + 18, 118, 217, 0, 130, 152, 135, 169, 27, 169, 71, 138, 88, 232, 189, 6, 50, 75, 210, 23, 186, 177, 233, 254, 101, + 158, 89, 199, 197, 75, 63, 53, 142, 250, 3, 142, 190, 141, 173, 182, 166, 255, 255, 27, 44, 105, 37, 252, 211, + 207, 116, 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 989, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11242735885528439872" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6948724803490542917" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6479886477352957646" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8367545989677302379" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1909304406965438598" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "15cb73e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce3440e1" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3840420827682808651" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16028435231228293312" + } + }, + { + "_tag": "ByteArray", + "bytearray": "61fb12cdb17fef6f" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14513042671905935859" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c90775c8" + } + ] + }, + "cborHex": "9fd905039f1b9c0638b8a8759c40ff9f1b606ed46491fff545d8669f1b59ed2e6b537af6ce80ffbf1b741f7ebe9475c26b1b1a7f363e014348864415cb73e544ce3440e1ff1bfffffffffffffffdff9fd8669f1b354bea65360ba34b9f1bde7070eba6b7f0c04861fb12cdb17fef6fffffff1bc968af6aad0a11f344c90775c8ff", + "cborBytes": [ + 159, 217, 5, 3, 159, 27, 156, 6, 56, 184, 168, 117, 156, 64, 255, 159, 27, 96, 110, 212, 100, 145, 255, 245, 69, + 216, 102, 159, 27, 89, 237, 46, 107, 83, 122, 246, 206, 128, 255, 191, 27, 116, 31, 126, 190, 148, 117, 194, 107, + 27, 26, 127, 54, 62, 1, 67, 72, 134, 68, 21, 203, 115, 229, 68, 206, 52, 64, 225, 255, 27, 255, 255, 255, 255, + 255, 255, 255, 253, 255, 159, 216, 102, 159, 27, 53, 75, 234, 101, 54, 11, 163, 75, 159, 27, 222, 112, 112, 235, + 166, 183, 240, 192, 72, 97, 251, 18, 205, 177, 127, 239, 111, 255, 255, 255, 27, 201, 104, 175, 106, 173, 10, 17, + 243, 68, 201, 7, 117, 200, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 990, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1618330315927597375" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d9efd5a5f488" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "da334e59094d8e03d4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "80cc45c5af66486d2d3320" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1828359522897816558" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b511a328dbbd57f01a93" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17872850627946931784" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc7f55dd179d712638" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5791257668028354999" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a263eaf6defe479dc9c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d74eba2b6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97600258e4958ed82ed4" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12873598313364282824" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d108" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18034936791265323798" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10734054206222663822" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e015fca19a793c2698b63c" + }, + { + "_tag": "ByteArray", + "bytearray": "47164473" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13230770819903406799" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b167576d91a1c313f9f46d9efd5a5f488ffff49da334e59094d8e03d4bf4b80cc45c5af66486d2d33201b195fa34c8c06ebee4ab511a328dbbd57f01a931bf8091ef3a264e64849bc7f55dd179d7126381b505eae2a699651b741d34aa263eaf6defe479dc9c745d74eba2b6b4a97600258e4958ed82ed4ff9f9f1bb2a8357571255dc842d1081bfa48f7755dfe2b16ffd8669f1b94f7056dd9b0808e9f4be015fca19a793c2698b63c44471644731bb79d23f608f242cfffffa0ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 22, 117, 118, 217, 26, 28, 49, 63, 159, 70, 217, 239, 213, 165, 244, 136, 255, 255, 73, + 218, 51, 78, 89, 9, 77, 142, 3, 212, 191, 75, 128, 204, 69, 197, 175, 102, 72, 109, 45, 51, 32, 27, 25, 95, 163, + 76, 140, 6, 235, 238, 74, 181, 17, 163, 40, 219, 189, 87, 240, 26, 147, 27, 248, 9, 30, 243, 162, 100, 230, 72, + 73, 188, 127, 85, 221, 23, 157, 113, 38, 56, 27, 80, 94, 174, 42, 105, 150, 81, 183, 65, 211, 74, 162, 99, 234, + 246, 222, 254, 71, 157, 201, 199, 69, 215, 78, 186, 43, 107, 74, 151, 96, 2, 88, 228, 149, 142, 216, 46, 212, 255, + 159, 159, 27, 178, 168, 53, 117, 113, 37, 93, 200, 66, 209, 8, 27, 250, 72, 247, 117, 93, 254, 43, 22, 255, 216, + 102, 159, 27, 148, 247, 5, 109, 217, 176, 128, 142, 159, 75, 224, 21, 252, 161, 154, 121, 60, 38, 152, 182, 60, + 68, 71, 22, 68, 115, 27, 183, 157, 35, 246, 8, 242, 66, 207, 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 991, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2500509105044555823" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff6807" + } + ] + }, + "cborHex": "9f1b22b397c863cf882f43ff6807ff", + "cborBytes": [159, 27, 34, 179, 151, 200, 99, 207, 136, 47, 67, 255, 104, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 992, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15972358986795076743" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14679338319221785164" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10642197281331530489" + } + }, + { + "_tag": "ByteArray", + "bytearray": "49f87a47" + }, + { + "_tag": "ByteArray", + "bytearray": "5c71903598a2d8" + }, + { + "_tag": "ByteArray", + "bytearray": "344091fdf71c31cd6b" + }, + { + "_tag": "ByteArray", + "bytearray": "9d2b" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4611166498539966375" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12901613161144575217" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c9c9f" + } + ] + }, + "cborHex": "9fd8669f1bdda937df90f04c879fd8669f1bcbb77c6d46fe824c9f1b93b0ae0ae764caf94449f87a47475c71903598a2d849344091fdf71c31cd6b429d2bffffffff1b3ffe277fd9a80fa71bb30bbcd07b86e4f1432c9c9fff", + "cborBytes": [ + 159, 216, 102, 159, 27, 221, 169, 55, 223, 144, 240, 76, 135, 159, 216, 102, 159, 27, 203, 183, 124, 109, 70, 254, + 130, 76, 159, 27, 147, 176, 174, 10, 231, 100, 202, 249, 68, 73, 248, 122, 71, 71, 92, 113, 144, 53, 152, 162, + 216, 73, 52, 64, 145, 253, 247, 28, 49, 205, 107, 66, 157, 43, 255, 255, 255, 255, 27, 63, 254, 39, 127, 217, 168, + 15, 167, 27, 179, 11, 188, 208, 123, 134, 228, 241, 67, 44, 156, 159, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 993, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "defedf938a7fb1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6873089624463649056" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6f23adc9e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11128662461377221592" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "500ccc4f3117ecdea7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e18cb39d4b9c6445c318" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16644321796452139608" + } + } + } + ] + } + ] + }, + "cborHex": "9f47defedf938a7fb1bf1b5f621e992794292045e6f23adc9e1b9a70f38be39d13d849500ccc4f3117ecdea74ae18cb39d4b9c6445c3181be6fc827d0cd24258ffff", + "cborBytes": [ + 159, 71, 222, 254, 223, 147, 138, 127, 177, 191, 27, 95, 98, 30, 153, 39, 148, 41, 32, 69, 230, 242, 58, 220, 158, + 27, 154, 112, 243, 139, 227, 157, 19, 216, 73, 80, 12, 204, 79, 49, 23, 236, 222, 167, 74, 225, 140, 179, 157, 75, + 156, 100, 69, 195, 24, 27, 230, 252, 130, 125, 12, 210, 66, 88, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 994, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12910115219140631708" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "48e75e" + }, + { + "_tag": "ByteArray", + "bytearray": "2232" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "008505ba8ae748bf34a1b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10646427615804848528" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d5a27d487" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13561172499971288241" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42641fed1c77" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2049711792185980510" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "895e084b827d0d93faedc2b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17803852805218778031" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6c4c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11274608524859426456" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8a87aa78a50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "432da47b5f7ec96105d9" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8991499334166323051" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2fedaa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13611899366530617163" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3293990427255983053" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c07cfd9dcf8210" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "492aa285830d0d7d44e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13240661687822549838" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "825f13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a545fc1c39dff83645" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18036390290319901579" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10849795281044763937" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cd" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7283355204272995586" + } + } + ] + }, + "cborHex": "9fd8669f1bb329f1641e3ddc9c9f4348e75e422232bf4b008505ba8ae748bf34a1b91b93bfb58266f4f990453d5a27d4871bbc32f689de95acb14642641fed1c771b1c720a03e12cb65e4c895e084b827d0d93faedc2b61bf713fdcc28683baf43a6c4c41b9c7774b7c9d6469846f8a87aa78a504a432da47b5f7ec96105d9ff9f1b7cc8390163251f6b432fedaa1bbce72e5adc6c0f4b1b2db69ad75e214bcd47c07cfd9dcf8210ffbf4a492aa285830d0d7d44e51bb7c047a72dc9834e43825f13415941c649a545fc1c39dff83645ffffffd8669f1bfa4e21687cd2838b9f1b96923752cc61f5219f41cdffffff1b6513acf82baf3d02ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 179, 41, 241, 100, 30, 61, 220, 156, 159, 67, 72, 231, 94, 66, 34, 50, 191, 75, 0, 133, 5, + 186, 138, 231, 72, 191, 52, 161, 185, 27, 147, 191, 181, 130, 102, 244, 249, 144, 69, 61, 90, 39, 212, 135, 27, + 188, 50, 246, 137, 222, 149, 172, 177, 70, 66, 100, 31, 237, 28, 119, 27, 28, 114, 10, 3, 225, 44, 182, 94, 76, + 137, 94, 8, 75, 130, 125, 13, 147, 250, 237, 194, 182, 27, 247, 19, 253, 204, 40, 104, 59, 175, 67, 166, 196, 196, + 27, 156, 119, 116, 183, 201, 214, 70, 152, 70, 248, 168, 122, 167, 138, 80, 74, 67, 45, 164, 123, 95, 126, 201, + 97, 5, 217, 255, 159, 27, 124, 200, 57, 1, 99, 37, 31, 107, 67, 47, 237, 170, 27, 188, 231, 46, 90, 220, 108, 15, + 75, 27, 45, 182, 154, 215, 94, 33, 75, 205, 71, 192, 124, 253, 157, 207, 130, 16, 255, 191, 74, 73, 42, 162, 133, + 131, 13, 13, 125, 68, 229, 27, 183, 192, 71, 167, 45, 201, 131, 78, 67, 130, 95, 19, 65, 89, 65, 198, 73, 165, 69, + 252, 28, 57, 223, 248, 54, 69, 255, 255, 255, 216, 102, 159, 27, 250, 78, 33, 104, 124, 210, 131, 139, 159, 27, + 150, 146, 55, 82, 204, 97, 245, 33, 159, 65, 205, 255, 255, 255, 27, 101, 19, 172, 248, 43, 175, 61, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 995, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10638229856551944290" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13873577349833569941" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12024571772465766398" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a9e68931443" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e5af0d6ede82320f23b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4759450912851261178" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2877526e32688afe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e88b514c135162a040db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fe8829a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "161edfe74ef671" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44965315c543" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "654da55637962f5a19f73047" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "694789bda6f8005c4a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c99b062255e46d659cc9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a208e76653a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10193732511794119878" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b93a295b0d6bbc062051bc088d91824bc36951ba6dfdc517202dffe1bffffffffffffffee469a9e68931443ffbf4a0e5af0d6ede82320f23b1b420cf7637a6876fa482877526e32688afe4ae88b514c135162a040db443fe8829a47161edfe74ef6714644965315c5434c654da55637962f5a19f7304749694789bda6f8005c4a4ac99b062255e46d659cc946a208e76653a01b8d7769b5f4d6c4c6ffff", + "cborBytes": [ + 159, 191, 27, 147, 162, 149, 176, 214, 187, 192, 98, 5, 27, 192, 136, 217, 24, 36, 188, 54, 149, 27, 166, 223, + 220, 81, 114, 2, 223, 254, 27, 255, 255, 255, 255, 255, 255, 255, 238, 70, 154, 158, 104, 147, 20, 67, 255, 191, + 74, 14, 90, 240, 214, 237, 232, 35, 32, 242, 59, 27, 66, 12, 247, 99, 122, 104, 118, 250, 72, 40, 119, 82, 110, + 50, 104, 138, 254, 74, 232, 139, 81, 76, 19, 81, 98, 160, 64, 219, 68, 63, 232, 130, 154, 71, 22, 30, 223, 231, + 78, 246, 113, 70, 68, 150, 83, 21, 197, 67, 76, 101, 77, 165, 86, 55, 150, 47, 90, 25, 247, 48, 71, 73, 105, 71, + 137, 189, 166, 248, 0, 92, 74, 74, 201, 155, 6, 34, 85, 228, 109, 101, 156, 201, 70, 162, 8, 231, 102, 83, 160, + 27, 141, 119, 105, 181, 244, 214, 196, 198, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 996, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18fa2b0819056f9e7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67b59a8a6c2a9e63234e42" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e322997b4207" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6484eb54" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a3773a085ac7e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a76c58065e264dc8d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "183275a8fdc75e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8172802875652571263" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4918fa2b0819056f9e7f4b67b59a8a6c2a9e63234e42424b4646e322997b4207446484eb54473a3773a085ac7e499a76c58065e264dc8d47183275a8fdc75e41e41b716ba0e9fe90007fffff", + "cborBytes": [ + 159, 191, 73, 24, 250, 43, 8, 25, 5, 111, 158, 127, 75, 103, 181, 154, 138, 108, 42, 158, 99, 35, 78, 66, 66, 75, + 70, 70, 227, 34, 153, 123, 66, 7, 68, 100, 132, 235, 84, 71, 58, 55, 115, 160, 133, 172, 126, 73, 154, 118, 197, + 128, 101, 226, 100, 220, 141, 71, 24, 50, 117, 168, 253, 199, 94, 65, 228, 27, 113, 107, 160, 233, 254, 144, 0, + 127, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 997, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e8bba58d9ffd39" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13791975094791005535" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18142928062262739319" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17925a322154887511" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14798460882175486035" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6048261148167895389" + } + } + ] + } + ] + }, + "cborHex": "9f47e8bba58d9ffd39809fd8669f1bbf66f046940d655f80ff9f1bfbc8a0f280a301774917925a3221548875111bcd5eb1c448956853ff1b53efbd781d57f95dffff", + "cborBytes": [ + 159, 71, 232, 187, 165, 141, 159, 253, 57, 128, 159, 216, 102, 159, 27, 191, 102, 240, 70, 148, 13, 101, 95, 128, + 255, 159, 27, 251, 200, 160, 242, 128, 163, 1, 119, 73, 23, 146, 90, 50, 33, 84, 136, 117, 17, 27, 205, 94, 177, + 196, 72, 149, 104, 83, 255, 27, 83, 239, 189, 120, 29, 87, 249, 93, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 998, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5602009028005686328" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7845258242584597512" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16767288920650354702" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14358294023281574094" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13255582597926472137" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4437268118041601650" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1998604137789289020" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "525074152790554641" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13133798691286999780" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "91afdb1a83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15630118383488036869" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94e3a582" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4dbe677899f623c8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cfe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9140839092470072620" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13457564041903100591" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc4c6493a93215baca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3036737597386221693" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de471e80" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2996244057970638038" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8673086905058406908" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bed9a7e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9231497452022959810" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4600262521983915377" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11622498929829801125" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62fcbea6b4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13804870533583407115" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12088203456072024414" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14699871525011442941" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "927864dfdf86f2f1265e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ff06668073" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "38fd54262c35e423" + }, + { + "_tag": "ByteArray", + "bytearray": "61d12684c6a70b670d48840d" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1140529359649984899" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3181570166933157902" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f1b4dbe5587becf6c381b6cdff4ce4075d408d8669f1be8b1606fb9b5100e9f1bc742e857365000ceffff9f1bb7f54a244841c9c91b3d9457d7fd092672ffff9fd8669f1b1bbc77dfcf8e723c9f1b07497028f5d1f8111bb644a052e9a6e2e4ffffffbf4591afdb1a831bd8e955db9d1b70054494e3a582484dbe677899f623c8429cfe1b7edac8b96faec52c42b0d51bbac2df31e3b452af49cc4c6493a93215baca1b2a24a8c16847687d44de471e801b2994cc188fb6fcd6ffd87a9fbf1b785cfe96921931fc448bed9a7e1b801cde05a4c08ec21b3fd76a63f864d5711ba14b6932b2dceca54562fcbea6b41bbf94c09be47f080b1ba7c1ecff4bd2815e1bcc006f44cc2fccfd4a927864dfdf86f2f1265eff45ff066680739f4838fd54262c35e4234c61d12684c6a70b670d48840dffffbf1b0fd3f968e9d751831b2c273535cc07f80effff", + "cborBytes": [ + 159, 159, 27, 77, 190, 85, 135, 190, 207, 108, 56, 27, 108, 223, 244, 206, 64, 117, 212, 8, 216, 102, 159, 27, + 232, 177, 96, 111, 185, 181, 16, 14, 159, 27, 199, 66, 232, 87, 54, 80, 0, 206, 255, 255, 159, 27, 183, 245, 74, + 36, 72, 65, 201, 201, 27, 61, 148, 87, 215, 253, 9, 38, 114, 255, 255, 159, 216, 102, 159, 27, 27, 188, 119, 223, + 207, 142, 114, 60, 159, 27, 7, 73, 112, 40, 245, 209, 248, 17, 27, 182, 68, 160, 82, 233, 166, 226, 228, 255, 255, + 255, 191, 69, 145, 175, 219, 26, 131, 27, 216, 233, 85, 219, 157, 27, 112, 5, 68, 148, 227, 165, 130, 72, 77, 190, + 103, 120, 153, 246, 35, 200, 66, 156, 254, 27, 126, 218, 200, 185, 111, 174, 197, 44, 66, 176, 213, 27, 186, 194, + 223, 49, 227, 180, 82, 175, 73, 204, 76, 100, 147, 169, 50, 21, 186, 202, 27, 42, 36, 168, 193, 104, 71, 104, 125, + 68, 222, 71, 30, 128, 27, 41, 148, 204, 24, 143, 182, 252, 214, 255, 216, 122, 159, 191, 27, 120, 92, 254, 150, + 146, 25, 49, 252, 68, 139, 237, 154, 126, 27, 128, 28, 222, 5, 164, 192, 142, 194, 27, 63, 215, 106, 99, 248, 100, + 213, 113, 27, 161, 75, 105, 50, 178, 220, 236, 165, 69, 98, 252, 190, 166, 180, 27, 191, 148, 192, 155, 228, 127, + 8, 11, 27, 167, 193, 236, 255, 75, 210, 129, 94, 27, 204, 0, 111, 68, 204, 47, 204, 253, 74, 146, 120, 100, 223, + 223, 134, 242, 241, 38, 94, 255, 69, 255, 6, 102, 128, 115, 159, 72, 56, 253, 84, 38, 44, 53, 228, 35, 76, 97, + 209, 38, 132, 198, 167, 11, 103, 13, 72, 132, 13, 255, 255, 191, 27, 15, 211, 249, 104, 233, 215, 81, 131, 27, 44, + 39, 53, 53, 204, 7, 248, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 999, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8256335541251447652" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + }, + "cborHex": "9f1b7294656e4ab99b6407ff", + "cborBytes": [159, 27, 114, 148, 101, 110, 74, 185, 155, 100, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1000, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14569540882589242462" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7229071883969649400" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5386182536232231216" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ba57130479" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12717835016741706202" + } + }, + { + "_tag": "ByteArray", + "bytearray": "efe314283eb3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10517993015673333010" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3539121398500113763" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16407570515502517500" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10944598504958742404" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37b5732fcb9d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "741434603102644962" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ebaab5" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bca31683d6f43545e9f1b6452d293c3c65af8d8669f1b4abf907abf88e1309f45ba571304791bb07ed390d4e9d9da46efe314283eb31b91f76aebc93fa512ffffbf1b311d7c292e953d631be3b36673ebb34cfc1b97e3065a71564f844637b5732fcb9dff1b0a4a1ad7de1daae243ebaab5ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 202, 49, 104, 61, 111, 67, 84, 94, 159, 27, 100, 82, 210, 147, 195, 198, 90, 248, 216, + 102, 159, 27, 74, 191, 144, 122, 191, 136, 225, 48, 159, 69, 186, 87, 19, 4, 121, 27, 176, 126, 211, 144, 212, + 233, 217, 218, 70, 239, 227, 20, 40, 62, 179, 27, 145, 247, 106, 235, 201, 63, 165, 18, 255, 255, 191, 27, 49, 29, + 124, 41, 46, 149, 61, 99, 27, 227, 179, 102, 115, 235, 179, 76, 252, 27, 151, 227, 6, 90, 113, 86, 79, 132, 70, + 55, 181, 115, 47, 203, 157, 255, 27, 10, 74, 26, 215, 222, 29, 170, 226, 67, 235, 170, 181, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1001, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "161a35014f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e98d5cbc9e4faef8eb5fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15888057979060377941" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2d5a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9627745799885438126" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5234530106909049648" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2308934248507764324" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6428c4b2ead338" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17003272577663532603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17745287765758631143" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10288828150235613408" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15064219472965065965" + } + }, + { + "_tag": "ByteArray", + "bytearray": "536b7113c98063abcc8da6" + }, + { + "_tag": "ByteArray", + "bytearray": "afb057fb28dc05649ae4" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4404462856275966293" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4741769193568133877" + } + } + ] + }, + "cborHex": "9fbf410e45161a35014f4b4e98d5cbc9e4faef8eb5fe1bdc7db88dacb4595543f2d5a71b859c9fcb85ee3caeff1b48a4c9660466c3309fd8669f1b200afb773c09ee649f476428c4b2ead338ffffd8669f1bebf7c2527ac67e3b9f1bf643ed345320dce71b8ec942b0a9d548e01bd10edbcc089adced4b536b7113c98063abcc8da64aafb057fb28dc05649ae4ffff1b3d1fcba1c6bb3955ff1b41ce25f56584e2f5ff", + "cborBytes": [ + 159, 191, 65, 14, 69, 22, 26, 53, 1, 79, 75, 78, 152, 213, 203, 201, 228, 250, 239, 142, 181, 254, 27, 220, 125, + 184, 141, 172, 180, 89, 85, 67, 242, 213, 167, 27, 133, 156, 159, 203, 133, 238, 60, 174, 255, 27, 72, 164, 201, + 102, 4, 102, 195, 48, 159, 216, 102, 159, 27, 32, 10, 251, 119, 60, 9, 238, 100, 159, 71, 100, 40, 196, 178, 234, + 211, 56, 255, 255, 216, 102, 159, 27, 235, 247, 194, 82, 122, 198, 126, 59, 159, 27, 246, 67, 237, 52, 83, 32, + 220, 231, 27, 142, 201, 66, 176, 169, 213, 72, 224, 27, 209, 14, 219, 204, 8, 154, 220, 237, 75, 83, 107, 113, 19, + 201, 128, 99, 171, 204, 141, 166, 74, 175, 176, 87, 251, 40, 220, 5, 100, 154, 228, 255, 255, 27, 61, 31, 203, + 161, 198, 187, 57, 85, 255, 27, 65, 206, 37, 245, 101, 132, 226, 245, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1002, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3253961893381283153" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7122595235577423078" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6002839172917497198" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + }, + "cborHex": "9f801b2d28651a0fa61d51d8669f1b62d88aa12f7b64e680ffd9050d9f1b534e5e6c618c0d6eff07ff", + "cborBytes": [ + 159, 128, 27, 45, 40, 101, 26, 15, 166, 29, 81, 216, 102, 159, 27, 98, 216, 138, 161, 47, 123, 100, 230, 128, 255, + 217, 5, 13, 159, 27, 83, 78, 94, 108, 97, 140, 13, 110, 255, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1003, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5e" + }, + { + "_tag": "ByteArray", + "bytearray": "f0d7f4d534bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9400003962948836178" + } + } + ] + }, + "cborHex": "9f415e46f0d7f4d534bc1b827385cd0ad45b52ff", + "cborBytes": [159, 65, 94, 70, 240, 215, 244, 213, 52, 188, 27, 130, 115, 133, 205, 10, 212, 91, 82, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1004, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9b805cc85ab2158" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35df4e0d4fe3bd0709" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9558901584694739201" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6bf5bc0805831264698" + } + } + ] + } + ] + }, + "cborHex": "9fbf48e9b805cc85ab21584935df4e0d4fe3bd0709ffbf1b84a80a5896a601014af6bf5bc0805831264698ffff", + "cborBytes": [ + 159, 191, 72, 233, 184, 5, 204, 133, 171, 33, 88, 73, 53, 223, 78, 13, 79, 227, 189, 7, 9, 255, 191, 27, 132, 168, + 10, 88, 150, 166, 1, 1, 74, 246, 191, 91, 192, 128, 88, 49, 38, 70, 152, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1005, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10474715289922422947" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa0c60e7f7cd70" + }, + { + "_tag": "ByteArray", + "bytearray": "f703a17924da" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4260233344992044823" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ab31b8eb" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5782453983933723175" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3094428512318931059" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6247373963415542873" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1160499747036811897" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6778570776849230399" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf20bcdbdbb2e79cf02e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12975813899932943619" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "61703eae06db443be9803071" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6591885078732909702" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb0e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16968785632293866287" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3362262245151251781" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7ee1470ee256a0c5cda7" + }, + { + "_tag": "ByteArray", + "bytearray": "0d80" + }, + { + "_tag": "ByteArray", + "bytearray": "83c1ba60ce93" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4626397197655144720" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7995266804577346700" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5299c28ba8c8935d2179" + }, + { + "_tag": "ByteArray", + "bytearray": "93f6" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "005d81cd7516" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "85aa85" + }, + { + "_tag": "ByteArray", + "bytearray": "b162b5faa8e572842a96" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17756953861285472890" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aa40d924a37ce7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8138871148805357296" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07379fc4559291" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20fee1132065f76c4d175f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b07f4d5cd48aaa5ef85e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3928656044551894250" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b915daa0f0b2dc8a39f9f47fa0c60e7f7cd7046f703a17924da1b3b1f63a7d486671744ab31b8ebffbf1b503f6742fa6972271b2af19e56439c40731b56b321850c685c591b101aec5f100f52791b5e12523506f12a3f4abf20bcdbdbb2e79cf02eff1bb41359fe41144503bf4c61703eae06db443be98030711b5b7b148dc612ac8642cb0e1beb7d3ca0caa0cb2fffd8669f1b2ea927b2abf29d459f4a7ee1470ee256a0c5cda7420d804683c1ba60ce93ffffffffd8669f1b403443bd5418f9109fa0d8669f1b6ef4e4cc4b4e248c9f4a5299c28ba8c8935d21794293f6ffff9f46005d81cd7516ff9f4385aa854ab162b5faa8e572842a961bf66d5f74daebea7a47aa40d924a37ce71b70f314303137fef0ffffffbf4707379fc45592914b20fee1132065f76c4d175f4ab07f4d5cd48aaa5ef85e1b368563db8c34f4eaffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 145, 93, 170, 15, 11, 45, 200, 163, 159, 159, 71, 250, 12, 96, 231, 247, 205, 112, 70, + 247, 3, 161, 121, 36, 218, 27, 59, 31, 99, 167, 212, 134, 103, 23, 68, 171, 49, 184, 235, 255, 191, 27, 80, 63, + 103, 66, 250, 105, 114, 39, 27, 42, 241, 158, 86, 67, 156, 64, 115, 27, 86, 179, 33, 133, 12, 104, 92, 89, 27, 16, + 26, 236, 95, 16, 15, 82, 121, 27, 94, 18, 82, 53, 6, 241, 42, 63, 74, 191, 32, 188, 219, 219, 178, 231, 156, 240, + 46, 255, 27, 180, 19, 89, 254, 65, 20, 69, 3, 191, 76, 97, 112, 62, 174, 6, 219, 68, 59, 233, 128, 48, 113, 27, + 91, 123, 20, 141, 198, 18, 172, 134, 66, 203, 14, 27, 235, 125, 60, 160, 202, 160, 203, 47, 255, 216, 102, 159, + 27, 46, 169, 39, 178, 171, 242, 157, 69, 159, 74, 126, 225, 71, 14, 226, 86, 160, 197, 205, 167, 66, 13, 128, 70, + 131, 193, 186, 96, 206, 147, 255, 255, 255, 255, 216, 102, 159, 27, 64, 52, 67, 189, 84, 24, 249, 16, 159, 160, + 216, 102, 159, 27, 110, 244, 228, 204, 75, 78, 36, 140, 159, 74, 82, 153, 194, 139, 168, 200, 147, 93, 33, 121, + 66, 147, 246, 255, 255, 159, 70, 0, 93, 129, 205, 117, 22, 255, 159, 67, 133, 170, 133, 74, 177, 98, 181, 250, + 168, 229, 114, 132, 42, 150, 27, 246, 109, 95, 116, 218, 235, 234, 122, 71, 170, 64, 217, 36, 163, 124, 231, 27, + 112, 243, 20, 48, 49, 55, 254, 240, 255, 255, 255, 191, 71, 7, 55, 159, 196, 85, 146, 145, 75, 32, 254, 225, 19, + 32, 101, 247, 108, 77, 23, 95, 74, 176, 127, 77, 92, 212, 138, 170, 94, 248, 94, 27, 54, 133, 99, 219, 140, 52, + 244, 234, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1006, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ac0fdd9ae6a133261dc671" + } + ] + }, + "cborHex": "9f4bac0fdd9ae6a133261dc671ff", + "cborBytes": [159, 75, 172, 15, 221, 154, 230, 161, 51, 38, 29, 198, 113, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1007, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12299422453053229962" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2904012976104364049" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13083264252825163138" + } + }, + { + "_tag": "ByteArray", + "bytearray": "71574ae157467642d78bcc14" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "baf804" + } + ] + }, + "cborHex": "9fd8669f1baab0538e50b38b8a9f1b284d206a67d358111bb59117851435d5824c71574ae157467642d78bcc14ffff43baf804ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 170, 176, 83, 142, 80, 179, 139, 138, 159, 27, 40, 77, 32, 106, 103, 211, 88, 17, 27, 181, + 145, 23, 133, 20, 53, 213, 130, 76, 113, 87, 74, 225, 87, 70, 118, 66, 215, 139, 204, 20, 255, 255, 67, 186, 248, + 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1008, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f272a298ff20f01a047" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2380074293544067560" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98e2fc66405da3d237d334" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17259019032297663218" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad4574632e2d02b398a34c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8416773535086418984" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1566452783710487397" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18254963849970604724" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c80811b22e07f734" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8902369628046903703" + } + }, + { + "_tag": "ByteArray", + "bytearray": "104ee0259e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12415751205277854143" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11062278087549788522" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8759b4980cd63103e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13782624225361347170" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2333038f" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1256755547353167920" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d2dfe56a3a" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f50b43cc3feec7a52b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16552131069486523395" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e885b6832c50f71f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3520e2c6b752efa7d02511" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7699987471345753573" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13561929293600356250" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15156731818274027546" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16036730132454379822" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6247844527953772206" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9496244305899389859" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8353209906cdfa7befb6d5" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15216961745131346350" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16611453967080228464" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16425944471070491683" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3014964288785221175" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5d3e720149c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9d1f54b4b56bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d5664" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "670ad299e587cd78cdc676" + }, + { + "_tag": "ByteArray", + "bytearray": "6a0f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10014897595927000565" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b37128b" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6187242374053435516" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7044959823085102952" + } + }, + { + "_tag": "ByteArray", + "bytearray": "45c2766c067acdf860" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6023acd19b86394e62ab" + } + ] + }, + "cborHex": "9f9fbf4a1f272a298ff20f01a0471b2107b8f5b5bba1e84b98e2fc66405da3d237d3341bef845a5e1fceeaf24bad4574632e2d02b398a34c1b74ce62efa9bc1c2842d0e81b15bd2881e27c4365ff9f1bfd56a8e711185ab448c80811b22e07f7341b7b8b92028af6499745104ee0259e1bac4d9bf09236e9bfffbf1b99851b4f66fe216a498759b4980cd63103e91bbf45b7b5a15b4262442333038fffa0d8669f1b1170e483017cb8309f45d2dfe56a3affffff49f50b43cc3feec7a52bd8669f1be5b4fb82c07364039fbf48e885b6832c50f71f4b3520e2c6b752efa7d02511ff9f1b6adbd9cf14859de51bbc35a6d69e03779a1bd2578748f015781a1bde8de916d7bf112e1b56b4cd7ee48d7eaeffbf1b83c96fe2097583a34b8353209906cdfa7befb6d5ffbf1bd32d8215934319ae1be687bd5f2e9206701be3f4ad77d272c4231b29d74e0bf3880637412546b5d3e720149c47a9d1f54b4b56bb439d5664ffffff9f804b670ad299e587cd78cdc676426a0fbf1b8afc104d632475f5440b37128bffd8669f1b55dd802864b3187c9f1b61c4b9a21fe2e7684945c2766c067acdf860ffffff4a6023acd19b86394e62abff", + "cborBytes": [ + 159, 159, 191, 74, 31, 39, 42, 41, 143, 242, 15, 1, 160, 71, 27, 33, 7, 184, 245, 181, 187, 161, 232, 75, 152, + 226, 252, 102, 64, 93, 163, 210, 55, 211, 52, 27, 239, 132, 90, 94, 31, 206, 234, 242, 75, 173, 69, 116, 99, 46, + 45, 2, 179, 152, 163, 76, 27, 116, 206, 98, 239, 169, 188, 28, 40, 66, 208, 232, 27, 21, 189, 40, 129, 226, 124, + 67, 101, 255, 159, 27, 253, 86, 168, 231, 17, 24, 90, 180, 72, 200, 8, 17, 178, 46, 7, 247, 52, 27, 123, 139, 146, + 2, 138, 246, 73, 151, 69, 16, 78, 224, 37, 158, 27, 172, 77, 155, 240, 146, 54, 233, 191, 255, 191, 27, 153, 133, + 27, 79, 102, 254, 33, 106, 73, 135, 89, 180, 152, 12, 214, 49, 3, 233, 27, 191, 69, 183, 181, 161, 91, 66, 98, 68, + 35, 51, 3, 143, 255, 160, 216, 102, 159, 27, 17, 112, 228, 131, 1, 124, 184, 48, 159, 69, 210, 223, 229, 106, 58, + 255, 255, 255, 73, 245, 11, 67, 204, 63, 238, 199, 165, 43, 216, 102, 159, 27, 229, 180, 251, 130, 192, 115, 100, + 3, 159, 191, 72, 232, 133, 182, 131, 44, 80, 247, 31, 75, 53, 32, 226, 198, 183, 82, 239, 167, 208, 37, 17, 255, + 159, 27, 106, 219, 217, 207, 20, 133, 157, 229, 27, 188, 53, 166, 214, 158, 3, 119, 154, 27, 210, 87, 135, 72, + 240, 21, 120, 26, 27, 222, 141, 233, 22, 215, 191, 17, 46, 27, 86, 180, 205, 126, 228, 141, 126, 174, 255, 191, + 27, 131, 201, 111, 226, 9, 117, 131, 163, 75, 131, 83, 32, 153, 6, 205, 250, 123, 239, 182, 213, 255, 191, 27, + 211, 45, 130, 21, 147, 67, 25, 174, 27, 230, 135, 189, 95, 46, 146, 6, 112, 27, 227, 244, 173, 119, 210, 114, 196, + 35, 27, 41, 215, 78, 11, 243, 136, 6, 55, 65, 37, 70, 181, 211, 231, 32, 20, 156, 71, 169, 209, 245, 75, 75, 86, + 187, 67, 157, 86, 100, 255, 255, 255, 159, 128, 75, 103, 10, 210, 153, 229, 135, 205, 120, 205, 198, 118, 66, 106, + 15, 191, 27, 138, 252, 16, 77, 99, 36, 117, 245, 68, 11, 55, 18, 139, 255, 216, 102, 159, 27, 85, 221, 128, 40, + 100, 179, 24, 124, 159, 27, 97, 196, 185, 162, 31, 226, 231, 104, 73, 69, 194, 118, 108, 6, 122, 205, 248, 96, + 255, 255, 255, 74, 96, 35, 172, 209, 155, 134, 57, 78, 98, 171, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1009, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13739452680804442699" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7293473480735536102" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18048913444323703979" + } + } + ] + }, + "cborHex": "9fd8669f1bbeac576b1fa3224b80ff9f1b65379f7cfdf933e6ff1bfa7a9f267eafbcabff", + "cborBytes": [ + 159, 216, 102, 159, 27, 190, 172, 87, 107, 31, 163, 34, 75, 128, 255, 159, 27, 101, 55, 159, 124, 253, 249, 51, + 230, 255, 27, 250, 122, 159, 38, 126, 175, 188, 171, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1010, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17161478819919166758" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "92400d36" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd02" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4024634541743195352" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5713468129712598114" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8938171778806404459" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13746457038872153728" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f6e04179073afd705" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1849739065047051391" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12031123874025270707" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e692027103bda64188eb61c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f23074" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64702d1213b346" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bee29d20fb1abfd2680ff4492400d369f0942fd02d8669f1b37da5fcad35ec4d89f1b4f4a50fe2308ec621b7c0ac3e0592d556b1bbec539d852248e80ffffff9fbf492f6e04179073afd7051b19ab97e11b4aec7f4274ee1ba6f7236b77ff6db34c9e692027103bda64188eb61c4231cd43f230744764702d1213b346ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 238, 41, 210, 15, 177, 171, 253, 38, 128, 255, 68, 146, 64, 13, 54, 159, 9, 66, 253, 2, + 216, 102, 159, 27, 55, 218, 95, 202, 211, 94, 196, 216, 159, 27, 79, 74, 80, 254, 35, 8, 236, 98, 27, 124, 10, + 195, 224, 89, 45, 85, 107, 27, 190, 197, 57, 216, 82, 36, 142, 128, 255, 255, 255, 159, 191, 73, 47, 110, 4, 23, + 144, 115, 175, 215, 5, 27, 25, 171, 151, 225, 27, 74, 236, 127, 66, 116, 238, 27, 166, 247, 35, 107, 119, 255, + 109, 179, 76, 158, 105, 32, 39, 16, 59, 218, 100, 24, 142, 182, 28, 66, 49, 205, 67, 242, 48, 116, 71, 100, 112, + 45, 18, 19, 179, 70, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1011, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13656490967953014394" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15720168131056957815" + } + } + ] + }, + "cborHex": "9f1bbd859a2e1f2b7e7a801bda2941a04d10f977ff", + "cborBytes": [159, 27, 189, 133, 154, 46, 31, 43, 126, 122, 128, 27, 218, 41, 65, 160, 77, 16, 249, 119, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1012, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d89f044d218a9c107f15" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4fd65fe0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4735eb4309f59dbc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5441d0347aa4" + } + } + ] + } + ] + }, + "cborHex": "9f4ad89f044d218a9c107f15bf444fd65fe0484735eb4309f59dbc4261da465441d0347aa4ffff", + "cborBytes": [ + 159, 74, 216, 159, 4, 77, 33, 138, 156, 16, 127, 21, 191, 68, 79, 214, 95, 224, 72, 71, 53, 235, 67, 9, 245, 157, + 188, 66, 97, 218, 70, 84, 65, 208, 52, 122, 164, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1013, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15436058487684282363" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4483650026547402118" + } + } + ] + } + ] + }, + "cborHex": "9f9f1bd637e5692a9337fb1b3e391ff199875586ffff", + "cborBytes": [159, 159, 27, 214, 55, 229, 105, 42, 147, 55, 251, 27, 62, 57, 31, 241, 153, 135, 85, 134, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1014, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9151266035001675805" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ae8dbe6ad2f933c26b49d202" + } + ] + }, + "cborHex": "9f1b7effd3f92d5f501d1bfffffffffffffff84cae8dbe6ad2f933c26b49d202ff", + "cborBytes": [ + 159, 27, 126, 255, 211, 249, 45, 95, 80, 29, 27, 255, 255, 255, 255, 255, 255, 255, 248, 76, 174, 141, 190, 106, + 210, 249, 51, 194, 107, 73, 210, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1015, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13383101527455673927" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10968657130544775176" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17974827033938444505" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "111014274516181822" + } + }, + { + "_tag": "ByteArray", + "bytearray": "48d31b7d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "99" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18124548687676067714" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bb9ba53eeb8fbae479fd8669f1b98387f8bb92d400880ffd8669f1bf97369f3e0fd40d980ff1b018a66e4fd88e33e4448d31b7dffffbf41991bfb875500e3344f82ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 185, 186, 83, 238, 184, 251, 174, 71, 159, 216, 102, 159, 27, 152, 56, 127, 139, 185, 45, + 64, 8, 128, 255, 216, 102, 159, 27, 249, 115, 105, 243, 224, 253, 64, 217, 128, 255, 27, 1, 138, 102, 228, 253, + 136, 227, 62, 68, 72, 211, 27, 125, 255, 255, 191, 65, 153, 27, 251, 135, 85, 0, 227, 52, 79, 130, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1016, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2d201af77d" + }, + { + "_tag": "ByteArray", + "bytearray": "f7fe1a2524934215" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1303706710345387377" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2093813926884009655" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2100e6e36ffced4561" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3078118751074955284" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3cc98e42" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3681787817695164967" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14626672859192062351" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6448123502981231428" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9197963885652914838" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10071464667795098487" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18f359d4f4753cdca2a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14046489364017430393" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4926683160250715701" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10121372207406113704" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15330189839069545750" + } + } + } + ] + } + ] + }, + "cborHex": "9f452d201af77d48f7fe1a2524934215d8669f1b1217b258816e0d719fbf1b1d0eb8ac49afe6b7492100e6e36ffced4561ffffffbf1b2ab7acb20e4ab014443cc98e421b331856836414ba271bcafc617851fd718f1b597c56298f0b33441b7fa5bb6bcd36b2961b8bc507c123d30b774a18f359d4f4753cdca2a51bc2ef27a7b38fbf791b445f183b47a48e35ffbf1b8c765665b5f3e3a81bd4bfc66f910b0516ffff", + "cborBytes": [ + 159, 69, 45, 32, 26, 247, 125, 72, 247, 254, 26, 37, 36, 147, 66, 21, 216, 102, 159, 27, 18, 23, 178, 88, 129, + 110, 13, 113, 159, 191, 27, 29, 14, 184, 172, 73, 175, 230, 183, 73, 33, 0, 230, 227, 111, 252, 237, 69, 97, 255, + 255, 255, 191, 27, 42, 183, 172, 178, 14, 74, 176, 20, 68, 60, 201, 142, 66, 27, 51, 24, 86, 131, 100, 20, 186, + 39, 27, 202, 252, 97, 120, 81, 253, 113, 143, 27, 89, 124, 86, 41, 143, 11, 51, 68, 27, 127, 165, 187, 107, 205, + 54, 178, 150, 27, 139, 197, 7, 193, 35, 211, 11, 119, 74, 24, 243, 89, 212, 244, 117, 60, 220, 162, 165, 27, 194, + 239, 39, 167, 179, 143, 191, 121, 27, 68, 95, 24, 59, 71, 164, 142, 53, 255, 191, 27, 140, 118, 86, 101, 181, 243, + 227, 168, 27, 212, 191, 198, 111, 145, 11, 5, 22, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1017, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17972340737296061613" + } + } + ] + } + ] + }, + "cborHex": "9f9f1bf96a94add4d054adffff", + "cborBytes": [159, 159, 27, 249, 106, 148, 173, 212, 208, 84, 173, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1018, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2876548032925818060" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7484914610300135246" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53e73d1d2c387e460b05e24f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10810639113866906614" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05168c88" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11317637539605165583" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "332fc2a95a3cad0ef256" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6678999242527245619" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8431099d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15132095983275320300" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b27eb8d3201e45cccbf1b67dfc22e6912274e4c53e73d1d2c387e460b05e24f1b96071aff30fb0bf64405168c88ffd8669f1b9d105360fccab60f9f4a332fc2a95a3cad0ef256ffff9fa09f1b5cb0926c99f08533448431099dff9f1bd200011f9e3da3ecffffff", + "cborBytes": [ + 159, 27, 39, 235, 141, 50, 1, 228, 92, 204, 191, 27, 103, 223, 194, 46, 105, 18, 39, 78, 76, 83, 231, 61, 29, 44, + 56, 126, 70, 11, 5, 226, 79, 27, 150, 7, 26, 255, 48, 251, 11, 246, 68, 5, 22, 140, 136, 255, 216, 102, 159, 27, + 157, 16, 83, 96, 252, 202, 182, 15, 159, 74, 51, 47, 194, 169, 90, 60, 173, 14, 242, 86, 255, 255, 159, 160, 159, + 27, 92, 176, 146, 108, 153, 240, 133, 51, 68, 132, 49, 9, 157, 255, 159, 27, 210, 0, 1, 31, 158, 61, 163, 236, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1019, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8712600522638524243" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dcd642c4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13980291659337063058" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11476017669250521642" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14461348593310945003" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1634114018152833116" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16026750125237263969" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6502733178807217682" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17519600879755402257" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11554388088116082695" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "adc39b378af9e31697c0" + }, + { + "_tag": "ByteArray", + "bytearray": "ee9e" + }, + { + "_tag": "ByteArray", + "bytearray": "db" + }, + { + "_tag": "ByteArray", + "bytearray": "5923" + }, + { + "_tag": "ByteArray", + "bytearray": "3bd66877b178abe8fc" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17226869785160363038" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15178229843638324382" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9382675726168893034" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b90bc2366c60" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "479963176c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8638280134039672628" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fbf1b78e9600395c07f5344dcd642c41bc203f93183245a921b9f43014483c89a2a1bc8b107ed1564ceeb1b16ad8a0aa67c605c1bde6a745356b6de611b5a3e595f87f36e121bf322202d64711c111ba0596ebf9529f807ff9f9f4aadc39b378af9e31697c042ee9e41db425923493bd66877b178abe8fcff9f1bef1222cc3864ac1e1bd2a3e7a0054b8c9e1b8235f5dc84fa266a46b90bc2366c60ff45479963176cd8669f1b77e15603abbf973480ffffff", + "cborBytes": [ + 159, 191, 27, 120, 233, 96, 3, 149, 192, 127, 83, 68, 220, 214, 66, 196, 27, 194, 3, 249, 49, 131, 36, 90, 146, + 27, 159, 67, 1, 68, 131, 200, 154, 42, 27, 200, 177, 7, 237, 21, 100, 206, 235, 27, 22, 173, 138, 10, 166, 124, + 96, 92, 27, 222, 106, 116, 83, 86, 182, 222, 97, 27, 90, 62, 89, 95, 135, 243, 110, 18, 27, 243, 34, 32, 45, 100, + 113, 28, 17, 27, 160, 89, 110, 191, 149, 41, 248, 7, 255, 159, 159, 74, 173, 195, 155, 55, 138, 249, 227, 22, 151, + 192, 66, 238, 158, 65, 219, 66, 89, 35, 73, 59, 214, 104, 119, 177, 120, 171, 232, 252, 255, 159, 27, 239, 18, 34, + 204, 56, 100, 172, 30, 27, 210, 163, 231, 160, 5, 75, 140, 158, 27, 130, 53, 245, 220, 132, 250, 38, 106, 70, 185, + 11, 194, 54, 108, 96, 255, 69, 71, 153, 99, 23, 108, 216, 102, 159, 27, 119, 225, 86, 3, 171, 191, 151, 52, 128, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1020, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17156661897514565774" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00d2ed06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c43b03fda30a2bdbc2c99" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cafc4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7cb786a516c7c12484a00b8d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f7ba8bdabf414983e0b00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10042388736758431541" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a92d3736a2" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15549201962454607250" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1349533667313816948" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c08b7c" + }, + { + "_tag": "ByteArray", + "bytearray": "9168" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5204078105130105197" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3654298953903114254" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1b2398a0d48a886d5e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "275991344055829348" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "324101ef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9151234449022488436" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3621012931803511742" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10021332015201488504" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7146616556841178602" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16421182809712785438" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d28" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17090353427431957026" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5489713998796922342" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f1bee18b5188cd5c08ebf4400d2ed064b7c43b03fda30a2bdbc2c99431cafc44c7cb786a516c7c12484a00b8d4b9f7ba8bdabf414983e0b001b8b5dbb5966debf3541b845a92d3736a2ffd8669f1bd7c9dccd38e9e5929f1b12ba81b864ab957443c08b7c4291681b48389976d7aaf96d1b32b6ad898a7a080effff491b2398a0d48a886d5effbf1b03d484aa4787c36444324101ef1b7effb73efe4d8f741b32406c13973e7bbe1b8b12ec5f5e558e781b632de1e4e07195ea1be3e3c2c324ae781e422d281bed2d21e4c7f622221b4c2f61cbd0c79de6ffff", + "cborBytes": [ + 159, 159, 27, 238, 24, 181, 24, 140, 213, 192, 142, 191, 68, 0, 210, 237, 6, 75, 124, 67, 176, 63, 218, 48, 162, + 189, 188, 44, 153, 67, 28, 175, 196, 76, 124, 183, 134, 165, 22, 199, 193, 36, 132, 160, 11, 141, 75, 159, 123, + 168, 189, 171, 244, 20, 152, 62, 11, 0, 27, 139, 93, 187, 89, 102, 222, 191, 53, 65, 184, 69, 169, 45, 55, 54, + 162, 255, 216, 102, 159, 27, 215, 201, 220, 205, 56, 233, 229, 146, 159, 27, 18, 186, 129, 184, 100, 171, 149, + 116, 67, 192, 139, 124, 66, 145, 104, 27, 72, 56, 153, 118, 215, 170, 249, 109, 27, 50, 182, 173, 137, 138, 122, + 8, 14, 255, 255, 73, 27, 35, 152, 160, 212, 138, 136, 109, 94, 255, 191, 27, 3, 212, 132, 170, 71, 135, 195, 100, + 68, 50, 65, 1, 239, 27, 126, 255, 183, 62, 254, 77, 143, 116, 27, 50, 64, 108, 19, 151, 62, 123, 190, 27, 139, 18, + 236, 95, 94, 85, 142, 120, 27, 99, 45, 225, 228, 224, 113, 149, 234, 27, 227, 227, 194, 195, 36, 174, 120, 30, 66, + 45, 40, 27, 237, 45, 33, 228, 199, 246, 34, 34, 27, 76, 47, 97, 203, 208, 199, 157, 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1021, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7188386878812158050" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17713318665167731269" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10282175347176936341" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9171069528726428631" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71d90c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3825745566749375562" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2fbf7552aeb522" + }, + { + "_tag": "ByteArray", + "bytearray": "7f" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5601371757088395441" + } + } + ] + }, + "cborHex": "9fd8669f1b63c247c7d3ad78629f1bf5d2597a0e9e7a45bf1b8eb1a0003ec293951b7f462f255e25dbd741f64371d90cff1b3517c752c31f3c4affff472fbf7552aeb522417f801b4dbc11ef8c28d0b1ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 99, 194, 71, 199, 211, 173, 120, 98, 159, 27, 245, 210, 89, 122, 14, 158, 122, 69, 191, + 27, 142, 177, 160, 0, 62, 194, 147, 149, 27, 127, 70, 47, 37, 94, 37, 219, 215, 65, 246, 67, 113, 217, 12, 255, + 27, 53, 23, 199, 82, 195, 31, 60, 74, 255, 255, 71, 47, 191, 117, 82, 174, 181, 34, 65, 127, 128, 27, 77, 188, 17, + 239, 140, 40, 208, 177, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1022, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09605d13049c1fbeae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "169edde7d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a4600108624dff439" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "115839447937552180" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43cbba9e10405f8d19bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25fb67d6c8c676303c919940" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be24911474f6d2e3b23c2c42" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5344b8c51dfca0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e871b659" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c52f0e867d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e05f6f19012e" + } + } + ] + } + ] + }, + "cborHex": "9fbf4909605d13049c1fbeae45169edde7d6492a4600108624dff4391b019b8b5d394b8f344a43cbba9e10405f8d19bf4c25fb67d6c8c676303c91994041474cbe24911474f6d2e3b23c2c42475344b8c51dfca044e871b659465c52f0e867d146e05f6f19012effff", + "cborBytes": [ + 159, 191, 73, 9, 96, 93, 19, 4, 156, 31, 190, 174, 69, 22, 158, 221, 231, 214, 73, 42, 70, 0, 16, 134, 36, 223, + 244, 57, 27, 1, 155, 139, 93, 57, 75, 143, 52, 74, 67, 203, 186, 158, 16, 64, 95, 141, 25, 191, 76, 37, 251, 103, + 214, 200, 198, 118, 48, 60, 145, 153, 64, 65, 71, 76, 190, 36, 145, 20, 116, 246, 210, 227, 178, 60, 44, 66, 71, + 83, 68, 184, 197, 29, 252, 160, 68, 232, 113, 182, 89, 70, 92, 82, 240, 232, 103, 209, 70, 224, 95, 111, 25, 1, + 46, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1023, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14437fd27d5e9a1fe44f3305" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14979887878788987384" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15081631024260074619" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15097739802971483574" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5133" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "765901613104072345" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8982313879540942010" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3a15ce8f3bd6b80a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2471708226356826398" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ef2fd5aa3f2cf19a436f4e" + }, + { + "_tag": "ByteArray", + "bytearray": "f2b16871ec7b" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf422c054c14437fd27d5e9a1fe44f3305ffd8669f1bcfe340a8ae65b9f880ff9f1bd14cb782ba884c7b1bd185f25c0b642db64251331b0aa107758df78699ffd8669f1b7ca796e2131944ba9f483a15ce8f3bd6b80a1b224d45894468d11e4bef2fd5aa3f2cf19a436f4e46f2b16871ec7bffffffff", + "cborBytes": [ + 159, 159, 191, 66, 44, 5, 76, 20, 67, 127, 210, 125, 94, 154, 31, 228, 79, 51, 5, 255, 216, 102, 159, 27, 207, + 227, 64, 168, 174, 101, 185, 248, 128, 255, 159, 27, 209, 76, 183, 130, 186, 136, 76, 123, 27, 209, 133, 242, 92, + 11, 100, 45, 182, 66, 81, 51, 27, 10, 161, 7, 117, 141, 247, 134, 153, 255, 216, 102, 159, 27, 124, 167, 150, 226, + 19, 25, 68, 186, 159, 72, 58, 21, 206, 143, 59, 214, 184, 10, 27, 34, 77, 69, 137, 68, 104, 209, 30, 75, 239, 47, + 213, 170, 63, 44, 241, 154, 67, 111, 78, 70, 242, 177, 104, 113, 236, 123, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1024, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2156496882345682762" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a5977b7a42e8829d23" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7296177002847198923" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "66" + }, + { + "_tag": "ByteArray", + "bytearray": "4ab469920a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1839675871990368948" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8916618cba7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6659201445879204903" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf789cde6944d0e5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8519141495151312314" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2543c56eaec330" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11544611383718287172" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f605f40f1860110e01075" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13294141783415317454" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4328623002905821211" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9134476626917104517" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3196748964938625044" + } + }, + { + "_tag": "ByteArray", + "bytearray": "99a79c407e" + }, + { + "_tag": "ByteArray", + "bytearray": "e28c1eee4a2fbc82069a" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f1b1ded6a7d2773a74a49a5977b7a42e8829d23ffff1b65413a53c914decb9f4166454ab469920aff9fbf1b1987d77563d7cab446c8916618cba71b5c6a3c6edd65cc2748bf789cde6944d0e51b763a120db1c8bdba472543c56eaec3301ba036b2e3347597444b6f605f40f1860110e010751bb87e47844225e3ce1b3c125bafe6c9401bff9f1b7ec42e187c809b851b2c5d223f1b43b0144599a79c407e4ae28c1eee4a2fbc82069affffff", + "cborBytes": [ + 159, 159, 159, 27, 29, 237, 106, 125, 39, 115, 167, 74, 73, 165, 151, 123, 122, 66, 232, 130, 157, 35, 255, 255, + 27, 101, 65, 58, 83, 201, 20, 222, 203, 159, 65, 102, 69, 74, 180, 105, 146, 10, 255, 159, 191, 27, 25, 135, 215, + 117, 99, 215, 202, 180, 70, 200, 145, 102, 24, 203, 167, 27, 92, 106, 60, 110, 221, 101, 204, 39, 72, 191, 120, + 156, 222, 105, 68, 208, 229, 27, 118, 58, 18, 13, 177, 200, 189, 186, 71, 37, 67, 197, 110, 174, 195, 48, 27, 160, + 54, 178, 227, 52, 117, 151, 68, 75, 111, 96, 95, 64, 241, 134, 1, 16, 224, 16, 117, 27, 184, 126, 71, 132, 66, 37, + 227, 206, 27, 60, 18, 91, 175, 230, 201, 64, 27, 255, 159, 27, 126, 196, 46, 24, 124, 128, 155, 133, 27, 44, 93, + 34, 63, 27, 67, 176, 20, 69, 153, 167, 156, 64, 126, 74, 226, 140, 30, 238, 74, 47, 188, 130, 6, 154, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1025, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d305d64ba52e13236270a47c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c7bfd8dde83ff5119292ac7" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "71540409526580647" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5cced166" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1540222217394496148" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8476928867911730338" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6370205514547899001" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bfe21172f8c96a3a73fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9099520754658712395" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f85da4f4b002" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9375864890144461774" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01df91daaf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11553966492739722642" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8941180968726608461" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3584990878242926265" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5549479920079276862" + } + } + ] + } + ] + }, + "cborHex": "9f9fbf4cd305d64ba52e13236270a47c4c7c7bfd8dde83ff5119292ac7ffbf1b00fe299f98eaf5a7445cced1661b155ff7f23ef6a2941b75a419e4862204a21b5867842a28dcaa794abfe21172f8c96a3a73fe1b7e47fdea3fba1b4b46f85da4f4b0021b821dc3712f1e13ce4501df91daaf1ba057ef4f42845d921b7c1574b7f96eba4dff1b31c07235acaf6eb91b4d03b695bc7d0b3effff", + "cborBytes": [ + 159, 159, 191, 76, 211, 5, 214, 75, 165, 46, 19, 35, 98, 112, 164, 124, 76, 124, 123, 253, 141, 222, 131, 255, 81, + 25, 41, 42, 199, 255, 191, 27, 0, 254, 41, 159, 152, 234, 245, 167, 68, 92, 206, 209, 102, 27, 21, 95, 247, 242, + 62, 246, 162, 148, 27, 117, 164, 25, 228, 134, 34, 4, 162, 27, 88, 103, 132, 42, 40, 220, 170, 121, 74, 191, 226, + 17, 114, 248, 201, 106, 58, 115, 254, 27, 126, 71, 253, 234, 63, 186, 27, 75, 70, 248, 93, 164, 244, 176, 2, 27, + 130, 29, 195, 113, 47, 30, 19, 206, 69, 1, 223, 145, 218, 175, 27, 160, 87, 239, 79, 66, 132, 93, 146, 27, 124, + 21, 116, 183, 249, 110, 186, 77, 255, 27, 49, 192, 114, 53, 172, 175, 110, 185, 27, 77, 3, 182, 149, 188, 125, 11, + 62, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1026, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0522bb86a93333" + }, + { + "_tag": "ByteArray", + "bytearray": "ff0103" + }, + { + "_tag": "ByteArray", + "bytearray": "3e7f710444" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18079636529436646066" + } + } + ] + }, + "cborHex": "9f470522bb86a9333343ff0103453e7f7104441bfae7c5a22d3f5ab2ff", + "cborBytes": [ + 159, 71, 5, 34, 187, 134, 169, 51, 51, 67, 255, 1, 3, 69, 62, 127, 113, 4, 68, 27, 250, 231, 197, 162, 45, 63, 90, + 178, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1027, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13643204387239675751" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + "cborHex": "9f1bbd56661afb78c76706ff", + "cborBytes": [159, 27, 189, 86, 102, 26, 251, 120, 199, 103, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1028, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3ee9f67b73" + }, + { + "_tag": "ByteArray", + "bytearray": "3a62f5" + } + ] + }, + "cborHex": "9f453ee9f67b73433a62f5ff", + "cborBytes": [159, 69, 62, 233, 246, 123, 115, 67, 58, 98, 245, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1029, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18096311678666568143" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a5a09a7a5111b0a16c24acf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15058263813198659754" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7766d1832c94f1d3a63" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edbef5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c859ce853e2f55cb4bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfb230397e7ac71cf9fbf4c8a5a09a7a5111b0a16c24acf1bd0f9b327efd340aaffffffbf024ac7766d1832c94f1d3a6343edbef54167ff1bfffffffffffffff0bf4a4c859ce853e2f55cb4bf04ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 251, 35, 3, 151, 231, 172, 113, 207, 159, 191, 76, 138, 90, 9, 167, 165, 17, 27, 10, 22, + 194, 74, 207, 27, 208, 249, 179, 39, 239, 211, 64, 170, 255, 255, 255, 191, 2, 74, 199, 118, 109, 24, 50, 201, 79, + 29, 58, 99, 67, 237, 190, 245, 65, 103, 255, 27, 255, 255, 255, 255, 255, 255, 255, 240, 191, 74, 76, 133, 156, + 232, 83, 226, 245, 92, 180, 191, 4, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1030, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16287620242634986190" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9642140062046901730" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8452523022796444282" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15964597911111775792" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b88ed188ee0765" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14547837750766068820" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4355" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16103600193056597483" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb0ff2a86193" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "391395a41cdd9380848429" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "518e541139124d44d6efc71f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c56888b14c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7396d9f7226c5c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10112824288338345232" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de8ecb12d04cad370c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c21db05227dcbb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0c4580a287876" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2999985109123244286" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1be2094050aeb852ced8669f1b85cfc34cd8de55e29f1b754d64e7e597d27a1bdd8da53751c2b63047b88ed188ee0765ffff9fbf1bc9e44d5b486de4544243551bdf7b7b0e180ce5eb46fb0ff2a86193ffbf4b391395a41cdd93808484294c518e541139124d44d6efc71f45c56888b14c477396d9f7226c5c41da1b8c57f81c36597d1049de8ecb12d04cad370c47c21db05227dcbb47f0c4580a2878761b29a2168fe8c0a0feffffff", + "cborBytes": [ + 159, 27, 226, 9, 64, 80, 174, 184, 82, 206, 216, 102, 159, 27, 133, 207, 195, 76, 216, 222, 85, 226, 159, 27, 117, + 77, 100, 231, 229, 151, 210, 122, 27, 221, 141, 165, 55, 81, 194, 182, 48, 71, 184, 142, 209, 136, 238, 7, 101, + 255, 255, 159, 191, 27, 201, 228, 77, 91, 72, 109, 228, 84, 66, 67, 85, 27, 223, 123, 123, 14, 24, 12, 229, 235, + 70, 251, 15, 242, 168, 97, 147, 255, 191, 75, 57, 19, 149, 164, 28, 221, 147, 128, 132, 132, 41, 76, 81, 142, 84, + 17, 57, 18, 77, 68, 214, 239, 199, 31, 69, 197, 104, 136, 177, 76, 71, 115, 150, 217, 247, 34, 108, 92, 65, 218, + 27, 140, 87, 248, 28, 54, 89, 125, 16, 73, 222, 142, 203, 18, 208, 76, 173, 55, 12, 71, 194, 29, 176, 82, 39, 220, + 187, 71, 240, 196, 88, 10, 40, 120, 118, 27, 41, 162, 22, 143, 232, 192, 160, 254, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1031, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16482032705545622820" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17841665974384186638" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11538969547244178481" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4991786674154813577" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11969725247680057238" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a311f09f1" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11433945686333331784" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1be4bbf16b8e6ad5249f1bf79a54acac57d50effffbf1ba022a7aac98a0c311b454663885386b8891ba61d01b1c6fe8f96450a311f09f1ff1b9ead8905a7021948ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 228, 187, 241, 107, 142, 106, 213, 36, 159, 27, 247, 154, 84, 172, 172, 87, 213, 14, + 255, 255, 191, 27, 160, 34, 167, 170, 201, 138, 12, 49, 27, 69, 70, 99, 136, 83, 134, 184, 137, 27, 166, 29, 1, + 177, 198, 254, 143, 150, 69, 10, 49, 31, 9, 241, 255, 27, 158, 173, 137, 5, 167, 2, 25, 72, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1032, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d3e66" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13231616066908758517" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45a98bbf04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9f50d29" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a56b42031f5e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6669734823537199848" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3535262398743873619" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10001654947059689900" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1864949989723123413" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9796265355906838621" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10692235967570714587" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2353092653627986388" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13757159426849837522" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ab1c18d56fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "112379ede5" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e8159e8285bef6fd" + }, + { + "_tag": "ByteArray", + "bytearray": "16c1f451810030" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10805019348264296668" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fafa429b7ca7c29a91ca" + }, + { + "_tag": "ByteArray", + "bytearray": "5e6e2554d5f14feaf497ea" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12230708944614152719" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "73f0d32745af8fa075d6412b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e3b4d18e9c89019bbaa8410b" + }, + { + "_tag": "ByteArray", + "bytearray": "d55641ec3e2eb9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10920727114051419751" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13179211948797281507" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15566010322506226770" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3926287189138454858" + } + } + ] + } + ] + }, + "cborHex": "9fbf433d3e661bb7a024b57072a1f54545a98bbf0444d9f50d2946a56b42031f5e1b5c8fa87bf6fccae841f71b310fc66bc8ec8853ffd8669f1b8acd042eed8569ac9fbf1b19e1a2227d50aed51b87f35370384af05d1b946273f66db51fdb1b20a7dd4d1f13d1d41bbeeb3f9c33cd11d241a7460ab1c18d56fe45112379ede5ff48e8159e8285bef6fd4716c1f451810030ffffd8669f1b95f323d98c8420dc80ff9f4afafa429b7ca7c29a91ca4b5e6e2554d5f14feaf497ea80ffd8669f1ba9bc34fbeaeb5a0f9f4c73f0d32745af8fa075d6412b9f4ce3b4d18e9c89019bbaa8410b47d55641ec3e2eb91b978e37732202fe671bb6e5f770e3a544e31bd80593ea830c1c52ff1b367cf9656ac3b94affffff", + "cborBytes": [ + 159, 191, 67, 61, 62, 102, 27, 183, 160, 36, 181, 112, 114, 161, 245, 69, 69, 169, 139, 191, 4, 68, 217, 245, 13, + 41, 70, 165, 107, 66, 3, 31, 94, 27, 92, 143, 168, 123, 246, 252, 202, 232, 65, 247, 27, 49, 15, 198, 107, 200, + 236, 136, 83, 255, 216, 102, 159, 27, 138, 205, 4, 46, 237, 133, 105, 172, 159, 191, 27, 25, 225, 162, 34, 125, + 80, 174, 213, 27, 135, 243, 83, 112, 56, 74, 240, 93, 27, 148, 98, 115, 246, 109, 181, 31, 219, 27, 32, 167, 221, + 77, 31, 19, 209, 212, 27, 190, 235, 63, 156, 51, 205, 17, 210, 65, 167, 70, 10, 177, 193, 141, 86, 254, 69, 17, + 35, 121, 237, 229, 255, 72, 232, 21, 158, 130, 133, 190, 246, 253, 71, 22, 193, 244, 81, 129, 0, 48, 255, 255, + 216, 102, 159, 27, 149, 243, 35, 217, 140, 132, 32, 220, 128, 255, 159, 74, 250, 250, 66, 155, 124, 167, 194, 154, + 145, 202, 75, 94, 110, 37, 84, 213, 241, 79, 234, 244, 151, 234, 128, 255, 216, 102, 159, 27, 169, 188, 52, 251, + 234, 235, 90, 15, 159, 76, 115, 240, 211, 39, 69, 175, 143, 160, 117, 214, 65, 43, 159, 76, 227, 180, 209, 142, + 156, 137, 1, 155, 186, 168, 65, 11, 71, 213, 86, 65, 236, 62, 46, 185, 27, 151, 142, 55, 115, 34, 2, 254, 103, 27, + 182, 229, 247, 112, 227, 165, 68, 227, 27, 216, 5, 147, 234, 131, 12, 28, 82, 255, 27, 54, 124, 249, 101, 106, + 195, 185, 74, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1033, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5627eca1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1308462353850960236" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "82880f23" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6119777494852717288" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8640" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e944f44abc42" + } + } + ] + } + ] + }, + "cborHex": "9f445627eca11b122897940b42096cbf4482880f231b54edd13525204ae842864046e944f44abc42ffff", + "cborBytes": [ + 159, 68, 86, 39, 236, 161, 27, 18, 40, 151, 148, 11, 66, 9, 108, 191, 68, 130, 136, 15, 35, 27, 84, 237, 209, 53, + 37, 32, 74, 232, 66, 134, 64, 70, 233, 68, 244, 74, 188, 66, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1034, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16457867670705960268" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16306998371776666937" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b374c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12265431620387676784" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e830" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17243475927174174056" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "60e52e7eb6846298" + }, + { + "_tag": "ByteArray", + "bytearray": "e8520ef92c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6009210679968703073" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17564503980874194405" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6233057714835707011" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17490670182726696244" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94189feb17974e91" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9052777388533599348" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1be4661772f0d0754c9f80ffffd8669f1be24e189ef69f1d399fbf437b374c1baa379112de0d227042e8301bef4d21fef4375568ff4860e52e7eb684629845e8520ef92cffffd8669f1b536501467804a26180ff1bf3c1a74f53f0dde5bf1b568044f7ad4a54831bf2bb57dc94f0fd344894189feb17974e911b7da1ed123a3bcc74ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 228, 102, 23, 114, 240, 208, 117, 76, 159, 128, 255, 255, 216, 102, 159, 27, 226, 78, 24, + 158, 246, 159, 29, 57, 159, 191, 67, 123, 55, 76, 27, 170, 55, 145, 18, 222, 13, 34, 112, 66, 232, 48, 27, 239, + 77, 33, 254, 244, 55, 85, 104, 255, 72, 96, 229, 46, 126, 182, 132, 98, 152, 69, 232, 82, 14, 249, 44, 255, 255, + 216, 102, 159, 27, 83, 101, 1, 70, 120, 4, 162, 97, 128, 255, 27, 243, 193, 167, 79, 83, 240, 221, 229, 191, 27, + 86, 128, 68, 247, 173, 74, 84, 131, 27, 242, 187, 87, 220, 148, 240, 253, 52, 72, 148, 24, 159, 235, 23, 151, 78, + 145, 27, 125, 161, 237, 18, 58, 59, 204, 116, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1035, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18273178056938496824" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4058910615130777372" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7129216286599268540" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58976cae094b5b8da5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11050189928403899539" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "445c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12667259815031609695" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14769840301388012911" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16908313360862345220" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1453954229892802719" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11650965404443212471" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18436049718349682138" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ec1e547b9bc1d04d9" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e6cd2f6909a606020766" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9007cd9f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16440215245696748438" + } + } + ] + }, + "cborHex": "9fa0d8669f1bfd975ea0994823389fbf1b385425b30deea71c419b1b62f01070c1adc8bc4958976cae094b5b8da51b995a2931871d149342445c1bafcb25b0108a195f41901bccf90380097b1d6f41051beaa6656ae930f8044188ffbf1b142d7bab306fe89f1ba1b08b4e4e33fab71bffda018a5bac55da497ec1e547b9bc1d04d9ff4ae6cd2f6909a6060207660d449007cd9fffff1be42760a976b74b96ff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 253, 151, 94, 160, 153, 72, 35, 56, 159, 191, 27, 56, 84, 37, 179, 13, 238, 167, 28, + 65, 155, 27, 98, 240, 16, 112, 193, 173, 200, 188, 73, 88, 151, 108, 174, 9, 75, 91, 141, 165, 27, 153, 90, 41, + 49, 135, 29, 20, 147, 66, 68, 92, 27, 175, 203, 37, 176, 16, 138, 25, 95, 65, 144, 27, 204, 249, 3, 128, 9, 123, + 29, 111, 65, 5, 27, 234, 166, 101, 106, 233, 48, 248, 4, 65, 136, 255, 191, 27, 20, 45, 123, 171, 48, 111, 232, + 159, 27, 161, 176, 139, 78, 78, 51, 250, 183, 27, 255, 218, 1, 138, 91, 172, 85, 218, 73, 126, 193, 229, 71, 185, + 188, 29, 4, 217, 255, 74, 230, 205, 47, 105, 9, 166, 6, 2, 7, 102, 13, 68, 144, 7, 205, 159, 255, 255, 27, 228, + 39, 96, 169, 118, 183, 75, 150, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1036, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2643339762315152212" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eb184865b0b1a3d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4885983230532128508" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446457535296126202" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3935430672068830822" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2228817792150761439" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16071581989739158038" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + "cborHex": "9f9f1b24af07824175cb549f48eb184865b0b1a3d01b43ce7fdc72620efc1bfffefb6513a73cfa1b369d75586ed6e6661b1eee59f922376fdfff1bdf09baab34f7da16ff0fff", + "cborBytes": [ + 159, 159, 27, 36, 175, 7, 130, 65, 117, 203, 84, 159, 72, 235, 24, 72, 101, 176, 177, 163, 208, 27, 67, 206, 127, + 220, 114, 98, 14, 252, 27, 255, 254, 251, 101, 19, 167, 60, 250, 27, 54, 157, 117, 88, 110, 214, 230, 102, 27, 30, + 238, 89, 249, 34, 55, 111, 223, 255, 27, 223, 9, 186, 171, 52, 247, 218, 22, 255, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1037, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5984549676277195460" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4376621510004748718" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3473993644766149714" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe2146893f57f156e38b95" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6611667977204559418" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df7195050c8d9a71b6" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2bece7e7c4392c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4947565090758489444" + } + } + ] + } + ] + }, + "cborHex": "9f1b530d64391b2e62c4a0d8669f1b3cbce213342ab1ae9fbf1b30361ad05c403c524bfe2146893f57f156e38b951b5bc15cfec21a6e3a49df7195050c8d9a71b6ff9f472bece7e7c4392cff1b44a9483c99c87564ffffff", + "cborBytes": [ + 159, 27, 83, 13, 100, 57, 27, 46, 98, 196, 160, 216, 102, 159, 27, 60, 188, 226, 19, 52, 42, 177, 174, 159, 191, + 27, 48, 54, 26, 208, 92, 64, 60, 82, 75, 254, 33, 70, 137, 63, 87, 241, 86, 227, 139, 149, 27, 91, 193, 92, 254, + 194, 26, 110, 58, 73, 223, 113, 149, 5, 12, 141, 154, 113, 182, 255, 159, 71, 43, 236, 231, 231, 196, 57, 44, 255, + 27, 68, 169, 72, 60, 153, 200, 117, 100, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1038, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1c" + } + ] + }, + "cborHex": "9f411cff", + "cborBytes": [159, 65, 28, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1039, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0839fee29853390b7e" + }, + { + "_tag": "ByteArray", + "bytearray": "62bde1cf5adef8c5fd" + } + ] + }, + "cborHex": "9f490839fee29853390b7e4962bde1cf5adef8c5fdff", + "cborBytes": [159, 73, 8, 57, 254, 226, 152, 83, 57, 11, 126, 73, 98, 189, 225, 207, 90, 222, 248, 197, 253, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1040, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4189926863584525776" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7579127969539016487" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02000503" + }, + { + "_tag": "ByteArray", + "bytearray": "04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "de67" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "786f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "944b7d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b18a69a3864ff41ee1" + } + ] + }, + "cborHex": "9fd87d9fd8669f1b3a259c4882d27dd09f001bffffffffffffffee081bfffffffffffffffd1b692e78bb7b99c727ffffa0ff9f9f440200050341040cffff42de67bf42786f1243944b7d1bfffffffffffffff5ff49b18a69a3864ff41ee1ff", + "cborBytes": [ + 159, 216, 125, 159, 216, 102, 159, 27, 58, 37, 156, 72, 130, 210, 125, 208, 159, 0, 27, 255, 255, 255, 255, 255, + 255, 255, 238, 8, 27, 255, 255, 255, 255, 255, 255, 255, 253, 27, 105, 46, 120, 187, 123, 153, 199, 39, 255, 255, + 160, 255, 159, 159, 68, 2, 0, 5, 3, 65, 4, 12, 255, 255, 66, 222, 103, 191, 66, 120, 111, 18, 67, 148, 75, 125, + 27, 255, 255, 255, 255, 255, 255, 255, 245, 255, 73, 177, 138, 105, 163, 134, 79, 244, 30, 225, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1041, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9834ff2560f7cb69c213218c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9161754081348362119" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7324658131215826833" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6db30ac566da440d96e6c2c8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11338882874415609562" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8823097805397989145" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12959578804919840942" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9914164624554845964" + } + } + } + ] + } + ] + }, + "cborHex": "9f4c9834ff2560f7cb69c213218c1b7f2516cbc2411f87bf1b65a669c33c4bbf914c6db30ac566da440d96e6c2c81b9d5bcde5f74d76da1b7a71f0b50d4697191bb3d9ac42a1edb0ae1b89963032d355e70cffff", + "cborBytes": [ + 159, 76, 152, 52, 255, 37, 96, 247, 203, 105, 194, 19, 33, 140, 27, 127, 37, 22, 203, 194, 65, 31, 135, 191, 27, + 101, 166, 105, 195, 60, 75, 191, 145, 76, 109, 179, 10, 197, 102, 218, 68, 13, 150, 230, 194, 200, 27, 157, 91, + 205, 229, 247, 77, 118, 218, 27, 122, 113, 240, 181, 13, 70, 151, 25, 27, 179, 217, 172, 66, 161, 237, 176, 174, + 27, 137, 150, 48, 50, 211, 85, 231, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1042, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + }, + "cborHex": "9f14ff", + "cborBytes": [159, 20, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1043, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "19c4" + } + ] + }, + "cborHex": "9f4219c4ff", + "cborBytes": [159, 66, 25, 196, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1044, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "68" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f4168a0ff", + "cborBytes": [159, 65, 104, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1045, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1296340037914458488" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddac1c94b0df7e" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b11fd86656c01f97847ddac1c94b0df7effff", + "cborBytes": [159, 191, 27, 17, 253, 134, 101, 108, 1, 249, 120, 71, 221, 172, 28, 148, 176, 223, 126, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1046, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5877314981516405558" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d28b75e605a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "709c2e7297856c224e3b9a" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03b93eb7e63b59a185b9c9b1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8edf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11947158882861435273" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a39d9ae32f9" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0db542" + }, + { + "_tag": "ByteArray", + "bytearray": "7f82f47556bdefc9" + } + ] + }, + "cborHex": "9fd8669f1b51906ad61a5deb369fbf461d28b75e605a4b709c2e7297856c224e3b9affffff9f4c03b93eb7e63b59a185b9c9b19f428edf1ba5ccd5b4881bc989461a39d9ae32f9ffff430db542487f82f47556bdefc9ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 81, 144, 106, 214, 26, 93, 235, 54, 159, 191, 70, 29, 40, 183, 94, 96, 90, 75, 112, 156, + 46, 114, 151, 133, 108, 34, 78, 59, 154, 255, 255, 255, 159, 76, 3, 185, 62, 183, 230, 59, 89, 161, 133, 185, 201, + 177, 159, 66, 142, 223, 27, 165, 204, 213, 180, 136, 27, 201, 137, 70, 26, 57, 217, 174, 50, 249, 255, 255, 67, + 13, 181, 66, 72, 127, 130, 244, 117, 86, 189, 239, 201, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1047, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03f8" + } + ] + }, + "cborHex": "9f4203f8ff", + "cborBytes": [159, 66, 3, 248, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1048, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e390e891bea439" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5751304843679861159" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1929749697778288670" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7028394368889248847" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f01b9e73ef3bd29a9a198b20" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12781200620581408892" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de620841" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16848383551493650697" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "282fd98a67dea4e1" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16290827050583795841" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "39df6a5c42df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3767100776179077350" + } + }, + { + "_tag": "ByteArray", + "bytearray": "77ee142621" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7659288921334048552" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7a39e7dfe00cd04747f136" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9300714070349770325" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac5d85" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14523728969986140589" + } + } + ] + } + ] + }, + "cborHex": "9f47e390e891bea439bf1b4fd0bd489a8589a71b1ac7d920397e081e1b6189df70c2ffdc4f4cf01b9e73ef3bd29a9a198b201bb15ff23f28c1d07c44de6208411be9d17b92d250390948282fd98a67dea4e1ffd8669f1be214a4e3d75f28819f9f4639df6a5c42df1b34476e326d4090e64577ee142621ffd8669f1b6a4b42b17c3367289f4b7a39e7dfe00cd04747f136ffff9f1b8112c62b70acee5543ac5d85ff1bc98ea68c5612e9adffffff", + "cborBytes": [ + 159, 71, 227, 144, 232, 145, 190, 164, 57, 191, 27, 79, 208, 189, 72, 154, 133, 137, 167, 27, 26, 199, 217, 32, + 57, 126, 8, 30, 27, 97, 137, 223, 112, 194, 255, 220, 79, 76, 240, 27, 158, 115, 239, 59, 210, 154, 154, 25, 139, + 32, 27, 177, 95, 242, 63, 40, 193, 208, 124, 68, 222, 98, 8, 65, 27, 233, 209, 123, 146, 210, 80, 57, 9, 72, 40, + 47, 217, 138, 103, 222, 164, 225, 255, 216, 102, 159, 27, 226, 20, 164, 227, 215, 95, 40, 129, 159, 159, 70, 57, + 223, 106, 92, 66, 223, 27, 52, 71, 110, 50, 109, 64, 144, 230, 69, 119, 238, 20, 38, 33, 255, 216, 102, 159, 27, + 106, 75, 66, 177, 124, 51, 103, 40, 159, 75, 122, 57, 231, 223, 224, 12, 208, 71, 71, 241, 54, 255, 255, 159, 27, + 129, 18, 198, 43, 112, 172, 238, 85, 67, 172, 93, 133, 255, 27, 201, 142, 166, 140, 86, 18, 233, 173, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1049, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2552080490814028339" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4977177893086047172" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f41138ef2820" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d486f38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "665a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c5d52d71005" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a7acc91131e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d56be2b3caab0cfa2bf45aec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2911320151227254708" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc5ffb7f7051" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2702622208378477359" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "07a906" + }, + { + "_tag": "ByteArray", + "bytearray": "030705fc" + } + ] + }, + "cborHex": "9f9fd8669f1b236acfaf552cba339f1b45127cec6d522bc446f41138ef2820ffffa0bf441d486f3841eb42665a464c5d52d710054270c54256ae42b6c2463a7acc91131e4cd56be2b3caab0cfa2bf45aec1b28671640b15647b446dc5ffb7f70511b2581a494547b1b2fffff4307a90644030705fcff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 35, 106, 207, 175, 85, 44, 186, 51, 159, 27, 69, 18, 124, 236, 109, 82, 43, 196, 70, + 244, 17, 56, 239, 40, 32, 255, 255, 160, 191, 68, 29, 72, 111, 56, 65, 235, 66, 102, 90, 70, 76, 93, 82, 215, 16, + 5, 66, 112, 197, 66, 86, 174, 66, 182, 194, 70, 58, 122, 204, 145, 19, 30, 76, 213, 107, 226, 179, 202, 171, 12, + 250, 43, 244, 90, 236, 27, 40, 103, 22, 64, 177, 86, 71, 180, 70, 220, 95, 251, 127, 112, 81, 27, 37, 129, 164, + 148, 84, 123, 27, 47, 255, 255, 67, 7, 169, 6, 68, 3, 7, 5, 252, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1050, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a2b9cd8930959" + } + ] + }, + "cborHex": "9f476a2b9cd8930959ff", + "cborBytes": [159, 71, 106, 43, 156, 216, 147, 9, 89, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1051, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f136da5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18034728278790714509" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46fb6d8450" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "226274185756032394" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58ee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8713968deccc6be99" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2930052633815665436" + } + } + ] + } + ] + }, + "cborHex": "9fbf443f136da51bfa4839d14603348d4546fb6d84501b0323e32c4fd43d8a4258ee49e8713968deccc6be99ff9f1b28a9a358abc7cb1cffff", + "cborBytes": [ + 159, 191, 68, 63, 19, 109, 165, 27, 250, 72, 57, 209, 70, 3, 52, 141, 69, 70, 251, 109, 132, 80, 27, 3, 35, 227, + 44, 79, 212, 61, 138, 66, 88, 238, 73, 232, 113, 57, 104, 222, 204, 198, 190, 153, 255, 159, 27, 40, 169, 163, 88, + 171, 199, 203, 28, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1052, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3038654461822761568" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10083606562645180529" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5334563954279513052" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15646133662534318762" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "053882339ebecae4eab9" + } + ] + }, + "cborHex": "9f80bf1b2a2b78223019fa601b8bf02abe554380711b4a082da7166efbdc1bd9223bab57a3baaaff4a053882339ebecae4eab9ff", + "cborBytes": [ + 159, 128, 191, 27, 42, 43, 120, 34, 48, 25, 250, 96, 27, 139, 240, 42, 190, 85, 67, 128, 113, 27, 74, 8, 45, 167, + 22, 110, 251, 220, 27, 217, 34, 59, 171, 87, 163, 186, 170, 255, 74, 5, 56, 130, 51, 158, 190, 202, 228, 234, 185, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1053, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4092988753800556842" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f9d403063f" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2412743210497882717" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c04f76143ef45e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9250462963310243887" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b420d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c4c3c82a63a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b1c4895cacba69860" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4c" + } + ] + }, + "cborHex": "9fa0d8669f1b38cd379603f3712a9f089f45f9d403063fffffffbf1b217bc92aabf63a5d47c04f76143ef45e1b80603f0dd803b02f43b420d3469c4c3c82a63a499b1c4895cacba69860ff414cff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 56, 205, 55, 150, 3, 243, 113, 42, 159, 8, 159, 69, 249, 212, 3, 6, 63, 255, 255, + 255, 191, 27, 33, 123, 201, 42, 171, 246, 58, 93, 71, 192, 79, 118, 20, 62, 244, 94, 27, 128, 96, 63, 13, 216, 3, + 176, 47, 67, 180, 32, 211, 70, 156, 76, 60, 130, 166, 58, 73, 155, 28, 72, 149, 202, 203, 166, 152, 96, 255, 65, + 76, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1054, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16110941944785074243" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7ae22fc24e01897997" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bdf959056dfdaf8439f497ae22fc24e01897997ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 223, 149, 144, 86, 223, 218, 248, 67, 159, 73, 122, 226, 47, 194, 78, 1, 137, 121, 151, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1055, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10342467207504036818" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3140041780267663985" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15958016023048426305" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "996bd7309c4b81f85a124b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16896652470607986088" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9867398260672163514" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7330441115229799142" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9fbf1b8f87d320e46783d21b2b93ab5cccbd42711bdd76430615cb13414b996bd7309c4b81f85a124b1bea7cf7e653d0bda81b88f00a7038abeebaffff1b65baf55b2030c2e680ff", + "cborBytes": [ + 159, 159, 191, 27, 143, 135, 211, 32, 228, 103, 131, 210, 27, 43, 147, 171, 92, 204, 189, 66, 113, 27, 221, 118, + 67, 6, 21, 203, 19, 65, 75, 153, 107, 215, 48, 156, 75, 129, 248, 90, 18, 75, 27, 234, 124, 247, 230, 83, 208, + 189, 168, 27, 136, 240, 10, 112, 56, 171, 238, 186, 255, 255, 27, 101, 186, 245, 91, 32, 48, 194, 230, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1056, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14106334147625756437" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7105815572421543190" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1097472572002843387" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8038463031392086522" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5638123944258260912" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7995639777968716061" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ebece1" + } + ] + }, + "cborHex": "9fd8669f1bc3c3c42b303227159f1b629ced9d69a005161b0f3b017d54f6bafb801b6f8e5b89963c29faffff1b4e3ea3daf1234fb01b6ef63803edcef91d43ebece1ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 195, 195, 196, 43, 48, 50, 39, 21, 159, 27, 98, 156, 237, 157, 105, 160, 5, 22, 27, 15, + 59, 1, 125, 84, 246, 186, 251, 128, 27, 111, 142, 91, 137, 150, 60, 41, 250, 255, 255, 27, 78, 62, 163, 218, 241, + 35, 79, 176, 27, 110, 246, 56, 3, 237, 206, 249, 29, 67, 235, 236, 225, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1057, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1215122612117285836" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b44792fd2053c0566ef29d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59f65ee30d2e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7545987521673889812" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13930509168932651754" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f9fbf41a51b10dcfb93e5cbabcc4bb44792fd2053c0566ef29d4659f65ee30d2e42bf091b68b8bbabace70814ff1bc1531c483a8d82ea80ffff", + "cborBytes": [ + 159, 159, 191, 65, 165, 27, 16, 220, 251, 147, 229, 203, 171, 204, 75, 180, 71, 146, 253, 32, 83, 192, 86, 110, + 242, 157, 70, 89, 246, 94, 227, 13, 46, 66, 191, 9, 27, 104, 184, 187, 171, 172, 231, 8, 20, 255, 27, 193, 83, 28, + 72, 58, 141, 130, 234, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1058, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5715314880460137410" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16141635243212625724" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11973013221116140199" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2298051043013896672" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5472dade4a039c8252996528" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f39835ecf43fafc53b2" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1153778734258248675" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a0d058030e7f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e8ba47514a11d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7d40d1256e61f1b89ace119" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "84e91f309a6bb93512cfdb" + }, + { + "_tag": "ByteArray", + "bytearray": "b6287cfa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13756411228863058494" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e9d37b025057e0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10656289692636892825" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4406090097588576507" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d8b91b449d2abf7a1c8a08d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12420718715207048207" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1767038617613451582" + } + }, + { + "_tag": "ByteArray", + "bytearray": "21dca1dc5a18" + }, + { + "_tag": "ByteArray", + "bytearray": "aff4" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3501118439892784125" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "061ef96d29cb31334118f7c1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17879774160975185702" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17120446551085481037" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9dbd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11292167575307113592" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10880602841221898225" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5382417a8ae8" + }, + { + "_tag": "ByteArray", + "bytearray": "468eab062bff329b" + }, + { + "_tag": "ByteArray", + "bytearray": "73d34dff81" + }, + { + "_tag": "ByteArray", + "bytearray": "f3bbbe0a36ef" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1361674298957137730" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1191886281945055490" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4dc22de733ecb5f55ef3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16885430127342923108" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11108150793560334422" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12586677455865703246" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12338014474611741042" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa5dff7a1bc7e414" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14278158548871978613" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13120595373322169972" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b4f50e09a4d54a3c21be0029bbb4d9d573c1ba628b016bfaedaa71b1fe4513f7e8f29e04c5472dade4a039c82529965284a3f39835ecf43fafc53b2ffd8669f1b10030ba554dcdbe39f46a0d058030e7fbf475e8ba47514a11d4ce7d40d1256e61f1b89ace119ff9f4b84e91f309a6bb93512cfdb44b6287cfa1bbee89720c893d23e47e9d37b025057e01b93e2bf0419474e99ffd8669f1b3d2593996b2220fb9f4cd8b91b449d2abf7a1c8a08d51bac5f41dd1af65c0f1b1885c842b33f413e4621dca1dc5a1842aff4ffffffff9fd8669f1b309678abde6113fd9f4c061ef96d29cb31334118f7c11bf821b7de49224726ffff411d9f1bed980b6e2182fc4d429dbd1b9cb5d694ce5d54781b96ffaaa2dd231ff1ff9f465382417a8ae848468eab062bff329b4573d34dff8146f3bbbe0a36efffff9f1b12e5a38f791e87429f1b108a6e422fff01024a4dc22de733ecb5f55ef31bea55193cebf42d641b9a28144b11a320561baeacdc75834aeb4effd8669f1bab396ecb88dc51729f48aa5dff7a1bc7e4141bc626358d20389e751bb615b7f9e4806e74ffffffff", + "cborBytes": [ + 159, 191, 27, 79, 80, 224, 154, 77, 84, 163, 194, 27, 224, 2, 155, 187, 77, 157, 87, 60, 27, 166, 40, 176, 22, + 191, 174, 218, 167, 27, 31, 228, 81, 63, 126, 143, 41, 224, 76, 84, 114, 218, 222, 74, 3, 156, 130, 82, 153, 101, + 40, 74, 63, 57, 131, 94, 207, 67, 250, 252, 83, 178, 255, 216, 102, 159, 27, 16, 3, 11, 165, 84, 220, 219, 227, + 159, 70, 160, 208, 88, 3, 14, 127, 191, 71, 94, 139, 164, 117, 20, 161, 29, 76, 231, 212, 13, 18, 86, 230, 31, 27, + 137, 172, 225, 25, 255, 159, 75, 132, 233, 31, 48, 154, 107, 185, 53, 18, 207, 219, 68, 182, 40, 124, 250, 27, + 190, 232, 151, 32, 200, 147, 210, 62, 71, 233, 211, 123, 2, 80, 87, 224, 27, 147, 226, 191, 4, 25, 71, 78, 153, + 255, 216, 102, 159, 27, 61, 37, 147, 153, 107, 34, 32, 251, 159, 76, 216, 185, 27, 68, 157, 42, 191, 122, 28, 138, + 8, 213, 27, 172, 95, 65, 221, 26, 246, 92, 15, 27, 24, 133, 200, 66, 179, 63, 65, 62, 70, 33, 220, 161, 220, 90, + 24, 66, 175, 244, 255, 255, 255, 255, 159, 216, 102, 159, 27, 48, 150, 120, 171, 222, 97, 19, 253, 159, 76, 6, 30, + 249, 109, 41, 203, 49, 51, 65, 24, 247, 193, 27, 248, 33, 183, 222, 73, 34, 71, 38, 255, 255, 65, 29, 159, 27, + 237, 152, 11, 110, 33, 130, 252, 77, 66, 157, 189, 27, 156, 181, 214, 148, 206, 93, 84, 120, 27, 150, 255, 170, + 162, 221, 35, 31, 241, 255, 159, 70, 83, 130, 65, 122, 138, 232, 72, 70, 142, 171, 6, 43, 255, 50, 155, 69, 115, + 211, 77, 255, 129, 70, 243, 187, 190, 10, 54, 239, 255, 255, 159, 27, 18, 229, 163, 143, 121, 30, 135, 66, 159, + 27, 16, 138, 110, 66, 47, 255, 1, 2, 74, 77, 194, 45, 231, 51, 236, 181, 245, 94, 243, 27, 234, 85, 25, 60, 235, + 244, 45, 100, 27, 154, 40, 20, 75, 17, 163, 32, 86, 27, 174, 172, 220, 117, 131, 74, 235, 78, 255, 216, 102, 159, + 27, 171, 57, 110, 203, 136, 220, 81, 114, 159, 72, 170, 93, 255, 122, 27, 199, 228, 20, 27, 198, 38, 53, 141, 32, + 56, 158, 117, 27, 182, 21, 183, 249, 228, 128, 110, 116, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1059, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8036196768362357354" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3399074729687352308" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3580857803572839704" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a66504a3" + } + ] + }, + "cborHex": "9f1b6f864e621b61626a1b2f2bf075240583f41b31b1c3333d25051844a66504a3ff", + "cborBytes": [ + 159, 27, 111, 134, 78, 98, 27, 97, 98, 106, 27, 47, 43, 240, 117, 36, 5, 131, 244, 27, 49, 177, 195, 51, 61, 37, + 5, 24, 68, 166, 101, 4, 163, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1060, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4693419504298701670" + } + } + ] + }, + "cborHex": "9f1b4122602c1f9d3366ff", + "cborBytes": [159, 27, 65, 34, 96, 44, 31, 157, 51, 102, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1061, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00fafe6a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60ff04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b54cb8e05a8891043" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc16269e09e83669ad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13068021377863322875" + } + } + ] + }, + "cborHex": "9fbf4400fafe6a1bfffffffffffffffc4106084360ff0404497b54cb8e05a88910431bfffffffffffffff6ff49fc16269e09e83669ad1bb55af034b0c10cfbff", + "cborBytes": [ + 159, 191, 68, 0, 250, 254, 106, 27, 255, 255, 255, 255, 255, 255, 255, 252, 65, 6, 8, 67, 96, 255, 4, 4, 73, 123, + 84, 203, 142, 5, 168, 137, 16, 67, 27, 255, 255, 255, 255, 255, 255, 255, 246, 255, 73, 252, 22, 38, 158, 9, 232, + 54, 105, 173, 27, 181, 90, 240, 52, 176, 193, 12, 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1062, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b5ab6ca9edcc7ac09bcb34" + }, + { + "_tag": "ByteArray", + "bytearray": "1dc40b1ac57539ba2cc98663" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1351285607112143526" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b7aec535c3b216c3ab150" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16978054843499143730" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56e136d2fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "720f8a8f59924f5dc283" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e04e6b5be4d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3070212350914311423" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6223954398831085454" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "840af57da009a497d136" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12098554902449715939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3db3b3e708bc54c0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16600605378730900773" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c4fe2e013c9ea68" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "47b5cb2454003d9f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3cda" + }, + { + "_tag": "ByteArray", + "bytearray": "b178a30d8ffacb1515e3bec5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13514319470198679735" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "815325892969419646" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16829657067879301011" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5319404196176863087" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3193471978625292733" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9632163179833157606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4738558623225300820" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12842261612429203817" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e36496" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13400521440567931440" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d593f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17547094798478901541" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f63614e5fcdd" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13570736630888140095" + } + } + ] + }, + "cborHex": "9f4bb5ab6ca9edcc7ac09bcb344c1dc40b1ac57539ba2cc98663d8669f1b12c0bb19aa0472a69fbf4b4b7aec535c3b216c3ab1501beb9e2aed33dde2324556e136d2fd4a720f8a8f59924f5dc283ff9f46e04e6b5be4d31b2a9b95ddd143b4ffffbf1b565fed8cc08e878e4a840af57da009a497d1361ba7e6b39538137ae3483db3b3e708bc54c01be66132a35fb1bd25485c4fe2e013c9ea68ff4847b5cb2454003d9f9f423cda4cb178a30d8ffacb1515e3bec51bbb8c81f4ca5668b7ffffff9fbf1b0b509e94729ed37e1be98ef3ef96967f931b49d251eed9d81f6f1b2c517dd8461fd9bd1b85ac5160f08d67e61b41c2bdf63cb547541bb238e0e5317a596943e364961bb9f837404e0eb23043d593f81bf383cdc02f70812546f63614e5fcddffff1bbc54f110a0780d3fff", + "cborBytes": [ + 159, 75, 181, 171, 108, 169, 237, 204, 122, 192, 155, 203, 52, 76, 29, 196, 11, 26, 197, 117, 57, 186, 44, 201, + 134, 99, 216, 102, 159, 27, 18, 192, 187, 25, 170, 4, 114, 166, 159, 191, 75, 75, 122, 236, 83, 92, 59, 33, 108, + 58, 177, 80, 27, 235, 158, 42, 237, 51, 221, 226, 50, 69, 86, 225, 54, 210, 253, 74, 114, 15, 138, 143, 89, 146, + 79, 93, 194, 131, 255, 159, 70, 224, 78, 107, 91, 228, 211, 27, 42, 155, 149, 221, 209, 67, 180, 255, 255, 191, + 27, 86, 95, 237, 140, 192, 142, 135, 142, 74, 132, 10, 245, 125, 160, 9, 164, 151, 209, 54, 27, 167, 230, 179, + 149, 56, 19, 122, 227, 72, 61, 179, 179, 231, 8, 188, 84, 192, 27, 230, 97, 50, 163, 95, 177, 189, 37, 72, 92, 79, + 226, 224, 19, 201, 234, 104, 255, 72, 71, 181, 203, 36, 84, 0, 61, 159, 159, 66, 60, 218, 76, 177, 120, 163, 13, + 143, 250, 203, 21, 21, 227, 190, 197, 27, 187, 140, 129, 244, 202, 86, 104, 183, 255, 255, 255, 159, 191, 27, 11, + 80, 158, 148, 114, 158, 211, 126, 27, 233, 142, 243, 239, 150, 150, 127, 147, 27, 73, 210, 81, 238, 217, 216, 31, + 111, 27, 44, 81, 125, 216, 70, 31, 217, 189, 27, 133, 172, 81, 96, 240, 141, 103, 230, 27, 65, 194, 189, 246, 60, + 181, 71, 84, 27, 178, 56, 224, 229, 49, 122, 89, 105, 67, 227, 100, 150, 27, 185, 248, 55, 64, 78, 14, 178, 48, + 67, 213, 147, 248, 27, 243, 131, 205, 192, 47, 112, 129, 37, 70, 246, 54, 20, 229, 252, 221, 255, 255, 27, 188, + 84, 241, 16, 160, 120, 13, 63, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1063, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06005920" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + }, + "cborHex": "9f0244060059200dff", + "cborBytes": [159, 2, 68, 6, 0, 89, 32, 13, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1064, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7659017133995408176" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7178108746590474700" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10147481558780305481" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4885925939776290079" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4907010515167271125" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13950014553627626927" + } + }, + { + "_tag": "ByteArray", + "bytearray": "caa3" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10966690048014031983" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16775326938320469098" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "666430" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1bf24b05dbfa1b360b" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "238476616110158666" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dc02ca" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17963026199689855479" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07a040" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17151038732894347926" + } + }, + { + "_tag": "ByteArray", + "bytearray": "778587135aba8f45212568fd" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd87a9f1b6a4a4b81106d3b30d8669f1b639dc3dfafa651cc9f1b8cd318b6cbed6049ffff1b43ce4bc1673b7d1f9f1b44193410a9a6d8d51bc198685380810daf42caa3ffbf1b9831827ea1b01c6f1be8cdeef88da1fc6a43666430491bf24b05dbfa1b360bffffd8669f1b034f3d38067bb34a9f43dc02cad8669f1bf9497d280b8c81f79f4307a0401bee04badb832222964c778587135aba8f45212568fdffffffffff", + "cborBytes": [ + 159, 216, 122, 159, 27, 106, 74, 75, 129, 16, 109, 59, 48, 216, 102, 159, 27, 99, 157, 195, 223, 175, 166, 81, + 204, 159, 27, 140, 211, 24, 182, 203, 237, 96, 73, 255, 255, 27, 67, 206, 75, 193, 103, 59, 125, 31, 159, 27, 68, + 25, 52, 16, 169, 166, 216, 213, 27, 193, 152, 104, 83, 128, 129, 13, 175, 66, 202, 163, 255, 191, 27, 152, 49, + 130, 126, 161, 176, 28, 111, 27, 232, 205, 238, 248, 141, 161, 252, 106, 67, 102, 100, 48, 73, 27, 242, 75, 5, + 219, 250, 27, 54, 11, 255, 255, 216, 102, 159, 27, 3, 79, 61, 56, 6, 123, 179, 74, 159, 67, 220, 2, 202, 216, 102, + 159, 27, 249, 73, 125, 40, 11, 140, 129, 247, 159, 67, 7, 160, 64, 27, 238, 4, 186, 219, 131, 34, 34, 150, 76, + 119, 133, 135, 19, 90, 186, 143, 69, 33, 37, 104, 253, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1065, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff780ffff", + "cborBytes": [159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1066, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5573875689068630359" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffff51b4d5a6268551f1157ff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 27, 77, 90, 98, 104, 85, 31, 17, 87, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1067, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3048458246578212068" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a5b65d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "736182d122" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5671867577720893246" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5837249176447471263" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11793189370990833846" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c604036c033c55fa0702fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18308498958934907698" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "663c" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b2a4e4c9fb3e78ce49f43a5b65dbf0c45736182d12212071b4eb68582d71bef3e0f1b51021332eb97ce9f41031ba3a9d33ffad230b64bc604036c033c55fa0702fc1bfe14daccf1ec9b3242663cffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 42, 78, 76, 159, 179, 231, 140, 228, 159, 67, 165, 182, 93, 191, 12, 69, 115, 97, 130, + 209, 34, 18, 7, 27, 78, 182, 133, 130, 215, 27, 239, 62, 15, 27, 81, 2, 19, 50, 235, 151, 206, 159, 65, 3, 27, + 163, 169, 211, 63, 250, 210, 48, 182, 75, 198, 4, 3, 108, 3, 60, 85, 250, 7, 2, 252, 27, 254, 20, 218, 204, 241, + 236, 155, 50, 66, 102, 60, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1068, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2310" + }, + { + "_tag": "ByteArray", + "bytearray": "eb6cbe4a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13355920105431973925" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c86c6c6fb321718b3b3be64" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ef588d43240c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10493665827828211257" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f3754" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8672832518485891751" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd7701f3cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "167172e5" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11350372538987815833" + } + } + ] + }, + "cborHex": "9f42231044eb6cbe4abf1bb959c292bcc540254c4c86c6c6fb321718b3b3be64470ef588d43240c81b91a0fd78fb5b1e39439f37541b785c173994cedaa745cd7701f3cb44167172e5ff1b9d849faff6b7a399ff", + "cborBytes": [ + 159, 66, 35, 16, 68, 235, 108, 190, 74, 191, 27, 185, 89, 194, 146, 188, 197, 64, 37, 76, 76, 134, 198, 198, 251, + 50, 23, 24, 179, 179, 190, 100, 71, 14, 245, 136, 212, 50, 64, 200, 27, 145, 160, 253, 120, 251, 91, 30, 57, 67, + 159, 55, 84, 27, 120, 92, 23, 57, 148, 206, 218, 167, 69, 205, 119, 1, 243, 203, 68, 22, 113, 114, 229, 255, 27, + 157, 132, 159, 175, 246, 183, 163, 153, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1069, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fcfdf200648af3b65c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15385817254592638551" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9253036217701651228" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4911395138967104924" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8344d5f2870ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16554202083996426297" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31c1d3fb4a160d2e046c09" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10404578861882156330" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de11ea73bf19df" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3643441287850295977" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "314bb8143668fef9" + } + ] + } + ] + } + ] + }, + "cborHex": "9f49fcfdf200648af3b65cd8669f1bd58567468711ee579f1b8069636a51ee531cbf1b4428c7db71b6ed9c47c8344d5f2870ba1be5bc571664a360394b31c1d3fb4a160d2e046c09ff1b90647d595c06252a47de11ea73bf19dfffffd8669f1b32901a8c2a4f02a99f9f48314bb8143668fef9ffffffff", + "cborBytes": [ + 159, 73, 252, 253, 242, 0, 100, 138, 243, 182, 92, 216, 102, 159, 27, 213, 133, 103, 70, 135, 17, 238, 87, 159, + 27, 128, 105, 99, 106, 81, 238, 83, 28, 191, 27, 68, 40, 199, 219, 113, 182, 237, 156, 71, 200, 52, 77, 95, 40, + 112, 186, 27, 229, 188, 87, 22, 100, 163, 96, 57, 75, 49, 193, 211, 251, 74, 22, 13, 46, 4, 108, 9, 255, 27, 144, + 100, 125, 89, 92, 6, 37, 42, 71, 222, 17, 234, 115, 191, 25, 223, 255, 255, 216, 102, 159, 27, 50, 144, 26, 140, + 42, 79, 2, 169, 159, 159, 72, 49, 75, 184, 20, 54, 104, 254, 249, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1070, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7888fbf7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d15febc069aff8fb7c62ea1f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3837366216493367730" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "211780538269735695" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d84d7d12845fb10" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15954080627707413158" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9486749462047237057" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14713278798825304052" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "889d4223" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "354002107467272430" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9142754041253339771" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13973814766482055649" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17514420634186428322" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4500655549373437786" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1988301852352978428" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4295540347713360116" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10149566730924759763" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3364998049505673964" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11893909289922941134" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e2e387aab092a3dc45e6" + }, + { + "_tag": "ByteArray", + "bytearray": "f650ec7c7e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13042751947697734370" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4490091233408824622" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10117541848776363666" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5572216901432878657" + } + }, + { + "_tag": "ByteArray", + "bytearray": "191a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2878930863703540294" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "060604f66650" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + ] + } + ] + }, + "cborHex": "9f447888fbf79f4cd15febc069aff8fb7c62ea1f1b3541103e1f2c01b2bf1b02f0654709e89b0f488d84d7d12845fb101bdd6847cd747102a61b83a7b45f6e7423c1ff1bcc30111cfd44aff4ffbf0a44889d42231b04e9ab0a895390ee1bfffffffffffffff51b7ee1965c31ac227b0d1bc1ecf67e614561e141061bf30fb8c57b742fa21bfffffffffffffffb1bfffffffffffffffc1b3e758a606ccb575affd8669f1b1b97de000fc01dfc9f9f1b3b9cd32fffd010f41b8cda812ac4e49ad3ffd8669f1b2eb2dfe5c2ab02ec9f1ba50fa77b889350ce4ae2e387aab092a3dc45e645f650ec7c7e1bb50129cb000ec2e2ffffd8669f1b3e50022ff06db52e9f1b8c68bab4d876ce9242df041b4d547dbfbd55a64142191affffbf1b27f4045e07f5424646060604f66650ff1bfffffffffffffff9ffffff", + "cborBytes": [ + 159, 68, 120, 136, 251, 247, 159, 76, 209, 95, 235, 192, 105, 175, 248, 251, 124, 98, 234, 31, 27, 53, 65, 16, 62, + 31, 44, 1, 178, 191, 27, 2, 240, 101, 71, 9, 232, 155, 15, 72, 141, 132, 215, 209, 40, 69, 251, 16, 27, 221, 104, + 71, 205, 116, 113, 2, 166, 27, 131, 167, 180, 95, 110, 116, 35, 193, 255, 27, 204, 48, 17, 28, 253, 68, 175, 244, + 255, 191, 10, 68, 136, 157, 66, 35, 27, 4, 233, 171, 10, 137, 83, 144, 238, 27, 255, 255, 255, 255, 255, 255, 255, + 245, 27, 126, 225, 150, 92, 49, 172, 34, 123, 13, 27, 193, 236, 246, 126, 97, 69, 97, 225, 65, 6, 27, 243, 15, + 184, 197, 123, 116, 47, 162, 27, 255, 255, 255, 255, 255, 255, 255, 251, 27, 255, 255, 255, 255, 255, 255, 255, + 252, 27, 62, 117, 138, 96, 108, 203, 87, 90, 255, 216, 102, 159, 27, 27, 151, 222, 0, 15, 192, 29, 252, 159, 159, + 27, 59, 156, 211, 47, 255, 208, 16, 244, 27, 140, 218, 129, 42, 196, 228, 154, 211, 255, 216, 102, 159, 27, 46, + 178, 223, 229, 194, 171, 2, 236, 159, 27, 165, 15, 167, 123, 136, 147, 80, 206, 74, 226, 227, 135, 170, 176, 146, + 163, 220, 69, 230, 69, 246, 80, 236, 124, 126, 27, 181, 1, 41, 203, 0, 14, 194, 226, 255, 255, 216, 102, 159, 27, + 62, 80, 2, 47, 240, 109, 181, 46, 159, 27, 140, 104, 186, 180, 216, 118, 206, 146, 66, 223, 4, 27, 77, 84, 125, + 191, 189, 85, 166, 65, 66, 25, 26, 255, 255, 191, 27, 39, 244, 4, 94, 7, 245, 66, 70, 70, 6, 6, 4, 246, 102, 80, + 255, 27, 255, 255, 255, 255, 255, 255, 255, 249, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1071, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "312286699651199550" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4ab684aa5e85045997cf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8100480225561714409" + } + }, + { + "_tag": "ByteArray", + "bytearray": "52bfc0feeddca0a3368d84ea" + }, + { + "_tag": "ByteArray", + "bytearray": "31ec4725b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4782097543642480937" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6950616421837450930" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6395744162600222237" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2109687653855510431" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13529635003556648766" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b64" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6592b250fe144a94218fb0aa" + } + ] + }, + "cborHex": "9fd8669f1b0455771948c9f23e9f9f4a4ab684aa5e85045997cf1b706aafd8d2ae9ee94c52bfc0feeddca0a3368d84ea4531ec4725b61b425d6c611a140129ff9f1b60758ccf499e2eb2ffffffbf1b58c23f6e06107e1d1b1d471dbe5b15bf9f1bbbc2eb5a47af573e429b64ff4c6592b250fe144a94218fb0aaff", + "cborBytes": [ + 159, 216, 102, 159, 27, 4, 85, 119, 25, 72, 201, 242, 62, 159, 159, 74, 74, 182, 132, 170, 94, 133, 4, 89, 151, + 207, 27, 112, 106, 175, 216, 210, 174, 158, 233, 76, 82, 191, 192, 254, 237, 220, 160, 163, 54, 141, 132, 234, 69, + 49, 236, 71, 37, 182, 27, 66, 93, 108, 97, 26, 20, 1, 41, 255, 159, 27, 96, 117, 140, 207, 73, 158, 46, 178, 255, + 255, 255, 191, 27, 88, 194, 63, 110, 6, 16, 126, 29, 27, 29, 71, 29, 190, 91, 21, 191, 159, 27, 187, 194, 235, 90, + 71, 175, 87, 62, 66, 155, 100, 255, 76, 101, 146, 178, 80, 254, 20, 74, 148, 33, 143, 176, 170, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1072, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffffeff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1073, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1432421826590596477" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9368536114193677448" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2534871950105166238" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76bee9110ee5272f6753d3f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4199802501286537266" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a67c04db04b40a196ed2" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b13e0fc0fde72dd7d1b8203b9f58feebc881b232dac9bb91ec19e4c76bee9110ee5272f6753d3f91b3a48b21f97fb28324aa67c04db04b40a196ed2ffff", + "cborBytes": [ + 159, 191, 27, 19, 224, 252, 15, 222, 114, 221, 125, 27, 130, 3, 185, 245, 143, 238, 188, 136, 27, 35, 45, 172, + 155, 185, 30, 193, 158, 76, 118, 190, 233, 17, 14, 229, 39, 47, 103, 83, 211, 249, 27, 58, 72, 178, 31, 151, 251, + 40, 50, 74, 166, 124, 4, 219, 4, 180, 10, 25, 110, 210, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1074, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1721df" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1628709567446466969" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "54d9953b76" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6458156155546884813" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16051165505909900370" + } + } + ] + }, + "cborHex": "9f431721dfd8669f1b169a56b8e9ed41999f4554d9953b761b599fface835fdacdffff1bdec131fc22c34452ff", + "cborBytes": [ + 159, 67, 23, 33, 223, 216, 102, 159, 27, 22, 154, 86, 184, 233, 237, 65, 153, 159, 69, 84, 217, 149, 59, 118, 27, + 89, 159, 250, 206, 131, 95, 218, 205, 255, 255, 27, 222, 193, 49, 252, 34, 195, 68, 82, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1075, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1553591981071103188" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12024990480995267972" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4679ba" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15211154611643619082" + } + }, + { + "_tag": "ByteArray", + "bytearray": "88f839e21d" + }, + { + "_tag": "ByteArray", + "bytearray": "05af" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11906127001226119131" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9428734074555653845" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b4b86fc8d6b02afd90" + }, + { + "_tag": "ByteArray", + "bytearray": "ae9a48a037d953ab835bb36e" + }, + { + "_tag": "ByteArray", + "bytearray": "f96b2754e029b9" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11591075340742994125" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc2a" + } + ] + }, + "cborHex": "9f9fd8669f1b158f77aceda374d49f1ba6e159219f2d3584434679ba1bd318e086f290170a4588f839e21d4205afffff1ba53b0f6d1ec507dbffd8669f1b82d997af6b82ded59f9f49b4b86fc8d6b02afd904cae9a48a037d953ab835bb36e47f96b2754e029b9ff9f1ba0dbc59c39c6a8cdffffff42fc2aff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 21, 143, 119, 172, 237, 163, 116, 212, 159, 27, 166, 225, 89, 33, 159, 45, 53, 132, + 67, 70, 121, 186, 27, 211, 24, 224, 134, 242, 144, 23, 10, 69, 136, 248, 57, 226, 29, 66, 5, 175, 255, 255, 27, + 165, 59, 15, 109, 30, 197, 7, 219, 255, 216, 102, 159, 27, 130, 217, 151, 175, 107, 130, 222, 213, 159, 159, 73, + 180, 184, 111, 200, 214, 176, 42, 253, 144, 76, 174, 154, 72, 160, 55, 217, 83, 171, 131, 91, 179, 110, 71, 249, + 107, 39, 84, 224, 41, 185, 255, 159, 27, 160, 219, 197, 156, 57, 198, 168, 205, 255, 255, 255, 66, 252, 42, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1076, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7673217557415576082" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6052384495774264958" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5548b6f2cb3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9506904595869583558" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15283770257834181346" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "623adcf29b52ad1487eb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1731051519857936007" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16254250686176036104" + } + } + ] + }, + "cborHex": "9fbf1b6a7cbeb6ca0bc2121b53fe63a1cab4ee7e46f5548b6f2cb31b83ef4f5c3655c8c6ffd8669f1bd41adc1296e302e29f9f4a623adcf29b52ad1487eb1b1805ee2f91084687ffffff41fa1be192b2e15fac0508ff", + "cborBytes": [ + 159, 191, 27, 106, 124, 190, 182, 202, 11, 194, 18, 27, 83, 254, 99, 161, 202, 180, 238, 126, 70, 245, 84, 139, + 111, 44, 179, 27, 131, 239, 79, 92, 54, 85, 200, 198, 255, 216, 102, 159, 27, 212, 26, 220, 18, 150, 227, 2, 226, + 159, 159, 74, 98, 58, 220, 242, 155, 82, 173, 20, 135, 235, 27, 24, 5, 238, 47, 145, 8, 70, 135, 255, 255, 255, + 65, 250, 27, 225, 146, 178, 225, 95, 172, 5, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1077, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4038562589976889047" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5098732031965701362" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8735307238679284880" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1758939068508447728" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10154273868928768775" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6175f8a5cd0f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c85097691" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "222fb122fa9f139a1d2c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "498a72408c442ddea6014258" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9554297049599915707" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6314365239715855429" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "426128849017599638" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6059511870083442837" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8cc35f3b294a0e001675" + }, + { + "_tag": "ByteArray", + "bytearray": "0e8c6e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6099181387445168945" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8129499860761090617" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "239ffbdcb13172f071cd95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3827199689987445369" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14549375926644238533" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8579046144624416655" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6ff49290" + }, + { + "_tag": "ByteArray", + "bytearray": "3438c1579995d8bea3808717" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17446698714735401229" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16352336474217726296" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8380048486741244558" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17296942856033949576" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da5a549b88e0730bab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10900137122880467558" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15295206326154707878" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1321946113456999764" + } + }, + { + "_tag": "ByteArray", + "bytearray": "69" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5111573969556878120" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7906902863724730660" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16875381714768414234" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1d5ab2fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10010929363151404387" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5cba28ad" + } + ] + } + ] + }, + "cborHex": "9fbf1b380bdb4742c106d71b46c255c4d238a4f21b793a0ba6e5608c901b186901c37800a3f0ff9fbf1b8ceb3a48bd87db0747d6175f8a5cd0f6453c850976914a222fb122fa9f139a1d2c4c498a72408c442ddea60142581b8497ae8bb7f736bbff1b57a121bb07567c45d8669f1b05e9e9ee323d76969f1b5417b5f0f09628954a8cc35f3b294a0e001675430e8c6effff1b54a4a5283357eb31bf1b70d1c90d2a409a394b239ffbdcb13172f071cd9541a71b351cf1d7362fd279ffffa0d8669f1bc9e9c451c33fe8c59fd8669f1b770ee503ca05d78f9f446ff492904c3438c1579995d8bea38087171bf21f200b6311590d1be2ef2b6289694158ffffbf1b744be9b304c2fa8e1bf00b15e26a22578849da5a549b88e0730bab1b974510f63c56b266ffd8669f1bd4437d1dbcc243a69f1b12587efc78d00d5441691b46eff5716a9233281b6dbaf64311d4d924ffffd8669f1bea3166428de4c61a9f441d5ab2fc1b8aedf737322abd63ffff445cba28adffffff", + "cborBytes": [ + 159, 191, 27, 56, 11, 219, 71, 66, 193, 6, 215, 27, 70, 194, 85, 196, 210, 56, 164, 242, 27, 121, 58, 11, 166, + 229, 96, 140, 144, 27, 24, 105, 1, 195, 120, 0, 163, 240, 255, 159, 191, 27, 140, 235, 58, 72, 189, 135, 219, 7, + 71, 214, 23, 95, 138, 92, 208, 246, 69, 60, 133, 9, 118, 145, 74, 34, 47, 177, 34, 250, 159, 19, 154, 29, 44, 76, + 73, 138, 114, 64, 140, 68, 45, 222, 166, 1, 66, 88, 27, 132, 151, 174, 139, 183, 247, 54, 187, 255, 27, 87, 161, + 33, 187, 7, 86, 124, 69, 216, 102, 159, 27, 5, 233, 233, 238, 50, 61, 118, 150, 159, 27, 84, 23, 181, 240, 240, + 150, 40, 149, 74, 140, 195, 95, 59, 41, 74, 14, 0, 22, 117, 67, 14, 140, 110, 255, 255, 27, 84, 164, 165, 40, 51, + 87, 235, 49, 191, 27, 112, 209, 201, 13, 42, 64, 154, 57, 75, 35, 159, 251, 220, 177, 49, 114, 240, 113, 205, 149, + 65, 167, 27, 53, 28, 241, 215, 54, 47, 210, 121, 255, 255, 160, 216, 102, 159, 27, 201, 233, 196, 81, 195, 63, + 232, 197, 159, 216, 102, 159, 27, 119, 14, 229, 3, 202, 5, 215, 143, 159, 68, 111, 244, 146, 144, 76, 52, 56, 193, + 87, 153, 149, 216, 190, 163, 128, 135, 23, 27, 242, 31, 32, 11, 99, 17, 89, 13, 27, 226, 239, 43, 98, 137, 105, + 65, 88, 255, 255, 191, 27, 116, 75, 233, 179, 4, 194, 250, 142, 27, 240, 11, 21, 226, 106, 34, 87, 136, 73, 218, + 90, 84, 155, 136, 224, 115, 11, 171, 27, 151, 69, 16, 246, 60, 86, 178, 102, 255, 216, 102, 159, 27, 212, 67, 125, + 29, 188, 194, 67, 166, 159, 27, 18, 88, 126, 252, 120, 208, 13, 84, 65, 105, 27, 70, 239, 245, 113, 106, 146, 51, + 40, 27, 109, 186, 246, 67, 17, 212, 217, 36, 255, 255, 216, 102, 159, 27, 234, 49, 102, 66, 141, 228, 198, 26, + 159, 68, 29, 90, 178, 252, 27, 138, 237, 247, 55, 50, 42, 189, 99, 255, 255, 68, 92, 186, 40, 173, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1078, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1405974253357832767" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1711009780892789860" + } + }, + { + "_tag": "ByteArray", + "bytearray": "40d282ca26d398fe" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13277870420824827603" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c2bb9be11536f5a6ebdb55" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13065305297830893996" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13700064645401690480" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10804773968145222341" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5650175589674039157" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac1ab1f91212e5d8" + } + ] + }, + "cborHex": "9f9f1b138306225ebd1a3f9f1b17beba5495556c644840d282ca26d398feff1bb84478cc6eee26d39f4bc2bb9be11536f5a6ebdb551bb55149f2073d59ac1bbe2068357d0e4170ffff9fd8669f1b95f244ad89af0ac580ffff1b4e6974c34d1ab77548ac1ab1f91212e5d8ff", + "cborBytes": [ + 159, 159, 27, 19, 131, 6, 34, 94, 189, 26, 63, 159, 27, 23, 190, 186, 84, 149, 85, 108, 100, 72, 64, 210, 130, + 202, 38, 211, 152, 254, 255, 27, 184, 68, 120, 204, 110, 238, 38, 211, 159, 75, 194, 187, 155, 225, 21, 54, 245, + 166, 235, 219, 85, 27, 181, 81, 73, 242, 7, 61, 89, 172, 27, 190, 32, 104, 53, 125, 14, 65, 112, 255, 255, 159, + 216, 102, 159, 27, 149, 242, 68, 173, 137, 175, 10, 197, 128, 255, 255, 27, 78, 105, 116, 195, 77, 26, 183, 117, + 72, 172, 26, 177, 249, 18, 18, 229, 216, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1079, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2994585439489245799" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4308754646129359870" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7668007131070601032" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6655260659501736747" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13982161249639707557" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11054327413025863329" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1377287601469847735" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18047032625748640008" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "521075610674606413" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f8204" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00843c97" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91d6a0e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2391356506245072110" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "593a4640236b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d27cfe2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3050682217467272560" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5d5c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10798461466973279933" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8decf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8138837683030650786" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b298ee7975a50426741101b3bcbc5859adabbfe1b6a6a3bdbdea017481b5c5c3c4f093ba32b1bc20a9d936d01b3a51b9968dc36bc44f6a11b131d1bc6bf28f8b71bfa73f08e4ba201081b073b3b81d361314dffbf432f82044400843c974491d6a0e21b212fce128e0e84ee419b46593a4640236b449d27cfe21b2a56335046bcdd7043c5d5c81b95dbd77dd3af96bd43f8decf1b70f2f5c0559aefa2ffff", + "cborBytes": [ + 159, 191, 27, 41, 142, 231, 151, 90, 80, 66, 103, 65, 16, 27, 59, 203, 197, 133, 154, 218, 187, 254, 27, 106, 106, + 59, 219, 222, 160, 23, 72, 27, 92, 92, 60, 79, 9, 59, 163, 43, 27, 194, 10, 157, 147, 109, 1, 179, 165, 27, 153, + 104, 220, 54, 188, 68, 246, 161, 27, 19, 29, 27, 198, 191, 40, 248, 183, 27, 250, 115, 240, 142, 75, 162, 1, 8, + 27, 7, 59, 59, 129, 211, 97, 49, 77, 255, 191, 67, 47, 130, 4, 68, 0, 132, 60, 151, 68, 145, 214, 160, 226, 27, + 33, 47, 206, 18, 142, 14, 132, 238, 65, 155, 70, 89, 58, 70, 64, 35, 107, 68, 157, 39, 207, 226, 27, 42, 86, 51, + 80, 70, 188, 221, 112, 67, 197, 213, 200, 27, 149, 219, 215, 125, 211, 175, 150, 189, 67, 248, 222, 207, 27, 112, + 242, 245, 192, 85, 154, 239, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1080, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14356661379658265431" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c3e98" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2860124438759906855" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9531600374934561846" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5ba3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2006765480930085360" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6461082273221234199" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17346266242272283668" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7bf70a746e72" + }, + { + "_tag": "ByteArray", + "bytearray": "642ffe8ce2f620" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6376e970667fce946c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2203801416038682158" + } + } + ] + }, + "cborHex": "9f9f1bc73d1b75bf19b357ff9fbf438c3e9841a1ffd8669f1b27b1340601b29e279f1b84470c0a58f46436425ba31b1bd97692965a89f01b59aa60185fecce171bf0ba513e2dfd4c14ffff467bf70a746e7247642ffe8ce2f620ff496376e970667fce946c1b1e9579b62e7d0e2eff", + "cborBytes": [ + 159, 159, 27, 199, 61, 27, 117, 191, 25, 179, 87, 255, 159, 191, 67, 140, 62, 152, 65, 161, 255, 216, 102, 159, + 27, 39, 177, 52, 6, 1, 178, 158, 39, 159, 27, 132, 71, 12, 10, 88, 244, 100, 54, 66, 91, 163, 27, 27, 217, 118, + 146, 150, 90, 137, 240, 27, 89, 170, 96, 24, 95, 236, 206, 23, 27, 240, 186, 81, 62, 45, 253, 76, 20, 255, 255, + 70, 123, 247, 10, 116, 110, 114, 71, 100, 47, 254, 140, 226, 246, 32, 255, 73, 99, 118, 233, 112, 102, 127, 206, + 148, 108, 27, 30, 149, 121, 182, 46, 125, 14, 46, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1081, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17758908061299740679" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1904587467386912818" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d943cd24e023c" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ba0330836fb3dd06778d" + }, + { + "_tag": "ByteArray", + "bytearray": "9766f207a5ad6c65238fa0a5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0bd6a6e6c3a6d38442c3f9" + }, + { + "_tag": "ByteArray", + "bytearray": "6a40a1" + }, + { + "_tag": "ByteArray", + "bytearray": "2d1fd88797659f36" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16480245295118344627" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "306570523800640908" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "23ebd8fd" + } + ] + }, + "cborHex": "9fd8669f1bf67450ca809790079fbf1b1a6e7435ed420032473d943cd24e023cff4aba0330836fb3dd06778d4c9766f207a5ad6c65238fa0a59f4b0bd6a6e6c3a6d38442c3f9436a40a1482d1fd88797659f36ffd8669f1be4b597c7a2d4e1b39f1b0441284461be1d8cffffffff4423ebd8fdff", + "cborBytes": [ + 159, 216, 102, 159, 27, 246, 116, 80, 202, 128, 151, 144, 7, 159, 191, 27, 26, 110, 116, 53, 237, 66, 0, 50, 71, + 61, 148, 60, 210, 78, 2, 60, 255, 74, 186, 3, 48, 131, 111, 179, 221, 6, 119, 141, 76, 151, 102, 242, 7, 165, 173, + 108, 101, 35, 143, 160, 165, 159, 75, 11, 214, 166, 230, 195, 166, 211, 132, 66, 195, 249, 67, 106, 64, 161, 72, + 45, 31, 216, 135, 151, 101, 159, 54, 255, 216, 102, 159, 27, 228, 181, 151, 199, 162, 212, 225, 179, 159, 27, 4, + 65, 40, 68, 97, 190, 29, 140, 255, 255, 255, 255, 68, 35, 235, 216, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1082, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5040875733366006141" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10184825066384366851" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7429526ea3b50e29" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7022201032955123484" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11819318627100490822" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14553465513979910989" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12841093024382070729" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "835279385525262198" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ec8b32039e7832d75f3a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9703382747367579208" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c37576be9f3da0a068ca2f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1a2657c2d2f9801e60d8" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ee" + }, + { + "_tag": "ByteArray", + "bytearray": "39" + } + ] + } + ] + }, + "cborHex": "9f9f1b45f4c9c5942ae17dd8669f1b8d57c46fb5559d039f487429526ea3b50e291b6173dea25eabd71c1ba406a7ab7f7b7c46ffff9f1bc9f84bc703ab9b4dff9f1bb234ba12160a2fc91b0b97822cf67097764aec8b32039e7832d75f3a1b86a95732b07f9e484bc37576be9f3da0a068ca2fff4a1a2657c2d2f9801e60d8ff9f41ee4139ffff", + "cborBytes": [ + 159, 159, 27, 69, 244, 201, 197, 148, 42, 225, 125, 216, 102, 159, 27, 141, 87, 196, 111, 181, 85, 157, 3, 159, + 72, 116, 41, 82, 110, 163, 181, 14, 41, 27, 97, 115, 222, 162, 94, 171, 215, 28, 27, 164, 6, 167, 171, 127, 123, + 124, 70, 255, 255, 159, 27, 201, 248, 75, 199, 3, 171, 155, 77, 255, 159, 27, 178, 52, 186, 18, 22, 10, 47, 201, + 27, 11, 151, 130, 44, 246, 112, 151, 118, 74, 236, 139, 50, 3, 158, 120, 50, 215, 95, 58, 27, 134, 169, 87, 50, + 176, 127, 158, 72, 75, 195, 117, 118, 190, 159, 61, 160, 160, 104, 202, 47, 255, 74, 26, 38, 87, 194, 210, 249, + 128, 30, 96, 216, 255, 159, 65, 238, 65, 57, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1083, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9af6b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7258891660945563486" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2524802652569892800" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7812000511664483265" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "415fdeeb4d4d86" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b120a690313c6c7302" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4be20c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ff13bed1a4d660b6c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3592918032361252745" + } + } + ] + } + ] + }, + "cborHex": "9f439af6b81b64bcc381a1b49f5ebf1b2309e6a2b26477c01b6c69cd135aee6bc147415fdeeb4d4d8649b120a690313c6c7302434be20c498ff13bed1a4d660b6cff9f1b31dc9bea11fce789ffff", + "cborBytes": [ + 159, 67, 154, 246, 184, 27, 100, 188, 195, 129, 161, 180, 159, 94, 191, 27, 35, 9, 230, 162, 178, 100, 119, 192, + 27, 108, 105, 205, 19, 90, 238, 107, 193, 71, 65, 95, 222, 235, 77, 77, 134, 73, 177, 32, 166, 144, 49, 60, 108, + 115, 2, 67, 75, 226, 12, 73, 143, 241, 59, 237, 26, 77, 102, 11, 108, 255, 159, 27, 49, 220, 155, 234, 17, 252, + 231, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1084, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15222998721999281352" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11483504257645495437" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2463348314901270750" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6c7648c8a237c0a8" + }, + { + "_tag": "ByteArray", + "bytearray": "b5fb6551" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7ac6debc03" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4316740065986269286" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9183821091478724827" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1bd342f4aec8fe1cc8ff1b9f5d9a47b5a5448d9fd8669f1b222f923db3bf50de9f486c7648c8a237c0a844b5fb6551ffff457ac6debc039f1b3be824380cced0661b7f737c9fee5460dbffffff", + "cborBytes": [ + 159, 159, 27, 211, 66, 244, 174, 200, 254, 28, 200, 255, 27, 159, 93, 154, 71, 181, 165, 68, 141, 159, 216, 102, + 159, 27, 34, 47, 146, 61, 179, 191, 80, 222, 159, 72, 108, 118, 72, 200, 162, 55, 192, 168, 68, 181, 251, 101, 81, + 255, 255, 69, 122, 198, 222, 188, 3, 159, 27, 59, 232, 36, 56, 12, 206, 208, 102, 27, 127, 115, 124, 159, 238, 84, + 96, 219, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1085, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17073019997557752478" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5384750504841037283" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9229839116148831509" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14231228477861242196" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4460fe10a5df4bb330313d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9033159894557352139" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "79590032220360639" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5793873475232088207" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "546026091325855053" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3799298080081040695" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14154615927410021234" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16793381591478697534" + } + }, + { + "_tag": "ByteArray", + "bytearray": "515f65038f9e33aa3bc566" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16762646695327638251" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4026272993743756669" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1becef8d3b2592029e9f80801b4aba7a0df527c5e31b8016f9c63c0e7515ff9fd8669f1bc57f7ae67c57a5549f4b4460fe10a5df4bb330313d1b7d5c3b107a6560cb1b011ac2b66e280fbf1b5067f93a7cc4408f1b0793dfd64b92954dffffd8669f1b34b9d1796b0dd5379f1bc46f4c310d5c53721be90e139511abfe3e4b515f65038f9e33aa3bc5661be8a0e25b6a6122eb1b37e031f4a8d85d7dffffffff", + "cborBytes": [ + 159, 27, 236, 239, 141, 59, 37, 146, 2, 158, 159, 128, 128, 27, 74, 186, 122, 13, 245, 39, 197, 227, 27, 128, 22, + 249, 198, 60, 14, 117, 21, 255, 159, 216, 102, 159, 27, 197, 127, 122, 230, 124, 87, 165, 84, 159, 75, 68, 96, + 254, 16, 165, 223, 75, 179, 48, 49, 61, 27, 125, 92, 59, 16, 122, 101, 96, 203, 27, 1, 26, 194, 182, 110, 40, 15, + 191, 27, 80, 103, 249, 58, 124, 196, 64, 143, 27, 7, 147, 223, 214, 75, 146, 149, 77, 255, 255, 216, 102, 159, 27, + 52, 185, 209, 121, 107, 13, 213, 55, 159, 27, 196, 111, 76, 49, 13, 92, 83, 114, 27, 233, 14, 19, 149, 17, 171, + 254, 62, 75, 81, 95, 101, 3, 143, 158, 51, 170, 59, 197, 102, 27, 232, 160, 226, 91, 106, 97, 34, 235, 27, 55, + 224, 49, 244, 168, 216, 93, 125, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1086, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2716474080123749788" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c497dfc4ed9ff8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8510197060353740772" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7622598194799755433" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14714762455872504323" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ce318c5f31bedc6b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34510174806bff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d90a4c8fad3cea" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5726576359450928080" + } + } + ] + }, + "cborHex": "9fbf1b25b2dac88b55059c47c497dfc4ed9ff81b761a4b232ef54fe41b69c8e8ac0292c0a91bcc35567dd0890203490ce318c5f31bedc6b54734510174806bff47d90a4c8fad3ceaff1b4f78e2dbb438e3d0ff", + "cborBytes": [ + 159, 191, 27, 37, 178, 218, 200, 139, 85, 5, 156, 71, 196, 151, 223, 196, 237, 159, 248, 27, 118, 26, 75, 35, 46, + 245, 79, 228, 27, 105, 200, 232, 172, 2, 146, 192, 169, 27, 204, 53, 86, 125, 208, 137, 2, 3, 73, 12, 227, 24, + 197, 243, 27, 237, 198, 181, 71, 52, 81, 1, 116, 128, 107, 255, 71, 217, 10, 76, 143, 173, 60, 234, 255, 27, 79, + 120, 226, 219, 180, 56, 227, 208, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1087, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fd2607dc4eb709d5ae40d3" + }, + { + "_tag": "ByteArray", + "bytearray": "bff236018037dbba07fa0164" + } + ] + }, + "cborHex": "9f4bfd2607dc4eb709d5ae40d34cbff236018037dbba07fa0164ff", + "cborBytes": [ + 159, 75, 253, 38, 7, 220, 78, 183, 9, 213, 174, 64, 211, 76, 191, 242, 54, 1, 128, 55, 219, 186, 7, 250, 1, 100, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1088, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2215161913201499134" + } + }, + { + "_tag": "ByteArray", + "bytearray": "49a5e5a3b573c84fc22b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17741085621186274527" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c6633a72b8e8ebc434aa" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7712232240074893489" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16191022103224643004" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f2a90c1ef9e85c36" + }, + { + "_tag": "ByteArray", + "bytearray": "8ddd5c" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2803e950" + } + ] + }, + "cborHex": "9f9f9f1b1ebdd6060c599bfe4a49a5e5a3b573c84fc22b1bf634ff604c9924df4ac6633a72b8e8ebc434aaffd8669f1b6b075a5c76faa8b19f1be0b210d1b533edbc48f2a90c1ef9e85c36438ddd5cffffff442803e950ff", + "cborBytes": [ + 159, 159, 159, 27, 30, 189, 214, 6, 12, 89, 155, 254, 74, 73, 165, 229, 163, 181, 115, 200, 79, 194, 43, 27, 246, + 52, 255, 96, 76, 153, 36, 223, 74, 198, 99, 58, 114, 184, 232, 235, 196, 52, 170, 255, 216, 102, 159, 27, 107, 7, + 90, 92, 118, 250, 168, 177, 159, 27, 224, 178, 16, 209, 181, 51, 237, 188, 72, 242, 169, 12, 30, 249, 232, 92, 54, + 67, 141, 221, 92, 255, 255, 255, 68, 40, 3, 233, 80, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1089, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07212ef5eb017d2062022f21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7722735403921685404" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "332bdc396d9e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "929f90b0e1d8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f205382bec9f18fe3af94cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "137efd7ceee1d9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c94d4e3723244425849f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "246ed0a0ed98c610a2fd6f" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "58dc7a8ebb30a2e60b" + }, + { + "_tag": "ByteArray", + "bytearray": "8910e5c68164" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "450835389191984876" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fff63d4dff88a0d8" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3780238406525792199" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8a2b7a9e2fe60a0832aa4320" + }, + { + "_tag": "ByteArray", + "bytearray": "b2411b0e" + }, + { + "_tag": "ByteArray", + "bytearray": "072358d8f3dba089cb0fd0" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "646c266a1d345f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14951222978145483232" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d48619afadf0738d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15129801155358248968" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14750457372222405665" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2074473540027864555" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1804650223155526153" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7468376670370815293" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14666735601551071555" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5849837731223077921" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4c07212ef5eb017d2062022f211b6b2caaeedd15bb9c46332bdc396d9e46929f90b0e1d84c5f205382bec9f18fe3af94cc47137efd7ceee1d94ac94d4e3723244425849f4b246ed0a0ed98c610a2fd6fff9fa09f4958dc7a8ebb30a2e60b468910e5c681641b0641b065d8f696ec48fff63d4dff88a0d8ffd8669f1b34761acd5b422fc79f4c8a2b7a9e2fe60a0832aa432044b2411b0e4b072358d8f3dba089cb0fd0ffff47646c266a1d345fd8669f1bcf7d6a156a04f9e09f48d48619afadf0738d1bd1f7d9fd5b6c500841b91bccb426d429dbbc21ffffffd8669f1b1cca02b1914ed5eb9fa0ffffbf1b190b67d10703ba091b67a5010336445d3d1bcb8ab6526906d9431b512ecc6c3b3a8421ffff", + "cborBytes": [ + 159, 191, 76, 7, 33, 46, 245, 235, 1, 125, 32, 98, 2, 47, 33, 27, 107, 44, 170, 238, 221, 21, 187, 156, 70, 51, + 43, 220, 57, 109, 158, 70, 146, 159, 144, 176, 225, 216, 76, 95, 32, 83, 130, 190, 201, 241, 143, 227, 175, 148, + 204, 71, 19, 126, 253, 124, 238, 225, 217, 74, 201, 77, 78, 55, 35, 36, 68, 37, 132, 159, 75, 36, 110, 208, 160, + 237, 152, 198, 16, 162, 253, 111, 255, 159, 160, 159, 73, 88, 220, 122, 142, 187, 48, 162, 230, 11, 70, 137, 16, + 229, 198, 129, 100, 27, 6, 65, 176, 101, 216, 246, 150, 236, 72, 255, 246, 61, 77, 255, 136, 160, 216, 255, 216, + 102, 159, 27, 52, 118, 26, 205, 91, 66, 47, 199, 159, 76, 138, 43, 122, 158, 47, 230, 10, 8, 50, 170, 67, 32, 68, + 178, 65, 27, 14, 75, 7, 35, 88, 216, 243, 219, 160, 137, 203, 15, 208, 255, 255, 71, 100, 108, 38, 106, 29, 52, + 95, 216, 102, 159, 27, 207, 125, 106, 21, 106, 4, 249, 224, 159, 72, 212, 134, 25, 175, 173, 240, 115, 141, 27, + 209, 247, 217, 253, 91, 108, 80, 8, 65, 185, 27, 204, 180, 38, 212, 41, 219, 188, 33, 255, 255, 255, 216, 102, + 159, 27, 28, 202, 2, 177, 145, 78, 213, 235, 159, 160, 255, 255, 191, 27, 25, 11, 103, 209, 7, 3, 186, 9, 27, 103, + 165, 1, 3, 54, 68, 93, 61, 27, 203, 138, 182, 82, 105, 6, 217, 67, 27, 81, 46, 204, 108, 59, 58, 132, 33, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1090, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5461113900718500543" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4739847923343308621" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "614c47" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5531295258979104141" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87c08b4eceeb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b13b00d6d514336690" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92e21b85797e1e7884" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d5137" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b147e9ece788c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7087674148311455950" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4f761e59331a0a8cef59a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10220791711172320125" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "21f0bfd3dc3f76d823c9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13897264672322594105" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11813516669579029248" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1c867971dbd938f1948f1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17387453094473397360" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17261381299137597699" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0f069bf2ebed" + } + ] + }, + "cborHex": "9f9f80bf1b4bc9c62892462abf1b41c75292d040374dffbf43614c471b4cc31bbb6340758d4687c08b4eceeb49b13b00d6d5143366904992e21b85797e1e7884439d513747b147e9ece788c11b625c7a15f5d2d8ce4bd4f761e59331a0a8cef59a1b8dd78be8c3aedb7dff80ff4a21f0bfd3dc3f76d823c99f9f1bc0dd0096af5fa5391ba3f20ad1fe69eb004bc1c867971dbd938f1948f1ffd8669f1bf14ca4777cda747080ffd8669f1bef8cbed63baad10380ffa0ff460f069bf2ebedff", + "cborBytes": [ + 159, 159, 128, 191, 27, 75, 201, 198, 40, 146, 70, 42, 191, 27, 65, 199, 82, 146, 208, 64, 55, 77, 255, 191, 67, + 97, 76, 71, 27, 76, 195, 27, 187, 99, 64, 117, 141, 70, 135, 192, 139, 78, 206, 235, 73, 177, 59, 0, 214, 213, 20, + 51, 102, 144, 73, 146, 226, 27, 133, 121, 126, 30, 120, 132, 67, 157, 81, 55, 71, 177, 71, 233, 236, 231, 136, + 193, 27, 98, 92, 122, 21, 245, 210, 216, 206, 75, 212, 247, 97, 229, 147, 49, 160, 168, 206, 245, 154, 27, 141, + 215, 139, 232, 195, 174, 219, 125, 255, 128, 255, 74, 33, 240, 191, 211, 220, 63, 118, 216, 35, 201, 159, 159, 27, + 192, 221, 0, 150, 175, 95, 165, 57, 27, 163, 242, 10, 209, 254, 105, 235, 0, 75, 193, 200, 103, 151, 29, 189, 147, + 143, 25, 72, 241, 255, 216, 102, 159, 27, 241, 76, 164, 119, 124, 218, 116, 112, 128, 255, 216, 102, 159, 27, 239, + 140, 190, 214, 59, 170, 209, 3, 128, 255, 160, 255, 70, 15, 6, 155, 242, 235, 237, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1091, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2963965836467081508" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3785467424369083502" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6540594890438601813" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10818043794155600467" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15979368035179434185" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15252795520859102975" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b29221f39790391241b3488ae90f255046e1b5ac4dc663853ec551b96216983ab437a531bddc21e90d01a10c91bd3acd0b6a479deffffff", + "cborBytes": [ + 159, 191, 27, 41, 34, 31, 57, 121, 3, 145, 36, 27, 52, 136, 174, 144, 242, 85, 4, 110, 27, 90, 196, 220, 102, 56, + 83, 236, 85, 27, 150, 33, 105, 131, 171, 67, 122, 83, 27, 221, 194, 30, 144, 208, 26, 16, 201, 27, 211, 172, 208, + 182, 164, 121, 222, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1092, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2979045905476632943" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6521684122414971384" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "59158358e355" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1268069846006589024" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6032188948732031033" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f38ed41802be8da33" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "880647367361995986" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9521626625374303966" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1459618920974182381" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb84" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "06" + } + ] + }, + "cborHex": "9f9f9f1b2957b277a584416f1b5a81ad27edd979f8ff4659158358e355d8669f1b119916ce719b66609f1b53b6a3e39335b039495f38ed41802be8da331b0c38b01d5ffea4d241c41b84239cf7d15636deffff1b14419bacdc1ae7ed42cb84ff4106ff", + "cborBytes": [ + 159, 159, 159, 27, 41, 87, 178, 119, 165, 132, 65, 111, 27, 90, 129, 173, 39, 237, 217, 121, 248, 255, 70, 89, 21, + 131, 88, 227, 85, 216, 102, 159, 27, 17, 153, 22, 206, 113, 155, 102, 96, 159, 27, 83, 182, 163, 227, 147, 53, + 176, 57, 73, 95, 56, 237, 65, 128, 43, 232, 218, 51, 27, 12, 56, 176, 29, 95, 254, 164, 210, 65, 196, 27, 132, 35, + 156, 247, 209, 86, 54, 222, 255, 255, 27, 20, 65, 155, 172, 220, 26, 231, 237, 66, 203, 132, 255, 65, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1093, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8299493517111963736" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47086f99" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16101990939336961270" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86e84e74" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0006" + } + ] + }, + "cborHex": "9fbf1b732db961971db0584447086f991bdf75c37283bcecf64486e84e74ffa080420006ff", + "cborBytes": [ + 159, 191, 27, 115, 45, 185, 97, 151, 29, 176, 88, 68, 71, 8, 111, 153, 27, 223, 117, 195, 114, 131, 188, 236, 246, + 68, 134, 232, 78, 116, 255, 160, 128, 66, 0, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1094, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e306edc0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2469398173392845308" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11483138496799848065" + } + }, + { + "_tag": "ByteArray", + "bytearray": "79da09" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6080115932633189367" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10294918393292634511" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2058068363238066397" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce6c9c9272f4f1ce9b312110" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12602588891366995429" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7688750605347338642" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa6d0895" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6195237507542810364" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6254553079557927621" + } + } + ] + }, + "cborHex": "9f44e306edc09fd8669f1b2245108e261439fc9f1b9f5c4d9f605e36814379da09ffff1b5460e93a15cb4bf7d8669f1b8edee5bbdfd7b98f9f1b1c8fba45b24648dd4cce6c9c9272f4f1ce9b3121101baee563d34836b5e51b6ab3edf0564c399244fa6d0895ffffff1b55f9e7b07843fefc1b56cca2e347e032c5ff", + "cborBytes": [ + 159, 68, 227, 6, 237, 192, 159, 216, 102, 159, 27, 34, 69, 16, 142, 38, 20, 57, 252, 159, 27, 159, 92, 77, 159, + 96, 94, 54, 129, 67, 121, 218, 9, 255, 255, 27, 84, 96, 233, 58, 21, 203, 75, 247, 216, 102, 159, 27, 142, 222, + 229, 187, 223, 215, 185, 143, 159, 27, 28, 143, 186, 69, 178, 70, 72, 221, 76, 206, 108, 156, 146, 114, 244, 241, + 206, 155, 49, 33, 16, 27, 174, 229, 99, 211, 72, 54, 181, 229, 27, 106, 179, 237, 240, 86, 76, 57, 146, 68, 250, + 109, 8, 149, 255, 255, 255, 27, 85, 249, 231, 176, 120, 67, 254, 252, 27, 86, 204, 162, 227, 71, 224, 50, 197, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1095, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3143060178345277677" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7badd1d264" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14384047581474098849" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3c6c28ea7bc3d25ec" + } + ] + }, + "cborHex": "9f9f1b2b9e64945df238ed457badd1d264ff801bc79e6710be148ea149f3c6c28ea7bc3d25ecff", + "cborBytes": [ + 159, 159, 27, 43, 158, 100, 148, 93, 242, 56, 237, 69, 123, 173, 209, 210, 100, 255, 128, 27, 199, 158, 103, 16, + 190, 20, 142, 161, 73, 243, 198, 194, 142, 167, 188, 61, 37, 236, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1096, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + }, + "cborHex": "9f13ff", + "cborBytes": [159, 19, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1097, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3379290592536574390" + } + } + ] + }, + "cborHex": "9f1b2ee5a6e3c0f639b6ff", + "cborBytes": [159, 27, 46, 229, 166, 227, 192, 246, 57, 182, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1098, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1c65f5db392f07f04f9f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1342880228221994112" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45ba292976bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80dd85238277911183eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11116015561926414349" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17725320242022846084" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10470049405301979075" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12042968529357953376" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11650061273225960828" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6377130806190998242" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a06590c2e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16548675027288116571" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4936640901473123178" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7408098096332794214" + } + }, + { + "_tag": "ByteArray", + "bytearray": "27" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "85f96a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "944830663738225641" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b4479bdffa39d2da1d065b6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f9995" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13947542073911232016" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "146b13583545206769dbee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10130082213783949637" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76e823c7863dd5c5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "229898248864156856" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac6147" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "430f54d6fd907c1ba22699" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11647348406221445630" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9325be21f8ecb0a2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16458787840474879049" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4a1c65f5db392f07f04f9fbf41071b12a2de73e31144804645ba292976bc4a80dd85238277911183eb42d4b91b9a4405422656900dffd8669f1bf5fcfcd8ebd00e849f9f1b914d16761fd077c31ba72138123196d9601ba1ad5500da2b1d7c1b58801eae453702e2459a06590c2effbf1be5a8b44238e2cd5b1b448278be93f83b6aff1b66ced9f80529e966412780ffff4385f96ad8669f1b0d1cb67b950373e99fbf410f4c2b4479bdffa39d2da1d065b6430f99951bc18f9f9e754b46104b146b13583545206769dbee1b8c95481a1a1851454876e823c7863dd5c51b0330c33d42084cb843ac61474b430f54d6fd907c1ba22699ff9f1ba1a3b1aa480a99fe489325be21f8ecb0a21be4695c56a9061449ffffffff", + "cborBytes": [ + 159, 74, 28, 101, 245, 219, 57, 47, 7, 240, 79, 159, 191, 65, 7, 27, 18, 162, 222, 115, 227, 17, 68, 128, 70, 69, + 186, 41, 41, 118, 188, 74, 128, 221, 133, 35, 130, 119, 145, 17, 131, 235, 66, 212, 185, 27, 154, 68, 5, 66, 38, + 86, 144, 13, 255, 216, 102, 159, 27, 245, 252, 252, 216, 235, 208, 14, 132, 159, 159, 27, 145, 77, 22, 118, 31, + 208, 119, 195, 27, 167, 33, 56, 18, 49, 150, 217, 96, 27, 161, 173, 85, 0, 218, 43, 29, 124, 27, 88, 128, 30, 174, + 69, 55, 2, 226, 69, 154, 6, 89, 12, 46, 255, 191, 27, 229, 168, 180, 66, 56, 226, 205, 91, 27, 68, 130, 120, 190, + 147, 248, 59, 106, 255, 27, 102, 206, 217, 248, 5, 41, 233, 102, 65, 39, 128, 255, 255, 67, 133, 249, 106, 216, + 102, 159, 27, 13, 28, 182, 123, 149, 3, 115, 233, 159, 191, 65, 15, 76, 43, 68, 121, 189, 255, 163, 157, 45, 161, + 208, 101, 182, 67, 15, 153, 149, 27, 193, 143, 159, 158, 117, 75, 70, 16, 75, 20, 107, 19, 88, 53, 69, 32, 103, + 105, 219, 238, 27, 140, 149, 72, 26, 26, 24, 81, 69, 72, 118, 232, 35, 199, 134, 61, 213, 197, 27, 3, 48, 195, 61, + 66, 8, 76, 184, 67, 172, 97, 71, 75, 67, 15, 84, 214, 253, 144, 124, 27, 162, 38, 153, 255, 159, 27, 161, 163, + 177, 170, 72, 10, 153, 254, 72, 147, 37, 190, 33, 248, 236, 176, 162, 27, 228, 105, 92, 86, 169, 6, 20, 73, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1099, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15590540853435493510" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1702890256928221909" + } + } + ] + }, + "cborHex": "9f1bd85cba4dd13cec861b17a1e1aa97ae2ad5ff", + "cborBytes": [159, 27, 216, 92, 186, 77, 209, 60, 236, 134, 27, 23, 161, 225, 170, 151, 174, 42, 213, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1100, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7870886040896675770" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14990518651388162113" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "140d6784e545f8bd5d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14790830283603190168" + } + }, + { + "_tag": "ByteArray", + "bytearray": "927b0b8840b3b741" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12005439662375139315" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "249711061377822986" + } + } + ] + }, + "cborHex": "9f9f9f1b6d3b0127073a1fba1bd009054a4edbf041ff49140d6784e545f8bd5d1bcd4395c71b42219848927b0b8840b3b741ff1ba69be3c3f04177f3801b037726e325e9310aff", + "cborBytes": [ + 159, 159, 159, 27, 109, 59, 1, 39, 7, 58, 31, 186, 27, 208, 9, 5, 74, 78, 219, 240, 65, 255, 73, 20, 13, 103, 132, + 229, 69, 248, 189, 93, 27, 205, 67, 149, 199, 27, 66, 33, 152, 72, 146, 123, 11, 136, 64, 179, 183, 65, 255, 27, + 166, 155, 227, 195, 240, 65, 119, 243, 128, 27, 3, 119, 38, 227, 37, 233, 49, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1101, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1655473413254596081" + } + } + ] + }, + "cborHex": "9f1b16f96c4c5c24c5f1ff", + "cborBytes": [159, 27, 22, 249, 108, 76, 92, 36, 197, 241, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1102, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6133857401188278167" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1157567008042705380" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7464013897712534392" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2c449b1aa43ce9d884f483e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4694019044049267237" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18181877440592968193" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf1b551fd6ceccba5f971b1010810f8e18e1e41b679581180bbc03784ce2c449b1aa43ce9d884f483eff1b412481735979aa25d8669f1bfc530133543b7a0180ffff", + "cborBytes": [ + 159, 191, 27, 85, 31, 214, 206, 204, 186, 95, 151, 27, 16, 16, 129, 15, 142, 24, 225, 228, 27, 103, 149, 129, 24, + 11, 188, 3, 120, 76, 226, 196, 73, 177, 170, 67, 206, 157, 136, 79, 72, 62, 255, 27, 65, 36, 129, 115, 89, 121, + 170, 37, 216, 102, 159, 27, 252, 83, 1, 51, 84, 59, 122, 1, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1103, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6627772033094120050" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d81f2d43e803d2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7276338756730194107" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1436eed371f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9334511763821514983" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0339a9202bfe95106494" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14455844285130599352" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2748781841578335271" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c22174" + } + ] + }, + "cborHex": "9fbf1b5bfa938c74d7f27247d81f2d43e803d21b64fabf8c2c4f88bb46e1436eed371f1b818ad8fe2a4950e74a0339a9202bfe951064941bc89d79c97791ebb81b2625a28570521c27ff120d43c22174ff", + "cborBytes": [ + 159, 191, 27, 91, 250, 147, 140, 116, 215, 242, 114, 71, 216, 31, 45, 67, 232, 3, 210, 27, 100, 250, 191, 140, 44, + 79, 136, 187, 70, 225, 67, 110, 237, 55, 31, 27, 129, 138, 216, 254, 42, 73, 80, 231, 74, 3, 57, 169, 32, 43, 254, + 149, 16, 100, 148, 27, 200, 157, 121, 201, 119, 145, 235, 184, 27, 38, 37, 162, 133, 112, 82, 28, 39, 255, 18, 13, + 67, 194, 33, 116, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1104, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + }, + "cborHex": "9f0213ff", + "cborBytes": [159, 2, 19, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1105, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6186067139299638546" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a00662169623fba2c1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17412866949185146452" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11911556502451147149" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15532370573765029750" + } + }, + { + "_tag": "ByteArray", + "bytearray": "84" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18278000575910995758" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14674810421163966282" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18206182347737115346" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11017657318068922430" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b55d95349baabfd129f49a00662169623fba2c11bf1a6ee3ba3520e54d8669f1ba54e59876298518d9f1bd78e10be28feaf7641841bfda880aecb8f672e1bcba76653dbadbf4a1bfca95a6280dbaad2ffffffffd8669f1b98e694f4ec7b283e80ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 85, 217, 83, 73, 186, 171, 253, 18, 159, 73, 160, 6, 98, 22, 150, 35, 251, 162, 193, 27, + 241, 166, 238, 59, 163, 82, 14, 84, 216, 102, 159, 27, 165, 78, 89, 135, 98, 152, 81, 141, 159, 27, 215, 142, 16, + 190, 40, 254, 175, 118, 65, 132, 27, 253, 168, 128, 174, 203, 143, 103, 46, 27, 203, 167, 102, 83, 219, 173, 191, + 74, 27, 252, 169, 90, 98, 128, 219, 170, 210, 255, 255, 255, 255, 216, 102, 159, 27, 152, 230, 148, 244, 236, 123, + 40, 62, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1106, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10941311624886228680" + } + } + ] + }, + "cborHex": "9f1b97d758f40a3216c8ff", + "cborBytes": [159, 27, 151, 215, 88, 244, 10, 50, 22, 200, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1107, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3350640816204785964" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ab6026601e3a70cd822ec86" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4218613916581921499" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14107010413985286626" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5254596413357721318" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "636736024a22c0bda844a252" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6328416285586475174" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16987623614658349284" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11156521997631201621" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1623678963187641183" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11683088035558848314" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51186fa351" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11396768896545035557" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16270340208480473469" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b10e766f9eab" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ac0284c4f2aea7" + }, + { + "_tag": "ByteArray", + "bytearray": "6c6ecbd633" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12613352099559770153" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e5c3bb5a98bd36dc1755" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8450802556036783721" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15618197832818544833" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9977542234314358884" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc4f13aace231b93912a" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17186781230614654381" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b706fd" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b2e7fde11e3cfa92c4c8ab6026601e3a70cd822ec861b3a8b8701866282db1bc3c62b3ab85449e21b48ec1399103a86e64c636736024a22c0bda844a2521b57d30d15152dc8a61bebc029ac59bf88e41b9ad3eda5a5a3a1551b1688776a1612eb5f1ba222aaab2f19f73a4551186fa351ff9f1b9e2974edc1c995251be1cbdc37353bd17d46b10e766f9eab9f47ac0284c4f2aea7456c6ecbd6331baf0ba0e7f93008294ae5c3bb5a98bd36dc1755ffbf1b7547482683891e691bd8befc2e20ecd0c11b8a7759cc7fc3c0644adc4f13aace231b93912affffbf1bee83b67843232dad41821bfffffffffffffff843b706fdffff", + "cborBytes": [ + 159, 191, 27, 46, 127, 222, 17, 227, 207, 169, 44, 76, 138, 182, 2, 102, 1, 227, 167, 12, 216, 34, 236, 134, 27, + 58, 139, 135, 1, 134, 98, 130, 219, 27, 195, 198, 43, 58, 184, 84, 73, 226, 27, 72, 236, 19, 153, 16, 58, 134, + 230, 76, 99, 103, 54, 2, 74, 34, 192, 189, 168, 68, 162, 82, 27, 87, 211, 13, 21, 21, 45, 200, 166, 27, 235, 192, + 41, 172, 89, 191, 136, 228, 27, 154, 211, 237, 165, 165, 163, 161, 85, 27, 22, 136, 119, 106, 22, 18, 235, 95, 27, + 162, 34, 170, 171, 47, 25, 247, 58, 69, 81, 24, 111, 163, 81, 255, 159, 27, 158, 41, 116, 237, 193, 201, 149, 37, + 27, 225, 203, 220, 55, 53, 59, 209, 125, 70, 177, 14, 118, 111, 158, 171, 159, 71, 172, 2, 132, 196, 242, 174, + 167, 69, 108, 110, 203, 214, 51, 27, 175, 11, 160, 231, 249, 48, 8, 41, 74, 229, 195, 187, 90, 152, 189, 54, 220, + 23, 85, 255, 191, 27, 117, 71, 72, 38, 131, 137, 30, 105, 27, 216, 190, 252, 46, 32, 236, 208, 193, 27, 138, 119, + 89, 204, 127, 195, 192, 100, 74, 220, 79, 19, 170, 206, 35, 27, 147, 145, 42, 255, 255, 191, 27, 238, 131, 182, + 120, 67, 35, 45, 173, 65, 130, 27, 255, 255, 255, 255, 255, 255, 255, 248, 67, 183, 6, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1108, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8822275381090412594" + } + }, + { + "_tag": "ByteArray", + "bytearray": "daae" + } + ] + }, + "cborHex": "9f801b7a6f04b77891683242daaeff", + "cborBytes": [159, 128, 27, 122, 111, 4, 183, 120, 145, 104, 50, 66, 218, 174, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1109, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "754766319183789981" + } + } + ] + }, + "cborHex": "9f1b0a7977f7e760ff9dff", + "cborBytes": [159, 27, 10, 121, 119, 247, 231, 96, 255, 157, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1110, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16254516519710452592" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12086003327330213249" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11926722663301023942" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15506574531237133222" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3710478933562520559" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "75a49f510702c1e84be6e654" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5666881848552836" + } + }, + { + "_tag": "ByteArray", + "bytearray": "876eb207077bf52abb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5332259063620197594" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11326349695783978022" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05c876782f5748d315b002e8" + } + ] + } + ] + }, + "cborHex": "9fd8669f1be193a4a7910f6b709fd8669f1ba7ba1bfde7b4dd819f1ba5843b1260a888c6ffffd8669f1bd7326b60f9823ba680ff1b337e44ee5d9073ef9f4c75a49f510702c1e84be6e6541b001421ffbf912d8449876eb207077bf52abb1b49fffd5de9705cda1b9d2f4709eb0ec426ff4c05c876782f5748d315b002e8ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 225, 147, 164, 167, 145, 15, 107, 112, 159, 216, 102, 159, 27, 167, 186, 27, 253, 231, + 180, 221, 129, 159, 27, 165, 132, 59, 18, 96, 168, 136, 198, 255, 255, 216, 102, 159, 27, 215, 50, 107, 96, 249, + 130, 59, 166, 128, 255, 27, 51, 126, 68, 238, 93, 144, 115, 239, 159, 76, 117, 164, 159, 81, 7, 2, 193, 232, 75, + 230, 230, 84, 27, 0, 20, 33, 255, 191, 145, 45, 132, 73, 135, 110, 178, 7, 7, 123, 245, 42, 187, 27, 73, 255, 253, + 93, 233, 112, 92, 218, 27, 157, 47, 71, 9, 235, 14, 196, 38, 255, 76, 5, 200, 118, 120, 47, 87, 72, 211, 21, 176, + 2, 232, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1111, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5fe0a61d3af4c510974d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4157820291873315114" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6d9d3697fa9aee06a448e01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed6bf42a7e9693583d7b" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9193450822267720104" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18233451481965312003" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a72724b4eaf49d05b932" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "16ee21fbab48700af1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2918760246346335669" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c6f79ba011baf655" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4769739357472809103" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12924091811922636728" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16032936231720035980" + } + } + ] + } + ] + }, + "cborHex": "9fa04a5fe0a61d3af4c510974d9f1b39b38b86c105192aff9fbf4cb6d9d3697fa9aee06a448e014aed6bf42a7e9693583d7bffffd8669f1b7f95b2d0594a51a89fd8669f1bfd0a3b8493dcb80380ff4aa72724b4eaf49d05b9329f4916ee21fbab48700af11b288184fad40145b548c6f79ba011baf6551b423184aca95de08fffd8669f1bb35b9907362eefb880ff1bde806e8e7e29a68cffffff", + "cborBytes": [ + 159, 160, 74, 95, 224, 166, 29, 58, 244, 197, 16, 151, 77, 159, 27, 57, 179, 139, 134, 193, 5, 25, 42, 255, 159, + 191, 76, 182, 217, 211, 105, 127, 169, 174, 224, 106, 68, 142, 1, 74, 237, 107, 244, 42, 126, 150, 147, 88, 61, + 123, 255, 255, 216, 102, 159, 27, 127, 149, 178, 208, 89, 74, 81, 168, 159, 216, 102, 159, 27, 253, 10, 59, 132, + 147, 220, 184, 3, 128, 255, 74, 167, 39, 36, 180, 234, 244, 157, 5, 185, 50, 159, 73, 22, 238, 33, 251, 171, 72, + 112, 10, 241, 27, 40, 129, 132, 250, 212, 1, 69, 181, 72, 198, 247, 155, 160, 17, 186, 246, 85, 27, 66, 49, 132, + 172, 169, 93, 224, 143, 255, 216, 102, 159, 27, 179, 91, 153, 7, 54, 46, 239, 184, 128, 255, 27, 222, 128, 110, + 142, 126, 41, 166, 140, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1112, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0a01060af9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + ] + }, + "cborHex": "9f450a01060af91bffffffffffffffffff", + "cborBytes": [159, 69, 10, 1, 6, 10, 249, 27, 255, 255, 255, 255, 255, 255, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1113, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3033" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17171519687124327091" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c1521f7250ee97d34" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "859740201462843301" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a01dec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18324936336363035836" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef6d69662d79312b77b2e9e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14304903387731626127" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4230331bee4d7e2d44ac1ab3499c1521f7250ee97d341b0bee69287b50c7a543a01dec1bfe4f40821c911cbc4cef6d69662d79312b77b2e9e61bc68539d72c06888fffff", + "cborBytes": [ + 159, 191, 66, 48, 51, 27, 238, 77, 126, 45, 68, 172, 26, 179, 73, 156, 21, 33, 247, 37, 14, 233, 125, 52, 27, 11, + 238, 105, 40, 123, 80, 199, 165, 67, 160, 29, 236, 27, 254, 79, 64, 130, 28, 145, 28, 188, 76, 239, 109, 105, 102, + 45, 121, 49, 43, 119, 178, 233, 230, 27, 198, 133, 57, 215, 44, 6, 136, 143, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1114, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "400f52149c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9222f0b6dc13875c537988b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16728898634429351640" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1552821743237246937" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6918727263274139509" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17019114049706481770" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14079264127211843783" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7871462470027665687" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15118369676531112392" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "50e940" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1698072518229550159" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2325eb7d" + }, + { + "_tag": "ByteArray", + "bytearray": "9b710183271163dba7b7d4" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16653818030209932035" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13925249484103826635" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13989287819644647639" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2350999106864933796" + } + } + ] + } + ] + }, + "cborHex": "9fbf45400f52149c41024cd9222f0b6dc13875c537988b1be828fcacacadc6d8ffd8669f1b158cbb25f528afd99f9f1b600441c9f943ff75ff1bfffffffffffffff6ffff1bec300a0e9c9d586ad8669f1bc3639820e95cb0c79f801b6d3d0d6964d16117ffffd8669f1bfffffffffffffff89fd8669f1bd1cf3d1ec8ac99c89f4350e9401b1790c3f563ece44f442325eb7d4b9b710183271163dba7b7d4ffff1be71e3f4344a89b039f1bc1406ca06cb33ccb1bc223ef274e9e38d7ff1b20a06d3b47f1eba4ffffff", + "cborBytes": [ + 159, 191, 69, 64, 15, 82, 20, 156, 65, 2, 76, 217, 34, 47, 11, 109, 193, 56, 117, 197, 55, 152, 139, 27, 232, 40, + 252, 172, 172, 173, 198, 216, 255, 216, 102, 159, 27, 21, 140, 187, 37, 245, 40, 175, 217, 159, 159, 27, 96, 4, + 65, 201, 249, 67, 255, 117, 255, 27, 255, 255, 255, 255, 255, 255, 255, 246, 255, 255, 27, 236, 48, 10, 14, 156, + 157, 88, 106, 216, 102, 159, 27, 195, 99, 152, 32, 233, 92, 176, 199, 159, 128, 27, 109, 61, 13, 105, 100, 209, + 97, 23, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 216, 102, 159, 27, 209, 207, 61, + 30, 200, 172, 153, 200, 159, 67, 80, 233, 64, 27, 23, 144, 195, 245, 99, 236, 228, 79, 68, 35, 37, 235, 125, 75, + 155, 113, 1, 131, 39, 17, 99, 219, 167, 183, 212, 255, 255, 27, 231, 30, 63, 67, 68, 168, 155, 3, 159, 27, 193, + 64, 108, 160, 108, 179, 60, 203, 27, 194, 35, 239, 39, 78, 158, 56, 215, 255, 27, 32, 160, 109, 59, 71, 241, 235, + 164, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1115, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2154741860717374636" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13254502277584558562" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e117af498c31" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e613018edd9d165e73f766ae" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5906" + } + ] + }, + "cborHex": "9fbf1b1de72e4e56b92cac1bb7f173989a0899e246e117af498c314ce613018edd9d165e73f766aeff425906ff", + "cborBytes": [ + 159, 191, 27, 29, 231, 46, 78, 86, 185, 44, 172, 27, 183, 241, 115, 152, 154, 8, 153, 226, 70, 225, 23, 175, 73, + 140, 49, 76, 230, 19, 1, 142, 221, 157, 22, 94, 115, 247, 102, 174, 255, 66, 89, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1116, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1931666097923881431" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffff51b1acea814e76af9d7ff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 27, 26, 206, 168, 20, 231, 106, 249, 215, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1117, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12254365103004385510" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "084f11" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14194994340599494452" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89625d300b044243c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5556159345339597588" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1039fe4082f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9de3f27fd80415f9b8d5a4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2c96239093d142b3a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6801981352700523882" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f86e76bd1937344a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85dd96fba77d41ccbc0a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6635131540729906227" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12979583328319389576" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7965998719869596642" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "940a0f" + }, + { + "_tag": "ByteArray", + "bytearray": "be" + }, + { + "_tag": "ByteArray", + "bytearray": "7279cb678fd7a0f77dc18603" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5076811836432487058" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6963099571070889019" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17250088186818236565" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "12a5d9e370255f8f7dd336" + }, + { + "_tag": "ByteArray", + "bytearray": "a2" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14889957169256536368" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1053355933339059608" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4398559128202313293" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cd7db0c9409d9d46a8c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77e0d21c537ceb3656ecd49c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b53a53" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc7c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15560494558250396650" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "32240fdeeab5" + }, + { + "_tag": "ByteArray", + "bytearray": "1f4319bfe9a0b93f806a6e" + }, + { + "_tag": "ByteArray", + "bytearray": "44923ac663d04b2b4c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1754429212886298839" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12961710949517033511" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1baa104022808500e69fa0bf43084f111bc4fec024fc1cf7344989625d300b044243c71b4d1b717c9e6f031446b1039fe4082f4b9de3f27fd80415f9b8d5a449b2c96239093d142b3a1b5e657e00788bb56a48f86e76bd1937344a4a85dd96fba77d41ccbc0a41fa1b5c14b8fb5b324433ff1bb420be44b10f3f881b6e8ce9a14b0b33e29f43940a0f41be4c7279cb678fd7a0f77dc186031b46747577960e9292ffffffd8669f1b60a1e62af55aec3b9f1bef649fcf9f7690959f4b12a5d9e370255f8f7dd33641a2ff1bcea3c127b2511930d8669f1b0e9e45a3f4b9859880ff1b3d0ad238f80cfe4dffffbf4a9cd7db0c9409d9d46a8c4c77e0d21c537ceb3656ecd49c43b53a5342bc7cffd8669f1bd7f1fb5b91e9ebea9f9f4632240fdeeab54b1f4319bfe9a0b93f806a6e4944923ac663d04b2b4cff9f1b1858fc12e1a7f0d71bb3e13f6f3b410027ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 170, 16, 64, 34, 128, 133, 0, 230, 159, 160, 191, 67, 8, 79, 17, 27, 196, 254, 192, 36, + 252, 28, 247, 52, 73, 137, 98, 93, 48, 11, 4, 66, 67, 199, 27, 77, 27, 113, 124, 158, 111, 3, 20, 70, 177, 3, 159, + 228, 8, 47, 75, 157, 227, 242, 127, 216, 4, 21, 249, 184, 213, 164, 73, 178, 201, 98, 57, 9, 61, 20, 43, 58, 27, + 94, 101, 126, 0, 120, 139, 181, 106, 72, 248, 110, 118, 189, 25, 55, 52, 74, 74, 133, 221, 150, 251, 167, 125, 65, + 204, 188, 10, 65, 250, 27, 92, 20, 184, 251, 91, 50, 68, 51, 255, 27, 180, 32, 190, 68, 177, 15, 63, 136, 27, 110, + 140, 233, 161, 75, 11, 51, 226, 159, 67, 148, 10, 15, 65, 190, 76, 114, 121, 203, 103, 143, 215, 160, 247, 125, + 193, 134, 3, 27, 70, 116, 117, 119, 150, 14, 146, 146, 255, 255, 255, 216, 102, 159, 27, 96, 161, 230, 42, 245, + 90, 236, 59, 159, 27, 239, 100, 159, 207, 159, 118, 144, 149, 159, 75, 18, 165, 217, 227, 112, 37, 95, 143, 125, + 211, 54, 65, 162, 255, 27, 206, 163, 193, 39, 178, 81, 25, 48, 216, 102, 159, 27, 14, 158, 69, 163, 244, 185, 133, + 152, 128, 255, 27, 61, 10, 210, 56, 248, 12, 254, 77, 255, 255, 191, 74, 156, 215, 219, 12, 148, 9, 217, 212, 106, + 140, 76, 119, 224, 210, 28, 83, 124, 235, 54, 86, 236, 212, 156, 67, 181, 58, 83, 66, 188, 124, 255, 216, 102, + 159, 27, 215, 241, 251, 91, 145, 233, 235, 234, 159, 159, 70, 50, 36, 15, 222, 234, 181, 75, 31, 67, 25, 191, 233, + 160, 185, 63, 128, 106, 110, 73, 68, 146, 58, 198, 99, 208, 75, 43, 76, 255, 159, 27, 24, 88, 252, 18, 225, 167, + 240, 215, 27, 179, 225, 63, 111, 59, 65, 0, 39, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1118, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8a919fab74ef6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3357638778696269676" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f530c766d49a3e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e3f3f6c67ac0d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12556153394206059058" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11506392639096037425" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "50df84a824055e2eb1d95b08" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9525832711578451876" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c102" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc0601" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef4e595f5b6100a0f71dc024" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f7104fe" + } + } + ] + } + ] + }, + "cborHex": "9fbf47b8a919fab74ef61b2e98baae00447f6c47f530c766d49a3e478e3f3f6c67ac0dff1bae406afc96f7aa329fd8669f1b9faeeb244b7d20319f4c50df84a824055e2eb1d95b08ffffffd8669f1b84328e61936dffa480ffbf42c10243fc06014cef4e595f5b6100a0f71dc024446f7104feffff", + "cborBytes": [ + 159, 191, 71, 184, 169, 25, 250, 183, 78, 246, 27, 46, 152, 186, 174, 0, 68, 127, 108, 71, 245, 48, 199, 102, 212, + 154, 62, 71, 142, 63, 63, 108, 103, 172, 13, 255, 27, 174, 64, 106, 252, 150, 247, 170, 50, 159, 216, 102, 159, + 27, 159, 174, 235, 36, 75, 125, 32, 49, 159, 76, 80, 223, 132, 168, 36, 5, 94, 46, 177, 217, 91, 8, 255, 255, 255, + 216, 102, 159, 27, 132, 50, 142, 97, 147, 109, 255, 164, 128, 255, 191, 66, 193, 2, 67, 252, 6, 1, 76, 239, 78, + 89, 95, 91, 97, 0, 160, 247, 29, 192, 36, 68, 111, 113, 4, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1119, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8051020086a60d95ce9012" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17753963958283782883" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7a70943f26" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff49a0c54e3b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3867059271001339804" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17452203429753976781" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9812c8415b2790610e3798" + }, + { + "_tag": "ByteArray", + "bytearray": "793897" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5246192636400090321" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18294146708828758169" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdcc69d61ecc3856bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16565933779243741300" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cae9bfbd" + } + ] + }, + "cborHex": "9fd9050a9fbf4b8051020086a60d95ce90121bf662c027d097cae3ff457a70943f269f46ff49a0c54e3b1b35aa8deb1d6a779c1bf232ae8dba56f7cd4b9812c8415b2790610e379843793897ffff1b48ce386843e5bcd1bf141bfde1dd81509ea09949fdcc69d61ecc3856bf0cff1be5e605008c77b07444cae9bfbdff", + "cborBytes": [ + 159, 217, 5, 10, 159, 191, 75, 128, 81, 2, 0, 134, 166, 13, 149, 206, 144, 18, 27, 246, 98, 192, 39, 208, 151, + 202, 227, 255, 69, 122, 112, 148, 63, 38, 159, 70, 255, 73, 160, 197, 78, 59, 27, 53, 170, 141, 235, 29, 106, 119, + 156, 27, 242, 50, 174, 141, 186, 86, 247, 205, 75, 152, 18, 200, 65, 91, 39, 144, 97, 14, 55, 152, 67, 121, 56, + 151, 255, 255, 27, 72, 206, 56, 104, 67, 229, 188, 209, 191, 20, 27, 253, 225, 221, 129, 80, 158, 160, 153, 73, + 253, 204, 105, 214, 30, 204, 56, 86, 191, 12, 255, 27, 229, 230, 5, 0, 140, 119, 176, 116, 68, 202, 233, 191, 189, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1120, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0af0855a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "789223554767689841" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "465a532b9de5f6ab5910" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5258795550836069947" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "807e7d930b1b1601aa9b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12086797966860108113" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b66980" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa5488ea5898819cf2f1ce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b60788e04e3a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdc379" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b3075fa11e6a881" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ff298e6891b473df307d" + } + ] + }, + "cborHex": "9fbf440af0855a1b0af3e2a43e4c98714a465a532b9de5f6ab59101b48fafeb0f1fd163b4a807e7d930b1b1601aa9b1ba7bceeb6569c415143b6698041b94bfa5488ea5898819cf2f1ce46b60788e04e3a43fdc379481b3075fa11e6a881ff4aff298e6891b473df307dff", + "cborBytes": [ + 159, 191, 68, 10, 240, 133, 90, 27, 10, 243, 226, 164, 62, 76, 152, 113, 74, 70, 90, 83, 43, 157, 229, 246, 171, + 89, 16, 27, 72, 250, 254, 176, 241, 253, 22, 59, 74, 128, 126, 125, 147, 11, 27, 22, 1, 170, 155, 27, 167, 188, + 238, 182, 86, 156, 65, 81, 67, 182, 105, 128, 65, 185, 75, 250, 84, 136, 234, 88, 152, 129, 156, 242, 241, 206, + 70, 182, 7, 136, 224, 78, 58, 67, 253, 195, 121, 72, 27, 48, 117, 250, 17, 230, 168, 129, 255, 74, 255, 41, 142, + 104, 145, 180, 115, 223, 48, 125, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1121, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1350643517379581103" + } + } + ] + }, + "cborHex": "9f1b12be731f7f9814afff", + "cborBytes": [159, 27, 18, 190, 115, 31, 127, 152, 20, 175, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1122, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4c617b2662" + }, + { + "_tag": "ByteArray", + "bytearray": "a025f5e18e6f260183" + }, + { + "_tag": "ByteArray", + "bytearray": "af01aa0dad63" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3539308247451780570" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17756102167039452243" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "98f6b15b6fb905338391" + } + ] + } + ] + }, + "cborHex": "9f9f454c617b266249a025f5e18e6f26018346af01aa0dad63d8669f1b311e261957f945da9f1bf66a58d855ee2453415dffff4a98f6b15b6fb905338391ffff", + "cborBytes": [ + 159, 159, 69, 76, 97, 123, 38, 98, 73, 160, 37, 245, 225, 142, 111, 38, 1, 131, 70, 175, 1, 170, 13, 173, 99, 216, + 102, 159, 27, 49, 30, 38, 25, 87, 249, 69, 218, 159, 27, 246, 106, 88, 216, 85, 238, 36, 83, 65, 93, 255, 255, 74, + 152, 246, 177, 91, 111, 185, 5, 51, 131, 145, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1123, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04100396" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "390703ba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bcfd" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14133060582929226528" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9fea78d054f0" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e09f7c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e70caf5e82" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cddf008e6780" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4526a5810730896da69d6999" + } + } + ] + } + ] + }, + "cborHex": "9fbf4404100396411944390703ba42bcfdffa0d8669f1bc422b7b852925b209f469fea78d054f0ffffbf449e09f7c945e70caf5e8246cddf008e67804c4526a5810730896da69d6999ffff", + "cborBytes": [ + 159, 191, 68, 4, 16, 3, 150, 65, 25, 68, 57, 7, 3, 186, 66, 188, 253, 255, 160, 216, 102, 159, 27, 196, 34, 183, + 184, 82, 146, 91, 32, 159, 70, 159, 234, 120, 208, 84, 240, 255, 255, 191, 68, 158, 9, 247, 201, 69, 231, 12, 175, + 94, 130, 70, 205, 223, 0, 142, 103, 128, 76, 69, 38, 165, 129, 7, 48, 137, 109, 166, 157, 105, 153, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1124, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "165467" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1544660b7378aa9c60e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17652730208636391244" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "657027366887301380" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12605105616040965209" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6325922450169732046" + } + } + ] + } + ] + }, + "cborHex": "9f9f80bf431654674ad1544660b7378aa9c60eff1bf4fb1898b9944f4c1b091e3ae8bb072104ff1baeee54c5e86734599f1b57ca30f3c7091bceffff", + "cborBytes": [ + 159, 159, 128, 191, 67, 22, 84, 103, 74, 209, 84, 70, 96, 183, 55, 138, 169, 198, 14, 255, 27, 244, 251, 24, 152, + 185, 148, 79, 76, 27, 9, 30, 58, 232, 187, 7, 33, 4, 255, 27, 174, 238, 84, 197, 232, 103, 52, 89, 159, 27, 87, + 202, 48, 243, 199, 9, 27, 206, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1125, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "317a1ae6" + }, + { + "_tag": "ByteArray", + "bytearray": "9ac277031344f31c8cb161" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4241981466847167513" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12509976281662085386" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14779657435247147731" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15103061734256457095" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71a2b548f2e97391199c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9683341458686839471" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c37a9f8f106a3a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3868209885609477485" + } + } + ] + }, + "cborHex": "9f9f44317a1ae64b9ac277031344f31c8cb161ffd8669f1b3ade8bab4b3744199fa0bf1bad9c5d25c107d90a1bcd1be421a1ddfad31bd198daa0bb26b5874a71a2b548f2e97391199cff1b866223c08bd78aaf47c37a9f8f106a3affff1b35aea4657468456dff", + "cborBytes": [ + 159, 159, 68, 49, 122, 26, 230, 75, 154, 194, 119, 3, 19, 68, 243, 28, 140, 177, 97, 255, 216, 102, 159, 27, 58, + 222, 139, 171, 75, 55, 68, 25, 159, 160, 191, 27, 173, 156, 93, 37, 193, 7, 217, 10, 27, 205, 27, 228, 33, 161, + 221, 250, 211, 27, 209, 152, 218, 160, 187, 38, 181, 135, 74, 113, 162, 181, 72, 242, 233, 115, 145, 25, 156, 255, + 27, 134, 98, 35, 192, 139, 215, 138, 175, 71, 195, 122, 159, 143, 16, 106, 58, 255, 255, 27, 53, 174, 164, 101, + 116, 104, 69, 109, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1126, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9072910892082014056" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15361713219641345452" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1e0818fb0bd7a685490" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1892119935609377220" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aed9b1c5ed" + }, + { + "_tag": "ByteArray", + "bytearray": "ad8d5961a30df412c4d3ee7f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ff5714" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6926337072130165567" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1143108557049510442" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c368c8a5f291" + }, + { + "_tag": "ByteArray", + "bytearray": "beffeeaca47f" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "588231804875834087" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14513163568573196933" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1701584946321503391" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "920d507bcd52" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4208059497978689063" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ccf0db7a" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7625599514724517361" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9967007753399518377" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1188707367895896696" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ad3aa97fb0e2fe32cc6fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6199940726587659976" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e004d276" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10621215903397421379" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbf3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12714897018500237084" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9004774255414293873" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2631273316112625382" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d00ef35093" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12682165749653832239" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4531079902315300173" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14412342365583438540" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ae1e" + }, + { + "_tag": "ByteArray", + "bytearray": "64f6d1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4a5aac" + }, + { + "_tag": "ByteArray", + "bytearray": "a9b96966e8f2c6d6e0" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1b7de97462d1522768bf1bd52fc4c88e2505ac4ae1e0818fb0bd7a685490ff9f1b1a42290e7a6e91c445aed9b1c5ed4cad8d5961a30df412c4d3ee7fff43ff5714d8669f1b601f4adeaaf00b3f9f1b0fdd232d1aa53a2a46c368c8a5f29146beffeeaca47fffffffbf1b0829d1b5bf3602e71bc9691d5f1ff22a851b179d3e7e48a5349f46920d507bcd521b3a6607d172ba762744ccf0db7aff9fbf1b69d3925b428bc5f11b8a51ecbe86f144a9ffbf1b107f230d955312784b4ad3aa97fb0e2fe32cc6fe1b560a9d3dfcbc16c844e004d2761b936623972cbba14342fbf31bb0746378cf61471c1b7cf76279d88d3571ffbf1b24842923d1db6ee645d00ef350931bb0001a8e6abe022f1b3ee1a12a1a6a454dffffd8669f1bc802ed0589e9f2cc9f42ae1e4364f6d19f434a5aac49a9b96966e8f2c6d6e0ffffffff", + "cborBytes": [ + 159, 159, 27, 125, 233, 116, 98, 209, 82, 39, 104, 191, 27, 213, 47, 196, 200, 142, 37, 5, 172, 74, 225, 224, 129, + 143, 176, 189, 122, 104, 84, 144, 255, 159, 27, 26, 66, 41, 14, 122, 110, 145, 196, 69, 174, 217, 177, 197, 237, + 76, 173, 141, 89, 97, 163, 13, 244, 18, 196, 211, 238, 127, 255, 67, 255, 87, 20, 216, 102, 159, 27, 96, 31, 74, + 222, 170, 240, 11, 63, 159, 27, 15, 221, 35, 45, 26, 165, 58, 42, 70, 195, 104, 200, 165, 242, 145, 70, 190, 255, + 238, 172, 164, 127, 255, 255, 255, 191, 27, 8, 41, 209, 181, 191, 54, 2, 231, 27, 201, 105, 29, 95, 31, 242, 42, + 133, 27, 23, 157, 62, 126, 72, 165, 52, 159, 70, 146, 13, 80, 123, 205, 82, 27, 58, 102, 7, 209, 114, 186, 118, + 39, 68, 204, 240, 219, 122, 255, 159, 191, 27, 105, 211, 146, 91, 66, 139, 197, 241, 27, 138, 81, 236, 190, 134, + 241, 68, 169, 255, 191, 27, 16, 127, 35, 13, 149, 83, 18, 120, 75, 74, 211, 170, 151, 251, 14, 47, 227, 44, 198, + 254, 27, 86, 10, 157, 61, 252, 188, 22, 200, 68, 224, 4, 210, 118, 27, 147, 102, 35, 151, 44, 187, 161, 67, 66, + 251, 243, 27, 176, 116, 99, 120, 207, 97, 71, 28, 27, 124, 247, 98, 121, 216, 141, 53, 113, 255, 191, 27, 36, 132, + 41, 35, 209, 219, 110, 230, 69, 208, 14, 243, 80, 147, 27, 176, 0, 26, 142, 106, 190, 2, 47, 27, 62, 225, 161, 42, + 26, 106, 69, 77, 255, 255, 216, 102, 159, 27, 200, 2, 237, 5, 137, 233, 242, 204, 159, 66, 174, 30, 67, 100, 246, + 209, 159, 67, 74, 90, 172, 73, 169, 185, 105, 102, 232, 242, 198, 214, 224, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1127, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3861158040190464568" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1440299870874258240" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15482751022553407738" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3239988242087104316" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8099218743858489060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15336358100778767677" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10092074026105214601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14486979627271989334" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14029841554681256690" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12442733570803104090" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8575cf3d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "151ce5759059877f77" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9166022862110231456" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b359596c7bf3232389f1b13fcf919fd804b40d8669f1bd6ddc8061d1ca0fa9f1b2cf6c023d60b4f3cffffbf1b7066348939dee6e41bd4d5b06fe91a553d1b8c0e3fdb4cf296891bc90c173737de28561bc2b4028f89ca5af21bacad78421a8bf95affbf448575cf3d49151ce5759059877f77ff80ffff9fd8669f1b7f34413abb308ba080ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 53, 149, 150, 199, 191, 50, 50, 56, 159, 27, 19, 252, 249, 25, 253, 128, 75, 64, 216, 102, + 159, 27, 214, 221, 200, 6, 29, 28, 160, 250, 159, 27, 44, 246, 192, 35, 214, 11, 79, 60, 255, 255, 191, 27, 112, + 102, 52, 137, 57, 222, 230, 228, 27, 212, 213, 176, 111, 233, 26, 85, 61, 27, 140, 14, 63, 219, 76, 242, 150, 137, + 27, 201, 12, 23, 55, 55, 222, 40, 86, 27, 194, 180, 2, 143, 137, 202, 90, 242, 27, 172, 173, 120, 66, 26, 139, + 249, 90, 255, 191, 68, 133, 117, 207, 61, 73, 21, 28, 229, 117, 144, 89, 135, 127, 119, 255, 128, 255, 255, 159, + 216, 102, 159, 27, 127, 52, 65, 58, 187, 48, 139, 160, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1128, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d82191a2943a28142d05" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16973800913255499998" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10200783679945096019" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10250025693162403224" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11254778119644857582" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c9600ec846b1290595f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30a568" + } + } + ] + } + ] + }, + "cborHex": "9f089f4ad82191a2943a28142d051beb8f0dffe2cb88de1b8d9076b5f9babb53ff80bf1b8e3f680f9b9275981b9c310111c74544ee4a6c9600ec846b1290595f4330a568ffff", + "cborBytes": [ + 159, 8, 159, 74, 216, 33, 145, 162, 148, 58, 40, 20, 45, 5, 27, 235, 143, 13, 255, 226, 203, 136, 222, 27, 141, + 144, 118, 181, 249, 186, 187, 83, 255, 128, 191, 27, 142, 63, 104, 15, 155, 146, 117, 152, 27, 156, 49, 1, 17, + 199, 69, 68, 238, 74, 108, 150, 0, 236, 132, 107, 18, 144, 89, 95, 67, 48, 165, 104, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1129, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "82c39aa6471483c16c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + "cborHex": "9f4982c39aa6471483c16c10ff", + "cborBytes": [159, 73, 130, 195, 154, 166, 71, 20, 131, 193, 108, 16, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1130, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15837121275364123431" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "50f40b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10735009015472310208" + } + }, + { + "_tag": "ByteArray", + "bytearray": "660c840ea0f417" + }, + { + "_tag": "ByteArray", + "bytearray": "36e80977225b" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bdbc8c1e42adc23279f9f4350f40b1b94fa69d2b3d7c7c047660c840ea0f4174636e80977225bffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 219, 200, 193, 228, 42, 220, 35, 39, 159, 159, 67, 80, 244, 11, 27, 148, 250, 105, 210, + 179, 215, 199, 192, 71, 102, 12, 132, 14, 160, 244, 23, 70, 54, 232, 9, 119, 34, 91, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1131, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "32489a062c4bda050203" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad33a5a721dabd60b7b73148" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6077ecff607e7c649ff46fea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b98ae42f240e997322ba2a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1955413087299140630" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcb37a3a0f2886" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7131658890628576525" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7aad825e06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d02" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "033f4f" + } + ] + }, + "cborHex": "9f4a32489a062c4bda050203bf4cad33a5a721dabd60b7b731484c6077ecff607e7c649ff46fea4bb98ae42f240e997322ba2a1b1b2305d7b99d7c1647bcb37a3a0f28861b62f8bdf9d32c350dffbf457aad825e06426d02ffd9050c8043033f4fff", + "cborBytes": [ + 159, 74, 50, 72, 154, 6, 44, 75, 218, 5, 2, 3, 191, 76, 173, 51, 165, 167, 33, 218, 189, 96, 183, 183, 49, 72, 76, + 96, 119, 236, 255, 96, 126, 124, 100, 159, 244, 111, 234, 75, 185, 138, 228, 47, 36, 14, 153, 115, 34, 186, 42, + 27, 27, 35, 5, 215, 185, 157, 124, 22, 71, 188, 179, 122, 58, 15, 40, 134, 27, 98, 248, 189, 249, 211, 44, 53, 13, + 255, 191, 69, 122, 173, 130, 94, 6, 66, 109, 2, 255, 217, 5, 12, 128, 67, 3, 63, 79, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1132, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8a0303" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fc" + }, + { + "_tag": "ByteArray", + "bytearray": "e593921928fb3b" + }, + { + "_tag": "ByteArray", + "bytearray": "d291" + }, + { + "_tag": "ByteArray", + "bytearray": "052724" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aec8934cb1fa2c555863" + } + ] + }, + "cborHex": "9f80438a0303d87b9f419eff9f9f41fc47e593921928fb3b42d29143052724ffff4aaec8934cb1fa2c555863ff", + "cborBytes": [ + 159, 128, 67, 138, 3, 3, 216, 123, 159, 65, 158, 255, 159, 159, 65, 252, 71, 229, 147, 146, 25, 40, 251, 59, 66, + 210, 145, 67, 5, 39, 36, 255, 255, 74, 174, 200, 147, 76, 177, 250, 44, 85, 88, 99, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1133, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "769355854208135281" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15995895772487144965" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2679213664078611770" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08f323db279b24f5ba637972" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3607392261839095606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1661577207722597186" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13263808856293358811" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1933967114379558724" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "42a58c7ad3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5077898369922616724" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12935327786126123071" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b439949" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13410223811601386261" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1360264757395979085" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15686754549486669671" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eb611d6e79188e496f6963a9" + }, + { + "_tag": "ByteArray", + "bytearray": "ed6f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4977075355569604928" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b0aad4d12bbf170711bddfcd6748744d6051b252e7aa1e4c7453a4c08f323db279b24f5ba6379721b321008263c6987361b170f1baac130db421bb81283e1500bbcdb1b1ad6d4d80be17f44ff9f4542a58c7ad39f1b467851a9e0c5cd941bb38384165149a03f442b4399491bba1aaf8198fc4b15ff9f1b12e0a1970111fb4d1bd9b28c2698e54f674ceb611d6e79188e496f6963a942ed6f1b45121faa8d13c940ffffff", + "cborBytes": [ + 159, 191, 27, 10, 173, 77, 18, 187, 241, 112, 113, 27, 221, 252, 214, 116, 135, 68, 214, 5, 27, 37, 46, 122, 161, + 228, 199, 69, 58, 76, 8, 243, 35, 219, 39, 155, 36, 245, 186, 99, 121, 114, 27, 50, 16, 8, 38, 60, 105, 135, 54, + 27, 23, 15, 27, 170, 193, 48, 219, 66, 27, 184, 18, 131, 225, 80, 11, 188, 219, 27, 26, 214, 212, 216, 11, 225, + 127, 68, 255, 159, 69, 66, 165, 140, 122, 211, 159, 27, 70, 120, 81, 169, 224, 197, 205, 148, 27, 179, 131, 132, + 22, 81, 73, 160, 63, 68, 43, 67, 153, 73, 27, 186, 26, 175, 129, 152, 252, 75, 21, 255, 159, 27, 18, 224, 161, + 151, 1, 17, 251, 77, 27, 217, 178, 140, 38, 152, 229, 79, 103, 76, 235, 97, 29, 110, 121, 24, 142, 73, 111, 105, + 99, 169, 66, 237, 111, 27, 69, 18, 31, 170, 141, 19, 201, 64, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1134, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1149531429194116766" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10650026932514869283" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3577207517877595713" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6316321266558806224" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67b50570" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1c0113" + } + ] + }, + "cborHex": "9fbf1b0ff3f4be8f432e9e1b93cc7f11a0e450231b31a4cb48def36e4141721b57a814ba047ba8d04467b50570ff431c0113ff", + "cborBytes": [ + 159, 191, 27, 15, 243, 244, 190, 143, 67, 46, 158, 27, 147, 204, 127, 17, 160, 228, 80, 35, 27, 49, 164, 203, 72, + 222, 243, 110, 65, 65, 114, 27, 87, 168, 20, 186, 4, 123, 168, 208, 68, 103, 181, 5, 112, 255, 67, 28, 1, 19, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1135, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "391c534dc70a73" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13673649827320046263" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "861d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92a26eef7550a655" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8db4cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10419491944248291067" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f3e227407ce" + } + } + ] + } + ] + }, + "cborHex": "9fbf47391c534dc70a731bbdc29012647e22b742861d4892a26eef7550a655438db4cc1b909978b7ecf6aefb4190464f3e227407ceffff", + "cborBytes": [ + 159, 191, 71, 57, 28, 83, 77, 199, 10, 115, 27, 189, 194, 144, 18, 100, 126, 34, 183, 66, 134, 29, 72, 146, 162, + 110, 239, 117, 80, 166, 85, 67, 141, 180, 204, 27, 144, 153, 120, 183, 236, 246, 174, 251, 65, 144, 70, 79, 62, + 34, 116, 7, 206, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1136, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "305badf6aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13907454522998273401" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9119" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "807239141381332893" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a10b27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7811495875605530845" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1421fb9f6b0f28009c86f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f831abb82c5e7bea27cdf282" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfd78c0412bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3e6a00bea5b36" + } + } + ] + } + ] + }, + "cborHex": "9f45305badf6aa1bc10134342d363579bf4291191b0b33e3b8ded35f9d43a10b271b6c68021c9de588dd4ba1421fb9f6b0f28009c86f4cf831abb82c5e7bea27cdf28246bfd78c0412bb47c3e6a00bea5b36ffff", + "cborBytes": [ + 159, 69, 48, 91, 173, 246, 170, 27, 193, 1, 52, 52, 45, 54, 53, 121, 191, 66, 145, 25, 27, 11, 51, 227, 184, 222, + 211, 95, 157, 67, 161, 11, 39, 27, 108, 104, 2, 28, 157, 229, 136, 221, 75, 161, 66, 31, 185, 246, 176, 242, 128, + 9, 200, 111, 76, 248, 49, 171, 184, 44, 94, 123, 234, 39, 205, 242, 130, 70, 191, 215, 140, 4, 18, 187, 71, 195, + 230, 160, 11, 234, 91, 54, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1137, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5739790049596389337" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77b6cd8b32fe07d2aa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17411986411477621519" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "082cf85b2263c721" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15408053148851692898" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10191027913014846706" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6542696879543478449" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10216645707189996644" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13308891576452974171" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2422448962704131126" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "291b2c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7819689331638480583" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d901f8a0e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10050607997250969306" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14368445853413533737" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10307290259173464821" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14677383396153692552" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15025389920661061509" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15515775217384128243" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18370908156839075551" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b145c8624fb" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b4fa7d4a3af83b7d94977b6cd8b32fe07d2aa1bf1a3cd637a0d5b0f48082cf85b2263c721ffd8669f1bd5d466b419a4e56280ff9fd8669f1b8d6dcde47b5724f280ffd8669f1b5acc5425b23ee8b19f1b8dc8d123fd144c641bb8b2ae6010ab065bffffbf1b219e447f347e443643291b2c1b6c851e0442392ec7454d901f8a0e1b8b7aeeb91cd81eda1bc766f9605b25e8291b8f0ad9e15ee0daf51bcbb08a6f47f511881bd084e88660bcbf851bd7531b5aa6fd7ef31bfef293a2a9b81edf462b145c8624fbffffff", + "cborBytes": [ + 159, 191, 27, 79, 167, 212, 163, 175, 131, 183, 217, 73, 119, 182, 205, 139, 50, 254, 7, 210, 170, 27, 241, 163, + 205, 99, 122, 13, 91, 15, 72, 8, 44, 248, 91, 34, 99, 199, 33, 255, 216, 102, 159, 27, 213, 212, 102, 180, 25, + 164, 229, 98, 128, 255, 159, 216, 102, 159, 27, 141, 109, 205, 228, 123, 87, 36, 242, 128, 255, 216, 102, 159, 27, + 90, 204, 84, 37, 178, 62, 232, 177, 159, 27, 141, 200, 209, 35, 253, 20, 76, 100, 27, 184, 178, 174, 96, 16, 171, + 6, 91, 255, 255, 191, 27, 33, 158, 68, 127, 52, 126, 68, 54, 67, 41, 27, 44, 27, 108, 133, 30, 4, 66, 57, 46, 199, + 69, 77, 144, 31, 138, 14, 27, 139, 122, 238, 185, 28, 216, 30, 218, 27, 199, 102, 249, 96, 91, 37, 232, 41, 27, + 143, 10, 217, 225, 94, 224, 218, 245, 27, 203, 176, 138, 111, 71, 245, 17, 136, 27, 208, 132, 232, 134, 96, 188, + 191, 133, 27, 215, 83, 27, 90, 166, 253, 126, 243, 27, 254, 242, 147, 162, 169, 184, 30, 223, 70, 43, 20, 92, 134, + 36, 251, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1138, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "82" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15727221615614622447" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a17834" + } + ] + }, + "cborHex": "9f9f4182ffa01bda4250bba68dfaef43a17834ff", + "cborBytes": [159, 159, 65, 130, 255, 160, 27, 218, 66, 80, 187, 166, 141, 250, 239, 67, 161, 120, 52, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1139, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e45d51e46e0bd07b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14109070331098647015" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f8241b11d3de3b8dea7efb" + }, + { + "_tag": "ByteArray", + "bytearray": "56" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13041037572569566072" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "875d267b9d307fa6cd33" + }, + { + "_tag": "ByteArray", + "bytearray": "440e" + } + ] + }, + "cborHex": "9fa048e45d51e46e0bd07b9f9f1bc3cd7cb68c2349e74bf8241b11d3de3b8dea7efb4156ff1bb4fb1293ef880b7880ff4a875d267b9d307fa6cd3342440eff", + "cborBytes": [ + 159, 160, 72, 228, 93, 81, 228, 110, 11, 208, 123, 159, 159, 27, 195, 205, 124, 182, 140, 35, 73, 231, 75, 248, + 36, 27, 17, 211, 222, 59, 141, 234, 126, 251, 65, 86, 255, 27, 180, 251, 18, 147, 239, 136, 11, 120, 128, 255, 74, + 135, 93, 38, 123, 157, 48, 127, 166, 205, 51, 66, 68, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1140, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "292ba4c063" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2048805821749236942" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72752205" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8881504018154806452" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18311286619773988032" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4681131244936911939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c22801fb" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "82" + } + ] + }, + "cborHex": "9fbf45292ba4c0631b1c6ed20a331d94ce44727522051b7b4170d929525cb4ffbf091bfe1ec229cffdecc01b40f6b810c9725c4344c22801fbff4182ff", + "cborBytes": [ + 159, 191, 69, 41, 43, 164, 192, 99, 27, 28, 110, 210, 10, 51, 29, 148, 206, 68, 114, 117, 34, 5, 27, 123, 65, 112, + 217, 41, 82, 92, 180, 255, 191, 9, 27, 254, 30, 194, 41, 207, 253, 236, 192, 27, 64, 246, 184, 16, 201, 114, 92, + 67, 68, 194, 40, 1, 251, 255, 65, 130, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1141, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "461a0b80132272570dae" + } + ] + }, + "cborHex": "9f4a461a0b80132272570daeff", + "cborBytes": [159, 74, 70, 26, 11, 128, 19, 34, 114, 87, 13, 174, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1142, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4015538026417429857" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "259ac1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12793658538039904314" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6a884811bb9ec77b6115bb" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6675273814851756537" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15433674694027522394" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "386c75084fd666b5066701" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e5a2143097393f2d7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc94870ef5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "681c1e66275cf3" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14078888996324267992" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f7b" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b37ba0e8f4eaf1d6180ffbf43259ac11bb18c34a81983083aff4b6a884811bb9ec77b6115bbbf1b5ca3562ae0b4a1f91bd62f6d5cf472315a4b386c75084fd666b5066701498e5a2143097393f2d745dc94870ef547681c1e66275cf3ffbf1bc36242f2f21057d8420f7bffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 55, 186, 14, 143, 78, 175, 29, 97, 128, 255, 191, 67, 37, 154, 193, 27, 177, 140, 52, 168, + 25, 131, 8, 58, 255, 75, 106, 136, 72, 17, 187, 158, 199, 123, 97, 21, 187, 191, 27, 92, 163, 86, 42, 224, 180, + 161, 249, 27, 214, 47, 109, 92, 244, 114, 49, 90, 75, 56, 108, 117, 8, 79, 214, 102, 181, 6, 103, 1, 73, 142, 90, + 33, 67, 9, 115, 147, 242, 215, 69, 220, 148, 135, 14, 245, 71, 104, 28, 30, 102, 39, 92, 243, 255, 191, 27, 195, + 98, 66, 242, 242, 16, 87, 216, 66, 15, 123, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1143, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1144690846343209199" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13641303328938019494" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4871896942974410067" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18bfde0e2d955e98da2a52" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14888358451022243844" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15218402892541573993" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c595fdc22a" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3569073073572155188" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12604897532144903721" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3661467610139899134" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2435443881841843590" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29521d0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47d17c40676175a5cba8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10937465111977846829" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8109419488409509034" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5160016759415495990" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3543760080746073120" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5961996676638178917" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5009050785317048043" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12875900719880773851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3971916492993679515" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6eb559539857b70ec0354" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5e42" + } + ] + }, + "cborHex": "9fbf1b0fe2c24289eda0ef1bbd4fa51a5ab44aa61b439c74750c4d1d534b18bfde0e2d955e98da2a521bce9e132119dda80441551bd332a0ccdab7bb6945c595fdc22affbf1b3187e50cf7ae0f341baeed978599b1e6291b32d0256462fcb4fe1b21cc6f4e9794dd864429521d0f41084a47d17c40676175a5cba81b97c9ae91f6aae82dff1b708a720f25475caabf1b479c0fe75c05dd361b312df7048e144c201b52bd4463af13fe651b4583b92670b6ceeb1bb2b0637c3bb0a0db1b371f15019a67509b4ba6eb559539857b70ec0354419bff425e42ff", + "cborBytes": [ + 159, 191, 27, 15, 226, 194, 66, 137, 237, 160, 239, 27, 189, 79, 165, 26, 90, 180, 74, 166, 27, 67, 156, 116, 117, + 12, 77, 29, 83, 75, 24, 191, 222, 14, 45, 149, 94, 152, 218, 42, 82, 27, 206, 158, 19, 33, 25, 221, 168, 4, 65, + 85, 27, 211, 50, 160, 204, 218, 183, 187, 105, 69, 197, 149, 253, 194, 42, 255, 191, 27, 49, 135, 229, 12, 247, + 174, 15, 52, 27, 174, 237, 151, 133, 153, 177, 230, 41, 27, 50, 208, 37, 100, 98, 252, 180, 254, 27, 33, 204, 111, + 78, 151, 148, 221, 134, 68, 41, 82, 29, 15, 65, 8, 74, 71, 209, 124, 64, 103, 97, 117, 165, 203, 168, 27, 151, + 201, 174, 145, 246, 170, 232, 45, 255, 27, 112, 138, 114, 15, 37, 71, 92, 170, 191, 27, 71, 156, 15, 231, 92, 5, + 221, 54, 27, 49, 45, 247, 4, 142, 20, 76, 32, 27, 82, 189, 68, 99, 175, 19, 254, 101, 27, 69, 131, 185, 38, 112, + 182, 206, 235, 27, 178, 176, 99, 124, 59, 176, 160, 219, 27, 55, 31, 21, 1, 154, 103, 80, 155, 75, 166, 235, 85, + 149, 57, 133, 123, 112, 236, 3, 84, 65, 155, 255, 66, 94, 66, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1144, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4984673983057745103" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "41acba49c76c7b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5188376882581704222" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1038323074265814662" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70026666" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "232508530cf700" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7409629619428464262" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16170294088451756919" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5e9ce2e0487fc87806" + }, + { + "_tag": "ByteArray", + "bytearray": "7cf5a9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1837809667632190565" + } + }, + { + "_tag": "ByteArray", + "bytearray": "41001c688ee4e1f262" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b452d1e93e149d4cf80ff4741acba49c76c7bbf1b4800d14917218e1e1b0e68dd55b3b49686447002666647232508530cf700ffd8669f1b66d44ae1873f16869f1be0686cccafc413779f495e9ce2e0487fc87806437cf5a91b19813627d3fed4654941001c688ee4e1f262ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 69, 45, 30, 147, 225, 73, 212, 207, 128, 255, 71, 65, 172, 186, 73, 199, 108, 123, 191, + 27, 72, 0, 209, 73, 23, 33, 142, 30, 27, 14, 104, 221, 85, 179, 180, 150, 134, 68, 112, 2, 102, 102, 71, 35, 37, + 8, 83, 12, 247, 0, 255, 216, 102, 159, 27, 102, 212, 74, 225, 135, 63, 22, 134, 159, 27, 224, 104, 108, 204, 175, + 196, 19, 119, 159, 73, 94, 156, 226, 224, 72, 127, 200, 120, 6, 67, 124, 245, 169, 27, 25, 129, 54, 39, 211, 254, + 212, 101, 73, 65, 0, 28, 104, 142, 228, 225, 242, 98, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1145, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "39cf58e8bd70df" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18302463434732253382" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "648c855a1a15a01a77e941" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2626723207802001372" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7042905963511950075" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11172101533022576912" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7255895753522135128" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13878530682498229778" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2511566858307064893" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f51" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17652071353885889733" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17317281806175841492" + } + } + ] + } + ] + }, + "cborHex": "9f4739cf58e8bd70dfd8669f1bfdff6985f5cab0c69f4b648c855a1a15a01a77e9411b2473fed72c5017dca01b61bd6da8ad9c2afbd8669f1b9b0b4726e66861109f1b64b21ebe93f3c058ffffffffd8669f1bc09a721fc6aaa6129f1b22dae0c03309543dbf421f511bf4f8c15f263794c5ff1bf053580d44722cd4ffffff", + "cborBytes": [ + 159, 71, 57, 207, 88, 232, 189, 112, 223, 216, 102, 159, 27, 253, 255, 105, 133, 245, 202, 176, 198, 159, 75, 100, + 140, 133, 90, 26, 21, 160, 26, 119, 233, 65, 27, 36, 115, 254, 215, 44, 80, 23, 220, 160, 27, 97, 189, 109, 168, + 173, 156, 42, 251, 216, 102, 159, 27, 155, 11, 71, 38, 230, 104, 97, 16, 159, 27, 100, 178, 30, 190, 147, 243, + 192, 88, 255, 255, 255, 255, 216, 102, 159, 27, 192, 154, 114, 31, 198, 170, 166, 18, 159, 27, 34, 218, 224, 192, + 51, 9, 84, 61, 191, 66, 31, 81, 27, 244, 248, 193, 95, 38, 55, 148, 197, 255, 27, 240, 83, 88, 13, 68, 114, 44, + 212, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1146, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11699307489732816392" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eb9411ad3011" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4991086901219638355" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca97dd3e2b562559030afd13" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15506275387295923218" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4ff20227c2fb78b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18151707040566788883" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17024505939637368897" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7612607476713828978" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ce3a7bb209065a" + }, + { + "_tag": "ByteArray", + "bytearray": "490c1a" + }, + { + "_tag": "ByteArray", + "bytearray": "b53004" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "440a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7580385089870506478" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4369631279328029721" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5581691325294971909" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7aad287ed957" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15448091081506072710" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f0b19d8c5fefb6f1f09efff5" + } + ] + } + ] + }, + "cborHex": "9f9f1ba25c4a2d23976e0846eb9411ad3011bf1b4543e717be4d3c534cca97dd3e2b562559030afd131bd7315b4f1927fc1248e4ff20227c2fb78b1bfbe7d161abf0c3131bec4331f3d09cf841ffd8669f1b69a56a2ab002b2729f47ce3a7bb209065a43490c1a43b53004ffffbf42440a1b6932f0139e6629eeffff1b3ca40c7f4bc86c199f1b4d7626aff2160c059f467aad287ed9571bd662a4fdbb0ca886ffff9f4cf0b19d8c5fefb6f1f09efff5ffff", + "cborBytes": [ + 159, 159, 27, 162, 92, 74, 45, 35, 151, 110, 8, 70, 235, 148, 17, 173, 48, 17, 191, 27, 69, 67, 231, 23, 190, 77, + 60, 83, 76, 202, 151, 221, 62, 43, 86, 37, 89, 3, 10, 253, 19, 27, 215, 49, 91, 79, 25, 39, 252, 18, 72, 228, 255, + 32, 34, 124, 47, 183, 139, 27, 251, 231, 209, 97, 171, 240, 195, 19, 27, 236, 67, 49, 243, 208, 156, 248, 65, 255, + 216, 102, 159, 27, 105, 165, 106, 42, 176, 2, 178, 114, 159, 71, 206, 58, 123, 178, 9, 6, 90, 67, 73, 12, 26, 67, + 181, 48, 4, 255, 255, 191, 66, 68, 10, 27, 105, 50, 240, 19, 158, 102, 41, 238, 255, 255, 27, 60, 164, 12, 127, + 75, 200, 108, 25, 159, 27, 77, 118, 38, 175, 242, 22, 12, 5, 159, 70, 122, 173, 40, 126, 217, 87, 27, 214, 98, + 164, 253, 187, 12, 168, 134, 255, 255, 159, 76, 240, 177, 157, 140, 95, 239, 182, 241, 240, 158, 255, 245, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1147, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "001a618874" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6be421fc96" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d63b858a5887e0e36e50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e36240b04d17b981864bc45" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e78f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14389978368353778969" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1100386069590197743" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97db" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1112195928508029149" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b25082c9b02b4fbc03" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9292202818397876528" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e1caf4a50ee3a896415" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14567981968133825778" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2102684727800570977" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17686117641975762915" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2cc9a" + } + } + ] + } + ] + }, + "cborHex": "9fbf45001a618874456be421fc964ad63b858a5887e0e36e504c0e36240b04d17b981864bc4542e78f1bc7b37915ab483d19ffbf1b0f455b4cd9b645ef4297db1b0f6f504de75b58dd49b25082c9b02b4fbc031b80f4893b2b7d31304a5e1caf4a50ee3a8964151bca2bde6a60e9a4f21b1d2e3c9e933124611bf571b64a51bc0fe343c2cc9affff", + "cborBytes": [ + 159, 191, 69, 0, 26, 97, 136, 116, 69, 107, 228, 33, 252, 150, 74, 214, 59, 133, 138, 88, 135, 224, 227, 110, 80, + 76, 14, 54, 36, 11, 4, 209, 123, 152, 24, 100, 188, 69, 66, 231, 143, 27, 199, 179, 121, 21, 171, 72, 61, 25, 255, + 191, 27, 15, 69, 91, 76, 217, 182, 69, 239, 66, 151, 219, 27, 15, 111, 80, 77, 231, 91, 88, 221, 73, 178, 80, 130, + 201, 176, 43, 79, 188, 3, 27, 128, 244, 137, 59, 43, 125, 49, 48, 74, 94, 28, 175, 74, 80, 238, 58, 137, 100, 21, + 27, 202, 43, 222, 106, 96, 233, 164, 242, 27, 29, 46, 60, 158, 147, 49, 36, 97, 27, 245, 113, 182, 74, 81, 188, + 15, 227, 67, 194, 204, 154, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1148, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12059430302137128305" + }, + "fields": [] + } + ] + }, + "cborHex": "9f80d8669f1ba75bb3f75877157180ffff", + "cborBytes": [159, 128, 216, 102, 159, 27, 167, 91, 179, 247, 88, 119, 21, 113, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1149, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "62a4a92f537c2ef9ccf500" + } + ] + }, + "cborHex": "9fa04b62a4a92f537c2ef9ccf500ff", + "cborBytes": [159, 160, 75, 98, 164, 169, 47, 83, 124, 46, 249, 204, 245, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1150, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd9050d80ff", + "cborBytes": [159, 217, 5, 13, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1151, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60cea8cebf2c3948d260" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "434e2275" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7629123467348805020" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88df2c91842b31ae43" + } + } + ] + } + ] + }, + "cborHex": "9fbf124a60cea8cebf2c3948d2601bfffffffffffffff4121bfffffffffffffffc10ffbf0244434e22751b69e0175f6aec059c4988df2c91842b31ae43ffff", + "cborBytes": [ + 159, 191, 18, 74, 96, 206, 168, 206, 191, 44, 57, 72, 210, 96, 27, 255, 255, 255, 255, 255, 255, 255, 244, 18, 27, + 255, 255, 255, 255, 255, 255, 255, 252, 16, 255, 191, 2, 68, 67, 78, 34, 117, 27, 105, 224, 23, 95, 106, 236, 5, + 156, 73, 136, 223, 44, 145, 132, 43, 49, 174, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1152, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ccf81b1642a7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9107f2b0201056b46ede4f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e29ec522baf16" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e06c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "971fe809" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5000484336201710714" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "035d" + }, + { + "_tag": "ByteArray", + "bytearray": "fc9b7aff" + } + ] + }, + "cborHex": "9fbf470ccf81b1642a7d4ca9107f2b0201056b46ede4f7477e29ec522baf1642e06c44971fe8091b45654a0294353c7aff42035d44fc9b7affff", + "cborBytes": [ + 159, 191, 71, 12, 207, 129, 177, 100, 42, 125, 76, 169, 16, 127, 43, 2, 1, 5, 107, 70, 237, 228, 247, 71, 126, 41, + 236, 82, 43, 175, 22, 66, 224, 108, 68, 151, 31, 232, 9, 27, 69, 101, 74, 2, 148, 53, 60, 122, 255, 66, 3, 93, 68, + 252, 155, 122, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1153, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03" + } + ] + }, + "cborHex": "9f4103ff", + "cborBytes": [159, 65, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1154, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a3cb0ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17751222009522457568" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d89fe5a52dba9277f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "774106807674883837" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac93e56920f04ca5e0ca81d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10510308879176141469" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dda888dc6ea0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "885210612109dd6d5742cc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea7bf13c405f338df310f15c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6717180658233868705" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f05954d6d216a3a4c8e9bb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18145967589828767435" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3757024685986601984" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "499206984303773629" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d41743748" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13098934358437723882" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + ] + } + ] + }, + "cborHex": "9f1bfffffffffffffff19f0dbf440a3cb0ea1bf659025e1eae8be0415f491d89fe5a52dba9277f418a1b0abe2e0a49ac4efd4cac93e56920f04ca5e0ca81d41b91dc1e3d56ed8a9d46dda888dc6ea04b885210612109dd6d5742cc4cea7bf13c405f338df310f15c4144ff9f1b5d383838322781a14bf05954d6d216a3a4c8e9bb1bfbd36d61a97eaecbff1bfffffffffffffffc9f1b3423a20bdc9adc001b06ed8a1b78d207bdffffbf05455d417437481bfffffffffffffffe1bb5c8c365dad6feeaff9f1bfffffffffffffff6ffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 13, 191, 68, 10, 60, 176, 234, 27, 246, 89, 2, 94, 30, 174, + 139, 224, 65, 95, 73, 29, 137, 254, 90, 82, 219, 169, 39, 127, 65, 138, 27, 10, 190, 46, 10, 73, 172, 78, 253, 76, + 172, 147, 229, 105, 32, 240, 76, 165, 224, 202, 129, 212, 27, 145, 220, 30, 61, 86, 237, 138, 157, 70, 221, 168, + 136, 220, 110, 160, 75, 136, 82, 16, 97, 33, 9, 221, 109, 87, 66, 204, 76, 234, 123, 241, 60, 64, 95, 51, 141, + 243, 16, 241, 92, 65, 68, 255, 159, 27, 93, 56, 56, 56, 50, 39, 129, 161, 75, 240, 89, 84, 214, 210, 22, 163, 164, + 200, 233, 187, 27, 251, 211, 109, 97, 169, 126, 174, 203, 255, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, + 27, 52, 35, 162, 11, 220, 154, 220, 0, 27, 6, 237, 138, 27, 120, 210, 7, 189, 255, 255, 191, 5, 69, 93, 65, 116, + 55, 72, 27, 255, 255, 255, 255, 255, 255, 255, 254, 27, 181, 200, 195, 101, 218, 214, 254, 234, 255, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 246, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1155, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "524155756413463671" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6c5fc4f2d7ab523489f50" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11659684758854227967" + } + } + ] + }, + "cborHex": "9fd8669f1b07462ce224002c779fbf004bc6c5fc4f2d7ab523489f50425f0f41fcffffff1ba1cf8583348ad7ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 7, 70, 44, 226, 36, 0, 44, 119, 159, 191, 0, 75, 198, 197, 252, 79, 45, 122, 181, 35, 72, + 159, 80, 66, 95, 15, 65, 252, 255, 255, 255, 27, 161, 207, 133, 131, 52, 138, 215, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1156, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14473281456709516538" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f1bc8db6ccd596b3cfaffffff", + "cborBytes": [159, 159, 159, 27, 200, 219, 108, 205, 89, 107, 60, 250, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1157, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17956217151350984294" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16345455008849527364" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4918599538802035240" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5046094723364540126" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18433556424865912089" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09b7bb80" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec671d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17130283278414751229" + } + }, + { + "_tag": "ByteArray", + "bytearray": "27522b20ead681" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12314808184084606165" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cccea41664e138bf895a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5625206973309298177" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf9314c5cf00d4e669fd8669f1be2d6b8ba869b02449f1b444260387eb20a281b4607546a611dcedeffff1bffd125e73b4095194409b7bb80bf43ec671d4123ffffff9f1bedbafde1afb9a5fd4727522b20ead6811baae6fccbf96facd5bf4acccea41664e138bf895a1b4e10bff04826a601ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 249, 49, 76, 92, 240, 13, 78, 102, 159, 216, 102, 159, 27, 226, 214, 184, 186, 134, 155, + 2, 68, 159, 27, 68, 66, 96, 56, 126, 178, 10, 40, 27, 70, 7, 84, 106, 97, 29, 206, 222, 255, 255, 27, 255, 209, + 37, 231, 59, 64, 149, 25, 68, 9, 183, 187, 128, 191, 67, 236, 103, 29, 65, 35, 255, 255, 255, 159, 27, 237, 186, + 253, 225, 175, 185, 165, 253, 71, 39, 82, 43, 32, 234, 214, 129, 27, 170, 230, 252, 203, 249, 111, 172, 213, 191, + 74, 204, 206, 164, 22, 100, 225, 56, 191, 137, 90, 27, 78, 16, 191, 240, 72, 38, 166, 1, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1158, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1148786949072598054" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1c1e4514a506934ad0a8" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9545145014748033477" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8423740227158663120" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87db433582e21aac4b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13288460272334796271" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "899d4ef6899961f83b15" + }, + { + "_tag": "ByteArray", + "bytearray": "b8ce0cd02c5f7ac2a0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8182295015119605088" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3378283212545198858" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "968d9d117ea1019b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11846827751328817989" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4401" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0519ad86ea786b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3541820748892609934" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41eb3b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9814617446518144930" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0b418166a87b6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "779509" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63c8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f2e086f326e801b37f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18397547896295259680" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b0ff14fa4c613b4269f4a1c1e4514a506934ad0a8ffff80bf1b84772ad18da5b1c51b74e7231b0ff5dfd04987db433582e21aac4b1bb86a18366067f5efffd905019f4a899d4ef6899961f83b1549b8ce0cd02c5f7ac2a01b718d59f6efa74d60ffd8669f1b2ee212aed26c0b0a9f48968d9d117ea1019b1ba46863129931a345ffffff424401bf470519ad86ea786b1b31271334abda1d8e4341eb3b1b883486914a10bfa24259bc47d0b418166a87b6437795094263c84a9f2e086f326e801b37f81bff51385658e9fe20ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 15, 241, 79, 164, 198, 19, 180, 38, 159, 74, 28, 30, 69, 20, 165, 6, 147, 74, 208, + 168, 255, 255, 128, 191, 27, 132, 119, 42, 209, 141, 165, 177, 197, 27, 116, 231, 35, 27, 15, 245, 223, 208, 73, + 135, 219, 67, 53, 130, 226, 26, 172, 75, 27, 184, 106, 24, 54, 96, 103, 245, 239, 255, 217, 5, 1, 159, 74, 137, + 157, 78, 246, 137, 153, 97, 248, 59, 21, 73, 184, 206, 12, 208, 44, 95, 122, 194, 160, 27, 113, 141, 89, 246, 239, + 167, 77, 96, 255, 216, 102, 159, 27, 46, 226, 18, 174, 210, 108, 11, 10, 159, 72, 150, 141, 157, 17, 126, 161, 1, + 155, 27, 164, 104, 99, 18, 153, 49, 163, 69, 255, 255, 255, 66, 68, 1, 191, 71, 5, 25, 173, 134, 234, 120, 107, + 27, 49, 39, 19, 52, 171, 218, 29, 142, 67, 65, 235, 59, 27, 136, 52, 134, 145, 74, 16, 191, 162, 66, 89, 188, 71, + 208, 180, 24, 22, 106, 135, 182, 67, 119, 149, 9, 66, 99, 200, 74, 159, 46, 8, 111, 50, 110, 128, 27, 55, 248, 27, + 255, 81, 56, 86, 88, 233, 254, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1159, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4298720989373410382" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05b092832e19917c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5119052759266922909" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fb8f44efca700638219df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63b7e378" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4533159044389643470" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cfe95b6a5ebddfe4b5de9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4971830351429682622" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16801216003499273787" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1db3e7aa5c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8812062501855795739" + } + } + ] + }, + "cborHex": "9fbf1b3ba81ff6d81e2c4e4805b092832e19917c1b470a875cd696919d4b6fb8f44efca700638219df4463b7e3781b3ee904221731a4ce4b9cfe95b6a5ebddfe4b5de91b44ff7d5cdc78c5beff1be929e8f0432eae3b451db3e7aa5c1b7a4abc2839a79a1bff", + "cborBytes": [ + 159, 191, 27, 59, 168, 31, 246, 216, 30, 44, 78, 72, 5, 176, 146, 131, 46, 25, 145, 124, 27, 71, 10, 135, 92, 214, + 150, 145, 157, 75, 111, 184, 244, 78, 252, 167, 0, 99, 130, 25, 223, 68, 99, 183, 227, 120, 27, 62, 233, 4, 34, + 23, 49, 164, 206, 75, 156, 254, 149, 182, 165, 235, 221, 254, 75, 93, 233, 27, 68, 255, 125, 92, 220, 120, 197, + 190, 255, 27, 233, 41, 232, 240, 67, 46, 174, 59, 69, 29, 179, 231, 170, 92, 27, 122, 74, 188, 40, 57, 167, 154, + 27, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1160, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0c8f6eed31f1" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15657815365861660513" + } + } + ] + }, + "cborHex": "9f460c8f6eed31f18041d01bd94bbc1dd8d65761ff", + "cborBytes": [159, 70, 12, 143, 110, 237, 49, 241, 128, 65, 208, 27, 217, 75, 188, 29, 216, 214, 87, 97, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1161, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11769459125177078256" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f51" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87b9" + } + } + ] + } + ] + }, + "cborHex": "9fbf4206f81ba35584b792a8d1f0424f514287b9ffff", + "cborBytes": [159, 191, 66, 6, 248, 27, 163, 85, 132, 183, 146, 168, 209, 240, 66, 79, 81, 66, 135, 185, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1162, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "564635210570858852" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15608809951582605855" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1631369923235108031" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6823518bb3e8515dbb4f5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3760230005620599811" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14ab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6348382351196513918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18cbbb2e34b11a4c69225935" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16544832303607850645" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4172231930447310314" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10955224914388736124" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01360d2e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9302767464124746609" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bb339fda224727bc748" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a3974eb678288a3ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91d9119074a7c80abbfdf04e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8da702" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96a03f37cf491a82bb814cab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9fcef1849d7c37332ea99758" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "821cbafe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db762d0dd3fea1a7c0acc0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1395598824326549799" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6087251505969778805" + } + } + ] + }, + "cborHex": "9fd8669f1b07d5fcbb81c1016480ffd8669f1bd89da1f3b2a9d21f9fbf1b16a3ca4d43af54bf4ba6823518bb3e8515dbb4f51b342f05447ec7ec034214ab1b5819fc1cfd6d667e4c18cbbb2e34b11a4c692259351be59b0d5264f426951b39e6bed5d6daadeaff1b9808c70430a6587cbf4401360d2e1b811a11b86f378b714a5bb339fda224727bc748419f496a3974eb678288a3ea4c91d9119074a7c80abbfdf04e438da7024c96a03f37cf491a82bb814cab4c9fcef1849d7c37332ea9975844821cbafe4bdb762d0dd3fea1a7c0acc01b135e29bc8cefd127ffffff1b547a42fe37ca5075ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 7, 213, 252, 187, 129, 193, 1, 100, 128, 255, 216, 102, 159, 27, 216, 157, 161, 243, 178, + 169, 210, 31, 159, 191, 27, 22, 163, 202, 77, 67, 175, 84, 191, 75, 166, 130, 53, 24, 187, 62, 133, 21, 219, 180, + 245, 27, 52, 47, 5, 68, 126, 199, 236, 3, 66, 20, 171, 27, 88, 25, 252, 28, 253, 109, 102, 126, 76, 24, 203, 187, + 46, 52, 177, 26, 76, 105, 34, 89, 53, 27, 229, 155, 13, 82, 100, 244, 38, 149, 27, 57, 230, 190, 213, 214, 218, + 173, 234, 255, 27, 152, 8, 199, 4, 48, 166, 88, 124, 191, 68, 1, 54, 13, 46, 27, 129, 26, 17, 184, 111, 55, 139, + 113, 74, 91, 179, 57, 253, 162, 36, 114, 123, 199, 72, 65, 159, 73, 106, 57, 116, 235, 103, 130, 136, 163, 234, + 76, 145, 217, 17, 144, 116, 167, 200, 10, 187, 253, 240, 78, 67, 141, 167, 2, 76, 150, 160, 63, 55, 207, 73, 26, + 130, 187, 129, 76, 171, 76, 159, 206, 241, 132, 157, 124, 55, 51, 46, 169, 151, 88, 68, 130, 28, 186, 254, 75, + 219, 118, 45, 13, 211, 254, 161, 167, 192, 172, 192, 27, 19, 94, 41, 188, 140, 239, 209, 39, 255, 255, 255, 27, + 84, 122, 66, 254, 55, 202, 80, 117, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1163, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6392942356611514471" + } + } + ] + }, + "cborHex": "9fa01b58b84b33bb60c067ff", + "cborBytes": [159, 160, 27, 88, 184, 75, 51, 187, 96, 192, 103, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1164, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "ByteArray", + "bytearray": "20" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd87c9f9f0d4120ffffff", + "cborBytes": [159, 216, 124, 159, 159, 13, 65, 32, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1165, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4448764723197936592" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3968496744732704755" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16640939549679667630" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6823494469682438001" + } + } + ] + }, + "cborHex": "9fd8669f1b3dbd2ff1f78083d09f1b3712eec36a163ff3ffff9fd8669f1be6f07e5a5b67c9ae80ffff1b5eb1ec1158439f71ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 61, 189, 47, 241, 247, 128, 131, 208, 159, 27, 55, 18, 238, 195, 106, 22, 63, 243, 255, + 255, 159, 216, 102, 159, 27, 230, 240, 126, 90, 91, 103, 201, 174, 128, 255, 255, 27, 94, 177, 236, 17, 88, 67, + 159, 113, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1166, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3837" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fe86173f32451d76b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ec400dfa438" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ce77b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9963761544938329593" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44b6291fb05ba18c2979" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3913116170675271151" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "680a0c06b06e8a0fc0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15240052230097196052" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be19c3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3330b04e1589cda58e72" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf91" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17740658403186538444" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15951133519213421605" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fcfba6542c011ea06b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9586263766997311272" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "45305df18e" + }, + { + "_tag": "ByteArray", + "bytearray": "9f05d30f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4389931412357375290" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d000" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13939032003486759307" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4915592752055528677" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12440022746777834550" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4990014912172839037" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18302342325509346541" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6585551317843240497" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "700187794080bddab359f7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13724263558727748642" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3fb" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0db47c6164" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c065847d6da17946d14b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45f68696a6d0738f7927c497" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fad19383507ecc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17698659349194871163" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe32c4b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ccc816" + } + } + ] + } + ] + }, + "cborHex": "9f4238379fbf491fe86173f32451d76b460ec400dfa438433ce77b1b8a466455b8bf15f94a44b6291fb05ba18c29791b364e2e6cb5efb5ef49680a0c06b06e8a0fc01bd37f8ac20d57d41443be19c34a3330b04e1589cda58e7242cf911bf6337ad2db7b77ccff1bdd5dcf6c498ae425ff9f49fcfba6542c011ea06bd8669f1b8509401b1b129f289f4545305df18e449f05d30f1b3cec2b5c55e3e53a42d000ffff1bc17163c148a1398b80ffbf1b4437b19066c12ce51baca3d6c73378d4361b4540181fd7f6d07d1bfdfefb600594d4ed1b5b6494082626e6314b700187794080bddab359f71bbe7660fe0dce4c2242a3fbffbf450db47c61644ac065847d6da17946d14b4c45f68696a6d0738f7927c49747fad19383507ecc416f1bf59e44e81568117b44fe32c4b743ccc816ffff", + "cborBytes": [ + 159, 66, 56, 55, 159, 191, 73, 31, 232, 97, 115, 243, 36, 81, 215, 107, 70, 14, 196, 0, 223, 164, 56, 67, 60, 231, + 123, 27, 138, 70, 100, 85, 184, 191, 21, 249, 74, 68, 182, 41, 31, 176, 91, 161, 140, 41, 121, 27, 54, 78, 46, + 108, 181, 239, 181, 239, 73, 104, 10, 12, 6, 176, 110, 138, 15, 192, 27, 211, 127, 138, 194, 13, 87, 212, 20, 67, + 190, 25, 195, 74, 51, 48, 176, 78, 21, 137, 205, 165, 142, 114, 66, 207, 145, 27, 246, 51, 122, 210, 219, 123, + 119, 204, 255, 27, 221, 93, 207, 108, 73, 138, 228, 37, 255, 159, 73, 252, 251, 166, 84, 44, 1, 30, 160, 107, 216, + 102, 159, 27, 133, 9, 64, 27, 27, 18, 159, 40, 159, 69, 69, 48, 93, 241, 142, 68, 159, 5, 211, 15, 27, 60, 236, + 43, 92, 85, 227, 229, 58, 66, 208, 0, 255, 255, 27, 193, 113, 99, 193, 72, 161, 57, 139, 128, 255, 191, 27, 68, + 55, 177, 144, 102, 193, 44, 229, 27, 172, 163, 214, 199, 51, 120, 212, 54, 27, 69, 64, 24, 31, 215, 246, 208, 125, + 27, 253, 254, 251, 96, 5, 148, 212, 237, 27, 91, 100, 148, 8, 38, 38, 230, 49, 75, 112, 1, 135, 121, 64, 128, 189, + 218, 179, 89, 247, 27, 190, 118, 96, 254, 13, 206, 76, 34, 66, 163, 251, 255, 191, 69, 13, 180, 124, 97, 100, 74, + 192, 101, 132, 125, 109, 161, 121, 70, 209, 75, 76, 69, 246, 134, 150, 166, 208, 115, 143, 121, 39, 196, 151, 71, + 250, 209, 147, 131, 80, 126, 204, 65, 111, 27, 245, 158, 68, 232, 21, 104, 17, 123, 68, 254, 50, 196, 183, 67, + 204, 200, 22, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1167, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4612df0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13589058965676463018" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17123579580236890524" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc3d7d89fa4843" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4599975978467574275" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6890915487055177501" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa8f12" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ec423d375" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3155577303460358640" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8720433583308708656" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6169771152183991247" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4155367106123364986" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12870658701801348333" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15505068732827119446" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14235269887545512060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5792691620285619204" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15367542740522846883" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16221360730421853094" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64f8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb9cedef19cc9f6a4bea" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5612199463989455434" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "125931861195382963" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8820910945010749078" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4589712614357738285" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11151681641091134441" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12353982275820776349" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1035c436aff7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13244395255742091402" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f22900c8664" + } + } + ] + } + ] + }, + "cborHex": "9fbf444612df0f1bbc960921a0fb93aa41c21beda32ce75327019c47cc3d7d89fa48431b3fd665c7dbe3c20341f91b5fa173203729671d43fa8f12459ec423d375ffbf1b2bcadcd6aa0a29f01b7905342424809b301b559f6e2c8f611bcf1b39aad45defd37a7a1bb29dc3e5ca28dced1bd72d11dcf62d2f561bc58dd68a80f7107c1b5063c65670819c041bd5447ab3a77f4aa341f21be11dd9a3ce43fba64264f8ff9f4acb9cedef19cc9f6a4beaffbf1b4de289ad83baaa4a1b01bf665c4c7460b31b7a6a2bc4f0b88e961b3fb1ef4e2fec232d1b9ac2bb5e517b73e941421bab72296cf7c4eb9d461035c436aff71bb7cd8b503360508a464f22900c8664ffff", + "cborBytes": [ + 159, 191, 68, 70, 18, 223, 15, 27, 188, 150, 9, 33, 160, 251, 147, 170, 65, 194, 27, 237, 163, 44, 231, 83, 39, 1, + 156, 71, 204, 61, 125, 137, 250, 72, 67, 27, 63, 214, 101, 199, 219, 227, 194, 3, 65, 249, 27, 95, 161, 115, 32, + 55, 41, 103, 29, 67, 250, 143, 18, 69, 158, 196, 35, 211, 117, 255, 191, 27, 43, 202, 220, 214, 170, 10, 41, 240, + 27, 121, 5, 52, 36, 36, 128, 155, 48, 27, 85, 159, 110, 44, 143, 97, 27, 207, 27, 57, 170, 212, 93, 239, 211, 122, + 122, 27, 178, 157, 195, 229, 202, 40, 220, 237, 27, 215, 45, 17, 220, 246, 45, 47, 86, 27, 197, 141, 214, 138, + 128, 247, 16, 124, 27, 80, 99, 198, 86, 112, 129, 156, 4, 27, 213, 68, 122, 179, 167, 127, 74, 163, 65, 242, 27, + 225, 29, 217, 163, 206, 67, 251, 166, 66, 100, 248, 255, 159, 74, 203, 156, 237, 239, 25, 204, 159, 106, 75, 234, + 255, 191, 27, 77, 226, 137, 173, 131, 186, 170, 74, 27, 1, 191, 102, 92, 76, 116, 96, 179, 27, 122, 106, 43, 196, + 240, 184, 142, 150, 27, 63, 177, 239, 78, 47, 236, 35, 45, 27, 154, 194, 187, 94, 81, 123, 115, 233, 65, 66, 27, + 171, 114, 41, 108, 247, 196, 235, 157, 70, 16, 53, 196, 54, 175, 247, 27, 183, 205, 139, 80, 51, 96, 80, 138, 70, + 79, 34, 144, 12, 134, 100, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1168, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1191623431932162105" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7637739551499536757" + } + }, + { + "_tag": "ByteArray", + "bytearray": "480fcf" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15688731066006872370" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30366e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "36255893267557568" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b10897f32a65930399f1b69feb3a7d614c97543480fcfd8669f1bd9b991c835f9a13280ffffffbf410e4330366eff41f59fd8669f1b0080ce8af73a2cc080ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 16, 137, 127, 50, 166, 89, 48, 57, 159, 27, 105, 254, 179, 167, 214, 20, 201, 117, 67, 72, + 15, 207, 216, 102, 159, 27, 217, 185, 145, 200, 53, 249, 161, 50, 128, 255, 255, 255, 191, 65, 14, 67, 48, 54, + 110, 255, 65, 245, 159, 216, 102, 159, 27, 0, 128, 206, 138, 247, 58, 44, 192, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1169, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9700937452731757842" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3050741216557419378" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13584291893048437686" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a147c0aee539" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79ba3e22ca63775f45992d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3511860497448332708" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11830335851680881017" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6473604259238406933" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5eca2d2ab7a131" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1500932114517453076" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12569229553703774461" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8884043719789906054" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2629126288424707286" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be8ab922" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8217723712677410329" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16303718150062804917" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12669819436277194309" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3288584301134292920" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15999639998752521819" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c82f869988d45d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17484273889969956594" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b86a0a7372a5bf5129fbf1b2a5668f9128c4b721bbc8519810a5eebb6412246a147c0aee5394b79ba3e22ca63775f45992d1b30bca2840b226da4ffd8669f1ba42dcbc6fd01d9799f1b59d6dcc6705c6b15475eca2d2ab7a1311b14d461ce4dc9e9141bae6edfaf38dae8fdffff1b7b4a76b1871e0886bf1b247c886dfb3224d644be8ab9221b720b382d6470f6191be2427146d4950fb51bafd43da653a45e451b2da365ff8b0927b81bde0a23cf23c67e5b47c82f869988d45d1bf2a49e779f4be6f24126ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 134, 160, 167, 55, 42, 91, 245, 18, 159, 191, 27, 42, 86, 104, 249, 18, 140, 75, 114, 27, + 188, 133, 25, 129, 10, 94, 235, 182, 65, 34, 70, 161, 71, 192, 174, 229, 57, 75, 121, 186, 62, 34, 202, 99, 119, + 95, 69, 153, 45, 27, 48, 188, 162, 132, 11, 34, 109, 164, 255, 216, 102, 159, 27, 164, 45, 203, 198, 253, 1, 217, + 121, 159, 27, 89, 214, 220, 198, 112, 92, 107, 21, 71, 94, 202, 45, 42, 183, 161, 49, 27, 20, 212, 97, 206, 77, + 201, 233, 20, 27, 174, 110, 223, 175, 56, 218, 232, 253, 255, 255, 27, 123, 74, 118, 177, 135, 30, 8, 134, 191, + 27, 36, 124, 136, 109, 251, 50, 36, 214, 68, 190, 138, 185, 34, 27, 114, 11, 56, 45, 100, 112, 246, 25, 27, 226, + 66, 113, 70, 212, 149, 15, 181, 27, 175, 212, 61, 166, 83, 164, 94, 69, 27, 45, 163, 101, 255, 139, 9, 39, 184, + 27, 222, 10, 35, 207, 35, 198, 126, 91, 71, 200, 47, 134, 153, 136, 212, 93, 27, 242, 164, 158, 119, 159, 75, 230, + 242, 65, 38, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1170, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "89059907" + } + ] + }, + "cborHex": "9fa04489059907ff", + "cborBytes": [159, 160, 68, 137, 5, 153, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1171, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5ee8cbc3f7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3913589750756441535" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3271831923259700476" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7610203200862006442" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f455ee8cbc3f7d8669f1b364fdd24aa727dbf9f9f1b2d67e1cc9ead74fc1b699cdf7d97ebacaaffffffa0ff", + "cborBytes": [ + 159, 69, 94, 232, 203, 195, 247, 216, 102, 159, 27, 54, 79, 221, 36, 170, 114, 125, 191, 159, 159, 27, 45, 103, + 225, 204, 158, 173, 116, 252, 27, 105, 156, 223, 125, 151, 235, 172, 170, 255, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1172, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb957ec4de" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ef5ddec1e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "018bf488971dde" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4137ebb728c811446" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12007221087498854922" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9263fb35" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c4e2e8" + }, + { + "_tag": "ByteArray", + "bytearray": "ee1cdd9402cdd50eda69" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2465794124566304468" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10324720464047092103" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2842009301611334331" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3213228623226185806" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8733895488276005853" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18004619652879341038" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2036" + } + } + ] + } + ] + }, + "cborHex": "9f9f45cb957ec4debf450ef5ddec1e47018bf488971dde49b4137ebb728c8114461ba6a237f64bf2e20aff449263fb359f43c4e2e84aee1cdd9402cdd50eda69ffffbf1b223842b1240516d41b8f48c68f30bbb1871b2770d866f6e64abb1b2c97ae688d83a84e1b793507ac241403dd412b1bf9dd422e85e3d5ee422036ffff", + "cborBytes": [ + 159, 159, 69, 203, 149, 126, 196, 222, 191, 69, 14, 245, 221, 236, 30, 71, 1, 139, 244, 136, 151, 29, 222, 73, + 180, 19, 126, 187, 114, 140, 129, 20, 70, 27, 166, 162, 55, 246, 75, 242, 226, 10, 255, 68, 146, 99, 251, 53, 159, + 67, 196, 226, 232, 74, 238, 28, 221, 148, 2, 205, 213, 14, 218, 105, 255, 255, 191, 27, 34, 56, 66, 177, 36, 5, + 22, 212, 27, 143, 72, 198, 143, 48, 187, 177, 135, 27, 39, 112, 216, 102, 246, 230, 74, 187, 27, 44, 151, 174, + 104, 141, 131, 168, 78, 27, 121, 53, 7, 172, 36, 20, 3, 221, 65, 43, 27, 249, 221, 66, 46, 133, 227, 213, 238, 66, + 32, 54, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1173, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2500568825905945628" + } + } + ] + }, + "cborHex": "9f1b22b3ce193c8a1c1cff", + "cborBytes": [159, 27, 34, 179, 206, 25, 60, 138, 28, 28, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1174, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16146744154004920634" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11823999763605967818" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2e78097344d94a6ff2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "495656331629827610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d44f965a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2083468451895048837" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2747706406773140738" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4119052778006866140" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddcab90cd702" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17594136113186848805" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5881048752224569513" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1036755518861203996" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9841460736091303620" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2156863138749416732" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1a5165c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2432092698701615410" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d68" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2505239315061870009" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9312097602125379757" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6680439178284011825" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8903846816989456317" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11277424667533959590" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bfc882" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17806812219723532384" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17782227370338845990" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "63abd113c24591f0e17f8b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6719823286986433877" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15042765879931486580" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "620166396111322435" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "50a441" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12001332059247125161" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16126981577458876065" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bbf2222637c52e94" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14757149012788292097" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5286598031333531803" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5651066eadf266bc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12503149733460047925" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ffbfc393e3e85fcd88534" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15317999666114222885" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15474974217395622649" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1be014c2424a94193a9f1ba4174923860953ca492e78097344d94a6ff2bf1b06e0ecceb978161a44d44f965a1b1ce9f784afeffa851b2621d06b42c72d021b3929d0ad8c2f68dc46ddcab90cd7021bf42aed93c45fc0251b519daeae571988a9ff1b0e634ba6c4a5da1c1b8893e465adad2ec4ffffbf1b1deeb798de4b051c44c1a5165c1b21c0876c76ee5132426d681b22c465e23b9b0db91b813b376e787338ad1b5cb5b009c53891311b7b90d181652627bd1b9c8175fc1996e1a643bfc8821bf71e815e8ab4c8601bf6c729943c468526ff4b63abd113c24591f0e17f8bd8669f1b5d419bad263965559fd8669f1bd0c2a3de28aec1749f1b089b460d2dd97d43ffff9f4350a4411ba68d4bec0eeea2a91bdfce8c4cdfb47ea148bbf2222637c52e941bcccbecd724c0aa01ff1b495dc4e65fea209bbf485651066eadf266bc1bad841c702467f8354b5ffbfc393e3e85fcd885341bd4947789c04a5b25ff1bd6c2270f9031d2f9ffff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 224, 20, 194, 66, 74, 148, 25, 58, 159, 27, 164, 23, 73, 35, 134, 9, 83, 202, 73, 46, 120, + 9, 115, 68, 217, 74, 111, 242, 191, 27, 6, 224, 236, 206, 185, 120, 22, 26, 68, 212, 79, 150, 90, 27, 28, 233, + 247, 132, 175, 239, 250, 133, 27, 38, 33, 208, 107, 66, 199, 45, 2, 27, 57, 41, 208, 173, 140, 47, 104, 220, 70, + 221, 202, 185, 12, 215, 2, 27, 244, 42, 237, 147, 196, 95, 192, 37, 27, 81, 157, 174, 174, 87, 25, 136, 169, 255, + 27, 14, 99, 75, 166, 196, 165, 218, 28, 27, 136, 147, 228, 101, 173, 173, 46, 196, 255, 255, 191, 27, 29, 238, + 183, 152, 222, 75, 5, 28, 68, 193, 165, 22, 92, 27, 33, 192, 135, 108, 118, 238, 81, 50, 66, 109, 104, 27, 34, + 196, 101, 226, 59, 155, 13, 185, 27, 129, 59, 55, 110, 120, 115, 56, 173, 27, 92, 181, 176, 9, 197, 56, 145, 49, + 27, 123, 144, 209, 129, 101, 38, 39, 189, 27, 156, 129, 117, 252, 25, 150, 225, 166, 67, 191, 200, 130, 27, 247, + 30, 129, 94, 138, 180, 200, 96, 27, 246, 199, 41, 148, 60, 70, 133, 38, 255, 75, 99, 171, 209, 19, 194, 69, 145, + 240, 225, 127, 139, 216, 102, 159, 27, 93, 65, 155, 173, 38, 57, 101, 85, 159, 216, 102, 159, 27, 208, 194, 163, + 222, 40, 174, 193, 116, 159, 27, 8, 155, 70, 13, 45, 217, 125, 67, 255, 255, 159, 67, 80, 164, 65, 27, 166, 141, + 75, 236, 14, 238, 162, 169, 27, 223, 206, 140, 76, 223, 180, 126, 161, 72, 187, 242, 34, 38, 55, 197, 46, 148, 27, + 204, 203, 236, 215, 36, 192, 170, 1, 255, 27, 73, 93, 196, 230, 95, 234, 32, 155, 191, 72, 86, 81, 6, 110, 173, + 242, 102, 188, 27, 173, 132, 28, 112, 36, 103, 248, 53, 75, 95, 251, 252, 57, 62, 62, 133, 252, 216, 133, 52, 27, + 212, 148, 119, 137, 192, 74, 91, 37, 255, 27, 214, 194, 39, 15, 144, 49, 210, 249, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1175, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d3da320e39a2" + }, + { + "_tag": "ByteArray", + "bytearray": "73fdf90201" + } + ] + }, + "cborHex": "9f46d3da320e39a24573fdf90201ff", + "cborBytes": [159, 70, 211, 218, 50, 14, 57, 162, 69, 115, 253, 249, 2, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1176, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "45fcfcfd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "606ffd88001cc1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc43fd51eb82fc030240dc" + } + } + ] + } + ] + }, + "cborHex": "9fbf4445fcfcfd1bfffffffffffffff547606ffd88001cc14bfc43fd51eb82fc030240dcffff", + "cborBytes": [ + 159, 191, 68, 69, 252, 252, 253, 27, 255, 255, 255, 255, 255, 255, 255, 245, 71, 96, 111, 253, 136, 0, 28, 193, + 75, 252, 67, 253, 81, 235, 130, 252, 3, 2, 64, 220, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1177, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "ByteArray", + "bytearray": "a319cb1d4c3d6c93e9e8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5cb005a" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9129944279244196981" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "072a37fbe85fea6ee7ed99" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12981876535590618801" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c99e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15938357585444265732" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11142982761943537868" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16617744683205345307" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8706193488121866836" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3443739421cfa3f2965a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3442930125893825515" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35a70fd252" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3237320451034608727" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4fd3d8f3e88da1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f7f1f8b59ce61" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f41004aa319cb1d4c3d6c93e9e8bf41ee44b5cb005affbf1b7eb413f30f75cc754b072a37fbe85fea6ee7ed991bb428e3ed9ddb86b142c99e1bdd306bc7678edf041b9aa3d3c8aff218cc1be69e16beaa97401b1b78d29cd99d52aa54ffd905079fa0bf4a3443739421cfa3f2965a1b2fc7beb5446473eb4535a70fd2521b2ced45cc54067457474fd3d8f3e88da1470f7f1f8b59ce61ffffff", + "cborBytes": [ + 159, 65, 0, 74, 163, 25, 203, 29, 76, 61, 108, 147, 233, 232, 191, 65, 238, 68, 181, 203, 0, 90, 255, 191, 27, + 126, 180, 19, 243, 15, 117, 204, 117, 75, 7, 42, 55, 251, 232, 95, 234, 110, 231, 237, 153, 27, 180, 40, 227, 237, + 157, 219, 134, 177, 66, 201, 158, 27, 221, 48, 107, 199, 103, 142, 223, 4, 27, 154, 163, 211, 200, 175, 242, 24, + 204, 27, 230, 158, 22, 190, 170, 151, 64, 27, 27, 120, 210, 156, 217, 157, 82, 170, 84, 255, 217, 5, 7, 159, 160, + 191, 74, 52, 67, 115, 148, 33, 207, 163, 242, 150, 90, 27, 47, 199, 190, 181, 68, 100, 115, 235, 69, 53, 167, 15, + 210, 82, 27, 44, 237, 69, 204, 84, 6, 116, 87, 71, 79, 211, 216, 243, 232, 141, 161, 71, 15, 127, 31, 139, 89, + 206, 97, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1178, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f1c2b71460d6a2d00" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "541f01308e3b73557c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11045170054418499273" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a49d9956561dc23d4a687e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7dda25fdb3a51e67b387e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa959a778c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15824161386914783047" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11095801230928557535" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f5c88aa81" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85bda3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6119" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c805e3bfd6e6213e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5263238604854439900" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e442efb20189" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bde3" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01521037" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6515390118264951561" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3185920873258844281" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a96dc1b6875" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7101748563783282891" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10633662643121992058" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7264516138538955296" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8252535672867845686" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf413e495f1c2b71460d6a2d0049541f01308e3b73557c1b994853a5096586c94ba49d9956561dc23d4a687e4bf7dda25fdb3a51e67b387e45fa959a778c1bdb9ab6f0ff821f47ffbf1b99fc346e73d6b5df455f5c88aa814385bda342611948c805e3bfd6e6213e1b490ac7a01278afdc46e442efb2018942bde3ffbf44015210371b5a6b50cae445d309ffbf1b2c36aa278d188079461a96dc1b68751b628e7ab12c7170cb1b93925bd598a0b17a1b64d0bef05eb4f2201b7286e5787d86f636ffff", + "cborBytes": [ + 159, 191, 65, 62, 73, 95, 28, 43, 113, 70, 13, 106, 45, 0, 73, 84, 31, 1, 48, 142, 59, 115, 85, 124, 27, 153, 72, + 83, 165, 9, 101, 134, 201, 75, 164, 157, 153, 86, 86, 29, 194, 61, 74, 104, 126, 75, 247, 221, 162, 95, 219, 58, + 81, 230, 123, 56, 126, 69, 250, 149, 154, 119, 140, 27, 219, 154, 182, 240, 255, 130, 31, 71, 255, 191, 27, 153, + 252, 52, 110, 115, 214, 181, 223, 69, 95, 92, 136, 170, 129, 67, 133, 189, 163, 66, 97, 25, 72, 200, 5, 227, 191, + 214, 230, 33, 62, 27, 73, 10, 199, 160, 18, 120, 175, 220, 70, 228, 66, 239, 178, 1, 137, 66, 189, 227, 255, 191, + 68, 1, 82, 16, 55, 27, 90, 107, 80, 202, 228, 69, 211, 9, 255, 191, 27, 44, 54, 170, 39, 141, 24, 128, 121, 70, + 26, 150, 220, 27, 104, 117, 27, 98, 142, 122, 177, 44, 113, 112, 203, 27, 147, 146, 91, 213, 152, 160, 177, 122, + 27, 100, 208, 190, 240, 94, 180, 242, 32, 27, 114, 134, 229, 120, 125, 134, 246, 54, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1179, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7257257142368161799" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd4cf210030d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8266390621484148695" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4502" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80b604" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10759805182007147327" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd7eac7d5f2effaca676" + } + ] + }, + "cborHex": "9f061b64b6f4eb9e855007bf1046cd4cf210030d1b72b81e79182ee7d7415b1bffffffffffffffed4245021bfffffffffffffff54380b604ff1b955281ce1df17b3f4afd7eac7d5f2effaca676ff", + "cborBytes": [ + 159, 6, 27, 100, 182, 244, 235, 158, 133, 80, 7, 191, 16, 70, 205, 76, 242, 16, 3, 13, 27, 114, 184, 30, 121, 24, + 46, 231, 215, 65, 91, 27, 255, 255, 255, 255, 255, 255, 255, 237, 66, 69, 2, 27, 255, 255, 255, 255, 255, 255, + 255, 245, 67, 128, 182, 4, 255, 27, 149, 82, 129, 206, 29, 241, 123, 63, 74, 253, 126, 172, 125, 95, 46, 255, 172, + 166, 118, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1180, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2657309098413272164" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "87571144176969275" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17027661187010529320" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bd847ef" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b24e0a88bc5562c641b01371d7ddd3e263b1bec4e67a217780828447bd847efffff", + "cborBytes": [ + 159, 191, 27, 36, 224, 168, 139, 197, 86, 44, 100, 27, 1, 55, 29, 125, 221, 62, 38, 59, 27, 236, 78, 103, 162, 23, + 120, 8, 40, 68, 123, 216, 71, 239, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1181, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + }, + "cborHex": "9f1403ff", + "cborBytes": [159, 20, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1182, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7d04ff" + } + ] + }, + "cborHex": "9f437d04ffff", + "cborBytes": [159, 67, 125, 4, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1183, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11498630673787106919" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11839547031896809121" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "411043d3630c163796" + }, + { + "_tag": "ByteArray", + "bytearray": "48d95f6337" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf1b9f9357acea7db6671ba44e854c01bd5ea1ff49411043d3630c1637964548d95f633780ff", + "cborBytes": [ + 159, 191, 27, 159, 147, 87, 172, 234, 125, 182, 103, 27, 164, 78, 133, 76, 1, 189, 94, 161, 255, 73, 65, 16, 67, + 211, 99, 12, 22, 55, 150, 69, 72, 217, 95, 99, 55, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1184, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3195146210757807760" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58060c7c0a8d96593e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3412675294572968743" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16395290427930764292" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6981994403336198297" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e5fa30fff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8273039074625796938" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a31397898157cb048" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b2c57708cd1a78e904958060c7c0a8d96593e1b2f5c42196ac5fb271be387c5c73a2ce4041b60e506eaea9e9899451e5fa30fff1b72cfbd34b7ff3b4a495a31397898157cb048ffff", + "cborBytes": [ + 159, 191, 27, 44, 87, 112, 140, 209, 167, 142, 144, 73, 88, 6, 12, 124, 10, 141, 150, 89, 62, 27, 47, 92, 66, 25, + 106, 197, 251, 39, 27, 227, 135, 197, 199, 58, 44, 228, 4, 27, 96, 229, 6, 234, 234, 158, 152, 153, 69, 30, 95, + 163, 15, 255, 27, 114, 207, 189, 52, 183, 255, 59, 74, 73, 90, 49, 57, 120, 152, 21, 124, 176, 72, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1185, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "981820940264188648" + } + } + ] + }, + "cborHex": "9f1b0da020f1797caae8ff", + "cborBytes": [159, 27, 13, 160, 32, 241, 121, 124, 170, 232, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1186, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3836647587991300245" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "49542711faf0dc8e" + }, + { + "_tag": "ByteArray", + "bytearray": "8140a5e10bdd92824486" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5830141007750823772" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "db4e2c54e49251a1bd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5770700222737073919" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85ddc01cdf716300c24ab8" + }, + { + "_tag": "ByteArray", + "bytearray": "079df0d5" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8287310399744564668" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16821796313937556785" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5712963873479209328" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8649824456849642098" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17478438875000290257" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4313551767382820554" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b353e82a76294a8959f4849542711faf0dc8e4a8140a5e10bdd928244861b50e8d25b6d6cff5cffff9f49db4e2c54e49251a1bd1b5015a5473182c6ff4b85ddc01cdf716300c24ab844079df0d5ff9f1b730270e6882cddbcff1be973069f303935319f1b4f48865fd55e3170ffff1b780a5983c802527280d8669f1bf28fe38d54c53bd19fd8669f1b3bdcd07a6f1c86ca80ffffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 53, 62, 130, 167, 98, 148, 168, 149, 159, 72, 73, 84, 39, 17, 250, 240, 220, 142, 74, + 129, 64, 165, 225, 11, 221, 146, 130, 68, 134, 27, 80, 232, 210, 91, 109, 108, 255, 92, 255, 255, 159, 73, 219, + 78, 44, 84, 228, 146, 81, 161, 189, 27, 80, 21, 165, 71, 49, 130, 198, 255, 75, 133, 221, 192, 28, 223, 113, 99, + 0, 194, 74, 184, 68, 7, 157, 240, 213, 255, 159, 27, 115, 2, 112, 230, 136, 44, 221, 188, 255, 27, 233, 115, 6, + 159, 48, 57, 53, 49, 159, 27, 79, 72, 134, 95, 213, 94, 49, 112, 255, 255, 27, 120, 10, 89, 131, 200, 2, 82, 114, + 128, 216, 102, 159, 27, 242, 143, 227, 141, 84, 197, 59, 209, 159, 216, 102, 159, 27, 59, 220, 208, 122, 111, 28, + 134, 202, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1187, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "96" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17721122300273162839" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a38d985da7d2a7dd551aabcc" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5470125269686072819" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b35ec3b53ac35f06fac51a6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6627643708650205561" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18335506767676278916" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10788143109827355060" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15450582401179770042" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5772087780343065489" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c9f748c481a878" + }, + { + "_tag": "ByteArray", + "bytearray": "e388c3dc080d47" + }, + { + "_tag": "ByteArray", + "bytearray": "d66995db9dcd7abd52cab8fd" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1394626738948617887" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9c4efc3b1f89f71bf1" + }, + { + "_tag": "ByteArray", + "bytearray": "b0f2644d3f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6841756122536111378" + } + }, + { + "_tag": "ByteArray", + "bytearray": "89b501" + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf41961bf5ee12d77108fa57ff9fbf41d24ca38d985da7d2a7dd551aabccffbf1b4be9c9f36886b5f34c2b35ec3b53ac35f06fac51a61b5bfa1ed697f2b1791bfe74ce42701d8884ffd8669f1b95b72f00175661b49f1bd66b7ed54b38dcba1b501a93411fb8ab9147c9f748c481a87847e388c3dc080d474cd66995db9dcd7abd52cab8fdffffd8669f1b135ab5a1494b369f9f499c4efc3b1f89f71bf145b0f2644d3f1b5ef2ccf1bb9e6d124389b501ffffffff", + "cborBytes": [ + 159, 191, 65, 150, 27, 245, 238, 18, 215, 113, 8, 250, 87, 255, 159, 191, 65, 210, 76, 163, 141, 152, 93, 167, + 210, 167, 221, 85, 26, 171, 204, 255, 191, 27, 75, 233, 201, 243, 104, 134, 181, 243, 76, 43, 53, 236, 59, 83, + 172, 53, 240, 111, 172, 81, 166, 27, 91, 250, 30, 214, 151, 242, 177, 121, 27, 254, 116, 206, 66, 112, 29, 136, + 132, 255, 216, 102, 159, 27, 149, 183, 47, 0, 23, 86, 97, 180, 159, 27, 214, 107, 126, 213, 75, 56, 220, 186, 27, + 80, 26, 147, 65, 31, 184, 171, 145, 71, 201, 247, 72, 196, 129, 168, 120, 71, 227, 136, 195, 220, 8, 13, 71, 76, + 214, 105, 149, 219, 157, 205, 122, 189, 82, 202, 184, 253, 255, 255, 216, 102, 159, 27, 19, 90, 181, 161, 73, 75, + 54, 159, 159, 73, 156, 78, 252, 59, 31, 137, 247, 27, 241, 69, 176, 242, 100, 77, 63, 27, 94, 242, 204, 241, 187, + 158, 109, 18, 67, 137, 181, 1, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1188, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5938342782523590595" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18445515789270032177" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1209938203151771051" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dda16cc6d86bb15bb0e2f530" + }, + { + "_tag": "ByteArray", + "bytearray": "f8fa9124f150e6a70da8f6a5" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14029675147391647077" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19a68eae9e5d19" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17659290065249593733" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69098cdae90b62e69db81f74" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "366a6691d04e7b32c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3a6ac8dd8cd49b439ae3fec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78ab4e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72e177085e41529d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1828eb38d3710a4f2d7383c4" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6697450285755749577" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "401afadf727badc80a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4010421174985097164" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a8e1d585c4f09409" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5101488617058118205" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14460374709344523172" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12745984335178689546" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0180902d0b0e5334dbca" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8285868666632867178" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14981439650581256208" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e6981f6116bc" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15755567706937526903" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ce447bb4db3f81882939" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8408119780699092520" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5539709004855818411" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2324772429951931460" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7267398533152023610" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "85793c8be9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10164141187843192486" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6c2f8029dfc8a879" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8782483914806878914" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8900985561950343423" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0561" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8b547e6" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d5858375" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12994984038467671562" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d3c6fc3a34d533" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "315505641902332054" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b52693b4c4ad2c7c39fd8669f1bfffba2e1be4c9f319f1b10ca90629f0925ab4cdda16cc6d86bb15bb0e2f5304cf8fa9124f150e6a70da8f6a5ffff1bc2b36b36d267bd65bf4719a68eae9e5d191bf51266c05cc9698541334c69098cdae90b62e69db81f7449366a6691d04e7b32c44ce3a6ac8dd8cd49b439ae3fec4378ab4e4872e177085e41529d41db4c1828eb38d3710a4f2d7383c4ffd8669f1b5cf21f8cdf4f54c99f49401afadf727badc80a1b37a7e0cf7eb0ffccffff48a8e1d585c4f09409ffffbf1b46cc20de4d72aa3d1bc8ad922f0d85d3a41bb0e2d538c304ec0a4a0180902d0b0e5334dbcaff9f9f1b72fd51a6e2310d6a1bcfe8c3fcb4d9181046e6981f6116bcffd8669f1bdaa7055a56a08a779f4ace447bb4db3f818829391b74afa464758136281b4ce0fffd4176b8ab1b2043403536e814441b64dafc7629b8a43affff9f4585793c8be91b8d0e488ef44f76a6486c2f8029dfc8a879ffbf1b79e1a696c3a562c21b7b86a7358aee50ff42056144c8b547e6ff9f44d58583751bb4577521f2bc960a47d3c6fc3a34d5331b0460e6b5ae385896ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 82, 105, 59, 76, 74, 210, 199, 195, 159, 216, 102, 159, 27, 255, 251, 162, 225, 190, 76, + 159, 49, 159, 27, 16, 202, 144, 98, 159, 9, 37, 171, 76, 221, 161, 108, 198, 216, 107, 177, 91, 176, 226, 245, 48, + 76, 248, 250, 145, 36, 241, 80, 230, 167, 13, 168, 246, 165, 255, 255, 27, 194, 179, 107, 54, 210, 103, 189, 101, + 191, 71, 25, 166, 142, 174, 158, 93, 25, 27, 245, 18, 102, 192, 92, 201, 105, 133, 65, 51, 76, 105, 9, 140, 218, + 233, 11, 98, 230, 157, 184, 31, 116, 73, 54, 106, 102, 145, 208, 78, 123, 50, 196, 76, 227, 166, 172, 141, 216, + 205, 73, 180, 57, 174, 63, 236, 67, 120, 171, 78, 72, 114, 225, 119, 8, 94, 65, 82, 157, 65, 219, 76, 24, 40, 235, + 56, 211, 113, 10, 79, 45, 115, 131, 196, 255, 216, 102, 159, 27, 92, 242, 31, 140, 223, 79, 84, 201, 159, 73, 64, + 26, 250, 223, 114, 123, 173, 200, 10, 27, 55, 167, 224, 207, 126, 176, 255, 204, 255, 255, 72, 168, 225, 213, 133, + 196, 240, 148, 9, 255, 255, 191, 27, 70, 204, 32, 222, 77, 114, 170, 61, 27, 200, 173, 146, 47, 13, 133, 211, 164, + 27, 176, 226, 213, 56, 195, 4, 236, 10, 74, 1, 128, 144, 45, 11, 14, 83, 52, 219, 202, 255, 159, 159, 27, 114, + 253, 81, 166, 226, 49, 13, 106, 27, 207, 232, 195, 252, 180, 217, 24, 16, 70, 230, 152, 31, 97, 22, 188, 255, 216, + 102, 159, 27, 218, 167, 5, 90, 86, 160, 138, 119, 159, 74, 206, 68, 123, 180, 219, 63, 129, 136, 41, 57, 27, 116, + 175, 164, 100, 117, 129, 54, 40, 27, 76, 224, 255, 253, 65, 118, 184, 171, 27, 32, 67, 64, 53, 54, 232, 20, 68, + 27, 100, 218, 252, 118, 41, 184, 164, 58, 255, 255, 159, 69, 133, 121, 60, 139, 233, 27, 141, 14, 72, 142, 244, + 79, 118, 166, 72, 108, 47, 128, 41, 223, 200, 168, 121, 255, 191, 27, 121, 225, 166, 150, 195, 165, 98, 194, 27, + 123, 134, 167, 53, 138, 238, 80, 255, 66, 5, 97, 68, 200, 181, 71, 230, 255, 159, 68, 213, 133, 131, 117, 27, 180, + 87, 117, 33, 242, 188, 150, 10, 71, 211, 198, 252, 58, 52, 213, 51, 27, 4, 96, 230, 181, 174, 56, 88, 150, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1189, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6762185609461116656" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5224103961751062558" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "bed4c7fe18cde0f29c42" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15590639874789017535" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6b2c68f748a" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "097afb131737" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "727747c9351cdfc986bf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4962b8dee5e3d565" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8649ab50f736ded84bc97" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "acee33a7dfd8cc3e3205569c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15173551828814580679" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2ff7603b8c71ad3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a2c51cb9ea948" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3163210241366436503" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7904477301930333655" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2303956238202178012" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14647648791587827531" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d1f2f02fe6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4788" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15888682863048318645" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2050578253106737627" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2236978864495094247" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14901922257058955141" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8939402385042873510" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17698336049096038299" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7538291497859910858" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13575663264319763791" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7798320961963790156" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b3f8d4233f67" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9020f5ef0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3156e85ba2e7608976de" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b5dd81bfbf5302ef09fd8669f1b487fbedfede2081e80ff4abed4c7fe18cde0f29c42ffff9fbf1bd85d145d05d707bf46f6b2c68f748affbf46097afb1317374a727747c9351cdfc986bf484962b8dee5e3d5654bf8649ab50f736ded84bc974cacee33a7dfd8cc3e3205569c1bd29348fed178cbc748c2ff7603b8c71ad3473a2c51cb9ea948ffd8669f1b2be5faf482862a9780ffbf1b6db25839f4b215d71b1ff94bfde41609dcffff1bcb46e6f82945af4b9f45d1f2f02fe6bf4247881bdc7ff0e1d0d4deb5ffd8669f1b1c751e0e889171db9f1b1f0b586cdc4969e7ffffd8669f1bcece4356ca7c7f859f1b7c0f231b30c29ca61bf59d1edde9dc179b1b689d642d7f498cca1bbc6671cfdc19754f1b6c393398fe558f4cffff46b3f8d4233f67ffbf459020f5ef0e4a3156e85ba2e7608976deffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 93, 216, 27, 251, 245, 48, 46, 240, 159, 216, 102, 159, 27, 72, 127, 190, 223, 237, 226, + 8, 30, 128, 255, 74, 190, 212, 199, 254, 24, 205, 224, 242, 156, 66, 255, 255, 159, 191, 27, 216, 93, 20, 93, 5, + 215, 7, 191, 70, 246, 178, 198, 143, 116, 138, 255, 191, 70, 9, 122, 251, 19, 23, 55, 74, 114, 119, 71, 201, 53, + 28, 223, 201, 134, 191, 72, 73, 98, 184, 222, 229, 227, 213, 101, 75, 248, 100, 154, 181, 15, 115, 109, 237, 132, + 188, 151, 76, 172, 238, 51, 167, 223, 216, 204, 62, 50, 5, 86, 156, 27, 210, 147, 72, 254, 209, 120, 203, 199, 72, + 194, 255, 118, 3, 184, 199, 26, 211, 71, 58, 44, 81, 203, 158, 169, 72, 255, 216, 102, 159, 27, 43, 229, 250, 244, + 130, 134, 42, 151, 128, 255, 191, 27, 109, 178, 88, 57, 244, 178, 21, 215, 27, 31, 249, 75, 253, 228, 22, 9, 220, + 255, 255, 27, 203, 70, 230, 248, 41, 69, 175, 75, 159, 69, 209, 242, 240, 47, 230, 191, 66, 71, 136, 27, 220, 127, + 240, 225, 208, 212, 222, 181, 255, 216, 102, 159, 27, 28, 117, 30, 14, 136, 145, 113, 219, 159, 27, 31, 11, 88, + 108, 220, 73, 105, 231, 255, 255, 216, 102, 159, 27, 206, 206, 67, 86, 202, 124, 127, 133, 159, 27, 124, 15, 35, + 27, 48, 194, 156, 166, 27, 245, 157, 30, 221, 233, 220, 23, 155, 27, 104, 157, 100, 45, 127, 73, 140, 202, 27, + 188, 102, 113, 207, 220, 25, 117, 79, 27, 108, 57, 51, 152, 254, 85, 143, 76, 255, 255, 70, 179, 248, 212, 35, 63, + 103, 255, 191, 69, 144, 32, 245, 239, 14, 74, 49, 86, 232, 91, 162, 231, 96, 137, 118, 222, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1190, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be01f9023ff9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ede266733f4d3df6dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "730b349f" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16176825356867255830" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf418f46be01f9023ff949ede266733f4d3df6dc44730b349fff9f9f1be07fa0f41d9abe16ffffff", + "cborBytes": [ + 159, 191, 65, 143, 70, 190, 1, 249, 2, 63, 249, 73, 237, 226, 102, 115, 63, 77, 61, 246, 220, 68, 115, 11, 52, + 159, 255, 159, 159, 27, 224, 127, 160, 244, 29, 154, 190, 22, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1191, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16664862055244101077" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15695865422591223695" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3773074810592429863" + } + } + ] + }, + "cborHex": "9f1be7457bbeb9b5f5d51bd9d2ea710be2e78fa01b345ca78cb4560727ff", + "cborBytes": [ + 159, 27, 231, 69, 123, 190, 185, 181, 245, 213, 27, 217, 210, 234, 113, 11, 226, 231, 143, 160, 27, 52, 92, 167, + 140, 180, 86, 7, 39, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1192, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3286103410281840251" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "610776704548409369" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "195056611350562965" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f13499839" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9575355774378591962" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9710760798425461892" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1353347981518125857" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1391bfe16f8811e292" + }, + { + "_tag": "ByteArray", + "bytearray": "f6dd29fb" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ac92" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b2d9a95a4210c7e7b9f1b0879ea2d3fb11019bf1b02b4faf45ea44895451f13499839ffd8669f1b84e27f5829d246da9f1b86c38d7f10f034841b12c80ed19fe13b21491391bfe16f8811e29244f6dd29fbffff42ac92ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 45, 154, 149, 164, 33, 12, 126, 123, 159, 27, 8, 121, 234, 45, 63, 177, 16, 25, 191, 27, + 2, 180, 250, 244, 94, 164, 72, 149, 69, 31, 19, 73, 152, 57, 255, 216, 102, 159, 27, 132, 226, 127, 88, 41, 210, + 70, 218, 159, 27, 134, 195, 141, 127, 16, 240, 52, 132, 27, 18, 200, 14, 209, 159, 225, 59, 33, 73, 19, 145, 191, + 225, 111, 136, 17, 226, 146, 68, 246, 221, 41, 251, 255, 255, 66, 172, 146, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1193, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5888143567839200231" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "307652311802763918" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10079331479088811304" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2352644809278605817" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10061688052642300400" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5984617406033703190" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "923541299ed3c467e4bd37fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10342844695449491277" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3142953405933931771" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11737699246433832080" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11861284069205949873" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14942813716065072311" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3051466895146894414" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc3da41eefc306a6ed7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9782882007089372358" + } + } + ] + }, + "cborHex": "9f1b51b6e360d38e83e7bf1b04450025c754da8e1b8be0fa93e0804d281b20a645fd3bb7c9f91b8ba24bf98a8941f01b530da1d2ab4231164c923541299ed3c467e4bd37fe1b8f892a73a74cd74d1b2b9e03787a4bccfb1ba2e4af46900f0c901ba49bbf0465053db11bcf5f89e782e4b4b71b2a58fcf94918444eff4afc3da41eefc306a6ed7c1b87c3c75a801f5cc6ff", + "cborBytes": [ + 159, 27, 81, 182, 227, 96, 211, 142, 131, 231, 191, 27, 4, 69, 0, 37, 199, 84, 218, 142, 27, 139, 224, 250, 147, + 224, 128, 77, 40, 27, 32, 166, 69, 253, 59, 183, 201, 249, 27, 139, 162, 75, 249, 138, 137, 65, 240, 27, 83, 13, + 161, 210, 171, 66, 49, 22, 76, 146, 53, 65, 41, 158, 211, 196, 103, 228, 189, 55, 254, 27, 143, 137, 42, 115, 167, + 76, 215, 77, 27, 43, 158, 3, 120, 122, 75, 204, 251, 27, 162, 228, 175, 70, 144, 15, 12, 144, 27, 164, 155, 191, + 4, 101, 5, 61, 177, 27, 207, 95, 137, 231, 130, 228, 180, 183, 27, 42, 88, 252, 249, 73, 24, 68, 78, 255, 74, 252, + 61, 164, 30, 239, 195, 6, 166, 237, 124, 27, 135, 195, 199, 90, 128, 31, 92, 198, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1194, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1001867310467991590" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8084d8ac7084738c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9650502120237176046" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17756942011826731974" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "912290c5" + }, + { + "_tag": "ByteArray", + "bytearray": "a719f04b47" + }, + { + "_tag": "ByteArray", + "bytearray": "2586a158690664" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3227382307711966173" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15862044072017743146" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5631646963471218659" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3167618612224007871" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b69710a4aa66ec5f7a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7709942238529774141" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2973531645008398032" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b0de75902c08548269fbf488084d8ac7084738c1b85ed788c3ce414eeffd8669f1bf66d54adf0247bc69f44912290c545a719f04b47472586a1586906641b2cc9f71c058d5bdd1bdc214d0af4354d2affffa09f1b4e27a113561bf7e31b2bf5a45855871ebf49b69710a4aa66ec5f7a1b6aff379dee58e23d1b29441b46d51bc6d0ffa0ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 13, 231, 89, 2, 192, 133, 72, 38, 159, 191, 72, 128, 132, 216, 172, 112, 132, 115, 140, + 27, 133, 237, 120, 140, 60, 228, 20, 238, 255, 216, 102, 159, 27, 246, 109, 84, 173, 240, 36, 123, 198, 159, 68, + 145, 34, 144, 197, 69, 167, 25, 240, 75, 71, 71, 37, 134, 161, 88, 105, 6, 100, 27, 44, 201, 247, 28, 5, 141, 91, + 221, 27, 220, 33, 77, 10, 244, 53, 77, 42, 255, 255, 160, 159, 27, 78, 39, 161, 19, 86, 27, 247, 227, 27, 43, 245, + 164, 88, 85, 135, 30, 191, 73, 182, 151, 16, 164, 170, 102, 236, 95, 122, 27, 106, 255, 55, 157, 238, 88, 226, 61, + 27, 41, 68, 27, 70, 213, 27, 198, 208, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1195, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5666116089169742993" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1919292536487502885" + } + }, + { + "_tag": "ByteArray", + "bytearray": "085c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13447812602433304909" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14269017643994693415" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8546215911669987320" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ec0faa8" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "725934656b75d639" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fae98de3ec370ca544e99b0c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b4ea216900f168c919f1b1aa2b264a165642542085c1bbaa03a4ff60ef94dffff1bc605bbf25c15bf271b769a421784e177f8ffbf412d444ec0faa8ffbf0748725934656b75d6390f4cfae98de3ec370ca544e99b0c1bfffffffffffffffb1bfffffffffffffffdffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 78, 162, 22, 144, 15, 22, 140, 145, 159, 27, 26, 162, 178, 100, 161, 101, 100, 37, + 66, 8, 92, 27, 186, 160, 58, 79, 246, 14, 249, 77, 255, 255, 27, 198, 5, 187, 242, 92, 21, 191, 39, 27, 118, 154, + 66, 23, 132, 225, 119, 248, 255, 191, 65, 45, 68, 78, 192, 250, 168, 255, 191, 7, 72, 114, 89, 52, 101, 107, 117, + 214, 57, 15, 76, 250, 233, 141, 227, 236, 55, 12, 165, 68, 233, 155, 12, 27, 255, 255, 255, 255, 255, 255, 255, + 251, 27, 255, 255, 255, 255, 255, 255, 255, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1196, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05179aee98742ebe0699f1" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "777691c39bf688a95795dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9fd7f47" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f61bd9f0e0cd4db7fdd7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + } + ] + }, + "cborHex": "9f4b05179aee98742ebe0699f1a0bf4b777691c39bf688a95795dd44c9fd7f474af61bd9f0e0cd4db7fdd70affff", + "cborBytes": [ + 159, 75, 5, 23, 154, 238, 152, 116, 46, 190, 6, 153, 241, 160, 191, 75, 119, 118, 145, 195, 155, 246, 136, 169, + 87, 149, 221, 68, 201, 253, 127, 71, 74, 246, 27, 217, 240, 224, 205, 77, 183, 253, 215, 10, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1197, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3993764530520458382" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6019866730851850404" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7810208008411355730" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8749327207827858237" + } + } + ] + }, + "cborHex": "9f9f1b376cb3ae3e3a048e1b538adce5a79dd8a4ff1b6c636ecdab451a521b796bdabd563d633dff", + "cborBytes": [ + 159, 159, 27, 55, 108, 179, 174, 62, 58, 4, 142, 27, 83, 138, 220, 229, 167, 157, 216, 164, 255, 27, 108, 99, 110, + 205, 171, 69, 26, 82, 27, 121, 107, 218, 189, 86, 61, 99, 61, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1198, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7246845762125103806" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5150907325540313007" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1580d8d20" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "468833d5" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5172729382981599091" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14962362635419509904" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3036fe3b1958e43c02d7af38" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17318954622976699658" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7990107102192121105" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15245044976212736699" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a78b135f1b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12461532383513086335" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1377839847944495277" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1300210786271048132" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2308587420465597951" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17863607649691453092" + } + } + ] + }, + "cborHex": "9fbf1b6491f7d3418302be1b477bb2ec01c9a7af45f1580d8d2044468833d5ff9f1b47c939f7afd7ff739f1bcfa4fd8afcc1e4904c3036fe3b1958e43c02d7af38ff1bf059497847a2ad0ad8669f1b6ee29013777cb5119f1bd39147a258037abb45a78b135f1b1bacf041adc453097f1b131f120aa61c20adffffffbf1b120b46d240d131c41b2009c00709c98dffff1bf7e848830ecf46a4ff", + "cborBytes": [ + 159, 191, 27, 100, 145, 247, 211, 65, 131, 2, 190, 27, 71, 123, 178, 236, 1, 201, 167, 175, 69, 241, 88, 13, 141, + 32, 68, 70, 136, 51, 213, 255, 159, 27, 71, 201, 57, 247, 175, 215, 255, 115, 159, 27, 207, 164, 253, 138, 252, + 193, 228, 144, 76, 48, 54, 254, 59, 25, 88, 228, 60, 2, 215, 175, 56, 255, 27, 240, 89, 73, 120, 71, 162, 173, 10, + 216, 102, 159, 27, 110, 226, 144, 19, 119, 124, 181, 17, 159, 27, 211, 145, 71, 162, 88, 3, 122, 187, 69, 167, + 139, 19, 95, 27, 27, 172, 240, 65, 173, 196, 83, 9, 127, 27, 19, 31, 18, 10, 166, 28, 32, 173, 255, 255, 255, 191, + 27, 18, 11, 70, 210, 64, 209, 49, 196, 27, 32, 9, 192, 7, 9, 201, 141, 255, 255, 27, 247, 232, 72, 131, 14, 207, + 70, 164, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1199, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "56b4190764" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4436541350931034053" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "906b9484567b5f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10963626374611052671" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16251570705343668176" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15022100559982692391" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1161542120575860872" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3bde" + } + ] + } + ] + }, + "cborHex": "9f4556b4190764d8669f1b3d91c2da55936fc59f47906b9484567b5f1b9826a01994cba87f1be1892d73b6275fd0d8669f1bd07938de69f7082780ffffff1b101ea067909400889f423bdeffff", + "cborBytes": [ + 159, 69, 86, 180, 25, 7, 100, 216, 102, 159, 27, 61, 145, 194, 218, 85, 147, 111, 197, 159, 71, 144, 107, 148, + 132, 86, 123, 95, 27, 152, 38, 160, 25, 148, 203, 168, 127, 27, 225, 137, 45, 115, 182, 39, 95, 208, 216, 102, + 159, 27, 208, 121, 56, 222, 105, 247, 8, 39, 128, 255, 255, 255, 27, 16, 30, 160, 103, 144, 148, 0, 136, 159, 66, + 59, 222, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1200, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8550268475591821912" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "116007547416913724" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9896173286751351041" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8552872096767134127" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11274678993639896073" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11072552603745645111" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16547450665655539288" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b86fe9f6b267e9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11347868451374041648" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15523570442085286809" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5167209065230893464" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15679283249272690382" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14378558717880190543" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6287295653810880253" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16662225571065427086" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5" + } + } + ] + } + ] + }, + "cborHex": "9f1b76a8a7e095df0a58d8669f1b019c243fef0ca73c9fd8669f1b8956452c108631019f1b76b1e7db6127c9af1b9c77b4cf1476f4091b99a99bed9f15f2371be5a45ab550b31658ffff47b86fe9f6b267e99f1b9d7bba3ba2030a301bd76ecd11d63f4399ff80ffffbf1b47b59d448d4401981bd998010af5a196ce1bc78ae6f91958464f1b5740f615eb413efd1be73c1de06ac8f48e41b5ffff", + "cborBytes": [ + 159, 27, 118, 168, 167, 224, 149, 223, 10, 88, 216, 102, 159, 27, 1, 156, 36, 63, 239, 12, 167, 60, 159, 216, 102, + 159, 27, 137, 86, 69, 44, 16, 134, 49, 1, 159, 27, 118, 177, 231, 219, 97, 39, 201, 175, 27, 156, 119, 180, 207, + 20, 118, 244, 9, 27, 153, 169, 155, 237, 159, 21, 242, 55, 27, 229, 164, 90, 181, 80, 179, 22, 88, 255, 255, 71, + 184, 111, 233, 246, 178, 103, 233, 159, 27, 157, 123, 186, 59, 162, 3, 10, 48, 27, 215, 110, 205, 17, 214, 63, 67, + 153, 255, 128, 255, 255, 191, 27, 71, 181, 157, 68, 141, 68, 1, 152, 27, 217, 152, 1, 10, 245, 161, 150, 206, 27, + 199, 138, 230, 249, 25, 88, 70, 79, 27, 87, 64, 246, 21, 235, 65, 62, 253, 27, 231, 60, 29, 224, 106, 200, 244, + 142, 65, 181, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1201, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10774066349825398659" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4107999574224218264" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11191178661944899093" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9b54c366ecee5597f83" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0035f3225a23cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1607870182647420772" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce03b3ffae640b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6818400776903998523" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1a4db1ab8d" + }, + { + "_tag": "ByteArray", + "bytearray": "b675daa62398cb3d0b73" + } + ] + }, + "cborHex": "9fbf1b95852c42ffd517831b39028bd8ff1728981b9b4f0db31b2836154ad9b54c366ecee5597f83470035f3225a23cf1b16504d6989a4576447ce03b3ffae640b1b5e9fd361939c3c3bff451a4db1ab8d4ab675daa62398cb3d0b73ff", + "cborBytes": [ + 159, 191, 27, 149, 133, 44, 66, 255, 213, 23, 131, 27, 57, 2, 139, 216, 255, 23, 40, 152, 27, 155, 79, 13, 179, + 27, 40, 54, 21, 74, 217, 181, 76, 54, 110, 206, 229, 89, 127, 131, 71, 0, 53, 243, 34, 90, 35, 207, 27, 22, 80, + 77, 105, 137, 164, 87, 100, 71, 206, 3, 179, 255, 174, 100, 11, 27, 94, 159, 211, 97, 147, 156, 60, 59, 255, 69, + 26, 77, 177, 171, 141, 74, 182, 117, 218, 166, 35, 152, 203, 61, 11, 115, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1202, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13333924667280642902" + } + } + ] + }, + "cborHex": "9f1bb90b9dd6b714d356ff", + "cborBytes": [159, 27, 185, 11, 157, 214, 183, 20, 211, 86, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1203, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "94" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1983036082989304027" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c77a73d8806e7f75d809e32" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4128453797489352814" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6c898f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8029e008d78544d0db75" + }, + { + "_tag": "ByteArray", + "bytearray": "ecb61b81" + }, + { + "_tag": "ByteArray", + "bytearray": "60041f" + }, + { + "_tag": "ByteArray", + "bytearray": "7ff06e21" + }, + { + "_tag": "ByteArray", + "bytearray": "c863" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2388450777320056700" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10060699151403960022" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8897564903182944593" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c368347b4a3a3f34f9dacb4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17403287967099037589" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1831874011487861997" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb207dc0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15b8273122c4b3e6aa463aca" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14853008112038898419" + } + } + ] + }, + "cborHex": "9f41949f1b1b8528cf975c08dbbf4c0c77a73d8806e7f75d809e321b394b36daf6f7206eff436c898f9f4a8029e008d78544d0db7544ecb61b814360041f447ff06e2142c863ffffbf1b21257b53d1aae77c1b8b9ec8930781c6d61b7b7a80235c33c9514c2c368347b4a3a3f34f9dacb41bf184e63312c4a7951b196c1fb53000fced44fb207dc04c15b8273122c4b3e6aa463acaff1bce207c2eec12eaf3ff", + "cborBytes": [ + 159, 65, 148, 159, 27, 27, 133, 40, 207, 151, 92, 8, 219, 191, 76, 12, 119, 167, 61, 136, 6, 231, 247, 93, 128, + 158, 50, 27, 57, 75, 54, 218, 246, 247, 32, 110, 255, 67, 108, 137, 143, 159, 74, 128, 41, 224, 8, 215, 133, 68, + 208, 219, 117, 68, 236, 182, 27, 129, 67, 96, 4, 31, 68, 127, 240, 110, 33, 66, 200, 99, 255, 255, 191, 27, 33, + 37, 123, 83, 209, 170, 231, 124, 27, 139, 158, 200, 147, 7, 129, 198, 214, 27, 123, 122, 128, 35, 92, 51, 201, 81, + 76, 44, 54, 131, 71, 180, 163, 163, 243, 79, 157, 172, 180, 27, 241, 132, 230, 51, 18, 196, 167, 149, 27, 25, 108, + 31, 181, 48, 0, 252, 237, 68, 251, 32, 125, 192, 76, 21, 184, 39, 49, 34, 196, 179, 230, 170, 70, 58, 202, 255, + 27, 206, 32, 124, 46, 236, 18, 234, 243, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1204, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17882614522895660022" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8297946835482844116" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17452724267843840078" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1928498551515153602" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd583f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3227092202062850521" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14169631391845254955" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5128317748472573514" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16949008794200298233" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5587435189295815163" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5db3b4e9da4355f1bdf49c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17916365810535876054" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17143264692583303864" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3301134071635000829" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "224ba92754af44a28ec721ea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16516786831597979020" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15975742781832048850" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7868256736119415" + } + }, + { + "_tag": "ByteArray", + "bytearray": "366cbe875a2ed458eb" + }, + { + "_tag": "ByteArray", + "bytearray": "62abb7ba6472746b" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8556123189935963944" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18337022157087734295" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13139392710939797063" + } + } + ] + }, + "cborHex": "9f1bf82bcf29946ff3f6d8669f1b73283aaeb6081bd49f1bf2348840cbabe84ebf1b1ac3673708ea84c243fd583f1b2cc8ef428963a9d91bc4a4a4ad4d29072b1b472b71d23d09ee4a1beb36f9b2d947d2f91b4d8a8eb37f7e99fb4b5db3b4e9da4355f1bdf49c1bf8a3b7c79af1c5d61bede91c68b3ec8ab8ffbf1b2dcffbf2afbe3dfd4c224ba92754af44a28ec721ea1be5376a1d183f458c1bddb53d6abe1c30d2ff9f1b001bf42347c20a7749366cbe875a2ed458eb4862abb7ba6472746bffffff1b76bd74b57e9d7f281bfe7a307f87ae7a171bb658800e1bec6647ff", + "cborBytes": [ + 159, 27, 248, 43, 207, 41, 148, 111, 243, 246, 216, 102, 159, 27, 115, 40, 58, 174, 182, 8, 27, 212, 159, 27, 242, + 52, 136, 64, 203, 171, 232, 78, 191, 27, 26, 195, 103, 55, 8, 234, 132, 194, 67, 253, 88, 63, 27, 44, 200, 239, + 66, 137, 99, 169, 217, 27, 196, 164, 164, 173, 77, 41, 7, 43, 27, 71, 43, 113, 210, 61, 9, 238, 74, 27, 235, 54, + 249, 178, 217, 71, 210, 249, 27, 77, 138, 142, 179, 127, 126, 153, 251, 75, 93, 179, 180, 233, 218, 67, 85, 241, + 189, 244, 156, 27, 248, 163, 183, 199, 154, 241, 197, 214, 27, 237, 233, 28, 104, 179, 236, 138, 184, 255, 191, + 27, 45, 207, 251, 242, 175, 190, 61, 253, 76, 34, 75, 169, 39, 84, 175, 68, 162, 142, 199, 33, 234, 27, 229, 55, + 106, 29, 24, 63, 69, 140, 27, 221, 181, 61, 106, 190, 28, 48, 210, 255, 159, 27, 0, 27, 244, 35, 71, 194, 10, 119, + 73, 54, 108, 190, 135, 90, 46, 212, 88, 235, 72, 98, 171, 183, 186, 100, 114, 116, 107, 255, 255, 255, 27, 118, + 189, 116, 181, 126, 157, 127, 40, 27, 254, 122, 48, 127, 135, 174, 122, 23, 27, 182, 88, 128, 14, 27, 236, 102, + 71, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1205, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8122046573228363337" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "32b302882582" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18016427499233344720" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10195433210227524423" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "24fa056aea0556403f7f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13437504342092730295" + } + } + ] + }, + "cborHex": "9f9f9f1bffffffffffffffecffd8669f1b70b74e536e748e499f4632b3028825821bfa07355afd61fcd01b8d7d747caad50347ffffff4a24fa056aea0556403f7f1bba7b9b011234cfb7ff", + "cborBytes": [ + 159, 159, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 255, 216, 102, 159, 27, 112, 183, 78, 83, 110, 116, + 142, 73, 159, 70, 50, 179, 2, 136, 37, 130, 27, 250, 7, 53, 90, 253, 97, 252, 208, 27, 141, 125, 116, 124, 170, + 213, 3, 71, 255, 255, 255, 74, 36, 250, 5, 106, 234, 5, 86, 64, 63, 127, 27, 186, 123, 155, 1, 18, 52, 207, 183, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1206, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14162707115754496820" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16940940733623718815" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12872605380462941637" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1493034306495043679" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18051504912268639690" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13710275581805824860" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5015262764086925094" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f" + }, + { + "_tag": "ByteArray", + "bytearray": "c15e29f1703b2204" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5105562581842473310" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24c8c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4994270607753509189" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f75b422fe03773" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "483bd21bb3a9413869" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c29d69d44d4765ef5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87495625c980b51d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc98" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94db87d82f11649e24" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3eb35725" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a98f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b417f8cf3926954843df939" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bc48c0b15a471a3349f9f1beb1a4fd71c96539f1bb2a4ae643c4695c541621b14b852ca941bd85f1bfa83d413a4fdbdcaffd8669f1bbe44af00623f8b5c9f1b4599cae974a51726418f48c15e29f1703b2204ffff1b46da9a1e253f315ebf4324c8c61b454f36a82f5279454246c147f75b422fe0377349483bd21bb3a9413869491c29d69d44d4765ef54887495625c980b51d42dc984994db87d82f11649e24443eb3572542a98f4c2b417f8cf3926954843df939ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 196, 140, 11, 21, 164, 113, 163, 52, 159, 159, 27, 235, 26, 79, 215, 28, 150, 83, 159, 27, + 178, 164, 174, 100, 60, 70, 149, 197, 65, 98, 27, 20, 184, 82, 202, 148, 27, 216, 95, 27, 250, 131, 212, 19, 164, + 253, 189, 202, 255, 216, 102, 159, 27, 190, 68, 175, 0, 98, 63, 139, 92, 159, 27, 69, 153, 202, 233, 116, 165, 23, + 38, 65, 143, 72, 193, 94, 41, 241, 112, 59, 34, 4, 255, 255, 27, 70, 218, 154, 30, 37, 63, 49, 94, 191, 67, 36, + 200, 198, 27, 69, 79, 54, 168, 47, 82, 121, 69, 66, 70, 193, 71, 247, 91, 66, 47, 224, 55, 115, 73, 72, 59, 210, + 27, 179, 169, 65, 56, 105, 73, 28, 41, 214, 157, 68, 212, 118, 94, 245, 72, 135, 73, 86, 37, 201, 128, 181, 29, + 66, 220, 152, 73, 148, 219, 135, 216, 47, 17, 100, 158, 36, 68, 62, 179, 87, 37, 66, 169, 143, 76, 43, 65, 127, + 140, 243, 146, 105, 84, 132, 61, 249, 57, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1207, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "06067c350102fd05ff" + } + ] + }, + "cborHex": "9f4906067c350102fd05ffff", + "cborBytes": [159, 73, 6, 6, 124, 53, 1, 2, 253, 5, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1208, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1270451363178065797" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "726438419efe3259" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7541123322801087861" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "949256346664697969" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2997910174406113591" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5622045323091785507" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9440293260703024288" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6454337736300504103" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5711363286291983926" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7041842646531618210" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecc2be5242" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14910424535204625550" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d56a8841ff04a4c6f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18265388736806554279" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82be3d909303" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11240698667457138907" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9448492680306709733" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1418687054019867929" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03c5c68e11" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9925106921691433565" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b11a18cc89ea3af859f48726438419efe32591b68a773b51ef8e575bf1b0d2c6f9e2fbc00711b299ab76b860179371b4e05846f3a0837231b8302a8b42bb7c4a01b599269f9809724271b4f42d6a616a42e361b61b9a693e6b6b5a245ecc2be52421bceec781daf23fc8e497d56a8841ff04a4c6f1bfd7bb2482dc68aa74682be3d909303ff9f1b9bfefbe1dcfd50db1b831fca08508f54e51b13b0305bee4cb5194503c5c68e111b89bd1028e9304a5dff80ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 17, 161, 140, 200, 158, 163, 175, 133, 159, 72, 114, 100, 56, 65, 158, 254, 50, 89, 27, + 104, 167, 115, 181, 30, 248, 229, 117, 191, 27, 13, 44, 111, 158, 47, 188, 0, 113, 27, 41, 154, 183, 107, 134, 1, + 121, 55, 27, 78, 5, 132, 111, 58, 8, 55, 35, 27, 131, 2, 168, 180, 43, 183, 196, 160, 27, 89, 146, 105, 249, 128, + 151, 36, 39, 27, 79, 66, 214, 166, 22, 164, 46, 54, 27, 97, 185, 166, 147, 230, 182, 181, 162, 69, 236, 194, 190, + 82, 66, 27, 206, 236, 120, 29, 175, 35, 252, 142, 73, 125, 86, 168, 132, 31, 240, 74, 76, 111, 27, 253, 123, 178, + 72, 45, 198, 138, 167, 70, 130, 190, 61, 144, 147, 3, 255, 159, 27, 155, 254, 251, 225, 220, 253, 80, 219, 27, + 131, 31, 202, 8, 80, 143, 84, 229, 27, 19, 176, 48, 91, 238, 76, 181, 25, 69, 3, 197, 198, 142, 17, 27, 137, 189, + 16, 40, 233, 48, 74, 93, 255, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1209, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "98183a223a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f24192c70" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13271667936654427433" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "124761dfee7da3136094" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9071457301889332511" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aeacacb8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30d784fa" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5468c4efd504c07490e43879" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15194873378969447994" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "077c6ff22d087c0a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0df155a51761216a907f45" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18e96e6f3bd2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8196008824076523016" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9c4c26609c760" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62497c5ec3421de75ff7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbe3bac89f9f" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8579916282158710564" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13429093374819176717" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77930d4089" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11272105280678888558" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4598183a223a1bfffffffffffffffcbf450f24192c701bb82e6fac0d3a85294a124761dfee7da31360941b7de44a5a7a3cb51f44aeacacb84430d784faffd8669f1bfffffffffffffffc9f4c5468c4efd504c07490e43879bf41041bd2df08d510836e3a48077c6ff22d087c0a4b0df155a51761216a907f454618e96e6f3bd21b71be1299e70c5608412f47a9c4c26609c7604a62497c5ec3421de75ff746fbe3bac89f9fffbf1b7711fc6678a8ff241bba5db94625a6110d4577930d40891b9c6e9007d5ab846effffffff", + "cborBytes": [ + 159, 69, 152, 24, 58, 34, 58, 27, 255, 255, 255, 255, 255, 255, 255, 252, 191, 69, 15, 36, 25, 44, 112, 27, 184, + 46, 111, 172, 13, 58, 133, 41, 74, 18, 71, 97, 223, 238, 125, 163, 19, 96, 148, 27, 125, 228, 74, 90, 122, 60, + 181, 31, 68, 174, 172, 172, 184, 68, 48, 215, 132, 250, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 252, 159, 76, 84, 104, 196, 239, 213, 4, 192, 116, 144, 228, 56, 121, 191, 65, 4, 27, 210, 223, 8, 213, 16, 131, + 110, 58, 72, 7, 124, 111, 242, 45, 8, 124, 10, 75, 13, 241, 85, 165, 23, 97, 33, 106, 144, 127, 69, 70, 24, 233, + 110, 111, 59, 210, 27, 113, 190, 18, 153, 231, 12, 86, 8, 65, 47, 71, 169, 196, 194, 102, 9, 199, 96, 74, 98, 73, + 124, 94, 195, 66, 29, 231, 95, 247, 70, 251, 227, 186, 200, 159, 159, 255, 191, 27, 119, 17, 252, 102, 120, 168, + 255, 36, 27, 186, 93, 185, 70, 37, 166, 17, 13, 69, 119, 147, 13, 64, 137, 27, 156, 110, 144, 7, 213, 171, 132, + 110, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1210, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7577786941643707845" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10305742199244704504" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15408556031285771905" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1240655342717907614" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14318078601907636342" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10011939373698700445" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17447130860165127398" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21f61e5975b06f01188e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1990864642160173537" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fa0d8669f1b6929b513184455c59f1b8f0559ed94bbcaf81bd5d630128a7dbe811b1137b175ff64329effff1bc6b408a0c4d38876bf1b8af18dd09a0ed49d1bf220a91415e5dce64a21f61e5975b06f01188e1b1ba0f8d80fd7a1e1ffffff", + "cborBytes": [ + 159, 159, 160, 216, 102, 159, 27, 105, 41, 181, 19, 24, 68, 85, 197, 159, 27, 143, 5, 89, 237, 148, 187, 202, 248, + 27, 213, 214, 48, 18, 138, 125, 190, 129, 27, 17, 55, 177, 117, 255, 100, 50, 158, 255, 255, 27, 198, 180, 8, 160, + 196, 211, 136, 118, 191, 27, 138, 241, 141, 208, 154, 14, 212, 157, 27, 242, 32, 169, 20, 21, 229, 220, 230, 74, + 33, 246, 30, 89, 117, 176, 111, 1, 24, 142, 27, 27, 160, 248, 216, 15, 215, 161, 225, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1211, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11299596915576803327" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7713778619851811167" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1802194433689753028" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12283288916048368283" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8738222750298519916" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f7c0dec3d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16843224649767790990" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "94c524ab9a4ee3be" + } + ] + }, + "cborHex": "9f1b9cd03b86e20e0fff9fd8669f1b6b0cd8c91045295f80ffffd8669f1b1902ae49fc4395c49f1baa770230828e529bd8669f1b7944674b57c7b96c9f45f7c0dec3d31be9bf27946983298effffffff4894c524ab9a4ee3beff", + "cborBytes": [ + 159, 27, 156, 208, 59, 134, 226, 14, 15, 255, 159, 216, 102, 159, 27, 107, 12, 216, 201, 16, 69, 41, 95, 128, 255, + 255, 216, 102, 159, 27, 25, 2, 174, 73, 252, 67, 149, 196, 159, 27, 170, 119, 2, 48, 130, 142, 82, 155, 216, 102, + 159, 27, 121, 68, 103, 75, 87, 199, 185, 108, 159, 69, 247, 192, 222, 195, 211, 27, 233, 191, 39, 148, 105, 131, + 41, 142, 255, 255, 255, 255, 72, 148, 197, 36, 171, 154, 78, 227, 190, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1212, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8bae09874d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "53d145705362eaa32ead0c14" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "633696426952848880" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9483448597723436535" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a2be6b93c80d" + }, + { + "_tag": "ByteArray", + "bytearray": "d0" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "800466885146756723" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd9050b9f458bae09874d9f4c53d145705362eaa32ead0c141b08cb578af7f575f01b839bfa4110fb55f746a2be6b93c80d41d0ffffd8669f1b0b1bd46417a2c67380ffff", + "cborBytes": [ + 159, 217, 5, 11, 159, 69, 139, 174, 9, 135, 77, 159, 76, 83, 209, 69, 112, 83, 98, 234, 163, 46, 173, 12, 20, 27, + 8, 203, 87, 138, 247, 245, 117, 240, 27, 131, 155, 250, 65, 16, 251, 85, 247, 70, 162, 190, 107, 147, 200, 13, 65, + 208, 255, 255, 216, 102, 159, 27, 11, 27, 212, 100, 23, 162, 198, 115, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1213, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a16448dd25cd4c9f9e733" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f161e214d11ed4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3c395f7debdb3d56bc0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4640677326845327559" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8584509604626100011" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ee95c4cf" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11219395798368203291" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adb1" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10551147642696123417" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50b2e2d0a959bf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16355182883794743769" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8abc45a70fc3cd708636" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "100764c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ee35ef4689a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1707e28d497d7e6a5dbf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fa28b3ee6" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "19fc9fac95bdfb429b" + } + ] + }, + "cborHex": "9fbf4b5a16448dd25cd4c9f9e73347f161e214d11ed44ae3c395f7debdb3d56bc01b4066ff70ffd338c7ff9f1b77224e00b2aaef2ba044ee95c4cfffbf1b9bb34d09243f321b42adb1ffbf1b926d34e0ef9a44194750b2e2d0a959bf1be2f9482de92271d94a8abc45a70fc3cd70863644100764c4466ee35ef4689a4a1707e28d497d7e6a5dbf456fa28b3ee6ff4919fc9fac95bdfb429bff", + "cborBytes": [ + 159, 191, 75, 90, 22, 68, 141, 210, 92, 212, 201, 249, 231, 51, 71, 241, 97, 226, 20, 209, 30, 212, 74, 227, 195, + 149, 247, 222, 189, 179, 213, 107, 192, 27, 64, 102, 255, 112, 255, 211, 56, 199, 255, 159, 27, 119, 34, 78, 0, + 178, 170, 239, 43, 160, 68, 238, 149, 196, 207, 255, 191, 27, 155, 179, 77, 9, 36, 63, 50, 27, 66, 173, 177, 255, + 191, 27, 146, 109, 52, 224, 239, 154, 68, 25, 71, 80, 178, 226, 208, 169, 89, 191, 27, 226, 249, 72, 45, 233, 34, + 113, 217, 74, 138, 188, 69, 167, 15, 195, 205, 112, 134, 54, 68, 16, 7, 100, 196, 70, 110, 227, 94, 244, 104, 154, + 74, 23, 7, 226, 141, 73, 125, 126, 106, 93, 191, 69, 111, 162, 139, 62, 230, 255, 73, 25, 252, 159, 172, 149, 189, + 251, 66, 155, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1214, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd9050680ff", + "cborBytes": [159, 217, 5, 6, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1215, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22f7d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3668151713184637495" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57239561" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70cb89" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e278" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "177551052309810234" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3ee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e1c9ab0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5b04aa756" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9760614537727171424" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15704112486352061123" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9426129382252754064" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf4322f7d51b32e7e48c669c623744572395614370cb8942e2781b0276c9bdca6c4c3a42f3ee447e1c9ab045f5b04aa7561b8774ab3546bddb60ff1bd9f0371a35ca82c3d8669f1b82d056bb3c0c349080ffff", + "cborBytes": [ + 159, 191, 67, 34, 247, 213, 27, 50, 231, 228, 140, 102, 156, 98, 55, 68, 87, 35, 149, 97, 67, 112, 203, 137, 66, + 226, 120, 27, 2, 118, 201, 189, 202, 108, 76, 58, 66, 243, 238, 68, 126, 28, 154, 176, 69, 245, 176, 74, 167, 86, + 27, 135, 116, 171, 53, 70, 189, 219, 96, 255, 27, 217, 240, 55, 26, 53, 202, 130, 195, 216, 102, 159, 27, 130, + 208, 86, 187, 60, 12, 52, 144, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1216, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11638483578069553575" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d128f8ca39" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14224425997899467388" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3551007464333818567" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15490629065959315962" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6138851970234741959" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4477062785421636384" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb9abb989a55e12053605fc8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10570928496919467899" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12006793751130857568" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14027569418923931505" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14216496843759765826" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14686501674877053284" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a3ee48b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "30db68ede5bb4840c3f3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17330599938706137199" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e2d6204138b3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17572638230738604004" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5210132190601456104" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4185348182234636479" + } + } + ] + } + ] + }, + "cborHex": "9fbf1ba1843326a30d91a745d128f8ca391bc5675014b2a10a7c1b3147b6798a60bac71bd6f9c51007d899fa1b55319557868c74c7ff9fbf1b3e21b8e2022d73204ceb9abb989a55e12053605fc81b92b37b75f4f0577b1ba6a0b34d4b88e0601bc2abf010b517f7711bc54b248ea2c349421bcbd0ef75fc39e964449a3ee48bff4a30db68ede5bb4840c3f3ff9f9f1bf082a8d2a2fc606f46e2d6204138b31bf3de8d5df59f8fe441c1ffffd8669f1b484e1b9f75a0a9e89f1b3a1557ff2f6c20bfffffff", + "cborBytes": [ + 159, 191, 27, 161, 132, 51, 38, 163, 13, 145, 167, 69, 209, 40, 248, 202, 57, 27, 197, 103, 80, 20, 178, 161, 10, + 124, 27, 49, 71, 182, 121, 138, 96, 186, 199, 27, 214, 249, 197, 16, 7, 216, 153, 250, 27, 85, 49, 149, 87, 134, + 140, 116, 199, 255, 159, 191, 27, 62, 33, 184, 226, 2, 45, 115, 32, 76, 235, 154, 187, 152, 154, 85, 225, 32, 83, + 96, 95, 200, 27, 146, 179, 123, 117, 244, 240, 87, 123, 27, 166, 160, 179, 77, 75, 136, 224, 96, 27, 194, 171, + 240, 16, 181, 23, 247, 113, 27, 197, 75, 36, 142, 162, 195, 73, 66, 27, 203, 208, 239, 117, 252, 57, 233, 100, 68, + 154, 62, 228, 139, 255, 74, 48, 219, 104, 237, 229, 187, 72, 64, 195, 243, 255, 159, 159, 27, 240, 130, 168, 210, + 162, 252, 96, 111, 70, 226, 214, 32, 65, 56, 179, 27, 243, 222, 141, 93, 245, 159, 143, 228, 65, 193, 255, 255, + 216, 102, 159, 27, 72, 78, 27, 159, 117, 160, 169, 232, 159, 27, 58, 21, 87, 255, 47, 108, 32, 191, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1217, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0607f804" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10500971335394740511" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f200cbc02fff9fc8504bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2f9bdf0237da8636cdaae1b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3480110482224136332" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2674322d6770c76ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15070208974581477884" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12226844306875215088" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1884117713852803190" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0414a6c3ddb302" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b0a5af1d5cca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7289441276657552625" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12120807418669150849" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c94d490d10d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "532973125778417203" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fcabd96b9cf3" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8859204934932905579" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11950425868988146090" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16671299112277872667" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ac3bd3b45e2f90e619d044" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15056623360419545340" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3853" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9471169470706302702" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd905079fbf440607f8041b91baf1cb02c3491f4b7f200cbc02fff9fc8504bf41614cc2f9bdf0237da8636cdaae1b1b304bd60b9015408c49f2674322d6770c76ee1bd12423378cd531fcffd8669f1ba9ae7a1dd34decf09f1b1a25bb140937a876470414a6c3ddb302ffffff9f46b0a5af1d5cca1b65294c38523e4cf1d8669f1ba835c220e4b1b2819f46c94d490d10d01b0765803becda263346fcabd96b9cf3ffffffd8669f1b7af237f343103e6b9f0fffff9f1bfffffffffffffffbd879801ba5d8710303ad61aad8669f1be75c5a36db9b901b9f4bac3bd3b45e2f90e619d044ffff01ff9fbf041bd0f3df2c42a7c0fc14423853ffd8669f1b83705a7404f93eee80ffffff", + "cborBytes": [ + 159, 217, 5, 7, 159, 191, 68, 6, 7, 248, 4, 27, 145, 186, 241, 203, 2, 195, 73, 31, 75, 127, 32, 12, 188, 2, 255, + 249, 252, 133, 4, 191, 65, 97, 76, 194, 249, 189, 240, 35, 125, 168, 99, 108, 218, 174, 27, 27, 48, 75, 214, 11, + 144, 21, 64, 140, 73, 242, 103, 67, 34, 214, 119, 12, 118, 238, 27, 209, 36, 35, 55, 140, 213, 49, 252, 255, 216, + 102, 159, 27, 169, 174, 122, 29, 211, 77, 236, 240, 159, 27, 26, 37, 187, 20, 9, 55, 168, 118, 71, 4, 20, 166, + 195, 221, 179, 2, 255, 255, 255, 159, 70, 176, 165, 175, 29, 92, 202, 27, 101, 41, 76, 56, 82, 62, 76, 241, 216, + 102, 159, 27, 168, 53, 194, 32, 228, 177, 178, 129, 159, 70, 201, 77, 73, 13, 16, 208, 27, 7, 101, 128, 59, 236, + 218, 38, 51, 70, 252, 171, 217, 107, 156, 243, 255, 255, 255, 216, 102, 159, 27, 122, 242, 55, 243, 67, 16, 62, + 107, 159, 15, 255, 255, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 216, 121, 128, 27, 165, 216, 113, 3, 3, + 173, 97, 170, 216, 102, 159, 27, 231, 92, 90, 54, 219, 155, 144, 27, 159, 75, 172, 59, 211, 180, 94, 47, 144, 230, + 25, 208, 68, 255, 255, 1, 255, 159, 191, 4, 27, 208, 243, 223, 44, 66, 167, 192, 252, 20, 66, 56, 83, 255, 216, + 102, 159, 27, 131, 112, 90, 116, 4, 249, 62, 238, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1218, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10124363964776134633" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "693110509594991612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8387004466655494108" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13771928904826997863" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16804757952674395760" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f67848e206055c0793ff" + }, + { + "_tag": "ByteArray", + "bytearray": "6ca349ca" + } + ] + }, + "cborHex": "9f9f1b8c80f762813f37e9bf1b099e6c56127fdbfc1b7464a0204c9d7fdc1bbf1fb85f4425cc671be9367e529193f670ffff9f0bff4af67848e206055c0793ff446ca349caff", + "cborBytes": [ + 159, 159, 27, 140, 128, 247, 98, 129, 63, 55, 233, 191, 27, 9, 158, 108, 86, 18, 127, 219, 252, 27, 116, 100, 160, + 32, 76, 157, 127, 220, 27, 191, 31, 184, 95, 68, 37, 204, 103, 27, 233, 54, 126, 82, 145, 147, 246, 112, 255, 255, + 159, 11, 255, 74, 246, 120, 72, 226, 6, 5, 92, 7, 147, 255, 68, 108, 163, 73, 202, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1219, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3157600458764848892" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "85681876857945599" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3d7922a4a91893a22" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c05c490e3fda670bcf5440" + } + ] + }, + "cborHex": "9f801bfffffffffffffff0bf1b2bd20ce3374a0efc1b0130673689ce7dff49b3d7922a4a91893a221bfffffffffffffff3ff4bc05c490e3fda670bcf5440ff", + "cborBytes": [ + 159, 128, 27, 255, 255, 255, 255, 255, 255, 255, 240, 191, 27, 43, 210, 12, 227, 55, 74, 14, 252, 27, 1, 48, 103, + 54, 137, 206, 125, 255, 73, 179, 215, 146, 42, 74, 145, 137, 58, 34, 27, 255, 255, 255, 255, 255, 255, 255, 243, + 255, 75, 192, 92, 73, 14, 63, 218, 103, 11, 207, 84, 64, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1220, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17999578142601927848" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13391d27cea7cbe65b6ff442" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4212446348451786886" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14501435225432302863" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b464fca524" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "414e1a1ab4701c0a18bb86" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee30f40641a602633817" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5377a8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be54e672" + } + } + ] + } + ] + }, + "cborHex": "9f9fa01bf9cb58f470ac5ca8ffbf4c13391d27cea7cbe65b6ff4421b3a759da2aadc308641851bc93f7281713aa50f45b464fca5244b414e1a1ab4701c0a18bb864aee30f40641a602633817435377a841f644be54e672ffff", + "cborBytes": [ + 159, 159, 160, 27, 249, 203, 88, 244, 112, 172, 92, 168, 255, 191, 76, 19, 57, 29, 39, 206, 167, 203, 230, 91, + 111, 244, 66, 27, 58, 117, 157, 162, 170, 220, 48, 134, 65, 133, 27, 201, 63, 114, 129, 113, 58, 165, 15, 69, 180, + 100, 252, 165, 36, 75, 65, 78, 26, 26, 180, 112, 28, 10, 24, 187, 134, 74, 238, 48, 244, 6, 65, 166, 2, 99, 56, + 23, 67, 83, 119, 168, 65, 246, 68, 190, 84, 230, 114, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1221, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11527208342314287416" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16576262540149663367" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "95f3a22d45e8e4a79d0c" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3830850567505616583" + } + } + ] + } + ] + }, + "cborHex": "9fa01bfffffffffffffffad8669f1b9ff8dee9df9001389fd8669f1be60ab6f4993c26879f4a95f3a22d45e8e4a79d0cffffffffd8669f1bfffffffffffffff280ff9f1b3529ea4b5fc69ec7ffff", + "cborBytes": [ + 159, 160, 27, 255, 255, 255, 255, 255, 255, 255, 250, 216, 102, 159, 27, 159, 248, 222, 233, 223, 144, 1, 56, 159, + 216, 102, 159, 27, 230, 10, 182, 244, 153, 60, 38, 135, 159, 74, 149, 243, 162, 45, 69, 232, 228, 167, 157, 12, + 255, 255, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 128, 255, 159, 27, 53, 41, 234, 75, + 95, 198, 158, 199, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1222, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7738377415295821967" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5566876953944962246" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c45d08830ab" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b6b643d42709ce88f9f1b4d4185185432b4c6465c45d08830abffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 107, 100, 61, 66, 112, 156, 232, 143, 159, 27, 77, 65, 133, 24, 84, 50, 180, 198, 70, 92, + 69, 208, 136, 48, 171, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1223, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf061bffffffffffffffffffff", + "cborBytes": [159, 191, 6, 27, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1224, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9365812904946454061" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4057355815722693625" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1b81fa0d37001a4e2dd8669f1b384e9f9e1b8433f980ffff", + "cborBytes": [ + 159, 27, 129, 250, 13, 55, 0, 26, 78, 45, 216, 102, 159, 27, 56, 78, 159, 158, 27, 132, 51, 249, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1225, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "504196958869656150" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5917303865378313339" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3786875338237088092" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8377726420061849031" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b315e1b76d6f6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17085548441107968287" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99901f8751545cd42e0341" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17886974720268704121" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9df90c243bac34d824" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18034616862057350810" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a963af7" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "39f1a09a196620" + }, + { + "_tag": "ByteArray", + "bytearray": "75041934ae4506b846" + } + ] + }, + "cborHex": "9fbf1b06ff4476764212564259a41b521e7c83abeb947b1b348daf0e704f115c1b7443a9cabd3105c7477b315e1b76d6f61bed1c0fc8b8f8311f4b99901f8751545cd42e03411bf83b4cbd24021979499df90c243bac34d8241bfa47d47c0b32c69a440a963af7ff4739f1a09a1966204975041934ae4506b846ff", + "cborBytes": [ + 159, 191, 27, 6, 255, 68, 118, 118, 66, 18, 86, 66, 89, 164, 27, 82, 30, 124, 131, 171, 235, 148, 123, 27, 52, + 141, 175, 14, 112, 79, 17, 92, 27, 116, 67, 169, 202, 189, 49, 5, 199, 71, 123, 49, 94, 27, 118, 214, 246, 27, + 237, 28, 15, 200, 184, 248, 49, 31, 75, 153, 144, 31, 135, 81, 84, 92, 212, 46, 3, 65, 27, 248, 59, 76, 189, 36, + 2, 25, 121, 73, 157, 249, 12, 36, 59, 172, 52, 216, 36, 27, 250, 71, 212, 124, 11, 50, 198, 154, 68, 10, 150, 58, + 247, 255, 71, 57, 241, 160, 154, 25, 102, 32, 73, 117, 4, 25, 52, 174, 69, 6, 184, 70, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1226, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5164500033449582599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16706579806132284951" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5611706588814844982" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3567022299634255329" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15832654071290480892" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2535482999384342916" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16858474593011101751" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5236714192187764407" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4284bbc1d0e06641fbd209f0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "509883746832002009" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "209132379578515504" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e7a056ec551d6402e677fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7161622745778762353" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14795932491376483611" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1f" + } + ] + }, + "cborHex": "9fa0d905099fd8669f1b47abfd6af04160079f1be7d9b1d1843aae171b4de0c969120724361b31809be1f398c5e141faffffd8669f1bdbb8e2fe2ae948fc9f1b232fd85ab85881841be9f55552835ff0371b48ac8bcfff992eb74c4284bbc1d0e06641fbd209f01b07137890f6aaabd9ffff9f1b02e6fcca8bcf40304be7a056ec551d6402e677fc1b636331f181803271ffff089f1bcd55b6356d27dd1ba0ff411fff", + "cborBytes": [ + 159, 160, 217, 5, 9, 159, 216, 102, 159, 27, 71, 171, 253, 106, 240, 65, 96, 7, 159, 27, 231, 217, 177, 209, 132, + 58, 174, 23, 27, 77, 224, 201, 105, 18, 7, 36, 54, 27, 49, 128, 155, 225, 243, 152, 197, 225, 65, 250, 255, 255, + 216, 102, 159, 27, 219, 184, 226, 254, 42, 233, 72, 252, 159, 27, 35, 47, 216, 90, 184, 88, 129, 132, 27, 233, + 245, 85, 82, 131, 95, 240, 55, 27, 72, 172, 139, 207, 255, 153, 46, 183, 76, 66, 132, 187, 193, 208, 224, 102, 65, + 251, 210, 9, 240, 27, 7, 19, 120, 144, 246, 170, 171, 217, 255, 255, 159, 27, 2, 230, 252, 202, 139, 207, 64, 48, + 75, 231, 160, 86, 236, 85, 29, 100, 2, 230, 119, 252, 27, 99, 99, 49, 241, 129, 128, 50, 113, 255, 255, 8, 159, + 27, 205, 85, 182, 53, 109, 39, 221, 27, 160, 255, 65, 31, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1227, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "06000b4e18829400cb64" + }, + { + "_tag": "ByteArray", + "bytearray": "c12038870d043dae0b0063" + }, + { + "_tag": "ByteArray", + "bytearray": "48b8" + }, + { + "_tag": "ByteArray", + "bytearray": "613b2a550d610c4b224c" + } + ] + }, + "cborHex": "9f4a06000b4e18829400cb644bc12038870d043dae0b00634248b84a613b2a550d610c4b224cff", + "cborBytes": [ + 159, 74, 6, 0, 11, 78, 24, 130, 148, 0, 203, 100, 75, 193, 32, 56, 135, 13, 4, 61, 174, 11, 0, 99, 66, 72, 184, + 74, 97, 59, 42, 85, 13, 97, 12, 75, 34, 76, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1228, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1470604214068727482" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1543922896162924279" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a65af2751fd7e6a9baae1069" + }, + { + "_tag": "ByteArray", + "bytearray": "48817a2c90a9a3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2550287337659725154" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15617526814857324177" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18411508504971047435" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9661286162302176514" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4773028627313173834" + } + }, + { + "_tag": "ByteArray", + "bytearray": "165acbdec3" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1468a2bdb8c24eba9f9f1b156d1db1aa6226f74ca65af2751fd7e6a9baae10694748817a2c90a9a31b236470d2546275621bd8bc99e495b56691ff0680d8669f1bff82d16fd9e1f20b9f1b8613c893b16b0d021b423d343f79c5a54a45165acbdec3ffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 20, 104, 162, 189, 184, 194, 78, 186, 159, 159, 27, 21, 109, 29, 177, 170, 98, 38, 247, + 76, 166, 90, 242, 117, 31, 215, 230, 169, 186, 174, 16, 105, 71, 72, 129, 122, 44, 144, 169, 163, 27, 35, 100, + 112, 210, 84, 98, 117, 98, 27, 216, 188, 153, 228, 149, 181, 102, 145, 255, 6, 128, 216, 102, 159, 27, 255, 130, + 209, 111, 217, 225, 242, 11, 159, 27, 134, 19, 200, 147, 177, 107, 13, 2, 27, 66, 61, 52, 63, 121, 197, 165, 74, + 69, 22, 90, 203, 222, 195, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1229, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15210321218891311220" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49f5dba78f7489e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "935004311038781956" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d98b9fd2" + } + ] + }, + "cborHex": "9fbf1bd315ea8f939a68744849f5dba78f7489e91bfffffffffffffffe410741c01b0cf9cd778eecea04ff44d98b9fd2ff", + "cborBytes": [ + 159, 191, 27, 211, 21, 234, 143, 147, 154, 104, 116, 72, 73, 245, 219, 167, 143, 116, 137, 233, 27, 255, 255, 255, + 255, 255, 255, 255, 254, 65, 7, 65, 192, 27, 12, 249, 205, 119, 142, 236, 234, 4, 255, 68, 217, 139, 159, 210, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1230, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3268789907705292284" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e70251930" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3570108005129490560" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b53b01279770d4f4cafc4" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b2d5d131a2e27e5fc450e702519301b318b9250bf8590804b5b53b01279770d4f4cafc4ffff", + "cborBytes": [ + 159, 191, 27, 45, 93, 19, 26, 46, 39, 229, 252, 69, 14, 112, 37, 25, 48, 27, 49, 139, 146, 80, 191, 133, 144, 128, + 75, 91, 83, 176, 18, 121, 119, 13, 79, 76, 175, 196, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1231, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17747102224024451878" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8617110456331559878" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "729045618542741943" + } + }, + { + "_tag": "ByteArray", + "bytearray": "861a15ced5e0b07180cfe2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14521105160562861624" + } + }, + { + "_tag": "ByteArray", + "bytearray": "974323886af3461d" + }, + { + "_tag": "ByteArray", + "bytearray": "369ac39f7c116a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9da3f0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8678565086337651872" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5223075332955485784" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b566152d804e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16951961345416441406" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5713586881479781798" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7885521cd139ac909fccea96" + }, + { + "_tag": "ByteArray", + "bytearray": "09" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16076292266746125106" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7074532874366811616" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "926d5f" + }, + { + "_tag": "ByteArray", + "bytearray": "bed9cfa9c4456a99a3f8" + }, + { + "_tag": "ByteArray", + "bytearray": "8f051f5780553956bd" + }, + { + "_tag": "ByteArray", + "bytearray": "0cd2ff5638cecd22f020e3" + } + ] + } + ] + }, + "cborHex": "9f1bf64a5f71cf85bb269fd8669f1b7796204dfbf263c69f1b0a1e17209e4b89b74b861a15ced5e0b07180cfe21bc98554351970e63848974323886af3461d47369ac39f7c116affff9f439da3f01b787074f70b4354a0ff1b487c17579feab658ff9f46b566152d804effd8669f1beb4177073fb32e3e9f9f1b4f4abcff2fef2da64c7885521cd139ac909fccea9641091bdf1a76a408c31b321b622dca2ab074fde0ff43926d5f4abed9cfa9c4456a99a3f8498f051f5780553956bd4b0cd2ff5638cecd22f020e3ffffff", + "cborBytes": [ + 159, 27, 246, 74, 95, 113, 207, 133, 187, 38, 159, 216, 102, 159, 27, 119, 150, 32, 77, 251, 242, 99, 198, 159, + 27, 10, 30, 23, 32, 158, 75, 137, 183, 75, 134, 26, 21, 206, 213, 224, 176, 113, 128, 207, 226, 27, 201, 133, 84, + 53, 25, 112, 230, 56, 72, 151, 67, 35, 136, 106, 243, 70, 29, 71, 54, 154, 195, 159, 124, 17, 106, 255, 255, 159, + 67, 157, 163, 240, 27, 120, 112, 116, 247, 11, 67, 84, 160, 255, 27, 72, 124, 23, 87, 159, 234, 182, 88, 255, 159, + 70, 181, 102, 21, 45, 128, 78, 255, 216, 102, 159, 27, 235, 65, 119, 7, 63, 179, 46, 62, 159, 159, 27, 79, 74, + 188, 255, 47, 239, 45, 166, 76, 120, 133, 82, 28, 209, 57, 172, 144, 159, 204, 234, 150, 65, 9, 27, 223, 26, 118, + 164, 8, 195, 27, 50, 27, 98, 45, 202, 42, 176, 116, 253, 224, 255, 67, 146, 109, 95, 74, 190, 217, 207, 169, 196, + 69, 106, 153, 163, 248, 73, 143, 5, 31, 87, 128, 85, 57, 86, 189, 75, 12, 210, 255, 86, 56, 206, 205, 34, 240, 32, + 227, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1232, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5114647807069571290" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2898664680869574500" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5586631122901886658" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6555262096694559245" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68f809c766071bc6c523" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b77259a5fb675c41b8e" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b46fae114fb9cc8da1b283a202b6233b7641b4d87b36833b566c21b5af8f8254b0fc20d4a68f809c766071bc6c5234a7b77259a5fb675c41b8effff", + "cborBytes": [ + 159, 191, 27, 70, 250, 225, 20, 251, 156, 200, 218, 27, 40, 58, 32, 43, 98, 51, 183, 100, 27, 77, 135, 179, 104, + 51, 181, 102, 194, 27, 90, 248, 248, 37, 75, 15, 194, 13, 74, 104, 248, 9, 199, 102, 7, 27, 198, 197, 35, 74, 123, + 119, 37, 154, 95, 182, 117, 196, 27, 142, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1233, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8279107512" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16605454396010819658" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5240113970130248718" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b3ee8906f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1784189172116864747" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "266142183674021789" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7083238299244645886" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fae5e54bd1c74a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9237089280243706246" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7395229539430360151" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "99" + } + ] + }, + "cborHex": "9f9fbf1345827910751241b11be6726ccb302c704affd8669f1b48b89fe47c2ce40e9f45b3ee8906f91b18c2b699581fbeeb1b03b186e7eda3079d1b624cb7b45deb4dfe416dffffff47fae5e54bd1c74a9f1b8030bbc29b7ea98680d8669f1b66a12215a238e4579f090dffff1bfffffffffffffff1ff4199ff", + "cborBytes": [ + 159, 159, 191, 19, 69, 130, 121, 16, 117, 18, 65, 177, 27, 230, 114, 108, 203, 48, 44, 112, 74, 255, 216, 102, + 159, 27, 72, 184, 159, 228, 124, 44, 228, 14, 159, 69, 179, 238, 137, 6, 249, 27, 24, 194, 182, 153, 88, 31, 190, + 235, 27, 3, 177, 134, 231, 237, 163, 7, 157, 27, 98, 76, 183, 180, 93, 235, 77, 254, 65, 109, 255, 255, 255, 71, + 250, 229, 229, 75, 209, 199, 74, 159, 27, 128, 48, 187, 194, 155, 126, 169, 134, 128, 216, 102, 159, 27, 102, 161, + 34, 21, 162, 56, 228, 87, 159, 9, 13, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 241, 255, 65, 153, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1234, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3659ace9ce51b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13595829925202163290" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f121219a9b1955b00febcc3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18434142061730873641" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c29d99024" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d4c57c8f9350e6114cc9d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15313573089291876151" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8652" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fcc0d82066b69" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abcf883366f4176b69ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5652304543508812662" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf473659ace9ce51b61bbcae17487e4cf65a4c5f121219a9b1955b00febcc31bffd33a89708e41294272c8455c29d990244b7d4c57c8f9350e6114cc9d1bd484bd9705393737428652479fcc0d82066b694aabcf883366f4176b69ae1b4e710508fe2b5376ffffff", + "cborBytes": [ + 159, 159, 191, 71, 54, 89, 172, 233, 206, 81, 182, 27, 188, 174, 23, 72, 126, 76, 246, 90, 76, 95, 18, 18, 25, + 169, 177, 149, 91, 0, 254, 188, 195, 27, 255, 211, 58, 137, 112, 142, 65, 41, 66, 114, 200, 69, 92, 41, 217, 144, + 36, 75, 125, 76, 87, 200, 249, 53, 14, 97, 20, 204, 157, 27, 212, 132, 189, 151, 5, 57, 55, 55, 66, 134, 82, 71, + 159, 204, 13, 130, 6, 107, 105, 74, 171, 207, 136, 51, 102, 244, 23, 107, 105, 174, 27, 78, 113, 5, 8, 254, 43, + 83, 118, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1235, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "67" + } + ] + }, + "cborHex": "9f4167ff", + "cborBytes": [159, 65, 103, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1236, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "949a2eaf63c6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3729" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4091683398581839365" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1354514068113599861" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71c22742299fcb3578a23e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4738433712353173020" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3903643759163518454" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13643004288694949902" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6260" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14721970648990832169" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17617514293574310926" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14514202550135330964" + } + } + ] + } + ] + }, + "cborHex": "9f9f46949a2eaf63c6ff4237299f1b38c8945f51d56605bf1b12cc335e512e2d754b71c22742299fcb3578a23e1b41c24c5b288bde1c1b362c87510a9cadf61bbd55b01de8cb180e4262601bcc4ef24e0ed356291bf47dfbe88ddd1c0eff1bc96cce51dee29894ffff", + "cborBytes": [ + 159, 159, 70, 148, 154, 46, 175, 99, 198, 255, 66, 55, 41, 159, 27, 56, 200, 148, 95, 81, 213, 102, 5, 191, 27, + 18, 204, 51, 94, 81, 46, 45, 117, 75, 113, 194, 39, 66, 41, 159, 203, 53, 120, 162, 62, 27, 65, 194, 76, 91, 40, + 139, 222, 28, 27, 54, 44, 135, 81, 10, 156, 173, 246, 27, 189, 85, 176, 29, 232, 203, 24, 14, 66, 98, 96, 27, 204, + 78, 242, 78, 14, 211, 86, 41, 27, 244, 125, 251, 232, 141, 221, 28, 14, 255, 27, 201, 108, 206, 81, 222, 226, 152, + 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1237, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1993313667309612300" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4107296783" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c81fefd554d4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10771154097328762414" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17648348518829577747" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13242539360165116213" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d03660d100d13c" + } + ] + }, + "cborHex": "9f1b1ba9ac3829ebad0c4541072967839f9f46c81fefd554d41b957ad39560462e2e1bf4eb87791120d6131bb7c6f362d6c53935ffff47d03660d100d13cff", + "cborBytes": [ + 159, 27, 27, 169, 172, 56, 41, 235, 173, 12, 69, 65, 7, 41, 103, 131, 159, 159, 70, 200, 31, 239, 213, 84, 212, + 27, 149, 122, 211, 149, 96, 70, 46, 46, 27, 244, 235, 135, 121, 17, 32, 214, 19, 27, 183, 198, 243, 98, 214, 197, + 57, 53, 255, 255, 71, 208, 54, 96, 209, 0, 209, 60, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1238, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b02494ac33f87014460f94" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3519264855956481873" + } + }, + { + "_tag": "ByteArray", + "bytearray": "51b3ef3688c43951d0f908ba" + }, + { + "_tag": "ByteArray", + "bytearray": "9ec0f8fe" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4014378898924142055" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "13d685" + }, + { + "_tag": "ByteArray", + "bytearray": "c5" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18015025580562822876" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "67fe17" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e97b73e9707c4d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d71a4" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06" + } + ] + }, + "cborHex": "9f9f809f4bb02494ac33f87014460f941b30d6f0bd99cd67514c51b3ef3688c43951d0f908ba449ec0f8feffff9fd8669f1b37b5f056e8327de79f4313d68541c5ffffd8669f1bfa023a515d05b6dc9f4367fe17ffffffbf410241fc47e97b73e9707c4d434d71a4ff034106ff", + "cborBytes": [ + 159, 159, 128, 159, 75, 176, 36, 148, 172, 51, 248, 112, 20, 70, 15, 148, 27, 48, 214, 240, 189, 153, 205, 103, + 81, 76, 81, 179, 239, 54, 136, 196, 57, 81, 208, 249, 8, 186, 68, 158, 192, 248, 254, 255, 255, 159, 216, 102, + 159, 27, 55, 181, 240, 86, 232, 50, 125, 231, 159, 67, 19, 214, 133, 65, 197, 255, 255, 216, 102, 159, 27, 250, 2, + 58, 81, 93, 5, 182, 220, 159, 67, 103, 254, 23, 255, 255, 255, 191, 65, 2, 65, 252, 71, 233, 123, 115, 233, 112, + 124, 77, 67, 77, 113, 164, 255, 3, 65, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1239, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1361389920475010997" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8057271940973567188" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9840926591964900720" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16405465576093831647" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11954025868660393133" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2576926619519827800" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85067f8e39a225" + }, + { + "_tag": "ByteArray", + "bytearray": "93ee3004146f88b8350c1c3f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16546389629015661681" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "356539f161" + }, + { + "_tag": "ByteArray", + "bytearray": "e00d9762" + }, + { + "_tag": "ByteArray", + "bytearray": "96f716f4f51448f4c3" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2527922231655033325" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c0daf768c619c75d6da" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3097601571028599926" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15ab7abd19292866fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17055399668662134217" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "207ac37fe35d82f4" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "489024811283758102" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4354089967265616015" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25c7c11a43ed2625cfa0b5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4733248593269825547" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe20b5120f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5715350040853527830" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6c91e72a6c138d6410cb715" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10661484462705056150" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76d5ab63443e49" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10812570772220378900" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a693af083a8445" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17b77f31b7534735fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d77a45446" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16225100961118184257" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90621a6f4092b4ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c61afeee8b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb9e43" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5718420503535966678" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1a3850e53" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4870052628282911273" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f56f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bcbba80ea528c8a4cb1347c" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7475233976555621063" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3330703423496604923" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b12e4a0eb72b5d7b59fa01b6fd12e241c739cd41b8891fe988ec36d70ffff9f9f1be3abec0585f8d1df1ba5e53b31415544ad1b23c3151b78ba3f584785067f8e39a2254c93ee3004146f88b8350c1c3fffd8669f1be5a095b378af9c719f45356539f16144e00d97624996f716f4f51448f4c3ffffff9fbf1b2314fbe04d9c69ed4a0c0daf768c619c75d6da1b2afce43790da04764915ab7abd19292866fc1becb0f3a2a0ebe5c948207ac37fe35d82f4ff1b06c95d7992ebbc16bf1b3c6cd5c19af5908f4b25c7c11a43ed2625cfa0b51b41afe0848b77200b45fe20b5120f1b4f510094b816bd164cf6c91e72a6c138d6410cb7151b93f533a1c1e199964776d5ab63443e491b960df7d472f77f1447a693af083a8445ffbf4917b77f31b7534735fa4278b5456d77a454461be12b235c204c63414890621a6f4092b4ab45c61afeee8b43cb9e431b4f5be926859259d645e1a3850e531b4395e7101242aa2942f56f4c7bcbba80ea528c8a4cb1347cffa0ffa09f9f1b67bd5db239874ac7ff1b2e39091de9b14cfbffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 18, 228, 160, 235, 114, 181, 215, 181, 159, 160, 27, 111, 209, 46, 36, 28, 115, 156, 212, + 27, 136, 145, 254, 152, 142, 195, 109, 112, 255, 255, 159, 159, 27, 227, 171, 236, 5, 133, 248, 209, 223, 27, 165, + 229, 59, 49, 65, 85, 68, 173, 27, 35, 195, 21, 27, 120, 186, 63, 88, 71, 133, 6, 127, 142, 57, 162, 37, 76, 147, + 238, 48, 4, 20, 111, 136, 184, 53, 12, 28, 63, 255, 216, 102, 159, 27, 229, 160, 149, 179, 120, 175, 156, 113, + 159, 69, 53, 101, 57, 241, 97, 68, 224, 13, 151, 98, 73, 150, 247, 22, 244, 245, 20, 72, 244, 195, 255, 255, 255, + 159, 191, 27, 35, 20, 251, 224, 77, 156, 105, 237, 74, 12, 13, 175, 118, 140, 97, 156, 117, 214, 218, 27, 42, 252, + 228, 55, 144, 218, 4, 118, 73, 21, 171, 122, 189, 25, 41, 40, 102, 252, 27, 236, 176, 243, 162, 160, 235, 229, + 201, 72, 32, 122, 195, 127, 227, 93, 130, 244, 255, 27, 6, 201, 93, 121, 146, 235, 188, 22, 191, 27, 60, 108, 213, + 193, 154, 245, 144, 143, 75, 37, 199, 193, 26, 67, 237, 38, 37, 207, 160, 181, 27, 65, 175, 224, 132, 139, 119, + 32, 11, 69, 254, 32, 181, 18, 15, 27, 79, 81, 0, 148, 184, 22, 189, 22, 76, 246, 201, 30, 114, 166, 193, 56, 214, + 65, 12, 183, 21, 27, 147, 245, 51, 161, 193, 225, 153, 150, 71, 118, 213, 171, 99, 68, 62, 73, 27, 150, 13, 247, + 212, 114, 247, 127, 20, 71, 166, 147, 175, 8, 58, 132, 69, 255, 191, 73, 23, 183, 127, 49, 183, 83, 71, 53, 250, + 66, 120, 181, 69, 109, 119, 164, 84, 70, 27, 225, 43, 35, 92, 32, 76, 99, 65, 72, 144, 98, 26, 111, 64, 146, 180, + 171, 69, 198, 26, 254, 238, 139, 67, 203, 158, 67, 27, 79, 91, 233, 38, 133, 146, 89, 214, 69, 225, 163, 133, 14, + 83, 27, 67, 149, 231, 16, 18, 66, 170, 41, 66, 245, 111, 76, 123, 203, 186, 128, 234, 82, 140, 138, 76, 177, 52, + 124, 255, 160, 255, 160, 159, 159, 27, 103, 189, 93, 178, 57, 135, 74, 199, 255, 27, 46, 57, 9, 29, 233, 177, 76, + 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1240, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1839787703777145125" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8216945372461597845" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0307fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6032388377290830634" + } + } + ] + }, + "cborHex": "9f1b19883d2b41c4b125d905039f0b9f0dffff1b72087447f05d0495430307fb1b53b75944a79d732aff", + "cborBytes": [ + 159, 27, 25, 136, 61, 43, 65, 196, 177, 37, 217, 5, 3, 159, 11, 159, 13, 255, 255, 27, 114, 8, 116, 71, 240, 93, + 4, 149, 67, 3, 7, 251, 27, 83, 183, 89, 68, 167, 157, 115, 42, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1241, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10390359311586187439" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "577567727731054417" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8324395986006263110" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9918347899486229704" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1b9031f8be4fc458af9f1b0803eec9cd239751ff1b7386320b73974546d8669f1b89a50cdd6b9e54c880ffff", + "cborBytes": [ + 159, 27, 144, 49, 248, 190, 79, 196, 88, 175, 159, 27, 8, 3, 238, 201, 205, 35, 151, 81, 255, 27, 115, 134, 50, + 11, 115, 151, 69, 70, 216, 102, 159, 27, 137, 165, 12, 221, 107, 158, 84, 200, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1242, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10535728885253572313" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55542ad7105fc755f2a9e2e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15486231384998754215" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9082056015374220176" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1312807838783186744" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13588940951599866404" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8006135134009035732" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13629486336863459829" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4aa6b2cb255c83df78a2b194" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "747072203051594916" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6655647732673327545" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "50a9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07a6c4d423fa878601" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e3b179c58b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "33a3b5caf9a8b594475e3f6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e2236e26e0fefbadf6a412f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f23b4eb3f3e96e42b60f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14230148971700845324" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf5e32b0ba2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6280799633025236106" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3952637758228407813" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14665438592824287036" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7043523118060861833" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1374d6" + }, + { + "_tag": "ByteArray", + "bytearray": "c895de10fbdc53c133e4" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2028983440227578970" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "90" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a95436db7198" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17231572545913165982" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "caf00073259d" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "235173788759767734" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1a7f6b1c41a22d2df2746a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17724865334186995762" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2703" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1b92366d99b75c86d94c55542ad7105fc755f2a9e2e81bd6ea2565245b37a71b7e09f1d3c2947b90d8669f1b123807c6190527389f1bbc959dcc55de62241b6f1b817c6e620bd41bbd25a99c7bc959f54c4aa6b2cb255c83df78a2b1941b0a5e2235e47574a4ffffffd8669f1b5c5d9c598820b1b99f4250a9bf4907a6c4d423fa878601467e3b179c58b94c33a3b5caf9a8b594475e3f6d4c0e2236e26e0fefbadf6a412f4b6f23b4eb3f3e96e42b60f31bc57ba5185f1e7b0c46cf5e32b0ba2d1b5729e1fd37df7c8affd8669f1b36da9719610026059f1bcb861ab308989f3cffff1b61bf9ef52b44f9899f431374d64ac895de10fbdc53c133e4ffffffd8669f1b1c2865b059ea345a9fbf419046a95436db7198ff1bef22d7ef0887189e9f46caf00073259dffffffd8669f1b034381509b823ab69f9f4b1a7f6b1c41a22d2df2746a1bf5fb5f1c6fd9f032422703ffffffff", + "cborBytes": [ + 159, 159, 27, 146, 54, 109, 153, 183, 92, 134, 217, 76, 85, 84, 42, 215, 16, 95, 199, 85, 242, 169, 226, 232, 27, + 214, 234, 37, 101, 36, 91, 55, 167, 27, 126, 9, 241, 211, 194, 148, 123, 144, 216, 102, 159, 27, 18, 56, 7, 198, + 25, 5, 39, 56, 159, 27, 188, 149, 157, 204, 85, 222, 98, 36, 27, 111, 27, 129, 124, 110, 98, 11, 212, 27, 189, 37, + 169, 156, 123, 201, 89, 245, 76, 74, 166, 178, 203, 37, 92, 131, 223, 120, 162, 177, 148, 27, 10, 94, 34, 53, 228, + 117, 116, 164, 255, 255, 255, 216, 102, 159, 27, 92, 93, 156, 89, 136, 32, 177, 185, 159, 66, 80, 169, 191, 73, 7, + 166, 196, 212, 35, 250, 135, 134, 1, 70, 126, 59, 23, 156, 88, 185, 76, 51, 163, 181, 202, 249, 168, 181, 148, 71, + 94, 63, 109, 76, 14, 34, 54, 226, 110, 15, 239, 186, 223, 106, 65, 47, 75, 111, 35, 180, 235, 63, 62, 150, 228, + 43, 96, 243, 27, 197, 123, 165, 24, 95, 30, 123, 12, 70, 207, 94, 50, 176, 186, 45, 27, 87, 41, 225, 253, 55, 223, + 124, 138, 255, 216, 102, 159, 27, 54, 218, 151, 25, 97, 0, 38, 5, 159, 27, 203, 134, 26, 179, 8, 152, 159, 60, + 255, 255, 27, 97, 191, 158, 245, 43, 68, 249, 137, 159, 67, 19, 116, 214, 74, 200, 149, 222, 16, 251, 220, 83, + 193, 51, 228, 255, 255, 255, 216, 102, 159, 27, 28, 40, 101, 176, 89, 234, 52, 90, 159, 191, 65, 144, 70, 169, 84, + 54, 219, 113, 152, 255, 27, 239, 34, 215, 239, 8, 135, 24, 158, 159, 70, 202, 240, 0, 115, 37, 157, 255, 255, 255, + 216, 102, 159, 27, 3, 67, 129, 80, 155, 130, 58, 182, 159, 159, 75, 26, 127, 107, 28, 65, 162, 45, 45, 242, 116, + 106, 27, 245, 251, 95, 28, 111, 217, 240, 50, 66, 39, 3, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1243, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03756d00" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3298432379040694146" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9223896517143414350" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07f621e6e5b2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8570642455376782572" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14636141315906719632" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef1e0138" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02f80e95fefa02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11902130002279160264" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9afbfd642275cfb4056284" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf004403756d00021b2dc662c5dc5dff82101b8001dd03154bc64e114607f621e6e5b21b76f109e7699d64ec0a1bcb1e04fb3109cf9044ef1e0138ffbf4702f80e95fefa021ba52cdc2d485e59c84b9afbfd642275cfb40562841bfffffffffffffffbffff", + "cborBytes": [ + 159, 191, 0, 68, 3, 117, 109, 0, 2, 27, 45, 198, 98, 197, 220, 93, 255, 130, 16, 27, 128, 1, 221, 3, 21, 75, 198, + 78, 17, 70, 7, 246, 33, 230, 229, 178, 27, 118, 241, 9, 231, 105, 157, 100, 236, 10, 27, 203, 30, 4, 251, 49, 9, + 207, 144, 68, 239, 30, 1, 56, 255, 191, 71, 2, 248, 14, 149, 254, 250, 2, 27, 165, 44, 220, 45, 72, 94, 89, 200, + 75, 154, 251, 253, 100, 34, 117, 207, 180, 5, 98, 132, 27, 255, 255, 255, 255, 255, 255, 255, 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1244, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bcdb65" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15249736616444760185" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ed55264b0fe72cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44fab2f8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6dc8165195caff1772" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15926922729972813460" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f656bf48b53794e499baa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13921764787058872626" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8645b698fffc63c935" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd93b694d85d8aedcb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92600800" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8515410293470400457" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c846fa222c8de154" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6019871488538940907" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6273632517602511774" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "71c2fef79b87cefc8aa840" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "794916289450210769" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7070550a61ab34860cb0ef" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2007573690039061760" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5933210911479343089" + } + }, + { + "_tag": "ByteArray", + "bytearray": "08f37dbb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17566449548117944449" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13845052278504870874" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d2d69310e754685c44782d35" + } + ] + } + ] + }, + "cborHex": "9f43bcdb65d8669f1bd3a1f2a7f57510799fbf485ed55264b0fe72cc4444fab2f8496dc8165195caff17721bdd07cbd6a51fce944b7f656bf48b53794e499baa1bc1340b502b2f9132498645b698fffc63c93549dd93b694d85d8aedcb44926008001b762cd08b9b020fc948c846fa222c8de1541b538ae13963dd95ebff1b57106b891f098b9e9f4b71c2fef79b87cefc8aa8401b0b081c2752d9f5d1ffffff9f4b7070550a61ab34860cb0ef1b1bdc55a26f32cd00809f1b5256ffe37432a7f14408f37dbb1bf3c890cb006428811bc02381b16cfed3daff4cd2d69310e754685c44782d35ffff", + "cborBytes": [ + 159, 67, 188, 219, 101, 216, 102, 159, 27, 211, 161, 242, 167, 245, 117, 16, 121, 159, 191, 72, 94, 213, 82, 100, + 176, 254, 114, 204, 68, 68, 250, 178, 248, 73, 109, 200, 22, 81, 149, 202, 255, 23, 114, 27, 221, 7, 203, 214, + 165, 31, 206, 148, 75, 127, 101, 107, 244, 139, 83, 121, 78, 73, 155, 170, 27, 193, 52, 11, 80, 43, 47, 145, 50, + 73, 134, 69, 182, 152, 255, 252, 99, 201, 53, 73, 221, 147, 182, 148, 216, 93, 138, 237, 203, 68, 146, 96, 8, 0, + 27, 118, 44, 208, 139, 155, 2, 15, 201, 72, 200, 70, 250, 34, 44, 141, 225, 84, 27, 83, 138, 225, 57, 99, 221, + 149, 235, 255, 27, 87, 16, 107, 137, 31, 9, 139, 158, 159, 75, 113, 194, 254, 247, 155, 135, 206, 252, 138, 168, + 64, 27, 11, 8, 28, 39, 82, 217, 245, 209, 255, 255, 255, 159, 75, 112, 112, 85, 10, 97, 171, 52, 134, 12, 176, + 239, 27, 27, 220, 85, 162, 111, 50, 205, 0, 128, 159, 27, 82, 86, 255, 227, 116, 50, 167, 241, 68, 8, 243, 125, + 187, 27, 243, 200, 144, 203, 0, 100, 40, 129, 27, 192, 35, 129, 177, 108, 254, 211, 218, 255, 76, 210, 214, 147, + 16, 231, 84, 104, 92, 68, 120, 45, 53, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1245, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3854" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3803513904329587221" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf4238541b34c8cbbe7dd2fa15ffa0ff", + "cborBytes": [159, 191, 66, 56, 84, 27, 52, 200, 203, 190, 125, 210, 250, 21, 255, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1246, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17019669853033908825" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13775730968014071432" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abe9cf24bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e594a6f2daf5250c5283" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac1c3563932dd19979ae6c2e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16445092553219676871" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af67a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f884d71bd90ac8" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9123594782045441088" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf1bec32038ea882ca591bbf2d3a5415d3a68845abe9cf24bc4ae594a6f2daf5250c52834cac1c3563932dd19979ae6c2e1be438b48c1d149ac743af67a947f884d71bd90ac8ff1b7e9d851d8a6d0c40a0ff", + "cborBytes": [ + 159, 191, 27, 236, 50, 3, 142, 168, 130, 202, 89, 27, 191, 45, 58, 84, 21, 211, 166, 136, 69, 171, 233, 207, 36, + 188, 74, 229, 148, 166, 242, 218, 245, 37, 12, 82, 131, 76, 172, 28, 53, 99, 147, 45, 209, 153, 121, 174, 108, 46, + 27, 228, 56, 180, 140, 29, 20, 154, 199, 67, 175, 103, 169, 71, 248, 132, 215, 27, 217, 10, 200, 255, 27, 126, + 157, 133, 29, 138, 109, 12, 64, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1247, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7240098218285596144" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ae34752ff00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abad5a40dc04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e67bb17a027c03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12646349916178213910" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7a60753" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66a9" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17593041647271918699" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8104964122362384056" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7d05494da7d94624" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bb" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "639429688904610991" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8647913111517388329" + } + }, + { + "_tag": "ByteArray", + "bytearray": "354d05fb00d77a4d3d24" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1504444207413613121" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16316833741704047967" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6139842728547964869" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e10257fd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16555276246609319861" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f192cbdca749e84c6c6482" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8608461520853041059" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6eaacb" + }, + { + "_tag": "ByteArray", + "bytearray": "8900c835dcd5f127ed5f" + }, + { + "_tag": "ByteArray", + "bytearray": "744064fec257df0d2fd60d" + }, + { + "_tag": "ByteArray", + "bytearray": "047388" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8fd9" + }, + { + "_tag": "ByteArray", + "bytearray": "832f0d82" + }, + { + "_tag": "ByteArray", + "bytearray": "938533ba531c2b" + }, + { + "_tag": "ByteArray", + "bytearray": "0617b4" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4173927105561801497" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3892710809297598330" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a6d5ebdab20482ff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3117587524066801146" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9476915688657481691" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12962461674431319844" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11168585755203727988" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4639199447321173779" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a415427fc6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17035972766465035017" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09942c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3633627888228229337" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16880807787342637769" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14449925850075763559" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6c0ee405ea5f6e294deeaf03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14917044661767793217" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf421c491b6479fef847d9fdf0469ae34752ff0046abad5a40dc0447e67bb17a027c031baf80dc3edb17ec1644f7a607534266a9ffbf1bf4270a2a904bbc6b1b707a9ded66b20eb8ff487d05494da7d94624ff41bb9fd8669f1b08dfb5ea09ff74af9f1b78038f28046fde294a354d05fb00d77a4d3d241b14e0dc09274852411be27109d67960ad5fffffbf1b55351a6e6bddd7c544e10257fd1be5c028085d9c57b54bf192cbdca749e84c6c6482ffa0d8669f1b77776624c5107fa39f436eaacb4a8900c835dcd5f127ed5f4b744064fec257df0d2fd60d43047388ffff9f428fd944832f0d8247938533ba531c2b430617b4ffff1b39ecc4968d62b3199fd8669f1b3605afdb4981b77a9f48a6d5ebdab20482ff1b2b43e555e030f5fa1b8384c49ba4c16fdb1bb3e3ea36ff180f241b9afec9921667f274ffffd8669f1b4061bf515bc45f139f45a415427fc61bec6beef87c608b094309942c1b326d3d5003cbe0d9ffffd8669f1bea44ad3e8634aac99f1bc88873006c8013674c6c0ee405ea5f6e294deeaf031bcf03fd16034e6a41ffffffff", + "cborBytes": [ + 159, 159, 191, 66, 28, 73, 27, 100, 121, 254, 248, 71, 217, 253, 240, 70, 154, 227, 71, 82, 255, 0, 70, 171, 173, + 90, 64, 220, 4, 71, 230, 123, 177, 122, 2, 124, 3, 27, 175, 128, 220, 62, 219, 23, 236, 22, 68, 247, 166, 7, 83, + 66, 102, 169, 255, 191, 27, 244, 39, 10, 42, 144, 75, 188, 107, 27, 112, 122, 157, 237, 102, 178, 14, 184, 255, + 72, 125, 5, 73, 77, 167, 217, 70, 36, 255, 65, 187, 159, 216, 102, 159, 27, 8, 223, 181, 234, 9, 255, 116, 175, + 159, 27, 120, 3, 143, 40, 4, 111, 222, 41, 74, 53, 77, 5, 251, 0, 215, 122, 77, 61, 36, 27, 20, 224, 220, 9, 39, + 72, 82, 65, 27, 226, 113, 9, 214, 121, 96, 173, 95, 255, 255, 191, 27, 85, 53, 26, 110, 107, 221, 215, 197, 68, + 225, 2, 87, 253, 27, 229, 192, 40, 8, 93, 156, 87, 181, 75, 241, 146, 203, 220, 167, 73, 232, 76, 108, 100, 130, + 255, 160, 216, 102, 159, 27, 119, 119, 102, 36, 197, 16, 127, 163, 159, 67, 110, 170, 203, 74, 137, 0, 200, 53, + 220, 213, 241, 39, 237, 95, 75, 116, 64, 100, 254, 194, 87, 223, 13, 47, 214, 13, 67, 4, 115, 136, 255, 255, 159, + 66, 143, 217, 68, 131, 47, 13, 130, 71, 147, 133, 51, 186, 83, 28, 43, 67, 6, 23, 180, 255, 255, 27, 57, 236, 196, + 150, 141, 98, 179, 25, 159, 216, 102, 159, 27, 54, 5, 175, 219, 73, 129, 183, 122, 159, 72, 166, 213, 235, 218, + 178, 4, 130, 255, 27, 43, 67, 229, 85, 224, 48, 245, 250, 27, 131, 132, 196, 155, 164, 193, 111, 219, 27, 179, + 227, 234, 54, 255, 24, 15, 36, 27, 154, 254, 201, 146, 22, 103, 242, 116, 255, 255, 216, 102, 159, 27, 64, 97, + 191, 81, 91, 196, 95, 19, 159, 69, 164, 21, 66, 127, 198, 27, 236, 107, 238, 248, 124, 96, 139, 9, 67, 9, 148, 44, + 27, 50, 109, 61, 80, 3, 203, 224, 217, 255, 255, 216, 102, 159, 27, 234, 68, 173, 62, 134, 52, 170, 201, 159, 27, + 200, 136, 115, 0, 108, 128, 19, 103, 76, 108, 14, 228, 5, 234, 95, 110, 41, 77, 238, 175, 3, 27, 207, 3, 253, 22, + 3, 78, 106, 65, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1248, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + "cborHex": "9f412a10ff", + "cborBytes": [159, 65, 42, 16, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1249, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0970c9d295da9ffdf85c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "017a6c49fe28fb8e802c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9258204302381457477" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6989657295134825498" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a9dce0c3c27bb829eb4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5b098b4efd006388c64" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ceb0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17480417469502996446" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e27ce985eef36e099510" + } + ] + } + ] + }, + "cborHex": "9fbf4a0970c9d295da9ffdf85c1bfffffffffffffff9ff9f4a017a6c49fe28fb8e802cbf1b807bbfc2cd70a0451b61004046f23a9c1a4a4a9dce0c3c27bb829eb44ac5b098b4efd006388c6442ceb01bf296eb12c3423fdeff4ae27ce985eef36e099510ffff", + "cborBytes": [ + 159, 191, 74, 9, 112, 201, 210, 149, 218, 159, 253, 248, 92, 27, 255, 255, 255, 255, 255, 255, 255, 249, 255, 159, + 74, 1, 122, 108, 73, 254, 40, 251, 142, 128, 44, 191, 27, 128, 123, 191, 194, 205, 112, 160, 69, 27, 97, 0, 64, + 70, 242, 58, 156, 26, 74, 74, 157, 206, 12, 60, 39, 187, 130, 158, 180, 74, 197, 176, 152, 180, 239, 208, 6, 56, + 140, 100, 66, 206, 176, 27, 242, 150, 235, 18, 195, 66, 63, 222, 255, 74, 226, 124, 233, 133, 238, 243, 110, 9, + 149, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1250, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "07d6bba30c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8034927093996043352" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1512660256266679839" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14761717343592596293" + } + } + ] + }, + "cborHex": "9f9f4507d6bba30c1b6f81cb9f01cbbc581b14fe0c7d18a0761fff1bccdc27b68b8f4345ff", + "cborBytes": [ + 159, 159, 69, 7, 214, 187, 163, 12, 27, 111, 129, 203, 159, 1, 203, 188, 88, 27, 20, 254, 12, 125, 24, 160, 118, + 31, 255, 27, 204, 220, 39, 182, 139, 143, 67, 69, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1251, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d62291088c3c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4126768718364883011" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13432728120420538532" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1151147290988198129" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "27b5183c8c8c6db2" + }, + { + "_tag": "ByteArray", + "bytearray": "c7652046542fe0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4054214389263570050" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12461326901717670874" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18434969489467828197" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4547517350713074277" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8075758183583758143" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5d474e22a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15679852899590762538" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14c7062836f5479dc9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db7a017117158dc81d94" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "438030dc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9043800114950648197" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "192c1da6f631" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dcd14fcb375b2fbe4217" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ef73a7548f4edc2e46937ee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d9facd81ff07835c7aed0e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14361694885108225739" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "970005069e2913304b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a154f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "acee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e875a078f48a1cac48" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e847158aed65" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31094c7280" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6340121921349928007" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6d5bf0665cec34da4f5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7955140597128768039" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16411876493710927541" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15632335148245198873" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3012302220808923867" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16213272120675087462" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2713136346209992922" + } + } + } + ] + } + ] + }, + "cborHex": "9f46d62291088c3cd8669f1b39453a48e85538439f1bba6aa30e4e1118a41b0ff9b25cb38138f1ffff9f4827b5183c8c8c6db247c7652046542fe0bf1b38437681c35514821bacef86cb4ee69bda1bffd62b13f8e4e7e51b3f1c06efcb2da2654224b31b7012db47e076b73f45d5d474e22a1bd99a0723027c702affbf4914c7062836f5479dc94adb7a017117158dc81d9444438030dc1b7d820849d7453185ffbf46192c1da6f6314adcd14fcb375b2fbe42174c6ef73a7548f4edc2e46937ee41d64c8d9facd81ff07835c7aed0e61bc74efd680f6b96cb49970005069e2913304b438a154f42acee49e875a078f48a1cac4846e847158aed654531094c7280ffffbf1b57fca34bcabac4474ac6d5bf0665cec34da4f51b6e66563996262a271be3c2b2b7993926b51bd8f135fe610228191b29cdd8e8f36faadb1be1011d17979534661b25a6ff21cf0c40daffff", + "cborBytes": [ + 159, 70, 214, 34, 145, 8, 140, 60, 216, 102, 159, 27, 57, 69, 58, 72, 232, 85, 56, 67, 159, 27, 186, 106, 163, 14, + 78, 17, 24, 164, 27, 15, 249, 178, 92, 179, 129, 56, 241, 255, 255, 159, 72, 39, 181, 24, 60, 140, 140, 109, 178, + 71, 199, 101, 32, 70, 84, 47, 224, 191, 27, 56, 67, 118, 129, 195, 85, 20, 130, 27, 172, 239, 134, 203, 78, 230, + 155, 218, 27, 255, 214, 43, 19, 248, 228, 231, 229, 27, 63, 28, 6, 239, 203, 45, 162, 101, 66, 36, 179, 27, 112, + 18, 219, 71, 224, 118, 183, 63, 69, 213, 212, 116, 226, 42, 27, 217, 154, 7, 35, 2, 124, 112, 42, 255, 191, 73, + 20, 199, 6, 40, 54, 245, 71, 157, 201, 74, 219, 122, 1, 113, 23, 21, 141, 200, 29, 148, 68, 67, 128, 48, 220, 27, + 125, 130, 8, 73, 215, 69, 49, 133, 255, 191, 70, 25, 44, 29, 166, 246, 49, 74, 220, 209, 79, 203, 55, 91, 47, 190, + 66, 23, 76, 110, 247, 58, 117, 72, 244, 237, 194, 228, 105, 55, 238, 65, 214, 76, 141, 159, 172, 216, 31, 240, + 120, 53, 199, 174, 208, 230, 27, 199, 78, 253, 104, 15, 107, 150, 203, 73, 151, 0, 5, 6, 158, 41, 19, 48, 75, 67, + 138, 21, 79, 66, 172, 238, 73, 232, 117, 160, 120, 244, 138, 28, 172, 72, 70, 232, 71, 21, 138, 237, 101, 69, 49, + 9, 76, 114, 128, 255, 255, 191, 27, 87, 252, 163, 75, 202, 186, 196, 71, 74, 198, 213, 191, 6, 101, 206, 195, 77, + 164, 245, 27, 110, 102, 86, 57, 150, 38, 42, 39, 27, 227, 194, 178, 183, 153, 57, 38, 181, 27, 216, 241, 53, 254, + 97, 2, 40, 25, 27, 41, 205, 216, 232, 243, 111, 170, 219, 27, 225, 1, 29, 23, 151, 149, 52, 102, 27, 37, 166, 255, + 33, 207, 12, 64, 218, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1252, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11466494706384911418" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1274409186742267971" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15189285544905817110" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5911479923196878640" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17200514975847255561" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9588074594645921674" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29c39eee648b11fd4e54" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9822203902998172098" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13157526491006308078" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11359337313198266595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14175989380132040800" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b9f212c2ef0f83c3abf1b11af9c673a4470431bd2cb2eba10163c161b5209cbab7700df301beeb4813d01298e091b850faf0b45d14f8a4a29c39eee648b11fd4e541b884f7a68d5a951c21bb698eca1cb390eee1b9da4791a1d05d8e31bc4bb3b3bce7af060ffff", + "cborBytes": [ + 159, 27, 159, 33, 44, 46, 240, 248, 60, 58, 191, 27, 17, 175, 156, 103, 58, 68, 112, 67, 27, 210, 203, 46, 186, + 16, 22, 60, 22, 27, 82, 9, 203, 171, 119, 0, 223, 48, 27, 238, 180, 129, 61, 1, 41, 142, 9, 27, 133, 15, 175, 11, + 69, 209, 79, 138, 74, 41, 195, 158, 238, 100, 139, 17, 253, 78, 84, 27, 136, 79, 122, 104, 213, 169, 81, 194, 27, + 182, 152, 236, 161, 203, 57, 14, 238, 27, 157, 164, 121, 26, 29, 5, 216, 227, 27, 196, 187, 59, 59, 206, 122, 240, + 96, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1253, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b5659b603bdd1e5e5f42" + } + ] + }, + "cborHex": "9fa04ab5659b603bdd1e5e5f42ff", + "cborBytes": [159, 160, 74, 181, 101, 155, 96, 59, 221, 30, 94, 95, 66, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1254, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "34b298d1cee9c01993" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2de33c2761fef8fd3e0607fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f640301" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0102fa" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf4934b298d1cee9c019934c2de33c2761fef8fd3e0607fb443f640301430102faffffff", + "cborBytes": [ + 159, 159, 191, 73, 52, 178, 152, 209, 206, 233, 192, 25, 147, 76, 45, 227, 60, 39, 97, 254, 248, 253, 62, 6, 7, + 251, 68, 63, 100, 3, 1, 67, 1, 2, 250, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1255, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1949744683633657181" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c98520c75f425450b839a15" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12584803813307904312" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4279224408845782287" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aefe3ad524" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c32" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4f3ea53f0da228be202f5fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13142302774877849051" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17a689" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8492528102629972944" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3868b64f750aca80" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1612250605162330301" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1916db59" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9165042506135537499" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4035ac9f567ae55056377d7c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "956361c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1ee805347949fc22c82" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ff1278bad2394b99a34243e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c14bcdd7b4672a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4c0fc2feb8f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "505167259378804177" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10614833359998500690" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3416990992862389640" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1b0ee275a6b0c55d9fbf4c0c98520c75f425450b839a151baea634641c32f1384269fa1b3b62dbed736f0d0f45aefe3ad524428c324cc4f3ea53f0da228be202f5fa1bb662d6be2b3985db41d04317a689ffffff1b75db855062481bd0483868b64f750aca80d8669f1b165fdd62219bf8bd9fbf441916db591b7f30c599d190875b4c4035ac9f567ae55056377d7c4252c144956361c54aa1ee805347949fc22c824c9ff1278bad2394b99a34243e47c14bcdd7b4672a46e4c0fc2feb8f1b0702b6f2276e65d1ffd8669f1b934f76b37cad3f5280ff9f1b2f6b97343a45a588ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 27, 14, 226, 117, 166, 176, 197, 93, 159, 191, 76, 12, 152, 82, 12, 117, 244, 37, 69, 11, + 131, 154, 21, 27, 174, 166, 52, 100, 28, 50, 241, 56, 66, 105, 250, 27, 59, 98, 219, 237, 115, 111, 13, 15, 69, + 174, 254, 58, 213, 36, 66, 140, 50, 76, 196, 243, 234, 83, 240, 218, 34, 139, 226, 2, 245, 250, 27, 182, 98, 214, + 190, 43, 57, 133, 219, 65, 208, 67, 23, 166, 137, 255, 255, 255, 27, 117, 219, 133, 80, 98, 72, 27, 208, 72, 56, + 104, 182, 79, 117, 10, 202, 128, 216, 102, 159, 27, 22, 95, 221, 98, 33, 155, 248, 189, 159, 191, 68, 25, 22, 219, + 89, 27, 127, 48, 197, 153, 209, 144, 135, 91, 76, 64, 53, 172, 159, 86, 122, 229, 80, 86, 55, 125, 124, 66, 82, + 193, 68, 149, 99, 97, 197, 74, 161, 238, 128, 83, 71, 148, 159, 194, 44, 130, 76, 159, 241, 39, 139, 173, 35, 148, + 185, 154, 52, 36, 62, 71, 193, 75, 205, 215, 180, 103, 42, 70, 228, 192, 252, 47, 235, 143, 27, 7, 2, 182, 242, + 39, 110, 101, 209, 255, 216, 102, 159, 27, 147, 79, 118, 179, 124, 173, 63, 82, 128, 255, 159, 27, 47, 107, 151, + 52, 58, 69, 165, 136, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1256, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3462176317579003903" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "925394b7" + } + ] + } + ] + }, + "cborHex": "9f9f1b300c1f04771107ffa044925394b7ffff", + "cborBytes": [159, 159, 27, 48, 12, 31, 4, 119, 17, 7, 255, 160, 68, 146, 83, 148, 183, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1257, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12386296719189622396" + } + } + ] + }, + "cborHex": "9f031babe4f73d9de23e7cff", + "cborBytes": [159, 3, 27, 171, 228, 247, 61, 157, 226, 62, 124, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1258, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce2246269c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03fca7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f555e3451b5b201087" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf45ce2246269c4303fca749f555e3451b5b2010871bfffffffffffffff5ffd9050a8080ff", + "cborBytes": [ + 159, 191, 69, 206, 34, 70, 38, 156, 67, 3, 252, 167, 73, 245, 85, 227, 69, 27, 91, 32, 16, 135, 27, 255, 255, 255, + 255, 255, 255, 255, 245, 255, 217, 5, 10, 128, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1259, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16621962350141297418" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fff8" + } + ] + }, + "cborHex": "9fbf041be6ad12b0c616d30a0a41fcff42fff8ff", + "cborBytes": [159, 191, 4, 27, 230, 173, 18, 176, 198, 22, 211, 10, 10, 65, 252, 255, 66, 255, 248, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1260, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "670676802980353003" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37578f040253" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1210585115278071586" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0be444c879041f7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1424054905260116154" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82bec6d85e91808007" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1881231100068796751" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2401945845888573214" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3191189354686587032" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7790716964146883237" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13304111285440542869" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12930508283913376433" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cff8a454241ffeb30208b3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14073353667451759265" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9416586211161200370" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14072560129697874954" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12048546250893008803" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "595ac1d3ea455bc6c3748a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2907628234927712881" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11735598240004786847" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4d56f60fd81dd3ce4bb98" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15308521388834863283" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c7ed35fd" + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b094eb8ffb8bd13eb4637578f0402531b10ccdcbf9686572248c0be444c879041f71b13c3426430ae88ba4982bec6d85e918080071b1a1b79b7e404994f417f1b21556d0551e9df1e1b2c4961cf791a20981b6c1e2fcd4995aaa54185ff1bb8a1b2b9d4f2f8959fd8669f1bb37264c683e712b19f4bcff8a454241ffeb30208b31bc34e9898c2e72aa11b82ae6f44911ad6f21bc34bc6e0daf7840affffffd8669f1ba73508fab0579fa39f9f4b595ac1d3ea455bc6c3748a1b2859f87971c32a711ba2dd386be22f4a9f4be4d56f60fd81dd3ce4bb98ffd8669f1bd472cb1859f8b8b39f44c7ed35fdffffffffff", + "cborBytes": [ + 159, 191, 27, 9, 78, 184, 255, 184, 189, 19, 235, 70, 55, 87, 143, 4, 2, 83, 27, 16, 204, 220, 191, 150, 134, 87, + 34, 72, 192, 190, 68, 76, 135, 144, 65, 247, 27, 19, 195, 66, 100, 48, 174, 136, 186, 73, 130, 190, 198, 216, 94, + 145, 128, 128, 7, 27, 26, 27, 121, 183, 228, 4, 153, 79, 65, 127, 27, 33, 85, 109, 5, 81, 233, 223, 30, 27, 44, + 73, 97, 207, 121, 26, 32, 152, 27, 108, 30, 47, 205, 73, 149, 170, 165, 65, 133, 255, 27, 184, 161, 178, 185, 212, + 242, 248, 149, 159, 216, 102, 159, 27, 179, 114, 100, 198, 131, 231, 18, 177, 159, 75, 207, 248, 164, 84, 36, 31, + 254, 179, 2, 8, 179, 27, 195, 78, 152, 152, 194, 231, 42, 161, 27, 130, 174, 111, 68, 145, 26, 214, 242, 27, 195, + 75, 198, 224, 218, 247, 132, 10, 255, 255, 255, 216, 102, 159, 27, 167, 53, 8, 250, 176, 87, 159, 163, 159, 159, + 75, 89, 90, 193, 211, 234, 69, 91, 198, 195, 116, 138, 27, 40, 89, 248, 121, 113, 195, 42, 113, 27, 162, 221, 56, + 107, 226, 47, 74, 159, 75, 228, 213, 111, 96, 253, 129, 221, 60, 228, 187, 152, 255, 216, 102, 159, 27, 212, 114, + 203, 24, 89, 248, 184, 179, 159, 68, 199, 237, 53, 253, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1261, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2594756385305185777" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18109113876330695802" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3448569864438762548" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16435612654429084692" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14756643438038331235" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "832a428f2179" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e43feaf81" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d9791bde0ff1d86e6" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16249513601489831390" + }, + "fields": [] + } + ] + }, + "cborHex": "9f9fbf1b24026d2f50cacdf11bfb507f1fd3c9cc7a1b2fdbc80538fd4c341be41706a12d291c141bccca2105d95faf6346832a428f2179456e43feaf81491d9791bde0ff1d86e6ffffd8669f1be181de86e5ae05de80ffff", + "cborBytes": [ + 159, 159, 191, 27, 36, 2, 109, 47, 80, 202, 205, 241, 27, 251, 80, 127, 31, 211, 201, 204, 122, 27, 47, 219, 200, + 5, 56, 253, 76, 52, 27, 228, 23, 6, 161, 45, 41, 28, 20, 27, 204, 202, 33, 5, 217, 95, 175, 99, 70, 131, 42, 66, + 143, 33, 121, 69, 110, 67, 254, 175, 129, 73, 29, 151, 145, 189, 224, 255, 29, 134, 230, 255, 255, 216, 102, 159, + 27, 225, 129, 222, 134, 229, 174, 5, 222, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1262, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14033631343721719144" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e275d246621" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9600832006325900539" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85608922ac9d1d4af268e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8835569057632612817" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a901" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9608543943919031750" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb3e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "946177522009717397" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fb" + } + ] + } + ] + }, + "cborHex": "9f1bc2c1795a8f5225689fbf465e275d2466211b853d01d7a54194fb4b85608922ac9d1d4af268e51b7a9e3f3ebc9ff1d142a9011b855867cf0a0655c642fb3e1b0d217f7175d93a95ffff9f41fbffff", + "cborBytes": [ + 159, 27, 194, 193, 121, 90, 143, 82, 37, 104, 159, 191, 70, 94, 39, 93, 36, 102, 33, 27, 133, 61, 1, 215, 165, 65, + 148, 251, 75, 133, 96, 137, 34, 172, 157, 29, 74, 242, 104, 229, 27, 122, 158, 63, 62, 188, 159, 241, 209, 66, + 169, 1, 27, 133, 88, 103, 207, 10, 6, 85, 198, 66, 251, 62, 27, 13, 33, 127, 113, 117, 217, 58, 149, 255, 255, + 159, 65, 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1263, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15179465151513786552" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf0e1bd2a84b218c6678b8ffa0ff", + "cborBytes": [159, 191, 14, 27, 210, 168, 75, 33, 140, 102, 120, 184, 255, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1264, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2299817672980331403" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8481330504323176351" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10530338495910786380" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4551062979322007395" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11527357445453951560" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14846344582975007578" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13473908144767154390" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13155200574509512401" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13486276355664215896" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bde2f3d8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15856318651046519448" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2886826399097014635" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17357414737656009860" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12516979464660986612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4e24357524" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2777698578080335183" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0160aba1" + }, + { + "_tag": "ByteArray", + "bytearray": "6b0ed99bfc" + }, + { + "_tag": "ByteArray", + "bytearray": "b38e20caf4" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2231078530552037119" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9822129467794474411" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10679302121035906654" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebfc938045" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12337403245669374688" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4453f5c991000" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17679600931887842628" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16927786840186605246" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "36250e8e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b9aa0ffbde172545c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c7843392f4f3b55" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ba7222220e66d802155" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1cab61a51d262907c52" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c4a0e53f6c798c1550d7e" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17978674524953009633" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1213631593505089206" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16148765240563518746" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16409368136624800068" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3248997261551014120" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bbca4fe74ba4e4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4082360722078733320" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "764052952375106785" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b1fea97fd16287b8b80bf1b75b3bd285cde179f41361b92234711e562354c1b3f289faac8eb4f631b9ff96685a73cb2481bce08cfbd29452b5a1bbafcf011e116b8d61bb690a93928a776d11bbb28e0e4621d7f5844bde2f3d81bdc0cf5cd810762981b281011509e65c96bffd8669f1bf0e1ecbd891dd4849fd8669f1badb53e815bfa2af49f454e243575241b268c5e23cf96054f440160aba1456b0ed99bfc45b38e20caf4ffffbf1b1ef6621a4f8dfeff1b884f36b609c945ab1b943480b29d6bbe5e45ebfc9380451bab3742e2b4dfdae047e4453f5c9910001bf55a8f6083d705441beaeb9471a2dacebeff4436250e8ebf490b9aa0ffbde172545c480c7843392f4f3b554a0ba7222220e66d8021554ab1cab61a51d262907c5241854b0c4a0e53f6c798c1550d7effd8669f1bf9811539b0305de19f1b10d7af81130fe6b61be01bf06d2cf6cd1affffffffd8669f1be3b9c961342281449f9f1b2d16c1cba2f710e8ff47bbca4fe74ba4e4d8669f1b38a775728c8294089f1b0a9a761cafe81ce1ffffffffff", + "cborBytes": [ + 159, 27, 31, 234, 151, 253, 22, 40, 123, 139, 128, 191, 27, 117, 179, 189, 40, 92, 222, 23, 159, 65, 54, 27, 146, + 35, 71, 17, 229, 98, 53, 76, 27, 63, 40, 159, 170, 200, 235, 79, 99, 27, 159, 249, 102, 133, 167, 60, 178, 72, 27, + 206, 8, 207, 189, 41, 69, 43, 90, 27, 186, 252, 240, 17, 225, 22, 184, 214, 27, 182, 144, 169, 57, 40, 167, 118, + 209, 27, 187, 40, 224, 228, 98, 29, 127, 88, 68, 189, 226, 243, 216, 27, 220, 12, 245, 205, 129, 7, 98, 152, 27, + 40, 16, 17, 80, 158, 101, 201, 107, 255, 216, 102, 159, 27, 240, 225, 236, 189, 137, 29, 212, 132, 159, 216, 102, + 159, 27, 173, 181, 62, 129, 91, 250, 42, 244, 159, 69, 78, 36, 53, 117, 36, 27, 38, 140, 94, 35, 207, 150, 5, 79, + 68, 1, 96, 171, 161, 69, 107, 14, 217, 155, 252, 69, 179, 142, 32, 202, 244, 255, 255, 191, 27, 30, 246, 98, 26, + 79, 141, 254, 255, 27, 136, 79, 54, 182, 9, 201, 69, 171, 27, 148, 52, 128, 178, 157, 107, 190, 94, 69, 235, 252, + 147, 128, 69, 27, 171, 55, 66, 226, 180, 223, 218, 224, 71, 228, 69, 63, 92, 153, 16, 0, 27, 245, 90, 143, 96, + 131, 215, 5, 68, 27, 234, 235, 148, 113, 162, 218, 206, 190, 255, 68, 54, 37, 14, 142, 191, 73, 11, 154, 160, 255, + 189, 225, 114, 84, 92, 72, 12, 120, 67, 57, 47, 79, 59, 85, 74, 11, 167, 34, 34, 32, 230, 109, 128, 33, 85, 74, + 177, 202, 182, 26, 81, 210, 98, 144, 124, 82, 65, 133, 75, 12, 74, 14, 83, 246, 199, 152, 193, 85, 13, 126, 255, + 216, 102, 159, 27, 249, 129, 21, 57, 176, 48, 93, 225, 159, 27, 16, 215, 175, 129, 19, 15, 230, 182, 27, 224, 27, + 240, 109, 44, 246, 205, 26, 255, 255, 255, 255, 216, 102, 159, 27, 227, 185, 201, 97, 52, 34, 129, 68, 159, 159, + 27, 45, 22, 193, 203, 162, 247, 16, 232, 255, 71, 187, 202, 79, 231, 75, 164, 228, 216, 102, 159, 27, 56, 167, + 117, 114, 140, 130, 148, 8, 159, 27, 10, 154, 118, 28, 175, 232, 28, 225, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1265, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "18753c8f9e0bbc441469" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10442376323949942759" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ddb2105b62011e9678bf4d" + }, + { + "_tag": "ByteArray", + "bytearray": "d5f0b4cf3d29b53f9f688eb3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12711397802571897017" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2cf7a2fd56c6fe5ff234" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7bd712a1f706" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11875252669591672449" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14279737989248397818" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fbbeae27009" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7228241607611493982" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51713a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca487e87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c39fb0e0bd7582" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4ea0b3b1f7e0fe74a93" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0ea" + } + } + ] + } + ] + }, + "cborHex": "9fd87d9f4a18753c8f9e0bbc441469d8669f1b90eac5f0c7fc57e79f4bddb2105b62011e9678bf4d4cd5f0b4cf3d29b53f9f688eb31bb067f4f41cfa98b94a2cf7a2fd56c6fe5ff234ffff80467bd712a1f7069f417b1ba4cd5f629d0556811bc62bd20b3ecd31faffff80a0bf460fbbeae270091b644fdf71fc61ae5e4351713a412944ca487e8747c39fb0e0bd75824ad4ea0b3b1f7e0fe74a9342e0eaffff", + "cborBytes": [ + 159, 216, 125, 159, 74, 24, 117, 60, 143, 158, 11, 188, 68, 20, 105, 216, 102, 159, 27, 144, 234, 197, 240, 199, + 252, 87, 231, 159, 75, 221, 178, 16, 91, 98, 1, 30, 150, 120, 191, 77, 76, 213, 240, 180, 207, 61, 41, 181, 63, + 159, 104, 142, 179, 27, 176, 103, 244, 244, 28, 250, 152, 185, 74, 44, 247, 162, 253, 86, 198, 254, 95, 242, 52, + 255, 255, 128, 70, 123, 215, 18, 161, 247, 6, 159, 65, 123, 27, 164, 205, 95, 98, 157, 5, 86, 129, 27, 198, 43, + 210, 11, 62, 205, 49, 250, 255, 255, 128, 160, 191, 70, 15, 187, 234, 226, 112, 9, 27, 100, 79, 223, 113, 252, 97, + 174, 94, 67, 81, 113, 58, 65, 41, 68, 202, 72, 126, 135, 71, 195, 159, 176, 224, 189, 117, 130, 74, 212, 234, 11, + 59, 31, 126, 15, 231, 74, 147, 66, 224, 234, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1266, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3508404949907949422" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11205474381520060649" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "328108251281183206" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9312000787734576502" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5505146968701150621" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d605d69c8c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8606189658689784477" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6718250926410684378" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b6b6e1" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f30c9dd2c64b" + }, + { + "_tag": "ByteArray", + "bytearray": "b609da7abb3ab0" + }, + { + "_tag": "ByteArray", + "bytearray": "c33c17" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10435419319343056123" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2278370662518615463" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a1c33" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1393841110324597611" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10833487141156328767" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11333434187218334199" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8120852829265072559" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14706966695721868917" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14158414950844540476" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49a5439618cb253dbf99" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14958424735170572751" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1888149137896165782" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b30b05bb6af7c476e9fd8669f1b9b81d794b23e40e99f1b048dacb7557d51e61b813adf611d13bd761b4c66360021c0259d45d605d69c8cffffd8669f1b776f53e5a3d84a9d9f1b5d3c059f6ca5d7daffff43b6b6e180ff9f46f30c9dd2c64b47b609da7abb3ab043c33c17d8669f1b90d20e94ebb104fb9f1b1f9e660bd617eda7438a1c331b1357eb1ade3bd36bffff1b965847281762953fff1b9d4872589e6ab1f7bf1b70b3109f419211af1bcc19a449f6009e751bc47ccb621fab263c4a49a5439618cb253dbf991bcf97000b234231cf1b1a340da31742d196ffff", + "cborBytes": [ + 159, 27, 48, 176, 91, 182, 175, 124, 71, 110, 159, 216, 102, 159, 27, 155, 129, 215, 148, 178, 62, 64, 233, 159, + 27, 4, 141, 172, 183, 85, 125, 81, 230, 27, 129, 58, 223, 97, 29, 19, 189, 118, 27, 76, 102, 54, 0, 33, 192, 37, + 157, 69, 214, 5, 214, 156, 140, 255, 255, 216, 102, 159, 27, 119, 111, 83, 229, 163, 216, 74, 157, 159, 27, 93, + 60, 5, 159, 108, 165, 215, 218, 255, 255, 67, 182, 182, 225, 128, 255, 159, 70, 243, 12, 157, 210, 198, 75, 71, + 182, 9, 218, 122, 187, 58, 176, 67, 195, 60, 23, 216, 102, 159, 27, 144, 210, 14, 148, 235, 177, 4, 251, 159, 27, + 31, 158, 102, 11, 214, 23, 237, 167, 67, 138, 28, 51, 27, 19, 87, 235, 26, 222, 59, 211, 107, 255, 255, 27, 150, + 88, 71, 40, 23, 98, 149, 63, 255, 27, 157, 72, 114, 88, 158, 106, 177, 247, 191, 27, 112, 179, 16, 159, 65, 146, + 17, 175, 27, 204, 25, 164, 73, 246, 0, 158, 117, 27, 196, 124, 203, 98, 31, 171, 38, 60, 74, 73, 165, 67, 150, 24, + 203, 37, 61, 191, 153, 27, 207, 151, 0, 11, 35, 66, 49, 207, 27, 26, 52, 13, 163, 23, 66, 209, 150, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1267, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04241a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3230428280642238781" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b28f15" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15581050278814041408" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14360580411635890274" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9420acc95264515ce2f6fed6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2388614666513702677" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "60028c4a6ae6164ade" + } + ] + }, + "cborHex": "9fd9050680bf4304241a1b2cd4c967dc0e793d43b28f1541e9ff9fd8669f1bd83b02ad383645409f1bc74b07cc7bfd7862104c9420acc95264515ce2f6fed61b212610623ed65f15ffffa0ff4960028c4a6ae6164adeff", + "cborBytes": [ + 159, 217, 5, 6, 128, 191, 67, 4, 36, 26, 27, 44, 212, 201, 103, 220, 14, 121, 61, 67, 178, 143, 21, 65, 233, 255, + 159, 216, 102, 159, 27, 216, 59, 2, 173, 56, 54, 69, 64, 159, 27, 199, 75, 7, 204, 123, 253, 120, 98, 16, 76, 148, + 32, 172, 201, 82, 100, 81, 92, 226, 246, 254, 214, 27, 33, 38, 16, 98, 62, 214, 95, 21, 255, 255, 160, 255, 73, + 96, 2, 140, 74, 106, 230, 22, 74, 222, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1268, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14240686578157954628" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13197156766851764605" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b1a185195a5b13be" + }, + { + "_tag": "ByteArray", + "bytearray": "47873e1eaf70" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5291289087522289360" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3700539782639994905" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7992440133403314032" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff98e986b909b6db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d92f5f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39db56052d7d" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "823d85e98d8e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2982505853603405695" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fc9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8175411399010041636" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15949710852466165659" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9779344338271349288" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1520698534887538763" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bc5a114fe10c726449f9f1bb725b8286d57917d48b1a185195a5b13be4647873e1eaf70ffbf1b496e6f6401aab6d01b335af553757548191b6eead9f4a014877048ff98e986b909b6db43d92f5f4639db56052d7dffffff46823d85e98d8ebf1b2963fd45988ddf7f429fc91b7174e55a2aac3f241bdd58c183df70479b1b87b735dccae42a281b151a9b42ae6dc04bffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 197, 161, 20, 254, 16, 199, 38, 68, 159, 159, 27, 183, 37, 184, 40, 109, 87, 145, 125, 72, + 177, 161, 133, 25, 90, 91, 19, 190, 70, 71, 135, 62, 30, 175, 112, 255, 191, 27, 73, 110, 111, 100, 1, 170, 182, + 208, 27, 51, 90, 245, 83, 117, 117, 72, 25, 27, 110, 234, 217, 244, 160, 20, 135, 112, 72, 255, 152, 233, 134, + 185, 9, 182, 219, 67, 217, 47, 95, 70, 57, 219, 86, 5, 45, 125, 255, 255, 255, 70, 130, 61, 133, 233, 141, 142, + 191, 27, 41, 99, 253, 69, 152, 141, 223, 127, 66, 159, 201, 27, 113, 116, 229, 90, 42, 172, 63, 36, 27, 221, 88, + 193, 131, 223, 112, 71, 155, 27, 135, 183, 53, 220, 202, 228, 42, 40, 27, 21, 26, 155, 66, 174, 109, 192, 75, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1269, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dcd15905fac986" + } + ] + }, + "cborHex": "9f47dcd15905fac986ff", + "cborBytes": [159, 71, 220, 209, 89, 5, 250, 201, 134, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1270, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17358853038852411169" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1670714253123161176" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15916234511830745690" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6340776865203825787" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c6713b7b9fcd084ad180ac0c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6386274221202106801" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13316579253390497207" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11207595564859951743" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2583756343684092390" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14059703993883305111" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12822068528366682661" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6416907777856333127" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17818947462408390965" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e46a449a8295d7511805" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17265667177233999286" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2466fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a6c4a1ef416ef4c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fa98d75f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15812270714123275036" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e956e3" + } + ] + }, + "cborHex": "9f9f1bf0e708de21020f21d8669f1b172f91c2ea968c589f414f1bdce1d2f5ef7c025a1b57fef6f6ca7d2c7b4cc6713b7b9fcd084ad180ac0c1b58a09a9178fc69b1ffffffd8669f1bb8cdfe46d5ad55b79f1b9b8960c92db88a7fbf1b23db58b48b73d1e61bc31e1a4a7a8e24971bb1f123646f0302251b590d6fa02f9165471bf7499e4ee83349354ae46a449a8295d7511805ff1bef9bf8d1fd2765b6ffffbf432466fe483a6c4a1ef416ef4c456fa98d75f21bdb70786fffa14b1cff43e956e3ff", + "cborBytes": [ + 159, 159, 27, 240, 231, 8, 222, 33, 2, 15, 33, 216, 102, 159, 27, 23, 47, 145, 194, 234, 150, 140, 88, 159, 65, + 79, 27, 220, 225, 210, 245, 239, 124, 2, 90, 27, 87, 254, 246, 246, 202, 125, 44, 123, 76, 198, 113, 59, 123, 159, + 205, 8, 74, 209, 128, 172, 12, 27, 88, 160, 154, 145, 120, 252, 105, 177, 255, 255, 255, 216, 102, 159, 27, 184, + 205, 254, 70, 213, 173, 85, 183, 159, 27, 155, 137, 96, 201, 45, 184, 138, 127, 191, 27, 35, 219, 88, 180, 139, + 115, 209, 230, 27, 195, 30, 26, 74, 122, 142, 36, 151, 27, 177, 241, 35, 100, 111, 3, 2, 37, 27, 89, 13, 111, 160, + 47, 145, 101, 71, 27, 247, 73, 158, 78, 232, 51, 73, 53, 74, 228, 106, 68, 154, 130, 149, 215, 81, 24, 5, 255, 27, + 239, 155, 248, 209, 253, 39, 101, 182, 255, 255, 191, 67, 36, 102, 254, 72, 58, 108, 74, 30, 244, 22, 239, 76, 69, + 111, 169, 141, 117, 242, 27, 219, 112, 120, 111, 255, 161, 75, 28, 255, 67, 233, 86, 227, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1271, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fc20d066" + } + ] + }, + "cborHex": "9f44fc20d066ff", + "cborBytes": [159, 68, 252, 32, 208, 102, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1272, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c8734a8418bcee" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11723044501722586896" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e05130226c59060cef7a70d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14697542028579064749" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6013859708959233452" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cff1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11587534104290225730" + } + }, + { + "_tag": "ByteArray", + "bytearray": "60af6e7a25e17b80262842" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b3b10634cc6156d41f7d" + } + ] + }, + "cborHex": "9f9f47c8734a8418bceed8669f1ba2b09edceb455f109f4ce05130226c59060cef7a70d11bcbf8289aa4d44bad1b5375858ae18c95ac42cff1ffff1ba0cf30dfdcf16e424b60af6e7a25e17b80262842ff4ab3b10634cc6156d41f7dff", + "cborBytes": [ + 159, 159, 71, 200, 115, 74, 132, 24, 188, 238, 216, 102, 159, 27, 162, 176, 158, 220, 235, 69, 95, 16, 159, 76, + 224, 81, 48, 34, 108, 89, 6, 12, 239, 122, 112, 209, 27, 203, 248, 40, 154, 164, 212, 75, 173, 27, 83, 117, 133, + 138, 225, 140, 149, 172, 66, 207, 241, 255, 255, 27, 160, 207, 48, 223, 220, 241, 110, 66, 75, 96, 175, 110, 122, + 37, 225, 123, 128, 38, 40, 66, 255, 74, 179, 177, 6, 52, 204, 97, 86, 212, 31, 125, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1273, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9871512929077527016" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "011ca77aa5114f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14595177467330868239" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02be5bf719c9db" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4027575990460842273" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e9ffcd4a1e729225230310b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9953608119785305960" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "191ae9ff88b6557ff512" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a39a6fbec9cc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7698" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2872443981191425168" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b872fd6e9e97" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7822244756243786609" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + }, + "cborHex": "9fd8669f1b88fea8b51d5781e880ffbf47011ca77aa5114f1bca8c7c93f60ab40f4702be5bf719c9db1b37e4d306394f81214c0e9ffcd4a1e729225230310b1b8a2251d9353f37684a191ae9ff88b6557ff51246a39a6fbec9cc4276981b27dcf895001fac9046b872fd6e9e971b6c8e32296a12ab71ff08ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 136, 254, 168, 181, 29, 87, 129, 232, 128, 255, 191, 71, 1, 28, 167, 122, 165, 17, 79, 27, + 202, 140, 124, 147, 246, 10, 180, 15, 71, 2, 190, 91, 247, 25, 201, 219, 27, 55, 228, 211, 6, 57, 79, 129, 33, 76, + 14, 159, 252, 212, 161, 231, 41, 34, 82, 48, 49, 11, 27, 138, 34, 81, 217, 53, 63, 55, 104, 74, 25, 26, 233, 255, + 136, 182, 85, 127, 245, 18, 70, 163, 154, 111, 190, 201, 204, 66, 118, 152, 27, 39, 220, 248, 149, 0, 31, 172, + 144, 70, 184, 114, 253, 110, 158, 151, 27, 108, 142, 50, 41, 106, 18, 171, 113, 255, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1274, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c754483ba56d78631aa9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12761084051280161923" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9099175876651450871" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "45ddb39cad1c1cef" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9707523035960569983" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6136212239734782371" + } + } + ] + } + ] + }, + "cborHex": "9f4ac754483ba56d78631aa99f1bb1187a556174ec83d8669f1b7e46c440149d01f79f4845ddb39cad1c1cefffff1b86b80cc4bf59f07f801b552834855fcbb9a3ffff", + "cborBytes": [ + 159, 74, 199, 84, 72, 59, 165, 109, 120, 99, 26, 169, 159, 27, 177, 24, 122, 85, 97, 116, 236, 131, 216, 102, 159, + 27, 126, 70, 196, 64, 20, 157, 1, 247, 159, 72, 69, 221, 179, 156, 173, 28, 28, 239, 255, 255, 27, 134, 184, 12, + 196, 191, 89, 240, 127, 128, 27, 85, 40, 52, 133, 95, 203, 185, 163, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1275, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d25e1ee3ac53a16ef051c677" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3959302904881839615" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4049950054938241180" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3836636113023902848" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13922191727919042002" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4f705" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14304210576728335941" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13893945998311162706" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8308061881102191417" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dcebd6c445494bf3fe35ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5921906575115604463" + } + }, + { + "_tag": "ByteArray", + "bytearray": "351068" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6009357881130814721" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4845877907018733096" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6272971651763445970" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16270012001083280905" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7822079897219615167" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13235132112344860087" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9954629558559101812" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91e6804af3e8e02c04db7f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13319459617046371074" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f05e8ae44d08c387a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17696569640429884924" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11096592987201603173" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4486191165521842911" + } + } + ] + } + ] + }, + "cborHex": "9f9f4cd25e1ee3ac53a16ef051c6771b36f24503c3a77dffbf1b3834501e0eaae89c1b353e7837a939a4801bc1358f9d157f0dd243f4f705ffffd8669f1bc682c3bb8a4726459fd8669f1bc0d13645adcc03529f1b734c2a434b0f4b394bdcebd6c445494bf3fe35ca1b522ed6a78ad0d1ef43351068ffffbf1b5365872768ff0d011b4340044828c3d6281b570e127b4d74a0d21be1cab1b677e94e091b6c8d9c392e7fc9bf1bb7aca2888fae45b71b8a25f2d77484d3744b91e6804af3e8e02c04db7f1bb8d839f3c2359b02494f05e8ae44d08c387a1bf596d853d8c915fc1b99ff0487933e0665ff1b3e4227189f6cd2dfffffff", + "cborBytes": [ + 159, 159, 76, 210, 94, 30, 227, 172, 83, 161, 110, 240, 81, 198, 119, 27, 54, 242, 69, 3, 195, 167, 125, 255, 191, + 27, 56, 52, 80, 30, 14, 170, 232, 156, 27, 53, 62, 120, 55, 169, 57, 164, 128, 27, 193, 53, 143, 157, 21, 127, 13, + 210, 67, 244, 247, 5, 255, 255, 216, 102, 159, 27, 198, 130, 195, 187, 138, 71, 38, 69, 159, 216, 102, 159, 27, + 192, 209, 54, 69, 173, 204, 3, 82, 159, 27, 115, 76, 42, 67, 75, 15, 75, 57, 75, 220, 235, 214, 196, 69, 73, 75, + 243, 254, 53, 202, 27, 82, 46, 214, 167, 138, 208, 209, 239, 67, 53, 16, 104, 255, 255, 191, 27, 83, 101, 135, 39, + 104, 255, 13, 1, 27, 67, 64, 4, 72, 40, 195, 214, 40, 27, 87, 14, 18, 123, 77, 116, 160, 210, 27, 225, 202, 177, + 182, 119, 233, 78, 9, 27, 108, 141, 156, 57, 46, 127, 201, 191, 27, 183, 172, 162, 136, 143, 174, 69, 183, 27, + 138, 37, 242, 215, 116, 132, 211, 116, 75, 145, 230, 128, 74, 243, 232, 224, 44, 4, 219, 127, 27, 184, 216, 57, + 243, 194, 53, 155, 2, 73, 79, 5, 232, 174, 68, 208, 140, 56, 122, 27, 245, 150, 216, 83, 216, 201, 21, 252, 27, + 153, 255, 4, 135, 147, 62, 6, 101, 255, 27, 62, 66, 39, 24, 159, 108, 210, 223, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1276, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3899204058780338444" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8669f1b361cc16ebe5d090c80ffa0ff", + "cborBytes": [159, 216, 102, 159, 27, 54, 28, 193, 110, 190, 93, 9, 12, 128, 255, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1277, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13653078448207599705" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6fa3ee4f9ba67a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d571acc52c888529bdfe" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "55ac7727" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3554506390005818063" + } + } + ] + }, + "cborHex": "9f1bbd797a82f3f498599f476fa3ee4f9ba67abf42cd274ad571acc52c888529bdfeff4455ac7727ff1b315424baa82722cfff", + "cborBytes": [ + 159, 27, 189, 121, 122, 130, 243, 244, 152, 89, 159, 71, 111, 163, 238, 79, 155, 166, 122, 191, 66, 205, 39, 74, + 213, 113, 172, 197, 44, 136, 133, 41, 189, 254, 255, 68, 85, 172, 119, 39, 255, 27, 49, 84, 36, 186, 168, 39, 34, + 207, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1278, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14124396489946641310" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3616023025217436584" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2faa509c36447432ea64" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "63" + }, + { + "_tag": "ByteArray", + "bytearray": "f83c700c6e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6220727901125953856" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18034823776191691357" + } + } + ] + }, + "cborHex": "9f9fa0d8669f1bc403efc5fa0b339e9f4200ab1b322eb1c86db7fba84a2faa509c36447432ea64ffffff416345f83c700c6e1b5654771136f949401bfa4890abfeacba5dff", + "cborBytes": [ + 159, 159, 160, 216, 102, 159, 27, 196, 3, 239, 197, 250, 11, 51, 158, 159, 66, 0, 171, 27, 50, 46, 177, 200, 109, + 183, 251, 168, 74, 47, 170, 80, 156, 54, 68, 116, 50, 234, 100, 255, 255, 255, 65, 99, 69, 248, 60, 112, 12, 110, + 27, 86, 84, 119, 17, 54, 249, 73, 64, 27, 250, 72, 144, 171, 254, 172, 186, 93, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1279, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a4fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2259817950461489470" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17007799427268763171" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "835ea4efb28bb80f1d4b90" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f6d2cbcaae717" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b59d928e078c5c" + } + } + ] + } + ] + }, + "cborHex": "9f8042a4fd1b1f5c7c73f24ef13ebf1bec07d777c9725e234b835ea4efb28bb80f1d4b90ffbf470f6d2cbcaae71747b59d928e078c5cffff", + "cborBytes": [ + 159, 128, 66, 164, 253, 27, 31, 92, 124, 115, 242, 78, 241, 62, 191, 27, 236, 7, 215, 119, 201, 114, 94, 35, 75, + 131, 94, 164, 239, 178, 139, 184, 15, 29, 75, 144, 255, 191, 71, 15, 109, 44, 188, 170, 231, 23, 71, 181, 157, + 146, 142, 7, 140, 92, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1280, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17960443648220770989" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6654271875926509935" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a26785f489a5f8621a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4026016932614447288" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "787951499437155610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87246360daf07c46" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6167403921404995384" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13883171863617413811" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8237114974589397605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5742688992251800935" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13919486384026611617" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b900" + } + ] + }, + "cborHex": "9f9fd8669f1bf9405056ec9eb2ad9f02ffffff1b5c58b903eb78c96fd87a9f49a26785f489a5f8621a1b37df4911c83120b8bf1b0aef5db6c830251a4887246360daf07c461b55970530b1b227381bc0aaef40f69d22b31b72501c6d6273aa651b4fb221365eb6ed671bc12bf31e1fcaefa141b2ffff42b900ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 249, 64, 80, 86, 236, 158, 178, 173, 159, 2, 255, 255, 255, 27, 92, 88, 185, 3, 235, + 120, 201, 111, 216, 122, 159, 73, 162, 103, 133, 244, 137, 165, 248, 98, 26, 27, 55, 223, 73, 17, 200, 49, 32, + 184, 191, 27, 10, 239, 93, 182, 200, 48, 37, 26, 72, 135, 36, 99, 96, 218, 240, 124, 70, 27, 85, 151, 5, 48, 177, + 178, 39, 56, 27, 192, 170, 239, 64, 246, 157, 34, 179, 27, 114, 80, 28, 109, 98, 115, 170, 101, 27, 79, 178, 33, + 54, 94, 182, 237, 103, 27, 193, 43, 243, 30, 31, 202, 239, 161, 65, 178, 255, 255, 66, 185, 0, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1281, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + }, + "cborHex": "9f09ff", + "cborBytes": [159, 9, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1282, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9555581656038856637" + } + } + ] + }, + "cborHex": "9f1b849c3ee3766f57bdff", + "cborBytes": [159, 27, 132, 156, 62, 227, 118, 111, 87, 189, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1283, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15421813615399513432" + } + }, + { + "_tag": "ByteArray", + "bytearray": "20f34a0d87" + } + ] + }, + "cborHex": "9f1bd60549c6622bad584520f34a0d87ff", + "cborBytes": [159, 27, 214, 5, 73, 198, 98, 43, 173, 88, 69, 32, 243, 74, 13, 135, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1284, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8897351736110838232" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7992622464959204087" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85b2795e" + }, + { + "_tag": "ByteArray", + "bytearray": "290a195c84" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e0f41056a4d1f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "295742424316577217" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18122755335819773891" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b7b79be43889771d81b6eeb7fc8ffb34af74485b2795e45290a195c84bf474e0f41056a4d1f1b041ab02b026705c141e81bfb80f5f59eda47c3ffff", + "cborBytes": [ + 159, 27, 123, 121, 190, 67, 136, 151, 113, 216, 27, 110, 235, 127, 200, 255, 179, 74, 247, 68, 133, 178, 121, 94, + 69, 41, 10, 25, 92, 132, 191, 71, 78, 15, 65, 5, 106, 77, 31, 27, 4, 26, 176, 43, 2, 103, 5, 193, 65, 232, 27, + 251, 128, 245, 245, 158, 218, 71, 195, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1285, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9503444552243374692" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7034617306666099248" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13806914961503874139" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14671002515977218255" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15106265839226187590" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4bee3658a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16207608296836910314" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1853909308366620144" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b83e3047807166a641b619ffb2b5ea5e2301bbf9c04015c76ec5b1bcb99df0ed7af28cf1bd1a43cbe8db1ef4645b4bee3658a1be0ecfddfd7a34cea1b19ba68b18afb85f0ffff", + "cborBytes": [ + 159, 191, 27, 131, 227, 4, 120, 7, 22, 106, 100, 27, 97, 159, 251, 43, 94, 165, 226, 48, 27, 191, 156, 4, 1, 92, + 118, 236, 91, 27, 203, 153, 223, 14, 215, 175, 40, 207, 27, 209, 164, 60, 190, 141, 177, 239, 70, 69, 180, 190, + 227, 101, 138, 27, 224, 236, 253, 223, 215, 163, 76, 234, 27, 25, 186, 104, 177, 138, 251, 133, 240, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1286, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "444d" + }, + { + "_tag": "ByteArray", + "bytearray": "cafc04a61c" + }, + { + "_tag": "ByteArray", + "bytearray": "05df023906fa0506" + } + ] + }, + "cborHex": "9f42444d45cafc04a61c4805df023906fa0506ff", + "cborBytes": [159, 66, 68, 77, 69, 202, 252, 4, 166, 28, 72, 5, 223, 2, 57, 6, 250, 5, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1287, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "61991f0d451ca0855e07a60e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4014263721440238936" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1111745d007e" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0c07fdb5fb" + } + ] + }, + "cborHex": "9fd8799fbf4c61991f0d451ca0855e07a60e1b37b587960f2edd5841df461111745d007effff450c07fdb5fbff", + "cborBytes": [ + 159, 216, 121, 159, 191, 76, 97, 153, 31, 13, 69, 28, 160, 133, 94, 7, 166, 14, 27, 55, 181, 135, 150, 15, 46, + 221, 88, 65, 223, 70, 17, 17, 116, 93, 0, 126, 255, 255, 69, 12, 7, 253, 181, 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1288, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10169072110318187447" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10199483504143586661" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "291758314028389832" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5214211344576735910" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de262f0f33e1156bdf1f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7878137826776767172" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "43b21b8dfaf913a0eae9f548" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1490110400215509786" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8f584ae61c66b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15732709091871016379" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6208571678490238471" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12185526680194841533" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16305957557222624234" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14709913779635794871" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10538433236585491543" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b8d1fcd34ced8f3b79f1b8d8bd83534ef55651b040c88a40bedd5c8ffffd8669f1b485c9997814eeaa69f4ade262f0f33e1156bdf1fffffd8669f1b6d54c49d0098dac49f4c43b21b8dfaf913a0eae9f5481b14adef8398f5eb1affff9f478f584ae61c66b71bda55cf904787c5bb1b5629470c12f61e0741f3ffa0ffbf1ba91baff4360efbbd1be24a660170d9cbea1bcc241ca567d0b3b71b9240093193d92c57ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 141, 31, 205, 52, 206, 216, 243, 183, 159, 27, 141, 139, 216, 53, 52, 239, 85, 101, + 27, 4, 12, 136, 164, 11, 237, 213, 200, 255, 255, 216, 102, 159, 27, 72, 92, 153, 151, 129, 78, 234, 166, 159, 74, + 222, 38, 47, 15, 51, 225, 21, 107, 223, 31, 255, 255, 216, 102, 159, 27, 109, 84, 196, 157, 0, 152, 218, 196, 159, + 76, 67, 178, 27, 141, 250, 249, 19, 160, 234, 233, 245, 72, 27, 20, 173, 239, 131, 152, 245, 235, 26, 255, 255, + 159, 71, 143, 88, 74, 230, 28, 102, 183, 27, 218, 85, 207, 144, 71, 135, 197, 187, 27, 86, 41, 71, 12, 18, 246, + 30, 7, 65, 243, 255, 160, 255, 191, 27, 169, 27, 175, 244, 54, 14, 251, 189, 27, 226, 74, 102, 1, 112, 217, 203, + 234, 27, 204, 36, 28, 165, 103, 208, 179, 183, 27, 146, 64, 9, 49, 147, 217, 44, 87, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1289, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f430aa0c92b7013cb2b86b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56312180f8a214449a5f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "225c891a609d61dde3d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2016321304531361328" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "580e82f413" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7702046079045221166" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84e248" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f2a959249" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf35dbf4ca707e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13802246017543771832" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f00139cec24b949108caf699" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11553341136837502329" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2051007587522597275" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12372376400210710642" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c87743d0a8d24d34b3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16324198579360489883" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "44" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6960894830719104561" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14872490611377033431" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13403704256078755213" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "559861493340298857" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17465742099085545048" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6149556401374345636" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71e4f7f8a072cb7c316d81" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10098838240130114215" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "285613967031473021" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11223340991362753815" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17485787095910251264" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14268188639889093085" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14440866616393996487" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18433106176924110921" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50e4cedd0a81" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf4c1f430aa0c92b7013cb2b86b34a56312180f8a214449a5f4a225c891a609d61dde3d61b1bfb698b25a4de3045580e82f4131b6ae32a1a092e3b2e4384e248453f2a95924947cf35dbf4ca707e1bbf8b6da0223f16b84cf00139cec24b949108caf6991ba055b68d3e1b6579ff1b1c76a488bdea519bbf1babb382c8c9fc507249c87743d0a8d24d34b31be28b341e5db7e19b4104ff41449f9f1b609a10f7d7dd76311bce65b369c875d0d71bba03860149f7358dffbf1b07c5070fd9f7de691bf262c7e6d2944e581b55579cf71e25b9a44b71e4f7f8a072cb7c316d811b8c2647df9b1622a71b03f6b463c7cd137d1b9bc1512af741e5171bf2a9feb855d6fb001bc602c9f8ccda71dd1bc86843ad36f618c71bffcf8c67b69ed0494650e4cedd0a81ffffff", + "cborBytes": [ + 159, 191, 76, 31, 67, 10, 160, 201, 43, 112, 19, 203, 43, 134, 179, 74, 86, 49, 33, 128, 248, 162, 20, 68, 154, + 95, 74, 34, 92, 137, 26, 96, 157, 97, 221, 227, 214, 27, 27, 251, 105, 139, 37, 164, 222, 48, 69, 88, 14, 130, + 244, 19, 27, 106, 227, 42, 26, 9, 46, 59, 46, 67, 132, 226, 72, 69, 63, 42, 149, 146, 73, 71, 207, 53, 219, 244, + 202, 112, 126, 27, 191, 139, 109, 160, 34, 63, 22, 184, 76, 240, 1, 57, 206, 194, 75, 148, 145, 8, 202, 246, 153, + 27, 160, 85, 182, 141, 62, 27, 101, 121, 255, 27, 28, 118, 164, 136, 189, 234, 81, 155, 191, 27, 171, 179, 130, + 200, 201, 252, 80, 114, 73, 200, 119, 67, 208, 168, 210, 77, 52, 179, 27, 226, 139, 52, 30, 93, 183, 225, 155, 65, + 4, 255, 65, 68, 159, 159, 27, 96, 154, 16, 247, 215, 221, 118, 49, 27, 206, 101, 179, 105, 200, 117, 208, 215, 27, + 186, 3, 134, 1, 73, 247, 53, 141, 255, 191, 27, 7, 197, 7, 15, 217, 247, 222, 105, 27, 242, 98, 199, 230, 210, + 148, 78, 88, 27, 85, 87, 156, 247, 30, 37, 185, 164, 75, 113, 228, 247, 248, 160, 114, 203, 124, 49, 109, 129, 27, + 140, 38, 71, 223, 155, 22, 34, 167, 27, 3, 246, 180, 99, 199, 205, 19, 125, 27, 155, 193, 81, 42, 247, 65, 229, + 23, 27, 242, 169, 254, 184, 85, 214, 251, 0, 27, 198, 2, 201, 248, 204, 218, 113, 221, 27, 200, 104, 67, 173, 54, + 246, 24, 199, 27, 255, 207, 140, 103, 182, 158, 208, 73, 70, 80, 228, 206, 221, 10, 129, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1290, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "000603ff5a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17431092169324937965" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14615656633552177327" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9dba5a21004" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28147dde565673db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "baab389fc52c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d8af80fae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5bd433b1cd0932431" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5650441988724902848" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0dc86a72" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "557630768bdea8eaf8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a892ad2455cdb16e1811" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aeaf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6bde" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b82b686f2cc89122" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7a304" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba3eaa0e95c1dc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2492347936506562673" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "488366" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "815607981531466761" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15648304689791653925" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2068917544731658060" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4750157298045526421" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f6fa4267bf42f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5533072482915883581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8012157114263447257" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15697631227193115139" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7781237463910463097" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16536105145246525472" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14351434816172179529" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0dd670a413cb580af3b3622e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "795119516442540584" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41d8ef9a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16482600670141598669" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5abb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff47" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6830f893828a1399c39ee6f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee918f530f549b5e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84621239" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "409ef6162e9a7d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bca1b30c1c949dfd8f90d3b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd7a" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f45000603ff5ad8669f1bffffffffffffffec9f1bf1e7adf95fb4c2edbf424b101bcad53e4569f588af46a9dba5a210044828147dde565673db46baab389fc52c452d8af80fae49d5bd433b1cd09324311b4e6a670d29e64bc042de87440dc86a72ffbf49557630768bdea8eaf84aa892ad2455cdb16e181142aeaf426bde48b82b686f2cc8912243b7a30447ba3eaa0e95c1dc1b2296993e4426c871ff9f43488366ffbf1b0b519f234f280c091bd929f235041c58251b1cb6458b9b4dc74c41401b41ebf2e5293ba195472f6fa4267bf42f1b4cc96c1b94b09a3d1b6f30e671f84aa6d91bd9d9306e77ecc2031b6bfc823f255836791be57c0c047eeda8201bc72a89ed9b1dc049ffffff9fbf4c0dd670a413cb580af3b3622e1b0b08d4fccb89ba284441d8ef9a1be4bdf5fb1e67cbcd425abb42ff474c6830f893828a1399c39ee6f848ee918f530f549b5e448462123947409ef6162e9a7d4cbca1b30c1c949dfd8f90d3b742dd7affffff", + "cborBytes": [ + 159, 69, 0, 6, 3, 255, 90, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 27, 241, 231, 173, 249, + 95, 180, 194, 237, 191, 66, 75, 16, 27, 202, 213, 62, 69, 105, 245, 136, 175, 70, 169, 219, 165, 162, 16, 4, 72, + 40, 20, 125, 222, 86, 86, 115, 219, 70, 186, 171, 56, 159, 197, 44, 69, 45, 138, 248, 15, 174, 73, 213, 189, 67, + 59, 28, 208, 147, 36, 49, 27, 78, 106, 103, 13, 41, 230, 75, 192, 66, 222, 135, 68, 13, 200, 106, 114, 255, 191, + 73, 85, 118, 48, 118, 139, 222, 168, 234, 248, 74, 168, 146, 173, 36, 85, 205, 177, 110, 24, 17, 66, 174, 175, 66, + 107, 222, 72, 184, 43, 104, 111, 44, 200, 145, 34, 67, 183, 163, 4, 71, 186, 62, 170, 14, 149, 193, 220, 27, 34, + 150, 153, 62, 68, 38, 200, 113, 255, 159, 67, 72, 131, 102, 255, 191, 27, 11, 81, 159, 35, 79, 40, 12, 9, 27, 217, + 41, 242, 53, 4, 28, 88, 37, 27, 28, 182, 69, 139, 155, 77, 199, 76, 65, 64, 27, 65, 235, 242, 229, 41, 59, 161, + 149, 71, 47, 111, 164, 38, 123, 244, 47, 27, 76, 201, 108, 27, 148, 176, 154, 61, 27, 111, 48, 230, 113, 248, 74, + 166, 217, 27, 217, 217, 48, 110, 119, 236, 194, 3, 27, 107, 252, 130, 63, 37, 88, 54, 121, 27, 229, 124, 12, 4, + 126, 237, 168, 32, 27, 199, 42, 137, 237, 155, 29, 192, 73, 255, 255, 255, 159, 191, 76, 13, 214, 112, 164, 19, + 203, 88, 10, 243, 179, 98, 46, 27, 11, 8, 212, 252, 203, 137, 186, 40, 68, 65, 216, 239, 154, 27, 228, 189, 245, + 251, 30, 103, 203, 205, 66, 90, 187, 66, 255, 71, 76, 104, 48, 248, 147, 130, 138, 19, 153, 195, 158, 230, 248, + 72, 238, 145, 143, 83, 15, 84, 155, 94, 68, 132, 98, 18, 57, 71, 64, 158, 246, 22, 46, 154, 125, 76, 188, 161, + 179, 12, 28, 148, 157, 253, 143, 144, 211, 183, 66, 221, 122, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1291, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5faef878d2" + } + ] + }, + "cborHex": "9f455faef878d2ff", + "cborBytes": [159, 69, 95, 174, 248, 120, 210, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1292, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11369423831241170398" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14542607492315610565" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7598799228713435706" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62bf" + }, + { + "_tag": "ByteArray", + "bytearray": "b0" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17450873273585561780" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "aff8e794d6ba" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12195775138956040723" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "57bf45974788d07581259ad5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f38c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f6a4a3cf20cb164759a87fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11516314657843776527" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ea0cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "657217101797544552" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc9e1b40a4c45d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8628504029658120816" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6624567665110478990" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b9dc84ebc99fd9dde9fd8669f1bc9d1b876d767fdc59f1b69745ba36afa023a4262bf41b0ffffd8669f1bf22df4c89c6cf0b480ff46aff8e794d6ba1ba94018df7603da13ffffa04c57bf45974788d07581259ad59f42f38cbf4c5f6a4a3cf20cb164759a87fc1b9fd22b2a4e670c0f436ea0cb1b091ee778d4f4526847dc9e1b40a4c45d1b77be9ab2fecc8270ffd8669f1b5bef31316572f08e80ff80ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 157, 200, 78, 188, 153, 253, 157, 222, 159, 216, 102, 159, 27, 201, 209, 184, 118, 215, + 103, 253, 197, 159, 27, 105, 116, 91, 163, 106, 250, 2, 58, 66, 98, 191, 65, 176, 255, 255, 216, 102, 159, 27, + 242, 45, 244, 200, 156, 108, 240, 180, 128, 255, 70, 175, 248, 231, 148, 214, 186, 27, 169, 64, 24, 223, 118, 3, + 218, 19, 255, 255, 160, 76, 87, 191, 69, 151, 71, 136, 208, 117, 129, 37, 154, 213, 159, 66, 243, 140, 191, 76, + 95, 106, 74, 60, 242, 12, 177, 100, 117, 154, 135, 252, 27, 159, 210, 43, 42, 78, 103, 12, 15, 67, 110, 160, 203, + 27, 9, 30, 231, 120, 212, 244, 82, 104, 71, 220, 158, 27, 64, 164, 196, 93, 27, 119, 190, 154, 178, 254, 204, 130, + 112, 255, 216, 102, 159, 27, 91, 239, 49, 49, 101, 114, 240, 142, 128, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1293, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "53f12f11eb520d59" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2627770436094116021" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64d00392eb8788" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7615503568496953900" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10414541683684504194" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5b515ca9179c5e00a0389" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7d871746901a0666d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4654f8be4f63854ce1e524" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db02030542e5" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6881329893200886384" + }, + "fields": [] + } + ] + }, + "cborHex": "9f09bf4853f12f11eb520d591b2477b74a02a9c0b54764d00392eb87881b69afb42599fb0a2c428a051b9087e27b928372824bd5b515ca9179c5e00a03890f49f7d871746901a0666d4b4654f8be4f63854ce1e52441fa46db02030542e5ffa0d8669f1b5f7f65143a83fa7080ffff", + "cborBytes": [ + 159, 9, 191, 72, 83, 241, 47, 17, 235, 82, 13, 89, 27, 36, 119, 183, 74, 2, 169, 192, 181, 71, 100, 208, 3, 146, + 235, 135, 136, 27, 105, 175, 180, 37, 153, 251, 10, 44, 66, 138, 5, 27, 144, 135, 226, 123, 146, 131, 114, 130, + 75, 213, 181, 21, 202, 145, 121, 197, 224, 10, 3, 137, 15, 73, 247, 216, 113, 116, 105, 1, 160, 102, 109, 75, 70, + 84, 248, 190, 79, 99, 133, 76, 225, 229, 36, 65, 250, 70, 219, 2, 3, 5, 66, 229, 255, 160, 216, 102, 159, 27, 95, + 127, 101, 20, 58, 131, 250, 112, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1294, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f4a353388b302c63995" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "821d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11987801056952978334" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8fd6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4d8c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a436fd04484ae3135c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "26544870172428104" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b06a7019" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e051b405f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d525857030015674f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "749646522827149886" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3454600136c2" + }, + { + "_tag": "ByteArray", + "bytearray": "b3" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4363292226654009807" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2056598903868327215" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e36" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18210891555282398783" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c7410b4c1f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "623681f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18086812883889444958" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1710625922138315229" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f168738f2ded135e9a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14822708108493516468" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ccc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9265502324410367581" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f711" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11097161130555824442" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3c2e0eb98b8e82376a55" + } + ] + }, + "cborHex": "9f9fbf4a0f4a353388b302c63995419042821d1ba65d398c15bc0b9e428fd643c4d8c749a436fd04484ae3135c1b005e4e6b353c874844b06a7019454e051b405f49d525857030015674f91b0a67478a6c38123eff463454600136c241b3ff1b3c8d872994ef79cfbf1b1c8a81ce8687852f427e361bfcba156253c4ae3f464c7410b4c1f644623681f91bfb01447d6730585effbf1b17bd5d3680a119dd49f168738f2ded135e9a1bcdb4d67d980eeeb4424ccc415b1b8095ad45f8093e5d42f7111b9a010940c20d593aff4a3c2e0eb98b8e82376a55ff", + "cborBytes": [ + 159, 159, 191, 74, 15, 74, 53, 51, 136, 179, 2, 198, 57, 149, 65, 144, 66, 130, 29, 27, 166, 93, 57, 140, 21, 188, + 11, 158, 66, 143, 214, 67, 196, 216, 199, 73, 164, 54, 253, 4, 72, 74, 227, 19, 92, 27, 0, 94, 78, 107, 53, 60, + 135, 72, 68, 176, 106, 112, 25, 69, 78, 5, 27, 64, 95, 73, 213, 37, 133, 112, 48, 1, 86, 116, 249, 27, 10, 103, + 71, 138, 108, 56, 18, 62, 255, 70, 52, 84, 96, 1, 54, 194, 65, 179, 255, 27, 60, 141, 135, 41, 148, 239, 121, 207, + 191, 27, 28, 138, 129, 206, 134, 135, 133, 47, 66, 126, 54, 27, 252, 186, 21, 98, 83, 196, 174, 63, 70, 76, 116, + 16, 180, 193, 246, 68, 98, 54, 129, 249, 27, 251, 1, 68, 125, 103, 48, 88, 94, 255, 191, 27, 23, 189, 93, 54, 128, + 161, 25, 221, 73, 241, 104, 115, 143, 45, 237, 19, 94, 154, 27, 205, 180, 214, 125, 152, 14, 238, 180, 66, 76, + 204, 65, 91, 27, 128, 149, 173, 69, 248, 9, 62, 93, 66, 247, 17, 27, 154, 1, 9, 64, 194, 13, 89, 58, 255, 74, 60, + 46, 14, 185, 139, 142, 130, 55, 106, 85, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1295, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5809469995906643525" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a7c142262c5618324" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14848326637577965107" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55873ea5958057" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17726594236814537888" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3047864999614729671" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b509f622e6f4e3645496a7c142262c56183241bce0fda6835ce0e334755873ea59580571bf6018389f2d134a01b2a4c3111a161cdc7ffff", + "cborBytes": [ + 159, 191, 27, 80, 159, 98, 46, 111, 78, 54, 69, 73, 106, 124, 20, 34, 98, 197, 97, 131, 36, 27, 206, 15, 218, 104, + 53, 206, 14, 51, 71, 85, 135, 62, 165, 149, 128, 87, 27, 246, 1, 131, 137, 242, 209, 52, 160, 27, 42, 76, 49, 17, + 161, 97, 205, 199, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1296, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2731717807678989889" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15925339351936798474" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3018259029532826399" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7196247979831799219" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6334825150167311817" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4537868598173928403" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15501230477078645554" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1497606122729502902" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15770666103067778055" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c83cddce3ae3c0d339" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7619251206667554933" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b56ae7a4d5baf5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11643964557885112231" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12695949335886941609" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15360139578068979785" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14588138125991057313" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b25e902df7150a6411bdd022bc3b7be0f0a1b29e302988f6b5b1f1b63de3569097f2db31b57e9d1e925eee5c91b3ef9bf72878e8bd31bd71f6efd67bb4b321b14c890d57ebdf8b61bdadca943a0a61c0749c83cddce3ae3c0d339ffbf1b69bd049a9be2d07547b56ae7a4d5baf51ba197ac12b1faffa71bb03112a7abe5cda91bd52a2d90933850491bca737a55960797a1ffff", + "cborBytes": [ + 159, 191, 27, 37, 233, 2, 223, 113, 80, 166, 65, 27, 221, 2, 43, 195, 183, 190, 15, 10, 27, 41, 227, 2, 152, 143, + 107, 91, 31, 27, 99, 222, 53, 105, 9, 127, 45, 179, 27, 87, 233, 209, 233, 37, 238, 229, 201, 27, 62, 249, 191, + 114, 135, 142, 139, 211, 27, 215, 31, 110, 253, 103, 187, 75, 50, 27, 20, 200, 144, 213, 126, 189, 248, 182, 27, + 218, 220, 169, 67, 160, 166, 28, 7, 73, 200, 60, 221, 206, 58, 227, 192, 211, 57, 255, 191, 27, 105, 189, 4, 154, + 155, 226, 208, 117, 71, 181, 106, 231, 164, 213, 186, 245, 27, 161, 151, 172, 18, 177, 250, 255, 167, 27, 176, 49, + 18, 167, 171, 229, 205, 169, 27, 213, 42, 45, 144, 147, 56, 80, 73, 27, 202, 115, 122, 85, 150, 7, 151, 161, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1297, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9131376164118654486" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6513987612092021399" + } + } + ] + }, + "cborHex": "9f1b7eb92a3dbcc2ee161b5a6655387a0a3a97ff", + "cborBytes": [159, 27, 126, 185, 42, 61, 188, 194, 238, 22, 27, 90, 102, 85, 56, 122, 10, 58, 151, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1298, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "60821bd1" + }, + { + "_tag": "ByteArray", + "bytearray": "27605e9b0ba46f" + } + ] + }, + "cborHex": "9f4460821bd14727605e9b0ba46fff", + "cborBytes": [159, 68, 96, 130, 27, 209, 71, 39, 96, 94, 155, 11, 164, 111, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1299, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5edf69093a7196" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3727664095831723328" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3b5" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14912003812583267571" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7b2040adf564ff2b0454" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15900707114878516618" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b41e72eb847001ff38" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0604a9ff89f81f" + } + ] + }, + "cborHex": "9fbf04475edf69093a71961b33bb52bec2070d4042a3b5ff809fd8669f1bcef21475da4bdcf39f4a7b2040adf564ff2b04541bdcaaa8e01bdc3d8affffff9f49b41e72eb847001ff38ff470604a9ff89f81fff", + "cborBytes": [ + 159, 191, 4, 71, 94, 223, 105, 9, 58, 113, 150, 27, 51, 187, 82, 190, 194, 7, 13, 64, 66, 163, 181, 255, 128, 159, + 216, 102, 159, 27, 206, 242, 20, 117, 218, 75, 220, 243, 159, 74, 123, 32, 64, 173, 245, 100, 255, 43, 4, 84, 27, + 220, 170, 168, 224, 27, 220, 61, 138, 255, 255, 255, 159, 73, 180, 30, 114, 235, 132, 112, 1, 255, 56, 255, 71, 6, + 4, 169, 255, 137, 248, 31, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1300, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5026007691463598885" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16223134747842736728" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2388590159710213979" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a4b33a199a0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16465057546792133114" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17110941061813829727" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3613983361123630353" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7539bd9dafe62ea6dcf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36791ca81b4c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15780200811243825640" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3b3883d3104" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7998034132090557040" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b45bff75dd011a3251be12427196c767258bf1b2125fa184f85575b463a4b33a199a01be47fa29a6ae8e1fa1bed76463cf20f005fff80bf1b322772b81ff23d114af7539bd9dafe62ea6dcf4636791ca81b4c1bdafe8907de84e9e846d3b3883d31041b6efeb9aaf0b51270ffff", + "cborBytes": [ + 159, 27, 69, 191, 247, 93, 208, 17, 163, 37, 27, 225, 36, 39, 25, 108, 118, 114, 88, 191, 27, 33, 37, 250, 24, 79, + 133, 87, 91, 70, 58, 75, 51, 161, 153, 160, 27, 228, 127, 162, 154, 106, 232, 225, 250, 27, 237, 118, 70, 60, 242, + 15, 0, 95, 255, 128, 191, 27, 50, 39, 114, 184, 31, 242, 61, 17, 74, 247, 83, 155, 217, 218, 254, 98, 234, 109, + 207, 70, 54, 121, 28, 168, 27, 76, 27, 218, 254, 137, 7, 222, 132, 233, 232, 70, 211, 179, 136, 61, 49, 4, 27, + 110, 254, 185, 170, 240, 181, 18, 112, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1301, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11811381971657874385" + } + } + ] + }, + "cborHex": "9f1ba3ea7552e71edbd1ff", + "cborBytes": [159, 27, 163, 234, 117, 82, 231, 30, 219, 209, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1302, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cbb08755c5607fa832" + }, + { + "_tag": "ByteArray", + "bytearray": "b172163ffcc1c125" + }, + { + "_tag": "ByteArray", + "bytearray": "478ea92c00e0666bb64a" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f49cbb08755c5607fa83248b172163ffcc1c1254a478ea92c00e0666bb64affffff", + "cborBytes": [ + 159, 159, 159, 73, 203, 176, 135, 85, 197, 96, 127, 168, 50, 72, 177, 114, 22, 63, 252, 193, 193, 37, 74, 71, 142, + 169, 44, 0, 224, 102, 107, 182, 74, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1303, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2292540319243328643" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "577ae3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2323356555089632133" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a9fa016146309" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6987580125973353898" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26efcbf798519d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14944346835212599654" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17102093983566466939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac552b3299b23c11edec" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17682223400952850415" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14671974951223898202" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ff9c727a9d4a779f1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fd2d6afb6b51a06" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7470273067827839653" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6661077940429368057" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12351304177781788288" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e4e4c2a7f3fe1a6982e15" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13923403328863861728" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c258972233ccefb9d9" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + ] + }, + "cborHex": "9f9fbf1b1fd0bd4621c25c8343577ae31b203e387a28b15b85479a9fa0161463091b60f8df1a503895aa4726efcbf798519d1bcf64fc44a114816641d5ffbf1bed56d7de05d30f7b4aac552b3299b23c11edec1bf563e07face4e7ef1bcb9d537b9121305a492ff9c727a9d4a779f1486fd2d6afb6b51a06ffbf1b67abbdc6a70bc2a51b5c70e7184c7baaf91bab68a5b5ad7b4e804b9e4e4c2a7f3fe1a6982e151bc139dd8ee96bfbe049c258972233ccefb9d9ffff1bffffffffffffffebff", + "cborBytes": [ + 159, 159, 191, 27, 31, 208, 189, 70, 33, 194, 92, 131, 67, 87, 122, 227, 27, 32, 62, 56, 122, 40, 177, 91, 133, + 71, 154, 159, 160, 22, 20, 99, 9, 27, 96, 248, 223, 26, 80, 56, 149, 170, 71, 38, 239, 203, 247, 152, 81, 157, 27, + 207, 100, 252, 68, 161, 20, 129, 102, 65, 213, 255, 191, 27, 237, 86, 215, 222, 5, 211, 15, 123, 74, 172, 85, 43, + 50, 153, 178, 60, 17, 237, 236, 27, 245, 99, 224, 127, 172, 228, 231, 239, 27, 203, 157, 83, 123, 145, 33, 48, 90, + 73, 47, 249, 199, 39, 169, 212, 167, 121, 241, 72, 111, 210, 214, 175, 182, 181, 26, 6, 255, 191, 27, 103, 171, + 189, 198, 167, 11, 194, 165, 27, 92, 112, 231, 24, 76, 123, 170, 249, 27, 171, 104, 165, 181, 173, 123, 78, 128, + 75, 158, 78, 76, 42, 127, 63, 225, 166, 152, 46, 21, 27, 193, 57, 221, 142, 233, 107, 251, 224, 73, 194, 88, 151, + 34, 51, 204, 239, 185, 217, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1304, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + }, + "cborHex": "9f11ff", + "cborBytes": [159, 17, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1305, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9208498737568917938" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1338829875351008354" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2981834901" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18204705188261644363" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13771539910580578595" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7021214111364631127" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11628272169565580514" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "78" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10741029325493673276" + } + } + ] + }, + "cborHex": "9fd8669f1b7fcb28d0276da9b29fbf1b12947aad9efa3462452981834901ff1bfca41aea830bc84b1bbf1e56957c452923412b80ffff1b61705d08c7d94a57d8669f1ba15febedd2846ce280ff41781b950fcd435c1a9d3cff", + "cborBytes": [ + 159, 216, 102, 159, 27, 127, 203, 40, 208, 39, 109, 169, 178, 159, 191, 27, 18, 148, 122, 173, 158, 250, 52, 98, + 69, 41, 129, 131, 73, 1, 255, 27, 252, 164, 26, 234, 131, 11, 200, 75, 27, 191, 30, 86, 149, 124, 69, 41, 35, 65, + 43, 128, 255, 255, 27, 97, 112, 93, 8, 199, 217, 74, 87, 216, 102, 159, 27, 161, 95, 235, 237, 210, 132, 108, 226, + 128, 255, 65, 120, 27, 149, 15, 205, 67, 92, 26, 157, 60, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1306, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8823580582063118759" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "98bd684d086d3e6e83" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2880986070871565108" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f49f0a291f2f265acac479" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6746141326015903977" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3031549326369461655" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4e27" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "699498672304705260" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72dc6af5b2bfe9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17881150908771740044" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5771538519387836084" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18157305752995842754" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01ffeb1b" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b7a73a7ca40e819a79f4998bd684d086d3e6e83ffff80d8669f1b27fb51913d25e3349f4bf49f0a291f2f265acac4791b5d9f1bcb1dc2b8e91b2a123a0ced539597ffff424e27ffbf1b09b51e561b944eec4772dc6af5b2bfe91bf8269c035c7e298c1b50189fb457988eb41bfbfbb5617d794ac24401ffeb1bffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 122, 115, 167, 202, 64, 232, 25, 167, 159, 73, 152, 189, 104, 77, 8, 109, 62, 110, + 131, 255, 255, 128, 216, 102, 159, 27, 39, 251, 81, 145, 61, 37, 227, 52, 159, 75, 244, 159, 10, 41, 31, 47, 38, + 90, 202, 196, 121, 27, 93, 159, 27, 203, 29, 194, 184, 233, 27, 42, 18, 58, 12, 237, 83, 149, 151, 255, 255, 66, + 78, 39, 255, 191, 27, 9, 181, 30, 86, 27, 148, 78, 236, 71, 114, 220, 106, 245, 178, 191, 233, 27, 248, 38, 156, + 3, 92, 126, 41, 140, 27, 80, 24, 159, 180, 87, 152, 142, 180, 27, 251, 251, 181, 97, 125, 121, 74, 194, 68, 1, + 255, 235, 27, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1307, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c7fe02febf07" + } + ] + }, + "cborHex": "9f46c7fe02febf07ff", + "cborBytes": [159, 70, 199, 254, 2, 254, 191, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1308, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2589584271948561706" + } + } + ] + }, + "cborHex": "9f1b23f00d2cd56ebd2aff", + "cborBytes": [159, 27, 35, 240, 13, 44, 213, 110, 189, 42, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1309, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10917159636238878990" + } + } + ] + }, + "cborHex": "9f1b97818ad8fa40490eff", + "cborBytes": [159, 27, 151, 129, 138, 216, 250, 64, 73, 14, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1310, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "485201103599543350" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6636804448085964422" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10142005452956152184" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16926246454012830846" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14017976789230464756" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "23690752129743209" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b06bbc7d540ada4361b5c1aaa7b73e576861b8cbfa4398d86b1781beae61b788826647e1bc289db9e8fc0aef41b00542a9d1127b969ffff", + "cborBytes": [ + 159, 191, 27, 6, 187, 199, 213, 64, 173, 164, 54, 27, 92, 26, 170, 123, 115, 229, 118, 134, 27, 140, 191, 164, 57, + 141, 134, 177, 120, 27, 234, 230, 27, 120, 136, 38, 100, 126, 27, 194, 137, 219, 158, 143, 192, 174, 244, 27, 0, + 84, 42, 157, 17, 39, 185, 105, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1311, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16903791889154358360" + } + } + ] + }, + "cborHex": "9fbf1bfffffffffffffff041bbff1bea965529be2cbc58ff", + "cborBytes": [ + 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 240, 65, 187, 255, 27, 234, 150, 85, 41, 190, 44, 188, 88, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1312, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7110dac890b5" + }, + { + "_tag": "ByteArray", + "bytearray": "4e0c4e262dd919982ab41c54" + }, + { + "_tag": "ByteArray", + "bytearray": "877aac" + }, + { + "_tag": "ByteArray", + "bytearray": "30dbedcf0ba1482f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7c1d561188b214" + }, + { + "_tag": "ByteArray", + "bytearray": "3d114fba" + }, + { + "_tag": "ByteArray", + "bytearray": "c925" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1789566026112015366" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17594108257991345395" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f467110dac890b54c4e0c4e262dd919982ab41c5443877aac4830dbedcf0ba1482fff477c1d561188b214443d114fba42c9251b18d5d0d1b8839c06ff9f1bf42ad43e395744f3ffff", + "cborBytes": [ + 159, 159, 159, 70, 113, 16, 218, 200, 144, 181, 76, 78, 12, 78, 38, 45, 217, 25, 152, 42, 180, 28, 84, 67, 135, + 122, 172, 72, 48, 219, 237, 207, 11, 161, 72, 47, 255, 71, 124, 29, 86, 17, 136, 178, 20, 68, 61, 17, 79, 186, 66, + 201, 37, 27, 24, 213, 208, 209, 184, 131, 156, 6, 255, 159, 27, 244, 42, 212, 62, 57, 87, 68, 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1313, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3caf65040e5ee94d0271" + } + ] + }, + "cborHex": "9f4a3caf65040e5ee94d0271ff", + "cborBytes": [159, 74, 60, 175, 101, 4, 14, 94, 233, 77, 2, 113, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1314, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10063760832206755060" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9826714314646106310" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6803339454204487266" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aa2132e687672aa23a785c" + }, + { + "_tag": "ByteArray", + "bytearray": "4c6d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14346350572293674674" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4db0fc6d1b4b26ea0958f1ca" + }, + { + "_tag": "ByteArray", + "bytearray": "0d65" + }, + { + "_tag": "ByteArray", + "bytearray": "a084" + }, + { + "_tag": "ByteArray", + "bytearray": "89" + }, + { + "_tag": "ByteArray", + "bytearray": "733109e81b" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4377099904963114086" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16540492044005734825" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12369020504904736535" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8188361285699745361" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3387316101177279924" + } + } + ] + }, + "cborHex": "9f9fd8669f1b8ba9a928242c54f49f1b885f809ae1ba30c61b5e6a51301e422662ffff4baa2132e687672aa23a785c424c6dd8669f1bc71879d5d4c956b29f4c4db0fc6d1b4b26ea0958f1ca420d6542a084418945733109e81bffffff1b3cbe952c35b8f4669f9f1be58ba1e0f522f9a91baba7969d865e9f17ffd8669f1b71a2e7349eb1b65180ffff1b2f022a0c18a205b4ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 139, 169, 169, 40, 36, 44, 84, 244, 159, 27, 136, 95, 128, 154, 225, 186, 48, 198, + 27, 94, 106, 81, 48, 30, 66, 38, 98, 255, 255, 75, 170, 33, 50, 230, 135, 103, 42, 162, 58, 120, 92, 66, 76, 109, + 216, 102, 159, 27, 199, 24, 121, 213, 212, 201, 86, 178, 159, 76, 77, 176, 252, 109, 27, 75, 38, 234, 9, 88, 241, + 202, 66, 13, 101, 66, 160, 132, 65, 137, 69, 115, 49, 9, 232, 27, 255, 255, 255, 27, 60, 190, 149, 44, 53, 184, + 244, 102, 159, 159, 27, 229, 139, 161, 224, 245, 34, 249, 169, 27, 171, 167, 150, 157, 134, 94, 159, 23, 255, 216, + 102, 159, 27, 113, 162, 231, 52, 158, 177, 182, 81, 128, 255, 255, 27, 47, 2, 42, 12, 24, 162, 5, 180, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1315, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "952793835136273743" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "55258816888363706" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dffca3acffdf6638" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4713981779734027413" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f23" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10815674313302848293" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13948742076311753261" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13615449738824695747" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd7e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14526941693520345720" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5de" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7ac92f" + }, + { + "_tag": "ByteArray", + "bytearray": "3969e6934b59dd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14508749296426950326" + } + } + ] + }, + "cborHex": "9f1b0d3900f1e77acd4fbf1b00c45199e756daba48dffca3acffdf66381b416b6d73f2b5dc95429f231b9618fe7beabbb3251bc193e303ca1b522d1bbcf3cb6653d4bfc342fd7e1bc99a1080d3177a7842a5deff437ac92f473969e6934b59dd1bc9596e9d4cba1eb6ff", + "cborBytes": [ + 159, 27, 13, 57, 0, 241, 231, 122, 205, 79, 191, 27, 0, 196, 81, 153, 231, 86, 218, 186, 72, 223, 252, 163, 172, + 255, 223, 102, 56, 27, 65, 107, 109, 115, 242, 181, 220, 149, 66, 159, 35, 27, 150, 24, 254, 123, 234, 187, 179, + 37, 27, 193, 147, 227, 3, 202, 27, 82, 45, 27, 188, 243, 203, 102, 83, 212, 191, 195, 66, 253, 126, 27, 201, 154, + 16, 128, 211, 23, 122, 120, 66, 165, 222, 255, 67, 122, 201, 47, 71, 57, 105, 230, 147, 75, 89, 221, 27, 201, 89, + 110, 157, 76, 186, 30, 182, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1316, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13260069242395469625" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5904634543114825353" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10449030517229579446" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e8d15a14ada559" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17582687242973842845" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10901037367956357760" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c57ae9fe410055" + }, + { + "_tag": "ByteArray", + "bytearray": "8f7ecaa2bc9ade5377f238c9" + } + ] + }, + "cborHex": "9fd8669f1bb8053ab89a10a7399f1b51f179d536dc2e899f41c21b910269e4e2af6cb6ff47e8d15a14ada559ffff1bf40240e3f23f8d9d1b974843bae04c428047c57ae9fe4100554c8f7ecaa2bc9ade5377f238c9ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 184, 5, 58, 184, 154, 16, 167, 57, 159, 27, 81, 241, 121, 213, 54, 220, 46, 137, 159, 65, + 194, 27, 145, 2, 105, 228, 226, 175, 108, 182, 255, 71, 232, 209, 90, 20, 173, 165, 89, 255, 255, 27, 244, 2, 64, + 227, 242, 63, 141, 157, 27, 151, 72, 67, 186, 224, 76, 66, 128, 71, 197, 122, 233, 254, 65, 0, 85, 76, 143, 126, + 202, 162, 188, 154, 222, 83, 119, 242, 56, 201, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1317, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "182174846660989431" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17625462764357759511" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5104315847305030352" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3369831735067502813" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5535326528166157498" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ad184" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b0287370ece3d51f71bf49a39001f6b32171b46d62c3824036ad01b2ec40c1be18968dd1b4cd16e266323dcba438ad184ffff", + "cborBytes": [ + 159, 191, 27, 2, 135, 55, 14, 206, 61, 81, 247, 27, 244, 154, 57, 0, 31, 107, 50, 23, 27, 70, 214, 44, 56, 36, 3, + 106, 208, 27, 46, 196, 12, 27, 225, 137, 104, 221, 27, 76, 209, 110, 38, 99, 35, 220, 186, 67, 138, 209, 132, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1318, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9d" + } + ] + }, + "cborHex": "9f419dff", + "cborBytes": [159, 65, 157, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1319, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ec2f7dd25540e210543fe5" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b03bdfe3937bc038" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3953778210110540611" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "452013b91f3946f60f29" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15839010704378897701" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4ab04e1256b5490d5ef3" + }, + { + "_tag": "ByteArray", + "bytearray": "95" + }, + { + "_tag": "ByteArray", + "bytearray": "124361cba5a569" + }, + { + "_tag": "ByteArray", + "bytearray": "aa7545fa65faf8e286" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3746454757434986388" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3336361692510750171" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7878273541638236533" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5866260730861978033" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12614545578664255225" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e7c2d441bcfba9ea589" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff080ffd905099f4bec2f7dd25540e210543fe5ff9fd905089f0fffff9fbf48b03bdfe3937bc0381b36dea45586518b43ff4a452013b91f3946f60f29d8669f1bdbcf7851241d252580ff9f4a4ab04e1256b5490d5ef3419547124361cba5a56949aa7545fa65faf8e2861b33fe14c097fc0f94ffffbf1b2e4d2348545305db1b6d55400b94b4a9751b5169250dceda01b141831baf0fde5e7b41def94a7e7c2d441bcfba9ea589ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 128, 255, 217, 5, 9, 159, 75, 236, 47, 125, 210, + 85, 64, 226, 16, 84, 63, 229, 255, 159, 217, 5, 8, 159, 15, 255, 255, 159, 191, 72, 176, 59, 223, 227, 147, 123, + 192, 56, 27, 54, 222, 164, 85, 134, 81, 139, 67, 255, 74, 69, 32, 19, 185, 31, 57, 70, 246, 15, 41, 216, 102, 159, + 27, 219, 207, 120, 81, 36, 29, 37, 37, 128, 255, 159, 74, 74, 176, 78, 18, 86, 181, 73, 13, 94, 243, 65, 149, 71, + 18, 67, 97, 203, 165, 165, 105, 73, 170, 117, 69, 250, 101, 250, 248, 226, 134, 27, 51, 254, 20, 192, 151, 252, + 15, 148, 255, 255, 191, 27, 46, 77, 35, 72, 84, 83, 5, 219, 27, 109, 85, 64, 11, 148, 180, 169, 117, 27, 81, 105, + 37, 13, 206, 218, 1, 177, 65, 131, 27, 175, 15, 222, 94, 123, 65, 222, 249, 74, 126, 124, 45, 68, 27, 207, 186, + 158, 165, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1320, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fc" + }, + { + "_tag": "ByteArray", + "bytearray": "58304fe0fbd39dafb8be5ae8" + } + ] + }, + "cborHex": "9f41fc4c58304fe0fbd39dafb8be5ae8ff", + "cborBytes": [159, 65, 252, 76, 88, 48, 79, 224, 251, 211, 157, 175, 184, 190, 90, 232, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1321, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0026eda2502c35aa" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16821637611330084898" + } + }, + { + "_tag": "ByteArray", + "bytearray": "daa12a3f8602ab1ff3" + }, + { + "_tag": "ByteArray", + "bytearray": "5b8e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3941317869708658229" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13408578866769283594" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "79f8129184da3f131d9c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dcf502" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f480026eda2502c35aaffa09f1be97276485bae202249daa12a3f8602ab1ff3425b8eff1b36b25fb872e24635d8669f1bba14d7700897ca0a80ffffbf4a79f8129184da3f131d9c43dcf502ffff", + "cborBytes": [ + 159, 159, 159, 72, 0, 38, 237, 162, 80, 44, 53, 170, 255, 160, 159, 27, 233, 114, 118, 72, 91, 174, 32, 34, 73, + 218, 161, 42, 63, 134, 2, 171, 31, 243, 66, 91, 142, 255, 27, 54, 178, 95, 184, 114, 226, 70, 53, 216, 102, 159, + 27, 186, 20, 215, 112, 8, 151, 202, 10, 128, 255, 255, 191, 74, 121, 248, 18, 145, 132, 218, 63, 19, 29, 156, 67, + 220, 245, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1322, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1669949051706263204" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "9e2155b1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2398164202121626841" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b172cd9d093f3c6a480ff449e2155b1d8669f1b2147fda2c48484d980ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 23, 44, 217, 208, 147, 243, 198, 164, 128, 255, 68, 158, 33, 85, 177, 216, 102, 159, 27, + 33, 71, 253, 162, 196, 132, 132, 217, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1323, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "73682bcbc3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15651215138873919709" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11514703464663176782" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10923055211346459058" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ca7705aa2999b1c1" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "021c5980" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8195896548699242407" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "155e1e73" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c238b7dfc750987b3f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1da0bfc126d1b691" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "182c41" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9f1634c033d94cb14541504" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0bc0e1a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e15865" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6462897361191536117" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e393e887" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc0a95bff79c" + } + } + ] + } + ] + }, + "cborHex": "9f4573682bcbc39f1bd934493ebfcbc8ddd8669f1b9fcc71cb2935564e9f1b97967cd78648f9b248ca7705aa2999b1c1ffffffbf44021c59801b71bdac7cc1117fa744155e1e734a1c238b7dfc750987b3f9481da0bfc126d1b69143182c414cd9f1634c033d94cb14541504440bc0e1a243e158651b59b0d2e879a185f544e393e88746dc0a95bff79cffff", + "cborBytes": [ + 159, 69, 115, 104, 43, 203, 195, 159, 27, 217, 52, 73, 62, 191, 203, 200, 221, 216, 102, 159, 27, 159, 204, 113, + 203, 41, 53, 86, 78, 159, 27, 151, 150, 124, 215, 134, 72, 249, 178, 72, 202, 119, 5, 170, 41, 153, 177, 193, 255, + 255, 255, 191, 68, 2, 28, 89, 128, 27, 113, 189, 172, 124, 193, 17, 127, 167, 68, 21, 94, 30, 115, 74, 28, 35, + 139, 125, 252, 117, 9, 135, 179, 249, 72, 29, 160, 191, 193, 38, 209, 182, 145, 67, 24, 44, 65, 76, 217, 241, 99, + 76, 3, 61, 148, 203, 20, 84, 21, 4, 68, 11, 192, 225, 162, 67, 225, 88, 101, 27, 89, 176, 210, 232, 121, 161, 133, + 245, 68, 227, 147, 232, 135, 70, 220, 10, 149, 191, 247, 156, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1324, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a94ba2fba175cab1de7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + ] + }, + "cborHex": "9f4aa94ba2fba175cab1de7b1bffffffffffffffeeff", + "cborBytes": [ + 159, 74, 169, 75, 162, 251, 161, 117, 202, 177, 222, 123, 27, 255, 255, 255, 255, 255, 255, 255, 238, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1325, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "169337105399361816" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff48" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7592768261038520779" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "606194" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10106012018900902847" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7668189373349857082" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14359826408046063121" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12384dd856" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17684664238168654284" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3881339b" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b02599b333e9f311842ff481b695eee81550fb9cb436061941b8c3fc463226aa3bf1b6a6ae19b74f1873a1bc7485a0957dbee114512384dd8561bf56c8c6d6018c1cc443881339bffff", + "cborBytes": [ + 159, 191, 27, 2, 89, 155, 51, 62, 159, 49, 24, 66, 255, 72, 27, 105, 94, 238, 129, 85, 15, 185, 203, 67, 96, 97, + 148, 27, 140, 63, 196, 99, 34, 106, 163, 191, 27, 106, 106, 225, 155, 116, 241, 135, 58, 27, 199, 72, 90, 9, 87, + 219, 238, 17, 69, 18, 56, 77, 216, 86, 27, 245, 108, 140, 109, 96, 24, 193, 204, 68, 56, 129, 51, 155, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1326, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2e13dabe664e9787" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4345739464474611253" + } + } + ] + }, + "cborHex": "9f482e13dabe664e97871b3c4f2b04aa67ce35ff", + "cborBytes": [159, 72, 46, 19, 218, 190, 102, 78, 151, 135, 27, 60, 79, 43, 4, 170, 103, 206, 53, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1327, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5964530716224576537" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12000501813364351115" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13696538003109871170" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4e619cb5910553" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "800593014667755602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13219807976275195936" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6301917550327198370" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11187028729222636825" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e46" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11297708762877807786" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4613811229267822186" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15180895641262533850" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "945614227186583067" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c014b03e46" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7810327044902884221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cb929974a8839d2cfbb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13168490165068480985" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "428501" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6732299650323114559" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10091321986622224629" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8749198948864973821" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17624711220508665225" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7d4d38" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14116412140623777689" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2677885727730686008" + } + } + ] + }, + "cborHex": "9fd8669f1b52c64515c078dc199f9f1ba68a58d16003608b1bbe13e0bf18007e42ff474e619cb5910553d8669f1b0b1c471ae8ee40529f1bb776315018c23820ffffbf1b5774e89f7f0d72a241981b9b404f5b9967a519424e461b9cc9864313264caa1b40078cde3537866a1bd2ad602765baacda41beffffffbf1b0d1f7f212a03061b45c014b03e461b6c63db110310137d4a2cb929974a8839d2cfbb1bb6bfe0091521c1d943428501ff1b5d6deedcdafeea3fd8669f1b8c0b93e176b4f8f59f1b796b6616b8515bfd1bf4978d79af42a589437d4d381bc3e7920cc8e44f99ffff1b2529c2e19e79d838ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 82, 198, 69, 21, 192, 120, 220, 25, 159, 159, 27, 166, 138, 88, 209, 96, 3, 96, 139, 27, + 190, 19, 224, 191, 24, 0, 126, 66, 255, 71, 78, 97, 156, 181, 145, 5, 83, 216, 102, 159, 27, 11, 28, 71, 26, 232, + 238, 64, 82, 159, 27, 183, 118, 49, 80, 24, 194, 56, 32, 255, 255, 191, 27, 87, 116, 232, 159, 127, 13, 114, 162, + 65, 152, 27, 155, 64, 79, 91, 153, 103, 165, 25, 66, 78, 70, 27, 156, 201, 134, 67, 19, 38, 76, 170, 27, 64, 7, + 140, 222, 53, 55, 134, 106, 27, 210, 173, 96, 39, 101, 186, 172, 218, 65, 190, 255, 255, 255, 191, 27, 13, 31, + 127, 33, 42, 3, 6, 27, 69, 192, 20, 176, 62, 70, 27, 108, 99, 219, 17, 3, 16, 19, 125, 74, 44, 185, 41, 151, 74, + 136, 57, 210, 207, 187, 27, 182, 191, 224, 9, 21, 33, 193, 217, 67, 66, 133, 1, 255, 27, 93, 109, 238, 220, 218, + 254, 234, 63, 216, 102, 159, 27, 140, 11, 147, 225, 118, 180, 248, 245, 159, 27, 121, 107, 102, 22, 184, 81, 91, + 253, 27, 244, 151, 141, 121, 175, 66, 165, 137, 67, 125, 77, 56, 27, 195, 231, 146, 12, 200, 228, 79, 153, 255, + 255, 27, 37, 41, 194, 225, 158, 121, 216, 56, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1328, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0370" + }, + { + "_tag": "ByteArray", + "bytearray": "9902" + }, + { + "_tag": "ByteArray", + "bytearray": "d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11518146374332170633" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9359340177817955378" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e7a4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16666472183686093985" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c8c0473b44585" + }, + { + "_tag": "ByteArray", + "bytearray": "3ea1e6184c" + }, + { + "_tag": "ByteArray", + "bytearray": "f1cf059b44d5fd90402fe33c" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f42037042990241d31b9fd8ad1a0905c1899fd8669f1b81e30e4dc6e16c329f42e7a41be74b3425f789dca1479c8c0473b44585453ea1e6184c4cf1cf059b44d5fd90402fe33cffff80ffff", + "cborBytes": [ + 159, 66, 3, 112, 66, 153, 2, 65, 211, 27, 159, 216, 173, 26, 9, 5, 193, 137, 159, 216, 102, 159, 27, 129, 227, 14, + 77, 198, 225, 108, 50, 159, 66, 231, 164, 27, 231, 75, 52, 37, 247, 137, 220, 161, 71, 156, 140, 4, 115, 180, 69, + 133, 69, 62, 161, 230, 24, 76, 76, 241, 207, 5, 155, 68, 213, 253, 144, 64, 47, 227, 60, 255, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1329, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f0f80ff", + "cborBytes": [159, 15, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1330, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e3" + }, + { + "_tag": "ByteArray", + "bytearray": "1fe70115b832c01c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e26495" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0957839b80b32d6be08f45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a433" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5fe853b3b761839612e33713" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff1a37" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8198091032906800463" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e40bdef7ec80e348" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb7cecf816" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e83639fc91" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3390537419395655835" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e8b143be349e52" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05f866" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3124322759846001792" + } + } + ] + }, + "cborHex": "9f80809f9f41e3481fe70115b832c01cff43e26495bf4b0957839b80b32d6be08f4542a4334c5fe853b3b761839612e3371343ff1a3741e11b71c5785becb99d4f48e40bdef7ec80e34845cb7cecf81645e83639fc911b2f0d9bd1b0bf689bff47e8b143be349e52ff4305f8661b2b5bd2ff2849fc80ff", + "cborBytes": [ + 159, 128, 128, 159, 159, 65, 227, 72, 31, 231, 1, 21, 184, 50, 192, 28, 255, 67, 226, 100, 149, 191, 75, 9, 87, + 131, 155, 128, 179, 45, 107, 224, 143, 69, 66, 164, 51, 76, 95, 232, 83, 179, 183, 97, 131, 150, 18, 227, 55, 19, + 67, 255, 26, 55, 65, 225, 27, 113, 197, 120, 91, 236, 185, 157, 79, 72, 228, 11, 222, 247, 236, 128, 227, 72, 69, + 203, 124, 236, 248, 22, 69, 232, 54, 57, 252, 145, 27, 47, 13, 155, 209, 176, 191, 104, 155, 255, 71, 232, 177, + 67, 190, 52, 158, 82, 255, 67, 5, 248, 102, 27, 43, 91, 210, 255, 40, 73, 252, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1331, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17909397436344395213" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11540555521325247512" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c86cc478ee052ed01cc" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffeb9fd8669f1bf88af6148e9965cd80ffffff9f9f1ba0284a1a2743ac184a9c86cc478ee052ed01ccffd8669f1bfffffffffffffff59f10ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 216, 102, 159, 27, 248, 138, 246, 20, 142, + 153, 101, 205, 128, 255, 255, 255, 159, 159, 27, 160, 40, 74, 26, 39, 67, 172, 24, 74, 156, 134, 204, 71, 142, + 224, 82, 237, 1, 204, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 16, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1332, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fdfffe23" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f44fdfffe2380ff", + "cborBytes": [159, 68, 253, 255, 254, 35, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1333, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5fb2bc64" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34b18e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f849b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d19e1259dfe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "faf884ae78f2c22b01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "032a" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6dafd1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15513561106613723835" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ced148d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15327412182020047669" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c70555fda2" + } + ] + } + ] + }, + "cborHex": "9fbf445fb2bc644334b18e438f849b468d19e1259dfe49faf884ae78f2c22b0142032aff9fbf436dafd14229fc4284fc1bd74b3da1d106e2bb44ced148d51bd4b5e82be34cc335ff45c70555fda2ffff", + "cborBytes": [ + 159, 191, 68, 95, 178, 188, 100, 67, 52, 177, 142, 67, 143, 132, 155, 70, 141, 25, 225, 37, 157, 254, 73, 250, + 248, 132, 174, 120, 242, 194, 43, 1, 66, 3, 42, 255, 159, 191, 67, 109, 175, 209, 66, 41, 252, 66, 132, 252, 27, + 215, 75, 61, 161, 209, 6, 226, 187, 68, 206, 209, 72, 213, 27, 212, 181, 232, 43, 227, 76, 195, 53, 255, 69, 199, + 5, 85, 253, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1334, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11661246775252730287" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5155599924556605374" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7a5c818715" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16101599715459105210" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5188869965672772151" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6168751797449095977" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7197399134677185243" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "13299d" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5fe8bd016333" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6024107226483279306" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9601929750900957355" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6187916463234555490" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17734705234004291342" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6870903520387795452" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17212614115888012341" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8877130008097347640" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c24259dee200ed5498bf426" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1bfffffffffffffff41ba1d512287d1bc1afff9fd8669f1b478c5ed0db3a27be9f457a5c8187151bdf745fa19b7881ba1b480291bdf19e72371b559bcf138a817b291b63e24c61292332dbffff4313299da0465fe8bd016333bf1b5399ed9afb6645ca1b8540e83c38b4e0ab1b55dfe53d02e31e621bf61e5472a5162f0e1b5f5a5a5922b209fc1beedf7d5791611c351b7b31e6b5959a58384c6c24259dee200ed5498bf426ffffff", + "cborBytes": [ + 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 244, 27, 161, 213, 18, 40, 125, 27, 193, 175, 255, 159, 216, 102, + 159, 27, 71, 140, 94, 208, 219, 58, 39, 190, 159, 69, 122, 92, 129, 135, 21, 27, 223, 116, 95, 161, 155, 120, 129, + 186, 27, 72, 2, 145, 189, 241, 158, 114, 55, 27, 85, 155, 207, 19, 138, 129, 123, 41, 27, 99, 226, 76, 97, 41, 35, + 50, 219, 255, 255, 67, 19, 41, 157, 160, 70, 95, 232, 189, 1, 99, 51, 191, 27, 83, 153, 237, 154, 251, 102, 69, + 202, 27, 133, 64, 232, 60, 56, 180, 224, 171, 27, 85, 223, 229, 61, 2, 227, 30, 98, 27, 246, 30, 84, 114, 165, 22, + 47, 14, 27, 95, 90, 90, 89, 34, 178, 9, 252, 27, 238, 223, 125, 87, 145, 97, 28, 53, 27, 123, 49, 230, 181, 149, + 154, 88, 56, 76, 108, 36, 37, 157, 238, 32, 14, 213, 73, 139, 244, 38, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1335, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "220212346374251108" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73bdd024726ce6a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "942638185098917662" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "526d562a854e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7188783977479250722" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "345f6ca8e463" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8368646158479893704" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8728b185aec48e16a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11637879451933356188" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5882649347059560232" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12542963476226596400" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5246090798049280520" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7a76b5" + }, + { + "_tag": "ByteArray", + "bytearray": "ad9271ea1f963afea6" + }, + { + "_tag": "ByteArray", + "bytearray": "39" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f78036895193cf85a3a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10817413798098306020" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11226386717680634122" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11013126395243745742" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4cb86e95d0014a73" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9c861" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4513669899162595878" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f786bb7336" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4560374659190719131" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6762107042157473656" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10173197409946381787" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17683123413212520463" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3d263463762ed8e635" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10577176584165971551" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "de0050908be22269" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17955696911325873055" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11525229425094740191" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2bbe81758d6b" + } + ] + } + ] + }, + "cborHex": "9f9fbf1b030e59f658cae2644873bdd024726ce6a51b0d14ec6f5e8a371e46526d562a854e1b63c3b0f090aba32246345f6ca8e4631b742367579721a4c849e8728b185aec48e16a1ba1820db38f4e309c1b51a35e69ddab2f281bae118ed37f2f5e301b48cddbc92d2c4208ff437a76b549ad9271ea1f963afea64139ffbf4a7f78036895193cf85a3a41d8ff9fbf1b961f2c89480f03e41b9bcc233d6284890a1b98d67c1b3efb51ce484cb86e95d0014a7343d9c8611b3ea3c6dbdcf5b22645f786bb73361b3f49b49733c1829bff1b5dd7d48714f6af781b8d2e7524f9c72ddb1bf567130e1bece00fff493d263463762ed8e635d8669f1b92c9ae1021cad65f9f9f48de0050908be22269ff1bf92f73351e28439f1b9ff1d7194da6c8df462bbe81758d6bffffff", + "cborBytes": [ + 159, 159, 191, 27, 3, 14, 89, 246, 88, 202, 226, 100, 72, 115, 189, 208, 36, 114, 108, 230, 165, 27, 13, 20, 236, + 111, 94, 138, 55, 30, 70, 82, 109, 86, 42, 133, 78, 27, 99, 195, 176, 240, 144, 171, 163, 34, 70, 52, 95, 108, + 168, 228, 99, 27, 116, 35, 103, 87, 151, 33, 164, 200, 73, 232, 114, 139, 24, 90, 236, 72, 225, 106, 27, 161, 130, + 13, 179, 143, 78, 48, 156, 27, 81, 163, 94, 105, 221, 171, 47, 40, 27, 174, 17, 142, 211, 127, 47, 94, 48, 27, 72, + 205, 219, 201, 45, 44, 66, 8, 255, 67, 122, 118, 181, 73, 173, 146, 113, 234, 31, 150, 58, 254, 166, 65, 57, 255, + 191, 74, 127, 120, 3, 104, 149, 25, 60, 248, 90, 58, 65, 216, 255, 159, 191, 27, 150, 31, 44, 137, 72, 15, 3, 228, + 27, 155, 204, 35, 61, 98, 132, 137, 10, 27, 152, 214, 124, 27, 62, 251, 81, 206, 72, 76, 184, 110, 149, 208, 1, + 74, 115, 67, 217, 200, 97, 27, 62, 163, 198, 219, 220, 245, 178, 38, 69, 247, 134, 187, 115, 54, 27, 63, 73, 180, + 151, 51, 193, 130, 155, 255, 27, 93, 215, 212, 135, 20, 246, 175, 120, 27, 141, 46, 117, 36, 249, 199, 45, 219, + 27, 245, 103, 19, 14, 27, 236, 224, 15, 255, 73, 61, 38, 52, 99, 118, 46, 216, 230, 53, 216, 102, 159, 27, 146, + 201, 174, 16, 33, 202, 214, 95, 159, 159, 72, 222, 0, 80, 144, 139, 226, 34, 105, 255, 27, 249, 47, 115, 53, 30, + 40, 67, 159, 27, 159, 241, 215, 25, 77, 166, 200, 223, 70, 43, 190, 129, 117, 141, 107, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1336, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1dc01c152382c190fda7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "943820436461480244" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1339096436491374845" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "911044348259121745" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11202879392157198442" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3505868809418938335" + } + }, + { + "_tag": "ByteArray", + "bytearray": "daae7be57c664e167cf8b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6776419505576007304" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11616447226540395944" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1245542e2e7067fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75812a162c3e" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9963573246953759598" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8601462049113566956" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16958337943442107062" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15254791256061704831" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2826557952358301224" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15521725877797634636" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6588573035959586869" + } + } + ] + }, + "cborHex": "9f4a1dc01c152382c190fda71b0d191fafb70a6934d8669f1b12956d1d390f50fd9f1b0ca4ae02009cba51d8669f1b9b789f73a712e86a9f1b30a7591b768997df4bdaae7be57c664e167cf8b71b5e0aada326e2d6881ba135e934ba030da8ffffbf481245542e2e7067fb4675812a162c3effd8669f1b8a45b9142e43a36e80ff9f1b775e8829426aeeec1beb581e82abe52ab61bd3b3e7d2f44afa7f1b2739f37b5f5f3e281bd7683f72bf1dc24cffffff1b5b6f5044b9169035ff", + "cborBytes": [ + 159, 74, 29, 192, 28, 21, 35, 130, 193, 144, 253, 167, 27, 13, 25, 31, 175, 183, 10, 105, 52, 216, 102, 159, 27, + 18, 149, 109, 29, 57, 15, 80, 253, 159, 27, 12, 164, 174, 2, 0, 156, 186, 81, 216, 102, 159, 27, 155, 120, 159, + 115, 167, 18, 232, 106, 159, 27, 48, 167, 89, 27, 118, 137, 151, 223, 75, 218, 174, 123, 229, 124, 102, 78, 22, + 124, 248, 183, 27, 94, 10, 173, 163, 38, 226, 214, 136, 27, 161, 53, 233, 52, 186, 3, 13, 168, 255, 255, 191, 72, + 18, 69, 84, 46, 46, 112, 103, 251, 70, 117, 129, 42, 22, 44, 62, 255, 216, 102, 159, 27, 138, 69, 185, 20, 46, 67, + 163, 110, 128, 255, 159, 27, 119, 94, 136, 41, 66, 106, 238, 236, 27, 235, 88, 30, 130, 171, 229, 42, 182, 27, + 211, 179, 231, 210, 244, 74, 250, 127, 27, 39, 57, 243, 123, 95, 95, 62, 40, 27, 215, 104, 63, 114, 191, 29, 194, + 76, 255, 255, 255, 27, 91, 111, 80, 68, 185, 22, 144, 53, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1337, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2057885926534752004" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18068291956758122486" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8583469880610773305" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8935542673643420920" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14666205741555158311" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7841380702796620787" + } + }, + { + "_tag": "ByteArray", + "bytearray": "61b1edcb4ab33f8605" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3337649979607861603" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eafe" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "794ffefa0402" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "34225b67e672" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12195096628308723411" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d7a6b8b3701fc1e32" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15867138486644148396" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14129691561466116197" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "83" + } + ] + }, + "cborHex": "9fbf1b1c8f1458d76127041bfabf77ce049d8ff61b771e9c611611d9391b7c016cb819dc3cf8ff9fd8669f1bcb88d46ac4308d279f1b6cd22e342acba3f34961b1edcb4ab33f8605ffff9f1b2e51b6f90b1dc96342eafeff46794ffefa0402ff9f4634225b67e672bf1ba93dafc563e7c6d3499d7a6b8b3701fc1e321bdc336662ca5a88ac1bc416bf9ce305b865ffff4183ff", + "cborBytes": [ + 159, 191, 27, 28, 143, 20, 88, 215, 97, 39, 4, 27, 250, 191, 119, 206, 4, 157, 143, 246, 27, 119, 30, 156, 97, 22, + 17, 217, 57, 27, 124, 1, 108, 184, 25, 220, 60, 248, 255, 159, 216, 102, 159, 27, 203, 136, 212, 106, 196, 48, + 141, 39, 159, 27, 108, 210, 46, 52, 42, 203, 163, 243, 73, 97, 177, 237, 203, 74, 179, 63, 134, 5, 255, 255, 159, + 27, 46, 81, 182, 249, 11, 29, 201, 99, 66, 234, 254, 255, 70, 121, 79, 254, 250, 4, 2, 255, 159, 70, 52, 34, 91, + 103, 230, 114, 191, 27, 169, 61, 175, 197, 99, 231, 198, 211, 73, 157, 122, 107, 139, 55, 1, 252, 30, 50, 27, 220, + 51, 102, 98, 202, 90, 136, 172, 27, 196, 22, 191, 156, 227, 5, 184, 101, 255, 255, 65, 131, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1338, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12969778744843352475" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "53c6d083980fddb8fbff212b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6663298d237fed" + }, + { + "_tag": "ByteArray", + "bytearray": "7b791ee063" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8268589751475428170" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "739a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14522356044127732372" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a43e0e675226566a1a7a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12845386121088447066" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb3926170582c58d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b576716" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d84bf6d31981df88d4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a0e44132d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "718d7e1cc6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2a50d428d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf584dd8baf3" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14955919292402970840" + } + } + ] + } + ] + }, + "cborHex": "9f1bb3fde90d35ccb99b9f9f4c53c6d083980fddb8fbff212b14476663298d237fed457b791ee0631b72bfee91f220db4affff9fbf42739a1bc989c5e11ffb02944aa43e0e675226566a1a7a418941b81bb243fa9e8e35b25a48cb3926170582c58d447b576716ff49d84bf6d31981df88d4bf459a0e44132d45718d7e1cc645b2a50d428d46bf584dd8baf3ff1bcf8e195b491730d8ffff", + "cborBytes": [ + 159, 27, 179, 253, 233, 13, 53, 204, 185, 155, 159, 159, 76, 83, 198, 208, 131, 152, 15, 221, 184, 251, 255, 33, + 43, 20, 71, 102, 99, 41, 141, 35, 127, 237, 69, 123, 121, 30, 224, 99, 27, 114, 191, 238, 145, 242, 32, 219, 74, + 255, 255, 159, 191, 66, 115, 154, 27, 201, 137, 197, 225, 31, 251, 2, 148, 74, 164, 62, 14, 103, 82, 38, 86, 106, + 26, 122, 65, 137, 65, 184, 27, 178, 67, 250, 158, 142, 53, 178, 90, 72, 203, 57, 38, 23, 5, 130, 197, 141, 68, + 123, 87, 103, 22, 255, 73, 216, 75, 246, 211, 25, 129, 223, 136, 212, 191, 69, 154, 14, 68, 19, 45, 69, 113, 141, + 126, 28, 198, 69, 178, 165, 13, 66, 141, 70, 191, 88, 77, 216, 186, 243, 255, 27, 207, 142, 25, 91, 73, 23, 48, + 216, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1339, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3203136565888698479" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e82513eb" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "079d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8593424723478485045" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2706a3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13009308069705202273" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5910770804058977131" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5528711987974135543" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [] + } + ] + }, + "cborHex": "9fa0d8669f1b2c73d3bc58dc486f9fd905019f44e82513ebffd87f9f42079dff9f1b7741fa418efe9835ffbf432706a31bfffffffffffffffbffd8669f1bb48a58c35c66ba619f1b520746baccaf736b1b4cb9ee42bca45ef7ffffffffd87b80ff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 44, 115, 211, 188, 88, 220, 72, 111, 159, 217, 5, 1, 159, 68, 232, 37, 19, 235, 255, + 216, 127, 159, 66, 7, 157, 255, 159, 27, 119, 65, 250, 65, 142, 254, 152, 53, 255, 191, 67, 39, 6, 163, 27, 255, + 255, 255, 255, 255, 255, 255, 251, 255, 216, 102, 159, 27, 180, 138, 88, 195, 92, 102, 186, 97, 159, 27, 82, 7, + 70, 186, 204, 175, 115, 107, 27, 76, 185, 238, 66, 188, 164, 94, 247, 255, 255, 255, 255, 216, 123, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1340, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12275346400642473303" + } + } + ] + }, + "cborHex": "9f1baa5aca83892a1d57ff", + "cborBytes": [159, 27, 170, 90, 202, 131, 137, 42, 29, 87, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1341, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "133f8d162bd7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "269477746914488560" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6322a1e69481f6e0f708b7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16637026030143773719" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "186283312271062702" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4256385878594844091" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10475935211479339591" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1892825899804198014" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9243161596252683404" + } + } + ] + }, + "cborHex": "9f46133f8d162bd71b03bd609543b5f0f09f4b6322a1e69481f6e0f708b7d8669f1be6e2970715a59c1780ffbf1b0295cfaf7f7ff6ae1b3b11b867c0a275bb1b9161ff922a3b92471b1a44ab20937d047effff1b80464e7fda2c7c8cff", + "cborBytes": [ + 159, 70, 19, 63, 141, 22, 43, 215, 27, 3, 189, 96, 149, 67, 181, 240, 240, 159, 75, 99, 34, 161, 230, 148, 129, + 246, 224, 247, 8, 183, 216, 102, 159, 27, 230, 226, 151, 7, 21, 165, 156, 23, 128, 255, 191, 27, 2, 149, 207, 175, + 127, 127, 246, 174, 27, 59, 17, 184, 103, 192, 162, 117, 187, 27, 145, 97, 255, 146, 42, 59, 146, 71, 27, 26, 68, + 171, 32, 147, 125, 4, 126, 255, 255, 27, 128, 70, 78, 127, 218, 44, 124, 140, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1342, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d11cf39ba77e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1392e739bbdd772b0bc" + } + } + ] + } + ] + }, + "cborHex": "9fbf46d11cf39ba77e4ac1392e739bbdd772b0bcffff", + "cborBytes": [ + 159, 191, 70, 209, 28, 243, 155, 167, 126, 74, 193, 57, 46, 115, 155, 189, 215, 114, 176, 188, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1343, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7465863311479920433" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1d" + }, + { + "_tag": "ByteArray", + "bytearray": "78" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16175948696648597353" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9f1b679c13203e61d731411d41781be07c83a2c0aebf6980ff80ff", + "cborBytes": [ + 159, 159, 27, 103, 156, 19, 32, 62, 97, 215, 49, 65, 29, 65, 120, 27, 224, 124, 131, 162, 192, 174, 191, 105, 128, + 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1344, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16408697137468349955" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "108696621448666524" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6142320812203197585" + } + }, + { + "_tag": "ByteArray", + "bytearray": "60f62be3ff78a4" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3251419869721998821" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15040542693187851953" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a4a5c" + }, + { + "_tag": "ByteArray", + "bytearray": "bed93574bc3ba7e6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4533417d7d4c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bbf191af370097e21afd81f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5291877032596693024" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb2b09adea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1be3b7671c09c51e039f1b01822b0055bb9d9c1b553de83c3bdc44914760f62be3ff78a4ffffd8669f1b2d1f5d250e6d35e59f1bd0babde4288f16b1439a4a5c48bed93574bc3ba7e6ffff464533417d7d4cbf4c9bbf191af370097e21afd81f1b4970861fa2f9602045cb2b09adea412affffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 227, 183, 103, 28, 9, 197, 30, 3, 159, 27, 1, 130, 43, 0, 85, 187, 157, 156, 27, 85, + 61, 232, 60, 59, 220, 68, 145, 71, 96, 246, 43, 227, 255, 120, 164, 255, 255, 216, 102, 159, 27, 45, 31, 93, 37, + 14, 109, 53, 229, 159, 27, 208, 186, 189, 228, 40, 143, 22, 177, 67, 154, 74, 92, 72, 190, 217, 53, 116, 188, 59, + 167, 230, 255, 255, 70, 69, 51, 65, 125, 125, 76, 191, 76, 155, 191, 25, 26, 243, 112, 9, 126, 33, 175, 216, 31, + 27, 73, 112, 134, 31, 162, 249, 96, 32, 69, 203, 43, 9, 173, 234, 65, 42, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1345, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "698205" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12159188148989556565" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12308150624551759272" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12858934592431774674" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b680f6659876fec" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14723293072328983811" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5651239068167358141" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1fe205" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24e7eaf494c9eb2740e8d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7161726020940262105" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dafc4705" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac727efb" + } + } + ] + } + ] + }, + "cborHex": "9f9f43698205bf1ba8be1d3309a977551baacf55c81a68eda81bb2741ce1dbe0dbd2486b680f6659876fecffbf1bcc53a50abc2385031b4e6d3bfdaeecc6bdffff431fe2051bfffffffffffffff7bf4b24e7eaf494c9eb2740e8d61b63638fdf20d0ead944dafc470544ac727efbffff", + "cborBytes": [ + 159, 159, 67, 105, 130, 5, 191, 27, 168, 190, 29, 51, 9, 169, 119, 85, 27, 170, 207, 85, 200, 26, 104, 237, 168, + 27, 178, 116, 28, 225, 219, 224, 219, 210, 72, 107, 104, 15, 102, 89, 135, 111, 236, 255, 191, 27, 204, 83, 165, + 10, 188, 35, 133, 3, 27, 78, 109, 59, 253, 174, 236, 198, 189, 255, 255, 67, 31, 226, 5, 27, 255, 255, 255, 255, + 255, 255, 255, 247, 191, 75, 36, 231, 234, 244, 148, 201, 235, 39, 64, 232, 214, 27, 99, 99, 143, 223, 32, 208, + 234, 217, 68, 218, 252, 71, 5, 68, 172, 114, 126, 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1346, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "429540917b3e81d68f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00fa070302" + } + } + ] + } + ] + }, + "cborHex": "9fd87e9fa0ffbf49429540917b3e81d68f4500fa070302ffff", + "cborBytes": [ + 159, 216, 126, 159, 160, 255, 191, 73, 66, 149, 64, 145, 123, 62, 129, 214, 143, 69, 0, 250, 7, 3, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1347, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6627155982369550327" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eb96" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16251175019391390694" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12928251792913770803" + } + }, + { + "_tag": "ByteArray", + "bytearray": "953683b4b2c9" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17628082386685769528" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b5bf86340f83deff79f42eb96ffffd8669f1be187c593e58693e69f1bb36a6082436ea93346953683b4b2c9ffff1bf4a3878879b9b738ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 91, 248, 99, 64, 248, 61, 239, 247, 159, 66, 235, 150, 255, 255, 216, 102, 159, 27, + 225, 135, 197, 147, 229, 134, 147, 230, 159, 27, 179, 106, 96, 130, 67, 110, 169, 51, 70, 149, 54, 131, 180, 178, + 201, 255, 255, 27, 244, 163, 135, 136, 121, 185, 183, 56, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1348, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c47754f7f92294d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd74dbe8f7" + } + } + ] + } + ] + }, + "cborHex": "9fbf483c47754f7f92294d45fd74dbe8f7ffff", + "cborBytes": [159, 191, 72, 60, 71, 117, 79, 127, 146, 41, 77, 69, 253, 116, 219, 232, 247, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1349, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8ff1aa44ffaae3" + }, + { + "_tag": "ByteArray", + "bytearray": "577ffb101c" + } + ] + } + ] + }, + "cborHex": "9f9f478ff1aa44ffaae345577ffb101cffff", + "cborBytes": [159, 159, 71, 143, 241, 170, 68, 255, 170, 227, 69, 87, 127, 251, 16, 28, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1350, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cc5dd4e4607fe1ea" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6803084436983142165" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "116e9300a627d7b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d083" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28e8dcafe54493a6418ecbb0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10405721710639727453" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6520cffbba690e00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4266765052060779493" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9e5bdfe4eb025e03c40" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2c3423af08d9a58e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2045317351231872351" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5344722423c5227" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17577532262077818914" + } + } + } + ] + } + ] + }, + "cborHex": "9f48cc5dd4e4607fe1eaa01b5e6969404b5e5715bf48116e9300a627d7b942d0834c28e8dcafe54493a6418ecbb01b90688cc39240435d486520cffbba690e001b3b369835642243e54ab9e5bdfe4eb025e03c40416549c2c3423af08d9a58e81b1c626d4b5d1e5d5f48f5344722423c52271bf3eff0766d1de822ffff", + "cborBytes": [ + 159, 72, 204, 93, 212, 228, 96, 127, 225, 234, 160, 27, 94, 105, 105, 64, 75, 94, 87, 21, 191, 72, 17, 110, 147, + 0, 166, 39, 215, 185, 66, 208, 131, 76, 40, 232, 220, 175, 229, 68, 147, 166, 65, 142, 203, 176, 27, 144, 104, + 140, 195, 146, 64, 67, 93, 72, 101, 32, 207, 251, 186, 105, 14, 0, 27, 59, 54, 152, 53, 100, 34, 67, 229, 74, 185, + 229, 189, 254, 78, 176, 37, 224, 60, 64, 65, 101, 73, 194, 195, 66, 58, 240, 141, 154, 88, 232, 27, 28, 98, 109, + 75, 93, 30, 93, 95, 72, 245, 52, 71, 34, 66, 60, 82, 39, 27, 243, 239, 240, 118, 109, 29, 232, 34, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1351, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6736869326734764710" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e9451998" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11283714876761711626" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd7c9e262f60" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3815620360257064253" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "61c12727c7de66247a924930" + }, + { + "_tag": "ByteArray", + "bytearray": "865d6ef48f74eb4d" + }, + { + "_tag": "ByteArray", + "bytearray": "e9e30097c30c3677" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1892251301460445096" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6bfb187d4a6532" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ab0c3a3a95fa" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7264077890695905938" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6e8b452" + }, + { + "_tag": "ByteArray", + "bytearray": "08bd" + }, + { + "_tag": "ByteArray", + "bytearray": "ff0e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1482448097452273053" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7b768e5b0fbac5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3698294252786224525" + } + } + ] + }, + "cborHex": "9fd8669f1b5d7e2af58e402aa69f44e94519981b9c97cee5902c240a46fd7c9e262f60d8669f1b34f3ce806adecd3d9f4c61c12727c7de66247a92493048865d6ef48f74eb4d48e9e30097c30c36771b1a42a088795207a8ffff476bfb187d4a6532ffff9f46ab0c3a3a95fa9f1b64cf305ad7b2c29244d6e8b4524208bd42ff0eff1b1492b6b0b698ad9dff477b768e5b0fbac51b3352fb074c310d8dff", + "cborBytes": [ + 159, 216, 102, 159, 27, 93, 126, 42, 245, 142, 64, 42, 166, 159, 68, 233, 69, 25, 152, 27, 156, 151, 206, 229, + 144, 44, 36, 10, 70, 253, 124, 158, 38, 47, 96, 216, 102, 159, 27, 52, 243, 206, 128, 106, 222, 205, 61, 159, 76, + 97, 193, 39, 39, 199, 222, 102, 36, 122, 146, 73, 48, 72, 134, 93, 110, 244, 143, 116, 235, 77, 72, 233, 227, 0, + 151, 195, 12, 54, 119, 27, 26, 66, 160, 136, 121, 82, 7, 168, 255, 255, 71, 107, 251, 24, 125, 74, 101, 50, 255, + 255, 159, 70, 171, 12, 58, 58, 149, 250, 159, 27, 100, 207, 48, 90, 215, 178, 194, 146, 68, 214, 232, 180, 82, 66, + 8, 189, 66, 255, 14, 255, 27, 20, 146, 182, 176, 182, 152, 173, 157, 255, 71, 123, 118, 142, 91, 15, 186, 197, 27, + 51, 82, 251, 7, 76, 49, 13, 141, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1352, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8555278962896581166" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17945291387106759470" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10210985471918028672" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5f9f396b6dc18" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14493580105112493720" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1298584379090374670" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b76ba74e391d2b22e1bf90a7b703760132e1b8db4b52fc459378047a5f9f396b6dc181bc9238a50b8e61e981b12057f9cd28d900effff", + "cborBytes": [ + 159, 191, 27, 118, 186, 116, 227, 145, 210, 178, 46, 27, 249, 10, 123, 112, 55, 96, 19, 46, 27, 141, 180, 181, 47, + 196, 89, 55, 128, 71, 165, 249, 243, 150, 182, 220, 24, 27, 201, 35, 138, 80, 184, 230, 30, 152, 27, 18, 5, 127, + 156, 210, 141, 144, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1353, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "00066a64b7780301b602fa" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f4b00066a64b7780301b602fa9f80ffff", + "cborBytes": [159, 75, 0, 6, 106, 100, 183, 120, 3, 1, 182, 2, 250, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1354, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4734332603886175978" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f94d71" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9299213769726916904" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c41" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "455404385356388668" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9393e0163c12d1bd3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5413638785553795802" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2123242854710632571" + } + }, + { + "_tag": "ByteArray", + "bytearray": "39ff43e7b6210b6936c0" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "935392844313178773" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cfc430c654c558" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3414187860251144700" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "068a7af285de3080e4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7788518264422705764" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6007125140408356831" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13041456956596646150" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "927ff2127932" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15774447796475019030" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4479882662666525165" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17307542583403915071" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12529062672069604970" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b41b3ba6b6f2f86ea43f94d711b810d71a77afe7928428c4141681b0651ebe02a52993c49e9393e0163c12d1bd31b4b211bcaf3360adaff9f1b1d7746207ee9e07b4a39ff43e7b6210b6936c0ffbf1b0cfb2ed602bab29547cfc430c654c5581b2f61a1c50eb871fc49068a7af285de3080e41b6c1660189d8eaa641b535d987cf35bcfdf1bb4fc9001637d710646927ff21279321bdaea18b1bcd63f161b3e2bbd8bd7ab59ed1bf030be47c2bca73f1bade02c1e5150b66affffff", + "cborBytes": [ + 159, 159, 191, 27, 65, 179, 186, 107, 111, 47, 134, 234, 67, 249, 77, 113, 27, 129, 13, 113, 167, 122, 254, 121, + 40, 66, 140, 65, 65, 104, 27, 6, 81, 235, 224, 42, 82, 153, 60, 73, 233, 57, 62, 1, 99, 193, 45, 27, 211, 27, 75, + 33, 27, 202, 243, 54, 10, 218, 255, 159, 27, 29, 119, 70, 32, 126, 233, 224, 123, 74, 57, 255, 67, 231, 182, 33, + 11, 105, 54, 192, 255, 191, 27, 12, 251, 46, 214, 2, 186, 178, 149, 71, 207, 196, 48, 198, 84, 197, 88, 27, 47, + 97, 161, 197, 14, 184, 113, 252, 73, 6, 138, 122, 242, 133, 222, 48, 128, 228, 27, 108, 22, 96, 24, 157, 142, 170, + 100, 27, 83, 93, 152, 124, 243, 91, 207, 223, 27, 180, 252, 144, 1, 99, 125, 113, 6, 70, 146, 127, 242, 18, 121, + 50, 27, 218, 234, 24, 177, 188, 214, 63, 22, 27, 62, 43, 189, 139, 215, 171, 89, 237, 27, 240, 48, 190, 71, 194, + 188, 167, 63, 27, 173, 224, 44, 30, 81, 80, 182, 106, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1355, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4372038346948554084" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5629443981235699620" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "681daebb31d281759736ec7c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16167126441236206539" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4943791286025370727" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8240ae1582e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5290340338008183316" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffec8e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18268302378337540138" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2105646664376561312" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3808554158846125502" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "299b2c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "561e9c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15233858081114152983" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9087751742848732064" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4962567439814297853" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0b28" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5298431423988265707" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12669206901700078430" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "87754b1807f679ea55e81937" + }, + { + "_tag": "ByteArray", + "bytearray": "1b369e" + }, + { + "_tag": "ByteArray", + "bytearray": "cad3d851150b55a311fb23c6" + } + ] + } + ] + }, + "cborHex": "9f1b3cac99b666412d649fbf1b4e1fcd799083bfa44c681daebb31d281759736ec7c1be05d2bd758b593cb1b449bdffb3736bc6746c8240ae1582e1b496b10820be5d21443ffec8e1bfd860c39363b982aff1b1d38c27c2ca6aea0d8669f1b34dab3d431dc25be80ffbf43299b2c43561e9cff1bd36989365b85e017ffa0d8669f1b7e1e2e0fa76f8ba09fd8669f1b44de94cb300d08fd9f420b281b4987cf4ecd9672eb1bafd2108d81c2ab5effff4c87754b1807f679ea55e81937431b369e4ccad3d851150b55a311fb23c6ffffff", + "cborBytes": [ + 159, 27, 60, 172, 153, 182, 102, 65, 45, 100, 159, 191, 27, 78, 31, 205, 121, 144, 131, 191, 164, 76, 104, 29, + 174, 187, 49, 210, 129, 117, 151, 54, 236, 124, 27, 224, 93, 43, 215, 88, 181, 147, 203, 27, 68, 155, 223, 251, + 55, 54, 188, 103, 70, 200, 36, 10, 225, 88, 46, 27, 73, 107, 16, 130, 11, 229, 210, 20, 67, 255, 236, 142, 27, + 253, 134, 12, 57, 54, 59, 152, 42, 255, 27, 29, 56, 194, 124, 44, 166, 174, 160, 216, 102, 159, 27, 52, 218, 179, + 212, 49, 220, 37, 190, 128, 255, 191, 67, 41, 155, 44, 67, 86, 30, 156, 255, 27, 211, 105, 137, 54, 91, 133, 224, + 23, 255, 160, 216, 102, 159, 27, 126, 30, 46, 15, 167, 111, 139, 160, 159, 216, 102, 159, 27, 68, 222, 148, 203, + 48, 13, 8, 253, 159, 66, 11, 40, 27, 73, 135, 207, 78, 205, 150, 114, 235, 27, 175, 210, 16, 141, 129, 194, 171, + 94, 255, 255, 76, 135, 117, 75, 24, 7, 246, 121, 234, 85, 232, 25, 55, 67, 27, 54, 158, 76, 202, 211, 216, 81, 21, + 11, 85, 163, 17, 251, 35, 198, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1356, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2107f0febd899427f0cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee226e10518f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef2a3231b1a38d5fbcdaa067" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16871717330515581121" + } + } + } + ] + } + ] + }, + "cborHex": "9fa0bf4a2107f0febd899427f0cc46ee226e10518f4cef2a3231b1a38d5fbcdaa0671bea2461859c2ed8c1ffff", + "cborBytes": [ + 159, 160, 191, 74, 33, 7, 240, 254, 189, 137, 148, 39, 240, 204, 70, 238, 34, 110, 16, 81, 143, 76, 239, 42, 50, + 49, 177, 163, 141, 95, 188, 218, 160, 103, 27, 234, 36, 97, 133, 156, 46, 216, 193, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1357, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15704449372473825710" + } + } + ] + }, + "cborHex": "9f9fa0a0ff801bd9f1697f9f6899aeff", + "cborBytes": [159, 159, 160, 160, 255, 128, 27, 217, 241, 105, 127, 159, 104, 153, 174, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1358, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d2607f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9b7e06" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5e68b96eb5b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1264846596260799505" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f43d2607f9f439b7e069f465e68b96eb5b81b118da347217ca411ffffff", + "cborBytes": [ + 159, 67, 210, 96, 127, 159, 67, 155, 126, 6, 159, 70, 94, 104, 185, 110, 181, 184, 27, 17, 141, 163, 71, 33, 124, + 164, 17, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1359, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "591a8ca473" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eed8b4bf332489b0" + } + } + ] + } + ] + }, + "cborHex": "9fbf45591a8ca47348eed8b4bf332489b0ffff", + "cborBytes": [159, 191, 69, 89, 26, 140, 164, 115, 72, 238, 216, 180, 191, 51, 36, 137, 176, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1360, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8fde81" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15667147455138687371" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33ed59816e" + } + } + ] + } + ] + }, + "cborHex": "9f1bfffffffffffffff01bffffffffffffffed438fde8111bf1bd96ce39a3334e98b4533ed59816effff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 27, 255, 255, 255, 255, 255, 255, 255, 237, 67, 143, 222, 129, + 17, 191, 27, 217, 108, 227, 154, 51, 52, 233, 139, 69, 51, 237, 89, 129, 110, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1361, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1539673150273234622" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14953722291372532493" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16476768151223377578" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2294689157780261195" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6033539253523375059" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2778470651133949495" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9084d134b4418e65a8a2664a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18163598939940274194" + } + }, + { + "_tag": "ByteArray", + "bytearray": "86ef" + }, + { + "_tag": "ByteArray", + "bytearray": "2bfbd8012641a8" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02fdfe" + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff79fbf1b155e0492983e26be1bcf864b321f19a30d1be4a93d55fc239eaa1b1fd85fa1976ec94bffd8669f1b53bb6ffbe8a2e3d39f1b268f1c5613aff6374c9084d134b4418e65a8a2664a1bfc12110041cd40124286ef472bfbd8012641a8ffff9f1bfffffffffffffff8ffffff4302fdfeff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 191, 27, 21, 94, 4, 146, 152, 62, 38, 190, + 27, 207, 134, 75, 50, 31, 25, 163, 13, 27, 228, 169, 61, 85, 252, 35, 158, 170, 27, 31, 216, 95, 161, 151, 110, + 201, 75, 255, 216, 102, 159, 27, 83, 187, 111, 251, 232, 162, 227, 211, 159, 27, 38, 143, 28, 86, 19, 175, 246, + 55, 76, 144, 132, 209, 52, 180, 65, 142, 101, 168, 162, 102, 74, 27, 252, 18, 17, 0, 65, 205, 64, 18, 66, 134, + 239, 71, 43, 251, 216, 1, 38, 65, 168, 255, 255, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 255, 255, 255, + 67, 2, 253, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1362, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1723392741417529783" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29af38ee6b48850ea1f03f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5255234067879867822" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d89175a74e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9920626074608809721" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16467234882751945637" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10268928048259873289" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e712d0ec1d497a0c925ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16796136364302684465" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1548807698453212027" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11448497879065959246" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4323345382651929619" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17365340439121307392" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12039641107436877344" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e676b9a946" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1254475697292761514" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2b9f61fe" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3462661098974112604" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7d69e" + }, + { + "_tag": "ByteArray", + "bytearray": "66a0fd4f46" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9734165513371904258" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f8dd25" + } + ] + } + ] + }, + "cborHex": "9fbf1b17eab89140adb1b74b29af38ee6b48850ea1f03f1b48ee578a9382b5ae45d89175a74e1b89ad24da668936f91be4875ee0f359dba51b8e828fa71c933a094b3e712d0ec1d497a0c925ff1be917dd08994851311b157e786553b1ab7bff9fd8669f1b9ee13c2a0d8a1b4e9f1b3bff9bb82e4b24131bf0fe151fb58d27001ba71565cc67f7362045e676b9a9461b1168cb000c7ed9aaffffff442b9f61fe9f1b300dd7ec6dea6b5c43d7d69e4566a0fd4f461b8716b3f5e963e90243f8dd25ffff", + "cborBytes": [ + 159, 191, 27, 23, 234, 184, 145, 64, 173, 177, 183, 75, 41, 175, 56, 238, 107, 72, 133, 14, 161, 240, 63, 27, 72, + 238, 87, 138, 147, 130, 181, 174, 69, 216, 145, 117, 167, 78, 27, 137, 173, 36, 218, 102, 137, 54, 249, 27, 228, + 135, 94, 224, 243, 89, 219, 165, 27, 142, 130, 143, 167, 28, 147, 58, 9, 75, 62, 113, 45, 14, 193, 212, 151, 160, + 201, 37, 255, 27, 233, 23, 221, 8, 153, 72, 81, 49, 27, 21, 126, 120, 101, 83, 177, 171, 123, 255, 159, 216, 102, + 159, 27, 158, 225, 60, 42, 13, 138, 27, 78, 159, 27, 59, 255, 155, 184, 46, 75, 36, 19, 27, 240, 254, 21, 31, 181, + 141, 39, 0, 27, 167, 21, 101, 204, 103, 247, 54, 32, 69, 230, 118, 185, 169, 70, 27, 17, 104, 203, 0, 12, 126, + 217, 170, 255, 255, 255, 68, 43, 159, 97, 254, 159, 27, 48, 13, 215, 236, 109, 234, 107, 92, 67, 215, 214, 158, + 69, 102, 160, 253, 79, 70, 27, 135, 22, 179, 245, 233, 99, 233, 2, 67, 248, 221, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1363, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2f620f374d32" + } + ] + }, + "cborHex": "9f462f620f374d32ff", + "cborBytes": [159, 70, 47, 98, 15, 55, 77, 50, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1364, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1256" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14071954178812955191" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24e48a9e406ced7c52" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17187522475887326845" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73580c93" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8d0e1111ea57183" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8727c7981043a64d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17283176598650525729" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8dd5a655360f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d0d09763a194b9c7a4023" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b27a2f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17863777958168867022" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1122314272759618460" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10416201991059141992" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8171518833087305508" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17194756183362871966" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9563000622918335047" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7501130264422645939" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16135825114374815896" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1329395488859008165" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16324186117058269842" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "271a1bf53a" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d4c8406e0b78413f13" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1870068974992800915" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14199025014691815152" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6732692360094381758" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8753487435666046812" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11029061638474703935" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98b90a20211db12e997dc7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17714714762871416915" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d301ffaf77ed240f" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c9477f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1557743841920493376" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cf07c878717294" + }, + { + "_tag": "ByteArray", + "bytearray": "0be7c5f2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14882471865480478848" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14020288452824592498" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11601367525478575712" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "93" + } + ] + } + ] + }, + "cborHex": "9f9fbf4212561bc3499fc4ebb84a374924e48a9e406ced7c521bee8658a0e04e767d4473580c9348e8d0e1111ea57183488727c7981043a64d1befda2d8bd8e8982147a8dd5a655360f74b2d0d09763a194b9c7a402343b27a2f1bf7e8e368171bb0ceffbf1b0f9342e282301b9c1b908dc88601cbf5681b71671115899557241beea00ba5a4cba29e1b84b69a664be2fa471b68195e3b98d800b31bdfedf773442340981b1272f6275772aca51be28b28c8c29f129245271a1bf53aff49d4c8406e0b78413f13bf1b19f3d1d31fecbc931bc50d12056d975ef01b5d6f5407b96976be1b797aa271dcb83f5c1b990f19202f2c243f4b98b90a20211db12e997dc71bf5d74f386251a85348d301ffaf77ed240fff43c9477fff1b159e37c55cb9274047cf07c878717294440be7c5f2d8669f1bce89294f99b580809fbf1bc2921210af1ef0721ba100564c38e72e60ff4193ffffff", + "cborBytes": [ + 159, 159, 191, 66, 18, 86, 27, 195, 73, 159, 196, 235, 184, 74, 55, 73, 36, 228, 138, 158, 64, 108, 237, 124, 82, + 27, 238, 134, 88, 160, 224, 78, 118, 125, 68, 115, 88, 12, 147, 72, 232, 208, 225, 17, 30, 165, 113, 131, 72, 135, + 39, 199, 152, 16, 67, 166, 77, 27, 239, 218, 45, 139, 216, 232, 152, 33, 71, 168, 221, 90, 101, 83, 96, 247, 75, + 45, 13, 9, 118, 58, 25, 75, 156, 122, 64, 35, 67, 178, 122, 47, 27, 247, 232, 227, 104, 23, 27, 176, 206, 255, + 191, 27, 15, 147, 66, 226, 130, 48, 27, 156, 27, 144, 141, 200, 134, 1, 203, 245, 104, 27, 113, 103, 17, 21, 137, + 149, 87, 36, 27, 238, 160, 11, 165, 164, 203, 162, 158, 27, 132, 182, 154, 102, 75, 226, 250, 71, 27, 104, 25, 94, + 59, 152, 216, 0, 179, 27, 223, 237, 247, 115, 68, 35, 64, 152, 27, 18, 114, 246, 39, 87, 114, 172, 165, 27, 226, + 139, 40, 200, 194, 159, 18, 146, 69, 39, 26, 27, 245, 58, 255, 73, 212, 200, 64, 110, 11, 120, 65, 63, 19, 191, + 27, 25, 243, 209, 211, 31, 236, 188, 147, 27, 197, 13, 18, 5, 109, 151, 94, 240, 27, 93, 111, 84, 7, 185, 105, + 118, 190, 27, 121, 122, 162, 113, 220, 184, 63, 92, 27, 153, 15, 25, 32, 47, 44, 36, 63, 75, 152, 185, 10, 32, 33, + 29, 177, 46, 153, 125, 199, 27, 245, 215, 79, 56, 98, 81, 168, 83, 72, 211, 1, 255, 175, 119, 237, 36, 15, 255, + 67, 201, 71, 127, 255, 27, 21, 158, 55, 197, 92, 185, 39, 64, 71, 207, 7, 200, 120, 113, 114, 148, 68, 11, 231, + 197, 242, 216, 102, 159, 27, 206, 137, 41, 79, 153, 181, 128, 128, 159, 191, 27, 194, 146, 18, 16, 175, 30, 240, + 114, 27, 161, 0, 86, 76, 56, 231, 46, 96, 255, 65, 147, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1365, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a61ecfbfd598af41c7c5e" + } + ] + }, + "cborHex": "9f4b6a61ecfbfd598af41c7c5eff", + "cborBytes": [159, 75, 106, 97, 236, 251, 253, 89, 138, 244, 28, 124, 94, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1366, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16764416930794601585" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d77d92af94c0502969ee" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2767050379018647170" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6afcf8f6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "181842737152361812" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4159818347730654729" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "25202e" + } + ] + } + ] + }, + "cborHex": "9fd9050d9fd8669f1be8a72c607a8e7c719f4ad77d92af94c0502969eeffffff1b266689a8c5043682446afcf8f61b0286090188f38554d8669f1b39baa4bf62a356099f4325202effffff", + "cborBytes": [ + 159, 217, 5, 13, 159, 216, 102, 159, 27, 232, 167, 44, 96, 122, 142, 124, 113, 159, 74, 215, 125, 146, 175, 148, + 192, 80, 41, 105, 238, 255, 255, 255, 27, 38, 102, 137, 168, 197, 4, 54, 130, 68, 106, 252, 248, 246, 27, 2, 134, + 9, 1, 136, 243, 133, 84, 216, 102, 159, 27, 57, 186, 164, 191, 98, 163, 86, 9, 159, 67, 37, 32, 46, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1367, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4610316421255930796" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13775826451226960005" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9382697555479644412" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12375674627995052000" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9981337028651628895" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6aa6c4913dbac76f551f" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b3ffb225bcf1c23ac1bbf2d912b80d020851b823609b70d4a48fc1babbf3a814975a7e01b8a84d524e83bb95f4a6aa6c4913dbac76f551fffff", + "cborBytes": [ + 159, 191, 27, 63, 251, 34, 91, 207, 28, 35, 172, 27, 191, 45, 145, 43, 128, 208, 32, 133, 27, 130, 54, 9, 183, 13, + 74, 72, 252, 27, 171, 191, 58, 129, 73, 117, 167, 224, 27, 138, 132, 213, 36, 232, 59, 185, 95, 74, 106, 166, 196, + 145, 61, 186, 199, 111, 85, 31, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1368, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16102558096043571708" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14688080729651243691" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8978662103049960543" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2822503579993605572" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2377936549437183257" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f1f4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2510866747888771646" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5672676214370640268" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5988c784788" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9701822125465223733" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a4f3cc4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9972189119592591652" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "692a594196cd6a1da9d9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12771313488344270183" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14261528415993123233" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11660474549894515380" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7142827506538581857" + } + }, + { + "_tag": "ByteArray", + "bytearray": "26004ffd459c503c" + }, + { + "_tag": "ByteArray", + "bytearray": "83ea79" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bdf77c745f9c479fc9fd8669f1bcbd68b9a531f6aab9f1b7c9a9d9c9a8dfc5f1b272b8c0d3ec985c41b210020b15f9f151942f1f41b22d864010a40223effffbf1b4eb964f63b5ea18c46e5988c7847881b86a3cbd216614235442a4f3cc41b8a64552b5a54f1244a692a594196cd6a1da9d91bb13cd1f3cbea45671bc5eb20889568d1a1ff9f1ba1d253d2c2f20ab41b63206bc5db1f0f614826004ffd459c503c4383ea79ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 223, 119, 199, 69, 249, 196, 121, 252, 159, 216, 102, 159, 27, 203, 214, 139, 154, 83, 31, + 106, 171, 159, 27, 124, 154, 157, 156, 154, 141, 252, 95, 27, 39, 43, 140, 13, 62, 201, 133, 196, 27, 33, 0, 32, + 177, 95, 159, 21, 25, 66, 241, 244, 27, 34, 216, 100, 1, 10, 64, 34, 62, 255, 255, 191, 27, 78, 185, 100, 246, 59, + 94, 161, 140, 70, 229, 152, 140, 120, 71, 136, 27, 134, 163, 203, 210, 22, 97, 66, 53, 68, 42, 79, 60, 196, 27, + 138, 100, 85, 43, 90, 84, 241, 36, 74, 105, 42, 89, 65, 150, 205, 106, 29, 169, 217, 27, 177, 60, 209, 243, 203, + 234, 69, 103, 27, 197, 235, 32, 136, 149, 104, 209, 161, 255, 159, 27, 161, 210, 83, 210, 194, 242, 10, 180, 27, + 99, 32, 107, 197, 219, 31, 15, 97, 72, 38, 0, 79, 253, 69, 156, 80, 60, 67, 131, 234, 121, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1369, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a215296a1e5f430f8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12895963115859311297" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a5ec2a4a276a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14479657650540483809" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10175198579360350382" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13075536246469280931" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2123cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6233124650993919415" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d8ddcd908ea437d8b037a9" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f496a215296a1e5f430f8d87d9f1bb2f7aa20cd557ac146a5ec2a4a276a1bc8f213eaa9bb94e1bf1b8d35913289d540ae1bb575a2f0628bc4a3432123cf1b568081d8773925b7ff4bd8ddcd908ea437d8b037a9ff80ff", + "cborBytes": [ + 159, 73, 106, 33, 82, 150, 161, 229, 244, 48, 248, 216, 125, 159, 27, 178, 247, 170, 32, 205, 85, 122, 193, 70, + 165, 236, 42, 74, 39, 106, 27, 200, 242, 19, 234, 169, 187, 148, 225, 191, 27, 141, 53, 145, 50, 137, 213, 64, + 174, 27, 181, 117, 162, 240, 98, 139, 196, 163, 67, 33, 35, 207, 27, 86, 128, 129, 216, 119, 57, 37, 183, 255, 75, + 216, 221, 205, 144, 142, 164, 55, 216, 176, 55, 169, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1370, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5083807731761362130" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9313285853686464271" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11774092954057525656" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8562250640207251176" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "845599549880880990" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2175793547710121175" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b388bd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3253259565997942695" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17783145121328958284" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4103708341172950254" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12265552715646456133" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6209425245409525570" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3140244916187117999" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10807774167623707705" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9b228" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b468d5032660534d29f9f1b813f7023d8a6ff0f1ba365fb28ef0749981b76d33997af6a06e81b0bbc2c4f78e14f5effffffbf1b1e31f8b42bd944d743b388bd1b2d25e656b972e7a71bf6ca6c44ca088b4c1b38f34cfe716bd4ee1baa37ff358def51451b562c4f5c9bfa3f421b2b94641d110f39af1b95fced57e9daac3943b9b228ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 70, 141, 80, 50, 102, 5, 52, 210, 159, 159, 27, 129, 63, 112, 35, 216, 166, 255, 15, 27, + 163, 101, 251, 40, 239, 7, 73, 152, 27, 118, 211, 57, 151, 175, 106, 6, 232, 27, 11, 188, 44, 79, 120, 225, 79, + 94, 255, 255, 255, 191, 27, 30, 49, 248, 180, 43, 217, 68, 215, 67, 179, 136, 189, 27, 45, 37, 230, 86, 185, 114, + 231, 167, 27, 246, 202, 108, 68, 202, 8, 139, 76, 27, 56, 243, 76, 254, 113, 107, 212, 238, 27, 170, 55, 255, 53, + 141, 239, 81, 69, 27, 86, 44, 79, 92, 155, 250, 63, 66, 27, 43, 148, 100, 29, 17, 15, 57, 175, 27, 149, 252, 237, + 87, 233, 218, 172, 57, 67, 185, 178, 40, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1371, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c69" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15529260896328949862" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ecb058d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11358923757096464557" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e5cce20109c40ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "853472883367115703" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94cd62d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "194402de36d1cd328195" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bccfdc001b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea7325c4fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db7549" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16690c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4bbdb004ea" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "249430403210361196" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "692d05a997fdfde19375" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4205556518698319784" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd8c0dcf342df4c902cd3d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6460218079876883833" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4521165519739705175" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12879224933824086384" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3b4eb4bf6" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16772793428182935842" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12163414572452480561" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10530581224453114476" + } + } + ] + }, + "cborHex": "9f9fbf422c691bd7830481f60d2066444ecb058d1b9da300f9947af0ad488e5cce20109c40ae1b0bd82510c6867bb74494cd62d94a194402de36d1cd32819545bccfdc001b45ea7325c4fb43db75494107ffbf4316690c454bbdb004eaffbf1b037627a15389396c4a692d05a997fdfde193751b3a5d235f2bd77fa84bbd8c0dcf342df4c902cd3d1b59a74e1dae9e25791b3ebe681606d457571bb2bc32d71af0417045a3b4eb4bf6ffbf1be8c4eec1c1d9a9221ba8cd211beed70631ffff1b922423d489ed0a6cff", + "cborBytes": [ + 159, 159, 191, 66, 44, 105, 27, 215, 131, 4, 129, 246, 13, 32, 102, 68, 78, 203, 5, 141, 27, 157, 163, 0, 249, + 148, 122, 240, 173, 72, 142, 92, 206, 32, 16, 156, 64, 174, 27, 11, 216, 37, 16, 198, 134, 123, 183, 68, 148, 205, + 98, 217, 74, 25, 68, 2, 222, 54, 209, 205, 50, 129, 149, 69, 188, 207, 220, 0, 27, 69, 234, 115, 37, 196, 251, 67, + 219, 117, 73, 65, 7, 255, 191, 67, 22, 105, 12, 69, 75, 189, 176, 4, 234, 255, 191, 27, 3, 118, 39, 161, 83, 137, + 57, 108, 74, 105, 45, 5, 169, 151, 253, 253, 225, 147, 117, 27, 58, 93, 35, 95, 43, 215, 127, 168, 75, 189, 140, + 13, 207, 52, 45, 244, 201, 2, 205, 61, 27, 89, 167, 78, 29, 174, 158, 37, 121, 27, 62, 190, 104, 22, 6, 212, 87, + 87, 27, 178, 188, 50, 215, 26, 240, 65, 112, 69, 163, 180, 235, 75, 246, 255, 191, 27, 232, 196, 238, 193, 193, + 217, 169, 34, 27, 168, 205, 33, 27, 238, 215, 6, 49, 255, 255, 27, 146, 36, 35, 212, 137, 237, 10, 108, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1372, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1937780514663776322" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c400" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10062033011226925415" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dbbb42015cd0d0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12356661948736496099" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f032a08047" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13230434394263373605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4599637827811828187" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17717539526731791694" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa852a008338eadd41af80" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18085186115723707094" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16e68bd1f3" + } + } + ] + } + ] + }, + "cborHex": "9fa0bf1b1ae4611c7d35404242c4001b8ba385b6786f596747dbbb42015cd0d01bab7bae92f00661e345f032a080471bb79bf1fbd62dc7251b3fd5323c062c61db1bf5e15853f8ca7d4e4baa852a008338eadd41af801bfafb7cf3ec89c2d64516e68bd1f3ffff", + "cborBytes": [ + 159, 160, 191, 27, 26, 228, 97, 28, 125, 53, 64, 66, 66, 196, 0, 27, 139, 163, 133, 182, 120, 111, 89, 103, 71, + 219, 187, 66, 1, 92, 208, 208, 27, 171, 123, 174, 146, 240, 6, 97, 227, 69, 240, 50, 160, 128, 71, 27, 183, 155, + 241, 251, 214, 45, 199, 37, 27, 63, 213, 50, 60, 6, 44, 97, 219, 27, 245, 225, 88, 83, 248, 202, 125, 78, 75, 170, + 133, 42, 0, 131, 56, 234, 221, 65, 175, 128, 27, 250, 251, 124, 243, 236, 137, 194, 214, 69, 22, 230, 139, 209, + 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1373, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7893908634976953710" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5237416551866889581" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1027120611169808152" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15337924476072979713" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10447538509714230144" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7620423240939401976" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a3b6c9bba7847ac29d79" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1811520885546108119" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4631892192088525324" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4254953860193353099" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d66334c2bf4c116931a12" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5096861549815909561" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0671" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6740645390403525713" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3422381924033994241" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12561932429854189361" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "555f326d8cb435279f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15879873252202276640" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "69802430059713881" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12769840925918270698" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cf5a8cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "338e1eba23" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cd848d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10083305284293161706" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15087130778572045759" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05e58f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4322736604455267799" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "468871466322903216" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4100763809160331728" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3613037006415656089" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6382013822943663719" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6949c07e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7975769158216105127" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ccecae3dd24" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16201437888747188587" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17424141477769405683" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ce5c942417" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12936864505474646346" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9078641942633969459" + } + }, + { + "_tag": "ByteArray", + "bytearray": "365dd8acf1f5" + }, + { + "_tag": "ByteArray", + "bytearray": "8a8e3ccaf1bc00ade5373f92" + }, + { + "_tag": "ByteArray", + "bytearray": "40489f358eeb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11151160135618138282" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b6d8ccc146d30a56e9fd8669f1b48af0a9adac6f56d9f1b0e4110c102422f181bd4db410c14196d011b90fd1cebd0bb0b801b69c12e901a52f2f84aa3b6c9bba7847ac29d79ffffbf1b1923d0a5c62d44d71b4047c9686b578a0c1b3b0ca1fdfc807d8b4b5d66334c2bf4c116931a121b46bbb093421fccb94206711b5d8b9544e3e05c511b2f7ebe3a33c39e011bae54f2fd2deb273149555f326d8cb435279f1bdc60a49673be67201b00f7fcf0b82b1559ffffffd8669f1bb13796aa239a94ea9fbf444cf5a8cc45338e1eba23ffffff43cd848dd8669f1b8bef18bb801cf2ea9fd8669f1bd160418210a63dbf9f4305e58fffff1b3bfd7209f6226dd7bf1b0681c41d4b7e40b0417b1b38e8d6f528c781d01b32241603bfbef4991b589177c234309667446949c07e1b6eaf9fcabdfcbca7468ccecae3dd241be0d711ebc154b16b1bf1cefc5b629864f3ff45ce5c942417d8669f1bb388f9b9ac2d014a9f1b7dfdd0bf01a8f73346365dd8acf1f54c8a8e3ccaf1bc00ade5373f924640489f358eeb1b9ac0e10fdd0410aaffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 109, 140, 204, 20, 109, 48, 165, 110, 159, 216, 102, 159, 27, 72, 175, 10, 154, 218, 198, + 245, 109, 159, 27, 14, 65, 16, 193, 2, 66, 47, 24, 27, 212, 219, 65, 12, 20, 25, 109, 1, 27, 144, 253, 28, 235, + 208, 187, 11, 128, 27, 105, 193, 46, 144, 26, 82, 242, 248, 74, 163, 182, 201, 187, 167, 132, 122, 194, 157, 121, + 255, 255, 191, 27, 25, 35, 208, 165, 198, 45, 68, 215, 27, 64, 71, 201, 104, 107, 87, 138, 12, 27, 59, 12, 161, + 253, 252, 128, 125, 139, 75, 93, 102, 51, 76, 43, 244, 193, 22, 147, 26, 18, 27, 70, 187, 176, 147, 66, 31, 204, + 185, 66, 6, 113, 27, 93, 139, 149, 68, 227, 224, 92, 81, 27, 47, 126, 190, 58, 51, 195, 158, 1, 27, 174, 84, 242, + 253, 45, 235, 39, 49, 73, 85, 95, 50, 109, 140, 180, 53, 39, 159, 27, 220, 96, 164, 150, 115, 190, 103, 32, 27, 0, + 247, 252, 240, 184, 43, 21, 89, 255, 255, 255, 216, 102, 159, 27, 177, 55, 150, 170, 35, 154, 148, 234, 159, 191, + 68, 76, 245, 168, 204, 69, 51, 142, 30, 186, 35, 255, 255, 255, 67, 205, 132, 141, 216, 102, 159, 27, 139, 239, + 24, 187, 128, 28, 242, 234, 159, 216, 102, 159, 27, 209, 96, 65, 130, 16, 166, 61, 191, 159, 67, 5, 229, 143, 255, + 255, 27, 59, 253, 114, 9, 246, 34, 109, 215, 191, 27, 6, 129, 196, 29, 75, 126, 64, 176, 65, 123, 27, 56, 232, + 214, 245, 40, 199, 129, 208, 27, 50, 36, 22, 3, 191, 190, 244, 153, 27, 88, 145, 119, 194, 52, 48, 150, 103, 68, + 105, 73, 192, 126, 27, 110, 175, 159, 202, 189, 252, 188, 167, 70, 140, 206, 202, 227, 221, 36, 27, 224, 215, 17, + 235, 193, 84, 177, 107, 27, 241, 206, 252, 91, 98, 152, 100, 243, 255, 69, 206, 92, 148, 36, 23, 216, 102, 159, + 27, 179, 136, 249, 185, 172, 45, 1, 74, 159, 27, 125, 253, 208, 191, 1, 168, 247, 51, 70, 54, 93, 216, 172, 241, + 245, 76, 138, 142, 60, 202, 241, 188, 0, 173, 229, 55, 63, 146, 70, 64, 72, 159, 53, 142, 235, 27, 154, 192, 225, + 15, 221, 4, 16, 170, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1374, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1032510150384703249" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7b09ebb4e1e8cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6918984066715374137" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "38efd2f71be4945f" + }, + { + "_tag": "ByteArray", + "bytearray": "b3be21b5d88e7565d094b4e6" + }, + { + "_tag": "ByteArray", + "bytearray": "c593fa" + }, + { + "_tag": "ByteArray", + "bytearray": "a2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15482829378810339520" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6c64fc8e16" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + ] + }, + "cborHex": "9f1b0e543682e4aa5711809fd9050a9f477b09ebb4e1e8cc1b60052b59af285239ff9f4838efd2f71be4945f4cb3be21b5d88e7565d094b4e643c593fa41a21bd6de0f49d9f8e0c0ffff456c64fc8e161bfffffffffffffff4ff", + "cborBytes": [ + 159, 27, 14, 84, 54, 130, 228, 170, 87, 17, 128, 159, 217, 5, 10, 159, 71, 123, 9, 235, 180, 225, 232, 204, 27, + 96, 5, 43, 89, 175, 40, 82, 57, 255, 159, 72, 56, 239, 210, 247, 27, 228, 148, 95, 76, 179, 190, 33, 181, 216, + 142, 117, 101, 208, 148, 180, 230, 67, 197, 147, 250, 65, 162, 27, 214, 222, 15, 73, 217, 248, 224, 192, 255, 255, + 69, 108, 100, 252, 142, 22, 27, 255, 255, 255, 255, 255, 255, 255, 244, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1375, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "55f04b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12362417698740953598" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15958734747180722675" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13519967063127526540" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "747198503864581925" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10528628928741229771" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17776737523138775287" + } + }, + { + "_tag": "ByteArray", + "bytearray": "20b7da" + }, + { + "_tag": "ByteArray", + "bytearray": "92" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8255815172619780111" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e59be4714b2d56f79057" + } + ] + } + ] + }, + "cborHex": "9fa09f4355f04b1bab902165ea74e1fe9f1bdd78d0b31663e9f31bbba092697cb28c8c1b0a5e9514978d3f25ffd8669f1b921d343a4585c4cb9f1bf6b3a897940b48f74320b7da41921b72928c288748400fffff4ae59be4714b2d56f79057ffff", + "cborBytes": [ + 159, 160, 159, 67, 85, 240, 75, 27, 171, 144, 33, 101, 234, 116, 225, 254, 159, 27, 221, 120, 208, 179, 22, 99, + 233, 243, 27, 187, 160, 146, 105, 124, 178, 140, 140, 27, 10, 94, 149, 20, 151, 141, 63, 37, 255, 216, 102, 159, + 27, 146, 29, 52, 58, 69, 133, 196, 203, 159, 27, 246, 179, 168, 151, 148, 11, 72, 247, 67, 32, 183, 218, 65, 146, + 27, 114, 146, 140, 40, 135, 72, 64, 15, 255, 255, 74, 229, 155, 228, 113, 75, 45, 86, 247, 144, 87, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1376, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "907308674401968289" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "465793584940442085" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2236508904097514768" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10506947254496304137" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3967868512141620281" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4264845501505355108" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4278928605099897647" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3aa1c9967d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7335896247065857813" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9574344274621413370" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15357149333534409494" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6517616922163809540" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3248651168936462701" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1289a7eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15557603519217795208" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6f505428a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9667731514932254827" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c853169d6432cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f549ac1d36ef" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3213555192808835769" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18377685406816118099" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dd224fce" + }, + { + "_tag": "ByteArray", + "bytearray": "dba2015a48355aadcada" + }, + { + "_tag": "ByteArray", + "bytearray": "605c40" + }, + { + "_tag": "ByteArray", + "bytearray": "85" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1338564053390500744" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10203887320060787943" + } + }, + { + "_tag": "ByteArray", + "bytearray": "96028c21ab902a4de5" + }, + { + "_tag": "ByteArray", + "bytearray": "c097" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14065131999410292790" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15432459145524631309" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b0c97686ea75c20a11b0676d4cc3107e1e51b1f09acffadbb05101b91d02cdc1a049c091b3710b3639da8b4391b3b2fc66333263d641b3b61cee5463cb32f453aa1c9967d1b65ce56c4fb7b4f151b84dee764061ab7fa1bd51f8df403f203161b5a733a0f13a60d04ff1b2d158706ab9d896dbf441289a7eb1bd7e7b5f91758008845a6f505428a1b862aae974b62d86b47c853169d6432cc46f549ac1d36efffd8669f1b2c98d76bf57b8ab99fd8669f1bff0aa7822327a5539f44dd224fce4adba2015a48355aadcada43605c404185ffffd8669f1b129388ea1f72a3889f1b8d9b7d748055fce74996028c21ab902a4de542c0971bc33163087fd48836ffff1bd62b1bd403b9570dffffff", + "cborBytes": [ + 159, 191, 27, 12, 151, 104, 110, 167, 92, 32, 161, 27, 6, 118, 212, 204, 49, 7, 225, 229, 27, 31, 9, 172, 255, + 173, 187, 5, 16, 27, 145, 208, 44, 220, 26, 4, 156, 9, 27, 55, 16, 179, 99, 157, 168, 180, 57, 27, 59, 47, 198, + 99, 51, 38, 61, 100, 27, 59, 97, 206, 229, 70, 60, 179, 47, 69, 58, 161, 201, 150, 125, 27, 101, 206, 86, 196, + 251, 123, 79, 21, 27, 132, 222, 231, 100, 6, 26, 183, 250, 27, 213, 31, 141, 244, 3, 242, 3, 22, 27, 90, 115, 58, + 15, 19, 166, 13, 4, 255, 27, 45, 21, 135, 6, 171, 157, 137, 109, 191, 68, 18, 137, 167, 235, 27, 215, 231, 181, + 249, 23, 88, 0, 136, 69, 166, 245, 5, 66, 138, 27, 134, 42, 174, 151, 75, 98, 216, 107, 71, 200, 83, 22, 157, 100, + 50, 204, 70, 245, 73, 172, 29, 54, 239, 255, 216, 102, 159, 27, 44, 152, 215, 107, 245, 123, 138, 185, 159, 216, + 102, 159, 27, 255, 10, 167, 130, 35, 39, 165, 83, 159, 68, 221, 34, 79, 206, 74, 219, 162, 1, 90, 72, 53, 90, 173, + 202, 218, 67, 96, 92, 64, 65, 133, 255, 255, 216, 102, 159, 27, 18, 147, 136, 234, 31, 114, 163, 136, 159, 27, + 141, 155, 125, 116, 128, 85, 252, 231, 73, 150, 2, 140, 33, 171, 144, 42, 77, 229, 66, 192, 151, 27, 195, 49, 99, + 8, 127, 212, 136, 54, 255, 255, 27, 214, 43, 27, 212, 3, 185, 87, 13, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1377, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "371854946451260504" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ac5ed9a54c750" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "946a35ff0b4a558585" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95a16fe9ef" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5020266800226986479" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "07319f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "670743671720997445" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a73eb6ce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b296252ce" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b6a5" + } + ] + }, + "cborHex": "9fd8669f1b0529181a873304589fbf475ac5ed9a54c750410a49946a35ff0b4a5585854595a16fe9efffffffd8669f1bfffffffffffffff49f9f1b45ab920e693769efffffff4307319fd8669f1b094ef5d0d04572459fbf44a73eb6ce452b296252ceffffff42b6a5ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 5, 41, 24, 26, 135, 51, 4, 88, 159, 191, 71, 90, 197, 237, 154, 84, 199, 80, 65, 10, 73, + 148, 106, 53, 255, 11, 74, 85, 133, 133, 69, 149, 161, 111, 233, 239, 255, 255, 255, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 244, 159, 159, 27, 69, 171, 146, 14, 105, 55, 105, 239, 255, 255, 255, 67, 7, 49, 159, + 216, 102, 159, 27, 9, 78, 245, 208, 208, 69, 114, 69, 159, 191, 68, 167, 62, 182, 206, 69, 43, 41, 98, 82, 206, + 255, 255, 255, 66, 182, 165, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1378, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11037207874102791155" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17921065211484448154" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12499306124005929873" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12380428710825261180" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17673613986684044857" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10b02335d39d26624ad86db9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17876610773322844358" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ececc138702de53" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "756ee62d9712" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1557519803130863736" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d33564e4322848eefc16" + } + ] + } + ] + }, + "cborHex": "9fbf1b992c0a15780a8bf31bf8b469dc2724259a1bad7674b2143cf3911babd01e5173c9787c1bf5454a4835ad86394c10b02335d39d26624ad86db91bf8167ac8b3d448c6480ececc138702de53ff9f46756ee62d9712ffd8669f1b159d6c02444060789f4ad33564e4322848eefc16ffffff", + "cborBytes": [ + 159, 191, 27, 153, 44, 10, 21, 120, 10, 139, 243, 27, 248, 180, 105, 220, 39, 36, 37, 154, 27, 173, 118, 116, 178, + 20, 60, 243, 145, 27, 171, 208, 30, 81, 115, 201, 120, 124, 27, 245, 69, 74, 72, 53, 173, 134, 57, 76, 16, 176, + 35, 53, 211, 157, 38, 98, 74, 216, 109, 185, 27, 248, 22, 122, 200, 179, 212, 72, 198, 72, 14, 206, 204, 19, 135, + 2, 222, 83, 255, 159, 70, 117, 110, 230, 45, 151, 18, 255, 216, 102, 159, 27, 21, 157, 108, 2, 68, 64, 96, 120, + 159, 74, 211, 53, 100, 228, 50, 40, 72, 238, 252, 22, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1379, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0f27a3cac95c9275" + } + ] + }, + "cborHex": "9f480f27a3cac95c9275ff", + "cborBytes": [159, 72, 15, 39, 163, 202, 201, 92, 146, 117, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1380, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7072704657155041871" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4696554429404655776" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0d806c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "200539344186959840" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5463396183186291254" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2994667810838888263" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12395387153663237830" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d8bfabd6e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4b4cee1e076c6057496a4b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3d63af1c70602b6a19f8" + } + ] + }, + "cborHex": "9f1b62274b69b2fa2a4f9fd8669f1b412d835ec0f3b0a09f430d806cffff1b02c8757895c0e7e0ff9f1b4bd1e1e1de0b3a361b298f3281ed593f47bf1bac0542f153899ec6453d8bfabd6e4ce4b4cee1e076c6057496a4b741efffff4a3d63af1c70602b6a19f8ff", + "cborBytes": [ + 159, 27, 98, 39, 75, 105, 178, 250, 42, 79, 159, 216, 102, 159, 27, 65, 45, 131, 94, 192, 243, 176, 160, 159, 67, + 13, 128, 108, 255, 255, 27, 2, 200, 117, 120, 149, 192, 231, 224, 255, 159, 27, 75, 209, 225, 225, 222, 11, 58, + 54, 27, 41, 143, 50, 129, 237, 89, 63, 71, 191, 27, 172, 5, 66, 241, 83, 137, 158, 198, 69, 61, 139, 250, 189, + 110, 76, 228, 180, 206, 225, 224, 118, 198, 5, 116, 150, 164, 183, 65, 239, 255, 255, 74, 61, 99, 175, 28, 112, + 96, 43, 106, 25, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1381, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3333575872166219060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3384313674029566760" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9455524603358003963" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf1c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12956089007708193587" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6644148359329408402" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74ce71d1069dbc2b39cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12892778926010393314" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7affde1f72654f2b94a3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7320172243583387233" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b2e433d97fc47cd341b2ef77f5b0d078b28ffbf1b8338c5877c1ec2fb42cf1c1bb3cd464ee6ca43331b5c34c1bb08d2e5924a74ce71d1069dbc2b39cb1bb2ec5a1fd47de2e24a7affde1f72654f2b94a31b659679df21764661ffff", + "cborBytes": [ + 159, 191, 27, 46, 67, 61, 151, 252, 71, 205, 52, 27, 46, 247, 127, 91, 13, 7, 139, 40, 255, 191, 27, 131, 56, 197, + 135, 124, 30, 194, 251, 66, 207, 28, 27, 179, 205, 70, 78, 230, 202, 67, 51, 27, 92, 52, 193, 187, 8, 210, 229, + 146, 74, 116, 206, 113, 209, 6, 157, 188, 43, 57, 203, 27, 178, 236, 90, 31, 212, 125, 226, 226, 74, 122, 255, + 222, 31, 114, 101, 79, 43, 148, 163, 27, 101, 150, 121, 223, 33, 118, 70, 97, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1382, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f5a76eb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3282233557527792605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3560139970992908881" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6214396343762783062" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0705b0ff028d0034" + } + } + ] + } + ] + }, + "cborHex": "9fa0bf0b1bfffffffffffffff610443f5a76eb14031b2d8cd607d24f8bdd071b31682870f1b3aa51071b563df88ca3778b56480705b0ff028d0034ffff", + "cborBytes": [ + 159, 160, 191, 11, 27, 255, 255, 255, 255, 255, 255, 255, 246, 16, 68, 63, 90, 118, 235, 20, 3, 27, 45, 140, 214, + 7, 210, 79, 139, 221, 7, 27, 49, 104, 40, 112, 241, 179, 170, 81, 7, 27, 86, 61, 248, 140, 163, 119, 139, 86, 72, + 7, 5, 176, 255, 2, 141, 0, 52, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1383, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9403010203" + } + ] + }, + "cborHex": "9f459403010203ff", + "cborBytes": [159, 69, 148, 3, 1, 2, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1384, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7c89ae39dcfba62a6ef8" + }, + { + "_tag": "ByteArray", + "bytearray": "8bf1baa9e2" + }, + { + "_tag": "ByteArray", + "bytearray": "d32b7ef8a15283" + }, + { + "_tag": "ByteArray", + "bytearray": "29065fef378103" + }, + { + "_tag": "ByteArray", + "bytearray": "bd1b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15460492808177276855" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [] + } + ] + }, + "cborHex": "9f9f9f4a7c89ae39dcfba62a6ef8458bf1baa9e247d32b7ef8a152834729065fef37810342bd1bff1bd68eb44bbbe357b7ffd9050d80ff", + "cborBytes": [ + 159, 159, 159, 74, 124, 137, 174, 57, 220, 251, 166, 42, 110, 248, 69, 139, 241, 186, 169, 226, 71, 211, 43, 126, + 248, 161, 82, 131, 71, 41, 6, 95, 239, 55, 129, 3, 66, 189, 27, 255, 27, 214, 142, 180, 75, 187, 227, 87, 183, + 255, 217, 5, 13, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1385, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + }, + "cborHex": "9f07ff", + "cborBytes": [159, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1386, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13562289929072335722" + } + }, + { + "_tag": "ByteArray", + "bytearray": "93375937c920b5" + }, + { + "_tag": "ByteArray", + "bytearray": "e874" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06d8edb3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6147801f407a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2beac67eacf067" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83c6c5a8b8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1b0046500af33" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3297175133579244379" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9223187e46a3a9038f428" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d517d9fdaf" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6a1fa2a060eb" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f9f9f1bbc36eed59b36db6a4793375937c920b542e874ffbf4406d8edb3466147801f407a472beac67eacf0674583c6c5a8b847a1b0046500af331b2dc1eb50973df35b4bf9223187e46a3a9038f42845d517d9fdafff466a1fa2a060ebffa0ff", + "cborBytes": [ + 159, 159, 159, 27, 188, 54, 238, 213, 155, 54, 219, 106, 71, 147, 55, 89, 55, 201, 32, 181, 66, 232, 116, 255, + 191, 68, 6, 216, 237, 179, 70, 97, 71, 128, 31, 64, 122, 71, 43, 234, 198, 126, 172, 240, 103, 69, 131, 198, 197, + 168, 184, 71, 161, 176, 4, 101, 0, 175, 51, 27, 45, 193, 235, 80, 151, 61, 243, 91, 75, 249, 34, 49, 135, 228, + 106, 58, 144, 56, 244, 40, 69, 213, 23, 217, 253, 175, 255, 70, 106, 31, 162, 160, 96, 235, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1387, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7872634869710630002" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10030914847032458696" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4621426264697345790" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96f8dd7b91ccee829f3698af" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6817324241639230245" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4222367183341820736" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7184423750477479082" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d26" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "77847fc4e45b43014eb637" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13427863668209259136" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1b6d4137b3f774ac721b8b34f7e8458fbdc8bf1b40229ab3cef216fe4c96f8dd7b91ccee829f3698af1b5e9c00472d90cb251b3a98dc950a5b1b401b63b433561b16fcaa422d26ff4b77847fc4e45b43014eb637d8669f1bba595adcc3fc928080ffff", + "cborBytes": [ + 159, 27, 109, 65, 55, 179, 247, 116, 172, 114, 27, 139, 52, 247, 232, 69, 143, 189, 200, 191, 27, 64, 34, 154, + 179, 206, 242, 22, 254, 76, 150, 248, 221, 123, 145, 204, 238, 130, 159, 54, 152, 175, 27, 94, 156, 0, 71, 45, + 144, 203, 37, 27, 58, 152, 220, 149, 10, 91, 27, 64, 27, 99, 180, 51, 86, 27, 22, 252, 170, 66, 45, 38, 255, 75, + 119, 132, 127, 196, 228, 91, 67, 1, 78, 182, 55, 216, 102, 159, 27, 186, 89, 90, 220, 195, 252, 146, 128, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1388, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12975318907732308656" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6126075895383044054" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6495163223728907911" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12569028722758273479" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12568771207464414360" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2748064498383681112" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17688156741630011801" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a2e8f617b56f0e4ccee675" + }, + { + "_tag": "ByteArray", + "bytearray": "f66c21ec17585339b6deaac7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11176600230435986397" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5963030206308307068" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "44844725746269343" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8211986898488472903" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6f8671543b740b1346a8ec9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7081749891773822795" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b73f1f3275" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bb41197cce6cb32b09f1b55043191cb63afd61b5a23748a048ae6871bae6e29079fb049c7ffffd8669f1bae6d3ed22c12ec989f1b26231619f6057658ffffd8669f1bf578f4d73449a99980ff9f9f4ba2e8f617b56f0e4ccee6754cf66c21ec17585339b6deaac71b9b1b42b183af9bddff9f1b52c0f0610fee507cffffbf1b009f520a5c27fc9f1b71f6d693409135474cb6f8671543b740b1346a8ec91b62476e017f56f74b45b73f1f32754110ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 180, 17, 151, 204, 230, 203, 50, 176, 159, 27, 85, 4, 49, 145, 203, 99, 175, 214, 27, 90, + 35, 116, 138, 4, 138, 230, 135, 27, 174, 110, 41, 7, 159, 176, 73, 199, 255, 255, 216, 102, 159, 27, 174, 109, 62, + 210, 44, 18, 236, 152, 159, 27, 38, 35, 22, 25, 246, 5, 118, 88, 255, 255, 216, 102, 159, 27, 245, 120, 244, 215, + 52, 73, 169, 153, 128, 255, 159, 159, 75, 162, 232, 246, 23, 181, 111, 14, 76, 206, 230, 117, 76, 246, 108, 33, + 236, 23, 88, 83, 57, 182, 222, 170, 199, 27, 155, 27, 66, 177, 131, 175, 155, 221, 255, 159, 27, 82, 192, 240, 97, + 15, 238, 80, 124, 255, 255, 191, 27, 0, 159, 82, 10, 92, 39, 252, 159, 27, 113, 246, 214, 147, 64, 145, 53, 71, + 76, 182, 248, 103, 21, 67, 183, 64, 177, 52, 106, 142, 201, 27, 98, 71, 110, 1, 127, 86, 247, 75, 69, 183, 63, 31, + 50, 117, 65, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1389, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15035235204417712066" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18397997537135322345" + } + } + } + ] + } + ] + }, + "cborHex": "9fd87d80bf1bd0a7e2c221c3efc21bff52d148837664e9ffff", + "cborBytes": [ + 159, 216, 125, 128, 191, 27, 208, 167, 226, 194, 33, 195, 239, 194, 27, 255, 82, 209, 72, 131, 118, 100, 233, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1390, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6be056" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16592791279780258669" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7267107902632123727" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f6bcfc4bc7e9a0520cbea8d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1038050507217697673" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b4310c42c4170990a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c74d2668c5e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5945219828019057677" + } + } + } + ] + } + ] + }, + "cborHex": "9f436be056bf1be6456fc1af80636d1b64d9f42278d25d4f4c3f6bcfc4bc7e9a0520cbea8d1b0e67e56fbd9ffb89494b4310c42c4170990a464c74d2668c5e41f11b5281a9ef38af540dffff", + "cborBytes": [ + 159, 67, 107, 224, 86, 191, 27, 230, 69, 111, 193, 175, 128, 99, 109, 27, 100, 217, 244, 34, 120, 210, 93, 79, 76, + 63, 107, 207, 196, 188, 126, 154, 5, 32, 203, 234, 141, 27, 14, 103, 229, 111, 189, 159, 251, 137, 73, 75, 67, 16, + 196, 44, 65, 112, 153, 10, 70, 76, 116, 210, 102, 140, 94, 65, 241, 27, 82, 129, 169, 239, 56, 175, 84, 13, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1391, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "ByteArray", + "bytearray": "07c9fa045d010256c1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b5e9c0571abc43196cc1c52b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5526072e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10659366032775287047" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f034907c9fa045d010256c19f4cb5e9c0571abc43196cc1c52b9f445526072e1b93edacee5a6f9107ffffff", + "cborBytes": [ + 159, 3, 73, 7, 201, 250, 4, 93, 1, 2, 86, 193, 159, 76, 181, 233, 192, 87, 26, 188, 67, 25, 108, 193, 197, 43, + 159, 68, 85, 38, 7, 46, 27, 147, 237, 172, 238, 90, 111, 145, 7, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1392, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18323342405681994459" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ae85bb52e9a94370e" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15244026922468462844" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18182000626752458442" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7589522309825538936" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "52e5581f63aa7caa397f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17913753804820044884" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10757208583915279651" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2017504502329453629" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14966274465361719588" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1e87b9ce52571c28ac" + }, + { + "_tag": "ByteArray", + "bytearray": "a6ca" + }, + { + "_tag": "ByteArray", + "bytearray": "74b971b00dfeb8abf6" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bfe4996d63486dadbbf410f490ae85bb52e9a94370effd8669f1bd38da9b83c3950fc9fd8669f1bfc53713cd7828eca9f1b695366546c0dab78ffff4a52e5581f63aa7caa397f1bf89a702ca219dc54d8669f1b95494836830d95239f1b1bff9da7da192c3d1bcfb2e354dee27124491e87b9ce52571c28ac42a6ca4974b971b00dfeb8abf6ffffffffff", + "cborBytes": [ + 159, 27, 254, 73, 150, 214, 52, 134, 218, 219, 191, 65, 15, 73, 10, 232, 91, 181, 46, 154, 148, 55, 14, 255, 216, + 102, 159, 27, 211, 141, 169, 184, 60, 57, 80, 252, 159, 216, 102, 159, 27, 252, 83, 113, 60, 215, 130, 142, 202, + 159, 27, 105, 83, 102, 84, 108, 13, 171, 120, 255, 255, 74, 82, 229, 88, 31, 99, 170, 124, 170, 57, 127, 27, 248, + 154, 112, 44, 162, 25, 220, 84, 216, 102, 159, 27, 149, 73, 72, 54, 131, 13, 149, 35, 159, 27, 27, 255, 157, 167, + 218, 25, 44, 61, 27, 207, 178, 227, 84, 222, 226, 113, 36, 73, 30, 135, 185, 206, 82, 87, 28, 40, 172, 66, 166, + 202, 73, 116, 185, 113, 176, 13, 254, 184, 171, 246, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1393, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "070502fbfc865c04064b78a6" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9c48c181eadf4e" + }, + { + "_tag": "ByteArray", + "bytearray": "a0983ef854071d5ae2" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "40e56581f9" + }, + { + "_tag": "ByteArray", + "bytearray": "0601fc22" + }, + { + "_tag": "ByteArray", + "bytearray": "4bee70c2e982aa03c1" + } + ] + } + ] + }, + "cborHex": "9f4c070502fbfc865c04064b78a69f9f479c48c181eadf4e49a0983ef854071d5ae2ff4540e56581f9440601fc22494bee70c2e982aa03c1ffff", + "cborBytes": [ + 159, 76, 7, 5, 2, 251, 252, 134, 92, 4, 6, 75, 120, 166, 159, 159, 71, 156, 72, 193, 129, 234, 223, 78, 73, 160, + 152, 62, 248, 84, 7, 29, 90, 226, 255, 69, 64, 229, 101, 129, 249, 68, 6, 1, 252, 34, 73, 75, 238, 112, 194, 233, + 130, 170, 3, 193, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1394, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14280567223117096015" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "988575971628646270" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "09301cb9fe5d96" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2850531803403138617" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f1bc62ec43a4cfb244fffd8669f1b0db8209bc6697f7e9f4709301cb9fe5d96ffff1b278f1f928acc3639ffff", + "cborBytes": [ + 159, 159, 159, 27, 198, 46, 196, 58, 76, 251, 36, 79, 255, 216, 102, 159, 27, 13, 184, 32, 155, 198, 105, 127, + 126, 159, 71, 9, 48, 28, 185, 254, 93, 150, 255, 255, 27, 39, 143, 31, 146, 138, 204, 54, 57, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1395, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2635420378558428886" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12039505053818511374" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f875ce23" + }, + { + "_tag": "ByteArray", + "bytearray": "c0da3b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9607567461717312701" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b2da7a202eb582" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16406507190530651522" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11298864088507001461" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16445496853886974501" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14041256269997329043" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "97325371984779632" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3289904490880533440" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b2492e4df09ccf6d69fd8669f1ba714ea0ef45f600e9f44f875ce2343c0da3bffff1b8554efb40f4304bd9f47b2da7a202eb5821be3af9f5d4878b582ffbf1b9ccda10648e0aa751be43a2441b2bcba251bc2dc902f0d6aca931b0159c4e900c91970ffd8669f1b2da816b42be583c080ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 36, 146, 228, 223, 9, 204, 246, 214, 159, 216, 102, 159, 27, 167, 20, 234, 14, 244, 95, + 96, 14, 159, 68, 248, 117, 206, 35, 67, 192, 218, 59, 255, 255, 27, 133, 84, 239, 180, 15, 67, 4, 189, 159, 71, + 178, 218, 122, 32, 46, 181, 130, 27, 227, 175, 159, 93, 72, 120, 181, 130, 255, 191, 27, 156, 205, 161, 6, 72, + 224, 170, 117, 27, 228, 58, 36, 65, 178, 188, 186, 37, 27, 194, 220, 144, 47, 13, 106, 202, 147, 27, 1, 89, 196, + 233, 0, 201, 25, 112, 255, 216, 102, 159, 27, 45, 168, 22, 180, 43, 229, 131, 192, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1396, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10967768362678408341" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0b835eabd83b42996" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "838c8817df0fa3cbc3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7564560251116260479" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "114958e40007dae62771" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a732254430ae49" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "660983325355708264" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e972a692" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "478baa" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6686876490003727453" + } + } + ] + }, + "cborHex": "9fbf1b983557375436d49549f0b835eabd83b4299649838c8817df0fa3cbc31b68fab77839d30c7fffbf4a114958e40007dae6277147a732254430ae4941181b092c48d516488f6844e972a69243478baaff1b5ccc8ebd3395445dff", + "cborBytes": [ + 159, 191, 27, 152, 53, 87, 55, 84, 54, 212, 149, 73, 240, 184, 53, 234, 189, 131, 180, 41, 150, 73, 131, 140, 136, + 23, 223, 15, 163, 203, 195, 27, 104, 250, 183, 120, 57, 211, 12, 127, 255, 191, 74, 17, 73, 88, 228, 0, 7, 218, + 230, 39, 113, 71, 167, 50, 37, 68, 48, 174, 73, 65, 24, 27, 9, 44, 72, 213, 22, 72, 143, 104, 68, 233, 114, 166, + 146, 67, 71, 139, 170, 255, 27, 92, 204, 142, 189, 51, 149, 68, 93, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1397, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5150971073930675299" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a4af1152de08b4fe1b71aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6176809747771664445" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11804720144418788952" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4946249050790360770" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e3b44fa167b8e8df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13407187663816327197" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0e8a9abbf28" + }, + { + "_tag": "ByteArray", + "bytearray": "40" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b477bece695f344639fd905049f00004ba4af1152de08b4fe1b71aa1b55b86fbd4d19a83dffd8669f1ba3d2ca6d60fad6589f1b44a49b4e2af8f6c2ffffffff48e3b44fa167b8e8df13d8669f1bba0fe6255ac5801d9f46c0e8a9abbf284140ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 71, 123, 236, 230, 149, 243, 68, 99, 159, 217, 5, 4, 159, 0, 0, 75, 164, 175, 17, 82, 222, + 8, 180, 254, 27, 113, 170, 27, 85, 184, 111, 189, 77, 25, 168, 61, 255, 216, 102, 159, 27, 163, 210, 202, 109, 96, + 250, 214, 88, 159, 27, 68, 164, 155, 78, 42, 248, 246, 194, 255, 255, 255, 255, 72, 227, 180, 79, 161, 103, 184, + 232, 223, 19, 216, 102, 159, 27, 186, 15, 230, 37, 90, 197, 128, 29, 159, 70, 192, 232, 169, 171, 191, 40, 65, 64, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1398, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8c0bbda13be5" + }, + { + "_tag": "ByteArray", + "bytearray": "3a77414603d24181c4a02ef9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "239234783875059552" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17869149074106526404" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15886723738541321571" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4d0ff02fe0cf" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15213915397291447923" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "46e1e13a" + }, + { + "_tag": "ByteArray", + "bytearray": "45113e4ca800" + }, + { + "_tag": "ByteArray", + "bytearray": "b020696d312ded028b6f0e" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "471643321980673070" + } + } + ] + }, + "cborHex": "9f468c0bbda13be54c3a77414603d24181c4a02ef9d8669f1b0351eec4b6ca4f609fd8669f1bf7fbf868789eaac49f1bdc78fb1198856d63ffff464d0ff02fe0cfd8669f1bd322af72726716739f4446e1e13a4645113e4ca8004bb020696d312ded028b6f0effffffff1b068b9d1a3b57dc2eff", + "cborBytes": [ + 159, 70, 140, 11, 189, 161, 59, 229, 76, 58, 119, 65, 70, 3, 210, 65, 129, 196, 160, 46, 249, 216, 102, 159, 27, + 3, 81, 238, 196, 182, 202, 79, 96, 159, 216, 102, 159, 27, 247, 251, 248, 104, 120, 158, 170, 196, 159, 27, 220, + 120, 251, 17, 152, 133, 109, 99, 255, 255, 70, 77, 15, 240, 47, 224, 207, 216, 102, 159, 27, 211, 34, 175, 114, + 114, 103, 22, 115, 159, 68, 70, 225, 225, 58, 70, 69, 17, 62, 76, 168, 0, 75, 176, 32, 105, 109, 49, 45, 237, 2, + 139, 111, 14, 255, 255, 255, 255, 27, 6, 139, 157, 26, 59, 87, 220, 46, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1399, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ac626cf2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "52be8d5a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e47e7e4ca2db7" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3865424350816277989" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9442b3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5432139013951265183" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5937610117277899177" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8682888408753329382" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "091ade3b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11444916383439739837" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11735700010013030685" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15989326403823344366" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13006464126374170974" + } + } + } + ] + } + ] + }, + "cborHex": "9f44ac626cf2bf4452be8d5a476e47e7e4ca2db7ffbf1b35a4bef7988c95e5439442b31b4b62d5a7091b199f1b5266a0f15f1d59a91b787fd100fc1954e644091ade3b1b9ed482d01ef95bbd1ba2dd94fb0f5ff91d1bdde57fa631aa1aee1bb4803e363464d15effff", + "cborBytes": [ + 159, 68, 172, 98, 108, 242, 191, 68, 82, 190, 141, 90, 71, 110, 71, 231, 228, 202, 45, 183, 255, 191, 27, 53, 164, + 190, 247, 152, 140, 149, 229, 67, 148, 66, 179, 27, 75, 98, 213, 167, 9, 27, 25, 159, 27, 82, 102, 160, 241, 95, + 29, 89, 169, 27, 120, 127, 209, 0, 252, 25, 84, 230, 68, 9, 26, 222, 59, 27, 158, 212, 130, 208, 30, 249, 91, 189, + 27, 162, 221, 148, 251, 15, 95, 249, 29, 27, 221, 229, 127, 166, 49, 170, 26, 238, 27, 180, 128, 62, 54, 52, 100, + 209, 94, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1400, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14160412212551692216" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3454570428728591766" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16993113104871428580" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c21824118b7ee" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18210254839174322382" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2275640583891715235" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "13f8be" + } + ] + }, + "cborHex": "9fbf1bc483e3e1da3f2fb81b2ff1198077efc5961bebd3aa55e3e591e4475c21824118b7ee1bfcb7d24b4e52d8ce1b1f94b30ddf5404a3ffa04313f8beff", + "cborBytes": [ + 159, 191, 27, 196, 131, 227, 225, 218, 63, 47, 184, 27, 47, 241, 25, 128, 119, 239, 197, 150, 27, 235, 211, 170, + 85, 227, 229, 145, 228, 71, 92, 33, 130, 65, 24, 183, 238, 27, 252, 183, 210, 75, 78, 82, 216, 206, 27, 31, 148, + 179, 13, 223, 84, 4, 163, 255, 160, 67, 19, 248, 190, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1401, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad67926c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74bce94fd0d6928f8e43cf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f181298dbfe002" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d82" + } + } + ] + } + ] + }, + "cborHex": "9fbf44ad67926c4b74bce94fd0d6928f8e43cf47f181298dbfe002428d82ffff", + "cborBytes": [ + 159, 191, 68, 173, 103, 146, 108, 75, 116, 188, 233, 79, 208, 214, 146, 143, 142, 67, 207, 71, 241, 129, 41, 141, + 191, 224, 2, 66, 141, 130, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1402, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13979969869590527362" + } + } + ] + }, + "cborHex": "9f1bc202d486ff9b7d82ff", + "cborBytes": [159, 27, 194, 2, 212, 134, 255, 155, 125, 130, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1403, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5786194db4611f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f302f5af1093bb57252298" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c0a8d7decc38c355d3d1d49" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9718d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11954045161561237008" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "020301" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4684399325945348056" + } + }, + { + "_tag": "ByteArray", + "bytearray": "36a3286a99bff5d4c1e4aad3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7394891686111018078" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16883973330757552040" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "599bec14c8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1704164165481413793" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af16b7e05b0ee5d1018082" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17232851575912337447" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10701553074238196755" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e1bd01da9794" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "86" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "56" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "166848679261416274" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13261704679361830117" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9349558695350609446" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc" + } + ] + } + ] + } + ] + }, + "cborHex": "9f475786194db4611f0d9fbf4bf302f5af1093bb572522984c0c0a8d7decc38c355d3d1d4943f9718d1ba5e54cbd3bd5a610ff9f430203011b4102545e310d3fd84c36a3286a99bff5d4c1e4aad31b669feecf0722fc5eff111bea4fec4a08f907a8ff9f45599bec14c8bf1b17a668478a783ca14baf16b7e05b0ee5d1018082ff9f1bef27633469491027414b1b94838dd25ef50c1346e1bd01da9794ff41869f41561b0250c3fd629eab521bb80b0a24717f5ce51b81c04e18eb09a62641ccffffff", + "cborBytes": [ + 159, 71, 87, 134, 25, 77, 180, 97, 31, 13, 159, 191, 75, 243, 2, 245, 175, 16, 147, 187, 87, 37, 34, 152, 76, 12, + 10, 141, 125, 236, 195, 140, 53, 93, 61, 29, 73, 67, 249, 113, 141, 27, 165, 229, 76, 189, 59, 213, 166, 16, 255, + 159, 67, 2, 3, 1, 27, 65, 2, 84, 94, 49, 13, 63, 216, 76, 54, 163, 40, 106, 153, 191, 245, 212, 193, 228, 170, + 211, 27, 102, 159, 238, 207, 7, 34, 252, 94, 255, 17, 27, 234, 79, 236, 74, 8, 249, 7, 168, 255, 159, 69, 89, 155, + 236, 20, 200, 191, 27, 23, 166, 104, 71, 138, 120, 60, 161, 75, 175, 22, 183, 224, 91, 14, 229, 209, 1, 128, 130, + 255, 159, 27, 239, 39, 99, 52, 105, 73, 16, 39, 65, 75, 27, 148, 131, 141, 210, 94, 245, 12, 19, 70, 225, 189, 1, + 218, 151, 148, 255, 65, 134, 159, 65, 86, 27, 2, 80, 195, 253, 98, 158, 171, 82, 27, 184, 11, 10, 36, 113, 127, + 92, 229, 27, 129, 192, 78, 24, 235, 9, 166, 38, 65, 204, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1404, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2182600631273995739" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "237933311322474188" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14476227281208836990" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0608bb77784f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7666c46719" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c5699" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aea7cebac48eda6610122521" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3141887292086272426" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4bd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "962826701842185899" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f9f1bfffffffffffffffb1b1e4a27b5d1a13ddbffff9f1b034d4f16059bc6ccbf1bc8e5e4039045837e47c0608bb77784f2457666c46719431c56994caea7cebac48eda66101225211b2b9a39d8811dc1aaffffbf42d4bd1b0d5ca5c8b7907eabffff", + "cborBytes": [ + 159, 159, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 27, 30, 74, 39, 181, 209, 161, 61, 219, 255, 255, 159, + 27, 3, 77, 79, 22, 5, 155, 198, 204, 191, 27, 200, 229, 228, 3, 144, 69, 131, 126, 71, 192, 96, 139, 183, 119, + 132, 242, 69, 118, 102, 196, 103, 25, 67, 28, 86, 153, 76, 174, 167, 206, 186, 196, 142, 218, 102, 16, 18, 37, 33, + 27, 43, 154, 57, 216, 129, 29, 193, 170, 255, 255, 191, 66, 212, 189, 27, 13, 92, 165, 200, 183, 144, 126, 171, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1405, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3554350091474289422" + } + } + ] + }, + "cborHex": "9f1b3153969391b3c30eff", + "cborBytes": [159, 27, 49, 83, 150, 147, 145, 179, 195, 14, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1406, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09a4f3b398b67a45cd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2553019146f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16866807868144502700" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11628706550138985270" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04e8cdadf39fb3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0044bdb7fdf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "869394913338417222" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4887158597028701202" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4909a4f3b398b67a45cd462553019146f241121bea12f064538447ac413c1ba16176feee4adb3641974704e8cdadf39fb346b0044bdb7fdf1b0c10b6114311604641df1b43d2acd9c8e46412ffff", + "cborBytes": [ + 159, 191, 73, 9, 164, 243, 179, 152, 182, 122, 69, 205, 70, 37, 83, 1, 145, 70, 242, 65, 18, 27, 234, 18, 240, + 100, 83, 132, 71, 172, 65, 60, 27, 161, 97, 118, 254, 238, 74, 219, 54, 65, 151, 71, 4, 232, 205, 173, 243, 159, + 179, 70, 176, 4, 75, 219, 127, 223, 27, 12, 16, 182, 17, 67, 17, 96, 70, 65, 223, 27, 67, 210, 172, 217, 200, 228, + 100, 18, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1407, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "ByteArray", + "bytearray": "60" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9247401477165813951" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f0e4160d8669f1b80555ea60de410bf80ffa0ff", + "cborBytes": [159, 14, 65, 96, 216, 102, 159, 27, 128, 85, 94, 166, 13, 228, 16, 191, 128, 255, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1408, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7202456367486073492" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4a1bcf020b48" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a8136" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17762170073549210038" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa7882c7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38e89f157ff05a44b41eeb" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16584505576493072653" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc9f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13234713643760939811" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f73813e4975de7f51e521f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16105223" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13225621508784396007" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9f283" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7211797849619099767" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae9d6fed35fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "431034905206842063" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea9b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12d87d605e309cbbf36fb052" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b63f443e7ee41fa949f464a1bcf020b48bf432a81361bf67fe792e9f981b644fa7882c74b38e89f157ff05a44b41eebffd8669f1be627fff40e5ac10d9f42fc9f1bb7ab25f04062f323ffff4bf73813e4975de7f51e521fbf44161052231bb78ad8b09cdc16e743a9f2831b641573ef3a78f07746ae9d6fed35fb1b05fb57f66aa5e2cf42ea9b4c12d87d605e309cbbf36fb052ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 99, 244, 67, 231, 238, 65, 250, 148, 159, 70, 74, 27, 207, 2, 11, 72, 191, 67, 42, 129, + 54, 27, 246, 127, 231, 146, 233, 249, 129, 182, 68, 250, 120, 130, 199, 75, 56, 232, 159, 21, 127, 240, 90, 68, + 180, 30, 235, 255, 216, 102, 159, 27, 230, 39, 255, 244, 14, 90, 193, 13, 159, 66, 252, 159, 27, 183, 171, 37, + 240, 64, 98, 243, 35, 255, 255, 75, 247, 56, 19, 228, 151, 93, 231, 245, 30, 82, 31, 191, 68, 22, 16, 82, 35, 27, + 183, 138, 216, 176, 156, 220, 22, 231, 67, 169, 242, 131, 27, 100, 21, 115, 239, 58, 120, 240, 119, 70, 174, 157, + 111, 237, 53, 251, 27, 5, 251, 87, 246, 106, 165, 226, 207, 66, 234, 155, 76, 18, 216, 125, 96, 94, 48, 156, 187, + 243, 111, 176, 82, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1409, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5377701545463970514" + } + } + ] + }, + "cborHex": "9f1b4aa16f103572fad2ff", + "cborBytes": [159, 27, 74, 161, 111, 16, 53, 114, 250, 210, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1410, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6389254164716998306" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10467613748016154753" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13610090194078442868" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6520032928935299648" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14592075946477931000" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17001417898437526663" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9781653639110282997" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17873197017118839725" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5218df82c18c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0202fdf9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a60653ceb45cc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c00e8fc3ee93000017a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f901810005" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "258b3041b434bbcd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c976" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7005" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f1b58ab30cfa3a44ea21b91446f3e787f88811bbce0c0ec1312a574d8669f1b5a7bcf677d09ca409f1bca8177c2dd56c9f81bebf12b80525644871b87bf6a28cb134ef51bf80a59fda5f093adffff465218df82c18cffbf440202fdf9478a60653ceb45cc4a1c00e8fc3ee93000017a45f90181000548258b3041b434bbcd42c9764270051bfffffffffffffffbffff", + "cborBytes": [ + 159, 159, 27, 88, 171, 48, 207, 163, 164, 78, 162, 27, 145, 68, 111, 62, 120, 127, 136, 129, 27, 188, 224, 192, + 236, 19, 18, 165, 116, 216, 102, 159, 27, 90, 123, 207, 103, 125, 9, 202, 64, 159, 27, 202, 129, 119, 194, 221, + 86, 201, 248, 27, 235, 241, 43, 128, 82, 86, 68, 135, 27, 135, 191, 106, 40, 203, 19, 78, 245, 27, 248, 10, 89, + 253, 165, 240, 147, 173, 255, 255, 70, 82, 24, 223, 130, 193, 140, 255, 191, 68, 2, 2, 253, 249, 71, 138, 96, 101, + 60, 235, 69, 204, 74, 28, 0, 232, 252, 62, 233, 48, 0, 1, 122, 69, 249, 1, 129, 0, 5, 72, 37, 139, 48, 65, 180, + 52, 187, 205, 66, 201, 118, 66, 112, 5, 27, 255, 255, 255, 255, 255, 255, 255, 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1411, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6173327574868256786" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13515307175150116466" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9524338485652048576" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0117c0" + }, + { + "_tag": "ByteArray", + "bytearray": "d0a30b254cac" + }, + { + "_tag": "ByteArray", + "bytearray": "4429b9749c72c9384d58f25c" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6569063472371176220" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10277447217477073424" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11320431680063064847" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13675219478254339592" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b7ed14386f59a1b018634" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35d9d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2599359371083273659" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bd22ffbaadc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cbeee8f897cdd" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2963521673076337646" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17238412247812331052" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "509076854740154138" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11166662398503806121" + } + }, + { + "_tag": "ByteArray", + "bytearray": "095fbea4" + } + ] + } + ] + }, + "cborHex": "9f1b55ac10b8be256812d8669f1bbb900444c51c5e729fd8669f1b842d3f63fddf4ac09f430117c046d0a30b254cac4c4429b9749c72c9384d58f25cffffa09f1b5b2a006c79ad931cffbf1b8ea0d3cac38c3a101b9d1a40a2823ccb0f1bbdc823a93ada46084b8b7ed14386f59a1b0186344335d9d51b2412c793750055bb465bd22ffbaadc471cbeee8f897cddffffff1b29208b429fe2ebeed8669f1bef3b249b3a98d62c9f1b07109ab3c228f71a1b9af7f449b587e4a944095fbea4ffffff", + "cborBytes": [ + 159, 27, 85, 172, 16, 184, 190, 37, 104, 18, 216, 102, 159, 27, 187, 144, 4, 68, 197, 28, 94, 114, 159, 216, 102, + 159, 27, 132, 45, 63, 99, 253, 223, 74, 192, 159, 67, 1, 23, 192, 70, 208, 163, 11, 37, 76, 172, 76, 68, 41, 185, + 116, 156, 114, 201, 56, 77, 88, 242, 92, 255, 255, 160, 159, 27, 91, 42, 0, 108, 121, 173, 147, 28, 255, 191, 27, + 142, 160, 211, 202, 195, 140, 58, 16, 27, 157, 26, 64, 162, 130, 60, 203, 15, 27, 189, 200, 35, 169, 58, 218, 70, + 8, 75, 139, 126, 209, 67, 134, 245, 154, 27, 1, 134, 52, 67, 53, 217, 213, 27, 36, 18, 199, 147, 117, 0, 85, 187, + 70, 91, 210, 47, 251, 170, 220, 71, 28, 190, 238, 143, 137, 124, 221, 255, 255, 255, 27, 41, 32, 139, 66, 159, + 226, 235, 238, 216, 102, 159, 27, 239, 59, 36, 155, 58, 152, 214, 44, 159, 27, 7, 16, 154, 179, 194, 40, 247, 26, + 27, 154, 247, 244, 73, 181, 135, 228, 169, 68, 9, 95, 190, 164, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1412, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16464868348728268988" + } + } + ] + }, + "cborHex": "9f1be47ef6874f8558bcff", + "cborBytes": [159, 27, 228, 126, 246, 135, 79, 133, 88, 188, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1413, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "346304583267408460" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6902095477495889844" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14690440664386531143" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b04ce522f05be5a4c9fd8669f1b5fc92b4495f8ffb480ffa01bcbdeedf372b66f47ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 4, 206, 82, 47, 5, 190, 90, 76, 159, 216, 102, 159, 27, 95, 201, 43, 68, 149, 248, 255, + 180, 128, 255, 160, 27, 203, 222, 237, 243, 114, 182, 111, 71, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1414, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14968855047039887617" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1bcfbc0e5b5d20290180ff", + "cborBytes": [159, 27, 207, 188, 14, 91, 93, 32, 41, 1, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1415, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5669117859331082668" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3882003662702261767" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffffc1b4eacc0a8234089ac1b35dfa5c374223607ff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 27, 78, 172, 192, 168, 35, 64, 137, 172, 27, 53, 223, 165, 195, + 116, 34, 54, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1416, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17023552303900528655" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2ee76d5daf17" + }, + { + "_tag": "ByteArray", + "bytearray": "45" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4243985188673712239" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13006576159394111723" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3288170756330440087" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15538209478130376494" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84bc342c95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf593140" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4750545653908158263" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1bec3fcea03146100f462ee76d5daf174145bf1b3ae5aa0b22ea706f41ab1bb480a41aecc020eb1b2da1ede1a3e745971bd7a2cf3205919f2e4584bc342c9544bf5931401b41ed541a4e78b737ffffff", + "cborBytes": [ + 159, 159, 27, 236, 63, 206, 160, 49, 70, 16, 15, 70, 46, 231, 109, 93, 175, 23, 65, 69, 191, 27, 58, 229, 170, 11, + 34, 234, 112, 111, 65, 171, 27, 180, 128, 164, 26, 236, 192, 32, 235, 27, 45, 161, 237, 225, 163, 231, 69, 151, + 27, 215, 162, 207, 50, 5, 145, 159, 46, 69, 132, 188, 52, 44, 149, 68, 191, 89, 49, 64, 27, 65, 237, 84, 26, 78, + 120, 183, 55, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1417, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12726215527062445824" + } + } + ] + }, + "cborHex": "9f1bb09c9998719e1f00ff", + "cborBytes": [159, 27, 176, 156, 153, 152, 113, 158, 31, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1418, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6940ab2394a12122" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16231013358480987035" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14678430173921099863" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf486940ab2394a121221be14024a768e1139bffbf415c1bcbb4427938f14057ffff", + "cborBytes": [ + 159, 191, 72, 105, 64, 171, 35, 148, 161, 33, 34, 27, 225, 64, 36, 167, 104, 225, 19, 155, 255, 191, 65, 92, 27, + 203, 180, 66, 121, 56, 241, 64, 87, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1419, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0507" + } + ] + }, + "cborHex": "9f420507ff", + "cborBytes": [159, 66, 5, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1420, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5959234250301655283" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b0d479d237" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6528093029258563131" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "758935435028128650" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cbb22c162e35e68611" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17139327983220134354" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8083618620566133696" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c7a3f90" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3268" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b623c529973" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7a9d16b68841ad6be98" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1454026651523056527" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fef41c5c5f8a36f0" + }, + { + "_tag": "ByteArray", + "bytearray": "accd6cfbeede15bd" + }, + { + "_tag": "ByteArray", + "bytearray": "933f1581b19a8ebd074170" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3270577427079711275" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3803006816359655499" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7143844828024558461" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "943d36669f5c0ee30416" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11449250288774337853" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18a61dc04b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f5e4c" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5433015131754973023" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84477710278332fd870f" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c1d8544" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11607652195504657824" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "469f1d16501ec717e6b4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16096738255613308682" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bdab5f71b7b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d110ad42c5059483" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6c11acf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95084b1a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f19ef51708f9bb023dfe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5ce52492abdf61be870" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "06aab8f54b80327d78cd5f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3be9f2e6392225df9322" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3aade400a48cfedf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6962814398654404992" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b52b373fa2e9248f39f45b0d479d2371b5a987205d5a90e3b1b0a8847c1d44ee38a49cbb22c162e35e68611ffff41e6bf1beddb1ffe20bf91d21b702ec84e7a93dbc0445c7a3f90423268468b623c5299734aa7a9d16b68841ad6be98ffd8669f1b142dbd8929fb838f9f48fef41c5c5f8a36f048accd6cfbeede15bd4b933f1581b19a8ebd074170ffffbf1b2d636cd7777f4a2b1b34c6fe8cdf81a84b1b6324090578ea537d4a943d36669f5c0ee304161b9ee3e87a16eed53d41114518a61dc04b435f5e4cffffbf1b4b65f27a1b93c75f4a84477710278332fd870fff9fbf440c1d85441ba116aa2bfd5695a04a469f1d16501ec717e6b41bdf631a28c845af0a464bdab5f71b7b48d110ad42c505948344e6c11acf4495084b1a4af19ef51708f9bb023dfe4ad5ce52492abdf61be870ff4b06aab8f54b80327d78cd5f9f4a3be9f2e6392225df9322ff483aade400a48cfedf1b60a0e2ce14c55980ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 82, 179, 115, 250, 46, 146, 72, 243, 159, 69, 176, 212, 121, 210, 55, 27, 90, 152, + 114, 5, 213, 169, 14, 59, 27, 10, 136, 71, 193, 212, 78, 227, 138, 73, 203, 178, 44, 22, 46, 53, 230, 134, 17, + 255, 255, 65, 230, 191, 27, 237, 219, 31, 254, 32, 191, 145, 210, 27, 112, 46, 200, 78, 122, 147, 219, 192, 68, + 92, 122, 63, 144, 66, 50, 104, 70, 139, 98, 60, 82, 153, 115, 74, 167, 169, 209, 107, 104, 132, 26, 214, 190, 152, + 255, 216, 102, 159, 27, 20, 45, 189, 137, 41, 251, 131, 143, 159, 72, 254, 244, 28, 92, 95, 138, 54, 240, 72, 172, + 205, 108, 251, 238, 222, 21, 189, 75, 147, 63, 21, 129, 177, 154, 142, 189, 7, 65, 112, 255, 255, 191, 27, 45, 99, + 108, 215, 119, 127, 74, 43, 27, 52, 198, 254, 140, 223, 129, 168, 75, 27, 99, 36, 9, 5, 120, 234, 83, 125, 74, + 148, 61, 54, 102, 159, 92, 14, 227, 4, 22, 27, 158, 227, 232, 122, 22, 238, 213, 61, 65, 17, 69, 24, 166, 29, 192, + 75, 67, 95, 94, 76, 255, 255, 191, 27, 75, 101, 242, 122, 27, 147, 199, 95, 74, 132, 71, 119, 16, 39, 131, 50, + 253, 135, 15, 255, 159, 191, 68, 12, 29, 133, 68, 27, 161, 22, 170, 43, 253, 86, 149, 160, 74, 70, 159, 29, 22, + 80, 30, 199, 23, 230, 180, 27, 223, 99, 26, 40, 200, 69, 175, 10, 70, 75, 218, 181, 247, 27, 123, 72, 209, 16, + 173, 66, 197, 5, 148, 131, 68, 230, 193, 26, 207, 68, 149, 8, 75, 26, 74, 241, 158, 245, 23, 8, 249, 187, 2, 61, + 254, 74, 213, 206, 82, 73, 42, 189, 246, 27, 232, 112, 255, 75, 6, 170, 184, 245, 75, 128, 50, 125, 120, 205, 95, + 159, 74, 59, 233, 242, 230, 57, 34, 37, 223, 147, 34, 255, 72, 58, 173, 228, 0, 164, 140, 254, 223, 27, 96, 160, + 226, 206, 20, 197, 89, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1421, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1d2a2e" + }, + { + "_tag": "ByteArray", + "bytearray": "87a2f8bfca59cd9b" + } + ] + }, + "cborHex": "9f431d2a2e4887a2f8bfca59cd9bff", + "cborBytes": [159, 67, 29, 42, 46, 72, 135, 162, 248, 191, 202, 89, 205, 155, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1422, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17662907001529842832" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "452959714665071021" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9535699760822908351" + } + }, + { + "_tag": "ByteArray", + "bytearray": "743d9f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16381140575890645089" + } + }, + { + "_tag": "ByteArray", + "bytearray": "69b99ab541def422262f5a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d22b4af75" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f098917785b07218b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5009102193680486390" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7649c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7ec6a42939d83f0f95e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adfd62e91801886d441a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f27ced71360c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11127892291939672036" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ec63a6c7a2f9f2dd807" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d53f3e097a93b8421f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46596f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8949513964090696785" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0dc9f54dd60b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15910425233137427082" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07dd7c51" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8c88df8691f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f90ebdccab16f632277c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9116582990401324505" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16913069472260769624" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9756043296672020692" + } + }, + { + "_tag": "ByteArray", + "bytearray": "81854c273536b7164278" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7769435032159921643" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b70a0b3c3b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c8d4506269e6b130068de42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77df9a93eed64fb295b7f9f7" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "467339341770631767" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa9400" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8280344805492690484" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7573029139896659618" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10272467340051316561" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c9990b29ea2764324e" + }, + { + "_tag": "ByteArray", + "bytearray": "9029695e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dfc50aec23" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9807834399388995927" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f1c452d84e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13542312632780516831" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17417433285409050590" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5443869257071477997" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3198efcb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17247554054154611075" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9c1800b988a9fdaa711" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5756086962485971491" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c735622061f0b9bfe4f744" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11341103808857409969" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a79ecacb927e" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9907631218862298621" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1bf51f4055f6f23c90d8669f1b06493c75ea2c81ad9f9f1b84559c6900a075bf43743d9f1be355809011b320614b69b99ab541def422262f5affbf450d22b4af7541c5490f098917785b07218b1b4583e7e7e1f48ff64268b8437649c54ac7ec6a42939d83f0f95e4aadfd62e91801886d441a46f27ced71360c1b9a6e3714d7df1fe4ffbf4a2ec63a6c7a2f9f2dd8074a5d53f3e097a93b8421f64346596f1b7c330f88a606245147a0dc9f54dd60b31bdccd2f73d691628a41f64407dd7c5146f8c88df8691f41e14af90ebdccab16f632277c1b7e849bed943d45d9ffd8669f1beab74b13639b47589f1b87646db0477778d44a81854c273536b7164278ffffbf1b6bd293ff5d5e25eb45b70a0b3c3b4c2c8d4506269e6b130068de424c77df9a93eed64fb295b7f9f7ffffff9fbf1b067c52a7bfcdaa5743aa94001b72e9b1babd248e341b6918cde10d38eea2ffd8669f1b8e8f229eb28f7f519f49c9990b29ea2764324e449029695effff9f45dfc50aec231b881c6d6c0f70115745f1c452d84e1bbbeff596da2aeddfff1bf1b7274aa3df0fded8669f1b4b8c823f176a44ed9f443198efcb1bef5b9f07e23be983ffffff9fbf4aa9c1800b988a9fdaa7111b4fe1ba98673bca23ff9f4bc735622061f0b9bfe4f7441b9d63b1d38fc689b146a79ecacb927effffd8669f1b897efa19c5db95fd80ffff", + "cborBytes": [ + 159, 27, 245, 31, 64, 85, 246, 242, 60, 144, 216, 102, 159, 27, 6, 73, 60, 117, 234, 44, 129, 173, 159, 159, 27, + 132, 85, 156, 105, 0, 160, 117, 191, 67, 116, 61, 159, 27, 227, 85, 128, 144, 17, 179, 32, 97, 75, 105, 185, 154, + 181, 65, 222, 244, 34, 38, 47, 90, 255, 191, 69, 13, 34, 180, 175, 117, 65, 197, 73, 15, 9, 137, 23, 120, 91, 7, + 33, 139, 27, 69, 131, 231, 231, 225, 244, 143, 246, 66, 104, 184, 67, 118, 73, 197, 74, 199, 236, 106, 66, 147, + 157, 131, 240, 249, 94, 74, 173, 253, 98, 233, 24, 1, 136, 109, 68, 26, 70, 242, 124, 237, 113, 54, 12, 27, 154, + 110, 55, 20, 215, 223, 31, 228, 255, 191, 74, 46, 198, 58, 108, 122, 47, 159, 45, 216, 7, 74, 93, 83, 243, 224, + 151, 169, 59, 132, 33, 246, 67, 70, 89, 111, 27, 124, 51, 15, 136, 166, 6, 36, 81, 71, 160, 220, 159, 84, 221, 96, + 179, 27, 220, 205, 47, 115, 214, 145, 98, 138, 65, 246, 68, 7, 221, 124, 81, 70, 248, 200, 141, 248, 105, 31, 65, + 225, 74, 249, 14, 189, 204, 171, 22, 246, 50, 39, 124, 27, 126, 132, 155, 237, 148, 61, 69, 217, 255, 216, 102, + 159, 27, 234, 183, 75, 19, 99, 155, 71, 88, 159, 27, 135, 100, 109, 176, 71, 119, 120, 212, 74, 129, 133, 76, 39, + 53, 54, 183, 22, 66, 120, 255, 255, 191, 27, 107, 210, 147, 255, 93, 94, 37, 235, 69, 183, 10, 11, 60, 59, 76, 44, + 141, 69, 6, 38, 158, 107, 19, 0, 104, 222, 66, 76, 119, 223, 154, 147, 238, 214, 79, 178, 149, 183, 249, 247, 255, + 255, 255, 159, 191, 27, 6, 124, 82, 167, 191, 205, 170, 87, 67, 170, 148, 0, 27, 114, 233, 177, 186, 189, 36, 142, + 52, 27, 105, 24, 205, 225, 13, 56, 238, 162, 255, 216, 102, 159, 27, 142, 143, 34, 158, 178, 143, 127, 81, 159, + 73, 201, 153, 11, 41, 234, 39, 100, 50, 78, 68, 144, 41, 105, 94, 255, 255, 159, 69, 223, 197, 10, 236, 35, 27, + 136, 28, 109, 108, 15, 112, 17, 87, 69, 241, 196, 82, 216, 78, 27, 187, 239, 245, 150, 218, 42, 237, 223, 255, 27, + 241, 183, 39, 74, 163, 223, 15, 222, 216, 102, 159, 27, 75, 140, 130, 63, 23, 106, 68, 237, 159, 68, 49, 152, 239, + 203, 27, 239, 91, 159, 7, 226, 59, 233, 131, 255, 255, 255, 159, 191, 74, 169, 193, 128, 11, 152, 138, 159, 218, + 167, 17, 27, 79, 225, 186, 152, 103, 59, 202, 35, 255, 159, 75, 199, 53, 98, 32, 97, 240, 185, 191, 228, 247, 68, + 27, 157, 99, 177, 211, 143, 198, 137, 177, 70, 167, 158, 202, 203, 146, 126, 255, 255, 216, 102, 159, 27, 137, + 126, 250, 25, 197, 219, 149, 253, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1423, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5f775ed55d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4575647790938856878" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1293071692153905548" + } + }, + { + "_tag": "ByteArray", + "bytearray": "280bdf4023a3233af2" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "29cd0e91b75b9b00db42ee" + }, + { + "_tag": "ByteArray", + "bytearray": "a96a6942d4d5f4b3d2e2" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f455f775ed55d1b3f7ff76c4c361dae9f9f1b11f1e9da5ff2618c49280bdf4023a3233af2ff4b29cd0e91b75b9b00db42ee4aa96a6942d4d5f4b3d2e2ff80ff", + "cborBytes": [ + 159, 69, 95, 119, 94, 213, 93, 27, 63, 127, 247, 108, 76, 54, 29, 174, 159, 159, 27, 17, 241, 233, 218, 95, 242, + 97, 140, 73, 40, 11, 223, 64, 35, 163, 35, 58, 242, 255, 75, 41, 205, 14, 145, 183, 91, 155, 0, 219, 66, 238, 74, + 169, 106, 105, 66, 212, 213, 244, 179, 210, 226, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1424, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "ByteArray", + "bytearray": "bd2e4801f007970f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13386822174395064368" + } + } + ] + }, + "cborHex": "9f410048bd2e4801f007970f1bb9c78bd75823e030ff", + "cborBytes": [159, 65, 0, 72, 189, 46, 72, 1, 240, 7, 151, 15, 27, 185, 199, 139, 215, 88, 35, 224, 48, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1425, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3fbd7c7286519d63235c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5725149563659828504" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12762738105953050726" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18185261591199653377" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1951160348204291834" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12360699528101937553" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4865659003263120832" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6020213642702337117" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11542548883011710297" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6340630902147681234" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e0e30d355c49c73cdf8720" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e81651" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ec96bda7d222396" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6872364696885437078" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7198212919174054329" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a0b613300abda16" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a6c8fa7c6c2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "717f312140" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15872102704203059403" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a592f0608acc190f1db3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "111e878e560f59" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4a3fbd7c7286519d63235c1b4f73d131ebed3d18d8669f1bb11e5aaffeac60669fbf1bfc5f07114b029e011b1b13e9ffbe8b56faffbf1bab8a06bb23dac191416eff9f1b43864b1587adf5c01b538c18695d3bb45d1ba02f5f0dd67ead591b57fe72361e608bd24be0e30d355c49c73cdf8720ff43e81651bf482ec96bda7d2223961b5f5f8b47cccaa29641641b63e5308320ff41b9486a0b613300abda16466a6c8fa7c6c245717f3121401bdc450950c28a50cb4aa592f0608acc190f1db347111e878e560f59ffffffff", + "cborBytes": [ + 159, 74, 63, 189, 124, 114, 134, 81, 157, 99, 35, 92, 27, 79, 115, 209, 49, 235, 237, 61, 24, 216, 102, 159, 27, + 177, 30, 90, 175, 254, 172, 96, 102, 159, 191, 27, 252, 95, 7, 17, 75, 2, 158, 1, 27, 27, 19, 233, 255, 190, 139, + 86, 250, 255, 191, 27, 171, 138, 6, 187, 35, 218, 193, 145, 65, 110, 255, 159, 27, 67, 134, 75, 21, 135, 173, 245, + 192, 27, 83, 140, 24, 105, 93, 59, 180, 93, 27, 160, 47, 95, 13, 214, 126, 173, 89, 27, 87, 254, 114, 54, 30, 96, + 139, 210, 75, 224, 227, 13, 53, 92, 73, 199, 60, 223, 135, 32, 255, 67, 232, 22, 81, 191, 72, 46, 201, 107, 218, + 125, 34, 35, 150, 27, 95, 95, 139, 71, 204, 202, 162, 150, 65, 100, 27, 99, 229, 48, 131, 32, 255, 65, 185, 72, + 106, 11, 97, 51, 0, 171, 218, 22, 70, 106, 108, 143, 167, 198, 194, 69, 113, 127, 49, 33, 64, 27, 220, 69, 9, 80, + 194, 138, 80, 203, 74, 165, 146, 240, 96, 138, 204, 25, 15, 29, 179, 71, 17, 30, 135, 142, 86, 15, 89, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1426, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9928931853519338409" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08b2" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a555" + } + ] + }, + "cborHex": "9fbf1b89caa6ea4014bba94208b2ff42a555ff", + "cborBytes": [159, 191, 27, 137, 202, 166, 234, 64, 20, 187, 169, 66, 8, 178, 255, 66, 165, 85, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1427, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14938202541671988834" + } + } + ] + }, + "cborHex": "9f1bcf4f2810cf323e62ff", + "cborBytes": [159, 27, 207, 79, 40, 16, 207, 50, 62, 98, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1428, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "034853804e9b20fc3f2c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18358665991063691130" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3451019008706215470" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "173018562118987179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6733834140134012833" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11638356755082423715" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1109071258098502557" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3cefb935536f5726712" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "928092033345696117" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f81f89c4ab58ec859c" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4a034853804e9b20fc3f2cd8669f1bfec7157353655f7a9f1b2fe47b810f0dfe2ebf1b0266af772ea6adab1b5d7362791b15f7a1ff9f1ba183bfce5bf4ada3ff9f1b0f64366ee18e8b9dffbf4aa3cefb935536f57267121b0ce13ec97e70b17541ed49f81f89c4ab58ec859cffffffff", + "cborBytes": [ + 159, 74, 3, 72, 83, 128, 78, 155, 32, 252, 63, 44, 216, 102, 159, 27, 254, 199, 21, 115, 83, 101, 95, 122, 159, + 27, 47, 228, 123, 129, 15, 13, 254, 46, 191, 27, 2, 102, 175, 119, 46, 166, 173, 171, 27, 93, 115, 98, 121, 27, + 21, 247, 161, 255, 159, 27, 161, 131, 191, 206, 91, 244, 173, 163, 255, 159, 27, 15, 100, 54, 110, 225, 142, 139, + 157, 255, 191, 74, 163, 206, 251, 147, 85, 54, 245, 114, 103, 18, 27, 12, 225, 62, 201, 126, 112, 177, 117, 65, + 237, 73, 248, 31, 137, 196, 171, 88, 236, 133, 156, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1429, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7a84fb13f70825f22ff8" + } + ] + }, + "cborHex": "9f4a7a84fb13f70825f22ff8ff", + "cborBytes": [159, 74, 122, 132, 251, 19, 247, 8, 37, 242, 47, 248, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1430, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b1f34aab120878173b01f551" + } + ] + }, + "cborHex": "9f4cb1f34aab120878173b01f551ff", + "cborBytes": [159, 76, 177, 243, 74, 171, 18, 8, 120, 23, 59, 1, 245, 81, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1431, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4551092882097869129" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05127a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3161631d92efe2b4698e4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "543c558f162b9610" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b3f28badd114091494305127a4ba3161631d92efe2b4698e448543c558f162b9610ffff", + "cborBytes": [ + 159, 191, 27, 63, 40, 186, 221, 17, 64, 145, 73, 67, 5, 18, 122, 75, 163, 22, 22, 49, 217, 46, 254, 43, 70, 152, + 228, 72, 84, 60, 85, 143, 22, 43, 150, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1432, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3275400567837454936" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9071431970736298447" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11741594239281773408" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5006fc9d2c4bfce6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea0fbb34fb27d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78c9" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b2d748f766f1072581b7de433509bdbd9cf1ba2f285c04129bb60485006fc9d2c4bfce647ea0fbb34fb27d84278c9ffff", + "cborBytes": [ + 159, 191, 27, 45, 116, 143, 118, 111, 16, 114, 88, 27, 125, 228, 51, 80, 155, 219, 217, 207, 27, 162, 242, 133, + 192, 65, 41, 187, 96, 72, 80, 6, 252, 157, 44, 75, 252, 230, 71, 234, 15, 187, 52, 251, 39, 216, 66, 120, 201, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1433, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12589665006692275723" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10296662029631364555" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1baeb7799ee50f160b1b8ee5178fd86e1dcbffff", + "cborBytes": [ + 159, 191, 27, 174, 183, 121, 158, 229, 15, 22, 11, 27, 142, 229, 23, 143, 216, 110, 29, 203, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1434, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1527331180351382047" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12024284672926995771" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7835596085479481269" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8832747007502791370" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7955426428227947353" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6665229540768577063" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16951743619362406646" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1581941042482486138" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a84209b8fb0191fffb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7627936147507804754" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b47e1945" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14132980964839920433" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14679598436063669356" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17511936248052919066" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ba23cdb9bce83a34d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19025bf86a0d7bd815" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eeddc4eb672e54e105" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7140434995779608882" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "58216f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5001007966827761042" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c320f396d0bbe623421" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af01ae65" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15898825246764198547" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b15322b9dcb38e21f9f1ba6ded733dffcd53bd8669f1b6cbda11ffe721fb59f1b7a94389afd1932caffffbf1b6e675a2fd3480b591b5c7fa6f413f376271beb40b101f39740f61b15f42eff24c79b7a49a84209b8fb0191fffb1b69dbdf82f9907a5244b47e19451bc4226f4ecaa41331ffbf1bcbb8690072f46c6c1bf306e53c427b2b1a499ba23cdb9bce83a34d4919025bf86a0d7bd81549eeddc4eb672e54e1051b6317ebcc09362132ffffffbf4358216f1b4567263fd5aacd924a7c320f396d0bbe62342141bf44af01ae651bdca3f9538b646a93ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 21, 50, 43, 157, 203, 56, 226, 31, 159, 27, 166, 222, 215, 51, 223, 252, 213, 59, 216, + 102, 159, 27, 108, 189, 161, 31, 254, 114, 31, 181, 159, 27, 122, 148, 56, 154, 253, 25, 50, 202, 255, 255, 191, + 27, 110, 103, 90, 47, 211, 72, 11, 89, 27, 92, 127, 166, 244, 19, 243, 118, 39, 27, 235, 64, 177, 1, 243, 151, 64, + 246, 27, 21, 244, 46, 255, 36, 199, 155, 122, 73, 168, 66, 9, 184, 251, 1, 145, 255, 251, 27, 105, 219, 223, 130, + 249, 144, 122, 82, 68, 180, 126, 25, 69, 27, 196, 34, 111, 78, 202, 164, 19, 49, 255, 191, 27, 203, 184, 105, 0, + 114, 244, 108, 108, 27, 243, 6, 229, 60, 66, 123, 43, 26, 73, 155, 162, 60, 219, 155, 206, 131, 163, 77, 73, 25, + 2, 91, 248, 106, 13, 123, 216, 21, 73, 238, 221, 196, 235, 103, 46, 84, 225, 5, 27, 99, 23, 235, 204, 9, 54, 33, + 50, 255, 255, 255, 191, 67, 88, 33, 111, 27, 69, 103, 38, 63, 213, 170, 205, 146, 74, 124, 50, 15, 57, 109, 11, + 190, 98, 52, 33, 65, 191, 68, 175, 1, 174, 101, 27, 220, 163, 249, 83, 139, 100, 106, 147, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1435, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3e4c80d295" + }, + { + "_tag": "ByteArray", + "bytearray": "f6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15226309261683503697" + } + } + ] + }, + "cborHex": "9f453e4c80d29541f61bd34eb799dee2b251ff", + "cborBytes": [159, 69, 62, 76, 128, 210, 149, 65, 246, 27, 211, 78, 183, 153, 222, 226, 178, 81, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1436, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17240737147907357133" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10314982398921614789" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "030547" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10844773547473783763" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00d5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17920704286274943468" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da8e70726223d5f50425" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16257174236651861221" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "adf96f042210c39d6e3906a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17812483596602739274" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5001106291355670538" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a1229550fef87a1d9a581" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10918694885536788210" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8270051119429050643" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13032146372369976365" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b68d5650a3dd6f3" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ddfd0535fc071b0067fbc805" + }, + { + "_tag": "ByteArray", + "bytearray": "630f4d119fe63a" + } + ] + } + ] + }, + "cborHex": "9fbf041bef43671736e639cd1b8f262dd7382125c5430305471b9680601556ba4bd34200d51bf8b32199b43cf9ec4ada8e70726223d5f504251bfffffffffffffff31be19d15d5834434e5ffbf4cadf96f042210c39d6e3906a61bf732a774defa8a4affbf1b45677faccc39d80a4b4a1229550fef87a1d9a5811b9786ff260f4b6ef21b72c51fad2fe3e1131bb4db7c1412020c2d486b68d5650a3dd6f3ffd8669f1bffffffffffffffec9f024cddfd0535fc071b0067fbc80547630f4d119fe63affffff", + "cborBytes": [ + 159, 191, 4, 27, 239, 67, 103, 23, 54, 230, 57, 205, 27, 143, 38, 45, 215, 56, 33, 37, 197, 67, 3, 5, 71, 27, 150, + 128, 96, 21, 86, 186, 75, 211, 66, 0, 213, 27, 248, 179, 33, 153, 180, 60, 249, 236, 74, 218, 142, 112, 114, 98, + 35, 213, 245, 4, 37, 27, 255, 255, 255, 255, 255, 255, 255, 243, 27, 225, 157, 21, 213, 131, 68, 52, 229, 255, + 191, 76, 173, 249, 111, 4, 34, 16, 195, 157, 110, 57, 6, 166, 27, 247, 50, 167, 116, 222, 250, 138, 74, 255, 191, + 27, 69, 103, 127, 172, 204, 57, 216, 10, 75, 74, 18, 41, 85, 15, 239, 135, 161, 217, 165, 129, 27, 151, 134, 255, + 38, 15, 75, 110, 242, 27, 114, 197, 31, 173, 47, 227, 225, 19, 27, 180, 219, 124, 20, 18, 2, 12, 45, 72, 107, 104, + 213, 101, 10, 61, 214, 243, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 2, 76, 221, 253, + 5, 53, 252, 7, 27, 0, 103, 251, 200, 5, 71, 99, 15, 77, 17, 159, 230, 58, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1437, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d4779185a04d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4761976180311516668" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4727744495200679242" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "508156715845339519" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13045764549051404787" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15001630867132553721" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17354001149350936807" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15305133208886245034" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "910da088" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2466146634250057292" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "739c1298" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3280236168975316703" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13179992265664673888" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7124189638962280200" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9463059622555134495" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9477850491949585250" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec47f3760a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10345505989760300367" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7769801360132502559" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18402674416983000629" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15451891326104981128" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "420dae" + }, + { + "_tag": "ByteArray", + "bytearray": "dd6edf071a9f2bd4e848" + } + ] + }, + "cborHex": "9f46d4779185a04dd8669f1b4215f01b2056e5fc9fbf1b419c5291d93eb54a1b070d55d73a30c97f1bb50bddbce997d1f31bd0307fcaa6f899f91bf0d5cc1992c880e71bd466c1903bb2f6aaff44910da088ffffbf1b2239834c327ff64c44739c12981b2d85bd6a8f2976df1bb6e8bd229156b8601b62de34bb26dd77081b83538a96dabdaa1f1b838816ce7eea936245ec47f3760a1b8f929ee28556b54f1b6bd3e12bbe0b741f1bff636ee17570c6351bd670254b206d4e88ff43420dae4add6edf071a9f2bd4e848ff", + "cborBytes": [ + 159, 70, 212, 119, 145, 133, 160, 77, 216, 102, 159, 27, 66, 21, 240, 27, 32, 86, 229, 252, 159, 191, 27, 65, 156, + 82, 145, 217, 62, 181, 74, 27, 7, 13, 85, 215, 58, 48, 201, 127, 27, 181, 11, 221, 188, 233, 151, 209, 243, 27, + 208, 48, 127, 202, 166, 248, 153, 249, 27, 240, 213, 204, 25, 146, 200, 128, 231, 27, 212, 102, 193, 144, 59, 178, + 246, 170, 255, 68, 145, 13, 160, 136, 255, 255, 191, 27, 34, 57, 131, 76, 50, 127, 246, 76, 68, 115, 156, 18, 152, + 27, 45, 133, 189, 106, 143, 41, 118, 223, 27, 182, 232, 189, 34, 145, 86, 184, 96, 27, 98, 222, 52, 187, 38, 221, + 119, 8, 27, 131, 83, 138, 150, 218, 189, 170, 31, 27, 131, 136, 22, 206, 126, 234, 147, 98, 69, 236, 71, 243, 118, + 10, 27, 143, 146, 158, 226, 133, 86, 181, 79, 27, 107, 211, 225, 43, 190, 11, 116, 31, 27, 255, 99, 110, 225, 117, + 112, 198, 53, 27, 214, 112, 37, 75, 32, 109, 78, 136, 255, 67, 66, 13, 174, 74, 221, 110, 223, 7, 26, 159, 43, + 212, 232, 72, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1438, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03479f" + } + ] + }, + "cborHex": "9f4303479fff", + "cborBytes": [159, 67, 3, 71, 159, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1439, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4513213860246306223" + } + } + ] + }, + "cborHex": "9f1b3ea228180759bdafff", + "cborBytes": [159, 27, 62, 162, 40, 24, 7, 89, 189, 175, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1440, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12434274801874484073" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0bd9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4032196670c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0227" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bac8f6b0d7d51bb699f14ffffbf420bd941a8464032196670c4420227ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 172, 143, 107, 13, 125, 81, 187, 105, 159, 20, 255, 255, 191, 66, 11, 217, 65, 168, 70, + 64, 50, 25, 102, 112, 196, 66, 2, 39, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1441, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea950c278d804399a86f3778" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5493852798051870539" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1725dad4206fbb667c9f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e96e7ee4b258d106eebb4b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11230407477069816639" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9764611785280184495" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16392250183183835895" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7836551c8c9e10c91b4f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1100747272674112508" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9185828193498700487" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18373529128824317263" + } + } + ] + }, + "cborHex": "9fbf4cea950c278d804399a86f37781b4c3e16031c2ae74b4bf1725dad4206fbb667c9f04be96e7ee4b258d106eebb4bff1b9bda6c1961a3233f1b8782deaeff37e0afd8669f1be37cf8b1160122f79fa080bf4a7836551c8c9e10c91b4f1b0f46a3cfff3873fc42f6b81b7f7a9e12c9421ac7ffffff1bfefbe36541dda54fff", + "cborBytes": [ + 159, 191, 76, 234, 149, 12, 39, 141, 128, 67, 153, 168, 111, 55, 120, 27, 76, 62, 22, 3, 28, 42, 231, 75, 75, 241, + 114, 93, 173, 66, 6, 251, 182, 103, 201, 240, 75, 233, 110, 126, 228, 178, 88, 209, 6, 238, 187, 75, 255, 27, 155, + 218, 108, 25, 97, 163, 35, 63, 27, 135, 130, 222, 174, 255, 55, 224, 175, 216, 102, 159, 27, 227, 124, 248, 177, + 22, 1, 34, 247, 159, 160, 128, 191, 74, 120, 54, 85, 28, 140, 158, 16, 201, 27, 79, 27, 15, 70, 163, 207, 255, 56, + 115, 252, 66, 246, 184, 27, 127, 122, 158, 18, 201, 66, 26, 199, 255, 255, 255, 27, 254, 251, 227, 101, 65, 221, + 165, 79, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1442, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aa95c1596e05de8a7631dd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16545336340859960946" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7750332593757705275" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6ee9f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10386966970392379093" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7377010656952648404" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6460236507384413487" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2720199825941248279" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1df98dae4" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f4baa95c1596e05de8a7631dd1be59cd7bdb651be72ff9f41f81b6b8eb66e560f543b436ee9f91b9025eb6d53f3fed5ff9f1b6660681b7fef02d4ffffbf1b59a75ee02ba87d2f1b25c01754574eb917ffa080bf421b6d45b1df98dae4ffff", + "cborBytes": [ + 159, 159, 159, 75, 170, 149, 193, 89, 110, 5, 222, 138, 118, 49, 221, 27, 229, 156, 215, 189, 182, 81, 190, 114, + 255, 159, 65, 248, 27, 107, 142, 182, 110, 86, 15, 84, 59, 67, 110, 233, 249, 27, 144, 37, 235, 109, 83, 243, 254, + 213, 255, 159, 27, 102, 96, 104, 27, 127, 239, 2, 212, 255, 255, 191, 27, 89, 167, 94, 224, 43, 168, 125, 47, 27, + 37, 192, 23, 84, 87, 78, 185, 23, 255, 160, 128, 191, 66, 27, 109, 69, 177, 223, 152, 218, 228, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1443, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4dab3ec733b17abef6c0" + }, + { + "_tag": "ByteArray", + "bytearray": "42e9ed93bd35eaba11fd3f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "417521675779167584" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01cd51" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6022487132684485812" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4472599f8bae5f230ad7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "529284514221534913" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7107287751212509341" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16326766825690367981" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1094826565374002225" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3330144309188758281" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8064536682231273777" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9536138434003302003" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12506808858613191095" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5707127432052008566" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12794875910240158510" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "faa0ac0fd0cf1e9a" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "28fd202b424716" + }, + { + "_tag": "ByteArray", + "bytearray": "e40f3d88af5e1a03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "568930238401409810" + } + }, + { + "_tag": "ByteArray", + "bytearray": "90" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15883937338897518753" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2643724054319266182" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13715566393473534583" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8265786944732038549" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "94" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5173906502118509118" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13054614540877208397" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15225908844483642173" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10733599905363023098" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f4a4dab3ec733b17abef6c04b42e9ed93bd35eaba11fd3fd8669f1b05cb55c082d7d5609f4301cd51a0d8669f1b53942c23800504b49f4a4472599f8bae5f230ad71b075865761f4a2ec11b62a2288dbf81a89d1be29453eccfe807edffffbf1b0f319af5e7c744311b2e370c9af7fc0b091b6feafd627e8099311b84572b618fb776731bad911c649b5911b71b4f33ca296b58e6761bb19087d9a711432e48faa0ac0fd0cf1e9affffff9f9f4728fd202b42471648e40f3d88af5e1a031b07e53f0999e4f31241901bdc6f14da5f8cd0a1ff1b24b0650535daf9869f1bbe577af778468a771b72b5f96ea5d08595ff9f41941b47cd688d17db8a3e1bb52b4ec234a29b4d1bd34d4b6c79ed033d1b94f5683eb05454faffff80ff", + "cborBytes": [ + 159, 74, 77, 171, 62, 199, 51, 177, 122, 190, 246, 192, 75, 66, 233, 237, 147, 189, 53, 234, 186, 17, 253, 63, + 216, 102, 159, 27, 5, 203, 85, 192, 130, 215, 213, 96, 159, 67, 1, 205, 81, 160, 216, 102, 159, 27, 83, 148, 44, + 35, 128, 5, 4, 180, 159, 74, 68, 114, 89, 159, 139, 174, 95, 35, 10, 215, 27, 7, 88, 101, 118, 31, 74, 46, 193, + 27, 98, 162, 40, 141, 191, 129, 168, 157, 27, 226, 148, 83, 236, 207, 232, 7, 237, 255, 255, 191, 27, 15, 49, 154, + 245, 231, 199, 68, 49, 27, 46, 55, 12, 154, 247, 252, 11, 9, 27, 111, 234, 253, 98, 126, 128, 153, 49, 27, 132, + 87, 43, 97, 143, 183, 118, 115, 27, 173, 145, 28, 100, 155, 89, 17, 183, 27, 79, 51, 202, 41, 107, 88, 230, 118, + 27, 177, 144, 135, 217, 167, 17, 67, 46, 72, 250, 160, 172, 15, 208, 207, 30, 154, 255, 255, 255, 159, 159, 71, + 40, 253, 32, 43, 66, 71, 22, 72, 228, 15, 61, 136, 175, 94, 26, 3, 27, 7, 229, 63, 9, 153, 228, 243, 18, 65, 144, + 27, 220, 111, 20, 218, 95, 140, 208, 161, 255, 27, 36, 176, 101, 5, 53, 218, 249, 134, 159, 27, 190, 87, 122, 247, + 120, 70, 138, 119, 27, 114, 181, 249, 110, 165, 208, 133, 149, 255, 159, 65, 148, 27, 71, 205, 104, 141, 23, 219, + 138, 62, 27, 181, 43, 78, 194, 52, 162, 155, 77, 27, 211, 77, 75, 108, 121, 237, 3, 61, 27, 148, 245, 104, 62, + 176, 84, 84, 250, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1444, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13508063698346361026" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bbb76485d6748c0c280ff9fa0ffff", + "cborBytes": [159, 216, 102, 159, 27, 187, 118, 72, 93, 103, 72, 192, 194, 128, 255, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1445, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "332077" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf05618d7287dd74" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8057791566930166234" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b208e875ec" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2615663337790210103" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "56609504727954153" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf413f4333207748cf05618d7287dd741b6fd306bcf502c1daff45b208e875ecd8669f1b244cb3f284ff803780ffd8669f1b00c91e0b6c3872e980ffff", + "cborBytes": [ + 159, 191, 65, 63, 67, 51, 32, 119, 72, 207, 5, 97, 141, 114, 135, 221, 116, 27, 111, 211, 6, 188, 245, 2, 193, + 218, 255, 69, 178, 8, 232, 117, 236, 216, 102, 159, 27, 36, 76, 179, 242, 132, 255, 128, 55, 128, 255, 216, 102, + 159, 27, 0, 201, 30, 11, 108, 56, 114, 233, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1446, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3816280514009206712" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abd90819f291c096" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6564635069808237043" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17318822598287035328" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8194716233595752055" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50758420383de0d29a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91083900f1d959c14b383d" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b34f626e870c38fb848abd90819f291c0961b5b1a44d0a7fdd9f31bf058d164e2e80bc041321b71b97aff3a9a0e774950758420383de0d29a4b91083900f1d959c14b383dffff", + "cborBytes": [ + 159, 191, 27, 52, 246, 38, 232, 112, 195, 143, 184, 72, 171, 217, 8, 25, 242, 145, 192, 150, 27, 91, 26, 68, 208, + 167, 253, 217, 243, 27, 240, 88, 209, 100, 226, 232, 11, 192, 65, 50, 27, 113, 185, 122, 255, 58, 154, 14, 119, + 73, 80, 117, 132, 32, 56, 61, 224, 210, 154, 75, 145, 8, 57, 0, 241, 217, 89, 193, 75, 56, 61, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1447, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "50d8d600fb42eaa6" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16590395819843332574" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "93e7b0b4" + }, + { + "_tag": "ByteArray", + "bytearray": "440a826ef29e177010" + }, + { + "_tag": "ByteArray", + "bytearray": "ee2d87c94211ae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11573801520581889664" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1021034361246158212" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15216135876517852069" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8272707825816370099" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "838204" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + ] + }, + "cborHex": "9f9f4850d8d600fb42eaa6ff9fd8669f1be63ced1934e329de9f4493e7b0b449440a826ef29e17701047ee2d87c94211ae1ba09e67298f28ce804164ffffffbf1b0e2b7157858b8d841bd32a92f60dec73a51b72ce8fefd860fbb343838204ff111bfffffffffffffff8ff", + "cborBytes": [ + 159, 159, 72, 80, 216, 214, 0, 251, 66, 234, 166, 255, 159, 216, 102, 159, 27, 230, 60, 237, 25, 52, 227, 41, 222, + 159, 68, 147, 231, 176, 180, 73, 68, 10, 130, 110, 242, 158, 23, 112, 16, 71, 238, 45, 135, 201, 66, 17, 174, 27, + 160, 158, 103, 41, 143, 40, 206, 128, 65, 100, 255, 255, 255, 191, 27, 14, 43, 113, 87, 133, 139, 141, 132, 27, + 211, 42, 146, 246, 13, 236, 115, 165, 27, 114, 206, 143, 239, 216, 96, 251, 179, 67, 131, 130, 4, 255, 17, 27, + 255, 255, 255, 255, 255, 255, 255, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1448, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0204240051fb96" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5f45" + }, + { + "_tag": "ByteArray", + "bytearray": "00010482039bfdd5015c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4317311613120942174" + }, + "fields": [] + } + ] + }, + "cborHex": "9f03d905089f470204240051fb96ff425f454a00010482039bfdd5015cd8669f1b3bea2c09bcbe105e80ffff", + "cborBytes": [ + 159, 3, 217, 5, 8, 159, 71, 2, 4, 36, 0, 81, 251, 150, 255, 66, 95, 69, 74, 0, 1, 4, 130, 3, 155, 253, 213, 1, 92, + 216, 102, 159, 27, 59, 234, 44, 9, 188, 190, 16, 94, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1449, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5339776714699392925" + } + }, + { + "_tag": "ByteArray", + "bytearray": "574514a30518" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2247347440085290372" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8716be" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b4a1ab2a1738f479d46574514a305189f9f1b1f302e96fd2acd84438716beffffff", + "cborBytes": [ + 159, 27, 74, 26, 178, 161, 115, 143, 71, 157, 70, 87, 69, 20, 163, 5, 24, 159, 159, 27, 31, 48, 46, 150, 253, 42, + 205, 132, 67, 135, 22, 190, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1450, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5338590429135180372" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3d9a977fdc0765e0b99" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7891053776587636130" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7477b5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9389416993970854605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eaa7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10917242506349838069" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca3697df" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17283052200156184510" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a87" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aaf81c175b2fe1cdd7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3bfd0c80072604561820" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14809560310766476802" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f804529b3fcd50" + }, + { + "_tag": "ByteArray", + "bytearray": "19" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14436881758770809179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7950645339893926724" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6377833d637d9e42" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9719009156567468001" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf6f2a93dfe0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10690611468301855413" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "552f41eb8048f2e205" + } + ] + } + ] + }, + "cborHex": "9fbf1b4a167bb5d1e712544ac3d9a977fdc0765e0b991b6d82a799e902bda2437477b51b824de9023da61acd42eaa71b9781d637adc6fef544ca3697df1befd9bc6810d7bfbe426a87ff49aaf81c175b2fe1cdd7d9050780d905069f9f4a3bfd0c800726045618201bcd8620a362f59e0247f804529b3fcd504119ffbf1bc85a1b783fd9c95b1b6e565dcff37e0b44486377833d637d9e421b86e0db5599f907e146cf6f2a93dfe01b945cae7d37d96ab5ff49552f41eb8048f2e205ffff", + "cborBytes": [ + 159, 191, 27, 74, 22, 123, 181, 209, 231, 18, 84, 74, 195, 217, 169, 119, 253, 192, 118, 94, 11, 153, 27, 109, + 130, 167, 153, 233, 2, 189, 162, 67, 116, 119, 181, 27, 130, 77, 233, 2, 61, 166, 26, 205, 66, 234, 167, 27, 151, + 129, 214, 55, 173, 198, 254, 245, 68, 202, 54, 151, 223, 27, 239, 217, 188, 104, 16, 215, 191, 190, 66, 106, 135, + 255, 73, 170, 248, 28, 23, 91, 47, 225, 205, 215, 217, 5, 7, 128, 217, 5, 6, 159, 159, 74, 59, 253, 12, 128, 7, + 38, 4, 86, 24, 32, 27, 205, 134, 32, 163, 98, 245, 158, 2, 71, 248, 4, 82, 155, 63, 205, 80, 65, 25, 255, 191, 27, + 200, 90, 27, 120, 63, 217, 201, 91, 27, 110, 86, 93, 207, 243, 126, 11, 68, 72, 99, 119, 131, 61, 99, 125, 158, + 66, 27, 134, 224, 219, 85, 153, 249, 7, 225, 70, 207, 111, 42, 147, 223, 224, 27, 148, 92, 174, 125, 55, 217, 106, + 181, 255, 73, 85, 47, 65, 235, 128, 72, 242, 226, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1451, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13080157892980214906" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "504ac4" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13451598795563076928" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4704135408587225647" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14882914924695093015" + } + }, + { + "_tag": "ByteArray", + "bytearray": "32818b753298f8c6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12257015591481671399" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5736583202088522575" + } + } + ] + }, + "cborHex": "9f809fa0bf1bb5860e4d511b8c7a43504ac4ff1bbaadadd5be9c0d409f1b4148723b042dba2f1bce8abc455ccf7f174832818b753298f8c6ff1baa19aabd70b07ee7ff1b4f9c700750f5934fff", + "cborBytes": [ + 159, 128, 159, 160, 191, 27, 181, 134, 14, 77, 81, 27, 140, 122, 67, 80, 74, 196, 255, 27, 186, 173, 173, 213, + 190, 156, 13, 64, 159, 27, 65, 72, 114, 59, 4, 45, 186, 47, 27, 206, 138, 188, 69, 92, 207, 127, 23, 72, 50, 129, + 139, 117, 50, 152, 248, 198, 255, 27, 170, 25, 170, 189, 112, 176, 126, 231, 255, 27, 79, 156, 112, 7, 80, 245, + 147, 79, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1452, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17297805940050806008" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3061261169128901386" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ae2f413f21258f448a985" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0306130be9dee3ddf197" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6d34f" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d7dac161b1869695fbe515" + }, + { + "_tag": "ByteArray", + "bytearray": "e9fb6728e9d8d68ed56f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f886aebe9dd791" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14355582548087791318" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f418cbf1bf00e26dad25ec4f81b2a7bc8d066a00b0a4b0ae2f413f21258f448a9854a0306130be9dee3ddf19742bd7f43b6d34fff9fa09f4bd7dac161b1869695fbe5154ae9fb6728e9d8d68ed56fff47f886aebe9dd7911bc7394644b291ded680ffff", + "cborBytes": [ + 159, 65, 140, 191, 27, 240, 14, 38, 218, 210, 94, 196, 248, 27, 42, 123, 200, 208, 102, 160, 11, 10, 75, 10, 226, + 244, 19, 242, 18, 88, 244, 72, 169, 133, 74, 3, 6, 19, 11, 233, 222, 227, 221, 241, 151, 66, 189, 127, 67, 182, + 211, 79, 255, 159, 160, 159, 75, 215, 218, 193, 97, 177, 134, 150, 149, 251, 229, 21, 74, 233, 251, 103, 40, 233, + 216, 214, 142, 213, 111, 255, 71, 248, 134, 174, 190, 157, 215, 145, 27, 199, 57, 70, 68, 178, 145, 222, 214, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1453, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4a7349" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f434a7349a0ff", + "cborBytes": [159, 67, 74, 115, 73, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1454, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "38075227ea335294746f3b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13989579340398984887" + } + } + ] + }, + "cborHex": "9f4b38075227ea335294746f3b1bc224f84a459ffeb7ff", + "cborBytes": [159, 75, 56, 7, 82, 39, 234, 51, 82, 148, 116, 111, 59, 27, 194, 36, 248, 74, 69, 159, 254, 183, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1455, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3555217071111951884" + } + } + ] + }, + "cborHex": "9f1b3156ab16ff08560cff", + "cborBytes": [159, 27, 49, 86, 171, 22, 255, 8, 86, 12, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1456, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14524039044624918518" + } + } + ] + }, + "cborHex": "9f1bc98fc08f36c5a7f6ff", + "cborBytes": [159, 27, 201, 143, 192, 143, 54, 197, 167, 246, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1457, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "64fd1f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a07a631cbb8dd9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4183810776037329376" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9788355954002431551" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "361194dbd234a27796ac87" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9022105492690723037" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fbf4364fd1f0c47a07a631cbb8dd91b3a0fe1bbe92809e0ff9fbf1b87d739e115650e3f1bffffffffffffffed1bffffffffffffffef4b361194dbd234a27796ac87ffffd8669f1b7d34f524f9ee60dd9f80ffffff", + "cborBytes": [ + 159, 191, 67, 100, 253, 31, 12, 71, 160, 122, 99, 28, 187, 141, 217, 27, 58, 15, 225, 187, 233, 40, 9, 224, 255, + 159, 191, 27, 135, 215, 57, 225, 21, 101, 14, 63, 27, 255, 255, 255, 255, 255, 255, 255, 237, 27, 255, 255, 255, + 255, 255, 255, 255, 239, 75, 54, 17, 148, 219, 210, 52, 162, 119, 150, 172, 135, 255, 255, 216, 102, 159, 27, 125, + 52, 245, 36, 249, 238, 96, 221, 159, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1458, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "781820965352595038" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17127055582239065011" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6890177943713940235" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6147674008259535618" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62f735dda6f9c448ee3b1410" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4876487542346569107" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16049101054411401751" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18117518520353906141" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cbfd379c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b435b637b69a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "97" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8439278595912219082" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7319287445202375308" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2249577436667241959" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16002284150061827400" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2428471253110671646" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6814260519045658482" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3469994731701442005" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14698700871871427775" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4903078677155944181" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9638300119058787125" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14358551388819820112" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16726528659956862176" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17019485100995320799" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80703185fe0443" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0405" + } + ] + }, + "cborHex": "9f9f9f1b0ad9960695cb5e5e1bedaf864f1bbb03b31b5f9ed455864d030bff9f1b5550ecf0513623024c62f735dda6f9c448ee3b14101b43acc395412f5593ff1bdeb9dc609089ea17d8669f1bfb6e5b1a81415ddd9f44cbfd379cffff46b435b637b69affd8669f1bfffffffffffffffa9f41971b751e572b75e7b9ca1b65935526f443928cbf1b1f381ac28748e5e71bde1388a6974c85481b21b3a9bcf4e8c91e1b5e911dd6acaf77721b3027e5d2db8a95d51bcbfc4690df9ef4bf1b440b3c1449ac16f51b85c21ee4731aab351bc743d269cbcc0e501be8209131fe1e8ce01bec315b86b8e11bdf4780703185fe0443ffffff420405ff", + "cborBytes": [ + 159, 159, 159, 27, 10, 217, 150, 6, 149, 203, 94, 94, 27, 237, 175, 134, 79, 27, 187, 3, 179, 27, 95, 158, 212, + 85, 134, 77, 3, 11, 255, 159, 27, 85, 80, 236, 240, 81, 54, 35, 2, 76, 98, 247, 53, 221, 166, 249, 196, 72, 238, + 59, 20, 16, 27, 67, 172, 195, 149, 65, 47, 85, 147, 255, 27, 222, 185, 220, 96, 144, 137, 234, 23, 216, 102, 159, + 27, 251, 110, 91, 26, 129, 65, 93, 221, 159, 68, 203, 253, 55, 156, 255, 255, 70, 180, 53, 182, 55, 182, 154, 255, + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 65, 151, 27, 117, 30, 87, 43, 117, 231, 185, 202, + 27, 101, 147, 85, 38, 244, 67, 146, 140, 191, 27, 31, 56, 26, 194, 135, 72, 229, 231, 27, 222, 19, 136, 166, 151, + 76, 133, 72, 27, 33, 179, 169, 188, 244, 232, 201, 30, 27, 94, 145, 29, 214, 172, 175, 119, 114, 27, 48, 39, 229, + 210, 219, 138, 149, 213, 27, 203, 252, 70, 144, 223, 158, 244, 191, 27, 68, 11, 60, 20, 73, 172, 22, 245, 27, 133, + 194, 30, 228, 115, 26, 171, 53, 27, 199, 67, 210, 105, 203, 204, 14, 80, 27, 232, 32, 145, 49, 254, 30, 140, 224, + 27, 236, 49, 91, 134, 184, 225, 27, 223, 71, 128, 112, 49, 133, 254, 4, 67, 255, 255, 255, 66, 4, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1459, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14459825865211075774" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5345780901188183262" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7842612380869222687" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bb67cfe2039774134359" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10543882764274153897" + } + }, + { + "_tag": "ByteArray", + "bytearray": "240759" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6358094267338626815" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8cfa22" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14558376842425825160" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9caf568b8d755177c8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10608083148338848344" + } + }, + { + "_tag": "ByteArray", + "bytearray": "19cb4882c4aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17371074199762604055" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1aad62" + }, + { + "_tag": "ByteArray", + "bytearray": "4c67a3d1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7047629277525705441" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14366453404181043739" + } + }, + { + "_tag": "ByteArray", + "bytearray": "928d59bcebee" + }, + { + "_tag": "ByteArray", + "bytearray": "335d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12693006033583509552" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15636184779024624417" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11933778616458602204" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15564083539495319745" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3038598171984251128" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8603015034226208140" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3990794053847222900" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10111068115257965255" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8623360553690406716" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21d8754e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9910377784047859442" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28d3d164d130d0fbfa52d8" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2607503742095299052" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7321ad664c14" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "420144635172295624" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96d535e36ce6455d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4912464505657965565" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9a9e61719" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "322111c0dfa5e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e191f326fcf634" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6862051379835011220" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8fb6f64ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d56be66b97a7f6a6eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f41b05363b6cafe79a50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf5d5bde4d778e2563" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bc8ab9f0351e95cbe9fd8669f1b4a3007680e63a4de9f1b6cd68e6890ca611f4abb67cfe20397741343591b925365829decb9a9432407591b583c7d0cad2a96ffffff438cfa22d8669f1bca09be9ac71077889f499caf568b8d755177c81b93377b6b5c8b62584619cb4882c4aa1bf11273f2e3cd9017ffff431aad62444c67a3d1ffffd8669f1b61ce357ceb9002e19f9f1bc75fe5411e699a1b46928d59bcebee42335dff9f1bb0269dbcb3a290301bd8fee3366421eb211ba59d4c6c7e2ae6dc1bd7febb84621f78c1ffbf1b2a2b44f03045c8f81b77640c97c865ed8c1b3762260c3f4e0a741b8c51bae14dbabac71b77ac54bc2cd51f3c4421d8754e1b8988bc16501876f24b28d3d164d130d0fbfa52d8ffffffd8669f1b242fb6d69a1791ec9fbf467321ad664c141b05d4a751d5bb13c84896d535e36ce6455d1b442c9470c7753bfd45a9a9e6171947322111c0dfa5e447e191f326fcf6341b5f3ae75f8d8b809445e8fb6f64ed49d56be66b97a7f6a6eb4af41b05363b6cafe79a5049cf5d5bde4d778e2563ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 200, 171, 159, 3, 81, 233, 92, 190, 159, 216, 102, 159, 27, 74, 48, 7, 104, 14, 99, 164, + 222, 159, 27, 108, 214, 142, 104, 144, 202, 97, 31, 74, 187, 103, 207, 226, 3, 151, 116, 19, 67, 89, 27, 146, 83, + 101, 130, 157, 236, 185, 169, 67, 36, 7, 89, 27, 88, 60, 125, 12, 173, 42, 150, 255, 255, 255, 67, 140, 250, 34, + 216, 102, 159, 27, 202, 9, 190, 154, 199, 16, 119, 136, 159, 73, 156, 175, 86, 139, 141, 117, 81, 119, 200, 27, + 147, 55, 123, 107, 92, 139, 98, 88, 70, 25, 203, 72, 130, 196, 170, 27, 241, 18, 115, 242, 227, 205, 144, 23, 255, + 255, 67, 26, 173, 98, 68, 76, 103, 163, 209, 255, 255, 216, 102, 159, 27, 97, 206, 53, 124, 235, 144, 2, 225, 159, + 159, 27, 199, 95, 229, 65, 30, 105, 154, 27, 70, 146, 141, 89, 188, 235, 238, 66, 51, 93, 255, 159, 27, 176, 38, + 157, 188, 179, 162, 144, 48, 27, 216, 254, 227, 54, 100, 33, 235, 33, 27, 165, 157, 76, 108, 126, 42, 230, 220, + 27, 215, 254, 187, 132, 98, 31, 120, 193, 255, 191, 27, 42, 43, 68, 240, 48, 69, 200, 248, 27, 119, 100, 12, 151, + 200, 101, 237, 140, 27, 55, 98, 38, 12, 63, 78, 10, 116, 27, 140, 81, 186, 225, 77, 186, 186, 199, 27, 119, 172, + 84, 188, 44, 213, 31, 60, 68, 33, 216, 117, 78, 27, 137, 136, 188, 22, 80, 24, 118, 242, 75, 40, 211, 209, 100, + 209, 48, 208, 251, 250, 82, 216, 255, 255, 255, 216, 102, 159, 27, 36, 47, 182, 214, 154, 23, 145, 236, 159, 191, + 70, 115, 33, 173, 102, 76, 20, 27, 5, 212, 167, 81, 213, 187, 19, 200, 72, 150, 213, 53, 227, 108, 230, 69, 93, + 27, 68, 44, 148, 112, 199, 117, 59, 253, 69, 169, 169, 230, 23, 25, 71, 50, 33, 17, 192, 223, 165, 228, 71, 225, + 145, 243, 38, 252, 246, 52, 27, 95, 58, 231, 95, 141, 139, 128, 148, 69, 232, 251, 111, 100, 237, 73, 213, 107, + 230, 107, 151, 167, 246, 166, 235, 74, 244, 27, 5, 54, 59, 108, 175, 231, 154, 80, 73, 207, 93, 91, 222, 77, 119, + 142, 37, 99, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1460, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "15cbfc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3564023020750314216" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f3d68329279e5c1f" + }, + { + "_tag": "ByteArray", + "bytearray": "32a3e37452489cfbdd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1545215705220372257" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cec58036cb8f03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4295371471022450732" + } + }, + { + "_tag": "ByteArray", + "bytearray": "958f2ed3" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bffffffffffffffffd8669f1bffffffffffffffed9f4315cbfc1b3175f40deb231ae8ffff9fa09f48f3d68329279e5c1f4932a3e37452489cfbdd1b1571b57f3b03d721ff9f47cec58036cb8f031b3b9c399854a3e82c44958f2ed3ffffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, + 67, 21, 203, 252, 27, 49, 117, 244, 13, 235, 35, 26, 232, 255, 255, 159, 160, 159, 72, 243, 214, 131, 41, 39, 158, + 92, 31, 73, 50, 163, 227, 116, 82, 72, 156, 251, 221, 27, 21, 113, 181, 127, 59, 3, 215, 33, 255, 159, 71, 206, + 197, 128, 54, 203, 143, 3, 27, 59, 156, 57, 152, 84, 163, 232, 44, 68, 149, 143, 46, 211, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1461, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d82ca71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16720252177223545260" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90af42c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12571149610483796356" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5822430" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23501c05019103fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cda006cc457e9d9bffc0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68ed2f1d45ac10223eb17f5b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7b28cc32036686b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17962347875924796819" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0db90d96d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88913a9a896d05abaf" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1343565215821702203" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bce2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7cb8f239919feb14" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10667016127542807190" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11976210532887210868" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "31" + }, + { + "_tag": "ByteArray", + "bytearray": "88d83adc545be5fc" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12917404868267245450" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10703171794331472789" + } + } + ] + } + ] + }, + "cborHex": "9fbf447d82ca711be80a44c47a5c71ac4490af42c11bae75b1f7472d498444c58224304823501c05019103fa4acda006cc457e9d9bffc04c68ed2f1d45ac10223eb17f5b48e7b28cc32036686b1bf94714397c7d659345f0db90d96d4988913a9a896d05abafffbf417d1b12a54d71fd9fa43b42bce2487cb8f239919feb1441c61b9408daa6d78d4a96ffd8669f1ba6340c06e808ab749f9f41314888d83adc545be5fcffd8669f1bb343d749d0f87f8a80ff41cc1b94894e0a031b9395ffffff", + "cborBytes": [ + 159, 191, 68, 125, 130, 202, 113, 27, 232, 10, 68, 196, 122, 92, 113, 172, 68, 144, 175, 66, 193, 27, 174, 117, + 177, 247, 71, 45, 73, 132, 68, 197, 130, 36, 48, 72, 35, 80, 28, 5, 1, 145, 3, 250, 74, 205, 160, 6, 204, 69, 126, + 157, 155, 255, 192, 76, 104, 237, 47, 29, 69, 172, 16, 34, 62, 177, 127, 91, 72, 231, 178, 140, 195, 32, 54, 104, + 107, 27, 249, 71, 20, 57, 124, 125, 101, 147, 69, 240, 219, 144, 217, 109, 73, 136, 145, 58, 154, 137, 109, 5, + 171, 175, 255, 191, 65, 125, 27, 18, 165, 77, 113, 253, 159, 164, 59, 66, 188, 226, 72, 124, 184, 242, 57, 145, + 159, 235, 20, 65, 198, 27, 148, 8, 218, 166, 215, 141, 74, 150, 255, 216, 102, 159, 27, 166, 52, 12, 6, 232, 8, + 171, 116, 159, 159, 65, 49, 72, 136, 216, 58, 220, 84, 91, 229, 252, 255, 216, 102, 159, 27, 179, 67, 215, 73, + 208, 248, 127, 138, 128, 255, 65, 204, 27, 148, 137, 78, 10, 3, 27, 147, 149, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1462, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "734250562383282924" + } + } + ] + }, + "cborHex": "9f1b0a3094ff0afc82ecff", + "cborBytes": [159, 27, 10, 48, 148, 255, 10, 252, 130, 236, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1463, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6952693556344626020" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8040325014b3b29024ad983e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "490116743783968065" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4837016772953799298" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2035920413119600308" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8688705275913492601" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3e9c98532df0635c77ffc1af" + }, + { + "_tag": "ByteArray", + "bytearray": "53b50748ca" + }, + { + "_tag": "ByteArray", + "bytearray": "54907a0473fa35c42f50" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11151973479672776308" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3331994816374500135" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3575558472285335543" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17015117867616294747" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7c11d11e25263aa8" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b607cedf3da119b649f4c8040325014b3b29024ad983effffbf414c1b06cd3e94ebb6ed41ffd8669f1b432089209c847a829f1b1c410ad436f5d6b41b78947b69e8e2d8794c3e9c98532df0635c77ffc1af4553b50748ca4a54907a0473fa35c42f50ffffd8669f1b9ac3c4cb487906749f1b2e3d9fa1bf71eb271b319eef7c8634aff7ffff9f1bec21d78cf6abd75b487c11d11e25263aa8ffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 96, 124, 237, 243, 218, 17, 155, 100, 159, 76, 128, 64, 50, 80, 20, 179, 178, 144, + 36, 173, 152, 62, 255, 255, 191, 65, 76, 27, 6, 205, 62, 148, 235, 182, 237, 65, 255, 216, 102, 159, 27, 67, 32, + 137, 32, 156, 132, 122, 130, 159, 27, 28, 65, 10, 212, 54, 245, 214, 180, 27, 120, 148, 123, 105, 232, 226, 216, + 121, 76, 62, 156, 152, 83, 45, 240, 99, 92, 119, 255, 193, 175, 69, 83, 181, 7, 72, 202, 74, 84, 144, 122, 4, 115, + 250, 53, 196, 47, 80, 255, 255, 216, 102, 159, 27, 154, 195, 196, 203, 72, 121, 6, 116, 159, 27, 46, 61, 159, 161, + 191, 113, 235, 39, 27, 49, 158, 239, 124, 134, 52, 175, 247, 255, 255, 159, 27, 236, 33, 215, 140, 246, 171, 215, + 91, 72, 124, 17, 209, 30, 37, 38, 58, 168, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1464, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e6b3b297c2ded426573" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3297214720912807806" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "473c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09376364695f02bb2ba7f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b98304" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11143660075138848989" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba7fe7b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ab4b0886fa35ff8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e58cea9f4164e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae8b25" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13637121731822332668" + } + }, + { + "_tag": "ByteArray", + "bytearray": "248f035c5a19b331" + }, + { + "_tag": "ByteArray", + "bytearray": "82905a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e4" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13271775897108873568" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a6cf7d" + } + ] + }, + "cborHex": "9f9fbf4a2e6b3b297c2ded4265731b2dc20f51bc32577e42473c4b09376364695f02bb2ba7f243b983041b9aa63bcbf45a98dd44ba7fe7b0485ab4b0886fa35ff847e58cea9f4164e643ae8b25ff9f1bbd40c9f66807aafc48248f035c5a19b3314382905aff41e4ff1bb82ed1dc8dc4016043a6cf7dff", + "cborBytes": [ + 159, 159, 191, 74, 46, 107, 59, 41, 124, 45, 237, 66, 101, 115, 27, 45, 194, 15, 81, 188, 50, 87, 126, 66, 71, 60, + 75, 9, 55, 99, 100, 105, 95, 2, 187, 43, 167, 242, 67, 185, 131, 4, 27, 154, 166, 59, 203, 244, 90, 152, 221, 68, + 186, 127, 231, 176, 72, 90, 180, 176, 136, 111, 163, 95, 248, 71, 229, 140, 234, 159, 65, 100, 230, 67, 174, 139, + 37, 255, 159, 27, 189, 64, 201, 246, 104, 7, 170, 252, 72, 36, 143, 3, 92, 90, 25, 179, 49, 67, 130, 144, 90, 255, + 65, 228, 255, 27, 184, 46, 209, 220, 141, 196, 1, 96, 67, 166, 207, 125, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1465, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10253154222966041526" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "51069286056999606" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16246182510341574949" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a2629124" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17555556134890628431" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "871852016515240430" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e25e24a604c50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5138894335274881977" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4055258427194202956" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10225284026049531960" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "131e1171244b3d765683" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12568488685613505875" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7785532477877439604" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15767743057826236763" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9436385713533827970" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6570318794612957774" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f4f560b38528b690aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8708528890652749365" + } + } + ] + }, + "cborHex": "9f1b8e4a8571372febb6d9050b9f1b00b56f3ebe5c3ab6d8669f1be17608eacd12d1259f44a26291241bf3a1dd4a9695e54fffffbf1b0c1970ca2d1951ee477e25e24a604c501b4751052bc05393b91b38472c0dc951db4c1b8de781a5542890384a131e1171244b3d7656831bae6c3dde6d825d531b6c0bc48a0326cc741bdad246c51f5d495b1b82f4c6cf72c13b82ffff1b5b2e7621f5fa624e49f4f560b38528b690aa1b78dae8e2e3956e35ff", + "cborBytes": [ + 159, 27, 142, 74, 133, 113, 55, 47, 235, 182, 217, 5, 11, 159, 27, 0, 181, 111, 62, 190, 92, 58, 182, 216, 102, + 159, 27, 225, 118, 8, 234, 205, 18, 209, 37, 159, 68, 162, 98, 145, 36, 27, 243, 161, 221, 74, 150, 149, 229, 79, + 255, 255, 191, 27, 12, 25, 112, 202, 45, 25, 81, 238, 71, 126, 37, 226, 74, 96, 76, 80, 27, 71, 81, 5, 43, 192, + 83, 147, 185, 27, 56, 71, 44, 13, 201, 81, 219, 76, 27, 141, 231, 129, 165, 84, 40, 144, 56, 74, 19, 30, 17, 113, + 36, 75, 61, 118, 86, 131, 27, 174, 108, 61, 222, 109, 130, 93, 83, 27, 108, 11, 196, 138, 3, 38, 204, 116, 27, + 218, 210, 70, 197, 31, 93, 73, 91, 27, 130, 244, 198, 207, 114, 193, 59, 130, 255, 255, 27, 91, 46, 118, 33, 245, + 250, 98, 78, 73, 244, 245, 96, 179, 133, 40, 182, 144, 170, 27, 120, 218, 232, 226, 227, 149, 110, 53, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1466, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f2befa" + } + ] + }, + "cborHex": "9f43f2befaff", + "cborBytes": [159, 67, 242, 190, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1467, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15500890282805759926" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15205281357329926959" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3818751983572066800" + } + } + ] + }, + "cborHex": "9fd8669f1bd71e3995c0f10fb680ff9f1bd30402d55d850b2fff1b34feeeb24a21a1f0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 215, 30, 57, 149, 192, 241, 15, 182, 128, 255, 159, 27, 211, 4, 2, 213, 93, 133, 11, 47, + 255, 27, 52, 254, 238, 178, 74, 33, 161, 240, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1468, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05fc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2212445871004359445" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12171120860929621016" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff04fc51fa02ba5dc901" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13495973370010054819" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04fe07" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10934767169466105943" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f806" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9097276085157051712" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f89803ed" + }, + { + "_tag": "ByteArray", + "bytearray": "068e6d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8911932580818332713" + }, + "fields": [] + } + ] + }, + "cborHex": "9f4205fcd8669f1bfffffffffffffffd9fbf0c1b1eb42fcc31fe9b151ba8e881f00a0e7c184aff04fc51fa02ba5dc9011bbb4b54467994b0a34304fe07ff021bfffffffffffffffed8669f1b97c018ce45a180579f42f8061b7e40046667713d4000ffffffff44f89803ed43068e6dd8669f1b7bad8b76fde82c2980ffff", + "cborBytes": [ + 159, 66, 5, 252, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 191, 12, 27, 30, 180, 47, 204, + 49, 254, 155, 21, 27, 168, 232, 129, 240, 10, 14, 124, 24, 74, 255, 4, 252, 81, 250, 2, 186, 93, 201, 1, 27, 187, + 75, 84, 70, 121, 148, 176, 163, 67, 4, 254, 7, 255, 2, 27, 255, 255, 255, 255, 255, 255, 255, 254, 216, 102, 159, + 27, 151, 192, 24, 206, 69, 161, 128, 87, 159, 66, 248, 6, 27, 126, 64, 4, 102, 103, 113, 61, 64, 0, 255, 255, 255, + 255, 68, 248, 152, 3, 237, 67, 6, 142, 109, 216, 102, 159, 27, 123, 173, 139, 118, 253, 232, 44, 41, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1469, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10401982550888264453" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbbfb067ce2e8c7c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17464011944516154244" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16902991620083418376" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3695add82ec651573940f4d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "589b89f154ce8e9400b2" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b905b44049981b30548cbbfb067ce2e8c7c1bf25ca255d21073841bea937d52947a05084cf3695add82ec651573940f4d4a589b89f154ce8e9400b2ffff", + "cborBytes": [ + 159, 191, 27, 144, 91, 68, 4, 153, 129, 179, 5, 72, 203, 191, 176, 103, 206, 46, 140, 124, 27, 242, 92, 162, 85, + 210, 16, 115, 132, 27, 234, 147, 125, 82, 148, 122, 5, 8, 76, 243, 105, 90, 221, 130, 236, 101, 21, 115, 148, 15, + 77, 74, 88, 155, 137, 241, 84, 206, 142, 148, 0, 178, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1470, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5612e45e9e6f4941212ed911" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15139901367750613707" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "106421072970730590" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15984420142690609932" + } + }, + { + "_tag": "ByteArray", + "bytearray": "30ce8baa97" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1741463700798708868" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55c52944c6d668" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5682720169738364112" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8549383299735385129" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3755450509696943527" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17012538986998832366" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4c67276fc8aa8ccd39173" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17401901924753682043" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8848907181993436452" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18258245325198526758" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "693fed858eabf2c14cf27f" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3767261933436187726" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "74826557839687744" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14396205935721460225" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4c5612e45e9e6f4941212ed9111bd21bbc144f39dacb9f9f1b017a1566eb094c5e1bddd4116e41ac2b0c4530ce8baa97ffbf1b182aec025b581c844755c52944c6d6681b4edd13e2d333e4d041121b76a582d0856274291b341e0a57620bc5a71bec18ae12878c9cee4bb4c67276fc8aa8ccd391731bf17ff999f1212e7b1b7acda232d11f25241bfd6251630e6509264b693fed858eabf2c14cf27fffffd8669f1b344800c4c650b44e9fd8669f1b0109d65b9fccc0409f1bc7c99906300c3201ffffffffff", + "cborBytes": [ + 159, 76, 86, 18, 228, 94, 158, 111, 73, 65, 33, 46, 217, 17, 27, 210, 27, 188, 20, 79, 57, 218, 203, 159, 159, 27, + 1, 122, 21, 102, 235, 9, 76, 94, 27, 221, 212, 17, 110, 65, 172, 43, 12, 69, 48, 206, 139, 170, 151, 255, 191, 27, + 24, 42, 236, 2, 91, 88, 28, 132, 71, 85, 197, 41, 68, 198, 214, 104, 27, 78, 221, 19, 226, 211, 51, 228, 208, 65, + 18, 27, 118, 165, 130, 208, 133, 98, 116, 41, 27, 52, 30, 10, 87, 98, 11, 197, 167, 27, 236, 24, 174, 18, 135, + 140, 156, 238, 75, 180, 198, 114, 118, 252, 138, 168, 204, 211, 145, 115, 27, 241, 127, 249, 153, 241, 33, 46, + 123, 27, 122, 205, 162, 50, 209, 31, 37, 36, 27, 253, 98, 81, 99, 14, 101, 9, 38, 75, 105, 63, 237, 133, 142, 171, + 242, 193, 76, 242, 127, 255, 255, 216, 102, 159, 27, 52, 72, 0, 196, 198, 80, 180, 78, 159, 216, 102, 159, 27, 1, + 9, 214, 91, 159, 204, 192, 64, 159, 27, 199, 201, 153, 6, 48, 12, 50, 1, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1471, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d98deedc7a" + }, + { + "_tag": "ByteArray", + "bytearray": "444b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "326281e35b88c7a8bb6d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8876953050524203243" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c7bf2509cdc7b7d66b" + } + ] + } + ] + } + ] + }, + "cborHex": "9fa09f8045d98deedc7a42444b9f4a326281e35b88c7a8bb6d1b7b3145c47050b8eb49c7bf2509cdc7b7d66bffffff", + "cborBytes": [ + 159, 160, 159, 128, 69, 217, 141, 238, 220, 122, 66, 68, 75, 159, 74, 50, 98, 129, 227, 91, 136, 199, 168, 187, + 109, 27, 123, 49, 69, 196, 112, 80, 184, 235, 73, 199, 191, 37, 9, 205, 199, 183, 214, 107, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1472, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8698526960500084060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11058392678051009226" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b78b7602f0dc40d5c1b99774d8d0202d2caffff", + "cborBytes": [159, 191, 27, 120, 183, 96, 47, 13, 196, 13, 92, 27, 153, 119, 77, 141, 2, 2, 210, 202, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1473, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8543597467284375642" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3854072991001834219" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "af7e4b9f1f88dbdd0f" + }, + { + "_tag": "ByteArray", + "bytearray": "36505ed889716dd3d9" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6988393045240873412" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f581485b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "458680e8cd0ef2ad50e9bd64" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7690f4a16d69885a9fd8669f1b357c6af72f1772eb9f49af7e4b9f1f88dbdd0f4936505ed889716dd3d9ffffffff1b60fbc272d46481c444f581485b9f4c458680e8cd0ef2ad50e9bd64ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 118, 144, 244, 161, 109, 105, 136, 90, 159, 216, 102, 159, 27, 53, 124, 106, 247, 47, 23, + 114, 235, 159, 73, 175, 126, 75, 159, 31, 136, 219, 221, 15, 73, 54, 80, 94, 216, 137, 113, 109, 211, 217, 255, + 255, 255, 255, 27, 96, 251, 194, 114, 212, 100, 129, 196, 68, 245, 129, 72, 91, 159, 76, 69, 134, 128, 232, 205, + 14, 242, 173, 80, 233, 189, 100, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1474, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3145764306463466091" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1460715136377491888" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3665759988858004086" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6dc338d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6828375758738223989" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38f0894ee6abdef5b89d2e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18251666240663410332" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18220636231129760150" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3801227261859475029" + } + } + ] + }, + "cborHex": "9fbf1b2ba7fff841dba26b1b144580ad65d111b01b32df6549afb8a276446dc338d31b5ec34393047af3754b38f0894ee6abdef5b89d2e1bfd4af1be91bb569c1bfcdcb41d7a1a0196ff1b34c0ac0e0daa2e55ff", + "cborBytes": [ + 159, 191, 27, 43, 167, 255, 248, 65, 219, 162, 107, 27, 20, 69, 128, 173, 101, 209, 17, 176, 27, 50, 223, 101, 73, + 175, 184, 162, 118, 68, 109, 195, 56, 211, 27, 94, 195, 67, 147, 4, 122, 243, 117, 75, 56, 240, 137, 78, 230, 171, + 222, 245, 184, 157, 46, 27, 253, 74, 241, 190, 145, 187, 86, 156, 27, 252, 220, 180, 29, 122, 26, 1, 150, 255, 27, + 52, 192, 172, 14, 13, 170, 46, 85, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1475, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05fc03" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11817115580501928144" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3155821551624079697" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c77304344588782d3d62d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7285864545496745666" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "317d4539e0e4be" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13167607233310627478" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d41be8781c0df96c61e3" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8934892267218738721" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ddd6" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "313f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6cf12766f188" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62bb6eb568f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9b430382d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15292997644041126230" + } + } + ] + }, + "cborHex": "9f064305fc03d8669f1ba3fed402bd8d28d09fbf1b2bcbbafb1f1349514bc77304344588782d3d62d31b651c9733b3f246c247317d4539e0e4be1bb6bcbd03835816964ad41be8781c0df96c61e3ffd8669f1b7bff1d2d8df51e219f42ddd6ffffffffbf42313f466cf12766f1884662bb6eb568f945c9b430382dff1bd43ba454dbf50156ff", + "cborBytes": [ + 159, 6, 67, 5, 252, 3, 216, 102, 159, 27, 163, 254, 212, 2, 189, 141, 40, 208, 159, 191, 27, 43, 203, 186, 251, + 31, 19, 73, 81, 75, 199, 115, 4, 52, 69, 136, 120, 45, 61, 98, 211, 27, 101, 28, 151, 51, 179, 242, 70, 194, 71, + 49, 125, 69, 57, 224, 228, 190, 27, 182, 188, 189, 3, 131, 88, 22, 150, 74, 212, 27, 232, 120, 28, 13, 249, 108, + 97, 227, 255, 216, 102, 159, 27, 123, 255, 29, 45, 141, 245, 30, 33, 159, 66, 221, 214, 255, 255, 255, 255, 191, + 66, 49, 63, 70, 108, 241, 39, 102, 241, 136, 70, 98, 187, 110, 181, 104, 249, 69, 201, 180, 48, 56, 45, 255, 27, + 212, 59, 164, 84, 219, 245, 1, 86, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1476, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7203104210184800359" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c55bbb289c" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9249914390289470550" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04cabb" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "71f4" + }, + { + "_tag": "ByteArray", + "bytearray": "04ffd436" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4624312182164118676" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7075052909883002548" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9333572115367004381" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b63f6911d902f886745c55bbb289cffffd8669f1b805e4c213bfa54569f4304cabb9f4271f44404ffd436ffd87d80bf1b402cdb6dd4675c9441821b622fa322e4ab8eb41b8187826335f108ddffffffff", + "cborBytes": [ + 159, 159, 191, 27, 99, 246, 145, 29, 144, 47, 136, 103, 69, 197, 91, 187, 40, 156, 255, 255, 216, 102, 159, 27, + 128, 94, 76, 33, 59, 250, 84, 86, 159, 67, 4, 202, 187, 159, 66, 113, 244, 68, 4, 255, 212, 54, 255, 216, 125, + 128, 191, 27, 64, 44, 219, 109, 212, 103, 92, 148, 65, 130, 27, 98, 47, 163, 34, 228, 171, 142, 180, 27, 129, 135, + 130, 99, 53, 241, 8, 221, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1477, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e628cdf571" + }, + { + "_tag": "ByteArray", + "bytearray": "ff04" + }, + { + "_tag": "ByteArray", + "bytearray": "02037cd61fe09e0cbe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10086135418037340242" + } + } + ] + }, + "cborHex": "9f45e628cdf57142ff044902037cd61fe09e0cbe1b8bf926b95c9a0852ff", + "cborBytes": [ + 159, 69, 230, 40, 205, 245, 113, 66, 255, 4, 73, 2, 3, 124, 214, 31, 224, 158, 12, 190, 27, 139, 249, 38, 185, 92, + 154, 8, 82, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1478, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4307841861975215023" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9dbf3074ce42ffe963d210a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5741137748869056979" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18423154729525163938" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9054509657342413391" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5945305062192118432" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13838298964669361982" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5437425459480792621" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13842927124934605639" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2049180196392085208" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17664431876782178021" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16118632555178264834" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12430794998838226404" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4368544607379712026" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15884566590329621346" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2234008630009987473" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f11f2a80e1a1e6a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3d678" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13498919901302895701" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e5d55dbf33372f4c94ee" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9067869962390407342" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2522775664410983077" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1274605454157857989" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12442591178421206947" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12894647867650528887" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4e" + } + ] + }, + "cborHex": "9fbf1b3bc887597b970baf4c9dbf3074ce42ffe963d210a71b4fac9e5d5fed09d31bffac319dcf67b7a21b7da8148f7d3d0a4f1b5281f774594afaa01bc00b839704c5ef3e1b4b759da58d048e2d1bc01bf4e08d58bb471b1c70268816b726d81bf524ab33a6b03ee51bdfb0e2e8a4728902ffbf1bac830e30b5746de41b3ca0302cc450e81a1bdc71512763a28b621b1f00cb0340e70191483f11f2a80e1a1e6a41c643e3d6781bbb55cc21409c3455ff4ae5d55dbf33372f4c94eed8669f1b7dd78bafe9b708ae9f1b2302b319bd377aa51b11b04ee84bdac4c5d8669f1bacacf6c0cb347fa380ffd8669f1bb2f2fdeab70ed67780ffffff414eff", + "cborBytes": [ + 159, 191, 27, 59, 200, 135, 89, 123, 151, 11, 175, 76, 157, 191, 48, 116, 206, 66, 255, 233, 99, 210, 16, 167, 27, + 79, 172, 158, 93, 95, 237, 9, 211, 27, 255, 172, 49, 157, 207, 103, 183, 162, 27, 125, 168, 20, 143, 125, 61, 10, + 79, 27, 82, 129, 247, 116, 89, 74, 250, 160, 27, 192, 11, 131, 151, 4, 197, 239, 62, 27, 75, 117, 157, 165, 141, + 4, 142, 45, 27, 192, 27, 244, 224, 141, 88, 187, 71, 27, 28, 112, 38, 136, 22, 183, 38, 216, 27, 245, 36, 171, 51, + 166, 176, 62, 229, 27, 223, 176, 226, 232, 164, 114, 137, 2, 255, 191, 27, 172, 131, 14, 48, 181, 116, 109, 228, + 27, 60, 160, 48, 44, 196, 80, 232, 26, 27, 220, 113, 81, 39, 99, 162, 139, 98, 27, 31, 0, 203, 3, 64, 231, 1, 145, + 72, 63, 17, 242, 168, 14, 26, 30, 106, 65, 198, 67, 227, 214, 120, 27, 187, 85, 204, 33, 64, 156, 52, 85, 255, 74, + 229, 213, 93, 191, 51, 55, 47, 76, 148, 238, 216, 102, 159, 27, 125, 215, 139, 175, 233, 183, 8, 174, 159, 27, 35, + 2, 179, 25, 189, 55, 122, 165, 27, 17, 176, 78, 232, 75, 218, 196, 197, 216, 102, 159, 27, 172, 172, 246, 192, + 203, 52, 127, 163, 128, 255, 216, 102, 159, 27, 178, 242, 253, 234, 183, 14, 214, 119, 128, 255, 255, 255, 65, 78, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1479, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7653559957530290943" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4698424927228181182" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12308879577418001226" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0594afb711855fd4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13104056527956965378" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17574196552912255351" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16789435496780498538" + } + }, + { + "_tag": "ByteArray", + "bytearray": "161d747baae22d793b0654" + } + ] + }, + "cborHex": "9fbf1b6a36e83b27bf2aff1b41342893f746babe1baad1ecc2ab0f6b4a480594afb711855fd41bb5daf5fbe18378021bf3e416a71d3ab977ff1be9000ea14cef866a4b161d747baae22d793b0654ff", + "cborBytes": [ + 159, 191, 27, 106, 54, 232, 59, 39, 191, 42, 255, 27, 65, 52, 40, 147, 247, 70, 186, 190, 27, 170, 209, 236, 194, + 171, 15, 107, 74, 72, 5, 148, 175, 183, 17, 133, 95, 212, 27, 181, 218, 245, 251, 225, 131, 120, 2, 27, 243, 228, + 22, 167, 29, 58, 185, 119, 255, 27, 233, 0, 14, 161, 76, 239, 134, 106, 75, 22, 29, 116, 123, 170, 226, 45, 121, + 59, 6, 84, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1480, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb1a62bc34212766d21f772d" + }, + { + "_tag": "ByteArray", + "bytearray": "ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + }, + "cborHex": "9f4ccb1a62bc34212766d21f772d41ab1bfffffffffffffffe00ff", + "cborBytes": [ + 159, 76, 203, 26, 98, 188, 52, 33, 39, 102, 210, 31, 119, 45, 65, 171, 27, 255, 255, 255, 255, 255, 255, 255, 254, + 0, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1481, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1216427344494623678" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4384394804829760826" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15835321206143314421" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1634622694142767483" + } + } + ] + }, + "cborHex": "9fbf1b10e19e3993ac7bbe1b3cd87fd870f22d3aff1bdbc25cbce461e9f51b16af58ae022bf17bff", + "cborBytes": [ + 159, 191, 27, 16, 225, 158, 57, 147, 172, 123, 190, 27, 60, 216, 127, 216, 112, 242, 45, 58, 255, 27, 219, 194, + 92, 188, 228, 97, 233, 245, 27, 22, 175, 88, 174, 2, 43, 241, 123, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1482, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4241157014734506589" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6651969285453477962" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b557165ed5cec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cce10dbf2" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8180127139890647274" + } + } + ] + } + ] + }, + "cborHex": "9f0e9f1b3adb9dd593e80a5dbf1b5c508ad24c43784a41d2478b557165ed5cec451cce10dbf2ffffd905029f1b7185a64b26b6d0eaffff", + "cborBytes": [ + 159, 14, 159, 27, 58, 219, 157, 213, 147, 232, 10, 93, 191, 27, 92, 80, 138, 210, 76, 67, 120, 74, 65, 210, 71, + 139, 85, 113, 101, 237, 92, 236, 69, 28, 206, 16, 219, 242, 255, 255, 217, 5, 2, 159, 27, 113, 133, 166, 75, 38, + 182, 208, 234, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1483, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7956994328723899141" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01418ed51a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9784e0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "403abd462d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf344523fedf4ad8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e764651b5b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d7346892d05334d5d58" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "38c12366c0036a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16859118038161407353" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9da182bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f424f2b3012" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ee3c4a6d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "897e25bcaa08" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d34c9d8331da9043b4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "610821458634071675" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9b1ba2a9648a467" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "710a1c629697eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e523b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "670555516907425872" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3165473208959125056" + } + } + ] + }, + "cborHex": "9f1b6e6cec2f1b62c3059f4501418ed51abf439784e045403abd462d48bf344523fedf4ad8414745e764651b5b4a9d7346892d05334d5d58ffffbf4738c12366c0036a1be9f79e8842fdbd79449da182bc463f424f2b3012459ee3c4a6d246897e25bcaa0849d34c9d8331da9043b41b087a12e15f11de7b48d9b1ba2a9648a46747710a1c629697eb43e523b01b094e4ab09b721050ff1b2bee051cb6064640ff", + "cborBytes": [ + 159, 27, 110, 108, 236, 47, 27, 98, 195, 5, 159, 69, 1, 65, 142, 213, 26, 191, 67, 151, 132, 224, 69, 64, 58, 189, + 70, 45, 72, 191, 52, 69, 35, 254, 223, 74, 216, 65, 71, 69, 231, 100, 101, 27, 91, 74, 157, 115, 70, 137, 45, 5, + 51, 77, 93, 88, 255, 255, 191, 71, 56, 193, 35, 102, 192, 3, 106, 27, 233, 247, 158, 136, 66, 253, 189, 121, 68, + 157, 161, 130, 188, 70, 63, 66, 79, 43, 48, 18, 69, 158, 227, 196, 166, 210, 70, 137, 126, 37, 188, 170, 8, 73, + 211, 76, 157, 131, 49, 218, 144, 67, 180, 27, 8, 122, 18, 225, 95, 17, 222, 123, 72, 217, 177, 186, 42, 150, 72, + 164, 103, 71, 113, 10, 28, 98, 150, 151, 235, 67, 229, 35, 176, 27, 9, 78, 74, 176, 155, 114, 16, 80, 255, 27, 43, + 238, 5, 28, 182, 6, 70, 64, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1484, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "091c0423" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43149f07e0391495" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a9cb3dd4fc4a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7751433225517105664" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f691b530512510e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5041985576006792381" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5db80206" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9191807393879736449" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6efef7a9e5611334bec43b38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e31d6ffc1e8c8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b29d9d71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2978645649909774601" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8372613588294781841" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17422370934504529709" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15526666554084461711" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8287655641405372351" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4465098563665428365" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8656552392906186777" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "42395d1e47" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15271332965557047682" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14344169573466488706" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13472563038006613762" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4aeeac462ee104a412" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2e88f482a14960" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "238549733782652417" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "028e86c7c751ea6bba38" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3811877715370897823" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ccf34c0f3e62cad60ee9a8e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8214466163844097212" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10602139881511534986" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf44091c04234843149f07e0391495474a9cb3dd4fc4a61b6b929f73231b8200484f691b530512510e1b45f8bb2af48734bd445db802061b7f8fdc1fdc02c0814c6efef7a9e5611334bec43b38475e31d6ffc1e8c844b29d9d711b2956466fe2a27909ffd8669f1b74317fb2d3eb4b919f1bf1c8b20ea83b9f2d1bd779ccf796248c8f1b7303aae55ebab7bfffff9fa01b3df7377c8e627f8dd8669f1b7822408976bb20199f4542395d1e471bd3eeac6bd2bd91821bc710ba3a786fbf821bbaf828b3ce711702494aeeac462ee104a412ffff472e88f482a14960ffbf1b034f7fb80f6106014a028e86c7c751ea6bba381b34e68295ffe8f19f4c5ccf34c0f3e62cad60ee9a8e1b71ffa5743364a4bc1b93225e0cb87f418affff", + "cborBytes": [ + 159, 191, 68, 9, 28, 4, 35, 72, 67, 20, 159, 7, 224, 57, 20, 149, 71, 74, 156, 179, 221, 79, 196, 166, 27, 107, + 146, 159, 115, 35, 27, 130, 0, 72, 79, 105, 27, 83, 5, 18, 81, 14, 27, 69, 248, 187, 42, 244, 135, 52, 189, 68, + 93, 184, 2, 6, 27, 127, 143, 220, 31, 220, 2, 192, 129, 76, 110, 254, 247, 169, 229, 97, 19, 52, 190, 196, 59, 56, + 71, 94, 49, 214, 255, 193, 232, 200, 68, 178, 157, 157, 113, 27, 41, 86, 70, 111, 226, 162, 121, 9, 255, 216, 102, + 159, 27, 116, 49, 127, 178, 211, 235, 75, 145, 159, 27, 241, 200, 178, 14, 168, 59, 159, 45, 27, 215, 121, 204, + 247, 150, 36, 140, 143, 27, 115, 3, 170, 229, 94, 186, 183, 191, 255, 255, 159, 160, 27, 61, 247, 55, 124, 142, + 98, 127, 141, 216, 102, 159, 27, 120, 34, 64, 137, 118, 187, 32, 25, 159, 69, 66, 57, 93, 30, 71, 27, 211, 238, + 172, 107, 210, 189, 145, 130, 27, 199, 16, 186, 58, 120, 111, 191, 130, 27, 186, 248, 40, 179, 206, 113, 23, 2, + 73, 74, 238, 172, 70, 46, 225, 4, 164, 18, 255, 255, 71, 46, 136, 244, 130, 161, 73, 96, 255, 191, 27, 3, 79, 127, + 184, 15, 97, 6, 1, 74, 2, 142, 134, 199, 199, 81, 234, 107, 186, 56, 27, 52, 230, 130, 149, 255, 232, 241, 159, + 76, 92, 207, 52, 192, 243, 230, 44, 173, 96, 238, 154, 142, 27, 113, 255, 165, 116, 51, 100, 164, 188, 27, 147, + 34, 94, 12, 184, 127, 65, 138, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1485, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15084624352424661654" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ea27ef9a5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0133a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11480054461985862891" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1111f763ce0683" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88c486fa72d96da1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8802e34eda43cc1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13406194983832479649" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13944288309593528653" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f7" + }, + { + "_tag": "ByteArray", + "bytearray": "631fe7261610" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7038708046573471182" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7903886957993654524" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ebf4dc96c980fd9541" + }, + { + "_tag": "ByteArray", + "bytearray": "8648e8f4cacc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3426449570884184544" + } + }, + { + "_tag": "ByteArray", + "bytearray": "26a575a1e03662d5f3605a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7896242425981885835" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11640513612748874584" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2589217924690353592" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5250328797875391654" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12495511962865251289" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1506d4cbf83e" + }, + { + "_tag": "ByteArray", + "bytearray": "130142e42972c552760dfd" + }, + { + "_tag": "ByteArray", + "bytearray": "11ba0f455696" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0c" + } + ] + }, + "cborHex": "9fbf1bd15759ed407a9296452ea27ef9a5430133a91b9f5158b590ce34eb471111f763ce06834888c486fa72d96da148c8802e34eda43cc11bba0c5f4f08f567a1ffd8669f1bc18410566af4594d9f41f746631fe72616101b61ae83acf9b205ceffffd87a9fd8669f1b6db03f4fcc0df8fc9f49ebf4dc96c980fd9541468648e8f4cacc1b2f8d31bb095769e04b26a575a1e03662d5f3605a1b6d9516a67d04dd8bffff1ba18b6974eafee358ff9f80d8669f1b23eebffbf73e1db89f1b48dcea39675dcca61bad68f9ed193a33d9461506d4cbf83e4b130142e42972c552760dfd4611ba0f455696ffffff410cff", + "cborBytes": [ + 159, 191, 27, 209, 87, 89, 237, 64, 122, 146, 150, 69, 46, 162, 126, 249, 165, 67, 1, 51, 169, 27, 159, 81, 88, + 181, 144, 206, 52, 235, 71, 17, 17, 247, 99, 206, 6, 131, 72, 136, 196, 134, 250, 114, 217, 109, 161, 72, 200, + 128, 46, 52, 237, 164, 60, 193, 27, 186, 12, 95, 79, 8, 245, 103, 161, 255, 216, 102, 159, 27, 193, 132, 16, 86, + 106, 244, 89, 77, 159, 65, 247, 70, 99, 31, 231, 38, 22, 16, 27, 97, 174, 131, 172, 249, 178, 5, 206, 255, 255, + 216, 122, 159, 216, 102, 159, 27, 109, 176, 63, 79, 204, 13, 248, 252, 159, 73, 235, 244, 220, 150, 201, 128, 253, + 149, 65, 70, 134, 72, 232, 244, 202, 204, 27, 47, 141, 49, 187, 9, 87, 105, 224, 75, 38, 165, 117, 161, 224, 54, + 98, 213, 243, 96, 90, 27, 109, 149, 22, 166, 125, 4, 221, 139, 255, 255, 27, 161, 139, 105, 116, 234, 254, 227, + 88, 255, 159, 128, 216, 102, 159, 27, 35, 238, 191, 251, 247, 62, 29, 184, 159, 27, 72, 220, 234, 57, 103, 93, + 204, 166, 27, 173, 104, 249, 237, 25, 58, 51, 217, 70, 21, 6, 212, 203, 248, 62, 75, 19, 1, 66, 228, 41, 114, 197, + 82, 118, 13, 253, 70, 17, 186, 15, 69, 86, 150, 255, 255, 255, 65, 12, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1486, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "114823064334754020" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "2c91780373" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bcff0c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf1bf58522308c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c06801e6c74e890580ffc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "389f5b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f81bc48fe7ea89ab98f" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5224589102727679" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6595458397040859286" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4525575397999070785" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7441438206877827955" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7311689219973734606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9364661401840038135" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8510996274088709477" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15034d654d2adb05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10398473093882543761" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d9dee730f4aa9" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b0197eef7f9b1e0e49f80452c91780373bf442bcff0c447cf1bf58522308c4b6c06801e6c74e890580ffc418cffbf43389f5b4a2f81bc48fe7ea89ab98fffbf1b00128fbc7190c1ff1b5b87c677c67cd8961b3ece12d8d1fb4e411b67454c9f6af903731b6578569b489660ce1b81f5f5edca7cb0f71b761d2204a1bb0d654815034d654d2adb051b904ecc2f77537e91470d9dee730f4aa9ffffff", + "cborBytes": [ + 159, 27, 1, 151, 238, 247, 249, 177, 224, 228, 159, 128, 69, 44, 145, 120, 3, 115, 191, 68, 43, 207, 240, 196, 71, + 207, 27, 245, 133, 34, 48, 140, 75, 108, 6, 128, 30, 108, 116, 232, 144, 88, 15, 252, 65, 140, 255, 191, 67, 56, + 159, 91, 74, 47, 129, 188, 72, 254, 126, 168, 154, 185, 143, 255, 191, 27, 0, 18, 143, 188, 113, 144, 193, 255, + 27, 91, 135, 198, 119, 198, 124, 216, 150, 27, 62, 206, 18, 216, 209, 251, 78, 65, 27, 103, 69, 76, 159, 106, 249, + 3, 115, 27, 101, 120, 86, 155, 72, 150, 96, 206, 27, 129, 245, 245, 237, 202, 124, 176, 247, 27, 118, 29, 34, 4, + 161, 187, 13, 101, 72, 21, 3, 77, 101, 77, 42, 219, 5, 27, 144, 78, 204, 47, 119, 83, 126, 145, 71, 13, 157, 238, + 115, 15, 74, 169, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1487, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f8e0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14630270225127651962" + } + } + ] + }, + "cborHex": "9f8042f8e01bcb09294158b53a7aff", + "cborBytes": [159, 128, 66, 248, 224, 27, 203, 9, 41, 65, 88, 181, 58, 122, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1488, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "14c18b9a169bf3c0ef99" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8de32d3faa02be032bf8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ea15ef80e15" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94ac425732634269b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0aabac8d907a8777c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a354d39665eb5914e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6987206325590141319" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "23195270192397332" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3226080633387692352" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17523336457918806898" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2605283504927618888" + } + } + } + ] + } + ] + }, + "cborHex": "9f4a14c18b9a169bf3c0ef99bf4a8de32d3faa02be032bf8466ea15ef80e154994ac425732634269b5490aabac8d907a8777c049a354d39665eb5914e51b60f78b222129a987ffbf1b005267f9b0497c141b2cc5573e59d731401bf32f65aa75e6fb721b2427d38b5a653748ffff", + "cborBytes": [ + 159, 74, 20, 193, 139, 154, 22, 155, 243, 192, 239, 153, 191, 74, 141, 227, 45, 63, 170, 2, 190, 3, 43, 248, 70, + 110, 161, 94, 248, 14, 21, 73, 148, 172, 66, 87, 50, 99, 66, 105, 181, 73, 10, 171, 172, 141, 144, 122, 135, 119, + 192, 73, 163, 84, 211, 150, 101, 235, 89, 20, 229, 27, 96, 247, 139, 34, 33, 41, 169, 135, 255, 191, 27, 0, 82, + 103, 249, 176, 73, 124, 20, 27, 44, 197, 87, 62, 89, 215, 49, 64, 27, 243, 47, 101, 170, 117, 230, 251, 114, 27, + 36, 39, 211, 139, 90, 101, 55, 72, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1489, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "113a6d669361" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef83626f67f64509" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "12911bc2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11195267839230478580" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2743a679" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12774744123177863852" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60d41703f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13082409837620099839" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73180f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14216492205458125797" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81478fa573a0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea147d4baf4050aaed16" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15355462811485721622" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "35f4" + } + ] + }, + "cborHex": "9fbf46113a6d66936148ef83626f67f645094412911bc21b9b5d94c8e2b008f4442743a6791bb1490218b6868aac4560d41703f91bb58e0e6f096bfaff4373180f1bc54b2056b270f3e54681478fa573a04aea147d4baf4050aaed16ffd8669f1bd51990120053d41680ff4235f4ff", + "cborBytes": [ + 159, 191, 70, 17, 58, 109, 102, 147, 97, 72, 239, 131, 98, 111, 103, 246, 69, 9, 68, 18, 145, 27, 194, 27, 155, + 93, 148, 200, 226, 176, 8, 244, 68, 39, 67, 166, 121, 27, 177, 73, 2, 24, 182, 134, 138, 172, 69, 96, 212, 23, 3, + 249, 27, 181, 142, 14, 111, 9, 107, 250, 255, 67, 115, 24, 15, 27, 197, 75, 32, 86, 178, 112, 243, 229, 70, 129, + 71, 143, 165, 115, 160, 74, 234, 20, 125, 75, 175, 64, 80, 170, 237, 22, 255, 216, 102, 159, 27, 213, 25, 144, 18, + 0, 83, 212, 22, 128, 255, 66, 53, 244, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1490, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11870777458346493754" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ee6e25c40bfcbfb36fb52" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17419443686538918429" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "057f83" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10856362459164072115" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11782282896334726756" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "96e0298e" + } + ] + } + ] + }, + "cborHex": "9fbf1ba4bd79344c75073a4b2ee6e25c40bfcbfb36fb521bf1be4bbda112ba1d43057f83ffd8669f1b96a98c231b5c58b39f80d8669f1ba38313de7731266480ff4496e0298effffff", + "cborBytes": [ + 159, 191, 27, 164, 189, 121, 52, 76, 117, 7, 58, 75, 46, 230, 226, 92, 64, 191, 203, 251, 54, 251, 82, 27, 241, + 190, 75, 189, 161, 18, 186, 29, 67, 5, 127, 131, 255, 216, 102, 159, 27, 150, 169, 140, 35, 27, 92, 88, 179, 159, + 128, 216, 102, 159, 27, 163, 131, 19, 222, 119, 49, 38, 100, 128, 255, 68, 150, 224, 41, 142, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1491, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12344222468237592830" + } + } + ] + }, + "cborHex": "9f1bab4f7ceeafb288feff", + "cborBytes": [159, 27, 171, 79, 124, 238, 175, 178, 136, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1492, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [] + } + ] + }, + "cborHex": "9f80d8669f1bfffffffffffffffa80ffff", + "cborBytes": [159, 128, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1493, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7973830360144490522" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13269810515160550086" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9d4e0774ca36882fa79457" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d4213548fb53acd9b75503b1" + }, + { + "_tag": "ByteArray", + "bytearray": "3a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7887049993276663286" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "12b3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8937578472120611776" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9908520369930239368" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13117957618106727654" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "929324202754938799" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15344882939599441487" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "563dc7f932" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6504583994997138119" + } + }, + { + "_tag": "ByteArray", + "bytearray": "43af84d06146de58a9584885" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6311733374494876550" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12035609001681749881" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05" + }, + { + "_tag": "ByteArray", + "bytearray": "aa12734e8126" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13768679631642055493" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b7f7738c3a" + }, + { + "_tag": "ByteArray", + "bytearray": "d9a9d565" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4509568655083531571" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "389d5da8f768" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2214190015222661705" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16972246542631410070" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2839080749409272318" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "87c0b83d41" + }, + { + "_tag": "ByteArray", + "bytearray": "107c4871b923" + }, + { + "_tag": "ByteArray", + "bytearray": "f95783fbcbf3078a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6050355387077819405" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b6ea8bc7723a3301ad8669f1bb827d65b68e34ac69f4b9d4e0774ca36882fa794579f4cd4213548fb53acd9b75503b1413affd8669f1b6d746e2e7700a5f69f4212b31b7c08a8445eed73c01b898222c76369fd881bb60c58f3a5e17ce61b0ce59f704a6197afffffd8669f1bd4f3f9bb9ec6ce4f9f45563dc7f9321b5a44ecae417ee2c74c43af84d06146de58a95848851b5797c81027bea3861ba707129ea0bc0779ffff9f410546aa12734e81261bbf142d2ce62e534545b7f7738c3a44d9a9d565ffffffd8669f1b3e9534cc907d6d339f9f46389d5da8f7681b1eba62166a9042491beb89884ec5e599961b276670e6453081feff9f4587c0b83d4146107c4871b92348f95783fbcbf3078a1b53f72e2b1ba4fc0dffffffff", + "cborBytes": [ + 159, 27, 110, 168, 188, 119, 35, 163, 48, 26, 216, 102, 159, 27, 184, 39, 214, 91, 104, 227, 74, 198, 159, 75, + 157, 78, 7, 116, 202, 54, 136, 47, 167, 148, 87, 159, 76, 212, 33, 53, 72, 251, 83, 172, 217, 183, 85, 3, 177, 65, + 58, 255, 216, 102, 159, 27, 109, 116, 110, 46, 119, 0, 165, 246, 159, 66, 18, 179, 27, 124, 8, 168, 68, 94, 237, + 115, 192, 27, 137, 130, 34, 199, 99, 105, 253, 136, 27, 182, 12, 88, 243, 165, 225, 124, 230, 27, 12, 229, 159, + 112, 74, 97, 151, 175, 255, 255, 216, 102, 159, 27, 212, 243, 249, 187, 158, 198, 206, 79, 159, 69, 86, 61, 199, + 249, 50, 27, 90, 68, 236, 174, 65, 126, 226, 199, 76, 67, 175, 132, 208, 97, 70, 222, 88, 169, 88, 72, 133, 27, + 87, 151, 200, 16, 39, 190, 163, 134, 27, 167, 7, 18, 158, 160, 188, 7, 121, 255, 255, 159, 65, 5, 70, 170, 18, + 115, 78, 129, 38, 27, 191, 20, 45, 44, 230, 46, 83, 69, 69, 183, 247, 115, 140, 58, 68, 217, 169, 213, 101, 255, + 255, 255, 216, 102, 159, 27, 62, 149, 52, 204, 144, 125, 109, 51, 159, 159, 70, 56, 157, 93, 168, 247, 104, 27, + 30, 186, 98, 22, 106, 144, 66, 73, 27, 235, 137, 136, 78, 197, 229, 153, 150, 27, 39, 102, 112, 230, 69, 48, 129, + 254, 255, 159, 69, 135, 192, 184, 61, 65, 70, 16, 124, 72, 113, 185, 35, 72, 249, 87, 131, 251, 203, 243, 7, 138, + 27, 83, 247, 46, 43, 27, 164, 252, 13, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1494, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8703775693282387558" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2456589649159366217" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1360338875120850950" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1584889405945608818" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b78ca05e0e2c6a6669f1b22178f45350ba649d8669f1b12e0e4ffe1bb98069f1b15fea88481aafa72ffffffff", + "cborBytes": [ + 159, 27, 120, 202, 5, 224, 226, 198, 166, 102, 159, 27, 34, 23, 143, 69, 53, 11, 166, 73, 216, 102, 159, 27, 18, + 224, 228, 255, 225, 187, 152, 6, 159, 27, 21, 254, 168, 132, 129, 170, 250, 114, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1495, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0aa049b71d35b5fed05d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5372550189306284065" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adca7d74a6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d30740ed8f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7298764267168133549" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8005602810701254173" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14005030766157717191" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8384342548017559376" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1172747464987169141" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "758608373568763699" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ef264725c247dbc4a5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3682687451041245248" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15838381072276324635" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb55598a52ae41" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15336668197154196186" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14730845237439184920" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17865758368527276131" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "36" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5674803426281987939" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abce291e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7968894864423922989" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "133173564144777054" + } + } + ] + }, + "cborHex": "9fbf4a0aa049b71d35b5fed05d1b4a8f21eea38f082145adca7d74a6460d30740ed8f741ff1b654a6b6e33def1adff9fd8669f1b6f199d5740b78e1d9f1bc25bdd47ad3f5ec71b745b2b2011c7b7501b10466f9b1dccd175ffffd8669f1b0a871e4be633f7339f49ef264725c247dbc4a51b331b88b99a1a2840ffff9f1bdbcd3bab7e4d011b47cb55598a52ae411bd4d6ca77d9680ada1bcc6e79b232d140181bf7efec944f07d863ff4136bf412e1b4ec0f3a659b51f6344abce291e1b6e9733a87e6c2d2dffff1b01d920a6a852775eff", + "cborBytes": [ + 159, 191, 74, 10, 160, 73, 183, 29, 53, 181, 254, 208, 93, 27, 74, 143, 33, 238, 163, 143, 8, 33, 69, 173, 202, + 125, 116, 166, 70, 13, 48, 116, 14, 216, 247, 65, 255, 27, 101, 74, 107, 110, 51, 222, 241, 173, 255, 159, 216, + 102, 159, 27, 111, 25, 157, 87, 64, 183, 142, 29, 159, 27, 194, 91, 221, 71, 173, 63, 94, 199, 27, 116, 91, 43, + 32, 17, 199, 183, 80, 27, 16, 70, 111, 155, 29, 204, 209, 117, 255, 255, 216, 102, 159, 27, 10, 135, 30, 75, 230, + 51, 247, 51, 159, 73, 239, 38, 71, 37, 194, 71, 219, 196, 165, 27, 51, 27, 136, 185, 154, 26, 40, 64, 255, 255, + 159, 27, 219, 205, 59, 171, 126, 77, 1, 27, 71, 203, 85, 89, 138, 82, 174, 65, 27, 212, 214, 202, 119, 217, 104, + 10, 218, 27, 204, 110, 121, 178, 50, 209, 64, 24, 27, 247, 239, 236, 148, 79, 7, 216, 99, 255, 65, 54, 191, 65, + 46, 27, 78, 192, 243, 166, 89, 181, 31, 99, 68, 171, 206, 41, 30, 27, 110, 151, 51, 168, 126, 108, 45, 45, 255, + 255, 27, 1, 217, 32, 166, 168, 82, 119, 94, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1496, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18011120624591618699" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9279021051182657910" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e7dd11efd1007f61f" + }, + { + "_tag": "ByteArray", + "bytearray": "52eace3793617d641e0f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "51b4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9664857855052313061" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3aa2544162" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11647584602136798274" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15578232601118633757" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf9f45ac7f37ec28b80ffd8669f1b80c5b47bd31d31769f9f498e7dd11efd1007f61f4a52eace3793617d641e0fff4251b4bf1b86207903370971e5453aa25441621ba1a4887bedac64421bd83100038215ef1dffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 249, 244, 90, 199, 243, 126, 194, 139, 128, 255, 216, 102, 159, 27, 128, 197, 180, 123, + 211, 29, 49, 118, 159, 159, 73, 142, 125, 209, 30, 253, 16, 7, 246, 31, 74, 82, 234, 206, 55, 147, 97, 125, 100, + 30, 15, 255, 66, 81, 180, 191, 27, 134, 32, 121, 3, 55, 9, 113, 229, 69, 58, 162, 84, 65, 98, 27, 161, 164, 136, + 123, 237, 172, 100, 66, 27, 216, 49, 0, 3, 130, 21, 239, 29, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1497, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b5628366f9fd0e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8968411377166749243" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7583572092320572132" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a19e6d254d3bce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4453301886046208336" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6a1f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c2416e145afba9f" + } + } + ] + } + ] + }, + "cborHex": "9fbf486b5628366f9fd0e21b7c7632a17f988e3b41751b693e42a3735562e447a19e6d254d3bce1b3dcd4e78835c815043f6a1f8484c2416e145afba9fffff", + "cborBytes": [ + 159, 191, 72, 107, 86, 40, 54, 111, 159, 208, 226, 27, 124, 118, 50, 161, 127, 152, 142, 59, 65, 117, 27, 105, 62, + 66, 163, 115, 85, 98, 228, 71, 161, 158, 109, 37, 77, 59, 206, 27, 61, 205, 78, 120, 131, 92, 129, 80, 67, 246, + 161, 248, 72, 76, 36, 22, 225, 69, 175, 186, 159, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1498, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0608487561" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8305105475699579991" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4ada2996ed339da0b2a408ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15777455559651048160" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b1e446b6467ea012c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5905471357389963423" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5552444445291730003" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "81ebe0c36a63" + }, + { + "_tag": "ByteArray", + "bytearray": "d140c9508163e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17841233748825799726" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff780ffd8669f1bfffffffffffffffc80ffd905069f9f450608487561ffd8669f1b7341a96d85399c579f4c4ada2996ed339da0b2a408ca1bdaf4c83d2c833ae049b1e446b6467ea012c71b51f472e93879009fffffd8669f1b4d0e3ece0cb454539f4681ebe0c36a6347d140c9508163e31bf798cb915178fc2effffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 128, 255, 216, 102, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 252, 128, 255, 217, 5, 6, 159, 159, 69, 6, 8, 72, 117, 97, 255, 216, 102, 159, 27, 115, 65, 169, + 109, 133, 57, 156, 87, 159, 76, 74, 218, 41, 150, 237, 51, 157, 160, 178, 164, 8, 202, 27, 218, 244, 200, 61, 44, + 131, 58, 224, 73, 177, 228, 70, 182, 70, 126, 160, 18, 199, 27, 81, 244, 114, 233, 56, 121, 0, 159, 255, 255, 216, + 102, 159, 27, 77, 14, 62, 206, 12, 180, 84, 83, 159, 70, 129, 235, 224, 195, 106, 99, 71, 209, 64, 201, 80, 129, + 99, 227, 27, 247, 152, 203, 145, 81, 120, 252, 46, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1499, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10117406848270927090" + } + } + ] + }, + "cborHex": "9f0a1b8c683fec974b04f2ff", + "cborBytes": [159, 10, 27, 140, 104, 63, 236, 151, 75, 4, 242, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1500, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8653265774952504001" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2186397461201481572" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14672109725245392044" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abd0293a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9536f7fe8ae7a0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29d5b088e3a6a72e58" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b781693601716dac11b1e57a4e82cbaef641bcb9dce0f16ce44ac44abd0293a479536f7fe8ae7a04929d5b088e3a6a72e58ff9fbf1103ffffff", + "cborBytes": [ + 159, 191, 27, 120, 22, 147, 96, 23, 22, 218, 193, 27, 30, 87, 164, 232, 44, 186, 239, 100, 27, 203, 157, 206, 15, + 22, 206, 68, 172, 68, 171, 208, 41, 58, 71, 149, 54, 247, 254, 138, 231, 160, 73, 41, 213, 176, 136, 227, 166, + 167, 46, 88, 255, 159, 191, 17, 3, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1501, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "79" + } + ] + }, + "cborHex": "9f4179ff", + "cborBytes": [159, 65, 121, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1502, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6368609018808499882" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2797117193150968695" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7228682432517494137" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "52fe3499dfcf971fdda42d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "707949028169232757" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e743f7096689" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13133291189659459716" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6355214565234463" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10035063770931982376" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a89847e647" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e34f67c76d262c4c712" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14313558869548074222" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8d61eaa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16709157711715472879" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15950835634837365640" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5482663340928129067" + } + } + ] + } + ] + }, + "cborHex": "9f1b5861d829076dfeaa1b26d15b4474e6b3770c9fd8669f1b6451705f884fd5799f4b52fe3499dfcf971fdda42dffffd8669f1b09d323e3e71c31759f46e743f70966891bb642d2c0fb6b60841b00169408b2a1d71f1b8b43b554e4caf02845a89847e647ffffbf4a0e34f67c76d262c4c7121bc6a3f9f4930e04ee44f8d61eaa1be7e2da68eec795efff1bdd5cc07fad1fa3881b4c1655429b13d82bffff", + "cborBytes": [ + 159, 27, 88, 97, 216, 41, 7, 109, 254, 170, 27, 38, 209, 91, 68, 116, 230, 179, 119, 12, 159, 216, 102, 159, 27, + 100, 81, 112, 95, 136, 79, 213, 121, 159, 75, 82, 254, 52, 153, 223, 207, 151, 31, 221, 164, 45, 255, 255, 216, + 102, 159, 27, 9, 211, 35, 227, 231, 28, 49, 117, 159, 70, 231, 67, 247, 9, 102, 137, 27, 182, 66, 210, 192, 251, + 107, 96, 132, 27, 0, 22, 148, 8, 178, 161, 215, 31, 27, 139, 67, 181, 84, 228, 202, 240, 40, 69, 168, 152, 71, + 230, 71, 255, 255, 191, 74, 14, 52, 246, 124, 118, 210, 98, 196, 199, 18, 27, 198, 163, 249, 244, 147, 14, 4, 238, + 68, 248, 214, 30, 170, 27, 231, 226, 218, 104, 238, 199, 149, 239, 255, 27, 221, 92, 192, 127, 173, 31, 163, 136, + 27, 76, 22, 85, 66, 155, 19, 216, 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1503, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15080253006508248259" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10463034802504631812" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15495512839180640837" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "489459140543575920" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14131594980461750216" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7217122407006031015" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18439748853654365859" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5093215057377199834" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "739b70630fc0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16013218252846167869" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1bd147d235f7f0ccc31b91342ab7a3d68604ff9f1bd70b1ed417dde2451b06cae87ebc2af7701bc41d82c3281da7c81b64285e975a1b4ca71bffe725e2697c26a3ffd8669f1b46aebc1c13a386da9f46739b70630fc01bde3a6128c7b2773dffffffff", + "cborBytes": [ + 159, 159, 191, 27, 209, 71, 210, 53, 247, 240, 204, 195, 27, 145, 52, 42, 183, 163, 214, 134, 4, 255, 159, 27, + 215, 11, 30, 212, 23, 221, 226, 69, 27, 6, 202, 232, 126, 188, 42, 247, 112, 27, 196, 29, 130, 195, 40, 29, 167, + 200, 27, 100, 40, 94, 151, 90, 27, 76, 167, 27, 255, 231, 37, 226, 105, 124, 38, 163, 255, 216, 102, 159, 27, 70, + 174, 188, 28, 19, 163, 134, 218, 159, 70, 115, 155, 112, 99, 15, 192, 27, 222, 58, 97, 40, 199, 178, 119, 61, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1504, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17067790516454179643" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00bc4b6b4d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10961794278417121893" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b6480145338080dc93f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2184655861145977022" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1093572999692806295" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16838592501688585651" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3458917055289529374" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18267239551436919756" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2435308211569103113" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8bbe26a0d01e" + } + ] + }, + "cborHex": "9f0212d8669f1bfffffffffffffffd9fd8669f1becdcf90bb208433b9f4500bc4b6b4d1b98201dd171f642654a5b6480145338080dc93f1b1e5174ee5014c0be1b0f2d26d966a5e897ffff1be9aeb2aa64b44db31b30008abc5412941e1bfd8245968a5d13ccffff1b21cbf3ea652b1109468bbe26a0d01eff", + "cborBytes": [ + 159, 2, 18, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 216, 102, 159, 27, 236, 220, 249, 11, + 178, 8, 67, 59, 159, 69, 0, 188, 75, 107, 77, 27, 152, 32, 29, 209, 113, 246, 66, 101, 74, 91, 100, 128, 20, 83, + 56, 8, 13, 201, 63, 27, 30, 81, 116, 238, 80, 20, 192, 190, 27, 15, 45, 38, 217, 102, 165, 232, 151, 255, 255, 27, + 233, 174, 178, 170, 100, 180, 77, 179, 27, 48, 0, 138, 188, 84, 18, 148, 30, 27, 253, 130, 69, 150, 138, 93, 19, + 204, 255, 255, 27, 33, 203, 243, 234, 101, 43, 17, 9, 70, 139, 190, 38, 160, 208, 30, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1505, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10381182354917510646" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17898350328271962373" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4437270422f2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12534558388581820752" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9703985757243816580" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f87207973b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10538501629605609552" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d806642a9bf781a51a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18396081616414618826" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16436702466590647296" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "617286383645339695" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16145607018481520144" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2363645642330850846" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01fe69002edb0cffec96" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13767267111656532572" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b3" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9646730655992230631" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "785439151619298975" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7698014144768148506" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8230098889733420713" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10881073555268939829" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9923604941824179678" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18190656357712213212" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15140881409741401809" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c28e73056dab9bc5b210" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17955634171865365242" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "224341177bb00ffd92224482" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2006494204569399499" + } + } + ] + }, + "cborHex": "9f9fd8669f1b90115e5995694df69f1bf863b6cb46258105464437270422f21badf3b27187cfe950ffffa0bf1b86ab7ba1ddf7ba8445f87207973b1b924047659184805049d806642a9bf781a51a1bff4c02c3757cb4ca1be41ae5ced7ec2400ff1b08910ab205ddb02f1be010b80a4ba50e10ff9f1b20cd5b304607c61e4a01fe69002edb0cffec969f1bbf0f287ef634aa5c41b3ffd8669f1b85e0126bca49b2e780ffbf1b0ae670bf38f3d69f1b6ad4d7142ed6841a1b72372f55d4e5b6a91b970156bf84b3b0351b89b7ba1df8bdbdde1bfc72319440a334dc1bd21f376c1df3aed14ac28e73056dab9bc5b2101bf92f3a2572e67afa4c224341177bb00ffd92224482ffff1b1bd87fd9233d30cbff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 144, 17, 94, 89, 149, 105, 77, 246, 159, 27, 248, 99, 182, 203, 70, 37, 129, 5, 70, + 68, 55, 39, 4, 34, 242, 27, 173, 243, 178, 113, 135, 207, 233, 80, 255, 255, 160, 191, 27, 134, 171, 123, 161, + 221, 247, 186, 132, 69, 248, 114, 7, 151, 59, 27, 146, 64, 71, 101, 145, 132, 128, 80, 73, 216, 6, 100, 42, 155, + 247, 129, 165, 26, 27, 255, 76, 2, 195, 117, 124, 180, 202, 27, 228, 26, 229, 206, 215, 236, 36, 0, 255, 27, 8, + 145, 10, 178, 5, 221, 176, 47, 27, 224, 16, 184, 10, 75, 165, 14, 16, 255, 159, 27, 32, 205, 91, 48, 70, 7, 198, + 30, 74, 1, 254, 105, 0, 46, 219, 12, 255, 236, 150, 159, 27, 191, 15, 40, 126, 246, 52, 170, 92, 65, 179, 255, + 216, 102, 159, 27, 133, 224, 18, 107, 202, 73, 178, 231, 128, 255, 191, 27, 10, 230, 112, 191, 56, 243, 214, 159, + 27, 106, 212, 215, 20, 46, 214, 132, 26, 27, 114, 55, 47, 85, 212, 229, 182, 169, 27, 151, 1, 86, 191, 132, 179, + 176, 53, 27, 137, 183, 186, 29, 248, 189, 189, 222, 27, 252, 114, 49, 148, 64, 163, 52, 220, 27, 210, 31, 55, 108, + 29, 243, 174, 209, 74, 194, 142, 115, 5, 109, 171, 155, 197, 178, 16, 27, 249, 47, 58, 37, 114, 230, 122, 250, 76, + 34, 67, 65, 23, 123, 176, 15, 253, 146, 34, 68, 130, 255, 255, 27, 27, 216, 127, 217, 35, 61, 48, 203, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1506, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11353347411175579232" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d5feed75989a13d2faa68aff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1056686781980657850" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8c021b5dc9d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8621162287748903995" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12882062467946097282" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1317610123880370204" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "120a3a0ec744" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd2d18" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "614e51607ef8098e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1112634022478449231" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63d2de5f684700b68d25" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10342128117014145967" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ac0a747" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d42de5b414c97cd9a78c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa45a7b3a2338ee4e4f285" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bee298e70a803a8bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee7d720ba1e999a814a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d57e433ba2e7066239e7" + } + } + ] + } + ] + }, + "cborHex": "9f9f1b9d8f31515eb89e609f4cd5feed75989a13d2faa68aff1b0eaa1b0796cec8ba46c8c021b5dc9d1b77a4856c8044743b1bb2c647900051aa82ffff1b1249176d3a59101cbf46120a3a0ec74443bd2d1848614e51607ef8098e1b0f70debf9ad78a4f4a63d2de5f684700b68d251b8f869eba3c352baf446ac0a7474ad42de5b414c97cd9a78c4baa45a7b3a2338ee4e4f285493bee298e70a803a8bb4aee7d720ba1e999a814a44ad57e433ba2e7066239e7ffff", + "cborBytes": [ + 159, 159, 27, 157, 143, 49, 81, 94, 184, 158, 96, 159, 76, 213, 254, 237, 117, 152, 154, 19, 210, 250, 166, 138, + 255, 27, 14, 170, 27, 7, 150, 206, 200, 186, 70, 200, 192, 33, 181, 220, 157, 27, 119, 164, 133, 108, 128, 68, + 116, 59, 27, 178, 198, 71, 144, 0, 81, 170, 130, 255, 255, 27, 18, 73, 23, 109, 58, 89, 16, 28, 191, 70, 18, 10, + 58, 14, 199, 68, 67, 189, 45, 24, 72, 97, 78, 81, 96, 126, 248, 9, 142, 27, 15, 112, 222, 191, 154, 215, 138, 79, + 74, 99, 210, 222, 95, 104, 71, 0, 182, 141, 37, 27, 143, 134, 158, 186, 60, 53, 43, 175, 68, 106, 192, 167, 71, + 74, 212, 45, 229, 180, 20, 201, 124, 217, 167, 140, 75, 170, 69, 167, 179, 162, 51, 142, 228, 228, 242, 133, 73, + 59, 238, 41, 142, 112, 168, 3, 168, 187, 74, 238, 125, 114, 11, 161, 233, 153, 168, 20, 164, 74, 213, 126, 67, 59, + 162, 231, 6, 98, 57, 231, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1507, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4500213317854182099" + } + } + ] + }, + "cborHex": "9f1b3e73f82b602e3ad3ff", + "cborBytes": [159, 27, 62, 115, 248, 43, 96, 46, 58, 211, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1508, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d0f94f52704276a9c8cbe6ae" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1855979001265435085" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d1ca767" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10190772115674125184" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6081009478880413383" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13703644875912953043" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f4cd0f94f52704276a9c8cbe6aebf1b19c1c3117902b1cd449d1ca7671b8d6ce53f05b653801b546415e7087346c71bbe2d2068dce4bcd341cfffffff", + "cborBytes": [ + 159, 159, 76, 208, 249, 79, 82, 112, 66, 118, 169, 200, 203, 230, 174, 191, 27, 25, 193, 195, 17, 121, 2, 177, + 205, 68, 157, 28, 167, 103, 27, 141, 108, 229, 63, 5, 182, 83, 128, 27, 84, 100, 21, 231, 8, 115, 70, 199, 27, + 190, 45, 32, 104, 220, 228, 188, 211, 65, 207, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1509, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2387457290291659977" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1133" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3806829243678954539" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4914576619647681109" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4748379184714578458" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5753885450688059997" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2242624280089129736" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5967" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03d3b6bf860f029ea0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "903277727973276581" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "13464780b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0613608a44ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bad1c84e1871c691a47e58" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb5c4d9e176e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4979722459524990542" + } + } + ] + }, + "cborHex": "9f9fbf1b2121f3c1984044c94211331b34d49307160d942b1b44341565a38a42551b41e5a1b5e3c57a1a1b4fd9e854fe8cda5dffd8669f1b1f1f66e69b60f30880ffff425967bf4903d3b6bf860f029ea01b0c89164ecd5e7ba54513464780b0460613608a44ae4bbad1c84e1871c691a47e5846cb5c4d9e176eff1b451b87317805864eff", + "cborBytes": [ + 159, 159, 191, 27, 33, 33, 243, 193, 152, 64, 68, 201, 66, 17, 51, 27, 52, 212, 147, 7, 22, 13, 148, 43, 27, 68, + 52, 21, 101, 163, 138, 66, 85, 27, 65, 229, 161, 181, 227, 197, 122, 26, 27, 79, 217, 232, 84, 254, 140, 218, 93, + 255, 216, 102, 159, 27, 31, 31, 102, 230, 155, 96, 243, 8, 128, 255, 255, 66, 89, 103, 191, 73, 3, 211, 182, 191, + 134, 15, 2, 158, 160, 27, 12, 137, 22, 78, 205, 94, 123, 165, 69, 19, 70, 71, 128, 176, 70, 6, 19, 96, 138, 68, + 174, 75, 186, 209, 200, 78, 24, 113, 198, 145, 164, 126, 88, 70, 203, 92, 77, 158, 23, 110, 255, 27, 69, 27, 135, + 49, 120, 5, 134, 78, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1510, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8ab937be9b2dee46d9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16603569010896108490" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11357957245960173788" + } + }, + { + "_tag": "ByteArray", + "bytearray": "224719" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "995121779157423394" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8859b5aa7515d8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7951698681168408205" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7406537112626440736" + } + } + ] + }, + "cborHex": "9f498ab937be9b2dee46d99fd905069f1be66bba0bc2257bca1b9d9f91f02b87b8dc432247191b0dcf61fc5aeed522478859b5aa7515d8ff1b6e5a1bd213fc2e8dff1b66c94e432dd8aa20ff", + "cborBytes": [ + 159, 73, 138, 185, 55, 190, 155, 45, 238, 70, 217, 159, 217, 5, 6, 159, 27, 230, 107, 186, 11, 194, 37, 123, 202, + 27, 157, 159, 145, 240, 43, 135, 184, 220, 67, 34, 71, 25, 27, 13, 207, 97, 252, 90, 238, 213, 34, 71, 136, 89, + 181, 170, 117, 21, 216, 255, 27, 110, 90, 27, 210, 19, 252, 46, 141, 255, 27, 102, 201, 78, 67, 45, 216, 170, 32, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1511, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4868872202979501192" + } + } + ] + }, + "cborHex": "9f1b4391b578e35de488ff", + "cborBytes": [159, 27, 67, 145, 181, 120, 227, 93, 228, 136, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1512, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c63be9a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84d5f1f9daccf5" + } + } + ] + } + ] + }, + "cborHex": "9fbf444c63be9a4784d5f1f9daccf5ffff", + "cborBytes": [159, 191, 68, 76, 99, 190, 154, 71, 132, 213, 241, 249, 218, 204, 245, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1513, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2388945173579453998" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4380962527006429409" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "866fb451dc6fc4bd1a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14266083417270934802" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2fe90fd" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b21273cfa6b16562e9fa0bf1b3ccc4e34fc8410e149866fb451dc6fc4bd1a1bc5fb4f4876865d1244e2fe90fdffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 33, 39, 60, 250, 107, 22, 86, 46, 159, 160, 191, 27, 60, 204, 78, 52, 252, 132, 16, 225, + 73, 134, 111, 180, 81, 220, 111, 196, 189, 26, 27, 197, 251, 79, 72, 118, 134, 93, 18, 68, 226, 254, 144, 253, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1514, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12936351832731278421" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18113036435111781943" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "56240768cb3a48f9" + }, + { + "_tag": "ByteArray", + "bytearray": "ec672d968774" + }, + { + "_tag": "ByteArray", + "bytearray": "87" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13579548317087700754" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "525256978316152250" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16923922522790229593" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1590703747376286817" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12289342358846112198" + } + } + ] + } + ] + }, + "cborHex": "9f1bb3872773bf6bdc559f1bfb5e6eabb68ba6379f4856240768cb3a48f946ec672d96877441871bbc743f3f32441712ffbf1b074a167058544dba1beaddd9de2124f659ffffd8669f1b161350a15d3f0c619f1baa8c83c37e2f01c6ffffff", + "cborBytes": [ + 159, 27, 179, 135, 39, 115, 191, 107, 220, 85, 159, 27, 251, 94, 110, 171, 182, 139, 166, 55, 159, 72, 86, 36, 7, + 104, 203, 58, 72, 249, 70, 236, 103, 45, 150, 135, 116, 65, 135, 27, 188, 116, 63, 63, 50, 68, 23, 18, 255, 191, + 27, 7, 74, 22, 112, 88, 84, 77, 186, 27, 234, 221, 217, 222, 33, 36, 246, 89, 255, 255, 216, 102, 159, 27, 22, 19, + 80, 161, 93, 63, 12, 97, 159, 27, 170, 140, 131, 195, 126, 47, 1, 198, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1515, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2774b2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd35d7eca114" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36e4139daf4c3a2cefe6209b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5933332388800704225" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df5525c14a7fb87269" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cba70db6e8ceaf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd51c059ae578f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7688012273054023452" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee2501703ce72d13428c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5781442939460397838" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + "cborHex": "9fbf432774b246dd35d7eca1144c36e4139daf4c3a2cefe6209b1b52576e5f18c92ee14261c449df5525c14a7fb8726941c747cba70db6e8ceaf47cd51c059ae578f1b6ab14e6df43a7f1c4aee2501703ce72d13428c1b503bcfb8d7ba2b0eff0aff", + "cborBytes": [ + 159, 191, 67, 39, 116, 178, 70, 221, 53, 215, 236, 161, 20, 76, 54, 228, 19, 157, 175, 76, 58, 44, 239, 230, 32, + 155, 27, 82, 87, 110, 95, 24, 201, 46, 225, 66, 97, 196, 73, 223, 85, 37, 193, 74, 127, 184, 114, 105, 65, 199, + 71, 203, 167, 13, 182, 232, 206, 175, 71, 205, 81, 192, 89, 174, 87, 143, 27, 106, 177, 78, 109, 244, 58, 127, 28, + 74, 238, 37, 1, 112, 60, 231, 45, 19, 66, 140, 27, 80, 59, 207, 184, 215, 186, 43, 14, 255, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1516, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6794641272183989715" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11320954740341843208" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15587100787507427995" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8f0e12ee29f104045414cccb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16190326997288806888" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4321254774914634127" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6146273024830155219" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16709883549724041808" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3419016997661898901" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2981312799021057980" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8120467066063839806" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2995672189939913862" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65b6807f7e0b0d3fe9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16232495561361609939" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5035945887291973658" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4dfe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + ] + }, + "cborHex": "9f9f9f1b5e4b6a3cccbc25d3ffd8669f1b9d1c1c5af859a5089f1bd85081950d977a9bffff4c8f0e12ee29f104045414cccb1be0af989fbed0e9e81b3bf82e52a2bf518fffd8669f1b554bf2c0719129d39f1be7e56e8e4371e2501b2f72c9d83aa8f895bf1b295fc031edf9c7bc1b70b1b1c5c2fe623e1b2992c3fc28e294864965b6807f7e0b0d3fe91be14568b5a91054d31b45e3461a5820a01affffff424dfe1bfffffffffffffff2ff", + "cborBytes": [ + 159, 159, 159, 27, 94, 75, 106, 60, 204, 188, 37, 211, 255, 216, 102, 159, 27, 157, 28, 28, 90, 248, 89, 165, 8, + 159, 27, 216, 80, 129, 149, 13, 151, 122, 155, 255, 255, 76, 143, 14, 18, 238, 41, 241, 4, 4, 84, 20, 204, 203, + 27, 224, 175, 152, 159, 190, 208, 233, 232, 27, 59, 248, 46, 82, 162, 191, 81, 143, 255, 216, 102, 159, 27, 85, + 75, 242, 192, 113, 145, 41, 211, 159, 27, 231, 229, 110, 142, 67, 113, 226, 80, 27, 47, 114, 201, 216, 58, 168, + 248, 149, 191, 27, 41, 95, 192, 49, 237, 249, 199, 188, 27, 112, 177, 177, 197, 194, 254, 98, 62, 27, 41, 146, + 195, 252, 40, 226, 148, 134, 73, 101, 182, 128, 127, 126, 11, 13, 63, 233, 27, 225, 69, 104, 181, 169, 16, 84, + 211, 27, 69, 227, 70, 26, 88, 32, 160, 26, 255, 255, 255, 66, 77, 254, 27, 255, 255, 255, 255, 255, 255, 255, 242, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1517, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "089c79fef7628e984c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2736660531171102371" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1b808fa41009fe36fa90" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1094594748866543266" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2de24fc5e18980" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1908838993952452743" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4083217208875397003" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1965232305616541025" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7650039687244355808" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fb125b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10240287610974604102" + } + } + } + ] + } + ] + }, + "cborHex": "9f49089c79fef7628e984c9f1b25fa9240ef490ea34a1b808fa41009fe36fa90bf1b0f30c81feb32bea2472de24fc5e189801b1a7d8ef397f3308741041b38aa806aebc7af8b1b1b45e85ea5655561ff1b6a2a66905bd718e0ffbf446fb125b31b8e1ccf53a9f98b46ffff", + "cborBytes": [ + 159, 73, 8, 156, 121, 254, 247, 98, 142, 152, 76, 159, 27, 37, 250, 146, 64, 239, 73, 14, 163, 74, 27, 128, 143, + 164, 16, 9, 254, 54, 250, 144, 191, 27, 15, 48, 200, 31, 235, 50, 190, 162, 71, 45, 226, 79, 197, 225, 137, 128, + 27, 26, 125, 142, 243, 151, 243, 48, 135, 65, 4, 27, 56, 170, 128, 106, 235, 199, 175, 139, 27, 27, 69, 232, 94, + 165, 101, 85, 97, 255, 27, 106, 42, 102, 144, 91, 215, 24, 224, 255, 191, 68, 111, 177, 37, 179, 27, 142, 28, 207, + 83, 169, 249, 139, 70, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1518, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "88cf7fe3f281264a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "50e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4409035388263388642" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc12b3749b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5045665776021963458" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bafbf50e9d7dce5a37593a" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d2d05d1a2667" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13087250052404046899" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fad5d1e42660aafa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16126651554205784355" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1939922012748625766" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c7f531c7de76100f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3047786505834963241" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71fd98651e6a0c60c9007b3c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7961025857261372733" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2690763620043310717" + } + } + ] + }, + "cborHex": "9f4888cf7fe3f281264abf4250e81b3d300a535790d5e245fc12b3749b1b4605ce4a4b2282c2ff9f4bbafbf50e9d7dce5a37593aa046d2d05d1a2667ffbf1bb59f40955c416c3348fad5d1e42660aafa1bdfcd602558efd9231b1aebfccaddd7b766494c7f531c7de76100f31b2a4be9addf85a1294c71fd98651e6a0c60c9007b3c1b6e7b3ed67dc3853dff1b255783419339c67dff", + "cborBytes": [ + 159, 72, 136, 207, 127, 227, 242, 129, 38, 74, 191, 66, 80, 232, 27, 61, 48, 10, 83, 87, 144, 213, 226, 69, 252, + 18, 179, 116, 155, 27, 70, 5, 206, 74, 75, 34, 130, 194, 255, 159, 75, 186, 251, 245, 14, 157, 125, 206, 90, 55, + 89, 58, 160, 70, 210, 208, 93, 26, 38, 103, 255, 191, 27, 181, 159, 64, 149, 92, 65, 108, 51, 72, 250, 213, 209, + 228, 38, 96, 170, 250, 27, 223, 205, 96, 37, 88, 239, 217, 35, 27, 26, 235, 252, 202, 221, 215, 183, 102, 73, 76, + 127, 83, 28, 125, 231, 97, 0, 243, 27, 42, 75, 233, 173, 223, 133, 161, 41, 76, 113, 253, 152, 101, 30, 106, 12, + 96, 201, 0, 123, 60, 27, 110, 123, 62, 214, 125, 195, 133, 61, 255, 27, 37, 87, 131, 65, 147, 57, 198, 125, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1519, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c6a950" + } + ] + }, + "cborHex": "9f43c6a950ff", + "cborBytes": [159, 67, 198, 169, 80, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1520, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7468339759064206473" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84ed81" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7935242187195543176" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b3ae1fac13fb5a9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10339489916745516036" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec04fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13342614083030685061" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3687979094395347039" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15395533983803720982" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52a436c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16616213828675229240" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e108e24ab6c28c4c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10015396101659712804" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11490060607057264796" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12645347719177582507" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12808331465627884373" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10550160086870275771" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c8f9e034b4736fcd0bc1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16510660210106180477" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1157711367800402734" + } + }, + { + "_tag": "ByteArray", + "bytearray": "60e671d7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14282638690444755566" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11549573528543149865" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a406" + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff29fbf1b67a4df7120f2cc894384ed811b6e1fa4b9fe7bee88482b3ae1fac13fb5a91b8f7d3f4c5e59840443ec04fc1bb92a7cd0fa2b15851b332e55725480605f1bd5a7ec96d81345164452a436c11be698a670d21ed63848e108e24ab6c28c4cffd8669f1b8afdd5b0cc425d2480ffbf1b9f74e53ec35b809c1baf7d4cc0aee037abffffff1bb1c0559b46355b55d8669f1b9269b2b3ad6836bb9fd8799f4ac8f9e034b4736fcd0bc11be521a5fbde8e237d1b1011045aee2cb32e4460e671d71bc63620375f35c26effffff9fd8669f1ba04853ee9411bf2980ffff42a406ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 191, 27, 103, 164, 223, 113, 32, 242, 204, + 137, 67, 132, 237, 129, 27, 110, 31, 164, 185, 254, 123, 238, 136, 72, 43, 58, 225, 250, 193, 63, 181, 169, 27, + 143, 125, 63, 76, 94, 89, 132, 4, 67, 236, 4, 252, 27, 185, 42, 124, 208, 250, 43, 21, 133, 27, 51, 46, 85, 114, + 84, 128, 96, 95, 27, 213, 167, 236, 150, 216, 19, 69, 22, 68, 82, 164, 54, 193, 27, 230, 152, 166, 112, 210, 30, + 214, 56, 72, 225, 8, 226, 74, 182, 194, 140, 76, 255, 216, 102, 159, 27, 138, 253, 213, 176, 204, 66, 93, 36, 128, + 255, 191, 27, 159, 116, 229, 62, 195, 91, 128, 156, 27, 175, 125, 76, 192, 174, 224, 55, 171, 255, 255, 255, 27, + 177, 192, 85, 155, 70, 53, 91, 85, 216, 102, 159, 27, 146, 105, 178, 179, 173, 104, 54, 187, 159, 216, 121, 159, + 74, 200, 249, 224, 52, 180, 115, 111, 205, 11, 193, 27, 229, 33, 165, 251, 222, 142, 35, 125, 27, 16, 17, 4, 90, + 238, 44, 179, 46, 68, 96, 230, 113, 215, 27, 198, 54, 32, 55, 95, 53, 194, 110, 255, 255, 255, 159, 216, 102, 159, + 27, 160, 72, 83, 238, 148, 17, 191, 41, 128, 255, 255, 66, 164, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1521, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13181503450349681079" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16761947331159580169" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12547999666746955036" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "70788d79ef7e52" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab9868082d473b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bad89339b8810fbc711224b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1512464514053363510" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d0b36a890d01d68a" + } + ] + }, + "cborHex": "9f9fd8669f1bb6ee1b8cabadb9b79f1be89e664a0192de091bae237336fa2c151cffffff4770788d79ef7e52bf47ab9868082d473b41944cbad89339b8810fbc711224b11b14fd5a764f88d736ff48d0b36a890d01d68aff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 182, 238, 27, 140, 171, 173, 185, 183, 159, 27, 232, 158, 102, 74, 1, 146, 222, 9, + 27, 174, 35, 115, 54, 250, 44, 21, 28, 255, 255, 255, 71, 112, 120, 141, 121, 239, 126, 82, 191, 71, 171, 152, + 104, 8, 45, 71, 59, 65, 148, 76, 186, 216, 147, 57, 184, 129, 15, 188, 113, 18, 36, 177, 27, 20, 253, 90, 118, 79, + 136, 215, 54, 255, 72, 208, 179, 106, 137, 13, 1, 214, 138, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1522, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "537013708923582143" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9736626789880960906" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3775904195668935784" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73f2c8608206a9d37d04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f353f73ccb34" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4597758181218962749" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10175879761099347677" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b89be1103919" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2627889773731264099" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3976234847001367266" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f33bb35c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1454625850729593520" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b907b27b75" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7494731288033324617" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4fcc3b787c5f99f99267" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8661390966240126696" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12445150298603053961" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15165088012632532231" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2acd02f" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8669f1b0773db1f7fe7b6bf9fbf1b871f727a8168178a1b3466b4dc40c104684a73f2c8608206a9d37d0446f353f73ccb34ff1b3fce84b4b2b3cd3d1b8d37fcba8569d6dd9f46b89be11039191b247823d37822366341c51b372e6c86bf0bd2e244f33bb35cffbf1b142fde8119d67ab045b907b27b751b6802a265ce3b6e494a4fcc3b787c5f99f992671b783371319b8526e81bacb60e426494e3891bd27537330c7f250744b2acd02fffffffa0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 7, 115, 219, 31, 127, 231, 182, 191, 159, 191, 27, 135, 31, 114, 122, 129, 104, 23, 138, + 27, 52, 102, 180, 220, 64, 193, 4, 104, 74, 115, 242, 200, 96, 130, 6, 169, 211, 125, 4, 70, 243, 83, 247, 60, + 203, 52, 255, 27, 63, 206, 132, 180, 178, 179, 205, 61, 27, 141, 55, 252, 186, 133, 105, 214, 221, 159, 70, 184, + 155, 225, 16, 57, 25, 27, 36, 120, 35, 211, 120, 34, 54, 99, 65, 197, 27, 55, 46, 108, 134, 191, 11, 210, 226, 68, + 243, 59, 179, 92, 255, 191, 27, 20, 47, 222, 129, 25, 214, 122, 176, 69, 185, 7, 178, 123, 117, 27, 104, 2, 162, + 101, 206, 59, 110, 73, 74, 79, 204, 59, 120, 124, 95, 153, 249, 146, 103, 27, 120, 51, 113, 49, 155, 133, 38, 232, + 27, 172, 182, 14, 66, 100, 148, 227, 137, 27, 210, 117, 55, 51, 12, 127, 37, 7, 68, 178, 172, 208, 47, 255, 255, + 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1523, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11360722847557045944" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30de69cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f15d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ec61501184a87" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13938636431332239803" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09a7b107" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b9da9653cf84d4eb89fbf4430de69cf42f15d479ec61501184a871bc16ffbfbf6e069bbffffbf4409a7b10712ffff", + "cborBytes": [ + 159, 27, 157, 169, 101, 60, 248, 77, 78, 184, 159, 191, 68, 48, 222, 105, 207, 66, 241, 93, 71, 158, 198, 21, 1, + 24, 74, 135, 27, 193, 111, 251, 251, 246, 224, 105, 187, 255, 255, 191, 68, 9, 167, 177, 7, 18, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1524, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1444d1311ea122bf3443d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9328291da008" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "362ca0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b1171" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b223cd8d647b607f564b50a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7927578490544570695" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfbf912941b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9daf30de483cf24b4c0e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1931203749116544644" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a26" + } + ] + }, + "cborHex": "9fbf4b1444d1311ea122bf3443d8469328291da00843362ca0432b11714c5b223cd8d647b607f564b50a1b6e046aa291efc14746dfbf912941b04a9daf30de483cf24b4c0eff1b1acd0393eefe8684421a26ff", + "cborBytes": [ + 159, 191, 75, 20, 68, 209, 49, 30, 161, 34, 191, 52, 67, 216, 70, 147, 40, 41, 29, 160, 8, 67, 54, 44, 160, 67, + 43, 17, 113, 76, 91, 34, 60, 216, 214, 71, 182, 7, 245, 100, 181, 10, 27, 110, 4, 106, 162, 145, 239, 193, 71, 70, + 223, 191, 145, 41, 65, 176, 74, 157, 175, 48, 222, 72, 60, 242, 75, 76, 14, 255, 27, 26, 205, 3, 147, 238, 254, + 134, 132, 66, 26, 38, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1525, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "200602" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17782464915517248052" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3357029429498302179" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0300fa" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9be70a" + } + ] + } + ] + } + ] + }, + "cborHex": "9f43200602039f9f1bf6c801a008409234ffffd8669f1b2e96907ad5c74ee39f430300fa9f439be70affffffff", + "cborBytes": [ + 159, 67, 32, 6, 2, 3, 159, 159, 27, 246, 200, 1, 160, 8, 64, 146, 52, 255, 255, 216, 102, 159, 27, 46, 150, 144, + 122, 213, 199, 78, 227, 159, 67, 3, 0, 250, 159, 67, 155, 231, 10, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1526, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dab66c7cea67" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4133843077740926024" + } + } + ] + }, + "cborHex": "9f46dab66c7cea671b395e5c608df49448ff", + "cborBytes": [159, 70, 218, 182, 108, 124, 234, 103, 27, 57, 94, 92, 96, 141, 244, 148, 72, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1527, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c79b81fedd6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14539740330804092713" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57a042616ca54e90e482" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21e90d39bb5ed105926544" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a33defbde4646ebb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6332395489191598463" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2bc6c7af7e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3273951088714576551" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db2673d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2105866103565428237" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e067" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea951371cf4545ac" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6932657122645338588" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3205278441919064880" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "174e522c87c22c7b6ab3dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68f35211dfcb0705388750" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d0c6ebc9bdbbb7db1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13095746935853331994" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f753de20d4045" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3449638647856190858" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5594bdc004277964c417" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d43a5f23406a8fff0b42" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a58b0fa5575de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16871833234844799579" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "759188141270226319" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1673255441135179552" + } + } + ] + } + ] + }, + "cborHex": "9fbf461c79b81fedd61bc9c788cbc7ff9f294a57a042616ca54e90e4824b21e90d39bb5ed10592654448a33defbde4646ebb1b57e130259e8d197f46d2bc6c7af7e01b2d6f692b46d5f2a744db2673d01b1d398a10578da60d42e06748ea951371cf4545acff9f1b6035beec18db69dc1b2c7b6fc2b8cdab30bf4b174e522c87c22c7b6ab3dc4b68f35211dfcb0705388750492d0c6ebc9bdbbb7db11bb5bd707433f2b61a473f753de20d40451b2fdf9412c0ed558a4a5594bdc004277964c4174ad43a5f23406a8fff0b42478a58b0fa5575de1bea24caefb08dd25bff1b0a892d979619d58f1b173898f55b5a1720ffff", + "cborBytes": [ + 159, 191, 70, 28, 121, 184, 31, 237, 214, 27, 201, 199, 136, 203, 199, 255, 159, 41, 74, 87, 160, 66, 97, 108, + 165, 78, 144, 228, 130, 75, 33, 233, 13, 57, 187, 94, 209, 5, 146, 101, 68, 72, 163, 61, 239, 189, 228, 100, 110, + 187, 27, 87, 225, 48, 37, 158, 141, 25, 127, 70, 210, 188, 108, 122, 247, 224, 27, 45, 111, 105, 43, 70, 213, 242, + 167, 68, 219, 38, 115, 208, 27, 29, 57, 138, 16, 87, 141, 166, 13, 66, 224, 103, 72, 234, 149, 19, 113, 207, 69, + 69, 172, 255, 159, 27, 96, 53, 190, 236, 24, 219, 105, 220, 27, 44, 123, 111, 194, 184, 205, 171, 48, 191, 75, 23, + 78, 82, 44, 135, 194, 44, 123, 106, 179, 220, 75, 104, 243, 82, 17, 223, 203, 7, 5, 56, 135, 80, 73, 45, 12, 110, + 188, 155, 219, 187, 125, 177, 27, 181, 189, 112, 116, 51, 242, 182, 26, 71, 63, 117, 61, 226, 13, 64, 69, 27, 47, + 223, 148, 18, 192, 237, 85, 138, 74, 85, 148, 189, 192, 4, 39, 121, 100, 196, 23, 74, 212, 58, 95, 35, 64, 106, + 143, 255, 11, 66, 71, 138, 88, 176, 250, 85, 117, 222, 27, 234, 36, 202, 239, 176, 141, 210, 91, 255, 27, 10, 137, + 45, 151, 150, 25, 213, 143, 27, 23, 56, 152, 245, 91, 90, 23, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1528, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "183fb89a8d0335" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14259403531633152030" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3147978687362456621" + } + }, + { + "_tag": "ByteArray", + "bytearray": "126e6f2433f0a860d7" + } + ] + }, + "cborHex": "9f47183fb89a8d03351bc5e393f663f1d01e801b2bafddeffcbd5c2d49126e6f2433f0a860d7ff", + "cborBytes": [ + 159, 71, 24, 63, 184, 154, 141, 3, 53, 27, 197, 227, 147, 246, 99, 241, 208, 30, 128, 27, 43, 175, 221, 239, 252, + 189, 92, 45, 73, 18, 110, 111, 36, 51, 240, 168, 96, 215, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1529, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1497536480680522585" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18dc8105581016" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11647938366725114557" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17301290076645237229" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14742735319753563171" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4231853e87aa" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12466564640595089671" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1995057928774390130" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9934102317436211194" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9905799969885504624" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16039237527270554572" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12589165189647748048" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8fddc7fb1e9645095448c6d" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16282819503563709589" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a921872cc72ee4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15102998140703552784" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6564167960538251423" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1af0e48fc8d0111075" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "00566d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5993135556610447939" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c1bc16f444b209968" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16797225361160060002" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37e1f5179f55" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3331119231496066270" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4705a84cf09e1e288f9f76cf" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7671071878246570856" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15463002325251286619" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b14c8517eb126b3594718dc81055810161ba1a5ca3b2a4b4abd1bf01a87a8966e21ed1bcc98b7a9b7841c23464231853e87aaff1bad02227d6c1d9907d8669f1b1bafde9daeec91729f1b89dd056cb12b8ffaffffffbf1b89787896e519c4701bde96d18d31137bcc1baeb5b30a2baacbd04cd8fddc7fb1e9645095448c6dffd8669f1be1f8321183b79c959f47a921872cc72ee41bd198a0ca34053510bf1b5b189bfb4de2009f491af0e48fc8d01110754300566d1b532be50926875a43492c1bc16f444b2099681be91bbb787020bc624637e1f5179f551b2e3a834ac1cb94deff4c4705a84cf09e1e288f9f76cfbf1b6a751f3aed601b681bd6979eb035a4665bffffffff", + "cborBytes": [ + 159, 159, 191, 27, 20, 200, 81, 126, 177, 38, 179, 89, 71, 24, 220, 129, 5, 88, 16, 22, 27, 161, 165, 202, 59, 42, + 75, 74, 189, 27, 240, 26, 135, 168, 150, 110, 33, 237, 27, 204, 152, 183, 169, 183, 132, 28, 35, 70, 66, 49, 133, + 62, 135, 170, 255, 27, 173, 2, 34, 125, 108, 29, 153, 7, 216, 102, 159, 27, 27, 175, 222, 157, 174, 236, 145, 114, + 159, 27, 137, 221, 5, 108, 177, 43, 143, 250, 255, 255, 255, 191, 27, 137, 120, 120, 150, 229, 25, 196, 112, 27, + 222, 150, 209, 141, 49, 19, 123, 204, 27, 174, 181, 179, 10, 43, 170, 203, 208, 76, 216, 253, 220, 127, 177, 233, + 100, 80, 149, 68, 140, 109, 255, 216, 102, 159, 27, 225, 248, 50, 17, 131, 183, 156, 149, 159, 71, 169, 33, 135, + 44, 199, 46, 228, 27, 209, 152, 160, 202, 52, 5, 53, 16, 191, 27, 91, 24, 155, 251, 77, 226, 0, 159, 73, 26, 240, + 228, 143, 200, 208, 17, 16, 117, 67, 0, 86, 109, 27, 83, 43, 229, 9, 38, 135, 90, 67, 73, 44, 27, 193, 111, 68, + 75, 32, 153, 104, 27, 233, 27, 187, 120, 112, 32, 188, 98, 70, 55, 225, 245, 23, 159, 85, 27, 46, 58, 131, 74, + 193, 203, 148, 222, 255, 76, 71, 5, 168, 76, 240, 158, 30, 40, 143, 159, 118, 207, 191, 27, 106, 117, 31, 58, 237, + 96, 27, 104, 27, 214, 151, 158, 176, 53, 164, 102, 91, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1530, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07fd03fafbce03031805" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffffd9f4a07fd03fafbce030318051bfffffffffffffff7ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 74, 7, 253, 3, 250, 251, 206, 3, 3, 24, 5, + 27, 255, 255, 255, 255, 255, 255, 255, 247, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1531, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17295016068315390366" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17164722747906925115" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f3b99b58fd214ec00" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13864968318111235341" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ae5e45a8a20e15f4bd32ccbb" + }, + { + "_tag": "ByteArray", + "bytearray": "213b0f8b0480987ec58a8d" + }, + { + "_tag": "ByteArray", + "bytearray": "53" + }, + { + "_tag": "ByteArray", + "bytearray": "ea40" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f109fd8669f1bf0043d7b309ca19e9f41d61bee355865890f223b495f3b99b58fd214ec00ffffd8669f1bc06a4339bf10bd0d9f4cae5e45a8a20e15f4bd32ccbb4b213b0f8b0480987ec58a8d415342ea400effffffff", + "cborBytes": [ + 159, 16, 159, 216, 102, 159, 27, 240, 4, 61, 123, 48, 156, 161, 158, 159, 65, 214, 27, 238, 53, 88, 101, 137, 15, + 34, 59, 73, 95, 59, 153, 181, 143, 210, 20, 236, 0, 255, 255, 216, 102, 159, 27, 192, 106, 67, 57, 191, 16, 189, + 13, 159, 76, 174, 94, 69, 168, 162, 14, 21, 244, 189, 50, 204, 187, 75, 33, 59, 15, 139, 4, 128, 152, 126, 197, + 138, 141, 65, 83, 66, 234, 64, 14, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1532, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ecbde1557a6a4f" + }, + { + "_tag": "ByteArray", + "bytearray": "0e823cd828e93646b3d68c" + } + ] + }, + "cborHex": "9f47ecbde1557a6a4f4b0e823cd828e93646b3d68cff", + "cborBytes": [159, 71, 236, 189, 225, 85, 122, 106, 79, 75, 14, 130, 60, 216, 40, 233, 54, 70, 179, 214, 140, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1533, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4fc9954647215a515bae5d4a" + } + ] + }, + "cborHex": "9f4c4fc9954647215a515bae5d4aff", + "cborBytes": [159, 76, 79, 201, 149, 70, 71, 33, 90, 81, 91, 174, 93, 74, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1534, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0a448a2e3529262ed358" + }, + { + "_tag": "ByteArray", + "bytearray": "d44313882d4c46245921" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "427845782213487940" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f124486d217f4b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2690437019062889167" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b88" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10123419823025969718" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d62ebba806c4f2df" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13930374767348072029" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3559131471777100933" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17304754005429425979" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25342d0e90af544a" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd87c9f9f4a0a448a2e3529262ed3584ad44313882d4c46245921ffa0bf1b05f00378db7bed4447f124486d217f4b1b25565a36dbcdeacf425b881b8c7d9cb15f9c5a3648d62ebba806c4f2df1bc152a20b6bd8be5d1b316493376c2ff4851bf026d6155b23973b4825342d0e90af544affffff", + "cborBytes": [ + 159, 216, 124, 159, 159, 74, 10, 68, 138, 46, 53, 41, 38, 46, 211, 88, 74, 212, 67, 19, 136, 45, 76, 70, 36, 89, + 33, 255, 160, 191, 27, 5, 240, 3, 120, 219, 123, 237, 68, 71, 241, 36, 72, 109, 33, 127, 75, 27, 37, 86, 90, 54, + 219, 205, 234, 207, 66, 91, 136, 27, 140, 125, 156, 177, 95, 156, 90, 54, 72, 214, 46, 187, 168, 6, 196, 242, 223, + 27, 193, 82, 162, 11, 107, 216, 190, 93, 27, 49, 100, 147, 55, 108, 47, 244, 133, 27, 240, 38, 214, 21, 91, 35, + 151, 59, 72, 37, 52, 45, 14, 144, 175, 84, 74, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1535, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4064865570670552318" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3460338073838695730" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16792284360790431843" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7123189516867686558" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4344339728130158480" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16377094928035223558" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14425214964926259818" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14176579100835598704" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3bf85f30" + }, + { + "_tag": "ByteArray", + "bytearray": "f7be3fd3178c" + }, + { + "_tag": "ByteArray", + "bytearray": "a130d8b74b12" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "be9ace7cf5feef" + } + ] + }, + "cborHex": "9f1b38694db32f88a4fe9fd8669f1b30059724fdea35329f1be90a2da82442d8631b62daa72014af509e1b3c4a31f726d0af90ffffd8669f1be3472111466418069f418cffffd8669f1bc830a8952114226a9f1bc4bd5394db885170443bf85f3046f7be3fd3178c46a130d8b74b12ffffff47be9ace7cf5feefff", + "cborBytes": [ + 159, 27, 56, 105, 77, 179, 47, 136, 164, 254, 159, 216, 102, 159, 27, 48, 5, 151, 36, 253, 234, 53, 50, 159, 27, + 233, 10, 45, 168, 36, 66, 216, 99, 27, 98, 218, 167, 32, 20, 175, 80, 158, 27, 60, 74, 49, 247, 38, 208, 175, 144, + 255, 255, 216, 102, 159, 27, 227, 71, 33, 17, 70, 100, 24, 6, 159, 65, 140, 255, 255, 216, 102, 159, 27, 200, 48, + 168, 149, 33, 20, 34, 106, 159, 27, 196, 189, 83, 148, 219, 136, 81, 112, 68, 59, 248, 95, 48, 70, 247, 190, 63, + 211, 23, 140, 70, 161, 48, 216, 183, 75, 18, 255, 255, 255, 71, 190, 154, 206, 124, 245, 254, 239, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1536, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13003130636757483388" + } + } + ] + }, + "cborHex": "9f1bb474666babedbf7cff", + "cborBytes": [159, 27, 180, 116, 102, 107, 171, 237, 191, 124, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1537, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "020383fd31034b060500db" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14098377389959211776" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f4b020383fd31034b060500dbbf1bc3a77f8a2deaeb00418dff80a0ff", + "cborBytes": [ + 159, 75, 2, 3, 131, 253, 49, 3, 75, 6, 5, 0, 219, 191, 27, 195, 167, 127, 138, 45, 234, 235, 0, 65, 141, 255, 128, + 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1538, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "570702000702e9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3387127289846507615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85af82ac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3539980526854276383" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2414584595647275647" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5563578052975024064" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f40980d143efb129" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10116449572505740049" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14754750793041840130" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13814598183674781941" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8de8d8a1eded68d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16920392351332793355" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5dd8f4c98d" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5614635932902199678" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a9f1206" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13873500280532732510" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8eee7bc60" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7520623828c6352f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1595810253815781671" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10520777805935948958" + } + } + ] + }, + "cborHex": "9f47570702000702e9bf1b2f017e530855285f4485af82ac1b3120898896f3051f1b218253e58fafa27f1b4d35ccc317bc57c048f40980d143efb1291b8c64d949755b63111bccc367ac18ac08021bbfb74fdaecb120f548f8de8d8a1eded68d1bead14f32096d7c0b455dd8f4c98dff4100bf1b4deb31a223c7917e444a9f12061bc08893000c6f8a5e45b8eee7bc60487520623828c6352f1b162574f88b9d9927ff1b92014fac4ba0349eff", + "cborBytes": [ + 159, 71, 87, 7, 2, 0, 7, 2, 233, 191, 27, 47, 1, 126, 83, 8, 85, 40, 95, 68, 133, 175, 130, 172, 27, 49, 32, 137, + 136, 150, 243, 5, 31, 27, 33, 130, 83, 229, 143, 175, 162, 127, 27, 77, 53, 204, 195, 23, 188, 87, 192, 72, 244, + 9, 128, 209, 67, 239, 177, 41, 27, 140, 100, 217, 73, 117, 91, 99, 17, 27, 204, 195, 103, 172, 24, 172, 8, 2, 27, + 191, 183, 79, 218, 236, 177, 32, 245, 72, 248, 222, 141, 138, 30, 222, 214, 141, 27, 234, 209, 79, 50, 9, 109, + 124, 11, 69, 93, 216, 244, 201, 141, 255, 65, 0, 191, 27, 77, 235, 49, 162, 35, 199, 145, 126, 68, 74, 159, 18, 6, + 27, 192, 136, 147, 0, 12, 111, 138, 94, 69, 184, 238, 231, 188, 96, 72, 117, 32, 98, 56, 40, 198, 53, 47, 27, 22, + 37, 116, 248, 139, 157, 153, 39, 255, 27, 146, 1, 79, 172, 75, 160, 52, 158, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1539, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6d3e6a18ed5d" + } + ] + }, + "cborHex": "9f466d3e6a18ed5dff", + "cborBytes": [159, 70, 109, 62, 106, 24, 237, 93, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1540, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0f20766661983e2d5bfdbe" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11704973510451194989" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "13" + }, + { + "_tag": "ByteArray", + "bytearray": "a5058e06" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16191375957225005977" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11611667627393028268" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "073e95e1aed0539d6e14" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2399916920044661563" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69aa4e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cef6b7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11935353896219363441" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8233062364930752785" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a26955926b086da6806462" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17258965653077406422" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb08adb74b138d21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16082560112183443636" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17499445652681485327" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19029e96d8b503e72a3a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3dd54e739ae47815" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cba3b10f72664600" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16158382001808264483" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f539" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2364276906012499270" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4b0f20766661983e2d5bfdbe9fd8669f1ba2706b6463ccec6d9f411344a5058e061be0b352a5c33263991ba124ee2f94aa10acffff80bf4a073e95e1aed0539d6e141b214e37b935b62b3b4369aa4e43cef6b7416a1ba5a2e521e4bac87141851b7241b699ab55c1114ba26955926b086da68064621bef8429d1ce58b2d648eb08adb74b138d211bdf30bb36858f80b4ffbf1bf2da851ae6556c0f41ba4a19029e96d8b503e72a3a483dd54e739ae4781548cba3b10f726646001be03e1ad1e2d8cd2342f5391b20cf9951cd88dd46ffffff", + "cborBytes": [ + 159, 75, 15, 32, 118, 102, 97, 152, 62, 45, 91, 253, 190, 159, 216, 102, 159, 27, 162, 112, 107, 100, 99, 204, + 236, 109, 159, 65, 19, 68, 165, 5, 142, 6, 27, 224, 179, 82, 165, 195, 50, 99, 153, 27, 161, 36, 238, 47, 148, + 170, 16, 172, 255, 255, 128, 191, 74, 7, 62, 149, 225, 174, 208, 83, 157, 110, 20, 27, 33, 78, 55, 185, 53, 182, + 43, 59, 67, 105, 170, 78, 67, 206, 246, 183, 65, 106, 27, 165, 162, 229, 33, 228, 186, 200, 113, 65, 133, 27, 114, + 65, 182, 153, 171, 85, 193, 17, 75, 162, 105, 85, 146, 107, 8, 109, 166, 128, 100, 98, 27, 239, 132, 41, 209, 206, + 88, 178, 214, 72, 235, 8, 173, 183, 75, 19, 141, 33, 27, 223, 48, 187, 54, 133, 143, 128, 180, 255, 191, 27, 242, + 218, 133, 26, 230, 85, 108, 15, 65, 186, 74, 25, 2, 158, 150, 216, 181, 3, 231, 42, 58, 72, 61, 213, 78, 115, 154, + 228, 120, 21, 72, 203, 163, 177, 15, 114, 102, 70, 0, 27, 224, 62, 26, 209, 226, 216, 205, 35, 66, 245, 57, 27, + 32, 207, 153, 81, 205, 136, 221, 70, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1541, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8dc01b606710601" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf48c8dc01b60671060108ffff", + "cborBytes": [159, 191, 72, 200, 220, 1, 182, 6, 113, 6, 1, 8, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1542, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7da0cc07f86a420001" + } + ] + }, + "cborHex": "9f497da0cc07f86a420001ff", + "cborBytes": [159, 73, 125, 160, 204, 7, 248, 106, 66, 0, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1543, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c7f7b06d2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13868971309896998391" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c3cfac6ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65d135" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7dbcb4acfd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78ef95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec3035" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "519580402624134630" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8915673071096673019" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b08bdda" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8355422146800873688" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9761657405411416474" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5516095801917276008" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "58cf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3753390997632899104" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2ed84b4e59434b0484" + }, + { + "_tag": "ByteArray", + "bytearray": "d655943f6611fe38d38dbf80" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7487626169543506543" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13100365268591073821" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10705825515782594034" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f2e612a172d53b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7270363012498931883" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10192930759942195133" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf450c7f7b06d209416d1bc0787bece67e9df7457c3cfac6ff4365d135457dbcb4acfd4378ef9542d5a4410143ec3035410bff9fd8669f1b0735eb9f92aa7de69f1b7bbad56bc03bb2fb445b08bdda1b73f46c2c707f70d81b87785fb0d49bd99affffd8669f1b4c8d1be8044d7f689f4258cf1b3416b939dd0ed820492ed84b4e59434b04844cd655943f6611fe38d38dbf80ffff1b67e964547e8f3a6fd8669f1bb5cdd8cd963c5a1d9f1b9492bb95af88ddf247f2e612a172d53bffffbf1b64e584a3cc2340ab1b8d7490858e81c7bdffffff", + "cborBytes": [ + 159, 191, 69, 12, 127, 123, 6, 210, 9, 65, 109, 27, 192, 120, 123, 236, 230, 126, 157, 247, 69, 124, 60, 250, 198, + 255, 67, 101, 209, 53, 69, 125, 188, 180, 172, 253, 67, 120, 239, 149, 66, 213, 164, 65, 1, 67, 236, 48, 53, 65, + 11, 255, 159, 216, 102, 159, 27, 7, 53, 235, 159, 146, 170, 125, 230, 159, 27, 123, 186, 213, 107, 192, 59, 178, + 251, 68, 91, 8, 189, 218, 27, 115, 244, 108, 44, 112, 127, 112, 216, 27, 135, 120, 95, 176, 212, 155, 217, 154, + 255, 255, 216, 102, 159, 27, 76, 141, 27, 232, 4, 77, 127, 104, 159, 66, 88, 207, 27, 52, 22, 185, 57, 221, 14, + 216, 32, 73, 46, 216, 75, 78, 89, 67, 75, 4, 132, 76, 214, 85, 148, 63, 102, 17, 254, 56, 211, 141, 191, 128, 255, + 255, 27, 103, 233, 100, 84, 126, 143, 58, 111, 216, 102, 159, 27, 181, 205, 216, 205, 150, 60, 90, 29, 159, 27, + 148, 146, 187, 149, 175, 136, 221, 242, 71, 242, 230, 18, 161, 114, 213, 59, 255, 255, 191, 27, 100, 229, 132, + 163, 204, 35, 64, 171, 27, 141, 116, 144, 133, 142, 129, 199, 189, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1544, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bc74ef" + }, + { + "_tag": "ByteArray", + "bytearray": "e2e26c0300042d38" + } + ] + }, + "cborHex": "9f43bc74ef48e2e26c0300042d38ff", + "cborBytes": [159, 67, 188, 116, 239, 72, 226, 226, 108, 3, 0, 4, 45, 56, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1545, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8881229093891136707" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d1c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2109954215624568122" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1a" + }, + { + "_tag": "ByteArray", + "bytearray": "06eca5b571" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8344308972154627792" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12378798403099728054" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17493796510922801449" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05190af8050207846907" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "95c2399a44058007070505" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7b4076ce5e3edcc39f422d1cd8669f1b1d48102e1aa3ed3a9f411a4506eca5b571ffff9f1b73ccf0ccd561a6d01babca538fdaee98b61bf2c6733d96858129ff9f1bffffffffffffffec1bffffffffffffffff1bfffffffffffffff64a05190af8050207846907ff4b95c2399a44058007070505ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 123, 64, 118, 206, 94, 62, 220, 195, 159, 66, 45, 28, 216, 102, 159, 27, 29, 72, 16, 46, + 26, 163, 237, 58, 159, 65, 26, 69, 6, 236, 165, 181, 113, 255, 255, 159, 27, 115, 204, 240, 204, 213, 97, 166, + 208, 27, 171, 202, 83, 143, 218, 238, 152, 182, 27, 242, 198, 115, 61, 150, 133, 129, 41, 255, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 236, 27, 255, 255, 255, 255, 255, 255, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, + 246, 74, 5, 25, 10, 248, 5, 2, 7, 132, 105, 7, 255, 75, 149, 194, 57, 154, 68, 5, 128, 7, 7, 5, 5, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1546, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "9747e62d830b0f5473" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6447810899558438845" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16891322285777000851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3883653668714169366" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0126376edfc56a3bc61d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12421770658191639979" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4604e9fa25c9e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14753745244505592856" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f69ccabdd0be8e85359ca7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52909657d77ce4" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8547009826605813657" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14677568449465783565" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7661125cb3b27ee60aff016" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18426729346071307661" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cf5c73e0b281edf486" + } + ] + } + ] + } + ] + }, + "cborHex": "9fa0499747e62d830b0f5473d8669f1b597b39d9e71297bd80ffbf1bea6a081ff66099931b35e5826f6a59c4164a0126376edfc56a3bc61d1bac62fe99aae205ab474604e9fa25c9e51bccbfd521955d54184bf69ccabdd0be8e85359ca74752909657d77ce4ff9fd8669f1b769d14273e9ccf999f1bcbb132bd5ce3950d4cd7661125cb3b27ee60aff0161bffb8e4b614d8a58d49cf5c73e0b281edf486ffffffff", + "cborBytes": [ + 159, 160, 73, 151, 71, 230, 45, 131, 11, 15, 84, 115, 216, 102, 159, 27, 89, 123, 57, 217, 231, 18, 151, 189, 128, + 255, 191, 27, 234, 106, 8, 31, 246, 96, 153, 147, 27, 53, 229, 130, 111, 106, 89, 196, 22, 74, 1, 38, 55, 110, + 223, 197, 106, 59, 198, 29, 27, 172, 98, 254, 153, 170, 226, 5, 171, 71, 70, 4, 233, 250, 37, 201, 229, 27, 204, + 191, 213, 33, 149, 93, 84, 24, 75, 246, 156, 202, 189, 208, 190, 142, 133, 53, 156, 167, 71, 82, 144, 150, 87, + 215, 124, 228, 255, 159, 216, 102, 159, 27, 118, 157, 20, 39, 62, 156, 207, 153, 159, 27, 203, 177, 50, 189, 92, + 227, 149, 13, 76, 215, 102, 17, 37, 203, 59, 39, 238, 96, 175, 240, 22, 27, 255, 184, 228, 182, 20, 216, 165, 141, + 73, 207, 92, 115, 224, 178, 129, 237, 244, 134, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1547, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6459373932482237273" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a0" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3619594265477702506" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6097757044534276112" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12486323313651674330" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c98bd7346a51f1931cd787" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4813435230437479452" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ec" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18364067531598261944" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13863058871271228309" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8834066321715945922" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10966008920756761636" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6ce80218" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4900091850871687550" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5229127989561994512" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "644cb9468e2a375acb1f4d42" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6547138373164896840" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0dfd6b5a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10170112567236723929" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5187936348006634539" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8383710798603261407" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1297635047306884226" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b59a44e5e4d0593599f41a0ffffd87c9fbf1b323b61ce98d6e36a1b549f95b98619f0101bad4854e5fce2ecda4bc98bd7346a51f1931cd787ff1b42ccc1d6e393941c41ecff1bfeda461f7c32eeb89f1bc0637a9802730395ff9f1b7a98e883c41ee1c2d905029f1b982f17035578b42413446ce802181bfffffffffffffff1ff1b44009f9399fe497ebf1b489198338ee52d104c644cb9468e2a375acb1f4d421b5adc1ba983d29248440dfd6b5a1b8d237f7f0fe184d91b47ff409f2445d42bffd8669f1b7458ec8d725a95df9f1b120220334ad2f482ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 89, 164, 78, 94, 77, 5, 147, 89, 159, 65, 160, 255, 255, 216, 124, 159, 191, 27, 50, 59, + 97, 206, 152, 214, 227, 106, 27, 84, 159, 149, 185, 134, 25, 240, 16, 27, 173, 72, 84, 229, 252, 226, 236, 218, + 75, 201, 139, 215, 52, 106, 81, 241, 147, 28, 215, 135, 255, 27, 66, 204, 193, 214, 227, 147, 148, 28, 65, 236, + 255, 27, 254, 218, 70, 31, 124, 50, 238, 184, 159, 27, 192, 99, 122, 152, 2, 115, 3, 149, 255, 159, 27, 122, 152, + 232, 131, 196, 30, 225, 194, 217, 5, 2, 159, 27, 152, 47, 23, 3, 85, 120, 180, 36, 19, 68, 108, 232, 2, 24, 27, + 255, 255, 255, 255, 255, 255, 255, 241, 255, 27, 68, 0, 159, 147, 153, 254, 73, 126, 191, 27, 72, 145, 152, 51, + 142, 229, 45, 16, 76, 100, 76, 185, 70, 142, 42, 55, 90, 203, 31, 77, 66, 27, 90, 220, 27, 169, 131, 210, 146, 72, + 68, 13, 253, 107, 90, 27, 141, 35, 127, 127, 15, 225, 132, 217, 27, 71, 255, 64, 159, 36, 69, 212, 43, 255, 216, + 102, 159, 27, 116, 88, 236, 141, 114, 90, 149, 223, 159, 27, 18, 2, 32, 51, 74, 210, 244, 130, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1548, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "13fc" + } + ] + }, + "cborHex": "9f4213fcff", + "cborBytes": [159, 66, 19, 252, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1549, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14450522698031375414" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "724496775881134044" + } + } + ] + }, + "cborHex": "9f1bc88a91d4eae124361b0a0dedfaa74f8fdcff", + "cborBytes": [159, 27, 200, 138, 145, 212, 234, 225, 36, 54, 27, 10, 13, 237, 250, 167, 79, 143, 220, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1550, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "99368236633993982" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5774347058239198458" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d2c52a94b8f5" + }, + { + "_tag": "ByteArray", + "bytearray": "3eae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12853830731203167278" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f80d8669f1b016106e27e86b2fe9fd905009f1b50229a0e402b54fa46d2c52a94b8f5423eae1bb261faf2905d442effffffff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 1, 97, 6, 226, 126, 134, 178, 254, 159, 217, 5, 0, 159, 27, 80, 34, 154, 14, 64, 43, + 84, 250, 70, 210, 197, 42, 148, 184, 245, 66, 62, 174, 27, 178, 97, 250, 242, 144, 93, 68, 46, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1551, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "97200165aed977dc299f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a87b7e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aed70c02c15e669bd5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa9f52" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "102daa131f40" + } + } + ] + } + ] + }, + "cborHex": "9f4100bf4a97200165aed977dc299f41bc43a87b7e49aed70c02c15e669bd543aa9f5246102daa131f40ffff", + "cborBytes": [ + 159, 65, 0, 191, 74, 151, 32, 1, 101, 174, 217, 119, 220, 41, 159, 65, 188, 67, 168, 123, 126, 73, 174, 215, 12, + 2, 193, 94, 102, 155, 213, 67, 170, 159, 82, 70, 16, 45, 170, 19, 31, 64, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1552, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9803835e8f95b273" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8befbaf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0fcfd05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a4e781e17c7db4add387daa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2788297338319321357" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4756357375403826239" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf489803835e8f95b27344f8befbaf44e0fcfd054c2a4e781e17c7db4add387daa41f41b26b205a7fab0b90d41f91b4201f9d529c11c3fff80ff", + "cborBytes": [ + 159, 191, 72, 152, 3, 131, 94, 143, 149, 178, 115, 68, 248, 190, 251, 175, 68, 224, 252, 253, 5, 76, 42, 78, 120, + 30, 23, 199, 219, 74, 221, 56, 125, 170, 65, 244, 27, 38, 178, 5, 167, 250, 176, 185, 13, 65, 249, 27, 66, 1, 249, + 213, 41, 193, 28, 63, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1553, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18326791335965191261" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11711267873319624517" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7907567315991250931" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1416790679277093565" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5945757129919263943" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9485570185147638809" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7624175636213389592" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10817745086725994461" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7000fc1c8372331db7e815" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12505257979301936876" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3825c3a6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15278024361115603679" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8145d9d024" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14904259857090070812" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7308c84b65" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8208081982463750529" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2357607024179061616" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "599879728941372923" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17276339530729584813" + } + } + ] + } + ] + }, + "cborHex": "9f118006d8669f1bfe55d79edce96c5d9f9f1ba286c814f2a91f45ff1b6dbd5293eb25c7f3bf1b13a9739dc76542bd1b5283929b919574c71b83a383d3a1c2e4191b69ce8358b5afd9181b962059d76d07b7dd4b7000fc1c8372331db7e8151bad8b99e060e93eec443825c3a61bd4067235c20f52df458145d9d024ffd8669f1bced6915fb5f7c91c9f457308c84b651b71e8f713240931811b20b7e718ec28a3701b0853336f678215fbffff1befc1e344ec2cf8adffffff", + "cborBytes": [ + 159, 17, 128, 6, 216, 102, 159, 27, 254, 85, 215, 158, 220, 233, 108, 93, 159, 159, 27, 162, 134, 200, 20, 242, + 169, 31, 69, 255, 27, 109, 189, 82, 147, 235, 37, 199, 243, 191, 27, 19, 169, 115, 157, 199, 101, 66, 189, 27, 82, + 131, 146, 155, 145, 149, 116, 199, 27, 131, 163, 131, 211, 161, 194, 228, 25, 27, 105, 206, 131, 88, 181, 175, + 217, 24, 27, 150, 32, 89, 215, 109, 7, 183, 221, 75, 112, 0, 252, 28, 131, 114, 51, 29, 183, 232, 21, 27, 173, + 139, 153, 224, 96, 233, 62, 236, 68, 56, 37, 195, 166, 27, 212, 6, 114, 53, 194, 15, 82, 223, 69, 129, 69, 217, + 208, 36, 255, 216, 102, 159, 27, 206, 214, 145, 95, 181, 247, 201, 28, 159, 69, 115, 8, 200, 75, 101, 27, 113, + 232, 247, 19, 36, 9, 49, 129, 27, 32, 183, 231, 24, 236, 40, 163, 112, 27, 8, 83, 51, 111, 103, 130, 21, 251, 255, + 255, 27, 239, 193, 227, 68, 236, 44, 248, 173, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1554, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4573037793084565824" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16644291334237436516" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11658092677836392908" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5519622898034475272" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12917889701419508266" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d21a79371b2cff6c9538ca" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b4057d" + }, + { + "_tag": "ByteArray", + "bytearray": "b1175baa4e" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf1b3f76b1a4d13de9401be6fc66c88355ba641ba1c9dd85f50549cc1b4c99a3c8137501081bb345903dd4c9622a4159ffbf1bfffffffffffffffa4bd21a79371b2cff6c9538caff43b4057d45b1175baa4e80ff", + "cborBytes": [ + 159, 191, 27, 63, 118, 177, 164, 209, 61, 233, 64, 27, 230, 252, 102, 200, 131, 85, 186, 100, 27, 161, 201, 221, + 133, 245, 5, 73, 204, 27, 76, 153, 163, 200, 19, 117, 1, 8, 27, 179, 69, 144, 61, 212, 201, 98, 42, 65, 89, 255, + 191, 27, 255, 255, 255, 255, 255, 255, 255, 250, 75, 210, 26, 121, 55, 27, 44, 255, 108, 149, 56, 202, 255, 67, + 180, 5, 125, 69, 177, 23, 91, 170, 78, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1555, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bc62637b9cc24d5f" + }, + { + "_tag": "ByteArray", + "bytearray": "baa3" + } + ] + }, + "cborHex": "9f48bc62637b9cc24d5f42baa3ff", + "cborBytes": [159, 72, 188, 98, 99, 123, 156, 194, 77, 95, 66, 186, 163, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1556, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a42965bf5b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13151898538035622333" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11197271199732865499" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17164967374677298402" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "827a435b" + }, + { + "_tag": "ByteArray", + "bytearray": "37dce0f4d9e0a599065b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5275113099657628662" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c67dc33c3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1261660529552688078" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "cffbc4" + } + ] + }, + "cborHex": "9f9f45a42965bf5bbf1bb684ee09e197b1bd1b9b64b2d499ca19dbffd8669f1bee3636e224cf4ce29f44827a435b4a37dce0f4d9e0a599065b1b4934f76a571a4bf6459c67dc33c31b118251912b1e83ceffffff8043cffbc4ff", + "cborBytes": [ + 159, 159, 69, 164, 41, 101, 191, 91, 191, 27, 182, 132, 238, 9, 225, 151, 177, 189, 27, 155, 100, 178, 212, 153, + 202, 25, 219, 255, 216, 102, 159, 27, 238, 54, 54, 226, 36, 207, 76, 226, 159, 68, 130, 122, 67, 91, 74, 55, 220, + 224, 244, 217, 224, 165, 153, 6, 91, 27, 73, 52, 247, 106, 87, 26, 75, 246, 69, 156, 103, 220, 51, 195, 27, 17, + 130, 81, 145, 43, 30, 131, 206, 255, 255, 255, 128, 67, 207, 251, 196, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1557, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17265801450326464535" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ba8828a8727d656fe2a2" + }, + { + "_tag": "ByteArray", + "bytearray": "b9bdd78fd034220f55cc37" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13844206512421680471" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14911445443069706319" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9042243302588956460" + } + }, + { + "_tag": "ByteArray", + "bytearray": "19937b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2ff0fb6256d37595" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7df60922f80817c96ff0" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2203528890845271136" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d88627c890adccb6b8989" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15316866463327734274" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15537124425470722289" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27caff77b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b0ed7d6e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d20c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ceb1aae0940fa7cd0d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6040d0fd88cf356c9e992b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c9d5680403f86e" + }, + { + "_tag": "ByteArray", + "bytearray": "075e06a1" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a24d7b5a5cae28030eb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fef9fe" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "add4fe0593fb" + } + ] + }, + "cborHex": "9fd8669f1bef9c72f0e12218179f4aba8828a8727d656fe2a24bb9bdd78fd034220f55cc37d8669f1bc02080792a0b355780ffd8669f1bcef018a051c9804f9f1b7d7c806037783f2c4319937bffff482ff0fb6256d37595ffff1bfffffffffffffff1d87c9f9f4a7df60922f80817c96ff0ff9f1b1e9481d9f72494604b6d88627c890adccb6b8989ffbf1bd49070e56abe4a021bd79ef458833a40f14527caff77b4413c452b0ed7d6e7433d20c149ceb1aae0940fa7cd0d4b6040d0fd88cf356c9e992bff47c9d5680403f86e44075e06a1ff9fbf0c4a5a24d7b5a5cae28030eb1bfffffffffffffff943fef9feffff46add4fe0593fbff", + "cborBytes": [ + 159, 216, 102, 159, 27, 239, 156, 114, 240, 225, 34, 24, 23, 159, 74, 186, 136, 40, 168, 114, 125, 101, 111, 226, + 162, 75, 185, 189, 215, 143, 208, 52, 34, 15, 85, 204, 55, 216, 102, 159, 27, 192, 32, 128, 121, 42, 11, 53, 87, + 128, 255, 216, 102, 159, 27, 206, 240, 24, 160, 81, 201, 128, 79, 159, 27, 125, 124, 128, 96, 55, 120, 63, 44, 67, + 25, 147, 123, 255, 255, 72, 47, 240, 251, 98, 86, 211, 117, 149, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, + 241, 216, 124, 159, 159, 74, 125, 246, 9, 34, 248, 8, 23, 201, 111, 240, 255, 159, 27, 30, 148, 129, 217, 247, 36, + 148, 96, 75, 109, 136, 98, 124, 137, 10, 220, 203, 107, 137, 137, 255, 191, 27, 212, 144, 112, 229, 106, 190, 74, + 2, 27, 215, 158, 244, 88, 131, 58, 64, 241, 69, 39, 202, 255, 119, 180, 65, 60, 69, 43, 14, 215, 214, 231, 67, 61, + 32, 193, 73, 206, 177, 170, 224, 148, 15, 167, 205, 13, 75, 96, 64, 208, 253, 136, 207, 53, 108, 158, 153, 43, + 255, 71, 201, 213, 104, 4, 3, 248, 110, 68, 7, 94, 6, 161, 255, 159, 191, 12, 74, 90, 36, 215, 181, 165, 202, 226, + 128, 48, 235, 27, 255, 255, 255, 255, 255, 255, 255, 249, 67, 254, 249, 254, 255, 255, 70, 173, 212, 254, 5, 147, + 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1558, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5061" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bbd63f0c43297e8be1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d4975" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1217150253368025109" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "989fefba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86f8a3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c439e98cb0e5709930" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1456201407558760851" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff851ac9b7620a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e950b4565614205a4d" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4105f3" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf42506149bbd63f0c43297e8be1438d49751b10e42fb4ea47201544989fefba4386f8a349c439e98cb0e57099301b1435777702f6b99347ff851ac9b7620a49e950b4565614205a4dff434105f3bf1107ffff", + "cborBytes": [ + 159, 191, 66, 80, 97, 73, 187, 214, 63, 12, 67, 41, 126, 139, 225, 67, 141, 73, 117, 27, 16, 228, 47, 180, 234, + 71, 32, 21, 68, 152, 159, 239, 186, 67, 134, 248, 163, 73, 196, 57, 233, 140, 176, 229, 112, 153, 48, 27, 20, 53, + 119, 119, 2, 246, 185, 147, 71, 255, 133, 26, 201, 183, 98, 10, 73, 233, 80, 180, 86, 86, 20, 32, 90, 77, 255, 67, + 65, 5, 243, 191, 17, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1559, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11923755012969742501" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2367545180301639546" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b63f6dc955dcd5412" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4052087934168685819" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c55796f9005f306b96b63e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a443a1cba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11525681658656089043" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1021650734640675876" + } + } + ] + }, + "cborHex": "9f1ba579b00270d840a5bf1b20db35cc35913f7a495b63f6dc955dcd54121b383be881dac55cfb4c7c55796f9005f306b96b63e8459a443a1cba1b9ff37267226e63d3ff1b0e2da1ee22c63c24ff", + "cborBytes": [ + 159, 27, 165, 121, 176, 2, 112, 216, 64, 165, 191, 27, 32, 219, 53, 204, 53, 145, 63, 122, 73, 91, 99, 246, 220, + 149, 93, 205, 84, 18, 27, 56, 59, 232, 129, 218, 197, 92, 251, 76, 124, 85, 121, 111, 144, 5, 243, 6, 185, 107, + 99, 232, 69, 154, 68, 58, 28, 186, 27, 159, 243, 114, 103, 34, 110, 99, 211, 255, 27, 14, 45, 161, 238, 34, 198, + 60, 36, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1560, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7d0c9ccfd4340d706f3b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f95785254d9fdea8ad69b0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edbd6e18de70" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17868560817417424206" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10039156479625303933" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a1a600737f111323e6" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1362021673804688010" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10898467152003187375" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf4bb7d0c9ccfd4340d706f3b74bf95785254d9fdea8ad69b046edbd6e18de701bf7f9e16449a10d4eff1b8b523fa0e4a0977d49a1a600737f111323e69f1b12e6df7efb82ea8a1b973f2221d769c2afffffff", + "cborBytes": [ + 159, 159, 191, 75, 183, 208, 201, 204, 253, 67, 64, 215, 6, 243, 183, 75, 249, 87, 133, 37, 77, 159, 222, 168, + 173, 105, 176, 70, 237, 189, 110, 24, 222, 112, 27, 247, 249, 225, 100, 73, 161, 13, 78, 255, 27, 139, 82, 63, + 160, 228, 160, 151, 125, 73, 161, 166, 0, 115, 127, 17, 19, 35, 230, 159, 27, 18, 230, 223, 126, 251, 130, 234, + 138, 27, 151, 63, 34, 33, 215, 105, 194, 175, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1561, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2a97cca4931" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6022161185383740379" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f21d7dadbb6c641dc3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14175416910806777413" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92fdfffe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17490645582539360174" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fcdba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14637028965095724051" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdfd" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "814732937574025610" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16825286448855810416" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17119880257119921537" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a2a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3665722862136845593" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf46e2a97cca49311b539303b0faf173db49f21d7dadbb6c641dc31bc4b9329367b3fe45ff9fbf011bffffffffffffffff41011bfffffffffffffffc4492fdfffe1bf2bb417ce78387aeffffbf09431fcdba1bcb212c4b1fa2541342fdfdff9f9f1b0b4e834a42e9098a1be97f6ce18c3e81701bed9608638adb2581ff9f42a2a71bfffffffffffffffd051b32df438572b1e51914ffffa0ff", + "cborBytes": [ + 159, 191, 70, 226, 169, 124, 202, 73, 49, 27, 83, 147, 3, 176, 250, 241, 115, 219, 73, 242, 29, 125, 173, 187, + 108, 100, 29, 195, 27, 196, 185, 50, 147, 103, 179, 254, 69, 255, 159, 191, 1, 27, 255, 255, 255, 255, 255, 255, + 255, 255, 65, 1, 27, 255, 255, 255, 255, 255, 255, 255, 252, 68, 146, 253, 255, 254, 27, 242, 187, 65, 124, 231, + 131, 135, 174, 255, 255, 191, 9, 67, 31, 205, 186, 27, 203, 33, 44, 75, 31, 162, 84, 19, 66, 253, 253, 255, 159, + 159, 27, 11, 78, 131, 74, 66, 233, 9, 138, 27, 233, 127, 108, 225, 140, 62, 129, 112, 27, 237, 150, 8, 99, 138, + 219, 37, 129, 255, 159, 66, 162, 167, 27, 255, 255, 255, 255, 255, 255, 255, 253, 5, 27, 50, 223, 67, 133, 114, + 177, 229, 25, 20, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1562, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13750997751446054123" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1026764295830751149" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16415883383239270721" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4559044631296387225" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7895757325027107748" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12173486180584412014" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16879986663607098596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14824868265189496780" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11932693115181275099" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "156fc53580c84ccd9c4e5076" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11628171965138104464" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2377f436" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "958a5e0a68691a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "266d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13779013320902384129" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5378711331174610799" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b2ffb10e0817348060c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28e90c13f1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a945970b019bbfcd9c8195c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f15133e4c8e8f7" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11189107264630190347" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1bbed55b995a2324eb410fbf1b0e3fccafe10bc7ad1be3d0eef64436e1411b3f44faeff392a8991b6d935d741eede3a41ba8f0e92eefdc536e1bea41c26fc1a1dce41bcdbc83244494d7cc1ba599712a882117dbffbf4c156fc53580c84ccd9c4e50761ba15f90cb29367090442377f43647958a5e0a68691a42266d1bbf38e39c6bc31a0141421b4aa505754407f76f4a9b2ffb10e0817348060c4528e90c13f14ca945970b019bbfcd9c8195c647f15133e4c8e8f7ffd8669f1b9b47b1c65606710b80ffff", + "cborBytes": [ + 159, 27, 190, 213, 91, 153, 90, 35, 36, 235, 65, 15, 191, 27, 14, 63, 204, 175, 225, 11, 199, 173, 27, 227, 208, + 238, 246, 68, 54, 225, 65, 27, 63, 68, 250, 239, 243, 146, 168, 153, 27, 109, 147, 93, 116, 30, 237, 227, 164, 27, + 168, 240, 233, 46, 239, 220, 83, 110, 27, 234, 65, 194, 111, 193, 161, 220, 228, 27, 205, 188, 131, 36, 68, 148, + 215, 204, 27, 165, 153, 113, 42, 136, 33, 23, 219, 255, 191, 76, 21, 111, 197, 53, 128, 200, 76, 205, 156, 78, 80, + 118, 27, 161, 95, 144, 203, 41, 54, 112, 144, 68, 35, 119, 244, 54, 71, 149, 138, 94, 10, 104, 105, 26, 66, 38, + 109, 27, 191, 56, 227, 156, 107, 195, 26, 1, 65, 66, 27, 74, 165, 5, 117, 68, 7, 247, 111, 74, 155, 47, 251, 16, + 224, 129, 115, 72, 6, 12, 69, 40, 233, 12, 19, 241, 76, 169, 69, 151, 11, 1, 155, 191, 205, 156, 129, 149, 198, + 71, 241, 81, 51, 228, 200, 232, 247, 255, 216, 102, 159, 27, 155, 71, 177, 198, 86, 6, 113, 11, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1563, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "390215051116335774" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ec5dc1ab17ce81ff4ad" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "519423209741532215" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5495002179225348141" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9318610654940458663" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12039617794276320637" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7680815018478139892" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "31ebb707ee586b2355d1a4a3" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bce4c057" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "96207553227007764" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2045517014832587358" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8084816006720976842" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2518136561440197749" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6281694a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13303905735501604083" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5684428036163127741" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3158348083098364198" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b056a528583ccd29e4a2ec5dc1ab17ce81ff4ad1b07355ca840bcbc371b4c422b5e44b9682d1b81525b04bfe56ea71ba7155098634fe57dff9f1b6a97bc9089dff9f4ff4c31ebb707ee586b2355d1a4a3ff44bce4c05780d8669f1b0155cc428ace271480ffd8669f1b1c6322e32b1d225e9f1b70330952aafef7ca4103d8669f1b22f237dc68910c759f446281694a1bb8a0f7c781dae4f31b4ee3252e76c649bdffff9f1b2bd4b4d9121d2926ffffffff", + "cborBytes": [ + 159, 159, 191, 27, 5, 106, 82, 133, 131, 204, 210, 158, 74, 46, 197, 220, 26, 177, 124, 232, 31, 244, 173, 27, 7, + 53, 92, 168, 64, 188, 188, 55, 27, 76, 66, 43, 94, 68, 185, 104, 45, 27, 129, 82, 91, 4, 191, 229, 110, 167, 27, + 167, 21, 80, 152, 99, 79, 229, 125, 255, 159, 27, 106, 151, 188, 144, 137, 223, 249, 244, 255, 76, 49, 235, 183, + 7, 238, 88, 107, 35, 85, 209, 164, 163, 255, 68, 188, 228, 192, 87, 128, 216, 102, 159, 27, 1, 85, 204, 66, 138, + 206, 39, 20, 128, 255, 216, 102, 159, 27, 28, 99, 34, 227, 43, 29, 34, 94, 159, 27, 112, 51, 9, 82, 170, 254, 247, + 202, 65, 3, 216, 102, 159, 27, 34, 242, 55, 220, 104, 145, 12, 117, 159, 68, 98, 129, 105, 74, 27, 184, 160, 247, + 199, 129, 218, 228, 243, 27, 78, 227, 37, 46, 118, 198, 73, 189, 255, 255, 159, 27, 43, 212, 180, 217, 18, 29, 41, + 38, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1564, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8852605564805586180" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7244658690743663627" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12219141789519618618" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "644f747e29754e6374850f89" + }, + { + "_tag": "ByteArray", + "bytearray": "d5da980581465e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17433528614019815348" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a653" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10440279784365154526" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15433510230377695106" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8af689486174" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12663817122224273737" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11789038262062216251" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d3e2ca64f92683ea40292e5d" + }, + { + "_tag": "ByteArray", + "bytearray": "f1" + }, + { + "_tag": "ByteArray", + "bytearray": "f3ab4986" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5974077786335615944" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7adac5dbaae21d049f41b21b648a32b204b8fc0bd8669f1ba9931cb7c072a23a9f4c644f747e29754e6374850f8947d5da980581465e1bf1f055e85c4257b442a653ffff1b90e353261ec6e0de1bd62ed7c8c7050782ffff468af689486174d8669f1bafbeea93aeaff9499fd8669f1ba39b13d69db4f43b9f4cd3e2ca64f92683ea40292e5d41f144f3ab49861b52e830183b161bc8ffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 122, 218, 197, 219, 170, 226, 29, 4, 159, 65, 178, 27, 100, 138, 50, 178, 4, 184, 252, 11, + 216, 102, 159, 27, 169, 147, 28, 183, 192, 114, 162, 58, 159, 76, 100, 79, 116, 126, 41, 117, 78, 99, 116, 133, + 15, 137, 71, 213, 218, 152, 5, 129, 70, 94, 27, 241, 240, 85, 232, 92, 66, 87, 180, 66, 166, 83, 255, 255, 27, + 144, 227, 83, 38, 30, 198, 224, 222, 27, 214, 46, 215, 200, 199, 5, 7, 130, 255, 255, 70, 138, 246, 137, 72, 97, + 116, 216, 102, 159, 27, 175, 190, 234, 147, 174, 175, 249, 73, 159, 216, 102, 159, 27, 163, 155, 19, 214, 157, + 180, 244, 59, 159, 76, 211, 226, 202, 100, 249, 38, 131, 234, 64, 41, 46, 93, 65, 241, 68, 243, 171, 73, 134, 27, + 82, 232, 48, 24, 59, 22, 27, 200, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1565, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9775849334247920473" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13079488139050155381" + } + }, + { + "_tag": "ByteArray", + "bytearray": "beda" + }, + { + "_tag": "ByteArray", + "bytearray": "9d7a4839ed3687e45f" + }, + { + "_tag": "ByteArray", + "bytearray": "85fe0983" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "67acaf5a37ace2b538b7f86c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3737573151436061741" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11236920437726996546" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9499fe7aac59725f5f518" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b87aacb2cc19613599f1bb583ad2a1404fd7542beda499d7a4839ed3687e45f4485fe0983ffff4c67acaf5a37ace2b538b7f86c1b33de86fa8d623c2dffbf1b9bf18f9a340b68424bd9499fe7aac59725f5f518ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 135, 170, 203, 44, 193, 150, 19, 89, 159, 27, 181, 131, 173, 42, 20, 4, 253, 117, 66, + 190, 218, 73, 157, 122, 72, 57, 237, 54, 135, 228, 95, 68, 133, 254, 9, 131, 255, 255, 76, 103, 172, 175, 90, 55, + 172, 226, 181, 56, 183, 248, 108, 27, 51, 222, 134, 250, 141, 98, 60, 45, 255, 191, 27, 155, 241, 143, 154, 52, + 11, 104, 66, 75, 217, 73, 159, 231, 170, 197, 151, 37, 245, 245, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1566, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2728210602641513436" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1ea8038131a918b80bc399" + }, + { + "_tag": "ByteArray", + "bytearray": "f7c4d28a5da0" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ba3c757099" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1892956745105822384" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3b3c40e7f9" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12388824248470470415" + } + } + ] + }, + "cborHex": "9f1b25dc8d16a2e6dbdcd87a9f9f4b1ea8038131a918b80bc39946f7c4d28a5da0ff9f45ba3c757099ffd8669f1b1a4522215f3652b09f453b3c40e7f9ffffff1babedf203e2d3ff0fff", + "cborBytes": [ + 159, 27, 37, 220, 141, 22, 162, 230, 219, 220, 216, 122, 159, 159, 75, 30, 168, 3, 129, 49, 169, 24, 184, 11, 195, + 153, 70, 247, 196, 210, 138, 93, 160, 255, 159, 69, 186, 60, 117, 112, 153, 255, 216, 102, 159, 27, 26, 69, 34, + 33, 95, 54, 82, 176, 159, 69, 59, 60, 64, 231, 249, 255, 255, 255, 27, 171, 237, 242, 3, 226, 211, 255, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1567, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14282403670267584482" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11176380932310417275" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "4fbdf51fbc17871bcd" + }, + { + "_tag": "ByteArray", + "bytearray": "f397aa" + }, + { + "_tag": "ByteArray", + "bytearray": "320da4" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14675051516611783635" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8419964168238960746" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13909807838332976170" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4d2637" + }, + { + "_tag": "ByteArray", + "bytearray": "276133" + }, + { + "_tag": "ByteArray", + "bytearray": "8b63ab81f10f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f006319bb93da0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae42d0573859969a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f0c3740" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0130ca9030aed5a76927" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17942763626791608627" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "319f29af97e45d075039ef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d451ee72468ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bed671b24242193b41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38666c518b324605d4c62ea9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecfd355d44c00af3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "276d2536f3d813cf" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd905069fd8669f1bc6354a777908dfe29f1b9b1a7b3e30cfbf7bffffff9f80494fbdf51fbc17871bcd43f397aa43320da4ffd8669f1bcba8419a4433ebd39f80d8669f1bfffffffffffffffb9f1b74d9b8ccd566906a1bc109908819c7fc2a434d263743276133468b63ab81f10fffff01bf41ae47f006319bb93da048ae42d0573859969a449f0c3740ffbf4a0130ca9030aed5a769271bf901807427b6a1334b319f29af97e45d075039ef470d451ee72468ff49bed671b24242193b414c38666c518b324605d4c62ea948ecfd355d44c00af348276d2536f3d813cfffffffff", + "cborBytes": [ + 159, 217, 5, 6, 159, 216, 102, 159, 27, 198, 53, 74, 119, 121, 8, 223, 226, 159, 27, 155, 26, 123, 62, 48, 207, + 191, 123, 255, 255, 255, 159, 128, 73, 79, 189, 245, 31, 188, 23, 135, 27, 205, 67, 243, 151, 170, 67, 50, 13, + 164, 255, 216, 102, 159, 27, 203, 168, 65, 154, 68, 51, 235, 211, 159, 128, 216, 102, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 251, 159, 27, 116, 217, 184, 204, 213, 102, 144, 106, 27, 193, 9, 144, 136, 25, 199, 252, 42, 67, + 77, 38, 55, 67, 39, 97, 51, 70, 139, 99, 171, 129, 241, 15, 255, 255, 1, 191, 65, 174, 71, 240, 6, 49, 155, 185, + 61, 160, 72, 174, 66, 208, 87, 56, 89, 150, 154, 68, 159, 12, 55, 64, 255, 191, 74, 1, 48, 202, 144, 48, 174, 213, + 167, 105, 39, 27, 249, 1, 128, 116, 39, 182, 161, 51, 75, 49, 159, 41, 175, 151, 228, 93, 7, 80, 57, 239, 71, 13, + 69, 30, 231, 36, 104, 255, 73, 190, 214, 113, 178, 66, 66, 25, 59, 65, 76, 56, 102, 108, 81, 139, 50, 70, 5, 212, + 198, 46, 169, 72, 236, 253, 53, 93, 68, 192, 10, 243, 72, 39, 109, 37, 54, 243, 216, 19, 207, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1568, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fdc2976145105793f3" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bbd3303cd4e0e1ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5373419593185407840" + } + } + ] + }, + "cborHex": "9fa09f49fdc2976145105793f3ff48bbd3303cd4e0e1ed1b4a9238a680f0b360ff", + "cborBytes": [ + 159, 160, 159, 73, 253, 194, 151, 97, 69, 16, 87, 147, 243, 255, 72, 187, 211, 48, 60, 212, 224, 225, 237, 27, 74, + 146, 56, 166, 128, 240, 179, 96, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1569, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c90685f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cfb765ee6af0d7e86da6" + } + } + ] + } + ] + }, + "cborHex": "9fbf443c90685f4acfb765ee6af0d7e86da6ffff", + "cborBytes": [159, 191, 68, 60, 144, 104, 95, 74, 207, 183, 101, 238, 106, 240, 215, 232, 109, 166, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1570, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16813880191814638125" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "213523933961033413" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1181ea5cf0f7bd6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10301307802714469274" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18147312115023081598" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15669086543522846405" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15146014012312899067" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17801717251461271193" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17448193441804414993" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14461376737517514110" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10742786776514690551" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6276031648136839599" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + ] + }, + "cborHex": "9fd8669f1be956e6f361169a2d9fbf1b02f696e2faca96c548c1181ea5cf0f7bd61b8ef598de2ec1739a1bfbd834385417f07e1bd973c731658856c51bd231737f46ffcdfb1bf70c6785cd4ace991bf2246f7da70d7011ffd9050a9f1bfffffffffffffff11bc8b12185ead42d7e1b95160ba7cfebfdf71b5718f1883a4e41afff1241a6ffff1bfffffffffffffff2ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 233, 86, 230, 243, 97, 22, 154, 45, 159, 191, 27, 2, 246, 150, 226, 250, 202, 150, 197, + 72, 193, 24, 30, 165, 207, 15, 123, 214, 27, 142, 245, 152, 222, 46, 193, 115, 154, 27, 251, 216, 52, 56, 84, 23, + 240, 126, 27, 217, 115, 199, 49, 101, 136, 86, 197, 27, 210, 49, 115, 127, 70, 255, 205, 251, 27, 247, 12, 103, + 133, 205, 74, 206, 153, 27, 242, 36, 111, 125, 167, 13, 112, 17, 255, 217, 5, 10, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 241, 27, 200, 177, 33, 133, 234, 212, 45, 126, 27, 149, 22, 11, 167, 207, 235, 253, 247, 27, 87, + 24, 241, 136, 58, 78, 65, 175, 255, 18, 65, 166, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1571, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1968305629098575076" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a05860704069e09" + } + ] + }, + "cborHex": "9f801b1b50d38a87d284e4489a05860704069e09ff", + "cborBytes": [159, 128, 27, 27, 80, 211, 138, 135, 210, 132, 228, 72, 154, 5, 134, 7, 4, 6, 158, 9, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1572, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13154788736141379503" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f041bb68f32a8910447afa0ff", + "cborBytes": [159, 4, 27, 182, 143, 50, 168, 145, 4, 71, 175, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1573, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "471f3443e30430" + } + ] + }, + "cborHex": "9f47471f3443e30430ff", + "cborBytes": [159, 71, 71, 31, 52, 67, 227, 4, 48, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1574, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18101531112708128632" + } + } + ] + }, + "cborHex": "9f1bfb358ea417a63f78ff", + "cborBytes": [159, 27, 251, 53, 142, 164, 23, 166, 63, 120, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1575, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e437f3fd339ab8f9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10700462718047730864" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d81a1c9adf227f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "557915664908072258" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18364421018412995327" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7479773265285528238" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d053a5b" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16045208480281233258" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8988586945213016999" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14277818949185951017" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b2e7566644e6205b08bae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5df1ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "376df75e83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e135fff76e46d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bdcc552df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3476d5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a010c4b55dbb633380ebda6a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b372560b9172fc768" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9ebd7373f9dcfc877" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1db436feae60594c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd4126d6ec40fe20ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3837594626791533749" + } + } + } + ] + } + ] + }, + "cborHex": "9f48e437f3fd339ab8f9d8669f1b947fae26098bbcb09f47d81a1c9adf227f9f1b07be1d575d78b5421bfedb879e0c3952ff1b67cd7e27bdcebaae442d053a5bffffffd8669f1bdeac081a063f876a9f9f1b7cbde033fe22aba7ffd8669f1bc62500afe991d52980ffffffbf4b1b2e7566644e6205b08bae435df1ae45376df75e83471e135fff76e46d457bdcc552df433476d54ca010c4b55dbb633380ebda6a496b372560b9172fc76849e9ebd7373f9dcfc877481db436feae60594c49fd4126d6ec40fe20ea1b3541dffb09db6cb5ffff", + "cborBytes": [ + 159, 72, 228, 55, 243, 253, 51, 154, 184, 249, 216, 102, 159, 27, 148, 127, 174, 38, 9, 139, 188, 176, 159, 71, + 216, 26, 28, 154, 223, 34, 127, 159, 27, 7, 190, 29, 87, 93, 120, 181, 66, 27, 254, 219, 135, 158, 12, 57, 82, + 255, 27, 103, 205, 126, 39, 189, 206, 186, 174, 68, 45, 5, 58, 91, 255, 255, 255, 216, 102, 159, 27, 222, 172, 8, + 26, 6, 63, 135, 106, 159, 159, 27, 124, 189, 224, 51, 254, 34, 171, 167, 255, 216, 102, 159, 27, 198, 37, 0, 175, + 233, 145, 213, 41, 128, 255, 255, 255, 191, 75, 27, 46, 117, 102, 100, 78, 98, 5, 176, 139, 174, 67, 93, 241, 174, + 69, 55, 109, 247, 94, 131, 71, 30, 19, 95, 255, 118, 228, 109, 69, 123, 220, 197, 82, 223, 67, 52, 118, 213, 76, + 160, 16, 196, 181, 93, 187, 99, 51, 128, 235, 218, 106, 73, 107, 55, 37, 96, 185, 23, 47, 199, 104, 73, 233, 235, + 215, 55, 63, 157, 207, 200, 119, 72, 29, 180, 54, 254, 174, 96, 89, 76, 73, 253, 65, 38, 214, 236, 64, 254, 32, + 234, 27, 53, 65, 223, 251, 9, 219, 108, 181, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1576, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "032aff0207c9680502" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10055942484843981193" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f8049032aff0207c9680502d8669f1bfffffffffffffff89f41011b8b8de2694ae26989a0ffffff", + "cborBytes": [ + 159, 128, 73, 3, 42, 255, 2, 7, 201, 104, 5, 2, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, + 65, 1, 27, 139, 141, 226, 105, 74, 226, 105, 137, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1577, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13264914750731645189" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11596589217039236523" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b5dc95e3afb39" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "798193283284580634" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5b0bd1ad03aa823b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6da07909aab15893e5488f30" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7224220648125622809" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1675745976109683430" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8121102001809038906" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6561865398674185933" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16154636476518237532" + } + }, + { + "_tag": "ByteArray", + "bytearray": "33" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17538841845270361322" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11152225844011852208" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c3351" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d69b215" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d05a4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e7afa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6e9e99b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b225d328" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a34f5bee82d225bf" + } + } + ] + } + ] + }, + "cborHex": "9fd8799f9f1bb81671af6d32f1051ba0ef5c7397bfbdab478b5dc95e3afb391b0b13c08fe847b91aff485b0bd1ad03aa823b9f4c6da07909aab15893e5488f301b644196676691ea191b1741721637ced2e6ff1b70b3f33e428a9e3ad8669f1b5b106dd057e6decd9f1be030cc48d270055c41331bf3667bbbc718b4eaffffffbf4230d61b9ac4aa516f41e1b0434c335109444d69b215430d05a4437e7afa44d6e9e99b44b225d32848a34f5bee82d225bfffff", + "cborBytes": [ + 159, 216, 121, 159, 159, 27, 184, 22, 113, 175, 109, 50, 241, 5, 27, 160, 239, 92, 115, 151, 191, 189, 171, 71, + 139, 93, 201, 94, 58, 251, 57, 27, 11, 19, 192, 143, 232, 71, 185, 26, 255, 72, 91, 11, 209, 173, 3, 170, 130, 59, + 159, 76, 109, 160, 121, 9, 170, 177, 88, 147, 229, 72, 143, 48, 27, 100, 65, 150, 103, 102, 145, 234, 25, 27, 23, + 65, 114, 22, 55, 206, 210, 230, 255, 27, 112, 179, 243, 62, 66, 138, 158, 58, 216, 102, 159, 27, 91, 16, 109, 208, + 87, 230, 222, 205, 159, 27, 224, 48, 204, 72, 210, 112, 5, 92, 65, 51, 27, 243, 102, 123, 187, 199, 24, 180, 234, + 255, 255, 255, 191, 66, 48, 214, 27, 154, 196, 170, 81, 111, 65, 225, 176, 67, 76, 51, 81, 9, 68, 77, 105, 178, + 21, 67, 13, 5, 164, 67, 126, 122, 250, 68, 214, 233, 233, 155, 68, 178, 37, 211, 40, 72, 163, 79, 91, 238, 130, + 210, 37, 191, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1578, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2201677403246043516" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2527c411" + } + ] + } + ] + }, + "cborHex": "9f1b1e8dedeeea7c217c9f442527c411ffff", + "cborBytes": [159, 27, 30, 141, 237, 238, 234, 124, 33, 124, 159, 68, 37, 39, 196, 17, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1579, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ffb952" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10445073892771447549" + } + }, + { + "_tag": "ByteArray", + "bytearray": "08951a83618577bb91ce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13206242235563547446" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b6c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4629649955387602887" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c37b3a0cc63d1ca2daf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6937895138391589902" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24ecb556fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18125551082528933854" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14824946415402981994" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6689006080539575909" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8274008603352926016" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1c64fc6250daa1348cdcda2f" + }, + { + "_tag": "ByteArray", + "bytearray": "8a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5649618721836402698" + } + } + ] + } + ] + }, + "cborHex": "9f43ffb952d87f9f9f1b90f45b5d775942fd4a08951a83618577bb91ce1bb745ff57f4869b36422b6cffbf020e1b403fd21b0147f7c74a6c37b3a0cc63d1ca2daf1b60485adeacbd840e4524ecb556fa1bfffffffffffffff61bfb8ae4ad205587de1bfffffffffffffffa1bcdbcca38084b9a6a1bfffffffffffffffd04ffff1b5cd41f9722fd46651b72d32efcb76087409f4c1c64fc6250daa1348cdcda2f418a1b4e677a4b6774880affff", + "cborBytes": [ + 159, 67, 255, 185, 82, 216, 127, 159, 159, 27, 144, 244, 91, 93, 119, 89, 66, 253, 74, 8, 149, 26, 131, 97, 133, + 119, 187, 145, 206, 27, 183, 69, 255, 87, 244, 134, 155, 54, 66, 43, 108, 255, 191, 2, 14, 27, 64, 63, 210, 27, 1, + 71, 247, 199, 74, 108, 55, 179, 160, 204, 99, 209, 202, 45, 175, 27, 96, 72, 90, 222, 172, 189, 132, 14, 69, 36, + 236, 181, 86, 250, 27, 255, 255, 255, 255, 255, 255, 255, 246, 27, 251, 138, 228, 173, 32, 85, 135, 222, 27, 255, + 255, 255, 255, 255, 255, 255, 250, 27, 205, 188, 202, 56, 8, 75, 154, 106, 27, 255, 255, 255, 255, 255, 255, 255, + 253, 4, 255, 255, 27, 92, 212, 31, 151, 34, 253, 70, 101, 27, 114, 211, 46, 252, 183, 96, 135, 64, 159, 76, 28, + 100, 252, 98, 80, 218, 161, 52, 140, 220, 218, 47, 65, 138, 27, 78, 103, 122, 75, 103, 116, 136, 10, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1580, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6375ae998a91" + }, + { + "_tag": "ByteArray", + "bytearray": "1d3f3c" + }, + { + "_tag": "ByteArray", + "bytearray": "a2367957d381" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11897215297256747496" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d9dad6" + }, + { + "_tag": "ByteArray", + "bytearray": "591ecdbf3a6367647fed" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4c5bb271678fb43007" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3094129484782094207" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9715257829123384052" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02b3254fdbaf" + }, + { + "_tag": "ByteArray", + "bytearray": "9d5cdbb7cebd84d364688e" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f466375ae998a91431d3f3c46a2367957d3811ba51b66475954f1e89f43d9dad64a591ecdbf3a6367647fedffff494c5bb271678fb430071b2af08e5f7d7fc77f1b86d387859e3b62f49f9f4602b3254fdbaf4b9d5cdbb7cebd84d364688effffff", + "cborBytes": [ + 159, 159, 70, 99, 117, 174, 153, 138, 145, 67, 29, 63, 60, 70, 162, 54, 121, 87, 211, 129, 27, 165, 27, 102, 71, + 89, 84, 241, 232, 159, 67, 217, 218, 214, 74, 89, 30, 205, 191, 58, 99, 103, 100, 127, 237, 255, 255, 73, 76, 91, + 178, 113, 103, 143, 180, 48, 7, 27, 42, 240, 142, 95, 125, 127, 199, 127, 27, 134, 211, 135, 133, 158, 59, 98, + 244, 159, 159, 70, 2, 179, 37, 79, 219, 175, 75, 157, 92, 219, 183, 206, 189, 132, 211, 100, 104, 142, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1581, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7c7cc3bc5289fc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14720652920685493811" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14903042837401770424" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f88963" + }, + { + "_tag": "ByteArray", + "bytearray": "ddeede79d20e68ff" + }, + { + "_tag": "ByteArray", + "bytearray": "99f95c3e39" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10356227038510424188" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f477c7cc3bc5289fcd8669f1bcc4a43d687467e339f1bced23e803bc319b843f8896348ddeede79d20e68ff4599f95c3e391b8fb8b59f33b5a07cffffffff", + "cborBytes": [ + 159, 159, 71, 124, 124, 195, 188, 82, 137, 252, 216, 102, 159, 27, 204, 74, 67, 214, 135, 70, 126, 51, 159, 27, + 206, 210, 62, 128, 59, 195, 25, 184, 67, 248, 137, 99, 72, 221, 238, 222, 121, 210, 14, 104, 255, 69, 153, 249, + 92, 62, 57, 27, 143, 184, 181, 159, 51, 181, 160, 124, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1582, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "453f43082380cd87" + } + ] + }, + "cborHex": "9f48453f43082380cd87ff", + "cborBytes": [159, 72, 69, 63, 67, 8, 35, 128, 205, 135, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1583, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3845338035443645180" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1821734105158697532" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "589177cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da320e8b6b3d812c919311" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17462492104886121987" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "254d7002" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16932649408391958178" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b355d6291dbeabafcd8669f1b194819844532c23c9fbf44589177cb4bda320e8b6b3d812c919311ffd8669f1bf2573c0c94ccf6039f44254d70021beafcdaec856e4ea2ffffffffff", + "cborBytes": [ + 159, 27, 53, 93, 98, 145, 219, 234, 186, 252, 216, 102, 159, 27, 25, 72, 25, 132, 69, 50, 194, 60, 159, 191, 68, + 88, 145, 119, 203, 75, 218, 50, 14, 139, 107, 61, 129, 44, 145, 147, 17, 255, 216, 102, 159, 27, 242, 87, 60, 12, + 148, 204, 246, 3, 159, 68, 37, 77, 112, 2, 27, 234, 252, 218, 236, 133, 110, 78, 162, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1584, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11943419913484485245" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1ba5bf8d21e291c27d80ff", + "cborBytes": [159, 27, 165, 191, 141, 33, 226, 145, 194, 125, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1585, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8674171468355061450" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f101170700287835" + }, + { + "_tag": "ByteArray", + "bytearray": "f7060f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6701ba5a0202fa" + }, + { + "_tag": "ByteArray", + "bytearray": "1f35c7f6cc630b4219dce99e" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3001fc" + }, + { + "_tag": "ByteArray", + "bytearray": "125f27ec2a170df9f59475" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7860d8fe2421c6ca9f48f10117070028783543f7060f9f476701ba5a0202fa4c1f35c7f6cc630b4219dce99eff433001fc4b125f27ec2a170df9f59475ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 120, 96, 216, 254, 36, 33, 198, 202, 159, 72, 241, 1, 23, 7, 0, 40, 120, 53, 67, 247, 6, + 15, 159, 71, 103, 1, 186, 90, 2, 2, 250, 76, 31, 53, 199, 246, 204, 99, 11, 66, 25, 220, 233, 158, 255, 67, 48, 1, + 252, 75, 18, 95, 39, 236, 42, 23, 13, 249, 245, 148, 117, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1586, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9cee01fee8" + } + ] + } + ] + }, + "cborHex": "9fd87c80d8669f1bffffffffffffffed9f459cee01fee8ffffff", + "cborBytes": [ + 159, 216, 124, 128, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 69, 156, 238, 1, 254, 232, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1587, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9105630179145989691" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5864913743329896045" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "893867532807345761" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2702025000e5" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "03fb0206" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14062115563483885985" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fa6a5bc2b0138a7d42" + } + ] + }, + "cborHex": "9fd905099fd8799f1b7e5db2677c12be3b1b51645bf9d57c266d1b0c67a7c9013c9661ff462702025000e5ff4403fb0206d8669f1bc326ab99c7f2f1a180ff49fa6a5bc2b0138a7d42ff", + "cborBytes": [ + 159, 217, 5, 9, 159, 216, 121, 159, 27, 126, 93, 178, 103, 124, 18, 190, 59, 27, 81, 100, 91, 249, 213, 124, 38, + 109, 27, 12, 103, 167, 201, 1, 60, 150, 97, 255, 70, 39, 2, 2, 80, 0, 229, 255, 68, 3, 251, 2, 6, 216, 102, 159, + 27, 195, 38, 171, 153, 199, 242, 241, 161, 128, 255, 73, 250, 106, 91, 194, 176, 19, 138, 125, 66, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1588, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5893542407362020655" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16311748184322937721" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12752368120275753582" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ccfead96" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12009389042072863769" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5dfe84cf331abf" + }, + { + "_tag": "ByteArray", + "bytearray": "5ea96f34ced983" + } + ] + }, + "cborHex": "9fd8669f1b51ca11981b83852f9fd8669f1be25ef88ce03113799f1bb0f9833d8e0d5a6effff80ffff44ccfead961ba6a9ebb48e38c419475dfe84cf331abf475ea96f34ced983ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 81, 202, 17, 152, 27, 131, 133, 47, 159, 216, 102, 159, 27, 226, 94, 248, 140, 224, 49, + 19, 121, 159, 27, 176, 249, 131, 61, 142, 13, 90, 110, 255, 255, 128, 255, 255, 68, 204, 254, 173, 150, 27, 166, + 169, 235, 180, 142, 56, 196, 25, 71, 93, 254, 132, 207, 51, 26, 191, 71, 94, 169, 111, 52, 206, 217, 131, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1589, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b8ee" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9893862541881339623" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13326861530519048820" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12698533707859185229" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8c7d1cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6067153485131795481" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3178269056449442616" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d137d1646dbab59174b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10205268984523065545" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48c7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb1a96badd4efee8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a319" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5313460451160983868" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c18ccb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13665988568457759235" + } + }, + { + "_tag": "ByteArray", + "bytearray": "98d1537c4c8874" + } + ] + } + ] + }, + "cborHex": "9f9f42b8eeffbf1b894e0f8fd9616ee741211bb8f285f4096812741bb03a4120a9454e4d44f8c7d1cc1b5432dbf3170dcc19ffd8669f1b2c1b7ade1e48f3389fbf4a3d137d1646dbab59174b1b8da0661253cf08c94248c748bb1a96badd4efee842a3191b49bd3420df89893c43c18ccb41fdff1bbda758328f794a034798d1537c4c8874ffffff", + "cborBytes": [ + 159, 159, 66, 184, 238, 255, 191, 27, 137, 78, 15, 143, 217, 97, 110, 231, 65, 33, 27, 184, 242, 133, 244, 9, 104, + 18, 116, 27, 176, 58, 65, 32, 169, 69, 78, 77, 68, 248, 199, 209, 204, 27, 84, 50, 219, 243, 23, 13, 204, 25, 255, + 216, 102, 159, 27, 44, 27, 122, 222, 30, 72, 243, 56, 159, 191, 74, 61, 19, 125, 22, 70, 219, 171, 89, 23, 75, 27, + 141, 160, 102, 18, 83, 207, 8, 201, 66, 72, 199, 72, 187, 26, 150, 186, 221, 78, 254, 232, 66, 163, 25, 27, 73, + 189, 52, 32, 223, 137, 137, 60, 67, 193, 140, 203, 65, 253, 255, 27, 189, 167, 88, 50, 143, 121, 74, 3, 71, 152, + 209, 83, 124, 76, 136, 116, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1590, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1067264161552635607" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "54" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12959338699053600281" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5969453789593592903" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f89fc7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12700171873577675325" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16023023651894290603" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b9d798e483f26397ce392e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16489069993026082773" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16228502812670913618" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "742a137e01c5b9d66ed0b5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2299829285592168589" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2803877121405370043" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4071489036102622952" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85314b096116b5abf2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14082623756854585206" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11598190280417362199" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17016730306787571563" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2cacfd8d9cbc7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18421916806172576003" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15281302735906773358" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "318b9b25169a0070bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "33d026828bea19df564b58f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3231398230490100618" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "835d66c1d542bf436bbbfa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d78007b7d9e1c57a55e2afc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aac28b16d059" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d37d729b0edbd7f9ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2eae7b67bcbe95982" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "300632132120709392" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2b91" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "575a13b7f992" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13320629429397528050" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4075150793915633847" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48e2337e33f7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4179222326997421761" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c1d25" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7764481361336526239" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "898d96a4ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11199606969084731317" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23f2ca5828243793fc0caa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11540089720196147613" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "057b" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6422852787900508" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d241a80d1a36" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1325958718902573216" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16320238499503571979" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5900828670524623698" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0619bc958d08" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6528920529822923207" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10659916052807302946" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "329819953151196637" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18133611674640255593" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2340142835999428234" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9132baa802c41cc05e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6612509187570798174" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11953249812789607601" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9791954954676388591" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98d9dc09980d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11477113023469348964" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5004433494628522296" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13866226096322424981" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa763a" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7099395380907799851" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11391609765383153271" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bdaab023629bdb" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d6a1" + }, + { + "_tag": "ByteArray", + "bytearray": "f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7686336502281483405" + } + }, + { + "_tag": "ByteArray", + "bytearray": "723dba9c561c53987c90af20" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2754290502281467178" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b347461e8f133" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7689fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85f26f3c81f7ed815f1ce5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9773781253495664121" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "913e70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a81d347cefb7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "970c675860676f25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0458fe3456b5" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b0ecfaf19aed996d79f9f41541bb3d8d1e2a1100e19ff9f1b52d7c29817d5e44743f89fc71bb0401307d7012a3d1bde5d371e26d768ab4bb9d798e483f26397ce392effd8669f1be4d4f1cbbadf57d59f1be137395369ad6c52ffff4b742a137e01c5b9d66ed0b5bf1b1feaa28cdbc2f88d1b26e95f62e7363ebb1b3880d5b4e7cb5ee84985314b096116b5abf21bc36f87b1a4cb67761ba0f50c9c35aa41171bec27920e36b2776b47a2cacfd8d9cbc71bffa7cbbb51b709031bd41217dfdeed996effffff9fbf49318b9b25169a0070bd422cac4c33d026828bea19df564b58f91b2cd83b91e830338a4b835d66c1d542bf436bbbfa4272f94c9d78007b7d9e1c57a55e2afc46aac28b16d05949d37d729b0edbd7f9ec49f2eae7b67bcbe95982ffd8669f1b042c0f54d31f89109f422b91ffff46575a13b7f99280ffd8669f1bb8dc61e3ebda9df29fbf1b388dd80e557e10b74648e2337e33f71b39ff94905e100ec1437c1d251b6bc0faa8ff9ae59f45898d96a4ba1b9b6cff334848dfb54b23f2ca5828243793fc0caa1ba026a275606da99d42057bffbf1b0016d18cf2de105c46d241a80d1a361b1266c06dfb0518a01be27d22726c90840b1b51e3f469730f8b52460619bc958d081b5a9b62a152d9b9c71b93efa12bdf103f22ffffff9fbf1b0493c17ffb69bddd1bfba787bdf9cf0a691b2079db82bf6bce8a499132baa802c41cc05e1b5bc45a124f2a0e5e1ba5e2795faad43cb11b87e40326ba1cc2ef4698d9dc09980d1b9f46e57c8ae668641b457351bfad6659381bc06ebb2b0e8cb09543fa763aff1b62861e7c170ef52b1b9e1720b9ed88a67747bdaab023629bdb9f42d6a141f91b6aab5a532a9b348d4c723dba9c561c53987c90af201b2639349e74b8152affffbf475b347461e8f133437689fc4b85f26f3c81f7ed815f1ce51b87a372442efb2df943913e7046a81d347cefb748970c675860676f25460458fe3456b5ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 14, 207, 175, 25, 174, 217, 150, 215, 159, 159, 65, 84, 27, 179, 216, 209, 226, 161, 16, + 14, 25, 255, 159, 27, 82, 215, 194, 152, 23, 213, 228, 71, 67, 248, 159, 199, 27, 176, 64, 19, 7, 215, 1, 42, 61, + 27, 222, 93, 55, 30, 38, 215, 104, 171, 75, 185, 215, 152, 228, 131, 242, 99, 151, 206, 57, 46, 255, 216, 102, + 159, 27, 228, 212, 241, 203, 186, 223, 87, 213, 159, 27, 225, 55, 57, 83, 105, 173, 108, 82, 255, 255, 75, 116, + 42, 19, 126, 1, 197, 185, 214, 110, 208, 181, 191, 27, 31, 234, 162, 140, 219, 194, 248, 141, 27, 38, 233, 95, 98, + 231, 54, 62, 187, 27, 56, 128, 213, 180, 231, 203, 94, 232, 73, 133, 49, 75, 9, 97, 22, 181, 171, 242, 27, 195, + 111, 135, 177, 164, 203, 103, 118, 27, 160, 245, 12, 156, 53, 170, 65, 23, 27, 236, 39, 146, 14, 54, 178, 119, + 107, 71, 162, 202, 207, 216, 217, 203, 199, 27, 255, 167, 203, 187, 81, 183, 9, 3, 27, 212, 18, 23, 223, 222, 237, + 153, 110, 255, 255, 255, 159, 191, 73, 49, 139, 155, 37, 22, 154, 0, 112, 189, 66, 44, 172, 76, 51, 208, 38, 130, + 139, 234, 25, 223, 86, 75, 88, 249, 27, 44, 216, 59, 145, 232, 48, 51, 138, 75, 131, 93, 102, 193, 213, 66, 191, + 67, 107, 187, 250, 66, 114, 249, 76, 157, 120, 0, 123, 125, 158, 28, 87, 165, 94, 42, 252, 70, 170, 194, 139, 22, + 208, 89, 73, 211, 125, 114, 155, 14, 219, 215, 249, 236, 73, 242, 234, 231, 182, 123, 203, 233, 89, 130, 255, 216, + 102, 159, 27, 4, 44, 15, 84, 211, 31, 137, 16, 159, 66, 43, 145, 255, 255, 70, 87, 90, 19, 183, 249, 146, 128, + 255, 216, 102, 159, 27, 184, 220, 97, 227, 235, 218, 157, 242, 159, 191, 27, 56, 141, 216, 14, 85, 126, 16, 183, + 70, 72, 226, 51, 126, 51, 247, 27, 57, 255, 148, 144, 94, 16, 14, 193, 67, 124, 29, 37, 27, 107, 192, 250, 168, + 255, 154, 229, 159, 69, 137, 141, 150, 164, 186, 27, 155, 108, 255, 51, 72, 72, 223, 181, 75, 35, 242, 202, 88, + 40, 36, 55, 147, 252, 12, 170, 27, 160, 38, 162, 117, 96, 109, 169, 157, 66, 5, 123, 255, 191, 27, 0, 22, 209, + 140, 242, 222, 16, 92, 70, 210, 65, 168, 13, 26, 54, 27, 18, 102, 192, 109, 251, 5, 24, 160, 27, 226, 125, 34, + 114, 108, 144, 132, 11, 27, 81, 227, 244, 105, 115, 15, 139, 82, 70, 6, 25, 188, 149, 141, 8, 27, 90, 155, 98, + 161, 82, 217, 185, 199, 27, 147, 239, 161, 43, 223, 16, 63, 34, 255, 255, 255, 159, 191, 27, 4, 147, 193, 127, + 251, 105, 189, 221, 27, 251, 167, 135, 189, 249, 207, 10, 105, 27, 32, 121, 219, 130, 191, 107, 206, 138, 73, 145, + 50, 186, 168, 2, 196, 28, 192, 94, 27, 91, 196, 90, 18, 79, 42, 14, 94, 27, 165, 226, 121, 95, 170, 212, 60, 177, + 27, 135, 228, 3, 38, 186, 28, 194, 239, 70, 152, 217, 220, 9, 152, 13, 27, 159, 70, 229, 124, 138, 230, 104, 100, + 27, 69, 115, 81, 191, 173, 102, 89, 56, 27, 192, 110, 187, 43, 14, 140, 176, 149, 67, 250, 118, 58, 255, 27, 98, + 134, 30, 124, 23, 14, 245, 43, 27, 158, 23, 32, 185, 237, 136, 166, 119, 71, 189, 170, 176, 35, 98, 155, 219, 159, + 66, 214, 161, 65, 249, 27, 106, 171, 90, 83, 42, 155, 52, 141, 76, 114, 61, 186, 156, 86, 28, 83, 152, 124, 144, + 175, 32, 27, 38, 57, 52, 158, 116, 184, 21, 42, 255, 255, 191, 71, 91, 52, 116, 97, 232, 241, 51, 67, 118, 137, + 252, 75, 133, 242, 111, 60, 129, 247, 237, 129, 95, 28, 229, 27, 135, 163, 114, 68, 46, 251, 45, 249, 67, 145, 62, + 112, 70, 168, 29, 52, 124, 239, 183, 72, 151, 12, 103, 88, 96, 103, 111, 37, 70, 4, 88, 254, 52, 86, 181, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1591, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0407" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "020718" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1418a79a56" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e2b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11881208669386320752" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ff00ec03e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddda21b556d0159e47001b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e9815040504fb051cc029" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e0bc021" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea0a60ad1fd795b17cef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdf905fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c20a1e065009cc00" + } + } + ] + } + ] + }, + "cborHex": "9f420407bf43020718451418a79a56420e2b1ba4e28855e1102b70452ff00ec03e4bddda21b556d0159e47001b4b5e9815040504fb051cc0294204eb447e0bc0214aea0a60ad1fd795b17cef44fdf905fb48c20a1e065009cc00ffff", + "cborBytes": [ + 159, 66, 4, 7, 191, 67, 2, 7, 24, 69, 20, 24, 167, 154, 86, 66, 14, 43, 27, 164, 226, 136, 85, 225, 16, 43, 112, + 69, 47, 240, 14, 192, 62, 75, 221, 218, 33, 181, 86, 208, 21, 158, 71, 0, 27, 75, 94, 152, 21, 4, 5, 4, 251, 5, + 28, 192, 41, 66, 4, 235, 68, 126, 11, 192, 33, 74, 234, 10, 96, 173, 31, 215, 149, 177, 124, 239, 68, 253, 249, 5, + 251, 72, 194, 10, 30, 6, 80, 9, 204, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1592, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18285933075180701374" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4109108163214777207" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64fff0fefd85b60501fd03" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15073988724619717140" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "527c650762" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c494" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13179526032044901323" + } + } + ] + } + ] + }, + "cborHex": "9f1bfdc4af3fb4b646be1b39067c1a7c131b774b64fff0fefd85b60501fd03d8669f1bd13190e12f33aa1480ffd8669f1bfffffffffffffffb9f45527c6507629f42c494ff1bb6e71519180cc3cbffffff", + "cborBytes": [ + 159, 27, 253, 196, 175, 63, 180, 182, 70, 190, 27, 57, 6, 124, 26, 124, 19, 27, 119, 75, 100, 255, 240, 254, 253, + 133, 182, 5, 1, 253, 3, 216, 102, 159, 27, 209, 49, 144, 225, 47, 51, 170, 20, 128, 255, 216, 102, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 251, 159, 69, 82, 124, 101, 7, 98, 159, 66, 196, 148, 255, 27, 182, 231, 21, 25, 24, + 12, 195, 203, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1593, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11768727570197585431" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c16b81de" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11072025867661094780" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7f7ba604861b08" + }, + { + "_tag": "ByteArray", + "bytearray": "8023f9d639079e560d2099" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16361678402208926283" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6dd9d91e538a23f0641" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2007425168305376333" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3876da4202cc384c5567b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11799052288266316891" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56506c4de553" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "159918" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c5d3968" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16632312611931252601" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7139722868451540051" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15933789601396319040" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1ba352eb5f27f91e179f44c16b81ded8669f1b99a7bcdd51e02f7c9f477f7ba604861b084b8023f9d639079e560d20991be3105bd1a4d80a4b4ad6dd9d91e538a23f06411b1bdbce8e06054c4dffffbf4b3876da4202cc384c5567b71ba3bea78ac85fac5b4656506c4de55343159918445c5d39681be6d1d832e3696779ffd8669f1b6315641ef8c97c539f1bdd203138bd0a6340ffffffff8080ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 163, 82, 235, 95, 39, 249, 30, 23, 159, 68, 193, 107, 129, 222, 216, 102, 159, 27, 153, + 167, 188, 221, 81, 224, 47, 124, 159, 71, 127, 123, 166, 4, 134, 27, 8, 75, 128, 35, 249, 214, 57, 7, 158, 86, 13, + 32, 153, 27, 227, 16, 91, 209, 164, 216, 10, 75, 74, 214, 221, 157, 145, 229, 56, 162, 63, 6, 65, 27, 27, 219, + 206, 142, 6, 5, 76, 77, 255, 255, 191, 75, 56, 118, 218, 66, 2, 204, 56, 76, 85, 103, 183, 27, 163, 190, 167, 138, + 200, 95, 172, 91, 70, 86, 80, 108, 77, 229, 83, 67, 21, 153, 24, 68, 92, 93, 57, 104, 27, 230, 209, 216, 50, 227, + 105, 103, 121, 255, 216, 102, 159, 27, 99, 21, 100, 30, 248, 201, 124, 83, 159, 27, 221, 32, 49, 56, 189, 10, 99, + 64, 255, 255, 255, 255, 128, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1594, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13386464530403113852" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12368053402314084927" + } + } + ] + }, + "cborHex": "9f1bb9c64690dd0b3b7c1baba4270a67fe123fff", + "cborBytes": [159, 27, 185, 198, 70, 144, 221, 11, 59, 124, 27, 171, 164, 39, 10, 103, 254, 18, 63, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1595, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4739974050367052658" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7efba9aa3ae6" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1398998376481284549" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12297430577355745602" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1741744069928352918" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14893757404763939979" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3446576302526981522" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11414632329581705722" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12599969567719750576" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10371778845907463337" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15449547352499136916" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ec4eb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16684828428232357039" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87edbc" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8403926133467185738" + } + } + ] + }, + "cborHex": "9fbf1b41c7c5490cb29b72467efba9aa3ae6ffbf1b136a3d9c7783e1c51baaa93ff49d50e9421b182beb00e1b8fc961bceb14172f9cc648b1b2fd4b2e2eb6665921b9e68eba05e6839fa1baedc159078aafbb01b8feff5e88739aca91bd667d1763e49a994439ec4eb1be78c6b0e3320f4af4387edbcff1b74a0be4adfef024aff", + "cborBytes": [ + 159, 191, 27, 65, 199, 197, 73, 12, 178, 155, 114, 70, 126, 251, 169, 170, 58, 230, 255, 191, 27, 19, 106, 61, + 156, 119, 131, 225, 197, 27, 170, 169, 63, 244, 157, 80, 233, 66, 27, 24, 43, 235, 0, 225, 184, 252, 150, 27, 206, + 177, 65, 114, 249, 204, 100, 139, 27, 47, 212, 178, 226, 235, 102, 101, 146, 27, 158, 104, 235, 160, 94, 104, 57, + 250, 27, 174, 220, 21, 144, 120, 170, 251, 176, 27, 143, 239, 245, 232, 135, 57, 172, 169, 27, 214, 103, 209, 118, + 62, 73, 169, 148, 67, 158, 196, 235, 27, 231, 140, 107, 14, 51, 32, 244, 175, 67, 135, 237, 188, 255, 27, 116, + 160, 190, 74, 223, 239, 2, 74, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1596, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10456240119243462537" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6fbdd0b12dc518" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12892265157072303550" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11676587493124776745" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13419939458808687712" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a2e904a9893d20a0dd23c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14114925891430417843" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17743800761619765362" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55ade859e2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17957643734822780790" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17199773215561230955" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "77ff551d86" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ecd8225" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "351805073d3d0f5b64037c4e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7eaa0efea9e5a3fb58" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c34ba9e35d04a4bf2cc487" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc56130fc6c5057b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7366110411181332505" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13150753215810773640" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4821144249078380283" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17943250087741316890" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8c8e42dfa3742e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18139676326660442780" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2986333273588292492" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17277386218765739524" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "791428730907792354" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15203416826618637913" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b5c54502e32fb0208970" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11179364536544409482" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5586587457015327610" + } + }, + { + "_tag": "ByteArray", + "bytearray": "453b513a10c053c7923967" + }, + { + "_tag": "ByteArray", + "bytearray": "e482da1652" + }, + { + "_tag": "ByteArray", + "bytearray": "68f9b1868c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4860138499293292228" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16366837551230598681" + } + }, + { + "_tag": "ByteArray", + "bytearray": "916bf3" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6724803255502475081" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7d81a5126" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7970355406030008883" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4267575289135119093" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8922729041271800628" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2971570833376903626" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9341078115536764977" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bae7fd26db7000eeb4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15804752637024034122" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10288153141710236426" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16066716638426023021" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6723083306033219452" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "778680728842296762" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8709523294869007029" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79db6e2dc15bf9ec9b8f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11696163168882702750" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db2cc83340" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12589695486750392377" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16633492430876672253" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b911c06fd29b1d7899f476fbdd0b12dc518ffffbf1bb2ea86daad70b5be1ba20b9275b478a3291bba3d33d5fd8a2c604b8a2e904a9893d20a0dd23c1bc3e24a506dac85b34277f21bf63ea4c831a6d8724555ade859e21bf9365dd549217f761beeb1de9c7ace2a6bff4577ff551d86ffbf446ecd82254c351805073d3d0f5b64037c4e497eaa0efea9e5a3fb584bc34ba9e35d04a4bf2cc48748bc56130fc6c5057b1b6639ae6442c51819ff1bb680dc5fc53a2288d8669f1b42e82526a93bf6fb9fd8669f1bf9033ae32bd15f1a9f478c8e42dfa3742effff1bfbbd1382cf288a9c1b2971964a4128db8cffff9f9f1befc59b39f8c2e6041b0afbb83cd2cc13e21bd2fd630d7accee594ab5c54502e32fb0208970ff9f1b9b2514d0af54378a1b4d878bb1720d2b7a4b453b513a10c053c792396745e482da16524568f9b1868cff9f1b4372ae370993a6c41be322b009a19fbe1943916bf3ffbf1b5d534cee6c9d8f4945b7d81a51261b6e9c6403560872331b3b39791d69223af51b7bd3e6c9d41143341b293d23edcc5781ca1b81a22d0e0fbe803149bae7fd26db7000eeb41bdb55c2c944bc5d4a1b8ec6dcc5fe752b0a1bdef871a8543dc46d1b5d4d30a57b78077cffbf1b0ace6dff4c165dba410d1b78de714aa9a82ab54a79db6e2dc15bf9ec9b8f1ba2511e6ee442b99e45db2cc833401baeb79557961880391be6d6093ce48d80fdffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 145, 28, 6, 253, 41, 177, 215, 137, 159, 71, 111, 189, 208, 177, 45, 197, 24, 255, + 255, 191, 27, 178, 234, 134, 218, 173, 112, 181, 190, 27, 162, 11, 146, 117, 180, 120, 163, 41, 27, 186, 61, 51, + 213, 253, 138, 44, 96, 75, 138, 46, 144, 74, 152, 147, 210, 10, 13, 210, 60, 27, 195, 226, 74, 80, 109, 172, 133, + 179, 66, 119, 242, 27, 246, 62, 164, 200, 49, 166, 216, 114, 69, 85, 173, 232, 89, 226, 27, 249, 54, 93, 213, 73, + 33, 127, 118, 27, 238, 177, 222, 156, 122, 206, 42, 107, 255, 69, 119, 255, 85, 29, 134, 255, 191, 68, 110, 205, + 130, 37, 76, 53, 24, 5, 7, 61, 61, 15, 91, 100, 3, 124, 78, 73, 126, 170, 14, 254, 169, 229, 163, 251, 88, 75, + 195, 75, 169, 227, 93, 4, 164, 191, 44, 196, 135, 72, 188, 86, 19, 15, 198, 197, 5, 123, 27, 102, 57, 174, 100, + 66, 197, 24, 25, 255, 27, 182, 128, 220, 95, 197, 58, 34, 136, 216, 102, 159, 27, 66, 232, 37, 38, 169, 59, 246, + 251, 159, 216, 102, 159, 27, 249, 3, 58, 227, 43, 209, 95, 26, 159, 71, 140, 142, 66, 223, 163, 116, 46, 255, 255, + 27, 251, 189, 19, 130, 207, 40, 138, 156, 27, 41, 113, 150, 74, 65, 40, 219, 140, 255, 255, 159, 159, 27, 239, + 197, 155, 57, 248, 194, 230, 4, 27, 10, 251, 184, 60, 210, 204, 19, 226, 27, 210, 253, 99, 13, 122, 204, 238, 89, + 74, 181, 197, 69, 2, 227, 47, 176, 32, 137, 112, 255, 159, 27, 155, 37, 20, 208, 175, 84, 55, 138, 27, 77, 135, + 139, 177, 114, 13, 43, 122, 75, 69, 59, 81, 58, 16, 192, 83, 199, 146, 57, 103, 69, 228, 130, 218, 22, 82, 69, + 104, 249, 177, 134, 140, 255, 159, 27, 67, 114, 174, 55, 9, 147, 166, 196, 27, 227, 34, 176, 9, 161, 159, 190, 25, + 67, 145, 107, 243, 255, 191, 27, 93, 83, 76, 238, 108, 157, 143, 73, 69, 183, 216, 26, 81, 38, 27, 110, 156, 100, + 3, 86, 8, 114, 51, 27, 59, 57, 121, 29, 105, 34, 58, 245, 27, 123, 211, 230, 201, 212, 17, 67, 52, 27, 41, 61, 35, + 237, 204, 87, 129, 202, 27, 129, 162, 45, 14, 15, 190, 128, 49, 73, 186, 231, 253, 38, 219, 112, 0, 238, 180, 27, + 219, 85, 194, 201, 68, 188, 93, 74, 27, 142, 198, 220, 197, 254, 117, 43, 10, 27, 222, 248, 113, 168, 84, 61, 196, + 109, 27, 93, 77, 48, 165, 123, 120, 7, 124, 255, 191, 27, 10, 206, 109, 255, 76, 22, 93, 186, 65, 13, 27, 120, + 222, 113, 74, 169, 168, 42, 181, 74, 121, 219, 110, 45, 193, 91, 249, 236, 155, 143, 27, 162, 81, 30, 110, 228, + 66, 185, 158, 69, 219, 44, 200, 51, 64, 27, 174, 183, 149, 87, 150, 24, 128, 57, 27, 230, 214, 9, 60, 228, 141, + 128, 253, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1597, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "817838dd8b08" + }, + { + "_tag": "ByteArray", + "bytearray": "51de0557b23597c1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12974501223929268431" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6284481451784586993" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12216709891217237921" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10117428762878556850" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16222108815741245978" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ef6868bb018" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16241912702851036824" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17190259432476628779" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f46817838dd8b084851de0557b23597c19f1bb40eb01f0e2cc8cfff1b5736f6957326c6f1bf1ba98a78eb4e0127a11b8c6853dafbb23ab21be1208204fdfd5a1a467ef6868bb0181be166dd8cc65736981bee9011e03d93d72bffffff", + "cborBytes": [ + 159, 159, 70, 129, 120, 56, 221, 139, 8, 72, 81, 222, 5, 87, 178, 53, 151, 193, 159, 27, 180, 14, 176, 31, 14, 44, + 200, 207, 255, 27, 87, 54, 246, 149, 115, 38, 198, 241, 191, 27, 169, 138, 120, 235, 78, 1, 39, 161, 27, 140, 104, + 83, 218, 251, 178, 58, 178, 27, 225, 32, 130, 4, 253, 253, 90, 26, 70, 126, 246, 134, 139, 176, 24, 27, 225, 102, + 221, 140, 198, 87, 54, 152, 27, 238, 144, 17, 224, 61, 147, 215, 43, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1598, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12851702652325242151" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7080904847284634437" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf1bb25a6b7896caa5271b62446d713ebe0345ffd9050280ff", + "cborBytes": [ + 159, 191, 27, 178, 90, 107, 120, 150, 202, 165, 39, 27, 98, 68, 109, 113, 62, 190, 3, 69, 255, 217, 5, 2, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1599, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8468249304430047146" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e86b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16341862226481838065" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8254376990f58d272" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3288412970491214953" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "98" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12a76ec14865c4c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3900935792368542789" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ee64ce8b611db664c5f1686" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3524451793284006152" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5481819b6168d8a5466d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2221764312855642664" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89d3b20e952f31c9704896" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7075954083747149466" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "020406fb06756c5e" + } + ] + }, + "cborHex": "9f1b758543e02c006faabf431e86b81be2c9f51cb1d2f7f149c8254376990f58d2724109ffd8669f1b2da2ca2c84ea7c699f4198ffffbf4812a76ec14865c4c81b3622e86f63bbe4454c4ee64ce8b611db664c5f16861b30e95e3b8eae81084a5481819b6168d8a5466d1b1ed54adf026682284b89d3b20e952f31c97048961b6232d6bfc8b9369aff48020406fb06756c5eff", + "cborBytes": [ + 159, 27, 117, 133, 67, 224, 44, 0, 111, 170, 191, 67, 30, 134, 184, 27, 226, 201, 245, 28, 177, 210, 247, 241, 73, + 200, 37, 67, 118, 153, 15, 88, 210, 114, 65, 9, 255, 216, 102, 159, 27, 45, 162, 202, 44, 132, 234, 124, 105, 159, + 65, 152, 255, 255, 191, 72, 18, 167, 110, 193, 72, 101, 196, 200, 27, 54, 34, 232, 111, 99, 187, 228, 69, 76, 78, + 230, 76, 232, 182, 17, 219, 102, 76, 95, 22, 134, 27, 48, 233, 94, 59, 142, 174, 129, 8, 74, 84, 129, 129, 155, + 97, 104, 216, 165, 70, 109, 27, 30, 213, 74, 223, 2, 102, 130, 40, 75, 137, 211, 178, 14, 149, 47, 49, 201, 112, + 72, 150, 27, 98, 50, 214, 191, 200, 185, 54, 154, 255, 72, 2, 4, 6, 251, 6, 117, 108, 94, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1600, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10093380127825666086" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7431637570915670703" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9934210822796438877" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10203319445941678631" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5490296415743060604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8437999196297465088" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7138921623780802616" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b8c12e3bfce0920269fbf1b67227aff09e01aaf1b89dd681c109f6d5d41c11b8d9978fa01307227ffbf1b4c31738053f72a7c1b7519cb9006578d00ff1b63128b64a8cf4038ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 140, 18, 227, 191, 206, 9, 32, 38, 159, 191, 27, 103, 34, 122, 255, 9, 224, 26, 175, 27, + 137, 221, 104, 28, 16, 159, 109, 93, 65, 193, 27, 141, 153, 120, 250, 1, 48, 114, 39, 255, 191, 27, 76, 49, 115, + 128, 83, 247, 42, 124, 27, 117, 25, 203, 144, 6, 87, 141, 0, 255, 27, 99, 18, 139, 100, 168, 207, 64, 56, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1601, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e035224177985ee56b429d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3549443626133197913" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5d124b69" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17753450404943384918" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10333105095861131296" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5395d66" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15385349650389214705" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6505098404823458883" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10755523508867494452" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11730217865815955827" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4be035224177985ee56b429dd8669f1b3142282c15f1945980ff445d124b69d8669f1bf660ed14dc2a51569f1b8f6690566994d82044f5395d66d8669f1bd583bdfdf0a125f19f1b5a46c088a07664431b95434ba56768f2341ba2ca1affe5e69973ffffffffff", + "cborBytes": [ + 159, 75, 224, 53, 34, 65, 119, 152, 94, 229, 107, 66, 157, 216, 102, 159, 27, 49, 66, 40, 44, 21, 241, 148, 89, + 128, 255, 68, 93, 18, 75, 105, 216, 102, 159, 27, 246, 96, 237, 20, 220, 42, 81, 86, 159, 27, 143, 102, 144, 86, + 105, 148, 216, 32, 68, 245, 57, 93, 102, 216, 102, 159, 27, 213, 131, 189, 253, 240, 161, 37, 241, 159, 27, 90, + 70, 192, 136, 160, 118, 100, 67, 27, 149, 67, 75, 165, 103, 104, 242, 52, 27, 162, 202, 26, 255, 229, 230, 153, + 115, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1602, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15389869605258433526" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "421f38ac0c68af0af40663" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bd593ccddf10293f69f4b421f38ac0c68af0af40663ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 213, 147, 204, 221, 241, 2, 147, 246, 159, 75, 66, 31, 56, 172, 12, 104, 175, 10, 244, 6, + 99, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1603, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8543368475063116307" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5989882015600514128" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9797897444536772957" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "27188d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4006991087894765941" + } + }, + { + "_tag": "ByteArray", + "bytearray": "167007801e8661" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17328228113431084925" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fcf8" + } + ] + }, + "cborHex": "9fd8669f1b7690245d056862139f1b532055f51a5e9450d8669f1b87f91fd07752695d9f4327188dffff1b379bb12a1c1fa17547167007801e86611bf07a3ba907ff3f7dffff42fcf8ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 118, 144, 36, 93, 5, 104, 98, 19, 159, 27, 83, 32, 85, 245, 26, 94, 148, 80, 216, 102, + 159, 27, 135, 249, 31, 208, 119, 82, 105, 93, 159, 67, 39, 24, 141, 255, 255, 27, 55, 155, 177, 42, 28, 31, 161, + 117, 71, 22, 112, 7, 128, 30, 134, 97, 27, 240, 122, 59, 169, 7, 255, 63, 125, 255, 255, 66, 252, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1604, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "21" + } + ] + }, + "cborHex": "9f4121ff", + "cborBytes": [159, 65, 33, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1605, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10224899037265833702" + } + } + ] + }, + "cborHex": "9f1b8de623802476aee6ff", + "cborBytes": [159, 27, 141, 230, 35, 128, 36, 118, 174, 230, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1606, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1388156302595751248" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18161531138834083594" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17647013898596781609" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1910239796536323518" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "341f3d3f8fb5e438cb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4627607523407581174" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "821796b271" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10639965943185019438" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1816266127744957287" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13812425692025790126" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15446893548085471353" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "042ab9e0716d605d050b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17683132447232237273" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3410087172380211997" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5ff4cf034ca" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1343b8cd6cf07d509fd8669f1bfc0ab858cb66af0a9f1bf4e6c9a4943e0e29ffff80bf1b1a8288f95c5cadbe49341f3d3f8fb5e438cb1b4038908640a24ff645821796b2711b93a8c0a701cc122e1b1934ac6b91cffb671bbfaf97fc4bad1eae1bd65e63d740e86879ffffff9f4a042ab9e0716d605d050b9f1bf5671b4581761ed91b2f53103742d6bb1d46f5ff4cf034caffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 19, 67, 184, 205, 108, 240, 125, 80, 159, 216, 102, 159, 27, 252, 10, 184, 88, 203, 102, + 175, 10, 159, 27, 244, 230, 201, 164, 148, 62, 14, 41, 255, 255, 128, 191, 27, 26, 130, 136, 249, 92, 92, 173, + 190, 73, 52, 31, 61, 63, 143, 181, 228, 56, 203, 27, 64, 56, 144, 134, 64, 162, 79, 246, 69, 130, 23, 150, 178, + 113, 27, 147, 168, 192, 167, 1, 204, 18, 46, 27, 25, 52, 172, 107, 145, 207, 251, 103, 27, 191, 175, 151, 252, 75, + 173, 30, 174, 27, 214, 94, 99, 215, 64, 232, 104, 121, 255, 255, 255, 159, 74, 4, 42, 185, 224, 113, 109, 96, 93, + 5, 11, 159, 27, 245, 103, 27, 69, 129, 118, 30, 217, 27, 47, 83, 16, 55, 66, 214, 187, 29, 70, 245, 255, 76, 240, + 52, 202, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1607, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "975366427130301625" + } + } + ] + } + ] + }, + "cborHex": "9f9f1b0d89329906f18cb9ffff", + "cborBytes": [159, 159, 27, 13, 137, 50, 153, 6, 241, 140, 185, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1608, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2884961076772790697" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2888436547817038596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29a7974081" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6874260364591004049" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1551026059732161201" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12322232049608647957" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e961fa22e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15169860871804690910" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63940c5c04674522ef2a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17097096364926288363" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8591817319413522708" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b280970d06bdee1a9412e1b2815c9bc94e3e3044529a79740811b5f66476154fe79911b158659fbcfb592b11bab015cc35cdb6515455e961fa22e1bd2862c16ec0421de4a63940c5c04674522ef2a1bed45168f420dc1eb1b773c4454a2b12114ffff", + "cborBytes": [ + 159, 191, 27, 40, 9, 112, 208, 107, 222, 225, 169, 65, 46, 27, 40, 21, 201, 188, 148, 227, 227, 4, 69, 41, 167, + 151, 64, 129, 27, 95, 102, 71, 97, 84, 254, 121, 145, 27, 21, 134, 89, 251, 207, 181, 146, 177, 27, 171, 1, 92, + 195, 92, 219, 101, 21, 69, 94, 150, 31, 162, 46, 27, 210, 134, 44, 22, 236, 4, 33, 222, 74, 99, 148, 12, 92, 4, + 103, 69, 34, 239, 42, 27, 237, 69, 22, 143, 66, 13, 193, 235, 27, 119, 60, 68, 84, 162, 177, 33, 20, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1609, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3276092359465991530" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5433c6f9ae457ba72c21" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7582091433580878206" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05f9020075" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b2d7704a4b9577d6a9f4a5433c6f9ae457ba72c211b6938fffcb91ed97effff4505f902007580ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 45, 119, 4, 164, 185, 87, 125, 106, 159, 74, 84, 51, 198, 249, 174, 69, 123, 167, 44, 33, + 27, 105, 56, 255, 252, 185, 30, 217, 126, 255, 255, 69, 5, 249, 2, 0, 117, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1610, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "07fc" + }, + { + "_tag": "ByteArray", + "bytearray": "eea1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "840973616076261921" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc8eb8357d498bac83" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04f8818804ff060671e6" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f4207fc42eea1bf1b0babbd0c53b38a2149fc8eb8357d498bac83ffd87d9f4a04f8818804ff060671e6ffa0ff", + "cborBytes": [ + 159, 66, 7, 252, 66, 238, 161, 191, 27, 11, 171, 189, 12, 83, 179, 138, 33, 73, 252, 142, 184, 53, 125, 73, 139, + 172, 131, 255, 216, 125, 159, 74, 4, 248, 129, 136, 4, 255, 6, 6, 113, 230, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1611, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15110568095843314574" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c28f50eb1a02" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15199254908546770499" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11463347991356370461" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18414599124581210992" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4601043496490268598" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3149483620501814037" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "60760344545555397" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aee9e6a4a6e7c1a0c1b0" + }, + { + "_tag": "ByteArray", + "bytearray": "a8d50b2dd4dbc480a80e8d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7411006800570868033" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a6d965007331a30a02ff61" + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1bd1b3859fbb176b8e46c28f50eb1a021bd2ee99cf6a8ae6431b9f15fe43417bee1d1bff8dcc56cde1db701b3fda30aec46c77b6ff9fd8669f1b2bb536aa89ebfb159f1b00d7dd36211173c54aaee9e6a4a6e7c1a0c1b04ba8d50b2dd4dbc480a80e8d1b66d92f6b8007e1414ba6d965007331a30a02ff61ffffffff", + "cborBytes": [ + 159, 191, 27, 209, 179, 133, 159, 187, 23, 107, 142, 70, 194, 143, 80, 235, 26, 2, 27, 210, 238, 153, 207, 106, + 138, 230, 67, 27, 159, 21, 254, 67, 65, 123, 238, 29, 27, 255, 141, 204, 86, 205, 225, 219, 112, 27, 63, 218, 48, + 174, 196, 108, 119, 182, 255, 159, 216, 102, 159, 27, 43, 181, 54, 170, 137, 235, 251, 21, 159, 27, 0, 215, 221, + 54, 33, 17, 115, 197, 74, 174, 233, 230, 164, 166, 231, 193, 160, 193, 176, 75, 168, 213, 11, 45, 212, 219, 196, + 128, 168, 14, 141, 27, 102, 217, 47, 107, 128, 7, 225, 65, 75, 166, 217, 101, 0, 115, 49, 163, 10, 2, 255, 97, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1612, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4555420802633671261" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07f40b0735" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12631253265129379660" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "600b48da4246cca2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16692750982725846311" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4188795086420870565" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12086166656985229197" + } + } + ] + }, + "cborHex": "9fbf1b3f381b159767a25d4507f40b07351baf4b39ebe007974c48600b48da4246cca21be7a89093a96d45271b3a2196f01b0485a51bfffffffffffffff302ff1ba7bab08a0dc6678dff", + "cborBytes": [ + 159, 191, 27, 63, 56, 27, 21, 151, 103, 162, 93, 69, 7, 244, 11, 7, 53, 27, 175, 75, 57, 235, 224, 7, 151, 76, 72, + 96, 11, 72, 218, 66, 70, 204, 162, 27, 231, 168, 144, 147, 169, 109, 69, 39, 27, 58, 33, 150, 240, 27, 4, 133, + 165, 27, 255, 255, 255, 255, 255, 255, 255, 243, 2, 255, 27, 167, 186, 176, 138, 13, 198, 103, 141, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1613, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4713088130081581888" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11825479453589168545" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b431ed56c996" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10853803621085885915" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ef1a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18d2e7086f5354a2f399da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56b807" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17515723303480974642" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96cd7ca4a63525135922f5be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13097318701104635767" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9969b90eee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e15cb02d37c3906413" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9833119233917653694" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eac0b18b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2aa5636b7f8eb3117b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "11dbc1409ce8ff" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bdc19360" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2041623329688109714" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b409" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6614739752958421719" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3496066783895442686" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7387959282236984616" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10610098361730620220" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10315067153837644992" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9269af86a70e39dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10653180660944339353" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d636877eabc354e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12570380675350753769" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "494203045aa1d7" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2511952594448757307" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6d22e81a46" + }, + { + "_tag": "ByteArray", + "bytearray": "30d03306971a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4369525820966726773" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5079d0d516dd26cddd66eb22" + } + ] + } + ] + }, + "cborHex": "9f1b416840aeec9f6b401ba41c8ae8b1dce1a19fbf46b431ed56c9961b96a074e330ac35dbffbf433ef1a24b18d2e7086f5354a2f399da4356b8071bf314598ad003dd324c96cd7ca4a63525135922f5be1bb5c305f7516c1f7741a4459969b90eee49e15cb02d37c39064131b887641d85bb912be44eac0b18b492aa5636b7f8eb3117bff4711dbc1409ce8ffff44bdc193609fbf1b1c554d99f335c29242b4091b5bcc46c248bdead71b308486378d2154fe1b66874dd2f8c90d281b933ea43ecae85b3c1b8f267aecc2cadcc0489269af86a70e39dd1b93d7b35e3fa6019948d636877eabc354e91bae72f69f9db771e947494203045aa1d7ffd8669f1b22dc3f9364bd323b9f456d22e81a464630d03306971a1b3ca3ac955b9e6c75ffff4c5079d0d516dd26cddd66eb22ffff", + "cborBytes": [ + 159, 27, 65, 104, 64, 174, 236, 159, 107, 64, 27, 164, 28, 138, 232, 177, 220, 225, 161, 159, 191, 70, 180, 49, + 237, 86, 201, 150, 27, 150, 160, 116, 227, 48, 172, 53, 219, 255, 191, 67, 62, 241, 162, 75, 24, 210, 231, 8, 111, + 83, 84, 162, 243, 153, 218, 67, 86, 184, 7, 27, 243, 20, 89, 138, 208, 3, 221, 50, 76, 150, 205, 124, 164, 166, + 53, 37, 19, 89, 34, 245, 190, 27, 181, 195, 5, 247, 81, 108, 31, 119, 65, 164, 69, 153, 105, 185, 14, 238, 73, + 225, 92, 176, 45, 55, 195, 144, 100, 19, 27, 136, 118, 65, 216, 91, 185, 18, 190, 68, 234, 192, 177, 139, 73, 42, + 165, 99, 107, 127, 142, 179, 17, 123, 255, 71, 17, 219, 193, 64, 156, 232, 255, 255, 68, 189, 193, 147, 96, 159, + 191, 27, 28, 85, 77, 153, 243, 53, 194, 146, 66, 180, 9, 27, 91, 204, 70, 194, 72, 189, 234, 215, 27, 48, 132, + 134, 55, 141, 33, 84, 254, 27, 102, 135, 77, 210, 248, 201, 13, 40, 27, 147, 62, 164, 62, 202, 232, 91, 60, 27, + 143, 38, 122, 236, 194, 202, 220, 192, 72, 146, 105, 175, 134, 167, 14, 57, 221, 27, 147, 215, 179, 94, 63, 166, + 1, 153, 72, 214, 54, 135, 126, 171, 195, 84, 233, 27, 174, 114, 246, 159, 157, 183, 113, 233, 71, 73, 66, 3, 4, + 90, 161, 215, 255, 216, 102, 159, 27, 34, 220, 63, 147, 100, 189, 50, 59, 159, 69, 109, 34, 232, 26, 70, 70, 48, + 208, 51, 6, 151, 26, 27, 60, 163, 172, 149, 91, 158, 108, 117, 255, 255, 76, 80, 121, 208, 213, 22, 221, 38, 205, + 221, 102, 235, 34, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1614, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "162067692580037491" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bae3e75c7abd564226a02a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6264298582689879546" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c1612f918c336d2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6938756358754244545" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad2e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87d161e81812" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9639941dda287" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8845348818062699686" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7820964861028233259" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b023fc7b52dcce3734bbae3e75c7abd564226a02a1b56ef425f0c3695fa488c1612f918c336d21b604b6a252a8797c142ad2e4687d161e8181247b9639941dda287ff1b7ac0fde2a70c6ca69f1b6c89a61a9666702bffffff", + "cborBytes": [ + 159, 159, 191, 27, 2, 63, 199, 181, 45, 204, 227, 115, 75, 186, 227, 231, 92, 122, 189, 86, 66, 38, 160, 42, 27, + 86, 239, 66, 95, 12, 54, 149, 250, 72, 140, 22, 18, 249, 24, 195, 54, 210, 27, 96, 75, 106, 37, 42, 135, 151, 193, + 66, 173, 46, 70, 135, 209, 97, 232, 24, 18, 71, 185, 99, 153, 65, 221, 162, 135, 255, 27, 122, 192, 253, 226, 167, + 12, 108, 166, 159, 27, 108, 137, 166, 26, 150, 102, 112, 43, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1615, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "853868913246788880" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8c738d3f71ba14a6" + }, + { + "_tag": "ByteArray", + "bytearray": "705533c5" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b0bd98d40aad2dd109f488c738d3f71ba14a644705533c5ffff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 11, 217, 141, 64, 170, 210, 221, 16, 159, 72, 140, 115, 141, 63, 113, 186, 20, 166, 68, + 112, 85, 51, 197, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1616, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5371838734536736493" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11183283904575887489" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "152930404081820180" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16820779627835648880" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6837040851856704284" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c5e9d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1292268811920000780" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10087972887906851306" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6090d3cd68d3" + }, + { + "_tag": "ByteArray", + "bytearray": "fd6526ab" + }, + { + "_tag": "ByteArray", + "bytearray": "0b7a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3828245847506731478" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cd" + }, + { + "_tag": "ByteArray", + "bytearray": "6e92f58c53effd9a9a6bf7db" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15696280668115746675" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8899343745444846552" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53ac0609" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2171cfce7d8abed2b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6ab0968f903cabb3f13" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0129c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "babcd37956ba" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + ] + }, + "cborHex": "9fbf1b4a8c9ade2abefeed1b9b330175aa96d881ffd8669f1bffffffffffffffed9fd8669f1b021f51646aa762149f1be96f69f382456b701b5ee20c6e39c0c31c43c5e9d11b11ef0fa340cec70cffffd8669f1b8bffade4a77599ea80ffffff9fd87f9f466090d3cd68d344fd6526ab420b7a14ff9f1b3520a950bd80c1d641cd4c6e92f58c53effd9a9a6bf7db1bd9d4641aeddebf731b7b80d1fc59559bd8ffffbf41dc4453ac060949e2171cfce7d8abed2b4ad6ab0968f903cabb3f1343f0129c46babcd37956baff1bfffffffffffffff5ff", + "cborBytes": [ + 159, 191, 27, 74, 140, 154, 222, 42, 190, 254, 237, 27, 155, 51, 1, 117, 170, 150, 216, 129, 255, 216, 102, 159, + 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 216, 102, 159, 27, 2, 31, 81, 100, 106, 167, 98, 20, 159, 27, + 233, 111, 105, 243, 130, 69, 107, 112, 27, 94, 226, 12, 110, 57, 192, 195, 28, 67, 197, 233, 209, 27, 17, 239, 15, + 163, 64, 206, 199, 12, 255, 255, 216, 102, 159, 27, 139, 255, 173, 228, 167, 117, 153, 234, 128, 255, 255, 255, + 159, 216, 127, 159, 70, 96, 144, 211, 205, 104, 211, 68, 253, 101, 38, 171, 66, 11, 122, 20, 255, 159, 27, 53, 32, + 169, 80, 189, 128, 193, 214, 65, 205, 76, 110, 146, 245, 140, 83, 239, 253, 154, 154, 107, 247, 219, 27, 217, 212, + 100, 26, 237, 222, 191, 115, 27, 123, 128, 209, 252, 89, 85, 155, 216, 255, 255, 191, 65, 220, 68, 83, 172, 6, 9, + 73, 226, 23, 28, 252, 231, 216, 171, 237, 43, 74, 214, 171, 9, 104, 249, 3, 202, 187, 63, 19, 67, 240, 18, 156, + 70, 186, 188, 211, 121, 86, 186, 255, 27, 255, 255, 255, 255, 255, 255, 255, 245, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1617, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8799f80ffff", + "cborBytes": [159, 216, 121, 159, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1618, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5958753948486629209" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6281e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8755254741988295501" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "643682810843355569" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9292716368893253722" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "578a97c4a6a1" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16437199276896076507" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12006930092813736848" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7155ce2dfa1fa4a4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "89ae2e6e8f6dbef72dc1b8da" + }, + { + "_tag": "ByteArray", + "bytearray": "635917520d5f" + }, + { + "_tag": "ByteArray", + "bytearray": "1fceccff4b" + }, + { + "_tag": "ByteArray", + "bytearray": "f240f3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3911146242524493882" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b52b1bf253380775943e6281e1b7980e9ccee44434d1b08eed21b2857d9b11b80f65c4d7657185a46578a97c4a6a1ffd8669f1be41ca9a781b2c2db80ff1ba6a12f4dd11c5b90487155ce2dfa1fa4a49f809f4c89ae2e6e8f6dbef72dc1b8da46635917520d5f451fceccff4b43f240f31b36472ec91246b83affffff", + "cborBytes": [ + 159, 191, 27, 82, 177, 191, 37, 51, 128, 119, 89, 67, 230, 40, 30, 27, 121, 128, 233, 204, 238, 68, 67, 77, 27, 8, + 238, 210, 27, 40, 87, 217, 177, 27, 128, 246, 92, 77, 118, 87, 24, 90, 70, 87, 138, 151, 196, 166, 161, 255, 216, + 102, 159, 27, 228, 28, 169, 167, 129, 178, 194, 219, 128, 255, 27, 166, 161, 47, 77, 209, 28, 91, 144, 72, 113, + 85, 206, 45, 250, 31, 164, 164, 159, 128, 159, 76, 137, 174, 46, 110, 143, 109, 190, 247, 45, 193, 184, 218, 70, + 99, 89, 23, 82, 13, 95, 69, 31, 206, 204, 255, 75, 67, 242, 64, 243, 27, 54, 71, 46, 201, 18, 70, 184, 58, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1619, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8592731082033608233" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6191681423332556840" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "edf54d8819f7f55e6dfb" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b773f8364931236291b55ed4573181f402841fd4aedf54d8819f7f55e6dfbffff", + "cborBytes": [ + 159, 191, 27, 119, 63, 131, 100, 147, 18, 54, 41, 27, 85, 237, 69, 115, 24, 31, 64, 40, 65, 253, 74, 237, 245, 77, + 136, 25, 247, 245, 94, 109, 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1620, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "311529249309416687" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3577617067529662331" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18026619076483602044" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11791929509712513540" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7294981110114442388" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "254218662160016246" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "771895872419598698" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6652831336769926778" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "554f71" + }, + { + "_tag": "ByteArray", + "bytearray": "218aab6f7649ea" + } + ] + } + ] + } + ] + }, + "cborHex": "9fa09fbf0c419f1b0452c633a23b5cef091b31a63fc4947aef7b1bfa2b6a8a7b15d67c1ba3a55969aadc4a04011bfffffffffffffff902ffd87c9f1b653cfaab4f8e5c94ffffd8669f1b03872a86bd52a3769f9f1b0ab65334cf29116affd8669f1b5c539ada42c2367a9f43554f7147218aab6f7649eaffffffffff", + "cborBytes": [ + 159, 160, 159, 191, 12, 65, 159, 27, 4, 82, 198, 51, 162, 59, 92, 239, 9, 27, 49, 166, 63, 196, 148, 122, 239, + 123, 27, 250, 43, 106, 138, 123, 21, 214, 124, 27, 163, 165, 89, 105, 170, 220, 74, 4, 1, 27, 255, 255, 255, 255, + 255, 255, 255, 249, 2, 255, 216, 124, 159, 27, 101, 60, 250, 171, 79, 142, 92, 148, 255, 255, 216, 102, 159, 27, + 3, 135, 42, 134, 189, 82, 163, 118, 159, 159, 27, 10, 182, 83, 52, 207, 41, 17, 106, 255, 216, 102, 159, 27, 92, + 83, 154, 218, 66, 194, 54, 122, 159, 67, 85, 79, 113, 71, 33, 138, 171, 111, 118, 73, 234, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1621, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3813462386617786288" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1881553265446498070" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18129086503176352151" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7721765652136109468" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9223314453451965088" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11066327258791959848" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8826941280635115301" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14880452947347075415" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5d845ed2f2f" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6567" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1518238840858146927" + } + }, + { + "_tag": "ByteArray", + "bytearray": "60811676c10cd4" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7359822298058745629" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7774242738944442639" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11885613548440834561" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ba951c49fed2a4bc2fb257e5" + }, + { + "_tag": "ByteArray", + "bytearray": "822ad870" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8580987709673481094" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6944311051563978697" + } + } + ] + }, + "cborHex": "9f1b34ec23d606aa9fb09fbf1b1a1c9eb9dcea2f161bfb97741f6427b1971b6b2938f2ee62a59c1b7fffcba0d1bb02a01b99937e028c845d281b7a7f9853dd7cd7251bce81fd1d9789715746a5d845ed2f2fff4265671b1511de2e898cf86f4760811676c10cd4ffd8669f1b66235762d5ca671d9fd8669f1b6be3a894d471810f80ff1ba4f22e8cb462d2019f4cba951c49fed2a4bc2fb257e544822ad8701b7715cadba114a386ffffff1b605f261bde4a4fc9ff", + "cborBytes": [ + 159, 27, 52, 236, 35, 214, 6, 170, 159, 176, 159, 191, 27, 26, 28, 158, 185, 220, 234, 47, 22, 27, 251, 151, 116, + 31, 100, 39, 177, 151, 27, 107, 41, 56, 242, 238, 98, 165, 156, 27, 127, 255, 203, 160, 209, 187, 2, 160, 27, 153, + 147, 126, 2, 140, 132, 93, 40, 27, 122, 127, 152, 83, 221, 124, 215, 37, 27, 206, 129, 253, 29, 151, 137, 113, 87, + 70, 165, 216, 69, 237, 47, 47, 255, 66, 101, 103, 27, 21, 17, 222, 46, 137, 140, 248, 111, 71, 96, 129, 22, 118, + 193, 12, 212, 255, 216, 102, 159, 27, 102, 35, 87, 98, 213, 202, 103, 29, 159, 216, 102, 159, 27, 107, 227, 168, + 148, 212, 113, 129, 15, 128, 255, 27, 164, 242, 46, 140, 180, 98, 210, 1, 159, 76, 186, 149, 28, 73, 254, 210, + 164, 188, 47, 178, 87, 229, 68, 130, 42, 216, 112, 27, 119, 21, 202, 219, 161, 20, 163, 134, 255, 255, 255, 27, + 96, 95, 38, 27, 222, 74, 79, 201, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1622, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4b3a85b754d7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18204099155858596965" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14690304392217219462" + } + } + } + ] + } + ] + }, + "cborHex": "9f464b3a85b754d7bf1bfca1f3bb98f0a4651bcbde72031c77d186ffff", + "cborBytes": [ + 159, 70, 75, 58, 133, 183, 84, 215, 191, 27, 252, 161, 243, 187, 152, 240, 164, 101, 27, 203, 222, 114, 3, 28, + 119, 209, 134, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1623, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a936f93b4d4fc35eedf66a17" + } + ] + }, + "cborHex": "9f4ca936f93b4d4fc35eedf66a17ff", + "cborBytes": [159, 76, 169, 54, 249, 59, 77, 79, 195, 94, 237, 246, 106, 23, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1624, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1f34f5fa6fdb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "327130818225584013" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14617120954279771113" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7a8a66" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2229848905465449891" + } + }, + { + "_tag": "ByteArray", + "bytearray": "68560ef201fc4557150a1c" + }, + { + "_tag": "ByteArray", + "bytearray": "ac61b5aad04c1d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13140869454005657067" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8144125416450574201" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + "cborHex": "9f9f461f34f5fa6fdbd8669f1b048a33bef76b378d9f1bcada721026c3bbe9ffff437a8a669f1b1ef203c3e90fcda34b68560ef201fc4557150a1c47ac61b5aad04c1d1bb65dbf2525c9ddeb1b7105beeab5c44779ffff0cff", + "cborBytes": [ + 159, 159, 70, 31, 52, 245, 250, 111, 219, 216, 102, 159, 27, 4, 138, 51, 190, 247, 107, 55, 141, 159, 27, 202, + 218, 114, 16, 38, 195, 187, 233, 255, 255, 67, 122, 138, 102, 159, 27, 30, 242, 3, 195, 233, 15, 205, 163, 75, + 104, 86, 14, 242, 1, 252, 69, 87, 21, 10, 28, 71, 172, 97, 181, 170, 208, 76, 29, 27, 182, 93, 191, 37, 37, 201, + 221, 235, 27, 113, 5, 190, 234, 181, 196, 71, 121, 255, 255, 12, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1625, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "063e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10635232612807780981" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b6cf" + }, + { + "_tag": "ByteArray", + "bytearray": "69" + } + ] + }, + "cborHex": "9f42063e1b9397efb6a60eaa7542b6cf4169ff", + "cborBytes": [159, 66, 6, 62, 27, 147, 151, 239, 182, 166, 14, 170, 117, 66, 182, 207, 65, 105, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1626, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7348975144181941972" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1824811206998108223" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b65fccdf50423c6d49f1b1953081fdf46283fffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 101, 252, 205, 245, 4, 35, 198, 212, 159, 27, 25, 83, 8, 31, 223, 70, 40, 63, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1627, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7631149516259805173" + } + } + ] + }, + "cborHex": "9f801b69e74a0db08f47f5ff", + "cborBytes": [159, 128, 27, 105, 231, 74, 13, 176, 143, 71, 245, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1628, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10432697820817269730" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4a9b7" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + ] + }, + "cborHex": "9fbf1b90c86364aace23e243a4a9b7ff1bfffffffffffffff9ff", + "cborBytes": [ + 159, 191, 27, 144, 200, 99, 100, 170, 206, 35, 226, 67, 164, 169, 183, 255, 27, 255, 255, 255, 255, 255, 255, 255, + 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1629, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7569461311572466929" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "32a8850c05b14ee567cbf3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd5e3f72" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ba007" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00b832cc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1df02613352" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee585c579437af" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3871955423694003587" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "159446459292892679" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5130697769972376467" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4180251461372121924" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90873f9e63e3f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2373495428139964348" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f80d8669f1b690c20f54956dcf19fbf4b32a8850c05b14ee567cbf344cd5e3f72433ba0074400b832cc46b1df0261335247ee585c579437afffbf1b35bbf2f17f6d9d831b023677b5bed8be071b4733e6702d17a3931b3a033c8e62e493444790873f9e63e3f71b20f059843e4bd7bcffffffff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 105, 12, 32, 245, 73, 86, 220, 241, 159, 191, 75, 50, 168, 133, 12, 5, 177, 78, 229, + 103, 203, 243, 68, 205, 94, 63, 114, 67, 59, 160, 7, 68, 0, 184, 50, 204, 70, 177, 223, 2, 97, 51, 82, 71, 238, + 88, 92, 87, 148, 55, 175, 255, 191, 27, 53, 187, 242, 241, 127, 109, 157, 131, 27, 2, 54, 119, 181, 190, 216, 190, + 7, 27, 71, 51, 230, 112, 45, 23, 163, 147, 27, 58, 3, 60, 142, 98, 228, 147, 68, 71, 144, 135, 63, 158, 99, 227, + 247, 27, 32, 240, 89, 132, 62, 75, 215, 188, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1630, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10977087480530999421" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15525130290822297312" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "042b51f3fa5ea80857fd" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "177fa5f50a11ccbba8e1" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b985672e78970187d9fd8669f1bd77457be6c1eb6e09f4a042b51f3fa5ea80857fdffff4a177fa5f50a11ccbba8e1ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 152, 86, 114, 231, 137, 112, 24, 125, 159, 216, 102, 159, 27, 215, 116, 87, 190, 108, 30, + 182, 224, 159, 74, 4, 43, 81, 243, 250, 94, 168, 8, 87, 253, 255, 255, 74, 23, 127, 165, 245, 10, 17, 204, 187, + 168, 225, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1631, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14035117972378927703" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15596881305544156229" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f02332d518d16baf4df3ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14603648945893502343" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c74f74d944ea92296a3e54" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12699013664299177840" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "736610956719551511" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1318369b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10043281236297057139" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "af1ca94947efc6b2477d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17316502814581442854" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17818751099184101252" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d7dc" + }, + { + "_tag": "ByteArray", + "bytearray": "c623f096e73027180a5c" + }, + { + "_tag": "ByteArray", + "bytearray": "385d05d9c7f927c50424a445" + }, + { + "_tag": "ByteArray", + "bytearray": "6fadf05bba" + }, + { + "_tag": "ByteArray", + "bytearray": "1f" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8354252385590458340" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10131987337551429374" + } + } + ] + }, + "cborHex": "9f9f9f1bc2c6c16f4458c2571bd87340e95ce3e4454bf02332d518d16baf4df3ab1bcaaa9557c47d6d874bc74f74d944ea92296a3e54ff80ffd8669f1bb03bf5a53a6257709f1b0a38f7c32cedf417441318369bd8669f1b8b60e712a4d503739f4aaf1ca94947efc6b2477d1bf0509390272dc9261bf748ebb787f83784ffff9f42d7dc4ac623f096e73027180a5c4c385d05d9c7f927c50424a445456fadf05bba411fffffffbf41c51b73f044482f1437e4ff1b8c9c0ccd4b823efeff", + "cborBytes": [ + 159, 159, 159, 27, 194, 198, 193, 111, 68, 88, 194, 87, 27, 216, 115, 64, 233, 92, 227, 228, 69, 75, 240, 35, 50, + 213, 24, 209, 107, 175, 77, 243, 171, 27, 202, 170, 149, 87, 196, 125, 109, 135, 75, 199, 79, 116, 217, 68, 234, + 146, 41, 106, 62, 84, 255, 128, 255, 216, 102, 159, 27, 176, 59, 245, 165, 58, 98, 87, 112, 159, 27, 10, 56, 247, + 195, 44, 237, 244, 23, 68, 19, 24, 54, 155, 216, 102, 159, 27, 139, 96, 231, 18, 164, 213, 3, 115, 159, 74, 175, + 28, 169, 73, 71, 239, 198, 178, 71, 125, 27, 240, 80, 147, 144, 39, 45, 201, 38, 27, 247, 72, 235, 183, 135, 248, + 55, 132, 255, 255, 159, 66, 215, 220, 74, 198, 35, 240, 150, 231, 48, 39, 24, 10, 92, 76, 56, 93, 5, 217, 199, + 249, 39, 197, 4, 36, 164, 69, 69, 111, 173, 240, 91, 186, 65, 31, 255, 255, 255, 191, 65, 197, 27, 115, 240, 68, + 72, 47, 20, 55, 228, 255, 27, 140, 156, 12, 205, 75, 130, 62, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1632, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3605634877616129079" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2fc702f1506cd789a4" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3209c9d1561184379f492fc702f1506cd789a4a0ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 50, 9, 201, 209, 86, 17, 132, 55, 159, 73, 47, 199, 2, 241, 80, 108, 215, 137, 164, 160, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1633, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a847e759" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17222794805911064442" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc99" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5dd40d2e981bd683fa" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f80bf44a847e7591bef03a8a02dc58f7a42bc99495dd40d2e981bd683faffffff", + "cborBytes": [ + 159, 159, 128, 191, 68, 168, 71, 231, 89, 27, 239, 3, 168, 160, 45, 197, 143, 122, 66, 188, 153, 73, 93, 212, 13, + 46, 152, 27, 214, 131, 250, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1634, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c69" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14928068969784406734" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "414616" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1e22a92" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18707bab0924" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea1b57" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "763339200509633851" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee94467f2ad7c4405f167214" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a4bc817" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fff12ff299473789797b05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86ed2762e5a54c" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf420c691bcf2b27a2be87f2ce41654341461644b1e22a924618707bab092443ea1b571b0a97ecf56181e53b4cee94467f2ad7c4405f167214448a4bc8174bfff12ff299473789797b054786ed2762e5a54cffa0ff", + "cborBytes": [ + 159, 191, 66, 12, 105, 27, 207, 43, 39, 162, 190, 135, 242, 206, 65, 101, 67, 65, 70, 22, 68, 177, 226, 42, 146, + 70, 24, 112, 123, 171, 9, 36, 67, 234, 27, 87, 27, 10, 151, 236, 245, 97, 129, 229, 59, 76, 238, 148, 70, 127, 42, + 215, 196, 64, 95, 22, 114, 20, 68, 138, 75, 200, 23, 75, 255, 241, 47, 242, 153, 71, 55, 137, 121, 123, 5, 71, + 134, 237, 39, 98, 229, 165, 76, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1635, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5968684410717453733" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5241620301247404253" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f6bc5ac9c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11122620137168966528" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7611807050265513485" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2498738103494579049" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2769163984348533567" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18392018291593856286" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "192d7461d83b22e60e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "407203175d2e694f7552c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34e7e7afd36b61" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acd17ba1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c76ce52cccfd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "440359336631378519" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6565090576561413945" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dcc7ca7fe0dbe6deff49" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5729354923511965940" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3733342255059762979" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11337277512757379629" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c663fa9b4d12fef75624" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f1b52d506d91d39bda51b48bdf9e48753d8dd455f6bc5ac9c1b9a5b7c15a7901380ffd8669f1b69a2922ee1e3ce0d9f1b22ad4d10f58713691b266e0bf8dbe6533f1bff3d9330ecf0451effffbf49192d7461d83b22e60e4b407203175d2e694f7552c54734e7e7afd36b6144acd17ba146c76ce52cccfd1b061c787bc970a257ffff1b5b1be31896351f394adcc7ca7fe0dbe6deff49bf1b4f82c1f29010e8f41b33cf7f0039caff23ffbf1b9d5619d493ed822d4ac663fa9b4d12fef75624ffff", + "cborBytes": [ + 159, 159, 159, 27, 82, 213, 6, 217, 29, 57, 189, 165, 27, 72, 189, 249, 228, 135, 83, 216, 221, 69, 95, 107, 197, + 172, 156, 27, 154, 91, 124, 21, 167, 144, 19, 128, 255, 216, 102, 159, 27, 105, 162, 146, 46, 225, 227, 206, 13, + 159, 27, 34, 173, 77, 16, 245, 135, 19, 105, 27, 38, 110, 11, 248, 219, 230, 83, 63, 27, 255, 61, 147, 48, 236, + 240, 69, 30, 255, 255, 191, 73, 25, 45, 116, 97, 216, 59, 34, 230, 14, 75, 64, 114, 3, 23, 93, 46, 105, 79, 117, + 82, 197, 71, 52, 231, 231, 175, 211, 107, 97, 68, 172, 209, 123, 161, 70, 199, 108, 229, 44, 204, 253, 27, 6, 28, + 120, 123, 201, 112, 162, 87, 255, 255, 27, 91, 27, 227, 24, 150, 53, 31, 57, 74, 220, 199, 202, 127, 224, 219, + 230, 222, 255, 73, 191, 27, 79, 130, 193, 242, 144, 16, 232, 244, 27, 51, 207, 127, 0, 57, 202, 255, 35, 255, 191, + 27, 157, 86, 25, 212, 147, 237, 130, 45, 74, 198, 99, 250, 155, 77, 18, 254, 247, 86, 36, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1636, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "226686271895390476" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15179044999047481679" + } + } + ] + }, + "cborHex": "9f9f010bffd90501801b032559f697c8490c1bd2a6cd012de5094fff", + "cborBytes": [ + 159, 159, 1, 11, 255, 217, 5, 1, 128, 27, 3, 37, 89, 246, 151, 200, 73, 12, 27, 210, 166, 205, 1, 45, 229, 9, 79, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1637, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f1b5bd9eef89bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2131017212936974064" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17049331733812402249" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12225499487959109929" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a78e29cf064b40f88d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13812021017976609221" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16215587240137123347" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16418440174316249793" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cde378686e8bbf0bdd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16512813641706245119" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18128280658129652604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10446900511006668828" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9f47f1b5bd9eef89bc14ffa0bf1b1d92e4dd5359eef01bec9b64e173aed8491ba9a9b302c585d12949a78e29cf064b40f88d1bbfae27efc6b999c51be10956ae58bae6131be3da0459941f62c149cde378686e8bbf0bdd1be5294c84bc200bff41fd1bfb949735f8670b7c1b90fad8aa2a66381cff80ff", + "cborBytes": [ + 159, 159, 71, 241, 181, 189, 158, 239, 137, 188, 20, 255, 160, 191, 27, 29, 146, 228, 221, 83, 89, 238, 240, 27, + 236, 155, 100, 225, 115, 174, 216, 73, 27, 169, 169, 179, 2, 197, 133, 209, 41, 73, 167, 142, 41, 207, 6, 75, 64, + 248, 141, 27, 191, 174, 39, 239, 198, 185, 153, 197, 27, 225, 9, 86, 174, 88, 186, 230, 19, 27, 227, 218, 4, 89, + 148, 31, 98, 193, 73, 205, 227, 120, 104, 110, 139, 191, 11, 221, 27, 229, 41, 76, 132, 188, 32, 11, 255, 65, 253, + 27, 251, 148, 151, 53, 248, 103, 11, 124, 27, 144, 250, 216, 170, 42, 102, 56, 28, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1638, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d3aee9245c9e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16844964471693959253" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f42ab0f58d15571dbbd1fea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "157763022548622714" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "222843822954233566" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b0669e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e03559d128cf242c4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecfcfc05024f9e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f46d3aee9245c9e9f9f1be9c555f04564e0554c7f42ab0f58d15571dbbd1fea1b02307ca215b3dd7a1b0317b346bb93bedeffbf447b0669e5497e03559d128cf242c447ecfcfc05024f9e11ffffff", + "cborBytes": [ + 159, 70, 211, 174, 233, 36, 92, 158, 159, 159, 27, 233, 197, 85, 240, 69, 100, 224, 85, 76, 127, 66, 171, 15, 88, + 209, 85, 113, 219, 189, 31, 234, 27, 2, 48, 124, 162, 21, 179, 221, 122, 27, 3, 23, 179, 70, 187, 147, 190, 222, + 255, 191, 68, 123, 6, 105, 229, 73, 126, 3, 85, 157, 18, 140, 242, 66, 196, 71, 236, 252, 252, 5, 2, 79, 158, 17, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1639, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8096586239359228195" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "728cc0c3dd0bfb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "608977701855664653" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2505438576019410201" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2047610040956969853" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5458456476149499434" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "043573209cbd124a2e2f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6559854078171000907" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9107498543013980947" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8985165639248319381" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14080999167568150698" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14023843972069994632" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17522897849622431758" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b705cda498252992380ff47728cc0c3dd0bfb1b087385fe4b3d9a0dbf1b22c51b1c4a328d191b1c6a927bc9c3637d1b4bc0553eb2d2462a4a043573209cbd124a2e2f1b5b0948874bc7b04b1b7e6455abd8bc6b131b7cb1b88b1f7113951bc369c223797880aa1bc29eb3ca84bc30881bf32dd6c10233880effff", + "cborBytes": [ + 159, 216, 102, 159, 27, 112, 92, 218, 73, 130, 82, 153, 35, 128, 255, 71, 114, 140, 192, 195, 221, 11, 251, 27, 8, + 115, 133, 254, 75, 61, 154, 13, 191, 27, 34, 197, 27, 28, 74, 50, 141, 25, 27, 28, 106, 146, 123, 201, 195, 99, + 125, 27, 75, 192, 85, 62, 178, 210, 70, 42, 74, 4, 53, 115, 32, 156, 189, 18, 74, 46, 47, 27, 91, 9, 72, 135, 75, + 199, 176, 75, 27, 126, 100, 85, 171, 216, 188, 107, 19, 27, 124, 177, 184, 139, 31, 113, 19, 149, 27, 195, 105, + 194, 35, 121, 120, 128, 170, 27, 194, 158, 179, 202, 132, 188, 48, 136, 27, 243, 45, 214, 193, 2, 51, 136, 14, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1640, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb130c50baee0858865d97" + } + ] + }, + "cborHex": "9f4bcb130c50baee0858865d97ff", + "cborBytes": [159, 75, 203, 19, 12, 80, 186, 238, 8, 88, 134, 93, 151, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1641, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9396994323114019365" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4414870545431408802" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f97c4a7416" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5828556800566218700" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b8268d48ca992ca259f1b3d44c55ebdc630a245f97c4a74161b50e3318772efcfccffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 130, 104, 212, 140, 169, 146, 202, 37, 159, 27, 61, 68, 197, 94, 189, 198, 48, 162, 69, + 249, 124, 74, 116, 22, 27, 80, 227, 49, 135, 114, 239, 207, 204, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1642, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f1a9f4fed2583cb3cd" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11415960909510754303" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11826042731021216583" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4082863419554673801" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11957347233687729439" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16242741459464331792" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16005872521697970296" + }, + "fields": [] + } + ] + }, + "cborHex": "9f49f1a9f4fed2583cb3cdbf1b9e6da3f67d223fff410c1ba41e8b34f11c2b471b38a93ea5ecfe34891ba5f107f4cff4f51f1be169cf4cb5e1a210ff80d8669f1bde20484177fe487880ffff", + "cborBytes": [ + 159, 73, 241, 169, 244, 254, 210, 88, 60, 179, 205, 191, 27, 158, 109, 163, 246, 125, 34, 63, 255, 65, 12, 27, + 164, 30, 139, 52, 241, 28, 43, 71, 27, 56, 169, 62, 165, 236, 254, 52, 137, 27, 165, 241, 7, 244, 207, 244, 245, + 31, 27, 225, 105, 207, 76, 181, 225, 162, 16, 255, 128, 216, 102, 159, 27, 222, 32, 72, 65, 119, 254, 72, 120, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1643, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15765285140983457784" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7e90144929fc4a27c0c512" + } + ] + }, + "cborHex": "9f1bdac98b4ec31027f8a04b7e90144929fc4a27c0c512ff", + "cborBytes": [ + 159, 27, 218, 201, 139, 78, 195, 16, 39, 248, 160, 75, 126, 144, 20, 73, 41, 252, 74, 39, 192, 197, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1644, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5759692666226494494" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6409328905845073002" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9720002022864523326" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14391460452170495626" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11912404982295238093" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8363435136133407770" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17287165746876017915" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "add5" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6d78b163" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7838056289890770860" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0aacdf81" + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b4fee89f6b9da4c1e419b1b58f282ae8989e46a41e71b86e462574ceb103e1bc7b8bd0832b4768a1ba5515d377e4d15cd1b7410e3f1e740a41a1befe859a7cbd86cfb42add5ff446d78b163d8669f1b6cc65eaaf8749fac9f9f440aacdf81ffffffff", + "cborBytes": [ + 159, 191, 27, 79, 238, 137, 246, 185, 218, 76, 30, 65, 155, 27, 88, 242, 130, 174, 137, 137, 228, 106, 65, 231, + 27, 134, 228, 98, 87, 76, 235, 16, 62, 27, 199, 184, 189, 8, 50, 180, 118, 138, 27, 165, 81, 93, 55, 126, 77, 21, + 205, 27, 116, 16, 227, 241, 231, 64, 164, 26, 27, 239, 232, 89, 167, 203, 216, 108, 251, 66, 173, 213, 255, 68, + 109, 120, 177, 99, 216, 102, 159, 27, 108, 198, 94, 170, 248, 116, 159, 172, 159, 159, 68, 10, 172, 223, 129, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1645, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e9" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "838285b426694c1e911f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7621533638898247351" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "81acc22ecac25ce7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3732653938740832534" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4989933385323988965" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "071aa349e859472a18c8ac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11147310744732790449" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10730588075596850909" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ddec00819b5e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13315512042771844174" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f9a7503d3ae5a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bae910b75dc7f6f50" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3809504399965017243" + } + } + ] + }, + "cborHex": "9f9f9f41e9ff4a838285b426694c1e911f1b69c52076c63866b7ffbf4881acc22ecac25ce71b33cd0cfb181c2916ffbf1b453fcdf9e51947e54b071aa349e859472a18c8ac1b9ab3340fb4b16eb11b94eab5006cfe26dd470ddec00819b5e01bb8ca33a77fda0c4e475f9a7503d3ae5a497bae910b75dc7f6f50ff1b34de14117233d49bff", + "cborBytes": [ + 159, 159, 159, 65, 233, 255, 74, 131, 130, 133, 180, 38, 105, 76, 30, 145, 31, 27, 105, 197, 32, 118, 198, 56, + 102, 183, 255, 191, 72, 129, 172, 194, 46, 202, 194, 92, 231, 27, 51, 205, 12, 251, 24, 28, 41, 22, 255, 191, 27, + 69, 63, 205, 249, 229, 25, 71, 229, 75, 7, 26, 163, 73, 232, 89, 71, 42, 24, 200, 172, 27, 154, 179, 52, 15, 180, + 177, 110, 177, 27, 148, 234, 181, 0, 108, 254, 38, 221, 71, 13, 222, 192, 8, 25, 181, 224, 27, 184, 202, 51, 167, + 127, 218, 12, 78, 71, 95, 154, 117, 3, 211, 174, 90, 73, 123, 174, 145, 11, 117, 220, 127, 111, 80, 255, 27, 52, + 222, 20, 17, 114, 51, 212, 155, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1646, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18137497971269334269" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4867771743442738427" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae997fbf3cc1084785a2dd98" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5823396408782855403" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4962021312911811028" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10184317370801506518" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "061541310530bc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17735856758532043750" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5290ce50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18331534411246056725" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8817996232796625438" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10271411298672972180" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "57b4d9e3fc45ea1f57b158" + } + ] + }, + "cborHex": "9f1bfbb5564eebe074fd9fbf1b438dcc9c2f969cfb4cae997fbf3cc1084785a2dd981b50d0dc2e1bc99ceb1b44dca4181c06a1d41b8d55f6b09e76c8d647061541310530bc1bf6226bc0d78373e6445290ce501bfe66b16c222bb5151b7a5fd0da9e935a1eff1b8e8b6227e7561194ff4b57b4d9e3fc45ea1f57b158ff", + "cborBytes": [ + 159, 27, 251, 181, 86, 78, 235, 224, 116, 253, 159, 191, 27, 67, 141, 204, 156, 47, 150, 156, 251, 76, 174, 153, + 127, 191, 60, 193, 8, 71, 133, 162, 221, 152, 27, 80, 208, 220, 46, 27, 201, 156, 235, 27, 68, 220, 164, 24, 28, + 6, 161, 212, 27, 141, 85, 246, 176, 158, 118, 200, 214, 71, 6, 21, 65, 49, 5, 48, 188, 27, 246, 34, 107, 192, 215, + 131, 115, 230, 68, 82, 144, 206, 80, 27, 254, 102, 177, 108, 34, 43, 181, 21, 27, 122, 95, 208, 218, 158, 147, 90, + 30, 255, 27, 142, 139, 98, 39, 231, 86, 17, 148, 255, 75, 87, 180, 217, 227, 252, 69, 234, 31, 87, 177, 88, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1647, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2211642822610365352" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "11ac7cdc44bd621f4b81a1" + }, + { + "_tag": "ByteArray", + "bytearray": "541a9ff068" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09955f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ebdeeb09f45" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3066859257223387065" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13211904577005394367" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9697376794852621532" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16238100101689166124" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13139514128528960511" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9892897065378979288" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15446354969147390414" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1574851692366913567" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e001077709d7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12705237155333956214" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "87c53f938e81dd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13157821331505095234" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c47c4c40fc295a547f05675c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6585869217061236734" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d33ec484db17317cb5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f07198be05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6c5955b248d42" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15811722728954114661" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1eb1556debbbaba89fa09f4b11ac7cdc44bd621f4b81a145541a9ff068ffbf4309955f460ebdeeb09f45ffbf1b2a8fac3edaeb17b91bb75a1d368ec399bf1b869400d0e64e7cdc1be1595202646ac92c1bb658ee7bd831ebff1b894aa177556b1dd81bd65c7a01929eb9ce41e3ffd8669f1b15daff453173e01f9f46e001077709d71bb05211e0a6c66276ffffffffbf4787c53f938e81dd1bb699f8c9b26b22424cc47c4c40fc295a547f05675c1b5b65b528d41d6ffe49d33ec484db17317cb545f07198be0547d6c5955b248d421bdb6e860c4247b265ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 30, 177, 85, 109, 235, 187, 171, 168, 159, 160, 159, 75, 17, 172, 124, 220, 68, 189, 98, + 31, 75, 129, 161, 69, 84, 26, 159, 240, 104, 255, 191, 67, 9, 149, 95, 70, 14, 189, 238, 176, 159, 69, 255, 191, + 27, 42, 143, 172, 62, 218, 235, 23, 185, 27, 183, 90, 29, 54, 142, 195, 153, 191, 27, 134, 148, 0, 208, 230, 78, + 124, 220, 27, 225, 89, 82, 2, 100, 106, 201, 44, 27, 182, 88, 238, 123, 216, 49, 235, 255, 27, 137, 74, 161, 119, + 85, 107, 29, 216, 27, 214, 92, 122, 1, 146, 158, 185, 206, 65, 227, 255, 216, 102, 159, 27, 21, 218, 255, 69, 49, + 115, 224, 31, 159, 70, 224, 1, 7, 119, 9, 215, 27, 176, 82, 17, 224, 166, 198, 98, 118, 255, 255, 255, 255, 191, + 71, 135, 197, 63, 147, 142, 129, 221, 27, 182, 153, 248, 201, 178, 107, 34, 66, 76, 196, 124, 76, 64, 252, 41, 90, + 84, 127, 5, 103, 92, 27, 91, 101, 181, 40, 212, 29, 111, 254, 73, 211, 62, 196, 132, 219, 23, 49, 124, 181, 69, + 240, 113, 152, 190, 5, 71, 214, 197, 149, 91, 36, 141, 66, 27, 219, 110, 134, 12, 66, 71, 178, 101, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1648, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10651599445271359617" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9520463053667491189" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b93d21542c925b0819fd8669f1b841f7ab4ab14dd7580ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 147, 210, 21, 66, 201, 37, 176, 129, 159, 216, 102, 159, 27, 132, 31, 122, 180, 171, 20, + 221, 117, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1649, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10096082162842744628" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18433711950397400284" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1860269540421500567" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13822671016325476938" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6330040888597760154" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a0ed0db37" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11671032983625624682" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7233625380503886913" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15436449787507288252" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73e136939067a6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16294064337082073254" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16863822338041657740" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18418428689278079370" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9193329657647035387" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fbcd" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11086688884036555374" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17501047537799628069" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07a539b4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3250518750631402749" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e9275430a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "151cf7018b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11186033540485946522" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b8c1c7d3c5b6637349f1bffd1b35a574f64dcbf1b19d1014a774d7e971bbfd3fe0dbf2af24a1b57d8d2a67291489a453a0ed0db371ba1f7d6a9aedf6c6a1b6462fff54b2f1c411bd639494bc186a8bc4773e136939067a61be220252f572340a61bea0855116e45398cffd8669f1bff9b674ed148918a9f41a51b7f95449d831d73fb42fbcdffff801b99dbd4ccdc45526effff1bf2e03602d7c58525bf4407a539b41b2d1c2994eb219cfd456e9275430a45151cf7018b419c1b9b3cc63d2a451c9affff", + "cborBytes": [ + 159, 216, 102, 159, 27, 140, 28, 125, 60, 91, 102, 55, 52, 159, 27, 255, 209, 179, 90, 87, 79, 100, 220, 191, 27, + 25, 209, 1, 74, 119, 77, 126, 151, 27, 191, 211, 254, 13, 191, 42, 242, 74, 27, 87, 216, 210, 166, 114, 145, 72, + 154, 69, 58, 14, 208, 219, 55, 27, 161, 247, 214, 169, 174, 223, 108, 106, 27, 100, 98, 255, 245, 75, 47, 28, 65, + 27, 214, 57, 73, 75, 193, 134, 168, 188, 71, 115, 225, 54, 147, 144, 103, 166, 27, 226, 32, 37, 47, 87, 35, 64, + 166, 27, 234, 8, 85, 17, 110, 69, 57, 140, 255, 216, 102, 159, 27, 255, 155, 103, 78, 209, 72, 145, 138, 159, 65, + 165, 27, 127, 149, 68, 157, 131, 29, 115, 251, 66, 251, 205, 255, 255, 128, 27, 153, 219, 212, 204, 220, 69, 82, + 110, 255, 255, 27, 242, 224, 54, 2, 215, 197, 133, 37, 191, 68, 7, 165, 57, 180, 27, 45, 28, 41, 148, 235, 33, + 156, 253, 69, 110, 146, 117, 67, 10, 69, 21, 28, 247, 1, 139, 65, 156, 27, 155, 60, 198, 61, 42, 69, 28, 154, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1650, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1510156479814497321" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc10aaf9c01594" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3083451770684854059" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12145513074018093166" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4493783041383666727" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1849756446887704205" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c100ff" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10862574189688576703" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4bb3" + }, + { + "_tag": "ByteArray", + "bytearray": "b5e2357d5a" + }, + { + "_tag": "ByteArray", + "bytearray": "defa3cce" + }, + { + "_tag": "ByteArray", + "bytearray": "0df4" + }, + { + "_tag": "ByteArray", + "bytearray": "3a8643e5cd1934" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "528f6ab80bc1d722" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "06780401" + } + ] + }, + "cborHex": "9fbf1b14f527513698f42947cc10aaf9c015941b2aca9f0c71b84f2b1ba88d87ca87b6086e1b3e5d1fddf75914271b19aba7b021baf68dffd87a8043c100ff9fd8669f1b96bf9dac52b6dabf9f424bb345b5e2357d5a44defa3cce420df4473a8643e5cd1934ffff48528f6ab80bc1d722ff4406780401ff", + "cborBytes": [ + 159, 191, 27, 20, 245, 39, 81, 54, 152, 244, 41, 71, 204, 16, 170, 249, 192, 21, 148, 27, 42, 202, 159, 12, 113, + 184, 79, 43, 27, 168, 141, 135, 202, 135, 182, 8, 110, 27, 62, 93, 31, 221, 247, 89, 20, 39, 27, 25, 171, 167, + 176, 33, 186, 246, 141, 255, 216, 122, 128, 67, 193, 0, 255, 159, 216, 102, 159, 27, 150, 191, 157, 172, 82, 182, + 218, 191, 159, 66, 75, 179, 69, 181, 226, 53, 125, 90, 68, 222, 250, 60, 206, 66, 13, 244, 71, 58, 134, 67, 229, + 205, 25, 52, 255, 255, 72, 82, 143, 106, 184, 11, 193, 215, 34, 255, 68, 6, 120, 4, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1651, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "695309679898386818" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f85a4e88dc7e8eca504" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15489503234801017209" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53ac62c9f4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17517189840604652460" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11083283425815679304" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18264191171885579480" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d8cd64dfa8977e881" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10433341001028413341" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01df8046ed857369cd2449" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e5718bd27917f86e554e05" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2113599225582773109" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d7e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "988f0b5fc54c6aa9c78b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73204f28675edefe1c007f81" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b414a9529a75d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa31d44557" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0876063d1f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12994443470386708526" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13417344359581206184" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12043828482533016044" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2868730671326949989" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6054202301072585017" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14325366811610067215" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11594197265298774832" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5704271672192545226" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "963d1e975cbe2803" + }, + { + "_tag": "ByteArray", + "bytearray": "55a0524df2c0b1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10138535877829545655" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f73" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12956451832195903302" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4308369186520074337" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b09a63c784f3be1824a1f85a4e88dc7e8eca5041bd6f5c520099421794553ac62c9f41bf3198f59985263ac1b99cfbb8dd4b7d1481bfd77711a5e10bcd8498d8cd64dfa8977e881ff9fd8669f1b90caac5cbad1279d9f4b01df8046ed857369cd2449ffff4be5718bd27917f86e554e05ffd8669f1b1d55034c1e66e3759fbf424d7e4a988f0b5fc54c6aa9c78b4c73204f28675edefe1c007f81475b414a9529a75d45aa31d44557450876063d1fffd8669f1bb455897d224b402e9f1bba33fb9b5dedc6a8ffffd8669f1ba7244631a51cc1ec9f1b27cfc758acb5f2651b5404d8ea91c8b1391bc6cded375330310fffffffff9f1ba0e6dcfbedf05b30d8669f1b4f29a4dd035c31ca9f48963d1e975cbe28034755a0524df2c0b11b8cb350aa24954eb7426f731bb3ce904b8f7eef46ffff1b3bca66f2cbc48861ffff", + "cborBytes": [ + 159, 191, 27, 9, 166, 60, 120, 79, 59, 225, 130, 74, 31, 133, 164, 232, 141, 199, 232, 236, 165, 4, 27, 214, 245, + 197, 32, 9, 148, 33, 121, 69, 83, 172, 98, 201, 244, 27, 243, 25, 143, 89, 152, 82, 99, 172, 27, 153, 207, 187, + 141, 212, 183, 209, 72, 27, 253, 119, 113, 26, 94, 16, 188, 216, 73, 141, 140, 214, 77, 250, 137, 119, 232, 129, + 255, 159, 216, 102, 159, 27, 144, 202, 172, 92, 186, 209, 39, 157, 159, 75, 1, 223, 128, 70, 237, 133, 115, 105, + 205, 36, 73, 255, 255, 75, 229, 113, 139, 210, 121, 23, 248, 110, 85, 78, 5, 255, 216, 102, 159, 27, 29, 85, 3, + 76, 30, 102, 227, 117, 159, 191, 66, 77, 126, 74, 152, 143, 11, 95, 197, 76, 106, 169, 199, 139, 76, 115, 32, 79, + 40, 103, 94, 222, 254, 28, 0, 127, 129, 71, 91, 65, 74, 149, 41, 167, 93, 69, 170, 49, 212, 69, 87, 69, 8, 118, 6, + 61, 31, 255, 216, 102, 159, 27, 180, 85, 137, 125, 34, 75, 64, 46, 159, 27, 186, 51, 251, 155, 93, 237, 198, 168, + 255, 255, 216, 102, 159, 27, 167, 36, 70, 49, 165, 28, 193, 236, 159, 27, 39, 207, 199, 88, 172, 181, 242, 101, + 27, 84, 4, 216, 234, 145, 200, 177, 57, 27, 198, 205, 237, 55, 83, 48, 49, 15, 255, 255, 255, 255, 159, 27, 160, + 230, 220, 251, 237, 240, 91, 48, 216, 102, 159, 27, 79, 41, 164, 221, 3, 92, 49, 202, 159, 72, 150, 61, 30, 151, + 92, 190, 40, 3, 71, 85, 160, 82, 77, 242, 192, 177, 27, 140, 179, 80, 170, 36, 149, 78, 183, 66, 111, 115, 27, + 179, 206, 144, 75, 143, 126, 239, 70, 255, 255, 27, 59, 202, 102, 242, 203, 196, 136, 97, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1652, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10673946833754587005" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7102486500715500785" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "018b65" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7758142335203421169" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7cfbc28673576714b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50713d07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b20501" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37fa4355e53c17" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c750e55b09cbad447" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4829966255294738898" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a88ce5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6725726841552982459" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8c07e73f464b55aad97931b" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b94217a17a158ff7d9fbf1b629119d7812794f143018b651b6baa755976b82bf149f7cfbc28673576714b4450713d070b43b205014737fa4355e53c17ffffff9fbf497c750e55b09cbad4471b43077cb80bf771d243a88ce51b5d5694ed8f1351bb41f44cb8c07e73f464b55aad97931bffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 148, 33, 122, 23, 161, 88, 255, 125, 159, 191, 27, 98, 145, 25, 215, 129, 39, 148, 241, + 67, 1, 139, 101, 27, 107, 170, 117, 89, 118, 184, 43, 241, 73, 247, 207, 188, 40, 103, 53, 118, 113, 75, 68, 80, + 113, 61, 7, 11, 67, 178, 5, 1, 71, 55, 250, 67, 85, 229, 60, 23, 255, 255, 255, 159, 191, 73, 124, 117, 14, 85, + 176, 156, 186, 212, 71, 27, 67, 7, 124, 184, 11, 247, 113, 210, 67, 168, 140, 229, 27, 93, 86, 148, 237, 143, 19, + 81, 187, 65, 244, 76, 184, 192, 126, 115, 244, 100, 181, 90, 173, 151, 147, 27, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1653, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5917025266656279707" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1ce729db" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8836338190684401533" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1659469099071623765" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17870083385384770958" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2387881720564484151" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5894d324cc83" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16204003300498009416" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "368e3015477e21feeda191" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f1b521d7f215a0efc9b441ce729db9f1b7aa0fac47af62f7dbf1b17079e5a75e6d2551bf7ff4a28c4781d8e1b212375c5f7e50837465894d324cc83ffffbf1be0e02f263970ed484b368e3015477e21feeda191ffa0ff", + "cborBytes": [ + 159, 27, 82, 29, 127, 33, 90, 14, 252, 155, 68, 28, 231, 41, 219, 159, 27, 122, 160, 250, 196, 122, 246, 47, 125, + 191, 27, 23, 7, 158, 90, 117, 230, 210, 85, 27, 247, 255, 74, 40, 196, 120, 29, 142, 27, 33, 35, 117, 197, 247, + 229, 8, 55, 70, 88, 148, 211, 36, 204, 131, 255, 255, 191, 27, 224, 224, 47, 38, 57, 112, 237, 72, 75, 54, 142, + 48, 21, 71, 126, 33, 254, 237, 161, 145, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1654, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3890415506781478589" + } + } + ] + }, + "cborHex": "9f1b35fd884a86619ebdff", + "cborBytes": [159, 27, 53, 253, 136, 74, 134, 97, 158, 189, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1655, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5159154384552745684" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9571519446335171224" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4667678671266281822" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9dff8b576e" + }, + { + "_tag": "ByteArray", + "bytearray": "0338befb898d08160c0467" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5510a9308ad91524" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1293868c312deffb25dd91" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f79444de8f9b132b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2900" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "206ae6b0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3d8efb41d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13567178975773153233" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf8794dcfc144d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16522586365774088198" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9ec72f6281c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8069538922834331614" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff60" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "126a346e5aa9" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11285107738288805650" + } + } + ] + }, + "cborHex": "9fd8669f1b4798ff9410aa5ad49fd8669f1b84d4de396f8d2a989f1b40c6ed05667e795effff459dff8b576e4b0338befb898d08160c0467ffff485510a9308ad91524bf4b1293868c312deffb25dd91495f79444de8f9b132b942290044206ae6b045b3d8efb41d1bbc484d657f1b57d147cf8794dcfc144d1be54c04c25ead480646d9ec72f6281c1b6ffcc2e564ba87de42ff6046126a346e5aa9ff1b9c9cc1b268b75712ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 71, 152, 255, 148, 16, 170, 90, 212, 159, 216, 102, 159, 27, 132, 212, 222, 57, 111, 141, + 42, 152, 159, 27, 64, 198, 237, 5, 102, 126, 121, 94, 255, 255, 69, 157, 255, 139, 87, 110, 75, 3, 56, 190, 251, + 137, 141, 8, 22, 12, 4, 103, 255, 255, 72, 85, 16, 169, 48, 138, 217, 21, 36, 191, 75, 18, 147, 134, 140, 49, 45, + 239, 251, 37, 221, 145, 73, 95, 121, 68, 77, 232, 249, 177, 50, 185, 66, 41, 0, 68, 32, 106, 230, 176, 69, 179, + 216, 239, 180, 29, 27, 188, 72, 77, 101, 127, 27, 87, 209, 71, 207, 135, 148, 220, 252, 20, 77, 27, 229, 76, 4, + 194, 94, 173, 72, 6, 70, 217, 236, 114, 246, 40, 28, 27, 111, 252, 194, 229, 100, 186, 135, 222, 66, 255, 96, 70, + 18, 106, 52, 110, 90, 169, 255, 27, 156, 156, 193, 178, 104, 183, 87, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1656, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1837349683772885924" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11201971169814668443" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0af2536ed3f4e6de1561a087" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11281922119843128396" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af3039c2f34ee4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14686167249267112863" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "941b17a1c1487961fe" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dbbfd29be4" + }, + { + "_tag": "ByteArray", + "bytearray": "07b312adb2ba05f2834c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "857743268499844918" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e2e8b403" + } + ] + }, + "cborHex": "9f1b197f93cd7d758ba4d8669f1b9b75656da8f8649b9fbf4c0af2536ed3f4e6de1561a0871b9c917064d0df244c47af3039c2f34ee41bcbcfbf4d748abb9fff49941b17a1c1487961fe9f45dbbfd29be44a07b312adb2ba05f2834cff1b0be750f54b6a6f36ffff44e2e8b403ff", + "cborBytes": [ + 159, 27, 25, 127, 147, 205, 125, 117, 139, 164, 216, 102, 159, 27, 155, 117, 101, 109, 168, 248, 100, 155, 159, + 191, 76, 10, 242, 83, 110, 211, 244, 230, 222, 21, 97, 160, 135, 27, 156, 145, 112, 100, 208, 223, 36, 76, 71, + 175, 48, 57, 194, 243, 78, 228, 27, 203, 207, 191, 77, 116, 138, 187, 159, 255, 73, 148, 27, 23, 161, 193, 72, + 121, 97, 254, 159, 69, 219, 191, 210, 155, 228, 74, 7, 179, 18, 173, 178, 186, 5, 242, 131, 76, 255, 27, 11, 231, + 80, 245, 75, 106, 111, 54, 255, 255, 68, 226, 232, 180, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1657, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "1f11b6fb2cf1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4396100909547083930" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15994506802157333152" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + ] + }, + "cborHex": "9f80461f11b6fb2cf1d87f9fd8669f1b3d02167c5653589a9f0b1bddf7e731ac282aa0ffffff1bfffffffffffffffeff", + "cborBytes": [ + 159, 128, 70, 31, 17, 182, 251, 44, 241, 216, 127, 159, 216, 102, 159, 27, 61, 2, 22, 124, 86, 83, 88, 154, 159, + 11, 27, 221, 247, 231, 49, 172, 40, 42, 160, 255, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1658, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5309597562773217753" + } + } + ] + }, + "cborHex": "9f1b49af7ada1560a1d9ff", + "cborBytes": [159, 27, 73, 175, 122, 218, 21, 96, 161, 217, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1659, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2d50c4b7d73943" + } + ] + }, + "cborHex": "9f472d50c4b7d73943ff", + "cborBytes": [159, 71, 45, 80, 196, 183, 215, 57, 67, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1660, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17046864265035510079" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7271589581193169891" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17012455681898097846" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "332419fda49434306c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5240475690766501221" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17779186622431101310" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8ab74506cd77285ffb" + } + ] + } + ] + }, + "cborHex": "9f02a0a01bec92a0bb1bbdf13fd8669f1b64e9e03293734be39fd8669f1bec18624e8c9cacb69f49332419fda49434306c1b48b9e8e022350565ffff1bf6bc5c08f162017e498ab74506cd77285ffbffffff", + "cborBytes": [ + 159, 2, 160, 160, 27, 236, 146, 160, 187, 27, 189, 241, 63, 216, 102, 159, 27, 100, 233, 224, 50, 147, 115, 75, + 227, 159, 216, 102, 159, 27, 236, 24, 98, 78, 140, 156, 172, 182, 159, 73, 51, 36, 25, 253, 164, 148, 52, 48, 108, + 27, 72, 185, 232, 224, 34, 53, 5, 101, 255, 255, 27, 246, 188, 92, 8, 241, 98, 1, 126, 73, 138, 183, 69, 6, 205, + 119, 40, 95, 251, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1661, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00d903b904015afafe05003c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "869888dbd23a6179f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f3dd32dfe6980d3d50c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13471e68c6483ee3b875fc9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdfaf95f00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14be9ef0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17947938324935133457" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d48a0abee4d2d34" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c61f56e50243f0a503ad12" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e6b16906b760d5a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11093167749341168468" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53acf5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3156369369642482344" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b070d5c7e61141cd" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14795075579594506550" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4000732223038269333" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "495ee5242b3d289d308ca1cd" + } + } + ] + } + ] + }, + "cborHex": "9fbf4c00d903b904015afafe05003c0949869888dbd23a6179f2104a9f3dd32dfe6980d3d50c4c13471e68c6483ee3b875fc9e45fdfaf95f001bfffffffffffffffaffbf4414be9ef01bf913e2d07460c911482d48a0abee4d2d344bc61f56e50243f0a503ad12482e6b16906b760d5a1b99f2d94b3d4cc3544353acf51b2bcdad37f176baa8428d7448b070d5c7e61141cdff1bcd52aada1ac98136bf1b378574c293a7a7954c495ee5242b3d289d308ca1cdffff", + "cborBytes": [ + 159, 191, 76, 0, 217, 3, 185, 4, 1, 90, 250, 254, 5, 0, 60, 9, 73, 134, 152, 136, 219, 210, 58, 97, 121, 242, 16, + 74, 159, 61, 211, 45, 254, 105, 128, 211, 213, 12, 76, 19, 71, 30, 104, 198, 72, 62, 227, 184, 117, 252, 158, 69, + 253, 250, 249, 95, 0, 27, 255, 255, 255, 255, 255, 255, 255, 250, 255, 191, 68, 20, 190, 158, 240, 27, 249, 19, + 226, 208, 116, 96, 201, 17, 72, 45, 72, 160, 171, 238, 77, 45, 52, 75, 198, 31, 86, 229, 2, 67, 240, 165, 3, 173, + 18, 72, 46, 107, 22, 144, 107, 118, 13, 90, 27, 153, 242, 217, 75, 61, 76, 195, 84, 67, 83, 172, 245, 27, 43, 205, + 173, 55, 241, 118, 186, 168, 66, 141, 116, 72, 176, 112, 213, 199, 230, 17, 65, 205, 255, 27, 205, 82, 170, 218, + 26, 201, 129, 54, 191, 27, 55, 133, 116, 194, 147, 167, 167, 149, 76, 73, 94, 229, 36, 43, 61, 40, 157, 48, 140, + 161, 205, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1662, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "431a8467ff8e511eda" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07fb040206fdd984" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1afaff1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f49431a8467ff8e511edabf4102034807fb040206fdd98409441afaff1b4171ff80ff", + "cborBytes": [ + 159, 73, 67, 26, 132, 103, 255, 142, 81, 30, 218, 191, 65, 2, 3, 72, 7, 251, 4, 2, 6, 253, 217, 132, 9, 68, 26, + 250, 255, 27, 65, 113, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1663, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2960348923295842673" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14906015556348756313" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10027944922806192388" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1557747569792284353" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11373384369650574743" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dab8b295d3f92ee28e" + }, + { + "_tag": "ByteArray", + "bytearray": "598902ce" + }, + { + "_tag": "ByteArray", + "bytearray": "b47dc7" + }, + { + "_tag": "ByteArray", + "bytearray": "02d0fab777c95f2bc877831a" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + } + ] + } + ] + }, + "cborHex": "9fd905079f809f1b291545a9404241711bcedcce2c4c9d4159ff1b8b2a6ac6e70b8904d8669f1b159e3b29533276c19f1b9dd660d34f00a59749dab8b295d3f92ee28e44598902ce43b47dc74c02d0fab777c95f2bc877831affffffbf071bfffffffffffffffbffff", + "cborBytes": [ + 159, 217, 5, 7, 159, 128, 159, 27, 41, 21, 69, 169, 64, 66, 65, 113, 27, 206, 220, 206, 44, 76, 157, 65, 89, 255, + 27, 139, 42, 106, 198, 231, 11, 137, 4, 216, 102, 159, 27, 21, 158, 59, 41, 83, 50, 118, 193, 159, 27, 157, 214, + 96, 211, 79, 0, 165, 151, 73, 218, 184, 178, 149, 211, 249, 46, 226, 142, 68, 89, 137, 2, 206, 67, 180, 125, 199, + 76, 2, 208, 250, 183, 119, 201, 95, 43, 200, 119, 131, 26, 255, 255, 255, 191, 7, 27, 255, 255, 255, 255, 255, + 255, 255, 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1664, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "919c78" + }, + { + "_tag": "ByteArray", + "bytearray": "cd9fbfd98fc04136b114c315" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb124080ac52" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8306f052dfb59d5b96" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fca4bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6272b1cb6ed735" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5695462252291809652" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f9f43919c784ccd9fbfd98fc04136b114c315bf46eb124080ac52498306f052dfb59d5b9643fca4bf476272b1cb6ed735ffd8669f1b4f0a58be1b7fe17480ffffff", + "cborBytes": [ + 159, 159, 67, 145, 156, 120, 76, 205, 159, 191, 217, 143, 192, 65, 54, 177, 20, 195, 21, 191, 70, 235, 18, 64, + 128, 172, 82, 73, 131, 6, 240, 82, 223, 181, 157, 91, 150, 67, 252, 164, 191, 71, 98, 114, 177, 203, 110, 215, 53, + 255, 216, 102, 159, 27, 79, 10, 88, 190, 27, 127, 225, 116, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1665, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3c9dd56c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + "cborHex": "9f9f443c9dd56cff0cff", + "cborBytes": [159, 159, 68, 60, 157, 213, 108, 255, 12, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1666, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2027242740052379687" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "184a419c2b7c5be5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13064141740721459446" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67ccf14d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14638481951601603440" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4bc986" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f494" + }, + { + "_tag": "ByteArray", + "bytearray": "34dd" + } + ] + }, + "cborHex": "9fbf1b1c223688024fc82748184a419c2b7c5be51bb54d27b2470e50f64467ccf14d1bcb2655c6e82e3370434bc986ff42f4944234ddff", + "cborBytes": [ + 159, 191, 27, 28, 34, 54, 136, 2, 79, 200, 39, 72, 24, 74, 65, 156, 43, 124, 91, 229, 27, 181, 77, 39, 178, 71, + 14, 80, 246, 68, 103, 204, 241, 77, 27, 203, 38, 85, 198, 232, 46, 51, 112, 67, 75, 201, 134, 255, 66, 244, 148, + 66, 52, 221, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1667, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10584789489459472824" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9295088323088932721" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2188649138104725420" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd86bd157becdcc5f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8316501961106120217" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23a355" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6c4d9025335f32" + }, + { + "_tag": "ByteArray", + "bytearray": "9b29b0b5c95abe" + } + ] + }, + "cborHex": "9f1b92e4b9f5c58529b81b80fec9951598df71bf1b1e5fa4cb8eb26fac49dd86bd157becdcc5f91b736a26788d91de194323a355ff476c4d9025335f32479b29b0b5c95abeff", + "cborBytes": [ + 159, 27, 146, 228, 185, 245, 197, 133, 41, 184, 27, 128, 254, 201, 149, 21, 152, 223, 113, 191, 27, 30, 95, 164, + 203, 142, 178, 111, 172, 73, 221, 134, 189, 21, 123, 236, 220, 197, 249, 27, 115, 106, 38, 120, 141, 145, 222, 25, + 67, 35, 163, 85, 255, 71, 108, 77, 144, 37, 51, 95, 50, 71, 155, 41, 176, 181, 201, 90, 190, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1668, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c1387efb469f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14010080801641500499" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "56c81a064e938cf59ed9" + }, + { + "_tag": "ByteArray", + "bytearray": "aa24bb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3002538800013709902" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fcf3c381048b4c52e1141c31" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8662323479233725531" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17652056140235399118" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "730cccca77a5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11120933871891824835" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2a2f111fd9e8a63297f4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16911213261638266754" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1577793467936907110" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4296799074523548456" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "44dc99" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16316946324005440771" + } + } + ] + } + ] + }, + "cborHex": "9f46c1387efb469f9f1bc26dce42b05c8f539f4a56c81a064e938cf59ed943aa24bb1b29ab29216725124e4cfcf3c381048b4c52e1141c311b7836c14f3540845bffd8669f1bf4f8b388f1fbdfce9f46730cccca77a51b9a557e6f6cb8c0c34a2a2f111fd9e8a63297f41beab0b2dcacd2ef821b15e572ccb14f9f66ffffd8669f1b3ba14bfe2c340b2880ff4344dc99ff9f801be271703b1575cd03ffff", + "cborBytes": [ + 159, 70, 193, 56, 126, 251, 70, 159, 159, 27, 194, 109, 206, 66, 176, 92, 143, 83, 159, 74, 86, 200, 26, 6, 78, + 147, 140, 245, 158, 217, 67, 170, 36, 187, 27, 41, 171, 41, 33, 103, 37, 18, 78, 76, 252, 243, 195, 129, 4, 139, + 76, 82, 225, 20, 28, 49, 27, 120, 54, 193, 79, 53, 64, 132, 91, 255, 216, 102, 159, 27, 244, 248, 179, 136, 241, + 251, 223, 206, 159, 70, 115, 12, 204, 202, 119, 165, 27, 154, 85, 126, 111, 108, 184, 192, 195, 74, 42, 47, 17, + 31, 217, 232, 166, 50, 151, 244, 27, 234, 176, 178, 220, 172, 210, 239, 130, 27, 21, 229, 114, 204, 177, 79, 159, + 102, 255, 255, 216, 102, 159, 27, 59, 161, 75, 254, 44, 52, 11, 40, 128, 255, 67, 68, 220, 153, 255, 159, 128, 27, + 226, 113, 112, 59, 21, 117, 205, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1669, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13397485032038724735" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13759882188285799686" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b94e" + }, + { + "_tag": "ByteArray", + "bytearray": "56b09dfa64ad87edf5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "256803931020249242" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "47a5386b" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "150dd4e54083be405c1b" + }, + { + "_tag": "ByteArray", + "bytearray": "4c1cb999" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15292898438437492950" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1bb9ed6da75a47f47fa01bbef4ebf27fffed069f42b94e4956b09dfa64ad87edf51b039059d08d62c89aff4447a5386bff9f9f4a150dd4e54083be405c1b444c1cb9991bd43b4a1ac13158d6ffffff", + "cborBytes": [ + 159, 159, 27, 185, 237, 109, 167, 90, 71, 244, 127, 160, 27, 190, 244, 235, 242, 127, 255, 237, 6, 159, 66, 185, + 78, 73, 86, 176, 157, 250, 100, 173, 135, 237, 245, 27, 3, 144, 89, 208, 141, 98, 200, 154, 255, 68, 71, 165, 56, + 107, 255, 159, 159, 74, 21, 13, 212, 229, 64, 131, 190, 64, 92, 27, 68, 76, 28, 185, 153, 27, 212, 59, 74, 26, + 193, 49, 88, 214, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1670, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "050201" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2091030604358124835" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3509060023051317266" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3823589733855825685" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "051471d4b7a8be96ce60" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10851143168822925472" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18282712768966310417" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "790f1a828e" + } + } + ] + } + ] + }, + "cborHex": "9fa043050201bf1b1d04d541833c85231b30b2af7fc97f70121b35101e9acd4e8f154a051471d4b7a8be96ce601b969701386098d8a0413f1bfdb93e65bcbc3a1145790f1a828effff", + "cborBytes": [ + 159, 160, 67, 5, 2, 1, 191, 27, 29, 4, 213, 65, 131, 60, 133, 35, 27, 48, 178, 175, 127, 201, 127, 112, 18, 27, + 53, 16, 30, 154, 205, 78, 143, 21, 74, 5, 20, 113, 212, 183, 168, 190, 150, 206, 96, 27, 150, 151, 1, 56, 96, 152, + 216, 160, 65, 63, 27, 253, 185, 62, 101, 188, 188, 58, 17, 69, 121, 15, 26, 130, 142, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1671, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13200901216325083420" + } + } + ] + }, + "cborHex": "9fa01bb73305b70214211cff", + "cborBytes": [159, 160, 27, 183, 51, 5, 183, 2, 20, 33, 28, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1672, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f54b594881b654a03b1a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "074cfd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9195884435654400991" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2204fc54" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87069ed2e2bf6421" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9931a96c809e99b1c303" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6488626154898014965" + } + } + } + ] + } + ] + }, + "cborHex": "9f4af54b594881b654a03b1abf43074cfd1b7f9e582c1eb95bdf442204fc54074887069ed2e2bf642141074a9931a96c809e99b1c3031b5a0c3b1c130142f5ffff", + "cborBytes": [ + 159, 74, 245, 75, 89, 72, 129, 182, 84, 160, 59, 26, 191, 67, 7, 76, 253, 27, 127, 158, 88, 44, 30, 185, 91, 223, + 68, 34, 4, 252, 84, 7, 72, 135, 6, 158, 210, 226, 191, 100, 33, 65, 7, 74, 153, 49, 169, 108, 128, 158, 153, 177, + 195, 3, 27, 90, 12, 59, 28, 19, 1, 66, 245, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1673, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9116009543291770474" + } + } + ] + }, + "cborHex": "9f1b7e82926184fa166aff", + "cborBytes": [159, 27, 126, 130, 146, 97, 132, 250, 22, 106, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1674, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3222999918951673581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2558190622292324533" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13188789429816701621" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13820855485487682214" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1381c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14851687529307081868" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "319e3c5e0d2196" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3291027468528635051" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12964372391831855139" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "40d7eb439826cf8eeff1" + }, + { + "_tag": "ByteArray", + "bytearray": "27d4b7d6a769ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11714592430950498806" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13200317673943130008" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a7" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12145502086592214919" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffeb9fbf1b2cba6559a03a2eed1b238084d12d7830b51bb707fe1bf5a6b2b51bbfcd8ad6888092a6431381c31bce1bcb1ecb728c8c47319e3c5e0d21961b2dac140bc7b3ccabffd8669f1bb3eab4008f04e0239f4a40d7eb439826cf8eeff14727d4b7d6a769ab1ba29297bfd748c1f61bb730f2fc75b0df9841a7ffff1ba88d7dcc52183787ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 191, 27, 44, 186, 101, 89, 160, 58, 46, 237, + 27, 35, 128, 132, 209, 45, 120, 48, 181, 27, 183, 7, 254, 27, 245, 166, 178, 181, 27, 191, 205, 138, 214, 136, + 128, 146, 166, 67, 19, 129, 195, 27, 206, 27, 203, 30, 203, 114, 140, 140, 71, 49, 158, 60, 94, 13, 33, 150, 27, + 45, 172, 20, 11, 199, 179, 204, 171, 255, 216, 102, 159, 27, 179, 234, 180, 0, 143, 4, 224, 35, 159, 74, 64, 215, + 235, 67, 152, 38, 207, 142, 239, 241, 71, 39, 212, 183, 214, 167, 105, 171, 27, 162, 146, 151, 191, 215, 72, 193, + 246, 27, 183, 48, 242, 252, 117, 176, 223, 152, 65, 167, 255, 255, 27, 168, 141, 125, 204, 82, 24, 55, 135, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1675, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d49b74c898322f6cc1539bc3" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f4cd49b74c898322f6cc1539bc380ff", + "cborBytes": [159, 76, 212, 155, 116, 200, 152, 50, 47, 108, 193, 83, 155, 195, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1676, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1746147404140569860" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10e5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8154964934277735705" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39ae6ce1fcde45b832879c" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b183b8fd00544e5044210e51b712c41669f6425194b39ae6ce1fcde45b832879cffff", + "cborBytes": [ + 159, 191, 27, 24, 59, 143, 208, 5, 68, 229, 4, 66, 16, 229, 27, 113, 44, 65, 102, 159, 100, 37, 25, 75, 57, 174, + 108, 225, 252, 222, 69, 184, 50, 135, 156, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1677, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5944690504332856218" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74d72af586e249ac05a2c43e" + }, + { + "_tag": "ByteArray", + "bytearray": "b2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2375138797772276012" + } + } + ] + }, + "cborHex": "9f1b527fc8847265cb9a4c74d72af586e249ac05a2c43e41b21b20f630270d77012cff", + "cborBytes": [ + 159, 27, 82, 127, 200, 132, 114, 101, 203, 154, 76, 116, 215, 42, 245, 134, 226, 73, 172, 5, 162, 196, 62, 65, + 178, 27, 32, 246, 48, 39, 13, 119, 1, 44, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1678, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3911298869256422969" + } + }, + { + "_tag": "ByteArray", + "bytearray": "680ed55bb662" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f244189d82674620ef4bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d524b1ff732844cca7dec87e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "52b841" + } + ] + }, + "cborHex": "9f1b3647b999406a863946680ed55bb662bf4b7f244189d82674620ef4bb4cd524b1ff732844cca7dec87eff4352b841ff", + "cborBytes": [ + 159, 27, 54, 71, 185, 153, 64, 106, 134, 57, 70, 104, 14, 213, 91, 182, 98, 191, 75, 127, 36, 65, 137, 216, 38, + 116, 98, 14, 244, 187, 76, 213, 36, 177, 255, 115, 40, 68, 204, 167, 222, 200, 126, 255, 67, 82, 184, 65, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1679, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5bb438d0cbaa4f1d4728" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "423442754233062258" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16161538577221597499" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3270576972793958254" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16270b4b90810752" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7700617370264016962" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10047382673810316670" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15232978251846973526" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9875630324524748370" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "cbca41f5408d58395bf21f1e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2993840092777028203" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "18d07e4fce0c32beebfaaa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15518558880083927992" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce5ddea31e3b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9657019479662568852" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5dd5de728e35bcf2dfc9bd44" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b5d85" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c52fb0c350ac9" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "121e9500f6d531c33906f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12187727683106070892" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f50dd750b2abe02a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4866370570036143411" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68ef28" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5258368407304027824" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14127766025538199933" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4a5bb438d0cbaa4f1d47289fbf1b05e05ef104c653721be04951b55f10b93b1b2d636c6db1f4cf6e4816270b4b908107521b6ade16b2d9ca18421b8b6f794efae0dd7e1bd36669032496f8561b890d4974f25f8e52ff804ccbca41f5408d58395bf21f1eff9fd8669f1b298c41b3cc4c1a6b9f4b18d07e4fce0c32beebfaaa1bd75cff14a162e3b846ce5ddea31e3b1b8604a00d3a50a5944c5dd5de728e35bcf2dfc9bd44ffffbf439b5d85479c52fb0c350ac9ffbf4b121e9500f6d531c33906f61ba92381c122bb616c491f50dd750b2abe02a81b4388d240146b65334368ef281b48f97a34d77e3eb041ad1bc40fe8591e09617dffffff", + "cborBytes": [ + 159, 74, 91, 180, 56, 208, 203, 170, 79, 29, 71, 40, 159, 191, 27, 5, 224, 94, 241, 4, 198, 83, 114, 27, 224, 73, + 81, 181, 95, 16, 185, 59, 27, 45, 99, 108, 109, 177, 244, 207, 110, 72, 22, 39, 11, 75, 144, 129, 7, 82, 27, 106, + 222, 22, 178, 217, 202, 24, 66, 27, 139, 111, 121, 78, 250, 224, 221, 126, 27, 211, 102, 105, 3, 36, 150, 248, 86, + 27, 137, 13, 73, 116, 242, 95, 142, 82, 255, 128, 76, 203, 202, 65, 245, 64, 141, 88, 57, 91, 242, 31, 30, 255, + 159, 216, 102, 159, 27, 41, 140, 65, 179, 204, 76, 26, 107, 159, 75, 24, 208, 126, 79, 206, 12, 50, 190, 235, 250, + 170, 27, 215, 92, 255, 20, 161, 98, 227, 184, 70, 206, 93, 222, 163, 30, 59, 27, 134, 4, 160, 13, 58, 80, 165, + 148, 76, 93, 213, 222, 114, 142, 53, 188, 242, 223, 201, 189, 68, 255, 255, 191, 67, 155, 93, 133, 71, 156, 82, + 251, 12, 53, 10, 201, 255, 191, 75, 18, 30, 149, 0, 246, 213, 49, 195, 57, 6, 246, 27, 169, 35, 129, 193, 34, 187, + 97, 108, 73, 31, 80, 221, 117, 11, 42, 190, 2, 168, 27, 67, 136, 210, 64, 20, 107, 101, 51, 67, 104, 239, 40, 27, + 72, 249, 122, 52, 215, 126, 62, 176, 65, 173, 27, 196, 15, 232, 89, 30, 9, 97, 125, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1680, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11700096398671521165" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18101582184482246062" + } + } + ] + }, + "cborHex": "9f1ba25f17af50a4a58d1bfb35bd172a9a8daeff", + "cborBytes": [159, 27, 162, 95, 23, 175, 80, 164, 165, 141, 27, 251, 53, 189, 23, 42, 154, 141, 174, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1681, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bb581b41a293f113f13" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18025035717107858278" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a772ee26e09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15297055106827902830" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcaee7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17016622064195434961" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bde530c1131cbf7f97a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9932996087141501755" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d57197adb3e23b758d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21554619695315c6b9" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "61b41192bcf61cf61a7e6b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14402222221002264803" + } + } + ] + }, + "cborHex": "9fbf4a1bb581b41a293f113f131bfa25ca7be5f13b66469a772ee26e091bd44a0e92880d5f6e43bcaee71bec272f9c057179d14abde530c1131cbf7f97a61b89d91750616a0b3b49d57197adb3e23b758d4921554619695315c6b9ff4b61b41192bcf61cf61a7e6b1bc7def8cdc313d0e3ff", + "cborBytes": [ + 159, 191, 74, 27, 181, 129, 180, 26, 41, 63, 17, 63, 19, 27, 250, 37, 202, 123, 229, 241, 59, 102, 70, 154, 119, + 46, 226, 110, 9, 27, 212, 74, 14, 146, 136, 13, 95, 110, 67, 188, 174, 231, 27, 236, 39, 47, 156, 5, 113, 121, + 209, 74, 189, 229, 48, 193, 19, 28, 191, 127, 151, 166, 27, 137, 217, 23, 80, 97, 106, 11, 59, 73, 213, 113, 151, + 173, 179, 226, 59, 117, 141, 73, 33, 85, 70, 25, 105, 83, 21, 198, 185, 255, 75, 97, 180, 17, 146, 188, 246, 28, + 246, 26, 126, 107, 27, 199, 222, 248, 205, 195, 19, 208, 227, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1682, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + }, + "cborHex": "9fd905048013ff", + "cborBytes": [159, 217, 5, 4, 128, 19, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1683, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0581070307fc6efc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2281721208034836636" + } + } + ] + }, + "cborHex": "9f480581070307fc6efc1b1faa4d598164409cff", + "cborBytes": [159, 72, 5, 129, 7, 3, 7, 252, 110, 252, 27, 31, 170, 77, 89, 129, 100, 64, 156, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1684, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11769703900736449788" + } + } + ] + } + ] + }, + "cborHex": "9f9f801ba3566356d2ececfcffff", + "cborBytes": [159, 159, 128, 27, 163, 86, 99, 86, 210, 236, 236, 252, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1685, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b1c602e9799513c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5fc2b02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "523208233456921827" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c16310cbcbb4c99ee22d91d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8920589624105407843" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6ea10340c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "934d5ec35dd7c0af3ebaf5f6" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14737370932020152599" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1274964938849064292" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3644029708378212799" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8fc3a0c85926858d1df34188" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35094862f1" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf483b1c602e9799513c44d5fc2b02427a811b0742cf1dc2c26ce34cc16310cbcbb4c99ee22d91d61b7bcc4cfff3d6956345c6ea10340c4c934d5ec35dd7c0af3ebaf5f6ff1bcc85a8c7de3a8917bf1b11b195db592d15641b329231b67eda89bf4c8fc3a0c85926858d1df341884535094862f1ffffff", + "cborBytes": [ + 159, 159, 191, 72, 59, 28, 96, 46, 151, 153, 81, 60, 68, 213, 252, 43, 2, 66, 122, 129, 27, 7, 66, 207, 29, 194, + 194, 108, 227, 76, 193, 99, 16, 203, 203, 180, 201, 158, 226, 45, 145, 214, 27, 123, 204, 76, 255, 243, 214, 149, + 99, 69, 198, 234, 16, 52, 12, 76, 147, 77, 94, 195, 93, 215, 192, 175, 62, 186, 245, 246, 255, 27, 204, 133, 168, + 199, 222, 58, 137, 23, 191, 27, 17, 177, 149, 219, 89, 45, 21, 100, 27, 50, 146, 49, 182, 126, 218, 137, 191, 76, + 143, 195, 160, 200, 89, 38, 133, 141, 29, 243, 65, 136, 69, 53, 9, 72, 98, 241, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1686, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "31bcda" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10087591555118334773" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9056fbf276c531f3137463ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7629eb37b73effd5134" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abc44dedf9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9636557868472166584" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9ebf07851fbcd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5267584762867713239" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9196388527277236623" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7881119515576500076" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3320602476207741647" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87e095e104d1c30d63" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17343101476276134487" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bcadf56b93" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4700226617621573648" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "703125799100789262" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16040732326914351830" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13898471519995937264" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8476574049986229819" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5085942017487687328" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4514" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f7573b37e48825be8fc90e2a" + } + ] + } + ] + }, + "cborHex": "9fbf4331bcda1b8bfe5312b20f03354c9056fbf276c531f3137463ae4ab7629eb37b73effd513445abc44dedf91b85bbee531fc768b847b9ebf07851fbcd1b491a386ed6fd84d7ffd8669f1b7fa022a418d6618f9fd8669f1b6d5f5c718655ff6c9f1b2e15265bdaa51acf4987e095e104d1c30d631bf0af12e7acfde25745bcadf56b93ffff1b413a8f34b32b7010d8669f1b09c201305fd0b20e9f1bde9c21105adae2d61bc0e14a35ce3dc1f01b75a2d73009b9363bffffbf1b4694e55184964ea0424514ff4cf7573b37e48825be8fc90e2affffff", + "cborBytes": [ + 159, 191, 67, 49, 188, 218, 27, 139, 254, 83, 18, 178, 15, 3, 53, 76, 144, 86, 251, 242, 118, 197, 49, 243, 19, + 116, 99, 174, 74, 183, 98, 158, 179, 123, 115, 239, 253, 81, 52, 69, 171, 196, 77, 237, 249, 27, 133, 187, 238, + 83, 31, 199, 104, 184, 71, 185, 235, 240, 120, 81, 251, 205, 27, 73, 26, 56, 110, 214, 253, 132, 215, 255, 216, + 102, 159, 27, 127, 160, 34, 164, 24, 214, 97, 143, 159, 216, 102, 159, 27, 109, 95, 92, 113, 134, 85, 255, 108, + 159, 27, 46, 21, 38, 91, 218, 165, 26, 207, 73, 135, 224, 149, 225, 4, 209, 195, 13, 99, 27, 240, 175, 18, 231, + 172, 253, 226, 87, 69, 188, 173, 245, 107, 147, 255, 255, 27, 65, 58, 143, 52, 179, 43, 112, 16, 216, 102, 159, + 27, 9, 194, 1, 48, 95, 208, 178, 14, 159, 27, 222, 156, 33, 16, 90, 218, 226, 214, 27, 192, 225, 74, 53, 206, 61, + 193, 240, 27, 117, 162, 215, 48, 9, 185, 54, 59, 255, 255, 191, 27, 70, 148, 229, 81, 132, 150, 78, 160, 66, 69, + 20, 255, 76, 247, 87, 59, 55, 228, 136, 37, 190, 143, 201, 14, 42, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1687, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12113204751292074762" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17859839067588137254" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8d20f95e900c71409a66" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12411273656094985586" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fa01ba81abf8af4568b0a1bf7dae501a93c1126d8669f1bfffffffffffffff99f4a8d20f95e900c71409a661bac3db3a1e9b48d72ffffffff", + "cborBytes": [ + 159, 159, 160, 27, 168, 26, 191, 138, 244, 86, 139, 10, 27, 247, 218, 229, 1, 169, 60, 17, 38, 216, 102, 159, 27, + 255, 255, 255, 255, 255, 255, 255, 249, 159, 74, 141, 32, 249, 94, 144, 12, 113, 64, 154, 102, 27, 172, 61, 179, + 161, 233, 180, 141, 114, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1688, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2221432159231106394" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8918200672997373990" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15026382340159726476" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17181671821271115680" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9414959674909182596" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10116503951315761819" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f07d8669f1b1ed41cc777995d5a9fd8669f1b7bc3d042eda878269f1bd0886f200c6c638c1bee718f7d323427a01b82a8a7f11596ca841b8c650abe8302fa9bffffffffff", + "cborBytes": [ + 159, 7, 216, 102, 159, 27, 30, 212, 28, 199, 119, 153, 93, 90, 159, 216, 102, 159, 27, 123, 195, 208, 66, 237, + 168, 120, 38, 159, 27, 208, 136, 111, 32, 12, 108, 99, 140, 27, 238, 113, 143, 125, 50, 52, 39, 160, 27, 130, 168, + 167, 241, 21, 150, 202, 132, 27, 140, 101, 10, 190, 131, 2, 250, 155, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1689, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00fcff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "518ba0b6e7e8608d319bc4ab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05f9f800" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "868f1d6b98509ec7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e429aa4d8adc0bf6cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10463803316092150514" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed9de6d8068e52a823" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4300fcff4c518ba0b6e7e8608d319bc4ab4405f9f80048868f1d6b98509ec749e429aa4d8adc0bf6cf1b9136e5ad273a22f249ed9de6d8068e52a8231bfffffffffffffffeffff", + "cborBytes": [ + 159, 191, 67, 0, 252, 255, 76, 81, 139, 160, 182, 231, 232, 96, 141, 49, 155, 196, 171, 68, 5, 249, 248, 0, 72, + 134, 143, 29, 107, 152, 80, 158, 199, 73, 228, 41, 170, 77, 138, 220, 11, 246, 207, 27, 145, 54, 229, 173, 39, 58, + 34, 242, 73, 237, 157, 230, 216, 6, 142, 82, 168, 35, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1690, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df1c424aaac1410bc8e457" + } + ] + }, + "cborHex": "9f0f4bdf1c424aaac1410bc8e457ff", + "cborBytes": [159, 15, 75, 223, 28, 66, 74, 170, 193, 65, 11, 200, 228, 87, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1691, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16817590971753054698" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13674508612730905245" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c3b63e4a6c2fbd5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f862" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "81815776527016309" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f90f97f35581c27" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "357002648121413331" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf0631998a1ba297ba0590" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8483659816013915138" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10514340438970801396" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15127787320191620178" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2eb5af" + } + } + ] + } + ] + }, + "cborHex": "9f1be96415e2a92841eaa01bbdc59d21f3d8629dbf483c3b63e4a6c2fbd542f862ffbf1b0122ab03e8ea6175480f90f97f35581c271b04f4540459268ed34bcf0631998a1ba297ba05901b75bc03a780c3e4021b91ea70ec00611cf41bd1f0b26ad1ae1452432eb5afffff", + "cborBytes": [ + 159, 27, 233, 100, 21, 226, 169, 40, 65, 234, 160, 27, 189, 197, 157, 33, 243, 216, 98, 157, 191, 72, 60, 59, 99, + 228, 166, 194, 251, 213, 66, 248, 98, 255, 191, 27, 1, 34, 171, 3, 232, 234, 97, 117, 72, 15, 144, 249, 127, 53, + 88, 28, 39, 27, 4, 244, 84, 4, 89, 38, 142, 211, 75, 207, 6, 49, 153, 138, 27, 162, 151, 186, 5, 144, 27, 117, + 188, 3, 167, 128, 195, 228, 2, 27, 145, 234, 112, 236, 0, 97, 28, 244, 27, 209, 240, 178, 106, 209, 174, 20, 82, + 67, 46, 181, 175, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1692, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3253781603473548723" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ea20f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5452188640010939722" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15112207906250896734" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6431927038334504255" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f47823" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9081593450855681779" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a90" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14112239223711975119" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "685c541d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15830783801575200002" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7759744058169801451" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2494638911109681271" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9377264035865426456" + } + } + ] + } + ] + }, + "cborHex": "9fd905079fbf1b2d27c1210bbde5b3435ea20f1b4baa10ae6045ad4a1bd1b95905d7ef355e1b5942cb9045288d3f43f478231b7e084d2090c44ef3423a901bc3d8becddaafc6cf44685c541d1bdbb23dfe10e5d5021b6bb0261ba728baebffd8669f1b229ebcdf5b8f507780ff1b8222bbf52ecdfa18ffff", + "cborBytes": [ + 159, 217, 5, 7, 159, 191, 27, 45, 39, 193, 33, 11, 189, 229, 179, 67, 94, 162, 15, 27, 75, 170, 16, 174, 96, 69, + 173, 74, 27, 209, 185, 89, 5, 215, 239, 53, 94, 27, 89, 66, 203, 144, 69, 40, 141, 63, 67, 244, 120, 35, 27, 126, + 8, 77, 32, 144, 196, 78, 243, 66, 58, 144, 27, 195, 216, 190, 205, 218, 175, 198, 207, 68, 104, 92, 84, 29, 27, + 219, 178, 61, 254, 16, 229, 213, 2, 27, 107, 176, 38, 27, 167, 40, 186, 235, 255, 216, 102, 159, 27, 34, 158, 188, + 223, 91, 143, 80, 119, 128, 255, 27, 130, 34, 187, 245, 46, 205, 250, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1693, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1534803963208702954" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5610342166323661748" + } + }, + { + "_tag": "ByteArray", + "bytearray": "36d4926530" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7781418093366494329" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6676430486148715366" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2563410477525221866" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a5dbee" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12465426721844086035" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8910768999328188375" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11210030119952143578" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b154cb812a2ea9bea9f9f1b4ddbf079b41e0bb44536d4926530ff9f1b6bfd268737e844791b5ca77227667b93661b2393103f6e67c1eaff43a5dbeed8669f1bacfe178f112dc5139f1b7ba96931908507d71b9b920700352d54da414effffffff", + "cborBytes": [ + 159, 27, 21, 76, 184, 18, 162, 234, 155, 234, 159, 159, 27, 77, 219, 240, 121, 180, 30, 11, 180, 69, 54, 212, 146, + 101, 48, 255, 159, 27, 107, 253, 38, 135, 55, 232, 68, 121, 27, 92, 167, 114, 39, 102, 123, 147, 102, 27, 35, 147, + 16, 63, 110, 103, 193, 234, 255, 67, 165, 219, 238, 216, 102, 159, 27, 172, 254, 23, 143, 17, 45, 197, 19, 159, + 27, 123, 169, 105, 49, 144, 133, 7, 215, 27, 155, 146, 7, 0, 53, 45, 84, 218, 65, 78, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1694, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17132278116036201709" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e4b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7386241431593564192" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f4a58503a05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04020e186126" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6e4a54df2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6530700498780a8c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17309068472243561806" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11361631745531150448" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8deb7d1bff532cda" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4900660048229115079" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16950459943236192949" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10103651001142174370" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10614094963934875360" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4187907810515336080" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4995252345397168794" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13067371467487580977" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15275129390665226412" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8c4796f9d217b033d5" + }, + { + "_tag": "ByteArray", + "bytearray": "756f55" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9508880283699317681" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "760b7f248a75160d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7946603423265846999" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13269089244706452553" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10703941526821240285" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10694407214728020040" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1981efc76e534727b9ef" + } + ] + }, + "cborHex": "9fbf1bedc2142d03894ced422e4bff9fbf1b66813372b3683820460f4a58503a054604020e18612645d6e4a54df249a6530700498780a8c91bf0362a1170fda54eff9f1b9dac9fe0452f8070488deb7d1bff532cda1b4402a4595ba524c71beb3c2182d014cab51b8c37610dd99962a2ffd8669f1b934cd7224199cee09f1b3a1e6ff715d9bb901b4552b38acad5ca9affff1bb558a11da3ac1331d8669f1bd3fc293fecbad8ac9f498c4796f9d217b033d543756f551b83f6543ce19d0bb1ffffff48760b7f248a75160dbf1b6e4801b5e6a9f6d71bb825465d8baf34491b948c0a1b52bb7ddd1b946a2ab34d3d0048ff4a1981efc76e534727b9efff", + "cborBytes": [ + 159, 191, 27, 237, 194, 20, 45, 3, 137, 76, 237, 66, 46, 75, 255, 159, 191, 27, 102, 129, 51, 114, 179, 104, 56, + 32, 70, 15, 74, 88, 80, 58, 5, 70, 4, 2, 14, 24, 97, 38, 69, 214, 228, 165, 77, 242, 73, 166, 83, 7, 0, 73, 135, + 128, 168, 201, 27, 240, 54, 42, 17, 112, 253, 165, 78, 255, 159, 27, 157, 172, 159, 224, 69, 47, 128, 112, 72, + 141, 235, 125, 27, 255, 83, 44, 218, 27, 68, 2, 164, 89, 91, 165, 36, 199, 27, 235, 60, 33, 130, 208, 20, 202, + 181, 27, 140, 55, 97, 13, 217, 153, 98, 162, 255, 216, 102, 159, 27, 147, 76, 215, 34, 65, 153, 206, 224, 159, 27, + 58, 30, 111, 247, 21, 217, 187, 144, 27, 69, 82, 179, 138, 202, 213, 202, 154, 255, 255, 27, 181, 88, 161, 29, + 163, 172, 19, 49, 216, 102, 159, 27, 211, 252, 41, 63, 236, 186, 216, 172, 159, 73, 140, 71, 150, 249, 210, 23, + 176, 51, 213, 67, 117, 111, 85, 27, 131, 246, 84, 60, 225, 157, 11, 177, 255, 255, 255, 72, 118, 11, 127, 36, 138, + 117, 22, 13, 191, 27, 110, 72, 1, 181, 230, 169, 246, 215, 27, 184, 37, 70, 93, 139, 175, 52, 73, 27, 148, 140, + 10, 27, 82, 187, 125, 221, 27, 148, 106, 42, 179, 77, 61, 0, 72, 255, 74, 25, 129, 239, 199, 110, 83, 71, 39, 185, + 239, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1695, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8c80da6142a084fba77bd8" + }, + { + "_tag": "ByteArray", + "bytearray": "3742c4ab106de29cc1293bc4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17866722834583360434" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8287424868522420772" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10124125723454166523" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7904220607886979288" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13059296833530853035" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12349521004373815075" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13802083209809301110" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f6be94c0913f49a015c8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13452357047230598489" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9145374950808529615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "936e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16314073754896065591" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12729782694212404695" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3743310836645091680" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "297719" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88dcd90daf62d0af1a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f1b979d62e54ebb22ed49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6823944924913585355" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f365270" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16701010259254789253" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c5bd7d8032502" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17168059444605580962" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97d57272" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72776d5651f1822277dc1a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae5e4b2f1cacc285" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3966855394808416968" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbb0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a64" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7928652255237516490" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae2d0bd07f757449f586" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b5a4fb657e5b60005" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "074c8ec6ebdcd731" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3eb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1443833340319949905" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7721052057145367791" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5475749340732177695" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10714792309352423785" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf5730" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc651e67bcd5ec279e7c1aea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17945929260853964331" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f4b8c80da6142a084fba77bd84c3742c4ab106de29cc1293bc4d8669f1bf7f359c18fb393b29f1b7302d9025f046a24ffffffd8669f1b8c801eb49fe155fb9f9f1b6db16ec3b76cf0d81bb53bf1476afd76abff1bab624fec43ed2f23d8669f1bbf8ad98d81110e769f4af6be94c0913f49a015c81bbab05f75f7e70d59ffffd8669f1b7eeae61040b2aacf9f42936e1be2673ba4f81a64371bb0a945ea447205d71b33f2e95f7e19d960ffffbf432977194988dcd90daf62d0af1a4b2f1b979d62e54ebb22ed491b5eb385c1204dcccb442f3652701be7c5e85855094485475c5bd7d80325021bee41331ac68176a24497d572724b72776d5651f1822277dc1a48ae5e4b2f1cacc2851b370d19f6dae5cac8ffffffa09fbf42dbb0429a64ffbf1b6e083b37e5082cca4aae2d0bd07f757449f586492b5a4fb657e5b6000548074c8ec6ebdcd73142b3eb416fffffbf1b140986c5f4a2e45141db1b6b26aff02672dcef1b4bfdc5037d6bbd1f1b94b296d60109e16943cf57304cfc651e67bcd5ec279e7c1aea1bf90cbf94c57d2e2bffff", + "cborBytes": [ + 159, 159, 75, 140, 128, 218, 97, 66, 160, 132, 251, 167, 123, 216, 76, 55, 66, 196, 171, 16, 109, 226, 156, 193, + 41, 59, 196, 216, 102, 159, 27, 247, 243, 89, 193, 143, 179, 147, 178, 159, 27, 115, 2, 217, 2, 95, 4, 106, 36, + 255, 255, 255, 216, 102, 159, 27, 140, 128, 30, 180, 159, 225, 85, 251, 159, 159, 27, 109, 177, 110, 195, 183, + 108, 240, 216, 27, 181, 59, 241, 71, 106, 253, 118, 171, 255, 27, 171, 98, 79, 236, 67, 237, 47, 35, 216, 102, + 159, 27, 191, 138, 217, 141, 129, 17, 14, 118, 159, 74, 246, 190, 148, 192, 145, 63, 73, 160, 21, 200, 27, 186, + 176, 95, 117, 247, 231, 13, 89, 255, 255, 216, 102, 159, 27, 126, 234, 230, 16, 64, 178, 170, 207, 159, 66, 147, + 110, 27, 226, 103, 59, 164, 248, 26, 100, 55, 27, 176, 169, 69, 234, 68, 114, 5, 215, 27, 51, 242, 233, 95, 126, + 25, 217, 96, 255, 255, 191, 67, 41, 119, 25, 73, 136, 220, 217, 13, 175, 98, 208, 175, 26, 75, 47, 27, 151, 157, + 98, 229, 78, 187, 34, 237, 73, 27, 94, 179, 133, 193, 32, 77, 204, 203, 68, 47, 54, 82, 112, 27, 231, 197, 232, + 88, 85, 9, 68, 133, 71, 92, 91, 215, 216, 3, 37, 2, 27, 238, 65, 51, 26, 198, 129, 118, 162, 68, 151, 213, 114, + 114, 75, 114, 119, 109, 86, 81, 241, 130, 34, 119, 220, 26, 72, 174, 94, 75, 47, 28, 172, 194, 133, 27, 55, 13, + 25, 246, 218, 229, 202, 200, 255, 255, 255, 160, 159, 191, 66, 219, 176, 66, 154, 100, 255, 191, 27, 110, 8, 59, + 55, 229, 8, 44, 202, 74, 174, 45, 11, 208, 127, 117, 116, 73, 245, 134, 73, 43, 90, 79, 182, 87, 229, 182, 0, 5, + 72, 7, 76, 142, 198, 235, 220, 215, 49, 66, 179, 235, 65, 111, 255, 255, 191, 27, 20, 9, 134, 197, 244, 162, 228, + 81, 65, 219, 27, 107, 38, 175, 240, 38, 114, 220, 239, 27, 75, 253, 197, 3, 125, 107, 189, 31, 27, 148, 178, 150, + 214, 1, 9, 225, 105, 67, 207, 87, 48, 76, 252, 101, 30, 103, 188, 213, 236, 39, 158, 124, 26, 234, 27, 249, 12, + 191, 148, 197, 125, 46, 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1696, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "486853574602026080" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9469165214011142418" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d83d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "635282b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16814092341142800479" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b06c1a6bf23c86c601b83693b97a49eb112411042d83d44635282b51be957a7e63e6ec85fffff", + "cborBytes": [ + 159, 191, 27, 6, 193, 166, 191, 35, 200, 108, 96, 27, 131, 105, 59, 151, 164, 158, 177, 18, 65, 16, 66, 216, 61, + 68, 99, 82, 130, 181, 27, 233, 87, 167, 230, 62, 110, 200, 95, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1697, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c9bae7" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + }, + "cborHex": "9f9f43c9bae7ff01ff", + "cborBytes": [159, 159, 67, 201, 186, 231, 255, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1698, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1040907660419087269" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15664834482328886632" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3022846429536569371" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9252827882424994543" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3599633348263504964" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16005202553105421348" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11149775387844255956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1854190798179882423" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16551012846972304353" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5790064878048596022" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00fff73c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5574345266668015647" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12576699153916312063" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3590133520368516916" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3570d1cc051f5f7a68" + }, + { + "_tag": "ByteArray", + "bytearray": "9a941a" + }, + { + "_tag": "ByteArray", + "bytearray": "0d5b410c6886d2" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ac3603ab3eb8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10878942785282229908" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "569421634739682018" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17947436528880934058" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b0e720c008f433ba51bd964abf74080dd681b29f34ecfdb15c81b1b8068a5ef7bc58aef1b31f4777564e56c441bde1de6ec400614241b9abbf5a425d9a0d41b19bb68b4ff4f55b71be5b1027e48b5fbe11b505a71545a8d5036ff0fbf4400fff73c04ffd8669f1b4d5c0d7c6320901f9fd8669f1bae89693f0c2339ff9f1b31d2b76a59c9bf34493570d1cc051f5f7a68439a941a470d5b410c6886d2ffff46ac3603ab3eb81b96f9c4d2f88bc6941b07e6fdf5ba14bae2ffff9f1bf9121a6ef4d15caaffff", + "cborBytes": [ + 159, 191, 27, 14, 114, 12, 0, 143, 67, 59, 165, 27, 217, 100, 171, 247, 64, 128, 221, 104, 27, 41, 243, 78, 207, + 219, 21, 200, 27, 27, 128, 104, 165, 239, 123, 197, 138, 239, 27, 49, 244, 119, 117, 100, 229, 108, 68, 27, 222, + 29, 230, 236, 64, 6, 20, 36, 27, 154, 187, 245, 164, 37, 217, 160, 212, 27, 25, 187, 104, 180, 255, 79, 85, 183, + 27, 229, 177, 2, 126, 72, 181, 251, 225, 27, 80, 90, 113, 84, 90, 141, 80, 54, 255, 15, 191, 68, 0, 255, 247, 60, + 4, 255, 216, 102, 159, 27, 77, 92, 13, 124, 99, 32, 144, 31, 159, 216, 102, 159, 27, 174, 137, 105, 63, 12, 35, + 57, 255, 159, 27, 49, 210, 183, 106, 89, 201, 191, 52, 73, 53, 112, 209, 204, 5, 31, 95, 122, 104, 67, 154, 148, + 26, 71, 13, 91, 65, 12, 104, 134, 210, 255, 255, 70, 172, 54, 3, 171, 62, 184, 27, 150, 249, 196, 210, 248, 139, + 198, 148, 27, 7, 230, 253, 245, 186, 20, 186, 226, 255, 255, 159, 27, 249, 18, 26, 110, 244, 209, 92, 170, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1699, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "dd53cefd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ae" + } + ] + }, + "cborHex": "9fa044dd53cefd0441aeff", + "cborBytes": [159, 160, 68, 221, 83, 206, 253, 4, 65, 174, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1700, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "60f373bc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11420831167868816520" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4f2daf9cfdb27527dc87" + } + ] + } + ] + }, + "cborHex": "9f4460f373bcd8669f1b9e7ef16fe087cc889f4a4f2daf9cfdb27527dc87ffffff", + "cborBytes": [ + 159, 68, 96, 243, 115, 188, 216, 102, 159, 27, 158, 126, 241, 111, 224, 135, 204, 136, 159, 74, 79, 45, 175, 156, + 253, 178, 117, 39, 220, 135, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1701, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7651927087797858040" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5965450696946514030" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa24d5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11296625593483175971" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e59c7bcf0bc02b5536" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16458330842859022392" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a9ca1c62" + }, + { + "_tag": "ByteArray", + "bytearray": "47e59e35c7ae62853b50" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fdd69b09082685ca8f296f80" + }, + { + "_tag": "ByteArray", + "bytearray": "16e3ed628b2016dab4ba" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17322674829532841395" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "acd6" + }, + { + "_tag": "ByteArray", + "bytearray": "31520d2c9cc5607f76" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "749161946001368029" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f16b" + }, + { + "_tag": "ByteArray", + "bytearray": "56a1b4bac34dcb9759" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b6a311b250b616ef8d8669f1b52c989cd749a786e9f43aa24d5d8669f1b9cc5ad200c26a8239f49e59c7bcf0bc02b55361be467bcb39c77a83844a9ca1c624a47e59e35c7ae62853b50ffff4cfdd69b09082685ca8f296f804a16e3ed628b2016dab4bad8669f1bf06680fa5de7c5b39f42acd64931520d2c9cc5607f761b0a658ed216a6e3dd42f16b4956a1b4bac34dcb9759ffffffffff", + "cborBytes": [ + 159, 27, 106, 49, 27, 37, 11, 97, 110, 248, 216, 102, 159, 27, 82, 201, 137, 205, 116, 154, 120, 110, 159, 67, + 170, 36, 213, 216, 102, 159, 27, 156, 197, 173, 32, 12, 38, 168, 35, 159, 73, 229, 156, 123, 207, 11, 192, 43, 85, + 54, 27, 228, 103, 188, 179, 156, 119, 168, 56, 68, 169, 202, 28, 98, 74, 71, 229, 158, 53, 199, 174, 98, 133, 59, + 80, 255, 255, 76, 253, 214, 155, 9, 8, 38, 133, 202, 143, 41, 111, 128, 74, 22, 227, 237, 98, 139, 32, 22, 218, + 180, 186, 216, 102, 159, 27, 240, 102, 128, 250, 93, 231, 197, 179, 159, 66, 172, 214, 73, 49, 82, 13, 44, 156, + 197, 96, 127, 118, 27, 10, 101, 142, 210, 22, 166, 227, 221, 66, 241, 107, 73, 86, 161, 180, 186, 195, 77, 203, + 151, 89, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1702, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16262930660467961455" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17884410177417519273" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14938450612376026664" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "59a04c0b47c54e19" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "898f86ee80" + } + ] + }, + "cborHex": "9fd8669f1be1b1894560006e6f9f1bf832304cfa5a20a9d8669f1bcf5009af4563be2880ff4859a04c0b47c54e19ffff45898f86ee80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 225, 177, 137, 69, 96, 0, 110, 111, 159, 27, 248, 50, 48, 76, 250, 90, 32, 169, 216, 102, + 159, 27, 207, 80, 9, 175, 69, 99, 190, 40, 128, 255, 72, 89, 160, 76, 11, 71, 197, 78, 25, 255, 255, 69, 137, 143, + 134, 238, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1703, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15675254314184017091" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "015e041c9db9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15755945046247789313" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94712daa424c43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a924f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15065378908204006230" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4ce834" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4015857119885780002" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14467191921373723645" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6089402774122174019" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92db96" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8885707664369490821" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4287495406109951064" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12962453864103894628" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "255a0341a9" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17033235851004346465" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1791390319318693671" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4c3189773df0564c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1065566554733379609" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2336910228883950316" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8308536500518124866" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2476034464473794562" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13370180031116629671" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15351465066173832207" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9872280294938945693" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16750161149563680139" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed8b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3c1fd4cb4d" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10759612142277613876" + } + } + ] + }, + "cborHex": "9fd8669f1bd989b0bf68d904c380ffbf46015e041c9db91bdaa85c8a7e2cd3014794712daa424c4341cc43a924f21bd112fa4c16297b56ff434ce8349fbf1b37bb30c60b83e4221bc8c5ca66eae1bbfd1b5481e78f5dd496434392db961b7b50600ad0b59b851b3b803e5b114d84581bb3e3e31c834d5e6445255a0341a9ffbf1bec6235c2b29000611b18dc4c011510772749c4c3189773df0564c41b0ec9a722cb6b8019ffbf1b206e5f78c09acaec1b734dd9ed3cbffd421b225ca43a1295c8021bb98c6be669ba56a71bd50b5c24631c1c0f1b8901629f66eca89d1be87486d1c24ab58b42ed8bff9f453c1fd4cb4dffff1b9551d23c8d6fd934ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 217, 137, 176, 191, 104, 217, 4, 195, 128, 255, 191, 70, 1, 94, 4, 28, 157, 185, 27, 218, + 168, 92, 138, 126, 44, 211, 1, 71, 148, 113, 45, 170, 66, 76, 67, 65, 204, 67, 169, 36, 242, 27, 209, 18, 250, 76, + 22, 41, 123, 86, 255, 67, 76, 232, 52, 159, 191, 27, 55, 187, 48, 198, 11, 131, 228, 34, 27, 200, 197, 202, 102, + 234, 225, 187, 253, 27, 84, 129, 231, 143, 93, 212, 150, 67, 67, 146, 219, 150, 27, 123, 80, 96, 10, 208, 181, + 155, 133, 27, 59, 128, 62, 91, 17, 77, 132, 88, 27, 179, 227, 227, 28, 131, 77, 94, 100, 69, 37, 90, 3, 65, 169, + 255, 191, 27, 236, 98, 53, 194, 178, 144, 0, 97, 27, 24, 220, 76, 1, 21, 16, 119, 39, 73, 196, 195, 24, 151, 115, + 223, 5, 100, 196, 27, 14, 201, 167, 34, 203, 107, 128, 25, 255, 191, 27, 32, 110, 95, 120, 192, 154, 202, 236, 27, + 115, 77, 217, 237, 60, 191, 253, 66, 27, 34, 92, 164, 58, 18, 149, 200, 2, 27, 185, 140, 107, 230, 105, 186, 86, + 167, 27, 213, 11, 92, 36, 99, 28, 28, 15, 27, 137, 1, 98, 159, 102, 236, 168, 157, 27, 232, 116, 134, 209, 194, + 74, 181, 139, 66, 237, 139, 255, 159, 69, 60, 31, 212, 203, 77, 255, 255, 27, 149, 81, 210, 60, 141, 111, 217, 52, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1704, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2992856240162665139" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1a23f91beb0f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13261575874807158575" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6165094217129430904" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15429063760905409316" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10619509856634858830" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f4ea76604c5321b2e5503" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18fbb7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb4059" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ac1e8b5aee195feb66549766" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4244435377613899852" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16526918445691817042" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5db0229bcaafa6463b02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10407471826733113697" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "51e6baa88440101f26" + }, + { + "_tag": "ByteArray", + "bytearray": "0fd34a96ee8bcec0d75c7107" + }, + { + "_tag": "ByteArray", + "bytearray": "1ee1b63f24" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8f63e282bea09ef90cae8abc" + } + ] + }, + "cborHex": "9fd8669f1b2988c2e4c2b4f2b39f461a23f91beb0f1bb80a94fecbc5572fbf1b558ed086c2d08f781bd61f0bbe6d9e93241b936013f3357aed4e4b6f4ea76604c5321b2e55034318fbb743bb4059ff4cac1e8b5aee195feb66549766ffff1b3ae7437ceac7084cd8669f1be55b68c3534fcc529f4a5db0229bcaafa6463b021b906ec47c3a5021619f4951e6baa88440101f264c0fd34a96ee8bcec0d75c7107451ee1b63f24ffffffa04c8f63e282bea09ef90cae8abcff", + "cborBytes": [ + 159, 216, 102, 159, 27, 41, 136, 194, 228, 194, 180, 242, 179, 159, 70, 26, 35, 249, 27, 235, 15, 27, 184, 10, + 148, 254, 203, 197, 87, 47, 191, 27, 85, 142, 208, 134, 194, 208, 143, 120, 27, 214, 31, 11, 190, 109, 158, 147, + 36, 27, 147, 96, 19, 243, 53, 122, 237, 78, 75, 111, 78, 167, 102, 4, 197, 50, 27, 46, 85, 3, 67, 24, 251, 183, + 67, 187, 64, 89, 255, 76, 172, 30, 139, 90, 238, 25, 95, 235, 102, 84, 151, 102, 255, 255, 27, 58, 231, 67, 124, + 234, 199, 8, 76, 216, 102, 159, 27, 229, 91, 104, 195, 83, 79, 204, 82, 159, 74, 93, 176, 34, 155, 202, 175, 166, + 70, 59, 2, 27, 144, 110, 196, 124, 58, 80, 33, 97, 159, 73, 81, 230, 186, 168, 132, 64, 16, 31, 38, 76, 15, 211, + 74, 150, 238, 139, 206, 192, 215, 92, 113, 7, 69, 30, 225, 182, 63, 36, 255, 255, 255, 160, 76, 143, 99, 226, 130, + 190, 160, 158, 249, 12, 174, 138, 188, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1705, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11124624602651384415" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "95268385ba1ebc31" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f925" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2794cf0" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b9a629b22a49b5a5f80ffbf4895268385ba1ebc310b42f92544f2794cf0ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 154, 98, 155, 34, 164, 155, 90, 95, 128, 255, 191, 72, 149, 38, 131, 133, 186, 30, 188, + 49, 11, 66, 249, 37, 68, 242, 121, 76, 240, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1706, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ad5c7dc66b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4324891959828045125" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10064860572970439733" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13286710462178906735" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15191388232543829590" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cca831ea81" + } + } + ] + } + ] + }, + "cborHex": "9f0d45ad5c7dc66bbf1b3c051a52bd7e5d4541c31b8bad915d7dbcd4351bb863e0c4f3a3d26f1bd2d2a71c2dd2fe5645cca831ea81ffff", + "cborBytes": [ + 159, 13, 69, 173, 92, 125, 198, 107, 191, 27, 60, 5, 26, 82, 189, 126, 93, 69, 65, 195, 27, 139, 173, 145, 93, + 125, 188, 212, 53, 27, 184, 99, 224, 196, 243, 163, 210, 111, 27, 210, 210, 167, 28, 45, 210, 254, 86, 69, 204, + 168, 49, 234, 129, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1707, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "124357939155325962" + } + } + ] + }, + "cborHex": "9fa01b01b9cee3045a540aff", + "cborBytes": [159, 160, 27, 1, 185, 206, 227, 4, 90, 84, 10, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1708, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13201040620513810512" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15769145751671216829" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8439620529929345762" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5d11f188" + }, + { + "_tag": "ByteArray", + "bytearray": "e7e8f43c67c709dd562552" + }, + { + "_tag": "ByteArray", + "bytearray": "12bfb2" + }, + { + "_tag": "ByteArray", + "bytearray": "7a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d35e76ca22af48e67fea" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "17" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13140254691646182084" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2e4c" + }, + { + "_tag": "ByteArray", + "bytearray": "64f99b" + }, + { + "_tag": "ByteArray", + "bytearray": "0bd3aebac99e6768b7" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bb7338480933a58509f1bdad742833bb91abdd8669f1b751f8e282d885ae29f445d11f1884be7e8f43c67c709dd5625524312bfb2417affff4ad35e76ca22af48e67feaffff9f41171bb65b9005a1bb12c4422e4c4364f99b490bd3aebac99e6768b7ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 183, 51, 132, 128, 147, 58, 88, 80, 159, 27, 218, 215, 66, 131, 59, 185, 26, 189, 216, + 102, 159, 27, 117, 31, 142, 40, 45, 136, 90, 226, 159, 68, 93, 17, 241, 136, 75, 231, 232, 244, 60, 103, 199, 9, + 221, 86, 37, 82, 67, 18, 191, 178, 65, 122, 255, 255, 74, 211, 94, 118, 202, 34, 175, 72, 230, 127, 234, 255, 255, + 159, 65, 23, 27, 182, 91, 144, 5, 161, 187, 18, 196, 66, 46, 76, 67, 100, 249, 155, 73, 11, 211, 174, 186, 201, + 158, 103, 104, 183, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1709, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4088491160253369180" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b38bd3d0c6a3a0b5c80ffff", + "cborBytes": [159, 216, 102, 159, 27, 56, 189, 61, 12, 106, 58, 11, 92, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1710, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4985364285499026219" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7823157672479786655" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3030d0f6a838902b3d66" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6910353988720728537" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b452f92677116ab2b1b6c9170744a07869f4a3030d0f6a838902b3d661b5fe6825711e719d9ffff", + "cborBytes": [ + 159, 191, 27, 69, 47, 146, 103, 113, 22, 171, 43, 27, 108, 145, 112, 116, 74, 7, 134, 159, 74, 48, 48, 208, 246, + 168, 56, 144, 43, 61, 102, 27, 95, 230, 130, 87, 17, 231, 25, 217, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1711, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6f04b2fa" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c29c2005751c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5fedd27f67c07dbf728e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3467105487086162204" + } + } + } + ] + } + ] + }, + "cborHex": "9f446f04b2fabf46c29c2005751c4bd5fedd27f67c07dbf728e441ec1b301da2122c94111cffff", + "cborBytes": [ + 159, 68, 111, 4, 178, 250, 191, 70, 194, 156, 32, 5, 117, 28, 75, 213, 254, 221, 39, 246, 124, 7, 219, 247, 40, + 228, 65, 236, 27, 48, 29, 162, 18, 44, 148, 17, 28, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1712, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6467298221281679502" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "49adc7c004e6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11371036847825484969" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7442e3dd508e9eaa" + }, + { + "_tag": "ByteArray", + "bytearray": "99" + }, + { + "_tag": "ByteArray", + "bytearray": "44c288" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17620413047271455297" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9942088103754837373" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "9f415e9fd8669f1b59c075779002988e9f4649adc7c004e6ffff1b9dce09c44a83fca99f487442e3dd508e9eaa41994344c288ffff9fbf1bf488484f3e45fa411b89f9647475f1ad7dffff800eff", + "cborBytes": [ + 159, 65, 94, 159, 216, 102, 159, 27, 89, 192, 117, 119, 144, 2, 152, 142, 159, 70, 73, 173, 199, 192, 4, 230, 255, + 255, 27, 157, 206, 9, 196, 74, 131, 252, 169, 159, 72, 116, 66, 227, 221, 80, 142, 158, 170, 65, 153, 67, 68, 194, + 136, 255, 255, 159, 191, 27, 244, 136, 72, 79, 62, 69, 250, 65, 27, 137, 249, 100, 116, 117, 241, 173, 125, 255, + 255, 128, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1713, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10246432311752947236" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6294644891913504305" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14591846518342142616" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4db5cbce316ca6f3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8888570754240713679" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3331103052244773226" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78d40b9b77" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15672195266467366835" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12967151040996082352" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3701549198135599153" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5aaf2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4515998987614719896" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5660455725300611638" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8193557423537472797" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a69e333223cb96747754b387" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9914119431352390806" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7197656745184502737" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17314458213083088419" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16982648845361515233" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f1b8e32a3e64d1e76249f9f1b575b122dc1bb4631413e1bca80a718f6cdca98484db5cbce316ca6f31b7b5a8c01df7193cfffbf1b2e3a7493bb44e96a4578d40b9b771bd97ed28f5c5887b31bb3f4932b3b6882b0ffffbf1b335e8b625181203143d5aaf21b3eac0d2706cc8f9841011b4e8dfa7de55e7a3641631b71b55d10bcb7451d4ca69e333223cb96747754b3871b89960718768e94961b63e336acc7eaa3d1ff9f1bf0495002452986231bebae7d259cf88ae180ffff", + "cborBytes": [ + 159, 27, 142, 50, 163, 230, 77, 30, 118, 36, 159, 159, 27, 87, 91, 18, 45, 193, 187, 70, 49, 65, 62, 27, 202, 128, + 167, 24, 246, 205, 202, 152, 72, 77, 181, 203, 206, 49, 108, 166, 243, 27, 123, 90, 140, 1, 223, 113, 147, 207, + 255, 191, 27, 46, 58, 116, 147, 187, 68, 233, 106, 69, 120, 212, 11, 155, 119, 27, 217, 126, 210, 143, 92, 88, + 135, 179, 27, 179, 244, 147, 43, 59, 104, 130, 176, 255, 255, 191, 27, 51, 94, 139, 98, 81, 129, 32, 49, 67, 213, + 170, 242, 27, 62, 172, 13, 39, 6, 204, 143, 152, 65, 1, 27, 78, 141, 250, 125, 229, 94, 122, 54, 65, 99, 27, 113, + 181, 93, 16, 188, 183, 69, 29, 76, 166, 158, 51, 50, 35, 203, 150, 116, 119, 84, 179, 135, 27, 137, 150, 7, 24, + 118, 142, 148, 150, 27, 99, 227, 54, 172, 199, 234, 163, 209, 255, 159, 27, 240, 73, 80, 2, 69, 41, 134, 35, 27, + 235, 174, 125, 37, 156, 248, 138, 225, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1714, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f816f21e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5220760908420528401" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9354271218417473545" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "970fcaf98560041792f6a8" + }, + { + "_tag": "ByteArray", + "bytearray": "96ad0a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17460405149625274221" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f129fd428e6b8b15f2" + }, + { + "_tag": "ByteArray", + "bytearray": "c4" + }, + { + "_tag": "ByteArray", + "bytearray": "9c38a99323" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16802356453754926538" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f44f816f21e9f1b4873de62aba6b911d8669f1b81d10c1cb26f18099f4b970fcaf98560041792f6a84396ad0affffd8669f1bf24fd1f971d0cf6d9f49f129fd428e6b8b15f241c4459c38a993231be92df62c078df5caffffffff", + "cborBytes": [ + 159, 68, 248, 22, 242, 30, 159, 27, 72, 115, 222, 98, 171, 166, 185, 17, 216, 102, 159, 27, 129, 209, 12, 28, 178, + 111, 24, 9, 159, 75, 151, 15, 202, 249, 133, 96, 4, 23, 146, 246, 168, 67, 150, 173, 10, 255, 255, 216, 102, 159, + 27, 242, 79, 209, 249, 113, 208, 207, 109, 159, 73, 241, 41, 253, 66, 142, 107, 139, 21, 242, 65, 196, 69, 156, + 56, 169, 147, 35, 27, 233, 45, 246, 44, 7, 141, 245, 202, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1715, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11985675924627862723" + } + } + ] + }, + "cborHex": "9f1ba655acc0286534c3ff", + "cborBytes": [159, 27, 166, 85, 172, 192, 40, 101, 52, 195, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1716, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13873367440243043756" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17339958477256000062" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5209989598654444920" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11028292426017650599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9963546851041461769" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15833112199731492603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13276389750484320668" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17536237433612241708" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14065190866977382307" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "520f1af1eb" + } + ] + }, + "cborHex": "9f1bc0881a2ec2282dac1bf0a3e85d30de023e1b484d99efaf473578bf1b990c5d87f3e9b7a71b8a45a1126749c6091bdbba83a881e636fb1bb83f36230141419c1bf35d3b08ef5d8b2c1bc3319892ac415fa3ff45520f1af1ebff", + "cborBytes": [ + 159, 27, 192, 136, 26, 46, 194, 40, 45, 172, 27, 240, 163, 232, 93, 48, 222, 2, 62, 27, 72, 77, 153, 239, 175, 71, + 53, 120, 191, 27, 153, 12, 93, 135, 243, 233, 183, 167, 27, 138, 69, 161, 18, 103, 73, 198, 9, 27, 219, 186, 131, + 168, 129, 230, 54, 251, 27, 184, 63, 54, 35, 1, 65, 65, 156, 27, 243, 93, 59, 8, 239, 93, 139, 44, 27, 195, 49, + 152, 146, 172, 65, 95, 163, 255, 69, 82, 15, 26, 241, 235, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1717, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cd9e94" + }, + { + "_tag": "ByteArray", + "bytearray": "8065da19" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1560063645483569321" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0f1d764cbc11" + }, + { + "_tag": "ByteArray", + "bytearray": "a6422e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c316811cbb53d36da2170ac1" + }, + { + "_tag": "ByteArray", + "bytearray": "c61c711cf34958" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16373549253820093035" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f11d87f9f9f43cd9e94448065da191b15a6759eb80c90a9460f1d764cbc1143a6422eff9f4cc316811cbb53d36da2170ac147c61c711cf349581be33a884baa4f126bffffff", + "cborBytes": [ + 159, 17, 216, 127, 159, 159, 67, 205, 158, 148, 68, 128, 101, 218, 25, 27, 21, 166, 117, 158, 184, 12, 144, 169, + 70, 15, 29, 118, 76, 188, 17, 67, 166, 66, 46, 255, 159, 76, 195, 22, 129, 28, 187, 83, 211, 109, 162, 23, 10, + 193, 71, 198, 28, 113, 28, 243, 73, 88, 27, 227, 58, 136, 75, 170, 79, 18, 107, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1718, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12379383906870862568" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12007695960470551213" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2623165441536357841" + } + } + } + ] + } + ] + }, + "cborHex": "9f1babcc68131339a2e8bf1ba6a3e7db46bd7aad1b24675b1229daf5d1ffff", + "cborBytes": [ + 159, 27, 171, 204, 104, 19, 19, 57, 162, 232, 191, 27, 166, 163, 231, 219, 70, 189, 122, 173, 27, 36, 103, 91, 18, + 41, 218, 245, 209, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1719, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "696094314760416192" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a360c1d9821bcfe4aafd" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "25f90f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f32e00216c0a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcc83ffa1479c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15554d2d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eba74eb6e063f5efd6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1161958866401829433" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f68a9e79a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13a2c1de99f6e7" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2075999256540890663" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14198293687932952006" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11697962961422865152" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1efb544f2a2a7244" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15838861543540840189" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f4da8f5c13b5922" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "30c7d2a9661763" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b09a906175976abc09f4aa360c1d9821bcfe4aafdbf4325f90f46f32e00216c0a47bcc83ffa1479c04415554d2d49eba74eb6e063f5efd61b10201b6ec37f223945f68a9e79a44713a2c1de99f6e7ffbf1b1ccf6e53201846271bc50a78e225ea1dc61ba2578355bf495300481efb544f2a2a72441bdbcef0a7ed58d6fd488f4da8f5c13b5922ff4730c7d2a9661763ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 9, 169, 6, 23, 89, 118, 171, 192, 159, 74, 163, 96, 193, 217, 130, 27, 207, 228, 170, 253, + 191, 67, 37, 249, 15, 70, 243, 46, 0, 33, 108, 10, 71, 188, 200, 63, 250, 20, 121, 192, 68, 21, 85, 77, 45, 73, + 235, 167, 78, 182, 224, 99, 245, 239, 214, 27, 16, 32, 27, 110, 195, 127, 34, 57, 69, 246, 138, 158, 121, 164, 71, + 19, 162, 193, 222, 153, 246, 231, 255, 191, 27, 28, 207, 110, 83, 32, 24, 70, 39, 27, 197, 10, 120, 226, 37, 234, + 29, 198, 27, 162, 87, 131, 85, 191, 73, 83, 0, 72, 30, 251, 84, 79, 42, 42, 114, 68, 27, 219, 206, 240, 167, 237, + 88, 214, 253, 72, 143, 77, 168, 245, 193, 59, 89, 34, 255, 71, 48, 199, 210, 169, 102, 23, 99, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1720, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8305405720503430140" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15856557125401343232" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15386097350341000494" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c22d7ce3" + } + ] + } + ] + }, + "cborHex": "9f9f1b7342ba7fb61aabfc9f1bdc0dceb1a43c75001bd586660566a77d2eff44c22d7ce3ffff", + "cborBytes": [ + 159, 159, 27, 115, 66, 186, 127, 182, 26, 171, 252, 159, 27, 220, 13, 206, 177, 164, 60, 117, 0, 27, 213, 134, + 102, 5, 102, 167, 125, 46, 255, 68, 194, 45, 124, 227, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1721, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446311632463945782" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "648b95dbceb146febdd648a6" + }, + { + "_tag": "ByteArray", + "bytearray": "fc1140b5abfdc4ee649f" + } + ] + } + ] + } + ] + }, + "cborHex": "9f09d8669f1bfffe76b26d2b60369fd8669f1bfffffffffffffffa9f4c648b95dbceb146febdd648a64afc1140b5abfdc4ee649fffffffffff", + "cborBytes": [ + 159, 9, 216, 102, 159, 27, 255, 254, 118, 178, 109, 43, 96, 54, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 250, 159, 76, 100, 139, 149, 219, 206, 177, 70, 254, 189, 214, 72, 166, 74, 252, 17, 64, 181, 171, 253, + 196, 238, 100, 159, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1722, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "554e8a31dd5a9b6f27f0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18410720782542704620" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3375502455202002150" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11180817527192110329" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b0fbff55b8650d3e" + }, + { + "_tag": "ByteArray", + "bytearray": "e244b9bf8fe101af236121" + }, + { + "_tag": "ByteArray", + "bytearray": "2748d0d3a843cdf356399a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18162214874964202733" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2618344014293048991" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3088475879255711821" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9f4a554e8a31dd5a9b6f27f01bff800501ee5c0fecd8669f1b2ed831994cc634e69f1b9b2a3e4d6ebf44f948b0fbff55b8650d3e4be244b9bf8fe101af2361214b2748d0d3a843cdf356399a1bfc0d2633848e94edffffd8669f1b24563a0227b51e9f9f1b2adc7872e066204dffffff80ff", + "cborBytes": [ + 159, 159, 74, 85, 78, 138, 49, 221, 90, 155, 111, 39, 240, 27, 255, 128, 5, 1, 238, 92, 15, 236, 216, 102, 159, + 27, 46, 216, 49, 153, 76, 198, 52, 230, 159, 27, 155, 42, 62, 77, 110, 191, 68, 249, 72, 176, 251, 255, 85, 184, + 101, 13, 62, 75, 226, 68, 185, 191, 143, 225, 1, 175, 35, 97, 33, 75, 39, 72, 208, 211, 168, 67, 205, 243, 86, 57, + 154, 27, 252, 13, 38, 51, 132, 142, 148, 237, 255, 255, 216, 102, 159, 27, 36, 86, 58, 2, 39, 181, 30, 159, 159, + 27, 42, 220, 120, 114, 224, 102, 32, 77, 255, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1723, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "644be6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fb727" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3604410587842871104" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b53555da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cdb84cb" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c903dc43e8a119a51e8f0eef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0afbfdea8cfc03212500fd97" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "390c8b4beeefa6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10727627805844267169" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c3e55" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06a903" + } + } + ] + } + ] + }, + "cborHex": "9f43644be6bf430fb7271b320570552907ff4044b53555da449cdb84cbffbf0c4cc903dc43e8a119a51e8f0eef104c0afbfdea8cfc03212500fd971247390c8b4beeefa61b94e030a6e9f360a1430c3e551bffffffffffffffee4306a903ffff", + "cborBytes": [ + 159, 67, 100, 75, 230, 191, 67, 15, 183, 39, 27, 50, 5, 112, 85, 41, 7, 255, 64, 68, 181, 53, 85, 218, 68, 156, + 219, 132, 203, 255, 191, 12, 76, 201, 3, 220, 67, 232, 161, 25, 165, 30, 143, 14, 239, 16, 76, 10, 251, 253, 234, + 140, 252, 3, 33, 37, 0, 253, 151, 18, 71, 57, 12, 139, 75, 238, 239, 166, 27, 148, 224, 48, 166, 233, 243, 96, + 161, 67, 12, 62, 85, 27, 255, 255, 255, 255, 255, 255, 255, 238, 67, 6, 169, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1724, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2483299608447440200" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15711596061624085468" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11859722443491749181" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52ef146f5a84db6fbaf42d89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa37e201e1" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5a" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b227673d6386055489fbf1bda0acd5fdb87abdc1ba49632ba130dad3d4c52ef146f5a84db6fbaf42d8945aa37e201e1ff1bfffffffffffffff3a0415affffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 34, 118, 115, 214, 56, 96, 85, 72, 159, 191, 27, 218, 10, 205, 95, 219, 135, 171, 220, 27, + 164, 150, 50, 186, 19, 13, 173, 61, 76, 82, 239, 20, 111, 90, 132, 219, 111, 186, 244, 45, 137, 69, 170, 55, 226, + 1, 225, 255, 27, 255, 255, 255, 255, 255, 255, 255, 243, 160, 65, 90, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1725, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "11cf2c4d269d346cf5210d0e" + } + ] + }, + "cborHex": "9f4c11cf2c4d269d346cf5210d0eff", + "cborBytes": [159, 76, 17, 207, 44, 77, 38, 157, 52, 108, 245, 33, 13, 14, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1726, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bec0e99c7051" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1087198" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1223928049198159718" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8a852e64a511f24e0891" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16939035670979830287" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2330910464035265371" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d9ff3948c33d" + } + ] + }, + "cborHex": "9fbf46bec0e99c705144c1087198ffd8669f1b10fc44137b17d7669f4a8a852e64a511f24e0891a0d8669f1beb138b32266c620f80ffffff1b20590eb7a4101b5b46d9ff3948c33dff", + "cborBytes": [ + 159, 191, 70, 190, 192, 233, 156, 112, 81, 68, 193, 8, 113, 152, 255, 216, 102, 159, 27, 16, 252, 68, 19, 123, 23, + 215, 102, 159, 74, 138, 133, 46, 100, 165, 17, 242, 78, 8, 145, 160, 216, 102, 159, 27, 235, 19, 139, 50, 38, 108, + 98, 15, 128, 255, 255, 255, 27, 32, 89, 14, 183, 164, 16, 27, 91, 70, 217, 255, 57, 72, 195, 61, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1727, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5416100499773551119" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e84b418d4010c66536" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "392798136920086282" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13092769274313510891" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17496647602518443577" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3920232194719339265" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3750791635720832218" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13356750305178948259" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17388273458973655067" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2498567262329986136" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16022877333041643856" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bc71c8af186298a4da9651" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11688410000669403740" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16496846800023002514" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d41a" + } + ] + }, + "cborHex": "9fd8669f1b4b29dab574d1720f80ffa049e84b418d4010c665369f9f1b05737fd30b8e970a1bb5b2dc49599b0feb1bf2d0944b144d46391b366776692b4bd3011b340d7d1ec1a584daff1bb95cb5a2adc812a31bf14f8e957b7a401bd8669f1b22acb1afe6995c589f1bde5cb20aa39b01504bbc71c8af186298a4da96511ba23592f7bf05ea5cffff1be4f092c2b5691d92ff42d41aff", + "cborBytes": [ + 159, 216, 102, 159, 27, 75, 41, 218, 181, 116, 209, 114, 15, 128, 255, 160, 73, 232, 75, 65, 141, 64, 16, 198, + 101, 54, 159, 159, 27, 5, 115, 127, 211, 11, 142, 151, 10, 27, 181, 178, 220, 73, 89, 155, 15, 235, 27, 242, 208, + 148, 75, 20, 77, 70, 57, 27, 54, 103, 118, 105, 43, 75, 211, 1, 27, 52, 13, 125, 30, 193, 165, 132, 218, 255, 27, + 185, 92, 181, 162, 173, 200, 18, 163, 27, 241, 79, 142, 149, 123, 122, 64, 27, 216, 102, 159, 27, 34, 172, 177, + 175, 230, 153, 92, 88, 159, 27, 222, 92, 178, 10, 163, 155, 1, 80, 75, 188, 113, 200, 175, 24, 98, 152, 164, 218, + 150, 81, 27, 162, 53, 146, 247, 191, 5, 234, 92, 255, 255, 27, 228, 240, 146, 194, 181, 105, 29, 146, 255, 66, + 212, 26, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1728, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "33b65e75e0c6713d" + }, + { + "_tag": "ByteArray", + "bytearray": "ee37f3895bf9cd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9687816328330378625" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4286384536291208251" + } + }, + { + "_tag": "ByteArray", + "bytearray": "309b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0884b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10737394788906459812" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4765398419368362124" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "853190713970738907" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1884156287152543843" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f4833b65e75e0c6713d47ee37f3895bf9cd1b8672099f535c7d81ff1b3b7c4c06885d6c3b42309bbf418c43d0884b42a6f71b9502e3abdde662a4ff9f1b4222189d3fa8c08c1b0bd7246f17e346db1b1a25de29150bd863ffffff", + "cborBytes": [ + 159, 159, 159, 72, 51, 182, 94, 117, 224, 198, 113, 61, 71, 238, 55, 243, 137, 91, 249, 205, 27, 134, 114, 9, 159, + 83, 92, 125, 129, 255, 27, 59, 124, 76, 6, 136, 93, 108, 59, 66, 48, 155, 191, 65, 140, 67, 208, 136, 75, 66, 166, + 247, 27, 149, 2, 227, 171, 221, 230, 98, 164, 255, 159, 27, 66, 34, 24, 157, 63, 168, 192, 140, 27, 11, 215, 36, + 111, 23, 227, 70, 219, 27, 26, 37, 222, 41, 21, 11, 216, 99, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1729, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "84" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17136101251675584798" + } + } + ] + }, + "cborHex": "9f41841bedcfa94c253ff91eff", + "cborBytes": [159, 65, 132, 27, 237, 207, 169, 76, 37, 63, 249, 30, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1730, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e5c0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16412733106714675806" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f9df" + }, + { + "_tag": "ByteArray", + "bytearray": "06f8" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f42e5c01be3c5bdcd5b058a5e42f9df4206f880ff", + "cborBytes": [159, 66, 229, 192, 27, 227, 197, 189, 205, 91, 5, 138, 94, 66, 249, 223, 66, 6, 248, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1731, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11926596218981771194" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3ecc76" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17133345498821827231" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9185063282533161930" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14351070505150200457" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10858706354627418366" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10950771897095236690" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c5893" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fded6a801a6812" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2da1f7272fb709164" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b9b283e7d" + } + } + ] + } + ] + }, + "cborHex": "9f1ba583c81243ece7ba433ecc761bedc5def46f501a9fd8669f1b7f77e66412df5bca9f1bc7293e96d6103a89ffffbf1b96b1dfe5cbd818fe1b97f8f5054eb12c52437c589347fded6a801a681249c2da1f7272fb709164454b9b283e7dffff", + "cborBytes": [ + 159, 27, 165, 131, 200, 18, 67, 236, 231, 186, 67, 62, 204, 118, 27, 237, 197, 222, 244, 111, 80, 26, 159, 216, + 102, 159, 27, 127, 119, 230, 100, 18, 223, 91, 202, 159, 27, 199, 41, 62, 150, 214, 16, 58, 137, 255, 255, 191, + 27, 150, 177, 223, 229, 203, 216, 24, 254, 27, 151, 248, 245, 5, 78, 177, 44, 82, 67, 124, 88, 147, 71, 253, 237, + 106, 128, 26, 104, 18, 73, 194, 218, 31, 114, 114, 251, 112, 145, 100, 69, 75, 155, 40, 62, 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1732, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2386434796489813743" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7532668233837412967" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5bd00d458e92a66d82786" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14393339926376138169" + } + } + } + ] + } + ] + }, + "cborHex": "9f80bf1b211e51cdb4682eef1b688969d950bf82674be5bd00d458e92a66d827861bc7bf6a676318c5b9ffff", + "cborBytes": [ + 159, 128, 191, 27, 33, 30, 81, 205, 180, 104, 46, 239, 27, 104, 137, 105, 217, 80, 191, 130, 103, 75, 229, 189, 0, + 212, 88, 233, 42, 102, 216, 39, 134, 27, 199, 191, 106, 103, 99, 24, 197, 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1733, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e4d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14494709640612455227" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c1be4f063c5277b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "443233f11b77775436b51f2a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bbc32" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9dfb3cf1aca64bba44c7de7b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb395861726d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16025528157740373816" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1f10f40e877296d53ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12947566744161078853" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f154e465fbff3dc7bd7635b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "941bfe7792075d553af399" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "70e795d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "832072" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf2edb0fa8012c873284" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10007449654023533751" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7f945c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15276424966716791326" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3308031269285224798" + } + } + ] + }, + "cborHex": "9fbf421e4d1bc9278d9f3322a33b483c1be4f063c5277b4c443233f11b77775436b51f2a439bbc324c9dfb3cf1aca64bba44c7de7b46cb395861726d1bde661cf3dc2297384ae1f10f40e877296d53ab1bb3aeff5acb61ce454cf154e465fbff3dc7bd7635b04b941bfe7792075d553af399ffbf4470e795d6438320724acf2edb0fa8012c8732841b8ae19a7047adb4b744f7f945c81bd400c391bb101a1eff1b2de87ce9a7a1615eff", + "cborBytes": [ + 159, 191, 66, 30, 77, 27, 201, 39, 141, 159, 51, 34, 163, 59, 72, 60, 27, 228, 240, 99, 197, 39, 123, 76, 68, 50, + 51, 241, 27, 119, 119, 84, 54, 181, 31, 42, 67, 155, 188, 50, 76, 157, 251, 60, 241, 172, 166, 75, 186, 68, 199, + 222, 123, 70, 203, 57, 88, 97, 114, 109, 27, 222, 102, 28, 243, 220, 34, 151, 56, 74, 225, 241, 15, 64, 232, 119, + 41, 109, 83, 171, 27, 179, 174, 255, 90, 203, 97, 206, 69, 76, 241, 84, 228, 101, 251, 255, 61, 199, 189, 118, 53, + 176, 75, 148, 27, 254, 119, 146, 7, 93, 85, 58, 243, 153, 255, 191, 68, 112, 231, 149, 214, 67, 131, 32, 114, 74, + 207, 46, 219, 15, 168, 1, 44, 135, 50, 132, 27, 138, 225, 154, 112, 71, 173, 180, 183, 68, 247, 249, 69, 200, 27, + 212, 0, 195, 145, 187, 16, 26, 30, 255, 27, 45, 232, 124, 233, 167, 161, 97, 94, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1734, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8147010820360270694" + } + }, + { + "_tag": "ByteArray", + "bytearray": "36393abc4732889c5fb9a85c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e0a2541e6f6bcd31bcc7be33" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7226668698428008751" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7907218100813368239" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "897f1581edfaef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11381244122862662787" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8645b2215f" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4251961346947784207" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17617124838347324724" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17411093069986489005" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7216949739472371500" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "93272349f33c9808" + } + ] + } + ] + }, + "cborHex": "9f1b710fff2d28d673664c36393abc4732889c5fb9a85c9f4ce0a2541e6f6bcd31bcc7be331b644a48e4873c692fbf1b6dbc14f7ec850baf47897f1581edfaef1b9df24d3ab53b3483458645b2215fffff9f9f1b3b02005133839e0f1bf47c99b371673d341bf1a0a0e633cf62ad1b6427c18d0f193f2cff4893272349f33c9808ffff", + "cborBytes": [ + 159, 27, 113, 15, 255, 45, 40, 214, 115, 102, 76, 54, 57, 58, 188, 71, 50, 136, 156, 95, 185, 168, 92, 159, 76, + 224, 162, 84, 30, 111, 107, 205, 49, 188, 199, 190, 51, 27, 100, 74, 72, 228, 135, 60, 105, 47, 191, 27, 109, 188, + 20, 247, 236, 133, 11, 175, 71, 137, 127, 21, 129, 237, 250, 239, 27, 157, 242, 77, 58, 181, 59, 52, 131, 69, 134, + 69, 178, 33, 95, 255, 255, 159, 159, 27, 59, 2, 0, 81, 51, 131, 158, 15, 27, 244, 124, 153, 179, 113, 103, 61, 52, + 27, 241, 160, 160, 230, 51, 207, 98, 173, 27, 100, 39, 193, 141, 15, 25, 63, 44, 255, 72, 147, 39, 35, 73, 243, + 60, 152, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1735, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "75c5d0ca" + }, + { + "_tag": "ByteArray", + "bytearray": "4a678a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6099946247197372208" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3d7d9cc28aac5a66" + }, + { + "_tag": "ByteArray", + "bytearray": "a41ca974bf40" + } + ] + }, + "cborHex": "9f4475c5d0ca434a678a1b54a75ccafd2d2f30483d7d9cc28aac5a6646a41ca974bf40ff", + "cborBytes": [ + 159, 68, 117, 197, 208, 202, 67, 74, 103, 138, 27, 84, 167, 92, 202, 253, 45, 47, 48, 72, 61, 125, 156, 194, 138, + 172, 90, 102, 70, 164, 28, 169, 116, 191, 64, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1736, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17317122560297780453" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + "cborHex": "9fa01bf052c737f273c4e510ff", + "cborBytes": [159, 160, 27, 240, 82, 199, 55, 242, 115, 196, 229, 16, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1737, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8120807632706818021" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16869738293006735085" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "90a03a12dd30c86ee0b658" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8941226712227775525" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4192ce" + }, + { + "_tag": "ByteArray", + "bytearray": "ae5c483ac1155aa0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6676310813047420786" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8ca5525f84c05411c5fe5bac" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15745891127253730756" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0401009304480442" + }, + { + "_tag": "ByteArray", + "bytearray": "0801bf24ffb116a0a5b326" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5014452893561752665" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4bf4379f7076928cc8" + }, + { + "_tag": "ByteArray", + "bytearray": "f15ced5b79769eaa9e5153" + } + ] + } + ] + } + ] + }, + "cborHex": "9f809f9f1b70b2e7841cc54fe5ffd8669f1bea1d5999087896ed9f4b90a03a12dd30c86ee0b6581b7c159e5276920425434192ce48ae5c483ac1155aa01b5ca7054fd5ca7772ffff4c8ca5525f84c05411c5fe5bacd8669f1bda84a48e0fef05c49f4804010093044804424b0801bf24ffb116a0a5b3261b4596ea56c7ad8c59ffff9f494bf4379f7076928cc84bf15ced5b79769eaa9e5153ffffff", + "cborBytes": [ + 159, 128, 159, 159, 27, 112, 178, 231, 132, 28, 197, 79, 229, 255, 216, 102, 159, 27, 234, 29, 89, 153, 8, 120, + 150, 237, 159, 75, 144, 160, 58, 18, 221, 48, 200, 110, 224, 182, 88, 27, 124, 21, 158, 82, 118, 146, 4, 37, 67, + 65, 146, 206, 72, 174, 92, 72, 58, 193, 21, 90, 160, 27, 92, 167, 5, 79, 213, 202, 119, 114, 255, 255, 76, 140, + 165, 82, 95, 132, 192, 84, 17, 197, 254, 91, 172, 216, 102, 159, 27, 218, 132, 164, 142, 15, 239, 5, 196, 159, 72, + 4, 1, 0, 147, 4, 72, 4, 66, 75, 8, 1, 191, 36, 255, 177, 22, 160, 165, 179, 38, 27, 69, 150, 234, 86, 199, 173, + 140, 89, 255, 255, 159, 73, 75, 244, 55, 159, 112, 118, 146, 140, 200, 75, 241, 92, 237, 91, 121, 118, 158, 170, + 158, 81, 83, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1738, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2266" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fba84dd6b30762daa9214c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37289cdbf45053" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b41f2b322df02d0bb8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ecb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97a6e81fcb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e418a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3867972202195593471" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee215a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11996832512710138047" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a04337efd9b00008e70" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f87d85a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3903202062696664286" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff81b47a7a8613f81f4cac" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12922287995962359970" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1511969957542160642" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "143b00fb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17304360016682002888" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dac811f7bcca64" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf4222664bfba84dd6b30762daa9214c4737289cdbf4505349b41f2b322df02d0bb8425ecb4597a6e81fcb43e418a41b35adcc3978f428ff43ee215a1ba67d4f9bbdf1d8bfffbf4a6a04337efd9b00008e700844f87d85a003ff9f9f0bffd8669f1b362af598919b4cde9f4bff81b47a7a8613f81f4cacffff1bb355307794a180a2bf1b14fb98aa665ce90244143b00fb1bf0256fc0b3cda9c847dac811f7bcca64ffffff", + "cborBytes": [ + 159, 191, 66, 34, 102, 75, 251, 168, 77, 214, 179, 7, 98, 218, 169, 33, 76, 71, 55, 40, 156, 219, 244, 80, 83, 73, + 180, 31, 43, 50, 45, 240, 45, 11, 184, 66, 94, 203, 69, 151, 166, 232, 31, 203, 67, 228, 24, 164, 27, 53, 173, + 204, 57, 120, 244, 40, 255, 67, 238, 33, 90, 27, 166, 125, 79, 155, 189, 241, 216, 191, 255, 191, 74, 106, 4, 51, + 126, 253, 155, 0, 0, 142, 112, 8, 68, 248, 125, 133, 160, 3, 255, 159, 159, 11, 255, 216, 102, 159, 27, 54, 42, + 245, 152, 145, 155, 76, 222, 159, 75, 255, 129, 180, 122, 122, 134, 19, 248, 31, 76, 172, 255, 255, 27, 179, 85, + 48, 119, 148, 161, 128, 162, 191, 27, 20, 251, 152, 170, 102, 92, 233, 2, 68, 20, 59, 0, 251, 27, 240, 37, 111, + 192, 179, 205, 169, 200, 71, 218, 200, 17, 247, 188, 202, 100, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1739, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3109854426541169133" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15298317114070566824" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16852137214175671444" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9796303502336460761" + } + }, + { + "_tag": "ByteArray", + "bytearray": "857da234055b" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b2b286c1fcd2999ed9fd8669f1bd44e8a5c7d7487a880ff809f1be9ded1828514f494ff1b87f37621e0ae07d946857da234055bffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 43, 40, 108, 31, 205, 41, 153, 237, 159, 216, 102, 159, 27, 212, 78, 138, 92, 125, 116, + 135, 168, 128, 255, 128, 159, 27, 233, 222, 209, 130, 133, 20, 244, 148, 255, 27, 135, 243, 118, 33, 224, 174, 7, + 217, 70, 133, 125, 162, 52, 5, 91, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1740, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01" + } + ] + }, + "cborHex": "9f4101ff", + "cborBytes": [159, 65, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1741, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8d1a" + } + ] + }, + "cborHex": "9f428d1aff", + "cborBytes": [159, 66, 141, 26, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1742, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8506" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6937c1d85b90e67b33e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0703db59f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbff9c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b31ec061ea69" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b5747120fa4e6a887" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c758f2c6ec53f1eb7fedb8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43e724249d02f0ae89" + } + } + ] + } + ] + }, + "cborHex": "9f428506bf4a6937c1d85b90e67b33e8450703db59f9429c4643fbff9c46b31ec061ea69493b5747120fa4e6a8874bc758f2c6ec53f1eb7fedb84943e724249d02f0ae89ffff", + "cborBytes": [ + 159, 66, 133, 6, 191, 74, 105, 55, 193, 216, 91, 144, 230, 123, 51, 232, 69, 7, 3, 219, 89, 249, 66, 156, 70, 67, + 251, 255, 156, 70, 179, 30, 192, 97, 234, 105, 73, 59, 87, 71, 18, 15, 164, 230, 168, 135, 75, 199, 88, 242, 198, + 236, 83, 241, 235, 127, 237, 184, 73, 67, 231, 36, 36, 157, 2, 240, 174, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1743, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6115984157270638631" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "212405" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b54e0572fea0880279f43212405ffffff", + "cborBytes": [159, 216, 102, 159, 27, 84, 224, 87, 47, 234, 8, 128, 39, 159, 67, 33, 36, 5, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1744, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10286796520919095169" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "45e2440d619c5a283a07fcf3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7344380122983207750" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16638187806269978161" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a2c95b54" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11952645588944272192" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4cbe" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14599162139457449911" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11696423624001918291" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c900a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16704659204896428024" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aaefd852645b287d03545c" + }, + { + "_tag": "ByteArray", + "bytearray": "e87c971a72fae1ec8532d5e9" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "177d5e83b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3526135060512709928" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1574278305003186741" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6254eb88318063" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "399f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "748066b5e9b2c626e60e2fe7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12302457526768749406" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "921d8fe4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15159225767409045521" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3d36423c165bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d57c8c" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cc67f6c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d417124dd7db6a7dd0e29" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5569927ec156a93" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22a71eb66bad80828f6a7a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edfe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19f3406ff0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f36cba10578402b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13699829701706743591" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13380121434210660754" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "554787695605407712" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11860272296061999820" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10611552075791223488" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3411141190635240473" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13067826295279612712" + } + } + ] + }, + "cborHex": "9f1b8ec20aef1a1b57819f4c45e2440d619c5a283a07fcf39f1b65ec7acf45da93461be6e6b7a82af5363144a2c95b541ba5e053d5d729bb40424cbeffd8669f1bca9aa49dbcb16fb79f1ba2520b50d31f1553439c900a1be7d2df0ab1cf8ff84baaefd852645b287d03545c4ce87c971a72fae1ec8532d5e9ffffbf45177d5e83b61b30ef5927bfe91d2841181b15d8f5c70b51aa35476254eb8831806342399f4c748066b5e9b2c626e60e2fe71baabb1bf07b61cb5e44921d8fe41bd2606384b85d501147b3d36423c165bb43d57c8cffbf441cc67f6c4b8d417124dd7db6a7dd0e2948b5569927ec156a934b22a71eb66bad80828f6a7a42edfe4519f3406ff048f36cba10578402b01bbe1f928765937f27ffff1bb9afbd8db1b771929fd8669f1b07b3007842515fe09f1ba49826d09a2e9acc1b9343ce63f9184ac01b2f56ced702843c19ffffff1bb55a3ec77ca67328ff", + "cborBytes": [ + 159, 27, 142, 194, 10, 239, 26, 27, 87, 129, 159, 76, 69, 226, 68, 13, 97, 156, 90, 40, 58, 7, 252, 243, 159, 27, + 101, 236, 122, 207, 69, 218, 147, 70, 27, 230, 230, 183, 168, 42, 245, 54, 49, 68, 162, 201, 91, 84, 27, 165, 224, + 83, 213, 215, 41, 187, 64, 66, 76, 190, 255, 216, 102, 159, 27, 202, 154, 164, 157, 188, 177, 111, 183, 159, 27, + 162, 82, 11, 80, 211, 31, 21, 83, 67, 156, 144, 10, 27, 231, 210, 223, 10, 177, 207, 143, 248, 75, 170, 239, 216, + 82, 100, 91, 40, 125, 3, 84, 92, 76, 232, 124, 151, 26, 114, 250, 225, 236, 133, 50, 213, 233, 255, 255, 191, 69, + 23, 125, 94, 131, 182, 27, 48, 239, 89, 39, 191, 233, 29, 40, 65, 24, 27, 21, 216, 245, 199, 11, 81, 170, 53, 71, + 98, 84, 235, 136, 49, 128, 99, 66, 57, 159, 76, 116, 128, 102, 181, 233, 178, 198, 38, 230, 14, 47, 231, 27, 170, + 187, 27, 240, 123, 97, 203, 94, 68, 146, 29, 143, 228, 27, 210, 96, 99, 132, 184, 93, 80, 17, 71, 179, 211, 100, + 35, 193, 101, 187, 67, 213, 124, 140, 255, 191, 68, 28, 198, 127, 108, 75, 141, 65, 113, 36, 221, 125, 182, 167, + 221, 14, 41, 72, 181, 86, 153, 39, 236, 21, 106, 147, 75, 34, 167, 30, 182, 107, 173, 128, 130, 143, 106, 122, 66, + 237, 254, 69, 25, 243, 64, 111, 240, 72, 243, 108, 186, 16, 87, 132, 2, 176, 27, 190, 31, 146, 135, 101, 147, 127, + 39, 255, 255, 27, 185, 175, 189, 141, 177, 183, 113, 146, 159, 216, 102, 159, 27, 7, 179, 0, 120, 66, 81, 95, 224, + 159, 27, 164, 152, 38, 208, 154, 46, 154, 204, 27, 147, 67, 206, 99, 249, 24, 74, 192, 27, 47, 86, 206, 215, 2, + 132, 60, 25, 255, 255, 255, 27, 181, 90, 62, 199, 124, 166, 115, 40, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1745, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7737383659571585096" + } + } + ] + }, + "cborHex": "9f1b6b60b571a7ad2048ff", + "cborBytes": [159, 27, 107, 96, 181, 113, 167, 173, 32, 72, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1746, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7201144306452203740" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b63ef9a97ea6908dc80ffff", + "cborBytes": [159, 216, 102, 159, 27, 99, 239, 154, 151, 234, 105, 8, 220, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1747, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "21d04502ff8efb" + }, + { + "_tag": "ByteArray", + "bytearray": "bc119298" + }, + { + "_tag": "ByteArray", + "bytearray": "51e36c53e4aaca00aaa275ed" + } + ] + }, + "cborHex": "9f4721d04502ff8efb44bc1192984c51e36c53e4aaca00aaa275edff", + "cborBytes": [ + 159, 71, 33, 208, 69, 2, 255, 142, 251, 68, 188, 17, 146, 152, 76, 81, 227, 108, 83, 228, 170, 202, 0, 170, 162, + 117, 237, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1748, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4e14f2c1a69483a0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + ] + }, + "cborHex": "9f484e14f2c1a69483a01bfffffffffffffffdff", + "cborBytes": [159, 72, 78, 20, 242, 193, 166, 148, 131, 160, 27, 255, 255, 255, 255, 255, 255, 255, 253, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1749, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11092312631039551021" + } + } + ] + }, + "cborHex": "9f1b99efcf917eb0e62dff", + "cborBytes": [159, 27, 153, 239, 207, 145, 126, 176, 230, 45, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1750, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2404043664791974604" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b8" + }, + { + "_tag": "ByteArray", + "bytearray": "b0" + }, + { + "_tag": "ByteArray", + "bytearray": "3a1d815b37" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15227938022965610705" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a46756" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "996317379000220701" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b215ce0f9d87432cc9f9f41b841b0453a1d815b371bd35480f3688788d143a46756ff1b0dd3a160a2db3c1dffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 33, 92, 224, 249, 216, 116, 50, 204, 159, 159, 65, 184, 65, 176, 69, 58, 29, 129, 91, 55, + 27, 211, 84, 128, 243, 104, 135, 136, 209, 67, 164, 103, 86, 255, 27, 13, 211, 161, 96, 162, 219, 60, 29, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1751, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11502559839479426097" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "73d70450b218f19b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17774992061592338245" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17362803662364971342" + } + } + ] + }, + "cborHex": "9f1b9fa14d3b17d86c31a09f9f4873d70450b218f19bff1bf6ad751aa4997f45ff1bf0f511f0581d914eff", + "cborBytes": [ + 159, 27, 159, 161, 77, 59, 23, 216, 108, 49, 160, 159, 159, 72, 115, 215, 4, 80, 178, 24, 241, 155, 255, 27, 246, + 173, 117, 26, 164, 153, 127, 69, 255, 27, 240, 245, 17, 240, 88, 29, 145, 78, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1752, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1518782875022470431" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c77838738175" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13812823873814175100" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ec020b1ae5cb69a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14008407899325830403" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8441543237092141734" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b1513ccfa5ca92d1f46c778387381751bbfb1022137ba9d7c483ec020b1ae5cb69a1bc267dcc3c41795031b752662d952fa6aa6ffff", + "cborBytes": [ + 159, 191, 27, 21, 19, 204, 250, 92, 169, 45, 31, 70, 199, 120, 56, 115, 129, 117, 27, 191, 177, 2, 33, 55, 186, + 157, 124, 72, 62, 192, 32, 177, 174, 92, 182, 154, 27, 194, 103, 220, 195, 196, 23, 149, 3, 27, 117, 38, 98, 217, + 82, 250, 106, 166, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1753, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6049c6184584f7d22154" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11014295660574941932" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9855" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b3f249bbaae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae6ecc905e25702e8e8b63d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bad61f5c042ce3b374fb92" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7562" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe1c8e84f6d001" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9945818368592785456" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17635619461595524333" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b0a977af34" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8515751287967476576" + } + }, + { + "_tag": "ByteArray", + "bytearray": "41" + }, + { + "_tag": "ByteArray", + "bytearray": "706e" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "828ae1bd6232af2905" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de90d9d15ac54548" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13820108205793379024" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "eca1bb4032" + } + ] + }, + "cborHex": "9fa006d8669f1bfffffffffffffff29fbf4a6049c6184584f7d221541b98daa38c0bb222ec429855469b3f249bbaae4cae6ecc905e25702e8e8b63d44bbad61f5c042ce3b374fb9241f642756247fe1c8e84f6d0011b8a06a51c6c873030ffd8669f1bf4be4e767a5deced9f45b0a977af341b762e06ad92e06b60414142706effffffffbf49828ae1bd6232af29051bfffffffffffffffb48de90d9d15ac545481bbfcae330ebc682d0ff45eca1bb4032ff", + "cborBytes": [ + 159, 160, 6, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 191, 74, 96, 73, 198, 24, 69, 132, + 247, 210, 33, 84, 27, 152, 218, 163, 140, 11, 178, 34, 236, 66, 152, 85, 70, 155, 63, 36, 155, 186, 174, 76, 174, + 110, 204, 144, 94, 37, 112, 46, 142, 139, 99, 212, 75, 186, 214, 31, 92, 4, 44, 227, 179, 116, 251, 146, 65, 246, + 66, 117, 98, 71, 254, 28, 142, 132, 246, 208, 1, 27, 138, 6, 165, 28, 108, 135, 48, 48, 255, 216, 102, 159, 27, + 244, 190, 78, 118, 122, 93, 236, 237, 159, 69, 176, 169, 119, 175, 52, 27, 118, 46, 6, 173, 146, 224, 107, 96, 65, + 65, 66, 112, 110, 255, 255, 255, 255, 191, 73, 130, 138, 225, 189, 98, 50, 175, 41, 5, 27, 255, 255, 255, 255, + 255, 255, 255, 251, 72, 222, 144, 217, 209, 90, 197, 69, 72, 27, 191, 202, 227, 48, 235, 198, 130, 208, 255, 69, + 236, 161, 187, 64, 50, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1754, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13821497387419334720" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16433412816851247826" + } + } + ] + }, + "cborHex": "9f1bbfcfd2a4f91e78401be40f35e393c522d2ff", + "cborBytes": [159, 27, 191, 207, 210, 164, 249, 30, 120, 64, 27, 228, 15, 53, 227, 147, 197, 34, 210, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1755, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9267252578999636820" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10982838922168945666" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5a7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a9c6f07c3" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b279c41e630379f57d40" + } + ] + }, + "cborHex": "9f1b809be51edf1893541b986ae1cf6536cc02bf42a5a7453a9c6f07c3ff4ab279c41e630379f57d40ff", + "cborBytes": [ + 159, 27, 128, 155, 229, 30, 223, 24, 147, 84, 27, 152, 106, 225, 207, 101, 54, 204, 2, 191, 66, 165, 167, 69, 58, + 156, 111, 7, 195, 255, 74, 178, 121, 196, 30, 99, 3, 121, 245, 125, 64, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1756, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f984a49bb474" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5997882309520906297" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "139697600452715924" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "480672723325274112" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1062025131657718596" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f6feb94b9" + }, + { + "_tag": "ByteArray", + "bytearray": "d3d3" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8d15c09e08" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6014067577748753415" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10444248527991009090" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10893789361342140531" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15013658705901360802" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "378197799722766290" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e64013606d827d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14475131287508159313" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10035408554604568261" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a629" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "13e88d42" + }, + { + "_tag": "ByteArray", + "bytearray": "430b6d4d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17257677650078376187" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13965470827887948022" + } + }, + { + "_tag": "ByteArray", + "bytearray": "26" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1990112088465751907" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "814502202647735192" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11751943097989621632" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4331341261013490216" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0fa0ce16" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e2ca48bd32a270c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3cc8d1387fb3ccff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48d8af3f902836b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4915919340286135741" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17411885988812164429" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d90e5a494f96da6dbe5742" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2866720271872265327" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f46f984a49bb474d8669f1b533cc22eaf97d8399fd8669f1b01f04e3a3af565949f1b06abb14b8f05c8001b0ebd123afafeeb44457f6feb94b942d3d3ffff80458d15c09e081b537642991ae88c07bf1b90f16cb340ccef421b972e83b4d4ba50731bd05b3b0c183396a21b053fa0e5234f4fd247e64013606d827d1bc8e1ff36a5110b51ffffffd8669f1b8b44eee9191f1ec59f42a6299f4413e88d4244430b6d4d1bef7f96633d1ea0fb1bc1cf51b9c95770f64126ff1b1b9e4c6680363f63ffffbf1b0b4db17019976b981ba31749fbb04667801b3c1c03edafb39a28440fa0ce16481e2ca48bd32a270c483cc8d1387fb3ccff4848d8af3f902836b91b4438da98263a4dbdffd8669f1bf1a3720e00c00d4d9f4bd90e5a494f96da6dbe57429f1b27c8a2e6135b8c6fffffffff", + "cborBytes": [ + 159, 70, 249, 132, 164, 155, 180, 116, 216, 102, 159, 27, 83, 60, 194, 46, 175, 151, 216, 57, 159, 216, 102, 159, + 27, 1, 240, 78, 58, 58, 245, 101, 148, 159, 27, 6, 171, 177, 75, 143, 5, 200, 0, 27, 14, 189, 18, 58, 250, 254, + 235, 68, 69, 127, 111, 235, 148, 185, 66, 211, 211, 255, 255, 128, 69, 141, 21, 192, 158, 8, 27, 83, 118, 66, 153, + 26, 232, 140, 7, 191, 27, 144, 241, 108, 179, 64, 204, 239, 66, 27, 151, 46, 131, 180, 212, 186, 80, 115, 27, 208, + 91, 59, 12, 24, 51, 150, 162, 27, 5, 63, 160, 229, 35, 79, 79, 210, 71, 230, 64, 19, 96, 109, 130, 125, 27, 200, + 225, 255, 54, 165, 17, 11, 81, 255, 255, 255, 216, 102, 159, 27, 139, 68, 238, 233, 25, 31, 30, 197, 159, 66, 166, + 41, 159, 68, 19, 232, 141, 66, 68, 67, 11, 109, 77, 27, 239, 127, 150, 99, 61, 30, 160, 251, 27, 193, 207, 81, + 185, 201, 87, 112, 246, 65, 38, 255, 27, 27, 158, 76, 102, 128, 54, 63, 99, 255, 255, 191, 27, 11, 77, 177, 112, + 25, 151, 107, 152, 27, 163, 23, 73, 251, 176, 70, 103, 128, 27, 60, 28, 3, 237, 175, 179, 154, 40, 68, 15, 160, + 206, 22, 72, 30, 44, 164, 139, 211, 42, 39, 12, 72, 60, 200, 209, 56, 127, 179, 204, 255, 72, 72, 216, 175, 63, + 144, 40, 54, 185, 27, 68, 56, 218, 152, 38, 58, 77, 189, 255, 216, 102, 159, 27, 241, 163, 114, 14, 0, 192, 13, + 77, 159, 75, 217, 14, 90, 73, 79, 150, 218, 109, 190, 87, 66, 159, 27, 39, 200, 162, 230, 19, 91, 140, 111, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1757, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aae232820aff810000fb" + } + ] + }, + "cborHex": "9f4aaae232820aff810000fbff", + "cborBytes": [159, 74, 170, 226, 50, 130, 10, 255, 129, 0, 0, 251, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1758, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7589e0ee1f93" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17269523601377114274" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1831733482008724873" + } + }, + { + "_tag": "ByteArray", + "bytearray": "40a09a51" + }, + { + "_tag": "ByteArray", + "bytearray": "7343c9d963f41d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "53cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11789243541383220675" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d45bf9efbd6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24848217" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0d2cafe5a71" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78c70f" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13199736560774141678" + } + } + ] + }, + "cborHex": "9f467589e0ee1f93d8669f1befa9ac37b44eb8a29f1b196b9fe59e51c5894440a09a51477343c9d963f41dbf4253cc1ba39bce89eeb70dc3466d45bf9efbd6442484821746f0d2cafe5a714378c70fffffff1bb72ee27781add6eeff", + "cborBytes": [ + 159, 70, 117, 137, 224, 238, 31, 147, 216, 102, 159, 27, 239, 169, 172, 55, 180, 78, 184, 162, 159, 27, 25, 107, + 159, 229, 158, 81, 197, 137, 68, 64, 160, 154, 81, 71, 115, 67, 201, 217, 99, 244, 29, 191, 66, 83, 204, 27, 163, + 155, 206, 137, 238, 183, 13, 195, 70, 109, 69, 191, 158, 251, 214, 68, 36, 132, 130, 23, 70, 240, 210, 202, 254, + 90, 113, 67, 120, 199, 15, 255, 255, 255, 27, 183, 46, 226, 119, 129, 173, 214, 238, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1759, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b036" + }, + { + "_tag": "ByteArray", + "bytearray": "917e28a8550f368e" + }, + { + "_tag": "ByteArray", + "bytearray": "58ea656dac39dc0397" + } + ] + }, + "cborHex": "9f42b03648917e28a8550f368e4958ea656dac39dc0397ff", + "cborBytes": [ + 159, 66, 176, 54, 72, 145, 126, 40, 168, 85, 15, 54, 142, 73, 88, 234, 101, 109, 172, 57, 220, 3, 151, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1760, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1291254447052242208" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92a3af63" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bd0bab3be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04ba3ad1a46ca5b446" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca87618708773104" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b03a721a627255b18b" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8182549851810365385" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11040497850072282855" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17509640841036317692" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4132252922484550086" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3221521175950106056" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf1b11eb751407313d204492a3af63454bd0bab3be4904ba3ad1a46ca5b44648ca8761870877310449b03a721a627255b18bffbf1b718e41bcba14ffc91b9937ba4cb105b6e71bf2febd932aa443fc1b3958b623aec2e9c6ffd8669f1b2cb52470f0e79dc880ffff", + "cborBytes": [ + 159, 191, 27, 17, 235, 117, 20, 7, 49, 61, 32, 68, 146, 163, 175, 99, 69, 75, 208, 186, 179, 190, 73, 4, 186, 58, + 209, 164, 108, 165, 180, 70, 72, 202, 135, 97, 135, 8, 119, 49, 4, 73, 176, 58, 114, 26, 98, 114, 85, 177, 139, + 255, 191, 27, 113, 142, 65, 188, 186, 20, 255, 201, 27, 153, 55, 186, 76, 177, 5, 182, 231, 27, 242, 254, 189, + 147, 42, 164, 67, 252, 27, 57, 88, 182, 35, 174, 194, 233, 198, 255, 216, 102, 159, 27, 44, 181, 36, 112, 240, + 231, 157, 200, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1761, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2132258043919543124" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "924d7ac6326b552ff9389401" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1811718566097249599" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c053de238988875dcd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f91c5dcdce9acf5d8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3f5e9d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "866ab0d4d5ed" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6b908" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12459919578725883962" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "253c271b" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9101404255798456453" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1dc8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18047793501662880015" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3163179490774055802" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12408740162811458185" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7140090" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b704907821" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7315f408" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e13c0f0d09051f26" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1113357590607469647" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4872929718351585397" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6785371056968540190" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d44cdf9665785f9fc04" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8207979964202484979" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ac8b0d5308826" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8426494467177603784" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17669819660720739345" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13581296244705752220" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13952254924638916737" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17618294494319060205" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6385726475694128544" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7190817108862603530" + } + }, + { + "_tag": "ByteArray", + "bytearray": "546f7fe1f3d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9912864793013263105" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4839497973586794706" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11944331983322109204" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17667911419884199350" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ad144c89f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "affd6abe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f283bfad0277ba885f381c71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10264005014716830072" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1d974d64cd4b2b549fbf4c924d7ac6326b552ff93894011b1924846fdd34e53f49c053de238988875dcd494f91c5dcdce9acf5d844c3f5e9d446866ab0d4d5ed43f6b9081bacea86d763e4203affbf41b844253c271bffbf1b7e4eaef308187085421dc81bfa76a4918638210f1b2be5defcd4637b7affbf1bac34b36f0a7ff28944e714009045b704907821447315f40848e13c0f0d09051f2641b5ffffff9fbf1b0f7370d470249c4f1b43a01fc2cdca60751b5e2a7b069fd3a01e4a9d44cdf9665785f9fc041b71e89a4a29d004f3474ac8b0d53088261b74f0ec1289ea62c81bf537cf5cda7914111bbc7a74fa4f08749c1bc1a05dee86cc10811bf480c17f321ba4ed1b589ea865888e3da0ff1b63caea0fda8e910a46546f7fe1f3d31b8991920236081b01ff1b432959c426dd18d2bf1ba5c2caa7b14055141bf53107d3e943ddb6453ad144c89f44affd6abe4cf283bfad0277ba885f381c711b8e71122e0b065178ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 29, 151, 77, 100, 205, 75, 43, 84, 159, 191, 76, 146, 77, 122, 198, 50, 107, 85, 47, 249, + 56, 148, 1, 27, 25, 36, 132, 111, 221, 52, 229, 63, 73, 192, 83, 222, 35, 137, 136, 135, 93, 205, 73, 79, 145, + 197, 220, 220, 233, 172, 245, 216, 68, 195, 245, 233, 212, 70, 134, 106, 176, 212, 213, 237, 67, 246, 185, 8, 27, + 172, 234, 134, 215, 99, 228, 32, 58, 255, 191, 65, 184, 68, 37, 60, 39, 27, 255, 191, 27, 126, 78, 174, 243, 8, + 24, 112, 133, 66, 29, 200, 27, 250, 118, 164, 145, 134, 56, 33, 15, 27, 43, 229, 222, 252, 212, 99, 123, 122, 255, + 191, 27, 172, 52, 179, 111, 10, 127, 242, 137, 68, 231, 20, 0, 144, 69, 183, 4, 144, 120, 33, 68, 115, 21, 244, 8, + 72, 225, 60, 15, 13, 9, 5, 31, 38, 65, 181, 255, 255, 255, 159, 191, 27, 15, 115, 112, 212, 112, 36, 156, 79, 27, + 67, 160, 31, 194, 205, 202, 96, 117, 27, 94, 42, 123, 6, 159, 211, 160, 30, 74, 157, 68, 205, 249, 102, 87, 133, + 249, 252, 4, 27, 113, 232, 154, 74, 41, 208, 4, 243, 71, 74, 200, 176, 213, 48, 136, 38, 27, 116, 240, 236, 18, + 137, 234, 98, 200, 27, 245, 55, 207, 92, 218, 121, 20, 17, 27, 188, 122, 116, 250, 79, 8, 116, 156, 27, 193, 160, + 93, 238, 134, 204, 16, 129, 27, 244, 128, 193, 127, 50, 27, 164, 237, 27, 88, 158, 168, 101, 136, 142, 61, 160, + 255, 27, 99, 202, 234, 15, 218, 142, 145, 10, 70, 84, 111, 127, 225, 243, 211, 27, 137, 145, 146, 2, 54, 8, 27, 1, + 255, 27, 67, 41, 89, 196, 38, 221, 24, 210, 191, 27, 165, 194, 202, 167, 177, 64, 85, 20, 27, 245, 49, 7, 211, + 233, 67, 221, 182, 69, 58, 209, 68, 200, 159, 68, 175, 253, 106, 190, 76, 242, 131, 191, 173, 2, 119, 186, 136, + 95, 56, 28, 113, 27, 142, 113, 18, 46, 11, 6, 81, 120, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1762, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1312708533167835179" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "575358515252175624" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f672d73162b24024bd" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12430542701682810131" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4c7af472f657" + }, + { + "_tag": "ByteArray", + "bytearray": "24bba59ea2655cc58379c096" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15898431008091941647" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15969171946481986649" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16742312109412337182" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6ade0726f4" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15087541235079729328" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "61038795677716630" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f44ea5fa2db25da59" + }, + { + "_tag": "ByteArray", + "bytearray": "6392c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6458722617749954991" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "77e498fdec70d962" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17460215104365176909" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17404904475297163978" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9265438925206796442" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "638586abc385d864bdece0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14072982054282044674" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2370402904706699373" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "34b20e579c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15605605762855761969" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "379d88b2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8425133559898854534" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13220296119972257431" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5133478839393384709" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18388115975451553878" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51cc59" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9150977900840941854" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8454392" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e56d78fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4797168685255165983" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1237ad74b517c82b9f9f1b07fc1585701a230849f672d73162b24024bdffd8669f1bac8228ba3320dd139f464c7af472f6574c24bba59ea2655cc58379c096ffffffff9f1bdca292c4b3602b0f9f1bdd9de546eb312c591be858a428b03e461e456ade0726f4ffd8669f1bd161b6d0eafc50b09f1b00d8da7615e35096498f44ea5fa2db25da59436392c41b59a1fe0045c461afffff4877e498fdec70d962ffd8669f1bf24f25211598a84d9f1bf18aa467b7b1aacad8669f1b8095739cb107389a9f4b638586abc385d864bdece01bc34d469dd3eda5021b20e55ce20598d06dffff4534b20e579cd8669f1bd8923fc25fce78319f44379d88b2ffff9f1b74ec16559efe5486ffffff1bb777ed46e86bde97bf1b473dc7ce5c06f9051bff2fb60e2579b0564351cc591b7efecdeab712f91e44d8454392412844e56d78fc1b4292f780b443081fffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 18, 55, 173, 116, 181, 23, 200, 43, 159, 159, 27, 7, 252, 21, 133, 112, 26, 35, 8, 73, + 246, 114, 215, 49, 98, 178, 64, 36, 189, 255, 216, 102, 159, 27, 172, 130, 40, 186, 51, 32, 221, 19, 159, 70, 76, + 122, 244, 114, 246, 87, 76, 36, 187, 165, 158, 162, 101, 92, 197, 131, 121, 192, 150, 255, 255, 255, 255, 159, 27, + 220, 162, 146, 196, 179, 96, 43, 15, 159, 27, 221, 157, 229, 70, 235, 49, 44, 89, 27, 232, 88, 164, 40, 176, 62, + 70, 30, 69, 106, 222, 7, 38, 244, 255, 216, 102, 159, 27, 209, 97, 182, 208, 234, 252, 80, 176, 159, 27, 0, 216, + 218, 118, 21, 227, 80, 150, 73, 143, 68, 234, 95, 162, 219, 37, 218, 89, 67, 99, 146, 196, 27, 89, 161, 254, 0, + 69, 196, 97, 175, 255, 255, 72, 119, 228, 152, 253, 236, 112, 217, 98, 255, 216, 102, 159, 27, 242, 79, 37, 33, + 21, 152, 168, 77, 159, 27, 241, 138, 164, 103, 183, 177, 170, 202, 216, 102, 159, 27, 128, 149, 115, 156, 177, 7, + 56, 154, 159, 75, 99, 133, 134, 171, 195, 133, 216, 100, 189, 236, 224, 27, 195, 77, 70, 157, 211, 237, 165, 2, + 27, 32, 229, 92, 226, 5, 152, 208, 109, 255, 255, 69, 52, 178, 14, 87, 156, 216, 102, 159, 27, 216, 146, 63, 194, + 95, 206, 120, 49, 159, 68, 55, 157, 136, 178, 255, 255, 159, 27, 116, 236, 22, 85, 158, 254, 84, 134, 255, 255, + 255, 27, 183, 119, 237, 70, 232, 107, 222, 151, 191, 27, 71, 61, 199, 206, 92, 6, 249, 5, 27, 255, 47, 182, 14, + 37, 121, 176, 86, 67, 81, 204, 89, 27, 126, 254, 205, 234, 183, 18, 249, 30, 68, 216, 69, 67, 146, 65, 40, 68, + 229, 109, 120, 252, 27, 66, 146, 247, 128, 180, 67, 8, 31, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1763, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "440635729621313090" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2207f35499" + } + ] + }, + "cborHex": "9fa09f1b061d73dc8b6c6642ff081bfffffffffffffff1452207f35499ff", + "cborBytes": [ + 159, 160, 159, 27, 6, 29, 115, 220, 139, 108, 102, 66, 255, 8, 27, 255, 255, 255, 255, 255, 255, 255, 241, 69, 34, + 7, 243, 84, 153, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1764, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11012984445485883101" + } + } + ] + }, + "cborHex": "9f801b98d5fb00fe169eddff", + "cborBytes": [159, 128, 27, 152, 213, 251, 0, 254, 22, 158, 221, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1765, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4509232575219563060" + } + } + ] + }, + "cborHex": "9f091b3e940322df94fa34ff", + "cborBytes": [159, 9, 27, 62, 148, 3, 34, 223, 148, 250, 52, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1766, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13919099700540000781" + } + } + ] + }, + "cborHex": "9f1bc12a936e5beeca0dff", + "cborBytes": [159, 27, 193, 42, 147, 110, 91, 238, 202, 13, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1767, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9929705559746406095" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02701e0f0d0404260106" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afe644f5e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17043990069247392313" + } + } + } + ] + } + ] + }, + "cborHex": "9f05bf1b89cd6698c4e7e6cf4a02701e0f0d040426010645afe644f5e51bec886aaa40c6ba39ffff", + "cborBytes": [ + 159, 5, 191, 27, 137, 205, 102, 152, 196, 231, 230, 207, 74, 2, 112, 30, 15, 13, 4, 4, 38, 1, 6, 69, 175, 230, 68, + 245, 229, 27, 236, 136, 106, 170, 64, 198, 186, 57, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1768, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4019978764178787626" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "2b8f49ee0634455ecd0c" + }, + { + "_tag": "ByteArray", + "bytearray": "1e5a6d8d2ee64abe" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "308336875691477433" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10041872912086050731" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11997103059540176200" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12013200179174803942" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "64554620567680540" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "410a84926f62f210f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10645026302714288175" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0ed3ef5351db13b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c19eec52" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f49802" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15645682086612319595" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "684ad1a0f10ec59f5542" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10684257259091712797" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13332679999995256668" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c68b1ad1da5a659559" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14741398135033913406" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2ce6" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b37c9d563237d8d2a80ff4a2b8f49ee0634455ecd0c481e5a6d8d2ee64abebf1b04476ec13abe89b91b8b5be6359c81a7ab1ba67e45ab55a4ed481ba6b775ea0f5f89e6ffd8669f1b00e55815db8bf61c9fbf49410a84926f62f210f21b93babb05c5f9982f48c0ed3ef5351db13b44c19eec5243f498021bd920a0f6a1383d6bff804a684ad1a0f10ec59f55429f1b94461b5e990cdb1d1bb90731d207ac1f5c49c68b1ad1da5a6595591bcc93f780234d603e422ce6ffa0ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 55, 201, 213, 99, 35, 125, 141, 42, 128, 255, 74, 43, 143, 73, 238, 6, 52, 69, 94, 205, + 12, 72, 30, 90, 109, 141, 46, 230, 74, 190, 191, 27, 4, 71, 110, 193, 58, 190, 137, 185, 27, 139, 91, 230, 53, + 156, 129, 167, 171, 27, 166, 126, 69, 171, 85, 164, 237, 72, 27, 166, 183, 117, 234, 15, 95, 137, 230, 255, 216, + 102, 159, 27, 0, 229, 88, 21, 219, 139, 246, 28, 159, 191, 73, 65, 10, 132, 146, 111, 98, 242, 16, 242, 27, 147, + 186, 187, 5, 197, 249, 152, 47, 72, 192, 237, 62, 245, 53, 29, 177, 59, 68, 193, 158, 236, 82, 67, 244, 152, 2, + 27, 217, 32, 160, 246, 161, 56, 61, 107, 255, 128, 74, 104, 74, 209, 160, 241, 14, 197, 159, 85, 66, 159, 27, 148, + 70, 27, 94, 153, 12, 219, 29, 27, 185, 7, 49, 210, 7, 172, 31, 92, 73, 198, 139, 26, 209, 218, 90, 101, 149, 89, + 27, 204, 147, 247, 128, 35, 77, 96, 62, 66, 44, 230, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1769, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "456464421890630011" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12905895652338527703" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9055593412653562402" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16466093498944835040" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17619624783187161681" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8464375704828732165" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a12f1e53c3e69c295ea841e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16768253144425467981" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8ad8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14324696160088129718" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8e48f0dd4b9ae951eec6e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17856753626512015531" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7448301935375960885" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10510048419928896540" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15917390107874412957" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "370647647537533460" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18012060186113919160" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16882577430692391382" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b447f1d8a4db04" + }, + { + "_tag": "ByteArray", + "bytearray": "ecbc79c2c578f7eb79e50284" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16147558004547646403" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16829520579733304055" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ef2bb4facd5fff14cc" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "9ad0" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b0655aff92765217b80ff1bb31af3b7a9e56dd79fbf1b7dabee3aef953a221be48350cbd2f9cde01bf4857b63358a32511b757780db7bc36305ffbf4c8a12f1e53c3e69c295ea841e1be8b4cd64914e904d43b8ad8a1bc6cb8b43197480b64bc8e48f0dd4b9ae951eec6e1bf7cfeed06deac0abffbf1b675daf25bdf04b351b91db315a7204741c1bdce5edf81b2bc99d1b0524ce12584f12141bf9f7b14eaa46c8b81bea4af6b9b97269d6ff47b447f1d8a4db044cecbc79c2c578f7eb79e50284ffd8669f1be017a673a313f3c39f1be98e77ccf72132f749ef2bb4facd5fff14cca0429ad0ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 6, 85, 175, 249, 39, 101, 33, 123, 128, 255, 27, 179, 26, 243, 183, 169, 229, 109, 215, + 159, 191, 27, 125, 171, 238, 58, 239, 149, 58, 34, 27, 228, 131, 80, 203, 210, 249, 205, 224, 27, 244, 133, 123, + 99, 53, 138, 50, 81, 27, 117, 119, 128, 219, 123, 195, 99, 5, 255, 191, 76, 138, 18, 241, 229, 60, 62, 105, 194, + 149, 234, 132, 30, 27, 232, 180, 205, 100, 145, 78, 144, 77, 67, 184, 173, 138, 27, 198, 203, 139, 67, 25, 116, + 128, 182, 75, 200, 228, 143, 13, 212, 185, 174, 149, 30, 236, 110, 27, 247, 207, 238, 208, 109, 234, 192, 171, + 255, 191, 27, 103, 93, 175, 37, 189, 240, 75, 53, 27, 145, 219, 49, 90, 114, 4, 116, 28, 27, 220, 229, 237, 248, + 27, 43, 201, 157, 27, 5, 36, 206, 18, 88, 79, 18, 20, 27, 249, 247, 177, 78, 170, 70, 200, 184, 27, 234, 74, 246, + 185, 185, 114, 105, 214, 255, 71, 180, 71, 241, 216, 164, 219, 4, 76, 236, 188, 121, 194, 197, 120, 247, 235, 121, + 229, 2, 132, 255, 216, 102, 159, 27, 224, 23, 166, 115, 163, 19, 243, 195, 159, 27, 233, 142, 119, 204, 247, 33, + 50, 247, 73, 239, 43, 180, 250, 205, 95, 255, 20, 204, 160, 66, 154, 208, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1770, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "35e8491531" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e7" + } + ] + } + ] + }, + "cborHex": "9f099f4535e8491531ff80a09f41e7ffff", + "cborBytes": [159, 9, 159, 69, 53, 232, 73, 21, 49, 255, 128, 160, 159, 65, 231, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1771, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2c199d933f83e276fb1b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d014496c672173" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5955877267296125186" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02e506" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13707502497174285936" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17186538750886646617" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4303692353079826212" + } + }, + { + "_tag": "ByteArray", + "bytearray": "82f8d2249bb43cd0e3" + }, + { + "_tag": "ByteArray", + "bytearray": "082e4cb2f3a563fac287d6aa" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3401d7afa6727d0f" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9e1ccf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14437219219167778000" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14748687322157621960" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14710513789274197629" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a5038829c28e5756" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13058275089169021634" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17253511080750176434" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa36d6862d636d6685" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17376140659861918877" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b650a986a48472a55" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "090ed1ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "646976210b5abb1abffaf1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14693463408354937127" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5cccba381aae15fa58cb1c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31" + } + } + ] + } + ] + }, + "cborHex": "9fbf4bb2c199d933f83e276fb1b947d014496c672173ffd8669f1b52a786d1ab0281029f4302e5069f1bbe3ad4e54dda6e701bee82d9ef8d1593591b3bb9c964a7e357244982f8d2249bb43cd0e34c082e4cb2f3a563fac287d6aaff9f483401d7afa6727d0fff9f439e1ccf1bc85b4e635ef014d0ff1bccaddcfa448322c8ffffd8669f1bcc263e5a092c8e7d9f9f48a5038829c28e57561bb538500205407ac21bef70c8ea386158b249fa36d6862d636d66851bf12473de0e4a949dffffffbf493b650a986a48472a5544090ed1ae4b646976210b5abb1abffaf11bcbe9ab1edf3249274ce5cccba381aae15fa58cb1c64131ffff", + "cborBytes": [ + 159, 191, 75, 178, 193, 153, 217, 51, 248, 62, 39, 111, 177, 185, 71, 208, 20, 73, 108, 103, 33, 115, 255, 216, + 102, 159, 27, 82, 167, 134, 209, 171, 2, 129, 2, 159, 67, 2, 229, 6, 159, 27, 190, 58, 212, 229, 77, 218, 110, + 112, 27, 238, 130, 217, 239, 141, 21, 147, 89, 27, 59, 185, 201, 100, 167, 227, 87, 36, 73, 130, 248, 210, 36, + 155, 180, 60, 208, 227, 76, 8, 46, 76, 178, 243, 165, 99, 250, 194, 135, 214, 170, 255, 159, 72, 52, 1, 215, 175, + 166, 114, 125, 15, 255, 159, 67, 158, 28, 207, 27, 200, 91, 78, 99, 94, 240, 20, 208, 255, 27, 204, 173, 220, 250, + 68, 131, 34, 200, 255, 255, 216, 102, 159, 27, 204, 38, 62, 90, 9, 44, 142, 125, 159, 159, 72, 165, 3, 136, 41, + 194, 142, 87, 86, 27, 181, 56, 80, 2, 5, 64, 122, 194, 27, 239, 112, 200, 234, 56, 97, 88, 178, 73, 250, 54, 214, + 134, 45, 99, 109, 102, 133, 27, 241, 36, 115, 222, 14, 74, 148, 157, 255, 255, 255, 191, 73, 59, 101, 10, 152, + 106, 72, 71, 42, 85, 68, 9, 14, 209, 174, 75, 100, 105, 118, 33, 11, 90, 187, 26, 191, 250, 241, 27, 203, 233, + 171, 30, 223, 50, 73, 39, 76, 229, 204, 203, 163, 129, 170, 225, 95, 165, 140, 177, 198, 65, 49, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1772, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6491762159667462287" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9365026416637992380" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4379873032654510791" + } + }, + { + "_tag": "ByteArray", + "bytearray": "58f09f5744" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d33f7983e2dfa772ab76026d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6230599403126135863" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18be6772956bc55d0a6c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17178417862024231900" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "543d563ba1c545" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18266872586542830507" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b5a175f4a154d408f9fd8669f1b81f741e86bdb5dbc9f1b3cc86f5150af5ac74558f09f5744ffffffff4cd33f7983e2dfa772ab76026d1b5677892561181c37bf4a18be6772956bc55d0a6c1bee660007c52dfbdc47543d563ba1c5451bfd80f7d5de34d3abffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 90, 23, 95, 74, 21, 77, 64, 143, 159, 216, 102, 159, 27, 129, 247, 65, 232, 107, 219, 93, + 188, 159, 27, 60, 200, 111, 81, 80, 175, 90, 199, 69, 88, 240, 159, 87, 68, 255, 255, 255, 255, 76, 211, 63, 121, + 131, 226, 223, 167, 114, 171, 118, 2, 109, 27, 86, 119, 137, 37, 97, 24, 28, 55, 191, 74, 24, 190, 103, 114, 149, + 107, 197, 93, 10, 108, 27, 238, 102, 0, 7, 197, 45, 251, 220, 71, 84, 61, 86, 59, 161, 197, 69, 27, 253, 128, 247, + 213, 222, 52, 211, 171, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1773, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9900968719704209211" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5017025515576554102" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10336696375660079383" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17e9e44875686804d1bd26" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12449642142850545866" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e52bf527ec4109" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9808728653041615225" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7935431454608744410" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "750967093283303381" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15261915884449332100" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf1b89674e97ce39373b1b45a00e200502f2761b8f735296664969174b17e9e44875686804d1bd261bacc603916156f8ca47e52bf527ec410941e51b881f9abdb6bdc179ff801b6e2050dd3f6a5fdad8669f1b0a6bf897b128afd580ffd8669f1bd3cd37a2c47e7b8480ffff", + "cborBytes": [ + 159, 191, 27, 137, 103, 78, 151, 206, 57, 55, 59, 27, 69, 160, 14, 32, 5, 2, 242, 118, 27, 143, 115, 82, 150, 102, + 73, 105, 23, 75, 23, 233, 228, 72, 117, 104, 104, 4, 209, 189, 38, 27, 172, 198, 3, 145, 97, 86, 248, 202, 71, + 229, 43, 245, 39, 236, 65, 9, 65, 229, 27, 136, 31, 154, 189, 182, 189, 193, 121, 255, 128, 27, 110, 32, 80, 221, + 63, 106, 95, 218, 216, 102, 159, 27, 10, 107, 248, 151, 177, 40, 175, 213, 128, 255, 216, 102, 159, 27, 211, 205, + 55, 162, 196, 126, 123, 132, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1774, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2747603629181274927" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28f0c14f" + }, + { + "_tag": "ByteArray", + "bytearray": "438d063fca9a016063" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6230024526303908470" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3cc28381378378fc43bc00" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6442116315861232877" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13363247484041647985" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6989361977521343060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2913936503997905426" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7245032379965189141" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9281374866050262329" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10650203532187969688" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2649269924996401114" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10698806639400772661" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4919c500ddeab8581b32" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16278883846693529281" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "716648140b9a65" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4762222390202982229" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d31199b877f81" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6040072339737163489" + } + } + ] + }, + "cborHex": "9f9f9f1b262172f17cec8b2f4428f0c14f49438d063fca9a0160631b56757e4c7050d2764b3cc28381378378fc43bc00ffbf1b5966fea850a82ced1bb973cac903ef57711b60ff33aff4c80a541b287061cfcad6ba121b648b869052072c151b80ce11440e2a25391b93cd1faf71aca8981b24c418f5d98947da1b9479cbf42e12e4354a4919c500ddeab8581b321be1ea369bfe0326c147716648140b9a65ffff9f80ff9f1b4216d0085575df55ffbf4189472d31199b877f81ff1b53d2a5ca93b236e1ff", + "cborBytes": [ + 159, 159, 159, 27, 38, 33, 114, 241, 124, 236, 139, 47, 68, 40, 240, 193, 79, 73, 67, 141, 6, 63, 202, 154, 1, 96, + 99, 27, 86, 117, 126, 76, 112, 80, 210, 118, 75, 60, 194, 131, 129, 55, 131, 120, 252, 67, 188, 0, 255, 191, 27, + 89, 102, 254, 168, 80, 168, 44, 237, 27, 185, 115, 202, 201, 3, 239, 87, 113, 27, 96, 255, 51, 175, 244, 200, 10, + 84, 27, 40, 112, 97, 207, 202, 214, 186, 18, 27, 100, 139, 134, 144, 82, 7, 44, 21, 27, 128, 206, 17, 68, 14, 42, + 37, 57, 27, 147, 205, 31, 175, 113, 172, 168, 152, 27, 36, 196, 24, 245, 217, 137, 71, 218, 27, 148, 121, 203, + 244, 46, 18, 228, 53, 74, 73, 25, 197, 0, 221, 234, 184, 88, 27, 50, 27, 225, 234, 54, 155, 254, 3, 38, 193, 71, + 113, 102, 72, 20, 11, 154, 101, 255, 255, 159, 128, 255, 159, 27, 66, 22, 208, 8, 85, 117, 223, 85, 255, 191, 65, + 137, 71, 45, 49, 25, 155, 135, 127, 129, 255, 27, 83, 210, 165, 202, 147, 178, 54, 225, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1775, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6078042200806915818" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8194274593083712782" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10871321171665554118" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7791019856322549900" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14322763987260325661" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17446924039735274077" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3fcc90" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18136542285509110735" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d0a47d8f57c40b425dc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18283741867439231859" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13577542767888566370" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9ddd2129" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17466791941280713087" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14341481669068840152" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "334b965cacd6c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cacfeb6ea0470e027166781" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59d00edb4c466c5424" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93503e2e8e1811ea1522" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5fe60dd007991d6564" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2830980972394912370" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "232882137201539171" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c599967cd28a20e3" + }, + { + "_tag": "ByteArray", + "bytearray": "8eb8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2238989225051767229" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11340401316016707947" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17085081035369292092" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16046499560494634730" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b54598b2dc4edfeea9f1b71b7e953c8c3650e1b96deb101c44f0ac6bf1b6c1f4347de1ed88c1bc6c4adf60e68bf1d1bf21fecf9f3a4ea5d433fcc901bfbb1f11dfd9f2bcf4a6d0a47d8f57c40b425dc1bfdbce65b65a713731bbc6d1f35e2ac0862ffffff9f9f449ddd21291bf26682ba41b1497f1bc7072d97f59fdcd8ffbf47334b965cacd6c94c1cacfeb6ea0470e0271667814959d00edb4c466c54244a93503e2e8e1811ea1522ff495fe60dd007991d6564d8669f1b2749aa31f97d1a729f1b033b5d11e66e786348c599967cd28a20e3428eb81b1f127cd6672341bd1b9d6132e9b38c596bffffffa0bf1bed1a66ae57f3213c1bdeb09e550fbe96eaffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 84, 89, 139, 45, 196, 237, 254, 234, 159, 27, 113, 183, 233, 83, 200, 195, 101, 14, 27, + 150, 222, 177, 1, 196, 79, 10, 198, 191, 27, 108, 31, 67, 71, 222, 30, 216, 140, 27, 198, 196, 173, 246, 14, 104, + 191, 29, 27, 242, 31, 236, 249, 243, 164, 234, 93, 67, 63, 204, 144, 27, 251, 177, 241, 29, 253, 159, 43, 207, 74, + 109, 10, 71, 216, 245, 124, 64, 180, 37, 220, 27, 253, 188, 230, 91, 101, 167, 19, 115, 27, 188, 109, 31, 53, 226, + 172, 8, 98, 255, 255, 255, 159, 159, 68, 157, 221, 33, 41, 27, 242, 102, 130, 186, 65, 177, 73, 127, 27, 199, 7, + 45, 151, 245, 159, 220, 216, 255, 191, 71, 51, 75, 150, 92, 172, 214, 201, 76, 28, 172, 254, 182, 234, 4, 112, + 224, 39, 22, 103, 129, 73, 89, 208, 14, 219, 76, 70, 108, 84, 36, 74, 147, 80, 62, 46, 142, 24, 17, 234, 21, 34, + 255, 73, 95, 230, 13, 208, 7, 153, 29, 101, 100, 216, 102, 159, 27, 39, 73, 170, 49, 249, 125, 26, 114, 159, 27, + 3, 59, 93, 17, 230, 110, 120, 99, 72, 197, 153, 150, 124, 210, 138, 32, 227, 66, 142, 184, 27, 31, 18, 124, 214, + 103, 35, 65, 189, 27, 157, 97, 50, 233, 179, 140, 89, 107, 255, 255, 255, 160, 191, 27, 237, 26, 102, 174, 87, + 243, 33, 60, 27, 222, 176, 158, 85, 15, 190, 150, 234, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1776, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12929178133557436215" + } + } + ] + }, + "cborHex": "9f1bb36dab02c0705f37ff", + "cborBytes": [159, 27, 179, 109, 171, 2, 192, 112, 95, 55, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1777, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1281e92e72f2ebfbd0" + } + ] + }, + "cborHex": "9f491281e92e72f2ebfbd0ff", + "cborBytes": [159, 73, 18, 129, 233, 46, 114, 242, 235, 251, 208, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1778, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7920391204238272102" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15703214752793376151" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b6deae1d612c026669fd8669f1bd9ed069e53ec359780ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 109, 234, 225, 214, 18, 192, 38, 102, 159, 216, 102, 159, 27, 217, 237, 6, 158, 83, 236, + 53, 151, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1779, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7136304689617340632" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b40b68f2c246cb609a1b9ea2" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "181501870359012068" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1fdb4e" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b63093f4e319888d8809f4cb40b68f2c246cb609a1b9ea29f1b0284d2fd4cd162e4431fdb4effffff", + "cborBytes": [ + 159, 27, 99, 9, 63, 78, 49, 152, 136, 216, 128, 159, 76, 180, 11, 104, 242, 194, 70, 203, 96, 154, 27, 158, 162, + 159, 27, 2, 132, 210, 253, 76, 209, 98, 228, 67, 31, 219, 78, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1780, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8b15ecd3c5aa05" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3125974197544196754" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "65d35d3339d5ae852f" + }, + { + "_tag": "ByteArray", + "bytearray": "fa8375" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6342178653515859611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4242672164667304247" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15445489041735788774" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5d6ad92c" + }, + { + "_tag": "ByteArray", + "bytearray": "69ad15490d" + } + ] + }, + "cborHex": "9f9f478b15ecd3c5aa05d8669f1b2b61b0f875a89a929f4965d35d3339d5ae852f43fa8375ffffd8669f1b5803f1e210e0c69b9f1b3ae0ffdae96ea93741021bd659667322d9a8e6ffffff445d6ad92c4569ad15490dff", + "cborBytes": [ + 159, 159, 71, 139, 21, 236, 211, 197, 170, 5, 216, 102, 159, 27, 43, 97, 176, 248, 117, 168, 154, 146, 159, 73, + 101, 211, 93, 51, 57, 213, 174, 133, 47, 67, 250, 131, 117, 255, 255, 216, 102, 159, 27, 88, 3, 241, 226, 16, 224, + 198, 155, 159, 27, 58, 224, 255, 218, 233, 110, 169, 55, 65, 2, 27, 214, 89, 102, 115, 34, 217, 168, 230, 255, + 255, 255, 68, 93, 106, 217, 44, 69, 105, 173, 21, 73, 13, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1781, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5660137825284216334" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1732a8e69f8c6080206db5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8535356403309646866" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14100831415392471781" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13876305601852900751" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "68829fdedd2819c0c4e81c40" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16566234851399228320" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17939591188934453643" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15010000032685112341" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5343934333671330199" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1956003700737890389" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f8e5ee45f0cf616d06132f" + } + ] + }, + "cborHex": "9fbf1b4e8cd95d07d1560e4b1732a8e69f8c6080206db51b7673ad6d32a094121bc3b0377680230ae5ff9f1bc0928a6cd134858f9f4c68829fdedd2819c0c4e81c401be5e716d35f58dba01bf8f63b23682a698b1bd04e3b80dacc3c151b4a2977f68d7e5197ffff1b1b251f00a1d4d8554bf8e5ee45f0cf616d06132fff", + "cborBytes": [ + 159, 191, 27, 78, 140, 217, 93, 7, 209, 86, 14, 75, 23, 50, 168, 230, 159, 140, 96, 128, 32, 109, 181, 27, 118, + 115, 173, 109, 50, 160, 148, 18, 27, 195, 176, 55, 118, 128, 35, 10, 229, 255, 159, 27, 192, 146, 138, 108, 209, + 52, 133, 143, 159, 76, 104, 130, 159, 222, 221, 40, 25, 192, 196, 232, 28, 64, 27, 229, 231, 22, 211, 95, 88, 219, + 160, 27, 248, 246, 59, 35, 104, 42, 105, 139, 27, 208, 78, 59, 128, 218, 204, 60, 21, 27, 74, 41, 119, 246, 141, + 126, 81, 151, 255, 255, 27, 27, 37, 31, 0, 161, 212, 216, 85, 75, 248, 229, 238, 69, 240, 207, 97, 109, 6, 19, 47, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1782, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "239043fb66ebb5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9339069349548824909" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1072877826956095898" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1698418550764673480" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8725626396692962316" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12777017427582020026" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f47239043fb66ebb59f1b819b0a17c898994dff1b0ee3a0b3031c719ad8669f1b1791feac5e4319c89f1b7917a6fa39a7dc0c1bb15115a7a40069baffffffff", + "cborBytes": [ + 159, 159, 71, 35, 144, 67, 251, 102, 235, 181, 159, 27, 129, 155, 10, 23, 200, 152, 153, 77, 255, 27, 14, 227, + 160, 179, 3, 28, 113, 154, 216, 102, 159, 27, 23, 145, 254, 172, 94, 67, 25, 200, 159, 27, 121, 23, 166, 250, 57, + 167, 220, 12, 27, 177, 81, 21, 167, 164, 0, 105, 186, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1783, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11693340339349591798" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb32abc7c26c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b791d9407b574" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "319570359547618978" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d2f2fb4f43a04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9125845622417021254" + } + } + ] + }, + "cborHex": "9f1ba2471715acad96f6bf46fb32abc7c26c471b791d9407b574ff1b046f578c819466a2476d2f2fb4f43a041b7ea5843e27385946ff", + "cborBytes": [ + 159, 27, 162, 71, 23, 21, 172, 173, 150, 246, 191, 70, 251, 50, 171, 199, 194, 108, 71, 27, 121, 29, 148, 7, 181, + 116, 255, 27, 4, 111, 87, 140, 129, 148, 102, 162, 71, 109, 47, 47, 180, 244, 58, 4, 27, 126, 165, 132, 62, 39, + 56, 89, 70, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1784, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7817751568882991340" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3613045454150183940" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6758e93281" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13538844601635658854" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13678083540709330380" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "678005" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27f69501cf43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b9cf54bdb9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "288161dac9bb6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3833" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69c09c9d34c8423cb988" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4ca0cec55" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b525" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5b96fd352228341ca5b561f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16472724887306668438" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7040a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93fe7e7ac4fafd7acf179656" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b6c7e3ba1b58600ec9f1b32241db2a3f62c04ffff456758e932811bbbe3a36eedb55c66bf1bbdd25082bc18cdcc43678005ffbf4627f69501cf43464b9cf54bdb9e47288161dac9bb6b4238334a69c09c9d34c8423cb98845f4ca0cec5542b5254ca5b96fd352228341ca5b561f41dc1be49ae0023ea6899643e7040a4c93fe7e7ac4fafd7acf179656ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 108, 126, 59, 161, 181, 134, 0, 236, 159, 27, 50, 36, 29, 178, 163, 246, 44, 4, 255, 255, + 69, 103, 88, 233, 50, 129, 27, 187, 227, 163, 110, 237, 181, 92, 102, 191, 27, 189, 210, 80, 130, 188, 24, 205, + 204, 67, 103, 128, 5, 255, 191, 70, 39, 246, 149, 1, 207, 67, 70, 75, 156, 245, 75, 219, 158, 71, 40, 129, 97, + 218, 201, 187, 107, 66, 56, 51, 74, 105, 192, 156, 157, 52, 200, 66, 60, 185, 136, 69, 244, 202, 12, 236, 85, 66, + 181, 37, 76, 165, 185, 111, 211, 82, 34, 131, 65, 202, 91, 86, 31, 65, 220, 27, 228, 154, 224, 2, 62, 166, 137, + 150, 67, 231, 4, 10, 76, 147, 254, 126, 122, 196, 250, 253, 122, 207, 23, 150, 86, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1785, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd5e28feb81ae0c3e375" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8091759512731573538" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17841274682433207940" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d9905ada03f3198b" + }, + { + "_tag": "ByteArray", + "bytearray": "5524" + }, + { + "_tag": "ByteArray", + "bytearray": "3e54ea61c922e70e0686" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "77410f" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13589342521135124581" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "54de595e80" + }, + { + "_tag": "ByteArray", + "bytearray": "83cd2b850ddcbc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7743617209172980856" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3aa067bf35fc98d000" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4533896961692971714" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15612519910825157334" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5cde9cc5a178524e2fca" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e6f86618db" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + "cborHex": "9fd8799fbf4add5e28feb81ae0c3e3751b704bb467a440dd22ff9f1bf798f0cbea99fe8448d9905ada03f3198b4255244a3e54ea61c922e70e0686ff4377410f80ff9f1bfffffffffffffff012ff9fd8669f1bbc970b06075ed0659f4554de595e804783cd2b850ddcbc1b6b76dad3055b7478493aa067bf35fc98d000ffff9f41cb1b3eeba343d9eeb2c21bd8aad023e57262d64a5cde9cc5a178524e2fcaff45e6f86618dbff0fff", + "cborBytes": [ + 159, 216, 121, 159, 191, 74, 221, 94, 40, 254, 184, 26, 224, 195, 227, 117, 27, 112, 75, 180, 103, 164, 64, 221, + 34, 255, 159, 27, 247, 152, 240, 203, 234, 153, 254, 132, 72, 217, 144, 90, 218, 3, 243, 25, 139, 66, 85, 36, 74, + 62, 84, 234, 97, 201, 34, 231, 14, 6, 134, 255, 67, 119, 65, 15, 128, 255, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 240, 18, 255, 159, 216, 102, 159, 27, 188, 151, 11, 6, 7, 94, 208, 101, 159, 69, 84, 222, 89, 94, 128, 71, + 131, 205, 43, 133, 13, 220, 188, 27, 107, 118, 218, 211, 5, 91, 116, 120, 73, 58, 160, 103, 191, 53, 252, 152, + 208, 0, 255, 255, 159, 65, 203, 27, 62, 235, 163, 67, 217, 238, 178, 194, 27, 216, 170, 208, 35, 229, 114, 98, + 214, 74, 92, 222, 156, 197, 161, 120, 82, 78, 47, 202, 255, 69, 230, 248, 102, 24, 219, 255, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1786, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2385184389216522129" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11487465384855339858" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16279359187022722517" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca48" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17041970078652683672" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11416403359011992658" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10660422576495385750" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10358137974946982079" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7080081855004426013" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1cfaba9669f3a28d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1744850308805655739" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6533a0fbfd73954c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "25482819bc3335" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16665364641410859808" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "409044d4d9804f15" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10aa2a3e995afb65" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cab8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11907522271219864248" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "368c41ae4117f8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3454461024966104060" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87e60d7ce9d44d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5472114780655590931" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9282266890636768097" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b2119e090930ecf911b9f6bace781e603521be1ebe6edc97b35d542ca481bec813d7e8aedd5981b9e6f365e4a7c7452ffd8669f1b93f16dda1b8fdc969f9f1b8fbf7f9bc332e8bf1b624180ef6c3a3f1d481cfaba9669f3a28d1b1836f41c7a977cbb486533a0fbfd73954cffbf4725482819bc33351be74744d82fa6432048409044d4d9804f154810aa2a3e995afb6542cab81ba540046abb1cd2b8ffffff47368c41ae4117f8bf1b2ff0b5ffeb8953fc4787e60d7ce9d44d1b4bf0db6687241e131b80d13c8eb6c63361ffff", + "cborBytes": [ + 159, 191, 27, 33, 25, 224, 144, 147, 14, 207, 145, 27, 159, 107, 172, 231, 129, 230, 3, 82, 27, 225, 235, 230, + 237, 201, 123, 53, 213, 66, 202, 72, 27, 236, 129, 61, 126, 138, 237, 213, 152, 27, 158, 111, 54, 94, 74, 124, + 116, 82, 255, 216, 102, 159, 27, 147, 241, 109, 218, 27, 143, 220, 150, 159, 159, 27, 143, 191, 127, 155, 195, 50, + 232, 191, 27, 98, 65, 128, 239, 108, 58, 63, 29, 72, 28, 250, 186, 150, 105, 243, 162, 141, 27, 24, 54, 244, 28, + 122, 151, 124, 187, 72, 101, 51, 160, 251, 253, 115, 149, 76, 255, 191, 71, 37, 72, 40, 25, 188, 51, 53, 27, 231, + 71, 68, 216, 47, 166, 67, 32, 72, 64, 144, 68, 212, 217, 128, 79, 21, 72, 16, 170, 42, 62, 153, 90, 251, 101, 66, + 202, 184, 27, 165, 64, 4, 106, 187, 28, 210, 184, 255, 255, 255, 71, 54, 140, 65, 174, 65, 23, 248, 191, 27, 47, + 240, 181, 255, 235, 137, 83, 252, 71, 135, 230, 13, 124, 233, 212, 77, 27, 75, 240, 219, 102, 135, 36, 30, 19, 27, + 128, 209, 60, 142, 182, 198, 51, 97, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1787, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f95f0520" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6503086884400117388" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "ByteArray", + "bytearray": "45c2e4f26d96" + } + ] + }, + "cborHex": "9fbf0f1bfffffffffffffff01244f95f05201b5a3f9b11082bb68c0eff0e4645c2e4f26d96ff", + "cborBytes": [ + 159, 191, 15, 27, 255, 255, 255, 255, 255, 255, 255, 240, 18, 68, 249, 95, 5, 32, 27, 90, 63, 155, 17, 8, 43, 182, + 140, 14, 255, 14, 70, 69, 194, 228, 242, 109, 150, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1788, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1833199835687720819" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15993785577358294165" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3104816939532143642" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7df51800fb033" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5306896498987254503" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11833928261102102667" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11072237110342423732" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7df024a4fb4fcb9be0de" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15829621153908691800" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1803815006359316929" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18178208741432729243" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12303297152489874403" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9513655947106338745" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1149878095101747344" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eccd484a9485ce4e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9951687440055896811" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45649e4cef79a9f5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07b79c093e66" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c08ebd40e566" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b9b02083c02fee5828" + }, + { + "_tag": "ByteArray", + "bytearray": "453e" + } + ] + }, + "cborHex": "9fbf1b1970d589b07897731bddf5573e7034fc951b2b16868e756dcc1a47c7df51800fb0331b49a5e23fa9e642e71ba43a8f0dfc72688b1b99a87cfd16db94b44a7df024a4fb4fcb9be0de1bdbae1c920fbc93581b19087030f690e9c11bfc45f889bdff9e9b1baabe1793143be3e3ffd8669f1b84074badaa8e47b980ffbf1b0ff53009018ae09048eccd484a9485ce4e1b8a1b7f001c3f8aeb4845649e4cef79a9f54607b79c093e6646c08ebd40e566ff49b9b02083c02fee582842453eff", + "cborBytes": [ + 159, 191, 27, 25, 112, 213, 137, 176, 120, 151, 115, 27, 221, 245, 87, 62, 112, 52, 252, 149, 27, 43, 22, 134, + 142, 117, 109, 204, 26, 71, 199, 223, 81, 128, 15, 176, 51, 27, 73, 165, 226, 63, 169, 230, 66, 231, 27, 164, 58, + 143, 13, 252, 114, 104, 139, 27, 153, 168, 124, 253, 22, 219, 148, 180, 74, 125, 240, 36, 164, 251, 79, 203, 155, + 224, 222, 27, 219, 174, 28, 146, 15, 188, 147, 88, 27, 25, 8, 112, 48, 246, 144, 233, 193, 27, 252, 69, 248, 137, + 189, 255, 158, 155, 27, 170, 190, 23, 147, 20, 59, 227, 227, 255, 216, 102, 159, 27, 132, 7, 75, 173, 170, 142, + 71, 185, 128, 255, 191, 27, 15, 245, 48, 9, 1, 138, 224, 144, 72, 236, 205, 72, 74, 148, 133, 206, 78, 27, 138, + 27, 127, 0, 28, 63, 138, 235, 72, 69, 100, 158, 76, 239, 121, 169, 245, 70, 7, 183, 156, 9, 62, 102, 70, 192, 142, + 189, 64, 229, 102, 255, 73, 185, 176, 32, 131, 192, 47, 238, 88, 40, 66, 69, 62, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1789, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3052572508554213770" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efd79aa18a4fc33fd219" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7918433411877701592" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "685b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10668827403314274561" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17333714481770964022" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11374713539520840291" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6011023949398904716" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16823282028135440423" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69b7afcbaeeb7e" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bfae4c48192b2b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9da34d1afbc1e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b80bcc487b1adac5b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7e344725f076c86" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a043be91daa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14178230847431569523" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9251158419750096339" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b2a5cea85f77f398a4aefd79aa18a4fc33fd2191b6de3ed3c048e07d842685b1b940f49ff588021011bf08db97bb400a4361b9ddb19b2c8f742631b536b726f28498f8c1be9784ddefb39e0274769b7afcbaeeb7eff9fbf481bfae4c48192b2b347c9da34d1afbc1e49b80bcc487b1adac5b541ac48c7e344725f076c86461a043be91daa41df1bc4c331d614a4f073ff1b8062b7916a118dd3ffff", + "cborBytes": [ + 159, 191, 27, 42, 92, 234, 133, 247, 127, 57, 138, 74, 239, 215, 154, 161, 138, 79, 195, 63, 210, 25, 27, 109, + 227, 237, 60, 4, 142, 7, 216, 66, 104, 91, 27, 148, 15, 73, 255, 88, 128, 33, 1, 27, 240, 141, 185, 123, 180, 0, + 164, 54, 27, 157, 219, 25, 178, 200, 247, 66, 99, 27, 83, 107, 114, 111, 40, 73, 143, 140, 27, 233, 120, 77, 222, + 251, 57, 224, 39, 71, 105, 183, 175, 203, 174, 235, 126, 255, 159, 191, 72, 27, 250, 228, 196, 129, 146, 178, 179, + 71, 201, 218, 52, 209, 175, 188, 30, 73, 184, 11, 204, 72, 123, 26, 218, 197, 181, 65, 172, 72, 199, 227, 68, 114, + 95, 7, 108, 134, 70, 26, 4, 59, 233, 29, 170, 65, 223, 27, 196, 195, 49, 214, 20, 164, 240, 115, 255, 27, 128, 98, + 183, 145, 106, 17, 141, 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1790, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "912070240333280831" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "20" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4ce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a3464b66641846fc2eedfa6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9467908516722867088" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7aafba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "217f9e4293eada" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8833c30f9f494fbd6b59b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14725195697309610170" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf1ebf2e4d16a0dc70f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10808522915945631465" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4635980389657131123" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17572857727935408155" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cf6af98441c4a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9874540366344180137" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df41c0c2fef40f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14637489828378371661" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9187169790545841570" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "991355399470899656" + } + } + ] + }, + "cborHex": "9fd8669f1b0ca8530d1d45363f80ffbf412042c4ce4c2a3464b66641846fc2eedfa61b8364c4a201297b90437aafba47217f9e4293eada4b8833c30f9f494fbd6b59b01bcc5a6778223ff0ba4acf1ebf2e4d16a0dc70f91b95ff9653779bcee9ffbf1b40564f9a1730b8731bf3df54ffa211681b478cf6af98441c4a4149ffbf1b89096a25483351a947df41c0c2fef40f1bcb22cf7237e2e64d1b7f7f623fb0af4da2ff1b0dc2007bbfa0e1c8ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 12, 168, 83, 13, 29, 69, 54, 63, 128, 255, 191, 65, 32, 66, 196, 206, 76, 42, 52, 100, + 182, 102, 65, 132, 111, 194, 238, 223, 166, 27, 131, 100, 196, 162, 1, 41, 123, 144, 67, 122, 175, 186, 71, 33, + 127, 158, 66, 147, 234, 218, 75, 136, 51, 195, 15, 159, 73, 79, 189, 107, 89, 176, 27, 204, 90, 103, 120, 34, 63, + 240, 186, 74, 207, 30, 191, 46, 77, 22, 160, 220, 112, 249, 27, 149, 255, 150, 83, 119, 155, 206, 233, 255, 191, + 27, 64, 86, 79, 154, 23, 48, 184, 115, 27, 243, 223, 84, 255, 162, 17, 104, 27, 71, 140, 246, 175, 152, 68, 28, + 74, 65, 73, 255, 191, 27, 137, 9, 106, 37, 72, 51, 81, 169, 71, 223, 65, 192, 194, 254, 244, 15, 27, 203, 34, 207, + 114, 55, 226, 230, 77, 27, 127, 127, 98, 63, 176, 175, 77, 162, 255, 27, 13, 194, 0, 123, 191, 160, 225, 200, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1791, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10278107972896817016" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2b33" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f801b8ea32cbedf9fff789f422b33a0ffff", + "cborBytes": [159, 128, 27, 142, 163, 44, 190, 223, 159, 255, 120, 159, 66, 43, 51, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1792, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1d17f5ad0b05" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16419682380480909468" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8789224308198647922" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16293013779162266132" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17222357742111799902" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1890621371726743479" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a893620b7" + }, + { + "_tag": "ByteArray", + "bytearray": "7d88be3b2825efd4a7" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0bb37b8ee3fd4c3089" + }, + { + "_tag": "ByteArray", + "bytearray": "a233" + }, + { + "_tag": "ByteArray", + "bytearray": "b71171ad10fc8df73ce241" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f461d17f5ad0b051be3de6e213d4e109cd8669f1b79f998f0e568a87280ffd8669f1be21c69b54382fa149f1bef021b1e5545ba5e1b1a3cd61ee288c7b7451a893620b7497d88be3b2825efd4a7ffff9f490bb37b8ee3fd4c308942a2334bb71171ad10fc8df73ce241ffffff", + "cborBytes": [ + 159, 159, 70, 29, 23, 245, 173, 11, 5, 27, 227, 222, 110, 33, 61, 78, 16, 156, 216, 102, 159, 27, 121, 249, 152, + 240, 229, 104, 168, 114, 128, 255, 216, 102, 159, 27, 226, 28, 105, 181, 67, 130, 250, 20, 159, 27, 239, 2, 27, + 30, 85, 69, 186, 94, 27, 26, 60, 214, 30, 226, 136, 199, 183, 69, 26, 137, 54, 32, 183, 73, 125, 136, 190, 59, 40, + 37, 239, 212, 167, 255, 255, 159, 73, 11, 179, 123, 142, 227, 253, 76, 48, 137, 66, 162, 51, 75, 183, 17, 113, + 173, 16, 252, 141, 247, 60, 226, 65, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1793, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17951550925379498009" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16176207852382899152" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6757743325654875445" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1230691d4b1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b2b023ea0731a5638402e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b8b803a28bd47ac97892a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3a789ca53d525fb" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1989396219952635219" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1331273619081568588" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "591f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4433951784208093677" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8001460826680516961" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9429932706783846210" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5227102695932024561" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12447524004003602357" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "911099011621765934" + } + } + } + ] + } + ] + }, + "cborHex": "9f1bf920b8748a947019d8669f1be07d6f56262acbd09fbf1b5dc853c028ecfd3546d1230691d4b14b1b2b023ea0731a5638402e4228de4b5b8b803a28bd47ac97892a48a3a789ca53d525fbff1b1b9bc1525fc81d53ffffbf1b1279a24d9c34a14c42591f1b3d888fa7d8eed1ed1b6f0ae63a727ee1611b82ddd9d5bbb05f421b488a66352383d6f11bacbe7d21bfc85fb51b0ca4dfb94eecc32effff", + "cborBytes": [ + 159, 27, 249, 32, 184, 116, 138, 148, 112, 25, 216, 102, 159, 27, 224, 125, 111, 86, 38, 42, 203, 208, 159, 191, + 27, 93, 200, 83, 192, 40, 236, 253, 53, 70, 209, 35, 6, 145, 212, 177, 75, 27, 43, 2, 62, 160, 115, 26, 86, 56, + 64, 46, 66, 40, 222, 75, 91, 139, 128, 58, 40, 189, 71, 172, 151, 137, 42, 72, 163, 167, 137, 202, 83, 213, 37, + 251, 255, 27, 27, 155, 193, 82, 95, 200, 29, 83, 255, 255, 191, 27, 18, 121, 162, 77, 156, 52, 161, 76, 66, 89, + 31, 27, 61, 136, 143, 167, 216, 238, 209, 237, 27, 111, 10, 230, 58, 114, 126, 225, 97, 27, 130, 221, 217, 213, + 187, 176, 95, 66, 27, 72, 138, 102, 53, 35, 131, 214, 241, 27, 172, 190, 125, 33, 191, 200, 95, 181, 27, 12, 164, + 223, 185, 78, 236, 195, 46, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1794, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9308323636207247664" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15917690125942224070" + } + } + ] + }, + "cborHex": "9f1b812dcf078e8161301bdce6fed5818774c6ff", + "cborBytes": [159, 27, 129, 45, 207, 7, 142, 129, 97, 48, 27, 220, 230, 254, 213, 129, 135, 116, 198, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1795, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4d134ae240b3bce5d03b1b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "42aeb6033182" + }, + { + "_tag": "ByteArray", + "bytearray": "1dccdedf398ea860e53b33" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2012137991292415602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8287892753046337204" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4091cf0284" + } + ] + }, + "cborHex": "9f4b4d134ae240b3bce5d03b1b9f4642aeb60331824b1dccdedf398ea860e53b33a0d8669f1b1bec8cd7a20d6e729f1b7304828c39dc76b4ffffff454091cf0284ff", + "cborBytes": [ + 159, 75, 77, 19, 74, 226, 64, 179, 188, 229, 208, 59, 27, 159, 70, 66, 174, 182, 3, 49, 130, 75, 29, 204, 222, + 223, 57, 142, 168, 96, 229, 59, 51, 160, 216, 102, 159, 27, 27, 236, 140, 215, 162, 13, 110, 114, 159, 27, 115, 4, + 130, 140, 57, 220, 118, 180, 255, 255, 255, 69, 64, 145, 207, 2, 132, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1796, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3918859958078038695" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "516067637282945469" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1775926117798886027" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16836508616661731549" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11428718970603638738" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11405149580408085272" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13316238065025518992" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6524cf591e03b1261f019" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7572470394174197051" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14171630471497595985" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dad12b97420c81ba" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c482f4b80d3e" + }, + { + "_tag": "ByteArray", + "bytearray": "6f13c9291303812c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7249631459713435334" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4a487aae11a3fa0368ca7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11432367610352796732" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12756986655559346220" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cb564710" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f1b3662965e6dbe62a7d8669f1b072970c8285339bd9fbf1b18a55b6516bdba8b1be9a74b6219ed08dd1b9e9af75a10990fd21b9e473b1dc66b5b181bb8ccc7f7ba618d904bb6524cf591e03b1261f019ff1b6916d1b3ecea4d3bd8669f1bc4abbed44db73c519f48dad12b97420c81baffffffff9f9f46c482f4b80d3e486f13c9291303812c1b649bdd6704b746c64be4a487aae11a3fa0368ca71b9ea7edc534c2843cff1bb109ebc61903682cff44cb564710a0ff", + "cborBytes": [ + 159, 27, 54, 98, 150, 94, 109, 190, 98, 167, 216, 102, 159, 27, 7, 41, 112, 200, 40, 83, 57, 189, 159, 191, 27, + 24, 165, 91, 101, 22, 189, 186, 139, 27, 233, 167, 75, 98, 25, 237, 8, 221, 27, 158, 154, 247, 90, 16, 153, 15, + 210, 27, 158, 71, 59, 29, 198, 107, 91, 24, 27, 184, 204, 199, 247, 186, 97, 141, 144, 75, 182, 82, 76, 245, 145, + 224, 59, 18, 97, 240, 25, 255, 27, 105, 22, 209, 179, 236, 234, 77, 59, 216, 102, 159, 27, 196, 171, 190, 212, 77, + 183, 60, 81, 159, 72, 218, 209, 43, 151, 66, 12, 129, 186, 255, 255, 255, 255, 159, 159, 70, 196, 130, 244, 184, + 13, 62, 72, 111, 19, 201, 41, 19, 3, 129, 44, 27, 100, 155, 221, 103, 4, 183, 70, 198, 75, 228, 164, 135, 170, + 225, 26, 63, 160, 54, 140, 167, 27, 158, 167, 237, 197, 52, 194, 132, 60, 255, 27, 177, 9, 235, 198, 25, 3, 104, + 44, 255, 68, 203, 86, 71, 16, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1797, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "49" + }, + { + "_tag": "ByteArray", + "bytearray": "b1f04c0544cb" + } + ] + } + ] + }, + "cborHex": "9f9f80414946b1f04c0544cbffff", + "cborBytes": [159, 159, 128, 65, 73, 70, 177, 240, 76, 5, 68, 203, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1798, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7761838874079526376" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17947515996985424846" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04c5b86d3f0cbec8d0e50149" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "568684849953348412" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17151047994195552458" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ef62d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17291247969270181992" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9354006913048289864" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "88368156cb921c86939c64" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2793572301856887935" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7806978843393585679" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "972277462180565044" + } + } + ] + }, + "cborHex": "9f1b6bb79754fd53fde8d8669f1bf91262b590f4fbce9f4c04c5b86d3f0cbec8d0e501499f1b07e45fdba69d9b3c1bee04c347d3b3a8ca43ef62d11beff6da6a438b30681b81d01bba4ecaa248ff4b88368156cb921c86939c64ffff1b26c4c335228cd47fd8669f1b6c57f5e51976f20f80ff1b0d7e393354641034ff", + "cborBytes": [ + 159, 27, 107, 183, 151, 84, 253, 83, 253, 232, 216, 102, 159, 27, 249, 18, 98, 181, 144, 244, 251, 206, 159, 76, + 4, 197, 184, 109, 63, 12, 190, 200, 208, 229, 1, 73, 159, 27, 7, 228, 95, 219, 166, 157, 155, 60, 27, 238, 4, 195, + 71, 211, 179, 168, 202, 67, 239, 98, 209, 27, 239, 246, 218, 106, 67, 139, 48, 104, 27, 129, 208, 27, 186, 78, + 202, 162, 72, 255, 75, 136, 54, 129, 86, 203, 146, 28, 134, 147, 156, 100, 255, 255, 27, 38, 196, 195, 53, 34, + 140, 212, 127, 216, 102, 159, 27, 108, 87, 245, 229, 25, 118, 242, 15, 128, 255, 27, 13, 126, 57, 51, 84, 100, 16, + 52, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1799, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4087043670501355570" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4092c0a2b77cfb3d036f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d020d8ad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7417d08da4244b5474effd96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf56f5503148beaf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab7f925c101ff587862e12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4654483320583674183" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10046355761899904604" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13161421989870693475" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7745954106774156957" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5940875623456745959" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13926597924959721946" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9351679292465393186" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "509d8a02321703" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17984411094903125193" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7f59573d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15280130600984513763" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d47f7beae23b9d0e" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "374b3d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1339590445122226039" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0879510093b5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11344189097594198768" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd85f9b6d27bebc0a6a6727e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c96" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f54a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17418368621180472736" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc112d5b39cf91eb04aad760" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13982796796652934424" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1368764214625857249" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d209" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5552598852668293399" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13946116361946988930" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7910727063685542471" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58669f65abdd03" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9208464398411875608" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13585270757555199090" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b38b8189071bdf032bf4a4092c0a2b77cfb3d036f44d020d8ad4c7417d08da4244b5474effd9648cf56f5503148beaf4bab7f925c101ff587862e121b40980beb685ed947ff80d8669f1b8b6bd3566b3e1e5c9fd8669f1bb6a6c3914d41ec639f1b6b7f283864c0769d1b52723ae746eaa9e71bc1453706c6ea99da1b81c7d6c4e8c6ae22ffff47509d8a02321703ffffd8669f1bf995769af64b74c99f9f447f59573d1bd40dedd2f1420ce348d47f7beae23b9d0effa0bf43374b3d1b12972e699204877747a0879510093b5c1b9d6ea7e152f61af04cbd85f9b6d27bebc0a6a6727e41ea42c7bd423c9642f54a1bf1ba79f97845cda04cfc112d5b39cf91eb04aad7601bc20cdf9a3ef7d518ffbf1b12fed3cd1a0a6ee142d2091b4d0ecb3cd18901171bc18a8ef1061d01821b6dc88c5a020bb2474758669f65abdd031b7fcb0994f22bc5181bbc8893c6b1945c72ffffffff", + "cborBytes": [ + 159, 27, 56, 184, 24, 144, 113, 189, 240, 50, 191, 74, 64, 146, 192, 162, 183, 124, 251, 61, 3, 111, 68, 208, 32, + 216, 173, 76, 116, 23, 208, 141, 164, 36, 75, 84, 116, 239, 253, 150, 72, 207, 86, 245, 80, 49, 72, 190, 175, 75, + 171, 127, 146, 92, 16, 31, 245, 135, 134, 46, 18, 27, 64, 152, 11, 235, 104, 94, 217, 71, 255, 128, 216, 102, 159, + 27, 139, 107, 211, 86, 107, 62, 30, 92, 159, 216, 102, 159, 27, 182, 166, 195, 145, 77, 65, 236, 99, 159, 27, 107, + 127, 40, 56, 100, 192, 118, 157, 27, 82, 114, 58, 231, 70, 234, 169, 231, 27, 193, 69, 55, 6, 198, 234, 153, 218, + 27, 129, 199, 214, 196, 232, 198, 174, 34, 255, 255, 71, 80, 157, 138, 2, 50, 23, 3, 255, 255, 216, 102, 159, 27, + 249, 149, 118, 154, 246, 75, 116, 201, 159, 159, 68, 127, 89, 87, 61, 27, 212, 13, 237, 210, 241, 66, 12, 227, 72, + 212, 127, 123, 234, 226, 59, 157, 14, 255, 160, 191, 67, 55, 75, 61, 27, 18, 151, 46, 105, 146, 4, 135, 119, 71, + 160, 135, 149, 16, 9, 59, 92, 27, 157, 110, 167, 225, 82, 246, 26, 240, 76, 189, 133, 249, 182, 210, 123, 235, + 192, 166, 166, 114, 126, 65, 234, 66, 199, 189, 66, 60, 150, 66, 245, 74, 27, 241, 186, 121, 249, 120, 69, 205, + 160, 76, 252, 17, 45, 91, 57, 207, 145, 235, 4, 170, 215, 96, 27, 194, 12, 223, 154, 62, 247, 213, 24, 255, 191, + 27, 18, 254, 211, 205, 26, 10, 110, 225, 66, 210, 9, 27, 77, 14, 203, 60, 209, 137, 1, 23, 27, 193, 138, 142, 241, + 6, 29, 1, 130, 27, 109, 200, 140, 90, 2, 11, 178, 71, 71, 88, 102, 159, 101, 171, 221, 3, 27, 127, 203, 9, 148, + 242, 43, 197, 24, 27, 188, 136, 147, 198, 177, 148, 92, 114, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1800, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fb03400051ab01061125" + } + ] + }, + "cborHex": "9f4afb03400051ab01061125ff", + "cborBytes": [159, 74, 251, 3, 64, 0, 81, 171, 1, 6, 17, 37, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1801, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13920398845329111254" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1aa93b765981bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d97734" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22414fcbda1abe86" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15541108608208108943" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3489fbec4f38d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4c56b422c2e73c4b4ebc6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36ce570b33657c98f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e8cb476a5d405" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17429532021891186334" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9672518b864c54f723352d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2a4a8d0dfcb52b257" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6085068704528561661" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9424243939652598941" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17185729508820927873" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2980094725072879365" + } + }, + { + "_tag": "ByteArray", + "bytearray": "144c0b1edd75f1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15975587990076319073" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17270910927854868605" + } + } + ] + }, + "cborHex": "9fd8669f1bc12f30ff139978d69fbf471aa93b765981bd43d977344822414fcbda1abe861bd7ad1bf058027d8f473489fbec4f38d34bd4c56b422c2e73c4b4ebc64936ce570b33657c98f6417b474e8cb476a5d4051bf1e223073e1ebe9e4b9672518b864c54f723352d49b2a4a8d0dfcb52b257ffd8669f1b547281bf274575fd9f1b82c9a3ee6b9efc9d1bee7ff9ef333845811b295b6c5cfcfbff0547144c0b1edd75f11bddb4b0a27a7ee561ffffffff1befae99fbd233987dff", + "cborBytes": [ + 159, 216, 102, 159, 27, 193, 47, 48, 255, 19, 153, 120, 214, 159, 191, 71, 26, 169, 59, 118, 89, 129, 189, 67, + 217, 119, 52, 72, 34, 65, 79, 203, 218, 26, 190, 134, 27, 215, 173, 27, 240, 88, 2, 125, 143, 71, 52, 137, 251, + 236, 79, 56, 211, 75, 212, 197, 107, 66, 44, 46, 115, 196, 180, 235, 198, 73, 54, 206, 87, 11, 51, 101, 124, 152, + 246, 65, 123, 71, 78, 140, 180, 118, 165, 212, 5, 27, 241, 226, 35, 7, 62, 30, 190, 158, 75, 150, 114, 81, 139, + 134, 76, 84, 247, 35, 53, 45, 73, 178, 164, 168, 208, 223, 203, 82, 178, 87, 255, 216, 102, 159, 27, 84, 114, 129, + 191, 39, 69, 117, 253, 159, 27, 130, 201, 163, 238, 107, 158, 252, 157, 27, 238, 127, 249, 239, 51, 56, 69, 129, + 27, 41, 91, 108, 92, 252, 251, 255, 5, 71, 20, 76, 11, 30, 221, 117, 241, 27, 221, 180, 176, 162, 122, 126, 229, + 97, 255, 255, 255, 255, 27, 239, 174, 153, 251, 210, 51, 152, 125, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1802, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9205280894587336525" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3999937537467799663" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5eb96d6d28" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12177605390850657552" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3c0e6bb9bc043e2ecc143f" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2314632310775975331" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1453016444838449332" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1024485b1064a69dc2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1143654110982593714" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c66c3c98824" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10528646777258993867" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e432e48da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7739179619689065591" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61f21bad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12934835959388076543" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bfad80a7dc32b2" + }, + { + "_tag": "ByteArray", + "bytearray": "e9f495ebcabcb5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9629869707083242800" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ece56fae430153d567e68f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd28cee375" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14255203521643260663" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1342050811892894039" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20cddb06deb699453c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1616339279234338758" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6666880634687770078" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3597833194296675265" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10755865379668404990" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4970884730720778273" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17181621808779690129" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5841036921156355484" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15961457383028562229" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9251407889700463503" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17305575181028925434" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15426252482500025668" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f4b742a468d8f3b2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11113828520528783499" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dcfc8c87b9b9eec8b93c4c99" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "464364530595768075" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1346ad286e00ebe9583d801a" + }, + { + "_tag": "ByteArray", + "bytearray": "e0f7c883f85196346b2a691e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13897793677150016546" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6622447274461091197" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7959c9c74b3b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12031378459743962479" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6639191874939812178" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12296497048758467110" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15734387237297465702" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16958998908547683152" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6359481888726246688" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17734851217056875396" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0609702f1e6c145e61a8" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "062aface2f46fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09c3addc6d9d457e1a34" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22e70f14387b5a7b4f98" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2184b2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c582fab6c77455e0ff1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa11cb18c414" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14615868090220366189" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1faa0a9c4061b1f1bf164" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9936743909630419070" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13322834445782607776" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b7fbfba33b391774dd8669f1b3782a1ff6c84d86f9f9f455eb96d6d281ba8ff8b9550890d104b3c0e6bb9bc043e2ecc143fffffff1b201f39d2bd718da3d8669f1b142a26c2176590b49fbf491024485b1064a69dc21b0fdf135ac7085cb2464c66c3c988241b921d4475f41568cb454e432e48da1b6b6716dc34826c774461f21bad1bb381c4c5fb4679ffff9f47bfad80a7dc32b247e9f495ebcabcb51b85a42b7a33fddd304bece56fae430153d567e68fffbf45cd28cee3751bc5d4a8135c71aaf7ffbf1b129fec1a596689574920cddb06deb699453c1b166e6402bf460fc61b5c85849d567ecdde1b31ee123a63298bc11b95448293670eaafe1b44fc2153620678211bee716200c16b00911b510f8821f577459c1bdd827cec24f419351b80639a75a9d7a38f1bf029c0f0330b9ffaffd8669f1bd6150ee6aae6dd449f48f4b742a468d8f3b21b9a3c4027e4b9288b414cffffffff9fbf42a4e34cdcfc8c87b9b9eec8b93c4c99ff9f1b0671c1148c73a70b4c1346ad286e00ebe9583d801a4ce0f7c883f85196346b2a691e1bc0dee1b7383254221b5be7a8b57a01d57dff467959c9c74b3bbf1ba6f80af6d353456f1b5c2325d5957279521baaa5eeea8ce33a261bda5bc5d3f58e29661beb5a77a79a38d3501b58416b15750ee5201bf61ed937f91443844a0609702f1e6c145e61a8ffbf47062aface2f46fd4a09c3addc6d9d457e1a344a22e70f14387b5a7b4f98432184b24246bc4a5c582fab6c77455e0ff146aa11cb18c4141bcad5fe97018d496d4bf1faa0a9c4061b1f1bf1641b89e667f04d8c207e41f51bb8e437574e35e7a0ffffff", + "cborBytes": [ + 159, 27, 127, 191, 186, 51, 179, 145, 119, 77, 216, 102, 159, 27, 55, 130, 161, 255, 108, 132, 216, 111, 159, 159, + 69, 94, 185, 109, 109, 40, 27, 168, 255, 139, 149, 80, 137, 13, 16, 75, 60, 14, 107, 185, 188, 4, 62, 46, 204, 20, + 63, 255, 255, 255, 27, 32, 31, 57, 210, 189, 113, 141, 163, 216, 102, 159, 27, 20, 42, 38, 194, 23, 101, 144, 180, + 159, 191, 73, 16, 36, 72, 91, 16, 100, 166, 157, 194, 27, 15, 223, 19, 90, 199, 8, 92, 178, 70, 76, 102, 195, 201, + 136, 36, 27, 146, 29, 68, 117, 244, 21, 104, 203, 69, 78, 67, 46, 72, 218, 27, 107, 103, 22, 220, 52, 130, 108, + 119, 68, 97, 242, 27, 173, 27, 179, 129, 196, 197, 251, 70, 121, 255, 255, 159, 71, 191, 173, 128, 167, 220, 50, + 178, 71, 233, 244, 149, 235, 202, 188, 181, 27, 133, 164, 43, 122, 51, 253, 221, 48, 75, 236, 229, 111, 174, 67, + 1, 83, 213, 103, 230, 143, 255, 191, 69, 205, 40, 206, 227, 117, 27, 197, 212, 168, 19, 92, 113, 170, 247, 255, + 191, 27, 18, 159, 236, 26, 89, 102, 137, 87, 73, 32, 205, 219, 6, 222, 182, 153, 69, 60, 27, 22, 110, 100, 2, 191, + 70, 15, 198, 27, 92, 133, 132, 157, 86, 126, 205, 222, 27, 49, 238, 18, 58, 99, 41, 139, 193, 27, 149, 68, 130, + 147, 103, 14, 170, 254, 27, 68, 252, 33, 83, 98, 6, 120, 33, 27, 238, 113, 98, 0, 193, 107, 0, 145, 27, 81, 15, + 136, 33, 245, 119, 69, 156, 27, 221, 130, 124, 236, 36, 244, 25, 53, 27, 128, 99, 154, 117, 169, 215, 163, 143, + 27, 240, 41, 192, 240, 51, 11, 159, 250, 255, 216, 102, 159, 27, 214, 21, 14, 230, 170, 230, 221, 68, 159, 72, + 244, 183, 66, 164, 104, 216, 243, 178, 27, 154, 60, 64, 39, 228, 185, 40, 139, 65, 76, 255, 255, 255, 255, 159, + 191, 66, 164, 227, 76, 220, 252, 140, 135, 185, 185, 238, 200, 185, 60, 76, 153, 255, 159, 27, 6, 113, 193, 20, + 140, 115, 167, 11, 76, 19, 70, 173, 40, 110, 0, 235, 233, 88, 61, 128, 26, 76, 224, 247, 200, 131, 248, 81, 150, + 52, 107, 42, 105, 30, 27, 192, 222, 225, 183, 56, 50, 84, 34, 27, 91, 231, 168, 181, 122, 1, 213, 125, 255, 70, + 121, 89, 201, 199, 75, 59, 191, 27, 166, 248, 10, 246, 211, 83, 69, 111, 27, 92, 35, 37, 213, 149, 114, 121, 82, + 27, 170, 165, 238, 234, 140, 227, 58, 38, 27, 218, 91, 197, 211, 245, 142, 41, 102, 27, 235, 90, 119, 167, 154, + 56, 211, 80, 27, 88, 65, 107, 21, 117, 14, 229, 32, 27, 246, 30, 217, 55, 249, 20, 67, 132, 74, 6, 9, 112, 47, 30, + 108, 20, 94, 97, 168, 255, 191, 71, 6, 42, 250, 206, 47, 70, 253, 74, 9, 195, 173, 220, 109, 157, 69, 126, 26, 52, + 74, 34, 231, 15, 20, 56, 123, 90, 123, 79, 152, 67, 33, 132, 178, 66, 70, 188, 74, 92, 88, 47, 171, 108, 119, 69, + 94, 15, 241, 70, 170, 17, 203, 24, 196, 20, 27, 202, 213, 254, 151, 1, 141, 73, 109, 75, 241, 250, 160, 169, 196, + 6, 27, 31, 27, 241, 100, 27, 137, 230, 103, 240, 77, 140, 32, 126, 65, 245, 27, 184, 228, 55, 87, 78, 53, 231, + 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1803, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "26dc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10525940294005822685" + } + } + ] + } + ] + }, + "cborHex": "9f4226dcd8669f1bfffffffffffffffc9f1b9213a6edb73014ddffffff", + "cborBytes": [ + 159, 66, 38, 220, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 27, 146, 19, 166, 237, 183, 48, + 20, 221, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1804, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1294522366917514553" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "324917711125611789" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3139620042873573294" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2201" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5337411204409897561" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17831479080492395356" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9849342781392362016" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11745689614707397144" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12495820626707268624" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b11f7113be9ea95391b048256efd0e0050d1b2b922bcb692d0fae4222011b4a124b362b0ab2591bf77623bf9c8eeb5c1b88afe5135bf31a201ba301127926a112181bad6a12a77fe2c4100bffff", + "cborBytes": [ + 159, 191, 27, 17, 247, 17, 59, 233, 234, 149, 57, 27, 4, 130, 86, 239, 208, 224, 5, 13, 27, 43, 146, 43, 203, 105, + 45, 15, 174, 66, 34, 1, 27, 74, 18, 75, 54, 43, 10, 178, 89, 27, 247, 118, 35, 191, 156, 142, 235, 92, 27, 136, + 175, 229, 19, 91, 243, 26, 32, 27, 163, 1, 18, 121, 38, 161, 18, 24, 27, 173, 106, 18, 167, 127, 226, 196, 16, 11, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1805, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "17de" + } + ] + }, + "cborHex": "9f4217deff", + "cborBytes": [159, 66, 23, 222, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1806, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3099439680908971139" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a606" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15027810429809442565" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5418491247444845319" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04dc49f5" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "56bc1173b8a3be9b2a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "951794341805985664" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1778286899370717244" + } + }, + { + "_tag": "ByteArray", + "bytearray": "78840b99a6890a740cb021" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf0d1bfffffffffffffff51b2b036bf7df544c8342a606ff0fff1bd08d81f714b3bf05d87e9fd8669f1b4b325914c68363079f4404dc49f5ffff809f4956bc1173b8a3be9b2a1b0d3573e93a928f8041cc1b18adbe8361b8f03c4b78840b99a6890a740cb021ffffff", + "cborBytes": [ + 159, 159, 191, 13, 27, 255, 255, 255, 255, 255, 255, 255, 245, 27, 43, 3, 107, 247, 223, 84, 76, 131, 66, 166, 6, + 255, 15, 255, 27, 208, 141, 129, 247, 20, 179, 191, 5, 216, 126, 159, 216, 102, 159, 27, 75, 50, 89, 20, 198, 131, + 99, 7, 159, 68, 4, 220, 73, 245, 255, 255, 128, 159, 73, 86, 188, 17, 115, 184, 163, 190, 155, 42, 27, 13, 53, + 115, 233, 58, 146, 143, 128, 65, 204, 27, 24, 173, 190, 131, 97, 184, 240, 60, 75, 120, 132, 11, 153, 166, 137, + 10, 116, 12, 176, 33, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1807, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1271811677603874328" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fa2560a101259a88e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12935921090134497866" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11738304740743220576" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2241086bfa42cd6b11ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12587250829228703230" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b486b2cf9ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1689948804846655108" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a2ddeec82c9798c7ba" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a616a52139973cf060" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "583808976581342870" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fbf1b11a661fb80c5c618491fa2560a101259a88e1bb3859fb1abf35a4a1ba2e6d5f831488d604a2241086bfa42cd6b11ea1baeaee5f066eafdfe468b486b2cf9ce1b1773e77bf97b1684ff9fd8669f1bffffffffffffffef9f49a2ddeec82c9798c7baffff49a616a52139973cf060ff1b081a1b2bc9d0b6969f80ffff", + "cborBytes": [ + 159, 191, 27, 17, 166, 97, 251, 128, 197, 198, 24, 73, 31, 162, 86, 10, 16, 18, 89, 168, 142, 27, 179, 133, 159, + 177, 171, 243, 90, 74, 27, 162, 230, 213, 248, 49, 72, 141, 96, 74, 34, 65, 8, 107, 250, 66, 205, 107, 17, 234, + 27, 174, 174, 229, 240, 102, 234, 253, 254, 70, 139, 72, 107, 44, 249, 206, 27, 23, 115, 231, 123, 249, 123, 22, + 132, 255, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 73, 162, 221, 238, 200, 44, 151, + 152, 199, 186, 255, 255, 73, 166, 22, 165, 33, 57, 151, 60, 240, 96, 255, 27, 8, 26, 27, 43, 201, 208, 182, 150, + 159, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1808, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "61c5ed9c842ba7b798a890" + } + ] + }, + "cborHex": "9f4b61c5ed9c842ba7b798a890ff", + "cborBytes": [159, 75, 97, 197, 237, 156, 132, 43, 167, 183, 152, 168, 144, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1809, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4848969348095083478" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0165f8" + }, + { + "_tag": "ByteArray", + "bytearray": "cdfc02fef9" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b728" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "038d1075" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7679046185293009357" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed" + }, + { + "_tag": "ByteArray", + "bytearray": "f67253635acb59" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e9ac107e45a4d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12974072738609125116" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4221491674158332898" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6113073084550452610" + } + }, + { + "_tag": "ByteArray", + "bytearray": "07bcf9640701f45d206c" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14383781370535153066" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12109272833870967270" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10681193778829139081" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b5c8fe11f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4839066211389190859" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "763110bfec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4938743195324244417" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f661e237bc1e67" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "928baa78" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14113006091347602636" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b4cbb4d4b371758de56e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4956763841058653474" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5654a22c" + } + ] + }, + "cborHex": "9fd8669f1b434affee5ff703d69f430165f845cdfc02fef9ffffa0d905069fbf1bfffffffffffffff942b72844038d10751bfffffffffffffffc41da0bffd8669f1b6a9173d1f83551cd9f41ed47f67253635acb59ffff9f47e9ac107e45a4d11bb40d2a6a8ae056fc1b3a95c04fac79fbe21b54d5ff94faa195824a07bcf9640701f45d206cffffd8669f1bc79d74f2ada10daa9fbf1ba80cc77c172ab1e61b943b392684391c89451b5c8fe11f1b4327d114ae72b2cb45763110bfec1b4489f0c5022de1c147f661e237bc1e6744928baa78ffd8669f1bc3db784423b2accc9f4ab4cbb4d4b371758de56effff1b44c9f6738dcd4522ffff445654a22cff", + "cborBytes": [ + 159, 216, 102, 159, 27, 67, 74, 255, 238, 95, 247, 3, 214, 159, 67, 1, 101, 248, 69, 205, 252, 2, 254, 249, 255, + 255, 160, 217, 5, 6, 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 249, 66, 183, 40, 68, 3, 141, 16, 117, 27, + 255, 255, 255, 255, 255, 255, 255, 252, 65, 218, 11, 255, 216, 102, 159, 27, 106, 145, 115, 209, 248, 53, 81, 205, + 159, 65, 237, 71, 246, 114, 83, 99, 90, 203, 89, 255, 255, 159, 71, 233, 172, 16, 126, 69, 164, 209, 27, 180, 13, + 42, 106, 138, 224, 86, 252, 27, 58, 149, 192, 79, 172, 121, 251, 226, 27, 84, 213, 255, 148, 250, 161, 149, 130, + 74, 7, 188, 249, 100, 7, 1, 244, 93, 32, 108, 255, 255, 216, 102, 159, 27, 199, 157, 116, 242, 173, 161, 13, 170, + 159, 191, 27, 168, 12, 199, 124, 23, 42, 177, 230, 27, 148, 59, 57, 38, 132, 57, 28, 137, 69, 27, 92, 143, 225, + 31, 27, 67, 39, 209, 20, 174, 114, 178, 203, 69, 118, 49, 16, 191, 236, 27, 68, 137, 240, 197, 2, 45, 225, 193, + 71, 246, 97, 226, 55, 188, 30, 103, 68, 146, 139, 170, 120, 255, 216, 102, 159, 27, 195, 219, 120, 68, 35, 178, + 172, 204, 159, 74, 180, 203, 180, 212, 179, 113, 117, 141, 229, 110, 255, 255, 27, 68, 201, 246, 115, 141, 205, + 69, 34, 255, 255, 68, 86, 84, 162, 44, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1810, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "993b5b3a7a2c7827" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8281871207294307260" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6402f35a488a1adca12" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6554ecc44" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b937bfec00eec90b23ff8b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7639245113222386274" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d6780a1677" + }, + { + "_tag": "ByteArray", + "bytearray": "50b5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3357518056326207424" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2639301471414787466" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce56535a9e8900df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b510994710f9e15c69bd8e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a4aeb74d76e29b59613ef43" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6510996689956602565" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13182314265177229402" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf48993b5b3a7a2c78271b72ef1dfbda500bbc4aa6402f35a488a1adca1245a6554ecc444bb937bfec00eec90b23ff8b1b6a040cf4bdc25262ff45d6780a16774250b5d8669f1b2e984ce2224897c09fbf1b24a0aeb462d81d8a48ce56535a9e8900df4bb510994710f9e15c69bd8e4c5a4aeb74d76e29b59613ef43ffa0ffff9f9f1b5a5bb4fe269b82c51bb6f0fcfb3574085affffff", + "cborBytes": [ + 159, 191, 72, 153, 59, 91, 58, 122, 44, 120, 39, 27, 114, 239, 29, 251, 218, 80, 11, 188, 74, 166, 64, 47, 53, + 164, 136, 161, 173, 202, 18, 69, 166, 85, 78, 204, 68, 75, 185, 55, 191, 236, 0, 238, 201, 11, 35, 255, 139, 27, + 106, 4, 12, 244, 189, 194, 82, 98, 255, 69, 214, 120, 10, 22, 119, 66, 80, 181, 216, 102, 159, 27, 46, 152, 76, + 226, 34, 72, 151, 192, 159, 191, 27, 36, 160, 174, 180, 98, 216, 29, 138, 72, 206, 86, 83, 90, 158, 137, 0, 223, + 75, 181, 16, 153, 71, 16, 249, 225, 92, 105, 189, 142, 76, 90, 74, 235, 116, 215, 110, 41, 181, 150, 19, 239, 67, + 255, 160, 255, 255, 159, 159, 27, 90, 91, 180, 254, 38, 155, 130, 197, 27, 182, 240, 252, 251, 53, 116, 8, 90, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1811, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "059037ccb24011d4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4383741991917516122" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0763" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6440987090440171839" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5159984353485861901" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13323539497615836283" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6767962410094712477" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17482198726052306692" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2a25b7cb8a134f5caf98" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3118232023123293942" + } + }, + { + "_tag": "ByteArray", + "bytearray": "97eb50c351" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8067934519762247247" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10496997914704526574" + } + }, + { + "_tag": "ByteArray", + "bytearray": "859574e2" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6749004331290173508" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "76ccf5ef" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "017744019e67" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5beaae5abab6e0b0583e11" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc52eac991c865cf5e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b346d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3763701940106562546" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "720919c02dec05adc5b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da87b97cfb633a2dfd4f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c2a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f039562042d67bb2442d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9637386566866906355" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13013436247943710947" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16037843000710140159" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f86580d979e5" + }, + { + "_tag": "ByteArray", + "bytearray": "45c2285879d30b" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4ab54cf691079f81e9eb" + }, + { + "_tag": "ByteArray", + "bytearray": "918d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16711658336933279134" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5b33e40d259d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16525365163024877581" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1997015495743526161" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a59c9bdbfd5f537" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4893881713706380095" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13106531849386737114" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6095024405508465763" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6bb22ca4836d8f472472e16c" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12747903534091991723" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11614149777751925536" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16587164386296971665" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "443159080049063477" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6179601180983252625" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10320625403168678750" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e345e140011be7e195f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10949569679538962811" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "994a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3104" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f9524d5072bf86715a92257" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8c8d9971d997e5eb78eb087e" + } + ] + }, + "cborHex": "9f9f48059037ccb24011d4bf1b3cd62e1d9734f55a4207631b5962fba20890313f1b479bf26e4419340d1bb8e6b894fa47447b1b5deca1f42ae4569dffd8669f1bf29d3f1ddf225f049f4a2a25b7cb8a134f5caf981b2b462f810182f6f64597eb50c3511b6ff70fb3318a5e4fffff1b91acd3fce9fabcee44859574e2ffd8669f1b5da947ae7a1fa0449f4476ccf5efbf46017744019e674b5beaae5abab6e0b0583e11413649fc52eac991c865cf5e434b346d1b343b5af93c800bf24a720919c02dec05adc5b34ada87b97cfb633a2dfd4f428c2a4af039562042d67bb2442dffa0ffffd8669f1b85bee00581392cf39f1bb4990351c1e088e3d8669f1bde91dd3cacd010ff9f46f86580d979e54745c2285879d30bffff9f4a4ab54cf691079f81e9eb42918dffd8669f1be7ebbcb71c9a759e9f465b33e40d259d1be555e40f85b6880d1b1bb6d30342be5511ffff9f489a59c9bdbfd5f5371b43ea8f7d5e3fab3f1bb5e3c146900a3dda1b5495e0676bab24634c6bb22ca4836d8f472472e16cffffff9f1bb0e9a6b9147ffaabd8669f1ba12dbfb03f15e3209f1be6317220743dc191ffffbf1b06266ad5d95036351b55c25a887e1756911b8f3a3a1f87bde35e4a2e345e140011be7e195f1b97f4af9c384ec17b42994a4231044c3f9524d5072bf86715a92257ffff4c8c8d9971d997e5eb78eb087eff", + "cborBytes": [ + 159, 159, 72, 5, 144, 55, 204, 178, 64, 17, 212, 191, 27, 60, 214, 46, 29, 151, 52, 245, 90, 66, 7, 99, 27, 89, + 98, 251, 162, 8, 144, 49, 63, 27, 71, 155, 242, 110, 68, 25, 52, 13, 27, 184, 230, 184, 148, 250, 71, 68, 123, 27, + 93, 236, 161, 244, 42, 228, 86, 157, 255, 216, 102, 159, 27, 242, 157, 63, 29, 223, 34, 95, 4, 159, 74, 42, 37, + 183, 203, 138, 19, 79, 92, 175, 152, 27, 43, 70, 47, 129, 1, 130, 246, 246, 69, 151, 235, 80, 195, 81, 27, 111, + 247, 15, 179, 49, 138, 94, 79, 255, 255, 27, 145, 172, 211, 252, 233, 250, 188, 238, 68, 133, 149, 116, 226, 255, + 216, 102, 159, 27, 93, 169, 71, 174, 122, 31, 160, 68, 159, 68, 118, 204, 245, 239, 191, 70, 1, 119, 68, 1, 158, + 103, 75, 91, 234, 174, 90, 186, 182, 224, 176, 88, 62, 17, 65, 54, 73, 252, 82, 234, 201, 145, 200, 101, 207, 94, + 67, 75, 52, 109, 27, 52, 59, 90, 249, 60, 128, 11, 242, 74, 114, 9, 25, 192, 45, 236, 5, 173, 197, 179, 74, 218, + 135, 185, 124, 251, 99, 58, 45, 253, 79, 66, 140, 42, 74, 240, 57, 86, 32, 66, 214, 123, 178, 68, 45, 255, 160, + 255, 255, 216, 102, 159, 27, 133, 190, 224, 5, 129, 57, 44, 243, 159, 27, 180, 153, 3, 81, 193, 224, 136, 227, + 216, 102, 159, 27, 222, 145, 221, 60, 172, 208, 16, 255, 159, 70, 248, 101, 128, 217, 121, 229, 71, 69, 194, 40, + 88, 121, 211, 11, 255, 255, 159, 74, 74, 181, 76, 246, 145, 7, 159, 129, 233, 235, 66, 145, 141, 255, 216, 102, + 159, 27, 231, 235, 188, 183, 28, 154, 117, 158, 159, 70, 91, 51, 228, 13, 37, 157, 27, 229, 85, 228, 15, 133, 182, + 136, 13, 27, 27, 182, 211, 3, 66, 190, 85, 17, 255, 255, 159, 72, 154, 89, 201, 189, 191, 213, 245, 55, 27, 67, + 234, 143, 125, 94, 63, 171, 63, 27, 181, 227, 193, 70, 144, 10, 61, 218, 27, 84, 149, 224, 103, 107, 171, 36, 99, + 76, 107, 178, 44, 164, 131, 109, 143, 71, 36, 114, 225, 108, 255, 255, 255, 159, 27, 176, 233, 166, 185, 20, 127, + 250, 171, 216, 102, 159, 27, 161, 45, 191, 176, 63, 21, 227, 32, 159, 27, 230, 49, 114, 32, 116, 61, 193, 145, + 255, 255, 191, 27, 6, 38, 106, 213, 217, 80, 54, 53, 27, 85, 194, 90, 136, 126, 23, 86, 145, 27, 143, 58, 58, 31, + 135, 189, 227, 94, 74, 46, 52, 94, 20, 0, 17, 190, 126, 25, 95, 27, 151, 244, 175, 156, 56, 78, 193, 123, 66, 153, + 74, 66, 49, 4, 76, 63, 149, 36, 213, 7, 43, 248, 103, 21, 169, 34, 87, 255, 255, 76, 140, 141, 153, 113, 217, 151, + 229, 235, 120, 235, 8, 126, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1812, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d4c0ec32076" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "648716" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b93a30ca7039bbaf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "826d9b8ec2292c75d2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb3146d1b642" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b58b04885d9c9ab27da7" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6088212420236427683" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15891717868580097277" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "74c3d5984391c28394" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34b18a33eacf" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17221282695861341650" + } + } + ] + } + ] + }, + "cborHex": "9fbf468d4c0ec3207643648716ff1bffffffffffffffef9fbf48b93a30ca7039bbaf49826d9b8ec2292c75d246fb3146d1b6424ab58b04885d9c9ab27da7ffd8669f1b547dacf0815041a380ff1bdc8ab9341b71ccfdbf4974c3d5984391c283944634b18a33eacfffff9f1beefe495e9f658dd2ffff", + "cborBytes": [ + 159, 191, 70, 141, 76, 14, 195, 32, 118, 67, 100, 135, 22, 255, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, + 191, 72, 185, 58, 48, 202, 112, 57, 187, 175, 73, 130, 109, 155, 142, 194, 41, 44, 117, 210, 70, 251, 49, 70, 209, + 182, 66, 74, 181, 139, 4, 136, 93, 156, 154, 178, 125, 167, 255, 216, 102, 159, 27, 84, 125, 172, 240, 129, 80, + 65, 163, 128, 255, 27, 220, 138, 185, 52, 27, 113, 204, 253, 191, 73, 116, 195, 213, 152, 67, 145, 194, 131, 148, + 70, 52, 177, 138, 51, 234, 207, 255, 255, 159, 27, 238, 254, 73, 94, 159, 101, 141, 210, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1813, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "679945510256171543" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12998573812483248183" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8d907cce321c091a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2839526131068835508" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11192678038776256298" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4478214997588590203" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9061d0b11c97665c0a" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d83e604c64147e0367d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2615954241011286723" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9107b78660938b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5403341670782329691" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6862115276657815852" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10525091465999585505" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5669652668430983803" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8820e75a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15954874637885141134" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e972d9" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ccfcc3b01062be624733e0c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "185248784512072401" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55e35ce03f95aa35" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4968099834199041978" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3271799714511543708" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11550080107726807039" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4132847021609998322" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11826942953474564461" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7491059142182806536" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1da6dfe893e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10957232295160722610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "373ce6a7c7ace2124167a958" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12640643026176876657" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3ba5de26a38988a87dfe3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15663451992336607621" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17979657207388990087" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16197337105758251221" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17882064537002207573" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b84c73a30a94" + }, + { + "_tag": "ByteArray", + "bytearray": "eb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "521528429999528585" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15134178401870066545" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1478124876373083439" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e864cc34e9fde9562296" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2679615961555407644" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10595259451253070031" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1fbc520" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10820326162601410896" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14081506628871859519" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4348246608851645974" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15198079707338049995" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11351353879947356891" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "282e6680387c0be9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49f6ef462211a297f69aa1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29c94d88b00163148149b23b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7054146641031558205" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "409404661095143158" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9960424490715096508" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "601117692398260099" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6296079283539374499" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7072162186853336656" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3590" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9333971111348328226" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16593781892198306577" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12355244778881645682" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5435934962740323507" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b096fa6d6cd70da179f1bb464360357c25037488d907cce321c091affffbf1b276805f8c4cc16b41b9b54615ffa93172a1b3e25d0d04f183e7b499061d0b11c97665c0affbf4a8d83e604c64147e0367d1b244dbc85b42782c348f9107b78660938b81b4afc869f170be35bffff9fd8669f1b5f3b217cb0f8712c9f1b9210a2ec8b6690e11b4eaea71015aca27bffff448820e75affd8669f1bdd6b19f35b08708e9f9f43e972d9ffbf4c1ccfcc3b01062be624733e0c1b029222c9bbea3ad14855e35ce03f95aa351b44f23c7a221c67baffbf1b2d67c4816faf5d9c1ba04a20a9bc5c9fff1b395ad2782a1857f21ba421bdf450a9216d1b67f59699b93fa40846a1da6dfe893e1b980fe8b7f27e34b24c373ce6a7c7ace2124167a9581baf6c95dbfbcaa0714bc3ba5de26a38988a87dfe31bd95fc299379ba9851bf98492f845b66a87ffffff9fd8669f1be0c88047cff968d59f1bf829daf402a0695546b84c73a30a9441eb1b073cd7580a639a891bd20767127adab371ffff9f1b14835abe5de2c52f4ae864cc34e9fde95622961b252fe88512fa131cffbf1b9309ec55b70a18cf44c1fbc5201b96298550fbb9015041d61bc36b8fac04372d3f1b3c581340b46636161bd2ea6cf88ff509cb1b9d881c363603aadbffbf48282e6680387c0be94b49f6ef462211a297f69aa14c29c94d88b00163148149b23b1b61e55cfedc33743dffffbf1b05ae7f5ec1f716f61b8a3a894d3d2ca5bc1b0857995b3b99cf831b57602ac0150f71a31b62255e09fd57c6504235901b8188ed45b3acd7221be648f4b69cca13111bab76a5aa5e3d7c721b4b70520c3c4364b3ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 9, 111, 166, 214, 205, 112, 218, 23, 159, 27, 180, 100, 54, 3, 87, 194, 80, 55, 72, + 141, 144, 124, 206, 50, 28, 9, 26, 255, 255, 191, 27, 39, 104, 5, 248, 196, 204, 22, 180, 27, 155, 84, 97, 95, + 250, 147, 23, 42, 27, 62, 37, 208, 208, 79, 24, 62, 123, 73, 144, 97, 208, 177, 28, 151, 102, 92, 10, 255, 191, + 74, 141, 131, 230, 4, 198, 65, 71, 224, 54, 125, 27, 36, 77, 188, 133, 180, 39, 130, 195, 72, 249, 16, 123, 120, + 102, 9, 56, 184, 27, 74, 252, 134, 159, 23, 11, 227, 91, 255, 255, 159, 216, 102, 159, 27, 95, 59, 33, 124, 176, + 248, 113, 44, 159, 27, 146, 16, 162, 236, 139, 102, 144, 225, 27, 78, 174, 167, 16, 21, 172, 162, 123, 255, 255, + 68, 136, 32, 231, 90, 255, 216, 102, 159, 27, 221, 107, 25, 243, 91, 8, 112, 142, 159, 159, 67, 233, 114, 217, + 255, 191, 76, 28, 207, 204, 59, 1, 6, 43, 230, 36, 115, 62, 12, 27, 2, 146, 34, 201, 187, 234, 58, 209, 72, 85, + 227, 92, 224, 63, 149, 170, 53, 27, 68, 242, 60, 122, 34, 28, 103, 186, 255, 191, 27, 45, 103, 196, 129, 111, 175, + 93, 156, 27, 160, 74, 32, 169, 188, 92, 159, 255, 27, 57, 90, 210, 120, 42, 24, 87, 242, 27, 164, 33, 189, 244, + 80, 169, 33, 109, 27, 103, 245, 150, 153, 185, 63, 164, 8, 70, 161, 218, 109, 254, 137, 62, 27, 152, 15, 232, 183, + 242, 126, 52, 178, 76, 55, 60, 230, 167, 199, 172, 226, 18, 65, 103, 169, 88, 27, 175, 108, 149, 219, 251, 202, + 160, 113, 75, 195, 186, 93, 226, 106, 56, 152, 138, 135, 223, 227, 27, 217, 95, 194, 153, 55, 155, 169, 133, 27, + 249, 132, 146, 248, 69, 182, 106, 135, 255, 255, 255, 159, 216, 102, 159, 27, 224, 200, 128, 71, 207, 249, 104, + 213, 159, 27, 248, 41, 218, 244, 2, 160, 105, 85, 70, 184, 76, 115, 163, 10, 148, 65, 235, 27, 7, 60, 215, 88, 10, + 99, 154, 137, 27, 210, 7, 103, 18, 122, 218, 179, 113, 255, 255, 159, 27, 20, 131, 90, 190, 93, 226, 197, 47, 74, + 232, 100, 204, 52, 233, 253, 233, 86, 34, 150, 27, 37, 47, 232, 133, 18, 250, 19, 28, 255, 191, 27, 147, 9, 236, + 85, 183, 10, 24, 207, 68, 193, 251, 197, 32, 27, 150, 41, 133, 80, 251, 185, 1, 80, 65, 214, 27, 195, 107, 143, + 172, 4, 55, 45, 63, 27, 60, 88, 19, 64, 180, 102, 54, 22, 27, 210, 234, 108, 248, 143, 245, 9, 203, 27, 157, 136, + 28, 54, 54, 3, 170, 219, 255, 191, 72, 40, 46, 102, 128, 56, 124, 11, 233, 75, 73, 246, 239, 70, 34, 17, 162, 151, + 246, 154, 161, 76, 41, 201, 77, 136, 176, 1, 99, 20, 129, 73, 178, 59, 27, 97, 229, 92, 254, 220, 51, 116, 61, + 255, 255, 191, 27, 5, 174, 127, 94, 193, 247, 22, 246, 27, 138, 58, 137, 77, 61, 44, 165, 188, 27, 8, 87, 153, 91, + 59, 153, 207, 131, 27, 87, 96, 42, 192, 21, 15, 113, 163, 27, 98, 37, 94, 9, 253, 87, 198, 80, 66, 53, 144, 27, + 129, 136, 237, 69, 179, 172, 215, 34, 27, 230, 72, 244, 182, 156, 202, 19, 17, 27, 171, 118, 165, 170, 94, 61, + 124, 114, 27, 75, 112, 82, 12, 60, 67, 100, 179, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1814, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7fdb" + } + ] + }, + "cborHex": "9f427fdbff", + "cborBytes": [159, 66, 127, 219, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1815, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9578519590895245571" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "9333d464" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + ] + }, + "cborHex": "9fd905019fd8669f1b84edbcd1996e590380ff449333d464ff1bfffffffffffffff8ff", + "cborBytes": [ + 159, 217, 5, 1, 159, 216, 102, 159, 27, 132, 237, 188, 209, 153, 110, 89, 3, 128, 255, 68, 147, 51, 212, 100, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1816, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8695956638758799704" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13997166511639845816" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b93610ffbbc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "945063185105962777" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f52" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12187332981090047573" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccd4972f4aa8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "979aa2f7ff" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5927750062405466711" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "978273f9617124" + }, + { + "_tag": "ByteArray", + "bytearray": "3c1c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3360747899985790647" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16381641619039765551" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0e05800c60b75f99" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "96b63e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4c26ab58ac" + }, + { + "_tag": "ByteArray", + "bytearray": "ff0148" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16956361131622248033" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d7e234ad" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b78ae3e7d636b09581bc23fecc83c495bb8464b93610ffbbc1b0d1d89f5ae8a4719428f521ba9221ac66946565546ccd4972f4aa845979aa2f7ffffa0ffd8669f1b5243994672fa3a579f47978273f9617124423c1c9f1b2ea3c668b64b06b71be3574842449ec42fffffff480e05800c60b75f99d905079f9f4396b63e00ff454c26ab58ac43ff0148d8669f1beb51189c4d95ae619f44d7e234adffffffff", + "cborBytes": [ + 159, 159, 191, 27, 120, 174, 62, 125, 99, 107, 9, 88, 27, 194, 63, 236, 200, 60, 73, 91, 184, 70, 75, 147, 97, 15, + 251, 188, 27, 13, 29, 137, 245, 174, 138, 71, 25, 66, 143, 82, 27, 169, 34, 26, 198, 105, 70, 86, 85, 70, 204, + 212, 151, 47, 74, 168, 69, 151, 154, 162, 247, 255, 255, 160, 255, 216, 102, 159, 27, 82, 67, 153, 70, 114, 250, + 58, 87, 159, 71, 151, 130, 115, 249, 97, 113, 36, 66, 60, 28, 159, 27, 46, 163, 198, 104, 182, 75, 6, 183, 27, + 227, 87, 72, 66, 68, 158, 196, 47, 255, 255, 255, 72, 14, 5, 128, 12, 96, 183, 95, 153, 217, 5, 7, 159, 159, 67, + 150, 182, 62, 0, 255, 69, 76, 38, 171, 88, 172, 67, 255, 1, 72, 216, 102, 159, 27, 235, 81, 24, 156, 77, 149, 174, + 97, 159, 68, 215, 226, 52, 173, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1817, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "537718060168075188" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9965420123245986625" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13755556944522207597" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16318085288536371028" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7777975044074989786" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10777530731862227616" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b07765bba0da157b4d8669f1b8a4c48cd939b43419fd8669f1bbee58e2935e7616d9f1be2757c1cedbcef541b6bf0eb17d5f168da1b95917b194c80faa0ffffffffff", + "cborBytes": [ + 159, 27, 7, 118, 91, 186, 13, 161, 87, 180, 216, 102, 159, 27, 138, 76, 72, 205, 147, 155, 67, 65, 159, 216, 102, + 159, 27, 190, 229, 142, 41, 53, 231, 97, 109, 159, 27, 226, 117, 124, 28, 237, 188, 239, 84, 27, 107, 240, 235, + 23, 213, 241, 104, 218, 27, 149, 145, 123, 25, 76, 128, 250, 160, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1818, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3672581356729571256" + } + } + ] + }, + "cborHex": "9f1b32f7a149289697b8ff", + "cborBytes": [159, 27, 50, 247, 161, 73, 40, 150, 151, 184, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1819, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27c3e482" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78d34e9da46a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4aa10c22235bb89bb6a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17314431502911441375" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57421ab9e9d49c1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55912653d50364" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d418a9d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4555220652369379808" + } + } + } + ] + } + ] + }, + "cborHex": "9f80bf4427c3e4824678d34e9da46a4a4aa10c22235bb89bb6a81bf04937b752de89df4857421ab9e9d49c1d4755912653d5036444d418a9d11b3f37650c7a0001e0ffff", + "cborBytes": [ + 159, 128, 191, 68, 39, 195, 228, 130, 70, 120, 211, 78, 157, 164, 106, 74, 74, 161, 12, 34, 35, 91, 184, 155, 182, + 168, 27, 240, 73, 55, 183, 82, 222, 137, 223, 72, 87, 66, 26, 185, 233, 212, 156, 29, 71, 85, 145, 38, 83, 213, 3, + 100, 68, 212, 24, 169, 209, 27, 63, 55, 101, 12, 122, 0, 1, 224, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1820, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffffc01ff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1821, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12107058780620960950" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "888078697147789020" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3270579137452253426" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3455117670602135118" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8055e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5327006113046368936" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17341070955884310152" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16358460962607880547" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11904265660378620809" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17524620540051095998" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0de0b8ec4e3e8c383d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2543954462085605449" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7734035375396417805" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3831987117997143574" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4522796720664826916" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18065694938812630069" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3a557dc2a468b76570dab3" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba804e9d0a5afb4b680ffbf1b0c5316deac15eedc1b2d636e65b1a520f21b2ff30b37256a564e43e8055e1b49ed53d60c7692a81bf0a7dc284e53ee881be304ed931c5659631ba534728beebfa3891bf333f588214281be490de0b8ec4e3e8c383dff9fd8669f1b234df11ad561e8499f1b6b54d0327ecef10d1b352df3fb2817b6161b3ec433a7968754241bfab63dd4a87fc4354b3a557dc2a468b76570dab3ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 168, 4, 233, 208, 165, 175, 180, 182, 128, 255, 191, 27, 12, 83, 22, 222, 172, 21, 238, + 220, 27, 45, 99, 110, 101, 177, 165, 32, 242, 27, 47, 243, 11, 55, 37, 106, 86, 78, 67, 232, 5, 94, 27, 73, 237, + 83, 214, 12, 118, 146, 168, 27, 240, 167, 220, 40, 78, 83, 238, 136, 27, 227, 4, 237, 147, 28, 86, 89, 99, 27, + 165, 52, 114, 139, 238, 191, 163, 137, 27, 243, 51, 245, 136, 33, 66, 129, 190, 73, 13, 224, 184, 236, 78, 62, + 140, 56, 61, 255, 159, 216, 102, 159, 27, 35, 77, 241, 26, 213, 97, 232, 73, 159, 27, 107, 84, 208, 50, 126, 206, + 241, 13, 27, 53, 45, 243, 251, 40, 23, 182, 22, 27, 62, 196, 51, 167, 150, 135, 84, 36, 27, 250, 182, 61, 212, + 168, 127, 196, 53, 75, 58, 85, 125, 194, 164, 104, 183, 101, 112, 218, 179, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1822, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2736451779263372163" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16393273225083348514" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee" + }, + { + "_tag": "ByteArray", + "bytearray": "38" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5474407813184145961" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2559977387926838004" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9285" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1590250589479647120" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd9050c9fd8669f1b25f9d46517fa9b839f1be3809b249703e62241ee41381b4bf900e6c476ca291b2386dddef8695af4ffff429285ffd8669f1b1611b47c51ca379080ffff", + "cborBytes": [ + 159, 217, 5, 12, 159, 216, 102, 159, 27, 37, 249, 212, 101, 23, 250, 155, 131, 159, 27, 227, 128, 155, 36, 151, 3, + 230, 34, 65, 238, 65, 56, 27, 75, 249, 0, 230, 196, 118, 202, 41, 27, 35, 134, 221, 222, 248, 105, 90, 244, 255, + 255, 66, 146, 133, 255, 216, 102, 159, 27, 22, 17, 180, 124, 81, 202, 55, 144, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1823, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "030484" + }, + { + "_tag": "ByteArray", + "bytearray": "3dd9020444fdfe0105040101" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8150480958032423594" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01fff406" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [] + } + ] + }, + "cborHex": "9f430304844c3dd9020444fdfe01050401011b711c533f8c1baaaabf1bfffffffffffffffe4401fff406ffd8669f1bfffffffffffffff780ffff", + "cborBytes": [ + 159, 67, 3, 4, 132, 76, 61, 217, 2, 4, 68, 253, 254, 1, 5, 4, 1, 1, 27, 113, 28, 83, 63, 140, 27, 170, 170, 191, + 27, 255, 255, 255, 255, 255, 255, 255, 254, 68, 1, 255, 244, 6, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 247, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1824, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15962113893092614960" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12146162399811853870" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17446446546471893568" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11155042359943456968" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5429068583141409161" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1e62b51eadf71e2a4e968672" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0279b2bc9d7235fbb323" + }, + { + "_tag": "ByteArray", + "bytearray": "6cfac72d8117" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5260883215213982278" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f1ad387589d6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9192200079361938168" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7867233813201730945" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13816422479985559334" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72ad45" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b8c25f5449b52194a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11760230160932269856" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3ef834ad602d4b8d23f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3844800037453033688" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16382675682425983439" + } + }, + { + "_tag": "ByteArray", + "bytearray": "556d3a5d702ccc898b" + } + ] + } + ] + }, + "cborHex": "9f9fa0a01bdd84d203ce1ce3301ba88fd65978fdde2effd8669f1bf21e3ab2e34c3a409fd8669f1b9aceabeca6dd68c89f1b4b57ed1ca7608189ffff4c1e62b51eadf71e2a4e9686729f4a0279b2bc9d7235fbb323466cfac72d8117ff1b490269692fa4f246ffff9f46f1ad387589d6bf1b7f91414512af92f81b6d2e077880d4bd811bbfbdcb0b0242c7264372ad45494b8c25f5449b52194a1ba334bb05e333ef204ab3ef834ad602d4b8d23f1b355b794370cbf0d8ff1be35af4bbe96e51cf49556d3a5d702ccc898bffff", + "cborBytes": [ + 159, 159, 160, 160, 27, 221, 132, 210, 3, 206, 28, 227, 48, 27, 168, 143, 214, 89, 120, 253, 222, 46, 255, 216, + 102, 159, 27, 242, 30, 58, 178, 227, 76, 58, 64, 159, 216, 102, 159, 27, 154, 206, 171, 236, 166, 221, 104, 200, + 159, 27, 75, 87, 237, 28, 167, 96, 129, 137, 255, 255, 76, 30, 98, 181, 30, 173, 247, 30, 42, 78, 150, 134, 114, + 159, 74, 2, 121, 178, 188, 157, 114, 53, 251, 179, 35, 70, 108, 250, 199, 45, 129, 23, 255, 27, 73, 2, 105, 105, + 47, 164, 242, 70, 255, 255, 159, 70, 241, 173, 56, 117, 137, 214, 191, 27, 127, 145, 65, 69, 18, 175, 146, 248, + 27, 109, 46, 7, 120, 128, 212, 189, 129, 27, 191, 189, 203, 11, 2, 66, 199, 38, 67, 114, 173, 69, 73, 75, 140, 37, + 245, 68, 155, 82, 25, 74, 27, 163, 52, 187, 5, 227, 51, 239, 32, 74, 179, 239, 131, 74, 214, 2, 212, 184, 210, 63, + 27, 53, 91, 121, 67, 112, 203, 240, 216, 255, 27, 227, 90, 244, 187, 233, 110, 81, 207, 73, 85, 109, 58, 93, 112, + 44, 204, 137, 139, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1825, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee20fa03eb2e576c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9136425334862502811" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "661481114852718801" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17073640484498816229" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e55" + } + } + ] + } + ] + }, + "cborHex": "9fbf48ee20fa03eb2e576c1b7ecb1a6f695bdb9bff1b092e0d91bc6cf8d1bf1becf1c18f8547bce5428e55ffff", + "cborBytes": [ + 159, 191, 72, 238, 32, 250, 3, 235, 46, 87, 108, 27, 126, 203, 26, 111, 105, 91, 219, 155, 255, 27, 9, 46, 13, + 145, 188, 108, 248, 209, 191, 27, 236, 241, 193, 143, 133, 71, 188, 229, 66, 142, 85, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1826, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8433286746597092444" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "700243503288036429" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90d352f70ecb0f025fb572" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07dfd8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11813601477090231320" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b83fcf8cbde8c4011c7b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93c429c6fe5053f8334e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5c0780a0a11bd8" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b75090d9d53edec5c9fbf1b09b7c3c195c22c4d4b90d352f70ecb0f025fb5724307dfd81ba3f257f3c7fe44184ab83fcf8cbde8c4011c7b4a93c429c6fe5053f8334eff475c0780a0a11bd8a0ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 117, 9, 13, 157, 83, 237, 236, 92, 159, 191, 27, 9, 183, 195, 193, 149, 194, 44, 77, 75, + 144, 211, 82, 247, 14, 203, 15, 2, 95, 181, 114, 67, 7, 223, 216, 27, 163, 242, 87, 243, 199, 254, 68, 24, 74, + 184, 63, 207, 140, 189, 232, 196, 1, 28, 123, 74, 147, 196, 41, 198, 254, 80, 83, 248, 51, 78, 255, 71, 92, 7, + 128, 160, 161, 27, 216, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1827, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11384872904935111928" + } + } + ] + }, + "cborHex": "9f1b9dff31965fa07cf8ff", + "cborBytes": [159, 27, 157, 255, 49, 150, 95, 160, 124, 248, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1828, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b80ccfd9176134fa257c79" + } + ] + }, + "cborHex": "9f4bb80ccfd9176134fa257c79ff", + "cborBytes": [159, 75, 184, 12, 207, 217, 23, 97, 52, 250, 37, 124, 121, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1829, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "50353f352604e0c79075db" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4493196905368734004" + } + }, + { + "_tag": "ByteArray", + "bytearray": "219f719e52" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17610673317746426511" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11623785530103588981" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a4b1c4d54381" + }, + { + "_tag": "ByteArray", + "bytearray": "6b2271b04201170fa9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2847158407958993985" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11163901712314622712" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4b50353f352604e0c79075db1b3e5b0ac78a63493445219f719e529fd8669f1bf465ae13bfb9c28f9f413d1ba14ffb5aab26687546a4b1c4d54381496b2271b04201170fa91b2783237cb5a99c41ffff9f1b9aee25755de362f8ffffff", + "cborBytes": [ + 159, 75, 80, 53, 63, 53, 38, 4, 224, 199, 144, 117, 219, 27, 62, 91, 10, 199, 138, 99, 73, 52, 69, 33, 159, 113, + 158, 82, 159, 216, 102, 159, 27, 244, 101, 174, 19, 191, 185, 194, 143, 159, 65, 61, 27, 161, 79, 251, 90, 171, + 38, 104, 117, 70, 164, 177, 196, 213, 67, 129, 73, 107, 34, 113, 176, 66, 1, 23, 15, 169, 27, 39, 131, 35, 124, + 181, 169, 156, 65, 255, 255, 159, 27, 154, 238, 37, 117, 93, 227, 98, 248, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1830, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "264318073819809381" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11239914796802167733" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5429389668880163819" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "516246fba7f4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8455514565577321406" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2278977624057970735" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11037387566483904677" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6090247863297588139" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11521102395114657320" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11607289169649088161" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf1b03ab0be341bec6651b9bfc32f4c10cd3b51b4b59112340c723eb46516246fba7f41b755805b2ba60abbe1b1fa08e13150a002f1b992cad835c9618a51b5484e82a05ef3bab1b9fe32d9641b616281ba1156000722c36a1ffd87a80ff", + "cborBytes": [ + 159, 191, 27, 3, 171, 11, 227, 65, 190, 198, 101, 27, 155, 252, 50, 244, 193, 12, 211, 181, 27, 75, 89, 17, 35, + 64, 199, 35, 235, 70, 81, 98, 70, 251, 167, 244, 27, 117, 88, 5, 178, 186, 96, 171, 190, 27, 31, 160, 142, 19, 21, + 10, 0, 47, 27, 153, 44, 173, 131, 92, 150, 24, 165, 27, 84, 132, 232, 42, 5, 239, 59, 171, 27, 159, 227, 45, 150, + 65, 182, 22, 40, 27, 161, 21, 96, 0, 114, 44, 54, 161, 255, 216, 122, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1831, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01a8fe9f" + } + ] + }, + "cborHex": "9f4401a8fe9fff", + "cborBytes": [159, 68, 1, 168, 254, 159, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1832, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "da16618072e78f" + }, + { + "_tag": "ByteArray", + "bytearray": "ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17860093268958817462" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6250611360232900793" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e0643fd73" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b717dfd7b7c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ba682995977f31362bfab8c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "321ee43aad6acfea252e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e14aee91f91b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48a2f445e96f9df23f74" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3d3837521cc5d6cf2079d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d825465c3de9" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f47da16618072e78f41ca1bf7dbcc3387a2acb61b56bea1ea3bb408b9bf450e0643fd7346b717dfd7b7c74c7ba682995977f31362bfab8c4a321ee43aad6acfea252e46e14aee91f91b4a48a2f445e96f9df23f744bf3d3837521cc5d6cf2079d46d825465c3de9ffffff", + "cborBytes": [ + 159, 159, 71, 218, 22, 97, 128, 114, 231, 143, 65, 202, 27, 247, 219, 204, 51, 135, 162, 172, 182, 27, 86, 190, + 161, 234, 59, 180, 8, 185, 191, 69, 14, 6, 67, 253, 115, 70, 183, 23, 223, 215, 183, 199, 76, 123, 166, 130, 153, + 89, 119, 243, 19, 98, 191, 171, 140, 74, 50, 30, 228, 58, 173, 106, 207, 234, 37, 46, 70, 225, 74, 238, 145, 249, + 27, 74, 72, 162, 244, 69, 233, 111, 157, 242, 63, 116, 75, 243, 211, 131, 117, 33, 204, 93, 108, 242, 7, 157, 70, + 216, 37, 70, 92, 61, 233, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1833, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5582329374807885558" + } + } + ] + }, + "cborHex": "9f1b4d786afd6ca706f6ff", + "cborBytes": [159, 27, 77, 120, 106, 253, 108, 167, 6, 246, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1834, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ca" + } + ] + }, + "cborHex": "9f41caff", + "cborBytes": [159, 65, 202, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1835, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "736e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2105d876d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73eaa17b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f990" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6b047cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0cc8a4067e248f1baa" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5894213220279057631" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15878697015773356550" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "738814200898618726" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d1c64fed36948e26" + }, + { + "_tag": "ByteArray", + "bytearray": "11e41af4e9d031ab7553cd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10284243605652399629" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15676757803929305622" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f4ddd8ffd9bffe" + } + ] + }, + "cborHex": "9fbf42736e45d2105d876d4473eaa17b42f99044c6b047cc490cc8a4067e248f1baaff9fd8669f1b51cc73b1e924fcdf80ffd8669f1bdc5c76ce9139e2069f1b0a40cb99ef93856648d1c64fed36948e264b11e41af4e9d031ab7553cd1b8eb8f912327e660d1bd98f0829e50a0216ffffff47f4ddd8ffd9bffeff", + "cborBytes": [ + 159, 191, 66, 115, 110, 69, 210, 16, 93, 135, 109, 68, 115, 234, 161, 123, 66, 249, 144, 68, 198, 176, 71, 204, + 73, 12, 200, 164, 6, 126, 36, 143, 27, 170, 255, 159, 216, 102, 159, 27, 81, 204, 115, 177, 233, 36, 252, 223, + 128, 255, 216, 102, 159, 27, 220, 92, 118, 206, 145, 57, 226, 6, 159, 27, 10, 64, 203, 153, 239, 147, 133, 102, + 72, 209, 198, 79, 237, 54, 148, 142, 38, 75, 17, 228, 26, 244, 233, 208, 49, 171, 117, 83, 205, 27, 142, 184, 249, + 18, 50, 126, 102, 13, 27, 217, 143, 8, 41, 229, 10, 2, 22, 255, 255, 255, 71, 244, 221, 216, 255, 217, 191, 254, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1836, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c1a7bd" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f43c1a7bd80ff", + "cborBytes": [159, 67, 193, 167, 189, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1837, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14105789024619076212" + } + } + ] + }, + "cborHex": "9f1bc3c1d461d9061a74ff", + "cborBytes": [159, 27, 195, 193, 212, 97, 217, 6, 26, 116, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1838, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1202582328214915097" + } + } + ] + }, + "cborHex": "9f1b10b06e4186698819ff", + "cborBytes": [159, 27, 16, 176, 110, 65, 134, 105, 136, 25, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1839, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0200fd05f9aca7" + } + ] + }, + "cborHex": "9f470200fd05f9aca7ff", + "cborBytes": [159, 71, 2, 0, 253, 5, 249, 172, 167, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1840, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "940785195252901254" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "55e60602cc0bbba5a6960190" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2883988078130611062" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "941120563923619920" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5971fc6e39a8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11307862794315479774" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14252375759456044543" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "803569123418544661" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a26a8429b4f0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9928268650894508988" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8136905677302959" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15051680921015078434" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7427154884452909066" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15163183403430699146" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17415616759500583634" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e38634e3808c53660b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18138423221535414263" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1161618363784045364" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "829841589555453389" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11796126724000268765" + } + } + ] + }, + "cborHex": "9fd8669f1b0d0e57268cfee5869f4c55e60602cc0bbba5a6960190ffff1b2805fbe0856fc3769fbf1b0d0f882aa77b9050465971fc6e39a81b9ced994cc007bade1bc5ca9c3dabc405ffffbf1b0b26d9dc39d59a1546a26a8429b4f01b89c84bbc5b36c3bc1b001ce878fc776caf1bd0e2500ce9a0ce221b67128e04439f800a1bd26e72f7a995e08a41441bf1b0b32bbe5f32d249e38634e3808c53660b1bfbb89fd1895097f71b101ee5bf51eb2334ff1b0b8430876d4c5dcdff801ba3b442c1c58741ddff", + "cborBytes": [ + 159, 216, 102, 159, 27, 13, 14, 87, 38, 140, 254, 229, 134, 159, 76, 85, 230, 6, 2, 204, 11, 187, 165, 166, 150, + 1, 144, 255, 255, 27, 40, 5, 251, 224, 133, 111, 195, 118, 159, 191, 27, 13, 15, 136, 42, 167, 123, 144, 80, 70, + 89, 113, 252, 110, 57, 168, 27, 156, 237, 153, 76, 192, 7, 186, 222, 27, 197, 202, 156, 61, 171, 196, 5, 255, 255, + 191, 27, 11, 38, 217, 220, 57, 213, 154, 21, 70, 162, 106, 132, 41, 180, 240, 27, 137, 200, 75, 188, 91, 54, 195, + 188, 27, 0, 28, 232, 120, 252, 119, 108, 175, 27, 208, 226, 80, 12, 233, 160, 206, 34, 27, 103, 18, 142, 4, 67, + 159, 128, 10, 27, 210, 110, 114, 247, 169, 149, 224, 138, 65, 68, 27, 241, 176, 179, 43, 190, 95, 50, 210, 73, + 227, 134, 52, 227, 128, 140, 83, 102, 11, 27, 251, 184, 159, 209, 137, 80, 151, 247, 27, 16, 30, 229, 191, 81, + 235, 35, 52, 255, 27, 11, 132, 48, 135, 109, 76, 93, 205, 255, 128, 27, 163, 180, 66, 193, 197, 135, 65, 221, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1841, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2e07b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffffa80ffd8669f1bfffffffffffffffd9f9f432e07b810ff08ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 128, 255, 216, 102, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 253, 159, 159, 67, 46, 7, 184, 16, 255, 8, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1842, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16428275933129401079" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "71361d01d2b889cbb8d1db1a" + }, + { + "_tag": "ByteArray", + "bytearray": "089cf0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6908779921631215141" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cbef" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5696903646926062278" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5180935920342194533" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3179" + }, + { + "_tag": "ByteArray", + "bytearray": "be29aba85264" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12689310616344348603" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "01018864" + }, + { + "_tag": "ByteArray", + "bytearray": "f95b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8041540769543156650" + } + } + ] + }, + "cborHex": "9f9f1be3fcf5eba246e2f79f4c71361d01d2b889cbb8d1db1a43089cf01b5fe0eabc042dfe2542cbefff1b4f0f77aef2a7c2c6d8669f1b47e661c5100ed9659f42317946be29aba852641bb0197cc653cc47bbffffff440101886442f95b1b6f994ab95770f3aaff", + "cborBytes": [ + 159, 159, 27, 227, 252, 245, 235, 162, 70, 226, 247, 159, 76, 113, 54, 29, 1, 210, 184, 137, 203, 184, 209, 219, + 26, 67, 8, 156, 240, 27, 95, 224, 234, 188, 4, 45, 254, 37, 66, 203, 239, 255, 27, 79, 15, 119, 174, 242, 167, + 194, 198, 216, 102, 159, 27, 71, 230, 97, 197, 16, 14, 217, 101, 159, 66, 49, 121, 70, 190, 41, 171, 168, 82, 100, + 27, 176, 25, 124, 198, 83, 204, 71, 187, 255, 255, 255, 68, 1, 1, 136, 100, 66, 249, 91, 27, 111, 153, 74, 185, + 87, 112, 243, 170, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1843, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5951772417292846207" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8926564045393697580" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6198842795116344543" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a069ca5e3dd4" + }, + { + "_tag": "ByteArray", + "bytearray": "10338e72547ae1f2" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cc3c060a03" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3493604218005402272" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7499188758438983669" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b5298f17accb5447f9f1b7be186b44e771b2cffffd8669f1b5606b6ade56634df9f80a09f46a069ca5e3dd44810338e72547ae1f2ffffff45cc3c060a039f1b307bc686c004b2a09f1b68127871825bb7f5ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 82, 152, 241, 122, 204, 181, 68, 127, 159, 27, 123, 225, 134, 180, 78, 119, 27, 44, 255, + 255, 216, 102, 159, 27, 86, 6, 182, 173, 229, 102, 52, 223, 159, 128, 160, 159, 70, 160, 105, 202, 94, 61, 212, + 72, 16, 51, 142, 114, 84, 122, 225, 242, 255, 255, 255, 69, 204, 60, 6, 10, 3, 159, 27, 48, 123, 198, 134, 192, 4, + 178, 160, 159, 27, 104, 18, 120, 113, 130, 91, 183, 245, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1844, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4bb87b26feff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2080569442250783349" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f62d692d5dcf0e8d3cdc2a6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "792ac80f3d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a85448f73e52ecd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18323015688525088968" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1092701191690497657" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04e66a666a7ae9c9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2564652644974570183" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b227443e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9587799895719157338" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10486046093387233071" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15603426560808306889" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12745621621617570025" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15298910031927856667" + } + } + } + ] + } + ] + }, + "cborHex": "9f464bb87b26feff1b1cdfaae267e3fa75bf4c6f62d692d5dcf0e8d3cdc2a645792ac80f3d488a85448f73e52ecd4176ffd8669f1bfe486db0707288c880ffbf1b0f2a0df1c85bae794804e66a666a7ae9c91b239779fe13f9aac744b227443e1b850eb534f1de1e5a41f21b9185eb5d4eb7f72f1bd88a81c95bdfc8c91bb0e18b55ee0db0e91bd450a59defb84e1bffff", + "cborBytes": [ + 159, 70, 75, 184, 123, 38, 254, 255, 27, 28, 223, 170, 226, 103, 227, 250, 117, 191, 76, 111, 98, 214, 146, 213, + 220, 240, 232, 211, 205, 194, 166, 69, 121, 42, 200, 15, 61, 72, 138, 133, 68, 143, 115, 229, 46, 205, 65, 118, + 255, 216, 102, 159, 27, 254, 72, 109, 176, 112, 114, 136, 200, 128, 255, 191, 27, 15, 42, 13, 241, 200, 91, 174, + 121, 72, 4, 230, 106, 102, 106, 122, 233, 201, 27, 35, 151, 121, 254, 19, 249, 170, 199, 68, 178, 39, 68, 62, 27, + 133, 14, 181, 52, 241, 222, 30, 90, 65, 242, 27, 145, 133, 235, 93, 78, 183, 247, 47, 27, 216, 138, 129, 201, 91, + 223, 200, 201, 27, 176, 225, 139, 85, 238, 13, 176, 233, 27, 212, 80, 165, 157, 239, 184, 78, 27, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1845, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "130542470703996975" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2072274956771470468" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11290762765651766604" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5932528759905434515" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14713253716874993672" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f9fa01193" + }, + { + "_tag": "ByteArray", + "bytearray": "06fed8f221efb6253455e6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14126505582642412755" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13051539484649721856" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ef" + }, + { + "_tag": "ByteArray", + "bytearray": "9e8eddfda307" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6894265591683446100" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d7a3b5b74df1e13e12305" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4467272954466224182" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b01cfc7af7a69e02f9f9f1b1cc23318034d2c84ff1b9cb0d8ea11e16d4c9f1b52549379a9f3bb931bcc2ffa4d2487a008458f9fa011934b06fed8f221efb6253455e61bc40b6dfb62f93cd3ffd8669f1bb5206202e28810009f41ef469e8eddfda3071b5fad5a073b7d75544b0d7a3b5b74df1e13e12305ffff9f1b3dfef1155dab4836ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 1, 207, 199, 175, 122, 105, 224, 47, 159, 159, 27, 28, 194, 51, 24, 3, 77, 44, 132, 255, + 27, 156, 176, 216, 234, 17, 225, 109, 76, 159, 27, 82, 84, 147, 121, 169, 243, 187, 147, 27, 204, 47, 250, 77, 36, + 135, 160, 8, 69, 143, 159, 160, 17, 147, 75, 6, 254, 216, 242, 33, 239, 182, 37, 52, 85, 230, 27, 196, 11, 109, + 251, 98, 249, 60, 211, 255, 216, 102, 159, 27, 181, 32, 98, 2, 226, 136, 16, 0, 159, 65, 239, 70, 158, 142, 221, + 253, 163, 7, 27, 95, 173, 90, 7, 59, 125, 117, 84, 75, 13, 122, 59, 91, 116, 223, 30, 19, 225, 35, 5, 255, 255, + 159, 27, 61, 254, 241, 21, 93, 171, 72, 54, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1846, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3320643670330250622" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13092209334346015988" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4154987292218170670" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4967650799326611424" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "531187032175163914" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9230953028740935465" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15368829907959276499" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10923443278887939987" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "860fe0b5d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14853152041724210460" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5180b62e7157d8f9ef492d5b" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2277631800662245500" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "133d00" + } + ] + } + ] + }, + "cborHex": "9f1b2e154bd31baf157e1bb5b0df062abf64f4bf1b39a97aed9eed1d2e412c1b44f0a4150e0c47e01b075f27ca9a183a0a1b801aeedf386b6f291bd5490d5fad4fe3d31b9797ddc98a3e6f9345860fe0b5d31bce20ff1629d6ed1c4c5180b62e7157d8f9ef492d5bffa0d8669f1b1f9bc60e279b407c9f43133d00ffffff", + "cborBytes": [ + 159, 27, 46, 21, 75, 211, 27, 175, 21, 126, 27, 181, 176, 223, 6, 42, 191, 100, 244, 191, 27, 57, 169, 122, 237, + 158, 237, 29, 46, 65, 44, 27, 68, 240, 164, 21, 14, 12, 71, 224, 27, 7, 95, 39, 202, 154, 24, 58, 10, 27, 128, 26, + 238, 223, 56, 107, 111, 41, 27, 213, 73, 13, 95, 173, 79, 227, 211, 27, 151, 151, 221, 201, 138, 62, 111, 147, 69, + 134, 15, 224, 181, 211, 27, 206, 32, 255, 22, 41, 214, 237, 28, 76, 81, 128, 182, 46, 113, 87, 216, 249, 239, 73, + 45, 91, 255, 160, 216, 102, 159, 27, 31, 155, 198, 14, 39, 155, 64, 124, 159, 67, 19, 61, 0, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1847, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + "cborHex": "9f0e0bff", + "cborBytes": [159, 14, 11, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1848, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b70a1b435f4010" + } + ] + }, + "cborHex": "9f47b70a1b435f4010ff", + "cborBytes": [159, 71, 183, 10, 27, 67, 95, 64, 16, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1849, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6810374073823765761" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "816332291946910677" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c9092024f51" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2622891935534494447" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04ca267486954d82" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9900121693381359918" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e0acb60a8ad" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b5e834f2321cba5019f9f1b0b5431e4f82d13d5469c9092024f511b2466625195c532efffffffd87d9f9f4804ca267486954d821b89644c3a1f22792e464e0acb60a8adffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 94, 131, 79, 35, 33, 203, 165, 1, 159, 159, 27, 11, 84, 49, 228, 248, 45, 19, 213, 70, + 156, 144, 146, 2, 79, 81, 27, 36, 102, 98, 81, 149, 197, 50, 239, 255, 255, 255, 216, 125, 159, 159, 72, 4, 202, + 38, 116, 134, 149, 77, 130, 27, 137, 100, 76, 58, 31, 34, 121, 46, 70, 78, 10, 203, 96, 168, 173, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1850, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aaa6e0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17407224866336093428" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4160606842310188661" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "110351340315209346" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "910144511943618538" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f2869b223" + } + ] + } + ] + } + ] + }, + "cborHex": "9f43aaa6e01bf192e2c9db4f34f4d8669f1b39bd71e115f55e759f1b01880bf597f9ee829f1b0ca17b9c88abafea454f2869b223ffffffff", + "cborBytes": [ + 159, 67, 170, 166, 224, 27, 241, 146, 226, 201, 219, 79, 52, 244, 216, 102, 159, 27, 57, 189, 113, 225, 21, 245, + 94, 117, 159, 27, 1, 136, 11, 245, 151, 249, 238, 130, 159, 27, 12, 161, 123, 156, 136, 171, 175, 234, 69, 79, 40, + 105, 178, 35, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1851, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11966396364424497835" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1879e1f65412" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6057138814017874640" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b15f9e4a69bab21" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddd081a7533a7db77d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ccd4d423d2399" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d95f3365f67" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17992674263280085742" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a701140bb1d2b7a39f68" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "407e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01" + } + } + ] + } + ] + }, + "cborHex": "9f1ba6112e17bf0c4aabbf461879e1f654121b540f47a8c4c42ad0486b15f9e4a69bab2149ddd081a7533a7db77d477ccd4d423d2399465d95f3365f6741881bf9b2d1e9c61f6aee4aa701140bb1d2b7a39f6842407e42bf504101ffff", + "cborBytes": [ + 159, 27, 166, 17, 46, 23, 191, 12, 74, 171, 191, 70, 24, 121, 225, 246, 84, 18, 27, 84, 15, 71, 168, 196, 196, 42, + 208, 72, 107, 21, 249, 228, 166, 155, 171, 33, 73, 221, 208, 129, 167, 83, 58, 125, 183, 125, 71, 124, 205, 77, + 66, 61, 35, 153, 70, 93, 149, 243, 54, 95, 103, 65, 136, 27, 249, 178, 209, 233, 198, 31, 106, 238, 74, 167, 1, + 20, 11, 177, 210, 183, 163, 159, 104, 66, 64, 126, 66, 191, 80, 65, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1852, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5105710358804448653" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14963183417824597981" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5733624823227443296" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17490526753492651625" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "783172165713861435" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + ] + }, + "cborHex": "9fd8669f1b46db20852692458d9f1bcfa7e80a487357dd410f1b4f91ed660fd56860ffff1bf2bad569dc654e69d8669f1b0ade62ef6f591b3b80ff1bffffffffffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 70, 219, 32, 133, 38, 146, 69, 141, 159, 27, 207, 167, 232, 10, 72, 115, 87, 221, 65, 15, + 27, 79, 145, 237, 102, 15, 213, 104, 96, 255, 255, 27, 242, 186, 213, 105, 220, 101, 78, 105, 216, 102, 159, 27, + 10, 222, 98, 239, 111, 89, 27, 59, 128, 255, 27, 255, 255, 255, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1853, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dc0505c201" + }, + { + "_tag": "ByteArray", + "bytearray": "cf48d3d25c5905d3004506" + } + ] + }, + "cborHex": "9f45dc0505c2014bcf48d3d25c5905d3004506ff", + "cborBytes": [159, 69, 220, 5, 5, 194, 1, 75, 207, 72, 211, 210, 92, 89, 5, 211, 0, 69, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1854, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10543384367451881103" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17860070053236899187" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "33" + } + ] + }, + "cborHex": "9f1b9251a03890603e8fd8669f1bf7dbb71632c6fd7380ff4133ff", + "cborBytes": [ + 159, 27, 146, 81, 160, 56, 144, 96, 62, 143, 216, 102, 159, 27, 247, 219, 183, 22, 50, 198, 253, 115, 128, 255, + 65, 51, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1855, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3078fa4dd47efa" + }, + { + "_tag": "ByteArray", + "bytearray": "ee26" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e5703c838b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "36f75941da01fb6220a673" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13033575165633533040" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bf4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "684011036429006666" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6ed36f013eea9883caacb3b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "966a2aa7b1c6b98d" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f230" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1b84f4ed2d11052451de626" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "df2d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "88237220976986745" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c9cc897218122a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "436483184911972704" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c30b09733bc5a07e55a8f1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9365981747093596080" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2f8bd3dd387ee7" + } + ] + } + ] + } + ] + }, + "cborHex": "9f473078fa4dd47efa42ee26099f45e5703c838bbf4b36f75941da01fb6220a6731bb4e08f8eecf09470423bf41b097e1869e0cc374a4cf6ed36f013eea9883caacb3b48966a2aa7b1c6b98dffff9fbf42f2304ca1b84f4ed2d11052451de626ff42df2d1b01397b48f44d0a7947c9cc897218122ad8669f1b060eb324e31bf9609f4bc30b09733bc5a07e55a8f11b81faa6c6a04e67b0472f8bd3dd387ee7ffffffff", + "cborBytes": [ + 159, 71, 48, 120, 250, 77, 212, 126, 250, 66, 238, 38, 9, 159, 69, 229, 112, 60, 131, 139, 191, 75, 54, 247, 89, + 65, 218, 1, 251, 98, 32, 166, 115, 27, 180, 224, 143, 142, 236, 240, 148, 112, 66, 59, 244, 27, 9, 126, 24, 105, + 224, 204, 55, 74, 76, 246, 237, 54, 240, 19, 238, 169, 136, 60, 170, 203, 59, 72, 150, 106, 42, 167, 177, 198, + 185, 141, 255, 255, 159, 191, 66, 242, 48, 76, 161, 184, 79, 78, 210, 209, 16, 82, 69, 29, 230, 38, 255, 66, 223, + 45, 27, 1, 57, 123, 72, 244, 77, 10, 121, 71, 201, 204, 137, 114, 24, 18, 42, 216, 102, 159, 27, 6, 14, 179, 36, + 227, 27, 249, 96, 159, 75, 195, 11, 9, 115, 59, 197, 160, 126, 85, 168, 241, 27, 129, 250, 166, 198, 160, 78, 103, + 176, 71, 47, 139, 211, 221, 56, 126, 231, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1856, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "789266554126555733" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14816505087382252834" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2152822953540053903" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2122550455343547445" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3765252515478316482" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3578057093924536116" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15324640318119086441" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7614220454555058016" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "955035504586276067" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5987303553743738772" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83a1abd4752919d32b" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b0af409bfcfcf5a551bcd9ecce0322fed221b1de05d11f20feb8f1b1d74d064b49884351b3440dd36b2bb25c21b31a7cff835703f341bd4ac0f2d081e09691b69ab25295b447f60ffbf1b0d40f7bb3ec03ce31b53172cdc2b545794410d4983a1abd4752919d32bffff", + "cborBytes": [ + 159, 191, 27, 10, 244, 9, 191, 207, 207, 90, 85, 27, 205, 158, 204, 224, 50, 47, 237, 34, 27, 29, 224, 93, 17, + 242, 15, 235, 143, 27, 29, 116, 208, 100, 180, 152, 132, 53, 27, 52, 64, 221, 54, 178, 187, 37, 194, 27, 49, 167, + 207, 248, 53, 112, 63, 52, 27, 212, 172, 15, 45, 8, 30, 9, 105, 27, 105, 171, 37, 41, 91, 68, 127, 96, 255, 191, + 27, 13, 64, 247, 187, 62, 192, 60, 227, 27, 83, 23, 44, 220, 43, 84, 87, 148, 65, 13, 73, 131, 161, 171, 212, 117, + 41, 25, 211, 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1857, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "90a0fcc1d514" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14537738538391968166" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11469707795815327704" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "97" + }, + { + "_tag": "ByteArray", + "bytearray": "0e0bf3e8355c2d7cc4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10720811209754495330" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e90605fc" + }, + { + "_tag": "ByteArray", + "bytearray": "3533fc1a3424dd32" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14571073116441075518" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13270583970410155017" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9526977926951491942" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f4690a0fcc1d5149fd8669f1bc9c06c2d2a5c19a69f41861b9f2c96789f19e7d8ffff9f4197490e0bf3e8355c2d7cc41b94c7f8fe7571496244e90605fc483533fc1a3424dd32ffbf1bfffffffffffffff61bca36d9cc6db6df3eff1bb82a95cf7e4a4c099f1b84369ff2ceee5966ffff80ff", + "cborBytes": [ + 159, 70, 144, 160, 252, 193, 213, 20, 159, 216, 102, 159, 27, 201, 192, 108, 45, 42, 92, 25, 166, 159, 65, 134, + 27, 159, 44, 150, 120, 159, 25, 231, 216, 255, 255, 159, 65, 151, 73, 14, 11, 243, 232, 53, 92, 45, 124, 196, 27, + 148, 199, 248, 254, 117, 113, 73, 98, 68, 233, 6, 5, 252, 72, 53, 51, 252, 26, 52, 36, 221, 50, 255, 191, 27, 255, + 255, 255, 255, 255, 255, 255, 246, 27, 202, 54, 217, 204, 109, 182, 223, 62, 255, 27, 184, 42, 149, 207, 126, 74, + 76, 9, 159, 27, 132, 54, 159, 242, 206, 238, 89, 102, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1858, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "271ac57713e7a555ef0620" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4174109494333463373" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbc8495abf26317f4037a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10546120531271560233" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4b271ac57713e7a555ef06201b39ed6a783f54db4d4bdbc8495abf26317f4037a51b925b58bf58e52c29ffff", + "cborBytes": [ + 159, 191, 75, 39, 26, 197, 119, 19, 231, 165, 85, 239, 6, 32, 27, 57, 237, 106, 120, 63, 84, 219, 77, 75, 219, + 200, 73, 90, 191, 38, 49, 127, 64, 55, 165, 27, 146, 91, 88, 191, 88, 229, 44, 41, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1859, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2537108335111283902" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5618311047560516030" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "bb1287c630053692989074" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cc" + }, + { + "_tag": "ByteArray", + "bytearray": "0fefd19242af217f820ec832" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13687510522403873483" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06ad344a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7316858537603497919" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c4b52" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "279d6190c3f1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f6b27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "355b530958726344842f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90f9c2f0a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18363897950631609271" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf3f301d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba10d50437fa6cbc3ae73e" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "25ce" + } + ] + }, + "cborHex": "9f1b23359e96aefda4bed8669f1b4df84021737f51be9f804bbb1287c6300536929890749f41cc4c0fefd19242af217f820ec832ffd8669f1bbdf3ce4cf34de2cb80ffbf4406ad344a1b658ab412d5a3ffbf435c4b5246279d6190c3f1437f6b274a355b530958726344842f4590f9c2f0a51bfed9abe3d6ebc3b744bf3f301d4bba10d50437fa6cbc3ae73effffff4225ceff", + "cborBytes": [ + 159, 27, 35, 53, 158, 150, 174, 253, 164, 190, 216, 102, 159, 27, 77, 248, 64, 33, 115, 127, 81, 190, 159, 128, + 75, 187, 18, 135, 198, 48, 5, 54, 146, 152, 144, 116, 159, 65, 204, 76, 15, 239, 209, 146, 66, 175, 33, 127, 130, + 14, 200, 50, 255, 216, 102, 159, 27, 189, 243, 206, 76, 243, 77, 226, 203, 128, 255, 191, 68, 6, 173, 52, 74, 27, + 101, 138, 180, 18, 213, 163, 255, 191, 67, 92, 75, 82, 70, 39, 157, 97, 144, 195, 241, 67, 127, 107, 39, 74, 53, + 91, 83, 9, 88, 114, 99, 68, 132, 47, 69, 144, 249, 194, 240, 165, 27, 254, 217, 171, 227, 214, 235, 195, 183, 68, + 191, 63, 48, 29, 75, 186, 16, 213, 4, 55, 250, 108, 188, 58, 231, 62, 255, 255, 255, 66, 37, 206, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1860, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16691175178089686972" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2995545725133561447" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e77443bcaf62101" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4681656560471654134" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2050240612044246472" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17089901636520594318" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5456844086463532937" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d4370" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9104624733848204334" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c4fdd4f1084b845" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ca8315c8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "794cee" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd87c9f1be7a2f7640dda67bc1b299250f747069e67489e77443bcaf621011b40f895d6574a3ef6bf1b1c73eaf958fa0dc81bed2b86fe032d4b8e1b4bba9ac8f8598f89439d43701b7e5a1ff50241f42e488c4fdd4f1084b845455ca8315c8f43794ceeffffff", + "cborBytes": [ + 159, 216, 124, 159, 27, 231, 162, 247, 100, 13, 218, 103, 188, 27, 41, 146, 80, 247, 71, 6, 158, 103, 72, 158, + 119, 68, 59, 202, 246, 33, 1, 27, 64, 248, 149, 214, 87, 74, 62, 246, 191, 27, 28, 115, 234, 249, 88, 250, 13, + 200, 27, 237, 43, 134, 254, 3, 45, 75, 142, 27, 75, 186, 154, 200, 248, 89, 143, 137, 67, 157, 67, 112, 27, 126, + 90, 31, 245, 2, 65, 244, 46, 72, 140, 79, 221, 79, 16, 132, 184, 69, 69, 92, 168, 49, 92, 143, 67, 121, 76, 238, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1861, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3156589515809292624" + } + } + ] + }, + "cborHex": "9f1b2bce7570b7890150ff", + "cborBytes": [159, 27, 43, 206, 117, 112, 183, 137, 1, 80, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1862, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9704654192976920852" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7711732559822474539" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12382078647410859894" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6178246306637972790" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6574841847688486484" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15361644422822907311" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebffc4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6381499567637968819" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11015238392518966694" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18344386434958900074" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "62bc9afb912a9bb9" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12174513542670753386" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "be" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "391911046125971851" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1f48267a88f3ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8184336247854963023" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da885ea1d03164829b2e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5709163147185089286" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9882648840587701654" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f428a550b1f29" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbebc52de2a492b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "559651255043810178" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5c7a29d9893273bacb89" + }, + { + "_tag": "ByteArray", + "bytearray": "b4" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15191510261268869514" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17501497533348602753" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ad076b88678b693627e1ca" + }, + { + "_tag": "ByteArray", + "bytearray": "9393050057bf9a" + }, + { + "_tag": "ByteArray", + "bytearray": "0e238e8ca5225b6cce3eb925" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3556925492340692076" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c516c48fa2ddfd00c0baf7" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5078353618736973917" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba1016a2c09a" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fc7783d13e0e0dbdb649d5" + }, + { + "_tag": "ByteArray", + "bytearray": "7c2017b42414f5c91f" + }, + { + "_tag": "ByteArray", + "bytearray": "0841ac5a4e8e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18311600944298063736" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5214328652146950170" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd905099fd8669f1b86addb92306501149f1b6b0593e797084d2b1babd5faed3fdf9f761b55bd8a483a0685361b5b3e87d351d85e541bd52f86368c384dafffffbf43ebffc41b588fa40bcf5eb7b3ff1b98ddfcf4ee567da61bfe945a4516383b6aff139fa04862bc9afb912a9bb9ffd8669f1ba8f48f9050129e6a9f41bed8669f1b057059051fe3e98b9f471f48267a88f3ca1b71949a7477bf994f4ada885ea1d03164829b2e1b4f3b05a248b7eb06ffffbf1b892638c28f27ed96477f428a550b1f2948dbebc52de2a492b81b07c447d9eefce382ff9f4a5c7a29d9893273bacb8941b4ffffffd9050d9fd8669f1bd2d3161834a1f18a9f1bf2e1cf47989e63814bad076b88678b693627e1ca479393050057bf9a4c0e238e8ca5225b6cce3eb925ffffbf1b315cbce3cf7f946c4bc516c48fa2ddfd00c0baf7ffbf1b4679efb5c0a3085d46ba1016a2c09aff9f4bfc7783d13e0e0dbdb649d5497c2017b42414f5c91f460841ac5a4e8e1bfe1fe00a3197f7781b485d04484d5c401affffff", + "cborBytes": [ + 159, 217, 5, 9, 159, 216, 102, 159, 27, 134, 173, 219, 146, 48, 101, 1, 20, 159, 27, 107, 5, 147, 231, 151, 8, 77, + 43, 27, 171, 213, 250, 237, 63, 223, 159, 118, 27, 85, 189, 138, 72, 58, 6, 133, 54, 27, 91, 62, 135, 211, 81, + 216, 94, 84, 27, 213, 47, 134, 54, 140, 56, 77, 175, 255, 255, 191, 67, 235, 255, 196, 27, 88, 143, 164, 11, 207, + 94, 183, 179, 255, 27, 152, 221, 252, 244, 238, 86, 125, 166, 27, 254, 148, 90, 69, 22, 56, 59, 106, 255, 19, 159, + 160, 72, 98, 188, 154, 251, 145, 42, 155, 185, 255, 216, 102, 159, 27, 168, 244, 143, 144, 80, 18, 158, 106, 159, + 65, 190, 216, 102, 159, 27, 5, 112, 89, 5, 31, 227, 233, 139, 159, 71, 31, 72, 38, 122, 136, 243, 202, 27, 113, + 148, 154, 116, 119, 191, 153, 79, 74, 218, 136, 94, 161, 208, 49, 100, 130, 155, 46, 27, 79, 59, 5, 162, 72, 183, + 235, 6, 255, 255, 191, 27, 137, 38, 56, 194, 143, 39, 237, 150, 71, 127, 66, 138, 85, 11, 31, 41, 72, 219, 235, + 197, 45, 226, 164, 146, 184, 27, 7, 196, 71, 217, 238, 252, 227, 130, 255, 159, 74, 92, 122, 41, 217, 137, 50, + 115, 186, 203, 137, 65, 180, 255, 255, 255, 217, 5, 13, 159, 216, 102, 159, 27, 210, 211, 22, 24, 52, 161, 241, + 138, 159, 27, 242, 225, 207, 71, 152, 158, 99, 129, 75, 173, 7, 107, 136, 103, 139, 105, 54, 39, 225, 202, 71, + 147, 147, 5, 0, 87, 191, 154, 76, 14, 35, 142, 140, 165, 34, 91, 108, 206, 62, 185, 37, 255, 255, 191, 27, 49, 92, + 188, 227, 207, 127, 148, 108, 75, 197, 22, 196, 143, 162, 221, 253, 0, 192, 186, 247, 255, 191, 27, 70, 121, 239, + 181, 192, 163, 8, 93, 70, 186, 16, 22, 162, 192, 154, 255, 159, 75, 252, 119, 131, 209, 62, 14, 13, 189, 182, 73, + 213, 73, 124, 32, 23, 180, 36, 20, 245, 201, 31, 70, 8, 65, 172, 90, 78, 142, 27, 254, 31, 224, 10, 49, 151, 247, + 120, 27, 72, 93, 4, 72, 77, 92, 64, 26, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1863, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a6cf7969" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18321497547438677081" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11763653084978201098" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "965291427576392864" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a5470617" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3275863960589244640" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74753a4f895a" + }, + { + "_tag": "ByteArray", + "bytearray": "2c862cd7b2abae" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7e9835a5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10456033646097130466" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42c63a17" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "19" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1698403387585877844" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6743779935163634687" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8048810527946823192" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9095823749543040741" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11139415345135246101" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7474976094628404081" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a2f61e84c0a63eb5" + } + ] + }, + "cborHex": "9f44a6cf7969d8669f1bfe4308f2ac45dc599f1ba340e4277f0dc20ad8669f1b0d656770656baca09f44a54706171b2d7634ea776d18e04674753a4f895a472c862cd7b2abaeffff447e9835a5bf1b911b4b33e326e3e24442c63a17ff4119ffffbf1b1791f0e1ea6057541b5d96b81ef6d5d3ff1b6fb31e87deb1d6181b7e3adb822b1316e51b9a97273cbc525b151b67bc732768dcdb71ff48a2f61e84c0a63eb5ff", + "cborBytes": [ + 159, 68, 166, 207, 121, 105, 216, 102, 159, 27, 254, 67, 8, 242, 172, 69, 220, 89, 159, 27, 163, 64, 228, 39, 127, + 13, 194, 10, 216, 102, 159, 27, 13, 101, 103, 112, 101, 107, 172, 160, 159, 68, 165, 71, 6, 23, 27, 45, 118, 52, + 234, 119, 109, 24, 224, 70, 116, 117, 58, 79, 137, 90, 71, 44, 134, 44, 215, 178, 171, 174, 255, 255, 68, 126, + 152, 53, 165, 191, 27, 145, 27, 75, 51, 227, 38, 227, 226, 68, 66, 198, 58, 23, 255, 65, 25, 255, 255, 191, 27, + 23, 145, 240, 225, 234, 96, 87, 84, 27, 93, 150, 184, 30, 246, 213, 211, 255, 27, 111, 179, 30, 135, 222, 177, + 214, 24, 27, 126, 58, 219, 130, 43, 19, 22, 229, 27, 154, 151, 39, 60, 188, 82, 91, 21, 27, 103, 188, 115, 39, + 104, 220, 219, 113, 255, 72, 162, 246, 30, 132, 192, 166, 62, 181, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1864, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e153158a39dde1f62" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "384266870809378925" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fef1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10361080257753847845" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "18ae39" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6356744862322869623" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9331752863207082775" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0715f6fd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11880766097957978926" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16401367605258521407" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eabe44" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5900783533601648216" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9039842912324948152" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "611181c835" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9546848859141703760" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0520" + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf492e153158a39dde1f621b055530aedd8b406dffd9050a9fbf0942fef11bfffffffffffffff31b8fc9f3995cbb1825ff4318ae39bf0d0f1b5837b1c5d68b45771bfffffffffffffff31b81810bc98f314b17440715f6fd1ba4e0f5d1b04a032e1bfffffffffffffff91be39d5cf056088b3f43eabe441bfffffffffffffff11b51e3cb5c30ccee58ffd8669f1b7d73f93bce7610b89f45611181c8351bffffffffffffffef1b847d3874bd7c085006420520ffffffff", + "cborBytes": [ + 159, 191, 73, 46, 21, 49, 88, 163, 157, 222, 31, 98, 27, 5, 85, 48, 174, 221, 139, 64, 109, 255, 217, 5, 10, 159, + 191, 9, 66, 254, 241, 27, 255, 255, 255, 255, 255, 255, 255, 243, 27, 143, 201, 243, 153, 92, 187, 24, 37, 255, + 67, 24, 174, 57, 191, 13, 15, 27, 88, 55, 177, 197, 214, 139, 69, 119, 27, 255, 255, 255, 255, 255, 255, 255, 243, + 27, 129, 129, 11, 201, 143, 49, 75, 23, 68, 7, 21, 246, 253, 27, 164, 224, 245, 209, 176, 74, 3, 46, 27, 255, 255, + 255, 255, 255, 255, 255, 249, 27, 227, 157, 92, 240, 86, 8, 139, 63, 67, 234, 190, 68, 27, 255, 255, 255, 255, + 255, 255, 255, 241, 27, 81, 227, 203, 92, 48, 204, 238, 88, 255, 216, 102, 159, 27, 125, 115, 249, 59, 206, 118, + 16, 184, 159, 69, 97, 17, 129, 200, 53, 27, 255, 255, 255, 255, 255, 255, 255, 239, 27, 132, 125, 56, 116, 189, + 124, 8, 80, 6, 66, 5, 32, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1865, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cff9039e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2494415068870506964" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c73f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15551572311945383668" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6068697655159467220" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "9ff8ac1f2d724e17f9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6b0191eab5d6e9a7ed304078" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1527464435098493226" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dd0ec42c4726" + }, + { + "_tag": "ByteArray", + "bytearray": "69e4e5f12133ef5ef3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4303672941948484989" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f44cff9039e1b229df14a066879d4d8669f1bfffffffffffffff080ffd905039fbf1242c73f1bd7d2489f384e0ef41b5438585d3106acd4ffd8669f1bfffffffffffffff280ff499ff8ac1f2d724e17f99f4c6b0191eab5d6e9a7ed3040781b1532a4cf9516a12a46dd0ec42c47264969e4e5f12133ef5ef31b3bb9b7bd264cbd7dffffff", + "cborBytes": [ + 159, 68, 207, 249, 3, 158, 27, 34, 157, 241, 74, 6, 104, 121, 212, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 240, 128, 255, 217, 5, 3, 159, 191, 18, 66, 199, 63, 27, 215, 210, 72, 159, 56, 78, 14, 244, 27, 84, 56, + 88, 93, 49, 6, 172, 212, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 128, 255, 73, 159, 248, + 172, 31, 45, 114, 78, 23, 249, 159, 76, 107, 1, 145, 234, 181, 214, 233, 167, 237, 48, 64, 120, 27, 21, 50, 164, + 207, 149, 22, 161, 42, 70, 221, 14, 196, 44, 71, 38, 73, 105, 228, 229, 241, 33, 51, 239, 94, 243, 27, 59, 185, + 183, 189, 38, 76, 189, 125, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1866, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "275f36e4dbb97cd3eec2e8" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "06a7ae" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2706031237415677762" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17280653787993195961" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f4b275f36e4dbb97cd3eec2e8a04306a7aebf1b258dc112c145af421befd1371037d7c5b9ffffff", + "cborBytes": [ + 159, 159, 75, 39, 95, 54, 228, 219, 185, 124, 211, 238, 194, 232, 160, 67, 6, 167, 174, 191, 27, 37, 141, 193, 18, + 193, 69, 175, 66, 27, 239, 209, 55, 16, 55, 215, 197, 185, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1867, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "29139833004da3d9f0a1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12167598622584424647" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10999258880130173418" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9182022183739224385" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17263757427808737066" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c56089c0591" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + ] + }, + "cborHex": "9f9f4a29139833004da3d9f0a11ba8dbfe7b04ad48c71b98a537acc6b849eaa0d8669f1b7f6d1887158871419f1bef952fe9cd0d172a460c56089c0591ffffff1bffffffffffffffffff", + "cborBytes": [ + 159, 159, 74, 41, 19, 152, 51, 0, 77, 163, 217, 240, 161, 27, 168, 219, 254, 123, 4, 173, 72, 199, 27, 152, 165, + 55, 172, 198, 184, 73, 234, 160, 216, 102, 159, 27, 127, 109, 24, 135, 21, 136, 113, 65, 159, 27, 239, 149, 47, + 233, 205, 13, 23, 42, 70, 12, 86, 8, 156, 5, 145, 255, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1868, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2799e6fa1e33" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "337c3277ad83e9f213ece6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17496556860957497399" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3859b835ccf7331ebf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1083" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "604b12a391b84f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aec1fe3309f681" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0559de145fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7600012874765455763" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15214356840292699317" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c3d0934e6b0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17596492070625243843" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f462799e6fa1e339fbf4b337c3277ad83e9f213ece61bf2d041c3a9cb9837493859b835ccf7331ebf42108347604b12a391b84f47aec1fe3309f68146b0559de145fb1b6978ab7168ca5193ffbf1bd32440efe7ae4cb5464c3d0934e6b01bf4334c4eda9872c34157ffffff", + "cborBytes": [ + 159, 70, 39, 153, 230, 250, 30, 51, 159, 191, 75, 51, 124, 50, 119, 173, 131, 233, 242, 19, 236, 230, 27, 242, + 208, 65, 195, 169, 203, 152, 55, 73, 56, 89, 184, 53, 204, 247, 51, 30, 191, 66, 16, 131, 71, 96, 75, 18, 163, + 145, 184, 79, 71, 174, 193, 254, 51, 9, 246, 129, 70, 176, 85, 157, 225, 69, 251, 27, 105, 120, 171, 113, 104, + 202, 81, 147, 255, 191, 27, 211, 36, 64, 239, 231, 174, 76, 181, 70, 76, 61, 9, 52, 230, 176, 27, 244, 51, 76, 78, + 218, 152, 114, 195, 65, 87, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1869, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5c049a640dd098bc7fb6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14921447136278736081" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "351758313103743177" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d2b7046cabd3af13a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12215881300034108157" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11188888783568553339" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8112267591401475908" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3c49cebf55ed5a49a1a0bfa1" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f4a5c049a640dd098bc7fb6d8669f1bcf13a11cfca9ecd19f1b04e1b2527356d8c9496d2b7046cabd3af13ad8669f1ba9878751e2debafd9f1b9b46eb113ff4c57b1b70949064cc660f44ffff4c3c49cebf55ed5a49a1a0bfa1ffffa0ff", + "cborBytes": [ + 159, 74, 92, 4, 154, 100, 13, 208, 152, 188, 127, 182, 216, 102, 159, 27, 207, 19, 161, 28, 252, 169, 236, 209, + 159, 27, 4, 225, 178, 82, 115, 86, 216, 201, 73, 109, 43, 112, 70, 202, 189, 58, 241, 58, 216, 102, 159, 27, 169, + 135, 135, 81, 226, 222, 186, 253, 159, 27, 155, 70, 235, 17, 63, 244, 197, 123, 27, 112, 148, 144, 100, 204, 102, + 15, 68, 255, 255, 76, 60, 73, 206, 191, 85, 237, 90, 73, 161, 160, 191, 161, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1870, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fe02" + } + ] + }, + "cborHex": "9f42fe02ff", + "cborBytes": [159, 66, 254, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1871, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16007940080467486121" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8108208799696614820" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "95d210ee" + } + ] + } + ] + }, + "cborHex": "9f1bde27a0b08200a5a91b708624f1b69cf5a4d905019f4495d210eeffff", + "cborBytes": [ + 159, 27, 222, 39, 160, 176, 130, 0, 165, 169, 27, 112, 134, 36, 241, 182, 156, 245, 164, 217, 5, 1, 159, 68, 149, + 210, 16, 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1872, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + } + ] + }, + "cborHex": "9f80bf0108ffff", + "cborBytes": [159, 128, 191, 1, 8, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1873, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "90" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "741803338635530211" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "816b30" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1920564779420778391" + } + } + ] + }, + "cborHex": "9f9fa09f4190ff1b0a4b6a34cc91cfe3ff43816b301b1aa7377dc5807f97ff", + "cborBytes": [ + 159, 159, 160, 159, 65, 144, 255, 27, 10, 75, 106, 52, 204, 145, 207, 227, 255, 67, 129, 107, 48, 27, 26, 167, 55, + 125, 197, 128, 127, 151, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1874, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9602512922499426481" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e790512a1dd2d5ed6b43dbe1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17937423297387365040" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "52bc9b" + }, + { + "_tag": "ByteArray", + "bytearray": "98" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16312663540678189210" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1314399580584788436" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3ee0aed4" + }, + { + "_tag": "ByteArray", + "bytearray": "42cf4803d7ad375c" + }, + { + "_tag": "ByteArray", + "bytearray": "9d1c6860aec0a6ed56656c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a4d4ccde" + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b8542faa070ad28b19f4ce790512a1dd2d5ed6b43dbe1ffffd8669f1bf8ee8773d29702b09f4352bc9b41981be262390fe296e09affff80d8669f1b123daf745dadc1d49f443ee0aed44842cf4803d7ad375c4b9d1c6860aec0a6ed56656cffff44a4d4ccdeffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 133, 66, 250, 160, 112, 173, 40, 177, 159, 76, 231, 144, 81, 42, 29, 210, 213, 237, + 107, 67, 219, 225, 255, 255, 216, 102, 159, 27, 248, 238, 135, 115, 210, 151, 2, 176, 159, 67, 82, 188, 155, 65, + 152, 27, 226, 98, 57, 15, 226, 150, 224, 154, 255, 255, 128, 216, 102, 159, 27, 18, 61, 175, 116, 93, 173, 193, + 212, 159, 68, 62, 224, 174, 212, 72, 66, 207, 72, 3, 215, 173, 55, 92, 75, 157, 28, 104, 96, 174, 192, 166, 237, + 86, 101, 108, 255, 255, 68, 164, 212, 204, 222, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1875, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16809652440547384500" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14363089669881323937" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c11716" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1718852201304008583" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d519e31bbfea71bd296771" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4ca0f531e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0604" + } + ] + }, + "cborHex": "9fbf1be947e1d5549adcb41bc753f1f4b25be1a143c117161b17da96f8601fa7874bd519e31bbfea71bd29677145a4ca0f531eff420604ff", + "cborBytes": [ + 159, 191, 27, 233, 71, 225, 213, 84, 154, 220, 180, 27, 199, 83, 241, 244, 178, 91, 225, 161, 67, 193, 23, 22, 27, + 23, 218, 150, 248, 96, 31, 167, 135, 75, 213, 25, 227, 27, 191, 234, 113, 189, 41, 103, 113, 69, 164, 202, 15, 83, + 30, 255, 66, 6, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1876, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1277024516538400365" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "369830848407760715" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00f62d774dc71f811360d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1869513005493438607" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3431f10720d5ea6b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11097165586198147545" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "703ff2dc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5796131346021550079" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b97021de37332917b988c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cca71e92dae9b0b06ffca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94e97abfea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee1412a757da5b7afeec7b" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b11b8e70825bc7e6d1b0521e7327a536f4b9fbf4b00f62d774dc71f811360d91b19f1d82c6368c88f483431f10720d5ea6b1b9a010d4e2b07b1d944703ff2dc1b506ffebfff1f07ff419b4b6b97021de37332917b988c4b9cca71e92dae9b0b06ffca4594e97abfea41a24bee1412a757da5b7afeec7bffffff", + "cborBytes": [ + 159, 27, 17, 184, 231, 8, 37, 188, 126, 109, 27, 5, 33, 231, 50, 122, 83, 111, 75, 159, 191, 75, 0, 246, 45, 119, + 77, 199, 31, 129, 19, 96, 217, 27, 25, 241, 216, 44, 99, 104, 200, 143, 72, 52, 49, 241, 7, 32, 213, 234, 107, 27, + 154, 1, 13, 78, 43, 7, 177, 217, 68, 112, 63, 242, 220, 27, 80, 111, 254, 191, 255, 31, 7, 255, 65, 155, 75, 107, + 151, 2, 29, 227, 115, 50, 145, 123, 152, 140, 75, 156, 202, 113, 233, 45, 174, 155, 11, 6, 255, 202, 69, 148, 233, + 122, 191, 234, 65, 162, 75, 238, 20, 18, 167, 87, 218, 91, 122, 254, 236, 123, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1877, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "060104" + } + ] + }, + "cborHex": "9fa043060104ff", + "cborBytes": [159, 160, 67, 6, 1, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1878, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8f473f86ce5b26f9b18066" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9664872789809601803" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2325493039062025472" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9270066978365727432" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "505427554488702318" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "382543170167768683" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14937104040230967749" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17931230713261735414" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15671644237065390470" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12220616824121505620" + } + } + } + ] + } + ] + }, + "cborHex": "9f4b8f473f86ce5b26f9b18066d8669f1b862086987bf09d0b9fd8669f1b2045cf9918ef850080ff1b80a5e4cd499162c8ffffbf1b0703a3aed4fe556e1b054f10fc891a066b1bcf4b40fc0304d9c51bf8d88754798a3df61bd97cdd66d49489861ba9985a4101ecb754ffff", + "cborBytes": [ + 159, 75, 143, 71, 63, 134, 206, 91, 38, 249, 177, 128, 102, 216, 102, 159, 27, 134, 32, 134, 152, 123, 240, 157, + 11, 159, 216, 102, 159, 27, 32, 69, 207, 153, 24, 239, 133, 0, 128, 255, 27, 128, 165, 228, 205, 73, 145, 98, 200, + 255, 255, 191, 27, 7, 3, 163, 174, 212, 254, 85, 110, 27, 5, 79, 16, 252, 137, 26, 6, 107, 27, 207, 75, 64, 252, + 3, 4, 217, 197, 27, 248, 216, 135, 84, 121, 138, 61, 246, 27, 217, 124, 221, 102, 212, 148, 137, 134, 27, 169, + 152, 90, 65, 1, 236, 183, 84, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1879, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3613652969992907925" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04753ca76c3b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffc477" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "12" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9224bc10c3c4316ac4dd96" + } + } + ] + } + ] + }, + "cborHex": "9f1b3226463af1f66c95bf4604753ca76c3b43ffc47741124118415a4b9224bc10c3c4316ac4dd96ffff", + "cborBytes": [ + 159, 27, 50, 38, 70, 58, 241, 246, 108, 149, 191, 70, 4, 117, 60, 167, 108, 59, 67, 255, 196, 119, 65, 18, 65, 24, + 65, 90, 75, 146, 36, 188, 16, 195, 196, 49, 106, 196, 221, 150, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1880, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10374018128628241194" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16593243515371242977" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28d8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ae013770ed971c0d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2535429863736812688" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "95484a47b252f5f7552d72" + }, + { + "_tag": "ByteArray", + "bytearray": "dfde7d" + }, + { + "_tag": "ByteArray", + "bytearray": "3a807f7c602bbada57" + }, + { + "_tag": "ByteArray", + "bytearray": "cb6a7c43edcefa" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6886369656517354028" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38ada0def6ab0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70e407b9" + } + } + ] + } + ] + }, + "cborHex": "9f1b8ff7ea862a59532a1be6470b0ffd41c5e14228d89f48ae013770ed971c0d1b232fa8071cf3249041d49f4b95484a47b252f5f7552d7243dfde7d493a807f7c602bbada5747cb6a7c43edcefaffffbf1bfffffffffffffffa1b5f914cb790bee22c4738ada0def6ab0e4470e407b9ffff", + "cborBytes": [ + 159, 27, 143, 247, 234, 134, 42, 89, 83, 42, 27, 230, 71, 11, 15, 253, 65, 197, 225, 66, 40, 216, 159, 72, 174, 1, + 55, 112, 237, 151, 28, 13, 27, 35, 47, 168, 7, 28, 243, 36, 144, 65, 212, 159, 75, 149, 72, 74, 71, 178, 82, 245, + 247, 85, 45, 114, 67, 223, 222, 125, 73, 58, 128, 127, 124, 96, 43, 186, 218, 87, 71, 203, 106, 124, 67, 237, 206, + 250, 255, 255, 191, 27, 255, 255, 255, 255, 255, 255, 255, 250, 27, 95, 145, 76, 183, 144, 190, 226, 44, 71, 56, + 173, 160, 222, 246, 171, 14, 68, 112, 228, 7, 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1881, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12978597787358625858" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7a2f9a" + }, + { + "_tag": "ByteArray", + "bytearray": "8e3b30344963de8d6531fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8833522265820264195" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "465321984754711001" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1628122294745876766" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "472265963607620183" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17107546946747717601" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4617936209017069485" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3599336991263706154" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10378957035493269033" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12295976477960972487" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10463239773556131033" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14357522864528100567" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17658614939996053133" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "74" + }, + { + "_tag": "ByteArray", + "bytearray": "a8556aa691b5ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16923283202703945159" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7488485720344598436" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "113641" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13687441683373087375" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b590876cf77bfd69faf5da46" + }, + { + "_tag": "ByteArray", + "bytearray": "78d87ba8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9214444535705962504" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17756490432721982076" + } + }, + { + "_tag": "ByteArray", + "bytearray": "51d8f014e9ebf48a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7114666021875225145" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8804449098348017727" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6c16e9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "401482561721692369" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f2cbb09e166dbaa35183" + }, + { + "_tag": "ByteArray", + "bytearray": "aaae7a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7355119763923609480" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18435153004234092690" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6295fbf" + }, + { + "_tag": "ByteArray", + "bytearray": "2a9b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15496105618976543955" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "617464563507095710" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11121651256847602338" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fb20dced2273d8a5c43" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13751532537380290039" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5476308980966051792" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d0c8317764806ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11762054836741109564" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0556aac10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9599333562276984025" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "339382044321386797" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12101342753277086311" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1753e93c007" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7793110861849306006" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6266440642443911657" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11521593611896226034" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1bb41d3dec8e2e80429f437a2f9a4b8e3b30344963de8d6531fd1b7a96f9b2e1b87703ffffbf1b067527e1377bf9d91b16984099d538c91e1b068dd3644856fa571bed6a374ef33757e11b40163483e5e05fad1b31f369ec67324c2a1b9009766f079e1e291baaa41575b76c28c71b9134e5232e8d44d91bc7402af9d2bf0cd71bf51000ba83dede8d41adff9f417447a8556aa691b5ab1beadb9468d280edc71b67ec721642b997a4ffbf431136411bbdf38fb11d53da8fffff9f4cb590876cf77bfd69faf5da464478d87ba8d8669f1b7fe0487c294b080880ff9f1bf66bb9f87c04127c4851d8f014e9ebf48a1b62bc5f0d416a1239ff1b7a2fafce960ab83fff436c16e9d8669f1b05925a4342ef70d19f4af2cbb09e166dbaa3518343aaae7ad8669f1b6612a274c91f27889f1bffd6d1fbd559309244d6295fbf422a9b1bd70d39f5650814d31b0891acbfc13b689effffbf1b9a580ae4a02d92a24a6fb20dced2273d8a5c431bbed741fbe7c73df71b4bffc200e2c34fd0481d0c8317764806ba1ba33b368e549e773c45b0556aac101b8537af03f40134d9ffffffd8669f1b04b5ba2bd2ec112d9fbf1ba7f09b1e52540a6746e1753e93c007ff801b6c26b10a07c423961b56f6de9032f0a1e9d8669f1b9fe4ec58937c00f280ffffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 180, 29, 61, 236, 142, 46, 128, 66, 159, 67, 122, 47, 154, 75, 142, 59, 48, 52, 73, + 99, 222, 141, 101, 49, 253, 27, 122, 150, 249, 178, 225, 184, 119, 3, 255, 255, 191, 27, 6, 117, 39, 225, 55, 123, + 249, 217, 27, 22, 152, 64, 153, 213, 56, 201, 30, 27, 6, 141, 211, 100, 72, 86, 250, 87, 27, 237, 106, 55, 78, + 243, 55, 87, 225, 27, 64, 22, 52, 131, 229, 224, 95, 173, 27, 49, 243, 105, 236, 103, 50, 76, 42, 27, 144, 9, 118, + 111, 7, 158, 30, 41, 27, 170, 164, 21, 117, 183, 108, 40, 199, 27, 145, 52, 229, 35, 46, 141, 68, 217, 27, 199, + 64, 42, 249, 210, 191, 12, 215, 27, 245, 16, 0, 186, 131, 222, 222, 141, 65, 173, 255, 159, 65, 116, 71, 168, 85, + 106, 166, 145, 181, 171, 27, 234, 219, 148, 104, 210, 128, 237, 199, 27, 103, 236, 114, 22, 66, 185, 151, 164, + 255, 191, 67, 17, 54, 65, 27, 189, 243, 143, 177, 29, 83, 218, 143, 255, 255, 159, 76, 181, 144, 135, 108, 247, + 123, 253, 105, 250, 245, 218, 70, 68, 120, 216, 123, 168, 216, 102, 159, 27, 127, 224, 72, 124, 41, 75, 8, 8, 128, + 255, 159, 27, 246, 107, 185, 248, 124, 4, 18, 124, 72, 81, 216, 240, 20, 233, 235, 244, 138, 27, 98, 188, 95, 13, + 65, 106, 18, 57, 255, 27, 122, 47, 175, 206, 150, 10, 184, 63, 255, 67, 108, 22, 233, 216, 102, 159, 27, 5, 146, + 90, 67, 66, 239, 112, 209, 159, 74, 242, 203, 176, 158, 22, 109, 186, 163, 81, 131, 67, 170, 174, 122, 216, 102, + 159, 27, 102, 18, 162, 116, 201, 31, 39, 136, 159, 27, 255, 214, 209, 251, 213, 89, 48, 146, 68, 214, 41, 95, 191, + 66, 42, 155, 27, 215, 13, 57, 245, 101, 8, 20, 211, 27, 8, 145, 172, 191, 193, 59, 104, 158, 255, 255, 191, 27, + 154, 88, 10, 228, 160, 45, 146, 162, 74, 111, 178, 13, 206, 210, 39, 61, 138, 92, 67, 27, 190, 215, 65, 251, 231, + 199, 61, 247, 27, 75, 255, 194, 0, 226, 195, 79, 208, 72, 29, 12, 131, 23, 118, 72, 6, 186, 27, 163, 59, 54, 142, + 84, 158, 119, 60, 69, 176, 85, 106, 172, 16, 27, 133, 55, 175, 3, 244, 1, 52, 217, 255, 255, 255, 216, 102, 159, + 27, 4, 181, 186, 43, 210, 236, 17, 45, 159, 191, 27, 167, 240, 155, 30, 82, 84, 10, 103, 70, 225, 117, 62, 147, + 192, 7, 255, 128, 27, 108, 38, 177, 10, 7, 196, 35, 150, 27, 86, 246, 222, 144, 50, 240, 161, 233, 216, 102, 159, + 27, 159, 228, 236, 88, 147, 124, 0, 242, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1882, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14652439374502095403" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12900887296818017737" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9c89c031da25380ac6" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15415342775583351204" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8495927850760591222" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "034a11" + }, + { + "_tag": "ByteArray", + "bytearray": "53" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7313613178296823728" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d9b966a7fbf25d004" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8169460505674340969" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5c0125a98" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12144979275911731590" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13098945028083629040" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16974228782407039739" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f" + } + } + ] + } + ] + }, + "cborHex": "9f1bcb57ebfaaa24ea2bd8669f1bb30928a5062ff5c99f499c89c031da25380ac69f1bd5ee4c949587a1a41b75e7995dedeed776ff43034a114153ffffbf1b657f2c6fbcff6fb0496d9b966a7fbf25d0041b715fc10bd74d5a6945c5c0125a981ba88ba24df93319861bb5c8cd1a134b3bf01beb909324ef953afb412fffff", + "cborBytes": [ + 159, 27, 203, 87, 235, 250, 170, 36, 234, 43, 216, 102, 159, 27, 179, 9, 40, 165, 6, 47, 245, 201, 159, 73, 156, + 137, 192, 49, 218, 37, 56, 10, 198, 159, 27, 213, 238, 76, 148, 149, 135, 161, 164, 27, 117, 231, 153, 93, 237, + 238, 215, 118, 255, 67, 3, 74, 17, 65, 83, 255, 255, 191, 27, 101, 127, 44, 111, 188, 255, 111, 176, 73, 109, 155, + 150, 106, 127, 191, 37, 208, 4, 27, 113, 95, 193, 11, 215, 77, 90, 105, 69, 197, 192, 18, 90, 152, 27, 168, 139, + 162, 77, 249, 51, 25, 134, 27, 181, 200, 205, 26, 19, 75, 59, 240, 27, 235, 144, 147, 36, 239, 149, 58, 251, 65, + 47, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1883, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16759463756778208927" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14656903651727342486" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ec" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2c7e00c1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14966420626433776630" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5573e70c20ffddbe7e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4134908763682824381" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f097ac" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5132534522218697342" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14057551118738654437" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f9f131be895937dc8cc7e9fd8669f1bcb67c83734557b969f0910ffffd8669f1bfffffffffffffffa9f41ecffff442c7e00c1ffd8669f1bfffffffffffffff29f9f1bcfb36843a5aa1bf6495573e70c20ffddbe7e1b3962259ce5f6e0bdff43f097acd8669f1bfffffffffffffffe80ff1b473a6cf46246527e08ffff1bc31674432c5004e5a0ff", + "cborBytes": [ + 159, 159, 19, 27, 232, 149, 147, 125, 200, 204, 126, 159, 216, 102, 159, 27, 203, 103, 200, 55, 52, 85, 123, 150, + 159, 9, 16, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 65, 236, 255, 255, 68, 44, + 126, 0, 193, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 159, 27, 207, 179, 104, 67, 165, + 170, 27, 246, 73, 85, 115, 231, 12, 32, 255, 221, 190, 126, 27, 57, 98, 37, 156, 229, 246, 224, 189, 255, 67, 240, + 151, 172, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 128, 255, 27, 71, 58, 108, 244, 98, 70, 82, + 126, 8, 255, 255, 27, 195, 22, 116, 67, 44, 80, 4, 229, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1884, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "43ec1992f1cdbef916" + }, + { + "_tag": "ByteArray", + "bytearray": "e751" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8570497231022232860" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d28d74" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0bd1e6d60ff7fe12942977" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e3f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b349dce89f58a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9999773943085042807" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8881507718823205899" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17541563343656030228" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9fbbb477d85a5550b21a9786" + }, + { + "_tag": "ByteArray", + "bytearray": "d71eed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7802426985172546653" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18176452646197872" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2546196675216387506" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b45625ae0b9d30fd634ffe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4809468144984574935" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb51030d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3731112984431649992" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4965792661405511237" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5182469678963045702" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "383217575035587171" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64f9afced0890203032f" + } + ] + }, + "cborHex": "9f9f4943ec1992f1cdbef91642e751bf1b76f085d2bb8c951c43d28d744b0bd1e6d60ff7fe12942977426e3f47b349dce89f58a81b8ac6556b8fca8c7741d31b7b417436ca58dc0bffa09f1bf37026ebffa19014ffff9f9f4c9fbbb477d85a5550b21a978643d71eed1b6c47ca010521b45d1b004093632b40da70ff9f1b2355e862c28dadb24bb45625ae0b9d30fd634ffe1b42bea9cbd45ccbd744cb51030dffbf1b33c7937db5e564c81b44ea0a1d9b512e451b47ebd4b711d335461b0551765aa7aeca63ffff074a64f9afced0890203032fff", + "cborBytes": [ + 159, 159, 73, 67, 236, 25, 146, 241, 205, 190, 249, 22, 66, 231, 81, 191, 27, 118, 240, 133, 210, 187, 140, 149, + 28, 67, 210, 141, 116, 75, 11, 209, 230, 214, 15, 247, 254, 18, 148, 41, 119, 66, 110, 63, 71, 179, 73, 220, 232, + 159, 88, 168, 27, 138, 198, 85, 107, 143, 202, 140, 119, 65, 211, 27, 123, 65, 116, 54, 202, 88, 220, 11, 255, + 160, 159, 27, 243, 112, 38, 235, 255, 161, 144, 20, 255, 255, 159, 159, 76, 159, 187, 180, 119, 216, 90, 85, 80, + 178, 26, 151, 134, 67, 215, 30, 237, 27, 108, 71, 202, 1, 5, 33, 180, 93, 27, 0, 64, 147, 99, 43, 64, 218, 112, + 255, 159, 27, 35, 85, 232, 98, 194, 141, 173, 178, 75, 180, 86, 37, 174, 11, 157, 48, 253, 99, 79, 254, 27, 66, + 190, 169, 203, 212, 92, 203, 215, 68, 203, 81, 3, 13, 255, 191, 27, 51, 199, 147, 125, 181, 229, 100, 200, 27, 68, + 234, 10, 29, 155, 81, 46, 69, 27, 71, 235, 212, 183, 17, 211, 53, 70, 27, 5, 81, 118, 90, 167, 174, 202, 99, 255, + 255, 7, 74, 100, 249, 175, 206, 208, 137, 2, 3, 3, 47, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1885, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "56" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15298027649903677928" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd45770e4fd89014" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "556a8f9313" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1be4997c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2b7ef" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11085473257819213243" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "303799632328425302" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e3d4cc8124df04f6735963ed" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9953573269729055289" + } + } + ] + }, + "cborHex": "9fbf41561bd44d83185c9cd1e848dd45770e4fd8901445556a8f931345e1be4997c843f2b7efff1b99d78331d3680dbbd8669f1b04375027efd47f569fa04ce3d4cc8124df04f6735963edffff1b8a2232270c061239ff", + "cborBytes": [ + 159, 191, 65, 86, 27, 212, 77, 131, 24, 92, 156, 209, 232, 72, 221, 69, 119, 14, 79, 216, 144, 20, 69, 85, 106, + 143, 147, 19, 69, 225, 190, 73, 151, 200, 67, 242, 183, 239, 255, 27, 153, 215, 131, 49, 211, 104, 13, 187, 216, + 102, 159, 27, 4, 55, 80, 39, 239, 212, 127, 86, 159, 160, 76, 227, 212, 204, 129, 36, 223, 4, 246, 115, 89, 99, + 237, 255, 255, 27, 138, 34, 50, 39, 12, 6, 18, 57, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1886, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5268006693243711139" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6c5f4afc78315208" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14911315894235375186" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "95" + } + ] + }, + "cborHex": "9f1b491bb82d292beea3486c5f4afc78315208d8669f1bceefa2cd6189265280ffa04195ff", + "cborBytes": [ + 159, 27, 73, 27, 184, 45, 41, 43, 238, 163, 72, 108, 95, 74, 252, 120, 49, 82, 8, 216, 102, 159, 27, 206, 239, + 162, 205, 97, 137, 38, 82, 128, 255, 160, 65, 149, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1887, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "61" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7882935639799938521" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9966974478345973802" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10367174916199707276" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1548471105506901265" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6b7dad76a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "642d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14233418720148331482" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5611272795774389146" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "344d3a622e2dd489fc0542" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0e48818e2abf0c4924" + }, + { + "_tag": "ByteArray", + "bytearray": "17bedc" + } + ] + } + ] + }, + "cborHex": "9fbf41611b6d65d032e58abdd94296d441c5ffd8669f1b8a51ce7b1332302a9fbf1b8fdf9aa89c6c728c1b157d46442cb1fd11414f45e6b7dad76a42642d1bc58742ea01d61bdaffbf1b4ddf3ee0c1f20b9a41e6ff9f4b344d3a622e2dd489fc0542ff490e48818e2abf0c49244317bedcffffff", + "cborBytes": [ + 159, 191, 65, 97, 27, 109, 101, 208, 50, 229, 138, 189, 217, 66, 150, 212, 65, 197, 255, 216, 102, 159, 27, 138, + 81, 206, 123, 19, 50, 48, 42, 159, 191, 27, 143, 223, 154, 168, 156, 108, 114, 140, 27, 21, 125, 70, 68, 44, 177, + 253, 17, 65, 79, 69, 230, 183, 218, 215, 106, 66, 100, 45, 27, 197, 135, 66, 234, 1, 214, 27, 218, 255, 191, 27, + 77, 223, 62, 224, 193, 242, 11, 154, 65, 230, 255, 159, 75, 52, 77, 58, 98, 46, 45, 212, 137, 252, 5, 66, 255, 73, + 14, 72, 129, 142, 42, 191, 12, 73, 36, 67, 23, 190, 220, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1888, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2912247991297420151" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "700074628035599235" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "68e9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10650380210702781277" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "23413da7fafb54e332b1" + }, + { + "_tag": "ByteArray", + "bytearray": "bd5d873f3cfe88c6d51a5c" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b286a621e4b20ab7780ffd8669f1b09b72a2a40535b839f4268e9d8669f1b93cdc05f9dca0b5d9f4a23413da7fafb54e332b14bbd5d873f3cfe88c6d51a5cffffffff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 40, 106, 98, 30, 75, 32, 171, 119, 128, 255, 216, 102, 159, 27, 9, 183, 42, 42, 64, 83, + 91, 131, 159, 66, 104, 233, 216, 102, 159, 27, 147, 205, 192, 95, 157, 202, 11, 93, 159, 74, 35, 65, 61, 167, 250, + 251, 84, 227, 50, 177, 75, 189, 93, 135, 63, 60, 254, 136, 198, 213, 26, 92, 255, 255, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1889, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "336255281286035258" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1867735297400589483" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10528536862422629155" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11853575541755549050" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f684242a2ecc7c9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16953081997231700649" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e07a8a4a41e17d590bf" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12946536182798493146" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8cd137d62c" + }, + { + "_tag": "ByteArray", + "bytearray": "4180647767ef63" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05e905" + } + ] + }, + "cborHex": "9f1b04aa9e6592e7373abf1b19eb875b78054cab1b921ce07e694e7b231ba4805c26fc99157a484f684242a2ecc7c91beb4572415510baa94a0e07a8a4a41e17d590bfff9f1bb3ab5610877225da458cd137d62c474180647767ef63ff4305e905ff", + "cborBytes": [ + 159, 27, 4, 170, 158, 101, 146, 231, 55, 58, 191, 27, 25, 235, 135, 91, 120, 5, 76, 171, 27, 146, 28, 224, 126, + 105, 78, 123, 35, 27, 164, 128, 92, 38, 252, 153, 21, 122, 72, 79, 104, 66, 66, 162, 236, 199, 201, 27, 235, 69, + 114, 65, 85, 16, 186, 169, 74, 14, 7, 168, 164, 164, 30, 23, 213, 144, 191, 255, 159, 27, 179, 171, 86, 16, 135, + 114, 37, 218, 69, 140, 209, 55, 214, 44, 71, 65, 128, 100, 119, 103, 239, 99, 255, 67, 5, 233, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1890, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "042b06014caa94fef4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1506182786695339971" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "28258b3b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15186403560793128325" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "92e6c71acad89448bca89bd2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3706763415668144684" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd2498c4ed56709af00a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8034432752253338600" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe7c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66d56be85bf708463bd13a4b" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7528872624559792179" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84947fed77b14b1e98" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d334e84b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a35e64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3450057063681356993" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f49042b06014caa94fef4d8669f1b14e70943afc89fc39f4428258b3b1bd2c0f193d8cd3d85a0bf4c92e6c71acad89448bca89bd21b337111aff1503a2c4afd2498c4ed56709af00a1b6f800a0519d303e842fe7c4c66d56be85bf708463bd13a4bffbf1b687bedc32a0ca0334984947fed77b14b1e98410d44d334e84b43a35e641b2fe1109ec78df4c1ffffffff", + "cborBytes": [ + 159, 73, 4, 43, 6, 1, 76, 170, 148, 254, 244, 216, 102, 159, 27, 20, 231, 9, 67, 175, 200, 159, 195, 159, 68, 40, + 37, 139, 59, 27, 210, 192, 241, 147, 216, 205, 61, 133, 160, 191, 76, 146, 230, 199, 26, 202, 216, 148, 72, 188, + 168, 155, 210, 27, 51, 113, 17, 175, 241, 80, 58, 44, 74, 253, 36, 152, 196, 237, 86, 112, 154, 240, 10, 27, 111, + 128, 10, 5, 25, 211, 3, 232, 66, 254, 124, 76, 102, 213, 107, 232, 91, 247, 8, 70, 59, 209, 58, 75, 255, 191, 27, + 104, 123, 237, 195, 42, 12, 160, 51, 73, 132, 148, 127, 237, 119, 177, 75, 30, 152, 65, 13, 68, 211, 52, 232, 75, + 67, 163, 94, 100, 27, 47, 225, 16, 158, 199, 141, 244, 193, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1891, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06020018" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15243352791356344270" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2873796225249088906" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbf906" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7488947912120718854" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5543433125504301019" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3212074754166995192" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf0944060200180d1bd38b4499dac107ce1b27e1c670dad4958a43cbf9061b67ee1672ab5bd6061b4cee3b0ea9d137db1bffffffffffffffec1b2c9394f87a1fb8f8ffff", + "cborBytes": [ + 159, 191, 9, 68, 6, 2, 0, 24, 13, 27, 211, 139, 68, 153, 218, 193, 7, 206, 27, 39, 225, 198, 112, 218, 212, 149, + 138, 67, 203, 249, 6, 27, 103, 238, 22, 114, 171, 91, 214, 6, 27, 76, 238, 59, 14, 169, 209, 55, 219, 27, 255, + 255, 255, 255, 255, 255, 255, 236, 27, 44, 147, 148, 248, 122, 31, 184, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1892, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14694882199169774100" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "37" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4112a4d5b8645eab94" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8dfea9b3564748f1a8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7297262" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed4e42567218f78a65" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2011192095737555013" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be07c7e10681ea061b33b1ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13004464917072551387" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "208a1380" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13278056332950526348" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66ef9d8fe6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16236492424161123341" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12085046415924365675" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17288258181696486434" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12774692545099613155" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "30a436c5e2cabf41" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10053050209529565555" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "204485" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7b0e04" + } + ] + }, + "cborHex": "9fd8669f1bcbeeb580d9b9b2149f4137bf494112a4d5b8645eab94498dfea9b3564748f1a844a729726249ed4e42567218f78a65ffffffbf1b1be9308e2982a8454cbe07c7e10681ea061b33b1ba1bb47923f104239ddb44208a13801bb84521e27924598c4566ef9d8fe61be1539bd5cc71dc0d1ba7b6b5af9b47896b1befec3b3819427c221bb148d32fc17e43e3ff9f809f4830a436c5e2cabf411b8b839be6f82d1173ffa043204485ff437b0e04ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 203, 238, 181, 128, 217, 185, 178, 20, 159, 65, 55, 191, 73, 65, 18, 164, 213, 184, 100, + 94, 171, 148, 73, 141, 254, 169, 179, 86, 71, 72, 241, 168, 68, 167, 41, 114, 98, 73, 237, 78, 66, 86, 114, 24, + 247, 138, 101, 255, 255, 255, 191, 27, 27, 233, 48, 142, 41, 130, 168, 69, 76, 190, 7, 199, 225, 6, 129, 234, 6, + 27, 51, 177, 186, 27, 180, 121, 35, 241, 4, 35, 157, 219, 68, 32, 138, 19, 128, 27, 184, 69, 33, 226, 121, 36, 89, + 140, 69, 102, 239, 157, 143, 230, 27, 225, 83, 155, 213, 204, 113, 220, 13, 27, 167, 182, 181, 175, 155, 71, 137, + 107, 27, 239, 236, 59, 56, 25, 66, 124, 34, 27, 177, 72, 211, 47, 193, 126, 67, 227, 255, 159, 128, 159, 72, 48, + 164, 54, 197, 226, 202, 191, 65, 27, 139, 131, 155, 230, 248, 45, 17, 115, 255, 160, 67, 32, 68, 133, 255, 67, + 123, 14, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1893, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "617293554979834774" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16268257220548722444" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2913168997643854464" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "269198317320928167" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12203108814520772018" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1388411645984599654" + } + }, + { + "_tag": "ByteArray", + "bytearray": "804cbd0e2538550d1607" + }, + { + "_tag": "ByteArray", + "bytearray": "4186fb88c18ffc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1119342985319181990" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15592716205274732527" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2859929038409418629" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe8f7f79a9f381" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3016969366414029553" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13398013976274582927" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9990785116664145016" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16736295384026071049" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14469929287859975853" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c40d" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b08911137bab60b961be1c475bfc97d7f0c1b286da7c4cb3e22801b03bc62717e0bfba71ba95a26cfdcf2e5b24148ff1b1344a10930ed6e664a804cbd0e2538550d1607474186fb88c18ffcbf1b0f88b483bdc66ea61bd86474c662e097ef1b27b0824ed137c78547fe8f7f79a9f3811b29de6da77757f2f11bb9ef4eb9c790bd8f1b8aa666215206a4781be84343faa4e240091bc8cf8405b7ea36ad42c40dffff", + "cborBytes": [ + 159, 191, 27, 8, 145, 17, 55, 186, 182, 11, 150, 27, 225, 196, 117, 191, 201, 125, 127, 12, 27, 40, 109, 167, 196, + 203, 62, 34, 128, 27, 3, 188, 98, 113, 126, 11, 251, 167, 27, 169, 90, 38, 207, 220, 242, 229, 178, 65, 72, 255, + 27, 19, 68, 161, 9, 48, 237, 110, 102, 74, 128, 76, 189, 14, 37, 56, 85, 13, 22, 7, 71, 65, 134, 251, 136, 193, + 143, 252, 191, 27, 15, 136, 180, 131, 189, 198, 110, 166, 27, 216, 100, 116, 198, 98, 224, 151, 239, 27, 39, 176, + 130, 78, 209, 55, 199, 133, 71, 254, 143, 127, 121, 169, 243, 129, 27, 41, 222, 109, 167, 119, 87, 242, 241, 27, + 185, 239, 78, 185, 199, 144, 189, 143, 27, 138, 166, 102, 33, 82, 6, 164, 120, 27, 232, 67, 67, 250, 164, 226, 64, + 9, 27, 200, 207, 132, 5, 183, 234, 54, 173, 66, 196, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1894, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b9e7b05d2b01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10732176747163998467" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "541652713273456020" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14442768454210097678" + } + } + ] + }, + "cborHex": "9f46b9e7b05d2b011b94f059e3d96ad9031b07845645de4a75941bc86f05635669120eff", + "cborBytes": [ + 159, 70, 185, 231, 176, 93, 43, 1, 27, 148, 240, 89, 227, 217, 106, 217, 3, 27, 7, 132, 86, 69, 222, 74, 117, 148, + 27, 200, 111, 5, 99, 86, 105, 18, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1895, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12865908897676366251" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0501042ec105" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2242041301792039926" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5c74" + }, + { + "_tag": "ByteArray", + "bytearray": "68" + }, + { + "_tag": "ByteArray", + "bytearray": "3b20" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11825195799838777826" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f532d557fa" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1415404634711290665" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14860609498737971774" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12596646233210288333" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3663143313927776447" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18403870768630607812" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9054650517033964729" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0d76cf070147fda80389" + } + ] + }, + "cborHex": "9f1bb28ce3f9d68991ab460501042ec105d8669f1b1f1d54af6511a3f680ff9f9f425c744168423b201ba41b88ed68d4e1e245f532d557faffbf1b13a48704216873291bce3b7d9aae12923e1baed047025bc2f8cd1b32d6196f940328bf1bff67aef4c86c2fc41b7da894abf11dd4b9ffff4a0d76cf070147fda80389ff", + "cborBytes": [ + 159, 27, 178, 140, 227, 249, 214, 137, 145, 171, 70, 5, 1, 4, 46, 193, 5, 216, 102, 159, 27, 31, 29, 84, 175, 101, + 17, 163, 246, 128, 255, 159, 159, 66, 92, 116, 65, 104, 66, 59, 32, 27, 164, 27, 136, 237, 104, 212, 225, 226, 69, + 245, 50, 213, 87, 250, 255, 191, 27, 19, 164, 135, 4, 33, 104, 115, 41, 27, 206, 59, 125, 154, 174, 18, 146, 62, + 27, 174, 208, 71, 2, 91, 194, 248, 205, 27, 50, 214, 25, 111, 148, 3, 40, 191, 27, 255, 103, 174, 244, 200, 108, + 47, 196, 27, 125, 168, 148, 171, 241, 29, 212, 185, 255, 255, 74, 13, 118, 207, 7, 1, 71, 253, 168, 3, 137, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1896, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d32604d59e07344e154" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df541f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bba0f20c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15169494714783215234" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3710694441393675866" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17058394874333834616" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a68cac91010ad98ad624" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11207638524766301594" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10241011521305055753" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f153831837ac2ae87650a7b8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10906782980688197982" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acefa6ec0534" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12104899727728289053" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7c4ab08d639dafdb648" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16259172796571320085" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16547206946810730874" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5428340105960642654" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aa3ff60a" + }, + { + "_tag": "ByteArray", + "bytearray": "b09de5781120f298c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16728698182941703059" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf4a2d32604d59e07344e154417d43df541f44bba0f20cff1bd284df1258d1ae82809fd8669f1b337f08ef31495e5a9f1becbb97c24b032d784aa68cac91010ad98ad6241b9b8987db8fadad9affffbf1b8e1f61b82c1212094cf153831837ac2ae87650a7b81b975cad559632395e46acefa6ec05341ba7fd3e2af8f7a51d4ab7c4ab08d639dafdb6481be1a42f838153ff151be5a37d0c1987997aff9f1b4b555690d7ca585e44aa3ff60a49b09de5781120f298c41be828465d6cf67b93ffffff", + "cborBytes": [ + 159, 191, 74, 45, 50, 96, 77, 89, 224, 115, 68, 225, 84, 65, 125, 67, 223, 84, 31, 68, 187, 160, 242, 12, 255, 27, + 210, 132, 223, 18, 88, 209, 174, 130, 128, 159, 216, 102, 159, 27, 51, 127, 8, 239, 49, 73, 94, 90, 159, 27, 236, + 187, 151, 194, 75, 3, 45, 120, 74, 166, 140, 172, 145, 1, 10, 217, 138, 214, 36, 27, 155, 137, 135, 219, 143, 173, + 173, 154, 255, 255, 191, 27, 142, 31, 97, 184, 44, 18, 18, 9, 76, 241, 83, 131, 24, 55, 172, 42, 232, 118, 80, + 167, 184, 27, 151, 92, 173, 85, 150, 50, 57, 94, 70, 172, 239, 166, 236, 5, 52, 27, 167, 253, 62, 42, 248, 247, + 165, 29, 74, 183, 196, 171, 8, 214, 57, 218, 253, 182, 72, 27, 225, 164, 47, 131, 129, 83, 255, 21, 27, 229, 163, + 125, 12, 25, 135, 153, 122, 255, 159, 27, 75, 85, 86, 144, 215, 202, 88, 94, 68, 170, 63, 246, 10, 73, 176, 157, + 229, 120, 17, 32, 242, 152, 196, 27, 232, 40, 70, 93, 108, 246, 123, 147, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1897, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "60096ddeafe7dc08b594" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "744bbe59" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e55a10b49a027ef9bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10899176672950278233" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8952822849996634066" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5977146469830716784" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4a60096ddeafe7dc08b59444744bbe5949e55a10b49a027ef9bf1b9741a7700f6cd859ff0dbf1b7c3ed0f2af0cb7d21b52f3170bc8bd6d70ffff", + "cborBytes": [ + 159, 191, 74, 96, 9, 109, 222, 175, 231, 220, 8, 181, 148, 68, 116, 75, 190, 89, 73, 229, 90, 16, 180, 154, 2, + 126, 249, 191, 27, 151, 65, 167, 112, 15, 108, 216, 89, 255, 13, 191, 27, 124, 62, 208, 242, 175, 12, 183, 210, + 27, 82, 243, 23, 11, 200, 189, 109, 112, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1898, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4005" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a61c5c81e0dc9c667" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17243429491116414344" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bd7a5b7c4725c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2452962991089956512" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b30f72d060cfdb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11902211465902170418" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1ce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c512d9189ba03faf" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "155302f8fd0049f8a3c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + }, + "cborHex": "9f424005bf493a61c5c81e0dc9c6671bef4cf7c3377d1588477bd7a5b7c4725c1b220aacd81318b6a047b30f72d060cfdb1ba52d264482ae213242c1ce48c512d9189ba03fafff4a155302f8fd0049f8a3c414ff", + "cborBytes": [ + 159, 66, 64, 5, 191, 73, 58, 97, 197, 200, 30, 13, 201, 198, 103, 27, 239, 76, 247, 195, 55, 125, 21, 136, 71, + 123, 215, 165, 183, 196, 114, 92, 27, 34, 10, 172, 216, 19, 24, 182, 160, 71, 179, 15, 114, 208, 96, 207, 219, 27, + 165, 45, 38, 68, 130, 174, 33, 50, 66, 193, 206, 72, 197, 18, 217, 24, 155, 160, 63, 175, 255, 74, 21, 83, 2, 248, + 253, 0, 73, 248, 163, 196, 20, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1899, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "54186b" + } + ] + }, + "cborHex": "9f4354186bff", + "cborBytes": [159, 67, 84, 24, 107, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1900, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13338211905550053057" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17627806608488005288" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6384902287375739951" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d10d29" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13448397370927548782" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12352153867405421566" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12853530105633416270" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1567341396566439577" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6584206205052508073" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18394499631813365275" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15483309219578410344" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "64016f9d8184fd" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12248055709772023612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7987544379903128701" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1392444420160128869" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fe" + } + ] + } + ] + }, + "cborHex": "9fbf0441a70a080e1bb91ad90f29326ec1141bf4a28cb6dc35fea81b589bbacd3c9c2c2f43d10d291bbaa24e27fc6f096e1bab6baa7f75aaebfeffd8669f1bb260e987b811a44e9f9f1b15c050b2301b76991b5b5fcca8ac13d7a91bff4663f4f74a0e1b1bd6dfc3b37c807568ff4764016f9d8184fdffffd8669f1ba9f9d5c66a28073c9f1b6ed9754b2fcb347d1b1352f4d2991e876541feffffff", + "cborBytes": [ + 159, 191, 4, 65, 167, 10, 8, 14, 27, 185, 26, 217, 15, 41, 50, 110, 193, 20, 27, 244, 162, 140, 182, 220, 53, 254, + 168, 27, 88, 155, 186, 205, 60, 156, 44, 47, 67, 209, 13, 41, 27, 186, 162, 78, 39, 252, 111, 9, 110, 27, 171, + 107, 170, 127, 117, 170, 235, 254, 255, 216, 102, 159, 27, 178, 96, 233, 135, 184, 17, 164, 78, 159, 159, 27, 21, + 192, 80, 178, 48, 27, 118, 153, 27, 91, 95, 204, 168, 172, 19, 215, 169, 27, 255, 70, 99, 244, 247, 74, 14, 27, + 27, 214, 223, 195, 179, 124, 128, 117, 104, 255, 71, 100, 1, 111, 157, 129, 132, 253, 255, 255, 216, 102, 159, 27, + 169, 249, 213, 198, 106, 40, 7, 60, 159, 27, 110, 217, 117, 75, 47, 203, 52, 125, 27, 19, 82, 244, 210, 153, 30, + 135, 101, 65, 254, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1901, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17938662866169560897" + } + } + ] + }, + "cborHex": "9f1bf8f2eed56b86ff41ff", + "cborBytes": [159, 27, 248, 242, 238, 213, 107, 134, 255, 65, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1902, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8331416837987257925" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5a82" + }, + { + "_tag": "ByteArray", + "bytearray": "dc98838b3636b6556ca847" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4297651114121790970" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7678579776576361522" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3028751388269714202" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7822921786448870987" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8dc078bd0a953d18a3c836ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7408606638943988467" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be096fd9b0bd2460" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2be6235e8df4" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18090044372282946102" + } + }, + { + "_tag": "ByteArray", + "bytearray": "45fdc7b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3154966543751066484" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14863011840505258152" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a7105c8db91782e689b588" + }, + { + "_tag": "ByteArray", + "bytearray": "63551cb3a55f95f395" + }, + { + "_tag": "ByteArray", + "bytearray": "ba" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "996510299112987836" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b3405bc637a1a983" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9939858851583937610" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5fef94f121152c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15282943866315856072" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18152284581367805626" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9712034160590842407" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13097184314315268462" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8445346020a65531" + }, + { + "_tag": "ByteArray", + "bytearray": "416cce570e4b32005778af" + }, + { + "_tag": "ByteArray", + "bytearray": "df8e10" + }, + { + "_tag": "ByteArray", + "bytearray": "c597e1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11993443334630622056" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18382784360075242842" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b739f2378eff04e459f425a824bdc98838b3636b6556ca847ffff1b3ba452eb19ca85fa10d87e9fbf1b6a8fcb9fba5514321b2a08495732c99b1a1b6c9099eacaf2fe4b41f04c8dc078bd0a953d18a3c836ce1b66d0a87c52db6af348be096fd9b0bd2460462be6235e8df4ff9f1bfb0cbf82ecfab2364445fdc7b81b2bc8b15b16863374ffd8669f1bce44068575bda0a89f4ba7105c8db91782e689b5884963551cb3a55f95f39541baffffff9f9f1b0dd450d659a5dcbc48b3405bc637a1a9831b89f178f63e2ecc4a475fef94f121152c1bd417ec7951fdd8c8ff1bfbe9dea6de3a76ba1b86c8139ccc79ea27d8669f1bb5c28bbdf494616e9f488445346020a655314b416cce570e4b32005778af43df8e1043c597e11ba671452b3a6f4368ffff1bff1cc4fab4e42d5affff", + "cborBytes": [ + 159, 216, 102, 159, 27, 115, 159, 35, 120, 239, 240, 78, 69, 159, 66, 90, 130, 75, 220, 152, 131, 139, 54, 54, + 182, 85, 108, 168, 71, 255, 255, 27, 59, 164, 82, 235, 25, 202, 133, 250, 16, 216, 126, 159, 191, 27, 106, 143, + 203, 159, 186, 85, 20, 50, 27, 42, 8, 73, 87, 50, 201, 155, 26, 27, 108, 144, 153, 234, 202, 242, 254, 75, 65, + 240, 76, 141, 192, 120, 189, 10, 149, 61, 24, 163, 200, 54, 206, 27, 102, 208, 168, 124, 82, 219, 106, 243, 72, + 190, 9, 111, 217, 176, 189, 36, 96, 70, 43, 230, 35, 94, 141, 244, 255, 159, 27, 251, 12, 191, 130, 236, 250, 178, + 54, 68, 69, 253, 199, 184, 27, 43, 200, 177, 91, 22, 134, 51, 116, 255, 216, 102, 159, 27, 206, 68, 6, 133, 117, + 189, 160, 168, 159, 75, 167, 16, 92, 141, 185, 23, 130, 230, 137, 181, 136, 73, 99, 85, 28, 179, 165, 95, 149, + 243, 149, 65, 186, 255, 255, 255, 159, 159, 27, 13, 212, 80, 214, 89, 165, 220, 188, 72, 179, 64, 91, 198, 55, + 161, 169, 131, 27, 137, 241, 120, 246, 62, 46, 204, 74, 71, 95, 239, 148, 241, 33, 21, 44, 27, 212, 23, 236, 121, + 81, 253, 216, 200, 255, 27, 251, 233, 222, 166, 222, 58, 118, 186, 27, 134, 200, 19, 156, 204, 121, 234, 39, 216, + 102, 159, 27, 181, 194, 139, 189, 244, 148, 97, 110, 159, 72, 132, 69, 52, 96, 32, 166, 85, 49, 75, 65, 108, 206, + 87, 14, 75, 50, 0, 87, 120, 175, 67, 223, 142, 16, 67, 197, 151, 225, 27, 166, 113, 69, 43, 58, 111, 67, 104, 255, + 255, 27, 255, 28, 196, 250, 180, 228, 45, 90, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1903, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1982827448398836419" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14909979204116383579" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4667245791733063957" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aceb2c330cfc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13612348432230303982" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "668366655536874798" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5172efc2f8" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1b846b0f10b4f2c39fd8669f1bceeae316f5d1875b9f1b40c56351c7afa11546aceb2c330cfc1bbce8c6c71deec8ee410bffff1b094683ee9afdc52e455172efc2f8ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 27, 132, 107, 15, 16, 180, 242, 195, 159, 216, 102, 159, 27, 206, 234, 227, 22, 245, 209, + 135, 91, 159, 27, 64, 197, 99, 81, 199, 175, 161, 21, 70, 172, 235, 44, 51, 12, 252, 27, 188, 232, 198, 199, 29, + 238, 200, 238, 65, 11, 255, 255, 27, 9, 70, 131, 238, 154, 253, 197, 46, 69, 81, 114, 239, 194, 248, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1904, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3639015045610119490" + } + } + ] + }, + "cborHex": "9f1b328060e755e4a142ff", + "cborBytes": [159, 27, 50, 128, 96, 231, 85, 228, 161, 66, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1905, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14637360176445074932" + } + } + ] + }, + "cborHex": "9fa01bcb22598746752df4ff", + "cborBytes": [159, 160, 27, 203, 34, 89, 135, 70, 117, 45, 244, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1906, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "575043350892376392" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14698033925981487415" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "995ec224042b506a65e3" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6228144208325818904" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11071010623377300437" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7203049644218497047" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ef5" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f193468a4b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12930660985962514608" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "587acdac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0400" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "767b67741487da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb168ac24a57ed9d34c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11752729754466399546" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d74a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb0201" + } + } + ] + } + ] + }, + "cborHex": "9f1b07faf6e18463f1489fbf1bcbf9e7fb6ec441374a995ec224042b506a65e3ffbf1b566ed028cb2aba181b99a4218156fadbd51b63f65f7cef25b817422ef5ff45f193468a4bd8669f1bb372efa83b4c48b080ffffbf44587acdac42040047767b67741487da044abb168ac24a57ed9d34c91ba31a15716c22353a42d74a43fb0201ffff", + "cborBytes": [ + 159, 27, 7, 250, 246, 225, 132, 99, 241, 72, 159, 191, 27, 203, 249, 231, 251, 110, 196, 65, 55, 74, 153, 94, 194, + 36, 4, 43, 80, 106, 101, 227, 255, 191, 27, 86, 110, 208, 40, 203, 42, 186, 24, 27, 153, 164, 33, 129, 86, 250, + 219, 213, 27, 99, 246, 95, 124, 239, 37, 184, 23, 66, 46, 245, 255, 69, 241, 147, 70, 138, 75, 216, 102, 159, 27, + 179, 114, 239, 168, 59, 76, 72, 176, 128, 255, 255, 191, 68, 88, 122, 205, 172, 66, 4, 0, 71, 118, 123, 103, 116, + 20, 135, 218, 4, 74, 187, 22, 138, 194, 74, 87, 237, 157, 52, 201, 27, 163, 26, 21, 113, 108, 34, 53, 58, 66, 215, + 74, 67, 251, 2, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1907, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e9ea6fd5" + } + ] + }, + "cborHex": "9f44e9ea6fd5ff", + "cborBytes": [159, 68, 233, 234, 111, 213, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1908, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "29b0" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12818912429303393602" + } + } + ] + }, + "cborHex": "9f41f99f4229b0ff801bb1e5ecefdb77ed42ff", + "cborBytes": [159, 65, 249, 159, 66, 41, 176, 255, 128, 27, 177, 229, 236, 239, 219, 119, 237, 66, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1909, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ae89e12c98cb43c140d927" + }, + { + "_tag": "ByteArray", + "bytearray": "f9f90007466605" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13309087669598283300" + } + } + ] + }, + "cborHex": "9f4bae89e12c98cb43c140d92747f9f900074666051bb8b360b88eefe624ff", + "cborBytes": [ + 159, 75, 174, 137, 225, 44, 152, 203, 67, 193, 64, 217, 39, 71, 249, 249, 0, 7, 70, 102, 5, 27, 184, 179, 96, 184, + 142, 239, 230, 36, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1910, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7e680f0d7541801e2a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7013453223299954456" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10984518584225960490" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5872537624871500286" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4737524782221902092" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16681916150573499555" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9188187799955230563" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5521ec33956178deb53d37e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b92d554c4e5" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3441008251902275951" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e2ee68370649a7ae1cdb9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9934884919744153891" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbe08d776c69" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42a6e01da4be9874c9d6dc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecd9056defd11bbc0d4f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7939518519043571482" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f610" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "983821562998241506" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6a7e6a35e405" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "46150f18c0" + }, + { + "_tag": "ByteArray", + "bytearray": "3df70f03d2e7b523ac5025" + } + ] + } + ] + }, + "cborHex": "9f9f497e680f0d7541801e2a1b6154ca8c379cb7181b9870d9743177122a1b517f71db1494f9febf1b41bf11b05ef2410c1be782125ab7c904a3413b1b7f83001f79e8cf634c5521ec33956178deb53d37e5461b92d554c4e5ffffd8669f1b2fc0eac61bd2b16f80ffbf4b7e2ee68370649a7ae1cdb91b89dfcd327dbc492346dbe08d776c694b42a6e01da4be9874c9d6dc4aecd9056defd11bbc0d4f1b6e2ed607173a3f1a42f6101b0da73c7fc0e138e2ff466a7e6a35e4059f4546150f18c04b3df70f03d2e7b523ac5025ffff", + "cborBytes": [ + 159, 159, 73, 126, 104, 15, 13, 117, 65, 128, 30, 42, 27, 97, 84, 202, 140, 55, 156, 183, 24, 27, 152, 112, 217, + 116, 49, 119, 18, 42, 27, 81, 127, 113, 219, 20, 148, 249, 254, 191, 27, 65, 191, 17, 176, 94, 242, 65, 12, 27, + 231, 130, 18, 90, 183, 201, 4, 163, 65, 59, 27, 127, 131, 0, 31, 121, 232, 207, 99, 76, 85, 33, 236, 51, 149, 97, + 120, 222, 181, 61, 55, 229, 70, 27, 146, 213, 84, 196, 229, 255, 255, 216, 102, 159, 27, 47, 192, 234, 198, 27, + 210, 177, 111, 128, 255, 191, 75, 126, 46, 230, 131, 112, 100, 154, 122, 225, 205, 185, 27, 137, 223, 205, 50, + 125, 188, 73, 35, 70, 219, 224, 141, 119, 108, 105, 75, 66, 166, 224, 29, 164, 190, 152, 116, 201, 214, 220, 74, + 236, 217, 5, 109, 239, 209, 27, 188, 13, 79, 27, 110, 46, 214, 7, 23, 58, 63, 26, 66, 246, 16, 27, 13, 167, 60, + 127, 192, 225, 56, 226, 255, 70, 106, 126, 106, 53, 228, 5, 159, 69, 70, 21, 15, 24, 192, 75, 61, 247, 15, 3, 210, + 231, 181, 35, 172, 80, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1911, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10971057472971144258" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "08597f7a06515045d636" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "13ea35dacc2be1c894b88f80" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1043604225039741483" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12938764432948451843" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16142530265397100962" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18032483823538128199" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13549559621172791022" + } + }, + { + "_tag": "ByteArray", + "bytearray": "226a450342f4e7" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10157332347938288483" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10401224445870345289" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "289051868915326609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16279615587190854842" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5704320693897440338" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12520077793824965014" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8fddc69892e5eb588f7851cb" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4555345118251072499" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8666625350905070404" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11624898419005593670" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6132570610444116723" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "309585570404000526" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7929664602544825321" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10455944206865444734" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9691547151051541971" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf6584b19387ebd070cb3a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13335973564818464311" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6792511691548518903" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16869794755221873012" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11305555364764023071" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16910722879902928856" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10636767109489074652" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17404960152988019810" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59bdac8753c07f22" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "da00cd17c31c67" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14617202658057730036" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c1ddf64d9051112b" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b984106a4fed6fc429f4a08597f7a06515045d6369f4c13ea35dacc2be1c894b88f801b0e7ba0836f97322b1bb38fb9b30259da03ff9f1be005c9bfe4fc81a21bfa40407f4ff7c5471bbc09b4afd2fb06ee47226a450342f4e7ffd8669f1b8cf617f46072336380ffffffd8669f1b9058928685360c499fd8669f1b0402eb24b05c5e919f1be1ecd01f9a6c54baffffffffd8669f1b4f29d172c4aaac529fd8669f1badc0406b5531819680ff4c8fddc69892e5eb588f7851cb9f41a91b3f37d63ff2aa3bf31b784609d6c21783441ba153ef854ed41846ff1b551b447a7b85a2f3ffff80d8669f1b044bde6f9f84630e9fbf1b6e0bd3f15eac63e91b911af9dbb184af7e1b867f4ac92e604dd34bbf6584b19387ebd070cb3a1bb912e54cd9011e371b5e43d9652b6fe9f71bea1d8cf32abf61741b9ce566b47145791f1beaaef4dcc7af4fd81b939d63547fa7a1dc1bf18ad70b30adec624859bdac8753c07f22ffbf47da00cd17c31c671bcadabc5f4b6d37f4ff8048c1ddf64d9051112b80ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 152, 65, 6, 164, 254, 214, 252, 66, 159, 74, 8, 89, 127, 122, 6, 81, 80, 69, 214, 54, 159, + 76, 19, 234, 53, 218, 204, 43, 225, 200, 148, 184, 143, 128, 27, 14, 123, 160, 131, 111, 151, 50, 43, 27, 179, + 143, 185, 179, 2, 89, 218, 3, 255, 159, 27, 224, 5, 201, 191, 228, 252, 129, 162, 27, 250, 64, 64, 127, 79, 247, + 197, 71, 27, 188, 9, 180, 175, 210, 251, 6, 238, 71, 34, 106, 69, 3, 66, 244, 231, 255, 216, 102, 159, 27, 140, + 246, 23, 244, 96, 114, 51, 99, 128, 255, 255, 255, 216, 102, 159, 27, 144, 88, 146, 134, 133, 54, 12, 73, 159, + 216, 102, 159, 27, 4, 2, 235, 36, 176, 92, 94, 145, 159, 27, 225, 236, 208, 31, 154, 108, 84, 186, 255, 255, 255, + 255, 216, 102, 159, 27, 79, 41, 209, 114, 196, 170, 172, 82, 159, 216, 102, 159, 27, 173, 192, 64, 107, 85, 49, + 129, 150, 128, 255, 76, 143, 221, 198, 152, 146, 229, 235, 88, 143, 120, 81, 203, 159, 65, 169, 27, 63, 55, 214, + 63, 242, 170, 59, 243, 27, 120, 70, 9, 214, 194, 23, 131, 68, 27, 161, 83, 239, 133, 78, 212, 24, 70, 255, 27, 85, + 27, 68, 122, 123, 133, 162, 243, 255, 255, 128, 216, 102, 159, 27, 4, 75, 222, 111, 159, 132, 99, 14, 159, 191, + 27, 110, 11, 211, 241, 94, 172, 99, 233, 27, 145, 26, 249, 219, 177, 132, 175, 126, 27, 134, 127, 74, 201, 46, 96, + 77, 211, 75, 191, 101, 132, 177, 147, 135, 235, 208, 112, 203, 58, 27, 185, 18, 229, 76, 217, 1, 30, 55, 27, 94, + 67, 217, 101, 43, 111, 233, 247, 27, 234, 29, 140, 243, 42, 191, 97, 116, 27, 156, 229, 102, 180, 113, 69, 121, + 31, 27, 234, 174, 244, 220, 199, 175, 79, 216, 27, 147, 157, 99, 84, 127, 167, 161, 220, 27, 241, 138, 215, 11, + 48, 173, 236, 98, 72, 89, 189, 172, 135, 83, 192, 127, 34, 255, 191, 71, 218, 0, 205, 23, 195, 28, 103, 27, 202, + 218, 188, 95, 75, 109, 55, 244, 255, 128, 72, 193, 221, 246, 77, 144, 81, 17, 43, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1912, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9c2d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1003081365543228763" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10528719690709648536" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11259855093092013111" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5453677084610764150" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14782111771259510285" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7478405701005513955" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a1d676848ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd2161" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15503986072497153243" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a28c55e5f17a" + }, + { + "_tag": "ByteArray", + "bytearray": "83d15854" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13498464118207934642" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8174205030468067115" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13442025129720057462" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18399260253782745357" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12658926594844213510" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2318385594812074576" + } + }, + { + "_tag": "ByteArray", + "bytearray": "45" + }, + { + "_tag": "ByteArray", + "bytearray": "407f766ffe6dbed52f9dcac5" + }, + { + "_tag": "ByteArray", + "bytearray": "17a626aee5185507aa1af3f2" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f429c2d9fbf1b0deba92ffa04955b1b921d86c67068c4981b9c430a8cc61f54371b4baf5a69e3e99d761bcd249c56440b1e0d1b67c8a25cdeb094e3460a1d676848ad43dd2161ffd8669f1bd729393075cbe4db9f46a28c55e5f17a4483d15854ffffff809f1bbb542d98fb23f0b21b71709c2a9a429f2b9f1bba8baaa2f6d68e76ffd8669f1bff574db7a4af210d9f1bafad8aab0b6f41061b202c8f6a47280a5041454c407f766ffe6dbed52f9dcac54c17a626aee5185507aa1af3f2ffffa0ffff", + "cborBytes": [ + 159, 66, 156, 45, 159, 191, 27, 13, 235, 169, 47, 250, 4, 149, 91, 27, 146, 29, 134, 198, 112, 104, 196, 152, 27, + 156, 67, 10, 140, 198, 31, 84, 55, 27, 75, 175, 90, 105, 227, 233, 157, 118, 27, 205, 36, 156, 86, 68, 11, 30, 13, + 27, 103, 200, 162, 92, 222, 176, 148, 227, 70, 10, 29, 103, 104, 72, 173, 67, 221, 33, 97, 255, 216, 102, 159, 27, + 215, 41, 57, 48, 117, 203, 228, 219, 159, 70, 162, 140, 85, 229, 241, 122, 68, 131, 209, 88, 84, 255, 255, 255, + 128, 159, 27, 187, 84, 45, 152, 251, 35, 240, 178, 27, 113, 112, 156, 42, 154, 66, 159, 43, 159, 27, 186, 139, + 170, 162, 246, 214, 142, 118, 255, 216, 102, 159, 27, 255, 87, 77, 183, 164, 175, 33, 13, 159, 27, 175, 173, 138, + 171, 11, 111, 65, 6, 27, 32, 44, 143, 106, 71, 40, 10, 80, 65, 69, 76, 64, 127, 118, 111, 254, 109, 190, 213, 47, + 157, 202, 197, 76, 23, 166, 38, 174, 229, 24, 85, 7, 170, 26, 243, 242, 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1913, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4725a65fdae8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0088d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13766538199282850525" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f3e8965066c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14470778511965819604" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "712b9ab5a08a1ab0420732" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ef3b4cce089b76f6cc500" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17773985379573928080" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14455901417563218575" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18305265293826588677" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8073230cdfd53a324c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1871520924688580235" + } + }, + { + "_tag": "ByteArray", + "bytearray": "50" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3862" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16461342892054553509" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13096678200599746450" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6726296c62847f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1628b67794c437a43de0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6894461659188918793" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0663a4ab1275c2186" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12818629360205592273" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "feebe4f9eb332c0b824233" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17855725710295268530" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2405445933938841708" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8004884407394017129" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9439739977129605668" + } + }, + { + "_tag": "ByteArray", + "bytearray": "726ea7248703c461af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16313785058558662948" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10464450822112762941" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f464725a65fdae8bf430088d61bbf0c918dd3199add466f3e8965066c1bc8d288631d1412d44b712b9ab5a08a1ab04207324b8ef3b4cce089b76f6cc50041ff1bf6a9e188387d9090ffd8669f1bc89dadbfa5ebe28f9fd8669f1bfe095dcc9dd2000580ff498073230cdfd53a324c1b19f8fa5d81c5fe8b4150ffff423862d8669f1be4727024f6d023a59f1bb5c0bf6f2c599792bf476726296c62847f4a1628b67794c437a43de041aa1b5fae0c59c1817a0949b0663a4ab1275c21861bb1e4eb7cb27276d14bfeebe4f9eb332c0b8242331bf7cc47ee08f57cb2ffd8669f1b2161dc5512d5186c80ffd8669f1b6f170ff4f2c89f699f1b8300b17eccdd3a2449726ea7248703c461af1be26635139d76d9241b9139329465935c3dffffa0ffffff", + "cborBytes": [ + 159, 70, 71, 37, 166, 95, 218, 232, 191, 67, 0, 136, 214, 27, 191, 12, 145, 141, 211, 25, 154, 221, 70, 111, 62, + 137, 101, 6, 108, 27, 200, 210, 136, 99, 29, 20, 18, 212, 75, 113, 43, 154, 181, 160, 138, 26, 176, 66, 7, 50, 75, + 142, 243, 180, 204, 224, 137, 183, 111, 108, 197, 0, 65, 255, 27, 246, 169, 225, 136, 56, 125, 144, 144, 255, 216, + 102, 159, 27, 200, 157, 173, 191, 165, 235, 226, 143, 159, 216, 102, 159, 27, 254, 9, 93, 204, 157, 210, 0, 5, + 128, 255, 73, 128, 115, 35, 12, 223, 213, 58, 50, 76, 27, 25, 248, 250, 93, 129, 197, 254, 139, 65, 80, 255, 255, + 66, 56, 98, 216, 102, 159, 27, 228, 114, 112, 36, 246, 208, 35, 165, 159, 27, 181, 192, 191, 111, 44, 89, 151, + 146, 191, 71, 103, 38, 41, 108, 98, 132, 127, 74, 22, 40, 182, 119, 148, 196, 55, 164, 61, 224, 65, 170, 27, 95, + 174, 12, 89, 193, 129, 122, 9, 73, 176, 102, 58, 74, 177, 39, 92, 33, 134, 27, 177, 228, 235, 124, 178, 114, 118, + 209, 75, 254, 235, 228, 249, 235, 51, 44, 11, 130, 66, 51, 27, 247, 204, 71, 238, 8, 245, 124, 178, 255, 216, 102, + 159, 27, 33, 97, 220, 85, 18, 213, 24, 108, 128, 255, 216, 102, 159, 27, 111, 23, 15, 244, 242, 200, 159, 105, + 159, 27, 131, 0, 177, 126, 204, 221, 58, 36, 73, 114, 110, 167, 36, 135, 3, 196, 97, 175, 27, 226, 102, 53, 19, + 157, 118, 217, 36, 27, 145, 57, 50, 148, 101, 147, 92, 61, 255, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1914, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "58" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fcc4f49f84214c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9786372937601168446" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11099700964055648291" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10367788892520922449" + } + } + ] + }, + "cborHex": "9f4158d8669f1bffffffffffffffef9f9f47fcc4f49f84214c1b87d02e561936b43effd8669f1b9a0a0f37d399082380ffa0ffff1b8fe1c9111cf33d51ff", + "cborBytes": [ + 159, 65, 88, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 159, 71, 252, 196, 244, 159, 132, 33, + 76, 27, 135, 208, 46, 86, 25, 54, 180, 62, 255, 216, 102, 159, 27, 154, 10, 15, 55, 211, 153, 8, 35, 128, 255, + 160, 255, 255, 27, 143, 225, 201, 17, 28, 243, 61, 81, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1915, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9658533640687206444" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9568931015196316296" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3849390741986116897" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffffa9f1b860a012c5052402c1b84cbac0f58fe92881b356bc87c21c2852104ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 27, 134, 10, 1, 44, 80, 82, 64, 44, 27, 132, + 203, 172, 15, 88, 254, 146, 136, 27, 53, 107, 200, 124, 33, 194, 133, 33, 4, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1916, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12532715171268658830" + } + } + ] + }, + "cborHex": "9f1baded260c0e9e068eff", + "cborBytes": [159, 27, 173, 237, 38, 12, 14, 158, 6, 142, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1917, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10631697052977579386" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7eabbe5f9bdd5c14647248" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "35cd0c541f2b" + } + ] + } + ] + }, + "cborHex": "9fbf1b938b6023fa4bc57a4b7eabbe5f9bdd5c14647248ff9f4635cd0c541f2bffff", + "cborBytes": [ + 159, 191, 27, 147, 139, 96, 35, 250, 75, 197, 122, 75, 126, 171, 190, 95, 155, 221, 92, 20, 100, 114, 72, 255, + 159, 70, 53, 205, 12, 84, 31, 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1918, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4855215132579679441" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fe68b9d2b7543479a09" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e0d32e953e2bef23d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17197845126279041400" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcccebbfd9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "474c2e7f24" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b4361307065834cd14a9fe68b9d2b7543479a09492e0d32e953e2bef23d1beeab0506360b917845bcccebbfd945474c2e7f24ffff", + "cborBytes": [ + 159, 191, 27, 67, 97, 48, 112, 101, 131, 76, 209, 74, 159, 230, 139, 157, 43, 117, 67, 71, 154, 9, 73, 46, 13, 50, + 233, 83, 226, 190, 242, 61, 27, 238, 171, 5, 6, 54, 11, 145, 120, 69, 188, 204, 235, 191, 217, 69, 71, 76, 46, + 127, 36, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1919, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9853767929406880317" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6675979351350434498" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13337232602183086992" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e55825933c41" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10849828309390508376" + } + } + ] + }, + "cborHex": "9fbf1b88bf9db96b6efa3d1b5ca5d7d96515dac21bb9175e6353e1b39046e55825933c41ff1b9692555ccf32c158ff", + "cborBytes": [ + 159, 191, 27, 136, 191, 157, 185, 107, 110, 250, 61, 27, 92, 165, 215, 217, 101, 21, 218, 194, 27, 185, 23, 94, + 99, 83, 225, 179, 144, 70, 229, 88, 37, 147, 60, 65, 255, 27, 150, 146, 85, 92, 207, 50, 193, 88, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1920, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17216886032504952668" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6603886222725615460" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a0c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a43eb307dc6ce0e274c7eb6b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e5a62bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7221540579053029327" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f707273a2dd42323bee8ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3edafe048ba57b7" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02d1fb5635cade49e613" + }, + { + "_tag": "ByteArray", + "bytearray": "2f1f8f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6108472465863369" + } + }, + { + "_tag": "ByteArray", + "bytearray": "591b" + }, + { + "_tag": "ByteArray", + "bytearray": "1f240f50d044a019b74cfc" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "286021030155555913" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "97146208047392766" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7769006149735867499" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5661423735964621887" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74f772" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6205592157482935482" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "efc6b8aae92450bbd6bf266a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "947e7d4fd5a5b1f7" + }, + { + "_tag": "ByteArray", + "bytearray": "20b65b5ca55c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14779410694306117632" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10743286205828208454" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "be47897c5889a556028c30" + } + ] + } + ] + }, + "cborHex": "9fd8669f1beeeeaaa0a9d7975c9f1b5ba5b787daa80f64bf423a0c4ca43eb307dc6ce0e274c7eb6b447e5a62bf1b643810e5318647cf4bf707273a2dd42323bee8ea48c3edafe048ba57b7ff9f4a02d1fb5635cade49e613432f1f8f1b0015b39f9372b2c942591b4b1f240f50d044a019b74cfcffd8669f1b03f8269c8cb694499f1b015921f625f0e7fe1b6bd10dee64d4e46b1b4e916ae47122dc3f4374f7721b561eb13047b864baffff4cefc6b8aae92450bbd6bf266affff48947e7d4fd5a5b1f74620b65b5ca55cd8669f1bcd1b03b8c7b9b8009fd8669f1b9517d1e242be974680ff4bbe47897c5889a556028c30ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 238, 238, 170, 160, 169, 215, 151, 92, 159, 27, 91, 165, 183, 135, 218, 168, 15, 100, 191, + 66, 58, 12, 76, 164, 62, 179, 7, 220, 108, 224, 226, 116, 199, 235, 107, 68, 126, 90, 98, 191, 27, 100, 56, 16, + 229, 49, 134, 71, 207, 75, 247, 7, 39, 58, 45, 212, 35, 35, 190, 232, 234, 72, 195, 237, 175, 224, 72, 186, 87, + 183, 255, 159, 74, 2, 209, 251, 86, 53, 202, 222, 73, 230, 19, 67, 47, 31, 143, 27, 0, 21, 179, 159, 147, 114, + 178, 201, 66, 89, 27, 75, 31, 36, 15, 80, 208, 68, 160, 25, 183, 76, 252, 255, 216, 102, 159, 27, 3, 248, 38, 156, + 140, 182, 148, 73, 159, 27, 1, 89, 33, 246, 37, 240, 231, 254, 27, 107, 209, 13, 238, 100, 212, 228, 107, 27, 78, + 145, 106, 228, 113, 34, 220, 63, 67, 116, 247, 114, 27, 86, 30, 177, 48, 71, 184, 100, 186, 255, 255, 76, 239, + 198, 184, 170, 233, 36, 80, 187, 214, 191, 38, 106, 255, 255, 72, 148, 126, 125, 79, 213, 165, 177, 247, 70, 32, + 182, 91, 92, 165, 92, 216, 102, 159, 27, 205, 27, 3, 184, 199, 185, 184, 0, 159, 216, 102, 159, 27, 149, 23, 209, + 226, 66, 190, 151, 70, 128, 255, 75, 190, 71, 137, 124, 88, 137, 165, 86, 2, 140, 48, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1921, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18057502509280946210" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0730c522ff06011d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af8b31cf041a2b9257" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07dd3ef88eff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e43" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc188caedc33" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14229976337155919328" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2409377391551613019" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14822038437498695025" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7282159396222977858" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12353938377557651899" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18104048281133867668" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12602668974796772321" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6386758811306762965" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "231dfccc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5775847101278431560" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c980e8eb6f29e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b70e40642c7e403f38" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9207484050888499581" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "78ff5b29abd64e50c45b" + } + ] + }, + "cborHex": "9fd905099f1bfa9922dc046a6822bf480730c522ff06011d49af8b31cf041a2b92574607dd3ef88eff0f426e430f417a46cc188caedc33ff1bc57b0815c2648de09f1b216fd3f8e14a885b1bcdb2756daa4bad711b650f6d6369a4c742ffd8669f1bab7201801b63b1bb9f1bfffffffffffffff911ffffff9f1bfb3e7ffe09816294ffbf1baee5aca9289913e11b58a2534ce60922d544231dfccc1b5027ee563caba9484135473c980e8eb6f29e49b70e40642c7e403f381b7fc78df60048a17dff4a78ff5b29abd64e50c45bff", + "cborBytes": [ + 159, 217, 5, 9, 159, 27, 250, 153, 34, 220, 4, 106, 104, 34, 191, 72, 7, 48, 197, 34, 255, 6, 1, 29, 73, 175, 139, + 49, 207, 4, 26, 43, 146, 87, 70, 7, 221, 62, 248, 142, 255, 15, 66, 110, 67, 15, 65, 122, 70, 204, 24, 140, 174, + 220, 51, 255, 27, 197, 123, 8, 21, 194, 100, 141, 224, 159, 27, 33, 111, 211, 248, 225, 74, 136, 91, 27, 205, 178, + 117, 109, 170, 75, 173, 113, 27, 101, 15, 109, 99, 105, 164, 199, 66, 255, 216, 102, 159, 27, 171, 114, 1, 128, + 27, 99, 177, 187, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 17, 255, 255, 255, 159, 27, 251, 62, 127, 254, + 9, 129, 98, 148, 255, 191, 27, 174, 229, 172, 169, 40, 153, 19, 225, 27, 88, 162, 83, 76, 230, 9, 34, 213, 68, 35, + 29, 252, 204, 27, 80, 39, 238, 86, 60, 171, 169, 72, 65, 53, 71, 60, 152, 14, 142, 182, 242, 158, 73, 183, 14, 64, + 100, 44, 126, 64, 63, 56, 27, 127, 199, 141, 246, 0, 72, 161, 125, 255, 74, 120, 255, 91, 41, 171, 214, 78, 80, + 196, 91, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1922, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17597270837564932874" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff04063046af59c527ce6e" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10486805622730448507" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6554251424439720719" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2308195584349502291" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e5517" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7133281025495289274" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4408054614498699456" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12949588852905559699" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0136c17e0e859441869" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14903730619849319504" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6714939901207708428" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9137778098176379636" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4328639583037721949" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3949204725908140065" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5498127953001845288" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5385160205679517329" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6e1cca72e5f1c26" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6480920838719187793" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21eb6df3dd305fd3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15692732229538331090" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10841132339253317829" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1bf4361097a966030a4bff04063046af59c527ce6effa0d8669f1b91889e27036ade7b9f801b5af560f1d253db0fbf1b20085ba79546fb53437e55171b62fe814c87ae4dba1b3d2c8e5127b768c01bb3b62e73accb46934ac0136c17e0e8594418691bced4b009103b24501b5d3042434b95030cff1b7ecfe8c42a25caf4ffff1b3c126ac443a88d5dbf1b36ce64c6410c70211b4c4d463e305212281b4abbeeacde18de9148c6e1cca72e5f1c261b59f0db2a5948ab514821eb6df3dd305fd31bd9c7c8d1b0f4b9d21b9673706c7c3190c5ffff", + "cborBytes": [ + 159, 191, 27, 244, 54, 16, 151, 169, 102, 3, 10, 75, 255, 4, 6, 48, 70, 175, 89, 197, 39, 206, 110, 255, 160, 216, + 102, 159, 27, 145, 136, 158, 39, 3, 106, 222, 123, 159, 128, 27, 90, 245, 96, 241, 210, 83, 219, 15, 191, 27, 32, + 8, 91, 167, 149, 70, 251, 83, 67, 126, 85, 23, 27, 98, 254, 129, 76, 135, 174, 77, 186, 27, 61, 44, 142, 81, 39, + 183, 104, 192, 27, 179, 182, 46, 115, 172, 203, 70, 147, 74, 192, 19, 108, 23, 224, 232, 89, 68, 24, 105, 27, 206, + 212, 176, 9, 16, 59, 36, 80, 27, 93, 48, 66, 67, 75, 149, 3, 12, 255, 27, 126, 207, 232, 196, 42, 37, 202, 244, + 255, 255, 27, 60, 18, 106, 196, 67, 168, 141, 93, 191, 27, 54, 206, 100, 198, 65, 12, 112, 33, 27, 76, 77, 70, 62, + 48, 82, 18, 40, 27, 74, 187, 238, 172, 222, 24, 222, 145, 72, 198, 225, 204, 167, 46, 95, 28, 38, 27, 89, 240, + 219, 42, 89, 72, 171, 81, 72, 33, 235, 109, 243, 221, 48, 95, 211, 27, 217, 199, 200, 209, 176, 244, 185, 210, 27, + 150, 115, 112, 108, 124, 49, 144, 197, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1923, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ae921266afce86dfb4a708" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f4bae921266afce86dfb4a708ffffff", + "cborBytes": [159, 159, 159, 75, 174, 146, 18, 102, 175, 206, 134, 223, 180, 167, 8, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1924, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18256117895282263056" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16804988716215731453" + } + } + ] + }, + "cborHex": "9f1bfd5ac2802df384101be9375033647c84fdff", + "cborBytes": [159, 27, 253, 90, 194, 128, 45, 243, 132, 16, 27, 233, 55, 80, 51, 100, 124, 132, 253, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1925, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "160ffc5170c069c3aca7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "39" + }, + { + "_tag": "ByteArray", + "bytearray": "abffafc1f08c6c07550607" + }, + { + "_tag": "ByteArray", + "bytearray": "fc" + }, + { + "_tag": "ByteArray", + "bytearray": "2c4e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14755011506448801496" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd905099f4a160ffc5170c069c3aca79f41394babffafc1f08c6c0755060741fc422c4e1bccc454ca2aae9ed8ffbf1bffffffffffffffef131bfffffffffffffff21bffffffffffffffeeffffff", + "cborBytes": [ + 159, 217, 5, 9, 159, 74, 22, 15, 252, 81, 112, 192, 105, 195, 172, 167, 159, 65, 57, 75, 171, 255, 175, 193, 240, + 140, 108, 7, 85, 6, 7, 65, 252, 66, 44, 78, 27, 204, 196, 84, 202, 42, 174, 158, 216, 255, 191, 27, 255, 255, 255, + 255, 255, 255, 255, 239, 19, 27, 255, 255, 255, 255, 255, 255, 255, 242, 27, 255, 255, 255, 255, 255, 255, 255, + 238, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1926, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0c8b7b0c680c02" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11977514185489370228" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17553434424438823383" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "60dbfb71d55467f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "056e430c68ab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6da20fd46ec679e0a093c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "819572857411818708" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "729d2179" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14750431356235589481" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77f28e641ab234b7a4ac7a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c09bac9f736a1c53897b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3511973607330532761" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8b19c46ad3" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2834eda8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5724011708902616978" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "342097e5347bcc92c26fdc" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3301641307620834995" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "641423826952551553" + } + } + } + ] + } + ] + }, + "cborHex": "9f470c8b7b0c680c029fbf1ba638adb12e4bcc741bf39a539b60ca19d7ffbf4860dbfb71d55467f846056e430c68ab4b6da20fd46ec679e0a093c91b0b5fb52be99554d444729d21791bccb40f2ad834a7694b77f28e641ab234b7a4ac7a41fe4ac09bac9f736a1c53897b413341fd1b30bd09637d7bcd99ff458b19c46ad3ff442834eda8d8669f1b4f6fc65277512f929f4b342097e5347bcc92c26fdcffffbf1b2dd1c946c47efeb31b08e6cb927bfa7c81ffff", + "cborBytes": [ + 159, 71, 12, 139, 123, 12, 104, 12, 2, 159, 191, 27, 166, 56, 173, 177, 46, 75, 204, 116, 27, 243, 154, 83, 155, + 96, 202, 25, 215, 255, 191, 72, 96, 219, 251, 113, 213, 84, 103, 248, 70, 5, 110, 67, 12, 104, 171, 75, 109, 162, + 15, 212, 110, 198, 121, 224, 160, 147, 201, 27, 11, 95, 181, 43, 233, 149, 84, 212, 68, 114, 157, 33, 121, 27, + 204, 180, 15, 42, 216, 52, 167, 105, 75, 119, 242, 142, 100, 26, 178, 52, 183, 164, 172, 122, 65, 254, 74, 192, + 155, 172, 159, 115, 106, 28, 83, 137, 123, 65, 51, 65, 253, 27, 48, 189, 9, 99, 125, 123, 205, 153, 255, 69, 139, + 25, 196, 106, 211, 255, 68, 40, 52, 237, 168, 216, 102, 159, 27, 79, 111, 198, 82, 119, 81, 47, 146, 159, 75, 52, + 32, 151, 229, 52, 123, 204, 146, 194, 111, 220, 255, 255, 191, 27, 45, 209, 201, 70, 196, 126, 254, 179, 27, 8, + 230, 203, 146, 123, 250, 124, 129, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1927, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8833520058104758862" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4450392663332201871" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4379876434320435542" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8538123156295302369" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "681103776538703779" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13066854601712243386" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7134294804991323469" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d7237edf2ec625cfead" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16821908357664541714" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3563181388688927843" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12391313989066379023" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5617895946504712281" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3805083907898784397" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2867168503823118611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1961517907850829660" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15758294158232213722" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c00d534a3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "381c952c2c0b5b46f18c82" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4235819079304316763" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16198933597598551258" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a30f58016" + }, + { + "_tag": "ByteArray", + "bytearray": "3a4e2502" + } + ] + } + ] + }, + "cborHex": "9f9f1b7a96f7b0db9f424ebf1b3dc2f88c50eba58f1b3cc8726953c629561b767d81c61384bce11b0973c446afc437a31bb556cb0772bc92ba1b63021b53766c2d4d4a6d7237edf2ec625cfead1be9736c8666c50c12ffffd8669f1b3172f6982f162c639f1babf6ca6bcaa14f0fd8669f1b4df6c699348530599f1b34ce5fa76edcba8dffffffffbf1b27ca3a903590b1131b1b38b62506041f5c1bdab0b50bbf8b58da452c00d534a34b381c952c2c0b5b46f18c821b3ac8a702a2c1875bff9f1be0ce2c4809008cda450a30f58016443a4e2502ffff", + "cborBytes": [ + 159, 159, 27, 122, 150, 247, 176, 219, 159, 66, 78, 191, 27, 61, 194, 248, 140, 80, 235, 165, 143, 27, 60, 200, + 114, 105, 83, 198, 41, 86, 27, 118, 125, 129, 198, 19, 132, 188, 225, 27, 9, 115, 196, 70, 175, 196, 55, 163, 27, + 181, 86, 203, 7, 114, 188, 146, 186, 27, 99, 2, 27, 83, 118, 108, 45, 77, 74, 109, 114, 55, 237, 242, 236, 98, 92, + 254, 173, 27, 233, 115, 108, 134, 102, 197, 12, 18, 255, 255, 216, 102, 159, 27, 49, 114, 246, 152, 47, 22, 44, + 99, 159, 27, 171, 246, 202, 107, 202, 161, 79, 15, 216, 102, 159, 27, 77, 246, 198, 153, 52, 133, 48, 89, 159, 27, + 52, 206, 95, 167, 110, 220, 186, 141, 255, 255, 255, 255, 191, 27, 39, 202, 58, 144, 53, 144, 177, 19, 27, 27, 56, + 182, 37, 6, 4, 31, 92, 27, 218, 176, 181, 11, 191, 139, 88, 218, 69, 44, 0, 213, 52, 163, 75, 56, 28, 149, 44, 44, + 11, 91, 70, 241, 140, 130, 27, 58, 200, 167, 2, 162, 193, 135, 91, 255, 159, 27, 224, 206, 44, 72, 9, 0, 140, 218, + 69, 10, 48, 245, 128, 22, 68, 58, 78, 37, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1928, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a052a0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + }, + "cborHex": "9f43a052a000ff", + "cborBytes": [159, 67, 160, 82, 160, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1929, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7873964800817793571" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9878622549752758522" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3845360582628443403" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18325734421484960668" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c418619550fb058ec90ba11b" + }, + { + "_tag": "ByteArray", + "bytearray": "c12be7" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13834465981965366526" + } + } + ] + }, + "cborHex": "9fd8669f1b6d45f144aeac8a239f801b8917eadeac2d40fad8669f1b355d771388db850b9f1bfe52165cc8c27b9c4cc418619550fb058ec90ba11b43c12be7ffffffff1bbffde583304574feff", + "cborBytes": [ + 159, 216, 102, 159, 27, 109, 69, 241, 68, 174, 172, 138, 35, 159, 128, 27, 137, 23, 234, 222, 172, 45, 64, 250, + 216, 102, 159, 27, 53, 93, 119, 19, 136, 219, 133, 11, 159, 27, 254, 82, 22, 92, 200, 194, 123, 156, 76, 196, 24, + 97, 149, 80, 251, 5, 142, 201, 11, 161, 27, 67, 193, 43, 231, 255, 255, 255, 255, 27, 191, 253, 229, 131, 48, 69, + 116, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1930, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9167055608607884420" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3979232804921593671" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "607218701533773300" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7149235220244999675" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac68ed8c13" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7f37ec81c35344849fd8669f1b3739132737eecf479f1b086d46311de4fdf41b63372f8df66a2dfb45ac68ed8c13ffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 127, 55, 236, 129, 195, 83, 68, 132, 159, 216, 102, 159, 27, 55, 57, 19, 39, 55, 238, 207, + 71, 159, 27, 8, 109, 70, 49, 29, 228, 253, 244, 27, 99, 55, 47, 141, 246, 106, 45, 251, 69, 172, 104, 237, 140, + 19, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1931, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cdfe5eecf6a8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2d6b61bb3c3e20c0bcbcf789" + }, + { + "_tag": "ByteArray", + "bytearray": "93162a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10828747847171377487" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13274026343337955656" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0132" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6854835597748152231" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13486401411027414935" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "85d900b4d4dc5558a4df" + } + ] + }, + "cborHex": "9f46cdfe5eecf6a89f4c2d6b61bb3c3e20c0bcbcf7894393162a1b964770cb38ed094fd8669f1bb836d0a165d611489f4201321b5f2144a85d7b27a71bbb2952a11a9daf97ffffff4a85d900b4d4dc5558a4dfff", + "cborBytes": [ + 159, 70, 205, 254, 94, 236, 246, 168, 159, 76, 45, 107, 97, 187, 60, 62, 32, 192, 188, 188, 247, 137, 67, 147, 22, + 42, 27, 150, 71, 112, 203, 56, 237, 9, 79, 216, 102, 159, 27, 184, 54, 208, 161, 101, 214, 17, 72, 159, 66, 1, 50, + 27, 95, 33, 68, 168, 93, 123, 39, 167, 27, 187, 41, 82, 161, 26, 157, 175, 151, 255, 255, 255, 74, 133, 217, 0, + 180, 212, 220, 85, 88, 164, 223, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1932, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1bfffffffffffffffe80ff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1933, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10591621498452769233" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f0c4f2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9280455698384112235" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c72c1e5" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "40818f4a6e679599" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13615465592253637141" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dc02a1" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b5911" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11149300136429401392" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5612e7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10265038333774328879" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d76d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9742358839093135169" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5013944183519382346" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1465" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eff8dd783d8cc2de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ff7cb7858b5bddf51459336" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24d4cd4e8a5c9e5a07db8700" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30e216dcac1bc73c27b20e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a77cc480" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ccb55649ee44e2e654366c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3dfeb29a06766573" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44562edcba538ccf461fbf04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d21ab7d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16210610421802593832" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c879d9077c3ecb75045" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13753497516296171907" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9898" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c104" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10626947810874569078" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17253232412405566738" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f1b92fcffa2d2aaf9d143f0c4f21b80cacd49a7ef4a6b448c72c1e5ff4840818f4a6e679599ffd8669f1bbcf3d9d17dd4e2159f800843dc02a1ffff9fbf432b59111b9aba45670e16b5304138435612e74258cf1b8e74bdfa6262f42f435d76d91b8733cfbf36888741ff1b45951bab7e4f0b4aff9fbf42146548eff8dd783d8cc2de4c1ff7cb7858b5bddf514593364c24d4cd4e8a5c9e5a07db87004b30e216dcac1bc73c27b20e416b44a77cc4804bccb55649ee44e2e654366cff11bf483dfeb29a067665734c44562edcba538ccf461fbf04444d21ab7d1be0f7a84a87c9ee284a7c879d9077c3ecb750451bbede3d1f360cf18342989842c104ffbf1b937a80bae1cb31761bef6fcb77b0b08d12ffffff", + "cborBytes": [ + 159, 159, 159, 27, 146, 252, 255, 162, 210, 170, 249, 209, 67, 240, 196, 242, 27, 128, 202, 205, 73, 167, 239, 74, + 107, 68, 140, 114, 193, 229, 255, 72, 64, 129, 143, 74, 110, 103, 149, 153, 255, 216, 102, 159, 27, 188, 243, 217, + 209, 125, 212, 226, 21, 159, 128, 8, 67, 220, 2, 161, 255, 255, 159, 191, 67, 43, 89, 17, 27, 154, 186, 69, 103, + 14, 22, 181, 48, 65, 56, 67, 86, 18, 231, 66, 88, 207, 27, 142, 116, 189, 250, 98, 98, 244, 47, 67, 93, 118, 217, + 27, 135, 51, 207, 191, 54, 136, 135, 65, 255, 27, 69, 149, 27, 171, 126, 79, 11, 74, 255, 159, 191, 66, 20, 101, + 72, 239, 248, 221, 120, 61, 140, 194, 222, 76, 31, 247, 203, 120, 88, 181, 189, 223, 81, 69, 147, 54, 76, 36, 212, + 205, 78, 138, 92, 158, 90, 7, 219, 135, 0, 75, 48, 226, 22, 220, 172, 27, 199, 60, 39, 178, 14, 65, 107, 68, 167, + 124, 196, 128, 75, 204, 181, 86, 73, 238, 68, 226, 230, 84, 54, 108, 255, 17, 191, 72, 61, 254, 178, 154, 6, 118, + 101, 115, 76, 68, 86, 46, 220, 186, 83, 140, 207, 70, 31, 191, 4, 68, 77, 33, 171, 125, 27, 224, 247, 168, 74, + 135, 201, 238, 40, 74, 124, 135, 157, 144, 119, 195, 236, 183, 80, 69, 27, 190, 222, 61, 31, 54, 12, 241, 131, 66, + 152, 152, 66, 193, 4, 255, 191, 27, 147, 122, 128, 186, 225, 203, 49, 118, 27, 239, 111, 203, 119, 176, 176, 141, + 18, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1934, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13902685354985851701" + } + } + ] + }, + "cborHex": "9f1bc0f042abb7f50b35ff", + "cborBytes": [159, 27, 192, 240, 66, 171, 183, 245, 11, 53, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1935, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6692658098289685123" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af578d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2436460244253657422" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2244623836718505165" + } + }, + { + "_tag": "ByteArray", + "bytearray": "114ac81236fb2e4c0f" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffffe9fd8669f1bfffffffffffffff89f1b5ce11914c7b2b28343af578d1b21d00baee819c94e1b1f26817ca9fb1ccd49114ac81236fb2e4c0fffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 248, 159, 27, 92, 225, 25, 20, 199, 178, 178, 131, 67, 175, 87, 141, 27, 33, 208, 11, 174, 232, 25, 201, + 78, 27, 31, 38, 129, 124, 169, 251, 28, 205, 73, 17, 74, 200, 18, 54, 251, 46, 76, 15, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1936, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9e22b5820c5c286cfa50110e" + } + ] + }, + "cborHex": "9f4c9e22b5820c5c286cfa50110eff", + "cborBytes": [159, 76, 158, 34, 181, 130, 12, 92, 40, 108, 250, 80, 17, 14, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1937, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c3fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d30768231ced6485e77c91a1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13227867944080647098" + } + } + ] + }, + "cborHex": "9f42c3fd109f4cd30768231ced6485e77c91a1ff1bb792d3cf96b423baff", + "cborBytes": [ + 159, 66, 195, 253, 16, 159, 76, 211, 7, 104, 35, 28, 237, 100, 133, 231, 124, 145, 161, 255, 27, 183, 146, 211, + 207, 150, 180, 35, 186, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1938, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16861949979365722618" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14062755686038612138" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16988793779498367895" + } + }, + { + "_tag": "ByteArray", + "bytearray": "88" + }, + { + "_tag": "ByteArray", + "bytearray": "b5d7030619de4c" + }, + { + "_tag": "ByteArray", + "bytearray": "e32c1a669ae0c3100d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6ca0dc8428f8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4060642818646513450" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a467df82c3464f00fecb" + }, + { + "_tag": "ByteArray", + "bytearray": "864d59b5ba56480a428a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "506974760887526121" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "680993320559620053" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8fc5d671af0906d00d98db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a990b487c798ca1433e81115" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10317734104560980784" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd905079f1bea01ae2af47fc9fa9f1bc328f1c9ed6fa8aa1bebc451ee955dbb97418847b5d7030619de4c49e32c1a669ae0c3100dff466ca0dc8428f8d8669f1b385a4d211d2a972a9f4aa467df82c3464f00fecb4a864d59b5ba56480a428a1b070922dbe4ca22e91b09735fd1265eafd5ffffffbf4b8fc5d671af0906d00d98db4103ffd8669f1bfffffffffffffffc9f804ca990b487c798ca1433e811159f1b8f2ff4809d4a5330ffffffff", + "cborBytes": [ + 159, 217, 5, 7, 159, 27, 234, 1, 174, 42, 244, 127, 201, 250, 159, 27, 195, 40, 241, 201, 237, 111, 168, 170, 27, + 235, 196, 81, 238, 149, 93, 187, 151, 65, 136, 71, 181, 215, 3, 6, 25, 222, 76, 73, 227, 44, 26, 102, 154, 224, + 195, 16, 13, 255, 70, 108, 160, 220, 132, 40, 248, 216, 102, 159, 27, 56, 90, 77, 33, 29, 42, 151, 42, 159, 74, + 164, 103, 223, 130, 195, 70, 79, 0, 254, 203, 74, 134, 77, 89, 181, 186, 86, 72, 10, 66, 138, 27, 7, 9, 34, 219, + 228, 202, 34, 233, 27, 9, 115, 95, 209, 38, 94, 175, 213, 255, 255, 255, 191, 75, 143, 197, 214, 113, 175, 9, 6, + 208, 13, 152, 219, 65, 3, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 128, 76, 169, 144, + 180, 135, 199, 152, 202, 20, 51, 232, 17, 21, 159, 27, 143, 47, 244, 128, 157, 74, 83, 48, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1939, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6e0e2066" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3884870136228499701" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bc4e67af" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12623714039943213798" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13774232214298899141" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "19556e225c08" + }, + { + "_tag": "ByteArray", + "bytearray": "e9519c01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8889356974018602173" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7435711768778453497" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f9822d56e6c809c0373b5" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "220b413e09fb9a8e355aab" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e63e7cb94d3f3331" + } + ] + }, + "cborHex": "9f446e0e20661b35e9d4ce546c50f544bc4e67afd8669f1baf30710938ed32e69fd8669f1bbf27e7384b0732c59f4619556e225c0844e9519c011b7b5d5711ee0524bd1b6730f475263b31f94b8f9822d56e6c809c0373b5ffff804b220b413e09fb9a8e355aaba0ffff48e63e7cb94d3f3331ff", + "cborBytes": [ + 159, 68, 110, 14, 32, 102, 27, 53, 233, 212, 206, 84, 108, 80, 245, 68, 188, 78, 103, 175, 216, 102, 159, 27, 175, + 48, 113, 9, 56, 237, 50, 230, 159, 216, 102, 159, 27, 191, 39, 231, 56, 75, 7, 50, 197, 159, 70, 25, 85, 110, 34, + 92, 8, 68, 233, 81, 156, 1, 27, 123, 93, 87, 17, 238, 5, 36, 189, 27, 103, 48, 244, 117, 38, 59, 49, 249, 75, 143, + 152, 34, 213, 110, 108, 128, 156, 3, 115, 181, 255, 255, 128, 75, 34, 11, 65, 62, 9, 251, 154, 142, 53, 90, 171, + 160, 255, 255, 72, 230, 62, 124, 185, 77, 63, 51, 49, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1940, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1349446434921660689" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c5fc26c4fe02fa055a" + } + ] + } + ] + }, + "cborHex": "9f9fbf41de1b12ba326204ec4111ff49c5fc26c4fe02fa055affff", + "cborBytes": [ + 159, 159, 191, 65, 222, 27, 18, 186, 50, 98, 4, 236, 65, 17, 255, 73, 197, 252, 38, 196, 254, 2, 250, 5, 90, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1941, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11728705784237831090" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15529224169048510034" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17207565750397452665" + } + }, + { + "_tag": "ByteArray", + "bytearray": "faf1d2971c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9938680676576916684" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16696eea773fc7c02f0249" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1906403962155293774" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d111ec1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b401925efc0aaabfc5dee8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97e9bd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4222078800557408278" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d42cde942d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98ac79f008e7" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10883171983662467749" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f9bef829a02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11598428303388858889" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3a92b1f0" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4158235658976083783" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13656660675534385476" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13542894804045972357" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c9077161c2cf5f8d14aa" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11666783559173798854" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f0a59edb3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f9d7c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34cf28" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9915235503752650332" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac25d8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90eecadf1ea331d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e41b7da9fa643" + } + } + ] + } + ] + }, + "cborHex": "9f1ba2c4bbc4f890b3b29fd8669f1bd782e31ab98c0e529f1beecd8de1619e417945faf1d2971c1b89ed496aff67f4ccffffbf4b16696eea773fc7c02f02491b1a74e84d92a9dc4e447d111ec14bb401925efc0aaabfc5dee84397e9bd1b3a97d64cb0ee801645d42cde942d4698ac79f008e7ffa09f1b9708cb41f3af4aa5465f9bef829a021ba0f5e51740545a09443a92b1f0ffd8669f1b39b5054cf1a1bf479f1bbd8634873f45f1441bbbf2071229a4c3854ac9077161c2cf5f8d14aaffffff1ba1e8bdd573ebfbc6bf451f0a59edb3436f9d7c4334cf281b8999fe2851849e5c414143ac25d84890eecadf1ea331d5476e41b7da9fa643ffff", + "cborBytes": [ + 159, 27, 162, 196, 187, 196, 248, 144, 179, 178, 159, 216, 102, 159, 27, 215, 130, 227, 26, 185, 140, 14, 82, 159, + 27, 238, 205, 141, 225, 97, 158, 65, 121, 69, 250, 241, 210, 151, 28, 27, 137, 237, 73, 106, 255, 103, 244, 204, + 255, 255, 191, 75, 22, 105, 110, 234, 119, 63, 199, 192, 47, 2, 73, 27, 26, 116, 232, 77, 146, 169, 220, 78, 68, + 125, 17, 30, 193, 75, 180, 1, 146, 94, 252, 10, 170, 191, 197, 222, 232, 67, 151, 233, 189, 27, 58, 151, 214, 76, + 176, 238, 128, 22, 69, 212, 44, 222, 148, 45, 70, 152, 172, 121, 240, 8, 231, 255, 160, 159, 27, 151, 8, 203, 65, + 243, 175, 74, 165, 70, 95, 155, 239, 130, 154, 2, 27, 160, 245, 229, 23, 64, 84, 90, 9, 68, 58, 146, 177, 240, + 255, 216, 102, 159, 27, 57, 181, 5, 76, 241, 161, 191, 71, 159, 27, 189, 134, 52, 135, 63, 69, 241, 68, 27, 187, + 242, 7, 18, 41, 164, 195, 133, 74, 201, 7, 113, 97, 194, 207, 95, 141, 20, 170, 255, 255, 255, 27, 161, 232, 189, + 213, 115, 235, 251, 198, 191, 69, 31, 10, 89, 237, 179, 67, 111, 157, 124, 67, 52, 207, 40, 27, 137, 153, 254, 40, + 81, 132, 158, 92, 65, 65, 67, 172, 37, 216, 72, 144, 238, 202, 223, 30, 163, 49, 213, 71, 110, 65, 183, 218, 159, + 166, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1942, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f0480ff", + "cborBytes": [159, 4, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1943, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "52e3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3916034113794350840" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9bc990" + }, + { + "_tag": "ByteArray", + "bytearray": "f3d6870b3b7acef6d18ba9" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "56e7b56734cdb9207a2d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8983563138713086259" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17677442976657582941" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2804418911328118178" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13629418881818082143" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad36e2" + } + } + ] + } + ] + }, + "cborHex": "9f4252e3d8669f1b36588c4749061ef89f9f439bc9904bf3d6870b3b7acef6d18ba9ffffff9f9f4a56e7b56734cdb9207a2d1b7cac0713e4496933ffd8669f1bf552e4ba68e62b5d9f1b26eb4c243319a5a2ffffffa0bf1bbd256c42e1c4bb5f43ad36e2ffff", + "cborBytes": [ + 159, 66, 82, 227, 216, 102, 159, 27, 54, 88, 140, 71, 73, 6, 30, 248, 159, 159, 67, 155, 201, 144, 75, 243, 214, + 135, 11, 59, 122, 206, 246, 209, 139, 169, 255, 255, 255, 159, 159, 74, 86, 231, 181, 103, 52, 205, 185, 32, 122, + 45, 27, 124, 172, 7, 19, 228, 73, 105, 51, 255, 216, 102, 159, 27, 245, 82, 228, 186, 104, 230, 43, 93, 159, 27, + 38, 235, 76, 36, 51, 25, 165, 162, 255, 255, 255, 160, 191, 27, 189, 37, 108, 66, 225, 196, 187, 95, 67, 173, 54, + 226, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1944, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5015927627622595726" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3912867628324474627" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9003780787017999869" + } + }, + { + "_tag": "ByteArray", + "bytearray": "404dcb08817f55fb750c" + }, + { + "_tag": "ByteArray", + "bytearray": "ab2bd23032" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10679476507507429445" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0572" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17665236839822756568" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11770347230122044455" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "74" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17940647724432802072" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2281331501059323042" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14860314405532038290" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a000ac8c942b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8321162621955701559" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f81f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12469227086884111102" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9a1f3f5848" + }, + { + "_tag": "ByteArray", + "bytearray": "fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2878205961215293707" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b459c279a0f833c8e9f1b364d4c606f67cf031b7cf3daebf5b1e5fd4a404dcb08817f55fb750c45ab2bd23032ffff9f1b94351f4d211c1045420572ff9f1bf527874fb6c78ad81ba358ac719e6d6c27ff4174ffd8669f1bf8f9fc0d3f3cc11880ff1b1fa8eae9c78cb4a2d8669f1bce3a7137f05b74929fbf46a000ac8c942b1b737ab55137ed7b3742f81f1bad0b97f8816802feff459a1f3f584841fd1b27f1711284a6390bffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 69, 156, 39, 154, 15, 131, 60, 142, 159, 27, 54, 77, 76, 96, 111, 103, 207, 3, 27, + 124, 243, 218, 235, 245, 177, 229, 253, 74, 64, 77, 203, 8, 129, 127, 85, 251, 117, 12, 69, 171, 43, 210, 48, 50, + 255, 255, 159, 27, 148, 53, 31, 77, 33, 28, 16, 69, 66, 5, 114, 255, 159, 27, 245, 39, 135, 79, 182, 199, 138, + 216, 27, 163, 88, 172, 113, 158, 109, 108, 39, 255, 65, 116, 255, 216, 102, 159, 27, 248, 249, 252, 13, 63, 60, + 193, 24, 128, 255, 27, 31, 168, 234, 233, 199, 140, 180, 162, 216, 102, 159, 27, 206, 58, 113, 55, 240, 91, 116, + 146, 159, 191, 70, 160, 0, 172, 140, 148, 43, 27, 115, 122, 181, 81, 55, 237, 123, 55, 66, 248, 31, 27, 173, 11, + 151, 248, 129, 104, 2, 254, 255, 69, 154, 31, 63, 88, 72, 65, 253, 27, 39, 241, 113, 18, 132, 166, 57, 11, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1945, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9774385549178751453" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12758194040287915732" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5c919cf16ea6b5452f3448" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "08672e8ad6" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "87530beae8d4f085c6959eb9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10537055536217590934" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa5a05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f4554d6f75c052c56ef" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12477880135444421801" + } + } + ] + } + ] + }, + "cborHex": "9f1b87a597debc82c9dd9fd8669f1bb10e35e242ddeed49f4b5c919cf16ea6b5452f3448ffff4508672e8ad69f4c87530beae8d4f085c6959eb91b923b242eb6d00c96ffffbf43aa5a054a2f4554d6f75c052c56efff9f1bad2a55df5f115ca9ffff", + "cborBytes": [ + 159, 27, 135, 165, 151, 222, 188, 130, 201, 221, 159, 216, 102, 159, 27, 177, 14, 53, 226, 66, 221, 238, 212, 159, + 75, 92, 145, 156, 241, 110, 166, 181, 69, 47, 52, 72, 255, 255, 69, 8, 103, 46, 138, 214, 159, 76, 135, 83, 11, + 234, 232, 212, 240, 133, 198, 149, 158, 185, 27, 146, 59, 36, 46, 182, 208, 12, 150, 255, 255, 191, 67, 170, 90, + 5, 74, 47, 69, 84, 214, 247, 92, 5, 44, 86, 239, 255, 159, 27, 173, 42, 85, 223, 95, 17, 92, 169, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1946, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0335179fd13a9b3acbf2c856" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53f50b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0370" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "006ff8816c49" + } + } + ] + } + ] + }, + "cborHex": "9fbf4c0335179fd13a9b3acbf2c8564353f50b42037046006ff8816c49ffff", + "cborBytes": [ + 159, 191, 76, 3, 53, 23, 159, 209, 58, 155, 58, 203, 242, 200, 86, 67, 83, 245, 11, 66, 3, 112, 70, 0, 111, 248, + 129, 108, 73, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1947, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5055877391252993293" + } + } + ] + }, + "cborHex": "9f1b462a15b33d90350dff", + "cborBytes": [159, 27, 70, 42, 21, 179, 61, 144, 53, 13, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1948, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12319401279337305788" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "81" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "abf581" + }, + { + "_tag": "ByteArray", + "bytearray": "ce63c1856b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "35d4bcb0fa" + }, + { + "_tag": "ByteArray", + "bytearray": "c158" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9586530690410668772" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13411064058675073299" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10903693030963891083" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fed84879d9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13469183715924243785" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bef5b055035b57" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2023504079161924347" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f84b45c2f767caf5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2104863018450750165" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9611826333589765105" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2757601831973969348" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8981519592293173620" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4207149611837758058" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a10a9cde0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17752079342123541010" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a4c2cd3bfea6adb3423ff88" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "86ad5344aacf" + } + ] + }, + "cborHex": "9f809fd8669f1baaf74e314c6496bc9f4181ffff43abf58145ce63c1856b9f4535d4bcb0fa42c1581b850a32df0e4ee2e4ffffd8669f1bba1dabb4dd5611139f1b9751b30a9a814b8bffff9f45fed84879d91bbaec273a1223f54947bef5b055035b57bf1b1c14ee3d30001afb48f84b45c2f767caf51b1d35f9c3639d0ad51b8564111ff05cfbf11b2644f8417ac65dc41b7ca4c47ba9d889741b3a62cc4812831a6a450a10a9cde01bf65c0e1b6bd2e2124c5a4c2cd3bfea6adb3423ff88ffff4686ad5344aacfff", + "cborBytes": [ + 159, 128, 159, 216, 102, 159, 27, 170, 247, 78, 49, 76, 100, 150, 188, 159, 65, 129, 255, 255, 67, 171, 245, 129, + 69, 206, 99, 193, 133, 107, 159, 69, 53, 212, 188, 176, 250, 66, 193, 88, 27, 133, 10, 50, 223, 14, 78, 226, 228, + 255, 255, 216, 102, 159, 27, 186, 29, 171, 180, 221, 86, 17, 19, 159, 27, 151, 81, 179, 10, 154, 129, 75, 139, + 255, 255, 159, 69, 254, 216, 72, 121, 217, 27, 186, 236, 39, 58, 18, 35, 245, 73, 71, 190, 245, 176, 85, 3, 91, + 87, 191, 27, 28, 20, 238, 61, 48, 0, 26, 251, 72, 248, 75, 69, 194, 247, 103, 202, 245, 27, 29, 53, 249, 195, 99, + 157, 10, 213, 27, 133, 100, 17, 31, 240, 92, 251, 241, 27, 38, 68, 248, 65, 122, 198, 93, 196, 27, 124, 164, 196, + 123, 169, 216, 137, 116, 27, 58, 98, 204, 72, 18, 131, 26, 106, 69, 10, 16, 169, 205, 224, 27, 246, 92, 14, 27, + 107, 210, 226, 18, 76, 90, 76, 44, 211, 191, 234, 106, 219, 52, 35, 255, 136, 255, 255, 70, 134, 173, 83, 68, 170, + 207, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1949, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3474580401110630088" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "097ad1ba84" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12808463665834602123" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9a8bf7b101f6f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13951215335307486832" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "747524129254948605" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2154070512474483811" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b46b6cb19" + }, + { + "_tag": "ByteArray", + "bytearray": "d24f593ffe03b41a0c4e" + } + ] + }, + "cborHex": "9fbf1b3038307737bbbec845097ad1ba841bb1c0cdd78891ae8b47a9a8bf7b101f6f1bc19cac6e45fc26701b0a5fbd3c29463efdff1b1de4cbb7e52f6c63452b46b6cb194ad24f593ffe03b41a0c4eff", + "cborBytes": [ + 159, 191, 27, 48, 56, 48, 119, 55, 187, 190, 200, 69, 9, 122, 209, 186, 132, 27, 177, 192, 205, 215, 136, 145, + 174, 139, 71, 169, 168, 191, 123, 16, 31, 111, 27, 193, 156, 172, 110, 69, 252, 38, 112, 27, 10, 95, 189, 60, 41, + 70, 62, 253, 255, 27, 29, 228, 203, 183, 229, 47, 108, 99, 69, 43, 70, 182, 203, 25, 74, 210, 79, 89, 63, 254, 3, + 180, 26, 12, 78, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1950, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15601707992023849031" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9704278335561812728" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "81869bc63a" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9092040094867920672" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eb15754788" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "688317eee2a464a6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14882152110609893530" + } + } + ] + }, + "cborHex": "9fd8669f1bd88466c1e1f458479fd8669f1b86ac85bb10ae4af89f4581869bc63affff809f1b7e2d6a4b6a36172045eb15754788ff48688317eee2a464a6ffff1bce88067ede3b889aff", + "cborBytes": [ + 159, 216, 102, 159, 27, 216, 132, 102, 193, 225, 244, 88, 71, 159, 216, 102, 159, 27, 134, 172, 133, 187, 16, 174, + 74, 248, 159, 69, 129, 134, 155, 198, 58, 255, 255, 128, 159, 27, 126, 45, 106, 75, 106, 54, 23, 32, 69, 235, 21, + 117, 71, 136, 255, 72, 104, 131, 23, 238, 226, 164, 100, 166, 255, 255, 27, 206, 136, 6, 126, 222, 59, 136, 154, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1951, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c932cdc571a4" + } + ] + }, + "cborHex": "9f46c932cdc571a4ff", + "cborBytes": [159, 70, 201, 50, 205, 197, 113, 164, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1952, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12207341570449117289" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14168451658517741750" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "121d0e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15358281161290742606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12317391427598666572" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34ebd64ff597095ba289" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d56fc5e9ffaaaa13af3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7b0f7fd1b494d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5205b6dbcf08a2" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05fc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3378138431325892973" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2173344128415956218" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7424416599450674474" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15524431990547223135" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bfbd89ff" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba969307b267a90699fbf1bc4a073b73b3e80b643121d0e1bd5239358334efb4e1baaf02a3e3975cb4c4a34ebd64ff597095ba2894a9d56fc5e9ffaaaa13af347f7b0f7fd1b494d475205b6dbcf08a2ffffff4205fcd8799f9f1b2ee18f015146716dff9f1b1e2944f84ce9fcfa1b6708d38f9ac5652a1bd771dca4b847125f44bfbd89ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 169, 105, 48, 123, 38, 122, 144, 105, 159, 191, 27, 196, 160, 115, 183, 59, 62, 128, 182, + 67, 18, 29, 14, 27, 213, 35, 147, 88, 51, 78, 251, 78, 27, 170, 240, 42, 62, 57, 117, 203, 76, 74, 52, 235, 214, + 79, 245, 151, 9, 91, 162, 137, 74, 157, 86, 252, 94, 159, 250, 170, 161, 58, 243, 71, 247, 176, 247, 253, 27, 73, + 77, 71, 82, 5, 182, 219, 207, 8, 162, 255, 255, 255, 66, 5, 252, 216, 121, 159, 159, 27, 46, 225, 143, 1, 81, 70, + 113, 109, 255, 159, 27, 30, 41, 68, 248, 76, 233, 252, 250, 27, 103, 8, 211, 143, 154, 197, 101, 42, 27, 215, 113, + 220, 164, 184, 71, 18, 95, 68, 191, 189, 137, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1953, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11192168879798200272" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f0000040752fd0617" + }, + { + "_tag": "ByteArray", + "bytearray": "329778fcab61f8874792b808" + } + ] + }, + "cborHex": "9f1b9b52924c2a8da7d01bfffffffffffffff5495f0000040752fd06174c329778fcab61f8874792b808ff", + "cborBytes": [ + 159, 27, 155, 82, 146, 76, 42, 141, 167, 208, 27, 255, 255, 255, 255, 255, 255, 255, 245, 73, 95, 0, 0, 4, 7, 82, + 253, 6, 23, 76, 50, 151, 120, 252, 171, 97, 248, 135, 71, 146, 184, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1954, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "983bba7b7b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6334619228799502065" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10479942005141810866" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2450254532012989445" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d2a1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13788527162881008439" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8998620326783633072" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16674835389880039808" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0598501ca0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5930440141839894789" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11450974066678000643" + } + } + ] + } + ] + }, + "cborHex": "9f45983bba7b7bd8669f1b57e916a057f406f180ff1b91703bba832c2eb21b22010d83cdecdc059f42d2a1d8669f1bbf5ab0665f58e3379f1b7ce18582ae8c46b0413a1be768ea70a5e97980450598501ca01b524d27e360158905ffff1b9eea083e688d6c03ffff", + "cborBytes": [ + 159, 69, 152, 59, 186, 123, 123, 216, 102, 159, 27, 87, 233, 22, 160, 87, 244, 6, 241, 128, 255, 27, 145, 112, 59, + 186, 131, 44, 46, 178, 27, 34, 1, 13, 131, 205, 236, 220, 5, 159, 66, 210, 161, 216, 102, 159, 27, 191, 90, 176, + 102, 95, 88, 227, 55, 159, 27, 124, 225, 133, 130, 174, 140, 70, 176, 65, 58, 27, 231, 104, 234, 112, 165, 233, + 121, 128, 69, 5, 152, 80, 28, 160, 27, 82, 77, 39, 227, 96, 21, 137, 5, 255, 255, 27, 158, 234, 8, 62, 104, 141, + 108, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1955, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5178411468410165254" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17297166484652228160" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18222562542536957216" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c53" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f5bdf3c48512852" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3177c6de33b6e8f85b80a0a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13421410455592678477" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e271bf71c4a43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "553ef717" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad44ba096b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0c456160bac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11364504563742475458" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff713aae47f1ded8900fa867" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15379202061658996318" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1919523355018779960" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2250489584381272271" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14933603847977255770" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1718956651867914497" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "307880696350921865" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3803996930956232647" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2553843377819730642" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6fa7d89bb77" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7632553592099635589" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b53bb0bbf8a85b91" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11155922600449821527" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13855928522982619301" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3344891233841737298" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12818840502908620819" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4769499493209287540" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17580792386784571307" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8906130520131242571" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f284c4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10224359366508435354" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1713374897685086188" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12766246721545193930" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5112409795374117635" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12869206502259640576" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20d8e994dd83" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7040729071948790848" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "35" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "652190444735105789" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17710344827740987004" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "604eb4eb9a5a5099b7e0fed6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13582698846958432116" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "782164be4e6b23" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1278298567841960767" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c964b2de" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14610f2e3b142b3edb56" + } + } + ] + } + ] + }, + "cborHex": "9f9fbf1b47dd69cb4b6598061bf00be146027cfe404231c71bfce38c15cd411d20ffbf422c53482f5bdf3c485128524c3177c6de33b6e8f85b80a0a81bba426db31e50b44d476e271bf71c4a4344553ef71745ad44ba096b41c046d0c456160bac1b9db6d4b0622d04c24cff713aae47f1ded8900fa8671bd56de6cae623be5effbf1b1aa3845241f5dd381b1f3b585a77c320cf1bcf3ed193ff17435a1b17daf5f7aae1c101ffbf1b0445cfdcb33254891b34ca830de45287c7ffffbf1b2371130572edc2d246e6fa7d89bb771b69ec470d923b018548b53bb0bbf8a85b911b9ad1cc7f9d904b571bc04a25946d94f8a5ffbf1b2e6b70daed746e521bb1e5ab85304210131b4230aa84e9252b741bf3fb85875c2fafab1b7b98ee8577b00a4b43f284c41b8de438ac40ac579a1b17c721643f973fec1bb12ad1c138b249ca1b46f2ed9f478073031bb2989b213c5549004620d8e994dd83ff1b61b5b1c99d45fc40bf41351b090d0bc108570afd414a1bf5c7c8c9932d9e7c4c604eb4eb9a5a5099b7e0fed61bbc7f70a31810af7447782164be4e6b231b11bd6dc6551c533f44c964b2de4a14610f2e3b142b3edb56ffff", + "cborBytes": [ + 159, 159, 191, 27, 71, 221, 105, 203, 75, 101, 152, 6, 27, 240, 11, 225, 70, 2, 124, 254, 64, 66, 49, 199, 27, + 252, 227, 140, 21, 205, 65, 29, 32, 255, 191, 66, 44, 83, 72, 47, 91, 223, 60, 72, 81, 40, 82, 76, 49, 119, 198, + 222, 51, 182, 232, 248, 91, 128, 160, 168, 27, 186, 66, 109, 179, 30, 80, 180, 77, 71, 110, 39, 27, 247, 28, 74, + 67, 68, 85, 62, 247, 23, 69, 173, 68, 186, 9, 107, 65, 192, 70, 208, 196, 86, 22, 11, 172, 27, 157, 182, 212, 176, + 98, 45, 4, 194, 76, 255, 113, 58, 174, 71, 241, 222, 216, 144, 15, 168, 103, 27, 213, 109, 230, 202, 230, 35, 190, + 94, 255, 191, 27, 26, 163, 132, 82, 65, 245, 221, 56, 27, 31, 59, 88, 90, 119, 195, 32, 207, 27, 207, 62, 209, + 147, 255, 23, 67, 90, 27, 23, 218, 245, 247, 170, 225, 193, 1, 255, 191, 27, 4, 69, 207, 220, 179, 50, 84, 137, + 27, 52, 202, 131, 13, 228, 82, 135, 199, 255, 255, 191, 27, 35, 113, 19, 5, 114, 237, 194, 210, 70, 230, 250, 125, + 137, 187, 119, 27, 105, 236, 71, 13, 146, 59, 1, 133, 72, 181, 59, 176, 187, 248, 168, 91, 145, 27, 154, 209, 204, + 127, 157, 144, 75, 87, 27, 192, 74, 37, 148, 109, 148, 248, 165, 255, 191, 27, 46, 107, 112, 218, 237, 116, 110, + 82, 27, 177, 229, 171, 133, 48, 66, 16, 19, 27, 66, 48, 170, 132, 233, 37, 43, 116, 27, 243, 251, 133, 135, 92, + 47, 175, 171, 27, 123, 152, 238, 133, 119, 176, 10, 75, 67, 242, 132, 196, 27, 141, 228, 56, 172, 64, 172, 87, + 154, 27, 23, 199, 33, 100, 63, 151, 63, 236, 27, 177, 42, 209, 193, 56, 178, 73, 202, 27, 70, 242, 237, 159, 71, + 128, 115, 3, 27, 178, 152, 155, 33, 60, 85, 73, 0, 70, 32, 216, 233, 148, 221, 131, 255, 27, 97, 181, 177, 201, + 157, 69, 252, 64, 191, 65, 53, 27, 9, 13, 11, 193, 8, 87, 10, 253, 65, 74, 27, 245, 199, 200, 201, 147, 45, 158, + 124, 76, 96, 78, 180, 235, 154, 90, 80, 153, 183, 224, 254, 214, 27, 188, 127, 112, 163, 24, 16, 175, 116, 71, + 120, 33, 100, 190, 78, 107, 35, 27, 17, 189, 109, 198, 85, 28, 83, 63, 68, 201, 100, 178, 222, 74, 20, 97, 15, 46, + 59, 20, 43, 62, 219, 86, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1956, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16305172340187269318" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8266495508497671195" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10976114101758420794" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8326248396269676787" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "64804478" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11023982283084490384" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "695a960fc9e300e3265e93" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf32d32218cfae64" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c618b0c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1346622297891706408" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2adc924e854619ab2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2118664405810467093" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "853081040641647425" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7285482127652432437" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17726453709288960411" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "329732584480258278" + } + }, + { + "_tag": "ByteArray", + "bytearray": "20062610b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16608117250954149068" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9681b99c3d0efb" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7ac1e4060fe9ba1e50" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16848049623915705739" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12456583511276327857" + } + } + ] + }, + "cborHex": "9fd8669f1be2479bdada6308c69f9f1b72b87dde015da41b41cf1b9852fd9f2177673a1b738cc6cd5351e8f3ffbf44648044781b98fd0d7a997366904b695a960fc9e300e3265e9348cf32d32218cfae64447c618b0c1b12b029d86074962849c2adc924e854619ab21b1d67020d4a98d115ff1b0bd6c0afc810e3419f1b651b3b651c2e2a351bf60103bad592f19b1b04937209e0d138e64520062610b01be67be2a56b28bcccff479681b99c3d0efbffff497ac1e4060fe9ba1e501be9d04bde3fa6358b801bacdeacb4a89d13b1ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 226, 71, 155, 218, 218, 99, 8, 198, 159, 159, 27, 114, 184, 125, 222, 1, 93, 164, 27, 65, + 207, 27, 152, 82, 253, 159, 33, 119, 103, 58, 27, 115, 140, 198, 205, 83, 81, 232, 243, 255, 191, 68, 100, 128, + 68, 120, 27, 152, 253, 13, 122, 153, 115, 102, 144, 75, 105, 90, 150, 15, 201, 227, 0, 227, 38, 94, 147, 72, 207, + 50, 211, 34, 24, 207, 174, 100, 68, 124, 97, 139, 12, 27, 18, 176, 41, 216, 96, 116, 150, 40, 73, 194, 173, 201, + 36, 232, 84, 97, 154, 178, 27, 29, 103, 2, 13, 74, 152, 209, 21, 255, 27, 11, 214, 192, 175, 200, 16, 227, 65, + 159, 27, 101, 27, 59, 101, 28, 46, 42, 53, 27, 246, 1, 3, 186, 213, 146, 241, 155, 27, 4, 147, 114, 9, 224, 209, + 56, 230, 69, 32, 6, 38, 16, 176, 27, 230, 123, 226, 165, 107, 40, 188, 204, 255, 71, 150, 129, 185, 156, 61, 14, + 251, 255, 255, 73, 122, 193, 228, 6, 15, 233, 186, 30, 80, 27, 233, 208, 75, 222, 63, 166, 53, 139, 128, 27, 172, + 222, 172, 180, 168, 157, 19, 177, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1957, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d1a2b2ba7672" + }, + { + "_tag": "ByteArray", + "bytearray": "6c784f499b08ee8049" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2738894277354585702" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2172327133828620688" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f8e9" + }, + { + "_tag": "ByteArray", + "bytearray": "b94f7fb3" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d912a7d0d14a38aa5a6e" + }, + { + "_tag": "ByteArray", + "bytearray": "9aedd34d4b" + }, + { + "_tag": "ByteArray", + "bytearray": "19e4629d19" + }, + { + "_tag": "ByteArray", + "bytearray": "6eb2ce242f" + }, + { + "_tag": "ByteArray", + "bytearray": "6d9004" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6d9a4e05124f" + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffee9f46d1a2b2ba7672496c784f499b08ee80499f1b260281d57f11fe661b1e25a804cbcc219042f8e944b94f7fb3ffa09f4ad912a7d0d14a38aa5a6e459aedd34d4b4519e4629d19456eb2ce242f436d9004ffffff466d9a4e05124fff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 70, 209, 162, 178, 186, 118, 114, 73, 108, + 120, 79, 73, 155, 8, 238, 128, 73, 159, 27, 38, 2, 129, 213, 127, 17, 254, 102, 27, 30, 37, 168, 4, 203, 204, 33, + 144, 66, 248, 233, 68, 185, 79, 127, 179, 255, 160, 159, 74, 217, 18, 167, 208, 209, 74, 56, 170, 90, 110, 69, + 154, 237, 211, 77, 75, 69, 25, 228, 98, 157, 25, 69, 110, 178, 206, 36, 47, 67, 109, 144, 4, 255, 255, 255, 70, + 109, 154, 78, 5, 18, 79, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1958, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7802458193516026884" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14545348267067803113" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "03c35e84adc4f038d2" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16241443074682953691" + } + }, + { + "_tag": "ByteArray", + "bytearray": "abbd106b649f6eb0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1626501406891355635" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16823036433881408956" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4973107705812098668" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8840bec5a03bc635ddb8" + }, + { + "_tag": "ByteArray", + "bytearray": "41d591cf3e880ca017" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5353738825196608874" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf8aab43" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28f75eae270ff8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "632252023486366881" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13433375483662036548" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66afa62f1ce3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d9f73a8d9e0b0779aaf49" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a4b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7589088446055947052" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9664834513cb1a64a0b49d89" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12013236802372195613" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b83b29260484" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "390096d857fe5414d60c38" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17868465228026677182" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9210761476207362448" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5919601407258691672" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10453287747543747624" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13228512785233466064" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14676811339576277134" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4f6a38b3a70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "140c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6609930198587054814" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b6c47e663475bdc04d8669f1bc9db752f30eb85e99f4903c35e84adc4f038d29f1be165326cf2349fdb48abbd106b649f6eb01b16927e69786eadf3ff1be9776e811cf4a5bcffff9fd8669f1b4504071c1ab01e6c9f4a8840bec5a03bc635ddb84941d591cf3e880ca0171b4a4c4d18a00f9d6a44bf8aab43ffffbf4728f75eae270ff81b08c635dd946d44a1412d1bba6cefd44e1dee444666afa62f1ce34b8d9f73a8d9e0b0779aaf49428a4b1b6951dbbba42f9b2c4c9664834513cb1a64a0b49d891ba6b79739100b551d46b83b292604844b390096d857fe5414d60c38ff1bf7f98a7425f307be1b7fd332c30c314190bf1b5226a61dd38e88581b911189d28f49cc281bb7951e4a5e8dd2d01bcbae8226fade788e46d4f6a38b3a7042140c41e51b5bbb307ea4e89adeffffff", + "cborBytes": [ + 159, 27, 108, 71, 230, 99, 71, 91, 220, 4, 216, 102, 159, 27, 201, 219, 117, 47, 48, 235, 133, 233, 159, 73, 3, + 195, 94, 132, 173, 196, 240, 56, 210, 159, 27, 225, 101, 50, 108, 242, 52, 159, 219, 72, 171, 189, 16, 107, 100, + 159, 110, 176, 27, 22, 146, 126, 105, 120, 110, 173, 243, 255, 27, 233, 119, 110, 129, 28, 244, 165, 188, 255, + 255, 159, 216, 102, 159, 27, 69, 4, 7, 28, 26, 176, 30, 108, 159, 74, 136, 64, 190, 197, 160, 59, 198, 53, 221, + 184, 73, 65, 213, 145, 207, 62, 136, 12, 160, 23, 27, 74, 76, 77, 24, 160, 15, 157, 106, 68, 191, 138, 171, 67, + 255, 255, 191, 71, 40, 247, 94, 174, 39, 15, 248, 27, 8, 198, 53, 221, 148, 109, 68, 161, 65, 45, 27, 186, 108, + 239, 212, 78, 29, 238, 68, 70, 102, 175, 166, 47, 28, 227, 75, 141, 159, 115, 168, 217, 224, 176, 119, 154, 175, + 73, 66, 138, 75, 27, 105, 81, 219, 187, 164, 47, 155, 44, 76, 150, 100, 131, 69, 19, 203, 26, 100, 160, 180, 157, + 137, 27, 166, 183, 151, 57, 16, 11, 85, 29, 70, 184, 59, 41, 38, 4, 132, 75, 57, 0, 150, 216, 87, 254, 84, 20, + 214, 12, 56, 255, 27, 247, 249, 138, 116, 37, 243, 7, 190, 27, 127, 211, 50, 195, 12, 49, 65, 144, 191, 27, 82, + 38, 166, 29, 211, 142, 136, 88, 27, 145, 17, 137, 210, 143, 73, 204, 40, 27, 183, 149, 30, 74, 94, 141, 210, 208, + 27, 203, 174, 130, 38, 250, 222, 120, 142, 70, 212, 246, 163, 139, 58, 112, 66, 20, 12, 65, 229, 27, 91, 187, 48, + 126, 164, 232, 154, 222, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1959, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8294335484157638808" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2802970274890842507" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9189353658594039663" + } + }, + { + "_tag": "ByteArray", + "bytearray": "486cb384a47ac7f1f6252afe" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11342076302537446911" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7104457297409930261" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b731b662d752238989fd8669f1b26e6269d3ed9018b9f1b7f87247717ef176f4c486cb384a47ac7f1f6252afeffff801b9d67264de41ed5ff1b62981a455e0cf41580ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 115, 27, 102, 45, 117, 34, 56, 152, 159, 216, 102, 159, 27, 38, 230, 38, 157, 62, 217, 1, + 139, 159, 27, 127, 135, 36, 119, 23, 239, 23, 111, 76, 72, 108, 179, 132, 164, 122, 199, 241, 246, 37, 42, 254, + 255, 255, 128, 27, 157, 103, 38, 77, 228, 30, 213, 255, 27, 98, 152, 26, 69, 94, 12, 244, 21, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1960, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a5c9040e" + } + ] + }, + "cborHex": "9f44a5c9040eff", + "cborBytes": [159, 68, 165, 201, 4, 14, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1961, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ce66e3a3f0b77827bac77ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6a989cfe446741d7d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b8c4401f74472449609f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7134125646681568906" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "888a6c063703b96879ca70cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b14540f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3175a3aa9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4880087a7967" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3c79f262a131ca668" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4544157698157293126" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4c5ce66e3a3f0b77827bac77ea49b6a989cfe446741d7d4b6b8c4401f74472449609f71b6301817a3975768a4c888a6c063703b96879ca70cb44b14540f945a3175a3aa9464880087a796749a3c79f262a131ca6681b3f101759ba05ae46ffff", + "cborBytes": [ + 159, 191, 76, 92, 230, 110, 58, 63, 11, 119, 130, 123, 172, 119, 234, 73, 182, 169, 137, 207, 228, 70, 116, 29, + 125, 75, 107, 140, 68, 1, 247, 68, 114, 68, 150, 9, 247, 27, 99, 1, 129, 122, 57, 117, 118, 138, 76, 136, 138, + 108, 6, 55, 3, 185, 104, 121, 202, 112, 203, 68, 177, 69, 64, 249, 69, 163, 23, 90, 58, 169, 70, 72, 128, 8, 122, + 121, 103, 73, 163, 199, 159, 38, 42, 19, 28, 166, 104, 27, 63, 16, 23, 89, 186, 5, 174, 70, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1962, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "050640" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05" + } + } + ] + } + ] + }, + "cborHex": "9fbf430506404105ffff", + "cborBytes": [159, 191, 67, 5, 6, 64, 65, 5, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1963, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + }, + "cborHex": "9f08ff", + "cborBytes": [159, 8, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1964, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16250011770197831618" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8197313844579576170" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1736372471290461264" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9882838889047481129" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17622848462723358941" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13424414099053700311" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "880f402f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14140541088438164971" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8611" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14142988317737753814" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4fbe2e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16848158328389668621" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13367355345108603582" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "691b20d1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12518755562619515655" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16814019363733353604" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e43f7155" + }, + { + "_tag": "ByteArray", + "bytearray": "55834cd8684f" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1780941815382452058" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d96c2d9d5e9b35" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14373199846756401705" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ea590443806" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6871632251338061829" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c3b7f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18229267077646049284" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96256fc9e60f8640b1a87c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e737eeeaa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f50f62a6e183ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abfab4" + } + } + ] + } + ] + }, + "cborHex": "9f1be183a39bd68eefc2bf1b71c2b582aa8ea96a1b1818d5901d08fc501b8926e59baa175b291bf490ef4e972a20dd1bba4d197f5bd764d744880f402f1bc43d4b333c2c1deb4286111bc445fcf135421cd6434fbe2e1be9d0aebbfb348f0d1bb98262dcf39e12beff44691b20d1d8669f1badbb8ddb63e1b3079f1be9576586ddddb48444e43f71554655834cd8684fa0d8669f1b18b72d252f82a75a9f47d96c2d9d5e9b351bc777dd1baf9d4229ffffffffbf461ea5904438061b5f5cf120081f7805438c3b7f1bfcfb5dd306d0e0044b96256fc9e60f8640b1a87c452e737eeeaa47f50f62a6e183ea43abfab4ffff", + "cborBytes": [ + 159, 27, 225, 131, 163, 155, 214, 142, 239, 194, 191, 27, 113, 194, 181, 130, 170, 142, 169, 106, 27, 24, 24, 213, + 144, 29, 8, 252, 80, 27, 137, 38, 229, 155, 170, 23, 91, 41, 27, 244, 144, 239, 78, 151, 42, 32, 221, 27, 186, 77, + 25, 127, 91, 215, 100, 215, 68, 136, 15, 64, 47, 27, 196, 61, 75, 51, 60, 44, 29, 235, 66, 134, 17, 27, 196, 69, + 252, 241, 53, 66, 28, 214, 67, 79, 190, 46, 27, 233, 208, 174, 187, 251, 52, 143, 13, 27, 185, 130, 98, 220, 243, + 158, 18, 190, 255, 68, 105, 27, 32, 209, 216, 102, 159, 27, 173, 187, 141, 219, 99, 225, 179, 7, 159, 27, 233, 87, + 101, 134, 221, 221, 180, 132, 68, 228, 63, 113, 85, 70, 85, 131, 76, 216, 104, 79, 160, 216, 102, 159, 27, 24, + 183, 45, 37, 47, 130, 167, 90, 159, 71, 217, 108, 45, 157, 94, 155, 53, 27, 199, 119, 221, 27, 175, 157, 66, 41, + 255, 255, 255, 255, 191, 70, 30, 165, 144, 68, 56, 6, 27, 95, 92, 241, 32, 8, 31, 120, 5, 67, 140, 59, 127, 27, + 252, 251, 93, 211, 6, 208, 224, 4, 75, 150, 37, 111, 201, 230, 15, 134, 64, 177, 168, 124, 69, 46, 115, 126, 238, + 170, 71, 245, 15, 98, 166, 225, 131, 234, 67, 171, 250, 180, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1965, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5389285469658203373" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12091664762377691916" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10137283743409362984" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d69f889b8e12af709251df" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11715936130993322835" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2122836643819119417" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17556470729083643920" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16615037467607210292" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b4aca9694bc26c4ed1ba7ce390978a1630c1b8caedddae141d8284bd69f889b8e12af709251df1ba2975dd663057b531b1d75d4ae270563391bf3a51d1c2492e8101be694788bea889934ffff", + "cborBytes": [ + 159, 191, 27, 74, 202, 150, 148, 188, 38, 196, 237, 27, 167, 206, 57, 9, 120, 161, 99, 12, 27, 140, 174, 221, 218, + 225, 65, 216, 40, 75, 214, 159, 136, 155, 142, 18, 175, 112, 146, 81, 223, 27, 162, 151, 93, 214, 99, 5, 123, 83, + 27, 29, 117, 212, 174, 39, 5, 99, 57, 27, 243, 165, 29, 28, 36, 146, 232, 16, 27, 230, 148, 120, 139, 234, 136, + 153, 52, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1966, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ad9ef920493" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3636382202806402808" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a1ee7fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebda7744f10917c343e0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bff07b322d639611037ff8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43698254" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84476729235d92" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10935125368784504080" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3c438103d4bd3b712" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "416157672390932543" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16277007478883869995" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa16e058de5076" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4196780155228864443" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3cdd1b247d685d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11311408636437320530" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f36aa7f33e9198561" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15588719475205238374" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b02b40c03cc65c8f40e1e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11684159397120570978" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4a36e65bc74" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "990633812623544303" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16021093561287028895" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4472217920426749990" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90c6b8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11593720319468752506" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9dd17e4139b92f47d227" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13645915598955569624" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c55773" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12676465757236465253" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ca427c654a09cb3c1b96372c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17011266972589737177" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "695567218053377920" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e9fe94bf2866e9" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11471452351132388050" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17997207870253432244" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c32" + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf461ad9ef9204931b32770658d9d3fef8443a1ee7fd4aebda7744f10917c343e04c7bff07b322d639611037ff8f44436982544784476729235d921b97c15e960cc3451049e3c438103d4bd3b7121b05c67d32b96a383fffd8669f1be1e38c10113fe52b9f47aa16e058de5076bf1b3a3df550d0d33fbb473cdd1b247d685d1b9cfa32397421d352490f36aa7f33e91985611bd85641c526d26e664b0b02b40c03cc65c8f40e1eff1ba2267910fc69f66246e4a36e65bc74bf1b0dbf703437eacfef1bde565bb5e9cfb09f1b3e108280f92c30264390c6b81ba0e52b345329ce7a4a9dd17e4139b92f47d2271bbd6007f026b561d843c55773ffffff80a09f1bafebda71837b8e659f4cca427c654a09cb3c1b96372c1bec14292e988bc4d91b09a726b3157a6f8047e9fe94bf2866e9ffd8669f1b9f32c9228f10cad29f1bf9c2ed346751fdb4425c32ffffffff", + "cborBytes": [ + 159, 191, 70, 26, 217, 239, 146, 4, 147, 27, 50, 119, 6, 88, 217, 211, 254, 248, 68, 58, 30, 231, 253, 74, 235, + 218, 119, 68, 241, 9, 23, 195, 67, 224, 76, 123, 255, 7, 179, 34, 214, 57, 97, 16, 55, 255, 143, 68, 67, 105, 130, + 84, 71, 132, 71, 103, 41, 35, 93, 146, 27, 151, 193, 94, 150, 12, 195, 69, 16, 73, 227, 196, 56, 16, 61, 75, 211, + 183, 18, 27, 5, 198, 125, 50, 185, 106, 56, 63, 255, 216, 102, 159, 27, 225, 227, 140, 16, 17, 63, 229, 43, 159, + 71, 170, 22, 224, 88, 222, 80, 118, 191, 27, 58, 61, 245, 80, 208, 211, 63, 187, 71, 60, 221, 27, 36, 125, 104, + 93, 27, 156, 250, 50, 57, 116, 33, 211, 82, 73, 15, 54, 170, 127, 51, 233, 25, 133, 97, 27, 216, 86, 65, 197, 38, + 210, 110, 102, 75, 11, 2, 180, 12, 3, 204, 101, 200, 244, 14, 30, 255, 27, 162, 38, 121, 16, 252, 105, 246, 98, + 70, 228, 163, 110, 101, 188, 116, 191, 27, 13, 191, 112, 52, 55, 234, 207, 239, 27, 222, 86, 91, 181, 233, 207, + 176, 159, 27, 62, 16, 130, 128, 249, 44, 48, 38, 67, 144, 198, 184, 27, 160, 229, 43, 52, 83, 41, 206, 122, 74, + 157, 209, 126, 65, 57, 185, 47, 71, 210, 39, 27, 189, 96, 7, 240, 38, 181, 97, 216, 67, 197, 87, 115, 255, 255, + 255, 128, 160, 159, 27, 175, 235, 218, 113, 131, 123, 142, 101, 159, 76, 202, 66, 124, 101, 74, 9, 203, 60, 27, + 150, 55, 44, 27, 236, 20, 41, 46, 152, 139, 196, 217, 27, 9, 167, 38, 179, 21, 122, 111, 128, 71, 233, 254, 148, + 191, 40, 102, 233, 255, 216, 102, 159, 27, 159, 50, 201, 34, 143, 16, 202, 210, 159, 27, 249, 194, 237, 52, 103, + 81, 253, 180, 66, 92, 50, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1967, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e881b8fb3bdb5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14625496935323717681" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d5dc83db972e807a4926bc1c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d29b30768a9a64beb8638be8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9607034618737094880" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12957004351863529711" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16466463440607501708" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8662a5b075f957f7a3" + }, + { + "_tag": "ByteArray", + "bytearray": "65a5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11108176136921887829" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "72cdd490d767889c11a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "039e95de602aca70af4a" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed0d09aa2e9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5906933388973901555" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f478e881b8fb3bdb5d8669f1bcaf833f93588d0319f9f4cd5dc83db972e807a4926bc1cff9f4cd29b30768a9a64beb8638be8ff1b85530b15e2b470e01bb3d086cf120420ef9f41bc1be484a141945ddd8cffffff9f9f498662a5b075f957f7a34265a51b9a282b57c7b33455ffbf4a72cdd490d767889c11a84a039e95de602aca70af4affbf46ed0d09aa2e9c1b51f9a49ef9af06f3ffffff", + "cborBytes": [ + 159, 71, 142, 136, 27, 143, 179, 189, 181, 216, 102, 159, 27, 202, 248, 51, 249, 53, 136, 208, 49, 159, 159, 76, + 213, 220, 131, 219, 151, 46, 128, 122, 73, 38, 188, 28, 255, 159, 76, 210, 155, 48, 118, 138, 154, 100, 190, 184, + 99, 139, 232, 255, 27, 133, 83, 11, 21, 226, 180, 112, 224, 27, 179, 208, 134, 207, 18, 4, 32, 239, 159, 65, 188, + 27, 228, 132, 161, 65, 148, 93, 221, 140, 255, 255, 255, 159, 159, 73, 134, 98, 165, 176, 117, 249, 87, 247, 163, + 66, 101, 165, 27, 154, 40, 43, 87, 199, 179, 52, 85, 255, 191, 74, 114, 205, 212, 144, 215, 103, 136, 156, 17, + 168, 74, 3, 158, 149, 222, 96, 42, 202, 112, 175, 74, 255, 191, 70, 237, 13, 9, 170, 46, 156, 27, 81, 249, 164, + 158, 249, 175, 6, 243, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1968, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15763505771620433256" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12925371411699300986" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6fd6d5dc3eaee96cf0d55ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3dc2a686" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1385687546937954285" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40e2510a256b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12518991621874406877" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12031190955007876197" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14638881566229454924" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7fef3f7572b2fe5aeef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14969164973624024661" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42cebeedcb375a7ed6810269" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17445765073957562706" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7616216370588498369" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "05fb38958123797b222ec1d3" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf426bae1bdac338fb0c417d6841ce1bb36024d140537a7a4ce6fd6d5dc3eaee96cf0d55ab443dc2a686ffbf1b133af37b74eb4fed4640e2510a256b1badbc648d37ea55dd1ba6f7606dfa231c651bcb27c139701ee04c4ae7fef3f7572b2fe5aeef1bcfbd283bc5145e554c42cebeedcb375a7ed68102691bf21bcee7342829521b69b23c6fc57139c1ff804c05fb38958123797b222ec1d380ff", + "cborBytes": [ + 159, 191, 66, 107, 174, 27, 218, 195, 56, 251, 12, 65, 125, 104, 65, 206, 27, 179, 96, 36, 209, 64, 83, 122, 122, + 76, 230, 253, 109, 93, 195, 234, 238, 150, 207, 13, 85, 171, 68, 61, 194, 166, 134, 255, 191, 27, 19, 58, 243, + 123, 116, 235, 79, 237, 70, 64, 226, 81, 10, 37, 107, 27, 173, 188, 100, 141, 55, 234, 85, 221, 27, 166, 247, 96, + 109, 250, 35, 28, 101, 27, 203, 39, 193, 57, 112, 30, 224, 76, 74, 231, 254, 243, 247, 87, 43, 47, 229, 174, 239, + 27, 207, 189, 40, 59, 197, 20, 94, 85, 76, 66, 206, 190, 237, 203, 55, 90, 126, 214, 129, 2, 105, 27, 242, 27, + 206, 231, 52, 40, 41, 82, 27, 105, 178, 60, 111, 197, 113, 57, 193, 255, 128, 76, 5, 251, 56, 149, 129, 35, 121, + 123, 34, 46, 193, 211, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1969, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14201259844701260172" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18115321103226572334" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9470374567466689909" + } + }, + { + "_tag": "ByteArray", + "bytearray": "91685f4d892d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1583054249030125100" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "63ecab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9200021711305334819" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de330e083d428d3f41ba67" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11256563158294770776" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14615486198337114767" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a22f4356be5950" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2558616618991657875" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16dfff7d257c6a432c52" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7930232840533063220" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b611993fd9d496" + } + } + ] + } + ] + }, + "cborHex": "9f1bc51502965670098cd8669f1bfb668c9075f50e2e9fa01b836d877e2fbee5754691685f4d892dd8669f1b15f82373bd9d062c9f4363ecab1b7fad0b00ac3c60234bde330e083d428d3f41ba671b9c37588d79e8b458ffffffffd8669f1bcad4a342df82128f80ff47a22f4356be5950bf1b238208424368a3934a16dfff7d257c6a432c521b6e0dd8c0961c363447b611993fd9d496ffff", + "cborBytes": [ + 159, 27, 197, 21, 2, 150, 86, 112, 9, 140, 216, 102, 159, 27, 251, 102, 140, 144, 117, 245, 14, 46, 159, 160, 27, + 131, 109, 135, 126, 47, 190, 229, 117, 70, 145, 104, 95, 77, 137, 45, 216, 102, 159, 27, 21, 248, 35, 115, 189, + 157, 6, 44, 159, 67, 99, 236, 171, 27, 127, 173, 11, 0, 172, 60, 96, 35, 75, 222, 51, 14, 8, 61, 66, 141, 63, 65, + 186, 103, 27, 156, 55, 88, 141, 121, 232, 180, 88, 255, 255, 255, 255, 216, 102, 159, 27, 202, 212, 163, 66, 223, + 130, 18, 143, 128, 255, 71, 162, 47, 67, 86, 190, 89, 80, 191, 27, 35, 130, 8, 66, 67, 104, 163, 147, 74, 22, 223, + 255, 125, 37, 124, 106, 67, 44, 82, 27, 110, 13, 216, 192, 150, 28, 54, 52, 71, 182, 17, 153, 63, 217, 212, 150, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1970, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5791947949170516327" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72e7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4ff6d099451ea2d79" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4477770741102041602" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f23a5538f00c40" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18350652788317176414" + } + } + } + ] + } + ] + }, + "cborHex": "9fa0bf1b506121f903dc61674272e749a4ff6d099451ea2d791b3e243cc3c9065a0247f23a5538f00c401bfeaa9d7c2c2d425effff", + "cborBytes": [ + 159, 160, 191, 27, 80, 97, 33, 249, 3, 220, 97, 103, 66, 114, 231, 73, 164, 255, 109, 9, 148, 81, 234, 45, 121, + 27, 62, 36, 60, 195, 201, 6, 90, 2, 71, 242, 58, 85, 56, 240, 12, 64, 27, 254, 170, 157, 124, 44, 45, 66, 94, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1971, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "343398692346250780" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3609250182188912987" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6978785071077352116" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1d210b8adb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17556594239828473288" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2447017183942668471" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0d8a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12112336663768733983" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "22f850a48003e1ce4ffff4d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15326455188152010363" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5768495078833194260" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b04c3ff4a91a1c61c9fd8669f1b3216a1eb06e2515b9f1b60d9a00c055d62b4ffff9f451d210b8adb1bf3a58d713aa535c81b21f58d29f82df0b7ff420d8ad8669f1ba817aa0593e0191f9f4c22f850a48003e1ce4ffff4d11bd4b281ca63be467b1b500dcfb61e710514ffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 4, 195, 255, 74, 145, 161, 198, 28, 159, 216, 102, 159, 27, 50, 22, 161, 235, 6, 226, 81, + 91, 159, 27, 96, 217, 160, 12, 5, 93, 98, 180, 255, 255, 159, 69, 29, 33, 11, 138, 219, 27, 243, 165, 141, 113, + 58, 165, 53, 200, 27, 33, 245, 141, 41, 248, 45, 240, 183, 255, 66, 13, 138, 216, 102, 159, 27, 168, 23, 170, 5, + 147, 224, 25, 31, 159, 76, 34, 248, 80, 164, 128, 3, 225, 206, 79, 255, 244, 209, 27, 212, 178, 129, 202, 99, 190, + 70, 123, 27, 80, 13, 207, 182, 30, 113, 5, 20, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1972, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15695433781906147096" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "955d9b5c" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1274709714569224126" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cca01b78c415c564d16bbbd3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16579759968779236861" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10857524612018326632" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "59031bc82dd6e87a00e3bad5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10866431975351602055" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13421243203391170648" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6377828300103492346" + } + } + ] + } + ] + }, + "cborHex": "9fbf1bd9d161ddde2e871844955d9b5cffbf1b11b0adbb50a35fbe4ccca01b78c415c564d16bbbd31be61723d92853f5fd1b96adad1be769cc68ff4c59031bc82dd6e87a00e3bad5d8669f1b96cd524f0ac74b8780ffd8669f1bba41d595ae41a8589f1b5882990c3a1a22faffffff", + "cborBytes": [ + 159, 191, 27, 217, 209, 97, 221, 222, 46, 135, 24, 68, 149, 93, 155, 92, 255, 191, 27, 17, 176, 173, 187, 80, 163, + 95, 190, 76, 204, 160, 27, 120, 196, 21, 197, 100, 209, 107, 187, 211, 27, 230, 23, 35, 217, 40, 83, 245, 253, 27, + 150, 173, 173, 27, 231, 105, 204, 104, 255, 76, 89, 3, 27, 200, 45, 214, 232, 122, 0, 227, 186, 213, 216, 102, + 159, 27, 150, 205, 82, 79, 10, 199, 75, 135, 128, 255, 216, 102, 159, 27, 186, 65, 213, 149, 174, 65, 168, 88, + 159, 27, 88, 130, 153, 12, 58, 26, 34, 250, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1973, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "94cc3fd7af" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5e" + }, + { + "_tag": "ByteArray", + "bytearray": "d85b249f2fb21e7cfa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2787108018764144542" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10000581514210535259" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "53" + }, + { + "_tag": "ByteArray", + "bytearray": "b27900" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5210682174884953177" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3687435263040409245" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2001072282164528685" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f4594cc3fd7af9f9f415e49d85b249f2fb21e7cfa141b26adcbf9f1145f9effd8669f1b8ac933e6dddb675b9f415343b279001b48500fd4a77a3c591b332c66d5b9c5ce9dffffffd8669f1b1bc53ca3744c062d80ff9f4103d9050580ff80ff", + "cborBytes": [ + 159, 69, 148, 204, 63, 215, 175, 159, 159, 65, 94, 73, 216, 91, 36, 159, 47, 178, 30, 124, 250, 20, 27, 38, 173, + 203, 249, 241, 20, 95, 158, 255, 216, 102, 159, 27, 138, 201, 51, 230, 221, 219, 103, 91, 159, 65, 83, 67, 178, + 121, 0, 27, 72, 80, 15, 212, 167, 122, 60, 89, 27, 51, 44, 102, 213, 185, 197, 206, 157, 255, 255, 255, 216, 102, + 159, 27, 27, 197, 60, 163, 116, 76, 6, 45, 128, 255, 159, 65, 3, 217, 5, 5, 128, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1974, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3875151098246226286" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3298539738122397024" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6156680277986659218" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a39a29" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13242269151150538949" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2538417382278189701" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15069315182288086450" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14805132811152813769" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7804568704995429629" + } + } + ] + }, + "cborHex": "9fbf1b35c74d6475ee616e1b2dc6c46a584ba5601b5570ec17e50c4b9243a39a291bb7c5fda1e67100c51b233a4528fa5e52851bd120f65150aea5b21bcd7665d9cd3e6ec9ff1b6c4f65e306620cfdff", + "cborBytes": [ + 159, 191, 27, 53, 199, 77, 100, 117, 238, 97, 110, 27, 45, 198, 196, 106, 88, 75, 165, 96, 27, 85, 112, 236, 23, + 229, 12, 75, 146, 67, 163, 154, 41, 27, 183, 197, 253, 161, 230, 113, 0, 197, 27, 35, 58, 69, 40, 250, 94, 82, + 133, 27, 209, 32, 246, 81, 80, 174, 165, 178, 27, 205, 118, 101, 217, 205, 62, 110, 201, 255, 27, 108, 79, 101, + 227, 6, 98, 12, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1975, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a5e3a27e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7927440873356694839" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f44a5e3a27e1b6e03ed7912569537a0ff", + "cborBytes": [159, 68, 165, 227, 162, 126, 27, 110, 3, 237, 121, 18, 86, 149, 55, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1976, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7313825295645230965" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4104952989810587431" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11490526425416703483" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9e6908" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16631526004778597452" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11015540988468363576" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "95787441328213096" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1180423550699237639" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13306662387860188297" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5370933921901785206" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8765092123693016309" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13443873075969322592" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "499359f117bc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13663285736727600846" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b7cc5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15078950566648592930" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18084444084287263345" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6484831078105582347" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17476631049388509581" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14975601364711982246" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10038289592229739878" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fa330eed0fec1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6113636481796949113" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d85eebd98c48f00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1201707247129244107" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b657fed5b283347751b38f7b8fec95677279f1b9f768ce78d339dfb9f439e69081be6cf0cc8a37ffc4cff1b98df102a8a698138ffd8669f1b01544e2b9e4fcc689fbf1b1061b4f717eef1071bb8aac2f0a6752c891b4a8963f20f0d30761b79a3dcd8d84be4f51bba923b557a96ee6046499359f117bc1bbd9dbdfc824f5ece435b7cc51bd14331a60ec3ba221bfaf8da14445b5271ff1b59febf81e6e58b0b1bf2897758215d498dffffbf1bcfd40618d98344a61b8b4f2b32f15abd66470fa330eed0fec11b54d7fffd1f604479488d85eebd98c48f001b10ad525fd526b1cbffff", + "cborBytes": [ + 159, 27, 101, 127, 237, 91, 40, 51, 71, 117, 27, 56, 247, 184, 254, 201, 86, 119, 39, 159, 27, 159, 118, 140, 231, + 141, 51, 157, 251, 159, 67, 158, 105, 8, 27, 230, 207, 12, 200, 163, 127, 252, 76, 255, 27, 152, 223, 16, 42, 138, + 105, 129, 56, 255, 216, 102, 159, 27, 1, 84, 78, 43, 158, 79, 204, 104, 159, 191, 27, 16, 97, 180, 247, 23, 238, + 241, 7, 27, 184, 170, 194, 240, 166, 117, 44, 137, 27, 74, 137, 99, 242, 15, 13, 48, 118, 27, 121, 163, 220, 216, + 216, 75, 228, 245, 27, 186, 146, 59, 85, 122, 150, 238, 96, 70, 73, 147, 89, 241, 23, 188, 27, 189, 157, 189, 252, + 130, 79, 94, 206, 67, 91, 124, 197, 27, 209, 67, 49, 166, 14, 195, 186, 34, 27, 250, 248, 218, 20, 68, 91, 82, + 113, 255, 27, 89, 254, 191, 129, 230, 229, 139, 11, 27, 242, 137, 119, 88, 33, 93, 73, 141, 255, 255, 191, 27, + 207, 212, 6, 24, 217, 131, 68, 166, 27, 139, 79, 43, 50, 241, 90, 189, 102, 71, 15, 163, 48, 238, 208, 254, 193, + 27, 84, 215, 255, 253, 31, 96, 68, 121, 72, 141, 133, 238, 189, 152, 196, 143, 0, 27, 16, 173, 82, 95, 213, 38, + 177, 203, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1977, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9781100629290151664" + } + } + ] + }, + "cborHex": "9f1b87bd733329306ef0ff", + "cborBytes": [159, 27, 135, 189, 115, 51, 41, 48, 110, 240, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1978, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c1f710bbd6ed2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4148022685469570181" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "429019834949620963" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "802c29cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11131312348565837320" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a87d1f712523bb0916" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16109661470996275190" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf471c1f710bbd6ed21b3990bca7bfacf48541531b05f42f444fc4d4e344802c29cf1b9a7a5d9ad42f960849a87d1f712523bb09161bdf9103c156879ff6ffff", + "cborBytes": [ + 159, 191, 71, 28, 31, 113, 11, 189, 110, 210, 27, 57, 144, 188, 167, 191, 172, 244, 133, 65, 83, 27, 5, 244, 47, + 68, 79, 196, 212, 227, 68, 128, 44, 41, 207, 27, 154, 122, 93, 154, 212, 47, 150, 8, 73, 168, 125, 31, 113, 37, + 35, 187, 9, 22, 27, 223, 145, 3, 193, 86, 135, 159, 246, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1979, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9224cfd7dd99743806" + } + ] + }, + "cborHex": "9f499224cfd7dd99743806ff", + "cborBytes": [159, 73, 146, 36, 207, 215, 221, 153, 116, 56, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1980, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10591938155801236458" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12826615805616097553" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e6129b99" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7902654923503128236" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2945ef74c2efdb68a5e4" + }, + { + "_tag": "ByteArray", + "bytearray": "2f6c" + } + ] + } + ] + }, + "cborHex": "9f1b92fe1fa25b7053ead8669f1bb2014b1dec2889119f44e6129b991b6dabdec869e54eac4a2945ef74c2efdb68a5e4422f6cffffff", + "cborBytes": [ + 159, 27, 146, 254, 31, 162, 91, 112, 83, 234, 216, 102, 159, 27, 178, 1, 75, 29, 236, 40, 137, 17, 159, 68, 230, + 18, 155, 153, 27, 109, 171, 222, 200, 105, 229, 78, 172, 74, 41, 69, 239, 116, 194, 239, 219, 104, 165, 228, 66, + 47, 108, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1981, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11286871749362939696" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2544435147369892219" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4020b23d3755065cdecba130" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8309646097216445190" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e1bbca6df96d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f1b9ca3060e3e2b77301b234fa6491900497b4c4020b23d3755065cdecba130ff1b7351cb1959cc1b06ffbf477e1bbca6df96d9417cffff", + "cborBytes": [ + 159, 159, 159, 27, 156, 163, 6, 14, 62, 43, 119, 48, 27, 35, 79, 166, 73, 25, 0, 73, 123, 76, 64, 32, 178, 61, 55, + 85, 6, 92, 222, 203, 161, 48, 255, 27, 115, 81, 203, 25, 89, 204, 27, 6, 255, 191, 71, 126, 27, 188, 166, 223, + 150, 217, 65, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1982, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9689961730000308439" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1438295930695607271" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6a76d45aef0eadd339" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17639261016447428006" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5127144802304414442" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11402850099704762572" + } + }, + { + "_tag": "ByteArray", + "bytearray": "60e282" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9530219244076687037" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9376439033306899627" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14321749474205251380" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13714534044455685575" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14316417708344484380" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a77d9d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e9ff645494be0c4463f1798" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64bd2b695d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7940383760889365984" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8077410922725725673" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15455266214040300845" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "baca56ead0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9199639054662939938" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10956772051895534091" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5132048756184477336" + } + } + ] + }, + "cborHex": "9fd8669f1b8679a8da93cc48d79f1b13f5da874f0063e7496a76d45aef0eadd339ffff1bf4cb3e7009bea5a69fd8669f1b472747086d5852ea9f1b9e3f0fc033ee10cc4360e2821b844223e8c2c85ebdffffbf1b821fcd9f4e5d64ab1bc6c11344542437341bbe53d00cfbc84dc71bc6ae220dd9fc221c442a77d9d04c8e9ff645494be0c4463f17984564bd2b695d1b6e31e8f5e81745e0ffd8669f1b7018ba7031ed55e99f1bd67c22bc74f7ed2dffff45baca56ead0bf42e5c81b7fabaefa7afeb522ffff9f1b980e46213629420bff1b4738b3272a5c6e98ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 134, 121, 168, 218, 147, 204, 72, 215, 159, 27, 19, 245, 218, 135, 79, 0, 99, 231, 73, + 106, 118, 212, 90, 239, 14, 173, 211, 57, 255, 255, 27, 244, 203, 62, 112, 9, 190, 165, 166, 159, 216, 102, 159, + 27, 71, 39, 71, 8, 109, 88, 82, 234, 159, 27, 158, 63, 15, 192, 51, 238, 16, 204, 67, 96, 226, 130, 27, 132, 66, + 35, 232, 194, 200, 94, 189, 255, 255, 191, 27, 130, 31, 205, 159, 78, 93, 100, 171, 27, 198, 193, 19, 68, 84, 36, + 55, 52, 27, 190, 83, 208, 12, 251, 200, 77, 199, 27, 198, 174, 34, 13, 217, 252, 34, 28, 68, 42, 119, 217, 208, + 76, 142, 159, 246, 69, 73, 75, 224, 196, 70, 63, 23, 152, 69, 100, 189, 43, 105, 93, 27, 110, 49, 232, 245, 232, + 23, 69, 224, 255, 216, 102, 159, 27, 112, 24, 186, 112, 49, 237, 85, 233, 159, 27, 214, 124, 34, 188, 116, 247, + 237, 45, 255, 255, 69, 186, 202, 86, 234, 208, 191, 66, 229, 200, 27, 127, 171, 174, 250, 122, 254, 181, 34, 255, + 255, 159, 27, 152, 14, 70, 33, 54, 41, 66, 11, 255, 27, 71, 56, 179, 39, 42, 92, 110, 152, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1983, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b34397c901a5ec36b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba86df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fda153" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16098014249950738665" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf49b34397c901a5ec36b543ba86df43fda1531bdf67a2ab5d7d78e9ffff", + "cborBytes": [ + 159, 191, 73, 179, 67, 151, 201, 1, 165, 236, 54, 181, 67, 186, 134, 223, 67, 253, 161, 83, 27, 223, 103, 162, + 171, 93, 125, 120, 233, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1984, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "023dd918d485ffc437ca25" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3423485965996087949" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "15c056" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7396951106328384900" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "630bfb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14661370911295265252" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f0db88cf30f100d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2e9f089" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5da70c4036b2fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e60124936049" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11050420822788421186" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + } + ] + }, + "cborHex": "9fa080bf4b023dd918d485ffc437ca251b2f82aa5900bb5a8d4315c0561b66a73fd729a2d58443630bfb1bcb77a72a1fffd9e4487f0db88cf30f100d4204bb44e2e9f089475da70c4036b2fb46e601249360491b995afb30d0e23642ff9f01800effff", + "cborBytes": [ + 159, 160, 128, 191, 75, 2, 61, 217, 24, 212, 133, 255, 196, 55, 202, 37, 27, 47, 130, 170, 89, 0, 187, 90, 141, + 67, 21, 192, 86, 27, 102, 167, 63, 215, 41, 162, 213, 132, 67, 99, 11, 251, 27, 203, 119, 167, 42, 31, 255, 217, + 228, 72, 127, 13, 184, 140, 243, 15, 16, 13, 66, 4, 187, 68, 226, 233, 240, 137, 71, 93, 167, 12, 64, 54, 178, + 251, 70, 230, 1, 36, 147, 96, 73, 27, 153, 90, 251, 48, 208, 226, 54, 66, 255, 159, 1, 128, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1985, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4620581159641844143" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6187863902961535369" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6902788555568968244" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5216777453052528272" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3982693477142988920" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16536951577466003204" + } + }, + { + "_tag": "ByteArray", + "bytearray": "69" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6679507455414489832" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "825162" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14524655387691191362" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6a677ff9d4628" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16715236573361864373" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "207c375ce8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3701456600737850267" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4071269455962528505" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b401f9a15745089af80ff9f1b55dfb56f5e7c09891b5fcba19e6651f234a0ffd8669f1b4865b774317686909f1b37455e9dc25f88781be57f0dd7dab25f044169bf1b5cb260a4228dd2e8438251621bc991f11ec44c0c4247b6a677ff9d46281be7f8731a33d9feb545207c375ce8ff9f1b335e372ace81239b1b38800dffeb8b5af9ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 64, 31, 154, 21, 116, 80, 137, 175, 128, 255, 159, 27, 85, 223, 181, 111, 94, 124, 9, 137, + 27, 95, 203, 161, 158, 102, 81, 242, 52, 160, 255, 216, 102, 159, 27, 72, 101, 183, 116, 49, 118, 134, 144, 159, + 27, 55, 69, 94, 157, 194, 95, 136, 120, 27, 229, 127, 13, 215, 218, 178, 95, 4, 65, 105, 191, 27, 92, 178, 96, + 164, 34, 141, 210, 232, 67, 130, 81, 98, 27, 201, 145, 241, 30, 196, 76, 12, 66, 71, 182, 166, 119, 255, 157, 70, + 40, 27, 231, 248, 115, 26, 51, 217, 254, 181, 69, 32, 124, 55, 92, 232, 255, 159, 27, 51, 94, 55, 42, 206, 129, + 35, 155, 27, 56, 128, 13, 255, 235, 139, 90, 249, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1986, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2465078148743887906" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fce37870c3318c81b50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14612919540327402236" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18e1fd73" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e738703afb7fd5c0e8ddcd12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4482531568556307412" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "37" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12291039017603566072" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11436206969649065210" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1092789383847357217" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2fdcb2032f504e51963874" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "194b8bb936a89136" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14816111275045023303" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0acd0d9bf4ade657f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12191683442570881318" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10801512065543723017" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14443830946411554728" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4ed29cfe15d1e6a4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14432096899500479088" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b2235b7840774fc229fbf4a0fce37870c3318c81b501bcacb84e63c944afc4418e1fd7341b84ce738703afb7fd5c0e8ddcd121b3e3526b64e45f3d4ff41379f1baa928adda4ba09f81b9eb591a5b3c76cfaffbf1b0f2a5e279e8a2b214b2fdcb2032f504e5196387448194b8bb936a891361bcd9d66b49db7ee4749c0acd0d9bf4ade657f1ba9318f7f2872e92641d71b95e6adfea7d45809ffd8669f1bc872cbb814a7a7a89f484ed29cfe15d1e6a41bc8491baa62be1270ffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 34, 53, 183, 132, 7, 116, 252, 34, 159, 191, 74, 15, 206, 55, 135, 12, 51, 24, 200, 27, + 80, 27, 202, 203, 132, 230, 60, 148, 74, 252, 68, 24, 225, 253, 115, 65, 184, 76, 231, 56, 112, 58, 251, 127, 213, + 192, 232, 221, 205, 18, 27, 62, 53, 38, 182, 78, 69, 243, 212, 255, 65, 55, 159, 27, 170, 146, 138, 221, 164, 186, + 9, 248, 27, 158, 181, 145, 165, 179, 199, 108, 250, 255, 191, 27, 15, 42, 94, 39, 158, 138, 43, 33, 75, 47, 220, + 178, 3, 47, 80, 78, 81, 150, 56, 116, 72, 25, 75, 139, 185, 54, 168, 145, 54, 27, 205, 157, 102, 180, 157, 183, + 238, 71, 73, 192, 172, 208, 217, 191, 74, 222, 101, 127, 27, 169, 49, 143, 127, 40, 114, 233, 38, 65, 215, 27, + 149, 230, 173, 254, 167, 212, 88, 9, 255, 216, 102, 159, 27, 200, 114, 203, 184, 20, 167, 167, 168, 159, 72, 78, + 210, 156, 254, 21, 209, 230, 164, 27, 200, 73, 27, 170, 98, 190, 18, 112, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1987, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd87980ff", + "cborBytes": [159, 216, 121, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1988, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1486063580973384345" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13028909874112333246" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3297377786608594206" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18070237811300089291" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3179c7f9f5c2d8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7913450069620264335" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "743b7cef2acbdd1e57" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "754871052670292254" + } + } + ] + }, + "cborHex": "9f80d8669f1b149f8ef4119042999fd8669f1bb4cffc80190b85be9f1b2dc2a3a06d11ad1effff1bfac6618c955fbdcb473179c7f9f5c2d8d8669f1b6dd238e93b818d8f80ffffff49743b7cef2acbdd1e571b0a79d73911a3511eff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 20, 159, 142, 244, 17, 144, 66, 153, 159, 216, 102, 159, 27, 180, 207, 252, 128, 25, + 11, 133, 190, 159, 27, 45, 194, 163, 160, 109, 17, 173, 30, 255, 255, 27, 250, 198, 97, 140, 149, 95, 189, 203, + 71, 49, 121, 199, 249, 245, 194, 216, 216, 102, 159, 27, 109, 210, 56, 233, 59, 129, 141, 143, 128, 255, 255, 255, + 73, 116, 59, 124, 239, 42, 203, 221, 30, 87, 27, 10, 121, 215, 57, 17, 163, 81, 30, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1989, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5364983115972131251" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f1b4a743fb8157cb9b3a0ff", + "cborBytes": [159, 27, 74, 116, 63, 184, 21, 124, 185, 179, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1990, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f2fb00f4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2561101643950571970" + } + } + ] + }, + "cborHex": "9f44f2fb00f41b238adc603957c1c2ff", + "cborBytes": [159, 68, 242, 251, 0, 244, 27, 35, 138, 220, 96, 57, 87, 193, 194, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1991, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "63a577773bd2" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5aaced5ada47" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eecbc5564b64f73b6b0963" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7335270668296227905" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffe4d7489967fa201a" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9a51" + } + ] + }, + "cborHex": "9f4663a577773bd29fbf465aaced5ada474beecbc5564b64f73b6b096341791b65cc1dcf13238c41419d49ffe4d7489967fa201affff429a51ff", + "cborBytes": [ + 159, 70, 99, 165, 119, 119, 59, 210, 159, 191, 70, 90, 172, 237, 90, 218, 71, 75, 238, 203, 197, 86, 75, 100, 247, + 59, 107, 9, 99, 65, 121, 27, 101, 204, 29, 207, 19, 35, 140, 65, 65, 157, 73, 255, 228, 215, 72, 153, 103, 250, + 32, 26, 255, 255, 66, 154, 81, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1992, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "906476934989548546" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2582522455111363534" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12108118976995089503" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11308393882328945045" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "869718299394562682" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16742355194168728511" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca7b90849a897be10af4" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "dc4a4266911faf30f1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a35bbd97d5931e2ca2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5d45e8f539ba0d53daf889c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3f7aeef11" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4148c6ba039650ff7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c925315ff8805889" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80711d629294ad8015" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b0c9473f83b230c029fbf1b23d6f67d7961ebce1ba808ae0ed9f55c5f1b9cef7c52506ad1951b0c11dc2f7211da7a1be858cb5823d7dbbf4aca7b90849a897be10af4ff8049dc4a4266911faf30f1bf49a35bbd97d5931e2ca24ca5d45e8f539ba0d53daf889c45c3f7aeef1149d4148c6ba039650ff748c925315ff88058894980711d629294ad8015ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 12, 148, 115, 248, 59, 35, 12, 2, 159, 191, 27, 35, 214, 246, 125, 121, 97, 235, 206, 27, + 168, 8, 174, 14, 217, 245, 92, 95, 27, 156, 239, 124, 82, 80, 106, 209, 149, 27, 12, 17, 220, 47, 114, 17, 218, + 122, 27, 232, 88, 203, 88, 35, 215, 219, 191, 74, 202, 123, 144, 132, 154, 137, 123, 225, 10, 244, 255, 128, 73, + 220, 74, 66, 102, 145, 31, 175, 48, 241, 191, 73, 163, 91, 189, 151, 213, 147, 30, 44, 162, 76, 165, 212, 94, 143, + 83, 155, 160, 213, 61, 175, 136, 156, 69, 195, 247, 174, 239, 17, 73, 212, 20, 140, 107, 160, 57, 101, 15, 247, + 72, 201, 37, 49, 95, 248, 128, 88, 137, 73, 128, 113, 29, 98, 146, 148, 173, 128, 21, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1993, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16813695597689174226" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00279d9758" + } + ] + }, + "cborHex": "9f1be9563f1035cff8d24500279d9758ff", + "cborBytes": [159, 27, 233, 86, 63, 16, 53, 207, 248, 210, 69, 0, 39, 157, 151, 88, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1994, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "671721248093169752" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17389620416692941608" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7378803856491201933" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14339468054890264092" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10294058566733770606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14270151221492689536" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c314438ef0ea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16662130157710001149" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ad7d0315e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17662975277490165502" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2812686247099117597" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6703216527258387893" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62a79f24e9db" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2232259810912156556" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15670318972843396217" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5083227822770361449" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9403428b2f1d30d0cf4cb6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8318940501214912292" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5075450075666171140" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12262909419897902002" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4943c7b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14643891653924310951" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30d818fc75db2342ffb56e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16776830232766344537" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17651356071245294849" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16296294374190554526" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6905087880827375865" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9725377799015249827" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12843889497501140334" + } + } + ] + }, + "cborHex": "9fd905099fbf1b09526eea8cace8581bf15457a283dcf3281b6666c7034d70c58d1bc7000638dfcbb61c1b8edbd7b9e73baf6e41a31bc609c2edf02daa8046c314438ef0ea1be73bc71943a0c3fd458ad7d0315e1bf51f7e6eb34ed6fe1b2708ab3d4ef8301dff9f1b5d069bea97c385b54662a79f24e9dbffbf1b1efa947893ccbb8c1bd9782814b5650c791b468b40c5d09c14694b9403428b2f1d30d0cf4cb61b7372d04f6a865f241b466f9ef3f34fc5041baa2e9b254dce53b244e4943c7b1bcb398ddf61774fa74b30d818fc75db2342ffb56e1be8d3463591126d591bf4f636d36e82ad01ffd8669f1be228116450d31d9e9f1b5fd3ccd7c79210f9ffff1b86f77b94b8c637a3ff9f04ff1bb23ea972b8ed056eff", + "cborBytes": [ + 159, 217, 5, 9, 159, 191, 27, 9, 82, 110, 234, 140, 172, 232, 88, 27, 241, 84, 87, 162, 131, 220, 243, 40, 27, + 102, 102, 199, 3, 77, 112, 197, 141, 27, 199, 0, 6, 56, 223, 203, 182, 28, 27, 142, 219, 215, 185, 231, 59, 175, + 110, 65, 163, 27, 198, 9, 194, 237, 240, 45, 170, 128, 70, 195, 20, 67, 142, 240, 234, 27, 231, 59, 199, 25, 67, + 160, 195, 253, 69, 138, 215, 208, 49, 94, 27, 245, 31, 126, 110, 179, 78, 214, 254, 27, 39, 8, 171, 61, 78, 248, + 48, 29, 255, 159, 27, 93, 6, 155, 234, 151, 195, 133, 181, 70, 98, 167, 159, 36, 233, 219, 255, 191, 27, 30, 250, + 148, 120, 147, 204, 187, 140, 27, 217, 120, 40, 20, 181, 101, 12, 121, 27, 70, 139, 64, 197, 208, 156, 20, 105, + 75, 148, 3, 66, 139, 47, 29, 48, 208, 207, 76, 182, 27, 115, 114, 208, 79, 106, 134, 95, 36, 27, 70, 111, 158, + 243, 243, 79, 197, 4, 27, 170, 46, 155, 37, 77, 206, 83, 178, 68, 228, 148, 60, 123, 27, 203, 57, 141, 223, 97, + 119, 79, 167, 75, 48, 216, 24, 252, 117, 219, 35, 66, 255, 181, 110, 27, 232, 211, 70, 53, 145, 18, 109, 89, 27, + 244, 246, 54, 211, 110, 130, 173, 1, 255, 216, 102, 159, 27, 226, 40, 17, 100, 80, 211, 29, 158, 159, 27, 95, 211, + 204, 215, 199, 146, 16, 249, 255, 255, 27, 134, 247, 123, 148, 184, 198, 55, 163, 255, 159, 4, 255, 27, 178, 62, + 169, 114, 184, 237, 5, 110, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1995, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8430769960193379042" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12282111711987970475" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df4dcb829a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3779035899092231506" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f4901cd69eb0a55933" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8517864496683453148" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50536d278ed97f40a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17203491661808351199" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18123531792527398561" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37971b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17126846909754209150" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7bb3fa6f706" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16579403215916152592" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b75001c9c545c4ae29f1baa72d38754b531ab45df4dcb829a1b3471d520c6d7655249f4901cd69eb0a55933bf1b763588a151ba8adc4950536d278ed97f40a51beebf1484b67b37df1bfb83b824891816a14337971b1bedaec885c265737e46f7bb3fa6f7061be615df6228a6b710ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 117, 0, 28, 156, 84, 92, 74, 226, 159, 27, 170, 114, 211, 135, 84, 181, 49, 171, 69, 223, + 77, 203, 130, 154, 27, 52, 113, 213, 32, 198, 215, 101, 82, 73, 244, 144, 28, 214, 158, 176, 165, 89, 51, 191, 27, + 118, 53, 136, 161, 81, 186, 138, 220, 73, 80, 83, 109, 39, 142, 217, 127, 64, 165, 27, 238, 191, 20, 132, 182, + 123, 55, 223, 27, 251, 131, 184, 36, 137, 24, 22, 161, 67, 55, 151, 27, 27, 237, 174, 200, 133, 194, 101, 115, + 126, 70, 247, 187, 63, 166, 247, 6, 27, 230, 21, 223, 98, 40, 166, 183, 16, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1996, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7627180219606123725" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10790046682575941473" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13781170239158672293" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de7c6c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15051431575779015141" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15082038390230230168" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12891770598549468433" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0eb5a338dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "645c0dacbc68048a76a35f" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b69d92fffcb8244cd1b95bdf24a28d22f611bbf408d51163cdba543de7c6c1bd0e16d45b367f9e541651bd14e2a02027a24981bb2e8c50e4c5db511ff9fbf450eb5a338dd4b645c0dacbc68048a76a35fffffff", + "cborBytes": [ + 159, 191, 27, 105, 217, 47, 255, 203, 130, 68, 205, 27, 149, 189, 242, 74, 40, 210, 47, 97, 27, 191, 64, 141, 81, + 22, 60, 219, 165, 67, 222, 124, 108, 27, 208, 225, 109, 69, 179, 103, 249, 229, 65, 101, 27, 209, 78, 42, 2, 2, + 122, 36, 152, 27, 178, 232, 197, 14, 76, 93, 181, 17, 255, 159, 191, 69, 14, 181, 163, 56, 221, 75, 100, 92, 13, + 172, 188, 104, 4, 138, 118, 163, 95, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1997, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e7d0bab99e0cc8d150" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2121147502126837460" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7691510576799903296" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3191983403889754542" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12198375541932014000" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3816904327324666322" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6da2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10884299718154611343" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17570225607808159113" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11212013583945056058" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9699893801884982589" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13637148478982991929" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efc2d568cf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15473451430388685474" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8407343421409056331" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1427030122024378316" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7d8dc62aa436c2c116620355" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7456785110885822353" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16220597976277226411" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6630855461084822032" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9953683553583355946" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15793451966672827765" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f77e741ba1f020c2ef" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4635849233514591617" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02a4" + } + ] + }, + "cborHex": "9f49e7d0bab99e0cc8d1501b1d6fd46a347a2ed41b6abdbc1e44516e409fbf1b2c4c33fe75ca81ae1ba94955ecf5abb9b01b34f85e434bd689d2426da21b970ccced197d6a8f1bf3d5fb1968e08d891b9b9912f367e63f3a1b869cf205445e1d3d1bbd40e249f70a303945efc2d568cf1bd6bcbe181593daa21b74ace24c39cdd64bffd8669f1b13cdd455d30b9fcc9f4c7d8dc62aa436c2c1166203551b677bd28cf4c56f911be11b23eb446c93abffffd8669f1b5c0587e8faeb7a109f1b8a22967481fbd82a1bdb2d9ce2eaba757549f77e741ba1f020c2ef1b4055d850ebe77581ffffff4202a4ff", + "cborBytes": [ + 159, 73, 231, 208, 186, 185, 158, 12, 200, 209, 80, 27, 29, 111, 212, 106, 52, 122, 46, 212, 27, 106, 189, 188, + 30, 68, 81, 110, 64, 159, 191, 27, 44, 76, 51, 254, 117, 202, 129, 174, 27, 169, 73, 85, 236, 245, 171, 185, 176, + 27, 52, 248, 94, 67, 75, 214, 137, 210, 66, 109, 162, 27, 151, 12, 204, 237, 25, 125, 106, 143, 27, 243, 213, 251, + 25, 104, 224, 141, 137, 27, 155, 153, 18, 243, 103, 230, 63, 58, 27, 134, 156, 242, 5, 68, 94, 29, 61, 27, 189, + 64, 226, 73, 247, 10, 48, 57, 69, 239, 194, 213, 104, 207, 27, 214, 188, 190, 24, 21, 147, 218, 162, 27, 116, 172, + 226, 76, 57, 205, 214, 75, 255, 216, 102, 159, 27, 19, 205, 212, 85, 211, 11, 159, 204, 159, 76, 125, 141, 198, + 42, 164, 54, 194, 193, 22, 98, 3, 85, 27, 103, 123, 210, 140, 244, 197, 111, 145, 27, 225, 27, 35, 235, 68, 108, + 147, 171, 255, 255, 216, 102, 159, 27, 92, 5, 135, 232, 250, 235, 122, 16, 159, 27, 138, 34, 150, 116, 129, 251, + 216, 42, 27, 219, 45, 156, 226, 234, 186, 117, 117, 73, 247, 126, 116, 27, 161, 240, 32, 194, 239, 27, 64, 85, + 216, 80, 235, 231, 117, 129, 255, 255, 255, 66, 2, 164, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1998, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "278067089621689310" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddc9dc50d74010b7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "465615290947226948" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16314297758511524281" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3245794540525377565" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a5804bbb0c5edf73c5ced3e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13178891713619788371" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4406929323031272843" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15785725220635091085" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f33" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15945245678187856327" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2262572174206843b4b1" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10976656596754369217" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5311222669905148442" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11962978516263860357" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5658c4e3111efb702100" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb3381ab281f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14277217588542195930" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b03dbe48b74a0a3de48ddc9dc50d74010b71b067632a3e2e64d441be268075fe007e9b91b2d0b60f009ead81d4c9a5804bbb0c5edf73c5ced3e1bb6e4d43053a582531b3d288eded1881d8b1bdb122973a9e1208d427f331bdd48e47678b841c74a2262572174206843b4b1ffd8669f1b9854eb0496fe0ac180ffd8669f1b49b540e0d2b2ba1a80ffbf1ba6050993f58978854a5658c4e3111efb70210046bb3381ab281f1bc622ddc0ba0448daffff", + "cborBytes": [ + 159, 191, 27, 3, 219, 228, 139, 116, 160, 163, 222, 72, 221, 201, 220, 80, 215, 64, 16, 183, 27, 6, 118, 50, 163, + 226, 230, 77, 68, 27, 226, 104, 7, 95, 224, 7, 233, 185, 27, 45, 11, 96, 240, 9, 234, 216, 29, 76, 154, 88, 4, + 187, 176, 197, 237, 247, 60, 92, 237, 62, 27, 182, 228, 212, 48, 83, 165, 130, 83, 27, 61, 40, 142, 222, 209, 136, + 29, 139, 27, 219, 18, 41, 115, 169, 225, 32, 141, 66, 127, 51, 27, 221, 72, 228, 118, 120, 184, 65, 199, 74, 34, + 98, 87, 33, 116, 32, 104, 67, 180, 177, 255, 216, 102, 159, 27, 152, 84, 235, 4, 150, 254, 10, 193, 128, 255, 216, + 102, 159, 27, 73, 181, 64, 224, 210, 178, 186, 26, 128, 255, 191, 27, 166, 5, 9, 147, 245, 137, 120, 133, 74, 86, + 88, 196, 227, 17, 30, 251, 112, 33, 0, 70, 187, 51, 129, 171, 40, 31, 27, 198, 34, 221, 192, 186, 4, 72, 218, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 1999, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dff31cb334dd314b9f" + } + ] + }, + "cborHex": "9f49dff31cb334dd314b9fff", + "cborBytes": [159, 73, 223, 243, 28, 179, 52, 221, 49, 75, 159, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2000, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4bbc9a03af13ff0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b997a14" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0bd4ba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22f5ce01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc5f113fb74c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fb96880d1a122877ec5a5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d70f8b957c4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "245dd9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f179" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9015d3ac0ab" + } + } + ] + } + ] + }, + "cborHex": "9fbf48a4bbc9a03af13ff0441b997a14ffa0bf430bd4ba419b4422f5ce0146fc5f113fb74c41b04b9fb96880d1a122877ec5a546d70f8b957c4c43245dd942f17946a9015d3ac0abffff", + "cborBytes": [ + 159, 191, 72, 164, 187, 201, 160, 58, 241, 63, 240, 68, 27, 153, 122, 20, 255, 160, 191, 67, 11, 212, 186, 65, + 155, 68, 34, 245, 206, 1, 70, 252, 95, 17, 63, 183, 76, 65, 176, 75, 159, 185, 104, 128, 209, 161, 34, 135, 126, + 197, 165, 70, 215, 15, 139, 149, 124, 76, 67, 36, 93, 217, 66, 241, 121, 70, 169, 1, 93, 58, 192, 171, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2001, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2087d76beb17114004bc" + }, + { + "_tag": "ByteArray", + "bytearray": "120ebfe3d066" + }, + { + "_tag": "ByteArray", + "bytearray": "2d87bdbc19779473e808d40b" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd905029f9f4a2087d76beb17114004bc46120ebfe3d0664c2d87bdbc19779473e808d40bffffff", + "cborBytes": [ + 159, 217, 5, 2, 159, 159, 74, 32, 135, 215, 107, 235, 23, 17, 64, 4, 188, 70, 18, 14, 191, 227, 208, 102, 76, 45, + 135, 189, 188, 25, 119, 148, 115, 232, 8, 212, 11, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2002, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6613836696953892562" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9861551397686611632" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3662289432932740709" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17434709713805149682" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8754789124544687102" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2099577882759225960" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9375887969346549625" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13629841292990954837" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7608379338593175359" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15508964280035492960" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "311145362257919327" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18049505046040216406" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1257703461910515660" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b364bf" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17676599302732781322" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cab207fcf60723fb" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1ab76c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13543137009887377473" + } + } + ] + }, + "cborHex": "9fd8669f1b5bc9116f2c612ed29fd8669f1b88db44bf595e0eb080ffbf1b32d310d5ea9f6e651bf1f4881c956885f21b797f4252ebf06bfe1b1d2332f5d82162681b821dd86ebac2777941591bbd26ec7125ad3d551b699664b29144873f1bd73ae8d7b9bcc4601b0451690ef6e4bd5fff80d8669f1bfa7cb93580d9035680ffd8669f1b117442a28ff48fcc9f43b364bfffffffffbf1bf54fe569444e170a48cab207fcf60723fbff1bfffffffffffffffd44c1ab76c71bbbf2e35b1ac87841ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 91, 201, 17, 111, 44, 97, 46, 210, 159, 216, 102, 159, 27, 136, 219, 68, 191, 89, 94, 14, + 176, 128, 255, 191, 27, 50, 211, 16, 213, 234, 159, 110, 101, 27, 241, 244, 136, 28, 149, 104, 133, 242, 27, 121, + 127, 66, 82, 235, 240, 107, 254, 27, 29, 35, 50, 245, 216, 33, 98, 104, 27, 130, 29, 216, 110, 186, 194, 119, 121, + 65, 89, 27, 189, 38, 236, 113, 37, 173, 61, 85, 27, 105, 150, 100, 178, 145, 68, 135, 63, 27, 215, 58, 232, 215, + 185, 188, 196, 96, 27, 4, 81, 105, 14, 246, 228, 189, 95, 255, 128, 216, 102, 159, 27, 250, 124, 185, 53, 128, + 217, 3, 86, 128, 255, 216, 102, 159, 27, 17, 116, 66, 162, 143, 244, 143, 204, 159, 67, 179, 100, 191, 255, 255, + 255, 255, 191, 27, 245, 79, 229, 105, 68, 78, 23, 10, 72, 202, 178, 7, 252, 246, 7, 35, 251, 255, 27, 255, 255, + 255, 255, 255, 255, 255, 253, 68, 193, 171, 118, 199, 27, 187, 242, 227, 91, 26, 200, 120, 65, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2003, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8439860573146703093" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "700026784859113225" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17392896886599497746" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2060374031202329313" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1ad57b26495c868714" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10871763088441159638" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7834195039797472506" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4188049284846747073" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7525658968898170295" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04a20e716b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5555802260683695988" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa7034bccd0ea9e00544" + }, + { + "_tag": "ByteArray", + "bytearray": "c580211b7aa33bccab7d32" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5a" + } + ] + }, + "cborHex": "9f1b75206879983be4f5d8669f1b09b6fea6e4c947099f9f1bf15ffb911cc2b8121b1c97eb43da4122e1491ad57b26495c8687141b96e042ed88bd2fd61b6cb8a6e1a0416cfaffd8669f1b3a1ef0a2a51e7dc19f1b687082f5a5e86db74504a20e716b1b4d1a2cb85e5d27744afa7034bccd0ea9e005444bc580211b7aa33bccab7d32ffffffff415aff", + "cborBytes": [ + 159, 27, 117, 32, 104, 121, 152, 59, 228, 245, 216, 102, 159, 27, 9, 182, 254, 166, 228, 201, 71, 9, 159, 159, 27, + 241, 95, 251, 145, 28, 194, 184, 18, 27, 28, 151, 235, 67, 218, 65, 34, 225, 73, 26, 213, 123, 38, 73, 92, 134, + 135, 20, 27, 150, 224, 66, 237, 136, 189, 47, 214, 27, 108, 184, 166, 225, 160, 65, 108, 250, 255, 216, 102, 159, + 27, 58, 30, 240, 162, 165, 30, 125, 193, 159, 27, 104, 112, 130, 245, 165, 232, 109, 183, 69, 4, 162, 14, 113, + 107, 27, 77, 26, 44, 184, 94, 93, 39, 116, 74, 250, 112, 52, 188, 205, 14, 169, 224, 5, 68, 75, 197, 128, 33, 27, + 122, 163, 59, 204, 171, 125, 50, 255, 255, 255, 255, 65, 90, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2004, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13125858003834192" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8988745653945682305" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9726440412506082929" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0989" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16660920890727876322" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14912118192534750279" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9f0a50" + }, + { + "_tag": "ByteArray", + "bytearray": "67da2af193929ce5f9" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "29076c9b611ce31d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2799448393706546574" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12987329595720902122" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fd216" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35867ddc587db7331916" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "416b8ca5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13001994517905235349" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7845245273995755828" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dfdfab7a7e84" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d75b34885ddd350e3b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3233122904605342872" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1278905441495977957" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12368571524943209532" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2450eadd8c755f151f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d00a974dce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a211b3132d2d9ca6" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b002ea1e5f7b0d5501b7cbe708c3fc4c9811b86fb4205b46dce71420989ffd8669f1be7377b46dab846e29f1bcef27c7d02ac84479f439f0a504967da2af193929ce5f9ff4829076c9b611ce31dffffd8669f1b26d9a37b61eaa58e9f1bb43c43751ddca5eabf433fd2164a35867ddc587db733191644416b8ca51bb4705d2063515d95ffd8669f1b6cdfe902c45441349f46dfdfab7a7e84ffffffff49d75b34885ddd350e3bbf1b2cde5c26e42e3c981b11bf95b91dae8fe51baba5fe453b40643c492450eadd8c755f151f45d00a974dce48a211b3132d2d9ca6ffff", + "cborBytes": [ + 159, 191, 27, 0, 46, 161, 229, 247, 176, 213, 80, 27, 124, 190, 112, 140, 63, 196, 201, 129, 27, 134, 251, 66, 5, + 180, 109, 206, 113, 66, 9, 137, 255, 216, 102, 159, 27, 231, 55, 123, 70, 218, 184, 70, 226, 159, 27, 206, 242, + 124, 125, 2, 172, 132, 71, 159, 67, 159, 10, 80, 73, 103, 218, 42, 241, 147, 146, 156, 229, 249, 255, 72, 41, 7, + 108, 155, 97, 28, 227, 29, 255, 255, 216, 102, 159, 27, 38, 217, 163, 123, 97, 234, 165, 142, 159, 27, 180, 60, + 67, 117, 29, 220, 165, 234, 191, 67, 63, 210, 22, 74, 53, 134, 125, 220, 88, 125, 183, 51, 25, 22, 68, 65, 107, + 140, 165, 27, 180, 112, 93, 32, 99, 81, 93, 149, 255, 216, 102, 159, 27, 108, 223, 233, 2, 196, 84, 65, 52, 159, + 70, 223, 223, 171, 122, 126, 132, 255, 255, 255, 255, 73, 215, 91, 52, 136, 93, 221, 53, 14, 59, 191, 27, 44, 222, + 92, 38, 228, 46, 60, 152, 27, 17, 191, 149, 185, 29, 174, 143, 229, 27, 171, 165, 254, 69, 59, 64, 100, 60, 73, + 36, 80, 234, 221, 140, 117, 95, 21, 31, 69, 208, 10, 151, 77, 206, 72, 162, 17, 179, 19, 45, 45, 156, 166, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2005, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1200867978054775648" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d64132803130eed7cb46d" + } + } + ] + } + ] + }, + "cborHex": "9fbf412d1b10aa57104618b36041454b0d64132803130eed7cb46dffff", + "cborBytes": [ + 159, 191, 65, 45, 27, 16, 170, 87, 16, 70, 24, 179, 96, 65, 69, 75, 13, 100, 19, 40, 3, 19, 14, 237, 124, 180, + 109, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2006, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16815663381870190335" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9214854688611535559" + } + }, + { + "_tag": "ByteArray", + "bytearray": "badeae8528b4ceb61e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13958860487723760432" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11343822445370291340" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2291821766581797260" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5599299799921879145" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7529" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10f1e3195dea9cead915bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8557e3dc98045eaf05c4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29d3e51a343d2f95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b20504ec0b523206" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29d858026f4a78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1345175323236489029" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b910e6db44bbe862" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f26505749baa3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e20b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1980049471948317065" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5834733346635488030" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c619bb0d0" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14304443375735749379" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01f497e8df230a8462234fc4" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f80ff1be95d3cc0aaea9eff9f1b7fe1bd8453888ac749badeae8528b4ceb61e1bc1b7d5a80802bb30ffd8669f1b9d6d5a697366348c9fd8669f1b1fce2fc10d9dc18c9f1b4db4b5806d426869427529ffffbf4b10f1e3195dea9cead915bb4a8557e3dc98045eaf05c44829d3e51a343d2f9548b20504ec0b5232064729d858026f4a781b12ab05d45621d74548b910e6db44bbe862479f26505749baa342e20b1b1b7a8c81052de189ffbf1b50f92310a5559b1e457c619bb0d0ff9f1bc6839776486b3b034c01f497e8df230a8462234fc4ffffffff", + "cborBytes": [ + 159, 159, 128, 255, 27, 233, 93, 60, 192, 170, 234, 158, 255, 159, 27, 127, 225, 189, 132, 83, 136, 138, 199, 73, + 186, 222, 174, 133, 40, 180, 206, 182, 30, 27, 193, 183, 213, 168, 8, 2, 187, 48, 255, 216, 102, 159, 27, 157, + 109, 90, 105, 115, 102, 52, 140, 159, 216, 102, 159, 27, 31, 206, 47, 193, 13, 157, 193, 140, 159, 27, 77, 180, + 181, 128, 109, 66, 104, 105, 66, 117, 41, 255, 255, 191, 75, 16, 241, 227, 25, 93, 234, 156, 234, 217, 21, 187, + 74, 133, 87, 227, 220, 152, 4, 94, 175, 5, 196, 72, 41, 211, 229, 26, 52, 61, 47, 149, 72, 178, 5, 4, 236, 11, 82, + 50, 6, 71, 41, 216, 88, 2, 111, 74, 120, 27, 18, 171, 5, 212, 86, 33, 215, 69, 72, 185, 16, 230, 219, 68, 187, + 232, 98, 71, 159, 38, 80, 87, 73, 186, 163, 66, 226, 11, 27, 27, 122, 140, 129, 5, 45, 225, 137, 255, 191, 27, 80, + 249, 35, 16, 165, 85, 155, 30, 69, 124, 97, 155, 176, 208, 255, 159, 27, 198, 131, 151, 118, 72, 107, 59, 3, 76, + 1, 244, 151, 232, 223, 35, 10, 132, 98, 35, 79, 196, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2007, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2433008298950989379" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1654826264172478818" + } + } + ] + }, + "cborHex": "9f1b21c3c828428d16431b16f71fb838fcc162ff", + "cborBytes": [159, 27, 33, 195, 200, 40, 66, 141, 22, 67, 27, 22, 247, 31, 184, 56, 252, 193, 98, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2008, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5f7c2ec931308e200f" + }, + { + "_tag": "ByteArray", + "bytearray": "60a287064031b7" + } + ] + }, + "cborHex": "9f495f7c2ec931308e200f4760a287064031b7ff", + "cborBytes": [159, 73, 95, 124, 46, 201, 49, 48, 142, 32, 15, 71, 96, 162, 135, 6, 64, 49, 183, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2009, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2704667522229267674" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1653460175490036364" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15895544035608016961" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3690409733813445444" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31e91929fc52" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e4fefbab9a5f55d9e63d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e3bd9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15316615554540232173" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3099100051330591664" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16287519976317145687" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5ed5dbe3ef7447" + } + ] + } + ] + } + ] + }, + "cborHex": "9fa0d8669f1b2588e8c81202ecda9f9f1b16f24544ea56b28c1bdc98511509feb8411b3336f819ab9823444631e91929fc52ff4ae4fefbab9a5f55d9e63dbf437e3bd91bd48f8cb22997ddedffffff9fd8669f1b2b023713b2f46bb09f1be208e51f9c765257475ed5dbe3ef7447ffffffff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 37, 136, 232, 200, 18, 2, 236, 218, 159, 159, 27, 22, 242, 69, 68, 234, 86, 178, 140, + 27, 220, 152, 81, 21, 9, 254, 184, 65, 27, 51, 54, 248, 25, 171, 152, 35, 68, 70, 49, 233, 25, 41, 252, 82, 255, + 74, 228, 254, 251, 171, 154, 95, 85, 217, 230, 61, 191, 67, 126, 59, 217, 27, 212, 143, 140, 178, 41, 151, 221, + 237, 255, 255, 255, 159, 216, 102, 159, 27, 43, 2, 55, 19, 178, 244, 107, 176, 159, 27, 226, 8, 229, 31, 156, 118, + 82, 87, 71, 94, 213, 219, 227, 239, 116, 71, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2010, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6254562872241555788" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "823d476eb6ed99b0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11823461510962673761" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6757193276362426135" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54af2669ed9017" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12567213786100348276" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9e16bb10a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddd1a91f6d053f28e8cc" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11682074076869182460" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c687cb5ad2807b862127599e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1955582402092228414" + } + } + ] + }, + "cborHex": "9f9fbf1b56ccabcb514e094c48823d476eb6ed99b01ba4155f99d06ef8611b5dc65f7bd43d87174754af2669ed90171bae67b65ac0e7357445a9e16bb10a4addd1a91f6d053f28e8ccffd8669f1ba21f107a879643fc80ff4cc687cb5ad2807b862127599eff1b1b239fd565b65f3eff", + "cborBytes": [ + 159, 159, 191, 27, 86, 204, 171, 203, 81, 78, 9, 76, 72, 130, 61, 71, 110, 182, 237, 153, 176, 27, 164, 21, 95, + 153, 208, 110, 248, 97, 27, 93, 198, 95, 123, 212, 61, 135, 23, 71, 84, 175, 38, 105, 237, 144, 23, 27, 174, 103, + 182, 90, 192, 231, 53, 116, 69, 169, 225, 107, 177, 10, 74, 221, 209, 169, 31, 109, 5, 63, 40, 232, 204, 255, 216, + 102, 159, 27, 162, 31, 16, 122, 135, 150, 67, 252, 128, 255, 76, 198, 135, 203, 90, 210, 128, 123, 134, 33, 39, + 89, 158, 255, 27, 27, 35, 159, 213, 101, 182, 95, 62, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2011, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2013407479919045266" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "429506d545" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10089311095927979116" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9911380623720233684" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11719048790427124893" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae36" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b1bf10f6f7cb06a9245429506d5451b8c046efc7d31bc6c1b898c4c2a1e88bad41ba2a26cc8e2e1449d42ae36ffff", + "cborBytes": [ + 159, 191, 27, 27, 241, 15, 111, 124, 176, 106, 146, 69, 66, 149, 6, 213, 69, 27, 140, 4, 110, 252, 125, 49, 188, + 108, 27, 137, 140, 76, 42, 30, 136, 186, 212, 27, 162, 162, 108, 200, 226, 225, 68, 157, 66, 174, 54, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2012, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18080401580546950070" + } + } + ] + }, + "cborHex": "9f1bfaea7d7184e983b6ff", + "cborBytes": [159, 27, 250, 234, 125, 113, 132, 233, 131, 182, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2013, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13531134534357065437" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "39e8d6589d847361a987" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a87982ecc5d45255" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7040288130975986047" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16917929078710023518" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6404784919972670594" + } + }, + { + "_tag": "ByteArray", + "bytearray": "506c8e9577" + }, + { + "_tag": "ByteArray", + "bytearray": "c7896a0564e79015d75e" + } + ] + } + ] + } + ] + }, + "cborHex": "9fa0a0d8669f1bbbc83f2b005f9edd9f4a39e8d6589d847361a987ffff9f48a87982ecc5d45255d8669f1b61b420c10b38f17f9f1beac88edcafc3355e1b58e25df361bfec8245506c8e95774ac7896a0564e79015d75effffffff", + "cborBytes": [ + 159, 160, 160, 216, 102, 159, 27, 187, 200, 63, 43, 0, 95, 158, 221, 159, 74, 57, 232, 214, 88, 157, 132, 115, 97, + 169, 135, 255, 255, 159, 72, 168, 121, 130, 236, 197, 212, 82, 85, 216, 102, 159, 27, 97, 180, 32, 193, 11, 56, + 241, 127, 159, 27, 234, 200, 142, 220, 175, 195, 53, 94, 27, 88, 226, 93, 243, 97, 191, 236, 130, 69, 80, 108, + 142, 149, 119, 74, 199, 137, 106, 5, 100, 231, 144, 21, 215, 94, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2014, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3250529783162938311" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "469193558552409572" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7121362773686613715" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1179831012683553550" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cac761325097dcfd3dd0edb5" + }, + { + "_tag": "ByteArray", + "bytearray": "a5470a6b3bccb9f97b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4158443922202805733" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12703474282999433178" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c4fb764ce3f0c07cd911" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1456111586398047144" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6df473ce60" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c9c653df16766def564" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27427b210b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71855c1eb679" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69c73ebd58a4ba9e45fe3d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aee13000" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb582be6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13605152627076649800" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "616c4ca1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2942175927789451314" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15255632425137476433" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b2d1c339da14123c79fd8669f1b0682e90e3c6af5e480ffd8669f1b62d429b64a47f6d39f1b105f9a0e15fe1b0e4ccac761325097dcfd3dd0edb549a5470a6b3bccb9f97b1b39b5c2b70147c5e5ffff9f1bb04bce8df37dc7daffffff4ac4fb764ce3f0c07cd911d8669f1b143525c5e4960ba89f456df473ce60bf4a1c9c653df16766def56441fd4527427b210b4671855c1eb6794b69c73ebd58a4ba9e45fe3d44aee1300044bb582be61bbccf363b2be05348ff44616c4ca1ffffd8669f1b28d4b56b029878329f80ffffd8669f1bd3b6e4dce440135180ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 45, 28, 51, 157, 161, 65, 35, 199, 159, 216, 102, 159, 27, 6, 130, 233, 14, 60, 106, 245, + 228, 128, 255, 216, 102, 159, 27, 98, 212, 41, 182, 74, 71, 246, 211, 159, 27, 16, 95, 154, 14, 21, 254, 27, 14, + 76, 202, 199, 97, 50, 80, 151, 220, 253, 61, 208, 237, 181, 73, 165, 71, 10, 107, 59, 204, 185, 249, 123, 27, 57, + 181, 194, 183, 1, 71, 197, 229, 255, 255, 159, 27, 176, 75, 206, 141, 243, 125, 199, 218, 255, 255, 255, 74, 196, + 251, 118, 76, 227, 240, 192, 124, 217, 17, 216, 102, 159, 27, 20, 53, 37, 197, 228, 150, 11, 168, 159, 69, 109, + 244, 115, 206, 96, 191, 74, 28, 156, 101, 61, 241, 103, 102, 222, 245, 100, 65, 253, 69, 39, 66, 123, 33, 11, 70, + 113, 133, 92, 30, 182, 121, 75, 105, 199, 62, 189, 88, 164, 186, 158, 69, 254, 61, 68, 174, 225, 48, 0, 68, 187, + 88, 43, 230, 27, 188, 207, 54, 59, 43, 224, 83, 72, 255, 68, 97, 108, 76, 161, 255, 255, 216, 102, 159, 27, 40, + 212, 181, 107, 2, 152, 120, 50, 159, 128, 255, 255, 216, 102, 159, 27, 211, 182, 228, 220, 228, 64, 19, 81, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2015, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2570565591055720844" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14291521954226794445" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2425f4047a9ad9212d605a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "349268723954081300" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15837430121906639987" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4e948abac196fb0e" + }, + { + "_tag": "ByteArray", + "bytearray": "7e387cd13f863682" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2073218580956694170" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a0dba08c2d1ab88aff" + }, + { + "_tag": "ByteArray", + "bytearray": "00a4982220bab4" + }, + { + "_tag": "ByteArray", + "bytearray": "c81f46" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "338919590524480416" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5660148403599636904" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8906946431527808872" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b23ac7bc91eb7e18c9f1bc655af7f65626fcd4b2425f4047a9ad9212d605a1b04d8da0dce6fde141bdbc9dac91b511473ffff9f484e948abac196fb0e487e387cd13f863682ffd8669f1b1cc58d50a3a9c69a9f49a0dba08c2d1ab88aff4700a4982220bab443c81f461b04b4159268a1eba0ffffd8669f1b4e8ce2fbfc8cf9a89f417d1b7b9bd496a4a5ef68ffffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 35, 172, 123, 201, 30, 183, 225, 140, 159, 27, 198, 85, 175, 127, 101, 98, 111, 205, + 75, 36, 37, 244, 4, 122, 154, 217, 33, 45, 96, 90, 27, 4, 216, 218, 13, 206, 111, 222, 20, 27, 219, 201, 218, 201, + 27, 81, 20, 115, 255, 255, 159, 72, 78, 148, 138, 186, 193, 150, 251, 14, 72, 126, 56, 124, 209, 63, 134, 54, 130, + 255, 216, 102, 159, 27, 28, 197, 141, 80, 163, 169, 198, 154, 159, 73, 160, 219, 160, 140, 45, 26, 184, 138, 255, + 71, 0, 164, 152, 34, 32, 186, 180, 67, 200, 31, 70, 27, 4, 180, 21, 146, 104, 161, 235, 160, 255, 255, 216, 102, + 159, 27, 78, 140, 226, 251, 252, 140, 249, 168, 159, 65, 125, 27, 123, 155, 212, 150, 164, 165, 239, 104, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2016, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2417630016351065871" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9022357586790419486" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "22264502616819331" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11906102333641212111" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1468398771510122695" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f180ac648e5296cd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3409823059374927501" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44d040479c380efc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16526067585729378898" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3945979089889619907" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17871526886436654865" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9266392460715140645" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "00" + } + ] + }, + "cborHex": "9fd8669f1b218d25b0d2ed570f9f1b7d35da6c35318c1ebf1b004f1972799386831ba53af8fdc02240cf1b1460cce71c7b18c748f180ac648e5296cd1b2f522001a8fa6e8d4844d040479c380efc1be55862e90d7f3a521b36c2ef1357fd6fc31bf8046b040be64f111b8098d6d8fa48a625ffffff4100ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 33, 141, 37, 176, 210, 237, 87, 15, 159, 27, 125, 53, 218, 108, 53, 49, 140, 30, 191, 27, + 0, 79, 25, 114, 121, 147, 134, 131, 27, 165, 58, 248, 253, 192, 34, 64, 207, 27, 20, 96, 204, 231, 28, 123, 24, + 199, 72, 241, 128, 172, 100, 142, 82, 150, 205, 27, 47, 82, 32, 1, 168, 250, 110, 141, 72, 68, 208, 64, 71, 156, + 56, 14, 252, 27, 229, 88, 98, 233, 13, 127, 58, 82, 27, 54, 194, 239, 19, 87, 253, 111, 195, 27, 248, 4, 107, 4, + 11, 230, 79, 17, 27, 128, 152, 214, 216, 250, 72, 166, 37, 255, 255, 255, 65, 0, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2017, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1f02fa42fdfe" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f461f02fa42fdfe80ff", + "cborBytes": [159, 70, 31, 2, 250, 66, 253, 254, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2018, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16950717220711314379" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2881aea77b85f4a24ab547" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4622ef18f5aa77e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5725de1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "142e5b9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75059771f88e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea7b4267d49400082826f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "972692be66139a573f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d80cde682b4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1699014052349950757" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15550734626769481830" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3376463667545185557" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8aca9f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12166029799613072596" + } + }, + { + "_tag": "ByteArray", + "bytearray": "458564269ccf1fd1a6e7" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16582781968022955418" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2c402" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "674526" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa152ea76b740a75" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfd5981e931f5515bb6a80" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5136709296701208043" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecce9472b564c44d83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10534623789444248992" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1beb3d0b80e49833cb9fd905009f01ffffffbf4b2881aea77b85f4a24ab54748e4622ef18f5aa77e445725de1b44142e5b9e4675059771f88e4bea7b4267d49400082826f349972692be66139a573f468d80cde682b44298e21b17941c4762b73b25ffd8669f1bd7cf4ec070f630669fd8669f1b2edb9bd0fd0b1d159f438aca9f1ba8d66ba4f4c104d44a458564269ccf1fd1a6e7ffffbf1be621e0572fc2e59a43f2c4024367452648aa152ea76b740a754bdfd5981e931f5515bb6a801b474941e3d05275ebffffffbf49ecce9472b564c44d831b923280858c3435a0ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 235, 61, 11, 128, 228, 152, 51, 203, 159, 217, 5, 0, 159, 1, 255, 255, 255, 191, 75, 40, + 129, 174, 167, 123, 133, 244, 162, 74, 181, 71, 72, 228, 98, 46, 241, 143, 90, 167, 126, 68, 87, 37, 222, 27, 68, + 20, 46, 91, 158, 70, 117, 5, 151, 113, 248, 142, 75, 234, 123, 66, 103, 212, 148, 0, 8, 40, 38, 243, 73, 151, 38, + 146, 190, 102, 19, 154, 87, 63, 70, 141, 128, 205, 230, 130, 180, 66, 152, 226, 27, 23, 148, 28, 71, 98, 183, 59, + 37, 255, 216, 102, 159, 27, 215, 207, 78, 192, 112, 246, 48, 102, 159, 216, 102, 159, 27, 46, 219, 155, 208, 253, + 11, 29, 21, 159, 67, 138, 202, 159, 27, 168, 214, 107, 164, 244, 193, 4, 212, 74, 69, 133, 100, 38, 156, 207, 31, + 209, 166, 231, 255, 255, 191, 27, 230, 33, 224, 87, 47, 194, 229, 154, 67, 242, 196, 2, 67, 103, 69, 38, 72, 170, + 21, 46, 167, 107, 116, 10, 117, 75, 223, 213, 152, 30, 147, 31, 85, 21, 187, 106, 128, 27, 71, 73, 65, 227, 208, + 82, 117, 235, 255, 255, 255, 191, 73, 236, 206, 148, 114, 181, 100, 196, 77, 131, 27, 146, 50, 128, 133, 140, 52, + 53, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2019, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0203d2780600" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac0102" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "79c4a58b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13943095508657032420" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2574057926691681453" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12599603094427984614" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16487582514639027961" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eb8df705f33c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3553293155080908621" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7743924914635771667" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7510129830705256480" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15685144428200056580" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "561a37ccee806e4c201a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15765534013141362196" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11503855892172282693" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24bec4b9370bdcb2d4b8fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36291e020fa07029b63f" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c0bd8a" + } + ] + } + ] + }, + "cborHex": "9fbf460203d27806000d43ac01024104ff4479c4a58bd8669f1bc17fd37dced8cce49fd8669f1b23b8e40bdfbc74ad9f1baedac842424ae2e61be4cfa8f12e003ef946eb8df705f33cffff1b314fd54c636caf4d4128d8669f1b6b77f2ae48298f1380ffffff9fbf1b6839574a6840582042f4ff1bd9acd3c1058fd7044a561a37ccee806e4c201a1bdaca6da7d3a126141b9fa5e7fbe0369b454b24bec4b9370bdcb2d4b8fb4a36291e020fa07029b63fff43c0bd8affff", + "cborBytes": [ + 159, 191, 70, 2, 3, 210, 120, 6, 0, 13, 67, 172, 1, 2, 65, 4, 255, 68, 121, 196, 165, 139, 216, 102, 159, 27, 193, + 127, 211, 125, 206, 216, 204, 228, 159, 216, 102, 159, 27, 35, 184, 228, 11, 223, 188, 116, 173, 159, 27, 174, + 218, 200, 66, 66, 74, 226, 230, 27, 228, 207, 168, 241, 46, 0, 62, 249, 70, 235, 141, 247, 5, 243, 60, 255, 255, + 27, 49, 79, 213, 76, 99, 108, 175, 77, 65, 40, 216, 102, 159, 27, 107, 119, 242, 174, 72, 41, 143, 19, 128, 255, + 255, 255, 159, 191, 27, 104, 57, 87, 74, 104, 64, 88, 32, 66, 244, 255, 27, 217, 172, 211, 193, 5, 143, 215, 4, + 74, 86, 26, 55, 204, 238, 128, 110, 76, 32, 26, 27, 218, 202, 109, 167, 211, 161, 38, 20, 27, 159, 165, 231, 251, + 224, 54, 155, 69, 75, 36, 190, 196, 185, 55, 11, 220, 178, 212, 184, 251, 74, 54, 41, 30, 2, 15, 160, 112, 41, + 182, 63, 255, 67, 192, 189, 138, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2020, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "ByteArray", + "bytearray": "18291afa631fc067" + } + ] + }, + "cborHex": "9f0f4818291afa631fc067ff", + "cborBytes": [159, 15, 72, 24, 41, 26, 250, 99, 31, 192, 103, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2021, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "884241826392481648" + } + }, + { + "_tag": "ByteArray", + "bytearray": "568cf724b496bc" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3929618825057029917" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10363873008853642420" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f1b0c45754195aa9f7047568cf724b496bcff1b3688cf805a364f1d9f1b8fd3df9765faecb4ffffff", + "cborBytes": [ + 159, 159, 159, 27, 12, 69, 117, 65, 149, 170, 159, 112, 71, 86, 140, 247, 36, 180, 150, 188, 255, 27, 54, 136, + 207, 128, 90, 54, 79, 29, 159, 27, 143, 211, 223, 151, 101, 250, 236, 180, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2022, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5772744983305071400" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f686" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f2ff84788b" + }, + { + "_tag": "ByteArray", + "bytearray": "ae7c2fc3" + } + ] + } + ] + }, + "cborHex": "9f809fd8669f1b501ce8fa1cd12b289f42f686ffffa045f2ff84788b44ae7c2fc3ffff", + "cborBytes": [ + 159, 128, 159, 216, 102, 159, 27, 80, 28, 232, 250, 28, 209, 43, 40, 159, 66, 246, 134, 255, 255, 160, 69, 242, + 255, 132, 120, 139, 68, 174, 124, 47, 195, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2023, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5338800433608114603" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3814387702774085419" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7693749986953095782" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6908557112886805012" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18009336841792454273" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6496019468617559263" + } + }, + { + "_tag": "ByteArray", + "bytearray": "66469864d1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "479d5d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f15e0" + } + } + ] + } + ] + }, + "cborHex": "9f9f801b4a173ab54be9c1abffbf1b34ef6d67fb77b72b1b6ac5b0d993016a661b5fe02017501dc2141bf9ee0470a764fe81ff1b5a267f4a10f8acdf4566469864d1bf43479d5d434f15e0ffff", + "cborBytes": [ + 159, 159, 128, 27, 74, 23, 58, 181, 75, 233, 193, 171, 255, 191, 27, 52, 239, 109, 103, 251, 119, 183, 43, 27, + 106, 197, 176, 217, 147, 1, 106, 102, 27, 95, 224, 32, 23, 80, 29, 194, 20, 27, 249, 238, 4, 112, 167, 100, 254, + 129, 255, 27, 90, 38, 127, 74, 16, 248, 172, 223, 69, 102, 70, 152, 100, 209, 191, 67, 71, 157, 93, 67, 79, 21, + 224, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2024, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18092115409196386000" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5329401340656893610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1332113839609471187" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "563eaf7907539838d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "431cff4f3a51" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5c2cb7ab08388641556546" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "35314c5f3eef312ad1" + } + ] + }, + "cborHex": "9f1bfb141b1bc88586d0bf1b49f5d6486f583eaa1b127c9e7ab24de0d349563eaf7907539838d646431cff4f3a51ff4b5c2cb7ab08388641556546804935314c5f3eef312ad1ff", + "cborBytes": [ + 159, 27, 251, 20, 27, 27, 200, 133, 134, 208, 191, 27, 73, 245, 214, 72, 111, 88, 62, 170, 27, 18, 124, 158, 122, + 178, 77, 224, 211, 73, 86, 62, 175, 121, 7, 83, 152, 56, 214, 70, 67, 28, 255, 79, 58, 81, 255, 75, 92, 44, 183, + 171, 8, 56, 134, 65, 85, 101, 70, 128, 73, 53, 49, 76, 95, 62, 239, 49, 42, 209, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2025, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7292004166694488375" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f85b01a9c93e9a8874e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17923316341285017356" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e" + }, + { + "_tag": "ByteArray", + "bytearray": "452b23" + }, + { + "_tag": "ByteArray", + "bytearray": "44" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2646630636335708919" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8218927740686522137" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4263838435102728196" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3896842219745489624" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7011028708448209344" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "917342da5685779ac177de" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fdfe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14485118301488020337" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8342329226733109816" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "44b40986ca23f6b956e2" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "9fa0d8669f1b65326727a87e49379fbf4af85b01a9c93e9a8874e01bf8bc6940273f570cff9f418e43452b234144ffbf1b24bab88a9274baf71b720f7f3c023957191b3b2c327747f4a0041b36145d5a3dacb2d81b614c2d76dd1f09c04b917342da5685779ac177deff9f42fdfe1bc9057a5989b3fb711b73c5e83b6ec9423809ff4a44b40986ca23f6b956e2ffff0eff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 101, 50, 103, 39, 168, 126, 73, 55, 159, 191, 74, 248, 91, 1, 169, 201, 62, 154, 136, + 116, 224, 27, 248, 188, 105, 64, 39, 63, 87, 12, 255, 159, 65, 142, 67, 69, 43, 35, 65, 68, 255, 191, 27, 36, 186, + 184, 138, 146, 116, 186, 247, 27, 114, 15, 127, 60, 2, 57, 87, 25, 27, 59, 44, 50, 119, 71, 244, 160, 4, 27, 54, + 20, 93, 90, 61, 172, 178, 216, 27, 97, 76, 45, 118, 221, 31, 9, 192, 75, 145, 115, 66, 218, 86, 133, 119, 154, + 193, 119, 222, 255, 159, 66, 253, 254, 27, 201, 5, 122, 89, 137, 179, 251, 113, 27, 115, 197, 232, 59, 110, 201, + 66, 56, 9, 255, 74, 68, 180, 9, 134, 202, 35, 246, 185, 86, 226, 255, 255, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2026, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8895325672464360955" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3411971833711379550" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "17ff0fe5be" + }, + { + "_tag": "ByteArray", + "bytearray": "4c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "49d662a0005ee106" + } + ] + }, + "cborHex": "9fd8669f1b7b728b91d4a6a5fb9f1b2f59c24e2c01445ea04517ff0fe5be414cffff4849d662a0005ee106ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 123, 114, 139, 145, 212, 166, 165, 251, 159, 27, 47, 89, 194, 78, 44, 1, 68, 94, 160, 69, + 23, 255, 15, 229, 190, 65, 76, 255, 255, 72, 73, 214, 98, 160, 0, 94, 225, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2027, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8677964345835927904" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e72cbf886bb566" + }, + { + "_tag": "ByteArray", + "bytearray": "de7e7212bff3b97a618df1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5327173693298155628" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16308787434050996589" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36938414c304" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0307daecd35" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4133901476790898072" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff60b2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6cffa8" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17df78a35d79d2568701c90e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11574803182084598841" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50c5bb69105b2334cbbe9000" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01441981f160" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e461493" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "310f6e50716459462f837cd8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86901767" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2407" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2c6333621ea570de5bf325b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18081046701502160142" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "26" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9179496606533103148" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cd761c86b6c395be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12488790358616029443" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17450712506405827943" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9639017465350861650" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e72a18d42808a5b3d13f86" + }, + { + "_tag": "ByteArray", + "bytearray": "885bd6b1" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16143512374080838636" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eeff45f1389ca4" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5033baf724" + } + ] + } + ] + }, + "cborHex": "9fa09f809f1b786e52983f0e396047e72cbf886bb5664bde7e7212bff3b97a618df11b49edec3fddd7a06cffbf1be25473c37bf6c96d4636938414c30446f0307daecd351b395e917da4958d9843ff60b2436cffa8ffbf4c17df78a35d79d2568701c90e1ba0a1f62b0d36ac394c50c5bb69105b2334cbbe90004601441981f160447e4614934c310f6e50716459462f837cd844869017674224074ce2c6333621ea570de5bf325b1bfaecc82d7248dd0effff41269fd8669f1b7f641f87514f2e2c9f48cd761c86b6c395be1bad5118a9a7a1b9031bf22d629115c93567ffffd8669f1b85c4ab50a60633529f4be72a18d42808a5b3d13f8644885bd6b1ffffbf1be00946f8e4361bec47eeff45f1389ca4ff455033baf724ffff", + "cborBytes": [ + 159, 160, 159, 128, 159, 27, 120, 110, 82, 152, 63, 14, 57, 96, 71, 231, 44, 191, 136, 107, 181, 102, 75, 222, + 126, 114, 18, 191, 243, 185, 122, 97, 141, 241, 27, 73, 237, 236, 63, 221, 215, 160, 108, 255, 191, 27, 226, 84, + 115, 195, 123, 246, 201, 109, 70, 54, 147, 132, 20, 195, 4, 70, 240, 48, 125, 174, 205, 53, 27, 57, 94, 145, 125, + 164, 149, 141, 152, 67, 255, 96, 178, 67, 108, 255, 168, 255, 191, 76, 23, 223, 120, 163, 93, 121, 210, 86, 135, + 1, 201, 14, 27, 160, 161, 246, 43, 13, 54, 172, 57, 76, 80, 197, 187, 105, 16, 91, 35, 52, 203, 190, 144, 0, 70, + 1, 68, 25, 129, 241, 96, 68, 126, 70, 20, 147, 76, 49, 15, 110, 80, 113, 100, 89, 70, 47, 131, 124, 216, 68, 134, + 144, 23, 103, 66, 36, 7, 76, 226, 198, 51, 54, 33, 234, 87, 13, 229, 191, 50, 91, 27, 250, 236, 200, 45, 114, 72, + 221, 14, 255, 255, 65, 38, 159, 216, 102, 159, 27, 127, 100, 31, 135, 81, 79, 46, 44, 159, 72, 205, 118, 28, 134, + 182, 195, 149, 190, 27, 173, 81, 24, 169, 167, 161, 185, 3, 27, 242, 45, 98, 145, 21, 201, 53, 103, 255, 255, 216, + 102, 159, 27, 133, 196, 171, 80, 166, 6, 51, 82, 159, 75, 231, 42, 24, 212, 40, 8, 165, 179, 209, 63, 134, 68, + 136, 91, 214, 177, 255, 255, 191, 27, 224, 9, 70, 248, 228, 54, 27, 236, 71, 238, 255, 69, 241, 56, 156, 164, 255, + 69, 80, 51, 186, 247, 36, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2028, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1606238571216374197" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14869620986111177896" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14834586868604615225" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6ec58374897eb23643da" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4081088882674582819" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b5a5c182b7d5393258df73" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b604f31cdc865781" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15472244637379239939" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01790a8b2d" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15090820345420558345" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15435738949868913180" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16812919609949044663" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1723274275147807328" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5afe877dae2bed" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3757377521242961829" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11908335018650596851" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd54509d901f9656bc6976c4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12101100057979855775" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18035432603645424684" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8117943496794820539" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5974113221720319385" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16010358696259521424" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6103065005018748973" + } + }, + { + "_tag": "ByteArray", + "bytearray": "39" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d207fe" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11256084833920000651" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7767492656407563193" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9183375746138055027" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7254228936391070209" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b164a817865e209b59fd8669f1bce5b818115d9b4a89f1bcddf0a28f4da3a394a6ec58374897eb23643da1b38a2f0b75c9d45234bb5a5c182b7d5393258df73ffff48b604f31cdc8657811bd6b87485b0eea0039f4501790a8b2dffffff1bd16d5d264a07b009d9050b9f1bd636c2caf899021c1be9537d4e7c363fb7bf1b17ea4cd2acc0fa60475afe877dae2bed1b3424e2f2b8b977a541371ba542e79b3d0375f34cfd54509d901f9656bc6976c41ba7efbe636b59239f4273a51bfa4aba65aec8b42c1b70a8ba998125cfbbffffd905009f1b52e85052ac9aa599d8669f1bde30386861228b909f1b54b271496142982d4139ffff43d207fe9f1b9c35a584e776a28b1b6bcbad6ac4a0cbb91b7f71e795e37f21731b64ac32c878f31201ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 22, 74, 129, 120, 101, 226, 9, 181, 159, 216, 102, 159, 27, 206, 91, 129, 129, 21, 217, + 180, 168, 159, 27, 205, 223, 10, 40, 244, 218, 58, 57, 74, 110, 197, 131, 116, 137, 126, 178, 54, 67, 218, 27, 56, + 162, 240, 183, 92, 157, 69, 35, 75, 181, 165, 193, 130, 183, 213, 57, 50, 88, 223, 115, 255, 255, 72, 182, 4, 243, + 28, 220, 134, 87, 129, 27, 214, 184, 116, 133, 176, 238, 160, 3, 159, 69, 1, 121, 10, 139, 45, 255, 255, 255, 27, + 209, 109, 93, 38, 74, 7, 176, 9, 217, 5, 11, 159, 27, 214, 54, 194, 202, 248, 153, 2, 28, 27, 233, 83, 125, 78, + 124, 54, 63, 183, 191, 27, 23, 234, 76, 210, 172, 192, 250, 96, 71, 90, 254, 135, 125, 174, 43, 237, 27, 52, 36, + 226, 242, 184, 185, 119, 165, 65, 55, 27, 165, 66, 231, 155, 61, 3, 117, 243, 76, 253, 84, 80, 157, 144, 31, 150, + 86, 188, 105, 118, 196, 27, 167, 239, 190, 99, 107, 89, 35, 159, 66, 115, 165, 27, 250, 74, 186, 101, 174, 200, + 180, 44, 27, 112, 168, 186, 153, 129, 37, 207, 187, 255, 255, 217, 5, 0, 159, 27, 82, 232, 80, 82, 172, 154, 165, + 153, 216, 102, 159, 27, 222, 48, 56, 104, 97, 34, 139, 144, 159, 27, 84, 178, 113, 73, 97, 66, 152, 45, 65, 57, + 255, 255, 67, 210, 7, 254, 159, 27, 156, 53, 165, 132, 231, 118, 162, 139, 27, 107, 203, 173, 106, 196, 160, 203, + 185, 27, 127, 113, 231, 149, 227, 127, 33, 115, 27, 100, 172, 50, 200, 120, 243, 18, 1, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2029, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0774ac84bcd0ce9596f3" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fcdfe6bd28924dd25aab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31617c7539" + } + ] + }, + "cborHex": "9fd905009f4a0774ac84bcd0ce9596f3a0ff4afcdfe6bd28924dd25aab1bffffffffffffffef4531617c7539ff", + "cborBytes": [ + 159, 217, 5, 0, 159, 74, 7, 116, 172, 132, 188, 208, 206, 149, 150, 243, 160, 255, 74, 252, 223, 230, 189, 40, + 146, 77, 210, 90, 171, 27, 255, 255, 255, 255, 255, 255, 255, 239, 69, 49, 97, 124, 117, 57, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2030, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2179468792805442347" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "491994561308828283" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3720575347173551647" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1197091057631274389" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5041033176325854798" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a8a93ca8c4e81dd88e74" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11427999785794980236" + } + }, + { + "_tag": "ByteArray", + "bytearray": "57d2f5b9b235" + }, + { + "_tag": "ByteArray", + "bytearray": "6594b1" + }, + { + "_tag": "ByteArray", + "bytearray": "50e1d099df4fe7c2" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "161c710714bdd0a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dedffc33b5b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80f6cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dee73cc794eedfe7b3066726" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3cda" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13835536838305775435" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1af1d053d18f48612f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11294251475582096155" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9f50c3db5d1053d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15268449227564538799" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd927a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c243" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e44643b7ef8a82c818" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11306125972466452728" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11716795817970886787" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15892699542178325565" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0e42ba1fa406a06c7589" + }, + { + "_tag": "ByteArray", + "bytearray": "76f3196d240c4d8e754f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12024964195265768031" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c413a0259d55270" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17365056681498555300" + } + } + ] + }, + "cborHex": "9f1b1e3f0751da37c32b9fd8669f1b06d3ea72623ca27b80ff1b33a22390d85aee1f1b109cebf975e8a595ffd8669f1b45f558f71fdc964e9f9f4aa8a93ca8c4e81dd88e741b9e986941cd8cc98c4657d2f5b9b235436594b14850e1d099df4fe7c2ffbf48161c710714bdd0a2462dedffc33b5b4380f6cf41194cdee73cc794eedfe7b3066726423cdaffa0ffffd8669f1bc001b3735c0bff4b9fbf491af1d053d18f48612f1b9cbd3de0a600931b48c9f50c3db5d1053d1bd3e46dad40125baf43cd927a42c24349e44643b7ef8a82c8181b9ce76dab66ae48f8ff41ad1ba29a6bb7dbefe883d8669f1bdc8e3607cd8d643d9f4a0e42ba1fa406a06c75894a76f3196d240c4d8e754f1ba6e141397f9b6a5f485c413a0259d55270ffffffff1bf0fd130c3d3eb3a4ff", + "cborBytes": [ + 159, 27, 30, 63, 7, 81, 218, 55, 195, 43, 159, 216, 102, 159, 27, 6, 211, 234, 114, 98, 60, 162, 123, 128, 255, + 27, 51, 162, 35, 144, 216, 90, 238, 31, 27, 16, 156, 235, 249, 117, 232, 165, 149, 255, 216, 102, 159, 27, 69, + 245, 88, 247, 31, 220, 150, 78, 159, 159, 74, 168, 169, 60, 168, 196, 232, 29, 216, 142, 116, 27, 158, 152, 105, + 65, 205, 140, 201, 140, 70, 87, 210, 245, 185, 178, 53, 67, 101, 148, 177, 72, 80, 225, 208, 153, 223, 79, 231, + 194, 255, 191, 72, 22, 28, 113, 7, 20, 189, 208, 162, 70, 45, 237, 255, 195, 59, 91, 67, 128, 246, 207, 65, 25, + 76, 222, 231, 60, 199, 148, 238, 223, 231, 179, 6, 103, 38, 66, 60, 218, 255, 160, 255, 255, 216, 102, 159, 27, + 192, 1, 179, 115, 92, 11, 255, 75, 159, 191, 73, 26, 241, 208, 83, 209, 143, 72, 97, 47, 27, 156, 189, 61, 224, + 166, 0, 147, 27, 72, 201, 245, 12, 61, 181, 209, 5, 61, 27, 211, 228, 109, 173, 64, 18, 91, 175, 67, 205, 146, + 122, 66, 194, 67, 73, 228, 70, 67, 183, 239, 138, 130, 200, 24, 27, 156, 231, 109, 171, 102, 174, 72, 248, 255, + 65, 173, 27, 162, 154, 107, 183, 219, 239, 232, 131, 216, 102, 159, 27, 220, 142, 54, 7, 205, 141, 100, 61, 159, + 74, 14, 66, 186, 31, 164, 6, 160, 108, 117, 137, 74, 118, 243, 25, 109, 36, 12, 77, 142, 117, 79, 27, 166, 225, + 65, 57, 127, 155, 106, 95, 72, 92, 65, 58, 2, 89, 213, 82, 112, 255, 255, 255, 255, 27, 240, 253, 19, 12, 61, 62, + 179, 164, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2031, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10262367024459889073" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11940105873894862281" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3849525949957136958" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3bcd" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17434851958664116793" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2242652311312703795" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12695838668493854120" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1774991557297001369" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87530b73aa" + }, + { + "_tag": "ByteArray", + "bytearray": "70" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1208632517356226080" + } + }, + { + "_tag": "ByteArray", + "bytearray": "20cb720a33a0ec1640b6f0" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17507907287169848122" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2263831621548708586" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8494945411917589462" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7198955649774737502" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3981014564881636108" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b8e6b406fb79d39b19fd8669f1ba5b3c707ea0eedc980ff1b356c4374b0d7e23e423bcdffff9f9f1bf1f5097b8bb2ba39ff1b1f1f80652280a133d8669f1bb030ae00e93e95a89f1b18a2096ac40153994587530b73aa41701b10c5ecdef50106204b20cb720a33a0ec1640b6f0ffffff80d8669f1bf2f894eab43b533a9fd8669f1b1f6abedd91b512ea80ff1b75e41bd80faeabd6ffff9fa041b6d8669f1b63e7d405929d585e80ff1b373f67a7896d1b0cffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 142, 107, 64, 111, 183, 157, 57, 177, 159, 216, 102, 159, 27, 165, 179, 199, 7, 234, 14, + 237, 201, 128, 255, 27, 53, 108, 67, 116, 176, 215, 226, 62, 66, 59, 205, 255, 255, 159, 159, 27, 241, 245, 9, + 123, 139, 178, 186, 57, 255, 27, 31, 31, 128, 101, 34, 128, 161, 51, 216, 102, 159, 27, 176, 48, 174, 0, 233, 62, + 149, 168, 159, 27, 24, 162, 9, 106, 196, 1, 83, 153, 69, 135, 83, 11, 115, 170, 65, 112, 27, 16, 197, 236, 222, + 245, 1, 6, 32, 75, 32, 203, 114, 10, 51, 160, 236, 22, 64, 182, 240, 255, 255, 255, 128, 216, 102, 159, 27, 242, + 248, 148, 234, 180, 59, 83, 58, 159, 216, 102, 159, 27, 31, 106, 190, 221, 145, 181, 18, 234, 128, 255, 27, 117, + 228, 27, 216, 15, 174, 171, 214, 255, 255, 159, 160, 65, 182, 216, 102, 159, 27, 99, 231, 212, 5, 146, 157, 88, + 94, 128, 255, 27, 55, 63, 103, 167, 137, 109, 27, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2032, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14617691263340952148" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2323a3bef8c039d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3766df3bc0e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bf0ce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8f7cd9b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5921658341027214493" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e256c1a0db1a5b2550fdacf9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11678914054500398791" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "91f4d25b9497c8f5304bb227" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13170475999892600166" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "508604884186335465" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0947324657b020e3e417d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5467430fb5e00a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7e96f3f31bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13312638782697075726" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13703398419827608544" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13094997959508466179" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18112589105720074015" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8452752304001445021" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17058540881286797038" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15115927824869339012" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ddfaf2f9a57f8aeaa9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9481222894995001082" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12448944996249737033" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15135858875545548610" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12997375536447014934" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1bcadc78c193c4ba5448d2323a3bef8c039d463766df3bc0e1438bf0ce44d8f7cd9b1b522df4e30a27f49d4ce256c1a0db1a5b2550fdacf91ba213d6747cd036c7ff4c91f4d25b9497c8f5304bb2279fbf1bb6c6ee244867f5661b070eed728cf488e94b0947324657b020e3e417d7475467430fb5e00a46d7e96f3f31bf1bb8bffe7081bf740eff1bbe2c404255794be0d8669f1bb5bac7438ef79a039f1bfb5cd7d3b90e1f1f1b754e356f965eec9dffff1becbc1c8d2f9416eed8669f1bd1c69044e3c7af849f49ddfaf2f9a57f8aeaa91b839411fd447a4efa1bacc3898449d797491bd20d5f743f55f7421bb45ff42ff646c816ffffffff", + "cborBytes": [ + 159, 191, 27, 202, 220, 120, 193, 147, 196, 186, 84, 72, 210, 50, 58, 59, 239, 140, 3, 157, 70, 55, 102, 223, 59, + 192, 225, 67, 139, 240, 206, 68, 216, 247, 205, 155, 27, 82, 45, 244, 227, 10, 39, 244, 157, 76, 226, 86, 193, + 160, 219, 26, 91, 37, 80, 253, 172, 249, 27, 162, 19, 214, 116, 124, 208, 54, 199, 255, 76, 145, 244, 210, 91, + 148, 151, 200, 245, 48, 75, 178, 39, 159, 191, 27, 182, 198, 238, 36, 72, 103, 245, 102, 27, 7, 14, 237, 114, 140, + 244, 136, 233, 75, 9, 71, 50, 70, 87, 176, 32, 227, 228, 23, 215, 71, 84, 103, 67, 15, 181, 224, 10, 70, 215, 233, + 111, 63, 49, 191, 27, 184, 191, 254, 112, 129, 191, 116, 14, 255, 27, 190, 44, 64, 66, 85, 121, 75, 224, 216, 102, + 159, 27, 181, 186, 199, 67, 142, 247, 154, 3, 159, 27, 251, 92, 215, 211, 185, 14, 31, 31, 27, 117, 78, 53, 111, + 150, 94, 236, 157, 255, 255, 27, 236, 188, 28, 141, 47, 148, 22, 238, 216, 102, 159, 27, 209, 198, 144, 68, 227, + 199, 175, 132, 159, 73, 221, 250, 242, 249, 165, 127, 138, 234, 169, 27, 131, 148, 17, 253, 68, 122, 78, 250, 27, + 172, 195, 137, 132, 73, 215, 151, 73, 27, 210, 13, 95, 116, 63, 85, 247, 66, 27, 180, 95, 244, 47, 246, 70, 200, + 22, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2033, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12143904028976453540" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e7eb0abfa5973" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "206cf7f5077fb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e18519f431" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6df04fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15320556775826521688" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1ba887d05f899397a40c470e7eb0abfa59730647206cf7f5077fb645e18519f43144b6df04fb1bd49d8d374057fe58ffff", + "cborBytes": [ + 159, 191, 27, 168, 135, 208, 95, 137, 147, 151, 164, 12, 71, 14, 126, 176, 171, 250, 89, 115, 6, 71, 32, 108, 247, + 245, 7, 127, 182, 69, 225, 133, 25, 244, 49, 68, 182, 223, 4, 251, 27, 212, 157, 141, 55, 64, 87, 254, 88, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2034, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "40dc735597c7e28c" + } + ] + }, + "cborHex": "9f4840dc735597c7e28cff", + "cborBytes": [159, 72, 64, 220, 115, 85, 151, 199, 226, 140, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2035, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "174479229491889873" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2735028758712679684" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "802266864131769955" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75d4032dbd769db030" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2466833273779789980" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17085590923155840458" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4521043138184331060" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62b02c211350ed865327" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10733217529227448431" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10386426766373463016" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16610727657876042945" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07cc332f1230ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4825a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f2b60d4b3e86013" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15986450091621267902" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed57703b21351e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16226178684589159690" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b026bdfef4e8c46d11b25f4c62a4d8bfd041b0b2239765ba406634975d4032dbd769db0301b223bf3caebc2209c1bed1c366bd8579dca1b3ebdf8c7d9b1bf344a62b02c211350ed8653271b94f40c79ce99106f1b9024001d474ca3e8ff1be68528cc247534c1bf4707cc332f1230ea43a4825a485f2b60d4b3e860131bdddb47a89298b9be47ed57703b21351e1be12ef78b2cf3b50affff", + "cborBytes": [ + 159, 191, 27, 2, 107, 223, 239, 78, 140, 70, 209, 27, 37, 244, 198, 42, 77, 139, 253, 4, 27, 11, 34, 57, 118, 91, + 164, 6, 99, 73, 117, 212, 3, 45, 189, 118, 157, 176, 48, 27, 34, 59, 243, 202, 235, 194, 32, 156, 27, 237, 28, 54, + 107, 216, 87, 157, 202, 27, 62, 189, 248, 199, 217, 177, 191, 52, 74, 98, 176, 44, 33, 19, 80, 237, 134, 83, 39, + 27, 148, 244, 12, 121, 206, 153, 16, 111, 27, 144, 36, 0, 29, 71, 76, 163, 232, 255, 27, 230, 133, 40, 204, 36, + 117, 52, 193, 191, 71, 7, 204, 51, 47, 18, 48, 234, 67, 164, 130, 90, 72, 95, 43, 96, 212, 179, 232, 96, 19, 27, + 221, 219, 71, 168, 146, 152, 185, 190, 71, 237, 87, 112, 59, 33, 53, 30, 27, 225, 46, 247, 139, 44, 243, 181, 10, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2036, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "edc6f29b762fdf3ba762" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10392797598727154377" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2078920101277466328" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3442104109306817200" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16031850772491132367" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d662c08d0dca3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16773499915923873630" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15164035550323555461" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6258640114171415244" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d2795581d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "649601461291457798" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14760339049721045683" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15849326802307853736" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9c979f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10517107787584490482" + } + } + ] + }, + "cborHex": "9fbf4aedc6f29b762fdf3ba7621b903aa25a46aa2ac9ffbf1b1cd9ced1490ffed81b2fc4cf734b252ab01bde7c93565267ddcf471d662c08d0dca31be8c7714dc0afdf5e1bd27179fd926e3c85ffd8669f1b56db28062e328acc9f9f45d2795581d01b0903d91659da1d061bccd742297ef322b3ffd8669f1bdbf41ec0dca32da880ffffff439c979f1b91f445cf8f77cbf2ff", + "cborBytes": [ + 159, 191, 74, 237, 198, 242, 155, 118, 47, 223, 59, 167, 98, 27, 144, 58, 162, 90, 70, 170, 42, 201, 255, 191, 27, + 28, 217, 206, 209, 73, 15, 254, 216, 27, 47, 196, 207, 115, 75, 37, 42, 176, 27, 222, 124, 147, 86, 82, 103, 221, + 207, 71, 29, 102, 44, 8, 208, 220, 163, 27, 232, 199, 113, 77, 192, 175, 223, 94, 27, 210, 113, 121, 253, 146, + 110, 60, 133, 255, 216, 102, 159, 27, 86, 219, 40, 6, 46, 50, 138, 204, 159, 159, 69, 210, 121, 85, 129, 208, 27, + 9, 3, 217, 22, 89, 218, 29, 6, 27, 204, 215, 66, 41, 126, 243, 34, 179, 255, 216, 102, 159, 27, 219, 244, 30, 192, + 220, 163, 45, 168, 128, 255, 255, 255, 67, 156, 151, 159, 27, 145, 244, 69, 207, 143, 119, 203, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2037, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6503994197176069515" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3c7a5f7ee5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12901198294219873585" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc75dbe39684" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e382d6f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e9c326737579e3a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64a1afedd05119c553" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21db03f613" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14313861832419216316" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c886" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fce00451ff69" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f83355c1c1ee676b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5686474715984442257" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17360197301009887485" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c9f01b4ba84d3262df4de0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13815844831315649913" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8669f1b5a42d4433fe1ad8b9f9f453c7a5f7ee51bb30a437ebfd9dd3146fc75dbe39684ffbf440e382d6f482e9c326737579e3a4964a1afedd05119c5534521db03f613ffbf41011bc6a50d7f9d5e8bbc42c88646fce00451ff6948f83355c1c1ee676b1b4eea6aa03e7e3391ffffff1bf0ebcf778d63b0fd4bc9f01b4ba84d3262df4de01bbfbbbdacb27c6579a0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 90, 66, 212, 67, 63, 225, 173, 139, 159, 159, 69, 60, 122, 95, 126, 229, 27, 179, 10, 67, + 126, 191, 217, 221, 49, 70, 252, 117, 219, 227, 150, 132, 255, 191, 68, 14, 56, 45, 111, 72, 46, 156, 50, 103, 55, + 87, 158, 58, 73, 100, 161, 175, 237, 208, 81, 25, 197, 83, 69, 33, 219, 3, 246, 19, 255, 191, 65, 1, 27, 198, 165, + 13, 127, 157, 94, 139, 188, 66, 200, 134, 70, 252, 224, 4, 81, 255, 105, 72, 248, 51, 85, 193, 193, 238, 103, 107, + 27, 78, 234, 106, 160, 62, 126, 51, 145, 255, 255, 255, 27, 240, 235, 207, 119, 141, 99, 176, 253, 75, 201, 240, + 27, 75, 168, 77, 50, 98, 223, 77, 224, 27, 191, 187, 189, 172, 178, 124, 101, 121, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2038, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "77b768f85a1c4472" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5466984685326225486" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4877b768f85a1c44721b4bdea19b215ed04effff", + "cborBytes": [159, 191, 72, 119, 183, 104, 248, 90, 28, 68, 114, 27, 75, 222, 161, 155, 33, 94, 208, 78, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2039, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "79eb93fd72745a9130" + }, + { + "_tag": "ByteArray", + "bytearray": "4215bd9e9f2bb9aaaa42" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f4979eb93fd72745a91304a4215bd9e9f2bb9aaaa42a0ff", + "cborBytes": [ + 159, 73, 121, 235, 147, 253, 114, 116, 90, 145, 48, 74, 66, 21, 189, 158, 159, 43, 185, 170, 170, 66, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2040, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0b91b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a8e73eb3e" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2212844438295933040" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12526756292976911706" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5ca1c47df62c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3360461929507397697" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10758697260537712889" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9516627520885130467" + } + }, + { + "_tag": "ByteArray", + "bytearray": "07eb577c06f6a959f03c0625" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9d46bb7b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7004602686677882765" + } + } + ] + }, + "cborHex": "9fbf43d0b91b451a8e73eb3effd8669f1b1eb59a4adfd3f0709f1badd7fa7a96c7255a9f465ca1c47df62c1b2ea2c252058320411b954e92280c5190f9ff9f1b8411da4f1a1084e34c07eb577c06f6a959f03c0625ff449d46bb7bffff1b61355908142e978dff", + "cborBytes": [ + 159, 191, 67, 208, 185, 27, 69, 26, 142, 115, 235, 62, 255, 216, 102, 159, 27, 30, 181, 154, 74, 223, 211, 240, + 112, 159, 27, 173, 215, 250, 122, 150, 199, 37, 90, 159, 70, 92, 161, 196, 125, 246, 44, 27, 46, 162, 194, 82, 5, + 131, 32, 65, 27, 149, 78, 146, 40, 12, 81, 144, 249, 255, 159, 27, 132, 17, 218, 79, 26, 16, 132, 227, 76, 7, 235, + 87, 124, 6, 246, 169, 89, 240, 60, 6, 37, 255, 68, 157, 70, 187, 123, 255, 255, 27, 97, 53, 89, 8, 20, 46, 151, + 141, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2041, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bf4000d9524c2497" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10991222774331414699" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + }, + "cborHex": "9f48bf4000d9524c24971b9888aae1173518ab1bfffffffffffffff18008ff", + "cborBytes": [ + 159, 72, 191, 64, 0, 217, 82, 76, 36, 151, 27, 152, 136, 170, 225, 23, 53, 24, 171, 27, 255, 255, 255, 255, 255, + 255, 255, 241, 128, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2042, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "87" + }, + { + "_tag": "ByteArray", + "bytearray": "05" + }, + { + "_tag": "ByteArray", + "bytearray": "105db499ee3f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "52a798a9f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85b786edeb27" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0545" + } + } + ] + } + ] + }, + "cborHex": "9f4187410546105db499ee3fbf4552a798a9f34685b786edeb2741b0420545ffff", + "cborBytes": [ + 159, 65, 135, 65, 5, 70, 16, 93, 180, 153, 238, 63, 191, 69, 82, 167, 152, 169, 243, 70, 133, 183, 134, 237, 235, + 39, 65, 176, 66, 5, 69, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2043, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04f844" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "4a06ff" + }, + { + "_tag": "ByteArray", + "bytearray": "6091992a09b06d06" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f4304f844a0434a06ff486091992a09b06d0680ff", + "cborBytes": [159, 67, 4, 248, 68, 160, 67, 74, 6, 255, 72, 96, 145, 153, 42, 9, 176, 109, 6, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2044, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5985896540932590303" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d68d2d407f2c5c5d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7345224384445766817" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2976483037483908506" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "852f5a63751d5a9a84ab3a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ed3f2" + } + } + ] + } + ] + }, + "cborHex": "9f0ebf1b53122d307886cadf48d68d2d407f2c5c5d1b65ef7aa9366d5ca11b294e978d71343d9a4b852f5a63751d5a9a84ab3a438ed3f2ffff", + "cborBytes": [ + 159, 14, 191, 27, 83, 18, 45, 48, 120, 134, 202, 223, 72, 214, 141, 45, 64, 127, 44, 92, 93, 27, 101, 239, 122, + 169, 54, 109, 92, 161, 27, 41, 78, 151, 141, 113, 52, 61, 154, 75, 133, 47, 90, 99, 117, 29, 90, 154, 132, 171, + 58, 67, 142, 211, 242, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2045, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2273119778557304033" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0203" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6829883181471380488" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8451044239995351501" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13588983384223618795" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14065033317572114435" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7910948226673814976" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8294384101022546626" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b752fbc2981da" + }, + { + "_tag": "ByteArray", + "bytearray": "39d9" + }, + { + "_tag": "ByteArray", + "bytearray": "20763b7ba9cc5640d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13628170835338462917" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16148898215422360383" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4240e2ca44" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17683893365398639280" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3af6188fc88f018ffeb7be" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11179599466014803252" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1f8bbe6524d29ce19fbf124202031bffffffffffffffff1b5ec89e9139043408ff9f1b754823f5f208b1cdff1bbc95c463f35596ebffff9f1bc331094857eb7803d8669f1b6dc9557f87662dc09f1b731b9264f418bac2475b752fbc2981da4239d94920763b7ba9cc5640d81bbd20fd2b6ab006c5ffffbf1be01c695dcc307b3f454240e2ca44ff9f1bf569cf52927912b04b3af6188fc88f018ffeb7beff1b9b25ea7b76f58534ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 31, 139, 190, 101, 36, 210, 156, 225, 159, 191, 18, 66, 2, 3, 27, 255, 255, 255, 255, 255, + 255, 255, 255, 27, 94, 200, 158, 145, 57, 4, 52, 8, 255, 159, 27, 117, 72, 35, 245, 242, 8, 177, 205, 255, 27, + 188, 149, 196, 99, 243, 85, 150, 235, 255, 255, 159, 27, 195, 49, 9, 72, 87, 235, 120, 3, 216, 102, 159, 27, 109, + 201, 85, 127, 135, 102, 45, 192, 159, 27, 115, 27, 146, 100, 244, 24, 186, 194, 71, 91, 117, 47, 188, 41, 129, + 218, 66, 57, 217, 73, 32, 118, 59, 123, 169, 204, 86, 64, 216, 27, 189, 32, 253, 43, 106, 176, 6, 197, 255, 255, + 191, 27, 224, 28, 105, 93, 204, 48, 123, 63, 69, 66, 64, 226, 202, 68, 255, 159, 27, 245, 105, 207, 82, 146, 121, + 18, 176, 75, 58, 246, 24, 143, 200, 143, 1, 143, 254, 183, 190, 255, 27, 155, 37, 234, 123, 118, 245, 133, 52, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2046, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11211371897025199997" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7958170497916583549" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11431242767024451104" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34765894a132da98b86d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "00f4fe36" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a352d10" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f0eb6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7445384627901476537" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + }, + "cborHex": "9fbf1b9b96cb5706fbff7d1b6e7119e7564fbe7d1b9ea3eebb35beee204a34765894a132da98b86d4400f4fe36444a352d10439f0eb61b675351df2a38aeb9ff14ff", + "cborBytes": [ + 159, 191, 27, 155, 150, 203, 87, 6, 251, 255, 125, 27, 110, 113, 25, 231, 86, 79, 190, 125, 27, 158, 163, 238, + 187, 53, 190, 238, 32, 74, 52, 118, 88, 148, 161, 50, 218, 152, 184, 109, 68, 0, 244, 254, 54, 68, 74, 53, 45, 16, + 67, 159, 14, 182, 27, 103, 83, 81, 223, 42, 56, 174, 185, 255, 20, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2047, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8380224420632371255" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8777801791599717921" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8456318654214914535" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10953223454808343980" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5823653198552061635" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fc3895" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff39f1b744c89b5d1d8a037d8669f1b79d104390116ae219f1b755ae10333fd41e71b9801aab3115405ac1b50d1c5baa2c356c3ffffffff9f43fc3895ff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 27, 116, 76, 137, 181, 209, 216, 160, 55, + 216, 102, 159, 27, 121, 209, 4, 57, 1, 22, 174, 33, 159, 27, 117, 90, 225, 3, 51, 253, 65, 231, 27, 152, 1, 170, + 179, 17, 84, 5, 172, 27, 80, 209, 197, 186, 162, 195, 86, 195, 255, 255, 255, 255, 159, 67, 252, 56, 149, 255, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2048, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10031130586224047083" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "455fb3259bcb069e7711" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4136505300194508508" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60ffd7a6c552e1ac0af409" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2575895213496395331" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b646dd2706979" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab342b2f96839c57" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1553cb4bbc7971d539d252" + } + } + ] + } + ] + }, + "cborHex": "9f1bfffffffffffffff11b8b35bc1ef770b3ebbf4a455fb3259bcb069e77111b3967d1a7859d3edc4b60ffd7a6c552e1ac0af4091b23bf6b0c8b14e643428d50478b646dd270697948ab342b2f96839c574b1553cb4bbc7971d539d252ffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 27, 139, 53, 188, 30, 247, 112, 179, 235, 191, 74, 69, 95, 179, + 37, 155, 203, 6, 158, 119, 17, 27, 57, 103, 209, 167, 133, 157, 62, 220, 75, 96, 255, 215, 166, 197, 82, 225, 172, + 10, 244, 9, 27, 35, 191, 107, 12, 139, 20, 230, 67, 66, 141, 80, 71, 139, 100, 109, 210, 112, 105, 121, 72, 171, + 52, 43, 47, 150, 131, 156, 87, 75, 21, 83, 203, 75, 188, 121, 113, 213, 57, 210, 82, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2049, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3152052439193440521" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10898fd74c7eaf1439" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4486312368528765869" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1898191585790817340" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5089012687130873657" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4813872727151460128" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13879769900564478590" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cdc1eff31c3d320219a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17157303887405311820" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "132e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "37102965545574298" + } + } + ] + }, + "cborHex": "9fbf1b2bbe56fe3f8751094910898fd74c7eaf14391b3e429554659933ad1b1a57bb30b2b2743c1b469fce1381e44f391b42ce4fbd87cdbf201bc09ed92fb74dfa7e4acdc1eff31c3d320219a71bee1afcfb7838e74c42132eff1b0083d0f359751f9aff", + "cborBytes": [ + 159, 191, 27, 43, 190, 86, 254, 63, 135, 81, 9, 73, 16, 137, 143, 215, 76, 126, 175, 20, 57, 27, 62, 66, 149, 84, + 101, 153, 51, 173, 27, 26, 87, 187, 48, 178, 178, 116, 60, 27, 70, 159, 206, 19, 129, 228, 79, 57, 27, 66, 206, + 79, 189, 135, 205, 191, 32, 27, 192, 158, 217, 47, 183, 77, 250, 126, 74, 205, 193, 239, 243, 28, 61, 50, 2, 25, + 167, 27, 238, 26, 252, 251, 120, 56, 231, 76, 66, 19, 46, 255, 27, 0, 131, 208, 243, 89, 117, 31, 154, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2050, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11320587439497861518" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18382422595387421598" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7200a6de31" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9581610103827238040" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0b028f5dcbb4eec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "469cf9fa391ff87e65bc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdfbf85dffca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a56b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddcd77fa9f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e95319" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e32e0bda" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16597982284889627391" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5164eb859" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5374127518581305127" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5104828780644765947" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9539863471557220450" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5fb6fd86" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6680698344010941067" + } + }, + { + "_tag": "ByteArray", + "bytearray": "104bbd8ed3fd1e7730f2" + }, + { + "_tag": "ByteArray", + "bytearray": "3c08077c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15628963708129760585" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15943678174672149466" + } + }, + { + "_tag": "ByteArray", + "bytearray": "19" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10063371999521601777" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6367078307508530483" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12810691675403496537" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5339657330932107771" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8071701177342954735" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2382583932037885621" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4981643367211412844" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6479747687174181859" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16641373370649782773" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18261081789430790223" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f545ed89" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6345044221900230327" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14217277132592314196" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13353234060350264527" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16115657544587852076" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4435130825956106212" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13414627248495406068" + } + }, + { + "_tag": "ByteArray", + "bytearray": "911dc2ce" + }, + { + "_tag": "ByteArray", + "bytearray": "cf5d8a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6396242702536780080" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b9d1ace4c1404d98e9f1bff1b7bf4cd2e739ebf457200a6de311b84f8b79fb6ea8c9848a0b028f5dcbb4eec4a469cf9fa391ff87e65bc46bdfbf85dffca42a56b45ddcd77fa9f43e9531944e32e0bda1be657e0f2bf129aff45e5164eb8591b4a94bc813ab0af27ff1b46d7febabd8590fbffff1b8464674873e498629f445fb6fd869f1b5cb69bbf7e50028b4a104bbd8ed3fd1e7730f2443c08077cffd8669f1bd8e53bafce8bd5499f1bdd4352d39e7b5bda41191b8ba84783fa18f8f11b585c67fc88242d33ffff1bb1c8b8346f7aac59d8669f1b4a1a460d4084c9fb9f1b7004717480a10cef1b2110a37674abeeb5ffffffd8669f1b45225a3fa4512d6c9fd8669f1b59ecb030b82d13e39f1be6f208e92c39a9f5ffff1bfd6c6522d960784f44f545ed899f1b580e201a32820eb71bc54dea39c972f7541bb95037a121d314cfffd8669f1bdfa651270300b92c9f1b3d8cbffce57f9fe41bba2a5468a4d82bf444911dc2ce43cf5d8a1b58c404d965e3a930ffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 157, 26, 206, 76, 20, 4, 217, 142, 159, 27, 255, 27, 123, 244, 205, 46, 115, 158, 191, 69, + 114, 0, 166, 222, 49, 27, 132, 248, 183, 159, 182, 234, 140, 152, 72, 160, 176, 40, 245, 220, 187, 78, 236, 74, + 70, 156, 249, 250, 57, 31, 248, 126, 101, 188, 70, 189, 251, 248, 93, 255, 202, 66, 165, 107, 69, 221, 205, 119, + 250, 159, 67, 233, 83, 25, 68, 227, 46, 11, 218, 27, 230, 87, 224, 242, 191, 18, 154, 255, 69, 229, 22, 78, 184, + 89, 27, 74, 148, 188, 129, 58, 176, 175, 39, 255, 27, 70, 215, 254, 186, 189, 133, 144, 251, 255, 255, 27, 132, + 100, 103, 72, 115, 228, 152, 98, 159, 68, 95, 182, 253, 134, 159, 27, 92, 182, 155, 191, 126, 80, 2, 139, 74, 16, + 75, 189, 142, 211, 253, 30, 119, 48, 242, 68, 60, 8, 7, 124, 255, 216, 102, 159, 27, 216, 229, 59, 175, 206, 139, + 213, 73, 159, 27, 221, 67, 82, 211, 158, 123, 91, 218, 65, 25, 27, 139, 168, 71, 131, 250, 24, 248, 241, 27, 88, + 92, 103, 252, 136, 36, 45, 51, 255, 255, 27, 177, 200, 184, 52, 111, 122, 172, 89, 216, 102, 159, 27, 74, 26, 70, + 13, 64, 132, 201, 251, 159, 27, 112, 4, 113, 116, 128, 161, 12, 239, 27, 33, 16, 163, 118, 116, 171, 238, 181, + 255, 255, 255, 216, 102, 159, 27, 69, 34, 90, 63, 164, 81, 45, 108, 159, 216, 102, 159, 27, 89, 236, 176, 48, 184, + 45, 19, 227, 159, 27, 230, 242, 8, 233, 44, 57, 169, 245, 255, 255, 27, 253, 108, 101, 34, 217, 96, 120, 79, 68, + 245, 69, 237, 137, 159, 27, 88, 14, 32, 26, 50, 130, 14, 183, 27, 197, 77, 234, 57, 201, 114, 247, 84, 27, 185, + 80, 55, 161, 33, 211, 20, 207, 255, 216, 102, 159, 27, 223, 166, 81, 39, 3, 0, 185, 44, 159, 27, 61, 140, 191, + 252, 229, 127, 159, 228, 27, 186, 42, 84, 104, 164, 216, 43, 244, 68, 145, 29, 194, 206, 67, 207, 93, 138, 27, 88, + 196, 4, 217, 101, 227, 169, 48, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2051, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12442830630181981273" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb83a91a43f1396b83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16357906168659335371" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d015e560a2fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1f62cd1daf965" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8d6613a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11c0f456a2bb62" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "030304" + } + ] + }, + "cborHex": "9fbf41111bacadd0888058cc5949bb83a91a43f1396b831be302f4fe141c58cb46d015e560a2fe47c1f62cd1daf96544e8d6613a4711c0f456a2bb62ff43030304ff", + "cborBytes": [ + 159, 191, 65, 17, 27, 172, 173, 208, 136, 128, 88, 204, 89, 73, 187, 131, 169, 26, 67, 241, 57, 107, 131, 27, 227, + 2, 244, 254, 20, 28, 88, 203, 70, 208, 21, 229, 96, 162, 254, 71, 193, 246, 44, 209, 218, 249, 101, 68, 232, 214, + 97, 58, 71, 17, 192, 244, 86, 162, 187, 98, 255, 67, 3, 3, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2052, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3105839479193749184" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18299877490073280625" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "65de1b19c6e920" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15614390797657548727" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18134128748365712946" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c3d08c2eee1e2bbd5e275299" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12785789621076297732" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1191944263770522088" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3b568c836046357e9d1958" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "807190932626475574" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14418985850238764464" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17426911370353728858" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6480226118949297581" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18362540820509807182" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4492710992952888598" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b2b1a288d06ba46c09fd8669f1bfdf6399eccfc20719f4765de1b19c6e9201bd8b175b3ae81a7b71bfba95e0495898e324cc3d08c2eee1e2bbd5e275299ffff1bb1703feb19210804ffffd8669f1b108aa2fe221b41e89f4b3b568c836046357e9d1958d8669f1b0b33b7e0651e0a369f1bc81a873c58dd85b01bf1d8d38f42265d5a1b59ee63524c2e5dad1bfed4d9965c18d24effffa01b3e5950d83d730d16ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 43, 26, 40, 141, 6, 186, 70, 192, 159, 216, 102, 159, 27, 253, 246, 57, 158, 204, 252, 32, + 113, 159, 71, 101, 222, 27, 25, 198, 233, 32, 27, 216, 177, 117, 179, 174, 129, 167, 183, 27, 251, 169, 94, 4, + 149, 137, 142, 50, 76, 195, 208, 140, 46, 238, 30, 43, 189, 94, 39, 82, 153, 255, 255, 27, 177, 112, 63, 235, 25, + 33, 8, 4, 255, 255, 216, 102, 159, 27, 16, 138, 162, 254, 34, 27, 65, 232, 159, 75, 59, 86, 140, 131, 96, 70, 53, + 126, 157, 25, 88, 216, 102, 159, 27, 11, 51, 183, 224, 101, 30, 10, 54, 159, 27, 200, 26, 135, 60, 88, 221, 133, + 176, 27, 241, 216, 211, 143, 66, 38, 93, 90, 27, 89, 238, 99, 82, 76, 46, 93, 173, 27, 254, 212, 217, 150, 92, 24, + 210, 78, 255, 255, 160, 27, 62, 89, 80, 216, 61, 115, 13, 22, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2053, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10012168126962067571" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1864558f577814741e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2187545705699135618" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e13b7dbea5edcb2eef3e48cd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e04558952461ae6399" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3412765950408424262" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3b3efa6c531e24e07" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8617024977962374401" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12475932030782346651" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9978656642938428169" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7e7bf76734553bc7b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10843716432808516409" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13384246737555541963" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16650903056100056804" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "952d" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "272505ed9b72d01f" + } + ] + }, + "cborHex": "9fd8669f1b8af25ddd5f0fe8739fbf491864558f577814741e1b1e5bb93aae20d0824ce13b7dbea5edcb2eef3e48cd49e04558952461ae6399ffbf1b2f5c948cdfa47b4649d3b3efa6c531e24e071b7795d290001d95011bad236a14e8b3159b1b8a7b4f58f9efdb0949a7e7bf76734553bc7b1b967c9ea4a69e1b391bb9be657eba2dcfcb1be713e41bf84f5ee442952dffffff48272505ed9b72d01fff", + "cborBytes": [ + 159, 216, 102, 159, 27, 138, 242, 93, 221, 95, 15, 232, 115, 159, 191, 73, 24, 100, 85, 143, 87, 120, 20, 116, 30, + 27, 30, 91, 185, 58, 174, 32, 208, 130, 76, 225, 59, 125, 190, 165, 237, 203, 46, 239, 62, 72, 205, 73, 224, 69, + 88, 149, 36, 97, 174, 99, 153, 255, 191, 27, 47, 92, 148, 140, 223, 164, 123, 70, 73, 211, 179, 239, 166, 197, 49, + 226, 78, 7, 27, 119, 149, 210, 144, 0, 29, 149, 1, 27, 173, 35, 106, 20, 232, 179, 21, 155, 27, 138, 123, 79, 88, + 249, 239, 219, 9, 73, 167, 231, 191, 118, 115, 69, 83, 188, 123, 27, 150, 124, 158, 164, 166, 158, 27, 57, 27, + 185, 190, 101, 126, 186, 45, 207, 203, 27, 231, 19, 228, 27, 248, 79, 94, 228, 66, 149, 45, 255, 255, 255, 72, 39, + 37, 5, 237, 155, 114, 208, 31, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2054, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4c7649bda91bb7" + } + ] + }, + "cborHex": "9f474c7649bda91bb7ff", + "cborBytes": [159, 71, 76, 118, 73, 189, 169, 27, 183, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2055, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4be30241889277fb" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ff7480510220872" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c376cdd02444fdd9a30c16e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14164285855383052046" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "621161d05500b9ad67" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87a3c012" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd316c4482ce8d4f5eddea0b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9334996459725023923" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2208" + } + ] + } + ] + }, + "cborHex": "9f9f484be30241889277fbbf480ff748051022087241144c2c376cdd02444fdd9a30c16e1bc491a6f09b325f0e49621161d05500b9ad674487a3c0124cdd316c4482ce8d4f5eddea0b1b818c91d239706ab3ff422208ffff", + "cborBytes": [ + 159, 159, 72, 75, 227, 2, 65, 136, 146, 119, 251, 191, 72, 15, 247, 72, 5, 16, 34, 8, 114, 65, 20, 76, 44, 55, + 108, 221, 2, 68, 79, 221, 154, 48, 193, 110, 27, 196, 145, 166, 240, 155, 50, 95, 14, 73, 98, 17, 97, 208, 85, 0, + 185, 173, 103, 68, 135, 163, 192, 18, 76, 221, 49, 108, 68, 130, 206, 141, 79, 94, 221, 234, 11, 27, 129, 140, + 145, 210, 57, 112, 106, 179, 255, 66, 34, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2056, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4160314313805630884" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6996064723346726015" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b2d52" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8633367327924271442" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1012078100433378741" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7902812778" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15186093716174867534" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4761982634802115498" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2192481cca32054769" + }, + { + "_tag": "ByteArray", + "bytearray": "5c9b05885e6f77a5790d" + }, + { + "_tag": "ByteArray", + "bytearray": "a64cc883e5bc2ffaaa8a1d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2234017588021591896" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16080985818780015325" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bd790a83d4ebc5884a" + }, + { + "_tag": "ByteArray", + "bytearray": "2c" + }, + { + "_tag": "ByteArray", + "bytearray": "7a6732454aec19d0fff7" + }, + { + "_tag": "ByteArray", + "bytearray": "ed5cef64e9da85a5" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14323630999405671172" + } + }, + { + "_tag": "ByteArray", + "bytearray": "201c241e6c41dd5abeef" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b463c1d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c5b0d21ad7859d75155cf6" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b39bc67d37c5b8da49fbf1b611703cc94b91c7f439b2d521b77cfe1d7dc63b9521b0e0b9fab8d489db54579028127781bd2bfd7c686650c4e41fd1b4215f5f9edf573aaffffff9f9f492192481cca320547694a5c9b05885e6f77a5790d4ba64cc883e5bc2ffaaa8a1d1b1f00d328f4007f584106ffd8669f1bdf2b2366c67a1add9f49bd790a83d4ebc5884a412c4a7a6732454aec19d0fff748ed5cef64e9da85a5ffffffd8669f1bfffffffffffffffa9fd8669f1bfffffffffffffff19f1bc6c7c2810d5933044a201c241e6c41dd5abeef07448b463c1dffff4bc5b0d21ad7859d75155cf6ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 57, 188, 103, 211, 124, 91, 141, 164, 159, 191, 27, 97, 23, 3, 204, 148, 185, 28, 127, 67, + 155, 45, 82, 27, 119, 207, 225, 215, 220, 99, 185, 82, 27, 14, 11, 159, 171, 141, 72, 157, 181, 69, 121, 2, 129, + 39, 120, 27, 210, 191, 215, 198, 134, 101, 12, 78, 65, 253, 27, 66, 21, 245, 249, 237, 245, 115, 170, 255, 255, + 255, 159, 159, 73, 33, 146, 72, 28, 202, 50, 5, 71, 105, 74, 92, 155, 5, 136, 94, 111, 119, 165, 121, 13, 75, 166, + 76, 200, 131, 229, 188, 47, 250, 170, 138, 29, 27, 31, 0, 211, 40, 244, 0, 127, 88, 65, 6, 255, 216, 102, 159, 27, + 223, 43, 35, 102, 198, 122, 26, 221, 159, 73, 189, 121, 10, 131, 212, 235, 197, 136, 74, 65, 44, 74, 122, 103, 50, + 69, 74, 236, 25, 208, 255, 247, 72, 237, 92, 239, 100, 233, 218, 133, 165, 255, 255, 255, 216, 102, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 250, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 27, 198, + 199, 194, 129, 13, 89, 51, 4, 74, 32, 28, 36, 30, 108, 65, 221, 90, 190, 239, 7, 68, 139, 70, 60, 29, 255, 255, + 75, 197, 176, 210, 26, 215, 133, 157, 117, 21, 92, 246, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2057, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7534239902169265644" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10051409806254333728" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c75327e64d25600a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1811163509338579392" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dededdf260" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8897414869971727770" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07b50a6c09e4e0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10826648783439606654" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab9a20" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16474609059300000270" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "603644fd3399" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8959159530962774644" + } + } + ] + }, + "cborHex": "9f9f1b688eff45dd5f75ecffd8669f1b8b7dc7f6d1aadf209f9f48c75327e64d25600affbf1b19228b9da446a1c045dededdf2601b7b79f7af07f1759a4707b50a6c09e4e041ab1b963ffbb4dcd5337effbf43ab9a201be4a191a73902420effffff46603644fd33991b7c55542031176a74ff", + "cborBytes": [ + 159, 159, 27, 104, 142, 255, 69, 221, 95, 117, 236, 255, 216, 102, 159, 27, 139, 125, 199, 246, 209, 170, 223, 32, + 159, 159, 72, 199, 83, 39, 230, 77, 37, 96, 10, 255, 191, 27, 25, 34, 139, 157, 164, 70, 161, 192, 69, 222, 222, + 221, 242, 96, 27, 123, 121, 247, 175, 7, 241, 117, 154, 71, 7, 181, 10, 108, 9, 228, 224, 65, 171, 27, 150, 63, + 251, 180, 220, 213, 51, 126, 255, 191, 67, 171, 154, 32, 27, 228, 161, 145, 167, 57, 2, 66, 14, 255, 255, 255, 70, + 96, 54, 68, 253, 51, 153, 27, 124, 85, 84, 32, 49, 23, 106, 116, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2058, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18399537847494889875" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7341399812261604509" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11295486237742444550" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6091426401293777098" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f8640574b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6108652cdb961799a4" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bff584a2ff749d1939f1b65e1e43b9bf8ec9d1bfffffffffffffff9bf1b9cc1a0e31df3b0061b54891809c88d38ca455f8640574b496108652cdb961799a4ffffff", + "cborBytes": [ + 159, 27, 255, 88, 74, 47, 247, 73, 209, 147, 159, 27, 101, 225, 228, 59, 155, 248, 236, 157, 27, 255, 255, 255, + 255, 255, 255, 255, 249, 191, 27, 156, 193, 160, 227, 29, 243, 176, 6, 27, 84, 137, 24, 9, 200, 141, 56, 202, 69, + 95, 134, 64, 87, 75, 73, 97, 8, 101, 44, 219, 150, 23, 153, 164, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2059, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11021826098113305837" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1337895165929167254" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3613104779004203896" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17463818053739797587" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9494006975780237019" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2a00f8d652f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9545835564132336562" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17230429848134926916" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16698421046336139141" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13820692850262315866" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8379868292200424017" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "878cd77d1d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11509751358943422365" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3139700221859711293" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1683928540750683246" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3e73c73d15e8e03480" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8df449ab641fb593" + } + ] + }, + "cborHex": "9f1b98f56470aa2c5cedbf1b129128909feb9996417c1b322453a748cfd3781bf25bf1fe1b36dc531b83c17d0b06762edb46e2a00f8d652f1b84799ede9c6603b21bef1ec8a7f95ec2441be7bcb57838c5af851bbfccf6ec11aa935aff1b744b45d0352a62519fbf45878cd77d1d1b9fbad9e132e4679dff1b2b9274b78929c93d1b175e841602961c6e493e73c73d15e8e03480ff488df449ab641fb593ff", + "cborBytes": [ + 159, 27, 152, 245, 100, 112, 170, 44, 92, 237, 191, 27, 18, 145, 40, 144, 159, 235, 153, 150, 65, 124, 27, 50, 36, + 83, 167, 72, 207, 211, 120, 27, 242, 91, 241, 254, 27, 54, 220, 83, 27, 131, 193, 125, 11, 6, 118, 46, 219, 70, + 226, 160, 15, 141, 101, 47, 27, 132, 121, 158, 222, 156, 102, 3, 178, 27, 239, 30, 200, 167, 249, 94, 194, 68, 27, + 231, 188, 181, 120, 56, 197, 175, 133, 27, 191, 204, 246, 236, 17, 170, 147, 90, 255, 27, 116, 75, 69, 208, 53, + 42, 98, 81, 159, 191, 69, 135, 140, 215, 125, 29, 27, 159, 186, 217, 225, 50, 228, 103, 157, 255, 27, 43, 146, + 116, 183, 137, 41, 201, 61, 27, 23, 94, 132, 22, 2, 150, 28, 110, 73, 62, 115, 199, 61, 21, 232, 224, 52, 128, + 255, 72, 141, 244, 73, 171, 100, 31, 181, 147, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2060, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5014990865311523543" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "345615f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9338952963543886347" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10851398915700995103" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3788481569142778672" + } + }, + { + "_tag": "ByteArray", + "bytearray": "67b410bf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11930790405144392196" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12478726910261254005" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11061647368555457451" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16172143136630050507" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15458301885168920590" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d529cb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17273521004589024323" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c65917b7808e7c8" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "234e786fb0d1f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70e4889909ef0bd1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "321306ca2ece5ad6b449c148" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4082887339456478469" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0a209426e768409" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78f8e1809d3b7ba04374" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbd79799aadc69f2da2b12a2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6765423734279790642" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f1b4598d39f16b8e2d7ffbf44345615f11b819aa03d8e1d6a0bffff80d8669f1b9697e9d2166ab41f9f9f1b349363ea36deab304467b410bf1ba592aea9544532041bad2d58027f3ad775ffbf1b9982ddacb161ebab1be06efe7fc39b0ecb1bd686eba9b83ea80e43d529cb1befb7dfd5aac70443485c65917b7808e7c8ffa0bf47234e786fb0d1f24870e4889909ef0bd14c321306ca2ece5ad6b449c1481b38a95467363e3d05414548b0a209426e7684094a78f8e1809d3b7ba04374413e4ccbd79799aadc69f2da2b12a21b5de39d0aa4be6032ffffffff", + "cborBytes": [ + 159, 159, 159, 27, 69, 152, 211, 159, 22, 184, 226, 215, 255, 191, 68, 52, 86, 21, 241, 27, 129, 154, 160, 61, + 142, 29, 106, 11, 255, 255, 128, 216, 102, 159, 27, 150, 151, 233, 210, 22, 106, 180, 31, 159, 159, 27, 52, 147, + 99, 234, 54, 222, 171, 48, 68, 103, 180, 16, 191, 27, 165, 146, 174, 169, 84, 69, 50, 4, 27, 173, 45, 88, 2, 127, + 58, 215, 117, 255, 191, 27, 153, 130, 221, 172, 177, 97, 235, 171, 27, 224, 110, 254, 127, 195, 155, 14, 203, 27, + 214, 134, 235, 169, 184, 62, 168, 14, 67, 213, 41, 203, 27, 239, 183, 223, 213, 170, 199, 4, 67, 72, 92, 101, 145, + 123, 120, 8, 231, 200, 255, 160, 191, 71, 35, 78, 120, 111, 176, 209, 242, 72, 112, 228, 136, 153, 9, 239, 11, + 209, 76, 50, 19, 6, 202, 46, 206, 90, 214, 180, 73, 193, 72, 27, 56, 169, 84, 103, 54, 62, 61, 5, 65, 69, 72, 176, + 162, 9, 66, 110, 118, 132, 9, 74, 120, 248, 225, 128, 157, 59, 123, 160, 67, 116, 65, 62, 76, 203, 215, 151, 153, + 170, 220, 105, 242, 218, 43, 18, 162, 27, 93, 227, 157, 10, 164, 190, 96, 50, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2061, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fb17054b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9477104596013027530" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d60602dda6254f06fad4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9aabdb3e81943ed9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be040707383e0a15ef14" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4548000857916389293" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0b3e" + }, + { + "_tag": "ByteArray", + "bytearray": "587892f83ef290132c" + }, + { + "_tag": "ByteArray", + "bytearray": "40efd3b480f189" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "df875974" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1040381946972795216" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14138336348084351862" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13211344846884175920" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3012248367246747777" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ef4f5b" + }, + { + "_tag": "ByteArray", + "bytearray": "a941dd221e25dfbd8e7e8b07" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15118391961017899874" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a6b56d6ce06dec4b4073" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "80cd42efdbe66dd42f96" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15655161439121854961" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4063677096872826788" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15037637036961755124" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7665845293973947831" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d09dae26350a173da" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14936303713228408003" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd90d94c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d6367d54cd0617ac79d0" + }, + { + "_tag": "ByteArray", + "bytearray": "e639605a46" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12064189724878500519" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14882881803860590481" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "98b6906bdf5032" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8476218445438736403" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "efc7fc" + } + ] + } + ] + } + ] + }, + "cborHex": "9f44fb17054bbf1b8385706b109410ca4ad60602dda6254f06fad4489aabdb3e81943ed94abe040707383e0a15ef14ff9fd8669f1b3f1dbeaf164737ad9f420b3e49587892f83ef290132c4740efd3b480f189ffff9f44df8759741b0e702dde5c0af1501bc43576001e8fb3761bb75820243bb80030ffd8669f1b29cda7ee30fe28819f43ef4f5b4ca941dd221e25dfbd8e7e8b071bd1cf51634b97db62ffff9f4aa6b56d6ce06dec4b4073ff4a80cd42efdbe66dd42f96ff0ad8669f1bd9424e62604051f19fbf1b386514ca10fed7a41bd0b06b36595ceff41b6a628dadf26ac5b7497d09dae26350a173da1bcf4869175c53c4c344fd90d94cff9f4ad6367d54cd0617ac79d045e639605a46ffd8669f1ba76c9ca2ce4cf2a79f1bce8a9e25d13c3f91ffff4798b6906bdf5032d8669f1b75a193c466fd58139f43efc7fcffffffffff", + "cborBytes": [ + 159, 68, 251, 23, 5, 75, 191, 27, 131, 133, 112, 107, 16, 148, 16, 202, 74, 214, 6, 2, 221, 166, 37, 79, 6, 250, + 212, 72, 154, 171, 219, 62, 129, 148, 62, 217, 74, 190, 4, 7, 7, 56, 62, 10, 21, 239, 20, 255, 159, 216, 102, 159, + 27, 63, 29, 190, 175, 22, 71, 55, 173, 159, 66, 11, 62, 73, 88, 120, 146, 248, 62, 242, 144, 19, 44, 71, 64, 239, + 211, 180, 128, 241, 137, 255, 255, 159, 68, 223, 135, 89, 116, 27, 14, 112, 45, 222, 92, 10, 241, 80, 27, 196, 53, + 118, 0, 30, 143, 179, 118, 27, 183, 88, 32, 36, 59, 184, 0, 48, 255, 216, 102, 159, 27, 41, 205, 167, 238, 48, + 254, 40, 129, 159, 67, 239, 79, 91, 76, 169, 65, 221, 34, 30, 37, 223, 189, 142, 126, 139, 7, 27, 209, 207, 81, + 99, 75, 151, 219, 98, 255, 255, 159, 74, 166, 181, 109, 108, 224, 109, 236, 75, 64, 115, 255, 74, 128, 205, 66, + 239, 219, 230, 109, 212, 47, 150, 255, 10, 216, 102, 159, 27, 217, 66, 78, 98, 96, 64, 81, 241, 159, 191, 27, 56, + 101, 20, 202, 16, 254, 215, 164, 27, 208, 176, 107, 54, 89, 92, 239, 244, 27, 106, 98, 141, 173, 242, 106, 197, + 183, 73, 125, 9, 218, 226, 99, 80, 161, 115, 218, 27, 207, 72, 105, 23, 92, 83, 196, 195, 68, 253, 144, 217, 76, + 255, 159, 74, 214, 54, 125, 84, 205, 6, 23, 172, 121, 208, 69, 230, 57, 96, 90, 70, 255, 216, 102, 159, 27, 167, + 108, 156, 162, 206, 76, 242, 167, 159, 27, 206, 138, 158, 37, 209, 60, 63, 145, 255, 255, 71, 152, 182, 144, 107, + 223, 80, 50, 216, 102, 159, 27, 117, 161, 147, 196, 102, 253, 88, 19, 159, 67, 239, 199, 252, 255, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2062, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4776599120490025494" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9ea2eec2" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5849012170314806455" + } + } + ] + }, + "cborHex": "9f1b4249e397b34052169f449ea2eec2ff1b512bdd945a8cf4b7ff", + "cborBytes": [ + 159, 27, 66, 73, 227, 151, 179, 64, 82, 22, 159, 68, 158, 162, 238, 194, 255, 27, 81, 43, 221, 148, 90, 140, 244, + 183, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2063, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2326698610883362536" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16278627344406543930" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9572319572383741453" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "105991891830612820" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13794781587933653299" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9270197012080829298" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16459174071749291814" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13075611338476346062" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b204a180f2918fee81be1e94d52664ffe3a1b84d7b5ef4c73b60d1b01788f1065a2a3541bbf70e8c42ee269331b80a65b111ef723721be46abb9d22efaf261bb575e73c1af3daceffffff", + "cborBytes": [ + 159, 159, 191, 27, 32, 74, 24, 15, 41, 24, 254, 232, 27, 225, 233, 77, 82, 102, 79, 254, 58, 27, 132, 215, 181, + 239, 76, 115, 182, 13, 27, 1, 120, 143, 16, 101, 162, 163, 84, 27, 191, 112, 232, 196, 46, 226, 105, 51, 27, 128, + 166, 91, 17, 30, 247, 35, 114, 27, 228, 106, 187, 157, 34, 239, 175, 38, 27, 181, 117, 231, 60, 26, 243, 218, 206, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2064, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "87208408433105627" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11368597209253416971" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b0135d395de151adb9f1b9dc55eedac0c100bffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 1, 53, 211, 149, 222, 21, 26, 219, 159, 27, 157, 197, 94, 237, 172, 12, 16, 11, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2065, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10828123003306161279" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2148479158370581662" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5053471631912714802" + } + } + ] + } + ] + }, + "cborHex": "9fd905039f9f1b964538806c4cb47f1b1dd0ee6952023c9eff1b462189acbeabc232ffff", + "cborBytes": [ + 159, 217, 5, 3, 159, 159, 27, 150, 69, 56, 128, 108, 76, 180, 127, 27, 29, 208, 238, 105, 82, 2, 60, 158, 255, 27, + 70, 33, 137, 172, 190, 171, 194, 50, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2066, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16788074989427580830" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6375c6f3d6a34d77f4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9972133102589185912" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1be8fb39417f735f9e9f496375c6f3d6a34d77f41b8a642238e0be0f78ffffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 232, 251, 57, 65, 127, 115, 95, 158, 159, 73, 99, 117, 198, 243, 214, 163, 77, 119, + 244, 27, 138, 100, 34, 56, 224, 190, 15, 120, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2067, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12094667782067961910" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14424466960356863773" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2386888066426419041" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1241262402294308644" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8691948714509658521" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ec973" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6964b0a7d55451da18" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "07111488acb5b693" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba7d8e4447a85c0369f1bc82e0046be6def1d1b211fee0cd5f73761bf1b1139d99411ccdf241b78a0014dce42e999437ec973496964b0a7d55451da18ff4807111488acb5b69380ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 167, 216, 228, 68, 122, 133, 192, 54, 159, 27, 200, 46, 0, 70, 190, 109, 239, 29, 27, 33, + 31, 238, 12, 213, 247, 55, 97, 191, 27, 17, 57, 217, 148, 17, 204, 223, 36, 27, 120, 160, 1, 77, 206, 66, 233, + 153, 67, 126, 201, 115, 73, 105, 100, 176, 167, 213, 84, 81, 218, 24, 255, 72, 7, 17, 20, 136, 172, 181, 182, 147, + 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2068, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4704827469306094178" + } + } + ] + }, + "cborHex": "9f1b414ae7a7f57d6262ff", + "cborBytes": [159, 27, 65, 74, 231, 167, 245, 125, 98, 98, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2069, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15874895015948306978" + } + } + ] + }, + "cborHex": "9f1bdc4ef4e88037ca22ff", + "cborBytes": [159, 27, 220, 78, 244, 232, 128, 55, 202, 34, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2070, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "10d44a52ae7bab2a5fe54a24" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "69a0ec2e3212e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "949e268897ba093b022d" + } + } + ] + } + ] + }, + "cborHex": "9f4c10d44a52ae7bab2a5fe54a24bf4769a0ec2e3212e94a949e268897ba093b022dffff", + "cborBytes": [ + 159, 76, 16, 212, 74, 82, 174, 123, 171, 42, 95, 229, 74, 36, 191, 71, 105, 160, 236, 46, 50, 18, 233, 74, 148, + 158, 38, 136, 151, 186, 9, 59, 2, 45, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2071, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10483146954419190878" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1b917b9e9cea5fbc5e80ff", + "cborBytes": [159, 27, 145, 123, 158, 156, 234, 95, 188, 94, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2072, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6534279512293515392" + } + }, + { + "_tag": "ByteArray", + "bytearray": "33" + }, + { + "_tag": "ByteArray", + "bytearray": "78a21cf8ab" + }, + { + "_tag": "ByteArray", + "bytearray": "85" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7b7c2c" + }, + { + "_tag": "ByteArray", + "bytearray": "163995d0" + } + ] + }, + "cborHex": "9f1bffffffffffffffff9f9f1b5aae6c98a95e208041334578a21cf8ab418504ff1bfffffffffffffff1ffa0437b7c2c44163995d0ff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 159, 27, 90, 174, 108, 152, 169, 94, 32, 128, 65, 51, 69, + 120, 162, 28, 248, 171, 65, 133, 4, 255, 27, 255, 255, 255, 255, 255, 255, 255, 241, 255, 160, 67, 123, 124, 44, + 68, 22, 57, 149, 208, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2073, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3716429616850026328" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9274376937521821147" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3786314772310751303" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5959493233488869691" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4631af0a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15422239053400380842" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "563e07e04590f9ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b32fa80ff634aa433104cf" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4081383934013019172" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8772786352416298893" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5009194640131004519" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16532493354475846047" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd14" + }, + { + "_tag": "ByteArray", + "bytearray": "b598ccb8c2eb202d2e73" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17017598870755040364" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6981143143084449513" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97f2a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10525742932961116186" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2182547238939458048" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18222909585948742762" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5320070565001614808" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11563023955960715334" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16363302667327524180" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc8e36d6e4250a53983d" + }, + { + "_tag": "ByteArray", + "bytearray": "c2b66372068112e288ca27f1" + }, + { + "_tag": "ByteArray", + "bytearray": "34b3854c9ae0da" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14210876956785387889" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "115d30cbdafc1e722e7d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5554123230297038033" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e68dceea19350ae9e93dea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b3393690bc9163f581b80b534afda1035db1b348bb139836578471b52b45f856772b93b444631af0a1bd606ccb5631615aa48563e07e04590f9ad4bb32fa80ff634aa433104cfff1b38a3fd105ad51424d8669f1b79bf32b5122b178d9fd8669f1b45843bfc3fcc98679f1be56f371ced09f99f42fd144ab598ccb8c2eb202d2e73ffffffffd8669f1bec2aa80285715c6c9fbf1b60e200b371b3dee94397f2a51b9212f36e0439c01a1b1e49f726727efa001bfce4c7b82489146a1b49d4affdeeeed5d8ff9f1ba0781d06405ed8461be316211456424d544acc8e36d6e4250a53983d4cc2b66372068112e288ca27f14734b3854c9ae0daff1bc5372d4cbbfa2971bf4a115d30cbdafc1e722e7d1b4d1435a6a4999cd14be68dceea19350ae9e93dea4197ffffffff", + "cborBytes": [ + 159, 191, 27, 51, 147, 105, 11, 201, 22, 63, 88, 27, 128, 181, 52, 175, 218, 16, 53, 219, 27, 52, 139, 177, 57, + 131, 101, 120, 71, 27, 82, 180, 95, 133, 103, 114, 185, 59, 68, 70, 49, 175, 10, 27, 214, 6, 204, 181, 99, 22, 21, + 170, 72, 86, 62, 7, 224, 69, 144, 249, 173, 75, 179, 47, 168, 15, 246, 52, 170, 67, 49, 4, 207, 255, 27, 56, 163, + 253, 16, 90, 213, 20, 36, 216, 102, 159, 27, 121, 191, 50, 181, 18, 43, 23, 141, 159, 216, 102, 159, 27, 69, 132, + 59, 252, 63, 204, 152, 103, 159, 27, 229, 111, 55, 28, 237, 9, 249, 159, 66, 253, 20, 74, 181, 152, 204, 184, 194, + 235, 32, 45, 46, 115, 255, 255, 255, 255, 216, 102, 159, 27, 236, 42, 168, 2, 133, 113, 92, 108, 159, 191, 27, 96, + 226, 0, 179, 113, 179, 222, 233, 67, 151, 242, 165, 27, 146, 18, 243, 110, 4, 57, 192, 26, 27, 30, 73, 247, 38, + 114, 126, 250, 0, 27, 252, 228, 199, 184, 36, 137, 20, 106, 27, 73, 212, 175, 253, 238, 238, 213, 216, 255, 159, + 27, 160, 120, 29, 6, 64, 94, 216, 70, 27, 227, 22, 33, 20, 86, 66, 77, 84, 74, 204, 142, 54, 214, 228, 37, 10, 83, + 152, 61, 76, 194, 182, 99, 114, 6, 129, 18, 226, 136, 202, 39, 241, 71, 52, 179, 133, 76, 154, 224, 218, 255, 27, + 197, 55, 45, 76, 187, 250, 41, 113, 191, 74, 17, 93, 48, 203, 218, 252, 30, 114, 46, 125, 27, 77, 20, 53, 166, + 164, 153, 156, 209, 75, 230, 141, 206, 234, 25, 53, 10, 233, 233, 61, 234, 65, 151, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2074, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11226358018774138417" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f036c4ce2cdf5ae515345" + } + ] + }, + "cborHex": "9f1b9bcc09236663fe314b7f036c4ce2cdf5ae515345ff", + "cborBytes": [159, 27, 155, 204, 9, 35, 102, 99, 254, 49, 75, 127, 3, 108, 76, 226, 205, 245, 174, 81, 83, 69, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2075, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10714821697565081319" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5902566089405333626" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14755627464534698883" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9180672325949837892" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16314581015680209219" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98323f67b3ca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c50aa9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6eb51" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a274974cf56bb451" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0c25a02fbe" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5115062867077494797" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c7eebb3e06" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02fb003c05f301f91624" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fa01b94b2b1907b03bee7d8669f1bfffffffffffffff49fbf1b51ea2095ce45807a1bccc685001596ab831b7f684cd6d37fd2441be26908fed2f351434698323f67b3ca43c50aa943b6eb5148a274974cf56bb451ff450c25a02fbed905039f1b46fc5a93abf1f80d45c7eebb3e06ff9f0c4a02fb003c05f301f916241bffffffffffffffedffffffff", + "cborBytes": [ + 159, 160, 27, 148, 178, 177, 144, 123, 3, 190, 231, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, + 159, 191, 27, 81, 234, 32, 149, 206, 69, 128, 122, 27, 204, 198, 133, 0, 21, 150, 171, 131, 27, 127, 104, 76, 214, + 211, 127, 210, 68, 27, 226, 105, 8, 254, 210, 243, 81, 67, 70, 152, 50, 63, 103, 179, 202, 67, 197, 10, 169, 67, + 182, 235, 81, 72, 162, 116, 151, 76, 245, 107, 180, 81, 255, 69, 12, 37, 160, 47, 190, 217, 5, 3, 159, 27, 70, + 252, 90, 147, 171, 241, 248, 13, 69, 199, 238, 187, 62, 6, 255, 159, 12, 74, 2, 251, 0, 60, 5, 243, 1, 249, 22, + 36, 27, 255, 255, 255, 255, 255, 255, 255, 237, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2076, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [] + } + ] + }, + "cborHex": "9f80d9050380ff", + "cborBytes": [159, 128, 217, 5, 3, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2077, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0d63601965" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12694321900899785185" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb53a8c4adc779176c" + }, + { + "_tag": "ByteArray", + "bytearray": "b205" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "636578453320743818" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5201262339228851613" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "45a5e630916f10" + }, + { + "_tag": "ByteArray", + "bytearray": "391289fda27d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9008966916454920383" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "734127046901025205" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fcaefe80c08a0b" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5658210638938529508" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bc1ca60bbe2c21" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f450d636019651bb02b4a82ef97d9e149cb53a8c4adc779176c42b2051b08d594bb05d9bb8affd8669f1b482e988a415a5d9d9f4745a5e630916f1046391289fda27d1b7d0647add08ab0bf1b0a3024a8da8ac9b547fcaefe80c08a0bffffffd8669f1b4e860098fe445ee49f419ad87e9f47bc1ca60bbe2c21ffffffff", + "cborBytes": [ + 159, 159, 159, 69, 13, 99, 96, 25, 101, 27, 176, 43, 74, 130, 239, 151, 217, 225, 73, 203, 83, 168, 196, 173, 199, + 121, 23, 108, 66, 178, 5, 27, 8, 213, 148, 187, 5, 217, 187, 138, 255, 216, 102, 159, 27, 72, 46, 152, 138, 65, + 90, 93, 157, 159, 71, 69, 165, 230, 48, 145, 111, 16, 70, 57, 18, 137, 253, 162, 125, 27, 125, 6, 71, 173, 208, + 138, 176, 191, 27, 10, 48, 36, 168, 218, 138, 201, 181, 71, 252, 174, 254, 128, 192, 138, 11, 255, 255, 255, 216, + 102, 159, 27, 78, 134, 0, 152, 254, 68, 94, 228, 159, 65, 154, 216, 126, 159, 71, 188, 28, 166, 11, 190, 44, 33, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2078, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2847766709885115503" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5cab65" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5918358947834461567" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64b04080b8ab6081a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9866710114953014211" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7408311355900292082" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9979673675636569918" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7691089056655659284" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13410911616473050152" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13474150347330748189" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b27854cbc09e29c6f435cab651b52223c1b32ed7d7f4964b04080b8ab6081a41b88ed9892cf872bc31b66cf9bed61edebf21b8a7eec555aa2773e1b6abc3cbf75dad1141bba1d210fa6092c281bbafdcc5a0edaff1dffff", + "cborBytes": [ + 159, 191, 27, 39, 133, 76, 188, 9, 226, 156, 111, 67, 92, 171, 101, 27, 82, 34, 60, 27, 50, 237, 125, 127, 73, + 100, 176, 64, 128, 184, 171, 96, 129, 164, 27, 136, 237, 152, 146, 207, 135, 43, 195, 27, 102, 207, 155, 237, 97, + 237, 235, 242, 27, 138, 126, 236, 85, 90, 162, 119, 62, 27, 106, 188, 60, 191, 117, 218, 209, 20, 27, 186, 29, 33, + 15, 166, 9, 44, 40, 27, 186, 253, 204, 90, 14, 218, 255, 29, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2079, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18322831680034828487" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "ByteArray", + "bytearray": "07a34a" + }, + { + "_tag": "ByteArray", + "bytearray": "9273ff5119223de4a4" + }, + { + "_tag": "ByteArray", + "bytearray": "dcb75a6af7fd670107de" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfe47c6559fbff0c79f9f1bfffffffffffffff94307a34a499273ff5119223de4a44adcb75a6af7fd670107deffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 254, 71, 198, 85, 159, 191, 240, 199, 159, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 249, 67, 7, 163, 74, 73, 146, 115, 255, 81, 25, 34, 61, 228, 164, 74, 220, 183, 90, 106, 247, 253, 103, 1, 7, 222, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2080, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8908097590832062646" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "db" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7587404966066659343" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "86216538594420409" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e1bda121d279b210eb6145" + }, + { + "_tag": "ByteArray", + "bytearray": "c65ed7268d4dd3bad19d" + }, + { + "_tag": "ByteArray", + "bytearray": "f48ad7f7" + }, + { + "_tag": "ByteArray", + "bytearray": "583086411a223ca79c8d580d" + }, + { + "_tag": "ByteArray", + "bytearray": "e8" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "733e7504010507fe0602a23b" + } + ] + }, + "cborHex": "9f0c1b7b9feb8fce0ee0b69f41db9f1b694be09de970200f1b01324d7c2caf26b9ff9f4be1bda121d279b210eb61454ac65ed7268d4dd3bad19d44f48ad7f74c583086411a223ca79c8d580d41e8ffff4c733e7504010507fe0602a23bff", + "cborBytes": [ + 159, 12, 27, 123, 159, 235, 143, 206, 14, 224, 182, 159, 65, 219, 159, 27, 105, 75, 224, 157, 233, 112, 32, 15, + 27, 1, 50, 77, 124, 44, 175, 38, 185, 255, 159, 75, 225, 189, 161, 33, 210, 121, 178, 16, 235, 97, 69, 74, 198, + 94, 215, 38, 141, 77, 211, 186, 209, 157, 68, 244, 138, 215, 247, 76, 88, 48, 134, 65, 26, 34, 60, 167, 156, 141, + 88, 13, 65, 232, 255, 255, 76, 115, 62, 117, 4, 1, 5, 7, 254, 6, 2, 162, 59, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2081, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d578" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8111751394863586432" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1834359159033318779" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3962460364255045175" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12947910486589991220" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8315989041108602673" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1490273461150924040" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2780ee3aa17d7f173a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12706875080398953270" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11255772060322011029" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5903601854151577038" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87c740" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9748968665775914440" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f42d5789f1b7092baea6d1f9c80ffd8669f1b1974f3efb0aa4d7b9f1b36fd7cb50ffca6379f1bb3b037fc90c069341b736853f90f51cf311b14ae83d12e17bd08492780ee3aa17d7f173a1bb057e38fcc715b36ffd8669f1b9c34890da04297959f1b51edce9b940acdce4387c7401b874b4b5969fcbdc8ffffffffff", + "cborBytes": [ + 159, 66, 213, 120, 159, 27, 112, 146, 186, 234, 109, 31, 156, 128, 255, 216, 102, 159, 27, 25, 116, 243, 239, 176, + 170, 77, 123, 159, 27, 54, 253, 124, 181, 15, 252, 166, 55, 159, 27, 179, 176, 55, 252, 144, 192, 105, 52, 27, + 115, 104, 83, 249, 15, 81, 207, 49, 27, 20, 174, 131, 209, 46, 23, 189, 8, 73, 39, 128, 238, 58, 161, 125, 127, + 23, 58, 27, 176, 87, 227, 143, 204, 113, 91, 54, 255, 216, 102, 159, 27, 156, 52, 137, 13, 160, 66, 151, 149, 159, + 27, 81, 237, 206, 155, 148, 10, 205, 206, 67, 135, 199, 64, 27, 135, 75, 75, 89, 105, 252, 189, 200, 255, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2082, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13953272801992475972" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cab1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1246407001316001104" + } + }, + { + "_tag": "ByteArray", + "bytearray": "41169e5369" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4894675039316023547" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10027421345655320971" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17910377702449301968" + } + } + ] + }, + "cborHex": "9fd8669f1bc1a3fbaf90e1854480ff9f42cab19f1b114c20905f0005504541169e53691b43ed6103e16718fb1b8b288e9618f4718bffff1bf88e71a08b9149d0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 193, 163, 251, 175, 144, 225, 133, 68, 128, 255, 159, 66, 202, 177, 159, 27, 17, 76, 32, + 144, 95, 0, 5, 80, 69, 65, 22, 158, 83, 105, 27, 67, 237, 97, 3, 225, 103, 24, 251, 27, 139, 40, 142, 150, 24, + 244, 113, 139, 255, 255, 27, 248, 142, 113, 160, 139, 145, 73, 208, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2083, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12152293577418041145" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13311105524149766012" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f4c6760ceb028ef45ca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4161577923952816270" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5b4e5da8861" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17880887677629727119" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fee1941873e71ee7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7abe" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "de9efdbcbb9187bc372ba6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2388106673804530734" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "571506609324228551" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecb6ed" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2a54df78a15f9322" + } + ] + }, + "cborHex": "9fbf1ba8a59e9f804367391bb8ba8bf2eeafc77c4a0f4c6760ceb028ef45ca1b39c0e512a650b08e46f5b4e5da88611bf825ac9b15c7818f48fee1941873e71ee7427abeff4bde9efdbcbb9187bc372ba6d8669f1b2124425df9dbd42e80ffbf1b07ee663bb38effc743ecb6edff482a54df78a15f9322ff", + "cborBytes": [ + 159, 191, 27, 168, 165, 158, 159, 128, 67, 103, 57, 27, 184, 186, 139, 242, 238, 175, 199, 124, 74, 15, 76, 103, + 96, 206, 176, 40, 239, 69, 202, 27, 57, 192, 229, 18, 166, 80, 176, 142, 70, 245, 180, 229, 218, 136, 97, 27, 248, + 37, 172, 155, 21, 199, 129, 143, 72, 254, 225, 148, 24, 115, 231, 30, 231, 66, 122, 190, 255, 75, 222, 158, 253, + 188, 187, 145, 135, 188, 55, 43, 166, 216, 102, 159, 27, 33, 36, 66, 93, 249, 219, 212, 46, 128, 255, 191, 27, 7, + 238, 102, 59, 179, 142, 255, 199, 67, 236, 182, 237, 255, 72, 42, 84, 223, 120, 161, 95, 147, 34, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2084, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5522023685078402576" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94762893e44b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8906832743641079341" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13333024261684442562" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d08cd24e8c02485ba0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31fdd15849d7f5b1c29f" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13939309739997423955" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9622837342032987616" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4fbf" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b4ca22b48de6446104694762893e44b1b7b9b6d309e8b5e2d1bb9086aecb35db5c249d08cd24e8c02485ba04a31fdd15849d7f5b1c29fff9f1bc172605adab06953ffbf1b858b2f941f3d85e0424fbfffff", + "cborBytes": [ + 159, 191, 27, 76, 162, 43, 72, 222, 100, 70, 16, 70, 148, 118, 40, 147, 228, 75, 27, 123, 155, 109, 48, 158, 139, + 94, 45, 27, 185, 8, 106, 236, 179, 93, 181, 194, 73, 208, 140, 210, 78, 140, 2, 72, 91, 160, 74, 49, 253, 209, 88, + 73, 215, 245, 177, 194, 159, 255, 159, 27, 193, 114, 96, 90, 218, 176, 105, 83, 255, 191, 27, 133, 139, 47, 148, + 31, 61, 133, 224, 66, 79, 191, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2085, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4617172373798580710" + } + }, + { + "_tag": "ByteArray", + "bytearray": "71883626bc20dcd87c3d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15256876971285457623" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1b40137dcfa702f1e64a71883626bc20dcd87c3dd8669f1bd3bb50c55f4eaad780ffff", + "cborBytes": [ + 159, 27, 64, 19, 125, 207, 167, 2, 241, 230, 74, 113, 136, 54, 38, 188, 32, 220, 216, 124, 61, 216, 102, 159, 27, + 211, 187, 80, 197, 95, 78, 170, 215, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2086, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9608308620350754746" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11662821614652925671" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8199470172129640311" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95b9f4eb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2712513679580152070" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10683581362696156325" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff19f1b855791c880548fbad8669f1ba1daaa775c22a6e79f1b71ca5eadcc32bf774495b9f4eb1b25a4c8d1efc34106ffffffff1b9443b4a5347cf4a5bf1bfffffffffffffff813ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 27, 133, 87, 145, 200, 128, 84, 143, 186, + 216, 102, 159, 27, 161, 218, 170, 119, 92, 34, 166, 231, 159, 27, 113, 202, 94, 173, 204, 50, 191, 119, 68, 149, + 185, 244, 235, 27, 37, 164, 200, 209, 239, 195, 65, 6, 255, 255, 255, 255, 27, 148, 67, 180, 165, 52, 124, 244, + 165, 191, 27, 255, 255, 255, 255, 255, 255, 255, 248, 19, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2087, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "641957271893912194" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7015723863468619643" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11807867184643931767" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "083d7c6cd2a75b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5479c32484a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15985860557407963693" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59bf89d6284b50f860a7cc5f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10062389306583191999" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10493718761938188829" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0688" + } + ] + }, + "cborHex": "9fbf1b08e8b0bcd0372a821b615cdbaed447377b1ba3ddf8a4c7b17e7747083d7c6cd2a75b465479c32484a51bddd92f7af13aca2d4c59bf89d6284b50f860a7cc5f1b8ba4c9c2f29491bfff1b91a12d9daa2d7a1d420688ff", + "cborBytes": [ + 159, 191, 27, 8, 232, 176, 188, 208, 55, 42, 130, 27, 97, 92, 219, 174, 212, 71, 55, 123, 27, 163, 221, 248, 164, + 199, 177, 126, 119, 71, 8, 61, 124, 108, 210, 167, 91, 70, 84, 121, 195, 36, 132, 165, 27, 221, 217, 47, 122, 241, + 58, 202, 45, 76, 89, 191, 137, 214, 40, 75, 80, 248, 96, 167, 204, 95, 27, 139, 164, 201, 194, 242, 148, 145, 191, + 255, 27, 145, 161, 45, 157, 170, 45, 122, 29, 66, 6, 136, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2088, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1617019298468727199" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3950352077926442052" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1053061189828251025" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5439660938909147910" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b199be79" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12173290825892012861" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ce474e70d6ac23149" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12443590181884893503" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5891660421912296091" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b1670ce7c102e099f1b36d27848f6882444ffbf1b0e9d3992a2768d9141ca1b4b7d8ecdaa3f630644b199be791ba8f0378260d0a33d490ce474e70d6ac231491bacb0835769c9993f1b51c361f0394f7a9bffff", + "cborBytes": [ + 159, 191, 27, 22, 112, 206, 124, 16, 46, 9, 159, 27, 54, 210, 120, 72, 246, 136, 36, 68, 255, 191, 27, 14, 157, + 57, 146, 162, 118, 141, 145, 65, 202, 27, 75, 125, 142, 205, 170, 63, 99, 6, 68, 177, 153, 190, 121, 27, 168, 240, + 55, 130, 96, 208, 163, 61, 73, 12, 228, 116, 231, 13, 106, 194, 49, 73, 27, 172, 176, 131, 87, 105, 201, 153, 63, + 27, 81, 195, 97, 240, 57, 79, 122, 155, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2089, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6570199975463590248" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8688714777208633254" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "28" + }, + { + "_tag": "ByteArray", + "bytearray": "d94180" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "00d3" + } + ] + }, + "cborHex": "9f1b5b2e0a1138c99968d8669f1b7894840e1a3537a69f412843d94180ffff4200d3ff", + "cborBytes": [ + 159, 27, 91, 46, 10, 17, 56, 201, 153, 104, 216, 102, 159, 27, 120, 148, 132, 14, 26, 53, 55, 166, 159, 65, 40, + 67, 217, 65, 128, 255, 255, 66, 0, 211, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2090, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12148802714797722237" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa78efffa9872c39f6f65bd6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6075094566976913399" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11392762604768858142" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16815058481919640026" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16376514062222391774" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dac0b857e472" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10989891059442451598" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1662035953405931854" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17186735995234348088" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f8d62f9e7121013c540d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17801581720641627568" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10224332885640756991" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "050204845300c30376" + }, + { + "_tag": "ByteArray", + "bytearray": "4716" + } + ] + }, + "cborHex": "9fd8669f1ba89937b3b5d1ca7d9f4caa78efffa9872c39f6f65bd61b544f125249907ff7bf1b9e1b393a439a101e1be95b16996c3d41da1be34510c5e9f479de46dac0b857e472413f1b9883efb10e4f048eff9f1b1710bce4ceb0314e1bee838d54145cec384af8d62f9e7121013c540dff1bf70bec4212ee65b0ffffd87d9f80d8669f1b8de42096b1f63eff80ffff9f0eff49050204845300c30376424716ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 168, 153, 55, 179, 181, 209, 202, 125, 159, 76, 170, 120, 239, 255, 169, 135, 44, 57, 246, + 246, 91, 214, 27, 84, 79, 18, 82, 73, 144, 127, 247, 191, 27, 158, 27, 57, 58, 67, 154, 16, 30, 27, 233, 91, 22, + 153, 108, 61, 65, 218, 27, 227, 69, 16, 197, 233, 244, 121, 222, 70, 218, 192, 184, 87, 228, 114, 65, 63, 27, 152, + 131, 239, 177, 14, 79, 4, 142, 255, 159, 27, 23, 16, 188, 228, 206, 176, 49, 78, 27, 238, 131, 141, 84, 20, 92, + 236, 56, 74, 248, 214, 47, 158, 113, 33, 1, 60, 84, 13, 255, 27, 247, 11, 236, 66, 18, 238, 101, 176, 255, 255, + 216, 125, 159, 128, 216, 102, 159, 27, 141, 228, 32, 150, 177, 246, 62, 255, 128, 255, 255, 159, 14, 255, 73, 5, + 2, 4, 132, 83, 0, 195, 3, 118, 66, 71, 22, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2091, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13157263845349732835" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa5304bf124899aef7f0b67b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1248315881639763290" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7181675070658358954" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f28e495c650" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3221527865014833668" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "894286554250179836" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "1b09e09161cac006b5" + } + ] + }, + "cborHex": "9fd8669f1bb697fdc1d62931e39f4caa5304bf124899aef7f0b67b1b1152e8ae349ddd5a801b63aa6f6d36deaeaabf461f28e495c6501b2cb52a865c3b5204ffffff1b0c6924e2097d74fc80491b09e09161cac006b5ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 182, 151, 253, 193, 214, 41, 49, 227, 159, 76, 170, 83, 4, 191, 18, 72, 153, 174, 247, + 240, 182, 123, 27, 17, 82, 232, 174, 52, 157, 221, 90, 128, 27, 99, 170, 111, 109, 54, 222, 174, 170, 191, 70, 31, + 40, 228, 149, 198, 80, 27, 44, 181, 42, 134, 92, 59, 82, 4, 255, 255, 255, 27, 12, 105, 36, 226, 9, 125, 116, 252, + 128, 73, 27, 9, 224, 145, 97, 202, 192, 6, 181, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2092, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7691100452726990982" + } + } + ] + }, + "cborHex": "9f051b6abc471cd0a36886ff", + "cborBytes": [159, 5, 27, 106, 188, 71, 28, 208, 163, 104, 134, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2093, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3056898442452928430" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "434255056539498876" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3809072196609878284" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1944939914741434208" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de44da9d60" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3014901896361432721" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9673658381775220260" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12287722536124948852" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5179252588130428256" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15544749210050654238" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e132c17c52552f243f4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18069477050238700034" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2013015953511285850" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6352643868834247912" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c9c5" + }, + { + "_tag": "ByteArray", + "bytearray": "764ce014845e2160" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1b2a6c48eff0da07aebf1b0606c8ac52f4397c1b34dc8afb42bfa90c1b1afdd08c37a4476045de44da9d601b29d7154d154656911b863fbd0b84312e241baa86c28b204a21741b47e066c9bd8965601bd7ba0b0c039a701e4a1e132c17c52552f243f41bfac3ada4188d0a024199ffd8669f1b1befab58243c045a9f1b58291ff0e26db4e842c9c548764ce014845e2160ffffffff", + "cborBytes": [ + 159, 159, 27, 42, 108, 72, 239, 240, 218, 7, 174, 191, 27, 6, 6, 200, 172, 82, 244, 57, 124, 27, 52, 220, 138, + 251, 66, 191, 169, 12, 27, 26, 253, 208, 140, 55, 164, 71, 96, 69, 222, 68, 218, 157, 96, 27, 41, 215, 21, 77, 21, + 70, 86, 145, 27, 134, 63, 189, 11, 132, 49, 46, 36, 27, 170, 134, 194, 139, 32, 74, 33, 116, 27, 71, 224, 102, + 201, 189, 137, 101, 96, 27, 215, 186, 11, 12, 3, 154, 112, 30, 74, 30, 19, 44, 23, 197, 37, 82, 242, 67, 244, 27, + 250, 195, 173, 164, 24, 141, 10, 2, 65, 153, 255, 216, 102, 159, 27, 27, 239, 171, 88, 36, 60, 4, 90, 159, 27, 88, + 41, 31, 240, 226, 109, 180, 232, 66, 201, 197, 72, 118, 76, 224, 20, 132, 94, 33, 96, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2094, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18234307997793993232" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3468589001638897390" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca9ec14f3f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55cb86e1b9af50648dec0156" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e09c54b19155619d2a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35b1e3dc8aef0198" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bfd0d4683b59342109f1b3022e751d28366eebf45ca9ec14f3f4c55cb86e1b9af50648dec015649e09c54b19155619d2a4835b1e3dc8aef0198ffffff", + "cborBytes": [ + 159, 27, 253, 13, 70, 131, 181, 147, 66, 16, 159, 27, 48, 34, 231, 81, 210, 131, 102, 238, 191, 69, 202, 158, 193, + 79, 63, 76, 85, 203, 134, 225, 185, 175, 80, 100, 141, 236, 1, 86, 73, 224, 156, 84, 177, 145, 85, 97, 157, 42, + 72, 53, 177, 227, 220, 138, 239, 1, 152, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2095, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5586436458707632549" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b4d87025c698f41a580ffff", + "cborBytes": [159, 216, 102, 159, 27, 77, 135, 2, 92, 105, 143, 65, 165, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2096, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eba0daa9131aab1269" + } + ] + }, + "cborHex": "9f49eba0daa9131aab1269ff", + "cborBytes": [159, 73, 235, 160, 218, 169, 19, 26, 171, 18, 105, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2097, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dd5eed" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17420295434731856816" + } + } + ] + } + ] + }, + "cborHex": "9f43dd5eeda09f1bf1c15266b58d23b0ffff", + "cborBytes": [159, 67, 221, 94, 237, 160, 159, 27, 241, 193, 82, 102, 181, 141, 35, 176, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2098, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16721319034019011050" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6e425579de" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "776d03c87c182a3ea3669edb" + }, + { + "_tag": "ByteArray", + "bytearray": "ad4123a4f78db5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4877839407706298864" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13368077910377411320" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11007152940525775818" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13703323212965064762" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2985473357875733458" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e451ed3d9fd781b0b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11062802841532104492" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4875815114074597419" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cb5ee133ceeca28566" + }, + { + "_tag": "ByteArray", + "bytearray": "7ea9182d1e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "117b6c694d9b4845544bf7ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8899355893742285904" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fb49fe4bd7688" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "435810104986558492" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b726" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97b344" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7812318884248594386" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d8b2093c2fb821ab771e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11956738349142665056" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da1460deafd0435dfb426d64" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f472a62c00611628f36b7ac8" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17917706927463587947" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4673246223377168540" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10384211639721665580" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f9f1be80e0f116eae59eaff456e425579de9f9f4c776d03c87c182a3ea3669edb47ad4123a4f78db51b43b19118efbc59f01bb984f40849cab2f81b98c14347f06f6bcaffd8669f1bbe2bfbdbdf25b03a9f1b296e8833869363d249e451ed3d9fd781b0b81b9986f89235b3ff2c1b43aa600358e5a82bffff49cb5ee133ceeca28566457ea9182d1ebf4c117b6c694d9b4845544bf7ec1b7b80dd08d849b450477fb49fe4bd76881b060c4efb413fe01c42b7264397b344ffffd8669f1b6c6aeea23fb6a7d29f4ad8b2093c2fb821ab771ebf1ba5eede2dd4f067604cda1460deafd0435dfb426d6441944cf472a62c00611628f36b7ac8ff1bf8a87b84b905e06b1b40dab4ae2454f89cd8669f1b901c2177ea16242c80ffffffff", + "cborBytes": [ + 159, 159, 27, 232, 14, 15, 17, 110, 174, 89, 234, 255, 69, 110, 66, 85, 121, 222, 159, 159, 76, 119, 109, 3, 200, + 124, 24, 42, 62, 163, 102, 158, 219, 71, 173, 65, 35, 164, 247, 141, 181, 27, 67, 177, 145, 24, 239, 188, 89, 240, + 27, 185, 132, 244, 8, 73, 202, 178, 248, 27, 152, 193, 67, 71, 240, 111, 107, 202, 255, 216, 102, 159, 27, 190, + 43, 251, 219, 223, 37, 176, 58, 159, 27, 41, 110, 136, 51, 134, 147, 99, 210, 73, 228, 81, 237, 61, 159, 215, 129, + 176, 184, 27, 153, 134, 248, 146, 53, 179, 255, 44, 27, 67, 170, 96, 3, 88, 229, 168, 43, 255, 255, 73, 203, 94, + 225, 51, 206, 236, 162, 133, 102, 69, 126, 169, 24, 45, 30, 191, 76, 17, 123, 108, 105, 77, 155, 72, 69, 84, 75, + 247, 236, 27, 123, 128, 221, 8, 216, 73, 180, 80, 71, 127, 180, 159, 228, 189, 118, 136, 27, 6, 12, 78, 251, 65, + 63, 224, 28, 66, 183, 38, 67, 151, 179, 68, 255, 255, 216, 102, 159, 27, 108, 106, 238, 162, 63, 182, 167, 210, + 159, 74, 216, 178, 9, 60, 47, 184, 33, 171, 119, 30, 191, 27, 165, 238, 222, 45, 212, 240, 103, 96, 76, 218, 20, + 96, 222, 175, 208, 67, 93, 251, 66, 109, 100, 65, 148, 76, 244, 114, 166, 44, 0, 97, 22, 40, 243, 107, 122, 200, + 255, 27, 248, 168, 123, 132, 185, 5, 224, 107, 27, 64, 218, 180, 174, 36, 84, 248, 156, 216, 102, 159, 27, 144, + 28, 33, 119, 234, 22, 36, 44, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2099, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8746758111138087795" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8424722645608287144" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2953800919666521284" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16196787872171472720" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f91d6b5cf4ab" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17308431591409573490" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "84aabf82555f56690d7e15" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1019542764764013423" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15233737765051772159" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17125398938445532902" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fdd58ce98618a030c9" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d7b78a9a44d09415a887" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2055720864544184431" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7962ba28e6a7037380ff1b74eaa09c2eabcba8a01b28fe024959f1f4c4d8669f1be0c68cc16722b7509f46f91d6b5cf4abd8669f1bf033e6d4111dde729f4b84aabf82555f56690d7e151b0e2624be2714236f1bd3691bc9175d2cff1beda9a399aae5cee649fdd58ce98618a030c9ffff9f4ad7b78a9a44d09415a887ff9f1b1c87633c1083d86fffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 121, 98, 186, 40, 230, 167, 3, 115, 128, 255, 27, 116, 234, 160, 156, 46, 171, 203, 168, + 160, 27, 40, 254, 2, 73, 89, 241, 244, 196, 216, 102, 159, 27, 224, 198, 140, 193, 103, 34, 183, 80, 159, 70, 249, + 29, 107, 92, 244, 171, 216, 102, 159, 27, 240, 51, 230, 212, 17, 29, 222, 114, 159, 75, 132, 170, 191, 130, 85, + 95, 86, 105, 13, 126, 21, 27, 14, 38, 36, 190, 39, 20, 35, 111, 27, 211, 105, 27, 201, 23, 93, 44, 255, 27, 237, + 169, 163, 153, 170, 229, 206, 230, 73, 253, 213, 140, 233, 134, 24, 160, 48, 201, 255, 255, 159, 74, 215, 183, + 138, 154, 68, 208, 148, 21, 168, 135, 255, 159, 27, 28, 135, 99, 60, 16, 131, 216, 111, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2100, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa17f9cb" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e37ed2fc2ff1e498" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15397623684413628117" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b027d472c63fea7b09efab0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5335333765518558939" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15238360124274629259" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f0065" + }, + { + "_tag": "ByteArray", + "bytearray": "039fa702" + } + ] + }, + "cborHex": "9f44fa17f9cb9f48e37ed2fc2ff1e4981bd5af59292e9d9ed54c0b027d472c63fea7b09efab01b4a0ae9cabbe186dbff1bd37987cbf6ddda8b436f006544039fa702ff", + "cborBytes": [ + 159, 68, 250, 23, 249, 203, 159, 72, 227, 126, 210, 252, 47, 241, 228, 152, 27, 213, 175, 89, 41, 46, 157, 158, + 213, 76, 11, 2, 125, 71, 44, 99, 254, 167, 176, 158, 250, 176, 27, 74, 10, 233, 202, 187, 225, 134, 219, 255, 27, + 211, 121, 135, 203, 246, 221, 218, 139, 67, 111, 0, 101, 68, 3, 159, 167, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2101, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2140743960550524260" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10929022224634294516" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "684bf8e4" + }, + { + "_tag": "ByteArray", + "bytearray": "d03c10" + }, + { + "_tag": "ByteArray", + "bytearray": "9737277227d0" + }, + { + "_tag": "ByteArray", + "bytearray": "c79cf4711719bc" + }, + { + "_tag": "ByteArray", + "bytearray": "8c92846068b7" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "191a1f53da" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12932742386940286932" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1db5734a3bad45649fd8669f1b97abafcf11ad30f49f44684bf8e443d03c10469737277227d047c79cf4711719bc468c92846068b7ffffbf1345191a1f53da1bb37a54ae293697d41bfffffffffffffffeffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 29, 181, 115, 74, 59, 173, 69, 100, 159, 216, 102, 159, 27, 151, 171, 175, 207, 17, 173, + 48, 244, 159, 68, 104, 75, 248, 228, 67, 208, 60, 16, 70, 151, 55, 39, 114, 39, 208, 71, 199, 156, 244, 113, 23, + 25, 188, 70, 140, 146, 132, 96, 104, 183, 255, 255, 191, 19, 69, 25, 26, 31, 83, 218, 27, 179, 122, 84, 174, 41, + 54, 151, 212, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2102, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + }, + "cborHex": "9f12ff", + "cborBytes": [159, 18, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2103, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7693077884074485563" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fcb1f3" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4885055890301686110" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1d31291290b3a083f7" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "250aa7d8667920ce1b43cd00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12690341364796304306" + } + }, + { + "_tag": "ByteArray", + "bytearray": "18b271e5f93aae400589" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4590014714692841816" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6356850306537183809" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b6ac34d936dac673b9f43fcb1f3a09f1b43cb3473395c915e491d31291290b3a083f7ff9f4c250aa7d8667920ce1b43cd001bb01d263c27212bb24a18b271e5f93aae400589ff1b3fb3021067153158ffffd8669f1b583811ac7b7b5a419f80ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 106, 195, 77, 147, 109, 172, 103, 59, 159, 67, 252, 177, 243, 160, 159, 27, 67, 203, 52, + 115, 57, 92, 145, 94, 73, 29, 49, 41, 18, 144, 179, 160, 131, 247, 255, 159, 76, 37, 10, 167, 216, 102, 121, 32, + 206, 27, 67, 205, 0, 27, 176, 29, 38, 60, 39, 33, 43, 178, 74, 24, 178, 113, 229, 249, 58, 174, 64, 5, 137, 255, + 27, 63, 179, 2, 16, 103, 21, 49, 88, 255, 255, 216, 102, 159, 27, 88, 56, 17, 172, 123, 123, 90, 65, 159, 128, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2104, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "45" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "903581509849aa123e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14974276155797225991" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9082177213751377988" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c42a9339d0" + } + ] + }, + "cborHex": "9f41459f9f49903581509849aa123effd8669f1bcfcf50d39ae5420780ffff1b7e0a600e74cc404445c42a9339d0ff", + "cborBytes": [ + 159, 65, 69, 159, 159, 73, 144, 53, 129, 80, 152, 73, 170, 18, 62, 255, 216, 102, 159, 27, 207, 207, 80, 211, 154, + 229, 66, 7, 128, 255, 255, 27, 126, 10, 96, 14, 116, 204, 64, 68, 69, 196, 42, 147, 57, 208, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2105, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3779863311088929555" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d7e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7092095482280457870" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12415712420472852525" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "175953b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5674897906269087828" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27fd171b379620f5c96c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd6c7081ed0aff" + } + } + ] + } + ] + }, + "cborHex": "9f1b3474c5a7a4fccb1380bf423d7e1b626c2f43fe7ab68eff1bac4d78aa47b0902dbf44175953b61b4ec149942fc6e8544a27fd171b379620f5c96c47bd6c7081ed0affffff", + "cborBytes": [ + 159, 27, 52, 116, 197, 167, 164, 252, 203, 19, 128, 191, 66, 61, 126, 27, 98, 108, 47, 67, 254, 122, 182, 142, + 255, 27, 172, 77, 120, 170, 71, 176, 144, 45, 191, 68, 23, 89, 83, 182, 27, 78, 193, 73, 148, 47, 198, 232, 84, + 74, 39, 253, 23, 27, 55, 150, 32, 245, 201, 108, 71, 189, 108, 112, 129, 237, 10, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2106, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12827890550368120623" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eb62eb8865be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "43429038595213041" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16614070045817888135" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f9e16ef601963bf2cd" + }, + { + "_tag": "ByteArray", + "bytearray": "7818d92d6d15a7978e6b8beb" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "579358806069073607" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15089290875972238509" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2f1059e979a29303e990" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "eeed38d36e802f7c5d" + }, + { + "_tag": "ByteArray", + "bytearray": "47ee742f839c2388da91" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12084274753642584022" + } + }, + { + "_tag": "ByteArray", + "bytearray": "07b006b2" + } + ] + }, + "cborHex": "9f9fd8669f1bb205d27d90482f2f9f46eb62eb8865be1b009a4a7b026786f11be69108ae7a6edd8749f9e16ef601963bf2cd4c7818d92d6d15a7978e6b8bebffffbf41011b080a4bc3b93dd6c7ffff14d8669f1bd167ee1aeede3cad9f4a2f1059e979a29303e990a049eeed38d36e802f7c5d4a47ee742f839c2388da91ffff1ba7b3f7dcfb1657d64407b006b2ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 178, 5, 210, 125, 144, 72, 47, 47, 159, 70, 235, 98, 235, 136, 101, 190, 27, 0, 154, + 74, 123, 2, 103, 134, 241, 27, 230, 145, 8, 174, 122, 110, 221, 135, 73, 249, 225, 110, 246, 1, 150, 59, 242, 205, + 76, 120, 24, 217, 45, 109, 21, 167, 151, 142, 107, 139, 235, 255, 255, 191, 65, 1, 27, 8, 10, 75, 195, 185, 61, + 214, 199, 255, 255, 20, 216, 102, 159, 27, 209, 103, 238, 26, 238, 222, 60, 173, 159, 74, 47, 16, 89, 233, 121, + 162, 147, 3, 233, 144, 160, 73, 238, 237, 56, 211, 110, 128, 47, 124, 93, 74, 71, 238, 116, 47, 131, 156, 35, 136, + 218, 145, 255, 255, 27, 167, 179, 247, 220, 251, 22, 87, 214, 68, 7, 176, 6, 178, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2107, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6015" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1095560b83599950ebe60a73" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "568230534b61b83e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "525f3fbf41f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b9141c19ba02c30c5" + } + } + ] + } + ] + }, + "cborHex": "9f426015bf4c1095560b83599950ebe60a7348568230534b61b83e46525f3fbf41f5493b9141c19ba02c30c5ffff", + "cborBytes": [ + 159, 66, 96, 21, 191, 76, 16, 149, 86, 11, 131, 89, 153, 80, 235, 230, 10, 115, 72, 86, 130, 48, 83, 75, 97, 184, + 62, 70, 82, 95, 63, 191, 65, 245, 73, 59, 145, 65, 193, 155, 160, 44, 48, 197, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2108, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a0d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4539825058584437664" + } + } + ] + }, + "cborHex": "9f429a0d1b3f00b2d67757a3a0ff", + "cborBytes": [159, 66, 154, 13, 27, 63, 0, 178, 214, 119, 87, 163, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2109, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "06e58277d0bf" + } + ] + }, + "cborHex": "9f4606e58277d0bfff", + "cborBytes": [159, 70, 6, 229, 130, 119, 208, 191, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2110, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17802503257035818231" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16211294720108619365" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0b59ff35ce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16785502233918534019" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16056542485487773822" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0322f6d5ff237e6aae3a" + }, + { + "_tag": "ByteArray", + "bytearray": "3cbbdcb7063eed" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "20115f0a4e885e27fc09" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15241773866563004990" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c1570c87768" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11822357217649359004" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e4956ecc384a4d4dd4e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b56d86602d03d7cb5fe726" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2506248182" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8349557853681757568" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b3a7" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5773179958328436321" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "80676137137204813" + } + } + ] + } + ] + }, + "cborHex": "9f1bf70f3263fc5ac4f7d8669f1be0fa16a8253d66659fa0450b59ff35ce1be8f215592d3d7183d8669f1bded44c51c077687e9f4a0322f6d5ff237e6aae3a473cbbdcb7063eedffff4a20115f0a4e885e27fc09ffffd8669f1bd385a893c751ea3e9fbf467c1570c877681ba41173407dc3f89c41ab4a0e4956ecc384a4d4dd4e4bb56d86602d03d7cb5fe726452506248182ff9f1b73df96a14c462d8042b3a7ff1b501e7495a09226611b011e9e84efe9ee4dffffff", + "cborBytes": [ + 159, 27, 247, 15, 50, 99, 252, 90, 196, 247, 216, 102, 159, 27, 224, 250, 22, 168, 37, 61, 102, 101, 159, 160, 69, + 11, 89, 255, 53, 206, 27, 232, 242, 21, 89, 45, 61, 113, 131, 216, 102, 159, 27, 222, 212, 76, 81, 192, 119, 104, + 126, 159, 74, 3, 34, 246, 213, 255, 35, 126, 106, 174, 58, 71, 60, 187, 220, 183, 6, 62, 237, 255, 255, 74, 32, + 17, 95, 10, 78, 136, 94, 39, 252, 9, 255, 255, 216, 102, 159, 27, 211, 133, 168, 147, 199, 81, 234, 62, 159, 191, + 70, 124, 21, 112, 200, 119, 104, 27, 164, 17, 115, 64, 125, 195, 248, 156, 65, 171, 74, 14, 73, 86, 236, 195, 132, + 164, 212, 221, 78, 75, 181, 109, 134, 96, 45, 3, 215, 203, 95, 231, 38, 69, 37, 6, 36, 129, 130, 255, 159, 27, + 115, 223, 150, 161, 76, 70, 45, 128, 66, 179, 167, 255, 27, 80, 30, 116, 149, 160, 146, 38, 97, 27, 1, 30, 158, + 132, 239, 233, 238, 77, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2111, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04fcf20507f906200011" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75413cb51f2c3e5532c116" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2816996965378080014" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16675793397921459531" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1065891440338448631" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4597ac023df82cada1e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8575307744308522355" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16361317891434611915" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8956682471840334116" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7232164057552659117" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10402648012770428756" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8386e72887ae5a5c30e577" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10955306805018221683" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24f9f1f524e21d6f2ad5de56" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15579067308149807515" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a59259092974c7f5289c" + } + } + ] + } + ] + }, + "cborHex": "9f4a04fcf20507f90620001180bf0041fe114b75413cb51f2c3e5532c1161b2717fbd09eb6bd0e1be76c51be46e9ad4bffbf1b0ecace9e1e80b0f74af4597ac023df82cada1e1b77019cf5a32a6d731be30f13efb03404cb1b7c4c8740ec02c1241b645dcee487c622ad1b905da140849ac7544b8386e72887ae5a5c30e5771b9809117ed687dc734c24f9f1f524e21d6f2ad5de561bd833f72ce22b999b4aa59259092974c7f5289cffff", + "cborBytes": [ + 159, 74, 4, 252, 242, 5, 7, 249, 6, 32, 0, 17, 128, 191, 0, 65, 254, 17, 75, 117, 65, 60, 181, 31, 44, 62, 85, 50, + 193, 22, 27, 39, 23, 251, 208, 158, 182, 189, 14, 27, 231, 108, 81, 190, 70, 233, 173, 75, 255, 191, 27, 14, 202, + 206, 158, 30, 128, 176, 247, 74, 244, 89, 122, 192, 35, 223, 130, 202, 218, 30, 27, 119, 1, 156, 245, 163, 42, + 109, 115, 27, 227, 15, 19, 239, 176, 52, 4, 203, 27, 124, 76, 135, 64, 236, 2, 193, 36, 27, 100, 93, 206, 228, + 135, 198, 34, 173, 27, 144, 93, 161, 64, 132, 154, 199, 84, 75, 131, 134, 231, 40, 135, 174, 90, 92, 48, 229, 119, + 27, 152, 9, 17, 126, 214, 135, 220, 115, 76, 36, 249, 241, 245, 36, 226, 29, 111, 42, 213, 222, 86, 27, 216, 51, + 247, 44, 226, 43, 153, 155, 74, 165, 146, 89, 9, 41, 116, 199, 245, 40, 156, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2112, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05040684fdb1c5aa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84885e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a34" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78e264fa7c76c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40fe1316" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15e912" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b100b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "014f77" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16427523622745773910" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe73f9801fed005cdb5b3e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17549842842132579068" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9657754913143844146" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8187966715283534466" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2857318189239215956" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16519480804077770142" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8704e87b74b9" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a8b7" + }, + { + "_tag": "ByteArray", + "bytearray": "9926" + }, + { + "_tag": "ByteArray", + "bytearray": "64a6062a57" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11292354845010755908" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "530f6ef48df6" + }, + { + "_tag": "ByteArray", + "bytearray": "a0b8d7844ccfc022269e" + }, + { + "_tag": "ByteArray", + "bytearray": "7701f574f0e7698069" + }, + { + "_tag": "ByteArray", + "bytearray": "d147" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "985130078257255579" + } + } + ] + }, + "cborHex": "9fbf4805040684fdb1c5aa4384885e421a344778e264fa7c76c14440fe13164315e912418a1bfffffffffffffff443b100b305ffd87b9f80ff43014f779fbf1be3fa49b2b91997564bfe73f9801fed005cdb5b3e1bf38d9114f53e82fc1b86073cecadb8ed32ff9f1b71a180588932728241fe1b27a73bc11fdda7541be540fc4470f0959e468704e87b74b9ff9f42a8b74299264564a6062a57ffd8669f1b9cb680e6ee8701449f46530f6ef48df64aa0b8d7844ccfc022269e497701f574f0e769806942d147ffffff1b0dabe2963413949bff", + "cborBytes": [ + 159, 191, 72, 5, 4, 6, 132, 253, 177, 197, 170, 67, 132, 136, 94, 66, 26, 52, 71, 120, 226, 100, 250, 124, 118, + 193, 68, 64, 254, 19, 22, 67, 21, 233, 18, 65, 138, 27, 255, 255, 255, 255, 255, 255, 255, 244, 67, 177, 0, 179, + 5, 255, 216, 123, 159, 128, 255, 67, 1, 79, 119, 159, 191, 27, 227, 250, 73, 178, 185, 25, 151, 86, 75, 254, 115, + 249, 128, 31, 237, 0, 92, 219, 91, 62, 27, 243, 141, 145, 20, 245, 62, 130, 252, 27, 134, 7, 60, 236, 173, 184, + 237, 50, 255, 159, 27, 113, 161, 128, 88, 137, 50, 114, 130, 65, 254, 27, 39, 167, 59, 193, 31, 221, 167, 84, 27, + 229, 64, 252, 68, 112, 240, 149, 158, 70, 135, 4, 232, 123, 116, 185, 255, 159, 66, 168, 183, 66, 153, 38, 69, + 100, 166, 6, 42, 87, 255, 216, 102, 159, 27, 156, 182, 128, 230, 238, 135, 1, 68, 159, 70, 83, 15, 110, 244, 141, + 246, 74, 160, 184, 215, 132, 76, 207, 192, 34, 38, 158, 73, 119, 1, 245, 116, 240, 231, 105, 128, 105, 66, 209, + 71, 255, 255, 255, 27, 13, 171, 226, 150, 52, 19, 148, 155, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2113, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14979479366532067915" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f15fe1624bfb7909" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13428453185883986506" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10213413796396681315" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "402427986040181fd66dbe6c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8815668697758532639" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3e42517eb740e4fd1076357" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95cf1ff49b95f8ee1f89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ac0" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bcfe1cd1e826ff24b9fbf48f15fe1624bfb79091bba5b73068b93da4aff1b8dbd55bc1e4c4863bf4c402427986040181fd66dbe6c1b7a578bf9236d841f41814ce3e42517eb740e4fd10763574a95cf1ff49b95f8ee1f89421ac0ffffff", + "cborBytes": [ + 159, 27, 207, 225, 205, 30, 130, 111, 242, 75, 159, 191, 72, 241, 95, 225, 98, 75, 251, 121, 9, 27, 186, 91, 115, + 6, 139, 147, 218, 74, 255, 27, 141, 189, 85, 188, 30, 76, 72, 99, 191, 76, 64, 36, 39, 152, 96, 64, 24, 31, 214, + 109, 190, 108, 27, 122, 87, 139, 249, 35, 109, 132, 31, 65, 129, 76, 227, 228, 37, 23, 235, 116, 14, 79, 209, 7, + 99, 87, 74, 149, 207, 31, 244, 155, 149, 248, 238, 31, 137, 66, 26, 192, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2114, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11204401474931189348" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b9b7e07c72a22e66480ffff", + "cborBytes": [159, 216, 102, 159, 27, 155, 126, 7, 199, 42, 34, 230, 100, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2115, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dcfbfc03010501fbf9fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ddcd92c8a74efbb2d6983" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8319476069251573481" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13828524495842996206" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17891424458184134843" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3930" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ca831a53" + }, + { + "_tag": "ByteArray", + "bytearray": "004c9496" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + "cborHex": "9fbf004adcfbfc03010501fbf9fe0614104b1ddcd92c8a74efbb2d69831b7374b768111a66e91bbfe8c9c326826fee1bf84b1bc07bcd10bb423930ff44ca831a5344004c949602ff", + "cborBytes": [ + 159, 191, 0, 74, 220, 251, 252, 3, 1, 5, 1, 251, 249, 254, 6, 20, 16, 75, 29, 220, 217, 44, 138, 116, 239, 187, + 45, 105, 131, 27, 115, 116, 183, 104, 17, 26, 102, 233, 27, 191, 232, 201, 195, 38, 130, 111, 238, 27, 248, 75, + 27, 192, 123, 205, 16, 187, 66, 57, 48, 255, 68, 202, 131, 26, 83, 68, 0, 76, 148, 150, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2116, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13609541170283653691" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc9e10f6e399953640114a0c" + } + } + ] + } + ] + }, + "cborHex": "9fbf1bbcdecd9682cfaa3b4cdc9e10f6e399953640114a0cffff", + "cborBytes": [ + 159, 191, 27, 188, 222, 205, 150, 130, 207, 170, 59, 76, 220, 158, 16, 246, 227, 153, 149, 54, 64, 17, 74, 12, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2117, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6320830419566612480" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d50562835f67d5f3c5c6e7" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b57b819c703c050004bd50562835f67d5f3c5c6e7ffff", + "cborBytes": [ + 159, 191, 27, 87, 184, 25, 199, 3, 192, 80, 0, 75, 213, 5, 98, 131, 95, 103, 213, 243, 197, 198, 231, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2118, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "820314b61492" + }, + { + "_tag": "ByteArray", + "bytearray": "1172f6d43f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "401326459336724394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3991277297012712763" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14863650813963336418" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc5c2e409ab13775129184c4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15372285253434538927" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1eea9cb5943bd66903" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16277998951170652154" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc6916f619b657" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17327554788961139132" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15984896834730816771" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18035403797425582318" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17767823772481713342" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "48140096afceffbaa4cea639" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + }, + "cborHex": "9f9f46820314b61492451172f6d43fbf1b0591cc49d7bb0faa1b3763dd8e1086253b1bce464baa0fbafae24ccc5c2e409ab13775129184c41bd55553fdfcf0fbaf491eea9cb5943bd669031be1e711cd32b537fa47cc6916f619b6571bf077d7467625b9bc1bddd5c2fac56575031bfa4aa032b64870ee1bf693fd95468374beff4c48140096afceffbaa4cea639ff11ff", + "cborBytes": [ + 159, 159, 70, 130, 3, 20, 182, 20, 146, 69, 17, 114, 246, 212, 63, 191, 27, 5, 145, 204, 73, 215, 187, 15, 170, + 27, 55, 99, 221, 142, 16, 134, 37, 59, 27, 206, 70, 75, 170, 15, 186, 250, 226, 76, 204, 92, 46, 64, 154, 177, 55, + 117, 18, 145, 132, 196, 27, 213, 85, 83, 253, 252, 240, 251, 175, 73, 30, 234, 156, 181, 148, 59, 214, 105, 3, 27, + 225, 231, 17, 205, 50, 181, 55, 250, 71, 204, 105, 22, 246, 25, 182, 87, 27, 240, 119, 215, 70, 118, 37, 185, 188, + 27, 221, 213, 194, 250, 197, 101, 117, 3, 27, 250, 74, 160, 50, 182, 72, 112, 238, 27, 246, 147, 253, 149, 70, + 131, 116, 190, 255, 76, 72, 20, 0, 150, 175, 206, 255, 186, 164, 206, 166, 57, 255, 17, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2119, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13358845183645449194" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ab3ff843f" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10370107882542552864" + } + }, + { + "_tag": "ByteArray", + "bytearray": "93" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "25e25e53a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1a0d5de5ddf3e85" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2a3ae9f0bbdc3d2c9cd7dab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14978a6087" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf1a21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1098709684459971325" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3ab57d23725c22c43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71dc1e3412da729e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7ed847d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15190573558689301887" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "22e54ca2" + }, + { + "_tag": "ByteArray", + "bytearray": "e46ed9d70d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11073791663923098484" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a2fe12ffce62ba0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1905373359871703020" + } + } + ] + }, + "cborHex": "9fbf1bb96426ea949ffbea459ab3ff843fff9f9f1b8fea062d0d6d57204193ffbf4525e25e53a848a1a0d5de5ddf3e854cb2a3ae9f0bbdc3d2c9cd7dab4514978a608743cf1a211b0f3f66a30584a2fd49d3ab57d23725c22c434871dc1e3412da729e44f7ed847d1bd2cfc22b241e057fff4422e54ca245e46ed9d70dff1b99ae02d8ccd17374480a2fe12ffce62ba01b1a713ef9c7a537ecff", + "cborBytes": [ + 159, 191, 27, 185, 100, 38, 234, 148, 159, 251, 234, 69, 154, 179, 255, 132, 63, 255, 159, 159, 27, 143, 234, 6, + 45, 13, 109, 87, 32, 65, 147, 255, 191, 69, 37, 226, 94, 83, 168, 72, 161, 160, 213, 222, 93, 223, 62, 133, 76, + 178, 163, 174, 159, 11, 189, 195, 210, 201, 205, 125, 171, 69, 20, 151, 138, 96, 135, 67, 207, 26, 33, 27, 15, 63, + 102, 163, 5, 132, 162, 253, 73, 211, 171, 87, 210, 55, 37, 194, 44, 67, 72, 113, 220, 30, 52, 18, 218, 114, 158, + 68, 247, 237, 132, 125, 27, 210, 207, 194, 43, 36, 30, 5, 127, 255, 68, 34, 229, 76, 162, 69, 228, 110, 217, 215, + 13, 255, 27, 153, 174, 2, 216, 204, 209, 115, 116, 72, 10, 47, 225, 47, 252, 230, 43, 160, 27, 26, 113, 62, 249, + 199, 165, 55, 236, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2120, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2359697036617762610" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "344715631485597533" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3454148114201008533" + } + }, + { + "_tag": "ByteArray", + "bytearray": "560b9b069d926cfcddc1f9" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e592a260" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72626af25143e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea5799d5c101023b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f261bf" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16963582423432701614" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6483490499963662802" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8331232733007668552" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9101724151439985015" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "662a0effba0c11662c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11085351553151410620" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "752c9c" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b20bf53f3dd24c7329f9f1b04c8ad0a5b39375d1b2fef9968b48959954b560b9b069d926cfcddc1f9ffbf44e592a2604772626af25143e248ea5799d5c101023b43f261bfff1beb6ac05652c426aeffff9fbf1b59f9fc423af431d21b739e7c07a80765481b7e4fd1e48a2c897749662a0effba0c11662c1b99d714813fea21bc43752c9cffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 32, 191, 83, 243, 221, 36, 199, 50, 159, 159, 27, 4, 200, 173, 10, 91, 57, 55, 93, 27, 47, + 239, 153, 104, 180, 137, 89, 149, 75, 86, 11, 155, 6, 157, 146, 108, 252, 221, 193, 249, 255, 191, 68, 229, 146, + 162, 96, 71, 114, 98, 106, 242, 81, 67, 226, 72, 234, 87, 153, 213, 193, 1, 2, 59, 67, 242, 97, 191, 255, 27, 235, + 106, 192, 86, 82, 196, 38, 174, 255, 255, 159, 191, 27, 89, 249, 252, 66, 58, 244, 49, 210, 27, 115, 158, 124, 7, + 168, 7, 101, 72, 27, 126, 79, 209, 228, 138, 44, 137, 119, 73, 102, 42, 14, 255, 186, 12, 17, 102, 44, 27, 153, + 215, 20, 129, 63, 234, 33, 188, 67, 117, 44, 156, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2121, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff04" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + }, + "cborHex": "9f0542ff04a013ff", + "cborBytes": [159, 5, 66, 255, 4, 160, 19, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2122, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "55f6afc4376badfdc4" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18298987101300472669" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10210991652986051721" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14955482130725770877" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14124837452617466784" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6424785197999067970" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c02365d70cadda273978cae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7746856656154427993" + } + } + } + ] + } + ] + }, + "cborHex": "9f4955f6afc4376badfdc480d8669f1bfdf30fd102783b5d9f1b8db4bacee8b65c891bcf8c8bc2a69c967dffffbf1bc40580d39965c3a01b59296c18fcec13424c6c02365d70cadda273978cae1b6b825d158bf48259ffff", + "cborBytes": [ + 159, 73, 85, 246, 175, 196, 55, 107, 173, 253, 196, 128, 216, 102, 159, 27, 253, 243, 15, 209, 2, 120, 59, 93, + 159, 27, 141, 180, 186, 206, 232, 182, 92, 137, 27, 207, 140, 139, 194, 166, 156, 150, 125, 255, 255, 191, 27, + 196, 5, 128, 211, 153, 101, 195, 160, 27, 89, 41, 108, 24, 252, 236, 19, 66, 76, 108, 2, 54, 93, 112, 202, 221, + 162, 115, 151, 140, 174, 27, 107, 130, 93, 21, 139, 244, 130, 89, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2123, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "841620629fd848a4b86f3c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02e10ef2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1dd78e0af1a6bc98651fdf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "014ec785bb197eaf40742a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b3c4153" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8993c91d76b5bf5f0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "960f12bfd6d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15452850333869301920" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b610248f249f44a0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df4817" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff8312433d9615d8ef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47c4af" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d20aaf7cd28d86d764" + } + ] + } + ] + }, + "cborHex": "9f4b841620629fd848a4b86f3c9fbf4402e10ef24b1dd78e0af1a6bc98651fdf41144b014ec785bb197eaf40742a448b3c415349e8993c91d76b5bf5f046960f12bfd6d01bd6738d81858e60a048b610248f249f44a043df481749ff8312433d9615d8ef4347c4afff49d20aaf7cd28d86d764ffff", + "cborBytes": [ + 159, 75, 132, 22, 32, 98, 159, 216, 72, 164, 184, 111, 60, 159, 191, 68, 2, 225, 14, 242, 75, 29, 215, 142, 10, + 241, 166, 188, 152, 101, 31, 223, 65, 20, 75, 1, 78, 199, 133, 187, 25, 126, 175, 64, 116, 42, 68, 139, 60, 65, + 83, 73, 232, 153, 60, 145, 215, 107, 91, 245, 240, 70, 150, 15, 18, 191, 214, 208, 27, 214, 115, 141, 129, 133, + 142, 96, 160, 72, 182, 16, 36, 143, 36, 159, 68, 160, 67, 223, 72, 23, 73, 255, 131, 18, 67, 61, 150, 21, 216, + 239, 67, 71, 196, 175, 255, 73, 210, 10, 175, 124, 210, 141, 134, 215, 100, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2124, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8437836466839802454" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "53" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1703850421222157522" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9325408477745134969" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6121128853517803899" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09643a70" + }, + { + "_tag": "ByteArray", + "bytearray": "1b286f306fcdfa7b4cd1dda1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3560963883378242554" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f2cb7c93c219f4" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7554528213183694087" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14994090410133877361" + } + }, + { + "_tag": "ByteArray", + "bytearray": "23e16a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18316221644258037294" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4888484112294670417" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0adbfb3134e9b27d19" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95619c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b39bbfa5b6ec6bee7c27077" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13721685670782515698" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "887cb6bfcfe8a9" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7519378f9ed2d2569fbf41531b17a54aee4358acd2ffd8669f1b816a819a356a3d799f1b54f29e42da52a17b4409643a704c1b286f306fcdfa7b4cd1dda11b316b15c8fec173fa47f2cb7c93c219f4ffffd8669f1b68d71362607b05079f41c71bd015b5c9321ef2714323e16a1bfe304a8abd524e2e1b43d762665b76f051ffffffffbf490adbfb3134e9b27d194395619c4c7b39bbfa5b6ec6bee7c270771bbe6d386abe8f39f241de47887cb6bfcfe8a9ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 117, 25, 55, 143, 158, 210, 210, 86, 159, 191, 65, 83, 27, 23, 165, 74, 238, 67, 88, 172, + 210, 255, 216, 102, 159, 27, 129, 106, 129, 154, 53, 106, 61, 121, 159, 27, 84, 242, 158, 66, 218, 82, 161, 123, + 68, 9, 100, 58, 112, 76, 27, 40, 111, 48, 111, 205, 250, 123, 76, 209, 221, 161, 27, 49, 107, 21, 200, 254, 193, + 115, 250, 71, 242, 203, 124, 147, 194, 25, 244, 255, 255, 216, 102, 159, 27, 104, 215, 19, 98, 96, 123, 5, 7, 159, + 65, 199, 27, 208, 21, 181, 201, 50, 30, 242, 113, 67, 35, 225, 106, 27, 254, 48, 74, 138, 189, 82, 78, 46, 27, 67, + 215, 98, 102, 91, 118, 240, 81, 255, 255, 255, 255, 191, 73, 10, 219, 251, 49, 52, 233, 178, 125, 25, 67, 149, 97, + 156, 76, 123, 57, 187, 250, 91, 110, 198, 190, 231, 194, 112, 119, 27, 190, 109, 56, 106, 190, 143, 57, 242, 65, + 222, 71, 136, 124, 182, 191, 207, 232, 169, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2125, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3885334417" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b26bdc05a045791c08f9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14027880517232265060" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "82a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2139645473396983956" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + } + ] + } + ] + }, + "cborHex": "9fa0bf4538853344174ab26bdc05a045791c08f9ffd8669f1bfffffffffffffff19fd8669f1bc2ad0b01ed40876480ffffffbf4282a91b1db18c38c319889442f4fb0effff", + "cborBytes": [ + 159, 160, 191, 69, 56, 133, 51, 68, 23, 74, 178, 107, 220, 5, 160, 69, 121, 28, 8, 249, 255, 216, 102, 159, 27, + 255, 255, 255, 255, 255, 255, 255, 241, 159, 216, 102, 159, 27, 194, 173, 11, 1, 237, 64, 135, 100, 128, 255, 255, + 255, 191, 66, 130, 169, 27, 29, 177, 140, 56, 195, 25, 136, 148, 66, 244, 251, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2126, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6408094594861021428" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "16e92dee010f" + }, + { + "_tag": "ByteArray", + "bytearray": "98" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11509693323825877413" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10695753429341725239" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6361679674002020208" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11572933578027200062" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1248972011568005166" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "201683864987575283" + } + } + ] + }, + "cborHex": "9f9f9f1b58ee20151dcab8f4ff9f4616e92dee010f4198ff1b9fbaa518d85391a59f1b946ef313511462371b584939f537b697701ba09b51c5ef806e3e1b11553d6d5bea802effff1b02cc8668198323f3ff", + "cborBytes": [ + 159, 159, 159, 27, 88, 238, 32, 21, 29, 202, 184, 244, 255, 159, 70, 22, 233, 45, 238, 1, 15, 65, 152, 255, 27, + 159, 186, 165, 24, 216, 83, 145, 165, 159, 27, 148, 110, 243, 19, 81, 20, 98, 55, 27, 88, 73, 57, 245, 55, 182, + 151, 112, 27, 160, 155, 81, 197, 239, 128, 110, 62, 27, 17, 85, 61, 109, 91, 234, 128, 46, 255, 255, 27, 2, 204, + 134, 104, 25, 131, 35, 243, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2127, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "495311841639700331" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "750871198312582708" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15455562465136169931" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8193544244651398329" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11741971586899359567" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11268079514057647066" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93795394d3cee3be01fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14011272962763536200" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7025855339494028325" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "20d36bac0ddb4f2eb5e35a85" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13609561462150796142" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14378064478909324236" + } + } + ] + }, + "cborHex": "9fbf1b06dfb37ee5fa976b417b1b0a6ba160677e4e341bd67d302cca4d53cb1b71b5511449e494b91ba2f3dcf257ddb74f1b9c60429e004323da4a93795394d3cee3be01fe1bc2720a86548e37481b6180da34e9d2b425ff9f4c20d36bac0ddb4f2eb5e35a851bbcdee00b1458136eff1bc78925771f0d5bccff", + "cborBytes": [ + 159, 191, 27, 6, 223, 179, 126, 229, 250, 151, 107, 65, 123, 27, 10, 107, 161, 96, 103, 126, 78, 52, 27, 214, 125, + 48, 44, 202, 77, 83, 203, 27, 113, 181, 81, 20, 73, 228, 148, 185, 27, 162, 243, 220, 242, 87, 221, 183, 79, 27, + 156, 96, 66, 158, 0, 67, 35, 218, 74, 147, 121, 83, 148, 211, 206, 227, 190, 1, 254, 27, 194, 114, 10, 134, 84, + 142, 55, 72, 27, 97, 128, 218, 52, 233, 210, 180, 37, 255, 159, 76, 32, 211, 107, 172, 13, 219, 79, 46, 181, 227, + 90, 133, 27, 188, 222, 224, 11, 20, 88, 19, 110, 255, 27, 199, 137, 37, 119, 31, 13, 91, 204, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2128, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f4de252" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18258a87250bea6508" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abe20049" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16750459584341274013" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5aae7628" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5376351a52ae5fff2a7139" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e24adca07762475f492" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15658651176546375437" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "634993db21" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd548bd8a038cd" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ebe3bb443ec0c056b8509a80" + }, + { + "_tag": "ByteArray", + "bytearray": "3b57" + }, + { + "_tag": "ByteArray", + "bytearray": "31" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16694888330064040001" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13274061493914225639" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00d96d5ff38f8acaeea2f61f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e9891d87a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59c58892f9c242f544bc5e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c350a8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "714d3c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a22" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efe2fd747c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17474857307847444016" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2557430067151212930" + } + } + ] + } + ] + }, + "cborHex": "9f9fbf4203a4440f4de2524918258a87250bea650844abe20049414c1be875963e8532ed9d445aae76284b5376351a52ae5fff2a71394a5e24adca07762475f4921bd94eb4482fcc970d45634993db2147dd548bd8a038cdff9f4cebe3bb443ec0c056b8509a80423b574131ffbf1be7b0287b9e4810411bb836f0998772cbe7ffbf4c00d96d5ff38f8acaeea2f61f458e9891d87a4b59c58892f9c242f544bc5e43c350a843714d3c422a2245efe2fd747c1bf2832a22bee2c630ff1b237dd118a2739182ffff", + "cborBytes": [ + 159, 159, 191, 66, 3, 164, 68, 15, 77, 226, 82, 73, 24, 37, 138, 135, 37, 11, 234, 101, 8, 68, 171, 226, 0, 73, + 65, 76, 27, 232, 117, 150, 62, 133, 50, 237, 157, 68, 90, 174, 118, 40, 75, 83, 118, 53, 26, 82, 174, 95, 255, 42, + 113, 57, 74, 94, 36, 173, 202, 7, 118, 36, 117, 244, 146, 27, 217, 78, 180, 72, 47, 204, 151, 13, 69, 99, 73, 147, + 219, 33, 71, 221, 84, 139, 216, 160, 56, 205, 255, 159, 76, 235, 227, 187, 68, 62, 192, 192, 86, 184, 80, 154, + 128, 66, 59, 87, 65, 49, 255, 191, 27, 231, 176, 40, 123, 158, 72, 16, 65, 27, 184, 54, 240, 153, 135, 114, 203, + 231, 255, 191, 76, 0, 217, 109, 95, 243, 143, 138, 202, 238, 162, 246, 31, 69, 142, 152, 145, 216, 122, 75, 89, + 197, 136, 146, 249, 194, 66, 245, 68, 188, 94, 67, 195, 80, 168, 67, 113, 77, 60, 66, 42, 34, 69, 239, 226, 253, + 116, 124, 27, 242, 131, 42, 34, 190, 226, 198, 48, 255, 27, 35, 125, 209, 24, 162, 115, 145, 130, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2129, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14585785190572281429" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cbf85d7b47e70f3b02" + }, + { + "_tag": "ByteArray", + "bytearray": "a2d991dfddb25a" + }, + { + "_tag": "ByteArray", + "bytearray": "4131a9cd5b6b" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18277764518931024533" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "196835154939143445" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14730633310376718382" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b3ff5f082d394a9b" + }, + { + "_tag": "ByteArray", + "bytearray": "ff71c190dbca125595d3b6" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f1bca6b1e5a1e36ce5549cbf85d7b47e70f3b0247a2d991dfddb25a464131a9cd5b6bffd8669f1bfda7a9fd7f1f4a959f1b02bb4c87d174e5151bcc6db8f3158a702e48b3ff5f082d394a9b4bff71c190dbca125595d3b6ffffffff", + "cborBytes": [ + 159, 159, 159, 27, 202, 107, 30, 90, 30, 54, 206, 85, 73, 203, 248, 93, 123, 71, 231, 15, 59, 2, 71, 162, 217, + 145, 223, 221, 178, 90, 70, 65, 49, 169, 205, 91, 107, 255, 216, 102, 159, 27, 253, 167, 169, 253, 127, 31, 74, + 149, 159, 27, 2, 187, 76, 135, 209, 116, 229, 21, 27, 204, 109, 184, 243, 21, 138, 112, 46, 72, 179, 255, 95, 8, + 45, 57, 74, 155, 75, 255, 113, 193, 144, 219, 202, 18, 85, 149, 211, 182, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2130, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13743480515848191323" + } + } + ] + }, + "cborHex": "9f091bbebaa6b68ca23d5bff", + "cborBytes": [159, 9, 27, 190, 186, 166, 182, 140, 162, 61, 91, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2131, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11082669858907896693" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d2431e7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "602fab1a1cea9f94fcdaaa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1050753415609729797" + } + } + } + ] + } + ] + }, + "cborHex": "9fa0bf1b99cd8d84a7223b75444d2431e74b602fab1a1cea9f94fcdaaa1b0e9506aa13f24305ffff", + "cborBytes": [ + 159, 160, 191, 27, 153, 205, 141, 132, 167, 34, 59, 117, 68, 77, 36, 49, 231, 75, 96, 47, 171, 26, 28, 234, 159, + 148, 252, 218, 170, 27, 14, 149, 6, 170, 19, 242, 67, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2132, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "10" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17072730040323868824" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2aee77" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e344de9e6a056cfd2f27" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cbcc3f413af6f2c0cbd7979" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17251261670697618985" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "405e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebc668967b1a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff71c462" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13404592523808336543" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18434601328903963521" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14242141481019156454" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9682836217183182130" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12954489153513661277" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dc95cf1ebce265828aad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16280714405884041753" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b571591b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7199181646694183639" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf3ca6c778c6fa3421df" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5da6d70e" + } + ] + } + ] + }, + "cborHex": "9fa04110d8669f1becee858437a508989f432aee77bf41274ae344de9e6a056cfd2f274c3cbcc3f413af6f2c0cbd79791bef68cb16a13e4e2942405e46ebc668967b1a44ff71c4621bba06ade13c73ea9fffd8669f1bffd4dc3ce943c3819f1bc5a640380900a7e61b8660583cd77d9d32ffffd8669f1bb3c7973fd1d5235d9f4adc95cf1ebce265828aad1be1f0b77e444d9a19452b571591b71b63e8a19094b7f2d74abf3ca6c778c6fa3421dfffff445da6d70effffff", + "cborBytes": [ + 159, 160, 65, 16, 216, 102, 159, 27, 236, 238, 133, 132, 55, 165, 8, 152, 159, 67, 42, 238, 119, 191, 65, 39, 74, + 227, 68, 222, 158, 106, 5, 108, 253, 47, 39, 76, 60, 188, 195, 244, 19, 175, 111, 44, 12, 189, 121, 121, 27, 239, + 104, 203, 22, 161, 62, 78, 41, 66, 64, 94, 70, 235, 198, 104, 150, 123, 26, 68, 255, 113, 196, 98, 27, 186, 6, + 173, 225, 60, 115, 234, 159, 255, 216, 102, 159, 27, 255, 212, 220, 60, 233, 67, 195, 129, 159, 27, 197, 166, 64, + 56, 9, 0, 167, 230, 27, 134, 96, 88, 60, 215, 125, 157, 50, 255, 255, 216, 102, 159, 27, 179, 199, 151, 63, 209, + 213, 35, 93, 159, 74, 220, 149, 207, 30, 188, 226, 101, 130, 138, 173, 27, 225, 240, 183, 126, 68, 77, 154, 25, + 69, 43, 87, 21, 145, 183, 27, 99, 232, 161, 144, 148, 183, 242, 215, 74, 191, 60, 166, 199, 120, 198, 250, 52, 33, + 223, 255, 255, 68, 93, 166, 215, 14, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2133, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9e8e7ab9d80dc1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6178147724096788715" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13126953568518245470" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6264307048338191056" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "292641b8b33b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7474176859092180263" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2bcb3d7146" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12984317434869967583" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cec6d45b4f01ffc8" + } + } + ] + } + ] + }, + "cborHex": "9f479e8e7ab9d80dc1bf1b55bd309f30ad58eb1bb62c4eb892938c5e1b56ef4a121c2c72d046292641b8b33b1b67b99c40e2a25d27452bcb3d71461bb4318fe9c455eadf48cec6d45b4f01ffc8ffff", + "cborBytes": [ + 159, 71, 158, 142, 122, 185, 216, 13, 193, 191, 27, 85, 189, 48, 159, 48, 173, 88, 235, 27, 182, 44, 78, 184, 146, + 147, 140, 94, 27, 86, 239, 74, 18, 28, 44, 114, 208, 70, 41, 38, 65, 184, 179, 59, 27, 103, 185, 156, 64, 226, + 162, 93, 39, 69, 43, 203, 61, 113, 70, 27, 180, 49, 143, 233, 196, 85, 234, 223, 72, 206, 198, 212, 91, 79, 1, + 255, 200, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2134, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ef97cc24114c341948f5a6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5283323289619883951" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5836419998556068488" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4319496995992757427" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2392187800767148555" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7766d4bd722d88155efe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5573064576105181843" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1348246554443318759" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9354865379824123462" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99c89f5650" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13778068133994292885" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "149ccf45fd" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4bef97cc24114c341948f5a6d8669f1b4952228a275767af9fd8669f1b50ff2110e5eb9a889f1b3bf1efa1d683e4b3ffffbf1b2132c22164bfb20b4a7766d4bd722d88155efe1b4d5780b4610ff2931b12b5ef19133d05e71b81d3287fae043e464599c89f56501bbf3587f7f1dbe69545149ccf45fdffffffff", + "cborBytes": [ + 159, 75, 239, 151, 204, 36, 17, 76, 52, 25, 72, 245, 166, 216, 102, 159, 27, 73, 82, 34, 138, 39, 87, 103, 175, + 159, 216, 102, 159, 27, 80, 255, 33, 16, 229, 235, 154, 136, 159, 27, 59, 241, 239, 161, 214, 131, 228, 179, 255, + 255, 191, 27, 33, 50, 194, 33, 100, 191, 178, 11, 74, 119, 102, 212, 189, 114, 45, 136, 21, 94, 254, 27, 77, 87, + 128, 180, 97, 15, 242, 147, 27, 18, 181, 239, 25, 19, 61, 5, 231, 27, 129, 211, 40, 127, 174, 4, 62, 70, 69, 153, + 200, 159, 86, 80, 27, 191, 53, 135, 247, 241, 219, 230, 149, 69, 20, 156, 207, 69, 253, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2135, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ae5a9e3fd458f0ed0d184f" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "32a65d" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffffe9f9f4bae5a9e3fd458f0ed0d184fffffffd905069f4332a65dffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 159, 75, 174, 90, 158, 63, 212, 88, 240, 237, + 13, 24, 79, 255, 255, 255, 217, 5, 6, 159, 67, 50, 166, 93, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2136, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + }, + "cborHex": "9f0207ff", + "cborBytes": [159, 2, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2137, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "21c3fc52" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15134466132944626077" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13433934954363894615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f495de78ff2ae9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5336995831244539566" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15157584917192222090" + } + }, + { + "_tag": "ByteArray", + "bytearray": "30ea4a" + }, + { + "_tag": "ByteArray", + "bytearray": "9aca7c729c773cd1b641a370" + }, + { + "_tag": "ByteArray", + "bytearray": "eac625c6a137" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14197811689000263184" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8328534746608636523" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f11a2c276c73562bc546" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a109296404b9b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17196618800721134966" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15520932576016570756" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2844069203047725179" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4421c3fc52d8669f1bd2086cc31758219d9f80d8669f1bba6eecaa3a903b579f47f495de78ff2ae91b4a10d16e911246aeffff9f1bd25a8f2c820fa58a4330ea4a4c9aca7c729c773cd1b641a37046eac625c6a1371bc508c28206bfde10ffffff9fbf1b7394e639bf1b126b4af11a2c276c73562bc546472a109296404b9b1beea6a9b00ac9857641c81bd7656df1c841998441d11b277829df2449b87bffffff", + "cborBytes": [ + 159, 68, 33, 195, 252, 82, 216, 102, 159, 27, 210, 8, 108, 195, 23, 88, 33, 157, 159, 128, 216, 102, 159, 27, 186, + 110, 236, 170, 58, 144, 59, 87, 159, 71, 244, 149, 222, 120, 255, 42, 233, 27, 74, 16, 209, 110, 145, 18, 70, 174, + 255, 255, 159, 27, 210, 90, 143, 44, 130, 15, 165, 138, 67, 48, 234, 74, 76, 154, 202, 124, 114, 156, 119, 60, + 209, 182, 65, 163, 112, 70, 234, 198, 37, 198, 161, 55, 27, 197, 8, 194, 130, 6, 191, 222, 16, 255, 255, 255, 159, + 191, 27, 115, 148, 230, 57, 191, 27, 18, 107, 74, 241, 26, 44, 39, 108, 115, 86, 43, 197, 70, 71, 42, 16, 146, + 150, 64, 75, 155, 27, 238, 166, 169, 176, 10, 201, 133, 118, 65, 200, 27, 215, 101, 109, 241, 200, 65, 153, 132, + 65, 209, 27, 39, 120, 41, 223, 36, 73, 184, 123, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2138, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17032693983976039996" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70ed5e" + } + } + ] + } + ] + }, + "cborHex": "9fbf1bec6048ef72d3263c4370ed5effff", + "cborBytes": [159, 191, 27, 236, 96, 72, 239, 114, 211, 38, 60, 67, 112, 237, 94, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2139, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1164770179409390901" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8408908451980963386" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3052" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4599501514615415924" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6607370851564997966" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1342371065795278290" + } + } + ] + } + ] + }, + "cborHex": "9f1b102a184e94aa2d35a0d8669f1b74b271af4d1aee3a9f071bfffffffffffffff5ffff423052d8669f1b3fd4b6422285e4749fd8669f1b5bb218c83acd4d4e80ff1b12a10f5f457d75d2ffffff", + "cborBytes": [ + 159, 27, 16, 42, 24, 78, 148, 170, 45, 53, 160, 216, 102, 159, 27, 116, 178, 113, 175, 77, 26, 238, 58, 159, 7, + 27, 255, 255, 255, 255, 255, 255, 255, 245, 255, 255, 66, 48, 82, 216, 102, 159, 27, 63, 212, 182, 66, 34, 133, + 228, 116, 159, 216, 102, 159, 27, 91, 178, 24, 200, 58, 205, 77, 78, 128, 255, 27, 18, 161, 15, 95, 69, 125, 117, + 210, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2140, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5a48729a32c7fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f9f475a48729a32c7fd1bfffffffffffffff7d87980d8669f1bfffffffffffffff380ffffff", + "cborBytes": [ + 159, 159, 71, 90, 72, 114, 154, 50, 199, 253, 27, 255, 255, 255, 255, 255, 255, 255, 247, 216, 121, 128, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2141, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2607492882445871780" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3549024396803679162" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9821006748004926326" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cfbfe01" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de07fd472104f80301" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "168c43cd80cfa0d2a1" + } + } + ] + } + ] + }, + "cborHex": "9f1b242facf6248baaa4bf1b3140aae2a6ada3ba111b884b399a778c4376441cfbfe0149de07fd472104f8030149168c43cd80cfa0d2a1ffff", + "cborBytes": [ + 159, 27, 36, 47, 172, 246, 36, 139, 170, 164, 191, 27, 49, 64, 170, 226, 166, 173, 163, 186, 17, 27, 136, 75, 57, + 154, 119, 140, 67, 118, 68, 28, 251, 254, 1, 73, 222, 7, 253, 71, 33, 4, 248, 3, 1, 73, 22, 140, 67, 205, 128, + 207, 160, 210, 161, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2142, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fc3cfe" + } + ] + }, + "cborHex": "9f43fc3cfeff", + "cborBytes": [159, 67, 252, 60, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2143, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6379705579136180866" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0afac4c0c9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bf78b0f58a44" + }, + { + "_tag": "ByteArray", + "bytearray": "413080ec536a3da3447c" + }, + { + "_tag": "ByteArray", + "bytearray": "095cb62636242c6c4cb2c634" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8503877552256376446" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + }, + "cborHex": "9fd8669f1b5889446c4ffd62829f450afac4c0c91bfffffffffffffffb9f46bf78b0f58a444a413080ec536a3da3447c4c095cb62636242c6c4cb2c6341b7603d7940ba8de7effffff13ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 88, 137, 68, 108, 79, 253, 98, 130, 159, 69, 10, 250, 196, 192, 201, 27, 255, 255, 255, + 255, 255, 255, 255, 251, 159, 70, 191, 120, 176, 245, 138, 68, 74, 65, 48, 128, 236, 83, 106, 61, 163, 68, 124, + 76, 9, 92, 182, 38, 54, 36, 44, 108, 76, 178, 198, 52, 27, 118, 3, 215, 148, 11, 168, 222, 126, 255, 255, 255, 19, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2144, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16284654053173877979" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5e9ee5a073b11f95b501f7b2" + }, + { + "_tag": "ByteArray", + "bytearray": "bfaf4d8b208d2b" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11932902239243325875" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5ab0f25bc9765060" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18361542994705517270" + } + }, + { + "_tag": "ByteArray", + "bytearray": "91b24de52e3a5eb39b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1842413427684818061" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1be1feb694e18ddcdb9f4c5e9ee5a073b11f95b501f7b247bfaf4d8b208d2ba0d8669f1ba59a2f5d058fd1b39f485ab0f25bc97650601bfed14e11ef7c0ad64991b24de52e3a5eb39bffff1b199191403e903c8dffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 225, 254, 182, 148, 225, 141, 220, 219, 159, 76, 94, 158, 229, 160, 115, 177, 31, 149, + 181, 1, 247, 178, 71, 191, 175, 77, 139, 32, 141, 43, 160, 216, 102, 159, 27, 165, 154, 47, 93, 5, 143, 209, 179, + 159, 72, 90, 176, 242, 91, 201, 118, 80, 96, 27, 254, 209, 78, 17, 239, 124, 10, 214, 73, 145, 178, 77, 229, 46, + 58, 94, 179, 155, 255, 255, 27, 25, 145, 145, 64, 62, 144, 60, 141, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2145, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15857084523371993531" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df5eab33892522f3a22e06" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ad1646b118604ea612" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2821184800065402047" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16346735889909635576" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9ebdf11e3b08ffadb716" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17156564374908525567" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6262047df33b3d" + }, + { + "_tag": "ByteArray", + "bytearray": "9da6863782" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17262510330472763953" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2061196748073797014" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14584396327589524780" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15198996157075935822" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1cb6c42185cc7f" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16004970028629161843" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12682128418171687774" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17642122285522089467" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16772497952352478837" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ac3815aac6cf045c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35be72ebbdef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13868341954082191041" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3976d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7cbe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5be98b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13873520920078597920" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d66d3c1d8a180cb2f05f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1482327112045742837" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "772772" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11782381570877405718" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11647768159814377516" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4449086568069733179" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c663" + }, + { + "_tag": "ByteArray", + "bytearray": "69" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7207817857307833545" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2702405d7d48cc53" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1720847662b" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1bdc0fae5c0cee99bb4bdf5eab33892522f3a22e06ff9f49ad1646b118604ea6121b2726dca0dda134bf1be2db45aee33159f8ff4a9ebdf11e3b08ffadb7161bee185c664c8b5bffff9f476262047df33b3d459da68637821bef90c1af53571231d8669f1b1c9ad7858d21059680ff9f1bca662f30417c352c1bd2edae7a2509d24e471cb6c42185cc7fffff80d8669f1bde1d13716d36f7739fd8669f1baffff89a8102935e9f1bf4d568bf288bf5fb414c1be8c3e205edefa675ffffbf490ac3815aac6cf045c54287f94635be72ebbdef1bc0763f8794b736c1433976d8427cbe435be98b1bc088a5c5913c3f204b5d66d3c1d8a180cb2f05f31b149248a79a6acaf5ff9f437727721ba3836d9cec41ba161ba1a52f6dc7d7602cff9f1b3dbe54a950c21b3b42c66341691b640750270e8cf4c9ffbf482702405d7d48cc5346d1720847662bffffffff", + "cborBytes": [ + 159, 159, 191, 27, 220, 15, 174, 92, 12, 238, 153, 187, 75, 223, 94, 171, 51, 137, 37, 34, 243, 162, 46, 6, 255, + 159, 73, 173, 22, 70, 177, 24, 96, 78, 166, 18, 27, 39, 38, 220, 160, 221, 161, 52, 191, 27, 226, 219, 69, 174, + 227, 49, 89, 248, 255, 74, 158, 189, 241, 30, 59, 8, 255, 173, 183, 22, 27, 238, 24, 92, 102, 76, 139, 91, 255, + 255, 159, 71, 98, 98, 4, 125, 243, 59, 61, 69, 157, 166, 134, 55, 130, 27, 239, 144, 193, 175, 83, 87, 18, 49, + 216, 102, 159, 27, 28, 154, 215, 133, 141, 33, 5, 150, 128, 255, 159, 27, 202, 102, 47, 48, 65, 124, 53, 44, 27, + 210, 237, 174, 122, 37, 9, 210, 78, 71, 28, 182, 196, 33, 133, 204, 127, 255, 255, 128, 216, 102, 159, 27, 222, + 29, 19, 113, 109, 54, 247, 115, 159, 216, 102, 159, 27, 175, 255, 248, 154, 129, 2, 147, 94, 159, 27, 244, 213, + 104, 191, 40, 139, 245, 251, 65, 76, 27, 232, 195, 226, 5, 237, 239, 166, 117, 255, 255, 191, 73, 10, 195, 129, + 90, 172, 108, 240, 69, 197, 66, 135, 249, 70, 53, 190, 114, 235, 189, 239, 27, 192, 118, 63, 135, 148, 183, 54, + 193, 67, 57, 118, 216, 66, 124, 190, 67, 91, 233, 139, 27, 192, 136, 165, 197, 145, 60, 63, 32, 75, 93, 102, 211, + 193, 216, 161, 128, 203, 47, 5, 243, 27, 20, 146, 72, 167, 154, 106, 202, 245, 255, 159, 67, 119, 39, 114, 27, + 163, 131, 109, 156, 236, 65, 186, 22, 27, 161, 165, 47, 109, 199, 215, 96, 44, 255, 159, 27, 61, 190, 84, 169, 80, + 194, 27, 59, 66, 198, 99, 65, 105, 27, 100, 7, 80, 39, 14, 140, 244, 201, 255, 191, 72, 39, 2, 64, 93, 125, 72, + 204, 83, 70, 209, 114, 8, 71, 102, 43, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2146, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "657d" + }, + { + "_tag": "ByteArray", + "bytearray": "1e10d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1773148480901796624" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11349264834434602056" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13551087140735451902" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1190431577869978487" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + ] + }, + "cborHex": "9f13d8799f9f42657d431e10d31b189b7d261a2cd3101b9d80b03c664e9448ffd8669f1bbc0f21f52fe682fe80ffff1b1085433680590b771bfffffffffffffff8ff", + "cborBytes": [ + 159, 19, 216, 121, 159, 159, 66, 101, 125, 67, 30, 16, 211, 27, 24, 155, 125, 38, 26, 44, 211, 16, 27, 157, 128, + 176, 60, 102, 78, 148, 72, 255, 216, 102, 159, 27, 188, 15, 33, 245, 47, 230, 130, 254, 128, 255, 255, 27, 16, + 133, 67, 54, 128, 89, 11, 119, 27, 255, 255, 255, 255, 255, 255, 255, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2147, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5256790178366050528" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "724061b02326a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7078008312094517353" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "070404" + } + ] + }, + "cborHex": "9fbf1b48f3ded0c84550e00647724061b02326a71b623a230f17a7e869ff43070404ff", + "cborBytes": [ + 159, 191, 27, 72, 243, 222, 208, 200, 69, 80, 224, 6, 71, 114, 64, 97, 176, 35, 38, 167, 27, 98, 58, 35, 15, 23, + 167, 232, 105, 255, 67, 7, 4, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2148, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18355962874733652664" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e2977029db7c6ea649" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6072123758416136187" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "877289248401214185" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15528028011057289161" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1693807717784728551" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7410902283032829755" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15517864991159076381" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17499648954342912284" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e4ff4b1ea4e1279bfb40f5e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1801576658502575180" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c784b0cccb" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c3dc" + }, + { + "_tag": "ByteArray", + "bytearray": "f87a74" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02e2deb61bc41860e3" + }, + { + "_tag": "ByteArray", + "bytearray": "6efcbb279b56ae" + } + ] + } + ] + }, + "cborHex": "9f1bfebd7afb02c1eab89f49e2977029db7c6ea6491b54448463049a87fb1b0c2cc1ec60394ae9ff1bd77ea3347d6297c99fbf1b17819d25285fb3e71b66d8d05c9d4d9f3b1bd75a87fe0681c61d1bf2db3e01c1a5311c4c8e4ff4b1ea4e1279bfb40f5e1b19007c6cfdae644cffff9f45c784b0cccb9f42c3dc43f87a74ff4902e2deb61bc41860e3476efcbb279b56aeffff", + "cborBytes": [ + 159, 27, 254, 189, 122, 251, 2, 193, 234, 184, 159, 73, 226, 151, 112, 41, 219, 124, 110, 166, 73, 27, 84, 68, + 132, 99, 4, 154, 135, 251, 27, 12, 44, 193, 236, 96, 57, 74, 233, 255, 27, 215, 126, 163, 52, 125, 98, 151, 201, + 159, 191, 27, 23, 129, 157, 37, 40, 95, 179, 231, 27, 102, 216, 208, 92, 157, 77, 159, 59, 27, 215, 90, 135, 254, + 6, 129, 198, 29, 27, 242, 219, 62, 1, 193, 165, 49, 28, 76, 142, 79, 244, 177, 234, 78, 18, 121, 191, 180, 15, 94, + 27, 25, 0, 124, 108, 253, 174, 100, 76, 255, 255, 159, 69, 199, 132, 176, 204, 203, 159, 66, 195, 220, 67, 248, + 122, 116, 255, 73, 2, 226, 222, 182, 27, 196, 24, 96, 227, 71, 110, 252, 187, 39, 155, 86, 174, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2149, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fa080ff", + "cborBytes": [159, 160, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2150, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2470034632465781937" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11552692802764652192" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8ba205c7bdea457c0eff" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3234804663780374816" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3218797836100929743" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25d4d1ad997e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8536347549418226906" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9134057998509142914" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f1b22475369530914b1ffd8669f1ba05368e533ffbea09f9f4a8ba205c7bdea457c0effffffff1b2ce455b3f667f920bf1b2cab7793f89788cf4625d4d1ad997e1b767732de625984da1b7ec2b15af6f3f382ffff", + "cborBytes": [ + 159, 159, 27, 34, 71, 83, 105, 83, 9, 20, 177, 255, 216, 102, 159, 27, 160, 83, 104, 229, 51, 255, 190, 160, 159, + 159, 74, 139, 162, 5, 199, 189, 234, 69, 124, 14, 255, 255, 255, 255, 27, 44, 228, 85, 179, 246, 103, 249, 32, + 191, 27, 44, 171, 119, 147, 248, 151, 136, 207, 70, 37, 212, 209, 173, 153, 126, 27, 118, 119, 50, 222, 98, 89, + 132, 218, 27, 126, 194, 177, 90, 246, 243, 243, 130, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2151, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8370917114380152599" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10405465348565016020" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b66801d7643b34583c38b9e7" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b742b78c3b6ddef1780ffbf1b9067a39a9fda9dd44cb66801d7643b34583c38b9e7ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 116, 43, 120, 195, 182, 221, 239, 23, 128, 255, 191, 27, 144, 103, 163, 154, 159, 218, + 157, 212, 76, 182, 104, 1, 215, 100, 59, 52, 88, 60, 56, 185, 231, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2152, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4325389675445519457" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8674899998031745210" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5019143385858433682" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8809365688138214652" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7083798024739364169" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13909559535061630727" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12695944316686963740" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5306002820171286936" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b3c06defe301284611b78636f962cb810ba1b45a794511ed7e2921b7a41276b59fe2cfc1b624eb4c59d341d491bc108aeb37d7eff071bb0310e170c44141c1b49a2b573d987c998ffff", + "cborBytes": [ + 159, 191, 27, 60, 6, 222, 254, 48, 18, 132, 97, 27, 120, 99, 111, 150, 44, 184, 16, 186, 27, 69, 167, 148, 81, 30, + 215, 226, 146, 27, 122, 65, 39, 107, 89, 254, 44, 252, 27, 98, 78, 180, 197, 157, 52, 29, 73, 27, 193, 8, 174, + 179, 125, 126, 255, 7, 27, 176, 49, 14, 23, 12, 68, 20, 28, 27, 73, 162, 181, 115, 217, 135, 201, 152, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2153, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fe17d96f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13988762228957418829" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "efa3a7e7" + } + ] + }, + "cborHex": "9f44fe17d96f1bc2221121b068954d8044efa3a7e7ff", + "cborBytes": [159, 68, 254, 23, 217, 111, 27, 194, 34, 17, 33, 176, 104, 149, 77, 128, 68, 239, 163, 167, 231, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2154, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "058a0600" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4934d8e2d77b96" + } + ] + } + ] + }, + "cborHex": "9fa044058a06009f12474934d8e2d77b96ffff", + "cborBytes": [159, 160, 68, 5, 138, 6, 0, 159, 18, 71, 73, 52, 216, 226, 215, 123, 150, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2155, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14671603687264589255" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8098887316189111298" + } + } + ] + }, + "cborHex": "9f1bcb9c01d1f0b795c71b7065071ab55e6402ff", + "cborBytes": [159, 27, 203, 156, 1, 209, 240, 183, 149, 199, 27, 112, 101, 7, 26, 181, 94, 100, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2156, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "101e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97fc939af821537f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "23" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1549412977937555381" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf42101e4897fc939af821537f412341c541f81b15809ee4f0591fb5ffa0ff", + "cborBytes": [ + 159, 191, 66, 16, 30, 72, 151, 252, 147, 154, 248, 33, 83, 127, 65, 35, 65, 197, 65, 248, 27, 21, 128, 158, 228, + 240, 89, 31, 181, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2157, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5710531717878761494" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2343d083c6615a83" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0060f40dbf83c737bd2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3185052567808979345" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f3a7ac046810f9513408" + } + ] + } + ] + }, + "cborHex": "9f9fbf1b4f3fe2577ac3c816482343d083c6615a834ac0060f40dbf83c737bd21b2c33946f6f333191ff4af3a7ac046810f9513408ffff", + "cborBytes": [ + 159, 159, 191, 27, 79, 63, 226, 87, 122, 195, 200, 22, 72, 35, 67, 208, 131, 198, 97, 90, 131, 74, 192, 6, 15, 64, + 219, 248, 60, 115, 123, 210, 27, 44, 51, 148, 111, 111, 51, 49, 145, 255, 74, 243, 167, 172, 4, 104, 16, 249, 81, + 52, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2158, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4585289910303421738" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6835923980042046468" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "53dd790a0db7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "174c1aa1d1893b425f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "687ca6846b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10896674317441098396" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e2eece3fbb26d60" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13539475335217402991" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab0a0fa31a34" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7348739529591231311" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6d30a067b62db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "106e41" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9029785a00025f785" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17044226083285229233" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1281b17168" + } + ] + }, + "cborHex": "9f9f1b3fa238e127d1752a1b5ede14a43dfb0c04bf4653dd790a0db749174c1aa1d1893b425f45687ca6846b1b9738c38f0432e29c488e2eece3fbb26d601bbbe5e11508cbd46f46ab0a0fa31a341b65fbf7aab828134f47c6d30a067b62db43106e4149c9029785a00025f7851bec8941518da9deb1ffff451281b17168ff", + "cborBytes": [ + 159, 159, 27, 63, 162, 56, 225, 39, 209, 117, 42, 27, 94, 222, 20, 164, 61, 251, 12, 4, 191, 70, 83, 221, 121, 10, + 13, 183, 73, 23, 76, 26, 161, 209, 137, 59, 66, 95, 69, 104, 124, 166, 132, 107, 27, 151, 56, 195, 143, 4, 50, + 226, 156, 72, 142, 46, 236, 227, 251, 178, 109, 96, 27, 187, 229, 225, 21, 8, 203, 212, 111, 70, 171, 10, 15, 163, + 26, 52, 27, 101, 251, 247, 170, 184, 40, 19, 79, 71, 198, 211, 10, 6, 123, 98, 219, 67, 16, 110, 65, 73, 201, 2, + 151, 133, 160, 0, 37, 247, 133, 27, 236, 137, 65, 81, 141, 169, 222, 177, 255, 255, 69, 18, 129, 177, 113, 104, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2159, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4309608875258218656" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "de" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6618649581434234501" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15372903758430244648" + } + } + ] + } + ] + }, + "cborHex": "9f1b3bcece7052a308a09f41de1b5bda2aba2a2ce6851bd5578684e7808f28ffff", + "cborBytes": [ + 159, 27, 59, 206, 206, 112, 82, 163, 8, 160, 159, 65, 222, 27, 91, 218, 42, 186, 42, 44, 230, 133, 27, 213, 87, + 134, 132, 231, 128, 143, 40, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2160, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a61454" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7819924960012414149" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3655484424507857846" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4039647836335690261" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16319624393974249503" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c90969e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16019226339953013107" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67326c917fd1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef376abe" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "68431fbff44e5940" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7772666714049438281" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9781257070869308702" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11854229433123903483" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c7a559ce70f8" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14959100975391112252" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15904500905751153562" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4908083871959330163" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9f36c795" + } + ] + }, + "cborHex": "9f43a614549fd8669f1b6c85f451c3c02cc59f1b32bae3b76cc39bb61b380fb64dde76d2151be27af3ebd6a2781f445c90969effffbf41451bde4fb97b917af1734667326c917fd144ef376abeff4868431fbff44e5940d8669f1b6bde0f31f06b62499f1b87be017b8df1651e1ba482aedcef5497fbffff46c7a559ce70f8ffd8669f1bcf9967149562fc3c9f1bdcb8234ee12d0b9a1b441d044703f5ad73ffff449f36c795ff", + "cborBytes": [ + 159, 67, 166, 20, 84, 159, 216, 102, 159, 27, 108, 133, 244, 81, 195, 192, 44, 197, 159, 27, 50, 186, 227, 183, + 108, 195, 155, 182, 27, 56, 15, 182, 77, 222, 118, 210, 21, 27, 226, 122, 243, 235, 214, 162, 120, 31, 68, 92, + 144, 150, 158, 255, 255, 191, 65, 69, 27, 222, 79, 185, 123, 145, 122, 241, 115, 70, 103, 50, 108, 145, 127, 209, + 68, 239, 55, 106, 190, 255, 72, 104, 67, 31, 191, 244, 78, 89, 64, 216, 102, 159, 27, 107, 222, 15, 49, 240, 107, + 98, 73, 159, 27, 135, 190, 1, 123, 141, 241, 101, 30, 27, 164, 130, 174, 220, 239, 84, 151, 251, 255, 255, 70, + 199, 165, 89, 206, 112, 248, 255, 216, 102, 159, 27, 207, 153, 103, 20, 149, 98, 252, 60, 159, 27, 220, 184, 35, + 78, 225, 45, 11, 154, 27, 68, 29, 4, 71, 3, 245, 173, 115, 255, 255, 68, 159, 54, 199, 149, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2161, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18122801400675075628" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "303290527128c2b51db599" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28b3ff159b3236d5c3ef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4119637822970188094" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1372c01aeb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "707ef1a17848f378" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7af4d196148e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0c1589795" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6eff1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60448ac4958b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e827302ddf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + "cborHex": "9fd8669f1bfb811fdaee30862c9f4b303290527128c2b51db599ffffbf4a28b3ff159b3236d5c3ef1b392be4c5f166d13e4146451372c01aeb48707ef1a17848f378467af4d196148e45a0c1589795418a43d6eff14660448ac4958bff45e827302ddf1bfffffffffffffff406ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 251, 129, 31, 218, 238, 48, 134, 44, 159, 75, 48, 50, 144, 82, 113, 40, 194, 181, 29, 181, + 153, 255, 255, 191, 74, 40, 179, 255, 21, 155, 50, 54, 213, 195, 239, 27, 57, 43, 228, 197, 241, 102, 209, 62, 65, + 70, 69, 19, 114, 192, 26, 235, 72, 112, 126, 241, 161, 120, 72, 243, 120, 70, 122, 244, 209, 150, 20, 142, 69, + 160, 193, 88, 151, 149, 65, 138, 67, 214, 239, 241, 70, 96, 68, 138, 196, 149, 139, 255, 69, 232, 39, 48, 45, 223, + 27, 255, 255, 255, 255, 255, 255, 255, 244, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2162, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1978373185159019281" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5827365760362196581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5915710125578003309" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1b1b7497ee168fbb11bf1b50def648caa9ae651b5218d3043542236dff80ff", + "cborBytes": [ + 159, 27, 27, 116, 151, 238, 22, 143, 187, 17, 191, 27, 80, 222, 246, 72, 202, 169, 174, 101, 27, 82, 24, 211, 4, + 53, 66, 35, 109, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2163, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d7b0b0ef" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8aa96587" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68038b52cea89fd5046177f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f054badf0b13932c3c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "594117610100297751" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4191d0742a3f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bed46d99" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fec3722ed1d9ac63aaa4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7044b58a3" + } + } + ] + } + ] + }, + "cborHex": "9f44d7b0b0efbf448aa965874c68038b52cea89fd5046177f949f054badf0b13932c3c1b083ebad190d5101747f4191d0742a3f544bed46d994afec3722ed1d9ac63aaa445a7044b58a3ffff", + "cborBytes": [ + 159, 68, 215, 176, 176, 239, 191, 68, 138, 169, 101, 135, 76, 104, 3, 139, 82, 206, 168, 159, 213, 4, 97, 119, + 249, 73, 240, 84, 186, 223, 11, 19, 147, 44, 60, 27, 8, 62, 186, 209, 144, 213, 16, 23, 71, 244, 25, 29, 7, 66, + 163, 245, 68, 190, 212, 109, 153, 74, 254, 195, 114, 46, 209, 217, 172, 99, 170, 164, 69, 167, 4, 75, 88, 163, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2164, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5671798045779850276" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4764604836385032686" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "959026bbbe1b7cdb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4986672476001434730" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5274612420327177108" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "504b3819a176" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0626164a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74652e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8062d0e287611cc7453" + } + } + ] + } + ] + }, + "cborHex": "9fa01b4eb64645ac767424bf1b421f46dacfd689ee48959026bbbe1b7cdb1b4534383247487c6a1b4933300cd976fb9446504b3819a176440626164a4374652e4ad8062d0e287611cc7453ffff", + "cborBytes": [ + 159, 160, 27, 78, 182, 70, 69, 172, 118, 116, 36, 191, 27, 66, 31, 70, 218, 207, 214, 137, 238, 72, 149, 144, 38, + 187, 190, 27, 124, 219, 27, 69, 52, 56, 50, 71, 72, 124, 106, 27, 73, 51, 48, 12, 217, 118, 251, 148, 70, 80, 75, + 56, 25, 161, 118, 68, 6, 38, 22, 74, 67, 116, 101, 46, 74, 216, 6, 45, 14, 40, 118, 17, 204, 116, 83, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2165, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3841168082197958836" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3dcb456f" + }, + { + "_tag": "ByteArray", + "bytearray": "a9bccd" + }, + { + "_tag": "ByteArray", + "bytearray": "09bc15a97804b8fc824de7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5248918991890913666" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17366613592277530501" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "70ebdbb317209a3e8c23" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11761114308302426805" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16977329432356246811" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17182965220985426689" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "406d8f8e092e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ed428a7c145" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b354e9204f5fa50b49f443dcb456f43a9bccd4b09bc15a97804b8fc824de71b48d7e8035e7599821bf1029b0cc72c3785ffff4a70ebdbb317209a3e8c23bf1ba337df267d2152b51beb9b972b4260d51b1bee7627d448ba530146406d8f8e092e464ed428a7c14541ceff80ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 53, 78, 146, 4, 245, 250, 80, 180, 159, 68, 61, 203, 69, 111, 67, 169, 188, 205, 75, + 9, 188, 21, 169, 120, 4, 184, 252, 130, 77, 231, 27, 72, 215, 232, 3, 94, 117, 153, 130, 27, 241, 2, 155, 12, 199, + 44, 55, 133, 255, 255, 74, 112, 235, 219, 179, 23, 32, 154, 62, 140, 35, 191, 27, 163, 55, 223, 38, 125, 33, 82, + 181, 27, 235, 155, 151, 43, 66, 96, 213, 27, 27, 238, 118, 39, 212, 72, 186, 83, 1, 70, 64, 109, 143, 142, 9, 46, + 70, 78, 212, 40, 167, 193, 69, 65, 206, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2166, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14249426805616162091" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2615089869998642665" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b2abbe86d5129585f96fe7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6662327241591119108" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3973377794009496537" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1700719054429761569" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12620146436898333832" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14806229796947140763" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15247181402700863989" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9753477085036387820" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7f69ef80d3fe" + }, + { + "_tag": "ByteArray", + "bytearray": "42629d" + } + ] + }, + "cborHex": "9fd8669f1bc5c0222ed9ae352b9fd8669f1b244aaa61a4fdd5e99f4bb2abbe86d5129585f96fe71b5c755753e4725d041b3724460d425c7bd9ffffa01b179a2af81e063021a0bf1baf23c451e8bca4881bcd7a4b8db5d6a09b1bd398deb3e5ed59f51b875b4fbb92819decffffff467f69ef80d3fe4342629dff", + "cborBytes": [ + 159, 216, 102, 159, 27, 197, 192, 34, 46, 217, 174, 53, 43, 159, 216, 102, 159, 27, 36, 74, 170, 97, 164, 253, + 213, 233, 159, 75, 178, 171, 190, 134, 213, 18, 149, 133, 249, 111, 231, 27, 92, 117, 87, 83, 228, 114, 93, 4, 27, + 55, 36, 70, 13, 66, 92, 123, 217, 255, 255, 160, 27, 23, 154, 42, 248, 30, 6, 48, 33, 160, 191, 27, 175, 35, 196, + 81, 232, 188, 164, 136, 27, 205, 122, 75, 141, 181, 214, 160, 155, 27, 211, 152, 222, 179, 229, 237, 89, 245, 27, + 135, 91, 79, 187, 146, 129, 157, 236, 255, 255, 255, 70, 127, 105, 239, 128, 211, 254, 67, 66, 98, 157, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2167, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "010127" + }, + { + "_tag": "ByteArray", + "bytearray": "74" + }, + { + "_tag": "ByteArray", + "bytearray": "eaa13fc130dc190fa465bfd1" + }, + { + "_tag": "ByteArray", + "bytearray": "f2ba1f6f0546" + } + ] + }, + "cborHex": "9f4301012741744ceaa13fc130dc190fa465bfd146f2ba1f6f0546ff", + "cborBytes": [ + 159, 67, 1, 1, 39, 65, 116, 76, 234, 161, 63, 193, 48, 220, 25, 15, 164, 101, 191, 209, 70, 242, 186, 31, 111, 5, + 70, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2168, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13078169040067985174" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed9dc5991e9ab05c9ecc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17554902906434670165" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15929237876180927950" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e65" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5262454695489157735" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10026105060474428688" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4338307496042214791" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11010543772303610237" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1bb57efd7369c37f169f4aed9dc5991e9ab05c9ecc1bf39f8b2efc82ce551bdd100573a07645ce426e65ffffbf1b4907fea9f337ba6741801b8b23e16e92531d101b3c34c3aeac02b587ff1b98cd4f397c0bd17dffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 181, 126, 253, 115, 105, 195, 127, 22, 159, 74, 237, 157, 197, 153, 30, 154, 176, 92, + 158, 204, 27, 243, 159, 139, 46, 252, 130, 206, 85, 27, 221, 16, 5, 115, 160, 118, 69, 206, 66, 110, 101, 255, + 255, 191, 27, 73, 7, 254, 169, 243, 55, 186, 103, 65, 128, 27, 139, 35, 225, 110, 146, 83, 29, 16, 27, 60, 52, + 195, 174, 172, 2, 181, 135, 255, 27, 152, 205, 79, 57, 124, 11, 209, 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2169, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fe72c657e0740b01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1053145383373222249" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11211303288585572637" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "95d4fccd11ce" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7065042256105339418" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3921381596083484272" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7741461754454789309" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea4599c5ee785d14979f" + }, + { + "_tag": "ByteArray", + "bytearray": "f7f6d01988f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "342549038773835213" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2092293668588693686" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7291406702733281851" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3547721404580556437" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3791899556098503936" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4734962789111698280" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13591282049829953783" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13571027310515881953" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "395f257aba04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16510897060826489264" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80c8daaf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84d895047350" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1a2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12033515351805258024" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb9bd5cc5bfda732" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c8e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb934cffd7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5291043074314041552" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc3c55" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "194c7ff9efb9d7e7cb7f0c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16694174620212080017" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d3b501de" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10101072959611253212" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6835e8ba8049eb26edf4f02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16340919926758296912" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f48fe72c657e0740b011b0e9d862578cdb169d8669f1b9b968cf0e14fd11d9f4695d4fccd11ced8669f1b620c127fee487a1a9f1b366b8bc9074f76701b6b6f32731c8cccbd4aea4599c5ee785d14979f46f7f6d01988f81b04c0fa892e4415cdffffffff9fa0bf1b1d095201920728b61b653047c3bd51ca3b1b313c09d22212ee9541e41b349f888e513675001b41b5f791ddb213681bbc9def03be41e0f71bbc55f96fc06c87e1ffa0bf46395f257aba041be5227d65f99aa1b04480c8daaf4684d89504735042b1a21ba6ffa274c78fe92848bb9bd5cc5bfda732427c8e45cb934cffd71b496d8fa497c778d043fc3c554b194c7ff9efb9d7e7cb7f0cffd8669f1be7ad9f5e18152d919f44d3b501de1b8c2e3856c7eeb1dc4cd6835e8ba8049eb26edf4f021be2c69c187187cd50ffffffff", + "cborBytes": [ + 159, 72, 254, 114, 198, 87, 224, 116, 11, 1, 27, 14, 157, 134, 37, 120, 205, 177, 105, 216, 102, 159, 27, 155, + 150, 140, 240, 225, 79, 209, 29, 159, 70, 149, 212, 252, 205, 17, 206, 216, 102, 159, 27, 98, 12, 18, 127, 238, + 72, 122, 26, 159, 27, 54, 107, 139, 201, 7, 79, 118, 112, 27, 107, 111, 50, 115, 28, 140, 204, 189, 74, 234, 69, + 153, 197, 238, 120, 93, 20, 151, 159, 70, 247, 246, 208, 25, 136, 248, 27, 4, 192, 250, 137, 46, 68, 21, 205, 255, + 255, 255, 255, 159, 160, 191, 27, 29, 9, 82, 1, 146, 7, 40, 182, 27, 101, 48, 71, 195, 189, 81, 202, 59, 27, 49, + 60, 9, 210, 34, 18, 238, 149, 65, 228, 27, 52, 159, 136, 142, 81, 54, 117, 0, 27, 65, 181, 247, 145, 221, 178, 19, + 104, 27, 188, 157, 239, 3, 190, 65, 224, 247, 27, 188, 85, 249, 111, 192, 108, 135, 225, 255, 160, 191, 70, 57, + 95, 37, 122, 186, 4, 27, 229, 34, 125, 101, 249, 154, 161, 176, 68, 128, 200, 218, 175, 70, 132, 216, 149, 4, 115, + 80, 66, 177, 162, 27, 166, 255, 162, 116, 199, 143, 233, 40, 72, 187, 155, 213, 204, 91, 253, 167, 50, 66, 124, + 142, 69, 203, 147, 76, 255, 215, 27, 73, 109, 143, 164, 151, 199, 120, 208, 67, 252, 60, 85, 75, 25, 76, 127, 249, + 239, 185, 215, 231, 203, 127, 12, 255, 216, 102, 159, 27, 231, 173, 159, 94, 24, 21, 45, 145, 159, 68, 211, 181, + 1, 222, 27, 140, 46, 56, 86, 199, 238, 177, 220, 76, 214, 131, 94, 139, 168, 4, 158, 178, 110, 223, 79, 2, 27, + 226, 198, 156, 24, 113, 135, 205, 80, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2170, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3111763668881228521" + } + } + ] + }, + "cborHex": "9f1b2b2f3491eca1c2e9ff", + "cborBytes": [159, 27, 43, 47, 52, 145, 236, 161, 194, 233, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2171, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16808831410002918594" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12720127340805382581" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13020801210544464951" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8a54b0dd5eb38711f3" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1be944f71c42a6fcc29fa0ffff1bb086f86c1e7061b5d8669f1bb4b32db6bd7aa4379f80ffff498a54b0dd5eb38711f380ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 233, 68, 247, 28, 66, 166, 252, 194, 159, 160, 255, 255, 27, 176, 134, 248, 108, 30, 112, + 97, 181, 216, 102, 159, 27, 180, 179, 45, 182, 189, 122, 164, 55, 159, 128, 255, 255, 73, 138, 84, 176, 221, 94, + 179, 135, 17, 243, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2172, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10718494935576037970" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11322167658400364488" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14254286656952735348" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c67719033fb86c2aebf477ec" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b94bfbe5ad9d54a521b9d206b7f765eb7c81bc5d166312a4216744cc67719033fb86c2aebf477ecffff", + "cborBytes": [ + 159, 191, 27, 148, 191, 190, 90, 217, 213, 74, 82, 27, 157, 32, 107, 127, 118, 94, 183, 200, 27, 197, 209, 102, + 49, 42, 66, 22, 116, 76, 198, 119, 25, 3, 63, 184, 108, 42, 235, 244, 119, 236, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2173, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5bc0557768b7f4be15eb37" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1448286506985678426" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13460720431769563207" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11452523331157719448" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb032e0feca5323fdf713ee9" + } + } + ] + } + ] + }, + "cborHex": "9f804b5bc0557768b7f4be15eb37bf1b141958e79ddf665a1bbace15ea2c77b0471b9eef894aa78779984ceb032e0feca5323fdf713ee9ffff", + "cborBytes": [ + 159, 128, 75, 91, 192, 85, 119, 104, 183, 244, 190, 21, 235, 55, 191, 27, 20, 25, 88, 231, 157, 223, 102, 90, 27, + 186, 206, 21, 234, 44, 119, 176, 71, 27, 158, 239, 137, 74, 167, 135, 121, 152, 76, 235, 3, 46, 15, 236, 165, 50, + 63, 223, 113, 62, 233, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2174, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3056338976177225256" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8394c37f51459526fd1c" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "02ddc9b825ff" + } + ] + }, + "cborHex": "9fd8669f1b2a6a4c1b0c397e289f804a8394c37f51459526fd1cffffa04602ddc9b825ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 42, 106, 76, 27, 12, 57, 126, 40, 159, 128, 74, 131, 148, 195, 127, 81, 69, 149, 38, 253, + 28, 255, 255, 160, 70, 2, 221, 201, 184, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2175, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a736d4395" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12520285677600058678" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "979414917364960535" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3872916782169729346" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3169918171580550892" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5352" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6063292636095855468" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14652691674924753070" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f459a736d4395d8669f1bfffffffffffffffd9f9f1badc0fd7d0bc32d36ffa0bf1b0d9794ad9d41cd171b35bf5d4b35e029421b2bfdcfc8381d4eec4253521b542524871fbc3b6c1bcb58d171ef36a0aeff80ffffff", + "cborBytes": [ + 159, 69, 154, 115, 109, 67, 149, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 159, 27, 173, + 192, 253, 125, 11, 195, 45, 54, 255, 160, 191, 27, 13, 151, 148, 173, 157, 65, 205, 23, 27, 53, 191, 93, 75, 53, + 224, 41, 66, 27, 43, 253, 207, 200, 56, 29, 78, 236, 66, 83, 82, 27, 84, 37, 36, 135, 31, 188, 59, 108, 27, 203, + 88, 209, 113, 239, 54, 160, 174, 255, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2176, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9f862f9fa74bed412a344899" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14734640562227549500" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b1dcaac1e6cc88150baef385" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12500623586428502542" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f4c9f862f9fa74bed412a344899d905079f1bcc7bf5861ca2953c4cb1dcaac1e6cc88150baef3851bad7b22ebb3f0c20effffff", + "cborBytes": [ + 159, 159, 76, 159, 134, 47, 159, 167, 75, 237, 65, 42, 52, 72, 153, 217, 5, 7, 159, 27, 204, 123, 245, 134, 28, + 162, 149, 60, 76, 177, 220, 170, 193, 230, 204, 136, 21, 11, 174, 243, 133, 27, 173, 123, 34, 235, 179, 240, 194, + 14, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2177, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10968107489135870515" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14204763566214330355" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10563840191984420863" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e142b0a523582241bb168496" + }, + { + "_tag": "ByteArray", + "bytearray": "3a" + }, + { + "_tag": "ByteArray", + "bytearray": "7b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12950636124624611764" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81b1efd944750f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15832876535414125894" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16199579920868380133" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2791f616a75fd40f15265b91" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17052624580734732130" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10055092793262029777" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18167709042068108851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3622575027285834018" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3687863335513231701" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdd79c04a87b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8578254368382271182" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89c78d082846d497ec7f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9528929095767889826" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d5f44" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5481171120bc9e886ecea453" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "557673c35434cc64" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b98368ba65c3ec233d8669f1bc5217534129db7f39fd8669f1b929a4caf5b39c7ff9f4ce142b0a523582241bb168496413a417bffffbf1bb3b9e6f09f9769b44781b1efd944750f1bdbb9ad52a1f9f546411d1be0d0781be5e90de54c2791f616a75fd40f15265b911beca717b51ec9c7621b8b8add9f0df93bd11bfc20ab1dfb1f36331b3245f8cb4992b922ffbf1b332dec2a1d74115546bdd79c04a87b1b770c14e6045e3ece4a89c78d082846d497ec7f1b843d8e86b32117a2431d5f444c5481171120bc9e886ecea45348557673c35434cc64ffffffff", + "cborBytes": [ + 159, 27, 152, 54, 139, 166, 92, 62, 194, 51, 216, 102, 159, 27, 197, 33, 117, 52, 18, 157, 183, 243, 159, 216, + 102, 159, 27, 146, 154, 76, 175, 91, 57, 199, 255, 159, 76, 225, 66, 176, 165, 35, 88, 34, 65, 187, 22, 132, 150, + 65, 58, 65, 123, 255, 255, 191, 27, 179, 185, 230, 240, 159, 151, 105, 180, 71, 129, 177, 239, 217, 68, 117, 15, + 27, 219, 185, 173, 82, 161, 249, 245, 70, 65, 29, 27, 224, 208, 120, 27, 229, 233, 13, 229, 76, 39, 145, 246, 22, + 167, 95, 212, 15, 21, 38, 91, 145, 27, 236, 167, 23, 181, 30, 201, 199, 98, 27, 139, 138, 221, 159, 13, 249, 59, + 209, 27, 252, 32, 171, 29, 251, 31, 54, 51, 27, 50, 69, 248, 203, 73, 146, 185, 34, 255, 191, 27, 51, 45, 236, 42, + 29, 116, 17, 85, 70, 189, 215, 156, 4, 168, 123, 27, 119, 12, 20, 230, 4, 94, 62, 206, 74, 137, 199, 141, 8, 40, + 70, 212, 151, 236, 127, 27, 132, 61, 142, 134, 179, 33, 23, 162, 67, 29, 95, 68, 76, 84, 129, 23, 17, 32, 188, + 158, 136, 110, 206, 164, 83, 72, 85, 118, 115, 195, 84, 52, 204, 100, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2178, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "38d4863b4f90f967a1c0" + }, + { + "_tag": "ByteArray", + "bytearray": "e019299e7718" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4833181572488879356" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea312a0027162f183773" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9298607210499546797" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d711a8f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17812292234821429173" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16534746439468623813" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17821552318246610557" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "592750865097d627380b" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2575092338982623057" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "20a2f0" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17485540751492185421" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7582649136821846931" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ab86573ad" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8208397351723556648" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "424dbd5799" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17176038391248254283" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52f995ace235" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2cf" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5944087976570004270" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17079631213584751938" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c22d0c142585" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17594645273969731056" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4fb80da9ca4507ee" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2744178976081565455" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12678664166031626688" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07e6af063153" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "84553626197698495" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "297035964afdb0045c1e2c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6871768890531204846" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17284176664703029837" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11276120566635844677" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3a80a4ddcfcbc7df2052f" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4931700152689495030" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16382436238027136958" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14102706718151521347" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7fea3d20" + }, + { + "_tag": "ByteArray", + "bytearray": "5c" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f4a38d4863b4f90f967a1c046e019299e7718bf1b4312e9086b29dcfc4aea312a0027162f1837731b810b49fde7b61ead44d711a8f21bf731f969fbfae7b51be577384827aea7c51bf752df692b20e67d4a592750865097d627380bffffd8669f1b23bc90d6c0e397519f4320a2f0a01bf2a91eabce4efd4dffffbf1b693afb3720b04393456ab86573ad1b71ea15e6c4bd5f28418545424dbd57991bee5d8bea0ed2f54b4652f995ace23542e2cfffd8669f1b527da4858520232e9f80bf1bed070a18d4649d4246c22d0c1425851bf42cbca7fff8a5f0484fb80da9ca4507eeffbf1b2615483d4d6fd70f41bb1baff3a9e272ca11c04607e6af063153ffbf1b012c651335fc27bf4b297035964afdb0045c1e2c1b5f5d6d65d2b14eee1befddbb19deb8524d1b9c7cd3e972ce54454bb3a80a4ddcfcbc7df2052fff9f1b4470eb28dbcc0bf61be35a1af5eb181fbe1bc3b6e10a72efb443447fea3d20415cffffffff", + "cborBytes": [ + 159, 159, 74, 56, 212, 134, 59, 79, 144, 249, 103, 161, 192, 70, 224, 25, 41, 158, 119, 24, 191, 27, 67, 18, 233, + 8, 107, 41, 220, 252, 74, 234, 49, 42, 0, 39, 22, 47, 24, 55, 115, 27, 129, 11, 73, 253, 231, 182, 30, 173, 68, + 215, 17, 168, 242, 27, 247, 49, 249, 105, 251, 250, 231, 181, 27, 229, 119, 56, 72, 39, 174, 167, 197, 27, 247, + 82, 223, 105, 43, 32, 230, 125, 74, 89, 39, 80, 134, 80, 151, 214, 39, 56, 11, 255, 255, 216, 102, 159, 27, 35, + 188, 144, 214, 192, 227, 151, 81, 159, 67, 32, 162, 240, 160, 27, 242, 169, 30, 171, 206, 78, 253, 77, 255, 255, + 191, 27, 105, 58, 251, 55, 32, 176, 67, 147, 69, 106, 184, 101, 115, 173, 27, 113, 234, 21, 230, 196, 189, 95, 40, + 65, 133, 69, 66, 77, 189, 87, 153, 27, 238, 93, 139, 234, 14, 210, 245, 75, 70, 82, 249, 149, 172, 226, 53, 66, + 226, 207, 255, 216, 102, 159, 27, 82, 125, 164, 133, 133, 32, 35, 46, 159, 128, 191, 27, 237, 7, 10, 24, 212, 100, + 157, 66, 70, 194, 45, 12, 20, 37, 133, 27, 244, 44, 188, 167, 255, 248, 165, 240, 72, 79, 184, 13, 169, 202, 69, + 7, 238, 255, 191, 27, 38, 21, 72, 61, 77, 111, 215, 15, 65, 187, 27, 175, 243, 169, 226, 114, 202, 17, 192, 70, 7, + 230, 175, 6, 49, 83, 255, 191, 27, 1, 44, 101, 19, 53, 252, 39, 191, 75, 41, 112, 53, 150, 74, 253, 176, 4, 92, + 30, 44, 27, 95, 93, 109, 101, 210, 177, 78, 238, 27, 239, 221, 187, 25, 222, 184, 82, 77, 27, 156, 124, 211, 233, + 114, 206, 84, 69, 75, 179, 168, 10, 77, 220, 252, 188, 125, 242, 5, 47, 255, 159, 27, 68, 112, 235, 40, 219, 204, + 11, 246, 27, 227, 90, 26, 245, 235, 24, 31, 190, 27, 195, 182, 225, 10, 114, 239, 180, 67, 68, 127, 234, 61, 32, + 65, 92, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2179, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4468818497110273159" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10799519695036011580" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16658313476582003576" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13446412133996909205" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3738459995182342722" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "91" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14917289658146306913" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4dab5e576fd28ffb58" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3458529695634230795" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a65cd9" + }, + { + "_tag": "ByteArray", + "bytearray": "addafb529fbc8242256fda" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3533263817849826329" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13377332487611874487" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4171380406212565441" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16963052232025478879" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11899051819783030039" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "895a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12846983121509626014" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f005969ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13901693012165560592" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2727a86a40c6327c81b24" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d3e4" + }, + { + "_tag": "ByteArray", + "bytearray": "990210aa8d472185" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5078811448849024916" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17186189883152493062" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8720705502466673589" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14643250305884901777" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72a7c080f0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5910917726253269301" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13393379198850032795" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01035f111a6c1a" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + ] + }, + "cborHex": "9fd8669f1b3e046ebf0df3ec879f9f1b95df99f1bf74d43c41f31be72e37d8f0c5d3781bba9b4097fe6352951b33e1ad8ef3da2242ff4191d8669f1bcf04dbe8ad6b3b619f494dab5e576fd28ffb581b2fff2a6f216b0e0b43a65cd94baddafb529fbc8242256fdaffffbf1b3108acb8e8adec191bb9a5d5057665fcb71b39e3b860e75319c11beb68de21844696df1ba521ec961222051742895a1bb249a7153105309e458f005969ff1bc0ecbc23e6a889104ba2727a86a40c6327c81b24ffffffd87f9f9f42d3e448990210aa8d472185ff9f41af1b467b901aa1d54794ffffd8669f1bee819ca473b76a069fd8669f1bfffffffffffffff09f1b79062b7341520bb51bcb374691e76651914572a7c080f01b5207cc5ac9e2c135ffffd8669f1bb9ded76b918fe49b9f4701035f111a6c1affffffff41fa1bfffffffffffffff7ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 62, 4, 110, 191, 13, 243, 236, 135, 159, 159, 27, 149, 223, 153, 241, 191, 116, 212, 60, + 65, 243, 27, 231, 46, 55, 216, 240, 197, 211, 120, 27, 186, 155, 64, 151, 254, 99, 82, 149, 27, 51, 225, 173, 142, + 243, 218, 34, 66, 255, 65, 145, 216, 102, 159, 27, 207, 4, 219, 232, 173, 107, 59, 97, 159, 73, 77, 171, 94, 87, + 111, 210, 143, 251, 88, 27, 47, 255, 42, 111, 33, 107, 14, 11, 67, 166, 92, 217, 75, 173, 218, 251, 82, 159, 188, + 130, 66, 37, 111, 218, 255, 255, 191, 27, 49, 8, 172, 184, 232, 173, 236, 25, 27, 185, 165, 213, 5, 118, 101, 252, + 183, 27, 57, 227, 184, 96, 231, 83, 25, 193, 27, 235, 104, 222, 33, 132, 70, 150, 223, 27, 165, 33, 236, 150, 18, + 34, 5, 23, 66, 137, 90, 27, 178, 73, 167, 21, 49, 5, 48, 158, 69, 143, 0, 89, 105, 255, 27, 192, 236, 188, 35, + 230, 168, 137, 16, 75, 162, 114, 122, 134, 164, 12, 99, 39, 200, 27, 36, 255, 255, 255, 216, 127, 159, 159, 66, + 211, 228, 72, 153, 2, 16, 170, 141, 71, 33, 133, 255, 159, 65, 175, 27, 70, 123, 144, 26, 161, 213, 71, 148, 255, + 255, 216, 102, 159, 27, 238, 129, 156, 164, 115, 183, 106, 6, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 240, 159, 27, 121, 6, 43, 115, 65, 82, 11, 181, 27, 203, 55, 70, 145, 231, 102, 81, 145, 69, 114, 167, + 192, 128, 240, 27, 82, 7, 204, 90, 201, 226, 193, 53, 255, 255, 216, 102, 159, 27, 185, 222, 215, 107, 145, 143, + 228, 155, 159, 71, 1, 3, 95, 17, 26, 108, 26, 255, 255, 255, 255, 65, 250, 27, 255, 255, 255, 255, 255, 255, 255, + 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2180, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89321a859a02" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8742220765394880327" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9116023257466474244" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9666296271202928832" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb8a7c18a671c46919345a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11445410470085109761" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf084689321a859a021b79529b77c567c7471b7e829eda997d0f041b8625953e92bbc8c04bfb8a7c18a671c46919345a1b9ed6442ea1f5a80141401bfffffffffffffff901ffff", + "cborBytes": [ + 159, 191, 8, 70, 137, 50, 26, 133, 154, 2, 27, 121, 82, 155, 119, 197, 103, 199, 71, 27, 126, 130, 158, 218, 153, + 125, 15, 4, 27, 134, 37, 149, 62, 146, 187, 200, 192, 75, 251, 138, 124, 24, 166, 113, 196, 105, 25, 52, 90, 27, + 158, 214, 68, 46, 161, 245, 168, 1, 65, 64, 27, 255, 255, 255, 255, 255, 255, 255, 249, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2181, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0007fa79effafe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7529643157276067376" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "03fec9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1450590d9c242449c579" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63bef9060603" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06c3037afbfaf903" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf3bb6e2b7fafa992b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e178215670734909" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a365581ee1a2a" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "372aee8f7c76" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f90006fe01026404ffa9" + }, + { + "_tag": "ByteArray", + "bytearray": "32acb85736a727" + } + ] + }, + "cborHex": "9fbf470007fa79effafe1b687eaa8ecae406304303fec91bfffffffffffffffd4a1450590d9c242449c5791bffffffffffffffff4663bef90606034806c3037afbfaf90349cf3bb6e2b7fafa992b417948e178215670734909470a365581ee1a2aff46372aee8f7c76804af90006fe01026404ffa94732acb85736a727ff", + "cborBytes": [ + 159, 191, 71, 0, 7, 250, 121, 239, 250, 254, 27, 104, 126, 170, 142, 202, 228, 6, 48, 67, 3, 254, 201, 27, 255, + 255, 255, 255, 255, 255, 255, 253, 74, 20, 80, 89, 13, 156, 36, 36, 73, 197, 121, 27, 255, 255, 255, 255, 255, + 255, 255, 255, 70, 99, 190, 249, 6, 6, 3, 72, 6, 195, 3, 122, 251, 250, 249, 3, 73, 207, 59, 182, 226, 183, 250, + 250, 153, 43, 65, 121, 72, 225, 120, 33, 86, 112, 115, 73, 9, 71, 10, 54, 85, 129, 238, 26, 42, 255, 70, 55, 42, + 238, 143, 124, 118, 128, 74, 249, 0, 6, 254, 1, 2, 100, 4, 255, 169, 71, 50, 172, 184, 87, 54, 167, 39, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2182, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ec62bc886c4ced52ba791" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "680c23b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a463adf305d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17532359694016786268" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "40ba0d1350a7ba" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a466d9a96228faedb238a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4967565268817954924" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9abe5ba2968a0707f5d2b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16217188890900753626" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ace5a40c9e25a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8046562488270531353" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7183333698462399003" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f47f90af26a27c61d45a97" + } + ] + }, + "cborHex": "9fbf4b1ec62bc886c4ced52ba79144680c23b946a463adf305d01bf34f7440543f2f5cff4740ba0d1350a7babf4b7a466d9a96228faedb238a1b44f0564aee76486c4b9abe5ba2968a0707f5d2b51be10f075fb98cecda47ace5a40c9e25a81b6fab21f358592b19ff1b63b053f097f1ba1b4bf47f90af26a27c61d45a97ff", + "cborBytes": [ + 159, 191, 75, 30, 198, 43, 200, 134, 196, 206, 213, 43, 167, 145, 68, 104, 12, 35, 185, 70, 164, 99, 173, 243, 5, + 208, 27, 243, 79, 116, 64, 84, 63, 47, 92, 255, 71, 64, 186, 13, 19, 80, 167, 186, 191, 75, 122, 70, 109, 154, + 150, 34, 143, 174, 219, 35, 138, 27, 68, 240, 86, 74, 238, 118, 72, 108, 75, 154, 190, 91, 162, 150, 138, 7, 7, + 245, 210, 181, 27, 225, 15, 7, 95, 185, 140, 236, 218, 71, 172, 229, 164, 12, 158, 37, 168, 27, 111, 171, 33, 243, + 88, 89, 43, 25, 255, 27, 99, 176, 83, 240, 151, 241, 186, 27, 75, 244, 127, 144, 175, 38, 162, 124, 97, 212, 90, + 151, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2183, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ec636dd74f473d70161" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a759e987b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2614676510850745255" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce43" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab51" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8899489700706534138" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5651667660510547541" + } + } + ] + }, + "cborHex": "9fbf4a9ec636dd74f473d7016141c445a759e987b51b2449326ef7d103a742ce430fffbf0e42ab51141b7b8156bb34dc42faff1b4e6ec1cb1d4b4e55ff", + "cborBytes": [ + 159, 191, 74, 158, 198, 54, 221, 116, 244, 115, 215, 1, 97, 65, 196, 69, 167, 89, 233, 135, 181, 27, 36, 73, 50, + 110, 247, 209, 3, 167, 66, 206, 67, 15, 255, 191, 14, 66, 171, 81, 20, 27, 123, 129, 86, 187, 52, 220, 66, 250, + 255, 27, 78, 110, 193, 203, 29, 75, 78, 85, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2184, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4918604231633614636" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13878523247011719178" + } + } + ] + } + ] + }, + "cborHex": "9f9f1b4442647d2141372ca01bc09a6b5c9122680affff", + "cborBytes": [ + 159, 159, 27, 68, 66, 100, 125, 33, 65, 55, 44, 160, 27, 192, 154, 107, 92, 145, 34, 104, 10, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2185, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b346da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "473a65844151c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c618834f64567e1e99" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13249682950800383071" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d988cf8d8226aa9b0b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "616210502852808041" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "68" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12598484024336475311" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b76851de90451ff39173d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a009c779a7fdd3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16460794688246982534" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4f67fdbacaa62f4ab87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "020dd2efc7e4af8b0e8421" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11885346042230891828" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3407701923085710490" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6271066701753878698" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf43b346da47473a65844151c649c618834f64567e1e991bb7e05471a5019c5f49d988cf8d8226aa9b0b1b088d383001680d69ffbf41681baed6ce78730264af4b7b76851de90451ff39173d4235a247a009c779a7fdd31be4707d8e519927864ab4f67fdbacaa62f4ab874b020dd2efc7e4af8b0e8421ff801ba4f13b410fc46534bf1b2f4a96d821f0749a1b57074df090d208aaffff", + "cborBytes": [ + 159, 191, 67, 179, 70, 218, 71, 71, 58, 101, 132, 65, 81, 198, 73, 198, 24, 131, 79, 100, 86, 126, 30, 153, 27, + 183, 224, 84, 113, 165, 1, 156, 95, 73, 217, 136, 207, 141, 130, 38, 170, 155, 11, 27, 8, 141, 56, 48, 1, 104, 13, + 105, 255, 191, 65, 104, 27, 174, 214, 206, 120, 115, 2, 100, 175, 75, 123, 118, 133, 29, 233, 4, 81, 255, 57, 23, + 61, 66, 53, 162, 71, 160, 9, 199, 121, 167, 253, 211, 27, 228, 112, 125, 142, 81, 153, 39, 134, 74, 180, 246, 127, + 219, 172, 170, 98, 244, 171, 135, 75, 2, 13, 210, 239, 199, 228, 175, 139, 14, 132, 33, 255, 128, 27, 164, 241, + 59, 65, 15, 196, 101, 52, 191, 27, 47, 74, 150, 216, 33, 240, 116, 154, 27, 87, 7, 77, 240, 144, 210, 8, 170, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2186, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "592472ddd9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11741906331570593561" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4b8cdd" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15915332883941845721" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "381929827405d714a941bd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "86344843698138806" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c03988c2e9be6f4df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7610409899158128927" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bb64e1a21d79789d09e5f5b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6710474813081209978" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c555b00867937089" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5285c08a4b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59eece468666" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16528483705746938811" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "715a3a30be9dd0c151e86c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67cec89026602c3edf628b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a452c6a66e79d54902a6b3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d85b31c07b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8962284512050335153" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d86604a92594288847ba58dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "592b1a5840a8af7a" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5c6f6d8ac685987ca43d" + }, + { + "_tag": "ByteArray", + "bytearray": "a13aee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12317623252004436409" + } + } + ] + } + ] + }, + "cborHex": "9f45592472ddd99fd8669f1ba2f3a198e72cdf199f434b8cddffff1bdcde9eef55726ad9bf4b381929827405d714a941bd1b0132c22d88d06eb6495c03988c2e9be6f4df1b699d9b7b4a6fc91f4c7bb64e1a21d79789d09e5f5b1b5d206549f3e94c7affff48c555b00867937089bf455285c08a4b414c4659eece4686661be560f85bd4e0dbbb4b715a3a30be9dd0c151e86c4b67cec89026602c3edf628b41b54ba452c6a66e79d54902a6b345d85b31c07b1b7c606e478cbecdb14cd86604a92594288847ba58dc48592b1a5840a8af7aff9f4a5c6f6d8ac685987ca43d43a13aee1baaf0fd160cd0f9b9ffff", + "cborBytes": [ + 159, 69, 89, 36, 114, 221, 217, 159, 216, 102, 159, 27, 162, 243, 161, 152, 231, 44, 223, 25, 159, 67, 75, 140, + 221, 255, 255, 27, 220, 222, 158, 239, 85, 114, 106, 217, 191, 75, 56, 25, 41, 130, 116, 5, 215, 20, 169, 65, 189, + 27, 1, 50, 194, 45, 136, 208, 110, 182, 73, 92, 3, 152, 140, 46, 155, 230, 244, 223, 27, 105, 157, 155, 123, 74, + 111, 201, 31, 76, 123, 182, 78, 26, 33, 215, 151, 137, 208, 158, 95, 91, 27, 93, 32, 101, 73, 243, 233, 76, 122, + 255, 255, 72, 197, 85, 176, 8, 103, 147, 112, 137, 191, 69, 82, 133, 192, 138, 75, 65, 76, 70, 89, 238, 206, 70, + 134, 102, 27, 229, 96, 248, 91, 212, 224, 219, 187, 75, 113, 90, 58, 48, 190, 157, 208, 193, 81, 232, 108, 75, + 103, 206, 200, 144, 38, 96, 44, 62, 223, 98, 139, 65, 181, 75, 164, 82, 198, 166, 110, 121, 213, 73, 2, 166, 179, + 69, 216, 91, 49, 192, 123, 27, 124, 96, 110, 71, 140, 190, 205, 177, 76, 216, 102, 4, 169, 37, 148, 40, 136, 71, + 186, 88, 220, 72, 89, 43, 26, 88, 64, 168, 175, 122, 255, 159, 74, 92, 111, 109, 138, 198, 133, 152, 124, 164, 61, + 67, 161, 58, 238, 27, 170, 240, 253, 22, 12, 208, 249, 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2187, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14203604015469135488" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b114b92073adb98bcf8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3649625420782196239" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95b03b" + } + } + ] + } + ] + }, + "cborHex": "9f1bc51d5699205986804a0b114b92073adb98bcf8bf1b32a612fbd0f5560f4395b03bffff", + "cborBytes": [ + 159, 27, 197, 29, 86, 153, 32, 89, 134, 128, 74, 11, 17, 75, 146, 7, 58, 219, 152, 188, 248, 191, 27, 50, 166, 18, + 251, 208, 245, 86, 15, 67, 149, 176, 59, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2188, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1303736709400741917" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20fd71a9380cd4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4724875083150473956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3382134794882664874" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12166222314925549461" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2a0e1c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d78eec1166d397634b303e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11055403411504442237" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2003946659860779707" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9941677365143070469" + } + } + ] + }, + "cborHex": "9fbf1b1217cda13477c81d4720fd71a9380cd41b419220dacb473ae41b2eefc1ad377849aa1ba8d71abc6b91679544c2a0e1c94bd78eec1166d397634b303e1b996caed4275d2b7dff1b1bcf72dea9d512bb1b89f7eee3ece4e705ff", + "cborBytes": [ + 159, 191, 27, 18, 23, 205, 161, 52, 119, 200, 29, 71, 32, 253, 113, 169, 56, 12, 212, 27, 65, 146, 32, 218, 203, + 71, 58, 228, 27, 46, 239, 193, 173, 55, 120, 73, 170, 27, 168, 215, 26, 188, 107, 145, 103, 149, 68, 194, 160, + 225, 201, 75, 215, 142, 236, 17, 102, 211, 151, 99, 75, 48, 62, 27, 153, 108, 174, 212, 39, 93, 43, 125, 255, 27, + 27, 207, 114, 222, 169, 213, 18, 187, 27, 137, 247, 238, 227, 236, 228, 231, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2189, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3444b4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17286965826369981483" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c0b544af8a8f1cb87ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14978365080934964271" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58a6ccb5be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1eb0bbd3fdd74f9036" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "648f9b42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7627d1ac38f420c4f6355" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f615644b44734bf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9dd460b985035" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "398f617816" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17514591394388786785" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4395096515604870873" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11084255078778362513" + } + } + ] + }, + "cborHex": "9f809fbf433444b41befe7a3d42d198c2b4a3c0b544af8a8f1cb87ce1bcfddd7aead3e5c2f4558a6ccb5be491eb0bbd3fdd74f903644648f9b4241fd4ba7627d1ac38f420c4f6355484f615644b44734bf47a9dd460b98503545398f617816ff1bf3105413b0a83e61ff1b3cfe84fea62f76d91b99d32f446a675a91ff", + "cborBytes": [ + 159, 128, 159, 191, 67, 52, 68, 180, 27, 239, 231, 163, 212, 45, 25, 140, 43, 74, 60, 11, 84, 74, 248, 168, 241, + 203, 135, 206, 27, 207, 221, 215, 174, 173, 62, 92, 47, 69, 88, 166, 204, 181, 190, 73, 30, 176, 187, 211, 253, + 215, 79, 144, 54, 68, 100, 143, 155, 66, 65, 253, 75, 167, 98, 125, 26, 195, 143, 66, 12, 79, 99, 85, 72, 79, 97, + 86, 68, 180, 71, 52, 191, 71, 169, 221, 70, 11, 152, 80, 53, 69, 57, 143, 97, 120, 22, 255, 27, 243, 16, 84, 19, + 176, 168, 62, 97, 255, 27, 60, 254, 132, 254, 166, 47, 118, 217, 27, 153, 211, 47, 68, 106, 103, 90, 145, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2190, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "313421723775627030" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7514f4" + }, + { + "_tag": "ByteArray", + "bytearray": "c69204da69" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11994446891940705328" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e48f7d442512cf" + }, + { + "_tag": "ByteArray", + "bytearray": "62c3e5694660ea6ab25dd0ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7230279564286687586" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0640" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2bacd4809" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45aa9ba3b5c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1001597405600089861" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9d4715c631d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6dbb59d6195632e13854ef" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5694557417562384669" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3bdef15d30f5e47b445a" + }, + { + "_tag": "ByteArray", + "bytearray": "7f51082ac563d1208db271" + }, + { + "_tag": "ByteArray", + "bytearray": "b11283e35069" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2644559947007206160" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14397585264293713032" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7c209b0cdad52e85dc6012" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14250583625586594789" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5317580454296109719" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17042725807629352690" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "499238779085542604" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06a3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5b2c16fd0" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10610356709302987492" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3338406166410978954" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b04597f65ae896f169f437514f445c69204da69d8669f1ba674d5e61f69f4309f47e48f7d442512cf4c62c3e5694660ea6ab25dd0ed1b64571cf4c012f962ffffffffbf42064045f2bacd48094645aa9ba3b5c31b0de66388a0bf070546e9d4715c631d4b6dbb59d6195632e13854efff9fd8669f1b4f0721ccdadf291d9f4a3bdef15d30f5e47b445a4b7f51082ac563d1208db27146b11283e350691b24b35d42a4972310ffff1bc7ce7f8425a01488ff9f4b7c209b0cdad52e85dc6012bf1bc5c43e4dfd1653e51b49cbd73fdae142971bec83ecd368213ef21b06eda706457e54cc4206a345d5b2c16fd0ffd8669f1b933f8f36062feae49f1b2e5466b880e6668affffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 4, 89, 127, 101, 174, 137, 111, 22, 159, 67, 117, 20, 244, 69, 198, 146, 4, 218, 105, 216, + 102, 159, 27, 166, 116, 213, 230, 31, 105, 244, 48, 159, 71, 228, 143, 125, 68, 37, 18, 207, 76, 98, 195, 229, + 105, 70, 96, 234, 106, 178, 93, 208, 237, 27, 100, 87, 28, 244, 192, 18, 249, 98, 255, 255, 255, 255, 191, 66, 6, + 64, 69, 242, 186, 205, 72, 9, 70, 69, 170, 155, 163, 181, 195, 27, 13, 230, 99, 136, 160, 191, 7, 5, 70, 233, 212, + 113, 92, 99, 29, 75, 109, 187, 89, 214, 25, 86, 50, 225, 56, 84, 239, 255, 159, 216, 102, 159, 27, 79, 7, 33, 204, + 218, 223, 41, 29, 159, 74, 59, 222, 241, 93, 48, 245, 228, 123, 68, 90, 75, 127, 81, 8, 42, 197, 99, 209, 32, 141, + 178, 113, 70, 177, 18, 131, 227, 80, 105, 27, 36, 179, 93, 66, 164, 151, 35, 16, 255, 255, 27, 199, 206, 127, 132, + 37, 160, 20, 136, 255, 159, 75, 124, 32, 155, 12, 218, 213, 46, 133, 220, 96, 18, 191, 27, 197, 196, 62, 77, 253, + 22, 83, 229, 27, 73, 203, 215, 63, 218, 225, 66, 151, 27, 236, 131, 236, 211, 104, 33, 62, 242, 27, 6, 237, 167, + 6, 69, 126, 84, 204, 66, 6, 163, 69, 213, 178, 193, 111, 208, 255, 216, 102, 159, 27, 147, 63, 143, 54, 6, 47, + 234, 228, 159, 27, 46, 84, 102, 184, 128, 230, 102, 138, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2191, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "75d4f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11988725032244434038" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "983760979369c0c7f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a459" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c435" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10380462988140035298" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c71ae3b9cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f47302b9e113eab823a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f75cc608ab33f82a4bb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "293240a1d2272afdd69f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11567155190573294466" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17825caf0f84d73804e2e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6280271788933169179" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5cebee4b88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3964169039864561684" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bda1ebcb5e9a108304" + }, + { + "_tag": "ByteArray", + "bytearray": "eeb63a8c1975ab7e8617231e" + }, + { + "_tag": "ByteArray", + "bytearray": "24da" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4157e192980d33" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13726924539823817218" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13070444095552257741" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf4375d4f11ba66081e5d8c3547649983760979369c0c7f042a45942c4351b900ed016f42d3ce245c71ae3b9cc412a4af47302b9e113eab823a541164af75cc608ab33f82a4bb64a293240a1d2272afdd69fffd8669f1ba086ca5c43efe3829fbf4b17825caf0f84d73804e2e11b572801eaf044c01b455cebee4b881b37038ebd1aba8014ff9f49bda1ebcb5e9a1083044ceeb63a8c1975ab7e8617231e4224daff474157e192980d33ffff1bbe7fd523feca82021bb5638ba79bfe7ecd80ff", + "cborBytes": [ + 159, 191, 67, 117, 212, 241, 27, 166, 96, 129, 229, 216, 195, 84, 118, 73, 152, 55, 96, 151, 147, 105, 192, 199, + 240, 66, 164, 89, 66, 196, 53, 27, 144, 14, 208, 22, 244, 45, 60, 226, 69, 199, 26, 227, 185, 204, 65, 42, 74, + 244, 115, 2, 185, 225, 19, 234, 184, 35, 165, 65, 22, 74, 247, 92, 198, 8, 171, 51, 248, 42, 75, 182, 74, 41, 50, + 64, 161, 210, 39, 42, 253, 214, 159, 255, 216, 102, 159, 27, 160, 134, 202, 92, 67, 239, 227, 130, 159, 191, 75, + 23, 130, 92, 175, 15, 132, 215, 56, 4, 226, 225, 27, 87, 40, 1, 234, 240, 68, 192, 27, 69, 92, 235, 238, 75, 136, + 27, 55, 3, 142, 189, 26, 186, 128, 20, 255, 159, 73, 189, 161, 235, 203, 94, 154, 16, 131, 4, 76, 238, 182, 58, + 140, 25, 117, 171, 126, 134, 23, 35, 30, 66, 36, 218, 255, 71, 65, 87, 225, 146, 152, 13, 51, 255, 255, 27, 190, + 127, 213, 35, 254, 202, 130, 2, 27, 181, 99, 139, 167, 155, 254, 126, 205, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2192, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6003509972153455363" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18131883431273205785" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13361836535915754380" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b1cd7991" + }, + { + "_tag": "ByteArray", + "bytearray": "6cd191" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23c345964a00d566" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15533316002696023769" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13845173165418525" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1079747581219888371" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "554900085132925655" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8878648403768972156" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1762623007601763896" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "557852551472576303" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2782959097142902980" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16977443911652169421" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14665003678691879559" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15689299726701996235" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7557322543947307528" + } + } + ] + }, + "cborHex": "9f9fd8669f1b5350c082ffb8d3039f1bfba163e9f5d490191bb96ec7890e18338c44b1cd7991436cd191ffffffbf4823c345964a00d5661bd7916c9afc964ed9ffbf1b0031301c9460e81d1b0efc08b451b2dcf31b07b366affc2e9ad71b7b374baea03d137c1b187618496108a6381b07bde3f09f91772f1b269f0e8dd9a500c41beb9bff498c2556cd1bcb848f25b239ea871bd9bb96f9d8b4a8cbff1b68e100d03507da08ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 83, 80, 192, 130, 255, 184, 211, 3, 159, 27, 251, 161, 99, 233, 245, 212, 144, 25, + 27, 185, 110, 199, 137, 14, 24, 51, 140, 68, 177, 205, 121, 145, 67, 108, 209, 145, 255, 255, 255, 191, 72, 35, + 195, 69, 150, 74, 0, 213, 102, 27, 215, 145, 108, 154, 252, 150, 78, 217, 255, 191, 27, 0, 49, 48, 28, 148, 96, + 232, 29, 27, 14, 252, 8, 180, 81, 178, 220, 243, 27, 7, 179, 102, 175, 252, 46, 154, 215, 27, 123, 55, 75, 174, + 160, 61, 19, 124, 27, 24, 118, 24, 73, 97, 8, 166, 56, 27, 7, 189, 227, 240, 159, 145, 119, 47, 27, 38, 159, 14, + 141, 217, 165, 0, 196, 27, 235, 155, 255, 73, 140, 37, 86, 205, 27, 203, 132, 143, 37, 178, 57, 234, 135, 27, 217, + 187, 150, 249, 216, 180, 168, 203, 255, 27, 104, 225, 0, 208, 53, 7, 218, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2193, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8213555250330883781" + } + } + ] + }, + "cborHex": "9f1b71fc68fb9f0456c5ff", + "cborBytes": [159, 27, 113, 252, 104, 251, 159, 4, 86, 197, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2194, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5f" + } + ] + }, + "cborHex": "9f415fff", + "cborBytes": [159, 65, 95, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2195, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9730115709028640835" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "63c6e036f1063609" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5301145245494807206" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9641214400109942662" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0ead23722ec2e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18154851876854139426" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1503128996285283959" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4df0ebbad4644398" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "055e699abdeb4a80ffe90188" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8353988621275137922" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "43ba215fca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5985478235516513373" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab3e5f3de0494d20d4ef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6525c6f595c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d41ec8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f727cf9b" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3796f2fadc093dc33b9f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4078742525875540059" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b22a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4be532ae244c4c7334e9aff2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9eb4aecb2fb6855aa81c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cacca11cb29125f082b7d0f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5a69792b68bd00a86" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3340724354580488581" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15228113622380072929" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9aaa9457b837b4483a1e7e" + } + ] + }, + "cborHex": "9fd8669f1b870850af5c19a8439f4863c6e036f10636091b499173839c780aa6bf1b85cc796a61ef178647a0ead23722ec2e1bfbf2fd97edb98a221b14dc2fdbb32c7e77484df0ebbad46443984c055e699abdeb4a80ffe90188ff1b73ef5463c4c28782ffffbf4543ba215fca1b5310b0be26cb2c5d4aab3e5f3de0494d20d4ef410c41c146a6525c6f595c43d41ec844f727cf9bffbf4a3796f2fadc093dc33b9f1b389a9ab79917505b439b22a84c4be532ae244c4c7334e9aff24a9eb4aecb2fb6855aa81c4c9cacca11cb29125f082b7d0f41ac41f049d5a69792b68bd00a861b2e5ca319bf442185ff1bd35520a855404fe14b9aaa9457b837b4483a1e7eff", + "cborBytes": [ + 159, 216, 102, 159, 27, 135, 8, 80, 175, 92, 25, 168, 67, 159, 72, 99, 198, 224, 54, 241, 6, 54, 9, 27, 73, 145, + 115, 131, 156, 120, 10, 166, 191, 27, 133, 204, 121, 106, 97, 239, 23, 134, 71, 160, 234, 210, 55, 34, 236, 46, + 27, 251, 242, 253, 151, 237, 185, 138, 34, 27, 20, 220, 47, 219, 179, 44, 126, 119, 72, 77, 240, 235, 186, 212, + 100, 67, 152, 76, 5, 94, 105, 154, 189, 235, 74, 128, 255, 233, 1, 136, 255, 27, 115, 239, 84, 99, 196, 194, 135, + 130, 255, 255, 191, 69, 67, 186, 33, 95, 202, 27, 83, 16, 176, 190, 38, 203, 44, 93, 74, 171, 62, 95, 61, 224, 73, + 77, 32, 212, 239, 65, 12, 65, 193, 70, 166, 82, 92, 111, 89, 92, 67, 212, 30, 200, 68, 247, 39, 207, 155, 255, + 191, 74, 55, 150, 242, 250, 220, 9, 61, 195, 59, 159, 27, 56, 154, 154, 183, 153, 23, 80, 91, 67, 155, 34, 168, + 76, 75, 229, 50, 174, 36, 76, 76, 115, 52, 233, 175, 242, 74, 158, 180, 174, 203, 47, 182, 133, 90, 168, 28, 76, + 156, 172, 202, 17, 203, 41, 18, 95, 8, 43, 125, 15, 65, 172, 65, 240, 73, 213, 166, 151, 146, 182, 139, 208, 10, + 134, 27, 46, 92, 163, 25, 191, 68, 33, 133, 255, 27, 211, 85, 32, 168, 85, 64, 79, 225, 75, 154, 170, 148, 87, + 184, 55, 180, 72, 58, 30, 126, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2196, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + } + ] + }, + "cborHex": "9f9f13ffff", + "cborBytes": [159, 159, 19, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2197, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4976763581687995405" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "541324e1" + }, + { + "_tag": "ByteArray", + "bytearray": "2e937c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13055815386205343235" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e4966d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2229fb891ad419a531c69b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bfe694" + }, + { + "_tag": "ByteArray", + "bytearray": "406292b6ee8b7c" + }, + { + "_tag": "ByteArray", + "bytearray": "a9f090bf5f134e727a45" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12739207260754737755" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2387368403066075578" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17036686404759756240" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7454362692202743337" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cbae" + } + ] + }, + "cborHex": "9f9fd8669f1b4511041c099d1c0d9f44541324e1432e937c1bb52f92ebcbd94e03ffffa0bf446e4966d94b2229fb891ad419a531c69bff9f43bfe69447406292b6ee8b7c4aa9f090bf5f134e727a451bb0cac182295cfa5b1b2121a2e9ecbeb9baff1bec6e7805596e9dd0ff1b6773375fa7ab462942cbaeff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 69, 17, 4, 28, 9, 157, 28, 13, 159, 68, 84, 19, 36, 225, 67, 46, 147, 124, 27, 181, + 47, 146, 235, 203, 217, 78, 3, 255, 255, 160, 191, 68, 110, 73, 102, 217, 75, 34, 41, 251, 137, 26, 212, 25, 165, + 49, 198, 155, 255, 159, 67, 191, 230, 148, 71, 64, 98, 146, 182, 238, 139, 124, 74, 169, 240, 144, 191, 95, 19, + 78, 114, 122, 69, 27, 176, 202, 193, 130, 41, 92, 250, 91, 27, 33, 33, 162, 233, 236, 190, 185, 186, 255, 27, 236, + 110, 120, 5, 89, 110, 157, 208, 255, 27, 103, 115, 55, 95, 167, 171, 70, 41, 66, 203, 174, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2198, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2fef380e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10659940467453334561" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b7455e516359cef0b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b297" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "887278171629102178" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16552785172756795690" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5223873102609602218" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3306340782679994393" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14272362776342476861" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10409859862554283212" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12250183946628578585" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12383615483880035569" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5363" + }, + { + "_tag": "ByteArray", + "bytearray": "da9984" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3395058520509808865" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8057507187380573980" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15301551268733143673" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "401045104688697182" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9046150071309069025" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1786437143805350385" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1937959307363352608" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2624394726255945899" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10247032428638403839" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6662719786377934917" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14040360088280501069" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14381886545083088533" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a610046" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf442fef380e1b93efb760595e1421496b7455e516359cef0b42b297ff9fbf1b0c503ecbcce924621be5b74e6a0985912a1b487eece8d8c356aa1b2de27b6c920730191bc6119e53ad66b83d1b9077406425250cccffffd8669f1baa0165652bfd3d199f9f1babdb70abdfb254f142536343da99841b2f1dabbc92a680e11b6fd20418aef9d71cffd8669f1bd45a07cecd444a7980ffbf1b0590cc65dbe10f5e1b7d8a618fb1406ae11b18cab31e0a14d1f11b1ae503b8e88e00201b246bb91950e4e8ab1b8e34c5b3e6e67cff1b5c76bc585905f8451bc2d9611c7c880b4d1bc796b99d3fa5be95449a610046ffffffff", + "cborBytes": [ + 159, 191, 68, 47, 239, 56, 14, 27, 147, 239, 183, 96, 89, 94, 20, 33, 73, 107, 116, 85, 229, 22, 53, 156, 239, 11, + 66, 178, 151, 255, 159, 191, 27, 12, 80, 62, 203, 204, 233, 36, 98, 27, 229, 183, 78, 106, 9, 133, 145, 42, 27, + 72, 126, 236, 232, 216, 195, 86, 170, 27, 45, 226, 123, 108, 146, 7, 48, 25, 27, 198, 17, 158, 83, 173, 102, 184, + 61, 27, 144, 119, 64, 100, 37, 37, 12, 204, 255, 255, 216, 102, 159, 27, 170, 1, 101, 101, 43, 253, 61, 25, 159, + 159, 27, 171, 219, 112, 171, 223, 178, 84, 241, 66, 83, 99, 67, 218, 153, 132, 27, 47, 29, 171, 188, 146, 166, + 128, 225, 27, 111, 210, 4, 24, 174, 249, 215, 28, 255, 216, 102, 159, 27, 212, 90, 7, 206, 205, 68, 74, 121, 128, + 255, 191, 27, 5, 144, 204, 101, 219, 225, 15, 94, 27, 125, 138, 97, 143, 177, 64, 106, 225, 27, 24, 202, 179, 30, + 10, 20, 209, 241, 27, 26, 229, 3, 184, 232, 142, 0, 32, 27, 36, 107, 185, 25, 80, 228, 232, 171, 27, 142, 52, 197, + 179, 230, 230, 124, 255, 27, 92, 118, 188, 88, 89, 5, 248, 69, 27, 194, 217, 97, 28, 124, 136, 11, 77, 27, 199, + 150, 185, 157, 63, 165, 190, 149, 68, 154, 97, 0, 70, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2199, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d4295c212dd8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11538484172308006041" + } + } + ] + }, + "cborHex": "9f46d4295c212dd81ba020ee38a0e2c499ff", + "cborBytes": [159, 70, 212, 41, 92, 33, 45, 216, 27, 160, 32, 238, 56, 160, 226, 196, 153, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2200, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6674121114814084311" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b5c9f3dcafc6d74d780ff80ff", + "cborBytes": [159, 216, 102, 159, 27, 92, 159, 61, 202, 252, 109, 116, 215, 128, 255, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2201, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "859618073244488832" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef2491c8925d2295bce58bd2" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "34864983575002342" + } + } + ] + }, + "cborHex": "9f80bf1b0bedfa154a3e54804cef2491c8925d2295bce58bd2ff1b007bdd8491167ce6ff", + "cborBytes": [ + 159, 128, 191, 27, 11, 237, 250, 21, 74, 62, 84, 128, 76, 239, 36, 145, 200, 146, 93, 34, 149, 188, 229, 139, 210, + 255, 27, 0, 123, 221, 132, 145, 22, 124, 230, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2202, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7c60fee0e486df2e6dc64b0a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "637cafae020da6d7bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5361717549170230580" + } + } + } + ] + } + ] + }, + "cborHex": "9f4c7c60fee0e486df2e6dc64b0abf49637cafae020da6d7bf1b4a68a5b410450534ffff", + "cborBytes": [ + 159, 76, 124, 96, 254, 224, 228, 134, 223, 46, 109, 198, 75, 10, 191, 73, 99, 124, 175, 174, 2, 13, 166, 215, 191, + 27, 74, 104, 165, 180, 16, 69, 5, 52, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2203, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2534e1f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11938911282433658764" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d7ecf4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6197980141946192093" + } + }, + { + "_tag": "ByteArray", + "bytearray": "23e90014" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15782292571662454492" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4777092699212103000" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "533c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17820597028963372953" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9895015366575758155" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16223066691015968682" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14569143471210364347" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1858371479876625590" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9331984150284458567" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7149374475201649602" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04df21" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fe4c9275e9e03f7cb593" + } + ] + } + ] + }, + "cborHex": "9f9fbf442534e1f61ba5af888e6a5c8f8cff43d7ecf41b5603a619cda0c0dd4423e90014bf42c0c61bdb05f779cb3a0edcffffd8669f1b424ba47ff3a63d589f42533cd8669f1bf74f7a948cbe4f999f1b8952280cc3c79b4bffffbf1be123e933b57a87aa1bca2ffecbe331fdbb410f1b19ca4303cec364b6ffd8669f1b8181de244747da479f1b6337ae34c8a39bc24304df21ffff4afe4c9275e9e03f7cb593ffffff", + "cborBytes": [ + 159, 159, 191, 68, 37, 52, 225, 246, 27, 165, 175, 136, 142, 106, 92, 143, 140, 255, 67, 215, 236, 244, 27, 86, 3, + 166, 25, 205, 160, 192, 221, 68, 35, 233, 0, 20, 191, 66, 192, 198, 27, 219, 5, 247, 121, 203, 58, 14, 220, 255, + 255, 216, 102, 159, 27, 66, 75, 164, 127, 243, 166, 61, 88, 159, 66, 83, 60, 216, 102, 159, 27, 247, 79, 122, 148, + 140, 190, 79, 153, 159, 27, 137, 82, 40, 12, 195, 199, 155, 75, 255, 255, 191, 27, 225, 35, 233, 51, 181, 122, + 135, 170, 27, 202, 47, 254, 203, 227, 49, 253, 187, 65, 15, 27, 25, 202, 67, 3, 206, 195, 100, 182, 255, 216, 102, + 159, 27, 129, 129, 222, 36, 71, 71, 218, 71, 159, 27, 99, 55, 174, 52, 200, 163, 155, 194, 67, 4, 223, 33, 255, + 255, 74, 254, 76, 146, 117, 233, 224, 63, 124, 181, 147, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2204, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "71dfa6d0d7" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f4571dfa6d0d780ff", + "cborBytes": [159, 69, 113, 223, 166, 208, 215, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2205, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3423205658858841694" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bf7459079d5ab544286b6f" + }, + { + "_tag": "ByteArray", + "bytearray": "bb747ccfa2ab1375d0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4800fda2e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76a044c741b1" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14924220246697191702" + } + } + ] + } + ] + }, + "cborHex": "9f801b2f81ab68e963665e9f4bbf7459079d5ab544286b6f49bb747ccfa2ab1375d0bf454800fda2e84676a044c741b1ff1bcf1d7b3e12142916ffff", + "cborBytes": [ + 159, 128, 27, 47, 129, 171, 104, 233, 99, 102, 94, 159, 75, 191, 116, 89, 7, 157, 90, 181, 68, 40, 107, 111, 73, + 187, 116, 124, 207, 162, 171, 19, 117, 208, 191, 69, 72, 0, 253, 162, 232, 70, 118, 160, 68, 199, 65, 177, 255, + 27, 207, 29, 123, 62, 18, 20, 41, 22, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2206, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4338828060861437226" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23d34097da7406" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afeeef95d21e694f7f7b52" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f80f343abbe548a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15281344000329796909" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17308337747269899658" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "059473fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60c9fe23" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "982d2f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ab2db7" + } + ] + }, + "cborHex": "9f1b3c369d221d24952abf4723d34097da74064bafeeef95d21e694f7f7b52489f80f343abbe548a1bd4123d677e344d2dff1bf033917a4681d58abf44059473fa4460c9fe2343982d2f14ff43ab2db7ff", + "cborBytes": [ + 159, 27, 60, 54, 157, 34, 29, 36, 149, 42, 191, 71, 35, 211, 64, 151, 218, 116, 6, 75, 175, 238, 239, 149, 210, + 30, 105, 79, 127, 123, 82, 72, 159, 128, 243, 67, 171, 190, 84, 138, 27, 212, 18, 61, 103, 126, 52, 77, 45, 255, + 27, 240, 51, 145, 122, 70, 129, 213, 138, 191, 68, 5, 148, 115, 250, 68, 96, 201, 254, 35, 67, 152, 45, 47, 20, + 255, 67, 171, 45, 183, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2207, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1253280903888023509" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55354fcff7f39cd0" + }, + { + "_tag": "ByteArray", + "bytearray": "4e5a718d86271c" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fbd1" + } + ] + }, + "cborHex": "9f9f9f1b11648c578806afd54855354fcff7f39cd0474e5a718d86271cffff42fbd1ff", + "cborBytes": [ + 159, 159, 159, 27, 17, 100, 140, 87, 136, 6, 175, 213, 72, 85, 53, 79, 207, 247, 243, 156, 208, 71, 78, 90, 113, + 141, 134, 39, 28, 255, 255, 66, 251, 209, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2208, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12250022510964310692" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11711641700684776367" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e7221c9ddffec1376b89e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11664963353390175747" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15997154643408879991" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1571223970918964191" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dbc9af0ca5e0949410" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e2c67fc37e2c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ec9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d2619d7a6954a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4171426856252853640" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e4ff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5024892006004280066" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14468553493219784490" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00fd4b060331fe3fd93045" + }, + { + "_tag": "ByteArray", + "bytearray": "d6ca06953920a6aeba39" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07c5f907f202aefcfa00fee2" + }, + { + "_tag": "ByteArray", + "bytearray": "764c325346" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1baa00d292009102a41ba2881c1369f7c3af4b4e7221c9ddffec1376b89e1ba1e2465dc4c55603ff80ffbf1bde014f64416081771b15ce1be079341bdf421c0249dbc9af0ca5e0949410473e2c67fc37e2c6428ec9479d2619d7a6954a1b39e3e29fe579cd88ff9f42e4ff1b45bc00a80c95cb02d8669f1bc8caa0be911a372a9f4b00fd4b060331fe3fd930454ad6ca06953920a6aeba39ffff1bfffffffffffffff5d87d9f4c07c5f907f202aefcfa00fee245764c325346ffffff", + "cborBytes": [ + 159, 159, 191, 27, 170, 0, 210, 146, 0, 145, 2, 164, 27, 162, 136, 28, 19, 105, 247, 195, 175, 75, 78, 114, 33, + 201, 221, 255, 236, 19, 118, 184, 158, 27, 161, 226, 70, 93, 196, 197, 86, 3, 255, 128, 255, 191, 27, 222, 1, 79, + 100, 65, 96, 129, 119, 27, 21, 206, 27, 224, 121, 52, 27, 223, 66, 28, 2, 73, 219, 201, 175, 12, 165, 224, 148, + 148, 16, 71, 62, 44, 103, 252, 55, 226, 198, 66, 142, 201, 71, 157, 38, 25, 215, 166, 149, 74, 27, 57, 227, 226, + 159, 229, 121, 205, 136, 255, 159, 66, 228, 255, 27, 69, 188, 0, 168, 12, 149, 203, 2, 216, 102, 159, 27, 200, + 202, 160, 190, 145, 26, 55, 42, 159, 75, 0, 253, 75, 6, 3, 49, 254, 63, 217, 48, 69, 74, 214, 202, 6, 149, 57, 32, + 166, 174, 186, 57, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 245, 216, 125, 159, 76, 7, 197, 249, 7, 242, + 2, 174, 252, 250, 0, 254, 226, 69, 118, 76, 50, 83, 70, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2209, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8025eae6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8958016660689231729" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5161e245d3ba" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8716073576111771023" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14039940880354493680" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12494624492448326245" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3951ee595c9127bc77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b96b003273303e070" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5670292536695601352" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9468aeae0a91a697480" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17887015646065420523" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9e" + } + ] + } + ] + }, + "cborHex": "9f448025eae6d8669f1b7c5144b0f8699f719f9f465161e245d3ba1b78f5b6bcdc4f8d8f1bc2d7e3d80903c4f0ff1bad65d2c6ca472265bf493951ee595c9127bc77491b96b003273303e070419d1b4eb0ed05064a38c84ac9468aeae0a91a6974801bf83b71f5eb9568ebff419effffff", + "cborBytes": [ + 159, 68, 128, 37, 234, 230, 216, 102, 159, 27, 124, 81, 68, 176, 248, 105, 159, 113, 159, 159, 70, 81, 97, 226, + 69, 211, 186, 27, 120, 245, 182, 188, 220, 79, 141, 143, 27, 194, 215, 227, 216, 9, 3, 196, 240, 255, 27, 173, + 101, 210, 198, 202, 71, 34, 101, 191, 73, 57, 81, 238, 89, 92, 145, 39, 188, 119, 73, 27, 150, 176, 3, 39, 51, 3, + 224, 112, 65, 157, 27, 78, 176, 237, 5, 6, 74, 56, 200, 74, 201, 70, 138, 234, 224, 169, 26, 105, 116, 128, 27, + 248, 59, 113, 245, 235, 149, 104, 235, 255, 65, 158, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2210, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "65f1f7f2caacd8fa2f9070" + } + ] + }, + "cborHex": "9f4b65f1f7f2caacd8fa2f9070ff", + "cborBytes": [159, 75, 101, 241, 247, 242, 202, 172, 216, 250, 47, 144, 112, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2211, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7343fe7374" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6983581588284371158" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8649637829351076116" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "32739876877750277" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16809899646206136948" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8098733629420268792" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1fa34f7c2a5b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c32b76322f07" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1109963127304094045" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10014141430781031464" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "386833583836887870" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "56a8269858db188442" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17166339820615269583" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e0be6c2b3fb77" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12809806521103728899" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f9aa2f75dd90bd97cd" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4775d5f164ea625c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f34297fe95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd6b765f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5de7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17700679227598833346" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed88e3a8c9eb4e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8028966588957534147" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2011753889636489023" + }, + "fields": [] + } + ] + }, + "cborHex": "9f457343fe7374d8669f1b60eaaa7435a5f0d69fd8669f1b7809afc72e4071149f1b007450be9b49d0051be948c2aa6214d2741b70647b53b81aecf8461fa34f7c2a5bffff46c32b76322f07d8669f1b0f6761955cbe015d9f1b8af96092f839b428ffff9f1b055e4f184fc9fb3eff4956a8269858db188442ffff9f9f1bee3b171d9d6a7ccf476e0be6c2b3fb771bb1c5932963dec103ff49f9aa2f75dd90bd97cd80bf484775d5f164ea625c45f34297fe95415744dd6b765f425de71bf5a571f9ac2a06c247ed88e3a8c9eb4e1b6f6c9e92c84b27c3ffff80d8669f1b1beb2f80ff4b173f80ffff", + "cborBytes": [ + 159, 69, 115, 67, 254, 115, 116, 216, 102, 159, 27, 96, 234, 170, 116, 53, 165, 240, 214, 159, 216, 102, 159, 27, + 120, 9, 175, 199, 46, 64, 113, 20, 159, 27, 0, 116, 80, 190, 155, 73, 208, 5, 27, 233, 72, 194, 170, 98, 20, 210, + 116, 27, 112, 100, 123, 83, 184, 26, 236, 248, 70, 31, 163, 79, 124, 42, 91, 255, 255, 70, 195, 43, 118, 50, 47, + 7, 216, 102, 159, 27, 15, 103, 97, 149, 92, 190, 1, 93, 159, 27, 138, 249, 96, 146, 248, 57, 180, 40, 255, 255, + 159, 27, 5, 94, 79, 24, 79, 201, 251, 62, 255, 73, 86, 168, 38, 152, 88, 219, 24, 132, 66, 255, 255, 159, 159, 27, + 238, 59, 23, 29, 157, 106, 124, 207, 71, 110, 11, 230, 194, 179, 251, 119, 27, 177, 197, 147, 41, 99, 222, 193, 3, + 255, 73, 249, 170, 47, 117, 221, 144, 189, 151, 205, 128, 191, 72, 71, 117, 213, 241, 100, 234, 98, 92, 69, 243, + 66, 151, 254, 149, 65, 87, 68, 221, 107, 118, 95, 66, 93, 231, 27, 245, 165, 113, 249, 172, 42, 6, 194, 71, 237, + 136, 227, 168, 201, 235, 78, 27, 111, 108, 158, 146, 200, 75, 39, 195, 255, 255, 128, 216, 102, 159, 27, 27, 235, + 47, 128, 255, 75, 23, 63, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2212, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12636e99cdde57976be4c6ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10588372923129031618" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b4b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3454826875025268886" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3166a2378b3fe9d207412" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2894293303570266513" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c64e578efd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3500456507729147406" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0103" + } + ] + }, + "cborHex": "9fbf4c12636e99cdde57976be4c6ad1b92f17512f0786bc2423b4b1b2ff202bd065aa0964ba3166a2378b3fe9d2074121b282a986ccb18f99145c64e578efd1b30941ea5c6e6760eff420103ff", + "cborBytes": [ + 159, 191, 76, 18, 99, 110, 153, 205, 222, 87, 151, 107, 228, 198, 173, 27, 146, 241, 117, 18, 240, 120, 107, 194, + 66, 59, 75, 27, 47, 242, 2, 189, 6, 90, 160, 150, 75, 163, 22, 106, 35, 120, 179, 254, 157, 32, 116, 18, 27, 40, + 42, 152, 108, 203, 24, 249, 145, 69, 198, 78, 87, 142, 253, 27, 48, 148, 30, 165, 198, 230, 118, 14, 255, 66, 1, + 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2213, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13460378004426857483" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14976223606051582771" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6e83be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6792532813135512379" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8872613421997490202" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9336533747314615808" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "52aa1321b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10553254309003131506" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11140256520609497925" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f1bbaccde7a98581c0b1bcfd63c05b38633339f9f436e83be1b5e43ec9aec20833b1b7b21dae5ef86001affd8669f1b819207f9e22266009f4552aa1321b91b9274b0e1687dfa72ffffa01b9a9a244829a88345ffa0ff", + "cborBytes": [ + 159, 27, 186, 204, 222, 122, 152, 88, 28, 11, 27, 207, 214, 60, 5, 179, 134, 51, 51, 159, 159, 67, 110, 131, 190, + 27, 94, 67, 236, 154, 236, 32, 131, 59, 27, 123, 33, 218, 229, 239, 134, 0, 26, 255, 216, 102, 159, 27, 129, 146, + 7, 249, 226, 34, 102, 0, 159, 69, 82, 170, 19, 33, 185, 27, 146, 116, 176, 225, 104, 125, 250, 114, 255, 255, 160, + 27, 154, 154, 36, 72, 41, 168, 131, 69, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2214, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "36145fccb7a3" + } + ] + }, + "cborHex": "9f4636145fccb7a3ff", + "cborBytes": [159, 70, 54, 20, 95, 204, 183, 163, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2215, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16b1c8062045e8b17c30" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cf3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2dec573e043a8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9730927996185748083" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1d37ec4e0df40ac69199b39" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4813059330556063450" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cac6a2e2f8b25445235d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e569796c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16684826010295912300" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3376711824713271985" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7675180171156909857" + } + } + ] + } + ] + }, + "cborHex": "9fbf4a16b1c8062045e8b17c30429cf3472dec573e043a8a1b870b3374b38e22734cb1d37ec4e0df40ac69199b391b42cb6bf5e0ac6eda4acac6a2e2f8b25445235d417244e569796c1be78c68db3ae2c76cffd8669f1b2edc7d8394e54ab19f1b6a83b7b368edef21ffffff", + "cborBytes": [ + 159, 191, 74, 22, 177, 200, 6, 32, 69, 232, 177, 124, 48, 66, 156, 243, 71, 45, 236, 87, 62, 4, 58, 138, 27, 135, + 11, 51, 116, 179, 142, 34, 115, 76, 177, 211, 126, 196, 224, 223, 64, 172, 105, 25, 155, 57, 27, 66, 203, 107, + 245, 224, 172, 110, 218, 74, 202, 198, 162, 226, 248, 178, 84, 69, 35, 93, 65, 114, 68, 229, 105, 121, 108, 27, + 231, 140, 104, 219, 58, 226, 199, 108, 255, 216, 102, 159, 27, 46, 220, 125, 131, 148, 229, 74, 177, 159, 27, 106, + 131, 183, 179, 104, 237, 239, 33, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2216, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6431405102692835638" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "011f63ad12fdbed4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "822e42542a23a8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd4ae064910f922de81b2c4a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5020718665008161720" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5c73e6d84c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14298318529904728028" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d64b9d5cf7f54a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e561041ccd2e5061" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1019541923641606757" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9f49685f421882a292613dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eda3b2295c054b9d1c9a18" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16726553838606894122" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9702650839310384313" + } + }, + { + "_tag": "ByteArray", + "bytearray": "966481143b6868" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12079914387985770143" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10577838909053118037" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4504032861466239734" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10744415523526242203" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d9da619d355974" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6707342780499769766" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1761988415925918170" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11939544537978386549" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c0ebd17c88" + }, + { + "_tag": "ByteArray", + "bytearray": "09cc" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16864319783513167133" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8536467180626399177" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ba28ce" + }, + { + "_tag": "ByteArray", + "bytearray": "23d427e6edfbe01e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6606072764775761050" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7049621723783343720" + } + }, + { + "_tag": "ByteArray", + "bytearray": "34b938ee914311b937" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b5940f0dda8a421369fbf48011f63ad12fdbed447822e42542a23a84cbd4ae064910f922de81b2c4a1b45ad2d0660fc23b846d5c73e6d84c71bc66dd4f27c5b57dc47d64b9d5cf7f54a415548e561041ccd2e50611b0e2623fa5046c2654cf9f49685f421882a292613dc4beda3b2295c054b9d1c9a18ffd8669f1be820a8185a9c442a80ff9f1b86a6bd8810bdbcb947966481143b68681ba7a47a223d05a69fffffffd8669f1b92cc0871a96aa6559fd8669f1b3e818a062c61a2f69f1b951bd4fe06f96f9b47d9da619d355974ffffffff9f1b5d1544b8ca7839a69f1b1873d720fd9e19da1ba5b1c87fb628387545c0ebd17c884209ccffd8669f1bea0a197dfae5151d9f1b76779fac32044fc943ba28ce4823d427e6edfbe01effff9f1b5bad7c2dd8d7849a1b61d5499b76fbae684934b938ee914311b937ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 89, 64, 240, 221, 168, 164, 33, 54, 159, 191, 72, 1, 31, 99, 173, 18, 253, 190, 212, 71, + 130, 46, 66, 84, 42, 35, 168, 76, 189, 74, 224, 100, 145, 15, 146, 45, 232, 27, 44, 74, 27, 69, 173, 45, 6, 96, + 252, 35, 184, 70, 213, 199, 62, 109, 132, 199, 27, 198, 109, 212, 242, 124, 91, 87, 220, 71, 214, 75, 157, 92, + 247, 245, 74, 65, 85, 72, 229, 97, 4, 28, 205, 46, 80, 97, 27, 14, 38, 35, 250, 80, 70, 194, 101, 76, 249, 244, + 150, 133, 244, 33, 136, 42, 41, 38, 19, 220, 75, 237, 163, 178, 41, 92, 5, 75, 157, 28, 154, 24, 255, 216, 102, + 159, 27, 232, 32, 168, 24, 90, 156, 68, 42, 128, 255, 159, 27, 134, 166, 189, 136, 16, 189, 188, 185, 71, 150, + 100, 129, 20, 59, 104, 104, 27, 167, 164, 122, 34, 61, 5, 166, 159, 255, 255, 255, 216, 102, 159, 27, 146, 204, 8, + 113, 169, 106, 166, 85, 159, 216, 102, 159, 27, 62, 129, 138, 6, 44, 97, 162, 246, 159, 27, 149, 27, 212, 254, 6, + 249, 111, 155, 71, 217, 218, 97, 157, 53, 89, 116, 255, 255, 255, 255, 159, 27, 93, 21, 68, 184, 202, 120, 57, + 166, 159, 27, 24, 115, 215, 32, 253, 158, 25, 218, 27, 165, 177, 200, 127, 182, 40, 56, 117, 69, 192, 235, 209, + 124, 136, 66, 9, 204, 255, 216, 102, 159, 27, 234, 10, 25, 125, 250, 229, 21, 29, 159, 27, 118, 119, 159, 172, 50, + 4, 79, 201, 67, 186, 40, 206, 72, 35, 212, 39, 230, 237, 251, 224, 30, 255, 255, 159, 27, 91, 173, 124, 45, 216, + 215, 132, 154, 27, 97, 213, 73, 155, 118, 251, 174, 104, 73, 52, 185, 56, 238, 145, 67, 17, 185, 55, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2217, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1910239893381325567" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "232bbf5cca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3675007960845958533" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e37a0e18e12c41f74" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7638876042609429423" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10660624797092355498" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8857519734974386437" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "928fa1fca5" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "576449920d7c" + } + ] + }, + "cborHex": "9fbf1b1a82890fe8c622ff45232bbf5cca1b33004044f4f4bd85497e37a0e18e12c41f741b6a02bd49cafa0baf1b93f225c542691daa1b7aec3b451229110545928fa1fca5ff46576449920d7cff", + "cborBytes": [ + 159, 191, 27, 26, 130, 137, 15, 232, 198, 34, 255, 69, 35, 43, 191, 92, 202, 27, 51, 0, 64, 68, 244, 244, 189, + 133, 73, 126, 55, 160, 225, 142, 18, 196, 31, 116, 27, 106, 2, 189, 73, 202, 250, 11, 175, 27, 147, 242, 37, 197, + 66, 105, 29, 170, 27, 122, 236, 59, 69, 18, 41, 17, 5, 69, 146, 143, 161, 252, 165, 255, 70, 87, 100, 73, 146, 13, + 124, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2218, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6268835214804227297" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11277232521559873435" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "845002233147549839" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11371608477694718439" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16752632763909673373" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8023856027793122117" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "533915638130596585" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11405950712223620997" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14478069107737138035" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a7" + }, + { + "_tag": "ByteArray", + "bytearray": "d68d9cb20db33e" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f1b56ff606a05dd94e19f1b9c80c73aa10f179b9f1b0bba0d0dd52be88f1b9dd011a93dd071e7ffffd8669f1be87d4ebd5168119d9f801b6f5a768b897c6345d8669f1b0768d971aeccdae99f415d1b9e4a13bdcfb3df851bc8ec6f25383a937341a747d68d9cb20db33effffa080ffffff", + "cborBytes": [ + 159, 27, 86, 255, 96, 106, 5, 221, 148, 225, 159, 27, 156, 128, 199, 58, 161, 15, 23, 155, 159, 27, 11, 186, 13, + 13, 213, 43, 232, 143, 27, 157, 208, 17, 169, 61, 208, 113, 231, 255, 255, 216, 102, 159, 27, 232, 125, 78, 189, + 81, 104, 17, 157, 159, 128, 27, 111, 90, 118, 139, 137, 124, 99, 69, 216, 102, 159, 27, 7, 104, 217, 113, 174, + 204, 218, 233, 159, 65, 93, 27, 158, 74, 19, 189, 207, 179, 223, 133, 27, 200, 236, 111, 37, 56, 58, 147, 115, 65, + 167, 71, 214, 141, 156, 178, 13, 179, 62, 255, 255, 160, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2219, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6828416351493271441" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13144880525107723690" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1506b6850f2e0b9291a3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75117799c9f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7686f6af2ebfdae413dea5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14499592572915012160" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b84" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12176507071791536158" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16496473428437412778" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3fbc0f7a7af64de976cf" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c83fb8b488117307df" + }, + { + "_tag": "ByteArray", + "bytearray": "89a21b37e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4989042300363877938" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da6e6d03f93f81b350a8d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3487101309809311537" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d8795b6c8c03ac6106cf01" + }, + { + "_tag": "ByteArray", + "bytearray": "730cfd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2253740798310661196" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b5ec3687e4139af91d8669f1bb66bff3169fefdaa80ffbf4a1506b6850f2e0b9291a34675117799c9f34b7686f6af2ebfdae413dea51bc938e69f787dd240428b841ba8fba4aafb2a981effd8669f1be4ef3f2e5caeabaa9f4a3fbc0f7a7af64de976cf9f49c83fb8b488117307df4589a21b37e31b453ca38a02962e324bda6e6d03f93f81b350a8d11b3064ac2a72fbbf31ff9f4bd8795b6c8c03ac6106cf0143730cfd1b1f46e550b31cbc4cffffffff", + "cborBytes": [ + 159, 27, 94, 195, 104, 126, 65, 57, 175, 145, 216, 102, 159, 27, 182, 107, 255, 49, 105, 254, 253, 170, 128, 255, + 191, 74, 21, 6, 182, 133, 15, 46, 11, 146, 145, 163, 70, 117, 17, 119, 153, 201, 243, 75, 118, 134, 246, 175, 46, + 191, 218, 228, 19, 222, 165, 27, 201, 56, 230, 159, 120, 125, 210, 64, 66, 139, 132, 27, 168, 251, 164, 170, 251, + 42, 152, 30, 255, 216, 102, 159, 27, 228, 239, 63, 46, 92, 174, 171, 170, 159, 74, 63, 188, 15, 122, 122, 246, 77, + 233, 118, 207, 159, 73, 200, 63, 184, 180, 136, 17, 115, 7, 223, 69, 137, 162, 27, 55, 227, 27, 69, 60, 163, 138, + 2, 150, 46, 50, 75, 218, 110, 109, 3, 249, 63, 129, 179, 80, 168, 209, 27, 48, 100, 172, 42, 114, 251, 191, 49, + 255, 159, 75, 216, 121, 91, 108, 140, 3, 172, 97, 6, 207, 1, 67, 115, 12, 253, 27, 31, 70, 229, 80, 179, 28, 188, + 76, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2220, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15717595026606394992" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14842527229607315712" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14111823179798383714" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c8e1c0a6f039de4989fced" + }, + { + "_tag": "ByteArray", + "bytearray": "7169" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1327061242590573704" + } + }, + { + "_tag": "ByteArray", + "bytearray": "25e23c602e1c1904adb6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14006741602909597517" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18099236645921231626" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13346237047041334432" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f05d8669f1bfffffffffffffff59fbf1bda201d66bc520e701bcdfb3fe051ce8900ffa0d8669f1bc3d7446a15018c629f4bc8e1c0a6f039de4989fced4271691b126aab2b47ccb4884a25e23c602e1c1904adb61bc261f146e61caf4dffffd8669f1bfb2d67d5e9de130a9f1bb9375be2050e9ca0ffffffffff", + "cborBytes": [ + 159, 5, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 191, 27, 218, 32, 29, 102, 188, 82, 14, + 112, 27, 205, 251, 63, 224, 81, 206, 137, 0, 255, 160, 216, 102, 159, 27, 195, 215, 68, 106, 21, 1, 140, 98, 159, + 75, 200, 225, 192, 166, 240, 57, 222, 73, 137, 252, 237, 66, 113, 105, 27, 18, 106, 171, 43, 71, 204, 180, 136, + 74, 37, 226, 60, 96, 46, 28, 25, 4, 173, 182, 27, 194, 97, 241, 70, 230, 28, 175, 77, 255, 255, 216, 102, 159, 27, + 251, 45, 103, 213, 233, 222, 19, 10, 159, 27, 185, 55, 91, 226, 5, 14, 156, 160, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2221, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae8eeb28" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4722fefeed1205aec1bc" + } + } + ] + } + ] + }, + "cborHex": "9fbf44ae8eeb284a4722fefeed1205aec1bcffff", + "cborBytes": [159, 191, 68, 174, 142, 235, 40, 74, 71, 34, 254, 254, 237, 18, 5, 174, 193, 188, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2222, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2018443484018065790" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e45ef87001d3e85243" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18445245576415128278" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11010378753204127470" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c3c8b914bcb80" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b1c02f3a79019417e49e45ef87001d3e852431bfffaad1fe911aad61b98ccb923fb3d86ee4100473c3c8b914bcb80ffff", + "cborBytes": [ + 159, 191, 27, 28, 2, 243, 167, 144, 25, 65, 126, 73, 228, 94, 248, 112, 1, 211, 232, 82, 67, 27, 255, 250, 173, + 31, 233, 17, 170, 214, 27, 152, 204, 185, 35, 251, 61, 134, 238, 65, 0, 71, 60, 60, 139, 145, 75, 203, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2223, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12870941202981518688" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17749387506244587177" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18145823754833919021" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c21a90e11713c0e9da07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62486cc9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "912d" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "96d751" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15673587707795172290" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1788422168953825561" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8578503887722302126" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f9f1bb29ec4d4b8a6fd60bf1bf6527de58a770ea941b71bfbd2ea9077b87c2d4ac21a90e11713c0e9da074462486cc942912dff4396d751d8669f1bd983c4fa5f0f6bc29f1b18d1c07cb8ed2919ffff1b770cf7d5c3fecaaeffa0ff", + "cborBytes": [ + 159, 159, 27, 178, 158, 196, 212, 184, 166, 253, 96, 191, 27, 246, 82, 125, 229, 138, 119, 14, 169, 65, 183, 27, + 251, 210, 234, 144, 119, 184, 124, 45, 74, 194, 26, 144, 225, 23, 19, 192, 233, 218, 7, 68, 98, 72, 108, 201, 66, + 145, 45, 255, 67, 150, 215, 81, 216, 102, 159, 27, 217, 131, 196, 250, 95, 15, 107, 194, 159, 27, 24, 209, 192, + 124, 184, 237, 41, 25, 255, 255, 27, 119, 12, 247, 213, 195, 254, 202, 174, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2224, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7ae25c4e02" + } + ] + }, + "cborHex": "9f457ae25c4e02ff", + "cborBytes": [159, 69, 122, 226, 92, 78, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2225, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6272195668406582614" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1698177424210338504" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb28851dc63d3bc4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3315123454111041056" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65a9bb71bbd8d65b5dc6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3880915739146905008" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "908027786300465388" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5821762820521922194" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a8eae9f733726007a43" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6743318187309581902" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7cc0b6ab94a2093f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11870932388405087077" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5727301131514383528" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17620475601352559216" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7158bfcf16b0b08112a3ef" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b570b50ba991e3d569fbf1b1791235eb7a522c848fb28851dc63d3bc41b2e01af379cdac6204a65a9bb71bbd8d65b5dc61b35dbc84d8312e5b01b0c99f675f09fa0ec1b50cb0e70b3c90e924a7a8eae9f733726007a431b5d951429ea04c64e487cc0b6ab94a2093f1ba4be061cc3908b651b4f7b7608d99b8ca8ffd8669f1bf4888133c00e8a709f4b7158bfcf16b0b08112a3efffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 87, 11, 80, 186, 153, 30, 61, 86, 159, 191, 27, 23, 145, 35, 94, 183, 165, 34, 200, 72, + 251, 40, 133, 29, 198, 61, 59, 196, 27, 46, 1, 175, 55, 156, 218, 198, 32, 74, 101, 169, 187, 113, 187, 216, 214, + 91, 93, 198, 27, 53, 219, 200, 77, 131, 18, 229, 176, 27, 12, 153, 246, 117, 240, 159, 160, 236, 27, 80, 203, 14, + 112, 179, 201, 14, 146, 74, 122, 142, 174, 159, 115, 55, 38, 0, 122, 67, 27, 93, 149, 20, 41, 234, 4, 198, 78, 72, + 124, 192, 182, 171, 148, 162, 9, 63, 27, 164, 190, 6, 28, 195, 144, 139, 101, 27, 79, 123, 118, 8, 217, 155, 140, + 168, 255, 216, 102, 159, 27, 244, 136, 129, 51, 192, 14, 138, 112, 159, 75, 113, 88, 191, 207, 22, 176, 176, 129, + 18, 163, 239, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2226, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12310362960858526314" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17790749414522284373" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4873844904591949480" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1154623077387137608" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d764dbb2f80f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3573951247033628205" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2910000589841719626" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2695883875112079558" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1949867938297884125" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13392248040951130962" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be257bbc4711cb9f" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "644272a6e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15525964174553159545" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17ee29ff9f5c21dcb178" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13382534293783403650" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cef917153a68744ad79b8cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9c9e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75e0de40232e6c874a847d15" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9778f9572a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9882c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c002ef06e6c0c8356d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d850d69d2f5592dd688794f1" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "531ddbc9bd9677d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17455266446993668409" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f20e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce38b6d931b23fb8645778" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7604065318529470575" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8926798505811471765" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11402194635367831688" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cd06a4c0fa39729722ff" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2eb0c546e19e973426" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8952057614725495548" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "300fe6fc7809451520d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9802843631248379375" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31b23a230562a7496a3ec6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a9206bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97adc993c570d15a5e443856" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7399" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14894135916379009322" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2790240047909988620" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17938758599080983761" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2294022416378746170" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10328374127299758438" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "19501713f13977aafc" + }, + { + "_tag": "ByteArray", + "bytearray": "0567" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10584457647521099671" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1baad731e3ca19326a9fd8669f1bf6e570554496e95580ffd8669f1b43a3601e348cfea880ff1b10060b924920f24846d764dbb2f80fffffbf1b319939b93c00f62d1b2862661e5db1614affbf1b2569b419dbc250c61b1b0f528f1d2b2ddd1bb9dad2a358d02b5248be257bbc4711cb9fff9f45644272a6e31bd7774e281bae9779bf4a17ee29ff9f5c21dcb1781bb9b8500957715c824c3cef917153a68744ad79b8cb43a9c9e84c75e0de40232e6c874a847d15459778f9572a41b7439882c641bc410149c002ef06e6c0c8356d4cd850d69d2f5592dd688794f1ffbf48531ddbc9bd9677d51bf23d905a00da393942f20e4bce38b6d931b23fb8645778ff9f1b6987111e7fd1106f1b7be25bf1e0616d951b9e3cbb9c04f6d8884acd06a4c0fa39729722ffffff9fbf492eb0c546e19e9734261b7c3c18f8768b3afc4a300fe6fc7809451520d71b880ab2584d428def4b31b23a230562a7496a3ec6446a9206bb4c97adc993c570d15a5e443856427399419f1bceb299b41428712affd8669f1b26b8ec8a4dbe690c9f1bf8f345e6f9b4bcd1ffff1b1fd6013bc309d53a1b8f55c18bf50989669f4919501713f13977aafc4205671b92e38c26cca96f97ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 170, 215, 49, 227, 202, 25, 50, 106, 159, 216, 102, 159, 27, 246, 229, 112, 85, 68, 150, + 233, 85, 128, 255, 216, 102, 159, 27, 67, 163, 96, 30, 52, 140, 254, 168, 128, 255, 27, 16, 6, 11, 146, 73, 32, + 242, 72, 70, 215, 100, 219, 178, 248, 15, 255, 255, 191, 27, 49, 153, 57, 185, 60, 0, 246, 45, 27, 40, 98, 102, + 30, 93, 177, 97, 74, 255, 191, 27, 37, 105, 180, 25, 219, 194, 80, 198, 27, 27, 15, 82, 143, 29, 43, 45, 221, 27, + 185, 218, 210, 163, 88, 208, 43, 82, 72, 190, 37, 123, 188, 71, 17, 203, 159, 255, 159, 69, 100, 66, 114, 166, + 227, 27, 215, 119, 78, 40, 27, 174, 151, 121, 191, 74, 23, 238, 41, 255, 159, 92, 33, 220, 177, 120, 27, 185, 184, + 80, 9, 87, 113, 92, 130, 76, 60, 239, 145, 113, 83, 166, 135, 68, 173, 121, 184, 203, 67, 169, 201, 232, 76, 117, + 224, 222, 64, 35, 46, 108, 135, 74, 132, 125, 21, 69, 151, 120, 249, 87, 42, 65, 183, 67, 152, 130, 198, 65, 188, + 65, 1, 73, 192, 2, 239, 6, 230, 192, 200, 53, 109, 76, 216, 80, 214, 157, 47, 85, 146, 221, 104, 135, 148, 241, + 255, 191, 72, 83, 29, 219, 201, 189, 150, 119, 213, 27, 242, 61, 144, 90, 0, 218, 57, 57, 66, 242, 14, 75, 206, + 56, 182, 217, 49, 178, 63, 184, 100, 87, 120, 255, 159, 27, 105, 135, 17, 30, 127, 209, 16, 111, 27, 123, 226, 91, + 241, 224, 97, 109, 149, 27, 158, 60, 187, 156, 4, 246, 216, 136, 74, 205, 6, 164, 192, 250, 57, 114, 151, 34, 255, + 255, 255, 159, 191, 73, 46, 176, 197, 70, 225, 158, 151, 52, 38, 27, 124, 60, 24, 248, 118, 139, 58, 252, 74, 48, + 15, 230, 252, 120, 9, 69, 21, 32, 215, 27, 136, 10, 178, 88, 77, 66, 141, 239, 75, 49, 178, 58, 35, 5, 98, 167, + 73, 106, 62, 198, 68, 106, 146, 6, 187, 76, 151, 173, 201, 147, 197, 112, 209, 90, 94, 68, 56, 86, 66, 115, 153, + 65, 159, 27, 206, 178, 153, 180, 20, 40, 113, 42, 255, 216, 102, 159, 27, 38, 184, 236, 138, 77, 190, 105, 12, + 159, 27, 248, 243, 69, 230, 249, 180, 188, 209, 255, 255, 27, 31, 214, 1, 59, 195, 9, 213, 58, 27, 143, 85, 193, + 139, 245, 9, 137, 102, 159, 73, 25, 80, 23, 19, 241, 57, 119, 170, 252, 66, 5, 103, 27, 146, 227, 140, 38, 204, + 169, 111, 151, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2227, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d2aee1f53d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9dc6bbafb78182" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2fb3caab8af0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9563813813516386347" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67204b0b470e3cb5f024f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1687339761993144452" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a230d41d2a72e7e08" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcacf15139b391b386bb7b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af860bfbc9d1fa26455a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a335f53e0c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3c8fcdf08" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "853418c24eb9" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4055240916521169707" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dc6dd8097b5859" + }, + { + "_tag": "ByteArray", + "bytearray": "36264799" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17786109451905042724" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1397365613361202862" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6957142410755156087" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1110972111373196985" + } + } + ] + } + ] + }, + "cborHex": "9fbf462d2aee1f53d0479dc6bbafb78182462fb3caab8af01b84b97dfdfc9e402b4b67204b0b470e3cb5f024f21b176aa292d8fe5884498a230d41d2a72e7e084bfcacf15139b391b386bb7b4aaf860bfbc9d1fa26455a45a335f53e0c45f3c8fcdf0846853418c24eb9ff418b9fd8669f1b38471c20c3dfb32b9f47dc6dd8097b585944362647991bf6d4f44fc90489241b1364709f2dbd86ae1b608cbc297cdda877ffff801b0f6af73fc5c3deb9ffff", + "cborBytes": [ + 159, 191, 70, 45, 42, 238, 31, 83, 208, 71, 157, 198, 187, 175, 183, 129, 130, 70, 47, 179, 202, 171, 138, 240, + 27, 132, 185, 125, 253, 252, 158, 64, 43, 75, 103, 32, 75, 11, 71, 14, 60, 181, 240, 36, 242, 27, 23, 106, 162, + 146, 216, 254, 88, 132, 73, 138, 35, 13, 65, 210, 167, 46, 126, 8, 75, 252, 172, 241, 81, 57, 179, 145, 179, 134, + 187, 123, 74, 175, 134, 11, 251, 201, 209, 250, 38, 69, 90, 69, 163, 53, 245, 62, 12, 69, 243, 200, 252, 223, 8, + 70, 133, 52, 24, 194, 78, 185, 255, 65, 139, 159, 216, 102, 159, 27, 56, 71, 28, 32, 195, 223, 179, 43, 159, 71, + 220, 109, 216, 9, 123, 88, 89, 68, 54, 38, 71, 153, 27, 246, 212, 244, 79, 201, 4, 137, 36, 27, 19, 100, 112, 159, + 45, 189, 134, 174, 27, 96, 140, 188, 41, 124, 221, 168, 119, 255, 255, 128, 27, 15, 106, 247, 63, 197, 195, 222, + 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2228, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14914996957831925801" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18cb79241ebdc58e979728" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e76c1e0d159" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf0b031bcefcb6b5c99a90294b18cb79241ebdc58e9797281bfffffffffffffff7468e76c1e0d159ff80ff", + "cborBytes": [ + 159, 191, 11, 3, 27, 206, 252, 182, 181, 201, 154, 144, 41, 75, 24, 203, 121, 36, 30, 189, 197, 142, 151, 151, 40, + 27, 255, 255, 255, 255, 255, 255, 255, 247, 70, 142, 118, 193, 224, 209, 89, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2229, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "276411526887730053" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16129443371509283021" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16181095037840684661" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17317807790541787427" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14188371589737247044" + } + } + ] + }, + "cborHex": "9fd8669f1b03d602d1b7f76b8580ff1bdfd74b49f796f8cd1be08ecc34af5476751bf055366e8bbc51231bc4e738c9a3887144ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 3, 214, 2, 209, 183, 247, 107, 133, 128, 255, 27, 223, 215, 75, 73, 247, 150, 248, 205, + 27, 224, 142, 204, 52, 175, 84, 118, 117, 27, 240, 85, 54, 110, 139, 188, 81, 35, 27, 196, 231, 56, 201, 163, 136, + 113, 68, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2230, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8264083497395716905" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4494212765860211144" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f1b72afec27e8708329809fd8669f1b3e5ea6b2fe1fa9c880ffffff", + "cborBytes": [ + 159, 27, 114, 175, 236, 39, 232, 112, 131, 41, 128, 159, 216, 102, 159, 27, 62, 94, 166, 178, 254, 31, 169, 200, + 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2231, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ee708f026d8467f713" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d5f3708be27eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9155698754278067139" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "496047d75d344cba150fe98b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41c6c6eb3de40d4b09" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c482c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "910162fc5981" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcf19e66" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "baea95c75d398d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbfdb08f8ffcb0ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8332239dcce7a81e78114b33" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc127d0db8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d026a9b71d143" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17833216154084031907" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17118895492342700621" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f17f7f968ae7c" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f49ee708f026d8467f713089fbf473d5f3708be27eb1b7f0f93820f3b0bc34c496047d75d344cba150fe98b4941c6c6eb3de40d4b0943c482c046910162fc598144dcf19e6647baea95c75d398d48fbfdb08f8ffcb0ea4c8332239dcce7a81e78114b3345fc127d0db8478d026a9b71d143ff9f1bf77c4f9b92efbda31bed9288c0201f5a4d474f17f7f968ae7cffff80ff", + "cborBytes": [ + 159, 73, 238, 112, 143, 2, 109, 132, 103, 247, 19, 8, 159, 191, 71, 61, 95, 55, 8, 190, 39, 235, 27, 127, 15, 147, + 130, 15, 59, 11, 195, 76, 73, 96, 71, 215, 93, 52, 76, 186, 21, 15, 233, 139, 73, 65, 198, 198, 235, 61, 228, 13, + 75, 9, 67, 196, 130, 192, 70, 145, 1, 98, 252, 89, 129, 68, 220, 241, 158, 102, 71, 186, 234, 149, 199, 93, 57, + 141, 72, 251, 253, 176, 143, 143, 252, 176, 234, 76, 131, 50, 35, 157, 204, 231, 168, 30, 120, 17, 75, 51, 69, + 252, 18, 125, 13, 184, 71, 141, 2, 106, 155, 113, 209, 67, 255, 159, 27, 247, 124, 79, 155, 146, 239, 189, 163, + 27, 237, 146, 136, 192, 32, 31, 90, 77, 71, 79, 23, 247, 249, 104, 174, 124, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2232, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12252495226309312372" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + "cborHex": "9f1baa099b7de855ff740aff", + "cborBytes": [159, 27, 170, 9, 155, 125, 232, 85, 255, 116, 10, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2233, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5400" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16747547769991018352" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6404e7060056" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de73d3d8a9246612791b95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69c2fc93a23e" + } + } + ] + } + ] + }, + "cborHex": "9fbf4103064254001be86b3df6e9333770466404e70600564bde73d3d8a9246612791b9542df024669c2fc93a23effff", + "cborBytes": [ + 159, 191, 65, 3, 6, 66, 84, 0, 27, 232, 107, 61, 246, 233, 51, 55, 112, 70, 100, 4, 231, 6, 0, 86, 75, 222, 115, + 211, 216, 169, 36, 102, 18, 121, 27, 149, 66, 223, 2, 70, 105, 194, 252, 147, 162, 62, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2234, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4986743358601615151" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d824de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17088831361608771740" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "821585558918263397" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11043470945179737142" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "612099609531257957" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10222693797416761088" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "909748829659911702" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4864095104936766084" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5253030533854970445" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "318fc9af2531e9fb0bcd58fb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8086569148847246264" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5473127543762724526" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12882984744930148203" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7817341279667732936" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6916470160919041800" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6f" + }, + { + "_tag": "ByteArray", + "bytearray": "4ac772" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9835002772135333259" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8afd755096db659c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c90fec9eff7c3e105739734" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "766138" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73cead6140494384" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4499087378593467825" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8203cd6625c1fde9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cafa830db4190e1" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b453478a9eb7cd72f9fbf43d824de1bed27b995373ee89cffd8669f1b0b66dbb67fe9f2659f1b99424a5056c91c36ffffbf1b087e9d5a114414651b8dde4dd8ba9d77001b0ca013bd92b4d6161b4380bcba1378ea841b48e6837054b4c24d4c318fc9af2531e9fb0bcd58fb1b703943cbe0ac4bb81b4bf47480d06226ae1bb2c98e5e58567f6b1b6c7cc679ce97c1c8ff1b5ffc3cf7612b1708ffff416f434ac772d8669f1b887cf2e9c61bcd8b9f488afd755096db659cbf4c2c90fec9eff7c3e105739734437661384873cead61404943841b3e6ff8223681cdb1488203cd6625c1fde9488cafa830db4190e1ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 69, 52, 120, 169, 235, 124, 215, 47, 159, 191, 67, 216, 36, 222, 27, 237, 39, 185, 149, + 55, 62, 232, 156, 255, 216, 102, 159, 27, 11, 102, 219, 182, 127, 233, 242, 101, 159, 27, 153, 66, 74, 80, 86, + 201, 28, 54, 255, 255, 191, 27, 8, 126, 157, 90, 17, 68, 20, 101, 27, 141, 222, 77, 216, 186, 157, 119, 0, 27, 12, + 160, 19, 189, 146, 180, 214, 22, 27, 67, 128, 188, 186, 19, 120, 234, 132, 27, 72, 230, 131, 112, 84, 180, 194, + 77, 76, 49, 143, 201, 175, 37, 49, 233, 251, 11, 205, 88, 251, 27, 112, 57, 67, 203, 224, 172, 75, 184, 27, 75, + 244, 116, 128, 208, 98, 38, 174, 27, 178, 201, 142, 94, 88, 86, 127, 107, 27, 108, 124, 198, 121, 206, 151, 193, + 200, 255, 27, 95, 252, 60, 247, 97, 43, 23, 8, 255, 255, 65, 111, 67, 74, 199, 114, 216, 102, 159, 27, 136, 124, + 242, 233, 198, 27, 205, 139, 159, 72, 138, 253, 117, 80, 150, 219, 101, 156, 191, 76, 44, 144, 254, 201, 239, 247, + 195, 225, 5, 115, 151, 52, 67, 118, 97, 56, 72, 115, 206, 173, 97, 64, 73, 67, 132, 27, 62, 111, 248, 34, 54, 129, + 205, 177, 72, 130, 3, 205, 102, 37, 193, 253, 233, 72, 140, 175, 168, 48, 219, 65, 144, 225, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2235, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "03e257f9f92e77" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9406409323894759231" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10298922679962782314" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13185442632939212945" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a1194efce9ead18c3e81ba" + }, + { + "_tag": "ByteArray", + "bytearray": "cccb17d686fbb0a55b4f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1f1c0ebe" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3232870353284016060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2016365585163244183" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11272439696544764" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73fd6335" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15561681671712458704" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14521699288861715327" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f08d8669f1bfffffffffffffffb9f4703e257f9f92e779f1b828a47715aab5f3f1b8eed1f9c84654a6a1bb6fc1a3716a210914ba1194efce9ead18c3e81ba4acccb17d686fbb0a55b4fff441f1c0ebebf1b2cdd76753462a7bc1b1bfb91d108fa5297ffbf1b00280c3963dd53fc4473fd63351bd7f63307f620c7d01bc98770905fa52b7fffffffff", + "cborBytes": [ + 159, 8, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 71, 3, 226, 87, 249, 249, 46, 119, 159, + 27, 130, 138, 71, 113, 90, 171, 95, 63, 27, 142, 237, 31, 156, 132, 101, 74, 106, 27, 182, 252, 26, 55, 22, 162, + 16, 145, 75, 161, 25, 78, 252, 233, 234, 209, 140, 62, 129, 186, 74, 204, 203, 23, 214, 134, 251, 176, 165, 91, + 79, 255, 68, 31, 28, 14, 190, 191, 27, 44, 221, 118, 117, 52, 98, 167, 188, 27, 27, 251, 145, 209, 8, 250, 82, + 151, 255, 191, 27, 0, 40, 12, 57, 99, 221, 83, 252, 68, 115, 253, 99, 53, 27, 215, 246, 51, 7, 246, 32, 199, 208, + 27, 201, 135, 112, 144, 95, 165, 43, 127, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2236, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10263002381318540625" + } + } + ] + }, + "cborHex": "9f1b8e6d824a437acd51ff", + "cborBytes": [159, 27, 142, 109, 130, 74, 67, 122, 205, 81, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2237, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2214869429735208560" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15370842373239974746" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2628a4b218cf549d8f9171" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7b9d1624e96c3" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9362355364091902840" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8a4a19c8bcf6184dadbdfe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9514107726573815322" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5833222406951712337" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04fcc36bcd33f53fd6" + }, + { + "_tag": "ByteArray", + "bytearray": "6021e6d913f342" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13540513100416358915" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9dad77" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16124577389688981043" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5090c9f390643a8e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16071119054498915729" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95cd05c47efdc6c818" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13563175236867537356" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "660a7788e4a4ce77bd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6897326390950033213" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "370642868249965246" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c1d86402652" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7366572042698346802" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "86b4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c658b491fe38699490" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c35afbec64b443576547329" + } + } + ] + } + ] + }, + "cborHex": "9f1b1ebccc02ef3d3670d8669f1bd55033b3437dab5a9fbf4b2628a4b218cf549d8f917147a7b9d1624e96c3ffd8669f1b81edc49989abbb789f4b8a4a19c8bcf6184dadbdfe1b8408e691c53b461a1b50f3c4df9634b6514904fcc36bcd33f53fd6476021e6d913f342ffffd8669f1bbbe990ec92d71a039f439dad771bdfc601b449b50633485090c9f390643a8e1bdf0815a1b26b65914995cd05c47efdc6c818ffffd8669f1bbc3a140463dd39cc9f49660a7788e4a4ce77bd1b5fb839cf1880f73d1b0524c9b9949232be468c1d864026521b663b523e395bd132ffffffff4286b4bf49c658b491fe386994904c7c35afbec64b443576547329ffff", + "cborBytes": [ + 159, 27, 30, 188, 204, 2, 239, 61, 54, 112, 216, 102, 159, 27, 213, 80, 51, 179, 67, 125, 171, 90, 159, 191, 75, + 38, 40, 164, 178, 24, 207, 84, 157, 143, 145, 113, 71, 167, 185, 209, 98, 78, 150, 195, 255, 216, 102, 159, 27, + 129, 237, 196, 153, 137, 171, 187, 120, 159, 75, 138, 74, 25, 200, 188, 246, 24, 77, 173, 189, 254, 27, 132, 8, + 230, 145, 197, 59, 70, 26, 27, 80, 243, 196, 223, 150, 52, 182, 81, 73, 4, 252, 195, 107, 205, 51, 245, 63, 214, + 71, 96, 33, 230, 217, 19, 243, 66, 255, 255, 216, 102, 159, 27, 187, 233, 144, 236, 146, 215, 26, 3, 159, 67, 157, + 173, 119, 27, 223, 198, 1, 180, 73, 181, 6, 51, 72, 80, 144, 201, 243, 144, 100, 58, 142, 27, 223, 8, 21, 161, + 178, 107, 101, 145, 73, 149, 205, 5, 196, 126, 253, 198, 200, 24, 255, 255, 216, 102, 159, 27, 188, 58, 20, 4, 99, + 221, 57, 204, 159, 73, 102, 10, 119, 136, 228, 164, 206, 119, 189, 27, 95, 184, 57, 207, 24, 128, 247, 61, 27, 5, + 36, 201, 185, 148, 146, 50, 190, 70, 140, 29, 134, 64, 38, 82, 27, 102, 59, 82, 62, 57, 91, 209, 50, 255, 255, + 255, 255, 66, 134, 180, 191, 73, 198, 88, 180, 145, 254, 56, 105, 148, 144, 76, 124, 53, 175, 190, 198, 75, 68, + 53, 118, 84, 115, 41, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2238, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5342571765174105671" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8876032799344925365" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ec66828852acdfe7e13be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5182318234919110711" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fac70aa7dbeb42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3db41" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "725931654825910920" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4487479980877880707" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13838929298986467989" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4140af961970edb60e" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9fbf1b4a24a0b6da3bf6471b7b2e00cdc3ab9ab54b4ec66828852acdfe7e13be1b47eb4afa4162083747fac70aa7dbeb4243a3db41ff9f1b0a1306fe711c2288ff1b3e46bb4454e71d831bc00dc0e029d58295ff494140af961970edb60e80ff", + "cborBytes": [ + 159, 159, 191, 27, 74, 36, 160, 182, 218, 59, 246, 71, 27, 123, 46, 0, 205, 195, 171, 154, 181, 75, 78, 198, 104, + 40, 133, 42, 205, 254, 126, 19, 190, 27, 71, 235, 74, 250, 65, 98, 8, 55, 71, 250, 199, 10, 167, 219, 235, 66, 67, + 163, 219, 65, 255, 159, 27, 10, 19, 6, 254, 113, 28, 34, 136, 255, 27, 62, 70, 187, 68, 84, 231, 29, 131, 27, 192, + 13, 192, 224, 41, 213, 130, 149, 255, 73, 65, 64, 175, 150, 25, 112, 237, 182, 14, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2239, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14378700210497928752" + } + } + ] + }, + "cborHex": "9f1bc78b67a8ea903e30ff", + "cborBytes": [159, 27, 199, 139, 103, 168, 234, 144, 62, 48, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2240, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11285237824271745129" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "107e" + } + ] + } + ] + }, + "cborHex": "9f1b9c9d3802698500699f42107effff", + "cborBytes": [159, 27, 156, 157, 56, 2, 105, 133, 0, 105, 159, 66, 16, 126, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2241, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2273335857371818017" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1452187460997739479" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7066310235225560231" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15599935159021079069" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8051487931214171218" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9565643b6655" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11892064512870039249" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13614988502707141013" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3dd2f3bc9344c73243" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14034046967947288051" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5f0696142d35078092ab548" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6855b8211e1354906fce4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c15a7a9af" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c25e35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bfba933c10a9d8982f77fbb" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10200283455567484001" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40765a4d3ffdd9fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14535170405036636446" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6016257817668647911" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0dff48" + }, + { + "_tag": "ByteArray", + "bytearray": "c0fad68ac2af82e076e1cbf7" + } + ] + }, + "cborHex": "9fd8669f1b1f8c82eae9ce28219fbf1b142734cd400bf3d7413b1b621093b8535394a71bd87e1a6008940a1d1b6fbca19d655d8c52469565643b6655ff1ba50919aae7a5bed1bf1bbcf227e86ce2f995493dd2f3bc9344c732431bc2c2f35c9da55df34cc5f0696142d35078092ab5484b6855b8211e1354906fce4c454c15a7a9af43c25e354c8bfba933c10a9d8982f77fbbffffffbf1b8d8eafc26964d4614840765a4d3ffdd9fc1bc9b74c7905fab91e1b537e0a9c134e7be7ff430dff484cc0fad68ac2af82e076e1cbf7ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 31, 140, 130, 234, 233, 206, 40, 33, 159, 191, 27, 20, 39, 52, 205, 64, 11, 243, 215, 65, + 59, 27, 98, 16, 147, 184, 83, 83, 148, 167, 27, 216, 126, 26, 96, 8, 148, 10, 29, 27, 111, 188, 161, 157, 101, 93, + 140, 82, 70, 149, 101, 100, 59, 102, 85, 255, 27, 165, 9, 25, 170, 231, 165, 190, 209, 191, 27, 188, 242, 39, 232, + 108, 226, 249, 149, 73, 61, 210, 243, 188, 147, 68, 199, 50, 67, 27, 194, 194, 243, 92, 157, 165, 93, 243, 76, + 197, 240, 105, 97, 66, 211, 80, 120, 9, 42, 181, 72, 75, 104, 85, 184, 33, 30, 19, 84, 144, 111, 206, 76, 69, 76, + 21, 167, 169, 175, 67, 194, 94, 53, 76, 139, 251, 169, 51, 193, 10, 157, 137, 130, 247, 127, 187, 255, 255, 255, + 191, 27, 141, 142, 175, 194, 105, 100, 212, 97, 72, 64, 118, 90, 77, 63, 253, 217, 252, 27, 201, 183, 76, 121, 5, + 250, 185, 30, 27, 83, 126, 10, 156, 19, 78, 123, 231, 255, 67, 13, 255, 72, 76, 192, 250, 214, 138, 194, 175, 130, + 224, 118, 225, 203, 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2242, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fd330afdfaee0701047305fe" + } + ] + }, + "cborHex": "9f4cfd330afdfaee0701047305feff", + "cborBytes": [159, 76, 253, 51, 10, 253, 250, 238, 7, 1, 4, 115, 5, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2243, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9467545384291007533" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11946359688461614103" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12584194231120541904" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "516ea4b713fe26c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a811ef9cc6c33200c5590c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "528c31a4b006" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4294610636062137246" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59d0d075917ca43df248e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3487283754019451331" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3bfb55c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + } + ] + } + ] + }, + "cborHex": "9f1b83637a5da58dfc2d1ba5c9fed795ccfc171baea409fab275b8d0bf48516ea4b713fe26c54ba811ef9cc6c33200c5590c46528c31a4b0061b3b99859ea3191b9e4b59d0d075917ca43df248e21b306552190d51f1c344a3bfb55c41f9ffff", + "cborBytes": [ + 159, 27, 131, 99, 122, 93, 165, 141, 252, 45, 27, 165, 201, 254, 215, 149, 204, 252, 23, 27, 174, 164, 9, 250, + 178, 117, 184, 208, 191, 72, 81, 110, 164, 183, 19, 254, 38, 197, 75, 168, 17, 239, 156, 198, 195, 50, 0, 197, 89, + 12, 70, 82, 140, 49, 164, 176, 6, 27, 59, 153, 133, 158, 163, 25, 27, 158, 75, 89, 208, 208, 117, 145, 124, 164, + 61, 242, 72, 226, 27, 48, 101, 82, 25, 13, 81, 241, 195, 68, 163, 191, 181, 92, 65, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2244, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1148277716662192300" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17004613925994791149" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8899915286003763365" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6848910500098251597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0123cbc40203fffd01fccd" + }, + { + "_tag": "ByteArray", + "bytearray": "04" + } + ] + } + ] + }, + "cborHex": "9fd905019fd8669f1b0fef807fdd2588ac9f1bebfc8645799480edffffffd8669f1b7b82d9cc8152c8a580ffd8669f1b5f0c37d010cc9b4d9f4b0123cbc40203fffd01fccd4104ffffff", + "cborBytes": [ + 159, 217, 5, 1, 159, 216, 102, 159, 27, 15, 239, 128, 127, 221, 37, 136, 172, 159, 27, 235, 252, 134, 69, 121, + 148, 128, 237, 255, 255, 255, 216, 102, 159, 27, 123, 130, 217, 204, 129, 82, 200, 165, 128, 255, 216, 102, 159, + 27, 95, 12, 55, 208, 16, 204, 155, 77, 159, 75, 1, 35, 203, 196, 2, 3, 255, 253, 1, 252, 205, 65, 4, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2245, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5872a315e940872b9f6c2e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3204451780872673148" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14878150328854487424" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07fba1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10096509853301010258" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2223034179161642586" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13690507412447411553" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6267158477004725463" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18046420802616884865" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0e28ca0a" + }, + { + "_tag": "ByteArray", + "bytearray": "91dd85175c35acb5f6" + }, + { + "_tag": "ByteArray", + "bytearray": "977ed4e6c715e336c91c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24d943888d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "497b0c2d65756cfa08a1e5e3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28b25a4b4c4d1168995a16f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9736797725887507014" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc5b30" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d8d17b646e18342" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2013fba96bf5038f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3c07e" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4b5872a315e940872b9f6c2ed8669f1b2c787feab2c8977c9fbf1bce79cee5723ba180416a4307fba11b8c1e0237cd3cef52ff1b1ed9cdcecc7b565ad8669f1bbdfe73f4c9c7bd619f1b56f96b6e14f1dcd71bfa71c41b1f32fe81440e28ca0a4991dd85175c35acb5f64a977ed4e6c715e336c91cffffbf4524d943888d4c497b0c2d65756cfa08a1e5e34c28b25a4b4c4d1168995a16f31b87200df1a55b2a46416543fc5b30417e428bea488d8d17b646e18342482013fba96bf5038f41c043c3c07effffffff", + "cborBytes": [ + 159, 75, 88, 114, 163, 21, 233, 64, 135, 43, 159, 108, 46, 216, 102, 159, 27, 44, 120, 127, 234, 178, 200, 151, + 124, 159, 191, 27, 206, 121, 206, 229, 114, 59, 161, 128, 65, 106, 67, 7, 251, 161, 27, 140, 30, 2, 55, 205, 60, + 239, 82, 255, 27, 30, 217, 205, 206, 204, 123, 86, 90, 216, 102, 159, 27, 189, 254, 115, 244, 201, 199, 189, 97, + 159, 27, 86, 249, 107, 110, 20, 241, 220, 215, 27, 250, 113, 196, 27, 31, 50, 254, 129, 68, 14, 40, 202, 10, 73, + 145, 221, 133, 23, 92, 53, 172, 181, 246, 74, 151, 126, 212, 230, 199, 21, 227, 54, 201, 28, 255, 255, 191, 69, + 36, 217, 67, 136, 141, 76, 73, 123, 12, 45, 101, 117, 108, 250, 8, 161, 229, 227, 76, 40, 178, 90, 75, 76, 77, 17, + 104, 153, 90, 22, 243, 27, 135, 32, 13, 241, 165, 91, 42, 70, 65, 101, 67, 252, 91, 48, 65, 126, 66, 139, 234, 72, + 141, 141, 23, 182, 70, 225, 131, 66, 72, 32, 19, 251, 169, 107, 245, 3, 143, 65, 192, 67, 195, 192, 126, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2246, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3259139321151468293" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24a964" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11239898454422840546" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23cf422a3cd14fff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b56323ddae2b2800d90" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11375826338972344674" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a59" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10631548915703896432" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b2d3ac9f1e6bdb3054324a9641b9bfc2417bf55e4e24823cf422a3cd14fff4a6b56323ddae2b2800d901b9ddf0dc898faa162429a591b938ad96914b85970ffff", + "cborBytes": [ + 159, 191, 27, 45, 58, 201, 241, 230, 189, 179, 5, 67, 36, 169, 100, 27, 155, 252, 36, 23, 191, 85, 228, 226, 72, + 35, 207, 66, 42, 60, 209, 79, 255, 74, 107, 86, 50, 61, 218, 226, 178, 128, 13, 144, 27, 157, 223, 13, 200, 152, + 250, 161, 98, 66, 154, 89, 27, 147, 138, 217, 105, 20, 184, 89, 112, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2247, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3c312aa1a3888fcf10" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17623519384339868446" + } + } + ] + }, + "cborHex": "9f493c312aa1a3888fcf101bf4935181b3c9eb1eff", + "cborBytes": [159, 73, 60, 49, 42, 161, 163, 136, 143, 207, 16, 27, 244, 147, 81, 129, 179, 201, 235, 30, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2248, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7743407224489660716" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7e4c57f57eef1a" + } + ] + }, + "cborHex": "9fa01b6b761bd826e6512c477e4c57f57eef1aff", + "cborBytes": [159, 160, 27, 107, 118, 27, 216, 38, 230, 81, 44, 71, 126, 76, 87, 245, 126, 239, 26, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2249, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4489526b78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6933029742145124582" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "669363950194245716" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "9e2690fa2d27d1bb26bcf4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3281256138266918960" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16624491088590351328" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3552676909263611394" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7632610814053512913" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9888995288985142014" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c92993b40ade212a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14060831549008898180" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79216d049cfb43197565" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14573730527554240785" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1d811eb75" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7688159463192577839" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2119148910592127274" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13640442193972951586" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d5daea256aac69408999f91" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14688316489397414222" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12925396141339989382" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c865241e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd6ffbc6d757ad90245c" + } + } + ] + } + ] + }, + "cborHex": "9fbf454489526b781b603711d155c738e6ff9fd8669f1b094a0ef75cc7c05480ff4b9e2690fa2d27d1bb26bcf49f1b2d895d12aa78403041ea1be6b60e9093132be0ffffd8669f1b314da4d37a63e6029fbf1b69ec7b189876f6d1413c1b893cc4d2397882fe48c92993b40ade212a1bc3221bcbdd47e8844a79216d049cfb431975651bca404ab32b23011145a1d811eb75ffbf1b6ab1d44c5426c72f1b1d68bab4d9fff12a1bbd4c95e7bf01fa224c9d5daea256aac69408999f91ffffffbf1bcbd762066b0ba94e1bb3603b4f11c6558644c865241e4afd6ffbc6d757ad90245cffff", + "cborBytes": [ + 159, 191, 69, 68, 137, 82, 107, 120, 27, 96, 55, 17, 209, 85, 199, 56, 230, 255, 159, 216, 102, 159, 27, 9, 74, + 14, 247, 92, 199, 192, 84, 128, 255, 75, 158, 38, 144, 250, 45, 39, 209, 187, 38, 188, 244, 159, 27, 45, 137, 93, + 18, 170, 120, 64, 48, 65, 234, 27, 230, 182, 14, 144, 147, 19, 43, 224, 255, 255, 216, 102, 159, 27, 49, 77, 164, + 211, 122, 99, 230, 2, 159, 191, 27, 105, 236, 123, 24, 152, 118, 246, 209, 65, 60, 27, 137, 60, 196, 210, 57, 120, + 130, 254, 72, 201, 41, 147, 180, 10, 222, 33, 42, 27, 195, 34, 27, 203, 221, 71, 232, 132, 74, 121, 33, 109, 4, + 156, 251, 67, 25, 117, 101, 27, 202, 64, 74, 179, 43, 35, 1, 17, 69, 161, 216, 17, 235, 117, 255, 191, 27, 106, + 177, 212, 76, 84, 38, 199, 47, 27, 29, 104, 186, 180, 217, 255, 241, 42, 27, 189, 76, 149, 231, 191, 1, 250, 34, + 76, 157, 93, 174, 162, 86, 170, 198, 148, 8, 153, 159, 145, 255, 255, 255, 191, 27, 203, 215, 98, 6, 107, 11, 169, + 78, 27, 179, 96, 59, 79, 17, 198, 85, 134, 68, 200, 101, 36, 30, 74, 253, 111, 251, 198, 215, 87, 173, 144, 36, + 92, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2250, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11809198851363852027" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9634115332097757801" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "508712080650394892" + } + } + ] + }, + "cborHex": "9fd8669f1ba3e2b3c9997e4efb9fa01b85b340d9ced4d269ffff1b070f4ef12c1ddd0cff", + "cborBytes": [ + 159, 216, 102, 159, 27, 163, 226, 179, 201, 153, 126, 78, 251, 159, 160, 27, 133, 179, 64, 217, 206, 212, 210, + 105, 255, 255, 27, 7, 15, 78, 241, 44, 29, 221, 12, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2251, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "649d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c608008f9f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8d44b52a83e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11773561651960026310" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7178e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16638966572151675432" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c06b10d5188a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6767096915873981242" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13452358939909107033" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10019460307674704420" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1795496501398677353" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10102922889357196903" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3922199028533823252" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + }, + "cborHex": "9fbf42649d45c608008f9f46a8d44b52a83e1ba36417f1863d14c643e7178e1be6e97bf0bab31a28ff46c06b10d5188ad87c9fd8669f1b5de98eca974f633a80ffa0ffd8669f1bbab0612ea4552d599fbf061b8b0c46108013aa241b18eae28e1953276941fa1b8c34cad71d4c7e671b366e733c5a240714ff80ffff0dff", + "cborBytes": [ + 159, 191, 66, 100, 157, 69, 198, 8, 0, 143, 159, 70, 168, 212, 75, 82, 168, 62, 27, 163, 100, 23, 241, 134, 61, + 20, 198, 67, 231, 23, 142, 27, 230, 233, 123, 240, 186, 179, 26, 40, 255, 70, 192, 107, 16, 213, 24, 138, 216, + 124, 159, 216, 102, 159, 27, 93, 233, 142, 202, 151, 79, 99, 58, 128, 255, 160, 255, 216, 102, 159, 27, 186, 176, + 97, 46, 164, 85, 45, 89, 159, 191, 6, 27, 139, 12, 70, 16, 128, 19, 170, 36, 27, 24, 234, 226, 142, 25, 83, 39, + 105, 65, 250, 27, 140, 52, 202, 215, 29, 76, 126, 103, 27, 54, 110, 115, 60, 90, 36, 7, 20, 255, 128, 255, 255, + 13, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2252, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5729249589193074993" + } + } + ] + }, + "cborHex": "9f1b4f8262258167e931ff", + "cborBytes": [159, 27, 79, 130, 98, 37, 129, 103, 233, 49, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2253, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7833440276948751000" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4466889907727598387" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "711fa7b7d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9894939217485050283" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11740114351667242096" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf77e2d7d454" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1182284145432707118" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b6cb5f86db4c492989fd8669f1b3dfd94b458e183339f45711fa7b7d81b8951e2caec4731ab1ba2ed43cd1197647046bf77e2d7d4541b1068512a9017c02effffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 108, 181, 248, 109, 180, 196, 146, 152, 159, 216, 102, 159, 27, 61, 253, 148, 180, 88, + 225, 131, 51, 159, 69, 113, 31, 167, 183, 216, 27, 137, 81, 226, 202, 236, 71, 49, 171, 27, 162, 237, 67, 205, 17, + 151, 100, 112, 70, 191, 119, 226, 215, 212, 84, 27, 16, 104, 81, 42, 144, 23, 192, 46, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2254, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10405783385043379240" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1b9068c4db432c242880ff", + "cborBytes": [159, 27, 144, 104, 196, 219, 67, 44, 36, 40, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2255, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16490526395959192422" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8" + } + ] + } + ] + }, + "cborHex": "9fd8669f1be4da1e62f659ab669f41f8ffffff", + "cborBytes": [159, 216, 102, 159, 27, 228, 218, 30, 98, 246, 89, 171, 102, 159, 65, 248, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2256, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18241690700123293264" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8963113812004370485" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3968862422103330300" + } + }, + { + "_tag": "ByteArray", + "bytearray": "735ddb0227ef" + }, + { + "_tag": "ByteArray", + "bytearray": "fbc2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9180587801307583287" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "355f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc2e87" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11535603119981259723" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a86a4712ccaa537c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10639944450085816889" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17383058409648960228" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15548283888980243007" + } + } + ] + }, + "cborHex": "9f9fd8669f1bfd27810b0b6546509f1b7c636085fdeaf8351b37143b584fdd8dfc46735ddb0227ef42fbc21b7f67fff6e6391337ffffbf42355f43dc2e8741501ba016b1eb5c5eebcb48a86a4712ccaa537c1b93a8ad1ac1410a39ff1bf13d078630fe32e4ff1bd7c699d19598b23fff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 253, 39, 129, 11, 11, 101, 70, 80, 159, 27, 124, 99, 96, 133, 253, 234, 248, 53, 27, + 55, 20, 59, 88, 79, 221, 141, 252, 70, 115, 93, 219, 2, 39, 239, 66, 251, 194, 27, 127, 103, 255, 246, 230, 57, + 19, 55, 255, 255, 191, 66, 53, 95, 67, 220, 46, 135, 65, 80, 27, 160, 22, 177, 235, 92, 94, 235, 203, 72, 168, + 106, 71, 18, 204, 170, 83, 124, 27, 147, 168, 173, 26, 193, 65, 10, 57, 255, 27, 241, 61, 7, 134, 48, 254, 50, + 228, 255, 27, 215, 198, 153, 209, 149, 152, 178, 63, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2257, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9964382346931782909" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14349463958238399063" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11315565320487161249" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a0c62448a0fcc4ac7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2af5081e9c71f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79d8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16415674061698037824" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d988f6d03810160c37983b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e58095be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16177089687954460889" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "346366807010415794" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee9a6866be6d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7385219649187599124" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11197459141104578859" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13467157716789409105" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66bcb6b5ef45" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13772545039658442530" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8616720158126937995" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9618677933301585376" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18206925180511967419" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4227227987832195258" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df72c24e867155" + }, + { + "_tag": "ByteArray", + "bytearray": "7612fb30b878cd3a174b05" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "515abe6aed" + } + ] + } + ] + }, + "cborHex": "9f1b8a4898f3730ac4fd1bc72389717c120a571b9d08f6b4e05dcda1bf496a0c62448a0fcc4ac7472af5081e9c71f64279d81be3d03095cc1af8404bd988f6d03810160c37983b410544e58095be1be080915c7e2910d9ff9fbf1b04ce8ac69dd794b246ee9a6866be6d1b667d9224720fd3141b9b655dc31c7d312b1bbae4f4976364b5514666bcb6b5ef451bbf21e8be55e8df221b7794bd549a1a978bffd8669f1b857c689e4f5455e09f1bfcabfdfcbc87d8bb1b3aaa21754753c8ba47df72c24e8671554b7612fb30b878cd3a174b05ffff45515abe6aedffff", + "cborBytes": [ + 159, 27, 138, 72, 152, 243, 115, 10, 196, 253, 27, 199, 35, 137, 113, 124, 18, 10, 87, 27, 157, 8, 246, 180, 224, + 93, 205, 161, 191, 73, 106, 12, 98, 68, 138, 15, 204, 74, 199, 71, 42, 245, 8, 30, 156, 113, 246, 66, 121, 216, + 27, 227, 208, 48, 149, 204, 26, 248, 64, 75, 217, 136, 246, 208, 56, 16, 22, 12, 55, 152, 59, 65, 5, 68, 229, 128, + 149, 190, 27, 224, 128, 145, 92, 126, 41, 16, 217, 255, 159, 191, 27, 4, 206, 138, 198, 157, 215, 148, 178, 70, + 238, 154, 104, 102, 190, 109, 27, 102, 125, 146, 36, 114, 15, 211, 20, 27, 155, 101, 93, 195, 28, 125, 49, 43, 27, + 186, 228, 244, 151, 99, 100, 181, 81, 70, 102, 188, 182, 181, 239, 69, 27, 191, 33, 232, 190, 85, 232, 223, 34, + 27, 119, 148, 189, 84, 154, 26, 151, 139, 255, 216, 102, 159, 27, 133, 124, 104, 158, 79, 84, 85, 224, 159, 27, + 252, 171, 253, 252, 188, 135, 216, 187, 27, 58, 170, 33, 117, 71, 83, 200, 186, 71, 223, 114, 194, 78, 134, 113, + 85, 75, 118, 18, 251, 48, 184, 120, 205, 58, 23, 75, 5, 255, 255, 69, 81, 90, 190, 106, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2258, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2e5d2252aebe59191791fbc6" + } + ] + }, + "cborHex": "9f4c2e5d2252aebe59191791fbc6ff", + "cborBytes": [159, 76, 46, 93, 34, 82, 174, 190, 89, 25, 23, 145, 251, 198, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2259, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fb110ce2" + } + ] + }, + "cborHex": "9f44fb110ce2ff", + "cborBytes": [159, 68, 251, 17, 12, 226, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2260, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3075469709488018247" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5309863939185583021" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7960767553045921504" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1303141498686941780" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8309880129024155045" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad1bb7e21645c54562475b12" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11686012377782562647" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2862224820512218791" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12600473072238181364" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2415374845723244153" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14322732706976602141" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "782672176585124467" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b6a5f351" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "40261965424671132" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10090555412915227743" + } + } + ] + }, + "cborHex": "9fbf1b2aae4367ff81d3471b49b06d1eacd023ad1b6e7a53e95ac1fee01b1215b049e94e2a541b73529ff3208fdda54cad1bb7e21645c54562475b121ba22d0e57aa8c2f571b27b8aa4f3defdea71baedddf7fc0a1bbf41b2185229ffebf76791bc6c491830c35981d1b0adc9c32a4f02a73ff44b6a5f3511b008f0a0b5318b99c1b8c08daaf9d350c5fff", + "cborBytes": [ + 159, 191, 27, 42, 174, 67, 103, 255, 129, 211, 71, 27, 73, 176, 109, 30, 172, 208, 35, 173, 27, 110, 122, 83, 233, + 90, 193, 254, 224, 27, 18, 21, 176, 73, 233, 78, 42, 84, 27, 115, 82, 159, 243, 32, 143, 221, 165, 76, 173, 27, + 183, 226, 22, 69, 197, 69, 98, 71, 91, 18, 27, 162, 45, 14, 87, 170, 140, 47, 87, 27, 39, 184, 170, 79, 61, 239, + 222, 167, 27, 174, 221, 223, 127, 192, 161, 187, 244, 27, 33, 133, 34, 159, 254, 191, 118, 121, 27, 198, 196, 145, + 131, 12, 53, 152, 29, 27, 10, 220, 156, 50, 164, 240, 42, 115, 255, 68, 182, 165, 243, 81, 27, 0, 143, 10, 11, 83, + 24, 185, 156, 27, 140, 8, 218, 175, 157, 53, 12, 95, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2261, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13269354221575204534" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d864a0ee4bec6709b9498799" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2083392405426695822" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6ce687bd6235" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4387654079810022526" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1434567929850015188" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6786997396238436741" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15645839104786448054" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1504901725069439108" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5370652210190313541" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1804863955387649289" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6348256999826540705" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16368463911794274690" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11884082385242900956" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c8fab528f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17669316858359632098" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "349861" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8507f371d38f706b" + } + ] + }, + "cborHex": "9fbf1bb826375c47d1eeb64cd864a0ee4bec6709b9498799ffd8669f1b1ce9b25abd346e8e9f466ce687bd6235d8669f1b3ce41423885eac7e80ff1b13e89bee78e0add4ffffd8669f1b5e30422c3e4b09859f9f1bd9212fc545b63eb61b14e27c2548a2f084ff1b4a8863baf08f68451b190c2a3470c98d09bf1b58198a1b598c48a11be3287734354c71821ba4ecbdf6fde149dc459c8fab528f1bf53606110e58d0e24164ff43349861ffff488507f371d38f706bff", + "cborBytes": [ + 159, 191, 27, 184, 38, 55, 92, 71, 209, 238, 182, 76, 216, 100, 160, 238, 75, 236, 103, 9, 185, 73, 135, 153, 255, + 216, 102, 159, 27, 28, 233, 178, 90, 189, 52, 110, 142, 159, 70, 108, 230, 135, 189, 98, 53, 216, 102, 159, 27, + 60, 228, 20, 35, 136, 94, 172, 126, 128, 255, 27, 19, 232, 155, 238, 120, 224, 173, 212, 255, 255, 216, 102, 159, + 27, 94, 48, 66, 44, 62, 75, 9, 133, 159, 159, 27, 217, 33, 47, 197, 69, 182, 62, 182, 27, 20, 226, 124, 37, 72, + 162, 240, 132, 255, 27, 74, 136, 99, 186, 240, 143, 104, 69, 27, 25, 12, 42, 52, 112, 201, 141, 9, 191, 27, 88, + 25, 138, 27, 89, 140, 72, 161, 27, 227, 40, 119, 52, 53, 76, 113, 130, 27, 164, 236, 189, 246, 253, 225, 73, 220, + 69, 156, 143, 171, 82, 143, 27, 245, 54, 6, 17, 14, 88, 208, 226, 65, 100, 255, 67, 52, 152, 97, 255, 255, 72, + 133, 7, 243, 113, 211, 143, 112, 107, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2262, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a2" + }, + { + "_tag": "ByteArray", + "bytearray": "aeea25c1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11428526737272011909" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be151a4183" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f800" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16563825038603207239" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15611501043368046451" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02021703" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10823899701600990404" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f8041a244aeea25c1d8669f1b9e9a48844126fc859fbf0745be151a41831442f8001be5de871d1baa42471bd8a7317c5497af731bfffffffffffffffb4402021703ffd8669f1bfffffffffffffff29f1b9636376e5e6234c4ffffffffff", + "cborBytes": [ + 159, 128, 65, 162, 68, 174, 234, 37, 193, 216, 102, 159, 27, 158, 154, 72, 132, 65, 38, 252, 133, 159, 191, 7, 69, + 190, 21, 26, 65, 131, 20, 66, 248, 0, 27, 229, 222, 135, 29, 27, 170, 66, 71, 27, 216, 167, 49, 124, 84, 151, 175, + 115, 27, 255, 255, 255, 255, 255, 255, 255, 251, 68, 2, 2, 23, 3, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 242, 159, 27, 150, 54, 55, 110, 94, 98, 52, 196, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2263, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "90761efc30" + } + ] + } + ] + }, + "cborHex": "9f9f4590761efc30ffff", + "cborBytes": [159, 159, 69, 144, 118, 30, 252, 48, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2264, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15654746023019875897" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7531661373489428337" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07a7bb845ca9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4031943321509914258" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4a64b0d4cb06095e04c53e7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5692839903442556044" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3927341308045188086" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13561642964681071444" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5648703461156717163" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3de04455db6aac497f00fb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6318216820108548788" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12854880298533801772" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11275563930772541027" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2798153008403768467" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11309252197523514801" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13060538582770642801" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13215321436193035500" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8051918698273196003" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3fd15e2f76bd214606" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10744710356867130595" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0bf52e8419eeac9af6ba5fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15019473501672896544" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d15097aa3edc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8795955372282469328" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7bf11fcccc81f8a54de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "826044619700627664" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "456515916229965866" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64669ad5db1ff2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2244308386061706553" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9743756911750678386" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12506668452754659752" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59a2fcc821" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "59" + } + ] + } + ] + }, + "cborHex": "9fbf1bd940d490c70f0e391b6885d61d5f5e37714607a7bb845ca91b37f45716b91b66924cb4a64b0d4cb06095e04c53e71b4f0107baefdcd48cff9fbf1b3680b81c99c05bf61bbc34a26c787d9b541b4e6439deabc4026b4b3de04455db6aac497f00fb1b57aed0b8f877dab41bb265b58600464f2c1b9c7ad9a78fe78e631b26d50955fd18e4931b9cf288f464b1e5b11bb5405aa4b153ef711bb76640d414e414ec1b6fbe29652ae647e3ff493fd15e2f76bd214606bf41301b951ce1244386a4e34cd0bf52e8419eeac9af6ba5fd1bd06fe392bc9af82046d15097aa3edc1b7a1182cee115dbd04ad7bf11fcccc81f8a54de1b0b76b3347de0e8d0ffbf1b0655dece9d32f82a4764669ad5db1ff21b1f25629615a365391b8738c7495ea807721bad909cb1d20699a84559a2fcc821ff4159ffff", + "cborBytes": [ + 159, 191, 27, 217, 64, 212, 144, 199, 15, 14, 57, 27, 104, 133, 214, 29, 95, 94, 55, 113, 70, 7, 167, 187, 132, + 92, 169, 27, 55, 244, 87, 22, 185, 27, 102, 146, 76, 180, 166, 75, 13, 76, 176, 96, 149, 224, 76, 83, 231, 27, 79, + 1, 7, 186, 239, 220, 212, 140, 255, 159, 191, 27, 54, 128, 184, 28, 153, 192, 91, 246, 27, 188, 52, 162, 108, 120, + 125, 155, 84, 27, 78, 100, 57, 222, 171, 196, 2, 107, 75, 61, 224, 68, 85, 219, 106, 172, 73, 127, 0, 251, 27, 87, + 174, 208, 184, 248, 119, 218, 180, 27, 178, 101, 181, 134, 0, 70, 79, 44, 27, 156, 122, 217, 167, 143, 231, 142, + 99, 27, 38, 213, 9, 85, 253, 24, 228, 147, 27, 156, 242, 136, 244, 100, 177, 229, 177, 27, 181, 64, 90, 164, 177, + 83, 239, 113, 27, 183, 102, 64, 212, 20, 228, 20, 236, 27, 111, 190, 41, 101, 42, 230, 71, 227, 255, 73, 63, 209, + 94, 47, 118, 189, 33, 70, 6, 191, 65, 48, 27, 149, 28, 225, 36, 67, 134, 164, 227, 76, 208, 191, 82, 232, 65, 158, + 234, 201, 175, 107, 165, 253, 27, 208, 111, 227, 146, 188, 154, 248, 32, 70, 209, 80, 151, 170, 62, 220, 27, 122, + 17, 130, 206, 225, 21, 219, 208, 74, 215, 191, 17, 252, 204, 200, 31, 138, 84, 222, 27, 11, 118, 179, 52, 125, + 224, 232, 208, 255, 191, 27, 6, 85, 222, 206, 157, 50, 248, 42, 71, 100, 102, 154, 213, 219, 31, 242, 27, 31, 37, + 98, 150, 21, 163, 101, 57, 27, 135, 56, 199, 73, 94, 168, 7, 114, 27, 173, 144, 156, 177, 210, 6, 153, 168, 69, + 89, 162, 252, 200, 33, 255, 65, 89, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2265, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b4c27b7a077892fd78192c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "32" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7832274094865187304" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "173260db3a74bc7cd163" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ad9d61b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e656f03e5258f1c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "513f44aa2108e655dc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "908b9e2d979aacca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6dabf142f2c09ec9b05c07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d35e75f0c95c1e038b0519" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9868534902846387026" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e30ab43cdcbd69" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b630677766f461569379" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1a6b5acb469" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9486386755518217261" + } + } + } + ] + } + ] + }, + "cborHex": "9f4bb4c27b7a077892fd78192cbf41321b6cb1d3cac7ef01e8ffbf4a173260db3a74bc7cd163444ad9d61b484e656f03e5258f1c49513f44aa2108e655dc48908b9e2d979aacca4b6dabf142f2c09ec9b05c074bd35e75f0c95c1e038b05191b88f4143559b3f35247e30ab43cdcbd694ab630677766f46156937946f1a6b5acb4691b83a66a7e3ca23c2dffff", + "cborBytes": [ + 159, 75, 180, 194, 123, 122, 7, 120, 146, 253, 120, 25, 44, 191, 65, 50, 27, 108, 177, 211, 202, 199, 239, 1, 232, + 255, 191, 74, 23, 50, 96, 219, 58, 116, 188, 124, 209, 99, 68, 74, 217, 214, 27, 72, 78, 101, 111, 3, 229, 37, + 143, 28, 73, 81, 63, 68, 170, 33, 8, 230, 85, 220, 72, 144, 139, 158, 45, 151, 154, 172, 202, 75, 109, 171, 241, + 66, 242, 192, 158, 201, 176, 92, 7, 75, 211, 94, 117, 240, 201, 92, 30, 3, 139, 5, 25, 27, 136, 244, 20, 53, 89, + 179, 243, 82, 71, 227, 10, 180, 60, 220, 189, 105, 74, 182, 48, 103, 119, 102, 244, 97, 86, 147, 121, 70, 241, + 166, 181, 172, 180, 105, 27, 131, 166, 106, 126, 60, 162, 60, 45, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2266, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17694398168994974431" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6222230488541426456" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17088416914040807785" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2694317244306579868" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "226945513484126618" + } + } + ] + }, + "cborHex": "9fbf1bf58f2162c1448adf1b5659cda99c1df318ff1bed2640a51f2de169d8669f1b25642342331a619c80ff1b032645bdfa97099aff", + "cborBytes": [ + 159, 191, 27, 245, 143, 33, 98, 193, 68, 138, 223, 27, 86, 89, 205, 169, 156, 29, 243, 24, 255, 27, 237, 38, 64, + 165, 31, 45, 225, 105, 216, 102, 159, 27, 37, 100, 35, 66, 51, 26, 97, 156, 128, 255, 27, 3, 38, 69, 189, 250, + 151, 9, 154, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2267, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5094699497779306823" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1b46b402334a7f214780ff", + "cborBytes": [159, 27, 70, 180, 2, 51, 74, 127, 33, 71, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2268, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3d07" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "021abc86fbf9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13727225803633884555" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b41b6b53379aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9818446538601941346" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3061d9d0e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "198fca820270" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f9c0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3939868094665441728" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa385612f2aa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddeb18ee59" + } + } + ] + } + ] + }, + "cborHex": "9f423d07bf46021abc86fbf91bbe80e723712c7d8b470b41b6b53379aa1b8842211b43884962453061d9d0e246198fca820270438f9c0f1b36ad3928646dc1c046aa385612f2aa45ddeb18ee59ffff", + "cborBytes": [ + 159, 66, 61, 7, 191, 70, 2, 26, 188, 134, 251, 249, 27, 190, 128, 231, 35, 113, 44, 125, 139, 71, 11, 65, 182, + 181, 51, 121, 170, 27, 136, 66, 33, 27, 67, 136, 73, 98, 69, 48, 97, 217, 208, 226, 70, 25, 143, 202, 130, 2, 112, + 67, 143, 156, 15, 27, 54, 173, 57, 40, 100, 109, 193, 192, 70, 170, 56, 86, 18, 242, 170, 69, 221, 235, 24, 238, + 89, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2269, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11589748062505177339" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7550270481964513274" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12245241794616699004" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14817945017013677900" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "72c34ac478cb2f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6851143539035767972" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ef703b588100ad798a38" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7242754248935948713" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16881050123681893067" + } + } + ] + }, + "cborHex": "9fd8669f1ba0d70e752de490fb9f9f1b68c7f300139cb7fa1ba9efd688bce5287c1bcda3ea7bf05eaf4cff4772c34ac478cb2f9f1b5f1426bff57084a4ff4aef703b588100ad798a38ffff1b64836e9d9b4741a91bea4589a5d99f8acbff", + "cborBytes": [ + 159, 216, 102, 159, 27, 160, 215, 14, 117, 45, 228, 144, 251, 159, 159, 27, 104, 199, 243, 0, 19, 156, 183, 250, + 27, 169, 239, 214, 136, 188, 229, 40, 124, 27, 205, 163, 234, 123, 240, 94, 175, 76, 255, 71, 114, 195, 74, 196, + 120, 203, 47, 159, 27, 95, 20, 38, 191, 245, 112, 132, 164, 255, 74, 239, 112, 59, 88, 129, 0, 173, 121, 138, 56, + 255, 255, 27, 100, 131, 110, 157, 155, 71, 65, 169, 27, 234, 69, 137, 165, 217, 159, 138, 203, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2270, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4202" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60ffccf8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f768b74bf38221810c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8326894436883923697" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff03e714dfa6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b96b356b770116d4a26ee42" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15848878310992301557" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffffabf42420213ffbf054460ffccf8410b1bfffffffffffffffeff9fbf49f768b74bf38221810c1b738f125f60a482f146ff03e714dfa64c5b96b356b770116d4a26ee42ff1bdbf286da5716cdf5ff1bffffffffffffffefff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 191, 66, 66, 2, 19, 255, 191, 5, 68, 96, 255, 204, 248, 65, 11, + 27, 255, 255, 255, 255, 255, 255, 255, 254, 255, 159, 191, 73, 247, 104, 183, 75, 243, 130, 33, 129, 12, 27, 115, + 143, 18, 95, 96, 164, 130, 241, 70, 255, 3, 231, 20, 223, 166, 76, 91, 150, 179, 86, 183, 112, 17, 109, 74, 38, + 238, 66, 255, 27, 219, 242, 134, 218, 87, 22, 205, 245, 255, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2271, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13071346080760721679" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13500171339984042355" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7657697638902566639" + } + }, + { + "_tag": "ByteArray", + "bytearray": "efd5e4ca4b442d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3284845099870894273" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "da6dac271d501b57732e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16441867429684336130" + } + }, + { + "_tag": "ByteArray", + "bytearray": "634e81556ebb" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6593248840247342153" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7179356080582235220" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7419097034897693450" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7480355317188357439" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14637755066634721814" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11238838067500073901" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3d95af74c81adb18891f540" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11901993908261429015" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28584bde8c7668d75c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14782741077079239838" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4408748871960424622" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3254329334604349030" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb56ce8aa5ddf4b5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9742236020218299153" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82e0d6de13d380e284" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12752422780953325910" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "218e93d97e854e" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3951250223406441249" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8d0073f4c47dc17fce" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1186026473015911098" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a8e3d476206f62e937bcb9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7884209266783560302" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12816338828541411111" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2fa31cf6e431303f43" + }, + { + "_tag": "ByteArray", + "bytearray": "3162a1100aa2c4d8c0f395" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8409097687465494769" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1734409945724502820" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13246468633844540879" + } + }, + { + "_tag": "ByteArray", + "bytearray": "916acf" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5743253861981028955" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27246293274d9c88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4365258872678430223" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e32" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9686910623619040262" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f58660f09" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5164dc8e458bb4a032" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cc47832f8f5c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb8a92174ea9ca1cff94" + } + } + ] + } + ] + }, + "cborHex": "9f1bb566c00167eff10fd8669f1bbb5a3e4e86a879739f1b6a459b6e2c228eef47efd5e4ca4b442dd8669f1b2d961d36e7fcb8c19f4ada6dac271d501b57732e1be42d3f508666560246634e81556ebbffffbf1b5b7fece33eb2f4491b63a23251432514541b66f5ed71f73b1b0a41b61b67cf8f8742b76d3f1bcb23c0adcfefda161b9bf85fad2d7ac3ad4cb3d95af74c81adb18891f5401ba52c60666cc91f174928584bde8c7668d75c1bcd26d8aff1e22c9e418effffffd8669f1b3d2f05bd911af0ae9fbf1b2d29b349a339be6648bb56ce8aa5ddf4b51b8733600b372083114982e0d6de13d380e2841bb0f9b4f43c52715647218e93d97e854eff9f1b36d5a924c0d2e321498d0073f4c47dc17fceffd8669f1b10759ccb1a52a2ba9f4ba8e3d476206f62e937bcb91b6d6a568e497a226e1bb1dcc842bc41bf27492fa31cf6e431303f434b3162a1100aa2c4d8c0f395ffffd8669f1b74b31dcb1ef088f19f1b1811dca805d043241bb7d4e90a28a865cf43916acfffff1b4fb422f55a45025bffffbf4827246293274d9c881b3c9483d10a9eb60f425e321b866ed1e383c54406457f58660f09495164dc8e458bb4a032478cc47832f8f5c44afb8a92174ea9ca1cff94ffff", + "cborBytes": [ + 159, 27, 181, 102, 192, 1, 103, 239, 241, 15, 216, 102, 159, 27, 187, 90, 62, 78, 134, 168, 121, 115, 159, 27, + 106, 69, 155, 110, 44, 34, 142, 239, 71, 239, 213, 228, 202, 75, 68, 45, 216, 102, 159, 27, 45, 150, 29, 54, 231, + 252, 184, 193, 159, 74, 218, 109, 172, 39, 29, 80, 27, 87, 115, 46, 27, 228, 45, 63, 80, 134, 102, 86, 2, 70, 99, + 78, 129, 85, 110, 187, 255, 255, 191, 27, 91, 127, 236, 227, 62, 178, 244, 73, 27, 99, 162, 50, 81, 67, 37, 20, + 84, 27, 102, 245, 237, 113, 247, 59, 27, 10, 65, 182, 27, 103, 207, 143, 135, 66, 183, 109, 63, 27, 203, 35, 192, + 173, 207, 239, 218, 22, 27, 155, 248, 95, 173, 45, 122, 195, 173, 76, 179, 217, 90, 247, 76, 129, 173, 177, 136, + 145, 245, 64, 27, 165, 44, 96, 102, 108, 201, 31, 23, 73, 40, 88, 75, 222, 140, 118, 104, 215, 92, 27, 205, 38, + 216, 175, 241, 226, 44, 158, 65, 142, 255, 255, 255, 216, 102, 159, 27, 61, 47, 5, 189, 145, 26, 240, 174, 159, + 191, 27, 45, 41, 179, 73, 163, 57, 190, 102, 72, 187, 86, 206, 138, 165, 221, 244, 181, 27, 135, 51, 96, 11, 55, + 32, 131, 17, 73, 130, 224, 214, 222, 19, 211, 128, 226, 132, 27, 176, 249, 180, 244, 60, 82, 113, 86, 71, 33, 142, + 147, 217, 126, 133, 78, 255, 159, 27, 54, 213, 169, 36, 192, 210, 227, 33, 73, 141, 0, 115, 244, 196, 125, 193, + 127, 206, 255, 216, 102, 159, 27, 16, 117, 156, 203, 26, 82, 162, 186, 159, 75, 168, 227, 212, 118, 32, 111, 98, + 233, 55, 188, 185, 27, 109, 106, 86, 142, 73, 122, 34, 110, 27, 177, 220, 200, 66, 188, 65, 191, 39, 73, 47, 163, + 28, 246, 228, 49, 48, 63, 67, 75, 49, 98, 161, 16, 10, 162, 196, 216, 192, 243, 149, 255, 255, 216, 102, 159, 27, + 116, 179, 29, 203, 30, 240, 136, 241, 159, 27, 24, 17, 220, 168, 5, 208, 67, 36, 27, 183, 212, 233, 10, 40, 168, + 101, 207, 67, 145, 106, 207, 255, 255, 27, 79, 180, 34, 245, 90, 69, 2, 91, 255, 255, 191, 72, 39, 36, 98, 147, + 39, 77, 156, 136, 27, 60, 148, 131, 209, 10, 158, 182, 15, 66, 94, 50, 27, 134, 110, 209, 227, 131, 197, 68, 6, + 69, 127, 88, 102, 15, 9, 73, 81, 100, 220, 142, 69, 139, 180, 160, 50, 71, 140, 196, 120, 50, 248, 245, 196, 74, + 251, 138, 146, 23, 78, 169, 202, 28, 255, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2272, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1273654739474060033" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10298817059363056532" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1719920801924908071" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4585cf622f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10446713467974141744" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "694f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11399248259267281599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "129565214729559046" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11514259659020583828" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6c3cb5f0f8fdd0aad8c" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b11acee3cc8d813011b8eecbf8cce116b941b17de62db588a0427454585cf622f1b90fa2e8cd0e3473042694f1b9e3243e5601dc2bf1b01cc4ee05733dc061b9fcade279b8843944ab6c3cb5f0f8fdd0aad8cffff", + "cborBytes": [ + 159, 191, 27, 17, 172, 238, 60, 200, 216, 19, 1, 27, 142, 236, 191, 140, 206, 17, 107, 148, 27, 23, 222, 98, 219, + 88, 138, 4, 39, 69, 69, 133, 207, 98, 47, 27, 144, 250, 46, 140, 208, 227, 71, 48, 66, 105, 79, 27, 158, 50, 67, + 229, 96, 29, 194, 191, 27, 1, 204, 78, 224, 87, 51, 220, 6, 27, 159, 202, 222, 39, 155, 136, 67, 148, 74, 182, + 195, 203, 95, 15, 143, 221, 10, 173, 140, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2273, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11554109454242122752" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16041557361823347351" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1b9a0bc894a2158b84801d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8469993781854382741" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4c26124" + } + ] + }, + "cborHex": "9fd8669f1ba058715514158c009f1bde9f0f6dc38872974b1b9a0bc894a2158b84801dffff1b758b7677f932aa9544e4c26124ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 160, 88, 113, 85, 20, 21, 140, 0, 159, 27, 222, 159, 15, 109, 195, 136, 114, 151, 75, 27, + 154, 11, 200, 148, 162, 21, 139, 132, 128, 29, 255, 255, 27, 117, 139, 118, 119, 249, 50, 170, 149, 68, 228, 194, + 97, 36, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2274, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15253566268690753418" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e0b3e632e3da00" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "af7b930890d74d010dbc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11893862753626777312" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "564df443da3940144f" + } + ] + }, + "cborHex": "9f1bd3af8db45b31678a47e0b3e632e3da009f4aaf7b930890d74d010dbc1ba50f7d28752c66e0ff49564df443da3940144fff", + "cborBytes": [ + 159, 27, 211, 175, 141, 180, 91, 49, 103, 138, 71, 224, 179, 230, 50, 227, 218, 0, 159, 74, 175, 123, 147, 8, 144, + 215, 77, 1, 13, 188, 27, 165, 15, 125, 40, 117, 44, 102, 224, 255, 73, 86, 77, 244, 67, 218, 57, 64, 20, 79, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2275, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5196889949607463344" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b28c89" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5388060817730293921" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2702c1fa47d2bbebb71a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17278941137414814949" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8678876735437365305" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13485196015212603241" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16759793901233700595" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17160839190192881045" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5786695567611047175" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6266026212360333377" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1643763020685306677" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8332711610881156010" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bbfbb016d70e" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b481f0fdff72689b043b28c891b4ac63cc43d03d0a14a2702c1fa47d2bbebb71a1befcb216aae7e7ce51b7871906881256039ff80bf1bbb250a540542a7691be896bfc187cafef3ff1bee278c524b0c7d95bf1b504e78f5a2c8ad0741c11b56f565a42d0628411b16cfd1c21edeeb351b73a3bd0fbe5823aa46bbfbb016d70effff", + "cborBytes": [ + 159, 191, 27, 72, 31, 15, 223, 247, 38, 137, 176, 67, 178, 140, 137, 27, 74, 198, 60, 196, 61, 3, 208, 161, 74, + 39, 2, 193, 250, 71, 210, 187, 235, 183, 26, 27, 239, 203, 33, 106, 174, 126, 124, 229, 27, 120, 113, 144, 104, + 129, 37, 96, 57, 255, 128, 191, 27, 187, 37, 10, 84, 5, 66, 167, 105, 27, 232, 150, 191, 193, 135, 202, 254, 243, + 255, 27, 238, 39, 140, 82, 75, 12, 125, 149, 191, 27, 80, 78, 120, 245, 162, 200, 173, 7, 65, 193, 27, 86, 245, + 101, 164, 45, 6, 40, 65, 27, 22, 207, 209, 194, 30, 222, 235, 53, 27, 115, 163, 189, 15, 190, 88, 35, 170, 70, + 187, 251, 176, 22, 215, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2276, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9468114317972589219" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7314fa2b42f5f497d58f38a9" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6145688680911166116" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16424129588467919381" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16788147032747525649" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4a03a64a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c12dbc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5164851021480172356" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5578521765574807070" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3fda94" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "25" + } + ] + }, + "cborHex": "9fd8669f1b83657fced78bcaa39f9f4c7314fa2b42f5f497d58f38a9ffd8669f1b5549df4b45d95aa49f1be3ee3ad7899cea151be8fb7ac763f1c611ffff444a03a64a9f43c12dbc1b47ad3ca3b5239b441b4d6ae3fd50df0e1e433fda94ffffff4125ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 131, 101, 127, 206, 215, 139, 202, 163, 159, 159, 76, 115, 20, 250, 43, 66, 245, 244, 151, + 213, 143, 56, 169, 255, 216, 102, 159, 27, 85, 73, 223, 75, 69, 217, 90, 164, 159, 27, 227, 238, 58, 215, 137, + 156, 234, 21, 27, 232, 251, 122, 199, 99, 241, 198, 17, 255, 255, 68, 74, 3, 166, 74, 159, 67, 193, 45, 188, 27, + 71, 173, 60, 163, 181, 35, 155, 68, 27, 77, 106, 227, 253, 80, 223, 14, 30, 67, 63, 218, 148, 255, 255, 255, 65, + 37, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2277, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4669753553917238004" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8727883041009114823" + } + }, + { + "_tag": "ByteArray", + "bytearray": "49" + }, + { + "_tag": "ByteArray", + "bytearray": "907ec66dba96e05d021bd7" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10956316525199667206" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51d14496e354dd6749" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e406a01529620d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12262532122153350033" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ee9f8a90551edcd76a0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6dcd1b2bdcd238b6d569a" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "01f7bbc62af1fd0f" + }, + { + "_tag": "ByteArray", + "bytearray": "8a6d510c73e5e7a9570695e4" + } + ] + }, + "cborHex": "9f9f9f1b40ce4c1da9dadaf41b791fab622c811ec741494b907ec66dba96e05d021bd7ff80ffbf1b980ca7d4a344b0064951d14496e354dd6749488e406a01529620d91baa2d43fed3c47391ffbf4a4ee9f8a90551edcd76a04bd6dcd1b2bdcd238b6d569aff4801f7bbc62af1fd0f4c8a6d510c73e5e7a9570695e4ff", + "cborBytes": [ + 159, 159, 159, 27, 64, 206, 76, 29, 169, 218, 218, 244, 27, 121, 31, 171, 98, 44, 129, 30, 199, 65, 73, 75, 144, + 126, 198, 109, 186, 150, 224, 93, 2, 27, 215, 255, 128, 255, 191, 27, 152, 12, 167, 212, 163, 68, 176, 6, 73, 81, + 209, 68, 150, 227, 84, 221, 103, 73, 72, 142, 64, 106, 1, 82, 150, 32, 217, 27, 170, 45, 67, 254, 211, 196, 115, + 145, 255, 191, 74, 78, 233, 248, 169, 5, 81, 237, 205, 118, 160, 75, 214, 220, 209, 178, 189, 205, 35, 139, 109, + 86, 154, 255, 72, 1, 247, 187, 198, 42, 241, 253, 15, 76, 138, 109, 81, 12, 115, 229, 231, 169, 87, 6, 149, 228, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2278, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "375821197225576004" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72f8940cfa6d0c7938" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "863385207638994518" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4723236270187833224" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5746764782033831918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "093905cc3ea3" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b05372f633fb146444972f8940cfa6d0c79381b0bfb5c459da62e561b418c4e5ceac967881b4fc09c1f20da07ee46093905cc3ea3ffff", + "cborBytes": [ + 159, 191, 27, 5, 55, 47, 99, 63, 177, 70, 68, 73, 114, 248, 148, 12, 250, 109, 12, 121, 56, 27, 11, 251, 92, 69, + 157, 166, 46, 86, 27, 65, 140, 78, 92, 234, 201, 103, 136, 27, 79, 192, 156, 31, 32, 218, 7, 238, 70, 9, 57, 5, + 204, 62, 163, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2279, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3845114767905212786" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6120611293792327095" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13771115699317416059" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9110e6f0ce7f80704fbf7" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0976056a9571" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12750999379586621397" + } + }, + { + "_tag": "ByteArray", + "bytearray": "26885fb0" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b355c9782559949729f1b54f0c78b16bc55b7ffffbf1bbf1cd4c41a9ea07b4ba9110e6f0ce7f80704fbf7ffbf110e460976056a95711bfffffffffffffff3ff0c9f1bb0f4a660c77c9fd54426885fb0ffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 53, 92, 151, 130, 85, 153, 73, 114, 159, 27, 84, 240, 199, 139, 22, 188, 85, 183, + 255, 255, 191, 27, 191, 28, 212, 196, 26, 158, 160, 123, 75, 169, 17, 14, 111, 12, 231, 248, 7, 4, 251, 247, 255, + 191, 17, 14, 70, 9, 118, 5, 106, 149, 113, 27, 255, 255, 255, 255, 255, 255, 255, 243, 255, 12, 159, 27, 176, 244, + 166, 96, 199, 124, 159, 213, 68, 38, 136, 95, 176, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2280, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1610808795880729066" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12021649089320576327" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39d374f801" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "340aa73376b01e846d576358" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d31a2512ea19" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4461717386202796497" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11266767924787775046" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8cf3dba6607554c2edfe" + }, + { + "_tag": "ByteArray", + "bytearray": "2d062d7a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e0" + }, + { + "_tag": "ByteArray", + "bytearray": "42102f7d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b4862ee3fa209342" + }, + { + "_tag": "ByteArray", + "bytearray": "5aa08b11e4778068ceaa83cf" + }, + { + "_tag": "ByteArray", + "bytearray": "08ed5b69a2652a9730" + }, + { + "_tag": "ByteArray", + "bytearray": "7f94" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a74bb4" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd96b9048b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff27f303d58605fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70a515" + } + } + ] + } + ] + }, + "cborHex": "9f9f1b165abe10bf8ba9ead9050380a01ba6d57a273f59e547bf004539d374f801064c340aa73376b01e846d5763580d46d31a2512ea190f1b3deb3452d4cd51d11b9c5b99bbd3bd864603ffff9f4a8cf3dba6607554c2edfe442d062d7a9f41e04442102f7dff9f48b4862ee3fa2093424c5aa08b11e4778068ceaa83cf4908ed5b69a2652a9730427f94ff43a74bb4ffa0bf42f8f945dd96b9048b48ff27f303d58605fa4370a515ffff", + "cborBytes": [ + 159, 159, 27, 22, 90, 190, 16, 191, 139, 169, 234, 217, 5, 3, 128, 160, 27, 166, 213, 122, 39, 63, 89, 229, 71, + 191, 0, 69, 57, 211, 116, 248, 1, 6, 76, 52, 10, 167, 51, 118, 176, 30, 132, 109, 87, 99, 88, 13, 70, 211, 26, 37, + 18, 234, 25, 15, 27, 61, 235, 52, 82, 212, 205, 81, 209, 27, 156, 91, 153, 187, 211, 189, 134, 70, 3, 255, 255, + 159, 74, 140, 243, 219, 166, 96, 117, 84, 194, 237, 254, 68, 45, 6, 45, 122, 159, 65, 224, 68, 66, 16, 47, 125, + 255, 159, 72, 180, 134, 46, 227, 250, 32, 147, 66, 76, 90, 160, 139, 17, 228, 119, 128, 104, 206, 170, 131, 207, + 73, 8, 237, 91, 105, 162, 101, 42, 151, 48, 66, 127, 148, 255, 67, 167, 75, 180, 255, 160, 191, 66, 248, 249, 69, + 221, 150, 185, 4, 139, 72, 255, 39, 243, 3, 213, 134, 5, 250, 67, 112, 165, 21, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2281, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6634288890397120582" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5615031416384831495" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14109001786801037066" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14534135336674279539" + } + }, + { + "_tag": "ByteArray", + "bytearray": "46b00a9223e56338" + }, + { + "_tag": "ByteArray", + "bytearray": "cd8b5e92" + }, + { + "_tag": "ByteArray", + "bytearray": "0784209771c1e168" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0b696d4c367fa2b904c2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4409614771150883430" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2259840197686239984" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17329788986897054490" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11680983938975718464" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14597916829103901763" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11602475279039792091" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b27dc924f75edf238526" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16291512675025863306" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27403cbacbfd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91d6f6ae9ca343794bb6616c" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b5c11ba988970d846809fd8669f1b4dec9952d046c0079f1bc3cd3e5f55a09f0a1bc9b39f1563ec40734846b00a9223e5633844cd8b5e92480784209771c1e168ffffff4a0b696d4c367fa2b904c2d8669f1b3d3219456ec38a669fa0bf1b1f5c90afc83ca2f01bf07fc7443479bb1a1ba21b310105b0dc401bca963803536f4c4341a541f2ffbf1ba10445cb326b03db4ab27dc924f75edf238526ff9f1be217147638b0c28affbf4627403cbacbfd4c91d6f6ae9ca343794bb6616cffffffff", + "cborBytes": [ + 159, 27, 92, 17, 186, 152, 137, 112, 216, 70, 128, 159, 216, 102, 159, 27, 77, 236, 153, 82, 208, 70, 192, 7, 159, + 27, 195, 205, 62, 95, 85, 160, 159, 10, 27, 201, 179, 159, 21, 99, 236, 64, 115, 72, 70, 176, 10, 146, 35, 229, + 99, 56, 68, 205, 139, 94, 146, 72, 7, 132, 32, 151, 113, 193, 225, 104, 255, 255, 255, 74, 11, 105, 109, 76, 54, + 127, 162, 185, 4, 194, 216, 102, 159, 27, 61, 50, 25, 69, 110, 195, 138, 102, 159, 160, 191, 27, 31, 92, 144, 175, + 200, 60, 162, 240, 27, 240, 127, 199, 68, 52, 121, 187, 26, 27, 162, 27, 49, 1, 5, 176, 220, 64, 27, 202, 150, 56, + 3, 83, 111, 76, 67, 65, 165, 65, 242, 255, 191, 27, 161, 4, 69, 203, 50, 107, 3, 219, 74, 178, 125, 201, 36, 247, + 94, 223, 35, 133, 38, 255, 159, 27, 226, 23, 20, 118, 56, 176, 194, 138, 255, 191, 70, 39, 64, 60, 186, 203, 253, + 76, 145, 214, 246, 174, 156, 163, 67, 121, 75, 182, 97, 108, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2282, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a8e9ba06" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10178604181051678337" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5040f6c3014e60" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "660197718182994078" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2018797449591306507" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa0305" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d726d4fe780ec8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7472266602095605953" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58909d6e89ea8881" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10900718047560614456" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7fef1dd90c9d1a5f" + }, + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "ByteArray", + "bytearray": "deabfe06b3fb3c16bc2b" + }, + { + "_tag": "ByteArray", + "bytearray": "3f4c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "690b" + } + ] + } + ] + }, + "cborHex": "9f44a8e9ba061b8d41aa92f8e41e81bf475040f6c3014e6010ff9fd8669f1b09297e53a9d2209e80ffffd8669f1bffffffffffffffed9fd8669f1b1c043595985ab90b9f43fa0305ffffbf0947d726d4fe780ec81b67b2d2e284ec78c14858909d6e89ea8881ff9f1b9747214f4d8a4238487fef1dd90c9d1a5f41004adeabfe06b3fb3c16bc2b423f4cff42690bffffff", + "cborBytes": [ + 159, 68, 168, 233, 186, 6, 27, 141, 65, 170, 146, 248, 228, 30, 129, 191, 71, 80, 64, 246, 195, 1, 78, 96, 16, + 255, 159, 216, 102, 159, 27, 9, 41, 126, 83, 169, 210, 32, 158, 128, 255, 255, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 237, 159, 216, 102, 159, 27, 28, 4, 53, 149, 152, 90, 185, 11, 159, 67, 250, 3, 5, 255, 255, + 191, 9, 71, 215, 38, 212, 254, 120, 14, 200, 27, 103, 178, 210, 226, 132, 236, 120, 193, 72, 88, 144, 157, 110, + 137, 234, 136, 129, 255, 159, 27, 151, 71, 33, 79, 77, 138, 66, 56, 72, 127, 239, 29, 217, 12, 157, 26, 95, 65, 0, + 74, 222, 171, 254, 6, 179, 251, 60, 22, 188, 43, 66, 63, 76, 255, 66, 105, 11, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2283, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8533005255918156000" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "979b533a9c36cbd608ae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6e3d4b3a2a58d77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a60e5981489622fad5" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b766b5312098af8e080ff4a979b533a9c36cbd608ae08bf48d6e3d4b3a2a58d7749a60e5981489622fad5ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 118, 107, 83, 18, 9, 138, 248, 224, 128, 255, 74, 151, 155, 83, 58, 156, 54, 203, 214, 8, + 174, 8, 191, 72, 214, 227, 212, 179, 162, 165, 141, 119, 73, 166, 14, 89, 129, 72, 150, 34, 250, 213, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2284, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12652151313640928040" + } + } + ] + }, + "cborHex": "9f1baf957895f60f3328ff", + "cborBytes": [159, 27, 175, 149, 120, 149, 246, 15, 51, 40, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2285, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "9448071f04eb977dae3e1887" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8928737501242264433" + } + } + ] + }, + "cborHex": "9f804c9448071f04eb977dae3e18871b7be93f736e410b71ff", + "cborBytes": [ + 159, 128, 76, 148, 72, 7, 31, 4, 235, 151, 125, 174, 62, 24, 135, 27, 123, 233, 63, 115, 110, 65, 11, 113, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2286, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2112764384660361541" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0f9d2f4ee0f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4574881353859766728" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a947b415" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5132815373932180653" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ad34156cf874c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6378948494255281489" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4634829697845023664" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7725534621682659354" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "699a94c72b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9965839019996010400" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "219d7aad60cdb0c6bce155" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "70d253754cb20847" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12273671743999661448" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "98545301d0d97a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6193647951875176990" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dbc2880f38b0b80cf7d0" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18125556522974873121" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7bcb718396fb8202e554f961" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "315742621507308661" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11419866717618683220" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4212215529083927204" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6109529946759527634" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15613384997314283439" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12548535971848910733" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15968259648184385200" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8911527001825669712" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16002105829788351872" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48db5eb5e1f6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17969827558986972158" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3da196ce145828f" + } + } + ] + } + ] + }, + "cborHex": "9f80bf1b1d520c0391c7114546f0f9d2f4ee0f1b3f7d3e5a425e99c844a947b4151b473b6c6344e434ad478ad34156cf874c1b588693dbc09955511b4052390dc67bd3b01b6b369cce8960701a45699a94c72b1b8a4dc5c99396d7a04b219d7aad60cdb0c6bce155ff9f4870d253754cb20847d8669f1baa54d76c26d955889f4798545301d0d97a1b55f441ff33587a1e4adbc2880f38b0b80cf7d0ffff41a01bfb8ae99fd42e8621ff4c7bcb718396fb8202e554f961bf1b0461be3dcb64cc751b9e7b84464df7bd541b3a74cbb4d86e7aa41b54c9691ded367cd21bd8ade2ee8a54c7af1bae255afb3d43f78d1bdd9aa78beb3bfeb01b7bac1a97c61ef2501bde12e6782abdfd804648db5eb5e1f61bf961a6f4e8717bfe48d3da196ce145828fffff", + "cborBytes": [ + 159, 128, 191, 27, 29, 82, 12, 3, 145, 199, 17, 69, 70, 240, 249, 210, 244, 238, 15, 27, 63, 125, 62, 90, 66, 94, + 153, 200, 68, 169, 71, 180, 21, 27, 71, 59, 108, 99, 68, 228, 52, 173, 71, 138, 211, 65, 86, 207, 135, 76, 27, 88, + 134, 147, 219, 192, 153, 85, 81, 27, 64, 82, 57, 13, 198, 123, 211, 176, 27, 107, 54, 156, 206, 137, 96, 112, 26, + 69, 105, 154, 148, 199, 43, 27, 138, 77, 197, 201, 147, 150, 215, 160, 75, 33, 157, 122, 173, 96, 205, 176, 198, + 188, 225, 85, 255, 159, 72, 112, 210, 83, 117, 76, 178, 8, 71, 216, 102, 159, 27, 170, 84, 215, 108, 38, 217, 85, + 136, 159, 71, 152, 84, 83, 1, 208, 217, 122, 27, 85, 244, 65, 255, 51, 88, 122, 30, 74, 219, 194, 136, 15, 56, + 176, 184, 12, 247, 208, 255, 255, 65, 160, 27, 251, 138, 233, 159, 212, 46, 134, 33, 255, 76, 123, 203, 113, 131, + 150, 251, 130, 2, 229, 84, 249, 97, 191, 27, 4, 97, 190, 61, 203, 100, 204, 117, 27, 158, 123, 132, 70, 77, 247, + 189, 84, 27, 58, 116, 203, 180, 216, 110, 122, 164, 27, 84, 201, 105, 29, 237, 54, 124, 210, 27, 216, 173, 226, + 238, 138, 84, 199, 175, 27, 174, 37, 90, 251, 61, 67, 247, 141, 27, 221, 154, 167, 139, 235, 59, 254, 176, 27, + 123, 172, 26, 151, 198, 30, 242, 80, 27, 222, 18, 230, 120, 42, 189, 253, 128, 70, 72, 219, 94, 181, 225, 246, 27, + 249, 97, 166, 244, 232, 113, 123, 254, 72, 211, 218, 25, 108, 225, 69, 130, 143, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2287, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a5018330d8c0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6547777222173364244" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11178924482030485050" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16812560505734857755" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15161694276519616943" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8666632261983866114" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74c353d2" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "83fb044c36008be8e6" + }, + { + "_tag": "ByteArray", + "bytearray": "b8248e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11466472285540404846" + }, + "fields": [] + } + ] + }, + "cborHex": "9f46a5018330d8c09fbf1b5ade60b1240990141b9b23849682583e3aff9f1be95236b40516841b1bd269289d490661af1b7846101fde7d0d024474c353d2ff4983fb044c36008be8e643b8248effd8669f1b9f2117caae7f4e6e80ffff", + "cborBytes": [ + 159, 70, 165, 1, 131, 48, 216, 192, 159, 191, 27, 90, 222, 96, 177, 36, 9, 144, 20, 27, 155, 35, 132, 150, 130, + 88, 62, 58, 255, 159, 27, 233, 82, 54, 180, 5, 22, 132, 27, 27, 210, 105, 40, 157, 73, 6, 97, 175, 27, 120, 70, + 16, 31, 222, 125, 13, 2, 68, 116, 195, 83, 210, 255, 73, 131, 251, 4, 76, 54, 0, 139, 232, 230, 67, 184, 36, 142, + 255, 216, 102, 159, 27, 159, 33, 23, 202, 174, 127, 78, 110, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2288, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "112d522d3f25497a84" + }, + { + "_tag": "ByteArray", + "bytearray": "0b3783f3ce9466d3f93ed8" + } + ] + }, + "cborHex": "9f49112d522d3f25497a844b0b3783f3ce9466d3f93ed8ff", + "cborBytes": [ + 159, 73, 17, 45, 82, 45, 63, 37, 73, 122, 132, 75, 11, 55, 131, 243, 206, 148, 102, 211, 249, 62, 216, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2289, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + } + ] + }, + "cborHex": "9f80d9050580ff", + "cborBytes": [159, 128, 217, 5, 5, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2290, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5d1a3f7f33" + }, + { + "_tag": "ByteArray", + "bytearray": "836106120d7f7a89fd1dca" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4371627488478987350" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "74982732740993874" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7632" + }, + { + "_tag": "ByteArray", + "bytearray": "1fa0d51b19ab7a57de0b7438" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2836724807333815508" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f455d1a3f7f334b836106120d7f7a89fd1dcad8669f1b3cab2409f51f84569f1b010a6465ed50a3524276324c1fa0d51b19ab7a57de0b74381b275e122ec2aba4d4ffffffff", + "cborBytes": [ + 159, 159, 69, 93, 26, 63, 127, 51, 75, 131, 97, 6, 18, 13, 127, 122, 137, 253, 29, 202, 216, 102, 159, 27, 60, + 171, 36, 9, 245, 31, 132, 86, 159, 27, 1, 10, 100, 101, 237, 80, 163, 82, 66, 118, 50, 76, 31, 160, 213, 27, 25, + 171, 122, 87, 222, 11, 116, 56, 27, 39, 94, 18, 46, 194, 171, 164, 212, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2291, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8502800519981766791" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0ce2ea4423a21c98" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8649702272063339325" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11767126786970321253" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9217079124815855468" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02a207" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52715085a3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18c21266a569d9281d28d184" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10758076741753208283" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b5518f84493445d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3241e88655e8c356c6f9a630" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7072691834983381176" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c490442a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3191982511244986963" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9783b47a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12360507737181272583" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10028937297070897210" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "83be36157ba9e66c" + }, + { + "_tag": "ByteArray", + "bytearray": "5a94bf0083dc14f9" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "88ee7bac476c35c00670cda0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4256262377969208264" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a74968c248056068" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "97c03453912343d7e267b4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41c9b3edf15cad0e10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd7a14c4ba78" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4215ffebf9b409a291168a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3504226574736684183" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d9e6ce23a5bd5fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39d3ce3a41f24785162fa5f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adfddded74fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd1a38a3e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9ee3d37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5154492880304911998" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e21ccbaaed97" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b62c79f2bb2ae97d9d5afd" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8109726194674906715" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4737802595513742952" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b76000405ed8518879f480ce2ea4423a21c981b7809ea636b397b3d1ba34d3b77c4598165a0ffffd8669f1b7fe9a4a13d513f6c9fbf4302a2074552715085a34c18c21266a569d9281d28d1841b954c5dcc42977ddb481b5518f84493445d4c3241e88655e8c356c6f9a63041211b62273fc04dfd78b8458c490442a01b2c4c332ea0044a5345b9783b47a61bab89584c56283a07ffd8669f1b8b2df1560a93b83a9f4883be36157ba9e66c485a94bf0083dc14f9ffff4c88ee7bac476c35c00670cda01b3b11481505b6cbc848a74968c248056068ffff9f4b97c03453912343d7e267b4bf4941c9b3edf15cad0e1046bd7a14c4ba784b4215ffebf9b409a291168a1b30a18380e7a9f497486d9e6ce23a5bd5fa4c39d3ce3a41f24785162fa5f646adfddded74fa45bd1a38a3e844b9ee3d371b47886ff707dab67e46e21ccbaaed974bb62c79f2bb2ae97d9d5afdffff1b708b8901c347365bd8669f1b41c00e5bd185366880ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 118, 0, 4, 5, 237, 133, 24, 135, 159, 72, 12, 226, 234, 68, 35, 162, 28, 152, 27, 120, 9, + 234, 99, 107, 57, 123, 61, 27, 163, 77, 59, 119, 196, 89, 129, 101, 160, 255, 255, 216, 102, 159, 27, 127, 233, + 164, 161, 61, 81, 63, 108, 159, 191, 67, 2, 162, 7, 69, 82, 113, 80, 133, 163, 76, 24, 194, 18, 102, 165, 105, + 217, 40, 29, 40, 209, 132, 27, 149, 76, 93, 204, 66, 151, 125, 219, 72, 27, 85, 24, 248, 68, 147, 68, 93, 76, 50, + 65, 232, 134, 85, 232, 195, 86, 198, 249, 166, 48, 65, 33, 27, 98, 39, 63, 192, 77, 253, 120, 184, 69, 140, 73, 4, + 66, 160, 27, 44, 76, 51, 46, 160, 4, 74, 83, 69, 185, 120, 59, 71, 166, 27, 171, 137, 88, 76, 86, 40, 58, 7, 255, + 216, 102, 159, 27, 139, 45, 241, 86, 10, 147, 184, 58, 159, 72, 131, 190, 54, 21, 123, 169, 230, 108, 72, 90, 148, + 191, 0, 131, 220, 20, 249, 255, 255, 76, 136, 238, 123, 172, 71, 108, 53, 192, 6, 112, 205, 160, 27, 59, 17, 72, + 21, 5, 182, 203, 200, 72, 167, 73, 104, 194, 72, 5, 96, 104, 255, 255, 159, 75, 151, 192, 52, 83, 145, 35, 67, + 215, 226, 103, 180, 191, 73, 65, 201, 179, 237, 241, 92, 173, 14, 16, 70, 189, 122, 20, 196, 186, 120, 75, 66, 21, + 255, 235, 249, 180, 9, 162, 145, 22, 138, 27, 48, 161, 131, 128, 231, 169, 244, 151, 72, 109, 158, 108, 226, 58, + 91, 213, 250, 76, 57, 211, 206, 58, 65, 242, 71, 133, 22, 47, 165, 246, 70, 173, 253, 221, 237, 116, 250, 69, 189, + 26, 56, 163, 232, 68, 185, 238, 61, 55, 27, 71, 136, 111, 247, 7, 218, 182, 126, 70, 226, 28, 203, 170, 237, 151, + 75, 182, 44, 121, 242, 187, 42, 233, 125, 157, 90, 253, 255, 255, 27, 112, 139, 137, 1, 195, 71, 54, 91, 216, 102, + 159, 27, 65, 192, 14, 91, 209, 133, 54, 104, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2292, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15525587059634637689" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a174acd3" + } + ] + }, + "cborHex": "9fd8669f1bd775f72c32ec8b7980ff44a174acd3ff", + "cborBytes": [159, 216, 102, 159, 27, 215, 117, 247, 44, 50, 236, 139, 121, 128, 255, 68, 161, 116, 172, 211, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2293, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "143ef7886c4ff412c3" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e574db8a5c52d4018" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12054447015554869991" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3597cd1e997299a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6940389222573123988" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2860062260339668128" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "067d1a0865" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11085857569432865036" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24a9a21a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1072c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b0b652fbb3bc504cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1335209406362313663" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79190e028c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14913307935415985562" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f4b1a32dc139b053195" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccc215f6a89b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10706772038271466520" + } + } + } + ] + } + ] + }, + "cborHex": "9f49143ef7886c4ff412c3bf493e574db8a5c52d40181ba749ffb185ea6ae748c3597cd1e997299a1b60513739e66ba994ffd8669f1b27b0fb78f70bf4a080ffbf45067d1a08651b99d8e0b9589f090c4424a9a21a431072c5494b0b652fbb3bc504cd1b12879de17efc63bf4579190e028c1bcef6b68d9c7be59a4a8f4b1a32dc139b053195417d46ccc215f6a89b1b9496187120417c18ffff", + "cborBytes": [ + 159, 73, 20, 62, 247, 136, 108, 79, 244, 18, 195, 191, 73, 62, 87, 77, 184, 165, 197, 45, 64, 24, 27, 167, 73, + 255, 177, 133, 234, 106, 231, 72, 195, 89, 124, 209, 233, 151, 41, 154, 27, 96, 81, 55, 57, 230, 107, 169, 148, + 255, 216, 102, 159, 27, 39, 176, 251, 120, 247, 11, 244, 160, 128, 255, 191, 69, 6, 125, 26, 8, 101, 27, 153, 216, + 224, 185, 88, 159, 9, 12, 68, 36, 169, 162, 26, 67, 16, 114, 197, 73, 75, 11, 101, 47, 187, 59, 197, 4, 205, 27, + 18, 135, 157, 225, 126, 252, 99, 191, 69, 121, 25, 14, 2, 140, 27, 206, 246, 182, 141, 156, 123, 229, 154, 74, + 143, 75, 26, 50, 220, 19, 155, 5, 49, 149, 65, 125, 70, 204, 194, 21, 246, 168, 155, 27, 148, 150, 24, 113, 32, + 65, 124, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2294, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05" + } + ] + }, + "cborHex": "9f4105ff", + "cborBytes": [159, 65, 5, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2295, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1ab569878c258d4147a6" + }, + { + "_tag": "ByteArray", + "bytearray": "da" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b9" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "49fa7bf08aac2fa9ede926" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15293562140119279971" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "822847c5fa25" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15292892876037581165" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec5137b944f9a97da757d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f879004aa4d1f74159" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f266dc1393e88d3230ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0692" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16260802501427376923" + }, + "fields": [] + } + ] + }, + "cborHex": "9f4a1ab569878c258d4147a641da9f41b9ffbf4b49fa7bf08aac2fa9ede9261bd43da5bcd82c296346822847c5fa251bd43b450ba852696d4bec5137b944f9a97da757d249f879004aa4d1f741594af266dc1393e88d3230ec420692ffd8669f1be1a9f9b8bc5cb31b80ffff", + "cborBytes": [ + 159, 74, 26, 181, 105, 135, 140, 37, 141, 65, 71, 166, 65, 218, 159, 65, 185, 255, 191, 75, 73, 250, 123, 240, + 138, 172, 47, 169, 237, 233, 38, 27, 212, 61, 165, 188, 216, 44, 41, 99, 70, 130, 40, 71, 197, 250, 37, 27, 212, + 59, 69, 11, 168, 82, 105, 109, 75, 236, 81, 55, 185, 68, 249, 169, 125, 167, 87, 210, 73, 248, 121, 0, 74, 164, + 209, 247, 65, 89, 74, 242, 102, 220, 19, 147, 232, 141, 50, 48, 236, 66, 6, 146, 255, 216, 102, 159, 27, 225, 169, + 249, 184, 188, 92, 179, 27, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2296, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02f830050405" + } + ] + }, + "cborHex": "9f1bffffffffffffffee4602f830050405ff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 70, 2, 248, 48, 5, 4, 5, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2297, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aed2c590fa7bfba5a62321" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16896856698306582769" + } + }, + { + "_tag": "ByteArray", + "bytearray": "206ea02a63" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2393993984215496798" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f3654278a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11012853415000038470" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "929b89" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1605264227047079836" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dda623bd4e3c9b77dfce" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6400992928967698658" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a9439de" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9190846995571969498" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6439142492274829937" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11359963550477217288" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4507215549473641147" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16893713055554393471" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4383257845225800263" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15554807740214530109" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1629781302945755828" + } + }, + { + "_tag": "ByteArray", + "bytearray": "91bf" + }, + { + "_tag": "ByteArray", + "bytearray": "8257552699388d7dcd90" + }, + { + "_tag": "ByteArray", + "bytearray": "41b16c" + }, + { + "_tag": "ByteArray", + "bytearray": "c82e463a21452537" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16778329478409102000" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18120331959770545442" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de3a0f36ae" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7ef28c005abcd40cc3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c568d9784461" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "50bd3d365b3e8c" + }, + { + "_tag": "ByteArray", + "bytearray": "66cca988555940cb3f4f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2780442035429365433" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12844692673349984886" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81ba99e412d0f515dd18" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f64e9ea5f0c32bd84bf" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6065503941267356111" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9597343176274369380" + } + }, + { + "_tag": "ByteArray", + "bytearray": "482a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17845969204282546635" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3329050457806575005" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f4baed2c590fa7bfba5a623211bea7db1a4cb3e58f145206ea02a631b21392cd83f96385e456f3654278affd8669f1b98d583d514865c469f43929b89ffffbf1b16470b4f37c87f9c4adda623bd4e3c9b77dfce1b58d4e527ace828e2448a9439de1b7f8c72a5b4088dda1b595c6dfb0e2a2a711b9da6b2a957946e081b3e8cd8a9787e52bb1bea7286846db2d57f1b3cd475c967a0c247ffd8669f1bd7ddc73a10fbd03d9f1b169e2575c7a7b2b44291bf4a8257552699388d7dcd904341b16c48c82e463a21452537ffff1be8d899c3e50a22b0ff9f1bfb7859e96a47fd2245de3a0f36aeff497ef28c005abcd40cc39f46c568d97844619f4750bd3d365b3e8c4a66cca988555940cb3f4fffbf1b26961d4cc054d6b91bb24183eeac16a2764a81ba99e412d0f515dd184a4f64e9ea5f0c32bd84bfff9f1b542cffb2baf8f9cf1b85309cc5195a5b6442482a1bf7a99e7075d259cb1b2e3329c0d8e9959dffffff", + "cborBytes": [ + 159, 159, 159, 75, 174, 210, 197, 144, 250, 123, 251, 165, 166, 35, 33, 27, 234, 125, 177, 164, 203, 62, 88, 241, + 69, 32, 110, 160, 42, 99, 27, 33, 57, 44, 216, 63, 150, 56, 94, 69, 111, 54, 84, 39, 138, 255, 216, 102, 159, 27, + 152, 213, 131, 213, 20, 134, 92, 70, 159, 67, 146, 155, 137, 255, 255, 191, 27, 22, 71, 11, 79, 55, 200, 127, 156, + 74, 221, 166, 35, 189, 78, 60, 155, 119, 223, 206, 27, 88, 212, 229, 39, 172, 232, 40, 226, 68, 138, 148, 57, 222, + 27, 127, 140, 114, 165, 180, 8, 141, 218, 27, 89, 92, 109, 251, 14, 42, 42, 113, 27, 157, 166, 178, 169, 87, 148, + 110, 8, 27, 62, 140, 216, 169, 120, 126, 82, 187, 27, 234, 114, 134, 132, 109, 178, 213, 127, 27, 60, 212, 117, + 201, 103, 160, 194, 71, 255, 216, 102, 159, 27, 215, 221, 199, 58, 16, 251, 208, 61, 159, 27, 22, 158, 37, 117, + 199, 167, 178, 180, 66, 145, 191, 74, 130, 87, 85, 38, 153, 56, 141, 125, 205, 144, 67, 65, 177, 108, 72, 200, 46, + 70, 58, 33, 69, 37, 55, 255, 255, 27, 232, 216, 153, 195, 229, 10, 34, 176, 255, 159, 27, 251, 120, 89, 233, 106, + 71, 253, 34, 69, 222, 58, 15, 54, 174, 255, 73, 126, 242, 140, 0, 90, 188, 212, 12, 195, 159, 70, 197, 104, 217, + 120, 68, 97, 159, 71, 80, 189, 61, 54, 91, 62, 140, 74, 102, 204, 169, 136, 85, 89, 64, 203, 63, 79, 255, 191, 27, + 38, 150, 29, 76, 192, 84, 214, 185, 27, 178, 65, 131, 238, 172, 22, 162, 118, 74, 129, 186, 153, 228, 18, 208, + 245, 21, 221, 24, 74, 79, 100, 233, 234, 95, 12, 50, 189, 132, 191, 255, 159, 27, 84, 44, 255, 178, 186, 248, 249, + 207, 27, 133, 48, 156, 197, 25, 90, 91, 100, 66, 72, 42, 27, 247, 169, 158, 112, 117, 210, 89, 203, 27, 46, 51, + 41, 192, 216, 233, 149, 157, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2298, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10430701645894902760" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6cc9d892a878d9b548" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f8bb34ad424" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12208298808914590732" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2968545087646608731" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3b999c4b39" + }, + { + "_tag": "ByteArray", + "bytearray": "bbe51ba4cb02314f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14400861704571060265" + } + }, + { + "_tag": "ByteArray", + "bytearray": "720fd0e46d937bda" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10510975959492029642" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6864942742591588300" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7673786417905177633" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10605172058865072360" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15777524193972848003" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11769999404111401802" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8449050191273301775" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16642213706236644249" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c0e4ff3956f" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14742742755759476517" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b5a762d" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5176320219235837571" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "105d8f6b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8939852461848313921" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ea8a2d918bc0526" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3aa" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "540efee9827a452532241e" + }, + { + "_tag": "ByteArray", + "bytearray": "88cd8328bf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15832798465008781083" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11619666233019672226" + } + } + ] + } + ] + }, + "cborHex": "9f9fbf413f1b90c14be1f9a5e3e8496cc9d892a878d9b548464f8bb34ad424ffbf1ba96c9715992dbc0c1b2932640778e82d5bffa09f453b999c4b3948bbe51ba4cb02314f1bc7da236bd87c002948720fd0e46d937bda1b91de7cf214316ccaffa0ffbf1b5f452d0d679147cc1b6a7ec416f17494211b932d23cc868cf8e81bdaf506a958e205831ba3577019109e934a1b75410e624c4a970f1be6f505310c5f4b99466c0e4ff3956fff9f1bcc98be6d0c01cf25448b5a762dff80d8669f1b47d5fbd0673966839fbf44105d8f6b1b7c10bc72dcdec041489ea8a2d918bc052642a3aaff4b540efee9827a452532241e4588cd8328bf1bdbb966517332c71b1ba14158e013bd26a2ffffff", + "cborBytes": [ + 159, 159, 191, 65, 63, 27, 144, 193, 75, 225, 249, 165, 227, 232, 73, 108, 201, 216, 146, 168, 120, 217, 181, 72, + 70, 79, 139, 179, 74, 212, 36, 255, 191, 27, 169, 108, 151, 21, 153, 45, 188, 12, 27, 41, 50, 100, 7, 120, 232, + 45, 91, 255, 160, 159, 69, 59, 153, 156, 75, 57, 72, 187, 229, 27, 164, 203, 2, 49, 79, 27, 199, 218, 35, 107, + 216, 124, 0, 41, 72, 114, 15, 208, 228, 109, 147, 123, 218, 27, 145, 222, 124, 242, 20, 49, 108, 202, 255, 160, + 255, 191, 27, 95, 69, 45, 13, 103, 145, 71, 204, 27, 106, 126, 196, 22, 241, 116, 148, 33, 27, 147, 45, 35, 204, + 134, 140, 248, 232, 27, 218, 245, 6, 169, 88, 226, 5, 131, 27, 163, 87, 112, 25, 16, 158, 147, 74, 27, 117, 65, + 14, 98, 76, 74, 151, 15, 27, 230, 245, 5, 49, 12, 95, 75, 153, 70, 108, 14, 79, 243, 149, 111, 255, 159, 27, 204, + 152, 190, 109, 12, 1, 207, 37, 68, 139, 90, 118, 45, 255, 128, 216, 102, 159, 27, 71, 213, 251, 208, 103, 57, 102, + 131, 159, 191, 68, 16, 93, 143, 107, 27, 124, 16, 188, 114, 220, 222, 192, 65, 72, 158, 168, 162, 217, 24, 188, 5, + 38, 66, 163, 170, 255, 75, 84, 14, 254, 233, 130, 122, 69, 37, 50, 36, 30, 69, 136, 205, 131, 40, 191, 27, 219, + 185, 102, 81, 115, 50, 199, 27, 27, 161, 65, 88, 224, 19, 189, 38, 162, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2299, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "000300" + } + ] + }, + "cborHex": "9f43000300ff", + "cborBytes": [159, 67, 0, 3, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2300, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6902379840049002530" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a713dc243fa5ca" + }, + { + "_tag": "ByteArray", + "bytearray": "56960e85c3bc87" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11765709642229800807" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "843148675492776691" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc9bebb20a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11156093325686471650" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16798158837401808746" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9143b1d2485022dc25fc24" + }, + { + "_tag": "ByteArray", + "bytearray": "999b4f86" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4242371804951440884" + } + }, + { + "_tag": "ByteArray", + "bytearray": "510d6efff9c9baa1" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9900839368805471857" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3920f5c7d56aed69" + }, + { + "_tag": "ByteArray", + "bytearray": "c42c7d27f0" + }, + { + "_tag": "ByteArray", + "bytearray": "5a31d07b562eaa2cdaf62a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15529683340456582152" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7577165324909431291" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10865319553918211750" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17560071363028832492" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ae61f3be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9624188030062615525" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5552836218820649461" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e379" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13818050266882081939" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b229d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4988933016368047754" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18197191202160083402" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0c1886e8db26f03adbe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7567093967340149350" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9767645434309249115" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8577926926412473302" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2381476830567825933" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0683" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "437235045374515340" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2520309deca85a4ca42b2854" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2aa391f26664ff33cf2" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b5fca2de4e6f038229f9f47a713dc243fa5ca4756960e85c3bc871ba34832950b7edf67ffd8669f1b0bb37740cf968af39f45fc9bebb20a1b9ad267c5aea5fbe21be91f0c764fec6f6a4b9143b1d2485022dc25fc2444999b4f86ffff9f1b3adfeeadf7436df448510d6efff9c9baa1ff9f1b8966d8f2f3da5671483920f5c7d56aed6945c42c7d27f04b5a31d07b562eaa2cdaf62affd8669f1bd78484b7e6375c0880ffffff9fd8669f1b69277fb7aba249fb9f1b96c95e913e6696a61bf3b1e7de0fd7d0ec44ae61f3be1b858ffc05af72dbe5410cffffd8669f1b4d0fa31eeeba61f59f42e3791bbfc39381adff8493438b229dffff1b453c402558d5e68ad8669f1bfc8968fc4a9d81ca9f4ac0c1886e8db26f03adbe1b6903b7df014f9a661b878da5c573f8085b1b770aeb177e12e3d61b210cb48f4ed1820dffffbf4206831b06115ef50ae6588c4c2520309deca85a4ca42b28544ac2aa391f26664ff33cf2ffff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 95, 202, 45, 228, 230, 240, 56, 34, 159, 159, 71, 167, 19, 220, 36, 63, 165, 202, 71, 86, + 150, 14, 133, 195, 188, 135, 27, 163, 72, 50, 149, 11, 126, 223, 103, 255, 216, 102, 159, 27, 11, 179, 119, 64, + 207, 150, 138, 243, 159, 69, 252, 155, 235, 178, 10, 27, 154, 210, 103, 197, 174, 165, 251, 226, 27, 233, 31, 12, + 118, 79, 236, 111, 106, 75, 145, 67, 177, 210, 72, 80, 34, 220, 37, 252, 36, 68, 153, 155, 79, 134, 255, 255, 159, + 27, 58, 223, 238, 173, 247, 67, 109, 244, 72, 81, 13, 110, 255, 249, 201, 186, 161, 255, 159, 27, 137, 102, 216, + 242, 243, 218, 86, 113, 72, 57, 32, 245, 199, 213, 106, 237, 105, 69, 196, 44, 125, 39, 240, 75, 90, 49, 208, 123, + 86, 46, 170, 44, 218, 246, 42, 255, 216, 102, 159, 27, 215, 132, 132, 183, 230, 55, 92, 8, 128, 255, 255, 255, + 159, 216, 102, 159, 27, 105, 39, 127, 183, 171, 162, 73, 251, 159, 27, 150, 201, 94, 145, 62, 102, 150, 166, 27, + 243, 177, 231, 222, 15, 215, 208, 236, 68, 174, 97, 243, 190, 27, 133, 143, 252, 5, 175, 114, 219, 229, 65, 12, + 255, 255, 216, 102, 159, 27, 77, 15, 163, 30, 238, 186, 97, 245, 159, 66, 227, 121, 27, 191, 195, 147, 129, 173, + 255, 132, 147, 67, 139, 34, 157, 255, 255, 27, 69, 60, 64, 37, 88, 213, 230, 138, 216, 102, 159, 27, 252, 137, + 104, 252, 74, 157, 129, 202, 159, 74, 192, 193, 136, 110, 141, 178, 111, 3, 173, 190, 27, 105, 3, 183, 223, 1, 79, + 154, 102, 27, 135, 141, 165, 197, 115, 248, 8, 91, 27, 119, 10, 235, 23, 126, 18, 227, 214, 27, 33, 12, 180, 143, + 78, 209, 130, 13, 255, 255, 191, 66, 6, 131, 27, 6, 17, 94, 245, 10, 230, 88, 140, 76, 37, 32, 48, 157, 236, 168, + 90, 76, 164, 43, 40, 84, 74, 194, 170, 57, 31, 38, 102, 79, 243, 60, 242, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2301, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5552628240607000700" + } + } + ] + }, + "cborHex": "9fa01b4d0ee5f73b2eb87cff", + "cborBytes": [159, 160, 27, 77, 14, 229, 247, 59, 46, 184, 124, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2302, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8253089406580012650" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8840023491399578247" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "393592239133100759" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12015873111073399671" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4679648008680405591" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7015889810666060058" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5163178828772937268" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f939db" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3116704316435485779" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8669f1b7288dd16aabdb66a9fbf1b7aae12876afaf2871b0576520e5fe10ad71ba6c0f4ee83b2a3771b40f17311ef427a57ff9f1b615d729c6c08791a1b47a74bca00d40e34ffbf43f939db1b2b40c21013105453ffffffa0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 114, 136, 221, 22, 170, 189, 182, 106, 159, 191, 27, 122, 174, 18, 135, 106, 250, 242, + 135, 27, 5, 118, 82, 14, 95, 225, 10, 215, 27, 166, 192, 244, 238, 131, 178, 163, 119, 27, 64, 241, 115, 17, 239, + 66, 122, 87, 255, 159, 27, 97, 93, 114, 156, 108, 8, 121, 26, 27, 71, 167, 75, 202, 0, 212, 14, 52, 255, 191, 67, + 249, 57, 219, 27, 43, 64, 194, 16, 19, 16, 84, 83, 255, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2303, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f8be" + } + ] + }, + "cborHex": "9fd905088042f8beff", + "cborBytes": [159, 217, 5, 8, 128, 66, 248, 190, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2304, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17509307784627880182" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10761273506704037519" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5ed8df949d9618fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11577824109863851357" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6444356254698553385" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a4cfa204554cea70" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "823760483445530532" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1135394619965264133" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9071462257233248326" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6490462386297643512" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "377e41f53558e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17044290397288161189" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b8b3ff3219f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7878522560713550511" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16326604474430097722" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef7b58" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22e6f21ed93ba96f169a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1702a127931d3bc0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16bde268c8b3197f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fbc6a27c352" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10468343649817160481" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2cf2f20f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2344529868166523261" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "caeb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3443712728620666784" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4cab3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf2fd8ea96dba00f69fd8669f1b9557b93d19ea968f9f485ed8df949d9618fd1ba0acb1af9c63555d1b596ef3deb75fc029ffff9f48a4cfa204554cea70ffbf1b0b6e95cb93c65fa41b0fc1bb642aeb51051b7de44edc3bc040461b5a12c127034e21f847377e41f53558e91bec897bcfd2f65fa5466b8b3ff3219f1b6d562286da3b6aafffffffbf1be293c04476b5893a43ef7b58ffbf41034a22e6f21ed93ba96f169a481702a127931d3bc04816bde268c8b3197f461fbc6a27c3521b91470715fa116b21442cf2f20f1b2089717e455be97d42caeb1b2fca867b29ed0fa043f4cab34100ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 242, 253, 142, 169, 109, 186, 0, 246, 159, 216, 102, 159, 27, 149, 87, 185, 61, 25, 234, + 150, 143, 159, 72, 94, 216, 223, 148, 157, 150, 24, 253, 27, 160, 172, 177, 175, 156, 99, 85, 93, 27, 89, 110, + 243, 222, 183, 95, 192, 41, 255, 255, 159, 72, 164, 207, 162, 4, 85, 76, 234, 112, 255, 191, 27, 11, 110, 149, + 203, 147, 198, 95, 164, 27, 15, 193, 187, 100, 42, 235, 81, 5, 27, 125, 228, 78, 220, 59, 192, 64, 70, 27, 90, 18, + 193, 39, 3, 78, 33, 248, 71, 55, 126, 65, 245, 53, 88, 233, 27, 236, 137, 123, 207, 210, 246, 95, 165, 70, 107, + 139, 63, 243, 33, 159, 27, 109, 86, 34, 134, 218, 59, 106, 175, 255, 255, 255, 191, 27, 226, 147, 192, 68, 118, + 181, 137, 58, 67, 239, 123, 88, 255, 191, 65, 3, 74, 34, 230, 242, 30, 217, 59, 169, 111, 22, 154, 72, 23, 2, 161, + 39, 147, 29, 59, 192, 72, 22, 189, 226, 104, 200, 179, 25, 127, 70, 31, 188, 106, 39, 195, 82, 27, 145, 71, 7, 21, + 250, 17, 107, 33, 68, 44, 242, 242, 15, 27, 32, 137, 113, 126, 69, 91, 233, 125, 66, 202, 235, 27, 47, 202, 134, + 123, 41, 237, 15, 160, 67, 244, 202, 179, 65, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2305, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15950162942037135044" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3765856100297037700" + } + } + ] + }, + "cborHex": "9f801bdd5a5cb02db90ec41b3443022bbd715784ff", + "cborBytes": [159, 128, 27, 221, 90, 92, 176, 45, 185, 14, 196, 27, 52, 67, 2, 43, 189, 113, 87, 132, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2306, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b8e0" + } + ] + }, + "cborHex": "9f42b8e0ff", + "cborBytes": [159, 66, 184, 224, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2307, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3529470972565386316" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2706477873020020517" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7126243193140047500" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b65444b783ffdc558" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9133871502325470880" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13002526770636118825" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "989dd0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13666077986918619119" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5100167196620607421" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17178783832777554459" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1316311704516531266" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13530998625239029092" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4359263054188019607" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "43" + }, + { + "_tag": "ByteArray", + "bytearray": "22eafce62f" + } + ] + }, + "cborHex": "9fbf1b30fb33264ccff44c1b258f574935d027251b62e5806d7e286e8c493b65444b783ffdc5581b7ec207bcf02c56a041fa1bb47241352245db2943989dd01bbda7a985eb11d7ef1b46c76f0b21abcfbd1bee674ce0f9edfa1b1b12447a8569659442ffbf1bbbc7c38f31abd5641b3c7f36a6c35c7f97ff41434522eafce62fff", + "cborBytes": [ + 159, 191, 27, 48, 251, 51, 38, 76, 207, 244, 76, 27, 37, 143, 87, 73, 53, 208, 39, 37, 27, 98, 229, 128, 109, 126, + 40, 110, 140, 73, 59, 101, 68, 75, 120, 63, 253, 197, 88, 27, 126, 194, 7, 188, 240, 44, 86, 160, 65, 250, 27, + 180, 114, 65, 53, 34, 69, 219, 41, 67, 152, 157, 208, 27, 189, 167, 169, 133, 235, 17, 215, 239, 27, 70, 199, 111, + 11, 33, 171, 207, 189, 27, 238, 103, 76, 224, 249, 237, 250, 27, 27, 18, 68, 122, 133, 105, 101, 148, 66, 255, + 191, 27, 187, 199, 195, 143, 49, 171, 213, 100, 27, 60, 127, 54, 166, 195, 92, 127, 151, 255, 65, 67, 69, 34, 234, + 252, 230, 47, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2308, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1128213539117521457" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "38dcc6748998df89eaf469" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6972005864383170184" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2505ceb60dee" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8733750692553653245" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d645f0523ced9987e5a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17125108949092117265" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5353347443244037685" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15305912997549446131" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16306629167225349673" + } + } + ] + }, + "cborHex": "9fd8669f1b0fa8383c7de2da319f4b38dcc6748998df89eaf4691b60c18a64f67fc688462505ceb60dee9f1b793483fb427b7bfd4a6d645f0523ced9987e5aff1beda89bdb427fab11ffff1b4a4ae922e9ce76351bd46986c6edf813f31be24cc8d4d47da629ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 15, 168, 56, 60, 125, 226, 218, 49, 159, 75, 56, 220, 198, 116, 137, 152, 223, 137, 234, + 244, 105, 27, 96, 193, 138, 100, 246, 127, 198, 136, 70, 37, 5, 206, 182, 13, 238, 159, 27, 121, 52, 131, 251, 66, + 123, 123, 253, 74, 109, 100, 95, 5, 35, 206, 217, 152, 126, 90, 255, 27, 237, 168, 155, 219, 66, 127, 171, 17, + 255, 255, 27, 74, 74, 233, 34, 233, 206, 118, 53, 27, 212, 105, 134, 198, 237, 248, 19, 243, 27, 226, 76, 200, + 212, 212, 125, 166, 41, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2309, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "38de97754197" + }, + { + "_tag": "ByteArray", + "bytearray": "29727f4d1eceb7523250a8fc" + } + ] + }, + "cborHex": "9f4638de977541974c29727f4d1eceb7523250a8fcff", + "cborBytes": [159, 70, 56, 222, 151, 117, 65, 151, 76, 41, 114, 127, 77, 30, 206, 183, 82, 50, 80, 168, 252, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2310, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6268676652100092960" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8669f1b56fed033c436042080ffa0ff", + "cborBytes": [159, 216, 102, 159, 27, 86, 254, 208, 51, 196, 54, 4, 32, 128, 255, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2311, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc4b22450c61010c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a422b75bb57edb" + } + } + ] + } + ] + }, + "cborHex": "9fbf48bc4b22450c61010c47a422b75bb57edbffff", + "cborBytes": [159, 191, 72, 188, 75, 34, 69, 12, 97, 1, 12, 71, 164, 34, 183, 91, 181, 126, 219, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2312, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "173b55f6" + }, + { + "_tag": "ByteArray", + "bytearray": "3351f6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7424790011031398310" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + "cborHex": "9f44173b55f6433351f6d8669f1b670a272d436527a680ff06ff", + "cborBytes": [ + 159, 68, 23, 59, 85, 246, 67, 51, 81, 246, 216, 102, 159, 27, 103, 10, 39, 45, 67, 101, 39, 166, 128, 255, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2313, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4113808714900336572" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13450964543026658791" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2504ed5ebce" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d7ae3b" + }, + { + "_tag": "ByteArray", + "bytearray": "e9b5b297963001471dec" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "529527" + } + ] + } + ] + }, + "cborHex": "9f9fbf1b39172f3af58a6fbc1bbaab6cfc517a7de7412546a2504ed5ebceffff9fd8669f1bfffffffffffffffb9f43d7ae3b4ae9b5b297963001471decffff43529527ffff", + "cborBytes": [ + 159, 159, 191, 27, 57, 23, 47, 58, 245, 138, 111, 188, 27, 186, 171, 108, 252, 81, 122, 125, 231, 65, 37, 70, 162, + 80, 78, 213, 235, 206, 255, 255, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 67, 215, + 174, 59, 74, 233, 181, 178, 151, 150, 48, 1, 71, 29, 236, 255, 255, 67, 82, 149, 39, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2314, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1256020936683859404" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12181614850283248092" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15448408366322603724" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2646944869723794214" + } + }, + { + "_tag": "ByteArray", + "bytearray": "733d731250e21c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "21200698052485103" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8468108898477524301" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11552352150947792351" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4834485609836005724" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0f59161ccac1f51407" + }, + { + "_tag": "ByteArray", + "bytearray": "493649d3b66f4c" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1fae" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11892023143406020602" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13340151698142540059" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5551392813375751246" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e5447ce742" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1420108119097357540" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6088421046348419781" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e9011929571d96641aad" + }, + { + "_tag": "ByteArray", + "bytearray": "730d71b4e026437a6f" + }, + { + "_tag": "ByteArray", + "bytearray": "1ecb43d08d08f592e4486c" + }, + { + "_tag": "ByteArray", + "bytearray": "60ef38b4a1bfa7594efb12" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b116e4863217eadcc9f9f1ba90dca2a55c199dc1bd663c58f5bd4d6cc1b24bbd655bbedeb2647733d731250e21c1b004b51ec2c689fefff1b7584c42d5d13c54dd8669f1ba0523313057685df9f1b43178b0c4603495c490f59161ccac1f5140747493649d3b66f4cffff80ffff421faed8669f1ba508f40ad370a7fa9fd8669f1bb921bd4a519c311b9f1b4d0a8259e9eb044e45e5447ce742ffffd8669f1b13b53ccf6d7234e49f1b547e6aaf0e9c12c54ae9011929571d96641aad49730d71b4e026437a6f4b1ecb43d08d08f592e4486c4b60ef38b4a1bfa7594efb12ffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 17, 110, 72, 99, 33, 126, 173, 204, 159, 159, 27, 169, 13, 202, 42, 85, 193, 153, 220, 27, + 214, 99, 197, 143, 91, 212, 214, 204, 27, 36, 187, 214, 85, 187, 237, 235, 38, 71, 115, 61, 115, 18, 80, 226, 28, + 27, 0, 75, 81, 236, 44, 104, 159, 239, 255, 27, 117, 132, 196, 45, 93, 19, 197, 77, 216, 102, 159, 27, 160, 82, + 51, 19, 5, 118, 133, 223, 159, 27, 67, 23, 139, 12, 70, 3, 73, 92, 73, 15, 89, 22, 28, 202, 193, 245, 20, 7, 71, + 73, 54, 73, 211, 182, 111, 76, 255, 255, 128, 255, 255, 66, 31, 174, 216, 102, 159, 27, 165, 8, 244, 10, 211, 112, + 167, 250, 159, 216, 102, 159, 27, 185, 33, 189, 74, 81, 156, 49, 27, 159, 27, 77, 10, 130, 89, 233, 235, 4, 78, + 69, 229, 68, 124, 231, 66, 255, 255, 216, 102, 159, 27, 19, 181, 60, 207, 109, 114, 52, 228, 159, 27, 84, 126, + 106, 175, 14, 156, 18, 197, 74, 233, 1, 25, 41, 87, 29, 150, 100, 26, 173, 73, 115, 13, 113, 180, 224, 38, 67, + 122, 111, 75, 30, 203, 67, 208, 141, 8, 245, 146, 228, 72, 108, 75, 96, 239, 56, 180, 161, 191, 167, 89, 78, 251, + 18, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2315, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "741954530369087580" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9803422032829006378" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "626d995f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3644412e4ea13fc17eb2c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78893510107541ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14663881756383003237" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b211a0aa791e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2697475186081143853" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11654742321382794599" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1385604253160227537" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8776567251445508854" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11012411809247999159" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10938986683435701099" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e46e807deec46cd8" + } + ] + }, + "cborHex": "9fbf1b0a4bf3b6de24285c1b880cc065ea02c22a44626d995f4b3644412e4ea13fc17eb2c54878893510107541ad1bcb8092c3cd8a426546b211a0aa791e1b256f5b63d0cc1c2dff9f1ba1bdf6644ebba567414d9f1b133aa7ba1ce2c2d11b79cca16a39bc6af6ffffd8669f1b98d3f231ba8b34b79f1b97cf166e6ce9d36bffff48e46e807deec46cd8ff", + "cborBytes": [ + 159, 191, 27, 10, 75, 243, 182, 222, 36, 40, 92, 27, 136, 12, 192, 101, 234, 2, 194, 42, 68, 98, 109, 153, 95, 75, + 54, 68, 65, 46, 78, 161, 63, 193, 126, 178, 197, 72, 120, 137, 53, 16, 16, 117, 65, 173, 27, 203, 128, 146, 195, + 205, 138, 66, 101, 70, 178, 17, 160, 170, 121, 30, 27, 37, 111, 91, 99, 208, 204, 28, 45, 255, 159, 27, 161, 189, + 246, 100, 78, 187, 165, 103, 65, 77, 159, 27, 19, 58, 167, 186, 28, 226, 194, 209, 27, 121, 204, 161, 106, 57, + 188, 106, 246, 255, 255, 216, 102, 159, 27, 152, 211, 242, 49, 186, 139, 52, 183, 159, 27, 151, 207, 22, 110, 108, + 233, 211, 107, 255, 255, 72, 228, 110, 128, 125, 238, 196, 108, 216, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2316, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12080093162645155165" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2539efd4d45ec0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "118053853223212145" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33f007a0c8568713" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a6618" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "388cde16fa4c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9993155cfd169d3a1935e5f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cf84a0ee8ba80d10e7248" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4236cf4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6851957515976245645" + } + } + } + ] + } + ] + }, + "cborHex": "9fa01ba7a51cba7516ed5dbf472539efd4d45ec01b01a3695aa1bc547141394833f007a0c8568713435a661846388cde16fa4c4c9993155cfd169d3a1935e5f34b8cf84a0ee8ba80d10e724844a4236cf41b5f170b0ebbd5018dffff", + "cborBytes": [ + 159, 160, 27, 167, 165, 28, 186, 117, 22, 237, 93, 191, 71, 37, 57, 239, 212, 212, 94, 192, 27, 1, 163, 105, 90, + 161, 188, 84, 113, 65, 57, 72, 51, 240, 7, 160, 200, 86, 135, 19, 67, 90, 102, 24, 70, 56, 140, 222, 22, 250, 76, + 76, 153, 147, 21, 92, 253, 22, 157, 58, 25, 53, 229, 243, 75, 140, 248, 74, 14, 232, 186, 128, 209, 14, 114, 72, + 68, 164, 35, 108, 244, 27, 95, 23, 11, 14, 187, 213, 1, 141, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2317, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13919769577184539828" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fc" + } + ] + } + ] + }, + "cborHex": "9fd905099fd8669f1bc12cf4ae2b5fb4b480ff41fcffff", + "cborBytes": [ + 159, 217, 5, 9, 159, 216, 102, 159, 27, 193, 44, 244, 174, 43, 95, 180, 180, 128, 255, 65, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2318, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "310319e7d9" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13173969246476970038" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a530" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8773252635601623864" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18157118101012901793" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9422092074855672576" + } + } + ] + } + ] + }, + "cborHex": "9f45310319e7d9a0d8669f1bb6d3573b222e28369f42a5301b79c0daca15cb5b381bfbfb0ab65bb06fa11b82c1fed25acbab00ffffff", + "cborBytes": [ + 159, 69, 49, 3, 25, 231, 217, 160, 216, 102, 159, 27, 182, 211, 87, 59, 34, 46, 40, 54, 159, 66, 165, 48, 27, 121, + 192, 218, 202, 21, 203, 91, 56, 27, 251, 251, 10, 182, 91, 176, 111, 161, 27, 130, 193, 254, 210, 90, 203, 171, 0, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2319, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "917769308852802510" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14344817851535135223" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16615183365887094676" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16168348400548184287" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1254833300490068075" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b0cbc9252e7ed53ce9fd8669f1bc71307d5786f11f79f1be694fd3d81adef9441851be0618334eb6e00df1b116a103d080aa06bffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 12, 188, 146, 82, 231, 237, 83, 206, 159, 216, 102, 159, 27, 199, 19, 7, 213, 120, 111, + 17, 247, 159, 27, 230, 148, 253, 61, 129, 173, 239, 148, 65, 133, 27, 224, 97, 131, 52, 235, 110, 0, 223, 27, 17, + 106, 16, 61, 8, 10, 160, 107, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2320, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9306179806371125885" + } + } + ] + }, + "cborHex": "9fa01b8126313a46aa1a7dff", + "cborBytes": [159, 160, 27, 129, 38, 49, 58, 70, 170, 26, 125, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2321, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4424312338012893437" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3f1b44" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8486673212399469331" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18002477360089275597" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4633732931998346276" + } + }, + { + "_tag": "ByteArray", + "bytearray": "34aad9b7a811b854c348755c" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "36" + }, + { + "_tag": "ByteArray", + "bytearray": "97de3b5d2c5cbaab8637bd" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11950178437789847916" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff99fd8669f1b3d6650a162a2f0fd9f433f1b441b75c6b85285e4c3131bf9d5a5c71d221ccd1b404e538d13ca6c244c34aad9b7a811b854c348755cffffa09f41364b97de3b5d2c5cbaab8637bdff1ba5d78ff972ff116cffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 216, 102, 159, 27, 61, 102, 80, 161, 98, 162, + 240, 253, 159, 67, 63, 27, 68, 27, 117, 198, 184, 82, 133, 228, 195, 19, 27, 249, 213, 165, 199, 29, 34, 28, 205, + 27, 64, 78, 83, 141, 19, 202, 108, 36, 76, 52, 170, 217, 183, 168, 17, 184, 84, 195, 72, 117, 92, 255, 255, 160, + 159, 65, 54, 75, 151, 222, 59, 93, 44, 92, 186, 171, 134, 55, 189, 255, 27, 165, 215, 143, 249, 114, 255, 17, 108, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2322, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a0ab07c41781a78495" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18104177887928127198" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9942790258186331374" + } + } + ] + }, + "cborHex": "9f49a0ab07c41781a784951bfb3ef5de78700ede1b89fbe30f876924eeff", + "cborBytes": [ + 159, 73, 160, 171, 7, 196, 23, 129, 167, 132, 149, 27, 251, 62, 245, 222, 120, 112, 14, 222, 27, 137, 251, 227, + 15, 135, 105, 36, 238, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2323, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffff1ff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2324, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0c7ab2d711a201ee9412f0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9917633524677156796" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a0ff8f8bd933d0c42a16" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1464302767623607702" + } + }, + { + "_tag": "ByteArray", + "bytearray": "494dc0100641" + }, + { + "_tag": "ByteArray", + "bytearray": "a2b12273c9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12272753886619794068" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1134511192542274539" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f6b82b532a1c6326" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8117627331791425407" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2472" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aef34ee05d936d0f77cec12c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3956d7b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0abd5ddc0cf4cf0d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c5f41908a41354deb8537d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15018284022834095264" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0b9af4c835564" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1267482929628935575" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2b3e4ae1abef5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83face1ec5" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11193110047031743252" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0870fab15c8f51" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10714683292565935276" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1916768364508600291" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1988788367526069779" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "760596914736771998" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17478665118735421043" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16215484721791597430" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16576521925343816503" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14661749504532193662" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1436d27cd6b5f2b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "501006" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "811703003855360211" + } + } + } + ] + } + ] + }, + "cborHex": "9f4b0c7ab2d711a201ee9412f09fd8669f1b89a2832512e31fbc9f4aa0ff8f8bd933d0c42a161b14523f9be3d3959646494dc010064145a2b12273c91baa5194a2d3c47a94ffffd8669f1b0fbe97eb312fe3eb9f48f6b82b532a1c63261b70a79b0c9a6e0f7f415bffffbf4224724caef34ee05d936d0f77cec12c443956d7b1480abd5ddc0cf4cf0d4c5c5f41908a41354deb8537d71bd06ba9bf9cf364a047b0b9af4c8355641b119701025367759747b2b3e4ae1abef54583face1ec5ffffd8669f1b9b55ea48bd2ed3149f470870fab15c8f51a0d8669f1b94b233af8e3494ac9f1b1a99baac0b3dd7e3ffffd8669f1b1b99987bb3d2061380ffffffd8669f1b0a8e2edd3824b39e9f9f1bf290b151ce3c4e731be108f970ef297b76ff1be60ba2dd6b97ab37ffffbf1bcb78ff7e3b66a17e48e1436d27cd6b5f2b435010061b0b43bf94d7ea90d3ffff", + "cborBytes": [ + 159, 75, 12, 122, 178, 215, 17, 162, 1, 238, 148, 18, 240, 159, 216, 102, 159, 27, 137, 162, 131, 37, 18, 227, 31, + 188, 159, 74, 160, 255, 143, 139, 217, 51, 208, 196, 42, 22, 27, 20, 82, 63, 155, 227, 211, 149, 150, 70, 73, 77, + 192, 16, 6, 65, 69, 162, 177, 34, 115, 201, 27, 170, 81, 148, 162, 211, 196, 122, 148, 255, 255, 216, 102, 159, + 27, 15, 190, 151, 235, 49, 47, 227, 235, 159, 72, 246, 184, 43, 83, 42, 28, 99, 38, 27, 112, 167, 155, 12, 154, + 110, 15, 127, 65, 91, 255, 255, 191, 66, 36, 114, 76, 174, 243, 78, 224, 93, 147, 109, 15, 119, 206, 193, 44, 68, + 57, 86, 215, 177, 72, 10, 189, 93, 220, 12, 244, 207, 13, 76, 92, 95, 65, 144, 138, 65, 53, 77, 235, 133, 55, 215, + 27, 208, 107, 169, 191, 156, 243, 100, 160, 71, 176, 185, 175, 76, 131, 85, 100, 27, 17, 151, 1, 2, 83, 103, 117, + 151, 71, 178, 179, 228, 174, 26, 190, 245, 69, 131, 250, 206, 30, 197, 255, 255, 216, 102, 159, 27, 155, 85, 234, + 72, 189, 46, 211, 20, 159, 71, 8, 112, 250, 177, 92, 143, 81, 160, 216, 102, 159, 27, 148, 178, 51, 175, 142, 52, + 148, 172, 159, 27, 26, 153, 186, 172, 11, 61, 215, 227, 255, 255, 216, 102, 159, 27, 27, 153, 152, 123, 179, 210, + 6, 19, 128, 255, 255, 255, 216, 102, 159, 27, 10, 142, 46, 221, 56, 36, 179, 158, 159, 159, 27, 242, 144, 177, 81, + 206, 60, 78, 115, 27, 225, 8, 249, 112, 239, 41, 123, 118, 255, 27, 230, 11, 162, 221, 107, 151, 171, 55, 255, + 255, 191, 27, 203, 120, 255, 126, 59, 102, 161, 126, 72, 225, 67, 109, 39, 205, 107, 95, 43, 67, 80, 16, 6, 27, + 11, 67, 191, 148, 215, 234, 144, 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2325, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12200507063832580658" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4086938121874003535" + } + } + ] + }, + "cborHex": "9f1ba950e888936292321b38b7b8917d4d564fff", + "cborBytes": [159, 27, 169, 80, 232, 136, 147, 98, 146, 50, 27, 56, 183, 184, 145, 125, 77, 86, 79, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2326, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17220621921077392085" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4984903346306073082" + } + } + ] + }, + "cborHex": "9fd8669f1beefbf066011f72d580ff1b452def2eac3ac1faff", + "cborBytes": [ + 159, 216, 102, 159, 27, 238, 251, 240, 102, 1, 31, 114, 213, 128, 255, 27, 69, 45, 239, 46, 172, 58, 193, 250, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2327, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e4089743be" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b910360a427aec6e0a17d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5832820055562734237" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1604780514417651230" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2745787920921208502" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aefccdeb3f1550" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3305238263631162007" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14881288326358774296" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1925385574289129185" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13494344547251843241" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4368318090375364492" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3182159123012196329" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8482779670163426024" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ab650be4c0c3c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10699535506109665077" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7135581436562480878" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17073599596762819511" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8926666717306617002" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9110780880986394622" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8984198108764192757" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6918130952949312505" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "750fb01a931080d3e48ff873" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57e24436b887e6670cdf95ab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6964d5031cfbe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b0ec5206f9df5c3737cd8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7580648535404264690" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13249947338771106887" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fb9c91f90110" + }, + { + "_tag": "ByteArray", + "bytearray": "bde797e2a427ed4b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14509384352748667674" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0a73810a79b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4709428702220052514" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8389829529255569282" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c2b2ee61ff471e83432f1d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15659464849762752605" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5949588197304603644" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95e611db0f202b29" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13830067408494781528" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1546308189695086448" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9381343770418569639" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "45" + }, + { + "_tag": "ByteArray", + "bytearray": "ba436cf7" + }, + { + "_tag": "ByteArray", + "bytearray": "1dc1" + } + ] + } + ] + } + ] + }, + "cborHex": "9f45e4089743be9fbf4bb910360a427aec6e0a17d31b50f256efda974a9dff9f1b1645536018552e1e1b261aff90f71126b647aefccdeb3f15501b2dde90b059c3aa97ffd8669f1bce84f4e36cc8321880ffbf1b1ab857fa8b2a3ee11bbb458ade9facf0a91b3c9f6228aabc7f8c1b2c294cdcd1e917e91b75b8e32a93ff0ae8470ab650be4c0c3c1b947c62daaf588f351b6306ad82b82d9eee1becf19c5f9a4cebb71b7be1e415795cfcaaffff1b7e6ffef0b59d4ffebf1b7cae489460a03ff51b60022372a82dabf94c750fb01a931080d3e48ff8734c57e24436b887e6670cdf95ab47f6964d5031cfbe4b5b0ec5206f9df5c3737cd8ff9fd8669f1b6933dfadcfdb3cf29f1bb7e144e744158c4746fb9c91f9011048bde797e2a427ed4b1bc95bb031df32031affff9f460a73810a79b01b415b4073fadae822ffd8669f1b746ea981715c67829f4bc2b2ee61ff471e83432f1d1bd95198503ed3185d1b52912ef1743293fc4895e611db0f202b291bbfee45087f09e458ffffd8669f1b1575971b180d8f709f1b82313a74679f61a7ffff9f414544ba436cf7421dc1ffffff", + "cborBytes": [ + 159, 69, 228, 8, 151, 67, 190, 159, 191, 75, 185, 16, 54, 10, 66, 122, 236, 110, 10, 23, 211, 27, 80, 242, 86, + 239, 218, 151, 74, 157, 255, 159, 27, 22, 69, 83, 96, 24, 85, 46, 30, 27, 38, 26, 255, 144, 247, 17, 38, 182, 71, + 174, 252, 205, 235, 63, 21, 80, 27, 45, 222, 144, 176, 89, 195, 170, 151, 255, 216, 102, 159, 27, 206, 132, 244, + 227, 108, 200, 50, 24, 128, 255, 191, 27, 26, 184, 87, 250, 139, 42, 62, 225, 27, 187, 69, 138, 222, 159, 172, + 240, 169, 27, 60, 159, 98, 40, 170, 188, 127, 140, 27, 44, 41, 76, 220, 209, 233, 23, 233, 27, 117, 184, 227, 42, + 147, 255, 10, 232, 71, 10, 182, 80, 190, 76, 12, 60, 27, 148, 124, 98, 218, 175, 88, 143, 53, 27, 99, 6, 173, 130, + 184, 45, 158, 238, 27, 236, 241, 156, 95, 154, 76, 235, 183, 27, 123, 225, 228, 21, 121, 92, 252, 170, 255, 255, + 27, 126, 111, 254, 240, 181, 157, 79, 254, 191, 27, 124, 174, 72, 148, 96, 160, 63, 245, 27, 96, 2, 35, 114, 168, + 45, 171, 249, 76, 117, 15, 176, 26, 147, 16, 128, 211, 228, 143, 248, 115, 76, 87, 226, 68, 54, 184, 135, 230, + 103, 12, 223, 149, 171, 71, 246, 150, 77, 80, 49, 207, 190, 75, 91, 14, 197, 32, 111, 157, 245, 195, 115, 124, + 216, 255, 159, 216, 102, 159, 27, 105, 51, 223, 173, 207, 219, 60, 242, 159, 27, 183, 225, 68, 231, 68, 21, 140, + 71, 70, 251, 156, 145, 249, 1, 16, 72, 189, 231, 151, 226, 164, 39, 237, 75, 27, 201, 91, 176, 49, 223, 50, 3, 26, + 255, 255, 159, 70, 10, 115, 129, 10, 121, 176, 27, 65, 91, 64, 115, 250, 218, 232, 34, 255, 216, 102, 159, 27, + 116, 110, 169, 129, 113, 92, 103, 130, 159, 75, 194, 178, 238, 97, 255, 71, 30, 131, 67, 47, 29, 27, 217, 81, 152, + 80, 62, 211, 24, 93, 27, 82, 145, 46, 241, 116, 50, 147, 252, 72, 149, 230, 17, 219, 15, 32, 43, 41, 27, 191, 238, + 69, 8, 127, 9, 228, 88, 255, 255, 216, 102, 159, 27, 21, 117, 151, 27, 24, 13, 143, 112, 159, 27, 130, 49, 58, + 116, 103, 159, 97, 167, 255, 255, 159, 65, 69, 68, 186, 67, 108, 247, 66, 29, 193, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2328, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa0f4e3c" + } + ] + }, + "cborHex": "9f44fa0f4e3cff", + "cborBytes": [159, 68, 250, 15, 78, 60, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2329, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff480ff80ff", + "cborBytes": [159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 128, 255, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2330, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e223" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e3d2503" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "152d59ad097282b8fc90" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "752121887158112300" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "be8ab7" + }, + { + "_tag": "ByteArray", + "bytearray": "9c43e53c2b72a1" + }, + { + "_tag": "ByteArray", + "bytearray": "caa8538b446f2a" + }, + { + "_tag": "ByteArray", + "bytearray": "96ebfdd919d98e93a4d90085" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4434927196368771643" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2841940404516418263" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34be832b3d4f0d48" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3965851895843587518" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3743243536398018300" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4155747730275797127" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9632757455674057226" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12003574802861438304" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02dad2ff1112c992" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13424163774433503596" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11249226650589833730" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "919799849793312702" + } + } + ] + } + ] + }, + "cborHex": "9f42e2239fbf06121bfffffffffffffffb449e3d25034a152d59ad097282b8fc901b0a7012df17db102cffd8669f1bfffffffffffffffa9f43be8ab7479c43e53c2b72a147caa8538b446f2a4c96ebfdd919d98e93a4d900851b3d8c06c9b0479a3bffffbf1b277099bd9c07f2d74834be832b3d4f0d481b370989498b9105be1b33f2ac29eec7e6fc1b39ac2e8ae73988871b85ae6dde90f2a20a1ba69543af7f62b5604802dad2ff1112c9921bba4c35d41dc6a96c1b9c1d4809aa43aa02ff1b0cc3c9170f6357beffff", + "cborBytes": [ + 159, 66, 226, 35, 159, 191, 6, 18, 27, 255, 255, 255, 255, 255, 255, 255, 251, 68, 158, 61, 37, 3, 74, 21, 45, 89, + 173, 9, 114, 130, 184, 252, 144, 27, 10, 112, 18, 223, 23, 219, 16, 44, 255, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 250, 159, 67, 190, 138, 183, 71, 156, 67, 229, 60, 43, 114, 161, 71, 202, 168, 83, 139, 68, + 111, 42, 76, 150, 235, 253, 217, 25, 217, 142, 147, 164, 217, 0, 133, 27, 61, 140, 6, 201, 176, 71, 154, 59, 255, + 255, 191, 27, 39, 112, 153, 189, 156, 7, 242, 215, 72, 52, 190, 131, 43, 61, 79, 13, 72, 27, 55, 9, 137, 73, 139, + 145, 5, 190, 27, 51, 242, 172, 41, 238, 199, 230, 252, 27, 57, 172, 46, 138, 231, 57, 136, 135, 27, 133, 174, 109, + 222, 144, 242, 162, 10, 27, 166, 149, 67, 175, 127, 98, 181, 96, 72, 2, 218, 210, 255, 17, 18, 201, 146, 27, 186, + 76, 53, 212, 29, 198, 169, 108, 27, 156, 29, 72, 9, 170, 67, 170, 2, 255, 27, 12, 195, 201, 23, 15, 99, 87, 190, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2331, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a349c887b705aba2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9138604870451999908" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14944649804615830908" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11709737010964528352" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3713839879823021706" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10470818674313685979" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6a043c58760cd997de6e59" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15022972636413483888" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ea86a06bc8fc" + }, + { + "_tag": "ByteArray", + "bytearray": "e9b0c92fcb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4745086366642762581" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d18b9b4f20f2ed9e367a7c51" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6b84e04a" + }, + { + "_tag": "ByteArray", + "bytearray": "e2030bb0e31c2ed9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14253431578761351214" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5a2b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8828122369588726133" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f48a349c887b705aba2d8669f1b7ed2d8b615f234a49f9f1bcf660fd130bccd7c1ba28157c547c8fce01b338a35b1a587d68a1b914fd21b85fe6bdb4b6a043c58760cd997de6e59ffd8669f1bd07c520487d6db709f46ea86a06bc8fc45e9b0c92fcb1b41d9eee8f04a73554cd18b9b4f20f2ed9e367a7c51ffff446b84e04a48e2030bb0e31c2ed9d8669f1bc5ce5c80c267d02e9f425a2b1b7a83ca8591040975ffffffffff", + "cborBytes": [ + 159, 72, 163, 73, 200, 135, 183, 5, 171, 162, 216, 102, 159, 27, 126, 210, 216, 182, 21, 242, 52, 164, 159, 159, + 27, 207, 102, 15, 209, 48, 188, 205, 124, 27, 162, 129, 87, 197, 71, 200, 252, 224, 27, 51, 138, 53, 177, 165, + 135, 214, 138, 27, 145, 79, 210, 27, 133, 254, 107, 219, 75, 106, 4, 60, 88, 118, 12, 217, 151, 222, 110, 89, 255, + 216, 102, 159, 27, 208, 124, 82, 4, 135, 214, 219, 112, 159, 70, 234, 134, 160, 107, 200, 252, 69, 233, 176, 201, + 47, 203, 27, 65, 217, 238, 232, 240, 74, 115, 85, 76, 209, 139, 155, 79, 32, 242, 237, 158, 54, 122, 124, 81, 255, + 255, 68, 107, 132, 224, 74, 72, 226, 3, 11, 176, 227, 28, 46, 217, 216, 102, 159, 27, 197, 206, 92, 128, 194, 103, + 208, 46, 159, 66, 90, 43, 27, 122, 131, 202, 133, 145, 4, 9, 117, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2332, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9444565367036825570" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16370910145040486789" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4602817931026324420" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "53" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18161844186704462404" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "88e20c36588ae1b8" + }, + { + "_tag": "ByteArray", + "bytearray": "8bfa68acb5a3dcf489b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13077770669658034724" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffef9f1b8311d629702fcfe2d8669f1be331280a44fa11859f1b3fe07e85809f5bc4ffff809f41531bfc0bd50fee834244ff9f4888e20c36588ae1b84a8bfa68acb5a3dcf489b01bb57d932292fd5224ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 27, 131, 17, 214, 41, 112, 47, 207, 226, 216, + 102, 159, 27, 227, 49, 40, 10, 68, 250, 17, 133, 159, 27, 63, 224, 126, 133, 128, 159, 91, 196, 255, 255, 128, + 159, 65, 83, 27, 252, 11, 213, 15, 238, 131, 66, 68, 255, 159, 72, 136, 226, 12, 54, 88, 138, 225, 184, 74, 139, + 250, 104, 172, 181, 163, 220, 244, 137, 176, 27, 181, 125, 147, 34, 146, 253, 82, 36, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2333, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9889071134862429027" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18342033825727468626" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16491261107492789581" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2ebe21" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4729291700160768072" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a94f0e94" + }, + { + "_tag": "ByteArray", + "bytearray": "230b9bc876d1048b0775" + }, + { + "_tag": "ByteArray", + "bytearray": "fe67ec01e57f2cbc" + }, + { + "_tag": "ByteArray", + "bytearray": "99f6ae2e0d1ac94b6c27f2a6" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14557180054788435215" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b9a7f3a21010d64d5099f0fa" + }, + { + "_tag": "ByteArray", + "bytearray": "c94675ffcd64db6e" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "177d625dd4eb7a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11342795370571229157" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44e44b909f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15675380391506496898" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e93cf9a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b06f53001a64" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdf67b82968e548edd38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fadf83813" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10246292238107858417" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15285623505345638277" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9549379465376561116" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc97d39ae02074b91d5365" + }, + { + "_tag": "ByteArray", + "bytearray": "2cc95296614fe010c07a" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13244827295872062657" + } + } + ] + }, + "cborHex": "9fd8669f1b893d09cd780b4b639fd8669f1bfe8bfe9590af54529f41e41be4dcba9a52529d4d432ebe21ffffd8669f1b41a1d1be934928489f44a94f0e944a230b9bc876d1048b077548fe67ec01e57f2cbc4c99f6ae2e0d1ac94b6c27f2a6ffff9f1bca057e21f110ed0f4cb9a7f3a21010d64d5099f0fa48c94675ffcd64db6effffff9fbf47177d625dd4eb7a1b9d69b44af6d7e7e54544e44b909f1bd98a236a12de4d82448e93cf9a46b06f53001a644afdf67b82968e548edd38459fadf83813ffff9f1b8e322480dd42d5f11bd4217197667cef85d8669f1b848636076b2df7dc9f4bfc97d39ae02074b91d53654a2cc95296614fe010c07affffff1bb7cf144061da14c1ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 137, 61, 9, 205, 120, 11, 75, 99, 159, 216, 102, 159, 27, 254, 139, 254, 149, 144, 175, + 84, 82, 159, 65, 228, 27, 228, 220, 186, 154, 82, 82, 157, 77, 67, 46, 190, 33, 255, 255, 216, 102, 159, 27, 65, + 161, 209, 190, 147, 73, 40, 72, 159, 68, 169, 79, 14, 148, 74, 35, 11, 155, 200, 118, 209, 4, 139, 7, 117, 72, + 254, 103, 236, 1, 229, 127, 44, 188, 76, 153, 246, 174, 46, 13, 26, 201, 75, 108, 39, 242, 166, 255, 255, 159, 27, + 202, 5, 126, 33, 241, 16, 237, 15, 76, 185, 167, 243, 162, 16, 16, 214, 77, 80, 153, 240, 250, 72, 201, 70, 117, + 255, 205, 100, 219, 110, 255, 255, 255, 159, 191, 71, 23, 125, 98, 93, 212, 235, 122, 27, 157, 105, 180, 74, 246, + 215, 231, 229, 69, 68, 228, 75, 144, 159, 27, 217, 138, 35, 106, 18, 222, 77, 130, 68, 142, 147, 207, 154, 70, + 176, 111, 83, 0, 26, 100, 74, 253, 246, 123, 130, 150, 142, 84, 142, 221, 56, 69, 159, 173, 248, 56, 19, 255, 255, + 159, 27, 142, 50, 36, 128, 221, 66, 213, 241, 27, 212, 33, 113, 151, 102, 124, 239, 133, 216, 102, 159, 27, 132, + 134, 54, 7, 107, 45, 247, 220, 159, 75, 252, 151, 211, 154, 224, 32, 116, 185, 29, 83, 101, 74, 44, 201, 82, 150, + 97, 79, 224, 16, 192, 122, 255, 255, 255, 27, 183, 207, 20, 64, 97, 218, 20, 193, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2334, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd9050b9f9f1bffffffffffffffebffffff", + "cborBytes": [159, 217, 5, 11, 159, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2335, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6355268601896676343" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7824686385673236793" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d35b28562d6f9f051aa7" + }, + { + "_tag": "ByteArray", + "bytearray": "3f0aea9da1" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17093367975726153029" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c3ea70" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10163487697872632141" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da80b00d8663f4" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5726025173628875643" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "661275e175c49dcff3" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5120902949427213555" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0cde94fba8c76f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8392832962979232244" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2143638286495047689" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10361687883344837930" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "47977414494858926" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12207945616203240921" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15028208625123174279" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17516093504924354291" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "739750189678680382" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0aac6dfa065f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11076f07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a951f3e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7289368863749839615" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ae" + } + ] + } + ] + }, + "cborHex": "9fd9050d9fd87b9f1b5832731f2c3eabf71b6c96decf90e371394ad35b28562d6f9f051aa7453f0aea9da1ffff9fd8669f1bed37d79c0031fd459f43c3ea701b8d0bf63676c0394d47da80b00d8663f4ffffd8669f1b4f76ed8ec117f37b9f49661275e175c49dcff3ffffffbf1b47111a19cddbf4f3470cde94fba8c76f1b7479551cd990f9f41b1dbfbbaa0176e0091b8fcc1c3b383cfd2a1b00aa73344c352eae1ba96b55db8314d5d91bd08eec1f26eda7871bf315aa3d0d8b06f31b0a441ee0ce53593effbf460aac6dfa065f4411076f07445a951f3e1b65290a5c609a1affffd905049f41aeffff", + "cborBytes": [ + 159, 217, 5, 13, 159, 216, 123, 159, 27, 88, 50, 115, 31, 44, 62, 171, 247, 27, 108, 150, 222, 207, 144, 227, 113, + 57, 74, 211, 91, 40, 86, 45, 111, 159, 5, 26, 167, 69, 63, 10, 234, 157, 161, 255, 255, 159, 216, 102, 159, 27, + 237, 55, 215, 156, 0, 49, 253, 69, 159, 67, 195, 234, 112, 27, 141, 11, 246, 54, 118, 192, 57, 77, 71, 218, 128, + 176, 13, 134, 99, 244, 255, 255, 216, 102, 159, 27, 79, 118, 237, 142, 193, 23, 243, 123, 159, 73, 102, 18, 117, + 225, 117, 196, 157, 207, 243, 255, 255, 255, 191, 27, 71, 17, 26, 25, 205, 219, 244, 243, 71, 12, 222, 148, 251, + 168, 199, 111, 27, 116, 121, 85, 28, 217, 144, 249, 244, 27, 29, 191, 187, 170, 1, 118, 224, 9, 27, 143, 204, 28, + 59, 56, 60, 253, 42, 27, 0, 170, 115, 52, 76, 53, 46, 174, 27, 169, 107, 85, 219, 131, 20, 213, 217, 27, 208, 142, + 236, 31, 38, 237, 167, 135, 27, 243, 21, 170, 61, 13, 139, 6, 243, 27, 10, 68, 30, 224, 206, 83, 89, 62, 255, 191, + 70, 10, 172, 109, 250, 6, 95, 68, 17, 7, 111, 7, 68, 90, 149, 31, 62, 27, 101, 41, 10, 92, 96, 154, 26, 255, 255, + 217, 5, 4, 159, 65, 174, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2336, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14735669546098935737" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e50de56211f50d6ae691d8" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "70133bcf2c618e7688bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2336868759937366929" + } + } + } + ] + } + ] + }, + "cborHex": "9f41f91bfffffffffffffffabf1bcc7f9d6116c4c7b94be50de56211f50d6ae691d8ffbf4a70133bcf2c618e7688bf1b206e39c182c63b91ffff", + "cborBytes": [ + 159, 65, 249, 27, 255, 255, 255, 255, 255, 255, 255, 250, 191, 27, 204, 127, 157, 97, 22, 196, 199, 185, 75, 229, + 13, 229, 98, 17, 245, 13, 106, 230, 145, 216, 255, 191, 74, 112, 19, 59, 207, 44, 97, 142, 118, 136, 191, 27, 32, + 110, 57, 193, 130, 198, 59, 145, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2337, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7233346806568559463" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6461804701060822137" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba6c76db3124" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7431938036769600709" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8ab200c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17702832860781053132" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c958e219699269471f0fa9" + } + } + ] + } + ] + }, + "cborHex": "9f1b64620298beb9a367bf1b59acf123b6adf47946ba6c76db31241b67238c44b25db4c544f8ab200c1bf5ad18b178f784cc4bc958e219699269471f0fa9ffff", + "cborBytes": [ + 159, 27, 100, 98, 2, 152, 190, 185, 163, 103, 191, 27, 89, 172, 241, 35, 182, 173, 244, 121, 70, 186, 108, 118, + 219, 49, 36, 27, 103, 35, 140, 68, 178, 93, 180, 197, 68, 248, 171, 32, 12, 27, 245, 173, 24, 177, 120, 247, 132, + 204, 75, 201, 88, 226, 25, 105, 146, 105, 71, 31, 15, 169, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2338, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0813423a1d0aca80f83a91be" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1631665077148802116" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17555786615868289978" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2963891730157237476" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5379507542117736393" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13983783707580895038" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d3ee9d" + } + ] + }, + "cborHex": "9f4c0813423a1d0aca80f83a91bed8669f1b16a4d6be23dd5c449f1bf3a2aee99f62f3ba1b2921dbd340bd74e41b4aa7d99b92765fc9ffff9f1bc21061315a410f3eff43d3ee9dff", + "cborBytes": [ + 159, 76, 8, 19, 66, 58, 29, 10, 202, 128, 248, 58, 145, 190, 216, 102, 159, 27, 22, 164, 214, 190, 35, 221, 92, + 68, 159, 27, 243, 162, 174, 233, 159, 98, 243, 186, 27, 41, 33, 219, 211, 64, 189, 116, 228, 27, 74, 167, 217, + 155, 146, 118, 95, 201, 255, 255, 159, 27, 194, 16, 97, 49, 90, 65, 15, 62, 255, 67, 211, 238, 157, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2339, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14167309398438426673" + } + } + ] + }, + "cborHex": "9f1bc49c64d614f9b831ff", + "cborBytes": [159, 27, 196, 156, 100, 214, 20, 249, 184, 49, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2340, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "73" + } + ] + }, + "cborHex": "9fa0a04173ff", + "cborBytes": [159, 160, 160, 65, 115, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2341, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12404492872096084039" + } + } + ] + }, + "cborHex": "9f1bac259c8b9c26f047ff", + "cborBytes": [159, 27, 172, 37, 156, 139, 156, 38, 240, 71, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2342, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13476569631385987611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3179826146188898285" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8129805315185851035" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bbcebbd47351a6f5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "374145549273874007" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14702404705037363064" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9187722759223023511" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13518453224559255753" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1186099167684901558" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7799914995312437284" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2304499460915355577" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3399" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3752114088262500000" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3595899400349161531" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8663331435959990780" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ff5cc1383966b6228" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12754395102964437019" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14284656806730243852" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0586c3350c9ff34b7d" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e81fc86531da2a11" + } + ] + }, + "cborHex": "9fd8669f1bbb0664ad85942a1b9f1b2c2103085316afed9f1b70d2dedc50bc3a9b48bbcebbd47351a6f51b05313b650ec33e571bcc096f2ebbc8a7781b7f81592bbe429797ff1bbb9b31957a96a0c9bf1b1075dee8a63ebab61b6c3edd5ccdd728241b1ffb3a0cc8f05fb94233991b34122fe23b9ffea01b31e73373e5da183b1b783a560a6bdeb9fc496ff5cc1383966b62281bb100b6c53d2d501b41481bc63d4baeaf859f0c490586c3350c9ff34b7dffffff48e81fc86531da2a11ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 187, 6, 100, 173, 133, 148, 42, 27, 159, 27, 44, 33, 3, 8, 83, 22, 175, 237, 159, 27, 112, + 210, 222, 220, 80, 188, 58, 155, 72, 187, 206, 187, 212, 115, 81, 166, 245, 27, 5, 49, 59, 101, 14, 195, 62, 87, + 27, 204, 9, 111, 46, 187, 200, 167, 120, 27, 127, 129, 89, 43, 190, 66, 151, 151, 255, 27, 187, 155, 49, 149, 122, + 150, 160, 201, 191, 27, 16, 117, 222, 232, 166, 62, 186, 182, 27, 108, 62, 221, 92, 205, 215, 40, 36, 27, 31, 251, + 58, 12, 200, 240, 95, 185, 66, 51, 153, 27, 52, 18, 47, 226, 59, 159, 254, 160, 27, 49, 231, 51, 115, 229, 218, + 24, 59, 27, 120, 58, 86, 10, 107, 222, 185, 252, 73, 111, 245, 204, 19, 131, 150, 107, 98, 40, 27, 177, 0, 182, + 197, 61, 45, 80, 27, 65, 72, 27, 198, 61, 75, 174, 175, 133, 159, 12, 73, 5, 134, 195, 53, 12, 159, 243, 75, 125, + 255, 255, 255, 72, 232, 31, 200, 101, 49, 218, 42, 17, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2343, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "441c0ce9842c56" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16853955972667660816" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6716950749928465260" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6e60b1318544b5" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e87300c73507e5f09a89b981" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00abd470ce4ad0579d1dcdf5" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f47441c0ce9842c561be9e547a93aedda101b5d37671e7f47a36cff476e60b1318544b5ffbf4ce87300c73507e5f09a89b9814c00abd470ce4ad0579d1dcdf5ffff", + "cborBytes": [ + 159, 159, 159, 71, 68, 28, 12, 233, 132, 44, 86, 27, 233, 229, 71, 169, 58, 237, 218, 16, 27, 93, 55, 103, 30, + 127, 71, 163, 108, 255, 71, 110, 96, 177, 49, 133, 68, 181, 255, 191, 76, 232, 115, 0, 199, 53, 7, 229, 240, 154, + 137, 185, 129, 76, 0, 171, 212, 112, 206, 74, 208, 87, 157, 29, 205, 245, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2344, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8757402222521855757" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "735250821500571041" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13261142631204089949" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8460321679935962105" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a26e81b7b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3959467116437388949" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7271824144307836118" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12540609130529457162" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5f19468812411587f497f09" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6786bdcb5b3fffc81f2575" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7791693508223600561" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "830234a044" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a59cda382c4c2d432975c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bebdc884f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bae9d601102712ff7963" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff653b411b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4e4b3c4a6714f7330" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3373" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6f409db950607" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2501800295921389379" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b79888aec34a1af0d9f1b0a3422ba045b0da1d8669f1bb8090af668b5705d9f1b756919be421e7bf945a26e81b7b61b36f2da5d3f173e951b64eab5880e93d4d6ffffffffbf1bae09318fac3a840a4cb5f19468812411587f497f09ffbf4b6786bdcb5b3fffc81f25751b6c21a7f6ac6287b145830234a04441054ba59cda382c4c2d432975c245bebdc884f34abae9d601102712ff796345ff653b411b49f4e4b3c4a6714f7330423373ffbf47a6f409db9506071b22b82e1d315c8f43ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 121, 136, 138, 236, 52, 161, 175, 13, 159, 27, 10, 52, 34, 186, 4, 91, 13, 161, 216, 102, + 159, 27, 184, 9, 10, 246, 104, 181, 112, 93, 159, 27, 117, 105, 25, 190, 66, 30, 123, 249, 69, 162, 110, 129, 183, + 182, 27, 54, 242, 218, 93, 63, 23, 62, 149, 27, 100, 234, 181, 136, 14, 147, 212, 214, 255, 255, 255, 255, 191, + 27, 174, 9, 49, 143, 172, 58, 132, 10, 76, 181, 241, 148, 104, 129, 36, 17, 88, 127, 73, 127, 9, 255, 191, 75, + 103, 134, 189, 203, 91, 63, 255, 200, 31, 37, 117, 27, 108, 33, 167, 246, 172, 98, 135, 177, 69, 131, 2, 52, 160, + 68, 65, 5, 75, 165, 156, 218, 56, 44, 76, 45, 67, 41, 117, 194, 69, 190, 189, 200, 132, 243, 74, 186, 233, 214, 1, + 16, 39, 18, 255, 121, 99, 69, 255, 101, 59, 65, 27, 73, 244, 228, 179, 196, 166, 113, 79, 115, 48, 66, 51, 115, + 255, 191, 71, 166, 244, 9, 219, 149, 6, 7, 27, 34, 184, 46, 29, 49, 92, 143, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2345, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bf25d2d9efc46f7bd9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12556596267107202694" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "af73434674" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8800e4" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9d1211" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + }, + "cborHex": "9f9f49bf25d2d9efc46f7bd9d8669f1bae41fdc6f8ebb6869f45af73434674ffffff9f438800e480ff439d121114ff", + "cborBytes": [ + 159, 159, 73, 191, 37, 210, 217, 239, 196, 111, 123, 217, 216, 102, 159, 27, 174, 65, 253, 198, 248, 235, 182, + 134, 159, 69, 175, 115, 67, 70, 116, 255, 255, 255, 159, 67, 136, 0, 228, 128, 255, 67, 157, 18, 17, 20, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2346, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15743680183385588719" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bda7cc9b6940e03ef80ffff", + "cborBytes": [159, 216, 102, 159, 27, 218, 124, 201, 182, 148, 14, 3, 239, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2347, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3221903046477897613" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15402027217203757014" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a11f0ace6f4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6048109a6b18" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b60459" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3440569254424865791" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5f0e2ee52e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8192" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9222962147453315452" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e299706d6bb8" + }, + { + "_tag": "ByteArray", + "bytearray": "a2770c13b148" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "92ced966086347db1d3d0da5" + }, + { + "_tag": "ByteArray", + "bytearray": "ab11bce320b88baa39" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e725ed7945" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8572366610921210524" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12056590454389744761" + } + } + ] + }, + "cborHex": "9fd8669f1b2cb67fc01a105f8d9fbf1bd5befe268e53ffd6461a11f0ace6f4466048109a6b1841b143b604591b2fbf5b820b1febff46c5f0e2ee52e9428192ff1b7ffe8b352fd4297c46e299706d6bb846a2770c13b148ffff9f4c92ced966086347db1d3d0da549ab11bce320b88baa399f45e725ed7945ffffd8669f1b76f72a03a860c29c80ffa01ba7519d23c4442479ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 44, 182, 127, 192, 26, 16, 95, 141, 159, 191, 27, 213, 190, 254, 38, 142, 83, 255, 214, + 70, 26, 17, 240, 172, 230, 244, 70, 96, 72, 16, 154, 107, 24, 65, 177, 67, 182, 4, 89, 27, 47, 191, 91, 130, 11, + 31, 235, 255, 70, 197, 240, 226, 238, 82, 233, 66, 129, 146, 255, 27, 127, 254, 139, 53, 47, 212, 41, 124, 70, + 226, 153, 112, 109, 107, 184, 70, 162, 119, 12, 19, 177, 72, 255, 255, 159, 76, 146, 206, 217, 102, 8, 99, 71, + 219, 29, 61, 13, 165, 73, 171, 17, 188, 227, 32, 184, 139, 170, 57, 159, 69, 231, 37, 237, 121, 69, 255, 255, 216, + 102, 159, 27, 118, 247, 42, 3, 168, 96, 194, 156, 128, 255, 160, 27, 167, 81, 157, 35, 196, 68, 36, 121, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2348, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16141671304617896823" + } + } + ] + }, + "cborHex": "9f1be002bc8780ddab77ff", + "cborBytes": [159, 27, 224, 2, 188, 135, 128, 221, 171, 119, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2349, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11796752108015469385" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8579802328300437885" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71d524305cc0bffe47" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13379836317942949342" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "92fd4ce38e14" + } + ] + }, + "cborHex": "9f02bf1ba3b67b8a559a43491b771194c2856ac17d4971d524305cc0bffe471bb9aeba3de3dc25deff4692fd4ce38e14ff", + "cborBytes": [ + 159, 2, 191, 27, 163, 182, 123, 138, 85, 154, 67, 73, 27, 119, 17, 148, 194, 133, 106, 193, 125, 73, 113, 213, 36, + 48, 92, 192, 191, 254, 71, 27, 185, 174, 186, 61, 227, 220, 37, 222, 255, 70, 146, 253, 76, 227, 142, 20, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2350, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9031511063327798211" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3f024bdf90" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12296801310437407315" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5384442485243617538" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18219064621980102606" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "120776203597760209" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2766850026123922804" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5774130603433976236" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3937" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "491e512c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6aafe85aa32368" + }, + { + "_tag": "ByteArray", + "bytearray": "966aeda15a5bc792" + }, + { + "_tag": "ByteArray", + "bytearray": "e5c4f4b3bf" + }, + { + "_tag": "ByteArray", + "bytearray": "04ea77cf" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9023848451266836853" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "334c7d780b2b0de5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "649ec23f6acc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "124476" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de8d2180390296f18b87" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5986931731849932164" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0f" + } + ] + }, + "cborHex": "9f9f9f1b7d565f760aa9f3c3453f024bdf901baaa703a3fe2dfa531b4ab961e98e77a1021bfcd71ebeb502afceffa0d8669f1b01ad155138c3c6d19f1b2665d37079e58d741b5021d530f064e1ac423937ffffff44491e512cd8669f1bffffffffffffffeb9f9f476aafe85aa3236848966aeda15a5bc79245e5c4f4b3bf4404ea77cfff1b7d3b265b24b7f975ffffbf48334c7d780b2b0de5413246649ec23f6acc431244764ade8d2180390296f18b871b5315dab0a36ded84ff410fff", + "cborBytes": [ + 159, 159, 159, 27, 125, 86, 95, 118, 10, 169, 243, 195, 69, 63, 2, 75, 223, 144, 27, 170, 167, 3, 163, 254, 45, + 250, 83, 27, 74, 185, 97, 233, 142, 119, 161, 2, 27, 252, 215, 30, 190, 181, 2, 175, 206, 255, 160, 216, 102, 159, + 27, 1, 173, 21, 81, 56, 195, 198, 209, 159, 27, 38, 101, 211, 112, 121, 229, 141, 116, 27, 80, 33, 213, 48, 240, + 100, 225, 172, 66, 57, 55, 255, 255, 255, 68, 73, 30, 81, 44, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 235, 159, 159, 71, 106, 175, 232, 90, 163, 35, 104, 72, 150, 106, 237, 161, 90, 91, 199, 146, 69, 229, 196, + 244, 179, 191, 68, 4, 234, 119, 207, 255, 27, 125, 59, 38, 91, 36, 183, 249, 117, 255, 255, 191, 72, 51, 76, 125, + 120, 11, 43, 13, 229, 65, 50, 70, 100, 158, 194, 63, 106, 204, 67, 18, 68, 118, 74, 222, 141, 33, 128, 57, 2, 150, + 241, 139, 135, 27, 83, 21, 218, 176, 163, 109, 237, 132, 255, 65, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2351, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3265934420732838915" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bffb60266d00e7aabc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8205443928166925318" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "882070893430156c22e0d67f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8552365446344806813" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17029320565319090315" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d56" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17468237670126684105" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6205740042044726927" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2935733701849892078" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8fd87535" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9676329603308154120" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5064418008829301492" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0cbf890a9bef338" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13025948656944824281" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0083a7937591" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10923f25" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4395050563440088981" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25d43b05b41162" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "184b11070eb148932fe14c46" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7146734740686577909" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18440628043211046314" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64772ef4a9df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14626083854040670051" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15487358613507808799" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55b885919246" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76c3a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3978415223781343272" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f53937b5c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98a827ea60ef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f67244f8696f6df7fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b95d5a48de2f42e256" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "eab94a7451fb3ecb6c" + } + ] + }, + "cborHex": "9fbf1b2d52ee0d4f80840349bffb60266d00e7aabc1b71df97c742c684064c882070893430156c22e0d67f1b76b01b0fa2b5119d41871bec544cd43619408b425d561bf26ba59c3bff87c91b561f37b0567e5e8fffd8669f1b28bdd23f65e7c4ee9fbf448fd875351b86493a81bec76d0842f0fa41ecffd8669f1b46486d58ba5c92f49f48c0cbf890a9bef338ffffbf1bb4c57749ffac3fd9460083a7937591ffbf4410923f251b3cfe5b3393ba17954725d43b05b411624c184b11070eb148932fe14c464231f71b632e4d61b29120f5414a1bffea4580aeb37daa4664772ef4a9df1bcafa49c5df2b9f63ffffffbf41111bd6ee269a7b381e1f4655b88591924641b84376c3a81b37362b91467e4028458f53937b5c4698a827ea60ef49f67244f8696f6df7fc49b95d5a48de2f42e256ff49eab94a7451fb3ecb6cff", + "cborBytes": [ + 159, 191, 27, 45, 82, 238, 13, 79, 128, 132, 3, 73, 191, 251, 96, 38, 109, 0, 231, 170, 188, 27, 113, 223, 151, + 199, 66, 198, 132, 6, 76, 136, 32, 112, 137, 52, 48, 21, 108, 34, 224, 214, 127, 27, 118, 176, 27, 15, 162, 181, + 17, 157, 65, 135, 27, 236, 84, 76, 212, 54, 25, 64, 139, 66, 93, 86, 27, 242, 107, 165, 156, 59, 255, 135, 201, + 27, 86, 31, 55, 176, 86, 126, 94, 143, 255, 216, 102, 159, 27, 40, 189, 210, 63, 101, 231, 196, 238, 159, 191, 68, + 143, 216, 117, 53, 27, 134, 73, 58, 129, 190, 199, 109, 8, 66, 240, 250, 65, 236, 255, 216, 102, 159, 27, 70, 72, + 109, 88, 186, 92, 146, 244, 159, 72, 192, 203, 248, 144, 169, 190, 243, 56, 255, 255, 191, 27, 180, 197, 119, 73, + 255, 172, 63, 217, 70, 0, 131, 167, 147, 117, 145, 255, 191, 68, 16, 146, 63, 37, 27, 60, 254, 91, 51, 147, 186, + 23, 149, 71, 37, 212, 59, 5, 180, 17, 98, 76, 24, 75, 17, 7, 14, 177, 72, 147, 47, 225, 76, 70, 66, 49, 247, 27, + 99, 46, 77, 97, 178, 145, 32, 245, 65, 74, 27, 255, 234, 69, 128, 174, 179, 125, 170, 70, 100, 119, 46, 244, 169, + 223, 27, 202, 250, 73, 197, 223, 43, 159, 99, 255, 255, 255, 191, 65, 17, 27, 214, 238, 38, 154, 123, 56, 30, 31, + 70, 85, 184, 133, 145, 146, 70, 65, 184, 67, 118, 195, 168, 27, 55, 54, 43, 145, 70, 126, 64, 40, 69, 143, 83, + 147, 123, 92, 70, 152, 168, 39, 234, 96, 239, 73, 246, 114, 68, 248, 105, 111, 109, 247, 252, 73, 185, 93, 90, 72, + 222, 47, 66, 226, 86, 255, 73, 234, 185, 74, 116, 81, 251, 62, 203, 108, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2352, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0384" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + ] + }, + "cborHex": "9f4203841bfffffffffffffffaff", + "cborBytes": [159, 66, 3, 132, 27, 255, 255, 255, 255, 255, 255, 255, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2353, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18259163552705412376" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "15bd6d7585" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c4f973e2b33d9ef5ce9f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f211" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd2d79" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f477" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfd6594828ec3fd189f4515bd6d7585bf4b2c4f973e2b33d9ef5ce9f042f21143bd2d7942f477ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 253, 101, 148, 130, 142, 195, 253, 24, 159, 69, 21, 189, 109, 117, 133, 191, 75, 44, 79, + 151, 62, 43, 51, 217, 239, 92, 233, 240, 66, 242, 17, 67, 189, 45, 121, 66, 244, 119, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2354, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18031749333652762400" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14060189960909396149" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa815861167672" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9102618036373387853" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cefbbc" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cabefc34d9d1da" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8526253755439380307" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b5ed03876e4292f3781b2a7" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13312652504344312051" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bdc22d80c6d45f" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfa3da47b8f426f209f9f1bc31fd4467e8498b547fa8158611676721b7e52fee058197a4d43cefbbcff47cabefc34d9d1dabf1b7653569dd5cdf7534c9b5ed03876e4292f3781b2a7ffd8669f1bb8c00aeb53a838f39f47bdc22d80c6d45fffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 250, 61, 164, 123, 143, 66, 111, 32, 159, 159, 27, 195, 31, 212, 70, 126, 132, 152, 181, + 71, 250, 129, 88, 97, 22, 118, 114, 27, 126, 82, 254, 224, 88, 25, 122, 77, 67, 206, 251, 188, 255, 71, 202, 190, + 252, 52, 217, 209, 218, 191, 27, 118, 83, 86, 157, 213, 205, 247, 83, 76, 155, 94, 208, 56, 118, 228, 41, 47, 55, + 129, 178, 167, 255, 216, 102, 159, 27, 184, 192, 10, 235, 83, 168, 56, 243, 159, 71, 189, 194, 45, 128, 198, 212, + 95, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2355, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6495633362880590512" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13711927286558790611" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "65591938486022958" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b5a252020d1ac72b09f9f1bbe4a8d37dd5293d3ffd8669f1b00e907854196b32e80ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 90, 37, 32, 32, 209, 172, 114, 176, 159, 159, 27, 190, 74, 141, 55, 221, 82, 147, 211, + 255, 216, 102, 159, 27, 0, 233, 7, 133, 65, 150, 179, 46, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2356, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c5992611" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6776075562532273611" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e175ff17936a21b09d" + }, + { + "_tag": "ByteArray", + "bytearray": "1d00bf7b964f6272272e" + }, + { + "_tag": "ByteArray", + "bytearray": "b14f85e005b42b8e34" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2061511663612851438" + } + } + ] + }, + "cborHex": "9f44c59926111b5e0974d2abf0fdcb9f49e175ff17936a21b09d4a1d00bf7b964f6272272e49b14f85e005b42b8e34ff1b1c9bf5ef89f7f4eeff", + "cborBytes": [ + 159, 68, 197, 153, 38, 17, 27, 94, 9, 116, 210, 171, 240, 253, 203, 159, 73, 225, 117, 255, 23, 147, 106, 33, 176, + 157, 74, 29, 0, 191, 123, 150, 79, 98, 114, 39, 46, 73, 177, 79, 133, 224, 5, 180, 43, 142, 52, 255, 27, 28, 155, + 245, 239, 137, 247, 244, 238, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2357, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2462720031962094299" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5240720266859659939" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3c78e289c4334c8f4d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22e28e11b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11743633976413784355" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "665dbac11eec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "583160970c892bcfd3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6db9d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f6cf10cc30f401a93" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d8ca8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "139c8713" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b49c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15438568355341908050" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0b60daaf64f2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd48effe" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "490d8d73498215dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78349a08" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4910b2107e63b8d9ac20aaf6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e85faf196c" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13048618991981757430" + } + } + ] + }, + "cborHex": "9fd8669f1b222d56d22e56dadb9f1b48bac750f15c42a3ffff9f493c78e289c4334c8f4dbf4522e28e11b01ba2f9c4e1905a092346665dbac11eec49583160970c892bcfd3436db9d4494f6cf10cc30f401a93438d8ca844139c871342b49c1bd640d01f44bdb85247f0b60daaf64f2d44cd48effeffbf48490d8d73498215dd4478349a084c4910b2107e63b8d9ac20aaf645e85faf196cffff1bb51601d6b27d03f6ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 34, 45, 86, 210, 46, 86, 218, 219, 159, 27, 72, 186, 199, 80, 241, 92, 66, 163, 255, 255, + 159, 73, 60, 120, 226, 137, 196, 51, 76, 143, 77, 191, 69, 34, 226, 142, 17, 176, 27, 162, 249, 196, 225, 144, 90, + 9, 35, 70, 102, 93, 186, 193, 30, 236, 73, 88, 49, 96, 151, 12, 137, 43, 207, 211, 67, 109, 185, 212, 73, 79, 108, + 241, 12, 195, 15, 64, 26, 147, 67, 141, 140, 168, 68, 19, 156, 135, 19, 66, 180, 156, 27, 214, 64, 208, 31, 68, + 189, 184, 82, 71, 240, 182, 13, 170, 246, 79, 45, 68, 205, 72, 239, 254, 255, 191, 72, 73, 13, 141, 115, 73, 130, + 21, 221, 68, 120, 52, 154, 8, 76, 73, 16, 178, 16, 126, 99, 184, 217, 172, 32, 170, 246, 69, 232, 95, 175, 25, + 108, 255, 255, 27, 181, 22, 1, 214, 178, 125, 3, 246, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2358, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9661665098705833181" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12579940534281498300" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13154594054157174347" + } + }, + { + "_tag": "ByteArray", + "bytearray": "524214cfbe" + }, + { + "_tag": "ByteArray", + "bytearray": "4a" + }, + { + "_tag": "ByteArray", + "bytearray": "f03a3ba7aaf1fb24adef" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14349997657813331653" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17412291892541756686" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1820154234618158315" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cd02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3249767975970350066" + } + } + ] + }, + "cborHex": "9fd8669f1b86152137b3268cdd80ffd87a9fa09f1bae94ed43b962eebc1bb68e8198a281064b45524214cfbe414a4af03a3ba7aaf1fb24adefff41fcd8669f1bc7256ed719a6aec59f1bf1a4e338d45d950effff1b19427ca1fed69cebff9f80ff42cd021b2d197ec1922723f2ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 134, 21, 33, 55, 179, 38, 140, 221, 128, 255, 216, 122, 159, 160, 159, 27, 174, 148, 237, + 67, 185, 98, 238, 188, 27, 182, 142, 129, 152, 162, 129, 6, 75, 69, 82, 66, 20, 207, 190, 65, 74, 74, 240, 58, 59, + 167, 170, 241, 251, 36, 173, 239, 255, 65, 252, 216, 102, 159, 27, 199, 37, 110, 215, 25, 166, 174, 197, 159, 27, + 241, 164, 227, 56, 212, 93, 149, 14, 255, 255, 27, 25, 66, 124, 161, 254, 214, 156, 235, 255, 159, 128, 255, 66, + 205, 2, 27, 45, 25, 126, 193, 146, 39, 35, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2359, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8aed9bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "399ec366c26dc7ffd8f2" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5175345205725965508" + } + } + ] + } + ] + }, + "cborHex": "9f9fbf44c8aed9bc4a399ec366c26dc7ffd8f2ff1b47d2850b61512cc4ffff", + "cborBytes": [ + 159, 159, 191, 68, 200, 174, 217, 188, 74, 57, 158, 195, 102, 194, 109, 199, 255, 216, 242, 255, 27, 71, 210, 133, + 11, 97, 81, 44, 196, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2360, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "58034247e4" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f4558034247e4a0ff", + "cborBytes": [159, 69, 88, 3, 66, 71, 228, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2361, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2517879106664690543" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7139678813602301609" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8208162899804523092" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11332982702127257095" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6016532215149162970" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14495359732002572086" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16822655322456563212" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15897123043471871618" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2794470250907102642" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0b1b88eeb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10525406008579973305" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fac88fe135c007" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14905716211772297292" + } + } + } + ] + } + ] + }, + "cborHex": "9fa01b22f14db50c20736fbf1b63153c0da725c6a91b71e940ab2d638a541b9d46d7b90df116071b537f042c37a8f1da1bc929dce06583c7361be97613e2b1db9e0c1bdc9ded2e74d14e821b26c7f3e330b6edb2ffbf45f0b1b88eeb1b9211c0ffb22be0b947fac88fe135c0071bcedbbdebb578104cffff", + "cborBytes": [ + 159, 160, 27, 34, 241, 77, 181, 12, 32, 115, 111, 191, 27, 99, 21, 60, 13, 167, 37, 198, 169, 27, 113, 233, 64, + 171, 45, 99, 138, 84, 27, 157, 70, 215, 185, 13, 241, 22, 7, 27, 83, 127, 4, 44, 55, 168, 241, 218, 27, 201, 41, + 220, 224, 101, 131, 199, 54, 27, 233, 118, 19, 226, 177, 219, 158, 12, 27, 220, 157, 237, 46, 116, 209, 78, 130, + 27, 38, 199, 243, 227, 48, 182, 237, 178, 255, 191, 69, 240, 177, 184, 142, 235, 27, 146, 17, 192, 255, 178, 43, + 224, 185, 71, 250, 200, 143, 225, 53, 192, 7, 27, 206, 219, 189, 235, 181, 120, 16, 76, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2362, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14640860809434334474" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "71783e" + }, + { + "_tag": "ByteArray", + "bytearray": "d262ebff8a5b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1461770374101406548" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8824692993539247203" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3930246911732858969" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b91827c3656abd249392937" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15818802331808240538" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17321493007872793714" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16006023705884350657" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8563561952752263561" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13280007219039404918" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8115182412981793175" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7e05d6460e49a69c6aeea41" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4574645046034403152" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "512332642878922874" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3416052400407663408" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ff063d" + } + ] + }, + "cborHex": "9fd87f9fd8669f1bcb2ec955e845850a9f4371783e46d262ebff8a5b1b14494069138113541b7a779b85bbc90c63ffffbf1b368b0abe2d69c0594c5b91827c3656abd2493929371bdb87ace8bf8d139a1bf0624e1e11ab9c721bde20d1c1c7b7d8c11b76d7e2396dd96189ff1bb84c103489778376bf1b709eeb689546f1974cf7e05d6460e49a69c6aeea41ff1b3f7c676e8e618f50ffa0bf1b071c2bd301a2a07a121b2f68418f246b533003ff43ff063dff", + "cborBytes": [ + 159, 216, 127, 159, 216, 102, 159, 27, 203, 46, 201, 85, 232, 69, 133, 10, 159, 67, 113, 120, 62, 70, 210, 98, + 235, 255, 138, 91, 27, 20, 73, 64, 105, 19, 129, 19, 84, 27, 122, 119, 155, 133, 187, 201, 12, 99, 255, 255, 191, + 27, 54, 139, 10, 190, 45, 105, 192, 89, 76, 91, 145, 130, 124, 54, 86, 171, 210, 73, 57, 41, 55, 27, 219, 135, + 172, 232, 191, 141, 19, 154, 27, 240, 98, 78, 30, 17, 171, 156, 114, 27, 222, 32, 209, 193, 199, 183, 216, 193, + 27, 118, 215, 226, 57, 109, 217, 97, 137, 255, 27, 184, 76, 16, 52, 137, 119, 131, 118, 191, 27, 112, 158, 235, + 104, 149, 70, 241, 151, 76, 247, 224, 93, 100, 96, 228, 154, 105, 198, 174, 234, 65, 255, 27, 63, 124, 103, 110, + 142, 97, 143, 80, 255, 160, 191, 27, 7, 28, 43, 211, 1, 162, 160, 122, 18, 27, 47, 104, 65, 143, 36, 107, 83, 48, + 3, 255, 67, 255, 6, 61, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2363, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6e00f299" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17800156824561401818" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "004e76e696d4686502ea" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e7570d97c41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0ffe35b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e35994523f72" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7049446607564462508" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcf1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15672242099469307912" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "48a7a53c47" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5453248551995808945" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b19970e610" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8234554193109875677" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2939740752119181043" + } + } + } + ] + } + ] + }, + "cborHex": "9f446e00f299bf1bf706dc529a3a3fda4a004e76e696d4686502eaff9fbf468e7570d97c4144b0ffe35b46e35994523f721b61d4aa570af659ac42fcf11bd97efd2784ca5008ff4548a7a53c47ffa0bf1b4badd4aa5d9f9cb145b19970e6101b72470368fc047bdd1b28cc0ea37dcdaef3ffff", + "cborBytes": [ + 159, 68, 110, 0, 242, 153, 191, 27, 247, 6, 220, 82, 154, 58, 63, 218, 74, 0, 78, 118, 230, 150, 212, 104, 101, 2, + 234, 255, 159, 191, 70, 142, 117, 112, 217, 124, 65, 68, 176, 255, 227, 91, 70, 227, 89, 148, 82, 63, 114, 27, 97, + 212, 170, 87, 10, 246, 89, 172, 66, 252, 241, 27, 217, 126, 253, 39, 132, 202, 80, 8, 255, 69, 72, 167, 165, 60, + 71, 255, 160, 191, 27, 75, 173, 212, 170, 93, 159, 156, 177, 69, 177, 153, 112, 230, 16, 27, 114, 71, 3, 104, 252, + 4, 123, 221, 27, 40, 204, 14, 163, 125, 205, 174, 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2364, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1753594116923690799" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "879478842382187614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "67d67853f72052f0e0b856" + }, + { + "_tag": "ByteArray", + "bytearray": "9bd4a37e77be3f3cd2b9" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6481606217173874962" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9773704747161277623" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5378435264232234532" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10516580884772836946" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5904146586136670914" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d07c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e1117ab1467" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3412019258354745696" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10135729761142400503" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17353460003257285557" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "350608238684234782" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16239035934984848499" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8db905" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b7787fae4c76243e0ed1c9" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1856048ef3738f2f9fd8669f1b0c348958f3a97c5e9f4b67d67853f72052f0e0b8564a9bd4a37e77be3f3cd2b9ffff1b59f34a83749cb912ffff1b87a32caf2a18d4b7bf1b4aa40a606bff1e241b91f26698708c56521b51efbe09e082f2c242d07c464e1117ab14671b2f59ed701506c16041f41b8ca95884303f65f7ff1bf0d3dfee2e197bb59f80d8669f1b04dd9c55e219641e9f1be15ca5250f934473438db905ffff9f4bb7787fae4c76243e0ed1c9ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 24, 86, 4, 142, 243, 115, 143, 47, 159, 216, 102, 159, 27, 12, 52, 137, 88, 243, 169, 124, + 94, 159, 75, 103, 214, 120, 83, 247, 32, 82, 240, 224, 184, 86, 74, 155, 212, 163, 126, 119, 190, 63, 60, 210, + 185, 255, 255, 27, 89, 243, 74, 131, 116, 156, 185, 18, 255, 255, 27, 135, 163, 44, 175, 42, 24, 212, 183, 191, + 27, 74, 164, 10, 96, 107, 255, 30, 36, 27, 145, 242, 102, 152, 112, 140, 86, 82, 27, 81, 239, 190, 9, 224, 130, + 242, 194, 66, 208, 124, 70, 78, 17, 23, 171, 20, 103, 27, 47, 89, 237, 112, 21, 6, 193, 96, 65, 244, 27, 140, 169, + 88, 132, 48, 63, 101, 247, 255, 27, 240, 211, 223, 238, 46, 25, 123, 181, 159, 128, 216, 102, 159, 27, 4, 221, + 156, 85, 226, 25, 100, 30, 159, 27, 225, 92, 165, 37, 15, 147, 68, 115, 67, 141, 185, 5, 255, 255, 159, 75, 183, + 120, 127, 174, 76, 118, 36, 62, 14, 209, 201, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2365, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15161397801154714013" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2fedf16ebb881c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "006c010f0f8654" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be8d2566590dd17c808eac32" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "447864d81cfe25" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf930f23d8dda51ffd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2316676835353248975" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d8e94f875e1f0596a48" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f58320" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "296f6a956d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12984945064551857070" + } + } + ] + }, + "cborHex": "9f1bd2681af8bc37199dbf472fedf16ebb881c47006c010f0f86544cbe8d2566590dd17c808eac3247447864d81cfe2549bf930f23d8dda51ffd1b20267d4eb69b44cf41ea4a4d8e94f875e1f0596a4843f5832045296f6a956dff1bb433cabd30933baeff", + "cborBytes": [ + 159, 27, 210, 104, 26, 248, 188, 55, 25, 157, 191, 71, 47, 237, 241, 110, 187, 136, 28, 71, 0, 108, 1, 15, 15, + 134, 84, 76, 190, 141, 37, 102, 89, 13, 209, 124, 128, 142, 172, 50, 71, 68, 120, 100, 216, 28, 254, 37, 73, 191, + 147, 15, 35, 216, 221, 165, 31, 253, 27, 32, 38, 125, 78, 182, 155, 68, 207, 65, 234, 74, 77, 142, 148, 248, 117, + 225, 240, 89, 106, 72, 67, 245, 131, 32, 69, 41, 111, 106, 149, 109, 255, 27, 180, 51, 202, 189, 48, 147, 59, 174, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2366, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7df902ea" + } + ] + }, + "cborHex": "9f447df902eaff", + "cborBytes": [159, 68, 125, 249, 2, 234, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2367, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10963615322298219859" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6110628059524497138" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11666311474404863509" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ea64f70a2794df6" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14231912974471461174" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3222228039692857725" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15572552020442522290" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b9826960c439d7d531b54cd4fd83a7dfef21ba1e71079a6f72e15483ea64f70a2794df6ffd8669f1bc581e97245a4f9369f1b2cb7a7547b32317d1bd81cd18e40c4a2b2ffffff", + "cborBytes": [ + 159, 191, 27, 152, 38, 150, 12, 67, 157, 125, 83, 27, 84, 205, 79, 216, 58, 125, 254, 242, 27, 161, 231, 16, 121, + 166, 247, 46, 21, 72, 62, 166, 79, 112, 162, 121, 77, 246, 255, 216, 102, 159, 27, 197, 129, 233, 114, 69, 164, + 249, 54, 159, 27, 44, 183, 167, 84, 123, 50, 49, 125, 27, 216, 28, 209, 142, 64, 196, 162, 178, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2368, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + "cborHex": "9f06ff", + "cborBytes": [159, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2369, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1302584985914334983" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7174834788051470975" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6171425572760443131" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17519381449272810176" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7591780935060965465" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "370564372902690957" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7793472341693552459" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12311661318572272646" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12623334238951508339" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18210308389672976455" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17221413432183684809" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a366fe29485c6db68f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17289731207131357292" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15545284713765517905" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "36cfa5f48cac" + }, + { + "_tag": "ByteArray", + "bytearray": "459f4b108b6a5830cfef2d80" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16036986758776072959" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15c2a8ae1b93" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4615737f5ecb02e111a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2dcd7045b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "396c3ada54" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79183b56" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a122e6a671258" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12077872090413714645" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1151237515a4e6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16570508023113478890" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5861246458495398647" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b1213b624af2e5f07d8669f1b63922239cfec4a7f9fbf1b55a54edc5e25d8fb1bf321589b40795ac01b695b6c8996e448591b052482557547c08d1b6c27f9cd9d79d74b1baadbcebd406aec061baf2f179be9bb09731bfcb802ff80c600471beefec0460b72fec949a366fe29485c6db68f1beff176ed8f0ce06c1bd7bbf215b04dba51ff9f4636cfa5f48cac4c459f4b108b6a5830cfef2d80ff1bde8ed27d507daaffbf4615c2a8ae1b934ab4615737f5ecb02e111a452dcd7045b445396c3ada544479183b56477a122e6a671258ffd8669f1ba79d38acc7b6ccd59f471151237515a4e61be5f64540b17072ea1b515754998ba272f7ffffffffff", + "cborBytes": [ + 159, 27, 18, 19, 182, 36, 175, 46, 95, 7, 216, 102, 159, 27, 99, 146, 34, 57, 207, 236, 74, 127, 159, 191, 27, 85, + 165, 78, 220, 94, 37, 216, 251, 27, 243, 33, 88, 155, 64, 121, 90, 192, 27, 105, 91, 108, 137, 150, 228, 72, 89, + 27, 5, 36, 130, 85, 117, 71, 192, 141, 27, 108, 39, 249, 205, 157, 121, 215, 75, 27, 170, 219, 206, 189, 64, 106, + 236, 6, 27, 175, 47, 23, 155, 233, 187, 9, 115, 27, 252, 184, 2, 255, 128, 198, 0, 71, 27, 238, 254, 192, 70, 11, + 114, 254, 201, 73, 163, 102, 254, 41, 72, 92, 109, 182, 143, 27, 239, 241, 118, 237, 143, 12, 224, 108, 27, 215, + 187, 242, 21, 176, 77, 186, 81, 255, 159, 70, 54, 207, 165, 244, 140, 172, 76, 69, 159, 75, 16, 139, 106, 88, 48, + 207, 239, 45, 128, 255, 27, 222, 142, 210, 125, 80, 125, 170, 255, 191, 70, 21, 194, 168, 174, 27, 147, 74, 180, + 97, 87, 55, 245, 236, 176, 46, 17, 26, 69, 45, 205, 112, 69, 180, 69, 57, 108, 58, 218, 84, 68, 121, 24, 59, 86, + 71, 122, 18, 46, 106, 103, 18, 88, 255, 216, 102, 159, 27, 167, 157, 56, 172, 199, 182, 204, 213, 159, 71, 17, 81, + 35, 117, 21, 164, 230, 27, 229, 246, 69, 64, 177, 112, 114, 234, 27, 81, 87, 84, 153, 139, 162, 114, 247, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2370, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fbd1d8dbf98e74a2" + }, + { + "_tag": "ByteArray", + "bytearray": "4967f6d361eb1bbbf4" + }, + { + "_tag": "ByteArray", + "bytearray": "5f01cf4082a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12728758118626640608" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7520175118649063656" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d235c7901f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14723104547026527814" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0587af938066" + }, + { + "_tag": "ByteArray", + "bytearray": "7a469bbe7422d0212abc62" + }, + { + "_tag": "ByteArray", + "bytearray": "b5c4c7" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10641770505671293925" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "245279273714227562" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11438022621239203407" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f14d8669f1bffffffffffffffee9f9f48fbd1d8dbf98e74a2494967f6d361eb1bbbf4465f01cf4082a71bb0a5a211ac9c42e0ffd8669f1b685d076d43cef8e89f45d235c7901f1bcc52f99444746646460587af9380664b7a469bbe7422d0212abc6243b5c4c7ffffd8669f1b93af29e473c43be59f1b036768332c80996a1b9ebc04f907d8564fffffffffff", + "cborBytes": [ + 159, 20, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 159, 72, 251, 209, 216, 219, 249, 142, + 116, 162, 73, 73, 103, 246, 211, 97, 235, 27, 187, 244, 70, 95, 1, 207, 64, 130, 167, 27, 176, 165, 162, 17, 172, + 156, 66, 224, 255, 216, 102, 159, 27, 104, 93, 7, 109, 67, 206, 248, 232, 159, 69, 210, 53, 199, 144, 31, 27, 204, + 82, 249, 148, 68, 116, 102, 70, 70, 5, 135, 175, 147, 128, 102, 75, 122, 70, 155, 190, 116, 34, 208, 33, 42, 188, + 98, 67, 181, 196, 199, 255, 255, 216, 102, 159, 27, 147, 175, 41, 228, 115, 196, 59, 229, 159, 27, 3, 103, 104, + 51, 44, 128, 153, 106, 27, 158, 188, 4, 249, 7, 216, 86, 79, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2371, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9ca28abc595c23" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5a7f" + }, + { + "_tag": "ByteArray", + "bytearray": "255a1378844c95" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17948195340797850231" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16409594047255202215" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3271170679069208066" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7758632460057794879" + } + }, + { + "_tag": "ByteArray", + "bytearray": "16eca3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6683972273969182448" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5599941879865777945" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "569941257165896255" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15874469378970421799" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "899616589795791847" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16062506266716572185" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1906697636945601363" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16504821389156984121" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29bf69f12af2cd71c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb040e04fce0eb87b9c8" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8530816491729941946" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14303227994738228692" + } + } + ] + }, + "cborHex": "9f479ca28abc595c239f9f425a7f47255a1378844c951bf914cc919f93b2771be3ba96d81f02c9a7ffd8669f1b2d658866b597ee029f1b6bac331d8c8f593f4316eca31b5cc23d5eb67e36f0ffff1b4db6fd78503b9f19bf1b07e8d68dc0367a3f1bdc4d71cb2b590a271b0c7c1485a4d393e71bdee97c58c6208a191b1a75f366103823531be50ce79b6df8a5394929bf69f12af2cd71c64acb040e04fce0eb87b9c8ffff1b76638c66a99b75ba1bc67f461457cb7dd4ff", + "cborBytes": [ + 159, 71, 156, 162, 138, 188, 89, 92, 35, 159, 159, 66, 90, 127, 71, 37, 90, 19, 120, 132, 76, 149, 27, 249, 20, + 204, 145, 159, 147, 178, 119, 27, 227, 186, 150, 216, 31, 2, 201, 167, 255, 216, 102, 159, 27, 45, 101, 136, 102, + 181, 151, 238, 2, 159, 27, 107, 172, 51, 29, 140, 143, 89, 63, 67, 22, 236, 163, 27, 92, 194, 61, 94, 182, 126, + 54, 240, 255, 255, 27, 77, 182, 253, 120, 80, 59, 159, 25, 191, 27, 7, 232, 214, 141, 192, 54, 122, 63, 27, 220, + 77, 113, 203, 43, 89, 10, 39, 27, 12, 124, 20, 133, 164, 211, 147, 231, 27, 222, 233, 124, 88, 198, 32, 138, 25, + 27, 26, 117, 243, 102, 16, 56, 35, 83, 27, 229, 12, 231, 155, 109, 248, 165, 57, 73, 41, 191, 105, 241, 42, 242, + 205, 113, 198, 74, 203, 4, 14, 4, 252, 224, 235, 135, 185, 200, 255, 255, 27, 118, 99, 140, 102, 169, 155, 117, + 186, 27, 198, 127, 70, 20, 87, 203, 125, 212, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2372, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "663647448190890311" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13905116988800735985" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7640bd2d9397ab8302f6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15302349193227212256" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9226522346074163622" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7016266674051815504" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4810932886307934962" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9518cc816044" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3aa730f91b6464" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5212242732424240586" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c6c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16817448343211941738" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e765a2a4965a0c98573" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4613335629110802870" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "794466" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e92005a1a95b45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb0cd643741ab97f9dc9f2" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5452054008047300953" + } + } + ] + }, + "cborHex": "9fd8669f1b0935bfd6858331479f9f1bc0f8e63a95b79af14a7640bd2d9397ab8302f61bd45cdd84134b15e01b800b313085f449a6ff1b615ec95dc4451850d8669f1b42c3ddf87ea112f280ffffffbf4104469518cc816044473aa730f91b64641b48559b2645421dca426c6c1be963942a5da11f6a4a8e765a2a4965a0c985731b4005dc4feacd79b642c2b34379446647e92005a1a95b454bfb0cd643741ab97f9dc9f2ff1b4ba9963bede77159ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 9, 53, 191, 214, 133, 131, 49, 71, 159, 159, 27, 192, 248, 230, 58, 149, 183, 154, 241, + 74, 118, 64, 189, 45, 147, 151, 171, 131, 2, 246, 27, 212, 92, 221, 132, 19, 75, 21, 224, 27, 128, 11, 49, 48, + 133, 244, 73, 166, 255, 27, 97, 94, 201, 93, 196, 69, 24, 80, 216, 102, 159, 27, 66, 195, 221, 248, 126, 161, 18, + 242, 128, 255, 255, 255, 191, 65, 4, 70, 149, 24, 204, 129, 96, 68, 71, 58, 167, 48, 249, 27, 100, 100, 27, 72, + 85, 155, 38, 69, 66, 29, 202, 66, 108, 108, 27, 233, 99, 148, 42, 93, 161, 31, 106, 74, 142, 118, 90, 42, 73, 101, + 160, 201, 133, 115, 27, 64, 5, 220, 79, 234, 205, 121, 182, 66, 194, 179, 67, 121, 68, 102, 71, 233, 32, 5, 161, + 169, 91, 69, 75, 251, 12, 214, 67, 116, 26, 185, 127, 157, 201, 242, 255, 27, 75, 169, 150, 59, 237, 231, 113, 89, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2373, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "54a4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2334727702665746776" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "276aae650962712b272f377e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5265440500942914906" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0b4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4507776124537040611" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce6b536257b15772" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec2cdc9465" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14397441819560309076" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15142251860315047763" + } + }, + { + "_tag": "ByteArray", + "bytearray": "510940" + }, + { + "_tag": "ByteArray", + "bytearray": "f09fce77c7887a" + } + ] + } + ] + }, + "cborHex": "9f4254a41b20669e79c4a7d9589fbf4c276aae650962712b272f377e1b49129a3cf4a8455a42a0b41b3e8ed68086046ee348ce6b536257b15772412c45ec2cdc94651bc7cdfd0dd13ef154ff1bd22415d7019387534351094047f09fce77c7887affff", + "cborBytes": [ + 159, 66, 84, 164, 27, 32, 102, 158, 121, 196, 167, 217, 88, 159, 191, 76, 39, 106, 174, 101, 9, 98, 113, 43, 39, + 47, 55, 126, 27, 73, 18, 154, 60, 244, 168, 69, 90, 66, 160, 180, 27, 62, 142, 214, 128, 134, 4, 110, 227, 72, + 206, 107, 83, 98, 87, 177, 87, 114, 65, 44, 69, 236, 44, 220, 148, 101, 27, 199, 205, 253, 13, 209, 62, 241, 84, + 255, 27, 210, 36, 21, 215, 1, 147, 135, 83, 67, 81, 9, 64, 71, 240, 159, 206, 119, 199, 136, 122, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2374, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3716920866999069277" + } + } + ] + }, + "cborHex": "9f1b339527d5dfb76a5dff", + "cborBytes": [159, 27, 51, 149, 39, 213, 223, 183, 106, 93, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2375, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9687267689250525540" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "846820cd9e1de753d4f3838f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efaeb98cbbe9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfd347a5b67c49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4904553246813498616" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12615269226285949446" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9788779bce9f585f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11841820432426821271" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3442696708210670872" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "37975584911c9cddaec913" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13851420850659260840" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e213bd70679" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2aa832740547987d0a175b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a33bda557743675466f06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7587765875784168346" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51f079aed6f02a7360" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b6b46e496861dbc038e9c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a24a83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7957" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e74d4a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7284088555383246063" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3033708053121088127" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "be0c8d64ab" + }, + { + "_tag": "ByteArray", + "bytearray": "355a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6315383047342671130" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b5" + }, + { + "_tag": "ByteArray", + "bytearray": "26348e3be59bfc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18304013986826214444" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18130774114518407074" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c68dad6f" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22280a5234d15b122c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06eb23b364c2728f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47e3500ca0b45feb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "496ecc8638118bc8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69c5aaea2e97bb7d3c96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e100675f7632c0eeb89d4" + } + } + ] + } + ] + }, + "cborHex": "9f9fbf1b867016a355e5916441644c846820cd9e1de753d4f3838f46efaeb98cbbe947cfd347a5b67c491b441079314a4eacf8ffd8669f1baf127085d2b0e2069f489788779bce9f585f1ba45698f150c366971b2fc6ea6a7a4dbd18ffffbf4b37975584911c9cddaec9131bc03a21e02dfbf9a8463e213bd706794b2aa832740547987d0a175b4b4a33bda557743675466f061b694d28dcc0f2339a4951f079aed6f02a73604b8b6b46e496861dbc038e9c43a24a8342795743e74d4a1b651647f2c81b4cefffffd8669f1b2a19e566aa863a7f9f45be0c8d64ab42355ad8669f1b57a4bf6bd562451a9f41b54726348e3be59bfc1bfe04ebbe008edc2c1bfb9d72ff06b797a244c68dad6fffffffffbf4922280a5234d15b122c4806eb23b364c2728f4847e3500ca0b45feb48496ecc8638118bc84a69c5aaea2e97bb7d3c964b2e100675f7632c0eeb89d4ffff", + "cborBytes": [ + 159, 159, 191, 27, 134, 112, 22, 163, 85, 229, 145, 100, 65, 100, 76, 132, 104, 32, 205, 158, 29, 231, 83, 212, + 243, 131, 143, 70, 239, 174, 185, 140, 187, 233, 71, 207, 211, 71, 165, 182, 124, 73, 27, 68, 16, 121, 49, 74, 78, + 172, 248, 255, 216, 102, 159, 27, 175, 18, 112, 133, 210, 176, 226, 6, 159, 72, 151, 136, 119, 155, 206, 159, 88, + 95, 27, 164, 86, 152, 241, 80, 195, 102, 151, 27, 47, 198, 234, 106, 122, 77, 189, 24, 255, 255, 191, 75, 55, 151, + 85, 132, 145, 28, 156, 221, 174, 201, 19, 27, 192, 58, 33, 224, 45, 251, 249, 168, 70, 62, 33, 59, 215, 6, 121, + 75, 42, 168, 50, 116, 5, 71, 152, 125, 10, 23, 91, 75, 74, 51, 189, 165, 87, 116, 54, 117, 70, 111, 6, 27, 105, + 77, 40, 220, 192, 242, 51, 154, 73, 81, 240, 121, 174, 214, 240, 42, 115, 96, 75, 139, 107, 70, 228, 150, 134, 29, + 188, 3, 142, 156, 67, 162, 74, 131, 66, 121, 87, 67, 231, 77, 74, 27, 101, 22, 71, 242, 200, 27, 76, 239, 255, + 255, 216, 102, 159, 27, 42, 25, 229, 102, 170, 134, 58, 127, 159, 69, 190, 12, 141, 100, 171, 66, 53, 90, 216, + 102, 159, 27, 87, 164, 191, 107, 213, 98, 69, 26, 159, 65, 181, 71, 38, 52, 142, 59, 229, 155, 252, 27, 254, 4, + 235, 190, 0, 142, 220, 44, 27, 251, 157, 114, 255, 6, 183, 151, 162, 68, 198, 141, 173, 111, 255, 255, 255, 255, + 191, 73, 34, 40, 10, 82, 52, 209, 91, 18, 44, 72, 6, 235, 35, 179, 100, 194, 114, 143, 72, 71, 227, 80, 12, 160, + 180, 95, 235, 72, 73, 110, 204, 134, 56, 17, 139, 200, 74, 105, 197, 170, 234, 46, 151, 187, 125, 60, 150, 75, 46, + 16, 6, 117, 247, 99, 44, 14, 235, 137, 212, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2376, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15388642233506508302" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17901554815524102116" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a373fc8c" + } + } + ] + } + ] + }, + "cborHex": "9fbf1bd58f70942fbaae0e031bf86f19421a7f5fe444a373fc8cffff", + "cborBytes": [ + 159, 191, 27, 213, 143, 112, 148, 47, 186, 174, 14, 3, 27, 248, 111, 25, 66, 26, 127, 95, 228, 68, 163, 115, 252, + 140, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2377, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dc36647975" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17639761546684038999" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fabe5616da553786" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5ffe2c6e4386a4db1ba0" + }, + { + "_tag": "ByteArray", + "bytearray": "64ab31" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17603254900831352950" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9b1dbb877bd8fc86" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0decd68088854d520e88142e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2061882595887441802" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5779d5a357fd319b4884a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14297684116222608439" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93b46fc22f3d606d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edf371f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12044332085065392261" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcad533316" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "862adc59305a35" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8fb6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11514874005963487522" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a564f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc3f7926eaa26de20a70d7" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fb2f2b6999be2c6ca2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4142947108983334946" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "91f7b5023e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14332143358110401566" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f45dc366479759f1bf4cd05aad0b27f579f48fabe5616da553786ff9f4a5ffe2c6e4386a4db1ba04364ab311bf44b5310f6b4f876489b1dbb877bd8fc86ffbf4c0decd68088854d520e88142e1b1c9d474bf06e678a4b5779d5a357fd319b4884a841f8415d1bc66b93f38a3184374893b46fc22f3d606d419244edf371f21ba7261037bf29a08545fcad53331647862adc59305a35ffff9fbf428fb61b9fcd0ce666d5392243a564f04bcc3f7926eaa26de20a70d7ff49fb2f2b6999be2c6ca2d8669f1b397eb472022ee8229f4591f7b5023e1bc6e600730225041effffffff", + "cborBytes": [ + 159, 69, 220, 54, 100, 121, 117, 159, 27, 244, 205, 5, 170, 208, 178, 127, 87, 159, 72, 250, 190, 86, 22, 218, 85, + 55, 134, 255, 159, 74, 95, 254, 44, 110, 67, 134, 164, 219, 27, 160, 67, 100, 171, 49, 27, 244, 75, 83, 16, 246, + 180, 248, 118, 72, 155, 29, 187, 135, 123, 216, 252, 134, 255, 191, 76, 13, 236, 214, 128, 136, 133, 77, 82, 14, + 136, 20, 46, 27, 28, 157, 71, 75, 240, 110, 103, 138, 75, 87, 121, 213, 163, 87, 253, 49, 155, 72, 132, 168, 65, + 248, 65, 93, 27, 198, 107, 147, 243, 138, 49, 132, 55, 72, 147, 180, 111, 194, 47, 61, 96, 109, 65, 146, 68, 237, + 243, 113, 242, 27, 167, 38, 16, 55, 191, 41, 160, 133, 69, 252, 173, 83, 51, 22, 71, 134, 42, 220, 89, 48, 90, 53, + 255, 255, 159, 191, 66, 143, 182, 27, 159, 205, 12, 230, 102, 213, 57, 34, 67, 165, 100, 240, 75, 204, 63, 121, + 38, 234, 162, 109, 226, 10, 112, 215, 255, 73, 251, 47, 43, 105, 153, 190, 44, 108, 162, 216, 102, 159, 27, 57, + 126, 180, 114, 2, 46, 232, 34, 159, 69, 145, 247, 181, 2, 62, 27, 198, 230, 0, 115, 2, 37, 4, 30, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2378, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2041203068487922933" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16996755550448401950" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1c53cf6043a8f4f59f1bebe09b1ed6a03e1effffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 28, 83, 207, 96, 67, 168, 244, 245, 159, 27, 235, 224, 155, 30, 214, 160, 62, 30, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2379, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1793869925226949259" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "275635898691062917" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8e007a3e39faae2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5423880208635200904" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "020406" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15842041049729913459" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2766822424606549288" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2459989453020965568" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16986094404061675060" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d63081" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15823726446527433051" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "88fb4f2006b44361b4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17551749528112845582" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9454792417688662966" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e329c98f555ccd50c94ea1" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0602" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2102" + } + } + ] + } + ] + }, + "cborHex": "9fbf001b18e51b315268aa8b1b03d34163b4d38c8548f8e007a3e39faae21b4b457e5013f90588430204061bdbda3c66664ed27304ffd8669f1b2665ba55ff4225289f01ffff9f9f1b2223a35fba85aac0ffbf1bebbabadd4358be3443d63081ffd8669f1bdb992b5d8c38c95b9f4988fb4f2006b44361b41bf3945733e1cbd30e1b83362b9c3963b3b64be329c98f555ccd50c94ea1ffffff10bf420602422102ffff", + "cborBytes": [ + 159, 191, 0, 27, 24, 229, 27, 49, 82, 104, 170, 139, 27, 3, 211, 65, 99, 180, 211, 140, 133, 72, 248, 224, 7, 163, + 227, 159, 170, 226, 27, 75, 69, 126, 80, 19, 249, 5, 136, 67, 2, 4, 6, 27, 219, 218, 60, 102, 102, 78, 210, 115, + 4, 255, 216, 102, 159, 27, 38, 101, 186, 85, 255, 66, 37, 40, 159, 1, 255, 255, 159, 159, 27, 34, 35, 163, 95, + 186, 133, 170, 192, 255, 191, 27, 235, 186, 186, 221, 67, 88, 190, 52, 67, 214, 48, 129, 255, 216, 102, 159, 27, + 219, 153, 43, 93, 140, 56, 201, 91, 159, 73, 136, 251, 79, 32, 6, 180, 67, 97, 180, 27, 243, 148, 87, 51, 225, + 203, 211, 14, 27, 131, 54, 43, 156, 57, 99, 179, 182, 75, 227, 41, 201, 143, 85, 92, 205, 80, 201, 78, 161, 255, + 255, 255, 16, 191, 66, 6, 2, 66, 33, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2380, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16811889509507577486" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e507372d3ca8fe8b0b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c87dfd3921" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f1bfffffffffffffffb80bf001be94fd46f8950b68e4a7e507372d3ca8fe8b0b80e419d4103ff9f45c87dfd3921a0ffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 128, 191, 0, 27, 233, 79, 212, 111, 137, 80, 182, 142, 74, 126, + 80, 115, 114, 211, 202, 143, 232, 176, 184, 14, 65, 157, 65, 3, 255, 159, 69, 200, 125, 253, 57, 33, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2381, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16052613576402998136" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23acb2a221c5eb2c4081e4a9" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9552160609597279430" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19b7532c5596ab75" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f00a5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2aa2b1247222" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11601675177592850453" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3db6313d8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8aac0573f49cd04e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18203822332421873978" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1801cc5296b52" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7346898028070960367" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17652536478222503234" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "81415cd5" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "413a38eb26e97a96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9aad6625f0fc591117f34ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07bdbf4f05325a4e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "701fa406" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d8102d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3516" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ef387440b9afcf6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed41715a3a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c259189f6b92e0af" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41f5ba2bda78b5" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10015477944608602781" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b754" + } + ] + }, + "cborHex": "9f9fbf1bdec656ff521d13784c23acb2a221c5eb2c4081e4a9ff1b8490177704864cc6bf4819b7532c5596ab75432f00a5462aa2b12472221ba1016e1b0fe38815414245e3db6313d8488aac0573f49cd04e1bfca0f7f69e54213a47b1801cc5296b521b65f56cd4bc2ffcefffd8669f1bf4fa68665913cd429f4481415cd5ffffffbf48413a38eb26e97a964cb9aad6625f0fc591117f34ae41454807bdbf4f05325a4e44701fa4064186448d8102d7423516489ef387440b9afcf645ed41715a3a48c259189f6b92e0af4741f5ba2bda78b5ff801b8afe20205827ba9d42b754ff", + "cborBytes": [ + 159, 159, 191, 27, 222, 198, 86, 255, 82, 29, 19, 120, 76, 35, 172, 178, 162, 33, 197, 235, 44, 64, 129, 228, 169, + 255, 27, 132, 144, 23, 119, 4, 134, 76, 198, 191, 72, 25, 183, 83, 44, 85, 150, 171, 117, 67, 47, 0, 165, 70, 42, + 162, 177, 36, 114, 34, 27, 161, 1, 110, 27, 15, 227, 136, 21, 65, 66, 69, 227, 219, 99, 19, 216, 72, 138, 172, 5, + 115, 244, 156, 208, 78, 27, 252, 160, 247, 246, 158, 84, 33, 58, 71, 177, 128, 28, 197, 41, 107, 82, 27, 101, 245, + 108, 212, 188, 47, 252, 239, 255, 216, 102, 159, 27, 244, 250, 104, 102, 89, 19, 205, 66, 159, 68, 129, 65, 92, + 213, 255, 255, 255, 191, 72, 65, 58, 56, 235, 38, 233, 122, 150, 76, 185, 170, 214, 98, 95, 15, 197, 145, 17, 127, + 52, 174, 65, 69, 72, 7, 189, 191, 79, 5, 50, 90, 78, 68, 112, 31, 164, 6, 65, 134, 68, 141, 129, 2, 215, 66, 53, + 22, 72, 158, 243, 135, 68, 11, 154, 252, 246, 69, 237, 65, 113, 90, 58, 72, 194, 89, 24, 159, 107, 146, 224, 175, + 71, 65, 245, 186, 43, 218, 120, 181, 255, 128, 27, 138, 254, 32, 32, 88, 39, 186, 157, 66, 183, 84, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2382, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1883634113531367323" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "902350109743834384" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14638311316016231481" + } + } + ] + }, + "cborHex": "9fd8669f1b1a24033f0fd84f9b80ff1b0c85caa4da50e5101bcb25ba95b6ba7439ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 26, 36, 3, 63, 15, 216, 79, 155, 128, 255, 27, 12, 133, 202, 164, 218, 80, 229, 16, 27, + 203, 37, 186, 149, 182, 186, 116, 57, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2383, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14131894060747818627" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18115832086258389461" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1285754746122110660" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10226550409556149842" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "42edfd6cef900bca54f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7563958727285298178" + } + }, + { + "_tag": "ByteArray", + "bytearray": "84bec9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17910477963797312421" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5073028167114204691" + } + } + ] + }, + "cborHex": "9f801bc41e92c636538683d8669f1bfb685d4cf80e11d59f1b11d7eb211ee186c41b8dec016a373846529f4a42edfd6cef900bca54f81b68f894630b8e54024384bec91bf88eccd07599b3a5ffffff1b4667043d6c64a613ff", + "cborBytes": [ + 159, 128, 27, 196, 30, 146, 198, 54, 83, 134, 131, 216, 102, 159, 27, 251, 104, 93, 76, 248, 14, 17, 213, 159, 27, + 17, 215, 235, 33, 30, 225, 134, 196, 27, 141, 236, 1, 106, 55, 56, 70, 82, 159, 74, 66, 237, 253, 108, 239, 144, + 11, 202, 84, 248, 27, 104, 248, 148, 99, 11, 142, 84, 2, 67, 132, 190, 201, 27, 248, 142, 204, 208, 117, 153, 179, + 165, 255, 255, 255, 27, 70, 103, 4, 61, 108, 100, 166, 19, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2384, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9cdd3cb0fcfe27d6" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d832c5" + } + ] + } + ] + }, + "cborHex": "9f489cdd3cb0fcfe27d69f43d832c5ffff", + "cborBytes": [159, 72, 156, 221, 60, 176, 252, 254, 39, 214, 159, 67, 216, 50, 197, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2385, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16386332886581587514" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11606416974876716784" + } + }, + { + "_tag": "ByteArray", + "bytearray": "171e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5003306612673992778" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a0ed36e64f18" + }, + { + "_tag": "ByteArray", + "bytearray": "b66f03194c64a8bf" + }, + { + "_tag": "ByteArray", + "bytearray": "62a45630c1154b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15489887518206934343" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1be367f2f11bff2e3a1ba11246bec6972ef042171e9f9f1b456f50db06cbd84a46a0ed36e64f1848b66f03194c64a8bf4762a45630c1154b1bd6f722a0fd7b3d47ffffff", + "cborBytes": [ + 159, 27, 227, 103, 242, 241, 27, 255, 46, 58, 27, 161, 18, 70, 190, 198, 151, 46, 240, 66, 23, 30, 159, 159, 27, + 69, 111, 80, 219, 6, 203, 216, 74, 70, 160, 237, 54, 230, 79, 24, 72, 182, 111, 3, 25, 76, 100, 168, 191, 71, 98, + 164, 86, 48, 193, 21, 75, 27, 214, 247, 34, 160, 253, 123, 61, 71, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2386, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9808430966742407858" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5714871001872553874" + } + } + ] + }, + "cborHex": "9f1b881e8bff389f5ab21b4f4f4ce5c3cb5792ff", + "cborBytes": [159, 27, 136, 30, 139, 255, 56, 159, 90, 178, 27, 79, 79, 76, 229, 195, 203, 87, 146, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2387, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9442770129957948084" + } + } + ] + }, + "cborHex": "9f1b830b75673bd00ab4ff", + "cborBytes": [159, 27, 131, 11, 117, 103, 59, 208, 10, 180, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2388, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16323238062417135187" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7932851699370028164" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13395398395812792617" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b33657e7042014" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cccdcc22c8ceb48ce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "604d01d04f92" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2cb5574e4248a190e6f78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6453602134155691961" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b8a7e954daa1e7" + }, + { + "_tag": "ByteArray", + "bytearray": "3fcc83ed7ee41eb0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2014472342989389044" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2972035180378465243" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8485135059276786104" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14525918698048834208" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2df83733124e80a855" + }, + { + "_tag": "ByteArray", + "bytearray": "99fc733aa7346f52f677" + }, + { + "_tag": "ByteArray", + "bytearray": "9fcf721efa2907c90d" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "33ee223a4ff158bd" + } + ] + }, + "cborHex": "9f1be287ca88968246531b6e1726972ccdec84d8669f1bb9e603de7f4249299f47b33657e7042014bf497cccdcc22c8ceb48ce46604d01d04f924be2cb5574e4248a190e6f781b598fccf2c80d87b9ff9f47b8a7e954daa1e7483fcc83ed7ee41eb01b1bf4d7ec3dbb3cf41b293eca40026c23dbffd8669f1b75c141615767e9b89f1bc9966e182167caa0492df83733124e80a8554a99fc733aa7346f52f677499fcf721efa2907c90dffffffff4833ee223a4ff158bdff", + "cborBytes": [ + 159, 27, 226, 135, 202, 136, 150, 130, 70, 83, 27, 110, 23, 38, 151, 44, 205, 236, 132, 216, 102, 159, 27, 185, + 230, 3, 222, 127, 66, 73, 41, 159, 71, 179, 54, 87, 231, 4, 32, 20, 191, 73, 124, 204, 220, 194, 44, 140, 235, 72, + 206, 70, 96, 77, 1, 208, 79, 146, 75, 226, 203, 85, 116, 228, 36, 138, 25, 14, 111, 120, 27, 89, 143, 204, 242, + 200, 13, 135, 185, 255, 159, 71, 184, 167, 233, 84, 218, 161, 231, 72, 63, 204, 131, 237, 126, 228, 30, 176, 27, + 27, 244, 215, 236, 61, 187, 60, 244, 27, 41, 62, 202, 64, 2, 108, 35, 219, 255, 216, 102, 159, 27, 117, 193, 65, + 97, 87, 103, 233, 184, 159, 27, 201, 150, 110, 24, 33, 103, 202, 160, 73, 45, 248, 55, 51, 18, 78, 128, 168, 85, + 74, 153, 252, 115, 58, 167, 52, 111, 82, 246, 119, 73, 159, 207, 114, 30, 250, 41, 7, 201, 13, 255, 255, 255, 255, + 72, 51, 238, 34, 58, 79, 241, 88, 189, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2389, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15689650124778802771" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12779644868988495943" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4571220156359485814" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15377972727677102430" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04464855" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09a6d19b53015d5ba1c926" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1313997306424791013" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39b992be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5651dd00a3dbe7ab708" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8def" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc17cd3e391b6e9e22" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d9a1726c8197a58" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1578460683296322733" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6181745404265796317" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f2094148" + }, + { + "_tag": "ByteArray", + "bytearray": "66ba8136436d339e71221074" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1458047004111676280" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16225406793414013256" + } + }, + { + "_tag": "ByteArray", + "bytearray": "71c3f769c6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3476262090938416189" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fa0d8669f1bd9bcd5a9419a8e539f1bb15a6b4c83b3e847ffffd8669f1b3f703c8349e9a9769fd8669f1bd56988b846d6a95e9f4404464855ffffbf4b09a6d19b53015d5ba1c9261b123c41969d450fe54439b992be4ad5651dd00a3dbe7ab708428def49cc17cd3e391b6e9e22418e480d9a1726c8197a58ffd8669f1b15e7d1a0dfcc34ad9f1b55c9f8b1612a92dd44f20941484c66ba8136436d339e71221074ffff1b143c060671e623789f1be12c398341a6f1484571c3f769c61b303e29f4248a7c3dffffffff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 217, 188, 213, 169, 65, 154, 142, 83, 159, 27, 177, 90, 107, 76, 131, 179, 232, 71, + 255, 255, 216, 102, 159, 27, 63, 112, 60, 131, 73, 233, 169, 118, 159, 216, 102, 159, 27, 213, 105, 136, 184, 70, + 214, 169, 94, 159, 68, 4, 70, 72, 85, 255, 255, 191, 75, 9, 166, 209, 155, 83, 1, 93, 91, 161, 201, 38, 27, 18, + 60, 65, 150, 157, 69, 15, 229, 68, 57, 185, 146, 190, 74, 213, 101, 29, 208, 10, 61, 190, 122, 183, 8, 66, 141, + 239, 73, 204, 23, 205, 62, 57, 27, 110, 158, 34, 65, 142, 72, 13, 154, 23, 38, 200, 25, 122, 88, 255, 216, 102, + 159, 27, 21, 231, 209, 160, 223, 204, 52, 173, 159, 27, 85, 201, 248, 177, 97, 42, 146, 221, 68, 242, 9, 65, 72, + 76, 102, 186, 129, 54, 67, 109, 51, 158, 113, 34, 16, 116, 255, 255, 27, 20, 60, 6, 6, 113, 230, 35, 120, 159, 27, + 225, 44, 57, 131, 65, 166, 241, 72, 69, 113, 195, 247, 105, 198, 27, 48, 62, 41, 244, 36, 138, 124, 61, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2390, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3257313232111711801" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5540954141301228094" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8133" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7126301625594152003" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15848772288632607016" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9945131654467463825" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16977398581586333172" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3e4244" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3f4663" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18044797422189134103" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5633372607878558297" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5658098047492938191" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14953703162772631064" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9500177213484793291" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa31a936" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14554750619214171685" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "947d6d66a3a343" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff59f1b2d344d206a32b6391b4ce56c6f2cfd423effff428133d905099fd8669f1b62e5b5925bd404439f1bdbf2266d160051281b8a04348c5506aa911beb9bd60f51ac8df4433e4244ffff433f46631bfa6bffa66977c1171b4e2dc28a3c047259ffbf1b4e859a324125d9cf1bcf8639cc65b2ae181b83d768d771057dcb44fa31a9361bc9fcdc92e4a84e2547947d6d66a3a343ff1bfffffffffffffff3ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 27, 45, 52, 77, 32, 106, 50, 182, 57, 27, 76, + 229, 108, 111, 44, 253, 66, 62, 255, 255, 66, 129, 51, 217, 5, 9, 159, 216, 102, 159, 27, 98, 229, 181, 146, 91, + 212, 4, 67, 159, 27, 219, 242, 38, 109, 22, 0, 81, 40, 27, 138, 4, 52, 140, 85, 6, 170, 145, 27, 235, 155, 214, + 15, 81, 172, 141, 244, 67, 62, 66, 68, 255, 255, 67, 63, 70, 99, 27, 250, 107, 255, 166, 105, 119, 193, 23, 27, + 78, 45, 194, 138, 60, 4, 114, 89, 255, 191, 27, 78, 133, 154, 50, 65, 37, 217, 207, 27, 207, 134, 57, 204, 101, + 178, 174, 24, 27, 131, 215, 104, 215, 113, 5, 125, 203, 68, 250, 49, 169, 54, 27, 201, 252, 220, 146, 228, 168, + 78, 37, 71, 148, 125, 109, 102, 163, 163, 67, 255, 27, 255, 255, 255, 255, 255, 255, 255, 243, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2391, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4765807e891657b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13359000488657181932" + } + } + ] + }, + "cborHex": "9f484765807e891657b61bb964b42a58ae5cecff", + "cborBytes": [159, 72, 71, 101, 128, 126, 137, 22, 87, 182, 27, 185, 100, 180, 42, 88, 174, 92, 236, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2392, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "551a5c9bc401" + } + ] + }, + "cborHex": "9f46551a5c9bc401ff", + "cborBytes": [159, 70, 85, 26, 92, 155, 196, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2393, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9ae851ee" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7123955256058204846" + } + } + ] + }, + "cborHex": "9f449ae851eea01b62dd5f8fa12052aeff", + "cborBytes": [159, 68, 154, 232, 81, 238, 160, 27, 98, 221, 95, 143, 161, 32, 82, 174, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2394, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ca76e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5dc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdfa8c053f7f37da72" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11170668101250449209" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2377607619722968928" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9137592495966569546" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7643398d5f4a2ff967b115" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13486732615118908035" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c16b989d2c2674174" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cacbbd82aad7" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5601" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1476663551784637427" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7020808795202216159" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16249290476173315239" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3726039368034581476" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1dac29d27c" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6d337570" + } + ] + }, + "cborHex": "9f9fbf432ca76e42f5dc49bdfa8c053f7f37da721b9b062f740ed1ff39ffbf1b20fef58874d97f601b7ecf3ff6485cc44a4b7643398d5f4a2ff967b1151bbb2a7fdb90d66a83497c16b989d2c267417446cacbbd82aad7ff4256019f1b147e29ad38e3d3f31b616eec66c1f760df1be18113987c72cca71b33b58d1056d27be4451dac29d27cffff446d337570ff", + "cborBytes": [ + 159, 159, 191, 67, 44, 167, 110, 66, 245, 220, 73, 189, 250, 140, 5, 63, 127, 55, 218, 114, 27, 155, 6, 47, 116, + 14, 209, 255, 57, 255, 191, 27, 32, 254, 245, 136, 116, 217, 127, 96, 27, 126, 207, 63, 246, 72, 92, 196, 74, 75, + 118, 67, 57, 141, 95, 74, 47, 249, 103, 177, 21, 27, 187, 42, 127, 219, 144, 214, 106, 131, 73, 124, 22, 185, 137, + 210, 194, 103, 65, 116, 70, 202, 203, 189, 130, 170, 215, 255, 66, 86, 1, 159, 27, 20, 126, 41, 173, 56, 227, 211, + 243, 27, 97, 110, 236, 102, 193, 247, 96, 223, 27, 225, 129, 19, 152, 124, 114, 204, 167, 27, 51, 181, 141, 16, + 86, 210, 123, 228, 69, 29, 172, 41, 210, 124, 255, 255, 68, 109, 51, 117, 112, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2395, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4448953868138263654" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5206728525118798068" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0200f9c0" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "52235001843717303" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3dbddbf8b47b34669fd9050c80d8669f1b48420401d59978f49f440200f9c0ffff1b00b9937519bc94b7ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 61, 189, 219, 248, 180, 123, 52, 102, 159, 217, 5, 12, 128, 216, 102, 159, 27, 72, 66, 4, + 1, 213, 153, 120, 244, 159, 68, 2, 0, 249, 192, 255, 255, 27, 0, 185, 147, 117, 25, 188, 148, 183, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2396, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6104664606862017049" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "62" + }, + { + "_tag": "ByteArray", + "bytearray": "97a99ab752b1" + }, + { + "_tag": "ByteArray", + "bytearray": "e541f4f3789cddfbae482cdb" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "864f2a969939" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14959215236921880017" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90c1ecace49035969e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6b872d6d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8c0c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15594146459531842756" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f59d2d2543ec2c" + }, + { + "_tag": "ByteArray", + "bytearray": "070ed4e8b6ba1cab0a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12422824026364588618" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5bdd6a30f64ec0bf7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11437602819814669525" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b54b8201db4e902199f9f41624697a99ab752b14ce541f4f3789cddfbae482cdbffbf46864f2a9699391bcf99cf002b56edd14990c1ecace49035969e45c6b872d6d143d8c0c61bd869899567cf94c4ff07d905039f47f59d2d2543ec2c49070ed4e8b6ba1cab0a1bac66bca20ea6324a495bdd6a30f64ec0bf7b1b9eba872a650f3cd5ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 84, 184, 32, 29, 180, 233, 2, 25, 159, 159, 65, 98, 70, 151, 169, 154, 183, 82, 177, 76, + 229, 65, 244, 243, 120, 156, 221, 251, 174, 72, 44, 219, 255, 191, 70, 134, 79, 42, 150, 153, 57, 27, 207, 153, + 207, 0, 43, 86, 237, 209, 73, 144, 193, 236, 172, 228, 144, 53, 150, 158, 69, 198, 184, 114, 214, 209, 67, 216, + 192, 198, 27, 216, 105, 137, 149, 103, 207, 148, 196, 255, 7, 217, 5, 3, 159, 71, 245, 157, 45, 37, 67, 236, 44, + 73, 7, 14, 212, 232, 182, 186, 28, 171, 10, 27, 172, 102, 188, 162, 14, 166, 50, 74, 73, 91, 221, 106, 48, 246, + 78, 192, 191, 123, 27, 158, 186, 135, 42, 101, 15, 60, 213, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2397, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7556338640000648274" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11684789144172458887" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "523a866b44" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6985017510788440792" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bb529974e74913e5847022" + }, + { + "_tag": "ByteArray", + "bytearray": "04b71ab0dbcf1bd6e0339c3a" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d226" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9197686153229292536" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00c81b88c1551946" + } + ] + }, + "cborHex": "9f9f1b68dd81f537cc0452d8669f1ba228b5d165bd73879f45523a866b441b60efc46af86da2d84bbb529974e74913e58470224c04b71ab0dbcf1bd6e0339c3affffff42d2261b7fa4bed32ec2d3f84800c81b88c1551946ff", + "cborBytes": [ + 159, 159, 27, 104, 221, 129, 245, 55, 204, 4, 82, 216, 102, 159, 27, 162, 40, 181, 209, 101, 189, 115, 135, 159, + 69, 82, 58, 134, 107, 68, 27, 96, 239, 196, 106, 248, 109, 162, 216, 75, 187, 82, 153, 116, 231, 73, 19, 229, 132, + 112, 34, 76, 4, 183, 26, 176, 219, 207, 27, 214, 224, 51, 156, 58, 255, 255, 255, 66, 210, 38, 27, 127, 164, 190, + 211, 46, 194, 211, 248, 72, 0, 200, 27, 136, 193, 85, 25, 70, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2398, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13962152565877757068" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "44dbd45c22bd65" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4699778907191558322" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8f396dcc943f821ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "521b55aba75abf7787" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdd64aa2e8fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f88bd3fa7fee3dd7449811" + } + } + ] + } + ] + }, + "cborHex": "9f1bc1c387c8b4f3d48ca0804744dbd45c22bd65bf41101b4138f803fe06c0b249a8f396dcc943f821ae49521b55aba75abf778746fdd64aa2e8fe4bf88bd3fa7fee3dd7449811ffff", + "cborBytes": [ + 159, 27, 193, 195, 135, 200, 180, 243, 212, 140, 160, 128, 71, 68, 219, 212, 92, 34, 189, 101, 191, 65, 16, 27, + 65, 56, 248, 3, 254, 6, 192, 178, 73, 168, 243, 150, 220, 201, 67, 248, 33, 174, 73, 82, 27, 85, 171, 167, 90, + 191, 119, 135, 70, 253, 214, 74, 162, 232, 254, 75, 248, 139, 211, 250, 127, 238, 61, 215, 68, 152, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2399, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7648163467476236164" + } + } + ] + }, + "cborHex": "9f1b6a23bc26e70a7784ff", + "cborBytes": [159, 27, 106, 35, 188, 38, 231, 10, 119, 132, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2400, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14281017664612895845" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a10e30cfad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16839625935830799458" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11379303616070273817" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5409da54" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2751252775049688581" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8a4bed6c1aaf8f97502349b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15247772939058968035" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a37737c0119495b" + }, + { + "_tag": "ByteArray", + "bytearray": "7e2dad9f1002c47cd5a4e69a" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8235663399515477069" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17890941025250956565" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0dcc756d0f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13111286120548047692" + } + } + ] + }, + "cborHex": "9fd8669f1bc6305de6e2548c659f45a10e30cfad1be9b25e9187a65462ffffd8669f1b9deb6859432fcb199fbf445409da541b262e69d27824f6054cc8a4bed6c1aaf8f97502349b1bd39af8b3b06c75e3ff9f486a37737c0119495b4c7e2dad9f1002c47cd5a4e69affffff9f1b724af43a39ce544d1bf84964127b8bd515ffbf46e0dcc756d0f3418aff1bb5f4a54293c69b4cff", + "cborBytes": [ + 159, 216, 102, 159, 27, 198, 48, 93, 230, 226, 84, 140, 101, 159, 69, 161, 14, 48, 207, 173, 27, 233, 178, 94, + 145, 135, 166, 84, 98, 255, 255, 216, 102, 159, 27, 157, 235, 104, 89, 67, 47, 203, 25, 159, 191, 68, 84, 9, 218, + 84, 27, 38, 46, 105, 210, 120, 36, 246, 5, 76, 200, 164, 190, 214, 193, 170, 248, 249, 117, 2, 52, 155, 27, 211, + 154, 248, 179, 176, 108, 117, 227, 255, 159, 72, 106, 55, 115, 124, 1, 25, 73, 91, 76, 126, 45, 173, 159, 16, 2, + 196, 124, 213, 164, 230, 154, 255, 255, 255, 159, 27, 114, 74, 244, 58, 57, 206, 84, 77, 27, 248, 73, 100, 18, + 123, 139, 213, 21, 255, 191, 70, 224, 220, 199, 86, 208, 243, 65, 138, 255, 27, 181, 244, 165, 66, 147, 198, 155, + 76, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2401, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2442217512927217737" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13613864812710934114" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1035876436656276525" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16544038614478585824" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17279710066029965059" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "75549deb5c677e8793" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7653289431016962477" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16892477871221508025" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bb27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11435581915250235983" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "afc63646fc0149d4d5c3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15695533005575273663" + } + } + ] + }, + "cborHex": "9fa0a0d8669f1b21e47fe37a43c8499fbf1bbcee29eaf5d336621b0e602c217e18442d1be5983b773e577fe01befcddcc0d3752f03ff4975549deb5c677e8793809f1b6a35f2304b0479ad1bea6e231faa4e07b942bb271b9eb35929e25f1a4fffffff4aafc63646fc0149d4d5c31bd9d1bc1c2dbbbcbfff", + "cborBytes": [ + 159, 160, 160, 216, 102, 159, 27, 33, 228, 127, 227, 122, 67, 200, 73, 159, 191, 27, 188, 238, 41, 234, 245, 211, + 54, 98, 27, 14, 96, 44, 33, 126, 24, 68, 45, 27, 229, 152, 59, 119, 62, 87, 127, 224, 27, 239, 205, 220, 192, 211, + 117, 47, 3, 255, 73, 117, 84, 157, 235, 92, 103, 126, 135, 147, 128, 159, 27, 106, 53, 242, 48, 75, 4, 121, 173, + 27, 234, 110, 35, 31, 170, 78, 7, 185, 66, 187, 39, 27, 158, 179, 89, 41, 226, 95, 26, 79, 255, 255, 255, 74, 175, + 198, 54, 70, 252, 1, 73, 212, 213, 195, 27, 217, 209, 188, 28, 45, 187, 188, 191, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2402, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5a1ca83620" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a3801cc087abe36" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31c2efe84c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5e4c81e9e64fad872" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "960b183c82" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea6bb080f06b65438278" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2535415625839447366" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efc34f52d6b8f3c57947" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7b8adb64de58447e82a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9e8b7" + } + } + ] + } + ] + }, + "cborHex": "9f455a1ca83620bf489a3801cc087abe364531c2efe84c49d5e4c81e9e64fad87245960b183c824aea6bb080f06b654382781b232f9b1418228d464aefc34f52d6b8f3c5794741714af7b8adb64de58447e82a43e9e8b7ffff", + "cborBytes": [ + 159, 69, 90, 28, 168, 54, 32, 191, 72, 154, 56, 1, 204, 8, 122, 190, 54, 69, 49, 194, 239, 232, 76, 73, 213, 228, + 200, 30, 158, 100, 250, 216, 114, 69, 150, 11, 24, 60, 130, 74, 234, 107, 176, 128, 240, 107, 101, 67, 130, 120, + 27, 35, 47, 155, 20, 24, 34, 141, 70, 74, 239, 195, 79, 82, 214, 184, 243, 197, 121, 71, 65, 113, 74, 247, 184, + 173, 182, 77, 229, 132, 71, 232, 42, 67, 233, 232, 183, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2403, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f9efc7f0f4bc" + } + ] + }, + "cborHex": "9f46f9efc7f0f4bcff", + "cborBytes": [159, 70, 249, 239, 199, 240, 244, 188, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2404, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b5c543857b350e2e1f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a39eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "492640f0b37752dc11" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36c61cf4fae2f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a2faf84c6df34" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06ecf8bf6c6ff7b00e3a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51e4963f17cfcf05ed8e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6d796739f88d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9499190632673860071" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f387dc8ac6956101818a4e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12005947095787606974" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc0abe847780b233" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17697972588055676373" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "771162863425484270" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea8f39596e77fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7503593963506551015" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16458123243454880236" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5514985546478359656" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bfd96c6357b90e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11571064421949282548" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ae68" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9fbf4a2b5c543857b350e2e1f3437a39eb49492640f0b37752dc114736c61cf4fae2f3474a2faf84c6df344a06ecf8bf6c6ff7b00e3a4a51e4963f17cfcf05ed8e47b6d796739f88d641ed1b83d3e78d323e59e74bf387dc8ac6956101818a4e1ba69db145fc8d93beff48fc0abe847780b2339f1bf59bd44d0ba8c5d51b0ab3b889da72f5ee47ea8f39596e77fa1b68221ef43d92c8e71be466ffe41bba59ecff1b4c892a228741946847bfd96c6357b90effd8669f1ba094adc91f7298f480ff42ae6880ff", + "cborBytes": [ + 159, 159, 191, 74, 43, 92, 84, 56, 87, 179, 80, 226, 225, 243, 67, 122, 57, 235, 73, 73, 38, 64, 240, 179, 119, + 82, 220, 17, 71, 54, 198, 28, 244, 250, 226, 243, 71, 74, 47, 175, 132, 198, 223, 52, 74, 6, 236, 248, 191, 108, + 111, 247, 176, 14, 58, 74, 81, 228, 150, 63, 23, 207, 207, 5, 237, 142, 71, 182, 215, 150, 115, 159, 136, 214, 65, + 237, 27, 131, 211, 231, 141, 50, 62, 89, 231, 75, 243, 135, 220, 138, 198, 149, 97, 1, 129, 138, 78, 27, 166, 157, + 177, 69, 252, 141, 147, 190, 255, 72, 252, 10, 190, 132, 119, 128, 178, 51, 159, 27, 245, 155, 212, 77, 11, 168, + 197, 213, 27, 10, 179, 184, 137, 218, 114, 245, 238, 71, 234, 143, 57, 89, 110, 119, 250, 27, 104, 34, 30, 244, + 61, 146, 200, 231, 27, 228, 102, 255, 228, 27, 186, 89, 236, 255, 27, 76, 137, 42, 34, 135, 65, 148, 104, 71, 191, + 217, 108, 99, 87, 185, 14, 255, 216, 102, 159, 27, 160, 148, 173, 201, 31, 114, 152, 244, 128, 255, 66, 174, 104, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2405, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4181693133154732612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "136fc708a179" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12007248975789927988" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15180527703584392911" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f0b4eca240c551" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13448793912397715711" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b3a085bbfc160ca449f46136fc708a1791ba6a251538ba1ae341bd2ac11843b1fc6cf47f0b4eca240c5511bbaa3b6cefde6d8ffffffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 58, 8, 91, 191, 193, 96, 202, 68, 159, 70, 19, 111, 199, 8, 161, 121, 27, 166, 162, + 81, 83, 139, 161, 174, 52, 27, 210, 172, 17, 132, 59, 31, 198, 207, 71, 240, 180, 236, 162, 64, 197, 81, 27, 186, + 163, 182, 206, 253, 230, 216, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2406, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11100307792754245806" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d40be7fbfe920404" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b9a0c3720249e00ae9f48d40be7fbfe920404ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 154, 12, 55, 32, 36, 158, 0, 174, 159, 72, 212, 11, 231, 251, 254, 146, 4, 4, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2407, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14382342426413616872" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9074479959156627665" + } + }, + { + "_tag": "ByteArray", + "bytearray": "958da98d75de84b4fa5e64" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "ByteArray", + "bytearray": "25" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c455" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9285656969257826292" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13470010877300872778" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9641550754497066434" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5683529755237682208" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "46a0cd21f2f56ce75601f1" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0ffe163d02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fdf00703" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bc798583c6469cee89f9f10ffa09f1b7def0771b6ee98d14b958da98d75de84b4fa5e641bffffffffffffffec4125ff9f42c455ffbf1b80dd47d0e6be37f44107ffffff01d87b80d8669f1bbaef1786962a964a9f1b85cdab53fdb275c21b4edff433234e0c209f4b46a0cd21f2f56ce75601f1ffffff9f9f450ffe163d02131bfffffffffffffffa44fdf00703ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 199, 152, 88, 60, 100, 105, 206, 232, 159, 159, 16, 255, 160, 159, 27, 125, 239, 7, 113, + 182, 238, 152, 209, 75, 149, 141, 169, 141, 117, 222, 132, 180, 250, 94, 100, 27, 255, 255, 255, 255, 255, 255, + 255, 236, 65, 37, 255, 159, 66, 196, 85, 255, 191, 27, 128, 221, 71, 208, 230, 190, 55, 244, 65, 7, 255, 255, 255, + 1, 216, 123, 128, 216, 102, 159, 27, 186, 239, 23, 134, 150, 42, 150, 74, 159, 27, 133, 205, 171, 83, 253, 178, + 117, 194, 27, 78, 223, 244, 51, 35, 78, 12, 32, 159, 75, 70, 160, 205, 33, 242, 245, 108, 231, 86, 1, 241, 255, + 255, 255, 159, 159, 69, 15, 254, 22, 61, 2, 19, 27, 255, 255, 255, 255, 255, 255, 255, 250, 68, 253, 240, 7, 3, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2408, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2981088039330131228" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9335e7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13417903274765009328" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14818963286126400521" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "813749cfe49fb36b" + } + ] + } + ] + }, + "cborHex": "9f1b295ef3c6fc702d1c9f9f439335e71bba35f7eff2eb41b01bcda78898311e9409ff48813749cfe49fb36bffff", + "cborBytes": [ + 159, 27, 41, 94, 243, 198, 252, 112, 45, 28, 159, 159, 67, 147, 53, 231, 27, 186, 53, 247, 239, 242, 235, 65, 176, + 27, 205, 167, 136, 152, 49, 30, 148, 9, 255, 72, 129, 55, 73, 207, 228, 159, 179, 107, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2409, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5951050097546302237" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f62134" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17322724077573588374" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c49d677ff85" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf1b52966088a0cd131d43f621341bf066adc4d1e14596468c49d677ff85ff80ff", + "cborBytes": [ + 159, 191, 27, 82, 150, 96, 136, 160, 205, 19, 29, 67, 246, 33, 52, 27, 240, 102, 173, 196, 209, 225, 69, 150, 70, + 140, 73, 214, 119, 255, 133, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2410, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5483178849352431490" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ac229e1d33be93a86451ac87" + }, + { + "_tag": "ByteArray", + "bytearray": "ecf4abdf8999aaf7" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd879801b4c182a1cc3963782d9050c9f4cac229e1d33be93a86451ac8748ecf4abdf8999aaf7a0ffd905009f80ffff", + "cborBytes": [ + 159, 216, 121, 128, 27, 76, 24, 42, 28, 195, 150, 55, 130, 217, 5, 12, 159, 76, 172, 34, 158, 29, 51, 190, 147, + 168, 100, 81, 172, 135, 72, 236, 244, 171, 223, 137, 153, 170, 247, 160, 255, 217, 5, 0, 159, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2411, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "43567716767041367" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9680cfc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "167792147785208585" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92eaf98b344f91e6b18d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "898922462568898088" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17691505482565524172" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4835516888932447073" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5441271030705304594" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8690459271859868614" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a15ab5e35b55a6c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11681210622995150826" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5283665833264882635" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f41019fbf1b009ac89b8993075744f9680cfc1b02541e11c4d653094a92eaf98b344f91e6b18d1b0c799d378e09de281bf584da80b6319acc1b431b34fda63873611b4b83472c5fd034121b789ab6a9ea3513c6485a15ab5e35b55a6c1ba21bff2c022537ea1b49535a14cf9f23cbffffff", + "cborBytes": [ + 159, 65, 1, 159, 191, 27, 0, 154, 200, 155, 137, 147, 7, 87, 68, 249, 104, 12, 252, 27, 2, 84, 30, 17, 196, 214, + 83, 9, 74, 146, 234, 249, 139, 52, 79, 145, 230, 177, 141, 27, 12, 121, 157, 55, 142, 9, 222, 40, 27, 245, 132, + 218, 128, 182, 49, 154, 204, 27, 67, 27, 52, 253, 166, 56, 115, 97, 27, 75, 131, 71, 44, 95, 208, 52, 18, 27, 120, + 154, 182, 169, 234, 53, 19, 198, 72, 90, 21, 171, 94, 53, 181, 90, 108, 27, 162, 27, 255, 44, 2, 37, 55, 234, 27, + 73, 83, 90, 20, 207, 159, 35, 203, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2412, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ae2bc8ec" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13392592934600558860" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5530796313886564612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15655241415805008302" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8217558878577808581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15642831804401378240" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12651342194141182090" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "424225582354746706" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13062508961636109696" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8488e44ad8a59f" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3110788336577012823" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6ca3247b" + }, + { + "_tag": "ByteArray", + "bytearray": "06d148e9f27f714a7d34" + } + ] + }, + "cborHex": "9f44ae2bc8ecd8669f1bb9dc0c512845c90c9fbf1b4cc155f1ae3fa1041bd942971f660a79ae1b720aa242f67cd4c51bd91680a59686e3c01baf9298b225b2388a1b05e326eb64e34d521bb5475ab145ad4d80478488e44ad8a59fff80d8669f1b2b2bbd82ad19e45780ffffff446ca3247b4a06d148e9f27f714a7d34ff", + "cborBytes": [ + 159, 68, 174, 43, 200, 236, 216, 102, 159, 27, 185, 220, 12, 81, 40, 69, 201, 12, 159, 191, 27, 76, 193, 85, 241, + 174, 63, 161, 4, 27, 217, 66, 151, 31, 102, 10, 121, 174, 27, 114, 10, 162, 66, 246, 124, 212, 197, 27, 217, 22, + 128, 165, 150, 134, 227, 192, 27, 175, 146, 152, 178, 37, 178, 56, 138, 27, 5, 227, 38, 235, 100, 227, 77, 82, 27, + 181, 71, 90, 177, 69, 173, 77, 128, 71, 132, 136, 228, 74, 216, 165, 159, 255, 128, 216, 102, 159, 27, 43, 43, + 189, 130, 173, 25, 228, 87, 128, 255, 255, 255, 68, 108, 163, 36, 123, 74, 6, 209, 72, 233, 242, 127, 113, 74, + 125, 52, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2413, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e30f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "262311ca4891f636" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8dcb55a8c90cbe1072cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15976661499190473590" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "680bec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92a4379088d91c97231663da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dac477f748a78c56" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2ef37a9" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + ] + }, + "cborHex": "9f9f14bf435e30f948262311ca4891f6364a8dcb55a8c90cbe1072cb1bddb880fc4be8737641af43680bec42cc894c92a4379088d91c97231663da48dac477f748a78c5644b2ef37a9ffff0e1bfffffffffffffff3ff", + "cborBytes": [ + 159, 159, 20, 191, 67, 94, 48, 249, 72, 38, 35, 17, 202, 72, 145, 246, 54, 74, 141, 203, 85, 168, 201, 12, 190, + 16, 114, 203, 27, 221, 184, 128, 252, 75, 232, 115, 118, 65, 175, 67, 104, 11, 236, 66, 204, 137, 76, 146, 164, + 55, 144, 136, 217, 28, 151, 35, 22, 99, 218, 72, 218, 196, 119, 247, 72, 167, 140, 86, 68, 178, 239, 55, 169, 255, + 255, 14, 27, 255, 255, 255, 255, 255, 255, 255, 243, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2414, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "171152714354363104" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "296587852006136083" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7057517111187575012" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0a79a86" + }, + { + "_tag": "ByteArray", + "bytearray": "09de" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "30065235126549172" + } + }, + { + "_tag": "ByteArray", + "bytearray": "105c45e3" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b02600e7ca56f8ae09f1b041db1147b859913d8669f1b61f1566b989390e49f44c0a79a864209deffff1b006ad02c0bce7ab444105c45e3a0ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 2, 96, 14, 124, 165, 111, 138, 224, 159, 27, 4, 29, 177, 20, 123, 133, 153, 19, 216, 102, + 159, 27, 97, 241, 86, 107, 152, 147, 144, 228, 159, 68, 192, 167, 154, 134, 66, 9, 222, 255, 255, 27, 0, 106, 208, + 44, 11, 206, 122, 180, 68, 16, 92, 69, 227, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2415, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1d0de5259928295e68219a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11156653238833816182" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15779180653356072699" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10774107201218790350" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f9f4b1d0de5259928295e68219a9f413eff1b9ad465029ee6a276d8669f1bdafae933da013efb9f1b9585516a749fc3ceffffa0ffff", + "cborBytes": [ + 159, 159, 75, 29, 13, 229, 37, 153, 40, 41, 94, 104, 33, 154, 159, 65, 62, 255, 27, 154, 212, 101, 2, 158, 230, + 162, 118, 216, 102, 159, 27, 218, 250, 233, 51, 218, 1, 62, 251, 159, 27, 149, 133, 81, 106, 116, 159, 195, 206, + 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2416, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + } + ] + }, + "cborHex": "9f9f04ffff", + "cborBytes": [159, 159, 4, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2417, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7067778418606136091" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8558265653473158764" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d4ddf3688c96" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14376437854791836342" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13264395892828174268" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "46" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13097223123178301908" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee18c245db8ce6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "871753b2475e4fd393f4" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4246275063212076944" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "330924051428701711" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "896a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8277406742839792104" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6103117275412183641" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8cdf96072bb0361" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16625507512730087008" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10474222091769770784" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "47cd4a436bb158f1fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9735932902716269298" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a722b25a635c89692fb0822" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0b482f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b63484ff2853925" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "522db5d0ecf07b20bc54" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83c4cdfe5e77583abebae0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e220d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10400761935825801797" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b6215cb066830db1b9fd8669f1b76c51144a8b1a66c9f46d4ddf3688c96ffffd8669f1bc7835e0f2e58a2b69f1bb81499c9682c77bc418fffffbf41461bb5c2af09d91329d447ee18c245db8ce64a871753b2475e4fd393f4ffbf1b3aedccac195aef901b0497adabe50a760f42896a4137ffffff1b72df4193b86391e8bf1b54b2a0d3877e3a5948c8cdf96072bb03611be6b9aaff42dd6e601b915be97f667c7320ffbf4947cd4a436bb158f1fa1b871cfb644f70e2f24c7a722b25a635c89692fb082244e0b482f3487b63484ff28539254a522db5d0ecf07b20bc544b83c4cdfe5e77583abebae0438e220d418b1b9056ede0024d1245ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 98, 21, 203, 6, 104, 48, 219, 27, 159, 216, 102, 159, 27, 118, 197, 17, 68, 168, 177, 166, + 108, 159, 70, 212, 221, 243, 104, 140, 150, 255, 255, 216, 102, 159, 27, 199, 131, 94, 15, 46, 88, 162, 182, 159, + 27, 184, 20, 153, 201, 104, 44, 119, 188, 65, 143, 255, 255, 191, 65, 70, 27, 181, 194, 175, 9, 217, 19, 41, 212, + 71, 238, 24, 194, 69, 219, 140, 230, 74, 135, 23, 83, 178, 71, 94, 79, 211, 147, 244, 255, 191, 27, 58, 237, 204, + 172, 25, 90, 239, 144, 27, 4, 151, 173, 171, 229, 10, 118, 15, 66, 137, 106, 65, 55, 255, 255, 255, 27, 114, 223, + 65, 147, 184, 99, 145, 232, 191, 27, 84, 178, 160, 211, 135, 126, 58, 89, 72, 200, 205, 249, 96, 114, 187, 3, 97, + 27, 230, 185, 170, 255, 66, 221, 110, 96, 27, 145, 91, 233, 127, 102, 124, 115, 32, 255, 191, 73, 71, 205, 74, 67, + 107, 177, 88, 241, 250, 27, 135, 28, 251, 100, 79, 112, 226, 242, 76, 122, 114, 43, 37, 166, 53, 200, 150, 146, + 251, 8, 34, 68, 224, 180, 130, 243, 72, 123, 99, 72, 79, 242, 133, 57, 37, 74, 82, 45, 181, 208, 236, 240, 123, + 32, 188, 84, 75, 131, 196, 205, 254, 94, 119, 88, 58, 190, 186, 224, 67, 142, 34, 13, 65, 139, 27, 144, 86, 237, + 224, 2, 77, 18, 69, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2418, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fccc011a82f8ff06e20004" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16428691191432108154" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "53" + }, + { + "_tag": "ByteArray", + "bytearray": "62f5756b0c92b29e9a7889" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18297637086551799016" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4420146117285533103" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf4bfccc011a82f8ff06e200041be3fe6f987de6587affd8669f1bfffffffffffffff09f41534b62f5756b0c92b29e9a78899f1bfdee43fc34eef4e8ff1b3d578379882055afffff80ff", + "cborBytes": [ + 159, 191, 75, 252, 204, 1, 26, 130, 248, 255, 6, 226, 0, 4, 27, 227, 254, 111, 152, 125, 230, 88, 122, 255, 216, + 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 65, 83, 75, 98, 245, 117, 107, 12, 146, 178, 158, 154, + 120, 137, 159, 27, 253, 238, 67, 252, 52, 238, 244, 232, 255, 27, 61, 87, 131, 121, 136, 32, 85, 175, 255, 255, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2419, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9861267457421583283" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3858017029698114949" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18289957737205367900" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16339609207151133994" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11036211901659420608" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01dd5cca7913acdeeb21dadf" + }, + { + "_tag": "ByteArray", + "bytearray": "8f9b1b7e" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b88da42815abba3b3d8669f1b358a6e0c4090558580ff1bfdd2fba85b08845cd8669f1be2c1f400c0f2052a9f80ffffd8669f1b99288040905917c09f9f4c01dd5cca7913acdeeb21dadf448f9b1b7effffffff", + "cborBytes": [ + 159, 27, 136, 218, 66, 129, 90, 187, 163, 179, 216, 102, 159, 27, 53, 138, 110, 12, 64, 144, 85, 133, 128, 255, + 27, 253, 210, 251, 168, 91, 8, 132, 92, 216, 102, 159, 27, 226, 193, 244, 0, 192, 242, 5, 42, 159, 128, 255, 255, + 216, 102, 159, 27, 153, 40, 128, 64, 144, 89, 23, 192, 159, 159, 76, 1, 221, 92, 202, 121, 19, 172, 222, 235, 33, + 218, 223, 68, 143, 155, 27, 126, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2420, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1317120692461516083" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd9050980d8669f1b12475a4a987c353380ffff", + "cborBytes": [159, 217, 5, 9, 128, 216, 102, 159, 27, 18, 71, 90, 74, 152, 124, 53, 51, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2421, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1303035150558489611" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5792070288587296571" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13898215825418075279" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9e" + }, + { + "_tag": "ByteArray", + "bytearray": "d3de90" + }, + { + "_tag": "ByteArray", + "bytearray": "3d" + }, + { + "_tag": "ByteArray", + "bytearray": "a64c5917bd578f2d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17276607800433659006" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ef" + } + ] + }, + "cborHex": "9f1b12154f90cee2ec0bd8669f1b5061913d61570f3b9fd8669f1bc0e061a845c1bc8f9f419e43d3de90413d48a64c5917bd578f2d1befc2d74254974c7effffffff41efff", + "cborBytes": [ + 159, 27, 18, 21, 79, 144, 206, 226, 236, 11, 216, 102, 159, 27, 80, 97, 145, 61, 97, 87, 15, 59, 159, 216, 102, + 159, 27, 192, 224, 97, 168, 69, 193, 188, 143, 159, 65, 158, 67, 211, 222, 144, 65, 61, 72, 166, 76, 89, 23, 189, + 87, 143, 45, 27, 239, 194, 215, 66, 84, 151, 76, 126, 255, 255, 255, 255, 65, 239, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2422, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4476749558601393289" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2048859948478769528" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11553696599297898756" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4372370928735246399" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b59192d46c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14519629489288531581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "915664581546704324" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16446606568535374650" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa69b2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17085049724534058396" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15098434396791354106" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8522319119258940768" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f1b3e209c0134d2a489bf1b1c6f03448f9a29781ba056f9d7cbca39041b3cadc831a182583f45b59192d46c1bc98016179b544e7d1b0cb51815e47f7dc41be43e158946283b3a43aa69b21bed1a4a3438bced9c1bd1886a16c549b2faffd8669f1b76455c15f5f2f5609f80ffffff", + "cborBytes": [ + 159, 27, 62, 32, 156, 1, 52, 210, 164, 137, 191, 27, 28, 111, 3, 68, 143, 154, 41, 120, 27, 160, 86, 249, 215, + 203, 202, 57, 4, 27, 60, 173, 200, 49, 161, 130, 88, 63, 69, 181, 145, 146, 212, 108, 27, 201, 128, 22, 23, 155, + 84, 78, 125, 27, 12, 181, 24, 21, 228, 127, 125, 196, 27, 228, 62, 21, 137, 70, 40, 59, 58, 67, 170, 105, 178, 27, + 237, 26, 74, 52, 56, 188, 237, 156, 27, 209, 136, 106, 22, 197, 73, 178, 250, 255, 216, 102, 159, 27, 118, 69, 92, + 21, 245, 242, 245, 96, 159, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2423, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12114161129667508107" + } + } + ] + }, + "cborHex": "9f1ba81e255d25ad378bff", + "cborBytes": [159, 27, 168, 30, 37, 93, 37, 173, 55, 139, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2424, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bb3712fb28a2e41b22e1e4ab" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + } + ] + } + ] + }, + "cborHex": "9f4cbb3712fb28a2e41b22e1e4abbf414f04ffff", + "cborBytes": [159, 76, 187, 55, 18, 251, 40, 162, 228, 27, 34, 225, 228, 171, 191, 65, 79, 4, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2425, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10979725011308475587" + } + }, + { + "_tag": "ByteArray", + "bytearray": "070748" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5523686773465190680" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0168fd" + } + ] + }, + "cborHex": "9f1b985fd1b9868374c3430707489f1b4ca813daceea9118ff430168fdff", + "cborBytes": [ + 159, 27, 152, 95, 209, 185, 134, 131, 116, 195, 67, 7, 7, 72, 159, 27, 76, 168, 19, 218, 206, 234, 145, 24, 255, + 67, 1, 104, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2426, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6661162298541898683" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b3720519fd3a4c535c84e0" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14476634099366083044" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2454946607475726520" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7105402125634532824" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16746108152328899741" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8819588021530831067" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df46e4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13326475696937244605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c818756" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbaf12855f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2695653253694393138" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14017683185631768234" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f9fd8669f1b5c7133d173d07bbb9f4bb3720519fd3a4c535c84e0ffff1bc8e756034c05b9e4ff9f1b2211b8eec12418b8bf1b629b759654c075d81be86620a3cdd64c9d1b7a657893d0a2a8db43df46e41bb8f1270a27d217bd448c81875645fbaf12855f1b2568e25a20148b32ff1bc288d096a58c2eaaffa0ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 92, 113, 51, 209, 115, 208, 123, 187, 159, 75, 179, 114, 5, 25, 253, 58, 76, 83, 92, + 132, 224, 255, 255, 27, 200, 231, 86, 3, 76, 5, 185, 228, 255, 159, 27, 34, 17, 184, 238, 193, 36, 24, 184, 191, + 27, 98, 155, 117, 150, 84, 192, 117, 216, 27, 232, 102, 32, 163, 205, 214, 76, 157, 27, 122, 101, 120, 147, 208, + 162, 168, 219, 67, 223, 70, 228, 27, 184, 241, 39, 10, 39, 210, 23, 189, 68, 140, 129, 135, 86, 69, 251, 175, 18, + 133, 95, 27, 37, 104, 226, 90, 32, 20, 139, 50, 255, 27, 194, 136, 208, 150, 165, 140, 46, 170, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2427, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f7bc92a2f36f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80a5ec5c6aa501c4992f089a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10bec8301141" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17253179362341600636" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c2097175a995855" + } + ] + } + ] + } + ] + }, + "cborHex": "9fa0d905049fbf471f7bc92a2f36f61bffffffffffffffeb4c80a5ec5c6aa501c4992f089a41cb41c30bff0bbf4610bec83011411bef6f9b380278bd7cff9f1bffffffffffffffec482c2097175a995855ffffff", + "cborBytes": [ + 159, 160, 217, 5, 4, 159, 191, 71, 31, 123, 201, 42, 47, 54, 246, 27, 255, 255, 255, 255, 255, 255, 255, 235, 76, + 128, 165, 236, 92, 106, 165, 1, 196, 153, 47, 8, 154, 65, 203, 65, 195, 11, 255, 11, 191, 70, 16, 190, 200, 48, + 17, 65, 27, 239, 111, 155, 56, 2, 120, 189, 124, 255, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 72, 44, 32, + 151, 23, 90, 153, 88, 85, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2428, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15322309981762987920" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4687428566234072467" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12690499936745701993" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dd08770a7beb2a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3242325262835604363" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb" + }, + { + "_tag": "ByteArray", + "bytearray": "da56e89bc179b2118204af54" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3103026814826666751" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d7eb5442d5df45347e0240" + }, + { + "_tag": "ByteArray", + "bytearray": "8b2cc3d8dd8b41b7" + }, + { + "_tag": "ByteArray", + "bytearray": "abb583cb064877cdc4b98523" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3411977768598822961" + } + }, + { + "_tag": "ByteArray", + "bytearray": "39" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "46669659651466218" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19283b00c9e309e231ed" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2627716473543197806" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4861904999547101231" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3785555637202533150" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6243a523f0518a34d1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4658529403938417713" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88e78f5da22d81a21030" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12809546390718590225" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2729368006427509718" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18217297197787722401" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5557534419959949213" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "15fe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10394980054757690730" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15965352849246636386" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17846566461486398469" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18153141693153207375" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18321095741748500924" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fca0aa82dbd010a7f5ec" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18360431097967329810" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8125372100107661978" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c152d09b038b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "264009608808455409" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f9fa0d8669f1bd4a3c7bf5167a7909f1b410d1772286685931bb01db6748fd8426947dd08770a7beb2affff1b2cff0da5e1975b8b41cb4cda56e89bc179b2118204af54ff9fd8669f1b2b102a7292415aff9f4bd7eb5442d5df45347e0240488b2cc3d8dd8b41b74cabb583cb064877cdc4b985231b2f59c7b3fedce0314139ffffbf1b00a5cdcee55063ea4a19283b00c9e309e231ed1b24778635dffc046e1b4378f4d66db3602f1b3488fecb98ef3b1e496243a523f0518a34d11b40a66bcf99762c314a88e78f5da22d81a210301bb1c4a69310ab2d111b25e0a9bdb46d83d61bfcd0d74831db32a11b4d20541c20b8279dffff4215fe1b90426348eb1a4d6a9f1bdd9053d40d1dc9629f1bf7abbda43d4bfc051bfbecea30c1bae44f1bfe419b81fed759bc4afca0aa82dbd010a7f5ecffbf1bfecd5ace4d60c2121b70c31edffec9729a46c152d09b038b1b03a9f35726515cf1ff80ffff", + "cborBytes": [ + 159, 159, 160, 216, 102, 159, 27, 212, 163, 199, 191, 81, 103, 167, 144, 159, 27, 65, 13, 23, 114, 40, 102, 133, + 147, 27, 176, 29, 182, 116, 143, 216, 66, 105, 71, 221, 8, 119, 10, 123, 235, 42, 255, 255, 27, 44, 255, 13, 165, + 225, 151, 91, 139, 65, 203, 76, 218, 86, 232, 155, 193, 121, 178, 17, 130, 4, 175, 84, 255, 159, 216, 102, 159, + 27, 43, 16, 42, 114, 146, 65, 90, 255, 159, 75, 215, 235, 84, 66, 213, 223, 69, 52, 126, 2, 64, 72, 139, 44, 195, + 216, 221, 139, 65, 183, 76, 171, 181, 131, 203, 6, 72, 119, 205, 196, 185, 133, 35, 27, 47, 89, 199, 179, 254, + 220, 224, 49, 65, 57, 255, 255, 191, 27, 0, 165, 205, 206, 229, 80, 99, 234, 74, 25, 40, 59, 0, 201, 227, 9, 226, + 49, 237, 27, 36, 119, 134, 53, 223, 252, 4, 110, 27, 67, 120, 244, 214, 109, 179, 96, 47, 27, 52, 136, 254, 203, + 152, 239, 59, 30, 73, 98, 67, 165, 35, 240, 81, 138, 52, 209, 27, 64, 166, 107, 207, 153, 118, 44, 49, 74, 136, + 231, 143, 93, 162, 45, 129, 162, 16, 48, 27, 177, 196, 166, 147, 16, 171, 45, 17, 27, 37, 224, 169, 189, 180, 109, + 131, 214, 27, 252, 208, 215, 72, 49, 219, 50, 161, 27, 77, 32, 84, 28, 32, 184, 39, 157, 255, 255, 66, 21, 254, + 27, 144, 66, 99, 72, 235, 26, 77, 106, 159, 27, 221, 144, 83, 212, 13, 29, 201, 98, 159, 27, 247, 171, 189, 164, + 61, 75, 252, 5, 27, 251, 236, 234, 48, 193, 186, 228, 79, 27, 254, 65, 155, 129, 254, 215, 89, 188, 74, 252, 160, + 170, 130, 219, 208, 16, 167, 245, 236, 255, 191, 27, 254, 205, 90, 206, 77, 96, 194, 18, 27, 112, 195, 30, 223, + 254, 201, 114, 154, 70, 193, 82, 208, 155, 3, 139, 27, 3, 169, 243, 87, 38, 81, 92, 241, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2429, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01fbff" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10215722849689735625" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17922207952118666883" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f1edf8bfab320c7356df3422" + }, + { + "_tag": "ByteArray", + "bytearray": "77" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3124979704379489739" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6611049034824800831" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2767892964093993544" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6622325451834106918" + } + } + ] + } + ] + }, + "cborHex": "9f4301fbff9fd8669f1b8dc589ce7b9911c99f1bf8b8792d30b6d6834cf1edf8bfab320c7356df34224177ffffbf1b2b5e287bf9d83dcb1b5bbf2a12016bda3fff9f1b266987fc65202248ff1b5be739e96f99a426ffff", + "cborBytes": [ + 159, 67, 1, 251, 255, 159, 216, 102, 159, 27, 141, 197, 137, 206, 123, 153, 17, 201, 159, 27, 248, 184, 121, 45, + 48, 182, 214, 131, 76, 241, 237, 248, 191, 171, 50, 12, 115, 86, 223, 52, 34, 65, 119, 255, 255, 191, 27, 43, 94, + 40, 123, 249, 216, 61, 203, 27, 91, 191, 42, 18, 1, 107, 218, 63, 255, 159, 27, 38, 105, 135, 252, 101, 32, 34, + 72, 255, 27, 91, 231, 57, 233, 111, 153, 164, 38, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2430, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01475b9c8d6004fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14593490673129026231" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + } + ] + }, + "cborHex": "9f4801475b9c8d6004fa1bca867e7294d4f2b71bfffffffffffffffd413b9f05ffff", + "cborBytes": [ + 159, 72, 1, 71, 91, 156, 141, 96, 4, 250, 27, 202, 134, 126, 114, 148, 212, 242, 183, 27, 255, 255, 255, 255, 255, + 255, 255, 253, 65, 59, 159, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2431, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8124735705475941620" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11b3099676" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e571cb0d4b3ff05926f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "636fad3a103a8862c6cdade1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15416531595364433299" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "725e2c4a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "128400" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b3392795c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b23c6945f5542fce80c99" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c7ab2efbd6e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3645ec6702" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c74783367435bd0b9a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13238061650189403708" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d7f25c9d267e92dae8d4" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8e980f" + } + ] + }, + "cborHex": "9fd8669f1b70c0dc13d2d384f49fbf4511b30996764ae571cb0d4b3ff05926f64c636fad3a103a8862c6cdade11bd5f285ce42487d9344725e2c4a43128400457b3392795c4b5b23c6945f5542fce80c99467c7ab2efbd6e453645ec670249c74783367435bd0b9a1bb7b70aeebe42c63cff4ad7f25c9d267e92dae8d4ffff438e980fff", + "cborBytes": [ + 159, 216, 102, 159, 27, 112, 192, 220, 19, 210, 211, 132, 244, 159, 191, 69, 17, 179, 9, 150, 118, 74, 229, 113, + 203, 13, 75, 63, 240, 89, 38, 246, 76, 99, 111, 173, 58, 16, 58, 136, 98, 198, 205, 173, 225, 27, 213, 242, 133, + 206, 66, 72, 125, 147, 68, 114, 94, 44, 74, 67, 18, 132, 0, 69, 123, 51, 146, 121, 92, 75, 91, 35, 198, 148, 95, + 85, 66, 252, 232, 12, 153, 70, 124, 122, 178, 239, 189, 110, 69, 54, 69, 236, 103, 2, 73, 199, 71, 131, 54, 116, + 53, 189, 11, 154, 27, 183, 183, 10, 238, 190, 66, 198, 60, 255, 74, 215, 242, 92, 157, 38, 126, 146, 218, 232, + 212, 255, 255, 67, 142, 152, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2432, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6090430835399605306" + } + } + ] + }, + "cborHex": "9f1b54858e9389143c3aff", + "cborBytes": [159, 27, 84, 133, 142, 147, 137, 20, 60, 58, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2433, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "442ac39299" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "157d493d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13823483139284487249" + } + } + } + ] + } + ] + }, + "cborHex": "9fa0bf45442ac3929944157d493d41541bbfd6e0acdba74c51ffff", + "cborBytes": [ + 159, 160, 191, 69, 68, 42, 195, 146, 153, 68, 21, 125, 73, 61, 65, 84, 27, 191, 214, 224, 172, 219, 167, 76, 81, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2434, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0400647d340685aa" + }, + { + "_tag": "ByteArray", + "bytearray": "ed2e10b4c88f4abf0b827ece" + } + ] + } + ] + }, + "cborHex": "9f9f480400647d340685aa4ced2e10b4c88f4abf0b827eceffff", + "cborBytes": [ + 159, 159, 72, 4, 0, 100, 125, 52, 6, 133, 170, 76, 237, 46, 16, 180, 200, 143, 74, 191, 11, 130, 126, 206, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2435, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b5e7791737c150d55" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3900930891892421172" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf494b5e7791737c150d551b3622e3fa68987234ffffff", + "cborBytes": [ + 159, 159, 191, 73, 75, 94, 119, 145, 115, 124, 21, 13, 85, 27, 54, 34, 227, 250, 104, 152, 114, 52, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2436, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9689464772607999014" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05025027" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d49a5d39bf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14865748967952328766" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e0855d68ff79b77db2d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "859086699244574258" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ef49f58e01fa6b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24022d969a3d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18020885123881800892" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10095568442783256448" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10895663931156363928" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8704027396735137132" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b8677e4dfaaf5fc269f9f4405025027ffffffd8669f1bfffffffffffffff99f9f45d49a5d39bf1bce4dbfec9aeda83e4a9e0855d68ff79b77db2d1b0bec16cd23bc5632ff47ef49f58e01fa6bbf4624022d969a3d1bfa170b8a9b1894bcff1b8c1aaa0295bd4f80bf1b97352c9e209c7a981b78caeacd29aa756cffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 134, 119, 228, 223, 170, 245, 252, 38, 159, 159, 68, 5, 2, 80, 39, 255, 255, 255, 216, + 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 159, 69, 212, 154, 93, 57, 191, 27, 206, 77, 191, 236, + 154, 237, 168, 62, 74, 158, 8, 85, 214, 143, 247, 155, 119, 219, 45, 27, 11, 236, 22, 205, 35, 188, 86, 50, 255, + 71, 239, 73, 245, 142, 1, 250, 107, 191, 70, 36, 2, 45, 150, 154, 61, 27, 250, 23, 11, 138, 155, 24, 148, 188, + 255, 27, 140, 26, 170, 2, 149, 189, 79, 128, 191, 27, 151, 53, 44, 158, 32, 156, 122, 152, 27, 120, 202, 234, 205, + 41, 170, 117, 108, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2437, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15784717729631207016" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16775355428608152193" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc212e" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4d9bbd" + } + ] + }, + "cborHex": "9fd8669f1bdb0e9524e27a7e689fbf1be8ce08e1f71c128143cc212effffff434d9bbdff", + "cborBytes": [ + 159, 216, 102, 159, 27, 219, 14, 149, 36, 226, 122, 126, 104, 159, 191, 27, 232, 206, 8, 225, 247, 28, 18, 129, + 67, 204, 33, 46, 255, 255, 255, 67, 77, 155, 189, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2438, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e05a6bb0c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10659160460882690080" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f5f2a484f0cb8750d73" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11862899222183136453" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c590b969018add3837a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2177886992507712216" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c89d0b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3dce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df679d7bb764b94b1c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7699357673357355134" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2815284463082437164" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7326026240198928255" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1500320743948360254" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4037065259004345974" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8457494684629983857" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3087717649533197764" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9f0bf57d11ac3ac2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7091249521748411035" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1593319159998510920" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a30796c6e53f7d90811df" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6779738331908281899" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7385141820546506981" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf7aa1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17611851709504587781" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2433142885769103877" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8642330055952237944" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dbd4e0c0e9a1a64a1f5cec" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "73" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16988304443792101263" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17853271107628904443" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "986f60973195d3384cecd5a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b501f634a92ccb67073165" + } + } + ] + } + ] + }, + "cborHex": "9fbf452e05a6bb0c1b93ecf1f6eacd40204a9f5f2a484f0cb8750d731ba4a17bfd807bccc54ac590b969018add3837a11b1e3968ae455db2d843c89d0b423dce49df679d7bb764b94b1c1b6ad99d02cf24a87eff1b2711e64d9bb47a2cd8669f1b65ab460cee3f677f9f1b14d235c480311a3ed8669f1b38068976ba063e769f1b755f0e9b1f1fe2711b2ad9c6d7c3215dc4489f0bf57d11ac3ac21b62692dde7579029bffffbf1b161c9b559188f7484b4a30796c6e53f7d90811df1b5e1678179f7e162b1b667d4b5b8d8e60e543cf7aa11bf469ddd175e08805ff1b21c4429032094a051b77efb96598b70578ffff4bdbd4e0c0e9a1a64a1f5cecbf41731bebc294e23c6b0f8f41911bf7c38f7b50f72ffb4c986f60973195d3384cecd5a54bb501f634a92ccb67073165ffff", + "cborBytes": [ + 159, 191, 69, 46, 5, 166, 187, 12, 27, 147, 236, 241, 246, 234, 205, 64, 32, 74, 159, 95, 42, 72, 79, 12, 184, + 117, 13, 115, 27, 164, 161, 123, 253, 128, 123, 204, 197, 74, 197, 144, 185, 105, 1, 138, 221, 56, 55, 161, 27, + 30, 57, 104, 174, 69, 93, 178, 216, 67, 200, 157, 11, 66, 61, 206, 73, 223, 103, 157, 123, 183, 100, 185, 75, 28, + 27, 106, 217, 157, 2, 207, 36, 168, 126, 255, 27, 39, 17, 230, 77, 155, 180, 122, 44, 216, 102, 159, 27, 101, 171, + 70, 12, 238, 63, 103, 127, 159, 27, 20, 210, 53, 196, 128, 49, 26, 62, 216, 102, 159, 27, 56, 6, 137, 118, 186, 6, + 62, 118, 159, 27, 117, 95, 14, 155, 31, 31, 226, 113, 27, 42, 217, 198, 215, 195, 33, 93, 196, 72, 159, 11, 245, + 125, 17, 172, 58, 194, 27, 98, 105, 45, 222, 117, 121, 2, 155, 255, 255, 191, 27, 22, 28, 155, 85, 145, 136, 247, + 72, 75, 74, 48, 121, 108, 110, 83, 247, 217, 8, 17, 223, 27, 94, 22, 120, 23, 159, 126, 22, 43, 27, 102, 125, 75, + 91, 141, 142, 96, 229, 67, 207, 122, 161, 27, 244, 105, 221, 209, 117, 224, 136, 5, 255, 27, 33, 196, 66, 144, 50, + 9, 74, 5, 27, 119, 239, 185, 101, 152, 183, 5, 120, 255, 255, 75, 219, 212, 224, 192, 233, 161, 166, 74, 31, 92, + 236, 191, 65, 115, 27, 235, 194, 148, 226, 60, 107, 15, 143, 65, 145, 27, 247, 195, 143, 123, 80, 247, 47, 251, + 76, 152, 111, 96, 151, 49, 149, 211, 56, 76, 236, 213, 165, 75, 181, 1, 246, 52, 169, 44, 203, 103, 7, 49, 101, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2439, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "217b74785276" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b6da1c928056ff84f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d74c583c65171eb636474e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d77edbdf94516f01" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4b01669" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf46217b74785276492b6da1c928056ff84f4c3d74c583c65171eb636474e248d77edbdf94516f0144e4b0166941a8ffffff", + "cborBytes": [ + 159, 159, 191, 70, 33, 123, 116, 120, 82, 118, 73, 43, 109, 161, 201, 40, 5, 111, 248, 79, 76, 61, 116, 197, 131, + 198, 81, 113, 235, 99, 100, 116, 226, 72, 215, 126, 219, 223, 148, 81, 111, 1, 68, 228, 176, 22, 105, 65, 168, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2440, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6b7791" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f436b779180ff", + "cborBytes": [159, 67, 107, 119, 145, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2441, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1873068023148281161" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4d349ab6ddc73e7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12068499378075356480" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6248727930573925068" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6138555000010350622" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18284568891064974296" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9965230101694696215" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4377070207556284081" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13419389920509947923" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "080c3f" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17035182612474410732" + } + } + ] + }, + "cborHex": "9f9f1b19fe79716fe57d49bf48c4d349ab6ddc73e71ba77bec3e22344d40ff1b56b7f0f217ebaaccbf1b5530873fc1d0a01e1bfdbfd687d715fbd81b8a4b9bfabc8acb171b3cbe7a29be566eb11bba3b4008a273f01343080c3fffffa01bec6920546c72b6ecff", + "cborBytes": [ + 159, 159, 27, 25, 254, 121, 113, 111, 229, 125, 73, 191, 72, 196, 211, 73, 171, 109, 220, 115, 231, 27, 167, 123, + 236, 62, 34, 52, 77, 64, 255, 27, 86, 183, 240, 242, 23, 235, 170, 204, 191, 27, 85, 48, 135, 63, 193, 208, 160, + 30, 27, 253, 191, 214, 135, 215, 21, 251, 216, 27, 138, 75, 155, 250, 188, 138, 203, 23, 27, 60, 190, 122, 41, + 190, 86, 110, 177, 27, 186, 59, 64, 8, 162, 115, 240, 19, 67, 8, 12, 63, 255, 255, 160, 27, 236, 105, 32, 84, 108, + 114, 182, 236, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2442, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9dba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68fddcdad744" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "553515449884551076" + } + } + ] + }, + "cborHex": "9fbf429dba4668fddcdad744ff1b07ae7b5e780f27a4ff", + "cborBytes": [ + 159, 191, 66, 157, 186, 70, 104, 253, 220, 218, 215, 68, 255, 27, 7, 174, 123, 94, 120, 15, 39, 164, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2443, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15854123543191295545" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00381c9fe04922b3e48ce10d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9ba58f04c0220b0994085" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2256123135309449996" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c052760c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6953388448638886162" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "362616ba" + }, + { + "_tag": "ByteArray", + "bytearray": "b44a41" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17991953111230285755" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6712643980442307636" + } + } + ] + } + ] + }, + "cborHex": "9f1bdc05295d21131639bf4c00381c9fe04922b3e48ce10d4ba9ba58f04c0220b0994085410c1b1f4f5c09c1a90b0c44c052760c1b607f65f4126ce112ff44362616ba43b44a41d8669f1bf9b042077a5d87bb9fa01b5d281a2295ed8c34ffffff", + "cborBytes": [ + 159, 27, 220, 5, 41, 93, 33, 19, 22, 57, 191, 76, 0, 56, 28, 159, 224, 73, 34, 179, 228, 140, 225, 13, 75, 169, + 186, 88, 240, 76, 2, 32, 176, 153, 64, 133, 65, 12, 27, 31, 79, 92, 9, 193, 169, 11, 12, 68, 192, 82, 118, 12, 27, + 96, 127, 101, 244, 18, 108, 225, 18, 255, 68, 54, 38, 22, 186, 67, 180, 74, 65, 216, 102, 159, 27, 249, 176, 66, + 7, 122, 93, 135, 187, 159, 160, 27, 93, 40, 26, 34, 149, 237, 140, 52, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2444, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14531811353243039361" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9739018366098621903" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "207683c3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13320676406294307912" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e30" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13456271931209235842" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4" + } + } + ] + } + ] + }, + "cborHex": "9f1bc9ab5d6ed50a3681bf1b8727f19abc5045cf44207683c31bb8dc8c9d95196448429e301bbabe4806ecc93d8241f4ffff", + "cborBytes": [ + 159, 27, 201, 171, 93, 110, 213, 10, 54, 129, 191, 27, 135, 39, 241, 154, 188, 80, 69, 207, 68, 32, 118, 131, 195, + 27, 184, 220, 140, 157, 149, 25, 100, 72, 66, 158, 48, 27, 186, 190, 72, 6, 236, 201, 61, 130, 65, 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2445, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1717147787787432799" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16761664208588986300" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9271795113478193797" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "163341956277222348" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13656030431848473698" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "161a3e74b735" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4211609824968948096" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bbaa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4243075126538520076" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5ffa9f59" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "556fbdbf765945ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7733309283937639095" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ba8a188" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3936" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5efeee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89f158af8331ef43dd7bcdf9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a8d5ef6" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1113878396897065078" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18395603826698761916" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2332279567974992578" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5121447856240888323" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1188350241971506401" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aca91b2c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14119732877011979299" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12926611175217958011" + } + }, + { + "_tag": "ByteArray", + "bytearray": "703117" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "72fe2ca1" + }, + { + "_tag": "ByteArray", + "bytearray": "8aa0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3265033276966551751" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7385758689234818417" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "86604c2231a8ff24" + } + ] + }, + "cborHex": "9f9fbf1b17d488d0adeaf35f1be89d64ca655357bc1b80ac0888191202851b02444ea4d0d23bcc1bbd83f7533440a46246161a3e74b735ffd8669f1b3a72a4d25dd1b9809f42bbaa1b3ae26e58c89fc60cffff445ffa9f59bf48556fbdbf765945ec1b6b523bd227555ab7445ba8a188423936435efeee4c89f158af8331ef43dd7bcdf941a8446a8d5ef6ff9f1b0f754a801a07f876ffff1bff4a50375f3236bc9f1b205debe8fe0d0ac2d8669f1b471309b0ceec8a039f1b107dde3fb9760ce144aca91b2c1bc3f35e3df9b40c231bb3648c6030760c7b43703117ffff809f4472fe2ca1428aa01b2d4fba776d6bc0c71b667f7c657c989571ffff4886604c2231a8ff24ff", + "cborBytes": [ + 159, 159, 191, 27, 23, 212, 136, 208, 173, 234, 243, 95, 27, 232, 157, 100, 202, 101, 83, 87, 188, 27, 128, 172, + 8, 136, 25, 18, 2, 133, 27, 2, 68, 78, 164, 208, 210, 59, 204, 27, 189, 131, 247, 83, 52, 64, 164, 98, 70, 22, 26, + 62, 116, 183, 53, 255, 216, 102, 159, 27, 58, 114, 164, 210, 93, 209, 185, 128, 159, 66, 187, 170, 27, 58, 226, + 110, 88, 200, 159, 198, 12, 255, 255, 68, 95, 250, 159, 89, 191, 72, 85, 111, 189, 191, 118, 89, 69, 236, 27, 107, + 82, 59, 210, 39, 85, 90, 183, 68, 91, 168, 161, 136, 66, 57, 54, 67, 94, 254, 238, 76, 137, 241, 88, 175, 131, 49, + 239, 67, 221, 123, 205, 249, 65, 168, 68, 106, 141, 94, 246, 255, 159, 27, 15, 117, 74, 128, 26, 7, 248, 118, 255, + 255, 27, 255, 74, 80, 55, 95, 50, 54, 188, 159, 27, 32, 93, 235, 232, 254, 13, 10, 194, 216, 102, 159, 27, 71, 19, + 9, 176, 206, 236, 138, 3, 159, 27, 16, 125, 222, 63, 185, 118, 12, 225, 68, 172, 169, 27, 44, 27, 195, 243, 94, + 61, 249, 180, 12, 35, 27, 179, 100, 140, 96, 48, 118, 12, 123, 67, 112, 49, 23, 255, 255, 128, 159, 68, 114, 254, + 44, 161, 66, 138, 160, 27, 45, 79, 186, 119, 109, 107, 192, 199, 27, 102, 127, 124, 101, 124, 152, 149, 113, 255, + 255, 72, 134, 96, 76, 34, 49, 168, 255, 36, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2446, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00fa0470c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "310732db5c6a6a0ba7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b074a75" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12131353369801059344" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + ] + }, + "cborHex": "9fbf4500fa0470c849310732db5c6a6a0ba7443b074a751ba85b399d7bbaec10ff1bffffffffffffffebff", + "cborBytes": [ + 159, 191, 69, 0, 250, 4, 112, 200, 73, 49, 7, 50, 219, 92, 106, 106, 11, 167, 68, 59, 7, 74, 117, 27, 168, 91, 57, + 157, 123, 186, 236, 16, 255, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2447, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1816289200118432261" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2394459b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7276499557954717573" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0fa98d1904c011ebfc5cfd5f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16807871645815394992" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17822614130236096678" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ee7100d0a6dc0c9e15a3" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "54bc55" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17612510631480739617" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "554b427ce1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b2a855a1d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b7f7746d6ec4f9b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9958928602685039243" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83f3a0f70b6ad6c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5369829120094353810" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b776856f5f91cacb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1366191902747716451" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b1934c16786700205442394459b1b64fb51cba02d87854c0fa98d1904c011ebfc5cfd5f1be9418e35bf2fd2b01bf756a51f899480a6ffffd905039f4aee7100d0a6dc0c9e15a3bf4354bc551bf46c351ab033472145554b427ce1452b2a855a1d485b7f7746d6ec4f9b1b8a3538ccaa84e28b4883f3a0f70b6ad6c01b4a85772257c5b99248b776856f5f91cacb1b12f5b04c124aeb63ffffff", + "cborBytes": [ + 159, 159, 191, 27, 25, 52, 193, 103, 134, 112, 2, 5, 68, 35, 148, 69, 155, 27, 100, 251, 81, 203, 160, 45, 135, + 133, 76, 15, 169, 141, 25, 4, 192, 17, 235, 252, 92, 253, 95, 27, 233, 65, 142, 53, 191, 47, 210, 176, 27, 247, + 86, 165, 31, 137, 148, 128, 166, 255, 255, 217, 5, 3, 159, 74, 238, 113, 0, 208, 166, 220, 12, 158, 21, 163, 191, + 67, 84, 188, 85, 27, 244, 108, 53, 26, 176, 51, 71, 33, 69, 85, 75, 66, 124, 225, 69, 43, 42, 133, 90, 29, 72, 91, + 127, 119, 70, 214, 236, 79, 155, 27, 138, 53, 56, 204, 170, 132, 226, 139, 72, 131, 243, 160, 247, 11, 106, 214, + 192, 27, 74, 133, 119, 34, 87, 197, 185, 146, 72, 183, 118, 133, 111, 95, 145, 202, 203, 27, 18, 245, 176, 76, 18, + 74, 235, 99, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2448, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17760949574624179786" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12648736498250203097" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10191166588333690209" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13231753311852503189" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6502552854866763159" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6266903316365559458" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3832" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8039829666317937749" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8094104179363000774" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bb3b0bfe421fd85c818d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16d7bf6d89" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c1f8b2d14cf11" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "732f" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf67b91895d19764a9f9f1baf8956d44bb8bfd9ff1b8d6e4c0458758d61d8669f1bb7a0a188449120959f1b5a3db55e97891d971b56f8835cddafc6a24238321b6f93367c13872c551b705408dde1efb1c6ffff80ffffbf4b4bb3b0bfe421fd85c818d94516d7bf6d89476c1f8b2d14cf1141b841fa42732fffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 246, 123, 145, 137, 93, 25, 118, 74, 159, 159, 27, 175, 137, 86, 212, 75, 184, 191, 217, + 255, 27, 141, 110, 76, 4, 88, 117, 141, 97, 216, 102, 159, 27, 183, 160, 161, 136, 68, 145, 32, 149, 159, 27, 90, + 61, 181, 94, 151, 137, 29, 151, 27, 86, 248, 131, 92, 221, 175, 198, 162, 66, 56, 50, 27, 111, 147, 54, 124, 19, + 135, 44, 85, 27, 112, 84, 8, 221, 225, 239, 177, 198, 255, 255, 128, 255, 255, 191, 75, 75, 179, 176, 191, 228, + 33, 253, 133, 200, 24, 217, 69, 22, 215, 191, 109, 137, 71, 108, 31, 139, 45, 20, 207, 17, 65, 184, 65, 250, 66, + 115, 47, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2449, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4030805636574434432" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13980961693095999977" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7791031112632858580" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "77a41ad6df8658" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6336135812620022211" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e254a3d64c09b3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9169848418930096215" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7e4a237a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4243862740555181557" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f06c79fe6aedb932c1df9114" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "472674176472575182" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6286814634772723448" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc05f1b3a102063aa1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f1b37f04c5ecea954801bc2065a95e754b9e9ffa0d8669f1b6c1f4d84ae7f77d49f4777a41ad6df86581b57ee79f387d8f1c347e254a3d64c09b31b7f41d88d96817857447e4a237affff1b3ae53aad764eadf59f4cf06c79fe6aedb932c1df91141b068f46a8bf25ecceffffbf141bfffffffffffffff11b573f4099f25af6f849fc05f1b3a102063aa11bffffffffffffffec41f9ffff", + "cborBytes": [ + 159, 159, 159, 27, 55, 240, 76, 94, 206, 169, 84, 128, 27, 194, 6, 90, 149, 231, 84, 185, 233, 255, 160, 216, 102, + 159, 27, 108, 31, 77, 132, 174, 127, 119, 212, 159, 71, 119, 164, 26, 214, 223, 134, 88, 27, 87, 238, 121, 243, + 135, 216, 241, 195, 71, 226, 84, 163, 214, 76, 9, 179, 27, 127, 65, 216, 141, 150, 129, 120, 87, 68, 126, 74, 35, + 122, 255, 255, 27, 58, 229, 58, 173, 118, 78, 173, 245, 159, 76, 240, 108, 121, 254, 106, 237, 185, 50, 193, 223, + 145, 20, 27, 6, 143, 70, 168, 191, 37, 236, 206, 255, 255, 191, 20, 27, 255, 255, 255, 255, 255, 255, 255, 241, + 27, 87, 63, 64, 153, 242, 90, 246, 248, 73, 252, 5, 241, 179, 161, 2, 6, 58, 161, 27, 255, 255, 255, 255, 255, + 255, 255, 236, 65, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2450, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd9050a9f8080ffff", + "cborBytes": [159, 217, 5, 10, 159, 128, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2451, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8780008095973752825" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "187122620089699005" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b79d8dad84591bff91b0298cb0813e30abdffff", + "cborBytes": [159, 191, 27, 121, 216, 218, 216, 69, 145, 191, 249, 27, 2, 152, 203, 8, 19, 227, 10, 189, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2452, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2431638946260973246" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9531166228958591685" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d4e52f79c5ef7cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7886325156844742356" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aecd4563df" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12999312922262025452" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e2" + }, + { + "_tag": "ByteArray", + "bytearray": "7e46" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9385364288602882352" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2149969911509899932" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10230163656143201661" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12161685289155720902" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5346903234291995448" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7375176281383706732" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82530b774dbb69f09f6ace37" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11307048724764199013" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9690792195561099266" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2877492493551462186" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8799f1b21beeabcfde3f6bebf413b1b8445812fdc46bac5489d4e52f79c5ef7cd1b6d71daf254f526d441bb45aecd4563dfff9f1bb466d63abf92b4ec41e2427e461b823f83183dcfc130ffd8669f1b1dd63a3e55535a9c9f1b8df8d7a4be86e57d1ba8c6fc55ca3876c61b4a340429985c9338ffffbf1b6659e3c0a7c3206c4c82530b774dbb69f09f6ace371b9ceab4e8699a88651b867c9c28688c1002ffff9f9f1b27eee82d61fce72affffff", + "cborBytes": [ + 159, 216, 121, 159, 27, 33, 190, 234, 188, 253, 227, 246, 190, 191, 65, 59, 27, 132, 69, 129, 47, 220, 70, 186, + 197, 72, 157, 78, 82, 247, 156, 94, 247, 205, 27, 109, 113, 218, 242, 84, 245, 38, 212, 65, 187, 69, 174, 205, 69, + 99, 223, 255, 159, 27, 180, 102, 214, 58, 191, 146, 180, 236, 65, 226, 66, 126, 70, 27, 130, 63, 131, 24, 61, 207, + 193, 48, 255, 216, 102, 159, 27, 29, 214, 58, 62, 85, 83, 90, 156, 159, 27, 141, 248, 215, 164, 190, 134, 229, + 125, 27, 168, 198, 252, 85, 202, 56, 118, 198, 27, 74, 52, 4, 41, 152, 92, 147, 56, 255, 255, 191, 27, 102, 89, + 227, 192, 167, 195, 32, 108, 76, 130, 83, 11, 119, 77, 187, 105, 240, 159, 106, 206, 55, 27, 156, 234, 180, 232, + 105, 154, 136, 101, 27, 134, 124, 156, 40, 104, 140, 16, 2, 255, 255, 159, 159, 27, 39, 238, 232, 45, 97, 252, + 231, 42, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2453, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "736138940642728584" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11122789556850100837" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1b0a374a775e579a88a004d8669f1b9a5c162bbf798a6580ffff", + "cborBytes": [ + 159, 27, 10, 55, 74, 119, 94, 87, 154, 136, 160, 4, 216, 102, 159, 27, 154, 92, 22, 43, 191, 121, 138, 101, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2454, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe022eea7e0432" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10082348384784622129" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8432957464944161623" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6057896348149430456" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8380578095828660110" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16184197160596912599" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e1ff1085334" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6468135500245564497" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8199744624160166321" + } + } + ] + }, + "cborHex": "9fbf47fe022eea7e04321b8bebb26ff8d22231ff1b7507e22277f9b3571b5411f8a1ed9538b8bf1b744dcb603e496f8e1be099d191ec43b9d7460e1ff10853341b59c36ef7c33afc51ff1b71cb584aa3fc51b1ff", + "cborBytes": [ + 159, 191, 71, 254, 2, 46, 234, 126, 4, 50, 27, 139, 235, 178, 111, 248, 210, 34, 49, 255, 27, 117, 7, 226, 34, + 119, 249, 179, 87, 27, 84, 17, 248, 161, 237, 149, 56, 184, 191, 27, 116, 77, 203, 96, 62, 73, 111, 142, 27, 224, + 153, 209, 145, 236, 67, 185, 215, 70, 14, 31, 241, 8, 83, 52, 27, 89, 195, 110, 247, 195, 58, 252, 81, 255, 27, + 113, 203, 88, 74, 163, 252, 81, 177, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2455, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d0" + }, + { + "_tag": "ByteArray", + "bytearray": "163003c5b53d75cb5b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "185207105619705594" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9548641374014957700" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4062105243528854428" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "324cd90857" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8133992883832881052" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1981761675788541432" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12978338077851006918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e99791e68d4c29" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13070432407723816506" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30007d06c3800ccd" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f41d049163003c5b53d75cb5bbf1b0291fce19c573efa1b848396bd21c268841b385f7f3270c9fb9c45324cd908571b70e1bf6e9e69ff9c1b1b80a1be8adbddf81bb41c51b8393c37c647e99791e68d4c291bb56381065321b63a4830007d06c3800ccdffffff", + "cborBytes": [ + 159, 159, 65, 208, 73, 22, 48, 3, 197, 181, 61, 117, 203, 91, 191, 27, 2, 145, 252, 225, 156, 87, 62, 250, 27, + 132, 131, 150, 189, 33, 194, 104, 132, 27, 56, 95, 127, 50, 112, 201, 251, 156, 69, 50, 76, 217, 8, 87, 27, 112, + 225, 191, 110, 158, 105, 255, 156, 27, 27, 128, 161, 190, 138, 219, 221, 248, 27, 180, 28, 81, 184, 57, 60, 55, + 198, 71, 233, 151, 145, 230, 141, 76, 41, 27, 181, 99, 129, 6, 83, 33, 182, 58, 72, 48, 0, 125, 6, 195, 128, 12, + 205, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2456, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffffe80ffff", + "cborBytes": [159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2457, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "1a13f32af8dbe21be922e57a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16489575970518065262" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e2f755fbee39ee49" + }, + { + "_tag": "ByteArray", + "bytearray": "64f4847632" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10984412676055639948" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5924908007337436155" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "084fba" + }, + { + "_tag": "ByteArray", + "bytearray": "b308057421c3f3afb8afc4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b710c2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ab9f4cccd9e1b1d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8525341996340651480" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad74392bf66b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a27b143c3534f4ababbd33" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9025174665419677441" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6853686331348215847" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d8651566c538fb706cec" + }, + { + "_tag": "ByteArray", + "bytearray": "d731c276c634f0c8" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fc550f80be9d1c169f" + }, + { + "_tag": "ByteArray", + "bytearray": "86ea1e" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "869e3624309a9566173d0e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7672955376821973622" + } + } + ] + }, + "cborHex": "9f9f804c1a13f32af8dbe21be922e57a1be4d6bdfacb8be06e9f48e2f755fbee39ee494564f48476321b987079218698278c1b52398070f03723fbffff43084fba4bb308057421c3f3afb8afc4d8669f1bffffffffffffffef9fbf410a43b710c2481ab9f4cccd9e1b1d1b76501960609aa5d846ad74392bf66b4ba27b143c3534f4ababbd33ffd8669f1b7d3fdc8a7031df019f1b5f1d2f67edf5e8274ad8651566c538fb706cec48d731c276c634f0c8ffff9f49fc550f80be9d1c169f4386ea1eff4b869e3624309a9566173d0effff1b6a7bd0431ce5b276ff", + "cborBytes": [ + 159, 159, 128, 76, 26, 19, 243, 42, 248, 219, 226, 27, 233, 34, 229, 122, 27, 228, 214, 189, 250, 203, 139, 224, + 110, 159, 72, 226, 247, 85, 251, 238, 57, 238, 73, 69, 100, 244, 132, 118, 50, 27, 152, 112, 121, 33, 134, 152, + 39, 140, 27, 82, 57, 128, 112, 240, 55, 35, 251, 255, 255, 67, 8, 79, 186, 75, 179, 8, 5, 116, 33, 195, 243, 175, + 184, 175, 196, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 191, 65, 10, 67, 183, 16, 194, 72, + 26, 185, 244, 204, 205, 158, 27, 29, 27, 118, 80, 25, 96, 96, 154, 165, 216, 70, 173, 116, 57, 43, 246, 107, 75, + 162, 123, 20, 60, 53, 52, 244, 171, 171, 189, 51, 255, 216, 102, 159, 27, 125, 63, 220, 138, 112, 49, 223, 1, 159, + 27, 95, 29, 47, 103, 237, 245, 232, 39, 74, 216, 101, 21, 102, 197, 56, 251, 112, 108, 236, 72, 215, 49, 194, 118, + 198, 52, 240, 200, 255, 255, 159, 73, 252, 85, 15, 128, 190, 157, 28, 22, 159, 67, 134, 234, 30, 255, 75, 134, + 158, 54, 36, 48, 154, 149, 102, 23, 61, 14, 255, 255, 27, 106, 123, 208, 67, 28, 229, 178, 118, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2458, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2596270476110970678" + } + } + ] + }, + "cborHex": "9f1b2407ce3e0d6dbf36ff", + "cborBytes": [159, 27, 36, 7, 206, 62, 13, 109, 191, 54, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2459, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e8f59ba99c543b351aba9b46" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "461368552149769726" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4268168891109308513" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1686adc2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5304179421510726012" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8134550820d376f22ede34" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6595366110432710866" + } + }, + { + "_tag": "ByteArray", + "bytearray": "40ee18494ef28b2bfd01fbbb" + } + ] + } + ] + } + ] + }, + "cborHex": "9f4ce8f59ba99c543b351aba9b46d8669f1b06671c40f56c5dfe9fbf1b3b3b94fe23f17861441686adc21b499c3b14c415717c4b8134550820d376f22ede34ff9f1b5b8772889ffdd0d24c40ee18494ef28b2bfd01fbbbffffffff", + "cborBytes": [ + 159, 76, 232, 245, 155, 169, 156, 84, 59, 53, 26, 186, 155, 70, 216, 102, 159, 27, 6, 103, 28, 64, 245, 108, 93, + 254, 159, 191, 27, 59, 59, 148, 254, 35, 241, 120, 97, 68, 22, 134, 173, 194, 27, 73, 156, 59, 20, 196, 21, 113, + 124, 75, 129, 52, 85, 8, 32, 211, 118, 242, 46, 222, 52, 255, 159, 27, 91, 135, 114, 136, 159, 253, 208, 210, 76, + 64, 238, 24, 73, 78, 242, 139, 43, 253, 1, 251, 187, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2460, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11809823572746246164" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14144899887214327543" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e4a5904ca7c03471a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ef0d20a559f01" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ad31d5a3145e7e58a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8395457579651579553" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e22ec7eab1362318529" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fee2d5c6ef38b15ee33751d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c48c" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c17e257cf4829086ef7da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d220a01cf40fe0d834" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e495c8aefd334" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79f0797488971d7724" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd2154480352950e77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e2fe7204ad0fb6d5576" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5970632829808136881" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9390788420781414500" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16150652553416679681" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1417537349843889953" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10325542938917991572" + } + }, + { + "_tag": "ByteArray", + "bytearray": "062291a64e8c5c6617da9b" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12985702807397913553" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9be78abb33489b59" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15666052045303877187" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16913138566722437616" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5e0caab8606d272a6b77" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4636846552974110592" + } + }, + { + "_tag": "ByteArray", + "bytearray": "abdb4b2e8381d2c0db" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8216527951315595131" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6225247815343205113" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7214594a6049e43ed382" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9387410600187428731" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2d9b3d27c1bc" + } + ] + }, + "cborHex": "9f9f1ba3e4ebf7e19318141bc44cc78128df76f7bf493e4a5904ca7c03471a478ef0d20a559f01497ad31d5a3145e7e58a1b7482a83009fe3ea14a7e22ec7eab13623185294c5fee2d5c6ef38b15ee33751d419e42c48cffbf4b4c17e257cf4829086ef7da49d220a01cf40fe0d834476e495c8aefd3344979f0797488971d772449bd2154480352950e774a7e2fe7204ad0fb6d5576ff1b52dbf2ecc8ffd2b1ff9fd8669f1b8252c8506d8718649f1be022a4ed712821011b13ac1ab5914b2f211b8f4bb2988b3ff4944b062291a64e8c5c6617da9bffff80d8669f1bb4367be6f1bed3d19f489be78abb33489b59ffff1bd968ff55391e8e43ff9fd8669f1beab789eab27341f09f4a5e0caab8606d272a6b771b4059635f74042f8049abdb4b2e8381d2c0dbffffbf1b7206f8a3813bef7b1b566485e7c04eeaf94a7214594a6049e43ed3821b8246c83448e87f7bffff462d9b3d27c1bcff", + "cborBytes": [ + 159, 159, 27, 163, 228, 235, 247, 225, 147, 24, 20, 27, 196, 76, 199, 129, 40, 223, 118, 247, 191, 73, 62, 74, 89, + 4, 202, 124, 3, 71, 26, 71, 142, 240, 210, 10, 85, 159, 1, 73, 122, 211, 29, 90, 49, 69, 231, 229, 138, 27, 116, + 130, 168, 48, 9, 254, 62, 161, 74, 126, 34, 236, 126, 171, 19, 98, 49, 133, 41, 76, 95, 238, 45, 92, 110, 243, + 139, 21, 238, 51, 117, 29, 65, 158, 66, 196, 140, 255, 191, 75, 76, 23, 226, 87, 207, 72, 41, 8, 110, 247, 218, + 73, 210, 32, 160, 28, 244, 15, 224, 216, 52, 71, 110, 73, 92, 138, 239, 211, 52, 73, 121, 240, 121, 116, 136, 151, + 29, 119, 36, 73, 189, 33, 84, 72, 3, 82, 149, 14, 119, 74, 126, 47, 231, 32, 74, 208, 251, 109, 85, 118, 255, 27, + 82, 219, 242, 236, 200, 255, 210, 177, 255, 159, 216, 102, 159, 27, 130, 82, 200, 80, 109, 135, 24, 100, 159, 27, + 224, 34, 164, 237, 113, 40, 33, 1, 27, 19, 172, 26, 181, 145, 75, 47, 33, 27, 143, 75, 178, 152, 139, 63, 244, + 148, 75, 6, 34, 145, 166, 78, 140, 92, 102, 23, 218, 155, 255, 255, 128, 216, 102, 159, 27, 180, 54, 123, 230, + 241, 190, 211, 209, 159, 72, 155, 231, 138, 187, 51, 72, 155, 89, 255, 255, 27, 217, 104, 255, 85, 57, 30, 142, + 67, 255, 159, 216, 102, 159, 27, 234, 183, 137, 234, 178, 115, 65, 240, 159, 74, 94, 12, 170, 184, 96, 109, 39, + 42, 107, 119, 27, 64, 89, 99, 95, 116, 4, 47, 128, 73, 171, 219, 75, 46, 131, 129, 210, 192, 219, 255, 255, 191, + 27, 114, 6, 248, 163, 129, 59, 239, 123, 27, 86, 100, 133, 231, 192, 78, 234, 249, 74, 114, 20, 89, 74, 96, 73, + 228, 62, 211, 130, 27, 130, 70, 200, 52, 72, 232, 127, 123, 255, 255, 70, 45, 155, 61, 39, 193, 188, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2461, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "864467419544411997" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "39bb48a177d013c9" + } + ] + } + ] + }, + "cborHex": "9f1bfffffffffffffff8d8669f1b0bff3489b5d7df5d9f4839bb48a177d013c9ffffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 216, 102, 159, 27, 11, 255, 52, 137, 181, 215, 223, 93, 159, 72, + 57, 187, 72, 161, 119, 208, 19, 201, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2462, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16357190474118136775" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3310202228749895778" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2025018215175035821" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16179428686979394385" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de34" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12491003756404192877" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e97afc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7700948298708165296" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3d7a9927b10ad5500b" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ba96e36c25bf5b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11847628947962700971" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6218065051429437427" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4750874080776232022" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7500217702467498723" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3c2409ea2d28cc959" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12961306158524361710" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0eef3e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13305990762405783044" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4710f6034b7bff939" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1be3006a12753703c79fbf1b2df033638b5808621b1c1a4f5673341bad1be088e0ab242beb5142de34ff9f1bad58f5bc7c8ab66d43e97afc1b6adf43ad222622b0ff493d7a9927b10ad5500b80bf488ba96e36c25bf5b81ba46b3bc1b9f3a4abffffffbf1b564b013834b8fff31b41ee7ece25471c561b6816204335abf2e349b3c2409ea2d28cc9591bb3dfcf477bed6bee430eef3e1bb8a86019a9d3660449a4710f6034b7bff939ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 227, 0, 106, 18, 117, 55, 3, 199, 159, 191, 27, 45, 240, 51, 99, 139, 88, 8, 98, 27, 28, + 26, 79, 86, 115, 52, 27, 173, 27, 224, 136, 224, 171, 36, 43, 235, 81, 66, 222, 52, 255, 159, 27, 173, 88, 245, + 188, 124, 138, 182, 109, 67, 233, 122, 252, 27, 106, 223, 67, 173, 34, 38, 34, 176, 255, 73, 61, 122, 153, 39, + 177, 10, 213, 80, 11, 128, 191, 72, 139, 169, 110, 54, 194, 91, 245, 184, 27, 164, 107, 59, 193, 185, 243, 164, + 171, 255, 255, 255, 191, 27, 86, 75, 1, 56, 52, 184, 255, 243, 27, 65, 238, 126, 206, 37, 71, 28, 86, 27, 104, 22, + 32, 67, 53, 171, 242, 227, 73, 179, 194, 64, 158, 162, 210, 140, 201, 89, 27, 179, 223, 207, 71, 123, 237, 107, + 238, 67, 14, 239, 62, 27, 184, 168, 96, 25, 169, 211, 102, 4, 73, 164, 113, 15, 96, 52, 183, 191, 249, 57, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2463, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "94ee638d06c3" + }, + { + "_tag": "ByteArray", + "bytearray": "3032884b965c" + }, + { + "_tag": "ByteArray", + "bytearray": "117f03b0d193" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba4ecbd73c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13819614875081626842" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0703f8fa7f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f94ec001fd05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12804894961891246074" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6793676407481355304" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11509515040109777468" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8676739857887878415" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9600837883322600612" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6794488c2ec2568e9be8b661" + }, + { + "_tag": "ByteArray", + "bytearray": "7c00f9e2" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffec9f9f4694ee638d06c3463032884b965c46117f03b0d193ffbf45ba4ecbd73c1bbfc9228269f1d4da41c8450703f8fa7f46f94ec001fd051bb1b4201fe5b77ffaffd8669f1b5e47fcb2bae0cc289f1b9fba02f2eec2523c1b7869f8edede15d0f1b853d072ffd8e8ca4ffff4c6794488c2ec2568e9be8b661447c00f9e2ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 159, 70, 148, 238, 99, 141, 6, 195, 70, 48, + 50, 136, 75, 150, 92, 70, 17, 127, 3, 176, 209, 147, 255, 191, 69, 186, 78, 203, 215, 60, 27, 191, 201, 34, 130, + 105, 241, 212, 218, 65, 200, 69, 7, 3, 248, 250, 127, 70, 249, 78, 192, 1, 253, 5, 27, 177, 180, 32, 31, 229, 183, + 127, 250, 255, 216, 102, 159, 27, 94, 71, 252, 178, 186, 224, 204, 40, 159, 27, 159, 186, 2, 242, 238, 194, 82, + 60, 27, 120, 105, 248, 237, 237, 225, 93, 15, 27, 133, 61, 7, 47, 253, 142, 140, 164, 255, 255, 76, 103, 148, 72, + 140, 46, 194, 86, 142, 155, 232, 182, 97, 68, 124, 0, 249, 226, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2464, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "68f821c19fbc6287ad" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4e26ffba6f5920f97865b11b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b7c33da27a0c252e" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17597616535784972085" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10552563639408421209" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1848983354746335109" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ab958536dc" + }, + { + "_tag": "ByteArray", + "bytearray": "d2e7e8cce1348f3560" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3133494343325558186" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2279211648672763577" + } + } + ] + } + ] + }, + "cborHex": "9f4968f821c19fbc6287ad9f9f4c4e26ffba6f5920f97865b11bff48b7c33da27a0c252eff417f9fa0d8669f1bf4374b00cd00df359f1b92723cb85ca469591b19a8e8909743ef8545ab958536dc49d2e7e8cce1348f35601b2b7c6880d79da5aaffff1b1fa162eb2f128eb9ffff", + "cborBytes": [ + 159, 73, 104, 248, 33, 193, 159, 188, 98, 135, 173, 159, 159, 76, 78, 38, 255, 186, 111, 89, 32, 249, 120, 101, + 177, 27, 255, 72, 183, 195, 61, 162, 122, 12, 37, 46, 255, 65, 127, 159, 160, 216, 102, 159, 27, 244, 55, 75, 0, + 205, 0, 223, 53, 159, 27, 146, 114, 60, 184, 92, 164, 105, 89, 27, 25, 168, 232, 144, 151, 67, 239, 133, 69, 171, + 149, 133, 54, 220, 73, 210, 231, 232, 204, 225, 52, 143, 53, 96, 27, 43, 124, 104, 128, 215, 157, 165, 170, 255, + 255, 27, 31, 161, 98, 235, 47, 18, 142, 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2465, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16129824714036519271" + } + } + ] + }, + "cborHex": "9f1bdfd8a61e3176a167ff", + "cborBytes": [159, 27, 223, 216, 166, 30, 49, 118, 161, 103, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2466, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fda1" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3449147803865196732" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7798a8c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12025314355740128791" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11438389373421528045" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13040927388202486274" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3672076211320290159" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9604180334795175395" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8380703803707149654" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12601559883402155818" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8088251026423157659" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7437f70d281c4e96" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1780635849901374568" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9813655197657813704" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9312144462307648405" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1401" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01fb" + } + } + ] + } + ] + }, + "cborHex": "9f42fda19fbf1b2fddd5a73b3428bc44e7798a8c1ba6e27fb1964bb6171b9ebd52882d64a3ed1bb4faae5da378ca021b32f5d5dbd3e87b6fff0cff9f80ffd8669f1b8548e7211e4235e39fd8669f1b744e3db4e3bacd569f41be1baee1bbf2b1ff972affffd8669f1b703f3d748424139b80ff487437f70d281c4e96ffffbf1b18b616df0bb27c6841001b88311b68448f52c81b813b620cf4f7e3951bfffffffffffffff04214011bfffffffffffffffb4201fbffff", + "cborBytes": [ + 159, 66, 253, 161, 159, 191, 27, 47, 221, 213, 167, 59, 52, 40, 188, 68, 231, 121, 138, 140, 27, 166, 226, 127, + 177, 150, 75, 182, 23, 27, 158, 189, 82, 136, 45, 100, 163, 237, 27, 180, 250, 174, 93, 163, 120, 202, 2, 27, 50, + 245, 213, 219, 211, 232, 123, 111, 255, 12, 255, 159, 128, 255, 216, 102, 159, 27, 133, 72, 231, 33, 30, 66, 53, + 227, 159, 216, 102, 159, 27, 116, 78, 61, 180, 227, 186, 205, 86, 159, 65, 190, 27, 174, 225, 187, 242, 177, 255, + 151, 42, 255, 255, 216, 102, 159, 27, 112, 63, 61, 116, 132, 36, 19, 155, 128, 255, 72, 116, 55, 247, 13, 40, 28, + 78, 150, 255, 255, 191, 27, 24, 182, 22, 223, 11, 178, 124, 104, 65, 0, 27, 136, 49, 27, 104, 68, 143, 82, 200, + 27, 129, 59, 98, 12, 244, 247, 227, 149, 27, 255, 255, 255, 255, 255, 255, 255, 240, 66, 20, 1, 27, 255, 255, 255, + 255, 255, 255, 255, 251, 66, 1, 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2467, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8465" + }, + { + "_tag": "ByteArray", + "bytearray": "0201fd44bf49b31896c7013e" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3a8327948f9b" + }, + { + "_tag": "ByteArray", + "bytearray": "a2" + }, + { + "_tag": "ByteArray", + "bytearray": "0eac622360" + } + ] + }, + "cborHex": "9f9f4284654c0201fd44bf49b31896c7013eff463a8327948f9b41a2450eac622360ff", + "cborBytes": [ + 159, 159, 66, 132, 101, 76, 2, 1, 253, 68, 191, 73, 179, 24, 150, 199, 1, 62, 255, 70, 58, 131, 39, 148, 143, 155, + 65, 162, 69, 14, 172, 98, 35, 96, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2468, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8478423533732038422" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16150633545678447441" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8799f9f1b75a9694887690716ffffd8669f1be02293a3dbabe35180ffff", + "cborBytes": [ + 159, 216, 121, 159, 159, 27, 117, 169, 105, 72, 135, 105, 7, 22, 255, 255, 216, 102, 159, 27, 224, 34, 147, 163, + 219, 171, 227, 81, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2469, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7246075180705962496" + } + } + ] + }, + "cborHex": "9f1b648f3afc49c0da00ff", + "cborBytes": [159, 27, 100, 143, 58, 252, 73, 192, 218, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2470, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8daf892dea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + ] + }, + "cborHex": "9f458daf892dea1bfffffffffffffff1ff", + "cborBytes": [159, 69, 141, 175, 137, 45, 234, 27, 255, 255, 255, 255, 255, 255, 255, 241, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2471, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "88" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9074070036041667737" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9c77fcb14362919791d82d4b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "792088029749660212" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3743900941366570074" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e28" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8739131108847689666" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7eca93d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16752438369983575780" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17490958069753694084" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16827282167746105366" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "330c2559485102ff" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "21258b77040063c81734d6" + } + ] + } + ] + }, + "cborHex": "9f41881b7ded929f0d4794999f9f4c9c77fcb14362919791d82d4b1b0afe0fddcc114a34ffbf1b33f50211f467ac5a426e281b7947a1710c6e9fc244d7eca93d1be87c9df0747eb6e41bf2bc5db180ebc7841be98683fa0fc5901648330c2559485102ffff804b21258b77040063c81734d6ffff", + "cborBytes": [ + 159, 65, 136, 27, 125, 237, 146, 159, 13, 71, 148, 153, 159, 159, 76, 156, 119, 252, 177, 67, 98, 145, 151, 145, + 216, 45, 75, 27, 10, 254, 15, 221, 204, 17, 74, 52, 255, 191, 27, 51, 245, 2, 17, 244, 103, 172, 90, 66, 110, 40, + 27, 121, 71, 161, 113, 12, 110, 159, 194, 68, 215, 236, 169, 61, 27, 232, 124, 157, 240, 116, 126, 182, 228, 27, + 242, 188, 93, 177, 128, 235, 199, 132, 27, 233, 134, 131, 250, 15, 197, 144, 22, 72, 51, 12, 37, 89, 72, 81, 2, + 255, 255, 128, 75, 33, 37, 139, 119, 4, 0, 99, 200, 23, 52, 214, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2472, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "736254410647290691" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10238545041643239638" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14823715240021223003" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10278916182461307201" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14122655515937544181" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16317443919924848629" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e01c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18198622499274998500" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd2412d33f096c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7f94eabdf232c7" + }, + { + "_tag": "ByteArray", + "bytearray": "e9f234dcff7719" + }, + { + "_tag": "ByteArray", + "bytearray": "eb37a5303cea1bb15ff4b7cf" + }, + { + "_tag": "ByteArray", + "bytearray": "5a0e6d9980fa" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "67da52" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4501021989884908493" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "227b3176584b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5bfea78da299f4b2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a15dfd37c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b757a86df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e384b60bf9fbc41996aab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10119788041048252826" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9005db24" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10054138100663785823" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2f4dc78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17904621723637021686" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d77715fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3ff1965" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bc989dec04b60031c0e019c5" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f9fa0bf1b0a37b37c52f24343414f1b8e169e781ffb78d61bcdb86a78ad02665b1b8ea60bced39ed94141221bc3fdc05de0ab17f541801be27334caa97a67f5433e01c11bfc8e7ebe1eb7c2e447fd2412d33f096cff9f477f94eabdf232c747e9f234dcff77194ceb37a5303cea1bb15ff4b7cf465a0e6d9980faffbf4367da521b3e76d7a7014fd3cdffffbf46227b3176584b485bfea78da299f4b2452a15dfd37c454b757a86df4b4e384b60bf9fbc41996aab1b8c70b59b3ced619a449005db241b8b8779555cc9195f44b2f4dc781bf879fe984b207bf644d77715fa44e3ff1965ff4cbc989dec04b60031c0e019c5a0ff", + "cborBytes": [ + 159, 159, 160, 191, 27, 10, 55, 179, 124, 82, 242, 67, 67, 65, 79, 27, 142, 22, 158, 120, 31, 251, 120, 214, 27, + 205, 184, 106, 120, 173, 2, 102, 91, 27, 142, 166, 11, 206, 211, 158, 217, 65, 65, 34, 27, 195, 253, 192, 93, 224, + 171, 23, 245, 65, 128, 27, 226, 115, 52, 202, 169, 122, 103, 245, 67, 62, 1, 193, 27, 252, 142, 126, 190, 30, 183, + 194, 228, 71, 253, 36, 18, 211, 63, 9, 108, 255, 159, 71, 127, 148, 234, 189, 242, 50, 199, 71, 233, 242, 52, 220, + 255, 119, 25, 76, 235, 55, 165, 48, 60, 234, 27, 177, 95, 244, 183, 207, 70, 90, 14, 109, 153, 128, 250, 255, 191, + 67, 103, 218, 82, 27, 62, 118, 215, 167, 1, 79, 211, 205, 255, 255, 191, 70, 34, 123, 49, 118, 88, 75, 72, 91, + 254, 167, 141, 162, 153, 244, 178, 69, 42, 21, 223, 211, 124, 69, 75, 117, 122, 134, 223, 75, 78, 56, 75, 96, 191, + 159, 188, 65, 153, 106, 171, 27, 140, 112, 181, 155, 60, 237, 97, 154, 68, 144, 5, 219, 36, 27, 139, 135, 121, 85, + 92, 201, 25, 95, 68, 178, 244, 220, 120, 27, 248, 121, 254, 152, 75, 32, 123, 246, 68, 215, 119, 21, 250, 68, 227, + 255, 25, 101, 255, 76, 188, 152, 157, 236, 4, 182, 0, 49, 192, 224, 25, 197, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2473, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8235578905505771146" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12049309812486260444" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "493f1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17417424353557159840" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7fe5a03d62498160dff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c455512d733b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "da" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6901887579813780511" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "efe9e20ced5890" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5625311644051784461" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13799367176257871025" + } + }, + { + "_tag": "ByteArray", + "bytearray": "be27072ca2a2d1a9799dbf26" + }, + { + "_tag": "ByteArray", + "bytearray": "dbe9b6b11ba57f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a4" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13549958211096223679" + } + } + ] + }, + "cborHex": "9fbf1b724aa7616e5f2e8a1ba737bf6f39df46dc43493f1e1bf1b71f2b08031fa04af7fe5a03d62498160dff46c455512d733bff9f41dad8669f1b5fc86e2fa27b1c1f9f47efe9e20ced58901b4e111f22d693430d1bbf813355aa091cb14cbe27072ca2a2d1a9799dbf2647dbe9b6b11ba57fffff41a4ff1bbc0b1f33c5c71fbfff", + "cborBytes": [ + 159, 191, 27, 114, 74, 167, 97, 110, 95, 46, 138, 27, 167, 55, 191, 111, 57, 223, 70, 220, 67, 73, 63, 30, 27, + 241, 183, 31, 43, 8, 3, 31, 160, 74, 247, 254, 90, 3, 214, 36, 152, 22, 13, 255, 70, 196, 85, 81, 45, 115, 59, + 255, 159, 65, 218, 216, 102, 159, 27, 95, 200, 110, 47, 162, 123, 28, 31, 159, 71, 239, 233, 226, 12, 237, 88, + 144, 27, 78, 17, 31, 34, 214, 147, 67, 13, 27, 191, 129, 51, 85, 170, 9, 28, 177, 76, 190, 39, 7, 44, 162, 162, + 209, 169, 121, 157, 191, 38, 71, 219, 233, 182, 177, 27, 165, 127, 255, 255, 65, 164, 255, 27, 188, 11, 31, 51, + 197, 199, 31, 191, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2474, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1039845809822637141" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd2d4f85d8df" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10558720960312141477" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a340b13d1a353e9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a1a2378d2c1492c0932" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2db79b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a53f3f6c655f7f88dd4654c7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "635254a39b2f0b2115e95612" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2252487393622763911" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1572956337016263726" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10252312481282987157" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14244225343591992408" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4211303366276471620" + } + }, + { + "_tag": "ByteArray", + "bytearray": "82" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2340053654179669641" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d69cb10ba1cd206db39c7e" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14536019306371239501" + } + } + ] + }, + "cborHex": "9fbf1b0e6e464133a81c5546dd2d4f85d8df1b92881cc559e066a5489a340b13d1a353e94a6a1a2378d2c1492c0932432db79b4ca53f3f6c655f7f88dd4654c74c635254a39b2f0b2115e95612ffd8669f1b1f427159adee298780ff1b15d44374630dd42ed8669f1b8e4787e1f52d14959fd8669f1bc5ada77b196acc589f1b3a718e196450db4441821b20798a667cbbe6894bd69cb10ba1cd206db39c7effffffff1bc9ba508b447a4e4dff", + "cborBytes": [ + 159, 191, 27, 14, 110, 70, 65, 51, 168, 28, 85, 70, 221, 45, 79, 133, 216, 223, 27, 146, 136, 28, 197, 89, 224, + 102, 165, 72, 154, 52, 11, 19, 209, 163, 83, 233, 74, 106, 26, 35, 120, 210, 193, 73, 44, 9, 50, 67, 45, 183, 155, + 76, 165, 63, 63, 108, 101, 95, 127, 136, 221, 70, 84, 199, 76, 99, 82, 84, 163, 155, 47, 11, 33, 21, 233, 86, 18, + 255, 216, 102, 159, 27, 31, 66, 113, 89, 173, 238, 41, 135, 128, 255, 27, 21, 212, 67, 116, 99, 13, 212, 46, 216, + 102, 159, 27, 142, 71, 135, 225, 245, 45, 20, 149, 159, 216, 102, 159, 27, 197, 173, 167, 123, 25, 106, 204, 88, + 159, 27, 58, 113, 142, 25, 100, 80, 219, 68, 65, 130, 27, 32, 121, 138, 102, 124, 187, 230, 137, 75, 214, 156, + 177, 11, 161, 205, 32, 109, 179, 156, 126, 255, 255, 255, 255, 27, 201, 186, 80, 139, 68, 122, 78, 77, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2475, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1bc1e8189c4441d08a433d01" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2935263583271141837" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18359034675011514484" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7723685693461364395" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf8d32c170b5151a6e57d975" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9814040682124070444" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6386696526040966130" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15407776846825873582" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17389147266781726672" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f16c7fc1891055" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "439ed0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10826716420719668754" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16936954062986877100" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17660261853103347496" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4e40" + }, + { + "_tag": "ByteArray", + "bytearray": "890dfa26710e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17041024539054507364" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7db471199b2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23a135981de8e53fa661a2aa" + } + } + ] + } + ] + }, + "cborHex": "9f4c1bc1e8189c4441d08a433d01bf1b28bc26ad630441cd1bfec864c43f23f0741b6b300b376387feab4cbf8d32c170b5151a6e57d9751b88327a00dd3cce2c1b58a21aa6fae4a3f21bd5d36b68858b60ae1bf152a94eb77ac7d0ff47f16c7fc18910559f43439ed01b96403938e4e26e12d8669f1beb0c25fc057118ac80ffd8669f1bf515da965a9b57289f424e4046890dfa26710e1bec7de187f30f0564ffffffbf46f7db471199b24c23a135981de8e53fa661a2aaffff", + "cborBytes": [ + 159, 76, 27, 193, 232, 24, 156, 68, 65, 208, 138, 67, 61, 1, 191, 27, 40, 188, 38, 173, 99, 4, 65, 205, 27, 254, + 200, 100, 196, 63, 35, 240, 116, 27, 107, 48, 11, 55, 99, 135, 254, 171, 76, 191, 141, 50, 193, 112, 181, 21, 26, + 110, 87, 217, 117, 27, 136, 50, 122, 0, 221, 60, 206, 44, 27, 88, 162, 26, 166, 250, 228, 163, 242, 27, 213, 211, + 107, 104, 133, 139, 96, 174, 27, 241, 82, 169, 78, 183, 122, 199, 208, 255, 71, 241, 108, 127, 193, 137, 16, 85, + 159, 67, 67, 158, 208, 27, 150, 64, 57, 56, 228, 226, 110, 18, 216, 102, 159, 27, 235, 12, 37, 252, 5, 113, 24, + 172, 128, 255, 216, 102, 159, 27, 245, 21, 218, 150, 90, 155, 87, 40, 159, 66, 78, 64, 70, 137, 13, 250, 38, 113, + 14, 27, 236, 125, 225, 135, 243, 15, 5, 100, 255, 255, 255, 191, 70, 247, 219, 71, 17, 153, 178, 76, 35, 161, 53, + 152, 29, 232, 229, 63, 166, 97, 162, 170, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2476, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0432d2" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7637038242814454357" + } + } + ] + } + ] + }, + "cborHex": "9f0f430432d29f1b69fc35d1af076a55ffff", + "cborBytes": [159, 15, 67, 4, 50, 210, 159, 27, 105, 252, 53, 209, 175, 7, 106, 85, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2477, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13682419965912790664" + } + } + ] + }, + "cborHex": "9f1bbde1b87767f1b688ff", + "cborBytes": [159, 27, 189, 225, 184, 119, 103, 241, 182, 136, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2478, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6104717715500108046" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13673070359500489948" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12331189996969128865" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5941836362322326677" + } + } + } + ] + } + ] + }, + "cborHex": "9fa0bf1b54b8506b066b090e1bbdc0810c86f304dc1bab212ff80331f3a11b5275a4b0b9b8b495ffff", + "cborBytes": [ + 159, 160, 191, 27, 84, 184, 80, 107, 6, 107, 9, 14, 27, 189, 192, 129, 12, 134, 243, 4, 220, 27, 171, 33, 47, 248, + 3, 49, 243, 161, 27, 82, 117, 164, 176, 185, 184, 180, 149, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2479, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c0cf7b05219" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2513" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c94fdadbece7a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "421504882518061736" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3623782774580758039" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4924353772166461053" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8366562801202198418" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10709723106218107078" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9368982419077204169" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6342092176691048465" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12110561719589909719" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10808576692438762400" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11775303534933083314" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17102369952956678980" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ed630a35abcb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7262153948793787069" + } + } + ] + } + ] + }, + "cborHex": "9fbf465c0cf7b0521942251347c94fdadbece7a441dfff1b05d97c751994f2a8bf1b324a433bde10c6171b4456d1aa5a56367d1b741c008a2ca777921b94a0946c2cec60c61b82054fdf03fa08c91b5803a33b9c7430111ba8115bb82e99b4d71b95ffc73c486103a0ffd8669f1ba36a482d421684b29f1bed57d2dc274c03448046ed630a35abcb1b64c85a8a360dd2bdffffff", + "cborBytes": [ + 159, 191, 70, 92, 12, 247, 176, 82, 25, 66, 37, 19, 71, 201, 79, 218, 219, 236, 231, 164, 65, 223, 255, 27, 5, + 217, 124, 117, 25, 148, 242, 168, 191, 27, 50, 74, 67, 59, 222, 16, 198, 23, 27, 68, 86, 209, 170, 90, 86, 54, + 125, 27, 116, 28, 0, 138, 44, 167, 119, 146, 27, 148, 160, 148, 108, 44, 236, 96, 198, 27, 130, 5, 79, 223, 3, + 250, 8, 201, 27, 88, 3, 163, 59, 156, 116, 48, 17, 27, 168, 17, 91, 184, 46, 153, 180, 215, 27, 149, 255, 199, 60, + 72, 97, 3, 160, 255, 216, 102, 159, 27, 163, 106, 72, 45, 66, 22, 132, 178, 159, 27, 237, 87, 210, 220, 39, 76, 3, + 68, 128, 70, 237, 99, 10, 53, 171, 203, 27, 100, 200, 90, 138, 54, 13, 210, 189, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2480, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13188303211195980185" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10653229441295845787" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "86fac01447d9" + }, + { + "_tag": "ByteArray", + "bytearray": "dd35" + }, + { + "_tag": "ByteArray", + "bytearray": "a3e0b795d359780112ca" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7970259549678215994" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9593994802251061901" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9546474022895001084" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2897084917953669199" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17491782901994308628" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12113924331877432243" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17846291430588459554" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13788754435040749319" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "10097df68aa780a5c0d5d5" + } + ] + }, + "cborHex": "9fd8669f1bb70643e55d7ad9999fd8669f1b93d7dfbbcf2c099b9f4686fac01447d942dd354aa3e0b795d359780112caffffffffbf1b6e9c0cd50a3c233a1b8524b771051e5a8d1b847be38b60269dfc1b283483622ac5284f1bf2bf4bdfb99f44141ba81d4dff5d83fbb31bf7aac3809e52aa221bbf5b7f1a4bb22707ff4b10097df68aa780a5c0d5d5ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 183, 6, 67, 229, 93, 122, 217, 153, 159, 216, 102, 159, 27, 147, 215, 223, 187, 207, 44, + 9, 155, 159, 70, 134, 250, 192, 20, 71, 217, 66, 221, 53, 74, 163, 224, 183, 149, 211, 89, 120, 1, 18, 202, 255, + 255, 255, 255, 191, 27, 110, 156, 12, 213, 10, 60, 35, 58, 27, 133, 36, 183, 113, 5, 30, 90, 141, 27, 132, 123, + 227, 139, 96, 38, 157, 252, 27, 40, 52, 131, 98, 42, 197, 40, 79, 27, 242, 191, 75, 223, 185, 159, 68, 20, 27, + 168, 29, 77, 255, 93, 131, 251, 179, 27, 247, 170, 195, 128, 158, 82, 170, 34, 27, 191, 91, 127, 26, 75, 178, 39, + 7, 255, 75, 16, 9, 125, 246, 138, 167, 128, 165, 192, 213, 213, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2481, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11784767449598035374" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6f5c6f9ca60fe9a821774faf" + }, + { + "_tag": "ByteArray", + "bytearray": "31dbe9e09eb1caaf44" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1560072084043317785" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11696084357587909056" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11225513314214183448" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c978d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a7d8cc0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8793361663455236252" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1ba38be78e99e085ae9f4c6f5c6f9ca60fe9a821774faf4931dbe9e09eb1caaf44ffff1b15a67d4b7967c219ff1ba250d6c13507b9c0bf1b9bc908e24b278218435c978d446a7d8cc01b7a084bd7fbc9909cffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 163, 139, 231, 142, 153, 224, 133, 174, 159, 76, 111, 92, 111, 156, 166, 15, 233, + 168, 33, 119, 79, 175, 73, 49, 219, 233, 224, 158, 177, 202, 175, 68, 255, 255, 27, 21, 166, 125, 75, 121, 103, + 194, 25, 255, 27, 162, 80, 214, 193, 53, 7, 185, 192, 191, 27, 155, 201, 8, 226, 75, 39, 130, 24, 67, 92, 151, + 141, 68, 106, 125, 140, 192, 27, 122, 8, 75, 215, 251, 201, 144, 156, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2482, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7369f4f794" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7176871212039312515" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c9be62a22f127d62d971" + }, + { + "_tag": "ByteArray", + "bytearray": "c58093ece2" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1855" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6327430776787927345" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18e74fd89f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5f7eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13552469871958930295" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f0c6d8" + }, + { + "_tag": "ByteArray", + "bytearray": "a7220a61f1e51fa243" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1840247fff" + } + ] + }, + "cborHex": "9f0f9f457369f4f794d8669f1b63995e57b85494839f4ac9be62a22f127d62d97145c58093ece2ffffbf4218551b57cf8cc46f5181314518e74fd89f418143d5f7eb1bbc140b8b634bb377ff43f0c6d849a7220a61f1e51fa243ff451840247fffff", + "cborBytes": [ + 159, 15, 159, 69, 115, 105, 244, 247, 148, 216, 102, 159, 27, 99, 153, 94, 87, 184, 84, 148, 131, 159, 74, 201, + 190, 98, 162, 47, 18, 125, 98, 217, 113, 69, 197, 128, 147, 236, 226, 255, 255, 191, 66, 24, 85, 27, 87, 207, 140, + 196, 111, 81, 129, 49, 69, 24, 231, 79, 216, 159, 65, 129, 67, 213, 247, 235, 27, 188, 20, 11, 139, 99, 75, 179, + 119, 255, 67, 240, 198, 216, 73, 167, 34, 10, 97, 241, 229, 31, 162, 67, 255, 69, 24, 64, 36, 127, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2483, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4510684321798228131" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bd9fc4d49ed74262f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6420265154210455575" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1544515676032167971" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b7838cadee389851e1055" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8563670307788318153" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f284b583793c77acb5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6076352497677736533" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b5faf1bcde98e637" + }, + { + "_tag": "ByteArray", + "bytearray": "e9dcc9fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10835358423757068299" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2cfaf0ad26fa9d4b6924c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11460817086353648184" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35fc9612" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16710246512310297868" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ff200a625191f1b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6421594180901268354" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1650641302c776a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "320303350372724366" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9d926" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c13c7668a142" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efe26a589a3c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16546123146686556333" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "750835178058052947" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17067718448276782513" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eab71367bf1df1483a7c" + }, + { + "_tag": "ByteArray", + "bytearray": "6d71" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6507708555367348693" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9629613141234182123" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1168125367548359983" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9310794147434371239" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8835602653838192028" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5330006443943634953" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11836655820104027764" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ed0bb1ae8912e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13111787589282945740" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3988" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13279361580523579380" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13610087234983767190" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3621487088089705138" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "631160614428666602" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e834087" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4891600241984679207" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac7339" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6338825433466324887" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8342026912712616901" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9540229057156208440" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1516" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15264426837970595328" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1593021218937667969" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16946980761657854660" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14635113567982098240" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4573289741421969178" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d75465769605683b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74d30722af7db9f876d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66cdde" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b3e992b7df6b508a3497bd9fc4d49ed74262f1b59195d24488860171b156f38d2fbeb70234b3b7838cadee389851e10551b76d844c5cd4865c949f284b583793c77acb51b54538a671a239a55ff9f48b5faf1bcde98e63744e9dcc9fb1b965eed140613980bbf4b2cfaf0ad26fa9d4b6924c61b9f0d006b03d62a384435fc96121be7e6b8ab1377250c483ff200a625191f1b1b591e15e26c55eb8248d1650641302c776a1b0471f2333b556e8e43e9d92646c13c7668a14246efe26a589a3c1be59fa356381ee8adffff9fd8669f1b0a6b809dc904755380ff9f1becdcb78003eb3db14aeab71367bf1df1483a7c426d711b5a500673a870f9d5ff1b85a34221cfb267ebbf1b103603d531d7b52f1b813695f2469c98a71b7a9e5dccf6862d9c1b49f7fc9f05cda8091ba4443fc14ddc4e74478ed0bb1ae8912e1bb5f66d57dd95dacc4239881bb849c5001b13e7f41bbce0be3b1b492c96ff1b32421b51b4402ab2ffbf1b08c2553c1b3ceaea447e8340871b43e27480d6b62d2743ac73391b57f80825aef8c7971b73c4d54776fbebc51b8465b3c7fba7d7384215161bd3d62355b12d2e001b161b8c5bc27081811beb2fc536b9fecac41bcb1a5e3ffb129740ffbf1b3f7796ca1c64ff1a48d75465769605683b4a74d30722af7db9f876d84366cddeffff", + "cborBytes": [ + 159, 191, 27, 62, 153, 43, 125, 246, 181, 8, 163, 73, 123, 217, 252, 77, 73, 237, 116, 38, 47, 27, 89, 25, 93, 36, + 72, 136, 96, 23, 27, 21, 111, 56, 210, 251, 235, 112, 35, 75, 59, 120, 56, 202, 222, 227, 137, 133, 30, 16, 85, + 27, 118, 216, 68, 197, 205, 72, 101, 201, 73, 242, 132, 181, 131, 121, 60, 119, 172, 181, 27, 84, 83, 138, 103, + 26, 35, 154, 85, 255, 159, 72, 181, 250, 241, 188, 222, 152, 230, 55, 68, 233, 220, 201, 251, 27, 150, 94, 237, + 20, 6, 19, 152, 11, 191, 75, 44, 250, 240, 173, 38, 250, 157, 75, 105, 36, 198, 27, 159, 13, 0, 107, 3, 214, 42, + 56, 68, 53, 252, 150, 18, 27, 231, 230, 184, 171, 19, 119, 37, 12, 72, 63, 242, 0, 166, 37, 25, 31, 27, 27, 89, + 30, 21, 226, 108, 85, 235, 130, 72, 209, 101, 6, 65, 48, 44, 119, 106, 27, 4, 113, 242, 51, 59, 85, 110, 142, 67, + 233, 217, 38, 70, 193, 60, 118, 104, 161, 66, 70, 239, 226, 106, 88, 154, 60, 27, 229, 159, 163, 86, 56, 30, 232, + 173, 255, 255, 159, 216, 102, 159, 27, 10, 107, 128, 157, 201, 4, 117, 83, 128, 255, 159, 27, 236, 220, 183, 128, + 3, 235, 61, 177, 74, 234, 183, 19, 103, 191, 29, 241, 72, 58, 124, 66, 109, 113, 27, 90, 80, 6, 115, 168, 112, + 249, 213, 255, 27, 133, 163, 66, 33, 207, 178, 103, 235, 191, 27, 16, 54, 3, 213, 49, 215, 181, 47, 27, 129, 54, + 149, 242, 70, 156, 152, 167, 27, 122, 158, 93, 204, 246, 134, 45, 156, 27, 73, 247, 252, 159, 5, 205, 168, 9, 27, + 164, 68, 63, 193, 77, 220, 78, 116, 71, 142, 208, 187, 26, 232, 145, 46, 27, 181, 246, 109, 87, 221, 149, 218, + 204, 66, 57, 136, 27, 184, 73, 197, 0, 27, 19, 231, 244, 27, 188, 224, 190, 59, 27, 73, 44, 150, 255, 27, 50, 66, + 27, 81, 180, 64, 42, 178, 255, 191, 27, 8, 194, 85, 60, 27, 60, 234, 234, 68, 126, 131, 64, 135, 27, 67, 226, 116, + 128, 214, 182, 45, 39, 67, 172, 115, 57, 27, 87, 248, 8, 37, 174, 248, 199, 151, 27, 115, 196, 213, 71, 118, 251, + 235, 197, 27, 132, 101, 179, 199, 251, 167, 215, 56, 66, 21, 22, 27, 211, 214, 35, 85, 177, 45, 46, 0, 27, 22, 27, + 140, 91, 194, 112, 129, 129, 27, 235, 47, 197, 54, 185, 254, 202, 196, 27, 203, 26, 94, 63, 251, 18, 151, 64, 255, + 191, 27, 63, 119, 150, 202, 28, 100, 255, 26, 72, 215, 84, 101, 118, 150, 5, 104, 59, 74, 116, 211, 7, 34, 175, + 125, 185, 248, 118, 216, 67, 102, 205, 222, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2484, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5771801106687425759" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "489a3674ca3fb451ba3709" + }, + { + "_tag": "ByteArray", + "bytearray": "40149a2d600373e696" + }, + { + "_tag": "ByteArray", + "bytearray": "ab6afc3bdf609e6b81f7" + }, + { + "_tag": "ByteArray", + "bytearray": "b9125e198c0d03b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3521349113172374436" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5193de6bb761" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ca3a63c2265" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a50f7b7b0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5302607193" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd52c72a758463e5b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d87b2aeda3dcb8737940a3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2677408006f3" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6661296569407387095" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d67504fc05b0395" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b50198e86b64f7cdf9f4b489a3674ca3fb451ba37094940149a2d600373e6964aab6afc3bdf609e6b81f748b9125e198c0d03b61b30de585c8cc6b3a4ffffbf4109465193de6bb761463ca3a63c2265459a50f7b7b045530260719349cd52c72a758463e5b94bd87b2aeda3dcb8737940a3462677408006f3ff1b5c71adefd30e35d780bf031bfffffffffffffff8487d67504fc05b03954106ffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 80, 25, 142, 134, 182, 79, 124, 223, 159, 75, 72, 154, 54, 116, 202, 63, 180, 81, + 186, 55, 9, 73, 64, 20, 154, 45, 96, 3, 115, 230, 150, 74, 171, 106, 252, 59, 223, 96, 158, 107, 129, 247, 72, + 185, 18, 94, 25, 140, 13, 3, 182, 27, 48, 222, 88, 92, 140, 198, 179, 164, 255, 255, 191, 65, 9, 70, 81, 147, 222, + 107, 183, 97, 70, 60, 163, 166, 60, 34, 101, 69, 154, 80, 247, 183, 176, 69, 83, 2, 96, 113, 147, 73, 205, 82, + 199, 42, 117, 132, 99, 229, 185, 75, 216, 123, 42, 237, 163, 220, 184, 115, 121, 64, 163, 70, 38, 119, 64, 128, 6, + 243, 255, 27, 92, 113, 173, 239, 211, 14, 53, 215, 128, 191, 3, 27, 255, 255, 255, 255, 255, 255, 255, 248, 72, + 125, 103, 80, 79, 192, 91, 3, 149, 65, 6, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2485, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "474584227813441601" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9495595cbe8a7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16369821733303133620" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10268022824739275191" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14260814619033348423" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17871723661334392245" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4a944a31ccbf0414bcb5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5516048032886144186" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c217fcfd31c536ece6a736" + } + ] + }, + "cborHex": "9fd8669f1b06960fd73ad2c0419f9f479495595cbe8a7c1be32d4a22aa00a5b4ffbf1b8e7f585b563001b741391bc5e89756c72e29471bf8051dfb45c7adb54bf4a944a31ccbf0414bcb5c1b4c8cf075ec2bbcbaffffff4bc217fcfd31c536ece6a736ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 6, 150, 15, 215, 58, 210, 192, 65, 159, 159, 71, 148, 149, 89, 92, 190, 138, 124, 27, 227, + 45, 74, 34, 170, 0, 165, 180, 255, 191, 27, 142, 127, 88, 91, 86, 48, 1, 183, 65, 57, 27, 197, 232, 151, 86, 199, + 46, 41, 71, 27, 248, 5, 29, 251, 69, 199, 173, 181, 75, 244, 169, 68, 163, 28, 203, 240, 65, 75, 203, 92, 27, 76, + 140, 240, 117, 236, 43, 188, 186, 255, 255, 255, 75, 194, 23, 252, 253, 49, 197, 54, 236, 230, 167, 54, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2486, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7785247723189729337" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13803098147960856099" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b800f80b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e745c3218aea2ec02e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9064327321434934737" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f8f7f867f24d7c6bd6a68" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "622d9a41150f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f70d26afdb3c79b411" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a25703" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "acaaf2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "350315482120124170" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e17cf09c81bba132c0bef6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bca6599f49d6c13a" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8226184347057416497" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c18746e26" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d17d4d7f4ff76ad79159" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3858964a9e679" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1366850913255582425" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "51f813092594b43139" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d584c7c00ebbd6a294c8d91" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b6c0ac18e6524783980ffd8669f1bbf8e74a2350f1e239f1bffffffffffffffed44b800f80bffff49e745c3218aea2ec02ed8669f1b7dcaf5ac89ff4dd180ffbf41024b6f8f7f867f24d7c6bd6a6846622d9a41150f49f70d26afdb3c79b41143a257031bfffffffffffffff443acaaf21b04dc92132f16f70a42be011bffffffffffffffee4be17cf09c81bba132c0bef648bca6599f49d6c13affffd8669f1b72294714573c693180ffbf454c18746e264ad17d4d7f4ff76ad7915947e3858964a9e6791b12f807a9e9846ad9ffbf4951f813092594b431394c1d584c7c00ebbd6a294c8d91ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 108, 10, 193, 142, 101, 36, 120, 57, 128, 255, 216, 102, 159, 27, 191, 142, 116, 162, + 53, 15, 30, 35, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 68, 184, 0, 248, 11, 255, 255, 73, 231, 69, 195, + 33, 138, 234, 46, 192, 46, 216, 102, 159, 27, 125, 202, 245, 172, 137, 255, 77, 209, 128, 255, 191, 65, 2, 75, + 111, 143, 127, 134, 127, 36, 215, 198, 189, 106, 104, 70, 98, 45, 154, 65, 21, 15, 73, 247, 13, 38, 175, 219, 60, + 121, 180, 17, 67, 162, 87, 3, 27, 255, 255, 255, 255, 255, 255, 255, 244, 67, 172, 170, 242, 27, 4, 220, 146, 19, + 47, 22, 247, 10, 66, 190, 1, 27, 255, 255, 255, 255, 255, 255, 255, 238, 75, 225, 124, 240, 156, 129, 187, 161, + 50, 192, 190, 246, 72, 188, 166, 89, 159, 73, 214, 193, 58, 255, 255, 216, 102, 159, 27, 114, 41, 71, 20, 87, 60, + 105, 49, 128, 255, 191, 69, 76, 24, 116, 110, 38, 74, 209, 125, 77, 127, 79, 247, 106, 215, 145, 89, 71, 227, 133, + 137, 100, 169, 230, 121, 27, 18, 248, 7, 169, 233, 132, 106, 217, 255, 191, 73, 81, 248, 19, 9, 37, 148, 180, 49, + 57, 76, 29, 88, 76, 124, 0, 235, 189, 106, 41, 76, 141, 145, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2487, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6c67f31c281a0f34caa5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6370392886402872818" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3301214809161218769" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9619057373750986708" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6452332196321924833" + } + } + ] + }, + "cborHex": "9f4a6c67f31c281a0f34caa5d8669f1b58682e9411b7f5f29f1b2dd04560db503ad1ffff1b857dc1b7ac8787d41b598b49f2569596e1ff", + "cborBytes": [ + 159, 74, 108, 103, 243, 28, 40, 26, 15, 52, 202, 165, 216, 102, 159, 27, 88, 104, 46, 148, 17, 183, 245, 242, 159, + 27, 45, 208, 69, 96, 219, 80, 58, 209, 255, 255, 27, 133, 125, 193, 183, 172, 135, 135, 212, 27, 89, 139, 73, 242, + 86, 149, 150, 225, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2488, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1916610413779438913" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11039323432691882416" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ad1d0946f49f6448a7" + }, + { + "_tag": "ByteArray", + "bytearray": "05" + }, + { + "_tag": "ByteArray", + "bytearray": "e63d" + }, + { + "_tag": "ByteArray", + "bytearray": "d93b9a7e919d7878b775" + }, + { + "_tag": "ByteArray", + "bytearray": "58fac066" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3211358993271904276" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b1fc3c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13538248071565109987" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11242882870458190820" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0e0a74a1" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16689798921064440939" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3b87d89c663df704f52ae0ec" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17548721205265320434" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6073699106344865107" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1a992b0446234d419fa0d8669f1b99338e2c563ed9b09f49ad1d0946f49f6448a7410542e63d4ad93b9a7e919d7878b7754458fac066ffffd8669f1b2c9109fd683a58149f43b1fc3c1bbbe184e472c16ae31b9c06be6740fc0be4440e0a74a1ffffffffd8669f1be79e13b13ebe646b9f9f4c3b87d89c663df704f52ae0ec1bf38994f5863449f21b544a1d284a4b0d53ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 26, 153, 43, 4, 70, 35, 77, 65, 159, 160, 216, 102, 159, 27, 153, 51, 142, 44, 86, 62, + 217, 176, 159, 73, 173, 29, 9, 70, 244, 159, 100, 72, 167, 65, 5, 66, 230, 61, 74, 217, 59, 154, 126, 145, 157, + 120, 120, 183, 117, 68, 88, 250, 192, 102, 255, 255, 216, 102, 159, 27, 44, 145, 9, 253, 104, 58, 88, 20, 159, 67, + 177, 252, 60, 27, 187, 225, 132, 228, 114, 193, 106, 227, 27, 156, 6, 190, 103, 64, 252, 11, 228, 68, 14, 10, 116, + 161, 255, 255, 255, 255, 216, 102, 159, 27, 231, 158, 19, 177, 62, 190, 100, 107, 159, 159, 76, 59, 135, 216, 156, + 102, 61, 247, 4, 245, 42, 224, 236, 27, 243, 137, 148, 245, 134, 52, 73, 242, 27, 84, 74, 29, 40, 74, 75, 13, 83, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2489, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e2542b722291387707" + } + ] + }, + "cborHex": "9f49e2542b722291387707ff", + "cborBytes": [159, 73, 226, 84, 43, 114, 34, 145, 56, 119, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2490, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bd" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "308580742573283343" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7fda1b75ddcbaf" + }, + { + "_tag": "ByteArray", + "bytearray": "53c23a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16493316481634758690" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1033004405569961860" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3747626279929924998" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1709793374393107307" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5285771025668510940" + } + }, + { + "_tag": "ByteArray", + "bytearray": "25de14c9" + }, + { + "_tag": "ByteArray", + "bytearray": "515250c4b0336b696793" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6712053527277116575" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9028713941734022831" + } + } + ] + }, + "cborHex": "9f41bd9fd8669f1b04484c8ce99b580f9f477fda1b75ddcbaf4353c23a1be4e407f467ef70221b0e55f808a5693f84ffffff9f1b34023e3eee244d861b17ba6803e004836b9f1b495ad4be1d0614dc4425de14c94a515250c4b0336b6967931b5d26011efec29c9fffff1b7d4c6f7e6bac5eafff", + "cborBytes": [ + 159, 65, 189, 159, 216, 102, 159, 27, 4, 72, 76, 140, 233, 155, 88, 15, 159, 71, 127, 218, 27, 117, 221, 203, 175, + 67, 83, 194, 58, 27, 228, 228, 7, 244, 103, 239, 112, 34, 27, 14, 85, 248, 8, 165, 105, 63, 132, 255, 255, 255, + 159, 27, 52, 2, 62, 62, 238, 36, 77, 134, 27, 23, 186, 104, 3, 224, 4, 131, 107, 159, 27, 73, 90, 212, 190, 29, 6, + 20, 220, 68, 37, 222, 20, 201, 74, 81, 82, 80, 196, 176, 51, 107, 105, 103, 147, 27, 93, 38, 1, 30, 254, 194, 156, + 159, 255, 255, 27, 125, 76, 111, 126, 107, 172, 94, 175, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2491, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9523039828321951972" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "87" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2962436881337612087" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13018630873580938168" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f809fd8669f1b8428a244c506e0e49f41871b291cb0a5dda4f7371bb4ab77cdc9b9a3b8ffffffff", + "cborBytes": [ + 159, 128, 159, 216, 102, 159, 27, 132, 40, 162, 68, 197, 6, 224, 228, 159, 65, 135, 27, 41, 28, 176, 165, 221, + 164, 247, 55, 27, 180, 171, 119, 205, 201, 185, 163, 184, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2492, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4044517818142916892" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23143ebccd6940ab92d45652" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14283818786118461819" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7265356404324480342" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14410542230027090992" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2139890522082701554" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15320861399908185064" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "745cf74bfbf5a3" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2498927268763317180" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cc" + }, + { + "_tag": "ByteArray", + "bytearray": "ab9ab8" + }, + { + "_tag": "ByteArray", + "bytearray": "466ac87d99246241a1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5286642493877372121" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "612936578268089621" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7d6a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6022678510986745241" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3504910205699360010" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1177364873237806437" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0e5056245f7e7d70" + }, + { + "_tag": "ByteArray", + "bytearray": "10f49c3e91cb37a76b4e" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4d4140f1f0bc" + } + ] + }, + "cborHex": "9f9fbf1b38210386de25811c4c23143ebccd6940ab92d456521bc63a5181cea4697b1b64d3bb27fe5eb5561bc7fc87ced187bc301b1db26b179af6f0f21bd49ea245128573e847745cf74bfbf5a3ffd8669f1b22adf91c6e2cb3bc9f41cc43ab9ab849466ac87d99246241a11b495ded569e0bc4d91b0881969209834d15ffff427d6a9f1b5394da323bbe55991b30a3f143245a050a1b1056d71d405cbd65480e5056245f7e7d704a10f49c3e91cb37a76b4effff464d4140f1f0bcff", + "cborBytes": [ + 159, 159, 191, 27, 56, 33, 3, 134, 222, 37, 129, 28, 76, 35, 20, 62, 188, 205, 105, 64, 171, 146, 212, 86, 82, 27, + 198, 58, 81, 129, 206, 164, 105, 123, 27, 100, 211, 187, 39, 254, 94, 181, 86, 27, 199, 252, 135, 206, 209, 135, + 188, 48, 27, 29, 178, 107, 23, 154, 246, 240, 242, 27, 212, 158, 162, 69, 18, 133, 115, 232, 71, 116, 92, 247, 75, + 251, 245, 163, 255, 216, 102, 159, 27, 34, 173, 249, 28, 110, 44, 179, 188, 159, 65, 204, 67, 171, 154, 184, 73, + 70, 106, 200, 125, 153, 36, 98, 65, 161, 27, 73, 93, 237, 86, 158, 11, 196, 217, 27, 8, 129, 150, 146, 9, 131, 77, + 21, 255, 255, 66, 125, 106, 159, 27, 83, 148, 218, 50, 59, 190, 85, 153, 27, 48, 163, 241, 67, 36, 90, 5, 10, 27, + 16, 86, 215, 29, 64, 92, 189, 101, 72, 14, 80, 86, 36, 95, 126, 125, 112, 74, 16, 244, 156, 62, 145, 203, 55, 167, + 107, 78, 255, 255, 70, 77, 65, 64, 241, 240, 188, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2493, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4269545468795480480" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9864582012786873043" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16027408063146208750" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15790765227133694604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4779270130203383915" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa6b0876d753ef57c328" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b31de1cda7d2eeb" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17219525585411954549" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3b4078fb9beee9a09fbf1b88e6091369de92d31bde6ccab7720fadee1bdb24114f9ee4f28c1b425360dc9c68586b4afa6b0876d753ef57c328483b31de1cda7d2eebff1beef80b49773ad775ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 59, 64, 120, 251, 155, 238, 233, 160, 159, 191, 27, 136, 230, 9, 19, 105, 222, 146, 211, + 27, 222, 108, 202, 183, 114, 15, 173, 238, 27, 219, 36, 17, 79, 158, 228, 242, 140, 27, 66, 83, 96, 220, 156, 104, + 88, 107, 74, 250, 107, 8, 118, 215, 83, 239, 87, 195, 40, 72, 59, 49, 222, 28, 218, 125, 46, 235, 255, 27, 238, + 248, 11, 73, 119, 58, 215, 117, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2494, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7180429283612094977" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12935891256220678060" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7699299159618418091" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7061267108886313335" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11321686324436462119" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "686856686131885637" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16002454840085434438" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5f60bb7bcb89ac2be4e" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13580729306280367891" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2291515166117146107" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2055135342178907359" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1d0d2cc4c54ba1947129bc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9153563249138590391" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d2c5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7769280921670619771" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3763da3752a5d8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16251854402856306503" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5421559355624730644" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5760712593146061714" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3070253522301147338" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10665931715787999449" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "baeaf7d67fa9f78a0a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14152517293291256116" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16050541855946421595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14564692135572590840" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7034127575091658937" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17066744337609871989" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9068305181221894262" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9cb37bcbdf143f659e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9154705673516040912" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cb54f7cc46fbd424fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1535662611794801384" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e822" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7814188805995096023" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12155178176790484522" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b63a60263d082f2011bb385848f6c1d77ac1b6ad967cb0484f5ab1b61fea905f95179771b9d1eb5ba2a6eea271b09883484547e36451bde1423e47585d0464ac5f60bb7bcb89ac2be4effd8669f1bbc787159ab9417139f1b1fcd18e711d52dfb1b1c854eb483ecb4df4b1d0d2cc4c54ba1947129bcd8669f1b7f07fd4705f9e2b79f42d2c51b6bd207d5b865927b473763da3752a5d8ffff1be18a2f792f9e4747ffffd8669f1b4b3d3f8260b530149fbf1b4ff22994f79723921b2a9bbb4fc726d8ca1b940500628e1dc8d949baeaf7d67fa9f78a0a1bc467d77eb832b9341bdebefac75039b55b1bca202e548bbad0f81b619e3dc2da1e40b9ffbf1becd9418d33a552751b7dd917843190b876ff499cb37bcbdf143f659ed8669f1b7f0c0c4e6d2d42d09f49cb54f7cc46fbd424fa1b154fc50256e0b2e842e8221b6c719351552be7d71ba8afde26a12d562affffffffff", + "cborBytes": [ + 159, 191, 27, 99, 166, 2, 99, 208, 130, 242, 1, 27, 179, 133, 132, 143, 108, 29, 119, 172, 27, 106, 217, 103, 203, + 4, 132, 245, 171, 27, 97, 254, 169, 5, 249, 81, 121, 119, 27, 157, 30, 181, 186, 42, 110, 234, 39, 27, 9, 136, 52, + 132, 84, 126, 54, 69, 27, 222, 20, 35, 228, 117, 133, 208, 70, 74, 197, 246, 11, 183, 188, 184, 154, 194, 190, 78, + 255, 216, 102, 159, 27, 188, 120, 113, 89, 171, 148, 23, 19, 159, 27, 31, 205, 24, 231, 17, 213, 45, 251, 27, 28, + 133, 78, 180, 131, 236, 180, 223, 75, 29, 13, 44, 196, 197, 75, 161, 148, 113, 41, 188, 216, 102, 159, 27, 127, 7, + 253, 71, 5, 249, 226, 183, 159, 66, 210, 197, 27, 107, 210, 7, 213, 184, 101, 146, 123, 71, 55, 99, 218, 55, 82, + 165, 216, 255, 255, 27, 225, 138, 47, 121, 47, 158, 71, 71, 255, 255, 216, 102, 159, 27, 75, 61, 63, 130, 96, 181, + 48, 20, 159, 191, 27, 79, 242, 41, 148, 247, 151, 35, 146, 27, 42, 155, 187, 79, 199, 38, 216, 202, 27, 148, 5, 0, + 98, 142, 29, 200, 217, 73, 186, 234, 247, 214, 127, 169, 247, 138, 10, 27, 196, 103, 215, 126, 184, 50, 185, 52, + 27, 222, 190, 250, 199, 80, 57, 181, 91, 27, 202, 32, 46, 84, 139, 186, 208, 248, 27, 97, 158, 61, 194, 218, 30, + 64, 185, 255, 191, 27, 236, 217, 65, 141, 51, 165, 82, 117, 27, 125, 217, 23, 132, 49, 144, 184, 118, 255, 73, + 156, 179, 123, 203, 223, 20, 63, 101, 158, 216, 102, 159, 27, 127, 12, 12, 78, 109, 45, 66, 208, 159, 73, 203, 84, + 247, 204, 70, 251, 212, 36, 250, 27, 21, 79, 197, 2, 86, 224, 178, 232, 66, 232, 34, 27, 108, 113, 147, 81, 85, + 43, 231, 215, 27, 168, 175, 222, 38, 161, 45, 86, 42, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2495, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "498380616059897671" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a0aa28122ed2a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5847571062001944246" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15989126474532788966" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "839621981212220319" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9033929595375322511" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a623871e1d2fe1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11555954518376420428" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b06ea9a879f30c7479f47a0aa28122ed2a61b5126bee62d7ac6b680d8669f1bdde4c9d087521ae69f1b0ba6efbe4fc39b9f1b7d5ef71a6a3c058f47a623871e1d2fe11ba05eff688c65944cffffa0ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 6, 234, 154, 135, 159, 48, 199, 71, 159, 71, 160, 170, 40, 18, 46, 210, 166, 27, 81, 38, + 190, 230, 45, 122, 198, 182, 128, 216, 102, 159, 27, 221, 228, 201, 208, 135, 82, 26, 230, 159, 27, 11, 166, 239, + 190, 79, 195, 155, 159, 27, 125, 94, 247, 26, 106, 60, 5, 143, 71, 166, 35, 135, 30, 29, 47, 225, 27, 160, 94, + 255, 104, 140, 101, 148, 76, 255, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2496, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8338973927221922045" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3568966252198046807" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12054595510913728441" + } + } + ] + }, + "cborHex": "9fd8669f1b73b9fc9ae34e88fd80ff9f80ff1b318783e5ad9f2c571ba74a86bfcb07ffb9ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 115, 185, 252, 154, 227, 78, 136, 253, 128, 255, 159, 128, 255, 27, 49, 135, 131, 229, + 173, 159, 44, 87, 27, 167, 74, 134, 191, 203, 7, 255, 185, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2497, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11186117538277202002" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17745145230824612622" + } + } + ] + } + ] + }, + "cborHex": "9f1bfffffffffffffffcd87d9f1b9b3d12a26cc79852801bf6436b91d304a30effff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 216, 125, 159, 27, 155, 61, 18, 162, 108, 199, 152, 82, 128, 27, + 246, 67, 107, 145, 211, 4, 163, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2498, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10842476584632662737" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ba75" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2707809271958337656" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5172180864698157415" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7089883654006388334" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8938801911324595658" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7942558598076156123" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ee23c64bfe634b645c5d8d2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13694645876622136158" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4389794408795640547" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17821936770328991830" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5331787955857554145" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "187f41b845" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1667895976461790438" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18359467769117768453" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b9678370200853ad19f42ba75bf1b2594122fae95f8781b47c74717d26809671b6264539e97e6366e1b7c0d00fa8215d5ca1b6e39a2f6a60dc8db4c5ee23c64bfe634b645c5d8d21bbe0d27de10d4935e1b3cebaec1b54292e3ff80ffffd8669f1bf7543d1164ee98569f9f1b49fe50e596987ae1ffbf45187f41b8451b17258e8dbf4eece6ffa0ffffd8669f1bfec9eea9d37f7b0580ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 150, 120, 55, 2, 0, 133, 58, 209, 159, 66, 186, 117, 191, 27, 37, 148, 18, 47, 174, 149, + 248, 120, 27, 71, 199, 71, 23, 210, 104, 9, 103, 27, 98, 100, 83, 158, 151, 230, 54, 110, 27, 124, 13, 0, 250, + 130, 21, 213, 202, 27, 110, 57, 162, 246, 166, 13, 200, 219, 76, 94, 226, 60, 100, 191, 230, 52, 182, 69, 197, + 216, 210, 27, 190, 13, 39, 222, 16, 212, 147, 94, 27, 60, 235, 174, 193, 181, 66, 146, 227, 255, 128, 255, 255, + 216, 102, 159, 27, 247, 84, 61, 17, 100, 238, 152, 86, 159, 159, 27, 73, 254, 80, 229, 150, 152, 122, 225, 255, + 191, 69, 24, 127, 65, 184, 69, 27, 23, 37, 142, 141, 191, 78, 236, 230, 255, 160, 255, 255, 216, 102, 159, 27, + 254, 201, 238, 169, 211, 127, 123, 5, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2499, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5418743428817550724" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3094492738728480278" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9835500819429878847" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1be3e3c429" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3463691610429583970" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2398202965709576099" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15574879598408884947" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d2d661a8f2ff19d8e6248dc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10479982783472596434" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3830544690779780919" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3bb711" + }, + { + "_tag": "ByteArray", + "bytearray": "8e4f" + }, + { + "_tag": "ByteArray", + "bytearray": "f0407696" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "caf8771d4b8cd955da" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f12ccce6d4137611b9f8" + }, + { + "_tag": "ByteArray", + "bytearray": "06d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2887047320129240094" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b4b333e7053a6fd849f1b2af1d8c023efce161b887eb7e2722e6c3f451be3e3c429ffffd8669f1b3011812b1327f2629f1b214820e41e6857a31bd8251679baa3e2d34c6d2d661a8f2ff19d8e6248dc1b917060d0f517f5d2ffff9f1b3528d419e62ff737433bb711428e4f44f0407696ff49caf8771d4b8cd955da9f4af12ccce6d4137611b9f84206d01b2810da3dce0bfc1effffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 75, 51, 62, 112, 83, 166, 253, 132, 159, 27, 42, 241, 216, 192, 35, 239, 206, 22, 27, + 136, 126, 183, 226, 114, 46, 108, 63, 69, 27, 227, 227, 196, 41, 255, 255, 216, 102, 159, 27, 48, 17, 129, 43, 19, + 39, 242, 98, 159, 27, 33, 72, 32, 228, 30, 104, 87, 163, 27, 216, 37, 22, 121, 186, 163, 226, 211, 76, 109, 45, + 102, 26, 143, 47, 241, 157, 142, 98, 72, 220, 27, 145, 112, 96, 208, 245, 23, 245, 210, 255, 255, 159, 27, 53, 40, + 212, 25, 230, 47, 247, 55, 67, 59, 183, 17, 66, 142, 79, 68, 240, 64, 118, 150, 255, 73, 202, 248, 119, 29, 75, + 140, 217, 85, 218, 159, 74, 241, 44, 204, 230, 212, 19, 118, 17, 185, 248, 66, 6, 208, 27, 40, 16, 218, 61, 206, + 11, 252, 30, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2500, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f14112" + }, + { + "_tag": "ByteArray", + "bytearray": "38fb02f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [] + } + ] + }, + "cborHex": "9f0f43f141124438fb02f808d9050780ff", + "cborBytes": [159, 15, 67, 241, 65, 18, 68, 56, 251, 2, 248, 8, 217, 5, 7, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2501, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10e330911611f569" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8562598502519662834" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62be866cf102" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5619305499686194340" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ed6ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14039768632975028639" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c54d3da6b17e81c74cd2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5021650c6b84" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15082823106409543783" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16489238161598076212" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "136774051499899829" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3503db6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "57f50a0438abe0" + }, + { + "_tag": "ByteArray", + "bytearray": "3bffff577a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14945425667009338043" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2315688465440276409" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ffa717b3e70f9e425d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11188274412611119691" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5653549221792449894" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ebb9" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "31a55df0d2b6950b92" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f08770f31b955bc28" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2b5a5f86158492245" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8abf2969f93c4b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39661b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9115551599768073881" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1642949394222710173" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "140b4774a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4072752198391738967" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7140570310554965861" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14987630591426961036" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00018f04" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "ByteArray", + "bytearray": "94" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8c31c66230015e01" + }, + { + "_tag": "ByteArray", + "bytearray": "040704" + }, + { + "_tag": "ByteArray", + "bytearray": "67fd6aac" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf4216f74810e330911611f569411e1b76d475f8b0f9e8f24662be866cf1021b4dfbc8946131cca4438ed6ad1bc2d7472f9125f19f4ac54d3da6b17e81c74cd2465021650c6b84ff1bd150f3b3fb983867d8669f1be4d58abe86de55349f1b01e5eb4672247bb544f3503db6ffff4757f50a0438abe0453bffff577aff9fd8669f1bcf68d175bb18dabb9f1b2022fa63e9097fb949ffa717b3e70f9e425d1b9b44bc4cdd472a4b1b4e7571103d20056642ebb9ffffbf4931a55df0d2b6950b92495f08770f31b955bc28413549d2b5a5f86158492245478abf2969f93c4b4339661b41b61b7e80f1e23beb7699ffbf1b16ccedc4f2967d9d45140b4774a51b3885528bcb54b2571b631866dd76545765ffa0ffd8669f1bcffec29d72c81e8c9fd9050d9f4400018f04ff9f014194ffd8669f1bffffffffffffffff9f488c31c66230015e01430407044467fd6aac07ffffffffff", + "cborBytes": [ + 159, 159, 191, 66, 22, 247, 72, 16, 227, 48, 145, 22, 17, 245, 105, 65, 30, 27, 118, 212, 117, 248, 176, 249, 232, + 242, 70, 98, 190, 134, 108, 241, 2, 27, 77, 251, 200, 148, 97, 49, 204, 164, 67, 142, 214, 173, 27, 194, 215, 71, + 47, 145, 37, 241, 159, 74, 197, 77, 61, 166, 177, 126, 129, 199, 76, 210, 70, 80, 33, 101, 12, 107, 132, 255, 27, + 209, 80, 243, 179, 251, 152, 56, 103, 216, 102, 159, 27, 228, 213, 138, 190, 134, 222, 85, 52, 159, 27, 1, 229, + 235, 70, 114, 36, 123, 181, 68, 243, 80, 61, 182, 255, 255, 71, 87, 245, 10, 4, 56, 171, 224, 69, 59, 255, 255, + 87, 122, 255, 159, 216, 102, 159, 27, 207, 104, 209, 117, 187, 24, 218, 187, 159, 27, 32, 34, 250, 99, 233, 9, + 127, 185, 73, 255, 167, 23, 179, 231, 15, 158, 66, 93, 27, 155, 68, 188, 76, 221, 71, 42, 75, 27, 78, 117, 113, + 16, 61, 32, 5, 102, 66, 235, 185, 255, 255, 191, 73, 49, 165, 93, 240, 210, 182, 149, 11, 146, 73, 95, 8, 119, 15, + 49, 185, 85, 188, 40, 65, 53, 73, 210, 181, 165, 248, 97, 88, 73, 34, 69, 71, 138, 191, 41, 105, 249, 60, 75, 67, + 57, 102, 27, 65, 182, 27, 126, 128, 241, 226, 59, 235, 118, 153, 255, 191, 27, 22, 204, 237, 196, 242, 150, 125, + 157, 69, 20, 11, 71, 116, 165, 27, 56, 133, 82, 139, 203, 84, 178, 87, 27, 99, 24, 102, 221, 118, 84, 87, 101, + 255, 160, 255, 216, 102, 159, 27, 207, 254, 194, 157, 114, 200, 30, 140, 159, 217, 5, 13, 159, 68, 0, 1, 143, 4, + 255, 159, 1, 65, 148, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 72, 140, 49, 198, 98, + 48, 1, 94, 1, 67, 4, 7, 4, 68, 103, 253, 106, 172, 7, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2502, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f0a274" + } + ] + }, + "cborHex": "9f43f0a274ff", + "cborBytes": [159, 67, 240, 162, 116, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2503, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18075192517791107661" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17941435206054640472" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1413054002055179708" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fec5703dd480ffbdd0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12009509083051029616" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16720926920067782520" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17708615829064167765" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dd" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17421990318573583073" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9702962804626588510" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60edbe889a12a079ff3f1e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "024c1f16" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1343755320298894368" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4405755817104655875" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11062704541891064308" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "382810b437db9d60" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8124782274641257820" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfad7fbd415bcca4d9f1bf8fcc8431992fb589f1b139c2d20d0f16dbc49fec5703dd480ffbdd01ba6aa58e1c6157470ffd8669f1be80caa7149e817789f1bf5c1a445b33ab15541ddffff9f1bf1c757e39adf7ae1ffffff1b86a7d9432698835ebf064b60edbe889a12a079ff3f1e44024c1f1608ffbf1b12a5fa582374f4201b3d246392ada246031b99869f2b0a8471f448382810b437db9d6041b31b70c1066e8d61e55cffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 250, 215, 251, 212, 21, 188, 202, 77, 159, 27, 248, 252, 200, 67, 25, 146, 251, 88, 159, + 27, 19, 156, 45, 32, 208, 241, 109, 188, 73, 254, 197, 112, 61, 212, 128, 255, 189, 208, 27, 166, 170, 88, 225, + 198, 21, 116, 112, 255, 216, 102, 159, 27, 232, 12, 170, 113, 73, 232, 23, 120, 159, 27, 245, 193, 164, 69, 179, + 58, 177, 85, 65, 221, 255, 255, 159, 27, 241, 199, 87, 227, 154, 223, 122, 225, 255, 255, 255, 27, 134, 167, 217, + 67, 38, 152, 131, 94, 191, 6, 75, 96, 237, 190, 136, 154, 18, 160, 121, 255, 63, 30, 68, 2, 76, 31, 22, 8, 255, + 191, 27, 18, 165, 250, 88, 35, 116, 244, 32, 27, 61, 36, 99, 146, 173, 162, 70, 3, 27, 153, 134, 159, 43, 10, 132, + 113, 244, 72, 56, 40, 16, 180, 55, 219, 157, 96, 65, 179, 27, 112, 193, 6, 110, 141, 97, 229, 92, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2504, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11994673144361048286" + } + } + ] + }, + "cborHex": "9f1ba675a3ac9e8ed8deff", + "cborBytes": [159, 27, 166, 117, 163, 172, 158, 142, 216, 222, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2505, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "525366463609626721" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9274edc5931440" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2874407287273244332" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5dcf1b6995e65e507ca9dd72" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8985631942070163336" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7526014146976320830" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b074a7a03e05ae061479274edc59314401b27e3f232d1b746ac4c5dcf1b6995e65e507ca9dd721b7cb360a4b57ed7881b6871c5fdfd168d3effff", + "cborBytes": [ + 159, 191, 27, 7, 74, 122, 3, 224, 90, 224, 97, 71, 146, 116, 237, 197, 147, 20, 64, 27, 39, 227, 242, 50, 209, + 183, 70, 172, 76, 93, 207, 27, 105, 149, 230, 94, 80, 124, 169, 221, 114, 27, 124, 179, 96, 164, 181, 126, 215, + 136, 27, 104, 113, 197, 253, 253, 22, 141, 62, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2506, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3951051281986915831" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11899162006741895171" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2be4ed81a0ad6d43d669aef" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3023374160737063694" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8007962231952643656" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fff7df3e5a" + }, + { + "_tag": "ByteArray", + "bytearray": "6cabc45fa2812d6b0c3d6f" + }, + { + "_tag": "ByteArray", + "bytearray": "483acb10e11105" + }, + { + "_tag": "ByteArray", + "bytearray": "4710f5a365" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2397595865445565978" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "220303619033245177" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0767" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4608278548802473940" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3627537184022341967" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6934620503876485299" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7856854e54d746e9cfe3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10975821085360356252" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8064911327579720025" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17393879728844592893" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4182152810413329326" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5967834071533274267" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b36d4f435182e8df741d91ba52250ccf8acc8034cc2be4ed81a0ad6d43d669aefffd8669f1b29f52ec7d9d3d30e9f9f1b6f21ff38d248164845fff7df3e5a4b6cabc45fa2812d6b0c3d6f47483acb10e11105454710f5a365ff1b2145f8bc92d4061abf1b030eacf96b35a5f94207671b3ff3e4eca76c8fd41b325799d96f2c294f1b603cb89b69b2c0b34a7856854e54d746e9cfe31b9851f31fef257b9c1b6fec521f6969c9591bf1637974e7a656fd1b3a09fdd2b5168baeff1b52d201781836c49bffffff", + "cborBytes": [ + 159, 191, 27, 54, 212, 244, 53, 24, 46, 141, 247, 65, 217, 27, 165, 34, 80, 204, 248, 172, 200, 3, 76, 194, 190, + 78, 216, 26, 10, 214, 212, 61, 102, 154, 239, 255, 216, 102, 159, 27, 41, 245, 46, 199, 217, 211, 211, 14, 159, + 159, 27, 111, 33, 255, 56, 210, 72, 22, 72, 69, 255, 247, 223, 62, 90, 75, 108, 171, 196, 95, 162, 129, 45, 107, + 12, 61, 111, 71, 72, 58, 203, 16, 225, 17, 5, 69, 71, 16, 245, 163, 101, 255, 27, 33, 69, 248, 188, 146, 212, 6, + 26, 191, 27, 3, 14, 172, 249, 107, 53, 165, 249, 66, 7, 103, 27, 63, 243, 228, 236, 167, 108, 143, 212, 27, 50, + 87, 153, 217, 111, 44, 41, 79, 27, 96, 60, 184, 155, 105, 178, 192, 179, 74, 120, 86, 133, 78, 84, 215, 70, 233, + 207, 227, 27, 152, 81, 243, 31, 239, 37, 123, 156, 27, 111, 236, 82, 31, 105, 105, 201, 89, 27, 241, 99, 121, 116, + 231, 166, 86, 253, 27, 58, 9, 253, 210, 181, 22, 139, 174, 255, 27, 82, 210, 1, 120, 24, 54, 196, 155, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2507, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "56f19cff845a3833a1f79a42" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2235977545637716959" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60a7c3f021" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5cb4876d694d994" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d5c17586d29f2b8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdcb3c6cff3196995b92e732" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12743553138872256608" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4c56f19cff845a3833a1f79a421b1f07c9bb257c63df4560a7c3f02148e5cb4876d694d9944270c5483d5c17586d29f2b84cbdcb3c6cff3196995b92e7321bb0da320fc2cb8860ffff", + "cborBytes": [ + 159, 191, 76, 86, 241, 156, 255, 132, 90, 56, 51, 161, 247, 154, 66, 27, 31, 7, 201, 187, 37, 124, 99, 223, 69, + 96, 167, 195, 240, 33, 72, 229, 203, 72, 118, 214, 148, 217, 148, 66, 112, 197, 72, 61, 92, 23, 88, 109, 41, 242, + 184, 76, 189, 203, 60, 108, 255, 49, 150, 153, 91, 146, 231, 50, 27, 176, 218, 50, 15, 194, 203, 136, 96, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2508, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3363248410902500025" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "71b83af8" + }, + { + "_tag": "ByteArray", + "bytearray": "854e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7532226366004522324" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4866e297dca5e9a018" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14149763432145620368" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "303167cb9023a28a29e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12265616041284759350" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac4af4d1e68bbc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2993654815984225894" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8185750352883347580" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4cf44e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9445258821839144752" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "747194861588809601" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18231616842874463023" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ea9a2350d8255882a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18272617217248730980" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61388ce613" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10267090265917944005" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2355323234268222861" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15458947206851653873" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4820333b6c39f77f06835a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2991029494480751545" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18371671564386914088" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10223678165241676768" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17944295711431997125" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1335782919816180603" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00136e972bfc28811f0f99" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4264180345570706144" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa6f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8834542330210331860" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "449bc2fecebc828fa8747e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15792611968129662044" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18134973073413865923" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16763365978589938938" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16661543332941518358" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17929888524011989767" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a598a6d79b71922123" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e87721950ec0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17815755770539169935" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6063218360426145928" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "bd0ff5efad14c9e406b0" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2763306382936974722" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b2eaca89c473d92b99f4471b83af842854effffd8669f1b6887d7f8f187ed549f494866e297dca5e9a0181bc45e0edf74da0d90ffffbf4a303167cb9023a28a29e61baa3838cdb41c6f36414e47ac4af4d1e68bbc41c71b298b9931aee08e66ffbf1b7199a09373a3f07c434cf44e1b83144cdaf758c7301b0a5e91c48eff87811bfd03b6ec608fa32f498ea9a2350d8255882a1bfd95608beecc1f644561388ce613ffff1b8e7c083310e8f0c5d8669f1b20afca00a5c8158d9fd8669f1bd689369461e8f0f19f4b4820333b6c39f77f06835a1b2982457a633dcbb91bfef549f3556d4f281b8de1cd1fb925c3e01bf906f1e0687836c5ffffbf1b1289a77d00ad737b4b00136e972bfc28811f0f991b3b2d696e83f1c2e042aa6f1b7a9a99712156acd44b449bc2fecebc828fa8747e1bdb2aa0e983f37c5c1bfbac5ded541b81c31be8a3708a99b8c4fa1be739b16279c1d6161bf8d3c29db0166b0749a598a6d79b71922123ff46e87721950ec0d8669f1bf73e477b3c1a588f9f1b5424e0f978d3a888ffffffff9f804abd0ff5efad14c9e406b0801b26593c83c0872582ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 46, 172, 168, 156, 71, 61, 146, 185, 159, 68, 113, 184, 58, 248, 66, 133, 78, 255, + 255, 216, 102, 159, 27, 104, 135, 215, 248, 241, 135, 237, 84, 159, 73, 72, 102, 226, 151, 220, 165, 233, 160, 24, + 27, 196, 94, 14, 223, 116, 218, 13, 144, 255, 255, 191, 74, 48, 49, 103, 203, 144, 35, 162, 138, 41, 230, 27, 170, + 56, 56, 205, 180, 28, 111, 54, 65, 78, 71, 172, 74, 244, 209, 230, 139, 188, 65, 199, 27, 41, 139, 153, 49, 174, + 224, 142, 102, 255, 191, 27, 113, 153, 160, 147, 115, 163, 240, 124, 67, 76, 244, 78, 27, 131, 20, 76, 218, 247, + 88, 199, 48, 27, 10, 94, 145, 196, 142, 255, 135, 129, 27, 253, 3, 182, 236, 96, 143, 163, 47, 73, 142, 169, 162, + 53, 13, 130, 85, 136, 42, 27, 253, 149, 96, 139, 238, 204, 31, 100, 69, 97, 56, 140, 230, 19, 255, 255, 27, 142, + 124, 8, 51, 16, 232, 240, 197, 216, 102, 159, 27, 32, 175, 202, 0, 165, 200, 21, 141, 159, 216, 102, 159, 27, 214, + 137, 54, 148, 97, 232, 240, 241, 159, 75, 72, 32, 51, 59, 108, 57, 247, 127, 6, 131, 90, 27, 41, 130, 69, 122, 99, + 61, 203, 185, 27, 254, 245, 73, 243, 85, 109, 79, 40, 27, 141, 225, 205, 31, 185, 37, 195, 224, 27, 249, 6, 241, + 224, 104, 120, 54, 197, 255, 255, 191, 27, 18, 137, 167, 125, 0, 173, 115, 123, 75, 0, 19, 110, 151, 43, 252, 40, + 129, 31, 15, 153, 27, 59, 45, 105, 110, 131, 241, 194, 224, 66, 170, 111, 27, 122, 154, 153, 113, 33, 86, 172, + 212, 75, 68, 155, 194, 254, 206, 188, 130, 143, 168, 116, 126, 27, 219, 42, 160, 233, 131, 243, 124, 92, 27, 251, + 172, 93, 237, 84, 27, 129, 195, 27, 232, 163, 112, 138, 153, 184, 196, 250, 27, 231, 57, 177, 98, 121, 193, 214, + 22, 27, 248, 211, 194, 157, 176, 22, 107, 7, 73, 165, 152, 166, 215, 155, 113, 146, 33, 35, 255, 70, 232, 119, 33, + 149, 14, 192, 216, 102, 159, 27, 247, 62, 71, 123, 60, 26, 88, 143, 159, 27, 84, 36, 224, 249, 120, 211, 168, 136, + 255, 255, 255, 255, 159, 128, 74, 189, 15, 245, 239, 173, 20, 201, 228, 6, 176, 128, 27, 38, 89, 60, 131, 192, + 135, 37, 130, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2509, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17eaa1e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "deb2d19ed066cfca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50003218c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82f3bf2f72" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cae156802" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7068ed802e97eeaa6fc4862e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4ca394ac8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1de1fe1b8d97b436576" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1265185565342444450" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d4ebaa7493710fcb4eb3e7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11290209817688097938" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5629560242719611277" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9197927714722346613" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11944947237236191133" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1842688942980133961" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6678302352e9f05f411d49" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2458550935735145245" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "254a595b68574e9ebb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7885423759682897098" + } + } + ] + }, + "cborHex": "9f9fbf4417eaa1e248deb2d19ed066cfca4550003218c24582f3bf2f72457cae1568024c7068ed802e97eeaa6fc4862e45c4ca394ac84ad1de1fe1b8d97b436576ffd8669f1b118ed79185302ba29f4bd4ebaa7493710fcb4eb3e71b9caee202d6ed4492ffff9f1b4e203736ccf6d98d1b7fa59a8619bef6751ba5c4fa39a83f2f9d1b19928bd4a5def4494b6678302352e9f05f411d49ff1b221e870cd2b2931dff49254a595b68574e9ebb1b6d6ea721735304caff", + "cborBytes": [ + 159, 159, 191, 68, 23, 234, 161, 226, 72, 222, 178, 209, 158, 208, 102, 207, 202, 69, 80, 0, 50, 24, 194, 69, 130, + 243, 191, 47, 114, 69, 124, 174, 21, 104, 2, 76, 112, 104, 237, 128, 46, 151, 238, 170, 111, 196, 134, 46, 69, + 196, 202, 57, 74, 200, 74, 209, 222, 31, 225, 184, 217, 123, 67, 101, 118, 255, 216, 102, 159, 27, 17, 142, 215, + 145, 133, 48, 43, 162, 159, 75, 212, 235, 170, 116, 147, 113, 15, 203, 78, 179, 231, 27, 156, 174, 226, 2, 214, + 237, 68, 146, 255, 255, 159, 27, 78, 32, 55, 54, 204, 246, 217, 141, 27, 127, 165, 154, 134, 25, 190, 246, 117, + 27, 165, 196, 250, 57, 168, 63, 47, 157, 27, 25, 146, 139, 212, 165, 222, 244, 73, 75, 102, 120, 48, 35, 82, 233, + 240, 95, 65, 29, 73, 255, 27, 34, 30, 135, 12, 210, 178, 147, 29, 255, 73, 37, 74, 89, 91, 104, 87, 78, 158, 187, + 27, 109, 110, 167, 33, 115, 83, 4, 202, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2510, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb2cbfa127" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12953093304083771634" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16559808530102918448" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2856039114553881717" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01fa6e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1c6452f4d" + } + } + ] + } + ] + }, + "cborHex": "9fbf0045eb2cbfa127081bb3c2a1bb4c6770f2111be5d0421ed9449d301b27a2b071579af475131bfffffffffffffff94301fa6e1bfffffffffffffffb45d1c6452f4dffff", + "cborBytes": [ + 159, 191, 0, 69, 235, 44, 191, 161, 39, 8, 27, 179, 194, 161, 187, 76, 103, 112, 242, 17, 27, 229, 208, 66, 30, + 217, 68, 157, 48, 27, 39, 162, 176, 113, 87, 154, 244, 117, 19, 27, 255, 255, 255, 255, 255, 255, 255, 249, 67, 1, + 250, 110, 27, 255, 255, 255, 255, 255, 255, 255, 251, 69, 209, 198, 69, 47, 77, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2511, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd9050a80ff", + "cborBytes": [159, 217, 5, 10, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2512, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1221693975698759418" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5975678987078698021" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11487802382849685133" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14598102718615929154" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9706513533016487801" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fa73723d4ba860f7" + } + ] + }, + "cborHex": "9f1b10f45432b5c25efabf1b52ede060d49784251b9f6cdf66f7a4368d1bca96e11419c441421b86b476a186f83779ff48fa73723d4ba860f7ff", + "cborBytes": [ + 159, 27, 16, 244, 84, 50, 181, 194, 94, 250, 191, 27, 82, 237, 224, 96, 212, 151, 132, 37, 27, 159, 108, 223, 102, + 247, 164, 54, 141, 27, 202, 150, 225, 20, 25, 196, 65, 66, 27, 134, 180, 118, 161, 134, 248, 55, 121, 255, 72, + 250, 115, 114, 61, 75, 168, 96, 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2513, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11507516895116563135" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11895793823466475530" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12393017085814762474" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "afd657" + }, + { + "_tag": "ByteArray", + "bytearray": "41731e5b67694bf4b28c3460" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "602466138345757116" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05a14b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ed68eccf96c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f98875f132cdf59" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ead0b901ec687c8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a08d149851a267df0ec6" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17769115798730840607" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "888a074a01d8c6ce2e2c68" + }, + { + "_tag": "ByteArray", + "bytearray": "c445" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12465527924816467459" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4693039883513268625" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23e3082a3f7aa52e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5316489793175782877" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15235923843855732016" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b9fb2e9a58c3a92bf9f1ba5165974b101500a1babfcd760e755ebea9f43afd6574c41731e5b67694bf4b28c3460ffffffd8669f1b085c63c2c54cd9bc9fbf4305a14b468ed68eccf96c4134481f98875f132cdf5948ead0b901ec687c8f4aa08d149851a267df0ec6ff1bf69894ac94221a1f9f4b888a074a01d8c6ce2e2c6842c4451bacfe739a3865d603ffffffa0bf1b412106e8c58c89914823e3082a3f7aa52e1b49c7f74c863b85dd1bd370e00339eccd30ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 159, 178, 233, 165, 140, 58, 146, 191, 159, 27, 165, 22, 89, 116, 177, 1, 80, 10, 27, 171, + 252, 215, 96, 231, 85, 235, 234, 159, 67, 175, 214, 87, 76, 65, 115, 30, 91, 103, 105, 75, 244, 178, 140, 52, 96, + 255, 255, 255, 216, 102, 159, 27, 8, 92, 99, 194, 197, 76, 217, 188, 159, 191, 67, 5, 161, 75, 70, 142, 214, 142, + 204, 249, 108, 65, 52, 72, 31, 152, 135, 95, 19, 44, 223, 89, 72, 234, 208, 185, 1, 236, 104, 124, 143, 74, 160, + 141, 20, 152, 81, 162, 103, 223, 14, 198, 255, 27, 246, 152, 148, 172, 148, 34, 26, 31, 159, 75, 136, 138, 7, 74, + 1, 216, 198, 206, 46, 44, 104, 66, 196, 69, 27, 172, 254, 115, 154, 56, 101, 214, 3, 255, 255, 255, 160, 191, 27, + 65, 33, 6, 232, 197, 140, 137, 145, 72, 35, 227, 8, 42, 63, 122, 165, 46, 27, 73, 199, 247, 76, 134, 59, 133, 221, + 27, 211, 112, 224, 3, 57, 236, 205, 48, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2514, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1935426178352876570" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "823838327206915652" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9668628693543134751" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a7bcce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2131395817328106069" + } + }, + { + "_tag": "ByteArray", + "bytearray": "97424d08efc5f95c1f88e0cf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6988482178141682530" + } + }, + { + "_tag": "ByteArray", + "bytearray": "358ff3" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9f8994b11ee5" + } + ] + }, + "cborHex": "9f1b1adc03dad9b70c1ad8669f1b0b6edc97fd852e449fa080d8669f1b862dde91f7c9a61f9f43a7bcce1b1d943d3407985a554c97424d08efc5f95c1f88e0cf1b60fc1383b3487b6243358ff3ffffffff469f8994b11ee5ff", + "cborBytes": [ + 159, 27, 26, 220, 3, 218, 217, 183, 12, 26, 216, 102, 159, 27, 11, 110, 220, 151, 253, 133, 46, 68, 159, 160, 128, + 216, 102, 159, 27, 134, 45, 222, 145, 247, 201, 166, 31, 159, 67, 167, 188, 206, 27, 29, 148, 61, 52, 7, 152, 90, + 85, 76, 151, 66, 77, 8, 239, 197, 249, 92, 31, 136, 224, 207, 27, 96, 252, 19, 131, 179, 72, 123, 98, 67, 53, 143, + 243, 255, 255, 255, 255, 70, 159, 137, 148, 177, 30, 229, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2515, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fea2053cc807" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13213804374594551814" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17571527253161440729" + } + }, + { + "_tag": "ByteArray", + "bytearray": "44acd2f74102" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "56c63e4d765b7717" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2314afba9d2da121" + }, + { + "_tag": "ByteArray", + "bytearray": "a622d720efa125b0451a" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f46fea2053cc807d8669f1bb760dd11a73600069f1bf3da9af055c875d94644acd2f74102ffff4856c63e4d765b7717d87b9f482314afba9d2da1214aa622d720efa125b0451affffff", + "cborBytes": [ + 159, 159, 70, 254, 162, 5, 60, 200, 7, 216, 102, 159, 27, 183, 96, 221, 17, 167, 54, 0, 6, 159, 27, 243, 218, 154, + 240, 85, 200, 117, 217, 70, 68, 172, 210, 247, 65, 2, 255, 255, 72, 86, 198, 62, 77, 118, 91, 119, 23, 216, 123, + 159, 72, 35, 20, 175, 186, 157, 45, 161, 33, 74, 166, 34, 215, 32, 239, 161, 37, 176, 69, 26, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2516, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a8" + } + ] + } + ] + }, + "cborHex": "9f9fa041a8ffff", + "cborBytes": [159, 159, 160, 65, 168, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2517, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "512bb7ba12d7da789e4a405b" + }, + { + "_tag": "ByteArray", + "bytearray": "00b3085d3a9de401" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4194637761168472744" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13342145105654246323" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5206405870485727899" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c298d7" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12861202419564388009" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8376149055461577085" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4c512bb7ba12d7da789e4a405b4800b3085d3a9de4011b3a3658d1d3e2faa8d8669f1bb928d248ac3cebb39f411cd8669f1b4840de8df2cf6a9b9f43c298d7ffffd8669f1bb27c2b7582879ea99f1b743e0f2fec82d17dffffffffff", + "cborBytes": [ + 159, 76, 81, 43, 183, 186, 18, 215, 218, 120, 158, 74, 64, 91, 72, 0, 179, 8, 93, 58, 157, 228, 1, 27, 58, 54, 88, + 209, 211, 226, 250, 168, 216, 102, 159, 27, 185, 40, 210, 72, 172, 60, 235, 179, 159, 65, 28, 216, 102, 159, 27, + 72, 64, 222, 141, 242, 207, 106, 155, 159, 67, 194, 152, 215, 255, 255, 216, 102, 159, 27, 178, 124, 43, 117, 130, + 135, 158, 169, 159, 27, 116, 62, 15, 47, 236, 130, 209, 125, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2518, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9480ecbaa12d3ebc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2561398815860428111" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7557772010273701737" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11314790337561324293" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14491081167525073802" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12368020155489229808" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2974372602211876609" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5694665289394342720" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4031726393909143901" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14396123496743167610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bf1c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13308620133791526411" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6eb2332b6089864f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10947242249628131405" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4bea421e47ae8258" + } + ] + } + ] + } + ] + }, + "cborHex": "9f489480ecbaa12d3ebcbf1b238beaa6f3778d4f1b68e29999bdc0ff691b9d0635dd1a5d6b051bc91aa98b79af538a1baba408cd86ce9bf01b2947181f707e3f01ffd8669f1b4f0783e8b918cb4080ffd8669f1b37f391cb5485695d9fd8669f1bc7c94e0bde07e67a9f42bf1c1bb8b1b77fe5416e0b486eb2332b6089864fffff1b97ec6ad3373ba04d9f484bea421e47ae8258ffffffff", + "cborBytes": [ + 159, 72, 148, 128, 236, 186, 161, 45, 62, 188, 191, 27, 35, 139, 234, 166, 243, 119, 141, 79, 27, 104, 226, 153, + 153, 189, 192, 255, 105, 27, 157, 6, 53, 221, 26, 93, 107, 5, 27, 201, 26, 169, 139, 121, 175, 83, 138, 27, 171, + 164, 8, 205, 134, 206, 155, 240, 27, 41, 71, 24, 31, 112, 126, 63, 1, 255, 216, 102, 159, 27, 79, 7, 131, 232, + 185, 24, 203, 64, 128, 255, 216, 102, 159, 27, 55, 243, 145, 203, 84, 133, 105, 93, 159, 216, 102, 159, 27, 199, + 201, 78, 11, 222, 7, 230, 122, 159, 66, 191, 28, 27, 184, 177, 183, 127, 229, 65, 110, 11, 72, 110, 178, 51, 43, + 96, 137, 134, 79, 255, 255, 27, 151, 236, 106, 211, 55, 59, 160, 77, 159, 72, 75, 234, 66, 30, 71, 174, 130, 88, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2519, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68060504e8060602cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4329445232908154142" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9705" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12965534724056057581" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02f6ff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18108869393688995491" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4fccd96ba8500d8735" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a07078a3" + } + ] + } + ] + }, + "cborHex": "9fbf1bfffffffffffffff3104968060504e8060602cb13ffa09fd8669f1b3c1547803dffb51e9f4297051bb3eed5231e5a86ed4302f6ff1bfb4fa0c4c6c6a6a30cffff494fccd96ba8500d8735ffd9050b9fa044a07078a3ffff", + "cborBytes": [ + 159, 191, 27, 255, 255, 255, 255, 255, 255, 255, 243, 16, 73, 104, 6, 5, 4, 232, 6, 6, 2, 203, 19, 255, 160, 159, + 216, 102, 159, 27, 60, 21, 71, 128, 61, 255, 181, 30, 159, 66, 151, 5, 27, 179, 238, 213, 35, 30, 90, 134, 237, + 67, 2, 246, 255, 27, 251, 79, 160, 196, 198, 198, 166, 163, 12, 255, 255, 73, 79, 204, 217, 107, 168, 80, 13, 135, + 53, 255, 217, 5, 11, 159, 160, 68, 160, 112, 120, 163, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2520, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1617192978952011526" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "42b9829545" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1814459370658608750" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "726461667829339844" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "85f713c247d4739bbe89e2" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "045b08904c0ed83e2121ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "102d3eca0928545507f9db27" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "167ee3b30d67" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13151951975610236075" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9935" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bca128612ab9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5887698407760102022" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebc062" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f023530a7346499a972d950c" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1158022776847637677" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "424745" + } + ] + }, + "cborHex": "9f9fd8669f1b16716c7233b0bf069f4542b98295451b192e412f277c366e1b0a14e909b5e7d6c4ffff9f4b85f713c247d4739bbe89e2ffbf4b045b08904c0ed83e2121ae4c102d3eca0928545507f9db2746167ee3b30d671bb6851ea3c93ebcab429935414246bca128612ab91b51b54e81eb2c828643ebc0624cf023530a7346499a972d950cff801b10121f947fd09cadff43424745ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 22, 113, 108, 114, 51, 176, 191, 6, 159, 69, 66, 185, 130, 149, 69, 27, 25, 46, 65, + 47, 39, 124, 54, 110, 27, 10, 20, 233, 9, 181, 231, 214, 196, 255, 255, 159, 75, 133, 247, 19, 194, 71, 212, 115, + 155, 190, 137, 226, 255, 191, 75, 4, 91, 8, 144, 76, 14, 216, 62, 33, 33, 174, 76, 16, 45, 62, 202, 9, 40, 84, 85, + 7, 249, 219, 39, 70, 22, 126, 227, 179, 13, 103, 27, 182, 133, 30, 163, 201, 62, 188, 171, 66, 153, 53, 65, 66, + 70, 188, 161, 40, 97, 42, 185, 27, 81, 181, 78, 129, 235, 44, 130, 134, 67, 235, 192, 98, 76, 240, 35, 83, 10, + 115, 70, 73, 154, 151, 45, 149, 12, 255, 128, 27, 16, 18, 31, 148, 127, 208, 156, 173, 255, 67, 66, 71, 69, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2521, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6194230010380101521" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10762103397028677049" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18340861973490119088" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10037379742105354166" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12326559587984659754" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "626aa40f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "439419806585986887" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b55f6536041c527911b955aac04ffeb45b91bfe87d4ca745931b01b8b4befb1f3e43fb6412e1bab10bca2e882d52a44626aa40f1b061921fc66d41f47ffff", + "cborBytes": [ + 159, 191, 27, 85, 246, 83, 96, 65, 197, 39, 145, 27, 149, 90, 172, 4, 255, 235, 69, 185, 27, 254, 135, 212, 202, + 116, 89, 49, 176, 27, 139, 75, 239, 177, 243, 228, 63, 182, 65, 46, 27, 171, 16, 188, 162, 232, 130, 213, 42, 68, + 98, 106, 164, 15, 27, 6, 25, 33, 252, 102, 212, 31, 71, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2522, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17341591371434694353" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9295327413553219356" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e8e7b44b892f178f493dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b1fb37f5d9966b3" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c7278844282fbe805d" + }, + { + "_tag": "ByteArray", + "bytearray": "38cd71" + }, + { + "_tag": "ByteArray", + "bytearray": "cba692cbb9ca" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18147022784768920851" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14294345032628905448" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17548480654709944084" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + "cborHex": "9fd8669f1bf0a9b578fe5816d19f80ffffd8669f1b80ffa308abca471c9fbf4b1e8e7b44b892f178f493dc489b1fb37f5d9966b3ffa09f49c7278844282fbe805d4338cd7146cba692cbb9caffd8669f1bfbd72d1361124d1380ffffffbf1bc65fb7128eb725e81bf388ba2dfbccef14ff04ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 240, 169, 181, 120, 254, 88, 22, 209, 159, 128, 255, 255, 216, 102, 159, 27, 128, 255, + 163, 8, 171, 202, 71, 28, 159, 191, 75, 30, 142, 123, 68, 184, 146, 241, 120, 244, 147, 220, 72, 155, 31, 179, + 127, 93, 153, 102, 179, 255, 160, 159, 73, 199, 39, 136, 68, 40, 47, 190, 128, 93, 67, 56, 205, 113, 70, 203, 166, + 146, 203, 185, 202, 255, 216, 102, 159, 27, 251, 215, 45, 19, 97, 18, 77, 19, 128, 255, 255, 255, 191, 27, 198, + 95, 183, 18, 142, 183, 37, 232, 27, 243, 136, 186, 45, 251, 204, 239, 20, 255, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2523, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17140812967801441426" + } + } + ] + }, + "cborHex": "9f1bede066940b36cc92ff", + "cborBytes": [159, 27, 237, 224, 102, 148, 11, 54, 204, 146, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2524, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16209457533763895751" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1218608035883502486" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7308505448299452367" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70fb218d56e01f" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cf03fccc8ef08496" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12630145138966107110" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "391275973028244159" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8950656690444513445" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16377605003886258561" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f8a3b5d31998ae9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8833049522396514935" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a84dc066965a00e256f1c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3600598136681017421" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17027328306798138849" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4352913318988386589" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12457278617754161272" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11546366854404580808" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1be0f38fbeddc6c1c7bf1b10e95d8d5b45cb961b656d06fbace557cf1bffffffffffffffeb4770fb218d56e01fff48cf03fccc8ef08496d8669f1baf474a1625b393e69fbf1b056e176ca57e6abf41461b7c371ed65c6b30a51be348f0fa904ce981488f8a3b5d31998ae91b7a954bbdb9e0ca774b9a84dc066965a00e256f1c1b31f7e4edb3ce304dff1bec4d38e160a815e11b3c68a799d45e911d1bace124e6bf4e50789f1ba03cef7a932125c8ffffffff", + "cborBytes": [ + 159, 27, 224, 243, 143, 190, 221, 198, 193, 199, 191, 27, 16, 233, 93, 141, 91, 69, 203, 150, 27, 101, 109, 6, + 251, 172, 229, 87, 207, 27, 255, 255, 255, 255, 255, 255, 255, 235, 71, 112, 251, 33, 141, 86, 224, 31, 255, 72, + 207, 3, 252, 204, 142, 240, 132, 150, 216, 102, 159, 27, 175, 71, 74, 22, 37, 179, 147, 230, 159, 191, 27, 5, 110, + 23, 108, 165, 126, 106, 191, 65, 70, 27, 124, 55, 30, 214, 92, 107, 48, 165, 27, 227, 72, 240, 250, 144, 76, 233, + 129, 72, 143, 138, 59, 93, 49, 153, 138, 233, 27, 122, 149, 75, 189, 185, 224, 202, 119, 75, 154, 132, 220, 6, + 105, 101, 160, 14, 37, 111, 28, 27, 49, 247, 228, 237, 179, 206, 48, 77, 255, 27, 236, 77, 56, 225, 96, 168, 21, + 225, 27, 60, 104, 167, 153, 212, 94, 145, 29, 27, 172, 225, 36, 230, 191, 78, 80, 120, 159, 27, 160, 60, 239, 122, + 147, 33, 37, 200, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2525, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7736057842073665529" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2237457565291591161" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1f02873016663b8d76d3" + }, + { + "_tag": "ByteArray", + "bytearray": "e0bb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3441028058733356024" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b6b5bff9eb6acfff980ff1b1f0d0bcd133735f94a1f02873016663b8d76d342e0bbd8669f1b2fc0fcc9bef423f880ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 107, 91, 255, 158, 182, 172, 255, 249, 128, 255, 27, 31, 13, 11, 205, 19, 55, 53, 249, 74, + 31, 2, 135, 48, 22, 102, 59, 141, 118, 211, 66, 224, 187, 216, 102, 159, 27, 47, 192, 252, 201, 190, 244, 35, 248, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2526, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fd243c3810e955dfe1da" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "95b2d6d18173a3b0f4ed92" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5726592530372155160" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1035736368182275226" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16779906208019518869" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f" + } + ] + } + ] + }, + "cborHex": "9f4afd243c3810e955dfe1da9f4b95b2d6d18173a3b0f4ed92d8669f1b4f78f190ca3cd7189f1b0e5facbd42752c9affff1be8de33cadd601595417fffff", + "cborBytes": [ + 159, 74, 253, 36, 60, 56, 16, 233, 85, 223, 225, 218, 159, 75, 149, 178, 214, 209, 129, 115, 163, 176, 244, 237, + 146, 216, 102, 159, 27, 79, 120, 241, 144, 202, 60, 215, 24, 159, 27, 14, 95, 172, 189, 66, 117, 44, 154, 255, + 255, 27, 232, 222, 51, 202, 221, 96, 21, 149, 65, 127, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2527, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5473761753694241318" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9212243416679753324" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca3c24e048af85" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14c79337" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21180511ffc3b6d5f900fa15" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b7a368a0ef1203bc1780609" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "795f282ee3fa4cd8ccfbf9c2" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8669f1b4bf6b550521082269fbf1b7fd8769433a0a66c47ca3c24e048af85ffffffbf4414c793374c21180511ffc3b6d5f900fa154c3b7a368a0ef1203bc17806094c795f282ee3fa4cd8ccfbf9c2ffa0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 75, 246, 181, 80, 82, 16, 130, 38, 159, 191, 27, 127, 216, 118, 148, 51, 160, 166, 108, + 71, 202, 60, 36, 224, 72, 175, 133, 255, 255, 255, 191, 68, 20, 199, 147, 55, 76, 33, 24, 5, 17, 255, 195, 182, + 213, 249, 0, 250, 21, 76, 59, 122, 54, 138, 14, 241, 32, 59, 193, 120, 6, 9, 76, 121, 95, 40, 46, 227, 250, 76, + 216, 204, 251, 249, 194, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2528, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3238612711003200612" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b2cf1dd1a0c691c649fd8669f1bfffffffffffffff580ff03ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 44, 241, 221, 26, 12, 105, 28, 100, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 245, 128, 255, 3, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2529, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2568476161488466448" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1188281644757779206" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11091817006523221445" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42ad8946351bc602bf8a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14951752891659008806" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35d953be009eb3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15371770582132989069" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03441b746732d53458a620" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17517022790748813195" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36a5d861e8d286" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b23a50f75e39432101b107d9fdc30e783061b99ee0ccceb7405c54a42ad8946351bc602bf8a1bcf7f4c0984c13b264735d953be009eb31bd5537fe6bcd61c8d4b03441b746732d53458a6201bf318f76b4501378b4736a5d861e8d286ffff", + "cborBytes": [ + 159, 191, 27, 35, 165, 15, 117, 227, 148, 50, 16, 27, 16, 125, 159, 220, 48, 231, 131, 6, 27, 153, 238, 12, 204, + 235, 116, 5, 197, 74, 66, 173, 137, 70, 53, 27, 198, 2, 191, 138, 27, 207, 127, 76, 9, 132, 193, 59, 38, 71, 53, + 217, 83, 190, 0, 158, 179, 27, 213, 83, 127, 230, 188, 214, 28, 141, 75, 3, 68, 27, 116, 103, 50, 213, 52, 88, + 166, 32, 27, 243, 24, 247, 107, 69, 1, 55, 139, 71, 54, 165, 216, 97, 232, 210, 134, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2530, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "09dbfa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11714976380170388593" + } + } + ] + }, + "cborHex": "9f4309dbfa1ba293f4f2fc25c471ff", + "cborBytes": [159, 67, 9, 219, 250, 27, 162, 147, 244, 242, 252, 37, 196, 113, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2531, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3513254957797720914" + } + } + ] + }, + "cborHex": "9fa01b30c196c524e9c352ff", + "cborBytes": [159, 160, 27, 48, 193, 150, 197, 36, 233, 195, 82, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2532, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2411393918713836300" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6514442813922937072" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5986455619362797217" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14509769145733329908" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7040292507992019087" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d4731b1cce5dfc0d94dd4" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6241349432340924915" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3410485956774959009" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10004390237742651264" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9047522908203512425" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17355645122533321943" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57111589" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a8878d09991ac42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12f0083097f88794218b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "793bdc14b54071d296" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91a87bbc38bdd22ea3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2260130388199303273" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94fd572ef63cc2965397" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12646682749167444250" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1f1d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1815e854040bedc5beb4ef6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11329637842263641507" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6923254732105643795" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8070388278334093950" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11392681149695147399" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0068fa1e55d920a5d52e0328" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13672122059150432148" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12354671277646133939" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2f0fb0d70e" + } + ] + }, + "cborHex": "9fbf1b2176fdfe3279b30c1b5a67f339697908f01b531429ab0fc2b6a11bc95d0e29785bb3f41b61b424bc25b5508f4b1d4731b1cce5dfc0d94dd4ff9fbf1b569dba3d99c449f31b2f547ae87d0797a11b8ad6bbea6b0957801b7d8f422630adf2691bf0dba348e856ecd74457111589ffffbf484a8878d09991ac424a12f0083097f88794218b418d49793bdc14b54071d2964991a87bbc38bdd22ea31b1f5d989d06af68694a94fd572ef63cc29653971baf820af4932fa11a43a1f1d24cc1815e854040bedc5beb4ef641c11b9d3af5972df28da3ffbf1b6014577f74b2f7131b6fffc76161947a7e1b9e1aef2506de3d874c0068fa1e55d920a5d52e03281bbdbd2293257197941bab749c11b4d1bab3ff452f0fb0d70eff", + "cborBytes": [ + 159, 191, 27, 33, 118, 253, 254, 50, 121, 179, 12, 27, 90, 103, 243, 57, 105, 121, 8, 240, 27, 83, 20, 41, 171, + 15, 194, 182, 161, 27, 201, 93, 14, 41, 120, 91, 179, 244, 27, 97, 180, 36, 188, 37, 181, 80, 143, 75, 29, 71, 49, + 177, 204, 229, 223, 192, 217, 77, 212, 255, 159, 191, 27, 86, 157, 186, 61, 153, 196, 73, 243, 27, 47, 84, 122, + 232, 125, 7, 151, 161, 27, 138, 214, 187, 234, 107, 9, 87, 128, 27, 125, 143, 66, 38, 48, 173, 242, 105, 27, 240, + 219, 163, 72, 232, 86, 236, 215, 68, 87, 17, 21, 137, 255, 255, 191, 72, 74, 136, 120, 208, 153, 145, 172, 66, 74, + 18, 240, 8, 48, 151, 248, 135, 148, 33, 139, 65, 141, 73, 121, 59, 220, 20, 181, 64, 113, 210, 150, 73, 145, 168, + 123, 188, 56, 189, 210, 46, 163, 27, 31, 93, 152, 157, 6, 175, 104, 105, 74, 148, 253, 87, 46, 246, 60, 194, 150, + 83, 151, 27, 175, 130, 10, 244, 147, 47, 161, 26, 67, 161, 241, 210, 76, 193, 129, 94, 133, 64, 64, 190, 220, 91, + 235, 78, 246, 65, 193, 27, 157, 58, 245, 151, 45, 242, 141, 163, 255, 191, 27, 96, 20, 87, 127, 116, 178, 247, 19, + 27, 111, 255, 199, 97, 97, 148, 122, 126, 27, 158, 26, 239, 37, 6, 222, 61, 135, 76, 0, 104, 250, 30, 85, 217, 32, + 165, 213, 46, 3, 40, 27, 189, 189, 34, 147, 37, 113, 151, 148, 27, 171, 116, 156, 17, 180, 209, 186, 179, 255, 69, + 47, 15, 176, 215, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2533, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3527911828398357702" + } + } + ] + }, + "cborHex": "9f1b30f5a91dc2953cc6ff", + "cborBytes": [159, 27, 48, 245, 169, 29, 194, 149, 60, 198, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2534, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14305379160601933578" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11969572220903591772" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7323600500255428903" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17026718041958190237" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1403688454862670535" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1157644872630045188" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16982269786076653246" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4123088283033583731" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9701907372497146185" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5830115020937646456" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "362513520009240000" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7635995783471957354" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13443638667451695002" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8532366647777136273" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc5553b0c389943a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15489825857114174054" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10050686528050390526" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5db5a12c712647acdb9121" + }, + { + "_tag": "ByteArray", + "bytearray": "0a7c8f4f07f516fe" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f8d183f638038dfaadfe420d" + }, + { + "_tag": "ByteArray", + "bytearray": "e947da60619827" + } + ] + }, + "cborHex": "9fd8669f1bc686ea8dacf4370a9fd8669f1ba61c768474578f5c9f1b65a2a7da569911271bec4b0dd905a70c9d1b137ae7366f680ac7ffffbf1b1010c7e0d12a8a041bebad2464fef2a6be1b393826f2c7cac0731b86a4195a356f91491b50e8bab8e6a851781b0507e820326d5dc01b69f881b5343a056a1bba916623fe29ff9a1b76690e427e258e9148dc5553b0c389943a1bd6f6ea8c65f372661b8b7b36257d3f65feff4b5db5a12c712647acdb9121480a7c8f4f07f516feffff4cf8d183f638038dfaadfe420d47e947da60619827ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 198, 134, 234, 141, 172, 244, 55, 10, 159, 216, 102, 159, 27, 166, 28, 118, 132, 116, 87, + 143, 92, 159, 27, 101, 162, 167, 218, 86, 153, 17, 39, 27, 236, 75, 13, 217, 5, 167, 12, 157, 27, 19, 122, 231, + 54, 111, 104, 10, 199, 255, 255, 191, 27, 16, 16, 199, 224, 209, 42, 138, 4, 27, 235, 173, 36, 100, 254, 242, 166, + 190, 27, 57, 56, 38, 242, 199, 202, 192, 115, 27, 134, 164, 25, 90, 53, 111, 145, 73, 27, 80, 232, 186, 184, 230, + 168, 81, 120, 27, 5, 7, 232, 32, 50, 109, 93, 192, 27, 105, 248, 129, 181, 52, 58, 5, 106, 27, 186, 145, 102, 35, + 254, 41, 255, 154, 27, 118, 105, 14, 66, 126, 37, 142, 145, 72, 220, 85, 83, 176, 195, 137, 148, 58, 27, 214, 246, + 234, 140, 101, 243, 114, 102, 27, 139, 123, 54, 37, 125, 63, 101, 254, 255, 75, 93, 181, 161, 44, 113, 38, 71, + 172, 219, 145, 33, 72, 10, 124, 143, 79, 7, 245, 22, 254, 255, 255, 76, 248, 209, 131, 246, 56, 3, 141, 250, 173, + 254, 66, 13, 71, 233, 71, 218, 96, 97, 152, 39, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2535, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e284619bd8dc55" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11562368729894427444" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2dd543061960c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87e76ce0152c" + } + } + ] + } + ] + }, + "cborHex": "9fbf47e284619bd8dc551ba075c9198b711b3447e2dd543061960c4687e76ce0152cffff", + "cborBytes": [ + 159, 191, 71, 226, 132, 97, 155, 216, 220, 85, 27, 160, 117, 201, 25, 139, 113, 27, 52, 71, 226, 221, 84, 48, 97, + 150, 12, 70, 135, 231, 108, 224, 21, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2536, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9f4525515df7b1a14b83a105" + }, + { + "_tag": "ByteArray", + "bytearray": "03f8" + } + ] + }, + "cborHex": "9f4c9f4525515df7b1a14b83a1054203f8ff", + "cborBytes": [159, 76, 159, 69, 37, 81, 93, 247, 177, 161, 75, 131, 161, 5, 66, 3, 248, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2537, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7640746827691892468" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4905722305633727038" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cddf508ce9e55d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7948499401778381862" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "884267621514602488" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9867180019599362134" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea7ed6da126c6ca6" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9d75ce22955756c513d01c73" + }, + { + "_tag": "ByteArray", + "bytearray": "63899cf0374fb75e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18147363107092582389" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc3083" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cad10ff6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3800424675951070399" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5344434873327843321" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3029539442363114055" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5cfa40ff8377b51382" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14875156182470995425" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14090788304653027707" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9354177086983031753" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4081591035731267677" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cdbe17300b1dbf89" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9242768011551142468" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5542796224894672145" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10613369645695787827" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14546897692357026965" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11664671604949453417" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8843598902970794644" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12856847895152844134" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13504970093899489060" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc01f3050201fb01f9ffff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17055664862659531497" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14873264121357323463" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4506" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "541663c8d1075dc9d8fde5" + } + ] + }, + "cborHex": "9fd8669f1b6a0962c1e3449ef49fd8669f1b4414a0720202323e9f47cddf508ce9e55d1b6e4ebe17cc67c4261b0c458cb77ac1e7f81b88ef43f3030d485648ea7ed6da126c6ca6ffff9f4c9d75ce22955756c513d01c734863899cf0374fb75e1bfbd86298d8484ff543cc3083ff44cad10ff61b34bdd21b75b14cbfffff1b4a2b3f3385ea77f9d8669f1bfffffffffffffff09f9f1b2a0b16125716a247495cfa40ff8377b513821bce6f2bbc6aa3ade11bc38c894e9012897b1b81d0b68003b8cbc9ffbf1b38a4b96bfb2e505d48cdbe17300b1dbf891b8044e88945d972441b4cebf7ccaf391d111b934a4375f19c633341f71bc9e0f660e0e3e4951ba1e13d05ca990a69ffffffbf1b7abac658cb9bc2941bb26cb30ac9d05d661bbb6b4abf7d271f244bfc01f3050201fb01f9ffff1becb1e4d3eaeed2e941b61bfffffffffffffff11bce6872ea9c10ccc71bfffffffffffffff3424506ff4b541663c8d1075dc9d8fde5ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 106, 9, 98, 193, 227, 68, 158, 244, 159, 216, 102, 159, 27, 68, 20, 160, 114, 2, 2, 50, + 62, 159, 71, 205, 223, 80, 140, 233, 229, 93, 27, 110, 78, 190, 23, 204, 103, 196, 38, 27, 12, 69, 140, 183, 122, + 193, 231, 248, 27, 136, 239, 67, 243, 3, 13, 72, 86, 72, 234, 126, 214, 218, 18, 108, 108, 166, 255, 255, 159, 76, + 157, 117, 206, 34, 149, 87, 86, 197, 19, 208, 28, 115, 72, 99, 137, 156, 240, 55, 79, 183, 94, 27, 251, 216, 98, + 152, 216, 72, 79, 245, 67, 204, 48, 131, 255, 68, 202, 209, 15, 246, 27, 52, 189, 210, 27, 117, 177, 76, 191, 255, + 255, 27, 74, 43, 63, 51, 133, 234, 119, 249, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 159, + 27, 42, 11, 22, 18, 87, 22, 162, 71, 73, 92, 250, 64, 255, 131, 119, 181, 19, 130, 27, 206, 111, 43, 188, 106, + 163, 173, 225, 27, 195, 140, 137, 78, 144, 18, 137, 123, 27, 129, 208, 182, 128, 3, 184, 203, 201, 255, 191, 27, + 56, 164, 185, 107, 251, 46, 80, 93, 72, 205, 190, 23, 48, 11, 29, 191, 137, 27, 128, 68, 232, 137, 69, 217, 114, + 68, 27, 76, 235, 247, 204, 175, 57, 29, 17, 27, 147, 74, 67, 117, 241, 156, 99, 51, 65, 247, 27, 201, 224, 246, + 96, 224, 227, 228, 149, 27, 161, 225, 61, 5, 202, 153, 10, 105, 255, 255, 255, 191, 27, 122, 186, 198, 88, 203, + 155, 194, 148, 27, 178, 108, 179, 10, 201, 208, 93, 102, 27, 187, 107, 74, 191, 125, 39, 31, 36, 75, 252, 1, 243, + 5, 2, 1, 251, 1, 249, 255, 255, 27, 236, 177, 228, 211, 234, 238, 210, 233, 65, 182, 27, 255, 255, 255, 255, 255, + 255, 255, 241, 27, 206, 104, 114, 234, 156, 16, 204, 199, 27, 255, 255, 255, 255, 255, 255, 255, 243, 66, 69, 6, + 255, 75, 84, 22, 99, 200, 209, 7, 93, 201, 216, 253, 229, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2538, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2780144942504752005" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "735543957661907080" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7495204852258111724" + } + } + ] + }, + "cborHex": "9f9f1b26950f186a183385d8669f1b0a352d55191f788880ffff1b6804511a11a100ecff", + "cborBytes": [ + 159, 159, 27, 38, 149, 15, 24, 106, 24, 51, 133, 216, 102, 159, 27, 10, 53, 45, 85, 25, 31, 120, 136, 128, 255, + 255, 27, 104, 4, 81, 26, 17, 161, 0, 236, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2539, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18425207314108596597" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f1bffb37c6e665f4175a0ff", + "cborBytes": [159, 27, 255, 179, 124, 110, 102, 95, 65, 117, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2540, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c860b032f2" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9625920468055513703" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1c64d86e2b8d3c9e9c3528ec" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13321557055512482021" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3d76b0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7105574267642113087" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9538242705632989900" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9872701773273905346" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e32cbac4f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18f0708914d5df89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6f25f16" + } + } + ] + } + ] + }, + "cborHex": "9f45c860b032f2d8669f1b859623aa569c5a679f4c1c64d86e2b8d3c9e9c3528ecd8669f1bb8dfad8fb4eb90e580ffffff433d76b0bf1b629c122643f6ec3f1b845ea5347ab712cc1b8902e1f4795c38c2454e32cbac4f4818f0708914d5df8944a6f25f16ffff", + "cborBytes": [ + 159, 69, 200, 96, 176, 50, 242, 216, 102, 159, 27, 133, 150, 35, 170, 86, 156, 90, 103, 159, 76, 28, 100, 216, + 110, 43, 141, 60, 158, 156, 53, 40, 236, 216, 102, 159, 27, 184, 223, 173, 143, 180, 235, 144, 229, 128, 255, 255, + 255, 67, 61, 118, 176, 191, 27, 98, 156, 18, 38, 67, 246, 236, 63, 27, 132, 94, 165, 52, 122, 183, 18, 204, 27, + 137, 2, 225, 244, 121, 92, 56, 194, 69, 78, 50, 203, 172, 79, 72, 24, 240, 112, 137, 20, 213, 223, 137, 68, 166, + 242, 95, 22, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2541, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2013406649020517339" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2891429075099537471" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4375825185910790535" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1433301196608916992" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8617304020707269618" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d244a450cb55ca09d06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13670877607906669194" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab34" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15688548413785371579" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14581877151514348098" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17241924259492999709" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b39f5cdfe0e09a97e2737558" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8221823842755114551" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "54" + }, + { + "_tag": "ByteArray", + "bytearray": "a03294" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4467611572510066834" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11957692778603561286" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5265236416975985711" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1342960145849581992" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9d8a5e541a" + } + ] + }, + "cborHex": "9fbf1b1bf10eae07470bdb1b28206b6ca28b503f1b3cba0dd28d6b99871b13e41bd828044e001b7796d059b3cd5bf24a5d244a450cb55ca09d061bbdb8b6c0c31e728a42ab341bd9b8eba92d31f3bb1bca5d3c02de65ca421bef479ec32b45321d4cb39f5cdfe0e09a97e2737558ff9fa0d8669f1b7219c939514176379f415443a032941b3e00250e05e308921ba5f2423a41eb4146ffffd8669f1b4911e09ff44ddc2f9f1b12a3272328df01a8ffffff459d8a5e541aff", + "cborBytes": [ + 159, 191, 27, 27, 241, 14, 174, 7, 71, 11, 219, 27, 40, 32, 107, 108, 162, 139, 80, 63, 27, 60, 186, 13, 210, 141, + 107, 153, 135, 27, 19, 228, 27, 216, 40, 4, 78, 0, 27, 119, 150, 208, 89, 179, 205, 91, 242, 74, 93, 36, 74, 69, + 12, 181, 92, 160, 157, 6, 27, 189, 184, 182, 192, 195, 30, 114, 138, 66, 171, 52, 27, 217, 184, 235, 169, 45, 49, + 243, 187, 27, 202, 93, 60, 2, 222, 101, 202, 66, 27, 239, 71, 158, 195, 43, 69, 50, 29, 76, 179, 159, 92, 223, + 224, 224, 154, 151, 226, 115, 117, 88, 255, 159, 160, 216, 102, 159, 27, 114, 25, 201, 57, 81, 65, 118, 55, 159, + 65, 84, 67, 160, 50, 148, 27, 62, 0, 37, 14, 5, 227, 8, 146, 27, 165, 242, 66, 58, 65, 235, 65, 70, 255, 255, 216, + 102, 159, 27, 73, 17, 224, 159, 244, 77, 220, 47, 159, 27, 18, 163, 39, 35, 40, 223, 1, 168, 255, 255, 255, 69, + 157, 138, 94, 84, 26, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2542, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03f8d905" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdb24107" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1684747159f32e3b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17143729894780721384" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9bc9cb27e40a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78fa04050053039f7702" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f67f05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d1244bcd6d3ee0223" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0cdc050002323195" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8a807ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7201932855103174626" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eebc11" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6306f969" + } + } + ] + } + ] + }, + "cborHex": "9fbf4403f8d90544fdb24107481684747159f32e3b1bedeac38207a658e8ffbf416d469bc9cb27e40a4a78fa04050053039f770243f67f05497d1244bcd6d3ee0223480cdc05000232319544b8a807ed1b63f267c634a3b7e243eebc11446306f969ffff", + "cborBytes": [ + 159, 191, 68, 3, 248, 217, 5, 68, 253, 178, 65, 7, 72, 22, 132, 116, 113, 89, 243, 46, 59, 27, 237, 234, 195, 130, + 7, 166, 88, 232, 255, 191, 65, 109, 70, 155, 201, 203, 39, 228, 10, 74, 120, 250, 4, 5, 0, 83, 3, 159, 119, 2, 67, + 246, 127, 5, 73, 125, 18, 68, 188, 214, 211, 238, 2, 35, 72, 12, 220, 5, 0, 2, 50, 49, 149, 68, 184, 168, 7, 237, + 27, 99, 242, 103, 198, 52, 163, 183, 226, 67, 238, 188, 17, 68, 99, 6, 249, 105, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2543, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2064764175666139509" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bef6209a40ead4c159ec53" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b1ca78414038851754bbef6209a40ead4c159ec53ffff", + "cborBytes": [ + 159, 191, 27, 28, 167, 132, 20, 3, 136, 81, 117, 75, 190, 246, 32, 154, 64, 234, 212, 193, 89, 236, 83, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2544, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "70150485b34d1f1aa3" + }, + { + "_tag": "ByteArray", + "bytearray": "32e66e539b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d83e55" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17451866654763972963" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13467957541807347206" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3640628537654275736" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12301799178388281827" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1482545765298871803" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3361201311964621538" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12598464068201333856" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ba12308a9df133" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1166963892672598911" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4345027294134184839" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2568023338024570303" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17179655835683092425" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5181567429715768470" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd04afd0876b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7079391471791185032" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67dc2bfa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13560985390764367711" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2062104333686291113" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14343155161548481553" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "488c94b219" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10854209658902834485" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "293051042159096004" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f894aa9c5ffb93c81bbe4d9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5488759570291091408" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1ca827118e1506c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7917104872677273792" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3935656983021721710" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10411055270869855929" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "928141c5e49d561110e4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3120276085868995234" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12428742234881118952" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4566499171084600689" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0464" + } + ] + } + ] + } + ] + }, + "cborHex": "9f4970150485b34d1f1aa34532e66e539b9f43d83e559f1bf2317c4230b0f9631bbae7cc07297856061b32861c5dba086e981baab8c52cce0699e31b14930f84c7e61dfbff1b2ea562c8ea3a6ae2d8669f1baed6bc520ca9c4609f47ba12308a9df133ffffbf1b1031e37a4075137f1b3c4ca34d963eab871b23a3739eb5de0dbf1bee6a65f5f95b77c91b47e8a01fcbf1349646fd04afd0876b1b623f0d090e0b1c884467dc2bfa1bbc324c5d1cc59f5f1b1c9e10f74b2a3aa91bc70d1fa04a68641145488c94b219ffffd8669f1b96a1e62d3c846d359fbf1b0411205ec4f370c44c8f894aa9c5ffb93c81bbe4d91b4c2bfdbf9cb9e7d048d1ca827118e1506c1b6ddf34ef617170c01b369e432c8ecb986e42cb811b907b7f9bd527eeb9ff4a928141c5e49d561110e4d8669f1b2b4d7291735e22a29f1bac7bc3365afbd2e81b3f5f76cd3f9d0571420464ffffffffff", + "cborBytes": [ + 159, 73, 112, 21, 4, 133, 179, 77, 31, 26, 163, 69, 50, 230, 110, 83, 155, 159, 67, 216, 62, 85, 159, 27, 242, 49, + 124, 66, 48, 176, 249, 99, 27, 186, 231, 204, 7, 41, 120, 86, 6, 27, 50, 134, 28, 93, 186, 8, 110, 152, 27, 170, + 184, 197, 44, 206, 6, 153, 227, 27, 20, 147, 15, 132, 199, 230, 29, 251, 255, 27, 46, 165, 98, 200, 234, 58, 106, + 226, 216, 102, 159, 27, 174, 214, 188, 82, 12, 169, 196, 96, 159, 71, 186, 18, 48, 138, 157, 241, 51, 255, 255, + 191, 27, 16, 49, 227, 122, 64, 117, 19, 127, 27, 60, 76, 163, 77, 150, 62, 171, 135, 27, 35, 163, 115, 158, 181, + 222, 13, 191, 27, 238, 106, 101, 245, 249, 91, 119, 201, 27, 71, 232, 160, 31, 203, 241, 52, 150, 70, 253, 4, 175, + 208, 135, 107, 27, 98, 63, 13, 9, 14, 11, 28, 136, 68, 103, 220, 43, 250, 27, 188, 50, 76, 93, 28, 197, 159, 95, + 27, 28, 158, 16, 247, 75, 42, 58, 169, 27, 199, 13, 31, 160, 74, 104, 100, 17, 69, 72, 140, 148, 178, 25, 255, + 255, 216, 102, 159, 27, 150, 161, 230, 45, 60, 132, 109, 53, 159, 191, 27, 4, 17, 32, 94, 196, 243, 112, 196, 76, + 143, 137, 74, 169, 197, 255, 185, 60, 129, 187, 228, 217, 27, 76, 43, 253, 191, 156, 185, 231, 208, 72, 209, 202, + 130, 113, 24, 225, 80, 108, 27, 109, 223, 52, 239, 97, 113, 112, 192, 27, 54, 158, 67, 44, 142, 203, 152, 110, 66, + 203, 129, 27, 144, 123, 127, 155, 213, 39, 238, 185, 255, 74, 146, 129, 65, 197, 228, 157, 86, 17, 16, 228, 216, + 102, 159, 27, 43, 77, 114, 145, 115, 94, 34, 162, 159, 27, 172, 123, 195, 54, 90, 251, 210, 232, 27, 63, 95, 118, + 205, 63, 157, 5, 113, 66, 4, 100, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2545, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "580300be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17082585798288249625" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18163957885054468113" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4518272647779436422" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8969169011996977635" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10668019794278442195" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2122498952133611610" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99a614362e5f32" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2c471" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d89e9d554612af" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4550994997059237474" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7840475301156508698" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88b83c2e1840984f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10895712691785031413" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1761063e815724c74c6e0a5a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17555233132950497244" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10417979942187973270" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf44580300be1bed118946b01a9319ffd9050c9f1bfc135775add3c011bf1b3eb42108c941c7861b7c78e3b21a8569e31b940c6b7b36cd64d31b1d74a18d2e10105a4799a614362e5f3243b2c471ffffd905029f47d89e9d554612afffbf1b3f2861d66e4bb66241b61b6ccef6beeba8541a4888b83c2e1840984f1b973558f7188fdef54c1761063e815724c74c6e0a5a1bf3a0b785d6aea7dc1b9094198f83423a96ffff", + "cborBytes": [ + 159, 191, 68, 88, 3, 0, 190, 27, 237, 17, 137, 70, 176, 26, 147, 25, 255, 217, 5, 12, 159, 27, 252, 19, 87, 117, + 173, 211, 192, 17, 191, 27, 62, 180, 33, 8, 201, 65, 199, 134, 27, 124, 120, 227, 178, 26, 133, 105, 227, 27, 148, + 12, 107, 123, 54, 205, 100, 211, 27, 29, 116, 161, 141, 46, 16, 16, 90, 71, 153, 166, 20, 54, 46, 95, 50, 67, 178, + 196, 113, 255, 255, 217, 5, 2, 159, 71, 216, 158, 157, 85, 70, 18, 175, 255, 191, 27, 63, 40, 97, 214, 110, 75, + 182, 98, 65, 182, 27, 108, 206, 246, 190, 235, 168, 84, 26, 72, 136, 184, 60, 46, 24, 64, 152, 79, 27, 151, 53, + 88, 247, 24, 143, 222, 245, 76, 23, 97, 6, 62, 129, 87, 36, 199, 76, 110, 10, 90, 27, 243, 160, 183, 133, 214, + 174, 167, 220, 27, 144, 148, 25, 143, 131, 66, 58, 150, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2546, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14966455509669803454" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6873911204286426559" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4610642402682768057" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4d16ee70bf315cbb" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "481be1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15771262804384941463" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14025295319469739041" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd905029fbf1bcfb387fd888e75be1bffffffffffffffebffffd8669f1bffffffffffffffef9f1b5f6509d21d11edbf1b3ffc4ad646428ab9484d16ee70bf315cbb9f43481be11bdadec7f5fab205971bc2a3dbc8aaf14c21ffffffff", + "cborBytes": [ + 159, 217, 5, 2, 159, 191, 27, 207, 179, 135, 253, 136, 142, 117, 190, 27, 255, 255, 255, 255, 255, 255, 255, 235, + 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 27, 95, 101, 9, 210, 29, 17, 237, 191, + 27, 63, 252, 74, 214, 70, 66, 138, 185, 72, 77, 22, 238, 112, 191, 49, 92, 187, 159, 67, 72, 27, 225, 27, 218, + 222, 199, 245, 250, 178, 5, 151, 27, 194, 163, 219, 200, 170, 241, 76, 33, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2547, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7351777207470998744" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2cb623c090" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00be77f8dea19bf6221ea6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6371427791532389965" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01f5ca77d996a9342349" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38f5af32f80bb3b04fd5c2c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4550825913811839089" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0cd3cd790d3a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5720854316269409785" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16167427915341634945" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17022031400075629565" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b00acfc5897037" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8890734612861416145" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c349c5361c2db9" + }, + { + "_tag": "ByteArray", + "bytearray": "912bdd9245e652b522" + }, + { + "_tag": "ByteArray", + "bytearray": "55f283" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b6606c26b371f44d89f452cb623c090bf4b00be77f8dea19bf6221ea61b586bdbd1b256f64d4a01f5ca77d996a93423494c38f5af32f80bb3b04fd5c2c1411e1b3f27c80eab65a87147f0cd3cd790d3a91b4f648eb0b4ff95f9ffffff9f80ff1be05e3e07c1ac1d819fd8669f1bec3a675f2d0d93fd9f47b00acfc58970371b7b623c0677dff2d147c349c5361c2db949912bdd9245e652b5224355f283ffffa0a0ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 102, 6, 194, 107, 55, 31, 68, 216, 159, 69, 44, 182, 35, 192, 144, 191, 75, 0, 190, 119, + 248, 222, 161, 155, 246, 34, 30, 166, 27, 88, 107, 219, 209, 178, 86, 246, 77, 74, 1, 245, 202, 119, 217, 150, + 169, 52, 35, 73, 76, 56, 245, 175, 50, 248, 11, 179, 176, 79, 213, 194, 193, 65, 30, 27, 63, 39, 200, 14, 171, + 101, 168, 113, 71, 240, 205, 60, 215, 144, 211, 169, 27, 79, 100, 142, 176, 180, 255, 149, 249, 255, 255, 255, + 159, 128, 255, 27, 224, 94, 62, 7, 193, 172, 29, 129, 159, 216, 102, 159, 27, 236, 58, 103, 95, 45, 13, 147, 253, + 159, 71, 176, 10, 207, 197, 137, 112, 55, 27, 123, 98, 60, 6, 119, 223, 242, 209, 71, 195, 73, 197, 54, 28, 45, + 185, 73, 145, 43, 221, 146, 69, 230, 82, 181, 34, 67, 85, 242, 131, 255, 255, 160, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2548, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11494191511792345427" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12e723a87270f313b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17741542474923634991" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "497f4478fab726a4f5cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c47" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84840e5f80def7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1145066565856887859" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2808844093504959094" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14134786607902474347" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "18b4b6" + }, + { + "_tag": "ByteArray", + "bytearray": "b44c88" + }, + { + "_tag": "ByteArray", + "bytearray": "a618f0501e14a57f77571a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4493480265440277297" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b9f839247f8b161539f41c4bf4912e723a87270f313b71bf6369ee1d953f12f4a497f4478fab726a4f5cb427c474784840e5f80def71b0fe417f98e13843342b2c31b26fb04d236d13276ffd8669f1bc428d987d3f9c06b9f4318b4b643b44c884ba618f0501e14a57f77571affff9f1b3e5c0c7e72cbb331ffffff", + "cborBytes": [ + 159, 27, 159, 131, 146, 71, 248, 177, 97, 83, 159, 65, 196, 191, 73, 18, 231, 35, 168, 114, 112, 243, 19, 183, 27, + 246, 54, 158, 225, 217, 83, 241, 47, 74, 73, 127, 68, 120, 250, 183, 38, 164, 245, 203, 66, 124, 71, 71, 132, 132, + 14, 95, 128, 222, 247, 27, 15, 228, 23, 249, 142, 19, 132, 51, 66, 178, 195, 27, 38, 251, 4, 210, 54, 209, 50, + 118, 255, 216, 102, 159, 27, 196, 40, 217, 135, 211, 249, 192, 107, 159, 67, 24, 180, 182, 67, 180, 76, 136, 75, + 166, 24, 240, 80, 30, 20, 165, 127, 119, 87, 26, 255, 255, 159, 27, 62, 92, 12, 126, 114, 203, 179, 49, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2549, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17971018588298428528" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01bc46d571" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a33" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a8a3b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f5423f583e6c7fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c17cc59e325" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17625220494899517863" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1954148465966844264" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20834777662212109" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2350420044939997804" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5374c58885fea8cb3591df" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "253956218277690047" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05fb07f9040f706afd76077b" + } + ] + }, + "cborHex": "9fd87c9f9f1bf965e23107784070ffbf4501bc46d571427a33435a8a3b486f5423f583e6c7fc465c17cc59e3251bf4995ca85e6b99a7ffd8669f1b1b1e87ad205409689f1b004a051eb187c80d1b209e5e93eb9b326c4b5374c58885fea8cb3591dfffff1b03863bd5c2f17abf80ff4c05fb07f9040f706afd76077bff", + "cborBytes": [ + 159, 216, 124, 159, 159, 27, 249, 101, 226, 49, 7, 120, 64, 112, 255, 191, 69, 1, 188, 70, 213, 113, 66, 122, 51, + 67, 90, 138, 59, 72, 111, 84, 35, 245, 131, 230, 199, 252, 70, 92, 23, 204, 89, 227, 37, 27, 244, 153, 92, 168, + 94, 107, 153, 167, 255, 216, 102, 159, 27, 27, 30, 135, 173, 32, 84, 9, 104, 159, 27, 0, 74, 5, 30, 177, 135, 200, + 13, 27, 32, 158, 94, 147, 235, 155, 50, 108, 75, 83, 116, 197, 136, 133, 254, 168, 203, 53, 145, 223, 255, 255, + 27, 3, 134, 59, 213, 194, 241, 122, 191, 128, 255, 76, 5, 251, 7, 249, 4, 15, 112, 106, 253, 118, 7, 123, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2550, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a38dce6ca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17141636941266394845" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7593665516643152014" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12584616210921981878" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7759956331293815704" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eb6eef4969b18693bc" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "171c430c056be5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5702811710720200133" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3338221814669054602" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10065657930311447420" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4516905524099393881" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1103273465776787482" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4a" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11703609847184300218" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dbe137d523" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13026169633198492158" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dfb98f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17138025299099951753" + } + }, + { + "_tag": "ByteArray", + "bytearray": "67675bcea20d430c452078e0" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7596036898888605416" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10462681199438568693" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3411210158865711712" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6d9cf12" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11323964770675591717" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f789c8eb7081" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12726417909510330002" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf454a38dce6ca1bede353fa50e59eddff9f9f1b69621e8deea5f08e1baea589c486a087b61b6bb0e72b574fb39849eb6eef4969b18693bcff47171c430c056be5d8669f1b4f2475093e6a4dc59f1b2e53bf0dc4cf128affff9f1b8bb0668eb6ceb37c1b3eaf45a47ff1a9591b0f4f9d5f29bd501a414affffd8669f1ba26b9325cb2f18ba9f9f45dbe137d5231bb4c640440ac6c9fe43dfb98f1bedd67f355882a2894c67675bcea20d430c452078e0ff1b696a8b506303dee8d8669f1b9132e91e02b19cf59f1b2f570d90ed65026044d6d9cf12ffffd8669f1b9d26cdf645280a259f46f789c8eb70811bb09d51a947885692ffffffffff", + "cborBytes": [ + 159, 191, 69, 74, 56, 220, 230, 202, 27, 237, 227, 83, 250, 80, 229, 158, 221, 255, 159, 159, 27, 105, 98, 30, + 141, 238, 165, 240, 142, 27, 174, 165, 137, 196, 134, 160, 135, 182, 27, 107, 176, 231, 43, 87, 79, 179, 152, 73, + 235, 110, 239, 73, 105, 177, 134, 147, 188, 255, 71, 23, 28, 67, 12, 5, 107, 229, 216, 102, 159, 27, 79, 36, 117, + 9, 62, 106, 77, 197, 159, 27, 46, 83, 191, 13, 196, 207, 18, 138, 255, 255, 159, 27, 139, 176, 102, 142, 182, 206, + 179, 124, 27, 62, 175, 69, 164, 127, 241, 169, 89, 27, 15, 79, 157, 95, 41, 189, 80, 26, 65, 74, 255, 255, 216, + 102, 159, 27, 162, 107, 147, 37, 203, 47, 24, 186, 159, 159, 69, 219, 225, 55, 213, 35, 27, 180, 198, 64, 68, 10, + 198, 201, 254, 67, 223, 185, 143, 27, 237, 214, 127, 53, 88, 130, 162, 137, 76, 103, 103, 91, 206, 162, 13, 67, + 12, 69, 32, 120, 224, 255, 27, 105, 106, 139, 80, 99, 3, 222, 232, 216, 102, 159, 27, 145, 50, 233, 30, 2, 177, + 156, 245, 159, 27, 47, 87, 13, 144, 237, 101, 2, 96, 68, 214, 217, 207, 18, 255, 255, 216, 102, 159, 27, 157, 38, + 205, 246, 69, 40, 10, 37, 159, 70, 247, 137, 200, 235, 112, 129, 27, 176, 157, 81, 169, 71, 136, 86, 146, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2551, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13002954209435411277" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6712250582156351509" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14887355335604231418" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + ] + } + ] + }, + "cborHex": "9f9f1bb473c5f5fc11634d1b5d26b45768d698151bce9a82cd17b4dcfaff9f1bfffffffffffffff6ffff", + "cborBytes": [ + 159, 159, 27, 180, 115, 197, 245, 252, 17, 99, 77, 27, 93, 38, 180, 87, 104, 214, 152, 21, 27, 206, 154, 130, 205, + 23, 180, 220, 250, 255, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2552, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b71a14a2ca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "265455518498893326" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffdc8e45" + } + } + ] + } + ] + }, + "cborHex": "9fbf45b71a14a2ca1b03af16633bcb2e0e41d844ffdc8e45ffff", + "cborBytes": [ + 159, 191, 69, 183, 26, 20, 162, 202, 27, 3, 175, 22, 99, 59, 203, 46, 14, 65, 216, 68, 255, 220, 142, 69, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2553, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8f8afc40180f75" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12970364756925706321" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13180421697810089851" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2324391028300011523" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "536906f6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12592275845297782429" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4936856074867047706" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17147859777466540631" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6263aba0" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2072646680998541818" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10897376269516982171" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11109302352570754868" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10465148123054873313" + } + }, + { + "_tag": "ByteArray", + "bytearray": "125de602caff1e79f7f99fe7" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1256512160531368223" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f39f6deca3ed8522" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16d1ca3a78" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f806eb672f35f12b7d" + } + } + ] + } + ] + }, + "cborHex": "9f478f8afc40180f75d8669f1bb3fffe06c7cd705180ffd8669f1bb6ea43b387d2477b9fbf1b2041e55338ed580344536906f61baec0c02a20b4be9d1b44833c7189adfd1a1bedf96f9d461a2257446263aba0ff1b1cc3852ccdcf79fa1b973b41faf854c79bd8669f1b9a2c2ba14b6427349f1b913bacc56c881ae14c125de602caff1e79f7f99fe7ffff1b11700727186e491fffff48f39f6deca3ed8522bf4516d1ca3a7849f806eb672f35f12b7dffff", + "cborBytes": [ + 159, 71, 143, 138, 252, 64, 24, 15, 117, 216, 102, 159, 27, 179, 255, 254, 6, 199, 205, 112, 81, 128, 255, 216, + 102, 159, 27, 182, 234, 67, 179, 135, 210, 71, 123, 159, 191, 27, 32, 65, 229, 83, 56, 237, 88, 3, 68, 83, 105, 6, + 246, 27, 174, 192, 192, 42, 32, 180, 190, 157, 27, 68, 131, 60, 113, 137, 173, 253, 26, 27, 237, 249, 111, 157, + 70, 26, 34, 87, 68, 98, 99, 171, 160, 255, 27, 28, 195, 133, 44, 205, 207, 121, 250, 27, 151, 59, 65, 250, 248, + 84, 199, 155, 216, 102, 159, 27, 154, 44, 43, 161, 75, 100, 39, 52, 159, 27, 145, 59, 172, 197, 108, 136, 26, 225, + 76, 18, 93, 230, 2, 202, 255, 30, 121, 247, 249, 159, 231, 255, 255, 27, 17, 112, 7, 39, 24, 110, 73, 31, 255, + 255, 72, 243, 159, 109, 236, 163, 237, 133, 34, 191, 69, 22, 209, 202, 58, 120, 73, 248, 6, 235, 103, 47, 53, 241, + 43, 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2554, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15505956953658124911" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eff44f" + }, + { + "_tag": "ByteArray", + "bytearray": "37d56305729f6204b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15855100144082593176" + } + } + ] + } + ] + }, + "cborHex": "9fa01bd73039b1fd4a6a6f9f43eff44f4937d56305729f6204b71bdc08a193be49a598ffff", + "cborBytes": [ + 159, 160, 27, 215, 48, 57, 177, 253, 74, 106, 111, 159, 67, 239, 244, 79, 73, 55, 213, 99, 5, 114, 159, 98, 4, + 183, 27, 220, 8, 161, 147, 190, 73, 165, 152, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2555, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "385a0e0e73be0eada5" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd9050c9f49385a0e0e73be0eada580ffff", + "cborBytes": [159, 217, 5, 12, 159, 73, 56, 90, 14, 14, 115, 190, 14, 173, 165, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2556, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6038256288763162724" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16791984899202046954" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c3f802" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b5a0" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6affd13fa480ae0b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "170fb950a7" + }, + { + "_tag": "ByteArray", + "bytearray": "47d054255f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5150883679340466497" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2457992274802892647" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "832acaa79e74" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7040368742214188728" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15750038201663972282" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9617490628795197168" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a37579ca8da8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10246074774422358574" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec90d3d999fa11" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11762742190412953061" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17539519740707377164" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8065859701314183962" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "607233866591298654" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d708f9353d9e73c7437efa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14046692087038512661" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8df59051b781d0fa93" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5f24ee3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5a94a1343a7171e3fa7" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0353a6e4" + } + ] + } + ] + }, + "cborHex": "9f9f9f0bff1b53cc321a427f3064d8669f1be9091d4c4ea95bea80ffd9050d8043c3f802ff9f42b5a0ff9f486affd13fa480ae0b9f45170fb950a74547d054255f1b477b9d6a72721141ffbf1b221c8af37047df6746832acaa79e741b61b46a11cf70beb81bda93604c110363ba1b857830c56ffc66f046a37579ca8da81b8e315eb8a7890a2e47ec90d3d999fa111ba33da7b3541075e541cb1bf368e4469bd0900c1b6fefb0a9e0f8631affbf1b086d53fc01c2e45e4bd708f9353d9e73c7437efa1bc2efe007d5388e15498df59051b781d0fa9344f5f24ee34ac5a94a1343a7171e3fa7ff440353a6e4ffff", + "cborBytes": [ + 159, 159, 159, 11, 255, 27, 83, 204, 50, 26, 66, 127, 48, 100, 216, 102, 159, 27, 233, 9, 29, 76, 78, 169, 91, + 234, 128, 255, 217, 5, 13, 128, 67, 195, 248, 2, 255, 159, 66, 181, 160, 255, 159, 72, 106, 255, 209, 63, 164, + 128, 174, 11, 159, 69, 23, 15, 185, 80, 167, 69, 71, 208, 84, 37, 95, 27, 71, 123, 157, 106, 114, 114, 17, 65, + 255, 191, 27, 34, 28, 138, 243, 112, 71, 223, 103, 70, 131, 42, 202, 167, 158, 116, 27, 97, 180, 106, 17, 207, + 112, 190, 184, 27, 218, 147, 96, 76, 17, 3, 99, 186, 27, 133, 120, 48, 197, 111, 252, 102, 240, 70, 163, 117, 121, + 202, 141, 168, 27, 142, 49, 94, 184, 167, 137, 10, 46, 71, 236, 144, 211, 217, 153, 250, 17, 27, 163, 61, 167, + 179, 84, 16, 117, 229, 65, 203, 27, 243, 104, 228, 70, 155, 208, 144, 12, 27, 111, 239, 176, 169, 224, 248, 99, + 26, 255, 191, 27, 8, 109, 83, 252, 1, 194, 228, 94, 75, 215, 8, 249, 53, 61, 158, 115, 199, 67, 126, 250, 27, 194, + 239, 224, 7, 213, 56, 142, 21, 73, 141, 245, 144, 81, 183, 129, 208, 250, 147, 68, 245, 242, 78, 227, 74, 197, + 169, 74, 19, 67, 167, 23, 30, 63, 167, 255, 68, 3, 83, 166, 228, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2557, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3833237762104379090" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7827378870644596035" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16112011831925923293" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f4d2" + }, + { + "_tag": "ByteArray", + "bytearray": "266fed7124d5" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1063219051757463404" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17718255391828640070" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "859254370104129721" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6879861058458556608" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1942670144722784647" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1857621212642376607" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7774771918871300937" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1393178148326128839" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9632552770879099395" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d3cf21819b9bd6bd1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10886531337854835920" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11454666907553221388" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6d3c3d1b15e5ca5c78dade" + }, + { + "_tag": "ByteArray", + "bytearray": "8d4c9602" + } + ] + }, + "cborHex": "9fd8669f1b3532656f6dd846d29fd8669f1b6ca06f9c932b5d439f1bdf995d6562d5dddd42f4d246266fed7124d5ffff1b0ec150182a6e676c1bf5e3e3674d988146bf1b0becaf4c0dc238b91b5f7a2d2e7d7718c01b1af5c03433f551871b19c798a69ac77b9f1b6be589de22018b491b13559024ffd0bcc71b85adb3b5ac741203498d3cf21819b9bd6bd11b9714ba928cfedcd01b9ef726dced21cb0cffffff4b6d3c3d1b15e5ca5c78dade448d4c9602ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 53, 50, 101, 111, 109, 216, 70, 210, 159, 216, 102, 159, 27, 108, 160, 111, 156, 147, 43, + 93, 67, 159, 27, 223, 153, 93, 101, 98, 213, 221, 221, 66, 244, 210, 70, 38, 111, 237, 113, 36, 213, 255, 255, 27, + 14, 193, 80, 24, 42, 110, 103, 108, 27, 245, 227, 227, 103, 77, 152, 129, 70, 191, 27, 11, 236, 175, 76, 13, 194, + 56, 185, 27, 95, 122, 45, 46, 125, 119, 24, 192, 27, 26, 245, 192, 52, 51, 245, 81, 135, 27, 25, 199, 152, 166, + 154, 199, 123, 159, 27, 107, 229, 137, 222, 34, 1, 139, 73, 27, 19, 85, 144, 36, 255, 208, 188, 199, 27, 133, 173, + 179, 181, 172, 116, 18, 3, 73, 141, 60, 242, 24, 25, 185, 189, 107, 209, 27, 151, 20, 186, 146, 140, 254, 220, + 208, 27, 158, 247, 38, 220, 237, 33, 203, 12, 255, 255, 255, 75, 109, 60, 61, 27, 21, 229, 202, 92, 120, 218, 222, + 68, 141, 76, 150, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2558, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1167089460839601304" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bcb01f2551f9869c4a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "427429461762159937" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11357927243495673327" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a16bacd8e0e838532b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12424797884929246329" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3bbb4173" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16808011450910706819" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f1b103255ae5e725498ff49bcb01f2551f9869c4ad8669f1b05ee88d4b2deb5419f1b9d9f76a6ad4a8def49a16bacd8e0e838532b1bac6dbfd8d13b8479443bbb41731be9420d5ca83b0c83ffffffff", + "cborBytes": [ + 159, 159, 159, 27, 16, 50, 85, 174, 94, 114, 84, 152, 255, 73, 188, 176, 31, 37, 81, 249, 134, 156, 74, 216, 102, + 159, 27, 5, 238, 136, 212, 178, 222, 181, 65, 159, 27, 157, 159, 118, 166, 173, 74, 141, 239, 73, 161, 107, 172, + 216, 224, 232, 56, 83, 43, 27, 172, 109, 191, 216, 209, 59, 132, 121, 68, 59, 187, 65, 115, 27, 233, 66, 13, 92, + 168, 59, 12, 131, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2559, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1172623030479645109" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28253b7f485c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6288986027927000178" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac67e2dec249890ba2d3ba19" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "451e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbe3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13dcb7" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1384978492343911493" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40f7a24169f151e989dde4ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16479536987122250212" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5900585346796447558" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9591738076639753248" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8492688745378780056" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3700560749889006538" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a39e941ad9181c0c9b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3806170390807536145" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4551035841859336628" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6202262864831516235" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e4f3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2430461304821674035" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b6aebce432ab2071d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2052898110544678135" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "572154623784700038" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ffe227af26356" + }, + { + "_tag": "ByteArray", + "bytearray": "ea0fcc47" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "843175e4333470" + } + ] + } + ] + }, + "cborHex": "9f9f1b1045fe6ef32e69b5bf4628253b7f485c1b5746f778cffbd4724cac67e2dec249890ba2d3ba1942451e42cbe34313dcb7ffbf1b13386e99d1b704454c40f7a24169f151e989dde4ff1be4b31393d45531e44159ff1b51e3171c3aad6746ff9fd8669f1b851cb2f624b374209f1b75dc176af04293981b335b086546e32bcaffff49a39e941ad9181c0c9bffbf1b34d23bcdf2b162111b3f2886fc5a18b9b4ffd8669f1b5612dd36ede10e4b9f42e4f3d8669f1b21babbadfa3a70339f49b6aebce432ab2071d31b1c7d5bf46f160cf71b07f0b3995348c886474ffe227af2635644ea0fcc47ffff47843175e4333470ffffff", + "cborBytes": [ + 159, 159, 27, 16, 69, 254, 110, 243, 46, 105, 181, 191, 70, 40, 37, 59, 127, 72, 92, 27, 87, 70, 247, 120, 207, + 251, 212, 114, 76, 172, 103, 226, 222, 194, 73, 137, 11, 162, 211, 186, 25, 66, 69, 30, 66, 203, 227, 67, 19, 220, + 183, 255, 191, 27, 19, 56, 110, 153, 209, 183, 4, 69, 76, 64, 247, 162, 65, 105, 241, 81, 233, 137, 221, 228, 255, + 27, 228, 179, 19, 147, 212, 85, 49, 228, 65, 89, 255, 27, 81, 227, 23, 28, 58, 173, 103, 70, 255, 159, 216, 102, + 159, 27, 133, 28, 178, 246, 36, 179, 116, 32, 159, 27, 117, 220, 23, 106, 240, 66, 147, 152, 27, 51, 91, 8, 101, + 70, 227, 43, 202, 255, 255, 73, 163, 158, 148, 26, 217, 24, 28, 12, 155, 255, 191, 27, 52, 210, 59, 205, 242, 177, + 98, 17, 27, 63, 40, 134, 252, 90, 24, 185, 180, 255, 216, 102, 159, 27, 86, 18, 221, 54, 237, 225, 14, 75, 159, + 66, 228, 243, 216, 102, 159, 27, 33, 186, 187, 173, 250, 58, 112, 51, 159, 73, 182, 174, 188, 228, 50, 171, 32, + 113, 211, 27, 28, 125, 91, 244, 111, 22, 12, 247, 27, 7, 240, 179, 153, 83, 72, 200, 134, 71, 79, 254, 34, 122, + 242, 99, 86, 68, 234, 15, 204, 71, 255, 255, 71, 132, 49, 117, 228, 51, 52, 112, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2560, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12775670600256784710" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17658563336340198097" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5528776552250610671" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eaeb10695148" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8049896807184078135" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15051962113980156540" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14592425633884108073" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b52164f3d09eb3772798cd" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ccd973de32f5daa1" + }, + { + "_tag": "ByteArray", + "bytearray": "e69ee30d1658e7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3356557506125663323" + } + }, + { + "_tag": "ByteArray", + "bytearray": "103d454895" + }, + { + "_tag": "ByteArray", + "bytearray": "ccd31b6b1bfc5c083af3" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9366590239548416186" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9621763757181419454" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "86ac93" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11038397598932748201" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2670c299bffc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4321033145148254345" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5925395264940437639" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15255602363968598389" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bb14c4cb8f7b509469f80d8669f1bf50fd1cb9a4b52d19f1b4cba28fb476813ef46eaeb10695148ffffd8669f1b6fb6fa7ef6c215379f1bd0e34fcb406cca7c1bca82b5cccef775294bb52164f3d09eb3772798cdffffffff9f9f48ccd973de32f5daa147e69ee30d1658e71b2e94e3449cca8c5b45103d4548954accd31b6b1bfc5c083af3ff1b81fcd03250eca0bad8669f1b85875f28ab86bfbe9f4386ac931b99304421dde947a9462670c299bffc1b3bf764c06f402889ffff1b523b3b99708e70871bd3b6c985baf53175ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 177, 76, 76, 184, 247, 181, 9, 70, 159, 128, 216, 102, 159, 27, 245, 15, 209, 203, 154, + 75, 82, 209, 159, 27, 76, 186, 40, 251, 71, 104, 19, 239, 70, 234, 235, 16, 105, 81, 72, 255, 255, 216, 102, 159, + 27, 111, 182, 250, 126, 246, 194, 21, 55, 159, 27, 208, 227, 79, 203, 64, 108, 202, 124, 27, 202, 130, 181, 204, + 206, 247, 117, 41, 75, 181, 33, 100, 243, 208, 158, 179, 119, 39, 152, 205, 255, 255, 255, 255, 159, 159, 72, 204, + 217, 115, 222, 50, 245, 218, 161, 71, 230, 158, 227, 13, 22, 88, 231, 27, 46, 148, 227, 68, 156, 202, 140, 91, 69, + 16, 61, 69, 72, 149, 74, 204, 211, 27, 107, 27, 252, 92, 8, 58, 243, 255, 27, 129, 252, 208, 50, 80, 236, 160, + 186, 216, 102, 159, 27, 133, 135, 95, 40, 171, 134, 191, 190, 159, 67, 134, 172, 147, 27, 153, 48, 68, 33, 221, + 233, 71, 169, 70, 38, 112, 194, 153, 191, 252, 27, 59, 247, 100, 192, 111, 64, 40, 137, 255, 255, 27, 82, 59, 59, + 153, 112, 142, 112, 135, 27, 211, 182, 201, 133, 186, 245, 49, 117, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2561, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "665e01fd00ae0107" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9608015104512719745" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3359597cdc7c3009" + } + ] + } + ] + }, + "cborHex": "9f809f48665e01fd00ae0107a01b855686d505117b81483359597cdc7c3009ffff", + "cborBytes": [ + 159, 128, 159, 72, 102, 94, 1, 253, 0, 174, 1, 7, 160, 27, 133, 86, 134, 213, 5, 17, 123, 129, 72, 51, 89, 89, + 124, 220, 124, 48, 9, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2562, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16803036264541103715" + } + }, + { + "_tag": "ByteArray", + "bytearray": "020102070105fc2a01" + } + ] + }, + "cborHex": "9f1be9306074cffaa66349020102070105fc2a01ff", + "cborBytes": [159, 27, 233, 48, 96, 116, 207, 250, 166, 99, 73, 2, 1, 2, 7, 1, 5, 252, 42, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2563, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16774559997683860893" + } + }, + { + "_tag": "ByteArray", + "bytearray": "35ed2e5d793b42b7d33815fc" + }, + { + "_tag": "ByteArray", + "bytearray": "c9e30b1d6223663efb09ca" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10454680006659940752" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17080317801328749933" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c33f1f925c3a01c56809f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16463910191955309935" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4668020483028466942" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8efa09643619809a5af12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14659666377628564835" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1082c6c69651fcca" + } + ] + }, + "cborHex": "9f1be8cb3571456c859d4c35ed2e5d793b42b7d33815fc4bc9e30b1d6223663efb09ca9f418bbf1b91167c13255821901bed097a8b7efb2d6d4b5c33f1f925c3a01c56809f1be47b8f170d6df56f41781b40c823e5a728bcfe4be8efa09643619809a5af121bcb7198e67449bd63ffff481082c6c69651fccaff", + "cborBytes": [ + 159, 27, 232, 203, 53, 113, 69, 108, 133, 157, 76, 53, 237, 46, 93, 121, 59, 66, 183, 211, 56, 21, 252, 75, 201, + 227, 11, 29, 98, 35, 102, 62, 251, 9, 202, 159, 65, 139, 191, 27, 145, 22, 124, 19, 37, 88, 33, 144, 27, 237, 9, + 122, 139, 126, 251, 45, 109, 75, 92, 51, 241, 249, 37, 195, 160, 28, 86, 128, 159, 27, 228, 123, 143, 23, 13, 109, + 245, 111, 65, 120, 27, 64, 200, 35, 229, 167, 40, 188, 254, 75, 232, 239, 160, 150, 67, 97, 152, 9, 165, 175, 18, + 27, 203, 113, 152, 230, 116, 73, 189, 99, 255, 255, 72, 16, 130, 198, 198, 150, 81, 252, 202, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2564, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13002456618389475839" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4541252065398639292" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1ae949d9d1543b" + }, + { + "_tag": "ByteArray", + "bytearray": "6e30" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0137fc15f01fd2c31e7cd3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10749491654820451864" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d3311ad444392d851" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90f5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "777e4e499b7eeef8663f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "308ccdd4d3613725ad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b51609a2838d42a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8fc7325f4ab0dd0a13" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3829401484207337956" + } + } + ] + }, + "cborHex": "9f1bb47201678a8811ffd8669f1b3f05c4b161984abc9f471ae949d9d1543b426e30ffffa0bf4b0137fc15f01fd2c31e7cd31b952dddb4f1995618490d3311ad444392d8514290f54a777e4e499b7eeef8663f49308ccdd4d3613725ad48b51609a2838d42a1498fc7325f4ab0dd0a13ff1b3524c45c608831e4ff", + "cborBytes": [ + 159, 27, 180, 114, 1, 103, 138, 136, 17, 255, 216, 102, 159, 27, 63, 5, 196, 177, 97, 152, 74, 188, 159, 71, 26, + 233, 73, 217, 209, 84, 59, 66, 110, 48, 255, 255, 160, 191, 75, 1, 55, 252, 21, 240, 31, 210, 195, 30, 124, 211, + 27, 149, 45, 221, 180, 241, 153, 86, 24, 73, 13, 51, 17, 173, 68, 67, 146, 216, 81, 66, 144, 245, 74, 119, 126, + 78, 73, 155, 126, 238, 248, 102, 63, 73, 48, 140, 205, 212, 211, 97, 55, 37, 173, 72, 181, 22, 9, 162, 131, 141, + 66, 161, 73, 143, 199, 50, 95, 74, 176, 221, 10, 19, 255, 27, 53, 36, 196, 92, 96, 136, 49, 228, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2565, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10126470460235470350" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cfe808cffc4be0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15839549078352258156" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8e2ba04ddafd5959928" + } + } + ] + } + ] + }, + "cborHex": "9f1bffffffffffffffffbf1b8c88733b32d2560e47cfe808cffc4be01bdbd161f7198d646c4ad8e2ba04ddafd5959928ffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 191, 27, 140, 136, 115, 59, 50, 210, 86, 14, 71, 207, 232, 8, + 207, 252, 75, 224, 27, 219, 209, 97, 247, 25, 141, 100, 108, 74, 216, 226, 186, 4, 221, 175, 213, 149, 153, 40, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2566, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8174921300143081752" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7658530027" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10380485699307127791" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b7173279c21cd8918bf4576585300271b900ee4becf3943efffff", + "cborBytes": [ + 159, 27, 113, 115, 39, 156, 33, 205, 137, 24, 191, 69, 118, 88, 83, 0, 39, 27, 144, 14, 228, 190, 207, 57, 67, + 239, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2567, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "109d1b707698" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17915070960158537325" + } + } + ] + }, + "cborHex": "9f9f46109d1b707698ff1bf89f1e1ec22a766dff", + "cborBytes": [159, 159, 70, 16, 157, 27, 112, 118, 152, 255, 27, 248, 159, 30, 30, 194, 42, 118, 109, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2568, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9907393738709627659" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14230383237517864963" + } + } + ] + }, + "cborHex": "9f1b897e221d1db7730b1bc57c7a28a1ecf003ff", + "cborBytes": [159, 27, 137, 126, 34, 29, 29, 183, 115, 11, 27, 197, 124, 122, 40, 161, 236, 240, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2569, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c7c93420d3" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "452438731646664268" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6632d551f03c7324ffdc5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1843436941715906981" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd6c183e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6257797334773094975" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2686102447773177732" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15748688470777449136" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12492208545391532040" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "47248d3fc0d9b1e7ad" + } + ] + }, + "cborHex": "9f45c7c93420d38080bf1b064762a11a6d7e4c4bb6632d551f03c7324ffdc51b19953421accf21a544cd6c183e1b56d829854f895a3f1b2546f3f1d5d3d7841bda8e94b95afacab01bad5d3d7c48295808ff4947248d3fc0d9b1e7adff", + "cborBytes": [ + 159, 69, 199, 201, 52, 32, 211, 128, 128, 191, 27, 6, 71, 98, 161, 26, 109, 126, 76, 75, 182, 99, 45, 85, 31, 3, + 199, 50, 79, 253, 197, 27, 25, 149, 52, 33, 172, 207, 33, 165, 68, 205, 108, 24, 62, 27, 86, 216, 41, 133, 79, + 137, 90, 63, 27, 37, 70, 243, 241, 213, 211, 215, 132, 27, 218, 142, 148, 185, 90, 250, 202, 176, 27, 173, 93, 61, + 124, 72, 41, 88, 8, 255, 73, 71, 36, 141, 63, 192, 217, 177, 231, 173, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2570, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bfb74863" + }, + { + "_tag": "ByteArray", + "bytearray": "edde42acfed517bc" + }, + { + "_tag": "ByteArray", + "bytearray": "5f2fa5f6d6d36a" + } + ] + }, + "cborHex": "9f44bfb7486348edde42acfed517bc475f2fa5f6d6d36aff", + "cborBytes": [ + 159, 68, 191, 183, 72, 99, 72, 237, 222, 66, 172, 254, 213, 23, 188, 71, 95, 47, 165, 246, 214, 211, 106, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2571, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11863554100610475496" + } + } + ] + }, + "cborHex": "9f1ba4a3cf99448425e8ff", + "cborBytes": [159, 27, 164, 163, 207, 153, 68, 132, 37, 232, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2572, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2507076967908702347" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10274804716643619097" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6157675806405104985" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1605742185562308464" + } + } + ] + }, + "cborHex": "9fd8669f1b22caed3820c2f88b9f1b8e977073980d1119d8669f1b557475856acb155980ffffff1b1648be029b4cff70ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 34, 202, 237, 56, 32, 194, 248, 139, 159, 27, 142, 151, 112, 115, 152, 13, 17, 25, 216, + 102, 159, 27, 85, 116, 117, 133, 106, 203, 21, 89, 128, 255, 255, 255, 27, 22, 72, 190, 2, 155, 76, 255, 112, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2573, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7890366235765093046" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2370747109468788066" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16316412432405018845" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3951667364388116190" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3769582169036503174" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8055705104178515682" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13476398500400519640" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15099291226885869042" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12469778599885299221" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1252438277010578059" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10050901105043136090" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "18b131db8c64" + } + ] + }, + "cborHex": "9f1b6d8036495683b2b69fbf1b20e695ef702bd5621be26f8aa8c244b8dd1b36d72487f4db96de1b34503f02b91138861b6fcb9d1c7ddc8ee21bbb05c908fbfad9d81bd18b755f12b44df21bad0d8d91a1ee5e15ffffd8669f1b11618dfa2c515a8b9f1b8b7bf94d96ad5e5affff4618b131db8c64ff", + "cborBytes": [ + 159, 27, 109, 128, 54, 73, 86, 131, 178, 182, 159, 191, 27, 32, 230, 149, 239, 112, 43, 213, 98, 27, 226, 111, + 138, 168, 194, 68, 184, 221, 27, 54, 215, 36, 135, 244, 219, 150, 222, 27, 52, 80, 63, 2, 185, 17, 56, 134, 27, + 111, 203, 157, 28, 125, 220, 142, 226, 27, 187, 5, 201, 8, 251, 250, 217, 216, 27, 209, 139, 117, 95, 18, 180, 77, + 242, 27, 173, 13, 141, 145, 161, 238, 94, 21, 255, 255, 216, 102, 159, 27, 17, 97, 141, 250, 44, 81, 90, 139, 159, + 27, 139, 123, 249, 77, 150, 173, 94, 90, 255, 255, 70, 24, 177, 49, 219, 140, 100, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2574, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13058662478741694273" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6325929259084566402" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1b8d025358f1e6e9d0aa" + }, + { + "_tag": "ByteArray", + "bytearray": "01" + }, + { + "_tag": "ByteArray", + "bytearray": "58b9fa1ac267" + } + ] + } + ] + } + ] + }, + "cborHex": "9f02a0d8669f1bb539b0562f1ee7419fd9050a9f1bffffffffffffffebffd8669f1b57ca372519fc4f829f4a1b8d025358f1e6e9d0aa41014658b9fa1ac267ffffffffff", + "cborBytes": [ + 159, 2, 160, 216, 102, 159, 27, 181, 57, 176, 86, 47, 30, 231, 65, 159, 217, 5, 10, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 235, 255, 216, 102, 159, 27, 87, 202, 55, 37, 25, 252, 79, 130, 159, 74, 27, 141, 2, 83, 88, 241, + 230, 233, 208, 170, 65, 1, 70, 88, 185, 250, 26, 194, 103, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2575, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f759" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5865631211009348399" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf42f7591b5166e8824ba8132fffff", + "cborBytes": [159, 191, 66, 247, 89, 27, 81, 102, 232, 130, 75, 168, 19, 47, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2576, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "51faaf9f03fc0601068ced" + } + ] + }, + "cborHex": "9fa080a04b51faaf9f03fc0601068cedff", + "cborBytes": [159, 160, 128, 160, 75, 81, 250, 175, 159, 3, 252, 6, 1, 6, 140, 237, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2577, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "650cedbaca4b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c304" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2708066841417910858" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "29f1957ae79ad5e9" + }, + { + "_tag": "ByteArray", + "bytearray": "62a3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17967890298699686265" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d0449a9e8bf8885b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15348285039820734569" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4433219379302355926" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "04faa0fd73060465ce0428f8" + } + ] + } + ] + }, + "cborHex": "9fa046650cedbaca4b0b42c304d8669f1b2594fc71beba8a4a9f4829f1957ae79ad5e94262a39f1bf95ac507592ea179492d0449a9e8bf8885b01bd5000feccdf500691b3d85f5898ab1d3d6ff4c04faa0fd73060465ce0428f8ffffff", + "cborBytes": [ + 159, 160, 70, 101, 12, 237, 186, 202, 75, 11, 66, 195, 4, 216, 102, 159, 27, 37, 148, 252, 113, 190, 186, 138, 74, + 159, 72, 41, 241, 149, 122, 231, 154, 213, 233, 66, 98, 163, 159, 27, 249, 90, 197, 7, 89, 46, 161, 121, 73, 45, + 4, 73, 169, 232, 191, 136, 133, 176, 27, 213, 0, 15, 236, 205, 245, 0, 105, 27, 61, 133, 245, 137, 138, 177, 211, + 214, 255, 76, 4, 250, 160, 253, 115, 6, 4, 101, 206, 4, 40, 248, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2578, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2122541133062829724" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d3fc15bd66" + }, + { + "_tag": "ByteArray", + "bytearray": "eedaeb5f54e4" + } + ] + }, + "cborHex": "9fd8669f1b1d74c7ea315d769c80ff45d3fc15bd6646eedaeb5f54e4ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 29, 116, 199, 234, 49, 93, 118, 156, 128, 255, 69, 211, 252, 21, 189, 102, 70, 238, 218, + 235, 95, 84, 228, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2579, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1afa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b094eb52ad3ee1a0ab206096" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9df2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1364fd8a24a733" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f68815a6b2ed48b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f00265645b15b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "284442440526236686" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1318236932719625047" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12221044532874691424" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7903997313232243105" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "477e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13168361149004066443" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b4c652c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13830186699761580535" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6533" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2404685d668f70d675d557" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93bd7d6cba65a001" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bb50d85" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f0c5fbfca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c78d62" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9631ab7d0b74d9bec2b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d34a3a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17226014914663269394" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "672010a21d2fe3933128c9" + }, + { + "_tag": "ByteArray", + "bytearray": "6028219fdfb555a81a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "579664038288439745" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c85543fb56ecaef56d806e09" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4129502665179435925" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "969d377a7627" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14706939337280321045" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3008815030263435690" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15221696302161865507" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4863090238551939841" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "49ed3ec8af19e94f11" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11207268166961480680" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66bb6c4fdda25d7a58f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d0c24763ed1c9513ba1cc27" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cf56f81a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10499993953730545456" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d826747a2cb5f4d9fea9b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "523b311f426665125eb5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a81fae3626d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de46ce19b8" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ab710dd83" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07f97f77e9914cda45c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b45aad0b6b13e8c7265c1a3d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44d1546ff19b4ff908ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "164acf8ec6abdf10" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8376f521fba06d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed1d664c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8fc44fad18e45595" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3255251257244096216" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "caa5fa64" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fc561fa498037e679" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12788518873769082523" + } + } + ] + }, + "cborHex": "9fbf421afa4cb094eb52ad3ee1a0ab206096429df2471364fd8a24a73341b6484f68815a6b2ed48b47f00265645b15b31b03f28ae4829c8c0effbf1b124b5181888dc3571ba999df40b639c3601b6db0a3ade0d989a142477e1bb6bf6ab230712e8b446b4c652c1bbfeeb187289ef9f7426533ff9fbf4b2404685d668f70d675d5574893bd7d6cba65a001446bb50d85453f0c5fbfca43c78d624ad9631ab7d0b74d9bec2b43d34a3a1bef0f194c2c15c412ff4b672010a21d2fe3933128c9496028219fdfb555a81abf1b080b615f234039c14cc85543fb56ecaef56d806e091b394ef0cb810c939546969d377a76271bcc198b6813cff6151b29c1755421b551aa1bd33e5423893c2b231b437d2ace638edb01ffbf4949ed3ec8af19e94f111b9b883704ea4843e84a66bb6c4fdda25d7a58f74c1d0c24763ed1c9513ba1cc27458cf56f81a11b91b778de9bdbc7304b9d826747a2cb5f4d9fea9b4a523b311f426665125eb546a81fae3626d745de46ce19b8ffffbf4100458ab710dd834a07f97f77e9914cda45c04cb45aad0b6b13e8c7265c1a3d4a44d1546ff19b4ff908ec48164acf8ec6abdf10478376f521fba06d44ed1d664c488fc44fad18e455951b2d2cf9c57aad96d844caa5fa64491fc561fa498037e679ff1bb179f228c2627e9bff", + "cborBytes": [ + 159, 191, 66, 26, 250, 76, 176, 148, 235, 82, 173, 62, 225, 160, 171, 32, 96, 150, 66, 157, 242, 71, 19, 100, 253, + 138, 36, 167, 51, 65, 182, 72, 79, 104, 129, 90, 107, 46, 212, 139, 71, 240, 2, 101, 100, 91, 21, 179, 27, 3, 242, + 138, 228, 130, 156, 140, 14, 255, 191, 27, 18, 75, 81, 129, 136, 141, 195, 87, 27, 169, 153, 223, 64, 182, 57, + 195, 96, 27, 109, 176, 163, 173, 224, 217, 137, 161, 66, 71, 126, 27, 182, 191, 106, 178, 48, 113, 46, 139, 68, + 107, 76, 101, 44, 27, 191, 238, 177, 135, 40, 158, 249, 247, 66, 101, 51, 255, 159, 191, 75, 36, 4, 104, 93, 102, + 143, 112, 214, 117, 213, 87, 72, 147, 189, 125, 108, 186, 101, 160, 1, 68, 107, 181, 13, 133, 69, 63, 12, 95, 191, + 202, 67, 199, 141, 98, 74, 217, 99, 26, 183, 208, 183, 77, 155, 236, 43, 67, 211, 74, 58, 27, 239, 15, 25, 76, 44, + 21, 196, 18, 255, 75, 103, 32, 16, 162, 29, 47, 227, 147, 49, 40, 201, 73, 96, 40, 33, 159, 223, 181, 85, 168, 26, + 191, 27, 8, 11, 97, 95, 35, 64, 57, 193, 76, 200, 85, 67, 251, 86, 236, 174, 245, 109, 128, 110, 9, 27, 57, 78, + 240, 203, 129, 12, 147, 149, 70, 150, 157, 55, 122, 118, 39, 27, 204, 25, 139, 104, 19, 207, 246, 21, 27, 41, 193, + 117, 84, 33, 181, 81, 170, 27, 211, 62, 84, 35, 137, 60, 43, 35, 27, 67, 125, 42, 206, 99, 142, 219, 1, 255, 191, + 73, 73, 237, 62, 200, 175, 25, 233, 79, 17, 27, 155, 136, 55, 4, 234, 72, 67, 232, 74, 102, 187, 108, 79, 221, + 162, 93, 122, 88, 247, 76, 29, 12, 36, 118, 62, 209, 201, 81, 59, 161, 204, 39, 69, 140, 245, 111, 129, 161, 27, + 145, 183, 120, 222, 155, 219, 199, 48, 75, 157, 130, 103, 71, 162, 203, 95, 77, 159, 234, 155, 74, 82, 59, 49, 31, + 66, 102, 101, 18, 94, 181, 70, 168, 31, 174, 54, 38, 215, 69, 222, 70, 206, 25, 184, 255, 255, 191, 65, 0, 69, + 138, 183, 16, 221, 131, 74, 7, 249, 127, 119, 233, 145, 76, 218, 69, 192, 76, 180, 90, 173, 11, 107, 19, 232, 199, + 38, 92, 26, 61, 74, 68, 209, 84, 111, 241, 155, 79, 249, 8, 236, 72, 22, 74, 207, 142, 198, 171, 223, 16, 71, 131, + 118, 245, 33, 251, 160, 109, 68, 237, 29, 102, 76, 72, 143, 196, 79, 173, 24, 228, 85, 149, 27, 45, 44, 249, 197, + 122, 173, 150, 216, 68, 202, 165, 250, 100, 73, 31, 197, 97, 250, 73, 128, 55, 230, 121, 255, 27, 177, 121, 242, + 40, 194, 98, 126, 155, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2580, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12757561516960117849" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0255" + }, + { + "_tag": "ByteArray", + "bytearray": "0d269ea0c8f1b7ae22" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11872073741354507608" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3135769610399650170" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a675b67cf083ff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6541685160856033563" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16857411895582183943" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17273779046549620713" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ebb71ed349a7a7441750" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bb10bf69b7299f4599fa0420255490d269ea0c8f1b7ae22ffff9f801ba4c2142ab4ad9d58ff9fbf071b2b847dd8bd56117aff80d905059f47a675b67cf083ff1b5ac8bbfe9544991b1be9f18ecdfc9ed2071befb8ca85be2d07e9ff4aebb71ed349a7a7441750ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 177, 11, 246, 155, 114, 153, 244, 89, 159, 160, 66, 2, 85, 73, 13, 38, 158, 160, 200, 241, + 183, 174, 34, 255, 255, 159, 128, 27, 164, 194, 20, 42, 180, 173, 157, 88, 255, 159, 191, 7, 27, 43, 132, 125, + 216, 189, 86, 17, 122, 255, 128, 217, 5, 5, 159, 71, 166, 117, 182, 124, 240, 131, 255, 27, 90, 200, 187, 254, + 149, 68, 153, 27, 27, 233, 241, 142, 205, 252, 158, 210, 7, 27, 239, 184, 202, 133, 190, 45, 7, 233, 255, 74, 235, + 183, 30, 211, 73, 167, 167, 68, 23, 80, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2581, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16294986207027848411" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ed5c36e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fe4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6299158663514563313" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "164d8eb5a8751f2f60c3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "901c4f94aa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24cd124497ff133a4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "52e13800" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7033132588215190126" + } + }, + { + "_tag": "ByteArray", + "bytearray": "41ea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15176087260173887463" + } + }, + { + "_tag": "ByteArray", + "bytearray": "880e1f" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf1be2236b9ee9c8e4db441ed5c36e420fe41b576b1b6e1a9c22f14a164d8eb5a8751f2f60c345901c4f94aa4924cd124497ff133a4c41bdff4452e138009fd905079f1b619ab4d36aca426e4241ea1bd29c4af4eefee7e743880e1fffffa0ff", + "cborBytes": [ + 159, 191, 27, 226, 35, 107, 158, 233, 200, 228, 219, 68, 30, 213, 195, 110, 66, 15, 228, 27, 87, 107, 27, 110, 26, + 156, 34, 241, 74, 22, 77, 142, 181, 168, 117, 31, 47, 96, 195, 69, 144, 28, 79, 148, 170, 73, 36, 205, 18, 68, + 151, 255, 19, 58, 76, 65, 189, 255, 68, 82, 225, 56, 0, 159, 217, 5, 7, 159, 27, 97, 154, 180, 211, 106, 202, 66, + 110, 66, 65, 234, 27, 210, 156, 74, 244, 238, 254, 231, 231, 67, 136, 14, 31, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2582, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17957947474209454348" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2724908382883940677" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9379fa68a451335" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf93772151f60b90c80ffbf011b25d0d1bcaf4809450248e9379fa68a451335ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 249, 55, 114, 21, 31, 96, 185, 12, 128, 255, 191, 1, 27, 37, 208, 209, 188, 175, 72, 9, + 69, 2, 72, 233, 55, 159, 166, 138, 69, 19, 53, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2583, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5800400875839934412" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "ByteArray", + "bytearray": "41771b037483242b77e00415" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b507f29dd5f4dcfcc9f144c41771b037483242b77e00415ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 80, 127, 41, 221, 95, 77, 207, 204, 159, 20, 76, 65, 119, 27, 3, 116, 131, 36, 43, 119, + 224, 4, 21, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2584, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5226811479908869133" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5216010789206362547" + } + } + } + ] + } + ] + }, + "cborHex": "9f80bf1b48895d591fe6e40d1b4862fe2d5b4009b3ffff", + "cborBytes": [159, 128, 191, 27, 72, 137, 93, 89, 31, 230, 228, 13, 27, 72, 98, 254, 45, 91, 64, 9, 179, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2585, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "76040d8fdeb4a862c91f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e034dc05312a70b3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9095be5114" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5948691017500262515" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "75f501" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14471618435399841760" + } + } + ] + }, + "cborHex": "9fbf4a76040d8fdeb4a862c91f48e034dc05312a70b3459095be51141b528dfef680a90073ff4375f5011bc8d5844b070077e0ff", + "cborBytes": [ + 159, 191, 74, 118, 4, 13, 143, 222, 180, 168, 98, 201, 31, 72, 224, 52, 220, 5, 49, 42, 112, 179, 69, 144, 149, + 190, 81, 20, 27, 82, 141, 254, 246, 128, 169, 0, 115, 255, 67, 117, 245, 1, 27, 200, 213, 132, 75, 7, 0, 119, 224, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2586, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6819092118391646421" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bdf91cb2788e32958a5e41" + }, + { + "_tag": "ByteArray", + "bytearray": "acd2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9951527444784570720" + } + }, + { + "_tag": "ByteArray", + "bytearray": "36135510bf" + }, + { + "_tag": "ByteArray", + "bytearray": "a45f3e969b74afdf72ee4166" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "50ba" + }, + { + "_tag": "ByteArray", + "bytearray": "36d4ea56ce683b2f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1319148685001162086" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1344feee2c053b4abfe219" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13750709912293984966" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4421897570993952070" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9895708322680834499" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6291700347573769977" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fa09fd8669f1b5ea248270f6668d59f4bbdf91cb2788e32958a5e4142acd21b8a1aed7c4eef61604536135510bf4ca45f3e969b74afdf72ee4166ffffff9f4250ba4836d4ea56ce683b2fd8669f1b124e8ebd676afd669f4b1344feee2c053b4abfe2191bbed455cf93b9cac61b3d5dbc69a041d5461b89549e4a2e4489c3ffffa0d8669f1b57509c219a5616f980ffffff", + "cborBytes": [ + 159, 160, 159, 216, 102, 159, 27, 94, 162, 72, 39, 15, 102, 104, 213, 159, 75, 189, 249, 28, 178, 120, 142, 50, + 149, 138, 94, 65, 66, 172, 210, 27, 138, 26, 237, 124, 78, 239, 97, 96, 69, 54, 19, 85, 16, 191, 76, 164, 95, 62, + 150, 155, 116, 175, 223, 114, 238, 65, 102, 255, 255, 255, 159, 66, 80, 186, 72, 54, 212, 234, 86, 206, 104, 59, + 47, 216, 102, 159, 27, 18, 78, 142, 189, 103, 106, 253, 102, 159, 75, 19, 68, 254, 238, 44, 5, 59, 74, 191, 226, + 25, 27, 190, 212, 85, 207, 147, 185, 202, 198, 27, 61, 93, 188, 105, 160, 65, 213, 70, 27, 137, 84, 158, 74, 46, + 68, 137, 195, 255, 255, 160, 216, 102, 159, 27, 87, 80, 156, 33, 154, 86, 22, 249, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2587, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8834061268392256251" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13783868252014587890" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e7df4b0f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4933631831777631430" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "174969366312370469" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e62fdab835c25a84f2" + }, + { + "_tag": "ByteArray", + "bytearray": "865c3c57b5811e631d09" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15580698549619592806" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4210287174541917498" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "602028957392740492" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5895049473227870781" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4799547310714932666" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6aad05d2" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2184008055734141082" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18415015469675170006" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2378079828341493059" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b099836e" + }, + { + "_tag": "ByteArray", + "bytearray": "f95c12a90fcc55b46ae5b24a" + }, + { + "_tag": "ByteArray", + "bytearray": "31c1374a038173b0e0eb" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12034296818191725679" + } + } + ] + } + ] + }, + "cborHex": "9f1b7a98e3eb328ea2fbd8669f1bbf4a2325281d2ff29f9f44e7df4b0f1b4477c802f1aa5cc61b026d9db62d9fc125ff49e62fdab835c25a84f24a865c3c57b5811e631d091bd839c2c7e2850e66bf1b3a6df1e0d0f43d3a1b085ad625a5e4a08c1b51cf6c433919d23d1b429b6ad999d84dbaffffff9f446aad05d2a09f1b1e4f27c15ca0009a1bff8f4700b34fc8d6ffd8669f1b2100a30117d10d439f44b099836e4cf95c12a90fcc55b46ae5b24a4a31c1374a038173b0e0ebffff1ba702693219ee746fffff", + "cborBytes": [ + 159, 27, 122, 152, 227, 235, 50, 142, 162, 251, 216, 102, 159, 27, 191, 74, 35, 37, 40, 29, 47, 242, 159, 159, 68, + 231, 223, 75, 15, 27, 68, 119, 200, 2, 241, 170, 92, 198, 27, 2, 109, 157, 182, 45, 159, 193, 37, 255, 73, 230, + 47, 218, 184, 53, 194, 90, 132, 242, 74, 134, 92, 60, 87, 181, 129, 30, 99, 29, 9, 27, 216, 57, 194, 199, 226, + 133, 14, 102, 191, 27, 58, 109, 241, 224, 208, 244, 61, 58, 27, 8, 90, 214, 37, 165, 228, 160, 140, 27, 81, 207, + 108, 67, 57, 25, 210, 61, 27, 66, 155, 106, 217, 153, 216, 77, 186, 255, 255, 255, 159, 68, 106, 173, 5, 210, 160, + 159, 27, 30, 79, 39, 193, 92, 160, 0, 154, 27, 255, 143, 71, 0, 179, 79, 200, 214, 255, 216, 102, 159, 27, 33, 0, + 163, 1, 23, 209, 13, 67, 159, 68, 176, 153, 131, 110, 76, 249, 92, 18, 169, 15, 204, 85, 180, 106, 229, 178, 74, + 74, 49, 193, 55, 74, 3, 129, 115, 176, 224, 235, 255, 255, 27, 167, 2, 105, 50, 25, 238, 116, 111, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2588, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7af8a772" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7356094935312739735" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "31705608974368326" + } + } + ] + }, + "cborHex": "9f8010447af8a7721b6616195e915dad971b0070a415584dfe46ff", + "cborBytes": [ + 159, 128, 16, 68, 122, 248, 167, 114, 27, 102, 22, 25, 94, 145, 93, 173, 151, 27, 0, 112, 164, 21, 88, 77, 254, + 70, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2589, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "80" + }, + { + "_tag": "ByteArray", + "bytearray": "82a0499f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15896377094262585726" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16088590319958725215" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3e3e048cff5384" + }, + { + "_tag": "ByteArray", + "bytearray": "5758b58c579a59314899" + }, + { + "_tag": "ByteArray", + "bytearray": "48d58e868e8a17d895" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13826006104243820123" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9079054477975150180" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6270593338180225000" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "25504705d6af38c0" + } + ] + }, + "cborHex": "9f9f41804482a0499fd8669f1bdc9b46be9f2d797e9f1bdf4627a7aded925f473e3e048cff53844a5758b58c579a593148994948d58e868e8a17d8951bbfdfd74c69d5d65bffff1b7dff47f1e020de64d8669f1b57059f6b0529c7e880ffff4825504705d6af38c0ff", + "cborBytes": [ + 159, 159, 65, 128, 68, 130, 160, 73, 159, 216, 102, 159, 27, 220, 155, 70, 190, 159, 45, 121, 126, 159, 27, 223, + 70, 39, 167, 173, 237, 146, 95, 71, 62, 62, 4, 140, 255, 83, 132, 74, 87, 88, 181, 140, 87, 154, 89, 49, 72, 153, + 73, 72, 213, 142, 134, 142, 138, 23, 216, 149, 27, 191, 223, 215, 76, 105, 213, 214, 91, 255, 255, 27, 125, 255, + 71, 241, 224, 32, 222, 100, 216, 102, 159, 27, 87, 5, 159, 107, 5, 41, 199, 232, 128, 255, 255, 72, 37, 80, 71, 5, + 214, 175, 56, 192, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2590, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1092fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b276ccccd62a8242e485cafb" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13757722516203848205" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10759562852670662240" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5198293230057144455" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5637046363792649357" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01ee7a3dc476a36dc893ab1a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6069647019891588714" + } + } + ] + } + ] + }, + "cborHex": "9fbf431092fb4cb276ccccd62a8242e485cafbffd8669f1bbeed3fbca8b9420d9fd8669f1b9551a5686bec66609f1b48240c26a7dfc087ffff1b4e3acfcd3044ac8d4c01ee7a3dc476a36dc893ab1a1b543bb7ce64a57e6affffff", + "cborBytes": [ + 159, 191, 67, 16, 146, 251, 76, 178, 118, 204, 204, 214, 42, 130, 66, 228, 133, 202, 251, 255, 216, 102, 159, 27, + 190, 237, 63, 188, 168, 185, 66, 13, 159, 216, 102, 159, 27, 149, 81, 165, 104, 107, 236, 102, 96, 159, 27, 72, + 36, 12, 38, 167, 223, 192, 135, 255, 255, 27, 78, 58, 207, 205, 48, 68, 172, 141, 76, 1, 238, 122, 61, 196, 118, + 163, 109, 200, 147, 171, 26, 27, 84, 59, 183, 206, 100, 165, 126, 106, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2591, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "52f5cf6005364856ebc6" + }, + { + "_tag": "ByteArray", + "bytearray": "e0ab41993387cfffb4af6ba6" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1397532894135064705" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e624562b7062" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16871735662279973990" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0dc90055c11" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17178061258004197832" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "957027151258231290" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ffc3df20" + } + ] + }, + "cborHex": "9f9f4a52f5cf6005364856ebc64ce0ab41993387cfffb4af6ba6ffbf1b136508c344d8188146e624562b70621bea247231ce7cdc6646c0dc90055c111bee64bbb36d3d71c81b0d480b1f9f26a1faff44ffc3df20ff", + "cborBytes": [ + 159, 159, 74, 82, 245, 207, 96, 5, 54, 72, 86, 235, 198, 76, 224, 171, 65, 153, 51, 135, 207, 255, 180, 175, 107, + 166, 255, 191, 27, 19, 101, 8, 195, 68, 216, 24, 129, 70, 230, 36, 86, 43, 112, 98, 27, 234, 36, 114, 49, 206, + 124, 220, 102, 70, 192, 220, 144, 5, 92, 17, 27, 238, 100, 187, 179, 109, 61, 113, 200, 27, 13, 72, 11, 31, 159, + 38, 161, 250, 255, 68, 255, 195, 223, 32, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2592, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02cfe2c1" + }, + { + "_tag": "ByteArray", + "bytearray": "fd03861615ddfe1e9d0738" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2041954823836316987" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13986151696198487055" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4379892349599268933" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4892090506995204913" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "66f58ab93b33ed6db9ca" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1768252501336443255" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3880911820928180288" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14678929661154091033" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8294610409088950446" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5035388200708411696" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11113054513063591214" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2801752184003693737" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11437206133888076810" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18379069696749928716" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12065940607593685773" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a8ec2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17270896271599684010" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3745540673511161797" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6db0c55dfc572c26" + }, + { + "_tag": "ByteArray", + "bytearray": "0418c86ea2f1769e566c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4998526802790838365" + } + }, + { + "_tag": "ByteArray", + "bytearray": "58fb49b0f8610f8fbfeffaa6" + }, + { + "_tag": "ByteArray", + "bytearray": "f17d" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a8f2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1160000355432507652" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7ac600cb1050cbdc6108" + }, + { + "_tag": "ByteArray", + "bytearray": "126494ff7939dba35f" + } + ] + }, + "cborHex": "9f9f4402cfe2c14bfd03861615ddfe1e9d07381b1c567b17f228b53bd8669f1bc218caddaaa34c0f9f1b3cc880e2e450c0451b43e432658e828331ffffff9f4a66f58ab93b33ed6db9cad8669f1b188a1848075ac97780ffbf1b35dbc4bd3b09e0401bcbb608c12808e0191b731c6038680120ae1b45e14ae3d16b11301b9a3980333cb4fd2e1b26e1d2c45c370ca91b9eb91e61c1514c0a1bff0f928340ed010c1ba772d50df495230d436a8ec21befae8ca7655149aa1b33fad565d868ffc5ff9f486db0c55dfc572c264a0418c86ea2f1769e566c1b455e55a4d09df05d4c58fb49b0f8610f8fbfeffaa642f17dffff9f42a8f21b1019262d64e1a904ff4a7ac600cb1050cbdc610849126494ff7939dba35fff", + "cborBytes": [ + 159, 159, 68, 2, 207, 226, 193, 75, 253, 3, 134, 22, 21, 221, 254, 30, 157, 7, 56, 27, 28, 86, 123, 23, 242, 40, + 181, 59, 216, 102, 159, 27, 194, 24, 202, 221, 170, 163, 76, 15, 159, 27, 60, 200, 128, 226, 228, 80, 192, 69, 27, + 67, 228, 50, 101, 142, 130, 131, 49, 255, 255, 255, 159, 74, 102, 245, 138, 185, 59, 51, 237, 109, 185, 202, 216, + 102, 159, 27, 24, 138, 24, 72, 7, 90, 201, 119, 128, 255, 191, 27, 53, 219, 196, 189, 59, 9, 224, 64, 27, 203, + 182, 8, 193, 40, 8, 224, 25, 27, 115, 28, 96, 56, 104, 1, 32, 174, 27, 69, 225, 74, 227, 209, 107, 17, 48, 27, + 154, 57, 128, 51, 60, 180, 253, 46, 27, 38, 225, 210, 196, 92, 55, 12, 169, 27, 158, 185, 30, 97, 193, 81, 76, 10, + 27, 255, 15, 146, 131, 64, 237, 1, 12, 27, 167, 114, 213, 13, 244, 149, 35, 13, 67, 106, 142, 194, 27, 239, 174, + 140, 167, 101, 81, 73, 170, 27, 51, 250, 213, 101, 216, 104, 255, 197, 255, 159, 72, 109, 176, 197, 93, 252, 87, + 44, 38, 74, 4, 24, 200, 110, 162, 241, 118, 158, 86, 108, 27, 69, 94, 85, 164, 208, 157, 240, 93, 76, 88, 251, 73, + 176, 248, 97, 15, 143, 191, 239, 250, 166, 66, 241, 125, 255, 255, 159, 66, 168, 242, 27, 16, 25, 38, 45, 100, + 225, 169, 4, 255, 74, 122, 198, 0, 203, 16, 80, 203, 220, 97, 8, 73, 18, 100, 148, 255, 121, 57, 219, 163, 95, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2593, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13724218173024337086" + } + } + ] + }, + "cborHex": "9f1bbe7637b6df137cbeff", + "cborBytes": [159, 27, 190, 118, 55, 182, 223, 19, 124, 190, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2594, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6902365864968545232" + } + } + ] + }, + "cborHex": "9f1b5fca212f133b63d0ff", + "cborBytes": [159, 27, 95, 202, 33, 47, 19, 59, 99, 208, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2595, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21565fb3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed9e86104f4f97c4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79a7ad57abf6a258e60858aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3858814636298253860" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e99e04036" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "351bd10361efa4a8360802bd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d11876b87fda3b206fa6ce0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c0389" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e89fa3eb1787e11c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d912379db274a3f3" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "33486b" + }, + { + "_tag": "ByteArray", + "bytearray": "c22c20a283ca1a54c8e9875f" + } + ] + }, + "cborHex": "9fbf4421565fb348ed9e86104f4f97c44c79a7ad57abf6a258e60858aa1b358d437782a2b624458e99e040364c351bd10361efa4a8360802bd4cd11876b87fda3b206fa6ce0e437c038948e89fa3eb1787e11c48d912379db274a3f3ff4333486b4cc22c20a283ca1a54c8e9875fff", + "cborBytes": [ + 159, 191, 68, 33, 86, 95, 179, 72, 237, 158, 134, 16, 79, 79, 151, 196, 76, 121, 167, 173, 87, 171, 246, 162, 88, + 230, 8, 88, 170, 27, 53, 141, 67, 119, 130, 162, 182, 36, 69, 142, 153, 224, 64, 54, 76, 53, 27, 209, 3, 97, 239, + 164, 168, 54, 8, 2, 189, 76, 209, 24, 118, 184, 127, 218, 59, 32, 111, 166, 206, 14, 67, 124, 3, 137, 72, 232, + 159, 163, 235, 23, 135, 225, 28, 72, 217, 18, 55, 157, 178, 116, 163, 243, 255, 67, 51, 72, 107, 76, 194, 44, 32, + 162, 131, 202, 26, 84, 200, 233, 135, 95, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2596, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + "cborHex": "9f04ff", + "cborBytes": [159, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2597, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16775026623977659699" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16219992152586276693" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1153e998ea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1544753251966704669" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12371882503074511595" + } + }, + { + "_tag": "ByteArray", + "bytearray": "871d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15493054998031300186" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9147583889491647777" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1142686319261206378" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1be8ccddd62be89d339f1be118fcecf2874f55451153e998ea1b157010e5f11adc1d9f1babb1c19666a07aeb42871d1bd702636f5b3ef65affffffd8669f1b7ef2bf14de3c5d219f1b0fdba3273543476affffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 232, 204, 221, 214, 43, 232, 157, 51, 159, 27, 225, 24, 252, 236, 242, 135, 79, 85, 69, + 17, 83, 233, 152, 234, 27, 21, 112, 16, 229, 241, 26, 220, 29, 159, 27, 171, 177, 193, 150, 102, 160, 122, 235, + 66, 135, 29, 27, 215, 2, 99, 111, 91, 62, 246, 90, 255, 255, 255, 216, 102, 159, 27, 126, 242, 191, 20, 222, 60, + 93, 33, 159, 27, 15, 219, 163, 39, 53, 67, 71, 106, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2598, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15743113643977371660" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1024520309679841211" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8047042088429746297" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8213124544440781562" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5383433619037939354" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ffbf3590" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "41904ce3b0331824" + }, + { + "_tag": "ByteArray", + "bytearray": "d170a361" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5082198978721707" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14080447441367566538" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18103502577207180314" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12230627782407429370" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3473624909917059714" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17930683398728653424" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16190037512078121034" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f0ad8669f1bda7ac672d7e0700c9fbf1b0e37d3cb23a3dfbb1b6facd624f578f8791b71fae142176f4afa1b4ab5cc5a96a6e69aff9f44ffbf3590ff9f4841904ce3b033182444d170a361ffd8669f1b00120e3ba8cdf7ab9f1bc367cc58b54588ca1bfb3c8fad70cd7c1affffd8669f1ba9bbeb2ade6b1cfa9f1b3034cb73968dfa821bf8d6958ce1371a701be0ae9156b7aa584affffffffff", + "cborBytes": [ + 159, 10, 216, 102, 159, 27, 218, 122, 198, 114, 215, 224, 112, 12, 159, 191, 27, 14, 55, 211, 203, 35, 163, 223, + 187, 27, 111, 172, 214, 36, 245, 120, 248, 121, 27, 113, 250, 225, 66, 23, 111, 74, 250, 27, 74, 181, 204, 90, + 150, 166, 230, 154, 255, 159, 68, 255, 191, 53, 144, 255, 159, 72, 65, 144, 76, 227, 176, 51, 24, 36, 68, 209, + 112, 163, 97, 255, 216, 102, 159, 27, 0, 18, 14, 59, 168, 205, 247, 171, 159, 27, 195, 103, 204, 88, 181, 69, 136, + 202, 27, 251, 60, 143, 173, 112, 205, 124, 26, 255, 255, 216, 102, 159, 27, 169, 187, 235, 42, 222, 107, 28, 250, + 159, 27, 48, 52, 203, 115, 150, 141, 250, 130, 27, 248, 214, 149, 140, 225, 55, 26, 112, 27, 224, 174, 145, 86, + 183, 170, 88, 74, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2599, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10207199825854988093" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14121910256311572654" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "592117cd391e4a45a4c2" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6260983099830990852" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4995672478264418462" + } + } + ] + }, + "cborHex": "9f1b8da742295b83ff3dbf1bc3fb1a8e996598ae4a592117cd391e4a45a4c2ffd8669f1b56e37af50a26780480ff1b455431a69925609eff", + "cborBytes": [ + 159, 27, 141, 167, 66, 41, 91, 131, 255, 61, 191, 27, 195, 251, 26, 142, 153, 101, 152, 174, 74, 89, 33, 23, 205, + 57, 30, 74, 69, 164, 194, 255, 216, 102, 159, 27, 86, 227, 122, 245, 10, 38, 120, 4, 128, 255, 27, 69, 84, 49, + 166, 153, 37, 96, 158, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2600, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16201739260692650895" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dc878520" + }, + { + "_tag": "ByteArray", + "bytearray": "4d61fbd8550b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12967750372625464434" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4068051192155648461" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8872e319fe882f9961a27a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2217123585144152798" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4319180450173764216" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9306184931212984260" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8441568849091388445" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10765092916334119082" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10604719074569463710" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5df44b95d9b01676992e1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cf16bd19dce222b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08b59768944161751c9e" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1be0d824046115db8f9fd8799f44dc878520464d61fbd8550b1bb3f6b4420047bc721b38749f017c8ab1cd4b8872e319fe882f9961a27aff1b1ec4ce2763a862deffff80bf1b3bf0cfbc456b42781b812635e37f0affc41b75267a249518641d1b95654af8b42b48aa1b932b87cfe685a79e4bc5df44b95d9b01676992e1488cf16bd19dce222b4a08b59768944161751c9effff", + "cborBytes": [ + 159, 216, 102, 159, 27, 224, 216, 36, 4, 97, 21, 219, 143, 159, 216, 121, 159, 68, 220, 135, 133, 32, 70, 77, 97, + 251, 216, 85, 11, 27, 179, 246, 180, 66, 0, 71, 188, 114, 27, 56, 116, 159, 1, 124, 138, 177, 205, 75, 136, 114, + 227, 25, 254, 136, 47, 153, 97, 162, 122, 255, 27, 30, 196, 206, 39, 99, 168, 98, 222, 255, 255, 128, 191, 27, 59, + 240, 207, 188, 69, 107, 66, 120, 27, 129, 38, 53, 227, 127, 10, 255, 196, 27, 117, 38, 122, 36, 149, 24, 100, 29, + 27, 149, 101, 74, 248, 180, 43, 72, 170, 27, 147, 43, 135, 207, 230, 133, 167, 158, 75, 197, 223, 68, 185, 93, + 155, 1, 103, 105, 146, 225, 72, 140, 241, 107, 209, 157, 206, 34, 43, 74, 8, 181, 151, 104, 148, 65, 97, 117, 28, + 158, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2601, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cac22f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c91d54224d1a079299c5a3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75b0d9dc14314c866a71ee" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7022" + } + ] + }, + "cborHex": "9f43cac22fbf4bc91d54224d1a079299c5a34b75b0d9dc14314c866a71eeff427022ff", + "cborBytes": [ + 159, 67, 202, 194, 47, 191, 75, 201, 29, 84, 34, 77, 26, 7, 146, 153, 197, 163, 75, 117, 176, 217, 220, 20, 49, + 76, 134, 106, 113, 238, 255, 66, 112, 34, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2602, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10382102662821946842" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6449927f1b13" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17476753501191679007" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "379312774264418140" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7081b6d407152c0871a60e48" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17097156535971838181" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75caa85e71028edb715d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82f294f0802a50fde42c73" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b9014a35d7723a5da466449927f1b131bf289e6b6a9982c1f1b054396f560cc6f5c4c7081b6d407152c0871a60e481bed454d48ebd978e54a75caa85e71028edb715d4b82f294f0802a50fde42c73ffff", + "cborBytes": [ + 159, 191, 27, 144, 20, 163, 93, 119, 35, 165, 218, 70, 100, 73, 146, 127, 27, 19, 27, 242, 137, 230, 182, 169, + 152, 44, 31, 27, 5, 67, 150, 245, 96, 204, 111, 92, 76, 112, 129, 182, 212, 7, 21, 44, 8, 113, 166, 14, 72, 27, + 237, 69, 77, 72, 235, 217, 120, 229, 74, 117, 202, 168, 94, 113, 2, 142, 219, 113, 93, 75, 130, 242, 148, 240, + 128, 42, 80, 253, 228, 44, 115, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2603, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10034949020851000770" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18404462153693024205" + } + } + ] + }, + "cborHex": "9f1b8b434cf78efa55c21bff69c8d158fe4fcdff", + "cborBytes": [159, 27, 139, 67, 76, 247, 142, 250, 85, 194, 27, 255, 105, 200, 209, 88, 254, 79, 205, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2604, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4302530643148362747" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32e7d640cef182" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6949819166392819742" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8868861685314296525" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29ca8457" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9462739075379031363" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d83dac2a37963d0a8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13554361943917447129" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1245580347378105247" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9911858928553703864" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1004360104192542456" + } + }, + { + "_tag": "ByteArray", + "bytearray": "54" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4dc2896388bc5ba4fe" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a0fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13364992187191319220" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2536913234809961059" + } + } + ] + }, + "cborHex": "9fbf1b3bb5a8d2fc1753fb4732e7d640cef1821b6072b7b5ca0ba01e41dd1b7b1486b6ab3b1acd4429ca84571b8352670da62ced43493d83dac2a37963d0a81bbc1ac45fb845c7d91b114930ba00adfb9fffd8669f1b898dff2e243a39b89f9f1b0df0343184f886f84154ff9f494dc2896388bc5ba4feffffff42a0fa1bb979fd955f68dab41b2334ed255ad5ba63ff", + "cborBytes": [ + 159, 191, 27, 59, 181, 168, 210, 252, 23, 83, 251, 71, 50, 231, 214, 64, 206, 241, 130, 27, 96, 114, 183, 181, + 202, 11, 160, 30, 65, 221, 27, 123, 20, 134, 182, 171, 59, 26, 205, 68, 41, 202, 132, 87, 27, 131, 82, 103, 13, + 166, 44, 237, 67, 73, 61, 131, 218, 194, 163, 121, 99, 208, 168, 27, 188, 26, 196, 95, 184, 69, 199, 217, 27, 17, + 73, 48, 186, 0, 173, 251, 159, 255, 216, 102, 159, 27, 137, 141, 255, 46, 36, 58, 57, 184, 159, 159, 27, 13, 240, + 52, 49, 132, 248, 134, 248, 65, 84, 255, 159, 73, 77, 194, 137, 99, 136, 188, 91, 164, 254, 255, 255, 255, 66, + 160, 250, 27, 185, 121, 253, 149, 95, 104, 218, 180, 27, 35, 52, 237, 37, 90, 213, 186, 99, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2605, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ce64b658" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7773097580574340464" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9144144297836199633" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d2eca481" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10932411607940803607" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "ByteArray", + "bytearray": "86dc1c25" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18186336121273394274" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12423719773588307348" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4785247289560104798" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01ab25e8370bbe3b4665" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2056814231423848839" + } + }, + { + "_tag": "ByteArray", + "bytearray": "11" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16835701247671330315" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11684757626781731616" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7433938258541346599" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11553323904659932075" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f9f44ce64b658ff1b6bdf9710de94f570d8669f1b7ee686ca8770bed19f9f44d2eca481ff9f131b97b7ba6f5dab2c17044486dc1c251bfc62d858d25b2462ffd8669f1bac69eb4f75ba3d949f1b42689d0e78a17f5e4a01ab25e8370bbe3b46651b1c8b45a560fc91874111ffffd8669f1be9a46d15dc0ce60b9f1ba22899272edc8b201b672aa7759e8aff271ba055a6e11048c3abffffa0ffffff", + "cborBytes": [ + 159, 159, 68, 206, 100, 182, 88, 255, 27, 107, 223, 151, 16, 222, 148, 245, 112, 216, 102, 159, 27, 126, 230, 134, + 202, 135, 112, 190, 209, 159, 159, 68, 210, 236, 164, 129, 255, 159, 19, 27, 151, 183, 186, 111, 93, 171, 44, 23, + 4, 68, 134, 220, 28, 37, 27, 252, 98, 216, 88, 210, 91, 36, 98, 255, 216, 102, 159, 27, 172, 105, 235, 79, 117, + 186, 61, 148, 159, 27, 66, 104, 157, 14, 120, 161, 127, 94, 74, 1, 171, 37, 232, 55, 11, 190, 59, 70, 101, 27, 28, + 139, 69, 165, 96, 252, 145, 135, 65, 17, 255, 255, 216, 102, 159, 27, 233, 164, 109, 21, 220, 12, 230, 11, 159, + 27, 162, 40, 153, 39, 46, 220, 139, 32, 27, 103, 42, 167, 117, 158, 138, 255, 39, 27, 160, 85, 166, 225, 16, 72, + 195, 171, 255, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2606, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9425033875592843328" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6730822621263660216" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "899d49dc30528c499a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9642101153554625998" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5852541672602516253" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17135815856792523205" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48da92c7a8f120b9b37e" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3666bd35" + }, + { + "_tag": "ByteArray", + "bytearray": "90e9a5c00700a5162c2fdb80" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8599794064861971087" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a29890" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b82cc725fb6bc10409fbf1b5d68af833a9584b849899d49dc30528c499a1b85cf9fe9c201f5ce1b513867a4a4a4bb1d1bedcea5bb789fd1c54a48da92c7a8f120b9b37effd9050c9f443666bd354c90e9a5c00700a5162c2fdb801b77589b23699c428fff43a298901bfffffffffffffff4ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 130, 204, 114, 95, 182, 188, 16, 64, 159, 191, 27, 93, 104, 175, 131, 58, 149, 132, 184, + 73, 137, 157, 73, 220, 48, 82, 140, 73, 154, 27, 133, 207, 159, 233, 194, 1, 245, 206, 27, 81, 56, 103, 164, 164, + 164, 187, 29, 27, 237, 206, 165, 187, 120, 159, 209, 197, 74, 72, 218, 146, 199, 168, 241, 32, 185, 179, 126, 255, + 217, 5, 12, 159, 68, 54, 102, 189, 53, 76, 144, 233, 165, 192, 7, 0, 165, 22, 44, 47, 219, 128, 27, 119, 88, 155, + 35, 105, 156, 66, 143, 255, 67, 162, 152, 144, 27, 255, 255, 255, 255, 255, 255, 255, 244, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2607, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "78" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "53a84b0f3c63ce5a" + }, + { + "_tag": "ByteArray", + "bytearray": "f2eb19843616bc" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4503125791073839043" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1aa854238e19" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2785063094357836074" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "921c9a83e2191a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4339788605308209263" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a26646aebe6d6518db2f84d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34f4fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4164f03c2945b93" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f3ac82f9ce4b91322" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fef9b674" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f10fb7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3286999469353704771" + } + } + } + ] + } + ] + }, + "cborHex": "9f41789f4853a84b0f3c63ce5a47f2eb19843616bc9f1b3e7e510c63db27c3461aa854238e191b26a68820e03fc12affffbf47921c9a83e2191a1b3c3a06be4baf086f4ca26646aebe6d6518db2f84d31441ad4334f4fd48b4164f03c2945b93494f3ac82f9ce4b91322ffbf4207fa44fef9b67443f10fb71b2d9dc49a23b99d43ffff", + "cborBytes": [ + 159, 65, 120, 159, 72, 83, 168, 75, 15, 60, 99, 206, 90, 71, 242, 235, 25, 132, 54, 22, 188, 159, 27, 62, 126, 81, + 12, 99, 219, 39, 195, 70, 26, 168, 84, 35, 142, 25, 27, 38, 166, 136, 32, 224, 63, 193, 42, 255, 255, 191, 71, + 146, 28, 154, 131, 226, 25, 26, 27, 60, 58, 6, 190, 75, 175, 8, 111, 76, 162, 102, 70, 174, 190, 109, 101, 24, + 219, 47, 132, 211, 20, 65, 173, 67, 52, 244, 253, 72, 180, 22, 79, 3, 194, 148, 91, 147, 73, 79, 58, 200, 47, 156, + 228, 185, 19, 34, 255, 191, 66, 7, 250, 68, 254, 249, 182, 116, 67, 241, 15, 183, 27, 45, 157, 196, 154, 35, 185, + 157, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2608, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a4efbfafed6f95a8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "916662303097229381" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "230411258181815393" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1659384862530113536" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17328462808124765295" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1442603014795779874" + } + }, + { + "_tag": "ByteArray", + "bytearray": "421ecdc5bacd90dc107763" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9214999969035021962" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10949807516120305239" + } + }, + { + "_tag": "ByteArray", + "bytearray": "56e49c66" + }, + { + "_tag": "ByteArray", + "bytearray": "90ac0672cc98e368" + }, + { + "_tag": "ByteArray", + "bytearray": "7d7d636af43e653f75" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11835108989968187197" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8727381406569124725" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15079784348723227608" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7080798986166247570" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eece" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10566512692692705698" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11776006661635797643" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "588195469955997309" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "378522226648025295" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9680602804461145663" + } + }, + { + "_tag": "ByteArray", + "bytearray": "640b48" + } + ] + } + ] + } + ] + }, + "cborHex": "9f48a4efbfafed6f95a89f1b0cb8a3820b1a10451b033295d18c2d8c61d8669f1b170751bd9cc490009f1bf07b111d25d8346f1b140527cc78cf5f224b421ecdc5bacd90dc107763ffffd8669f1b7fe241a60f916e8a9f1b97f587ebdd40ce574456e49c664890ac0672cc98e368497d7d636af43e653f75ffffffd8669f1ba43ec0ebd915ff3d9f9f1b791de3264de6d3751bd14627f81324abd81b62440d298862a09242eeceffd8669f1b92a3cb4f6a9ae1a29f1ba36cc7aab36f728b1b0829b0a9dd389e7d1b0540c7f5aaf208cf1b865868f5eb8e8e3f43640b48ffffffffff", + "cborBytes": [ + 159, 72, 164, 239, 191, 175, 237, 111, 149, 168, 159, 27, 12, 184, 163, 130, 11, 26, 16, 69, 27, 3, 50, 149, 209, + 140, 45, 140, 97, 216, 102, 159, 27, 23, 7, 81, 189, 156, 196, 144, 0, 159, 27, 240, 123, 17, 29, 37, 216, 52, + 111, 27, 20, 5, 39, 204, 120, 207, 95, 34, 75, 66, 30, 205, 197, 186, 205, 144, 220, 16, 119, 99, 255, 255, 216, + 102, 159, 27, 127, 226, 65, 166, 15, 145, 110, 138, 159, 27, 151, 245, 135, 235, 221, 64, 206, 87, 68, 86, 228, + 156, 102, 72, 144, 172, 6, 114, 204, 152, 227, 104, 73, 125, 125, 99, 106, 244, 62, 101, 63, 117, 255, 255, 255, + 216, 102, 159, 27, 164, 62, 192, 235, 217, 21, 255, 61, 159, 159, 27, 121, 29, 227, 38, 77, 230, 211, 117, 27, + 209, 70, 39, 248, 19, 36, 171, 216, 27, 98, 68, 13, 41, 136, 98, 160, 146, 66, 238, 206, 255, 216, 102, 159, 27, + 146, 163, 203, 79, 106, 154, 225, 162, 159, 27, 163, 108, 199, 170, 179, 111, 114, 139, 27, 8, 41, 176, 169, 221, + 56, 158, 125, 27, 5, 64, 199, 245, 170, 242, 8, 207, 27, 134, 88, 104, 245, 235, 142, 142, 63, 67, 100, 11, 72, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2609, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f29e282ad489b817f94e" + }, + { + "_tag": "ByteArray", + "bytearray": "af152898e4b30b" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "900096913461544376" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "bf173ccfd7" + } + ] + } + ] + }, + "cborHex": "9fd87f9f4af29e282ad489b817f94e47af152898e4b30b80d8669f1b0c7dc95fb64d05b880ff45bf173ccfd7ffff", + "cborBytes": [ + 159, 216, 127, 159, 74, 242, 158, 40, 42, 212, 137, 184, 23, 249, 78, 71, 175, 21, 40, 152, 228, 179, 11, 128, + 216, 102, 159, 27, 12, 125, 201, 95, 182, 77, 5, 184, 128, 255, 69, 191, 23, 60, 207, 215, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2610, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "52d69bc7" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3706f1d7490e2ef524e089d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12512758671466493668" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47379c1df1688725df9bf1a5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f16a35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd905089fa09f4452d69bc7ffbf4ca3706f1d7490e2ef524e089d1bada63fb75cf2f6e441be4c47379c1df1688725df9bf1a543f16a354112ffffd8799fa0ffff", + "cborBytes": [ + 159, 217, 5, 8, 159, 160, 159, 68, 82, 214, 155, 199, 255, 191, 76, 163, 112, 111, 29, 116, 144, 226, 239, 82, 78, + 8, 157, 27, 173, 166, 63, 183, 92, 242, 246, 228, 65, 190, 76, 71, 55, 156, 29, 241, 104, 135, 37, 223, 155, 241, + 165, 67, 241, 106, 53, 65, 18, 255, 255, 216, 121, 159, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2611, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "85bbc3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15764133850259248743" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e7c953aa" + }, + { + "_tag": "ByteArray", + "bytearray": "cef898b3" + }, + { + "_tag": "ByteArray", + "bytearray": "7a823974" + }, + { + "_tag": "ByteArray", + "bytearray": "3a" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f627d5558e843547" + }, + { + "_tag": "ByteArray", + "bytearray": "92ff02" + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff79fbf4385bbc31bdac574370069d667ffffff1bfffffffffffffffa9fd9050d809f44e7c953aa44cef898b3447a823974413affff48f627d5558e8435474392ff02ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 191, 67, 133, 187, 195, 27, 218, 197, 116, + 55, 0, 105, 214, 103, 255, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 217, 5, 13, 128, 159, 68, + 231, 201, 83, 170, 68, 206, 248, 152, 179, 68, 122, 130, 57, 116, 65, 58, 255, 255, 72, 246, 39, 213, 85, 142, + 132, 53, 71, 67, 146, 255, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2612, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17871591961223002113" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "45013591489493563" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9407410806654765121" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9775569568455985340" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8126605810950844255" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15302634485457068506" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "959a8cb3819f6e74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36b9daf0daec07ed76" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2532345583436319895" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b4fc9f2ffb5f09287ba" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12289657686048083516" + } + }, + { + "_tag": "ByteArray", + "bytearray": "699d4adaff" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5116442823368481342" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9130700626595677999" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "382ea7faf8ba1bec09" + }, + { + "_tag": "ByteArray", + "bytearray": "c6d96effb454" + } + ] + } + ] + }, + "cborHex": "9f071bf804a633736c78011b009feb9f7acbba3bd87c9fd8669f1bfffffffffffffff09f1b828dd6493ad408411b87a9ccbab4f008bc1b70c780edaf59af5fffff1bfffffffffffffffbffd8669f1bd45de0fcd94fa1da9fbf48959a8cb3819f6e744936b9daf0daec07ed76ff9f1b2324b2e425404c974a4b4fc9f2ffb5f09287ba1baa8da28d540b8e3c45699d4adaffff9f1b470141a3c8799a3e1b7eb6c3d7e6ac072fff49382ea7faf8ba1bec0946c6d96effb454ffffff", + "cborBytes": [ + 159, 7, 27, 248, 4, 166, 51, 115, 108, 120, 1, 27, 0, 159, 235, 159, 122, 203, 186, 59, 216, 124, 159, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 27, 130, 141, 214, 73, 58, 212, 8, 65, 27, 135, 169, 204, + 186, 180, 240, 8, 188, 27, 112, 199, 128, 237, 175, 89, 175, 95, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, + 251, 255, 216, 102, 159, 27, 212, 93, 224, 252, 217, 79, 161, 218, 159, 191, 72, 149, 154, 140, 179, 129, 159, + 110, 116, 73, 54, 185, 218, 240, 218, 236, 7, 237, 118, 255, 159, 27, 35, 36, 178, 228, 37, 64, 76, 151, 74, 75, + 79, 201, 242, 255, 181, 240, 146, 135, 186, 27, 170, 141, 162, 141, 84, 11, 142, 60, 69, 105, 157, 74, 218, 255, + 255, 159, 27, 71, 1, 65, 163, 200, 121, 154, 62, 27, 126, 182, 195, 215, 230, 172, 7, 47, 255, 73, 56, 46, 167, + 250, 248, 186, 27, 236, 9, 70, 198, 217, 110, 255, 180, 84, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2613, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17062811368476407386" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5858573362741810239" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14485933228831691971" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7491709355284128961" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7054552090912183343" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c7fb6540c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14712733327914403684" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14889958167743043503" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1beccb48897788765a9fd8669f1b514dd56ef0ca943f9f1bc9085f85988a54c31b67f7e5f7422e64c11b61e6cdc0044f542f452c7fb6540c1bcc2e2102a5638764ffff1bcea3c2102cc017afffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 236, 203, 72, 137, 119, 136, 118, 90, 159, 216, 102, 159, 27, 81, 77, 213, 110, 240, 202, + 148, 63, 159, 27, 201, 8, 95, 133, 152, 138, 84, 195, 27, 103, 247, 229, 247, 66, 46, 100, 193, 27, 97, 230, 205, + 192, 4, 79, 84, 47, 69, 44, 127, 182, 84, 12, 27, 204, 46, 33, 2, 165, 99, 135, 100, 255, 255, 27, 206, 163, 194, + 16, 44, 192, 23, 175, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2614, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5459534131715931433" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b4bc4295df00c7d2980ffff", + "cborBytes": [159, 216, 102, 159, 27, 75, 196, 41, 93, 240, 12, 125, 41, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2615, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7712745835149225667" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08dd3f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "328d5d250ca1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e246ce73fafdd29192c690c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f521" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc7c08a5" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2705089407183115856" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1916440615039304364" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12058031559617515503" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6b2abd1" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3370318351228162970" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4922442822040222985" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd6dc4e10780a2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9297934900437816304" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "269d62ed4dcf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9807393385019469066" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3712388107701703607" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12555644715679200082" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17208430087803974192" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14062683039387906740" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a15c5c30f78" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15964198814942964232" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4336566253142180412" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e0196c08bcec972fee9594f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14046687432555691133" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f53ef50b2e90621ea79a0633" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2762cb57e68a841" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5350467381066278833" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1caf843b337500" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16395439806195442264" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15857271467320390869" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fe02ac0500" + }, + { + "_tag": "ByteArray", + "bytearray": "0603a8" + } + ] + }, + "cborHex": "9f9fbf1b6b092d7922f16ec34308dd3f46328d5d250ca14ce246ce73fafdd29192c690c642f52144bc7c08a5ffff9fbf1b258a687bd0d256501b1a989095ec8c82ac1ba756bbd139738fef44e6b2abd1ffbf1b2ec5c6af08ef539a41c01b445007aa9ae0fd0947cd6dc4e10780a21b8108e687854d93f046269d62ed4dcf1b881adc526699ed0a1b33850d509bf1d3b71bae3e9c58a411b3521beed09ffd9db332301bc328afb78fa072b4460a15c5c30f78ffbf1bdd8c3a3d80632a081b3c2e9407f77c823c4c5e0196c08bcec972fee9594f1bc2efdbcc206cfc7d419f4cf53ef50b2e90621ea79a063348b2762cb57e68a8411b4a40adbc2ec527b1ff471caf843b337500ffd905099f1bfffffffffffffff5bf1be3884da3109422581bdc1058625491b4d5ffff45fe02ac0500430603a8ff", + "cborBytes": [ + 159, 159, 191, 27, 107, 9, 45, 121, 34, 241, 110, 195, 67, 8, 221, 63, 70, 50, 141, 93, 37, 12, 161, 76, 226, 70, + 206, 115, 250, 253, 210, 145, 146, 198, 144, 198, 66, 245, 33, 68, 188, 124, 8, 165, 255, 255, 159, 191, 27, 37, + 138, 104, 123, 208, 210, 86, 80, 27, 26, 152, 144, 149, 236, 140, 130, 172, 27, 167, 86, 187, 209, 57, 115, 143, + 239, 68, 230, 178, 171, 209, 255, 191, 27, 46, 197, 198, 175, 8, 239, 83, 154, 65, 192, 27, 68, 80, 7, 170, 154, + 224, 253, 9, 71, 205, 109, 196, 225, 7, 128, 162, 27, 129, 8, 230, 135, 133, 77, 147, 240, 70, 38, 157, 98, 237, + 77, 207, 27, 136, 26, 220, 82, 102, 153, 237, 10, 27, 51, 133, 13, 80, 155, 241, 211, 183, 27, 174, 62, 156, 88, + 164, 17, 179, 82, 27, 238, 208, 159, 253, 157, 179, 50, 48, 27, 195, 40, 175, 183, 143, 160, 114, 180, 70, 10, 21, + 197, 195, 15, 120, 255, 191, 27, 221, 140, 58, 61, 128, 99, 42, 8, 27, 60, 46, 148, 7, 247, 124, 130, 60, 76, 94, + 1, 150, 192, 139, 206, 201, 114, 254, 233, 89, 79, 27, 194, 239, 219, 204, 32, 108, 252, 125, 65, 159, 76, 245, + 62, 245, 11, 46, 144, 98, 30, 167, 154, 6, 51, 72, 178, 118, 44, 181, 126, 104, 168, 65, 27, 74, 64, 173, 188, 46, + 197, 39, 177, 255, 71, 28, 175, 132, 59, 51, 117, 0, 255, 217, 5, 9, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 245, 191, 27, 227, 136, 77, 163, 16, 148, 34, 88, 27, 220, 16, 88, 98, 84, 145, 180, 213, 255, 255, 69, 254, 2, + 172, 5, 0, 67, 6, 3, 168, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2616, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3461329548193878112" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d3c7aa048cbe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8001581910600781260" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09dd9fe615ffdc" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8151640494632734303" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5781027826296285781" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6a2f3e64" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12416980606067799899" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16126729952032400497" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5280750126491433841" + } + }, + { + "_tag": "ByteArray", + "bytearray": "10" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "136b3085a511b4f1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "084f091741e423d69bfbc6b0" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b30091ce29aa8d0609f9f46d3c7aa048cbe1b6f0b545a7e8d0dcc4709dd9fe615ffdcffd8669f1b712071d733460e5f9f1b503a562dc709ea55ffff446a2f3e64d8669f1bac51fa12bf95f75b9f1bdfcda772c38b24711b4948fe42ed1efb714110ffffffffbf48136b3085a511b4f14c084f091741e423d69bfbc6b0ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 48, 9, 28, 226, 154, 168, 208, 96, 159, 159, 70, 211, 199, 170, 4, 140, 190, 27, 111, 11, + 84, 90, 126, 141, 13, 204, 71, 9, 221, 159, 230, 21, 255, 220, 255, 216, 102, 159, 27, 113, 32, 113, 215, 51, 70, + 14, 95, 159, 27, 80, 58, 86, 45, 199, 9, 234, 85, 255, 255, 68, 106, 47, 62, 100, 216, 102, 159, 27, 172, 81, 250, + 18, 191, 149, 247, 91, 159, 27, 223, 205, 167, 114, 195, 139, 36, 113, 27, 73, 72, 254, 66, 237, 30, 251, 113, 65, + 16, 255, 255, 255, 255, 191, 72, 19, 107, 48, 133, 165, 17, 180, 241, 76, 8, 79, 9, 23, 65, 228, 35, 214, 155, + 251, 198, 176, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2617, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "87ef430838" + }, + { + "_tag": "ByteArray", + "bytearray": "1e6c8106aef89d" + } + ] + }, + "cborHex": "9f4587ef430838471e6c8106aef89dff", + "cborBytes": [159, 69, 135, 239, 67, 8, 56, 71, 30, 108, 129, 6, 174, 248, 157, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2618, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d3f585b94" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0506c004b7" + } + } + ] + } + ] + }, + "cborHex": "9fbf450d3f585b94450506c004b7ffff", + "cborBytes": [159, 191, 69, 13, 63, 88, 91, 148, 69, 5, 6, 192, 4, 183, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2619, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5767313195636492188" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8627310854881177062" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8394746278702338671" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14381585480083499795" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15447322246558250811" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9173777401083774436" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4823870348169018421" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11256731051773052169" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10567662910881441947" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9cb5d2c0" + }, + { + "_tag": "ByteArray", + "bytearray": "418ab19d8b53ec65ddfb9bd9" + }, + { + "_tag": "ByteArray", + "bytearray": "996365" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b50099ccb7e56079c1b77ba5d8358106de6d8669f1b748021436195d26f9f9f1bc795a7cc174aeb131bd65fe9bd6517f73b1b7f4fcdf1081ac5e41b42f1d48611277c351b9c37f140390ac509ff9f1b92a7e16d7528a89b449cb5d2c04c418ab19d8b53ec65ddfb9bd943996365ffffffff", + "cborBytes": [ + 159, 27, 80, 9, 156, 203, 126, 86, 7, 156, 27, 119, 186, 93, 131, 88, 16, 109, 230, 216, 102, 159, 27, 116, 128, + 33, 67, 97, 149, 210, 111, 159, 159, 27, 199, 149, 167, 204, 23, 74, 235, 19, 27, 214, 95, 233, 189, 101, 23, 247, + 59, 27, 127, 79, 205, 241, 8, 26, 197, 228, 27, 66, 241, 212, 134, 17, 39, 124, 53, 27, 156, 55, 241, 64, 57, 10, + 197, 9, 255, 159, 27, 146, 167, 225, 109, 117, 40, 168, 155, 68, 156, 181, 210, 192, 76, 65, 138, 177, 157, 139, + 83, 236, 101, 221, 251, 155, 217, 67, 153, 99, 101, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2620, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7653144558934526683" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7054856635274037413" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "87ef0078f263" + }, + { + "_tag": "ByteArray", + "bytearray": "79" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17592314932756927456" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "70" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3093438383880048963" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13094027567371175140" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f4ad259a5e" + }, + { + "_tag": "ByteArray", + "bytearray": "fc20" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15833342176742622218" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a03a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9195124200989599508" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2362739130248229164" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f801bffffffffffffffec1b6a356e6da2018adbd8669f1b61e7e2bb46d108a59f4687ef0078f2634179ffff01ff9fd8669f1bf424753927c6d3e09f41701b2aee19d205ba91431bb5b754b28854c4e445f4ad259a5e42fc20ffff1bdbbb54d233f4440a9f42a03a1b7f9ba4be319527141b20ca22b87b5c712cffffff", + "cborBytes": [ + 159, 159, 128, 27, 255, 255, 255, 255, 255, 255, 255, 236, 27, 106, 53, 110, 109, 162, 1, 138, 219, 216, 102, 159, + 27, 97, 231, 226, 187, 70, 209, 8, 165, 159, 70, 135, 239, 0, 120, 242, 99, 65, 121, 255, 255, 1, 255, 159, 216, + 102, 159, 27, 244, 36, 117, 57, 39, 198, 211, 224, 159, 65, 112, 27, 42, 238, 25, 210, 5, 186, 145, 67, 27, 181, + 183, 84, 178, 136, 84, 196, 228, 69, 244, 173, 37, 154, 94, 66, 252, 32, 255, 255, 27, 219, 187, 84, 210, 51, 244, + 68, 10, 159, 66, 160, 58, 27, 127, 155, 164, 190, 49, 149, 39, 20, 27, 32, 202, 34, 184, 123, 92, 113, 44, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2621, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17508657709165550606" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "95e28b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11799206841312613642" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b14fc3db10602a52925" + }, + { + "_tag": "ByteArray", + "bytearray": "8382476683a8dafc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4078072185732778631" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "9f9fd8669f1bf2fb3f6bf0b79c0e9f4395e28b1ba3bf341b77cc150a4a5b14fc3db10602a52925488382476683a8dafc1b3898390bdf00ca87ffffff0eff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 242, 251, 63, 107, 240, 183, 156, 14, 159, 67, 149, 226, 139, 27, 163, 191, 52, 27, + 119, 204, 21, 10, 74, 91, 20, 252, 61, 177, 6, 2, 165, 41, 37, 72, 131, 130, 71, 102, 131, 168, 218, 252, 27, 56, + 152, 57, 11, 223, 0, 202, 135, 255, 255, 255, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2622, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cdbf2d77" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "18449890ec7c7f0f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7584986354697350218" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a47684f34dcbea1bf12a0" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3345489576485664757" + } + } + ] + } + ] + }, + "cborHex": "9f9f44cdbf2d77ff9f9f4818449890ec7c7f0f1b694348e711ebac4a4b8a47684f34dcbea1bf12a0ff1b2e6d910b6e3337f5ffff", + "cborBytes": [ + 159, 159, 68, 205, 191, 45, 119, 255, 159, 159, 72, 24, 68, 152, 144, 236, 124, 127, 15, 27, 105, 67, 72, 231, 17, + 235, 172, 74, 75, 138, 71, 104, 79, 52, 220, 190, 161, 191, 18, 160, 255, 27, 46, 109, 145, 11, 110, 51, 55, 245, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2623, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9559303982721670146" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f0b1b84a978532e1a1c0280ff", + "cborBytes": [159, 11, 27, 132, 169, 120, 83, 46, 26, 28, 2, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2624, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7407667116115326034" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9756637135363616293" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2924030525589792912" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c9e6276040f8173c3a1117f" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e5" + }, + { + "_tag": "ByteArray", + "bytearray": "a68de7" + }, + { + "_tag": "ByteArray", + "bytearray": "a28209135ebf742c1c" + }, + { + "_tag": "ByteArray", + "bytearray": "8c12" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f000a6cf92fc" + }, + { + "_tag": "ByteArray", + "bytearray": "f8a1f66ba30e12729d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15865076844813183344" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14085785348586141180" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f1b66cd51fe9e657452d8669f1b876689c81fbbae259f1b28943e45562da8904c2c9e6276040f8173c3a1117fffff9f41e543a68de749a28209135ebf742c1c428c12ff46f000a6cf92fc49f8a1f66ba30e12729dffbf1bdc2c1355655d69701bc37ac32514e0f5fcffff", + "cborBytes": [ + 159, 159, 27, 102, 205, 81, 254, 158, 101, 116, 82, 216, 102, 159, 27, 135, 102, 137, 200, 31, 187, 174, 37, 159, + 27, 40, 148, 62, 69, 86, 45, 168, 144, 76, 44, 158, 98, 118, 4, 15, 129, 115, 195, 161, 17, 127, 255, 255, 159, + 65, 229, 67, 166, 141, 231, 73, 162, 130, 9, 19, 94, 191, 116, 44, 28, 66, 140, 18, 255, 70, 240, 0, 166, 207, + 146, 252, 73, 248, 161, 246, 107, 163, 14, 18, 114, 157, 255, 191, 27, 220, 44, 19, 85, 101, 93, 105, 112, 27, + 195, 122, 195, 37, 20, 224, 245, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2625, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9395629920649182129" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12053410058606329299" + } + }, + { + "_tag": "ByteArray", + "bytearray": "917fd417ed960a2482" + }, + { + "_tag": "ByteArray", + "bytearray": "d45470" + }, + { + "_tag": "ByteArray", + "bytearray": "3b1f7bf231ae" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "909959be61" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f1b8263fba1f5537bb11ba74650962b59bdd349917fd417ed960a248243d45470463b1f7bf231aeffffbf0645909959be61ffff", + "cborBytes": [ + 159, 159, 159, 27, 130, 99, 251, 161, 245, 83, 123, 177, 27, 167, 70, 80, 150, 43, 89, 189, 211, 73, 145, 127, + 212, 23, 237, 150, 10, 36, 130, 67, 212, 84, 112, 70, 59, 31, 123, 242, 49, 174, 255, 255, 191, 6, 69, 144, 153, + 89, 190, 97, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2626, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9202115220646769905" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0dbe68b9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17891008074334185891" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2455114117157843238" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b7fb47b09ccddb4f1440dbe68b91bf849a10d9055a9a31b22125148243d7126ffff", + "cborBytes": [ + 159, 191, 27, 127, 180, 123, 9, 204, 221, 180, 241, 68, 13, 190, 104, 185, 27, 248, 73, 161, 13, 144, 85, 169, + 163, 27, 34, 18, 81, 72, 36, 61, 113, 38, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2627, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "090df8d4314f83c5563a25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d52660a5eebafef5" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16124169696884843332" + } + } + ] + }, + "cborHex": "9fbf4b090df8d4314f83c5563a2548d52660a5eebafef5ff1bdfc48ee8e8f06344ff", + "cborBytes": [ + 159, 191, 75, 9, 13, 248, 212, 49, 79, 131, 197, 86, 58, 37, 72, 213, 38, 96, 165, 238, 186, 254, 245, 255, 27, + 223, 196, 142, 232, 232, 240, 99, 68, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2628, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10393324216940609594" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + ] + }, + "cborHex": "9f1b903c814f2235c03a1bfffffffffffffffdff", + "cborBytes": [159, 27, 144, 60, 129, 79, 34, 53, 192, 58, 27, 255, 255, 255, 255, 255, 255, 255, 253, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2629, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "909380808386871496" + } + } + ] + }, + "cborHex": "9f1b0c9ec506f17500c8ff", + "cborBytes": [159, 27, 12, 158, 197, 6, 241, 117, 0, 200, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2630, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10344080969198051933" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fdb4599210778a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11123553099926756599" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3470359158100169425" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "234411536870440541" + } + }, + { + "_tag": "ByteArray", + "bytearray": "124508794bad201ea8dff8" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b8f8d8ed610eda25d9f47fdb4599210778ad8669f1b9a5ecc9bf9545cf780ff9f1b302931447d9592d11b0340cc0d026a7e5d4b124508794bad201ea8dff8ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 143, 141, 142, 214, 16, 237, 162, 93, 159, 71, 253, 180, 89, 146, 16, 119, 138, 216, 102, + 159, 27, 154, 94, 204, 155, 249, 84, 92, 247, 128, 255, 159, 27, 48, 41, 49, 68, 125, 149, 146, 209, 27, 3, 64, + 204, 13, 2, 106, 126, 93, 75, 18, 69, 8, 121, 75, 173, 32, 30, 168, 223, 248, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2631, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "175c474afb0236" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15823172605570890384" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7449492364333331828" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7e449b59" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8442693413644720952" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15276830" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8338255556559849388" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ea165fa514083c14fd6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14010471503604277171" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65d1a2e4b688" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14f83e0e0d099e63c51324f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3a5afb813" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d8c3d56" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0a2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3573605907185784105" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1721873131120818134" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "957a16" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9851389203531774634" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15050592861514877296" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10100961660750875453" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1512081515256711965" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12402698703661593649" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d75500818b95540141aca2ec" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16759677992417533535" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f81ecdf" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4039538870696091243" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11972848060437308196" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8528781068153163584" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "48fa00c8e5172fc9" + }, + { + "_tag": "ByteArray", + "bytearray": "24bb522b9359" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2960851863711806447" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f9f47175c474afb0236d8669f1bdb9733a666beba909f1b6761e9d61512b574447e449b591b752a78edabd2db38ffffbf44152768301b73b76f402f2d47ac4a4ea165fa514083c14fd61bc26f319a1410dfb34665d1a2e4b6884c14f83e0e0d099e63c51324f245a3a5afb813445d8c3d5642d0a21b3197ffa3890bd529ffffbf1b17e5527d68bef7d643957a161b88b72a4924a13aaa1bd0de7277519fc9701b8c2dd31cfee54b3d1b14fbfe20744f8b1d1bac1f3cc237f274314cd75500818b95540141aca2ec1be896565667fa9e5f446f81ecdfff1b380f533354391e6b9f801ba62819e048172324ffd8669f1b765c5131ae588f409f4848fa00c8e5172fc94624bb522b9359d8669f1b29170f15311873ef80ffffffff", + "cborBytes": [ + 159, 159, 71, 23, 92, 71, 74, 251, 2, 54, 216, 102, 159, 27, 219, 151, 51, 166, 102, 190, 186, 144, 159, 27, 103, + 97, 233, 214, 21, 18, 181, 116, 68, 126, 68, 155, 89, 27, 117, 42, 120, 237, 171, 210, 219, 56, 255, 255, 191, 68, + 21, 39, 104, 48, 27, 115, 183, 111, 64, 47, 45, 71, 172, 74, 78, 161, 101, 250, 81, 64, 131, 193, 79, 214, 27, + 194, 111, 49, 154, 20, 16, 223, 179, 70, 101, 209, 162, 228, 182, 136, 76, 20, 248, 62, 14, 13, 9, 158, 99, 197, + 19, 36, 242, 69, 163, 165, 175, 184, 19, 68, 93, 140, 61, 86, 66, 208, 162, 27, 49, 151, 255, 163, 137, 11, 213, + 41, 255, 255, 191, 27, 23, 229, 82, 125, 104, 190, 247, 214, 67, 149, 122, 22, 27, 136, 183, 42, 73, 36, 161, 58, + 170, 27, 208, 222, 114, 119, 81, 159, 201, 112, 27, 140, 45, 211, 28, 254, 229, 75, 61, 27, 20, 251, 254, 32, 116, + 79, 139, 29, 27, 172, 31, 60, 194, 55, 242, 116, 49, 76, 215, 85, 0, 129, 139, 149, 84, 1, 65, 172, 162, 236, 27, + 232, 150, 86, 86, 103, 250, 158, 95, 68, 111, 129, 236, 223, 255, 27, 56, 15, 83, 51, 84, 57, 30, 107, 159, 128, + 27, 166, 40, 25, 224, 72, 23, 35, 36, 255, 216, 102, 159, 27, 118, 92, 81, 49, 174, 88, 143, 64, 159, 72, 72, 250, + 0, 200, 229, 23, 47, 201, 70, 36, 187, 82, 43, 147, 89, 216, 102, 159, 27, 41, 23, 15, 21, 49, 24, 115, 239, 128, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2632, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7b691216c7eb3c87" + } + ] + }, + "cborHex": "9fa0487b691216c7eb3c87ff", + "cborBytes": [159, 160, 72, 123, 105, 18, 22, 199, 235, 60, 135, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2633, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "938f937e505aea6d46849c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14829597181546328741" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "727242686518676099" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11988389303148262400" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2388439224468340577" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6272159803244853467" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6821063364413360701" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da2250" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9101256686767242749" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d8171446efe740a00ace5dc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11921168577771677546" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3333247901902477899" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15762087889928466376" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "340e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18179382621560063636" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "501119083503609423" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15163541131928739830" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "16a544a78c5b4264" + } + ] + } + ] + }, + "cborHex": "9f4b938f937e505aea6d46849c1bcdcd5010e833f2a5bf1b0a17af5ecb724a831ba65f508dd33eb4001b212570d1f60b7f611b570b301c16e4b8db1b5ea948fd8a4a0a3d43da22501b7e4e28bc7068fdfd4c3d8171446efe740a00ace5dc1ba5707fa911a1276a1b2e42134e75369a4b1bdabe2f6cbdac2fc842340eff1bfc4a242d01ff4694d8669f1b06f45526c266e64f9f9f1bd26fb851d1a31ff6ff4816a544a78c5b4264ffffff", + "cborBytes": [ + 159, 75, 147, 143, 147, 126, 80, 90, 234, 109, 70, 132, 156, 27, 205, 205, 80, 16, 232, 51, 242, 165, 191, 27, 10, + 23, 175, 94, 203, 114, 74, 131, 27, 166, 95, 80, 141, 211, 62, 180, 0, 27, 33, 37, 112, 209, 246, 11, 127, 97, 27, + 87, 11, 48, 28, 22, 228, 184, 219, 27, 94, 169, 72, 253, 138, 74, 10, 61, 67, 218, 34, 80, 27, 126, 78, 40, 188, + 112, 104, 253, 253, 76, 61, 129, 113, 68, 110, 254, 116, 10, 0, 172, 229, 220, 27, 165, 112, 127, 169, 17, 161, + 39, 106, 27, 46, 66, 19, 78, 117, 54, 154, 75, 27, 218, 190, 47, 108, 189, 172, 47, 200, 66, 52, 14, 255, 27, 252, + 74, 36, 45, 1, 255, 70, 148, 216, 102, 159, 27, 6, 244, 85, 38, 194, 102, 230, 79, 159, 159, 27, 210, 111, 184, + 81, 209, 163, 31, 246, 255, 72, 22, 165, 68, 167, 140, 91, 66, 100, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2634, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24a4e0f0407f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17553026256530028431" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d89d48576a9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1728076589759061867" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fa36dcf4098dc880468e" + } + ] + }, + "cborHex": "9fbf4624a4e0f0407f1bf398e0616193b78f46d89d48576a9c1b17fb5c80ad41df6bff4afa36dcf4098dc880468eff", + "cborBytes": [ + 159, 191, 70, 36, 164, 224, 240, 64, 127, 27, 243, 152, 224, 97, 97, 147, 183, 143, 70, 216, 157, 72, 87, 106, + 156, 27, 23, 251, 92, 128, 173, 65, 223, 107, 255, 74, 250, 54, 220, 244, 9, 141, 200, 128, 70, 142, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2635, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "58" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7563571292061328424" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d5800df07594363" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba43c0624ffefd21d16c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c05d737bb207e462ded" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9336339227666601917" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af8e4c399c6e7d5da2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1032875446987238035" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4966374571800084900" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eab20ee45480" + }, + { + "_tag": "ByteArray", + "bytearray": "f839fe" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "04fa6f01d402" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14467627392042605143" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e86afef3da77e490" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5187259876588665828" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69ef3ea5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4333304923656368215" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d6e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12578750916083509995" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dd94" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9168188988659451687" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15541084536095299363" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5d66c523c3a87b1a1b34b9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fbf41581b68f7340440a86428487d5800df075943634aba43c0624ffefd21d16c4a9c05d737bb207e462ded1b8191570fbf9cd7bd49af8e4c399c6e7d5da21b0e5582bf22e5aa93ff9fd8669f1b44ec1b5c2dad41a49f46eab20ee4548043f839feffff4604fa6f01d402ff9fbf1bc8c75675d5691a5748e86afef3da77e49041001b47fcd95fddb43be44469ef3ea51b3c22fdde85fd3057429d6e1bae90b3502746eaebff9f42dd941b7f3bf34f5eb1c7271bd7ad060b9e46d723ffff4b5d66c523c3a87b1a1b34b99f80ffff", + "cborBytes": [ + 159, 191, 65, 88, 27, 104, 247, 52, 4, 64, 168, 100, 40, 72, 125, 88, 0, 223, 7, 89, 67, 99, 74, 186, 67, 192, 98, + 79, 254, 253, 33, 209, 108, 74, 156, 5, 215, 55, 187, 32, 126, 70, 45, 237, 27, 129, 145, 87, 15, 191, 156, 215, + 189, 73, 175, 142, 76, 57, 156, 110, 125, 93, 162, 27, 14, 85, 130, 191, 34, 229, 170, 147, 255, 159, 216, 102, + 159, 27, 68, 236, 27, 92, 45, 173, 65, 164, 159, 70, 234, 178, 14, 228, 84, 128, 67, 248, 57, 254, 255, 255, 70, + 4, 250, 111, 1, 212, 2, 255, 159, 191, 27, 200, 199, 86, 117, 213, 105, 26, 87, 72, 232, 106, 254, 243, 218, 119, + 228, 144, 65, 0, 27, 71, 252, 217, 95, 221, 180, 59, 228, 68, 105, 239, 62, 165, 27, 60, 34, 253, 222, 133, 253, + 48, 87, 66, 157, 110, 27, 174, 144, 179, 80, 39, 70, 234, 235, 255, 159, 66, 221, 148, 27, 127, 59, 243, 79, 94, + 177, 199, 39, 27, 215, 173, 6, 11, 158, 70, 215, 35, 255, 255, 75, 93, 102, 197, 35, 195, 168, 123, 26, 27, 52, + 185, 159, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2636, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15273097181954329773" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4573d81d131" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecf6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5fb95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b009c7" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11851752680027579407" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5285546649620270342" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d" + }, + { + "_tag": "ByteArray", + "bytearray": "48294ecf8690" + }, + { + "_tag": "ByteArray", + "bytearray": "ce76af63b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7944589893657874535" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10283192434671370650" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17294511645283398568" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1faf9a11fd" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6811aec15a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12736202461497722469" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "973286a1c7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c97c62ebbc645f8d11" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bd3f4f0f776684cad9fbf46b4573d81d13142ecf643d5fb9543b009c7ffd8669f1ba479e244ead3e40f9f1b495a08ac7e5f4d06415d4648294ecf869045ce76af63b71b6e40da6a81a2d067ffff1b8eb53d096192419ad8669f1bf00272b60cf933a880ffffff451faf9a11fdbf456811aec15a1bb0c014a8d107066545973286a1c749c97c62ebbc645f8d11ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 211, 244, 240, 247, 118, 104, 76, 173, 159, 191, 70, 180, 87, 61, 129, 209, 49, 66, 236, + 246, 67, 213, 251, 149, 67, 176, 9, 199, 255, 216, 102, 159, 27, 164, 121, 226, 68, 234, 211, 228, 15, 159, 27, + 73, 90, 8, 172, 126, 95, 77, 6, 65, 93, 70, 72, 41, 78, 207, 134, 144, 69, 206, 118, 175, 99, 183, 27, 110, 64, + 218, 106, 129, 162, 208, 103, 255, 255, 27, 142, 181, 61, 9, 97, 146, 65, 154, 216, 102, 159, 27, 240, 2, 114, + 182, 12, 249, 51, 168, 128, 255, 255, 255, 69, 31, 175, 154, 17, 253, 191, 69, 104, 17, 174, 193, 90, 27, 176, + 192, 20, 168, 209, 7, 6, 101, 69, 151, 50, 134, 161, 199, 73, 201, 124, 98, 235, 188, 100, 95, 141, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2637, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6072799872246925059" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4483009497515025336" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "69be05a81480d1c78886" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17902324503972803691" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6218777847416870604" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8f3c68a2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7446629690682251264" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b5446eb4f0950c7039f80ffffd8669f1b3e36d962d015e3b880ff9f9f4a69be05a81480d1c788861bf871d5492911f46bffff80d8669f1b564d8980f459d6cc9f448f3c68a21b6757be3feefe1800ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 84, 70, 235, 79, 9, 80, 199, 3, 159, 128, 255, 255, 216, 102, 159, 27, 62, 54, 217, 98, + 208, 21, 227, 184, 128, 255, 159, 159, 74, 105, 190, 5, 168, 20, 128, 209, 199, 136, 134, 27, 248, 113, 213, 73, + 41, 17, 244, 107, 255, 255, 128, 216, 102, 159, 27, 86, 77, 137, 128, 244, 89, 214, 204, 159, 68, 143, 60, 104, + 162, 27, 103, 87, 190, 63, 238, 254, 24, 0, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2638, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "288901566522797229" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d695dc29c1a428" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1612667228935726068" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13108933539989455934" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2017132483970987494" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3886908844251535305" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14295571193271255011" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d7af6b535180f7266e6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14585930848783433031" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45336017154b18a7765c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18225371610554226954" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "db35" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16918351631130244971" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16251289472797170959" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5268754889372813478" + } + }, + { + "_tag": "ByteArray", + "bytearray": "66be17a3f7bef68dcd" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4041357997593316336" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b982e7" + }, + { + "_tag": "ByteArray", + "bytearray": "4444fb52f3e7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12072590939942975473" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17347075574426911387" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14759008582648292189" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12309466461927519775" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "36914ea29ac59e7349983991" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14919650843871594412" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1344f02511d60aeb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17290126175630361618" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbc16bee1382ffe589343bd2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a91eaa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f22569c3c469c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12890265777574225797" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8441165171527852145" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b5e62643816ecfedf7" + } + ] + } + ] + }, + "cborHex": "9fbf1b04026271afa52cad47d695dc29c1a4281b1661584ce9a0a3f41bb5ec4999bb46843e1b1bfe4b4e93fdf5e61b35f1130007efd7c91bc6641242543d7fe34a2d7af6b535180f7266e61bca6ba2d3d025fd474a45336017154b18a7765c1bfced86eaea92d90a41e1ff42db359fd8669f1beaca0f2bd6ab376b9f1be1882dac281edd0f1b491e60a825ab48a64966be17a3f7bef68dcdffffd8669f1b3815c9afd0bbcbf09f43b982e7464444fb52f3e71ba78a757f1de677f11bf0bd31538192429b1bccd2881bfdb1635dffffd8669f1baad402875dc6361f9f4c36914ea29ac59e73499839911bcf0d3f6511d2c7acffffbf481344f02511d60aeb1beff2de26542184124ccbc16bee1382ffe589343bd243a91eaa47f22569c3c469c31bb2e36c6ddcafa785ffffd8669f1b75250b00135120719f49b5e62643816ecfedf7ffffff", + "cborBytes": [ + 159, 191, 27, 4, 2, 98, 113, 175, 165, 44, 173, 71, 214, 149, 220, 41, 193, 164, 40, 27, 22, 97, 88, 76, 233, 160, + 163, 244, 27, 181, 236, 73, 153, 187, 70, 132, 62, 27, 27, 254, 75, 78, 147, 253, 245, 230, 27, 53, 241, 19, 0, 7, + 239, 215, 201, 27, 198, 100, 18, 66, 84, 61, 127, 227, 74, 45, 122, 246, 181, 53, 24, 15, 114, 102, 230, 27, 202, + 107, 162, 211, 208, 37, 253, 71, 74, 69, 51, 96, 23, 21, 75, 24, 167, 118, 92, 27, 252, 237, 134, 234, 234, 146, + 217, 10, 65, 225, 255, 66, 219, 53, 159, 216, 102, 159, 27, 234, 202, 15, 43, 214, 171, 55, 107, 159, 27, 225, + 136, 45, 172, 40, 30, 221, 15, 27, 73, 30, 96, 168, 37, 171, 72, 166, 73, 102, 190, 23, 163, 247, 190, 246, 141, + 205, 255, 255, 216, 102, 159, 27, 56, 21, 201, 175, 208, 187, 203, 240, 159, 67, 185, 130, 231, 70, 68, 68, 251, + 82, 243, 231, 27, 167, 138, 117, 127, 29, 230, 119, 241, 27, 240, 189, 49, 83, 129, 146, 66, 155, 27, 204, 210, + 136, 27, 253, 177, 99, 93, 255, 255, 216, 102, 159, 27, 170, 212, 2, 135, 93, 198, 54, 31, 159, 76, 54, 145, 78, + 162, 154, 197, 158, 115, 73, 152, 57, 145, 27, 207, 13, 63, 101, 17, 210, 199, 172, 255, 255, 191, 72, 19, 68, + 240, 37, 17, 214, 10, 235, 27, 239, 242, 222, 38, 84, 33, 132, 18, 76, 203, 193, 107, 238, 19, 130, 255, 229, 137, + 52, 59, 210, 67, 169, 30, 170, 71, 242, 37, 105, 195, 196, 105, 195, 27, 178, 227, 108, 109, 220, 175, 167, 133, + 255, 255, 216, 102, 159, 27, 117, 37, 11, 0, 19, 81, 32, 113, 159, 73, 181, 230, 38, 67, 129, 110, 207, 237, 247, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2639, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e0224e98c3a9b8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fde9378242a75c481b0b6c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5d7ecf06cf317954efb11" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5190471871521139034" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3b721017" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8845050627848923912" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "467188614497050114" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "165453744046809597" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2946553967786106804" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5082517573640781517" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9869762692922129398" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8244224102915612672" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10162676845732265069" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce83b6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13561409103091342304" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7318553263391060881" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14666123142064455929" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0411eb2d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "852954265400480898" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31132adbf332" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1842208855756179744" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11431887119786604947" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7186510349631016672" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1a6e923d869bdd142" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9154188302371810468" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4145485912887428162" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10358526545858802224" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17979536638265325887" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12393117411991561409" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1620716164862771530" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "795175203281390685" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6791586823103991622" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5231981772885809876" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a52419b3b1dff702" + } + } + ] + } + ] + }, + "cborHex": "9f47e0224e98c3a9b8d9050d9fbf4bfde9378242a75c481b0b6c4be5d7ecf06cf317954efb11ffd8669f1b480842aab6aca95a9f443b721017ffff1b7abfeeaed547eb08ffbf1b067bc991d2341e021b024bcf4db8ab21fd1b28e44338e1689fb41b4688bace0d89fecd1b88f870e08106bbf61b72695e244effa0001b8d0914bf3cf57c6d43ce83b61bbc33cdba53821be01b6590b96aee3333911bcb88894b12e340f9440411eb2dff9fbf1b0bd64d629ed994824631132adbf3321b1990d731a16d09201b9ea638c4473e79931b63bb9d16546ccee049a1a6e923d869bdd1421b7f0a35c291e86ca41b3987b9795b0a84421b8fc0e102fa5e32301bf984255015ecf93f1babfd329fe97724c14122ff1b167df0c3d861014affbf1b0b0907a265c94c5d1b5e40903b74564f461b489bbbb3c42d5ad448a52419b3b1dff702ffff", + "cborBytes": [ + 159, 71, 224, 34, 78, 152, 195, 169, 184, 217, 5, 13, 159, 191, 75, 253, 233, 55, 130, 66, 167, 92, 72, 27, 11, + 108, 75, 229, 215, 236, 240, 108, 243, 23, 149, 78, 251, 17, 255, 216, 102, 159, 27, 72, 8, 66, 170, 182, 172, + 169, 90, 159, 68, 59, 114, 16, 23, 255, 255, 27, 122, 191, 238, 174, 213, 71, 235, 8, 255, 191, 27, 6, 123, 201, + 145, 210, 52, 30, 2, 27, 2, 75, 207, 77, 184, 171, 33, 253, 27, 40, 228, 67, 56, 225, 104, 159, 180, 27, 70, 136, + 186, 206, 13, 137, 254, 205, 27, 136, 248, 112, 224, 129, 6, 187, 246, 27, 114, 105, 94, 36, 78, 255, 160, 0, 27, + 141, 9, 20, 191, 60, 245, 124, 109, 67, 206, 131, 182, 27, 188, 51, 205, 186, 83, 130, 27, 224, 27, 101, 144, 185, + 106, 238, 51, 51, 145, 27, 203, 136, 137, 75, 18, 227, 64, 249, 68, 4, 17, 235, 45, 255, 159, 191, 27, 11, 214, + 77, 98, 158, 217, 148, 130, 70, 49, 19, 42, 219, 243, 50, 27, 25, 144, 215, 49, 161, 109, 9, 32, 27, 158, 166, 56, + 196, 71, 62, 121, 147, 27, 99, 187, 157, 22, 84, 108, 206, 224, 73, 161, 166, 233, 35, 216, 105, 189, 209, 66, 27, + 127, 10, 53, 194, 145, 232, 108, 164, 27, 57, 135, 185, 121, 91, 10, 132, 66, 27, 143, 192, 225, 2, 250, 94, 50, + 48, 27, 249, 132, 37, 80, 21, 236, 249, 63, 27, 171, 253, 50, 159, 233, 119, 36, 193, 65, 34, 255, 27, 22, 125, + 240, 195, 216, 97, 1, 74, 255, 191, 27, 11, 9, 7, 162, 101, 201, 76, 93, 27, 94, 64, 144, 59, 116, 86, 79, 70, 27, + 72, 155, 187, 179, 196, 45, 90, 212, 72, 165, 36, 25, 179, 177, 223, 247, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2640, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + }, + "cborHex": "9f1bffffffffffffffefff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2641, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "183462520477445730" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12032757799754453999" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14504465528291497688" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce336351" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7881231833772402688" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2931277563930103872" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f0a2629a5e079a9a688" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "efc9f760" + }, + { + "_tag": "ByteArray", + "bytearray": "bcdadacd" + }, + { + "_tag": "ByteArray", + "bytearray": "8cc9fd" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3473093204587363847" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12175877095990621107" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e512db9de462f0db" + }, + { + "_tag": "ByteArray", + "bytearray": "c1" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b028bca30baa7ee629fd8669f1ba6fcf17772acd3ef9f1bc94a368cceb696d844ce3363511b6d5fc298a48128001b28adfd69f02050404a8f0a2629a5e079a9a688ffff44efc9f76044bcdadacd438cc9fdffff9f9f1b3032e7de4b40be07ffd8669f1ba8f967b54f55f3b39f48e512db9de462f0db41c1ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 2, 139, 202, 48, 186, 167, 238, 98, 159, 216, 102, 159, 27, 166, 252, 241, 119, 114, 172, + 211, 239, 159, 27, 201, 74, 54, 140, 206, 182, 150, 216, 68, 206, 51, 99, 81, 27, 109, 95, 194, 152, 164, 129, 40, + 0, 27, 40, 173, 253, 105, 240, 32, 80, 64, 74, 143, 10, 38, 41, 165, 224, 121, 169, 166, 136, 255, 255, 68, 239, + 201, 247, 96, 68, 188, 218, 218, 205, 67, 140, 201, 253, 255, 255, 159, 159, 27, 48, 50, 231, 222, 75, 64, 190, 7, + 255, 216, 102, 159, 27, 168, 249, 103, 181, 79, 85, 243, 179, 159, 72, 229, 18, 219, 157, 228, 98, 240, 219, 65, + 193, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2642, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8d12e9b9c11239ef91" + }, + { + "_tag": "ByteArray", + "bytearray": "f7a91c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "27aaf52c481ea547391a" + }, + { + "_tag": "ByteArray", + "bytearray": "3286ba" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "705248918398477618" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "134429751557600361" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bf0287c7c265" + }, + { + "_tag": "ByteArray", + "bytearray": "35450a4b0d" + }, + { + "_tag": "ByteArray", + "bytearray": "614fbb80a5247792cb1c41" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7282505389479141324" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18353390665921780749" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3797986846226032256" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12118334189713620221" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cc90" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2451256696420244388" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13461319253687981228" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8182a761bf32914d4e84e7b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14068867080902757011" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "853939a230" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d8c975b7ef5" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12421242977722132978" + } + } + ] + } + ] + }, + "cborHex": "9f9f498d12e9b9c11239ef9143f7a91c9f4a27aaf52c481ea547391a433286baff1b09c98c279b5ea532d8669f1b01dd972594d5b4699f46bf0287c7c2654535450a4b0d4b614fbb80a5247792cb1c411b6510a8113ec59fcc1bfeb45791fa3cdc0dffffffbf1b34b528e9fee8a6801ba82cf8bd6759fcfdff42cc90d8669f1b22049cfa636d1ba49fbf417e1bbad0368a4432d4ac4c8182a761bf32914d4e84e7b21bc33ea811ed654a9345853939a230461d8c975b7ef5ff1bac611ead7bf169f2ffffff", + "cborBytes": [ + 159, 159, 73, 141, 18, 233, 185, 193, 18, 57, 239, 145, 67, 247, 169, 28, 159, 74, 39, 170, 245, 44, 72, 30, 165, + 71, 57, 26, 67, 50, 134, 186, 255, 27, 9, 201, 140, 39, 155, 94, 165, 50, 216, 102, 159, 27, 1, 221, 151, 37, 148, + 213, 180, 105, 159, 70, 191, 2, 135, 199, 194, 101, 69, 53, 69, 10, 75, 13, 75, 97, 79, 187, 128, 165, 36, 119, + 146, 203, 28, 65, 27, 101, 16, 168, 17, 62, 197, 159, 204, 27, 254, 180, 87, 145, 250, 60, 220, 13, 255, 255, 255, + 191, 27, 52, 181, 40, 233, 254, 232, 166, 128, 27, 168, 44, 248, 189, 103, 89, 252, 253, 255, 66, 204, 144, 216, + 102, 159, 27, 34, 4, 156, 250, 99, 109, 27, 164, 159, 191, 65, 126, 27, 186, 208, 54, 138, 68, 50, 212, 172, 76, + 129, 130, 167, 97, 191, 50, 145, 77, 78, 132, 231, 178, 27, 195, 62, 168, 17, 237, 101, 74, 147, 69, 133, 57, 57, + 162, 48, 70, 29, 140, 151, 91, 126, 245, 255, 27, 172, 97, 30, 173, 123, 241, 105, 242, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2643, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13032116440025153860" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15545488931743844092" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13385244241686714927" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "25e286e622f938" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1803278429584257626" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a602829" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12412645041943307112" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5266660672100960475" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13356399651854810509" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6018262465757062925" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2197045244501880552" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16815189733167118124" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3734938604557465609" + } + }, + { + "_tag": "ByteArray", + "bytearray": "66" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6103886039987888489" + } + }, + { + "_tag": "ByteArray", + "bytearray": "431a72" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3369048102372102818" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8409901766575187517" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fbf1bb4db60dae73a41440c1bd7bcabd1e45bc6fc1bb9c1f0b841945a2fff4725e286e622f9389fbf1b1906882d727e725a445a6028291bac4292e6900b63681b4916effa311908db1bb95b76b7d6f4fd8d1b538529d39484270dff9f1b1e7d790269feeee8ffd8669f1be95b8df8bc38b72c9f1b33d52adf4e8a780941661b54b55c037af1a16943431a721b2ec143662d17d2a2ffffd8669f1b74b5f91960a4e63d80ffffff", + "cborBytes": [ + 159, 191, 27, 180, 219, 96, 218, 231, 58, 65, 68, 12, 27, 215, 188, 171, 209, 228, 91, 198, 252, 27, 185, 193, + 240, 184, 65, 148, 90, 47, 255, 71, 37, 226, 134, 230, 34, 249, 56, 159, 191, 27, 25, 6, 136, 45, 114, 126, 114, + 90, 68, 90, 96, 40, 41, 27, 172, 66, 146, 230, 144, 11, 99, 104, 27, 73, 22, 239, 250, 49, 25, 8, 219, 27, 185, + 91, 118, 183, 214, 244, 253, 141, 27, 83, 133, 41, 211, 148, 132, 39, 13, 255, 159, 27, 30, 125, 121, 2, 105, 254, + 238, 232, 255, 216, 102, 159, 27, 233, 91, 141, 248, 188, 56, 183, 44, 159, 27, 51, 213, 42, 223, 78, 138, 120, 9, + 65, 102, 27, 84, 181, 92, 3, 122, 241, 161, 105, 67, 67, 26, 114, 27, 46, 193, 67, 102, 45, 23, 210, 162, 255, + 255, 216, 102, 159, 27, 116, 181, 249, 25, 96, 164, 230, 61, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2644, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b19e975" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7931b93216" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79467eeee11938f487" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8806457632857288362" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7db6610d4ddb5e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8778536616600842917" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8299a7d56c089bc5300515ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e5a3439" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "919b64ff2c9ef4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9789240393664856164" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1022251214014955898" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "231e3831" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "304384074788179594" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2935b009f07e9968a127" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7736241108498979750" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f4043412a57b71758" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbab4fe45b99f6e78570fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7219" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "471371491464413074" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b90526a20e659fcb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9af08bdb735ec88fcd90aa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dedbe89784281240" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1524e6edf4ca8bac41" + } + } + ] + } + ] + }, + "cborHex": "9f9fbf446b19e975457931b932164979467eeee11938f4871b7a36d28ef7fc6eaa477db6610d4ddb5e1b79d3a08ac840b2a54c8299a7d56c089bc5300515ea445e5a343947919b64ff2c9ef41b87da5e45bd4c8064ffff1b0e2fc4102292c17abf44231e38311b043963b40d090e8a4a2935b009f07e9968a1271b6b5ca64cc0db1ba6496f4043412a57b717584bcbab4fe45b99f6e78570fa4272191b068aa5dfc1fb7f9248b90526a20e659fcb4b9af08bdb735ec88fcd90aa48dedbe89784281240491524e6edf4ca8bac41ffff", + "cborBytes": [ + 159, 159, 191, 68, 107, 25, 233, 117, 69, 121, 49, 185, 50, 22, 73, 121, 70, 126, 238, 225, 25, 56, 244, 135, 27, + 122, 54, 210, 142, 247, 252, 110, 170, 71, 125, 182, 97, 13, 77, 219, 94, 27, 121, 211, 160, 138, 200, 64, 178, + 165, 76, 130, 153, 167, 213, 108, 8, 155, 197, 48, 5, 21, 234, 68, 94, 90, 52, 57, 71, 145, 155, 100, 255, 44, + 158, 244, 27, 135, 218, 94, 69, 189, 76, 128, 100, 255, 255, 27, 14, 47, 196, 16, 34, 146, 193, 122, 191, 68, 35, + 30, 56, 49, 27, 4, 57, 99, 180, 13, 9, 14, 138, 74, 41, 53, 176, 9, 240, 126, 153, 104, 161, 39, 27, 107, 92, 166, + 76, 192, 219, 27, 166, 73, 111, 64, 67, 65, 42, 87, 183, 23, 88, 75, 203, 171, 79, 228, 91, 153, 246, 231, 133, + 112, 250, 66, 114, 25, 27, 6, 138, 165, 223, 193, 251, 127, 146, 72, 185, 5, 38, 162, 14, 101, 159, 203, 75, 154, + 240, 139, 219, 115, 94, 200, 143, 205, 144, 170, 72, 222, 219, 232, 151, 132, 40, 18, 64, 73, 21, 36, 230, 237, + 244, 202, 139, 172, 65, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2645, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7045153510250768278" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2535624246644134601" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "26ac4d7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15293275012990310662" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b15" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8669f1b61c569ca6e97e7969f1b233058d1691752c99f4426ac4d7c1bd43ca098d9a51906422b15ffffffa0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 97, 197, 105, 202, 110, 151, 231, 150, 159, 27, 35, 48, 88, 209, 105, 23, 82, 201, 159, + 68, 38, 172, 77, 124, 27, 212, 60, 160, 152, 217, 165, 25, 6, 66, 43, 21, 255, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2646, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4d18e3abb60507" + }, + { + "_tag": "ByteArray", + "bytearray": "4ffe407829858180bbd8744b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7b52f7e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12669fd7" + } + } + ] + } + ] + }, + "cborHex": "9f474d18e3abb605074c4ffe407829858180bbd8744bbf44e7b52f7e4412669fd7ffff", + "cborBytes": [ + 159, 71, 77, 24, 227, 171, 182, 5, 7, 76, 79, 254, 64, 120, 41, 133, 129, 128, 187, 216, 116, 75, 191, 68, 231, + 181, 47, 126, 68, 18, 102, 159, 215, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2647, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9465308314982184924" + } + } + ] + }, + "cborHex": "9f1b835b87c35c1077dcff", + "cborBytes": [159, 27, 131, 91, 135, 195, 92, 16, 119, 220, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2648, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "325443417cc8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13417316719733041408" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3682491777090763670" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82cf36" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18015337563511288381" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ad2389e0b0c83" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3300f81bc7413949fb7e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5bf5e856" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1054a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4806441649106518407" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1924894604428384263" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10676428290596187100" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8177524871778808844" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1853588451438622916" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6410023165147681896" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2654739491330502952" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7870a61469" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5507382670499364966" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b149f06f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9488725598702113173" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3267038601900878458" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f46325443417cc81bba33e277f698e900bf414c415f415b1b331ad6c2b5cabb964382cf361bfa0356108dd7723d42a1b0471ad2389e0b0c834bc3300f81bc7413949fb7e1445bf5e85643f1054a1b42b3e936d8a30187ffa0d8669f1b1ab69971b70518079fd8669f1b942a4af6d2eaabdc9f1b717c678b644c340cffffbf1b19b944e037c3f8c41b58f4fa1b60a714681b24d787807ff4b128457870a614691b4c6e275c0541c06644b149f06f1b83aeb9a899cb91951b2d56da4c85ca6a7affffffff", + "cborBytes": [ + 159, 70, 50, 84, 67, 65, 124, 200, 27, 186, 51, 226, 119, 246, 152, 233, 0, 191, 65, 76, 65, 95, 65, 91, 27, 51, + 26, 214, 194, 181, 202, 187, 150, 67, 130, 207, 54, 27, 250, 3, 86, 16, 141, 215, 114, 61, 66, 161, 176, 71, 26, + 210, 56, 158, 11, 12, 131, 75, 195, 48, 15, 129, 188, 116, 19, 148, 159, 183, 225, 68, 91, 245, 232, 86, 67, 241, + 5, 74, 27, 66, 179, 233, 54, 216, 163, 1, 135, 255, 160, 216, 102, 159, 27, 26, 182, 153, 113, 183, 5, 24, 7, 159, + 216, 102, 159, 27, 148, 42, 74, 246, 210, 234, 171, 220, 159, 27, 113, 124, 103, 139, 100, 76, 52, 12, 255, 255, + 191, 27, 25, 185, 68, 224, 55, 195, 248, 196, 27, 88, 244, 250, 27, 96, 167, 20, 104, 27, 36, 215, 135, 128, 127, + 244, 177, 40, 69, 120, 112, 166, 20, 105, 27, 76, 110, 39, 92, 5, 65, 192, 102, 68, 177, 73, 240, 111, 27, 131, + 174, 185, 168, 153, 203, 145, 149, 27, 45, 86, 218, 76, 133, 202, 106, 122, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2649, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fa0a080ff", + "cborBytes": [159, 160, 160, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2650, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2551705122666790480" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9797733500122118606" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b2cfa05af778c4" + }, + { + "_tag": "ByteArray", + "bytearray": "eb0c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "348070539541337873" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7319662267696526679" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2079422928676821379" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7716164389966730959" + } + }, + { + "_tag": "ByteArray", + "bytearray": "38db9c05b642" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8276603758812021549" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c30f99d2a1df1b3a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9960890657309489273" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2985484723336490567" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "559668579457739924" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14315792985440476982" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8848351180480046499" + } + }, + { + "_tag": "ByteArray", + "bytearray": "14cc9754" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd87f9fd8669f1b23697a4a20193e509f1b87f88ab52eb939ce47b2cfa05af778c442eb0c1b04d4984fc223d7111b6594aa0d1de1b557ffff80ff1b1cdb9822e9959983d8669f1bfffffffffffffffb9fd87e9f1b6b1552a1747c56cf4638db9c05b6421b72dc67446ea7432d48c30f99d2a1df1b3affd8669f1bfffffffffffffff79f1b8a3c31471b707879ffff9f1b296e9289c0d3ae47ff1b07c4579b9686ac94ffffd8669f1bfffffffffffffff89f9f1bc6abe9df37355f361b7acba884a06be5a34414cc9754ff80ffffff", + "cborBytes": [ + 159, 216, 127, 159, 216, 102, 159, 27, 35, 105, 122, 74, 32, 25, 62, 80, 159, 27, 135, 248, 138, 181, 46, 185, 57, + 206, 71, 178, 207, 160, 90, 247, 120, 196, 66, 235, 12, 27, 4, 212, 152, 79, 194, 35, 215, 17, 27, 101, 148, 170, + 13, 29, 225, 181, 87, 255, 255, 128, 255, 27, 28, 219, 152, 34, 233, 149, 153, 131, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 251, 159, 216, 126, 159, 27, 107, 21, 82, 161, 116, 124, 86, 207, 70, 56, 219, 156, 5, + 182, 66, 27, 114, 220, 103, 68, 110, 167, 67, 45, 72, 195, 15, 153, 210, 161, 223, 27, 58, 255, 216, 102, 159, 27, + 255, 255, 255, 255, 255, 255, 255, 247, 159, 27, 138, 60, 49, 71, 27, 112, 120, 121, 255, 255, 159, 27, 41, 110, + 146, 137, 192, 211, 174, 71, 255, 27, 7, 196, 87, 155, 150, 134, 172, 148, 255, 255, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 248, 159, 159, 27, 198, 171, 233, 223, 55, 53, 95, 54, 27, 122, 203, 168, 132, 160, 107, + 229, 163, 68, 20, 204, 151, 84, 255, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2651, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17654952137914646634" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14538139169697601174" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd0236aef38baaf403f1c6fa" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4688" + }, + { + "_tag": "ByteArray", + "bytearray": "14796dff3506d46bcf2315" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6928472936751686977" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9533888482402740894" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11155250229016620499" + } + }, + { + "_tag": "ByteArray", + "bytearray": "54d9f3" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15784286319630674645" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c04bcd5864bf2aa1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12752858653286317244" + } + } + ] + }, + "cborHex": "9f80d8669f1bf502fd6df2ed006a9fd8669f1bc9c1d88c690496969f4cfd0236aef38baaf403f1c6faffff4246884b14796dff3506d46bcf23159f1b6026e16d66fde5411b844f2d0fe1cdaa9e1b9acf68faf1216dd34354d9f3ffffff1bdb0d0cc76aa4ead548c04bcd5864bf2aa11bb0fb4160abe5bcbcff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 245, 2, 253, 109, 242, 237, 0, 106, 159, 216, 102, 159, 27, 201, 193, 216, 140, 105, + 4, 150, 150, 159, 76, 253, 2, 54, 174, 243, 139, 170, 244, 3, 241, 198, 250, 255, 255, 66, 70, 136, 75, 20, 121, + 109, 255, 53, 6, 212, 107, 207, 35, 21, 159, 27, 96, 38, 225, 109, 102, 253, 229, 65, 27, 132, 79, 45, 15, 225, + 205, 170, 158, 27, 154, 207, 104, 250, 241, 33, 109, 211, 67, 84, 217, 243, 255, 255, 255, 27, 219, 13, 12, 199, + 106, 164, 234, 213, 72, 192, 75, 205, 88, 100, 191, 42, 161, 27, 176, 251, 65, 96, 171, 229, 188, 188, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2652, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10755393969034492756" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10984168238232211539" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07fcaf733eec0e83" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16788427073966876378" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "df413f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6888512843462040256" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2189248611721142775" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11456382302968533721" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc9d5527562a" + }, + { + "_tag": "ByteArray", + "bytearray": "cd979a57ad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9981280949045395953" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7ecbddd46e6f0c919f82bff8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3101120836264917086" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc7e88bd293a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18209316126947520681" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "24402622" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8669f1b9542d5d48fadfb549fa0d8669f1b986f9ad0e8f590539f4807fcaf733eec0e831be8fc79799158a6daffff9f43df413f1b5f98e9ef29455ac0ff1b1e61c60362a7e1f7d8669f1b9efd3f018b82d2d99f46fc9d5527562a45cd979a57ad1b8a84a223db3981f14c7ecbddd46e6f0c919f82bff81b2b0964f85b21f85effffffff46fc7e88bd293ad8669f1bfcb47c8a557fb0a99f4424402622ffffa0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 149, 66, 213, 212, 143, 173, 251, 84, 159, 160, 216, 102, 159, 27, 152, 111, 154, 208, + 232, 245, 144, 83, 159, 72, 7, 252, 175, 115, 62, 236, 14, 131, 27, 232, 252, 121, 121, 145, 88, 166, 218, 255, + 255, 159, 67, 223, 65, 63, 27, 95, 152, 233, 239, 41, 69, 90, 192, 255, 27, 30, 97, 198, 3, 98, 167, 225, 247, + 216, 102, 159, 27, 158, 253, 63, 1, 139, 130, 210, 217, 159, 70, 252, 157, 85, 39, 86, 42, 69, 205, 151, 154, 87, + 173, 27, 138, 132, 162, 35, 219, 57, 129, 241, 76, 126, 203, 221, 212, 110, 111, 12, 145, 159, 130, 191, 248, 27, + 43, 9, 100, 248, 91, 33, 248, 94, 255, 255, 255, 255, 70, 252, 126, 136, 189, 41, 58, 216, 102, 159, 27, 252, 180, + 124, 138, 85, 127, 176, 169, 159, 68, 36, 64, 38, 34, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2653, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9079914003884719648" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9455192769621151895" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0941" + }, + { + "_tag": "ByteArray", + "bytearray": "dde76aed45db1eedc0f4fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5965010895471501689" + } + }, + { + "_tag": "ByteArray", + "bytearray": "99e2f4c95327" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d6bbd3c2e67db01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16259901243813809552" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77513f990265ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6cb48a76b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a14de5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5dca931d7ae548eb2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfe1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd8e3308179c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7344142828301471995" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f04a04bdab07c6a4" + }, + { + "_tag": "ByteArray", + "bytearray": "ddb7f5" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3272338377392118406" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16824908227309514339" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17790870954265379724" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18214338944988793721" + } + } + ] + }, + "cborHex": "9f1b7e0255add8a4be209fd8669f1b833797ba6c1c50979f4209414bdde76aed45db1eedc0f4fa1b52c7f9ce31e9e1794699e2f4c95327ffffbf484d6bbd3c2e67db011be1a6c60858744d904777513f990265ed45c6cb48a76b43a14de549a5dca931d7ae548eb242dfe146dd8e3308179cff9f1b65eba2fdcca450fb48f04a04bdab07c6a443ddb7f5ff1b2d69ae6aa955da86d8669f1be97e14e3fb54ae639f1bf6e5dedf71cd838cffffff1bfcc654c44a9ecb79ff", + "cborBytes": [ + 159, 27, 126, 2, 85, 173, 216, 164, 190, 32, 159, 216, 102, 159, 27, 131, 55, 151, 186, 108, 28, 80, 151, 159, 66, + 9, 65, 75, 221, 231, 106, 237, 69, 219, 30, 237, 192, 244, 250, 27, 82, 199, 249, 206, 49, 233, 225, 121, 70, 153, + 226, 244, 201, 83, 39, 255, 255, 191, 72, 77, 107, 189, 60, 46, 103, 219, 1, 27, 225, 166, 198, 8, 88, 116, 77, + 144, 71, 119, 81, 63, 153, 2, 101, 237, 69, 198, 203, 72, 167, 107, 67, 161, 77, 229, 73, 165, 220, 169, 49, 215, + 174, 84, 142, 178, 66, 223, 225, 70, 221, 142, 51, 8, 23, 156, 255, 159, 27, 101, 235, 162, 253, 204, 164, 80, + 251, 72, 240, 74, 4, 189, 171, 7, 198, 164, 67, 221, 183, 245, 255, 27, 45, 105, 174, 106, 169, 85, 218, 134, 216, + 102, 159, 27, 233, 126, 20, 227, 251, 84, 174, 99, 159, 27, 246, 229, 222, 223, 113, 205, 131, 140, 255, 255, 255, + 27, 252, 198, 84, 196, 74, 158, 203, 121, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2654, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10573320855499993072" + } + }, + { + "_tag": "ByteArray", + "bytearray": "987ffacb" + } + ] + }, + "cborHex": "9f1b92bbfb4c584e6ff044987ffacbff", + "cborBytes": [159, 27, 146, 187, 251, 76, 88, 78, 111, 240, 68, 152, 127, 250, 203, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2655, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04054239bd0004779803" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c000ad72cac8ea101794b60" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c0e6ca7695e432caebf8" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f139f9f4a04054239bd00047798031bffffffffffffffff4c4c000ad72cac8ea101794b60044ac0e6ca7695e432caebf8ff80ffff", + "cborBytes": [ + 159, 19, 159, 159, 74, 4, 5, 66, 57, 189, 0, 4, 119, 152, 3, 27, 255, 255, 255, 255, 255, 255, 255, 255, 76, 76, + 0, 10, 215, 44, 172, 142, 161, 1, 121, 75, 96, 4, 74, 192, 230, 202, 118, 149, 228, 50, 202, 235, 248, 255, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2656, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9260295333866951947" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18231315509055349662" + } + }, + { + "_tag": "ByteArray", + "bytearray": "425943f1088b9e66c118" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1b80832d8b0258d50b9f1bfd02a4dca150639e4a425943f1088b9e66c118ffffff", + "cborBytes": [ + 159, 159, 27, 128, 131, 45, 139, 2, 88, 213, 11, 159, 27, 253, 2, 164, 220, 161, 80, 99, 158, 74, 66, 89, 67, 241, + 8, 139, 158, 102, 193, 24, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2657, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a44e88a394" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f45a44e88a39480ff", + "cborBytes": [159, 69, 164, 78, 136, 163, 148, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2658, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3658175964194324578" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2418348369872844669" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1962881731059320922" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4101125012600095908" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2dd8dc055ea9b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4663283078948614671" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4303764567670757135" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13118950494940759757" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15119385099816024396" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14357443727882740585" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12114555087390029014" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "057de9" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14120107907938674891" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "65c49209" + }, + { + "_tag": "ByteArray", + "bytearray": "2e0311" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "563150078870396322" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13679488949020611003" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c5bdf15b38f14804" + } + ] + } + ] + }, + "cborHex": "9f1b32c473a857acc062bf1b218fb307896a777d1b1b3d8e88dbe5085a1b38ea1f78637f84a447c2dd8dc055ea9b1b40b74f40cfd2720f1b3bba0b126ced970f1bb60fdff7cce106cd1bd1d2d8a470de394c1bc73fe300631c63691ba81f8baa93c8b4d6ff43057de9a0d8669f1bc3f4b354aade68cb9f9f4465c49209432e03111b07d0b603564d9da21bbdd74eb8db4151bbff48c5bdf15b38f14804ffffff", + "cborBytes": [ + 159, 27, 50, 196, 115, 168, 87, 172, 192, 98, 191, 27, 33, 143, 179, 7, 137, 106, 119, 125, 27, 27, 61, 142, 136, + 219, 229, 8, 90, 27, 56, 234, 31, 120, 99, 127, 132, 164, 71, 194, 221, 141, 192, 85, 234, 155, 27, 64, 183, 79, + 64, 207, 210, 114, 15, 27, 59, 186, 11, 18, 108, 237, 151, 15, 27, 182, 15, 223, 247, 204, 225, 6, 205, 27, 209, + 210, 216, 164, 112, 222, 57, 76, 27, 199, 63, 227, 0, 99, 28, 99, 105, 27, 168, 31, 139, 170, 147, 200, 180, 214, + 255, 67, 5, 125, 233, 160, 216, 102, 159, 27, 195, 244, 179, 84, 170, 222, 104, 203, 159, 159, 68, 101, 196, 146, + 9, 67, 46, 3, 17, 27, 7, 208, 182, 3, 86, 77, 157, 162, 27, 189, 215, 78, 184, 219, 65, 81, 187, 255, 72, 197, + 189, 241, 91, 56, 241, 72, 4, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2659, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13912170438894840311" + } + } + ] + }, + "cborHex": "9f1bc111f54de90469f7ff", + "cborBytes": [159, 27, 193, 17, 245, 77, 233, 4, 105, 247, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2660, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7351887920064217547" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "68" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4923345590769820919" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2cb76af832b9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17808428856438783759" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16395834213038088442" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "51f2b221ab3f5b" + }, + { + "_tag": "ByteArray", + "bytearray": "3fae58de721d7abb4173387a" + }, + { + "_tag": "ByteArray", + "bytearray": "4b516c2020cd" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11865214324824285673" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7285743135053996404" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3148580133987301296" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13449243133225698138" + } + }, + { + "_tag": "ByteArray", + "bytearray": "894b721d73a0aa12debca0" + }, + { + "_tag": "ByteArray", + "bytearray": "04de" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18005652780389646851" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2aafeb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acc9b33964" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1019387209584055281" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12438534805573386789" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b6607271c7fe9c1cb9f41681b44533cbad45224f7462cb76af832b9d8669f1bf7243fb11bd97f0f9f1be389b4591054e0fa41dfffff9f4751f2b221ab3f5b4c3fae58de721d7abb4173387a464b516c2020cdffffffd8669f1ba4a9b590570721e99fd8669f1b651c28c7a1a261749f1b2bb200f3312a37b01bbaa54f5f5dc7835a4b894b721d73a0aa12debca04204deffff1bf9e0edce44264203bf432aafeb45acc9b33964ffffffd8669f1b0e25974423d593f180ffd8669f1bac9e8d80e488c22580ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 102, 7, 39, 28, 127, 233, 193, 203, 159, 65, 104, 27, 68, 83, 60, 186, 212, 82, 36, 247, + 70, 44, 183, 106, 248, 50, 185, 216, 102, 159, 27, 247, 36, 63, 177, 27, 217, 127, 15, 159, 27, 227, 137, 180, 89, + 16, 84, 224, 250, 65, 223, 255, 255, 159, 71, 81, 242, 178, 33, 171, 63, 91, 76, 63, 174, 88, 222, 114, 29, 122, + 187, 65, 115, 56, 122, 70, 75, 81, 108, 32, 32, 205, 255, 255, 255, 216, 102, 159, 27, 164, 169, 181, 144, 87, 7, + 33, 233, 159, 216, 102, 159, 27, 101, 28, 40, 199, 161, 162, 97, 116, 159, 27, 43, 178, 0, 243, 49, 42, 55, 176, + 27, 186, 165, 79, 95, 93, 199, 131, 90, 75, 137, 75, 114, 29, 115, 160, 170, 18, 222, 188, 160, 66, 4, 222, 255, + 255, 27, 249, 224, 237, 206, 68, 38, 66, 3, 191, 67, 42, 175, 235, 69, 172, 201, 179, 57, 100, 255, 255, 255, 216, + 102, 159, 27, 14, 37, 151, 68, 35, 213, 147, 241, 128, 255, 216, 102, 159, 27, 172, 158, 141, 128, 228, 136, 194, + 37, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2661, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c6f7" + } + ] + }, + "cborHex": "9f42c6f7ff", + "cborBytes": [159, 66, 198, 247, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2662, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c4b9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5454150983444491242" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "981ef4c5948ce3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6215592872377820628" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf4bea06c9b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10644602212872863740" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "444528c577" + }, + { + "_tag": "ByteArray", + "bytearray": "9f97a962" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12740448945125150150" + } + } + ] + }, + "cborHex": "9fbf437c4b9c1b4bb1096c0f8e6bea47981ef4c5948ce31b564238c92a87a5d446bf4bea06c9b91b93b93950a99fbffcff45444528c577449f97a9621bb0cf2ad0552f4dc6ff", + "cborBytes": [ + 159, 191, 67, 124, 75, 156, 27, 75, 177, 9, 108, 15, 142, 107, 234, 71, 152, 30, 244, 197, 148, 140, 227, 27, 86, + 66, 56, 201, 42, 135, 165, 212, 70, 191, 75, 234, 6, 201, 185, 27, 147, 185, 57, 80, 169, 159, 191, 252, 255, 69, + 68, 69, 40, 197, 119, 68, 159, 151, 169, 98, 27, 176, 207, 42, 208, 85, 47, 77, 198, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2663, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "332478865135946144" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e1bff" + } + ] + }, + "cborHex": "9f1b049d33c42bc0c9a0434e1bffff", + "cborBytes": [159, 27, 4, 157, 51, 196, 43, 192, 201, 160, 67, 78, 27, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2664, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0fde800a" + } + ] + }, + "cborHex": "9f440fde800aff", + "cborBytes": [159, 68, 15, 222, 128, 10, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2665, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d80f48b6" + } + ] + }, + "cborHex": "9f44d80f48b6ff", + "cborBytes": [159, 68, 216, 15, 72, 182, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2666, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5495867818719252241" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2966840274986607253" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16948226810657663055" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5889018847609420754" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5563171065154725710" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17949324147742631963" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15906746535945441373" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb370682b8fd2dbccc66" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b4c453ea9ab430f119f1b292c5582d7e62295bf1beb34327d1e00684f1b51b9ff70c756fbd2ffffff1b4d345a9bdb47674ea0d8669f1bf918cf36788a681b80ffbf1bdcc01db26734105d4afb370682b8fd2dbccc66ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 76, 69, 62, 169, 171, 67, 15, 17, 159, 27, 41, 44, 85, 130, 215, 230, 34, 149, 191, 27, + 235, 52, 50, 125, 30, 0, 104, 79, 27, 81, 185, 255, 112, 199, 86, 251, 210, 255, 255, 255, 27, 77, 52, 90, 155, + 219, 71, 103, 78, 160, 216, 102, 159, 27, 249, 24, 207, 54, 120, 138, 104, 27, 128, 255, 191, 27, 220, 192, 29, + 178, 103, 52, 16, 93, 74, 251, 55, 6, 130, 184, 253, 45, 188, 204, 102, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2667, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3070819191215957108" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8279658175131294690" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7220cf45f0ffd119" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1621916769389433424" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d580" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6917d20d499d92e3a41ed" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13462132203650624959" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2554831334884136701" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a8b2bcf0ea41fb38" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4236400466721642971" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13919354073685864351" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3c" + }, + { + "_tag": "ByteArray", + "bytearray": "066f2214eb43b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8890424372159408566" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14160564675127485587" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e21cb335" + }, + { + "_tag": "ByteArray", + "bytearray": "5d1d860220de34" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14630981155839429679" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b4304e04037a4128" + } + ] + }, + "cborHex": "9fd8669f1b2a9dbdc8d5e124749fbf41211b72e7413e265c1be2487220cf45f0ffd1191b168234b55eb4d25042d5804bd6917d20d499d92e3a41ed41d81bbad319e9edf12dbfffd8669f1b2374959020ce56fd9f48a8b2bcf0ea41fb381b3acab7c7713e19dbffffd8669f1bc12b7ac838eeaf9f9f413c47066f2214eb43b61b7b6121dced0969b6ffffd8669f1bc4846e8bcfeb249380ff9f44e21cb335475d1d860220de34ffffffd8669f1bcb0bafd7cd3e4c2f9f80ffff48b4304e04037a4128ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 42, 157, 189, 200, 213, 225, 36, 116, 159, 191, 65, 33, 27, 114, 231, 65, 62, 38, 92, 27, + 226, 72, 114, 32, 207, 69, 240, 255, 209, 25, 27, 22, 130, 52, 181, 94, 180, 210, 80, 66, 213, 128, 75, 214, 145, + 125, 32, 212, 153, 217, 46, 58, 65, 237, 65, 216, 27, 186, 211, 25, 233, 237, 241, 45, 191, 255, 216, 102, 159, + 27, 35, 116, 149, 144, 32, 206, 86, 253, 159, 72, 168, 178, 188, 240, 234, 65, 251, 56, 27, 58, 202, 183, 199, + 113, 62, 25, 219, 255, 255, 216, 102, 159, 27, 193, 43, 122, 200, 56, 238, 175, 159, 159, 65, 60, 71, 6, 111, 34, + 20, 235, 67, 182, 27, 123, 97, 33, 220, 237, 9, 105, 182, 255, 255, 216, 102, 159, 27, 196, 132, 110, 139, 207, + 235, 36, 147, 128, 255, 159, 68, 226, 28, 179, 53, 71, 93, 29, 134, 2, 32, 222, 52, 255, 255, 255, 216, 102, 159, + 27, 203, 11, 175, 215, 205, 62, 76, 47, 159, 128, 255, 255, 72, 180, 48, 78, 4, 3, 122, 65, 40, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2668, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8684096270015932006" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8cc7484878b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "ByteArray", + "bytearray": "578c07" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fdba3f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4569683909511189991" + } + } + ] + } + ] + }, + "cborHex": "9fbf0e1b78841b8c19982666417346d8cc7484878bff1bfffffffffffffffb43578c07a09fd905098043fdba3f1b3f6ac74df23b95e7ffff", + "cborBytes": [ + 159, 191, 14, 27, 120, 132, 27, 140, 25, 152, 38, 102, 65, 115, 70, 216, 204, 116, 132, 135, 139, 255, 27, 255, + 255, 255, 255, 255, 255, 255, 251, 67, 87, 140, 7, 160, 159, 217, 5, 9, 128, 67, 253, 186, 63, 27, 63, 106, 199, + 77, 242, 59, 149, 231, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2669, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10526092324581085659" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16562078114260819791" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16716462402255923209" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16122116012884723855" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5985178719161966983" + } + } + ] + }, + "cborHex": "9fbf1b92143133179f11db1be5d8524b96c99f4f1be7fccdfcbba328091bdfbd431857a1888fffa01b530fa05590e06187ff", + "cborBytes": [ + 159, 191, 27, 146, 20, 49, 51, 23, 159, 17, 219, 27, 229, 216, 82, 75, 150, 201, 159, 79, 27, 231, 252, 205, 252, + 187, 163, 40, 9, 27, 223, 189, 67, 24, 87, 161, 136, 143, 255, 160, 27, 83, 15, 160, 85, 144, 224, 97, 135, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2670, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7488675604129696137" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14006605304596472971" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13562263745614659975" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4097117482970960271" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ba290eb057a8aa5283408d8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17368881547269919027" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5db74a" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2247312883128237472" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1dac20bf9bde1884ab" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18082185131920680764" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf0a1b67ed1ec90648c9890d1bc26175507993248b121bbc36d7054b8541871b38dbe2a4af86d18f4c8ba290eb057a8aa5283408d81bf10aa9be32dc51331bfffffffffffffff01bfffffffffffffffb435db74aff1b1f300f2912047da0491dac20bf9bde1884abd8669f1bfaf0d392eefb673c80ffff", + "cborBytes": [ + 159, 191, 10, 27, 103, 237, 30, 201, 6, 72, 201, 137, 13, 27, 194, 97, 117, 80, 121, 147, 36, 139, 18, 27, 188, + 54, 215, 5, 75, 133, 65, 135, 27, 56, 219, 226, 164, 175, 134, 209, 143, 76, 139, 162, 144, 235, 5, 122, 138, 165, + 40, 52, 8, 216, 27, 241, 10, 169, 190, 50, 220, 81, 51, 27, 255, 255, 255, 255, 255, 255, 255, 240, 27, 255, 255, + 255, 255, 255, 255, 255, 251, 67, 93, 183, 74, 255, 27, 31, 48, 15, 41, 18, 4, 125, 160, 73, 29, 172, 32, 191, + 155, 222, 24, 132, 171, 216, 102, 159, 27, 250, 240, 211, 146, 238, 251, 103, 60, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2671, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffffb80ffff", + "cborBytes": [159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2672, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "53e8c648" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2192898315541553153" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7283901991008151697" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4316e6e276346b7fd7299a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11741161221217563417" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4364463350183521619" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5605587701550884824" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8248264529290534509" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6973595751698694744" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "639714393663976652" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12295316263914383836" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11657475639865756440" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10798871992020625680" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0604ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + } + ] + } + ] + }, + "cborHex": "9f4453e8c648d9050480d8669f1b1e6ebd66466820019fd8669f1b65159e44e0cd28919f4b4316e6e276346b7fd7299a1ba2f0fbec6143b3191b3c91b04b06e66d53ffffd8669f1b4dcb0c509c3d27d89f1b7277b8e361d11e6dffff1b60c73063732c8258d8669f1b08e0b8da080bb4cc9f1baaa1bcffa7b329dc1ba1c7ac549bf7cb18ffff1b95dd4cdca34de910ffffbf430604ee01ffff", + "cborBytes": [ + 159, 68, 83, 232, 198, 72, 217, 5, 4, 128, 216, 102, 159, 27, 30, 110, 189, 102, 70, 104, 32, 1, 159, 216, 102, + 159, 27, 101, 21, 158, 68, 224, 205, 40, 145, 159, 75, 67, 22, 230, 226, 118, 52, 107, 127, 215, 41, 154, 27, 162, + 240, 251, 236, 97, 67, 179, 25, 27, 60, 145, 176, 75, 6, 230, 109, 83, 255, 255, 216, 102, 159, 27, 77, 203, 12, + 80, 156, 61, 39, 216, 159, 27, 114, 119, 184, 227, 97, 209, 30, 109, 255, 255, 27, 96, 199, 48, 99, 115, 44, 130, + 88, 216, 102, 159, 27, 8, 224, 184, 218, 8, 11, 180, 204, 159, 27, 170, 161, 188, 255, 167, 179, 41, 220, 27, 161, + 199, 172, 84, 155, 247, 203, 24, 255, 255, 27, 149, 221, 76, 220, 163, 77, 233, 16, 255, 255, 191, 67, 6, 4, 238, + 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2673, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4733439573427619090" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15121582436690851686" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15693901510356118422" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7516af615f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18430225582927138292" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d3f5335e3eaa489292" + }, + { + "_tag": "ByteArray", + "bytearray": "8f6287cecbf6" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19b6644e793e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13681954224028444912" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3005b5076a92" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14722749732541604889" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bad06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4413770458420691377" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab8c503204dd324f22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48caf3dc" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11777205012601203072" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8df166718e2765" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2409294164654692106" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12496404072977028445" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2572664137938164992" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2758906636829391979" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14743532861072306500" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ae8cdef53dee9a93" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16220148982191200019" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b2c605cac7c4" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15592124191933661851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6827010407679532091" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b41b08e3693ee05129f1bd1daa71bccbe7766ffff9f1bd9cbf04618be2b96457516af615f1bffc5508528b04df449d3f5335e3eaa489292468f6287cecbf6ffffbf4619b6644e793e1bbde010e06c5ee8f0463005b5076a921bcc51b6e0951ea419434bad061b3d40dcd8c64741b149ab8c503204dd324f224448caf3dcffa0d8669f1ba371098f870b69809f478df166718e2765d8669f1b216f88471baa170a9f1bad6c254bab8a555d1b23b3f0672430dd001b26499af808aefc6b1bcc9b8d05c6837144ffff48ae8cdef53dee9a93d8669f1be1198b8faf6b97139f46b2c605cac7c4ffffbf1bd8625a5789fb029b1b5ebe69cb73a21c3bffffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 65, 176, 142, 54, 147, 238, 5, 18, 159, 27, 209, 218, 167, 27, 204, 190, 119, 102, + 255, 255, 159, 27, 217, 203, 240, 70, 24, 190, 43, 150, 69, 117, 22, 175, 97, 95, 27, 255, 197, 80, 133, 40, 176, + 77, 244, 73, 211, 245, 51, 94, 62, 170, 72, 146, 146, 70, 143, 98, 135, 206, 203, 246, 255, 255, 191, 70, 25, 182, + 100, 78, 121, 62, 27, 189, 224, 16, 224, 108, 94, 232, 240, 70, 48, 5, 181, 7, 106, 146, 27, 204, 81, 182, 224, + 149, 30, 164, 25, 67, 75, 173, 6, 27, 61, 64, 220, 216, 198, 71, 65, 177, 73, 171, 140, 80, 50, 4, 221, 50, 79, + 34, 68, 72, 202, 243, 220, 255, 160, 216, 102, 159, 27, 163, 113, 9, 143, 135, 11, 105, 128, 159, 71, 141, 241, + 102, 113, 142, 39, 101, 216, 102, 159, 27, 33, 111, 136, 71, 27, 170, 23, 10, 159, 27, 173, 108, 37, 75, 171, 138, + 85, 93, 27, 35, 179, 240, 103, 36, 48, 221, 0, 27, 38, 73, 154, 248, 8, 174, 252, 107, 27, 204, 155, 141, 5, 198, + 131, 113, 68, 255, 255, 72, 174, 140, 222, 245, 61, 238, 154, 147, 216, 102, 159, 27, 225, 25, 139, 143, 175, 107, + 151, 19, 159, 70, 178, 198, 5, 202, 199, 196, 255, 255, 191, 27, 216, 98, 90, 87, 137, 251, 2, 155, 27, 94, 190, + 105, 203, 115, 162, 28, 59, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2674, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "640754946105807760" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a01e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3002680651722721933" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15c53320a3f7ac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8525151577946112492" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13313953452458891091" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9124219074175766876" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9031897543128253285" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14291007176742119164" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9241810287831245618" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15619279743903241680" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15290988418502487627" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b08e46b3a86b6139042a01e1b29abaa24d3df0a8d4715c53320a3f7ac1b764f6c3123d6c1ec1bb8c4aa1fe9e5d7531b7e9fbce7e117115c1b7d57bef661e203651bc653db4f6c45a6fc1b8041817dd7bb63321bd8c2d42c2ece95d01bd43480f39573ee4bffff", + "cborBytes": [ + 159, 191, 27, 8, 228, 107, 58, 134, 182, 19, 144, 66, 160, 30, 27, 41, 171, 170, 36, 211, 223, 10, 141, 71, 21, + 197, 51, 32, 163, 247, 172, 27, 118, 79, 108, 49, 35, 214, 193, 236, 27, 184, 196, 170, 31, 233, 229, 215, 83, 27, + 126, 159, 188, 231, 225, 23, 17, 92, 27, 125, 87, 190, 246, 97, 226, 3, 101, 27, 198, 83, 219, 79, 108, 69, 166, + 252, 27, 128, 65, 129, 125, 215, 187, 99, 50, 27, 216, 194, 212, 44, 46, 206, 149, 208, 27, 212, 52, 128, 243, + 149, 115, 238, 75, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2675, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9dedb18f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "794aec27d6eb" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4aaa760d6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c578d42" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "895027917daf111762cd3f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c75" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9820e78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11409089239542169985" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1dcf58d2d0eccef5ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16053153142282179447" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1dd31f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f077" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9fc6c8c73ffba3132180" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9993981866304873072" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1177875134384778262" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4475041438113766543" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "659e7cfc70dafd5319" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9561029622390924738" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73f28601947a6995dbfea0d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9ff8a2722c38124f07c6b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ddfd02727c59ec8247ed7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7257" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a64e31a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "558448407204776415" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d756b9deb885" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "948a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9189663590393358634" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "40502cf4f4871a6b" + }, + { + "_tag": "ByteArray", + "bytearray": "d2ca0e0b" + }, + { + "_tag": "ByteArray", + "bytearray": "1b8aa16825b60b54301046" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17871825245702693170" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13887464039405189433" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7955578180487c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "318474679800890220" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8941846003622136314" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd905039f9f449dedb18fff46794aec27d6ebbf454aaa760d6b448c578d424b895027917daf111762cd3f421c7544b9820e781b9e553a3725a48181ffbf491dcf58d2d0eccef5ed1bdec841bacaacd377431dd31f42f077ff9f4a9fc6c8c73ffba31321801b8ab1c18e98cc22701b1058a731aec52c161b3e1a8a7a69ec9c8fffff9fbf49659e7cfc70dafd53191b84af99c8f99925c24c73f28601947a6995dbfea0d94bc9ff8a2722c38124f07c6b4b8ddfd02727c59ec8247ed7427257449a64e31a1b07c001de18d2c9df46d756b9deb8854173ffbf42948a1b7f883e58b6bca92aff9f4840502cf4f4871a6b44d2ca0e0b4b1b8aa16825b60b543010461bf8057a5f39f7a132ff9f1bc0ba2ef703c1f939477955578180487cff9f1b046b7308af7d036c418d1b7c17d1907a24c9faffffff", + "cborBytes": [ + 159, 217, 5, 3, 159, 159, 68, 157, 237, 177, 143, 255, 70, 121, 74, 236, 39, 214, 235, 191, 69, 74, 170, 118, 13, + 107, 68, 140, 87, 141, 66, 75, 137, 80, 39, 145, 125, 175, 17, 23, 98, 205, 63, 66, 28, 117, 68, 185, 130, 14, + 120, 27, 158, 85, 58, 55, 37, 164, 129, 129, 255, 191, 73, 29, 207, 88, 210, 208, 236, 206, 245, 237, 27, 222, + 200, 65, 186, 202, 172, 211, 119, 67, 29, 211, 31, 66, 240, 119, 255, 159, 74, 159, 198, 200, 199, 63, 251, 163, + 19, 33, 128, 27, 138, 177, 193, 142, 152, 204, 34, 112, 27, 16, 88, 167, 49, 174, 197, 44, 22, 27, 62, 26, 138, + 122, 105, 236, 156, 143, 255, 255, 159, 191, 73, 101, 158, 124, 252, 112, 218, 253, 83, 25, 27, 132, 175, 153, + 200, 249, 153, 37, 194, 76, 115, 242, 134, 1, 148, 122, 105, 149, 219, 254, 160, 217, 75, 201, 255, 138, 39, 34, + 195, 129, 36, 240, 124, 107, 75, 141, 223, 208, 39, 39, 197, 158, 200, 36, 126, 215, 66, 114, 87, 68, 154, 100, + 227, 26, 27, 7, 192, 1, 222, 24, 210, 201, 223, 70, 215, 86, 185, 222, 184, 133, 65, 115, 255, 191, 66, 148, 138, + 27, 127, 136, 62, 88, 182, 188, 169, 42, 255, 159, 72, 64, 80, 44, 244, 244, 135, 26, 107, 68, 210, 202, 14, 11, + 75, 27, 138, 161, 104, 37, 182, 11, 84, 48, 16, 70, 27, 248, 5, 122, 95, 57, 247, 161, 50, 255, 159, 27, 192, 186, + 46, 247, 3, 193, 249, 57, 71, 121, 85, 87, 129, 128, 72, 124, 255, 159, 27, 4, 107, 115, 8, 175, 125, 3, 108, 65, + 141, 27, 124, 23, 209, 144, 122, 36, 201, 250, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2676, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c76d9e0655" + } + ] + }, + "cborHex": "9f45c76d9e0655ff", + "cborBytes": [159, 69, 199, 109, 158, 6, 85, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2677, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5708223053957208549" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4485105406151655539" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6985884351431122844" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7154396013964710625" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c55e136987fe327840a5527" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51380d4b280e7ad7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2fb3a7b7b51fa31cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5e455de06da36" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2595670151381429257" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14376192269038799665" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4250073854914878024" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "436443246127347548" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9801842067222025038" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de934221249fd7a2394ecb4e" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d421d9a83388a7dc99732f7a" + }, + { + "_tag": "ByteArray", + "bytearray": "5a61" + }, + { + "_tag": "ByteArray", + "bytearray": "095ee173342c3fd03ce7" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9719030396947296927" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8121616974498291058" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "139779699776693193" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0d80ca6b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8745918903623691031" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7513514931134958214" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3466983173543435321" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2147907686876225153" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4592829644864774584" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6312335855942673614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17491773509608008479" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6970154423612634179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4233586847575206293" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "444a168ff7c3be8ee8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6664759545747264194" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a7b688f747fc3c4295307" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e31a1d34d4df28adedde849f" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18110557926565667443" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4394131473299400232" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5fa2411738" + }, + { + "_tag": "ByteArray", + "bytearray": "14" + }, + { + "_tag": "ByteArray", + "bytearray": "b56f46e947542c11d742" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "368083106098390488" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9943057797998384883" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c2c7cbcb13a915e6c77b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17343231687762968125" + } + }, + { + "_tag": "ByteArray", + "bytearray": "63f6cbd2e7fb37cb9a1c3f" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b4f37ae9fc5d099e51b3e3e4b9a91da8073d8669f1b60f2d8ce09031f9c9fa0d8669f1b63498544e2d652e180ffbf4c0c55e136987fe327840a55274851380d4b280e7ad749d2fb3a7b7b51fa31cf47f5e455de06da36ffd8669f1b2405ac400f2cac099f1bc7827eb34ac64b311b3afb4ba737605a481b060e8ed1ea09f75c1b8807236d813fd34e4cde934221249fd7a2394ecb4effffffff9f9f4cd421d9a83388a7dc99732f7a425a614a095ee173342c3fd03ce7ffd8669f1b86e0eea70344729f9f1b70b5c79baec0dd72ffffd8669f1b01f098e5780023c99f440d80ca6b1b795fbee7acdd2b171b68455e0584e48a861b301d32d3d5501c39ffff1b1dcee6a93e969e81ff9f1b3fbd023a680c61b8bf1b5799ec044c6ca4ce1bf2bf4354e3c5eb1f1b60baf684d10c74431b3ac0b8ceaf7c699549444a168ff7c3be8ee81b5c7dfb7ed5a8d2c24b8a7b688f747fc3c42953074ce31a1d34d4df28adedde849fff1bfb55a07af914e2739f1b3cfb174b3a5fe628455fa241173841144ab56f46e947542c11d742ffd8669f1b051bb1a282d125d89f1b89fcd662fedf16f34ac2c7cbcb13a915e6c77b1bf0af8954e668fe3d4b63f6cbd2e7fb37cb9a1c3fffffffff", + "cborBytes": [ + 159, 27, 79, 55, 174, 159, 197, 208, 153, 229, 27, 62, 62, 75, 154, 145, 218, 128, 115, 216, 102, 159, 27, 96, + 242, 216, 206, 9, 3, 31, 156, 159, 160, 216, 102, 159, 27, 99, 73, 133, 68, 226, 214, 82, 225, 128, 255, 191, 76, + 12, 85, 225, 54, 152, 127, 227, 39, 132, 10, 85, 39, 72, 81, 56, 13, 75, 40, 14, 122, 215, 73, 210, 251, 58, 123, + 123, 81, 250, 49, 207, 71, 245, 228, 85, 222, 6, 218, 54, 255, 216, 102, 159, 27, 36, 5, 172, 64, 15, 44, 172, 9, + 159, 27, 199, 130, 126, 179, 74, 198, 75, 49, 27, 58, 251, 75, 167, 55, 96, 90, 72, 27, 6, 14, 142, 209, 234, 9, + 247, 92, 27, 136, 7, 35, 109, 129, 63, 211, 78, 76, 222, 147, 66, 33, 36, 159, 215, 162, 57, 78, 203, 78, 255, + 255, 255, 255, 159, 159, 76, 212, 33, 217, 168, 51, 136, 167, 220, 153, 115, 47, 122, 66, 90, 97, 74, 9, 94, 225, + 115, 52, 44, 63, 208, 60, 231, 255, 216, 102, 159, 27, 134, 224, 238, 167, 3, 68, 114, 159, 159, 27, 112, 181, + 199, 155, 174, 192, 221, 114, 255, 255, 216, 102, 159, 27, 1, 240, 152, 229, 120, 0, 35, 201, 159, 68, 13, 128, + 202, 107, 27, 121, 95, 190, 231, 172, 221, 43, 23, 27, 104, 69, 94, 5, 132, 228, 138, 134, 27, 48, 29, 50, 211, + 213, 80, 28, 57, 255, 255, 27, 29, 206, 230, 169, 62, 150, 158, 129, 255, 159, 27, 63, 189, 2, 58, 104, 12, 97, + 184, 191, 27, 87, 153, 236, 4, 76, 108, 164, 206, 27, 242, 191, 67, 84, 227, 197, 235, 31, 27, 96, 186, 246, 132, + 209, 12, 116, 67, 27, 58, 192, 184, 206, 175, 124, 105, 149, 73, 68, 74, 22, 143, 247, 195, 190, 142, 232, 27, 92, + 125, 251, 126, 213, 168, 210, 194, 75, 138, 123, 104, 143, 116, 127, 195, 196, 41, 83, 7, 76, 227, 26, 29, 52, + 212, 223, 40, 173, 237, 222, 132, 159, 255, 27, 251, 85, 160, 122, 249, 20, 226, 115, 159, 27, 60, 251, 23, 75, + 58, 95, 230, 40, 69, 95, 162, 65, 23, 56, 65, 20, 74, 181, 111, 70, 233, 71, 84, 44, 17, 215, 66, 255, 216, 102, + 159, 27, 5, 27, 177, 162, 130, 209, 37, 216, 159, 27, 137, 252, 214, 98, 254, 223, 22, 243, 74, 194, 199, 203, + 203, 19, 169, 21, 230, 199, 123, 27, 240, 175, 137, 84, 230, 104, 254, 61, 75, 99, 246, 203, 210, 231, 251, 55, + 203, 154, 28, 63, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2678, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cf00be00ff0002bc04" + }, + { + "_tag": "ByteArray", + "bytearray": "3a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5349507649003081611" + } + } + ] + }, + "cborHex": "9f49cf00be00ff0002bc04413a1b4a3d44dd26104f8bff", + "cborBytes": [159, 73, 207, 0, 190, 0, 255, 0, 2, 188, 4, 65, 58, 27, 74, 61, 68, 221, 38, 16, 79, 139, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2679, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "860253144544799237" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15335376696375483350" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2582232086077600505" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7eb29d0c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16591056722076276015" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16328900795177079339" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd87d9f1b0bf03bad59816a051bd4d233dae4439bd61b23d5ee66aa4572f99f447eb29d0c1be63f462f7fb6952f1be29be8c24d1f922bffffff", + "cborBytes": [ + 159, 216, 125, 159, 27, 11, 240, 59, 173, 89, 129, 106, 5, 27, 212, 210, 51, 218, 228, 67, 155, 214, 27, 35, 213, + 238, 102, 170, 69, 114, 249, 159, 68, 126, 178, 157, 12, 27, 230, 63, 70, 47, 127, 182, 149, 47, 27, 226, 155, + 232, 194, 77, 31, 146, 43, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2680, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11898344620155831462" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2c61" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4981313130755078069" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c81b2f308c66a98" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17927395121961398133" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17189953494212718836" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9159827311125427900" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba51f6964539184a69f422c619f1b45212de679a537b5485c81b2f308c66a981bf8cae6e148946f75ffd8669f1bee8efba07008b0f480ff1b7f1e3e689b8d76bcffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 165, 31, 105, 100, 83, 145, 132, 166, 159, 66, 44, 97, 159, 27, 69, 33, 45, 230, 121, 165, + 55, 181, 72, 92, 129, 178, 243, 8, 198, 106, 152, 27, 248, 202, 230, 225, 72, 148, 111, 117, 255, 216, 102, 159, + 27, 238, 142, 251, 160, 112, 8, 176, 244, 128, 255, 27, 127, 30, 62, 104, 155, 141, 118, 188, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2681, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3315610720910010547" + } + }, + { + "_tag": "ByteArray", + "bytearray": "96eb50" + }, + { + "_tag": "ByteArray", + "bytearray": "39698a13a5038f15effd4dd5" + }, + { + "_tag": "ByteArray", + "bytearray": "6a1dae21bf466e" + }, + { + "_tag": "ByteArray", + "bytearray": "30" + } + ] + }, + "cborHex": "9f1b2e036a62415168b34396eb504c39698a13a5038f15effd4dd5476a1dae21bf466e4130ff", + "cborBytes": [ + 159, 27, 46, 3, 106, 98, 65, 81, 104, 179, 67, 150, 235, 80, 76, 57, 105, 138, 19, 165, 3, 143, 21, 239, 253, 77, + 213, 71, 106, 29, 174, 33, 191, 70, 110, 65, 48, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2682, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6663931564258854573" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c680c58c51befd58bba750" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5581737572416527018" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12335182330140385020" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4722211328078582030" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea8dc1df19e3b5a6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "180aa5a75605141f078b856e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35e192230989" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4671132478256345330" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10857160839396073707" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "85ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4779514270856651828" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14287942605410404035" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14169850972432813461" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3967766795119613247" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2585de71db9fe0e5b5ce1285" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14341269519925770567" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9443721273627703334" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "81ff" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1987f24233" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5695500401885665532" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e870f737b222584bc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5770734331749253608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90544b4d3c63" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b4edfab23" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0e178" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3ffa3d5cdc81b26e6055984" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb0ba4834d62e49fe0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12127918288524254699" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c83a31dd" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed07348cdbfc69bee5a4e88c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efe93a64863d354dc834" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1a054605dc3a80889" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2830167224470156044" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0f" + } + ] + }, + "cborHex": "9fd8669f1b5c7b0a735f2986ad9f9f4bc680c58c51befd58bba7501b4d7650bfb1569aaa1bab2f5ef983b15efcffbf1b4188aa2efc73110e48ea8dc1df19e3b5a641074c180aa5a75605141f078b856e4635e1922309891b40d3323d814270f2ffd8669f1b96ac62427d7c20eb9f4285ab1b42543ee809522434ffff1bc648f8194ea806c39f1bc4a56c626414cd951b371056e0c6b1d53f4c2585de71db9fe0e5b5ce12851bc7066ca5234ff947ffffffd8669f1b830ed676a060f8269fa04281ffbf451987f242331b4f0a7b70807d58fc491e870f737b222584bc1b5015c44cd110c1e84690544b4d3c63458b4edfab2343a0e1784ca3ffa3d5cdc81b26e605598449bb0ba4834d62e49fe01ba84f056d4c739debff9f44c83a31ddffbf4ced07348cdbfc69bee5a4e88c4aefe93a64863d354dc83449f1a054605dc3a808891b2746c618857f330cffffff410fff", + "cborBytes": [ + 159, 216, 102, 159, 27, 92, 123, 10, 115, 95, 41, 134, 173, 159, 159, 75, 198, 128, 197, 140, 81, 190, 253, 88, + 187, 167, 80, 27, 77, 118, 80, 191, 177, 86, 154, 170, 27, 171, 47, 94, 249, 131, 177, 94, 252, 255, 191, 27, 65, + 136, 170, 46, 252, 115, 17, 14, 72, 234, 141, 193, 223, 25, 227, 181, 166, 65, 7, 76, 24, 10, 165, 167, 86, 5, 20, + 31, 7, 139, 133, 110, 70, 53, 225, 146, 35, 9, 137, 27, 64, 211, 50, 61, 129, 66, 112, 242, 255, 216, 102, 159, + 27, 150, 172, 98, 66, 125, 124, 32, 235, 159, 66, 133, 171, 27, 66, 84, 62, 232, 9, 82, 36, 52, 255, 255, 27, 198, + 72, 248, 25, 78, 168, 6, 195, 159, 27, 196, 165, 108, 98, 100, 20, 205, 149, 27, 55, 16, 86, 224, 198, 177, 213, + 63, 76, 37, 133, 222, 113, 219, 159, 224, 229, 181, 206, 18, 133, 27, 199, 6, 108, 165, 35, 79, 249, 71, 255, 255, + 255, 216, 102, 159, 27, 131, 14, 214, 118, 160, 96, 248, 38, 159, 160, 66, 129, 255, 191, 69, 25, 135, 242, 66, + 51, 27, 79, 10, 123, 112, 128, 125, 88, 252, 73, 30, 135, 15, 115, 123, 34, 37, 132, 188, 27, 80, 21, 196, 76, + 209, 16, 193, 232, 70, 144, 84, 75, 77, 60, 99, 69, 139, 78, 223, 171, 35, 67, 160, 225, 120, 76, 163, 255, 163, + 213, 205, 200, 27, 38, 230, 5, 89, 132, 73, 187, 11, 164, 131, 77, 98, 228, 159, 224, 27, 168, 79, 5, 109, 76, + 115, 157, 235, 255, 159, 68, 200, 58, 49, 221, 255, 191, 76, 237, 7, 52, 140, 219, 252, 105, 190, 229, 164, 232, + 140, 74, 239, 233, 58, 100, 134, 61, 53, 77, 200, 52, 73, 241, 160, 84, 96, 93, 195, 168, 8, 137, 27, 39, 70, 198, + 24, 133, 127, 51, 12, 255, 255, 255, 65, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2683, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17812650270662329799" + } + } + ] + }, + "cborHex": "9f1bf7333f0bb31805c7ff", + "cborBytes": [159, 27, 247, 51, 63, 11, 179, 24, 5, 199, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2684, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "88dbff" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10172668335258246287" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f9f4388dbff9f1b8d2c93f42cee9c8fffa0a0ffff", + "cborBytes": [159, 159, 67, 136, 219, 255, 159, 27, 141, 44, 147, 244, 44, 238, 156, 143, 255, 160, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2685, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9b3250b1bf531fc79fc3" + } + ] + }, + "cborHex": "9f4a9b3250b1bf531fc79fc3ff", + "cborBytes": [159, 74, 155, 50, 80, 177, 191, 83, 31, 199, 159, 195, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2686, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "faecccfe0504faed5e9c80" + }, + { + "_tag": "ByteArray", + "bytearray": "9807c401" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5413538565018238761" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbfb" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6ecb108bdd00093a12ef09eb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2618861996455907156" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6915740841540595955" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9069206140091554808" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1769156508698512363" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1186060776047973124" + } + } + ] + }, + "cborHex": "9f4bfaecccfe0504faed5e9c80449807c401bf080f1b4b20c0a489ca3f2942fbfbffd8669f1bfffffffffffffffa9f809f4c6ecb108bdd00093a12ef09eb1b2458111c46864f54ffd8669f1b5ff9a5a77ab030f380ffbf1b7ddc4aef06f2dbf81b188d4e78a50b8bebffffff1b1075bbfde65d1304ff", + "cborBytes": [ + 159, 75, 250, 236, 204, 254, 5, 4, 250, 237, 94, 156, 128, 68, 152, 7, 196, 1, 191, 8, 15, 27, 75, 32, 192, 164, + 137, 202, 63, 41, 66, 251, 251, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 128, 159, 76, + 110, 203, 16, 139, 221, 0, 9, 58, 18, 239, 9, 235, 27, 36, 88, 17, 28, 70, 134, 79, 84, 255, 216, 102, 159, 27, + 95, 249, 165, 167, 122, 176, 48, 243, 128, 255, 191, 27, 125, 220, 74, 239, 6, 242, 219, 248, 27, 24, 141, 78, + 120, 165, 11, 139, 235, 255, 255, 255, 27, 16, 117, 187, 253, 230, 93, 19, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2687, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6721447498533687018" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a02c594f588bb4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9324236163301715708" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f7c5f48cbb7a56bfef7a1" + }, + { + "_tag": "ByteArray", + "bytearray": "e1bc256708" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10970048487398999034" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15246147832846448393" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5a97" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18034959550920946584" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9fd8669f1b5d4760e35e89ceea9f47a02c594f588bb41b816657637b732efc4b5f7c5f48cbb7a56bfef7a145e1bc256708ffff1b983d70fa3c3a83faff1bd39532ad29e77709425a971bfa490c28832e739880ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 93, 71, 96, 227, 94, 137, 206, 234, 159, 71, 160, 44, 89, 79, 88, 139, 180, 27, 129, + 102, 87, 99, 123, 115, 46, 252, 75, 95, 124, 95, 72, 203, 183, 165, 107, 254, 247, 161, 69, 225, 188, 37, 103, 8, + 255, 255, 27, 152, 61, 112, 250, 60, 58, 131, 250, 255, 27, 211, 149, 50, 173, 41, 231, 119, 9, 66, 90, 151, 27, + 250, 73, 12, 40, 131, 46, 115, 152, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2688, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13160867747397524874" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a46e88d51a18126196e232" + }, + { + "_tag": "ByteArray", + "bytearray": "fc43e741edfdfbcda4d05bc2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18164636204963576664" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3598655996160070845" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13710489630929941636" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5a7febaa2a4b0daf" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1982244774661916430" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b522f8bc60" + }, + { + "_tag": "ByteArray", + "bytearray": "f693297e" + }, + { + "_tag": "ByteArray", + "bytearray": "ea7428c88e14f0b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5968855919166040168" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13184236316624060699" + } + }, + { + "_tag": "ByteArray", + "bytearray": "221fe2ce4eab3f1aa43081" + }, + { + "_tag": "ByteArray", + "bytearray": "fefd9a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3577035208577401055" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4875596083238341519" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6566631568810426666" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15422343248896698567" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7371910000972840682" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10864008777551887165" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8888815507347626086" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9de01a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f72f7a883" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8997572591775600177" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f9f1bb6a4cb7cab865d8a9f4ba46e88d51a18126196e2324cfc43e741edfdfbcda4d05bc21bfc15c063570dbb581b31f0fe8fdff354bd1bbe4571ad94417484ff485a7febaa2a4b0dafd8669f1b1b82591ec399070e9f45b522f8bc6044f693297e48ea7428c88e14f0b61b52d5a2d589612868ffffff9f9f1bb6f7d113af2e811b4b221fe2ce4eab3f1aa4308143fefd9a1b31a42e91fc5240df1b43a998ce41b50b8fffffbf1b5b215c9ecdcfc12a1bd6072b794aa1a8c71b664e49167c22beea1b96c4b66c56b4bb3d1b7b5b6a9be5705866439de01a459f72f7a8831b7cddcc99dd934e31ffa0ff", + "cborBytes": [ + 159, 159, 27, 182, 164, 203, 124, 171, 134, 93, 138, 159, 75, 164, 110, 136, 213, 26, 24, 18, 97, 150, 226, 50, + 76, 252, 67, 231, 65, 237, 253, 251, 205, 164, 208, 91, 194, 27, 252, 21, 192, 99, 87, 13, 187, 88, 27, 49, 240, + 254, 143, 223, 243, 84, 189, 27, 190, 69, 113, 173, 148, 65, 116, 132, 255, 72, 90, 127, 235, 170, 42, 75, 13, + 175, 216, 102, 159, 27, 27, 130, 89, 30, 195, 153, 7, 14, 159, 69, 181, 34, 248, 188, 96, 68, 246, 147, 41, 126, + 72, 234, 116, 40, 200, 142, 20, 240, 182, 27, 82, 213, 162, 213, 137, 97, 40, 104, 255, 255, 255, 159, 159, 27, + 182, 247, 209, 19, 175, 46, 129, 27, 75, 34, 31, 226, 206, 78, 171, 63, 26, 164, 48, 129, 67, 254, 253, 154, 27, + 49, 164, 46, 145, 252, 82, 64, 223, 27, 67, 169, 152, 206, 65, 181, 11, 143, 255, 255, 191, 27, 91, 33, 92, 158, + 205, 207, 193, 42, 27, 214, 7, 43, 121, 74, 161, 168, 199, 27, 102, 78, 73, 22, 124, 34, 190, 234, 27, 150, 196, + 182, 108, 86, 180, 187, 61, 27, 123, 91, 106, 155, 229, 112, 88, 102, 67, 157, 224, 26, 69, 159, 114, 247, 168, + 131, 27, 124, 221, 204, 153, 221, 147, 78, 49, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2689, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4229982115224307130" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "366659014581056209" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10151270640352990636" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1923406436968726902" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ee31f66864eddd52a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "142965891aaa373426" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4dcf7a73ef6fabd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12702677015684762750" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2395957728866756210" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3052734670185013521" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4440881441478140463" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "318e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13904812461752970446" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3053680396632375506" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15384201054772014089" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac05613fdc" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17495209320291833722" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6091653640216131360" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7355633798780104594" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2dcc2a1a4f6b62b963" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5532133826087189071" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a6d94cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6253789734334787715" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99ac9b3b31fd95f9b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16471682176558238692" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d4ce7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e71e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6b827b2ab3d72" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d76cab2598aa2ea8" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f3384981eafb07bbad7989" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10536481910709457183" + } + }, + { + "_tag": "ByteArray", + "bytearray": "53d4" + } + ] + } + ] + }, + "cborHex": "9fbf1b3ab3ea52883345ba1b0516a26e5dcc72d11b8ce08edd191795ac1b1ab14ff6ba388176496ee31f66864eddd52a49142965891aaa37342648d4dcf7a73ef6fabd1bb048f971b068cc7effbf1b214026dc2df466721b2a5d7e0229e5a1111b3da12e2468ede22f42318e1bc0f7d1435b35ecce1b2a60da2442d8c0d21bd57fa959aee02c0945ac05613fdcff1bf2cb782ee719177ad8669f1b5489e6b5f7cc37209fd8669f1b661475f7da252f9280ffbf492dcc2a1a4f6b62b9631b4cc6166781d97a4f443a6d94cc1b56c9eca11f0270834999ac9b3b31fd95f9b51be4972bab3ae30be4439d4ce742e71e47a6b827b2ab3d7248d76cab2598aa2ea8ff4bf3384981eafb07bbad79891b92391a791e2a911f4253d4ffffff", + "cborBytes": [ + 159, 191, 27, 58, 179, 234, 82, 136, 51, 69, 186, 27, 5, 22, 162, 110, 93, 204, 114, 209, 27, 140, 224, 142, 221, + 25, 23, 149, 172, 27, 26, 177, 79, 246, 186, 56, 129, 118, 73, 110, 227, 31, 102, 134, 78, 221, 213, 42, 73, 20, + 41, 101, 137, 26, 170, 55, 52, 38, 72, 212, 220, 247, 167, 62, 246, 250, 189, 27, 176, 72, 249, 113, 176, 104, + 204, 126, 255, 191, 27, 33, 64, 38, 220, 45, 244, 102, 114, 27, 42, 93, 126, 2, 41, 229, 161, 17, 27, 61, 161, 46, + 36, 104, 237, 226, 47, 66, 49, 142, 27, 192, 247, 209, 67, 91, 53, 236, 206, 27, 42, 96, 218, 36, 66, 216, 192, + 210, 27, 213, 127, 169, 89, 174, 224, 44, 9, 69, 172, 5, 97, 63, 220, 255, 27, 242, 203, 120, 46, 231, 25, 23, + 122, 216, 102, 159, 27, 84, 137, 230, 181, 247, 204, 55, 32, 159, 216, 102, 159, 27, 102, 20, 117, 247, 218, 37, + 47, 146, 128, 255, 191, 73, 45, 204, 42, 26, 79, 107, 98, 185, 99, 27, 76, 198, 22, 103, 129, 217, 122, 79, 68, + 58, 109, 148, 204, 27, 86, 201, 236, 161, 31, 2, 112, 131, 73, 153, 172, 155, 59, 49, 253, 149, 249, 181, 27, 228, + 151, 43, 171, 58, 227, 11, 228, 67, 157, 76, 231, 66, 231, 30, 71, 166, 184, 39, 178, 171, 61, 114, 72, 215, 108, + 171, 37, 152, 170, 46, 168, 255, 75, 243, 56, 73, 129, 234, 251, 7, 187, 173, 121, 137, 27, 146, 57, 26, 121, 30, + 42, 145, 31, 66, 83, 212, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2690, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13f07ccba331166e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c814145225fd5cb63df9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d75f4b98158a3e94e71a359" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7590377499851492366" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "293e9452a7539d7dca6ea735" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5075314318712588456" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56371b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33e4387c79a14ebd402e7d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8a6e4df87e901fc521ed86e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3171260443901628009" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f34bf315cb0e3238" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7894923310922038251" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15003338284305653743" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "562bae5f458a651e23093340" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "836829440232324802" + } + } + ] + }, + "cborHex": "9fbf4813f07ccba331166e4ac814145225fd5cb63df94c1d75f4b98158a3e94e71a3591b6956701eddc40c0e4c293e9452a7539d7dca6ea7351b466f237b925148a84356371b4b33e4387c79a14ebd402e7d4ca8a6e4df87e901fc521ed86e1b2c02949259010e6948f34bf315cb0e32381b6d9066ec14757bebff9f1bd03690adb10e9fefff4c562bae5f458a651e23093340a01b0b9d03f132a2fec2ff", + "cborBytes": [ + 159, 191, 72, 19, 240, 124, 203, 163, 49, 22, 110, 74, 200, 20, 20, 82, 37, 253, 92, 182, 61, 249, 76, 29, 117, + 244, 185, 129, 88, 163, 233, 78, 113, 163, 89, 27, 105, 86, 112, 30, 221, 196, 12, 14, 76, 41, 62, 148, 82, 167, + 83, 157, 125, 202, 110, 167, 53, 27, 70, 111, 35, 123, 146, 81, 72, 168, 67, 86, 55, 27, 75, 51, 228, 56, 124, + 121, 161, 78, 189, 64, 46, 125, 76, 168, 166, 228, 223, 135, 233, 1, 252, 82, 30, 216, 110, 27, 44, 2, 148, 146, + 89, 1, 14, 105, 72, 243, 75, 243, 21, 203, 14, 50, 56, 27, 109, 144, 102, 236, 20, 117, 123, 235, 255, 159, 27, + 208, 54, 144, 173, 177, 14, 159, 239, 255, 76, 86, 43, 174, 95, 69, 138, 101, 30, 35, 9, 51, 64, 160, 27, 11, 157, + 3, 241, 50, 162, 254, 194, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2691, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3569412244971412389" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10447701603896816310" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "51e684539bf64a462b16" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3189198676735ba59f1b90fdb141238c72b69f4a51e684539bf64a462b16ff80ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 49, 137, 25, 134, 118, 115, 91, 165, 159, 27, 144, 253, 177, 65, 35, 140, 114, 182, 159, + 74, 81, 230, 132, 83, 155, 246, 74, 70, 43, 22, 255, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2692, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10423497640745666621" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fad1632e713972" + } + ] + }, + "cborHex": "9f121b90a7b3e0d1c4883d47fad1632e713972ff", + "cborBytes": [159, 18, 27, 144, 167, 179, 224, 209, 196, 136, 61, 71, 250, 209, 99, 46, 113, 57, 114, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2693, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3580841725544132896" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1b31b1b493c7f4712080ff", + "cborBytes": [159, 27, 49, 177, 180, 147, 199, 244, 113, 32, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2694, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13204261932321330712" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "21d4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16544712230658585719" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3c8b" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17501087208399071216" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "46bc837cb2eaa239" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4192461853837331174" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2282667314367514088" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4719267839354785188" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16408250515027650120" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7969629971489719421" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3020085642948609748" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15431828577042617496" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf30d341" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17819327369257195679" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83e701328fd307404d" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10301330324585173804" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fe07ee013aff02fe03cf" + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff09f1bb73ef644ad39d6189f4221d41be59aa01dbb773477423c8bffd8669f1bf2e05a175fc267f09f4846bc837cb2eaa239ffffbf1b3a2e9dd7ec598ae61b1fada9d40d4545e81b417e35189caacda41be3b5d0e8a5d7e6481b6e99d03bf1f3847d1b29e97fe4233586d41bd628de545958d49844cf30d3411bf74af7d4dcf8989f4983e701328fd307404dffffffd8669f1b8ef5ad59f6dbd32c80ff034afe07ee013aff02fe03cfff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 27, 183, 62, 246, 68, 173, 57, 214, 24, 159, + 66, 33, 212, 27, 229, 154, 160, 29, 187, 119, 52, 119, 66, 60, 139, 255, 216, 102, 159, 27, 242, 224, 90, 23, 95, + 194, 103, 240, 159, 72, 70, 188, 131, 124, 178, 234, 162, 57, 255, 255, 191, 27, 58, 46, 157, 215, 236, 89, 138, + 230, 27, 31, 173, 169, 212, 13, 69, 69, 232, 27, 65, 126, 53, 24, 156, 170, 205, 164, 27, 227, 181, 208, 232, 165, + 215, 230, 72, 27, 110, 153, 208, 59, 241, 243, 132, 125, 27, 41, 233, 127, 228, 35, 53, 134, 212, 27, 214, 40, + 222, 84, 89, 88, 212, 152, 68, 207, 48, 211, 65, 27, 247, 74, 247, 212, 220, 248, 152, 159, 73, 131, 231, 1, 50, + 143, 211, 7, 64, 77, 255, 255, 255, 216, 102, 159, 27, 142, 245, 173, 89, 246, 219, 211, 44, 128, 255, 3, 74, 254, + 7, 238, 1, 58, 255, 2, 254, 3, 207, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2695, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12461606818550230032" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3cd43520" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cfee5a3c" + }, + { + "_tag": "ByteArray", + "bytearray": "8dc9167c4b1f3e" + }, + { + "_tag": "ByteArray", + "bytearray": "695f52524e5588a9" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4105417552827511078" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8944628367020197513" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8366021968307245121" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18bf7be25388db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68683ee3d25196dcbb24" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "795642369fe027" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10839342992906793264" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0e64e249" + } + ] + }, + "cborHex": "9f9f1bacf085608645ac10443cd43520ff9f44cfee5a3c478dc9167c4b1f3e48695f52524e5588a9ff1b38f95f834aeff126bf1b7c21b41bf01f06891b741a14a7b41150414718bf7be25388db4226f24a68683ee3d25196dcbb2447795642369fe02741b81b966d1505d2d43130ff440e64e249ff", + "cborBytes": [ + 159, 159, 27, 172, 240, 133, 96, 134, 69, 172, 16, 68, 60, 212, 53, 32, 255, 159, 68, 207, 238, 90, 60, 71, 141, + 201, 22, 124, 75, 31, 62, 72, 105, 95, 82, 82, 78, 85, 136, 169, 255, 27, 56, 249, 95, 131, 74, 239, 241, 38, 191, + 27, 124, 33, 180, 27, 240, 31, 6, 137, 27, 116, 26, 20, 167, 180, 17, 80, 65, 71, 24, 191, 123, 226, 83, 136, 219, + 66, 38, 242, 74, 104, 104, 62, 227, 210, 81, 150, 220, 187, 36, 71, 121, 86, 66, 54, 159, 224, 39, 65, 184, 27, + 150, 109, 21, 5, 210, 212, 49, 48, 255, 68, 14, 100, 226, 73, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2696, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "306916490696060672" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "09" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "456570629694628447" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d8f680f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1462096225487838019" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19420983495537455" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39c04f87ce35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9801e907eed3d5877a6bce99" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b378506bba6ffd6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8223108056934297968" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f22688" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94463aaf05103f333828" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "546d7cfef18b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a390d1d922606a20217f40" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c00008f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d484ac213e6dc7f8676555" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad1eca100fcf1ff717a0b1" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14660326227437943110" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "666481364666713254" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1153386254490336503" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13455305952559099108" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a8197df6" + }, + { + "_tag": "ByteArray", + "bytearray": "8abb8e6a067e0b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3599209632575841255" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8650723564007555280" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0fbc91524acbb3f4d7bb0fe7" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b044262ec13a5ef009f41099f1b0656109195d3225f442d8f680fff1b144a68c543a45b43bf41151b0044ff481670b32f4639c04f87ce354c9801e907eed3d5877a6bce99ffbf483b378506bba6ffd61b721e5935bb38b170415c43f226884a94463aaf05103f33382846546d7cfef18b4ba390d1d922606a20217f4044c00008f74bd484ac213e6dc7f86765554bad1eca100fcf1ff717a0b1ffffff9f9f1bcb73f107b5c7f9461b093fd1451e6084a6ffd8669f1b1001a6b003b6fcf79f1bbabad9797e7bece444a8197df6478abb8e6a067e0b1b31f2f61765d8e3e71b780d8b3f7ac580d0ffff4c0fbc91524acbb3f4d7bb0fe7ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 4, 66, 98, 236, 19, 165, 239, 0, 159, 65, 9, 159, 27, 6, 86, 16, 145, 149, 211, 34, 95, + 68, 45, 143, 104, 15, 255, 27, 20, 74, 104, 197, 67, 164, 91, 67, 191, 65, 21, 27, 0, 68, 255, 72, 22, 112, 179, + 47, 70, 57, 192, 79, 135, 206, 53, 76, 152, 1, 233, 7, 238, 211, 213, 135, 122, 107, 206, 153, 255, 191, 72, 59, + 55, 133, 6, 187, 166, 255, 214, 27, 114, 30, 89, 53, 187, 56, 177, 112, 65, 92, 67, 242, 38, 136, 74, 148, 70, 58, + 175, 5, 16, 63, 51, 56, 40, 70, 84, 109, 124, 254, 241, 139, 75, 163, 144, 209, 217, 34, 96, 106, 32, 33, 127, 64, + 68, 192, 0, 8, 247, 75, 212, 132, 172, 33, 62, 109, 199, 248, 103, 101, 85, 75, 173, 30, 202, 16, 15, 207, 31, + 247, 23, 160, 177, 255, 255, 255, 159, 159, 27, 203, 115, 241, 7, 181, 199, 249, 70, 27, 9, 63, 209, 69, 30, 96, + 132, 166, 255, 216, 102, 159, 27, 16, 1, 166, 176, 3, 182, 252, 247, 159, 27, 186, 186, 217, 121, 126, 123, 236, + 228, 68, 168, 25, 125, 246, 71, 138, 187, 142, 106, 6, 126, 11, 27, 49, 242, 246, 23, 101, 216, 227, 231, 27, 120, + 13, 139, 63, 122, 197, 128, 208, 255, 255, 76, 15, 188, 145, 82, 74, 203, 179, 244, 215, 187, 15, 231, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2697, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2326122345000827822" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8310915243119797541" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9301006841712462403" + } + } + ] + } + ] + }, + "cborHex": "9f9fbf1b20480bf2cddf7bae1b73564d616888e525ffa01b8113d07195bfca43ffff", + "cborBytes": [ + 159, 159, 191, 27, 32, 72, 11, 242, 205, 223, 123, 174, 27, 115, 86, 77, 97, 104, 136, 229, 37, 255, 160, 27, 129, + 19, 208, 113, 149, 191, 202, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2698, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1913666877730229011" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e464f54c4095b8b8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2463312400782105345" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cef8bad5a182253" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16152393386976549994" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8672c048b2e112d6c96894cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f41bc6e4992faf7e39157" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4c8331c243224" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37b11ca722f6a148b337f267" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc67da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f3c1f37e063d" + } + ] + }, + "cborHex": "9f1b1a8eb5e2e18a8b1348e464f54c4095b8b89f1b222f7193cb6e9b01bf483cef8bad5a1822531be028d434d71b1c6a4c8672c048b2e112d6c96894cf4b0f41bc6e4992faf7e3915747b4c8331c2432244c37b11ca722f6a148b337f26743bc67da415cffff46f3c1f37e063dff", + "cborBytes": [ + 159, 27, 26, 142, 181, 226, 225, 138, 139, 19, 72, 228, 100, 245, 76, 64, 149, 184, 184, 159, 27, 34, 47, 113, + 147, 203, 110, 155, 1, 191, 72, 60, 239, 139, 173, 90, 24, 34, 83, 27, 224, 40, 212, 52, 215, 27, 28, 106, 76, + 134, 114, 192, 72, 178, 225, 18, 214, 201, 104, 148, 207, 75, 15, 65, 188, 110, 73, 146, 250, 247, 227, 145, 87, + 71, 180, 200, 51, 28, 36, 50, 36, 76, 55, 177, 28, 167, 34, 246, 161, 72, 179, 55, 242, 103, 67, 188, 103, 218, + 65, 92, 255, 255, 70, 243, 193, 243, 126, 6, 61, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2699, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ead70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e3b171f9a60dbc6293c81dd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a3b39b9a3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2402171480279722608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad2a02d45a97fe8f541de6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b267a48e09414f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4138859426018770304" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd6b598b00e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e14199ef409fed6c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5614008386989528661" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16372158865664118716" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c78509341afbe0864796f1" + }, + { + "_tag": "ByteArray", + "bytearray": "d4bc4b7a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1943910952191609488" + } + } + ] + } + ] + }, + "cborHex": "9fbf434ead704c4e3b171f9a60dbc6293c81dd455a3b39b9a31b21563a3beba5aa704bad2a02d45a97fe8f541de6411c47b267a48e09414f1b39702eb827203d8046bd6b598b00e748e14199ef409fed6cffd8669f1b4de8f6e2389316559fd8669f1be33597beb22c0fbc80ffffff4bc78509341afbe0864796f144d4bc4b7a9f1b1afa28b6345f4a90ffff", + "cborBytes": [ + 159, 191, 67, 78, 173, 112, 76, 78, 59, 23, 31, 154, 96, 219, 198, 41, 60, 129, 221, 69, 90, 59, 57, 185, 163, 27, + 33, 86, 58, 59, 235, 165, 170, 112, 75, 173, 42, 2, 212, 90, 151, 254, 143, 84, 29, 230, 65, 28, 71, 178, 103, + 164, 142, 9, 65, 79, 27, 57, 112, 46, 184, 39, 32, 61, 128, 70, 189, 107, 89, 139, 0, 231, 72, 225, 65, 153, 239, + 64, 159, 237, 108, 255, 216, 102, 159, 27, 77, 232, 246, 226, 56, 147, 22, 85, 159, 216, 102, 159, 27, 227, 53, + 151, 190, 178, 44, 15, 188, 128, 255, 255, 255, 75, 199, 133, 9, 52, 26, 251, 224, 134, 71, 150, 241, 68, 212, + 188, 75, 122, 159, 27, 26, 250, 40, 182, 52, 95, 74, 144, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2700, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbe7fd01fa11b980" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10745830053212561072" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8566882973549062692" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a48921" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11946022798262245935" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d4afdabf26e6fe33" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14856901925013151553" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf48bbe7fd01fa11b9801b9520db7fe2739eb0ff9fd8669f1b76e3aeacd6bbea249f43a48921ffff9f1ba5c8cc7139239a2f48d4afdabf26e6fe331bce2e5195e739df41ffffff", + "cborBytes": [ + 159, 191, 72, 187, 231, 253, 1, 250, 17, 185, 128, 27, 149, 32, 219, 127, 226, 115, 158, 176, 255, 159, 216, 102, + 159, 27, 118, 227, 174, 172, 214, 187, 234, 36, 159, 67, 164, 137, 33, 255, 255, 159, 27, 165, 200, 204, 113, 57, + 35, 154, 47, 72, 212, 175, 218, 191, 38, 230, 254, 51, 27, 206, 46, 81, 149, 231, 57, 223, 65, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2701, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff180ffff", + "cborBytes": [159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2702, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "040666" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a872433e6c384b9a73" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "054a6645401e01d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15957441337419255956" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55b2d6db1ad5b4bd74a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b971721a873d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0307" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd02fcfc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a5382934880613e" + } + } + ] + } + ] + }, + "cborHex": "9fbf4304066649a872433e6c384b9a7348054a6645401e01d41bdd743859a90250944a55b2d6db1ad5b4bd74a546b971721a873d417042030744dd02fcfc484a5382934880613effff", + "cborBytes": [ + 159, 191, 67, 4, 6, 102, 73, 168, 114, 67, 62, 108, 56, 75, 154, 115, 72, 5, 74, 102, 69, 64, 30, 1, 212, 27, 221, + 116, 56, 89, 169, 2, 80, 148, 74, 85, 178, 214, 219, 26, 213, 180, 189, 116, 165, 70, 185, 113, 114, 26, 135, 61, + 65, 112, 66, 3, 7, 68, 221, 2, 252, 252, 72, 74, 83, 130, 147, 72, 128, 97, 62, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2703, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "577bbcdd338c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4401306536701958319" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "95e7f0da14b978f626c42c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18213364495058709908" + } + }, + { + "_tag": "ByteArray", + "bytearray": "35a977b1d76cabdf8a1bda" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5926648753825792274" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fa4918" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e744d72126fa" + }, + { + "_tag": "ByteArray", + "bytearray": "d8549ac3" + } + ] + } + ] + } + ] + }, + "cborHex": "9fa046577bbcdd338cd905029f1bffffffffffffffef9f1b3d1494f9dbb998afffd8669f1bffffffffffffffec9f4b95e7f0da14b978f626c42c1bfcc2de827cafad944b35a977b1d76cabdf8a1bda1b523fafa4104c4112ffff43fa49189f46e744d72126fa44d8549ac3ffffff", + "cborBytes": [ + 159, 160, 70, 87, 123, 188, 221, 51, 140, 217, 5, 2, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 27, 61, + 20, 148, 249, 219, 185, 152, 175, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 75, 149, + 231, 240, 218, 20, 185, 120, 246, 38, 196, 44, 27, 252, 194, 222, 130, 124, 175, 173, 148, 75, 53, 169, 119, 177, + 215, 108, 171, 223, 138, 27, 218, 27, 82, 63, 175, 164, 16, 76, 65, 18, 255, 255, 67, 250, 73, 24, 159, 70, 231, + 68, 215, 33, 38, 250, 68, 216, 84, 154, 195, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2704, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1450101144739428579" + } + } + ] + }, + "cborHex": "9f1b141fcb4ee494b8e3ff", + "cborBytes": [159, 27, 20, 31, 203, 78, 228, 148, 184, 227, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2705, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2407251471551679659" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16823889016818920954" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16059717854685311715" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7820753765326761381" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + } + ] + } + ] + }, + "cborHex": "9f0bbf091bfffffffffffffff51b216846758edfccab1be97a75ec8c166dfa1bdedf944d018432e3021bffffffffffffffeb1b6c88e61d0a19ada51bffffffffffffffee4106ffff", + "cborBytes": [ + 159, 11, 191, 9, 27, 255, 255, 255, 255, 255, 255, 255, 245, 27, 33, 104, 70, 117, 142, 223, 204, 171, 27, 233, + 122, 117, 236, 140, 22, 109, 250, 27, 222, 223, 148, 77, 1, 132, 50, 227, 2, 27, 255, 255, 255, 255, 255, 255, + 255, 235, 27, 108, 136, 230, 29, 10, 25, 173, 165, 27, 255, 255, 255, 255, 255, 255, 255, 238, 65, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2706, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d5aa215956f196" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1952295491630739757" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5789530505991791077" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4413052645835873953" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df33030e7a90b719" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1966ac60e9d4d281ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "725f95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f6aae8094a0e28d4c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4531816118070019353" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7642daf7ace24e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f5a76" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6638251aa54" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3206036146857832426" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b76fb722" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4245116536040375830" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5355359156699958735" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4bb054b5c9c6b0e1a1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17155436271618524951" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7714704212298369279" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8661704131565146504" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7976640457379432388" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5684361985138719967" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "10b8d07b45563971" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11356598058315044627" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5833516460122638207" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2547587415573344704" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16345058417751146179" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9530f43a" + } + ] + } + ] + } + ] + }, + "cborHex": "9f47d5aa215956f196bf1b1b17f267eb3f312d1b50588b5229eda1e51b3d3e500002251ea148df33030e7a90b719ffbf491966ac60e9d4d281ab43725f95492f6aae8094a0e28d4c1b3ee43ebfb0f40519477642daf7ace24e432f5a7646a6638251aa541b2c7e20e3a685efea44b76fb7221b3ae9aeff78d2c616ffd8669f1b4a520ec773bc8dcf9f494bb054b5c9c6b0e1a1d8669f1bee145a6548ac87179f1b6b10229b594108ff1b78348e0417795188ffffbf1b6eb2b83be31c47c41b4ee2e91bc2ed7cdfff4810b8d07b455639719f1b9d9abdc3a2c257131b50f4d0502d01077f1b235ad941bb8131c01be2d55007f710bec3449530f43affffffff", + "cborBytes": [ + 159, 71, 213, 170, 33, 89, 86, 241, 150, 191, 27, 27, 23, 242, 103, 235, 63, 49, 45, 27, 80, 88, 139, 82, 41, 237, + 161, 229, 27, 61, 62, 80, 0, 2, 37, 30, 161, 72, 223, 51, 3, 14, 122, 144, 183, 25, 255, 191, 73, 25, 102, 172, + 96, 233, 212, 210, 129, 171, 67, 114, 95, 149, 73, 47, 106, 174, 128, 148, 160, 226, 141, 76, 27, 62, 228, 62, + 191, 176, 244, 5, 25, 71, 118, 66, 218, 247, 172, 226, 78, 67, 47, 90, 118, 70, 166, 99, 130, 81, 170, 84, 27, 44, + 126, 32, 227, 166, 133, 239, 234, 68, 183, 111, 183, 34, 27, 58, 233, 174, 255, 120, 210, 198, 22, 255, 216, 102, + 159, 27, 74, 82, 14, 199, 115, 188, 141, 207, 159, 73, 75, 176, 84, 181, 201, 198, 176, 225, 161, 216, 102, 159, + 27, 238, 20, 90, 101, 72, 172, 135, 23, 159, 27, 107, 16, 34, 155, 89, 65, 8, 255, 27, 120, 52, 142, 4, 23, 121, + 81, 136, 255, 255, 191, 27, 110, 178, 184, 59, 227, 28, 71, 196, 27, 78, 226, 233, 27, 194, 237, 124, 223, 255, + 72, 16, 184, 208, 123, 69, 86, 57, 113, 159, 27, 157, 154, 189, 195, 162, 194, 87, 19, 27, 80, 244, 208, 80, 45, + 1, 7, 127, 27, 35, 90, 217, 65, 187, 129, 49, 192, 27, 226, 213, 80, 7, 247, 16, 190, 195, 68, 149, 48, 244, 58, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2707, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f13c6cf9a3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15063619402623333708" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16165976821177028499" + } + } + } + ] + } + ] + }, + "cborHex": "9f45f13c6cf9a31bffffffffffffffeebf1bd10cba09450bb54c1be059164491748f93ffff", + "cborBytes": [ + 159, 69, 241, 60, 108, 249, 163, 27, 255, 255, 255, 255, 255, 255, 255, 238, 191, 27, 209, 12, 186, 9, 69, 11, + 181, 76, 27, 224, 89, 22, 68, 145, 116, 143, 147, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2708, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4347332702596848613" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3216207757176791662" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35f0b778dbc4c85142e636c4" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3c54d40f52b95be59fbf1b2ca243ea3a60e26e4c35f0b778dbc4c85142e636c4ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 60, 84, 212, 15, 82, 185, 91, 229, 159, 191, 27, 44, 162, 67, 234, 58, 96, 226, 110, 76, + 53, 240, 183, 120, 219, 196, 200, 81, 66, 230, 54, 196, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2709, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15881516549225258190" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6153875175677676308" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5452081793624223284" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d97d30c8c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12228447746654707083" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4f931b81ddf5b14f6a94d331" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13779194818841372860" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7a823ca6745d6bc62" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fc9fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edbc26b1fa3f5773" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad5bd63961" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13349176953770964514" + } + } + ] + }, + "cborHex": "9f9fd8669f1bdc667b285b0f1cce9f1b5566f4de1e5ccb141b4ba9af814358ae34456d97d30c8c1ba9b42c6fbdc79d8bffff4c4f931b81ddf5b14f6a94d331bf42a4ff1bbf3988aeb3f168bc49c7a823ca6745d6bc62431fc9fb48edbc26b1fa3f577345ad5bd63961ffff1bb941cdb665597622ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 220, 102, 123, 40, 91, 15, 28, 206, 159, 27, 85, 102, 244, 222, 30, 92, 203, 20, 27, + 75, 169, 175, 129, 67, 88, 174, 52, 69, 109, 151, 211, 12, 140, 27, 169, 180, 44, 111, 189, 199, 157, 139, 255, + 255, 76, 79, 147, 27, 129, 221, 245, 177, 79, 106, 148, 211, 49, 191, 66, 164, 255, 27, 191, 57, 136, 174, 179, + 241, 104, 188, 73, 199, 168, 35, 202, 103, 69, 214, 188, 98, 67, 31, 201, 251, 72, 237, 188, 38, 177, 250, 63, 87, + 115, 69, 173, 91, 214, 57, 97, 255, 255, 27, 185, 65, 205, 182, 101, 89, 118, 34, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2710, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5410778741891814323" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3fb50d5857e01722" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11098928375908921978" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32cccc" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f41e0bf1b4b16f29924b253b3483fb50d5857e017221b9a07508da18df27a4332ccccffffff", + "cborBytes": [ + 159, 159, 65, 224, 191, 27, 75, 22, 242, 153, 36, 178, 83, 179, 72, 63, 181, 13, 88, 87, 224, 23, 34, 27, 154, 7, + 80, 141, 161, 141, 242, 122, 67, 50, 204, 204, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2711, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3436622781011707191" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d2c779c8c6f9d4e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6488936884931793706" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a056e6e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b8985" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "259707221053225231" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8547873723926133160" + } + }, + { + "_tag": "ByteArray", + "bytearray": "96c75340438c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15993579428026453474" + } + } + ] + }, + "cborHex": "9fbf1b2fb156361937c537485d2c779c8c6f9d4e1b5a0d55b78c4a132a44a056e6e8430b89851b039aaa57707b390fff1b76a025dd038339a84696c75340438c1bddf49bc08e830de2ff", + "cborBytes": [ + 159, 191, 27, 47, 177, 86, 54, 25, 55, 197, 55, 72, 93, 44, 119, 156, 140, 111, 157, 78, 27, 90, 13, 85, 183, 140, + 74, 19, 42, 68, 160, 86, 230, 232, 67, 11, 137, 133, 27, 3, 154, 170, 87, 112, 123, 57, 15, 255, 27, 118, 160, 37, + 221, 3, 131, 57, 168, 70, 150, 199, 83, 64, 67, 140, 27, 221, 244, 155, 192, 142, 131, 13, 226, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2712, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fb" + } + ] + }, + "cborHex": "9f41fbff", + "cborBytes": [159, 65, 251, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2713, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd9050c80ff", + "cborBytes": [159, 217, 5, 12, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2714, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2725270911041101141" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5171499232663317415" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bbb35b28" + }, + { + "_tag": "ByteArray", + "bytearray": "9c82" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8874541243909082581" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04e5bb2834d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18343385549521437413" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10602946936426309772" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6815639029969536483" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15962482408247451966" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5071030369e47151" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4060417046829382958" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9302252943658330480" + } + } + ] + }, + "cborHex": "9f9fd8669f1b25d21b74594f5d5580ffff9f9f1b47c4db26ff1a2ba744bbb35b28429c82ff9f1b7b28b43df3c10dd54604e5bb2834d11bfe90cbf8494242e5ffbf1b93253c0fd601a88c1b5e960396429f45e31bdd86212d6d02e13e485071030369e47151ffbf1b38597fca8434bd2e415fffff1b81183dc44d962970ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 37, 210, 27, 116, 89, 79, 93, 85, 128, 255, 255, 159, 159, 27, 71, 196, 219, 38, 255, + 26, 43, 167, 68, 187, 179, 91, 40, 66, 156, 130, 255, 159, 27, 123, 40, 180, 61, 243, 193, 13, 213, 70, 4, 229, + 187, 40, 52, 209, 27, 254, 144, 203, 248, 73, 66, 66, 229, 255, 191, 27, 147, 37, 60, 15, 214, 1, 168, 140, 27, + 94, 150, 3, 150, 66, 159, 69, 227, 27, 221, 134, 33, 45, 109, 2, 225, 62, 72, 80, 113, 3, 3, 105, 228, 113, 81, + 255, 191, 27, 56, 89, 127, 202, 132, 52, 189, 46, 65, 95, 255, 255, 27, 129, 24, 61, 196, 77, 150, 41, 112, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2715, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11252240081316323402" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3882834912217821130" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7977b22c09cc5af1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6901267441309582257" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c2" + }, + { + "_tag": "ByteArray", + "bytearray": "1502fdfc" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10272711605687655394" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "708f550c7a04605af5af" + }, + { + "_tag": "ByteArray", + "bytearray": "ef541c2580" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1d4aaefecfaba4e544" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6777119339281765623" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11480444535808975411" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3814291506557801276" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6049686960371687645" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16745433126910808471" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4475370029524615609" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8100673952058586489" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8069468153469504979" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + }, + "cborHex": "9fd8669f1b9c27fcbcae45a04a9fd87b9f1b35e299c7d03a6fca487977b22c09cc5af1ff1b5fc63a2c633a03b141c2441502fdfcffff1b8e9000c7390b9be29f4a708f550c7a04605af5af45ef541c25809f491d4aaefecfaba4e5441b5e0d2a21e251d4f71b9f52bb7ab477e2331b34ef15ea8e2ad33cff9f1b53f4ce3ce34460dd1be863bab53393d1971b3e1bb554903e81b91b706b600a49b63579ff1b6ffc82881de08dd3ff05ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 156, 39, 252, 188, 174, 69, 160, 74, 159, 216, 123, 159, 27, 53, 226, 153, 199, 208, 58, + 111, 202, 72, 121, 119, 178, 44, 9, 204, 90, 241, 255, 27, 95, 198, 58, 44, 99, 58, 3, 177, 65, 194, 68, 21, 2, + 253, 252, 255, 255, 27, 142, 144, 0, 199, 57, 11, 155, 226, 159, 74, 112, 143, 85, 12, 122, 4, 96, 90, 245, 175, + 69, 239, 84, 28, 37, 128, 159, 73, 29, 74, 174, 254, 207, 171, 164, 229, 68, 27, 94, 13, 42, 33, 226, 81, 212, + 247, 27, 159, 82, 187, 122, 180, 119, 226, 51, 27, 52, 239, 21, 234, 142, 42, 211, 60, 255, 159, 27, 83, 244, 206, + 60, 227, 68, 96, 221, 27, 232, 99, 186, 181, 51, 147, 209, 151, 27, 62, 27, 181, 84, 144, 62, 129, 185, 27, 112, + 107, 96, 10, 73, 182, 53, 121, 255, 27, 111, 252, 130, 136, 29, 224, 141, 211, 255, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2716, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10181872655332648712" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14514137975434500107" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4317958664231696283" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6261751122850753883" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14121457575880660841" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c0a1d658013a208979d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16680634343269313171" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "722763609937106482" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "840124980124244462" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3448778895654917114" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7191158627041903088" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16429146428678436856" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8337469930818765818" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fdafe1947cacf197f5ac7247" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0cc46c08448c1b" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5842172166908434977" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17859697989429385964" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce0548ed7a9aa6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17806194286239291605" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10873064379785602410" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "557f9017a794163c" + } + ] + } + ] + }, + "cborHex": "9f1b8d4d473bf15da7081bc96c9396e6c7d80bbf1b3bec78871059b79b1b56e63578556c2d5b1bc3f97ed8b91d97694a0c0a1d658013a208979d1be77d848eb2bfaa931b0a07c5ac82e1563241224165ff9f9f1b0ba8b937df3cd9eeff1b2fdc8622186013fa9f1b63cc20abc05181f01be4000da1ac4177f81b73b4a4ba6ff403fa4cfdafe1947cacf197f5ac7247ff470cc46c08448c1bff9fd8669f1b511390a1f5405a219f1bf7da64b257b25aec47ce0548ed7a9aa61bf71c4f5cb0e218d51b96e4e2720912e56affff48557f9017a794163cffff", + "cborBytes": [ + 159, 27, 141, 77, 71, 59, 241, 93, 167, 8, 27, 201, 108, 147, 150, 230, 199, 216, 11, 191, 27, 59, 236, 120, 135, + 16, 89, 183, 155, 27, 86, 230, 53, 120, 85, 108, 45, 91, 27, 195, 249, 126, 216, 185, 29, 151, 105, 74, 12, 10, + 29, 101, 128, 19, 162, 8, 151, 157, 27, 231, 125, 132, 142, 178, 191, 170, 147, 27, 10, 7, 197, 172, 130, 225, 86, + 50, 65, 34, 65, 101, 255, 159, 159, 27, 11, 168, 185, 55, 223, 60, 217, 238, 255, 27, 47, 220, 134, 34, 24, 96, + 19, 250, 159, 27, 99, 204, 32, 171, 192, 81, 129, 240, 27, 228, 0, 13, 161, 172, 65, 119, 248, 27, 115, 180, 164, + 186, 111, 244, 3, 250, 76, 253, 175, 225, 148, 124, 172, 241, 151, 245, 172, 114, 71, 255, 71, 12, 196, 108, 8, + 68, 140, 27, 255, 159, 216, 102, 159, 27, 81, 19, 144, 161, 245, 64, 90, 33, 159, 27, 247, 218, 100, 178, 87, 178, + 90, 236, 71, 206, 5, 72, 237, 122, 154, 166, 27, 247, 28, 79, 92, 176, 226, 24, 213, 27, 150, 228, 226, 114, 9, + 18, 229, 106, 255, 255, 72, 85, 127, 144, 23, 167, 148, 22, 60, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2717, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "680447564448229834" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a10" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1845580997107208280" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b0624f92a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7536440168833136276" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "254968679406486580" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13003649174222715437" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f49131329d20a779b29a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16010963884975795508" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "546706758940775022" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fa0ffbf1b09716f74673769ca426a101b199cd22378c95058456b0624f92a1b6896d0675e48b6941b0389d4a9bcdfc4341bb4763e071558ba2d4af49131329d20a779b29a1bde325ed2db972d341b07964ae692f8526effff", + "cborBytes": [ + 159, 159, 160, 255, 191, 27, 9, 113, 111, 116, 103, 55, 105, 202, 66, 106, 16, 27, 25, 156, 210, 35, 120, 201, 80, + 88, 69, 107, 6, 36, 249, 42, 27, 104, 150, 208, 103, 94, 72, 182, 148, 27, 3, 137, 212, 169, 188, 223, 196, 52, + 27, 180, 118, 62, 7, 21, 88, 186, 45, 74, 244, 145, 49, 50, 157, 32, 167, 121, 178, 154, 27, 222, 50, 94, 210, + 219, 151, 45, 52, 27, 7, 150, 74, 230, 146, 248, 82, 110, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2718, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2426" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4446d6217296" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90cce4922559fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11256006484869945207" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e63e2718f088" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aeca555022936b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0af9f90bedfd" + } + ] + }, + "cborHex": "9fbf422426464446d62172964790cce4922559fb1b9c355e42d82a977746e63e2718f08847aeca555022936bff460af9f90bedfdff", + "cborBytes": [ + 159, 191, 66, 36, 38, 70, 68, 70, 214, 33, 114, 150, 71, 144, 204, 228, 146, 37, 89, 251, 27, 156, 53, 94, 66, + 216, 42, 151, 119, 70, 230, 62, 39, 24, 240, 136, 71, 174, 202, 85, 80, 34, 147, 107, 255, 70, 10, 249, 249, 11, + 237, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2719, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2840691349059224885" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15742070168934970683" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13527263459404774418" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5e1c5f1492a4f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "135248045896d129" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd87a9f1b276c29bb393345351bda771169e0a4753b1bbbba7e7220f17c12bf47a5e1c5f1492a4f48135248045896d129ffffff", + "cborBytes": [ + 159, 216, 122, 159, 27, 39, 108, 41, 187, 57, 51, 69, 53, 27, 218, 119, 17, 105, 224, 164, 117, 59, 27, 187, 186, + 126, 114, 32, 241, 124, 18, 191, 71, 165, 225, 197, 241, 73, 42, 79, 72, 19, 82, 72, 4, 88, 150, 209, 41, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2720, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5576939160078776591" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8033121381879123136" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13550027772577108560" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a2180f4768" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8669f1b4d65449e4275f90f9f801b6f7b6155e4800cc0d8669f1bbc0b5e77d122d2509f45a2180f4768ffffa0ffffa0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 77, 101, 68, 158, 66, 117, 249, 15, 159, 128, 27, 111, 123, 97, 85, 228, 128, 12, 192, + 216, 102, 159, 27, 188, 11, 94, 119, 209, 34, 210, 80, 159, 69, 162, 24, 15, 71, 104, 255, 255, 160, 255, 255, + 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2721, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3353508679856534146" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1b2e8a0e606e09b2828080ff", + "cborBytes": [159, 27, 46, 138, 14, 96, 110, 9, 178, 130, 128, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2722, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7422538933325740382" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9055870144402356779" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03f195" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "137032c841aa1bd6f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "190a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13336592056225179985" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "411cc0a88f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "72148326588619068" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e51435bf45d600f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13805950427866071337" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9244f98a99e1ae24" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c43e556e894a30ab59725a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f56acc819201ef6e9fde" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71ae6f54" + } + } + ] + } + ] + }, + "cborHex": "9f1b670227d56463395e1b7dace9ea912afa2bbf4303f19549137032c841aa1bd6f642190a1bb91517d09999295145411cc0a88f1b010052855174193c486e51435bf45d600f1bbf9896c45f9c0129489244f98a99e1ae244bc43e556e894a30ab59725a4af56acc819201ef6e9fde4471ae6f54ffff", + "cborBytes": [ + 159, 27, 103, 2, 39, 213, 100, 99, 57, 94, 27, 125, 172, 233, 234, 145, 42, 250, 43, 191, 67, 3, 241, 149, 73, 19, + 112, 50, 200, 65, 170, 27, 214, 246, 66, 25, 10, 27, 185, 21, 23, 208, 153, 153, 41, 81, 69, 65, 28, 192, 168, + 143, 27, 1, 0, 82, 133, 81, 116, 25, 60, 72, 110, 81, 67, 91, 244, 93, 96, 15, 27, 191, 152, 150, 196, 95, 156, 1, + 41, 72, 146, 68, 249, 138, 153, 225, 174, 36, 75, 196, 62, 85, 110, 137, 74, 48, 171, 89, 114, 90, 74, 245, 106, + 204, 129, 146, 1, 239, 110, 159, 222, 68, 113, 174, 111, 84, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2723, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8543534606231370388" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17183611987198081761" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b7690bb7572ad7a941bee78740f4715fae1ffff", + "cborBytes": [ + 159, 191, 27, 118, 144, 187, 117, 114, 173, 122, 148, 27, 238, 120, 116, 15, 71, 21, 250, 225, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2724, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e4" + }, + { + "_tag": "ByteArray", + "bytearray": "e631a0440a6619d3090f" + } + ] + }, + "cborHex": "9f41e44ae631a0440a6619d3090fff", + "cborBytes": [159, 65, 228, 74, 230, 49, 160, 68, 10, 102, 25, 211, 9, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2725, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf0807ffff", + "cborBytes": [159, 191, 8, 7, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2726, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4237115526319629503" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11501155808816772290" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15389244864799509774" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c5d8e128d51d646d" + }, + { + "_tag": "ByteArray", + "bytearray": "39134de765a65588bc07" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12077660501451497034" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7238539478027764991" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3d5c5560cebb9fa7a66e2a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8080972873246460931" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9702387686165768602" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1273307779663028072" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11952196320574936950" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14542104005230736923" + } + }, + { + "_tag": "ByteArray", + "bytearray": "448f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b52e70" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3acd421f3a92e4bf9f9f1b9f9c5045baf1b4c21bd59194ab37e10d0e48c5d8e128d51d646d4a39134de765a65588bc071ba79c783c62c85e4affffff9f1b6474754dc87c84ff9f4b3d5c5560cebb9fa7a66e2a1b702562036d6c4c031b86a5ce31f308e99a1b11abb2ade88e5f68ff1ba5debb3a659997769f1bc9cfee8b9e90361b42448fff43b52e70ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 58, 205, 66, 31, 58, 146, 228, 191, 159, 159, 27, 159, 156, 80, 69, 186, 241, 180, 194, + 27, 213, 145, 148, 171, 55, 225, 13, 14, 72, 197, 216, 225, 40, 213, 29, 100, 109, 74, 57, 19, 77, 231, 101, 166, + 85, 136, 188, 7, 27, 167, 156, 120, 60, 98, 200, 94, 74, 255, 255, 255, 159, 27, 100, 116, 117, 77, 200, 124, 132, + 255, 159, 75, 61, 92, 85, 96, 206, 187, 159, 167, 166, 110, 42, 27, 112, 37, 98, 3, 109, 108, 76, 3, 27, 134, 165, + 206, 49, 243, 8, 233, 154, 27, 17, 171, 178, 173, 232, 142, 95, 104, 255, 27, 165, 222, 187, 58, 101, 153, 151, + 118, 159, 27, 201, 207, 238, 139, 158, 144, 54, 27, 66, 68, 143, 255, 67, 181, 46, 112, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2727, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17999095231470801568" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5518048039172273289" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "1640319b1d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2398430724062987229" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b29" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3410985996338618733" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05037507" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5484158931953907995" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5f9727d06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5747891571960341246" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2fbeea3cc703b231ac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14952368242285221120" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5787980041264793331" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bf9c9a1bfee3e92a0d8669f1b4c940b74ac6774899f80451640319b1dbf1b2148f0093e2843dd423b291b2f5641b10598616d44050375071b4c1ba57e06e5f91b45d5f9727d061b4fc49cee5a2862fe492fbeea3cc703b231ac1bcf817bb2003e15001b5053092e76a386f3ffffffff", + "cborBytes": [ + 159, 27, 249, 201, 161, 191, 238, 62, 146, 160, 216, 102, 159, 27, 76, 148, 11, 116, 172, 103, 116, 137, 159, 128, + 69, 22, 64, 49, 155, 29, 191, 27, 33, 72, 240, 9, 62, 40, 67, 221, 66, 59, 41, 27, 47, 86, 65, 177, 5, 152, 97, + 109, 68, 5, 3, 117, 7, 27, 76, 27, 165, 126, 6, 229, 249, 27, 69, 213, 249, 114, 125, 6, 27, 79, 196, 156, 238, + 90, 40, 98, 254, 73, 47, 190, 234, 60, 199, 3, 178, 49, 172, 27, 207, 129, 123, 178, 0, 62, 21, 0, 27, 80, 83, 9, + 46, 118, 163, 134, 243, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2728, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17122155486135925383" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6de135635629b85ba931babe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13984309791961185184" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "182439194679276462" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a906fd1dafd6227a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2e4a0992d23f876ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2566273399819421524" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4624579019808067084" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7184357602823582769" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0b17740477eef0ddbc86" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f1bed9e1db294233a8780bf4c6de135635629b85ba931babe4147ffd8669f1bc2123fa9eadcfba09fbf1b0288277b1ff773ae48a906fd1dafd6227a49f2e4a0992d23f876ba1b239d3c0f78c54754ffbf1b402dce1dcf624e0c1b63b3f72ce7ad3431ff4a0b17740477eef0ddbc86a0ffffff", + "cborBytes": [ + 159, 27, 237, 158, 29, 178, 148, 35, 58, 135, 128, 191, 76, 109, 225, 53, 99, 86, 41, 184, 91, 169, 49, 186, 190, + 65, 71, 255, 216, 102, 159, 27, 194, 18, 63, 169, 234, 220, 251, 160, 159, 191, 27, 2, 136, 39, 123, 31, 247, 115, + 174, 72, 169, 6, 253, 29, 175, 214, 34, 122, 73, 242, 228, 160, 153, 45, 35, 248, 118, 186, 27, 35, 157, 60, 15, + 120, 197, 71, 84, 255, 191, 27, 64, 45, 206, 29, 207, 98, 78, 12, 27, 99, 179, 247, 44, 231, 173, 52, 49, 255, 74, + 11, 23, 116, 4, 119, 238, 240, 221, 188, 134, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2729, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4728370023186276039" + } + } + ] + }, + "cborHex": "9f1b419e8b7bee9f9ec7ff", + "cborBytes": [159, 27, 65, 158, 139, 123, 238, 159, 158, 199, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2730, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e7c9" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5920333977745502132" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5427264499150211656" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7776422261928738841" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d86c79" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17410401466539826842" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0f1fd" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48dd1dc48a056219b49e17" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14523586897497199390" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc88e5275e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11065908014946559157" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffb603" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13928601697640964167" + } + } + } + ] + } + ] + }, + "cborHex": "9f42e7c99fbf1b52294062af322fb41b4b51844e9defca481b6beb66d891b3c01943d86c791bf19e2be3ba0bde9a43a0f1fdffffbf4b48dd1dc48a056219b49e171bc98e255581d6931e45dc88e5275e1b999200b5bc09a4b543ffb6031bc14c557275cae047ffff", + "cborBytes": [ + 159, 66, 231, 201, 159, 191, 27, 82, 41, 64, 98, 175, 50, 47, 180, 27, 75, 81, 132, 78, 157, 239, 202, 72, 27, + 107, 235, 102, 216, 145, 179, 192, 25, 67, 216, 108, 121, 27, 241, 158, 43, 227, 186, 11, 222, 154, 67, 160, 241, + 253, 255, 255, 191, 75, 72, 221, 29, 196, 138, 5, 98, 25, 180, 158, 23, 27, 201, 142, 37, 85, 129, 214, 147, 30, + 69, 220, 136, 229, 39, 94, 27, 153, 146, 0, 181, 188, 9, 164, 181, 67, 255, 182, 3, 27, 193, 76, 85, 114, 117, + 202, 224, 71, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2731, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12967202745119566320" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f043" + }, + { + "_tag": "ByteArray", + "bytearray": "36" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2350965748842364414" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "550314c6bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc02db" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15462600764207481003" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15932623035201822367" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7859cd2590dd06e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "125a" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10526868479167852384" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "18ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "306509469000439943" + } + }, + { + "_tag": "ByteArray", + "bytearray": "37ab22" + }, + { + "_tag": "ByteArray", + "bytearray": "028a8440ce9517" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bb3f4c231895269f09f42f0434136ffff1b20a04ee482dbfdfebf410345550314c6bb43bc02db1bfffffffffffffff3ffd905089fbf1bd69631787e4540ab1bdd1c0c3c61691e9f487859cd2590dd06e742125affd8669f1b9216f31baa0e6f609f4218ab1b0440f0bcf41098874337ab2247028a8440ce9517ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 179, 244, 194, 49, 137, 82, 105, 240, 159, 66, 240, 67, 65, 54, 255, 255, 27, 32, 160, 78, + 228, 130, 219, 253, 254, 191, 65, 3, 69, 85, 3, 20, 198, 187, 67, 188, 2, 219, 27, 255, 255, 255, 255, 255, 255, + 255, 243, 255, 217, 5, 8, 159, 191, 27, 214, 150, 49, 120, 126, 69, 64, 171, 27, 221, 28, 12, 60, 97, 105, 30, + 159, 72, 120, 89, 205, 37, 144, 221, 6, 231, 66, 18, 90, 255, 216, 102, 159, 27, 146, 22, 243, 27, 170, 14, 111, + 96, 159, 66, 24, 171, 27, 4, 64, 240, 188, 244, 16, 152, 135, 67, 55, 171, 34, 71, 2, 138, 132, 64, 206, 149, 23, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2732, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11253011947669584046" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11128292943189217120" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12196038613604557183" + } + }, + { + "_tag": "ByteArray", + "bytearray": "92c05ff8" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a36" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6a819" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "258b0828c9ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17089776194734741155" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a7fd7c42f3cdfa1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16416099739699879486" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "acf05e101b20b493f247" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13848242622384207783" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c47a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed83a820f5a44a364b2c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d029aa400156a67713" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07abd9066618f033" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d849d473e372aacbb2fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1ce30806d4c8d1787b54d55" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1635636247238640913" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2366935663597569586" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4cec2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8847101969364622476" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1176e7f568b257b1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11121638343045352217" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "185823d66fc9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14126738177838383437" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6901042198360218989" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4875770773867939365" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1782313323677848310" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7755397708612836966" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16655206159220561937" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14527511751144062744" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8433f7026a47" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b9c2ababed21278ae9fd8669f1b9a6fa378bb478f609f1ba94108806ed8e17f4492c05ff8ffffbf426a3643d6a819ffbf46258b0828c9ab1bed2b14e7521756a3482a7fd7c42f3cdfa11be3d1b3bcae319e3e4aacf05e101b20b493f2471bc02ed74b3ea277a742c47a4aed83a820f5a44a364b2c49d029aa400156a677134807abd9066618f0334ad849d473e372aacbb2fd4cb1ce30806d4c8d1787b54d55ff1b16b2f2803a698511ffffbf1b20d90b720aefc63243e4cec21b7ac7385dffa31c8c481176e7f568b257b11b9a57ff25e5950b1946185823d66fc91bc40c4186ad01814d1b5fc56d50ed3ddd6dffbf1b43aa37af96a146251b18bc0c86584392f61b6ba0b52049bf1e661be7232dc23d3d58111bc99c16f7b5413f18468433f7026a47ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 156, 42, 186, 190, 210, 18, 120, 174, 159, 216, 102, 159, 27, 154, 111, 163, 120, 187, 71, + 143, 96, 159, 27, 169, 65, 8, 128, 110, 216, 225, 127, 68, 146, 192, 95, 248, 255, 255, 191, 66, 106, 54, 67, 214, + 168, 25, 255, 191, 70, 37, 139, 8, 40, 201, 171, 27, 237, 43, 20, 231, 82, 23, 86, 163, 72, 42, 127, 215, 196, 47, + 60, 223, 161, 27, 227, 209, 179, 188, 174, 49, 158, 62, 74, 172, 240, 94, 16, 27, 32, 180, 147, 242, 71, 27, 192, + 46, 215, 75, 62, 162, 119, 167, 66, 196, 122, 74, 237, 131, 168, 32, 245, 164, 74, 54, 75, 44, 73, 208, 41, 170, + 64, 1, 86, 166, 119, 19, 72, 7, 171, 217, 6, 102, 24, 240, 51, 74, 216, 73, 212, 115, 227, 114, 170, 203, 178, + 253, 76, 177, 206, 48, 128, 109, 76, 141, 23, 135, 181, 77, 85, 255, 27, 22, 178, 242, 128, 58, 105, 133, 17, 255, + 255, 191, 27, 32, 217, 11, 114, 10, 239, 198, 50, 67, 228, 206, 194, 27, 122, 199, 56, 93, 255, 163, 28, 140, 72, + 17, 118, 231, 245, 104, 178, 87, 177, 27, 154, 87, 255, 37, 229, 149, 11, 25, 70, 24, 88, 35, 214, 111, 201, 27, + 196, 12, 65, 134, 173, 1, 129, 77, 27, 95, 197, 109, 80, 237, 61, 221, 109, 255, 191, 27, 67, 170, 55, 175, 150, + 161, 70, 37, 27, 24, 188, 12, 134, 88, 67, 146, 246, 27, 107, 160, 181, 32, 73, 191, 30, 102, 27, 231, 35, 45, + 194, 61, 61, 88, 17, 27, 201, 156, 22, 247, 181, 65, 63, 24, 70, 132, 51, 247, 2, 106, 71, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2733, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17574768483628801856" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15666854871347151215" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6a0fb2beb90ba1e12d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4432083644428922548" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8208550218352736991" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3675847245582942232" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "919445780677548210" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b1eb2941f86fa82da54d7e" + }, + { + "_tag": "ByteArray", + "bytearray": "724e1f10053e15b1" + }, + { + "_tag": "ByteArray", + "bytearray": "a507db7cbe18c97ab86c8687" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3785066229650140258" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72fba46319c48ead7c6c2b" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a3360" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12170102810295108664" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1a8f425164f6ab27034fcfe6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1675514479370657394" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4436733570942481194" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a11309" + }, + { + "_tag": "ByteArray", + "bytearray": "d6c699eddf998c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4d9f" + }, + { + "_tag": "ByteArray", + "bytearray": "e6c650dc" + }, + { + "_tag": "ByteArray", + "bytearray": "0b39a48a" + }, + { + "_tag": "ByteArray", + "bytearray": "1df5c3e036d4faa8393469" + }, + { + "_tag": "ByteArray", + "bytearray": "df01099f04c58ddd6b6a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3480847882304883931" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10079368329577035979" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "058b028a4c3e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2461588035281659334" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d1830fc45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96fb983018e4d65db2706891" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30aeb4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee43b18fd8b6ccbe13" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6cba99d9e83acf8ae72e76c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12838075047301248826" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8452" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f08" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf3e61ed21c6cdf409fd8669f1bd96bd97fba3ec16f9f496a0fb2beb90ba1e12d1b3d81ec97a9012eb41b71eaa0eecddebadf1b33033b982991c018ffffd8669f1b0cc28710eb8458b29f4bb1eb2941f86fa82da54d7e48724e1f10053e15b14ca507db7cbe18c97ab86c86871b348741ae859fac624b72fba46319c48ead7c6c2bffffffff9fbf436a33601ba8e4e406a79f8438ff9f4c1a8f425164f6ab27034fcfe61b17409f8aaee95e721b3d9271ad0b13b32a43a1130947d6c699eddf998cff9f424d9f44e6c650dc440b39a48a4b1df5c3e036d4faa83934694adf01099f04c58ddd6b6aff1b304e74b4e5f40cdb1b8be11c17ccc2f8cbffbf46058b028a4c3e1b22295146aa50a5c6451d1830fc454c96fb983018e4d65db27068914330aeb449ee43b18fd8b6ccbe134c6cba99d9e83acf8ae72e76c71bb22a013c8a32773a428452428f08ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 243, 230, 30, 210, 28, 108, 223, 64, 159, 216, 102, 159, 27, 217, 107, 217, 127, 186, 62, + 193, 111, 159, 73, 106, 15, 178, 190, 185, 11, 161, 225, 45, 27, 61, 129, 236, 151, 169, 1, 46, 180, 27, 113, 234, + 160, 238, 205, 222, 186, 223, 27, 51, 3, 59, 152, 41, 145, 192, 24, 255, 255, 216, 102, 159, 27, 12, 194, 135, 16, + 235, 132, 88, 178, 159, 75, 177, 235, 41, 65, 248, 111, 168, 45, 165, 77, 126, 72, 114, 78, 31, 16, 5, 62, 21, + 177, 76, 165, 7, 219, 124, 190, 24, 201, 122, 184, 108, 134, 135, 27, 52, 135, 65, 174, 133, 159, 172, 98, 75, + 114, 251, 164, 99, 25, 196, 142, 173, 124, 108, 43, 255, 255, 255, 255, 159, 191, 67, 106, 51, 96, 27, 168, 228, + 228, 6, 167, 159, 132, 56, 255, 159, 76, 26, 143, 66, 81, 100, 246, 171, 39, 3, 79, 207, 230, 27, 23, 64, 159, + 138, 174, 233, 94, 114, 27, 61, 146, 113, 173, 11, 19, 179, 42, 67, 161, 19, 9, 71, 214, 198, 153, 237, 223, 153, + 140, 255, 159, 66, 77, 159, 68, 230, 198, 80, 220, 68, 11, 57, 164, 138, 75, 29, 245, 195, 224, 54, 212, 250, 168, + 57, 52, 105, 74, 223, 1, 9, 159, 4, 197, 141, 221, 107, 106, 255, 27, 48, 78, 116, 180, 229, 244, 12, 219, 27, + 139, 225, 28, 23, 204, 194, 248, 203, 255, 191, 70, 5, 139, 2, 138, 76, 62, 27, 34, 41, 81, 70, 170, 80, 165, 198, + 69, 29, 24, 48, 252, 69, 76, 150, 251, 152, 48, 24, 228, 214, 93, 178, 112, 104, 145, 67, 48, 174, 180, 73, 238, + 67, 177, 143, 216, 182, 204, 190, 19, 76, 108, 186, 153, 217, 232, 58, 207, 138, 231, 46, 118, 199, 27, 178, 42, + 1, 60, 138, 50, 119, 58, 66, 132, 82, 66, 143, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2734, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10680277243231029637" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + "cborHex": "9f1b9437f790f17949850fff", + "cborBytes": [159, 27, 148, 55, 247, 144, 241, 121, 73, 133, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2735, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd9050780ff", + "cborBytes": [159, 217, 5, 7, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2736, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6289950097390596027" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5329085975070717803" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11442966506658640746" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10907165767653725730" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16387394938129897140" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ed00bf29644" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10471356683032687495" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5751e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cf8" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b574a6449b9e66fbb1b49f4b775a99b376b1b9ecd95690e14b36a1b975e097a1f4d16221be36bb8df414456b4465ed00bf29644ffbf060307061b9151bb6c7093738743a5751e1bffffffffffffffff429cf8ffff", + "cborBytes": [ + 159, 191, 27, 87, 74, 100, 73, 185, 230, 111, 187, 27, 73, 244, 183, 117, 169, 155, 55, 107, 27, 158, 205, 149, + 105, 14, 20, 179, 106, 27, 151, 94, 9, 122, 31, 77, 22, 34, 27, 227, 107, 184, 223, 65, 68, 86, 180, 70, 94, 208, + 11, 242, 150, 68, 255, 191, 6, 3, 7, 6, 27, 145, 81, 187, 108, 112, 147, 115, 135, 67, 165, 117, 30, 27, 255, 255, + 255, 255, 255, 255, 255, 255, 66, 156, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2737, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9640279048714461376" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af7c7d2351895c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3144788266273652251" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ffcd14d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "738f7ecb2c4618816aa1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9532919182254559464" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f41fa9f1b85c926b7ea4420c047af7c7d2351895cbf1b2ba48844310ebe1b449ffcd14d4a738f7ecb2c4618816aa11b844bbb7d1aca50e8ffffff", + "cborBytes": [ + 159, 65, 250, 159, 27, 133, 201, 38, 183, 234, 68, 32, 192, 71, 175, 124, 125, 35, 81, 137, 92, 191, 27, 43, 164, + 136, 68, 49, 14, 190, 27, 68, 159, 252, 209, 77, 74, 115, 143, 126, 203, 44, 70, 24, 129, 106, 161, 27, 132, 75, + 187, 125, 26, 202, 80, 232, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2738, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e0ee73c67ea5211ead3f88" + } + ] + }, + "cborHex": "9f4be0ee73c67ea5211ead3f88ff", + "cborBytes": [159, 75, 224, 238, 115, 198, 126, 165, 33, 30, 173, 63, 136, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2739, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14636660931417390327" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14540074098848443282" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4478102056549544568" + } + }, + { + "_tag": "ByteArray", + "bytearray": "52378c07" + }, + { + "_tag": "ByteArray", + "bytearray": "effe" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5418665677443846016" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8603968397528836312" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3c438e44a748f5fefcb448bf" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6665a0e13aea" + }, + { + "_tag": "ByteArray", + "bytearray": "62d03ee0ff63" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0f1eb2550c1f3cac39902e" + }, + { + "_tag": "ByteArray", + "bytearray": "849c10f2c5e5a5864c2c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14462471438121899744" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5ec9cac93e98c5" + } + ] + }, + "cborHex": "9fd8669f1bcb1fdd919af8bcf79fd8669f1bc9c8b85b35b82b929f411d1b3e256a182c94f2784452378c0742effeffffd8669f1b4b32f7b96ca44f809f1b77676fabf964a8d8ffffffff4c3c438e44a748f5fefcb448bf9f466665a0e13aea4662d03ee0ff63a04b0f1eb2550c1f3cac39902e4a849c10f2c5e5a5864c2cff1bc8b50525c37d16e0475ec9cac93e98c5ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 203, 31, 221, 145, 154, 248, 188, 247, 159, 216, 102, 159, 27, 201, 200, 184, 91, 53, 184, + 43, 146, 159, 65, 29, 27, 62, 37, 106, 24, 44, 148, 242, 120, 68, 82, 55, 140, 7, 66, 239, 254, 255, 255, 216, + 102, 159, 27, 75, 50, 247, 185, 108, 164, 79, 128, 159, 27, 119, 103, 111, 171, 249, 100, 168, 216, 255, 255, 255, + 255, 76, 60, 67, 142, 68, 167, 72, 245, 254, 252, 180, 72, 191, 159, 70, 102, 101, 160, 225, 58, 234, 70, 98, 208, + 62, 224, 255, 99, 160, 75, 15, 30, 178, 85, 12, 31, 60, 172, 57, 144, 46, 74, 132, 156, 16, 242, 197, 229, 165, + 134, 76, 44, 255, 27, 200, 181, 5, 37, 195, 125, 22, 224, 71, 94, 201, 202, 201, 62, 152, 197, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2740, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fe16c1" + }, + { + "_tag": "ByteArray", + "bytearray": "04530405" + }, + { + "_tag": "ByteArray", + "bytearray": "e30401" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5798224258128092619" + } + }, + { + "_tag": "ByteArray", + "bytearray": "787a71611389890a4489f9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1dcb38a325e96aed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba7d8721ccda34" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82aee1b5b4962c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16961075086550477908" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8df6c96f468a74e839f07c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8242b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8897e5a45eb69d07dc003" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17153573478763768898" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efbf30ef47d4cdfe34cbe5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c3b66a17996" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f87e0b32ca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13233844160403648674" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f43fe16c1440453040543e304019f1b50776e3e11c71dcb4b787a71611389890a4489f9bf481dcb38a325e96aed47ba7d8721ccda344782aee1b5b4962c1beb61d7ed7691ac54ffbf41004cc8df6c96f468a74e839f07c7438242b341d44be8897e5a45eb69d07dc0031bee0dbc320646ac424befbf30ef47d4cdfe34cbe5469c3b66a1799645f87e0b32ca1bb7a80f25e1bcb0a2ffffff", + "cborBytes": [ + 159, 67, 254, 22, 193, 68, 4, 83, 4, 5, 67, 227, 4, 1, 159, 27, 80, 119, 110, 62, 17, 199, 29, 203, 75, 120, 122, + 113, 97, 19, 137, 137, 10, 68, 137, 249, 191, 72, 29, 203, 56, 163, 37, 233, 106, 237, 71, 186, 125, 135, 33, 204, + 218, 52, 71, 130, 174, 225, 181, 180, 150, 44, 27, 235, 97, 215, 237, 118, 145, 172, 84, 255, 191, 65, 0, 76, 200, + 223, 108, 150, 244, 104, 167, 78, 131, 159, 7, 199, 67, 130, 66, 179, 65, 212, 75, 232, 137, 126, 90, 69, 235, + 105, 208, 125, 192, 3, 27, 238, 13, 188, 50, 6, 70, 172, 66, 75, 239, 191, 48, 239, 71, 212, 205, 254, 52, 203, + 229, 70, 156, 59, 102, 161, 121, 150, 69, 248, 126, 11, 50, 202, 27, 183, 168, 15, 37, 225, 188, 176, 162, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2741, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5531064394623910963" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5b580988ba4f502edf7cd103" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1692622915584414435" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10157435675270229292" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02c0d6a49316e32199d672" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "95868343669084430" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2384df9c131d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1142215097498523442" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11207874355945888811" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6532255695056441216" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fa7d371defb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7644749292773771678" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c3979566ea95fba23" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11423624405696631910" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10518836533319085473" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17795655448830552233" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb4366f6366cc2" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "03a9" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5014348212818549069" + } + } + ] + }, + "cborHex": "9fd8669f1b4cc249c3175e84339f9f4c5b580988ba4f502edf7cd1031b177d6792e61852e31b8cf675ee255cad2c4b02c0d6a49316e32199d672ffbf1b015497c02999d10e462384df9c131d1b0fd9f694577cd7321b9b8a5e58495d5c2b1b5aa73bf1fddc8f80465fa7d371defb1b6a179afa68b3099e494c3979566ea95fba231b9e88dddf3d07d4661b91fa6a188ae2ada11bf6f6de5864ca28a947eb4366f6366cc2ff4203a9ffff1b45968b21e52a194dff", + "cborBytes": [ + 159, 216, 102, 159, 27, 76, 194, 73, 195, 23, 94, 132, 51, 159, 159, 76, 91, 88, 9, 136, 186, 79, 80, 46, 223, + 124, 209, 3, 27, 23, 125, 103, 146, 230, 24, 82, 227, 27, 140, 246, 117, 238, 37, 92, 173, 44, 75, 2, 192, 214, + 164, 147, 22, 227, 33, 153, 214, 114, 255, 191, 27, 1, 84, 151, 192, 41, 153, 209, 14, 70, 35, 132, 223, 156, 19, + 29, 27, 15, 217, 246, 148, 87, 124, 215, 50, 27, 155, 138, 94, 88, 73, 93, 92, 43, 27, 90, 167, 59, 241, 253, 220, + 143, 128, 70, 95, 167, 211, 113, 222, 251, 27, 106, 23, 154, 250, 104, 179, 9, 158, 73, 76, 57, 121, 86, 110, 169, + 95, 186, 35, 27, 158, 136, 221, 223, 61, 7, 212, 102, 27, 145, 250, 106, 24, 138, 226, 173, 161, 27, 246, 246, + 222, 88, 100, 202, 40, 169, 71, 235, 67, 102, 246, 54, 108, 194, 255, 66, 3, 169, 255, 255, 27, 69, 150, 139, 33, + 229, 42, 25, 77, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2742, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6409276317744602427" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce63ed38e76b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18220643669757839987" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc85e4" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b58f252da6a7d9d3b46ce63ed38e76b1bfcdcbae16ae2ca7343fc85e4ffff", + "cborBytes": [ + 159, 191, 27, 88, 242, 82, 218, 106, 125, 157, 59, 70, 206, 99, 237, 56, 231, 107, 27, 252, 220, 186, 225, 106, + 226, 202, 115, 67, 252, 133, 228, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2743, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3122351055273185403" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14bb9a0f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d9aeae3ee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92b9b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84cba58942d547e54ebb4c9b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7389772213774490300" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36e7e6a5" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5d266617407728f3154d2705" + }, + { + "_tag": "ByteArray", + "bytearray": "8b209b6186eabb136d9e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11712351855044729560" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7bfb" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17387863362079157161" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0b54" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf1b2b54d1bde99fd07b4414bb9a0f453d9aeae3ee4392b9b54c84cba58942d547e54ebb4c9b1b668dbeacfd149abc41a14436e7e6a5ffd87c9f9f4c5d266617407728f3154d27054a8b209b6186eabb136d9e1ba28aa1f51c541ad8427bfbffd8669f1bf14e199a5bc1eba99f420b54ffffff1206a0ff", + "cborBytes": [ + 159, 191, 27, 43, 84, 209, 189, 233, 159, 208, 123, 68, 20, 187, 154, 15, 69, 61, 154, 234, 227, 238, 67, 146, + 185, 181, 76, 132, 203, 165, 137, 66, 213, 71, 229, 78, 187, 76, 155, 27, 102, 141, 190, 172, 253, 20, 154, 188, + 65, 161, 68, 54, 231, 230, 165, 255, 216, 124, 159, 159, 76, 93, 38, 102, 23, 64, 119, 40, 243, 21, 77, 39, 5, 74, + 139, 32, 155, 97, 134, 234, 187, 19, 109, 158, 27, 162, 138, 161, 245, 28, 84, 26, 216, 66, 123, 251, 255, 216, + 102, 159, 27, 241, 78, 25, 154, 91, 193, 235, 169, 159, 66, 11, 84, 255, 255, 255, 18, 6, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2744, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bd4c837051bc1b5b65" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4504986196406858133" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e84627a65c86c87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f583135d5059643" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cd7ba0555" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7592293637001074963" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b8df36ea56cecb507" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bc3c8c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b597a144dd38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94f6f124d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bba58ef36fa1ffa9a12eab12" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ca0ae5eaa3b" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f49bd4c837051bc1b5b65d8669f1b3e84ed13c2de71959fbf483e84627a65c86c87487f583135d5059643458cd7ba05551b695d3ed64fe85913499b8df36ea56cecb507443bc3c8c046b597a144dd384594f6f124d64cbba58ef36fa1ffa9a12eab12463ca0ae5eaa3bff80ffffff", + "cborBytes": [ + 159, 73, 189, 76, 131, 112, 81, 188, 27, 91, 101, 216, 102, 159, 27, 62, 132, 237, 19, 194, 222, 113, 149, 159, + 191, 72, 62, 132, 98, 122, 101, 200, 108, 135, 72, 127, 88, 49, 53, 213, 5, 150, 67, 69, 140, 215, 186, 5, 85, 27, + 105, 93, 62, 214, 79, 232, 89, 19, 73, 155, 141, 243, 110, 165, 108, 236, 181, 7, 68, 59, 195, 200, 192, 70, 181, + 151, 161, 68, 221, 56, 69, 148, 246, 241, 36, 214, 76, 187, 165, 142, 243, 111, 161, 255, 169, 161, 46, 171, 18, + 70, 60, 160, 174, 94, 170, 59, 255, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2745, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6405559566981998328" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11918387999478679515" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16032550217841863879" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12558032853293863194" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3899700648486752923" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3388261883459881260" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6185886880041965117" + } + } + ] + } + ] + }, + "cborHex": "9f1b58e51e7cf19126f81ba5669ebd3c3487dbd8669f1bde7f0f7aa2136cc79fd8669f1bae4718584244111a9f1b361e85140b69d29bffff1b2f05863b319f492c1b55d8af57d9a6963dffffff", + "cborBytes": [ + 159, 27, 88, 229, 30, 124, 241, 145, 38, 248, 27, 165, 102, 158, 189, 60, 52, 135, 219, 216, 102, 159, 27, 222, + 127, 15, 122, 162, 19, 108, 199, 159, 216, 102, 159, 27, 174, 71, 24, 88, 66, 68, 17, 26, 159, 27, 54, 30, 133, + 20, 11, 105, 210, 155, 255, 255, 27, 47, 5, 134, 59, 49, 159, 73, 44, 27, 85, 216, 175, 87, 217, 166, 150, 61, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2746, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1508009272261842838" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d53e9f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6449910407173247863" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b9d2b43a6ac9361" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10758066945716966033" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9711074691711463669" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15330417639630733400" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8436250494431712079" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16036392109715129162" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "111467381302839388" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16754213689287563417" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12652413366175788160" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12639391321975657806" + } + } + ] + }, + "cborHex": "9fbf1b14ed86717f29979643d53e9f1b5982af579ca81377486b9d2b43a6ac93611b954c54e37154d2911b86c4aafb0abf70f51bd4c0959e849280581b75139520a4d0d34f1bde8cb5a8ca72834a1b018c02fe2299485c1be882ec9530f8d8991baf9666ebd24fec80ff1baf682370e383954eff", + "cborBytes": [ + 159, 191, 27, 20, 237, 134, 113, 127, 41, 151, 150, 67, 213, 62, 159, 27, 89, 130, 175, 87, 156, 168, 19, 119, 72, + 107, 157, 43, 67, 166, 172, 147, 97, 27, 149, 76, 84, 227, 113, 84, 210, 145, 27, 134, 196, 170, 251, 10, 191, + 112, 245, 27, 212, 192, 149, 158, 132, 146, 128, 88, 27, 117, 19, 149, 32, 164, 208, 211, 79, 27, 222, 140, 181, + 168, 202, 114, 131, 74, 27, 1, 140, 2, 254, 34, 153, 72, 92, 27, 232, 130, 236, 149, 48, 248, 216, 153, 27, 175, + 150, 102, 235, 210, 79, 236, 128, 255, 27, 175, 104, 35, 112, 227, 131, 149, 78, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2747, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "00" + } + ] + }, + "cborHex": "9f4100ff", + "cborBytes": [159, 65, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2748, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7696531089958604982" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b15f22f7f1a4bc2347" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1871309458040265924" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee63b885d1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3163726185947419590" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3269347220062429184" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8176693321778577966" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11193428495699891796" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c8a29a9c7986b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14067260120246296967" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4753865772812619833" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17815884894998908875" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2334f4097baee01f" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3160088865578334841" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16226137530800789892" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb7b486d7cd1a0d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10834064914859586637" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85d8b0a231eb8a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c6b630" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15145433810665680107" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13706902510559739274" + } + } + ] + }, + "cborHex": "9fd8669f1b6acf923f93bb90b69f49b15f22f7f1a4bc2347bf1b19f83a0997519cc445ee63b885d11b2be7d03437ff53c61b2d5f0df9933b60001b7179734111ebc22e41d71b9b570be958ed5654472c8a29a9c7986b1bc338f28c3e4ca1871b41f91fbbba6250391bf73ebceb5da84fcb482334f4097baee01fffffff1b2bdae4149376ba799fd8669f1be12ed21d5003d9849f48fb7b486d7cd1a0d31b965a54a383ba744d4785d8b0a231eb8affff43c6b6301bd22f63ce8deb2cebff1bbe38b33608d2bd8aff", + "cborBytes": [ + 159, 216, 102, 159, 27, 106, 207, 146, 63, 147, 187, 144, 182, 159, 73, 177, 95, 34, 247, 241, 164, 188, 35, 71, + 191, 27, 25, 248, 58, 9, 151, 81, 156, 196, 69, 238, 99, 184, 133, 209, 27, 43, 231, 208, 52, 55, 255, 83, 198, + 27, 45, 95, 13, 249, 147, 59, 96, 0, 27, 113, 121, 115, 65, 17, 235, 194, 46, 65, 215, 27, 155, 87, 11, 233, 88, + 237, 86, 84, 71, 44, 138, 41, 169, 199, 152, 107, 27, 195, 56, 242, 140, 62, 76, 161, 135, 27, 65, 249, 31, 187, + 186, 98, 80, 57, 27, 247, 62, 188, 235, 93, 168, 79, 203, 72, 35, 52, 244, 9, 123, 174, 224, 31, 255, 255, 255, + 27, 43, 218, 228, 20, 147, 118, 186, 121, 159, 216, 102, 159, 27, 225, 46, 210, 29, 80, 3, 217, 132, 159, 72, 251, + 123, 72, 109, 124, 209, 160, 211, 27, 150, 90, 84, 163, 131, 186, 116, 77, 71, 133, 216, 176, 162, 49, 235, 138, + 255, 255, 67, 198, 182, 48, 27, 210, 47, 99, 206, 141, 235, 44, 235, 255, 27, 190, 56, 179, 54, 8, 210, 189, 138, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2749, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15655147431101829691" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "937072253139929654" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9743773207902468166" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5506897534987005083" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9129853131036608291" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1f38d472d4953" + }, + { + "_tag": "ByteArray", + "bytearray": "1e" + }, + { + "_tag": "ByteArray", + "bytearray": "c0689b3ca1" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7156788582182243637" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7482972587744752149" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10091664509200539470" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63ada0d726fc945b7409" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10145867449569357170" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8442368401655812300" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17933652878218679900" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4ca01cf2e63ec47850d744a" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bd94241a4e131923b9f410b9f1b0d01263fd947ca361b8738d61b9cfeb846ffd8669f1b4c6c6e219b5fec9b9f1b7eb3c10cf6ecc72347c1f38d472d4953411e45c0689b3ca1ffffffffbf1b6352054c158b4d351b67d8dbec0c82f2151b8c0ccb6737509f4e4a63ada0d726fc945b74091b8ccd5cb0b5c7ad721b75295154ebad50cc1bf8e12246b362d65c4ca4ca01cf2e63ec47850d744affff", + "cborBytes": [ + 159, 216, 102, 159, 27, 217, 66, 65, 164, 225, 49, 146, 59, 159, 65, 11, 159, 27, 13, 1, 38, 63, 217, 71, 202, 54, + 27, 135, 56, 214, 27, 156, 254, 184, 70, 255, 216, 102, 159, 27, 76, 108, 110, 33, 155, 95, 236, 155, 159, 27, + 126, 179, 193, 12, 246, 236, 199, 35, 71, 193, 243, 141, 71, 45, 73, 83, 65, 30, 69, 192, 104, 155, 60, 161, 255, + 255, 255, 255, 191, 27, 99, 82, 5, 76, 21, 139, 77, 53, 27, 103, 216, 219, 236, 12, 130, 242, 21, 27, 140, 12, + 203, 103, 55, 80, 159, 78, 74, 99, 173, 160, 215, 38, 252, 148, 91, 116, 9, 27, 140, 205, 92, 176, 181, 199, 173, + 114, 27, 117, 41, 81, 84, 235, 173, 80, 204, 27, 248, 225, 34, 70, 179, 98, 214, 92, 76, 164, 202, 1, 207, 46, 99, + 236, 71, 133, 13, 116, 74, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2750, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13868185859556552628" + } + }, + { + "_tag": "ByteArray", + "bytearray": "48c2f3fef9fa" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14621029234515087151" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11968760021195701510" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17807695504101048357" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1bc075b18ffdf6afb44648c2f3fef9fad8669f1bcae8549f8ddf8f2f9f1ba61993d379443d061bf721a4b636438025ffffffff", + "cborBytes": [ + 159, 159, 27, 192, 117, 177, 143, 253, 246, 175, 180, 70, 72, 194, 243, 254, 249, 250, 216, 102, 159, 27, 202, + 232, 84, 159, 141, 223, 143, 47, 159, 27, 166, 25, 147, 211, 121, 68, 61, 6, 27, 247, 33, 164, 182, 54, 67, 128, + 37, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2751, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18037823510478675871" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4206916102985141345" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "234158506665160034" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ac839516f2" + }, + { + "_tag": "ByteArray", + "bytearray": "4b8ead58a025840626" + }, + { + "_tag": "ByteArray", + "bytearray": "8dfd12d6737713" + }, + { + "_tag": "ByteArray", + "bytearray": "d3ff1c89f293" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "714abb01" + }, + { + "_tag": "ByteArray", + "bytearray": "785d" + }, + { + "_tag": "ByteArray", + "bytearray": "3ba1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1490958175392974259" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "598572aae988a0d750d7" + } + ] + } + ] + }, + "cborHex": "9f1bfa5338ea0f455f9fd8669f1b3a61f7e80e4ccc619fd8669f1b033fe5ebd2e9ad629f45ac839516f2494b8ead58a025840626478dfd12d673771346d3ff1c89f293ffff9f44714abb0142785d423ba11b14b0f28fa34345b3ff4a598572aae988a0d750d7ffffff", + "cborBytes": [ + 159, 27, 250, 83, 56, 234, 15, 69, 95, 159, 216, 102, 159, 27, 58, 97, 247, 232, 14, 76, 204, 97, 159, 216, 102, + 159, 27, 3, 63, 229, 235, 210, 233, 173, 98, 159, 69, 172, 131, 149, 22, 242, 73, 75, 142, 173, 88, 160, 37, 132, + 6, 38, 71, 141, 253, 18, 214, 115, 119, 19, 70, 211, 255, 28, 137, 242, 147, 255, 255, 159, 68, 113, 74, 187, 1, + 66, 120, 93, 66, 59, 161, 27, 20, 176, 242, 143, 163, 67, 69, 179, 255, 74, 89, 133, 114, 170, 233, 136, 160, 215, + 80, 215, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2752, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11882669042926744138" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11623796683970843897" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa9323" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11474219629937864742" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4b42d0e0dbe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18829dd5" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4554506251363259235" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c6bd7add71c53df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7242058dbb5d08336d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5d70748733d8555" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc51c533" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbf350" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6799854118792923058" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "87ec21f076d81b94" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10887761604865723417" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d0d142fbd6e89" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2213414114187162324" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bfad4df67dc1f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13681297784094326152" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7165dd6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1f6ebbeb6df4b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f50a8e2e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8548809851494934577" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10758400496121654457" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba4e7b889972df24a9f1ba150057fa17214f9bf43aa93231b9f3c9df5dd42b02646e4b42d0e0dbe4418829dd5ffbf1b3f34db4e07cd9363481c6bd7add71c53df497242058dbb5d08336d41dd48e5d70748733d855544dc51c53343fbf3501b5e5def4b3b2107b2ffffff4887ec21f076d81b94d8669f1b9719197e69288c199fbf470d0d142fbd6e891b1eb7a068e0f632d4472bfad4df67dc1f1bbdddbbd91747fd8844e7165dd647c1f6ebbeb6df4b44f50a8e2e1b76a3794432b72831ff9f1b954d844032b7acb9ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 164, 231, 184, 137, 151, 45, 242, 74, 159, 27, 161, 80, 5, 127, 161, 114, 20, 249, 191, + 67, 170, 147, 35, 27, 159, 60, 157, 245, 221, 66, 176, 38, 70, 228, 180, 45, 14, 13, 190, 68, 24, 130, 157, 213, + 255, 191, 27, 63, 52, 219, 78, 7, 205, 147, 99, 72, 28, 107, 215, 173, 215, 28, 83, 223, 73, 114, 66, 5, 141, 187, + 93, 8, 51, 109, 65, 221, 72, 229, 215, 7, 72, 115, 61, 133, 85, 68, 220, 81, 197, 51, 67, 251, 243, 80, 27, 94, + 93, 239, 75, 59, 33, 7, 178, 255, 255, 255, 72, 135, 236, 33, 240, 118, 216, 27, 148, 216, 102, 159, 27, 151, 25, + 25, 126, 105, 40, 140, 25, 159, 191, 71, 13, 13, 20, 47, 189, 110, 137, 27, 30, 183, 160, 104, 224, 246, 50, 212, + 71, 43, 250, 212, 223, 103, 220, 31, 27, 189, 221, 187, 217, 23, 71, 253, 136, 68, 231, 22, 93, 214, 71, 193, 246, + 235, 190, 182, 223, 75, 68, 245, 10, 142, 46, 27, 118, 163, 121, 68, 50, 183, 40, 49, 255, 159, 27, 149, 77, 132, + 64, 50, 183, 172, 185, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2753, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03ff05" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10861516156406531006" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17555457670008889888" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "79" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1032d5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4135065068049888147" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8d748ae6c20de9f69b834" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9ca59a385bd16b99bb9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6839789bb7" + } + } + ] + } + ] + }, + "cborHex": "9f004303ff05d8669f1b96bbdb65c0c703be9fa0ffff1bf3a183bcf2496220bf41791bfffffffffffffff544a1032d5c1b3962b3c5583d73934bb8d748ae6c20de9f69b83441e04ad9ca59a385bd16b99bb9456839789bb7ffff", + "cborBytes": [ + 159, 0, 67, 3, 255, 5, 216, 102, 159, 27, 150, 187, 219, 101, 192, 199, 3, 190, 159, 160, 255, 255, 27, 243, 161, + 131, 188, 242, 73, 98, 32, 191, 65, 121, 27, 255, 255, 255, 255, 255, 255, 255, 245, 68, 161, 3, 45, 92, 27, 57, + 98, 179, 197, 88, 61, 115, 147, 75, 184, 215, 72, 174, 108, 32, 222, 159, 105, 184, 52, 65, 224, 74, 217, 202, 89, + 163, 133, 189, 22, 185, 155, 185, 69, 104, 57, 120, 155, 183, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2754, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dccbd05c6a2747c0839517f7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10795095678494782224" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5baa" + } + ] + }, + "cborHex": "9f4cdccbd05c6a2747c0839517f71b95cfe25321093310425baaff", + "cborBytes": [ + 159, 76, 220, 203, 208, 92, 106, 39, 71, 192, 131, 149, 23, 247, 27, 149, 207, 226, 83, 33, 9, 51, 16, 66, 91, + 170, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2755, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1829862434794185867" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "687e61ae326b49390f6164" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3001877276562695760" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37035cdb2d69c2355f04" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4304892772513370764" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efe99063366b16" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9486910753161558683" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5033183050350590828" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12461452864568171756" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6740626635583326057" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15604015893046213626" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15649340273399327205" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "44ffe07f22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfcbc0fb3a18f2c6125aeb97" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aaae7ce990b066d83e7b" + } + ] + }, + "cborHex": "9fbf1b1964fa307dbd248b4b687e61ae326b49390f61641b29a8cf7a78d626504a37035cdb2d69c2355f041b3bbe0d2b15ce528c47efe99063366b161b83a84710f2073a9b1b45d975513da9fb6c1baceff95b51dc1cec1b5d8b8436317b07691bd88c99c7f691bbfa1bd92da0109d2e69e5ff80bf4544ffe07f224cdfcbc0fb3a18f2c6125aeb97ff4aaaae7ce990b066d83e7bff", + "cborBytes": [ + 159, 191, 27, 25, 100, 250, 48, 125, 189, 36, 139, 75, 104, 126, 97, 174, 50, 107, 73, 57, 15, 97, 100, 27, 41, + 168, 207, 122, 120, 214, 38, 80, 74, 55, 3, 92, 219, 45, 105, 194, 53, 95, 4, 27, 59, 190, 13, 43, 21, 206, 82, + 140, 71, 239, 233, 144, 99, 54, 107, 22, 27, 131, 168, 71, 16, 242, 7, 58, 155, 27, 69, 217, 117, 81, 61, 169, + 251, 108, 27, 172, 239, 249, 91, 81, 220, 28, 236, 27, 93, 139, 132, 54, 49, 123, 7, 105, 27, 216, 140, 153, 199, + 246, 145, 187, 250, 27, 217, 45, 160, 16, 157, 46, 105, 229, 255, 128, 191, 69, 68, 255, 224, 127, 34, 76, 223, + 203, 192, 251, 58, 24, 242, 198, 18, 90, 235, 151, 255, 74, 170, 174, 124, 233, 144, 176, 102, 216, 62, 123, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2756, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18390977821133053147" + } + }, + { + "_tag": "ByteArray", + "bytearray": "330812f2b172" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15593113541137989938" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3996503356646748043" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6444689090224282922" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2334299884759133629" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1262341260635351298" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e33de6c11c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10730463597770868908" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14170638496718624078" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4365613716706046597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1013299263210012653" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4494707613672874392" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "086afd7edac6eb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4572103445117427684" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de5ca51fcabc7f106fec96ab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16759563442666995438" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "208398dcd1186cf03d5c4f05" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15ce0116e20c0ae11cdc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16fc4a7b99a1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "737379" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11006853137996976482" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a22d92" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b3ce67693c2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa2da33538cf5863" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab4f5764" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f849d466181bdf3978cd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9076" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6158887475242478039" + } + } + ] + }, + "cborHex": "9f9f9f1bff39e0e384b91cdb46330812f2b1721bd865de2659dd01321b37766ea0e495ef8b1b5970229506a75d2affd8669f1b20651960a64dadbd9f1b1184bcb0397d290245e33de6c11cffff1b94ea43ca2c6488ac80ff9fbf41501bc4a838a22d63954effbf1b3c95c68b9ad632851b0e0ff64faacc3fed1b3e6068c2ba37219847086afd7edac6eb1b3f735fdbfa905fe44cde5ca51fcabc7f106fec96ab1be895ee27b6c9feee4c208398dcd1186cf03d5c4f05ffbf4a15ce0116e20c0ae11cdc4616fc4a7b99a1437373791b98c0329cb934116243a22d92465b3ce67693c248aa2da33538cf586344ab4f57644af849d466181bdf3978cd41eaff429076ff1b5578c3870d6e29d7ff", + "cborBytes": [ + 159, 159, 159, 27, 255, 57, 224, 227, 132, 185, 28, 219, 70, 51, 8, 18, 242, 177, 114, 27, 216, 101, 222, 38, 89, + 221, 1, 50, 27, 55, 118, 110, 160, 228, 149, 239, 139, 27, 89, 112, 34, 149, 6, 167, 93, 42, 255, 216, 102, 159, + 27, 32, 101, 25, 96, 166, 77, 173, 189, 159, 27, 17, 132, 188, 176, 57, 125, 41, 2, 69, 227, 61, 230, 193, 28, + 255, 255, 27, 148, 234, 67, 202, 44, 100, 136, 172, 128, 255, 159, 191, 65, 80, 27, 196, 168, 56, 162, 45, 99, + 149, 78, 255, 191, 27, 60, 149, 198, 139, 154, 214, 50, 133, 27, 14, 15, 246, 79, 170, 204, 63, 237, 27, 62, 96, + 104, 194, 186, 55, 33, 152, 71, 8, 106, 253, 126, 218, 198, 235, 27, 63, 115, 95, 219, 250, 144, 95, 228, 76, 222, + 92, 165, 31, 202, 188, 127, 16, 111, 236, 150, 171, 27, 232, 149, 238, 39, 182, 201, 254, 238, 76, 32, 131, 152, + 220, 209, 24, 108, 240, 61, 92, 79, 5, 255, 191, 74, 21, 206, 1, 22, 226, 12, 10, 225, 28, 220, 70, 22, 252, 74, + 123, 153, 161, 67, 115, 115, 121, 27, 152, 192, 50, 156, 185, 52, 17, 98, 67, 162, 45, 146, 70, 91, 60, 230, 118, + 147, 194, 72, 170, 45, 163, 53, 56, 207, 88, 99, 68, 171, 79, 87, 100, 74, 248, 73, 212, 102, 24, 27, 223, 57, + 120, 205, 65, 234, 255, 66, 144, 118, 255, 27, 85, 120, 195, 135, 13, 110, 41, 215, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2757, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2930384409188109295" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11530544426704880144" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13656980814937344607" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8111476351054502435" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8873758500099552463" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3385104677428226877" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8884402157387460567" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2999290861888603191" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12847939142141401590" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86f7991225c5f18f64fae0" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6114112037910704837" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62f5066bd8e0c9116c7c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1281056536990117346" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8444512504395985467" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "482584819402890420" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc693613a875" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c2ec3f770fe2" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17061014534283946718" + } + } + ] + }, + "cborHex": "9f9f9f1b28aad11825000bef1ba004b9108c9ac2101bbd8757b182aa4a5fffffd8669f1b7091c0c3cc95da2380ff9fbf1b7b25ec57350974cf1b2efa4ec4e19f6b3d1b7b4bbcb0c8cb2fd71b299f9f25e0f204371bb24d0c94172cd9f64b86f7991225c5f18f64fae0ff1b54d9b081289b72c54a62f5066bd8e0c9116c7cff9fd8669f1b11c73a22107cede29f1b7530ef61bdddf23b1b06b27c561e815cb446cc693613a875ffff46c2ec3f770fe2ff1becc4e65367c56adeff", + "cborBytes": [ + 159, 159, 159, 27, 40, 170, 209, 24, 37, 0, 11, 239, 27, 160, 4, 185, 16, 140, 154, 194, 16, 27, 189, 135, 87, + 177, 130, 170, 74, 95, 255, 255, 216, 102, 159, 27, 112, 145, 192, 195, 204, 149, 218, 35, 128, 255, 159, 191, 27, + 123, 37, 236, 87, 53, 9, 116, 207, 27, 46, 250, 78, 196, 225, 159, 107, 61, 27, 123, 75, 188, 176, 200, 203, 47, + 215, 27, 41, 159, 159, 37, 224, 242, 4, 55, 27, 178, 77, 12, 148, 23, 44, 217, 246, 75, 134, 247, 153, 18, 37, + 197, 241, 143, 100, 250, 224, 255, 27, 84, 217, 176, 129, 40, 155, 114, 197, 74, 98, 245, 6, 107, 216, 224, 201, + 17, 108, 124, 255, 159, 216, 102, 159, 27, 17, 199, 58, 34, 16, 124, 237, 226, 159, 27, 117, 48, 239, 97, 189, + 221, 242, 59, 27, 6, 178, 124, 86, 30, 129, 92, 180, 70, 204, 105, 54, 19, 168, 117, 255, 255, 70, 194, 236, 63, + 119, 15, 226, 255, 27, 236, 196, 230, 83, 103, 197, 106, 222, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2758, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1156543561540694806" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12631233350172345169" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1b100cde3dd8e5f316d8669f1baf4b27cf1017035180ffff", + "cborBytes": [ + 159, 27, 16, 12, 222, 61, 216, 229, 243, 22, 216, 102, 159, 27, 175, 75, 39, 207, 16, 23, 3, 81, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2759, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1d06" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "375743166806578713" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12701308407864838736" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "726acf4e08f807b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5008402594115238244" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13280354809745298611" + } + } + ] + }, + "cborHex": "9f421d06bf1b0536e86b604956191bb0441cb3d9774a5048726acf4e08f807b81b45816b9faa623964ff1bb84d4c564e04d4b3ff", + "cborBytes": [ + 159, 66, 29, 6, 191, 27, 5, 54, 232, 107, 96, 73, 86, 25, 27, 176, 68, 28, 179, 217, 119, 74, 80, 72, 114, 106, + 207, 78, 8, 248, 7, 184, 27, 69, 129, 107, 159, 170, 98, 57, 100, 255, 27, 184, 77, 76, 86, 78, 4, 212, 179, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2760, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10848937781370285526" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cc99a0ddf5f0" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8400587597250198911" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42b595ebf9ea3e3be9adf1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10046346619248300216" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16515761583791662775" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17591341340718048125" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18162151926388082971" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15465393124167600202" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4871863099445885541" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8671189061331943588" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11090296614842884436" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9224d70f4d5392761" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f8e7b27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16189978030084920302" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "38adad4faeb4b9f0543fee" + } + ] + }, + "cborHex": "9fd8669f1b968f2b6e98e3edd69f46cc99a0ddf5f0ffffbf1b7494e1e956a67d7f4b42b595ebf9ea3e3be9adf11b8b6bcb05babdd0b81be533c5a7fcf1e6b71bf420ffbf1824a37d1bfc0cecf32909c91bffd8669f1bd6a01d1b75c7484a9fbf1b439c55ad3cce3a651b7856408264f180a41b99e8a603256d615449f9224d70f4d5392761440f8e7b271be0ae5b3d7c9713eeffffff4b38adad4faeb4b9f0543feeff", + "cborBytes": [ + 159, 216, 102, 159, 27, 150, 143, 43, 110, 152, 227, 237, 214, 159, 70, 204, 153, 160, 221, 245, 240, 255, 255, + 191, 27, 116, 148, 225, 233, 86, 166, 125, 127, 75, 66, 181, 149, 235, 249, 234, 62, 59, 233, 173, 241, 27, 139, + 107, 203, 5, 186, 189, 208, 184, 27, 229, 51, 197, 167, 252, 241, 230, 183, 27, 244, 32, 255, 191, 24, 36, 163, + 125, 27, 252, 12, 236, 243, 41, 9, 201, 27, 255, 216, 102, 159, 27, 214, 160, 29, 27, 117, 199, 72, 74, 159, 191, + 27, 67, 156, 85, 173, 60, 206, 58, 101, 27, 120, 86, 64, 130, 100, 241, 128, 164, 27, 153, 232, 166, 3, 37, 109, + 97, 84, 73, 249, 34, 77, 112, 244, 213, 57, 39, 97, 68, 15, 142, 123, 39, 27, 224, 174, 91, 61, 124, 151, 19, 238, + 255, 255, 255, 75, 56, 173, 173, 79, 174, 180, 185, 240, 84, 63, 238, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2761, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3970802819453323148" + } + } + ] + }, + "cborHex": "9f1b371b202046a2878cff", + "cborBytes": [159, 27, 55, 27, 32, 32, 70, 162, 135, 140, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2762, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8299911196237950237" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9712307299880193668" + } + }, + { + "_tag": "ByteArray", + "bytearray": "954f26cf87a7" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16477683842975551497" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "cfe7553053" + }, + { + "_tag": "ByteArray", + "bytearray": "a7ae5a75ff5b60f5f9cc3fdc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5310791515892014908" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5d06596f72a4bf4fd79ed69" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0f5bd405395d02a19a" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b732f3542170ced1d9f9f1b86c90c07fecace8446954f26cf87a7ff1be4ac7e2715c05009ffffd905059fa045cfe75530534ca7ae5a75ff5b60f5f9cc3fdcbf1b49b3b8bef4e6df3c4cb5d06596f72a4bf4fd79ed69ff490f5bd405395d02a19affff", + "cborBytes": [ + 159, 216, 102, 159, 27, 115, 47, 53, 66, 23, 12, 237, 29, 159, 159, 27, 134, 201, 12, 7, 254, 202, 206, 132, 70, + 149, 79, 38, 207, 135, 167, 255, 27, 228, 172, 126, 39, 21, 192, 80, 9, 255, 255, 217, 5, 5, 159, 160, 69, 207, + 231, 85, 48, 83, 76, 167, 174, 90, 117, 255, 91, 96, 245, 249, 204, 63, 220, 191, 27, 73, 179, 184, 190, 244, 230, + 223, 60, 76, 181, 208, 101, 150, 247, 42, 75, 244, 253, 121, 237, 105, 255, 73, 15, 91, 212, 5, 57, 93, 2, 161, + 154, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2763, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6380559810410768747" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4758494995028337808" + } + }, + { + "_tag": "ByteArray", + "bytearray": "370460648a177c73" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b588c4d5787aae96b9f1b420991fc8423649048370460648a177c73ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 88, 140, 77, 87, 135, 170, 233, 107, 159, 27, 66, 9, 145, 252, 132, 35, 100, 144, 72, 55, + 4, 96, 100, 138, 23, 124, 115, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2764, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01030006fd0501f903" + } + ] + }, + "cborHex": "9f4901030006fd0501f903ff", + "cborBytes": [159, 73, 1, 3, 0, 6, 253, 5, 1, 249, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2765, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6575666169060641130" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4ac3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9915713599064371129" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6f1e" + } + ] + }, + "cborHex": "9f1b5b41758a9869c96a9f424ac31b899bb0fb8ebdefb9ff426f1eff", + "cborBytes": [ + 159, 27, 91, 65, 117, 138, 152, 105, 201, 106, 159, 66, 74, 195, 27, 137, 155, 176, 251, 142, 189, 239, 185, 255, + 66, 111, 30, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2766, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "613850475963251622" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13012689730851049483" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5393721839678179423" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11009785460765629385" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6065946783376971112" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1753147584407010504" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12869733115451599286" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88fe" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12373884671839493497" + } + } + ] + }, + "cborHex": "9fbf1b0884d5c16cfe7ba61bb4965c5db3c0100b1b4ada596f9f48c85f1b98ca9d8b52321bc91b542e9275f19b95681b18546e707f69fcc81bb29a7a14ec92e9b64288feff1babb8de8ca4a4dd79ff", + "cborBytes": [ + 159, 191, 27, 8, 132, 213, 193, 108, 254, 123, 166, 27, 180, 150, 92, 93, 179, 192, 16, 11, 27, 74, 218, 89, 111, + 159, 72, 200, 95, 27, 152, 202, 157, 139, 82, 50, 27, 201, 27, 84, 46, 146, 117, 241, 155, 149, 104, 27, 24, 84, + 110, 112, 127, 105, 252, 200, 27, 178, 154, 122, 20, 236, 146, 233, 182, 66, 136, 254, 255, 27, 171, 184, 222, + 140, 164, 164, 221, 121, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2767, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2657786000383013737" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0302058f00" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0377f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b24e25a4929d5f369450302058f00430377f91bffffffffffffffeeffff", + "cborBytes": [ + 159, 191, 27, 36, 226, 90, 73, 41, 213, 243, 105, 69, 3, 2, 5, 143, 0, 67, 3, 119, 249, 27, 255, 255, 255, 255, + 255, 255, 255, 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2768, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e9c61b1e2dd2229c6cb242" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5da680" + } + ] + } + ] + }, + "cborHex": "9f4be9c61b1e2dd2229c6cb242d905049f435da680ffff", + "cborBytes": [ + 159, 75, 233, 198, 27, 30, 45, 210, 34, 156, 108, 178, 66, 217, 5, 4, 159, 67, 93, 166, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2769, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2380752284296682743" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9201069173651526321" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15308754783168486778" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0d25e5c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a5c06885f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "023db394" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f6a20d83de2ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cd07614b2c2cd89" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cfb48cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1318816486953284737" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95d095dcb160f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12105267210097906569" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8208167141829234783" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2960480590051769944" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1306998912563394323" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1787832269958396095" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5546" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a185432" + }, + { + "_tag": "ByteArray", + "bytearray": "3f7762bf26" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3500949370418468820" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5401196673343742591" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0807cdc911" + }, + { + "_tag": "ByteArray", + "bytearray": "68f4" + }, + { + "_tag": "ByteArray", + "bytearray": "b14ecb20d671a6486944b4" + }, + { + "_tag": "ByteArray", + "bytearray": "514c04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15992278097985963776" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14309974305009648787" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "14acd1d0f0d2d571" + } + ] + } + ] + }, + "cborHex": "9f1b210a2196bbb41cf7d8669f1b7fb0c3aa014bd2b19fd8669f1bd4739f5db451dd7a9f44c0d25e5cffffbf451a5c06885f44023db394472f6a20d83de2ae482cd07614b2c2cd89448cfb48cf1b124d609b84c774814795d095dcb160f41ba7fe8c642111d389ffd8669f1b71e94486d9c3d05f9f1b2915bd694e797e581b122364961129b7131b18cfa7fa28d9b8bf425546ffff9f449a185432453f7762bf26ff1b3095dee7506b97d4ffffa09fd8669f1b4af4e7c1f4ace27f9f450807cdc9114268f44bb14ecb20d671a6486944b443514c041bddeffc330bb68700ffff1bc6973dd01b114493804814acd1d0f0d2d571ffff", + "cborBytes": [ + 159, 27, 33, 10, 33, 150, 187, 180, 28, 247, 216, 102, 159, 27, 127, 176, 195, 170, 1, 75, 210, 177, 159, 216, + 102, 159, 27, 212, 115, 159, 93, 180, 81, 221, 122, 159, 68, 192, 210, 94, 92, 255, 255, 191, 69, 26, 92, 6, 136, + 95, 68, 2, 61, 179, 148, 71, 47, 106, 32, 216, 61, 226, 174, 72, 44, 208, 118, 20, 178, 194, 205, 137, 68, 140, + 251, 72, 207, 27, 18, 77, 96, 155, 132, 199, 116, 129, 71, 149, 208, 149, 220, 177, 96, 244, 27, 167, 254, 140, + 100, 33, 17, 211, 137, 255, 216, 102, 159, 27, 113, 233, 68, 134, 217, 195, 208, 95, 159, 27, 41, 21, 189, 105, + 78, 121, 126, 88, 27, 18, 35, 100, 150, 17, 41, 183, 19, 27, 24, 207, 167, 250, 40, 217, 184, 191, 66, 85, 70, + 255, 255, 159, 68, 154, 24, 84, 50, 69, 63, 119, 98, 191, 38, 255, 27, 48, 149, 222, 231, 80, 107, 151, 212, 255, + 255, 160, 159, 216, 102, 159, 27, 74, 244, 231, 193, 244, 172, 226, 127, 159, 69, 8, 7, 205, 201, 17, 66, 104, + 244, 75, 177, 78, 203, 32, 214, 113, 166, 72, 105, 68, 180, 67, 81, 76, 4, 27, 221, 239, 252, 51, 11, 182, 135, 0, + 255, 255, 27, 198, 151, 61, 208, 27, 17, 68, 147, 128, 72, 20, 172, 209, 208, 240, 210, 213, 113, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2770, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01c3fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbf7be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9fb05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15064367199560418863" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f44" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d967" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90" + } + } + ] + } + ] + }, + "cborHex": "9fbf4301c3fa43fbf7be43f9fb0541f0ff9f80ffbf1bd10f62274fd8462f420f4442d9674190ffff", + "cborBytes": [ + 159, 191, 67, 1, 195, 250, 67, 251, 247, 190, 67, 249, 251, 5, 65, 240, 255, 159, 128, 255, 191, 27, 209, 15, 98, + 39, 79, 216, 70, 47, 66, 15, 68, 66, 217, 103, 65, 144, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2771, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14c62d391d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "312ae8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c04d2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8754388873687794763" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9710e6ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc403967" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1504390310569034982" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a500e816b9" + } + ] + }, + "cborHex": "9fbf4514c62d391d43312ae8434c04d21b797dd64c41cb044b449710e6ea44dc403967ff1b14e0ab045101c4e645a500e816b9ff", + "cborBytes": [ + 159, 191, 69, 20, 198, 45, 57, 29, 67, 49, 42, 232, 67, 76, 4, 210, 27, 121, 125, 214, 76, 65, 203, 4, 75, 68, + 151, 16, 230, 234, 68, 220, 64, 57, 103, 255, 27, 20, 224, 171, 4, 81, 1, 196, 230, 69, 165, 0, 232, 22, 185, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2772, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15627825659428806828" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b9b1e7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a256020cef555d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10515284919232488275" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dc1d29593f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13238351515238227524" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "210c1f67" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f7" + }, + { + "_tag": "ByteArray", + "bytearray": "1af6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12227804901272897682" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6920573600767008997" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8509409553868213043" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8524850866354704983" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12359597654299043739" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3964598354295791137" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1507836314513545117" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7344919051240988626" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5899075453494060612" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9123104364289114398" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17895583990219330997" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bd8e130a331fd20ac9f43b9b1e79f47a256020cef555d1b91edcbebf2dfe35345dc1d29593f1bb7b8129035875e44ff44210c1f679f41f7421af61ba9b1e3c5a326c892ff9f1b600ad105eba9e0e51b76177ee78aa14b33ffffff1b764e5ab24440d2571bab861c95273ee79b80bf1b37051532a8e61e211b14ece923a203979d1b65ee64f64937dfd21b51ddb9deccbd66441b7e9bc7154244c11e1bf859e2d30130d5b5ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 216, 225, 48, 163, 49, 253, 32, 172, 159, 67, 185, 177, 231, 159, 71, 162, 86, 2, 12, 239, + 85, 93, 27, 145, 237, 203, 235, 242, 223, 227, 83, 69, 220, 29, 41, 89, 63, 27, 183, 184, 18, 144, 53, 135, 94, + 68, 255, 68, 33, 12, 31, 103, 159, 65, 247, 66, 26, 246, 27, 169, 177, 227, 197, 163, 38, 200, 146, 255, 159, 27, + 96, 10, 209, 5, 235, 169, 224, 229, 27, 118, 23, 126, 231, 138, 161, 75, 51, 255, 255, 255, 27, 118, 78, 90, 178, + 68, 64, 210, 87, 27, 171, 134, 28, 149, 39, 62, 231, 155, 128, 191, 27, 55, 5, 21, 50, 168, 230, 30, 33, 27, 20, + 236, 233, 35, 162, 3, 151, 157, 27, 101, 238, 100, 246, 73, 55, 223, 210, 27, 81, 221, 185, 222, 204, 189, 102, + 68, 27, 126, 155, 199, 21, 66, 68, 193, 30, 27, 248, 89, 226, 211, 1, 48, 213, 181, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2773, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d437d62738c288" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3f9909cbc7bad97db261a" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12695524623121684728" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1407359095565135130" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c36ebf64a37307ee9cf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4846837501766679303" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93ff46" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5862157481343704466" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7dec77861d97d99ceb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11610023592481994144" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98b9" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11073197345901753978" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6987772637529588502" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0809784c0f9c054e9b67" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6585478813585645134" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9492767763226608622" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4cf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5796f4afe0a14f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13576855200951524922" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf47d437d62738c2884bd3f9909cbc7bad97db261aff1bb02f9061866498f8bf1b1387f1a412932d1a4a6c36ebf64a37307ee9cf1b43436d0738d83b074393ff461b515a912b94e3dd92497dec77861d97d99ceb1ba11f16f1dfcb35a04298b9ff9f1b99abe6515a45b67a1b60f98e30e72543169f4a0809784c0f9c054e9b67ffbf1b5b645216efa21e4e41fe1b83bd15fc5e66c3ee42a4cf475796f4afe0a14f1bbc6aaddf3ba15e3affffff", + "cborBytes": [ + 159, 191, 71, 212, 55, 214, 39, 56, 194, 136, 75, 211, 249, 144, 156, 188, 123, 173, 151, 219, 38, 26, 255, 27, + 176, 47, 144, 97, 134, 100, 152, 248, 191, 27, 19, 135, 241, 164, 18, 147, 45, 26, 74, 108, 54, 235, 246, 74, 55, + 48, 126, 233, 207, 27, 67, 67, 109, 7, 56, 216, 59, 7, 67, 147, 255, 70, 27, 81, 90, 145, 43, 148, 227, 221, 146, + 73, 125, 236, 119, 134, 29, 151, 217, 156, 235, 27, 161, 31, 22, 241, 223, 203, 53, 160, 66, 152, 185, 255, 159, + 27, 153, 171, 230, 81, 90, 69, 182, 122, 27, 96, 249, 142, 48, 231, 37, 67, 22, 159, 74, 8, 9, 120, 76, 15, 156, + 5, 78, 155, 103, 255, 191, 27, 91, 100, 82, 22, 239, 162, 30, 78, 65, 254, 27, 131, 189, 21, 252, 94, 102, 195, + 238, 66, 164, 207, 71, 87, 150, 244, 175, 224, 161, 79, 27, 188, 106, 173, 223, 59, 161, 94, 58, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2774, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f829ee316ee09606f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15736302807162806351" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8571194709468553310" + } + } + ] + }, + "cborHex": "9f49f829ee316ee09606f81bda62940752ebe04f1b76f3002d1694a05eff", + "cborBytes": [ + 159, 73, 248, 41, 238, 49, 110, 224, 150, 6, 248, 27, 218, 98, 148, 7, 82, 235, 224, 79, 27, 118, 243, 0, 45, 22, + 148, 160, 94, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2775, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17349468671663476552" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16984387595459531170" + } + }, + { + "_tag": "ByteArray", + "bytearray": "32" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3125674398451151032" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "853652448553434878" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14187624652993118182" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11841154291232901783" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1679085886245122280" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a66cf2657d4f497d" + } + ] + }, + "cborHex": "9f9fd8669f1bf0c5b1d5e0450f489f1bebb4aa87eaea91a241321b2b60a04e0b36b0b81b0bd8c8610dab7efe1bc4e49173e03abfe6ffffd8669f1ba4543b173b878a9780ff1b174d4fb7a50330e8ff48a66cf2657d4f497dff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 240, 197, 177, 213, 224, 69, 15, 72, 159, 27, 235, 180, 170, 135, 234, 234, 145, 162, + 65, 50, 27, 43, 96, 160, 78, 11, 54, 176, 184, 27, 11, 216, 200, 97, 13, 171, 126, 254, 27, 196, 228, 145, 115, + 224, 58, 191, 230, 255, 255, 216, 102, 159, 27, 164, 84, 59, 23, 59, 135, 138, 151, 128, 255, 27, 23, 77, 79, 183, + 165, 3, 48, 232, 255, 72, 166, 108, 242, 101, 125, 79, 73, 125, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2776, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15070939922710053528" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b7" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6936354573787140720" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15936137761049995047" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5919834027665995466" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "429606591824120346" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3617244879698782984" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6788375317881372006" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1932639372054900203" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15799303705558034660" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3702395810774564333" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15355814619172362319" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12622427633887614110" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bd126bc02ac62c2989f41b7ffffd8669f1b6042e1bc06bd12709f1bdd2888dc4312e727d8669f1b522779aefc4d36ca9f1b05f644eb4ad7ca1a1b3233090d980beb08ffffd8669f1b5e352762a0593d6680ffd8669f1b1ad21d44f2442deb9f1bdb4267030c4ca8e41b33618d5faf1cbded1bd51ad0099c84d84f1baf2bdf0e78f2149effffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 209, 38, 188, 2, 172, 98, 194, 152, 159, 65, 183, 255, 255, 216, 102, 159, 27, 96, 66, + 225, 188, 6, 189, 18, 112, 159, 27, 221, 40, 136, 220, 67, 18, 231, 39, 216, 102, 159, 27, 82, 39, 121, 174, 252, + 77, 54, 202, 159, 27, 5, 246, 68, 235, 74, 215, 202, 26, 27, 50, 51, 9, 13, 152, 11, 235, 8, 255, 255, 216, 102, + 159, 27, 94, 53, 39, 98, 160, 89, 61, 102, 128, 255, 216, 102, 159, 27, 26, 210, 29, 68, 242, 68, 45, 235, 159, + 27, 219, 66, 103, 3, 12, 76, 168, 228, 27, 51, 97, 141, 95, 175, 28, 189, 237, 27, 213, 26, 208, 9, 156, 132, 216, + 79, 27, 175, 43, 223, 14, 120, 242, 20, 158, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2777, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4398364731533428068" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1605338686076331722" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "50022c401a" + }, + { + "_tag": "ByteArray", + "bytearray": "c503cb5dc85f8b29f53c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1592609766818541741" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4321972473960793840" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "31fdd1a159dad8a864730b" + }, + { + "_tag": "ByteArray", + "bytearray": "399f2e9ede748b1d39df779b" + }, + { + "_tag": "ByteArray", + "bytearray": "51e9104b" + }, + { + "_tag": "ByteArray", + "bytearray": "bdfa" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "526001917517973496" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4820370537616463373" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e364d8f303c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39f879" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13983683802750578434" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d001f801" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3d0a216b77a805649fd8669f1b16474f078fc5a6ca9f4550022c401a4ac503cb5dc85f8b29f53cffff1b161a1625190970add8669f1b3bfabb10f77306f09f4b31fdd1a159dad8a864730b4c399f2e9ede748b1d39df779b4451e9104b42bdfaffff1b074cbbf504d547f8ffffbf1b42e56576ec63560d462e364d8f303c4339f8791bc21006547254ef0244d001f8010f41dd1bffffffffffffffebffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 61, 10, 33, 107, 119, 168, 5, 100, 159, 216, 102, 159, 27, 22, 71, 79, 7, 143, 197, 166, + 202, 159, 69, 80, 2, 44, 64, 26, 74, 197, 3, 203, 93, 200, 95, 139, 41, 245, 60, 255, 255, 27, 22, 26, 22, 37, 25, + 9, 112, 173, 216, 102, 159, 27, 59, 250, 187, 16, 247, 115, 6, 240, 159, 75, 49, 253, 209, 161, 89, 218, 216, 168, + 100, 115, 11, 76, 57, 159, 46, 158, 222, 116, 139, 29, 57, 223, 119, 155, 68, 81, 233, 16, 75, 66, 189, 250, 255, + 255, 27, 7, 76, 187, 245, 4, 213, 71, 248, 255, 255, 191, 27, 66, 229, 101, 118, 236, 99, 86, 13, 70, 46, 54, 77, + 143, 48, 60, 67, 57, 248, 121, 27, 194, 16, 6, 84, 114, 84, 239, 2, 68, 208, 1, 248, 1, 15, 65, 221, 27, 255, 255, + 255, 255, 255, 255, 255, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2778, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5423608288194696716" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "765b045e19cb4ca29d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13497692467369454340" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf020102" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18034969016859664192" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6836614278791136853" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + } + ] + }, + "cborHex": "9fd87b8002a0bf1b4b448700aab5960c49765b045e19cb4ca29d1bbb516fc90505ab0444bf0201021bfa4914c479189f401b5ee08876f1b586551bfffffffffffffffa03ffff", + "cborBytes": [ + 159, 216, 123, 128, 2, 160, 191, 27, 75, 68, 135, 0, 170, 181, 150, 12, 73, 118, 91, 4, 94, 25, 203, 76, 162, 157, + 27, 187, 81, 111, 201, 5, 5, 171, 4, 68, 191, 2, 1, 2, 27, 250, 73, 20, 196, 121, 24, 159, 64, 27, 94, 224, 136, + 118, 241, 181, 134, 85, 27, 255, 255, 255, 255, 255, 255, 255, 250, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2779, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17410505503856371367" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6908a7cca2b5f38052" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "301150093c777b6adf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "628ddaf4a156b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70393c99458263a6c4e66b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13091643245243498195" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1bf19e8a82cd57a6a7496908a7cca2b5f3805249301150093c777b6adf47628ddaf4a156b94b70393c99458263a6c4e66b1bb5aedc2b46e17ed3ffff", + "cborBytes": [ + 159, 191, 27, 241, 158, 138, 130, 205, 87, 166, 167, 73, 105, 8, 167, 204, 162, 181, 243, 128, 82, 73, 48, 17, 80, + 9, 60, 119, 123, 106, 223, 71, 98, 141, 218, 244, 161, 86, 185, 75, 112, 57, 60, 153, 69, 130, 99, 166, 196, 230, + 107, 27, 181, 174, 220, 43, 70, 225, 126, 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2780, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14261192149169498546" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3970000827528685931" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c9eca366d37aaf77ee8d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e8c3b5414376932bcd177d8d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12033824587712664571" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9179240417253063700" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3654536693323300028" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3c19" + }, + { + "_tag": "ByteArray", + "bytearray": "3dd1" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9239257033932750734" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3480174925624450810" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12181455733498978108" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7711d1f4f2e8373d54" + }, + { + "_tag": "ByteArray", + "bytearray": "6413d4ec5d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10956776332273140523" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bc5e9eeb35cd669b29f1b371846b7fadaa96b4ac9eca366d37aaf77ee8d9f4ce8c3b5414376932bcd177d8dffd8669f1ba700bbb45ff993fb9f1b7f6336869a46fc141b32b785c2902a7cbc423c19423dd1ffffa0ffffd8669f1b80386f5218173f8e9fd8669f1b304c10a7f6111efa9f1ba90d3973125a1f3c497711d1f4f2e8373d54456413d4ec5d1b980e4a05d08c432bffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 197, 233, 238, 179, 92, 214, 105, 178, 159, 27, 55, 24, 70, 183, 250, 218, 169, 107, 74, + 201, 236, 163, 102, 211, 122, 175, 119, 238, 141, 159, 76, 232, 195, 181, 65, 67, 118, 147, 43, 205, 23, 125, 141, + 255, 216, 102, 159, 27, 167, 0, 187, 180, 95, 249, 147, 251, 159, 27, 127, 99, 54, 134, 154, 70, 252, 20, 27, 50, + 183, 133, 194, 144, 42, 124, 188, 66, 60, 25, 66, 61, 209, 255, 255, 160, 255, 255, 216, 102, 159, 27, 128, 56, + 111, 82, 24, 23, 63, 142, 159, 216, 102, 159, 27, 48, 76, 16, 167, 246, 17, 30, 250, 159, 27, 169, 13, 57, 115, + 18, 90, 31, 60, 73, 119, 17, 209, 244, 242, 232, 55, 61, 84, 69, 100, 19, 212, 236, 93, 27, 152, 14, 74, 5, 208, + 140, 67, 43, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2781, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4dd6880e5cdb992c" + } + ] + }, + "cborHex": "9f484dd6880e5cdb992cff", + "cborBytes": [159, 72, 77, 214, 136, 14, 92, 219, 153, 44, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2782, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d304" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9245302656609217895" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4767831367009202943" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c5d047eed17be455f3ba4d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6afcc17515" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13881116058658919882" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24b81736c27c64344b5bf8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f5f022361346a6e3f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "412d58c8553a961d2ba359aa" + } + } + ] + } + ] + }, + "cborHex": "9f42d3049f1b804de9c8502aed67d8669f1b422abd5e038c72ff80ff4bc5d047eed17be455f3ba4dff456afcc17515d8669f1bc0a3a1829255d5ca80ffbf4b24b81736c27c64344b5bf8498f5f022361346a6e3f4273b14c412d58c8553a961d2ba359aaffff", + "cborBytes": [ + 159, 66, 211, 4, 159, 27, 128, 77, 233, 200, 80, 42, 237, 103, 216, 102, 159, 27, 66, 42, 189, 94, 3, 140, 114, + 255, 128, 255, 75, 197, 208, 71, 238, 209, 123, 228, 85, 243, 186, 77, 255, 69, 106, 252, 193, 117, 21, 216, 102, + 159, 27, 192, 163, 161, 130, 146, 85, 213, 202, 128, 255, 191, 75, 36, 184, 23, 54, 194, 124, 100, 52, 75, 91, + 248, 73, 143, 95, 2, 35, 97, 52, 106, 110, 63, 66, 115, 177, 76, 65, 45, 88, 200, 85, 58, 150, 29, 43, 163, 89, + 170, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2783, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1988259065367208367" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11927288794922474477" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13520212224766204069" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5141617947859052407" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f41e51b1b97b715f0a9a1af9fd905059f131ba5863df72ad9dbedffd87f9f051bffffffffffffffefffffd8669f1bbba17162a11558a59f9f1b475ab24838e96777ffffffff", + "cborBytes": [ + 159, 65, 229, 27, 27, 151, 183, 21, 240, 169, 161, 175, 159, 217, 5, 5, 159, 19, 27, 165, 134, 61, 247, 42, 217, + 219, 237, 255, 216, 127, 159, 5, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255, 255, 216, 102, 159, 27, 187, + 161, 113, 98, 161, 21, 88, 165, 159, 159, 27, 71, 90, 178, 72, 56, 233, 103, 119, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2784, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "095f53a58e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17052453141499877297" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9400651060549200151" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "865fb9bad8ad99e2f2ea580b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17023605945158869911" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffeb61" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "154690734404010988" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8422856738814222774" + } + } + ] + } + ] + }, + "cborHex": "9f45095f53a58e1beca67bc8d01817b1d8669f1b8275d255316f29179fbf4c865fb9bad8ad99e2f2ea580b1bec3fff69856c239743ffeb611b02259267423203ecff1b74e3ff93e706e1b6ffffff", + "cborBytes": [ + 159, 69, 9, 95, 83, 165, 142, 27, 236, 166, 123, 200, 208, 24, 23, 177, 216, 102, 159, 27, 130, 117, 210, 85, 49, + 111, 41, 23, 159, 191, 76, 134, 95, 185, 186, 216, 173, 153, 226, 242, 234, 88, 11, 27, 236, 63, 255, 105, 133, + 108, 35, 151, 67, 255, 235, 97, 27, 2, 37, 146, 103, 66, 50, 3, 236, 255, 27, 116, 227, 255, 147, 231, 6, 225, + 182, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2785, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10331277933632771243" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5840204432499329762" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15585659012805593325" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14580040012031895894" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6986862844840842282" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f4" + }, + { + "_tag": "ByteArray", + "bytearray": "87cc" + }, + { + "_tag": "ByteArray", + "bytearray": "ef0ce358" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4080981036660190326" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13664d4aa75486" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac61a90b28f80d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d240414e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ae4b0a68366dd6cd033e221" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b8f60128b0e0354ab1b510c92fd16c8cae21bd84b624bb8a488ed1bca56b5248024a956ff9f9f1b60f652bd491d142a41f44287cc44ef0ce358ffff1b38a28ea1813c6c76bf4713664d4aa7548647ac61a90b28f80d44d240414e4c1ae4b0a68366dd6cd033e221ffff", + "cborBytes": [ + 159, 191, 27, 143, 96, 18, 139, 14, 3, 84, 171, 27, 81, 12, 146, 253, 22, 200, 202, 226, 27, 216, 75, 98, 75, 184, + 164, 136, 237, 27, 202, 86, 181, 36, 128, 36, 169, 86, 255, 159, 159, 27, 96, 246, 82, 189, 73, 29, 20, 42, 65, + 244, 66, 135, 204, 68, 239, 12, 227, 88, 255, 255, 27, 56, 162, 142, 161, 129, 60, 108, 118, 191, 71, 19, 102, 77, + 74, 167, 84, 134, 71, 172, 97, 169, 11, 40, 248, 13, 68, 210, 64, 65, 78, 76, 26, 228, 176, 166, 131, 102, 221, + 108, 208, 51, 226, 33, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2786, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3012821950758421972" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26cd94b1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5101166100597245631" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "872351490309912218" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6914247423494074815" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fde5f2da919f9475a4ab06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9730283408036452501" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13106298355836450282" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15022345372935330498" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "989548458588770223" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18082976918404442865" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "719b43d60e75966ba695c771" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3732804173454937999" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e3d84a6bdf36ec35ffb54f" + }, + { + "_tag": "ByteArray", + "bytearray": "9e" + }, + { + "_tag": "ByteArray", + "bytearray": "5233bc34758f852a7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "616784906053654249" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18441732984552947508" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9502287611546857580" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11695021114440940538" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9658627450903524972" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4901828823727154308" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a32588267" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12052544909522032338" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e2c2b40c7f36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14617583926394631632" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10316443835881079463" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b29cfb19a027485d44426cd94b11b46cafb8a965d06bf1b0c1b370efb34769a1b5ff45765fe8631bf4bfde5f2da919f9475a4ab061b8708e934d3e3d8951bb5e2ecea1beaf5ea1bd07a17865f0b1ac21b0dbb95148a380faf1bfaf3a3b31715aaf14c719b43d60e75966ba695c771ffd8669f1b33cd959e56e08f8f9f4be3d84a6bdf36ec35ffb54f419e495233bc34758f852a7b1b088f429aac2696e9ffffd8669f1bffee3270e2e1ff3480ffd8669f1b83dee83cc7d8706c9f1ba24d0fbd9ef1fbfa1b860a567e34f0f66c1b4406cb581c072484450a325882671ba7433dbcf380d6d2ffff9f46e2c2b40c7f361bcadc17223f3635d01b8f2b5f0286f5c2a7ffffff", + "cborBytes": [ + 159, 159, 191, 27, 41, 207, 177, 154, 2, 116, 133, 212, 68, 38, 205, 148, 177, 27, 70, 202, 251, 138, 150, 93, 6, + 191, 27, 12, 27, 55, 14, 251, 52, 118, 154, 27, 95, 244, 87, 101, 254, 134, 49, 191, 75, 253, 229, 242, 218, 145, + 159, 148, 117, 164, 171, 6, 27, 135, 8, 233, 52, 211, 227, 216, 149, 27, 181, 226, 236, 234, 27, 234, 245, 234, + 27, 208, 122, 23, 134, 95, 11, 26, 194, 27, 13, 187, 149, 20, 138, 56, 15, 175, 27, 250, 243, 163, 179, 23, 21, + 170, 241, 76, 113, 155, 67, 214, 14, 117, 150, 107, 166, 149, 199, 113, 255, 216, 102, 159, 27, 51, 205, 149, 158, + 86, 224, 143, 143, 159, 75, 227, 216, 74, 107, 223, 54, 236, 53, 255, 181, 79, 65, 158, 73, 82, 51, 188, 52, 117, + 143, 133, 42, 123, 27, 8, 143, 66, 154, 172, 38, 150, 233, 255, 255, 216, 102, 159, 27, 255, 238, 50, 112, 226, + 225, 255, 52, 128, 255, 216, 102, 159, 27, 131, 222, 232, 60, 199, 216, 112, 108, 159, 27, 162, 77, 15, 189, 158, + 241, 251, 250, 27, 134, 10, 86, 126, 52, 240, 246, 108, 27, 68, 6, 203, 88, 28, 7, 36, 132, 69, 10, 50, 88, 130, + 103, 27, 167, 67, 61, 188, 243, 128, 214, 210, 255, 255, 159, 70, 226, 194, 180, 12, 127, 54, 27, 202, 220, 23, + 34, 63, 54, 53, 208, 27, 143, 43, 95, 2, 134, 245, 194, 167, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2787, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "046c37ba5cc5f77fe326" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10905680833934082877" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11708619313460307401" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15185368213817180860" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bf07e7728b10460d9eff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "152287308684463582" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2748666881262254357" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f627e200ec472cf41d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15707441395089674755" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15664600199632201410" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17157914077522748935" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16409887168687650949" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "047605" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "69550204032243582" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "937507" + }, + { + "_tag": "ByteArray", + "bytearray": "9de338a198aa1ce0" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2899722159323419288" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f4a046c37ba5cc5f77fe326ff1b9758c2f00c6d433d1ba27d5f3b0d1465c9ffd8669f1bd2bd43ef5814c2bc9f9f4abf07e7728b10460d9eff1b021d088019f00dde1b262539f7278479154a6f627e200ec472cf41d81bd9fc0aba2c961203ff1bd963d6e30f9726c2d8669f1bee1d27f26d6ae6079f1bfffffffffffffff20f1be3bba16fc5de3885ffffa043047605ffffd8669f1bffffffffffffffee9f1b00f7178ac565d77e9f43937507489de338a198aa1ce0ff1b283de1f0c5cd1298ffffff", + "cborBytes": [ + 159, 159, 159, 74, 4, 108, 55, 186, 92, 197, 247, 127, 227, 38, 255, 27, 151, 88, 194, 240, 12, 109, 67, 61, 27, + 162, 125, 95, 59, 13, 20, 101, 201, 255, 216, 102, 159, 27, 210, 189, 67, 239, 88, 20, 194, 188, 159, 159, 74, + 191, 7, 231, 114, 139, 16, 70, 13, 158, 255, 27, 2, 29, 8, 128, 25, 240, 13, 222, 27, 38, 37, 57, 247, 39, 132, + 121, 21, 74, 111, 98, 126, 32, 14, 196, 114, 207, 65, 216, 27, 217, 252, 10, 186, 44, 150, 18, 3, 255, 27, 217, + 99, 214, 227, 15, 151, 38, 194, 216, 102, 159, 27, 238, 29, 39, 242, 109, 106, 230, 7, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 242, 15, 27, 227, 187, 161, 111, 197, 222, 56, 133, 255, 255, 160, 67, 4, 118, 5, 255, 255, + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 27, 0, 247, 23, 138, 197, 101, 215, 126, 159, 67, + 147, 117, 7, 72, 157, 227, 56, 161, 152, 170, 28, 224, 255, 27, 40, 61, 225, 240, 197, 205, 18, 152, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2788, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7933e530d424f61fd3d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f97a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4896665083177121855" + } + } + ] + }, + "cborHex": "9f9f4a7933e530d424f61fd3d11bfffffffffffffff0ff42f97a1b43f472f312d4b83fff", + "cborBytes": [ + 159, 159, 74, 121, 51, 229, 48, 212, 36, 246, 31, 211, 209, 27, 255, 255, 255, 255, 255, 255, 255, 240, 255, 66, + 249, 122, 27, 67, 244, 114, 243, 18, 212, 184, 63, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2789, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5da0a7ac4da795e7d271e1fc" + }, + { + "_tag": "ByteArray", + "bytearray": "ebde92ab" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69a2c815ffe0840ccb280e83" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61d871870b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01abff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6be5e1e9e2537511" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4544449784020696037" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a2ac6880bbc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2952cb4a84b4a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9803779493001521512" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8462910904249905424" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eb0e0f1dcdbc978b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14149557277354913572" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18394335219417819650" + } + }, + { + "_tag": "ByteArray", + "bytearray": "faf1d1d089275bf093" + }, + { + "_tag": "ByteArray", + "bytearray": "49" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aeef9e2bb4325a" + } + ] + } + ] + }, + "cborHex": "9f4c5da0a7ac4da795e7d271e1fc44ebde92abbf41334c69a2c815ffe0840ccb280e834561d871870b4301abff486be5e1e9e25375111b3f11210044277be541ae468a2ac6880bbc47b2952cb4a84b4a1b880e0581989d6968ffd8669f1b75724ca1059871109f48eb0e0f1dcdbc978bd8669f1bc45d53604dc86f249f1bff45ce6cb8db2a0249faf1d1d089275bf0934149ffff47aeef9e2bb4325affffff", + "cborBytes": [ + 159, 76, 93, 160, 167, 172, 77, 167, 149, 231, 210, 113, 225, 252, 68, 235, 222, 146, 171, 191, 65, 51, 76, 105, + 162, 200, 21, 255, 224, 132, 12, 203, 40, 14, 131, 69, 97, 216, 113, 135, 11, 67, 1, 171, 255, 72, 107, 229, 225, + 233, 226, 83, 117, 17, 27, 63, 17, 33, 0, 68, 39, 123, 229, 65, 174, 70, 138, 42, 198, 136, 11, 188, 71, 178, 149, + 44, 180, 168, 75, 74, 27, 136, 14, 5, 129, 152, 157, 105, 104, 255, 216, 102, 159, 27, 117, 114, 76, 161, 5, 152, + 113, 16, 159, 72, 235, 14, 15, 29, 205, 188, 151, 139, 216, 102, 159, 27, 196, 93, 83, 96, 77, 200, 111, 36, 159, + 27, 255, 69, 206, 108, 184, 219, 42, 2, 73, 250, 241, 209, 208, 137, 39, 91, 240, 147, 65, 73, 255, 255, 71, 174, + 239, 158, 43, 180, 50, 90, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2790, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b51e3b967140d74685984580" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "747268ecc2b4163fea0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12956386375061782002" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b03fd78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10580043418164589983" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b217817" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14695764184808357578" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd3474e28e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18298503872383280258" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f50ac1c95665b514" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60b8dab218" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15860403484165811723" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12282408232710911359" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3323389808548262027" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15061859210544998369" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17681904284278016694" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "199af229e498" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "82b0bcda" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9470162470987402856" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "521561066065250487" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "507f597878a6eb29a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "945637639125476646" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4665191097135699464" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10005678068788934164" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4435296208209841586" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10235169404531933513" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10192570611802059347" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1969866023952135731" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e9208d3bc695bc37d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3712132992453869229" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "691806d5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14402572041145655390" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19027b7dee" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14493504157938575975" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2253c7" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "581fdab6bacebd707b32" + } + ] + }, + "cborHex": "9f4cb51e3b967140d74685984580bf4a747268ecc2b4163fea0f1bb3ce54c32244bdf2447b03fd781b92d3dd6eefe8f59f448b2178171bcbf1d7aa2268feca45dd3474e28e1bfdf158528283e48248f50ac1c95665b5144560b8dab218ffd8669f1bdc1b78efd4122e0b9fbf1baa73e1367111357f1b2e1f0d6c3cac308b1bd10679269d7ae7e11bf562be4388d94ab646199af229e4984163ff4482b0bcda1b836cc697a0708e68bf1b073cf506b77e48b749507f597878a6eb29a51b0d1f946c2e5025261b40be1695ea1696081b8adb4f30f314b6141b3d8d5666f3fc0db21b8e0aa0585d1281491b8d7348f8088c3253ffbf1b1b565eb644c73633490e9208d3bc695bc37d1b33842549f6387ead44691806d51bc7e036f69c75a05e4519027b7dee1bc923453de4936a67432253c7ffffff4a581fdab6bacebd707b32ff", + "cborBytes": [ + 159, 76, 181, 30, 59, 150, 113, 64, 215, 70, 133, 152, 69, 128, 191, 74, 116, 114, 104, 236, 194, 180, 22, 63, + 234, 15, 27, 179, 206, 84, 195, 34, 68, 189, 242, 68, 123, 3, 253, 120, 27, 146, 211, 221, 110, 239, 232, 245, + 159, 68, 139, 33, 120, 23, 27, 203, 241, 215, 170, 34, 104, 254, 202, 69, 221, 52, 116, 226, 142, 27, 253, 241, + 88, 82, 130, 131, 228, 130, 72, 245, 10, 193, 201, 86, 101, 181, 20, 69, 96, 184, 218, 178, 24, 255, 216, 102, + 159, 27, 220, 27, 120, 239, 212, 18, 46, 11, 159, 191, 27, 170, 115, 225, 54, 113, 17, 53, 127, 27, 46, 31, 13, + 108, 60, 172, 48, 139, 27, 209, 6, 121, 38, 157, 122, 231, 225, 27, 245, 98, 190, 67, 136, 217, 74, 182, 70, 25, + 154, 242, 41, 228, 152, 65, 99, 255, 68, 130, 176, 188, 218, 27, 131, 108, 198, 151, 160, 112, 142, 104, 191, 27, + 7, 60, 245, 6, 183, 126, 72, 183, 73, 80, 127, 89, 120, 120, 166, 235, 41, 165, 27, 13, 31, 148, 108, 46, 80, 37, + 38, 27, 64, 190, 22, 149, 234, 22, 150, 8, 27, 138, 219, 79, 48, 243, 20, 182, 20, 27, 61, 141, 86, 102, 243, 252, + 13, 178, 27, 142, 10, 160, 88, 93, 18, 129, 73, 27, 141, 115, 72, 248, 8, 140, 50, 83, 255, 191, 27, 27, 86, 94, + 182, 68, 199, 54, 51, 73, 14, 146, 8, 211, 188, 105, 91, 195, 125, 27, 51, 132, 37, 73, 246, 56, 126, 173, 68, + 105, 24, 6, 213, 27, 199, 224, 54, 246, 156, 117, 160, 94, 69, 25, 2, 123, 125, 238, 27, 201, 35, 69, 61, 228, + 147, 106, 103, 67, 34, 83, 199, 255, 255, 255, 74, 88, 31, 218, 182, 186, 206, 189, 112, 123, 50, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2791, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7191990965055609775" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12535271694496305434" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17691480420526087301" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5808841817941011909" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ea4fc46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b9e907be39ab4e6eb96" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "635bf7e64d8b05c8b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16586567231605880484" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdc58d15c369" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14909224828321145630" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de81a642171a1dc774" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8844086181815141698" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6a7396c7c310338a78fa67e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4113099930770307523" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b63cf15ad8bf55bafa0d8669f1badf63b310176111a9f1bf584c3b5803c5c85ffff9f1b509d26db5aceedc5ffbf444ea4fc464a4b9e907be39ab4e6eb9649635bf7e64d8b05c8b31be62f53048b00b6a446bdc58d15c3691bcee834fd2884231e49de81a642171a1dc7741b7abc81863e0845424ce6a7396c7c310338a78fa67e1b3914aa984b3f79c3ffff", + "cborBytes": [ + 159, 27, 99, 207, 21, 173, 139, 245, 91, 175, 160, 216, 102, 159, 27, 173, 246, 59, 49, 1, 118, 17, 26, 159, 27, + 245, 132, 195, 181, 128, 60, 92, 133, 255, 255, 159, 27, 80, 157, 38, 219, 90, 206, 237, 197, 255, 191, 68, 78, + 164, 252, 70, 74, 75, 158, 144, 123, 227, 154, 180, 230, 235, 150, 73, 99, 91, 247, 230, 77, 139, 5, 200, 179, 27, + 230, 47, 83, 4, 139, 0, 182, 164, 70, 189, 197, 141, 21, 195, 105, 27, 206, 232, 52, 253, 40, 132, 35, 30, 73, + 222, 129, 166, 66, 23, 26, 29, 199, 116, 27, 122, 188, 129, 134, 62, 8, 69, 66, 76, 230, 167, 57, 108, 124, 49, 3, + 56, 167, 143, 166, 126, 27, 57, 20, 170, 152, 75, 63, 121, 195, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2792, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14569973102393350396" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3061644550820982221" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8d188eb2b48fbb" + } + ] + }, + "cborHex": "9f9f1bca32f1577326d8fcff10d9050a9f80ff1b2a7d257f6831edcd478d188eb2b48fbbff", + "cborBytes": [ + 159, 159, 27, 202, 50, 241, 87, 115, 38, 216, 252, 255, 16, 217, 5, 10, 159, 128, 255, 27, 42, 125, 37, 127, 104, + 49, 237, 205, 71, 141, 24, 142, 178, 180, 143, 187, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2793, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1232522900701299726" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6983501409553507731" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13182450628376592330" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8300219177711193566" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7764211683534503389" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "275530153264496001" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14930987344954916812" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c945ce3b90ace6" + }, + { + "_tag": "ByteArray", + "bytearray": "d7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2892759930093053114" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10799527624740916078" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6315377985142012274" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b3352c22f814a42cf3" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11026526631415746302" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8b528669e54bacc3fbffb14" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13285694899476786117" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c254b4395f67948b6ca9cf" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b111acd0c49d5c40e80ffa09fbf1b60ea618824e065931bb6f17900bd82ffca1b73304d5d9d5c4dde1b6bc00563be02fdddff9f1b03d2e136ee3d3d811bcf3585e1e9e3ffcc47c945ce3b90ace641d71b282525d475ae24baffff9fd8669f1b95dfa12806b34b6e9f1b57a4bad132b6397249b3352c22f814a42cf3ffff1b9906178cdbeb8efe4cc8b528669e54bacc3fbffb14ffbf1bb860451ed5886bc54bc254b4395f67948b6ca9cfffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 17, 26, 205, 12, 73, 213, 196, 14, 128, 255, 160, 159, 191, 27, 96, 234, 97, 136, 36, 224, + 101, 147, 27, 182, 241, 121, 0, 189, 130, 255, 202, 27, 115, 48, 77, 93, 157, 92, 77, 222, 27, 107, 192, 5, 99, + 190, 2, 253, 221, 255, 159, 27, 3, 210, 225, 54, 238, 61, 61, 129, 27, 207, 53, 133, 225, 233, 227, 255, 204, 71, + 201, 69, 206, 59, 144, 172, 230, 65, 215, 27, 40, 37, 37, 212, 117, 174, 36, 186, 255, 255, 159, 216, 102, 159, + 27, 149, 223, 161, 40, 6, 179, 75, 110, 159, 27, 87, 164, 186, 209, 50, 182, 57, 114, 73, 179, 53, 44, 34, 248, + 20, 164, 44, 243, 255, 255, 27, 153, 6, 23, 140, 219, 235, 142, 254, 76, 200, 181, 40, 102, 158, 84, 186, 204, 63, + 191, 251, 20, 255, 191, 27, 184, 96, 69, 30, 213, 136, 107, 197, 75, 194, 84, 180, 57, 95, 103, 148, 139, 108, + 169, 207, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2794, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5969" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5289396605033510457" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "373e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c29e7ea9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18218264843024533975" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6644887821430717924" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1026694220489524304" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18427506341203011714" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7344546702708907199" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dec037fff4448c2910d386d1" + }, + { + "_tag": "ByteArray", + "bytearray": "c37c659568c61ce4819e3298" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "06259cc2fff669e628" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9f425969ffd8669f1b4967b630172df6399f42373e9f41e2ff9f44c29e7ea91bfcd44759a87709d71b5c37624478b27de41b0e3f8cf431398450ffd8669f1bffbba7625ba9e8829f1b65ed1250233b1cbf4cdec037fff4448c2910d386d14cc37c659568c61ce4819e3298ffffffff4906259cc2fff669e62880ff", + "cborBytes": [ + 159, 159, 66, 89, 105, 255, 216, 102, 159, 27, 73, 103, 182, 48, 23, 45, 246, 57, 159, 66, 55, 62, 159, 65, 226, + 255, 159, 68, 194, 158, 126, 169, 27, 252, 212, 71, 89, 168, 119, 9, 215, 27, 92, 55, 98, 68, 120, 178, 125, 228, + 27, 14, 63, 140, 244, 49, 57, 132, 80, 255, 216, 102, 159, 27, 255, 187, 167, 98, 91, 169, 232, 130, 159, 27, 101, + 237, 18, 80, 35, 59, 28, 191, 76, 222, 192, 55, 255, 244, 68, 140, 41, 16, 211, 134, 209, 76, 195, 124, 101, 149, + 104, 198, 28, 228, 129, 158, 50, 152, 255, 255, 255, 255, 73, 6, 37, 156, 194, 255, 246, 105, 230, 40, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2795, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1375384946716839343" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14599004831614637085" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14893234440112559979" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "192901677173733939" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "311406290587305820" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf04a7b2a0" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11802149448557375723" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "30" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2253151750755649694" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1e4500e9668cef6bf4f8" + }, + { + "_tag": "ByteArray", + "bytearray": "6935750258f8e8" + }, + { + "_tag": "ByteArray", + "bytearray": "f56ccdcec82a86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13952536452184365732" + } + }, + { + "_tag": "ByteArray", + "bytearray": "69560d7ad6f2ce36" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b131659526a7a0daf80ff9fbf1bca9a158ba69a141d1bceaf65d0c785d76bffd8669f1b02ad530da8847a339f1b0452565f1347475c45bf04a7b2a0ffffd8669f1ba3c9a8649b55b0eb9f4130ffffd8669f1b1f44cd9460d7089e9f4a1e4500e9668cef6bf4f8476935750258f8e847f56ccdcec82a861bc1a15dfac4235aa44869560d7ad6f2ce36ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 19, 22, 89, 82, 106, 122, 13, 175, 128, 255, 159, 191, 27, 202, 154, 21, 139, 166, 154, + 20, 29, 27, 206, 175, 101, 208, 199, 133, 215, 107, 255, 216, 102, 159, 27, 2, 173, 83, 13, 168, 132, 122, 51, + 159, 27, 4, 82, 86, 95, 19, 71, 71, 92, 69, 191, 4, 167, 178, 160, 255, 255, 216, 102, 159, 27, 163, 201, 168, + 100, 155, 85, 176, 235, 159, 65, 48, 255, 255, 216, 102, 159, 27, 31, 68, 205, 148, 96, 215, 8, 158, 159, 74, 30, + 69, 0, 233, 102, 140, 239, 107, 244, 248, 71, 105, 53, 117, 2, 88, 248, 232, 71, 245, 108, 205, 206, 200, 42, 134, + 27, 193, 161, 93, 250, 196, 35, 90, 164, 72, 105, 86, 13, 122, 214, 242, 206, 54, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2796, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "374c0d2e960b14dd191b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c74b66f1dac471cad09efe7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "475997734582678626" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31232d6306aef5d9f9d97f2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69b5451d00158409f4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35b551a210b29b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25d1d127ca84c50d25" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a56498f7e481222453" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13851602605346630717" + } + } + } + ] + } + ] + }, + "cborHex": "9fa04a374c0d2e960b14dd191bbf4c1c74b66f1dac471cad09efe71b069b156aebb0f4624c31232d6306aef5d9f9d97f2d4969b5451d00158409f44735b551a210b29b4925d1d127ca84c50d254159416a49a56498f7e4812224531bc03ac72e3d8fac3dffff", + "cborBytes": [ + 159, 160, 74, 55, 76, 13, 46, 150, 11, 20, 221, 25, 27, 191, 76, 28, 116, 182, 111, 29, 172, 71, 28, 173, 9, 239, + 231, 27, 6, 155, 21, 106, 235, 176, 244, 98, 76, 49, 35, 45, 99, 6, 174, 245, 217, 249, 217, 127, 45, 73, 105, + 181, 69, 29, 0, 21, 132, 9, 244, 71, 53, 181, 81, 162, 16, 178, 155, 73, 37, 209, 209, 39, 202, 132, 197, 13, 37, + 65, 89, 65, 106, 73, 165, 100, 152, 247, 228, 129, 34, 36, 83, 27, 192, 58, 199, 46, 61, 143, 172, 61, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2797, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17135487529874805100" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "65b9a0e88653c6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1961810320545930738" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5742a66b40e10f1422" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bb8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e44b2ece" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16714382292275100744" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec925b57a756" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b9c3c6eae39" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f68046e25eb5c105" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4269133742453881666" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1a77" + }, + { + "_tag": "ByteArray", + "bytearray": "d767e427b7ba" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09495a5350" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4287710808335485502" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "385cfe459661" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8475512498243873393" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ecaccc9ce53033721b767af" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b608467272842ef2db259c79" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b59f165e48" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12407860630291200920" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba94f30daef5ef1170" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4744940663988353118" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9f003f858d7e20e1e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec47c61df41de3" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ebfff28b83e34909b7" + } + ] + }, + "cborHex": "9f9f1bedcd7b1ee752d16c9f4765b9a0e88653c61b1b39c017a8d5ddf2ffbf495742a66b40e10f1422427bb844e44b2ece1be7f56a236322fc4846ec925b57a756463b9c3c6eae3948f68046e25eb5c1051b3b3f02851998fb42ffff421a7746d767e427b7ba9fbf4509495a53501b3b8102434e708a3e46385cfe4596611b759f11b64335aa714c8ecaccc9ce53033721b767af4cb608467272842ef2db259c7945b59f165e481bac319380eb0fbb9849ba94f30daef5ef11701b41d96a64e554f85e49d9f003f858d7e20e1e47ec47c61df41de3ffff49ebfff28b83e34909b7ff", + "cborBytes": [ + 159, 159, 27, 237, 205, 123, 30, 231, 82, 209, 108, 159, 71, 101, 185, 160, 232, 134, 83, 198, 27, 27, 57, 192, + 23, 168, 213, 221, 242, 255, 191, 73, 87, 66, 166, 107, 64, 225, 15, 20, 34, 66, 123, 184, 68, 228, 75, 46, 206, + 27, 231, 245, 106, 35, 99, 34, 252, 72, 70, 236, 146, 91, 87, 167, 86, 70, 59, 156, 60, 110, 174, 57, 72, 246, + 128, 70, 226, 94, 181, 193, 5, 27, 59, 63, 2, 133, 25, 152, 251, 66, 255, 255, 66, 26, 119, 70, 215, 103, 228, 39, + 183, 186, 159, 191, 69, 9, 73, 90, 83, 80, 27, 59, 129, 2, 67, 78, 112, 138, 62, 70, 56, 92, 254, 69, 150, 97, 27, + 117, 159, 17, 182, 67, 53, 170, 113, 76, 142, 202, 204, 201, 206, 83, 3, 55, 33, 183, 103, 175, 76, 182, 8, 70, + 114, 114, 132, 46, 242, 219, 37, 156, 121, 69, 181, 159, 22, 94, 72, 27, 172, 49, 147, 128, 235, 15, 187, 152, 73, + 186, 148, 243, 13, 174, 245, 239, 17, 112, 27, 65, 217, 106, 100, 229, 84, 248, 94, 73, 217, 240, 3, 248, 88, 215, + 226, 14, 30, 71, 236, 71, 198, 29, 244, 29, 227, 255, 255, 73, 235, 255, 242, 139, 131, 227, 73, 9, 183, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2798, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "829d68a4547a41b03aac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4997515705315914164" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89c99e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16126580990364198267" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce1d44aa5c1e217a0d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1659354483873221162" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7a5cb9f090fce4eb94d12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8858956446414828692" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6408892239492110906" + } + } + ] + }, + "cborHex": "9f0cd8669f1bfffffffffffffff780ffbf4a829d68a4547a41b03aac1b455abe0e56ca71b44389c99e1bdfcd1ff7ec39a57b49ce1d44aa5c1e217a0d1b1707361c87b70a2a4be7a5cb9f090fce4eb94d121b7af155f385367494ff1b58f0f5893aaf5a3aff", + "cborBytes": [ + 159, 12, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 128, 255, 191, 74, 130, 157, 104, 164, 84, + 122, 65, 176, 58, 172, 27, 69, 90, 190, 14, 86, 202, 113, 180, 67, 137, 201, 158, 27, 223, 205, 31, 247, 236, 57, + 165, 123, 73, 206, 29, 68, 170, 92, 30, 33, 122, 13, 27, 23, 7, 54, 28, 135, 183, 10, 42, 75, 231, 165, 203, 159, + 9, 15, 206, 78, 185, 77, 18, 27, 122, 241, 85, 243, 133, 54, 116, 148, 255, 27, 88, 240, 245, 137, 58, 175, 90, + 58, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2799, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2010e4a058ab123f70f81d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6d72e0a150c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f9f8c0c79e992af8fd7f409" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92b028966330efccd1cb60" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4047" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cf313151a743baf8a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87a2c4be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e570779208" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5958345145834846739" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcb9bc91b76539ea1727" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dbed00e84e8b5799113" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "34d325c13687582a28f0563b" + }, + { + "_tag": "ByteArray", + "bytearray": "d1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12736289806974891880" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8147830581574310211" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7976403944684362580" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a1dfc53618ba95cf6615" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12666544482684843909" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10832647210923628007" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8d69d2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9761502197495933551" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0bcc742aac40f4" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16232644631883309726" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e84d74bb66de1716" + }, + { + "_tag": "ByteArray", + "bytearray": "d7f8b75b50b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9185262841429815852" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5390482342551794575" + } + } + ] + } + ] + }, + "cborHex": "9fbf4b2010e4a058ab123f70f81d46b6d72e0a150c4c3f9f8c0c79e992af8fd7f4094b92b028966330efccd1cb60424047491cf313151a743baf8a4487a2c4be45e57077920841d91b52b04b576aa8ba134afcb9bc91b76539ea17274a2dbed00e84e8b5799113ff4c34d325c13687582a28f0563b41d1d8669f1bb0c06419852ab7689f1b7112e8beb0cd1943d8669f1b6eb1e1207bef9b549f4aa1dfc53618ba95cf66151bafc89b18c61d37851b96554b3e983a95e7ffff9f438d69d21b8777d287abf0aa6f470bcc742aac40f4ffd8669f1be145f049d88e629e9f48e84d74bb66de171646d7f8b75b50b61b7f789be38004f22cffff1b4aced7216bd0b38fffffff", + "cborBytes": [ + 159, 191, 75, 32, 16, 228, 160, 88, 171, 18, 63, 112, 248, 29, 70, 182, 215, 46, 10, 21, 12, 76, 63, 159, 140, 12, + 121, 233, 146, 175, 143, 215, 244, 9, 75, 146, 176, 40, 150, 99, 48, 239, 204, 209, 203, 96, 66, 64, 71, 73, 28, + 243, 19, 21, 26, 116, 59, 175, 138, 68, 135, 162, 196, 190, 69, 229, 112, 119, 146, 8, 65, 217, 27, 82, 176, 75, + 87, 106, 168, 186, 19, 74, 252, 185, 188, 145, 183, 101, 57, 234, 23, 39, 74, 45, 190, 208, 14, 132, 232, 181, + 121, 145, 19, 255, 76, 52, 211, 37, 193, 54, 135, 88, 42, 40, 240, 86, 59, 65, 209, 216, 102, 159, 27, 176, 192, + 100, 25, 133, 42, 183, 104, 159, 27, 113, 18, 232, 190, 176, 205, 25, 67, 216, 102, 159, 27, 110, 177, 225, 32, + 123, 239, 155, 84, 159, 74, 161, 223, 197, 54, 24, 186, 149, 207, 102, 21, 27, 175, 200, 155, 24, 198, 29, 55, + 133, 27, 150, 85, 75, 62, 152, 58, 149, 231, 255, 255, 159, 67, 141, 105, 210, 27, 135, 119, 210, 135, 171, 240, + 170, 111, 71, 11, 204, 116, 42, 172, 64, 244, 255, 216, 102, 159, 27, 225, 69, 240, 73, 216, 142, 98, 158, 159, + 72, 232, 77, 116, 187, 102, 222, 23, 22, 70, 215, 248, 183, 91, 80, 182, 27, 127, 120, 155, 227, 128, 4, 242, 44, + 255, 255, 27, 74, 206, 215, 33, 107, 208, 179, 143, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2800, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13581584633388341286" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2eb09e93ead61c7bba0da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e08d80bfe8595f6" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6775737266023456646" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13154213171105121576" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4742947392262041939" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15784922507403880473" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "956410181327149705" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18065843811471795854" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15378843741933658656" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f596aca58faaef74a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11028156685293345303" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d4d595" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18242837941439165315" + } + } + ] + } + ] + }, + "cborHex": "9f9f1bbc7b7b4408041826ffbf4bd2eb09e93ead61c7bba0da486e08d80bfe8595f6ff1b5e084124e0b45f869fbf1bb68d272f637c45281b41d255862824f1531bdb0f4f636ce068191b0d45d9fe1d925a891bfab6c53ac677268e1bd56ca0e71631e220ff9f49f596aca58faaef74a81b990be2135a425a1743d4d595ff1bfd2b9473fa7ff383ffff", + "cborBytes": [ + 159, 159, 27, 188, 123, 123, 68, 8, 4, 24, 38, 255, 191, 75, 210, 235, 9, 233, 62, 173, 97, 199, 187, 160, 218, + 72, 110, 8, 216, 11, 254, 133, 149, 246, 255, 27, 94, 8, 65, 36, 224, 180, 95, 134, 159, 191, 27, 182, 141, 39, + 47, 99, 124, 69, 40, 27, 65, 210, 85, 134, 40, 36, 241, 83, 27, 219, 15, 79, 99, 108, 224, 104, 25, 27, 13, 69, + 217, 254, 29, 146, 90, 137, 27, 250, 182, 197, 58, 198, 119, 38, 142, 27, 213, 108, 160, 231, 22, 49, 226, 32, + 255, 159, 73, 245, 150, 172, 165, 143, 170, 239, 116, 168, 27, 153, 11, 226, 19, 90, 66, 90, 23, 67, 212, 213, + 149, 255, 27, 253, 43, 148, 115, 250, 127, 243, 131, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2801, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16864131919671904239" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3307373942856382914" + } + } + ] + }, + "cborHex": "9f1bea096ea1855ec7efa01b2de62713eb5679c2ff", + "cborBytes": [159, 27, 234, 9, 110, 161, 133, 94, 199, 239, 160, 27, 45, 230, 39, 19, 235, 86, 121, 194, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2802, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3665378095693342714" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1412222165822826116" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e8bfb0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2557736490389411459" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8203226280057275760" + } + }, + { + "_tag": "ByteArray", + "bytearray": "48ff05542761f7" + }, + { + "_tag": "ByteArray", + "bytearray": "0f04f5feae6c94c3f2233ace" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8747469570435900983" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87f0b9f175" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9530272159986363199" + } + } + ] + }, + "cborHex": "9fd8669f1b32de09f5414ca7fa80ff1b13993893d9cd66849f43e8bfb0d8669f1b237ee7c95ab716839f1b71d7b6d6d2f685704748ff05542761f74c0f04f5feae6c94c3f2233ace1b7965413a6d5ee6374587f0b9f175ffffff1b8442540934c82b3fff", + "cborBytes": [ + 159, 216, 102, 159, 27, 50, 222, 9, 245, 65, 76, 167, 250, 128, 255, 27, 19, 153, 56, 147, 217, 205, 102, 132, + 159, 67, 232, 191, 176, 216, 102, 159, 27, 35, 126, 231, 201, 90, 183, 22, 131, 159, 27, 113, 215, 182, 214, 210, + 246, 133, 112, 71, 72, 255, 5, 84, 39, 97, 247, 76, 15, 4, 245, 254, 174, 108, 148, 195, 242, 35, 58, 206, 27, + 121, 101, 65, 58, 109, 94, 230, 55, 69, 135, 240, 185, 241, 117, 255, 255, 255, 27, 132, 66, 84, 9, 52, 200, 43, + 63, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2803, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5520754752731971719" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b4c9da93288a3808780ffff", + "cborBytes": [159, 216, 102, 159, 27, 76, 157, 169, 50, 136, 163, 128, 135, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2804, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11f0530f6fed12598d10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6776448175715763128" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8df50e69e596" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6773252745008895220" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4a11f0530f6fed12598d101b5e0ac7b67061c3b8468df50e69e5961b5dff6d7c4031d4f4ffff", + "cborBytes": [ + 159, 191, 74, 17, 240, 83, 15, 111, 237, 18, 89, 141, 16, 27, 94, 10, 199, 182, 112, 97, 195, 184, 70, 141, 245, + 14, 105, 229, 150, 27, 93, 255, 109, 124, 64, 49, 212, 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2805, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16786327205116965163" + } + } + ] + }, + "cborHex": "9f1be8f503a7c078f12bff", + "cborBytes": [159, 27, 232, 245, 3, 167, 192, 120, 241, 43, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2806, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1059296117123930869" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7fe112ee8d94fa3d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2679814890377718458" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd7df0558bdc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3104129834671834263" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12201179975733748158" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7896134269739687094" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9320220728068823141" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a48556" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10024029242893292004" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10403616954248947664" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8179612975256404668" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3905344811766295105" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8334a3b5fd" + } + ] + }, + "cborHex": "9fbf1b0eb36034c51f5af5487fe112ee8d94fa3d1b25309d71ccc42aba46fd7df0558bdc1b2b1415a3644e84971ba9534c8b163821be1b6d94b448669f5cb641771b8158135f1cc6586543a485561b8b1c817ca0c851e41b9061127fc93d67d0ff1b7183d2a9de5582bca01b3632926a36beaa41458334a3b5fdff", + "cborBytes": [ + 159, 191, 27, 14, 179, 96, 52, 197, 31, 90, 245, 72, 127, 225, 18, 238, 141, 148, 250, 61, 27, 37, 48, 157, 113, + 204, 196, 42, 186, 70, 253, 125, 240, 85, 139, 220, 27, 43, 20, 21, 163, 100, 78, 132, 151, 27, 169, 83, 76, 139, + 22, 56, 33, 190, 27, 109, 148, 180, 72, 102, 159, 92, 182, 65, 119, 27, 129, 88, 19, 95, 28, 198, 88, 101, 67, + 164, 133, 86, 27, 139, 28, 129, 124, 160, 200, 81, 228, 27, 144, 97, 18, 127, 201, 61, 103, 208, 255, 27, 113, + 131, 210, 169, 222, 85, 130, 188, 160, 27, 54, 50, 146, 106, 54, 190, 170, 65, 69, 131, 52, 163, 181, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2807, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15856796529497957964" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14687055952717483210" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3125941776846784372" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9016397936280268232" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9147439096555315373" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b078e277e164a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8622546870229314251" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8877690749025546928" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9006997706231934507" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9099322988233181292" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14638926929591263259" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10557671060398415394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2555751392893964871" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13219531410017976900" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a3aa11c563e5fab5b" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10578647180315627660" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3420100434813357069" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9b9a484e5d653ed2ce73" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "20195bcd95b53a5963a10ec1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6566523481004231994" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15491579409982573717" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bdc0ea86e405f664c9f411cd8669f1bcbd2e792da030cca9f1b2b61937bed8187741b7d20ae26f18cedc81b7ef23b64a2b320ad472b078e277e164affffbf1b77a970b1bb2caacb1b7b33e4b3417072b01b7cff48b154b66e2b416b1b7e474a0c2a2f486c1bcb27ea7b6b2fe01b1b928461e47a781e221b2377da59d3a792471bb77535c6ff3d8244491a3aa11c563e5fab5bffd8669f1b92cee78ffae6908c9f1b2f76a33999358c0dffff4a9b9a484e5d653ed2ce73ffff9f4c20195bcd95b53a5963a10ec1ffd8669f1b5b20fa50a684cd3a80ffd8669f1bd6fd25653dc44c9580ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 220, 14, 168, 110, 64, 95, 102, 76, 159, 65, 28, 216, 102, 159, 27, 203, 210, 231, 146, + 218, 3, 12, 202, 159, 27, 43, 97, 147, 123, 237, 129, 135, 116, 27, 125, 32, 174, 38, 241, 140, 237, 200, 27, 126, + 242, 59, 100, 162, 179, 32, 173, 71, 43, 7, 142, 39, 126, 22, 74, 255, 255, 191, 27, 119, 169, 112, 177, 187, 44, + 170, 203, 27, 123, 51, 228, 179, 65, 112, 114, 176, 27, 124, 255, 72, 177, 84, 182, 110, 43, 65, 107, 27, 126, 71, + 74, 12, 42, 47, 72, 108, 27, 203, 39, 234, 123, 107, 47, 224, 27, 27, 146, 132, 97, 228, 122, 120, 30, 34, 27, 35, + 119, 218, 89, 211, 167, 146, 71, 27, 183, 117, 53, 198, 255, 61, 130, 68, 73, 26, 58, 161, 28, 86, 62, 95, 171, + 91, 255, 216, 102, 159, 27, 146, 206, 231, 143, 250, 230, 144, 140, 159, 27, 47, 118, 163, 57, 153, 53, 140, 13, + 255, 255, 74, 155, 154, 72, 78, 93, 101, 62, 210, 206, 115, 255, 255, 159, 76, 32, 25, 91, 205, 149, 181, 58, 89, + 99, 161, 14, 193, 255, 216, 102, 159, 27, 91, 32, 250, 80, 166, 132, 205, 58, 128, 255, 216, 102, 159, 27, 214, + 253, 37, 101, 61, 196, 76, 149, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2808, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8a0d067285ea375201d7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bcb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13073328582619758252" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ad8bb23d27dcf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10054135834505203100" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7553748256715672752" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "627cd347a578b8d2d41a62" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7023270586170616464" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e279" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50e403f7" + } + } + ] + } + ] + }, + "cborHex": "9f9f4a8a0d067285ea375201d7bf421bcb1bb56dcb149702feac478ad8bb23d27dcf41f5ffffbf1b8b877745bb354d9c1b68d44e049c438cb04b627cd347a578b8d2d41a621b6177ab6322262a9042e2794450e403f7ffff", + "cborBytes": [ + 159, 159, 74, 138, 13, 6, 114, 133, 234, 55, 82, 1, 215, 191, 66, 27, 203, 27, 181, 109, 203, 20, 151, 2, 254, + 172, 71, 138, 216, 187, 35, 210, 125, 207, 65, 245, 255, 255, 191, 27, 139, 135, 119, 69, 187, 53, 77, 156, 27, + 104, 212, 78, 4, 156, 67, 140, 176, 75, 98, 124, 211, 71, 165, 120, 184, 210, 212, 26, 98, 27, 97, 119, 171, 99, + 34, 38, 42, 144, 66, 226, 121, 68, 80, 228, 3, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2809, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12620622685376578417" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + }, + "cborHex": "9f1baf257577261b83718012ff", + "cborBytes": [159, 27, 175, 37, 117, 119, 38, 27, 131, 113, 128, 18, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2810, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05fa9930" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d2" + } + ] + }, + "cborHex": "9f029f4405fa9930ff41d2ff", + "cborBytes": [159, 2, 159, 68, 5, 250, 153, 48, 255, 65, 210, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2811, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "200897507143746942" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe6a517e6e5522d7be10" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6610002024199968052" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8870718555491560603" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b02c9bb37e590857e4afe6a517e6e5522d7be101b5bbb71d1d90d55341b7b1b1f86f28a6c9bffff", + "cborBytes": [ + 159, 191, 27, 2, 201, 187, 55, 229, 144, 133, 126, 74, 254, 106, 81, 126, 110, 85, 34, 215, 190, 16, 27, 91, 187, + 113, 209, 217, 13, 85, 52, 27, 123, 27, 31, 134, 242, 138, 108, 155, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2812, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5214373854519635303" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16531623012447113787" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7219140919739312073" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04477d2bb5195b497224b122" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13441577168194171672" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6918065545949689192" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13605455322672082031" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0388c5" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b485d2d64ccba2d679fd8669f1be56c1f8aa195523b9f1b642f8a6af88c67c94c04477d2bb5195b497224b1221bba8a1337cb36f3181b6001e7f5e7333568ffffffff1bbcd04987fb512c6f9f430388c5ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 72, 93, 45, 100, 204, 186, 45, 103, 159, 216, 102, 159, 27, 229, 108, 31, 138, 161, 149, + 82, 59, 159, 27, 100, 47, 138, 106, 248, 140, 103, 201, 76, 4, 71, 125, 43, 181, 25, 91, 73, 114, 36, 177, 34, 27, + 186, 138, 19, 55, 203, 54, 243, 24, 27, 96, 1, 231, 245, 231, 51, 53, 104, 255, 255, 255, 255, 27, 188, 208, 73, + 135, 251, 81, 44, 111, 159, 67, 3, 136, 197, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2813, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "52a7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1204078474354611641" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15862946483545143827" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c417a2187b67c639371309fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c55a3d9b09" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16703703499164787163" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f1efed746d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10448220782446723504" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13355192938278689586" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7638800418792593888" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16731777014810090315" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6212091998496844263" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1314744369551291799" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5943256203160911501" + } + }, + { + "_tag": "ByteArray", + "bytearray": "755fbf8115ee4c40" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16386636747944737064" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10873798720432026125" + } + }, + { + "_tag": "ByteArray", + "bytearray": "89cd3cfa3b32" + }, + { + "_tag": "ByteArray", + "bytearray": "71f82c1a8c" + }, + { + "_tag": "ByteArray", + "bytearray": "a17727e089a4cd5488" + }, + { + "_tag": "ByteArray", + "bytearray": "d17074ef086e" + } + ] + } + ] + } + ] + }, + "cborHex": "9f4252a79f1b10b5befe3199d5b91bdc2481c802bd7a13a0ffbf4cc417a2187b67c639371309fe45c55a3d9b09ff9f9f1be7cf79d51d2aa1db45f1efed746dff1b90ff8971d09741b0bf1bb9572d37f0e81b321b6a027882403cd9e01be833368bd4cd1b4b1b5635c8c2727369e741b81b123ee909cd8cb597ffff9fa09f1b527ab0072e8afe8d48755fbf8115ee4c401be369074d589bb928ff9f1b96e77e530a72b20d4689cd3cfa3b324571f82c1a8c49a17727e089a4cd548846d17074ef086effffff", + "cborBytes": [ + 159, 66, 82, 167, 159, 27, 16, 181, 190, 254, 49, 153, 213, 185, 27, 220, 36, 129, 200, 2, 189, 122, 19, 160, 255, + 191, 76, 196, 23, 162, 24, 123, 103, 198, 57, 55, 19, 9, 254, 69, 197, 90, 61, 155, 9, 255, 159, 159, 27, 231, + 207, 121, 213, 29, 42, 161, 219, 69, 241, 239, 237, 116, 109, 255, 27, 144, 255, 137, 113, 208, 151, 65, 176, 191, + 27, 185, 87, 45, 55, 240, 232, 27, 50, 27, 106, 2, 120, 130, 64, 60, 217, 224, 27, 232, 51, 54, 139, 212, 205, 27, + 75, 27, 86, 53, 200, 194, 114, 115, 105, 231, 65, 184, 27, 18, 62, 233, 9, 205, 140, 181, 151, 255, 255, 159, 160, + 159, 27, 82, 122, 176, 7, 46, 138, 254, 141, 72, 117, 95, 191, 129, 21, 238, 76, 64, 27, 227, 105, 7, 77, 88, 155, + 185, 40, 255, 159, 27, 150, 231, 126, 83, 10, 114, 178, 13, 70, 137, 205, 60, 250, 59, 50, 69, 113, 248, 44, 26, + 140, 73, 161, 119, 39, 224, 137, 164, 205, 84, 136, 70, 209, 112, 116, 239, 8, 110, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2814, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1705" + } + ] + }, + "cborHex": "9f421705ff", + "cborBytes": [159, 66, 23, 5, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2815, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15710033991670623740" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2c38eec5a1a798f274abdb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13819410594671178183" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5678179297090861205" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6ac0d9cfbbc928" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "257169703883425144" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30cc83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a57eae0581cdcab2661d2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d2b38b58a0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10378479353352264319" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "724cec19f2b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35816e4f388d5d0a1708" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98600fd0b32fbd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6470094305094166901" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a943df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7190920863435171290" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7703586966953500731" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6711518253616995198" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16571834651606622470" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c501b2c4761111c16399" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "61407c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7578699000838714320" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62d87dbf" + }, + { + "_tag": "ByteArray", + "bytearray": "f7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1035407630139920418" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "195031862669853867" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9fd8669f1bda0540ae1ad6edfc9f4b2c38eec5a1a798f274abdb1bbfc868b7aca531c71b4eccf1fc8613f895476ac0d9cfbbc9281b0391a67baef6c578ffffbf4330cc834b0a57eae0581cdcab2661d2464d2b38b58a0f1b9007c3fbfd499a7f46724cec19f2b14a35816e4f388d5d0a17084798600fd0b32fbd1b59ca647d8e6a697543a943df1b63cb486d18ffa5da42b1fd41b5ffffd8669f1b6ae8a387f597a03b9f9f1b5d241a4ae2641b7e41b81be5fafbd07585a106ff4ac501b2c4761111c163999f4361407c1b692cf2966c9973d04462d87dbf41f71b0e5e81c0f8381022ffd8669f1b02b4e4721e51c4ab80ffffff80ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 218, 5, 64, 174, 26, 214, 237, 252, 159, 75, 44, 56, 238, 197, 161, 167, 152, 242, + 116, 171, 219, 27, 191, 200, 104, 183, 172, 165, 49, 199, 27, 78, 204, 241, 252, 134, 19, 248, 149, 71, 106, 192, + 217, 207, 187, 201, 40, 27, 3, 145, 166, 123, 174, 246, 197, 120, 255, 255, 191, 67, 48, 204, 131, 75, 10, 87, + 234, 224, 88, 28, 220, 171, 38, 97, 210, 70, 77, 43, 56, 181, 138, 15, 27, 144, 7, 195, 251, 253, 73, 154, 127, + 70, 114, 76, 236, 25, 242, 177, 74, 53, 129, 110, 79, 56, 141, 93, 10, 23, 8, 71, 152, 96, 15, 208, 179, 47, 189, + 27, 89, 202, 100, 125, 142, 106, 105, 117, 67, 169, 67, 223, 27, 99, 203, 72, 109, 24, 255, 165, 218, 66, 177, + 253, 65, 181, 255, 255, 216, 102, 159, 27, 106, 232, 163, 135, 245, 151, 160, 59, 159, 159, 27, 93, 36, 26, 74, + 226, 100, 27, 126, 65, 184, 27, 229, 250, 251, 208, 117, 133, 161, 6, 255, 74, 197, 1, 178, 196, 118, 17, 17, 193, + 99, 153, 159, 67, 97, 64, 124, 27, 105, 44, 242, 150, 108, 153, 115, 208, 68, 98, 216, 125, 191, 65, 247, 27, 14, + 94, 129, 192, 248, 56, 16, 34, 255, 216, 102, 159, 27, 2, 180, 228, 114, 30, 81, 196, 171, 128, 255, 255, 255, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2816, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10592946523287911311" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d0a06c99e6e01f9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15075922198185095390" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11717227189918256355" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "185a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "244db7e8fe877ff415ea" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f9631be0d8044a1c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "53c3ec67031fdeb6b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9697938287297342327" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1842721ed243f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8712332982288845007" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2df20742aa27237ea5fea41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6de7884a1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b75e6e1a8e87d4604ecd48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f6c0b2a34" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3f74cf2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60fd4532591c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa41059e07ce0117" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5992725889300696291" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f0d9f1b9301b4bd3548fb8f486d0a06c99e6e01f9bf1bd1386f5d143fb0de1ba29bf40c77a04ce342185a4a244db7e8fe877ff415eaff48f9631be0d8044a1cbf4953c3ec67031fdeb6b51b8695ff7d8c04ab7747a1842721ed243f1b78e86caffe3f08cf4ca2df20742aa27237ea5fea4145f6de7884a14bb75e6e1a8e87d4604ecd48459f6c0b2a3444f3f74cf24660fd4532591c48fa41059e07ce01171b532a70720c0e0ce3ffffff", + "cborBytes": [ + 159, 13, 159, 27, 147, 1, 180, 189, 53, 72, 251, 143, 72, 109, 10, 6, 201, 158, 110, 1, 249, 191, 27, 209, 56, + 111, 93, 20, 63, 176, 222, 27, 162, 155, 244, 12, 119, 160, 76, 227, 66, 24, 90, 74, 36, 77, 183, 232, 254, 135, + 127, 244, 21, 234, 255, 72, 249, 99, 27, 224, 216, 4, 74, 28, 191, 73, 83, 195, 236, 103, 3, 31, 222, 182, 181, + 27, 134, 149, 255, 125, 140, 4, 171, 119, 71, 161, 132, 39, 33, 237, 36, 63, 27, 120, 232, 108, 175, 254, 63, 8, + 207, 76, 162, 223, 32, 116, 42, 162, 114, 55, 234, 95, 234, 65, 69, 246, 222, 120, 132, 161, 75, 183, 94, 110, 26, + 142, 135, 212, 96, 78, 205, 72, 69, 159, 108, 11, 42, 52, 68, 243, 247, 76, 242, 70, 96, 253, 69, 50, 89, 28, 72, + 250, 65, 5, 158, 7, 206, 1, 23, 27, 83, 42, 112, 114, 12, 14, 12, 227, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2817, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13638097525538130662" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5828918896749885369" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10873094924691982186" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2924119142832268832" + } + } + ] + }, + "cborHex": "9fd8669f1bbd44417115d58ae69f1b50e47ada8956b7b91b96e4fe39d35e476affff1b28948ede256fe620ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 189, 68, 65, 113, 21, 213, 138, 230, 159, 27, 80, 228, 122, 218, 137, 86, 183, 185, 27, + 150, 228, 254, 57, 211, 94, 71, 106, 255, 255, 27, 40, 148, 142, 222, 37, 111, 230, 32, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2818, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2836356178214340280" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32c1e4c3e5b4f25a70cd2a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11269827147030484485" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1aacf95a837" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3584d58" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d4d5437ec8188eaf195e0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cefa8492" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15258644822063249021" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18243623789246965059" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "762803979242891532" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18107852686030816956" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "304f9e0fb1b2cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10449731338351949782" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4138493647932019686" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b275cc2ea9af346b84b32c1e4c3e5b4f25a70cd2a1b9c66781482ce560546b1aacf95a83744c3584d584b3d4d5437ec8188eaf195e042ea3544cefa8492ff9fd8669f1bd3c1989f34eef67d80ff1bfd2e5f2d6dee65431b0a96062d7806e90c1bfb4c041413f846bcffbf47304f9e0fb1b2cf1b9104e74984bc37d6ff9f1b396ee20bce32d3e6ffff", + "cborBytes": [ + 159, 191, 27, 39, 92, 194, 234, 154, 243, 70, 184, 75, 50, 193, 228, 195, 229, 180, 242, 90, 112, 205, 42, 27, + 156, 102, 120, 20, 130, 206, 86, 5, 70, 177, 170, 207, 149, 168, 55, 68, 195, 88, 77, 88, 75, 61, 77, 84, 55, 236, + 129, 136, 234, 241, 149, 224, 66, 234, 53, 68, 206, 250, 132, 146, 255, 159, 216, 102, 159, 27, 211, 193, 152, + 159, 52, 238, 246, 125, 128, 255, 27, 253, 46, 95, 45, 109, 238, 101, 67, 27, 10, 150, 6, 45, 120, 6, 233, 12, 27, + 251, 76, 4, 20, 19, 248, 70, 188, 255, 191, 71, 48, 79, 158, 15, 177, 178, 207, 27, 145, 4, 231, 73, 132, 188, 55, + 214, 255, 159, 27, 57, 110, 226, 11, 206, 50, 211, 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2819, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7586232833783411522" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "919e" + }, + { + "_tag": "ByteArray", + "bytearray": "f7268031ef7cd803" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21c6a668d81d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17751162893170850129" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "689550ad34e9ab9c9e3d40" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d3f42d853" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed82d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4f1c106" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b8ee2e1fe81184ff2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bedb7ba7a131d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12069842976591700952" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2225157747245896641" + } + } + ] + }, + "cborHex": "9fd8669f1b6947b6919910b3429f42919e48f7268031ef7cd803ffffbf4621c6a668d81d1bf658cc9a058b395141704b689550ad34e9ab9c9e3d40458d3f42d85343ed82d344b4f1c106498b8ee2e1fe81184ff247bedb7ba7a131d61ba780b23d0a7de3d8ff1b1ee1592e85ccd3c1ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 105, 71, 182, 145, 153, 16, 179, 66, 159, 66, 145, 158, 72, 247, 38, 128, 49, 239, 124, + 216, 3, 255, 255, 191, 70, 33, 198, 166, 104, 216, 29, 27, 246, 88, 204, 154, 5, 139, 57, 81, 65, 112, 75, 104, + 149, 80, 173, 52, 233, 171, 156, 158, 61, 64, 69, 141, 63, 66, 216, 83, 67, 237, 130, 211, 68, 180, 241, 193, 6, + 73, 139, 142, 226, 225, 254, 129, 24, 79, 242, 71, 190, 219, 123, 167, 161, 49, 214, 27, 167, 128, 178, 61, 10, + 125, 227, 216, 255, 27, 30, 225, 89, 46, 133, 204, 211, 193, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2820, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "901736420718630738" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "41216e6b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "784218710761626070" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7048538773662685046" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62793d90790ad9b5" + }, + { + "_tag": "ByteArray", + "bytearray": "3c305a5a095b4b8495" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "67421bdcb8af" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2933659798115965162" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8afa3a05ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0fc27ca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f846fa5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "972c00d5" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13733799046925270244" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "941123975486193866" + } + }, + { + "_tag": "ByteArray", + "bytearray": "40a3b9bf8f06cf" + }, + { + "_tag": "ByteArray", + "bytearray": "8f40f2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11211774860890412251" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b0c839c7f3df757529f4441216e6b1b0ae21ac3312959d61b61d170ab7dbb57764862793d90790ad9b5493c305a5a095b4b8495ffffbf4667421bdcb8af1b28b6740b0e8bd8ea458afa3a05ed44c0fc27ca448f846fa544972c00d5ffd8669f1bbe984177e8943ce49f1b0d0f8b44f87540ca4740a3b9bf8f06cf438f40f21b9b9839d55d0714dbffffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 12, 131, 156, 127, 61, 247, 87, 82, 159, 68, 65, 33, 110, 107, 27, 10, 226, 26, 195, + 49, 41, 89, 214, 27, 97, 209, 112, 171, 125, 187, 87, 118, 72, 98, 121, 61, 144, 121, 10, 217, 181, 73, 60, 48, + 90, 90, 9, 91, 75, 132, 149, 255, 255, 191, 70, 103, 66, 27, 220, 184, 175, 27, 40, 182, 116, 11, 14, 139, 216, + 234, 69, 138, 250, 58, 5, 237, 68, 192, 252, 39, 202, 68, 143, 132, 111, 165, 68, 151, 44, 0, 213, 255, 216, 102, + 159, 27, 190, 152, 65, 119, 232, 148, 60, 228, 159, 27, 13, 15, 139, 68, 248, 117, 64, 202, 71, 64, 163, 185, 191, + 143, 6, 207, 67, 143, 64, 242, 27, 155, 152, 57, 213, 93, 7, 20, 219, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2821, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11388326950169246513" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "939238937370067723" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1567532629905886385" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cac7a8ecae9d5ab16" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16870945833036747675" + } + } + ] + }, + "cborHex": "9f1b9e0b7705f2d87b31bf1b0d08d8d65528830b41111b15c0fe9f2b5fccb1491cac7a8ecae9d5ab16ff1bea21a3d95b03139bff", + "cborBytes": [ + 159, 27, 158, 11, 119, 5, 242, 216, 123, 49, 191, 27, 13, 8, 216, 214, 85, 40, 131, 11, 65, 17, 27, 21, 192, 254, + 159, 43, 95, 204, 177, 73, 28, 172, 122, 142, 202, 233, 213, 171, 22, 255, 27, 234, 33, 163, 217, 91, 3, 19, 155, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2822, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4081797541396856819" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0500" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4007807fcfe925d" + } + } + ] + } + ] + }, + "cborHex": "9fa0d8669f1b38a5753cd405bff380ffbf42050048e4007807fcfe925dffff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 56, 165, 117, 60, 212, 5, 191, 243, 128, 255, 191, 66, 5, 0, 72, 228, 0, 120, 7, 252, + 254, 146, 93, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2823, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11100089917489848433" + } + } + ] + }, + "cborHex": "9f1b9a0b70f81ae0a071ff", + "cborBytes": [159, 27, 154, 11, 112, 248, 26, 224, 160, 113, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2824, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ab622344f931bd17cb159727" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0692073ee1f800f9fffa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05030434" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4882703098362846541" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab09dd705e2bc39739163a00" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5436813422810894091" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f90705" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13391554764160084118" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10725189369530005039" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16864648243817250377" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04b06b02bbc403eb" + } + } + ] + } + ] + }, + "cborHex": "9fd905069f4cab622344f931bd17cb159727ffbf0c4a0692073ee1f800f9fffa0d44050304341b43c2d899299ddd4d4cab09dd705e2bc39739163a001b4b737100a8b80f0b43f907051bb9d85c1b43f3a8961b94d786e837a1b62f1bea0b44399aa47e494804b06b02bbc403ebffff", + "cborBytes": [ + 159, 217, 5, 6, 159, 76, 171, 98, 35, 68, 249, 49, 189, 23, 203, 21, 151, 39, 255, 191, 12, 74, 6, 146, 7, 62, + 225, 248, 0, 249, 255, 250, 13, 68, 5, 3, 4, 52, 27, 67, 194, 216, 153, 41, 157, 221, 77, 76, 171, 9, 221, 112, + 94, 43, 195, 151, 57, 22, 58, 0, 27, 75, 115, 113, 0, 168, 184, 15, 11, 67, 249, 7, 5, 27, 185, 216, 92, 27, 67, + 243, 168, 150, 27, 148, 215, 134, 232, 55, 161, 182, 47, 27, 234, 11, 68, 57, 154, 164, 126, 73, 72, 4, 176, 107, + 2, 187, 196, 3, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2825, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5382a7bc2f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4946b1cadd39bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7379249748939153014" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "804e338d0104e4e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5921" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c1dcb518f230f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9484411982036412200" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0a267008b75df4b006366cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16381100317240464923" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e41df88a174fe3a2410124a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8014571719525654831" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2234698926980719727" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c06f89" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3447913353086513887" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cfe4d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4250678606355541457" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb38ffd2334bcee18ef1b1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15091165758361317706" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83d21c66fbe1633e50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16780110465505439936" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10151006975085388608" + } + } + } + ] + } + ] + }, + "cborHex": "9f455382a7bc2fbf474946b1cadd39bf1b66685c8cba689e7648804e338d0104e4e1425921478c1dcb518f230f1b839f667274bd27284ca0a267008b75df4b006366cc1be3555bf29f28161b4ce41df88a174fe3a2410124a01b6f397a841137e12fffbf1b1f033ed58aa1e46f43c06f891b2fd972ed430c32df43cfe4d31b3afd71abe22cadd14bfb38ffd2334bcee18ef1b11bd16e974d01aa314a4983d21c66fbe1633e501be8deed90444430c01b8cdf9f0fbe7a2340ffff", + "cborBytes": [ + 159, 69, 83, 130, 167, 188, 47, 191, 71, 73, 70, 177, 202, 221, 57, 191, 27, 102, 104, 92, 140, 186, 104, 158, + 118, 72, 128, 78, 51, 141, 1, 4, 228, 225, 66, 89, 33, 71, 140, 29, 203, 81, 143, 35, 15, 27, 131, 159, 102, 114, + 116, 189, 39, 40, 76, 160, 162, 103, 0, 139, 117, 223, 75, 0, 99, 102, 204, 27, 227, 85, 91, 242, 159, 40, 22, 27, + 76, 228, 29, 248, 138, 23, 79, 227, 162, 65, 1, 36, 160, 27, 111, 57, 122, 132, 17, 55, 225, 47, 255, 191, 27, 31, + 3, 62, 213, 138, 161, 228, 111, 67, 192, 111, 137, 27, 47, 217, 114, 237, 67, 12, 50, 223, 67, 207, 228, 211, 27, + 58, 253, 113, 171, 226, 44, 173, 209, 75, 251, 56, 255, 210, 51, 75, 206, 225, 142, 241, 177, 27, 209, 110, 151, + 77, 1, 170, 49, 74, 73, 131, 210, 28, 102, 251, 225, 99, 62, 80, 27, 232, 222, 237, 144, 68, 68, 48, 192, 27, 140, + 223, 159, 15, 190, 122, 35, 64, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2826, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f0780ff", + "cborBytes": [159, 7, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2827, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "30d4f20193708a6b3b21a8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8761572423175320122" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16675296286725156566" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8534531823570662945" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aa322f3bc05cb318ba" + }, + { + "_tag": "ByteArray", + "bytearray": "485930e08bf265" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b1d78ee7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4283317198223276003" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10447986152483714195" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17694497378477735668" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11849809897605658043" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ca5f956f6731506cd36b9ac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1c0377db5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29a36f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51cc8868f254d6811d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0931629" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6708aa7264e49f0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9855816429732251685" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6a6d58009edc5d9f3ac5cd5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "300ea3d1c746530f4df6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5f0fe34b7008d53db57e6b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60bc" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3c60da121cd3" + } + ] + } + ] + }, + "cborHex": "9f4b30d4f20193708a6b3b21a8d8669f1b79975bb2b539323a9f1be76a8d9f8ea4aed69f1b7670bf79c432362149aa322f3bc05cb318ba47485930e08bf265ffffff44b1d78ee71b3b71664c3c6b77e3d8669f1b90feb40cc4fdf4939f1bf58f7b9dc33efef49f1ba472fb51a2b175bbffbf4c0ca5f956f6731506cd36b9ac45b1c0377db54329a36f411c4951cc8868f254d6811d44f093162948b6708aa7264e49f01b88c6e4d311a648254cb6a6d58009edc5d9f3ac5cd54a300ea3d1c746530f4df64cf5f0fe34b7008d53db57e6b04260bcff463c60da121cd3ffffff", + "cborBytes": [ + 159, 75, 48, 212, 242, 1, 147, 112, 138, 107, 59, 33, 168, 216, 102, 159, 27, 121, 151, 91, 178, 181, 57, 50, 58, + 159, 27, 231, 106, 141, 159, 142, 164, 174, 214, 159, 27, 118, 112, 191, 121, 196, 50, 54, 33, 73, 170, 50, 47, + 59, 192, 92, 179, 24, 186, 71, 72, 89, 48, 224, 139, 242, 101, 255, 255, 255, 68, 177, 215, 142, 231, 27, 59, 113, + 102, 76, 60, 107, 119, 227, 216, 102, 159, 27, 144, 254, 180, 12, 196, 253, 244, 147, 159, 27, 245, 143, 123, 157, + 195, 62, 254, 244, 159, 27, 164, 114, 251, 81, 162, 177, 117, 187, 255, 191, 76, 12, 165, 249, 86, 246, 115, 21, + 6, 205, 54, 185, 172, 69, 177, 192, 55, 125, 181, 67, 41, 163, 111, 65, 28, 73, 81, 204, 136, 104, 242, 84, 214, + 129, 29, 68, 240, 147, 22, 41, 72, 182, 112, 138, 167, 38, 78, 73, 240, 27, 136, 198, 228, 211, 17, 166, 72, 37, + 76, 182, 166, 213, 128, 9, 237, 197, 217, 243, 172, 92, 213, 74, 48, 14, 163, 209, 199, 70, 83, 15, 77, 246, 76, + 245, 240, 254, 52, 183, 0, 141, 83, 219, 87, 230, 176, 66, 96, 188, 255, 70, 60, 96, 218, 18, 28, 211, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2828, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15100427129500949261" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1676684665735687864" + } + } + ] + }, + "cborHex": "9f1bd18f7e7802935b0d1b1744c7d1ed852eb8ff", + "cborBytes": [159, 27, 209, 143, 126, 120, 2, 147, 91, 13, 27, 23, 68, 199, 209, 237, 133, 46, 184, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2829, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4284ca239a275ab3db6c" + } + ] + }, + "cborHex": "9f4a4284ca239a275ab3db6cff", + "cborBytes": [159, 74, 66, 132, 202, 35, 154, 39, 90, 179, 219, 108, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2830, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13426346870748449882" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9661514238168835313" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8436462843994871890" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5789813983858867371" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e50bf32dc0fab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9120090902666901904" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff5f64" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f002" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7044616944893531004" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c833323eff4a579fc9e70438" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6078757781891968777" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bb69" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aecc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1290220a8d9be658a" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15836295215592186194" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f1bba53f757d6238c5a1b86149802be6ea4f1bf1b75145642211898521b50598d247f7f3cab479e50bf32dc0fab1b7e91125b0cbb799043ff5f6442f002ff9f1b61c381c99313937c9f4cc833323eff4a579fc9e704381b545c15fef94fef09ff9f42bb69ffbf42aecc49e1290220a8d9be658aff1bdbc5d29823972152ffa0ff", + "cborBytes": [ + 159, 27, 186, 83, 247, 87, 214, 35, 140, 90, 27, 134, 20, 152, 2, 190, 110, 164, 241, 191, 27, 117, 20, 86, 66, + 33, 24, 152, 82, 27, 80, 89, 141, 36, 127, 127, 60, 171, 71, 158, 80, 191, 50, 220, 15, 171, 27, 126, 145, 18, 91, + 12, 187, 121, 144, 67, 255, 95, 100, 66, 240, 2, 255, 159, 27, 97, 195, 129, 201, 147, 19, 147, 124, 159, 76, 200, + 51, 50, 62, 255, 74, 87, 159, 201, 231, 4, 56, 27, 84, 92, 21, 254, 249, 79, 239, 9, 255, 159, 66, 187, 105, 255, + 191, 66, 174, 204, 73, 225, 41, 2, 32, 168, 217, 190, 101, 138, 255, 27, 219, 197, 210, 152, 35, 151, 33, 82, 255, + 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2831, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "293744738220255576" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17869337729756546740" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "086162ac3923dde599bb" + }, + { + "_tag": "ByteArray", + "bytearray": "24eb54fa236fb74cb12068" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6456560562923600694" + } + }, + { + "_tag": "ByteArray", + "bytearray": "065192102db00e54" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15521261596191994132" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13126970868044713518" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a307" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2683486880165443200" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5006266591544140993" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8949203507485450489" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7325548517087388671" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a4c3f452608ac40bf81d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6dbe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15612680700930708349" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2312a54b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13936507842005764055" + } + } + ] + }, + "cborHex": "9fd8669f1b04139748784229589fd8669f1bf7fca3fd499fc6b49f4a086162ac3923dde599bb4b24eb54fa236fb74cb120681b599a4f9fa7db7b3648065192102db00e54ffffffff9fd9050880d8669f1bd766992fc2efb1149f1bb62c5e746eb4ce2effff9f42a3071b253da9198baeb680ff01ff9fbf1b4579d4f0cfe4e4c11b7c31f52cd659a0f91b65a9939059e223ff4b9a4c3f452608ac40bf81d3426dbe1bd8ab6260c292537d45d2312a54b44189ffa0ff1bc1686c0b243307d7ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 4, 19, 151, 72, 120, 66, 41, 88, 159, 216, 102, 159, 27, 247, 252, 163, 253, 73, 159, 198, + 180, 159, 74, 8, 97, 98, 172, 57, 35, 221, 229, 153, 187, 75, 36, 235, 84, 250, 35, 111, 183, 76, 177, 32, 104, + 27, 89, 154, 79, 159, 167, 219, 123, 54, 72, 6, 81, 146, 16, 45, 176, 14, 84, 255, 255, 255, 255, 159, 217, 5, 8, + 128, 216, 102, 159, 27, 215, 102, 153, 47, 194, 239, 177, 20, 159, 27, 182, 44, 94, 116, 110, 180, 206, 46, 255, + 255, 159, 66, 163, 7, 27, 37, 61, 169, 25, 139, 174, 182, 128, 255, 1, 255, 159, 191, 27, 69, 121, 212, 240, 207, + 228, 228, 193, 27, 124, 49, 245, 44, 214, 89, 160, 249, 27, 101, 169, 147, 144, 89, 226, 35, 255, 75, 154, 76, 63, + 69, 38, 8, 172, 64, 191, 129, 211, 66, 109, 190, 27, 216, 171, 98, 96, 194, 146, 83, 125, 69, 210, 49, 42, 84, + 180, 65, 137, 255, 160, 255, 27, 193, 104, 108, 11, 36, 51, 7, 215, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2832, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13862481264280136212" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14476824607721453207" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15dc2ce622cd11" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5218346764308614034" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14526590730438604810" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15502579163850182432" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e72910932823df2a0ab1f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b341dfaf17b7ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7643039019890263906" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c176" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb9ebbbf3d7f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "95807249673879011" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "06723a" + }, + { + "_tag": "ByteArray", + "bytearray": "617e5732a1906a31022e40" + }, + { + "_tag": "ByteArray", + "bytearray": "e763d622ae08" + }, + { + "_tag": "ByteArray", + "bytearray": "77788584171cb2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7447741134740218894" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e32c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7219054503636211116" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "292302325828398197" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "027af395" + }, + { + "_tag": "ByteArray", + "bytearray": "8844fb9151a94af18998" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11570205803773747888" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12297737596491464159" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3151240750826511377" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "45684275795428345" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bc0616d4366ecea149f416fbf1bc8e803477adef6974715dc2ce622cd11ffd8669f1b486b4abbf16c8b9280ffffd8669f1bc998d14ddd46780a9fbf1bd724399d03a98f204be72910932823df2a0ab1f947b341dfaf17b7ec1b6a11877e7902476242c17641c246fb9ebbbf3d7f1b0154602f9bb7fde3ff9f4306723a4b617e5732a1906a31022e4046e763d622ae084777788584171cb21b675bb11a2b41640eff9f42e32c1b642f3bd2a76b95acffd8669f1b040e776aaa05ac759f44027af3954a8844fb9151a94af189981ba091a0e08018e2b01baaaa573013d6fddf1b2bbb74c452bfdc11ffffbf41a41b00a24d9b569b83f9ffffffff", + "cborBytes": [ + 159, 27, 192, 97, 109, 67, 102, 236, 234, 20, 159, 65, 111, 191, 27, 200, 232, 3, 71, 122, 222, 246, 151, 71, 21, + 220, 44, 230, 34, 205, 17, 255, 216, 102, 159, 27, 72, 107, 74, 187, 241, 108, 139, 146, 128, 255, 255, 216, 102, + 159, 27, 201, 152, 209, 77, 221, 70, 120, 10, 159, 191, 27, 215, 36, 57, 157, 3, 169, 143, 32, 75, 231, 41, 16, + 147, 40, 35, 223, 42, 10, 177, 249, 71, 179, 65, 223, 175, 23, 183, 236, 27, 106, 17, 135, 126, 121, 2, 71, 98, + 66, 193, 118, 65, 194, 70, 251, 158, 187, 191, 61, 127, 27, 1, 84, 96, 47, 155, 183, 253, 227, 255, 159, 67, 6, + 114, 58, 75, 97, 126, 87, 50, 161, 144, 106, 49, 2, 46, 64, 70, 231, 99, 214, 34, 174, 8, 71, 119, 120, 133, 132, + 23, 28, 178, 27, 103, 91, 177, 26, 43, 65, 100, 14, 255, 159, 66, 227, 44, 27, 100, 47, 59, 210, 167, 107, 149, + 172, 255, 216, 102, 159, 27, 4, 14, 119, 106, 170, 5, 172, 117, 159, 68, 2, 122, 243, 149, 74, 136, 68, 251, 145, + 81, 169, 74, 241, 137, 152, 27, 160, 145, 160, 224, 128, 24, 226, 176, 27, 170, 170, 87, 48, 19, 214, 253, 223, + 27, 43, 187, 116, 196, 82, 191, 220, 17, 255, 255, 191, 65, 164, 27, 0, 162, 77, 155, 86, 155, 131, 249, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2833, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12618377049383872344" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "122011272376312267" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16547279422377211324" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22de2fbc64c3176b8bba86ef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18261404460667557576" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2830586545821350302" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8b485fe69de411a23" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16539824274108019462" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1635610598988891802" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c6da6785" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15394712251369295557" + } + }, + { + "_tag": "ByteArray", + "bytearray": "441b48456c42e36b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "446747630871179613" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a6ce2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6339234157538455000" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9df98b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8438853142997610062" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d3c5ff92c0a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15554863168208945814" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec932d6ca2892b" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "396476169548632236" + } + } + ] + }, + "cborHex": "9fbf1baf1d7b124677a7581b01b1789b149561cb1be5a3bef6a1ecb5bc4c22de2fbc64c3176b8bba86ef1bfd6d8a9a99d2d6c81b2748437761ae799e49f8b485fe69de411a234114ff9fd8669f1be589428ba99773069f1b16b2db2c8798c69a44c6da67851bd5a5013a5a388ec548441b48456c42e36bffffbf1b06332a9a7252f15d438a6ce21b57f97be12c1a2dd8439df98b1b751cd438fc0fae4e464d3c5ff92c0a1bd7ddf9a366e6c29647ec932d6ca2892bffff1b058090f9bfda90acff", + "cborBytes": [ + 159, 191, 27, 175, 29, 123, 18, 70, 119, 167, 88, 27, 1, 177, 120, 155, 20, 149, 97, 203, 27, 229, 163, 190, 246, + 161, 236, 181, 188, 76, 34, 222, 47, 188, 100, 195, 23, 107, 139, 186, 134, 239, 27, 253, 109, 138, 154, 153, 210, + 214, 200, 27, 39, 72, 67, 119, 97, 174, 121, 158, 73, 248, 180, 133, 254, 105, 222, 65, 26, 35, 65, 20, 255, 159, + 216, 102, 159, 27, 229, 137, 66, 139, 169, 151, 115, 6, 159, 27, 22, 178, 219, 44, 135, 152, 198, 154, 68, 198, + 218, 103, 133, 27, 213, 165, 1, 58, 90, 56, 142, 197, 72, 68, 27, 72, 69, 108, 66, 227, 107, 255, 255, 191, 27, 6, + 51, 42, 154, 114, 82, 241, 93, 67, 138, 108, 226, 27, 87, 249, 123, 225, 44, 26, 45, 216, 67, 157, 249, 139, 27, + 117, 28, 212, 56, 252, 15, 174, 78, 70, 77, 60, 95, 249, 44, 10, 27, 215, 221, 249, 163, 102, 230, 194, 150, 71, + 236, 147, 45, 108, 162, 137, 43, 255, 255, 27, 5, 128, 144, 249, 191, 218, 144, 172, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2834, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5f836732ec9bce9f" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f485f836732ec9bce9fa0ff", + "cborBytes": [159, 72, 95, 131, 103, 50, 236, 155, 206, 159, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2835, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12838363606230842500" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + }, + "cborHex": "9f9f1bb22b07ade6b13c84ff07ff", + "cborBytes": [159, 159, 27, 178, 43, 7, 173, 230, 177, 60, 132, 255, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2836, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "10a687774b" + } + ] + }, + "cborHex": "9f4510a687774bff", + "cborBytes": [159, 69, 16, 166, 135, 119, 75, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2837, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "96798150586347274" + } + } + ] + }, + "cborHex": "9f1b0157e567b49d2f0aff", + "cborBytes": [159, 27, 1, 87, 229, 103, 180, 157, 47, 10, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2838, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ef85c4dc536cd9d411" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9693855d06990580e2b4" + }, + { + "_tag": "ByteArray", + "bytearray": "1b9a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16633302703140072434" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16702072871910038107" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "330974297057690519" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14991127156362907598" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4954563926863873549" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f8ee04a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "683b999e38d159a5e5c8" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "780561" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4529649180323478721" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9735824305902665218" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8189194174650605153" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77be38ab9be1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8191902870827218590" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f44b477200" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10755707089698061478" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7291817640975048203" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14078199704193427393" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d6d515ec37e91a8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15337410448820801097" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5342249715243123310" + } + } + } + ] + } + ] + }, + "cborHex": "9f49ef85c4dc536cd9d4119f4a9693855d06990580e2b4421b9a9f1be6d55cae76356bf21be7c9aec91ee2da5bff9f1b0497db5e9de883971bd00b2eb8e9b90fce1b44c225a41daf860dffffbf447f8ee04a4a683b999e38d159a5e5c8ff43780561bf1b3edc8bee2e51fcc11b871c989fa4f13e021b71a5dcb6b0bf5e614677be38ab9be11b71af7c422a28b69e45f44b4772001b9543f29ca59a7ca61b6531bd82c13e9e0b1bc35fd00a9d7567c1485d6d515ec37e91a81bd4d96d8ac8540e491b4a237bcfc27f826effff", + "cborBytes": [ + 159, 73, 239, 133, 196, 220, 83, 108, 217, 212, 17, 159, 74, 150, 147, 133, 93, 6, 153, 5, 128, 226, 180, 66, 27, + 154, 159, 27, 230, 213, 92, 174, 118, 53, 107, 242, 27, 231, 201, 174, 201, 30, 226, 218, 91, 255, 159, 27, 4, + 151, 219, 94, 157, 232, 131, 151, 27, 208, 11, 46, 184, 233, 185, 15, 206, 27, 68, 194, 37, 164, 29, 175, 134, 13, + 255, 255, 191, 68, 127, 142, 224, 74, 74, 104, 59, 153, 158, 56, 209, 89, 165, 229, 200, 255, 67, 120, 5, 97, 191, + 27, 62, 220, 139, 238, 46, 81, 252, 193, 27, 135, 28, 152, 159, 164, 241, 62, 2, 27, 113, 165, 220, 182, 176, 191, + 94, 97, 70, 119, 190, 56, 171, 155, 225, 27, 113, 175, 124, 66, 42, 40, 182, 158, 69, 244, 75, 71, 114, 0, 27, + 149, 67, 242, 156, 165, 154, 124, 166, 27, 101, 49, 189, 130, 193, 62, 158, 11, 27, 195, 95, 208, 10, 157, 117, + 103, 193, 72, 93, 109, 81, 94, 195, 126, 145, 168, 27, 212, 217, 109, 138, 200, 84, 14, 73, 27, 74, 35, 123, 207, + 194, 127, 130, 110, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2839, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1934303685943508096" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8283878050023489166" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2667065990515023988" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3604135096323348603" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4889696530066709580" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3024867090309764100" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9293766745839969891" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e43a739e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17345842247516018569" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17369739159638919971" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17764908118959182177" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2878638472958457525" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5b" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18059397988444342691" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15784549774613687831" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23afa79d089420a6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5d3" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c5aee9ac8db9757bde7ec1" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d03f31852678" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18445909169130142019" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b1ad806f438643c801b72f63f32564e3e8e1b250352633d2c60741b320475c64adf187b1b43dbb1165e161c4c1b29fa7c979aaed4041b80fa179d6721266344e43a739e1bf0b8cf9f3527d7891bf10db5bca3784b231bf689a1cfca03d161415dff9fd8669f1b27f2fa70817636b59f415bffffa0d8669f1bfa9fdec9a6a109a39f1bdb0dfc63cf522e17ffffff9fbf4823afa79d089420a642f5d3ff4bc5aee9ac8db9757bde7ec1809f46d03f31852678ff1bfffd08a8a11f7943ffff", + "cborBytes": [ + 159, 191, 27, 26, 216, 6, 244, 56, 100, 60, 128, 27, 114, 246, 63, 50, 86, 78, 62, 142, 27, 37, 3, 82, 99, 61, 44, + 96, 116, 27, 50, 4, 117, 198, 74, 223, 24, 123, 27, 67, 219, 177, 22, 94, 22, 28, 76, 27, 41, 250, 124, 151, 154, + 174, 212, 4, 27, 128, 250, 23, 157, 103, 33, 38, 99, 68, 228, 58, 115, 158, 27, 240, 184, 207, 159, 53, 39, 215, + 137, 27, 241, 13, 181, 188, 163, 120, 75, 35, 27, 246, 137, 161, 207, 202, 3, 209, 97, 65, 93, 255, 159, 216, 102, + 159, 27, 39, 242, 250, 112, 129, 118, 54, 181, 159, 65, 91, 255, 255, 160, 216, 102, 159, 27, 250, 159, 222, 201, + 166, 161, 9, 163, 159, 27, 219, 13, 252, 99, 207, 82, 46, 23, 255, 255, 255, 159, 191, 72, 35, 175, 167, 157, 8, + 148, 32, 166, 66, 245, 211, 255, 75, 197, 174, 233, 172, 141, 185, 117, 123, 222, 126, 193, 128, 159, 70, 208, 63, + 49, 133, 38, 120, 255, 27, 255, 253, 8, 168, 161, 31, 121, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2840, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17183691302535831748" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0535" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0584" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2789809196548766403" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16093552571748650855" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + }, + "cborHex": "9fd8669f1bee78bc32519e20c49fd905059f4205351bffffffffffffffedffffff4205849f1b26b764aee7683ac3801bdf57c8cbf5270f670380ff03ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 238, 120, 188, 50, 81, 158, 32, 196, 159, 217, 5, 5, 159, 66, 5, 53, 27, 255, 255, 255, + 255, 255, 255, 255, 237, 255, 255, 255, 66, 5, 132, 159, 27, 38, 183, 100, 174, 231, 104, 58, 195, 128, 27, 223, + 87, 200, 203, 245, 39, 15, 103, 3, 128, 255, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2841, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "36fb" + }, + { + "_tag": "ByteArray", + "bytearray": "1d0a" + }, + { + "_tag": "ByteArray", + "bytearray": "72277a95978582ff4ef084" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "070756e1c10706fa4f0504" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13169893804267737284" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9831880491009586546" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc1502000b12f87d58" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [] + } + ] + }, + "cborHex": "9f4236fb421d0a4b72277a95978582ff4ef084d905019f4b070756e1c10706fa4f0504a0d8669f1bb6c4dca34cff10c49f1b8871db370cb8357249fc1502000b12f87d58ffffffd87980ff", + "cborBytes": [ + 159, 66, 54, 251, 66, 29, 10, 75, 114, 39, 122, 149, 151, 133, 130, 255, 78, 240, 132, 217, 5, 1, 159, 75, 7, 7, + 86, 225, 193, 7, 6, 250, 79, 5, 4, 160, 216, 102, 159, 27, 182, 196, 220, 163, 76, 255, 16, 196, 159, 27, 136, + 113, 219, 55, 12, 184, 53, 114, 73, 252, 21, 2, 0, 11, 18, 248, 125, 88, 255, 255, 255, 216, 121, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2842, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16830650204186104189" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14936311683542692786" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13067333768132334357" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4936095057457891988" + } + }, + { + "_tag": "ByteArray", + "bytearray": "40b1" + }, + { + "_tag": "ByteArray", + "bytearray": "9e12d88dd89c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9980122135652142176" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8ca658c1b7de" + }, + { + "_tag": "ByteArray", + "bytearray": "85418d41e88c911c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1243586575881481155" + } + } + ] + }, + "cborHex": "9fd8669f1be9927b30275e517d80ffd8669f1bcf487057181433b29f9f1bb5587ed412fe93151b4480884d5d56ca944240b1469e12d88dd89c1b8a808434968f0c60ff468ca658c1b7de4885418d41e88c911cffff1b11421b66e6dc2bc3ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 233, 146, 123, 48, 39, 94, 81, 125, 128, 255, 216, 102, 159, 27, 207, 72, 112, 87, 24, 20, + 51, 178, 159, 159, 27, 181, 88, 126, 212, 18, 254, 147, 21, 27, 68, 128, 136, 77, 93, 86, 202, 148, 66, 64, 177, + 70, 158, 18, 216, 141, 216, 156, 27, 138, 128, 132, 52, 150, 143, 12, 96, 255, 70, 140, 166, 88, 193, 183, 222, + 72, 133, 65, 141, 65, 232, 140, 145, 28, 255, 255, 27, 17, 66, 27, 102, 230, 220, 43, 195, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2843, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17061960353000869142" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e498e3f57a37da5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7831284350028419578" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4824901599728776143" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c2f773eaf139" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5438126198132772259" + } + }, + { + "_tag": "ByteArray", + "bytearray": "50ea7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13856706603726080385" + } + }, + { + "_tag": "ByteArray", + "bytearray": "194d84be" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cf3075ace5f3bbc9a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38c19ca0e27b075827f55ea4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8aa813591b9e698f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae798249928fd429" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1becc8428afc6a4d16486e498e3f57a37da5d8669f1b6cae4f9fda8511fa9fd8669f1b42f57e71080c33cf9f46c2f773eaf1391b4b781af6fb730da34350ea7c1bc04ce93d77e7098144194d84beffffbf494cf3075ace5f3bbc9a4c38c19ca0e27b075827f55ea4488aa813591b9e698f48ae798249928fd429ffffffff", + "cborBytes": [ + 159, 27, 236, 200, 66, 138, 252, 106, 77, 22, 72, 110, 73, 142, 63, 87, 163, 125, 165, 216, 102, 159, 27, 108, + 174, 79, 159, 218, 133, 17, 250, 159, 216, 102, 159, 27, 66, 245, 126, 113, 8, 12, 51, 207, 159, 70, 194, 247, + 115, 234, 241, 57, 27, 75, 120, 26, 246, 251, 115, 13, 163, 67, 80, 234, 124, 27, 192, 76, 233, 61, 119, 231, 9, + 129, 68, 25, 77, 132, 190, 255, 255, 191, 73, 76, 243, 7, 90, 206, 95, 59, 188, 154, 76, 56, 193, 156, 160, 226, + 123, 7, 88, 39, 245, 94, 164, 72, 138, 168, 19, 89, 27, 158, 105, 143, 72, 174, 121, 130, 73, 146, 143, 212, 41, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2844, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fecec1c9eca2b4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14948398520501891258" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "efbc01957d" + }, + { + "_tag": "ByteArray", + "bytearray": "2cc2759b7709778ca4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9667670632163896429" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7429625954726682248" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10831146374571513763" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2504648365184355380" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12411108575084553252" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ac4359fbad05ad2975a7da5" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12270735754086744870" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8aeb9fc32d5dd94eb91eb1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18329753205463131134" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13455723802143244932" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "920c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26a3fe44e91585" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3f857a7159d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11395728803389757557" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6c7b636dd24d3ba611c7" + } + ] + }, + "cborHex": "9f47fecec1c9eca2b4d8669f1bcf7361411f7d70ba9f8045efbc01957d492cc2759b7709778ca4bf1b862a7737eb9aec6d1b671b557125819e881b964ff63de69857a31b22c24c6afe138c341bac3d1d7dfeb824244c2ac4359fbad05ad2975a7da5ffffffbf1baa4a6927bb0683264b8aeb9fc32d5dd94eb91eb11bfe605d6cd83523fe1bbabc5581ae84428442920c4726a3fe44e9158546a3f857a7159d1b9e25c2f832bbd875ff4a6c7b636dd24d3ba611c7ff", + "cborBytes": [ + 159, 71, 254, 206, 193, 201, 236, 162, 180, 216, 102, 159, 27, 207, 115, 97, 65, 31, 125, 112, 186, 159, 128, 69, + 239, 188, 1, 149, 125, 73, 44, 194, 117, 155, 119, 9, 119, 140, 164, 191, 27, 134, 42, 119, 55, 235, 154, 236, + 109, 27, 103, 27, 85, 113, 37, 129, 158, 136, 27, 150, 79, 246, 61, 230, 152, 87, 163, 27, 34, 194, 76, 106, 254, + 19, 140, 52, 27, 172, 61, 29, 125, 254, 184, 36, 36, 76, 42, 196, 53, 159, 186, 208, 90, 210, 151, 90, 125, 165, + 255, 255, 255, 191, 27, 170, 74, 105, 39, 187, 6, 131, 38, 75, 138, 235, 159, 195, 45, 93, 217, 78, 185, 30, 177, + 27, 254, 96, 93, 108, 216, 53, 35, 254, 27, 186, 188, 85, 129, 174, 132, 66, 132, 66, 146, 12, 71, 38, 163, 254, + 68, 233, 21, 133, 70, 163, 248, 87, 167, 21, 157, 27, 158, 37, 194, 248, 50, 187, 216, 117, 255, 74, 108, 123, 99, + 109, 210, 77, 59, 166, 17, 199, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2845, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13634011099884081852" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a6c0e03a6b0e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15542201094214291436" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca2d6c4e7de0227697" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15854830199332176260" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4767681662597984599" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12799079883086721759" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4649" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7245147203711157940" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "776262508761657599" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1bbd35bcdbf852d2bc477a6c0e03a6b0e91bd7b0fd8c90548fec49ca2d6c4e7de0227697ffd8669f1bdc07ac10555481849f9f1b422a35363d4bf1571bb19f77575b3b72df4246491b648beefece9e46b41b0ac5d6a38f3130ffffffffff", + "cborBytes": [ + 159, 191, 27, 189, 53, 188, 219, 248, 82, 210, 188, 71, 122, 108, 14, 3, 166, 176, 233, 27, 215, 176, 253, 140, + 144, 84, 143, 236, 73, 202, 45, 108, 78, 125, 224, 34, 118, 151, 255, 216, 102, 159, 27, 220, 7, 172, 16, 85, 84, + 129, 132, 159, 159, 27, 66, 42, 53, 54, 61, 75, 241, 87, 27, 177, 159, 119, 87, 91, 59, 114, 223, 66, 70, 73, 27, + 100, 139, 238, 254, 206, 158, 70, 180, 27, 10, 197, 214, 163, 143, 49, 48, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2846, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11095218967118460399" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d19ac2" + }, + { + "_tag": "ByteArray", + "bytearray": "5c93" + }, + { + "_tag": "ByteArray", + "bytearray": "3edfff01961980ed" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5088896516331792287" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3091465f8fe9fecba231" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14278206532098240288" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12476546153847412199" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2cadcedb11880383b90624" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "058ea292022552242823e7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81e665c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3437362119616859348" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b99fa22dd9845b5ef80ffd905089f9f43d19ac2425c93483edfff01961980edffbf1b469f646b62ade79f4a3091465f8fe9fecba2311bc62661311760af201bad25989f93d755e74b2cadcedb11880383b906244b058ea292022552242823e74481e665c41b2fb3f6a2c8258cd4ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 153, 250, 34, 221, 152, 69, 181, 239, 128, 255, 217, 5, 8, 159, 159, 67, 209, 154, 194, + 66, 92, 147, 72, 62, 223, 255, 1, 150, 25, 128, 237, 255, 191, 27, 70, 159, 100, 107, 98, 173, 231, 159, 74, 48, + 145, 70, 95, 143, 233, 254, 203, 162, 49, 27, 198, 38, 97, 49, 23, 96, 175, 32, 27, 173, 37, 152, 159, 147, 215, + 85, 231, 75, 44, 173, 206, 219, 17, 136, 3, 131, 185, 6, 36, 75, 5, 142, 162, 146, 2, 37, 82, 36, 40, 35, 231, 68, + 129, 230, 101, 196, 27, 47, 179, 246, 162, 200, 37, 140, 212, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2847, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10098772285887251231" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "830107610136078082" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d6a3fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + "cborHex": "9fd87c801b8c260be36fde831fd8669f1b0b8522792b8267029f43d6a3fc10ffff0cff", + "cborBytes": [ + 159, 216, 124, 128, 27, 140, 38, 11, 227, 111, 222, 131, 31, 216, 102, 159, 27, 11, 133, 34, 121, 43, 130, 103, 2, + 159, 67, 214, 163, 252, 16, 255, 255, 12, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2848, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3230643836123483869" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15620027162702608260" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4069591171018618395" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8923434641242865697" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6038467086049495480" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a4e60db183dbd0ab" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13746089290829007023" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2886c5c20d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16747384571046543483" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5126684409474716554" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1808766761509050777" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10116580319108356559" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "43bbed214cf8ef" + }, + { + "_tag": "ByteArray", + "bytearray": "41e6" + }, + { + "_tag": "ByteArray", + "bytearray": "8e0f3b77" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17581676770350631150" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15120417143789477852" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3362917344185423409" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4530009736236502484" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d5e84b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "847717d118c12e44" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b2cd58d73c7f20eddd87e9f1bd8c57bf22ed77784d8669f1b387a179bc1a1761b9f1b7bd668871fb240211b53ccf1d253de49b8ffff48a4e60db183dbd0abbf1bbec3eb614eaa08af452886c5c20d1be86aa9893216407b1b4725a44ede46138aff1b191a07c94d47d999ff9fd8669f1b8c655033462959cf9f4743bbed214cf8ef4241e6448e0f3b771bf3fea9def47c88ee1bd1d68347e74c5fdcffffa01b2eab7b81cd2c16311b3eddd3daa5700dd4bf447d5e84b948847717d118c12e44ffffff", + "cborBytes": [ + 159, 27, 44, 213, 141, 115, 199, 242, 14, 221, 216, 126, 159, 27, 216, 197, 123, 242, 46, 215, 119, 132, 216, 102, + 159, 27, 56, 122, 23, 155, 193, 161, 118, 27, 159, 27, 123, 214, 104, 135, 31, 178, 64, 33, 27, 83, 204, 241, 210, + 83, 222, 73, 184, 255, 255, 72, 164, 230, 13, 177, 131, 219, 208, 171, 191, 27, 190, 195, 235, 97, 78, 170, 8, + 175, 69, 40, 134, 197, 194, 13, 27, 232, 106, 169, 137, 50, 22, 64, 123, 27, 71, 37, 164, 78, 222, 70, 19, 138, + 255, 27, 25, 26, 7, 201, 77, 71, 217, 153, 255, 159, 216, 102, 159, 27, 140, 101, 80, 51, 70, 41, 89, 207, 159, + 71, 67, 187, 237, 33, 76, 248, 239, 66, 65, 230, 68, 142, 15, 59, 119, 27, 243, 254, 169, 222, 244, 124, 136, 238, + 27, 209, 214, 131, 71, 231, 76, 95, 220, 255, 255, 160, 27, 46, 171, 123, 129, 205, 44, 22, 49, 27, 62, 221, 211, + 218, 165, 112, 13, 212, 191, 68, 125, 94, 132, 185, 72, 132, 119, 23, 209, 24, 193, 46, 68, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2849, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11204111893086178646" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17153875755302601874" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10975354254473026198" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3097200873104345940" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5288371459263133257" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18362008563694035526" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15644100220337900732" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13500683499061102726" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f70d6f5df0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9580016785784679349" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8305054519049180065" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "600350470806352504" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15209394302059643353" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3896826641301020108" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b9b7d0067a3218d56d8669f1bee0ecf1d43ff44929f1b98504a8b65efda961b2afb77c8cf6a0b541b496411d2bdb176499f1bfed2f580a9a9e2461bd91b0243afd9ccbcffffffd8669f1bbb5c101cda83c8869f45f70d6f5df01b84f30e8272f9abb51b73417b15402dd3a1ffffd8669f1b0854df928926b2789fd8669f1bd3129f88ef1d81d99f1b36144f2f1a069dccffffffffff", + "cborBytes": [ + 159, 27, 155, 125, 0, 103, 163, 33, 141, 86, 216, 102, 159, 27, 238, 14, 207, 29, 67, 255, 68, 146, 159, 27, 152, + 80, 74, 139, 101, 239, 218, 150, 27, 42, 251, 119, 200, 207, 106, 11, 84, 27, 73, 100, 17, 210, 189, 177, 118, 73, + 159, 27, 254, 210, 245, 128, 169, 169, 226, 70, 27, 217, 27, 2, 67, 175, 217, 204, 188, 255, 255, 255, 216, 102, + 159, 27, 187, 92, 16, 28, 218, 131, 200, 134, 159, 69, 247, 13, 111, 93, 240, 27, 132, 243, 14, 130, 114, 249, + 171, 181, 27, 115, 65, 123, 21, 64, 45, 211, 161, 255, 255, 216, 102, 159, 27, 8, 84, 223, 146, 137, 38, 178, 120, + 159, 216, 102, 159, 27, 211, 18, 159, 136, 239, 29, 129, 217, 159, 27, 54, 20, 79, 47, 26, 6, 157, 204, 255, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2850, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "33e3c7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3910304607278616783" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cd0d3d7fec7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a41b3c5e5cdc7088c891" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89607b0c4906254564697b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca00" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14054147951224714746" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5143578715759698147" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "30" + }, + { + "_tag": "ByteArray", + "bytearray": "703e29e956" + }, + { + "_tag": "ByteArray", + "bytearray": "b5cada2465" + }, + { + "_tag": "ByteArray", + "bytearray": "3185b275dba870d809498afc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3444655126145531296" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cdf7888368e885" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2352802122284534577" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4333e3c7d8669f1b36443152986a50cf9fbf467cd0d3d7fec74aa41b3c5e5cdc7088c8914b89607b0c4906254564697b42ca00ff1bc30a5d197d8875fad8669f1b4761a997131de0e39f413045703e29e95645b5cada24654c3185b275dba870d809498afc1b2fcddf962fa1fda0ffff9f47cdf7888368e8851b20a6d510858e0b31ffffffff", + "cborBytes": [ + 159, 67, 51, 227, 199, 216, 102, 159, 27, 54, 68, 49, 82, 152, 106, 80, 207, 159, 191, 70, 124, 208, 211, 215, + 254, 199, 74, 164, 27, 60, 94, 92, 220, 112, 136, 200, 145, 75, 137, 96, 123, 12, 73, 6, 37, 69, 100, 105, 123, + 66, 202, 0, 255, 27, 195, 10, 93, 25, 125, 136, 117, 250, 216, 102, 159, 27, 71, 97, 169, 151, 19, 29, 224, 227, + 159, 65, 48, 69, 112, 62, 41, 233, 86, 69, 181, 202, 218, 36, 101, 76, 49, 133, 178, 117, 219, 168, 112, 216, 9, + 73, 138, 252, 27, 47, 205, 223, 150, 47, 161, 253, 160, 255, 255, 159, 71, 205, 247, 136, 131, 104, 232, 133, 27, + 32, 166, 213, 16, 133, 142, 11, 49, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2851, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10985582747080516228" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2316889765226172446" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2164748199865742785" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13692084772392344991" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1817810642311187543" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18351008272224547535" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b9874a14dea64e2849f9f1b20273ef7500b501e1b1e0abb04b929f5c1ffffff1bbe040e8e84fb1d9f41ea1b193a2925e3e20c579f1bfeabe0cbb832f2cfa0ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 152, 116, 161, 77, 234, 100, 226, 132, 159, 159, 27, 32, 39, 62, 247, 80, 11, 80, 30, 27, + 30, 10, 187, 4, 185, 41, 245, 193, 255, 255, 255, 27, 190, 4, 14, 142, 132, 251, 29, 159, 65, 234, 27, 25, 58, 41, + 37, 227, 226, 12, 87, 159, 27, 254, 171, 224, 203, 184, 50, 242, 207, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2852, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f5a025544376bd5391" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5876835921647036076" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18068850342627718179" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5286273456527499672" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4126248992816561712" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "234894337885540178" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4393203228660841651" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "561231452243576829" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4881d1399d0655c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18427309435519495342" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6292289901375316241" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18435014373931200189" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11916644393060609907" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d37206566e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6092409804416044728" + } + } + } + ] + } + ] + }, + "cborHex": "9f809f49f5a025544376bd5391bf1b518eb7224906e6ac1bfac173a75c053423ff1b495c9db369e5e198ffbf1b39436198dfa4fe301b03428327e16b0f52ff1b3cf7cb0f6e6dbcb3bf1b07c9e50843c147fd48e4881d1399d0655c1bffbaf44cae57ecae1b5752b453cb40e1111bffd653e67363aebd1ba5606cf03b072f73462d37206566e01b548c96702a534eb8ffff", + "cborBytes": [ + 159, 128, 159, 73, 245, 160, 37, 84, 67, 118, 189, 83, 145, 191, 27, 81, 142, 183, 34, 73, 6, 230, 172, 27, 250, + 193, 115, 167, 92, 5, 52, 35, 255, 27, 73, 92, 157, 179, 105, 229, 225, 152, 255, 191, 27, 57, 67, 97, 152, 223, + 164, 254, 48, 27, 3, 66, 131, 39, 225, 107, 15, 82, 255, 27, 60, 247, 203, 15, 110, 109, 188, 179, 191, 27, 7, + 201, 229, 8, 67, 193, 71, 253, 72, 228, 136, 29, 19, 153, 208, 101, 92, 27, 255, 186, 244, 76, 174, 87, 236, 174, + 27, 87, 82, 180, 83, 203, 64, 225, 17, 27, 255, 214, 83, 230, 115, 99, 174, 189, 27, 165, 96, 108, 240, 59, 7, 47, + 115, 70, 45, 55, 32, 101, 102, 224, 27, 84, 140, 150, 112, 42, 83, 78, 184, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2853, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17645126554068763781" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "356573838697873888" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11152245745604464552" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16432394248530144060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f50777" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "947415875131537067" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3885114940905427548" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8109153531542850607" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "639324953380086351" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6856623338634264743" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9271640570718728931" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "286eb1" + } + ] + } + ] + }, + "cborHex": "9fbf0d1bf4e0151cf014c4851b04f2ce045fc8c1e0101b9ac4bc6b229d8fa80e1be40b9781a8cfab3c0b1bfffffffffffffffe43f50777ffbf1b0d25e5b803c7f6ab031bfffffffffffffff51b35eab3745c3b125cffd8669f1b7089802c3cb74c2f9fd8669f1b08df56a86643624f9f1b5f279e9939f2c0a71b80ab7bf9ceca32e3ffff43286eb1ffffff", + "cborBytes": [ + 159, 191, 13, 27, 244, 224, 21, 28, 240, 20, 196, 133, 27, 4, 242, 206, 4, 95, 200, 193, 224, 16, 27, 154, 196, + 188, 107, 34, 157, 143, 168, 14, 27, 228, 11, 151, 129, 168, 207, 171, 60, 11, 27, 255, 255, 255, 255, 255, 255, + 255, 254, 67, 245, 7, 119, 255, 191, 27, 13, 37, 229, 184, 3, 199, 246, 171, 3, 27, 255, 255, 255, 255, 255, 255, + 255, 245, 27, 53, 234, 179, 116, 92, 59, 18, 92, 255, 216, 102, 159, 27, 112, 137, 128, 44, 60, 183, 76, 47, 159, + 216, 102, 159, 27, 8, 223, 86, 168, 102, 67, 98, 79, 159, 27, 95, 39, 158, 153, 57, 242, 192, 167, 27, 128, 171, + 123, 249, 206, 202, 50, 227, 255, 255, 67, 40, 110, 177, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2854, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17821346229522253988" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e65a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11336262367706988556" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11388008423525003630" + } + }, + { + "_tag": "ByteArray", + "bytearray": "db698e51539b9926da0457" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5488184365422979845" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6703428768068306837" + } + }, + { + "_tag": "ByteArray", + "bytearray": "65d5492e3012a3" + }, + { + "_tag": "ByteArray", + "bytearray": "7bdc9bf6a21663974fa915" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d97bafc5cc1af07f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2128421401814490808" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9a6b91604fb112f9cc97c7" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "267293992728635964" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b48306ca47" + }, + { + "_tag": "ByteArray", + "bytearray": "1e610a2ff8ebb117" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf75223f965ebc8a480ff42e65ad8669f1b9d527e8fb3cdc00c9f1b9e0a55532f5d316e4bdb698e51539b9926da04579f1b4c29f29a4ae3ab05ff9f1b5d075cf2c1d887954765d5492e3012a34b7bdc9bf6a21663974fa915ffffff9f48d97bafc5cc1af07fffd8669f1b1d89abfcf37ddeb89f4b9a6b91604fb112f9cc97c79f1b03b59e785f2faa3c45b48306ca47481e610a2ff8ebb117ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 247, 82, 35, 249, 101, 235, 200, 164, 128, 255, 66, 230, 90, 216, 102, 159, 27, 157, 82, + 126, 143, 179, 205, 192, 12, 159, 27, 158, 10, 85, 83, 47, 93, 49, 110, 75, 219, 105, 142, 81, 83, 155, 153, 38, + 218, 4, 87, 159, 27, 76, 41, 242, 154, 74, 227, 171, 5, 255, 159, 27, 93, 7, 92, 242, 193, 216, 135, 149, 71, 101, + 213, 73, 46, 48, 18, 163, 75, 123, 220, 155, 246, 162, 22, 99, 151, 79, 169, 21, 255, 255, 255, 159, 72, 217, 123, + 175, 197, 204, 26, 240, 127, 255, 216, 102, 159, 27, 29, 137, 171, 252, 243, 125, 222, 184, 159, 75, 154, 107, + 145, 96, 79, 177, 18, 249, 204, 151, 199, 159, 27, 3, 181, 158, 120, 95, 47, 170, 60, 69, 180, 131, 6, 202, 71, + 72, 30, 97, 10, 47, 248, 235, 177, 23, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2855, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "08c4c1f817be7c5b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4a03af9e0fdd19111" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4403cb38531ad925f4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8c815395bc91e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17775720477451070675" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3759419330557444722" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1c88debaf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0672bc" + } + } + ] + } + ] + }, + "cborHex": "9fbf4808c4c1f817be7c5b49f4a03af9e0fdd19111494403cb38531ad925f441f947a8c815395bc91e1bf6b00b982d1bacd341d71b342c23f67f9d027245e1c88debaf430672bcffff", + "cborBytes": [ + 159, 191, 72, 8, 196, 193, 248, 23, 190, 124, 91, 73, 244, 160, 58, 249, 224, 253, 209, 145, 17, 73, 68, 3, 203, + 56, 83, 26, 217, 37, 244, 65, 249, 71, 168, 200, 21, 57, 91, 201, 30, 27, 246, 176, 11, 152, 45, 27, 172, 211, 65, + 215, 27, 52, 44, 35, 246, 127, 157, 2, 114, 69, 225, 200, 141, 235, 175, 67, 6, 114, 188, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2856, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "98b7c7bf53052cf8" + }, + { + "_tag": "ByteArray", + "bytearray": "ce0fb432aca41e151df6411b" + } + ] + }, + "cborHex": "9f4898b7c7bf53052cf84cce0fb432aca41e151df6411bff", + "cborBytes": [ + 159, 72, 152, 183, 199, 191, 83, 5, 44, 248, 76, 206, 15, 180, 50, 172, 164, 30, 21, 29, 246, 65, 27, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2857, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17146209194732924329" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1955634111475562948" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14182612141385311188" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10016089445020761997" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6284305122940753800" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c68d45fc373852c32caf2510" + } + ] + } + ] + }, + "cborHex": "9f1bedf3926b0897ada9d8669f1b1b23cedced2339c49f1bc4d2c2999269e3d41b8b004c4861007f8d1b57365636b10d17884cc68d45fc373852c32caf2510ffffff", + "cborBytes": [ + 159, 27, 237, 243, 146, 107, 8, 151, 173, 169, 216, 102, 159, 27, 27, 35, 206, 220, 237, 35, 57, 196, 159, 27, + 196, 210, 194, 153, 146, 105, 227, 212, 27, 139, 0, 76, 72, 97, 0, 127, 141, 27, 87, 54, 86, 54, 177, 13, 23, 136, + 76, 198, 141, 69, 252, 55, 56, 82, 195, 44, 175, 37, 16, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2858, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3072876398400241138" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6b58" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a7ae78daae9de259fc2" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11592094928767154453" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3092834523729998608" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2300145413036485" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d732e2ad9f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "745344536804643557" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7787786855082788070" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5590875978921682455" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11645420137161082747" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10307963067657807656" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3182899479370345457" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13405185353665441497" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2498712106410044896" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "11d0ef" + }, + { + "_tag": "ByteArray", + "bytearray": "c0b809f6ed53" + }, + { + "_tag": "ByteArray", + "bytearray": "6a0f43b3ded1f4f2a41e8453" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5207337157741478153" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14813778070554830726" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2baed309bd0b2dc987" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6532333957358651701" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4605447727844513625" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3709909862041385115" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2085927d8e0fd077ef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d70e6625d64ca8c871a192" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3064f19d222e2cc5fb76f05c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "255641130955057873" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45dbbb28bb4caf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a0dea674890d36c611d4b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ec2e76f695041" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "650bf53bb193" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a316e2a5ff216b6e121" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11000942209054086939" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1cc88117ad823" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6dbc1d4642" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5213338557193364372" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08d833" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8076587821714922950" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16177375472690666301" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6cc7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17796630686819804322" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4aef9bdc16579e7148af56ac" + } + ] + }, + "cborHex": "9fd8669f1b2aa50ccdb553fdf29f426b589f4a9a7ae78daae9de259fc2ff1ba0df64eb8fc5f915ffffd8669f1b2aebf49cdffdb3109fbf1b00082bf8564699c545d732e2ad9f1b0a57fee83f84d2e51b6c13c6e21baa84e61b4d96c814c2e426171ba19cd7ea27aac77b1b8f0d3dcbcd96e7281b2c2bee3677a52bf11bba08c90e317f6ed91b22ad356c0a89ede0ff9f4311d0ef46c0b809f6ed534c6a0f43b3ded1f4f2a41e84531b48442d8e28df8109ffd8669f1bcd951cab1ce467869f492baed309bd0b2dc9871b5aa7831fda9589351b3fe9d64ec9cd57591b337c3f5d13b1f89bffffbf492085927d8e0fd077ef4bd70e6625d64ca8c871a1924c3064f19d222e2cc5fb76f05c1b038c3841108e2ad14745dbbb28bb4caf4b0a0dea674890d36c611d4b474ec2e76f69504146650bf53bb1934a7a316e2a5ff216b6e1211b98ab32a75545171b47f1cc88117ad823456dbc1d4642ffbf1b48597fcbdb5ba3944308d8331b7015cdd50e905dc61be0819547efd81b3d426cc71bf6fa5551aeb5e4a2ffffff044c4aef9bdc16579e7148af56acff", + "cborBytes": [ + 159, 216, 102, 159, 27, 42, 165, 12, 205, 181, 83, 253, 242, 159, 66, 107, 88, 159, 74, 154, 122, 231, 141, 170, + 233, 222, 37, 159, 194, 255, 27, 160, 223, 100, 235, 143, 197, 249, 21, 255, 255, 216, 102, 159, 27, 42, 235, 244, + 156, 223, 253, 179, 16, 159, 191, 27, 0, 8, 43, 248, 86, 70, 153, 197, 69, 215, 50, 226, 173, 159, 27, 10, 87, + 254, 232, 63, 132, 210, 229, 27, 108, 19, 198, 226, 27, 170, 132, 230, 27, 77, 150, 200, 20, 194, 228, 38, 23, 27, + 161, 156, 215, 234, 39, 170, 199, 123, 27, 143, 13, 61, 203, 205, 150, 231, 40, 27, 44, 43, 238, 54, 119, 165, 43, + 241, 27, 186, 8, 201, 14, 49, 127, 110, 217, 27, 34, 173, 53, 108, 10, 137, 237, 224, 255, 159, 67, 17, 208, 239, + 70, 192, 184, 9, 246, 237, 83, 76, 106, 15, 67, 179, 222, 209, 244, 242, 164, 30, 132, 83, 27, 72, 68, 45, 142, + 40, 223, 129, 9, 255, 216, 102, 159, 27, 205, 149, 28, 171, 28, 228, 103, 134, 159, 73, 43, 174, 211, 9, 189, 11, + 45, 201, 135, 27, 90, 167, 131, 31, 218, 149, 137, 53, 27, 63, 233, 214, 78, 201, 205, 87, 89, 27, 51, 124, 63, + 93, 19, 177, 248, 155, 255, 255, 191, 73, 32, 133, 146, 125, 142, 15, 208, 119, 239, 75, 215, 14, 102, 37, 214, + 76, 168, 200, 113, 161, 146, 76, 48, 100, 241, 157, 34, 46, 44, 197, 251, 118, 240, 92, 27, 3, 140, 56, 65, 16, + 142, 42, 209, 71, 69, 219, 187, 40, 187, 76, 175, 75, 10, 13, 234, 103, 72, 144, 211, 108, 97, 29, 75, 71, 78, + 194, 231, 111, 105, 80, 65, 70, 101, 11, 245, 59, 177, 147, 74, 122, 49, 110, 42, 95, 242, 22, 182, 225, 33, 27, + 152, 171, 50, 167, 85, 69, 23, 27, 71, 241, 204, 136, 17, 122, 216, 35, 69, 109, 188, 29, 70, 66, 255, 191, 27, + 72, 89, 127, 203, 219, 91, 163, 148, 67, 8, 216, 51, 27, 112, 21, 205, 213, 14, 144, 93, 198, 27, 224, 129, 149, + 71, 239, 216, 27, 61, 66, 108, 199, 27, 246, 250, 85, 81, 174, 181, 228, 162, 255, 255, 255, 4, 76, 74, 239, 155, + 220, 22, 87, 158, 113, 72, 175, 86, 172, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2859, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "58852cccc5dede18" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17121848843059632229" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12505366752926663804" + } + } + ] + }, + "cborHex": "9f4858852cccc5dede18d8669f1bed9d06ceac8098659f80ffff1bad8bfcce362c847cff", + "cborBytes": [ + 159, 72, 88, 133, 44, 204, 197, 222, 222, 24, 216, 102, 159, 27, 237, 157, 6, 206, 172, 128, 152, 101, 159, 128, + 255, 255, 27, 173, 139, 252, 206, 54, 44, 132, 124, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2860, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aaaac4cc3093d607" + } + ] + }, + "cborHex": "9f48aaaac4cc3093d607ff", + "cborBytes": [159, 72, 170, 170, 196, 204, 48, 147, 214, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2861, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2213600487601839880" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b6" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4117848093786266975" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "856e306ad725d14ede52" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5451871184180938674" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1731f2bbb25cf3629" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "722189578636452934" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1435639261294073196" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0706d30330bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a992af0090e78223b23" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16255700601909052780" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3331838238707258460" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8b22beed8409fa87" + }, + { + "_tag": "ByteArray", + "bytearray": "e3e0605892f58e175f8833" + }, + { + "_tag": "ByteArray", + "bytearray": "db" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14515910407696722085" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1eb849ea52239f089fd905099f41b6ffbf1b3925890625265d5f4a856e306ad725d14ede521b4ba8eff4ee4b07b249a1731f2bbb25cf3629ffffffd905029fd8669f1b0a05bb986f1d644680ff1b13ec6a4d4309956cffbf460706d30330bc4209fc4a4a992af0090e78223b231be197d9922fe4856cffd8669f1bfffffffffffffff080ff9fd8669f1b2e3d1139ab35945c9f488b22beed8409fa874be3e0605892f58e175f883341db1bc972df9b7228a8a5ffff80ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 30, 184, 73, 234, 82, 35, 159, 8, 159, 217, 5, 9, 159, 65, 182, 255, 191, 27, 57, 37, 137, + 6, 37, 38, 93, 95, 74, 133, 110, 48, 106, 215, 37, 209, 78, 222, 82, 27, 75, 168, 239, 244, 238, 75, 7, 178, 73, + 161, 115, 31, 43, 187, 37, 207, 54, 41, 255, 255, 255, 217, 5, 2, 159, 216, 102, 159, 27, 10, 5, 187, 152, 111, + 29, 100, 70, 128, 255, 27, 19, 236, 106, 77, 67, 9, 149, 108, 255, 191, 70, 7, 6, 211, 3, 48, 188, 66, 9, 252, 74, + 74, 153, 42, 240, 9, 14, 120, 34, 59, 35, 27, 225, 151, 217, 146, 47, 228, 133, 108, 255, 216, 102, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 240, 128, 255, 159, 216, 102, 159, 27, 46, 61, 17, 57, 171, 53, 148, 92, 159, 72, + 139, 34, 190, 237, 132, 9, 250, 135, 75, 227, 224, 96, 88, 146, 245, 142, 23, 95, 136, 51, 65, 219, 27, 201, 114, + 223, 155, 114, 40, 168, 165, 255, 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2862, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "004f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15102999160264192723" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5824259040838549906" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05000343fa" + } + ] + }, + "cborHex": "9fd87e9fd9050b9f42004f0fff9f1bd198a1b79691f2d31b50d3ecbd490a0192ffff4505000343faff", + "cborBytes": [ + 159, 216, 126, 159, 217, 5, 11, 159, 66, 0, 79, 15, 255, 159, 27, 209, 152, 161, 183, 150, 145, 242, 211, 27, 80, + 211, 236, 189, 73, 10, 1, 146, 255, 255, 69, 5, 0, 3, 67, 250, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2863, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9ae8" + } + ] + }, + "cborHex": "9f429ae8ff", + "cborBytes": [159, 66, 154, 232, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2864, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1240987984732742575" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77d77c25018702310ab88d57" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "185711036bdbc1e99bd804" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16841342965719646893" + } + } + } + ] + } + ] + }, + "cborHex": "9f80bf1b1138dfff4085e3af4c77d77c25018702310ab88d574b185711036bdbc1e99bd8041be9b87832b43e42adffff", + "cborBytes": [ + 159, 128, 191, 27, 17, 56, 223, 255, 64, 133, 227, 175, 76, 119, 215, 124, 37, 1, 135, 2, 49, 10, 184, 141, 87, + 75, 24, 87, 17, 3, 107, 219, 193, 233, 155, 216, 4, 27, 233, 184, 120, 50, 180, 62, 66, 173, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2865, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17939249893264086871" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "312079234449525761" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17122384029965381981" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f8699b86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12169176336634617891" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18089607039210995872" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1899049309676863622" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3706432625679666711" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15218102305523915734" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e9ccd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bac2ea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ae24e4c3246c4ce19715643" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8284542029818600360" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17376767922092423058" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c379fc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8525913957056427614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "67d8a3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f73ff6f74a55c30d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10047544914469462228" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a6be85467e8886d636" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bf8f504bb50f857571b0454ba690723cc019fd8669f1bed9eed8e95e8715d80ff9f44f8699b861ba8e19967323220231bfb0b31c26293c0a01b1a5ac7491a3d8086ff1b336fe4d5e58e0e17bf422e3f1bd3318f6afc4e5bd6432e9ccd43bac2ea4c9ae24e4c3246c4ce197156431b72f89b152e219ba8ffffd8669f1bf126ae5becb8b7929f43c379fcd8669f1b765221925be4b65e9f4367d8a3ffff9f48f73ff6f74a55c30d1b8b700cdd93bc20d449a6be85467e8886d636ffffffff", + "cborBytes": [ + 159, 27, 248, 245, 4, 187, 80, 248, 87, 87, 27, 4, 84, 186, 105, 7, 35, 204, 1, 159, 216, 102, 159, 27, 237, 158, + 237, 142, 149, 232, 113, 93, 128, 255, 159, 68, 248, 105, 155, 134, 27, 168, 225, 153, 103, 50, 50, 32, 35, 27, + 251, 11, 49, 194, 98, 147, 192, 160, 27, 26, 90, 199, 73, 26, 61, 128, 134, 255, 27, 51, 111, 228, 213, 229, 142, + 14, 23, 191, 66, 46, 63, 27, 211, 49, 143, 106, 252, 78, 91, 214, 67, 46, 156, 205, 67, 186, 194, 234, 76, 154, + 226, 78, 76, 50, 70, 196, 206, 25, 113, 86, 67, 27, 114, 248, 155, 21, 46, 33, 155, 168, 255, 255, 216, 102, 159, + 27, 241, 38, 174, 91, 236, 184, 183, 146, 159, 67, 195, 121, 252, 216, 102, 159, 27, 118, 82, 33, 146, 91, 228, + 182, 94, 159, 67, 103, 216, 163, 255, 255, 159, 72, 247, 63, 246, 247, 74, 85, 195, 13, 27, 139, 112, 12, 221, + 147, 188, 32, 212, 73, 166, 190, 133, 70, 126, 136, 134, 214, 54, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2866, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b11a0ee00303fcfa82fc" + } + ] + }, + "cborHex": "9f4ab11a0ee00303fcfa82fcff", + "cborBytes": [159, 74, 177, 26, 14, 224, 3, 3, 252, 250, 130, 252, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2867, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9579463238472289975" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14244027071821278861" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7842944664386230288" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2270066830086577000" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11113398228811032788" + } + }, + { + "_tag": "ByteArray", + "bytearray": "63cf57d4a8aee972" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + "cborHex": "9f9f80d8669f1b84f1170fac0dceb79f1bc5acf3275af46e8d1b6cd7bc9e59c958101b1f80e5c12fb51b681b9a3ab8cecbbca8d44863cf57d4a8aee972ffffff0aff", + "cborBytes": [ + 159, 159, 128, 216, 102, 159, 27, 132, 241, 23, 15, 172, 13, 206, 183, 159, 27, 197, 172, 243, 39, 90, 244, 110, + 141, 27, 108, 215, 188, 158, 89, 201, 88, 16, 27, 31, 128, 229, 193, 47, 181, 27, 104, 27, 154, 58, 184, 206, 203, + 188, 168, 212, 72, 99, 207, 87, 212, 168, 174, 233, 114, 255, 255, 255, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2868, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "292579886881169958" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10514099657885703588" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f1dc0e04a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14505316562201821131" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13244026291962132679" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15b647311068c511bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "327dd0cce17e7c407a2e59" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0113232a3d58" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "491fcc8a9514b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0f19bca293098f555bf4248" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "900288" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "452049" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e603" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2689839440783632854" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11453840612222679523" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b57b4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13047014967457350358" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53afbc1d9ec5e1" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f9c0a9e6b5796e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "084c0b2fa7e3baf246ae" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13348708930429490662" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6447856668806214851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4186945163770209129" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6949132606455670163" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12479886749756087358" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7856014915606330928" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db07" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8870848989947849903" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3901503484183279129" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11340063668583474194" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1d2141f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11662928742098713043" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2203888678476391170" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b040f73db61f9e2261b91e995eec9555da4450f1dc0e04a1bc94d3c8f94a13fcbffd8669f1bb7cc3bbe205638c79fbf4915b647311068c511bb41d64b327dd0cce17e7c407a2e59460113232a3d5847491fcc8a9514b94cb0f19bca293098f555bf4248439002884345204942e6031b25543ab852be69d6ffbf1b9ef4375a0d79b9e3433b57b41bb5104efca28002d64753afbc1d9ec5e1ffffffbf482f9c0a9e6b5796e84a084c0b2fa7e3baf246aeff1bb940240c385595e6bf1b597b637a62d3f4c31b3a1b04716c9023691b6070474998dfe5931bad3176e0ac50dc3e1b6d062bf15ae2be3042db071b7b1b962815f96caf1b3624ecbf70b176191b9d5fffd3083b241244c1d2141f1ba1db0be5e97cb9d31b1e95c9138d172302ffff", + "cborBytes": [ + 159, 191, 27, 4, 15, 115, 219, 97, 249, 226, 38, 27, 145, 233, 149, 238, 201, 85, 93, 164, 69, 15, 29, 192, 224, + 74, 27, 201, 77, 60, 143, 148, 161, 63, 203, 255, 216, 102, 159, 27, 183, 204, 59, 190, 32, 86, 56, 199, 159, 191, + 73, 21, 182, 71, 49, 16, 104, 197, 17, 187, 65, 214, 75, 50, 125, 208, 204, 225, 126, 124, 64, 122, 46, 89, 70, 1, + 19, 35, 42, 61, 88, 71, 73, 31, 204, 138, 149, 20, 185, 76, 176, 241, 155, 202, 41, 48, 152, 245, 85, 191, 66, 72, + 67, 144, 2, 136, 67, 69, 32, 73, 66, 230, 3, 27, 37, 84, 58, 184, 82, 190, 105, 214, 255, 191, 27, 158, 244, 55, + 90, 13, 121, 185, 227, 67, 59, 87, 180, 27, 181, 16, 78, 252, 162, 128, 2, 214, 71, 83, 175, 188, 29, 158, 197, + 225, 255, 255, 255, 191, 72, 47, 156, 10, 158, 107, 87, 150, 232, 74, 8, 76, 11, 47, 167, 227, 186, 242, 70, 174, + 255, 27, 185, 64, 36, 12, 56, 85, 149, 230, 191, 27, 89, 123, 99, 122, 98, 211, 244, 195, 27, 58, 27, 4, 113, 108, + 144, 35, 105, 27, 96, 112, 71, 73, 152, 223, 229, 147, 27, 173, 49, 118, 224, 172, 80, 220, 62, 27, 109, 6, 43, + 241, 90, 226, 190, 48, 66, 219, 7, 27, 123, 27, 150, 40, 21, 249, 108, 175, 27, 54, 36, 236, 191, 112, 177, 118, + 25, 27, 157, 95, 255, 211, 8, 59, 36, 18, 68, 193, 210, 20, 31, 27, 161, 219, 11, 229, 233, 124, 185, 211, 27, 30, + 149, 201, 19, 141, 23, 35, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2869, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bde15f8aeb07830372" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "302325144588161218" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14928002511926901051" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6239467063824075325" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c6e2b2d86" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7716449770009864153" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd595931651b7fb69b96" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11322834227943498591" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12805522075937500494" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14736056682474605839" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10542637633652966101" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17912520934545811662" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18ee6a4247" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9039973977529422343" + } + } + ] + }, + "cborHex": "9f49bde15f8aeb07830372bf1b0432131e01d890c21bcf2aeb31518ab93b1b56970a3c86fbca3d451c6e2b2d861b6b16562eac9527d94add595931651b7fb69b961b9d22c9bd4734e35f1bb1b65a7b43ad6d4e1bcc80fd7a4ceb8d0f1b924ef9120d8cc2d51bf8960ee2a759e8ce4518ee6a4247ff801b7d74706fcd6a9207ff", + "cborBytes": [ + 159, 73, 189, 225, 95, 138, 235, 7, 131, 3, 114, 191, 27, 4, 50, 19, 30, 1, 216, 144, 194, 27, 207, 42, 235, 49, + 81, 138, 185, 59, 27, 86, 151, 10, 60, 134, 251, 202, 61, 69, 28, 110, 43, 45, 134, 27, 107, 22, 86, 46, 172, 149, + 39, 217, 74, 221, 89, 89, 49, 101, 27, 127, 182, 155, 150, 27, 157, 34, 201, 189, 71, 52, 227, 95, 27, 177, 182, + 90, 123, 67, 173, 109, 78, 27, 204, 128, 253, 122, 76, 235, 141, 15, 27, 146, 78, 249, 18, 13, 140, 194, 213, 27, + 248, 150, 14, 226, 167, 89, 232, 206, 69, 24, 238, 106, 66, 71, 255, 128, 27, 125, 116, 112, 111, 205, 106, 146, + 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2870, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13437763915573759408" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "496912505152384028" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2499946733998026466" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bba7c8715bb560db080ff1b06e5634a6a0eac1cd8669f1b22b1984f2d59aee280ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 186, 124, 135, 21, 187, 86, 13, 176, 128, 255, 27, 6, 229, 99, 74, 106, 14, 172, 28, 216, + 102, 159, 27, 34, 177, 152, 79, 45, 89, 174, 226, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2871, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fd02fd" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4443125837206786188" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3093161431539106055" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6540225451909559738" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7780700717921945616" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9bab916d753ef5cc836fb4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11101304676426611405" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ac49d" + } + } + ] + } + ] + }, + "cborHex": "9f43fd02fdbf0a1b3da927688312108c1b2aed1def07d3c1071b5ac38c659c09b5ba1b6bfa9a143b5d48104b9bab916d753ef5cc836fb41b9a0fc1c935ca7acd433ac49dffff", + "cborBytes": [ + 159, 67, 253, 2, 253, 191, 10, 27, 61, 169, 39, 104, 131, 18, 16, 140, 27, 42, 237, 29, 239, 7, 211, 193, 7, 27, + 90, 195, 140, 101, 156, 9, 181, 186, 27, 107, 250, 154, 20, 59, 93, 72, 16, 75, 155, 171, 145, 109, 117, 62, 245, + 204, 131, 111, 180, 27, 154, 15, 193, 201, 53, 202, 122, 205, 67, 58, 196, 157, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2872, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3fd5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6830147710005773798" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7250656903467539285" + } + }, + { + "_tag": "ByteArray", + "bytearray": "77165e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d872dccc3bae5d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3794eee823029" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3d34c87d40c45694658" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15564478479116941009" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10438601084894125247" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18417655119587381750" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0bab6a73f994" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14669940826410784464" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b9fa44b01812077962b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17762694420575533051" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e363cabfe549a9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4674672698977536350" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10633772060917463220" + } + }, + { + "_tag": "ByteArray", + "bytearray": "78f7af" + }, + { + "_tag": "ByteArray", + "bytearray": "c673eadc63ff56b17991a242" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8625206608149473661" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5743590918918637203" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13155715699854370607" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16197175248557690698" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14358771232150420193" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7da5021e44a3df97" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17409365808350787744" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8003042958817301449" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f9f423fd51b5ec98f27925785e61b649f8209bf6a9b554377165effbf47d872dccc3bae5d47e3794eee8230294af3d34c87d40c456946581bd80022b66dfa36d1ff9f1b90dd5c61711f1cbf1bff98a7c016a911f6ff460bab6a73f994d8669f1bcb961974fa3716d09f4ab9fa44b01812077962b81bf681c476f837b7fbffffff9f9f47e363cabfe549a91b40dfc60d5fc5c95e1b9392bf59697578b44378f7af4cc673eadc63ff56b17991a242ff80ffbf1b77b2e3b63919e97d1b4fb55582894e06931bb6927dba1fd9672f1be0c7ed127f07cf4a1bc7449a5c0f6c7ae1487da5021e44a3df971bf19a7df6c39478a01b6f10852b4a7f13c9ffff", + "cborBytes": [ + 159, 159, 159, 66, 63, 213, 27, 94, 201, 143, 39, 146, 87, 133, 230, 27, 100, 159, 130, 9, 191, 106, 155, 85, 67, + 119, 22, 94, 255, 191, 71, 216, 114, 220, 204, 59, 174, 93, 71, 227, 121, 78, 238, 130, 48, 41, 74, 243, 211, 76, + 135, 212, 12, 69, 105, 70, 88, 27, 216, 0, 34, 182, 109, 250, 54, 209, 255, 159, 27, 144, 221, 92, 97, 113, 31, + 28, 191, 27, 255, 152, 167, 192, 22, 169, 17, 246, 255, 70, 11, 171, 106, 115, 249, 148, 216, 102, 159, 27, 203, + 150, 25, 116, 250, 55, 22, 208, 159, 74, 185, 250, 68, 176, 24, 18, 7, 121, 98, 184, 27, 246, 129, 196, 118, 248, + 55, 183, 251, 255, 255, 255, 159, 159, 71, 227, 99, 202, 191, 229, 73, 169, 27, 64, 223, 198, 13, 95, 197, 201, + 94, 27, 147, 146, 191, 89, 105, 117, 120, 180, 67, 120, 247, 175, 76, 198, 115, 234, 220, 99, 255, 86, 177, 121, + 145, 162, 66, 255, 128, 255, 191, 27, 119, 178, 227, 182, 57, 25, 233, 125, 27, 79, 181, 85, 130, 137, 78, 6, 147, + 27, 182, 146, 125, 186, 31, 217, 103, 47, 27, 224, 199, 237, 18, 127, 7, 207, 74, 27, 199, 68, 154, 92, 15, 108, + 122, 225, 72, 125, 165, 2, 30, 68, 163, 223, 151, 27, 241, 154, 125, 246, 195, 148, 120, 160, 27, 111, 16, 133, + 43, 74, 127, 19, 201, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2873, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13947256686818073964" + } + } + ] + }, + "cborHex": "9f1bc18e9c0f98fb9d6cff", + "cborBytes": [159, 27, 193, 142, 156, 15, 152, 251, 157, 108, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2874, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11650734291159873104" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bc4602836719182b29d480bb" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c082" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18264870588526213647" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4ae2ce131bbe27bd34b1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3454252289525678787" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16044626804657012233" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1069765989549960129" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6927056613291251378" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a4099b" + }, + { + "_tag": "ByteArray", + "bytearray": "4222f38c5115" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c26acee1c12ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc0b39924c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c63e3fde222c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1354984282902497106" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb65" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5883850836266411165" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf04e027968a78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9104272643461737463" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17617966409648002706" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6578464674931212542" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a53c4646" + }, + { + "_tag": "ByteArray", + "bytearray": "df160342dd180bef58f88ef3" + }, + { + "_tag": "ByteArray", + "bytearray": "94cf678b1f64ea1764bfb4" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13520311852915066449" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9747708847462634942" + } + }, + { + "_tag": "ByteArray", + "bytearray": "978f570725c0ed14" + }, + { + "_tag": "ByteArray", + "bytearray": "05270edff89489e4ae225f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10277515227366384108" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15123302246402148186" + } + } + ] + } + ] + }, + "cborHex": "9f9f1ba1afb91c0d0bf6509f4cbc4602836719182b29d480bbff42c082ff9fd8669f1bfd79db076195ba0f9f4a4ae2ce131bbe27bd34b1ffff1b2feff827e9c202c31bdea9f7121d4abe09d8669f1b0ed8927fe7eb6bc19f1b6021d949e63ed6b243a4099b464222f38c5115ffffff9fbf471c26acee1c12ab45fc0b39924c46c63e3fde222c1b12cddf06baa4075242cb651b51a7a3295f0b649d47cf04e027968a781b7e58dfbb93d7ebf7ffd8669f1bf47f971b07d556929f1b5b4b66c484bb00fe44a53c46464cdf160342dd180bef58f88ef34b94cf678b1f64ea1764bfb4ffff1bbba1cbff1d8186519f1b8746d18d1af155be48978f570725c0ed144b05270edff89489e4ae225f1b8ea111a58cd761ecff1bd1e0c34433aac75affff", + "cborBytes": [ + 159, 159, 27, 161, 175, 185, 28, 13, 11, 246, 80, 159, 76, 188, 70, 2, 131, 103, 25, 24, 43, 41, 212, 128, 187, + 255, 66, 192, 130, 255, 159, 216, 102, 159, 27, 253, 121, 219, 7, 97, 149, 186, 15, 159, 74, 74, 226, 206, 19, 27, + 190, 39, 189, 52, 177, 255, 255, 27, 47, 239, 248, 39, 233, 194, 2, 195, 27, 222, 169, 247, 18, 29, 74, 190, 9, + 216, 102, 159, 27, 14, 216, 146, 127, 231, 235, 107, 193, 159, 27, 96, 33, 217, 73, 230, 62, 214, 178, 67, 164, 9, + 155, 70, 66, 34, 243, 140, 81, 21, 255, 255, 255, 159, 191, 71, 28, 38, 172, 238, 28, 18, 171, 69, 252, 11, 57, + 146, 76, 70, 198, 62, 63, 222, 34, 44, 27, 18, 205, 223, 6, 186, 164, 7, 82, 66, 203, 101, 27, 81, 167, 163, 41, + 95, 11, 100, 157, 71, 207, 4, 224, 39, 150, 138, 120, 27, 126, 88, 223, 187, 147, 215, 235, 247, 255, 216, 102, + 159, 27, 244, 127, 151, 27, 7, 213, 86, 146, 159, 27, 91, 75, 102, 196, 132, 187, 0, 254, 68, 165, 60, 70, 70, 76, + 223, 22, 3, 66, 221, 24, 11, 239, 88, 248, 142, 243, 75, 148, 207, 103, 139, 31, 100, 234, 23, 100, 191, 180, 255, + 255, 27, 187, 161, 203, 255, 29, 129, 134, 81, 159, 27, 135, 70, 209, 141, 26, 241, 85, 190, 72, 151, 143, 87, 7, + 37, 192, 237, 20, 75, 5, 39, 14, 223, 248, 148, 137, 228, 174, 34, 95, 27, 142, 161, 17, 165, 140, 215, 97, 236, + 255, 27, 209, 224, 195, 68, 51, 170, 199, 90, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2875, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "77c39079ee9cd480" + }, + { + "_tag": "ByteArray", + "bytearray": "b2408e9c019a41fc1f21" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + ] + }, + "cborHex": "9fd9050c804877c39079ee9cd4804ab2408e9c019a41fc1f211bfffffffffffffff2ff", + "cborBytes": [ + 159, 217, 5, 12, 128, 72, 119, 195, 144, 121, 238, 156, 212, 128, 74, 178, 64, 142, 156, 1, 154, 65, 252, 31, 33, + 27, 255, 255, 255, 255, 255, 255, 255, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2876, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6f0427" + } + ] + }, + "cborHex": "9f436f0427ff", + "cborBytes": [159, 67, 111, 4, 39, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2877, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12285149619151765785" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13201252784025644260" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de08e8f01a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15155611097505286465" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1297654235065239856" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1baa7d9e7d361101199fd8669f1bb7344576bdfc2ce49f45de08e8f01a1bd2538bfeccc54941ffffff03d8669f1b120231a6ca58493080ffff", + "cborBytes": [ + 159, 27, 170, 125, 158, 125, 54, 17, 1, 25, 159, 216, 102, 159, 27, 183, 52, 69, 118, 189, 252, 44, 228, 159, 69, + 222, 8, 232, 240, 26, 27, 210, 83, 139, 254, 204, 197, 73, 65, 255, 255, 255, 3, 216, 102, 159, 27, 18, 2, 49, + 166, 202, 88, 73, 48, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2878, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3384402310968106721" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15178739086881280894" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4104703634813761566" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "521920016148560816" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9828567160670986801" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7282188186368334816" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15707368294980686448" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9883e650e162" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17313559957661470458" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89ab10e529" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf1b2ef7cff87243dee11bd2a5b6c773e5537e1b38f6d6354d54381e1b073e3b7d4bb37bb01b886615c236dd22311b650f8792a407dbe01bd9fbc83e3a8e9270469883e650e1621bf0461f0ce1d6cefa4589ab10e529ff05d9050680ff", + "cborBytes": [ + 159, 191, 27, 46, 247, 207, 248, 114, 67, 222, 225, 27, 210, 165, 182, 199, 115, 229, 83, 126, 27, 56, 246, 214, + 53, 77, 84, 56, 30, 27, 7, 62, 59, 125, 75, 179, 123, 176, 27, 136, 102, 21, 194, 54, 221, 34, 49, 27, 101, 15, + 135, 146, 164, 7, 219, 224, 27, 217, 251, 200, 62, 58, 142, 146, 112, 70, 152, 131, 230, 80, 225, 98, 27, 240, 70, + 31, 12, 225, 214, 206, 250, 69, 137, 171, 16, 229, 41, 255, 5, 217, 5, 6, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2879, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3909748874329674343" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a314d25ec9ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10573437778747897626" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e96752" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11291802254533607695" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14042803164849846" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14769198995702588834" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16553281220640670488" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6631057931562725473" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8ef8a3934bbff0b7721536e3" + }, + { + "_tag": "ByteArray", + "bytearray": "f4e635538d1881802b2a67" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf1b364237e2ef67526746a314d25ec9ba1b92bc65a3a8f6b71a43e967521b9cb48a52ef6e410f1b0031e3dae64aa6b61bccf6bc3c6be8a5a21be5b911912f6e8318ff1b5c06400e4fd530614c8ef8a3934bbff0b7721536e34bf4e635538d1881802b2a67a0ff", + "cborBytes": [ + 159, 191, 27, 54, 66, 55, 226, 239, 103, 82, 103, 70, 163, 20, 210, 94, 201, 186, 27, 146, 188, 101, 163, 168, + 246, 183, 26, 67, 233, 103, 82, 27, 156, 180, 138, 82, 239, 110, 65, 15, 27, 0, 49, 227, 218, 230, 74, 166, 182, + 27, 204, 246, 188, 60, 107, 232, 165, 162, 27, 229, 185, 17, 145, 47, 110, 131, 24, 255, 27, 92, 6, 64, 14, 79, + 213, 48, 97, 76, 142, 248, 163, 147, 75, 191, 240, 183, 114, 21, 54, 227, 75, 244, 230, 53, 83, 141, 24, 129, 128, + 43, 42, 103, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2880, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "341dc836" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14233051593282377200" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "824860827315547475" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85dfbe16d0561a1c7ef868d1" + }, + { + "_tag": "ByteArray", + "bytearray": "f0d11e37" + }, + { + "_tag": "ByteArray", + "bytearray": "7ee1b17644" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "16abc6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11652623252378913947" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6012824412339430615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6966655434053365963" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6823808958812827419" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c712b69085" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11741624124008951947" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12653737812678268345" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c25b3e467e72c919dc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "294190756638421564" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17094250860318793702" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e04fbbc265" + } + ] + }, + "cborHex": "9fbf44341dc8361bc585f5039f6755f0ff9f809f41af1b0b727e8d59472d534c85dfbe16d0561a1c7ef868d144f0d11e37457ee1b17644ffff4316abc6d8669f1ba1b66f1c1b808c9b9fbf1b5371d7f21a49e4d71b60ae8834d34bb0cb1b5eb30a180d2aaf1b45c712b690851ba2f2a0ee55b5f08b1baf9b1b7f8d9dd5b949c25b3e467e72c919dc1b04152cef39a2f23cff1bed3afa9696b79fe6ffff45e04fbbc265ff", + "cborBytes": [ + 159, 191, 68, 52, 29, 200, 54, 27, 197, 133, 245, 3, 159, 103, 85, 240, 255, 159, 128, 159, 65, 175, 27, 11, 114, + 126, 141, 89, 71, 45, 83, 76, 133, 223, 190, 22, 208, 86, 26, 28, 126, 248, 104, 209, 68, 240, 209, 30, 55, 69, + 126, 225, 177, 118, 68, 255, 255, 67, 22, 171, 198, 216, 102, 159, 27, 161, 182, 111, 28, 27, 128, 140, 155, 159, + 191, 27, 83, 113, 215, 242, 26, 73, 228, 215, 27, 96, 174, 136, 52, 211, 75, 176, 203, 27, 94, 179, 10, 24, 13, + 42, 175, 27, 69, 199, 18, 182, 144, 133, 27, 162, 242, 160, 238, 85, 181, 240, 139, 27, 175, 155, 27, 127, 141, + 157, 213, 185, 73, 194, 91, 62, 70, 126, 114, 201, 25, 220, 27, 4, 21, 44, 239, 57, 162, 242, 60, 255, 27, 237, + 58, 250, 150, 150, 183, 159, 230, 255, 255, 69, 224, 79, 187, 194, 101, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2881, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "974093ee63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8176909268925623158" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b495bb576d82e99c0daf40f1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85eb97b175da54da9046" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c15bc54d23f6575f0c2c1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2845330070665624948" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce24b3b555f223cc87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39ad8b736c76" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe1dc45a1e22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7111815957699748fdcf9a" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6231201986872330471" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2845614930139175056" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3c6a60f771" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7480768451615737387" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4456739953484627402" + } + }, + { + "_tag": "ByteArray", + "bytearray": "10f7" + }, + { + "_tag": "ByteArray", + "bytearray": "766f227a243ed379672ae48f" + }, + { + "_tag": "ByteArray", + "bytearray": "83d229b94f304b48" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10663455368951356257" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3308848841865319172" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4232905232728563165" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1067385889574528993" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7e77564528d54a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15311323262622240201" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17883808858362397739" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "693027315131163809" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18017508450944108930" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1134706761077120098" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13432727065636452036" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8264159541217074554" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d73805a50665d4e064e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8694678404232928578" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4fdcb38aefb72" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13180893260675023107" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aec704" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf45974093ee631b717a37a82ee92b764cb495bb576d82e99c0daf40f14a85eb97b175da54da90464bc15bc54d23f6575f0c2c1e1b277ca49fc2c2fd7449ce24b3b555f223cc874639ad8b736c7646fe1dc45a1e224b7111815957699748fdcf9affd8669f1b5679ad31573bc8e79fd8669f1b277da7b3c67e58909f453c6a60f771ffffffff9fd8669f1b67d107459d81462b9f1b3dd9855ff7bdfdca4210f74c766f227a243ed379672ae48f4883d229b94f304b481b93fc34292093db61ffffd8669f1b2deb647d9ad853049f1b3abe4ce1dcad9ddd1b0ed01dcfb25aa7e1477e77564528d54a1bd47cbf626dc60dc9ffff1bf8300d6779acc42bbf1b099e20abda0924a11bfa0b0c79ac1f49821b0fbf49c98a3c5c621bba6aa218b80936c41b72b031513d661d7a4a1d73805a50665d4e064e1b78a9b3f138905d4247d4fdcb38aefb721bb6ebf095d0e0010343aec704ffffff", + "cborBytes": [ + 159, 191, 69, 151, 64, 147, 238, 99, 27, 113, 122, 55, 168, 46, 233, 43, 118, 76, 180, 149, 187, 87, 109, 130, + 233, 156, 13, 175, 64, 241, 74, 133, 235, 151, 177, 117, 218, 84, 218, 144, 70, 75, 193, 91, 197, 77, 35, 246, 87, + 95, 12, 44, 30, 27, 39, 124, 164, 159, 194, 194, 253, 116, 73, 206, 36, 179, 181, 85, 242, 35, 204, 135, 70, 57, + 173, 139, 115, 108, 118, 70, 254, 29, 196, 90, 30, 34, 75, 113, 17, 129, 89, 87, 105, 151, 72, 253, 207, 154, 255, + 216, 102, 159, 27, 86, 121, 173, 49, 87, 59, 200, 231, 159, 216, 102, 159, 27, 39, 125, 167, 179, 198, 126, 88, + 144, 159, 69, 60, 106, 96, 247, 113, 255, 255, 255, 255, 159, 216, 102, 159, 27, 103, 209, 7, 69, 157, 129, 70, + 43, 159, 27, 61, 217, 133, 95, 247, 189, 253, 202, 66, 16, 247, 76, 118, 111, 34, 122, 36, 62, 211, 121, 103, 42, + 228, 143, 72, 131, 210, 41, 185, 79, 48, 75, 72, 27, 147, 252, 52, 41, 32, 147, 219, 97, 255, 255, 216, 102, 159, + 27, 45, 235, 100, 125, 154, 216, 83, 4, 159, 27, 58, 190, 76, 225, 220, 173, 157, 221, 27, 14, 208, 29, 207, 178, + 90, 167, 225, 71, 126, 119, 86, 69, 40, 213, 74, 27, 212, 124, 191, 98, 109, 198, 13, 201, 255, 255, 27, 248, 48, + 13, 103, 121, 172, 196, 43, 191, 27, 9, 158, 32, 171, 218, 9, 36, 161, 27, 250, 11, 12, 121, 172, 31, 73, 130, 27, + 15, 191, 73, 201, 138, 60, 92, 98, 27, 186, 106, 162, 24, 184, 9, 54, 196, 27, 114, 176, 49, 81, 61, 102, 29, 122, + 74, 29, 115, 128, 90, 80, 102, 93, 78, 6, 78, 27, 120, 169, 179, 241, 56, 144, 93, 66, 71, 212, 253, 203, 56, 174, + 251, 114, 27, 182, 235, 240, 149, 208, 224, 1, 3, 67, 174, 199, 4, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2882, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04078a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6579919090319225739" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdca5a0384dffc9dee89" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17360815082926293184" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4802400985555568700" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6309c3637ae0e164" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7e89ef2d4a15f2d61" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5742973105577380222" + } + } + } + ] + } + ] + }, + "cborHex": "9f4304078abf1b5b50918cfd49f38b4afdca5a0384dffc9dee891bf0ee01561d10c0c01b42a58e408d06883c486309c3637ae0e16449a7e89ef2d4a15f2d61426a831b4fb3239ca88fc97effff", + "cborBytes": [ + 159, 67, 4, 7, 138, 191, 27, 91, 80, 145, 140, 253, 73, 243, 139, 74, 253, 202, 90, 3, 132, 223, 252, 157, 238, + 137, 27, 240, 238, 1, 86, 29, 16, 192, 192, 27, 66, 165, 142, 64, 141, 6, 136, 60, 72, 99, 9, 195, 99, 122, 224, + 225, 100, 73, 167, 232, 158, 242, 212, 161, 95, 45, 97, 66, 106, 131, 27, 79, 179, 35, 156, 168, 143, 201, 126, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2883, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16315605019874950713" + } + } + ] + }, + "cborHex": "9f1be26cac526139fe39ff", + "cborBytes": [159, 27, 226, 108, 172, 82, 97, 57, 254, 57, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2884, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1730141565846193274" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15604047991063897549" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "338f62d5f2" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b1802b2966366847a081bd88cb6f95d82e5cd45338f62d5f2ffff", + "cborBytes": [ + 159, 191, 27, 24, 2, 178, 150, 99, 102, 132, 122, 8, 27, 216, 140, 182, 249, 93, 130, 229, 205, 69, 51, 143, 98, + 213, 242, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2885, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9796280225761770460" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ff9aea2d4d" + } + ] + }, + "cborHex": "9f1b87f360f660b6bbdc8045ff9aea2d4dff", + "cborBytes": [159, 27, 135, 243, 96, 246, 96, 182, 187, 220, 128, 69, 255, 154, 234, 45, 77, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2886, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17806362462885238408" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3853842423436653910" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "716056012794055435" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4034308633685116174" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7651217250878379369" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8000824481768363252" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11309199222142241391" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80b25b30b478741b05ad" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13108041437960114728" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13e9ee108e01b0" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb062dba6d56d92700" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9fad22f6ce7beb" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11768676091855138020" + } + } + ] + }, + "cborHex": "9fd8669f1bf71ce8515e1fd6889fbf1b357b9943fd45b5561b09eff12659df4b0b1b37fcbe53e117c50e41671b6a2e958d41f255691b6f08a379da0d54f41b9cf258c619e98a6f4a80b25b30b478741b05ad1bb5e91e3d0ab692284713e9ee108e01b0ffd8669f1bffffffffffffffed9f49fb062dba6d56d927000b479fad22f6ce7bebffffffff1ba352bc8d6ba86ce4ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 247, 28, 232, 81, 94, 31, 214, 136, 159, 191, 27, 53, 123, 153, 67, 253, 69, 181, 86, 27, + 9, 239, 241, 38, 89, 223, 75, 11, 27, 55, 252, 190, 83, 225, 23, 197, 14, 65, 103, 27, 106, 46, 149, 141, 65, 242, + 85, 105, 27, 111, 8, 163, 121, 218, 13, 84, 244, 27, 156, 242, 88, 198, 25, 233, 138, 111, 74, 128, 178, 91, 48, + 180, 120, 116, 27, 5, 173, 27, 181, 233, 30, 61, 10, 182, 146, 40, 71, 19, 233, 238, 16, 142, 1, 176, 255, 216, + 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 73, 251, 6, 45, 186, 109, 86, 217, 39, 0, 11, 71, 159, + 173, 34, 246, 206, 123, 235, 255, 255, 255, 255, 27, 163, 82, 188, 141, 107, 168, 108, 228, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2887, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10682029240712674176" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18195267503706364030" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13428072047024675605" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49ce8fcf7e02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0291d8c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f1b386ccbd8d493" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6845e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2aef611c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4590dc57" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12626492139056235609" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e86aa7ad111653f9f638" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2080ea0a6105eabca08feb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2fdcea1cf326cfab7b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14969809980575939805" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5809934f068a26" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17900166489592079940" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5cb1d559bb48f097e98369a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8156661024733702094" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdd61e29" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8658712878643102595" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13841854095639879982" + } + } + ] + }, + "cborHex": "9f1b943e30ffa503bb80bf1bfc82936457a0587e1bba5a1861bd421b154649ce8fcf7e02440291d8c9485f1b386ccbd8d493436845e445c2aef611c5444590dc57ffd8669f1baf3a4fb3d3b584599fbf4210d04ae86aa7ad111653f9f6384b2080ea0a6105eabca08feb492fdcea1cf326cfab7b4247da1bcfbf72dd27537cdd475809934f068a261bf86a2a95487ca6444ca5cb1d559bb48f097e98369a1b713247fc7486a7ce44bdd61e291b7829ed7cbf9f4383ffffff1bc01824f67366a12eff", + "cborBytes": [ + 159, 27, 148, 62, 48, 255, 165, 3, 187, 128, 191, 27, 252, 130, 147, 100, 87, 160, 88, 126, 27, 186, 90, 24, 97, + 189, 66, 27, 21, 70, 73, 206, 143, 207, 126, 2, 68, 2, 145, 216, 201, 72, 95, 27, 56, 108, 203, 216, 212, 147, 67, + 104, 69, 228, 69, 194, 174, 246, 17, 197, 68, 69, 144, 220, 87, 255, 216, 102, 159, 27, 175, 58, 79, 179, 211, + 181, 132, 89, 159, 191, 66, 16, 208, 74, 232, 106, 167, 173, 17, 22, 83, 249, 246, 56, 75, 32, 128, 234, 10, 97, + 5, 234, 188, 160, 143, 235, 73, 47, 220, 234, 28, 243, 38, 207, 171, 123, 66, 71, 218, 27, 207, 191, 114, 221, 39, + 83, 124, 221, 71, 88, 9, 147, 79, 6, 138, 38, 27, 248, 106, 42, 149, 72, 124, 166, 68, 76, 165, 203, 29, 85, 155, + 180, 143, 9, 126, 152, 54, 154, 27, 113, 50, 71, 252, 116, 134, 167, 206, 68, 189, 214, 30, 41, 27, 120, 41, 237, + 124, 191, 159, 67, 131, 255, 255, 255, 27, 192, 24, 36, 246, 115, 102, 161, 46, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2888, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17693652999867763520" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5883554793461760448" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f571c7a0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4324377545486702484" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "49195e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "114411447010985349" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12046666310059168158" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2a0f8060" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fbad00390746211a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "059b694adf2a24dfc55ddc" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10925988603887217662" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8334151746244848188" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4762610037418181659" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d4ecb482de827c91e06526" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4823189181976398908" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1762030448055861333" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17178763710165239291" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6288" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c6f948" + }, + { + "_tag": "ByteArray", + "bytearray": "4c7333af3c94" + } + ] + }, + "cborHex": "9fd8669f1bf58c7ba88c248b409f1b51a695e988d5c1c044f571c7a0d8669f1b3c034677516917949f4349195e1b0196789ad95405851ba72e5b2edabe119e442a0f8060ffffbf497fbad00390746211a44b059b694adf2a24dfc55ddcff1b97a0e8bf32a9ebfeffffd8669f1b73a8dadb63202a3c9fd8669f1b421830987c05441b9f4bd4ecb482de827c91e065261b42ef6901b435cc3c1b1873fd5b5bcac0551bee673a93d0c545fb426288ffffffff43c6f948464c7333af3c94ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 245, 140, 123, 168, 140, 36, 139, 64, 159, 27, 81, 166, 149, 233, 136, 213, 193, 192, 68, + 245, 113, 199, 160, 216, 102, 159, 27, 60, 3, 70, 119, 81, 105, 23, 148, 159, 67, 73, 25, 94, 27, 1, 150, 120, + 154, 217, 84, 5, 133, 27, 167, 46, 91, 46, 218, 190, 17, 158, 68, 42, 15, 128, 96, 255, 255, 191, 73, 127, 186, + 208, 3, 144, 116, 98, 17, 164, 75, 5, 155, 105, 74, 223, 42, 36, 223, 197, 93, 220, 255, 27, 151, 160, 232, 191, + 50, 169, 235, 254, 255, 255, 216, 102, 159, 27, 115, 168, 218, 219, 99, 32, 42, 60, 159, 216, 102, 159, 27, 66, + 24, 48, 152, 124, 5, 68, 27, 159, 75, 212, 236, 180, 130, 222, 130, 124, 145, 224, 101, 38, 27, 66, 239, 105, 1, + 180, 53, 204, 60, 27, 24, 115, 253, 91, 91, 202, 192, 85, 27, 238, 103, 58, 147, 208, 197, 69, 251, 66, 98, 136, + 255, 255, 255, 255, 67, 198, 249, 72, 70, 76, 115, 51, 175, 60, 148, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2889, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5616950231121620998" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2eb5d37419" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab8df6eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "682e8dc03d3115b04d5db9e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "472638cd30d2eeeb92569b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69f219437ee92a377536421a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9673655166056390850" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b4df36a79af0d70069fa0ffffbf452eb5d3741944ab8df6eb4c682e8dc03d3115b04d5db9e34b472638cd30d2eeeb92569b4c69f219437ee92a377536421a1b863fba1ecc69e0c2ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 77, 243, 106, 121, 175, 13, 112, 6, 159, 160, 255, 255, 191, 69, 46, 181, 211, 116, 25, + 68, 171, 141, 246, 235, 76, 104, 46, 141, 192, 61, 49, 21, 176, 77, 93, 185, 227, 75, 71, 38, 56, 205, 48, 210, + 238, 235, 146, 86, 155, 76, 105, 242, 25, 67, 126, 233, 42, 55, 117, 54, 66, 26, 27, 134, 63, 186, 30, 204, 105, + 224, 194, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2890, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd87c9fa0ffff", + "cborBytes": [159, 216, 124, 159, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2891, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13675186946460930852" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bb989ceff2985e59" + } + ] + } + ] + }, + "cborHex": "9f9f1bbdc80612d4dcd32448bb989ceff2985e59ffff", + "cborBytes": [159, 159, 27, 189, 200, 6, 18, 212, 220, 211, 36, 72, 187, 152, 156, 239, 242, 152, 94, 89, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2892, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e705" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17591779615416394653" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "77d4c55b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5feee5079a5050fa4bf8" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5438967595053008640" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad67efc321" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0076ec008bf8fb05456307dc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c0701fbfa0600dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "158c09" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10523943021638867199" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1bfc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11411770499706192170" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12fa" + } + } + ] + } + ] + }, + "cborHex": "9f42e7059fa01bf4228e5adfda239dbf4477d4c55b4a5feee5079a5050fa4bf8ffbf1b4b7b1835f7fec70045ad67efc3214c0076ec008bf8fb05456307dc0effffbf485c0701fbfa0600dc43158c09ffbf1b920c8e6b813c58ff421bfc1b9e5ec0cead45012a4212faffff", + "cborBytes": [ + 159, 66, 231, 5, 159, 160, 27, 244, 34, 142, 90, 223, 218, 35, 157, 191, 68, 119, 212, 197, 91, 74, 95, 238, 229, + 7, 154, 80, 80, 250, 75, 248, 255, 191, 27, 75, 123, 24, 53, 247, 254, 199, 0, 69, 173, 103, 239, 195, 33, 76, 0, + 118, 236, 0, 139, 248, 251, 5, 69, 99, 7, 220, 14, 255, 255, 191, 72, 92, 7, 1, 251, 250, 6, 0, 220, 67, 21, 140, + 9, 255, 191, 27, 146, 12, 142, 107, 129, 60, 88, 255, 66, 27, 252, 27, 158, 94, 192, 206, 173, 69, 1, 42, 66, 18, + 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2893, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8948717145204340239" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10588890737014728675" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "28bd943d" + }, + { + "_tag": "ByteArray", + "bytearray": "1971f271ddcc" + }, + { + "_tag": "ByteArray", + "bytearray": "04a51d748f570322" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7372354451456465916" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18434411747825457966" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12241581307084650882" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fdb7a543c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80c1417a6949" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "616c8f1e03f45e58200569" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7650" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5495970280642143772" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d692fb9f2fd5c7b6dbc2afc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc4bb507035fdeb3545fb6" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bc3ac848e7" + } + ] + }, + "cborHex": "9f9f1b7c303ad4cb5a360fd8669f1b92f34c05e12fe7e39f4428bd943d461971f271ddcc4804a51d748f5703221b664fdd502d551bfc1bffd42fd0a06c9b2effff1ba9e2d55711d7b982bf453fdb7a543c4680c1417a69494b616c8f1e03f45e5820056941684276501b4c459bd9f1c7661c4c7d692fb9f2fd5c7b6dbc2afc4bfc4bb507035fdeb3545fb6ffff45bc3ac848e7ff", + "cborBytes": [ + 159, 159, 27, 124, 48, 58, 212, 203, 90, 54, 15, 216, 102, 159, 27, 146, 243, 76, 5, 225, 47, 231, 227, 159, 68, + 40, 189, 148, 61, 70, 25, 113, 242, 113, 221, 204, 72, 4, 165, 29, 116, 143, 87, 3, 34, 27, 102, 79, 221, 80, 45, + 85, 27, 252, 27, 255, 212, 47, 208, 160, 108, 155, 46, 255, 255, 27, 169, 226, 213, 87, 17, 215, 185, 130, 191, + 69, 63, 219, 122, 84, 60, 70, 128, 193, 65, 122, 105, 73, 75, 97, 108, 143, 30, 3, 244, 94, 88, 32, 5, 105, 65, + 104, 66, 118, 80, 27, 76, 69, 155, 217, 241, 199, 102, 28, 76, 125, 105, 47, 185, 242, 253, 92, 123, 109, 188, 42, + 252, 75, 252, 75, 181, 7, 3, 95, 222, 179, 84, 95, 182, 255, 255, 69, 188, 58, 200, 72, 231, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2894, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3213264474405760666" + } + } + ] + }, + "cborHex": "9f1b2c97cf03ce566e9aff", + "cborBytes": [159, 27, 44, 151, 207, 3, 206, 86, 110, 154, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2895, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17891050010158634206" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "777d7b416ea12e02a84f8f" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13936202691459173382" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "eb7d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10180952680881104217" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10824375028580682400" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1082c388e2d025c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89378e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d577d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fdc91d0d7eeae17fbe557" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66b835ea0a25" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2605343390965871761" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d7aa0621a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "638b4572994ec50a075d2d74" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e360715e51e853d92fec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c84750" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd96585c0a33fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15463066605503044623" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fbf1bf849c731824114de4b777d7b416ea12e02a84f8fff1bc1675682be444c06ff42eb7d1b8d4a0285b2faa5591b9637e7bd0e290aa0bf481082c388e2d025c04389378e432d577d4b5fdc91d0d7eeae17fbe5574666b835ea0a251b24280a02a86eb491456d7aa0621a4c638b4572994ec50a075d2d744ae360715e51e853d92fec43c8475047fd96585c0a33fc1bd697d9269f36dc0fffff", + "cborBytes": [ + 159, 159, 191, 27, 248, 73, 199, 49, 130, 65, 20, 222, 75, 119, 125, 123, 65, 110, 161, 46, 2, 168, 79, 143, 255, + 27, 193, 103, 86, 130, 190, 68, 76, 6, 255, 66, 235, 125, 27, 141, 74, 2, 133, 178, 250, 165, 89, 27, 150, 55, + 231, 189, 14, 41, 10, 160, 191, 72, 16, 130, 195, 136, 226, 208, 37, 192, 67, 137, 55, 142, 67, 45, 87, 125, 75, + 95, 220, 145, 208, 215, 238, 174, 23, 251, 229, 87, 70, 102, 184, 53, 234, 10, 37, 27, 36, 40, 10, 2, 168, 110, + 180, 145, 69, 109, 122, 160, 98, 26, 76, 99, 139, 69, 114, 153, 78, 197, 10, 7, 93, 45, 116, 74, 227, 96, 113, 94, + 81, 232, 83, 217, 47, 236, 67, 200, 71, 80, 71, 253, 150, 88, 92, 10, 51, 252, 27, 214, 151, 217, 38, 159, 54, + 220, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2896, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12542169346393359816" + } + } + ] + }, + "cborHex": "9f1bae0ebc91bc91c5c8ff", + "cborBytes": [159, 27, 174, 14, 188, 145, 188, 145, 197, 200, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2897, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10596081609330029868" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14112716493934348280" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10477245854132877553" + } + } + ] + } + ] + }, + "cborHex": "9f1b930cd8154f2a752cd8669f1bc3da70e0fcc0c7f89f1b9166a797f00638f1ffffff", + "cborBytes": [ + 159, 27, 147, 12, 216, 21, 79, 42, 117, 44, 216, 102, 159, 27, 195, 218, 112, 224, 252, 192, 199, 248, 159, 27, + 145, 102, 167, 151, 240, 6, 56, 241, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2898, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16454859915910756525" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6326294994978887436" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2325851648133296882" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14110744931732823803" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5755248641466836198" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8292547953924695584" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2af12c27ebc7a83bf34772c6" + }, + { + "_tag": "ByteArray", + "bytearray": "33e9eecc" + }, + { + "_tag": "ByteArray", + "bytearray": "79ccfdbbe970787a4be9" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1be45b67e974acb8ad9fd8669f1b57cb83c7a00c570c9f1b204715c0473df2f24155ffff1bc3d36fc0e4141efb1b4fdec02594ae24e6d8669f1b73150c6da492e6209f4c2af12c27ebc7a83bf34772c64433e9eecc4a79ccfdbbe970787a4be9ffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 228, 91, 103, 233, 116, 172, 184, 173, 159, 216, 102, 159, 27, 87, 203, 131, 199, 160, 12, + 87, 12, 159, 27, 32, 71, 21, 192, 71, 61, 242, 242, 65, 85, 255, 255, 27, 195, 211, 111, 192, 228, 20, 30, 251, + 27, 79, 222, 192, 37, 148, 174, 36, 230, 216, 102, 159, 27, 115, 21, 12, 109, 164, 146, 230, 32, 159, 76, 42, 241, + 44, 39, 235, 199, 168, 59, 243, 71, 114, 198, 68, 51, 233, 238, 204, 74, 121, 204, 253, 187, 233, 112, 120, 122, + 75, 233, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2899, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2918164800596652800" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4830490864589625883" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6815933057077837683" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2914808533779102220" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "69" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1239492308296292237" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7388240332885932098" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "13b83591dc19495ea7a7" + } + ] + }, + "cborHex": "9fd8669f1b287f676ccf9cb30080ff80d8669f1b430959d92aa25a1b80ffd8669f1b5e970f00c7f77f739fd8669f1b28737aeb0c2e3a0c9f41691b11338faff1d4578dffff80d8669f1b66884d702ce1384280ffffff4a13b83591dc19495ea7a7ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 40, 127, 103, 108, 207, 156, 179, 0, 128, 255, 128, 216, 102, 159, 27, 67, 9, 89, 217, 42, + 162, 90, 27, 128, 255, 216, 102, 159, 27, 94, 151, 15, 0, 199, 247, 127, 115, 159, 216, 102, 159, 27, 40, 115, + 122, 235, 12, 46, 58, 12, 159, 65, 105, 27, 17, 51, 143, 175, 241, 212, 87, 141, 255, 255, 128, 216, 102, 159, 27, + 102, 136, 77, 112, 44, 225, 56, 66, 128, 255, 255, 255, 74, 19, 184, 53, 145, 220, 25, 73, 94, 167, 167, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2900, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10829208534248316140" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7291870319984368333" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "851f67d8cc7f8eeb2213" + }, + { + "_tag": "ByteArray", + "bytearray": "d2" + } + ] + }, + "cborHex": "9fa09f1b964913c94a7fdcecffd8669f1b6531ed6c0ae1dacd80ff4a851f67d8cc7f8eeb221341d2ff", + "cborBytes": [ + 159, 160, 159, 27, 150, 73, 19, 201, 74, 127, 220, 236, 255, 216, 102, 159, 27, 101, 49, 237, 108, 10, 225, 218, + 205, 128, 255, 74, 133, 31, 103, 216, 204, 127, 142, 235, 34, 19, 65, 210, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2901, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10778422383449638167" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12393908210579596850" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13680846987684259498" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b958c554" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11154736547275573846" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5377983637348741988" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7595742880105402423" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9637b4dadc7b735d7c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4463841a4824d6e8f16" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2570506511594682359" + } + } + ] + } + ] + }, + "cborHex": "9f1b9594a60d1ca285171bac0001da0e64e632d8669f1bbddc21d9df64a6aa9f44b958c5541b9acd95ca176d8a56bf1b4aa26f9fd808f3641b69697fe7cde29037499637b4dadc7b735d7c4aa4463841a4824d6e8f16ff1b23ac460d9c6df7f7ffffff", + "cborBytes": [ + 159, 27, 149, 148, 166, 13, 28, 162, 133, 23, 27, 172, 0, 1, 218, 14, 100, 230, 50, 216, 102, 159, 27, 189, 220, + 33, 217, 223, 100, 166, 170, 159, 68, 185, 88, 197, 84, 27, 154, 205, 149, 202, 23, 109, 138, 86, 191, 27, 74, + 162, 111, 159, 216, 8, 243, 100, 27, 105, 105, 127, 231, 205, 226, 144, 55, 73, 150, 55, 180, 218, 220, 123, 115, + 93, 124, 74, 164, 70, 56, 65, 164, 130, 77, 110, 143, 22, 255, 27, 35, 172, 70, 13, 156, 109, 247, 247, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2902, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f28fa1f27de49d479f9d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18078347035558244741" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "376068940857232257" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6145626744506582297" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1213763550183362183" + } + }, + { + "_tag": "ByteArray", + "bytearray": "194017e11ba412df" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16450859489199012765" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10485639656749053654" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6a27d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7182676408360330901" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "107786603029103612" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "100904279488830816" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81663d32ccf3df6967ef056d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4402338439899443405" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0792271424699ca2c61d83d4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8822857668193422248" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8551206248539254395" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13709063025688541333" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8dae9186279" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15053963340743746910" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "713218d0088d40d8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17891618486047893767" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7357626144307398450" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1601398062380366140" + } + } + ] + }, + "cborHex": "9f9f9f4af28fa1f27de49d479f9dff9f1bfae330d87caf71851b053810b58eda4b811b5549a6f6947485191b10d82784a1ff0e8748194017e11ba412dfffd8669f1be44d318b87923b9d9f1b918479b66746b6d6436a27d31b63adfe2350e566951b017eef58291883fcffffbf1b01667be8573f9d604c81663d32ccf3df6967ef056d1b3d183f7c8b40f0cd4c0792271424699ca2c61d83d41b7a71164dc0800ba81b76abfcc6dd486e7b1bbe406030299b789546a8dae91862791bd0ea6be62ac8a55e48713218d0088d40d81bf84bcc381db269071b661b89fef191c732ffff1b16394f0d9c2e393cff", + "cborBytes": [ + 159, 159, 159, 74, 242, 143, 161, 242, 125, 228, 157, 71, 159, 157, 255, 159, 27, 250, 227, 48, 216, 124, 175, + 113, 133, 27, 5, 56, 16, 181, 142, 218, 75, 129, 27, 85, 73, 166, 246, 148, 116, 133, 25, 27, 16, 216, 39, 132, + 161, 255, 14, 135, 72, 25, 64, 23, 225, 27, 164, 18, 223, 255, 216, 102, 159, 27, 228, 77, 49, 139, 135, 146, 59, + 157, 159, 27, 145, 132, 121, 182, 103, 70, 182, 214, 67, 106, 39, 211, 27, 99, 173, 254, 35, 80, 229, 102, 149, + 27, 1, 126, 239, 88, 41, 24, 131, 252, 255, 255, 191, 27, 1, 102, 123, 232, 87, 63, 157, 96, 76, 129, 102, 61, 50, + 204, 243, 223, 105, 103, 239, 5, 109, 27, 61, 24, 63, 124, 139, 64, 240, 205, 76, 7, 146, 39, 20, 36, 105, 156, + 162, 198, 29, 131, 212, 27, 122, 113, 22, 77, 192, 128, 11, 168, 27, 118, 171, 252, 198, 221, 72, 110, 123, 27, + 190, 64, 96, 48, 41, 155, 120, 149, 70, 168, 218, 233, 24, 98, 121, 27, 208, 234, 107, 230, 42, 200, 165, 94, 72, + 113, 50, 24, 208, 8, 141, 64, 216, 27, 248, 75, 204, 56, 29, 178, 105, 7, 27, 102, 27, 137, 254, 241, 145, 199, + 50, 255, 255, 27, 22, 57, 79, 13, 156, 46, 57, 60, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2903, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee58" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13543049051982622519" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf42ee581bbbf2935bcf1d6f37ffff", + "cborBytes": [159, 191, 66, 238, 88, 27, 187, 242, 147, 91, 207, 29, 111, 55, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2904, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10162435916500572576" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16890033384740814009" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7352226680781019180" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13040200590426166301" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12495244611173511499" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9306231243966211493" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1091839587746495398" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6928573860673604980" + } + }, + { + "_tag": "ByteArray", + "bytearray": "63ef8b0cc07e" + }, + { + "_tag": "ByteArray", + "bytearray": "3ea4b4b4" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3278354773220442845" + } + } + ] + }, + "cborHex": "9fa01b8d08399f87b019a0d8669f1bea6573e04df6fcb99f1b66085b36601a182c1bb4f81958d830d41d1bad6806c56e9c714b9f1b81266002863f65a5ffd8669f1b0f26fe51fb56bba69f1b60273d379581cd744663ef8b0cc07e443ea4b4b4ffffffff1b2d7f0e4bf982c2ddff", + "cborBytes": [ + 159, 160, 27, 141, 8, 57, 159, 135, 176, 25, 160, 216, 102, 159, 27, 234, 101, 115, 224, 77, 246, 252, 185, 159, + 27, 102, 8, 91, 54, 96, 26, 24, 44, 27, 180, 248, 25, 88, 216, 48, 212, 29, 27, 173, 104, 6, 197, 110, 156, 113, + 75, 159, 27, 129, 38, 96, 2, 134, 63, 101, 165, 255, 216, 102, 159, 27, 15, 38, 254, 81, 251, 86, 187, 166, 159, + 27, 96, 39, 61, 55, 149, 129, 205, 116, 70, 99, 239, 139, 12, 192, 126, 68, 62, 164, 180, 180, 255, 255, 255, 255, + 27, 45, 127, 14, 75, 249, 130, 194, 221, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2905, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2016400630215215638" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10154955800243677998" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5009357376399291880" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4521094812305757644" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7524111028311555591" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17053801881075461865" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0341aae4e2098f394" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "246b13261a17e9d87c93a5" + } + } + ] + } + ] + }, + "cborHex": "9f80bf1b1bfbb1b098da0a161b8ceda67f3f512b2e1b4584cffe3d4335e81b3ebe27c72b5895cc1b686b031da51bfe071becab4674b7642ee949f0341aae4e2098f3944b246b13261a17e9d87c93a5ffff", + "cborBytes": [ + 159, 128, 191, 27, 27, 251, 177, 176, 152, 218, 10, 22, 27, 140, 237, 166, 127, 63, 81, 43, 46, 27, 69, 132, 207, + 254, 61, 67, 53, 232, 27, 62, 190, 39, 199, 43, 88, 149, 204, 27, 104, 107, 3, 29, 165, 27, 254, 7, 27, 236, 171, + 70, 116, 183, 100, 46, 233, 73, 240, 52, 26, 174, 78, 32, 152, 243, 148, 75, 36, 107, 19, 38, 26, 23, 233, 216, + 124, 147, 165, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2906, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15132878769602987720" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3675923539069783459" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10791364847457683401" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "567ec0adcc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4add345a25d8df6ef16f2b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44f24654fffcbc39129a" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6916980191946968556" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4597327202865616680" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7785678177008764933" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1172e2b006b01c5d4de5db" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4618619556796641166" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b719" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17391751803673672262" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ec8a93feb1f7ce2b2e46" + }, + { + "_tag": "ByteArray", + "bytearray": "0d6842f3ec" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15526936916530269925" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9fe074b0d09e17f6eef202" + }, + { + "_tag": "ByteArray", + "bytearray": "ec8ea88a24f3d481c7" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bfcf1d1153cad3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "708014781511968405" + } + } + ] + }, + "cborHex": "9fd8669f1bd202c910433c86c89fd8669f1b330380fb9fc04da380ffffffbf1b95c2a127565a47c945567ec0adcc4b4add345a25d8df6ef16f2b4a44f24654fffcbc39129affd8669f1b5ffe0cd63b698dec9fd8669f1b3fccfcbbbb0b97289f1b6c0c490d3c1e48054b1172e2b006b01c5d4de5dbffffd8669f1b4018a20433892f8e9f42b7191bf15bea1eb7ba7a464aec8a93feb1f7ce2b2e46450d6842f3ecffffd8669f1bd77ac2dc3faf8ee59f4b9fe074b0d09e17f6eef20249ec8ea88a24f3d481c7ffffffff47bfcf1d1153cad31b09d35fb14bbf2695ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 210, 2, 201, 16, 67, 60, 134, 200, 159, 216, 102, 159, 27, 51, 3, 128, 251, 159, 192, 77, + 163, 128, 255, 255, 255, 191, 27, 149, 194, 161, 39, 86, 90, 71, 201, 69, 86, 126, 192, 173, 204, 75, 74, 221, 52, + 90, 37, 216, 223, 110, 241, 111, 43, 74, 68, 242, 70, 84, 255, 252, 188, 57, 18, 154, 255, 216, 102, 159, 27, 95, + 254, 12, 214, 59, 105, 141, 236, 159, 216, 102, 159, 27, 63, 204, 252, 187, 187, 11, 151, 40, 159, 27, 108, 12, + 73, 13, 60, 30, 72, 5, 75, 17, 114, 226, 176, 6, 176, 28, 93, 77, 229, 219, 255, 255, 216, 102, 159, 27, 64, 24, + 162, 4, 51, 137, 47, 142, 159, 66, 183, 25, 27, 241, 91, 234, 30, 183, 186, 122, 70, 74, 236, 138, 147, 254, 177, + 247, 206, 43, 46, 70, 69, 13, 104, 66, 243, 236, 255, 255, 216, 102, 159, 27, 215, 122, 194, 220, 63, 175, 142, + 229, 159, 75, 159, 224, 116, 176, 208, 158, 23, 246, 238, 242, 2, 73, 236, 142, 168, 138, 36, 243, 212, 129, 199, + 255, 255, 255, 255, 71, 191, 207, 29, 17, 83, 202, 211, 27, 9, 211, 95, 177, 75, 191, 38, 149, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2907, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5113254085130618521" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "289214539722352392" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10653138660333554449" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78f1b46561d61151a061713f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11233391647321557485" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14286617123797030775" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16573876634109372549" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14089471404936972406" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18072723230112262086" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2bb6ab239110000a23b9" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8393158585863464275" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "625385487894434978" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3f401eede9fd" + }, + { + "_tag": "ByteArray", + "bytearray": "1e6fc67cd83bdd2b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11638622311498145727" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf1b46f5ed7fce8686991b04037f1770076708ffbf1b93d78d2b38298b114c78f1b46561d61151a061713f1b9be5062fa97109ed1bc644429491ef57771be6023cfc8f3c68851bc387db97f44ac8761bfacf36063ecaa7c64a2bb6ab239110000a23b9ff9f9f1b747a7d43d5e965531b08add0c9ada1d4a2ff463f401eede9fd481e6fc67cd83bdd2bff1ba184b15407c85fbfd8669f1bffffffffffffffeb80ffff", + "cborBytes": [ + 159, 191, 27, 70, 245, 237, 127, 206, 134, 134, 153, 27, 4, 3, 127, 23, 112, 7, 103, 8, 255, 191, 27, 147, 215, + 141, 43, 56, 41, 139, 17, 76, 120, 241, 180, 101, 97, 214, 17, 81, 160, 97, 113, 63, 27, 155, 229, 6, 47, 169, + 113, 9, 237, 27, 198, 68, 66, 148, 145, 239, 87, 119, 27, 230, 2, 60, 252, 143, 60, 104, 133, 27, 195, 135, 219, + 151, 244, 74, 200, 118, 27, 250, 207, 54, 6, 62, 202, 167, 198, 74, 43, 182, 171, 35, 145, 16, 0, 10, 35, 185, + 255, 159, 159, 27, 116, 122, 125, 67, 213, 233, 101, 83, 27, 8, 173, 208, 201, 173, 161, 212, 162, 255, 70, 63, + 64, 30, 237, 233, 253, 72, 30, 111, 198, 124, 216, 59, 221, 43, 255, 27, 161, 132, 177, 84, 7, 200, 95, 191, 216, + 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2908, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4686343989686236674" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9459b0b68624aa43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a8b64f4979356d32fb581" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48f105e92aeedfc9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7042733956833623136" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f065684e6d1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9344449842976155718" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14725315783890524117" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14747109037472553017" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "689221fc67c79899fae3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73a5288a4ea6d779c784" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96c5d30bf4fab9" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + }, + "cborHex": "9f1b41093d078088f6029fbf489459b0b68624aa434b8a8b64f4979356d32fb581ffbf4848f105e92aeedfc941f5ffffbf1b61bcd13840a63c60463f065684e6d11b81ae279f880c68461bcc5ad4aff83f57d51bcca841893a8118394a689221fc67c79899fae34a73a5288a4ea6d779c7844796c5d30bf4fab9ff11ff", + "cborBytes": [ + 159, 27, 65, 9, 61, 7, 128, 136, 246, 2, 159, 191, 72, 148, 89, 176, 182, 134, 36, 170, 67, 75, 138, 139, 100, + 244, 151, 147, 86, 211, 47, 181, 129, 255, 191, 72, 72, 241, 5, 233, 42, 238, 223, 201, 65, 245, 255, 255, 191, + 27, 97, 188, 209, 56, 64, 166, 60, 96, 70, 63, 6, 86, 132, 230, 209, 27, 129, 174, 39, 159, 136, 12, 104, 70, 27, + 204, 90, 212, 175, 248, 63, 87, 213, 27, 204, 168, 65, 137, 58, 129, 24, 57, 74, 104, 146, 33, 252, 103, 199, 152, + 153, 250, 227, 74, 115, 165, 40, 138, 78, 166, 215, 121, 199, 132, 71, 150, 197, 211, 11, 244, 250, 185, 255, 17, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2909, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "020203" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7048064368091108281" + }, + "fields": [] + } + ] + }, + "cborHex": "9f43020203d8669f1b61cfc133562893b980ffff", + "cborBytes": [159, 67, 2, 2, 3, 216, 102, 159, 27, 97, 207, 193, 51, 86, 40, 147, 185, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2910, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b452bef9c473357eaa37f3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07301a174296def87047dd37" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a6a7f3c2b5226fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "430c5504e8a9348769b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87a7e0241d97" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "499474cefd32d7bd7ed2968d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97a97f547bb1c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a9675be91a8c5a1e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "424f0df7d9328f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8655e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "903313551591442325" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + "cborHex": "9f4bb452bef9c473357eaa37f30cbf4c07301a174296def87047dd37489a6a7f3c2b5226fd4a430c5504e8a9348769b04687a7e0241d974c499474cefd32d7bd7ed2968d4797a97f547bb1c7495a9675be91a8c5a1e247424f0df7d9328f43c8655e1b0c8936e3a3678795ff04ff", + "cborBytes": [ + 159, 75, 180, 82, 190, 249, 196, 115, 53, 126, 170, 55, 243, 12, 191, 76, 7, 48, 26, 23, 66, 150, 222, 248, 112, + 71, 221, 55, 72, 154, 106, 127, 60, 43, 82, 38, 253, 74, 67, 12, 85, 4, 232, 169, 52, 135, 105, 176, 70, 135, 167, + 224, 36, 29, 151, 76, 73, 148, 116, 206, 253, 50, 215, 189, 126, 210, 150, 141, 71, 151, 169, 127, 84, 123, 177, + 199, 73, 90, 150, 117, 190, 145, 168, 197, 161, 226, 71, 66, 79, 13, 247, 217, 50, 143, 67, 200, 101, 94, 27, 12, + 137, 54, 227, 163, 103, 135, 149, 255, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2911, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0601e070c0edca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11599623782233033763" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3846682921648277370" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10964850889345718186" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17496336117254023956" + } + }, + { + "_tag": "ByteArray", + "bytearray": "849a711bdf5058be92f90d22" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14334409010179459200" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8111852405182565036" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17833018203982583639" + } + }, + { + "_tag": "ByteArray", + "bytearray": "82d7f4bdce87" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffffb9fbf470601e070c0edca1ba0fa245f5c2c4c23ff1b356229bc9468477ad8669f1b982af9ca2293d7aa9f1bf2cf78ffc3c36b144c849a711bdf5058be92f90d221bc6ee0d0c3ce7c8801b709316c8b94e0aacffff1bf77b9b92b974d7574682d7f4bdce87ff1bfffffffffffffff40dff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 191, 71, 6, 1, 224, 112, 192, 237, 202, 27, 160, 250, 36, + 95, 92, 44, 76, 35, 255, 27, 53, 98, 41, 188, 148, 104, 71, 122, 216, 102, 159, 27, 152, 42, 249, 202, 34, 147, + 215, 170, 159, 27, 242, 207, 120, 255, 195, 195, 107, 20, 76, 132, 154, 113, 27, 223, 80, 88, 190, 146, 249, 13, + 34, 27, 198, 238, 13, 12, 60, 231, 200, 128, 27, 112, 147, 22, 200, 185, 78, 10, 172, 255, 255, 27, 247, 123, 155, + 146, 185, 116, 215, 87, 70, 130, 215, 244, 189, 206, 135, 255, 27, 255, 255, 255, 255, 255, 255, 255, 244, 13, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2912, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10027731610880044585" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d703f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15893733338319108269" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bbceb7052c0246814d74" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b8b29a8c55975ee2943d703f81bdc91e243394b38ad1bfffffffffffffff3ff9f4abbceb7052c0246814d74ffffff", + "cborBytes": [ + 159, 159, 191, 27, 139, 41, 168, 197, 89, 117, 238, 41, 67, 215, 3, 248, 27, 220, 145, 226, 67, 57, 75, 56, 173, + 27, 255, 255, 255, 255, 255, 255, 255, 243, 255, 159, 74, 187, 206, 183, 5, 44, 2, 70, 129, 77, 116, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2913, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1334169564950022834" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1012273583763413873" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f935e39a1a66dd916d9f82cc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2037820374729031689" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9037876549614763166" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12869071638811671639" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15745279001183839028" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14342838216443255305" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ae088ce2ad15c43beb5" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f8dec174f222f5" + } + ] + } + ] + }, + "cborHex": "9f1b1283ec268cfbcab29fbf1b0e0c51760fbadb714cf935e39a1a66dd916d9f82cc1b1c47cad57fc700091b7d6cfcd64f9efc9e1bb2982078e46c7c571bda8277d45afae3341bc70bff5dc1ff5a094a6ae088ce2ad15c43beb5ff47f8dec174f222f5ffff", + "cborBytes": [ + 159, 27, 18, 131, 236, 38, 140, 251, 202, 178, 159, 191, 27, 14, 12, 81, 118, 15, 186, 219, 113, 76, 249, 53, 227, + 154, 26, 102, 221, 145, 109, 159, 130, 204, 27, 28, 71, 202, 213, 127, 199, 0, 9, 27, 125, 108, 252, 214, 79, 158, + 252, 158, 27, 178, 152, 32, 120, 228, 108, 124, 87, 27, 218, 130, 119, 212, 90, 250, 227, 52, 27, 199, 11, 255, + 93, 193, 255, 90, 9, 74, 106, 224, 136, 206, 42, 209, 92, 67, 190, 181, 255, 71, 248, 222, 193, 116, 242, 34, 245, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2914, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8917289251119032361" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5785416293e483b1c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10321161465094586659" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5332588559853429812" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12323081328073752412" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76a32f" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18417842165438650579" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13638450955384208663" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ab08" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9be397f003c0d43cd7b8ffff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7101749017441320721" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a53e436b2" + }, + { + "_tag": "ByteArray", + "bytearray": "8f6e44e4c7ff8ce1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15298009995381484535" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11563190278093078917" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5410567629640366238" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1593849722860014108" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7ba745120f6112" + }, + { + "_tag": "ByteArray", + "bytearray": "cef5f7fcb4af7151a5e4" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14840671736280621606" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e7c919aaf2468b65fd56d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13523555474267726950" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3234557197734491463" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0009bfbb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4803766394295075956" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c699a0f58e4018956256" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15358067993876767538" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dba819359e4b6d60e0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16265474301937100506" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18414349178628860471" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17692536630307983865" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6745945287132955026" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17804888182137430300" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1858360957145999010" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b7bc09353fc5be82949b5785416293e483b1c1b8f3c21ab2c69c1231b4a01290abb6024341bab04612d6a15bf5c4376a32fff9fd8669f1bff9951de182e98d39f1bbd4582e262433d1742ab08ffff9f4c9be397f003c0d43cd7b8ffff1b628e7b1acc91bf11458a53e436b2488f6e44e4c7ff8ce11bd44d7309d916abf7ffbf1ba078b44b23fd01851b4b163297bdf0f89effd8669f1b161e7de0dc6d0a1c9f477ba745120f61124acef5f7fcb4af7151a5e4ffff9f1bcdf4a8509d2fa2264b9e7c919aaf2468b65fd56d1bbbad520d90046466ffffbf1b2ce374a248a5b547440009bfbb1b42aa68158beac4744ac699a0f58e40189562561bd522d1784b52233249dba819359e4b6d60e01be1ba92b30e34a6da1bff8ce903ba2dea371bf5888453811811f91b5d9e697f41c7c1921bf717ab77a1da211c1b19ca3971cb2466a2ffff", + "cborBytes": [ + 159, 191, 27, 123, 192, 147, 83, 252, 91, 232, 41, 73, 181, 120, 84, 22, 41, 62, 72, 59, 28, 27, 143, 60, 33, 171, + 44, 105, 193, 35, 27, 74, 1, 41, 10, 187, 96, 36, 52, 27, 171, 4, 97, 45, 106, 21, 191, 92, 67, 118, 163, 47, 255, + 159, 216, 102, 159, 27, 255, 153, 81, 222, 24, 46, 152, 211, 159, 27, 189, 69, 130, 226, 98, 67, 61, 23, 66, 171, + 8, 255, 255, 159, 76, 155, 227, 151, 240, 3, 192, 212, 60, 215, 184, 255, 255, 27, 98, 142, 123, 26, 204, 145, + 191, 17, 69, 138, 83, 228, 54, 178, 72, 143, 110, 68, 228, 199, 255, 140, 225, 27, 212, 77, 115, 9, 217, 22, 171, + 247, 255, 191, 27, 160, 120, 180, 75, 35, 253, 1, 133, 27, 75, 22, 50, 151, 189, 240, 248, 158, 255, 216, 102, + 159, 27, 22, 30, 125, 224, 220, 109, 10, 28, 159, 71, 123, 167, 69, 18, 15, 97, 18, 74, 206, 245, 247, 252, 180, + 175, 113, 81, 165, 228, 255, 255, 159, 27, 205, 244, 168, 80, 157, 47, 162, 38, 75, 158, 124, 145, 154, 175, 36, + 104, 182, 95, 213, 109, 27, 187, 173, 82, 13, 144, 4, 100, 102, 255, 255, 191, 27, 44, 227, 116, 162, 72, 165, + 181, 71, 68, 0, 9, 191, 187, 27, 66, 170, 104, 21, 139, 234, 196, 116, 74, 198, 153, 160, 245, 142, 64, 24, 149, + 98, 86, 27, 213, 34, 209, 120, 75, 82, 35, 50, 73, 219, 168, 25, 53, 158, 75, 109, 96, 224, 27, 225, 186, 146, + 179, 14, 52, 166, 218, 27, 255, 140, 233, 3, 186, 45, 234, 55, 27, 245, 136, 132, 83, 129, 24, 17, 249, 27, 93, + 158, 105, 127, 65, 199, 193, 146, 27, 247, 23, 171, 119, 161, 218, 33, 28, 27, 25, 202, 57, 113, 203, 36, 102, + 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2915, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9063793225718012125" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6977229129044282907" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "350f7f42" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "513594257342131818" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5352831399665714876" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c2a6b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4625988141043815149" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f76a0de21cff5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4239021541278700954" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "837756076d10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6030483277734121291" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1932431800" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "400882180554841420" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15252641883200353714" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8283131823389273060" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab9000293c0fb7b2a7114bf5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ebcdf43a389595d7dcf16cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "241980259939875622" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b703a7702b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1024884958064246531" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14725818955217512866" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "610962336563824102" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1789" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d906756" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13185794555961207332" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7659913712838151006" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17897443871945586510" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16b27d827afeaa7d8532" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16369279026998361643" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3017457920570005629" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7dc90feab08398dd9fbf1b60d418ed09314e1b44350f7f42ffffffd8669f1b0720a741838eee6a9fd8669f1b4a4913cc27a1c6bc9f437c2a6b1b4032cfb46a1612edffffbf477f76a0de21cff51b3ad407a1eb25559a46837756076d101b53b0949719468f4b42e4cc451932431800ffbf1b0590383820c15d4c1bd3ac44fb1666f5b21b72f39881e8d9ebe44cab9000293c0fb7b2a7114bf54c3ebcdf43a389595d7dcf16cb1b035bafc3ac5f7b26415845b703a7702bff1b0e391f70750f7f03ffff1bcc5c9e51ac7429a2bf1b087a9302120785e6421789446d9067561bb6fd5a498d58ea24ffd8669f1b6a4d7af017dc8b5e9fbf1bf8607e6076cef74e4a16b27d827afeaa7d8532ff1be32b5c8c017d3e2b1b29e029fdd843987dffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 125, 201, 15, 234, 176, 131, 152, 221, 159, 191, 27, 96, 212, 24, 237, 9, 49, 78, 27, 68, + 53, 15, 127, 66, 255, 255, 255, 216, 102, 159, 27, 7, 32, 167, 65, 131, 142, 238, 106, 159, 216, 102, 159, 27, 74, + 73, 19, 204, 39, 161, 198, 188, 159, 67, 124, 42, 107, 27, 64, 50, 207, 180, 106, 22, 18, 237, 255, 255, 191, 71, + 127, 118, 160, 222, 33, 207, 245, 27, 58, 212, 7, 161, 235, 37, 85, 154, 70, 131, 119, 86, 7, 109, 16, 27, 83, + 176, 148, 151, 25, 70, 143, 75, 66, 228, 204, 69, 25, 50, 67, 24, 0, 255, 191, 27, 5, 144, 56, 56, 32, 193, 93, + 76, 27, 211, 172, 68, 251, 22, 102, 245, 178, 27, 114, 243, 152, 129, 232, 217, 235, 228, 76, 171, 144, 0, 41, 60, + 15, 183, 178, 167, 17, 75, 245, 76, 62, 188, 223, 67, 163, 137, 89, 93, 125, 207, 22, 203, 27, 3, 91, 175, 195, + 172, 95, 123, 38, 65, 88, 69, 183, 3, 167, 112, 43, 255, 27, 14, 57, 31, 112, 117, 15, 127, 3, 255, 255, 27, 204, + 92, 158, 81, 172, 116, 41, 162, 191, 27, 8, 122, 147, 2, 18, 7, 133, 230, 66, 23, 137, 68, 109, 144, 103, 86, 27, + 182, 253, 90, 73, 141, 88, 234, 36, 255, 216, 102, 159, 27, 106, 77, 122, 240, 23, 220, 139, 94, 159, 191, 27, + 248, 96, 126, 96, 118, 206, 247, 78, 74, 22, 178, 125, 130, 122, 254, 170, 125, 133, 50, 255, 27, 227, 43, 92, + 140, 1, 125, 62, 43, 27, 41, 224, 41, 253, 216, 67, 152, 125, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2916, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + }, + "cborHex": "9f090dff", + "cborBytes": [159, 9, 13, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2917, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15227558694162059083" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5305876517742905058" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6516936726326696768" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2469169332312371104" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6485491698578936225" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bd359c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "482cba358cb22f263b0ed4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3747506522971222348" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9781654322254367427" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4925692701214788751" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8897302843526717849" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9fd8669f1bd35327f409f0cf4b9f1b49a24294c62706e21b5a70cf6ca4665b401b2244406ceec46fa01b5a011856978ad1a1ffff43bd359c9f4b482cba358cb22f263b0ed41b3401d153d728b14c1b87bf6ac7d9a2cac31b445b936a10a44c8fffff1b7b7991cbd77ba19980ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 211, 83, 39, 244, 9, 240, 207, 75, 159, 27, 73, 162, 66, 148, 198, 39, 6, 226, 27, + 90, 112, 207, 108, 164, 102, 91, 64, 27, 34, 68, 64, 108, 238, 196, 111, 160, 27, 90, 1, 24, 86, 151, 138, 209, + 161, 255, 255, 67, 189, 53, 156, 159, 75, 72, 44, 186, 53, 140, 178, 47, 38, 59, 14, 212, 27, 52, 1, 209, 83, 215, + 40, 177, 76, 27, 135, 191, 106, 199, 217, 162, 202, 195, 27, 68, 91, 147, 106, 16, 164, 76, 143, 255, 255, 27, + 123, 121, 145, 203, 215, 123, 161, 153, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2918, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9827110643239386512" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bb919a71b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6502f99" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70c5df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7708942540151085460" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7787547db9eb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0f51398816bf73a1b6a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fac46" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6379035916639171072" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9dd9102ed67095fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8300771090235127466" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d27134834632b5e7" + } + ] + }, + "cborHex": "9fbf41071b8860e91052be7d90452bb919a71b44f6502f994370c5df1b6afbaa65839a5994467787547db9eb4ab0f51398816bf73a1b6a437fac461b5886e35e5cbc7200489dd9102ed67095fb1b73324353c34bf6aaff48d27134834632b5e7ff", + "cborBytes": [ + 159, 191, 65, 7, 27, 136, 96, 233, 16, 82, 190, 125, 144, 69, 43, 185, 25, 167, 27, 68, 246, 80, 47, 153, 67, 112, + 197, 223, 27, 106, 251, 170, 101, 131, 154, 89, 148, 70, 119, 135, 84, 125, 185, 235, 74, 176, 245, 19, 152, 129, + 107, 247, 58, 27, 106, 67, 127, 172, 70, 27, 88, 134, 227, 94, 92, 188, 114, 0, 72, 157, 217, 16, 46, 214, 112, + 149, 251, 27, 115, 50, 67, 83, 195, 75, 246, 170, 255, 72, 210, 113, 52, 131, 70, 50, 181, 231, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2919, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16985575189849089509" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10707954927008404520" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16178209850246374579" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ecca8716" + } + ] + }, + "cborHex": "9f1bebb8e2a448a4a5e5d8669f1b949a4c45df3ad42880ff1be0848c2499a924b344ecca8716ff", + "cborBytes": [ + 159, 27, 235, 184, 226, 164, 72, 164, 165, 229, 216, 102, 159, 27, 148, 154, 76, 69, 223, 58, 212, 40, 128, 255, + 27, 224, 132, 140, 36, 153, 169, 36, 179, 68, 236, 202, 135, 22, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2920, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12990690395347065868" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15931605492814704624" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "388498438330671548" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11675389661155503178" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16355898832420981365" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2362926495285635825" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "982cd8b88b3bccd4ca4625" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6456710540daa686" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c7b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e92b8091a50ed0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7ca1e1069743897" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9437270886446697209" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8080102726105126621" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4143494771657561270" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc51cd667a0671700e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db9111d4a00fb309d91319cd" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6487416181384344602" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10080025234828799533" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5058302566934968354" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61abe0ac16" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73d2fe11098040ef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c325b3ba484c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b6d1c85b05b1e9919125be7" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bb448341641bd9c0cd8669f1bdd186ec954e1eff09f1b05643945747e61bc9f1ba2075109b7712c4a1be2fbd354b0adca751b20cacd20cddbeaf1ffa0bf4b982cd8b88b3bccd4ca4625486456710540daa686429c7b47e92b8091a50ed048e7ca1e10697438971b82f7ebded3ca8af9ffbf1b70224a9e822956dd1b3980a68aa95654b6ffffff9fbf49fc51cd667a0671700e4cdb9111d4a00fb309d91319cdff1b5a07eea52988f41abf1b8be3718b78f1ae2d1b4632b362749af8224561abe0ac164873d2fe11098040ef479c325b3ba484c64c9b6d1c85b05b1e9919125be7ffffff", + "cborBytes": [ + 159, 27, 180, 72, 52, 22, 65, 189, 156, 12, 216, 102, 159, 27, 221, 24, 110, 201, 84, 225, 239, 240, 159, 27, 5, + 100, 57, 69, 116, 126, 97, 188, 159, 27, 162, 7, 81, 9, 183, 113, 44, 74, 27, 226, 251, 211, 84, 176, 173, 202, + 117, 27, 32, 202, 205, 32, 205, 219, 234, 241, 255, 160, 191, 75, 152, 44, 216, 184, 139, 59, 204, 212, 202, 70, + 37, 72, 100, 86, 113, 5, 64, 218, 166, 134, 66, 156, 123, 71, 233, 43, 128, 145, 165, 14, 208, 72, 231, 202, 30, + 16, 105, 116, 56, 151, 27, 130, 247, 235, 222, 211, 202, 138, 249, 255, 191, 27, 112, 34, 74, 158, 130, 41, 86, + 221, 27, 57, 128, 166, 138, 169, 86, 84, 182, 255, 255, 255, 159, 191, 73, 252, 81, 205, 102, 122, 6, 113, 112, + 14, 76, 219, 145, 17, 212, 160, 15, 179, 9, 217, 19, 25, 205, 255, 27, 90, 7, 238, 165, 41, 136, 244, 26, 191, 27, + 139, 227, 113, 139, 120, 241, 174, 45, 27, 70, 50, 179, 98, 116, 154, 248, 34, 69, 97, 171, 224, 172, 22, 72, 115, + 210, 254, 17, 9, 128, 64, 239, 71, 156, 50, 91, 59, 164, 132, 198, 76, 155, 109, 28, 133, 176, 91, 30, 153, 25, + 18, 91, 231, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2921, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6117745454322947733" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a070f7406914516" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "511453367236771391" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2830400545823500210" + } + }, + { + "_tag": "ByteArray", + "bytearray": "67f53abbedffe27d" + }, + { + "_tag": "ByteArray", + "bytearray": "a9a1e2" + }, + { + "_tag": "ByteArray", + "bytearray": "2caf691c" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0205f80700d502014391d700" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15024139560803880687" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf1b54e69913d72e1695486a070f74069145161bfffffffffffffff41b07190c20b1533e3fff9f809f1b27479a4ce1e1a7b24867f53abbedffe27d43a9a1e2442caf691cffff0c4c0205f80700d502014391d700d8669f1bd0807754499bceef80ffff", + "cborBytes": [ + 159, 191, 27, 84, 230, 153, 19, 215, 46, 22, 149, 72, 106, 7, 15, 116, 6, 145, 69, 22, 27, 255, 255, 255, 255, + 255, 255, 255, 244, 27, 7, 25, 12, 32, 177, 83, 62, 63, 255, 159, 128, 159, 27, 39, 71, 154, 76, 225, 225, 167, + 178, 72, 103, 245, 58, 187, 237, 255, 226, 125, 67, 169, 161, 226, 68, 44, 175, 105, 28, 255, 255, 12, 76, 2, 5, + 248, 7, 0, 213, 2, 1, 67, 145, 215, 0, 216, 102, 159, 27, 208, 128, 119, 84, 73, 155, 206, 239, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2922, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4268761696379060032" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13834016526942505914" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3504c35f723a6d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2274213802833527327" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6696614111989429612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9422563291361750202" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11172262049829423957" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ba3d00" + }, + { + "_tag": "ByteArray", + "bytearray": "4b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1187443414869945132" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12525092351703917980" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24034e1468cf383e0baa98" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fb78f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ae9361a26dba1b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b24385f2e3caa0244902ec65" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e010f3fbdd2b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3e258d3e25e13" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16626379743724454237" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3b3db0255f77bf409f9f1bbffc4cbc494a8bba473504c35f723a6d1b1f8fa167852ec21fffd8669f1b5cef270dfeff756c9f1b82c3ab63ff40acba1b9b0bd92421a90b5543ba3d00414bffffbf1b107aa57e96332b2c1badd211221246259c4b24034e1468cf383e0baa98431fb78f485ae9361a26dba1b84cb24385f2e3caa0244902ec65478e010f3fbdd2b147e3e258d3e25e13ff1be6bcc4495d72415dffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 59, 61, 176, 37, 95, 119, 191, 64, 159, 159, 27, 191, 252, 76, 188, 73, 74, 139, 186, 71, + 53, 4, 195, 95, 114, 58, 109, 27, 31, 143, 161, 103, 133, 46, 194, 31, 255, 216, 102, 159, 27, 92, 239, 39, 13, + 254, 255, 117, 108, 159, 27, 130, 195, 171, 99, 255, 64, 172, 186, 27, 155, 11, 217, 36, 33, 169, 11, 85, 67, 186, + 61, 0, 65, 75, 255, 255, 191, 27, 16, 122, 165, 126, 150, 51, 43, 44, 27, 173, 210, 17, 34, 18, 70, 37, 156, 75, + 36, 3, 78, 20, 104, 207, 56, 62, 11, 170, 152, 67, 31, 183, 143, 72, 90, 233, 54, 26, 38, 219, 161, 184, 76, 178, + 67, 133, 242, 227, 202, 160, 36, 73, 2, 236, 101, 71, 142, 1, 15, 63, 189, 210, 177, 71, 227, 226, 88, 211, 226, + 94, 19, 255, 27, 230, 188, 196, 73, 93, 114, 65, 93, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2923, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17788031009955646331" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6888914387697812120" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e3c828ac0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12409841566271243807" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8584762638888811652" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5630433125125313947" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d8f6d02cb499fa" + }, + { + "_tag": "ByteArray", + "bytearray": "92" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8993155617950402427" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1bf6dbc7f5620a0b7b1b5f9a5722f6ce4298456e3c828ac0d8669f1bac389d278479861f9f1b77233422d4033c84ffffd8669f1b4e23511892afd59b9f47d8f6d02cb499fa41921b7cce1b6301be077bffffffff", + "cborBytes": [ + 159, 159, 27, 246, 219, 199, 245, 98, 10, 11, 123, 27, 95, 154, 87, 34, 246, 206, 66, 152, 69, 110, 60, 130, 138, + 192, 216, 102, 159, 27, 172, 56, 157, 39, 132, 121, 134, 31, 159, 27, 119, 35, 52, 34, 212, 3, 60, 132, 255, 255, + 216, 102, 159, 27, 78, 35, 81, 24, 146, 175, 213, 155, 159, 71, 216, 246, 208, 44, 180, 153, 250, 65, 146, 27, + 124, 206, 27, 99, 1, 190, 7, 123, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2924, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "866b1864995ed0d0eb93f0e6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5500734494955475142" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14534207389273569684" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5db109" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1437669874566671076" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11642710769642849506" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14314271282896430716" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8181005612019783201" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16928772939361905635" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "566d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad3eaa8daf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a599f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2032875889220746089" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fce727" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4484546068410349295" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d69fcd" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff752bbb741cb8f6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4654135732649830713" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47e2e818d4b7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "073f2485323e6a20fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15973477077247127088" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "196752" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10314365516614804531" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6bcd054" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8025166183178483444" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "99055d736f7c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c81f9091a3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a49ebf1556636c23b075" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4404139128854721309" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe868f8670167ec418" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4dc3339f69" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "82aaffa20e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4702324909080515436" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2cbdbd5379cbb49c5d35b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5428b806736d27a9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9c1bdbcfbce8916df4b67af" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13958211914394530441" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4c866b1864995ed0d0eb93f0e61b4c5688e1078f10c6d8669f1bc9b3e09d718239949f435db109bf1b13f3a12241d3aae41ba19337c25f2d44e21bc6a681e43b9de67c1b7188c54261ea9621ffbf1beaef154bbde96be342566d45ad3eaa8daf430a599fffd8669f1b1c3639d9c1757b699f43fce7271b3e3c4ee39a7936efffffffff43d69fcd9f48ff752bbb741cb8f6bf1b4096cfca490ba9394647e2e818d4b749073f2485323e6a20fe1bddad30c54928ee30431967521b8f23fcca1d5d243344b6bcd0541b6f5f1e1fdbd4b6f4ffbf4699055d736f7c45c81f9091a34aa49ebf1556636c23b0751b3d1ea5341cc8b31d49fe868f8670167ec418454dc3339f69ffbf4582aaffa20e1b414203974037136c4ba2cbdbd5379cbb49c5d35b485428b806736d27a94cf9c1bdbcfbce8916df4b67af1bc1b587c8491c7289ffffff", + "cborBytes": [ + 159, 76, 134, 107, 24, 100, 153, 94, 208, 208, 235, 147, 240, 230, 27, 76, 86, 136, 225, 7, 143, 16, 198, 216, + 102, 159, 27, 201, 179, 224, 157, 113, 130, 57, 148, 159, 67, 93, 177, 9, 191, 27, 19, 243, 161, 34, 65, 211, 170, + 228, 27, 161, 147, 55, 194, 95, 45, 68, 226, 27, 198, 166, 129, 228, 59, 157, 230, 124, 27, 113, 136, 197, 66, 97, + 234, 150, 33, 255, 191, 27, 234, 239, 21, 75, 189, 233, 107, 227, 66, 86, 109, 69, 173, 62, 170, 141, 175, 67, 10, + 89, 159, 255, 216, 102, 159, 27, 28, 54, 57, 217, 193, 117, 123, 105, 159, 67, 252, 231, 39, 27, 62, 60, 78, 227, + 154, 121, 54, 239, 255, 255, 255, 255, 67, 214, 159, 205, 159, 72, 255, 117, 43, 187, 116, 28, 184, 246, 191, 27, + 64, 150, 207, 202, 73, 11, 169, 57, 70, 71, 226, 232, 24, 212, 183, 73, 7, 63, 36, 133, 50, 62, 106, 32, 254, 27, + 221, 173, 48, 197, 73, 40, 238, 48, 67, 25, 103, 82, 27, 143, 35, 252, 202, 29, 93, 36, 51, 68, 182, 188, 208, 84, + 27, 111, 95, 30, 31, 219, 212, 182, 244, 255, 191, 70, 153, 5, 93, 115, 111, 124, 69, 200, 31, 144, 145, 163, 74, + 164, 158, 191, 21, 86, 99, 108, 35, 176, 117, 27, 61, 30, 165, 52, 28, 200, 179, 29, 73, 254, 134, 143, 134, 112, + 22, 126, 196, 24, 69, 77, 195, 51, 159, 105, 255, 191, 69, 130, 170, 255, 162, 14, 27, 65, 66, 3, 151, 64, 55, 19, + 108, 75, 162, 203, 219, 213, 55, 156, 187, 73, 197, 211, 91, 72, 84, 40, 184, 6, 115, 109, 39, 169, 76, 249, 193, + 189, 188, 251, 206, 137, 22, 223, 75, 103, 175, 27, 193, 181, 135, 200, 73, 28, 114, 137, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2925, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8512675190969851195" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10086061169281311166" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2540920098198700380" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12777735121749701951" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1518242347675872279" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e5b1b64197309442e659d3" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13905552716764507851" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef11fd706f29f758b8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "485717483724370423" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18301600052554351995" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6314624095007773309" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a33eb348ae661fad607bfc79" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14898947713965426340" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9584715325617063671" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16593922765754960868" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e63a3f" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "338bf55fc6a1a214ac0a" + } + ] + }, + "cborHex": "9f1b762318fbee09dd3b1b8bf8e331f9dfa1be1b2343295defc8c15c9fd8669f1bb153a264d5ec753f80ff9f1b1511e15f082cec174be5b1b64197309442e659d3ffbf1bc0fa728568376ecb49ef11fd706f29f758b8ff9f1b06bd9d7a5e9671f71bfdfc584821c5c57bffbf1b57a20d28790f927d4ca33eb348ae661fad607bfc791bcec3b202020706a41b8503bfce80a5c6f71be64974d64b178be443e63a3fffff4a338bf55fc6a1a214ac0aff", + "cborBytes": [ + 159, 27, 118, 35, 24, 251, 238, 9, 221, 59, 27, 139, 248, 227, 49, 249, 223, 161, 190, 27, 35, 67, 41, 93, 239, + 200, 193, 92, 159, 216, 102, 159, 27, 177, 83, 162, 100, 213, 236, 117, 63, 128, 255, 159, 27, 21, 17, 225, 95, 8, + 44, 236, 23, 75, 229, 177, 182, 65, 151, 48, 148, 66, 230, 89, 211, 255, 191, 27, 192, 250, 114, 133, 104, 55, + 110, 203, 73, 239, 17, 253, 112, 111, 41, 247, 88, 184, 255, 159, 27, 6, 189, 157, 122, 94, 150, 113, 247, 27, + 253, 252, 88, 72, 33, 197, 197, 123, 255, 191, 27, 87, 162, 13, 40, 121, 15, 146, 125, 76, 163, 62, 179, 72, 174, + 102, 31, 173, 96, 123, 252, 121, 27, 206, 195, 178, 2, 2, 7, 6, 164, 27, 133, 3, 191, 206, 128, 165, 198, 247, 27, + 230, 73, 116, 214, 75, 23, 139, 228, 67, 230, 58, 63, 255, 255, 74, 51, 139, 245, 95, 198, 161, 162, 20, 172, 10, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2926, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4146388676926210143" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9557560374337195807" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8279604711751675829" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9908719508107670760" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5057725965355872724" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "53da7b0f13d3ee629e0ea024" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "18d3c7a256eb05" + }, + { + "_tag": "ByteArray", + "bytearray": "f6fce3e78aa6636d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10643540813788116197" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ae99a9ee71" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d28dd38acd171" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13626375982614129721" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5de687ae9c18b465" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ae40b7093fd8c83" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e62607e65993f357c21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7129588133952752359" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "826000fc40371df8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6deb01ee6c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f598b19f9e30b5df756" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13140e8d880112a4b07e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c74576" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5751727210738085447" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "efd3a0b345" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2538614538110862951" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffffd9fbf1b398aee887ce3805f41301b84a34685b7b7cf1f1b72e7109e3c9befb51b8982d7e4dbbdb4e81b4630a6f7f04e71d4ff4c53da7b0f13d3ee629e0ea0249f4718d3c7a256eb0548f6fce3e78aa6636d1b93b573fa6e3674e545ae99a9ee71ffbf471d28dd38acd1711bbd1a9cc2b3a12c39485de687ae9c18b465485ae40b7093fd8c834a6e62607e65993f357c211b62f162a237180ae748826000fc40371df8456deb01ee6c4a9f598b19f9e30b5df7564a13140e8d880112a4b07e43c745761b4fd23d6c98fdee47ffffffbf45efd3a0b3451b233af878e5bd8667ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 191, 27, 57, 138, 238, 136, 124, 227, 128, + 95, 65, 48, 27, 132, 163, 70, 133, 183, 183, 207, 31, 27, 114, 231, 16, 158, 60, 155, 239, 181, 27, 137, 130, 215, + 228, 219, 189, 180, 232, 27, 70, 48, 166, 247, 240, 78, 113, 212, 255, 76, 83, 218, 123, 15, 19, 211, 238, 98, + 158, 14, 160, 36, 159, 71, 24, 211, 199, 162, 86, 235, 5, 72, 246, 252, 227, 231, 138, 166, 99, 109, 27, 147, 181, + 115, 250, 110, 54, 116, 229, 69, 174, 153, 169, 238, 113, 255, 191, 71, 29, 40, 221, 56, 172, 209, 113, 27, 189, + 26, 156, 194, 179, 161, 44, 57, 72, 93, 230, 135, 174, 156, 24, 180, 101, 72, 90, 228, 11, 112, 147, 253, 140, + 131, 74, 110, 98, 96, 126, 101, 153, 63, 53, 124, 33, 27, 98, 241, 98, 162, 55, 24, 10, 231, 72, 130, 96, 0, 252, + 64, 55, 29, 248, 69, 109, 235, 1, 238, 108, 74, 159, 89, 139, 25, 249, 227, 11, 93, 247, 86, 74, 19, 20, 14, 141, + 136, 1, 18, 164, 176, 126, 67, 199, 69, 118, 27, 79, 210, 61, 108, 152, 253, 238, 71, 255, 255, 255, 191, 69, 239, + 211, 160, 179, 69, 27, 35, 58, 248, 120, 229, 189, 134, 103, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2927, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "32" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e268bbaebdf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13991000467968840227" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8370011724012243342" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f9d9fcac4d30e0093973" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10657885935402537613" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e3927ae90cbd31" + }, + { + "_tag": "ByteArray", + "bytearray": "c5af" + }, + { + "_tag": "ByteArray", + "bytearray": "cc" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18202685787006831932" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10302569723628834576" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13275501319052199852" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16972202954638025281" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b9cab9a0924bb9c01927" + }, + { + "_tag": "ByteArray", + "bytearray": "7ad79c45d3681a9eaa" + }, + { + "_tag": "ByteArray", + "bytearray": "c9352ba3" + }, + { + "_tag": "ByteArray", + "bytearray": "57ce027ff3f86ad3b2af5f8e" + } + ] + } + ] + } + ] + }, + "cborHex": "9f41329f468e268bbaebdf1bc22a04cc519b5223d8669f1b74284151179ac98e9f4af9d9fcac4d30e00939731b93e86aca544cd28d47e3927ae90cbd3142c5af41ccffffd8669f1bfc9cee4804980d3c9f1b8efa14940a974f10ffffd8669f1bb83c0e1cf15607ac9f1beb8960aa2708e2414ab9cab9a0924bb9c01927497ad79c45d3681a9eaa44c9352ba34c57ce027ff3f86ad3b2af5f8effffffff", + "cborBytes": [ + 159, 65, 50, 159, 70, 142, 38, 139, 186, 235, 223, 27, 194, 42, 4, 204, 81, 155, 82, 35, 216, 102, 159, 27, 116, + 40, 65, 81, 23, 154, 201, 142, 159, 74, 249, 217, 252, 172, 77, 48, 224, 9, 57, 115, 27, 147, 232, 106, 202, 84, + 76, 210, 141, 71, 227, 146, 122, 233, 12, 189, 49, 66, 197, 175, 65, 204, 255, 255, 216, 102, 159, 27, 252, 156, + 238, 72, 4, 152, 13, 60, 159, 27, 142, 250, 20, 148, 10, 151, 79, 16, 255, 255, 216, 102, 159, 27, 184, 60, 14, + 28, 241, 86, 7, 172, 159, 27, 235, 137, 96, 170, 39, 8, 226, 65, 74, 185, 202, 185, 160, 146, 75, 185, 192, 25, + 39, 73, 122, 215, 156, 69, 211, 104, 26, 158, 170, 68, 201, 53, 43, 163, 76, 87, 206, 2, 127, 243, 248, 106, 211, + 178, 175, 95, 142, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2928, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "405fea2134ae865218" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17581255757353400687" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5881600696838843302" + } + } + ] + }, + "cborHex": "9f49405fea2134ae8652181bf3fd2af63a57396f1b519fa4abf5c4eba6ff", + "cborBytes": [ + 159, 73, 64, 95, 234, 33, 52, 174, 134, 82, 24, 27, 243, 253, 42, 246, 58, 87, 57, 111, 27, 81, 159, 164, 171, + 245, 196, 235, 166, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2929, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fd04f8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15334432704364777229" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f43fd04f8d8669f1bd4ced94c9fcb8f0d9fa0ffffff", + "cborBytes": [ + 159, 67, 253, 4, 248, 216, 102, 159, 27, 212, 206, 217, 76, 159, 203, 143, 13, 159, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2930, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2792578034932256709" + } + } + ] + }, + "cborHex": "9f1b26c13aed53b20fc5ff", + "cborBytes": [159, 27, 38, 193, 58, 237, 83, 178, 15, 197, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2931, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16822473370839822179" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18342317941401836703" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2928785287910164495" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b654b589" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10421933583428417124" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17608121751942388449" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14650909738602054001" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32589e6757b5a60f90ac18ec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "325755ad9427fe0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4c323e0b383271da5" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13177422377284001649" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1be9756e66c8602f639fa0ffff1bfe8d00fc6687dc9fbf1b28a522b3b546880f44b654b5891b90a2256058f6f6641bf45c9d710a5adae11bcb527cc88dafc1714c32589e6757b5a60f90ac18ec48325755ad9427fe0e49f4c323e0b383271da5ff9fd8669f1bb6df9bd5cd4bdf7180ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 233, 117, 110, 102, 200, 96, 47, 99, 159, 160, 255, 255, 27, 254, 141, 0, 252, 102, 135, + 220, 159, 191, 27, 40, 165, 34, 179, 181, 70, 136, 15, 68, 182, 84, 181, 137, 27, 144, 162, 37, 96, 88, 246, 246, + 100, 27, 244, 92, 157, 113, 10, 90, 218, 225, 27, 203, 82, 124, 200, 141, 175, 193, 113, 76, 50, 88, 158, 103, 87, + 181, 166, 15, 144, 172, 24, 236, 72, 50, 87, 85, 173, 148, 39, 254, 14, 73, 244, 195, 35, 224, 179, 131, 39, 29, + 165, 255, 159, 216, 102, 159, 27, 182, 223, 155, 213, 205, 75, 223, 113, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2932, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1e44ad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12893257286752614808" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e756c8c04cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6549709267438714091" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b2cd94e5b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76288ca2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8978857379119473377" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3c5b2a612e9bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c61ee636a50d895318" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce228ce8aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9027560770027628548" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9667562763089754384" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1386456ac0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15149179920039782673" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c85a620e0ed676" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18364357683218317452" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f40dc714cda2dc66a838c2" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3825152734414764500" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8956445567883619103" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36dc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16060991547110163237" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6879737689685601537" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7889c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16885283237916153172" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a5108f8cba7471789568" + } + ] + }, + "cborHex": "9f9f9f431e44ad1bb2ee0d30de9b3998ffbf461e756c8c04cc1b5ae53de07bc4bceb455b2cd94e5b4476288ca24262a61b7c9b4f36db4fa2e147c3c5b2a612e9bc4289c049c61ee636a50d89531841b045ce228ce8aa1b7d4856b0b5bfa804ffbf1b862a151cb1c23910451386456ac01bd23cb2df9c73a91147c85a620e0ed6761bfedb4e03ac71808c4bf40dc714cda2dc66a838c2ffbf1b3515ac253a67f9d441061b7c4bafca6bd32b1f4236dc1bdee41ab7a20d83251b5f79bcfa7593ad01437889c21bea5493a48fd99554ffff4aa5108f8cba7471789568ff", + "cborBytes": [ + 159, 159, 159, 67, 30, 68, 173, 27, 178, 238, 13, 48, 222, 155, 57, 152, 255, 191, 70, 30, 117, 108, 140, 4, 204, + 27, 90, 229, 61, 224, 123, 196, 188, 235, 69, 91, 44, 217, 78, 91, 68, 118, 40, 140, 162, 66, 98, 166, 27, 124, + 155, 79, 54, 219, 79, 162, 225, 71, 195, 197, 178, 166, 18, 233, 188, 66, 137, 192, 73, 198, 30, 230, 54, 165, 13, + 137, 83, 24, 65, 176, 69, 206, 34, 140, 232, 170, 27, 125, 72, 86, 176, 181, 191, 168, 4, 255, 191, 27, 134, 42, + 21, 28, 177, 194, 57, 16, 69, 19, 134, 69, 106, 192, 27, 210, 60, 178, 223, 156, 115, 169, 17, 71, 200, 90, 98, + 14, 14, 214, 118, 27, 254, 219, 78, 3, 172, 113, 128, 140, 75, 244, 13, 199, 20, 205, 162, 220, 102, 168, 56, 194, + 255, 191, 27, 53, 21, 172, 37, 58, 103, 249, 212, 65, 6, 27, 124, 75, 175, 202, 107, 211, 43, 31, 66, 54, 220, 27, + 222, 228, 26, 183, 162, 13, 131, 37, 27, 95, 121, 188, 250, 117, 147, 173, 1, 67, 120, 137, 194, 27, 234, 84, 147, + 164, 143, 217, 149, 84, 255, 255, 74, 165, 16, 143, 140, 186, 116, 113, 120, 149, 104, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2933, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07c066" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a0b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10501977688480077854" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6f60413200345fd3681" + } + ] + }, + "cborHex": "9fbf4307c066429a0bff1b91be8510d8eed81e4ad6f60413200345fd3681ff", + "cborBytes": [ + 159, 191, 67, 7, 192, 102, 66, 154, 11, 255, 27, 145, 190, 133, 16, 216, 238, 216, 30, 74, 214, 246, 4, 19, 32, 3, + 69, 253, 54, 129, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2934, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + }, + "cborHex": "9f05ff", + "cborBytes": [159, 5, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2935, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8647967996038d9de6cd66e2" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e50170" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17166526365739045611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17921282238776422369" + } + } + } + ] + } + ] + }, + "cborHex": "9fd87c9f4c8647967996038d9de6cd66e2a0ff43e50170bf1bee3bc0c70940d2eb1bf8b52f3ec1c92fe1ffff", + "cborBytes": [ + 159, 216, 124, 159, 76, 134, 71, 150, 121, 150, 3, 141, 157, 230, 205, 102, 226, 160, 255, 67, 229, 1, 112, 191, + 27, 238, 59, 192, 199, 9, 64, 210, 235, 27, 248, 181, 47, 62, 193, 201, 47, 225, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2936, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14380459403318039266" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "acabb2e8beb31ff97b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1126425255472658192" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11283591425861428720" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16226310072057256851" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "91a9c8fe" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "222aef7ac462" + }, + { + "_tag": "ByteArray", + "bytearray": "2aae6c34b7996a8213a57a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b7fceae60f61e1cbf4b0e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11352000857457251049" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2950528835620728940" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7589692832075842122" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3243056600786460834" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bc791a7a2e9b292e280ff9fbf49acabb2e8beb31ff97b1b0fa1ddcd4279f71042fd091b9c975e9e691d25f0ffd8669f1be12f6f0a3450db939f4491a9c8feffff46222aef7ac4624b2aae6c34b7996a8213a57aff4bb7fceae60f61e1cbf4b0e81b9d8a68a266ab52e9bf1b28f26257eab8706c1b6954016b3a35824a41a61b2d01a6cbc45ce0a2ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 199, 145, 167, 162, 233, 178, 146, 226, 128, 255, 159, 191, 73, 172, 171, 178, 232, 190, + 179, 31, 249, 123, 27, 15, 161, 221, 205, 66, 121, 247, 16, 66, 253, 9, 27, 156, 151, 94, 158, 105, 29, 37, 240, + 255, 216, 102, 159, 27, 225, 47, 111, 10, 52, 80, 219, 147, 159, 68, 145, 169, 200, 254, 255, 255, 70, 34, 42, + 239, 122, 196, 98, 75, 42, 174, 108, 52, 183, 153, 106, 130, 19, 165, 122, 255, 75, 183, 252, 234, 230, 15, 97, + 225, 203, 244, 176, 232, 27, 157, 138, 104, 162, 102, 171, 82, 233, 191, 27, 40, 242, 98, 87, 234, 184, 112, 108, + 27, 105, 84, 1, 107, 58, 53, 130, 74, 65, 166, 27, 45, 1, 166, 203, 196, 92, 224, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2937, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c6ad9371591bb6c5b634ef6b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9342753828456227777" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dc82" + }, + { + "_tag": "ByteArray", + "bytearray": "9b2faed5ec" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17249508037901046378" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14706542888333836921" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15034121398534288518" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc4c1d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14752822961383779438" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a26d3f7145117878ad7aee7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7409055871384069175" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0aa403bd4b" + }, + { + "_tag": "ByteArray", + "bytearray": "b459927ed275e0f7fe5ba447" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "243485908339028279" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4cc6ad9371591bb6c5b634ef6bd8669f1b81a8211b610de3c19f1bffffffffffffffffd9050a9f42dc82459b2faed5ec1bef62902b2d56526a1bcc1822d69d2f8279ff1bd0a3edc1fdbc348643fc4c1dd8669f1bccbc8e51cf81ac6e9f4ca26d3f7145117878ad7aee7c1b66d2410f66dea437450aa403bd4b4cb459927ed275e0f7fe5ba4471b03610924c25c7137ffffffffff", + "cborBytes": [ + 159, 76, 198, 173, 147, 113, 89, 27, 182, 197, 182, 52, 239, 107, 216, 102, 159, 27, 129, 168, 33, 27, 97, 13, + 227, 193, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 217, 5, 10, 159, 66, 220, 130, 69, 155, 47, 174, 213, + 236, 27, 239, 98, 144, 43, 45, 86, 82, 106, 27, 204, 24, 34, 214, 157, 47, 130, 121, 255, 27, 208, 163, 237, 193, + 253, 188, 52, 134, 67, 252, 76, 29, 216, 102, 159, 27, 204, 188, 142, 81, 207, 129, 172, 110, 159, 76, 162, 109, + 63, 113, 69, 17, 120, 120, 173, 122, 238, 124, 27, 102, 210, 65, 15, 102, 222, 164, 55, 69, 10, 164, 3, 189, 75, + 76, 180, 89, 146, 126, 210, 117, 224, 247, 254, 91, 164, 71, 27, 3, 97, 9, 36, 194, 92, 113, 55, 255, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2938, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6458549438058879353" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fff84712c7a3" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b59a1607ebbcc597946fff84712c7a3ffff", + "cborBytes": [159, 191, 27, 89, 161, 96, 126, 187, 204, 89, 121, 70, 255, 248, 71, 18, 199, 163, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2939, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11516744546871125300" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16b5326f7993" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12168118193792359548" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16811366380486282483" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15499794609450573717" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6992456093607296141" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16627374883500115267" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9856e3ba49b6bef78691c437" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9886206325869069107" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2ac8d3df37cfcfe9a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7557706571692528845" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "78e20586db48d1d8532270f3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15512554849575186875" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6279159858265822588" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12481893847425862639" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11316358383931314466" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9249104189512903212" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6173" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "731f4b79479a4d9b57da69" + } + ] + } + ] + }, + "cborHex": "9fbf1b9fd3b225a52ba5344616b5326f79931ba8ddd7071df61c7c1be94df8a711d44cf31bd71a55136bd0df951b610a31c4fefa7c8d1be6c04d5c6646c5434c9856e3ba49b6bef78691c437ff80d8669f1b8932dc4625a543339f9f492ac8d3df37cfcfe9a61b68e25e15a25e54cdff4c78e20586db48d1d8532270f3d8669f1bd747aa7257b131bb9f1b57240e9f67d3957c1bad38985283f3cbef1b9d0bc7fe593d51221b805b6b41aa7e6a2c426173ffff804b731f4b79479a4d9b57da69ffffff", + "cborBytes": [ + 159, 191, 27, 159, 211, 178, 37, 165, 43, 165, 52, 70, 22, 181, 50, 111, 121, 147, 27, 168, 221, 215, 7, 29, 246, + 28, 124, 27, 233, 77, 248, 167, 17, 212, 76, 243, 27, 215, 26, 85, 19, 107, 208, 223, 149, 27, 97, 10, 49, 196, + 254, 250, 124, 141, 27, 230, 192, 77, 92, 102, 70, 197, 67, 76, 152, 86, 227, 186, 73, 182, 190, 247, 134, 145, + 196, 55, 255, 128, 216, 102, 159, 27, 137, 50, 220, 70, 37, 165, 67, 51, 159, 159, 73, 42, 200, 211, 223, 55, 207, + 207, 233, 166, 27, 104, 226, 94, 21, 162, 94, 84, 205, 255, 76, 120, 226, 5, 134, 219, 72, 209, 216, 83, 34, 112, + 243, 216, 102, 159, 27, 215, 71, 170, 114, 87, 177, 49, 187, 159, 27, 87, 36, 14, 159, 103, 211, 149, 124, 27, + 173, 56, 152, 82, 131, 243, 203, 239, 27, 157, 11, 199, 254, 89, 61, 81, 34, 27, 128, 91, 107, 65, 170, 126, 106, + 44, 66, 97, 115, 255, 255, 128, 75, 115, 31, 75, 121, 71, 154, 77, 155, 87, 218, 105, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2940, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16184666418929454139" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7fd811914bda7f6556" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "953924842187814132" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4448434305483066103" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11551884574922419516" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7800508191094762802" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9156517828149685750" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1be09b7c5ba47bcc3b80ffbf13497fd811914bda7f65561b0d3d0597010674f41bfffffffffffffffd1b3dbc036e98facaf7061ba05089d0fe90ad3c1b6c40f8def5ba6d32ffd8669f1b7f127c738e64adf69f04ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 224, 155, 124, 91, 164, 123, 204, 59, 128, 255, 191, 19, 73, 127, 216, 17, 145, 75, 218, + 127, 101, 86, 27, 13, 61, 5, 151, 1, 6, 116, 244, 27, 255, 255, 255, 255, 255, 255, 255, 253, 27, 61, 188, 3, 110, + 152, 250, 202, 247, 6, 27, 160, 80, 137, 208, 254, 144, 173, 60, 27, 108, 64, 248, 222, 245, 186, 109, 50, 255, + 216, 102, 159, 27, 127, 18, 124, 115, 142, 100, 173, 246, 159, 4, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2941, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5554456881448941070" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10416806847971405822" + } + }, + { + "_tag": "ByteArray", + "bytearray": "206bf7557e7a5ebed6f1ec" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6267811552656330821" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d361a3510b0d" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10152842082970268608" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05fdf8de04f9030525fd01" + } + ] + }, + "cborHex": "9f9f9f1b4d15651adafcf60e1b908feea33b312ffe4b206bf7557e7a5ebed6f1ecff1b56fbbd661b2b9045bf41cf46d361a3510b0dffd8669f1b8ce62415181473c080ffff4b05fdf8de04f9030525fd01ff", + "cborBytes": [ + 159, 159, 159, 27, 77, 21, 101, 26, 218, 252, 246, 14, 27, 144, 143, 238, 163, 59, 49, 47, 254, 75, 32, 107, 247, + 85, 126, 122, 94, 190, 214, 241, 236, 255, 27, 86, 251, 189, 102, 27, 43, 144, 69, 191, 65, 207, 70, 211, 97, 163, + 81, 11, 13, 255, 216, 102, 159, 27, 140, 230, 36, 21, 24, 20, 115, 192, 128, 255, 255, 75, 5, 253, 248, 222, 4, + 249, 3, 5, 37, 253, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2942, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + "cborHex": "9f02ff", + "cborBytes": [159, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2943, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cc99ebc87cc89516" + } + ] + } + ] + }, + "cborHex": "9f9f48cc99ebc87cc89516ffff", + "cborBytes": [159, 159, 72, 204, 153, 235, 200, 124, 200, 149, 22, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2944, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7fbcfc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13040775049020422582" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13217711830596834364" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e206dd57e3a0eb83d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9460416161902256654" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f340fa2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6607539887404213237" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5498048285497842025" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6808998712248950902" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5439976806305811560" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15222035541493453475" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11747456516940492660" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16802225598965200936" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ce0dc07848ed2cfcf5ab" + } + ] + }, + "cborHex": "9f437fbcfc1bb4fa23d068a3b9b6d8669f1bb76ebee12633d43c9fa0bf49e206dd57e3a0eb83d71b834a2660358c620e44f340fa2d1b5bb2b284f3f3e3f5ffd8669f1b4c4cfdc9270b596980ff9f1b5e7e6c40cfb0e0761b4b7eae154638cc681bd33f88acd91692a31ba30759762295ef74ff1be92d7f29064bb828ffff4ace0dc07848ed2cfcf5abff", + "cborBytes": [ + 159, 67, 127, 188, 252, 27, 180, 250, 35, 208, 104, 163, 185, 182, 216, 102, 159, 27, 183, 110, 190, 225, 38, 51, + 212, 60, 159, 160, 191, 73, 226, 6, 221, 87, 227, 160, 235, 131, 215, 27, 131, 74, 38, 96, 53, 140, 98, 14, 68, + 243, 64, 250, 45, 27, 91, 178, 178, 132, 243, 243, 227, 245, 255, 216, 102, 159, 27, 76, 76, 253, 201, 39, 11, 89, + 105, 128, 255, 159, 27, 94, 126, 108, 64, 207, 176, 224, 118, 27, 75, 126, 174, 21, 70, 56, 204, 104, 27, 211, 63, + 136, 172, 217, 22, 146, 163, 27, 163, 7, 89, 118, 34, 149, 239, 116, 255, 27, 233, 45, 127, 41, 6, 75, 184, 40, + 255, 255, 74, 206, 13, 192, 120, 72, 237, 44, 252, 245, 171, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2945, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15250510717937905077" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2535555576323065111" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b01816b70bc4949958c49a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9482499352545278304" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a853fe411b3aa6aa396" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1bcb9eadcf3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e945ecc5d4f23c0dcfbb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e78ee1474ec45a2aa396e3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb20d09c86aa9ef7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8537528749273707028" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + ] + }, + "cborHex": "9f9f1bd3a4b2b281f9edb5d8669f1b23301a5cdaff451780ffbf4c3b01816b70bc4949958c49a81b83989aebb35539604a6a853fe411b3aa6aa39646e1bcb9eadcf34ae945ecc5d4f23c0dcfbb4be78ee1474ec45a2aa396e348eb20d09c86aa9ef71b767b6529e824f214ffff1bfffffffffffffff8ff", + "cborBytes": [ + 159, 159, 27, 211, 164, 178, 178, 129, 249, 237, 181, 216, 102, 159, 27, 35, 48, 26, 92, 218, 255, 69, 23, 128, + 255, 191, 76, 59, 1, 129, 107, 112, 188, 73, 73, 149, 140, 73, 168, 27, 131, 152, 154, 235, 179, 85, 57, 96, 74, + 106, 133, 63, 228, 17, 179, 170, 106, 163, 150, 70, 225, 188, 185, 234, 220, 243, 74, 233, 69, 236, 197, 212, 242, + 60, 13, 207, 187, 75, 231, 142, 225, 71, 78, 196, 90, 42, 163, 150, 227, 72, 235, 32, 208, 156, 134, 170, 158, + 247, 27, 118, 123, 101, 41, 232, 36, 242, 20, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2946, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a6" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9744404442870919768" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "890023927073220758" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0c88f90505e92a48c7e7" + }, + { + "_tag": "ByteArray", + "bytearray": "bbc126b3316a29b59e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6117035992783759053" + } + }, + { + "_tag": "ByteArray", + "bytearray": "611158b11381f17e018c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1830814560922243095" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5347808480065367072" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67ad3a8b43f94a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10143246747701384533" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d54bac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13330325332588823849" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14388737568587713584" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8762313997519566928" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16564471978809855028" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10502903184327748282" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f41a6809f1b873b1436750f3258d8669f1b0c5a000bcecc28969f4a0c88f90505e92a48c7e749bbc126b3316a29b59effff9f1b54e413d37427a6cd4a611158b11381f17e018c1b19685c24a1621017ffff9fbf1b4a373b7a8d1e2c204767ad3a8b43f94a1b8cc40d2d01e0955543d54bac1bb8fed4434d590529411f1bc7af109575fd0c301b7999fe27f09638501be5e0d3809cdf8c341b91c1cecca42caabaffffff", + "cborBytes": [ + 159, 65, 166, 128, 159, 27, 135, 59, 20, 54, 117, 15, 50, 88, 216, 102, 159, 27, 12, 90, 0, 11, 206, 204, 40, 150, + 159, 74, 12, 136, 249, 5, 5, 233, 42, 72, 199, 231, 73, 187, 193, 38, 179, 49, 106, 41, 181, 158, 255, 255, 159, + 27, 84, 228, 19, 211, 116, 39, 166, 205, 74, 97, 17, 88, 177, 19, 129, 241, 126, 1, 140, 27, 25, 104, 92, 36, 161, + 98, 16, 23, 255, 255, 159, 191, 27, 74, 55, 59, 122, 141, 30, 44, 32, 71, 103, 173, 58, 139, 67, 249, 74, 27, 140, + 196, 13, 45, 1, 224, 149, 85, 67, 213, 75, 172, 27, 184, 254, 212, 67, 77, 89, 5, 41, 65, 31, 27, 199, 175, 16, + 149, 117, 253, 12, 48, 27, 121, 153, 254, 39, 240, 150, 56, 80, 27, 229, 224, 211, 128, 156, 223, 140, 52, 27, + 145, 193, 206, 204, 164, 44, 170, 186, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2947, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "453dadde3e46b364" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03003b03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "240004" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ae13e2238d9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "905de4081cf3d081f007" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2cde" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5368" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0204" + } + ] + } + ] + }, + "cborHex": "9f9f48453dadde3e46b364bf4403003b031bfffffffffffffff543240004463ae13e2238d9412b4a905de4081cf3d081f007422cde07425368410dff420204ffff", + "cborBytes": [ + 159, 159, 72, 69, 61, 173, 222, 62, 70, 179, 100, 191, 68, 3, 0, 59, 3, 27, 255, 255, 255, 255, 255, 255, 255, + 245, 67, 36, 0, 4, 70, 58, 225, 62, 34, 56, 217, 65, 43, 74, 144, 93, 228, 8, 28, 243, 208, 129, 240, 7, 66, 44, + 222, 7, 66, 83, 104, 65, 13, 255, 66, 2, 4, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2948, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7424153414359459212" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9690808548761349095" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17966353052344305768" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2908019538112303282" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15238928184971781375" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d39efeab" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12938003013725114845" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11498564226470840116" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12900060699679316969" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17786923021038890887" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17555552161387237643" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e6af" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9e7cbb16a4466e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d739f209384e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3841264788523843017" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e3801b0b3f748916" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3181318239536944794" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "784176325561565423" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1430e5d13597fd2712" + }, + { + "_tag": "ByteArray", + "bytearray": "d6acc1a7128908" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a0513f81b1081aa1d973" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b6707e4320ce6258c9f1b867cab07ef3d2be7809f1bf9554ee94a3cc8681b285b5c5cd11450b21bd37b8c71e6ee64ff44d39efeabffd8669f1bb38d05314804d1dd9f1b9f931b3df1cf07341bb30638dbe15cdbe91bf6d7d83f9c3daf871bf3a1d9ad6f53d10bffffffff42e6af9f479e7cbb16a4466ebf46d739f209384e1b354ee9f9282dfdc9ff9f48e3801b0b3f7489161b2c2650156112169a1b0ae1f4369e5e40ef491430e5d13597fd271247d6acc1a7128908ff4aa0513f81b1081aa1d973ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 103, 7, 228, 50, 12, 230, 37, 140, 159, 27, 134, 124, 171, 7, 239, 61, 43, 231, 128, 159, + 27, 249, 85, 78, 233, 74, 60, 200, 104, 27, 40, 91, 92, 92, 209, 20, 80, 178, 27, 211, 123, 140, 113, 230, 238, + 100, 255, 68, 211, 158, 254, 171, 255, 216, 102, 159, 27, 179, 141, 5, 49, 72, 4, 209, 221, 159, 27, 159, 147, 27, + 61, 241, 207, 7, 52, 27, 179, 6, 56, 219, 225, 92, 219, 233, 27, 246, 215, 216, 63, 156, 61, 175, 135, 27, 243, + 161, 217, 173, 111, 83, 209, 11, 255, 255, 255, 255, 66, 230, 175, 159, 71, 158, 124, 187, 22, 164, 70, 110, 191, + 70, 215, 57, 242, 9, 56, 78, 27, 53, 78, 233, 249, 40, 45, 253, 201, 255, 159, 72, 227, 128, 27, 11, 63, 116, 137, + 22, 27, 44, 38, 80, 21, 97, 18, 22, 154, 27, 10, 225, 244, 54, 158, 94, 64, 239, 73, 20, 48, 229, 209, 53, 151, + 253, 39, 18, 71, 214, 172, 193, 167, 18, 137, 8, 255, 74, 160, 81, 63, 129, 177, 8, 26, 161, 217, 115, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2949, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "df04" + } + ] + }, + "cborHex": "9f42df04ff", + "cborBytes": [159, 66, 223, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2950, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cd6dafe06f6d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3051918886944271957" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f294caa315fbc89e0c56e6" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "591546776131128468" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9531c795d8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6878716506448969069" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7459741437439508773" + } + } + } + ] + } + ] + }, + "cborHex": "9f46cd6dafe06f6dbf1b2a5a980ed39e6e554bf294caa315fbc89e0c56e6ffa0bf1b083598a8a352cc94459531c795d81b5f761c37b581bd6d1b678653505ed80125ffff", + "cborBytes": [ + 159, 70, 205, 109, 175, 224, 111, 109, 191, 27, 42, 90, 152, 14, 211, 158, 110, 85, 75, 242, 148, 202, 163, 21, + 251, 200, 158, 12, 86, 230, 255, 160, 191, 27, 8, 53, 152, 168, 163, 82, 204, 148, 69, 149, 49, 199, 149, 216, 27, + 95, 118, 28, 55, 181, 129, 189, 109, 27, 103, 134, 83, 80, 94, 216, 1, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2951, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fe30ca" + } + ] + }, + "cborHex": "9f8043fe30caff", + "cborBytes": [159, 128, 67, 254, 48, 202, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2952, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "6913ef712afb0b943e3c" + } + ] + }, + "cborHex": "9fa04a6913ef712afb0b943e3cff", + "cborBytes": [159, 160, 74, 105, 19, 239, 113, 42, 251, 11, 148, 62, 60, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2953, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6479281564621606192" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3197451162199743543" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1335717337199674296" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f59eac299274" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1733181301704831153" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d98b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3081708353624040384" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14632312646369386955" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16085505586282783568" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1950813449204972669" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16299656070205464011" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2722186868047177432" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3548838335537563912" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0564" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d0b44f628d4f0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7f4b97e89db60221b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "949138710960467465" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5407506588800407324" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14985569659024870342" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9098554299057187820" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11934661009723942773" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0d3c43b5" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "91" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1300186232774550290" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4127948550868853092" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed24aa960a6746c12b27" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6631240611157999314" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7239114196541141057" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14784451221210123399" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13689150875299323244" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15956257361933205476" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16584305050204566365" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6253597443084164812" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9089729638796525108" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f1b59eb08411b020d30d8669f1b2c5fa0e425935c379fbf1b12896bd75c1e03b846f59eac2992741b180d7f360b7730b142d98b1b2ac46d6b871d63c01bcb106ad3994da1cb1bdf3b321b26f263501b1b12ae7f06eabc7d1be23402d629a2ddcb1b25c72688a22f66d8ffbf1b314001a9e301490841e4420564470d0b44f628d4f049f7f4b97e89db60221b4197ff1b0d2c04a0fd5eee091b4b0b5297a208571cd8669f1bcff770353b0c8bc69f1b7e448eedc4e82becffffffffd8669f1ba5a06ef4af4ce7759f440d3c43b5ffff41919fbf1b120b307d7261631241c21b39496b5611a061644aed24aa960a6746c12b271b5c06e633b8377ed21b64768001dd5270411bcd2cec0de751cc871bbdf9a2315ef19d6c1bdd700387e2bd7fe41be62749936428f35dff1b56c93dbdd3529ecc1b7e2534f270ce7e3480ffff", + "cborBytes": [ + 159, 27, 89, 235, 8, 65, 27, 2, 13, 48, 216, 102, 159, 27, 44, 95, 160, 228, 37, 147, 92, 55, 159, 191, 27, 18, + 137, 107, 215, 92, 30, 3, 184, 70, 245, 158, 172, 41, 146, 116, 27, 24, 13, 127, 54, 11, 119, 48, 177, 66, 217, + 139, 27, 42, 196, 109, 107, 135, 29, 99, 192, 27, 203, 16, 106, 211, 153, 77, 161, 203, 27, 223, 59, 50, 27, 38, + 242, 99, 80, 27, 27, 18, 174, 127, 6, 234, 188, 125, 27, 226, 52, 2, 214, 41, 162, 221, 203, 27, 37, 199, 38, 136, + 162, 47, 102, 216, 255, 191, 27, 49, 64, 1, 169, 227, 1, 73, 8, 65, 228, 66, 5, 100, 71, 13, 11, 68, 246, 40, 212, + 240, 73, 247, 244, 185, 126, 137, 219, 96, 34, 27, 65, 151, 255, 27, 13, 44, 4, 160, 253, 94, 238, 9, 27, 75, 11, + 82, 151, 162, 8, 87, 28, 216, 102, 159, 27, 207, 247, 112, 53, 59, 12, 139, 198, 159, 27, 126, 68, 142, 237, 196, + 232, 43, 236, 255, 255, 255, 255, 216, 102, 159, 27, 165, 160, 110, 244, 175, 76, 231, 117, 159, 68, 13, 60, 67, + 181, 255, 255, 65, 145, 159, 191, 27, 18, 11, 48, 125, 114, 97, 99, 18, 65, 194, 27, 57, 73, 107, 86, 17, 160, 97, + 100, 74, 237, 36, 170, 150, 10, 103, 70, 193, 43, 39, 27, 92, 6, 230, 51, 184, 55, 126, 210, 27, 100, 118, 128, 1, + 221, 82, 112, 65, 27, 205, 44, 236, 13, 231, 81, 204, 135, 27, 189, 249, 162, 49, 94, 241, 157, 108, 27, 221, 112, + 3, 135, 226, 189, 127, 228, 27, 230, 39, 73, 147, 100, 40, 243, 93, 255, 27, 86, 201, 61, 189, 211, 82, 158, 204, + 27, 126, 37, 52, 242, 112, 206, 126, 52, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2954, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9db2d759688fb0edae63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5552201552894522047" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "251418956424907019" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8021438736709935076" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7611116142799463894" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13588155126090949102" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5452" + } + ] + }, + "cborHex": "9f809fbf4a9db2d759688fb0edae631b4d0d61e541a672bfff1b037d38357381890b9f1b6f51e00819275fe41b69a01dce73cda5d61bbc92d318138de1eeffff425452ff", + "cborBytes": [ + 159, 128, 159, 191, 74, 157, 178, 215, 89, 104, 143, 176, 237, 174, 99, 27, 77, 13, 97, 229, 65, 166, 114, 191, + 255, 27, 3, 125, 56, 53, 115, 129, 137, 11, 159, 27, 111, 81, 224, 8, 25, 39, 95, 228, 27, 105, 160, 29, 206, 115, + 205, 165, 214, 27, 188, 146, 211, 24, 19, 141, 225, 238, 255, 255, 66, 84, 82, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2955, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2385832996939643961" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "52ad642e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9807762329922335636" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6d602f8a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7783194935992338264" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b211c2e7853fe3c39bf4452ad642e1b881c2be0147a739445b6d602f8a11b6c03768ea1714758ffff", + "cborBytes": [ + 159, 27, 33, 28, 46, 120, 83, 254, 60, 57, 191, 68, 82, 173, 100, 46, 27, 136, 28, 43, 224, 20, 122, 115, 148, 69, + 182, 214, 2, 248, 161, 27, 108, 3, 118, 142, 161, 113, 71, 88, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2956, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13817341902098734157" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8873027099949898297" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8b8047" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8104380731909107194" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6df287f7348a3361" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5601305451017102124" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2374765656993090689" + } + }, + { + "_tag": "ByteArray", + "bytearray": "70f193dca50b62ad9b45" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "099ff29f5e9bc9b7bb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3895145989279334432" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c213" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "56a0092dfd" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bbfc10f40a6b71c4d9fd8669f1b7b235322d6ed9a399f438b80471b70788b5639f66dfaffffbf486df287f7348a33614183ff1b4dbbd5a17655632c1b20f4dcc871decc814a70f193dca50b62ad9b45ffff49099ff29f5e9bc9b7bbd8669f1b360e56a3cf4840209f42c2139f4556a0092dfdffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 191, 193, 15, 64, 166, 183, 28, 77, 159, 216, 102, 159, 27, 123, 35, 83, 34, 214, 237, + 154, 57, 159, 67, 139, 128, 71, 27, 112, 120, 139, 86, 57, 246, 109, 250, 255, 255, 191, 72, 109, 242, 135, 247, + 52, 138, 51, 97, 65, 131, 255, 27, 77, 187, 213, 161, 118, 85, 99, 44, 27, 32, 244, 220, 200, 113, 222, 204, 129, + 74, 112, 241, 147, 220, 165, 11, 98, 173, 155, 69, 255, 255, 73, 9, 159, 242, 159, 94, 155, 201, 183, 187, 216, + 102, 159, 27, 54, 14, 86, 163, 207, 72, 64, 32, 159, 66, 194, 19, 159, 69, 86, 160, 9, 45, 253, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2957, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b0bc8cdcfcb04a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "451736425152697852" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c274a5190a4a504fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99a2d2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2842c18388257015f8d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3cf22d91b920f603e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb8d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1502291419046933477" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5a32d4c60eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17684866756485871715" + } + } + } + ] + } + ] + }, + "cborHex": "9f47b0bc8cdcfcb04a1b0644e3e2a154d5fcbf491c274a5190a4a504fe4399a2d24ab2842c18388257015f8d493cf22d91b920f603e242bb8d1b14d936160d68f3e546e5a32d4c60eb1bf56d449dd8747863ffff", + "cborBytes": [ + 159, 71, 176, 188, 140, 220, 252, 176, 74, 27, 6, 68, 227, 226, 161, 84, 213, 252, 191, 73, 28, 39, 74, 81, 144, + 164, 165, 4, 254, 67, 153, 162, 210, 74, 178, 132, 44, 24, 56, 130, 87, 1, 95, 141, 73, 60, 242, 45, 145, 185, 32, + 246, 3, 226, 66, 187, 141, 27, 20, 217, 54, 22, 13, 104, 243, 229, 70, 229, 163, 45, 76, 96, 235, 27, 245, 109, + 68, 157, 216, 116, 120, 99, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2958, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17667251508606360875" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ce8e13acdd4d45c2da" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9354082316995909908" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5459548376527051093" + } + } + ] + }, + "cborHex": "9f1bf52eafa457f75d2bd8669f1bfffffffffffffffa9f49ce8e13acdd4d45c2da1b81d0604ea84dd914ffff1b4bc4365290f49955ff", + "cborBytes": [ + 159, 27, 245, 46, 175, 164, 87, 247, 93, 43, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 73, + 206, 142, 19, 172, 221, 77, 69, 194, 218, 27, 129, 208, 96, 78, 168, 77, 217, 20, 255, 255, 27, 75, 196, 54, 82, + 144, 244, 153, 85, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2959, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15676098208002889950" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d5b5" + } + ] + }, + "cborHex": "9f1bd98cb043c02658de8042d5b5ff", + "cborBytes": [159, 27, 217, 140, 176, 67, 192, 38, 88, 222, 128, 66, 213, 181, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2960, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2291082933669470989" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8910738700309243931" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d6b0bed20d121eb2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10209853246783235667" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12340386441034134739" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3f010607e9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10933640433591621729" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eddf19a8dbbcf11716a4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d984b9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1702fb189800f80100" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "351266458694113278" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe07" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10577605696278486414" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10590191611246004039" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff40ef0803f98705685bb0fb" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1fcb8fca1c54230d9fd8669f1b7ba94da30642281b9f48d6b0bed20d121eb21b8db0af6f0f6226531bab41dc1600e2f4d3453f010607e91bfffffffffffffff7ffffffffd8669f1b97bc180ba21398619f4aeddf19a8dbbcf11716a4bf0743d984b908491702fb189800f801001b04dff2fbabf8d7fe42fe071b92cb345694d3dd8e1b92f7eb2943a3c7471bfffffffffffffff14cff40ef0803f98705685bb0fbffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 31, 203, 143, 202, 28, 84, 35, 13, 159, 216, 102, 159, 27, 123, 169, 77, 163, 6, 66, 40, + 27, 159, 72, 214, 176, 190, 210, 13, 18, 30, 178, 27, 141, 176, 175, 111, 15, 98, 38, 83, 27, 171, 65, 220, 22, 0, + 226, 244, 211, 69, 63, 1, 6, 7, 233, 27, 255, 255, 255, 255, 255, 255, 255, 247, 255, 255, 255, 255, 216, 102, + 159, 27, 151, 188, 24, 11, 162, 19, 152, 97, 159, 74, 237, 223, 25, 168, 219, 188, 241, 23, 22, 164, 191, 7, 67, + 217, 132, 185, 8, 73, 23, 2, 251, 24, 152, 0, 248, 1, 0, 27, 4, 223, 242, 251, 171, 248, 215, 254, 66, 254, 7, 27, + 146, 203, 52, 86, 148, 211, 221, 142, 27, 146, 247, 235, 41, 67, 163, 199, 71, 27, 255, 255, 255, 255, 255, 255, + 255, 241, 76, 255, 64, 239, 8, 3, 249, 135, 5, 104, 91, 176, 251, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2961, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba508240b29f9e9a371c7421" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11883611519379556610" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d502939e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd00" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e42284fcbfaf36ba8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1bae1f4d3279c7ea1461309f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "402742df81" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "febaddbf0c48" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4054781098031228189" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4da3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e74b7a0858" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c291195250066bdde4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f28c25de26c1855" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b665affe74e20b4400bf9ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7715704571881504269" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f0ed7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9dbf37422dd2c81148bd1404" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5cd7ae7a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15797538823973017735" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de22f21c83906c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11473946010770064917" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4cba508240b29f9e9a371c74211ba4eb11b6fd5bc90244d502939e42fd00ffbf492e42284fcbfaf36ba84c1bae1f4d3279c7ea1461309f45402742df8146febaddbf0c484242f11b384579ecee1ea51d424da345e74b7a085849c291195250066bdde4484f28c25de26c1855ff1bffffffffffffffffbf4c8b665affe74e20b4400bf9ad1b6b13b06db6dabe0dffbf436f0ed74c9dbf37422dd2c81148bd140445d5cd7ae7a61bdb3c21dc885a988747de22f21c83906c1b9f3ba51aeff5c615ffff", + "cborBytes": [ + 159, 191, 76, 186, 80, 130, 64, 178, 159, 158, 154, 55, 28, 116, 33, 27, 164, 235, 17, 182, 253, 91, 201, 2, 68, + 213, 2, 147, 158, 66, 253, 0, 255, 191, 73, 46, 66, 40, 79, 203, 250, 243, 107, 168, 76, 27, 174, 31, 77, 50, 121, + 199, 234, 20, 97, 48, 159, 69, 64, 39, 66, 223, 129, 70, 254, 186, 221, 191, 12, 72, 66, 66, 241, 27, 56, 69, 121, + 236, 238, 30, 165, 29, 66, 77, 163, 69, 231, 75, 122, 8, 88, 73, 194, 145, 25, 82, 80, 6, 107, 221, 228, 72, 79, + 40, 194, 93, 226, 108, 24, 85, 255, 27, 255, 255, 255, 255, 255, 255, 255, 255, 191, 76, 139, 102, 90, 255, 231, + 78, 32, 180, 64, 11, 249, 173, 27, 107, 19, 176, 109, 182, 218, 190, 13, 255, 191, 67, 111, 14, 215, 76, 157, 191, + 55, 66, 45, 210, 200, 17, 72, 189, 20, 4, 69, 213, 205, 122, 231, 166, 27, 219, 60, 33, 220, 136, 90, 152, 135, + 71, 222, 34, 242, 28, 131, 144, 108, 27, 159, 59, 165, 26, 239, 245, 198, 21, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2962, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9758023066276095528" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2949322573998150058" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1153a32a65d8ce17c9" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc2f561eca0f6451" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2544753451053911680" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eb0f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6c02b30698b51bea3d2f2603" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d7a2c79f4483559" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "972f77db844537cd09ebe7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "813d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e950f73b6b77a6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75ba83293900" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef9e8c5bda2cf5adb9ef5f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11346431840716313052" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f087" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "780724737227320780" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc7f2b765793937e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12914192594807740716" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6466fe40148edc3bd8587f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8e258a042307c6da135" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49419c564adabe14bbde2774" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7830ee69e7473918e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a7ce31801c0cab9f413d8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d892ef48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d98d0893b4990c1293490109" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10941443284374811710" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f1b876b76474f7466289f1b28ee19413f3351aa491153a32a65d8ce17c9ff48fc2f561eca0f64511b2350c7c7f3048e8042eb0fff4c6c02b30698b51bea3d2f2603bf483d7a2c79f448355941df4b972f77db844537cd09ebe742813d47e950f73b6b77a64675ba832939004bef9e8c5bda2cf5adb9ef5f1b9d769fa4a613d1dc42f0871b0ad5b10315cb6dcc48fc7f2b765793937e1bb3386dbe1e7ed92cffbf4b6466fe40148edc3bd8587f4ad8e258a042307c6da13541b14c49419c564adabe14bbde277449b7830ee69e7473918e4b0a7ce31801c0cab9f413d844d892ef4841ee4cd98d0893b4990c12934901091b97d7d0b2673e743effff", + "cborBytes": [ + 159, 159, 27, 135, 107, 118, 71, 79, 116, 102, 40, 159, 27, 40, 238, 25, 65, 63, 51, 81, 170, 73, 17, 83, 163, 42, + 101, 216, 206, 23, 201, 255, 72, 252, 47, 86, 30, 202, 15, 100, 81, 27, 35, 80, 199, 199, 243, 4, 142, 128, 66, + 235, 15, 255, 76, 108, 2, 179, 6, 152, 181, 27, 234, 61, 47, 38, 3, 191, 72, 61, 122, 44, 121, 244, 72, 53, 89, + 65, 223, 75, 151, 47, 119, 219, 132, 69, 55, 205, 9, 235, 231, 66, 129, 61, 71, 233, 80, 247, 59, 107, 119, 166, + 70, 117, 186, 131, 41, 57, 0, 75, 239, 158, 140, 91, 218, 44, 245, 173, 185, 239, 95, 27, 157, 118, 159, 164, 166, + 19, 209, 220, 66, 240, 135, 27, 10, 213, 177, 3, 21, 203, 109, 204, 72, 252, 127, 43, 118, 87, 147, 147, 126, 27, + 179, 56, 109, 190, 30, 126, 217, 44, 255, 191, 75, 100, 102, 254, 64, 20, 142, 220, 59, 216, 88, 127, 74, 216, + 226, 88, 160, 66, 48, 124, 109, 161, 53, 65, 177, 76, 73, 65, 156, 86, 74, 218, 190, 20, 187, 222, 39, 116, 73, + 183, 131, 14, 230, 158, 116, 115, 145, 142, 75, 10, 124, 227, 24, 1, 192, 202, 185, 244, 19, 216, 68, 216, 146, + 239, 72, 65, 238, 76, 217, 141, 8, 147, 180, 153, 12, 18, 147, 73, 1, 9, 27, 151, 215, 208, 178, 103, 62, 116, 62, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2963, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "052e1ca407fe0002d9fbfbfc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f4c052e1ca407fe0002d9fbfbfcd8669f1bfffffffffffffffd80ff80ff", + "cborBytes": [ + 159, 76, 5, 46, 28, 164, 7, 254, 0, 2, 217, 251, 251, 252, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 253, 128, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2964, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ca06" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "837621046808293787" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f79aa000997d972c1e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3674336928835959123" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18192737566761892088" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5504667132342967666" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6565466953216253491" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9035480187268180578" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c7474c4bc67" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11190918520278159841" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6823c144" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14991963037159847280" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18326444058225390219" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2984897040385809764" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff831891ab7f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2fb818a38c" + } + ] + }, + "cborHex": "9f42ca069fbf1b0b9fd3e77766319b49f79aa000997d972c1e1b32fdddf8245df9531bfc79966d7ebf38f81b4c64819786121d721b5b1d39689b055e331b7d64795bb9332a62465c7474c4bc671b9b4e211a278511e1446823c1441bd00e26f393b2f5701bfe549bc5f697b28bff1b296c7c0b274f9d6446ff831891ab7fff452fb818a38cff", + "cborBytes": [ + 159, 66, 202, 6, 159, 191, 27, 11, 159, 211, 231, 119, 102, 49, 155, 73, 247, 154, 160, 0, 153, 125, 151, 44, 30, + 27, 50, 253, 221, 248, 36, 93, 249, 83, 27, 252, 121, 150, 109, 126, 191, 56, 248, 27, 76, 100, 129, 151, 134, 18, + 29, 114, 27, 91, 29, 57, 104, 155, 5, 94, 51, 27, 125, 100, 121, 91, 185, 51, 42, 98, 70, 92, 116, 116, 196, 188, + 103, 27, 155, 78, 33, 26, 39, 133, 17, 225, 68, 104, 35, 193, 68, 27, 208, 14, 38, 243, 147, 178, 245, 112, 27, + 254, 84, 155, 197, 246, 151, 178, 139, 255, 27, 41, 108, 124, 11, 39, 79, 157, 100, 70, 255, 131, 24, 145, 171, + 127, 255, 69, 47, 184, 24, 163, 140, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2965, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23049c8514" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "248a897032f17238" + } + } + ] + } + ] + }, + "cborHex": "9fbf4523049c851448248a897032f17238ffff", + "cborBytes": [159, 191, 69, 35, 4, 156, 133, 20, 72, 36, 138, 137, 112, 50, 241, 114, 56, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2966, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3442418772699682263" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13054501124363669940" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14331570313813545762" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2116262826956851938" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16744932305822576747" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e988b4c3d39d61076dbe8" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3352129767286050531" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10460721663122817211" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a64fcb046196940e025" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16832469184301042333" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4eb4b1066983f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9459aa1252adc98800b064ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9266a8d9aca85c6ad69df3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95bc56cce3e5423e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2838326540946782048" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab170373ffa684a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "464617317412775618" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4147319904445270265" + } + }, + { + "_tag": "ByteArray", + "bytearray": "51" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14175218693794834027" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17704278514335150074" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16641647850681176863" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79b75eb7" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2433a9a1c35e3c5e890a31" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16775268302739886732" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bb228e74" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17313672965245025426" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13250081027150309046" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "79911094f4f1cfdd2cef84f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17956998698205634864" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c834ce9c4fb44bde77f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2937223464413915142" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8035385447316291284" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "beb6f064d52546" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12330500642282387177" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b2fc5eda292e695d71bb52ae79b5da251b41bc6e3f744bc63d3221b1d5e79d424208ae21be861f336b484706b4b9e988b4c3d39d61076dbe8ff1b2e85284354190ee3d8669f1b912bf2ede8ab40bb9fbf4a1a64fcb046196940e0251be998f18a76f90a9d4290c9474eb4b1066983f94c9459aa1252adc98800b064ed4b9266a8d9aca85c6ad69df34895bc56cce3e5423e1b2763c2f36db2376048ab170373ffa684a61b0672a6fd10e226c2ff1b398e3d7aca5e08f94151bf1bc4b87e4c691e266b1bf5b23b81eb86effa1be6f3028c88fe931f4479b75eb7ff9f4b2433a9a1c35e3c5e890a311be8cdb9a464ae528c44bb228e741bf04685d482b6bc92ffffffd8669f1bb7e1be7e046fe6b69fa0ffffbf4c79911094f4f1cfdd2cef84f61bf934132cfeb2e1304a7c834ce9c4fb44bde77f1b28c31d2dc6556806419c1b6f836c7db4a17ed447beb6f064d52546418741e41bab1ebd011df7b6e9ffff", + "cborBytes": [ + 159, 191, 27, 47, 197, 237, 162, 146, 230, 149, 215, 27, 181, 42, 231, 155, 93, 162, 81, 180, 27, 198, 227, 247, + 68, 188, 99, 211, 34, 27, 29, 94, 121, 212, 36, 32, 138, 226, 27, 232, 97, 243, 54, 180, 132, 112, 107, 75, 158, + 152, 139, 76, 61, 57, 214, 16, 118, 219, 232, 255, 27, 46, 133, 40, 67, 84, 25, 14, 227, 216, 102, 159, 27, 145, + 43, 242, 237, 232, 171, 64, 187, 159, 191, 74, 26, 100, 252, 176, 70, 25, 105, 64, 224, 37, 27, 233, 152, 241, + 138, 118, 249, 10, 157, 66, 144, 201, 71, 78, 180, 177, 6, 105, 131, 249, 76, 148, 89, 170, 18, 82, 173, 201, 136, + 0, 176, 100, 237, 75, 146, 102, 168, 217, 172, 168, 92, 106, 214, 157, 243, 72, 149, 188, 86, 204, 227, 229, 66, + 62, 27, 39, 99, 194, 243, 109, 178, 55, 96, 72, 171, 23, 3, 115, 255, 166, 132, 166, 27, 6, 114, 166, 253, 16, + 226, 38, 194, 255, 27, 57, 142, 61, 122, 202, 94, 8, 249, 65, 81, 191, 27, 196, 184, 126, 76, 105, 30, 38, 107, + 27, 245, 178, 59, 129, 235, 134, 239, 250, 27, 230, 243, 2, 140, 136, 254, 147, 31, 68, 121, 183, 94, 183, 255, + 159, 75, 36, 51, 169, 161, 195, 94, 60, 94, 137, 10, 49, 27, 232, 205, 185, 164, 100, 174, 82, 140, 68, 187, 34, + 142, 116, 27, 240, 70, 133, 212, 130, 182, 188, 146, 255, 255, 255, 216, 102, 159, 27, 183, 225, 190, 126, 4, 111, + 230, 182, 159, 160, 255, 255, 191, 76, 121, 145, 16, 148, 244, 241, 207, 221, 44, 239, 132, 246, 27, 249, 52, 19, + 44, 254, 178, 225, 48, 74, 124, 131, 76, 233, 196, 251, 68, 189, 231, 127, 27, 40, 195, 29, 45, 198, 85, 104, 6, + 65, 156, 27, 111, 131, 108, 125, 180, 161, 126, 212, 71, 190, 182, 240, 100, 213, 37, 70, 65, 135, 65, 228, 27, + 171, 30, 189, 1, 29, 247, 182, 233, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2967, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9659796763835569530" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0039fc" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3887844214830436926" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82bf14e719" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5905795135833434956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15128804155323918829" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15519275931734025393" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f4282c787dcd5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16939507943931958245" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81d64a9b6ed7" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14432074035785004720" + } + } + ] + }, + "cborHex": "9f1b860e7dfa16e3157a430039fcbf1b35f465b6f706923e4582bf14e7191b51f59962c394eb4c1bd1f44f39328929ed1bd75f8b3c3a46a4b1477f4282c787dcd51beb1538b9c3f8d3e54681d64a9b6ed7ff1bc84906df031a76b0ff", + "cborBytes": [ + 159, 27, 134, 14, 125, 250, 22, 227, 21, 122, 67, 0, 57, 252, 191, 27, 53, 244, 101, 182, 247, 6, 146, 62, 69, + 130, 191, 20, 231, 25, 27, 81, 245, 153, 98, 195, 148, 235, 76, 27, 209, 244, 79, 57, 50, 137, 41, 237, 27, 215, + 95, 139, 60, 58, 70, 164, 177, 71, 127, 66, 130, 199, 135, 220, 213, 27, 235, 21, 56, 185, 195, 248, 211, 229, 70, + 129, 214, 74, 155, 110, 215, 255, 27, 200, 73, 6, 223, 3, 26, 118, 176, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2968, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "3623c15aa5eae98cca8f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1412658700491353326" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06f6262eb56e03" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4790546845888931560" + } + }, + { + "_tag": "ByteArray", + "bytearray": "08725523355f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14613141164263937542" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6315754367170767583" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11984579231846670916" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13482739847217515356" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16634096098859777537" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "442bd146" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91f480" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17148615992307037260" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "438e0917eac8be56" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17827519659055258687" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ec0642f6ae9b4c" + }, + { + "_tag": "ByteArray", + "bytearray": "94b6ebc90cab5a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10497054191047429350" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2250743187799380711" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02" + } + ] + } + ] + }, + "cborHex": "9f9fa04a3623c15aa5eae98cca8f1b139ac59a7fa6ecee4706f6262eb56e03ff1b427b70f99513e6e84608725523355f9f1bcacc4e7714971606d8669f1b57a6112277d5eadf9f1ba651c75078bea244ffff1bbb1c5074d8678b5c1be6d82e454c3f7e01bf44442bd1464391f480ffffd8669f1bedfc1f63430b344c9fa09f48438e0917eac8be561bf76812acf8481c3f47ec0642f6ae9b4c4794b6ebc90cab5a1b91ad072bc5684ce6ff1b1f3c3f011d6992e74102ffffff", + "cborBytes": [ + 159, 159, 160, 74, 54, 35, 193, 90, 165, 234, 233, 140, 202, 143, 27, 19, 154, 197, 154, 127, 166, 236, 238, 71, + 6, 246, 38, 46, 181, 110, 3, 255, 27, 66, 123, 112, 249, 149, 19, 230, 232, 70, 8, 114, 85, 35, 53, 95, 159, 27, + 202, 204, 78, 119, 20, 151, 22, 6, 216, 102, 159, 27, 87, 166, 17, 34, 119, 213, 234, 223, 159, 27, 166, 81, 199, + 80, 120, 190, 162, 68, 255, 255, 27, 187, 28, 80, 116, 216, 103, 139, 92, 27, 230, 216, 46, 69, 76, 63, 126, 1, + 191, 68, 68, 43, 209, 70, 67, 145, 244, 128, 255, 255, 216, 102, 159, 27, 237, 252, 31, 99, 67, 11, 52, 76, 159, + 160, 159, 72, 67, 142, 9, 23, 234, 200, 190, 86, 27, 247, 104, 18, 172, 248, 72, 28, 63, 71, 236, 6, 66, 246, 174, + 155, 76, 71, 148, 182, 235, 201, 12, 171, 90, 27, 145, 173, 7, 43, 197, 104, 76, 230, 255, 27, 31, 60, 63, 1, 29, + 105, 146, 231, 65, 2, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2969, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15234415107361393772" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9782982704517257484" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13736825515023945357" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15395336601889776849" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b32" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1727097948674020110" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3a8ad6ecfc9500" + }, + { + "_tag": "ByteArray", + "bytearray": "448578041b0551a9e1" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0600fcff0606b9ff52941d" + }, + { + "_tag": "ByteArray", + "bytearray": "47fb06fc" + }, + { + "_tag": "ByteArray", + "bytearray": "ff30fd52fbb201b804961a57" + } + ] + }, + "cborHex": "9fd905079fd8669f1bd36b83d3231ecc6c80ff1b87c422eff28a990cd8669f1bbea302066c864e8d9f1bd5a739124935a4d1425b321b17f7e26f0b05530effff9f473a8ad6ecfc950049448578041b0551a9e1ffff4b0600fcff0606b9ff52941d4447fb06fc4cff30fd52fbb201b804961a57ff", + "cborBytes": [ + 159, 217, 5, 7, 159, 216, 102, 159, 27, 211, 107, 131, 211, 35, 30, 204, 108, 128, 255, 27, 135, 196, 34, 239, + 242, 138, 153, 12, 216, 102, 159, 27, 190, 163, 2, 6, 108, 134, 78, 141, 159, 27, 213, 167, 57, 18, 73, 53, 164, + 209, 66, 91, 50, 27, 23, 247, 226, 111, 11, 5, 83, 14, 255, 255, 159, 71, 58, 138, 214, 236, 252, 149, 0, 73, 68, + 133, 120, 4, 27, 5, 81, 169, 225, 255, 255, 75, 6, 0, 252, 255, 6, 6, 185, 255, 82, 148, 29, 68, 71, 251, 6, 252, + 76, 255, 48, 253, 82, 251, 178, 1, 184, 4, 150, 26, 87, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2970, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6fa80e9a3adc286d2533" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7b2678d2c6d823257dc5" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3043228677518743790" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17788295686713839507" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4638326602658702580" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08503e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10142227876938974587" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb0341e79033" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6416330541994146453" + } + } + ] + }, + "cborHex": "9f4a6fa80e9a3adc286d25339f4a7b2678d2c6d823257dc5ffbf1b2a3bb85bc5c958ee1bf6dcb8ae3e310f931b405ea5785fb764f44308503e1b8cc06e84ac03057b46bb0341e79033ff1b590b62a1fd0cfa95ff", + "cborBytes": [ + 159, 74, 111, 168, 14, 154, 58, 220, 40, 109, 37, 51, 159, 74, 123, 38, 120, 210, 198, 216, 35, 37, 125, 197, 255, + 191, 27, 42, 59, 184, 91, 197, 201, 88, 238, 27, 246, 220, 184, 174, 62, 49, 15, 147, 27, 64, 94, 165, 120, 95, + 183, 100, 244, 67, 8, 80, 62, 27, 140, 192, 110, 132, 172, 3, 5, 123, 70, 187, 3, 65, 231, 144, 51, 255, 27, 89, + 11, 98, 161, 253, 12, 250, 149, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2971, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6253210377704633402" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5554016874260911330" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f9fd8669f1b56c7ddb524def43a9f1b4d13d4ebb2d8d4e2ffffffa0ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 86, 199, 221, 181, 36, 222, 244, 58, 159, 27, 77, 19, 212, 235, 178, 216, 212, 226, + 255, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2972, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12300884633808461802" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "911796417009963386" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6496663455100553756" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7069741092860970957" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11231707263024669025" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cacf78a9741a572f0a31a2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7902746457735042043" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8740849098494044608" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c4a9db" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5736170747342436243" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "22" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18221234897774053861" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17849504655785281325" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16759156537993060485" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b550e95cd506e885" + } + ] + }, + "cborHex": "9f9f41c8bf1baab58566cd36dfea1b0ca75a02a75a517affff9f1b5a28c8fdda87ca1cd8669f1b621cc4111df5c7cd80ffd8669f1b9bdf0a3f61c2a1619f4bcacf78a9741a572f0a31a21b6dac3208634613fb1b794dbbf1af07e9c0ffff9f43c4a9dbffd8669f1b4f9af8e7365537939f41221bfcded4996ac609e5419affffff1bf7b62de9e8c3472d1be8947c13d63de08548b550e95cd506e885ff", + "cborBytes": [ + 159, 159, 65, 200, 191, 27, 170, 181, 133, 102, 205, 54, 223, 234, 27, 12, 167, 90, 2, 167, 90, 81, 122, 255, 255, + 159, 27, 90, 40, 200, 253, 218, 135, 202, 28, 216, 102, 159, 27, 98, 28, 196, 17, 29, 245, 199, 205, 128, 255, + 216, 102, 159, 27, 155, 223, 10, 63, 97, 194, 161, 97, 159, 75, 202, 207, 120, 169, 116, 26, 87, 47, 10, 49, 162, + 27, 109, 172, 50, 8, 99, 70, 19, 251, 27, 121, 77, 187, 241, 175, 7, 233, 192, 255, 255, 159, 67, 196, 169, 219, + 255, 216, 102, 159, 27, 79, 154, 248, 231, 54, 85, 55, 147, 159, 65, 34, 27, 252, 222, 212, 153, 106, 198, 9, 229, + 65, 154, 255, 255, 255, 27, 247, 182, 45, 233, 232, 195, 71, 45, 27, 232, 148, 124, 19, 214, 61, 224, 133, 72, + 181, 80, 233, 92, 213, 6, 232, 133, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2973, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1490141098356060581" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11264424291559944773" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a88" + }, + { + "_tag": "ByteArray", + "bytearray": "c9" + }, + { + "_tag": "ByteArray", + "bytearray": "bd73687cc4" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "503b85d9f5f6132f3add1e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16950209900839710663" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "489563094807145352" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "705644652249846095" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13642302537835375522" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10506637360189341571" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17520393483817990945" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4304487669002488471" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b68bf7e8174477" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4110796467917299721" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5cdb038e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6267927452085344554" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e184a63f8df6af20c23" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b14ae0b6f10b931a580ffd8669f1b9c53463631b632459f9f429a8841c945bd73687cc4ff9f4b503b85d9f5f6132f3add1e1beb3b3e1947dc2fc71b06cb470a791eeb88ffffffd8669f1b09caf4129301914f9f1bbd5331e0ce166ba21b91cf130335eeff83d8669f1bf324f10be80a3b2180ffffffd8669f1b3bbc9cba92f14a979f47b68bf7e8174477a0bf1b390c7b9b8e242009445cdb038e1b56fc26cf0b77592a4a3e184a63f8df6af20c23ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 20, 174, 11, 111, 16, 185, 49, 165, 128, 255, 216, 102, 159, 27, 156, 83, 70, 54, 49, 182, + 50, 69, 159, 159, 66, 154, 136, 65, 201, 69, 189, 115, 104, 124, 196, 255, 159, 75, 80, 59, 133, 217, 245, 246, + 19, 47, 58, 221, 30, 27, 235, 59, 62, 25, 71, 220, 47, 199, 27, 6, 203, 71, 10, 121, 30, 235, 136, 255, 255, 255, + 216, 102, 159, 27, 9, 202, 244, 18, 147, 1, 145, 79, 159, 27, 189, 83, 49, 224, 206, 22, 107, 162, 27, 145, 207, + 19, 3, 53, 238, 255, 131, 216, 102, 159, 27, 243, 36, 241, 11, 232, 10, 59, 33, 128, 255, 255, 255, 216, 102, 159, + 27, 59, 188, 156, 186, 146, 241, 74, 151, 159, 71, 182, 139, 247, 232, 23, 68, 119, 160, 191, 27, 57, 12, 123, + 155, 142, 36, 32, 9, 68, 92, 219, 3, 142, 27, 86, 252, 38, 207, 11, 119, 89, 42, 74, 62, 24, 74, 99, 248, 223, + 106, 242, 12, 35, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2974, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f9f5" + } + ] + }, + "cborHex": "9f42f9f5ff", + "cborBytes": [159, 66, 249, 245, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2975, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13aaa71629a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ffe181e2ad1a8929d0be82e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3de9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5408" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a51661ca209a65bc971" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9001680246568824232" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "859c1eb3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd5c423c37516766b7eb7616" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97399a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa64af" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8d685f9486234" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5085b6" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3697389ffbef04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18423851688061894746" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2138810288117198547" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "901a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7a5eef7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3f2217de07d2a5ce0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e46b2b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4702804929277902251" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7289581553106545314" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e88aec5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3403777689518310397" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4210760880414134821" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9636757135917911851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17359381918065959568" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac7943421886c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18134962743569618852" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14455899343972719800" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3544692224123429649" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2552402013497847459" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1305659833713446525" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1368431102598713185" + } + }, + { + "_tag": "ByteArray", + "bytearray": "534394002e10b13376" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5515181215142595467" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a0afb004e949b3eeac8c3f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13647786716553647206" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1291301067900853555" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "702568269668522663" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5689975591850535522" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf4613aaa71629a14c7ffe181e2ad1a8929d0be82e423de94254084a7a51661ca209a65bc9711b7cec647dc662ada844859c1eb34cdd5c423c37516766b7eb76164397399a43fa64af47e8d685f9486234435085b6ff9fbf473697389ffbef041bffaeab7f1d69005a426c631b1dae94a0092d2ed342901a41e444b7a5eef749a3f2217de07d2a5ce043e46b2b1b4143b82aa990bdabff1b6529cbccfa27eaa2446e88aec51b2f3ca5c64e2383fd9f1b3a6fa0b60f321225ffffbf1b85bca38eb1190f2b1bf0e8e9e16aa9229047ac7943421886c41bfbac5488396917a4ff9fd8669f1bc89dabdcda4bdcb89f1b313146cc18f763111b236bf41baa87eea3ffffd8669f1b121ea2b379fc4e7d9f1b12fda4d669fe0f6149534394002e10b133761b4c89dc18307b4b8bffff4ba0afb004e949b3eeac8c3fd8669f1bbd66adb5aa7994669f1b11eb9f7aca501d331b09c0061e700d9aa71b4ef6daa76ce4ea62ffffffff", + "cborBytes": [ + 159, 191, 70, 19, 170, 167, 22, 41, 161, 76, 127, 254, 24, 30, 42, 209, 168, 146, 157, 11, 232, 46, 66, 61, 233, + 66, 84, 8, 74, 122, 81, 102, 28, 162, 9, 166, 91, 201, 113, 27, 124, 236, 100, 125, 198, 98, 173, 168, 68, 133, + 156, 30, 179, 76, 221, 92, 66, 60, 55, 81, 103, 102, 183, 235, 118, 22, 67, 151, 57, 154, 67, 250, 100, 175, 71, + 232, 214, 133, 249, 72, 98, 52, 67, 80, 133, 182, 255, 159, 191, 71, 54, 151, 56, 159, 251, 239, 4, 27, 255, 174, + 171, 127, 29, 105, 0, 90, 66, 108, 99, 27, 29, 174, 148, 160, 9, 45, 46, 211, 66, 144, 26, 65, 228, 68, 183, 165, + 238, 247, 73, 163, 242, 33, 125, 224, 125, 42, 92, 224, 67, 228, 107, 43, 27, 65, 67, 184, 42, 169, 144, 189, 171, + 255, 27, 101, 41, 203, 204, 250, 39, 234, 162, 68, 110, 136, 174, 197, 27, 47, 60, 165, 198, 78, 35, 131, 253, + 159, 27, 58, 111, 160, 182, 15, 50, 18, 37, 255, 255, 191, 27, 133, 188, 163, 142, 177, 25, 15, 43, 27, 240, 232, + 233, 225, 106, 169, 34, 144, 71, 172, 121, 67, 66, 24, 134, 196, 27, 251, 172, 84, 136, 57, 105, 23, 164, 255, + 159, 216, 102, 159, 27, 200, 157, 171, 220, 218, 75, 220, 184, 159, 27, 49, 49, 70, 204, 24, 247, 99, 17, 27, 35, + 107, 244, 27, 170, 135, 238, 163, 255, 255, 216, 102, 159, 27, 18, 30, 162, 179, 121, 252, 78, 125, 159, 27, 18, + 253, 164, 214, 105, 254, 15, 97, 73, 83, 67, 148, 0, 46, 16, 177, 51, 118, 27, 76, 137, 220, 24, 48, 123, 75, 139, + 255, 255, 75, 160, 175, 176, 4, 233, 73, 179, 238, 172, 140, 63, 216, 102, 159, 27, 189, 102, 173, 181, 170, 121, + 148, 102, 159, 27, 17, 235, 159, 122, 202, 80, 29, 51, 27, 9, 192, 6, 30, 112, 13, 154, 167, 27, 78, 246, 218, + 167, 108, 228, 234, 98, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2976, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1465795531962948148" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15446644268135881380" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "74721f08696a80ca0c16" + }, + { + "_tag": "ByteArray", + "bytearray": "3782f7035ea7afc141250123" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8505822978871276651" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6491456770755525355" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9fd8669f1b14578d452c019a349f1bd65d811f3e101aa4ffff4a74721f08696a80ca0c164c3782f7035ea7afc141250123d8669f1b760ac0eef9fa346b9f1b5a16498a2faffaebffffff80ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 20, 87, 141, 69, 44, 1, 154, 52, 159, 27, 214, 93, 129, 31, 62, 16, 26, 164, 255, + 255, 74, 116, 114, 31, 8, 105, 106, 128, 202, 12, 22, 76, 55, 130, 247, 3, 94, 167, 175, 193, 65, 37, 1, 35, 216, + 102, 159, 27, 118, 10, 192, 238, 249, 250, 52, 107, 159, 27, 90, 22, 73, 138, 47, 175, 250, 235, 255, 255, 255, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2977, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "19fbfa68f6fdff0036fda503" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4905423584620824834" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7f5318e4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7747846377995222120" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f4c19fbfa68f6fdff0036fda5039fd8669f1b441390c29a25c90280ff447f5318e4d8669f1b6b85e13b1eb3bc6880ff80ffff", + "cborBytes": [ + 159, 76, 25, 251, 250, 104, 246, 253, 255, 0, 54, 253, 165, 3, 159, 216, 102, 159, 27, 68, 19, 144, 194, 154, 37, + 201, 2, 128, 255, 68, 127, 83, 24, 228, 216, 102, 159, 27, 107, 133, 225, 59, 30, 179, 188, 104, 128, 255, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2978, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9224968896846786566" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8102644587514539527" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16034777237514602844" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2899270816505814593" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14636038461458914041" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6073660459579580217" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1855" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9637443215101869570" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11594235374045797937" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15095467653977958" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b608d347be11146b2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "226bfc77fa6bd9901e83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "19a5d4531ebdf98bfca0a2" + } + ] + }, + "cborHex": "9fd8669f1b8005ac55f09470069fd8669f1b707260529c0bae0780ffd8669f1bde86f8f10e93c95c9f1b283c4772557c5e411bcb1da76f86369af91b5449fa0223939f39421855ffffffff1b85bf138af3253e02d8669f1ba0e6ffa4d0449e319fbf1b0035a13f733bd766496b608d347be11146b24a226bfc77fa6bd9901e834115ffffff4b19a5d4531ebdf98bfca0a2ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 128, 5, 172, 85, 240, 148, 112, 6, 159, 216, 102, 159, 27, 112, 114, 96, 82, 156, 11, 174, + 7, 128, 255, 216, 102, 159, 27, 222, 134, 248, 241, 14, 147, 201, 92, 159, 27, 40, 60, 71, 114, 85, 124, 94, 65, + 27, 203, 29, 167, 111, 134, 54, 154, 249, 27, 84, 73, 250, 2, 35, 147, 159, 57, 66, 24, 85, 255, 255, 255, 255, + 27, 133, 191, 19, 138, 243, 37, 62, 2, 216, 102, 159, 27, 160, 230, 255, 164, 208, 68, 158, 49, 159, 191, 27, 0, + 53, 161, 63, 115, 59, 215, 102, 73, 107, 96, 141, 52, 123, 225, 17, 70, 178, 74, 34, 107, 252, 119, 250, 107, 217, + 144, 30, 131, 65, 21, 255, 255, 255, 75, 25, 165, 212, 83, 30, 189, 249, 139, 252, 160, 162, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2979, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "616318475831946974" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bb17ba" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d3a7f132c39a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9801688021056648811" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30ff3f76802eee6026" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3654618388404972810" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93cdf1f82ab58660" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15790963435417281469" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0eb33a3d63cf5a7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4eff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e50e1f39979f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74c2983eb007ca19" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17752237283459059164" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15373383412544925084" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e23ce2d5a8450589936de89c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16652181145486841533" + } + }, + { + "_tag": "ByteArray", + "bytearray": "71" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "49946e433da51acf46540d89" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4090797966742404211" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "214fa14026" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8292976440965194621" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4885283182049865822" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12247151964289419823" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13643386627852329476" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12367922236952088259" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49e5fcafc33c0323ac7718a8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15487985843591293011" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "524d" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16603734532804064958" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3766ba482d5ef03fee2ace39" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13559165245397030523" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f8cc" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14457620490942394209" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14746033376017081359" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11520830315302862696" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8859153b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "78522959745911144" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4487099611264863361" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83c0b325231f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4502224123214539080" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e6faef776" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12124464454087114095" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f2820f311746fa4268df8a2" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "714fe66532" + }, + { + "_tag": "ByteArray", + "bytearray": "f7352e305be8794a38de88" + }, + { + "_tag": "ByteArray", + "bytearray": "95" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cd89d78020c3" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b088d9a636c792ede9f43bb17babf470d3a7f132c39a51b88069752d648766b4930ff3f76802eee60261b32b7d00fae7d2d0a41774893cdf1f82ab5866042a1fc1bdb24c594953aa3bd48e0eb33a3d63cf5a7424eff46e50e1f39979f4874c2983eb007ca19ffffffd8669f1bf65c9dc10105cddc9f1bd5593ac3149f6d9c4ce23ce2d5a8450589936de89c9f1be7186e86583356bd4171ff4c49946e433da51acf46540d89bf1b38c56f13a7923c7345214fa140261b731692228e69e37d1b43cc032bb545b05e1ba9f69fd2c5b2ca2f1bbd570bda2e73e2041baba3afbf172f0ec34c49e5fcafc33c0323ac7718a81bd6f06110dd89a85342524dffffffd8669f1be66c509654ac36be9f9f4c3766ba482d5ef03fee2ace391bbc2bd4f37eb6567b42f8ccff9f1bc8a3c93c9c07af611bcca46f3a478d640f1b9fe23621bd2dbf68448859153b1b0116f837425e0968ffbf1b3e456152a13c4c814683c0b325231f1b3e7b1cfc7b65a948454e6faef7761ba842c02ecdb67d6f4c4f2820f311746fa4268df8a2ff9f45714fe665324bf7352e305be8794a38de884195ff46cd89d78020c3ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 8, 141, 154, 99, 108, 121, 46, 222, 159, 67, 187, 23, 186, 191, 71, 13, 58, 127, 19, 44, + 57, 165, 27, 136, 6, 151, 82, 214, 72, 118, 107, 73, 48, 255, 63, 118, 128, 46, 238, 96, 38, 27, 50, 183, 208, 15, + 174, 125, 45, 10, 65, 119, 72, 147, 205, 241, 248, 42, 181, 134, 96, 66, 161, 252, 27, 219, 36, 197, 148, 149, 58, + 163, 189, 72, 224, 235, 51, 163, 214, 60, 245, 167, 66, 78, 255, 70, 229, 14, 31, 57, 151, 159, 72, 116, 194, 152, + 62, 176, 7, 202, 25, 255, 255, 255, 216, 102, 159, 27, 246, 92, 157, 193, 1, 5, 205, 220, 159, 27, 213, 89, 58, + 195, 20, 159, 109, 156, 76, 226, 60, 226, 213, 168, 69, 5, 137, 147, 109, 232, 156, 159, 27, 231, 24, 110, 134, + 88, 51, 86, 189, 65, 113, 255, 76, 73, 148, 110, 67, 61, 165, 26, 207, 70, 84, 13, 137, 191, 27, 56, 197, 111, 19, + 167, 146, 60, 115, 69, 33, 79, 161, 64, 38, 27, 115, 22, 146, 34, 142, 105, 227, 125, 27, 67, 204, 3, 43, 181, 69, + 176, 94, 27, 169, 246, 159, 210, 197, 178, 202, 47, 27, 189, 87, 11, 218, 46, 115, 226, 4, 27, 171, 163, 175, 191, + 23, 47, 14, 195, 76, 73, 229, 252, 175, 195, 60, 3, 35, 172, 119, 24, 168, 27, 214, 240, 97, 16, 221, 137, 168, + 83, 66, 82, 77, 255, 255, 255, 216, 102, 159, 27, 230, 108, 80, 150, 84, 172, 54, 190, 159, 159, 76, 55, 102, 186, + 72, 45, 94, 240, 63, 238, 42, 206, 57, 27, 188, 43, 212, 243, 126, 182, 86, 123, 66, 248, 204, 255, 159, 27, 200, + 163, 201, 60, 156, 7, 175, 97, 27, 204, 164, 111, 58, 71, 141, 100, 15, 27, 159, 226, 54, 33, 189, 45, 191, 104, + 68, 136, 89, 21, 59, 27, 1, 22, 248, 55, 66, 94, 9, 104, 255, 191, 27, 62, 69, 97, 82, 161, 60, 76, 129, 70, 131, + 192, 179, 37, 35, 31, 27, 62, 123, 28, 252, 123, 101, 169, 72, 69, 78, 111, 174, 247, 118, 27, 168, 66, 192, 46, + 205, 182, 125, 111, 76, 79, 40, 32, 243, 17, 116, 111, 164, 38, 141, 248, 162, 255, 159, 69, 113, 79, 230, 101, + 50, 75, 247, 53, 46, 48, 91, 232, 121, 74, 56, 222, 136, 65, 149, 255, 70, 205, 137, 215, 128, 32, 195, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2980, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8811914398675218509" + } + } + ] + }, + "cborHex": "9f1bffffffffffffffec1bffffffffffffffef801b7a4a3575442fb04dff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 27, 255, 255, 255, 255, 255, 255, 255, 239, 128, 27, 122, 74, 53, + 117, 68, 47, 176, 77, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2981, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37ab337f48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b666174" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "849e05a936" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6856a5879521a7bf5d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd3651e56e4c481665d65c22" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17479306335539900037" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf410a41654537ab337f48446b66617445849e05a936496856a5879521a7bf5d4cbd3651e56e4c481665d65c221bf292f880ba172e85ffff", + "cborBytes": [ + 159, 191, 65, 10, 65, 101, 69, 55, 171, 51, 127, 72, 68, 107, 102, 97, 116, 69, 132, 158, 5, 169, 54, 73, 104, 86, + 165, 135, 149, 33, 167, 191, 93, 76, 189, 54, 81, 229, 110, 76, 72, 22, 101, 214, 92, 34, 27, 242, 146, 248, 128, + 186, 23, 46, 133, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2982, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0770f2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12492184309752670164" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14466811282137480131" + } + } + ] + } + ] + }, + "cborHex": "9f9f430770f21bad5d27717b8427d41bc8c47036706afbc3ffff", + "cborBytes": [ + 159, 159, 67, 7, 112, 242, 27, 173, 93, 39, 113, 123, 132, 39, 212, 27, 200, 196, 112, 54, 112, 106, 251, 195, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2983, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fa3a763d3f7adebc0fef7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8c09bc8a1666a45" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1448051850134913479" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10428614367134136002" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8077398816126256460" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "764585239793814348" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6563240845509022889" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4683750480919489914" + } + } + ] + } + ] + }, + "cborHex": "9fbf4b7fa3a763d3f7adebc0fef70f41e848b8c09bc8a1666a45ffd8669f1b1418837c4fa381c79f1b90b9e1838490b6c2d8669f1b7018af6d685dc54c9f1b0a9c5a39826acb4c1b5b1550c683e654a9ffff1b4100063f2fc56d7affffff", + "cborBytes": [ + 159, 191, 75, 127, 163, 167, 99, 211, 247, 173, 235, 192, 254, 247, 15, 65, 232, 72, 184, 192, 155, 200, 161, 102, + 106, 69, 255, 216, 102, 159, 27, 20, 24, 131, 124, 79, 163, 129, 199, 159, 27, 144, 185, 225, 131, 132, 144, 182, + 194, 216, 102, 159, 27, 112, 24, 175, 109, 104, 93, 197, 76, 159, 27, 10, 156, 90, 57, 130, 106, 203, 76, 27, 91, + 21, 80, 198, 131, 230, 84, 169, 255, 255, 27, 65, 0, 6, 63, 47, 197, 109, 122, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2984, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11112668663509222532" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3589385494760534781" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "71293c5b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10781906927330992859" + } + }, + { + "_tag": "ByteArray", + "bytearray": "78895929eb3dfba31917" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "156664977776922678" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7805190033217516811" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b37b3f2b81c72597dce0427c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41d85070eb84ee0d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7786123553377084760" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bb" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b9a382145a31504849fd8669f1b31d00f17112432fd9f4471293c5b1b95a10739b4e322db4a78895929eb3dfba31917ffffbf1b022c95f79d23503641161b6c519afb4659750b4cb37b3f2b81c72597dce0427c4841d85070eb84ee0d1b6c0dde1e8057e558ff41bbffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 154, 56, 33, 69, 163, 21, 4, 132, 159, 216, 102, 159, 27, 49, 208, 15, 23, 17, 36, 50, + 253, 159, 68, 113, 41, 60, 91, 27, 149, 161, 7, 57, 180, 227, 34, 219, 74, 120, 137, 89, 41, 235, 61, 251, 163, + 25, 23, 255, 255, 191, 27, 2, 44, 149, 247, 157, 35, 80, 54, 65, 22, 27, 108, 81, 154, 251, 70, 89, 117, 11, 76, + 179, 123, 63, 43, 129, 199, 37, 151, 220, 224, 66, 124, 72, 65, 216, 80, 112, 235, 132, 238, 13, 27, 108, 13, 222, + 30, 128, 87, 229, 88, 255, 65, 187, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2985, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e62a71fb9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6359564329619714411" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf457e62a71fb91b5841b610393a716bffff", + "cborBytes": [159, 191, 69, 126, 98, 167, 31, 185, 27, 88, 65, 182, 16, 57, 58, 113, 107, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2986, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bb2561e9a42d32a3" + } + ] + }, + "cborHex": "9f48bb2561e9a42d32a3ff", + "cborBytes": [159, 72, 187, 37, 97, 233, 164, 45, 50, 163, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2987, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9984327189155754014" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9825802798593293795" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6be8626f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12229317117270943690" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6009672705948925886" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13559106039426577218" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13603041105922589374" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2552260579796343633" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3e4776c51797699cb4" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17809951201491992153" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d258b5200c77ab13f25b" + }, + { + "_tag": "ByteArray", + "bytearray": "2b1c3411" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3258500160546406602" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9120706849665859440" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17075771423291857522" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11879751621683669688" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3673382858253132027" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6988785139910027094" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13800655625178379944" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3061269442425626162" + } + }, + { + "_tag": "ByteArray", + "bytearray": "339d3be156a7f7800cc44cf9" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1e8c8a31" + } + ] + }, + "cborHex": "9fd8669f1b8a8f74ade6e7301e9f1b885c439603313de3446be8626fd8669f1ba9b7431fdc89e7ca9f1b5366a57c46723fbe1bbc2b9f1a87dff34241e31bbcc7b5d0578d82be1b236b737990fe5b51ffff493e4776c51797699cb4ffffa01bf729a841aff8be599f9f4ad258b5200c77ab13f25b442b1c34111b2d3884a1b9ec00ca1b7e93428e62ce3f701becf953a35f13da72ffd8669f1ba4dd5b2886536ab89f1b32fa7a3f462fe0fb1b60fd270e7bdda7561bbf85c72c0e40f6a81b2a7bd056ad899e324c339d3be156a7f7800cc44cf9ffffff441e8c8a31ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 138, 143, 116, 173, 230, 231, 48, 30, 159, 27, 136, 92, 67, 150, 3, 49, 61, 227, 68, 107, + 232, 98, 111, 216, 102, 159, 27, 169, 183, 67, 31, 220, 137, 231, 202, 159, 27, 83, 102, 165, 124, 70, 114, 63, + 190, 27, 188, 43, 159, 26, 135, 223, 243, 66, 65, 227, 27, 188, 199, 181, 208, 87, 141, 130, 190, 27, 35, 107, + 115, 121, 144, 254, 91, 81, 255, 255, 73, 62, 71, 118, 197, 23, 151, 105, 156, 180, 255, 255, 160, 27, 247, 41, + 168, 65, 175, 248, 190, 89, 159, 159, 74, 210, 88, 181, 32, 12, 119, 171, 19, 242, 91, 68, 43, 28, 52, 17, 27, 45, + 56, 132, 161, 185, 236, 0, 202, 27, 126, 147, 66, 142, 98, 206, 63, 112, 27, 236, 249, 83, 163, 95, 19, 218, 114, + 255, 216, 102, 159, 27, 164, 221, 91, 40, 134, 83, 106, 184, 159, 27, 50, 250, 122, 63, 70, 47, 224, 251, 27, 96, + 253, 39, 14, 123, 221, 167, 86, 27, 191, 133, 199, 44, 14, 64, 246, 168, 27, 42, 123, 208, 86, 173, 137, 158, 50, + 76, 51, 157, 59, 225, 86, 167, 247, 128, 12, 196, 76, 249, 255, 255, 255, 68, 30, 140, 138, 49, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2988, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6807877719882328847" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e2d01f60f2d9efe8d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3360802a868bfc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16999493649914922746" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b5e7a70b76fe1eb0f495e2d01f60f2d9efe8d473360802a868bfc1bebea55684cb006faffff", + "cborBytes": [ + 159, 191, 27, 94, 122, 112, 183, 111, 225, 235, 15, 73, 94, 45, 1, 246, 15, 45, 158, 254, 141, 71, 51, 96, 128, + 42, 134, 139, 252, 27, 235, 234, 85, 104, 76, 176, 6, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2989, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "993805870765214016" + } + } + ] + }, + "cborHex": "9f1b0dcab52c8ea88940ff", + "cborBytes": [159, 27, 13, 202, 181, 44, 142, 168, 137, 64, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2990, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "297798175184479407" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4411292601300358853" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1566073826745213955" + } + }, + { + "_tag": "ByteArray", + "bytearray": "61362ca69fbe3f26b64ca1cb" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11968416837598889954" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6641930280113644084" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16674263614192603058" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4cb515626fd" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17970075526179253701" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11026862404041835067" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15150379731220964117" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14788392878108959257" + } + }, + { + "_tag": "ByteArray", + "bytearray": "61" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14441842951438372246" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "423530b1ff57ee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bbb9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77f6510a9f1b9604e0be4686" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "883104811713a50b30" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dbabdab7aedd1b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9dbd04087845d55e6de7e8b4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10517592016302250496" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12250502500568162580" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b4530371fe3a0756fa12b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7191068032552202174" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b0421fddccea164af9fd8669f1b3d380f3fb4d116c580ff1b15bbcfd9172f64034c61362ca69fbe3f26b64ca1cbbf1ba6185bb3d0e2c7e21b5c2ce0663915a2341be766e269bf2bcfb246b4cb515626fdff9f1bf962887b44daedc51b990748ef0406023b1bd240f6186bb423151bcd3aecf86a99e2194161ffffffd8669f1bc86bbba5ee768d969fbf47423530b1ff57ee42bbb941454c77f6510a9f1b9604e0be468649883104811713a50b3047dbabdab7aedd1b4c9dbd04087845d55e6de7e8b41b91f5fe36d82e1a00ffd8669f1baa02871e4a6661149f4bb4530371fe3a0756fa12b01b63cbce4693f0efbeffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 4, 33, 253, 220, 206, 161, 100, 175, 159, 216, 102, 159, 27, 61, 56, 15, 63, 180, 209, 22, + 197, 128, 255, 27, 21, 187, 207, 217, 23, 47, 100, 3, 76, 97, 54, 44, 166, 159, 190, 63, 38, 182, 76, 161, 203, + 191, 27, 166, 24, 91, 179, 208, 226, 199, 226, 27, 92, 44, 224, 102, 57, 21, 162, 52, 27, 231, 102, 226, 105, 191, + 43, 207, 178, 70, 180, 203, 81, 86, 38, 253, 255, 159, 27, 249, 98, 136, 123, 68, 218, 237, 197, 27, 153, 7, 72, + 239, 4, 6, 2, 59, 27, 210, 64, 246, 24, 107, 180, 35, 21, 27, 205, 58, 236, 248, 106, 153, 226, 25, 65, 97, 255, + 255, 255, 216, 102, 159, 27, 200, 107, 187, 165, 238, 118, 141, 150, 159, 191, 71, 66, 53, 48, 177, 255, 87, 238, + 66, 187, 185, 65, 69, 76, 119, 246, 81, 10, 159, 27, 150, 4, 224, 190, 70, 134, 73, 136, 49, 4, 129, 23, 19, 165, + 11, 48, 71, 219, 171, 218, 183, 174, 221, 27, 76, 157, 189, 4, 8, 120, 69, 213, 94, 109, 231, 232, 180, 27, 145, + 245, 254, 54, 216, 46, 26, 0, 255, 216, 102, 159, 27, 170, 2, 135, 30, 74, 102, 97, 20, 159, 75, 180, 83, 3, 113, + 254, 58, 7, 86, 250, 18, 176, 27, 99, 203, 206, 70, 147, 240, 239, 190, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2991, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18260653440841749419" + } + } + ] + }, + "cborHex": "9f061bfd6adf8e2be313abff", + "cborBytes": [159, 6, 27, 253, 106, 223, 142, 43, 227, 19, 171, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2992, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10930654153196144444" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13610398718926543159" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7fffa0512e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22cede5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5148316432980923079" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b3d381e2baee2b498" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17642584419850008287" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "09ab22d74bacd806" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11510870700950755169" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3490580499496058879" + } + }, + { + "_tag": "ByteArray", + "bytearray": "60b0a9f99630" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b97b17c0a0be7873c80ffd8669f1bbce1d9861d0c593780ff457fffa0512ebf4422cede5c1b47727e84d32252c7499b3d381e2baee2b4981bf4d70d0e310036dfff9f4809ab22d74bacd8061b9fbed3ea519f17611b307108786c5e3fff4660b0a9f99630ffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 151, 177, 124, 10, 11, 231, 135, 60, 128, 255, 216, 102, 159, 27, 188, 225, 217, 134, + 29, 12, 89, 55, 128, 255, 69, 127, 255, 160, 81, 46, 191, 68, 34, 206, 222, 92, 27, 71, 114, 126, 132, 211, 34, + 82, 199, 73, 155, 61, 56, 30, 43, 174, 226, 180, 152, 27, 244, 215, 13, 14, 49, 0, 54, 223, 255, 159, 72, 9, 171, + 34, 215, 75, 172, 216, 6, 27, 159, 190, 211, 234, 81, 159, 23, 97, 27, 48, 113, 8, 120, 108, 94, 63, 255, 70, 96, + 176, 169, 249, 150, 48, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2993, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8857083162621410667" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b7aeaae35a6247d6b80ffff", + "cborBytes": [159, 216, 102, 159, 27, 122, 234, 174, 53, 166, 36, 125, 107, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2994, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcd322" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8c805e91452" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1090500246659312136" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15408325124363085419" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16529154910383177665" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2809202980901249128" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ca94e57" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1672282346308666722" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4ee3f1fe3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12180639206399067947" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5083b25027" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e36d8bc30d33998d652a3b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d9c9d8d5bc3ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7038123324553594574" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8895757bf872" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8867228687907541280" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf43dcd32246c8c805e91452ff1b0f223c32559aaa08d8669f1bd5d55e105563666b9fbf1be5635ad0d6caffc11b26fc4b3a32966068441ca94e571b173523ef0fe2856245b4ee3f1fe31ba90a52d28a9cc72bffffff455083b25027bf41114be36d8bc30d33998d652a3b473d9c9d8d5bc3ae1b61ac6fdfc56886ce468895757bf8721b7b0eb982d4e1d120ffff", + "cborBytes": [ + 159, 191, 67, 220, 211, 34, 70, 200, 200, 5, 233, 20, 82, 255, 27, 15, 34, 60, 50, 85, 154, 170, 8, 216, 102, 159, + 27, 213, 213, 94, 16, 85, 99, 102, 107, 159, 191, 27, 229, 99, 90, 208, 214, 202, 255, 193, 27, 38, 252, 75, 58, + 50, 150, 96, 104, 68, 28, 169, 78, 87, 27, 23, 53, 35, 239, 15, 226, 133, 98, 69, 180, 238, 63, 31, 227, 27, 169, + 10, 82, 210, 138, 156, 199, 43, 255, 255, 255, 69, 80, 131, 178, 80, 39, 191, 65, 17, 75, 227, 109, 139, 195, 13, + 51, 153, 141, 101, 42, 59, 71, 61, 156, 157, 141, 91, 195, 174, 27, 97, 172, 111, 223, 197, 104, 134, 206, 70, + 136, 149, 117, 123, 248, 114, 27, 123, 14, 185, 130, 212, 225, 209, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2995, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b87f72086500d3ad" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c1d79fdd" + }, + { + "_tag": "ByteArray", + "bytearray": "c073b20c06d53a962b3325" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17408182297380785994" + } + }, + { + "_tag": "ByteArray", + "bytearray": "afe631a99dec745807" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "60222f7fcb3abe86" + } + ] + } + ] + }, + "cborHex": "9f9f48b87f72086500d3ad9f44c1d79fdd4bc073b20c06d53a962b33251bf196499124a00f4a49afe631a99dec745807ffa04860222f7fcb3abe86ffff", + "cborBytes": [ + 159, 159, 72, 184, 127, 114, 8, 101, 0, 211, 173, 159, 68, 193, 215, 159, 221, 75, 192, 115, 178, 12, 6, 213, 58, + 150, 43, 51, 37, 27, 241, 150, 73, 145, 36, 160, 15, 74, 73, 175, 230, 49, 169, 157, 236, 116, 88, 7, 255, 160, + 72, 96, 34, 47, 127, 203, 58, 190, 134, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2996, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "32489e4c824ff2d9746425" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebb27f20" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39ae19" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "379649e724c67b76b8bfb9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e419cab05abcd7d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cac2d6b4e6c35a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5a8982e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4168221201851488150" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efbb45658def03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4129353673950800299" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4b32489e4c824ff2d974642544ebb27f204339ae194b379649e724c67b76b8bfb948e419cab05abcd7d0488cac2d6b4e6c35a244e5a8982e1b39d87f19519c179647efbb45658def031b394e6949c7caa9abffff", + "cborBytes": [ + 159, 191, 75, 50, 72, 158, 76, 130, 79, 242, 217, 116, 100, 37, 68, 235, 178, 127, 32, 67, 57, 174, 25, 75, 55, + 150, 73, 231, 36, 198, 123, 118, 184, 191, 185, 72, 228, 25, 202, 176, 90, 188, 215, 208, 72, 140, 172, 45, 107, + 78, 108, 53, 162, 68, 229, 168, 152, 46, 27, 57, 216, 127, 25, 81, 156, 23, 150, 71, 239, 187, 69, 101, 141, 239, + 3, 27, 57, 78, 105, 73, 199, 202, 169, 171, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2997, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "145840909141806411" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ee42d41e19b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "990613978685139630" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "924b93" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5309701115201250529" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12666044616350496208" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8206497139915485636" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18078944559874577519" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11452178339698267109" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17193831063245712823" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cd54" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6167cc231611e030" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14322398611293058310" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "61" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7212948171217679048" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b02062188bf1e0d4b464ee42d41e19b1b0dbf5e2a45106aae43924b931b49afd9084310e4e11bafc6d47892d1f5d01b71e355ab3aebf1c41bfae5504a754e146f1b9eee4f86122353e51bee9cc24154d66db7ff410f9f9f42cd54ff9f486167cc231611e030ffd8669f1bc6c361a755abb5069f41611b64198a2558bbb2c8ffffffff", + "cborBytes": [ + 159, 191, 27, 2, 6, 33, 136, 191, 30, 13, 75, 70, 78, 228, 45, 65, 225, 155, 27, 13, 191, 94, 42, 69, 16, 106, + 174, 67, 146, 75, 147, 27, 73, 175, 217, 8, 67, 16, 228, 225, 27, 175, 198, 212, 120, 146, 209, 245, 208, 27, 113, + 227, 85, 171, 58, 235, 241, 196, 27, 250, 229, 80, 74, 117, 78, 20, 111, 27, 158, 238, 79, 134, 18, 35, 83, 229, + 27, 238, 156, 194, 65, 84, 214, 109, 183, 255, 65, 15, 159, 159, 66, 205, 84, 255, 159, 72, 97, 103, 204, 35, 22, + 17, 224, 48, 255, 216, 102, 159, 27, 198, 195, 97, 167, 85, 171, 181, 6, 159, 65, 97, 27, 100, 25, 138, 37, 88, + 187, 178, 200, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2998, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7472946453188158762" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b0c221c220d21ef8b06ecf" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4ce94b2069585a20ec24" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14580464585163677029" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b67b53d34afcba52a9f4bb0c221c220d21ef8b06ecf9f4a4ce94b2069585a20ec241bca58374a22d81d65ffffff", + "cborBytes": [ + 159, 27, 103, 181, 61, 52, 175, 203, 165, 42, 159, 75, 176, 194, 33, 194, 32, 210, 30, 248, 176, 110, 207, 159, + 74, 76, 233, 75, 32, 105, 88, 90, 32, 236, 36, 27, 202, 88, 55, 74, 34, 216, 29, 101, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 2999, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "50062f39c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "01" + } + ] + }, + "cborHex": "9fbf4550062f39c60bff4101ff", + "cborBytes": [159, 191, 69, 80, 6, 47, 57, 198, 11, 255, 65, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3000, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11019691864259342854" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5086a6e70f6d2b68fd2776" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9537038098429599923" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6df501e572171c0d5d5272" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "87f25df8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "87eb491e792db6" + }, + { + "_tag": "ByteArray", + "bytearray": "90fe518da9b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2032096351879082746" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12771403045360893862" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5994131704619113152" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18432564635971807230" + } + }, + { + "_tag": "ByteArray", + "bytearray": "68b1b06676b2" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3953559916365587452" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "183cbb52" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16708230274598505465" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "926902950657476384" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7eb823b2f06bf7e518" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b98edcf5d9f70b2069f9f4b5086a6e70f6d2b68fd27761b845a5d9f024360b34b6df501e572171c0d5d5272ff4487f25df89f4787eb491e792db64690fe518da9b81b1c3374dd931eb2fa1bb13d23676a13ffa6ffd8669f1b532f6f06eeba9ac09f1bffcd9fe06286e7fe4668b1b06676b2ffffbf1b36ddddcc0d31a3fc44183cbb521be7df8ee926df0bf91b0cdd05529b334720ffffff9f9f497eb823b2f06bf7e518ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 152, 237, 207, 93, 159, 112, 178, 6, 159, 159, 75, 80, 134, 166, 231, 15, 109, 43, 104, + 253, 39, 118, 27, 132, 90, 93, 159, 2, 67, 96, 179, 75, 109, 245, 1, 229, 114, 23, 28, 13, 93, 82, 114, 255, 68, + 135, 242, 93, 248, 159, 71, 135, 235, 73, 30, 121, 45, 182, 70, 144, 254, 81, 141, 169, 184, 27, 28, 51, 116, 221, + 147, 30, 178, 250, 27, 177, 61, 35, 103, 106, 19, 255, 166, 255, 216, 102, 159, 27, 83, 47, 111, 6, 238, 186, 154, + 192, 159, 27, 255, 205, 159, 224, 98, 134, 231, 254, 70, 104, 177, 176, 102, 118, 178, 255, 255, 191, 27, 54, 221, + 221, 204, 13, 49, 163, 252, 68, 24, 60, 187, 82, 27, 231, 223, 142, 233, 38, 223, 11, 249, 27, 12, 221, 5, 82, + 155, 51, 71, 32, 255, 255, 255, 159, 159, 73, 126, 184, 35, 178, 240, 107, 247, 229, 24, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3001, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1561317770616837716" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb3f945df9" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6954038911767705827" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "713f2d5709" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18028805049346793600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b147fdf19af" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13329286666778904748" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "44b5317eefb5aebe" + }, + { + "_tag": "ByteArray", + "bytearray": "50" + }, + { + "_tag": "ByteArray", + "bytearray": "91bf7f14574593" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5949522734900143126" + } + }, + { + "_tag": "ByteArray", + "bytearray": "86f4e2e9edf0353c" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1b15aaea3d7b1f165445cb3f945df980bf1b6081b58bd22878e345713f2d57091bfa332eabf315a080468b147fdf19afffd8669f1bb8fb239a12b508ac9f4844b5317eefb5aebe41504791bf7f145745931b5290f367ccd564164886f4e2e9edf0353cffffffff", + "cborBytes": [ + 159, 159, 27, 21, 170, 234, 61, 123, 31, 22, 84, 69, 203, 63, 148, 93, 249, 128, 191, 27, 96, 129, 181, 139, 210, + 40, 120, 227, 69, 113, 63, 45, 87, 9, 27, 250, 51, 46, 171, 243, 21, 160, 128, 70, 139, 20, 127, 223, 25, 175, + 255, 216, 102, 159, 27, 184, 251, 35, 154, 18, 181, 8, 172, 159, 72, 68, 181, 49, 126, 239, 181, 174, 190, 65, 80, + 71, 145, 191, 127, 20, 87, 69, 147, 27, 82, 144, 243, 103, 204, 213, 100, 22, 72, 134, 244, 226, 233, 237, 240, + 53, 60, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3002, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12654465281127452899" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17888121471283664035" + } + } + ] + }, + "cborHex": "9fd8669f1baf9db120801d90e39f80ffff801bf83f5fb3eae694a3ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 175, 157, 177, 32, 128, 29, 144, 227, 159, 128, 255, 255, 128, 27, 248, 63, 95, 179, 234, + 230, 148, 163, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3003, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "139137685871951683" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1943d69f662a60772dd88" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2119438202392294870" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48e2e31ccc2c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3572872384650135620" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6937bdae8d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9174551924758636727" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7be68a1b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9436321027726573372" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10116723667146639907" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a66e6ec71996e8ad" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12761334961255345752" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9789359387776846326" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f41c4d8669f1bfffffffffffffff89fbf1b01ee50fcf5447f434be1943d69f662a60772dd881b1d69c1d0d8fc35d64648e2e31ccc2c1b3195648102dfc844456937bdae8d1b7f528e5de09d68b7447be68a1b1b82f48bfa9c30ff3c41ab1b8c65d29317100a2348a66e6ec71996e8adffd8669f1bb1195e88e965ee589f051b87daca7f371309f6ffffffff9fa0ff1bffffffffffffffed80ff", + "cborBytes": [ + 159, 65, 196, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 191, 27, 1, 238, 80, 252, 245, 68, + 127, 67, 75, 225, 148, 61, 105, 246, 98, 166, 7, 114, 221, 136, 27, 29, 105, 193, 208, 216, 252, 53, 214, 70, 72, + 226, 227, 28, 204, 44, 27, 49, 149, 100, 129, 2, 223, 200, 68, 69, 105, 55, 189, 174, 141, 27, 127, 82, 142, 93, + 224, 157, 104, 183, 68, 123, 230, 138, 27, 27, 130, 244, 139, 250, 156, 48, 255, 60, 65, 171, 27, 140, 101, 210, + 147, 23, 16, 10, 35, 72, 166, 110, 110, 199, 25, 150, 232, 173, 255, 216, 102, 159, 27, 177, 25, 94, 136, 233, + 101, 238, 88, 159, 5, 27, 135, 218, 202, 127, 55, 19, 9, 246, 255, 255, 255, 255, 159, 160, 255, 27, 255, 255, + 255, 255, 255, 255, 255, 237, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3004, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9219863616119438807" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24a76ddd9c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "044bbc5e1f65" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67715a59" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14106130018502167254" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14383943139776537590" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5076997303382418012" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c843" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17885397173991947135" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1e9b65" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1310582957752945155" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10900751384950511286" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ba831f2609987073604e65" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4250150378763438017" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2404911198277520231" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "515353930728770544" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7146d8ea6a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7714179119599376941" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fbf1b7ff3891c2458fdd74524a76ddd9c46044bbc5e1f654467715a59ffff1bc3c30a83ac4bcad6d8669f1bc79e081383cc23f69f1b46751e25f9b9a25c9f42c8431bf835b1f80690bb7f431e9b651b123020419d8b8a031b97473fa144d296b6ff4bba831f2609987073604e65ffff80bf1b3afb9140502fc7c11b215ff5fe39b0cb67410a1b0726e7ab66b08bf0457146d8ea6a1b6b0e4509ad74da2dffff", + "cborBytes": [ + 159, 159, 191, 27, 127, 243, 137, 28, 36, 88, 253, 215, 69, 36, 167, 109, 221, 156, 70, 4, 75, 188, 94, 31, 101, + 68, 103, 113, 90, 89, 255, 255, 27, 195, 195, 10, 131, 172, 75, 202, 214, 216, 102, 159, 27, 199, 158, 8, 19, 131, + 204, 35, 246, 159, 27, 70, 117, 30, 37, 249, 185, 162, 92, 159, 66, 200, 67, 27, 248, 53, 177, 248, 6, 144, 187, + 127, 67, 30, 155, 101, 27, 18, 48, 32, 65, 157, 139, 138, 3, 27, 151, 71, 63, 161, 68, 210, 150, 182, 255, 75, + 186, 131, 31, 38, 9, 152, 112, 115, 96, 78, 101, 255, 255, 128, 191, 27, 58, 251, 145, 64, 80, 47, 199, 193, 27, + 33, 95, 245, 254, 57, 176, 203, 103, 65, 10, 27, 7, 38, 231, 171, 102, 176, 139, 240, 69, 113, 70, 216, 234, 106, + 27, 107, 14, 69, 9, 173, 116, 218, 45, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3005, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "796363638717898270" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8240936956888512445" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3461203634691686845" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17178000428813925987" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8461956799814335829" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9842621795287859969" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9500384542419857060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8928895939752773368" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9572166188127774837" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "502bb022edf7f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14605116040453917279" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15718201279552613613" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b0b0d408295d15e1e1b725db07ffbba77bd1b3008aa5e1516c1bd1bee64846086f63e631b756ee8e045a27d551b8898045fd6a683011b83d82567f88c2ea41b7be9cf8cc56446f81b84d72a6ebe5c687547502bb022edf7f81bcaafcba8569d8a5f1bda2244c8ffd2ecedffff", + "cborBytes": [ + 159, 191, 27, 11, 13, 64, 130, 149, 209, 94, 30, 27, 114, 93, 176, 127, 251, 186, 119, 189, 27, 48, 8, 170, 94, + 21, 22, 193, 189, 27, 238, 100, 132, 96, 134, 246, 62, 99, 27, 117, 110, 232, 224, 69, 162, 125, 85, 27, 136, 152, + 4, 95, 214, 166, 131, 1, 27, 131, 216, 37, 103, 248, 140, 46, 164, 27, 123, 233, 207, 140, 197, 100, 70, 248, 27, + 132, 215, 42, 110, 190, 92, 104, 117, 71, 80, 43, 176, 34, 237, 247, 248, 27, 202, 175, 203, 168, 86, 157, 138, + 95, 27, 218, 34, 68, 200, 255, 210, 236, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3006, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "687242" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4471827340212011626" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "281436cb1c7a38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e5be95212df022800" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49ba6c29755f36" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11640194670684025146" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "737140" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13328704683336653008" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86d79006bd4afd986395" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b1e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2cbfe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bcd0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c039c8691b598aaf95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5d511" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05aab2e431da2322b8" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "294842475350499274" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11d2231e2fc0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df81a67e30c55c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b0cfe060cd73a4c1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5837d9e483d57bb6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79b3492944" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11585850528278806606" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c24a7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7175384b4e62f169f5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9182d03093567bcf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1474456195163095827" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c7eeba28248" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12427196745374424638" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5462887843905735306" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1654e9fafe0b305ea4f536" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8549400901040204683" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "46485367447652915" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f2ae0a22" + } + ] + } + ] + } + ] + }, + "cborHex": "9f4368724280d8669f1b3e0f1f45ee37826a9fbf47281436cb1c7a38498e5be95212df0228004749ba6c29755f361ba18a47616e84313a437371401bb8f9124a7e5dd8d04a86d79006bd4afd986395420b1e43b2cbfe42bcd049c039c8691b598aaf9543f5d511ff4905aab2e431da2322b8ffffd8669f1b04177dab4ff69fca9fbf4611d2231e2fc047df81a67e30c55c495b0cfe060cd73a4c1b485837d9e483d57bb64579b34929441ba0c935abc6d4804e438c24a7497175384b4e62f169f5489182d03093567bcf1b14765218f5920313469c7eeba282481bac76459909eede3eff9f1b4bd0138ce7cd0a8a4b1654e9fafe0b305ea4f5361b76a592d2a4e7eb8b1b00a5263205f88a3344f2ae0a22ffffffff", + "cborBytes": [ + 159, 67, 104, 114, 66, 128, 216, 102, 159, 27, 62, 15, 31, 69, 238, 55, 130, 106, 159, 191, 71, 40, 20, 54, 203, + 28, 122, 56, 73, 142, 91, 233, 82, 18, 223, 2, 40, 0, 71, 73, 186, 108, 41, 117, 95, 54, 27, 161, 138, 71, 97, + 110, 132, 49, 58, 67, 115, 113, 64, 27, 184, 249, 18, 74, 126, 93, 216, 208, 74, 134, 215, 144, 6, 189, 74, 253, + 152, 99, 149, 66, 11, 30, 67, 178, 203, 254, 66, 188, 208, 73, 192, 57, 200, 105, 27, 89, 138, 175, 149, 67, 245, + 213, 17, 255, 73, 5, 170, 178, 228, 49, 218, 35, 34, 184, 255, 255, 216, 102, 159, 27, 4, 23, 125, 171, 79, 246, + 159, 202, 159, 191, 70, 17, 210, 35, 30, 47, 192, 71, 223, 129, 166, 126, 48, 197, 92, 73, 91, 12, 254, 6, 12, + 215, 58, 76, 27, 72, 88, 55, 217, 228, 131, 213, 123, 182, 69, 121, 179, 73, 41, 68, 27, 160, 201, 53, 171, 198, + 212, 128, 78, 67, 140, 36, 167, 73, 113, 117, 56, 75, 78, 98, 241, 105, 245, 72, 145, 130, 208, 48, 147, 86, 123, + 207, 27, 20, 118, 82, 24, 245, 146, 3, 19, 70, 156, 126, 235, 162, 130, 72, 27, 172, 118, 69, 153, 9, 238, 222, + 62, 255, 159, 27, 75, 208, 19, 140, 231, 205, 10, 138, 75, 22, 84, 233, 250, 254, 11, 48, 94, 164, 245, 54, 27, + 118, 165, 146, 210, 164, 231, 235, 139, 27, 0, 165, 38, 50, 5, 248, 138, 51, 68, 242, 174, 10, 34, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3007, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "321c42c2b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "147302345648352796" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37f7ddadf7eae70adcdf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9c398a74d40dc72" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b612ad08" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ccbdaceff1204ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7809748479939650317" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a7d8d5d20ff6ac3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7351350467510879335" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66b4c06d84bb0d2e72" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec3f255d9f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea4ef334a71768" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2208131306808643847" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf45321c42c2b81b020b52b3f2f3ae1c4a37f7ddadf7eae70adcdf48e9c398a74d40dc72414144b612ad084190419bffbf480ccbdaceff1204ed1b6c61ccdd5bf3230d485a7d8d5d20ff6ac31b66053e4d136344674966b4c06d84bb0d2e7245ec3f255d9f47ea4ef334a717681b1ea4dbb96fbf9107ffff", + "cborBytes": [ + 159, 191, 69, 50, 28, 66, 194, 184, 27, 2, 11, 82, 179, 242, 243, 174, 28, 74, 55, 247, 221, 173, 247, 234, 231, + 10, 220, 223, 72, 233, 195, 152, 167, 77, 64, 220, 114, 65, 65, 68, 182, 18, 173, 8, 65, 144, 65, 155, 255, 191, + 72, 12, 203, 218, 206, 255, 18, 4, 237, 27, 108, 97, 204, 221, 91, 243, 35, 13, 72, 90, 125, 141, 93, 32, 255, + 106, 195, 27, 102, 5, 62, 77, 19, 99, 68, 103, 73, 102, 180, 192, 109, 132, 187, 13, 46, 114, 69, 236, 63, 37, 93, + 159, 71, 234, 78, 243, 52, 167, 23, 104, 27, 30, 164, 219, 185, 111, 191, 145, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3008, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4946172659345257277" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f0d8cfd64a56ac0fccf3017" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5754781246950087319" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5714842992122811658" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12761796484100348032" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "254013713169169134" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15086884706338950186" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6dda2af4738569e87c6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15314985628779699873" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7366882354311814540" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17672710983444940782" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d87a7379" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf1b44a455d3e605f33d4c8f0d8cfd64a56ac0fccf30171b4fdd170dd08a1a971b4f4f336c3c9c550a1bb11b024992a158801b038670205586baee1bd15f61b4e89b4c2a4ab6dda2af4738569e87c61bd489c2497fa05ea11b663c6c7846d95d8c1bf5421501626147ee44d87a7379ff80ff", + "cborBytes": [ + 159, 191, 27, 68, 164, 85, 211, 230, 5, 243, 61, 76, 143, 13, 140, 253, 100, 165, 106, 192, 252, 207, 48, 23, 27, + 79, 221, 23, 13, 208, 138, 26, 151, 27, 79, 79, 51, 108, 60, 156, 85, 10, 27, 177, 27, 2, 73, 146, 161, 88, 128, + 27, 3, 134, 112, 32, 85, 134, 186, 238, 27, 209, 95, 97, 180, 232, 155, 76, 42, 74, 182, 221, 162, 175, 71, 56, + 86, 158, 135, 198, 27, 212, 137, 194, 73, 127, 160, 94, 161, 27, 102, 60, 108, 120, 70, 217, 93, 140, 27, 245, 66, + 21, 1, 98, 97, 71, 238, 68, 216, 122, 115, 121, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3009, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ea1d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17314712188005956895" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "788864859055498473" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1404274960603722664" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4931856035122453769" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1509058030111376637" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d1406554" + }, + { + "_tag": "ByteArray", + "bytearray": "b4b2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16095312140894881881" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3971930528870148264" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5068624803416325002" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12087030422214357435" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4979" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10048173672472599832" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "527541044739243803" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d353fb3f838dfd59dd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "572074614818550009" + } + }, + { + "_tag": "ByteArray", + "bytearray": "659724bd9cd57b92e756d4d4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9773485245760623396" + } + }, + { + "_tag": "ByteArray", + "bytearray": "54e01b57fab5946c9709b2" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13732421034075625734" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2cdb714789d644ece71e6512" + }, + { + "_tag": "ByteArray", + "bytearray": "1dc34a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13828089469243132218" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17176130353840438092" + } + } + ] + } + ] + }, + "cborHex": "9f42ea1d1bf04a36ff6a38bd1f9fd8669f1b0af29c68e3caa4e980ffd8669f1b137cfca2f1c2b3a89f1b447178ef10d71d091b14f14048763d44fd44d140655442b4b21bdf5e091d93124859ffffbf1b371f21c595d5a8a841be1b46575f676b5d3b8a1ba7bdc221116d31bb4249791b8b7248b7b5295d1842be781b075233c9001eff1bff9f49d353fb3f838dfd59dd1b07f06ad4c94730f94c659724bd9cd57b92e756d4d41b87a2650c831553244b54e01b57fab5946c9709b2ff1bbe935c2c4a2e1906ff809f9f4c2cdb714789d644ece71e6512431dc34a1bbfe73e1ba08e893aff1bee5ddf8dc476bb4cffff", + "cborBytes": [ + 159, 66, 234, 29, 27, 240, 74, 54, 255, 106, 56, 189, 31, 159, 216, 102, 159, 27, 10, 242, 156, 104, 227, 202, + 164, 233, 128, 255, 216, 102, 159, 27, 19, 124, 252, 162, 241, 194, 179, 168, 159, 27, 68, 113, 120, 239, 16, 215, + 29, 9, 27, 20, 241, 64, 72, 118, 61, 68, 253, 68, 209, 64, 101, 84, 66, 180, 178, 27, 223, 94, 9, 29, 147, 18, 72, + 89, 255, 255, 191, 27, 55, 31, 33, 197, 149, 213, 168, 168, 65, 190, 27, 70, 87, 95, 103, 107, 93, 59, 138, 27, + 167, 189, 194, 33, 17, 109, 49, 187, 66, 73, 121, 27, 139, 114, 72, 183, 181, 41, 93, 24, 66, 190, 120, 27, 7, 82, + 51, 201, 0, 30, 255, 27, 255, 159, 73, 211, 83, 251, 63, 131, 141, 253, 89, 221, 27, 7, 240, 106, 212, 201, 71, + 48, 249, 76, 101, 151, 36, 189, 156, 213, 123, 146, 231, 86, 212, 212, 27, 135, 162, 101, 12, 131, 21, 83, 36, 75, + 84, 224, 27, 87, 250, 181, 148, 108, 151, 9, 178, 255, 27, 190, 147, 92, 44, 74, 46, 25, 6, 255, 128, 159, 159, + 76, 44, 219, 113, 71, 137, 214, 68, 236, 231, 30, 101, 18, 67, 29, 195, 74, 27, 191, 231, 62, 27, 160, 142, 137, + 58, 255, 27, 238, 93, 223, 141, 196, 118, 187, 76, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3010, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11174070787470914915" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6939944826694481147" + } + } + ] + }, + "cborHex": "9f1b9b12462dae45f5631b604fa30cebef34fbff", + "cborBytes": [159, 27, 155, 18, 70, 45, 174, 69, 245, 99, 27, 96, 79, 163, 12, 235, 239, 52, 251, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3011, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17443187730171552409" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b4c80ef79f85ac298174cd" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16468298476263347157" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8289425625907172161" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c09d436f7904" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6176044039485098609" + } + }, + { + "_tag": "ByteArray", + "bytearray": "56f19471e6aba0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16026050722293578964" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14537996447981027320" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6921c7c255" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0134c936b053565a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b123" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9681700283099615916" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3b3cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a4129a3eb43b37cca70" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f1bf212a6d29753e299ff4bb4c80ef79f85ac298174cdffd8669f1be48b26361cc893d59fa01b7309f4b0003793419f46c09d436f7904ff9f1b55b5b754f2ad8a714756f19471e6aba01bde67f838e6b37cd4ffffff1bc9c156be6bccbff8bf456921c7c255480134c936b053565a42b1231b865c4f1c93f392ac43e3b3cf4a1a4129a3eb43b37cca70ffff", + "cborBytes": [ + 159, 159, 159, 27, 242, 18, 166, 210, 151, 83, 226, 153, 255, 75, 180, 200, 14, 247, 159, 133, 172, 41, 129, 116, + 205, 255, 216, 102, 159, 27, 228, 139, 38, 54, 28, 200, 147, 213, 159, 160, 27, 115, 9, 244, 176, 0, 55, 147, 65, + 159, 70, 192, 157, 67, 111, 121, 4, 255, 159, 27, 85, 181, 183, 84, 242, 173, 138, 113, 71, 86, 241, 148, 113, + 230, 171, 160, 27, 222, 103, 248, 56, 230, 179, 124, 212, 255, 255, 255, 27, 201, 193, 86, 190, 107, 204, 191, + 248, 191, 69, 105, 33, 199, 194, 85, 72, 1, 52, 201, 54, 176, 83, 86, 90, 66, 177, 35, 27, 134, 92, 79, 28, 147, + 243, 146, 172, 67, 227, 179, 207, 74, 26, 65, 41, 163, 235, 67, 179, 124, 202, 112, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3012, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2666529158590085632" + } + } + ] + }, + "cborHex": "9f1b25016a2450fbba00ff", + "cborBytes": [159, 27, 37, 1, 106, 36, 80, 251, 186, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3013, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5783775555121484154" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15365880748065543909" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15802870928448858719" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31b02972bcf8bc" + }, + { + "_tag": "ByteArray", + "bytearray": "3602cdc2dc2f0273253e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12328016237860534602" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1243274717830355651" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14080888905509473116" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7371258048422101378" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15013214225164089732" + } + }, + { + "_tag": "ByteArray", + "bytearray": "66bd4da8dfab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10112953467416292565" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "772644979495407140" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "107b465d05a02b10b89696c4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "093f3e101e4b92" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b504419393f9a917a9fd8669f1bd53e9320e175d6e59f1bdb4f1361d98aaa5f4731b02972bcf8bc4a3602cdc2dc2f0273253e1bab15e973a2ecb94affffffffd8669f1b1140ffc4ca809ac39f1bc3695ddb16a18b5ca0d8669f1b664bf823f3f041829f1bd059a6cb5bbf39844666bd4da8dfab1b8c586d990f672cd51b0ab8fc83e4500e24ffff4c107b465d05a02b10b89696c49f47093f3e101e4b92ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 80, 68, 25, 57, 63, 154, 145, 122, 159, 216, 102, 159, 27, 213, 62, 147, 32, 225, 117, + 214, 229, 159, 27, 219, 79, 19, 97, 217, 138, 170, 95, 71, 49, 176, 41, 114, 188, 248, 188, 74, 54, 2, 205, 194, + 220, 47, 2, 115, 37, 62, 27, 171, 21, 233, 115, 162, 236, 185, 74, 255, 255, 255, 255, 216, 102, 159, 27, 17, 64, + 255, 196, 202, 128, 154, 195, 159, 27, 195, 105, 93, 219, 22, 161, 139, 92, 160, 216, 102, 159, 27, 102, 75, 248, + 35, 243, 240, 65, 130, 159, 27, 208, 89, 166, 203, 91, 191, 57, 132, 70, 102, 189, 77, 168, 223, 171, 27, 140, 88, + 109, 153, 15, 103, 44, 213, 27, 10, 184, 252, 131, 228, 80, 14, 36, 255, 255, 76, 16, 123, 70, 93, 5, 160, 43, 16, + 184, 150, 150, 196, 159, 71, 9, 63, 62, 16, 30, 75, 146, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3014, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11241414689832150259" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46639499575967" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "98d8" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01a8e2691f23" + }, + { + "_tag": "ByteArray", + "bytearray": "06" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12543875697947678540" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1e2aa51a00238a54d" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b9c018719d04da4f347466394995759671bfffffffffffffffc1bffffffffffffffedff4298d8d8669f1bffffffffffffffed9f9f4601a8e2691f234106ffbf1bae14cc7caad3974c49d1e2aa51a00238a54dffffffff", + "cborBytes": [ + 159, 191, 27, 156, 1, 135, 25, 208, 77, 164, 243, 71, 70, 99, 148, 153, 87, 89, 103, 27, 255, 255, 255, 255, 255, + 255, 255, 252, 27, 255, 255, 255, 255, 255, 255, 255, 237, 255, 66, 152, 216, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 237, 159, 159, 70, 1, 168, 226, 105, 31, 35, 65, 6, 255, 191, 27, 174, 20, 204, 124, 170, 211, + 151, 76, 73, 209, 226, 170, 81, 160, 2, 56, 165, 77, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3015, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "29b11241" + } + ] + }, + "cborHex": "9f4429b11241ff", + "cborBytes": [159, 68, 41, 177, 18, 65, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3016, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2009935836469682268" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15195969965886849786" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "94e3bc1827" + }, + { + "_tag": "ByteArray", + "bytearray": "b7290012ba251b961ad628da" + }, + { + "_tag": "ByteArray", + "bytearray": "48119564" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9f413bd8669f1b1be4b9fe821a605c80ffd8669f1bd2e2ee2c1a30c2fa9f4594e3bc18274cb7290012ba251b961ad628da4448119564ffff80ff80ff", + "cborBytes": [ + 159, 159, 65, 59, 216, 102, 159, 27, 27, 228, 185, 254, 130, 26, 96, 92, 128, 255, 216, 102, 159, 27, 210, 226, + 238, 44, 26, 48, 194, 250, 159, 69, 148, 227, 188, 24, 39, 76, 183, 41, 0, 18, 186, 37, 27, 150, 26, 214, 40, 218, + 68, 72, 17, 149, 100, 255, 255, 128, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3017, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "042bb815c28bab887bcb" + }, + { + "_tag": "ByteArray", + "bytearray": "cd4d1705" + } + ] + }, + "cborHex": "9f4a042bb815c28bab887bcb44cd4d1705ff", + "cborBytes": [159, 74, 4, 43, 184, 21, 194, 139, 171, 136, 123, 203, 68, 205, 77, 23, 5, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3018, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13696458264112841659" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "691b2bab" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8660854320237129689" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "82975cf8762dd9" + }, + { + "_tag": "ByteArray", + "bytearray": "a0712cb757a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15768855905456461834" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6201923005247303849" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a2da01e961ee7f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12571491178885133193" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bbe1398396968c3bb9f44691b2baba0ffff9fd8669f1b7831891df9242fd99f4782975cf8762dd946a0712cb757a71bdad63ae6270d980a1b5611a81d3416b0a947a2da01e961ee7fffff1bae76e89ede67b389ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 190, 19, 152, 57, 105, 104, 195, 187, 159, 68, 105, 27, 43, 171, 160, 255, 255, 159, 216, + 102, 159, 27, 120, 49, 137, 29, 249, 36, 47, 217, 159, 71, 130, 151, 92, 248, 118, 45, 217, 70, 160, 113, 44, 183, + 87, 167, 27, 218, 214, 58, 230, 39, 13, 152, 10, 27, 86, 17, 168, 29, 52, 22, 176, 169, 71, 162, 218, 1, 233, 97, + 238, 127, 255, 255, 27, 174, 118, 232, 158, 222, 103, 179, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3019, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "224ce464c3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d13bfe9686d5fa8c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f3a0030ec8ffc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16329730248985778718" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13492609741150437092" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f27c83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00ce87" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3569145793629862919" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13374826927349129707" + } + }, + { + "_tag": "ByteArray", + "bytearray": "db6d30d7712f1b796015" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10602929084364664725" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11528353795751703610" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12437823738635213779" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed0a84" + }, + { + "_tag": "ByteArray", + "bytearray": "e411ca0969153ab61c1b4f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11551693340941394271" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10474183999551773864" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "71bfe02016a8db92ea4044b4" + }, + { + "_tag": "ByteArray", + "bytearray": "30765fadd2e3" + } + ] + } + ] + }, + "cborHex": "9f9fbf45224ce464c3490d13bfe9686d5fa8c9478f3a0030ec8ffc1be29edb2490bf9a1e41ac1bbb3f61129a3f3ee443f27c834300ce87ffd8669f1b318827306ce33c079f1bb99cee3a40f961eb4adb6d30d7712f1b7960151b93252bd35436af951b9ffcf0b288ce743affffd8669f1bac9c06cab845dbd39f43ed0a844be411ca0969153ab61c1b4fffff1ba04fdbe3dd0ea15fff80d8669f1b915bc6da5d5d1ca89f4c71bfe02016a8db92ea4044b44630765fadd2e3ffffff", + "cborBytes": [ + 159, 159, 191, 69, 34, 76, 228, 100, 195, 73, 13, 19, 191, 233, 104, 109, 95, 168, 201, 71, 143, 58, 0, 48, 236, + 143, 252, 27, 226, 158, 219, 36, 144, 191, 154, 30, 65, 172, 27, 187, 63, 97, 18, 154, 63, 62, 228, 67, 242, 124, + 131, 67, 0, 206, 135, 255, 216, 102, 159, 27, 49, 136, 39, 48, 108, 227, 60, 7, 159, 27, 185, 156, 238, 58, 64, + 249, 97, 235, 74, 219, 109, 48, 215, 113, 47, 27, 121, 96, 21, 27, 147, 37, 43, 211, 84, 54, 175, 149, 27, 159, + 252, 240, 178, 136, 206, 116, 58, 255, 255, 216, 102, 159, 27, 172, 156, 6, 202, 184, 69, 219, 211, 159, 67, 237, + 10, 132, 75, 228, 17, 202, 9, 105, 21, 58, 182, 28, 27, 79, 255, 255, 27, 160, 79, 219, 227, 221, 14, 161, 95, + 255, 128, 216, 102, 159, 27, 145, 91, 198, 218, 93, 93, 28, 168, 159, 76, 113, 191, 224, 32, 22, 168, 219, 146, + 234, 64, 68, 180, 70, 48, 118, 95, 173, 210, 227, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3020, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17304710397349390558" + } + } + ] + }, + "cborHex": "9f1bf026ae6c0f04e8deff", + "cborBytes": [159, 27, 240, 38, 174, 108, 15, 4, 232, 222, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3021, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18146599993231616915" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ab13582d38fdf6923ebc7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2473985383236099288" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f2da2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7558061002800122267" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b1ce1750aea381a459dc2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5322288279800122009" + } + } + } + ] + } + ] + }, + "cborHex": "9f1bfbd5ac8c8dad2b93418cbf4b0ab13582d38fdf6923ebc71b22555c992b4bdcd8432f2da21b68e3a0700ea2499b4b7b1ce1750aea381a459dc21b49dc90fde5b60a99ffff", + "cborBytes": [ + 159, 27, 251, 213, 172, 140, 141, 173, 43, 147, 65, 140, 191, 75, 10, 177, 53, 130, 211, 143, 223, 105, 35, 235, + 199, 27, 34, 85, 92, 153, 43, 75, 220, 216, 67, 47, 45, 162, 27, 104, 227, 160, 112, 14, 162, 73, 155, 75, 123, + 28, 225, 117, 10, 234, 56, 26, 69, 157, 194, 27, 73, 220, 144, 253, 229, 182, 10, 153, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3022, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "125929965345047741" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18229709057937998283" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4231018449331894493" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17204997840562864855" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "2a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9521379931129680810" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a7ee0a0a92aeb4f13c99780b" + }, + { + "_tag": "ByteArray", + "bytearray": "c7c6" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f91b6ca852" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "434940008707379378" + } + }, + { + "_tag": "ByteArray", + "bytearray": "26c7f6f704aa89" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3319397267321893713" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fbac59bdc30839" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "908361599017278249" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4446518449128152112" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1652906137695209293" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10400050635664123735" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1330174580773033727" + } + }, + { + "_tag": "ByteArray", + "bytearray": "274c" + }, + { + "_tag": "ByteArray", + "bytearray": "897728700003281e4eaddf" + }, + { + "_tag": "ByteArray", + "bytearray": "4c72f644fcd9bb0b0e9e1e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9559000892301477385" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16354134130764148929" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7e27682e3f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2e8a95dc63c8" + } + ] + }, + "cborHex": "9fd8669f1b01bf64a2e2f804bd9f1bfcfcefcd951d81cb1b3ab798dcde8d38ddd8669f1beec46e61481cc2d780ff412ad8669f1b8422bc99d68493aa9f4ca7ee0a0a92aeb4f13c99780b42c7c6ffffffff45f91b6ca8529f809f1b060937a22d9bd0b24726c7f6f704aa89ffd8669f1b2e10de3a4b1fb3519f47fbac59bdc308391b0c9b260fc507db291b3db534f887811c30ffff1b16f04d5ff062c74dd8669f1b905466f388d5e75780ffff9f9f1b1275babbd03b16ff42274c4b897728700003281e4eaddf4b4c72f644fcd9bb0b0e9e1e1b84a864aa71458609ffd8669f1be2f58e581149f0c180ff457e27682e3fff462e8a95dc63c8ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 1, 191, 100, 162, 226, 248, 4, 189, 159, 27, 252, 252, 239, 205, 149, 29, 129, 203, 27, + 58, 183, 152, 220, 222, 141, 56, 221, 216, 102, 159, 27, 238, 196, 110, 97, 72, 28, 194, 215, 128, 255, 65, 42, + 216, 102, 159, 27, 132, 34, 188, 153, 214, 132, 147, 170, 159, 76, 167, 238, 10, 10, 146, 174, 180, 241, 60, 153, + 120, 11, 66, 199, 198, 255, 255, 255, 255, 69, 249, 27, 108, 168, 82, 159, 128, 159, 27, 6, 9, 55, 162, 45, 155, + 208, 178, 71, 38, 199, 246, 247, 4, 170, 137, 255, 216, 102, 159, 27, 46, 16, 222, 58, 75, 31, 179, 81, 159, 71, + 251, 172, 89, 189, 195, 8, 57, 27, 12, 155, 38, 15, 197, 7, 219, 41, 27, 61, 181, 52, 248, 135, 129, 28, 48, 255, + 255, 27, 22, 240, 77, 95, 240, 98, 199, 77, 216, 102, 159, 27, 144, 84, 102, 243, 136, 213, 231, 87, 128, 255, + 255, 159, 159, 27, 18, 117, 186, 187, 208, 59, 22, 255, 66, 39, 76, 75, 137, 119, 40, 112, 0, 3, 40, 30, 78, 173, + 223, 75, 76, 114, 246, 68, 252, 217, 187, 11, 14, 158, 30, 27, 132, 168, 100, 170, 113, 69, 134, 9, 255, 216, 102, + 159, 27, 226, 245, 142, 88, 17, 73, 240, 193, 128, 255, 69, 126, 39, 104, 46, 63, 255, 70, 46, 138, 149, 220, 99, + 200, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3023, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6062485820536828363" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7953120984770706419" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9874162670442299530" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2931061855587454080" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15483068257910331831" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6066748845272382222" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "85d847dea2" + }, + { + "_tag": "ByteArray", + "bytearray": "d1ea9466f3275f40119c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1357952273833679362" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3f44ed0ad290e54" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12219636777285152293" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12252317191951147932" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c60e4ab29" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14813514626430560097" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9558517676320382397" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15038582592559726225" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a81233b4fe5" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6498792872071052442" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11295506325280168783" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12114816508921714210" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70a2" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cc3342c368507c406d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9660664719524137420" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a65656f511f7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2dbf69eccb525d8ce349" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88c152c442b4196271700f88" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9684" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3760445640333873942" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dece922e16" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2082057273128242445" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8481280948870879443" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b542246bbbcf0b1cb1b6e5f2965f0f67bf31b890812a21a22c08a1b28ad393a6cfccc801bd6dee88c39df19b71b54316bee87f8bb0eff9f4585d847dea24ad1ea9466f3275f40119cff9fbf1b12d86a65f7ca5a0248f3f44ed0ad290e541ba994dee812616e2541681baa08f9920da8e39c458c60e4ab291bcd942d113f7267611b84a6ad2ef45e5dbd1bd0b3c730aae53e91464a81233b4fe5ffbf1b5a3059af60a2bc9a1b9cc1b3281c809b4f1ba820796d855116224270a2ff49cc3342c368507c406d1b86119360c56289ccff46a65656f511f7bf4a2dbf69eccb525d8ce3494c88c152c442b4196271700f884296841b342fc962dd44531645dece922e161b1ce4f40f06d3cd0d41df1b75b3901655bc98d3ffff", + "cborBytes": [ + 159, 191, 27, 84, 34, 70, 187, 188, 240, 177, 203, 27, 110, 95, 41, 101, 240, 246, 123, 243, 27, 137, 8, 18, 162, + 26, 34, 192, 138, 27, 40, 173, 57, 58, 108, 252, 204, 128, 27, 214, 222, 232, 140, 57, 223, 25, 183, 27, 84, 49, + 107, 238, 135, 248, 187, 14, 255, 159, 69, 133, 216, 71, 222, 162, 74, 209, 234, 148, 102, 243, 39, 95, 64, 17, + 156, 255, 159, 191, 27, 18, 216, 106, 101, 247, 202, 90, 2, 72, 243, 244, 78, 208, 173, 41, 14, 84, 27, 169, 148, + 222, 232, 18, 97, 110, 37, 65, 104, 27, 170, 8, 249, 146, 13, 168, 227, 156, 69, 140, 96, 228, 171, 41, 27, 205, + 148, 45, 17, 63, 114, 103, 97, 27, 132, 166, 173, 46, 244, 94, 93, 189, 27, 208, 179, 199, 48, 170, 229, 62, 145, + 70, 74, 129, 35, 59, 79, 229, 255, 191, 27, 90, 48, 89, 175, 96, 162, 188, 154, 27, 156, 193, 179, 40, 28, 128, + 155, 79, 27, 168, 32, 121, 109, 133, 81, 22, 34, 66, 112, 162, 255, 73, 204, 51, 66, 195, 104, 80, 124, 64, 109, + 27, 134, 17, 147, 96, 197, 98, 137, 204, 255, 70, 166, 86, 86, 245, 17, 247, 191, 74, 45, 191, 105, 236, 203, 82, + 93, 140, 227, 73, 76, 136, 193, 82, 196, 66, 180, 25, 98, 113, 112, 15, 136, 66, 150, 132, 27, 52, 47, 201, 98, + 221, 68, 83, 22, 69, 222, 206, 146, 46, 22, 27, 28, 228, 244, 15, 6, 211, 205, 13, 65, 223, 27, 117, 179, 144, 22, + 85, 188, 152, 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3024, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6476392368884631299" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15583308465228810406" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16215676403606308082" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9521859089287575109" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e9bf84b51ec0d77af" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2480314935226010734" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11060006063260354894" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6831600634123702852" + } + } + ] + }, + "cborHex": "9fbf1b59e0c48bcd6b47031bd843087c374d08a61be109a7c655a344f21b842470648a4f7645490e9bf84b51ec0d77af1b226bd94ad53e0c6effbf424f271b997d08ea864cc94eff1b5eceb894d446d244ff", + "cborBytes": [ + 159, 191, 27, 89, 224, 196, 139, 205, 107, 71, 3, 27, 216, 67, 8, 124, 55, 77, 8, 166, 27, 225, 9, 167, 198, 85, + 163, 68, 242, 27, 132, 36, 112, 100, 138, 79, 118, 69, 73, 14, 155, 248, 75, 81, 236, 13, 119, 175, 27, 34, 107, + 217, 74, 213, 62, 12, 110, 255, 191, 66, 79, 39, 27, 153, 125, 8, 234, 134, 76, 201, 78, 255, 27, 94, 206, 184, + 148, 212, 70, 210, 68, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3025, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f40301b422020133" + } + ] + }, + "cborHex": "9f48f40301b422020133ff", + "cborBytes": [159, 72, 244, 3, 1, 180, 34, 2, 1, 51, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3026, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2f72e27eb2cfeae3043a" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8735989081953075532" + }, + "fields": [] + } + ] + }, + "cborHex": "9f4a2f72e27eb2cfeae3043a801bfffffffffffffff6d8669f1b793c77c8e781014c80ffff", + "cborBytes": [ + 159, 74, 47, 114, 226, 126, 178, 207, 234, 227, 4, 58, 128, 27, 255, 255, 255, 255, 255, 255, 255, 246, 216, 102, + 159, 27, 121, 60, 119, 200, 231, 129, 1, 76, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3027, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3ca32f26c49b" + } + ] + }, + "cborHex": "9f0d463ca32f26c49bff", + "cborBytes": [159, 13, 70, 60, 163, 47, 38, 196, 155, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3028, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2238030448131417656" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "033643429e45f3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2429193279147124924" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebde68c3975aeae8fa7f4c38" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7746232227918502666" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0490509e7a592a47da18" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13816356857630614832" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06da5df5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17870952239109397670" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5007040886141049223" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17079468845688464535" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12790146212741591448" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9956563703141200827" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "10142a27140d5e90f93b98" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7371716566472340030" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fe09" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12672697516048452455" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b79049a4756d84" + }, + { + "_tag": "ByteArray", + "bytearray": "c6d84ecd8212afa92f6b9d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12644911099125358911" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6123162680698667226" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3a8acb8d4aa5288311" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "199668081643237091" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b1f0f14d5c161a63847033643429e45f31b21b63a6abe54a8bc4cebde68c3975aeae8fa7f4c381b6b80252b84c3db0a4a0490509e7a592a47da181bbfbd8f5c1d1ae5304406da5df51bf80260608a165ca61b457c9528524b5987ffd8669f1bed06766c9b9ca49780ff9f1bb17fba3723c53198d8669f1b8a2cd1ef954773bb9f4b10142a27140d5e90f93b981b664d99290172323e42fe09ffffd8669f1bafde773f7e0b0b679f47b79049a4756d844bc6d84ecd8212afa92f6b9d1baf7bbfa627c2e13f1b54f9d80424f900da493a8acb8d4aa5288311ffff1b02c55d0ff7542ee3ffff", + "cborBytes": [ + 159, 191, 27, 31, 15, 20, 213, 193, 97, 166, 56, 71, 3, 54, 67, 66, 158, 69, 243, 27, 33, 182, 58, 106, 190, 84, + 168, 188, 76, 235, 222, 104, 195, 151, 90, 234, 232, 250, 127, 76, 56, 27, 107, 128, 37, 43, 132, 195, 219, 10, + 74, 4, 144, 80, 158, 122, 89, 42, 71, 218, 24, 27, 191, 189, 143, 92, 29, 26, 229, 48, 68, 6, 218, 93, 245, 27, + 248, 2, 96, 96, 138, 22, 92, 166, 27, 69, 124, 149, 40, 82, 75, 89, 135, 255, 216, 102, 159, 27, 237, 6, 118, 108, + 155, 156, 164, 151, 128, 255, 159, 27, 177, 127, 186, 55, 35, 197, 49, 152, 216, 102, 159, 27, 138, 44, 209, 239, + 149, 71, 115, 187, 159, 75, 16, 20, 42, 39, 20, 13, 94, 144, 249, 59, 152, 27, 102, 77, 153, 41, 1, 114, 50, 62, + 66, 254, 9, 255, 255, 216, 102, 159, 27, 175, 222, 119, 63, 126, 11, 11, 103, 159, 71, 183, 144, 73, 164, 117, + 109, 132, 75, 198, 216, 78, 205, 130, 18, 175, 169, 47, 107, 157, 27, 175, 123, 191, 166, 39, 194, 225, 63, 27, + 84, 249, 216, 4, 36, 249, 0, 218, 73, 58, 138, 203, 141, 74, 165, 40, 131, 17, 255, 255, 27, 2, 197, 93, 15, 247, + 84, 46, 227, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3029, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d88f119b05f23da0f4" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9883184377064889480" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17908583293965428880" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13746437235789970269" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d15da55ec649cc47" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8648966101084686037" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11062915915295234597" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13650153843138181581" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4524309407490285175" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6713853405269057435" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5523987889945534751" + } + }, + { + "_tag": "ByteArray", + "bytearray": "19eefcbc69ddb857a465" + }, + { + "_tag": "ByteArray", + "bytearray": "f40e06d7" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7328a2be347786ecdad4" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3783e02a24342b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11388273513919966273" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16316014897121940324" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ced30e6f750" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ece7cb5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80e86a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5128587639145855371" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2560485386440814074" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9df4a1" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aa5365" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1751487559678742430" + } + }, + { + "_tag": "ByteArray", + "bytearray": "814edd70abf2e1" + } + ] + } + ] + } + ] + }, + "cborHex": "9f49d88f119b05f23da0f4d8669f1b89281fd3dca49c889fbf1bf888119f434de8901bbec527d58e76bb5dff9f48d15da55ec649cc471b78074cd8418c46d5ffd8669f1b99875f693f301a259f1bbd6f169945af39cd1b3ec9936f6f6a9e77ffffffff9f9f1b5d2c6619bf1bdf9b1b4ca925b7f3c3611f4a19eefcbc69ddb857a46544f40e06d7ffff9f4a7328a2be347786ecdad4ff9f473783e02a24342bbf1b9e0b466c5a306c411be26e211a5cef5364465ced30e6f750440ece7cb54380e86a1b472c67490ebf798bffd8669f1b2388abe497622dfa9f439df4a1ffff9f43aa53651b184e88a7df2acf9e47814edd70abf2e1ffffff", + "cborBytes": [ + 159, 73, 216, 143, 17, 155, 5, 242, 61, 160, 244, 216, 102, 159, 27, 137, 40, 31, 211, 220, 164, 156, 136, 159, + 191, 27, 248, 136, 17, 159, 67, 77, 232, 144, 27, 190, 197, 39, 213, 142, 118, 187, 93, 255, 159, 72, 209, 93, + 165, 94, 198, 73, 204, 71, 27, 120, 7, 76, 216, 65, 140, 70, 213, 255, 216, 102, 159, 27, 153, 135, 95, 105, 63, + 48, 26, 37, 159, 27, 189, 111, 22, 153, 69, 175, 57, 205, 27, 62, 201, 147, 111, 111, 106, 158, 119, 255, 255, + 255, 255, 159, 159, 27, 93, 44, 102, 25, 191, 27, 223, 155, 27, 76, 169, 37, 183, 243, 195, 97, 31, 74, 25, 238, + 252, 188, 105, 221, 184, 87, 164, 101, 68, 244, 14, 6, 215, 255, 255, 159, 74, 115, 40, 162, 190, 52, 119, 134, + 236, 218, 212, 255, 159, 71, 55, 131, 224, 42, 36, 52, 43, 191, 27, 158, 11, 70, 108, 90, 48, 108, 65, 27, 226, + 110, 33, 26, 92, 239, 83, 100, 70, 92, 237, 48, 230, 247, 80, 68, 14, 206, 124, 181, 67, 128, 232, 106, 27, 71, + 44, 103, 73, 14, 191, 121, 139, 255, 216, 102, 159, 27, 35, 136, 171, 228, 151, 98, 45, 250, 159, 67, 157, 244, + 161, 255, 255, 159, 67, 170, 83, 101, 27, 24, 78, 136, 167, 223, 42, 207, 158, 71, 129, 78, 221, 112, 171, 242, + 225, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3030, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16940592998895081251" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11947906806804988650" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15665757401943621714" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0213d8d1bc043d" + } + ] + }, + "cborHex": "9f1beb191393cf9c57231ba5cf7df0251542ea1bd967f35b384bc052a0470213d8d1bc043dff", + "cborBytes": [ + 159, 27, 235, 25, 19, 147, 207, 156, 87, 35, 27, 165, 207, 125, 240, 37, 21, 66, 234, 27, 217, 103, 243, 91, 56, + 75, 192, 82, 160, 71, 2, 19, 216, 209, 188, 4, 61, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3031, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1402271855308358702" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5096355558139398892" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5483864717486954948" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1242437883730756490" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b641a977b8c98de" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb1e787921191462" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b1375ded2a62ec42e1b46b9e460e3fc8aec1b4c1a99e7e21b99c41b113e06ac2b42838affbf480b641a977b8c98de48eb1e787921191462ffff", + "cborBytes": [ + 159, 191, 27, 19, 117, 222, 210, 166, 46, 196, 46, 27, 70, 185, 228, 96, 227, 252, 138, 236, 27, 76, 26, 153, 231, + 226, 27, 153, 196, 27, 17, 62, 6, 172, 43, 66, 131, 138, 255, 191, 72, 11, 100, 26, 151, 123, 140, 152, 222, 72, + 235, 30, 120, 121, 33, 25, 20, 98, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3032, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13136989145770368935" + } + }, + { + "_tag": "ByteArray", + "bytearray": "149c451b6c7385" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7656438205711058725" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04ac" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "823537083950966705" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5966821220820313360" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14543477330168190098" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5255ba7f2f60afbb452e5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11708196827057613080" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12441380428357010124" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2790481786173898581" + } + } + ] + }, + "cborHex": "9f9f9f1bb64ff6067bce1fa747149c451b6c73851b6a4121fb882307254204acffffd8669f1b0b6dca9d544227b19fd8669f1b52ce68496941e5109f1bc9d4cf93bf9f1492ffffbf4b5255ba7f2f60afbb452e5c1ba27bdefb451fe918ffd8669f1baca8a99513b782cc80ffffff1b26b9c8666117bf55ff", + "cborBytes": [ + 159, 159, 159, 27, 182, 79, 246, 6, 123, 206, 31, 167, 71, 20, 156, 69, 27, 108, 115, 133, 27, 106, 65, 33, 251, + 136, 35, 7, 37, 66, 4, 172, 255, 255, 216, 102, 159, 27, 11, 109, 202, 157, 84, 66, 39, 177, 159, 216, 102, 159, + 27, 82, 206, 104, 73, 105, 65, 229, 16, 159, 27, 201, 212, 207, 147, 191, 159, 20, 146, 255, 255, 191, 75, 82, 85, + 186, 127, 47, 96, 175, 187, 69, 46, 92, 27, 162, 123, 222, 251, 69, 31, 233, 24, 255, 216, 102, 159, 27, 172, 168, + 169, 149, 19, 183, 130, 204, 128, 255, 255, 255, 27, 38, 185, 200, 102, 97, 23, 191, 85, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3033, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5801537528554650994" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17278005261618296257" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe585d541cb592bd3f725b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "607207732644621769" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14575147392242318086" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8441534831664667934" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f2510" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1272ba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d2e0b6e4129dc173d8d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17398586861413273516" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "711ed065cda054c1b14e9c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dad1c285ccdf4086" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb95515c71f7ef8b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8478c99037524b2cb919c53" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11486488977723621253" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ef5ce55e9782" + }, + { + "_tag": "ByteArray", + "bytearray": "fca8e76292a85be7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10811967192901437358" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0433ee" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "872b9f40" + }, + { + "_tag": "ByteArray", + "bytearray": "eb3bb3cc464fe1" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "190660591807152089" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "168ebac0fa72d5e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "389283743309644326" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "649c80fa5952" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16196870420597045221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d8033bbf685" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17913885478145013172" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e36a0825a8ed7c72d" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9f80bf1b508333a4f498fd721befc7ce3e1e16b5c14bfe585d541cb592bd3f725b1b086d3c3739272dc9ffff9fd8669f1bca455354af907b069f1b75265b3448759d1effffbf430f2510431272ba4a1d2e0b6e4129dc173d8d1bf17432919c510fac4b711ed065cda054c1b14e9c48dad1c285ccdf408648fb95515c71f7ef8b4cd8478c99037524b2cb919c53ff9f1b9f6834de01a7ff8546ef5ce55e978248fca8e76292a85be71b960bd2e0b01147ae430433eeff44872b9f4047eb3bb3cc464fe1ffbf1b02a55ccc4f54bfd948168ebac0fa72d5e91b0567038084ce422646649c80fa59521be0c6d7d534b7f7e5460d8033bbf6851bf89ae7ee37dcb5b4495e36a0825a8ed7c72dff80ff", + "cborBytes": [ + 159, 159, 128, 191, 27, 80, 131, 51, 164, 244, 152, 253, 114, 27, 239, 199, 206, 62, 30, 22, 181, 193, 75, 254, + 88, 93, 84, 28, 181, 146, 189, 63, 114, 91, 27, 8, 109, 60, 55, 57, 39, 45, 201, 255, 255, 159, 216, 102, 159, 27, + 202, 69, 83, 84, 175, 144, 123, 6, 159, 27, 117, 38, 91, 52, 72, 117, 157, 30, 255, 255, 191, 67, 15, 37, 16, 67, + 18, 114, 186, 74, 29, 46, 11, 110, 65, 41, 220, 23, 61, 141, 27, 241, 116, 50, 145, 156, 81, 15, 172, 75, 113, 30, + 208, 101, 205, 160, 84, 193, 177, 78, 156, 72, 218, 209, 194, 133, 204, 223, 64, 134, 72, 251, 149, 81, 92, 113, + 247, 239, 139, 76, 216, 71, 140, 153, 3, 117, 36, 178, 203, 145, 156, 83, 255, 159, 27, 159, 104, 52, 222, 1, 167, + 255, 133, 70, 239, 92, 229, 94, 151, 130, 72, 252, 168, 231, 98, 146, 168, 91, 231, 27, 150, 11, 210, 224, 176, + 17, 71, 174, 67, 4, 51, 238, 255, 68, 135, 43, 159, 64, 71, 235, 59, 179, 204, 70, 79, 225, 255, 191, 27, 2, 165, + 92, 204, 79, 84, 191, 217, 72, 22, 142, 186, 192, 250, 114, 213, 233, 27, 5, 103, 3, 128, 132, 206, 66, 38, 70, + 100, 156, 128, 250, 89, 82, 27, 224, 198, 215, 213, 52, 183, 247, 229, 70, 13, 128, 51, 187, 246, 133, 27, 248, + 154, 231, 238, 55, 220, 181, 180, 73, 94, 54, 160, 130, 90, 142, 215, 199, 45, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3034, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e9383d30fe17" + } + ] + } + ] + }, + "cborHex": "9f9f46e9383d30fe17ffff", + "cborBytes": [159, 159, 70, 233, 56, 61, 48, 254, 23, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3035, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6e3985" + } + ] + }, + "cborHex": "9f436e3985ff", + "cborBytes": [159, 67, 110, 57, 133, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3036, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10478534259278156677" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bb8e1f9f6b023c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee9c75e60f895b916b5552ac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69d05475e8589569d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb73cb7586dcdd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7ab023ad948" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e09" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f975b72ed3e4eb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b916b3b64230913859fa0bf484bb8e1f9f6b023c14cee9c75e60f895b916b5552ac4969d05475e8589569d547bb73cb7586dcdd46d7ab023ad948425e0947f975b72ed3e4eb41f9ffffff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 145, 107, 59, 100, 35, 9, 19, 133, 159, 160, 191, 72, 75, 184, 225, 249, 246, 176, 35, + 193, 76, 238, 156, 117, 230, 15, 137, 91, 145, 107, 85, 82, 172, 73, 105, 208, 84, 117, 232, 88, 149, 105, 213, + 71, 187, 115, 203, 117, 134, 220, 221, 70, 215, 171, 2, 58, 217, 72, 66, 94, 9, 71, 249, 117, 183, 46, 211, 228, + 235, 65, 249, 255, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3037, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18057511327424537261" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2412207014148434495" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14004584703620798248" + } + } + } + ] + } + ] + }, + "cborHex": "9fa01bfa992ae126bb62adbf1b2179e17fbb05ea3f1bc25a4796a62fd728ffff", + "cborBytes": [ + 159, 160, 27, 250, 153, 42, 225, 38, 187, 98, 173, 191, 27, 33, 121, 225, 127, 187, 5, 234, 63, 27, 194, 90, 71, + 150, 166, 47, 215, 40, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3038, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3955321161278379927" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbaa430307f806d9a501" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "43" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14450655489988649168" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b36e41fa3d6955797bf4afbaa430307f806d9a50107ff41439f9f1bc88b0a9af45260d00bffffff", + "cborBytes": [ + 159, 27, 54, 228, 31, 163, 214, 149, 87, 151, 191, 74, 251, 170, 67, 3, 7, 248, 6, 217, 165, 1, 7, 255, 65, 67, + 159, 159, 27, 200, 139, 10, 154, 244, 82, 96, 208, 11, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3039, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2574786204820915738" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3960658923696716988" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17165f5f1c83" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4076205809162448640" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16399132765872508817" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7549616827978289934" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c42ea4f09ab714f91533" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9612934912659354517" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b22ea60f7851d" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "07fa" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc02059c9b01a803020c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4d76184e9d" + } + ] + }, + "cborHex": "9fbf1b23bb7a6956ed461a41c71b36f7164e7f6c7cbc4617165f5f1c831b389197963682ef001be3956c5d3e4ccf911b68c5a08165f5130e4ac42ea4f09ab714f915331b8568015f1e02f395475b22ea60f7851dffd90500804207fad9050a9f4afc02059c9b01a803020cff454d76184e9dff", + "cborBytes": [ + 159, 191, 27, 35, 187, 122, 105, 86, 237, 70, 26, 65, 199, 27, 54, 247, 22, 78, 127, 108, 124, 188, 70, 23, 22, + 95, 95, 28, 131, 27, 56, 145, 151, 150, 54, 130, 239, 0, 27, 227, 149, 108, 93, 62, 76, 207, 145, 27, 104, 197, + 160, 129, 101, 245, 19, 14, 74, 196, 46, 164, 240, 154, 183, 20, 249, 21, 51, 27, 133, 104, 1, 95, 30, 2, 243, + 149, 71, 91, 34, 234, 96, 247, 133, 29, 255, 217, 5, 0, 128, 66, 7, 250, 217, 5, 10, 159, 74, 252, 2, 5, 156, 155, + 1, 168, 3, 2, 12, 255, 69, 77, 118, 24, 78, 157, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3040, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13201765065135313383" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ed7c64" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8956384982937354521" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5849875894610296129" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1bb73617617b8d51e743ed7c641b7c4b78b0639fc119d8669f1b512eef21d65dfd4180ffff", + "cborBytes": [ + 159, 27, 183, 54, 23, 97, 123, 141, 81, 231, 67, 237, 124, 100, 27, 124, 75, 120, 176, 99, 159, 193, 25, 216, 102, + 159, 27, 81, 46, 239, 33, 214, 93, 253, 65, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3041, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6153267761226029852" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5219834862924681221" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa1d0152" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "426d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8cec691315540856c3d51" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64304d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c841c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb2fcf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee69b70f2e10b9f2f9f4ddd7" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + "cborHex": "9f9fd8669f1b5564cc6d6bbd9b1c80ff01ff1b48709426e6d3500544fa1d0152bf42426d4bb8cec691315540856c3d514364304d431c841c43eb2fcf4cee69b70f2e10b9f2f9f4ddd7ff0eff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 85, 100, 204, 109, 107, 189, 155, 28, 128, 255, 1, 255, 27, 72, 112, 148, 38, 230, + 211, 80, 5, 68, 250, 29, 1, 82, 191, 66, 66, 109, 75, 184, 206, 198, 145, 49, 85, 64, 133, 108, 61, 81, 67, 100, + 48, 77, 67, 28, 132, 28, 67, 235, 47, 207, 76, 238, 105, 183, 15, 46, 16, 185, 242, 249, 244, 221, 215, 255, 14, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3042, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e001f29486ec0d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17094343873350111940" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12492659649162723003" + } + } + ] + }, + "cborHex": "9fbf47e001f29486ec0d1bed3b4f2edf6892c4ff1bad5ed7c310333ebbff", + "cborBytes": [ + 159, 191, 71, 224, 1, 242, 148, 134, 236, 13, 27, 237, 59, 79, 46, 223, 104, 146, 196, 255, 27, 173, 94, 215, 195, + 16, 51, 62, 187, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3043, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6040995645171414848" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8998060770446101956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1863575202876979344" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a8a58be620818" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11628076391100601895" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2abe9ab3d9dcb312ab73" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c16ee0373559dacaa926" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17531021661650075760" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14550933827368499613" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4489393164719634328" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d061bd9" + }, + { + "_tag": "ByteArray", + "bytearray": "cf5ee9a3757fa7" + }, + { + "_tag": "ByteArray", + "bytearray": "02c281" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4516980366976170286" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b53d5ed88601fb740bf1b7cdf8898d1d14dc41b19dcbfc5fbb57890471a8a58be6208181ba15f39de98a856274a2abe9ab3d9dcb312ab734ac16ee0373559dacaa926ffd8669f1bf34ab3516454c0709fd8669f1bc9ef4d38ca83b99d80ffd8669f1b3e4d874c282e37989f442d061bd947cf5ee9a3757fa74302c2811b3eaf89b63707392effffffffff", + "cborBytes": [ + 159, 27, 83, 213, 237, 136, 96, 31, 183, 64, 191, 27, 124, 223, 136, 152, 209, 209, 77, 196, 27, 25, 220, 191, + 197, 251, 181, 120, 144, 71, 26, 138, 88, 190, 98, 8, 24, 27, 161, 95, 57, 222, 152, 168, 86, 39, 74, 42, 190, + 154, 179, 217, 220, 179, 18, 171, 115, 74, 193, 110, 224, 55, 53, 89, 218, 202, 169, 38, 255, 216, 102, 159, 27, + 243, 74, 179, 81, 100, 84, 192, 112, 159, 216, 102, 159, 27, 201, 239, 77, 56, 202, 131, 185, 157, 128, 255, 216, + 102, 159, 27, 62, 77, 135, 76, 40, 46, 55, 152, 159, 68, 45, 6, 27, 217, 71, 207, 94, 233, 163, 117, 127, 167, 67, + 2, 194, 129, 27, 62, 175, 137, 182, 55, 7, 57, 46, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3044, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7860410609304512528" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20250275237727577" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2498910557479458507" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13441433931738869993" + } + }, + { + "_tag": "ByteArray", + "bytearray": "622b52557cc848" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3043853049117502889" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10717587616452174241" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9758563152367652322" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14387422319844586550" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4321133646954829204" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2327410271030080704" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "66c1" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b6d15c9cd8c4ea8109f1b0047f1849e260d59d8669f1b22ade9e9880956cb9f1bba8990f1f52d70e947622b52557cc8481b2a3df0389d236da91b94bc852727c1e1a11b876d617be7170de2ffffd8669f1bc7aa645f3fdcf4369f1b3bf7c02855bb15941b204c9f4f7357f4c0ffff809f4266c1ffffff", + "cborBytes": [ + 159, 27, 109, 21, 201, 205, 140, 78, 168, 16, 159, 27, 0, 71, 241, 132, 158, 38, 13, 89, 216, 102, 159, 27, 34, + 173, 233, 233, 136, 9, 86, 203, 159, 27, 186, 137, 144, 241, 245, 45, 112, 233, 71, 98, 43, 82, 85, 124, 200, 72, + 27, 42, 61, 240, 56, 157, 35, 109, 169, 27, 148, 188, 133, 39, 39, 193, 225, 161, 27, 135, 109, 97, 123, 231, 23, + 13, 226, 255, 255, 216, 102, 159, 27, 199, 170, 100, 95, 63, 220, 244, 54, 159, 27, 59, 247, 192, 40, 85, 187, 21, + 148, 27, 32, 76, 159, 79, 115, 87, 244, 192, 255, 255, 128, 159, 66, 102, 193, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3045, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4540489472687487124" + } + }, + { + "_tag": "ByteArray", + "bytearray": "395d020004ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5e0a7a1f97fcb331528debc" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c5e8" + }, + { + "_tag": "ByteArray", + "bytearray": "c15cf91fcb1dac1ef5c43eb4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd905069f80d8669f1bffffffffffffffeb9f1b3f030f1e6df0389446395d020004ca1bfffffffffffffff41bfffffffffffffff94cf5e0a7a1f97fcb331528debcffffd87980ff42c5e84cc15cf91fcb1dac1ef5c43eb40280ff", + "cborBytes": [ + 159, 217, 5, 6, 159, 128, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 27, 63, 3, 15, 30, 109, + 240, 56, 148, 70, 57, 93, 2, 0, 4, 202, 27, 255, 255, 255, 255, 255, 255, 255, 244, 27, 255, 255, 255, 255, 255, + 255, 255, 249, 76, 245, 224, 167, 161, 249, 127, 203, 51, 21, 40, 222, 188, 255, 255, 216, 121, 128, 255, 66, 197, + 232, 76, 193, 92, 249, 31, 203, 29, 172, 30, 245, 196, 62, 180, 2, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3046, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa0103f84888fc48f20605" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4458746830819683429" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5432" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8963597980024093640" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "875428" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17916866722786164646" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf210b5bc2cff9a06d1a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12645010543736321258" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc93e0b2c84f6818" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1587312931931701354" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebe621e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1816498511448696520" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ee8d3e5894219a4b4f47" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fbf094bfa0103f84888fc48f206051b3de0a69e8267ec650eff9fbf4254321b7c6518df24bebbc8438754281bf8a57f5b53afbfa64abf210b5bc2cff9a06d1a1baf7c1a17e878f4ea48cc93e0b2c84f68181b160744b39f2c406a44ebe621e61b19357fc59dece6c8ff4aee8d3e5894219a4b4f47a0ffff", + "cborBytes": [ + 159, 191, 9, 75, 250, 1, 3, 248, 72, 136, 252, 72, 242, 6, 5, 27, 61, 224, 166, 158, 130, 103, 236, 101, 14, 255, + 159, 191, 66, 84, 50, 27, 124, 101, 24, 223, 36, 190, 187, 200, 67, 135, 84, 40, 27, 248, 165, 127, 91, 83, 175, + 191, 166, 74, 191, 33, 11, 91, 194, 207, 249, 160, 109, 26, 27, 175, 124, 26, 23, 232, 120, 244, 234, 72, 204, + 147, 224, 178, 200, 79, 104, 24, 27, 22, 7, 68, 179, 159, 44, 64, 106, 68, 235, 230, 33, 230, 27, 25, 53, 127, + 197, 157, 236, 230, 200, 255, 74, 238, 141, 62, 88, 148, 33, 154, 75, 79, 71, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3047, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "375afd08a8d0f63ea6c6efef" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2766115733154822801" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16764369052059234497" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14178972214300429514" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7359228699056777736" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14615418744460062245" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11179487530695761081" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e6832efb7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d388" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "722a5448" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2359ee582bd264ca69dbbc41" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7aabe08a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17460416532918765228" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6500051846700619752" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11967950187345138603" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06fcfcb35badfadcdf2b26" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17239889008258670495" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13392790229261222249" + } + } + } + ] + } + ] + }, + "cborHex": "9f4c375afd08a8d0f63ea6c6efefbf1b2663379a924ffa911be8a700d4d78af0c11bc4c5d41b0182ccca1b66213b82cc23aa081bcad465e98b20ae251b9b2584ad7e079cb9ffbf452e6832efb742d38844722a54484c2359ee582bd264ca69dbbc41447aabe08a1bf24fdc53d2fb06acff1b5a34d2b7403657e8bf1ba616b3495646d3ab4b06fcfcb35badfadcdf2b261bef4063b6506b5f9f1bb9dcbfc166700169ffff", + "cborBytes": [ + 159, 76, 55, 90, 253, 8, 168, 208, 246, 62, 166, 198, 239, 239, 191, 27, 38, 99, 55, 154, 146, 79, 250, 145, 27, + 232, 167, 0, 212, 215, 138, 240, 193, 27, 196, 197, 212, 27, 1, 130, 204, 202, 27, 102, 33, 59, 130, 204, 35, 170, + 8, 27, 202, 212, 101, 233, 139, 32, 174, 37, 27, 155, 37, 132, 173, 126, 7, 156, 185, 255, 191, 69, 46, 104, 50, + 239, 183, 66, 211, 136, 68, 114, 42, 84, 72, 76, 35, 89, 238, 88, 43, 210, 100, 202, 105, 219, 188, 65, 68, 122, + 171, 224, 138, 27, 242, 79, 220, 83, 210, 251, 6, 172, 255, 27, 90, 52, 210, 183, 64, 54, 87, 232, 191, 27, 166, + 22, 179, 73, 86, 70, 211, 171, 75, 6, 252, 252, 179, 91, 173, 250, 220, 223, 43, 38, 27, 239, 64, 99, 182, 80, + 107, 95, 159, 27, 185, 220, 191, 193, 102, 112, 1, 105, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3048, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6929928449881273527" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2a34ccbd3e944b29" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6750288268577945020" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f11120" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16032521785981596808" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17995093040743331153" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14963863252570652432" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ca" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3511661097104356961" + } + } + ] + }, + "cborHex": "9f9f9f1b602c0d35760bf4b7482a34ccbd3e944b291b5dadd76a6c1335bc43f11120ffd8669f1bde7ef59ed324f4889f1bf9bb69c7499c35511bcfaa5258a4febf10ffff41caff1b30bbed298876b661ff", + "cborBytes": [ + 159, 159, 159, 27, 96, 44, 13, 53, 118, 11, 244, 183, 72, 42, 52, 204, 189, 62, 148, 75, 41, 27, 93, 173, 215, + 106, 108, 19, 53, 188, 67, 241, 17, 32, 255, 216, 102, 159, 27, 222, 126, 245, 158, 211, 36, 244, 136, 159, 27, + 249, 187, 105, 199, 73, 156, 53, 81, 27, 207, 170, 82, 88, 164, 254, 191, 16, 255, 255, 65, 202, 255, 27, 48, 187, + 237, 41, 136, 118, 182, 97, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3049, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13190670291282983647" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e3b58e10fd15abccd2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1722284569863042834" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2367713919041681242" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2419307123896943642" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "387bcd8e393562efc637" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17707697209328115613" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8523633ef" + } + } + ] + } + ] + }, + "cborHex": "9f1bb70eacbe25387adf49e3b58e10fd15abccd2bf1b17e6c8b0f4d2b7121b20dbcf43c23a375a1b21931b02da73041a4a387bcd8e393562efc6371bf5be60cae02d9f9d45e8523633efffff", + "cborBytes": [ + 159, 27, 183, 14, 172, 190, 37, 56, 122, 223, 73, 227, 181, 142, 16, 253, 21, 171, 204, 210, 191, 27, 23, 230, + 200, 176, 244, 210, 183, 18, 27, 32, 219, 207, 67, 194, 58, 55, 90, 27, 33, 147, 27, 2, 218, 115, 4, 26, 74, 56, + 123, 205, 142, 57, 53, 98, 239, 198, 55, 27, 245, 190, 96, 202, 224, 45, 159, 157, 69, 232, 82, 54, 51, 239, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3050, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4206817897136708099" + } + }, + { + "_tag": "ByteArray", + "bytearray": "24" + }, + { + "_tag": "ByteArray", + "bytearray": "a675b2746861b2266fc9aa" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3943290308219869800" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51e4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16068761827246457778" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b601" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3882173075299501246" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cce5e548f778e37f079af8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4634833743174757973" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dea2cb85e5a69ce6fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5039941436886017327" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13489729581832284397" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7060502077879892832" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f9d44836121" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12052768915089666920" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "195dc6af" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14837741112545719398" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12151775309207672490" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b3a619e96b996da0341244ba675b2746861b2266fc9aabf1b36b961a493af9a684251e41bdeffb5bef561c3b242b601ffbf1b35e03fd7e5d004be4bcce5e548f778e37f079af81b40523cbba6ecee5549dea2cb85e5a69ce6fe1b45f17808ba5ce52f1bbb352595413128ed1b61fbf13b4ff03b60467f9d448361211ba74409784fca336844195dc6af1bcdea3eed9a7f34661ba8a3c742c7af96aaffff", + "cborBytes": [ + 159, 27, 58, 97, 158, 150, 185, 150, 218, 3, 65, 36, 75, 166, 117, 178, 116, 104, 97, 178, 38, 111, 201, 170, 191, + 27, 54, 185, 97, 164, 147, 175, 154, 104, 66, 81, 228, 27, 222, 255, 181, 190, 245, 97, 195, 178, 66, 182, 1, 255, + 191, 27, 53, 224, 63, 215, 229, 208, 4, 190, 75, 204, 229, 229, 72, 247, 120, 227, 127, 7, 154, 248, 27, 64, 82, + 60, 187, 166, 236, 238, 85, 73, 222, 162, 203, 133, 229, 166, 156, 230, 254, 27, 69, 241, 120, 8, 186, 92, 229, + 47, 27, 187, 53, 37, 149, 65, 49, 40, 237, 27, 97, 251, 241, 59, 79, 240, 59, 96, 70, 127, 157, 68, 131, 97, 33, + 27, 167, 68, 9, 120, 79, 202, 51, 104, 68, 25, 93, 198, 175, 27, 205, 234, 62, 237, 154, 127, 52, 102, 27, 168, + 163, 199, 66, 199, 175, 150, 170, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3051, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "212c1798" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9040368283541561004" + } + } + ] + }, + "cborHex": "9f44212c17981b7d75d70e5333deacff", + "cborBytes": [159, 68, 33, 44, 23, 152, 27, 125, 117, 215, 14, 83, 51, 222, 172, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3052, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7202000593264452370" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a06f805" + }, + { + "_tag": "ByteArray", + "bytearray": "0a4fb10b99bd0163d352c296" + } + ] + }, + "cborHex": "9f1b63f2a561b9ae231203448a06f8054c0a4fb10b99bd0163d352c296ff", + "cborBytes": [ + 159, 27, 99, 242, 165, 97, 185, 174, 35, 18, 3, 68, 138, 6, 248, 5, 76, 10, 79, 177, 11, 153, 189, 1, 99, 211, 82, + 194, 150, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3053, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f804f802fccbf9ed0c07fbee" + } + ] + }, + "cborHex": "9f4cf804f802fccbf9ed0c07fbeeff", + "cborBytes": [159, 76, 248, 4, 248, 2, 252, 203, 249, 237, 12, 7, 251, 238, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3054, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14971849024143027549" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "15640c08b21e8e484d247070" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7871147296616641502" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f74aebefe6cfe50c" + }, + { + "_tag": "ByteArray", + "bytearray": "9353f32104364b" + }, + { + "_tag": "ByteArray", + "bytearray": "f3160d2cbe4a5609d89e7c" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8962486734404200044" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9b9f904eb6aa2348801dc69b" + } + ] + }, + "cborHex": "9fd8669f1bcfc6b15cfad2ed5d9f4c15640c08b21e8e484d247070d8669f1b6d3beec35d9c73de9f48f74aebefe6cfe50c479353f32104364b4bf3160d2cbe4a5609d89e7cffff801b7c6126331c50266cffff4c9b9f904eb6aa2348801dc69bff", + "cborBytes": [ + 159, 216, 102, 159, 27, 207, 198, 177, 92, 250, 210, 237, 93, 159, 76, 21, 100, 12, 8, 178, 30, 142, 72, 77, 36, + 112, 112, 216, 102, 159, 27, 109, 59, 238, 195, 93, 156, 115, 222, 159, 72, 247, 74, 235, 239, 230, 207, 229, 12, + 71, 147, 83, 243, 33, 4, 54, 75, 75, 243, 22, 13, 44, 190, 74, 86, 9, 216, 158, 124, 255, 255, 128, 27, 124, 97, + 38, 51, 28, 80, 38, 108, 255, 255, 76, 155, 159, 144, 78, 182, 170, 35, 72, 128, 29, 198, 155, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3055, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3168170434934475066" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad24" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4505977758955686095" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "216fdbce42d7c976f7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6936441559752696363" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5b0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14615513149760772592" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6053974241475174878" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17269595065259993082" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "155f27a9a33d82e5c7f03634" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3018039387422276909" + } + } + ] + }, + "cborHex": "9fbf1b2bf79a39922a093a42ad241b3e8872e5e85d48cf49216fdbce42d7c976f71b604330d90650e22b42d5b01bcad4bbc5fd8a99f01b5404097f4e7e21de1befa9ed36afa927fa4c155f27a9a33d82e5c7f03634ff1b29e23ad525713d2dff", + "cborBytes": [ + 159, 191, 27, 43, 247, 154, 57, 146, 42, 9, 58, 66, 173, 36, 27, 62, 136, 114, 229, 232, 93, 72, 207, 73, 33, 111, + 219, 206, 66, 215, 201, 118, 247, 27, 96, 67, 48, 217, 6, 80, 226, 43, 66, 213, 176, 27, 202, 212, 187, 197, 253, + 138, 153, 240, 27, 84, 4, 9, 127, 78, 126, 33, 222, 27, 239, 169, 237, 54, 175, 169, 39, 250, 76, 21, 95, 39, 169, + 163, 61, 130, 229, 199, 240, 54, 52, 255, 27, 41, 226, 58, 213, 37, 113, 61, 45, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3056, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "00fcfdb2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c8" + }, + { + "_tag": "ByteArray", + "bytearray": "3c47" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4400fcfdb20c9fd8669f1bfffffffffffffff09f41c8423c4702ffffffff", + "cborBytes": [ + 159, 68, 0, 252, 253, 178, 12, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 65, 200, 66, + 60, 71, 2, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3057, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6b7fa5adaf32c6fbcb7257" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e11661e46ba202f99cd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12927135713663181023" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3463653075712342463" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a131d44cce8a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13234213724292884365" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10008054810248665866" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6173295638247867341" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18094075057675983916" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b6" + }, + { + "_tag": "ByteArray", + "bytearray": "d57887195fc72bea238d4d7e" + }, + { + "_tag": "ByteArray", + "bytearray": "b905fee441" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "776203634757691472" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3d002bd89a01df1015" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7079171876350748725" + } + } + ] + }, + "cborHex": "9f9f9f4b6b7fa5adaf32c6fbcb7257ffbf4a9e11661e46ba202f99cd4118ffffd8669f1bb3666970d028e0df9fd8669f1b30115e1f0305f9bf9f46a131d44cce8a1bb7a95f43ae13a78dffffffffd8669f1b8ae3c0d33182db0a9fd8669f1b55abf3aceb3b83cd80ff1bfb1b116600085c2c9f41b64cd57887195fc72bea238d4d7e45b905fee441ffd8669f1b0ac5a117e319685080ffffff493d002bd89a01df10151b623e455081d26835ff", + "cborBytes": [ + 159, 159, 159, 75, 107, 127, 165, 173, 175, 50, 198, 251, 203, 114, 87, 255, 191, 74, 158, 17, 102, 30, 70, 186, + 32, 47, 153, 205, 65, 24, 255, 255, 216, 102, 159, 27, 179, 102, 105, 112, 208, 40, 224, 223, 159, 216, 102, 159, + 27, 48, 17, 94, 31, 3, 5, 249, 191, 159, 70, 161, 49, 212, 76, 206, 138, 27, 183, 169, 95, 67, 174, 19, 167, 141, + 255, 255, 255, 255, 216, 102, 159, 27, 138, 227, 192, 211, 49, 130, 219, 10, 159, 216, 102, 159, 27, 85, 171, 243, + 172, 235, 59, 131, 205, 128, 255, 27, 251, 27, 17, 102, 0, 8, 92, 44, 159, 65, 182, 76, 213, 120, 135, 25, 95, + 199, 43, 234, 35, 141, 77, 126, 69, 185, 5, 254, 228, 65, 255, 216, 102, 159, 27, 10, 197, 161, 23, 227, 25, 104, + 80, 128, 255, 255, 255, 73, 61, 0, 43, 216, 154, 1, 223, 16, 21, 27, 98, 62, 69, 80, 129, 210, 104, 53, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3058, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fffe00" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6903940694188050226" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2779678536507674535" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "662573899409921575" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6261680130751031222" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c69b7288a657" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6716847301822943856" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "550c9685ace534e3bc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11812436102150141971" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a395fcad7496" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12619943297936692401" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b7994e04c8c473342" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f43fffe00d8669f1b5fcfb97b937147329f1b269366e6ce514fa7bf1b0931ef7377c61627411f1b56e5f4e7328967b646c69b7288a6571b5d3709089bb2927049550c9685ace534e3bc1ba3ee340cc8a8b81346a395fcad74961baf230b90ef1694b1498b7994e04c8c473342ffffffff", + "cborBytes": [ + 159, 67, 255, 254, 0, 216, 102, 159, 27, 95, 207, 185, 123, 147, 113, 71, 50, 159, 27, 38, 147, 102, 230, 206, 81, + 79, 167, 191, 27, 9, 49, 239, 115, 119, 198, 22, 39, 65, 31, 27, 86, 229, 244, 231, 50, 137, 103, 182, 70, 198, + 155, 114, 136, 166, 87, 27, 93, 55, 9, 8, 155, 178, 146, 112, 73, 85, 12, 150, 133, 172, 229, 52, 227, 188, 27, + 163, 238, 52, 12, 200, 168, 184, 19, 70, 163, 149, 252, 173, 116, 150, 27, 175, 35, 11, 144, 239, 22, 148, 177, + 73, 139, 121, 148, 224, 76, 140, 71, 51, 66, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3059, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4454055124678168214" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14398469000386098521" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8552316103920593962" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e98cf4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9738092080917829183" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6d883fc15" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11836713873904101882" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d74b2ac62f0fd5a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16558449921073705747" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6740db6301e1f60d7182" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17921344852189322139" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75d8" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3148848071653808105" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7188251646693015756" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1217616898679625917" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fda56a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "560769162379417530" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f616d2eb48fce854" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2604528991435517867" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4f5a5199b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11788117148360143084" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95c081dca60c488ffd9b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12851415284295187641" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6503043398202470515" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b3dcffb898c734e961bc7d1a344fd7cb5591b76afee2f350a2c2a43e98cf41b8724a7272926d63f45a6d883fc151ba444748e01fde9fa483d74b2ac62f0fd5a1be5cb6e7908b173134a6740db6301e1f60d71821bf8b5683114051b9b4275d8ff1b2bb2f4a34a9957e91b63c1ccc9a54100ccff1b10e5d81e3e4fd8bd43fda56a9fbf1b07c84095049e57ba48f616d2eb48fce8541b242525517db86fab45e4f5a5199b1ba397ce171eb270ec4a95c081dca60c488ffd9b1bb259661c8170bcb91b5a3f73841cceb073ffffff", + "cborBytes": [ + 159, 159, 191, 27, 61, 207, 251, 137, 140, 115, 78, 150, 27, 199, 209, 163, 68, 253, 124, 181, 89, 27, 118, 175, + 238, 47, 53, 10, 44, 42, 67, 233, 140, 244, 27, 135, 36, 167, 39, 41, 38, 214, 63, 69, 166, 216, 131, 252, 21, 27, + 164, 68, 116, 142, 1, 253, 233, 250, 72, 61, 116, 178, 172, 98, 240, 253, 90, 27, 229, 203, 110, 121, 8, 177, 115, + 19, 74, 103, 64, 219, 99, 1, 225, 246, 13, 113, 130, 27, 248, 181, 104, 49, 20, 5, 27, 155, 66, 117, 216, 255, 27, + 43, 178, 244, 163, 74, 153, 87, 233, 27, 99, 193, 204, 201, 165, 65, 0, 204, 255, 27, 16, 229, 216, 30, 62, 79, + 216, 189, 67, 253, 165, 106, 159, 191, 27, 7, 200, 64, 149, 4, 158, 87, 186, 72, 246, 22, 210, 235, 72, 252, 232, + 84, 27, 36, 37, 37, 81, 125, 184, 111, 171, 69, 228, 245, 165, 25, 155, 27, 163, 151, 206, 23, 30, 178, 112, 236, + 74, 149, 192, 129, 220, 166, 12, 72, 143, 253, 155, 27, 178, 89, 102, 28, 129, 112, 188, 185, 27, 90, 63, 115, + 132, 28, 206, 176, 115, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3060, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6593001499108795650" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e640" + }, + { + "_tag": "ByteArray", + "bytearray": "d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14212235990773933206" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02e0716c7e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4243021923404577062" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "64d184" + }, + { + "_tag": "ByteArray", + "bytearray": "f814cb4c5f0ad94e" + }, + { + "_tag": "ByteArray", + "bytearray": "404467" + }, + { + "_tag": "ByteArray", + "bytearray": "b598763bc0a394" + }, + { + "_tag": "ByteArray", + "bytearray": "b7" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "37d3d7" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "038d7a93e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4811464feaa57d5ed5f44f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07055c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28f9e1fe011d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3396b1d323f74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd0897a0248ffb35686c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2544e7ac616d222431867" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1571c4de78ee4156" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12307595449956071344" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "291d" + }, + { + "_tag": "ByteArray", + "bytearray": "6415c8cf355e" + }, + { + "_tag": "ByteArray", + "bytearray": "d569" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13136815014412587532" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14358856506281770706" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e35e67610db9" + } + ] + }, + "cborHex": "9fd8669f1b5b7f0beea5ff65029f9f42e64041d01bc53c01557e1a24964502e0716c7effd8669f1b3ae23df576b979269f4364d18448f814cb4c5f0ad94e4340446747b598763bc0a39441b7ffff4337d3d7ffffbf45038d7a93e54b4811464feaa57d5ed5f44f4307055c4628f9e1fe011d47b3396b1d323f7442ff074acd0897a0248ffb35686c4253de4be2544e7ac616d222431867481571c4de78ee415642ed0f41f9ffd905079fd8669f1baacd5cda71d877b09f42291d466415c8cf355e42d5691bb64f57a75e14920cffff1bc744e7ea7dbb3ed2ff46e35e67610db9ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 91, 127, 11, 238, 165, 255, 101, 2, 159, 159, 66, 230, 64, 65, 208, 27, 197, 60, 1, 85, + 126, 26, 36, 150, 69, 2, 224, 113, 108, 126, 255, 216, 102, 159, 27, 58, 226, 61, 245, 118, 185, 121, 38, 159, 67, + 100, 209, 132, 72, 248, 20, 203, 76, 95, 10, 217, 78, 67, 64, 68, 103, 71, 181, 152, 118, 59, 192, 163, 148, 65, + 183, 255, 255, 67, 55, 211, 215, 255, 255, 191, 69, 3, 141, 122, 147, 229, 75, 72, 17, 70, 79, 234, 165, 125, 94, + 213, 244, 79, 67, 7, 5, 92, 70, 40, 249, 225, 254, 1, 29, 71, 179, 57, 107, 29, 50, 63, 116, 66, 255, 7, 74, 205, + 8, 151, 160, 36, 143, 251, 53, 104, 108, 66, 83, 222, 75, 226, 84, 78, 122, 198, 22, 210, 34, 67, 24, 103, 72, 21, + 113, 196, 222, 120, 238, 65, 86, 66, 237, 15, 65, 249, 255, 217, 5, 7, 159, 216, 102, 159, 27, 170, 205, 92, 218, + 113, 216, 119, 176, 159, 66, 41, 29, 70, 100, 21, 200, 207, 53, 94, 66, 213, 105, 27, 182, 79, 87, 167, 94, 20, + 146, 12, 255, 255, 27, 199, 68, 231, 234, 125, 187, 62, 210, 255, 70, 227, 94, 103, 97, 13, 185, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3061, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4217171333171313612" + }, + "fields": [] + } + ] + }, + "cborHex": "9f0bd8669f1b3a8666fbe6a2fbcc80ffff", + "cborBytes": [159, 11, 216, 102, 159, 27, 58, 134, 102, 251, 230, 162, 251, 204, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3062, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "196458050854102321" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9712142476848631001" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "781854052650087887" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13677150111305572933" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8213ccde60a495a8e8e0" + }, + { + "_tag": "ByteArray", + "bytearray": "0a1caf01b814" + } + ] + }, + "cborHex": "9fbf1b02b9f58e6e6ca5311b86c87620248b8cd91b0ad9b41e526875cf1bbdceff8fc4102245ff4a8213ccde60a495a8e8e0460a1caf01b814ff", + "cborBytes": [ + 159, 191, 27, 2, 185, 245, 142, 110, 108, 165, 49, 27, 134, 200, 118, 32, 36, 139, 140, 217, 27, 10, 217, 180, 30, + 82, 104, 117, 207, 27, 189, 206, 255, 143, 196, 16, 34, 69, 255, 74, 130, 19, 204, 222, 96, 164, 149, 168, 232, + 224, 70, 10, 28, 175, 1, 184, 20, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3063, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11910780565918322260" + } + } + ] + }, + "cborHex": "9f1ba54b97d195300e54ff", + "cborBytes": [159, 27, 165, 75, 151, 209, 149, 48, 14, 84, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3064, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18350588426612165634" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2072cb3577f3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12563442151997742556" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1630d9acab2b" + }, + { + "_tag": "ByteArray", + "bytearray": "83853a4845c319edc934" + }, + { + "_tag": "ByteArray", + "bytearray": "90" + }, + { + "_tag": "ByteArray", + "bytearray": "b76d906ac3d89517" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9133882785422490349" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "221e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9bfe00f62296391403223a" + } + ] + }, + "cborHex": "9fd8669f1bfeaa62f2cb9ccc029f462072cb3577f3d8669f1bfffffffffffffffb9f1bae5a5012c1fe9ddc461630d9acab2b4a83853a4845c319edc934419048b76d906ac3d89517ffffffffbf1b7ec211fffd29baed42221eff4b9bfe00f62296391403223aff", + "cborBytes": [ + 159, 216, 102, 159, 27, 254, 170, 98, 242, 203, 156, 204, 2, 159, 70, 32, 114, 203, 53, 119, 243, 216, 102, 159, + 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 27, 174, 90, 80, 18, 193, 254, 157, 220, 70, 22, 48, 217, 172, + 171, 43, 74, 131, 133, 58, 72, 69, 195, 25, 237, 201, 52, 65, 144, 72, 183, 109, 144, 106, 195, 216, 149, 23, 255, + 255, 255, 255, 191, 27, 126, 194, 17, 255, 253, 41, 186, 237, 66, 34, 30, 255, 75, 155, 254, 0, 246, 34, 150, 57, + 20, 3, 34, 58, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3065, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12886989267807215960" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5476078067564042887" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7388203088476208009" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11770945648132495310" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3840218947894456533" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15960613860935977461" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2a9e0ddcb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2652b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16180562376105152085" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8124421962053855556" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16319256645500726851" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4069427041696905402" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11609227865678166484" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1971862659822652877" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc03a1971876120604ee61" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8767254450387312596" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7728863977614826273" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9995631515216174282" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10337376225895067093" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6563863998712520636" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15921714304474489237" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10021569939027069504" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24dcbd5fefa4bae4e5bbf0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7702743124861330588" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "606a235f7087959f64525c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12690321914319383092" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9810cf69d2ce2a3f54656dae" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6830570818372995621" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1e7072437a2808" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13860533092920054316" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b1cc2146bfa49e5ad81e654" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8878600232656010251" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12959044968878071669" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7912869259020327960" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bb2d7c875fbeba1589fbf1b4bfeeffd2b765a871b66882b9089117b891ba35accb3ab5e17ce1b354b32c968f930d51bdd7f7dbe5a43c9f545f2a9e0ddcb432652b81be08ce7c0b5cc4e55ff1b70bfbebabd9a29441be279a574b980ee43d8669f1b387982556bb678ba9f1ba11c433c4a5039d41b1b5d76a448960dcd4bfc03a1971876120604ee611b79ab8b78c2cc5fd41b6b4270d69f0b5b21ffffffffd8669f1b8ab79de76a28dcca9fbf1b8f75bce85e0b2dd51b5b178787ad3c1fbc1bdcf54acd957521951b8b13c4c353710a404b24dcbd5fefa4bae4e5bbf01b6ae5a40fa971249c4b606a235f7087959f64525c1bb01d148b7c5caa34ff4c9810cf69d2ce2a3f54656daeffff9fd8669f1b5ecb0ff82a458a259f471e7072437a28081bc05a8169690bd22c4c0b1cc2146bfa49e5ad81e6541b7b371fdeea297c0b1bb3d7c6bd3e4a5f75ffff1b6dd028aaba03dc1880ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 178, 215, 200, 117, 251, 235, 161, 88, 159, 191, 27, 75, 254, 239, 253, 43, 118, 90, 135, + 27, 102, 136, 43, 144, 137, 17, 123, 137, 27, 163, 90, 204, 179, 171, 94, 23, 206, 27, 53, 75, 50, 201, 104, 249, + 48, 213, 27, 221, 127, 125, 190, 90, 67, 201, 245, 69, 242, 169, 224, 221, 203, 67, 38, 82, 184, 27, 224, 140, + 231, 192, 181, 204, 78, 85, 255, 27, 112, 191, 190, 186, 189, 154, 41, 68, 27, 226, 121, 165, 116, 185, 128, 238, + 67, 216, 102, 159, 27, 56, 121, 130, 85, 107, 182, 120, 186, 159, 27, 161, 28, 67, 60, 74, 80, 57, 212, 27, 27, + 93, 118, 164, 72, 150, 13, 205, 75, 252, 3, 161, 151, 24, 118, 18, 6, 4, 238, 97, 27, 121, 171, 139, 120, 194, + 204, 95, 212, 27, 107, 66, 112, 214, 159, 11, 91, 33, 255, 255, 255, 255, 216, 102, 159, 27, 138, 183, 157, 231, + 106, 40, 220, 202, 159, 191, 27, 143, 117, 188, 232, 94, 11, 45, 213, 27, 91, 23, 135, 135, 173, 60, 31, 188, 27, + 220, 245, 74, 205, 149, 117, 33, 149, 27, 139, 19, 196, 195, 83, 113, 10, 64, 75, 36, 220, 189, 95, 239, 164, 186, + 228, 229, 187, 240, 27, 106, 229, 164, 15, 169, 113, 36, 156, 75, 96, 106, 35, 95, 112, 135, 149, 159, 100, 82, + 92, 27, 176, 29, 20, 139, 124, 92, 170, 52, 255, 76, 152, 16, 207, 105, 210, 206, 42, 63, 84, 101, 109, 174, 255, + 255, 159, 216, 102, 159, 27, 94, 203, 15, 248, 42, 69, 138, 37, 159, 71, 30, 112, 114, 67, 122, 40, 8, 27, 192, + 90, 129, 105, 105, 11, 210, 44, 76, 11, 28, 194, 20, 107, 250, 73, 229, 173, 129, 230, 84, 27, 123, 55, 31, 222, + 234, 41, 124, 11, 27, 179, 215, 198, 189, 62, 74, 95, 117, 255, 255, 27, 109, 208, 40, 170, 186, 3, 220, 24, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3066, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8857963218721017316" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9320349987934677930" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15991248129331913828" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b7aedce9dad578de4bf1b815888eec529abaa1bddec5372c7f56464ffff", + "cborBytes": [ + 159, 27, 122, 237, 206, 157, 173, 87, 141, 228, 191, 27, 129, 88, 136, 238, 197, 41, 171, 170, 27, 221, 236, 83, + 114, 199, 245, 100, 100, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3067, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9129601417708175302" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10432841340462969240" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11116351503107174218" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5574079554388721201" + } + } + ] + }, + "cborHex": "9fd8669f1b7eb2dc1e6365ffc680ff1b90c8e5ec704e3198d8669f1b9a4536cb8d152f4a80ff1b4d5b1bd26d1b7e31ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 126, 178, 220, 30, 99, 101, 255, 198, 128, 255, 27, 144, 200, 229, 236, 112, 78, 49, 152, + 216, 102, 159, 27, 154, 69, 54, 203, 141, 21, 47, 74, 128, 255, 27, 77, 91, 27, 210, 109, 27, 126, 49, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3068, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e52b85f920bcfbf98836" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "21747716514198300" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12620245387289071451" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c" + }, + { + "_tag": "ByteArray", + "bytearray": "3c41094422dd067c53" + }, + { + "_tag": "ByteArray", + "bytearray": "7dc63fdb9a9d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8340834ce48017b417" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3207039036955486586" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4ae52b85f920bcfbf988369fd8669f1b004d436ed581331c9f1baf241e5097a08f5b418c493c41094422dd067c53467dc63fdb9a9dffff9f498340834ce48017b4171b2c81b103328ae97affffff", + "cborBytes": [ + 159, 74, 229, 43, 133, 249, 32, 188, 251, 249, 136, 54, 159, 216, 102, 159, 27, 0, 77, 67, 110, 213, 129, 51, 28, + 159, 27, 175, 36, 30, 80, 151, 160, 143, 91, 65, 140, 73, 60, 65, 9, 68, 34, 221, 6, 124, 83, 70, 125, 198, 63, + 219, 154, 157, 255, 255, 159, 73, 131, 64, 131, 76, 228, 128, 23, 180, 23, 27, 44, 129, 177, 3, 50, 138, 233, 122, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3069, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15815419935057326288" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16243706872391473629" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13379602877481494942" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f1bdb7ba8a322b930d0d8669f1be16d3d566c7719dd9f1bb9ade5edcc14299effffa0ff", + "cborBytes": [ + 159, 27, 219, 123, 168, 163, 34, 185, 48, 208, 216, 102, 159, 27, 225, 109, 61, 86, 108, 119, 25, 221, 159, 27, + 185, 173, 229, 237, 204, 20, 41, 158, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3070, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15316840737985088740" + } + }, + { + "_tag": "ByteArray", + "bytearray": "33e1648d6b797944ea09f965" + }, + { + "_tag": "ByteArray", + "bytearray": "08f3342a34400c2962" + } + ] + }, + "cborHex": "9f1bd490597fc4d54ce44c33e1648d6b797944ea09f9654908f3342a34400c2962ff", + "cborBytes": [ + 159, 27, 212, 144, 89, 127, 196, 213, 76, 228, 76, 51, 225, 100, 141, 107, 121, 121, 68, 234, 9, 249, 101, 73, 8, + 243, 52, 42, 52, 64, 12, 41, 98, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3071, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b498ef468b4f996c0c86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4543447834846830312" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13859551700582204797" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0531" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5140357606143105910" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3444732836965064448" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11863573925443188140" + } + }, + { + "_tag": "ByteArray", + "bytearray": "93" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3144442370564658627" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13559319732090332704" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "194424818655214239" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13386647081202877588" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a6533c4643ca7" + }, + { + "_tag": "ByteArray", + "bytearray": "bff113c498b58f7b20" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8060942218798334404" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10949475724415172035" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1120458273161378910" + } + } + ] + } + ] + }, + "cborHex": "9f4ab498ef468b4f996c0c861b3f0d91bbcb901ee81bc05704d7335d057d4205319fd8669f1b475638020ca31b769f1b2fce2643a56d1f001ba4a3e1a118a0b5ac41931b2ba34dad123195c3ffffd8669f1bbc2c6174bb3066209f1b02b2bc57ab76ba9f1bb9c6ec98489e0494ffff9f479a6533c4643ca749bff113c498b58f7b201b6fde383d426c81c41b97f45a2896877dc3ff1b0f8caadced6e7c5effff", + "cborBytes": [ + 159, 74, 180, 152, 239, 70, 139, 79, 153, 108, 12, 134, 27, 63, 13, 145, 187, 203, 144, 30, 232, 27, 192, 87, 4, + 215, 51, 93, 5, 125, 66, 5, 49, 159, 216, 102, 159, 27, 71, 86, 56, 2, 12, 163, 27, 118, 159, 27, 47, 206, 38, 67, + 165, 109, 31, 0, 27, 164, 163, 225, 161, 24, 160, 181, 172, 65, 147, 27, 43, 163, 77, 173, 18, 49, 149, 195, 255, + 255, 216, 102, 159, 27, 188, 44, 97, 116, 187, 48, 102, 32, 159, 27, 2, 178, 188, 87, 171, 118, 186, 159, 27, 185, + 198, 236, 152, 72, 158, 4, 148, 255, 255, 159, 71, 154, 101, 51, 196, 100, 60, 167, 73, 191, 241, 19, 196, 152, + 181, 143, 123, 32, 27, 111, 222, 56, 61, 66, 108, 129, 196, 27, 151, 244, 90, 40, 150, 135, 125, 195, 255, 27, 15, + 140, 170, 220, 237, 110, 124, 94, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3072, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "82ca15bf29e20dc02f0bff" + }, + { + "_tag": "ByteArray", + "bytearray": "2f2d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12832434074227645063" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14221691263793948251" + } + }, + { + "_tag": "ByteArray", + "bytearray": "73328d76b5a69c5189e19848" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f45b" + } + ] + } + ] + }, + "cborHex": "9f089f9f4b82ca15bf29e20dc02f0bff422f2dffd8669f1bb215f6cd25f51a879f1bc55d98dacbb6e65b4c73328d76b5a69c5189e19848ffff42f45bffff", + "cborBytes": [ + 159, 8, 159, 159, 75, 130, 202, 21, 191, 41, 226, 13, 192, 47, 11, 255, 66, 47, 45, 255, 216, 102, 159, 27, 178, + 21, 246, 205, 37, 245, 26, 135, 159, 27, 197, 93, 152, 218, 203, 182, 230, 91, 76, 115, 50, 141, 118, 181, 166, + 156, 81, 137, 225, 152, 72, 255, 255, 66, 244, 91, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3073, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "00e09c480f39f365a50286" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3475036545127288803" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15757921936089961915" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6768322060515913965" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10854873341174112820" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8208215507130015053" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14649153588481765393" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13643690001920399915" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c81ca34f115" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8714200525579193694" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "20550e2243d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6d16b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f3770d401de31b90bdb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "565a2b037af3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e5d31e6aff0d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "688035c3bc31c7f44c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d0a3c4e0afb9008" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1702486756955909748" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11070333369170610867" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3731436627736969305" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7003813672495623723" + } + } + ] + }, + "cborHex": "9f4b00e09c480f39f365a50286bf1b3039cf5385d00fe31bdaaf628306fa55bb1b5dede90dce7db0ed1b96a441cace8a62341b71e97083c6565d4d1bcb4c3f92fd9830111bbd581fc4f6039a2b462c81ca34f115ff1b78ef0f354cab8d5ebf4620550e2243d243f6d16b4a3f3770d401de31b90bdb46565a2b037af3475e5d31e6aff0d049688035c3bc31c7f44c488d0a3c4e0afb90081b17a072af6f29ee7441b51b99a1b98bce914ab341bc1b33c8b9d7ca24c059ff1b61328b6d66202e2bff", + "cborBytes": [ + 159, 75, 0, 224, 156, 72, 15, 57, 243, 101, 165, 2, 134, 191, 27, 48, 57, 207, 83, 133, 208, 15, 227, 27, 218, + 175, 98, 131, 6, 250, 85, 187, 27, 93, 237, 233, 13, 206, 125, 176, 237, 27, 150, 164, 65, 202, 206, 138, 98, 52, + 27, 113, 233, 112, 131, 198, 86, 93, 77, 27, 203, 76, 63, 146, 253, 152, 48, 17, 27, 189, 88, 31, 196, 246, 3, + 154, 43, 70, 44, 129, 202, 52, 241, 21, 255, 27, 120, 239, 15, 53, 76, 171, 141, 94, 191, 70, 32, 85, 14, 34, 67, + 210, 67, 246, 209, 107, 74, 63, 55, 112, 212, 1, 222, 49, 185, 11, 219, 70, 86, 90, 43, 3, 122, 243, 71, 94, 93, + 49, 230, 175, 240, 208, 73, 104, 128, 53, 195, 188, 49, 199, 244, 76, 72, 141, 10, 60, 78, 10, 251, 144, 8, 27, + 23, 160, 114, 175, 111, 41, 238, 116, 65, 181, 27, 153, 161, 185, 139, 206, 145, 74, 179, 65, 188, 27, 51, 200, + 185, 215, 202, 36, 192, 89, 255, 27, 97, 50, 139, 109, 102, 32, 46, 43, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3074, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17631233777534652557" + } + } + ] + }, + "cborHex": "9fa01bf4aeb9b4d5d2508dff", + "cborBytes": [159, 160, 27, 244, 174, 185, 180, 213, 210, 80, 141, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3075, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13161611974085652038" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ad5d0df25ef14f" + } + ] + }, + "cborHex": "9f1bb6a7705b72e72e4647ad5d0df25ef14fff", + "cborBytes": [159, 27, 182, 167, 112, 91, 114, 231, 46, 70, 71, 173, 93, 13, 242, 94, 241, 79, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3076, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "94436eab921206" + } + ] + }, + "cborHex": "9f4794436eab921206ff", + "cborBytes": [159, 71, 148, 67, 110, 171, 146, 18, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3077, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13261504699522756571" + } + } + ] + }, + "cborHex": "9f1bb80a5443023a2fdbff", + "cborBytes": [159, 27, 184, 10, 84, 67, 2, 58, 47, 219, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3078, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2419055437156523487" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11354374343570338767" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0247" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7116196727864691906" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15053521490918340101" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d3e5b5f62d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13858797712229755302" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15682115884485072219" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1735303651240544241" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11873328164586886773" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6581955620303536973" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b2192361a77b11ddf1b9d92d74eb351b3cfff9f9f4202471b62c1cf38842c0cc21bd0e8da09fce5760545d3e5b5f62d1bc05457179b7369a6ffbf1bd9a2114f3d3e555b1b1815097a0da187f1ffffbf1ba4c6890edfd796751b5b57cdc39394034dffff", + "cborBytes": [ + 159, 191, 27, 33, 146, 54, 26, 119, 177, 29, 223, 27, 157, 146, 215, 78, 179, 81, 179, 207, 255, 159, 159, 66, 2, + 71, 27, 98, 193, 207, 56, 132, 44, 12, 194, 27, 208, 232, 218, 9, 252, 229, 118, 5, 69, 211, 229, 181, 246, 45, + 27, 192, 84, 87, 23, 155, 115, 105, 166, 255, 191, 27, 217, 162, 17, 79, 61, 62, 85, 91, 27, 24, 21, 9, 122, 13, + 161, 135, 241, 255, 255, 191, 27, 164, 198, 137, 14, 223, 215, 150, 117, 27, 91, 87, 205, 195, 147, 148, 3, 77, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3079, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "254908768678186371" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14189111055573818665" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5040065510319808727" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3914542101905870348" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2437182712434926955" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2a42229266e936d606c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11318269711208532208" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b78a2c4bdca" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "949631868733011941" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bc9fbd507856d6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7101341002652722225" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17654317069713388380" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15607245201455970568" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8becc37a8a0192" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2441770902900727879" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13502735784582184082" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b03899e2caf320d83bf1bc4e9d953f20b9d291b45f1e8e0d34f60d7ff1b36533f4d32690e0cbf1b21d29cc3a368256b4ab2a42229266e936d606c1b9d129255e8a5c8f0460b78a2c4bdcaffd8669f1b0d2dc5273b38b7e59f47bc9fbd507856d6bf1b628d0804740824311bf500bbd69c61b35cff9f1bd89812d1eb33f908478becc37a8a01921b21e2e9b2fa4860471bbb635aa7cff9fc92ffffffff", + "cborBytes": [ + 159, 27, 3, 137, 158, 44, 175, 50, 13, 131, 191, 27, 196, 233, 217, 83, 242, 11, 157, 41, 27, 69, 241, 232, 224, + 211, 79, 96, 215, 255, 27, 54, 83, 63, 77, 50, 105, 14, 12, 191, 27, 33, 210, 156, 195, 163, 104, 37, 107, 74, + 178, 164, 34, 41, 38, 110, 147, 109, 96, 108, 27, 157, 18, 146, 85, 232, 165, 200, 240, 70, 11, 120, 162, 196, + 189, 202, 255, 216, 102, 159, 27, 13, 45, 197, 39, 59, 56, 183, 229, 159, 71, 188, 159, 189, 80, 120, 86, 214, + 191, 27, 98, 141, 8, 4, 116, 8, 36, 49, 27, 245, 0, 187, 214, 156, 97, 179, 92, 255, 159, 27, 216, 152, 18, 209, + 235, 51, 249, 8, 71, 139, 236, 195, 122, 138, 1, 146, 27, 33, 226, 233, 178, 250, 72, 96, 71, 27, 187, 99, 90, + 167, 207, 249, 252, 146, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3080, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "881450235309446265" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4995167774620638577" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5836565303051017578" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6381f6d860412adf9a6c75" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1798433992915424118" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5935002176582673826" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2877614347205316597" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52a2c66d0d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10125403812469411421" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca8ffb4da49e6b54b3" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf1b0c3b8a51a2cdd4791b455266a01fbddd711b50ffa5383cb9dd6a4b6381f6d860412adf9a6c75ffd8669f1b18f5523023b613769f1b525d5d08dc6165a2ffffbf1b27ef5700a5bd8ff54552a2c66d0d1b8c84a91ee9a00e5d49ca8ffb4da49e6b54b3ff80ff", + "cborBytes": [ + 159, 191, 27, 12, 59, 138, 81, 162, 205, 212, 121, 27, 69, 82, 102, 160, 31, 189, 221, 113, 27, 80, 255, 165, 56, + 60, 185, 221, 106, 75, 99, 129, 246, 216, 96, 65, 42, 223, 154, 108, 117, 255, 216, 102, 159, 27, 24, 245, 82, 48, + 35, 182, 19, 118, 159, 27, 82, 93, 93, 8, 220, 97, 101, 162, 255, 255, 191, 27, 39, 239, 87, 0, 165, 189, 143, + 245, 69, 82, 162, 198, 109, 13, 27, 140, 132, 169, 30, 233, 160, 14, 93, 73, 202, 143, 251, 77, 164, 158, 107, 84, + 179, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3081, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "663c" + } + ] + }, + "cborHex": "9f42663cff", + "cborBytes": [159, 66, 102, 60, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3082, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "80e47d2933" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad538d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "375af5ec24" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff82c06d819055c0b3a5f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4565577460400983374" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17477343882767551941" + } + } + ] + }, + "cborHex": "9f4580e47d2933bf43ad538d45375af5ec244bff82c06d819055c0b3a5f51b3f5c3082c1bb0d4eff1bf28bffa995b4cdc5ff", + "cborBytes": [ + 159, 69, 128, 228, 125, 41, 51, 191, 67, 173, 83, 141, 69, 55, 90, 245, 236, 36, 75, 255, 130, 192, 109, 129, 144, + 85, 192, 179, 165, 245, 27, 63, 92, 48, 130, 193, 187, 13, 78, 255, 27, 242, 139, 255, 169, 149, 180, 205, 197, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3083, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11917740695154838948" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed92beb40f86" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8302414956941150326" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16228914884757143527" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10033678053650458385" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90cb7ccf86fe4008ca85" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11808358005833603344" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9625785430979304321" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bea4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13844303074924677398" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8093222443776376678" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a663fb8f5a1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13830054177480359147" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6620574173063646227" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1ba5645204f3ebcda49f46ed92beb40f86bf1b73381a6a4e5e08761be138b01a6bffbfe71b8b3ec9077277e7114a90cb7ccf86fe4008ca85ff9f1ba3dfb70afe5a19101b8595a8d991a6db8142bea41bc020d84bdfbbc916ffbf1b7050e6eed1827f66463a663fb8f5a11bbfee38ffe91fbceb1b5be1012212958c13ffffff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 165, 100, 82, 4, 243, 235, 205, 164, 159, 70, 237, 146, 190, 180, 15, 134, 191, 27, 115, + 56, 26, 106, 78, 94, 8, 118, 27, 225, 56, 176, 26, 107, 255, 191, 231, 27, 139, 62, 201, 7, 114, 119, 231, 17, 74, + 144, 203, 124, 207, 134, 254, 64, 8, 202, 133, 255, 159, 27, 163, 223, 183, 10, 254, 90, 25, 16, 27, 133, 149, + 168, 217, 145, 166, 219, 129, 66, 190, 164, 27, 192, 32, 216, 75, 223, 187, 201, 22, 255, 191, 27, 112, 80, 230, + 238, 209, 130, 127, 102, 70, 58, 102, 63, 184, 245, 161, 27, 191, 238, 56, 255, 233, 31, 188, 235, 27, 91, 225, 1, + 34, 18, 149, 140, 19, 255, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3084, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16699790993879599045" + }, + "fields": [] + } + ] + }, + "cborHex": "9f11d8669f1be7c1936dfd7607c580ffff", + "cborBytes": [159, 17, 216, 102, 159, 27, 231, 193, 147, 109, 253, 118, 7, 197, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3085, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14841926242110186256" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1122395640230277297" + } + }, + { + "_tag": "ByteArray", + "bytearray": "24cc27ceabf942" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14250067269938069585" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bcdf91d480386a3109f1b0f938ce3595f70b14724cc27ceabf9421bc5c268ae92144051ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 205, 249, 29, 72, 3, 134, 163, 16, 159, 27, 15, 147, 140, 227, 89, 95, 112, 177, 71, 36, + 204, 39, 206, 171, 249, 66, 27, 197, 194, 104, 174, 146, 20, 64, 81, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3086, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8454125598807015617" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1580186842680102103" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18148139019398910178" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4443711889876284279" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5226160278926346829" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14754857110606303748" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8326532419455027808" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "32a3f34222" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1488190643262689795" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "849432af" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff6112a74a" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c6" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "533adff2133c9f78e40f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17855448534224720102" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9b538d5447de2c0dad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7544615658189790501" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2848952503346696286" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15530042722277644242" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12560838436215452579" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d5107d87bba7" + }, + { + "_tag": "ByteArray", + "bytearray": "eb947fcf68" + }, + { + "_tag": "ByteArray", + "bytearray": "08fc7863307c11" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "566788996133836621" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9292905635768798429" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c12b96eb68" + } + ] + } + ] + }, + "cborHex": "9fa09fbf1b75531670b36dc0c11b15edf38facb18cd71bfbdb244901ad90e21b3dab3c6b88417377ff1b48870d1594a94a4d1bccc3c85e1555d2041b738dc91ea0640a60ff4532a3f34222d8669f1b14a71d8159bb92039fbf44849432af45ff6112a74aff41c69f4a533adff2133c9f78e40f1bf7cb4bd6f3bbd0e6ff9f499b538d5447de2c0dad1b68b3dbf7d1409d251b2789833517f0905e1bd785cb92ffffd7d2ffffff9f9f1bae511001efb1f3a346d5107d87bba745eb947fcf684708fc7863307c111b07dda396c928574dff1b80f7087097398cdd45c12b96eb68ffff", + "cborBytes": [ + 159, 160, 159, 191, 27, 117, 83, 22, 112, 179, 109, 192, 193, 27, 21, 237, 243, 143, 172, 177, 140, 215, 27, 251, + 219, 36, 73, 1, 173, 144, 226, 27, 61, 171, 60, 107, 136, 65, 115, 119, 255, 27, 72, 135, 13, 21, 148, 169, 74, + 77, 27, 204, 195, 200, 94, 21, 85, 210, 4, 27, 115, 141, 201, 30, 160, 100, 10, 96, 255, 69, 50, 163, 243, 66, 34, + 216, 102, 159, 27, 20, 167, 29, 129, 89, 187, 146, 3, 159, 191, 68, 132, 148, 50, 175, 69, 255, 97, 18, 167, 74, + 255, 65, 198, 159, 74, 83, 58, 223, 242, 19, 60, 159, 120, 228, 15, 27, 247, 203, 75, 214, 243, 187, 208, 230, + 255, 159, 73, 155, 83, 141, 84, 71, 222, 44, 13, 173, 27, 104, 179, 219, 247, 209, 64, 157, 37, 27, 39, 137, 131, + 53, 23, 240, 144, 94, 27, 215, 133, 203, 146, 255, 255, 215, 210, 255, 255, 255, 159, 159, 27, 174, 81, 16, 1, + 239, 177, 243, 163, 70, 213, 16, 125, 135, 187, 167, 69, 235, 148, 127, 207, 104, 71, 8, 252, 120, 99, 48, 124, + 17, 27, 7, 221, 163, 150, 201, 40, 87, 77, 255, 27, 128, 247, 8, 112, 151, 57, 140, 221, 69, 193, 43, 150, 235, + 104, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3087, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1239524b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5154512149136245024" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c3d283c77" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13461536078602694505" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30f603" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf441239524b1b4788817d67b38120451c3d283c771bbad0fbbdc037ef694330f6031242c1b21bffffffffffffffedffff", + "cborBytes": [ + 159, 191, 68, 18, 57, 82, 75, 27, 71, 136, 129, 125, 103, 179, 129, 32, 69, 28, 61, 40, 60, 119, 27, 186, 208, + 251, 189, 192, 55, 239, 105, 67, 48, 246, 3, 18, 66, 193, 178, 27, 255, 255, 255, 255, 255, 255, 255, 237, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3088, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2632820270706513222" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6537360211646744663" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ba357403" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7057509484204002762" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14570199959968641324" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16009215436296995397" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9650046495337680616" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12564604237910096495" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17696492764165050706" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3280406579555424312" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85caf0452256958541" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15040616677446012075" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17237521437309723750" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15592510648595296629" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3656683369171084317" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5463193876535260697" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6055839597080407033" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d98d8d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10902956156911255946" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2559585546494984748" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16885701781598494208" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10830640235178614120" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b2489a81640e8d5469fd8669f1b5ab95e79dffa085780ff809f44ba3574031b61f14f7bccee0dca1bca33bfaad857712c1bde2c289e6d2ec245ffffffd8669f1b85ebda28cc9b0ee89fd8669f1bae5e70fbf7ffba6f9f1bf5969268b25411521b2d8658675d4158384985caf0452256958541ffffd8669f1bd0bb012df5fc4cab9f1bef37fa6b3f06e4661bd863b9d27e04b175ffffbf1b32bf26267b85641d1b4bd129e2adf936191b540aaa0740b8ebf943d98d8dffbf1b974f14dbbe5a818a1b2385797e470ec22c1bea56104e5b5bde001b964e29e923dfdd68ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 36, 137, 168, 22, 64, 232, 213, 70, 159, 216, 102, 159, 27, 90, 185, 94, 121, 223, 250, 8, + 87, 128, 255, 128, 159, 68, 186, 53, 116, 3, 27, 97, 241, 79, 123, 204, 238, 13, 202, 27, 202, 51, 191, 170, 216, + 87, 113, 44, 27, 222, 44, 40, 158, 109, 46, 194, 69, 255, 255, 255, 216, 102, 159, 27, 133, 235, 218, 40, 204, + 155, 14, 232, 159, 216, 102, 159, 27, 174, 94, 112, 251, 247, 255, 186, 111, 159, 27, 245, 150, 146, 104, 178, 84, + 17, 82, 27, 45, 134, 88, 103, 93, 65, 88, 56, 73, 133, 202, 240, 69, 34, 86, 149, 133, 65, 255, 255, 216, 102, + 159, 27, 208, 187, 1, 45, 245, 252, 76, 171, 159, 27, 239, 55, 250, 107, 63, 6, 228, 102, 27, 216, 99, 185, 210, + 126, 4, 177, 117, 255, 255, 191, 27, 50, 191, 38, 38, 123, 133, 100, 29, 27, 75, 209, 41, 226, 173, 249, 54, 25, + 27, 84, 10, 170, 7, 64, 184, 235, 249, 67, 217, 141, 141, 255, 191, 27, 151, 79, 20, 219, 190, 90, 129, 138, 27, + 35, 133, 121, 126, 71, 14, 194, 44, 27, 234, 86, 16, 78, 91, 91, 222, 0, 27, 150, 78, 41, 233, 35, 223, 221, 104, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3089, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7046061429067020972" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2186234795959090687" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4a77bc24ab6df2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1937966550070669316" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d67e043521a0da721fb3" + }, + { + "_tag": "ByteArray", + "bytearray": "cb28ef27d58a1cf6cb4d0a46" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b61c8a389c11efaac9f1b1e5710f6b8bd7dffff9fd905039f474a77bc24ab6df21b1ae50a4f3b8d30044ad67e043521a0da721fb34ccb28ef27d58a1cf6cb4d0a46ffffff", + "cborBytes": [ + 159, 27, 97, 200, 163, 137, 193, 30, 250, 172, 159, 27, 30, 87, 16, 246, 184, 189, 125, 255, 255, 159, 217, 5, 3, + 159, 71, 74, 119, 188, 36, 171, 109, 242, 27, 26, 229, 10, 79, 59, 141, 48, 4, 74, 214, 126, 4, 53, 33, 160, 218, + 114, 31, 179, 76, 203, 40, 239, 39, 213, 138, 28, 246, 203, 77, 10, 70, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3090, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14520958471433993417" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "497931373709966201" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16784040003631647896" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7288160839659345842" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11e1d8180e1b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7597531615407676595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14101012790454112720" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d36973a45e9ec1c650" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15662866792440899520" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8df3757aa130" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17763812689657350416" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b75b63a74dc8b87e7bb4e" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5399623126422480092" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "138dd9745238eb68a6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6980969520708786669" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13639943979155421158" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10925354338764889283" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5143245355110397919" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2993618968769949639" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5029944000367914143" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3fa43b" + }, + { + "_tag": "ByteArray", + "bytearray": "27116ac0475f" + }, + { + "_tag": "ByteArray", + "bytearray": "50097cd592de" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17279145446970516960" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2046631996430990091" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14171137835629747212" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6156266236272223996" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bc984cecb6005bcc99fbf1b06e901f23c813b791be8ece37528690c981b6524bfab59ced7b24611e1d8180e1b1b696fdac0322c9cb341301bc3b0dc6c2c41d1d049d36973a45e9ec1c6501bd95dae5cbfb3a7c0468df3757aa1301bf685bd86479a49104b5b75b63a74dc8b87e7bb4effbf1b4aef50a0036564dc49138dd9745238eb68a61b60e162cad5ad19ed1bbd4ad0c811c977e61b979ea7e2d75a9cc31b47607a66800877dfffd8669f1b298b78975a676fc79f1b45cdf36b26096c9f433fa43b4627116ac0475f4650097cd592de1befcbdb3c34fc65e0ffffffffbf1b1c6718f50d37bb0b416a1bc4a9fec793cf1c0c1b556f73864bbca6fcffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 201, 132, 206, 203, 96, 5, 188, 201, 159, 191, 27, 6, 233, 1, 242, 60, 129, 59, 121, 27, + 232, 236, 227, 117, 40, 105, 12, 152, 27, 101, 36, 191, 171, 89, 206, 215, 178, 70, 17, 225, 216, 24, 14, 27, 27, + 105, 111, 218, 192, 50, 44, 156, 179, 65, 48, 27, 195, 176, 220, 108, 44, 65, 209, 208, 73, 211, 105, 115, 164, + 94, 158, 193, 198, 80, 27, 217, 93, 174, 92, 191, 179, 167, 192, 70, 141, 243, 117, 122, 161, 48, 27, 246, 133, + 189, 134, 71, 154, 73, 16, 75, 91, 117, 182, 58, 116, 220, 139, 135, 231, 187, 78, 255, 191, 27, 74, 239, 80, 160, + 3, 101, 100, 220, 73, 19, 141, 217, 116, 82, 56, 235, 104, 166, 27, 96, 225, 98, 202, 213, 173, 25, 237, 27, 189, + 74, 208, 200, 17, 201, 119, 230, 27, 151, 158, 167, 226, 215, 90, 156, 195, 27, 71, 96, 122, 102, 128, 8, 119, + 223, 255, 216, 102, 159, 27, 41, 139, 120, 151, 90, 103, 111, 199, 159, 27, 69, 205, 243, 107, 38, 9, 108, 159, + 67, 63, 164, 59, 70, 39, 17, 106, 192, 71, 95, 70, 80, 9, 124, 213, 146, 222, 27, 239, 203, 219, 60, 52, 252, 101, + 224, 255, 255, 255, 255, 191, 27, 28, 103, 24, 245, 13, 55, 187, 11, 65, 106, 27, 196, 169, 254, 199, 147, 207, + 28, 12, 27, 85, 111, 115, 134, 75, 188, 166, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3091, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "53efb9ff1eaf712fbf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8825138705489975459" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83741b6830dc32df5cbcde65" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12500412560438898503" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11753003570304847504" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3545784453727976339" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f80bf4953efb9ff1eaf712fbf1b7a7930e52247d8a34c83741b6830dc32df5cbcde651bad7a62fe62caaf47ff1ba31b0e7a23eb0e901b3135282c9e8efb9380ff", + "cborBytes": [ + 159, 128, 191, 73, 83, 239, 185, 255, 30, 175, 113, 47, 191, 27, 122, 121, 48, 229, 34, 71, 216, 163, 76, 131, + 116, 27, 104, 48, 220, 50, 223, 92, 188, 222, 101, 27, 173, 122, 98, 254, 98, 202, 175, 71, 255, 27, 163, 27, 14, + 122, 35, 235, 14, 144, 27, 49, 53, 40, 44, 158, 142, 251, 147, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3092, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7698fb" + } + ] + }, + "cborHex": "9f437698fbff", + "cborBytes": [159, 67, 118, 152, 251, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3093, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15203376047981057071" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b03cd5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14952714823455777574" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c1f2795eddcebc078b4a2019" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14702002027897851457" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c984e32c8beb1e35906f4976" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12825096093075029403" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dff483507e5e486a918e2f89" + }, + { + "_tag": "ByteArray", + "bytearray": "2659e6d90d682953e76cd5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16933906873256824326" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1bd2fd3df6f697d42f43b03cd59fd8669f1bcf82b6e8b7cca32680ff4cc1f2795eddcebc078b4a2019ffd8669f1bcc0800f327ec8e419f019f4cc984e32c8beb1e35906f49761bb1fbe4f245fcbd9b4cdff483507e5e486a918e2f894b2659e6d90d682953e76cd51beb015294e004ce06ffffff80ff", + "cborBytes": [ + 159, 27, 210, 253, 61, 246, 246, 151, 212, 47, 67, 176, 60, 213, 159, 216, 102, 159, 27, 207, 130, 182, 232, 183, + 204, 163, 38, 128, 255, 76, 193, 242, 121, 94, 221, 206, 188, 7, 139, 74, 32, 25, 255, 216, 102, 159, 27, 204, 8, + 0, 243, 39, 236, 142, 65, 159, 1, 159, 76, 201, 132, 227, 44, 139, 235, 30, 53, 144, 111, 73, 118, 27, 177, 251, + 228, 242, 69, 252, 189, 155, 76, 223, 244, 131, 80, 126, 94, 72, 106, 145, 142, 47, 137, 75, 38, 89, 230, 217, 13, + 104, 41, 83, 231, 108, 213, 27, 235, 1, 82, 148, 224, 4, 206, 6, 255, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3094, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4e11e9913dd38f8a18" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9108674837240956411" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3837347567551302864" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10717387244113253549" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1830506727594522657" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11199132798395897447" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6088992259469570452" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2713427201471232114" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11072063928898960848" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6256153564225373651" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1bcbd0dc59644481baf412" + }, + { + "_tag": "ByteArray", + "bytearray": "57325eabb1" + } + ] + } + ] + } + ] + }, + "cborHex": "9f494e11e9913dd38f8a189fbf1b7e688381304945fb1b3540ff48139accd01b94bbceea55ac54ad1b1967442b993bf8211b9b6b4ff1d0d056671b54807232f9c97194ffd8669f1b25a807a9d39338729f1b99a7df7b24703dd01b56d2528527f285d34b1bcbd0dc59644481baf4124557325eabb1ffffffff", + "cborBytes": [ + 159, 73, 78, 17, 233, 145, 61, 211, 143, 138, 24, 159, 191, 27, 126, 104, 131, 129, 48, 73, 69, 251, 27, 53, 64, + 255, 72, 19, 154, 204, 208, 27, 148, 187, 206, 234, 85, 172, 84, 173, 27, 25, 103, 68, 43, 153, 59, 248, 33, 27, + 155, 107, 79, 241, 208, 208, 86, 103, 27, 84, 128, 114, 50, 249, 201, 113, 148, 255, 216, 102, 159, 27, 37, 168, + 7, 169, 211, 147, 56, 114, 159, 27, 153, 167, 223, 123, 36, 112, 61, 208, 27, 86, 210, 82, 133, 39, 242, 133, 211, + 75, 27, 203, 208, 220, 89, 100, 68, 129, 186, 244, 18, 69, 87, 50, 94, 171, 177, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3095, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2090313460387913101" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6f60e3f59f1abb" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4764671134493024852" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ef4181e1d5072d5ccafdd7" + }, + { + "_tag": "ByteArray", + "bytearray": "fadf1c2b" + }, + { + "_tag": "ByteArray", + "bytearray": "612c25" + }, + { + "_tag": "ByteArray", + "bytearray": "209a7d79cc50486f009000fc" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10293211775313245541" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d50cf7f8ba" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff010590" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5594981871366391524" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3f3bf0dff9e7525" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6ba06dd4" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1d0249046ba39d8d9fd87b9f476f60e3f59f1abbffffff9fd8669f1b421f83270b03a2549f4bef4181e1d5072d5ccafdd744fadf1c2b43612c254c209a7d79cc50486f009000fcffffffd8669f1b8ed8d592e969f5659f1bfffffffffffffff4ffff45d50cf7f8ba9f44ff010590bf1b4da55e5e578b46e448d3f3bf0dff9e7525ff446ba06dd4ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 29, 2, 73, 4, 107, 163, 157, 141, 159, 216, 123, 159, 71, 111, 96, 227, 245, 159, 26, 187, + 255, 255, 255, 159, 216, 102, 159, 27, 66, 31, 131, 39, 11, 3, 162, 84, 159, 75, 239, 65, 129, 225, 213, 7, 45, + 92, 202, 253, 215, 68, 250, 223, 28, 43, 67, 97, 44, 37, 76, 32, 154, 125, 121, 204, 80, 72, 111, 0, 144, 0, 252, + 255, 255, 255, 216, 102, 159, 27, 142, 216, 213, 146, 233, 105, 245, 101, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 244, 255, 255, 69, 213, 12, 247, 248, 186, 159, 68, 255, 1, 5, 144, 191, 27, 77, 165, 94, 94, 87, 139, 70, + 228, 72, 211, 243, 191, 13, 255, 158, 117, 37, 255, 68, 107, 160, 109, 212, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3096, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11253892875528683904" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65e8a00984e50f00e2fd3e1f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "155a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5dfc719a91" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78ba2e7a" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4658630473726731363" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12758951926388927051" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16245399789369581594" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15024703153269130452" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d93d4108975c139900" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4029af011adfd0802cc4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18118647001282946392" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5245f24dc06989" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5634669075817226562" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "85678010fa4a9810ce861c" + } + ] + }, + "cborHex": "9fbf1b9c2ddbf1d22fc1804c65e8a00984e50f00e2fd3e1f42155a4129455dfc719a914478ba2e7aff1b40a6c7bbbe4aa46380bf1bb110e72d5eb2aa4b1be17341095f94601a1bd08277e9e24c44d449d93d4108975c1399004a4029af011adfd0802cc41bfb725d73722aa558475245f24dc069891b4e325dabb2f6e142ff4b85678010fa4a9810ce861cff", + "cborBytes": [ + 159, 191, 27, 156, 45, 219, 241, 210, 47, 193, 128, 76, 101, 232, 160, 9, 132, 229, 15, 0, 226, 253, 62, 31, 66, + 21, 90, 65, 41, 69, 93, 252, 113, 154, 145, 68, 120, 186, 46, 122, 255, 27, 64, 166, 199, 187, 190, 74, 164, 99, + 128, 191, 27, 177, 16, 231, 45, 94, 178, 170, 75, 27, 225, 115, 65, 9, 95, 148, 96, 26, 27, 208, 130, 119, 233, + 226, 76, 68, 212, 73, 217, 61, 65, 8, 151, 92, 19, 153, 0, 74, 64, 41, 175, 1, 26, 223, 208, 128, 44, 196, 27, + 251, 114, 93, 115, 114, 42, 165, 88, 71, 82, 69, 242, 77, 192, 105, 137, 27, 78, 50, 93, 171, 178, 246, 225, 66, + 255, 75, 133, 103, 128, 16, 250, 74, 152, 16, 206, 134, 28, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3097, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "706fdb7d9f19bb15" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11819794519441978091" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9ce7f1b6252748d8ed22" + }, + { + "_tag": "ByteArray", + "bytearray": "2a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "17178a0f9c3f1df1891a5e" + }, + { + "_tag": "ByteArray", + "bytearray": "57c668261d615b848a956a71" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1072085795613303531" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "91da22739e9bc9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4dcbc9b66fc9a4bf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5141371c837fc188ccf1e75" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10758609374962255195" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "260314953100617506" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "27ea64c3b7103fa11005bf36" + } + ] + }, + "cborHex": "9f48706fdb7d9f19bb159fd8669f1ba408587dd172b2eb80ff9f4a9ce7f1b6252748d8ed22412aff9f4b17178a0f9c3f1df1891a5e4c57c668261d615b848a956a711b0ee0d059d845e2ebffbf4791da22739e9bc9484dcbc9b66fc9a4bf4cb5141371c837fc188ccf1e751b954e423997d0055b42d4f91b039cd3121548e722ffff804c27ea64c3b7103fa11005bf36ff", + "cborBytes": [ + 159, 72, 112, 111, 219, 125, 159, 25, 187, 21, 159, 216, 102, 159, 27, 164, 8, 88, 125, 209, 114, 178, 235, 128, + 255, 159, 74, 156, 231, 241, 182, 37, 39, 72, 216, 237, 34, 65, 42, 255, 159, 75, 23, 23, 138, 15, 156, 63, 29, + 241, 137, 26, 94, 76, 87, 198, 104, 38, 29, 97, 91, 132, 138, 149, 106, 113, 27, 14, 224, 208, 89, 216, 69, 226, + 235, 255, 191, 71, 145, 218, 34, 115, 158, 155, 201, 72, 77, 203, 201, 182, 111, 201, 164, 191, 76, 181, 20, 19, + 113, 200, 55, 252, 24, 140, 207, 30, 117, 27, 149, 78, 66, 57, 151, 208, 5, 91, 66, 212, 249, 27, 3, 156, 211, 18, + 21, 72, 231, 34, 255, 255, 128, 76, 39, 234, 100, 195, 183, 16, 63, 161, 16, 5, 191, 54, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3098, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "85d387" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2460847645847988060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3112210124074967112" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12285633309593136499" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75cf85" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15124517076658744581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6398780580121637925" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15700988730521366467" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32b72123186e8ea1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15745184834125236232" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d12267cf706" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "332414d0bd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15988557428119619374" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "865660143cba679c1ee7" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2e3f68fc30ee57bd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7748993543452898415" + } + } + ] + }, + "cborHex": "9f4385d387bf1b2226afe55120275c1b2b30ca9e5fdce0481baa7f56672b016d734375cf851bd1e51425e992ed051b58cd090911d174251bd9e51e1021232fc34832b72123186e8ea11bda82222f60e70808465d12267cf706ffbf45332414d0bd1bdde2c4451600c72e41a14a865660143cba679c1ee7ff482e3f68fc30ee57bd1b6b89f492644e346fff", + "cborBytes": [ + 159, 67, 133, 211, 135, 191, 27, 34, 38, 175, 229, 81, 32, 39, 92, 27, 43, 48, 202, 158, 95, 220, 224, 72, 27, + 170, 127, 86, 103, 43, 1, 109, 115, 67, 117, 207, 133, 27, 209, 229, 20, 37, 233, 146, 237, 5, 27, 88, 205, 9, 9, + 17, 209, 116, 37, 27, 217, 229, 30, 16, 33, 35, 47, 195, 72, 50, 183, 33, 35, 24, 110, 142, 161, 27, 218, 130, 34, + 47, 96, 231, 8, 8, 70, 93, 18, 38, 124, 247, 6, 255, 191, 69, 51, 36, 20, 208, 189, 27, 221, 226, 196, 69, 22, 0, + 199, 46, 65, 161, 74, 134, 86, 96, 20, 60, 186, 103, 156, 30, 231, 255, 72, 46, 63, 104, 252, 48, 238, 87, 189, + 27, 107, 137, 244, 146, 100, 78, 52, 111, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3099, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2592114874697850485" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b7c3dcb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2993607090267578332" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32821e7692d071dd35c08008" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8348418913593151422" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5794203947420069824" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8473395553728747236" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9755015703491625641" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18055396897683800918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e003f3a1c26e7a351" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7635664118766429204" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "536b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75fb0018072fc204feb6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e3bc1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff18fbcf42" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + "cborHex": "9fbf1b23f90abeb35f1e75440b7c3dcb1b298b6dc9ac7d5fdc4c32821e7692d071dd35c080081b73db8ac524df4fbe1b506925ca8a23afc01b75978c5cb56056e41b8760c71918f9c2a91bfa91a7d11d220356497e003f3a1c26e7a351ffbf1b69f7540f7f44e4140e42536b4a75fb0018072fc204feb6436e3bc10445ff18fbcf420eff02ff", + "cborBytes": [ + 159, 191, 27, 35, 249, 10, 190, 179, 95, 30, 117, 68, 11, 124, 61, 203, 27, 41, 139, 109, 201, 172, 125, 95, 220, + 76, 50, 130, 30, 118, 146, 208, 113, 221, 53, 192, 128, 8, 27, 115, 219, 138, 197, 36, 223, 79, 190, 27, 80, 105, + 37, 202, 138, 35, 175, 192, 27, 117, 151, 140, 92, 181, 96, 86, 228, 27, 135, 96, 199, 25, 24, 249, 194, 169, 27, + 250, 145, 167, 209, 29, 34, 3, 86, 73, 126, 0, 63, 58, 28, 38, 231, 163, 81, 255, 191, 27, 105, 247, 84, 15, 127, + 68, 228, 20, 14, 66, 83, 107, 74, 117, 251, 0, 24, 7, 47, 194, 4, 254, 182, 67, 110, 59, 193, 4, 69, 255, 24, 251, + 207, 66, 14, 255, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3100, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3653803729518887276" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "341290607883856928" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13678242159888023579" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12346917671449454071" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14741878155020139220" + } + } + ] + }, + "cborHex": "9f9f80d8669f1b32b4eb2220f8816c9f1b04bc81ffe8182c201bbdd2e0c623e5c01bffff1bab59103495bce5f7ff1bcc95ac138010fad4ff", + "cborBytes": [ + 159, 159, 128, 216, 102, 159, 27, 50, 180, 235, 34, 32, 248, 129, 108, 159, 27, 4, 188, 129, 255, 232, 24, 44, 32, + 27, 189, 210, 224, 198, 35, 229, 192, 27, 255, 255, 27, 171, 89, 16, 52, 149, 188, 229, 247, 255, 27, 204, 149, + 172, 19, 128, 16, 250, 212, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3101, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c4b4eb" + } + ] + }, + "cborHex": "9f43c4b4ebff", + "cborBytes": [159, 67, 196, 180, 235, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3102, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5205517990766691861" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e983fb94e793f0b0e102" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9485625422804254734" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10187293315526032796" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7314084205426622687" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c719db8e0a2b4690bdff7d56" + } + ] + }, + "cborHex": "9f80bf1b483db708578dc6154ae983fb94e793f0b0e1021b83a3b610a6a9800e41b91b8d60894bbea3fd9c1b6580d8d549bfc0dfff4cc719db8e0a2b4690bdff7d56ff", + "cborBytes": [ + 159, 128, 191, 27, 72, 61, 183, 8, 87, 141, 198, 21, 74, 233, 131, 251, 148, 231, 147, 240, 176, 225, 2, 27, 131, + 163, 182, 16, 166, 169, 128, 14, 65, 185, 27, 141, 96, 137, 75, 190, 163, 253, 156, 27, 101, 128, 216, 213, 73, + 191, 192, 223, 255, 76, 199, 25, 219, 142, 10, 43, 70, 144, 189, 255, 125, 86, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3103, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6a4df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8534867830310079452" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0c72fb" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5284948705919539950" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10642549116428154852" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7335817384891945050" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2de160218892380" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14535544170709656155" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10021071042582247299" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16086863370230205801" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "326926261574526986" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "858524084299709470" + }, + "fields": [] + } + ] + }, + "cborHex": "9f41e6bf43a6a4df1b7671f1126e8a8bdcff430c72fbbf1b4957e8d8e07e9aee1b93b1ee08e558f7e41b65ce0f0b739e905a48e2de1602188923801bc9b8a0692026225b1b8b11ff04f21177831bdf400500dcd08d691b048979b3e8e5680affd8669f1b0bea171b23cd3c1e80ffff", + "cborBytes": [ + 159, 65, 230, 191, 67, 166, 164, 223, 27, 118, 113, 241, 18, 110, 138, 139, 220, 255, 67, 12, 114, 251, 191, 27, + 73, 87, 232, 216, 224, 126, 154, 238, 27, 147, 177, 238, 8, 229, 88, 247, 228, 27, 101, 206, 15, 11, 115, 158, + 144, 90, 72, 226, 222, 22, 2, 24, 137, 35, 128, 27, 201, 184, 160, 105, 32, 38, 34, 91, 27, 139, 17, 255, 4, 242, + 17, 119, 131, 27, 223, 64, 5, 0, 220, 208, 141, 105, 27, 4, 137, 121, 179, 232, 229, 104, 10, 255, 216, 102, 159, + 27, 11, 234, 23, 27, 35, 205, 60, 30, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3104, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fffa03" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "516b63bec97c7c2545" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1856297375910367510" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2172924173270239699" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18036674417226429576" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c3993" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f43fffa039f9f49516b63bec97c7c2545ffffbf1b19c2e4a0d8a091161b1e27c705dfa1c9d31bfa4f23d1f0283488430c3993ff80ff", + "cborBytes": [ + 159, 67, 255, 250, 3, 159, 159, 73, 81, 107, 99, 190, 201, 124, 124, 37, 69, 255, 255, 191, 27, 25, 194, 228, 160, + 216, 160, 145, 22, 27, 30, 39, 199, 5, 223, 161, 201, 211, 27, 250, 79, 35, 209, 240, 40, 52, 136, 67, 12, 57, + 147, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3105, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2254964304855544190" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2134730530849275386" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6658298272873955971" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8225420007692461276" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc6e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9502696486208459575" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "970253" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15864596399283907127" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9824261092264851441" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf011b1f4b3e168419b17e1b1da0161b8673bdfa42ffea1b5c670700833fc2830d1b72268feab6e664dc42bc6e1b83e05c1b54ced337439702531bdc2a5e5ef4422a371b8856c969892337f1ffff", + "cborBytes": [ + 159, 191, 1, 27, 31, 75, 62, 22, 132, 25, 177, 126, 27, 29, 160, 22, 27, 134, 115, 189, 250, 66, 255, 234, 27, 92, + 103, 7, 0, 131, 63, 194, 131, 13, 27, 114, 38, 143, 234, 182, 230, 100, 220, 66, 188, 110, 27, 131, 224, 92, 27, + 84, 206, 211, 55, 67, 151, 2, 83, 27, 220, 42, 94, 94, 244, 66, 42, 55, 27, 136, 86, 201, 105, 137, 35, 55, 241, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3106, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aae68d02684b21b3cd4909" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0aa96a15a2c87a70a9ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09bc883fb77b70cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20481925aeab89e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f3b9f6fd80d14d94448" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "285c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4221" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "916ccb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3be645f1fb0" + } + } + ] + } + ] + }, + "cborHex": "9f4baae68d02684b21b3cd4909bf4a0aa96a15a2c87a70a9ad4809bc883fb77b70cb4820481925aeab89e24a8f3b9f6fd80d14d9444842285c42422143916ccb46a3be645f1fb0ffff", + "cborBytes": [ + 159, 75, 170, 230, 141, 2, 104, 75, 33, 179, 205, 73, 9, 191, 74, 10, 169, 106, 21, 162, 200, 122, 112, 169, 173, + 72, 9, 188, 136, 63, 183, 123, 112, 203, 72, 32, 72, 25, 37, 174, 171, 137, 226, 74, 143, 59, 159, 111, 216, 13, + 20, 217, 68, 72, 66, 40, 92, 66, 66, 33, 67, 145, 108, 203, 70, 163, 190, 100, 95, 31, 176, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3107, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "32500489848880093" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [] + } + ] + }, + "cborHex": "9f1b00737705f877fbddd8669f1bfffffffffffffff980ffff", + "cborBytes": [ + 159, 27, 0, 115, 119, 5, 248, 119, 251, 221, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3108, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13882631732867449998" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "fdff" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9256b3f5251bd2ad5c18e8a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9693913924118323226" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98d315000eb65fe92c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab7422" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f801fd" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13672705172093958163" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17583475050485406117" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16981782858268649935" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3887" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19ff664d43ac858918d69ab4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e96b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d278978e3480" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "78" + }, + { + "_tag": "ByteArray", + "bytearray": "6c952f033802fa017b03" + }, + { + "_tag": "ByteArray", + "bytearray": "f9ef14065607c8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11406401499770703679" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f80d8669f1bc0a90401f921448e9f8042fdffbf4c9256b3f5251bd2ad5c18e8a51b8687b35a7a49201a4998d315000eb65fe92c0d43ab742243f801fdffbf1bbdbf34e9b54e78131bf4050d65ad2059a51bebab698947eba9cf4238874c19ff664d43ac858918d69ab4415b42e96b46d278978e3480ff9f41784a6c952f033802fa017b0347f9ef14065607c8091b9e4badbaf750cf3fffffffff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 192, 169, 4, 1, 249, 33, 68, 142, 159, 128, 66, 253, 255, 191, 76, 146, 86, 179, 245, + 37, 27, 210, 173, 92, 24, 232, 165, 27, 134, 135, 179, 90, 122, 73, 32, 26, 73, 152, 211, 21, 0, 14, 182, 95, 233, + 44, 13, 67, 171, 116, 34, 67, 248, 1, 253, 255, 191, 27, 189, 191, 52, 233, 181, 78, 120, 19, 27, 244, 5, 13, 101, + 173, 32, 89, 165, 27, 235, 171, 105, 137, 71, 235, 169, 207, 66, 56, 135, 76, 25, 255, 102, 77, 67, 172, 133, 137, + 24, 214, 154, 180, 65, 91, 66, 233, 107, 70, 210, 120, 151, 142, 52, 128, 255, 159, 65, 120, 74, 108, 149, 47, 3, + 56, 2, 250, 1, 123, 3, 71, 249, 239, 20, 6, 86, 7, 200, 9, 27, 158, 75, 173, 186, 247, 80, 207, 63, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3109, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffff7ff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3110, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e379" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e59db26dc7d570eed968" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "32811af23aed95cad1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "637170446091157568" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "729d9b06844d4fe81bf3" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2f3cb3cf1562125f1e2939" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14639386274776068184" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7338627309095572825" + } + } + } + ] + } + ] + }, + "cborHex": "9f42e3799f4ae59db26dc7d570eed9689f4932811af23aed95cad1ffd8669f1b08d7af2514a400409f4a729d9b06844d4fe81bf3ffff4b2f3cb3cf1562125f1e2939ffbf1bcb298c410dc1b0581b65d80aa7e99f5559ffff", + "cborBytes": [ + 159, 66, 227, 121, 159, 74, 229, 157, 178, 109, 199, 213, 112, 238, 217, 104, 159, 73, 50, 129, 26, 242, 58, 237, + 149, 202, 209, 255, 216, 102, 159, 27, 8, 215, 175, 37, 20, 164, 0, 64, 159, 74, 114, 157, 155, 6, 132, 77, 79, + 232, 27, 243, 255, 255, 75, 47, 60, 179, 207, 21, 98, 18, 95, 30, 41, 57, 255, 191, 27, 203, 41, 140, 65, 13, 193, + 176, 88, 27, 101, 216, 10, 167, 233, 159, 85, 89, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3111, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6420807655201424998" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "20c6efddd31c97aad6" + }, + { + "_tag": "ByteArray", + "bytearray": "df26519ce6c6" + }, + { + "_tag": "ByteArray", + "bytearray": "499150fad89e05199ed4" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "51418a32d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "181832973282525343" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11432519111386369292" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8302430653537673934" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5539791713704697878" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13531687325111363894" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18338210414449708139" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22572dcad68d4d4f8708ef60" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15765705244569236365" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25465f50db0c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2e025dc06545108" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4981d601dc52cad054b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9037bd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ebfc60ac4d96158744ebe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a2941b5" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f9f80d8669f1b591b4a8b2363c6669f4920c6efddd31c97aad646df26519ce6c64a499150fad89e05199ed4ffff4551418a32d61b0286002034f5409fff9fd8669f1b9ea8778f4a0c8d0c9f41be1b733828b0f46d62ce1b4ce14b36690560161bbbca35eda0eb2936ffffff1bfe7e693641a4cc6bbf4c22572dcad68d4d4f8708ef601bdacb0963c00ff38d4625465f50db0c48f2e025dc065451084a4981d601dc52cad054b8439037bd4b8ebfc60ac4d96158744ebe444a2941b5ffa0ff", + "cborBytes": [ + 159, 159, 128, 216, 102, 159, 27, 89, 27, 74, 139, 35, 99, 198, 102, 159, 73, 32, 198, 239, 221, 211, 28, 151, + 170, 214, 70, 223, 38, 81, 156, 230, 198, 74, 73, 145, 80, 250, 216, 158, 5, 25, 158, 212, 255, 255, 69, 81, 65, + 138, 50, 214, 27, 2, 134, 0, 32, 52, 245, 64, 159, 255, 159, 216, 102, 159, 27, 158, 168, 119, 143, 74, 12, 141, + 12, 159, 65, 190, 27, 115, 56, 40, 176, 244, 109, 98, 206, 27, 76, 225, 75, 54, 105, 5, 96, 22, 27, 187, 202, 53, + 237, 160, 235, 41, 54, 255, 255, 255, 27, 254, 126, 105, 54, 65, 164, 204, 107, 191, 76, 34, 87, 45, 202, 214, + 141, 77, 79, 135, 8, 239, 96, 27, 218, 203, 9, 99, 192, 15, 243, 141, 70, 37, 70, 95, 80, 219, 12, 72, 242, 224, + 37, 220, 6, 84, 81, 8, 74, 73, 129, 214, 1, 220, 82, 202, 208, 84, 184, 67, 144, 55, 189, 75, 142, 191, 198, 10, + 196, 217, 97, 88, 116, 78, 190, 68, 74, 41, 65, 181, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3112, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "ByteArray", + "bytearray": "21" + } + ] + }, + "cborHex": "9f1bffffffffffffffec4121ff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 65, 33, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3113, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "06" + } + ] + }, + "cborHex": "9f4106ff", + "cborBytes": [159, 65, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3114, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15823884367260069395" + } + }, + { + "_tag": "ByteArray", + "bytearray": "83" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15687313177549017646" + } + } + ] + }, + "cborHex": "9f1bdb99bafe5564ae1341831bd9b48838541d122eff", + "cborBytes": [159, 27, 219, 153, 186, 254, 85, 100, 174, 19, 65, 131, 27, 217, 180, 136, 56, 84, 29, 18, 46, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3115, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3936675327833093810" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11060186345574046866" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e1eb94cb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17756813132554465479" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "30b975cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2613429221231439976" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b6e5cc3b39794b" + }, + { + "_tag": "ByteArray", + "bytearray": "a3230f4721c0616c9f36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1597323220600430932" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13267387170554602054" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5898202015264188177" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "217441ba6edf50d58a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "663738069579456469" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7610956725119241633" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c22e8052b458c0c2ee0ee" + }, + { + "_tag": "ByteArray", + "bytearray": "eb" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14195088932900944626" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "901fa555794ea842a5" + }, + { + "_tag": "ByteArray", + "bytearray": "c349133dfe20e8f1" + }, + { + "_tag": "ByteArray", + "bytearray": "5aae" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10450045211862376062" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8251062802764257126" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7081100656274968764" + } + }, + { + "_tag": "ByteArray", + "bytearray": "61" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6739723326471147605" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fae1" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13838753916104864558" + } + }, + { + "_tag": "ByteArray", + "bytearray": "48bea9625d16db8f2fe64117" + }, + { + "_tag": "ByteArray", + "bytearray": "6ba1" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16949637619925436664" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9855798650272627226" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15840424856683855435" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5511969019731324319" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c51b780d9a12502e895dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cefa213e4f131" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8698576805147709136" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d79969c81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15229763766699279572" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "953be67fc4a6fc3865" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "434709089567463928" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a22f3bc533" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7a689a150cb909b6f867327" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae91eae702f8039eb2cd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eaf9cf1d44014308c30a866f" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8669f1b36a1e15a6f8936b280ffd8669f1b997dace1c5911c929f44e1eb94cbd8669f1bf66cdf76e4e670c79f4430b975cc1b2444c407b920306847b6e5cc3b39794b4aa3230f4721c0616c9f361b162ad501935f2154ffff1bb81f3a56867b6246d8669f1b51da9f7b9d50a7119f49217441ba6edf50d58a1b09361241f52fdfd51b699f8cd1219a4da14b4c22e8052b458c0c2ee0ee41ebffffd8669f1bc4ff162cf8a3baf29f49901fa555794ea842a548c349133dfe20e8f1425aaeffffffff9f1b910604c0e3d41e7ed8669f1b7281a9e73233d7669f1b62451f87940e10bc41611b5d884ea826ba105542fae1ffff9f1bc00d215da779f32e4c48bea9625d16db8f2fe64117426ba1ff80d8669f1beb39359cbf40c8f89f1b88c6d4a777463a1a1bdbd47e7b21e8be4b1b4c7e729eaa0b2d9fffffffbf4b5c51b780d9a12502e895dc42bf02477cefa213e4f1311b78b78d846a480ed0457d79969c811bd35afd747f39c4d449953be67fc4a6fc38651b0608659d204d59f845a22f3bc5334cb7a689a150cb909b6f8673274aae91eae702f8039eb2cd4ceaf9cf1d44014308c30a866fffa0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 54, 161, 225, 90, 111, 137, 54, 178, 128, 255, 216, 102, 159, 27, 153, 125, 172, 225, 197, + 145, 28, 146, 159, 68, 225, 235, 148, 203, 216, 102, 159, 27, 246, 108, 223, 118, 228, 230, 112, 199, 159, 68, 48, + 185, 117, 204, 27, 36, 68, 196, 7, 185, 32, 48, 104, 71, 182, 229, 204, 59, 57, 121, 75, 74, 163, 35, 15, 71, 33, + 192, 97, 108, 159, 54, 27, 22, 42, 213, 1, 147, 95, 33, 84, 255, 255, 27, 184, 31, 58, 86, 134, 123, 98, 70, 216, + 102, 159, 27, 81, 218, 159, 123, 157, 80, 167, 17, 159, 73, 33, 116, 65, 186, 110, 223, 80, 213, 138, 27, 9, 54, + 18, 65, 245, 47, 223, 213, 27, 105, 159, 140, 209, 33, 154, 77, 161, 75, 76, 34, 232, 5, 43, 69, 140, 12, 46, 224, + 238, 65, 235, 255, 255, 216, 102, 159, 27, 196, 255, 22, 44, 248, 163, 186, 242, 159, 73, 144, 31, 165, 85, 121, + 78, 168, 66, 165, 72, 195, 73, 19, 61, 254, 32, 232, 241, 66, 90, 174, 255, 255, 255, 255, 159, 27, 145, 6, 4, + 192, 227, 212, 30, 126, 216, 102, 159, 27, 114, 129, 169, 231, 50, 51, 215, 102, 159, 27, 98, 69, 31, 135, 148, + 14, 16, 188, 65, 97, 27, 93, 136, 78, 168, 38, 186, 16, 85, 66, 250, 225, 255, 255, 159, 27, 192, 13, 33, 93, 167, + 121, 243, 46, 76, 72, 190, 169, 98, 93, 22, 219, 143, 47, 230, 65, 23, 66, 107, 161, 255, 128, 216, 102, 159, 27, + 235, 57, 53, 156, 191, 64, 200, 248, 159, 27, 136, 198, 212, 167, 119, 70, 58, 26, 27, 219, 212, 126, 123, 33, + 232, 190, 75, 27, 76, 126, 114, 158, 170, 11, 45, 159, 255, 255, 255, 191, 75, 92, 81, 183, 128, 217, 161, 37, 2, + 232, 149, 220, 66, 191, 2, 71, 124, 239, 162, 19, 228, 241, 49, 27, 120, 183, 141, 132, 106, 72, 14, 208, 69, 125, + 121, 150, 156, 129, 27, 211, 90, 253, 116, 127, 57, 196, 212, 73, 149, 59, 230, 127, 196, 166, 252, 56, 101, 27, + 6, 8, 101, 157, 32, 77, 89, 248, 69, 162, 47, 59, 197, 51, 76, 183, 166, 137, 161, 80, 203, 144, 155, 111, 134, + 115, 39, 74, 174, 145, 234, 231, 2, 248, 3, 158, 178, 205, 76, 234, 249, 207, 29, 68, 1, 67, 8, 195, 10, 134, 111, + 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3116, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18299936357775103845" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "002a4406f8000507ff96" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18358384537799393056" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd2b03ed086f3a1d8f" + } + } + ] + } + ] + }, + "cborHex": "9fbf1bfdf66f290170d7654a002a4406f8000507ff961bfec61578618e7f2049cd2b03ed086f3a1d8fffff", + "cborBytes": [ + 159, 191, 27, 253, 246, 111, 41, 1, 112, 215, 101, 74, 0, 42, 68, 6, 248, 0, 5, 7, 255, 150, 27, 254, 198, 21, + 120, 97, 142, 127, 32, 73, 205, 43, 3, 237, 8, 111, 58, 29, 143, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3117, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18207958228323410383" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9ee06bfe54d785e37e4f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "5119" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16237226138928726716" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8a75c17a0a593518e17200e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4061178889789356173" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17092027938634307881" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b49" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2992418458763991695" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a447eed79be2" + }, + { + "_tag": "ByteArray", + "bytearray": "9e36e2be2c081e50" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9587326985097205762" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6414527026289080226" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2835377818329123041" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12764185360497963856" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f4b1c27" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14350282473293062491" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13885493086376471856" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16329038882614449748" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16312307553222079081" + } + } + } + ] + } + ] + }, + "cborHex": "9f1bfcafa989ec5e21cf4a9ee06bfe54d785e37e4f9fa0425119d8669f1be15637251488c2bc9f4c8a75c17a0a593518e17200e81b385c34aee735b88d1bed3314da4d599929422b491b298734bbd5f31a8fffff46a447eed79be2489e36e2be2c081e50ff1b850d0718dc3c5802bf1b5904fa58441a77a21b2759491a718788e11bb1237ef533b8f350446f4b1c271bc72671e0df25a15b1bc0b32e64c09cad301be29c665949c696541be260f54b18b93269ffff", + "cborBytes": [ + 159, 27, 252, 175, 169, 137, 236, 94, 33, 207, 74, 158, 224, 107, 254, 84, 215, 133, 227, 126, 79, 159, 160, 66, + 81, 25, 216, 102, 159, 27, 225, 86, 55, 37, 20, 136, 194, 188, 159, 76, 138, 117, 193, 122, 10, 89, 53, 24, 225, + 114, 0, 232, 27, 56, 92, 52, 174, 231, 53, 184, 141, 27, 237, 51, 20, 218, 77, 89, 153, 41, 66, 43, 73, 27, 41, + 135, 52, 187, 213, 243, 26, 143, 255, 255, 70, 164, 71, 238, 215, 155, 226, 72, 158, 54, 226, 190, 44, 8, 30, 80, + 255, 27, 133, 13, 7, 24, 220, 60, 88, 2, 191, 27, 89, 4, 250, 88, 68, 26, 119, 162, 27, 39, 89, 73, 26, 113, 135, + 136, 225, 27, 177, 35, 126, 245, 51, 184, 243, 80, 68, 111, 75, 28, 39, 27, 199, 38, 113, 224, 223, 37, 161, 91, + 27, 192, 179, 46, 100, 192, 156, 173, 48, 27, 226, 156, 102, 89, 73, 198, 150, 84, 27, 226, 96, 245, 75, 24, 185, + 50, 105, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3118, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "57213bc144ee1ef208fb" + }, + { + "_tag": "ByteArray", + "bytearray": "9b2d0a48a535" + } + ] + }, + "cborHex": "9f4a57213bc144ee1ef208fb469b2d0a48a535ff", + "cborBytes": [159, 74, 87, 33, 59, 193, 68, 238, 30, 242, 8, 251, 70, 155, 45, 10, 72, 165, 53, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3119, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "321289bbae858664c4b735d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5093063821416450773" + } + } + ] + }, + "cborHex": "9f4c321289bbae858664c4b735d81b46ae328fb5ebcad5ff", + "cborBytes": [ + 159, 76, 50, 18, 137, 187, 174, 133, 134, 100, 196, 183, 53, 216, 27, 70, 174, 50, 143, 181, 235, 202, 213, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3120, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a7" + } + ] + }, + "cborHex": "9f41a7ff", + "cborBytes": [159, 65, 167, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3121, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c66cfc539" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33cb49f3089b134e81fd" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + }, + "cborHex": "9fbf456c66cfc5394a33cb49f3089b134e81fdff1bffffffffffffffefff", + "cborBytes": [ + 159, 191, 69, 108, 102, 207, 197, 57, 74, 51, 203, 73, 243, 8, 155, 19, 78, 129, 253, 255, 27, 255, 255, 255, 255, + 255, 255, 255, 239, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3122, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2413476863400033153" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "beadb0" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18238350125295928744" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11391479989368842602" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5331405548256900367" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10234673401085006408" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b550" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3410069562669151543" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12402624754606070918" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0576f9" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b217e646b8c953b819f43beadb0a0d8669f1bfd1ba2cedb7705a880ff1b9e16aab2184ce96affd8669f1b49fcf5196166350f9f9f1b8e08dd3b8fcf924842b550ffffffa09f9f1b2f5300332e4435371bac1ef9809cc2dc86430576f9ffffff", + "cborBytes": [ + 159, 27, 33, 126, 100, 107, 140, 149, 59, 129, 159, 67, 190, 173, 176, 160, 216, 102, 159, 27, 253, 27, 162, 206, + 219, 119, 5, 168, 128, 255, 27, 158, 22, 170, 178, 24, 76, 233, 106, 255, 216, 102, 159, 27, 73, 252, 245, 25, 97, + 102, 53, 15, 159, 159, 27, 142, 8, 221, 59, 143, 207, 146, 72, 66, 181, 80, 255, 255, 255, 160, 159, 159, 27, 47, + 83, 0, 51, 46, 68, 53, 55, 27, 172, 30, 249, 128, 156, 194, 220, 134, 67, 5, 118, 249, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3123, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b1bc5a5fa33d73" + } + ] + }, + "cborHex": "9fd87b8047b1bc5a5fa33d73ff", + "cborBytes": [159, 216, 123, 128, 71, 177, 188, 90, 95, 163, 61, 115, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3124, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c76f8397f800" + } + ] + }, + "cborHex": "9f46c76f8397f800ff", + "cborBytes": [159, 70, 199, 111, 131, 151, 248, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3125, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3672751684529798763" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "000ffc0706b104" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04f8d900040204" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2533e3b0a4a30572b1bf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "175521" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9214403479704200545" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28be04ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88115dfc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0de346827812266962" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1b32f83c32b09dbe6bbf47000ffc0706b1041bfffffffffffffff64704f8d9000402044a2533e3b0a4a30572b1bf431755211b7fe0232510e465614428be04ff0a4488115dfc490de346827812266962ffffff", + "cborBytes": [ + 159, 159, 27, 50, 248, 60, 50, 176, 157, 190, 107, 191, 71, 0, 15, 252, 7, 6, 177, 4, 27, 255, 255, 255, 255, 255, + 255, 255, 246, 71, 4, 248, 217, 0, 4, 2, 4, 74, 37, 51, 227, 176, 164, 163, 5, 114, 177, 191, 67, 23, 85, 33, 27, + 127, 224, 35, 37, 16, 228, 101, 97, 68, 40, 190, 4, 255, 10, 68, 136, 17, 93, 252, 73, 13, 227, 70, 130, 120, 18, + 38, 105, 98, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3126, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9679044271418152709" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9326169027971808598" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8d" + }, + { + "_tag": "ByteArray", + "bytearray": "bf821a52235178" + } + ] + }, + "cborHex": "9f1b8652df7bab2897051b816d35519b827d56418d47bf821a52235178ff", + "cborBytes": [ + 159, 27, 134, 82, 223, 123, 171, 40, 151, 5, 27, 129, 109, 53, 81, 155, 130, 125, 86, 65, 141, 71, 191, 130, 26, + 82, 35, 81, 120, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3127, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9303f1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17478987247196528649" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "012f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14797676866159125037" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01009d06016a0002" + }, + { + "_tag": "ByteArray", + "bytearray": "c773d1ff" + } + ] + }, + "cborHex": "9f9f439303f11bf291d64b2ebb600903ff42012f1bcd5be8b5546e222d4801009d06016a000244c773d1ffff", + "cborBytes": [ + 159, 159, 67, 147, 3, 241, 27, 242, 145, 214, 75, 46, 187, 96, 9, 3, 255, 66, 1, 47, 27, 205, 91, 232, 181, 84, + 110, 34, 45, 72, 1, 0, 157, 6, 1, 106, 0, 2, 68, 199, 115, 209, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3128, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12171935147897196388" + } + } + ] + }, + "cborHex": "9f1ba8eb6686ff810f64ff", + "cborBytes": [159, 27, 168, 235, 102, 134, 255, 129, 15, 100, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3129, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16117116993213475815" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5219075943862871244" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15980787396662141306" + } + }, + { + "_tag": "ByteArray", + "bytearray": "46" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1267013707075788820" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15480407851358585226" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17254326870514233433" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffffa9fd8669f1bdfab80835fe6abe780ffffff9fd8669f1b486de1eb49bba4cc80ff9f1bddc72977a916217a4146ff801b11955640efcda014bf1bd6d574ec0e65818a1bef73aedf137a7059ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 216, 102, 159, 27, 223, 171, 128, 131, 95, + 230, 171, 231, 128, 255, 255, 255, 159, 216, 102, 159, 27, 72, 109, 225, 235, 73, 187, 164, 204, 128, 255, 159, + 27, 221, 199, 41, 119, 169, 22, 33, 122, 65, 70, 255, 128, 27, 17, 149, 86, 64, 239, 205, 160, 20, 191, 27, 214, + 213, 116, 236, 14, 101, 129, 138, 27, 239, 115, 174, 223, 19, 122, 112, 89, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3130, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1734126892602782235" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2885966926661928481" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ffe80c5fb5" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "43662f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "127147" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54820db9513aae75cca02c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "499abe1a6a14d1df7d48" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aae329" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "228018482843420127" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13107212997088637512" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "550500228256539571" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14186778868379866553" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17877894625968498919" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b53e6d179c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4171287091403929082" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c292bfa8bf715e0b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15341392807685777043" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fc79934024a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83a4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ae0efbc587233a09e91" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17979412469021347380" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "23545a6781103ef874" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17262031106298787312" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31ceb6a164770748c70c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43d1270e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d8ab17c94926e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16403404187215211301" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0e3a2b1662c8abab4a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3501093037738415858" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "27ee" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12878470603633703514" + } + } + ] + }, + "cborHex": "9f9f80d8669f1b1810db38950a721b9f1b280d03a11935c62145ffe80c5fb5ffffbf4343662f431271474b54820db9513aae75cca02c4a499abe1a6a14d1df7d4843aae3291b032a159a201b05dfffbf1bb5e62cc69ed9f2481b07a3c50a7a00a3b31bc4e190374cccd5b91bf81b0a70f0b7a8e745b53e6d179c1b39e363825b4db5fa48c292bfa8bf715e0b1bd4e79379f5d7e693ffffbf460fc79934024a4283a44a1ae0efbc587233a09e911bf983b461ae3f0e344923545a6781103ef8741bef8f0dd540aeb5f04a31ceb6a164770748c70c4443d1270e477d8ab17c94926e1be3a49933061e2b254aa0e3a2b1662c8abab4a11b3096619177fdd6f2ff4227ee801bb2b984c7ebe5ba5aff", + "cborBytes": [ + 159, 159, 128, 216, 102, 159, 27, 24, 16, 219, 56, 149, 10, 114, 27, 159, 27, 40, 13, 3, 161, 25, 53, 198, 33, 69, + 255, 232, 12, 95, 181, 255, 255, 191, 67, 67, 102, 47, 67, 18, 113, 71, 75, 84, 130, 13, 185, 81, 58, 174, 117, + 204, 160, 44, 74, 73, 154, 190, 26, 106, 20, 209, 223, 125, 72, 67, 170, 227, 41, 27, 3, 42, 21, 154, 32, 27, 5, + 223, 255, 191, 27, 181, 230, 44, 198, 158, 217, 242, 72, 27, 7, 163, 197, 10, 122, 0, 163, 179, 27, 196, 225, 144, + 55, 76, 204, 213, 185, 27, 248, 27, 10, 112, 240, 183, 168, 231, 69, 181, 62, 109, 23, 156, 27, 57, 227, 99, 130, + 91, 77, 181, 250, 72, 194, 146, 191, 168, 191, 113, 94, 11, 27, 212, 231, 147, 121, 245, 215, 230, 147, 255, 255, + 191, 70, 15, 199, 153, 52, 2, 74, 66, 131, 164, 74, 26, 224, 239, 188, 88, 114, 51, 160, 158, 145, 27, 249, 131, + 180, 97, 174, 63, 14, 52, 73, 35, 84, 90, 103, 129, 16, 62, 248, 116, 27, 239, 143, 13, 213, 64, 174, 181, 240, + 74, 49, 206, 182, 161, 100, 119, 7, 72, 199, 12, 68, 67, 209, 39, 14, 71, 125, 138, 177, 124, 148, 146, 110, 27, + 227, 164, 153, 51, 6, 30, 43, 37, 74, 160, 227, 162, 177, 102, 44, 138, 186, 180, 161, 27, 48, 150, 97, 145, 119, + 253, 214, 242, 255, 66, 39, 238, 128, 27, 178, 185, 132, 199, 235, 229, 186, 90, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3131, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e349c97c27bff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3efd" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6936735017296354337" + } + } + ] + } + ] + }, + "cborHex": "9fbf476e349c97c27bff423efdff9f41b41b60443bbeeef65c21ffff", + "cborBytes": [ + 159, 191, 71, 110, 52, 156, 151, 194, 123, 255, 66, 62, 253, 255, 159, 65, 180, 27, 96, 68, 59, 190, 238, 246, 92, + 33, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3132, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3024313285105187150" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "832bb5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17605553846971478147" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b81c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "931b595df39dc491f5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdde65abd4c7c0500ba2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10669399076010050217" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd5568be26f0fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f192f5" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2436374686321716841" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6771188673771728624" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2593107493498756875" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc72" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5591064990288425130" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17183647840393581443" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10020562744936334185" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d887c06" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3740899694688570000" + } + }, + { + "_tag": "ByteArray", + "bytearray": "41128924018a389eab4f30" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14260316507499967155" + } + } + ] + }, + "cborHex": "9fbf413c1b29f884e8c830794e43832bb51bf4537df212bf308342b81c49931b595df39dc491f54abdde65abd4c7c0500ba21b941151ee4475c2a947cd5568be26f0fe43f192f5ffbf1b21cfbdde65f5ae691b5df81839374feef01b23fc9186c6659f0b42cc721b4d9773fc6643b0aa1bee7894ab001153831b8b1030b9ad718369444d887c06ff1b33ea5873c2478a904b41128924018a389eab4f301bc5e6d24f262cb2b3ff", + "cborBytes": [ + 159, 191, 65, 60, 27, 41, 248, 132, 232, 200, 48, 121, 78, 67, 131, 43, 181, 27, 244, 83, 125, 242, 18, 191, 48, + 131, 66, 184, 28, 73, 147, 27, 89, 93, 243, 157, 196, 145, 245, 74, 189, 222, 101, 171, 212, 199, 192, 80, 11, + 162, 27, 148, 17, 81, 238, 68, 117, 194, 169, 71, 205, 85, 104, 190, 38, 240, 254, 67, 241, 146, 245, 255, 191, + 27, 33, 207, 189, 222, 101, 245, 174, 105, 27, 93, 248, 24, 57, 55, 79, 238, 240, 27, 35, 252, 145, 134, 198, 101, + 159, 11, 66, 204, 114, 27, 77, 151, 115, 252, 102, 67, 176, 170, 27, 238, 120, 148, 171, 0, 17, 83, 131, 27, 139, + 16, 48, 185, 173, 113, 131, 105, 68, 77, 136, 124, 6, 255, 27, 51, 234, 88, 115, 194, 71, 138, 144, 75, 65, 18, + 137, 36, 1, 138, 56, 158, 171, 79, 48, 27, 197, 230, 210, 79, 38, 44, 178, 179, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3133, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + "cborHex": "9f0204ff", + "cborBytes": [159, 2, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3134, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "470871099942575349" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14099709848388066430" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b0688dec547131cf59fd9050580ffffbf1bc3ac3b67553f5c7e1bffffffffffffffeeffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 6, 136, 222, 197, 71, 19, 28, 245, 159, 217, 5, 5, 128, 255, 255, 191, 27, 195, 172, 59, + 103, 85, 63, 92, 126, 27, 255, 255, 255, 255, 255, 255, 255, 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3135, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0747" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e46" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03fabc230406f9a4" + } + } + ] + } + ] + }, + "cborHex": "9fbf4207471bfffffffffffffff2428e460b41fd4803fabc230406f9a4ffff", + "cborBytes": [ + 159, 191, 66, 7, 71, 27, 255, 255, 255, 255, 255, 255, 255, 242, 66, 142, 70, 11, 65, 253, 72, 3, 250, 188, 35, 4, + 6, 249, 164, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3136, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3c01" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15955104014374291656" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5094976053965389747" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e961056bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12820079705140468743" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8eb04ef8115b5c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3f1af66" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a45c6a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11168036692130235043" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9589286818537456574" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3339603201175947490" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc977e3537" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9614664649229930449" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3f5ace476b745e3e36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "101798093659955039" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "546cfaafb13ce6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "76964aa5c23b2c62efd3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2503581240651480384" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "610669917348430984" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6ed7909fe94ba071c6b41c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18197435910622439717" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7de17f9bb1f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d2fdeb1a50c54" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "23" + }, + { + "_tag": "ByteArray", + "bytearray": "5c5cac266d3dde424a0b" + }, + { + "_tag": "ByteArray", + "bytearray": "d123e06590c95b2bfd18" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8230452462263695311" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + }, + "cborHex": "9f423c01d905059fbf1bdd6bea913b3048c81b46b4fdba0bba7fb3458e961056bf1bb1ea129171179c07478eb04ef8115b5c44c3f1af6643a45c6a1b9afcd63360f382a3ffd8669f1b8513fd8e2442c3be9f1b2e58a76ae0d988e245cc977e35371b856e268ecbdb0fd1493f5ace476b745e3e361b0169a8d3ab69df5fffff47546cfaafb13ce6ff4a76964aa5c23b2c62efd3d9050c9fd8669f1b22be81dfb35cfd409f1b0879890dea920488ffff4b6ed7909fe94ba071c6b41cbf1bfc8a478beb96692546c7de17f9bb1f476d2fdeb1a50c544173ff9f41234a5c5cac266d3dde424a0b4ad123e06590c95b2bfd18ff1b723870e859f777cfff0dff", + "cborBytes": [ + 159, 66, 60, 1, 217, 5, 5, 159, 191, 27, 221, 107, 234, 145, 59, 48, 72, 200, 27, 70, 180, 253, 186, 11, 186, 127, + 179, 69, 142, 150, 16, 86, 191, 27, 177, 234, 18, 145, 113, 23, 156, 7, 71, 142, 176, 78, 248, 17, 91, 92, 68, + 195, 241, 175, 102, 67, 164, 92, 106, 27, 154, 252, 214, 51, 96, 243, 130, 163, 255, 216, 102, 159, 27, 133, 19, + 253, 142, 36, 66, 195, 190, 159, 27, 46, 88, 167, 106, 224, 217, 136, 226, 69, 204, 151, 126, 53, 55, 27, 133, + 110, 38, 142, 203, 219, 15, 209, 73, 63, 90, 206, 71, 107, 116, 94, 62, 54, 27, 1, 105, 168, 211, 171, 105, 223, + 95, 255, 255, 71, 84, 108, 250, 175, 177, 60, 230, 255, 74, 118, 150, 74, 165, 194, 59, 44, 98, 239, 211, 217, 5, + 12, 159, 216, 102, 159, 27, 34, 190, 129, 223, 179, 92, 253, 64, 159, 27, 8, 121, 137, 13, 234, 146, 4, 136, 255, + 255, 75, 110, 215, 144, 159, 233, 75, 160, 113, 198, 180, 28, 191, 27, 252, 138, 71, 139, 235, 150, 105, 37, 70, + 199, 222, 23, 249, 187, 31, 71, 109, 47, 222, 177, 165, 12, 84, 65, 115, 255, 159, 65, 35, 74, 92, 92, 172, 38, + 109, 61, 222, 66, 74, 11, 74, 209, 35, 224, 101, 144, 201, 91, 43, 253, 24, 255, 27, 114, 56, 112, 232, 89, 247, + 119, 207, 255, 13, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3137, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b3f74030b7557b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1581152872099255166" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4716337701933551881" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9115812779433729842" + } + }, + { + "_tag": "ByteArray", + "bytearray": "78a68e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "948897119503139901" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b88a51" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3631855208859960643" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82975b9d6c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9377407893102823242" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5508155344293683642" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9988893175970830989" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1858595697178058286" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16250347773247481604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8294843490092086179" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "61945a48835fdcb1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9216487394963065707" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13728835681934715946" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ebd60ad2227553" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1364636795253921406" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3292936595043563843" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10061516639154414517" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12559437599906745871" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "321413087162922017" + } + } + } + ] + } + ] + }, + "cborHex": "9fa047b3f74030b7557bd8669f1b15f16228ed10937e9fd8669f1b4173cc26d48811099f1b7e81df6cdd1d1f324378a68effffbf1b0d2b28e71860443d43b88a511b3266f111efc005434582975b9d6c1b82233ecb8e56874a1b4c70e61a284b61ba1b8a9fad6b8d109a8d1b19cb0ef0775e1e2e1be184d533a4f9e7041b731d3434ce6673a3ff4861945a48835fdcb1d8669f1b7fe78a7465a38b6b9f1bbe869f50716d2c2a47ebd60ad22275531b12f029ef6489967effffffffbf1b2db2dc62ef74b9431b8ba1b0133a7b23b51bae4c15f451204e0f1b0475e37ff681f421ffff", + "cborBytes": [ + 159, 160, 71, 179, 247, 64, 48, 183, 85, 123, 216, 102, 159, 27, 21, 241, 98, 40, 237, 16, 147, 126, 159, 216, + 102, 159, 27, 65, 115, 204, 38, 212, 136, 17, 9, 159, 27, 126, 129, 223, 108, 221, 29, 31, 50, 67, 120, 166, 142, + 255, 255, 191, 27, 13, 43, 40, 231, 24, 96, 68, 61, 67, 184, 138, 81, 27, 50, 102, 241, 17, 239, 192, 5, 67, 69, + 130, 151, 91, 157, 108, 27, 130, 35, 62, 203, 142, 86, 135, 74, 27, 76, 112, 230, 26, 40, 75, 97, 186, 27, 138, + 159, 173, 107, 141, 16, 154, 141, 27, 25, 203, 14, 240, 119, 94, 30, 46, 27, 225, 132, 213, 51, 164, 249, 231, 4, + 27, 115, 29, 52, 52, 206, 102, 115, 163, 255, 72, 97, 148, 90, 72, 131, 95, 220, 177, 216, 102, 159, 27, 127, 231, + 138, 116, 101, 163, 139, 107, 159, 27, 190, 134, 159, 80, 113, 109, 44, 42, 71, 235, 214, 10, 210, 34, 117, 83, + 27, 18, 240, 41, 239, 100, 137, 150, 126, 255, 255, 255, 255, 191, 27, 45, 178, 220, 98, 239, 116, 185, 67, 27, + 139, 161, 176, 19, 58, 123, 35, 181, 27, 174, 76, 21, 244, 81, 32, 78, 15, 27, 4, 117, 227, 127, 246, 129, 244, + 33, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3138, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c6d7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5019441705186941303" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14523759705656174530" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a01bbf" + }, + { + "_tag": "ByteArray", + "bytearray": "dcee778fcb" + }, + { + "_tag": "ByteArray", + "bytearray": "466ff242119c02bce457" + }, + { + "_tag": "ByteArray", + "bytearray": "6622ace4" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "29f21b92871ac1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14683522094557549032" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c36" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10994989999259194587" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bd354" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f072c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d2170388e6d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12195464850292531140" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7868404918755537863" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7926911473586757723" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14235612548291152105" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16798341956879589612" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d49b706954df45bcd56" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "239d2336d338ff8f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3e8ee3c2a99e7be8afb11" + } + } + ] + } + ] + }, + "cborHex": "9f42c6d71b45a8a3a30072d9779f9f1bc98ec2808ac4a7c243a01bbf45dcee778fcb4a466ff242119c02bce457446622ace4ffffbf4729f21b92871ac11bcbc6598c61b3d1e8423c361b98960d267ed114db434bd354430f072c469d2170388e6d1ba93efeaac072dfc4ffbf1b6d323095c35c33c71b6e020bfc951b605b1bc58f0e306cfcc8e91be91fb302235920ec4a3d49b706954df45bcd5648239d2336d338ff8f4295e54bd3e8ee3c2a99e7be8afb11ffff", + "cborBytes": [ + 159, 66, 198, 215, 27, 69, 168, 163, 163, 0, 114, 217, 119, 159, 159, 27, 201, 142, 194, 128, 138, 196, 167, 194, + 67, 160, 27, 191, 69, 220, 238, 119, 143, 203, 74, 70, 111, 242, 66, 17, 156, 2, 188, 228, 87, 68, 102, 34, 172, + 228, 255, 255, 191, 71, 41, 242, 27, 146, 135, 26, 193, 27, 203, 198, 89, 140, 97, 179, 209, 232, 66, 60, 54, 27, + 152, 150, 13, 38, 126, 209, 20, 219, 67, 75, 211, 84, 67, 15, 7, 44, 70, 157, 33, 112, 56, 142, 109, 27, 169, 62, + 254, 170, 192, 114, 223, 196, 255, 191, 27, 109, 50, 48, 149, 195, 92, 51, 199, 27, 110, 2, 11, 252, 149, 27, 96, + 91, 27, 197, 143, 14, 48, 108, 252, 200, 233, 27, 233, 31, 179, 2, 35, 89, 32, 236, 74, 61, 73, 183, 6, 149, 77, + 244, 91, 205, 86, 72, 35, 157, 35, 54, 211, 56, 255, 143, 66, 149, 229, 75, 211, 232, 238, 60, 42, 153, 231, 190, + 138, 251, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3139, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9006917428640453557" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6602177776998048843" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10315436552960469600" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7624146192922128725" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b7a4e56fbcb46f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8575864983373524442" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c6fa561ee4f4825637c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13686571037383305309" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11516107114654062689" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15700985545942741123" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4674263009543205258" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17397580227216933388" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3aee04ef415f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7511340375697795943" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17301594166871002623" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6618658766690761119" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ff61" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6625107583565247080" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2714653072588154499" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6801960044534596605" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5478168394800385578" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6875743465486757290" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7451096501839588731" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f587" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8621365142414301766" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c82ce7f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12922379549493652394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9462592166646958817" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17709491396999899097" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16309229803869132634" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6699440029911803074" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "72cc5dd88026ac30eb9317d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14130079051708650507" + } + }, + { + "_tag": "ByteArray", + "bytearray": "36" + }, + { + "_tag": "ByteArray", + "bytearray": "242ecaf8a514" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3951610588997146576" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "78174dc4532b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7631535995144940579" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12850588606183185644" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1663985855544285157" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7664411673544893150" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1c151fb5f" + } + ] + } + ] + }, + "cborHex": "9f9f1b7cfeffae3f6393b5bf1b5b9fa5b555f2644b1b8f27cae43249ea60ffbf1b69ce689168c53155484b7a4e56fbcb46f21b770397c3f7b0adda4a9c6fa561ee4f4825637c1bbdf077d80c61a85d1b9fd16e67e44dd8611bd9e51b2aa975b0831b40de51711e92318affd8669f1bf1709f0a52a0020c9f463aee04ef415f1b683da44660842b671bf01b9c3a1c510dff1b5bda3314c620b99fffffa0ff42ff61d8669f1b5bf11c3ef52732689fbf1b25ac6296300a26831b5e656a9f46e283fd1b4c065d2167d94e2a1b5f6b8c40ab0d2daa1b67679cca734ded7b42f5871b77a53deb488a1a46447c82ce7f1bb35583bc0c576baa1b8351e170cb62cae11bf5c4c098bf03e7d91be2560618bbd5575affd8669f1b5cf9313648ece4c29f4c72cc5dd88026ac30eb9317d51bc41820087d48540b413646242ecaf8a5141b36d6f0e4e7d8d7d0ffffffff4678174dc4532b9fd8669f1b69e8a98dd138ac239f1bb2567640823b1cec1b1717aa51c6fdd7e5410bffff1b6a5d75cf2e0022de45c1c151fb5fffff", + "cborBytes": [ + 159, 159, 27, 124, 254, 255, 174, 63, 99, 147, 181, 191, 27, 91, 159, 165, 181, 85, 242, 100, 75, 27, 143, 39, + 202, 228, 50, 73, 234, 96, 255, 191, 27, 105, 206, 104, 145, 104, 197, 49, 85, 72, 75, 122, 78, 86, 251, 203, 70, + 242, 27, 119, 3, 151, 195, 247, 176, 173, 218, 74, 156, 111, 165, 97, 238, 79, 72, 37, 99, 124, 27, 189, 240, 119, + 216, 12, 97, 168, 93, 27, 159, 209, 110, 103, 228, 77, 216, 97, 27, 217, 229, 27, 42, 169, 117, 176, 131, 27, 64, + 222, 81, 113, 30, 146, 49, 138, 255, 216, 102, 159, 27, 241, 112, 159, 10, 82, 160, 2, 12, 159, 70, 58, 238, 4, + 239, 65, 95, 27, 104, 61, 164, 70, 96, 132, 43, 103, 27, 240, 27, 156, 58, 28, 81, 13, 255, 27, 91, 218, 51, 20, + 198, 32, 185, 159, 255, 255, 160, 255, 66, 255, 97, 216, 102, 159, 27, 91, 241, 28, 62, 245, 39, 50, 104, 159, + 191, 27, 37, 172, 98, 150, 48, 10, 38, 131, 27, 94, 101, 106, 159, 70, 226, 131, 253, 27, 76, 6, 93, 33, 103, 217, + 78, 42, 27, 95, 107, 140, 64, 171, 13, 45, 170, 27, 103, 103, 156, 202, 115, 77, 237, 123, 66, 245, 135, 27, 119, + 165, 61, 235, 72, 138, 26, 70, 68, 124, 130, 206, 127, 27, 179, 85, 131, 188, 12, 87, 107, 170, 27, 131, 81, 225, + 112, 203, 98, 202, 225, 27, 245, 196, 192, 152, 191, 3, 231, 217, 27, 226, 86, 6, 24, 187, 213, 87, 90, 255, 216, + 102, 159, 27, 92, 249, 49, 54, 72, 236, 228, 194, 159, 76, 114, 204, 93, 216, 128, 38, 172, 48, 235, 147, 23, 213, + 27, 196, 24, 32, 8, 125, 72, 84, 11, 65, 54, 70, 36, 46, 202, 248, 165, 20, 27, 54, 214, 240, 228, 231, 216, 215, + 208, 255, 255, 255, 255, 70, 120, 23, 77, 196, 83, 43, 159, 216, 102, 159, 27, 105, 232, 169, 141, 209, 56, 172, + 35, 159, 27, 178, 86, 118, 64, 130, 59, 28, 236, 27, 23, 23, 170, 81, 198, 253, 215, 229, 65, 11, 255, 255, 27, + 106, 93, 117, 207, 46, 0, 34, 222, 69, 193, 193, 81, 251, 95, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3140, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "ByteArray", + "bytearray": "040203620502" + } + ] + }, + "cborHex": "9f0f46040203620502ff", + "cborBytes": [159, 15, 70, 4, 2, 3, 98, 5, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3141, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b2" + } + ] + }, + "cborHex": "9f41b2ff", + "cborBytes": [159, 65, 178, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3142, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7966992153573946799" + } + } + ] + }, + "cborHex": "9f1b6e9071271a1975afff", + "cborBytes": [159, 27, 110, 144, 113, 39, 26, 25, 117, 175, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3143, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11762146008793865684" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "267124033780501080" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17827968181664113899" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13352668146577070461" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eebe21502a1a02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3166db34086503cca29a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4557076396509666777" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2167693272779202135" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17463934107123301865" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1ba33b8979fa6fddd49fbf1b03b503e4b874ca581bf769aa9ac70e64eb1bb94e34ef1066597d47eebe21502a1a024a3166db34086503cca29a1b3f3dfcd694469dd9ff9f1b1e15318bf2021e571bf25c5b8ae3e9bde9ffffff", + "cborBytes": [ + 159, 27, 163, 59, 137, 121, 250, 111, 221, 212, 159, 191, 27, 3, 181, 3, 228, 184, 116, 202, 88, 27, 247, 105, + 170, 154, 199, 14, 100, 235, 27, 185, 78, 52, 239, 16, 102, 89, 125, 71, 238, 190, 33, 80, 42, 26, 2, 74, 49, 102, + 219, 52, 8, 101, 3, 204, 162, 154, 27, 63, 61, 252, 214, 148, 70, 157, 217, 255, 159, 27, 30, 21, 49, 139, 242, 2, + 30, 87, 27, 242, 92, 91, 138, 227, 233, 189, 233, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3144, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0407e202" + } + ] + }, + "cborHex": "9f440407e202ff", + "cborBytes": [159, 68, 4, 7, 226, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3145, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9947900161791479885" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2763168525986600394" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11008504766790522834" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17453633169539106044" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b8a0e0a7daca1d04d1b2658bf226df895ca1b98c610c284be57d21bf237c2e4f65a84fcffff", + "cborBytes": [ + 159, 191, 27, 138, 14, 10, 125, 172, 161, 208, 77, 27, 38, 88, 191, 34, 109, 248, 149, 202, 27, 152, 198, 16, 194, + 132, 190, 87, 210, 27, 242, 55, 194, 228, 246, 90, 132, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3146, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13200435739978538882" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6848356124116649095" + } + }, + { + "_tag": "ByteArray", + "bytearray": "efa98f" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14697858134499143624" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5532936078012101398" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57a7d2e0cb65" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0059aa450fd113822171" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "766b00f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5783f4b7b6cc37c2e9ce5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0faaf8c0db" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11758376142305217371" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21a205b2dbdd8a9e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12792514109391865046" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12077568790309917056" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c7149" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7277918113945333809" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "927499e55739304c8c28a050" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17836623088828390546" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12027000556897722400" + } + } + ] + }, + "cborHex": "9fd8669f1bb7315e5dd9ca9f829f801b5f0a3f9c5958048743efa98fffff9f1bcbf94819c9e82fc8410cffbf1b4cc8f00c56dab3164657a7d2e0cb654a0059aa450fd11382217144766b00f94bb5783f4b7b6cc37c2e9ce5450faaf8c0dbffbf1ba32e24cd8987cb5b4821a205b2dbdd8a9e1bb18823ce0a7984d61ba79c24d338c45180430c71491b65005bf6ee17b0314c927499e55739304c8c28a0501bf7886a3262259c92ff1ba6e87d48e3506020ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 183, 49, 94, 93, 217, 202, 159, 130, 159, 128, 27, 95, 10, 63, 156, 89, 88, 4, 135, 67, + 239, 169, 143, 255, 255, 159, 27, 203, 249, 72, 25, 201, 232, 47, 200, 65, 12, 255, 191, 27, 76, 200, 240, 12, 86, + 218, 179, 22, 70, 87, 167, 210, 224, 203, 101, 74, 0, 89, 170, 69, 15, 209, 19, 130, 33, 113, 68, 118, 107, 0, + 249, 75, 181, 120, 63, 75, 123, 108, 195, 124, 46, 156, 229, 69, 15, 170, 248, 192, 219, 255, 191, 27, 163, 46, + 36, 205, 137, 135, 203, 91, 72, 33, 162, 5, 178, 219, 221, 138, 158, 27, 177, 136, 35, 206, 10, 121, 132, 214, 27, + 167, 156, 36, 211, 56, 196, 81, 128, 67, 12, 113, 73, 27, 101, 0, 91, 246, 238, 23, 176, 49, 76, 146, 116, 153, + 229, 87, 57, 48, 76, 140, 40, 160, 80, 27, 247, 136, 106, 50, 98, 37, 156, 146, 255, 27, 166, 232, 125, 72, 227, + 80, 96, 32, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3147, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17460322636522198494" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "974652469590298957" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fc1f6c816c3d4837da6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18055442276316244614" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "877b3fab34d61d5184" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b55" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2530133a50147633e60" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5161343481307904103" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "529918646092430643" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2d22a4ebc3f4f3" + }, + { + "_tag": "ByteArray", + "bytearray": "94373cb0f32897" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3739883039936402330" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16339537009464757674" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6853168547649494478" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b87ac03af933d245c9d9df" + }, + { + "_tag": "ByteArray", + "bytearray": "138b856fe0" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4242919845188178693" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a454" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5322536495339841099" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13116396591684511689" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11513372293823035793" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4273c8d67c" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1280e054" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "043ab4a9a67b67b8" + } + } + ] + } + ] + }, + "cborHex": "9fbf1bf24f86eddd9e15de1b0d86a941d563114d4a6fc1f6c816c3d4837da61bfa91d116a6666a8649877b3fab34d61d5184428b554ac2530133a50147633e601b47a0c68cdf22b867ffd8669f1b075aa6337431fd339f9f472d22a4ebc3f4f34794373cb0f328971b33e6bbcf60ead39affd8669f1be2c1b256eb7ecdaa9f1b5f1b587c04871dce4bb87ac03af933d245c9d9df45138b856fe0ffffbf1b3ae1e11e86e5930542a4541b49dd72be14c8a64b1bb606cd34dc7fe7c91b9fc7b719cc257991454273c8d67cffffffbf441280e05448043ab4a9a67b67b8ffff", + "cborBytes": [ + 159, 191, 27, 242, 79, 134, 237, 221, 158, 21, 222, 27, 13, 134, 169, 65, 213, 99, 17, 77, 74, 111, 193, 246, 200, + 22, 195, 212, 131, 125, 166, 27, 250, 145, 209, 22, 166, 102, 106, 134, 73, 135, 123, 63, 171, 52, 214, 29, 81, + 132, 66, 139, 85, 74, 194, 83, 1, 51, 165, 1, 71, 99, 62, 96, 27, 71, 160, 198, 140, 223, 34, 184, 103, 255, 216, + 102, 159, 27, 7, 90, 166, 51, 116, 49, 253, 51, 159, 159, 71, 45, 34, 164, 235, 195, 244, 243, 71, 148, 55, 60, + 176, 243, 40, 151, 27, 51, 230, 187, 207, 96, 234, 211, 154, 255, 216, 102, 159, 27, 226, 193, 178, 86, 235, 126, + 205, 170, 159, 27, 95, 27, 88, 124, 4, 135, 29, 206, 75, 184, 122, 192, 58, 249, 51, 210, 69, 201, 217, 223, 69, + 19, 139, 133, 111, 224, 255, 255, 191, 27, 58, 225, 225, 30, 134, 229, 147, 5, 66, 164, 84, 27, 73, 221, 114, 190, + 20, 200, 166, 75, 27, 182, 6, 205, 52, 220, 127, 231, 201, 27, 159, 199, 183, 25, 204, 37, 121, 145, 69, 66, 115, + 200, 214, 124, 255, 255, 255, 191, 68, 18, 128, 224, 84, 72, 4, 58, 180, 169, 166, 123, 103, 184, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3148, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7545207933883227075" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9955165027612952227" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18121538058781578167" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0cb66625453" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16537346998415046367" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d439c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05adfd9d1b300145c100" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc0495" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e6a025ff33e0ea8cc24" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "20" + } + ] + }, + "cborHex": "9fbf1b68b5f6a3bf919bc31b8a27d9d90f4306a341791bfb7ca2da3965d3b746c0cb666254531be5807579f7e6b6dfffbf43d439c84a05adfd9d1b300145c10043fc04954a0e6a025ff33e0ea8cc24ff4120ff", + "cborBytes": [ + 159, 191, 27, 104, 181, 246, 163, 191, 145, 155, 195, 27, 138, 39, 217, 217, 15, 67, 6, 163, 65, 121, 27, 251, + 124, 162, 218, 57, 101, 211, 183, 70, 192, 203, 102, 98, 84, 83, 27, 229, 128, 117, 121, 247, 230, 182, 223, 255, + 191, 67, 212, 57, 200, 74, 5, 173, 253, 157, 27, 48, 1, 69, 193, 0, 67, 252, 4, 149, 74, 14, 106, 2, 95, 243, 62, + 14, 168, 204, 36, 255, 65, 32, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3149, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "00" + } + ] + } + ] + }, + "cborHex": "9f9f4100ffff", + "cborBytes": [159, 159, 65, 0, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3150, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5942405918716741400" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3114764020862045235" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff02d132f4ecb7dab722" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14162988637568468014" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "187da3f38240" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "569632578686813241" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8705325001046718501" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13964870120861243607" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13992091658205999369" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12564895774752508563" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13568636168575348556" + } + } + ] + }, + "cborHex": "9f1b5277aab2e84a4718bf1b2b39dd5fcea64c334aff02d132f4ecb7dab7221bc48d0b208c29842e46187da3f38240ffbf1b07e7bdcff11e04391b78cf86f735b778251bc1cd2f62c86698d7412c1bc22de53ad81331091bae5f7a22adee0a93ff1bbc4d7ab4a2736f4cff", + "cborBytes": [ + 159, 27, 82, 119, 170, 178, 232, 74, 71, 24, 191, 27, 43, 57, 221, 95, 206, 166, 76, 51, 74, 255, 2, 209, 50, 244, + 236, 183, 218, 183, 34, 27, 196, 141, 11, 32, 140, 41, 132, 46, 70, 24, 125, 163, 243, 130, 64, 255, 191, 27, 7, + 231, 189, 207, 241, 30, 4, 57, 27, 120, 207, 134, 247, 53, 183, 120, 37, 27, 193, 205, 47, 98, 200, 102, 152, 215, + 65, 44, 27, 194, 45, 229, 58, 216, 19, 49, 9, 27, 174, 95, 122, 34, 173, 238, 10, 147, 255, 27, 188, 77, 122, 180, + 162, 115, 111, 76, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3151, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5788082305637161086" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9365b3e913" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16035641522164838348" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87685a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56f5bcaf347e9a8a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07b2094e67d793" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3315" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9616696397301718887" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd9542" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8459799102970565088" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cd69e80d63137558e7328" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59f838b83ae331289b94" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48041e1fde" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bfb8f6c21619" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "806d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7443526546343868997" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10092824309385773861" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11182283357196758765" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7569760219424484358" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14846591154279553669" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17946232160870398976" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16544670691472466797" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16779904308873399518" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "7a899295a60b1a13c1df" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7678911428381174625" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12234105255025239526" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "03710a9d9c9a70edbee46a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15108714651101242415" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8430414133764739911" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f385d952286d0b3987" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3646673177595720034" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9592150960568147363" + } + }, + { + "_tag": "ByteArray", + "bytearray": "829b0b0e1a522d76ba5adec6" + }, + { + "_tag": "ByteArray", + "bytearray": "c4e64335ee95" + }, + { + "_tag": "ByteArray", + "bytearray": "cc" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fde349fc88516c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10030057474871881048" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b50536630be3a187e459365b3e9131bde8a0b010223afcc4387685a4856f5bcaf347e9a8a4707b2094e67d7934199423315ffd8669f1b85755e6c01f29f679f43fd9542bf410c1b75673e7653ba91e04b3cd69e80d63137558e73284a59f838b83ae331289b944548041e1fde46bfb8f6c2161942806d1b674cb7f4d7043a4541c51b8c10ea3c3d5dc325ff1b9b2f73779379aeedffff9fd8669f1b690d30d031adec0680ffd8669f1bce09affe844a1a859f1bf90dd3112d5efc001be59a7a562308636dffffd8669f1be8de3210af720cde80ffa04a7a899295a60b1a13c1dfffd8669f1b6a90f9426e58eb619fd8669f1ba9c845e90e84e5e69f4b03710a9d9c9a70edbee46a1bd1acefecffa1242f1b74fed8fd087ad347ffff9f49f385d952286d0b3987ffd8669f1b329b95ef2289b1629f1b851e2a7a2c961da34c829b0b0e1a522d76ba5adec646c4e64335ee9541ccffffbf47fde349fc88516c1b8b31ec21c27d6d58ffffffff", + "cborBytes": [ + 159, 191, 27, 80, 83, 102, 48, 190, 58, 24, 126, 69, 147, 101, 179, 233, 19, 27, 222, 138, 11, 1, 2, 35, 175, 204, + 67, 135, 104, 90, 72, 86, 245, 188, 175, 52, 126, 154, 138, 71, 7, 178, 9, 78, 103, 215, 147, 65, 153, 66, 51, 21, + 255, 216, 102, 159, 27, 133, 117, 94, 108, 1, 242, 159, 103, 159, 67, 253, 149, 66, 191, 65, 12, 27, 117, 103, 62, + 118, 83, 186, 145, 224, 75, 60, 214, 158, 128, 214, 49, 55, 85, 142, 115, 40, 74, 89, 248, 56, 184, 58, 227, 49, + 40, 155, 148, 69, 72, 4, 30, 31, 222, 70, 191, 184, 246, 194, 22, 25, 66, 128, 109, 27, 103, 76, 183, 244, 215, 4, + 58, 69, 65, 197, 27, 140, 16, 234, 60, 61, 93, 195, 37, 255, 27, 155, 47, 115, 119, 147, 121, 174, 237, 255, 255, + 159, 216, 102, 159, 27, 105, 13, 48, 208, 49, 173, 236, 6, 128, 255, 216, 102, 159, 27, 206, 9, 175, 254, 132, 74, + 26, 133, 159, 27, 249, 13, 211, 17, 45, 94, 252, 0, 27, 229, 154, 122, 86, 35, 8, 99, 109, 255, 255, 216, 102, + 159, 27, 232, 222, 50, 16, 175, 114, 12, 222, 128, 255, 160, 74, 122, 137, 146, 149, 166, 11, 26, 19, 193, 223, + 255, 216, 102, 159, 27, 106, 144, 249, 66, 110, 88, 235, 97, 159, 216, 102, 159, 27, 169, 200, 69, 233, 14, 132, + 229, 230, 159, 75, 3, 113, 10, 157, 156, 154, 112, 237, 190, 228, 106, 27, 209, 172, 239, 236, 255, 161, 36, 47, + 27, 116, 254, 216, 253, 8, 122, 211, 71, 255, 255, 159, 73, 243, 133, 217, 82, 40, 109, 11, 57, 135, 255, 216, + 102, 159, 27, 50, 155, 149, 239, 34, 137, 177, 98, 159, 27, 133, 30, 42, 122, 44, 150, 29, 163, 76, 130, 155, 11, + 14, 26, 82, 45, 118, 186, 90, 222, 198, 70, 196, 230, 67, 53, 238, 149, 65, 204, 255, 255, 191, 71, 253, 227, 73, + 252, 136, 81, 108, 27, 139, 49, 236, 33, 194, 125, 109, 88, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3152, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8598439040279477197" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ef9a40d004" + }, + { + "_tag": "ByteArray", + "bytearray": "2186e877da" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12763336355680107783" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d3c899e1bfd199b9ded0" + }, + { + "_tag": "ByteArray", + "bytearray": "8377" + }, + { + "_tag": "ByteArray", + "bytearray": "45" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "367711739617460732" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4857123e2477bcdd856ca0" + }, + { + "_tag": "ByteArray", + "bytearray": "47adea37177b6f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7156238253568453271" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a635e87767e6e3ab17" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6428452425203926663" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2881496268628393359" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1db69b7a8a54526ec900ad" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "908615944989972364" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b3aef7f" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7753cac02ab57bcd9f45ef9a40d004452186e877da9f1bb1207acadd243d074ad3c899e1bfd199b9ded04283774145ffd8669f1b051a5fe103a3c1fc9f4b4857123e2477bcdd856ca04747adea37177b6f1b635010c6b8026a97ffff49a635e87767e6e3ab17ffff1b5936736bdbc746871b27fd2196e9357d8f4b1db69b7a8a54526ec900adbf1b0c9c0d634e62178c443b3aef7fffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 119, 83, 202, 192, 42, 181, 123, 205, 159, 69, 239, 154, 64, 208, 4, 69, 33, 134, 232, + 119, 218, 159, 27, 177, 32, 122, 202, 221, 36, 61, 7, 74, 211, 200, 153, 225, 191, 209, 153, 185, 222, 208, 66, + 131, 119, 65, 69, 255, 216, 102, 159, 27, 5, 26, 95, 225, 3, 163, 193, 252, 159, 75, 72, 87, 18, 62, 36, 119, 188, + 221, 133, 108, 160, 71, 71, 173, 234, 55, 23, 123, 111, 27, 99, 80, 16, 198, 184, 2, 106, 151, 255, 255, 73, 166, + 53, 232, 119, 103, 230, 227, 171, 23, 255, 255, 27, 89, 54, 115, 107, 219, 199, 70, 135, 27, 39, 253, 33, 150, + 233, 53, 125, 143, 75, 29, 182, 155, 122, 138, 84, 82, 110, 201, 0, 173, 191, 27, 12, 156, 13, 99, 78, 98, 23, + 140, 68, 59, 58, 239, 127, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3153, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1644924428021664168" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17500300337418911258" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4992748882914334000" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6446276129879733344" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5389907046272410501" + } + }, + { + "_tag": "ByteArray", + "bytearray": "714b4add1637ee395b35047b" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3638098495794471795" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "93eb4e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15365743212216962470" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3d" + }, + { + "_tag": "ByteArray", + "bytearray": "099970f1a956bb" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7463273714451072752" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e25c6ab8bf89c5a4c7b5a" + }, + { + "_tag": "ByteArray", + "bytearray": "97b005d18f0a019aba22192d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3093550847490860049" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "af09c385d11df0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7eccd7e7b152ea766d5441" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4424480666856205478" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ac135e6f6187fed779831abb" + }, + { + "_tag": "ByteArray", + "bytearray": "30c29121" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16371419453073774841" + } + }, + { + "_tag": "ByteArray", + "bytearray": "67baefc24a270a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5166325796942043455" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "39b08e20b1f2ba03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2331913274137974636" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1900ac" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12731131915574140013" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f1b16d3f20d569809a8d8669f1bf2dd8e6fb280be1a9f9f1b4549cea802d655301b5975c5fc7d8fb4601b4acccbe6d17123854c714b4add1637ee395b35047bffd8669f1b327d1f4e73b663739f4393eb4effff9f1bd53e160a520fcda6413d47099970f1a956bbff9f1b6792dfe6b35dc6f04b8e25c6ab8bf89c5a4c7b5a4c97b005d18f0a019aba22192dffd8669f1b2aee801aff4d241180ffffff47af09c385d11df09f4b7eccd7e7b152ea766d5441d8669f1b3d66e9b97f8c2ca69f4cac135e6f6187fed779831abb4430c291211be332f740c961d8f94767baefc24a270a1b47b279f0a0aad93fffffbf4839b08e20b1f2ba031b205c9ec49003176c418d431900acff1bb0ae1106586f5c6dffa0ff", + "cborBytes": [ + 159, 27, 22, 211, 242, 13, 86, 152, 9, 168, 216, 102, 159, 27, 242, 221, 142, 111, 178, 128, 190, 26, 159, 159, + 27, 69, 73, 206, 168, 2, 214, 85, 48, 27, 89, 117, 197, 252, 125, 143, 180, 96, 27, 74, 204, 203, 230, 209, 113, + 35, 133, 76, 113, 75, 74, 221, 22, 55, 238, 57, 91, 53, 4, 123, 255, 216, 102, 159, 27, 50, 125, 31, 78, 115, 182, + 99, 115, 159, 67, 147, 235, 78, 255, 255, 159, 27, 213, 62, 22, 10, 82, 15, 205, 166, 65, 61, 71, 9, 153, 112, + 241, 169, 86, 187, 255, 159, 27, 103, 146, 223, 230, 179, 93, 198, 240, 75, 142, 37, 198, 171, 139, 248, 156, 90, + 76, 123, 90, 76, 151, 176, 5, 209, 143, 10, 1, 154, 186, 34, 25, 45, 255, 216, 102, 159, 27, 42, 238, 128, 26, + 255, 77, 36, 17, 128, 255, 255, 255, 71, 175, 9, 195, 133, 209, 29, 240, 159, 75, 126, 204, 215, 231, 177, 82, + 234, 118, 109, 84, 65, 216, 102, 159, 27, 61, 102, 233, 185, 127, 140, 44, 166, 159, 76, 172, 19, 94, 111, 97, + 135, 254, 215, 121, 131, 26, 187, 68, 48, 194, 145, 33, 27, 227, 50, 247, 64, 201, 97, 216, 249, 71, 103, 186, + 239, 194, 74, 39, 10, 27, 71, 178, 121, 240, 160, 170, 217, 63, 255, 255, 191, 72, 57, 176, 142, 32, 177, 242, + 186, 3, 27, 32, 92, 158, 196, 144, 3, 23, 108, 65, 141, 67, 25, 0, 172, 255, 27, 176, 174, 17, 6, 88, 111, 92, + 109, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3154, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5519229808910871072" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14157616813542038721" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e33c8760f1271497" + }, + { + "_tag": "ByteArray", + "bytearray": "4eb166529c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2688754385947541602" + } + }, + { + "_tag": "ByteArray", + "bytearray": "50d0cac738adf059f1" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13579395772084639397" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75e2eb52" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e4a5f37e" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9613" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e5" + }, + { + "_tag": "ByteArray", + "bytearray": "29afed04fc9d9947dde8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6827612732076375003" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16250402134926356055" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a85a958df2" + }, + { + "_tag": "ByteArray", + "bytearray": "d1a77dcbd84797c9f3bc" + }, + { + "_tag": "ByteArray", + "bytearray": "16463c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7ede" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6973884474986760688" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b4c983e44e1e12a209fd8669f1bc479f57b4d455cc19f48e33c8760f1271497454eb166529c1b25505fde4ead40624950d0cac738adf059f1ffff9f1bbc73b4820b8bd6a54475e2eb52ff44e4a5f37effff4296139f41e54a29afed04fc9d9947dde89f1b5ec08d9b0758bbdb1be18506a4b588ee5745a85a958df24ad1a77dcbd84797c9f3bc4316463cff427ede1b60c836fb143289f0ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 76, 152, 62, 68, 225, 225, 42, 32, 159, 216, 102, 159, 27, 196, 121, 245, 123, 77, 69, 92, + 193, 159, 72, 227, 60, 135, 96, 241, 39, 20, 151, 69, 78, 177, 102, 82, 156, 27, 37, 80, 95, 222, 78, 173, 64, 98, + 73, 80, 208, 202, 199, 56, 173, 240, 89, 241, 255, 255, 159, 27, 188, 115, 180, 130, 11, 139, 214, 165, 68, 117, + 226, 235, 82, 255, 68, 228, 165, 243, 126, 255, 255, 66, 150, 19, 159, 65, 229, 74, 41, 175, 237, 4, 252, 157, + 153, 71, 221, 232, 159, 27, 94, 192, 141, 155, 7, 88, 187, 219, 27, 225, 133, 6, 164, 181, 136, 238, 87, 69, 168, + 90, 149, 141, 242, 74, 209, 167, 125, 203, 216, 71, 151, 201, 243, 188, 67, 22, 70, 60, 255, 66, 126, 222, 27, 96, + 200, 54, 251, 20, 50, 137, 240, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3155, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13928422916284791227" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bc14bb2d8ae90b9bb80ffff", + "cborBytes": [159, 216, 102, 159, 27, 193, 75, 178, 216, 174, 144, 185, 187, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3156, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13481759546732680440" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14923470773263870850" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11402907572119573631" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + ] + }, + "cborHex": "9f1bbb18d4e0da3b94f81bfffffffffffffffbbf011bcf1ad199b0512b821b9e3f44058acc947f08ff1bffffffffffffffed1bfffffffffffffff3ff", + "cborBytes": [ + 159, 27, 187, 24, 212, 224, 218, 59, 148, 248, 27, 255, 255, 255, 255, 255, 255, 255, 251, 191, 1, 27, 207, 26, + 209, 153, 176, 81, 43, 130, 27, 158, 63, 68, 5, 138, 204, 148, 127, 8, 255, 27, 255, 255, 255, 255, 255, 255, 255, + 237, 27, 255, 255, 255, 255, 255, 255, 255, 243, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3157, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3790653204754472035" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3dece91d6c2a05f48c8b9f24" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bc5695004c1fdfe0115" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6351178313247154173" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "20fa712bba42" + }, + { + "_tag": "ByteArray", + "bytearray": "14084ea00260" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9183111458916006049" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b349b1b0188161c639f4c3dece91d6c2a05f48c8b9f24bf4a2bc5695004c1fdfe01151bfffffffffffffffb41a91b5823eb06a242dffdffffffd905019f4620fa712bba424614084ea002601b7f70f737b981f8a1ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 52, 155, 27, 1, 136, 22, 28, 99, 159, 76, 61, 236, 233, 29, 108, 42, 5, 244, 140, 139, + 159, 36, 191, 74, 43, 197, 105, 80, 4, 193, 253, 254, 1, 21, 27, 255, 255, 255, 255, 255, 255, 255, 251, 65, 169, + 27, 88, 35, 235, 6, 162, 66, 223, 253, 255, 255, 255, 217, 5, 1, 159, 70, 32, 250, 113, 43, 186, 66, 70, 20, 8, + 78, 160, 2, 96, 27, 127, 112, 247, 55, 185, 129, 248, 161, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3158, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "655878744554468267" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c562c438f65" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3108543325005067710" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6387643389060639048" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6865831387402982429" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8d8ab61545485b1f1a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14621353048085554731" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5530b6364a685f7b01" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b091a263e40e5f3ab463c562c438f651b2b23c3af2fd6b5be1b58a577d1b4d4e9481b5f48554525e1d41d4ad8d8ab61545485b1f1a71bcae97b2146b6e62b495530b6364a685f7b01ffff", + "cborBytes": [ + 159, 191, 27, 9, 26, 38, 62, 64, 229, 243, 171, 70, 60, 86, 44, 67, 143, 101, 27, 43, 35, 195, 175, 47, 214, 181, + 190, 27, 88, 165, 119, 209, 180, 212, 233, 72, 27, 95, 72, 85, 69, 37, 225, 212, 29, 74, 216, 216, 171, 97, 84, + 84, 133, 177, 241, 167, 27, 202, 233, 123, 33, 70, 182, 230, 43, 73, 85, 48, 182, 54, 74, 104, 95, 123, 1, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3159, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14464342083711689492" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "566e22df337b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17498112270067297694" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1806462219116967114" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5958224346072562448" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4666489934339208208" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11760186740103413939" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10311361665597765261" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1734786924872317990" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "435edbb7a51d0ed1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "159a10a30253" + }, + { + "_tag": "ByteArray", + "bytearray": "00b1722612" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10397474242006836042" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13913278312823841315" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1075018455426100695" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "474514295863553584" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1453818494966542012" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87ad360054af" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15682341801188980162" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17076836795318571178" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1dc21a7f" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12148938856536235144" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7475802687968119909" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d34c0fc9a3" + }, + { + "_tag": "ByteArray", + "bytearray": "2080f26dd01fb4f00c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13562492104186388910" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9f07f16a882e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14992922360473865910" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c84c3eba" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13020424377014453372" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4ffa7a0b19eb6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14223585751103268531" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1e53c59" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7fd1861669b3ff4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57b346e46500c0b742" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "95244d77" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5c0315a96ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62802348ef8e" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1bc8bbaa7d615e631446566e22df337b1bf2d5c8669143ed9e1b1911d7d136a174caffd8669f1b52afdd7987bd3b109fbf1b40c2b3df043974101ba3349388301f80b31b8f1950cd8c88f68d1b181333845201bc2648435edbb7a51d0ed1410eff46159a10a302534500b1722612d8669f1b904b3fbc2417634a9f1bc115e4e8e902e2231b0eeb3b96eaa96dd7ffffffffd8669f1b0695d03cedcaae309fbf1b142d0037f05faebc4687ad360054afffd8669f1bd9a2dec79220f5c29f1becfd1c96a04890aa441dc21a7fffffffff1ba899b385adc85c889fd8669f1b67bf62efab400c659f45d34c0fc9a3492080f26dd01fb4f00c1bbc37a6b62b11e1ae469f07f16a882e1bd0118f73710e4eb6ffff44c84c3ebabf1bb4b1d6fc58c8847c47b4ffa7a0b19eb61bc56453e17ed166b344c1e53c5948c7fd1861669b3ff44957b346e46500c0b742ff4495244d77bf46a5c0315a96ec4662802348ef8effffff", + "cborBytes": [ + 159, 191, 27, 200, 187, 170, 125, 97, 94, 99, 20, 70, 86, 110, 34, 223, 51, 123, 27, 242, 213, 200, 102, 145, 67, + 237, 158, 27, 25, 17, 215, 209, 54, 161, 116, 202, 255, 216, 102, 159, 27, 82, 175, 221, 121, 135, 189, 59, 16, + 159, 191, 27, 64, 194, 179, 223, 4, 57, 116, 16, 27, 163, 52, 147, 136, 48, 31, 128, 179, 27, 143, 25, 80, 205, + 140, 136, 246, 141, 27, 24, 19, 51, 132, 82, 1, 188, 38, 72, 67, 94, 219, 183, 165, 29, 14, 209, 65, 14, 255, 70, + 21, 154, 16, 163, 2, 83, 69, 0, 177, 114, 38, 18, 216, 102, 159, 27, 144, 75, 63, 188, 36, 23, 99, 74, 159, 27, + 193, 21, 228, 232, 233, 2, 226, 35, 27, 14, 235, 59, 150, 234, 169, 109, 215, 255, 255, 255, 255, 216, 102, 159, + 27, 6, 149, 208, 60, 237, 202, 174, 48, 159, 191, 27, 20, 45, 0, 55, 240, 95, 174, 188, 70, 135, 173, 54, 0, 84, + 175, 255, 216, 102, 159, 27, 217, 162, 222, 199, 146, 32, 245, 194, 159, 27, 236, 253, 28, 150, 160, 72, 144, 170, + 68, 29, 194, 26, 127, 255, 255, 255, 255, 27, 168, 153, 179, 133, 173, 200, 92, 136, 159, 216, 102, 159, 27, 103, + 191, 98, 239, 171, 64, 12, 101, 159, 69, 211, 76, 15, 201, 163, 73, 32, 128, 242, 109, 208, 31, 180, 240, 12, 27, + 188, 55, 166, 182, 43, 17, 225, 174, 70, 159, 7, 241, 106, 136, 46, 27, 208, 17, 143, 115, 113, 14, 78, 182, 255, + 255, 68, 200, 76, 62, 186, 191, 27, 180, 177, 214, 252, 88, 200, 132, 124, 71, 180, 255, 167, 160, 177, 158, 182, + 27, 197, 100, 83, 225, 126, 209, 102, 179, 68, 193, 229, 60, 89, 72, 199, 253, 24, 97, 102, 155, 63, 244, 73, 87, + 179, 70, 228, 101, 0, 192, 183, 66, 255, 68, 149, 36, 77, 119, 191, 70, 165, 192, 49, 90, 150, 236, 70, 98, 128, + 35, 72, 239, 142, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3160, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9153642467717604966" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "02d043" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8669f1b7f084553893ce66680ff4302d043a0ff", + "cborBytes": [159, 216, 102, 159, 27, 127, 8, 69, 83, 137, 60, 230, 102, 128, 255, 67, 2, 208, 67, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3161, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18346008181212377408" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16972547138412542840" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9824671359217970416" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17413508627485219399" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1a5635" + }, + { + "_tag": "ByteArray", + "bytearray": "0c53" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1111158895299613134" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1160315759637539968" + } + } + ] + }, + "cborHex": "9fd8669f1bfe9a1d3d4f92f1409f1beb8a99b2aea6fb78ffff1b88583e8c41242cf09fd8669f1bf1a935d60274da479f431a5635420c531b0f6ba120cb5951ceffffff1b101a4509287bac80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 254, 154, 29, 61, 79, 146, 241, 64, 159, 27, 235, 138, 153, 178, 174, 166, 251, 120, 255, + 255, 27, 136, 88, 62, 140, 65, 36, 44, 240, 159, 216, 102, 159, 27, 241, 169, 53, 214, 2, 116, 218, 71, 159, 67, + 26, 86, 53, 66, 12, 83, 27, 15, 107, 161, 32, 203, 89, 81, 206, 255, 255, 255, 27, 16, 26, 69, 9, 40, 123, 172, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3162, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1175454065025632014" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18157629375801617246" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9631601049429263717" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10570043484602680701" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b10500d3e8ba4470e1bfbfcdbb6cbda6b5e1b85aa521fc182c5650fff9f1b92b0568bf82cc57dffff", + "cborBytes": [ + 159, 191, 27, 16, 80, 13, 62, 139, 164, 71, 14, 27, 251, 252, 219, 182, 203, 218, 107, 94, 27, 133, 170, 82, 31, + 193, 130, 197, 101, 15, 255, 159, 27, 146, 176, 86, 139, 248, 44, 197, 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3163, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17645657537910612823" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00a2d3bebf95695218a9e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5d2fb44ab61e09ef0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28a39d90fa03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16868745527204741741" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43ea7f586d6d2bf272a878" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96d5f0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50bb1bddb47c687158d92a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3932897361916797668" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85c81aaf81fa54cb2c3e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42811c7b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d82dafca07f6f0a8391935" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b039be9b6d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5765009911624614132" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00e677" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4517394972912923258" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cdd2b61b30e755cc08b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7644585739662586673" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3423310daa1a75e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "705af3a815d87e873da7" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a5229e320" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17038366566777474828" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5655276707918341069" + } + }, + { + "_tag": "ByteArray", + "bytearray": "478a49" + }, + { + "_tag": "ByteArray", + "bytearray": "82708a516a62336e0b14a5" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7d1cd1b2545e77cbb5" + }, + { + "_tag": "ByteArray", + "bytearray": "2697" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9243985356878422173" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9101256694942838283" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f414ad8669f1bf4e1f80a3f5b23579fbf4b00a2d3bebf95695218a9e849b5d2fb44ab61e09ef04628a39d90fa031bea19d2aebb7f826d4b43ea7f586d6d2bf272a8784396d5f04b50bb1bddb47c687158d92a1b36947550331f22e44a85c81aaf81fa54cb2c3e4442811c7b4bd82dafca07f6f0a839193545b039be9b6dff1b50016df864fdc0f4bf4300e6771b3eb102cb2e9c327a4a8cdd2b61b30e755cc08b1b6a17063a3b9af33148a3423310daa1a75e4a705af3a815d87e873da7ff9f459a5229e3201bec74701e8da9cf0c1b4e7b9433f20363cd43478a494b82708a516a62336e0b14a5ff9f497d1cd1b2545e77cbb54226971b80493bb491a6a09d1b7e4e28be57b6ae0bffffffff", + "cborBytes": [ + 159, 65, 74, 216, 102, 159, 27, 244, 225, 248, 10, 63, 91, 35, 87, 159, 191, 75, 0, 162, 211, 190, 191, 149, 105, + 82, 24, 169, 232, 73, 181, 210, 251, 68, 171, 97, 224, 158, 240, 70, 40, 163, 157, 144, 250, 3, 27, 234, 25, 210, + 174, 187, 127, 130, 109, 75, 67, 234, 127, 88, 109, 109, 43, 242, 114, 168, 120, 67, 150, 213, 240, 75, 80, 187, + 27, 221, 180, 124, 104, 113, 88, 217, 42, 27, 54, 148, 117, 80, 51, 31, 34, 228, 74, 133, 200, 26, 175, 129, 250, + 84, 203, 44, 62, 68, 66, 129, 28, 123, 75, 216, 45, 175, 202, 7, 246, 240, 168, 57, 25, 53, 69, 176, 57, 190, 155, + 109, 255, 27, 80, 1, 109, 248, 100, 253, 192, 244, 191, 67, 0, 230, 119, 27, 62, 177, 2, 203, 46, 156, 50, 122, + 74, 140, 221, 43, 97, 179, 14, 117, 92, 192, 139, 27, 106, 23, 6, 58, 59, 154, 243, 49, 72, 163, 66, 51, 16, 218, + 161, 167, 94, 74, 112, 90, 243, 168, 21, 216, 126, 135, 61, 167, 255, 159, 69, 154, 82, 41, 227, 32, 27, 236, 116, + 112, 30, 141, 169, 207, 12, 27, 78, 123, 148, 51, 242, 3, 99, 205, 67, 71, 138, 73, 75, 130, 112, 138, 81, 106, + 98, 51, 110, 11, 20, 165, 255, 159, 73, 125, 28, 209, 178, 84, 94, 119, 203, 181, 66, 38, 151, 27, 128, 73, 59, + 180, 145, 166, 160, 157, 27, 126, 78, 40, 190, 87, 182, 174, 11, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3164, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb1d8a2ad1e8c2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d2c63843b3a593caf5d22" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1900051080397279491" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c88001672" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9193900800075851262" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11782236742812272405" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2702" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12238673421325745484" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15322718525991317579" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11822021794729069038" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cabf8749" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14240414026677881089" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16567405602585458346" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64f7" + }, + { + "_tag": "ByteArray", + "bytearray": "c2ad10728b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16773096958414673104" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10028419097692173562" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12958439587147607451" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8485018637814713806" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16340967965245307242" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5e81c94df2565" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5768673641612977047" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "07aca007" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2041953230922947450" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6245992162653319097" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e660ae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14932116216457384236" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6887718315172485147" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "04ecac98a7bd" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18416406230909153535" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6198209406393263765" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6ab3b7e2d5144f3bd0b632" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fbf0147fb1d8a2ad1e8c20a4b4d2c63843b3a593caf5d221b1a5e5664062d5103458c880016721b7f974c10f8b365fe071ba382e9e482e187154227021ba9d880a22822bd4c1bd4a53b50ef02704bff9fd8669f1ba410422fc1c089ee9f44cabf87491bc5a01d1bbaa009011be5eb3f9e1fec36aa4264f745c2ad10728bffff1be8c602d0e57dd4d0ffd8669f1bfffffffffffffff49fd8669f1b8b2c1a0958af74fa9f1bb3d5a025d34aed9b1b75c0d77edb83cdce1be2c6c7c9467bf96a47f5e81c94df25651b500e721d01802397ffffffff4407aca0079fd8669f1b1c5679a5111f9b7a9f1b56ae38c77cd32fb943e660ae1bcf398895cacad12c1b5f961750a0ced81bffff4604ecac98a7bdd8669f1bff9437e488a170ff9f1b5604769d978e26954b6ab3b7e2d5144f3bd0b632ffffa0ffff", + "cborBytes": [ + 159, 191, 1, 71, 251, 29, 138, 42, 209, 232, 194, 10, 75, 77, 44, 99, 132, 59, 58, 89, 60, 175, 93, 34, 27, 26, + 94, 86, 100, 6, 45, 81, 3, 69, 140, 136, 0, 22, 114, 27, 127, 151, 76, 16, 248, 179, 101, 254, 7, 27, 163, 130, + 233, 228, 130, 225, 135, 21, 66, 39, 2, 27, 169, 216, 128, 162, 40, 34, 189, 76, 27, 212, 165, 59, 80, 239, 2, + 112, 75, 255, 159, 216, 102, 159, 27, 164, 16, 66, 47, 193, 192, 137, 238, 159, 68, 202, 191, 135, 73, 27, 197, + 160, 29, 27, 186, 160, 9, 1, 27, 229, 235, 63, 158, 31, 236, 54, 170, 66, 100, 247, 69, 194, 173, 16, 114, 139, + 255, 255, 27, 232, 198, 2, 208, 229, 125, 212, 208, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 244, 159, 216, 102, 159, 27, 139, 44, 26, 9, 88, 175, 116, 250, 159, 27, 179, 213, 160, 37, 211, 74, 237, 155, 27, + 117, 192, 215, 126, 219, 131, 205, 206, 27, 226, 198, 199, 201, 70, 123, 249, 106, 71, 245, 232, 28, 148, 223, 37, + 101, 27, 80, 14, 114, 29, 1, 128, 35, 151, 255, 255, 255, 255, 68, 7, 172, 160, 7, 159, 216, 102, 159, 27, 28, 86, + 121, 165, 17, 31, 155, 122, 159, 27, 86, 174, 56, 199, 124, 211, 47, 185, 67, 230, 96, 174, 27, 207, 57, 136, 149, + 202, 202, 209, 44, 27, 95, 150, 23, 80, 160, 206, 216, 27, 255, 255, 70, 4, 236, 172, 152, 167, 189, 216, 102, + 159, 27, 255, 148, 55, 228, 136, 161, 112, 255, 159, 27, 86, 4, 118, 157, 151, 142, 38, 149, 75, 106, 179, 183, + 226, 213, 20, 79, 59, 208, 182, 50, 255, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3165, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12396423079784851112" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17916017468440035495" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e56e91be406e6b" + }, + { + "_tag": "ByteArray", + "bytearray": "9122270acb82c2" + }, + { + "_tag": "ByteArray", + "bytearray": "74b4e075bf6e3eb7a8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10809771129857861381" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6342082803728213835" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bac08f11cac07a6a89fd8669f1bf8a27af6e40fc0a79f47e56e91be406e6b479122270acb82c24974b4e075bf6e3eb7a8ffff1b96040591ea7367051b58039ab54c55674bffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 172, 8, 241, 28, 172, 7, 166, 168, 159, 216, 102, 159, 27, 248, 162, 122, 246, 228, 15, + 192, 167, 159, 71, 229, 110, 145, 190, 64, 110, 107, 71, 145, 34, 39, 10, 203, 130, 194, 73, 116, 180, 224, 117, + 191, 110, 62, 183, 168, 255, 255, 27, 150, 4, 5, 145, 234, 115, 103, 5, 27, 88, 3, 154, 181, 76, 85, 103, 75, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3166, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4334157164726291480" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12317605346987777871" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3c2604fa5c398c189f9f1baaf0eccd36a89f4fffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 60, 38, 4, 250, 92, 57, 140, 24, 159, 159, 27, 170, 240, 236, 205, 54, 168, 159, 79, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3167, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17742930176076960507" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8955080354807350116" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b4e7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5856894099652841069" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ab6ecd0ee57f" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3123098429796758446" + }, + "fields": [] + } + ] + }, + "cborHex": "9fa0d8669f1bf63b8cfd33a052fb9fd8669f1b7c46d622fb5f03649f42b4e71b5147de2708e38e6d46ab6ecd0ee57fffffffffd8669f1b2b5779799a9db3ae80ffff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 246, 59, 140, 253, 51, 160, 82, 251, 159, 216, 102, 159, 27, 124, 70, 214, 34, 251, + 95, 3, 100, 159, 66, 180, 231, 27, 81, 71, 222, 39, 8, 227, 142, 109, 70, 171, 110, 205, 14, 229, 127, 255, 255, + 255, 255, 216, 102, 159, 27, 43, 87, 121, 121, 154, 157, 179, 174, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3168, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "693968930971685587" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b54f07730e44" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "622765" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4557320219859682022" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6294816925277797348" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c0fca34789ec323972eedab8" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4d49" + } + ] + }, + "cborHex": "9fd8669f1b09a17910dfb992d39f9f46b54f07730e44ff9f436227651b3f3eda98207102e6ff1b575baea4654cbbe4a04cc0fca34789ec323972eedab8ffff424d49ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 9, 161, 121, 16, 223, 185, 146, 211, 159, 159, 70, 181, 79, 7, 115, 14, 68, 255, 159, 67, + 98, 39, 101, 27, 63, 62, 218, 152, 32, 113, 2, 230, 255, 27, 87, 91, 174, 164, 101, 76, 187, 228, 160, 76, 192, + 252, 163, 71, 137, 236, 50, 57, 114, 238, 218, 184, 255, 255, 66, 77, 73, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3169, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10263137163908227691" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5655597294337227938" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14814064099644545433" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d1fa" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8934498524346682411" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17227634655162413029" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12213488653628605240" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffee9fa01b8e6dfcdfc7dc226bd8669f1b4e7cb7c649a17ca29f1bcd9620cf732e199942d1faffffd8669f1b7bfdb71225ef8c2b9f1bef14da71652a2fe51ba97f07387bcc0338ffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 160, 27, 142, 109, 252, 223, 199, 220, 34, + 107, 216, 102, 159, 27, 78, 124, 183, 198, 73, 161, 124, 162, 159, 27, 205, 150, 32, 207, 115, 46, 25, 153, 66, + 209, 250, 255, 255, 216, 102, 159, 27, 123, 253, 183, 18, 37, 239, 140, 43, 159, 27, 239, 20, 218, 113, 101, 42, + 47, 229, 27, 169, 127, 7, 56, 123, 204, 3, 56, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3170, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9262495695283109940" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11303000182989911785" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2deebe84d470c406" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13541600134440319029" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6039145832200914093" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14935842495394178433" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16991869326201246861" + } + } + ] + }, + "cborHex": "9f9fd8669f1b808afec292ef40349f1b9cdc52c7d349f6e9482deebe84d470c4061bbbed6d9367b278351b53cf5b233b1dc4ad1bcf46c59db7276581ffffff1bebcf3f201a14d48dff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 128, 138, 254, 194, 146, 239, 64, 52, 159, 27, 156, 220, 82, 199, 211, 73, 246, 233, + 72, 45, 238, 190, 132, 212, 112, 196, 6, 27, 187, 237, 109, 147, 103, 178, 120, 53, 27, 83, 207, 91, 35, 59, 29, + 196, 173, 27, 207, 70, 197, 157, 183, 39, 101, 129, 255, 255, 255, 27, 235, 207, 63, 32, 26, 20, 212, 141, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3171, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "686a05fec6" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f45686a05fec6a0ff", + "cborBytes": [159, 69, 104, 106, 5, 254, 198, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3172, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "43683c992bc8" + } + ] + }, + "cborHex": "9f4643683c992bc8ff", + "cborBytes": [159, 70, 67, 104, 60, 153, 43, 200, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3173, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3638823693508246958" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "62336dd652efab6cd9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0532" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d1975611bcad4c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee6c57" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93480d15528935f7d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14872483185575333064" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b81a36c63c5ccb9fb7ae406e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57283449191df089c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d724d2508d88c" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16884860186401843654" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5af860" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4628187626422700199" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c81cc9f99" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16023715392882944061" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7d44b5665f111383" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2578787235844710359" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f9a6ea91a2" + }, + { + "_tag": "ByteArray", + "bytearray": "b5" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0896" + }, + { + "_tag": "ByteArray", + "bytearray": "e4fc" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f737477a0b575d99d5338c" + } + ] + } + ] + }, + "cborHex": "9f1b327fb2deb3d57daebf4962336dd652efab6cd9420532486d1975611bcad4c143ee6c574993480d15528935f7d91bce65aca8d4300cc84cb81a36c63c5ccb9fb7ae406e4957283449191df089c041be477d724d2508d88cff9f1bea5312e1349e29c69f435af8601b403aa02002c888a7452c81cc9f991bde5fac40a6bf283dff487d44b5665f111383ff9f9f1b23c9b153f7d5dfd745f9a6ea91a241b5ff9f42089642e4fcff4bf737477a0b575d99d5338cffff", + "cborBytes": [ + 159, 27, 50, 127, 178, 222, 179, 213, 125, 174, 191, 73, 98, 51, 109, 214, 82, 239, 171, 108, 217, 66, 5, 50, 72, + 109, 25, 117, 97, 27, 202, 212, 193, 67, 238, 108, 87, 73, 147, 72, 13, 21, 82, 137, 53, 247, 217, 27, 206, 101, + 172, 168, 212, 48, 12, 200, 76, 184, 26, 54, 198, 60, 92, 203, 159, 183, 174, 64, 110, 73, 87, 40, 52, 73, 25, 29, + 240, 137, 192, 65, 190, 71, 125, 114, 77, 37, 8, 216, 140, 255, 159, 27, 234, 83, 18, 225, 52, 158, 41, 198, 159, + 67, 90, 248, 96, 27, 64, 58, 160, 32, 2, 200, 136, 167, 69, 44, 129, 204, 159, 153, 27, 222, 95, 172, 64, 166, + 191, 40, 61, 255, 72, 125, 68, 181, 102, 95, 17, 19, 131, 255, 159, 159, 27, 35, 201, 177, 83, 247, 213, 223, 215, + 69, 249, 166, 234, 145, 162, 65, 181, 255, 159, 66, 8, 150, 66, 228, 252, 255, 75, 247, 55, 71, 122, 11, 87, 93, + 153, 213, 51, 140, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3174, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02c168eeafcdd4" + } + ] + }, + "cborHex": "9f4702c168eeafcdd4ff", + "cborBytes": [159, 71, 2, 193, 104, 238, 175, 205, 212, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3175, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "ByteArray", + "bytearray": "830ba9cf74" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "020bfe0402fd0006feab0a59" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a002" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53a3d67fc96f6f4171166dfc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cedab681956e7c9c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e30f54564347cffb1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c216cd4a6ceb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18205174517965610059" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a54a2a775fc38dd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8614902476664176821" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8877fc446fe49c44c7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ff069" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a652" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04f61bbd370ddf543f43ad4a" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1045830ba9cf749fbf4c020bfe0402fd0006feab0a5942a0024c53a3d67fc96f6f4171166dfc48cedab681956e7c9c495e30f54564347cffb11bfffffffffffffffd46c216cd4a6ceb4192ff41041bfca5c5c4d9555c4bbf485a54a2a775fc38dd1b778e4828a83380b5498877fc446fe49c44c7432ff06942a6524c04f61bbd370ddf543f43ad4affffff", + "cborBytes": [ + 159, 16, 69, 131, 11, 169, 207, 116, 159, 191, 76, 2, 11, 254, 4, 2, 253, 0, 6, 254, 171, 10, 89, 66, 160, 2, 76, + 83, 163, 214, 127, 201, 111, 111, 65, 113, 22, 109, 252, 72, 206, 218, 182, 129, 149, 110, 124, 156, 73, 94, 48, + 245, 69, 100, 52, 124, 255, 177, 27, 255, 255, 255, 255, 255, 255, 255, 253, 70, 194, 22, 205, 74, 108, 235, 65, + 146, 255, 65, 4, 27, 252, 165, 197, 196, 217, 85, 92, 75, 191, 72, 90, 84, 162, 167, 117, 252, 56, 221, 27, 119, + 142, 72, 40, 168, 51, 128, 181, 73, 136, 119, 252, 68, 111, 228, 156, 68, 199, 67, 47, 240, 105, 66, 166, 82, 76, + 4, 246, 27, 189, 55, 13, 223, 84, 63, 67, 173, 74, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3176, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1970589659132988268" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4465651817920491827" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17434407118708063427" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf1b1b58f0dab6ae0b6c41a91b3df92eab19ba71331bf1f374e72c22bcc3ffa0ff", + "cborBytes": [ + 159, 191, 27, 27, 88, 240, 218, 182, 174, 11, 108, 65, 169, 27, 61, 249, 46, 171, 25, 186, 113, 51, 27, 241, 243, + 116, 231, 44, 34, 188, 195, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3177, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eecb6c7524" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9148256740168019504" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9dd8d5f214f7630acb02f" + } + } + ] + } + ] + }, + "cborHex": "9f45eecb6c7524bf1b7ef523091fc9ae304be9dd8d5f214f7630acb02fffff", + "cborBytes": [ + 159, 69, 238, 203, 108, 117, 36, 191, 27, 126, 245, 35, 9, 31, 201, 174, 48, 75, 233, 221, 141, 95, 33, 79, 118, + 48, 172, 176, 47, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3178, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11260134438358033271" + } + } + ] + }, + "cborHex": "9f1b9c44089ce9792377ff", + "cborBytes": [159, 27, 156, 68, 8, 156, 233, 121, 35, 119, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3179, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10518809125669616845" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d4f7e5f49215d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5439136520096641621" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66014f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a344e8c9944b86a526f2b7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d313" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75196696" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3616349452464900755" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8697968840480146794" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5766376242133698113" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3ca62147" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15683774166790635889" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f38c3afb9e" + }, + { + "_tag": "ByteArray", + "bytearray": "390eca6cef8470" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15763193673620320056" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "35a0eaa6da78b5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10253639469327602744" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7009411542483199754" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12046762837889350675" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "755745684596371095" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a82c9ef06e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13671588131384986758" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "76c7686f0ae9" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14315472794337482439" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7138247021651940241" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11196599756608638881" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12979806244745352539" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15372349403727979445" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b91fa512b33acbccd9fbf473d4f7e5f49215d1b4b7bb1d8e536f2554366014f4ba344e8c9944b86a526f2b742d3134475196696ff1b322fdaaab1d94a931b78b564939c3c456affffd8669f1b500648a401a186419f9f443ca621471bd9a7f5822d01017145f38c3afb9e47390eca6cef8470ffd8669f1bdac21d2111d2ef389f4735a0eaa6da78b51b8e4c3ec5703254381b61466ea9123be70a1ba72eb2f97dc57c131b0a7cf2b22ee6ae97ffff45a82c9ef06effff9fd8669f1bbdbb3cf866a60c869f4676c7686f0ae9ffff1bc6aac6a8ea4116c7bf1b631025d89c8dd3911b9b62502810e20fa11bb42189027771955b1bd5558e562464e3b5ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 145, 250, 81, 43, 51, 172, 188, 205, 159, 191, 71, 61, 79, 126, 95, 73, 33, 93, 27, 75, + 123, 177, 216, 229, 54, 242, 85, 67, 102, 1, 79, 75, 163, 68, 232, 201, 148, 75, 134, 165, 38, 242, 183, 66, 211, + 19, 68, 117, 25, 102, 150, 255, 27, 50, 47, 218, 170, 177, 217, 74, 147, 27, 120, 181, 100, 147, 156, 60, 69, 106, + 255, 255, 216, 102, 159, 27, 80, 6, 72, 164, 1, 161, 134, 65, 159, 159, 68, 60, 166, 33, 71, 27, 217, 167, 245, + 130, 45, 1, 1, 113, 69, 243, 140, 58, 251, 158, 71, 57, 14, 202, 108, 239, 132, 112, 255, 216, 102, 159, 27, 218, + 194, 29, 33, 17, 210, 239, 56, 159, 71, 53, 160, 234, 166, 218, 120, 181, 27, 142, 76, 62, 197, 112, 50, 84, 56, + 27, 97, 70, 110, 169, 18, 59, 231, 10, 27, 167, 46, 178, 249, 125, 197, 124, 19, 27, 10, 124, 242, 178, 46, 230, + 174, 151, 255, 255, 69, 168, 44, 158, 240, 110, 255, 255, 159, 216, 102, 159, 27, 189, 187, 60, 248, 102, 166, 12, + 134, 159, 70, 118, 199, 104, 111, 10, 233, 255, 255, 27, 198, 170, 198, 168, 234, 65, 22, 199, 191, 27, 99, 16, + 37, 216, 156, 141, 211, 145, 27, 155, 98, 80, 40, 16, 226, 15, 161, 27, 180, 33, 137, 2, 119, 113, 149, 91, 27, + 213, 85, 142, 86, 36, 100, 227, 181, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3180, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5367523485593554736" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10457717604420433170" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5582337026557228583" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2cc139a70981faa013" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b98a026838" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c6f7a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5808204542915974362" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7662fd0cc60c16" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adc41122a7f8fbff08ba930d" + } + } + ] + } + ] + }, + "cborHex": "9f1b4a7d462bfa5ecf30bf1b912146c0fcd435121b4d7871f2fc743627492cc139a70981faa01345b98a026838438c6f7a1b509ae342335114daff477662fd0cc60c1612bf1bffffffffffffffef4cadc41122a7f8fbff08ba930dffff", + "cborBytes": [ + 159, 27, 74, 125, 70, 43, 250, 94, 207, 48, 191, 27, 145, 33, 70, 192, 252, 212, 53, 18, 27, 77, 120, 113, 242, + 252, 116, 54, 39, 73, 44, 193, 57, 167, 9, 129, 250, 160, 19, 69, 185, 138, 2, 104, 56, 67, 140, 111, 122, 27, 80, + 154, 227, 66, 51, 81, 20, 218, 255, 71, 118, 98, 253, 12, 198, 12, 22, 18, 191, 27, 255, 255, 255, 255, 255, 255, + 255, 239, 76, 173, 196, 17, 34, 167, 248, 251, 255, 8, 186, 147, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3181, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "423330751381595367" + } + } + ] + }, + "cborHex": "9f1b05dff913529964e7ff", + "cborBytes": [159, 27, 5, 223, 249, 19, 82, 153, 100, 231, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3182, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05e796f68f568131" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f907e1e31257803ec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ee1873cff97ea1bc2d92a04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e19d57fce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6370b453ccc7c6292e8647e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14058817338335321964" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "daa5236c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + "cborHex": "9f9fbf4805e796f68f568131499f907e1e31257803ec4c3ee1873cff97ea1bc2d92a04455e19d57fce4cb6370b453ccc7c6292e8647e1bc31af3e1e5945f6cff44daa5236cff04ff", + "cborBytes": [ + 159, 159, 191, 72, 5, 231, 150, 246, 143, 86, 129, 49, 73, 159, 144, 126, 30, 49, 37, 120, 3, 236, 76, 62, 225, + 135, 60, 255, 151, 234, 27, 194, 217, 42, 4, 69, 94, 25, 213, 127, 206, 76, 182, 55, 11, 69, 60, 204, 124, 98, + 146, 232, 100, 126, 27, 195, 26, 243, 225, 229, 148, 95, 108, 255, 68, 218, 165, 35, 108, 255, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3183, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c5d7e9fa1119d198dc22bb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1203579100762651318" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "520945858088491538" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "46adf752aa" + }, + { + "_tag": "ByteArray", + "bytearray": "161ed3da" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1210879440396839988" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd9050d9f804bc5d7e9fa1119d198dc22bb1b10b3f8d0b80abab6d8669f1b073ac57f72935a129f4546adf752aa44161ed3da1b10cde86f7ead6c34ffffffff", + "cborBytes": [ + 159, 217, 5, 13, 159, 128, 75, 197, 215, 233, 250, 17, 25, 209, 152, 220, 34, 187, 27, 16, 179, 248, 208, 184, 10, + 186, 182, 216, 102, 159, 27, 7, 58, 197, 127, 114, 147, 90, 18, 159, 69, 70, 173, 247, 82, 170, 68, 22, 30, 211, + 218, 27, 16, 205, 232, 111, 126, 173, 108, 52, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3184, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5768966733406835550" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16507402717376293242" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11892424658707311141" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5528748574920159155" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15390425413837976266" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3711098178886654489" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15729798248866341533" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f55dcd9b50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17390485370949339365" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12177859604362664086" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7580936978084963351" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1271190129913956774" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c63b64d676f5b0" + } + ] + }, + "cborHex": "9fbf1b500f7cadc1c2935e1be516134fbd88297a1ba50a6137e4586a251b4cba0f894c902fb31bd595c65f35f4f2ca1b33807821a7235a191bda4b782ad43d629d45f55dcd9b501bf1576a4e5f1008e51ba90072ca029d9896ff1b6934e6041b60a4171b11a42cb0278109a647c63b64d676f5b0ff", + "cborBytes": [ + 159, 191, 27, 80, 15, 124, 173, 193, 194, 147, 94, 27, 229, 22, 19, 79, 189, 136, 41, 122, 27, 165, 10, 97, 55, + 228, 88, 106, 37, 27, 76, 186, 15, 137, 76, 144, 47, 179, 27, 213, 149, 198, 95, 53, 244, 242, 202, 27, 51, 128, + 120, 33, 167, 35, 90, 25, 27, 218, 75, 120, 42, 212, 61, 98, 157, 69, 245, 93, 205, 155, 80, 27, 241, 87, 106, 78, + 95, 16, 8, 229, 27, 169, 0, 114, 202, 2, 157, 152, 150, 255, 27, 105, 52, 230, 4, 27, 96, 164, 23, 27, 17, 164, + 44, 176, 39, 129, 9, 166, 71, 198, 59, 100, 214, 118, 245, 176, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3185, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + ] + }, + "cborHex": "9f1bffffffffffffffedff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3186, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bd7c23ef" + } + ] + }, + "cborHex": "9f44bd7c23efff", + "cborBytes": [159, 68, 189, 124, 35, 239, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3187, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13839468091202302907" + } + } + ] + }, + "cborHex": "9f1bc00faae7807773bbff", + "cborBytes": [159, 27, 192, 15, 170, 231, 128, 119, 115, 187, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3188, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01ac" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15048421653892469834" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14755265403504461663" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3a0ee669c18a518d024b" + } + ] + }, + "cborHex": "9f4201ac9f9f061bd0d6bbc3a68e944aff1bccc53bb52e7e875fff4a3a0ee669c18a518d024bff", + "cborBytes": [ + 159, 66, 1, 172, 159, 159, 6, 27, 208, 214, 187, 195, 166, 142, 148, 74, 255, 27, 204, 197, 59, 181, 46, 126, 135, + 95, 255, 74, 58, 14, 230, 105, 193, 138, 81, 141, 2, 75, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3189, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7305380004329917404" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1165312747696957471" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14876664138158300486" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2839767353080290881" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9522413914" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6628113265131167610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13447290988157015634" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18388444065540220268" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8266101798916814509" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13498322114318305687" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e61b4ea735226742bb14db0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9660182038495950867" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "947546700048692087" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12678640262750978553" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3751236271573805531" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18351084618729937530" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5781912207486807170" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55c9e2" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1658213389678770151" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6137051553976669970" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "548741243117659958" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2547439091769477304" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2b0c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16640649275417561500" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10064041936598780596" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b6561ec688b538bdc9fbf1b102c05c51ab6281f1bce748736b5b7dd461b2768e15ca51a1e414595224139141b5bfbc9e5bb329f7a1bba9e5fe82c6916521bff30e07392aa256c1b72b717ca59a776adff1bbb53ac721fbe09974c4e61b4ea735226742bb14db01b860fdc61d628f813ffffbf1b0d265cb4107ef3771baff39425083cc1f91b340f11839bb7a9db1bfeac263b86885a7a1b503d7a84d1beec824355c9e2ffd8669f1b1703284ad59977e780ffd8669f1b552b2fdf7309d7129fd8669f1b079d8540d5a267369f1b235a525b67dd08b8ffff422b0c1be6ef76599d20099c1b8baaa8d1db9acab4ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 101, 97, 236, 104, 139, 83, 139, 220, 159, 191, 27, 16, 44, 5, 197, 26, 182, 40, 31, 27, + 206, 116, 135, 54, 181, 183, 221, 70, 27, 39, 104, 225, 92, 165, 26, 30, 65, 69, 149, 34, 65, 57, 20, 27, 91, 251, + 201, 229, 187, 50, 159, 122, 27, 186, 158, 95, 232, 44, 105, 22, 82, 27, 255, 48, 224, 115, 146, 170, 37, 108, 27, + 114, 183, 23, 202, 89, 167, 118, 173, 255, 27, 187, 83, 172, 114, 31, 190, 9, 151, 76, 78, 97, 180, 234, 115, 82, + 38, 116, 43, 177, 77, 176, 27, 134, 15, 220, 97, 214, 40, 248, 19, 255, 255, 191, 27, 13, 38, 92, 180, 16, 126, + 243, 119, 27, 175, 243, 148, 37, 8, 60, 193, 249, 27, 52, 15, 17, 131, 155, 183, 169, 219, 27, 254, 172, 38, 59, + 134, 136, 90, 122, 27, 80, 61, 122, 132, 209, 190, 236, 130, 67, 85, 201, 226, 255, 216, 102, 159, 27, 23, 3, 40, + 74, 213, 153, 119, 231, 128, 255, 216, 102, 159, 27, 85, 43, 47, 223, 115, 9, 215, 18, 159, 216, 102, 159, 27, 7, + 157, 133, 64, 213, 162, 103, 54, 159, 27, 35, 90, 82, 91, 103, 221, 8, 184, 255, 255, 66, 43, 12, 27, 230, 239, + 118, 89, 157, 32, 9, 156, 27, 139, 170, 168, 209, 219, 154, 202, 180, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3190, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5229a506" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4306394844989693567" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14259410822979296448" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6bc8257b822149" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1080795973890443353" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "164635582197139644" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7725879691835259977" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3362720879318563207" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2028305501134108391" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df72" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a922818b9745" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0ac62ac5680" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d92d1f" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bb6dbe33" + } + ] + } + ] + }, + "cborHex": "9f445229a5061b3bc3634b962f1e7f1bc5e39a980a0a9cc0476bc8257b8221499fd8669f1b0effc2364269885980ffbf1b0248e730924008bc1b6b37d6a5713ebc491b2eaac8d2c29279871b1c25fd1b5b11b6e742df7246a922818b974546f0ac62ac568043d92d1fff44bb6dbe33ffff", + "cborBytes": [ + 159, 68, 82, 41, 165, 6, 27, 59, 195, 99, 75, 150, 47, 30, 127, 27, 197, 227, 154, 152, 10, 10, 156, 192, 71, 107, + 200, 37, 123, 130, 33, 73, 159, 216, 102, 159, 27, 14, 255, 194, 54, 66, 105, 136, 89, 128, 255, 191, 27, 2, 72, + 231, 48, 146, 64, 8, 188, 27, 107, 55, 214, 165, 113, 62, 188, 73, 27, 46, 170, 200, 210, 194, 146, 121, 135, 27, + 28, 37, 253, 27, 91, 17, 182, 231, 66, 223, 114, 70, 169, 34, 129, 139, 151, 69, 70, 240, 172, 98, 172, 86, 128, + 67, 217, 45, 31, 255, 68, 187, 109, 190, 51, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3191, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9131091686338421129" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bcfd4fcd0ee5dc7795de9d1b" + }, + { + "_tag": "ByteArray", + "bytearray": "ddcf7ffb0316" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13006713932856728103" + } + }, + { + "_tag": "ByteArray", + "bytearray": "000155" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d65fb4" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15140389681176840259" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7eb8278297b961899fd905039f4cbcfd4fcd0ee5dc7795de9d1b46ddcf7ffb03161bb4812168cf0c9a2743000155ffffff9fd8669f1bffffffffffffffec80ff43d65fb4ff9f801bd21d7832a3890843ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 126, 184, 39, 130, 151, 185, 97, 137, 159, 217, 5, 3, 159, 76, 188, 253, 79, 205, 14, 229, + 220, 119, 149, 222, 157, 27, 70, 221, 207, 127, 251, 3, 22, 27, 180, 129, 33, 104, 207, 12, 154, 39, 67, 0, 1, 85, + 255, 255, 255, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 128, 255, 67, 214, 95, 180, 255, + 159, 128, 27, 210, 29, 120, 50, 163, 137, 8, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3192, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13114692990709693505" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16616314832803785946" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9fd7b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10046212947883387564" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13882087570118176863" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6871127197338689586" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f1bb600bfca598e7c41ffd8669f1bffffffffffffffef9f1be699024dad52ecda439fd7b71b8b6b5172f084eaac1bc0a7151835c2705f1b5f5b25c7fbe5e032ffffffff", + "cborBytes": [ + 159, 159, 159, 27, 182, 0, 191, 202, 89, 142, 124, 65, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 239, 159, 27, 230, 153, 2, 77, 173, 82, 236, 218, 67, 159, 215, 183, 27, 139, 107, 81, 114, 240, 132, 234, 172, + 27, 192, 167, 21, 24, 53, 194, 112, 95, 27, 95, 91, 37, 199, 251, 229, 224, 50, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3193, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7d401dadb9c49b29ca" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4255482247442012169" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5804895791061061561" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c3493443df2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16609334920887813162" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5017241910159485354" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11957783303485855916" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1fec6" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d567636e90c3e443f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16163862780113434821" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f497d401dadb9c49b29cad8669f1b3b0e828ebac318099f1b508f21f7605acfb9461c3493443df21be680361c4b02442affff1b45a0d2ef4f4229aabf1ba5f2948f395f18ac43d1fec6ffbf49d567636e90c3e443f41be051938f06d1b8c5ffffff", + "cborBytes": [ + 159, 159, 73, 125, 64, 29, 173, 185, 196, 155, 41, 202, 216, 102, 159, 27, 59, 14, 130, 142, 186, 195, 24, 9, 159, + 27, 80, 143, 33, 247, 96, 90, 207, 185, 70, 28, 52, 147, 68, 61, 242, 27, 230, 128, 54, 28, 75, 2, 68, 42, 255, + 255, 27, 69, 160, 210, 239, 79, 66, 41, 170, 191, 27, 165, 242, 148, 143, 57, 95, 24, 172, 67, 209, 254, 198, 255, + 191, 73, 213, 103, 99, 110, 144, 195, 228, 67, 244, 27, 224, 81, 147, 143, 6, 209, 184, 197, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3194, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15648405193834027787" + } + } + ] + }, + "cborHex": "9f1bd92a4d9d6fdadb0bff", + "cborBytes": [159, 27, 217, 42, 77, 157, 111, 218, 219, 11, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3195, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4a6ecb125384b6aefcc35e1b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "978735688929523403" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bfa9ed115b" + }, + { + "_tag": "ByteArray", + "bytearray": "ce9fd0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5896463391804295606" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f4c4a6ecb125384b6aefcc35e1b9f1b0d952aec6ba436cb45bfa9ed115b43ce9fd01b51d47236cb9709b6ffffff", + "cborBytes": [ + 159, 159, 76, 74, 110, 203, 18, 83, 132, 182, 174, 252, 195, 94, 27, 159, 27, 13, 149, 42, 236, 107, 164, 54, 203, + 69, 191, 169, 237, 17, 91, 67, 206, 159, 208, 27, 81, 212, 114, 54, 203, 151, 9, 182, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3196, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fb3ce56116006d20d54a2d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16670342296982886929" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b96c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2107652541ba7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fccdbb055f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12867413138960004823" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afcedbf88d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4eadc98834f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb71d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10651530861704217661" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12088409654853437734" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3708072156793733971" + } + }, + { + "_tag": "ByteArray", + "bytearray": "48c32f657d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1439833066543323430" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15060262826710133214" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ae9aa2" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fbf4c1fb3ce56116006d20d54a2d51be758f3feefd59a11436b96c647a2107652541ba7467fccdbb055f71bb2923c134de7b6d745afcedbf88d464eadc98834f943bb71d51b93d1d6e26dfd843dffd8669f1ba7c2a888b0f109269f1b3375b7fafb3503534548c32f657dffffd8669f1b13fb508ba32d19269f1bd100cd3f8a13e9de43ae9aa280ffffff", + "cborBytes": [ + 159, 191, 76, 31, 179, 206, 86, 17, 96, 6, 210, 13, 84, 162, 213, 27, 231, 88, 243, 254, 239, 213, 154, 17, 67, + 107, 150, 198, 71, 162, 16, 118, 82, 84, 27, 167, 70, 127, 204, 219, 176, 85, 247, 27, 178, 146, 60, 19, 77, 231, + 182, 215, 69, 175, 206, 219, 248, 141, 70, 78, 173, 201, 136, 52, 249, 67, 187, 113, 213, 27, 147, 209, 214, 226, + 109, 253, 132, 61, 255, 216, 102, 159, 27, 167, 194, 168, 136, 176, 241, 9, 38, 159, 27, 51, 117, 183, 250, 251, + 53, 3, 83, 69, 72, 195, 47, 101, 125, 255, 255, 216, 102, 159, 27, 19, 251, 80, 139, 163, 45, 25, 38, 159, 27, + 209, 0, 205, 63, 138, 19, 233, 222, 67, 174, 154, 162, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3197, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17946909849544472255" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16858692227433439031" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02361474cc2e2d17d4773e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a59ba5b085beb9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8165af156f7703d500108" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d39cf9359ab1cb" + } + } + ] + } + ] + }, + "cborHex": "9fbf1bf9103b6bde0eb6bf1be9f61b4279cf1f374b02361474cc2e2d17d4773e47a59ba5b085beb94ba8165af156f7703d50010847d39cf9359ab1cbffff", + "cborBytes": [ + 159, 191, 27, 249, 16, 59, 107, 222, 14, 182, 191, 27, 233, 246, 27, 66, 121, 207, 31, 55, 75, 2, 54, 20, 116, + 204, 46, 45, 23, 212, 119, 62, 71, 165, 155, 165, 176, 133, 190, 185, 75, 168, 22, 90, 241, 86, 247, 112, 61, 80, + 1, 8, 71, 211, 156, 249, 53, 154, 177, 203, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3198, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5279059879752662809" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11722798075140525070" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2dceb2b495a839d977" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5854466680115677657" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a423088522efbb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a799eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7783522110971acf370cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "786534629848736547" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4b632e70bd6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17549743895711081565" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "488208261579423309" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8bdde538b9c86db885d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "298130201339002706" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75002c69a28ef5724930" + }, + { + "_tag": "ByteArray", + "bytearray": "1ed7cc" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ed13" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5836398100512407652" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10764213184989896382" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11692211760653770541" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8329096644704373018" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64" + }, + { + "_tag": "ByteArray", + "bytearray": "87b68e2b59aaaa88068352af" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2888936686600690169" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17819956081980225824" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8531008740669395951" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb91300757cf6e29e97c98" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12820298686460458942" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2485342584072462738" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12889175045414603423" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9723531984605353910" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12997720711803557353" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6055104013019179753" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "136527269263965874" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecf419904a8e77f48f6566" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4856737164190954209" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8372" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5154602509317340577" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0313f164" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10424684164524902030" + } + } + ] + } + ] + }, + "cborHex": "9f1b4942fcfdb0ac7f19d8669f1ba2afbebd42624c0e9fbf492dceb2b495a839d9771b513f3e6d61a7c9d9489a423088522efbb643a799eb4bd7783522110971acf370cb1b0aea55141fad632346e4b632e70bd61bf38d371732f0645dffd8669f1b06c676d3c7da3e4d9f4a8bdde538b9c86db885d01b04232bd6aba07f524a75002c69a28ef5724930431ed7ccffffffff42ed131b50ff0d265cce8064d8669f1b95622adc49e61ebe9fd8669f1ba24314a5f8699f2d9f1b7396e544d780891a41644c87b68e2b59aaaa88068352afffffbf1b2817909c376d99f91bf74d33a4737e39201b76643b401b5a13ef4bfb91300757cf6e29e97c981bb1ead9bb00e1f7be1b227db5e98cca61921bb2df8c69fdc44a9f1b86f0ecd2908d17b61bb4612e1f5cc9d5e91b54080d04be0ceae9ffbf1b01e50ad3faa1feb24becf419904a8e77f48f65661b436698b7ff0a32e14283721b4788d3ac06327da1440313f164ff1b90abeb03ea25868effffff", + "cborBytes": [ + 159, 27, 73, 66, 252, 253, 176, 172, 127, 25, 216, 102, 159, 27, 162, 175, 190, 189, 66, 98, 76, 14, 159, 191, 73, + 45, 206, 178, 180, 149, 168, 57, 217, 119, 27, 81, 63, 62, 109, 97, 167, 201, 217, 72, 154, 66, 48, 136, 82, 46, + 251, 182, 67, 167, 153, 235, 75, 215, 120, 53, 34, 17, 9, 113, 172, 243, 112, 203, 27, 10, 234, 85, 20, 31, 173, + 99, 35, 70, 228, 182, 50, 231, 11, 214, 27, 243, 141, 55, 23, 50, 240, 100, 93, 255, 216, 102, 159, 27, 6, 198, + 118, 211, 199, 218, 62, 77, 159, 74, 139, 221, 229, 56, 185, 200, 109, 184, 133, 208, 27, 4, 35, 43, 214, 171, + 160, 127, 82, 74, 117, 0, 44, 105, 162, 142, 245, 114, 73, 48, 67, 30, 215, 204, 255, 255, 255, 255, 66, 237, 19, + 27, 80, 255, 13, 38, 92, 206, 128, 100, 216, 102, 159, 27, 149, 98, 42, 220, 73, 230, 30, 190, 159, 216, 102, 159, + 27, 162, 67, 20, 165, 248, 105, 159, 45, 159, 27, 115, 150, 229, 68, 215, 128, 137, 26, 65, 100, 76, 135, 182, + 142, 43, 89, 170, 170, 136, 6, 131, 82, 175, 255, 255, 191, 27, 40, 23, 144, 156, 55, 109, 153, 249, 27, 247, 77, + 51, 164, 115, 126, 57, 32, 27, 118, 100, 59, 64, 27, 90, 19, 239, 75, 251, 145, 48, 7, 87, 207, 110, 41, 233, 124, + 152, 27, 177, 234, 217, 187, 0, 225, 247, 190, 27, 34, 125, 181, 233, 140, 202, 97, 146, 27, 178, 223, 140, 105, + 253, 196, 74, 159, 27, 134, 240, 236, 210, 144, 141, 23, 182, 27, 180, 97, 46, 31, 92, 201, 213, 233, 27, 84, 8, + 13, 4, 190, 12, 234, 233, 255, 191, 27, 1, 229, 10, 211, 250, 161, 254, 178, 75, 236, 244, 25, 144, 74, 142, 119, + 244, 143, 101, 102, 27, 67, 102, 152, 183, 255, 10, 50, 225, 66, 131, 114, 27, 71, 136, 211, 172, 6, 50, 125, 161, + 68, 3, 19, 241, 100, 255, 27, 144, 171, 235, 3, 234, 37, 134, 142, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3199, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9422912267433751276" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5b97b6414b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10424435920040269408" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3724162ec4968b2241e7909e" + }, + { + "_tag": "ByteArray", + "bytearray": "9ddfcd2d" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "707bbc" + } + ] + }, + "cborHex": "9f1b82c4e8c8520f32ec9f455b97b6414b9f1b90ab093cfdd296604c3724162ec4968b2241e7909e449ddfcd2dffff43707bbcff", + "cborBytes": [ + 159, 27, 130, 196, 232, 200, 82, 15, 50, 236, 159, 69, 91, 151, 182, 65, 75, 159, 27, 144, 171, 9, 60, 253, 210, + 150, 96, 76, 55, 36, 22, 46, 196, 150, 139, 34, 65, 231, 144, 158, 68, 157, 223, 205, 45, 255, 255, 67, 112, 123, + 188, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3200, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "150e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e067f06" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2018ef58ecc8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1127952004173581475" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53811140bf8593591a29" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d82c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f11b76244" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14531796110993596863" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f22b9734991e8a32781e30bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a986812a2cccd307eb57e91" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd859739e9e6ac9b51da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1ec1b93140dd791d6e8e158" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9503149503098107076" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ceb9293" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13903638405685187141" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2652385814046273741" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16316893547593392085" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3155161160983054627" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18101332454035158329" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17206201521884853743" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3903836299084325908" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17617760155319963455" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12635028332487822917" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "30" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1252015116452739652" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3a" + }, + { + "_tag": "ByteArray", + "bytearray": "def972f1b14568b72661" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12325153406158939837" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "65b9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1046593084472674138" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "30da551305266ca9dba91d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2478838678403976434" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d5f2293979265cf0beed4743" + }, + { + "_tag": "ByteArray", + "bytearray": "6b940db32e" + }, + { + "_tag": "ByteArray", + "bytearray": "4b2fdc955b9195999d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7784679223009076663" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74d5017a790e88125768" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "888a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4311332999168950836" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12719664639377831909" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "272598215601104402" + } + }, + { + "_tag": "ByteArray", + "bytearray": "32a5a474620355" + }, + { + "_tag": "ByteArray", + "bytearray": "b0467febcb12b07d37d3d035" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3876533146420025829" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15499027637057803095" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "110e53693ed1d94b55348a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d887b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3153ae6f0d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "307c24ff411a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4370545220996556362" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "349c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f76c5758d3c31c0e40adf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "664714544ebb2d77ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2113982970458848995" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16130786743915925312" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5591dd3ec9f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cad855d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd067f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b56" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a7af05a4425d40" + } + ] + }, + "cborHex": "9f9fbf42150e449e067f06462018ef58ecc81b0fa74a5f2474cca34a53811140bf8593591a2942d82c455f11b762441bc9ab4f91f82d21bf4cf22b9734991e8a32781e30bb4c6a986812a2cccd307eb57e914afd859739e9e6ac9b51da4ce1ec1b93140dd791d6e8e158ffbf1b83e1f81f8b97b4c4441ceb92931bc0f3a577205812451b24cf2ad84d8370cd1be271403b1e2adfd51b2bc9625bf18109231bfb34d9f64403f5391beec8b51f2dbb75efff9f1b362d366e3c3264141bf47edb84b3e08f3fffffd8669f1baf58a3533ceece459f9f41301b11600d1d6d95ba44413a4adef972f1b14568b726611bab0bbdb8b04ca6bdff4265b9d8669f1b0e863edd805fc75a9f4b30da551305266ca9dba91dffffd8669f1b22669aa501c48cf29f4cd5f2293979265cf0beed4743456b940db32e494b2fdc955b9195999d1b6c08bc8221d1e5b74a74d5017a790e88125768ffff42888affffd8669f1b3bd4ee8533e282349fd8669f1bb08553990c3677e580ff9f1b03c876a1ff4f26124732a5a4746203554cb0467febcb12b07d37d3d0351b35cc365ba06499e51bd7179b84becad357ffbf4b110e53693ed1d94b55348a437d887bff453153ae6f0dbf46307c24ff411a1b3ca74bb8ec47e64a42349c4b7f76c5758d3c31c0e40adf49664714544ebb2d77ab1b1d56604faf6cbee341c71bdfdc11143ab04f4046f5591dd3ec9f44cad855d343fd067f429b56ffffffa047a7af05a4425d40ff", + "cborBytes": [ + 159, 159, 191, 66, 21, 14, 68, 158, 6, 127, 6, 70, 32, 24, 239, 88, 236, 200, 27, 15, 167, 74, 95, 36, 116, 204, + 163, 74, 83, 129, 17, 64, 191, 133, 147, 89, 26, 41, 66, 216, 44, 69, 95, 17, 183, 98, 68, 27, 201, 171, 79, 145, + 248, 45, 33, 191, 76, 242, 43, 151, 52, 153, 30, 138, 50, 120, 30, 48, 187, 76, 106, 152, 104, 18, 162, 204, 205, + 48, 126, 181, 126, 145, 74, 253, 133, 151, 57, 233, 230, 172, 155, 81, 218, 76, 225, 236, 27, 147, 20, 13, 215, + 145, 214, 232, 225, 88, 255, 191, 27, 131, 225, 248, 31, 139, 151, 180, 196, 68, 28, 235, 146, 147, 27, 192, 243, + 165, 119, 32, 88, 18, 69, 27, 36, 207, 42, 216, 77, 131, 112, 205, 27, 226, 113, 64, 59, 30, 42, 223, 213, 27, 43, + 201, 98, 91, 241, 129, 9, 35, 27, 251, 52, 217, 246, 68, 3, 245, 57, 27, 238, 200, 181, 31, 45, 187, 117, 239, + 255, 159, 27, 54, 45, 54, 110, 60, 50, 100, 20, 27, 244, 126, 219, 132, 179, 224, 143, 63, 255, 255, 216, 102, + 159, 27, 175, 88, 163, 83, 60, 238, 206, 69, 159, 159, 65, 48, 27, 17, 96, 13, 29, 109, 149, 186, 68, 65, 58, 74, + 222, 249, 114, 241, 177, 69, 104, 183, 38, 97, 27, 171, 11, 189, 184, 176, 76, 166, 189, 255, 66, 101, 185, 216, + 102, 159, 27, 14, 134, 62, 221, 128, 95, 199, 90, 159, 75, 48, 218, 85, 19, 5, 38, 108, 169, 219, 169, 29, 255, + 255, 216, 102, 159, 27, 34, 102, 154, 165, 1, 196, 140, 242, 159, 76, 213, 242, 41, 57, 121, 38, 92, 240, 190, + 237, 71, 67, 69, 107, 148, 13, 179, 46, 73, 75, 47, 220, 149, 91, 145, 149, 153, 157, 27, 108, 8, 188, 130, 33, + 209, 229, 183, 74, 116, 213, 1, 122, 121, 14, 136, 18, 87, 104, 255, 255, 66, 136, 138, 255, 255, 216, 102, 159, + 27, 59, 212, 238, 133, 51, 226, 130, 52, 159, 216, 102, 159, 27, 176, 133, 83, 153, 12, 54, 119, 229, 128, 255, + 159, 27, 3, 200, 118, 161, 255, 79, 38, 18, 71, 50, 165, 164, 116, 98, 3, 85, 76, 176, 70, 127, 235, 203, 18, 176, + 125, 55, 211, 208, 53, 27, 53, 204, 54, 91, 160, 100, 153, 229, 27, 215, 23, 155, 132, 190, 202, 211, 87, 255, + 191, 75, 17, 14, 83, 105, 62, 209, 217, 75, 85, 52, 138, 67, 125, 136, 123, 255, 69, 49, 83, 174, 111, 13, 191, + 70, 48, 124, 36, 255, 65, 26, 27, 60, 167, 75, 184, 236, 71, 230, 74, 66, 52, 156, 75, 127, 118, 197, 117, 141, + 60, 49, 192, 228, 10, 223, 73, 102, 71, 20, 84, 78, 187, 45, 119, 171, 27, 29, 86, 96, 79, 175, 108, 190, 227, 65, + 199, 27, 223, 220, 17, 20, 58, 176, 79, 64, 70, 245, 89, 29, 211, 236, 159, 68, 202, 216, 85, 211, 67, 253, 6, + 127, 66, 155, 86, 255, 255, 255, 160, 71, 167, 175, 5, 164, 66, 93, 64, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3201, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14150033086952700582" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14352668415023478956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14557752169245432862" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1bd215f23f530f41d9ec66" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "469910981510923050" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "164542d2" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2ed1c4b3c9bc952f683d" + }, + { + "_tag": "ByteArray", + "bytearray": "2f6c95e5197882e19367" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "06" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8605766976971419521" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7628248626401992944" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3290673007644215178" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1616095274376879702" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10487025608283440290" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5864506439326437139" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b7a786bb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4122477524220736439" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7515299847669568851" + } + }, + { + "_tag": "ByteArray", + "bytearray": "92e2f13d89e1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5222223524103942650" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4277951023472382162" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3475664323588932600" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3177865182311073160" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f6c26167e82ebe6402d6e1" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8ac2aae252f19d86" + } + ] + } + ] + }, + "cborHex": "9f1bc45f041f5bd6faa6d87d9fbf1bc72eebe1387178ac1bca078677b80bdc1eff9f4b1bd215f23f530f41d9ec661b0685758c4903832affd8669f1bfffffffffffffffc9f44164542d2ffff4a2ed1c4b3c9bc952f683d4a2f6c95e5197882e19367ff41069fd8669f1b776dd378622b2f819f1b69dcfbb5a30d60f01b2daad1aa6c99878a41f61b166d8616f06bde561b9189663a6428c4a2ffff1b5162e988fb0b0f13a09f44b7a786bb1b3935fb7769b573b71b684bb564c8e455534692e2f13d89e11b487910a06be771faffff9f1b3b5e55ca509710d21b303c0a49960443f8d8669f1b2c1a0b8bd7bbc5889f4bf6c26167e82ebe6402d6e1ffff80488ac2aae252f19d86ffff", + "cborBytes": [ + 159, 27, 196, 95, 4, 31, 91, 214, 250, 166, 216, 125, 159, 191, 27, 199, 46, 235, 225, 56, 113, 120, 172, 27, 202, + 7, 134, 119, 184, 11, 220, 30, 255, 159, 75, 27, 210, 21, 242, 63, 83, 15, 65, 217, 236, 102, 27, 6, 133, 117, + 140, 73, 3, 131, 42, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 68, 22, 69, 66, 210, + 255, 255, 74, 46, 209, 196, 179, 201, 188, 149, 47, 104, 61, 74, 47, 108, 149, 229, 25, 120, 130, 225, 147, 103, + 255, 65, 6, 159, 216, 102, 159, 27, 119, 109, 211, 120, 98, 43, 47, 129, 159, 27, 105, 220, 251, 181, 163, 13, 96, + 240, 27, 45, 170, 209, 170, 108, 153, 135, 138, 65, 246, 27, 22, 109, 134, 22, 240, 107, 222, 86, 27, 145, 137, + 102, 58, 100, 40, 196, 162, 255, 255, 27, 81, 98, 233, 136, 251, 11, 15, 19, 160, 159, 68, 183, 167, 134, 187, 27, + 57, 53, 251, 119, 105, 181, 115, 183, 27, 104, 75, 181, 100, 200, 228, 85, 83, 70, 146, 226, 241, 61, 137, 225, + 27, 72, 121, 16, 160, 107, 231, 113, 250, 255, 255, 159, 27, 59, 94, 85, 202, 80, 151, 16, 210, 27, 48, 60, 10, + 73, 150, 4, 67, 248, 216, 102, 159, 27, 44, 26, 11, 139, 215, 187, 197, 136, 159, 75, 246, 194, 97, 103, 232, 46, + 190, 100, 2, 214, 225, 255, 255, 128, 72, 138, 194, 170, 226, 82, 241, 157, 134, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3202, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e07a96fd007" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27f9a6fafc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3904" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e288f0a6c465" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6390156430044194708" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9494607356674577412" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2752286675779048347" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6e60748114c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7089124989131707265" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35f467fae82f66e149" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7231338486085154970" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14987119527001302297" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10805236305627948451" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8451201208171827863" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11024010155452176460" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3263963615868856970" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16046471964355846276" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8823932859372446887" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf00461e07a96fd007064527f9a6fafc0a42390446e288f0a6c4651b58ae656aa7f66794ffd8669f1b83c39f161866140480ffbf1b263216263dd9d39b46e6e60748114c1b6261a19e298a53814935f467fae82f66e1491b645ae00a31b7789a1bcffcf1cdfd3ba5191b95f3e92bdf1ba5a31b7548b2b8f26f12971b98fd26d42406984c1b2d4bed9d8ba9aa8a1bdeb0853bd5b1e0841b7a74e82f34caa4a7ffff", + "cborBytes": [ + 159, 191, 0, 70, 30, 7, 169, 111, 208, 7, 6, 69, 39, 249, 166, 250, 252, 10, 66, 57, 4, 70, 226, 136, 240, 166, + 196, 101, 27, 88, 174, 101, 106, 167, 246, 103, 148, 255, 216, 102, 159, 27, 131, 195, 159, 22, 24, 102, 20, 4, + 128, 255, 191, 27, 38, 50, 22, 38, 61, 217, 211, 155, 70, 230, 230, 7, 72, 17, 76, 27, 98, 97, 161, 158, 41, 138, + 83, 129, 73, 53, 244, 103, 250, 232, 47, 102, 225, 73, 27, 100, 90, 224, 10, 49, 183, 120, 154, 27, 207, 252, 241, + 205, 253, 59, 165, 25, 27, 149, 243, 233, 43, 223, 27, 165, 163, 27, 117, 72, 178, 184, 242, 111, 18, 151, 27, + 152, 253, 38, 212, 36, 6, 152, 76, 27, 45, 75, 237, 157, 139, 169, 170, 138, 27, 222, 176, 133, 59, 213, 177, 224, + 132, 27, 122, 116, 232, 47, 52, 202, 164, 167, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3203, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "064902" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2379528243725584997" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17195161421082337741" + } + } + ] + } + ] + }, + "cborHex": "9f9fbf430649021b2105c8549445ca65ff1beea17c35671d21cdffff", + "cborBytes": [ + 159, 159, 191, 67, 6, 73, 2, 27, 33, 5, 200, 84, 148, 69, 202, 101, 255, 27, 238, 161, 124, 53, 103, 29, 33, 205, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3204, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c82f1c7515d8acaec08f6f72" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95c494bf1be9dfb09f70" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2562823993207403311" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "622f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4107603549581959766" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d09c36f8021e789789f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "039c0eaa71c04021" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a13231d45728" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e245841f4b50aea765f8a7" + } + } + ] + } + ] + }, + "cborHex": "9fbf4cc82f1c7515d8acaec08f6f724a95c494bf1be9dfb09f70ffbf1b2390fad7e8f9b32f411642622f1b390123aa52f762564a8d09c36f8021e789789f48039c0eaa71c0402146a13231d457284be245841f4b50aea765f8a7ffff", + "cborBytes": [ + 159, 191, 76, 200, 47, 28, 117, 21, 216, 172, 174, 192, 143, 111, 114, 74, 149, 196, 148, 191, 27, 233, 223, 176, + 159, 112, 255, 191, 27, 35, 144, 250, 215, 232, 249, 179, 47, 65, 22, 66, 98, 47, 27, 57, 1, 35, 170, 82, 247, 98, + 86, 74, 141, 9, 195, 111, 128, 33, 231, 137, 120, 159, 72, 3, 156, 14, 170, 113, 192, 64, 33, 70, 161, 50, 49, + 212, 87, 40, 75, 226, 69, 132, 31, 75, 80, 174, 167, 101, 248, 167, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3205, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "65c3f9cd6e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9134064329662143920" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc17362f81a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "303582260383880413" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf4565c3f9cd6e1b7ec2b71d0d141db046cc17362f81a81b04368a75164a94ddff80ff", + "cborBytes": [ + 159, 191, 69, 101, 195, 249, 205, 110, 27, 126, 194, 183, 29, 13, 20, 29, 176, 70, 204, 23, 54, 47, 129, 168, 27, + 4, 54, 138, 117, 22, 74, 148, 221, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3206, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14632773501791146656" + } + } + ] + } + ] + }, + "cborHex": "9f9fa01bcb120df8dd0292a0ffff", + "cborBytes": [159, 159, 160, 27, 203, 18, 13, 248, 221, 2, 146, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3207, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f9f92bd7fabae1" + }, + { + "_tag": "ByteArray", + "bytearray": "226405fc" + } + ] + }, + "cborHex": "9f47f9f92bd7fabae144226405fcff", + "cborBytes": [159, 71, 249, 249, 43, 215, 250, 186, 225, 68, 34, 100, 5, 252, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3208, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16467165369900934068" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b1" + } + ] + } + ] + }, + "cborHex": "9fd8669f1be4871fa83a8f23b49f41b1ffffff", + "cborBytes": [159, 216, 102, 159, 27, 228, 135, 31, 168, 58, 143, 35, 180, 159, 65, 177, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3209, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16649728621912578830" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + "cborHex": "9fbf1be70fb7f7b3c0db0e41f2ff06ff", + "cborBytes": [159, 191, 27, 231, 15, 183, 247, 179, 192, 219, 14, 65, 242, 255, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3210, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03fbfbfc02f87201fa6f62" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3459701342131377443" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "58b9e919" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1177322539273468607" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a554d3eece5e6721f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3465150559498637600" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4375842286096585068" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4677546525643165586" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "926e1c05ca99ff66215503" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6115596055944091813" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4599879928379698257" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13507042487500825149" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14408264750525277507" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "929eaaa11cd6ff390ef9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7405243755074675331" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e81062" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14195622695327916388" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10843333118982585960" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "421791633791633653" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba4299654375f86036850094" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1f24" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18343108223606602675" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7972853fc1428f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "112fd6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16509864442527037687" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f486137" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17298085817071917761" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd561845f342f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa6a8d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11078460263454734468" + } + } + ] + }, + "cborHex": "9f4b03fbfbfc02f87201fa6f62d8669f1b3003540a56aed5239f4458b9e919bf1b1056b09c9b74babf490a554d3eece5e6721f1b3016b013202991201b3cba1d5fffeb916c1b40e9fbc84952cf924b926e1c05ca99ff662155031b54def6360853d8a51b3fd60e6c74856c51ffbf421bff1bbb72a7943998623d412e1bc7f47073ccd765434a929eaaa11cd6ff390ef91b66c4b5f5e867e28343e810621bc500fba1387e6164ffbf1b967b4205722f7e681b05da81419561c8f542c6d64cba4299654375f86036850094ff421f24ffffbf1bfe8fcfbe509e3bb3477972853fc1428f43112fd61be51ed23ccaad38f7445f4861371bf00f2566c4cb5ac147fd561845f342f743fa6a8dff1b99be98e9d57ff884ff", + "cborBytes": [ + 159, 75, 3, 251, 251, 252, 2, 248, 114, 1, 250, 111, 98, 216, 102, 159, 27, 48, 3, 84, 10, 86, 174, 213, 35, 159, + 68, 88, 185, 233, 25, 191, 27, 16, 86, 176, 156, 155, 116, 186, 191, 73, 10, 85, 77, 62, 236, 229, 230, 114, 31, + 27, 48, 22, 176, 19, 32, 41, 145, 32, 27, 60, 186, 29, 95, 255, 235, 145, 108, 27, 64, 233, 251, 200, 73, 82, 207, + 146, 75, 146, 110, 28, 5, 202, 153, 255, 102, 33, 85, 3, 27, 84, 222, 246, 54, 8, 83, 216, 165, 27, 63, 214, 14, + 108, 116, 133, 108, 81, 255, 191, 66, 27, 255, 27, 187, 114, 167, 148, 57, 152, 98, 61, 65, 46, 27, 199, 244, 112, + 115, 204, 215, 101, 67, 74, 146, 158, 170, 161, 28, 214, 255, 57, 14, 249, 27, 102, 196, 181, 245, 232, 103, 226, + 131, 67, 232, 16, 98, 27, 197, 0, 251, 161, 56, 126, 97, 100, 255, 191, 27, 150, 123, 66, 5, 114, 47, 126, 104, + 27, 5, 218, 129, 65, 149, 97, 200, 245, 66, 198, 214, 76, 186, 66, 153, 101, 67, 117, 248, 96, 54, 133, 0, 148, + 255, 66, 31, 36, 255, 255, 191, 27, 254, 143, 207, 190, 80, 158, 59, 179, 71, 121, 114, 133, 63, 193, 66, 143, 67, + 17, 47, 214, 27, 229, 30, 210, 60, 202, 173, 56, 247, 68, 95, 72, 97, 55, 27, 240, 15, 37, 102, 196, 203, 90, 193, + 71, 253, 86, 24, 69, 243, 66, 247, 67, 250, 106, 141, 255, 27, 153, 190, 152, 233, 213, 127, 248, 132, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3211, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "68" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5586976963970408762" + }, + "fields": [] + } + ] + }, + "cborHex": "9f4168d8669f1b4d88edf299bf213a80ffff", + "cborBytes": [159, 65, 104, 216, 102, 159, 27, 77, 136, 237, 242, 153, 191, 33, 58, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3212, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15874989925790626408" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71b3c5422f60163163" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14022249377565821340" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de48fd9c6d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9245589024095243042" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2c4abd1ebce2a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13120870450790061050" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea72b7250b59" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4827544530265455667" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b53f5669abefe4f39" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10208568867223492192" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "860852" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11435136777044632046" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d18b3888757132" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4d669d090ffce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fca7476d90" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6186117070229701000" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b6" + } + ] + }, + "cborHex": "9fbf41231bdc4f4b3a6ba7b2684971b3c5422f601631631bc29909840dc0c99c45de48fd9c6d1b804eee3b70728b2247e2c4abd1ebce2a1bb616b2285b42d3fa46ea72b7250b591b42fee22c3fda3c33ffbf495b53f5669abefe4f391b8dac1f4c23f7d660438608521b9eb1c45011c021ee47d18b388875713247d4d669d090ffce45fca7476d901b55d980b32e058188ff41b6ff", + "cborBytes": [ + 159, 191, 65, 35, 27, 220, 79, 75, 58, 107, 167, 178, 104, 73, 113, 179, 197, 66, 47, 96, 22, 49, 99, 27, 194, + 153, 9, 132, 13, 192, 201, 156, 69, 222, 72, 253, 156, 109, 27, 128, 78, 238, 59, 112, 114, 139, 34, 71, 226, 196, + 171, 209, 235, 206, 42, 27, 182, 22, 178, 40, 91, 66, 211, 250, 70, 234, 114, 183, 37, 11, 89, 27, 66, 254, 226, + 44, 63, 218, 60, 51, 255, 191, 73, 91, 83, 245, 102, 154, 190, 254, 79, 57, 27, 141, 172, 31, 76, 35, 247, 214, + 96, 67, 134, 8, 82, 27, 158, 177, 196, 80, 17, 192, 33, 238, 71, 209, 139, 56, 136, 117, 113, 50, 71, 212, 214, + 105, 208, 144, 255, 206, 69, 252, 167, 71, 109, 144, 27, 85, 217, 128, 179, 46, 5, 129, 136, 255, 65, 182, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3213, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14005741848242832779" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4576467470140189685" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7548491332233273945" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3426e1ecf6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11611791890440360962" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10158029161650313272" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9099982025761140333" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3d2272e9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1671504671680847759" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bc50fb9b46938d2349592867" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15729173957115981064" + } + } + ] + }, + "cborHex": "9f9f1bc25e64016056458b9f1b3f82e0eabbd62bf51b68c1a0df7fe12259453426e1ecf61ba1255f33d3759402ff9f1b8cf891b3f639d8381b7e49a1704beeae6dffbf45d3d2272e9c1b173260a493f15f8fff4cbc50fb9b46938d2349592867ffa01bda49406094392d08ff", + "cborBytes": [ + 159, 159, 27, 194, 94, 100, 1, 96, 86, 69, 139, 159, 27, 63, 130, 224, 234, 187, 214, 43, 245, 27, 104, 193, 160, + 223, 127, 225, 34, 89, 69, 52, 38, 225, 236, 246, 27, 161, 37, 95, 51, 211, 117, 148, 2, 255, 159, 27, 140, 248, + 145, 179, 246, 57, 216, 56, 27, 126, 73, 161, 112, 75, 238, 174, 109, 255, 191, 69, 211, 210, 39, 46, 156, 27, 23, + 50, 96, 164, 147, 241, 95, 143, 255, 76, 188, 80, 251, 155, 70, 147, 141, 35, 73, 89, 40, 103, 255, 160, 27, 218, + 73, 64, 96, 148, 57, 45, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3214, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "19e8e82108e74833" + } + ] + }, + "cborHex": "9f4819e8e82108e74833ff", + "cborBytes": [159, 72, 25, 232, 232, 33, 8, 231, 72, 51, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3215, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "34e804c7a6dfbd0abc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9915978361906535311" + } + } + ] + }, + "cborHex": "9f4934e804c7a6dfbd0abc1b899ca1c875e61b8fff", + "cborBytes": [159, 73, 52, 232, 4, 199, 166, 223, 189, 10, 188, 27, 137, 156, 161, 200, 117, 230, 27, 143, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3216, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4540715075336844695" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13815780580083959647" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8472339884491025442" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4063586093574209893" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9215465551131079925" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "faed03b8e8b12a96" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12587811596048303150" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5106939655250876328" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0a39dfb7fef69c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12869004449483166380" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "969522712878995458" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12828491848381140411" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e1e8d8e7d71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10478258788677394979" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24443d71661a6ea05f806f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2decf8dc0b8994e922e08958" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2437494410160601011" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2bed2433b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3b4608b25a931" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f390ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e79f7794f68fbda141" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f85f4f71382fe4a05f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49af5232d29a" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4124383773418107218" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6706719090402328607" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9924900518030118601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fce50c05" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d6b34bcd6c7ef28b" + } + ] + }, + "cborHex": "9fbf1b3f03dc4da3b6b5971bbfbb833d0aa5075f1b7593cc3c8f762c221b3864c205b5b541651b7fe3e917d70474f548faed03b8e8b12a961baeb0e3f41a00842e1b46df7e8f089597a8ff470a39dfb7fef69c9f1bb297e35d285d92ac1b0d746fc546d358021bb207f55e2ac08dbbbf460e1e8d8e7d711b916a40da23bb22234b24443d71661a6ea05f806f4c2decf8dc0b8994e922e08958418a1b21d3b8406b9f77b345a2bed2433b47f3b4608b25a93143f390ea49e79f7794f68fbda14149f85f4f71382fe4a05f4649af5232d29affbf1b393cc130a3f8b1521b5d130d7a9fc3001f1b89bc546fd0468ec944fce50c05ffff48d6b34bcd6c7ef28bff", + "cborBytes": [ + 159, 191, 27, 63, 3, 220, 77, 163, 182, 181, 151, 27, 191, 187, 131, 61, 10, 165, 7, 95, 27, 117, 147, 204, 60, + 143, 118, 44, 34, 27, 56, 100, 194, 5, 181, 181, 65, 101, 27, 127, 227, 233, 23, 215, 4, 116, 245, 72, 250, 237, + 3, 184, 232, 177, 42, 150, 27, 174, 176, 227, 244, 26, 0, 132, 46, 27, 70, 223, 126, 143, 8, 149, 151, 168, 255, + 71, 10, 57, 223, 183, 254, 246, 156, 159, 27, 178, 151, 227, 93, 40, 93, 146, 172, 27, 13, 116, 111, 197, 70, 211, + 88, 2, 27, 178, 7, 245, 94, 42, 192, 141, 187, 191, 70, 14, 30, 141, 142, 125, 113, 27, 145, 106, 64, 218, 35, + 187, 34, 35, 75, 36, 68, 61, 113, 102, 26, 110, 160, 95, 128, 111, 76, 45, 236, 248, 220, 11, 137, 148, 233, 34, + 224, 137, 88, 65, 138, 27, 33, 211, 184, 64, 107, 159, 119, 179, 69, 162, 190, 210, 67, 59, 71, 243, 180, 96, 139, + 37, 169, 49, 67, 243, 144, 234, 73, 231, 159, 119, 148, 246, 143, 189, 161, 65, 73, 248, 95, 79, 113, 56, 47, 228, + 160, 95, 70, 73, 175, 82, 50, 210, 154, 255, 191, 27, 57, 60, 193, 48, 163, 248, 177, 82, 27, 93, 19, 13, 122, + 159, 195, 0, 31, 27, 137, 188, 84, 111, 208, 70, 142, 201, 68, 252, 229, 12, 5, 255, 255, 72, 214, 179, 75, 205, + 108, 126, 242, 139, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3217, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fe6cfcff046453b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "74df6d0d2d4d9fb39648388d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bce3ee3ac5ff64e034" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db0c3a1ebee5c62e6a1c09" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29d43a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e26c122376f750fb239b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a21260c7f7813e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17926321446968302831" + } + } + ] + }, + "cborHex": "9f48fe6cfcff046453b61380bf4c74df6d0d2d4d9fb39648388d49bce3ee3ac5ff64e0344bdb0c3a1ebee5c62e6a1c094329d43a4ae26c122376f750fb239b47a21260c7f7813eff1bf8c71660d8031cefff", + "cborBytes": [ + 159, 72, 254, 108, 252, 255, 4, 100, 83, 182, 19, 128, 191, 76, 116, 223, 109, 13, 45, 77, 159, 179, 150, 72, 56, + 141, 73, 188, 227, 238, 58, 197, 255, 100, 224, 52, 75, 219, 12, 58, 30, 190, 229, 198, 46, 106, 28, 9, 67, 41, + 212, 58, 74, 226, 108, 18, 35, 118, 247, 80, 251, 35, 155, 71, 162, 18, 96, 199, 247, 129, 62, 255, 27, 248, 199, + 22, 96, 216, 3, 28, 239, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3218, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2611707122275765358" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "11ef37e9da6b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5f64ef1a584bf7" + }, + { + "_tag": "ByteArray", + "bytearray": "ff670900cc322726" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16488448470503275548" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1710548838046481621" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a3306e2348ef4ec1d1" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "209acba60b7b81efbd1513" + }, + { + "_tag": "ByteArray", + "bytearray": "01" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15745634700588873785" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3422263420513471802" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12108638337080268356" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c7ec5837" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2502664196364236479" + } + }, + { + "_tag": "ByteArray", + "bytearray": "51712a32f407824f" + }, + { + "_tag": "ByteArray", + "bytearray": "8594ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16264606058148172585" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fa0d8669f1b243ea5ca509acc6e9f4611ef37e9da6b9f475f64ef1a584bf748ff670900cc3227261be4d2bc863dae3c1c1b17bd171af6b7bcd549a3306e2348ef4ec1d1ff4b209acba60b7b81efbd15134101ffffd8669f1bda83bb5613a9f8399f1b2f7e5272f384cd3a1ba80a8669cb5896449f44c7ec5837ff9f1b22bb3fd3b060f6bf4851712a32f407824f438594ca1be1b77d094b969329ffffffff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 36, 62, 165, 202, 80, 154, 204, 110, 159, 70, 17, 239, 55, 233, 218, 107, 159, 71, + 95, 100, 239, 26, 88, 75, 247, 72, 255, 103, 9, 0, 204, 50, 39, 38, 27, 228, 210, 188, 134, 61, 174, 60, 28, 27, + 23, 189, 23, 26, 246, 183, 188, 213, 73, 163, 48, 110, 35, 72, 239, 78, 193, 209, 255, 75, 32, 154, 203, 166, 11, + 123, 129, 239, 189, 21, 19, 65, 1, 255, 255, 216, 102, 159, 27, 218, 131, 187, 86, 19, 169, 248, 57, 159, 27, 47, + 126, 82, 114, 243, 132, 205, 58, 27, 168, 10, 134, 105, 203, 88, 150, 68, 159, 68, 199, 236, 88, 55, 255, 159, 27, + 34, 187, 63, 211, 176, 96, 246, 191, 72, 81, 113, 42, 50, 244, 7, 130, 79, 67, 133, 148, 202, 27, 225, 183, 125, + 9, 75, 150, 147, 41, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3219, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7e8057bcf0e1d6f9942bbf" + }, + { + "_tag": "ByteArray", + "bytearray": "ae21d807bfde540cf16935a9" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "648c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17017091752534126432" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f4b7e8057bcf0e1d6f9942bbf4cae21d807bfde540cf16935a9ff9f42648cff1bec28dac9dc06af60ffff", + "cborBytes": [ + 159, 159, 159, 75, 126, 128, 87, 188, 240, 225, 214, 249, 148, 43, 191, 76, 174, 33, 216, 7, 191, 222, 84, 12, + 241, 105, 53, 169, 255, 159, 66, 100, 140, 255, 27, 236, 40, 218, 201, 220, 6, 175, 96, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3220, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15095786931497637048" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "736169aa27ecdde7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18147553705077211589" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e7e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ef5116b8de358e05484" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5272878406154747056" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf9e9df5e35d63b491" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01e2592c6cfd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfcc6ca7cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad7e1a515c28d5c969" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1780645464958806152" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1741166132703180683" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fc94a5b2d6f6a6c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70f78d7680285b6edaf5ab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76d8a778e12870351128" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12036392504495194131" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bd17f023bb8e694b880ff9fbf48736169aa27ecdde71bfbd90ff1e57381c5427e7e4a5ef5116b8de358e054844298c91b492d06f936ae7cb049bf9e9df5e35d63b4914601e2592c6cfd45dfcc6ca7cb49ad7e1a515c28d5c969ff1b18b61f9db9c7a888d8669f1b1829dd5f62b6b78b80ffbf481fc94a5b2d6f6a6c4b70f78d7680285b6edaf5ab4a76d8a778e128703511281ba709db36179c4013ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 209, 127, 2, 59, 184, 230, 148, 184, 128, 255, 159, 191, 72, 115, 97, 105, 170, 39, 236, + 221, 231, 27, 251, 217, 15, 241, 229, 115, 129, 197, 66, 126, 126, 74, 94, 245, 17, 107, 141, 227, 88, 224, 84, + 132, 66, 152, 201, 27, 73, 45, 6, 249, 54, 174, 124, 176, 73, 191, 158, 157, 245, 227, 93, 99, 180, 145, 70, 1, + 226, 89, 44, 108, 253, 69, 223, 204, 108, 167, 203, 73, 173, 126, 26, 81, 92, 40, 213, 201, 105, 255, 27, 24, 182, + 31, 157, 185, 199, 168, 136, 216, 102, 159, 27, 24, 41, 221, 95, 98, 182, 183, 139, 128, 255, 191, 72, 31, 201, + 74, 91, 45, 111, 106, 108, 75, 112, 247, 141, 118, 128, 40, 91, 110, 218, 245, 171, 74, 118, 216, 167, 120, 225, + 40, 112, 53, 17, 40, 27, 167, 9, 219, 54, 23, 156, 64, 19, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3221, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b24e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11625851632398345617" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2ce984d630c4" + }, + { + "_tag": "ByteArray", + "bytearray": "3c79" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2059289398782700280" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7dfb313e1e6d13820adb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13515564056449955654" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "17d970438ade3c9a0294d79e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18279117259539954497" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "74394371" + }, + { + "_tag": "ByteArray", + "bytearray": "8e17feed27381533db" + }, + { + "_tag": "ByteArray", + "bytearray": "c63ed605" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11699525047456891095" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a33a729d87d" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6031008887545893634" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7137510041661389461" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "27c3ef" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6171212262714277074" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "137174608565811026" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3672766612293970256" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dc" + }, + { + "_tag": "ByteArray", + "bytearray": "e3c6bbcf3e0b76e935777bda" + } + ] + } + ] + } + ] + }, + "cborHex": "9f42b24e9fd8669f1ba1575276987fa5919f462ce984d630c4423c791b1c9410cc302baaf8ffff4a7dfb313e1e6d13820adbd8669f1bbb90ede69bbcb7469f4c17d970438ade3c9a0294d79effffd8669f1bfdac784cf6973b419f4474394371498e17feed27381533db44c63ed6051ba25d100b3e7400d7461a33a729d87dffffff1b53b272a12b6593021b630d87911602ba959f4327c3ef9f1b55a48cdb409e7cd2ff9f1b01e7579467c4b7521b32f849c654b2695041dc4ce3c6bbcf3e0b76e935777bdaffffff", + "cborBytes": [ + 159, 66, 178, 78, 159, 216, 102, 159, 27, 161, 87, 82, 118, 152, 127, 165, 145, 159, 70, 44, 233, 132, 214, 48, + 196, 66, 60, 121, 27, 28, 148, 16, 204, 48, 43, 170, 248, 255, 255, 74, 125, 251, 49, 62, 30, 109, 19, 130, 10, + 219, 216, 102, 159, 27, 187, 144, 237, 230, 155, 188, 183, 70, 159, 76, 23, 217, 112, 67, 138, 222, 60, 154, 2, + 148, 215, 158, 255, 255, 216, 102, 159, 27, 253, 172, 120, 76, 246, 151, 59, 65, 159, 68, 116, 57, 67, 113, 73, + 142, 23, 254, 237, 39, 56, 21, 51, 219, 68, 198, 62, 214, 5, 27, 162, 93, 16, 11, 62, 116, 0, 215, 70, 26, 51, + 167, 41, 216, 125, 255, 255, 255, 27, 83, 178, 114, 161, 43, 101, 147, 2, 27, 99, 13, 135, 145, 22, 2, 186, 149, + 159, 67, 39, 195, 239, 159, 27, 85, 164, 140, 219, 64, 158, 124, 210, 255, 159, 27, 1, 231, 87, 148, 103, 196, + 183, 82, 27, 50, 248, 73, 198, 84, 178, 105, 80, 65, 220, 76, 227, 198, 187, 207, 62, 11, 118, 233, 53, 119, 123, + 218, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3222, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7638307623931796120" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d537c7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3371208937845186316" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10581904262487645361" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1b6a00b850819cda9843d537c7d8669f1b2ec8f0aae3e25f0c9f1b92da79dc84c49cb1a0ffff80ff", + "cborBytes": [ + 159, 27, 106, 0, 184, 80, 129, 156, 218, 152, 67, 213, 55, 199, 216, 102, 159, 27, 46, 200, 240, 170, 227, 226, + 95, 12, 159, 27, 146, 218, 121, 220, 132, 196, 156, 177, 160, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3223, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15572179953393296828" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15927408851159232447" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14311102746475227902" + } + } + ] + }, + "cborHex": "9f1bd81b7f29a47765bc1bdd0985f68dc22fbf1bc69b401fdbc5eafeff", + "cborBytes": [ + 159, 27, 216, 27, 127, 41, 164, 119, 101, 188, 27, 221, 9, 133, 246, 141, 194, 47, 191, 27, 198, 155, 64, 31, 219, + 197, 234, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3224, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10375340582577455556" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b8ffc9d49f83941c480ffff", + "cborBytes": [159, 216, 102, 159, 27, 143, 252, 157, 73, 248, 57, 65, 196, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3225, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10878320798171332901" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8c95a0" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7877599617680382182" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1778919429447554680" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cf64abf3e7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4868649557569876709" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1679916788758051947" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5531979252272083403" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "93266666825873440" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9ef7880fe908bc2e270ed60" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6329113863824717541" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9098000695569509994" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6431497558284482652" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5466f5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17566077711966810224" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16310765229957352338" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ad1e5a72df3511009280" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8669f1b96f78f214fbf01259f438c95a0a0d8669f1b6d52db1d6e9798e69f1b18affdcbc443167845cf64abf3e71b4390eafa36d0b2e51b1750436b36237c6bffffffffd8669f1b4cc589d1fc8231cb9fbf1b014b598a118a78204cb9ef7880fe908bc2e270ed601b57d58786ac45b6e51b7e42976de9ad6e6a1b594144f42756b85c435466f51bf3c73e9c26b030701be25b7a8efa668b92ff4aad1e5a72df3511009280ffffa0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 150, 247, 143, 33, 79, 191, 1, 37, 159, 67, 140, 149, 160, 160, 216, 102, 159, 27, 109, + 82, 219, 29, 110, 151, 152, 230, 159, 27, 24, 175, 253, 203, 196, 67, 22, 120, 69, 207, 100, 171, 243, 231, 27, + 67, 144, 234, 250, 54, 208, 178, 229, 27, 23, 80, 67, 107, 54, 35, 124, 107, 255, 255, 255, 255, 216, 102, 159, + 27, 76, 197, 137, 209, 252, 130, 49, 203, 159, 191, 27, 1, 75, 89, 138, 17, 138, 120, 32, 76, 185, 239, 120, 128, + 254, 144, 139, 194, 226, 112, 237, 96, 27, 87, 213, 135, 134, 172, 69, 182, 229, 27, 126, 66, 151, 109, 233, 173, + 110, 106, 27, 89, 65, 68, 244, 39, 86, 184, 92, 67, 84, 102, 245, 27, 243, 199, 62, 156, 38, 176, 48, 112, 27, + 226, 91, 122, 142, 250, 102, 139, 146, 255, 74, 173, 30, 90, 114, 223, 53, 17, 0, 146, 128, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3226, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a73111a8dbee55dda0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ef3bc180" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "18b42b6e0f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6683787040172963092" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05bdc58f1df075163a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12818257195947805039" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54baf18c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15985287705436658677" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5743576246887472055" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16113335312130995174" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffa49f37cc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16789983766478556416" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "517982149757463904" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17067615429363437823" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "310790305452640967" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fd905049f49a73111a8dbee55dda014ff44ef3bc18080ff4518b42b6e0fbf1b5cc194e69bde75144905bdc58f1df075163a1bb1e399017410496f4454baf18c1bddd7267972f89bf51b4fb5482a70195bb71bdf9e1118225373e645ffa49f37cc1be902014749878d001b07303e0554496d601becdc59ce0e2f10ff1b04502622dc23cac7ffff", + "cborBytes": [ + 159, 159, 217, 5, 4, 159, 73, 167, 49, 17, 168, 219, 238, 85, 221, 160, 20, 255, 68, 239, 59, 193, 128, 128, 255, + 69, 24, 180, 43, 110, 15, 191, 27, 92, 193, 148, 230, 155, 222, 117, 20, 73, 5, 189, 197, 143, 29, 240, 117, 22, + 58, 27, 177, 227, 153, 1, 116, 16, 73, 111, 68, 84, 186, 241, 140, 27, 221, 215, 38, 121, 114, 248, 155, 245, 27, + 79, 181, 72, 42, 112, 25, 91, 183, 27, 223, 158, 17, 24, 34, 83, 115, 230, 69, 255, 164, 159, 55, 204, 27, 233, 2, + 1, 71, 73, 135, 141, 0, 27, 7, 48, 62, 5, 84, 73, 109, 96, 27, 236, 220, 89, 206, 14, 47, 16, 255, 27, 4, 80, 38, + 34, 220, 35, 202, 199, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3227, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6672255685149235662" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b5c989d31cbe699ce9f1bfffffffffffffff1ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 92, 152, 157, 49, 203, 230, 153, 206, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3228, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "db" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "86e1a8972197f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17944617961485671075" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88d73e85817b2f8016" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "949d7b0709" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2f8d6a4f998f2e5ec7e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5513027402725236681" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca4f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4085225649485079468" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9405355676237642913" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "414622529780301743" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15366136768774225299" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4095179115183253657" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "118de78866" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10177627076910447610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1507b129ac062e1511efae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14126132071703394876" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5921412393041920023" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15705402716560215107" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5458349880731457675" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17983740722749512848" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13305008555122767168" + } + } + } + ] + } + ] + }, + "cborHex": "9f41dbbf4786e1a8972197f11bf90816f618729aa34988d73e85817b2f801645949d7b07094ac2f8d6a4f998f2e5ec7e1b4c823536a86e9fc942ca4f1b38b1a31570df63acff1b82868927e4593ca1bf1b05c108fe7b6dbfaf1bd53f7bfa58db3d931b38d4ffb54418a89945118de788661b8d3e31e72fa4fbfa4b1507b129ac062e1511efae1bc40a1a4698223a3c1b522d1532cfdc00171bd9f4cc8f5706cc431b4bbff44c04cb588b1bf99314e7c8361c901bb8a4e2c9b5a03540ffff", + "cborBytes": [ + 159, 65, 219, 191, 71, 134, 225, 168, 151, 33, 151, 241, 27, 249, 8, 22, 246, 24, 114, 154, 163, 73, 136, 215, 62, + 133, 129, 123, 47, 128, 22, 69, 148, 157, 123, 7, 9, 74, 194, 248, 214, 164, 249, 152, 242, 229, 236, 126, 27, 76, + 130, 53, 54, 168, 110, 159, 201, 66, 202, 79, 27, 56, 177, 163, 21, 112, 223, 99, 172, 255, 27, 130, 134, 137, 39, + 228, 89, 60, 161, 191, 27, 5, 193, 8, 254, 123, 109, 191, 175, 27, 213, 63, 123, 250, 88, 219, 61, 147, 27, 56, + 212, 255, 181, 68, 24, 168, 153, 69, 17, 141, 231, 136, 102, 27, 141, 62, 49, 231, 47, 164, 251, 250, 75, 21, 7, + 177, 41, 172, 6, 46, 21, 17, 239, 174, 27, 196, 10, 26, 70, 152, 34, 58, 60, 27, 82, 45, 21, 50, 207, 220, 0, 23, + 27, 217, 244, 204, 143, 87, 6, 204, 67, 27, 75, 191, 244, 76, 4, 203, 88, 139, 27, 249, 147, 20, 231, 200, 54, 28, + 144, 27, 184, 164, 226, 201, 181, 160, 53, 64, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3229, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc510e" + }, + { + "_tag": "ByteArray", + "bytearray": "0236740357fa028bac" + }, + { + "_tag": "ByteArray", + "bytearray": "9840816f3b3d" + } + ] + }, + "cborHex": "9f801bfffffffffffffff443fc510e490236740357fa028bac469840816f3b3dff", + "cborBytes": [ + 159, 128, 27, 255, 255, 255, 255, 255, 255, 255, 244, 67, 252, 81, 14, 73, 2, 54, 116, 3, 87, 250, 2, 139, 172, + 70, 152, 64, 129, 111, 59, 61, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3230, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "79199d76" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d405fc43005" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8bfeaa66a816517" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8166855945912899493" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "905d9d48398664" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0da832f507b4fc4c" + }, + { + "_tag": "ByteArray", + "bytearray": "e1e62efbc31c363b0c848fd6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4193950318248580" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15811595860648316247" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "46b9ab3450c10ee6455639" + } + ] + } + ] + }, + "cborHex": "9f4104bf4479199d76460d405fc4300541940348d8bfeaa66a8165171b7156803683ecd7a541ff47905d9d48398664ffd87d9f9f480da832f507b4fc4c4ce1e62efbc31c363b0c848fd61b000ee66026ecc2841bdb6e12a96dfacd57ff4b46b9ab3450c10ee6455639ffff", + "cborBytes": [ + 159, 65, 4, 191, 68, 121, 25, 157, 118, 70, 13, 64, 95, 196, 48, 5, 65, 148, 3, 72, 216, 191, 234, 166, 106, 129, + 101, 23, 27, 113, 86, 128, 54, 131, 236, 215, 165, 65, 255, 71, 144, 93, 157, 72, 57, 134, 100, 255, 216, 125, + 159, 159, 72, 13, 168, 50, 245, 7, 180, 252, 76, 76, 225, 230, 46, 251, 195, 28, 54, 59, 12, 132, 143, 214, 27, 0, + 14, 230, 96, 38, 236, 194, 132, 27, 219, 110, 18, 169, 109, 250, 205, 87, 255, 75, 70, 185, 171, 52, 80, 193, 14, + 230, 69, 86, 57, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3231, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15407717013754596334" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c4a0106286072123a2c9" + }, + { + "_tag": "ByteArray", + "bytearray": "1b25e14653130fb5" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a41204de05b6cb9e095" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8063137392274871425" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d64f18cb62813" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12387129228019763753" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a10232" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "384969345511475710" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5376526813509682884" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17527657500883067821" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff99fd8669f1bd5d334fd8c95cbee9f4ac4a0106286072123a2c9481b25e14653130fb5ffffbf4a4a41204de05b6cb9e0951b6fe604bce9b69481474d64f18cb628131babe7ec672efa0a2943a102321b0557af9480a049fe41d21b4a9d42a69c9b86c4ffd8669f1bf33ebfa1acd8a3ad80ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 216, 102, 159, 27, 213, 211, 52, 253, 140, + 149, 203, 238, 159, 74, 196, 160, 16, 98, 134, 7, 33, 35, 162, 201, 72, 27, 37, 225, 70, 83, 19, 15, 181, 255, + 255, 191, 74, 74, 65, 32, 77, 224, 91, 108, 185, 224, 149, 27, 111, 230, 4, 188, 233, 182, 148, 129, 71, 77, 100, + 241, 140, 182, 40, 19, 27, 171, 231, 236, 103, 46, 250, 10, 41, 67, 161, 2, 50, 27, 5, 87, 175, 148, 128, 160, 73, + 254, 65, 210, 27, 74, 157, 66, 166, 156, 155, 134, 196, 255, 216, 102, 159, 27, 243, 62, 191, 161, 172, 216, 163, + 173, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3232, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10446571118287311457" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13023058228514075999" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8966500877705688142" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c6ee23d8aaa3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7720259253465773474" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6d7e6de" + }, + { + "_tag": "ByteArray", + "bytearray": "555ba4" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "754034295394041049" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89b379420a1e98bf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4347275833830019936" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17896646602237419008" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8568100120341162742" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a09288df78a9fd1e73e66b2" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + ] + }, + "cborHex": "9fd8669f1b90f9ad15725ed2619f9f1bb4bb3275afcf355f1b7c6f690aade0344e46c6ee23d8aaa3ff9f1b6b23dee328bff5a244d6d7e6de43555ba4ffbf1b0a76de32556c7cd94889b379420a1e98bf1b3c54a056881413601bf85da943a5101e001b76e801a9e8eaaaf64c3a09288df78a9fd1e73e66b2ffffff030a1bfffffffffffffff2ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 144, 249, 173, 21, 114, 94, 210, 97, 159, 159, 27, 180, 187, 50, 117, 175, 207, 53, 95, + 27, 124, 111, 105, 10, 173, 224, 52, 78, 70, 198, 238, 35, 216, 170, 163, 255, 159, 27, 107, 35, 222, 227, 40, + 191, 245, 162, 68, 214, 215, 230, 222, 67, 85, 91, 164, 255, 191, 27, 10, 118, 222, 50, 85, 108, 124, 217, 72, + 137, 179, 121, 66, 10, 30, 152, 191, 27, 60, 84, 160, 86, 136, 20, 19, 96, 27, 248, 93, 169, 67, 165, 16, 30, 0, + 27, 118, 232, 1, 169, 232, 234, 170, 246, 76, 58, 9, 40, 141, 247, 138, 159, 209, 231, 62, 102, 178, 255, 255, + 255, 3, 10, 27, 255, 255, 255, 255, 255, 255, 255, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3233, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9652005621117298796" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "11365ee1e45ccce4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5312657325280966902" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e0876065a80ddf48c573" + }, + { + "_tag": "ByteArray", + "bytearray": "fadc9d9ac8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "367953243856472507" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "333378593363927568" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5250072986473821062" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13085480594268471178" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6686941d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8794985710167244734" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bdf7f4676332cc42fd" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16839741374045161538" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "54ddb1e6f7b1653534" + }, + { + "_tag": "ByteArray", + "bytearray": "c26f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14437952032151969531" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16678233132867735714" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10047131531167799513" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17704356461688078219" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12484537873392629143" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "77e0b4" + }, + { + "_tag": "ByteArray", + "bytearray": "ff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6660525758345181391" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "328265408142929191" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b10d3f980708ef600003d51a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3402805163415167513" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "739199ce5a7c2ac9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7472391307893634877" + } + }, + { + "_tag": "ByteArray", + "bytearray": "16330fc9d687817fea70d5" + }, + { + "_tag": "ByteArray", + "bytearray": "b75007b1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16630789628418188997" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e8d5c955dc04256053" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8612544839747431810" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2885676700931708475" + } + } + ] + }, + "cborHex": "9f9fd8669f1b85f2cff950c5286c9f4811365ee1e45ccce41b49ba59b08ebfb8f6ffff4ae0876065a80ddf48c57345fadc9d9ac81b051b3b869a0489bbff1b04a06610792d2210d8669f1b48dc0190aba573869f9f1bb598f74548a3bf8a446686941d1b7a0e10e7d327bfbe49bdf7f4676332cc42fdffd8669f1be9b2c78f156908429f4954ddb1e6f7b165353442c26f1bc85de8e0b08c1efb1be774fcab55bb50a2ffff41e5d8669f1b8b6e94e546e218d99f1bf5b2826673cf3f8bffff1bad41fd0cc87a7597ffff9f9f4377e0b441ff1b5c6ef0e36380f8cf1b048e3ba644686d274cb10d3f980708ef600003d51affd8669f1b2f3931446d39e2199f48739199ce5a7c2ac91b67b3444dd9b7773d4b16330fc9d687817fea70d544b75007b11be6cc6f0da81de6c5ffff49e8d5c955dc042560531b7785e7e68944ed82ff1b280bfbaba7a7d63bff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 133, 242, 207, 249, 80, 197, 40, 108, 159, 72, 17, 54, 94, 225, 228, 92, 204, 228, + 27, 73, 186, 89, 176, 142, 191, 184, 246, 255, 255, 74, 224, 135, 96, 101, 168, 13, 223, 72, 197, 115, 69, 250, + 220, 157, 154, 200, 27, 5, 27, 59, 134, 154, 4, 137, 187, 255, 27, 4, 160, 102, 16, 121, 45, 34, 16, 216, 102, + 159, 27, 72, 220, 1, 144, 171, 165, 115, 134, 159, 159, 27, 181, 152, 247, 69, 72, 163, 191, 138, 68, 102, 134, + 148, 29, 27, 122, 14, 16, 231, 211, 39, 191, 190, 73, 189, 247, 244, 103, 99, 50, 204, 66, 253, 255, 216, 102, + 159, 27, 233, 178, 199, 143, 21, 105, 8, 66, 159, 73, 84, 221, 177, 230, 247, 177, 101, 53, 52, 66, 194, 111, 27, + 200, 93, 232, 224, 176, 140, 30, 251, 27, 231, 116, 252, 171, 85, 187, 80, 162, 255, 255, 65, 229, 216, 102, 159, + 27, 139, 110, 148, 229, 70, 226, 24, 217, 159, 27, 245, 178, 130, 102, 115, 207, 63, 139, 255, 255, 27, 173, 65, + 253, 12, 200, 122, 117, 151, 255, 255, 159, 159, 67, 119, 224, 180, 65, 255, 27, 92, 110, 240, 227, 99, 128, 248, + 207, 27, 4, 142, 59, 166, 68, 104, 109, 39, 76, 177, 13, 63, 152, 7, 8, 239, 96, 0, 3, 213, 26, 255, 216, 102, + 159, 27, 47, 57, 49, 68, 109, 57, 226, 25, 159, 72, 115, 145, 153, 206, 90, 124, 42, 201, 27, 103, 179, 68, 77, + 217, 183, 119, 61, 75, 22, 51, 15, 201, 214, 135, 129, 127, 234, 112, 213, 68, 183, 80, 7, 177, 27, 230, 204, 111, + 13, 168, 29, 230, 197, 255, 255, 73, 232, 213, 201, 85, 220, 4, 37, 96, 83, 27, 119, 133, 231, 230, 137, 68, 237, + 130, 255, 27, 40, 11, 251, 171, 167, 167, 214, 59, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3234, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3228837459369950732" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "536f2e33100152c2c6afb7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15694203366617120260" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4347877233875025671" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50baac82d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "045a87" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e368a21" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0bde36409129" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15506371771585745105" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13183500143482577627" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "731077847320989550" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4b52fdb5966ba6f3" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16234607980990035017" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "149662442088195077" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07d610cabb00319273493e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3138d5c700" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffec9fbf1b2ccf228feb387e0c4b536f2e33100152c2c6afb71bd9cd02cf7bf3fe041b3c56c34ee420ff074550baac82d343045a87446e368a21460bde36409129ff1bd731b2f8508350d19f410cff1bb6f53388049722dbd8669f1b0a254f6dc0b98f6e9f484b52fdb5966ba6f3ffffffff9fbf1be14ce9f1aea1f4491b0213b532b8e264054b07d610cabb00319273493e453138d5c700ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 191, 27, 44, 207, 34, 143, 235, 56, 126, 12, + 75, 83, 111, 46, 51, 16, 1, 82, 194, 198, 175, 183, 27, 217, 205, 2, 207, 123, 243, 254, 4, 27, 60, 86, 195, 78, + 228, 32, 255, 7, 69, 80, 186, 172, 130, 211, 67, 4, 90, 135, 68, 110, 54, 138, 33, 70, 11, 222, 54, 64, 145, 41, + 255, 27, 215, 49, 178, 248, 80, 131, 80, 209, 159, 65, 12, 255, 27, 182, 245, 51, 136, 4, 151, 34, 219, 216, 102, + 159, 27, 10, 37, 79, 109, 192, 185, 143, 110, 159, 72, 75, 82, 253, 181, 150, 107, 166, 243, 255, 255, 255, 255, + 159, 191, 27, 225, 76, 233, 241, 174, 161, 244, 73, 27, 2, 19, 181, 50, 184, 226, 100, 5, 75, 7, 214, 16, 202, + 187, 0, 49, 146, 115, 73, 62, 69, 49, 56, 213, 199, 0, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3235, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "890457301184752984" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4409259630954008530" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "511111605656308507" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3420594989005913101" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea8a44d51220" + }, + { + "_tag": "ByteArray", + "bytearray": "c62f4d3fb0598ab9dc557b7d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3419315550028670172" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11988328918352734905" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4525570531769240419" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3d493a731" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5103424149776561571" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4934948314607037137" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32b65135db5d308956bcd5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "218955e338be3ce5ba94373c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3839905219726456654" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d07b5ae63c8f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5362422517357028187" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3776805509697810927" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4637076435749626473" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1432604245363451973" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5616568835250056691" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0da28980cc561531a594d6d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9448153964757902092" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "397b37fe5f94dfb4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13288204094974574508" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13305020510569805555" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14819834972618885158" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15063203237121868979" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9959067652004515398" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b0c5b8a3294c52d5880ffd8669f1b3d30d645e97bcfd29f1b0717d54c1fb94b1ba09f1b2f786504f82dbc0d46ea8a44d512204cc62f4d3fb0598ab9dc557b7dffbf1b2f73d9605e6da4dc1ba65f19a264f52ab91b3ece0e6bd014cb6345c3d493a7311b46d30139a194f5a31b447c75587d10aad14b32b65135db5d308956bcd54c218955e338be3ce5ba94373cff1b354a1573e0f6b74effffbf470d07b5ae63c8f51b4a6b26de429f235b41ae1b3469e899c746b1efffbf1b405a34733530e2691b13e1a1f88c9ae8451b4df20f99099bedf34cc0da28980cc561531a594d6d1b831e95f8f497e30c48397b37fe5f94dfb41bb8692f386fd9bfac42d7f91bb8a4eda94dccb6f31bcdaaa16384dc08261bd10b3f893029c4b31b8a35b7439bd00e46ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 12, 91, 138, 50, 148, 197, 45, 88, 128, 255, 216, 102, 159, 27, 61, 48, 214, 69, 233, 123, + 207, 210, 159, 27, 7, 23, 213, 76, 31, 185, 75, 27, 160, 159, 27, 47, 120, 101, 4, 248, 45, 188, 13, 70, 234, 138, + 68, 213, 18, 32, 76, 198, 47, 77, 63, 176, 89, 138, 185, 220, 85, 123, 125, 255, 191, 27, 47, 115, 217, 96, 94, + 109, 164, 220, 27, 166, 95, 25, 162, 100, 245, 42, 185, 27, 62, 206, 14, 107, 208, 20, 203, 99, 69, 195, 212, 147, + 167, 49, 27, 70, 211, 1, 57, 161, 148, 245, 163, 27, 68, 124, 117, 88, 125, 16, 170, 209, 75, 50, 182, 81, 53, + 219, 93, 48, 137, 86, 188, 213, 76, 33, 137, 85, 227, 56, 190, 60, 229, 186, 148, 55, 60, 255, 27, 53, 74, 21, + 115, 224, 246, 183, 78, 255, 255, 191, 71, 13, 7, 181, 174, 99, 200, 245, 27, 74, 107, 38, 222, 66, 159, 35, 91, + 65, 174, 27, 52, 105, 232, 153, 199, 70, 177, 239, 255, 191, 27, 64, 90, 52, 115, 53, 48, 226, 105, 27, 19, 225, + 161, 248, 140, 154, 232, 69, 27, 77, 242, 15, 153, 9, 155, 237, 243, 76, 192, 218, 40, 152, 12, 197, 97, 83, 26, + 89, 77, 109, 27, 131, 30, 149, 248, 244, 151, 227, 12, 72, 57, 123, 55, 254, 95, 148, 223, 180, 27, 184, 105, 47, + 56, 111, 217, 191, 172, 66, 215, 249, 27, 184, 164, 237, 169, 77, 204, 182, 243, 27, 205, 170, 161, 99, 132, 220, + 8, 38, 27, 209, 11, 63, 137, 48, 41, 196, 179, 27, 138, 53, 183, 67, 155, 208, 14, 70, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3236, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15572405147535909886" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cd55d3b97" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5300036271152761090" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14882537523596758528" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d46f5117aaeec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18124889209661562539" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dac09cb8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c54150d47608011e92" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17448973437817463912" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1bd81c4bf9bd57a3fe80ffbf450cd55d3b971b498d82e866bf0902414b1bce896506d2680e00476d46f5117aaeec1bfb888ab4d7301eab41b344dac09cb849c54150d47608011e921bf22734e4a0562468ffffbf0841fdffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 216, 28, 75, 249, 189, 87, 163, 254, 128, 255, 191, 69, 12, 213, 93, 59, 151, 27, 73, + 141, 130, 232, 102, 191, 9, 2, 65, 75, 27, 206, 137, 101, 6, 210, 104, 14, 0, 71, 109, 70, 245, 17, 122, 174, 236, + 27, 251, 136, 138, 180, 215, 48, 30, 171, 65, 179, 68, 218, 192, 156, 184, 73, 197, 65, 80, 212, 118, 8, 1, 30, + 146, 27, 242, 39, 52, 228, 160, 86, 36, 104, 255, 255, 191, 8, 65, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3237, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7905554407800879791" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06bd18ce27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac37abd82dda13702d0f27" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21fc79cc67d9610e63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5253683836215431097" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34f095508e244231987f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca5499" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7da0477858fe4357" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa03993feaee50a00bb71d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa6987626e91" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b15425706" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4826540928739375819" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7745815554358294832" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "876574684259957829" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07ddcc22bee6cd27459b1815" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ee6bd3a0ea8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10898236810285325968" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1019461538556560457" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17533946895880219675" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2691211308816119281" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2545e508f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11675089385351553467" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7401818226320649343" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12329761330870557870" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11637257834053197950" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2eba3d2174c328" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3e34e9cdb2246b17" + }, + { + "_tag": "ByteArray", + "bytearray": "23a019" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17670021767054226904" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11181520912753288741" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3323522200890913234" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8531847244504300776" + } + } + ] + } + ] + }, + "cborHex": "9f1b6db62bd9357ebaaf9fbf4506bd18ce274bac37abd82dda13702d0f274921fc79cc67d9610e631b48e8d59d23d50fb94a34f095508e244231987f43ca5499487da0477858fe43574bfa03993feaee50a00bb71d46aa6987626e91453b1542570641f71b42fb51670f64facbff1b6b7eaa352538b930ffbf1b0c2a3807f26a3c454c07ddcc22bee6cd27459b1815468ee6bd3a0ea81b973e50a33b249e90ff9fbf1b0e25dade33d644491bf35517cd8f80ec1b1b25591a6d3d7fb5f145e2545e508f1ba2063ff04ed021bb1b66b88a75d7daac7f1bab1c1c9ac3e31cae41a3ffbf1ba17fd857de5f607e472eba3d2174c328ff483e34e9cdb2246b174323a019ffd8669f1bf538872d66aff5d89f9f1b9b2cbe072542e6251b2e1f85d53b3a31d2ff1b766735dd7e92fce8ffffff", + "cborBytes": [ + 159, 27, 109, 182, 43, 217, 53, 126, 186, 175, 159, 191, 69, 6, 189, 24, 206, 39, 75, 172, 55, 171, 216, 45, 218, + 19, 112, 45, 15, 39, 73, 33, 252, 121, 204, 103, 217, 97, 14, 99, 27, 72, 232, 213, 157, 35, 213, 15, 185, 74, 52, + 240, 149, 80, 142, 36, 66, 49, 152, 127, 67, 202, 84, 153, 72, 125, 160, 71, 120, 88, 254, 67, 87, 75, 250, 3, + 153, 63, 234, 238, 80, 160, 11, 183, 29, 70, 170, 105, 135, 98, 110, 145, 69, 59, 21, 66, 87, 6, 65, 247, 27, 66, + 251, 81, 103, 15, 100, 250, 203, 255, 27, 107, 126, 170, 53, 37, 56, 185, 48, 255, 191, 27, 12, 42, 56, 7, 242, + 106, 60, 69, 76, 7, 221, 204, 34, 190, 230, 205, 39, 69, 155, 24, 21, 70, 142, 230, 189, 58, 14, 168, 27, 151, 62, + 80, 163, 59, 36, 158, 144, 255, 159, 191, 27, 14, 37, 218, 222, 51, 214, 68, 73, 27, 243, 85, 23, 205, 143, 128, + 236, 27, 27, 37, 89, 26, 109, 61, 127, 181, 241, 69, 226, 84, 94, 80, 143, 27, 162, 6, 63, 240, 78, 208, 33, 187, + 27, 102, 184, 138, 117, 215, 218, 172, 127, 27, 171, 28, 28, 154, 195, 227, 28, 174, 65, 163, 255, 191, 27, 161, + 127, 216, 87, 222, 95, 96, 126, 71, 46, 186, 61, 33, 116, 195, 40, 255, 72, 62, 52, 233, 205, 178, 36, 107, 23, + 67, 35, 160, 25, 255, 216, 102, 159, 27, 245, 56, 135, 45, 102, 175, 245, 216, 159, 159, 27, 155, 44, 190, 7, 37, + 66, 230, 37, 27, 46, 31, 133, 213, 59, 58, 49, 210, 255, 27, 118, 103, 53, 221, 126, 146, 252, 232, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3238, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6192947950099970390" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8212446128451993385" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5648affd5adf" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13792408196319083734" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17692128942046059862" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6613280362823120910" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ef9a77c6904fbff01fe0659" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92bd081287bbc7037400" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "050182fbc2b004fd" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "856a97e87c9c30ac8164e646" + }, + { + "_tag": "ByteArray", + "bytearray": "be2eb9c93450d8ba0e385a" + }, + { + "_tag": "ByteArray", + "bytearray": "cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8119988656307501035" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b55f1c559563139569fbf1b71f8783e0f69bf29465648affd5adfffd8669f1bfffffffffffffffd9f1bbf687a2de2c8fcd61bf58711892f101d561b5bc717738a23780effffbf4c5ef9a77c6904fbff01fe0659074a92bd081287bbc703740048050182fbc2b004fdff9f4c856a97e87c9c30ac8164e6464bbe2eb9c93450d8ba0e385a41cc1b70affea94f68f7ebffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 85, 241, 197, 89, 86, 49, 57, 86, 159, 191, 27, 113, 248, 120, 62, 15, 105, 191, 41, 70, + 86, 72, 175, 253, 90, 223, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 27, 191, 104, 122, + 45, 226, 200, 252, 214, 27, 245, 135, 17, 137, 47, 16, 29, 86, 27, 91, 199, 23, 115, 138, 35, 120, 14, 255, 255, + 191, 76, 94, 249, 167, 124, 105, 4, 251, 255, 1, 254, 6, 89, 7, 74, 146, 189, 8, 18, 135, 187, 199, 3, 116, 0, 72, + 5, 1, 130, 251, 194, 176, 4, 253, 255, 159, 76, 133, 106, 151, 232, 124, 156, 48, 172, 129, 100, 230, 70, 75, 190, + 46, 185, 201, 52, 80, 216, 186, 14, 56, 90, 65, 204, 27, 112, 175, 254, 169, 79, 104, 247, 235, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3239, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4946882638103669383" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "bb7a1eb78e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "463ca35df23c595d0a7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a11bea1c83ee77" + } + } + ] + } + ] + }, + "cborHex": "9f1b44a6db8cb5b76a878045bb7a1eb78ebf4a463ca35df23c595d0a7d47a11bea1c83ee77ffff", + "cborBytes": [ + 159, 27, 68, 166, 219, 140, 181, 183, 106, 135, 128, 69, 187, 122, 30, 183, 142, 191, 74, 70, 60, 163, 93, 242, + 60, 89, 93, 10, 125, 71, 161, 27, 234, 28, 131, 238, 119, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3240, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9064998324986068171" + } + } + ] + }, + "cborHex": "9f1b7dcd57f2ba4e3ccbff", + "cborBytes": [159, 27, 125, 205, 87, 242, 186, 78, 60, 203, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3241, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f423d7432be8" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "52f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3246690996912379897" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e90965" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11144580643220015843" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12665950513091737417" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2902df78a8" + }, + { + "_tag": "ByteArray", + "bytearray": "2263" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7478515651670679731" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cc35f0a68f3df51b9776e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "282aff0e5625ba82a9ca93" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9593e5c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13295559246212217392" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a931e9d0b3d3d05b08" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17558003002211334137" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6802c44204d2420fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf502b58bb" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9775134158824454588" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3f62f730ea0b8c8b1d9901a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1678692769956648592" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17754432759631327542" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "08754dd891e0a0067ff9a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "162800798769212004" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f46f423d7432be8bf4252f21b2d0e90428e6bd7f943e909651b9aa9810c69d2cae3ff9f9f1bafc67ee273827749452902df78a8422263ff1b67c9065cc107a0b3bf4b1cc35f0a68f3df51b9776e4b282aff0e5625ba82a9ca93449593e5c61bb88350b108a3ba3049a931e9d0b3d3d05b081bf3aa8eb4480c77f949d6802c44204d2420fd45bf502b58bbffffbf42f0cf1b87a840ba0084b9bc4cf3f62f730ea0b8c8b1d9901a1b174bea2e20485690ff9fd8669f1bf6646a87226231369f4b08754dd891e0a0067ff9a71b02426276c3c9ea64ffffffff", + "cborBytes": [ + 159, 70, 244, 35, 215, 67, 43, 232, 191, 66, 82, 242, 27, 45, 14, 144, 66, 142, 107, 215, 249, 67, 233, 9, 101, + 27, 154, 169, 129, 12, 105, 210, 202, 227, 255, 159, 159, 27, 175, 198, 126, 226, 115, 130, 119, 73, 69, 41, 2, + 223, 120, 168, 66, 34, 99, 255, 27, 103, 201, 6, 92, 193, 7, 160, 179, 191, 75, 28, 195, 95, 10, 104, 243, 223, + 81, 185, 119, 110, 75, 40, 42, 255, 14, 86, 37, 186, 130, 169, 202, 147, 68, 149, 147, 229, 198, 27, 184, 131, 80, + 177, 8, 163, 186, 48, 73, 169, 49, 233, 208, 179, 211, 208, 91, 8, 27, 243, 170, 142, 180, 72, 12, 119, 249, 73, + 214, 128, 44, 68, 32, 77, 36, 32, 253, 69, 191, 80, 43, 88, 187, 255, 255, 191, 66, 240, 207, 27, 135, 168, 64, + 186, 0, 132, 185, 188, 76, 243, 246, 47, 115, 14, 160, 184, 200, 177, 217, 144, 26, 27, 23, 75, 234, 46, 32, 72, + 86, 144, 255, 159, 216, 102, 159, 27, 246, 100, 106, 135, 34, 98, 49, 54, 159, 75, 8, 117, 77, 216, 145, 224, 160, + 6, 127, 249, 167, 27, 2, 66, 98, 118, 195, 201, 234, 100, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3242, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6431011249417486948" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4302314298606226814" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6486376845045259512" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17234430532422358774" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cd9f0d23dc1f57aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8334437441855460911" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2777f95cd33146309a55" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b257c2bfafcb8d" + }, + { + "_tag": "ByteArray", + "bytearray": "e7388340aa831bfaafc66db4" + }, + { + "_tag": "ByteArray", + "bytearray": "cf6ffa6b5b2e790cf0d59a10" + }, + { + "_tag": "ByteArray", + "bytearray": "54d5d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11454517743249936764" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13926473423497958202" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7414674770746265256" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a73207cf89f85f" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "94" + }, + { + "_tag": "ByteArray", + "bytearray": "2433a616bf51e4550211" + }, + { + "_tag": "ByteArray", + "bytearray": "aa5197b3bcbc6a721714fb" + }, + { + "_tag": "ByteArray", + "bytearray": "594740" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11750207266229407416" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14147326570106470171" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3125614885658808526" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b593f8aa88c1202649f1b3bb4e40f58820d7e1b5a043d5fd03ddcf81bef2cff41df2e56f648cd9f0d23dc1f57aa1b73a9deb21482962fffff4a2777f95cd33146309a559f47b257c2bfafcb8d4ce7388340aa831bfaafc66db44ccf6ffa6b5b2e790cf0d59a104354d5d31b9ef69f32e7d2517cffd8669f1bc144c5cb0583933a9f1b66e6376b5b61cea847a73207cf89f85fffff9f41944a2433a616bf51e45502114baa5197b3bcbc6a721714fb43594740ffff1ba3111f40dcd14eb81bc455668f4ca43f1b9f1b2b606a2da45dd0ce41ce80ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 89, 63, 138, 168, 140, 18, 2, 100, 159, 27, 59, 180, 228, 15, 88, 130, 13, 126, 27, + 90, 4, 61, 95, 208, 61, 220, 248, 27, 239, 44, 255, 65, 223, 46, 86, 246, 72, 205, 159, 13, 35, 220, 31, 87, 170, + 27, 115, 169, 222, 178, 20, 130, 150, 47, 255, 255, 74, 39, 119, 249, 92, 211, 49, 70, 48, 154, 85, 159, 71, 178, + 87, 194, 191, 175, 203, 141, 76, 231, 56, 131, 64, 170, 131, 27, 250, 175, 198, 109, 180, 76, 207, 111, 250, 107, + 91, 46, 121, 12, 240, 213, 154, 16, 67, 84, 213, 211, 27, 158, 246, 159, 50, 231, 210, 81, 124, 255, 216, 102, + 159, 27, 193, 68, 197, 203, 5, 131, 147, 58, 159, 27, 102, 230, 55, 107, 91, 97, 206, 168, 71, 167, 50, 7, 207, + 137, 248, 95, 255, 255, 159, 65, 148, 74, 36, 51, 166, 22, 191, 81, 228, 85, 2, 17, 75, 170, 81, 151, 179, 188, + 188, 106, 114, 23, 20, 251, 67, 89, 71, 64, 255, 255, 27, 163, 17, 31, 64, 220, 209, 78, 184, 27, 196, 85, 102, + 143, 76, 164, 63, 27, 159, 27, 43, 96, 106, 45, 164, 93, 208, 206, 65, 206, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3243, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "3b" + } + ] + }, + "cborHex": "9fd87d80413bff", + "cborBytes": [159, 216, 125, 128, 65, 59, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3244, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5563820643047875348" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16446313838987539332" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91dde0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9879641e2bc2d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4ecacffb701" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5266daa3b31fed" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b4d36a9657edaa3141be43d0b4cdd7173844391dde047e9879641e2bc2d46a4ecacffb701475266daa3b31fedffff", + "cborBytes": [ + 159, 191, 27, 77, 54, 169, 101, 126, 218, 163, 20, 27, 228, 61, 11, 76, 221, 113, 115, 132, 67, 145, 221, 224, 71, + 233, 135, 150, 65, 226, 188, 45, 70, 164, 236, 172, 255, 183, 1, 71, 82, 102, 218, 163, 179, 31, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3245, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6438384ebc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5853637871970822498" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8982ad104597bf54de5685" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4097772187791169788" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7509780784744071575" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03376cb03cb26f4ab4dd8a2e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9233906094772316097" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14455825548196138004" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "891608e6312f" + } + } + ] + } + ] + }, + "cborHex": "9f456438384ebc1b513c4ca1729829629f4b8982ad104597bf54de5685ff1b38de361807c498fcbf1b683819d5cfb981974c03376cb03cb26f4ab4dd8a2e1b80256cab7c37e7c141e21bc89d68beef3f4c1446891608e6312fffff", + "cborBytes": [ + 159, 69, 100, 56, 56, 78, 188, 27, 81, 60, 76, 161, 114, 152, 41, 98, 159, 75, 137, 130, 173, 16, 69, 151, 191, + 84, 222, 86, 133, 255, 27, 56, 222, 54, 24, 7, 196, 152, 252, 191, 27, 104, 56, 25, 213, 207, 185, 129, 151, 76, + 3, 55, 108, 176, 60, 178, 111, 74, 180, 221, 138, 46, 27, 128, 37, 108, 171, 124, 55, 231, 193, 65, 226, 27, 200, + 157, 104, 190, 239, 63, 76, 20, 70, 137, 22, 8, 230, 49, 47, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3246, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4305514464618795430" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0b0303" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6093771041642186090" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "75960352f3ee1a43" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14196008020095597498" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "33" + }, + { + "_tag": "ByteArray", + "bytearray": "aa9fea1064cd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1909925372113045519" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11312316138296688691" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1183188923087886258" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1997711105188683632" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10952470359043350781" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12814738717053173646" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8791161050540156854" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12518117411655869704" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ec6be1e03e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6346589853934193863" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e85f44d9bfe3738f27d64f" + }, + { + "_tag": "ByteArray", + "bytearray": "278afc01271be7caa13f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11236208756785600254" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1ea3618d88a1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10415400580571655382" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f62d41cc2b0ca10a0ca5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3168b2cabd50a87a4b47" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14775427147790446528" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3bc042980ee8d1a69f430b0303ffffd8669f1b54916c79e7a5056a9f4875960352f3ee1a43d8669f1bc5025a14a264fbba9f413346aa9fea1064cd1b1a816b01b84dc80fffff9f1b9cfd6b97b217c0331b106b880e86d497b2ffd8669f1b1bb94baa749fdf7080ffffffd8669f1b97fefdc34bc620fd9fd8669f1bb1d718f7bf663f8e9f1b7a007a65dcb227b6ffffd8669f1badb949764a6165089f45ec6be1e03effff1b58139dd8b2d88cc79f4be85f44d9bfe3738f27d64f4a278afc01271be7caa13f1b9bef08551256d6fe461ea3618d88a11b908aefa5165eecd6ffffff4af62d41cc2b0ca10a0ca5bf4a3168b2cabd50a87a4b471bcd0cdcb514b66fc0ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 59, 192, 66, 152, 14, 232, 209, 166, 159, 67, 11, 3, 3, 255, 255, 216, 102, 159, 27, 84, + 145, 108, 121, 231, 165, 5, 106, 159, 72, 117, 150, 3, 82, 243, 238, 26, 67, 216, 102, 159, 27, 197, 2, 90, 20, + 162, 100, 251, 186, 159, 65, 51, 70, 170, 159, 234, 16, 100, 205, 27, 26, 129, 107, 1, 184, 77, 200, 15, 255, 255, + 159, 27, 156, 253, 107, 151, 178, 23, 192, 51, 27, 16, 107, 136, 14, 134, 212, 151, 178, 255, 216, 102, 159, 27, + 27, 185, 75, 170, 116, 159, 223, 112, 128, 255, 255, 255, 216, 102, 159, 27, 151, 254, 253, 195, 75, 198, 32, 253, + 159, 216, 102, 159, 27, 177, 215, 24, 247, 191, 102, 63, 142, 159, 27, 122, 0, 122, 101, 220, 178, 39, 182, 255, + 255, 216, 102, 159, 27, 173, 185, 73, 118, 74, 97, 101, 8, 159, 69, 236, 107, 225, 224, 62, 255, 255, 27, 88, 19, + 157, 216, 178, 216, 140, 199, 159, 75, 232, 95, 68, 217, 191, 227, 115, 143, 39, 214, 79, 74, 39, 138, 252, 1, 39, + 27, 231, 202, 161, 63, 27, 155, 239, 8, 85, 18, 86, 214, 254, 70, 30, 163, 97, 141, 136, 161, 27, 144, 138, 239, + 165, 22, 94, 236, 214, 255, 255, 255, 74, 246, 45, 65, 204, 43, 12, 161, 10, 12, 165, 191, 74, 49, 104, 178, 202, + 189, 80, 168, 122, 75, 71, 27, 205, 12, 220, 181, 20, 182, 111, 192, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3247, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3096400338206981892" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9be509f08065236d185d7" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18131630747878906238" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "63a5f0a3cfa683a55e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2539055876615255215" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "716198766089309663" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ad88e0a35f4f57355111" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ae" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15459646862268202233" + } + } + ] + }, + "cborHex": "9fbf1b2af89fb3c139ff044bf9be509f08065236d185d7ffd8669f1bfba07e1985df597e9f4963a5f0a3cfa683a55ed8669f1b233c89de068534af9f1b09f072fbb1538ddf4aad88e0a35f4f57355111ffff41aeffff1bd68bb2e99a7a7cf9ff", + "cborBytes": [ + 159, 191, 27, 42, 248, 159, 179, 193, 57, 255, 4, 75, 249, 190, 80, 159, 8, 6, 82, 54, 209, 133, 215, 255, 216, + 102, 159, 27, 251, 160, 126, 25, 133, 223, 89, 126, 159, 73, 99, 165, 240, 163, 207, 166, 131, 165, 94, 216, 102, + 159, 27, 35, 60, 137, 222, 6, 133, 52, 175, 159, 27, 9, 240, 114, 251, 177, 83, 141, 223, 74, 173, 136, 224, 163, + 95, 79, 87, 53, 81, 17, 255, 255, 65, 174, 255, 255, 27, 214, 139, 178, 233, 154, 122, 124, 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3248, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f2ec6504" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c1da8786" + }, + { + "_tag": "ByteArray", + "bytearray": "33fa47cd7eddeb950e1728" + }, + { + "_tag": "ByteArray", + "bytearray": "74" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15196895330403372180" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14615654112191865461" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12441389438330670399" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3745029fee25439425" + }, + { + "_tag": "ByteArray", + "bytearray": "3e72617990f7dc79d7" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a29242f4726" + } + } + ] + } + ] + }, + "cborHex": "9f44f2ec65049f9f44c1da87864b33fa47cd7eddeb950e17284174ff809f13ffff9fd8669f1bd2e637c9517c4c949f1bcad53bfa5d2c62751baca8b1c6dfff0d3f493745029fee25439425493e72617990f7dc79d7ffffffbf0f462a29242f4726ffff", + "cborBytes": [ + 159, 68, 242, 236, 101, 4, 159, 159, 68, 193, 218, 135, 134, 75, 51, 250, 71, 205, 126, 221, 235, 149, 14, 23, 40, + 65, 116, 255, 128, 159, 19, 255, 255, 159, 216, 102, 159, 27, 210, 230, 55, 201, 81, 124, 76, 148, 159, 27, 202, + 213, 59, 250, 93, 44, 98, 117, 27, 172, 168, 177, 198, 223, 255, 13, 63, 73, 55, 69, 2, 159, 238, 37, 67, 148, 37, + 73, 62, 114, 97, 121, 144, 247, 220, 121, 215, 255, 255, 255, 191, 15, 70, 42, 41, 36, 47, 71, 38, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3249, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6300248816162594256" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14778657276413641709" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1956838306615864876" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14429570336613527406" + } + } + ] + } + ] + }, + "cborHex": "9f1b576efaeb0bf25dd01bcd18567e01e083edd8669f1b1b28161274b72e2c9f1bc84021c51f5cef6effffff", + "cborBytes": [ + 159, 27, 87, 110, 250, 235, 11, 242, 93, 208, 27, 205, 24, 86, 126, 1, 224, 131, 237, 216, 102, 159, 27, 27, 40, + 22, 18, 116, 183, 46, 44, 159, 27, 200, 64, 33, 197, 31, 92, 239, 110, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3250, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8979729649251594385" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8550231235920050268" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13698584022032049577" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14992551946538377744" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b827fbbc5114f52a78abc8" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c6e4dcfd6e5f077f971ee9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15591070135251623847" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7c9e688a12af30919fbf1b76a886020c76b85c1bbe1b2596ff0fe5a91bd0103e8fba02e2104bb827fbbc5114f52a78abc8ffffff9f4bc6e4dcfd6e5f077f971ee91bd85e9baed7dfdfa780ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 124, 158, 104, 138, 18, 175, 48, 145, 159, 191, 27, 118, 168, 134, 2, 12, 118, 184, 92, + 27, 190, 27, 37, 150, 255, 15, 229, 169, 27, 208, 16, 62, 143, 186, 2, 226, 16, 75, 184, 39, 251, 188, 81, 20, + 245, 42, 120, 171, 200, 255, 255, 255, 159, 75, 198, 228, 220, 253, 110, 95, 7, 127, 151, 30, 233, 27, 216, 94, + 155, 174, 215, 223, 223, 167, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3251, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13006912381106872859" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "201ea05c6f3821b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17891393154748296419" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "256ab5ce61012fceee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4026730138280681234" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8088c303da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1247840059322756655" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d63" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b9426ed0fbcd42d3dfa0ca3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dba8d88f3ab5b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d670da80db847d7dce19c59c" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f0ad8669f1bb481d5e5a481621b9fbf48201ea05c6f3821b11bf84aff4815a0ace349256ab5ce61012fceee1b37e1d1b9ea945f12458088c303da1b115137ec306f6e2f428d634c3b9426ed0fbcd42d3dfa0ca347dba8d88f3ab5b44cd670da80db847d7dce19c59cffffffff", + "cborBytes": [ + 159, 10, 216, 102, 159, 27, 180, 129, 213, 229, 164, 129, 98, 27, 159, 191, 72, 32, 30, 160, 92, 111, 56, 33, 177, + 27, 248, 74, 255, 72, 21, 160, 172, 227, 73, 37, 106, 181, 206, 97, 1, 47, 206, 238, 27, 55, 225, 209, 185, 234, + 148, 95, 18, 69, 128, 136, 195, 3, 218, 27, 17, 81, 55, 236, 48, 111, 110, 47, 66, 141, 99, 76, 59, 148, 38, 237, + 15, 188, 212, 45, 61, 250, 12, 163, 71, 219, 168, 216, 143, 58, 181, 180, 76, 214, 112, 218, 128, 219, 132, 125, + 125, 206, 25, 197, 156, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3252, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15748964722079326716" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6861750702548239638" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7601114784477753631" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0acb" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a0170444ec64" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3140313992468377775" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15209978714599527655" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18341920207522506847" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ae584f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9634997528248517333" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14028478605597628936" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a8057a2ccb863c02a520d33f" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8b6537177aba9841029701" + }, + { + "_tag": "ByteArray", + "bytearray": "a35c751ca9af" + } + ] + } + ] + }, + "cborHex": "9f80d8669f1bda8f8ff91fb261fc9fd8669f1b5f39d5e8aaacc51680ff9f1b697c959fc1c4311f420acbff46a0170444ec64ffff9f1b2b94a2f0244430af1bd314b30e14f514e7d8669f1bfe8b973fc3f0285f9f43ae584f1b85b663341b0502d5ffffd8669f1bc2af2af739d05a089f4ca8057a2ccb863c02a520d33fffffff9f4b8b6537177aba984102970146a35c751ca9afffff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 218, 143, 143, 249, 31, 178, 97, 252, 159, 216, 102, 159, 27, 95, 57, 213, 232, 170, + 172, 197, 22, 128, 255, 159, 27, 105, 124, 149, 159, 193, 196, 49, 31, 66, 10, 203, 255, 70, 160, 23, 4, 68, 236, + 100, 255, 255, 159, 27, 43, 148, 162, 240, 36, 68, 48, 175, 27, 211, 20, 179, 14, 20, 245, 20, 231, 216, 102, 159, + 27, 254, 139, 151, 63, 195, 240, 40, 95, 159, 67, 174, 88, 79, 27, 133, 182, 99, 52, 27, 5, 2, 213, 255, 255, 216, + 102, 159, 27, 194, 175, 42, 247, 57, 208, 90, 8, 159, 76, 168, 5, 122, 44, 203, 134, 60, 2, 165, 32, 211, 63, 255, + 255, 255, 159, 75, 139, 101, 55, 23, 122, 186, 152, 65, 2, 151, 1, 70, 163, 92, 117, 28, 169, 175, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3253, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15132829421894394487" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40733f546c4d35" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24a426ff51" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14475761790309694592" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2efec27b914e5b1a4fdd4b55" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9011" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86c00a03b9aeecaec9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12224114857421801280" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3685265309282841403" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0aca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8969005083793272283" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12299882995831857649" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13497415930636808623" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11831777682108810882" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14315625438773278674" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37697d6a5b404df5741c8b83" + } + } + ] + } + ] + }, + "cborHex": "9f8080bf1bd2029c2e9a9862774740733f546c4d354524a426ff511bc8e43ca70494fc804c2efec27b914e5b1a4fdd4b554290114986c00a03b9aeecaec91ba9a4c7b25a338740ffbf1b3324b145fedfb33b420aca1b7c784e9a982baddb1baab1f66ac96ce1f11bbb507446cb4e31af1ba432eb1d4b7d86821bc6ab517d37a077d24c37697d6a5b404df5741c8b83ffff", + "cborBytes": [ + 159, 128, 128, 191, 27, 210, 2, 156, 46, 154, 152, 98, 119, 71, 64, 115, 63, 84, 108, 77, 53, 69, 36, 164, 38, + 255, 81, 27, 200, 228, 60, 167, 4, 148, 252, 128, 76, 46, 254, 194, 123, 145, 78, 91, 26, 79, 221, 75, 85, 66, + 144, 17, 73, 134, 192, 10, 3, 185, 174, 236, 174, 201, 27, 169, 164, 199, 178, 90, 51, 135, 64, 255, 191, 27, 51, + 36, 177, 69, 254, 223, 179, 59, 66, 10, 202, 27, 124, 120, 78, 154, 152, 43, 173, 219, 27, 170, 177, 246, 106, + 201, 108, 225, 241, 27, 187, 80, 116, 70, 203, 78, 49, 175, 27, 164, 50, 235, 29, 75, 125, 134, 130, 27, 198, 171, + 81, 125, 55, 160, 119, 210, 76, 55, 105, 125, 106, 91, 64, 77, 245, 116, 28, 139, 131, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3254, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "369b8c31cd9fda" + }, + { + "_tag": "ByteArray", + "bytearray": "fb8ab0" + }, + { + "_tag": "ByteArray", + "bytearray": "0602d70108" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11796135692157946705" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f225f0cc29a6f9ff8412" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11829255681302286781" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "36389929430999448" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a9f4f3" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10382720154777698494" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5999679776476569076" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7056289183517359546" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12542527479005628562" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee39931d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "15178aab9be4" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ffc7b870b96f4a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67c7f808ba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14953380873560142678" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df357a2d4f5a80ac5c994f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16761191758696114826" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f9f47369b8c31cd9fda43fb8ab0450602d701081ba3b44ae9d5618b514af225f0cc29a6f9ff8412ffff9fd8669f1ba429f55e394b51bd9f1b00814872b122e198ffff43a9f4f3ff9f9f1b9016d4f883d040be1b534324f812fb1df41b61ecf9a067fbbdba1bae100249fbb4c89244ee39931dff4615178aab9be4ffbf482ffc7b870b96f4a24567c7f808ba413a1bcf8514ad97ac33564bdf357a2d4f5a80ac5c994f1be89bb71995496a8affff", + "cborBytes": [ + 159, 159, 159, 71, 54, 155, 140, 49, 205, 159, 218, 67, 251, 138, 176, 69, 6, 2, 215, 1, 8, 27, 163, 180, 74, 233, + 213, 97, 139, 81, 74, 242, 37, 240, 204, 41, 166, 249, 255, 132, 18, 255, 255, 159, 216, 102, 159, 27, 164, 41, + 245, 94, 57, 75, 81, 189, 159, 27, 0, 129, 72, 114, 177, 34, 225, 152, 255, 255, 67, 169, 244, 243, 255, 159, 159, + 27, 144, 22, 212, 248, 131, 208, 64, 190, 27, 83, 67, 36, 248, 18, 251, 29, 244, 27, 97, 236, 249, 160, 103, 251, + 189, 186, 27, 174, 16, 2, 73, 251, 180, 200, 146, 68, 238, 57, 147, 29, 255, 70, 21, 23, 138, 171, 155, 228, 255, + 191, 72, 47, 252, 123, 135, 11, 150, 244, 162, 69, 103, 199, 248, 8, 186, 65, 58, 27, 207, 133, 20, 173, 151, 172, + 51, 86, 75, 223, 53, 122, 45, 79, 90, 128, 172, 92, 153, 79, 27, 232, 155, 183, 25, 149, 73, 106, 138, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3255, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7601ad" + }, + { + "_tag": "ByteArray", + "bytearray": "b8defa" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2230181818253661030" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13382832265316764917" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6960769268416810207" + } + }, + { + "_tag": "ByteArray", + "bytearray": "db43e00b774e990c15" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5148282761279280189" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b662f7ae9d104ff32a718e56" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11646000178962226752" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5542858461553496026" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae11d3e79300" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9253081928106886781" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3064369061851113932" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11281975640317888946" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12067332790804906788" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15290346497640692850" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6594296773374440836" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7850547471547044663" + } + } + ] + }, + "cborHex": "9f437601ad43b8defad8669f1b1ef3328c358b53669fd8669f1bb9b95f0a3ed78cf59f1b60999ec517708cdf49db43e00b774e990c151b47725fe50551943dffff4cb662f7ae9d104ff32a718e561ba19ee775a92dde40ffffbf1b4cec3067492a0fda46ae11d3e793001b80698cfd1a65c67d1b2a86d36d105529cc1b9c91a11205c209b21ba777c73cde5983241bd4323920bc82fc721b5b83a5fa307cf584ff1b6cf2bf54d5e71337ff", + "cborBytes": [ + 159, 67, 118, 1, 173, 67, 184, 222, 250, 216, 102, 159, 27, 30, 243, 50, 140, 53, 139, 83, 102, 159, 216, 102, + 159, 27, 185, 185, 95, 10, 62, 215, 140, 245, 159, 27, 96, 153, 158, 197, 23, 112, 140, 223, 73, 219, 67, 224, 11, + 119, 78, 153, 12, 21, 27, 71, 114, 95, 229, 5, 81, 148, 61, 255, 255, 76, 182, 98, 247, 174, 157, 16, 79, 243, 42, + 113, 142, 86, 27, 161, 158, 231, 117, 169, 45, 222, 64, 255, 255, 191, 27, 76, 236, 48, 103, 73, 42, 15, 218, 70, + 174, 17, 211, 231, 147, 0, 27, 128, 105, 140, 253, 26, 101, 198, 125, 27, 42, 134, 211, 109, 16, 85, 41, 204, 27, + 156, 145, 161, 18, 5, 194, 9, 178, 27, 167, 119, 199, 60, 222, 89, 131, 36, 27, 212, 50, 57, 32, 188, 130, 252, + 114, 27, 91, 131, 165, 250, 48, 124, 245, 132, 255, 27, 108, 242, 191, 84, 213, 231, 19, 55, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3256, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8700575487430860033" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17193685338019764021" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11601479291448210703" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bb9a743169cf04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6583868725766662721" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17000634885267747677" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "426540072171234748" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "685c54b3f5e2cd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4116431291907052039" + } + }, + { + "_tag": "ByteArray", + "bytearray": "40e0830f73538725cdbf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8151288601572599990" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17703499359244972054" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4214848165581642211" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11061492631522072084" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5146631381992253083" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12607787069186849963" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6cdab4defadf8d8d39d6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d12c6a380ba235" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2055077812024694978" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d440c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ea544a4ac1ed5aadf52" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd9167ff5b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3137683758906535343" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b78bea74ee5c99d019fbf1bee9c3db80882973541ebffd8669f1ba100bbf2c3d2350f9f47bb9a743169cf041b5b5e99b927202a411bebee635adc7f735d1b05eb5fef8c3c65bcffff9f47685c54b3f5e2cd1b39208073406c12074a40e0830f73538725cdbf1b711f31cbb66ce8b6ffffffd8669f1bf5af76debd26f0169f1b3a7e26134bb359e3bf1b998250f12b795614416dffbf1b476c81f95186a69b1baef7db8a5ea53cabff4a6cdab4defadf8d8d39d6bf47d12c6a380ba2351b1c851a61bb84d8c243d440c24a9ea544a4ac1ed5aadf5245dd9167ff5b1b2b8b4ac12b22edafffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 120, 190, 167, 78, 229, 201, 157, 1, 159, 191, 27, 238, 156, 61, 184, 8, 130, 151, 53, 65, + 235, 255, 216, 102, 159, 27, 161, 0, 187, 242, 195, 210, 53, 15, 159, 71, 187, 154, 116, 49, 105, 207, 4, 27, 91, + 94, 153, 185, 39, 32, 42, 65, 27, 235, 238, 99, 90, 220, 127, 115, 93, 27, 5, 235, 95, 239, 140, 60, 101, 188, + 255, 255, 159, 71, 104, 92, 84, 179, 245, 226, 205, 27, 57, 32, 128, 115, 64, 108, 18, 7, 74, 64, 224, 131, 15, + 115, 83, 135, 37, 205, 191, 27, 113, 31, 49, 203, 182, 108, 232, 182, 255, 255, 255, 216, 102, 159, 27, 245, 175, + 118, 222, 189, 38, 240, 22, 159, 27, 58, 126, 38, 19, 75, 179, 89, 227, 191, 27, 153, 130, 80, 241, 43, 121, 86, + 20, 65, 109, 255, 191, 27, 71, 108, 129, 249, 81, 134, 166, 155, 27, 174, 247, 219, 138, 94, 165, 60, 171, 255, + 74, 108, 218, 180, 222, 250, 223, 141, 141, 57, 214, 191, 71, 209, 44, 106, 56, 11, 162, 53, 27, 28, 133, 26, 97, + 187, 132, 216, 194, 67, 212, 64, 194, 74, 158, 165, 68, 164, 172, 30, 213, 170, 223, 82, 69, 221, 145, 103, 255, + 91, 27, 43, 139, 74, 193, 43, 34, 237, 175, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3257, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a53c9a1b33a37c4626ac63f1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3966079438885447220" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e9973be323c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13233000415296553556" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1103114580224353404" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52948858cb193b43" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11687262723913613041" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4416c1ed03192ceb213" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16057990841861965852" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15166963456600176027" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12816604642589093080" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06dc8119a2ff298585" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17835064127565263374" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "630e6a7fd93f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14531118944474233794" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc53afd5e748f19ddc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9203485304320326319" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bfcb7324f25bf1091fef" + }, + { + "_tag": "ByteArray", + "bytearray": "fe21901ec1b2" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4141513393893341910" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58b92867" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10312162411398651239" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10669568137022340790" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10576394022125296579" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8520271626435790202" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13519813882865223948" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08dbe668e265a31e332ff3" + } + } + ] + } + ] + }, + "cborHex": "9f4ca53c9a1b33a37c4626ac63f1bf1b370a583c89bf6634469e9973be323c1bb7a50fc42a5902541b0f4f0cddbcd3a47c4852948858cb193b431ba2317f868f88fef14ad4416c1ed03192ceb2131bded971977fa8881cffd8669f1bd27be0e7dffbf59b9f1bb1ddba0464252cd8bf4906dc8119a2ff2985851bf782e0546dd6f20e46630e6a7fd93f1bc9a8e7b0da55fbc249cc53afd5e748f19ddc1b7fb9591f438a7aafff4abfcb7324f25bf1091fef46fe21901ec1b2ffffbf1b39799c7d3388fad64458b928671b8f1c2913b58d5d671b9411ebb0da0afeb61b92c6e653b557dbc31b763e15e6e38b857a1bbba007186d93890c4b08dbe668e265a31e332ff3ffff", + "cborBytes": [ + 159, 76, 165, 60, 154, 27, 51, 163, 124, 70, 38, 172, 99, 241, 191, 27, 55, 10, 88, 60, 137, 191, 102, 52, 70, + 158, 153, 115, 190, 50, 60, 27, 183, 165, 15, 196, 42, 89, 2, 84, 27, 15, 79, 12, 221, 188, 211, 164, 124, 72, 82, + 148, 136, 88, 203, 25, 59, 67, 27, 162, 49, 127, 134, 143, 136, 254, 241, 74, 212, 65, 108, 30, 208, 49, 146, 206, + 178, 19, 27, 222, 217, 113, 151, 127, 168, 136, 28, 255, 216, 102, 159, 27, 210, 123, 224, 231, 223, 251, 245, + 155, 159, 27, 177, 221, 186, 4, 100, 37, 44, 216, 191, 73, 6, 220, 129, 25, 162, 255, 41, 133, 133, 27, 247, 130, + 224, 84, 109, 214, 242, 14, 70, 99, 14, 106, 127, 217, 63, 27, 201, 168, 231, 176, 218, 85, 251, 194, 73, 204, 83, + 175, 213, 231, 72, 241, 157, 220, 27, 127, 185, 89, 31, 67, 138, 122, 175, 255, 74, 191, 203, 115, 36, 242, 91, + 241, 9, 31, 239, 70, 254, 33, 144, 30, 193, 178, 255, 255, 191, 27, 57, 121, 156, 125, 51, 136, 250, 214, 68, 88, + 185, 40, 103, 27, 143, 28, 41, 19, 181, 141, 93, 103, 27, 148, 17, 235, 176, 218, 10, 254, 182, 27, 146, 198, 230, + 83, 181, 87, 219, 195, 27, 118, 62, 21, 230, 227, 139, 133, 122, 27, 187, 160, 7, 24, 109, 147, 137, 12, 75, 8, + 219, 230, 104, 226, 101, 163, 30, 51, 47, 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3258, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "56ff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17588467922499503602" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2517c7d2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "79c74f72b00bf58ccf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c94e9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7efe5d7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d400565c1a259580e3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1ee1770b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cff652981862ec5ed152caee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cdee7c986cbf37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4322634368237509606" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8273cb097ff51232817" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3257194412697448210" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b7c17" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2065944459872245269" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f4256ff1bf416ca6347ef85f2442517c7d2bf4979c74f72b00bf58ccf43c94e9e447efe5d7d49d400565c1a259580e345c1ee1770b34ccff652981862ec5ed152caee47cdee7c986cbf371b3bfd150e3cb11be64af8273cb097ff512328171b2d33e10f9d37ef12ffffa0bf432b7c171b1cabb58a585f1615ffff", + "cborBytes": [ + 159, 159, 66, 86, 255, 27, 244, 22, 202, 99, 71, 239, 133, 242, 68, 37, 23, 199, 210, 191, 73, 121, 199, 79, 114, + 176, 11, 245, 140, 207, 67, 201, 78, 158, 68, 126, 254, 93, 125, 73, 212, 0, 86, 92, 26, 37, 149, 128, 227, 69, + 193, 238, 23, 112, 179, 76, 207, 246, 82, 152, 24, 98, 236, 94, 209, 82, 202, 238, 71, 205, 238, 124, 152, 108, + 191, 55, 27, 59, 253, 21, 14, 60, 177, 27, 230, 74, 248, 39, 60, 176, 151, 255, 81, 35, 40, 23, 27, 45, 51, 225, + 15, 157, 55, 239, 18, 255, 255, 160, 191, 67, 43, 124, 23, 27, 28, 171, 181, 138, 88, 95, 22, 21, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3259, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf0501ffff", + "cborBytes": [159, 191, 5, 1, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3260, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15779010469245607504" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d74027bc680c26a1de2982" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5005405588698904159" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "15ef" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4960380124840831670" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62687951a2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10673517021350414581" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0d65306363ed7e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12705420333053599349" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0fa631988c6f35b70342" + }, + { + "_tag": "ByteArray", + "bytearray": "6801ea594c61fdf7c6" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "52accfdd979fb53b9d94" + }, + { + "_tag": "ByteArray", + "bytearray": "e0edf3c32a44" + }, + { + "_tag": "ByteArray", + "bytearray": "796d556b" + }, + { + "_tag": "ByteArray", + "bytearray": "98cbedbbfdca397b" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13377241064557946240" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15545680893972796811" + } + } + ] + }, + "cborHex": "9fd8669f1bdafa4e6bc68dde509f4bd74027bc680c26a1de29821b4576c5dcf727365f9f4215ef1b44d6cf713c0baab64562687951a21b941ff32e21ad48f5ffffff470d65306363ed7ed8669f1bb052b87a09af5e759f4a0fa631988c6f35b70342496801ea594c61fdf7c69f4a52accfdd979fb53b9d9446e0edf3c32a4444796d556b4898cbedbbfdca397bffa0d8669f1bb9a581df5fbea58080ffffff1bd7bd5a6894d3558bff", + "cborBytes": [ + 159, 216, 102, 159, 27, 218, 250, 78, 107, 198, 141, 222, 80, 159, 75, 215, 64, 39, 188, 104, 12, 38, 161, 222, + 41, 130, 27, 69, 118, 197, 220, 247, 39, 54, 95, 159, 66, 21, 239, 27, 68, 214, 207, 113, 60, 11, 170, 182, 69, + 98, 104, 121, 81, 162, 27, 148, 31, 243, 46, 33, 173, 72, 245, 255, 255, 255, 71, 13, 101, 48, 99, 99, 237, 126, + 216, 102, 159, 27, 176, 82, 184, 122, 9, 175, 94, 117, 159, 74, 15, 166, 49, 152, 140, 111, 53, 183, 3, 66, 73, + 104, 1, 234, 89, 76, 97, 253, 247, 198, 159, 74, 82, 172, 207, 221, 151, 159, 181, 59, 157, 148, 70, 224, 237, + 243, 195, 42, 68, 68, 121, 109, 85, 107, 72, 152, 203, 237, 187, 253, 202, 57, 123, 255, 160, 216, 102, 159, 27, + 185, 165, 129, 223, 95, 190, 165, 128, 128, 255, 255, 255, 27, 215, 189, 90, 104, 148, 211, 85, 139, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3261, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7691881654706926286" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14231744601365101441" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18281810991717754498" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31ab6a787b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb0494e0b23289" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a588ef87c14" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8830936387336354459" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d87983a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "caa2936257" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "495fa4e7c4497fac0bce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "186de6302f3f19b0" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8688024539609773283" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3886772109918914904" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18013326324908113635" + } + }, + { + "_tag": "ByteArray", + "bytearray": "78" + }, + { + "_tag": "ByteArray", + "bytearray": "144c88fe" + }, + { + "_tag": "ByteArray", + "bytearray": "6269aebf0a3a59" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b6abf0d9c932672cebf1bc581504fda733b811bfdb60a3c5c2b26824531ab6a787b47bb0494e0b23289ff9fbf460a588ef87c141b7a8dc9db21413a9b443d87983a45caa29362574a495fa4e7c4497fac0bce48186de6302f3f19b0ffffd8669f1b78921049a35134e380ffd8669f1b35f096a4169cc9589f9f1bf9fc30da93573ee3417844144c88fe476269aebf0a3a59ffffffff", + "cborBytes": [ + 159, 27, 106, 191, 13, 156, 147, 38, 114, 206, 191, 27, 197, 129, 80, 79, 218, 115, 59, 129, 27, 253, 182, 10, 60, + 92, 43, 38, 130, 69, 49, 171, 106, 120, 123, 71, 187, 4, 148, 224, 178, 50, 137, 255, 159, 191, 70, 10, 88, 142, + 248, 124, 20, 27, 122, 141, 201, 219, 33, 65, 58, 155, 68, 61, 135, 152, 58, 69, 202, 162, 147, 98, 87, 74, 73, + 95, 164, 231, 196, 73, 127, 172, 11, 206, 72, 24, 109, 230, 48, 47, 63, 25, 176, 255, 255, 216, 102, 159, 27, 120, + 146, 16, 73, 163, 81, 52, 227, 128, 255, 216, 102, 159, 27, 53, 240, 150, 164, 22, 156, 201, 88, 159, 159, 27, + 249, 252, 48, 218, 147, 87, 62, 227, 65, 120, 68, 20, 76, 136, 254, 71, 98, 105, 174, 191, 10, 58, 89, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3262, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1d" + } + ] + }, + "cborHex": "9f12411dff", + "cborBytes": [159, 18, 65, 29, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3263, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "df65348b345739a2ef" + }, + { + "_tag": "ByteArray", + "bytearray": "9509e2485e57fc" + } + ] + }, + "cborHex": "9f49df65348b345739a2ef479509e2485e57fcff", + "cborBytes": [159, 73, 223, 101, 52, 139, 52, 87, 57, 162, 239, 71, 149, 9, 226, 72, 94, 87, 252, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3264, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3390342257561660208" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "e8f572e991a56f5c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7962832609803961300" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14450506803910506439" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "658897213633809750" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9648883019648891254" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10052923537993809736" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a7d1d7a8e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17767948035982761511" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "580884484511976492" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2eca593d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a6" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b2f0cea5208f56b3080ff48e8f572e991a56f5cd8669f1b6e81aa11d94303d49f1bc88a8360477377c79f1b0924df865a234d561b85e7b7fc017879761b8b8328b1f448bf4845a7d1d7a8e81bf6946e99a05a1e27ffffffd8669f1b080fb75c6adf4c2c9f442eca593d9f41a6ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 47, 12, 234, 82, 8, 245, 107, 48, 128, 255, 72, 232, 245, 114, 233, 145, 165, 111, 92, + 216, 102, 159, 27, 110, 129, 170, 17, 217, 67, 3, 212, 159, 27, 200, 138, 131, 96, 71, 115, 119, 199, 159, 27, 9, + 36, 223, 134, 90, 35, 77, 86, 27, 133, 231, 183, 252, 1, 120, 121, 118, 27, 139, 131, 40, 177, 244, 72, 191, 72, + 69, 167, 209, 215, 168, 232, 27, 246, 148, 110, 153, 160, 90, 30, 39, 255, 255, 255, 216, 102, 159, 27, 8, 15, + 183, 92, 106, 223, 76, 44, 159, 68, 46, 202, 89, 61, 159, 65, 166, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3265, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ec6eca4ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2044951eb250c134601133f8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8311bec3c5eafde6f272" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16957152973849434991" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17168629724184158339" + } + }, + { + "_tag": "ByteArray", + "bytearray": "57c110d6c130c00e" + }, + { + "_tag": "ByteArray", + "bytearray": "5098f01262" + }, + { + "_tag": "ByteArray", + "bytearray": "00219bd38704a6f9ea08" + }, + { + "_tag": "ByteArray", + "bytearray": "49623e0bca4959538b" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf451ec6eca4ad4c2044951eb250c134601133f84a8311bec3c5eafde6f2721beb53e8c970411b6fff9f1bee4339c55635a0834857c110d6c130c00e455098f012624a00219bd38704a6f9ea084949623e0bca4959538bffffff", + "cborBytes": [ + 159, 159, 191, 69, 30, 198, 236, 164, 173, 76, 32, 68, 149, 30, 178, 80, 193, 52, 96, 17, 51, 248, 74, 131, 17, + 190, 195, 197, 234, 253, 230, 242, 114, 27, 235, 83, 232, 201, 112, 65, 27, 111, 255, 159, 27, 238, 67, 57, 197, + 86, 53, 160, 131, 72, 87, 193, 16, 214, 193, 48, 192, 14, 69, 80, 152, 240, 18, 98, 74, 0, 33, 155, 211, 135, 4, + 166, 249, 234, 8, 73, 73, 98, 62, 11, 202, 73, 89, 83, 139, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3266, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18122759909479835698" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d0dc012c3e3e01c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4a1cf93bb6e0db1255f3e" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3c822789192201d4bccad1" + }, + { + "_tag": "ByteArray", + "bytearray": "15cf2784195fe75772" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8948470364153454683" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a507" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "748708272895610550" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ca2ee9e148" + } + ] + } + ] + } + ] + }, + "cborHex": "9f111bfb80fa1e823c6832bf483d0dc012c3e3e01c4bc4a1cf93bb6e0db1255f3eff9f4b3c822789192201d4bccad14915cf2784195fe757729f1b7c2f5a629a7a205bff42a507d8669f1b0a63f2351656ceb69f45ca2ee9e148ffffffff", + "cborBytes": [ + 159, 17, 27, 251, 128, 250, 30, 130, 60, 104, 50, 191, 72, 61, 13, 192, 18, 195, 227, 224, 28, 75, 196, 161, 207, + 147, 187, 110, 13, 177, 37, 95, 62, 255, 159, 75, 60, 130, 39, 137, 25, 34, 1, 212, 188, 202, 209, 73, 21, 207, + 39, 132, 25, 95, 231, 87, 114, 159, 27, 124, 47, 90, 98, 154, 122, 32, 91, 255, 66, 165, 7, 216, 102, 159, 27, 10, + 99, 242, 53, 22, 86, 206, 182, 159, 69, 202, 46, 233, 225, 72, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3267, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02320704f8c652041d46" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + "cborHex": "9f4a02320704f8c652041d460cff", + "cborBytes": [159, 74, 2, 50, 7, 4, 248, 198, 82, 4, 29, 70, 12, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3268, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "825c51af" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "399943239609270260" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17793680928915308420" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17713424524450252936" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf44825c51af1b058ce241e73abff4ff9f1bf6efda87a6a3bf849f1bf5d2b9c1578cc888ffffff", + "cborBytes": [ + 159, 191, 68, 130, 92, 81, 175, 27, 5, 140, 226, 65, 231, 58, 191, 244, 255, 159, 27, 246, 239, 218, 135, 166, + 163, 191, 132, 159, 27, 245, 210, 185, 193, 87, 140, 200, 136, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3269, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3752785287588869700" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17692607358967524937" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15597072605981365103" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5868326379974679438" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "64c19a" + }, + { + "_tag": "ByteArray", + "bytearray": "d645cd9c98" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17713528500889868537" + } + } + ] + }, + "cborHex": "9fd8669f1b34149256010bf6449f9f1bf588c4a74db8ae491bd873eee5f77ed36fffd8669f1b51707bc03871db8e9f4364c19a45d645cd9c98ffffffff801bf5d318523e4c58f9ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 52, 20, 146, 86, 1, 11, 246, 68, 159, 159, 27, 245, 136, 196, 167, 77, 184, 174, 73, 27, + 216, 115, 238, 229, 247, 126, 211, 111, 255, 216, 102, 159, 27, 81, 112, 123, 192, 56, 113, 219, 142, 159, 67, + 100, 193, 154, 69, 214, 69, 205, 156, 152, 255, 255, 255, 255, 128, 27, 245, 211, 24, 82, 62, 76, 88, 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3270, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2100647537372323871" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ed315" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9e7e" + } + ] + }, + "cborHex": "9f9fbf1b1d26ffce3760601f432ed315ffff429e7eff", + "cborBytes": [159, 159, 191, 27, 29, 38, 255, 206, 55, 96, 96, 31, 67, 46, 211, 21, 255, 255, 66, 158, 126, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3271, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d406" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27d3397de89702ff6c" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f5bf7b7085efe242558a0ca1" + } + ] + }, + "cborHex": "9fbf42d4064927d3397de89702ff6cff4cf5bf7b7085efe242558a0ca1ff", + "cborBytes": [ + 159, 191, 66, 212, 6, 73, 39, 211, 57, 125, 232, 151, 2, 255, 108, 255, 76, 245, 191, 123, 112, 133, 239, 226, 66, + 85, 138, 12, 161, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3272, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14692454012700734009" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "476494734748635108" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bd79df1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b685f1e54a9a6fab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bcbe61514a1ca32399fbf1b069cd96fca094fe4443bd79df11bfffffffffffffff148b685f1e54a9a6fab1bfffffffffffffff81bfffffffffffffff6ff801bffffffffffffffebffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 203, 230, 21, 20, 161, 202, 50, 57, 159, 191, 27, 6, 156, 217, 111, 202, 9, 79, 228, 68, + 59, 215, 157, 241, 27, 255, 255, 255, 255, 255, 255, 255, 241, 72, 182, 133, 241, 229, 74, 154, 111, 171, 27, 255, + 255, 255, 255, 255, 255, 255, 248, 27, 255, 255, 255, 255, 255, 255, 255, 246, 255, 128, 27, 255, 255, 255, 255, + 255, 255, 255, 235, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3273, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6075863325896555356" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06e53fab14ab637c28653789" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23c02c69" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f47bd34" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a4a67233f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "884463247332200022" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4d820a843" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1234080466233896052" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d391f184f58c072284c37d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3746926832312383550" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4243505492993985192" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b5451cd80ebe33b5c9fbf4c06e53fab14ab637c286537894423c02c69440f47bd34453a4a67233f41491b0c463ea32a1fce5645c4d820a8431b112055a5461eac744bd391f184f58c072284c37d1b33ffc21a175bf83e41e81b3ae3f5c348534aa8ffffff", + "cborBytes": [ + 159, 27, 84, 81, 205, 128, 235, 227, 59, 92, 159, 191, 76, 6, 229, 63, 171, 20, 171, 99, 124, 40, 101, 55, 137, + 68, 35, 192, 44, 105, 68, 15, 71, 189, 52, 69, 58, 74, 103, 35, 63, 65, 73, 27, 12, 70, 62, 163, 42, 31, 206, 86, + 69, 196, 216, 32, 168, 67, 27, 17, 32, 85, 165, 70, 30, 172, 116, 75, 211, 145, 241, 132, 245, 140, 7, 34, 132, + 195, 125, 27, 51, 255, 194, 26, 23, 91, 248, 62, 65, 232, 27, 58, 227, 245, 195, 72, 83, 74, 168, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3274, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18281320037452936279" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "16618c8cf4dc" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4fb0fcda59393ce2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e020d15dadbe3522baaf10" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9a92071f95b9044" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42e51ce303b3f5722f" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2320320002202218831" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "146c5722f3834fa3286e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10756083714716850478" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28429988a021" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "596c30" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8906995365761681978" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f1b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14324978402397238878" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16550329738017819054" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9aecb0e3ce" + }, + { + "_tag": "ByteArray", + "bytearray": "da6734f0" + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1bfdb44bb7299cf45780ff4616618c8cf4dca0bf484fb0fcda59393ce24be020d15dadbe3522baaf1048a9a92071f95b90444942e51ce303b3f5722fffffd8669f1b20336ebf987f314f9fbf4a146c5722f3834fa3286e1b954549267e0fd92e4628429988a02143596c3041781b7b9c011808468a3a428f1b1bc6cc8bf5c207b65eff9f1be5ae95359622c9aeff459aecb0e3ce44da6734f0ffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 253, 180, 75, 183, 41, 156, 244, 87, 128, 255, 70, 22, 97, 140, 140, 244, 220, 160, + 191, 72, 79, 176, 252, 218, 89, 57, 60, 226, 75, 224, 32, 209, 93, 173, 190, 53, 34, 186, 175, 16, 72, 169, 169, + 32, 113, 249, 91, 144, 68, 73, 66, 229, 28, 227, 3, 179, 245, 114, 47, 255, 255, 216, 102, 159, 27, 32, 51, 110, + 191, 152, 127, 49, 79, 159, 191, 74, 20, 108, 87, 34, 243, 131, 79, 163, 40, 110, 27, 149, 69, 73, 38, 126, 15, + 217, 46, 70, 40, 66, 153, 136, 160, 33, 67, 89, 108, 48, 65, 120, 27, 123, 156, 1, 24, 8, 70, 138, 58, 66, 143, + 27, 27, 198, 204, 139, 245, 194, 7, 182, 94, 255, 159, 27, 229, 174, 149, 53, 150, 34, 201, 174, 255, 69, 154, + 236, 176, 227, 206, 68, 218, 103, 52, 240, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3275, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15986540411335133933" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4145168192761461352" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec70bc8e93e4672b6469f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12310748392936333329" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17772207166417579820" + } + } + } + ] + } + ] + }, + "cborHex": "9f1bdddb99cdc50ecaedbf1b398698825fcb7a684bec70bc8e93e4672b6469f21baad89070302e60111bf6a39041b4f8af2cffff", + "cborBytes": [ + 159, 27, 221, 219, 153, 205, 197, 14, 202, 237, 191, 27, 57, 134, 152, 130, 95, 203, 122, 104, 75, 236, 112, 188, + 142, 147, 228, 103, 43, 100, 105, 242, 27, 170, 216, 144, 112, 48, 46, 96, 17, 27, 246, 163, 144, 65, 180, 248, + 175, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3276, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9206063082665425655" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15190540165842148189" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7646121763554748289" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffffc9fd8669f1b7fc281990e1c3af780ffd8669f1bffffffffffffffff80ffbf1bd2cfa3cc43531b5d1b6a1c7b3baa106781ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 216, 102, 159, 27, 127, 194, 129, 153, 14, + 28, 58, 247, 128, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 128, 255, 191, 27, 210, 207, + 163, 204, 67, 83, 27, 93, 27, 106, 28, 123, 59, 170, 16, 103, 129, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3277, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16504088680373035204" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "691326599857060609" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10370837361585157139" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1730911426844818438" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11269968569213702467" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16344775082358826117" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "496696354499885215" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5d9ed920b2" + }, + { + "_tag": "ByteArray", + "bytearray": "4bda2408ded6ef88ef" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ee5786c3a7d7907d0033f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5943" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2588383454690015542" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12697345983568562811" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4183423780296974007" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16093611404290732495" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18257767549860534159" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12344903516487161523" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8519027358843770308" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12993093285666069708" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8846006941666727207" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ea9e34341f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15642423015736009964" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fab565e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11151233247324280713" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7808329581712408685" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "66" + }, + { + "_tag": "ByteArray", + "bytearray": "fd255a69d995f7e444f6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14713209929954801408" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5d4df7428fe3c4ba8d34" + } + ] + } + ] + }, + "cborHex": "9f9f1be50a4d365f2e20c4bf1b099815e138423b011b8fec9da220a1f4131b18056ec59ebffc061b9c66f8b3edccd1431be2d44e56cda764854104ffd8669f1b06e49eb3eb32789f9f455d9ed920b2494bda2408ded6ef88efffffbf4b5ee5786c3a7d7907d0033f425943ffd8669f1b23ebc909c74bf93680ffffa0d8669f1bb03608e60cd64a7b9fd8669f1b3a0e81c37185deb79f1bdf57fe4df9ecb1cf1bfd609eda5117578f1bab51e85796b016b3ffffffffd8669f1b7639aa3f43b795c49fd8669f1bb450bd80c1a39ccc9f1b7ac35471feaf5527ffffbf465ea9e34341f61bd9150cdb0f56e4ec44fab565e01b9ac1238e824a1789ffd8669f1b6c5cc2625f24806d9f41664afd255a69d995f7e444f61bcc2fd27a34b4b700ffff4a5d4df7428fe3c4ba8d34ffffff", + "cborBytes": [ + 159, 159, 27, 229, 10, 77, 54, 95, 46, 32, 196, 191, 27, 9, 152, 21, 225, 56, 66, 59, 1, 27, 143, 236, 157, 162, + 32, 161, 244, 19, 27, 24, 5, 110, 197, 158, 191, 252, 6, 27, 156, 102, 248, 179, 237, 204, 209, 67, 27, 226, 212, + 78, 86, 205, 167, 100, 133, 65, 4, 255, 216, 102, 159, 27, 6, 228, 158, 179, 235, 50, 120, 159, 159, 69, 93, 158, + 217, 32, 178, 73, 75, 218, 36, 8, 222, 214, 239, 136, 239, 255, 255, 191, 75, 94, 229, 120, 108, 58, 125, 121, 7, + 208, 3, 63, 66, 89, 67, 255, 216, 102, 159, 27, 35, 235, 201, 9, 199, 75, 249, 54, 128, 255, 255, 160, 216, 102, + 159, 27, 176, 54, 8, 230, 12, 214, 74, 123, 159, 216, 102, 159, 27, 58, 14, 129, 195, 113, 133, 222, 183, 159, 27, + 223, 87, 254, 77, 249, 236, 177, 207, 27, 253, 96, 158, 218, 81, 23, 87, 143, 27, 171, 81, 232, 87, 150, 176, 22, + 179, 255, 255, 255, 255, 216, 102, 159, 27, 118, 57, 170, 63, 67, 183, 149, 196, 159, 216, 102, 159, 27, 180, 80, + 189, 128, 193, 163, 156, 204, 159, 27, 122, 195, 84, 113, 254, 175, 85, 39, 255, 255, 191, 70, 94, 169, 227, 67, + 65, 246, 27, 217, 21, 12, 219, 15, 86, 228, 236, 68, 250, 181, 101, 224, 27, 154, 193, 35, 142, 130, 74, 23, 137, + 255, 216, 102, 159, 27, 108, 92, 194, 98, 95, 36, 128, 109, 159, 65, 102, 74, 253, 37, 90, 105, 217, 149, 247, + 228, 68, 246, 27, 204, 47, 210, 122, 52, 180, 183, 0, 255, 255, 74, 93, 77, 247, 66, 143, 227, 196, 186, 141, 52, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3278, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3235398970398861555" + } + } + ] + }, + "cborHex": "9f1b2ce67238c149e8f3ff", + "cborBytes": [159, 27, 44, 230, 114, 56, 193, 73, 232, 243, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3279, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "823d358f4e3305" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9636693352087451401" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f90f29c519eccdfe" + }, + { + "_tag": "ByteArray", + "bytearray": "17d5" + }, + { + "_tag": "ByteArray", + "bytearray": "a7ce99" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "59042b3c815ff6cd1359" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7826972827136161877" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8482329223764938464" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f47823d358f4e3305a01bffffffffffffffecff9f809f1b85bc698bdc8a770948f90f29c519eccdfe4217d543a7ce99ff9f4a59042b3c815ff6cd13591b6c9efe513415f8551b75b7497cda6c8ee0ffffff", + "cborBytes": [ + 159, 159, 71, 130, 61, 53, 143, 78, 51, 5, 160, 27, 255, 255, 255, 255, 255, 255, 255, 236, 255, 159, 128, 159, + 27, 133, 188, 105, 139, 220, 138, 119, 9, 72, 249, 15, 41, 197, 25, 236, 205, 254, 66, 23, 213, 67, 167, 206, 153, + 255, 159, 74, 89, 4, 43, 60, 129, 95, 246, 205, 19, 89, 27, 108, 158, 254, 81, 52, 21, 248, 85, 27, 117, 183, 73, + 124, 218, 108, 142, 224, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3280, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10470409167045703332" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10559222423005202434" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7912856825035868849" + } + } + ] + }, + "cborHex": "9f1b914e5da9aec0b6a41b9289e4d93b908802801b6dd01d5bb6c9cab1ff", + "cborBytes": [ + 159, 27, 145, 78, 93, 169, 174, 192, 182, 164, 27, 146, 137, 228, 217, 59, 144, 136, 2, 128, 27, 109, 208, 29, 91, + 182, 201, 202, 177, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3281, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1146edaa6f227bfbc94c3f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15577653903384183449" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17249205437429281425" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14358294543899692079" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5099365223709330020" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13858041527669386721" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16711420592692332865" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17789829394733769626" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8f44f473934404e3ce1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b19e829dc57e794036ba731d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10572078512062398904" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5bfa1ee1bb7c7c607232c1a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17883873939912249351" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dd651f960cac7747de84bf" + }, + { + "_tag": "ByteArray", + "bytearray": "86dc6511411a40ed2257" + } + ] + } + ] + }, + "cborHex": "9f9f9f4b1146edaa6f227bfbc94c3f1bd82ef1b0f1310299ffffbf1bef617cf483b572911bc742e8d06d920c2fff1b46c495a7432cca64bf1bc051a758ab586de11be7eae47cf79309411bf6e22b9477e8a39a4af8f44f473934404e3ce14cb19e829dc57e794036ba731d1b92b79164b90501b84ce5bfa1ee1bb7c7c607232c1a1bf83048987455d007ff9f4bdd651f960cac7747de84bf4a86dc6511411a40ed2257ffff", + "cborBytes": [ + 159, 159, 159, 75, 17, 70, 237, 170, 111, 34, 123, 251, 201, 76, 63, 27, 216, 46, 241, 176, 241, 49, 2, 153, 255, + 255, 191, 27, 239, 97, 124, 244, 131, 181, 114, 145, 27, 199, 66, 232, 208, 109, 146, 12, 47, 255, 27, 70, 196, + 149, 167, 67, 44, 202, 100, 191, 27, 192, 81, 167, 88, 171, 88, 109, 225, 27, 231, 234, 228, 124, 247, 147, 9, 65, + 27, 246, 226, 43, 148, 119, 232, 163, 154, 74, 248, 244, 79, 71, 57, 52, 64, 78, 60, 225, 76, 177, 158, 130, 157, + 197, 126, 121, 64, 54, 186, 115, 29, 27, 146, 183, 145, 100, 185, 5, 1, 184, 76, 229, 191, 161, 238, 27, 183, 199, + 198, 7, 35, 44, 26, 27, 248, 48, 72, 152, 116, 85, 208, 7, 255, 159, 75, 221, 101, 31, 150, 12, 172, 119, 71, 222, + 132, 191, 74, 134, 220, 101, 17, 65, 26, 64, 237, 34, 87, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3282, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6855632851892228517" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8cdc02c6045f95cb029ff0fc" + }, + { + "_tag": "ByteArray", + "bytearray": "2262759897266cc704" + }, + { + "_tag": "ByteArray", + "bytearray": "ff4c2758" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7451786496714110139" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17392912873814964832" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4296244451025682071" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5196982056581316808" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0361a7de" + }, + { + "_tag": "ByteArray", + "bytearray": "74f7776e83de" + } + ] + } + ] + }, + "cborHex": "9fd905009fd8669f1b5f2419c18f88d1a59f4c8cdc02c6045f95cb029ff0fc492262759897266cc70444ff4c27581b676a105666b274bb417fffffff9fd8669f1bf1600a1b6d0f3a6080ffa0ff1bfffffffffffffffe80d8669f1b3b9f5390d3a0fe979fbf41f31b481f63a54a9bc0c8ff09440361a7de4674f7776e83deffffff", + "cborBytes": [ + 159, 217, 5, 0, 159, 216, 102, 159, 27, 95, 36, 25, 193, 143, 136, 209, 165, 159, 76, 140, 220, 2, 198, 4, 95, + 149, 203, 2, 159, 240, 252, 73, 34, 98, 117, 152, 151, 38, 108, 199, 4, 68, 255, 76, 39, 88, 27, 103, 106, 16, 86, + 102, 178, 116, 187, 65, 127, 255, 255, 255, 159, 216, 102, 159, 27, 241, 96, 10, 27, 109, 15, 58, 96, 128, 255, + 160, 255, 27, 255, 255, 255, 255, 255, 255, 255, 254, 128, 216, 102, 159, 27, 59, 159, 83, 144, 211, 160, 254, + 151, 159, 191, 65, 243, 27, 72, 31, 99, 165, 74, 155, 192, 200, 255, 9, 68, 3, 97, 167, 222, 70, 116, 247, 119, + 110, 131, 222, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3283, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17214673190936233002" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14247552525130068058" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "80e255fbf3ed7cb88c" + }, + { + "_tag": "ByteArray", + "bytearray": "a5f019" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5577400157173536011" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a5550c45fc7cda49e0036054" + }, + { + "_tag": "ByteArray", + "bytearray": "6001d452acc91e4752b2a1" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7884666723183185978" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93bfea90a794" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10297037074576824419" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29100877e0" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7531515062427979363" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ab5d82" + }, + { + "_tag": "ByteArray", + "bytearray": "26d4d4626ebab63202a5db9a" + } + ] + } + ] + }, + "cborHex": "9f41be1beee6ce0f5631c42a9fd8669f1bc5b97988eb18f05a9f4980e255fbf3ed7cb88c43a5f0191b4d66e7e48289550b4ca5550c45fc7cda49e00360544b6001d452acc91e4752b2a1ffffbf1b6d6bf69c27ad503a4693bfea90a7941b8ee66ca9cd2dd8634529100877e0ff1b6885510bac860e6343ab5d824c26d4d4626ebab63202a5db9affff", + "cborBytes": [ + 159, 65, 190, 27, 238, 230, 206, 15, 86, 49, 196, 42, 159, 216, 102, 159, 27, 197, 185, 121, 136, 235, 24, 240, + 90, 159, 73, 128, 226, 85, 251, 243, 237, 124, 184, 140, 67, 165, 240, 25, 27, 77, 102, 231, 228, 130, 137, 85, + 11, 76, 165, 85, 12, 69, 252, 124, 218, 73, 224, 3, 96, 84, 75, 96, 1, 212, 82, 172, 201, 30, 71, 82, 178, 161, + 255, 255, 191, 27, 109, 107, 246, 156, 39, 173, 80, 58, 70, 147, 191, 234, 144, 167, 148, 27, 142, 230, 108, 169, + 205, 45, 216, 99, 69, 41, 16, 8, 119, 224, 255, 27, 104, 133, 81, 11, 172, 134, 14, 99, 67, 171, 93, 130, 76, 38, + 212, 212, 98, 110, 186, 182, 50, 2, 165, 219, 154, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3284, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11008013909309594160" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6863398035305588788" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69990d09027f9555b052" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14723818321012811142" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11863281113908529836" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1164706555011563111" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "881701238314957627" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7497559312240117946" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d5b6d3fab5eaf045f5432" + }, + { + "_tag": "ByteArray", + "bytearray": "c5f216e405d97aebae" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15182491813812937435" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5567919234890935159" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4d4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b7f6747cf218c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1660786854039622181" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b98c45253daf51a309fbf1b5f3fb0263680e8344a69990d09027f9555b0521bcc5582c0b95b65861ba4a2d751991e4aacff9f1b1029de70df087e671b0c3c6e9ad3c8fb3b1b680cae78807e88ba4b5d5b6d3fab5eaf045f543249c5f216e405d97aebaeffffff1bd2b30bdd4798a2dbd8669f1b4d45390b45bd2b779fbf411c42e4d4475b7f6747cf218c1b170c4cd832ab9225ffa0ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 152, 196, 82, 83, 218, 245, 26, 48, 159, 191, 27, 95, 63, 176, 38, 54, 128, 232, 52, 74, + 105, 153, 13, 9, 2, 127, 149, 85, 176, 82, 27, 204, 85, 130, 192, 185, 91, 101, 134, 27, 164, 162, 215, 81, 153, + 30, 74, 172, 255, 159, 27, 16, 41, 222, 112, 223, 8, 126, 103, 27, 12, 60, 110, 154, 211, 200, 251, 59, 27, 104, + 12, 174, 120, 128, 126, 136, 186, 75, 93, 91, 109, 63, 171, 94, 175, 4, 95, 84, 50, 73, 197, 242, 22, 228, 5, 217, + 122, 235, 174, 255, 255, 255, 27, 210, 179, 11, 221, 71, 152, 162, 219, 216, 102, 159, 27, 77, 69, 57, 11, 69, + 189, 43, 119, 159, 191, 65, 28, 66, 228, 212, 71, 91, 127, 103, 71, 207, 33, 140, 27, 23, 12, 76, 216, 50, 171, + 146, 37, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3285, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ed" + } + ] + }, + "cborHex": "9fa041edff", + "cborBytes": [159, 160, 65, 237, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3286, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2ccc" + }, + { + "_tag": "ByteArray", + "bytearray": "c1d9994e0e80e161" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33710d1d43a6607c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f110d8c88c7dc06e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72ad07b3096a34" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d98f1793ba2cb7661d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17231841766948692811" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9551550819566217585" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5742385549891432467" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e429f303998f3866" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "41793ac5d1" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f793469cc516e5c83a" + } + ] + }, + "cborHex": "9f422ccc48c1d9994e0e80e161bf4833710d1d43a6607c494f110d8c88c7dc06e84772ad07b3096a3449d98f1793ba2cb7661dff9fd8669f1bef23ccc9f0b7634b9f1b848decdd3655e9711b4fb10d3bb09d701348e429f303998f3866ffff4541793ac5d1ff49f793469cc516e5c83aff", + "cborBytes": [ + 159, 66, 44, 204, 72, 193, 217, 153, 78, 14, 128, 225, 97, 191, 72, 51, 113, 13, 29, 67, 166, 96, 124, 73, 79, 17, + 13, 140, 136, 199, 220, 6, 232, 71, 114, 173, 7, 179, 9, 106, 52, 73, 217, 143, 23, 147, 186, 44, 183, 102, 29, + 255, 159, 216, 102, 159, 27, 239, 35, 204, 201, 240, 183, 99, 75, 159, 27, 132, 141, 236, 221, 54, 85, 233, 113, + 27, 79, 177, 13, 59, 176, 157, 112, 19, 72, 228, 41, 243, 3, 153, 143, 56, 102, 255, 255, 69, 65, 121, 58, 197, + 209, 255, 73, 247, 147, 70, 156, 197, 22, 229, 200, 58, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3287, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11205445434559659115" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5727561179638618303" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2456602171441750676" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8477" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1910633113268748113" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3e07bed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d6fb4aa466d22d053bc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e733b7c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8deb4cbae14be8" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b9b81bd40f4f37c6b80ffbf1b4f7c628c05ad58bf1b22179aa8c73d22944284771b1a83eeb18c7b7f5144a3e07bed4a4d6fb4aa466d22d053bc44e733b7c8478deb4cbae14be8ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 155, 129, 189, 64, 244, 243, 124, 107, 128, 255, 191, 27, 79, 124, 98, 140, 5, 173, 88, + 191, 27, 34, 23, 154, 168, 199, 61, 34, 148, 66, 132, 119, 27, 26, 131, 238, 177, 140, 123, 127, 81, 68, 163, 224, + 123, 237, 74, 77, 111, 180, 170, 70, 109, 34, 208, 83, 188, 68, 231, 51, 183, 200, 71, 141, 235, 76, 186, 225, 75, + 232, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3288, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8530275386949779576" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2636660938023242269" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15054392661870476924" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31cca5a1c0d4b63af2ceab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b7661a044e36640781b24974d274c060a1d1bd0ebf25d48097e7c1bfffffffffffffff94b31cca5a1c0d4b63af2ceab0c41ea11ffff", + "cborBytes": [ + 159, 191, 27, 118, 97, 160, 68, 227, 102, 64, 120, 27, 36, 151, 77, 39, 76, 6, 10, 29, 27, 208, 235, 242, 93, 72, + 9, 126, 124, 27, 255, 255, 255, 255, 255, 255, 255, 249, 75, 49, 204, 165, 161, 192, 212, 182, 58, 242, 206, 171, + 12, 65, 234, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3289, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7094545332168470262" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "138648456014463179" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8975120138319951015" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f19c25c" + } + } + ] + } + ] + }, + "cborHex": "9f1b6274e3641eceaef6801b01ec9409416600cbbf1b7c8e0836ad03f4a7444f19c25cffff", + "cborBytes": [ + 159, 27, 98, 116, 227, 100, 30, 206, 174, 246, 128, 27, 1, 236, 148, 9, 65, 102, 0, 203, 191, 27, 124, 142, 8, 54, + 173, 3, 244, 167, 68, 79, 25, 194, 92, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3290, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1369922404168257518" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15499054871037473013" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15286474429841497508" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11655421752788012196" + } + }, + { + "_tag": "ByteArray", + "bytearray": "63908a4e78" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bb32883117c9f7eae2e9898c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11173058388504980250" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7cb3f2739ec8f6aa9d418b6b" + }, + { + "_tag": "ByteArray", + "bytearray": "a0" + }, + { + "_tag": "ByteArray", + "bytearray": "f387d1c76a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ef116b" + }, + { + "_tag": "ByteArray", + "bytearray": "8e01dcc7" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0696aacd429064857bc0ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13639093796880324792" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5224578567698417548" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14475088089267471546" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13937072904630907373" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f7b25dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14833462415001358371" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4021500993661658992" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17092782127803611345" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13563229651592185835" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17722150101073505773" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7931416847047477673" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17789591705697407368" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14146035690393967090" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1302f12b1e4c4fee9fd8669f1bd717b449a679f0f59f1bd4247780b2cb5da41ba1c06054c24a4ca44563908a4e78ffff4cbb32883117c9f7eae2e9898cd8669f1b9b0ead682d89ab1a9f4c7cb3f2739ec8f6aa9d418b6b41a045f387d1c76affff9f43ef116b448e01dcc7ffffff9fbf4b0696aacd429064857bc0ba1bbd47cb8b954918b8ffbf1b48816e86bcc8878c1bc8e1d7ecc54684ba1bc16a6df7093f31ed440f7b25dd1bcddb0b79b34390231b37cf3dd8cf1567701bed35c2c8a6e138d11bbc3a4581ce3287eb1bf5f1b99ef6a3aded1b6e120d9995d049a91bf6e153672d5451881bc450d082f1ee19f2ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 19, 2, 241, 43, 30, 76, 79, 238, 159, 216, 102, 159, 27, 215, 23, 180, 73, 166, 121, 240, + 245, 159, 27, 212, 36, 119, 128, 178, 203, 93, 164, 27, 161, 192, 96, 84, 194, 74, 76, 164, 69, 99, 144, 138, 78, + 120, 255, 255, 76, 187, 50, 136, 49, 23, 201, 247, 234, 226, 233, 137, 140, 216, 102, 159, 27, 155, 14, 173, 104, + 45, 137, 171, 26, 159, 76, 124, 179, 242, 115, 158, 200, 246, 170, 157, 65, 139, 107, 65, 160, 69, 243, 135, 209, + 199, 106, 255, 255, 159, 67, 239, 17, 107, 68, 142, 1, 220, 199, 255, 255, 255, 159, 191, 75, 6, 150, 170, 205, + 66, 144, 100, 133, 123, 192, 186, 27, 189, 71, 203, 139, 149, 73, 24, 184, 255, 191, 27, 72, 129, 110, 134, 188, + 200, 135, 140, 27, 200, 225, 215, 236, 197, 70, 132, 186, 27, 193, 106, 109, 247, 9, 63, 49, 237, 68, 15, 123, 37, + 221, 27, 205, 219, 11, 121, 179, 67, 144, 35, 27, 55, 207, 61, 216, 207, 21, 103, 112, 27, 237, 53, 194, 200, 166, + 225, 56, 209, 27, 188, 58, 69, 129, 206, 50, 135, 235, 27, 245, 241, 185, 158, 246, 163, 173, 237, 27, 110, 18, + 13, 153, 149, 208, 73, 169, 27, 246, 225, 83, 103, 45, 84, 81, 136, 27, 196, 80, 208, 130, 241, 238, 25, 242, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3291, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c54a7bb18255365a" + } + ] + }, + "cborHex": "9f48c54a7bb18255365aff", + "cborBytes": [159, 72, 197, 74, 123, 177, 130, 85, 54, 90, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3292, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8128587482094113250" + } + } + ] + }, + "cborHex": "9f1b70ce8b3f73e811e2ff", + "cborBytes": [159, 27, 112, 206, 139, 63, 115, 232, 17, 226, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3293, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03d4dca7460505" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "054c154646023b2c2d1a70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d01a8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8d71d3b618a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd040405" + } + } + ] + } + ] + }, + "cborHex": "9fbf4703d4dca74605051bffffffffffffffef4b054c154646023b2c2d1a70438d01a846a8d71d3b618a44fd040405ffff", + "cborBytes": [ + 159, 191, 71, 3, 212, 220, 167, 70, 5, 5, 27, 255, 255, 255, 255, 255, 255, 255, 239, 75, 5, 76, 21, 70, 70, 2, + 59, 44, 45, 26, 112, 67, 141, 1, 168, 70, 168, 215, 29, 59, 97, 138, 68, 253, 4, 4, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3294, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12987002919627875407" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1586c0cb0fbef9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3807300616809791869" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11001225368079168666" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8035364770110165781" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "799a54d9afb7deb134d8f3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13721156304142919831" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2417487361292037277" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10269112337777956489" + } + } + ] + } + ] + }, + "cborHex": "9fd905029f1bb43b1a58e961644fffbf00471586c0cb0fbef91b34d63fbd3212c17d1b98ac342f6e5ff49a1b6f8359af6b1ad3154b799a54d9afb7deb134d8f31bbe6b56f5f80ce897121bffffffffffffffef1b218ca3f25aceec9d1bfffffffffffffff303ff9f1b8e8337435bd61689ffff", + "cborBytes": [ + 159, 217, 5, 2, 159, 27, 180, 59, 26, 88, 233, 97, 100, 79, 255, 191, 0, 71, 21, 134, 192, 203, 15, 190, 249, 27, + 52, 214, 63, 189, 50, 18, 193, 125, 27, 152, 172, 52, 47, 110, 95, 244, 154, 27, 111, 131, 89, 175, 107, 26, 211, + 21, 75, 121, 154, 84, 217, 175, 183, 222, 177, 52, 216, 243, 27, 190, 107, 86, 245, 248, 12, 232, 151, 18, 27, + 255, 255, 255, 255, 255, 255, 255, 239, 27, 33, 140, 163, 242, 90, 206, 236, 157, 27, 255, 255, 255, 255, 255, + 255, 255, 243, 3, 255, 159, 27, 142, 131, 55, 67, 91, 214, 22, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3295, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "07060303532beb7005" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b3f5a623db" + }, + { + "_tag": "ByteArray", + "bytearray": "c9c59696449b0d91" + }, + { + "_tag": "ByteArray", + "bytearray": "ea54802774" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2452455200387881261" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0603d3ed" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13289108253445851614" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12672725947969310420" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "519a87e3d3ca47d427a726" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16806096744342445181" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3cf3060c" + } + } + ] + } + ] + }, + "cborHex": "9f4907060303532beb70059f9f45b3f5a623db48c9c59696449b0d9145ea548027741b2208df02d6add92dff440603d3edffbf031bb86c658c3c5a09de0f101bafde911b50960ed44b519a87e3d3ca47d427a7261be93b3ff24b615c7d443cf3060cffff", + "cborBytes": [ + 159, 73, 7, 6, 3, 3, 83, 43, 235, 112, 5, 159, 159, 69, 179, 245, 166, 35, 219, 72, 201, 197, 150, 150, 68, 155, + 13, 145, 69, 234, 84, 128, 39, 116, 27, 34, 8, 223, 2, 214, 173, 217, 45, 255, 68, 6, 3, 211, 237, 255, 191, 3, + 27, 184, 108, 101, 140, 60, 90, 9, 222, 15, 16, 27, 175, 222, 145, 27, 80, 150, 14, 212, 75, 81, 154, 135, 227, + 211, 202, 71, 212, 39, 167, 38, 27, 233, 59, 63, 242, 75, 97, 92, 125, 68, 60, 243, 6, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3296, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14261536792419866281" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "978974449268711965" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7e8d13af4ba40f0591e837c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17551768775237862218" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf41bd1bc5eb2826df5996a9ff9f9f1b0d96041324d8621d4cd7e8d13af4ba40f0591e837c1bf39468b533d8834affffff", + "cborBytes": [ + 159, 191, 65, 189, 27, 197, 235, 40, 38, 223, 89, 150, 169, 255, 159, 159, 27, 13, 150, 4, 19, 36, 216, 98, 29, + 76, 215, 232, 209, 58, 244, 186, 64, 240, 89, 30, 131, 124, 27, 243, 148, 104, 181, 51, 216, 131, 74, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3297, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13285675623625619217" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2327843239549625156" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "917338283498409770" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db9e6414e3a220" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10947721605578633635" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ec388817119b9e5a1" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12349234639031274873" + } + } + ] + }, + "cborHex": "9fbf1bb8603396d34577111b204e2917ca266344ffbf1b0cbb0a4efeca0f2a47db9e6414e3a2201b97ee1ecbf86231a3493ec388817119b9e5a1ff1bab614b79a3688d79ff", + "cborBytes": [ + 159, 191, 27, 184, 96, 51, 150, 211, 69, 119, 17, 27, 32, 78, 41, 23, 202, 38, 99, 68, 255, 191, 27, 12, 187, 10, + 78, 254, 202, 15, 42, 71, 219, 158, 100, 20, 227, 162, 32, 27, 151, 238, 30, 203, 248, 98, 49, 163, 73, 62, 195, + 136, 129, 113, 25, 185, 229, 161, 255, 27, 171, 97, 75, 121, 163, 104, 141, 121, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3298, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5e83bd" + } + ] + }, + "cborHex": "9f435e83bdff", + "cborBytes": [159, 67, 94, 131, 189, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3299, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fae9" + } + ] + }, + "cborHex": "9f42fae9ff", + "cborBytes": [159, 66, 250, 233, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3300, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2813680341352061228" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17856585502904274018" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "162da1025c1fe68b98" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "17d1294c299ac8ca52" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b10b1e253473c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d6cbaa3118bbd0a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1028297601882204943" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d11da89bc4a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ded067134ee5c" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13682791090413695302" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2717085465950790318" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25e42d3bdcbf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb1719dada" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7199961489e1f4f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2257716862384794168" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfe4368424e056" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0d270764d74c4" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d96fd9fcb2c47dc940" + }, + { + "_tag": "ByteArray", + "bytearray": "2c461edba95267e05be036" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6869493372139564449" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10551222736098424485" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eb" + }, + { + "_tag": "ByteArray", + "bytearray": "19f8f0165e03417ff9" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17612997656667562075" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8645461cb644" + }, + { + "_tag": "ByteArray", + "bytearray": "aeb5" + }, + { + "_tag": "ByteArray", + "bytearray": "95a7322c7f77eddfa0eb" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13175305691865645425" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0b65c60" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "51114aadcabdb2cada93" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4679143936281195078" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b270c335ce9ca192c9fa0bf1bf7cf55e819ffcc6249162da1025c1fe68b984917d1294c299ac8ca52479b10b1e253473c488d6cbaa3118bbd0a1b0e453f3883932b0f46d11da89bc4a5477ded067134ee5cffbf1bbde30a008ffcf1461b25b506d5e65fa2ae4625e42d3bdcbf45eb1719dada487199961489e1f4f61b1f55058641daea3847bfe4368424e05647b0d270764d74c4ff49d96fd9fcb2c47dc9404b2c461edba95267e05be036ffffd8669f1b5f5557d369476da19f9f1b926d792cfb2bf6a541eb4919f8f0165e03417ff9ffd8669f1bf46df00d1375205b9f468645461cb64442aeb54a95a7322c7f77eddfa0ebffffffffbf1bb6d816b892d5817144f0b65c60ff4a51114aadcabdb2cada939f1b40efa89e6ef6b246ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 39, 12, 51, 92, 233, 202, 25, 44, 159, 160, 191, 27, 247, 207, 85, 232, 25, 255, 204, 98, + 73, 22, 45, 161, 2, 92, 31, 230, 139, 152, 73, 23, 209, 41, 76, 41, 154, 200, 202, 82, 71, 155, 16, 177, 226, 83, + 71, 60, 72, 141, 108, 186, 163, 17, 139, 189, 10, 27, 14, 69, 63, 56, 131, 147, 43, 15, 70, 209, 29, 168, 155, + 196, 165, 71, 125, 237, 6, 113, 52, 238, 92, 255, 191, 27, 189, 227, 10, 0, 143, 252, 241, 70, 27, 37, 181, 6, + 213, 230, 95, 162, 174, 70, 37, 228, 45, 59, 220, 191, 69, 235, 23, 25, 218, 218, 72, 113, 153, 150, 20, 137, 225, + 244, 246, 27, 31, 85, 5, 134, 65, 218, 234, 56, 71, 191, 228, 54, 132, 36, 224, 86, 71, 176, 210, 112, 118, 77, + 116, 196, 255, 73, 217, 111, 217, 252, 178, 196, 125, 201, 64, 75, 44, 70, 30, 219, 169, 82, 103, 224, 91, 224, + 54, 255, 255, 216, 102, 159, 27, 95, 85, 87, 211, 105, 71, 109, 161, 159, 159, 27, 146, 109, 121, 44, 251, 43, + 246, 165, 65, 235, 73, 25, 248, 240, 22, 94, 3, 65, 127, 249, 255, 216, 102, 159, 27, 244, 109, 240, 13, 19, 117, + 32, 91, 159, 70, 134, 69, 70, 28, 182, 68, 66, 174, 181, 74, 149, 167, 50, 44, 127, 119, 237, 223, 160, 235, 255, + 255, 255, 255, 191, 27, 182, 216, 22, 184, 146, 213, 129, 113, 68, 240, 182, 92, 96, 255, 74, 81, 17, 74, 173, + 202, 189, 178, 202, 218, 147, 159, 27, 64, 239, 168, 158, 110, 246, 178, 70, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3301, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7242527618740337685" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6094032456603239877" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9e2bcb8156d8257818850e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5984976139552582390" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7358" + } + ] + } + ] + }, + "cborHex": "9f1b6482a07f26f93c15d905039fd8669f1b54925a3b518985c59f4b9e2bcb8156d8257818850e1b530ee816d3386af6ffff427358ffff", + "cborBytes": [ + 159, 27, 100, 130, 160, 127, 38, 249, 60, 21, 217, 5, 3, 159, 216, 102, 159, 27, 84, 146, 90, 59, 81, 137, 133, + 197, 159, 75, 158, 43, 203, 129, 86, 216, 37, 120, 24, 133, 14, 27, 83, 14, 232, 22, 211, 56, 106, 246, 255, 255, + 66, 115, 88, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3302, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7886181466032484252" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9506377695361618918" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9358990307101468408" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52ee4abaca25a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9411359206157429626" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5511070644336965440" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14553035463395204480" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16367847324459673521" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16907626532476549545" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e1bc32647e09dfb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16999253939699185163" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35570f1f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6030792911688416776" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4fa42666af" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7738054236527374605" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "133a58" + }, + { + "_tag": "ByteArray", + "bytearray": "bcf9c51bffed1dcdc0" + } + ] + }, + "cborHex": "9fbf1b6d715842b522af9c1b83ed7025a0b9d3e61b81e1d019271b66f84752ee4abaca25a71b829bdd55a09dab7a1b4c7b418d57c9b7401bc9f6c4a60f555d801be326466bc83f27b11beaa3f4c0373bf9a9487e1bc32647e09dfb1bebe97b646a6df60b4435570f1fffd8669f1b53b1ae335f21be0880ffbf454fa42666af1b6b63175484ebb10dff43133a5849bcf9c51bffed1dcdc0ff", + "cborBytes": [ + 159, 191, 27, 109, 113, 88, 66, 181, 34, 175, 156, 27, 131, 237, 112, 37, 160, 185, 211, 230, 27, 129, 225, 208, + 25, 39, 27, 102, 248, 71, 82, 238, 74, 186, 202, 37, 167, 27, 130, 155, 221, 85, 160, 157, 171, 122, 27, 76, 123, + 65, 141, 87, 201, 183, 64, 27, 201, 246, 196, 166, 15, 85, 93, 128, 27, 227, 38, 70, 107, 200, 63, 39, 177, 27, + 234, 163, 244, 192, 55, 59, 249, 169, 72, 126, 27, 195, 38, 71, 224, 157, 251, 27, 235, 233, 123, 100, 106, 109, + 246, 11, 68, 53, 87, 15, 31, 255, 216, 102, 159, 27, 83, 177, 174, 51, 95, 33, 190, 8, 128, 255, 191, 69, 79, 164, + 38, 102, 175, 27, 107, 99, 23, 84, 132, 235, 177, 13, 255, 67, 19, 58, 88, 73, 188, 249, 197, 27, 255, 237, 29, + 205, 192, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3303, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "959b86729de47815fa226a" + }, + { + "_tag": "ByteArray", + "bytearray": "02510cb401" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9777036347208309365" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a13699fc3eae3c2ed9b7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac12d6d1736805c26f560d89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "931908010559" + } + } + ] + } + ] + }, + "cborHex": "9f4b959b86729de47815fa226a4502510cb4011b87af02c1bf6f1a75bf41144aa13699fc3eae3c2ed9b74cac12d6d1736805c26f560d8946931908010559ffff", + "cborBytes": [ + 159, 75, 149, 155, 134, 114, 157, 228, 120, 21, 250, 34, 106, 69, 2, 81, 12, 180, 1, 27, 135, 175, 2, 193, 191, + 111, 26, 117, 191, 65, 20, 74, 161, 54, 153, 252, 62, 174, 60, 46, 217, 183, 76, 172, 18, 214, 209, 115, 104, 5, + 194, 111, 86, 13, 137, 70, 147, 25, 8, 1, 5, 89, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3304, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13082368580070134745" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2941041476830543549" + } + } + ] + } + ] + }, + "cborHex": "9f80d8669f1bb58de8e903cfd3d99f1b28d0ada4102cbebdffffff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 181, 141, 232, 233, 3, 207, 211, 217, 159, 27, 40, 208, 173, 164, 16, 44, 190, 189, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3305, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17829860736172078924" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8107648994209149561" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc1ec9336ffaf3" + }, + { + "_tag": "ByteArray", + "bytearray": "3209353c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2802739017561129166" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14657605755379279497" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "154694885749213323" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bf77063df7638b74c9f019f1b708427cdd763b27947fc1ec9336ffaf3443209353c1b26e5544973dbc0ceff1bcb6a46c6731a66891b0225962dd1a6c88b41fdffffd8669f1bfffffffffffffff680ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 247, 112, 99, 223, 118, 56, 183, 76, 159, 1, 159, 27, 112, 132, 39, 205, 215, 99, 178, + 121, 71, 252, 30, 201, 51, 111, 250, 243, 68, 50, 9, 53, 60, 27, 38, 229, 84, 73, 115, 219, 192, 206, 255, 27, + 203, 106, 70, 198, 115, 26, 102, 137, 27, 2, 37, 150, 45, 209, 166, 200, 139, 65, 253, 255, 255, 216, 102, 159, + 27, 255, 255, 255, 255, 255, 255, 255, 246, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3306, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9269509553884012214" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa82" + }, + { + "_tag": "ByteArray", + "bytearray": "5d75f9719bf8382054" + }, + { + "_tag": "ByteArray", + "bytearray": "1bfae2" + }, + { + "_tag": "ByteArray", + "bytearray": "9e67fe59954b4944" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1905118601406695778" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2465e3a9" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dbeb3e62" + }, + { + "_tag": "ByteArray", + "bytearray": "ce3becf3" + }, + { + "_tag": "ByteArray", + "bytearray": "95e6028d86d65d694658539c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5102771613184864295" + } + }, + { + "_tag": "ByteArray", + "bytearray": "07f6279f" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b80a3e9d3c9589eb69f42fa82495d75f9719bf8382054431bfae2489e67fe59954b4944ffffd8669f1b1a70574633d5c9629f442465e3a9ffff9f44dbeb3e6244ce3becf34c95e6028d86d65d694658539c1b46d0afbf1dd4b0274407f6279fffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 128, 163, 233, 211, 201, 88, 158, 182, 159, 66, 250, 130, 73, 93, 117, 249, 113, 155, + 248, 56, 32, 84, 67, 27, 250, 226, 72, 158, 103, 254, 89, 149, 75, 73, 68, 255, 255, 216, 102, 159, 27, 26, 112, + 87, 70, 51, 213, 201, 98, 159, 68, 36, 101, 227, 169, 255, 255, 159, 68, 219, 235, 62, 98, 68, 206, 59, 236, 243, + 76, 149, 230, 2, 141, 134, 214, 93, 105, 70, 88, 83, 156, 27, 70, 208, 175, 191, 29, 212, 176, 39, 68, 7, 246, 39, + 159, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3307, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e141b57d343056" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f47e141b57d34305680ff", + "cborBytes": [159, 71, 225, 65, 181, 125, 52, 48, 86, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3308, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7b65052760d0c9cc6e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14965804513300327073" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e044a4d" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1ffda930ea3a" + } + ] + } + ] + }, + "cborHex": "9f9f9f497b65052760d0c9cc6e1bcfb137e9a1342aa1446e044a4dffffd87b9f461ffda930ea3affff", + "cborBytes": [ + 159, 159, 159, 73, 123, 101, 5, 39, 96, 208, 201, 204, 110, 27, 207, 177, 55, 233, 161, 52, 42, 161, 68, 110, 4, + 74, 77, 255, 255, 216, 123, 159, 70, 31, 253, 169, 48, 234, 58, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3309, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4733565857534675985" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10094148798613627671" + } + }, + { + "_tag": "ByteArray", + "bytearray": "13b3af92b5d4e95d" + }, + { + "_tag": "ByteArray", + "bytearray": "ebdb6b68adc621d2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3693026462225223666" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1205260521771157276" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "efb50f8804" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1880727309997128267" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2982470110318491389" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "248b907e46f7cc0ba5bd09" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "683ca50be0b4f4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99a5bc1d89512172b2502b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12672593131139721113" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "21" + }, + { + "_tag": "ByteArray", + "bytearray": "7dae" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6142765333993819539" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + "cborHex": "9f1b41b1011163458c119f9f1b8c159ed9eb4d23174813b3af92b5d4e95d48ebdb6b68adc621d21b334044003b0d4ff21b10b9f20f0df8c71cff9f45efb50f88041b1a19af861fc13a4b1b2963dcc376c0f6fdffbf4b248b907e46f7cc0ba5bd0947683ca50be0b4f44b99a5bc1d89512172b2502b1bafde184f7ca36799ff9f4121427daeffff101b553f7c8687490d930cff", + "cborBytes": [ + 159, 27, 65, 177, 1, 17, 99, 69, 140, 17, 159, 159, 27, 140, 21, 158, 217, 235, 77, 35, 23, 72, 19, 179, 175, 146, + 181, 212, 233, 93, 72, 235, 219, 107, 104, 173, 198, 33, 210, 27, 51, 64, 68, 0, 59, 13, 79, 242, 27, 16, 185, + 242, 15, 13, 248, 199, 28, 255, 159, 69, 239, 181, 15, 136, 4, 27, 26, 25, 175, 134, 31, 193, 58, 75, 27, 41, 99, + 220, 195, 118, 192, 246, 253, 255, 191, 75, 36, 139, 144, 126, 70, 247, 204, 11, 165, 189, 9, 71, 104, 60, 165, + 11, 224, 180, 244, 75, 153, 165, 188, 29, 137, 81, 33, 114, 178, 80, 43, 27, 175, 222, 24, 79, 124, 163, 103, 153, + 255, 159, 65, 33, 66, 125, 174, 255, 255, 16, 27, 85, 63, 124, 134, 135, 73, 13, 147, 12, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3310, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10243777049195019845" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a2d24a4be08e876e7e90" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f906" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a6f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6043445541565251004" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1406470186619882447" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5922817699308632666" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9184311375988240153" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "884efbeba3bd" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1326224265338524637" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85164f" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6272825251235077036" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f80498d45d118709cba02" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11785265891671489990" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c99bf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12714548272345453645" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11126311686801194834" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14682401356059624088" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18333194525835780952" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14747436868535701097" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2433ab" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14354075886462063945" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16522899529264681670" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7492253556519661153" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "350948117520754370" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a48d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ba48e" + } + } + ] + } + ] + }, + "cborHex": "9f809f801b8e2934f3cf917e454aa2d24a4be08e876e7e90ffbf42f90641c1ff9fbf421a6f1b53dea1b3546a3dbcffbf1b1384c92ed4a7cbcf1b523213512caffa5a1b7f753a89305baf1946884efbeba3bdffbf1b1267b1f1540193dd4385164fffbf1b570d8d54c5f79bac4b5f80498d45d118709cba021ba38dace3309b3dc6430c99bf1bb073264a04b5144d1b9a689987880fff521bcbc25e3e1da5c2981bfe6c9749ae93e3581bcca96bb25891ce69432433abffd8669f1bc733ebf7b39255499f1be54d21946d4a52c61b67f9d4e9fb82ee611b04ded174176aa6c2ffffffbf42a48d436ba48effff", + "cborBytes": [ + 159, 128, 159, 128, 27, 142, 41, 52, 243, 207, 145, 126, 69, 74, 162, 210, 74, 75, 224, 142, 135, 110, 126, 144, + 255, 191, 66, 249, 6, 65, 193, 255, 159, 191, 66, 26, 111, 27, 83, 222, 161, 179, 84, 106, 61, 188, 255, 191, 27, + 19, 132, 201, 46, 212, 167, 203, 207, 27, 82, 50, 19, 81, 44, 175, 250, 90, 27, 127, 117, 58, 137, 48, 91, 175, + 25, 70, 136, 78, 251, 235, 163, 189, 255, 191, 27, 18, 103, 177, 241, 84, 1, 147, 221, 67, 133, 22, 79, 255, 191, + 27, 87, 13, 141, 84, 197, 247, 155, 172, 75, 95, 128, 73, 141, 69, 209, 24, 112, 156, 186, 2, 27, 163, 141, 172, + 227, 48, 155, 61, 198, 67, 12, 153, 191, 27, 176, 115, 38, 74, 4, 181, 20, 77, 27, 154, 104, 153, 135, 136, 15, + 255, 82, 27, 203, 194, 94, 62, 29, 165, 194, 152, 27, 254, 108, 151, 73, 174, 147, 227, 88, 27, 204, 169, 107, + 178, 88, 145, 206, 105, 67, 36, 51, 171, 255, 216, 102, 159, 27, 199, 51, 235, 247, 179, 146, 85, 73, 159, 27, + 229, 77, 33, 148, 109, 74, 82, 198, 27, 103, 249, 212, 233, 251, 130, 238, 97, 27, 4, 222, 209, 116, 23, 106, 166, + 194, 255, 255, 255, 191, 66, 164, 141, 67, 107, 164, 142, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3311, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5e79b135e836" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9358004472615704660" + } + } + ] + }, + "cborHex": "9f465e79b135e8361b81de4f7cacc69854ff", + "cborBytes": [159, 70, 94, 121, 177, 53, 232, 54, 27, 129, 222, 79, 124, 172, 198, 152, 84, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3312, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14559454129347660963" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9517242645611261224" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4969411568124169207" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c93ff2743cdef72d70e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15983060566900177846" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d3652bf27269" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2748319967929894342" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15653423494645021500" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "af774baab2b49921d2ef69" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3535989342979412576" + } + } + ] + }, + "cborHex": "9f1bca0d92642f5c8ca39f1b841409c2fcdbad289f1b44f6e57dfcc20bf74a1c93ff2743cdef72d70eff9f1bddcf3ce759a37bb646d3652bf272691b2623fe73199305c61bd93c21bba511fb3cff4baf774baab2b49921d2ef69ff1b31125b92addad260ff", + "cborBytes": [ + 159, 27, 202, 13, 146, 100, 47, 92, 140, 163, 159, 27, 132, 20, 9, 194, 252, 219, 173, 40, 159, 27, 68, 246, 229, + 125, 252, 194, 11, 247, 74, 28, 147, 255, 39, 67, 205, 239, 114, 215, 14, 255, 159, 27, 221, 207, 60, 231, 89, + 163, 123, 182, 70, 211, 101, 43, 242, 114, 105, 27, 38, 35, 254, 115, 25, 147, 5, 198, 27, 217, 60, 33, 187, 165, + 17, 251, 60, 255, 75, 175, 119, 75, 170, 178, 180, 153, 33, 210, 239, 105, 255, 27, 49, 18, 91, 146, 173, 218, + 210, 96, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3313, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "739b7dfdf204e1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "055a7169" + } + } + ] + } + ] + }, + "cborHex": "9f47739b7dfdf204e1bf0644055a7169ffff", + "cborBytes": [159, 71, 115, 155, 125, 253, 242, 4, 225, 191, 6, 68, 5, 90, 113, 105, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3314, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1405452607527525664" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11460002837425582081" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7086917374616478130" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf0d1b13812bb33c531d201b9f0a1bdce9b870011b6259c9cdda8f21b2ffff", + "cborBytes": [ + 159, 191, 13, 27, 19, 129, 43, 179, 60, 83, 29, 32, 27, 159, 10, 27, 220, 233, 184, 112, 1, 27, 98, 89, 201, 205, + 218, 143, 33, 178, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3315, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0691" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ce378b48f88f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f3a142f333936bac57557" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "69cd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2d10eb3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4555839848951697017" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "62" + } + ] + }, + "cborHex": "9fbf41fb420691ffbf477ce378b48f88f74b9f3a142f333936bac57557ffd8669f1bffffffffffffffff9f4269cd0cffffbf44b2d10eb31b3f3998346a55ce79ff4162ff", + "cborBytes": [ + 159, 191, 65, 251, 66, 6, 145, 255, 191, 71, 124, 227, 120, 180, 143, 136, 247, 75, 159, 58, 20, 47, 51, 57, 54, + 186, 197, 117, 87, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 66, 105, 205, 12, 255, + 255, 191, 68, 178, 209, 14, 179, 27, 63, 57, 152, 52, 106, 85, 206, 121, 255, 65, 98, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3316, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d5246f9ba8ed4c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13513597603727724473" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8299018166035547079" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1e145782001ac2032e5147" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3685395377577608837" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17570136434930592619" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "213c8fcb" + }, + { + "_tag": "ByteArray", + "bytearray": "65baa00a3638189adb9865" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4766036250899397788" + } + }, + { + "_tag": "ByteArray", + "bytearray": "549f2d" + } + ] + } + ] + } + ] + }, + "cborHex": "9f47d5246f9ba8ed4cd8669f1bbb89f16c27c2cfb99fd8669f1b732c090d4b1003c79f4b1e145782001ac2032e5147ffffbf1b33252791e16146851bf3d5a9ff3b2fab6bff9f44213c8fcb4b65baa00a3638189adb98651b42245cb7f97e3c9c43549f2dffffffff", + "cborBytes": [ + 159, 71, 213, 36, 111, 155, 168, 237, 76, 216, 102, 159, 27, 187, 137, 241, 108, 39, 194, 207, 185, 159, 216, 102, + 159, 27, 115, 44, 9, 13, 75, 16, 3, 199, 159, 75, 30, 20, 87, 130, 0, 26, 194, 3, 46, 81, 71, 255, 255, 191, 27, + 51, 37, 39, 145, 225, 97, 70, 133, 27, 243, 213, 169, 255, 59, 47, 171, 107, 255, 159, 68, 33, 60, 143, 203, 75, + 101, 186, 160, 10, 54, 56, 24, 154, 219, 152, 101, 27, 66, 36, 92, 183, 249, 126, 60, 156, 67, 84, 159, 45, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3317, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17133362276035726143" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3743379190672331002" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10804023282131266319" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7296330014701636757" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13022341685806928498" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ae590" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16793030842285725199" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17154730614519742186" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "46ed12672365d5" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f1bedc5ee36af300b3fbf1b33f3278a679d10fa41ec1b95ef99eed47beb0f1b6541c57da24fcc951bb4b8a6c496489272438ae5901be90cd493e89e960f1bee11d89aaff7beeaff4746ed12672365d5a0ff", + "cborBytes": [ + 159, 27, 237, 197, 238, 54, 175, 48, 11, 63, 191, 27, 51, 243, 39, 138, 103, 157, 16, 250, 65, 236, 27, 149, 239, + 153, 238, 212, 123, 235, 15, 27, 101, 65, 197, 125, 162, 79, 204, 149, 27, 180, 184, 166, 196, 150, 72, 146, 114, + 67, 138, 229, 144, 27, 233, 12, 212, 147, 232, 158, 150, 15, 27, 238, 17, 216, 154, 175, 247, 190, 234, 255, 71, + 70, 237, 18, 103, 35, 101, 213, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3318, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17621142589093233685" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3282b1fa5a67fb22cd63ef74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b807417f256c5826592" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58df6e2ad08aee039e5f3162" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9074506604267738464" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17507539215072324738" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf48adfd2ef68c4159fbf4c3282b1fa5a67fb22cd63ef744a5b807417f256c58265924c58df6e2ad08aee039e5f31621b7def1fad83509560ffd8669f1bf2f746283d9b6c8280ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 244, 138, 223, 210, 239, 104, 196, 21, 159, 191, 76, 50, 130, 177, 250, 90, 103, 251, 34, + 205, 99, 239, 116, 74, 91, 128, 116, 23, 242, 86, 197, 130, 101, 146, 76, 88, 223, 110, 42, 208, 138, 238, 3, 158, + 95, 49, 98, 27, 125, 239, 31, 173, 131, 80, 149, 96, 255, 216, 102, 159, 27, 242, 247, 70, 40, 61, 155, 108, 130, + 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3319, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2277889979734333924" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f1b1f9cb0de277c99e4a0ff", + "cborBytes": [159, 27, 31, 156, 176, 222, 39, 124, 153, 228, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3320, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18044249009829186680" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10689155562013996223" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8807383497427749836" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17841537152215998488" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03b447" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2165548125057020342" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64919e66fc8894" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5700997483246928468" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12c6141f5c8aec180fc687" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3bb2bd1b92b2bb41d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3161825266886297059" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d922f1b51801" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "591752505042339537" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f101" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8477057681a2b9f4c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13233215076383534014" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16485079688647230440" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a7d3" + } + ] + }, + "cborHex": "9f9f1bfa6a0cdf35900c781b945782599ebc34bfff0e9fd8669f1b7a3a1ca09cd18bcc9f1bf799df82ecc4e018ffff8080bf4303b4471b1e0d928bd20971b64764919e66fc88941b4f1e03017e54425441a54b12c6141f5c8aec180fc68749b3bb2bd1b92b2bb41d1b2be10f54029cc5e346d922f1b518011b083653c4a1ff06d142f10149f8477057681a2b9f4cff1bb7a5d2ffd82f2bbeff1be4c6c4a297d343e842a7d3ff", + "cborBytes": [ + 159, 159, 27, 250, 106, 12, 223, 53, 144, 12, 120, 27, 148, 87, 130, 89, 158, 188, 52, 191, 255, 14, 159, 216, + 102, 159, 27, 122, 58, 28, 160, 156, 209, 139, 204, 159, 27, 247, 153, 223, 130, 236, 196, 224, 24, 255, 255, 128, + 128, 191, 67, 3, 180, 71, 27, 30, 13, 146, 139, 210, 9, 113, 182, 71, 100, 145, 158, 102, 252, 136, 148, 27, 79, + 30, 3, 1, 126, 84, 66, 84, 65, 165, 75, 18, 198, 20, 31, 92, 138, 236, 24, 15, 198, 135, 73, 179, 187, 43, 209, + 185, 43, 43, 180, 29, 27, 43, 225, 15, 84, 2, 156, 197, 227, 70, 217, 34, 241, 181, 24, 1, 27, 8, 54, 83, 196, + 161, 255, 6, 209, 66, 241, 1, 73, 248, 71, 112, 87, 104, 26, 43, 159, 76, 255, 27, 183, 165, 210, 255, 216, 47, + 43, 190, 255, 27, 228, 198, 196, 162, 151, 211, 67, 232, 66, 167, 211, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3321, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3618916351131879278" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63f26eb588c05c0907" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b3238f93f5d11876e0d4963f26eb588c05c09071bfffffffffffffff7ffffff", + "cborBytes": [ + 159, 159, 191, 27, 50, 56, 249, 63, 93, 17, 135, 110, 13, 73, 99, 242, 110, 181, 136, 192, 92, 9, 7, 27, 255, 255, + 255, 255, 255, 255, 255, 247, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3322, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0d0ca2" + }, + { + "_tag": "ByteArray", + "bytearray": "f3700069079aad48d482af" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10232171212151322585" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2cc479bf" + }, + { + "_tag": "ByteArray", + "bytearray": "020997fa14846c2b03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5528256297906720462" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2423103792668954868" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2359268928823641609" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "112193" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f1bc3c00a1456309556" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58f5886905506e520082" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17884164434731131330" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2272f647c641a953fa06db2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dde160496cb3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa073f122c98946ad0907cae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d98bd49034b725776595774" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18334058535386718167" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8842611014638038322" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17549333240554039626" + } + }, + { + "_tag": "ByteArray", + "bytearray": "69" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4402690385138857237" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1d0739d2a271284d01a332ef" + }, + { + "_tag": "ByteArray", + "bytearray": "8e9ad07b1b4b49" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "464242569019359550" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9149782766703912561" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16755519623263314396" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17303174535651474825" + } + }, + { + "_tag": "ByteArray", + "bytearray": "968e6b29" + }, + { + "_tag": "ByteArray", + "bytearray": "400b8121c96080ce19784e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1347325228898557685" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c370acd05a0a7fd62" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13678393057185068219" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0291c61b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14469599972169211368" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2753889217613924692" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8286479055582856205" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7531a6186ccfd1cdb65e4006" + }, + { + "_tag": "ByteArray", + "bytearray": "2d80063f8e90" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7288331129367387745" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18230959722399893175" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12261539315092534282" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7640268882615719580" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13893381712859128893" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "400816713324227329" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18134236941015511431" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fa0430d0ca24bf3700069079aad48d482afd8669f1b8dfff9814d41f7d99f442cc479bf49020997fa14846c2b031b4cb84fd0200bcece1b21a0980fafef50f4ffffff1b20bdce97402646099fbf431121934a8f1bc3c00a14563095564a58f5886905506e5200821bf83150cc8cd2e1c24ca2272f647c641a953fa06db246dde160496cb34caa073f122c98946ad0907cae4c6d98bd49034b725776595774ff9f1bfe6fa91994f19fd71b7ab743de1e74ed321bf38bc19a182da94a4169ffd8669f1b3d197f942e3ab5159f4c1d0739d2a271284d01a332ef478e9ad07b1b4b491b067152282803813effffd8669f1b7efa8ef2dd60a6719f1be8879052a3b261dc1bf021399064173d8944968e6b294b400b8121c96080ce19784effffbf1b12b2a928416b9ef5497c370acd05a0a7fd621bbdd36a03a7af74bb440291c61b1bc8ce5882ef25dde81b2637c7a716a80954ffff9f9f411e1b72ff7ccc22bb040d4c7531a6186ccfd1cdb65e4006462d80063f8e901b65255a8c035d5e61ffd8669f1bfd016146981986b79f1baa29bd0aeb93b40a1b6a07b011a0c7d69c1bc0cf350ebbe0643dffffa0ffbf1b058ffcad59baeb011bfba9c06b25fef187ffff", + "cborBytes": [ + 159, 159, 160, 67, 13, 12, 162, 75, 243, 112, 0, 105, 7, 154, 173, 72, 212, 130, 175, 216, 102, 159, 27, 141, 255, + 249, 129, 77, 65, 247, 217, 159, 68, 44, 196, 121, 191, 73, 2, 9, 151, 250, 20, 132, 108, 43, 3, 27, 76, 184, 79, + 208, 32, 11, 206, 206, 27, 33, 160, 152, 15, 175, 239, 80, 244, 255, 255, 255, 27, 32, 189, 206, 151, 64, 38, 70, + 9, 159, 191, 67, 17, 33, 147, 74, 143, 27, 195, 192, 10, 20, 86, 48, 149, 86, 74, 88, 245, 136, 105, 5, 80, 110, + 82, 0, 130, 27, 248, 49, 80, 204, 140, 210, 225, 194, 76, 162, 39, 47, 100, 124, 100, 26, 149, 63, 160, 109, 178, + 70, 221, 225, 96, 73, 108, 179, 76, 170, 7, 63, 18, 44, 152, 148, 106, 208, 144, 124, 174, 76, 109, 152, 189, 73, + 3, 75, 114, 87, 118, 89, 87, 116, 255, 159, 27, 254, 111, 169, 25, 148, 241, 159, 215, 27, 122, 183, 67, 222, 30, + 116, 237, 50, 27, 243, 139, 193, 154, 24, 45, 169, 74, 65, 105, 255, 216, 102, 159, 27, 61, 25, 127, 148, 46, 58, + 181, 21, 159, 76, 29, 7, 57, 210, 162, 113, 40, 77, 1, 163, 50, 239, 71, 142, 154, 208, 123, 27, 75, 73, 27, 6, + 113, 82, 40, 40, 3, 129, 62, 255, 255, 216, 102, 159, 27, 126, 250, 142, 242, 221, 96, 166, 113, 159, 27, 232, + 135, 144, 82, 163, 178, 97, 220, 27, 240, 33, 57, 144, 100, 23, 61, 137, 68, 150, 142, 107, 41, 75, 64, 11, 129, + 33, 201, 96, 128, 206, 25, 120, 78, 255, 255, 191, 27, 18, 178, 169, 40, 65, 107, 158, 245, 73, 124, 55, 10, 205, + 5, 160, 167, 253, 98, 27, 189, 211, 106, 3, 167, 175, 116, 187, 68, 2, 145, 198, 27, 27, 200, 206, 88, 130, 239, + 37, 221, 232, 27, 38, 55, 199, 167, 22, 168, 9, 84, 255, 255, 159, 159, 65, 30, 27, 114, 255, 124, 204, 34, 187, + 4, 13, 76, 117, 49, 166, 24, 108, 207, 209, 205, 182, 94, 64, 6, 70, 45, 128, 6, 63, 142, 144, 27, 101, 37, 90, + 140, 3, 93, 94, 97, 255, 216, 102, 159, 27, 253, 1, 97, 70, 152, 25, 134, 183, 159, 27, 170, 41, 189, 10, 235, + 147, 180, 10, 27, 106, 7, 176, 17, 160, 199, 214, 156, 27, 192, 207, 53, 14, 187, 224, 100, 61, 255, 255, 160, + 255, 191, 27, 5, 143, 252, 173, 89, 186, 235, 1, 27, 251, 169, 192, 107, 37, 254, 241, 135, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3323, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17420517701787030203" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17128468681832003973" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5550983238554637680" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f61a75f06302" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7150904322428744326" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9856300889654669735" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13263224709017591951" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6133232281614344427" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "289248120174179467" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16692268114634018314" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6865251993007510830" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13877205432012984666" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8950812919050994684" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b7378b1fdf21d8e8b4c" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9721969979241824026" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "812639940145451370" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ced3a1" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2eac057710931271bc836f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16749751966173035572" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "623ea303b59516" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e6ab01f4e1fa2a49828" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8598bcfae519d27c2ecc7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "846f7cc9e7a76e9c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bfaf34" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f93840d2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8233060160839811400" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13318658256423921156" + } + } + ] + }, + "cborHex": "9f9f9f1bf1c21c8d4a6b92bb1bedb48b83fefff985ffbf1b4d090dd85832557046f61a75f063021b633d1d98192bb2861b88c89d702f3bb1a71bb8107099ed2d608f1b551d9e43ce94e0ebffbf1b04039da1feee748b1be7a6d9692c570e0a1b5f46465060c1552e1bc095bcd0da41515a1b7c37aced2b0303fc4a1b7378b1fdf21d8e8b4cffff9f1bfffffffffffffff9d8669f1b86eb602fd9b87f1a9f0bffffff9fbf1b0b4713b852aa116a43ced3a1ffffbf4b2eac057710931271bc836f1be87312ab53a4fc3447623ea303b595164a1e6ab01f4e1fa2a4982841804bc8598bcfae519d27c2ecc748846f7cc9e7a76e9c43bfaf3444f93840d21b7241b4987d470148ff1bb8d5611e72f8a604ff", + "cborBytes": [ + 159, 159, 159, 27, 241, 194, 28, 141, 74, 107, 146, 187, 27, 237, 180, 139, 131, 254, 255, 249, 133, 255, 191, 27, + 77, 9, 13, 216, 88, 50, 85, 112, 70, 246, 26, 117, 240, 99, 2, 27, 99, 61, 29, 152, 25, 43, 178, 134, 27, 136, + 200, 157, 112, 47, 59, 177, 167, 27, 184, 16, 112, 153, 237, 45, 96, 143, 27, 85, 29, 158, 67, 206, 148, 224, 235, + 255, 191, 27, 4, 3, 157, 161, 254, 238, 116, 139, 27, 231, 166, 217, 105, 44, 87, 14, 10, 27, 95, 70, 70, 80, 96, + 193, 85, 46, 27, 192, 149, 188, 208, 218, 65, 81, 90, 27, 124, 55, 172, 237, 43, 3, 3, 252, 74, 27, 115, 120, 177, + 253, 242, 29, 142, 139, 76, 255, 255, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 216, 102, 159, 27, 134, + 235, 96, 47, 217, 184, 127, 26, 159, 11, 255, 255, 255, 159, 191, 27, 11, 71, 19, 184, 82, 170, 17, 106, 67, 206, + 211, 161, 255, 255, 191, 75, 46, 172, 5, 119, 16, 147, 18, 113, 188, 131, 111, 27, 232, 115, 18, 171, 83, 164, + 252, 52, 71, 98, 62, 163, 3, 181, 149, 22, 74, 30, 106, 176, 31, 78, 31, 162, 164, 152, 40, 65, 128, 75, 200, 89, + 139, 207, 174, 81, 157, 39, 194, 236, 199, 72, 132, 111, 124, 201, 231, 167, 110, 156, 67, 191, 175, 52, 68, 249, + 56, 64, 210, 27, 114, 65, 180, 152, 125, 71, 1, 72, 255, 27, 184, 213, 97, 30, 114, 248, 166, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3324, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6ea340" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18229051622696391671" + } + } + ] + }, + "cborHex": "9f436ea3401bfcfa99de831393f7ff", + "cborBytes": [159, 67, 110, 163, 64, 27, 252, 250, 153, 222, 131, 19, 147, 247, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3325, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7092708951527742651" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16519328175208073693" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87bc7f5f50771a3707ea95" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8400721404623654523" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12441733013901802556" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0afe56ed06d9667137a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15474531539533467362" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17795211659798849061" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6512573793221673343" + } + }, + { + "_tag": "ByteArray", + "bytearray": "66e0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11634424708954599000" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ef98e587f4" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1663c3b53c16" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bc7f05912b5e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42e9cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7396494388171985891" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fbf1b626e5d366f0b5cbb41601be5407173c36109dd4b87bc7f5f50771a3707ea95ff1b74955b9bcb9d0e7bd8669f1baca9ea41cbddfc3c9f4a0afe56ed06d9667137a81bd6c0947297788ee2ffffd8669f1bf6f54ab8b53326259f1b5a614f5c1e7f017f4266e01ba175c7a187442e5845ef98e587f4ffffffbf461663c3b53c16473bc7f05912b5e84342e9cc1b66a5a0752e2953e3ffff", + "cborBytes": [ + 159, 159, 191, 27, 98, 110, 93, 54, 111, 11, 92, 187, 65, 96, 27, 229, 64, 113, 115, 195, 97, 9, 221, 75, 135, + 188, 127, 95, 80, 119, 26, 55, 7, 234, 149, 255, 27, 116, 149, 91, 155, 203, 157, 14, 123, 216, 102, 159, 27, 172, + 169, 234, 65, 203, 221, 252, 60, 159, 74, 10, 254, 86, 237, 6, 217, 102, 113, 55, 168, 27, 214, 192, 148, 114, + 151, 120, 142, 226, 255, 255, 216, 102, 159, 27, 246, 245, 74, 184, 181, 51, 38, 37, 159, 27, 90, 97, 79, 92, 30, + 127, 1, 127, 66, 102, 224, 27, 161, 117, 199, 161, 135, 68, 46, 88, 69, 239, 152, 229, 135, 244, 255, 255, 255, + 191, 70, 22, 99, 195, 181, 60, 22, 71, 59, 199, 240, 89, 18, 181, 232, 67, 66, 233, 204, 27, 102, 165, 160, 117, + 46, 41, 83, 227, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3326, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "196905684800073267" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "579984691f9f7d38" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4b8a30d3d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18352023251215079228" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2a259e06a5f27c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13406032689252129731" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "74be0b44fe8915aab54c8896" + }, + { + "_tag": "ByteArray", + "bytearray": "42c204" + }, + { + "_tag": "ByteArray", + "bytearray": "d16b2f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11284738327428106225" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10091122535759220907" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3947cda4b7" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b02bb8cad54c36e339f48579984691f9f7d38ffff9f9f454b8a30d3d81bfeaf7be9ee62573c472a259e06a5f27cffd8669f1bba0bcbb3e225dbc39f4c74be0b44fe8915aab54c88964342c20443d16b2f1b9c9b71b83d9687f11b8c0ade7b30de10abffff453947cda4b7a0ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 2, 187, 140, 173, 84, 195, 110, 51, 159, 72, 87, 153, 132, 105, 31, 159, 125, 56, 255, + 255, 159, 159, 69, 75, 138, 48, 211, 216, 27, 254, 175, 123, 233, 238, 98, 87, 60, 71, 42, 37, 158, 6, 165, 242, + 124, 255, 216, 102, 159, 27, 186, 11, 203, 179, 226, 37, 219, 195, 159, 76, 116, 190, 11, 68, 254, 137, 21, 170, + 181, 76, 136, 150, 67, 66, 194, 4, 67, 209, 107, 47, 27, 156, 155, 113, 184, 61, 150, 135, 241, 27, 140, 10, 222, + 123, 48, 222, 16, 171, 255, 255, 69, 57, 71, 205, 164, 183, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3327, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16524445439746481617" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "851e71199448" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17307415660126696098" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d50e1a8213d8c0b980" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17830506886868458876" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dca7f53b959d37" + } + } + ] + } + ] + }, + "cborHex": "9fbf1be5529f93c2699dd146851e711994481bf0304ad821e272a249d50e1a8213d8c0b9801bf772af8b24f35d7c47dca7f53b959d37ffff", + "cborBytes": [ + 159, 191, 27, 229, 82, 159, 147, 194, 105, 157, 209, 70, 133, 30, 113, 25, 148, 72, 27, 240, 48, 74, 216, 33, 226, + 114, 162, 73, 213, 14, 26, 130, 19, 216, 192, 185, 128, 27, 247, 114, 175, 139, 36, 243, 93, 124, 71, 220, 167, + 245, 59, 149, 157, 55, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3328, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9402992449304857652" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + "cborHex": "9f1b827e23d03e7f0c3402ff", + "cborBytes": [159, 27, 130, 126, 35, 208, 62, 127, 12, 52, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3329, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4663076285813286573" + } + } + ] + }, + "cborHex": "9f1b40b6932d0872e6adff", + "cborBytes": [159, 27, 64, 182, 147, 45, 8, 114, 230, 173, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3330, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7115933541789310337" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6998a8d5db327f3cdb4145" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12534622773523953258" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "068a28caff0c44e466831c1d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17505562372099955069" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb5c409a2db00db0b70a2336" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17766736247628395806" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "756490219763d3" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b62c0dfdabba39d814b6998a8d5db327f3cdb41451badf3ed00516ab66a4c068a28caff0c44e466831c1d1bf2f0403a9e76597d4cfb5c409a2db00db0b70a23361bf690207c29f2751e47756490219763d3ffff", + "cborBytes": [ + 159, 191, 27, 98, 192, 223, 218, 187, 163, 157, 129, 75, 105, 152, 168, 213, 219, 50, 127, 60, 219, 65, 69, 27, + 173, 243, 237, 0, 81, 106, 182, 106, 76, 6, 138, 40, 202, 255, 12, 68, 228, 102, 131, 28, 29, 27, 242, 240, 64, + 58, 158, 118, 89, 125, 76, 251, 92, 64, 154, 45, 176, 13, 176, 183, 10, 35, 54, 27, 246, 144, 32, 124, 41, 242, + 117, 30, 71, 117, 100, 144, 33, 151, 99, 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3331, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7abbe600e3d67c4c4d46e2" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f4b7abbe600e3d67c4c4d46e2a0ff", + "cborBytes": [159, 75, 122, 187, 230, 0, 227, 214, 124, 76, 77, 70, 226, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3332, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd87a9f0effa0ff", + "cborBytes": [159, 216, 122, 159, 14, 255, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3333, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "299e973b5b5e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "862c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f16f51a19647aac3e07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5445182298814114223" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3903f27eba36e09143c7a09e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4684131a05eb6c22a0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c69a2b2bf6ac900e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "399e48" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6e7621d93f01c29eac" + }, + { + "_tag": "ByteArray", + "bytearray": "7fa198fb1f01" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6356934648786963352" + } + } + ] + } + ] + }, + "cborHex": "9fbf46299e973b5b5e42862c4a2f16f51a19647aac3e071b4b912c73720f69af4c3903f27eba36e09143c7a09e494684131a05eb6c22a048c69a2b2bf6ac900e43399e48ff496e7621d93f01c29eac467fa198fb1f01809f1b58385e61f151cb98ffff", + "cborBytes": [ + 159, 191, 70, 41, 158, 151, 59, 91, 94, 66, 134, 44, 74, 47, 22, 245, 26, 25, 100, 122, 172, 62, 7, 27, 75, 145, + 44, 115, 114, 15, 105, 175, 76, 57, 3, 242, 126, 186, 54, 224, 145, 67, 199, 160, 158, 73, 70, 132, 19, 26, 5, + 235, 108, 34, 160, 72, 198, 154, 43, 43, 246, 172, 144, 14, 67, 57, 158, 72, 255, 73, 110, 118, 33, 217, 63, 1, + 194, 158, 172, 70, 127, 161, 152, 251, 31, 1, 128, 159, 27, 88, 56, 94, 97, 241, 81, 203, 152, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3334, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3133644002079045074" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13431460854474225663" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10397876138824693014" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17206692423194796144" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f231f45b79d1d92fc0a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5822419224341039283" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7e" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f1b2b7cf09dfc7475d2d8669f1bba66227bf58037ff9fd8669f1b904cad420927f5169f1beeca73980bee60704af231f45b79d1d92fc0a61b50cd636fa040c8b3417effffa0ffffff", + "cborBytes": [ + 159, 27, 43, 124, 240, 157, 252, 116, 117, 210, 216, 102, 159, 27, 186, 102, 34, 123, 245, 128, 55, 255, 159, 216, + 102, 159, 27, 144, 76, 173, 66, 9, 39, 245, 22, 159, 27, 238, 202, 115, 152, 11, 238, 96, 112, 74, 242, 49, 244, + 91, 121, 209, 217, 47, 192, 166, 27, 80, 205, 99, 111, 160, 64, 200, 179, 65, 126, 255, 255, 160, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3335, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4291265813111541345" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f1b3b8da3855b4a8e6141aca0ff", + "cborBytes": [159, 27, 59, 141, 163, 133, 91, 74, 142, 97, 65, 172, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3336, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9438358730061414995" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9545d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6154829026820136831" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce063f3904f74686c95f9cb5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11290851170030455894" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "306dca" + }, + { + "_tag": "ByteArray", + "bytearray": "e4f461af31fe321c3192" + }, + { + "_tag": "ByteArray", + "bytearray": "e84255818c25caddadfcbb64" + }, + { + "_tag": "ByteArray", + "bytearray": "94d944" + }, + { + "_tag": "ByteArray", + "bytearray": "1a4ed2b85310c1d9b359" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5023244070963218180" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85bc2b601827" + }, + { + "_tag": "ByteArray", + "bytearray": "54" + } + ] + }, + "cborHex": "9f9f1b82fbc94228048253bf43b9545d1b556a5863e4e09f7f4cce063f3904f74686c95f9cb51b9cb1295151780c56ffff9f43306dca4ae4f461af31fe321c31924ce84255818c25caddadfcbb644394d9444a1a4ed2b85310c1d9b359ff1b45b625de45d987044685bc2b6018274154ff", + "cborBytes": [ + 159, 159, 27, 130, 251, 201, 66, 40, 4, 130, 83, 191, 67, 185, 84, 93, 27, 85, 106, 88, 99, 228, 224, 159, 127, + 76, 206, 6, 63, 57, 4, 247, 70, 134, 201, 95, 156, 181, 27, 156, 177, 41, 81, 81, 120, 12, 86, 255, 255, 159, 67, + 48, 109, 202, 74, 228, 244, 97, 175, 49, 254, 50, 28, 49, 146, 76, 232, 66, 85, 129, 140, 37, 202, 221, 173, 252, + 187, 100, 67, 148, 217, 68, 74, 26, 78, 210, 184, 83, 16, 193, 217, 179, 89, 255, 27, 69, 182, 37, 222, 69, 217, + 135, 4, 70, 133, 188, 43, 96, 24, 39, 65, 84, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3337, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3742904630391454435" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5992750795611627144" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6845455966386561675" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "251b0d357f9d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7409044584933602838" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14340776737674086154" + } + } + ] + }, + "cborHex": "9fbf1b33f177ee3aa5bae31b532a8718ffdede881b5efff1eec20ca28b46251b0d357f9d1bffffffffffffffed01ff1b66d236cb91ffb6161bc704ac76543fc70aff", + "cborBytes": [ + 159, 191, 27, 51, 241, 119, 238, 58, 165, 186, 227, 27, 83, 42, 135, 24, 255, 222, 222, 136, 27, 94, 255, 241, + 238, 194, 12, 162, 139, 70, 37, 27, 13, 53, 127, 157, 27, 255, 255, 255, 255, 255, 255, 255, 237, 1, 255, 27, 102, + 210, 54, 203, 145, 255, 182, 22, 27, 199, 4, 172, 118, 84, 63, 199, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3338, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11743265897886794236" + } + } + ] + }, + "cborHex": "9f110d1ba2f8761d9a8041fcff", + "cborBytes": [159, 17, 13, 27, 162, 248, 118, 29, 154, 128, 65, 252, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3339, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10904946030854039796" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14746577334234373689" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5488" + }, + { + "_tag": "ByteArray", + "bytearray": "19" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1097218917291730" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16516158391236556499" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8a9ef9500e585987a513" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15176297048061341854" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13302120104335858678" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10510616761874605349" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6890314864175901741" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5921806897940169517" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6191269625008606023" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ef0b499634058b38c7a8" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "45f3e9c9a4165de7febd" + }, + { + "_tag": "ByteArray", + "bytearray": "7b9ba45d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7e3b5774e123a69" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7221081653057489298" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b975626a35fdc68f49f9f1bcca65df46bddde394254884119ffffffd8669f1b0003e5ea2fce56d29fd8669f1be5352e8cebbdf6d39f4a8a9ef9500e585987a5131bd29d09c1fb81709e1bb89a9fc1da855bf61b91dd3641ddcd65251b5f9f50dccdcc6c2dffff1b522e7bffa42e832dd8669f1b55ebceebd34dcb479f4aef0b499634058b38c7a8ffff9f4a45f3e9c9a4165de7febd447b9ba45dffbf48f7e3b5774e123a691b64366f8128950992ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 151, 86, 38, 163, 95, 220, 104, 244, 159, 159, 27, 204, 166, 93, 244, 107, 221, 222, 57, + 66, 84, 136, 65, 25, 255, 255, 255, 216, 102, 159, 27, 0, 3, 229, 234, 47, 206, 86, 210, 159, 216, 102, 159, 27, + 229, 53, 46, 140, 235, 189, 246, 211, 159, 74, 138, 158, 249, 80, 14, 88, 89, 135, 165, 19, 27, 210, 157, 9, 193, + 251, 129, 112, 158, 27, 184, 154, 159, 193, 218, 133, 91, 246, 27, 145, 221, 54, 65, 221, 205, 101, 37, 27, 95, + 159, 80, 220, 205, 204, 108, 45, 255, 255, 27, 82, 46, 123, 255, 164, 46, 131, 45, 216, 102, 159, 27, 85, 235, + 206, 235, 211, 77, 203, 71, 159, 74, 239, 11, 73, 150, 52, 5, 139, 56, 199, 168, 255, 255, 159, 74, 69, 243, 233, + 201, 164, 22, 93, 231, 254, 189, 68, 123, 155, 164, 93, 255, 191, 72, 247, 227, 181, 119, 78, 18, 58, 105, 27, + 100, 54, 111, 129, 40, 149, 9, 146, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3340, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "232192817298649726" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6079415773079488327" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16515311344237431825" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c1cf6dd0a625009f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6526422608857320358" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cd80cb0e23" + }, + { + "_tag": "ByteArray", + "bytearray": "77c917a65b846c39" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3943948712048619142" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1291b2" + }, + { + "_tag": "ByteArray", + "bytearray": "9c34f37921" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "743504693773221951" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ff42a006bc1e463" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8357ad2aeca62ec9e19dcbd" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "814ba985" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3428093875487382984" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90240359" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11908800322977080547" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b0338ea231a7bb27e1b545e6c6f7c4f47471be5322c2a6c404c119f9f48c1cf6dd0a625009f1b5a9282c8c704cba645cd80cb0e234877c917a65b846c39ffd8669f1b36bbb8752a046e869f431291b2459c34f37921ffff1b0a5175946930403fbf484ff42a006bc1e4634ca8357ad2aeca62ec9e19dcbdffffbf44814ba9851b2f930937891e1dc844902403591ba5448ecc581b24e3ffff", + "cborBytes": [ + 159, 27, 3, 56, 234, 35, 26, 123, 178, 126, 27, 84, 94, 108, 111, 124, 79, 71, 71, 27, 229, 50, 44, 42, 108, 64, + 76, 17, 159, 159, 72, 193, 207, 109, 208, 166, 37, 0, 159, 27, 90, 146, 130, 200, 199, 4, 203, 166, 69, 205, 128, + 203, 14, 35, 72, 119, 201, 23, 166, 91, 132, 108, 57, 255, 216, 102, 159, 27, 54, 187, 184, 117, 42, 4, 110, 134, + 159, 67, 18, 145, 178, 69, 156, 52, 243, 121, 33, 255, 255, 27, 10, 81, 117, 148, 105, 48, 64, 63, 191, 72, 79, + 244, 42, 0, 107, 193, 228, 99, 76, 168, 53, 122, 210, 174, 202, 98, 236, 158, 25, 220, 189, 255, 255, 191, 68, + 129, 75, 169, 133, 27, 47, 147, 9, 55, 137, 30, 29, 200, 68, 144, 36, 3, 89, 27, 165, 68, 142, 204, 88, 27, 36, + 227, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3341, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6583526962601997021" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1551336803251685592" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17575631155e0fd4b42478" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14108308584559106686" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15258804180516392598" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6213460961739811748" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "154430f860e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3295068118161208747" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b5b5d62e4371932dd9f1b1587749a6cce88d8bf4b17575631155e0fd4b424781bc3cac7e89c3d5a7e421bac42fd0341581bd3c2298ebcecce96ffd8669f1b563aa5d30a422ba49f46154430f860e81b2dba6efed5b6b5abffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 91, 93, 98, 228, 55, 25, 50, 221, 159, 27, 21, 135, 116, 154, 108, 206, 136, 216, 191, 75, + 23, 87, 86, 49, 21, 94, 15, 212, 180, 36, 120, 27, 195, 202, 199, 232, 156, 61, 90, 126, 66, 27, 172, 66, 253, 3, + 65, 88, 27, 211, 194, 41, 142, 188, 236, 206, 150, 255, 216, 102, 159, 27, 86, 58, 165, 211, 10, 66, 43, 164, 159, + 70, 21, 68, 48, 248, 96, 232, 27, 45, 186, 110, 254, 213, 182, 181, 171, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3342, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3b67b0ae72a79ade" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7948561654812770970" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8445990518062862563" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12176962729856309859" + } + } + } + ] + } + ] + }, + "cborHex": "9f483b67b0ae72a79ade801b6e4ef6b63668029abf1b75362fa09d7450e31ba8fd431624419a63ffff", + "cborBytes": [ + 159, 72, 59, 103, 176, 174, 114, 167, 154, 222, 128, 27, 110, 78, 246, 182, 54, 104, 2, 154, 191, 27, 117, 54, 47, + 160, 157, 116, 80, 227, 27, 168, 253, 67, 22, 36, 65, 154, 99, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3343, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11618454482449021387" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17388552291075670150" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "77ea" + }, + { + "_tag": "ByteArray", + "bytearray": "b84578a82a30d035dfbc" + }, + { + "_tag": "ByteArray", + "bytearray": "fd3b64d8407dd2bbde" + }, + { + "_tag": "ByteArray", + "bytearray": "8b72dbc4e7bdeb598d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "15c0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12013180944943262908" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9957478354998199833" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5fb608843170bac6a88108db" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5802056032370273707" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15625313004099961324" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17514883998057024359" + } + }, + { + "_tag": "ByteArray", + "bytearray": "83015116a61441" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8768111711140097148" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a931e793907" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16864161605833724232" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17682435478329588915" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "073f9a7d6e6878" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3863895056504659594" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6afe3bf262c5ea70b968" + }, + { + "_tag": "ByteArray", + "bytearray": "cd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1350639445528866480" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba13d0acb696b39cb9fd8669f1bf1508c2e23dec0869f4277ea4ab84578a82a30d035dfbc49fd3b64d8407dd2bbde498b72dbc4e7bdeb598dffff4215c0d8669f1ba6b7646bbdd5acbc9f1b8a3011ce904f06194c5fb608843170bac6a88108db1b50850b388857adabffffd8669f1bd8d8436409ab81ec9f1bf3115e32ca5ccb674783015116a614411b79ae97255572ac7c461a931e7939071bea0989a15e801148ffffd8669f1bf564a161c9997cb39f47073f9a7d6e68781b359f501504591e8a4a6afe3bf262c5ea70b96841cd1b12be6f6b7260eeb0ffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 161, 61, 10, 203, 105, 107, 57, 203, 159, 216, 102, 159, 27, 241, 80, 140, 46, 35, 222, + 192, 134, 159, 66, 119, 234, 74, 184, 69, 120, 168, 42, 48, 208, 53, 223, 188, 73, 253, 59, 100, 216, 64, 125, + 210, 187, 222, 73, 139, 114, 219, 196, 231, 189, 235, 89, 141, 255, 255, 66, 21, 192, 216, 102, 159, 27, 166, 183, + 100, 107, 189, 213, 172, 188, 159, 27, 138, 48, 17, 206, 144, 79, 6, 25, 76, 95, 182, 8, 132, 49, 112, 186, 198, + 168, 129, 8, 219, 27, 80, 133, 11, 56, 136, 87, 173, 171, 255, 255, 216, 102, 159, 27, 216, 216, 67, 100, 9, 171, + 129, 236, 159, 27, 243, 17, 94, 50, 202, 92, 203, 103, 71, 131, 1, 81, 22, 166, 20, 65, 27, 121, 174, 151, 37, 85, + 114, 172, 124, 70, 26, 147, 30, 121, 57, 7, 27, 234, 9, 137, 161, 94, 128, 17, 72, 255, 255, 216, 102, 159, 27, + 245, 100, 161, 97, 201, 153, 124, 179, 159, 71, 7, 63, 154, 125, 110, 104, 120, 27, 53, 159, 80, 21, 4, 89, 30, + 138, 74, 106, 254, 59, 242, 98, 197, 234, 112, 185, 104, 65, 205, 27, 18, 190, 111, 107, 114, 96, 238, 176, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3344, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fe0d4b610505bcc1a53870" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16977170529709300412" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7df38adf006fc30b54a3" + }, + { + "_tag": "ByteArray", + "bytearray": "d4685ef4812e" + }, + { + "_tag": "ByteArray", + "bytearray": "e1d8f7c51686dfcfe2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5410900767300540633" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10427203142509204729" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10512677980624185489" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14589943819464910326" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3228688381884458124" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "246608156210248178" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5126571116477116441" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd8acaa6562148acd73eeb5d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "169db132f6a0296f5fca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10182488215162589740" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73feced671d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11192424350293287192" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f4bfe0d4b610505bcc1a53870d8669f1beb9b06a5da8d9abc9f4a7df38adf006fc30b54a346d4685ef4812e49e1d8f7c51686dfcfe21b4b17619465d658d91b90b4de032e1914f9ffff1b91e488ecc12ce8911bca79e49a5c1ca5f6ffbf1b2cce9afa1ca7648c1b036c20cfbda039f21b47253d44c96570194cfd8acaa6562148acd73eeb5d4a169db132f6a0296f5fca1b8d4f7715225e122c4673feced671d71b9b537aa586a9e118ffff", + "cborBytes": [ + 159, 159, 75, 254, 13, 75, 97, 5, 5, 188, 193, 165, 56, 112, 216, 102, 159, 27, 235, 155, 6, 165, 218, 141, 154, + 188, 159, 74, 125, 243, 138, 223, 0, 111, 195, 11, 84, 163, 70, 212, 104, 94, 244, 129, 46, 73, 225, 216, 247, + 197, 22, 134, 223, 207, 226, 27, 75, 23, 97, 148, 101, 214, 88, 217, 27, 144, 180, 222, 3, 46, 25, 20, 249, 255, + 255, 27, 145, 228, 136, 236, 193, 44, 232, 145, 27, 202, 121, 228, 154, 92, 28, 165, 246, 255, 191, 27, 44, 206, + 154, 250, 28, 167, 100, 140, 27, 3, 108, 32, 207, 189, 160, 57, 242, 27, 71, 37, 61, 68, 201, 101, 112, 25, 76, + 253, 138, 202, 166, 86, 33, 72, 172, 215, 62, 235, 93, 74, 22, 157, 177, 50, 246, 160, 41, 111, 95, 202, 27, 141, + 79, 119, 21, 34, 94, 18, 44, 70, 115, 254, 206, 214, 113, 215, 27, 155, 83, 122, 165, 134, 169, 225, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3345, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1306779701843719910" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e0177283ec40589f4b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22e725eb272ab8efbc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3099036002222468032" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5986890407563644813" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a89262f2d51fb9c86c9ca3a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5519095973420142034" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4a33789203a97266d30e630" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96eb3a2f14f009" + } + } + ] + } + ] + }, + "cborHex": "9f9f1b12229d371815f6e6ff49e0177283ec40589f4bbf4922e725eb272ab8efbc1b2b01fcd31a9debc041571b5315b51b14064f8d4c5a89262f2d51fb9c86c9ca3a1b4c97c48be0ff0dd24ce4a33789203a97266d30e6304796eb3a2f14f009ffff", + "cborBytes": [ + 159, 159, 27, 18, 34, 157, 55, 24, 21, 246, 230, 255, 73, 224, 23, 114, 131, 236, 64, 88, 159, 75, 191, 73, 34, + 231, 37, 235, 39, 42, 184, 239, 188, 27, 43, 1, 252, 211, 26, 157, 235, 192, 65, 87, 27, 83, 21, 181, 27, 20, 6, + 79, 141, 76, 90, 137, 38, 47, 45, 81, 251, 156, 134, 201, 202, 58, 27, 76, 151, 196, 139, 224, 255, 13, 210, 76, + 228, 163, 55, 137, 32, 58, 151, 38, 109, 48, 230, 48, 71, 150, 235, 58, 47, 20, 240, 9, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3346, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6244469766230560576" + } + } + ] + }, + "cborHex": "9f1b56a8d02af2d6cf40ff", + "cborBytes": [159, 27, 86, 168, 208, 42, 242, 214, 207, 64, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3347, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f84301c7c1" + } + ] + }, + "cborHex": "9f45f84301c7c1ff", + "cborBytes": [159, 69, 248, 67, 1, 199, 193, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3348, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1559856328824383971" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10990472834161153235" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1388456894873985753" + } + }, + { + "_tag": "ByteArray", + "bytearray": "63cdbc37724a1933fbbfcfef" + }, + { + "_tag": "ByteArray", + "bytearray": "aed0" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14613437356530525099" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2049384635550667861" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ac7cf9862f6fb4b555f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dbd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65a772b1761eeeed06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3424586e345e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82f4c05566abaa92" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5489569582129556218" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf07c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc3ee02187a9486b1d6f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3c3c09aa8c40718ef8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4902487593137013560" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f27e475ab13c6c28743ff8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10915063748478488081" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb103ac060f886" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f9d5d2970a7a5d33e77" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfbb6a2f5e1faac1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10146302220813400984" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4f2669d58bdcbdd3a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f46" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e598ca0c3004bb139b2ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "840835118530511897" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6cc37543b668b13a1de4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0ebb3aec0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51eb6f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff0f1a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "402314176564253823" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f1b15a5b9110c38e9e39f1b988600d009c194d31b1344ca3084e7e2d94c63cdbc37724a1933fbbfcfef42aed0ffff1bcacd5bd9b76ce3ab9f1b1c70e077ca241455bf4a2ac7cf9862f6fb4b555f422dbd4965a772b1761eeeed0647d3424586e345e24882f4c05566abaa921b4c2ede73309f2afa43cf07c94acc3ee02187a9486b1d6f4ad3c3c09aa8c40718ef8a1b4409227dd0b103384bf27e475ab13c6c28743ff81b977a18a614cdce11ffffbf47cb103ac060f8864a7f9d5d2970a7a5d33e7748cfbb6a2f5e1faac11b8ccee81cc756fb9849d4f2669d58bdcbdd3a425f46ffbf4b3e598ca0c3004bb139b2ba1b0bab3f15daaf44194a6cc37543b668b13a1de441c345f0ebb3aec04351eb6f43ff0f1a1b05954e9cae37547fffff", + "cborBytes": [ + 159, 159, 27, 21, 165, 185, 17, 12, 56, 233, 227, 159, 27, 152, 134, 0, 208, 9, 193, 148, 211, 27, 19, 68, 202, + 48, 132, 231, 226, 217, 76, 99, 205, 188, 55, 114, 74, 25, 51, 251, 191, 207, 239, 66, 174, 208, 255, 255, 27, + 202, 205, 91, 217, 183, 108, 227, 171, 159, 27, 28, 112, 224, 119, 202, 36, 20, 85, 191, 74, 42, 199, 207, 152, + 98, 246, 251, 75, 85, 95, 66, 45, 189, 73, 101, 167, 114, 177, 118, 30, 238, 237, 6, 71, 211, 66, 69, 134, 227, + 69, 226, 72, 130, 244, 192, 85, 102, 171, 170, 146, 27, 76, 46, 222, 115, 48, 159, 42, 250, 67, 207, 7, 201, 74, + 204, 62, 224, 33, 135, 169, 72, 107, 29, 111, 74, 211, 195, 192, 154, 168, 196, 7, 24, 239, 138, 27, 68, 9, 34, + 125, 208, 177, 3, 56, 75, 242, 126, 71, 90, 177, 60, 108, 40, 116, 63, 248, 27, 151, 122, 24, 166, 20, 205, 206, + 17, 255, 255, 191, 71, 203, 16, 58, 192, 96, 248, 134, 74, 127, 157, 93, 41, 112, 167, 165, 211, 62, 119, 72, 207, + 187, 106, 47, 94, 31, 170, 193, 27, 140, 206, 232, 28, 199, 86, 251, 152, 73, 212, 242, 102, 157, 88, 189, 203, + 221, 58, 66, 95, 70, 255, 191, 75, 62, 89, 140, 160, 195, 0, 75, 177, 57, 178, 186, 27, 11, 171, 63, 21, 218, 175, + 68, 25, 74, 108, 195, 117, 67, 182, 104, 177, 58, 29, 228, 65, 195, 69, 240, 235, 179, 174, 192, 67, 81, 235, 111, + 67, 255, 15, 26, 27, 5, 149, 78, 156, 174, 55, 84, 127, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3349, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17576110344086178606" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15164023775659960365" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12005751294000856940" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "193833406223489164" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2250415913034030114" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "332f8aa1b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11144055726146617927" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3037486444162337703" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c54ad62" + }, + { + "_tag": "ByteArray", + "bytearray": "3dbe" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a3b92a0b33" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5d4f86dcc173be" + }, + { + "_tag": "ByteArray", + "bytearray": "6f113f2cfede7ec832" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13500355979516521489" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10730164011182918907" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95" + }, + { + "_tag": "ByteArray", + "bytearray": "58d49aa4cb506c7ca236" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10111846143132079610" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17878094471201387190" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17110529885754947355" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a4bf029cc4aef2a1db" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1707041890067789619" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5010126864269174884" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf3eae33c58534b2e9fd8669f1bd2716f4811ca282d9f1ba69cff31549b7f6cffff1b02b0a274bb8e188cd8669f1b1f3b155985479c229f45332f8aa1b91b9aa7a3a3a22082471b2a2751d3e25c4ba7449c54ad62423dbeffffffff9f45a3b92a0b339f475d4f86dcc173be496f113f2cfede7ec832ff80ff9f9f1bbb5ae63c44672c111b94e933513c3d0cfb41954a58d49aa4cb506c7ca2361b8c547e7e08ca95faffd8669f1bf81bc03308d572b69f1bed74d0468f20f71b49a4bf029cc4aef2a1dbffffd8669f1b17b0a18e0233b7339f1b45878bd69867e864ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 243, 234, 227, 60, 88, 83, 75, 46, 159, 216, 102, 159, 27, 210, 113, 111, 72, 17, 202, 40, + 45, 159, 27, 166, 156, 255, 49, 84, 155, 127, 108, 255, 255, 27, 2, 176, 162, 116, 187, 142, 24, 140, 216, 102, + 159, 27, 31, 59, 21, 89, 133, 71, 156, 34, 159, 69, 51, 47, 138, 161, 185, 27, 154, 167, 163, 163, 162, 32, 130, + 71, 27, 42, 39, 81, 211, 226, 92, 75, 167, 68, 156, 84, 173, 98, 66, 61, 190, 255, 255, 255, 255, 159, 69, 163, + 185, 42, 11, 51, 159, 71, 93, 79, 134, 220, 193, 115, 190, 73, 111, 17, 63, 44, 254, 222, 126, 200, 50, 255, 128, + 255, 159, 159, 27, 187, 90, 230, 60, 68, 103, 44, 17, 27, 148, 233, 51, 81, 60, 61, 12, 251, 65, 149, 74, 88, 212, + 154, 164, 203, 80, 108, 124, 162, 54, 27, 140, 84, 126, 126, 8, 202, 149, 250, 255, 216, 102, 159, 27, 248, 27, + 192, 51, 8, 213, 114, 182, 159, 27, 237, 116, 208, 70, 143, 32, 247, 27, 73, 164, 191, 2, 156, 196, 174, 242, 161, + 219, 255, 255, 216, 102, 159, 27, 23, 176, 161, 142, 2, 51, 183, 51, 159, 27, 69, 135, 139, 214, 152, 103, 232, + 100, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3350, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ba8e8a23e903cd86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1249326752339429750" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2836947602775334690" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10550951524341070230" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4897152771458771975" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7100886742766723017" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b44b1f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10997268037752594561" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17193220814660594355" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6b143ad0f6fcaa5cdfb0" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3354315659433164500" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "53b8268c6d74fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7425464bd55bc7f1c2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7474ca897406c28bbcc37af2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8aa7b8df" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d4afdb8f767156" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17519151591980052807" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4487438726573364940" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5799194200620316007" + } + } + ] + } + ] + }, + "cborHex": "9f48ba8e8a23e903cd861b1156800fe1958976d8669f1b275edcd05dd1df229fd8669f1b926c828292b739969f1b43f62e7fd99eac07ffffd8669f1b628b6aded4e41fc99f43b44b1f1b989e2503aa0020811bee9a973cc2b26ab34a6b143ad0f6fcaa5cdfb0ffffffffd8669f1b2e8cec52010b3ed49fbf4753b8268c6d74fc497425464bd55bc7f1c24c7474ca897406c28bbcc37af2448aa7b8dfff47d4afdb8f767156a0d8669f1bf320878d6e30b14780ffffffd8669f1b3e4695bf10bc96cc9f1b507ae066677ab567ffffff", + "cborBytes": [ + 159, 72, 186, 142, 138, 35, 233, 3, 205, 134, 27, 17, 86, 128, 15, 225, 149, 137, 118, 216, 102, 159, 27, 39, 94, + 220, 208, 93, 209, 223, 34, 159, 216, 102, 159, 27, 146, 108, 130, 130, 146, 183, 57, 150, 159, 27, 67, 246, 46, + 127, 217, 158, 172, 7, 255, 255, 216, 102, 159, 27, 98, 139, 106, 222, 212, 228, 31, 201, 159, 67, 180, 75, 31, + 27, 152, 158, 37, 3, 170, 0, 32, 129, 27, 238, 154, 151, 60, 194, 178, 106, 179, 74, 107, 20, 58, 208, 246, 252, + 170, 92, 223, 176, 255, 255, 255, 255, 216, 102, 159, 27, 46, 140, 236, 82, 1, 11, 62, 212, 159, 191, 71, 83, 184, + 38, 140, 109, 116, 252, 73, 116, 37, 70, 75, 213, 91, 199, 241, 194, 76, 116, 116, 202, 137, 116, 6, 194, 139, + 188, 195, 122, 242, 68, 138, 167, 184, 223, 255, 71, 212, 175, 219, 143, 118, 113, 86, 160, 216, 102, 159, 27, + 243, 32, 135, 141, 110, 48, 177, 71, 128, 255, 255, 255, 216, 102, 159, 27, 62, 70, 149, 191, 16, 188, 150, 204, + 159, 27, 80, 122, 224, 102, 103, 122, 181, 103, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3351, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5478718673117110915" + } + } + ] + }, + "cborHex": "9f1b4c08519b0f71e283ff", + "cborBytes": [159, 27, 76, 8, 81, 155, 15, 113, 226, 131, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3352, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2dadb0f3c423" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4831340233510565627" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2f641edcb744ef9615a7244" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8536921084274739384" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1486666d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9541476448147283560" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae91daee8ba49fe881ff" + } + } + ] + } + ] + }, + "cborHex": "9f462dadb0f3c423d9050680bf1b430c5e58477336fb4ce2f641edcb744ef9615a72441b76793c7edfbd08b8441486666d1b846a2246d4931e684aae91daee8ba49fe881ffffff", + "cborBytes": [ + 159, 70, 45, 173, 176, 243, 196, 35, 217, 5, 6, 128, 191, 27, 67, 12, 94, 88, 71, 115, 54, 251, 76, 226, 246, 65, + 237, 203, 116, 78, 249, 97, 90, 114, 68, 27, 118, 121, 60, 126, 223, 189, 8, 184, 68, 20, 134, 102, 109, 27, 132, + 106, 34, 70, 212, 147, 30, 104, 74, 174, 145, 218, 238, 139, 164, 159, 232, 129, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3353, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "55f86900faf504a70105" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13510310491285602771" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11381181278622973141" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1dacc02c079" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13180830687058342355" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "136038478542240247" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fefe66120000070e01ff893d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b6c1296" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2430499014800898494" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a47a00c4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "383f03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "607d0e99" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0173cb" + } + ] + } + ] + }, + "cborHex": "9f4a55f86900faf504a701051bfffffffffffffff21bbb7e43cfa64fc1d39fbf1b9df21412a4a5fcd546e1dacc02c0791bb6ebb7acc2ae31d31b01e34e46854b79f7ff4cfefe66120000070e01ff893dbf14449b6c12961b21baddfa0424f9be44a47a00c443383f031041f044607d0e99ff430173cbffff", + "cborBytes": [ + 159, 74, 85, 248, 105, 0, 250, 245, 4, 167, 1, 5, 27, 255, 255, 255, 255, 255, 255, 255, 242, 27, 187, 126, 67, + 207, 166, 79, 193, 211, 159, 191, 27, 157, 242, 20, 18, 164, 165, 252, 213, 70, 225, 218, 204, 2, 192, 121, 27, + 182, 235, 183, 172, 194, 174, 49, 211, 27, 1, 227, 78, 70, 133, 75, 121, 247, 255, 76, 254, 254, 102, 18, 0, 0, 7, + 14, 1, 255, 137, 61, 191, 20, 68, 155, 108, 18, 150, 27, 33, 186, 221, 250, 4, 36, 249, 190, 68, 164, 122, 0, 196, + 67, 56, 63, 3, 16, 65, 240, 68, 96, 125, 14, 153, 255, 67, 1, 115, 203, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3354, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12256024067145720915" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5384cf2aa4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13382843893015692264" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2035773882832457287" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79be9447bfdd3f6b60a15d5f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7815059307295148890" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "814e73cf418309941dda" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4136948574918646503" + } + } + } + ] + } + ] + }, + "cborHex": "9f07bf1baa1624f430dbe453455384cf2aa41bb9b9699d87b4c3e81b1c40858f793f0e474c79be9447bfdd3f6b60a15d5f1b6c74ab08b5f00b5a4a814e73cf418309941dda1b396964cf76159ae7ffff", + "cborBytes": [ + 159, 7, 191, 27, 170, 22, 36, 244, 48, 219, 228, 83, 69, 83, 132, 207, 42, 164, 27, 185, 185, 105, 157, 135, 180, + 195, 232, 27, 28, 64, 133, 143, 121, 63, 14, 71, 76, 121, 190, 148, 71, 191, 221, 63, 107, 96, 161, 93, 95, 27, + 108, 116, 171, 8, 181, 240, 11, 90, 74, 129, 78, 115, 207, 65, 131, 9, 148, 29, 218, 27, 57, 105, 100, 207, 118, + 21, 154, 231, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3355, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4495300461083366179" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f3fd1254665dc76383d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47d843bc92cfa43d8a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76423b080b5b6b307afef8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5443833526230531477" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9fc5517bcb65bcfc7d1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e186d38ab615cf356b743" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1aaf204c732" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11247384448319255324" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db9aa0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13386015673214378010" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f652cb0333" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7202fc1ef915e872d32dc363" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14659179551457230676" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13022529988757924235" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c764beb01313bc5e" + }, + { + "_tag": "ByteArray", + "bytearray": "ed9937ad8aeed3324b150d20" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8013617635300439868" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15812072519975081166" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "490906" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8610bd58fceb4c1eb4eb85c" + } + } + ] + } + ] + }, + "cborHex": "9f1b3e6283f3c5861323bf4a5f3fd1254665dc76383d4947d843bc92cfa43d8a4b76423b080b5b6b307afef81b4b8c61bfdb553d954a9fc5517bcb65bcfc7d1d4b2e186d38ab615cf356b74346a1aaf204c7321b9c16bc908652731c43db9aa01bb9c4ae5527c1201a45f652cb03334c7202fc1ef915e872d32dc363ff9fd8669f1bcb6fde2267473f549f1bb4b9520748c9a98b48c764beb01313bc5e4ced9937ad8aeed3324b150d20ffffd8669f1b6f3616c805e3773c80ff1bdb6fc42e53d494ceffbf434909064cc8610bd58fceb4c1eb4eb85cffff", + "cborBytes": [ + 159, 27, 62, 98, 131, 243, 197, 134, 19, 35, 191, 74, 95, 63, 209, 37, 70, 101, 220, 118, 56, 61, 73, 71, 216, 67, + 188, 146, 207, 164, 61, 138, 75, 118, 66, 59, 8, 11, 91, 107, 48, 122, 254, 248, 27, 75, 140, 97, 191, 219, 85, + 61, 149, 74, 159, 197, 81, 123, 203, 101, 188, 252, 125, 29, 75, 46, 24, 109, 56, 171, 97, 92, 243, 86, 183, 67, + 70, 161, 170, 242, 4, 199, 50, 27, 156, 22, 188, 144, 134, 82, 115, 28, 67, 219, 154, 160, 27, 185, 196, 174, 85, + 39, 193, 32, 26, 69, 246, 82, 203, 3, 51, 76, 114, 2, 252, 30, 249, 21, 232, 114, 211, 45, 195, 99, 255, 159, 216, + 102, 159, 27, 203, 111, 222, 34, 103, 71, 63, 84, 159, 27, 180, 185, 82, 7, 72, 201, 169, 139, 72, 199, 100, 190, + 176, 19, 19, 188, 94, 76, 237, 153, 55, 173, 138, 238, 211, 50, 75, 21, 13, 32, 255, 255, 216, 102, 159, 27, 111, + 54, 22, 200, 5, 227, 119, 60, 128, 255, 27, 219, 111, 196, 46, 83, 212, 148, 206, 255, 191, 67, 73, 9, 6, 76, 200, + 97, 11, 213, 143, 206, 180, 193, 235, 78, 184, 92, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3356, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17733179201011199274" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16650992381213577559" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c12378edc88d035aba4a9" + }, + { + "_tag": "ByteArray", + "bytearray": "0e63df8fa4db" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a9fa8d1b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6418218600476166732" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b15c274b6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df072b132f546ff4ab4185" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e49473a4b46a6e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8670082157430154460" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "796547861926473706" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "509a89d45def3bc49cb8de" + }, + { + "_tag": "ByteArray", + "bytearray": "8bc51663499efb2d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7888840140865076692" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7284642607479867395" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e431c88cbb5fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a28e5cbe9f881a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8047965143197651545" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3aeb5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "803713702898592658" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c21cf4e1a647" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79bc6f625f22" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13250322894921490925" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2377522495900310772" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b6a2e47c2" + }, + { + "_tag": "ByteArray", + "bytearray": "23d0a2411fe7ae931b1f02a6" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bf618e887669e2d2ad8669f1be714355997f891579f4b7c12378edc88d035aba4a9460e63df8fa4dbffff44a9fa8d1b9fbf422f711b591217cfdc2fca4c45b15c274b6d4bdf072b132f546ff4ab418547e49473a4b46a6e1b785251c93f13a4dcffffd8669f1b0b0de80f64b96fea9f9f4b509a89d45def3bc49cb8de488bc51663499efb2d1b6d7aca4fae1afdd41b65183fdb16834803ff414bbf473e431c88cbb5fc419a47a28e5cbe9f881a1b6fb01da86505925941a743f3aeb541ab1b0b275d5ac2626b9246c21cf4e1a6474679bc6f625f22ffd8669f1bb7e29a783f0561ed9f1b20fea81d05a35cf4455b6a2e47c24c23d0a2411fe7ae931b1f02a6ffffffffff", + "cborBytes": [ + 159, 27, 246, 24, 232, 135, 102, 158, 45, 42, 216, 102, 159, 27, 231, 20, 53, 89, 151, 248, 145, 87, 159, 75, 124, + 18, 55, 142, 220, 136, 208, 53, 171, 164, 169, 70, 14, 99, 223, 143, 164, 219, 255, 255, 68, 169, 250, 141, 27, + 159, 191, 66, 47, 113, 27, 89, 18, 23, 207, 220, 47, 202, 76, 69, 177, 92, 39, 75, 109, 75, 223, 7, 43, 19, 47, + 84, 111, 244, 171, 65, 133, 71, 228, 148, 115, 164, 180, 106, 110, 27, 120, 82, 81, 201, 63, 19, 164, 220, 255, + 255, 216, 102, 159, 27, 11, 13, 232, 15, 100, 185, 111, 234, 159, 159, 75, 80, 154, 137, 212, 93, 239, 59, 196, + 156, 184, 222, 72, 139, 197, 22, 99, 73, 158, 251, 45, 27, 109, 122, 202, 79, 174, 26, 253, 212, 27, 101, 24, 63, + 219, 22, 131, 72, 3, 255, 65, 75, 191, 71, 62, 67, 28, 136, 203, 181, 252, 65, 154, 71, 162, 142, 92, 190, 159, + 136, 26, 27, 111, 176, 29, 168, 101, 5, 146, 89, 65, 167, 67, 243, 174, 181, 65, 171, 27, 11, 39, 93, 90, 194, 98, + 107, 146, 70, 194, 28, 244, 225, 166, 71, 70, 121, 188, 111, 98, 95, 34, 255, 216, 102, 159, 27, 183, 226, 154, + 120, 63, 5, 97, 237, 159, 27, 32, 254, 168, 29, 5, 163, 92, 244, 69, 91, 106, 46, 71, 194, 76, 35, 208, 162, 65, + 31, 231, 174, 147, 27, 31, 2, 166, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3357, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8715203244386381817" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7b2dc7fcf32ae718c444a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10657129685513670192" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75d008181df9" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b78f29f2cf6fb6ff94bf7b2dc7fcf32ae718c444a1b93e5bafc2e500e304675d008181df9ffff", + "cborBytes": [ + 159, 191, 27, 120, 242, 159, 44, 246, 251, 111, 249, 75, 247, 178, 220, 127, 207, 50, 174, 113, 140, 68, 74, 27, + 147, 229, 186, 252, 46, 80, 14, 48, 70, 117, 208, 8, 24, 29, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3358, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "383eda57606356" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f8bfc35" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d86f430558ccdc9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09445953fb3a13d8db13" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a92cd22171d48084e67a14" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16407504835184656247" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "daf328444c81c930fc4a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56f8a71254" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5307167006764750863" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6791997758776711442" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8438517726063945455" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3f315755eea01042e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e2960b586b8d7039c61dd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eaa7afcd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ad94437f9c2" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "143450524532341499" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9d494b93c05748b8705a23a" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f5d2d6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1243265816746246975" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f1924758949da17ceb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1222339254702672269" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7fd9" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17309002793358323444" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6257411926335027405" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3958734780580299348" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10b2ccda48079e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "708fc97114d09e81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9367877068320972367" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf47383eda57606356445f8bfc35485d86f430558ccdc94a09445953fb3a13d8db134ba92cd22171d48084e67a141be3b32ab787af7f774adaf328444c81c930fc4a4556f8a71254ffbf1b49a6d84629e2d80f1b5e4205f9df2299121b751ba329a4e0e6ef49f3f315755eea01042e4247e14b9e2960b586b8d7039c61dd44eaa7afcd464ad94437f9c2ffbf1b01fda37df597fafb4ce9d494b93c05748b8705a23aff9f43f5d2d6d8669f1b1140f7ac588bc33f9f49f1924758949da17ceb1b10f69f136f91898d427fd9ffffff9fbf1bf035ee55625deef41b56d6cafe6a7df8cdffbf1b36f0404f047902544710b2ccda48079e48708fc97114d09e811b8201628f7ccc9e4fffffff", + "cborBytes": [ + 159, 191, 71, 56, 62, 218, 87, 96, 99, 86, 68, 95, 139, 252, 53, 72, 93, 134, 244, 48, 85, 140, 205, 201, 74, 9, + 68, 89, 83, 251, 58, 19, 216, 219, 19, 75, 169, 44, 210, 33, 113, 212, 128, 132, 230, 122, 20, 27, 227, 179, 42, + 183, 135, 175, 127, 119, 74, 218, 243, 40, 68, 76, 129, 201, 48, 252, 74, 69, 86, 248, 167, 18, 84, 255, 191, 27, + 73, 166, 216, 70, 41, 226, 216, 15, 27, 94, 66, 5, 249, 223, 34, 153, 18, 27, 117, 27, 163, 41, 164, 224, 230, + 239, 73, 243, 243, 21, 117, 94, 234, 1, 4, 46, 66, 71, 225, 75, 158, 41, 96, 181, 134, 184, 215, 3, 156, 97, 221, + 68, 234, 167, 175, 205, 70, 74, 217, 68, 55, 249, 194, 255, 191, 27, 1, 253, 163, 125, 245, 151, 250, 251, 76, + 233, 212, 148, 185, 60, 5, 116, 139, 135, 5, 162, 58, 255, 159, 67, 245, 210, 214, 216, 102, 159, 27, 17, 64, 247, + 172, 88, 139, 195, 63, 159, 73, 241, 146, 71, 88, 148, 157, 161, 124, 235, 27, 16, 246, 159, 19, 111, 145, 137, + 141, 66, 127, 217, 255, 255, 255, 159, 191, 27, 240, 53, 238, 85, 98, 93, 238, 244, 27, 86, 214, 202, 254, 106, + 125, 248, 205, 255, 191, 27, 54, 240, 64, 79, 4, 121, 2, 84, 71, 16, 178, 204, 218, 72, 7, 158, 72, 112, 143, 201, + 113, 20, 208, 158, 129, 27, 130, 1, 98, 143, 124, 204, 158, 79, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3359, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d98618a5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3084966936666747778" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16906577655601917756" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f27a93b90c70" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bab60621ab8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7e8a67b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abbbdba7998f363f48bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8cc4c31c10c96" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b35ab8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18225938722440394812" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9543932470722491357" + } + }, + { + "_tag": "ByteArray", + "bytearray": "16e2ca1e34800502" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3941854507401187595" + } + } + ] + } + ] + }, + "cborHex": "9f9f44d98618a51b2ad0011583d8b382ffd8669f1beaa03acd89b56f3c9f46f27a93b90c70bf469bab60621ab844f7e8a67b4aabbbdba7998f363f48bb47e8cc4c31c10c9643b35ab81bfcef8ab3f118b83cff1b8472dc0425baf3dd4816e2ca1e348005021b36b447ca25eb910bffffff", + "cborBytes": [ + 159, 159, 68, 217, 134, 24, 165, 27, 42, 208, 1, 21, 131, 216, 179, 130, 255, 216, 102, 159, 27, 234, 160, 58, + 205, 137, 181, 111, 60, 159, 70, 242, 122, 147, 185, 12, 112, 191, 70, 155, 171, 96, 98, 26, 184, 68, 247, 232, + 166, 123, 74, 171, 187, 219, 167, 153, 143, 54, 63, 72, 187, 71, 232, 204, 76, 49, 193, 12, 150, 67, 179, 90, 184, + 27, 252, 239, 138, 179, 241, 24, 184, 60, 255, 27, 132, 114, 220, 4, 37, 186, 243, 221, 72, 22, 226, 202, 30, 52, + 128, 5, 2, 27, 54, 180, 71, 202, 37, 235, 145, 11, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3360, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5327005918413275403" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be296b5635762cc9535ecd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15986188758266189611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7fd42" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17292989687451166955" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b49ed53a8bb6d410b4bbe296b5635762cc9535ecd1bddda59fa28cc972b43f7fd421beffd0a7fa10528eb1bffffffffffffffffffff", + "cborBytes": [ + 159, 191, 27, 73, 237, 83, 168, 187, 109, 65, 11, 75, 190, 41, 107, 86, 53, 118, 44, 201, 83, 94, 205, 27, 221, + 218, 89, 250, 40, 204, 151, 43, 67, 247, 253, 66, 27, 239, 253, 10, 127, 161, 5, 40, 235, 27, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3361, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9246364010497664810" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1d5e75fd4bad6e08" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a2807830252293" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6235723293778951128" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5d327bb1bbdc7595" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8d1afba9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7314935583597017743" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8716446093778834415" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3117febb3624e486bef2" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e0d8992d3b7b044785369" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3647119078713264019" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6daf8e17e15e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4181989038406672947" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b39b2b0472ec2fef3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b69ce96375e4feac70f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1971916771012124231" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "711ff3" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b8051af1405ab672a9f481d5e75fd4bad6e08ffff47a28078302522931b5689bd4c2352bbd89f485d327bb1bbdc75959f448d1afba91b6583df28372a3a8f1b78f7098a638753ef4a3117febb3624e486bef2ffbf4b4e0d8992d3b7b0447853691b329d2b7a94410793466daf8e17e15e1b3a0968df90cea2334273f0496b39b2b0472ec2fef34a7b69ce96375e4feac70f1b1b5da7db06d01e47ff43711ff3ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 128, 81, 175, 20, 5, 171, 103, 42, 159, 72, 29, 94, 117, 253, 75, 173, 110, 8, 255, 255, + 71, 162, 128, 120, 48, 37, 34, 147, 27, 86, 137, 189, 76, 35, 82, 187, 216, 159, 72, 93, 50, 123, 177, 187, 220, + 117, 149, 159, 68, 141, 26, 251, 169, 27, 101, 131, 223, 40, 55, 42, 58, 143, 27, 120, 247, 9, 138, 99, 135, 83, + 239, 74, 49, 23, 254, 187, 54, 36, 228, 134, 190, 242, 255, 191, 75, 78, 13, 137, 146, 211, 183, 176, 68, 120, 83, + 105, 27, 50, 157, 43, 122, 148, 65, 7, 147, 70, 109, 175, 142, 23, 225, 94, 27, 58, 9, 104, 223, 144, 206, 162, + 51, 66, 115, 240, 73, 107, 57, 178, 176, 71, 46, 194, 254, 243, 74, 123, 105, 206, 150, 55, 94, 79, 234, 199, 15, + 27, 27, 93, 167, 219, 6, 208, 30, 71, 255, 67, 113, 31, 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3362, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2936f1509dc06e07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9261717979348288213" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44bca8e983f15406cf55" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "780a6ba4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "569dbaafcdd44a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fda" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28e98ab8e130f2ea" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2038195236520611857" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2831ce" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4141947055416335272" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13082774248504197221" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15485604504810445624" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7880559791945628569" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf482936f1509dc06e071b80883b6e78e742d54a44bca8e983f15406cf5544780a6ba447569dbaafcdd44a425fda41d04828e98ab8e130f2eaff80bf1b1c491fc4cfb45011432831ce1b397b26e6e490dba81bb58f59dd0eb880651bd6e7eb40396a5b381b6d5d5f60b6253b99ffff", + "cborBytes": [ + 159, 191, 72, 41, 54, 241, 80, 157, 192, 110, 7, 27, 128, 136, 59, 110, 120, 231, 66, 213, 74, 68, 188, 168, 233, + 131, 241, 84, 6, 207, 85, 68, 120, 10, 107, 164, 71, 86, 157, 186, 175, 205, 212, 74, 66, 95, 218, 65, 208, 72, + 40, 233, 138, 184, 225, 48, 242, 234, 255, 128, 191, 27, 28, 73, 31, 196, 207, 180, 80, 17, 67, 40, 49, 206, 27, + 57, 123, 38, 230, 228, 144, 219, 168, 27, 181, 143, 89, 221, 14, 184, 128, 101, 27, 214, 231, 235, 64, 57, 106, + 91, 56, 27, 109, 93, 95, 96, 182, 37, 59, 153, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3363, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2444366234470191346" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85ed0353e7" + }, + { + "_tag": "ByteArray", + "bytearray": "0bed1b8fe9e9df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14918462305533401859" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4988423138670324496" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "360fd0df04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "708217786404187821" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aa84491401" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "267231b2b2f0bee4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6676dbf11" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7127" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5607974419372709215" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f9f1b21ec2223b28e10f24585ed0353e7470bed1b8fe9e9df1bcf09066cec5f9b03ffd8669f1b453a706a31c8ab109f45360fd0df041b09d418530e3c2ead45aa84491401ffffa0a0ffbf48267231b2b2f0bee445e6676dbf114271271b4dd38705a830155fffff", + "cborBytes": [ + 159, 159, 159, 27, 33, 236, 34, 35, 178, 142, 16, 242, 69, 133, 237, 3, 83, 231, 71, 11, 237, 27, 143, 233, 233, + 223, 27, 207, 9, 6, 108, 236, 95, 155, 3, 255, 216, 102, 159, 27, 69, 58, 112, 106, 49, 200, 171, 16, 159, 69, 54, + 15, 208, 223, 4, 27, 9, 212, 24, 83, 14, 60, 46, 173, 69, 170, 132, 73, 20, 1, 255, 255, 160, 160, 255, 191, 72, + 38, 114, 49, 178, 178, 240, 190, 228, 69, 230, 103, 109, 191, 17, 66, 113, 39, 27, 77, 211, 135, 5, 168, 48, 21, + 95, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3364, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1943100916888556260" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10462008120499508177" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11357284312718326788" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17362056767802226057" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "518165f4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc8be08f47" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6641688700489095263" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bd57" + } + ] + }, + "cborHex": "9fbf1b1af747fd29e0d2e41b913084f49ba013d11b9d9d2de8b0b13c041bf0f26aa46704b58944518165f4418245bc8be08f471b5c2c04af1560d85fff42bd57ff", + "cborBytes": [ + 159, 191, 27, 26, 247, 71, 253, 41, 224, 210, 228, 27, 145, 48, 132, 244, 155, 160, 19, 209, 27, 157, 157, 45, + 232, 176, 177, 60, 4, 27, 240, 242, 106, 164, 103, 4, 181, 137, 68, 81, 129, 101, 244, 65, 130, 69, 188, 139, 224, + 143, 71, 27, 92, 44, 4, 175, 21, 96, 216, 95, 255, 66, 189, 87, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3365, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b57ceebdc6d71e04cc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9512921071563453102" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16695245328566224687" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fdb5" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12895112806000899429" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2183450967102278584" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2275075551611451682" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "14472c4e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5733772887876180714" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e590708f50573b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7414713276293409023" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c65ae75bb8fcb62" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1666363d87" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10652672898277682369" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16763105431236013138" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17184052445558615130" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "321b58f57de0" + }, + { + "_tag": "ByteArray", + "bytearray": "911cc659a5e3a5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12405638694742078218" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3cd6" + } + ] + } + ] + }, + "cborHex": "9f49b57ceebdc6d71e04ccd8669f1b8404af501ede32ae9fd8669f1be7b16d2bcf30872f9f42fdb5ffffd8669f1bb2f4a4c69c4635659f1b1e4d2d160e9d4bb8ffffd8669f1b1f92b1290af9f9229f4414472c4e1b4f9274100ca01aea47e590708f50573b1b66e65a70a0d768ff481c65ae75bb8fcb62ffffffff451666363d871b93d5e58f8a45acc1d8669f1be8a28393313e6c529f1bee7a04a77b342c5a9f46321b58f57de047911cc659a5e3a51bac29aeaa3bf1330aff423cd6ffffff", + "cborBytes": [ + 159, 73, 181, 124, 238, 189, 198, 215, 30, 4, 204, 216, 102, 159, 27, 132, 4, 175, 80, 30, 222, 50, 174, 159, 216, + 102, 159, 27, 231, 177, 109, 43, 207, 48, 135, 47, 159, 66, 253, 181, 255, 255, 216, 102, 159, 27, 178, 244, 164, + 198, 156, 70, 53, 101, 159, 27, 30, 77, 45, 22, 14, 157, 75, 184, 255, 255, 216, 102, 159, 27, 31, 146, 177, 41, + 10, 249, 249, 34, 159, 68, 20, 71, 44, 78, 27, 79, 146, 116, 16, 12, 160, 26, 234, 71, 229, 144, 112, 143, 80, 87, + 59, 27, 102, 230, 90, 112, 160, 215, 104, 255, 72, 28, 101, 174, 117, 187, 143, 203, 98, 255, 255, 255, 255, 69, + 22, 102, 54, 61, 135, 27, 147, 213, 229, 143, 138, 69, 172, 193, 216, 102, 159, 27, 232, 162, 131, 147, 49, 62, + 108, 82, 159, 27, 238, 122, 4, 167, 123, 52, 44, 90, 159, 70, 50, 27, 88, 245, 125, 224, 71, 145, 28, 198, 89, + 165, 227, 165, 27, 172, 41, 174, 170, 59, 241, 51, 10, 255, 66, 60, 214, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3366, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8039032820552586205" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4059738045589727347" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17276296032696743436" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f72" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9b45c34c135a0240fb75536" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60f0c946345b6a963186" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83e71e08c967" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "877ef0dd6279c2b985" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5362607624673716952" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f867366929ae852a7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80e2dcf80aa7d659883d95a6" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4843309209040814656" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4675777727894424954" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16802475011350390253" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17659792850064290222" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "041e88ce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5432171078276742860" + } + } + ] + }, + "cborHex": "9fd8669f1b6f9061c1f6be53dd9f1b3857163e3883a8731befc1bbb53f61360cbf424f724cd9b45c34c135a0240fb755364a60f0c946345b6a9631864683e71e08c96749877ef0dd6279c2b9851b4a6bcf38ea7a6ad849f867366929ae852a7f4c80e2dcf80aa7d659883d95a6ff80d8669f1b4336e4108e4182409f1b40e3b311f7d48d7a416a1be92e61ffdeeae5ed1bf51430081310b1aeffffffff44041e88ce1b4b62f2d097d5feccff", + "cborBytes": [ + 159, 216, 102, 159, 27, 111, 144, 97, 193, 246, 190, 83, 221, 159, 27, 56, 87, 22, 62, 56, 131, 168, 115, 27, 239, + 193, 187, 181, 63, 97, 54, 12, 191, 66, 79, 114, 76, 217, 180, 92, 52, 193, 53, 160, 36, 15, 183, 85, 54, 74, 96, + 240, 201, 70, 52, 91, 106, 150, 49, 134, 70, 131, 231, 30, 8, 201, 103, 73, 135, 126, 240, 221, 98, 121, 194, 185, + 133, 27, 74, 107, 207, 56, 234, 122, 106, 216, 73, 248, 103, 54, 105, 41, 174, 133, 42, 127, 76, 128, 226, 220, + 248, 10, 167, 214, 89, 136, 61, 149, 166, 255, 128, 216, 102, 159, 27, 67, 54, 228, 16, 142, 65, 130, 64, 159, 27, + 64, 227, 179, 17, 247, 212, 141, 122, 65, 106, 27, 233, 46, 97, 255, 222, 234, 229, 237, 27, 245, 20, 48, 8, 19, + 16, 177, 174, 255, 255, 255, 255, 68, 4, 30, 136, 206, 27, 75, 98, 242, 208, 151, 213, 254, 204, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3367, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ed2f" + } + ] + }, + "cborHex": "9f9fa0ff8042ed2fff", + "cborBytes": [159, 159, 160, 255, 128, 66, 237, 47, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3368, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2249641925408211914" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b1f3855697bc843ca80ffff", + "cborBytes": [159, 216, 102, 159, 27, 31, 56, 85, 105, 123, 200, 67, 202, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3369, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11858554140681330708" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8647d34664f17d95712c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12605175255587873074" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aca1bb7e18660c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14896988333364333990" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13547748176882849253" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16708893714859038528" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b7369c162d86768e7" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3978027616298032369" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18049380611220543875" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "389595185c42f072" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2486819196777747418" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1ba4920c29610c60144a8647d34664f17d95712c1baeee941c20dbe13247aca1bb7e18660c1bcebcbbf62951cda61bbc034530158c55e51be7e1ea4e5fee1740493b7369c162d86768e7ffbf1b3734cb0a60235cf11bfa7c4809439f998348389595185c42f0721b2282f4e23c8f53daffff", + "cborBytes": [ + 159, 191, 27, 164, 146, 12, 41, 97, 12, 96, 20, 74, 134, 71, 211, 70, 100, 241, 125, 149, 113, 44, 27, 174, 238, + 148, 28, 32, 219, 225, 50, 71, 172, 161, 187, 126, 24, 102, 12, 27, 206, 188, 187, 246, 41, 81, 205, 166, 27, 188, + 3, 69, 48, 21, 140, 85, 229, 27, 231, 225, 234, 78, 95, 238, 23, 64, 73, 59, 115, 105, 193, 98, 216, 103, 104, + 231, 255, 191, 27, 55, 52, 203, 10, 96, 35, 92, 241, 27, 250, 124, 72, 9, 67, 159, 153, 131, 72, 56, 149, 149, 24, + 92, 66, 240, 114, 27, 34, 130, 244, 226, 60, 143, 83, 218, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3370, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3841170798143518608" + } + } + ] + }, + "cborHex": "9f1b354e947d50f2b790ff", + "cborBytes": [159, 27, 53, 78, 148, 125, 80, 242, 183, 144, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3371, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16510130092741699849" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3751721985894044716" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7155080155250290137" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4352661506302136627" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6926213756350858757" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7260994949629421948" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12454110017571506717" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5864807263190344795" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2892119511376967992" + } + } + ] + } + ] + }, + "cborHex": "9f1be51fc3d84d5b2909bf1b3410cb44c93cd42c1b634bf37df123edd91b3c67c2941ea7d1331b601edab6f9b786051b64c43c6fb091297c1bacd5e31386fbca1dff9f1b5163fb21fe97645b1b2822df5f5b99b938ffff", + "cborBytes": [ + 159, 27, 229, 31, 195, 216, 77, 91, 41, 9, 191, 27, 52, 16, 203, 68, 201, 60, 212, 44, 27, 99, 75, 243, 125, 241, + 35, 237, 217, 27, 60, 103, 194, 148, 30, 167, 209, 51, 27, 96, 30, 218, 182, 249, 183, 134, 5, 27, 100, 196, 60, + 111, 176, 145, 41, 124, 27, 172, 213, 227, 19, 134, 251, 202, 29, 255, 159, 27, 81, 99, 251, 33, 254, 151, 100, + 91, 27, 40, 34, 223, 95, 91, 153, 185, 56, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3372, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13765764038924972048" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bbf09d17591f8301080ffff", + "cborBytes": [159, 216, 102, 159, 27, 191, 9, 209, 117, 145, 248, 48, 16, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3373, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07ad41fcccc365f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f798f4c66727bf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2800599419365226204" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11764186040221101618" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d30e63f08e798d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1eb19c87e4fe406c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16098298543300513204" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9479293793292610397" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14731282523007752383" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf4807ad41fcccc365f747f798f4c66727bf41541b26ddba556d6df6dc417a1ba342c8dfcefcee3247d30e63f08e798d481eb19c87e4fe406cff1bdf68a53b919d8db49fd8669f1b838d377b46c56b5d80ffffd8669f1bcc700767adcc18bf80ff80ff", + "cborBytes": [ + 159, 191, 72, 7, 173, 65, 252, 204, 195, 101, 247, 71, 247, 152, 244, 198, 103, 39, 191, 65, 84, 27, 38, 221, 186, + 85, 109, 109, 246, 220, 65, 122, 27, 163, 66, 200, 223, 206, 252, 238, 50, 71, 211, 14, 99, 240, 142, 121, 141, + 72, 30, 177, 156, 135, 228, 254, 64, 108, 255, 27, 223, 104, 165, 59, 145, 157, 141, 180, 159, 216, 102, 159, 27, + 131, 141, 55, 123, 70, 197, 107, 93, 128, 255, 255, 216, 102, 159, 27, 204, 112, 7, 103, 173, 204, 24, 191, 128, + 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3374, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16811458090443418917" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "64964690097415221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "002748" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "949482730141123370" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10207742822102775078" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3151577085504186382" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45f70f221f83e0e8116210" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6158135449685752569" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17850870800045516847" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6792730545432244775" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16372877642581779297" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17853657669281005822" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "267e1a0093e01b" + } + } + ] + } + ] + }, + "cborHex": "9f1be94e4c0ff53f2d25bf1b00e6cd0a9c332435430027481b0d2d3d83326e032a1b8da9300385fab5261b2bbca6a957bce80e4b45f70f221f83e0e81162101b5576179075427af91bf7bb086a281b282f1b5e44a0710f6f32271be3382577fd05a3611bf7c4ef0eb6ec40fe47267e1a0093e01bffff", + "cborBytes": [ + 159, 27, 233, 78, 76, 15, 245, 63, 45, 37, 191, 27, 0, 230, 205, 10, 156, 51, 36, 53, 67, 0, 39, 72, 27, 13, 45, + 61, 131, 50, 110, 3, 42, 27, 141, 169, 48, 3, 133, 250, 181, 38, 27, 43, 188, 166, 169, 87, 188, 232, 14, 75, 69, + 247, 15, 34, 31, 131, 224, 232, 17, 98, 16, 27, 85, 118, 23, 144, 117, 66, 122, 249, 27, 247, 187, 8, 106, 40, 27, + 40, 47, 27, 94, 68, 160, 113, 15, 111, 50, 39, 27, 227, 56, 37, 119, 253, 5, 163, 97, 27, 247, 196, 239, 14, 182, + 236, 64, 254, 71, 38, 126, 26, 0, 147, 224, 27, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3375, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18374862544722782054" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bd3a95b07bb1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6556166056558461796" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10481484060168896588" + } + } + } + ] + } + ] + }, + "cborHex": "9f1bff00a02156d4e76646bd3a95b07bb1bf1b5afc2e4ad9a403641b9175b6382d49404cffff", + "cborBytes": [ + 159, 27, 255, 0, 160, 33, 86, 212, 231, 102, 70, 189, 58, 149, 176, 123, 177, 191, 27, 90, 252, 46, 74, 217, 164, + 3, 100, 27, 145, 117, 182, 56, 45, 73, 64, 76, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3376, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4734660a610ffefd2f5f" + } + ] + }, + "cborHex": "9f4a4734660a610ffefd2f5fff", + "cborBytes": [159, 74, 71, 52, 102, 10, 97, 15, 254, 253, 47, 95, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3377, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "17ba354456d2196d854b555e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "976268577610843330" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4779521238760099015" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13694225873395909252" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10524854915759168230" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f910f5771fc153be17218" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15143560488067625951" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "450ddf12" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3229009256862383686" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2f98bb3474edf63bc33" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16347438176651142363" + }, + "fields": [] + } + ] + }, + "cborHex": "9f4c17ba354456d2196d854b555ed8669f1b0d8c67194ddec4c29fbf1b4254453e60bb0cc71bbe0ba9e071ba02841b920fcbc866595ae64b9f910f5771fc153be172181bd228bc07a5e973df44450ddf12ffbf1b2ccfbecfa3bafe464af2f98bb3474edf63bc33ffffffd8669f1be2ddc468c2f364db80ffff", + "cborBytes": [ + 159, 76, 23, 186, 53, 68, 86, 210, 25, 109, 133, 75, 85, 94, 216, 102, 159, 27, 13, 140, 103, 25, 77, 222, 196, + 194, 159, 191, 27, 66, 84, 69, 62, 96, 187, 12, 199, 27, 190, 11, 169, 224, 113, 186, 2, 132, 27, 146, 15, 203, + 200, 102, 89, 90, 230, 75, 159, 145, 15, 87, 113, 252, 21, 59, 225, 114, 24, 27, 210, 40, 188, 7, 165, 233, 115, + 223, 68, 69, 13, 223, 18, 255, 191, 27, 44, 207, 190, 207, 163, 186, 254, 70, 74, 242, 249, 139, 179, 71, 78, 223, + 99, 188, 51, 255, 255, 255, 216, 102, 159, 27, 226, 221, 196, 104, 194, 243, 100, 219, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3378, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "85ffa411bbf43bb870" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8290068663068966443" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a395881f08019" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6140106334413246771" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "ByteArray", + "bytearray": "482cea7f46227302" + } + ] + }, + "cborHex": "9fbf4985ffa411bbf43bb8701b730c3d86c1d2be2b479a395881f080191b55360a2df1d3d133ff1248482cea7f46227302ff", + "cborBytes": [ + 159, 191, 73, 133, 255, 164, 17, 187, 244, 59, 184, 112, 27, 115, 12, 61, 134, 193, 210, 190, 43, 71, 154, 57, 88, + 129, 240, 128, 25, 27, 85, 54, 10, 45, 241, 211, 209, 51, 255, 18, 72, 72, 44, 234, 127, 70, 34, 115, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3379, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18306197533551549507" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16873974306490815636" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d0dbfcec47e545" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c484d2730a90" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9273112290811645506" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd9050d9f1bfe0cadaa9778dc431bea2c663ac7741494ff1bfffffffffffffff09f47d0dbfcec47e545bf46c484d2730a901b80b0b67f58230e42ffffd87a80ff", + "cborBytes": [ + 159, 217, 5, 13, 159, 27, 254, 12, 173, 170, 151, 120, 220, 67, 27, 234, 44, 102, 58, 199, 116, 20, 148, 255, 27, + 255, 255, 255, 255, 255, 255, 255, 240, 159, 71, 208, 219, 252, 236, 71, 229, 69, 191, 70, 196, 132, 210, 115, 10, + 144, 27, 128, 176, 182, 127, 88, 35, 14, 66, 255, 255, 216, 122, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3380, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "741263261157772145" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "721a60ee9773b4f6f157bd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3075005887773963752" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74498b6f36" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10095847588794834546" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c75" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bea770fa070b27cf207a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b164" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10855214302973956003" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb76732f4741ae" + } + } + ] + } + ] + }, + "cborHex": "9fbf412c1b0a497f02365b4b714b721a60ee9773b4f6f157bd1b2aac9d90170075e84574498b6f361b8c1ba7e454999e72427c754abea770fa070b27cf207a42b1641b96a577e529808fa341cd47fb76732f4741aeffff", + "cborBytes": [ + 159, 191, 65, 44, 27, 10, 73, 127, 2, 54, 91, 75, 113, 75, 114, 26, 96, 238, 151, 115, 180, 246, 241, 87, 189, 27, + 42, 172, 157, 144, 23, 0, 117, 232, 69, 116, 73, 139, 111, 54, 27, 140, 27, 167, 228, 84, 153, 158, 114, 66, 124, + 117, 74, 190, 167, 112, 250, 7, 11, 39, 207, 32, 122, 66, 177, 100, 27, 150, 165, 119, 229, 41, 128, 143, 163, 65, + 205, 71, 251, 118, 115, 47, 71, 65, 174, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3381, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15227661850542957547" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7399c7f0352f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "143ccc42c47664963650a903" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13048526168788311701" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "222457ef2df2d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71cda49c966bba9c8e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44437d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14464033808042228167" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "755b4fb01e16" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee2b00" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d82a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "467857362631083006" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8076190e661" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17049317317090784408" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a45b069a65dc8826d03feb" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3772908944563206497" + } + } + ] + }, + "cborHex": "9f1bd35385c6016163eb9f9f467399c7f0352fffbf4c143ccc42c47664963650a9031bb515ad6a9d041e9547222457ef2df2d24971cda49c966bba9c8e4344437d1bc8ba921d5b98f9c746755b4fb01e1643ee2b0042d82a1b067e29cae12d43fe46e8076190e6611bec9b57c4cc1cb498ffff9f4ba45b069a65dc8826d03febff1b345c10b202957961ff", + "cborBytes": [ + 159, 27, 211, 83, 133, 198, 1, 97, 99, 235, 159, 159, 70, 115, 153, 199, 240, 53, 47, 255, 191, 76, 20, 60, 204, + 66, 196, 118, 100, 150, 54, 80, 169, 3, 27, 181, 21, 173, 106, 157, 4, 30, 149, 71, 34, 36, 87, 239, 45, 242, 210, + 73, 113, 205, 164, 156, 150, 107, 186, 156, 142, 67, 68, 67, 125, 27, 200, 186, 146, 29, 91, 152, 249, 199, 70, + 117, 91, 79, 176, 30, 22, 67, 238, 43, 0, 66, 216, 42, 27, 6, 126, 41, 202, 225, 45, 67, 254, 70, 232, 7, 97, 144, + 230, 97, 27, 236, 155, 87, 196, 204, 28, 180, 152, 255, 255, 159, 75, 164, 91, 6, 154, 101, 220, 136, 38, 208, 63, + 235, 255, 27, 52, 92, 16, 178, 2, 149, 121, 97, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3382, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4674385257627172040" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d85b502f7749" + } + ] + }, + "cborHex": "9f1b40dec0a03830bcc846d85b502f7749ff", + "cborBytes": [159, 27, 64, 222, 192, 160, 56, 48, 188, 200, 70, 216, 91, 80, 47, 119, 73, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3383, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11082824409024500986" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4135321482075438875" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "06eb2af7" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5113625723917453367" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06a47b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f93ed422e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64ce74400c12673c89" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8675420419253812396" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ce2cb9076" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5922019029617174191" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ada30b2e4d35fff0f674c10c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01e5da5a7bfc98538fe8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc2c8286" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6683477c6ec88e8e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16099484351150931608" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0f245a87efea1515" + } + ] + }, + "cborHex": "9f1b99ce1a14a7ef14fad8669f1b39639cfa6325ff1b9f4406eb2af7ffff1b46f73f80b4664837bf4306a47b451f93ed422e4964ce74400c12673c891b786548e82ecb3cac459ce2cb90761b522f3cee656f66af4cada30b2e4d35fff0f674c10c4a01e5da5a7bfc98538fe844dc2c828649b6683477c6ec88e8e241de1bdf6cdbb7f94fbe98ff480f245a87efea1515ff", + "cborBytes": [ + 159, 27, 153, 206, 26, 20, 167, 239, 20, 250, 216, 102, 159, 27, 57, 99, 156, 250, 99, 37, 255, 27, 159, 68, 6, + 235, 42, 247, 255, 255, 27, 70, 247, 63, 128, 180, 102, 72, 55, 191, 67, 6, 164, 123, 69, 31, 147, 237, 66, 46, + 73, 100, 206, 116, 64, 12, 18, 103, 60, 137, 27, 120, 101, 72, 232, 46, 203, 60, 172, 69, 156, 226, 203, 144, 118, + 27, 82, 47, 60, 238, 101, 111, 102, 175, 76, 173, 163, 11, 46, 77, 53, 255, 240, 246, 116, 193, 12, 74, 1, 229, + 218, 90, 123, 252, 152, 83, 143, 232, 68, 220, 44, 130, 134, 73, 182, 104, 52, 119, 198, 236, 136, 232, 226, 65, + 222, 27, 223, 108, 219, 183, 249, 79, 190, 152, 255, 72, 15, 36, 90, 135, 239, 234, 21, 21, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3384, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "88a37127fc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17274188234987157669" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2714766802787372080" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12135947110150829470" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a24a89c8612a" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b15f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6066635670555913654" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10414196502479143772" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10108808442011440999" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d428f862a97f8d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58eb0a450c0539" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63a5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b45e60bae4ab54" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12942051077097026136" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4588a37127fcd8669f1befba3ead59a438a59fbf1b25acca06102a0c301ba86b8b990177f59e429e1346a24a89c8612aff42b15fbf1b543104fffd32edb61b9086a88acf62835c1b8c49b3b8208fd76747d428f862a97f8d4758eb0a450c05394263a547b45e60bae4ab541bb39b66e27b547258ffffffff", + "cborBytes": [ + 159, 69, 136, 163, 113, 39, 252, 216, 102, 159, 27, 239, 186, 62, 173, 89, 164, 56, 165, 159, 191, 27, 37, 172, + 202, 6, 16, 42, 12, 48, 27, 168, 107, 139, 153, 1, 119, 245, 158, 66, 158, 19, 70, 162, 74, 137, 200, 97, 42, 255, + 66, 177, 95, 191, 27, 84, 49, 4, 255, 253, 50, 237, 182, 27, 144, 134, 168, 138, 207, 98, 131, 92, 27, 140, 73, + 179, 184, 32, 143, 215, 103, 71, 212, 40, 248, 98, 169, 127, 141, 71, 88, 235, 10, 69, 12, 5, 57, 66, 99, 165, 71, + 180, 94, 96, 186, 228, 171, 84, 27, 179, 155, 102, 226, 123, 84, 114, 88, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3385, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7fe0d4c09c8fef" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16647823248701844528" + }, + "fields": [] + } + ] + }, + "cborHex": "9f477fe0d4c09c8fefd8669f1be708f30a6e5cec3080ffff", + "cborBytes": [ + 159, 71, 127, 224, 212, 192, 156, 143, 239, 216, 102, 159, 27, 231, 8, 243, 10, 110, 92, 236, 48, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3386, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2309883728898734764" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c189d877e2244fd" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7504032106955003229" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1043662492560967217" + } + } + ] + }, + "cborHex": "9f9f1b200e5b035d76baac480c189d877e2244fdff1b6823ad71762dd55d1b0e7bd581e67ec631ff", + "cborBytes": [ + 159, 159, 27, 32, 14, 91, 3, 93, 118, 186, 172, 72, 12, 24, 157, 135, 126, 34, 68, 253, 255, 27, 104, 35, 173, + 113, 118, 45, 213, 93, 27, 14, 123, 213, 129, 230, 126, 198, 49, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3387, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05cbabca" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2424502294796400025" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17181098992761821577" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1524651908682521065" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0708df282f5635ce" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17635455859973203242" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13932263906543538220" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13722239172539651265" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11140355413231126370" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18423807572799672992" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18028639671679979882" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "503763513265766878" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16393309672719723850" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8306380277274311755" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16339898697231234747" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2904502286854051092" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + } + ] + } + ] + }, + "cborHex": "9f4405cbabcad8669f1b21a58ffdd67575999f1bee6f86812a63d989bf1b1528a6d53f2499e9480708df282f5635ceffd8669f1bf4bdb9ab01c8a52a9f1bc1595834ea86102cffffffff9f1bbe6f2fd2ea2d14c19f1b9a9a7e39653dc7621bffae835fbae052a01bfa329842f600116aff0ebf1b06fdba3f0b0241de1be380bc4ab76f2d4affffbf1b734630da643efc4b011be2c2fb4aea55f6bb1b284edd70f13ed5141bfffffffffffffff10effff", + "cborBytes": [ + 159, 68, 5, 203, 171, 202, 216, 102, 159, 27, 33, 165, 143, 253, 214, 117, 117, 153, 159, 27, 238, 111, 134, 129, + 42, 99, 217, 137, 191, 27, 21, 40, 166, 213, 63, 36, 153, 233, 72, 7, 8, 223, 40, 47, 86, 53, 206, 255, 216, 102, + 159, 27, 244, 189, 185, 171, 1, 200, 165, 42, 159, 27, 193, 89, 88, 52, 234, 134, 16, 44, 255, 255, 255, 255, 159, + 27, 190, 111, 47, 210, 234, 45, 20, 193, 159, 27, 154, 154, 126, 57, 101, 61, 199, 98, 27, 255, 174, 131, 95, 186, + 224, 82, 160, 27, 250, 50, 152, 66, 246, 0, 17, 106, 255, 14, 191, 27, 6, 253, 186, 63, 11, 2, 65, 222, 27, 227, + 128, 188, 74, 183, 111, 45, 74, 255, 255, 191, 27, 115, 70, 48, 218, 100, 62, 252, 75, 1, 27, 226, 194, 251, 74, + 234, 85, 246, 187, 27, 40, 78, 221, 112, 241, 62, 213, 20, 27, 255, 255, 255, 255, 255, 255, 255, 241, 14, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3388, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e8c87706e569c26f41d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1024642487627127518" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "193718462000759458" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cfd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8b65266f0071a742c7868e1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d118eb0891" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92a3c5024c" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d4f9d3" + } + ] + }, + "cborHex": "9f4a8e8c87706e569c26f41dbf1b0e3842e9e8c99ade1b02b039ea31fd82a2427cfd4ca8b65266f0071a742c7868e145d118eb08914592a3c5024cff43d4f9d3ff", + "cborBytes": [ + 159, 74, 142, 140, 135, 112, 110, 86, 156, 38, 244, 29, 191, 27, 14, 56, 66, 233, 232, 201, 154, 222, 27, 2, 176, + 57, 234, 49, 253, 130, 162, 66, 124, 253, 76, 168, 182, 82, 102, 240, 7, 26, 116, 44, 120, 104, 225, 69, 209, 24, + 235, 8, 145, 69, 146, 163, 197, 2, 76, 255, 67, 212, 249, 211, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3389, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e8276f7747a32b25f3639b80" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16766607165446409688" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2846267468058118135" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0101" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6071782599495400545" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e62e0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10606612158659458431" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa01325061" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11190952016200372856" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08c3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14673305814238090706" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11061726333029889184" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16965908730230501928" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10254074672852773828" + } + } + } + ] + } + ] + }, + "cborHex": "9f4ce8276f7747a32b25f3639b80d87c9fa0d8669f1be8aef46238f3cdd880ffffbf1b277ff92e995ac7f74201011b54434e1ac4523c61432e62e01b9332418fe33c757f45fa013250611b9b4e3f91081092784208c31bcba20de54255d5d21b9983257e0ad4b4a01beb730419d51672281b8e4dca9627b82bc4ffff", + "cborBytes": [ + 159, 76, 232, 39, 111, 119, 71, 163, 43, 37, 243, 99, 155, 128, 216, 124, 159, 160, 216, 102, 159, 27, 232, 174, + 244, 98, 56, 243, 205, 216, 128, 255, 255, 191, 27, 39, 127, 249, 46, 153, 90, 199, 247, 66, 1, 1, 27, 84, 67, 78, + 26, 196, 82, 60, 97, 67, 46, 98, 224, 27, 147, 50, 65, 143, 227, 60, 117, 127, 69, 250, 1, 50, 80, 97, 27, 155, + 78, 63, 145, 8, 16, 146, 120, 66, 8, 195, 27, 203, 162, 13, 229, 66, 85, 213, 210, 27, 153, 131, 37, 126, 10, 212, + 180, 160, 27, 235, 115, 4, 25, 213, 22, 114, 40, 27, 142, 77, 202, 150, 39, 184, 43, 196, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3390, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74389b23e99c07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79d2f17015e0d434" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b55ac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b310d8fa40381126" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3327373396766838678" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7cc67449a34845223" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9034321245569771768" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf41114774389b23e99c074879d2f17015e0d434431b55ac48b310d8fa403811261b2e2d3479a55f4f9649b7cc67449a348452231b7d605b4e94f368f8ffa0ff", + "cborBytes": [ + 159, 191, 65, 17, 71, 116, 56, 155, 35, 233, 156, 7, 72, 121, 210, 241, 112, 21, 224, 212, 52, 67, 27, 85, 172, + 72, 179, 16, 216, 250, 64, 56, 17, 38, 27, 46, 45, 52, 121, 165, 95, 79, 150, 73, 183, 204, 103, 68, 154, 52, 132, + 82, 35, 27, 125, 96, 91, 78, 148, 243, 104, 248, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3391, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2666076858308414414" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2945575652096694759" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3865134729627921591" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9c9eb098" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9930632066314260943" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b24ffcec6f35ccbce9f1b28e0c973024359e79f1b35a3b78ee87f6cb7ff449c9eb0981b89d0b13fe3c3d1cfffff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 36, 255, 206, 198, 243, 92, 203, 206, 159, 27, 40, 224, 201, 115, 2, 67, 89, 231, 159, 27, + 53, 163, 183, 142, 232, 127, 108, 183, 255, 68, 156, 158, 176, 152, 27, 137, 208, 177, 63, 227, 195, 209, 207, + 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3392, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a505020701f802e53c02" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5918018262202099638" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5412729750168565042" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d803" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11883055981484267624" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "82d9" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f805fa2407b00604" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "273091499302070790" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "648a" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2198939087731855109" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f4aa505020701f802e53c02d8669f1b5221064124d4a7b680ff07d905049f41a31b4b1de107a7fc7532ffff42d803d8669f1ba4e91874be7358689f4282d9a048f805fa2407b00604d8669f1b03ca37458f142a069f42648affffffff9f9f1b1e84337326fa8f05ffffff", + "cborBytes": [ + 159, 159, 74, 165, 5, 2, 7, 1, 248, 2, 229, 60, 2, 216, 102, 159, 27, 82, 33, 6, 65, 36, 212, 167, 182, 128, 255, + 7, 217, 5, 4, 159, 65, 163, 27, 75, 29, 225, 7, 167, 252, 117, 50, 255, 255, 66, 216, 3, 216, 102, 159, 27, 164, + 233, 24, 116, 190, 115, 88, 104, 159, 66, 130, 217, 160, 72, 248, 5, 250, 36, 7, 176, 6, 4, 216, 102, 159, 27, 3, + 202, 55, 69, 143, 20, 42, 6, 159, 66, 100, 138, 255, 255, 255, 255, 159, 159, 27, 30, 132, 51, 115, 38, 250, 143, + 5, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3393, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7233016587251670133" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "59d4ddaa66" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8822217791065135099" + } + }, + { + "_tag": "ByteArray", + "bytearray": "16fd" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3813145651593129551" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b316b45d167c69b3ab4de411" + }, + { + "_tag": "ByteArray", + "bytearray": "053c" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2893476279720432870" + } + } + ] + }, + "cborHex": "9f1b6460d64391a4dc759f4559d4ddaa669f1b7a6ed056bf9197fb4216fdffffd8669f1b34eb03c46808ae4f9f4cb316b45d167c69b3ab4de41142053c80ffffa01b2827b1589ac154e6ff", + "cborBytes": [ + 159, 27, 100, 96, 214, 67, 145, 164, 220, 117, 159, 69, 89, 212, 221, 170, 102, 159, 27, 122, 110, 208, 86, 191, + 145, 151, 251, 66, 22, 253, 255, 255, 216, 102, 159, 27, 52, 235, 3, 196, 104, 8, 174, 79, 159, 76, 179, 22, 180, + 93, 22, 124, 105, 179, 171, 77, 228, 17, 66, 5, 60, 128, 255, 255, 160, 27, 40, 39, 177, 88, 154, 193, 84, 230, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3394, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14195787629283359466" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "23a5d179af2fafe343" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3660659355095421630" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46d52ca80e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b46" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92598f7e9fdd6837b36be768" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17672557946776430966" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a93230" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16251f99b9362e0f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcbb6308343fdae835b2a6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e482d552de71af522593808" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8735062299844485804" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3174c2" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1993207272781573992" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10984615690157715856" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3310993849172024368" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13014943629496200236" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1017883261153112479" + } + } + ] + } + ] + }, + "cborHex": "9fbf41171bc50191a2e651baea4923a5d179af2fafe3431b32cd4649d82c52be4546d52ca80e427b464c92598f7e9fdd6837b36be7681bf54189d1c21da97643a932304816251f99b9362e0f4bbcbb6308343fdae835b2a64c8e482d552de71af522593808ffd8669f1b79392ce1a12322ac80ff9f433174c2bf1b1ba94b7441deef681b987131c56e0871901b2df3035d0966dc301bb49e5e465fdaac2cff1b0e203f6edbd8f19fffff", + "cborBytes": [ + 159, 191, 65, 23, 27, 197, 1, 145, 162, 230, 81, 186, 234, 73, 35, 165, 209, 121, 175, 47, 175, 227, 67, 27, 50, + 205, 70, 73, 216, 44, 82, 190, 69, 70, 213, 44, 168, 14, 66, 123, 70, 76, 146, 89, 143, 126, 159, 221, 104, 55, + 179, 107, 231, 104, 27, 245, 65, 137, 209, 194, 29, 169, 118, 67, 169, 50, 48, 72, 22, 37, 31, 153, 185, 54, 46, + 15, 75, 188, 187, 99, 8, 52, 63, 218, 232, 53, 178, 166, 76, 142, 72, 45, 85, 45, 231, 26, 245, 34, 89, 56, 8, + 255, 216, 102, 159, 27, 121, 57, 44, 225, 161, 35, 34, 172, 128, 255, 159, 67, 49, 116, 194, 191, 27, 27, 169, 75, + 116, 65, 222, 239, 104, 27, 152, 113, 49, 197, 110, 8, 113, 144, 27, 45, 243, 3, 93, 9, 102, 220, 48, 27, 180, + 158, 94, 70, 95, 218, 172, 44, 255, 27, 14, 32, 63, 110, 219, 216, 241, 159, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3395, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "07cb0202f9" + } + ] + }, + "cborHex": "9f4507cb0202f9ff", + "cborBytes": [159, 69, 7, 203, 2, 2, 249, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3396, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6b20595de78e97" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "904006057025867208" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "58b659829d055877ad3a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14904713838798348484" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef46dd3aea23839b" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8690366370110930514" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15873481929463586593" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14724206668741744563" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16303936117490555287" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6a5bb884b908a6a0ccca8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18157893326347544198" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1323830083220873733" + } + } + } + ] + } + ] + }, + "cborHex": "9f476b20595de78e97d8669f1b0c8bacb81fd40dc89fbf4a58b659829d055877ad3a1bced82e44906ca0c441c848ef46dd3aea23839bffffff1b789a622b8a767e52bf1bdc49efb6aa425f211bcc56e3f3f9ca17b31be243378453af99974bf6a5bb884b908a6a0ccca81bfbfdcbc69261a6861b125f30725d5b2205ffff", + "cborBytes": [ + 159, 71, 107, 32, 89, 93, 231, 142, 151, 216, 102, 159, 27, 12, 139, 172, 184, 31, 212, 13, 200, 159, 191, 74, 88, + 182, 89, 130, 157, 5, 88, 119, 173, 58, 27, 206, 216, 46, 68, 144, 108, 160, 196, 65, 200, 72, 239, 70, 221, 58, + 234, 35, 131, 155, 255, 255, 255, 27, 120, 154, 98, 43, 138, 118, 126, 82, 191, 27, 220, 73, 239, 182, 170, 66, + 95, 33, 27, 204, 86, 227, 243, 249, 202, 23, 179, 27, 226, 67, 55, 132, 83, 175, 153, 151, 75, 246, 165, 187, 136, + 75, 144, 138, 106, 12, 204, 168, 27, 251, 253, 203, 198, 146, 97, 166, 134, 27, 18, 95, 48, 114, 93, 91, 34, 5, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3397, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1873946808601774685" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "086db7ff068d0300c901167b" + } + ] + }, + "cborHex": "9fd905049f1b1a0198b19eaf8a5dff4c086db7ff068d0300c901167bff", + "cborBytes": [ + 159, 217, 5, 4, 159, 27, 26, 1, 152, 177, 158, 175, 138, 93, 255, 76, 8, 109, 183, 255, 6, 141, 3, 0, 201, 1, 22, + 123, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3398, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4507086718706482868" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16661807387059952562" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4af0515fbd895a9a0a2fb8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6cd2fa7a8915de18a4c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5899369069983170738" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12919228929806945955" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9799042803588595331" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e34e91e466" + }, + { + "_tag": "ByteArray", + "bytearray": "68e0c90fce7d0372473bfb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15453088085559266137" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "159513701946240358" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2473315192227393060" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2252616027911424885" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1ac37bbc637b6798b59a3d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9402744030802695744" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a3e972436" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18182992364438473619" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c3a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2057420161711024258" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3e8c637db8617eb49f80bf1be73aa18a5db01bb24b4af0515fbd895a9a0a2fb84a6cd2fa7a8915de18a4c01b51dec4e9b74600b2ffd8669f1bb34a52433d17cea39f1b87fd318326befe8345e34e91e4664b68e0c90fce7d0372473bfb1bd67465bd6694cb59ffffd8669f1b0236b4dde5502d669f1b2252fb102a4a6e241b1f42e657af030b754b1ac37bbc637b6798b59a3d1b827d41e0cdeb5640ffffffffbf455a3e9724361bfc56f737c3fecb93427c3a1b1c8d6cbc84832882ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 62, 140, 99, 125, 184, 97, 126, 180, 159, 128, 191, 27, 231, 58, 161, 138, 93, 176, 27, + 178, 75, 74, 240, 81, 95, 189, 137, 90, 154, 10, 47, 184, 74, 108, 210, 250, 122, 137, 21, 222, 24, 164, 192, 27, + 81, 222, 196, 233, 183, 70, 0, 178, 255, 216, 102, 159, 27, 179, 74, 82, 67, 61, 23, 206, 163, 159, 27, 135, 253, + 49, 131, 38, 190, 254, 131, 69, 227, 78, 145, 228, 102, 75, 104, 224, 201, 15, 206, 125, 3, 114, 71, 59, 251, 27, + 214, 116, 101, 189, 102, 148, 203, 89, 255, 255, 216, 102, 159, 27, 2, 54, 180, 221, 229, 80, 45, 102, 159, 27, + 34, 82, 251, 16, 42, 74, 110, 36, 27, 31, 66, 230, 87, 175, 3, 11, 117, 75, 26, 195, 123, 188, 99, 123, 103, 152, + 181, 154, 61, 27, 130, 125, 65, 224, 205, 235, 86, 64, 255, 255, 255, 255, 191, 69, 90, 62, 151, 36, 54, 27, 252, + 86, 247, 55, 195, 254, 203, 147, 66, 124, 58, 27, 28, 141, 108, 188, 132, 131, 40, 130, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3399, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "313954f2445c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15624236455441334204" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56af99f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adbaee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7077feb8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af4015" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed5413" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d93a382bf5bcf4b68098" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1958355460140361042" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e38a536245" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9599511194148088537" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf46313954f2445c1bd8d470468549ffbc4456af99f243adbaee447077feb843af401543ed54134ad93a382bf5bcf4b68098ff1b1b2d79ea499ce552bf45e38a5362451b8538509218952ad9ffff", + "cborBytes": [ + 159, 191, 70, 49, 57, 84, 242, 68, 92, 27, 216, 212, 112, 70, 133, 73, 255, 188, 68, 86, 175, 153, 242, 67, 173, + 186, 238, 68, 112, 119, 254, 184, 67, 175, 64, 21, 67, 237, 84, 19, 74, 217, 58, 56, 43, 245, 188, 244, 182, 128, + 152, 255, 27, 27, 45, 121, 234, 73, 156, 229, 82, 191, 69, 227, 138, 83, 98, 69, 27, 133, 56, 80, 146, 24, 149, + 42, 217, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3400, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "11938d5fff" + } + ] + }, + "cborHex": "9f4511938d5fffff", + "cborBytes": [159, 69, 17, 147, 141, 95, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3401, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6548623768205907562" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "10bb4ed6e7ed70d159" + }, + { + "_tag": "ByteArray", + "bytearray": "3e27" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "755058186406286420" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1285982025409976051" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1888614562626219977" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14029517364660346983" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4579356456066540956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "386981281300098879" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13751687201206207090" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16379201653821599893" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14548797264101365999" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3208616307822887345" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17129605089619341413" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1734932866215462361" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bffffffffffffffeb1b5ae1629eff97d66ad9050b9f9f4910bb4ed6e7ed70d159423e27ffbf1b0a7a816b897f54541b11d8b9d6b41956f31b1a35b4f03af72fc91bc2b2dbb62ac120671b3f8d246f2fbce59c1b055ed56cce9e2f3f1bbed7cea6622e82721be34e9d1f9886f0951bc9e7b60763efd8ef1b2c874b88304f01b11bedb895128d7bf0651b1813b83fefec45d9ffffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 27, 90, 225, 98, 158, 255, 151, 214, 106, 217, 5, 11, 159, 159, + 73, 16, 187, 78, 214, 231, 237, 112, 209, 89, 66, 62, 39, 255, 191, 27, 10, 122, 129, 107, 137, 127, 84, 84, 27, + 17, 216, 185, 214, 180, 25, 86, 243, 27, 26, 53, 180, 240, 58, 247, 47, 201, 27, 194, 178, 219, 182, 42, 193, 32, + 103, 27, 63, 141, 36, 111, 47, 188, 229, 156, 27, 5, 94, 213, 108, 206, 158, 47, 63, 27, 190, 215, 206, 166, 98, + 46, 130, 114, 27, 227, 78, 157, 31, 152, 134, 240, 149, 27, 201, 231, 182, 7, 99, 239, 216, 239, 27, 44, 135, 75, + 136, 48, 79, 1, 177, 27, 237, 184, 149, 18, 141, 123, 240, 101, 27, 24, 19, 184, 63, 239, 236, 69, 217, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3402, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13733122590041938110" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "96cb008ff609b220c168" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a02f9fdea0686" + } + ] + }, + "cborHex": "9f80d8669f1bbe95da3c045798be9f4a96cb008ff609b220c168ffff0f471a02f9fdea0686ff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 190, 149, 218, 60, 4, 87, 152, 190, 159, 74, 150, 203, 0, 143, 246, 9, 178, 32, 193, + 104, 255, 255, 15, 71, 26, 2, 249, 253, 234, 6, 134, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3403, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12971982200230869759" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17023896337139410984" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c527ff158" + }, + { + "_tag": "ByteArray", + "bytearray": "f68cc429" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "045a5df6e74a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1060435105971607391" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b53d021bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90f1dfdf52f93dcf513d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d597b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93d0d6358a16cdb1bb04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11fca101df03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d042bf9de71176211698" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26a1a40590" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bd6ddd" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4873366055345015994" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dbc7a8d5c9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16899171081375237457" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "892564" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "858240418a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fa1975e810180" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1419719a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "280246332055339628" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12286183967079429393" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "522265101118135383" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "771511128694320663" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15046218541917042882" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8f456b3cca5a77fe" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bb405bd1525737affd8669f1bec410785ac44a8289f457c527ff15844f68cc42980bf46045a5df6e74a1b0eb76c1c46ca975f454b53d021bb41104a90f1dfdf52f93dcf513d43d597b54a93d0d6358a16cdb1bb044611fca101df034ad042bf9de711762116984526a1a40590ffffff43bd6dddbf1b43a1ac9b6d494cba45dbc7a8d5c91bea85ea9017ecc55143892564ff9fbf45858240418a471fa1975e81018045e1419719a51b03e3a28ddfc3c26cff1baa814b391ade75111b073f7557a6badc571b0ab4f548ae15ee17d8669f1bd0cee80babdc78c29f488f456b3cca5a77feffffffff", + "cborBytes": [ + 159, 27, 180, 5, 189, 21, 37, 115, 122, 255, 216, 102, 159, 27, 236, 65, 7, 133, 172, 68, 168, 40, 159, 69, 124, + 82, 127, 241, 88, 68, 246, 140, 196, 41, 128, 191, 70, 4, 90, 93, 246, 231, 74, 27, 14, 183, 108, 28, 70, 202, + 151, 95, 69, 75, 83, 208, 33, 187, 65, 16, 74, 144, 241, 223, 223, 82, 249, 61, 207, 81, 61, 67, 213, 151, 181, + 74, 147, 208, 214, 53, 138, 22, 205, 177, 187, 4, 70, 17, 252, 161, 1, 223, 3, 74, 208, 66, 191, 157, 231, 17, + 118, 33, 22, 152, 69, 38, 161, 164, 5, 144, 255, 255, 255, 67, 189, 109, 221, 191, 27, 67, 161, 172, 155, 109, 73, + 76, 186, 69, 219, 199, 168, 213, 201, 27, 234, 133, 234, 144, 23, 236, 197, 81, 67, 137, 37, 100, 255, 159, 191, + 69, 133, 130, 64, 65, 138, 71, 31, 161, 151, 94, 129, 1, 128, 69, 225, 65, 151, 25, 165, 27, 3, 227, 162, 141, + 223, 195, 194, 108, 255, 27, 170, 129, 75, 57, 26, 222, 117, 17, 27, 7, 63, 117, 87, 166, 186, 220, 87, 27, 10, + 180, 245, 72, 174, 21, 238, 23, 216, 102, 159, 27, 208, 206, 232, 11, 171, 220, 120, 194, 159, 72, 143, 69, 107, + 60, 202, 90, 119, 254, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3404, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "67" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6242931054417023696" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d9573377fb0e53" + } + ] + } + ] + }, + "cborHex": "9f4167d8669f1b56a358b7afc812d09f47d9573377fb0e53ffffff", + "cborBytes": [ + 159, 65, 103, 216, 102, 159, 27, 86, 163, 88, 183, 175, 200, 18, 208, 159, 71, 217, 87, 51, 119, 251, 14, 83, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3405, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa208c109600208af8a543" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6191275581082130672" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1012667459707133744" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2918409976765768048" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7204449611426977995" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e90a4f8e56b41f85bf76aaa0" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4958776102468409103" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2972738415090947478" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6889633073841428168" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5aee00040c7193664fe066c1" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1754207593061376096" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "47d5faba093e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11856365817459222555" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac96fe8f82e7858f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3a8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c42ca8306685" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16495480456664632805" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb56a5ea9a88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1986072882390013312" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0846560c4501821" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2a35ce876e7d48ba0f256b0" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3153078661015776748" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "391e682b3d1c3196e326" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67b31f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e62a9c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8127730c8ab4e0ea0c0df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18087619164078516456" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4251552908651631722" + } + } + ] + } + ] + }, + "cborHex": "9f4bfa208c109600208af8a543d8669f1b55ebd45694f358f09fbf1b0e0db7b07370df301b28804669561461701b63fb58c0334e58cb4ce90a4f8e56b41f85bf76aaa0ffa0bf1b44d11c97ac53570f1b294149d699a755961b5f9ce4c71f19d6c84c5aee00040c7193664fe066c1ffffff1b18583282feb760609fbf4647d5faba093e1ba48a45e4acbda81b48ac96fe8f82e7858f42b3a846c42ca83066851be4ebb8141ae4cde546cb56a5ea9a881b1b8ff2c38ce4958048f0846560c45018214ca2a35ce876e7d48ba0f256b0ff80bf1b2bc1fc5622b5adec4a391e682b3d1c3196e3264367b31f43e62a9c4ba8127730c8ab4e0ea0c0df1bfb0421cc2372a8e8ff1b3b008cd83ff5946affff", + "cborBytes": [ + 159, 75, 250, 32, 140, 16, 150, 0, 32, 138, 248, 165, 67, 216, 102, 159, 27, 85, 235, 212, 86, 148, 243, 88, 240, + 159, 191, 27, 14, 13, 183, 176, 115, 112, 223, 48, 27, 40, 128, 70, 105, 86, 20, 97, 112, 27, 99, 251, 88, 192, + 51, 78, 88, 203, 76, 233, 10, 79, 142, 86, 180, 31, 133, 191, 118, 170, 160, 255, 160, 191, 27, 68, 209, 28, 151, + 172, 83, 87, 15, 27, 41, 65, 73, 214, 153, 167, 85, 150, 27, 95, 156, 228, 199, 31, 25, 214, 200, 76, 90, 238, 0, + 4, 12, 113, 147, 102, 79, 224, 102, 193, 255, 255, 255, 27, 24, 88, 50, 130, 254, 183, 96, 96, 159, 191, 70, 71, + 213, 250, 186, 9, 62, 27, 164, 138, 69, 228, 172, 189, 168, 27, 72, 172, 150, 254, 143, 130, 231, 133, 143, 66, + 179, 168, 70, 196, 44, 168, 48, 102, 133, 27, 228, 235, 184, 20, 26, 228, 205, 229, 70, 203, 86, 165, 234, 154, + 136, 27, 27, 143, 242, 195, 140, 228, 149, 128, 72, 240, 132, 101, 96, 196, 80, 24, 33, 76, 162, 163, 92, 232, + 118, 231, 212, 139, 160, 242, 86, 176, 255, 128, 191, 27, 43, 193, 252, 86, 34, 181, 173, 236, 74, 57, 30, 104, + 43, 61, 28, 49, 150, 227, 38, 67, 103, 179, 31, 67, 230, 42, 156, 75, 168, 18, 119, 48, 200, 171, 78, 14, 160, + 192, 223, 27, 251, 4, 33, 204, 35, 114, 168, 232, 255, 27, 59, 0, 140, 216, 63, 245, 148, 106, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3406, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "83179fb848bc7b78948fdc" + } + ] + }, + "cborHex": "9f4b83179fb848bc7b78948fdcff", + "cborBytes": [159, 75, 131, 23, 159, 184, 72, 188, 123, 120, 148, 143, 220, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3407, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12105745099478501811" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8282874881710081047" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4411b4f02df972adb14cdebf" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15983053457576201676" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6aabbc681d3bda" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2858363050050295885" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14860000594762455772" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0e8e7e6f82178020e1" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d27b12" + }, + { + "_tag": "ByteArray", + "bytearray": "cadb65df0a394f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7373078713618804072" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9014619408463117488" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1601812b4302fd0cf0a5" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6734610044935558648" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1226528187440456092" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9622793139450708704" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e165425e809007" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15996318271358715622" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17776532643190534278" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4158593132675230905" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba8003f076bd789b39fd8669f1b72f2aed20355c4179f4c4411b4f02df972adb14cdebfffffd8669f1bddcf367014e88dcc9f476aabbc681d3bda1b27aaf20cbd59984dffff9f1bce3953cf2ce8dadc490e8e7e6f82178020e1ff9f43d27b1247cadb65df0a394f1b665270069a3e2d681b7d1a5c972ac93cb04a1601812b4302fd0cf0a5ff1b5d762427852955f8ffffbf1b110580e35764619c1b858b0760680682e047e165425e8090071bddfe56b7366d46e6ffbf1bf6b2ee413f81f0861b39b64a6bc67c6cb9ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 168, 0, 63, 7, 107, 215, 137, 179, 159, 216, 102, 159, 27, 114, 242, 174, 210, 3, 85, 196, + 23, 159, 76, 68, 17, 180, 240, 45, 249, 114, 173, 177, 76, 222, 191, 255, 255, 216, 102, 159, 27, 221, 207, 54, + 112, 20, 232, 141, 204, 159, 71, 106, 171, 188, 104, 29, 59, 218, 27, 39, 170, 242, 12, 189, 89, 152, 77, 255, + 255, 159, 27, 206, 57, 83, 207, 44, 232, 218, 220, 73, 14, 142, 126, 111, 130, 23, 128, 32, 225, 255, 159, 67, + 210, 123, 18, 71, 202, 219, 101, 223, 10, 57, 79, 27, 102, 82, 112, 6, 154, 62, 45, 104, 27, 125, 26, 92, 151, 42, + 201, 60, 176, 74, 22, 1, 129, 43, 67, 2, 253, 12, 240, 165, 255, 27, 93, 118, 36, 39, 133, 41, 85, 248, 255, 255, + 191, 27, 17, 5, 128, 227, 87, 100, 97, 156, 27, 133, 139, 7, 96, 104, 6, 130, 224, 71, 225, 101, 66, 94, 128, 144, + 7, 27, 221, 254, 86, 183, 54, 109, 70, 230, 255, 191, 27, 246, 178, 238, 65, 63, 129, 240, 134, 27, 57, 182, 74, + 107, 198, 124, 108, 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3408, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a588dbed6" + }, + { + "_tag": "ByteArray", + "bytearray": "9ef5535da64a8574e3" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17270419715177120481" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2896174542132766199" + } + } + ] + }, + "cborHex": "9f459a588dbed6499ef5535da64a8574e3bf1befacdb3a750902e14118ff1b28314766c75a65f7ff", + "cborBytes": [ + 159, 69, 154, 88, 141, 190, 214, 73, 158, 245, 83, 93, 166, 74, 133, 116, 227, 191, 27, 239, 172, 219, 58, 117, 9, + 2, 225, 65, 24, 255, 27, 40, 49, 71, 102, 199, 90, 101, 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3409, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3195655984676498430" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12090152998954302529" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "df7df6a62e18454609" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9513193605475616366" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4af9" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10568406889030831526" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11467907129284828759" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14186476648505807256" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13678905012286181171" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c273379f4070d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b87" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c79140220a2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5417046984741980135" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4109019556137883271" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9d3404090277259d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13472955228803665995" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8a5758da69" + } + ] + }, + "cborHex": "9fd8669f1b2c59402fcefe6bfe9f9f1ba7c8da189ecb7c41ff49df7df6a62e184546091b8405a72e5de4466e424af9ffffbf1b92aa86125e794da61b9f2630c646311e571bc4e07d59409011981bbdd53ba27da0cf33477c273379f4070d426b8746c79140220a2d1b4b2d3788292587e7ff1b39062b840abb5687bf49b9d3404090277259d51bbaf98d65d795904bff458a5758da69ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 44, 89, 64, 47, 206, 254, 107, 254, 159, 159, 27, 167, 200, 218, 24, 158, 203, 124, 65, + 255, 73, 223, 125, 246, 166, 46, 24, 69, 70, 9, 27, 132, 5, 167, 46, 93, 228, 70, 110, 66, 74, 249, 255, 255, 191, + 27, 146, 170, 134, 18, 94, 121, 77, 166, 27, 159, 38, 48, 198, 70, 49, 30, 87, 27, 196, 224, 125, 89, 64, 144, 17, + 152, 27, 189, 213, 59, 162, 125, 160, 207, 51, 71, 124, 39, 51, 121, 244, 7, 13, 66, 107, 135, 70, 199, 145, 64, + 34, 10, 45, 27, 75, 45, 55, 136, 41, 37, 135, 231, 255, 27, 57, 6, 43, 132, 10, 187, 86, 135, 191, 73, 185, 211, + 64, 64, 144, 39, 114, 89, 213, 27, 186, 249, 141, 101, 215, 149, 144, 75, 255, 69, 138, 87, 88, 218, 105, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3410, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "73e15b086395" + } + ] + }, + "cborHex": "9f4673e15b086395ff", + "cborBytes": [159, 70, 115, 225, 91, 8, 99, 149, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3411, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff924169" + } + ] + }, + "cborHex": "9f44ff924169ff", + "cborBytes": [159, 68, 255, 146, 65, 105, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3412, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "de01c5124512" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14416466723814236603" + } + } + ] + }, + "cborHex": "9f46de01c51245121bc811941a852fe1bbff", + "cborBytes": [159, 70, 222, 1, 197, 18, 69, 18, 27, 200, 17, 148, 26, 133, 47, 225, 187, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3413, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "318285585575886453" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b046ac70dc160be7580ffff", + "cborBytes": [159, 216, 102, 159, 27, 4, 106, 199, 13, 193, 96, 190, 117, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3414, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3933701079792869387" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6963ad32bdbbbf7a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2685444195537612279" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13129490790710365615" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9528528704492412504" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6582479239322070004" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9644073962339337514" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3697504a599fe00b9f9f486963ad32bdbbbf7a1b25449d448b276df71bb635524fa60dcdaf1b843c225f57621e58ffffff9f1b5b59a9fe212cebf41b85d6a22c18d4852affff", + "cborBytes": [ + 159, 216, 102, 159, 27, 54, 151, 80, 74, 89, 159, 224, 11, 159, 159, 72, 105, 99, 173, 50, 189, 187, 191, 122, 27, + 37, 68, 157, 68, 139, 39, 109, 247, 27, 182, 53, 82, 79, 166, 13, 205, 175, 27, 132, 60, 34, 95, 87, 98, 30, 88, + 255, 255, 255, 159, 27, 91, 89, 169, 254, 33, 44, 235, 244, 27, 133, 214, 162, 44, 24, 212, 133, 42, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3415, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "997e14d2fbfe076204fa06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "889d048b79" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8b83c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + } + ] + } + ] + }, + "cborHex": "9fa0a0bf4b997e14d2fbfe076204fa0645889d048b7943f8b83c1bfffffffffffffffaffff", + "cborBytes": [ + 159, 160, 160, 191, 75, 153, 126, 20, 210, 251, 254, 7, 98, 4, 250, 6, 69, 136, 157, 4, 139, 121, 67, 248, 184, + 60, 27, 255, 255, 255, 255, 255, 255, 255, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3416, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4dc609492a7045fb" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "580561218714367496" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13272209590164043178" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b6bbed0fe2ce0d740934" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17367054938437708690" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13287762187942879125" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11677558434853499410" + } + }, + { + "_tag": "ByteArray", + "bytearray": "83d57c47" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7484eccee4ca79" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11425784009201399986" + } + } + ] + }, + "cborHex": "9f9f484dc609492a7045fbd8669f1b080e915a3bd676089f1bb8305c4d9642b5aa4ab6bbed0fe2ce0d7409341bf1042c73b045eb92ffffd8669f1bb8679d4ef033df959f1ba20f0586b14f32124483d57c47ffff477484eccee4ca79ff1b9e908a051cc9b8b2ff", + "cborBytes": [ + 159, 159, 72, 77, 198, 9, 73, 42, 112, 69, 251, 216, 102, 159, 27, 8, 14, 145, 90, 59, 214, 118, 8, 159, 27, 184, + 48, 92, 77, 150, 66, 181, 170, 74, 182, 187, 237, 15, 226, 206, 13, 116, 9, 52, 27, 241, 4, 44, 115, 176, 69, 235, + 146, 255, 255, 216, 102, 159, 27, 184, 103, 157, 78, 240, 51, 223, 149, 159, 27, 162, 15, 5, 134, 177, 79, 50, 18, + 68, 131, 213, 124, 71, 255, 255, 71, 116, 132, 236, 206, 228, 202, 121, 255, 27, 158, 144, 138, 5, 28, 201, 184, + 178, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3417, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04d9fce1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16615072712947720282" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c29c96" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10546380527783713218" + } + } + ] + } + ] + }, + "cborHex": "9fbf4404d9fce11be694989a1c88e05aff43c29c96d8669f1bfffffffffffffff09f1b925c453680a519c2ffffff", + "cborBytes": [ + 159, 191, 68, 4, 217, 252, 225, 27, 230, 148, 152, 154, 28, 136, 224, 90, 255, 67, 194, 156, 150, 216, 102, 159, + 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 27, 146, 92, 69, 54, 128, 165, 25, 194, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3418, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "39666fad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9772876427286852244" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a41eb4dd68bd8a662" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "073032d57bfea2" + }, + { + "_tag": "ByteArray", + "bytearray": "4b2bbaee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4073309951407857888" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18337967997991824941" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1924c49a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f916963604ca3823" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1480df1d12d60d694" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "47542109266403993" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03fdbe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fbe4e0492" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06bcfd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6790821489845093387" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c50f658f9ffc4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c5fa7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a670c94a7a06c3c76d48d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1399626322201353116" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba31fc635ad3b08945" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6855937811795232225" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db7bb97811" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12218276765365846476" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4439666fad1b87a03b54ea38b294498a41eb4dd68bd8a6629f9f47073032d57bfea2444b2bbaee1b38874dd1c9baa0e01bfe7d8cbc46c8ae2dff80bf441924c49a48f916963604ca382349a1480df1d12d60d6941b00a8e74be6b26299ffbf4303fdbe456fbe4e04924306bcfd1b5e3dd82a6b4e440b473c50f658f9ffc4434c5fa74ba670c94a7a06c3c76d48d11b136c78b979191b9c49ba31fc635ad3b089451b5f252f1d923945e145db7bb978111ba99009fb9f0a41ccffffff", + "cborBytes": [ + 159, 68, 57, 102, 111, 173, 27, 135, 160, 59, 84, 234, 56, 178, 148, 73, 138, 65, 235, 77, 214, 139, 216, 166, 98, + 159, 159, 71, 7, 48, 50, 213, 123, 254, 162, 68, 75, 43, 186, 238, 27, 56, 135, 77, 209, 201, 186, 160, 224, 27, + 254, 125, 140, 188, 70, 200, 174, 45, 255, 128, 191, 68, 25, 36, 196, 154, 72, 249, 22, 150, 54, 4, 202, 56, 35, + 73, 161, 72, 13, 241, 209, 45, 96, 214, 148, 27, 0, 168, 231, 75, 230, 178, 98, 153, 255, 191, 67, 3, 253, 190, + 69, 111, 190, 78, 4, 146, 67, 6, 188, 253, 27, 94, 61, 216, 42, 107, 78, 68, 11, 71, 60, 80, 246, 88, 249, 255, + 196, 67, 76, 95, 167, 75, 166, 112, 201, 74, 122, 6, 195, 199, 109, 72, 209, 27, 19, 108, 120, 185, 121, 25, 27, + 156, 73, 186, 49, 252, 99, 90, 211, 176, 137, 69, 27, 95, 37, 47, 29, 146, 57, 69, 225, 69, 219, 123, 185, 120, + 17, 27, 169, 144, 9, 251, 159, 10, 65, 204, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3419, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e56d1efb53b4" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + "cborHex": "9f46e56d1efb53b4a0800fff", + "cborBytes": [159, 70, 229, 109, 30, 251, 83, 180, 160, 128, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3420, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "797c10b9f70f6b68" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3696226123263223133" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d705915d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e05b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a64885370412a5464716b75a" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1559669627600138551" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1769318546564881536" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8c5d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10712006237715614342" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17473640864010827566" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4386300044690908535" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14827029129904520465" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8118300470624269419" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16315007955800856517" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86fba995dd29" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff29fbf48797c10b9f70f6b681b334ba2135e9fa55d41c544d705915d42e05b4ca64885370412a5464716b75aff1b15a50f4348127137d8669f1b188de1d806829c809f428c5dffffd8669f1b94a8b0eb26ceca869f1bf27ed7c9581d772effffbf1b3cdf44a6aa14e5771bcdc4306fca53fd111b70a9ff43f372346b41b01be26a8d4b912e97c54686fba995dd29ffffffd9050780ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 191, 72, 121, 124, 16, 185, 247, 15, 107, + 104, 27, 51, 75, 162, 19, 94, 159, 165, 93, 65, 197, 68, 215, 5, 145, 93, 66, 224, 91, 76, 166, 72, 133, 55, 4, + 18, 165, 70, 71, 22, 183, 90, 255, 27, 21, 165, 15, 67, 72, 18, 113, 55, 216, 102, 159, 27, 24, 141, 225, 216, 6, + 130, 156, 128, 159, 66, 140, 93, 255, 255, 216, 102, 159, 27, 148, 168, 176, 235, 38, 206, 202, 134, 159, 27, 242, + 126, 215, 201, 88, 29, 119, 46, 255, 255, 191, 27, 60, 223, 68, 166, 170, 20, 229, 119, 27, 205, 196, 48, 111, + 202, 83, 253, 17, 27, 112, 169, 255, 67, 243, 114, 52, 107, 65, 176, 27, 226, 106, 141, 75, 145, 46, 151, 197, 70, + 134, 251, 169, 149, 221, 41, 255, 255, 255, 217, 5, 7, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3421, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7163600772851159907" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d481f7f13fd5c15a32cf" + }, + { + "_tag": "ByteArray", + "bytearray": "4cf8b52b89283fa2e3eedb" + }, + { + "_tag": "ByteArray", + "bytearray": "9c2bc1ee13782c0a2d1701bb" + }, + { + "_tag": "ByteArray", + "bytearray": "9a" + }, + { + "_tag": "ByteArray", + "bytearray": "df24918a0d4b79dbf378" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10005141195607429734" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5b26e2e109d0f0351ff95080" + }, + { + "_tag": "ByteArray", + "bytearray": "bd3d3f13064b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11564066318939584232" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14396949142894423841" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f80d8669f1b636a38f2d281d3639f4ad481f7f13fd5c15a32cf4b4cf8b52b89283fa2e3eedb4c9c2bc1ee13782c0a2d1701bb419a4adf24918a0d4b79dbf378ffff1b8ad966e86bced2669f4c5b26e2e109d0f0351ff9508046bd3d3f13064b1ba07bd10c4b73f6e81bc7cc3cf797962f21ffffff", + "cborBytes": [ + 159, 159, 128, 216, 102, 159, 27, 99, 106, 56, 242, 210, 129, 211, 99, 159, 74, 212, 129, 247, 241, 63, 213, 193, + 90, 50, 207, 75, 76, 248, 181, 43, 137, 40, 63, 162, 227, 238, 219, 76, 156, 43, 193, 238, 19, 120, 44, 10, 45, + 23, 1, 187, 65, 154, 74, 223, 36, 145, 138, 13, 75, 121, 219, 243, 120, 255, 255, 27, 138, 217, 102, 232, 107, + 206, 210, 102, 159, 76, 91, 38, 226, 225, 9, 208, 240, 53, 31, 249, 80, 128, 70, 189, 61, 63, 19, 6, 75, 27, 160, + 123, 209, 12, 75, 115, 246, 232, 27, 199, 204, 60, 247, 151, 150, 47, 33, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3422, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12820727676887898370" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "88561efe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13457582681628434488" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17601136701566134930" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8776197789638550146" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2a72b0fafb013ab3bdb482fc" + }, + { + "_tag": "ByteArray", + "bytearray": "d359bdce12608f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14603150163405449958" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7291171031713246595" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d69efddfe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0e92cb31811" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aeb7598707c0" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b18c259bd5e6dd7f1bab04e3" + }, + { + "_tag": "ByteArray", + "bytearray": "9bb1c62f2d5a17" + } + ] + }, + "cborHex": "9f9fa0ff1bb1ec5fe51eec19029f9f4488561efe1bbac2f025c9e960381bf443cc9343f0aa921b79cb516431f962824175ff9f4c2a72b0fafb013ab3bdb482fc47d359bdce12608f1bcaa8cfb3eb782ae6ff1b652f716c4de2ed83bf452d69efddfe46b0e92cb31811ff9f46aeb7598707c0ffff4cb18c259bd5e6dd7f1bab04e3479bb1c62f2d5a17ff", + "cborBytes": [ + 159, 159, 160, 255, 27, 177, 236, 95, 229, 30, 236, 25, 2, 159, 159, 68, 136, 86, 30, 254, 27, 186, 194, 240, 37, + 201, 233, 96, 56, 27, 244, 67, 204, 147, 67, 240, 170, 146, 27, 121, 203, 81, 100, 49, 249, 98, 130, 65, 117, 255, + 159, 76, 42, 114, 176, 250, 251, 1, 58, 179, 189, 180, 130, 252, 71, 211, 89, 189, 206, 18, 96, 143, 27, 202, 168, + 207, 179, 235, 120, 42, 230, 255, 27, 101, 47, 113, 108, 77, 226, 237, 131, 191, 69, 45, 105, 239, 221, 254, 70, + 176, 233, 44, 179, 24, 17, 255, 159, 70, 174, 183, 89, 135, 7, 192, 255, 255, 76, 177, 140, 37, 155, 213, 230, + 221, 127, 27, 171, 4, 227, 71, 155, 177, 198, 47, 45, 90, 23, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3423, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5040635035422642919" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffef9fd8669f1b45f3eedbb8c152e780ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 216, 102, 159, 27, 69, 243, 238, 219, 184, + 193, 82, 231, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3424, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0f0a115306cb94bb1a" + } + ] + }, + "cborHex": "9f490f0a115306cb94bb1aff", + "cborBytes": [159, 73, 15, 10, 17, 83, 6, 203, 148, 187, 26, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3425, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fe7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d01b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd02ba5d2353255671e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11408560638850130638" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17734875735035818567" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da073aafd0ca1cccf59f84" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14140088749972641036" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b0dbb6cdf26d039c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3724623836589127268" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2413386842645542951" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11650773249713650993" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "676052595905790599" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6178166462916398477" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10606174018493413185" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15106570350914674332" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14707172444401549392" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f809fbf421fe7417c419a42d01b4abd02ba5d2353255671e61b9e535974b52a62ce41c11bf61eef84828132474bda073aafd0ca1cccf59f841bc43bafccfa9dd50cff9f48b0dbb6cdf26d039c1b33b085a53dd8f6641b217e128bf57d38271ba1afdc8acbce3d311b0961d2410c720287ffbf1b55bd41aa295d0d8d1b9330b3136e46f7411bd1a551b234b79e9c1bcc1a5f6a8ef7c050ffffff", + "cborBytes": [ + 159, 128, 159, 191, 66, 31, 231, 65, 124, 65, 154, 66, 208, 27, 74, 189, 2, 186, 93, 35, 83, 37, 86, 113, 230, 27, + 158, 83, 89, 116, 181, 42, 98, 206, 65, 193, 27, 246, 30, 239, 132, 130, 129, 50, 71, 75, 218, 7, 58, 175, 208, + 202, 28, 204, 245, 159, 132, 27, 196, 59, 175, 204, 250, 157, 213, 12, 255, 159, 72, 176, 219, 182, 205, 242, 109, + 3, 156, 27, 51, 176, 133, 165, 61, 216, 246, 100, 27, 33, 126, 18, 139, 245, 125, 56, 39, 27, 161, 175, 220, 138, + 203, 206, 61, 49, 27, 9, 97, 210, 65, 12, 114, 2, 135, 255, 191, 27, 85, 189, 65, 170, 41, 93, 13, 141, 27, 147, + 48, 179, 19, 110, 70, 247, 65, 27, 209, 165, 81, 178, 52, 183, 158, 156, 27, 204, 26, 95, 106, 142, 247, 192, 80, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3426, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + ] + }, + "cborHex": "9f1bffffffffffffffecff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3427, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7799307471354197118" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "45d154e719" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a8e33dc5b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "792a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "592d9f6c031a064216e0" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16982913149684403188" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14042844952816343135" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b6c3cb4d29c1df47ebf4545d154e719452a8e33dc5b42792a4a592d9f6c031a064216e0ffbf1bebaf6d87c23fcbf41bc2e235151881585fffff", + "cborBytes": [ + 159, 27, 108, 60, 180, 210, 156, 29, 244, 126, 191, 69, 69, 209, 84, 231, 25, 69, 42, 142, 51, 220, 91, 66, 121, + 42, 74, 89, 45, 159, 108, 3, 26, 6, 66, 22, 224, 255, 191, 27, 235, 175, 109, 135, 194, 63, 203, 244, 27, 194, + 226, 53, 21, 24, 129, 88, 95, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3428, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16021768817341985719" + } + }, + { + "_tag": "ByteArray", + "bytearray": "22e054" + } + ] + }, + "cborHex": "9f1bde58c1da371973b74322e054ff", + "cborBytes": [159, 27, 222, 88, 193, 218, 55, 25, 115, 183, 67, 34, 224, 84, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3429, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "202160294258209401" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9671227457793587741" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "374968206074286991" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5623117304372916942" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "31" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5662480845664591808" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "425dc62df72a7c746368229e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5465656114970858403" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97d859fa6b46c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14866834818603167753" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1846087233396524923" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b16a53b3c8d7f3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9666077489702214159" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a4ac7d2559e5053496f55" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9932570656255246302" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6133448062597181684" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "635ca0d4a4e278" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91083a94295f1cabada4f6" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9aa50e5c34a3c9df18" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5135429730327179208" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a093413f8c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13098473314156344568" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4528311080464843507" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15395355120856947799" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12054198665814022479" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2c59d10040baa96c8f6" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13316168396335896143" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18123319961574406492" + } + } + ] + }, + "cborHex": "9f1b02ce37b76ef2f2791b86371a21ebca7a1dd8669f1b05342798c51f938f9fd8669f1b4e095365517ff2ce80ffbf41311b4e952c53f94a9fc04c425dc62df72a7c746368229e1b4bd9e9473d4793a34797d859fa6b46c91bce519b7fe9403009ffbf1b199e9e8ecafbc77b47b16a53b3c8d7f31b8624ce4389199a0f4b0a4ac7d2559e5053496f551b89d79463088fffde1b551e62843b69b0f447635ca0d4a4e2784b91083a94295f1cabada4f6ffbf499aa50e5c34a3c9df181b4744b6218d21afc845a093413f8c1bb5c720149e38f4f8ffbf1b3ed7caef879282f31bd5a749ea11ab5c571ba7491dd217d5194f4af2c59d10040baa96c8f6ffffff1bb8cc889ab8e2564f1bfb82f77bcc63795cff", + "cborBytes": [ + 159, 27, 2, 206, 55, 183, 110, 242, 242, 121, 27, 134, 55, 26, 33, 235, 202, 122, 29, 216, 102, 159, 27, 5, 52, + 39, 152, 197, 31, 147, 143, 159, 216, 102, 159, 27, 78, 9, 83, 101, 81, 127, 242, 206, 128, 255, 191, 65, 49, 27, + 78, 149, 44, 83, 249, 74, 159, 192, 76, 66, 93, 198, 45, 247, 42, 124, 116, 99, 104, 34, 158, 27, 75, 217, 233, + 71, 61, 71, 147, 163, 71, 151, 216, 89, 250, 107, 70, 201, 27, 206, 81, 155, 127, 233, 64, 48, 9, 255, 191, 27, + 25, 158, 158, 142, 202, 251, 199, 123, 71, 177, 106, 83, 179, 200, 215, 243, 27, 134, 36, 206, 67, 137, 25, 154, + 15, 75, 10, 74, 199, 210, 85, 158, 80, 83, 73, 111, 85, 27, 137, 215, 148, 99, 8, 143, 255, 222, 27, 85, 30, 98, + 132, 59, 105, 176, 244, 71, 99, 92, 160, 212, 164, 226, 120, 75, 145, 8, 58, 148, 41, 95, 28, 171, 173, 164, 246, + 255, 191, 73, 154, 165, 14, 92, 52, 163, 201, 223, 24, 27, 71, 68, 182, 33, 141, 33, 175, 200, 69, 160, 147, 65, + 63, 140, 27, 181, 199, 32, 20, 158, 56, 244, 248, 255, 191, 27, 62, 215, 202, 239, 135, 146, 130, 243, 27, 213, + 167, 73, 234, 17, 171, 92, 87, 27, 167, 73, 29, 210, 23, 213, 25, 79, 74, 242, 197, 157, 16, 4, 11, 170, 150, 200, + 246, 255, 255, 255, 27, 184, 204, 136, 154, 184, 226, 86, 79, 27, 251, 130, 247, 123, 204, 99, 121, 92, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3430, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4acd0770a7b293eddb" + } + ] + }, + "cborHex": "9f494acd0770a7b293eddbff", + "cborBytes": [159, 73, 74, 205, 7, 112, 167, 178, 147, 237, 219, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3431, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3965009245623248560" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6893114477325036118" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13699449856319259937" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1200626026151959563" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16193711786170283543" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a496e68d00d078bf30ed421e" + } + ] + }, + "cborHex": "9fbf1b37068ae6c08366b01b5fa94318890faa561bbe1e390fc02f85211b10a97b0274e05c0bff1be0bb9f1251bc7617a04ca496e68d00d078bf30ed421eff", + "cborBytes": [ + 159, 191, 27, 55, 6, 138, 230, 192, 131, 102, 176, 27, 95, 169, 67, 24, 137, 15, 170, 86, 27, 190, 30, 57, 15, + 192, 47, 133, 33, 27, 16, 169, 123, 2, 116, 224, 92, 11, 255, 27, 224, 187, 159, 18, 81, 188, 118, 23, 160, 76, + 164, 150, 230, 141, 0, 208, 120, 191, 48, 237, 66, 30, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3432, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12897082782246880574" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2898004692990969336" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9897026710644809754" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3793207469927960354" + }, + "fields": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12612783909727502152" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1654738375445849371" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13438984549822547518" + } + }, + { + "_tag": "ByteArray", + "bytearray": "65" + }, + { + "_tag": "ByteArray", + "bytearray": "8115" + }, + { + "_tag": "ByteArray", + "bytearray": "d500" + }, + { + "_tag": "ByteArray", + "bytearray": "285a61c9b8a3" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "339683491496801127" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d009f4c5" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e14f79ed96d593a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14913205508543822161" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52c8b3bff8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6599745218004741307" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8535447522525553588" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1dd5a8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6a51ee87a0b6d18ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "303fad3513113f52839f4cc1" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6939693905437640612" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d1fc8d098d09cecff4de" + }, + { + "_tag": "ByteArray", + "bytearray": "c6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15292568293741955929" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1bb2fba47572a1c53e9f1b2837c7e9fb2445f81b89594d5b4c89601affd8669f1b34a42e18bc6a0f2280ffff1baf099c23f811ff48d8669f1b16f6cfc908a8251b9f9f1bba80dd3eca22c63e416542811542d50046285a61c9b8a3ffd8669f1b04b6cc55f6bb33679f44d009f4c5ffffbf484e14f79ed96d593a1bcef659657f2739514552c8b3bff81b5b97014f0f416cbb416c1b7674004c8b1fa3b441c9431dd5a849d6a51ee87a0b6d18ff4c303fad3513113f52839f4cc1ff9f1b604ebed6c38dc7a44ad1fc8d098d09cecff4de41c61bd43a1dd6f3e40b59ffffffff", + "cborBytes": [ + 159, 159, 27, 178, 251, 164, 117, 114, 161, 197, 62, 159, 27, 40, 55, 199, 233, 251, 36, 69, 248, 27, 137, 89, 77, + 91, 76, 137, 96, 26, 255, 216, 102, 159, 27, 52, 164, 46, 24, 188, 106, 15, 34, 128, 255, 255, 27, 175, 9, 156, + 35, 248, 17, 255, 72, 216, 102, 159, 27, 22, 246, 207, 201, 8, 168, 37, 27, 159, 159, 27, 186, 128, 221, 62, 202, + 34, 198, 62, 65, 101, 66, 129, 21, 66, 213, 0, 70, 40, 90, 97, 201, 184, 163, 255, 216, 102, 159, 27, 4, 182, 204, + 85, 246, 187, 51, 103, 159, 68, 208, 9, 244, 197, 255, 255, 191, 72, 78, 20, 247, 158, 217, 109, 89, 58, 27, 206, + 246, 89, 101, 127, 39, 57, 81, 69, 82, 200, 179, 191, 248, 27, 91, 151, 1, 79, 15, 65, 108, 187, 65, 108, 27, 118, + 116, 0, 76, 139, 31, 163, 180, 65, 201, 67, 29, 213, 168, 73, 214, 165, 30, 232, 122, 11, 109, 24, 255, 76, 48, + 63, 173, 53, 19, 17, 63, 82, 131, 159, 76, 193, 255, 159, 27, 96, 78, 190, 214, 195, 141, 199, 164, 74, 209, 252, + 141, 9, 141, 9, 206, 207, 244, 222, 65, 198, 27, 212, 58, 29, 214, 243, 228, 11, 89, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3433, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1121301432345836467" + } + } + ] + }, + "cborHex": "9f1b0f8fa9b6391c3bb3ff", + "cborBytes": [159, 27, 15, 143, 169, 182, 57, 28, 59, 179, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3434, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "125d8a9bb8840b" + }, + { + "_tag": "ByteArray", + "bytearray": "c5898a3ce27677f956526f4c" + } + ] + }, + "cborHex": "9f47125d8a9bb8840b4cc5898a3ce27677f956526f4cff", + "cborBytes": [ + 159, 71, 18, 93, 138, 155, 184, 132, 11, 76, 197, 137, 138, 60, 226, 118, 119, 249, 86, 82, 111, 76, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3435, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "282483" + }, + { + "_tag": "ByteArray", + "bytearray": "2c5db789182395b9" + } + ] + }, + "cborHex": "9f43282483482c5db789182395b9ff", + "cborBytes": [159, 67, 40, 36, 131, 72, 44, 93, 183, 137, 24, 35, 149, 185, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3436, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28d28008738dfb9dd4e64051" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f07341bcfe37" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2c3a675c069b4a51f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db7037367d20bbfb4ed8ee" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "148842151073195489" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d89d79aaf21b602cdc18" + }, + { + "_tag": "ByteArray", + "bytearray": "87" + }, + { + "_tag": "ByteArray", + "bytearray": "3f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8122165614674155968" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9521583848215701680" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1778015044637955747" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9845046286478629510" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ede758227" + } + ] + }, + "cborHex": "9fbf4c28d28008738dfb9dd4e6405146f07341bcfe3749a2c3a675c069b4a51f4bdb7037367d20bbfb4ed8eeff9f9f1b0210cb25d652a5e14ad89d79aaf21b602cdc184187413f1b70b7ba97ed8b99c0ff1b8423760ffbfe68b01b18acc74344f216a3ff1b88a0a16faed65a86454ede758227ff", + "cborBytes": [ + 159, 191, 76, 40, 210, 128, 8, 115, 141, 251, 157, 212, 230, 64, 81, 70, 240, 115, 65, 188, 254, 55, 73, 162, 195, + 166, 117, 192, 105, 180, 165, 31, 75, 219, 112, 55, 54, 125, 32, 187, 251, 78, 216, 238, 255, 159, 159, 27, 2, 16, + 203, 37, 214, 82, 165, 225, 74, 216, 157, 121, 170, 242, 27, 96, 44, 220, 24, 65, 135, 65, 63, 27, 112, 183, 186, + 151, 237, 139, 153, 192, 255, 27, 132, 35, 118, 15, 251, 254, 104, 176, 27, 24, 172, 199, 67, 68, 242, 22, 163, + 255, 27, 136, 160, 161, 111, 174, 214, 90, 134, 69, 78, 222, 117, 130, 39, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3437, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "c8d486" + }, + { + "_tag": "ByteArray", + "bytearray": "dfc576bd43ebce" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9de780c479" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a11" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6b467b44f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10106560494961472466" + } + } + } + ] + } + ] + }, + "cborHex": "9fa043c8d48647dfc576bd43ebcebf459de780c479426a1145f6b467b44f1b8c41b7392b2cb3d2ffff", + "cborBytes": [ + 159, 160, 67, 200, 212, 134, 71, 223, 197, 118, 189, 67, 235, 206, 191, 69, 157, 231, 128, 196, 121, 66, 106, 17, + 69, 246, 180, 103, 180, 79, 27, 140, 65, 183, 57, 43, 44, 179, 210, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3438, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17441154595837049028" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1bfffffffffffffff080071bf20b6db29d89f8c480ff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 128, 7, 27, 242, 11, 109, 178, 157, 137, 248, 196, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3439, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0201" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4247134ce1b2fb27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aef670567575a1535c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0fa0203b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2efaa0" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd02e1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13798124428845431154" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9347412481121358793" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + { + "_tag": "ByteArray", + "bytearray": "97414f08be" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bbec" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11917289434015996686" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf4123420201484247134ce1b2fb2749aef670567575a1535c45b0fa0203b6432efaa0ff9fd8669f1bfffffffffffffff09f43fd02e1ffffd8669f1bbf7cc90ffbf8b9729f10ffffa0d8669f1b81b8ae207a4a93c99f1bfffffffffffffff04597414f08beffffbf0442bbecffffd8669f1ba562b799880a1b0e80ffff", + "cborBytes": [ + 159, 191, 65, 35, 66, 2, 1, 72, 66, 71, 19, 76, 225, 178, 251, 39, 73, 174, 246, 112, 86, 117, 117, 161, 83, 92, + 69, 176, 250, 2, 3, 182, 67, 46, 250, 160, 255, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, + 159, 67, 253, 2, 225, 255, 255, 216, 102, 159, 27, 191, 124, 201, 15, 251, 248, 185, 114, 159, 16, 255, 255, 160, + 216, 102, 159, 27, 129, 184, 174, 32, 122, 74, 147, 201, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 69, 151, + 65, 79, 8, 190, 255, 255, 191, 4, 66, 187, 236, 255, 255, 216, 102, 159, 27, 165, 98, 183, 153, 136, 10, 27, 14, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3440, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17185708413688679527" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6703682796531708631" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "34936dc90c" + }, + { + "_tag": "ByteArray", + "bytearray": "3d3d461533b4093b455c" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bee7fe6bf9b5b0c679fd8669f1b5d0843fc5e2b72d780ff9f4534936dc90c4a3d3d461533b4093b455cffffff", + "cborBytes": [ + 159, 27, 238, 127, 230, 191, 155, 91, 12, 103, 159, 216, 102, 159, 27, 93, 8, 67, 252, 94, 43, 114, 215, 128, 255, + 159, 69, 52, 147, 109, 201, 12, 74, 61, 61, 70, 21, 51, 180, 9, 59, 69, 92, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3441, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a9d43" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3004487018420339997" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16194661369148705097" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1475315132549560047" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7992069674609918394" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "760f1672a30ad3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cce80e2278f819d119a" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1164583792834096232" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5f684e3b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b731634c69e05547" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f439a9d431b29b215065937851dffd8669f1be0befeb655d9894980ffffbf1b14795f4be75ff6ef1b6ee98906774bc1ba47760f1672a30ad34a9cce80e2278f819d119aff1b10296eca130dac68bf45c5f684e3b948b731634c69e05547ffff", + "cborBytes": [ + 159, 159, 159, 67, 154, 157, 67, 27, 41, 178, 21, 6, 89, 55, 133, 29, 255, 216, 102, 159, 27, 224, 190, 254, 182, + 85, 217, 137, 73, 128, 255, 255, 191, 27, 20, 121, 95, 75, 231, 95, 246, 239, 27, 110, 233, 137, 6, 119, 75, 193, + 186, 71, 118, 15, 22, 114, 163, 10, 211, 74, 156, 206, 128, 226, 39, 143, 129, 157, 17, 154, 255, 27, 16, 41, 110, + 202, 19, 13, 172, 104, 191, 69, 197, 246, 132, 227, 185, 72, 183, 49, 99, 76, 105, 224, 85, 71, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3442, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15538126064750266173" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28ca972d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4798489120467849174" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6111f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1086097290152759482" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "694d1b74b1bfe3c5d854" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12086137122193349861" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4ecf18fa2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1565213636278092819" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8617789775712565346" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18214541438065016028" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9af2e750ed" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4a446" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "106cb5" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b609f8424a6aebe1d1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7226177769675955448" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17880241791007432358" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14656744952683158852" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0eb39b154a7d" + }, + { + "_tag": "ByteArray", + "bytearray": "2042097ef95e72514dfef066" + }, + { + "_tag": "ByteArray", + "bytearray": "dc09e51a356f3d" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "395665151570180385" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f5cf69c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c0a86f95137787007fc0a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9701028654229363236" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7032214488689709203" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8373897034932599936" + } + }, + { + "_tag": "ByteArray", + "bytearray": "621d2cb31704" + }, + { + "_tag": "ByteArray", + "bytearray": "b8d5c0f1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15835489549649868293" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9309573156677982756" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7e3503dded11dd" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3573327059369739029" + } + } + ] + }, + "cborHex": "9fd8669f1bd7a28354d4ad873d9fbf4428ca972d1b4297a86e7c100fd6436111f81b0f1297bb2311d0ba4a694d1b74b1bfe3c5d8541ba7ba95ad72ff1ce545b4ecf18fa21b15b8c18263f40413ffd8669f1b77988a245a5738629f1bfcc70ceee27f7cdc459af2e750edffffffffbf43d4a44643106cb5ff49b609f8424a6aebe1d1d8669f1b64488a65455c1cf89fd8669f1bf823612ce3179ea680ffd8669f1bcb6737e1342ddd449f460eb39b154a7d4c2042097ef95e72514dfef06647dc09e51a356f3dffffbf1b057daf5be9577921448f5cf69c4b7c0a86f95137787007fc0a1b86a0fa29ab3a1a24ffd8669f1b619771d1b6b490939f1b74360efc88dabc8046621d2cb3170444b8d5c0f11bdbc2f5d86b4a7605ffffd8669f1b81323f76364d9a249f477e3503dded11ddffffffff1b3197020738064315ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 215, 162, 131, 84, 212, 173, 135, 61, 159, 191, 68, 40, 202, 151, 45, 27, 66, 151, 168, + 110, 124, 16, 15, 214, 67, 97, 17, 248, 27, 15, 18, 151, 187, 35, 17, 208, 186, 74, 105, 77, 27, 116, 177, 191, + 227, 197, 216, 84, 27, 167, 186, 149, 173, 114, 255, 28, 229, 69, 180, 236, 241, 143, 162, 27, 21, 184, 193, 130, + 99, 244, 4, 19, 255, 216, 102, 159, 27, 119, 152, 138, 36, 90, 87, 56, 98, 159, 27, 252, 199, 12, 238, 226, 127, + 124, 220, 69, 154, 242, 231, 80, 237, 255, 255, 255, 255, 191, 67, 212, 164, 70, 67, 16, 108, 181, 255, 73, 182, + 9, 248, 66, 74, 106, 235, 225, 209, 216, 102, 159, 27, 100, 72, 138, 101, 69, 92, 28, 248, 159, 216, 102, 159, 27, + 248, 35, 97, 44, 227, 23, 158, 166, 128, 255, 216, 102, 159, 27, 203, 103, 55, 225, 52, 45, 221, 68, 159, 70, 14, + 179, 155, 21, 74, 125, 76, 32, 66, 9, 126, 249, 94, 114, 81, 77, 254, 240, 102, 71, 220, 9, 229, 26, 53, 111, 61, + 255, 255, 191, 27, 5, 125, 175, 91, 233, 87, 121, 33, 68, 143, 92, 246, 156, 75, 124, 10, 134, 249, 81, 55, 120, + 112, 7, 252, 10, 27, 134, 160, 250, 41, 171, 58, 26, 36, 255, 216, 102, 159, 27, 97, 151, 113, 209, 182, 180, 144, + 147, 159, 27, 116, 54, 14, 252, 136, 218, 188, 128, 70, 98, 29, 44, 179, 23, 4, 68, 184, 213, 192, 241, 27, 219, + 194, 245, 216, 107, 74, 118, 5, 255, 255, 216, 102, 159, 27, 129, 50, 63, 118, 54, 77, 154, 36, 159, 71, 126, 53, + 3, 221, 237, 17, 221, 255, 255, 255, 255, 27, 49, 151, 2, 7, 56, 6, 67, 21, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3443, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15432207426009502550" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8122861548721965321" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16911935907329629587" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13895849978608848836" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13893785013393613007" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f19aee63c86feb5bb0e7" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b8d6940f6219c10d69be" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "242670610428303835" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f1bd62a36e3ff711356d8669f1b70ba338ab34089099fd8669f1beab3441abc8e5d9380ff9f1bc0d7f9eea3198fc41bc0d0a3db74f8e0cfff4af19aee63c86feb5bb0e7ffff9f4ab8d6940f6219c10d69bed8669f1b035e23a26c0199db80ff80ffff", + "cborBytes": [ + 159, 27, 214, 42, 54, 227, 255, 113, 19, 86, 216, 102, 159, 27, 112, 186, 51, 138, 179, 64, 137, 9, 159, 216, 102, + 159, 27, 234, 179, 68, 26, 188, 142, 93, 147, 128, 255, 159, 27, 192, 215, 249, 238, 163, 25, 143, 196, 27, 192, + 208, 163, 219, 116, 248, 224, 207, 255, 74, 241, 154, 238, 99, 200, 111, 235, 91, 176, 231, 255, 255, 159, 74, + 184, 214, 148, 15, 98, 25, 193, 13, 105, 190, 216, 102, 159, 27, 3, 94, 35, 162, 108, 1, 153, 219, 128, 255, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3444, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8652419876f181857c22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "77" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10395165176329071593" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4a8652419876f181857c2241b3ffbf41771b90430ba6e49aebe9ffff", + "cborBytes": [ + 159, 191, 74, 134, 82, 65, 152, 118, 241, 129, 133, 124, 34, 65, 179, 255, 191, 65, 119, 27, 144, 67, 11, 166, + 228, 154, 235, 233, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3445, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15833472653362249967" + } + }, + { + "_tag": "ByteArray", + "bytearray": "caf0" + }, + { + "_tag": "ByteArray", + "bytearray": "6bf7fec0725a0ee5de6f52b2" + }, + { + "_tag": "ByteArray", + "bytearray": "677026fd3c9640fd4adc7c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10072108962432542155" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d5dd7c27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9199481901808496212" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12980727990152582526" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "298219651701002039" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12410145273413245922" + }, + "fields": [] + } + ] + }, + "cborHex": "9f9f9f1bdbbbcb7d2884c0ef42caf04c6bf7fec0725a0ee5de6f52b24b677026fd3c9640fd4adc7cff9f1b8bc751bcacd1e5cb44d5dd7c271b7fab200c7aee2e541bb424cf550b03d57e1b04237d3174adcf37ffffd8669f1bac39b15fd8ca1be280ffff", + "cborBytes": [ + 159, 159, 159, 27, 219, 187, 203, 125, 40, 132, 192, 239, 66, 202, 240, 76, 107, 247, 254, 192, 114, 90, 14, 229, + 222, 111, 82, 178, 75, 103, 112, 38, 253, 60, 150, 64, 253, 74, 220, 124, 255, 159, 27, 139, 199, 81, 188, 172, + 209, 229, 203, 68, 213, 221, 124, 39, 27, 127, 171, 32, 12, 122, 238, 46, 84, 27, 180, 36, 207, 85, 11, 3, 213, + 126, 27, 4, 35, 125, 49, 116, 173, 207, 55, 255, 255, 216, 102, 159, 27, 172, 57, 177, 95, 216, 202, 27, 226, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3446, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11010081004679518530" + } + } + ] + }, + "cborHex": "9f1b98cbaa570032d942ff", + "cborBytes": [159, 27, 152, 203, 170, 87, 0, 50, 217, 66, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3447, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13361807823651754090" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ea3d112c28168eb0065f02dc" + }, + { + "_tag": "ByteArray", + "bytearray": "d0f9fafa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "330828027216798387" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "24b237" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bb96ead6bf5cc506a9f9f4cea3d112c28168eb0065f02dc44d0f9fafa1b04975656840022b3094324b237ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 185, 110, 173, 107, 245, 204, 80, 106, 159, 159, 76, 234, 61, 17, 44, 40, 22, 142, 176, 6, + 95, 2, 220, 68, 208, 249, 250, 250, 27, 4, 151, 86, 86, 132, 0, 34, 179, 9, 67, 36, 178, 55, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3448, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18302106407117294027" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d60114a11546f4edb9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10938057402721431569" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0320d31bda73700b699d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8f2ca4827b2db30e39c4e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "384324faeebc243723ee58" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3183062093514243500" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43487d73da141511" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58e3c772b61cfbe65b7c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7df4394d83d06d9f1bab46f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15571041401152741415" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5158648296660301964" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7880094586134439232" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d0259895544020" + }, + { + "_tag": "ByteArray", + "bytearray": "b073076f3f" + }, + { + "_tag": "ByteArray", + "bytearray": "0d30ad57f28b9ba1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4791280262685348904" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "958f3383617fa6568f272cfc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10206817818820164924" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1223259664245299350" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e71c6c61d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1326581252863291232" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51bac27690398f2c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15120762289658012771" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17025966795208154301" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "247b6c1925a336" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1649946827001562718" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecc56925d73645" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2923237017068346729" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8074441006010654280" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7884523158145504904" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13242918779882412314" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9916006661844598227" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6362c492c3dbd05f3029" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13562486920695897455" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15347637848119697731" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16280769757380955238" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecd29e7ad8d7149a59612a" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12531540499887621921" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "680923880616064246" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4728483681827821042" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1bfdfe24cefda089cbffbf49d60114a11546f4edb91b97cbc941660af011ffbf4a0320d31bda73700b699d4bd8f2ca4827b2db30e39c4e4b384324faeebc243723ee581b2c2c821c05ed7dac4843487d73da1415114a58e3c772b61cfbe65b7c4c7df4394d83d06d9f1bab46f81bd81773a7ca9c2027ff1b4797334b4b9c788cd8669f1b6d5bb8468b05a5409f9f47d025989554402045b073076f3f480d30ad57f28b9ba11b427e0c037cb35428ff9f4c958f3383617fa6568f272cfc1b8da5e6ba69e73d3cffbf1b10f9e42efb679896457e71c6c61d1b1268f69ef69bef604851bac27690398f2c1bd1d7bd30703024631bec486297c1fa5cbd47247b6c1925a3364157ffbf1b16e5c9e5b9b6065e47ecc56925d736451b28916c943ca19d691b700e2d50931cde481b6d6b7409d09a96881bb7c84c77603d991a1b899cbb858da77dd34a6362c492c3dbd05f30291bbc37a1ff4af5dd6f1bd4fdc34ebe83e1431be1f0e9d5ca9d4c664becd29e7ad8d7149a59612affd8669f1bade8f9b0903907219f1b097320a9673374f61b419ef2db259415f2ffffffffff", + "cborBytes": [ + 159, 159, 27, 253, 254, 36, 206, 253, 160, 137, 203, 255, 191, 73, 214, 1, 20, 161, 21, 70, 244, 237, 185, 27, + 151, 203, 201, 65, 102, 10, 240, 17, 255, 191, 74, 3, 32, 211, 27, 218, 115, 112, 11, 105, 157, 75, 216, 242, 202, + 72, 39, 178, 219, 48, 227, 156, 78, 75, 56, 67, 36, 250, 238, 188, 36, 55, 35, 238, 88, 27, 44, 44, 130, 28, 5, + 237, 125, 172, 72, 67, 72, 125, 115, 218, 20, 21, 17, 74, 88, 227, 199, 114, 182, 28, 251, 230, 91, 124, 76, 125, + 244, 57, 77, 131, 208, 109, 159, 27, 171, 70, 248, 27, 216, 23, 115, 167, 202, 156, 32, 39, 255, 27, 71, 151, 51, + 75, 75, 156, 120, 140, 216, 102, 159, 27, 109, 91, 184, 70, 139, 5, 165, 64, 159, 159, 71, 208, 37, 152, 149, 84, + 64, 32, 69, 176, 115, 7, 111, 63, 72, 13, 48, 173, 87, 242, 139, 155, 161, 27, 66, 126, 12, 3, 124, 179, 84, 40, + 255, 159, 76, 149, 143, 51, 131, 97, 127, 166, 86, 143, 39, 44, 252, 27, 141, 165, 230, 186, 105, 231, 61, 60, + 255, 191, 27, 16, 249, 228, 46, 251, 103, 152, 150, 69, 126, 113, 198, 198, 29, 27, 18, 104, 246, 158, 246, 155, + 239, 96, 72, 81, 186, 194, 118, 144, 57, 143, 44, 27, 209, 215, 189, 48, 112, 48, 36, 99, 27, 236, 72, 98, 151, + 193, 250, 92, 189, 71, 36, 123, 108, 25, 37, 163, 54, 65, 87, 255, 191, 27, 22, 229, 201, 229, 185, 182, 6, 94, + 71, 236, 197, 105, 37, 215, 54, 69, 27, 40, 145, 108, 148, 60, 161, 157, 105, 27, 112, 14, 45, 80, 147, 28, 222, + 72, 27, 109, 107, 116, 9, 208, 154, 150, 136, 27, 183, 200, 76, 119, 96, 61, 153, 26, 27, 137, 156, 187, 133, 141, + 167, 125, 211, 74, 99, 98, 196, 146, 195, 219, 208, 95, 48, 41, 27, 188, 55, 161, 255, 74, 245, 221, 111, 27, 212, + 253, 195, 78, 190, 131, 225, 67, 27, 225, 240, 233, 213, 202, 157, 76, 102, 75, 236, 210, 158, 122, 216, 215, 20, + 154, 89, 97, 42, 255, 216, 102, 159, 27, 173, 232, 249, 176, 144, 57, 7, 33, 159, 27, 9, 115, 32, 169, 103, 51, + 116, 246, 27, 65, 158, 242, 219, 37, 148, 21, 242, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3449, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17334754306980694678" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1036244042543147651" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b77dbf867189dba88" + }, + { + "_tag": "ByteArray", + "bytearray": "0879bd5e08" + } + ] + }, + "cborHex": "9f1bf0916b32e041ca961b0e617a7768662a83495b77dbf867189dba88450879bd5e08ff", + "cborBytes": [ + 159, 27, 240, 145, 107, 50, 224, 65, 202, 150, 27, 14, 97, 122, 119, 104, 102, 42, 131, 73, 91, 119, 219, 248, + 103, 24, 157, 186, 136, 69, 8, 121, 189, 94, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3450, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "07a57b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd4e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10417929163548275066" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11007931628894800610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8eda68" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2180276489760621636" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3329296731228049047" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "191458242367361943" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15034155697895260532" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "925c568fef7ebc5b2b4482" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9135529338758824262" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "969f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4afe6d3f7f" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14912748921693497616" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2505674773741203593" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8274278636125035456" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3926796896082306192" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "570735704933902099" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4119761993358248006" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e70" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11997292473516661521" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14478405648105042481" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12049475228473226031" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7af1482ad970fbf9c34ebaf1" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14039803588552427343" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f4307a57b9fbf42dd4e1b9093eb60b07a317affd8669f1b98c4077e740fcae29f438eda681b1e41e5ea745144441b2e3409bcd8b78e971b02a83241cda09397ffff1bd0a40cf3eef64174bf4b925c568fef7ebc5b2b44821b7ec7eb880fe1014642969f454afe6d3f7fffffd8669f1bcef4ba22162169109fbf1b22c5f1ee5b8070891b72d424949ed61bc01b367ec8f8d017a4901b07eba9198937a7131b392c55b49d460846424e701ba67ef1f0b66d9b111bc8eda13a214f72311ba73855e12303f32f4c7af1482ad970fbf9c34ebaf1ffd8669f1bc2d766fa4bec074f80ffffffff", + "cborBytes": [ + 159, 67, 7, 165, 123, 159, 191, 66, 221, 78, 27, 144, 147, 235, 96, 176, 122, 49, 122, 255, 216, 102, 159, 27, + 152, 196, 7, 126, 116, 15, 202, 226, 159, 67, 142, 218, 104, 27, 30, 65, 229, 234, 116, 81, 68, 68, 27, 46, 52, 9, + 188, 216, 183, 142, 151, 27, 2, 168, 50, 65, 205, 160, 147, 151, 255, 255, 27, 208, 164, 12, 243, 238, 246, 65, + 116, 191, 75, 146, 92, 86, 143, 239, 126, 188, 91, 43, 68, 130, 27, 126, 199, 235, 136, 15, 225, 1, 70, 66, 150, + 159, 69, 74, 254, 109, 63, 127, 255, 255, 216, 102, 159, 27, 206, 244, 186, 34, 22, 33, 105, 16, 159, 191, 27, 34, + 197, 241, 238, 91, 128, 112, 137, 27, 114, 212, 36, 148, 158, 214, 27, 192, 27, 54, 126, 200, 248, 208, 23, 164, + 144, 27, 7, 235, 169, 25, 137, 55, 167, 19, 27, 57, 44, 85, 180, 157, 70, 8, 70, 66, 78, 112, 27, 166, 126, 241, + 240, 182, 109, 155, 17, 27, 200, 237, 161, 58, 33, 79, 114, 49, 27, 167, 56, 85, 225, 35, 3, 243, 47, 76, 122, + 241, 72, 42, 217, 112, 251, 249, 195, 78, 186, 241, 255, 216, 102, 159, 27, 194, 215, 102, 250, 75, 236, 7, 79, + 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3451, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c248c6f1cfcd" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5258457062754943817" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a0f6" + } + ] + }, + "cborHex": "9f46c248c6f1cfcdd8669f1b48f9cad68c27034980ff42a0f6ff", + "cborBytes": [ + 159, 70, 194, 72, 198, 241, 207, 205, 216, 102, 159, 27, 72, 249, 202, 214, 140, 39, 3, 73, 128, 255, 66, 160, + 246, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3452, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14430588363545609145" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1577833585037837566" + } + } + ] + }, + "cborHex": "9fd8669f1bc843bfa8fd0583b980ff1b15e597492edc84feff", + "cborBytes": [ + 159, 216, 102, 159, 27, 200, 67, 191, 168, 253, 5, 131, 185, 128, 255, 27, 21, 229, 151, 73, 46, 220, 132, 254, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3453, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8744763764873642314" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9658766992994045210" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16775988624000431953" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12770462805812803278" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8781104427622512340" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13103018676488414501" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9870600133460751267" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3843739dea91803a" + }, + { + "_tag": "ByteArray", + "bytearray": "719bcf085ee92d4b" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [] + } + ] + }, + "cborHex": "9f9fbf1b795ba44ffa00414a1b860ad567e1ad8d1a1be8d048c5418a37511bb139cc42d5cf76ceff1b79dcbff3e00cb6d41bb5d746104166a525ff9f9f1b88fb6a8652d9f3a3483843739dea91803a48719bcf085ee92d4bffffd9050b80ff", + "cborBytes": [ + 159, 159, 191, 27, 121, 91, 164, 79, 250, 0, 65, 74, 27, 134, 10, 213, 103, 225, 173, 141, 26, 27, 232, 208, 72, + 197, 65, 138, 55, 81, 27, 177, 57, 204, 66, 213, 207, 118, 206, 255, 27, 121, 220, 191, 243, 224, 12, 182, 212, + 27, 181, 215, 70, 16, 65, 102, 165, 37, 255, 159, 159, 27, 136, 251, 106, 134, 82, 217, 243, 163, 72, 56, 67, 115, + 157, 234, 145, 128, 58, 72, 113, 155, 207, 8, 94, 233, 45, 75, 255, 255, 217, 5, 11, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3454, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1165403919964755669" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1890055651114420017" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12163123189894002795" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17589816361309556761" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "310209826499683663" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17669903089020883735" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14640766395339608069" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0be7b834edd9ff22fa" + }, + { + "_tag": "ByteArray", + "bytearray": "28a186e68a7d83cc4412af" + } + ] + }, + "cborHex": "9fbf1b102c58b0cd58d6d541171b1a3ad399ca6507311ba8cc181924f2b86b1bf41b94c92835d0191b044e16319259654f1bf5381b3d84aad3171bcb2e737769b19005ff490be7b834edd9ff22fa4b28a186e68a7d83cc4412afff", + "cborBytes": [ + 159, 191, 27, 16, 44, 88, 176, 205, 88, 214, 213, 65, 23, 27, 26, 58, 211, 153, 202, 101, 7, 49, 27, 168, 204, 24, + 25, 36, 242, 184, 107, 27, 244, 27, 148, 201, 40, 53, 208, 25, 27, 4, 78, 22, 49, 146, 89, 101, 79, 27, 245, 56, + 27, 61, 132, 170, 211, 23, 27, 203, 46, 115, 119, 105, 177, 144, 5, 255, 73, 11, 231, 184, 52, 237, 217, 255, 34, + 250, 75, 40, 161, 134, 230, 138, 125, 131, 204, 68, 18, 175, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3455, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15327035452413344109" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16487465038941633134" + } + } + ] + }, + "cborHex": "9fd8669f1bd4b49189b0ea796d80ff1be4cf3e193cc9ba6eff", + "cborBytes": [ + 159, 216, 102, 159, 27, 212, 180, 145, 137, 176, 234, 121, 109, 128, 255, 27, 228, 207, 62, 25, 60, 201, 186, 110, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3456, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4503090097359011765" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05c0cd86a82c69" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a7d1292b1e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4294535770195348404" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d62bb5ad9" + }, + { + "_tag": "ByteArray", + "bytearray": "ac5847345e328f93875b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18229032216890373548" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a7f1" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8d1e53b6f770c02d" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9622714910903498465" + } + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffef9fbf1b3e7e3095cca9bfb54705c0cd86a82c69ff45a7d1292b1ed8669f1b3b99418791b3cbb49f452d62bb5ad94aac5847345e328f93875b1bfcfa88383ee6f5ac42a7f1ffff488d1e53b6f770c02dffff1b858ac03a6741f6e1ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 191, 27, 62, 126, 48, 149, 204, 169, 191, + 181, 71, 5, 192, 205, 134, 168, 44, 105, 255, 69, 167, 209, 41, 43, 30, 216, 102, 159, 27, 59, 153, 65, 135, 145, + 179, 203, 180, 159, 69, 45, 98, 187, 90, 217, 74, 172, 88, 71, 52, 94, 50, 143, 147, 135, 91, 27, 252, 250, 136, + 56, 62, 230, 245, 172, 66, 167, 241, 255, 255, 72, 141, 30, 83, 182, 247, 112, 192, 45, 255, 255, 27, 133, 138, + 192, 58, 103, 65, 246, 225, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3457, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18305503934249637593" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ca126b74c25036" + } + ] + }, + "cborHex": "9fd8669f1bfe0a36d76b7716d980ff47ca126b74c25036ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 254, 10, 54, 215, 107, 119, 22, 217, 128, 255, 71, 202, 18, 107, 116, 194, 80, 54, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3458, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10147618586651136872" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7058303767500122667" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11582344408379527603" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3468115ee1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af39c65bba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "417ebe4f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15986545375728524282" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a35e80" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6849167882659644663" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6f5ecb73f95f46" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bca1e6cdfc9294f2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6658a795369d445599fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "994cb734fdc724ee8add35f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5073482125128205218" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9dbebb1c4223bc909e0681" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18214580707574862406" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e038236f8d04081a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8710497847260012931" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b98baa64a43e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13681781562513168875" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e217df44236b2ab6bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1750171347419964970" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "63ab00c8daae6f99" + }, + { + "_tag": "ByteArray", + "bytearray": "e3a8a22d033f" + }, + { + "_tag": "ByteArray", + "bytearray": "612a62" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2006274431628214358" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16485085085917882591" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1457387335597322801" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b8cd39557157e13689f9f1b61f421e14aa56a2b1ba0bcc0df9fb191b3ffffffbf453468115ee145af39c65bba44417ebe4f1bdddb9e51a1f65bfa43a35e801b5f0d21e69cf144f7ff476f5ecb73f95f469fbf492bca1e6cdfc9294f2d4a6658a795369d445599fc4c994cb734fdc724ee8add35f91b4668a11cc28f83a24b9dbebb1c4223bc909e06811bfcc730a607aed246499e038236f8d04081a61b78e1e7a452bce18346b98baa64a43e1bbddf73d7881619eb49e217df44236b2ab6bf1b1849db915308a62aff9f4863ab00c8daae6f9946e3a8a22d033f43612a621b1bd7b7f743260056ffd8669f1be4c6c98b3e39a8df9f1b1439ae0f666e7231ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 140, 211, 149, 87, 21, 126, 19, 104, 159, 159, 27, 97, 244, 33, 225, 74, 165, 106, 43, 27, + 160, 188, 192, 223, 159, 177, 145, 179, 255, 255, 255, 191, 69, 52, 104, 17, 94, 225, 69, 175, 57, 198, 91, 186, + 68, 65, 126, 190, 79, 27, 221, 219, 158, 81, 161, 246, 91, 250, 67, 163, 94, 128, 27, 95, 13, 33, 230, 156, 241, + 68, 247, 255, 71, 111, 94, 203, 115, 249, 95, 70, 159, 191, 73, 43, 202, 30, 108, 223, 201, 41, 79, 45, 74, 102, + 88, 167, 149, 54, 157, 68, 85, 153, 252, 76, 153, 76, 183, 52, 253, 199, 36, 238, 138, 221, 53, 249, 27, 70, 104, + 161, 28, 194, 143, 131, 162, 75, 157, 190, 187, 28, 66, 35, 188, 144, 158, 6, 129, 27, 252, 199, 48, 166, 7, 174, + 210, 70, 73, 158, 3, 130, 54, 248, 208, 64, 129, 166, 27, 120, 225, 231, 164, 82, 188, 225, 131, 70, 185, 139, + 170, 100, 164, 62, 27, 189, 223, 115, 215, 136, 22, 25, 235, 73, 226, 23, 223, 68, 35, 107, 42, 182, 191, 27, 24, + 73, 219, 145, 83, 8, 166, 42, 255, 159, 72, 99, 171, 0, 200, 218, 174, 111, 153, 70, 227, 168, 162, 45, 3, 63, 67, + 97, 42, 98, 27, 27, 215, 183, 247, 67, 38, 0, 86, 255, 216, 102, 159, 27, 228, 198, 201, 139, 62, 57, 168, 223, + 159, 27, 20, 57, 174, 15, 102, 110, 114, 49, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3459, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48b1fbb0528c077cb2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60b1d7" + } + } + ] + } + ] + }, + "cborHex": "9f0e0ba0a0bf4948b1fbb0528c077cb24360b1d7ffff", + "cborBytes": [159, 14, 11, 160, 160, 191, 73, 72, 177, 251, 176, 82, 140, 7, 124, 178, 67, 96, 177, 215, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3460, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6812254582716113252" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8803062593635671494" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9143930348881276412" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14436334394185352073" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3163927770889033299" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2560107999698119851" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1630241399988764434" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "889680944869733888" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14722129065332168223" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + }, + "cborHex": "9fd8669f1b5e89fd733a5221649f80ffffd8669f1b7a2ac2c9cd2eddc680ff9f1b7ee5c434a7fb6dfcd8669f1bc85829a5002c03899f1b2be8878b5ed596531b238754a964a46cabffff9f1b169fc7ea78773f121b0c58c81b0a64f6001bcc4f82623c93d61fffff0a08ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 94, 137, 253, 115, 58, 82, 33, 100, 159, 128, 255, 255, 216, 102, 159, 27, 122, 42, 194, + 201, 205, 46, 221, 198, 128, 255, 159, 27, 126, 229, 196, 52, 167, 251, 109, 252, 216, 102, 159, 27, 200, 88, 41, + 165, 0, 44, 3, 137, 159, 27, 43, 232, 135, 139, 94, 213, 150, 83, 27, 35, 135, 84, 169, 100, 164, 108, 171, 255, + 255, 159, 27, 22, 159, 199, 234, 120, 119, 63, 18, 27, 12, 88, 200, 27, 10, 100, 246, 0, 27, 204, 79, 130, 98, 60, + 147, 214, 31, 255, 255, 10, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3461, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7067483100447204584" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14500990830656109787" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6052651705902487355" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1577348487571034735" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15553230485931588953" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11926581419638630891" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13243099964381838368" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c38d7141475cc25c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17128198731542856542" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5826156654188372683" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f8584dbeb4" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7361512893063857627" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ac7199907b" + }, + { + "_tag": "ByteArray", + "bytearray": "b0271181df30450c364e" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b8c70ef39199efb6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7435102307984616249" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11894076881773215407" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18150432923346012269" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6790197413865224726" + } + }, + { + "_tag": "ByteArray", + "bytearray": "875687ec" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cb3a28" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7529175867052672334" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4674482323462801555" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "500792113783270951" + } + } + ] + }, + "cborHex": "9f9f1b6214be6f4a3b64e8bf1bc93dde54b8743cdb1b53ff56a87f7ad73bffd8669f1b15e3de17a0abd26f9f1bd7d82cb8efba7d59ffffffd8669f1ba583ba9c8655a9eb9f1bb7c8f140adf7bc209f48c38d7141475cc25c1bedb395ff4be8835e1b50daaa9bd2ad22cb45f8584dbeb4ffd8669f1b662958f9288785db9f45ac7199907b4ab0271181df30450c364effff48b8c70ef39199efb6ffff1b672eca28001c2b399fd8669f1ba5103fe80d473eaf9f4105ffffd8669f1bfbe34a942398086d9f1b5e3ba09268367a1644875687ecffff43cb3a281b687d018f4f1e454e1b40df18e81ed7c893ff1b06f32bc6305e6e27ff", + "cborBytes": [ + 159, 159, 27, 98, 20, 190, 111, 74, 59, 100, 232, 191, 27, 201, 61, 222, 84, 184, 116, 60, 219, 27, 83, 255, 86, + 168, 127, 122, 215, 59, 255, 216, 102, 159, 27, 21, 227, 222, 23, 160, 171, 210, 111, 159, 27, 215, 216, 44, 184, + 239, 186, 125, 89, 255, 255, 255, 216, 102, 159, 27, 165, 131, 186, 156, 134, 85, 169, 235, 159, 27, 183, 200, + 241, 64, 173, 247, 188, 32, 159, 72, 195, 141, 113, 65, 71, 92, 194, 92, 27, 237, 179, 149, 255, 75, 232, 131, 94, + 27, 80, 218, 170, 155, 210, 173, 34, 203, 69, 248, 88, 77, 190, 180, 255, 216, 102, 159, 27, 102, 41, 88, 249, 40, + 135, 133, 219, 159, 69, 172, 113, 153, 144, 123, 74, 176, 39, 17, 129, 223, 48, 69, 12, 54, 78, 255, 255, 72, 184, + 199, 14, 243, 145, 153, 239, 182, 255, 255, 27, 103, 46, 202, 40, 0, 28, 43, 57, 159, 216, 102, 159, 27, 165, 16, + 63, 232, 13, 71, 62, 175, 159, 65, 5, 255, 255, 216, 102, 159, 27, 251, 227, 74, 148, 35, 152, 8, 109, 159, 27, + 94, 59, 160, 146, 104, 54, 122, 22, 68, 135, 86, 135, 236, 255, 255, 67, 203, 58, 40, 27, 104, 125, 1, 143, 79, + 30, 69, 78, 27, 64, 223, 24, 232, 30, 215, 200, 147, 255, 27, 6, 243, 43, 198, 48, 94, 110, 39, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3462, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "141b90a50cf88619d31b01a5" + } + ] + }, + "cborHex": "9f4c141b90a50cf88619d31b01a5ff", + "cborBytes": [159, 76, 20, 27, 144, 165, 12, 248, 134, 25, 211, 27, 1, 165, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3463, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15244850104431582726" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "922618688506541852" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "43" + }, + { + "_tag": "ByteArray", + "bytearray": "d663a093ff" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12200981674148231676" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10083197231421493137" + } + }, + { + "_tag": "ByteArray", + "bytearray": "878a46" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3ec508" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7026809163743897581" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f0d2f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11815524809854409846" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10393478823576436877" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13214786653755239027" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c2a4b3a702096d466" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3d8161178d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7864135142674819598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "191853ccf74464b584efa1d5" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bd390966638b89e069fd8669f1b0ccdcccf1791b71c9f414345d663a093ffffffd8669f1ba952983066a7f9fc9f1b8beeb6757b148f9143878a46ffff433ec508bf1b61843db46d6a27ed438f0d2f1ba3f92d36962fdc761b903d0dec4bd1808d1bb7645a7257a76a73495c2a4b3a702096d466ffffff9f453d8161178dd8669f1b6d23053f0ccc6a0e9f4c191853ccf74464b584efa1d5ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 211, 144, 150, 102, 56, 184, 158, 6, 159, 216, 102, 159, 27, 12, 205, 204, 207, 23, 145, + 183, 28, 159, 65, 67, 69, 214, 99, 160, 147, 255, 255, 255, 216, 102, 159, 27, 169, 82, 152, 48, 102, 167, 249, + 252, 159, 27, 139, 238, 182, 117, 123, 20, 143, 145, 67, 135, 138, 70, 255, 255, 67, 62, 197, 8, 191, 27, 97, 132, + 61, 180, 109, 106, 39, 237, 67, 143, 13, 47, 27, 163, 249, 45, 54, 150, 47, 220, 118, 27, 144, 61, 13, 236, 75, + 209, 128, 141, 27, 183, 100, 90, 114, 87, 167, 106, 115, 73, 92, 42, 75, 58, 112, 32, 150, 212, 102, 255, 255, + 255, 159, 69, 61, 129, 97, 23, 141, 216, 102, 159, 27, 109, 35, 5, 63, 12, 204, 106, 14, 159, 76, 25, 24, 83, 204, + 247, 68, 100, 181, 132, 239, 161, 213, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3464, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14813082330836582391" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d70eb5ce1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "beb98a2b20e90d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3689522311027247239" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c079ea1aeec4331e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c0eb94a45021e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7920120889367899344" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6377921868564750276" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6464833807763579798" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d6" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8054176359059323526" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85247edd" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12719108634679608656" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "49bb2402e390" + }, + { + "_tag": "ByteArray", + "bytearray": "21b162a758a7ac382406ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16238185588526866953" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0db2" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "343615187066695576" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16703754962030877385" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4573471508675616778" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1bcd92a3e596213ff7456d70eb5ce147beb98a2b20e90d1b3333d0fe73a8488748c079ea1aeec4331e470c0eb94a45021eff1b6de9ebfc7cecacd01b5882ee25d4ff5fc4d8669f1b59b7b41893af23969f41d6bf1b6fc62eb9c8147a864485247eddff41e0d8669f1bb08359ea1dae85509f4649bb2402e3904b21b162a758a7ac382406ed1be1599fc25902e209420db2ffffd8669f1b04c4c4312c8a2f989f1be7cfa8a33f04dac91b3f783c1b18fae00affffffffff", + "cborBytes": [ + 159, 191, 27, 205, 146, 163, 229, 150, 33, 63, 247, 69, 109, 112, 235, 92, 225, 71, 190, 185, 138, 43, 32, 233, + 13, 27, 51, 51, 208, 254, 115, 168, 72, 135, 72, 192, 121, 234, 26, 238, 196, 51, 30, 71, 12, 14, 185, 74, 69, 2, + 30, 255, 27, 109, 233, 235, 252, 124, 236, 172, 208, 27, 88, 130, 238, 37, 212, 255, 95, 196, 216, 102, 159, 27, + 89, 183, 180, 24, 147, 175, 35, 150, 159, 65, 214, 191, 27, 111, 198, 46, 185, 200, 20, 122, 134, 68, 133, 36, + 126, 221, 255, 65, 224, 216, 102, 159, 27, 176, 131, 89, 234, 29, 174, 133, 80, 159, 70, 73, 187, 36, 2, 227, 144, + 75, 33, 177, 98, 167, 88, 167, 172, 56, 36, 6, 237, 27, 225, 89, 159, 194, 89, 2, 226, 9, 66, 13, 178, 255, 255, + 216, 102, 159, 27, 4, 196, 196, 49, 44, 138, 47, 152, 159, 27, 231, 207, 168, 163, 63, 4, 218, 201, 27, 63, 120, + 60, 27, 24, 250, 224, 10, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3465, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10564146958975514623" + } + } + ] + }, + "cborHex": "9f1b929b63b01cc237ffff", + "cborBytes": [159, 27, 146, 155, 99, 176, 28, 194, 55, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3466, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2fe58d1e5b3375a498939f45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6daa66463ce5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11158771859674178146" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4886495686969091632" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0307" + } + ] + }, + "cborHex": "9fbf4c2fe58d1e5b3375a498939f4541ce466daa66463ce51b9adbebe27981226241771b43d051f002456630ff420307ff", + "cborBytes": [ + 159, 191, 76, 47, 229, 141, 30, 91, 51, 117, 164, 152, 147, 159, 69, 65, 206, 70, 109, 170, 102, 70, 60, 229, 27, + 154, 219, 235, 226, 121, 129, 34, 98, 65, 119, 27, 67, 208, 81, 240, 2, 69, 102, 48, 255, 66, 3, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3467, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4687438317226765055" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2cb205cabfcbb5a7bc" + } + ] + }, + "cborHex": "9f1b410d20507cdb2aff492cb205cabfcbb5a7bcff", + "cborBytes": [159, 27, 65, 13, 32, 80, 124, 219, 42, 255, 73, 44, 178, 5, 202, 191, 203, 181, 167, 188, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3468, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7524845809802226178" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b67f43a0b9771a6c9d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f95e050161ebb9a1a353" + }, + { + "_tag": "ByteArray", + "bytearray": "fe41ba11458f87e554" + }, + { + "_tag": "ByteArray", + "bytearray": "ff799b4fab37" + }, + { + "_tag": "ByteArray", + "bytearray": "1f96c0c8159af3b9d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8429651504180945033" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cb37bff970e3" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2f681a675e76dfc1a1c944" + }, + { + "_tag": "ByteArray", + "bytearray": "12" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6400108106268816925" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5538810458961888336" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f9f1b686d9f654ad92a0249b67f43a0b9771a6c9d9f4af95e050161ebb9a1a35349fe41ba11458f87e55446ff799b4fab37491f96c0c8159af3b9d61b74fc23617f0ae089ff46cb37bff970e39f4b2f681a675e76dfc1a1c94441121b58d1c069d640361d1b4cddcec43ca44450ffffa0ff", + "cborBytes": [ + 159, 159, 27, 104, 109, 159, 101, 74, 217, 42, 2, 73, 182, 127, 67, 160, 185, 119, 26, 108, 157, 159, 74, 249, 94, + 5, 1, 97, 235, 185, 161, 163, 83, 73, 254, 65, 186, 17, 69, 143, 135, 229, 84, 70, 255, 121, 155, 79, 171, 55, 73, + 31, 150, 192, 200, 21, 154, 243, 185, 214, 27, 116, 252, 35, 97, 127, 10, 224, 137, 255, 70, 203, 55, 191, 249, + 112, 227, 159, 75, 47, 104, 26, 103, 94, 118, 223, 193, 161, 201, 68, 65, 18, 27, 88, 209, 192, 105, 214, 64, 54, + 29, 27, 76, 221, 206, 196, 60, 164, 68, 80, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3469, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "23763661765083318" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17082852298818578420" + } + }, + { + "_tag": "ByteArray", + "bytearray": "586e3209ca102a23" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b3cd804c365a2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9601952434605785554" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6830dc37" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac0086f67f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8dcfea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2ee5b376712117e23c2e63d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c954dd2d2d493f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7788760990772708721" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9899675d08c41469cd10a5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8004963589905781648" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3664fbf6c4e33eba4222" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "92b611e39f" + }, + { + "_tag": "ByteArray", + "bytearray": "2b1d82e4f00edc927f6197fd" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6495437553558579512" + } + } + ] + }, + "cborHex": "9f9f1b00546cecaa1200b6801bed127ba82d8be7f448586e3209ca102a23ffbf470b3cd804c365a21b8540fcddaee001d2446830dc3741e845ac0086f67f438dcfea4cb2ee5b376712117e23c2e63d4141ff9f47c954dd2d2d493fd8669f1b6c173cdabf6d45719f4b9899675d08c41469cd10a51b6f1757f9104513904a3664fbf6c4e33eba4222ffff4592b611e39f4c2b1d82e4f00edc927f6197fdff1b5a246e0a68976938ff", + "cborBytes": [ + 159, 159, 27, 0, 84, 108, 236, 170, 18, 0, 182, 128, 27, 237, 18, 123, 168, 45, 139, 231, 244, 72, 88, 110, 50, 9, + 202, 16, 42, 35, 255, 191, 71, 11, 60, 216, 4, 195, 101, 162, 27, 133, 64, 252, 221, 174, 224, 1, 210, 68, 104, + 48, 220, 55, 65, 232, 69, 172, 0, 134, 246, 127, 67, 141, 207, 234, 76, 178, 238, 91, 55, 103, 18, 17, 126, 35, + 194, 230, 61, 65, 65, 255, 159, 71, 201, 84, 221, 45, 45, 73, 63, 216, 102, 159, 27, 108, 23, 60, 218, 191, 109, + 69, 113, 159, 75, 152, 153, 103, 93, 8, 196, 20, 105, 205, 16, 165, 27, 111, 23, 87, 249, 16, 69, 19, 144, 74, 54, + 100, 251, 246, 196, 227, 62, 186, 66, 34, 255, 255, 69, 146, 182, 17, 227, 159, 76, 43, 29, 130, 228, 240, 14, + 220, 146, 127, 97, 151, 253, 255, 27, 90, 36, 110, 10, 104, 151, 105, 56, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3470, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1e84619267d82c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7423615379678054686" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13708150112139715708" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10871281799556000564" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b0b9" + }, + { + "_tag": "ByteArray", + "bytearray": "60eb64c5b5bb40c0cf66" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e1ff3dc383fb13250ebd94" + }, + { + "_tag": "ByteArray", + "bytearray": "ffef89a21b" + } + ] + }, + "cborHex": "9f471e84619267d82c9f1b6705fadb16d6491e1bbe3d21e5e9d1a47cd8669f1b96de8d32bbb46b349f42b0b94a60eb64c5b5bb40c0cf66ffffff4be1ff3dc383fb13250ebd9445ffef89a21bff", + "cborBytes": [ + 159, 71, 30, 132, 97, 146, 103, 216, 44, 159, 27, 103, 5, 250, 219, 22, 214, 73, 30, 27, 190, 61, 33, 229, 233, + 209, 164, 124, 216, 102, 159, 27, 150, 222, 141, 50, 187, 180, 107, 52, 159, 66, 176, 185, 74, 96, 235, 100, 197, + 181, 187, 64, 192, 207, 102, 255, 255, 255, 75, 225, 255, 61, 195, 131, 251, 19, 37, 14, 189, 148, 69, 255, 239, + 137, 162, 27, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3471, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7000445903835357250" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5913032340918015315" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12418332200324855245" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "82cc99da" + } + ] + }, + "cborHex": "9fd8669f1b61269475a771e0429f1b520f4f95e1d095531bac56c7574f2875cdffff4482cc99daff", + "cborBytes": [ + 159, 216, 102, 159, 27, 97, 38, 148, 117, 167, 113, 224, 66, 159, 27, 82, 15, 79, 149, 225, 208, 149, 83, 27, 172, + 86, 199, 87, 79, 40, 117, 205, 255, 255, 68, 130, 204, 153, 218, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3472, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "834dfc9996229eb5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1826688718205212263" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "265c576853" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15448410634165213392" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1e36e42e1b9c33d07ae370" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15971298031827417292" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3978789587761113693" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5111007387226929084" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2451065718020517347" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "733291508194448584" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2759943042381455111" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4831e970347d6d7ae67e5c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9049174498841516586" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afa1d58e9f8826af34" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10285822816865942258" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afe2dc10fe39113e8d524d0b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14313893029241757177" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7ea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14414651058978070234" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4260badecd29ce" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1742063871166164860" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d5847" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3675042699378570791" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "973708c9fd2da18b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4977894160816231050" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17489116514497949297" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5853885459811384259" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c923fe47ecbac9c3f4e1974" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10039836875550435180" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15964315435304823734" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6778894788660388255" + } + } + } + ] + } + ] + }, + "cborHex": "9f48834dfc9996229eb5d8669f1b1959b3b603d5d6679f9f45265c5768531bd663c79f61c8d8d04b1e36e42e1b9c33d07ae3701bdda572f0bcf7f8ccff1b3737800cae862a5dd8669f1b46edf223b00ef7bc9f1b2203ef48c3c02de3ffff1b0a2d2cbdd6bd94c8ffffbf1b264d499301751f074b4831e970347d6d7ae67e5c1b7d95204319f8da2a49afa1d58e9f8826af341b8ebe955af5e6faf24cafe2dc10fe39113e8d524d0b1bc6a529df30e51df942a7ea1bc80b20c41b989eda474260badecd29ceffbf1b182d0ddc68e6af7c431d58471b33005fdd26da362748973708c9fd2da18b1b4515085d80f1528a1bf2b5d2cf02116e711b513d2dcf7be1bbc34c4c923fe47ecbac9c3f4e19741b8b54aa71ea0d276c412a1bdd8ca44e4ba12bb61b5e1378e4e7d9619fffff", + "cborBytes": [ + 159, 72, 131, 77, 252, 153, 150, 34, 158, 181, 216, 102, 159, 27, 25, 89, 179, 182, 3, 213, 214, 103, 159, 159, + 69, 38, 92, 87, 104, 83, 27, 214, 99, 199, 159, 97, 200, 216, 208, 75, 30, 54, 228, 46, 27, 156, 51, 208, 122, + 227, 112, 27, 221, 165, 114, 240, 188, 247, 248, 204, 255, 27, 55, 55, 128, 12, 174, 134, 42, 93, 216, 102, 159, + 27, 70, 237, 242, 35, 176, 14, 247, 188, 159, 27, 34, 3, 239, 72, 195, 192, 45, 227, 255, 255, 27, 10, 45, 44, + 189, 214, 189, 148, 200, 255, 255, 191, 27, 38, 77, 73, 147, 1, 117, 31, 7, 75, 72, 49, 233, 112, 52, 125, 109, + 122, 230, 126, 92, 27, 125, 149, 32, 67, 25, 248, 218, 42, 73, 175, 161, 213, 142, 159, 136, 38, 175, 52, 27, 142, + 190, 149, 90, 245, 230, 250, 242, 76, 175, 226, 220, 16, 254, 57, 17, 62, 141, 82, 77, 11, 27, 198, 165, 41, 223, + 48, 229, 29, 249, 66, 167, 234, 27, 200, 11, 32, 196, 27, 152, 158, 218, 71, 66, 96, 186, 222, 205, 41, 206, 255, + 191, 27, 24, 45, 13, 220, 104, 230, 175, 124, 67, 29, 88, 71, 27, 51, 0, 95, 221, 38, 218, 54, 39, 72, 151, 55, 8, + 201, 253, 45, 161, 139, 27, 69, 21, 8, 93, 128, 241, 82, 138, 27, 242, 181, 210, 207, 2, 17, 110, 113, 27, 81, 61, + 45, 207, 123, 225, 187, 195, 76, 76, 146, 63, 228, 126, 203, 172, 156, 63, 78, 25, 116, 27, 139, 84, 170, 113, + 234, 13, 39, 108, 65, 42, 27, 221, 140, 164, 78, 75, 161, 43, 182, 27, 94, 19, 120, 228, 231, 217, 97, 159, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3473, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15475178950979204105" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "76c362" + }, + { + "_tag": "ByteArray", + "bytearray": "733339043d3c8f53" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1bd6c2e143d0b7b40980ffa04376c36248733339043d3c8f5380ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 214, 194, 225, 67, 208, 183, 180, 9, 128, 255, 160, 67, 118, 195, 98, 72, 115, 51, 57, 4, + 61, 60, 143, 83, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3474, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8946755383589469689" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de98b8feeaff5198" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2603960949156788810" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9da50aad9659cd25" + }, + { + "_tag": "ByteArray", + "bytearray": "f64645" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7626004798119523889" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6893415284638451773" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8139c8158dfbcb053fbe1e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6643867931261508228" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9405" + } + ] + }, + "cborHex": "9fd8669f1b7c29429e9329fdf99f48de98b8feeaff5198d8669f1b242320afd77aba4a9f489da50aad9659cd2543f646451b69d502f5a756b6311b5faa54adb21f883dffff4b8139c8158dfbcb053fbe1ebf4209b01b5c33c2aec9739a84ff411cffff429405ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 124, 41, 66, 158, 147, 41, 253, 249, 159, 72, 222, 152, 184, 254, 234, 255, 81, 152, 216, + 102, 159, 27, 36, 35, 32, 175, 215, 122, 186, 74, 159, 72, 157, 165, 10, 173, 150, 89, 205, 37, 67, 246, 70, 69, + 27, 105, 213, 2, 245, 167, 86, 182, 49, 27, 95, 170, 84, 173, 178, 31, 136, 61, 255, 255, 75, 129, 57, 200, 21, + 141, 251, 203, 5, 63, 190, 30, 191, 66, 9, 176, 27, 92, 51, 194, 174, 201, 115, 154, 132, 255, 65, 28, 255, 255, + 66, 148, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3475, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c7af2b2759ac" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5116496362940921951" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17692501500861813404" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5f8d59e6f38fc1597b6cd030" + }, + { + "_tag": "ByteArray", + "bytearray": "dc14" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1865690222561887876" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8833727291659159166" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4115517478502888144" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a63af" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9117105458269171858" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7612" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9460782838511704048" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9dee890030a0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12141031400207329702" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b1498f462d11526c5f148" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13786438094467037647" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14966023894761825368" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11816534557502350823" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2009551a23aa82" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6053208465893734405" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1afe1edf3be377a71d5c261d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9909120275042792300" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17198788253947348699" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3237928644716905295" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6593424579022305111" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "62" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13510325331968058690" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7965449413727565035" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8841861672695400645" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13901206853857421060" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4064947359043396896" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "533498594943708495" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7626649742817958316" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14441411570263237737" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8805194212425605793" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11349824478998338933" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c30dfc2" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f46c7af2b2759acd8669f1b470172556fabf85f9f1bf58864604aef129c414affff9f9f4c5f8d59e6f38fc1597b6cd03042dc14ffbf1b19e4435f60b886841b7a97b42b2e04867e1b391d41577d1372d0437a63af1b7e86771c1be8b0924276121b834b73ddc29a17f0469dee890030a01ba87d9bbb8838a9a64b9b1498f462d11526c5f1481bbf5344673a9ef9cf1bcfb1ff705b496458ff9f1ba3fcc392c80e25e7472009551a23aa82ffbf1b5401510748fbb8054c1afe1edf3be377a71d5c261d1b89844463ae8bf36c1beeae5ecb3bb146dbffffd8669f1b2cef6ef27469c34f9fd8669f1b5b808cb89df437579f41621bbb7e514f03eae5421b6e8af609fd9334eb1b7ab49a585a2688c51bc0eb01fb5965a704ffffbf1b386998160671a5201b07675e253fca2d4f1b69d74d888afd19ac1bc86a334f2cc1a4691b7a32557bf9f422a1417b1b9d82ad3acdba9d75449c30dfc2ffffffff", + "cborBytes": [ + 159, 70, 199, 175, 43, 39, 89, 172, 216, 102, 159, 27, 71, 1, 114, 85, 111, 171, 248, 95, 159, 27, 245, 136, 100, + 96, 74, 239, 18, 156, 65, 74, 255, 255, 159, 159, 76, 95, 141, 89, 230, 243, 143, 193, 89, 123, 108, 208, 48, 66, + 220, 20, 255, 191, 27, 25, 228, 67, 95, 96, 184, 134, 132, 27, 122, 151, 180, 43, 46, 4, 134, 126, 27, 57, 29, 65, + 87, 125, 19, 114, 208, 67, 122, 99, 175, 27, 126, 134, 119, 28, 27, 232, 176, 146, 66, 118, 18, 27, 131, 75, 115, + 221, 194, 154, 23, 240, 70, 157, 238, 137, 0, 48, 160, 27, 168, 125, 155, 187, 136, 56, 169, 166, 75, 155, 20, + 152, 244, 98, 209, 21, 38, 197, 241, 72, 27, 191, 83, 68, 103, 58, 158, 249, 207, 27, 207, 177, 255, 112, 91, 73, + 100, 88, 255, 159, 27, 163, 252, 195, 146, 200, 14, 37, 231, 71, 32, 9, 85, 26, 35, 170, 130, 255, 191, 27, 84, 1, + 81, 7, 72, 251, 184, 5, 76, 26, 254, 30, 223, 59, 227, 119, 167, 29, 92, 38, 29, 27, 137, 132, 68, 99, 174, 139, + 243, 108, 27, 238, 174, 94, 203, 59, 177, 70, 219, 255, 255, 216, 102, 159, 27, 44, 239, 110, 242, 116, 105, 195, + 79, 159, 216, 102, 159, 27, 91, 128, 140, 184, 157, 244, 55, 87, 159, 65, 98, 27, 187, 126, 81, 79, 3, 234, 229, + 66, 27, 110, 138, 246, 9, 253, 147, 52, 235, 27, 122, 180, 154, 88, 90, 38, 136, 197, 27, 192, 235, 1, 251, 89, + 101, 167, 4, 255, 255, 191, 27, 56, 105, 152, 22, 6, 113, 165, 32, 27, 7, 103, 94, 37, 63, 202, 45, 79, 27, 105, + 215, 77, 136, 138, 253, 25, 172, 27, 200, 106, 51, 79, 44, 193, 164, 105, 27, 122, 50, 85, 123, 249, 244, 34, 161, + 65, 123, 27, 157, 130, 173, 58, 205, 186, 157, 117, 68, 156, 48, 223, 194, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3476, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d81c219cbe9756" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f9f0047d81c219cbe97561bfffffffffffffff280ffff", + "cborBytes": [ + 159, 159, 0, 71, 216, 28, 33, 156, 190, 151, 86, 27, 255, 255, 255, 255, 255, 255, 255, 242, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3477, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03e0de56db5642ecee046bae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18338044353352179181" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "693664753035901710" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3473377124427410385" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9dee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f71a8a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e01132b78eb3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3549406943499644592" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6dad5bd7f7d89138d3ac5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afbca6cd72919be7" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "20d4e7886eb499be91b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3145898400238404034" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe5790" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1541884873318206808" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11688253914742891249" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12081987617606247909" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1492094618436099275" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5f60fb" + } + ] + }, + "cborHex": "9fbf4c03e0de56db5642ecee046bae1bfe7dd22e24ea1ded41101b09a0646aede9fb0e429c001b3033ea178876abd1429dee43f71a8a479e01132b78eb3f1b314206cf3e99eeb04bc6dad5bd7f7d89138d3ac548afbca6cd72919be7ffbf4a20d4e7886eb499be91b01b2ba879ed65ae01c243fe57901b1565e01f7eae0d58ff9f9f1ba235050228d1a2f1ffd8669f1ba7abd7b9a016a5e580ff9f1b14b4fc266727dccbffff435f60fbff", + "cborBytes": [ + 159, 191, 76, 3, 224, 222, 86, 219, 86, 66, 236, 238, 4, 107, 174, 27, 254, 125, 210, 46, 36, 234, 29, 237, 65, + 16, 27, 9, 160, 100, 106, 237, 233, 251, 14, 66, 156, 0, 27, 48, 51, 234, 23, 136, 118, 171, 209, 66, 157, 238, + 67, 247, 26, 138, 71, 158, 1, 19, 43, 120, 235, 63, 27, 49, 66, 6, 207, 62, 153, 238, 176, 75, 198, 218, 213, 189, + 127, 125, 137, 19, 141, 58, 197, 72, 175, 188, 166, 205, 114, 145, 155, 231, 255, 191, 74, 32, 212, 231, 136, 110, + 180, 153, 190, 145, 176, 27, 43, 168, 121, 237, 101, 174, 1, 194, 67, 254, 87, 144, 27, 21, 101, 224, 31, 126, + 174, 13, 88, 255, 159, 159, 27, 162, 53, 5, 2, 40, 209, 162, 241, 255, 216, 102, 159, 27, 167, 171, 215, 185, 160, + 22, 165, 229, 128, 255, 159, 27, 20, 180, 252, 38, 103, 39, 220, 203, 255, 255, 67, 95, 96, 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3478, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13347515449304668898" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9831355211349353071" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14345126826628937570" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11995638080320358749" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16171379501416565612" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17247094641065793026" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6214607751558348683" + } + } + ] + }, + "cborHex": "9f9fd8669f1bb93be6953dd7dae29f1b886ffd79d929e26fffffd8669f1bc71420d85724f7629f1ba679114747a4c95d1be06c47fa15f7cb6cffffd8669f1bef59fd327045160280ff80ff1b563eb8d2da063f8bff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 185, 59, 230, 149, 61, 215, 218, 226, 159, 27, 136, 111, 253, 121, 217, 41, 226, 111, + 255, 255, 216, 102, 159, 27, 199, 20, 32, 216, 87, 36, 247, 98, 159, 27, 166, 121, 17, 71, 71, 164, 201, 93, 27, + 224, 108, 71, 250, 21, 247, 203, 108, 255, 255, 216, 102, 159, 27, 239, 89, 253, 50, 112, 69, 22, 2, 128, 255, + 128, 255, 27, 86, 62, 184, 210, 218, 6, 63, 139, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3479, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5360632974634624119" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10561289300678657579" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a5480d407ebfbb9b1176e0" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17219185853754296442" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b4a64cb49e057a4779f9f4105ffffff9f9f1b92913ca9b115c62b4ba5480d407ebfbb9b1176e0ffd8669f1beef6d64d8674c87a80ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 74, 100, 203, 73, 224, 87, 164, 119, 159, 159, 65, 5, 255, 255, 255, 159, 159, 27, 146, + 145, 60, 169, 177, 21, 198, 43, 75, 165, 72, 13, 64, 126, 191, 187, 155, 17, 118, 224, 255, 216, 102, 159, 27, + 238, 246, 214, 77, 134, 116, 200, 122, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3480, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7523824418958300988" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16848013548185243744" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2741713320348074683" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26ab6d9bb6297495c99d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4196502427847570083" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "428172617617649207" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15007070942941740139" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9abd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbad4c8c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4bad3218" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cf5e1550ca9b6718" + } + ] + }, + "cborHex": "9f1b6869fe72346b573cd8669f1be9d02b0eb68cd0609fbf1b260c85bd174dc2bb4a26ab6d9bb6297495c99d1b3a3cf8b95eeb32a31b05f12cba27a62e371bd043d3830120fc6b429abd44fbad4c8c444bad3218ffffff48cf5e1550ca9b6718ff", + "cborBytes": [ + 159, 27, 104, 105, 254, 114, 52, 107, 87, 60, 216, 102, 159, 27, 233, 208, 43, 14, 182, 140, 208, 96, 159, 191, + 27, 38, 12, 133, 189, 23, 77, 194, 187, 74, 38, 171, 109, 155, 182, 41, 116, 149, 201, 157, 27, 58, 60, 248, 185, + 94, 235, 50, 163, 27, 5, 241, 44, 186, 39, 166, 46, 55, 27, 208, 67, 211, 131, 1, 32, 252, 107, 66, 154, 189, 68, + 251, 173, 76, 140, 68, 75, 173, 50, 24, 255, 255, 255, 72, 207, 94, 21, 80, 202, 155, 103, 24, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3481, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3764752224097992933" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14540709663846022417" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4390232261463479621" + } + } + ] + }, + "cborHex": "9fd8669f1b343f163388b900e59f1bc9cafa6637a1bd11ffff1b3ced3cfb39fd9545ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 52, 63, 22, 51, 136, 185, 0, 229, 159, 27, 201, 202, 250, 102, 55, 161, 189, 17, 255, 255, + 27, 60, 237, 60, 251, 57, 253, 149, 69, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3482, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d0" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5fa92d81c23774" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bfe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "026e0401" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "060004f8fe7d9e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb02fb0c064ffbfc" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [] + } + ] + }, + "cborHex": "9f9f9f41d0ffbf475fa92d81c237740b426bfe44026e0401ffffbf47060004f8fe7d9e48fb02fb0c064ffbfcffd8669f1bfffffffffffffff680ffff", + "cborBytes": [ + 159, 159, 159, 65, 208, 255, 191, 71, 95, 169, 45, 129, 194, 55, 116, 11, 66, 107, 254, 68, 2, 110, 4, 1, 255, + 255, 191, 71, 6, 0, 4, 248, 254, 125, 158, 72, 251, 2, 251, 12, 6, 79, 251, 252, 255, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 246, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3483, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5601a5a9d44d63b714da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3884a3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "848d08eafb2d015d20" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3372087450727286039" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f43ee8e8b2c55faf0b347" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12013551457845011592" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3e754eadacf9a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab8af9e514d1664da0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3b454" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1690587141457231106" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff9483ff7e7dc85cc234" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68331466" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8270f8199c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "26623823919550693" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b99cf9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12e74d7d2718" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fb122946010f28ad3165a8" + } + ] + }, + "cborHex": "9f03bf4a5601a5a9d44d63b714da433884a349848d08eafb2d015d201b2ecc0fab9c2705174b9f43ee8e8b2c55faf0b3471ba6b8b5667fba648847c3e754eadacf9a49ab8af9e514d1664da043d3b4541b17762c0c4c66bd024aff9483ff7e7dc85cc2344468331466ffbf46a8270f8199c81b005e963a0f4990e543b99cf94612e74d7d2718ff4bfb122946010f28ad3165a8ff", + "cborBytes": [ + 159, 3, 191, 74, 86, 1, 165, 169, 212, 77, 99, 183, 20, 218, 67, 56, 132, 163, 73, 132, 141, 8, 234, 251, 45, 1, + 93, 32, 27, 46, 204, 15, 171, 156, 39, 5, 23, 75, 159, 67, 238, 142, 139, 44, 85, 250, 240, 179, 71, 27, 166, 184, + 181, 102, 127, 186, 100, 136, 71, 195, 231, 84, 234, 218, 207, 154, 73, 171, 138, 249, 229, 20, 209, 102, 77, 160, + 67, 211, 180, 84, 27, 23, 118, 44, 12, 76, 102, 189, 2, 74, 255, 148, 131, 255, 126, 125, 200, 92, 194, 52, 68, + 104, 51, 20, 102, 255, 191, 70, 168, 39, 15, 129, 153, 200, 27, 0, 94, 150, 58, 15, 73, 144, 229, 67, 185, 156, + 249, 70, 18, 231, 77, 125, 39, 24, 255, 75, 251, 18, 41, 70, 1, 15, 40, 173, 49, 101, 168, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3484, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "95a21e819f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10987074017000156183" + }, + "fields": [] + } + ] + }, + "cborHex": "9f4595a21e819fd8669f1b9879ed9b4037ec1780ffff", + "cborBytes": [ + 159, 69, 149, 162, 30, 129, 159, 216, 102, 159, 27, 152, 121, 237, 155, 64, 55, 236, 23, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3485, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d37321" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17417225865278838593" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c6a05eef946665b19a8556" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "50c088" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4134204526445126135" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88e335f2421ad33c09b6dc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8747542750168521698" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3c8a7ab29f28f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12301943504423519576" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4a5d794d970" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "735c18683eca75d257bf" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8376" + } + ] + } + ] + }, + "cborHex": "9f9f43d373211bf1b66aa4e0b0d7414bc6a05eef946665b19a8556bf4350c0881b395fa51ce392e1f74b88e335f2421ad33c09b6dc1b796583c8e9569be247a3c8a7ab29f28f1baab948705416855846f4a5d794d9704a735c18683eca75d257bfff428376ffff", + "cborBytes": [ + 159, 159, 67, 211, 115, 33, 27, 241, 182, 106, 164, 224, 176, 215, 65, 75, 198, 160, 94, 239, 148, 102, 101, 177, + 154, 133, 86, 191, 67, 80, 192, 136, 27, 57, 95, 165, 28, 227, 146, 225, 247, 75, 136, 227, 53, 242, 66, 26, 211, + 60, 9, 182, 220, 27, 121, 101, 131, 200, 233, 86, 155, 226, 71, 163, 200, 167, 171, 41, 242, 143, 27, 170, 185, + 72, 112, 84, 22, 133, 88, 70, 244, 165, 215, 148, 217, 112, 74, 115, 92, 24, 104, 62, 202, 117, 210, 87, 191, 255, + 66, 131, 118, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3486, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6931155112512632814" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5181724498220447016" + } + }, + { + "_tag": "ByteArray", + "bytearray": "628d22947b5f79021466e6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15241835789040275059" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "135043164472364681" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51bf2e77badcb5165f2568" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2072604328064942862" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f10b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6919950242482505058" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3515335101843050649" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9304427020828656781" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bfb79e7f949a1f98497325" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13869998086105307817" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97eb" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "07d9e0e3bfbfb2b0df3333d5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1681489212610852345" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12588956248605570801" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6abc864385140d8b35" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8945641332559395695" + } + } + ] + }, + "cborHex": "9f9fd8669f1b603068da1c72b7ee9f1b47e92efa285e75284b628d22947b5f79021466e6ffff1bd385e0e53a94ce73bf1b01dfc50ae7b84e894b51bf2e77badcb5165f25681b1cc35ea7be3f830e42f10b1b60089a15028c45621b30c8faa66bd110991b811ff7141709c48d4bbfb79e7f949a1f984973251bc07c21c5dda79aa94297ebff4c07d9e0e3bfbfb2b0df3333d5d8669f1b1755d987ab5235f99f1baeb4f5024b11b6f1496abc864385140d8b35ffffff1b7c254d655b413b6fff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 96, 48, 104, 218, 28, 114, 183, 238, 159, 27, 71, 233, 46, 250, 40, 94, 117, 40, 75, + 98, 141, 34, 148, 123, 95, 121, 2, 20, 102, 230, 255, 255, 27, 211, 133, 224, 229, 58, 148, 206, 115, 191, 27, 1, + 223, 197, 10, 231, 184, 78, 137, 75, 81, 191, 46, 119, 186, 220, 181, 22, 95, 37, 104, 27, 28, 195, 94, 167, 190, + 63, 131, 14, 66, 241, 11, 27, 96, 8, 154, 21, 2, 140, 69, 98, 27, 48, 200, 250, 166, 107, 209, 16, 153, 27, 129, + 31, 247, 20, 23, 9, 196, 141, 75, 191, 183, 158, 127, 148, 154, 31, 152, 73, 115, 37, 27, 192, 124, 33, 197, 221, + 167, 154, 169, 66, 151, 235, 255, 76, 7, 217, 224, 227, 191, 191, 178, 176, 223, 51, 51, 213, 216, 102, 159, 27, + 23, 85, 217, 135, 171, 82, 53, 249, 159, 27, 174, 180, 245, 2, 75, 17, 182, 241, 73, 106, 188, 134, 67, 133, 20, + 13, 139, 53, 255, 255, 255, 27, 124, 37, 77, 101, 91, 65, 59, 111, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3487, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17456437530102420427" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "20cd6472bf2428fdfcd71aff" + }, + { + "_tag": "ByteArray", + "bytearray": "24" + }, + { + "_tag": "ByteArray", + "bytearray": "3c797fafc57a2ce088" + }, + { + "_tag": "ByteArray", + "bytearray": "878f89dcbae27121f9" + }, + { + "_tag": "ByteArray", + "bytearray": "a37bd5a07bea97b2323e4d" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "92ad37521a5c950c" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89ec14cb471102cfde" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6875657582864780414" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "be565eb9" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1bf241b972098d53cb9f4c20cd6472bf2428fdfcd71aff4124493c797fafc57a2ce08849878f89dcbae27121f94ba37bd5a07bea97b2323e4dffffff9f4892ad37521a5c950cbf41e84989ec14cb471102cfdeffd8669f1b5f6b3e248fe04c7e9f44be565eb9ffffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 242, 65, 185, 114, 9, 141, 83, 203, 159, 76, 32, 205, 100, 114, 191, 36, 40, 253, + 252, 215, 26, 255, 65, 36, 73, 60, 121, 127, 175, 197, 122, 44, 224, 136, 73, 135, 143, 137, 220, 186, 226, 113, + 33, 249, 75, 163, 123, 213, 160, 123, 234, 151, 178, 50, 62, 77, 255, 255, 255, 159, 72, 146, 173, 55, 82, 26, 92, + 149, 12, 191, 65, 232, 73, 137, 236, 20, 203, 71, 17, 2, 207, 222, 255, 216, 102, 159, 27, 95, 107, 62, 36, 143, + 224, 76, 126, 159, 68, 190, 86, 94, 185, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3488, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6ce73c64d3" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "99" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11102540194473948301" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "519028e385fce4996ffc" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8076247875061965301" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9911945799771763633" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8275092604488614167" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15701223063316055681" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7678504978900830376" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1569460661683060710" + } + }, + { + "_tag": "ByteArray", + "bytearray": "384f01ad288d85632f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13041412977046925217" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b7cbec" + } + ] + } + ] + }, + "cborHex": "9f456ce73c64d3bf41991b9a14257bac1db48dff4a519028e385fce4996ffc9f1b701498a70f1261f51b898e4e306c5233b1ffd8669f1b72d708e1660181179f1bd9e5f32ffc1fc681d8669f1b6a8f87988973c8a89f1b15c7d8280c917fe649384f01ad288d85632f1bb4fc68019a0d2fa1ffff43b7cbecffffff", + "cborBytes": [ + 159, 69, 108, 231, 60, 100, 211, 191, 65, 153, 27, 154, 20, 37, 123, 172, 29, 180, 141, 255, 74, 81, 144, 40, 227, + 133, 252, 228, 153, 111, 252, 159, 27, 112, 20, 152, 167, 15, 18, 97, 245, 27, 137, 142, 78, 48, 108, 82, 51, 177, + 255, 216, 102, 159, 27, 114, 215, 8, 225, 102, 1, 129, 23, 159, 27, 217, 229, 243, 47, 252, 31, 198, 129, 216, + 102, 159, 27, 106, 143, 135, 152, 137, 115, 200, 168, 159, 27, 21, 199, 216, 40, 12, 145, 127, 230, 73, 56, 79, 1, + 173, 40, 141, 133, 99, 47, 27, 180, 252, 104, 1, 154, 13, 47, 161, 255, 255, 67, 183, 203, 236, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3489, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ddc63200" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c51505c2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "374310915604878535" + } + }, + { + "_tag": "ByteArray", + "bytearray": "84224ad6f219" + }, + { + "_tag": "ByteArray", + "bytearray": "1002e247288d08b3" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "560482771716450828" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4356465323022686441" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13842410184782289181" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16131360217879361043" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c21647b3119b407095b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13436851104129742637" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b0" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5269231613563203812" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10414833228532710864" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10380738451269657147" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffff9f44ddc632009f44c51505c2ff9f1b0531d1cb682e14c74684224ad6f219481002e247288d08b3ff1b07c73c1c7ee2aa0cd8669f1b3c754621371318e99f1bc01a1eb90b32991d1bdfde1aa68a9136134ac21647b3119b407095b01bba7948e34177f72d41b0ffffffff099f9f1b4920123c25b170e41b9088eba425a07dd01b900fca9f362aa23bffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 68, 221, 198, 50, 0, 159, 68, 197, 21, 5, + 194, 255, 159, 27, 5, 49, 209, 203, 104, 46, 20, 199, 70, 132, 34, 74, 214, 242, 25, 72, 16, 2, 226, 71, 40, 141, + 8, 179, 255, 27, 7, 199, 60, 28, 126, 226, 170, 12, 216, 102, 159, 27, 60, 117, 70, 33, 55, 19, 24, 233, 159, 27, + 192, 26, 30, 185, 11, 50, 153, 29, 27, 223, 222, 26, 166, 138, 145, 54, 19, 74, 194, 22, 71, 179, 17, 155, 64, + 112, 149, 176, 27, 186, 121, 72, 227, 65, 119, 247, 45, 65, 176, 255, 255, 255, 255, 9, 159, 159, 27, 73, 32, 18, + 60, 37, 177, 112, 228, 27, 144, 136, 235, 164, 37, 160, 125, 208, 27, 144, 15, 202, 159, 54, 42, 162, 59, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3490, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f08895de" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7457693557043670646" + } + } + ] + }, + "cborHex": "9f44f08895de1b677f0cc70f4eae76ff", + "cborBytes": [159, 68, 240, 136, 149, 222, 27, 103, 127, 12, 199, 15, 78, 174, 118, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3491, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07e20992" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17145245205362276117" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "17fdc256476b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "588111753234469851" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c02162b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15002504113442132082" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "357874ec70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0fd2fcf581cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ac813712eb4b71e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "727b8acf243cf039e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12314895904164133535" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4407e209921bedf025acc49677154617fdc256476b1b082964860bc5d3db441c02162b1bd0339a01270e107245357874ec70460fd2fcf581cd485ac813712eb4b71e411149727b8acf243cf039e51baae74c93e59dba9fffff", + "cborBytes": [ + 159, 191, 68, 7, 226, 9, 146, 27, 237, 240, 37, 172, 196, 150, 119, 21, 70, 23, 253, 194, 86, 71, 107, 27, 8, 41, + 100, 134, 11, 197, 211, 219, 68, 28, 2, 22, 43, 27, 208, 51, 154, 1, 39, 14, 16, 114, 69, 53, 120, 116, 236, 112, + 70, 15, 210, 252, 245, 129, 205, 72, 90, 200, 19, 113, 46, 180, 183, 30, 65, 17, 73, 114, 123, 138, 207, 36, 60, + 240, 57, 229, 27, 170, 231, 76, 147, 229, 157, 186, 159, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3492, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "392727177578756186" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "43c0499d9f930b1396b26d" + }, + { + "_tag": "ByteArray", + "bytearray": "7638c642edff" + }, + { + "_tag": "ByteArray", + "bytearray": "aaacb47ce21456a79a" + }, + { + "_tag": "ByteArray", + "bytearray": "7f218a12c93d0e2b71e98f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2370636719169527671" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "208294490158688443" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16452596313043369290" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2696219230246764234" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2587694807569172019" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6680559569538078728" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14863654926800952612" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7967476202835139102" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a2ca6bc" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9581465104646999129" + } + } + ] + }, + "cborHex": "9f9fd8669f1b05733f498939385a9f4b43c0499d9f930b1396b26d467638c642edff49aaacb47ce21456a79a4b7f218a12c93d0e2b71e98f1b20e631893198df77ffffbf1b02e402bc369468bb1be4535d2d57d9fd4a1b256ae51acf6f7eca1b23e956b7a04886331b5cb61d888b2758081bce464f67a7f49d241b6e9229649a5dda1e448a2ca6bcffff1b84f833bf76490c59ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 5, 115, 63, 73, 137, 57, 56, 90, 159, 75, 67, 192, 73, 157, 159, 147, 11, 19, 150, + 178, 109, 70, 118, 56, 198, 66, 237, 255, 73, 170, 172, 180, 124, 226, 20, 86, 167, 154, 75, 127, 33, 138, 18, + 201, 61, 14, 43, 113, 233, 143, 27, 32, 230, 49, 137, 49, 152, 223, 119, 255, 255, 191, 27, 2, 228, 2, 188, 54, + 148, 104, 187, 27, 228, 83, 93, 45, 87, 217, 253, 74, 27, 37, 106, 229, 26, 207, 111, 126, 202, 27, 35, 233, 86, + 183, 160, 72, 134, 51, 27, 92, 182, 29, 136, 139, 39, 88, 8, 27, 206, 70, 79, 103, 167, 244, 157, 36, 27, 110, + 146, 41, 100, 154, 93, 218, 30, 68, 138, 44, 166, 188, 255, 255, 27, 132, 248, 51, 191, 118, 73, 12, 89, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3493, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe0ce1f7c6103c062726a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d39b197eb7e2bc51a54470" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14653125777509433953" + } + } + ] + }, + "cborHex": "9fbf4bfe0ce1f7c6103c062726a44bd39b197eb7e2bc51a54470ff1bcb5a5c425191c261ff", + "cborBytes": [ + 159, 191, 75, 254, 12, 225, 247, 198, 16, 60, 6, 39, 38, 164, 75, 211, 155, 25, 126, 183, 226, 188, 81, 165, 68, + 112, 255, 27, 203, 90, 92, 66, 81, 145, 194, 97, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3494, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8833d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + }, + "cborHex": "9f438833d008ff", + "cborBytes": [159, 67, 136, 51, 208, 8, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3495, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4803679728645070977" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "020103a7040707fbd84dfe02" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f7a573fb7b8a5e42fff7e768" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6ccf334bc0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15620581470574550620" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "78c3e81192" + }, + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "ByteArray", + "bytearray": "0102fb" + }, + { + "_tag": "ByteArray", + "bytearray": "29ae" + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b42aa194320a260814c020103a7040707fbd84dfe02ffd905059f9f4cf7a573fb7b8a5e42fff7e768ffff456ccf334bc09fd8669f1bd8c774160aa51e5c9f4578c3e811924100430102fb4229aeffffffff", + "cborBytes": [ + 159, 191, 27, 66, 170, 25, 67, 32, 162, 96, 129, 76, 2, 1, 3, 167, 4, 7, 7, 251, 216, 77, 254, 2, 255, 217, 5, 5, + 159, 159, 76, 247, 165, 115, 251, 123, 138, 94, 66, 255, 247, 231, 104, 255, 255, 69, 108, 207, 51, 75, 192, 159, + 216, 102, 159, 27, 216, 199, 116, 22, 10, 165, 30, 92, 159, 69, 120, 195, 232, 17, 146, 65, 0, 67, 1, 2, 251, 66, + 41, 174, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3496, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0049f806eb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5132354551247665830" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "f4" + } + ] + }, + "cborHex": "9f80bf00450049f806eb1b4739c945a079faa603ff8041f4ff", + "cborBytes": [ + 159, 128, 191, 0, 69, 0, 73, 248, 6, 235, 27, 71, 57, 201, 69, 160, 121, 250, 166, 3, 255, 128, 65, 244, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3497, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6349bed5529367" + }, + { + "_tag": "ByteArray", + "bytearray": "f4d1" + }, + { + "_tag": "ByteArray", + "bytearray": "443707bfef8d0a8af4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2183995471578567968" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "455567064277627141" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1699578764254613228" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f9f9f476349bed552936742f4d149443707bfef8d0a8af41b1e4f1c4f628095201b06527fd4cda2b105ffd8669f1b17961de19f318eec80ffffff", + "cborBytes": [ + 159, 159, 159, 71, 99, 73, 190, 213, 82, 147, 103, 66, 244, 209, 73, 68, 55, 7, 191, 239, 141, 10, 138, 244, 27, + 30, 79, 28, 79, 98, 128, 149, 32, 27, 6, 82, 127, 212, 205, 162, 177, 5, 255, 216, 102, 159, 27, 23, 150, 29, 225, + 159, 49, 142, 236, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3498, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f3c1c44840fa47d14a76df61" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2409205329569780190" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "992658132421584498" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d9c1fefae1fa45df50fe6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3628892785445263211" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ae201d87c8cb2069f05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6946162905803831143" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "717adf0d34de4e29d71a6acb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13340292654993220031" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9364321325814284700" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16750303425207130606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10119535603226456876" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11906254727959484515" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8734638509241867174" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "688a1935d73e3d30ad74" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2536727850174361646" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1876a7f444ac713b05ec4cc4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2702526682126006159" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17674919731244178288" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5801870556747472934" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67385f7622c56549407c0476" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9999520997057693740" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a56b4d4e59c9ecd8a1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15563082013321911812" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15464737350061165988" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13382929040593512571" + } + } + ] + }, + "cborHex": "9f4cf3c1c44840fa47d14a76df61d8669f1b216f377b93fc11de9fbf1b0dc6a14fe66426724b3d9c1fefae1fa45df50fe61b325c6ac2fc71576b4a4ae201d87c8cb2069f051b6065ba5c486eb7674c717adf0d34de4e29d71a6acb1bb9223d7d649fa1bf1b81f4c0a1abc6819c1be8750837e37ad9ee1b8c6fd003fa3b332cffd8669f1ba53b8397d157186380ffffffd8669f1b7937ab7230cf1ba69f4a688a1935d73e3d30ad74ffff9fbf1b2334448a217bb02e4c1876a7f444ac713b05ec4cc41b25814db2e422b78f1bf549edd98e5a1b701b508462881fbb20264c67385f7622c56549407c04761b8ac56f5df9af082c49a56b4d4e59c9ecd8a11bd7fb2ca26652de041bd69dc8af271c8da4ffff1bb9b9b70e7ed5e87bff", + "cborBytes": [ + 159, 76, 243, 193, 196, 72, 64, 250, 71, 209, 74, 118, 223, 97, 216, 102, 159, 27, 33, 111, 55, 123, 147, 252, 17, + 222, 159, 191, 27, 13, 198, 161, 79, 230, 100, 38, 114, 75, 61, 156, 31, 239, 174, 31, 164, 93, 245, 15, 230, 27, + 50, 92, 106, 194, 252, 113, 87, 107, 74, 74, 226, 1, 216, 124, 140, 178, 6, 159, 5, 27, 96, 101, 186, 92, 72, 110, + 183, 103, 76, 113, 122, 223, 13, 52, 222, 78, 41, 215, 26, 106, 203, 27, 185, 34, 61, 125, 100, 159, 161, 191, 27, + 129, 244, 192, 161, 171, 198, 129, 156, 27, 232, 117, 8, 55, 227, 122, 217, 238, 27, 140, 111, 208, 3, 250, 59, + 51, 44, 255, 216, 102, 159, 27, 165, 59, 131, 151, 209, 87, 24, 99, 128, 255, 255, 255, 216, 102, 159, 27, 121, + 55, 171, 114, 48, 207, 27, 166, 159, 74, 104, 138, 25, 53, 215, 62, 61, 48, 173, 116, 255, 255, 159, 191, 27, 35, + 52, 68, 138, 33, 123, 176, 46, 76, 24, 118, 167, 244, 68, 172, 113, 59, 5, 236, 76, 196, 27, 37, 129, 77, 178, + 228, 34, 183, 143, 27, 245, 73, 237, 217, 142, 90, 27, 112, 27, 80, 132, 98, 136, 31, 187, 32, 38, 76, 103, 56, + 95, 118, 34, 197, 101, 73, 64, 124, 4, 118, 27, 138, 197, 111, 93, 249, 175, 8, 44, 73, 165, 107, 77, 78, 89, 201, + 236, 216, 161, 27, 215, 251, 44, 162, 102, 82, 222, 4, 27, 214, 157, 200, 175, 39, 28, 141, 164, 255, 255, 27, + 185, 185, 183, 14, 126, 213, 232, 123, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3499, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7139002933997296624" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1496564140987754649" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cfcab23b11fbc13e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14411751550307611843" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18322269039371345879" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bb350379feed4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15577865134057631950" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17605243306300703296" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f1e26a8059c616" + }, + { + "_tag": "ByteArray", + "bytearray": "91699e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14938986566380153371" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b59d0c68cbc41c5447b5" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6805962066379415180" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "525342138668061109" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16362580245725359294" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "742925384060742646" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6187960383558462168" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd3b868a66" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9680867611205413989" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14517221891049158683" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6604730543149186177" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dd76ad88aa7e64a4ca2a" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "10" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "66" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a644cee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ab46eac90bec8b48b" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3968417128821285093" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f1b6312d5582b615bf0ff1b14c4dd283729a89948cfcab23b11fbc13ebf1bc800d3ada34534c31bfe45c69da2dddfd7474bb350379feed41bd82fb1cdea72b0ceffd8669f1bf4526382b06082409f47f1e26a8059c6164391699e1bcf51f121c96bea1b4ab59d0c68cbc41c5447b5ffffffd8669f1b5e73a27099541e8c9fbf1b074a63e448da91b51be313900a7348acbe1b0a4f66b35b8fabf641841b55e00d2f02312ad845cd3b868a661b865959cd0b7bac6541b41bc9778864f582781b1b5ba8b76f85947c81ff9f4add76ad88aa7e64a4ca2aff4110bf4166442a644cee41b841d941d5490ab46eac90bec8b48bff1b3712a65a63f7e0e5ffffff", + "cborBytes": [ + 159, 159, 159, 27, 99, 18, 213, 88, 43, 97, 91, 240, 255, 27, 20, 196, 221, 40, 55, 41, 168, 153, 72, 207, 202, + 178, 59, 17, 251, 193, 62, 191, 27, 200, 0, 211, 173, 163, 69, 52, 195, 27, 254, 69, 198, 157, 162, 221, 223, 215, + 71, 75, 179, 80, 55, 159, 238, 212, 27, 216, 47, 177, 205, 234, 114, 176, 206, 255, 216, 102, 159, 27, 244, 82, + 99, 130, 176, 96, 130, 64, 159, 71, 241, 226, 106, 128, 89, 198, 22, 67, 145, 105, 158, 27, 207, 81, 241, 33, 201, + 107, 234, 27, 74, 181, 157, 12, 104, 203, 196, 28, 84, 71, 181, 255, 255, 255, 216, 102, 159, 27, 94, 115, 162, + 112, 153, 84, 30, 140, 159, 191, 27, 7, 74, 99, 228, 72, 218, 145, 181, 27, 227, 19, 144, 10, 115, 72, 172, 190, + 27, 10, 79, 102, 179, 91, 143, 171, 246, 65, 132, 27, 85, 224, 13, 47, 2, 49, 42, 216, 69, 205, 59, 134, 138, 102, + 27, 134, 89, 89, 205, 11, 123, 172, 101, 65, 180, 27, 201, 119, 136, 100, 245, 130, 120, 27, 27, 91, 168, 183, + 111, 133, 148, 124, 129, 255, 159, 74, 221, 118, 173, 136, 170, 126, 100, 164, 202, 42, 255, 65, 16, 191, 65, 102, + 68, 42, 100, 76, 238, 65, 184, 65, 217, 65, 213, 73, 10, 180, 110, 172, 144, 190, 200, 180, 139, 255, 27, 55, 18, + 166, 90, 99, 247, 224, 229, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3500, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18387603907031866706" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1912764974876570718" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1019321136876969283" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3353032526966792484" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15725753087804182515" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18093912528039332936" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba22d9acd704749f" + } + } + ] + } + ] + }, + "cborHex": "9f12a0d8669f1bff2de454ed381d529f1b1a8b819c4253b45e1b0e255b2c63995d439f0c1b2e885d51722fa1240aff1bfffffffffffffff81bfffffffffffffff1ffffbf1bda3d191d60120ff31bfb1a7d941ec64c481bfffffffffffffff548ba22d9acd704749fffff", + "cborBytes": [ + 159, 18, 160, 216, 102, 159, 27, 255, 45, 228, 84, 237, 56, 29, 82, 159, 27, 26, 139, 129, 156, 66, 83, 180, 94, + 27, 14, 37, 91, 44, 99, 153, 93, 67, 159, 12, 27, 46, 136, 93, 81, 114, 47, 161, 36, 10, 255, 27, 255, 255, 255, + 255, 255, 255, 255, 248, 27, 255, 255, 255, 255, 255, 255, 255, 241, 255, 255, 191, 27, 218, 61, 25, 29, 96, 18, + 15, 243, 27, 251, 26, 125, 148, 30, 198, 76, 72, 27, 255, 255, 255, 255, 255, 255, 255, 245, 72, 186, 34, 217, + 172, 215, 4, 116, 159, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3501, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18095941001077049536" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1e00f1d1c4b8adcd" + }, + { + "_tag": "ByteArray", + "bytearray": "95d8" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e0ffa823a43b1ee26c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16429605089578845728" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44fa62e09b6768" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1968511440497989485" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bb91c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86740388b59d848e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86e075c975cb45b3b51f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92e6" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5276c1b18d8b17ea0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86c9846c3ce0ec89" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3214932334281045917" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffffe9fd8669f1bfb21b276cd9fc8c09f481e00f1d1c4b8adcd4295d8ffffbf4a3e0ffa823a43b1ee26c21be401aec7fc4c06204744fa62e09b67681b1b518eb9bb2cd76d437bb91c41894886740388b59d848e41b44a86e075c975cb45b3b51f4292e6ffbf49c5276c1b18d8b17ea04886c9846c3ce0ec89ff41bc1b2c9dbbecb1bd379dffff1bfffffffffffffff4ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 216, 102, 159, 27, 251, 33, 178, 118, 205, + 159, 200, 192, 159, 72, 30, 0, 241, 209, 196, 184, 173, 205, 66, 149, 216, 255, 255, 191, 74, 62, 15, 250, 130, + 58, 67, 177, 238, 38, 194, 27, 228, 1, 174, 199, 252, 76, 6, 32, 71, 68, 250, 98, 224, 155, 103, 104, 27, 27, 81, + 142, 185, 187, 44, 215, 109, 67, 123, 185, 28, 65, 137, 72, 134, 116, 3, 136, 181, 157, 132, 142, 65, 180, 74, + 134, 224, 117, 201, 117, 203, 69, 179, 181, 31, 66, 146, 230, 255, 191, 73, 197, 39, 108, 27, 24, 216, 177, 126, + 160, 72, 134, 201, 132, 108, 60, 224, 236, 137, 255, 65, 188, 27, 44, 157, 187, 236, 177, 189, 55, 157, 255, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 244, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3502, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11636909431686741212" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f4c5bfe46a534f9dd32a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "489144902839306900" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68f85d0ee6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5337027628800147514" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd9050c9f9f0b1ba17e9b791f14bcdcffa0a0bf4b4f4c5bfe46a534f9dd32a71b06c9cab2916e0a944568f85d0ee61b4a10ee5a0314003affffff", + "cborBytes": [ + 159, 217, 5, 12, 159, 159, 11, 27, 161, 126, 155, 121, 31, 20, 188, 220, 255, 160, 160, 191, 75, 79, 76, 91, 254, + 70, 165, 52, 249, 221, 50, 167, 27, 6, 201, 202, 178, 145, 110, 10, 148, 69, 104, 248, 93, 14, 230, 27, 74, 16, + 238, 90, 3, 20, 0, 58, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3503, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3904066180745495226" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2099668197702968515" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3d07920607fc0202" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7f08eaf48bd442e3de1bf0" + }, + { + "_tag": "ByteArray", + "bytearray": "0537830af8fffcfed38f47" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0164c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6dd5b52a809de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "575129ba8a0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16293157775163886480" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffffd9f1b362e0781baf382ba1b1d238519ee4524c3483d07920607fc0202d8669f1bfffffffffffffff19f4b7f08eaf48bd442e3de1bf04b0537830af8fffcfed38f47ffffffffbf430164c147a6dd5b52a809de46575129ba8a0f1be21cecabf2098b90ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 27, 54, 46, 7, 129, 186, 243, 130, 186, 27, + 29, 35, 133, 25, 238, 69, 36, 195, 72, 61, 7, 146, 6, 7, 252, 2, 2, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 241, 159, 75, 127, 8, 234, 244, 139, 212, 66, 227, 222, 27, 240, 75, 5, 55, 131, 10, 248, 255, 252, 254, + 211, 143, 71, 255, 255, 255, 255, 191, 67, 1, 100, 193, 71, 166, 221, 91, 82, 168, 9, 222, 70, 87, 81, 41, 186, + 138, 15, 27, 226, 28, 236, 171, 242, 9, 139, 144, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3504, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d7b246" + } + ] + }, + "cborHex": "9f43d7b246ff", + "cborBytes": [159, 67, 215, 178, 70, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3505, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16510541024355909130" + } + }, + { + "_tag": "ByteArray", + "bytearray": "18579e1f525ed067" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2420587930893737108" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d2caadd42040eb0933d5c7ba" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "769939679120772781" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fae12338cf6fcd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15794975288623672486" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1627901254037653683" + } + } + } + ] + } + ] + }, + "cborHex": "9f1be5213995c63f7e0a4818579e1f525ed0671b2197a7e5f884dc944cd2caadd42040eb0933d5c7babf1b0aaf600f1078cead47fae12338cf6fcd1bdb330656f27caca61b16977790c853c8b3ffff", + "cborBytes": [ + 159, 27, 229, 33, 57, 149, 198, 63, 126, 10, 72, 24, 87, 158, 31, 82, 94, 208, 103, 27, 33, 151, 167, 229, 248, + 132, 220, 148, 76, 210, 202, 173, 212, 32, 64, 235, 9, 51, 213, 199, 186, 191, 27, 10, 175, 96, 15, 16, 120, 206, + 173, 71, 250, 225, 35, 56, 207, 111, 205, 27, 219, 51, 6, 86, 242, 124, 172, 166, 27, 22, 151, 119, 144, 200, 83, + 200, 179, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3506, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0b" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "60b80a2533" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10485762056856283929" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e2906dde89471df3ea0c57c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5172095767480617000" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1318145de0096" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88cd606b5977638d41b79f42" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14473400673799409098" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0542036f" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11495877468217903464" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2ca6f0c85af10765840" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3b69dd5b159e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "760600f90001" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b705cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffffe9f410bbf4560b80a25331b9184e908e6302b194c7e2906dde89471df3ea0c57c1b47c6f9b294fbc82847e1318145de00964c88cd606b5977638d41b79f42ff1bc8dbd93abdb68dcaffff440542036f9fbf1b9f898fa64a8b89684af2ca6f0c85af10765840ff463b69dd5b159ebf46760600f900010e43b705cd09ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 65, 11, 191, 69, 96, 184, 10, 37, 51, 27, + 145, 132, 233, 8, 230, 48, 43, 25, 76, 126, 41, 6, 221, 232, 148, 113, 223, 62, 160, 197, 124, 27, 71, 198, 249, + 178, 148, 251, 200, 40, 71, 225, 49, 129, 69, 222, 0, 150, 76, 136, 205, 96, 107, 89, 119, 99, 141, 65, 183, 159, + 66, 255, 27, 200, 219, 217, 58, 189, 182, 141, 202, 255, 255, 68, 5, 66, 3, 111, 159, 191, 27, 159, 137, 143, 166, + 74, 139, 137, 104, 74, 242, 202, 111, 12, 133, 175, 16, 118, 88, 64, 255, 70, 59, 105, 221, 91, 21, 158, 191, 70, + 118, 6, 0, 249, 0, 1, 14, 67, 183, 5, 205, 9, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3507, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "6ccc57fb26383aecbef8" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13991566740883829780" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c2cb39e7b0b68b6cf87" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "577d6b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16576268260245684063" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3375016181664464042" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "43713a7ddd76e91008526069" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2757975028608151518" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16301730455507543992" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3c0d" + }, + { + "_tag": "ByteArray", + "bytearray": "249882a0c3d0f5867c" + } + ] + } + ] + } + ] + }, + "cborHex": "9f4104059fa04a6ccc57fb26383aecbef8ffbf1bc22c07d2018cf4144a5c2cb39e7b0b68b6cf8743577d6b1be60abc286986bf5fffd8669f1b2ed67755eb4e3caa9f4c43713a7ddd76e910085260691b26464bad17962fded8669f1be23b617aa0b1a7b89f423c0d49249882a0c3d0f5867cffffffffff", + "cborBytes": [ + 159, 65, 4, 5, 159, 160, 74, 108, 204, 87, 251, 38, 56, 58, 236, 190, 248, 255, 191, 27, 194, 44, 7, 210, 1, 140, + 244, 20, 74, 92, 44, 179, 158, 123, 11, 104, 182, 207, 135, 67, 87, 125, 107, 27, 230, 10, 188, 40, 105, 134, 191, + 95, 255, 216, 102, 159, 27, 46, 214, 119, 85, 235, 78, 60, 170, 159, 76, 67, 113, 58, 125, 221, 118, 233, 16, 8, + 82, 96, 105, 27, 38, 70, 75, 173, 23, 150, 47, 222, 216, 102, 159, 27, 226, 59, 97, 122, 160, 177, 167, 184, 159, + 66, 60, 13, 73, 36, 152, 130, 160, 195, 208, 245, 134, 124, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3508, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10028272345130846204" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8473201019621563833" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4656d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79d6515f4ff7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b7c23e07d012d081d275f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1565b3abecaf8c6ccfea07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc6b14cf5fd1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ac104408053c7101642" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf09" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec6df9cb9a690eda2558b28f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcf6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6264825aed715f6d9491bd" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3f96" + }, + { + "_tag": "ByteArray", + "bytearray": "fefffd" + } + ] + }, + "cborHex": "9f1b8b2b9490da65c7fcd8669f1bfffffffffffffffd9f1b7596db6f35055db9bf434656d14679d6515f4ff74b5b7c23e07d012d081d275f4b1565b3abecaf8c6ccfea0746bc6b14cf5fd14a6ac104408053c710164242bf094cec6df9cb9a690eda2558b28f42dcf64b6264825aed715f6d9491bdffffff423f9643fefffdff", + "cborBytes": [ + 159, 27, 139, 43, 148, 144, 218, 101, 199, 252, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, + 27, 117, 150, 219, 111, 53, 5, 93, 185, 191, 67, 70, 86, 209, 70, 121, 214, 81, 95, 79, 247, 75, 91, 124, 35, 224, + 125, 1, 45, 8, 29, 39, 95, 75, 21, 101, 179, 171, 236, 175, 140, 108, 207, 234, 7, 70, 188, 107, 20, 207, 95, 209, + 74, 106, 193, 4, 64, 128, 83, 199, 16, 22, 66, 66, 191, 9, 76, 236, 109, 249, 203, 154, 105, 14, 218, 37, 88, 178, + 143, 66, 220, 246, 75, 98, 100, 130, 90, 237, 113, 95, 109, 148, 145, 189, 255, 255, 255, 66, 63, 150, 67, 254, + 255, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3509, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "444374276793525297" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1d81b00067" + }, + { + "_tag": "ByteArray", + "bytearray": "a508a31884f440fb" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b01c7fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "061d07163a6d602593fcb8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4106796008592651507" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3410ca2e4e3cee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6230fe5a2569" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec1c89f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a26f92e41fa02befb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8acf66492b30b4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9606029204" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b062abc0ce39964319f451d81b0006748a508a31884f440fbffffbf4105447b01c7fd4b061d07163a6d602593fcb81b38fe4536092834f3473410ca2e4e3cee414f466230fe5a256944ec1c89f9497a26f92e41fa02befb478acf66492b30b44596060292041bfffffffffffffff8ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 6, 42, 188, 12, 227, 153, 100, 49, 159, 69, 29, 129, 176, 0, 103, 72, 165, 8, 163, 24, + 132, 244, 64, 251, 255, 255, 191, 65, 5, 68, 123, 1, 199, 253, 75, 6, 29, 7, 22, 58, 109, 96, 37, 147, 252, 184, + 27, 56, 254, 69, 54, 9, 40, 52, 243, 71, 52, 16, 202, 46, 78, 60, 238, 65, 79, 70, 98, 48, 254, 90, 37, 105, 68, + 236, 28, 137, 249, 73, 122, 38, 249, 46, 65, 250, 2, 190, 251, 71, 138, 207, 102, 73, 43, 48, 180, 69, 150, 6, 2, + 146, 4, 27, 255, 255, 255, 255, 255, 255, 255, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3510, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9212481313529700067" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f983ec5985fd39c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2975388658545440261" + } + } + ] + }, + "cborHex": "9fbf1b7fd94ef1e0dc9ee3488f983ec5985fd39cff1b294ab4387d53b605ff", + "cborBytes": [ + 159, 191, 27, 127, 217, 78, 241, 224, 220, 158, 227, 72, 143, 152, 62, 197, 152, 95, 211, 156, 255, 27, 41, 74, + 180, 56, 125, 83, 182, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3511, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a3ea5b676a7f84" + } + ] + }, + "cborHex": "9f47a3ea5b676a7f84ff", + "cborBytes": [159, 71, 163, 234, 91, 103, 106, 127, 132, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3512, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10981336904533090327" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fe01" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "27db70c095e875" + }, + { + "_tag": "ByteArray", + "bytearray": "f8" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff2b3c8e" + } + ] + }, + "cborHex": "9fd8669f1b98658bbba99520179f0342fe01d8669f1bfffffffffffffff59f4727db70c095e87541f8ffffffff1bfffffffffffffff444ff2b3c8eff", + "cborBytes": [ + 159, 216, 102, 159, 27, 152, 101, 139, 187, 169, 149, 32, 23, 159, 3, 66, 254, 1, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 245, 159, 71, 39, 219, 112, 192, 149, 232, 117, 65, 248, 255, 255, 255, 255, 27, 255, + 255, 255, 255, 255, 255, 255, 244, 68, 255, 43, 60, 142, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3513, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6dbbf3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10113724441618345677" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8379467445833254493" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "773a8754eb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17280862408285004581" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3292612874020599596" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "96119b6e165587" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f436dbbf31b8c5b2acb7ad8eecdd8669f1b7449d93ee3d7465d9f45773a8754eb1befd1f4cd6a3aa3251b2db1b5f6c2e0372cffff9f4796119b6e165587ffffff", + "cborBytes": [ + 159, 159, 67, 109, 187, 243, 27, 140, 91, 42, 203, 122, 216, 238, 205, 216, 102, 159, 27, 116, 73, 217, 62, 227, + 215, 70, 93, 159, 69, 119, 58, 135, 84, 235, 27, 239, 209, 244, 205, 106, 58, 163, 37, 27, 45, 177, 181, 246, 194, + 224, 55, 44, 255, 255, 159, 71, 150, 17, 155, 110, 22, 85, 135, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3514, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9036462409418356999" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5582a55e6172b2" + }, + { + "_tag": "ByteArray", + "bytearray": "66d7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8718714414501395341" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd87d9f1b7d67f6af238d39079f475582a55e6172b24266d71b78ff1890f66efb8dffffff", + "cborBytes": [ + 159, 216, 125, 159, 27, 125, 103, 246, 175, 35, 141, 57, 7, 159, 71, 85, 130, 165, 94, 97, 114, 178, 66, 102, 215, + 27, 120, 255, 24, 144, 246, 110, 251, 141, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3515, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f46bd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea3905db03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3955078dafc4c9bb" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e5" + } + ] + } + ] + }, + "cborHex": "9f08bf0f431f46bd45ea3905db03483955078dafc4c9bbff9f41e5ffff", + "cborBytes": [ + 159, 8, 191, 15, 67, 31, 70, 189, 69, 234, 57, 5, 219, 3, 72, 57, 85, 7, 141, 175, 196, 201, 187, 255, 159, 65, + 229, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3516, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2a8f24749f5c" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10350220277342633996" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2830163963169207632" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ae8c5cb97f5dffccff562f" + }, + { + "_tag": "ByteArray", + "bytearray": "4b18e775" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7707577467011016403" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cbae6e537ee69e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1874885113360474164" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45b849fd328b64abcd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10687514184536003442" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3090513785998017182" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15049155796615405881" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17021684588223771724" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67fa54a8cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5281226852548531967" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d8c812d7dfa3e9f6a5" + }, + { + "_tag": "ByteArray", + "bytearray": "9ab8533b190bd87199" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7433171421067888392" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a32743b087b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15204734787650504507" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f4eee02a2794335501" + }, + { + "_tag": "ByteArray", + "bytearray": "07004d0e9b471541" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "44" + } + ] + } + ] + }, + "cborHex": "9f9f462a8f24749f5cd8669f1b8fa35e81220d800c9f1b2746c32130cff5504bae8c5cb97f5dffccff562f444b18e775ffff1b6af6d0dea7ff26d347cbae6e537ee69ebf1b1a04ee13b884e0344945b849fd328b64abcd1b9451ad86a53793721b2ae3b5ea03dc029e1bd0d9577692c5a1391bec392bf2bfd1b44c4567fa54a8cc41deffff1b494aafd75c68d6ff9f9f49d8c812d7dfa3e9f6a5499ab8533b190bd87199ffd8669f1b6727ee065b56470880ff9f46a32743b087b61bd30211bb31eec73b49f4eee02a27943355014807004d0e9b471541ff4144ffff", + "cborBytes": [ + 159, 159, 70, 42, 143, 36, 116, 159, 92, 216, 102, 159, 27, 143, 163, 94, 129, 34, 13, 128, 12, 159, 27, 39, 70, + 195, 33, 48, 207, 245, 80, 75, 174, 140, 92, 185, 127, 93, 255, 204, 255, 86, 47, 68, 75, 24, 231, 117, 255, 255, + 27, 106, 246, 208, 222, 167, 255, 38, 211, 71, 203, 174, 110, 83, 126, 230, 158, 191, 27, 26, 4, 238, 19, 184, + 132, 224, 52, 73, 69, 184, 73, 253, 50, 139, 100, 171, 205, 27, 148, 81, 173, 134, 165, 55, 147, 114, 27, 42, 227, + 181, 234, 3, 220, 2, 158, 27, 208, 217, 87, 118, 146, 197, 161, 57, 27, 236, 57, 43, 242, 191, 209, 180, 76, 69, + 103, 250, 84, 168, 204, 65, 222, 255, 255, 27, 73, 74, 175, 215, 92, 104, 214, 255, 159, 159, 73, 216, 200, 18, + 215, 223, 163, 233, 246, 165, 73, 154, 184, 83, 59, 25, 11, 216, 113, 153, 255, 216, 102, 159, 27, 103, 39, 238, + 6, 91, 86, 71, 8, 128, 255, 159, 70, 163, 39, 67, 176, 135, 182, 27, 211, 2, 17, 187, 49, 238, 199, 59, 73, 244, + 238, 224, 42, 39, 148, 51, 85, 1, 72, 7, 0, 77, 14, 155, 71, 21, 65, 255, 65, 68, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3517, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7117625577555185769" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f933c5" + }, + { + "_tag": "ByteArray", + "bytearray": "0d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13438920995637140952" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6b7236b4794701647da336" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18433179983474684232" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7474486365339432092" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3aea0a1db1098f136850a7" + }, + { + "_tag": "ByteArray", + "bytearray": "971114d0a6" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14824782025823233559" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10815392995615776259" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28" + }, + { + "_tag": "ByteArray", + "bytearray": "51660d3eefe64298a1799ee1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9693890906282653149" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cf012f071f2a49b7aa43f5" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "64" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3056330272480224679" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2011766093316361045" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4946171489544381195" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1698791092844448535" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "13af4c0adee1b3699f8a6715" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15736672510736614051" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4845c3876a28dc4618bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14086507902856612977" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f1b62c6e2c08269506943f933c5410d1bba80a3716d7d9dd84b6b7236b4794701647da336ffd8669f1bffcfcf8823d971489f9f1b67bab5bf6c8eb49c4b3aea0a1db1098f136850a745971114d0a6ffd8669f1bcdbc34b519ca26179f1b9617fea089ed1e0341284c51660d3eefe64298a1799ee11b86879e6b385df5dd4bcf012f071f2a49b7aa43f5ffffffff4164bf1b2a6a44308f74e5a71b1beb3a9a634c0b551b44a454c38875230b1b1793517f94974b174c13af4c0adee1b3699f8a67151bda63e445a51c42a34a4845c3876a28dc4618bf1bc37d544ddb804c71ffff", + "cborBytes": [ + 159, 159, 27, 98, 198, 226, 192, 130, 105, 80, 105, 67, 249, 51, 197, 65, 13, 27, 186, 128, 163, 113, 109, 125, + 157, 216, 75, 107, 114, 54, 180, 121, 71, 1, 100, 125, 163, 54, 255, 216, 102, 159, 27, 255, 207, 207, 136, 35, + 217, 113, 72, 159, 159, 27, 103, 186, 181, 191, 108, 142, 180, 156, 75, 58, 234, 10, 29, 177, 9, 143, 19, 104, 80, + 167, 69, 151, 17, 20, 208, 166, 255, 216, 102, 159, 27, 205, 188, 52, 181, 25, 202, 38, 23, 159, 27, 150, 23, 254, + 160, 137, 237, 30, 3, 65, 40, 76, 81, 102, 13, 62, 239, 230, 66, 152, 161, 121, 158, 225, 27, 134, 135, 158, 107, + 56, 93, 245, 221, 75, 207, 1, 47, 7, 31, 42, 73, 183, 170, 67, 245, 255, 255, 255, 255, 65, 100, 191, 27, 42, 106, + 68, 48, 143, 116, 229, 167, 27, 27, 235, 58, 154, 99, 76, 11, 85, 27, 68, 164, 84, 195, 136, 117, 35, 11, 27, 23, + 147, 81, 127, 148, 151, 75, 23, 76, 19, 175, 76, 10, 222, 225, 179, 105, 159, 138, 103, 21, 27, 218, 99, 228, 69, + 165, 28, 66, 163, 74, 72, 69, 195, 135, 106, 40, 220, 70, 24, 191, 27, 195, 125, 84, 77, 219, 128, 76, 113, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3518, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15704225457489071671" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2844e1df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10330759910018095436" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cdd0565b004a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "887a44b1572ef0c1b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ad1df2392" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0600f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee4b693d3ce7634d80" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "207f0288dc845fe2c30e29" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + }, + "cborHex": "9f9f1bd9f09dd95a484e37ffbf442844e1df1b8f5e3b674879994c474cdd0565b004a449887a44b1572ef0c1b9457ad1df2392430600f249ee4b693d3ce7634d800aff4b207f0288dc845fe2c30e290c12ff", + "cborBytes": [ + 159, 159, 27, 217, 240, 157, 217, 90, 72, 78, 55, 255, 191, 68, 40, 68, 225, 223, 27, 143, 94, 59, 103, 72, 121, + 153, 76, 71, 76, 221, 5, 101, 176, 4, 164, 73, 136, 122, 68, 177, 87, 46, 240, 193, 185, 69, 122, 209, 223, 35, + 146, 67, 6, 0, 242, 73, 238, 75, 105, 61, 60, 231, 99, 77, 128, 10, 255, 75, 32, 127, 2, 136, 220, 132, 95, 226, + 195, 14, 41, 12, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3519, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5293701131859479761" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1da47a0b9338905d52cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80054823" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7949915291948476015" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82973fa39fb4a2718230" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9eadeeb1fdda54b8e42f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10171056187172647125" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13573048082088420281" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b49770121d7914cd14a1da47a0b9338905d52cd44800548231b6e53c5d66b08e66f4a82973fa39fb4a27182300b4a9eadeeb1fdda54b8e42f14ffd8669f1b8d26d9b6b2f6f0d59f9f1bbc5d27514c2d63b9ff1bfffffffffffffffeffffff", + "cborBytes": [ + 159, 191, 27, 73, 119, 1, 33, 215, 145, 76, 209, 74, 29, 164, 122, 11, 147, 56, 144, 93, 82, 205, 68, 128, 5, 72, + 35, 27, 110, 83, 197, 214, 107, 8, 230, 111, 74, 130, 151, 63, 163, 159, 180, 162, 113, 130, 48, 11, 74, 158, 173, + 238, 177, 253, 218, 84, 184, 228, 47, 20, 255, 216, 102, 159, 27, 141, 38, 217, 182, 178, 246, 240, 213, 159, 159, + 27, 188, 93, 39, 81, 76, 45, 99, 185, 255, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3520, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5aaef4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4c50afca86c8f84e2f25b919" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14693555298145470211" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16324492539467124080" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85619f0f0df9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6296563749723467940" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c5d74ca95a87cc6" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f70" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10584800307555593916" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d9daf54" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a01ee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5c511" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6dae23f7861cf43792" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f435aaef49f4c4c50afca86c8f84e2f25b9199f1bcbe9feb1a18507031be28c3f794973cd704685619f0f0df91b5761e35ea7de70a4484c5d74ca95a87cc6ffff9fbf422f701b92e4c3cc8e4beebc444d9daf54436a01ee43b5c511496dae23f7861cf43792ffffff", + "cborBytes": [ + 159, 67, 90, 174, 244, 159, 76, 76, 80, 175, 202, 134, 200, 248, 78, 47, 37, 185, 25, 159, 27, 203, 233, 254, 177, + 161, 133, 7, 3, 27, 226, 140, 63, 121, 73, 115, 205, 112, 70, 133, 97, 159, 15, 13, 249, 27, 87, 97, 227, 94, 167, + 222, 112, 164, 72, 76, 93, 116, 202, 149, 168, 124, 198, 255, 255, 159, 191, 66, 47, 112, 27, 146, 228, 195, 204, + 142, 75, 238, 188, 68, 77, 157, 175, 84, 67, 106, 1, 238, 67, 181, 197, 17, 73, 109, 174, 35, 247, 134, 28, 244, + 55, 146, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3521, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12401930116422827838" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14133626781257424934" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18303631691082811303" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11002909651830129342" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b8420c58" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4307378850879937634" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4cd545d9fc" + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1bac1c81bb8e99ff3e9f1bc424baaca4cbe0261bfe03900bd692c7a7ffff9f1b98b230084d0d42be44b8420c581b3bc6e23e4fba9c62ff454cd545d9fcffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 172, 28, 129, 187, 142, 153, 255, 62, 159, 27, 196, 36, 186, 172, 164, 203, 224, 38, + 27, 254, 3, 144, 11, 214, 146, 199, 167, 255, 255, 159, 27, 152, 178, 48, 8, 77, 13, 66, 190, 68, 184, 66, 12, 88, + 27, 59, 198, 226, 62, 79, 186, 156, 98, 255, 69, 76, 213, 69, 217, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3522, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9b5264ed" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16909001426084082260" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c5e068837a84" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8fda3b2e35c7" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12666198386693243379" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "170cba31" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2048887570580400750" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14041103513175801323" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4869903273139111980" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90d84fa3f4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8030465036202493665" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3553350779118337693" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8518757422042842667" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2130470389909813573" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15894891417993298486" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24a8fa9eb8f85c53312fe899" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "80f2a5" + } + ] + } + ] + }, + "cborHex": "9f449b5264edd8669f1beaa8d7359450b2549f46c5e068837a849f468fda3b2e35c7ffd8669f1bafc76053057a01f39f44170cba31ffffbf1b1c6f1c63d5286a6e1bc2dc054095553deb1b43955f399df8082c4590d84fa3f41b6f71f167380b46e11b315009b507b4be9d1b7638b4bdb496062b1b1d90f3882b0ff9451bdc95ff87a8e542364c24a8fa9eb8f85c53312fe899ff4380f2a5ffffff", + "cborBytes": [ + 159, 68, 155, 82, 100, 237, 216, 102, 159, 27, 234, 168, 215, 53, 148, 80, 178, 84, 159, 70, 197, 224, 104, 131, + 122, 132, 159, 70, 143, 218, 59, 46, 53, 199, 255, 216, 102, 159, 27, 175, 199, 96, 83, 5, 122, 1, 243, 159, 68, + 23, 12, 186, 49, 255, 255, 191, 27, 28, 111, 28, 99, 213, 40, 106, 110, 27, 194, 220, 5, 64, 149, 85, 61, 235, 27, + 67, 149, 95, 57, 157, 248, 8, 44, 69, 144, 216, 79, 163, 244, 27, 111, 113, 241, 103, 56, 11, 70, 225, 27, 49, 80, + 9, 181, 7, 180, 190, 157, 27, 118, 56, 180, 189, 180, 150, 6, 43, 27, 29, 144, 243, 136, 43, 15, 249, 69, 27, 220, + 149, 255, 135, 168, 229, 66, 54, 76, 36, 168, 250, 158, 184, 248, 92, 83, 49, 47, 232, 153, 255, 67, 128, 242, + 165, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3523, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9005528959878727916" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11954669940352461136" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "504ae2df0a03bc09c0be1505" + }, + { + "_tag": "ByteArray", + "bytearray": "563883da972ac4fc57" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11724922924824073700" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12500226959597956726" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14886983173920857852" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "953085232649628913" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10405430921422338839" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b7cfa10e02c1088ecd8669f1ba5e784f8e1bfa9509f4c504ae2df0a03bc09c0be150549563883da972ac4fc57ffffd8669f1ba2b74b4760f915e49f1bad79ba30d298ee761bce99305272c51efcd8669f1b0d3a09f82cc06cf19f1b9067844aee3e7b17ffffffffff", + "cborBytes": [ + 159, 27, 124, 250, 16, 224, 44, 16, 136, 236, 216, 102, 159, 27, 165, 231, 132, 248, 225, 191, 169, 80, 159, 76, + 80, 74, 226, 223, 10, 3, 188, 9, 192, 190, 21, 5, 73, 86, 56, 131, 218, 151, 42, 196, 252, 87, 255, 255, 216, 102, + 159, 27, 162, 183, 75, 71, 96, 249, 21, 228, 159, 27, 173, 121, 186, 48, 210, 152, 238, 118, 27, 206, 153, 48, 82, + 114, 197, 30, 252, 216, 102, 159, 27, 13, 58, 9, 248, 44, 192, 108, 241, 159, 27, 144, 103, 132, 74, 238, 62, 123, + 23, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3524, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + }, + "cborHex": "9f03ff", + "cborBytes": [159, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3525, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2865506782377342864" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2666060100071481765" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4236214551956607026" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2647946836081795204" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10156053271189501139" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12751079224110851492" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "77b895509b3dfc9c5333" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8250985310508805798" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb07f804b8ad068a06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1523258803853421138" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4bfb92badaf20998773a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17134000275716480663" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7036681300272284100" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2404651804223170447" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d66a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8910797196478594385" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5769549664317737822" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11288443115980055961" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9a9c37ec8d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12150404831689903308" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61f311cbeb7a56db" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15573293605731750928" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "796a5123" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10002498528570363779" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4628261280278850440" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16459428802803128347" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf1b27c4533c8912f7901b24ffbf891e9a61a51b3aca0eb0c9b6d0321b24bf659e34c660841b8cf18ca41d31b4d31bb0f4eeff07fda5a4ffbf4a77b895509b3dfc9c53331b7281636c9fd7eea649bb07f804b8ad068a060dff9fd8669f1b1523b3cfc0ab6a529f4a4bfb92badaf20998773a1bedc832788f869e971b61a7505c545d01c41b215f0a135739678f42d66affffbf1b7ba982d6b9a73d511b50118ed9efa20b5e1b9ca89b348b31e59946a9a9c37ec8d31ba89ee8d19e110ccc4861f311cbeb7a56db1bd81f74060880d41044796a5123ff1b8ad0036a8dcdcf83ffd8669f1b403ae31ce2b72b889fd9050880ffffd8669f1be46ba34a54e9d81b80ffff", + "cborBytes": [ + 159, 191, 27, 39, 196, 83, 60, 137, 18, 247, 144, 27, 36, 255, 191, 137, 30, 154, 97, 165, 27, 58, 202, 14, 176, + 201, 182, 208, 50, 27, 36, 191, 101, 158, 52, 198, 96, 132, 27, 140, 241, 140, 164, 29, 49, 180, 211, 27, 176, + 244, 238, 255, 7, 253, 165, 164, 255, 191, 74, 119, 184, 149, 80, 155, 61, 252, 156, 83, 51, 27, 114, 129, 99, + 108, 159, 215, 238, 166, 73, 187, 7, 248, 4, 184, 173, 6, 138, 6, 13, 255, 159, 216, 102, 159, 27, 21, 35, 179, + 207, 192, 171, 106, 82, 159, 74, 75, 251, 146, 186, 218, 242, 9, 152, 119, 58, 27, 237, 200, 50, 120, 143, 134, + 158, 151, 27, 97, 167, 80, 92, 84, 93, 1, 196, 27, 33, 95, 10, 19, 87, 57, 103, 143, 66, 214, 106, 255, 255, 191, + 27, 123, 169, 130, 214, 185, 167, 61, 81, 27, 80, 17, 142, 217, 239, 162, 11, 94, 27, 156, 168, 155, 52, 139, 49, + 229, 153, 70, 169, 169, 195, 126, 200, 211, 27, 168, 158, 232, 209, 158, 17, 12, 204, 72, 97, 243, 17, 203, 235, + 122, 86, 219, 27, 216, 31, 116, 6, 8, 128, 212, 16, 68, 121, 106, 81, 35, 255, 27, 138, 208, 3, 106, 141, 205, + 207, 131, 255, 216, 102, 159, 27, 64, 58, 227, 28, 226, 183, 43, 136, 159, 217, 5, 8, 128, 255, 255, 216, 102, + 159, 27, 228, 107, 163, 74, 84, 233, 216, 27, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3526, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6579cbb41be5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + }, + "cborHex": "9f466579cbb41be504ff", + "cborBytes": [159, 70, 101, 121, 203, 180, 27, 229, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3527, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4101aa14d27e3fbdc304" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "829dc07cf019" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92ddee3160" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1783d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "754808619974159377" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8450778359472617051" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11149583070129080576" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79c5a5d95dd3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b91f612e15b059" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f23040" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10370852258662958231" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6183434811074274819" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3382579722153203760" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9698761884374855886" + } + } + ] + } + ] + }, + "cborHex": "9f4a4101aa14d27e3fbdc304bf46829dc07cf0194592ddee316043f1783d1b0a799e70d2f66c11ffbf1b75473224cfec765b1b9abb46bab0c0c9004679c5a5d95dd341ea41db47b91f612e15b05943f230401b8fecab2e9fa9c497ff9f1b55cff9330ddde6031b2ef15655eb619830a080ffd87b9f1b8698ec8c2f42f0ceffff", + "cborBytes": [ + 159, 74, 65, 1, 170, 20, 210, 126, 63, 189, 195, 4, 191, 70, 130, 157, 192, 124, 240, 25, 69, 146, 221, 238, 49, + 96, 67, 241, 120, 61, 27, 10, 121, 158, 112, 210, 246, 108, 17, 255, 191, 27, 117, 71, 50, 36, 207, 236, 118, 91, + 27, 154, 187, 70, 186, 176, 192, 201, 0, 70, 121, 197, 165, 217, 93, 211, 65, 234, 65, 219, 71, 185, 31, 97, 46, + 21, 176, 89, 67, 242, 48, 64, 27, 143, 236, 171, 46, 159, 169, 196, 151, 255, 159, 27, 85, 207, 249, 51, 13, 221, + 230, 3, 27, 46, 241, 86, 85, 235, 97, 152, 48, 160, 128, 255, 216, 123, 159, 27, 134, 152, 236, 140, 47, 66, 240, + 206, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3528, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3baae1e5d7" + } + ] + }, + "cborHex": "9f453baae1e5d7ff", + "cborBytes": [159, 69, 59, 170, 225, 229, 215, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3529, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aee60603592dd3255c85" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ccadaa25ef6d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5618337586590989864" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa4076542aef7b387fc5d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "271812484958124924" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c02345eaf11d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9aa4133fbcc242c6655" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0598e69" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12530852074728275123" + } + }, + { + "_tag": "ByteArray", + "bytearray": "30157ac26f85e252ad7d33ab" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "075dd49f" + } + ] + }, + "cborHex": "9f9f4aaee60603592dd3255c85bf478ccadaa25ef6d71b4df858448cfb3e284baa4076542aef7b387fc5d41b03c5ac03d371fb7c46c02345eaf11d418b4ad9aa4133fbcc242c665544f0598e69ff1bade6879217253cb34c30157ac26f85e252ad7d33abff44075dd49fff", + "cborBytes": [ + 159, 159, 74, 174, 230, 6, 3, 89, 45, 211, 37, 92, 133, 191, 71, 140, 202, 218, 162, 94, 246, 215, 27, 77, 248, + 88, 68, 140, 251, 62, 40, 75, 170, 64, 118, 84, 42, 239, 123, 56, 127, 197, 212, 27, 3, 197, 172, 3, 211, 113, + 251, 124, 70, 192, 35, 69, 234, 241, 29, 65, 139, 74, 217, 170, 65, 51, 251, 204, 36, 44, 102, 85, 68, 240, 89, + 142, 105, 255, 27, 173, 230, 135, 146, 23, 37, 60, 179, 76, 48, 21, 122, 194, 111, 133, 226, 82, 173, 125, 51, + 171, 255, 68, 7, 93, 212, 159, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3530, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3568774658264869920" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5498280097567014889" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3087c0b6" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8557608418192368186" + } + } + ] + }, + "cborHex": "9fd8669f1b3186d5a4bd4b2c209f41b51b4c4dd09e1b14ffe9443087c0b6ffff1b76c2bb84253fa23aff", + "cborBytes": [ + 159, 216, 102, 159, 27, 49, 134, 213, 164, 189, 75, 44, 32, 159, 65, 181, 27, 76, 77, 208, 158, 27, 20, 255, 233, + 68, 48, 135, 192, 182, 255, 255, 27, 118, 194, 187, 132, 37, 63, 162, 58, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3531, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7375097036028786249" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11524468140411575256" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "65930f" + }, + { + "_tag": "ByteArray", + "bytearray": "b7955c23b69d6376a3cb9321" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6215348131371136357" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13726848705202939197" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16660839952202409542" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "63b65bf16beadc" + }, + { + "_tag": "ByteArray", + "bytearray": "1a7d6c086b7f07" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b0fe66f9cf" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9c" + }, + { + "_tag": "ByteArray", + "bytearray": "eb69ec90a380ea" + }, + { + "_tag": "ByteArray", + "bytearray": "e988cfe2e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1877741879620079167" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a28ea94358" + } + ] + }, + "cborHex": "9fd8669f1b66599bade88836499f1b9fef22b6e689dbd89f4365930f4cb7955c23b69d6376a3cb9321ff1b56415a31f5c3b565d8669f1bbe7f902b5f26e53d80ffd8669f1be73731a9e2a926469f4763b65bf16beadc471a7d6c086b7f07ffffffff9f45b0fe66f9cf9f419c47eb69ec90a380ea45e988cfe2e51b1a0f144a72a10e3fffff45a28ea94358ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 102, 89, 155, 173, 232, 136, 54, 73, 159, 27, 159, 239, 34, 182, 230, 137, 219, 216, 159, + 67, 101, 147, 15, 76, 183, 149, 92, 35, 182, 157, 99, 118, 163, 203, 147, 33, 255, 27, 86, 65, 90, 49, 245, 195, + 181, 101, 216, 102, 159, 27, 190, 127, 144, 43, 95, 38, 229, 61, 128, 255, 216, 102, 159, 27, 231, 55, 49, 169, + 226, 169, 38, 70, 159, 71, 99, 182, 91, 241, 107, 234, 220, 71, 26, 125, 108, 8, 107, 127, 7, 255, 255, 255, 255, + 159, 69, 176, 254, 102, 249, 207, 159, 65, 156, 71, 235, 105, 236, 144, 163, 128, 234, 69, 233, 136, 207, 226, + 229, 27, 26, 15, 20, 74, 114, 161, 14, 63, 255, 255, 69, 162, 142, 169, 67, 88, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3532, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "140186899571962329" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7445564600803979380" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7642333187143201590" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10366998207717216127" + } + }, + { + "_tag": "ByteArray", + "bytearray": "331b36d40bdeade5" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10001361170628127298" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7503548846210527096" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11077084242370065581" + } + }, + { + "_tag": "ByteArray", + "bytearray": "29" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17091410231849513785" + } + }, + { + "_tag": "ByteArray", + "bytearray": "84c8d3ca5c6e753b63c422" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15559582889737409060" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "701463448583816321" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17241000924154288552" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bc4f9da3" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c90e0506149" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96c539e1" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b01f20b3e0f2671d99f9f1b6753f58e5f24f0741b6a0f058afad973361b8fdef9f176188f7f48331b36d40bdeade5ffd8669f1b8acbf8fec5acaa429f1b6821f5eb8d2baf781b99b9b56df58b74ad41291bed30e30d3bddf3394b84c8d3ca5c6e753b63c422ffffffffd8669f1bd7eebe33340b52249f1b09bc194a3bc244811bef4456fe6865d9a89f44bc4f9da3ffbf460c90e05061494496c539e1ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 1, 242, 11, 62, 15, 38, 113, 217, 159, 159, 27, 103, 83, 245, 142, 95, 36, 240, 116, 27, + 106, 15, 5, 138, 250, 217, 115, 54, 27, 143, 222, 249, 241, 118, 24, 143, 127, 72, 51, 27, 54, 212, 11, 222, 173, + 229, 255, 216, 102, 159, 27, 138, 203, 248, 254, 197, 172, 170, 66, 159, 27, 104, 33, 245, 235, 141, 43, 175, 120, + 27, 153, 185, 181, 109, 245, 139, 116, 173, 65, 41, 27, 237, 48, 227, 13, 59, 221, 243, 57, 75, 132, 200, 211, + 202, 92, 110, 117, 59, 99, 196, 34, 255, 255, 255, 255, 216, 102, 159, 27, 215, 238, 190, 51, 52, 11, 82, 36, 159, + 27, 9, 188, 25, 74, 59, 194, 68, 129, 27, 239, 68, 86, 254, 104, 101, 217, 168, 159, 68, 188, 79, 157, 163, 255, + 191, 70, 12, 144, 224, 80, 97, 73, 68, 150, 197, 57, 225, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3533, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2523335549281173015" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12661149971238356380" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd1a1cdf54b5a6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "92519c51" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13673611553158843317" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d77938a9640e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1bca401b" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4262825303691226004" + }, + "fields": [] + } + ] + }, + "cborHex": "9fa0d8669f1b2304b0501804fe179f1bafb570d1339c059c47fd1a1cdf54b5a6ffff4492519c51bf1bbdc26d42feb5cbb5412d472d77938a9640e1441bca401bffd8669f1b3b2899073e0feb9480ffff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 35, 4, 176, 80, 24, 4, 254, 23, 159, 27, 175, 181, 112, 209, 51, 156, 5, 156, 71, + 253, 26, 28, 223, 84, 181, 166, 255, 255, 68, 146, 81, 156, 81, 191, 27, 189, 194, 109, 66, 254, 181, 203, 181, + 65, 45, 71, 45, 119, 147, 138, 150, 64, 225, 68, 27, 202, 64, 27, 255, 216, 102, 159, 27, 59, 40, 153, 7, 62, 15, + 235, 148, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3534, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2424228564229705610" + } + } + ] + }, + "cborHex": "9f1b21a49708f9444f8aff", + "cborBytes": [159, 27, 33, 164, 151, 8, 249, 68, 79, 138, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3535, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "74770963293556102" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3650758767813421061" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3417646916146296236" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7872610707103634584" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5996069305359533949" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35d9b0a0995540e348f0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9106911661073515335" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2634d907e575c7e6cd11" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15312126416803830748" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6867369050556379146" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7633232098927236714" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1362425813455200346" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6924164570559194022" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6262727997094750167" + } + }, + { + "_tag": "ByteArray", + "bytearray": "84e558b02522ca2757e24d" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12629474369955635711" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5dd9b9b5f8c928f8" + }, + { + "_tag": "ByteArray", + "bytearray": "f960edd3692c3ea4c1f5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2438453940707058979" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9913758222998148291" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11847250632168526468" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "48cfa3e52cd35779513d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1517674053088723166" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c28" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7348985726565941690" + } + }, + { + "_tag": "ByteArray", + "bytearray": "228c29470ba6da5498a1" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10787687860208851063" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8554530722006599482" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "45b063ab50f11d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9775518373296149999" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b0109a3cb82a04d8680ffd8669f1b32aa19c1bc2968059fbf1b2f6debc3449bf5ac1b6d4121ba2bd954981b53365143c294077d4a35d9b0a0995540e348f01b7e623fe7bf2643474a2634d907e575c7e6cd111bd47f99d955779bdc1b5f4dcbc43fecb00affa0d8669f1b69eeb026c0aad66a9f1b12e84f0f13d1e05a1b601792fdba86a3a61b56e9adee97b9e7d74b84e558b02522ca2757e24dffffffff9f80d8669f1baf44e806911b21ff9f485dd9b9b5f8c928f84af960edd3692c3ea4c1f51b21d720f088fee5231b8994be9416e994c3ffffd8669f1ba469e3ae376d52849f4a48cfa3e52cd35779513d1b150fdc82a32e40de429c281b65fcd794eb6101ba4a228c29470ba6da5498a1ffffffd8669f1b95b590f4078ad8779fd8669f1b76b7cc5e295e873a9f4745b063ab50f11d1b87a99e2ae79f15efffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 1, 9, 163, 203, 130, 160, 77, 134, 128, 255, 216, 102, 159, 27, 50, 170, 25, 193, 188, 41, + 104, 5, 159, 191, 27, 47, 109, 235, 195, 68, 155, 245, 172, 27, 109, 65, 33, 186, 43, 217, 84, 152, 27, 83, 54, + 81, 67, 194, 148, 7, 125, 74, 53, 217, 176, 160, 153, 85, 64, 227, 72, 240, 27, 126, 98, 63, 231, 191, 38, 67, 71, + 74, 38, 52, 217, 7, 229, 117, 199, 230, 205, 17, 27, 212, 127, 153, 217, 85, 119, 155, 220, 27, 95, 77, 203, 196, + 63, 236, 176, 10, 255, 160, 216, 102, 159, 27, 105, 238, 176, 38, 192, 170, 214, 106, 159, 27, 18, 232, 79, 15, + 19, 209, 224, 90, 27, 96, 23, 146, 253, 186, 134, 163, 166, 27, 86, 233, 173, 238, 151, 185, 231, 215, 75, 132, + 229, 88, 176, 37, 34, 202, 39, 87, 226, 77, 255, 255, 255, 255, 159, 128, 216, 102, 159, 27, 175, 68, 232, 6, 145, + 27, 33, 255, 159, 72, 93, 217, 185, 181, 248, 201, 40, 248, 74, 249, 96, 237, 211, 105, 44, 62, 164, 193, 245, 27, + 33, 215, 32, 240, 136, 254, 229, 35, 27, 137, 148, 190, 148, 22, 233, 148, 195, 255, 255, 216, 102, 159, 27, 164, + 105, 227, 174, 55, 109, 82, 132, 159, 74, 72, 207, 163, 229, 44, 211, 87, 121, 81, 61, 27, 21, 15, 220, 130, 163, + 46, 64, 222, 66, 156, 40, 27, 101, 252, 215, 148, 235, 97, 1, 186, 74, 34, 140, 41, 71, 11, 166, 218, 84, 152, + 161, 255, 255, 255, 216, 102, 159, 27, 149, 181, 144, 244, 7, 138, 216, 119, 159, 216, 102, 159, 27, 118, 183, + 204, 94, 41, 94, 135, 58, 159, 71, 69, 176, 99, 171, 80, 241, 29, 27, 135, 169, 158, 42, 231, 159, 21, 239, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3536, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3771335020633343188" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1780012b28fe438cd7ab27" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3910" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3016938682370004778" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0f335beaa28ef4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8389645972173256832" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55b5172b8ed4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15518467698130751715" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13160428918212875311" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18221514977115614256" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14155794158480908454" + } + }, + { + "_tag": "ByteArray", + "bytearray": "76d01a" + }, + { + "_tag": "ByteArray", + "bytearray": "0891f7bb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7745520468706763838" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17403564759666505246" + } + } + ] + }, + "cborHex": "9f9fbf1b3456793849d744d44b1780012b28fe438cd7ab274239101b29de51bf47cc972aff9f470f335beaa28ef41b746e028fbaac78804655b5172b8ed41bd75cac26ad7510e31bb6a33c5fc9db542fff1bfcdfd354786fac309f1bc4737bc959cde0a64376d01a440891f7bb1b6b7d9dd429c8a43effff1bf185e1f0dd6db61eff", + "cborBytes": [ + 159, 159, 191, 27, 52, 86, 121, 56, 73, 215, 68, 212, 75, 23, 128, 1, 43, 40, 254, 67, 140, 215, 171, 39, 66, 57, + 16, 27, 41, 222, 81, 191, 71, 204, 151, 42, 255, 159, 71, 15, 51, 91, 234, 162, 142, 244, 27, 116, 110, 2, 143, + 186, 172, 120, 128, 70, 85, 181, 23, 43, 142, 212, 27, 215, 92, 172, 38, 173, 117, 16, 227, 27, 182, 163, 60, 95, + 201, 219, 84, 47, 255, 27, 252, 223, 211, 84, 120, 111, 172, 48, 159, 27, 196, 115, 123, 201, 89, 205, 224, 166, + 67, 118, 208, 26, 68, 8, 145, 247, 187, 27, 107, 125, 157, 212, 41, 200, 164, 62, 255, 255, 27, 241, 133, 225, + 240, 221, 109, 182, 30, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3537, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03cb202772ad51ecb2e49938" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe000479070702" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + ] + }, + "cborHex": "9fbf4c03cb202772ad51ecb2e499381bfffffffffffffff847fe0004790707021bffffffffffffffebff1bfffffffffffffffeff", + "cborBytes": [ + 159, 191, 76, 3, 203, 32, 39, 114, 173, 81, 236, 178, 228, 153, 56, 27, 255, 255, 255, 255, 255, 255, 255, 248, + 71, 254, 0, 4, 121, 7, 7, 2, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255, 27, 255, 255, 255, 255, 255, 255, + 255, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3538, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e256" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f42e256a0ff", + "cborBytes": [159, 66, 226, 86, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3539, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7424751489718514053" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "44" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4c33d383d26e9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "514c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15342968751184153761" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83706fa7ac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd2cf9046b8737137b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d405" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7435489172073235772" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fda2bd6184880d0063c67edc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13911047599703692787" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1541140458322436799" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14165819005911974654" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3189224513597357051" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7fa8af0735fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9295820019437614497" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10817634571775745569" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10228947277677239906" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13617895993878753445" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14300593898394306912" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a29aab01edf5e1cac6fab" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fd8669f1b670a0424523971859fbf414447d4c33d383d26e942514c1bd4ed2cc9e6400ca14583706fa7ac49bd2cf9046b8737137b42d4051b67302a01d0b0453c4cfda2bd6184880d0063c67edc1bc10df81689e395f3ffbf1b15633b14df4aa2bf1bc497195507dc42fe1b2c4266cc41f03bfb467fa8af0735fc1b8101630e6a8b35a11b961ff55428ad9e211b8df4855a90269e621bbcfc7c41775bb0a51bc675ea61fee949604b9a29aab01edf5e1cac6fabffffffa0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 103, 10, 4, 36, 82, 57, 113, 133, 159, 191, 65, 68, 71, 212, 195, 61, 56, 61, 38, 233, 66, + 81, 76, 27, 212, 237, 44, 201, 230, 64, 12, 161, 69, 131, 112, 111, 167, 172, 73, 189, 44, 249, 4, 107, 135, 55, + 19, 123, 66, 212, 5, 27, 103, 48, 42, 1, 208, 176, 69, 60, 76, 253, 162, 189, 97, 132, 136, 13, 0, 99, 198, 126, + 220, 27, 193, 13, 248, 22, 137, 227, 149, 243, 255, 191, 27, 21, 99, 59, 20, 223, 74, 162, 191, 27, 196, 151, 25, + 85, 7, 220, 66, 254, 27, 44, 66, 102, 204, 65, 240, 59, 251, 70, 127, 168, 175, 7, 53, 252, 27, 129, 1, 99, 14, + 106, 139, 53, 161, 27, 150, 31, 245, 84, 40, 173, 158, 33, 27, 141, 244, 133, 90, 144, 38, 158, 98, 27, 188, 252, + 124, 65, 119, 91, 176, 165, 27, 198, 117, 234, 97, 254, 233, 73, 96, 75, 154, 41, 170, 176, 30, 223, 94, 28, 172, + 111, 171, 255, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3540, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9349667432731135146" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5065734855179193800" + } + }, + { + "_tag": "ByteArray", + "bytearray": "faf610f954b58ad3ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13601939230263664955" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6908016356121522665" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8dbd19887b97cc" + }, + { + "_tag": "ByteArray", + "bytearray": "89b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9734633465531712881" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ebf745b17f447fe709ac91e1" + } + ] + }, + "cborHex": "9f9fd8669f1b81c0b0fe4ffa4caa9f1b464d1b02e9454dc849faf610f954b58ad3ca1bbcc3cba9ec50e13b1b5fde3446913631e9ffff478dbd19887b97cc4289b002ff1b87185d8f83a5c5714cebf745b17f447fe709ac91e1ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 129, 192, 176, 254, 79, 250, 76, 170, 159, 27, 70, 77, 27, 2, 233, 69, 77, 200, 73, + 250, 246, 16, 249, 84, 181, 138, 211, 202, 27, 188, 195, 203, 169, 236, 80, 225, 59, 27, 95, 222, 52, 70, 145, 54, + 49, 233, 255, 255, 71, 141, 189, 25, 136, 123, 151, 204, 66, 137, 176, 2, 255, 27, 135, 24, 93, 143, 131, 165, + 197, 113, 76, 235, 247, 69, 177, 127, 68, 127, 231, 9, 172, 145, 225, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3541, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5c2ddb25a4f4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10fbf6ec39803c9e62" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c48b8c2993fbae1e55c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6454806390282332516" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "303dcbc015" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13722529936343794451" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af06957fa5de0ea714a4c841" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17215672957429060764" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d56b68ba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3c42237259c5d574d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8944fd7801e7f639f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1200697587976672107" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6798745677929164159" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1012499071301537569" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "416229777786080320" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10840400887215614520" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2455414686511483197" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f374aa4845b14b6eef2b2eb7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2456581936884805881" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "514065286946426036" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5641069274086256279" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13806964121547142434" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10312527025789925677" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d763a13a2c1cb0c6b19f10dc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11159418272831865812" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1589380403393997582" + } + } + } + ] + } + ] + }, + "cborHex": "9f465c2ddb25a4f4bf4213b84910fbf6ec39803c9e624a2c48b8c2993fbae1e55c1b5994143682b3296445303dcbc0151bbe703845a36f83134caf06957fa5de0ea714a4c8411beeea5b579cdb949c44d56b68ba49e3c42237259c5d574d49e8944fd7801e7f639f1b10a9bc183e04936bffd8669f1b5e59ff2c3b30ad7f80ff1b0e0d1e8a78574f21bf1b05c6bec711e10c401b9670d72c0950ea381b221362a5e5cb493d4cf374aa4845b14b6eef2b2eb71b221788418da8f0f91b072253a7a3cd0cb41b4e491a9dfb482e971bbf9c30b7536175221b8f1d74b11cd2f92d4cd763a13a2c1cb0c6b19f10dc1b9ade37cb442583d41b160e9d0e55442b0effff", + "cborBytes": [ + 159, 70, 92, 45, 219, 37, 164, 244, 191, 66, 19, 184, 73, 16, 251, 246, 236, 57, 128, 60, 158, 98, 74, 44, 72, + 184, 194, 153, 63, 186, 225, 229, 92, 27, 89, 148, 20, 54, 130, 179, 41, 100, 69, 48, 61, 203, 192, 21, 27, 190, + 112, 56, 69, 163, 111, 131, 19, 76, 175, 6, 149, 127, 165, 222, 14, 167, 20, 164, 200, 65, 27, 238, 234, 91, 87, + 156, 219, 148, 156, 68, 213, 107, 104, 186, 73, 227, 196, 34, 55, 37, 156, 93, 87, 77, 73, 232, 148, 79, 215, 128, + 30, 127, 99, 159, 27, 16, 169, 188, 24, 62, 4, 147, 107, 255, 216, 102, 159, 27, 94, 89, 255, 44, 59, 48, 173, + 127, 128, 255, 27, 14, 13, 30, 138, 120, 87, 79, 33, 191, 27, 5, 198, 190, 199, 17, 225, 12, 64, 27, 150, 112, + 215, 44, 9, 80, 234, 56, 27, 34, 19, 98, 165, 229, 203, 73, 61, 76, 243, 116, 170, 72, 69, 177, 75, 110, 239, 43, + 46, 183, 27, 34, 23, 136, 65, 141, 168, 240, 249, 27, 7, 34, 83, 167, 163, 205, 12, 180, 27, 78, 73, 26, 157, 251, + 72, 46, 151, 27, 191, 156, 48, 183, 83, 97, 117, 34, 27, 143, 29, 116, 177, 28, 210, 249, 45, 76, 215, 99, 161, + 58, 44, 28, 176, 198, 177, 159, 16, 220, 27, 154, 222, 55, 203, 68, 37, 131, 212, 27, 22, 14, 157, 14, 85, 68, 43, + 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3542, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6296889252429436474" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "79" + }, + { + "_tag": "ByteArray", + "bytearray": "bbdb8b9b3c1df4d9beae" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1178786709480559355" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18283503740092339148" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9797619024717214722" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "528e2ac100fc0e9c422c16" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12169922912901298900" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18218988483982342438" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15909709630406993858" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a37a0" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e80009e65b" + }, + { + "_tag": "ByteArray", + "bytearray": "4c0cf5abc629f0e42e6a982e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4158887277096865296" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6434704552789660493" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11264545679308237405" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40ca40" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "140106481062270100" + } + } + ] + }, + "cborHex": "9fd8669f1b57630b69a908163a9f41794abbdb8b9b3c1df4d9beaebf1b105be4444c8a52fb1bfdbc0dc80dbad3cc1b87f82297cce0f4024b528e2ac100fc0e9c422c161ba8e44069075e7ad41bfcd6d97f72b339261bdccaa49d980527c2437a37a0ff45e80009e65b4c4c0cf5abc629f0e42e6a982effffbf1b39b755f19c400e101b594ca9b2bf9dd34d1b9c53b49cfb542a5d4340ca40ff1b01f1c21a2a725494ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 87, 99, 11, 105, 169, 8, 22, 58, 159, 65, 121, 74, 187, 219, 139, 155, 60, 29, 244, 217, + 190, 174, 191, 27, 16, 91, 228, 68, 76, 138, 82, 251, 27, 253, 188, 13, 200, 13, 186, 211, 204, 27, 135, 248, 34, + 151, 204, 224, 244, 2, 75, 82, 142, 42, 193, 0, 252, 14, 156, 66, 44, 22, 27, 168, 228, 64, 105, 7, 94, 122, 212, + 27, 252, 214, 217, 127, 114, 179, 57, 38, 27, 220, 202, 164, 157, 152, 5, 39, 194, 67, 122, 55, 160, 255, 69, 232, + 0, 9, 230, 91, 76, 76, 12, 245, 171, 198, 41, 240, 228, 46, 106, 152, 46, 255, 255, 191, 27, 57, 183, 85, 241, + 156, 64, 14, 16, 27, 89, 76, 169, 178, 191, 157, 211, 77, 27, 156, 83, 180, 156, 251, 84, 42, 93, 67, 64, 202, 64, + 255, 27, 1, 241, 194, 26, 42, 114, 84, 148, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3543, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6256087857344902948" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17452055346107895348" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3909254412447219298" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15118568599946489643" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16839127682679017614" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5441292577924011572" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14215427040414675475" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e67576e71ba141" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "894262575219574817" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5228fe4c59883d" + }, + { + "_tag": "ByteArray", + "bytearray": "8d2fe8036f501642779c27" + }, + { + "_tag": "ByteArray", + "bytearray": "8f324326811a9f" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15526773464980184610" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17027588812739158615" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "632893257065642882" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f1c874b50ee497" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8736251217534582686" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c8629a8e1d5a2e391debc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "150b491efcb8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "418dfb6186a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17509648295108709193" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30fefc8bde" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f473" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0643c8b12a2387d" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14371930767550194716" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9754049303143486467" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7274c310657398e8de7ecfa5" + }, + { + "_tag": "ByteArray", + "bytearray": "0aa4da4d09da40fd7f16" + }, + { + "_tag": "ByteArray", + "bytearray": "51b648a45f1d1098" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "aa646b06" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7454168150706250321" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a955c00452367dceb8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10783240674708595084" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1327312534851799320" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11416410241613263454" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "057ac489" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15930918511510759240" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "255666068316386864" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "59440c09976ffd0b76a0ed" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d171fbc7c3e4ef42c748f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c69730c900" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "396a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11622803847916875388" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13673950243210984038" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4100b3c5e614" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e15fcca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcb4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18234046707858340259" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b56d216c294ad772480ffd8669f1bf23227df5137ce349f1b3640762d0e8b7e621bd1cff20a402f6f2b1be9b09968ed87908e1b4b835ac53a2156341bc5475793a2663213ffff9f47e67576e71ba1411b0c690f12fbe38821475228fe4c59883d4b8d2fe8036f501642779c27478f324326811a9fffd8669f1bd77a2e33b81ade2280ffa0ffd8669f1bec4e25cf24bba2579fd8669f1b08c87d1068233b829f47f1c874b50ee4971b793d663219b8ff9effffbf4b3c8629a8e1d5a2e391debc46150b491efcb846418dfb6186a81bf2fec45ab3fa8b4942c6b74530fefc8bde42f47348c0643c8b12a2387dffd8669f1bc7735ae32856241c9f41de1b875d58297b8394034c7274c310657398e8de7ecfa54a0aa4da4d09da40fd7f164851b648a45f1d1098ffff44aa646b06ffffbf1b677286706ee0625149a955c00452367dceb81b95a5c442f78ca18c1b126b8fb7d1c3c9181b9e6f3ca0c57d725e44057ac4891bdd15fdfb084b27481b038c4eef3f1e7630ff4b59440c09976ffd0b76a0edbf4b0d171fbc7c3e4ef42c748f45c69730c90042396a1ba14c7e84f920ee7c41411bbdc3a14c6af4fa66464100b3c5e614442e15fcca42bcb41bfd0c58df67c6f9a3ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 86, 210, 22, 194, 148, 173, 119, 36, 128, 255, 216, 102, 159, 27, 242, 50, 39, 223, + 81, 55, 206, 52, 159, 27, 54, 64, 118, 45, 14, 139, 126, 98, 27, 209, 207, 242, 10, 64, 47, 111, 43, 27, 233, 176, + 153, 104, 237, 135, 144, 142, 27, 75, 131, 90, 197, 58, 33, 86, 52, 27, 197, 71, 87, 147, 162, 102, 50, 19, 255, + 255, 159, 71, 230, 117, 118, 231, 27, 161, 65, 27, 12, 105, 15, 18, 251, 227, 136, 33, 71, 82, 40, 254, 76, 89, + 136, 61, 75, 141, 47, 232, 3, 111, 80, 22, 66, 119, 156, 39, 71, 143, 50, 67, 38, 129, 26, 159, 255, 216, 102, + 159, 27, 215, 122, 46, 51, 184, 26, 222, 34, 128, 255, 160, 255, 216, 102, 159, 27, 236, 78, 37, 207, 36, 187, + 162, 87, 159, 216, 102, 159, 27, 8, 200, 125, 16, 104, 35, 59, 130, 159, 71, 241, 200, 116, 181, 14, 228, 151, 27, + 121, 61, 102, 50, 25, 184, 255, 158, 255, 255, 191, 75, 60, 134, 41, 168, 225, 213, 162, 227, 145, 222, 188, 70, + 21, 11, 73, 30, 252, 184, 70, 65, 141, 251, 97, 134, 168, 27, 242, 254, 196, 90, 179, 250, 139, 73, 66, 198, 183, + 69, 48, 254, 252, 139, 222, 66, 244, 115, 72, 192, 100, 60, 139, 18, 162, 56, 125, 255, 216, 102, 159, 27, 199, + 115, 90, 227, 40, 86, 36, 28, 159, 65, 222, 27, 135, 93, 88, 41, 123, 131, 148, 3, 76, 114, 116, 195, 16, 101, + 115, 152, 232, 222, 126, 207, 165, 74, 10, 164, 218, 77, 9, 218, 64, 253, 127, 22, 72, 81, 182, 72, 164, 95, 29, + 16, 152, 255, 255, 68, 170, 100, 107, 6, 255, 255, 191, 27, 103, 114, 134, 112, 110, 224, 98, 81, 73, 169, 85, + 192, 4, 82, 54, 125, 206, 184, 27, 149, 165, 196, 66, 247, 140, 161, 140, 27, 18, 107, 143, 183, 209, 195, 201, + 24, 27, 158, 111, 60, 160, 197, 125, 114, 94, 68, 5, 122, 196, 137, 27, 221, 21, 253, 251, 8, 75, 39, 72, 27, 3, + 140, 78, 239, 63, 30, 118, 48, 255, 75, 89, 68, 12, 9, 151, 111, 253, 11, 118, 160, 237, 191, 75, 13, 23, 31, 188, + 124, 62, 78, 244, 44, 116, 143, 69, 198, 151, 48, 201, 0, 66, 57, 106, 27, 161, 76, 126, 132, 249, 32, 238, 124, + 65, 65, 27, 189, 195, 161, 76, 106, 244, 250, 102, 70, 65, 0, 179, 197, 230, 20, 68, 46, 21, 252, 202, 66, 188, + 180, 27, 253, 12, 88, 223, 103, 198, 249, 163, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3544, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fbb106fffc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13648777427053792354" + } + } + ] + }, + "cborHex": "9f45fbb106fffc1bbd6a32c16de94c62ff", + "cborBytes": [159, 69, 251, 177, 6, 255, 252, 27, 189, 106, 50, 193, 109, 233, 76, 98, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3545, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4845928401886100713" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3258344032511691756" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7950598548269067132" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52424350b20325373b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11360222782520464432" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd701b663f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13702640158945271660" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16293089967156824187" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16646371810585480537" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86adc709d0" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cb89ffcbd32068c17d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7875a38cbd758537a9283280" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c1828f1f056bcf44feae2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7405648165175218580" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d45b4b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9820" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7fd8edb99c7ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "267dc2ed0be79b" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4d6da1e9a1dbdd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15583530594460971852" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14808667600176008176" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6168" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "09" + } + ] + } + ] + }, + "cborHex": "9fbf1b43403234e965bce91b2d37f6a255df8bec1b6e5633416d506b7c4952424350b20325373b1b9da79e6e816e943045bd701b663f1bbe298e9ff6ef5f6c1be21caf0029dd087b1be703caf729060d594586adc709d0ff49cb89ffcbd32068c17d9f4c7875a38cbd758537a9283280bf4b5c1828f1f056bcf44feae21b66c625c4f8cad19443d45b4b42982047e7fd8edb99c7ec47267dc2ed0be79bff9f474d6da1e9a1dbdd1bd843d282b547334c1bcd82f4b90153cbf0426168ff4109ffff", + "cborBytes": [ + 159, 191, 27, 67, 64, 50, 52, 233, 101, 188, 233, 27, 45, 55, 246, 162, 85, 223, 139, 236, 27, 110, 86, 51, 65, + 109, 80, 107, 124, 73, 82, 66, 67, 80, 178, 3, 37, 55, 59, 27, 157, 167, 158, 110, 129, 110, 148, 48, 69, 189, + 112, 27, 102, 63, 27, 190, 41, 142, 159, 246, 239, 95, 108, 27, 226, 28, 175, 0, 41, 221, 8, 123, 27, 231, 3, 202, + 247, 41, 6, 13, 89, 69, 134, 173, 199, 9, 208, 255, 73, 203, 137, 255, 203, 211, 32, 104, 193, 125, 159, 76, 120, + 117, 163, 140, 189, 117, 133, 55, 169, 40, 50, 128, 191, 75, 92, 24, 40, 241, 240, 86, 188, 244, 79, 234, 226, 27, + 102, 198, 37, 196, 248, 202, 209, 148, 67, 212, 91, 75, 66, 152, 32, 71, 231, 253, 142, 219, 153, 199, 236, 71, + 38, 125, 194, 237, 11, 231, 155, 255, 159, 71, 77, 109, 161, 233, 161, 219, 221, 27, 216, 67, 210, 130, 181, 71, + 51, 76, 27, 205, 130, 244, 185, 1, 83, 203, 240, 66, 97, 104, 255, 65, 9, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3546, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "124293230504584959" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d78b5c6bc943b43c154" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16162473782287521602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17431271821499823130" + } + } + } + ] + } + ] + }, + "cborHex": "9fd90502801b01b99408dc3626ff4a2d78b5c6bc943b43c154a0bf1be04ca445c4cfd7421bf1e8515de7c5f41affff", + "cborBytes": [ + 159, 217, 5, 2, 128, 27, 1, 185, 148, 8, 220, 54, 38, 255, 74, 45, 120, 181, 198, 188, 148, 59, 67, 193, 84, 160, + 191, 27, 224, 76, 164, 69, 196, 207, 215, 66, 27, 241, 232, 81, 93, 231, 197, 244, 26, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3547, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be5130" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9699571732964489191" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f029f43be5130d8669f1b869bcd19c0c4b7e780ffffff", + "cborBytes": [ + 159, 2, 159, 67, 190, 81, 48, 216, 102, 159, 27, 134, 155, 205, 25, 192, 196, 183, 231, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3548, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3e025b7feda3d0" + }, + { + "_tag": "ByteArray", + "bytearray": "e995661ce0e0c86a0748b28c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4718620489961938171" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ad7889d293" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15537282558155388425" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "47aa69" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9133872436437216136" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7848406565883427892" + } + }, + { + "_tag": "ByteArray", + "bytearray": "abe0c1ce" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1b903abfdef51617e1" + }, + { + "_tag": "ByteArray", + "bytearray": "4c692deb530b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17578027293279193303" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7deca3e63ec54d29c2a756ce" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4358205890234979434" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1946148578166094054" + } + } + ] + }, + "cborHex": "9f9f473e025b7feda3d04ce995661ce0e0c86a0748b28c1b417be855d60f9cfb45ad7889d293ffd8669f1bd79f842aa5b976099f9f4347aa691b7ec208966d926b881b6ceb243064533c3444abe0c1ceff9f491b903abfdef51617e1464c692deb530bffbf1bf3f1b2b0dc0708d74c7deca3e63ec54d29c2a756ceffffff0e9f1b3c7b752a9978946aff1b1b021bd219b8b8e6ff", + "cborBytes": [ + 159, 159, 71, 62, 2, 91, 127, 237, 163, 208, 76, 233, 149, 102, 28, 224, 224, 200, 106, 7, 72, 178, 140, 27, 65, + 123, 232, 85, 214, 15, 156, 251, 69, 173, 120, 137, 210, 147, 255, 216, 102, 159, 27, 215, 159, 132, 42, 165, 185, + 118, 9, 159, 159, 67, 71, 170, 105, 27, 126, 194, 8, 150, 109, 146, 107, 136, 27, 108, 235, 36, 48, 100, 83, 60, + 52, 68, 171, 224, 193, 206, 255, 159, 73, 27, 144, 58, 191, 222, 245, 22, 23, 225, 70, 76, 105, 45, 235, 83, 11, + 255, 191, 27, 243, 241, 178, 176, 220, 7, 8, 215, 76, 125, 236, 163, 230, 62, 197, 77, 41, 194, 167, 86, 206, 255, + 255, 255, 14, 159, 27, 60, 123, 117, 42, 153, 120, 148, 106, 255, 27, 27, 2, 27, 210, 25, 184, 184, 230, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3549, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "17" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "74ad89" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2693743131146315593" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9695201071861662285" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "512816027148768881" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45aa382a3c2ce031" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10065364849758503166" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16841429405221338053" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11862165620308479719" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e258bf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13966853742526794484" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13851755180968630426" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7345650244382738744" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14816510881215065552" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18066210197427687496" + } + }, + { + "_tag": "ByteArray", + "bytearray": "46526f4de8e98a66e109" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5409166616535978807" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bfe6e01587c3f60d8c9c7a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01584889e9b2ce2b92d046" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4564781534480470344" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1235ea84cb39cf8ac670" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2df523015a94f2d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "17" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8700150460861666224" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52069b9214f5108f5e961a21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16750887828293278344" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8242ba9445dce178667" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "902cad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0522fc5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd6eb261660926f5d8" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12734270159611255064" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14228873864105135240" + } + } + ] + } + ] + }, + "cborHex": "9f9f41179f4374ad891b2562191b101fe749ffd8669f1b868c4601ea4d024d80ffbf1b071de375ad5456714845aa382a3c2ce0311b8baf5c00948f00fe1be9b8c6d078093bc51ba49ee0c881568ee743e258bf1bc1d43b7ab1250af41bc03b51f2854fd89affff1b65f0fdfa74b1c9381bcd9ed2252d88add09f9f1bfab81274a73790484a46526f4de8e98a66e1091b4b113860f58753374bbfe6e01587c3f60d8c9c7affbf4b01584889e9b2ce2b92d0461b3f595c9ecff891484a1235ea84cb39cf8ac670482df523015a94f2d641171b78bd24bfb01c53b04c52069b9214f5108f5e961a211be8771bbad5d5da884ad8242ba9445dce17866743902cad44f0522fc549dd6eb261660926f5d8ffff9f1bb0b9373db97c59181bc5771d643fd38c88ffff", + "cborBytes": [ + 159, 159, 65, 23, 159, 67, 116, 173, 137, 27, 37, 98, 25, 27, 16, 31, 231, 73, 255, 216, 102, 159, 27, 134, 140, + 70, 1, 234, 77, 2, 77, 128, 255, 191, 27, 7, 29, 227, 117, 173, 84, 86, 113, 72, 69, 170, 56, 42, 60, 44, 224, 49, + 27, 139, 175, 92, 0, 148, 143, 0, 254, 27, 233, 184, 198, 208, 120, 9, 59, 197, 27, 164, 158, 224, 200, 129, 86, + 142, 231, 67, 226, 88, 191, 27, 193, 212, 59, 122, 177, 37, 10, 244, 27, 192, 59, 81, 242, 133, 79, 216, 154, 255, + 255, 27, 101, 240, 253, 250, 116, 177, 201, 56, 27, 205, 158, 210, 37, 45, 136, 173, 208, 159, 159, 27, 250, 184, + 18, 116, 167, 55, 144, 72, 74, 70, 82, 111, 77, 232, 233, 138, 102, 225, 9, 27, 75, 17, 56, 96, 245, 135, 83, 55, + 75, 191, 230, 224, 21, 135, 195, 246, 13, 140, 156, 122, 255, 191, 75, 1, 88, 72, 137, 233, 178, 206, 43, 146, + 208, 70, 27, 63, 89, 92, 158, 207, 248, 145, 72, 74, 18, 53, 234, 132, 203, 57, 207, 138, 198, 112, 72, 45, 245, + 35, 1, 90, 148, 242, 214, 65, 23, 27, 120, 189, 36, 191, 176, 28, 83, 176, 76, 82, 6, 155, 146, 20, 245, 16, 143, + 94, 150, 26, 33, 27, 232, 119, 27, 186, 213, 213, 218, 136, 74, 216, 36, 43, 169, 68, 93, 206, 23, 134, 103, 67, + 144, 44, 173, 68, 240, 82, 47, 197, 73, 221, 110, 178, 97, 102, 9, 38, 245, 216, 255, 255, 159, 27, 176, 185, 55, + 61, 185, 124, 89, 24, 27, 197, 119, 29, 100, 63, 211, 140, 136, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3550, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5462459816180266093" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1190138206732681369" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17271343679725364701" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd8415c96344a48bf768ac83" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c029326868698ad1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56d53bdfc4988cfc6037eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb714d415e012437" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4351268296597719764" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7208664931422064098" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6c336d21f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7299689488953296720" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6a164c" + }, + { + "_tag": "ByteArray", + "bytearray": "3577c6a20165" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "678812087057158544" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5682168862438660332" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11707005003104947257" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eb73363e58321115" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3352081926963928635" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "52f0b930330cfd32" + } + ] + } + ] + }, + "cborHex": "9fbf1b4bce8e42ef45346d1b10843864b5ec00991befb02391b7b7e5dd4ccd8415c96344a48bf768ac8348c029326868698ad14b56d53bdfc4988cfc6037eb48fb714d415e0124371b3c62cf7635204ad4ff9fbf41301b640a528fde3a4de245d6c336d21f1b654db4ea2fb6c750ffff436a164c463577c6a20165d8669f1b096b9fff264891909f1b4edb1e79977118ec9f1ba277a30621ca8c3948eb73363e583211151b2e84fcc0a2b11e3bff4852f0b930330cfd32ffffff", + "cborBytes": [ + 159, 191, 27, 75, 206, 142, 66, 239, 69, 52, 109, 27, 16, 132, 56, 100, 181, 236, 0, 153, 27, 239, 176, 35, 145, + 183, 183, 229, 221, 76, 205, 132, 21, 201, 99, 68, 164, 139, 247, 104, 172, 131, 72, 192, 41, 50, 104, 104, 105, + 138, 209, 75, 86, 213, 59, 223, 196, 152, 140, 252, 96, 55, 235, 72, 251, 113, 77, 65, 94, 1, 36, 55, 27, 60, 98, + 207, 118, 53, 32, 74, 212, 255, 159, 191, 65, 48, 27, 100, 10, 82, 143, 222, 58, 77, 226, 69, 214, 195, 54, 210, + 31, 27, 101, 77, 180, 234, 47, 182, 199, 80, 255, 255, 67, 106, 22, 76, 70, 53, 119, 198, 162, 1, 101, 216, 102, + 159, 27, 9, 107, 159, 255, 38, 72, 145, 144, 159, 27, 78, 219, 30, 121, 151, 113, 24, 236, 159, 27, 162, 119, 163, + 6, 33, 202, 140, 57, 72, 235, 115, 54, 62, 88, 50, 17, 21, 27, 46, 132, 252, 192, 162, 177, 30, 59, 255, 72, 82, + 240, 185, 48, 51, 12, 253, 50, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3551, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13157114707462247912" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "0fd5dbd4ff8a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3067654257043017057" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4989" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13733850631072408070" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a988c66a2f0c8105019e317" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6418f26a4c9" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1bb697761df75ad5e880ff460fd5dbd4ff8a1b2a927f4b2cc38d61424989ff1bbe98706247586206bf4c9a988c66a2f0c8105019e31746f6418f26a4c9ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 182, 151, 118, 29, 247, 90, 213, 232, 128, 255, 70, 15, 213, 219, 212, 255, 138, 27, + 42, 146, 127, 75, 44, 195, 141, 97, 66, 73, 137, 255, 27, 190, 152, 112, 98, 71, 88, 98, 6, 191, 76, 154, 152, + 140, 102, 162, 240, 200, 16, 80, 25, 227, 23, 70, 246, 65, 143, 38, 164, 201, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3552, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5245809235966229256" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2941628402264397109" + } + } + ] + }, + "cborHex": "9fd8669f1b48ccdbb4e53afb0880ff1b28d2c3724a2b5535ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 72, 204, 219, 180, 229, 58, 251, 8, 128, 255, 27, 40, 210, 195, 114, 74, 43, 85, 53, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3553, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04ff0606779766a0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aca58c60f83cde4a594d3856" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + } + ] + } + ] + }, + "cborHex": "9f4804ff0606779766a0bf4caca58c60f83cde4a594d38561bfffffffffffffffaffff", + "cborBytes": [ + 159, 72, 4, 255, 6, 6, 119, 151, 102, 160, 191, 76, 172, 165, 140, 96, 248, 60, 222, 74, 89, 77, 56, 86, 27, 255, + 255, 255, 255, 255, 255, 255, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3554, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e1df73b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7633b059e003b9b06639147f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aebd43340bc3c6320940fce1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9b21d72b2bce288" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3cd88b5c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6119392610921388718" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11363912516999552690" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4184478384793989199" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11965870329971373251" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7501555953680067494" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21fcf92a5491936869" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "864b6b0442" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c743e4aa39e7b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13365141447496888699" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "99ec9a47dbf8a08f71fe57" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + "cborHex": "9f9fbf446e1df73b4c7633b059e003b9b06639147f4caebd43340bc3c6320940fce148a9b21d72b2bce28845b3cd88b5c01b54ec73285f1e9aaeff1b9db4ba39c25f9eb2d8669f1b3a1240ebaff2304f9f1ba60f4faace5474c3ffffbf1b681ae16519d12ba6413c4921fcf92a549193686945864b6b0442473c743e4aa39e7b1bb97a8555bee6f17bffa0ff9f4b99ec9a47dbf8a08f71fe57ff0aff", + "cborBytes": [ + 159, 159, 191, 68, 110, 29, 247, 59, 76, 118, 51, 176, 89, 224, 3, 185, 176, 102, 57, 20, 127, 76, 174, 189, 67, + 52, 11, 195, 198, 50, 9, 64, 252, 225, 72, 169, 178, 29, 114, 178, 188, 226, 136, 69, 179, 205, 136, 181, 192, 27, + 84, 236, 115, 40, 95, 30, 154, 174, 255, 27, 157, 180, 186, 57, 194, 95, 158, 178, 216, 102, 159, 27, 58, 18, 64, + 235, 175, 242, 48, 79, 159, 27, 166, 15, 79, 170, 206, 84, 116, 195, 255, 255, 191, 27, 104, 26, 225, 101, 25, + 209, 43, 166, 65, 60, 73, 33, 252, 249, 42, 84, 145, 147, 104, 105, 69, 134, 75, 107, 4, 66, 71, 60, 116, 62, 74, + 163, 158, 123, 27, 185, 122, 133, 85, 190, 230, 241, 123, 255, 160, 255, 159, 75, 153, 236, 154, 71, 219, 248, + 160, 143, 113, 254, 87, 255, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3555, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3b0502" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13624611815321650192" + } + } + ] + } + ] + }, + "cborHex": "9f433b05029f021bbd1458427ed64410ffff", + "cborBytes": [159, 67, 59, 5, 2, 159, 2, 27, 189, 20, 88, 66, 126, 214, 68, 16, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3556, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3216868937573128860" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0104827e04edd7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14519874797285668384" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b8da1f7c9cf2f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17222454851675827469" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17888001593929230832" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32af701458ce136efc" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b2ca49d414908da9c470104827e04edd71bc980f532d35bf620472b8da1f7c9cf2f1bef0273706a572d0d051bf83ef2accbc5e9f04932af701458ce136efcffff", + "cborBytes": [ + 159, 191, 27, 44, 164, 157, 65, 73, 8, 218, 156, 71, 1, 4, 130, 126, 4, 237, 215, 27, 201, 128, 245, 50, 211, 91, + 246, 32, 71, 43, 141, 161, 247, 201, 207, 47, 27, 239, 2, 115, 112, 106, 87, 45, 13, 5, 27, 248, 62, 242, 172, + 203, 197, 233, 240, 73, 50, 175, 112, 20, 88, 206, 19, 110, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3557, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18296939233584623584" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10591142370606616873" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7298e9fb454a40d0346134da" + } + ] + }, + "cborHex": "9fbf1bfdebc94aa6b82fe01b92fb4bdf2d989129ff4c7298e9fb454a40d0346134daff", + "cborBytes": [ + 159, 191, 27, 253, 235, 201, 74, 166, 184, 47, 224, 27, 146, 251, 75, 223, 45, 152, 145, 41, 255, 76, 114, 152, + 233, 251, 69, 74, 64, 208, 52, 97, 52, 218, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3558, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2758761353355785356" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1a4274d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4180397110041401604" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c4d7d070a7e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15904e4231" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "771605f583b8a1b647" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5452816831202625873" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13402641757355901030" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6954095256440393738" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "843f8e87b8d140" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10945618037684876806" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7255556850662815608" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11881214654632672805" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3902c6e0b79577a650fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12015341886554487499" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1793373164305208486" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12075596124250820639" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "614527bc31dd20" + } + } + ] + } + ] + }, + "cborHex": "9f1b264916d596d8f48cbf44b1a4274d1b3a03c105dc165904ffbf467c4d7d070a7e4515904e423141ff49771605f583b8a1b647ffbf1b4bac4c04891a89511bb9ffbfab070400661b6081e8ca965bd00a47843f8e87b8d1401b97e6a59ce750b6061b64b0ea839b68b7781ba4e28dc76d8bbe254a3902c6e0b79577a650fe1ba6bf11c92af3bacb1b18e35764282154a61ba79522b21d0dd01f47614527bc31dd20ffff", + "cborBytes": [ + 159, 27, 38, 73, 22, 213, 150, 216, 244, 140, 191, 68, 177, 164, 39, 77, 27, 58, 3, 193, 5, 220, 22, 89, 4, 255, + 191, 70, 124, 77, 125, 7, 10, 126, 69, 21, 144, 78, 66, 49, 65, 255, 73, 119, 22, 5, 245, 131, 184, 161, 182, 71, + 255, 191, 27, 75, 172, 76, 4, 137, 26, 137, 81, 27, 185, 255, 191, 171, 7, 4, 0, 102, 27, 96, 129, 232, 202, 150, + 91, 208, 10, 71, 132, 63, 142, 135, 184, 209, 64, 27, 151, 230, 165, 156, 231, 80, 182, 6, 27, 100, 176, 234, 131, + 155, 104, 183, 120, 27, 164, 226, 141, 199, 109, 139, 190, 37, 74, 57, 2, 198, 224, 183, 149, 119, 166, 80, 254, + 27, 166, 191, 17, 201, 42, 243, 186, 203, 27, 24, 227, 87, 100, 40, 33, 84, 166, 27, 167, 149, 34, 178, 29, 13, + 208, 31, 71, 97, 69, 39, 188, 49, 221, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3559, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + "cborHex": "9f0aff", + "cborBytes": [159, 10, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3560, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05fe63" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10220481082066978378" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4608900246537838229" + } + } + ] + }, + "cborHex": "9f4305fe631b8dd67164ca33c64a1b3ff61a5af0191e95ff", + "cborBytes": [ + 159, 67, 5, 254, 99, 27, 141, 214, 113, 100, 202, 51, 198, 74, 27, 63, 246, 26, 90, 240, 25, 30, 149, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3561, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13493657252966433200" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7235801852306892511" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5987223562671760472" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03246e91f14024" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12555323219651131293" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12014881599207803623" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "29cf3bd107f1ed34" + }, + { + "_tag": "ByteArray", + "bytearray": "07e2689f" + }, + { + "_tag": "ByteArray", + "bytearray": "107b58" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17312255808434148684" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5587022438762861145" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c88e3d765fc5" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1bbb4319c773f001b09f1b646abb729fdda6df1b5316e41bcbe624584703246e91f14024ffff1bae3d77f28384f79dd8669f1ba6bd6f282b288ae79f4829cf3bd107f1ed344407e2689f43107b581bf0417ceefa69154c1b4d89174e8698d259ffff46c88e3d765fc580ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 187, 67, 25, 199, 115, 240, 1, 176, 159, 27, 100, 106, 187, 114, 159, 221, 166, 223, + 27, 83, 22, 228, 27, 203, 230, 36, 88, 71, 3, 36, 110, 145, 241, 64, 36, 255, 255, 27, 174, 61, 119, 242, 131, + 132, 247, 157, 216, 102, 159, 27, 166, 189, 111, 40, 43, 40, 138, 231, 159, 72, 41, 207, 59, 209, 7, 241, 237, 52, + 68, 7, 226, 104, 159, 67, 16, 123, 88, 27, 240, 65, 124, 238, 250, 105, 21, 76, 27, 77, 137, 23, 78, 134, 152, + 210, 89, 255, 255, 70, 200, 142, 61, 118, 95, 197, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3562, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b588a888c3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13333734224943799166" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15112881409268340556" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f45b588a888c3d905019f41fa9f1bb90af0a1e73e5b7e1bd1bbbd91fc0b574cffffff", + "cborBytes": [ + 159, 69, 181, 136, 168, 136, 195, 217, 5, 1, 159, 65, 250, 159, 27, 185, 10, 240, 161, 231, 62, 91, 126, 27, 209, + 187, 189, 145, 252, 11, 87, 76, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3563, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8090976064882257523" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1b" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "228415be82bc90e58b139c68" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3989598269886898315" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3332ee22ecf51cab3ddc3078" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "335d1c0daf033fb29eec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3406d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5eea47b181743fa73f779d4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ca45f7e6f359b427d194c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7380401732860401695" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a9c99fb49bd21370575d7b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8695797e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbb78d2202267b25b5adf9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b1a93488624da0eb490e854" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3934997015857135323" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "82bd" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2595090514387587060" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ea794a1991750bc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4479981161041301666" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11872765495205113524" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8394056269121705823" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7b1c8881108382cf74d93" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9396519155776168842" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8549dda4af4836" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16304841990382996475" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17912061158500560947" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17277722138078003234" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c61f2550da7825d778" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11905265339947490575" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5262261226718322457" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4034283043498541433" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10707330322878371736" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f815dfb249" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12672853626470305247" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5405288854695142810" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17632530023079434755" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15441310886118258899" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9594e149d02e5d5f" + } + ] + }, + "cborHex": "9fd8669f1b7048ebdcf97eae739f411bffffbf4c228415be82bc90e58b139c681b375de67d191f208b4c3332ee22ecf51cab3ddc30784a335d1c0daf033fb29eec433406d14cc5eea47b181743fa73f779d44b4ca45f7e6f359b427d194c1b666c7445e2d2581f4c9a9c99fb49bd21370575d7b6448695797e4bbbb78d2202267b25b5adf94c9b1a93488624da0eb490e854ffd8669f1b369beaeffa62fedb9f4282bdbf1b24039d12ce0ecff4489ea794a1991750bc1b3e2c1721484f10a21ba4c4895033372eb41b747dadb401a3d75f4bd7b1c8881108382cf74d931b826724632531238a478549dda4af48361be2466f674ba6cbfb1bf8946cb8b37f70331befc6ccbe480ac02249c61f2550da7825d778ff1ba537ffbff8571d0fa0bf1b49074eb47ddb5f191b37fca70db31cc1791b94981432e3ef179845f815dfb2491bafdf053ac8488ddf1b4b0371932c7b659a1bf4b354a2850f5a031bd64a8e70797378d3ffffff489594e149d02e5d5fff", + "cborBytes": [ + 159, 216, 102, 159, 27, 112, 72, 235, 220, 249, 126, 174, 115, 159, 65, 27, 255, 255, 191, 76, 34, 132, 21, 190, + 130, 188, 144, 229, 139, 19, 156, 104, 27, 55, 93, 230, 125, 25, 31, 32, 139, 76, 51, 50, 238, 34, 236, 245, 28, + 171, 61, 220, 48, 120, 74, 51, 93, 28, 13, 175, 3, 63, 178, 158, 236, 67, 52, 6, 209, 76, 197, 238, 164, 123, 24, + 23, 67, 250, 115, 247, 121, 212, 75, 76, 164, 95, 126, 111, 53, 155, 66, 125, 25, 76, 27, 102, 108, 116, 69, 226, + 210, 88, 31, 76, 154, 156, 153, 251, 73, 189, 33, 55, 5, 117, 215, 182, 68, 134, 149, 121, 126, 75, 187, 183, 141, + 34, 2, 38, 123, 37, 181, 173, 249, 76, 155, 26, 147, 72, 134, 36, 218, 14, 180, 144, 232, 84, 255, 216, 102, 159, + 27, 54, 155, 234, 239, 250, 98, 254, 219, 159, 66, 130, 189, 191, 27, 36, 3, 157, 18, 206, 14, 207, 244, 72, 158, + 167, 148, 161, 153, 23, 80, 188, 27, 62, 44, 23, 33, 72, 79, 16, 162, 27, 164, 196, 137, 80, 51, 55, 46, 180, 27, + 116, 125, 173, 180, 1, 163, 215, 95, 75, 215, 177, 200, 136, 17, 8, 56, 44, 247, 77, 147, 27, 130, 103, 36, 99, + 37, 49, 35, 138, 71, 133, 73, 221, 164, 175, 72, 54, 27, 226, 70, 111, 103, 75, 166, 203, 251, 27, 248, 148, 108, + 184, 179, 127, 112, 51, 27, 239, 198, 204, 190, 72, 10, 192, 34, 73, 198, 31, 37, 80, 218, 120, 37, 215, 120, 255, + 27, 165, 55, 255, 191, 248, 87, 29, 15, 160, 191, 27, 73, 7, 78, 180, 125, 219, 95, 25, 27, 55, 252, 167, 13, 179, + 28, 193, 121, 27, 148, 152, 20, 50, 227, 239, 23, 152, 69, 248, 21, 223, 178, 73, 27, 175, 223, 5, 58, 200, 72, + 141, 223, 27, 75, 3, 113, 147, 44, 123, 101, 154, 27, 244, 179, 84, 162, 133, 15, 90, 3, 27, 214, 74, 142, 112, + 121, 115, 120, 211, 255, 255, 255, 72, 149, 148, 225, 73, 208, 46, 93, 95, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3564, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2304670233064300937" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6166717724388092068" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5567019805553424495" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10de96b7ea0f768ae614f3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6305418909223514753" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4534563113624775469" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6806109482494257359" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17641646596447450231" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7474661942958466102" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e811a98b714e23" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12284570762848909497" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dce9d2b37e3364f2" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12111080782574136465" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3798391024544758107" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3091437035842521718" + } + }, + { + "_tag": "ByteArray", + "bytearray": "41d09710bd0fca" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6001254266539494055" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d2b908efef384815e7e0d3" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12689868370966935682" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7954982998153335583" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b1ffbd55dc636e1891b559495190041e8a41b4d4207048f93786f4b10de96b7ea0f768ae614f31b57815917244c72811b3eee01206f31ab2d1b5e742883967ce8cf1bf4d3b81c2a3ab4771b67bb556f462ba43647e811a98b714e231baa7b9005b9c238b948dce9d2b37e3364f2ffd8669f1ba81333cdf3642c919f9f1b34b698831805b95b1b2ae6fd9adee14a764741d09710bd0fcaff9f1b5348bcf59be24aa74bd2b908efef384815e7e0d3ffa0ffffd8669f1bb01b780cb1f2f8829f1b6e65c6e3b733931fffffff", + "cborBytes": [ + 159, 191, 27, 31, 251, 213, 93, 198, 54, 225, 137, 27, 85, 148, 149, 25, 0, 65, 232, 164, 27, 77, 66, 7, 4, 143, + 147, 120, 111, 75, 16, 222, 150, 183, 234, 15, 118, 138, 230, 20, 243, 27, 87, 129, 89, 23, 36, 76, 114, 129, 27, + 62, 238, 1, 32, 111, 49, 171, 45, 27, 94, 116, 40, 131, 150, 124, 232, 207, 27, 244, 211, 184, 28, 42, 58, 180, + 119, 27, 103, 187, 85, 111, 70, 43, 164, 54, 71, 232, 17, 169, 139, 113, 78, 35, 27, 170, 123, 144, 5, 185, 194, + 56, 185, 72, 220, 233, 210, 179, 126, 51, 100, 242, 255, 216, 102, 159, 27, 168, 19, 51, 205, 243, 100, 44, 145, + 159, 159, 27, 52, 182, 152, 131, 24, 5, 185, 91, 27, 42, 230, 253, 154, 222, 225, 74, 118, 71, 65, 208, 151, 16, + 189, 15, 202, 255, 159, 27, 83, 72, 188, 245, 155, 226, 74, 167, 75, 210, 185, 8, 239, 239, 56, 72, 21, 231, 224, + 211, 255, 160, 255, 255, 216, 102, 159, 27, 176, 27, 120, 12, 177, 242, 248, 130, 159, 27, 110, 101, 198, 227, + 183, 51, 147, 31, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3565, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6429396768285298915" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81c5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16431028830727413716" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18140721207238975137" + } + } + ] + }, + "cborHex": "9fbf1b5939ce4bddb090e34281c51be406bdaa8db59fd4413dff1bfbc0c9d306dfdea1ff", + "cborBytes": [ + 159, 191, 27, 89, 57, 206, 75, 221, 176, 144, 227, 66, 129, 197, 27, 228, 6, 189, 170, 141, 181, 159, 212, 65, 61, + 255, 27, 251, 192, 201, 211, 6, 223, 222, 161, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3566, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad0b1f092304d37601" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d93b8c8b" + } + } + ] + } + ] + }, + "cborHex": "9fbf49ad0b1f092304d3760144d93b8c8bffff", + "cborBytes": [159, 191, 73, 173, 11, 31, 9, 35, 4, 211, 118, 1, 68, 217, 59, 140, 139, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3567, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5784145812224844188" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c2b08585e37644" + }, + { + "_tag": "ByteArray", + "bytearray": "12309c4f7b7d913d4b713c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9234541750150382291" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8915937173548049410" + } + }, + { + "_tag": "ByteArray", + "bytearray": "969206043050fc" + }, + { + "_tag": "ByteArray", + "bytearray": "093c0ebe7e16" + }, + { + "_tag": "ByteArray", + "bytearray": "42a2b59fa7e330fbec66" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18027373251894924472" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2461204ad7aa" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18332428128214294619" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3d880c4973fd8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "ByteArray", + "bytearray": "50959d4270f21e86aa3c062c" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a92e" + }, + { + "_tag": "ByteArray", + "bytearray": "9bdfdf5c72" + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff29f9f1b504569f872b9a19c47c2b08585e376444b12309c4f7b7d913d4b713c1b8027aecb893a42d3ff9f1b7bbbc59ee508240247969206043050fc46093c0ebe7e164a42a2b59fa7e330fbec66ffa0d8669f1bfa2e1875a09354b89f462461204ad7aaffffffff809f9f1bfe69de40d497a05b1347f3d880c4973fd81bffffffffffffffed4c50959d4270f21e86aa3c062cffff42a92e459bdfdf5c72ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 159, 27, 80, 69, 105, 248, 114, 185, 161, + 156, 71, 194, 176, 133, 133, 227, 118, 68, 75, 18, 48, 156, 79, 123, 125, 145, 61, 75, 113, 60, 27, 128, 39, 174, + 203, 137, 58, 66, 211, 255, 159, 27, 123, 187, 197, 158, 229, 8, 36, 2, 71, 150, 146, 6, 4, 48, 80, 252, 70, 9, + 60, 14, 190, 126, 22, 74, 66, 162, 181, 159, 167, 227, 48, 251, 236, 102, 255, 160, 216, 102, 159, 27, 250, 46, + 24, 117, 160, 147, 84, 184, 159, 70, 36, 97, 32, 74, 215, 170, 255, 255, 255, 255, 128, 159, 159, 27, 254, 105, + 222, 64, 212, 151, 160, 91, 19, 71, 243, 216, 128, 196, 151, 63, 216, 27, 255, 255, 255, 255, 255, 255, 255, 237, + 76, 80, 149, 157, 66, 112, 242, 30, 134, 170, 60, 6, 44, 255, 255, 66, 169, 46, 69, 155, 223, 223, 92, 114, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3568, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c8a8797f50bced1508" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15786784944956980018" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9521494709572315674" + } + } + ] + } + ] + }, + "cborHex": "9f49c8a8797f50bced1508d9050c9f1bdb15ed43f5a53b321b842324fdc6d1aa1affff", + "cborBytes": [ + 159, 73, 200, 168, 121, 127, 80, 188, 237, 21, 8, 217, 5, 12, 159, 27, 219, 21, 237, 67, 245, 165, 59, 50, 27, + 132, 35, 36, 253, 198, 209, 170, 26, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3569, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a71d7ebc2c9da29a866" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9189563298730422605" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3801983980365359241" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5020929599254961955" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1907423700207117143" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6166738090717378332" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17443906702000291393" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16951227816156154342" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14948191128305122702" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9222528564688039959" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e271a76" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "303062657640739199" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "330402104781010252" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15481503614382595380" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16818274798414831804" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c934882d7be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1846e44a595e994b21b22c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15506010717743741473" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "767d9b33823d863e1d76c3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "687d360c4b4ffe5da8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12975115198422218877" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e24f679861e48fb" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3720653604477307718" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04446a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10597955362072540953" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11563ec9f3105b74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c87a7075065ae6dc7a497af5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5641d006cc74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5813093e24bd75" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8566a2e7f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3af74385a1e28b5a1b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e39b4bf4411cb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "390ee417238e" + } + } + ] + } + ] + }, + "cborHex": "9f9f4a6a71d7ebc2c9da29a8669f1b7f87e321bdcb314d1b34c35c494f6728891b45adecde55d61f231b1a7887bfd701a3571b5594a79ee814771cffa0ffd8669f1bf21534b943c87e419fd8669f1beb3edbe328b549e69f1bcf72a4a1dd45bd8e1b7ffd00ddd51fb017449e271a761b0434b1e1a55cb17fffffbf1b0495d2f6b883754c1bd6d9598344335d341be96683d2766ba0bc462c934882d7be4b1846e44a595e994b21b22c1bd7306a97ea83fa214b767d9b33823d863e1d76c349687d360c4b4ffe5da8ff9f1bb410de8721ba787d488e24f679861e48fbffd8669f1b33a26abd8b258b4680ffffff80bf4304446a1b931380405dc7b7194811563ec9f3105b744cc87a7075065ae6dc7a497af5465641d006cc74475813093e24bd75458566a2e7f5493af74385a1e28b5a1b47e39b4bf4411cb646390ee417238effff", + "cborBytes": [ + 159, 159, 74, 106, 113, 215, 235, 194, 201, 218, 41, 168, 102, 159, 27, 127, 135, 227, 33, 189, 203, 49, 77, 27, + 52, 195, 92, 73, 79, 103, 40, 137, 27, 69, 173, 236, 222, 85, 214, 31, 35, 27, 26, 120, 135, 191, 215, 1, 163, 87, + 27, 85, 148, 167, 158, 232, 20, 119, 28, 255, 160, 255, 216, 102, 159, 27, 242, 21, 52, 185, 67, 200, 126, 65, + 159, 216, 102, 159, 27, 235, 62, 219, 227, 40, 181, 73, 230, 159, 27, 207, 114, 164, 161, 221, 69, 189, 142, 27, + 127, 253, 0, 221, 213, 31, 176, 23, 68, 158, 39, 26, 118, 27, 4, 52, 177, 225, 165, 92, 177, 127, 255, 255, 191, + 27, 4, 149, 210, 246, 184, 131, 117, 76, 27, 214, 217, 89, 131, 68, 51, 93, 52, 27, 233, 102, 131, 210, 118, 107, + 160, 188, 70, 44, 147, 72, 130, 215, 190, 75, 24, 70, 228, 74, 89, 94, 153, 75, 33, 178, 44, 27, 215, 48, 106, + 151, 234, 131, 250, 33, 75, 118, 125, 155, 51, 130, 61, 134, 62, 29, 118, 195, 73, 104, 125, 54, 12, 75, 79, 254, + 93, 168, 255, 159, 27, 180, 16, 222, 135, 33, 186, 120, 125, 72, 142, 36, 246, 121, 134, 30, 72, 251, 255, 216, + 102, 159, 27, 51, 162, 106, 189, 139, 37, 139, 70, 128, 255, 255, 255, 128, 191, 67, 4, 68, 106, 27, 147, 19, 128, + 64, 93, 199, 183, 25, 72, 17, 86, 62, 201, 243, 16, 91, 116, 76, 200, 122, 112, 117, 6, 90, 230, 220, 122, 73, + 122, 245, 70, 86, 65, 208, 6, 204, 116, 71, 88, 19, 9, 62, 36, 189, 117, 69, 133, 102, 162, 231, 245, 73, 58, 247, + 67, 133, 161, 226, 139, 90, 27, 71, 227, 155, 75, 244, 65, 28, 182, 70, 57, 14, 228, 23, 35, 142, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3570, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5b8c" + }, + { + "_tag": "ByteArray", + "bytearray": "8c4f53d90adbe8e36a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "42094538029905053" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12654221721294807045" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6139024514639138550" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "31464544410864325" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11958060526844047978" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13733573033224380685" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ba7c7c13" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f425b8c498c4f53d90adbe8e36abf1b00958cc26241b49d1baf9cd39c4ecf20051b55323245267b0ef61b006fc8d620a10ac51ba5f390b15128f26a1bbe9773e8fe39210dff44ba7c7c13a0ff", + "cborBytes": [ + 159, 66, 91, 140, 73, 140, 79, 83, 217, 10, 219, 232, 227, 106, 191, 27, 0, 149, 140, 194, 98, 65, 180, 157, 27, + 175, 156, 211, 156, 78, 207, 32, 5, 27, 85, 50, 50, 69, 38, 123, 14, 246, 27, 0, 111, 200, 214, 32, 161, 10, 197, + 27, 165, 243, 144, 177, 81, 40, 242, 106, 27, 190, 151, 115, 232, 254, 57, 33, 13, 255, 68, 186, 124, 124, 19, + 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3571, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10010572860589931824" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6796435991427126653" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12467780923337475080" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf031b8aecb2fa79a0fd30091b5e51ca866fb1957d1bad0674b150ec04080cffff", + "cborBytes": [ + 159, 191, 3, 27, 138, 236, 178, 250, 121, 160, 253, 48, 9, 27, 94, 81, 202, 134, 111, 177, 149, 125, 27, 173, 6, + 116, 177, 80, 236, 4, 8, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3572, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "54" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2623342702813797725" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3827cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6120885564730802985" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46c187de5cdd04afdbba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "080010a653" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef04ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14371071217320989265" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "249544bbe347" + } + ] + } + ] + }, + "cborHex": "9f9f4154ff80d8669f1b2467fc4a05545d5d9fbf433827cb1b54f1c0fdc49883294a46c187de5cdd04afdbba45080010a65343ef04ec1bc7704d2186421251ff46249544bbe347ffffff", + "cborBytes": [ + 159, 159, 65, 84, 255, 128, 216, 102, 159, 27, 36, 103, 252, 74, 5, 84, 93, 93, 159, 191, 67, 56, 39, 203, 27, 84, + 241, 192, 253, 196, 152, 131, 41, 74, 70, 193, 135, 222, 92, 221, 4, 175, 219, 186, 69, 8, 0, 16, 166, 83, 67, + 239, 4, 236, 27, 199, 112, 77, 33, 134, 66, 18, 81, 255, 70, 36, 149, 68, 187, 227, 71, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3573, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8501495497634303393" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc3a1bd3e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16669119858611359233" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5679554906632631102" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4032826711234941687" + } + }, + { + "_tag": "ByteArray", + "bytearray": "093d3e4e5b1fad8193c074d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1120011219173605264" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c662" + } + ] + } + ] + }, + "cborHex": "9f1b75fb611cbc134da1bf45bc3a1bd3e61be7549c31d2f08e01ffd8669f1b4ed1d518942a333e9f9f1b37f77a86ebdd92f74c093d3e4e5b1fad8193c074d11b0f8b14450f4b7f90ff42c662ffffff", + "cborBytes": [ + 159, 27, 117, 251, 97, 28, 188, 19, 77, 161, 191, 69, 188, 58, 27, 211, 230, 27, 231, 84, 156, 49, 210, 240, 142, + 1, 255, 216, 102, 159, 27, 78, 209, 213, 24, 148, 42, 51, 62, 159, 159, 27, 55, 247, 122, 134, 235, 221, 146, 247, + 76, 9, 61, 62, 78, 91, 31, 173, 129, 147, 192, 116, 209, 27, 15, 139, 20, 69, 15, 75, 127, 144, 255, 66, 198, 98, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3574, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4961215886100336248" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "501477022678734143" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1858ce28a7eba3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5979350899276828337" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "236576846b0e74ea91" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14026156476012761215" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "490158df28145d5dd6" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "af1878cadab3b7c5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1492427171526675846" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8471067522197190841" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3282934055694991593" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12469569322354770442" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6609761801566729102" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12663718382304523001" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6343158396438793024" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13962391395986853905" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f0046" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18056608016055296616" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9616413181366069721" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b44d9c79011090e7880bf1b06f59ab1f7c9553f471858ce28a7eba31b52faebf682ceceb149236576846b0e74ea911bc2a6eb004cc9107f49490158df28145d5dd6ff48af1878cadab3b7c5bf1b14b62a9af3fd0d8641441b758f4707a0e978b91b2d8f532142bb80e91bad0ccf3b6910820a1b5bba9756a854b38e1bafbe90c600d872f91b58076cf43dc54b401bc1c460ffacc45011435f00461bfa95f552957262681b85745cd6a8b569d9ffff", + "cborBytes": [ + 159, 27, 68, 217, 199, 144, 17, 9, 14, 120, 128, 191, 27, 6, 245, 154, 177, 247, 201, 85, 63, 71, 24, 88, 206, 40, + 167, 235, 163, 27, 82, 250, 235, 246, 130, 206, 206, 177, 73, 35, 101, 118, 132, 107, 14, 116, 234, 145, 27, 194, + 166, 235, 0, 76, 201, 16, 127, 73, 73, 1, 88, 223, 40, 20, 93, 93, 214, 255, 72, 175, 24, 120, 202, 218, 179, 183, + 197, 191, 27, 20, 182, 42, 154, 243, 253, 13, 134, 65, 68, 27, 117, 143, 71, 7, 160, 233, 120, 185, 27, 45, 143, + 83, 33, 66, 187, 128, 233, 27, 173, 12, 207, 59, 105, 16, 130, 10, 27, 91, 186, 151, 86, 168, 84, 179, 142, 27, + 175, 190, 144, 198, 0, 216, 114, 249, 27, 88, 7, 108, 244, 61, 197, 75, 64, 27, 193, 196, 96, 255, 172, 196, 80, + 17, 67, 95, 0, 70, 27, 250, 149, 245, 82, 149, 114, 98, 104, 27, 133, 116, 92, 214, 168, 181, 105, 217, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3575, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bebf6a746a778cec1393d1" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "730522065113193993" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13319274043172996727" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15132187403990532820" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8d6e" + }, + { + "_tag": "ByteArray", + "bytearray": "ca9e67435b5b4dfe8d6fb17c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1520135840649022965" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7225830758484644258" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "171803231729939523" + } + } + ] + }, + "cborHex": "9f4bbebf6a746a778cec1393d1d8669f1b0a2355f29fa81e099fd8669f1bb8d7912c7968467780ff1bd2005445297f02d4809f428d6e4cca9e67435b5b4dfe8d6fb17c1b15189b7e38398df51b64474eca6e9191a2ffffff1b02625e210686f443ff", + "cborBytes": [ + 159, 75, 190, 191, 106, 116, 106, 119, 140, 236, 19, 147, 209, 216, 102, 159, 27, 10, 35, 85, 242, 159, 168, 30, + 9, 159, 216, 102, 159, 27, 184, 215, 145, 44, 121, 104, 70, 119, 128, 255, 27, 210, 0, 84, 69, 41, 127, 2, 212, + 128, 159, 66, 141, 110, 76, 202, 158, 103, 67, 91, 91, 77, 254, 141, 111, 177, 124, 27, 21, 24, 155, 126, 56, 57, + 141, 245, 27, 100, 71, 78, 202, 110, 145, 145, 162, 255, 255, 255, 27, 2, 98, 94, 33, 6, 134, 244, 67, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3576, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4514068000480353118" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14330635656495749508" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8489915020278479799" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17151357921845342315" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "098ee3385e59476fd01684f3" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17918541990278980494" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4f9aa595ca78" + }, + { + "_tag": "ByteArray", + "bytearray": "b788f620a90a616ed2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10783905358527481452" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12566007313138617981" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3ea530ee0c96db5e80ffa0a0d8669f1bc6e0a533def9d98480ffd8669f1b75d23cbabcf3bbb79fd8669f1bee05dd287b2c706b9f4c098ee3385e59476fd01684f3ffff80d8669f1bf8ab7300ef7fe38e9f464f9aa595ca7849b788f620a90a616ed21b95a820c9ba76466cffff1bae636d12e0968e7dffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 62, 165, 48, 238, 12, 150, 219, 94, 128, 255, 160, 160, 216, 102, 159, 27, 198, 224, 165, + 51, 222, 249, 217, 132, 128, 255, 216, 102, 159, 27, 117, 210, 60, 186, 188, 243, 187, 183, 159, 216, 102, 159, + 27, 238, 5, 221, 40, 123, 44, 112, 107, 159, 76, 9, 142, 227, 56, 94, 89, 71, 111, 208, 22, 132, 243, 255, 255, + 128, 216, 102, 159, 27, 248, 171, 115, 0, 239, 127, 227, 142, 159, 70, 79, 154, 165, 149, 202, 120, 73, 183, 136, + 246, 32, 169, 10, 97, 110, 210, 27, 149, 168, 32, 201, 186, 118, 70, 108, 255, 255, 27, 174, 99, 109, 18, 224, + 150, 142, 125, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3577, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11032285562277289463" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "594f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1071614631100994021" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cd6db50c34739a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11281895614012292431" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8655163398734707866" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "759bd1c7b56a3d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5262055390173847437" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5939971538872647758" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8337037672900805057" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c11f7147152b3395a5775b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c64c72b282" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56a58868" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1dfb22822" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95c902adaf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b34c7241c00ce173b93fb670" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9b4d147d10caddd8337c7" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "317609155378258660" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73ff904bd90a0d5f7433b3bc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1953612761236192493" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1c5279aef2fd35bfa4b2c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7045360651317431932" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9cc6e2fdafebdd40e1243f3" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b991a8d4470355df79f42594f1b0edf23d44ee2d1e547cd6db50c34739a1b9c915849723d7d4fffffd8669f1b781d51410e8b7c9a9f47759bd1c7b56a3d1b4906937f6fbddf8d1b526f04a4ae6f404e1b73b31b978c4d41c1ffffbf4c3c11f7147152b3395a5775b745c64c72b2824456a58868411745a1dfb228224595c902adaf4cb34c7241c00ce173b93fb6704bd9b4d147d10caddd8337c7ffbf1b04685fd813bba2e44c73ff904bd90a0d5f7433b3bc1b1b1ca074a6273ced4bb1c5279aef2fd35bfa4b2c1b61c6262f384a4e7c4cf9cc6e2fdafebdd40e1243f3ffa0ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 153, 26, 141, 68, 112, 53, 93, 247, 159, 66, 89, 79, 27, 14, 223, 35, 212, 78, 226, + 209, 229, 71, 205, 109, 181, 12, 52, 115, 154, 27, 156, 145, 88, 73, 114, 61, 125, 79, 255, 255, 216, 102, 159, + 27, 120, 29, 81, 65, 14, 139, 124, 154, 159, 71, 117, 155, 209, 199, 181, 106, 61, 27, 73, 6, 147, 127, 111, 189, + 223, 141, 27, 82, 111, 4, 164, 174, 111, 64, 78, 27, 115, 179, 27, 151, 140, 77, 65, 193, 255, 255, 191, 76, 60, + 17, 247, 20, 113, 82, 179, 57, 90, 87, 117, 183, 69, 198, 76, 114, 178, 130, 68, 86, 165, 136, 104, 65, 23, 69, + 161, 223, 178, 40, 34, 69, 149, 201, 2, 173, 175, 76, 179, 76, 114, 65, 192, 12, 225, 115, 185, 63, 182, 112, 75, + 217, 180, 209, 71, 209, 12, 173, 221, 131, 55, 199, 255, 191, 27, 4, 104, 95, 216, 19, 187, 162, 228, 76, 115, + 255, 144, 75, 217, 10, 13, 95, 116, 51, 179, 188, 27, 27, 28, 160, 116, 166, 39, 60, 237, 75, 177, 197, 39, 154, + 239, 47, 211, 91, 250, 75, 44, 27, 97, 198, 38, 47, 56, 74, 78, 124, 76, 249, 204, 110, 47, 218, 254, 189, 212, + 14, 18, 67, 243, 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3578, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15586372149079197637" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "176243350060593603" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a2b56ebe9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e9c03b84ba5ee26629f174c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5124147191693963391" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1bd84deae3b2e847c51b02722464a262f1c34206e6456a2b56ebe94c1e9c03b84ba5ee26629f174c1b471ca0b8d1bbf07fffff", + "cborBytes": [ + 159, 191, 27, 216, 77, 234, 227, 178, 232, 71, 197, 27, 2, 114, 36, 100, 162, 98, 241, 195, 66, 6, 230, 69, 106, + 43, 86, 235, 233, 76, 30, 156, 3, 184, 75, 165, 238, 38, 98, 159, 23, 76, 27, 71, 28, 160, 184, 209, 187, 240, + 127, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3579, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6d0bb54645bf" + }, + { + "_tag": "ByteArray", + "bytearray": "595857dfd863" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9294821227285542217" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4260ddb77" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11588820612115630405" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9112626229137853621" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17411363753160070155" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14320143665126127450" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64350d1490bec2ab81d4c391" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17182754775822853510" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15582765144940317881" + } + } + ] + }, + "cborHex": "9f466d0bb54645bf46595857dfd863bf1b80fdd6a8ff1d754945b4260ddb771ba0d3c2f24ee089451b7e768d464eab4cb51bf1a197158a37d40b1bc6bb5ecac467375a4c64350d1490bec2ab81d4c3911bee75686e33916586ff1bd8411a569a818cb9ff", + "cborBytes": [ + 159, 70, 109, 11, 181, 70, 69, 191, 70, 89, 88, 87, 223, 216, 99, 191, 27, 128, 253, 214, 168, 255, 29, 117, 73, + 69, 180, 38, 13, 219, 119, 27, 160, 211, 194, 242, 78, 224, 137, 69, 27, 126, 118, 141, 70, 78, 171, 76, 181, 27, + 241, 161, 151, 21, 138, 55, 212, 11, 27, 198, 187, 94, 202, 196, 103, 55, 90, 76, 100, 53, 13, 20, 144, 190, 194, + 171, 129, 212, 195, 145, 27, 238, 117, 104, 110, 51, 145, 101, 134, 255, 27, 216, 65, 26, 86, 154, 129, 140, 185, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3580, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3898a2abd6d603f1f3ad" + } + ] + }, + "cborHex": "9f4a3898a2abd6d603f1f3adff", + "cborBytes": [159, 74, 56, 152, 162, 171, 214, 214, 3, 241, 243, 173, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3581, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b99260da4e1100b737ad" + } + ] + }, + "cborHex": "9f4ab99260da4e1100b737adff", + "cborBytes": [159, 74, 185, 146, 96, 218, 78, 17, 0, 183, 55, 173, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3582, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17257656326150815403" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18117232829308530201" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bf90d82e42c48d71c17e" + }, + { + "_tag": "ByteArray", + "bytearray": "0d0577f2" + }, + { + "_tag": "ByteArray", + "bytearray": "2a4d06d98c7469e67d43" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bef7f82fe5ffdfeab1bfb6d5744dffaee199f9f4abf90d82e42c48d71c17e440d0577f24a2a4d06d98c7469e67d43ffffff", + "cborBytes": [ + 159, 27, 239, 127, 130, 254, 95, 253, 254, 171, 27, 251, 109, 87, 68, 223, 250, 238, 25, 159, 159, 74, 191, 144, + 216, 46, 66, 196, 141, 113, 193, 126, 68, 13, 5, 119, 242, 74, 42, 77, 6, 217, 140, 116, 105, 230, 125, 67, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3583, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1aba6d" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4787010586749560397" + }, + "fields": [] + } + ] + }, + "cborHex": "9f431aba6da0d8669f1b426ee0c4173de64d80ffff", + "cborBytes": [159, 67, 26, 186, 109, 160, 216, 102, 159, 27, 66, 110, 224, 196, 23, 61, 230, 77, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3584, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2111390298255663798" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "435e941a37e0" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b1d4d2a4a25bc22b69f46435e941a37e0ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 29, 77, 42, 74, 37, 188, 34, 182, 159, 70, 67, 94, 148, 26, 55, 224, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3585, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12357392963126672687" + } + }, + { + "_tag": "ByteArray", + "bytearray": "63aca6166bc602c3" + }, + { + "_tag": "ByteArray", + "bytearray": "a0907fed75708a9389" + }, + { + "_tag": "ByteArray", + "bytearray": "b3c9b4865842c53eef63" + }, + { + "_tag": "ByteArray", + "bytearray": "4c1992" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1fffc42c57873fd3ed81ec" + } + ] + } + ] + }, + "cborHex": "9f9f809f1bab7e476d7d13bd2f4863aca6166bc602c349a0907fed75708a93894ab3c9b4865842c53eef63434c1992ff4b1fffc42c57873fd3ed81ecffff", + "cborBytes": [ + 159, 159, 128, 159, 27, 171, 126, 71, 109, 125, 19, 189, 47, 72, 99, 172, 166, 22, 107, 198, 2, 195, 73, 160, 144, + 127, 237, 117, 112, 138, 147, 137, 74, 179, 201, 180, 134, 88, 66, 197, 62, 239, 99, 67, 76, 25, 146, 255, 75, 31, + 255, 196, 44, 87, 135, 63, 211, 237, 129, 236, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3586, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7474942981166882775" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f02fc06ef79ea140" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4713256373951612121" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aef9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0405fbaae7f1028630fe0003" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "45" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8641125120040427087" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3948245208233191940" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10390724945030538073" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8857991263584203803" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13069662277447867068" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8009708313348363882" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17688114016172535104" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14001314884405575464" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "91" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87b9e3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f61b3dcad2b57d2f33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12532895644548560185" + } + } + ] + }, + "cborHex": "9f41059fd8669f1bffffffffffffffef9f1b67bc550994c05fd748f02fc06ef79ea1401b4168d9b340bb44d942aef914ffff4c0405fbaae7f1028630fe0003a04145bf1b77eb718397b6de4f1b36cafc1922e0aa041b90334548fb55e3591b7aede81f6173341b1bb560c498659a5abc1b6f283346139f566affffd8669f1bf578cdfb68926d409f1bc24ea9b489623f28bf41914387b9e349f61b3dcad2b57d2f3341d5ffffffa01badedca2fc45b7539ff", + "cborBytes": [ + 159, 65, 5, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 27, 103, 188, 85, 9, 148, 192, + 95, 215, 72, 240, 47, 192, 110, 247, 158, 161, 64, 27, 65, 104, 217, 179, 64, 187, 68, 217, 66, 174, 249, 20, 255, + 255, 76, 4, 5, 251, 170, 231, 241, 2, 134, 48, 254, 0, 3, 160, 65, 69, 191, 27, 119, 235, 113, 131, 151, 182, 222, + 79, 27, 54, 202, 252, 25, 34, 224, 170, 4, 27, 144, 51, 69, 72, 251, 85, 227, 89, 27, 122, 237, 232, 31, 97, 115, + 52, 27, 27, 181, 96, 196, 152, 101, 154, 90, 188, 27, 111, 40, 51, 70, 19, 159, 86, 106, 255, 255, 216, 102, 159, + 27, 245, 120, 205, 251, 104, 146, 109, 64, 159, 27, 194, 78, 169, 180, 137, 98, 63, 40, 191, 65, 145, 67, 135, + 185, 227, 73, 246, 27, 61, 202, 210, 181, 125, 47, 51, 65, 213, 255, 255, 255, 160, 27, 173, 237, 202, 47, 196, + 91, 117, 57, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3587, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e66a018ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2055245471331445749" + } + } + ] + }, + "cborHex": "9f458e66a018ab1b1c85b2ddf4f0ebf5ff", + "cborBytes": [159, 69, 142, 102, 160, 24, 171, 27, 28, 133, 178, 221, 244, 240, 235, 245, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3588, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17761945172264730568" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b9d2" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "95fbfc" + } + ] + }, + "cborHex": "9f1bf67f1b0700cdbfc842b9d2a04395fbfcff", + "cborBytes": [159, 27, 246, 127, 27, 7, 0, 205, 191, 200, 66, 185, 210, 160, 67, 149, 251, 252, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3589, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17094040512356593402" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ce736366a" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "971773446478109144" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0df4465fa67a65fea0bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9325986769864890557" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16959638392230213494" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0566ca02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1bed3a3b472326aefa458ce736366affd8669f1b0d7c6ecd077c19d89f9f4a0df4465fa67a65fea0bc1b816c8f8e55ca18bd1beb5cbd42fff57776440566ca0203ffffffff", + "cborBytes": [ + 159, 191, 27, 237, 58, 59, 71, 35, 38, 174, 250, 69, 140, 231, 54, 54, 106, 255, 216, 102, 159, 27, 13, 124, 110, + 205, 7, 124, 25, 216, 159, 159, 74, 13, 244, 70, 95, 166, 122, 101, 254, 160, 188, 27, 129, 108, 143, 142, 85, + 202, 24, 189, 27, 235, 92, 189, 66, 255, 245, 119, 118, 68, 5, 102, 202, 2, 3, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3590, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bfad5ef0744f0e47283" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16959135798412464394" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68a67c798a43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdf540ceb30a5dbc37" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6dc018933601" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6825089546794154889" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8df57862ffe2f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3473714055682058037" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e68c4c15" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2775d77f50bfa6f5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec61" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6015193179951540967" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1929543292133536218" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11060951731115222010" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d47379978d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12430694043107131011" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4927398174813866499" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16567755918549776051" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4437364198900686165" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2326587b681dd6d38cca51" + } + ] + }, + "cborHex": "9fbf4a4bfad5ef0744f0e472831beb5af427c1fc510a4668a67c798a4349fdf540ceb30a5dbc37466dc0189336011b5eb796c82ce5bb89478df57862ffe2f91b30351c877435e73544e68c4c15482775d77f50bfa6f542ec61419fffbf1b537a4253ca5d2ae71b1ac71d66aa5b71da1b998064fefadd63fa45d47379978d1bac82b25f1ef6fe831b4461a28894b04a031be5ec7e3a6a88f6b31b3d94af3a8e82dd55ff4b2326587b681dd6d38cca51ff", + "cborBytes": [ + 159, 191, 74, 75, 250, 213, 239, 7, 68, 240, 228, 114, 131, 27, 235, 90, 244, 39, 193, 252, 81, 10, 70, 104, 166, + 124, 121, 138, 67, 73, 253, 245, 64, 206, 179, 10, 93, 188, 55, 70, 109, 192, 24, 147, 54, 1, 27, 94, 183, 150, + 200, 44, 229, 187, 137, 71, 141, 245, 120, 98, 255, 226, 249, 27, 48, 53, 28, 135, 116, 53, 231, 53, 68, 230, 140, + 76, 21, 72, 39, 117, 215, 127, 80, 191, 166, 245, 66, 236, 97, 65, 159, 255, 191, 27, 83, 122, 66, 83, 202, 93, + 42, 231, 27, 26, 199, 29, 102, 170, 91, 113, 218, 27, 153, 128, 100, 254, 250, 221, 99, 250, 69, 212, 115, 121, + 151, 141, 27, 172, 130, 178, 95, 30, 246, 254, 131, 27, 68, 97, 162, 136, 148, 176, 74, 3, 27, 229, 236, 126, 58, + 106, 136, 246, 179, 27, 61, 148, 175, 58, 142, 130, 221, 85, 255, 75, 35, 38, 88, 123, 104, 29, 214, 211, 140, + 202, 81, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3591, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c093d956a8b6" + } + ] + }, + "cborHex": "9f46c093d956a8b6ff", + "cborBytes": [159, 70, 192, 147, 217, 86, 168, 182, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3592, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3823294243230874109" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7844551638031085090" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7497226348408258136" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8124659517064057371" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1630751283410044814" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3fd19092" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9411619719622629848" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5792996944640408174" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e433" + }, + { + "_tag": "ByteArray", + "bytearray": "5d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2520588860002215317" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "001f" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "000404884fff5c0205070269" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "070602b6fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6707679519865968032" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d9189" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07066344" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3255" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5fb8046" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6707" + } + ] + }, + "cborHex": "9fd8669f1b350f11db879279fd9f079f1b6cdd72270f0d2e221b680b7fa45192be581b70c096c8d399921b1b16a197a6f4ab078e443fd19092ffd87c9f1b829cca45252b19d81b5064dc074e36fa6e42e433415d1b22faee36a93d2595ff42001fa0ffffbf4c000404884fff5c02050702690245070602b6fe1b5d1676fc08c615a0431d9189440706634442325544f5fb8046ff426707ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 53, 15, 17, 219, 135, 146, 121, 253, 159, 7, 159, 27, 108, 221, 114, 39, 15, 13, 46, 34, + 27, 104, 11, 127, 164, 81, 146, 190, 88, 27, 112, 192, 150, 200, 211, 153, 146, 27, 27, 22, 161, 151, 166, 244, + 171, 7, 142, 68, 63, 209, 144, 146, 255, 216, 124, 159, 27, 130, 156, 202, 69, 37, 43, 25, 216, 27, 80, 100, 220, + 7, 78, 54, 250, 110, 66, 228, 51, 65, 93, 27, 34, 250, 238, 54, 169, 61, 37, 149, 255, 66, 0, 31, 160, 255, 255, + 191, 76, 0, 4, 4, 136, 79, 255, 92, 2, 5, 7, 2, 105, 2, 69, 7, 6, 2, 182, 254, 27, 93, 22, 118, 252, 8, 198, 21, + 160, 67, 29, 145, 137, 68, 7, 6, 99, 68, 66, 50, 85, 68, 245, 251, 128, 70, 255, 66, 103, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3593, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6637567082604465097" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "28c26a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05967f617297ff31" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83b15c1089d0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d1714b327" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3078759211394244356" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25212c9cbd80f88e6cff82" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35b2c0b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36c65edb5bfc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14180971540508864019" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "697a6644" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4021db16877" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "864c2b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9bd6383267" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14711843394166755730" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cdc7c5b0999b98" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12757613202378880078" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13532768112934144366" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9224607346036631404" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1973616266673829074" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11969554513956086315" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "026704" + }, + { + "_tag": "ByteArray", + "bytearray": "5954" + }, + { + "_tag": "ByteArray", + "bytearray": "05" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b5c1d601823770bc99f4328c26abf4805967f617297ff314683b15c1089d0451d1714b3271b2ab9f330d81d9f044b25212c9cbd80f88e6cff824435b2c0b94636c65edb5bfc1bc4ccee7b69f46e1344697a664446f4021db1687743864c2b459bd6383267ffd8669f1bcc2af79ecc7c91929f47cdc7c5b0999b981bb10c259d65a0744effff9f1bbbce0ce6272c496e1b80046381d4f8e76cff1b1b63b189b206b4d2ffa0d8669f1ba61c6669bc06a22b9fd9050d9f430267044259544105ffffffff", + "cborBytes": [ + 159, 27, 92, 29, 96, 24, 35, 119, 11, 201, 159, 67, 40, 194, 106, 191, 72, 5, 150, 127, 97, 114, 151, 255, 49, 70, + 131, 177, 92, 16, 137, 208, 69, 29, 23, 20, 179, 39, 27, 42, 185, 243, 48, 216, 29, 159, 4, 75, 37, 33, 44, 156, + 189, 128, 248, 142, 108, 255, 130, 68, 53, 178, 192, 185, 70, 54, 198, 94, 219, 91, 252, 27, 196, 204, 238, 123, + 105, 244, 110, 19, 68, 105, 122, 102, 68, 70, 244, 2, 29, 177, 104, 119, 67, 134, 76, 43, 69, 155, 214, 56, 50, + 103, 255, 216, 102, 159, 27, 204, 42, 247, 158, 204, 124, 145, 146, 159, 71, 205, 199, 197, 176, 153, 155, 152, + 27, 177, 12, 37, 157, 101, 160, 116, 78, 255, 255, 159, 27, 187, 206, 12, 230, 39, 44, 73, 110, 27, 128, 4, 99, + 129, 212, 248, 231, 108, 255, 27, 27, 99, 177, 137, 178, 6, 180, 210, 255, 160, 216, 102, 159, 27, 166, 28, 102, + 105, 188, 6, 162, 43, 159, 217, 5, 13, 159, 67, 2, 103, 4, 66, 89, 84, 65, 5, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3594, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1135104129340646710" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a6e862a50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12057985201429632585" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7331216318433605492" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11982518716420118127" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7a" + }, + { + "_tag": "ByteArray", + "bytearray": "319073b68050b9" + } + ] + }, + "cborHex": "9f1bfffffffffffffff7bf1b0fc0b3310c6da536459a6e862a501ba75691a79e2156491b65bdb6662fc83774ff1ba64a754956b0d66f417a47319073b68050b9ff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 191, 27, 15, 192, 179, 49, 12, 109, 165, 54, 69, 154, 110, 134, + 42, 80, 27, 167, 86, 145, 167, 158, 33, 86, 73, 27, 101, 189, 182, 102, 47, 200, 55, 116, 255, 27, 166, 74, 117, + 73, 86, 176, 214, 111, 65, 122, 71, 49, 144, 115, 182, 128, 80, 185, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3595, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3190527711900552729" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1b2c47080cc1df4e1980ff", + "cborBytes": [159, 27, 44, 71, 8, 12, 193, 223, 78, 25, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3596, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12725008179353897433" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "825464404101101051" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "2b17af37be00021f9b03b1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16114258524059556491" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1619308183308829017" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4051586325507380658" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee6100813f8d0d795d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11182364092232155540" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4953436304789344565" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b51a6e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9490671148176183272" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "efc06da135d89c5b" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6032512394087791553" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3cfbb783bddd3c49583f" + }, + { + "_tag": "ByteArray", + "bytearray": "cc" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9518070564781356948" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11446786955261188525" + } + } + ] + }, + "cborHex": "9f1bb0984f84e65449d99fd8669f1b0b74a380852cf5fb80ff4b2b17af37be00021f9b03b1ffd8669f1bdfa158c029615a8b9fd8669f1b1678f036980181599f1b383a204bfcb295b249ee6100813f8d0d795d1b9b2fbce52a94c1941b44be2413247e113543b51a6effffd8669f1b83b5a32023170fe89f48efc06da135d89c5bffffd8669f1b53b7ca0f90be7bc19f4a3cfbb783bddd3c49583f41ccffff9f1b8416fabff0e4f794ff410bffff1b9edb28168feb19adff", + "cborBytes": [ + 159, 27, 176, 152, 79, 132, 230, 84, 73, 217, 159, 216, 102, 159, 27, 11, 116, 163, 128, 133, 44, 245, 251, 128, + 255, 75, 43, 23, 175, 55, 190, 0, 2, 31, 155, 3, 177, 255, 216, 102, 159, 27, 223, 161, 88, 192, 41, 97, 90, 139, + 159, 216, 102, 159, 27, 22, 120, 240, 54, 152, 1, 129, 89, 159, 27, 56, 58, 32, 75, 252, 178, 149, 178, 73, 238, + 97, 0, 129, 63, 141, 13, 121, 93, 27, 155, 47, 188, 229, 42, 148, 193, 148, 27, 68, 190, 36, 19, 36, 126, 17, 53, + 67, 181, 26, 110, 255, 255, 216, 102, 159, 27, 131, 181, 163, 32, 35, 23, 15, 232, 159, 72, 239, 192, 109, 161, + 53, 216, 156, 91, 255, 255, 216, 102, 159, 27, 83, 183, 202, 15, 144, 190, 123, 193, 159, 74, 60, 251, 183, 131, + 189, 221, 60, 73, 88, 63, 65, 204, 255, 255, 159, 27, 132, 22, 250, 191, 240, 228, 247, 148, 255, 65, 11, 255, + 255, 27, 158, 219, 40, 22, 143, 235, 25, 173, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3597, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa0306fefefff9fe00fb30" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2262465503149346851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16641598531274652463" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9199837825410583084" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc8fc971cb7ccc0c234f4030" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10640912073144664753" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8952124083113966727" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12189347864512521745" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0899c53cf0e3" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0181e2" + }, + { + "_tag": "ByteArray", + "bytearray": "5d908da3b083" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + ] + } + ] + }, + "cborHex": "9f4bfa0306fefefff9fe00fb30d87f9fbf1b1f65e46357cad0231be6f2d5b17749bb2f1b7fac63c266ccca2c4cfc8fc971cb7ccc0c234f40301b93ac1d270df402b11b7c3c556c573a3c871ba929434d03ef6611460899c53cf0e3ff9f430181e2465d908da3b083ff1bfffffffffffffff3ffff", + "cborBytes": [ + 159, 75, 250, 3, 6, 254, 254, 255, 249, 254, 0, 251, 48, 216, 127, 159, 191, 27, 31, 101, 228, 99, 87, 202, 208, + 35, 27, 230, 242, 213, 177, 119, 73, 187, 47, 27, 127, 172, 99, 194, 102, 204, 202, 44, 76, 252, 143, 201, 113, + 203, 124, 204, 12, 35, 79, 64, 48, 27, 147, 172, 29, 39, 13, 244, 2, 177, 27, 124, 60, 85, 108, 87, 58, 60, 135, + 27, 169, 41, 67, 77, 3, 239, 102, 17, 70, 8, 153, 197, 60, 240, 227, 255, 159, 67, 1, 129, 226, 70, 93, 144, 141, + 163, 176, 131, 255, 27, 255, 255, 255, 255, 255, 255, 255, 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3598, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + ] + }, + "cborHex": "9f0a1bfffffffffffffffaff", + "cborBytes": [159, 10, 27, 255, 255, 255, 255, 255, 255, 255, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3599, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15739336970125400641" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7de6854b55f10d054be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b12f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "effbd9f117dbd88d546f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7df5a46c776eba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a87720" + } + } + ] + } + ] + }, + "cborHex": "9fbf1bda6d5b95707f5a414ab7de6854b55f10d054be433b12f84aeffbd9f117dbd88d546f477df5a46c776eba43a87720ffff", + "cborBytes": [ + 159, 191, 27, 218, 109, 91, 149, 112, 127, 90, 65, 74, 183, 222, 104, 84, 181, 95, 16, 208, 84, 190, 67, 59, 18, + 248, 74, 239, 251, 217, 241, 23, 219, 216, 141, 84, 111, 71, 125, 245, 164, 108, 119, 110, 186, 67, 168, 119, 32, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3600, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12707418884183072707" + } + } + ] + }, + "cborHex": "9f801bb059d225fbd29fc3ff", + "cborBytes": [159, 128, 27, 176, 89, 210, 37, 251, 210, 159, 195, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3601, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7895489430539890511" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3ee3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9482987640170067859" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aa907297a8467376c8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5495205694976261733" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2739966363990319541" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e87782c81e9487" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "324953556831202922" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9789608477417395023" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2af48413501413" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17047344949828507856" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3353e1e6" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "08c6f976" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13af" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0841345972373fdf28" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f7a0e7c318c7c52c780f764" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7423629571347452328" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79ec16a1e0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2b7d4e38a624d96" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f1b6d9269ce132e6f4f423ee31b839a570405c1b79349aa907297a8467376c81b4c42e476f8c37e65ffd8669f1b260650e41e2961b59f47e87782c81e9487ffffbf1b04827789cb6c6e6a417b1b87dbad0aea9dd34f472af484135014131bec9455e94213d8d0443353e1e6ff4408c6f976bf4213af490841345972373fdf284c4f7a0e7c318c7c52c780f7641b670607c3584011a84579ec16a1e048d2b7d4e38a624d96ffffff", + "cborBytes": [ + 159, 159, 159, 27, 109, 146, 105, 206, 19, 46, 111, 79, 66, 62, 227, 27, 131, 154, 87, 4, 5, 193, 183, 147, 73, + 170, 144, 114, 151, 168, 70, 115, 118, 200, 27, 76, 66, 228, 118, 248, 195, 126, 101, 255, 216, 102, 159, 27, 38, + 6, 80, 228, 30, 41, 97, 181, 159, 71, 232, 119, 130, 200, 30, 148, 135, 255, 255, 191, 27, 4, 130, 119, 137, 203, + 108, 110, 106, 65, 123, 27, 135, 219, 173, 10, 234, 157, 211, 79, 71, 42, 244, 132, 19, 80, 20, 19, 27, 236, 148, + 85, 233, 66, 19, 216, 208, 68, 51, 83, 225, 230, 255, 68, 8, 198, 249, 118, 191, 66, 19, 175, 73, 8, 65, 52, 89, + 114, 55, 63, 223, 40, 76, 79, 122, 14, 124, 49, 140, 124, 82, 199, 128, 247, 100, 27, 103, 6, 7, 195, 88, 64, 17, + 168, 69, 121, 236, 22, 161, 224, 72, 210, 183, 212, 227, 138, 98, 77, 150, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3602, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17159688775445476155" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11537167979457675287" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14744042223034901502" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04ba781919db299b7e2a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5e63689" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f1c96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c26" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34dd50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8c33cec2c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a298588159545d1ef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8069605920318430736" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "770eea9378ce05b785e857" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1744fe87449" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14336454926449991104" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "113c15cfc1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc78933b056a" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10245002813122716993" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12165374983666582879" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8333119178644033358" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aac983dd6ddd7546" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f831784f42" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bee2376067caf733b9fa0ffff1ba01c412699960017d8669f1bcc9d5c48d95b23fe9fbf4a04ba781919db299b7e2a44b5e63689432f1c96421c264334dd5045e8c33cec2c493a298588159545d1ef1b6ffcffd475f81e1041454b770eea9378ce05b785e85746b1744fe874491bc6f551cc3d735dc0ff417dbf45113c15cfc146fc78933b056affd8669f1b8e2d8fc7370ea5419f1ba8d41817bcdec55f1b73a52fbe02128f4effffffffbf48aac983dd6ddd754645f831784f42ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 238, 35, 118, 6, 124, 175, 115, 59, 159, 160, 255, 255, 27, 160, 28, 65, 38, 153, 150, 0, + 23, 216, 102, 159, 27, 204, 157, 92, 72, 217, 91, 35, 254, 159, 191, 74, 4, 186, 120, 25, 25, 219, 41, 155, 126, + 42, 68, 181, 230, 54, 137, 67, 47, 28, 150, 66, 28, 38, 67, 52, 221, 80, 69, 232, 195, 60, 236, 44, 73, 58, 41, + 133, 136, 21, 149, 69, 209, 239, 27, 111, 252, 255, 212, 117, 248, 30, 16, 65, 69, 75, 119, 14, 234, 147, 120, + 206, 5, 183, 133, 232, 87, 70, 177, 116, 79, 232, 116, 73, 27, 198, 245, 81, 204, 61, 115, 93, 192, 255, 65, 125, + 191, 69, 17, 60, 21, 207, 193, 70, 252, 120, 147, 59, 5, 106, 255, 216, 102, 159, 27, 142, 45, 143, 199, 55, 14, + 165, 65, 159, 27, 168, 212, 24, 23, 188, 222, 197, 95, 27, 115, 165, 47, 190, 2, 18, 143, 78, 255, 255, 255, 255, + 191, 72, 170, 201, 131, 221, 109, 221, 117, 70, 69, 248, 49, 120, 79, 66, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3603, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "814856921712474775" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3526380286853258174" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9944250410760872610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9515255979995961016" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b58afd22538190bfccc8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ab1d35d73e3ad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c270412d11fd411a2a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76e6e6" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13961089653578544753" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16202018828594600485" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16610826390875521507" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9400479699178574208" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17694530100937690280" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8cfd0e79c263" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "55944280385586506" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15580826983178125497" + } + }, + { + "_tag": "ByteArray", + "bytearray": "943b86c4e6b75ed0900d764c" + }, + { + "_tag": "ByteArray", + "bytearray": "80beab89b3" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6128618548569666806" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1114500561757272350" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b0b4ef40d9170ba971b30f0382ff4d41bbe1b8a01130fcaef22a21b840cfae65a9216b84b3b58afd22538190bfccc8f471ab1d35d73e3ad49c270412d11fd411a2a4376e6e6ff1bc1bfc11226ee36711be0d922485a925a25d8669f1be685829835d1c1e39fd8669f1b8275367b03cf51809f1bf58f99608dd90ca8468cfd0e79c263ffffd8669f1b00c6c106cf99054a9f1bd83a3797272740b94c943b86c4e6b75ed0900d764c4580beab89b3ffff1b550d3a195f5d74f61b0f77805b2583f91effffff", + "cborBytes": [ + 159, 191, 27, 11, 78, 244, 13, 145, 112, 186, 151, 27, 48, 240, 56, 47, 244, 212, 27, 190, 27, 138, 1, 19, 15, + 202, 239, 34, 162, 27, 132, 12, 250, 230, 90, 146, 22, 184, 75, 59, 88, 175, 210, 37, 56, 25, 11, 252, 204, 143, + 71, 26, 177, 211, 93, 115, 227, 173, 73, 194, 112, 65, 45, 17, 253, 65, 26, 42, 67, 118, 230, 230, 255, 27, 193, + 191, 193, 18, 38, 238, 54, 113, 27, 224, 217, 34, 72, 90, 146, 90, 37, 216, 102, 159, 27, 230, 133, 130, 152, 53, + 209, 193, 227, 159, 216, 102, 159, 27, 130, 117, 54, 123, 3, 207, 81, 128, 159, 27, 245, 143, 153, 96, 141, 217, + 12, 168, 70, 140, 253, 14, 121, 194, 99, 255, 255, 216, 102, 159, 27, 0, 198, 193, 6, 207, 153, 5, 74, 159, 27, + 216, 58, 55, 151, 39, 39, 64, 185, 76, 148, 59, 134, 196, 230, 183, 94, 208, 144, 13, 118, 76, 69, 128, 190, 171, + 137, 179, 255, 255, 27, 85, 13, 58, 25, 95, 93, 116, 246, 27, 15, 119, 128, 91, 37, 131, 249, 30, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3604, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d036c463c587c5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24f06bac1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2d18469de47528b4c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e59397cd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa1ca896b9e87d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d8c3e4465" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5574798945278312597" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5258071635115943802" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43ff37" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f7fc90d1763" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee4530" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9619fad12959f6addae8404" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13833708461227694428" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f47d036c463c587c5bf4524f06bac1b49c2d18469de47528b4c44e59397cd47aa1ca896b9e87dff9fbf453d8c3e44651b4d5daa1aab894095ffbf1b48f86c4b2ea4a77a4343ff37468f7fc90d176343ee45304cc9619fad12959f6addae84041bbffb348d25cad95cffffff", + "cborBytes": [ + 159, 71, 208, 54, 196, 99, 197, 135, 197, 191, 69, 36, 240, 107, 172, 27, 73, 194, 209, 132, 105, 222, 71, 82, + 139, 76, 68, 229, 147, 151, 205, 71, 170, 28, 168, 150, 185, 232, 125, 255, 159, 191, 69, 61, 140, 62, 68, 101, + 27, 77, 93, 170, 26, 171, 137, 64, 149, 255, 191, 27, 72, 248, 108, 75, 46, 164, 167, 122, 67, 67, 255, 55, 70, + 143, 127, 201, 13, 23, 99, 67, 238, 69, 48, 76, 201, 97, 159, 173, 18, 149, 159, 106, 221, 174, 132, 4, 27, 191, + 251, 52, 141, 37, 202, 217, 92, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3605, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14612804200214774641" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6f23" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f7922" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9788069575566341602" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a950" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15582522073000085740" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bbe251652d2c7f73010a6" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ad62ff543b2c5f9f941c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4790364674170140808" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14030024608345876492" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12277603271274623749" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1064a86a970bb3a2b72a46" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15566937714222922978" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7657175391339867305" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18075132774338506118" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9346519390656628826" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ccc33ca2ad1bdc9b2812" + }, + { + "_tag": "ByteArray", + "bytearray": "360cb36d7e70f8c45fd596" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11660063280674910589" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3771497f236eaca8" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bcacb1bff862343719f426f23bf439f79221b87d6356b6870b5e242a9501bd8403d4401da88ec41f24b8bbe251652d2c7f73010a6ff4aad62ff543b2c5f9f941cffffd8669f1b427acb4a6c7db8889f1bc2b4a90c0a71e80cffffd8669f1baa62cf202d7f73059fbf4b1064a86a970bb3a2b72a461bd808df5fb8e37ce2ff1b6a43c072efaceca9d8669f1bfad7c57dfa77ad869f1b81b581dda663885a4accc33ca2ad1bdc9b28124b360cb36d7e70f8c45fd5961ba1d0ddc6af34317d483771497f236eaca8ffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 202, 203, 27, 255, 134, 35, 67, 113, 159, 66, 111, 35, 191, 67, 159, 121, 34, 27, 135, + 214, 53, 107, 104, 112, 181, 226, 66, 169, 80, 27, 216, 64, 61, 68, 1, 218, 136, 236, 65, 242, 75, 139, 190, 37, + 22, 82, 210, 199, 247, 48, 16, 166, 255, 74, 173, 98, 255, 84, 59, 44, 95, 159, 148, 28, 255, 255, 216, 102, 159, + 27, 66, 122, 203, 74, 108, 125, 184, 136, 159, 27, 194, 180, 169, 12, 10, 113, 232, 12, 255, 255, 216, 102, 159, + 27, 170, 98, 207, 32, 45, 127, 115, 5, 159, 191, 75, 16, 100, 168, 106, 151, 11, 179, 162, 183, 42, 70, 27, 216, + 8, 223, 95, 184, 227, 124, 226, 255, 27, 106, 67, 192, 114, 239, 172, 236, 169, 216, 102, 159, 27, 250, 215, 197, + 125, 250, 119, 173, 134, 159, 27, 129, 181, 129, 221, 166, 99, 136, 90, 74, 204, 195, 60, 162, 173, 27, 220, 155, + 40, 18, 75, 54, 12, 179, 109, 126, 112, 248, 196, 95, 213, 150, 27, 161, 208, 221, 198, 175, 52, 49, 125, 72, 55, + 113, 73, 127, 35, 110, 172, 168, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3606, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1e88e9e2d9310b19390e93" + }, + { + "_tag": "ByteArray", + "bytearray": "308fcb28e9c436" + }, + { + "_tag": "ByteArray", + "bytearray": "eeadb0" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f4b1e88e9e2d9310b19390e9347308fcb28e9c43643eeadb0ffffff", + "cborBytes": [ + 159, 159, 159, 75, 30, 136, 233, 226, 217, 49, 11, 25, 57, 14, 147, 71, 48, 143, 203, 40, 233, 196, 54, 67, 238, + 173, 176, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3607, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4651713304655768180" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11528812203144396546" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1b408e349ad0f72a749f1b9ffe919dd29c3f02ffffff", + "cborBytes": [ + 159, 159, 27, 64, 142, 52, 154, 208, 247, 42, 116, 159, 27, 159, 254, 145, 157, 210, 156, 63, 2, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3608, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "896495094640344187" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8487168988211584802" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4577650918943834401" + } + }, + { + "_tag": "ByteArray", + "bytearray": "937fc42db80fa020796e3fde" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17568812234765082811" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5febd7bd" + }, + { + "_tag": "ByteArray", + "bytearray": "5d794a424db4248226bdcc4d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3fbefd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8279080139631503267" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0491" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1378d84f44f17d0eca51b8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b6630bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31d471f020" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "228a37a4f5e0c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bbd457e990" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5623492469396499436" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5907705126941044532" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4911320030199726556" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8160342243509594155" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58f8b8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13342966863473662234" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1ec98985e0c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13354113743135706451" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11654532505786915766" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "85745eedebd725e268" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10930114228035929668" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2333daa7ffd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da5afc780d0e9bc956ef" + } + } + ] + } + ] + }, + "cborHex": "9fa01b0c70fd89eaeafc7b9fd8669f1b75c87b3a53101f229f1b3f871541e16341214c937fc42db80fa020796e3fde1bf3d0f5a4dab5a0bb445febd7bd4c5d794a424db4248226bdcc4dffff9f433fbefd1b72e53385c5ba27a3ffbf4204914b1378d84f44f17d0eca51b8441b6630bc4531d471f02047228a37a4f5e0c145bbd457e990ffa01b4e0aa89b3b766becffbf1b51fc628339132f341b4428838bd250c1dc1b713f5c08fe00e82b4358f8b81bb92bbdab1327d91a46f1ec98985e0c1bb95357b23dc40d531ba1bd3790ceac1bb6ffbf4985745eedebd725e2681b97af90faec86464446e2333daa7ffd4ada5afc780d0e9bc956efffff", + "cborBytes": [ + 159, 160, 27, 12, 112, 253, 137, 234, 234, 252, 123, 159, 216, 102, 159, 27, 117, 200, 123, 58, 83, 16, 31, 34, + 159, 27, 63, 135, 21, 65, 225, 99, 65, 33, 76, 147, 127, 196, 45, 184, 15, 160, 32, 121, 110, 63, 222, 27, 243, + 208, 245, 164, 218, 181, 160, 187, 68, 95, 235, 215, 189, 76, 93, 121, 74, 66, 77, 180, 36, 130, 38, 189, 204, 77, + 255, 255, 159, 67, 63, 190, 253, 27, 114, 229, 51, 133, 197, 186, 39, 163, 255, 191, 66, 4, 145, 75, 19, 120, 216, + 79, 68, 241, 125, 14, 202, 81, 184, 68, 27, 102, 48, 188, 69, 49, 212, 113, 240, 32, 71, 34, 138, 55, 164, 245, + 224, 193, 69, 187, 212, 87, 233, 144, 255, 160, 27, 78, 10, 168, 155, 59, 118, 107, 236, 255, 191, 27, 81, 252, + 98, 131, 57, 19, 47, 52, 27, 68, 40, 131, 139, 210, 80, 193, 220, 27, 113, 63, 92, 8, 254, 0, 232, 43, 67, 88, + 248, 184, 27, 185, 43, 189, 171, 19, 39, 217, 26, 70, 241, 236, 152, 152, 94, 12, 27, 185, 83, 87, 178, 61, 196, + 13, 83, 27, 161, 189, 55, 144, 206, 172, 27, 182, 255, 191, 73, 133, 116, 94, 237, 235, 215, 37, 226, 104, 27, + 151, 175, 144, 250, 236, 134, 70, 68, 70, 226, 51, 61, 170, 127, 253, 74, 218, 90, 252, 120, 13, 14, 155, 201, 86, + 239, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3609, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff65a4020604b654" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11857786289945783786" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "49e34a5e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60e705ff7ff7" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "01" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "138e38f619510d3c37" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "416b902e" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14064521797859707942" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12485926632618626928" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f48ff65a4020604b654d87e9f1ba48f51ce32b72dea9f4449e34a5e1bfffffffffffffffeffff9fbf1bffffffffffffffeb4660e705ff7ff7ff4101bf49138e38f619510d3c3744416b902effd8669f1bc32f380ee12a8c269f1bad46ec1e7cd28f70ffffffff", + "cborBytes": [ + 159, 72, 255, 101, 164, 2, 6, 4, 182, 84, 216, 126, 159, 27, 164, 143, 81, 206, 50, 183, 45, 234, 159, 68, 73, + 227, 74, 94, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255, 255, 159, 191, 27, 255, 255, 255, 255, 255, 255, + 255, 235, 70, 96, 231, 5, 255, 127, 247, 255, 65, 1, 191, 73, 19, 142, 56, 246, 25, 81, 13, 60, 55, 68, 65, 107, + 144, 46, 255, 216, 102, 159, 27, 195, 47, 56, 14, 225, 42, 140, 38, 159, 27, 173, 70, 236, 30, 124, 210, 143, 112, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3610, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "589de99dc0a7257f47af" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8112b47ea5c0ebffcb37d06e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9352150039987224190" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "95cb294c226f11" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3589051905433216591" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "801612031276522990" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b70587" + }, + { + "_tag": "ByteArray", + "bytearray": "bb9f817e9e919ca6dec042" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11705818561190669197" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b5b256" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03655c04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fbf41034a589de99dc0a7257f47af4c8112b47ea5c0ebffcb37d06e1b81c982e95b97fe7effffa04795cb294c226f11d8669f1b31cedfb13fc9264f9f1b0b1fe5e533ea9dee9f43b705874bbb9f817e9e919ca6dec0421ba2736bf618f1ab8d43b5b256ff80ffffbf4403655c0412ffff", + "cborBytes": [ + 159, 159, 191, 65, 3, 74, 88, 157, 233, 157, 192, 167, 37, 127, 71, 175, 76, 129, 18, 180, 126, 165, 192, 235, + 255, 203, 55, 208, 110, 27, 129, 201, 130, 233, 91, 151, 254, 126, 255, 255, 160, 71, 149, 203, 41, 76, 34, 111, + 17, 216, 102, 159, 27, 49, 206, 223, 177, 63, 201, 38, 79, 159, 27, 11, 31, 229, 229, 51, 234, 157, 238, 159, 67, + 183, 5, 135, 75, 187, 159, 129, 126, 158, 145, 156, 166, 222, 192, 66, 27, 162, 115, 107, 246, 24, 241, 171, 141, + 67, 181, 178, 86, 255, 128, 255, 255, 191, 68, 3, 101, 92, 4, 18, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3611, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "361bc61ee8456bd8e7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15096442666248721119" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49d6cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2119501526969482146" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f4c07ac7b0d02f0f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bd361b674ae5b8adecb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8c8c3e81a6e9dea6d25cb" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f283fe0a" + } + ] + }, + "cborHex": "9fd87b9fbf49361bc61ee8456bd8e71bd181569eddce52df4349d6cc1b1d69fb68bfe9fba2494f4c07ac7b0d02f0f5414b4a7bd361b674ae5b8adecb4bc8c8c3e81a6e9dea6d25cbffff44f283fe0aff", + "cborBytes": [ + 159, 216, 123, 159, 191, 73, 54, 27, 198, 30, 232, 69, 107, 216, 231, 27, 209, 129, 86, 158, 221, 206, 82, 223, + 67, 73, 214, 204, 27, 29, 105, 251, 104, 191, 233, 251, 162, 73, 79, 76, 7, 172, 123, 13, 2, 240, 245, 65, 75, 74, + 123, 211, 97, 182, 116, 174, 91, 138, 222, 203, 75, 200, 200, 195, 232, 26, 110, 157, 234, 109, 37, 203, 255, 255, + 68, 242, 131, 254, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3612, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16616349106382430560" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3a91de65432b69" + }, + { + "_tag": "ByteArray", + "bytearray": "58f8be85fb3ddc03fd91f3" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ba" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12284520585604315899" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16588778095869711142" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6130118062767615669" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ee6f91e696fd8c1c" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1be69921799dcde1609f473a91de65432b694b58f8be85fb3ddc03fd91f3ff41bad8669f1baa7b6262eceb3afb9f1be6372dc97e185326d8669f1b55128de63a782eb59f48ee6f91e696fd8c1cffffffffff", + "cborBytes": [ + 159, 27, 230, 153, 33, 121, 157, 205, 225, 96, 159, 71, 58, 145, 222, 101, 67, 43, 105, 75, 88, 248, 190, 133, + 251, 61, 220, 3, 253, 145, 243, 255, 65, 186, 216, 102, 159, 27, 170, 123, 98, 98, 236, 235, 58, 251, 159, 27, + 230, 55, 45, 201, 126, 24, 83, 38, 216, 102, 159, 27, 85, 18, 141, 230, 58, 120, 46, 181, 159, 72, 238, 111, 145, + 230, 150, 253, 140, 28, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3613, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2271453211784365250" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12472591921127272370" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5833635132360743731" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15144313115587421606" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4833405405347406196" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8204456202988946171" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13306507962530461149" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18400544113555838749" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8207f067f5b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3275246201437085452" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3520047164696864447" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97c800e6fba5bb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6287933864760216954" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09fcec1bad05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10260247869310102313" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "68525848508879692" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14084822598389205237" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a0b01459721" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16638289824902980725" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2370862219514571154" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16707251315216539760" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7273758040073189773" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13063643662105525817" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b85785917862e3f8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3196705429366932950" + } + } + ] + }, + "cborHex": "9fd8669f1b1f85d2a95453c4c29f1bad178c450732afb2d8669f1b50f53c3eb599db3380ff1bd22b688a65e0a5a6ffffd8669f1b4313b49b912f61749fd8669f1b71dc1572926802fb80ffbf1bb8aa367db388f5dd1bff5bdd618a66971d468207f067f5b21b2d740311349adf0cffbf1b30d9b83f0c60a6bf4797c800e6fba5bb1b57433a88fc2e8d7a4609fcec1bad051b8e63b91375afeb291b00f373e56a4dd34c1bc3775787556208f5469a0b014597211be6e714713b56a4751b20e6fea0958f69921be7dc148d68a8e0701b64f1946640b4398dff1bb54b62b250153e39ffff9f48b85785917862e3f8ff1b2c5cfaa6b0fa85d6ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 31, 133, 210, 169, 84, 83, 196, 194, 159, 27, 173, 23, 140, 69, 7, 50, 175, 178, 216, 102, + 159, 27, 80, 245, 60, 62, 181, 153, 219, 51, 128, 255, 27, 210, 43, 104, 138, 101, 224, 165, 166, 255, 255, 216, + 102, 159, 27, 67, 19, 180, 155, 145, 47, 97, 116, 159, 216, 102, 159, 27, 113, 220, 21, 114, 146, 104, 2, 251, + 128, 255, 191, 27, 184, 170, 54, 125, 179, 136, 245, 221, 27, 255, 91, 221, 97, 138, 102, 151, 29, 70, 130, 7, + 240, 103, 245, 178, 27, 45, 116, 3, 17, 52, 154, 223, 12, 255, 191, 27, 48, 217, 184, 63, 12, 96, 166, 191, 71, + 151, 200, 0, 230, 251, 165, 187, 27, 87, 67, 58, 136, 252, 46, 141, 122, 70, 9, 252, 236, 27, 173, 5, 27, 142, 99, + 185, 19, 117, 175, 235, 41, 27, 0, 243, 115, 229, 106, 77, 211, 76, 27, 195, 119, 87, 135, 85, 98, 8, 245, 70, + 154, 11, 1, 69, 151, 33, 27, 230, 231, 20, 113, 59, 86, 164, 117, 27, 32, 230, 254, 160, 149, 143, 105, 146, 27, + 231, 220, 20, 141, 104, 168, 224, 112, 27, 100, 241, 148, 102, 64, 180, 57, 141, 255, 27, 181, 75, 98, 178, 80, + 21, 62, 57, 255, 255, 159, 72, 184, 87, 133, 145, 120, 98, 227, 248, 255, 27, 44, 92, 250, 166, 176, 250, 133, + 214, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3614, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14510937687464570952" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8362059854845969256" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ac8f5d87d9ae979df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2401915323957897572" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62456c6f5c5e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "128f3b5e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71b7d1fc1b5f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15453702057054541756" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fea382a616" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10763811051954187162" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16559754383308789825" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "57a93afa12" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14383851722760895475" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13507363542246797849" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10074392922877054662" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6812048763571131670" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cdffa5bc14d557911ca074" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13515024023064641544" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2b0e082c22d7" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1732119122660266129" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1995157806671577140" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10076030765977971603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9749519224059739976" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11275007756032393782" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef09a51c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14096097266307302086" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "170c1eddbfc776" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15440511985772222972" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2405f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17348896952044335034" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b87097e" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bc96134f1cb2770489fd8669f1b740c012246a6036880ffffffbf491ac8f5d87d9ae979df1b21555142e113e9644662456c6f5c5e44128f3b5e4671b7d1fc1b5f1bd6769424c77597bc41df45fea382a616ffd8669f1b9560bd1f65272b9a9fd8669f1be5d010dfd0d6984180ff9f4557a93afa12ff1bc79db4eed50dbbf3d8669f1bbb73cb939baeb2199f1b8bcf6efca7cbcec61b5e894242394bd5164bcdffa5bc14d557911ca0741bbb8f02be49a38008ffff462b0e082c22d7ffffbf1b1809b92a36d390911b1bb039745181c0341b8bd54098b8062b931b874d401440ec3f481b9c78dfd10a15c23644ef09a51c1bc39f65c7859a02c647170c1eddbfc7761bd647b7d7fe1d59fc43b2405f1bf0c3a9dc0775afba440b87097effff", + "cborBytes": [ + 159, 216, 102, 159, 27, 201, 97, 52, 241, 203, 39, 112, 72, 159, 216, 102, 159, 27, 116, 12, 1, 34, 70, 166, 3, + 104, 128, 255, 255, 255, 191, 73, 26, 200, 245, 216, 125, 154, 233, 121, 223, 27, 33, 85, 81, 66, 225, 19, 233, + 100, 70, 98, 69, 108, 111, 92, 94, 68, 18, 143, 59, 94, 70, 113, 183, 209, 252, 27, 95, 27, 214, 118, 148, 36, + 199, 117, 151, 188, 65, 223, 69, 254, 163, 130, 166, 22, 255, 216, 102, 159, 27, 149, 96, 189, 31, 101, 39, 43, + 154, 159, 216, 102, 159, 27, 229, 208, 16, 223, 208, 214, 152, 65, 128, 255, 159, 69, 87, 169, 58, 250, 18, 255, + 27, 199, 157, 180, 238, 213, 13, 187, 243, 216, 102, 159, 27, 187, 115, 203, 147, 155, 174, 178, 25, 159, 27, 139, + 207, 110, 252, 167, 203, 206, 198, 27, 94, 137, 66, 66, 57, 75, 213, 22, 75, 205, 255, 165, 188, 20, 213, 87, 145, + 28, 160, 116, 27, 187, 143, 2, 190, 73, 163, 128, 8, 255, 255, 70, 43, 14, 8, 44, 34, 215, 255, 255, 191, 27, 24, + 9, 185, 42, 54, 211, 144, 145, 27, 27, 176, 57, 116, 81, 129, 192, 52, 27, 139, 213, 64, 152, 184, 6, 43, 147, 27, + 135, 77, 64, 20, 64, 236, 63, 72, 27, 156, 120, 223, 209, 10, 21, 194, 54, 68, 239, 9, 165, 28, 27, 195, 159, 101, + 199, 133, 154, 2, 198, 71, 23, 12, 30, 221, 191, 199, 118, 27, 214, 71, 183, 215, 254, 29, 89, 252, 67, 178, 64, + 95, 27, 240, 195, 169, 220, 7, 117, 175, 186, 68, 11, 135, 9, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3615, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a94e6123de210d2eb6f5b684" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13466472227460654174" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c32cee32c9ab608fe5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7920014361189727757" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcd01d673eab23cdf11979" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18263441404967305743" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5076f2a9e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13140279701130853247" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78e9a80a096d" + } + } + ] + } + ] + }, + "cborHex": "9fbf4ca94e6123de210d2eb6f5b6841bbae285247774a45e49c32cee32c9ab608fe51b6de98b1976b4be0d4bdcd01d673eab23cdf119791bfd74c731a73cc20f45e5076f2a9e1bb65ba6c49b2e3b7f41f64678e9a80a096dffff", + "cborBytes": [ + 159, 191, 76, 169, 78, 97, 35, 222, 33, 13, 46, 182, 245, 182, 132, 27, 186, 226, 133, 36, 119, 116, 164, 94, 73, + 195, 44, 238, 50, 201, 171, 96, 143, 229, 27, 109, 233, 139, 25, 118, 180, 190, 13, 75, 220, 208, 29, 103, 62, + 171, 35, 205, 241, 25, 121, 27, 253, 116, 199, 49, 167, 60, 194, 15, 69, 229, 7, 111, 42, 158, 27, 182, 91, 166, + 196, 155, 46, 59, 127, 65, 246, 70, 120, 233, 168, 10, 9, 109, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3616, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2778244a9b2a3e" + } + ] + }, + "cborHex": "9f472778244a9b2a3eff", + "cborBytes": [159, 71, 39, 120, 36, 74, 155, 42, 62, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3617, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8949a0c983c2f4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9074732681988990994" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bbc8d0cc5d995d45d480e6" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "36df95a5f208" + }, + { + "_tag": "ByteArray", + "bytearray": "66e28d7c98ed71064897dc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "588244899991310893" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6765343594654035341" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1839298628959189338" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f809f9f478949a0c983c2f41b7defed4b5594e8124bbbc8d0cc5d995d45d480e6ff9f4636df95a5f2084b66e28d7c98ed71064897dc1b0829dd9eb0ead22d1b5de35427aed16d8dff9f1b1986805ba6f9b95affffff", + "cborBytes": [ + 159, 128, 159, 159, 71, 137, 73, 160, 201, 131, 194, 244, 27, 125, 239, 237, 75, 85, 148, 232, 18, 75, 187, 200, + 208, 204, 93, 153, 93, 69, 212, 128, 230, 255, 159, 70, 54, 223, 149, 165, 242, 8, 75, 102, 226, 141, 124, 152, + 237, 113, 6, 72, 151, 220, 27, 8, 41, 221, 158, 176, 234, 210, 45, 27, 93, 227, 84, 39, 174, 209, 109, 141, 255, + 159, 27, 25, 134, 128, 91, 166, 249, 185, 90, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3618, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4617497559206584651" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1221360357873292301" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14219848569347072158" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12859383230377994128" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1638162974070305125" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6449373637765622572" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8363791201148760014" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "940028205510529430" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0200fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5334272532491116004" + } + }, + { + "_tag": "ByteArray", + "bytearray": "591807" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6cc44b307f411b4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13375822217755586884" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14880211075276432368" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3399746862409507822" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + } + ] + }, + "cborHex": "9f9fbf1b4014a590c7bde14b1b10f324c641c8140dff9f1bc5570cef0fc7609e1bb275b4ea854ba7901b16bbec8ba9a87165ff1b5980c7273ec9eb2cd8669f1b741227c8c0026fce80ff1b0d0ba6ac244d9196ff430200fb1b4a07249b2a419de443591807bf0e48f6cc44b307f411b41bb9a077705c197144101bce8121225caf63f01b2f2e53c23c2ae3ee1bfffffffffffffff407ffff", + "cborBytes": [ + 159, 159, 191, 27, 64, 20, 165, 144, 199, 189, 225, 75, 27, 16, 243, 36, 198, 65, 200, 20, 13, 255, 159, 27, 197, + 87, 12, 239, 15, 199, 96, 158, 27, 178, 117, 180, 234, 133, 75, 167, 144, 27, 22, 187, 236, 139, 169, 168, 113, + 101, 255, 27, 89, 128, 199, 39, 62, 201, 235, 44, 216, 102, 159, 27, 116, 18, 39, 200, 192, 2, 111, 206, 128, 255, + 27, 13, 11, 166, 172, 36, 77, 145, 150, 255, 67, 2, 0, 251, 27, 74, 7, 36, 155, 42, 65, 157, 228, 67, 89, 24, 7, + 191, 14, 72, 246, 204, 68, 179, 7, 244, 17, 180, 27, 185, 160, 119, 112, 92, 25, 113, 68, 16, 27, 206, 129, 33, + 34, 92, 175, 99, 240, 27, 47, 46, 83, 194, 60, 42, 227, 238, 27, 255, 255, 255, 255, 255, 255, 255, 244, 7, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3619, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5106046898956536273" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10240283403644620341" + } + }, + { + "_tag": "ByteArray", + "bytearray": "466442fca9a1" + }, + { + "_tag": "ByteArray", + "bytearray": "026ad91c4d" + }, + { + "_tag": "ByteArray", + "bytearray": "22756d1726c29a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7475209334709324605" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "378658623218998821" + } + } + ] + }, + "cborHex": "9f9fd8669f1b46dc529a02ca09d19f1b8e1ccb801190ce3546466442fca9a145026ad91c4d4722756d1726c29a1b67bd4748d9088b3dffffff1b05414402f81b5e25ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 70, 220, 82, 154, 2, 202, 9, 209, 159, 27, 142, 28, 203, 128, 17, 144, 206, 53, 70, + 70, 100, 66, 252, 169, 161, 69, 2, 106, 217, 28, 77, 71, 34, 117, 109, 23, 38, 194, 154, 27, 103, 189, 71, 72, + 217, 8, 139, 61, 255, 255, 255, 27, 5, 65, 68, 2, 248, 27, 94, 37, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3620, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "00f907f902" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1125864072640815654" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3d36b601da" + } + ] + } + ] + }, + "cborHex": "9f4500f907f902d8669f1b0f9fdf68b32162269f453d36b601daffffff", + "cborBytes": [ + 159, 69, 0, 249, 7, 249, 2, 216, 102, 159, 27, 15, 159, 223, 104, 179, 33, 98, 38, 159, 69, 61, 54, 182, 1, 218, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3621, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8508378518062417218" + } + }, + { + "_tag": "ByteArray", + "bytearray": "14403d" + }, + { + "_tag": "ByteArray", + "bytearray": "fa290301" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f6544b85c674e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5093597796224463898" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6599626355585723200" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c528a2ce6a0dff3ab8f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16903511090312945309" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0005faf8065d4d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15972646479257986598" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6871253274883058399" + }, + "fields": [] + } + ] + }, + "cborHex": "9fa006d8669f1bfffffffffffffffc9f1b7613d52ecfacc5424314403d44fa290301ffffbf05030f471f6544b85c674e1b46b0183568abf41a081b5b9695343efe2b404a5c528a2ce6a0dff3ab8f1bea9555c72afa9e9d470005faf8065d4d1bfffffffffffffff31bddaa3d589f10e626ffd8669f1b5f5b9872b324eadf80ffff", + "cborBytes": [ + 159, 160, 6, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 27, 118, 19, 213, 46, 207, 172, 197, + 66, 67, 20, 64, 61, 68, 250, 41, 3, 1, 255, 255, 191, 5, 3, 15, 71, 31, 101, 68, 184, 92, 103, 78, 27, 70, 176, + 24, 53, 104, 171, 244, 26, 8, 27, 91, 150, 149, 52, 62, 254, 43, 64, 74, 92, 82, 138, 44, 230, 160, 223, 243, 171, + 143, 27, 234, 149, 85, 199, 42, 250, 158, 157, 71, 0, 5, 250, 248, 6, 93, 77, 27, 255, 255, 255, 255, 255, 255, + 255, 243, 27, 221, 170, 61, 88, 159, 16, 230, 38, 255, 216, 102, 159, 27, 95, 91, 152, 114, 179, 36, 234, 223, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3622, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa61" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1334307593110955699" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "beb18a56df2383" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1367030773684650394" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7356634351771174784" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df1ba7" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + }, + "cborHex": "9f9f42fa6108bf1b128469afbc7c26b347beb18a56df23831b12f8ab3eee80419a41bb1b661803f73fc1c78043df1ba7ffff08ff", + "cborBytes": [ + 159, 159, 66, 250, 97, 8, 191, 27, 18, 132, 105, 175, 188, 124, 38, 179, 71, 190, 177, 138, 86, 223, 35, 131, 27, + 18, 248, 171, 62, 238, 128, 65, 154, 65, 187, 27, 102, 24, 3, 247, 63, 193, 199, 128, 67, 223, 27, 167, 255, 255, + 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3623, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "43e7d3c1ca4a18" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "52db25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "025ef7fbe7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cad1a5a6089bf30" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74f976195461de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12342211729069200977" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5913310731247112662" + }, + "fields": [] + } + ] + }, + "cborHex": "9f9f4743e7d3c1ca4a18ff9fbf4352db2545025ef7fbe7487cad1a5a6089bf304774f976195461de41b01bab48582cfdd45651ffffd8669f1b52104cc7ae7d51d680ffff", + "cborBytes": [ + 159, 159, 71, 67, 231, 211, 193, 202, 74, 24, 255, 159, 191, 67, 82, 219, 37, 69, 2, 94, 247, 251, 231, 72, 124, + 173, 26, 90, 96, 137, 191, 48, 71, 116, 249, 118, 25, 84, 97, 222, 65, 176, 27, 171, 72, 88, 44, 253, 212, 86, 81, + 255, 255, 216, 102, 159, 27, 82, 16, 76, 199, 174, 125, 81, 214, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3624, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fdcdd9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5941540981531765419" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "47e8d65cec44" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11117109254461367313" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13032966495474192751" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2355776988042142046" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bae11f67af407c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e0a" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4602954656560223869" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f43fdcdd9d8669f1b5274980b06a06aab9f804647e8d65cec441b9a47e7f74960a4111bb4de65f9dc4e916fa0ffffbf1b20b166b06e4aa15e47bae11f67af407c412c423e0affd8669f1b3fe0fadf6580967d80ffa0ff", + "cborBytes": [ + 159, 67, 253, 205, 217, 216, 102, 159, 27, 82, 116, 152, 11, 6, 160, 106, 171, 159, 128, 70, 71, 232, 214, 92, + 236, 68, 27, 154, 71, 231, 247, 73, 96, 164, 17, 27, 180, 222, 101, 249, 220, 78, 145, 111, 160, 255, 255, 191, + 27, 32, 177, 102, 176, 110, 74, 161, 94, 71, 186, 225, 31, 103, 175, 64, 124, 65, 44, 66, 62, 10, 255, 216, 102, + 159, 27, 63, 224, 250, 223, 101, 128, 150, 125, 128, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3625, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46f49dc1" + } + } + ] + } + ] + }, + "cborHex": "9fbf4206fa4446f49dc1ffff", + "cborBytes": [159, 191, 66, 6, 250, 68, 70, 244, 157, 193, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3626, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "891621a4e6461ce3e118a177" + } + ] + } + ] + }, + "cborHex": "9f9f4c891621a4e6461ce3e118a177ffff", + "cborBytes": [159, 159, 76, 137, 22, 33, 164, 230, 70, 28, 227, 225, 24, 161, 119, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3627, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9884345667898071270" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fab4018a00" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1506045509555910807" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68dc635daed1d7736e4964bd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5551167337787856541" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff85c498fc25f967" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9375668193653206027" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16864293279163384805" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10799872257773632178" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33392a2561676b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14664056635710666751" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54be9763e754826074" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18381406707123788819" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fcb57faac640cbc448d4669" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "800813427855548051" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "530df8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2478640242027227905" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + }, + "cborHex": "9fbf1b892c4003f43c58e645fab4018a00ff9fbf1b14e68c695ca6f8974c68dc635daed1d7736e4964bd1b4d09b5484998969d48ff85c498fc25f9671b821d108c36a0ac0b1bea0a0162f48a83e51b95e0da9928317ab24733392a2561676b1bcb8131d111be77ff4954be9763e7548260741bff17e002e2189c134c1fcb57faac640cbc448d4669ff1b0b1d0f91dab15e93ffbf43530df81bfffffffffffffff5ff1b2265e62af0056b0108ff", + "cborBytes": [ + 159, 191, 27, 137, 44, 64, 3, 244, 60, 88, 230, 69, 250, 180, 1, 138, 0, 255, 159, 191, 27, 20, 230, 140, 105, 92, + 166, 248, 151, 76, 104, 220, 99, 93, 174, 209, 215, 115, 110, 73, 100, 189, 27, 77, 9, 181, 72, 73, 152, 150, 157, + 72, 255, 133, 196, 152, 252, 37, 249, 103, 27, 130, 29, 16, 140, 54, 160, 172, 11, 27, 234, 10, 1, 98, 244, 138, + 131, 229, 27, 149, 224, 218, 153, 40, 49, 122, 178, 71, 51, 57, 42, 37, 97, 103, 107, 27, 203, 129, 49, 209, 17, + 190, 119, 255, 73, 84, 190, 151, 99, 231, 84, 130, 96, 116, 27, 255, 23, 224, 2, 226, 24, 156, 19, 76, 31, 203, + 87, 250, 172, 100, 12, 188, 68, 141, 70, 105, 255, 27, 11, 29, 15, 145, 218, 177, 94, 147, 255, 191, 67, 83, 13, + 248, 27, 255, 255, 255, 255, 255, 255, 255, 245, 255, 27, 34, 101, 230, 42, 240, 5, 107, 1, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3628, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + }, + "cborHex": "9fa009ff", + "cborBytes": [159, 160, 9, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3629, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6dd2ba" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13082098417382659183" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4717" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fec7030501a3ea07" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13602830342938737342" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4747755d65" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11580828480365425129" + } + } + ] + }, + "cborHex": "9f436dd2ba1bb58cf332dccb146fbf034110074247170f1bffffffffffffffed1248fec7030501a3ea071bbcc6f62042c4babe454747755d651bfffffffffffffff61bfffffffffffffff6ff1ba0b75e2520e871e9ff", + "cborBytes": [ + 159, 67, 109, 210, 186, 27, 181, 140, 243, 50, 220, 203, 20, 111, 191, 3, 65, 16, 7, 66, 71, 23, 15, 27, 255, 255, + 255, 255, 255, 255, 255, 237, 18, 72, 254, 199, 3, 5, 1, 163, 234, 7, 27, 188, 198, 246, 32, 66, 196, 186, 190, + 69, 71, 71, 117, 93, 101, 27, 255, 255, 255, 255, 255, 255, 255, 246, 27, 255, 255, 255, 255, 255, 255, 255, 246, + 255, 27, 160, 183, 94, 37, 32, 232, 113, 233, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3630, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10476887821483989146" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13621914716808093541" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "834cd2a8d5" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11035846022536706054" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6984914756477441607" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "752582782987479731" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b916561f6f72b589a9fd8669f1bbd0ac34350031f659f45834cd2a8d5ffffd8669f1b9927337cb13538069f1b60ef66f69e38d6471b0a71b60dc40b2ab3ffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 145, 101, 97, 246, 247, 43, 88, 154, 159, 216, 102, 159, 27, 189, 10, 195, 67, 80, 3, 31, + 101, 159, 69, 131, 76, 210, 168, 213, 255, 255, 216, 102, 159, 27, 153, 39, 51, 124, 177, 53, 56, 6, 159, 27, 96, + 239, 102, 246, 158, 56, 214, 71, 27, 10, 113, 182, 13, 196, 11, 42, 179, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3631, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11615744984891198846" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1d80f0e5cbc9f87fa5" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9977123523355185907" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "56e0ac19" + }, + { + "_tag": "ByteArray", + "bytearray": "a67221da0a15" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4427742482674536943" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13001172561304976091" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7a49ccdc59f77cee" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15407553547881872536" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9cfba5cfaa6072926c" + }, + { + "_tag": "ByteArray", + "bytearray": "d46f9e41a8f21372" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11349495633579773777" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f77562217" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7e544ee79788d6da" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4355685587984179611" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4463155052942093065" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "acd6e7952e830a5fa4e9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8445297787230164964" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11213984338544102898" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a5cb927e0744139e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18140673595058717507" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e399ca31a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "958f395172013d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9693ddde1a67d3dc4e10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10775066447219073321" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28b79f41ccabb5111ba2" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba1336a8559f70d7e9f491d80f0e5cbc9f87fa5ffff9fd8669f1b8a75dcfbc1c792f39f4456e0ac1946a67221da0a151b3d7280542cb8d1efffffd8669f1bb46d718fb4237adb9f487a49ccdc59f77ceeffffd8669f1bd5d2a051af4efc989f499cfba5cfaa6072926c48d46f9e41a8f213721b9d818225835e8f51458f77562217ffffff487e544ee79788d6dad8669f1b3c7280f70115e19b9fd8669f1b3df04fdfb41a6b099f4aacd6e7952e830a5fa4e91b7533b997a63f17e41b9ba0135777b70df2ffffbf493a5cb927e0744139e21bfbc09e8573c88343457e399ca31a47958f395172013d4a9693ddde1a67d3dc4e101b9588b9d851b9212942d7a24a28b79f41ccabb5111ba2ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 161, 51, 106, 133, 89, 247, 13, 126, 159, 73, 29, 128, 240, 229, 203, 201, 248, 127, 165, + 255, 255, 159, 216, 102, 159, 27, 138, 117, 220, 251, 193, 199, 146, 243, 159, 68, 86, 224, 172, 25, 70, 166, 114, + 33, 218, 10, 21, 27, 61, 114, 128, 84, 44, 184, 209, 239, 255, 255, 216, 102, 159, 27, 180, 109, 113, 143, 180, + 35, 122, 219, 159, 72, 122, 73, 204, 220, 89, 247, 124, 238, 255, 255, 216, 102, 159, 27, 213, 210, 160, 81, 175, + 78, 252, 152, 159, 73, 156, 251, 165, 207, 170, 96, 114, 146, 108, 72, 212, 111, 158, 65, 168, 242, 19, 114, 27, + 157, 129, 130, 37, 131, 94, 143, 81, 69, 143, 119, 86, 34, 23, 255, 255, 255, 72, 126, 84, 78, 231, 151, 136, 214, + 218, 216, 102, 159, 27, 60, 114, 128, 247, 1, 21, 225, 155, 159, 216, 102, 159, 27, 61, 240, 79, 223, 180, 26, + 107, 9, 159, 74, 172, 214, 231, 149, 46, 131, 10, 95, 164, 233, 27, 117, 51, 185, 151, 166, 63, 23, 228, 27, 155, + 160, 19, 87, 119, 183, 13, 242, 255, 255, 191, 73, 58, 92, 185, 39, 224, 116, 65, 57, 226, 27, 251, 192, 158, 133, + 115, 200, 131, 67, 69, 126, 57, 156, 163, 26, 71, 149, 143, 57, 81, 114, 1, 61, 74, 150, 147, 221, 222, 26, 103, + 211, 220, 78, 16, 27, 149, 136, 185, 216, 81, 185, 33, 41, 66, 215, 162, 74, 40, 183, 159, 65, 204, 171, 181, 17, + 27, 162, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3632, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "008f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "418480e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c597719f1fbfc0a50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6214561821453365701" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "528458705edaecf3656168" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55cc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c35953c1af9c3c385f7984f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7706980493520136491" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "735cb5a4cbf80f66" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4c315ce1c36" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9911087930800844972" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf42008f44418480e5493c597719f1fbfc0a501b563e8f0cea6eb1c54b528458705edaecf36561684255cc4c5c35953c1af9c3c385f7984f1b6af4b1ecef21e92b48735cb5a4cbf80f6641fc46f4c315ce1c361b898b41f63d0bb0acffff", + "cborBytes": [ + 159, 191, 66, 0, 143, 68, 65, 132, 128, 229, 73, 60, 89, 119, 25, 241, 251, 252, 10, 80, 27, 86, 62, 143, 12, 234, + 110, 177, 197, 75, 82, 132, 88, 112, 94, 218, 236, 243, 101, 97, 104, 66, 85, 204, 76, 92, 53, 149, 60, 26, 249, + 195, 195, 133, 247, 152, 79, 27, 106, 244, 177, 236, 239, 33, 233, 43, 72, 115, 92, 181, 164, 203, 248, 15, 102, + 65, 252, 70, 244, 195, 21, 206, 28, 54, 27, 137, 139, 65, 246, 61, 11, 176, 172, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3633, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15950842966968203590" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5233440417142931940" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1648260884112768819" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8042484023127174255" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15361961386362246368" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8706490614193577933" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6dd7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3625504392224305971" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "82a9372f9f2f3e0a22" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15180891462820090173" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2497487144051123912" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2106463080533153065" + } + }, + { + "_tag": "ByteArray", + "bytearray": "36b3b1970ff4f57678f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5583625352647672662" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16419461872643819001" + } + }, + { + "_tag": "ByteArray", + "bytearray": "23f09a2347cc5f5f7f966f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14230088348892053265" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11267258828534945876" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6545b7326b69bfab0f" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bdd5cc72ad22d7946d8669f1b48a0ea54d8fa01e49f1b16dfcc8a8eb67f339f1b6f9ca49bae3fec6f1bd530a67d5f6394e01b78d3ab15ab47dfcd426dd71b325061093625f333ff9f4982a9372f9f2f3e0a22ff1bd2ad5c5a8726d13dd8669f1b22a8db534445a6c89f1b1d3ba902dfa755294a36b3b1970ff4f57678f81b4d7d05acc76e0356ffffffff1be3dda594420145f94b23f09a2347cc5f5f7f966fd8669f1bc57b6df58622bf119f1b9c5d5835433598549f496545b7326b69bfab0fffffffff", + "cborBytes": [ + 159, 27, 221, 92, 199, 42, 210, 45, 121, 70, 216, 102, 159, 27, 72, 160, 234, 84, 216, 250, 1, 228, 159, 27, 22, + 223, 204, 138, 142, 182, 127, 51, 159, 27, 111, 156, 164, 155, 174, 63, 236, 111, 27, 213, 48, 166, 125, 95, 99, + 148, 224, 27, 120, 211, 171, 21, 171, 71, 223, 205, 66, 109, 215, 27, 50, 80, 97, 9, 54, 37, 243, 51, 255, 159, + 73, 130, 169, 55, 47, 159, 47, 62, 10, 34, 255, 27, 210, 173, 92, 90, 135, 38, 209, 61, 216, 102, 159, 27, 34, + 168, 219, 83, 68, 69, 166, 200, 159, 27, 29, 59, 169, 2, 223, 167, 85, 41, 74, 54, 179, 177, 151, 15, 244, 245, + 118, 120, 248, 27, 77, 125, 5, 172, 199, 110, 3, 86, 255, 255, 255, 255, 27, 227, 221, 165, 148, 66, 1, 69, 249, + 75, 35, 240, 154, 35, 71, 204, 95, 95, 127, 150, 111, 216, 102, 159, 27, 197, 123, 109, 245, 134, 34, 191, 17, + 159, 27, 156, 93, 88, 53, 67, 53, 152, 84, 159, 73, 101, 69, 183, 50, 107, 105, 191, 171, 15, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3634, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d53c73b520540baf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf48d53c73b520540baf1bffffffffffffffebffff", + "cborBytes": [ + 159, 191, 72, 213, 60, 115, 181, 32, 84, 11, 175, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3635, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "99f898c945f91aab69" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4869023447776989302" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3eb40282b6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8179197630119680480" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e6de02121e58a7e" + } + } + ] + } + ] + }, + "cborHex": "9f4999f898c945f91aab69bf1b43923f074fcb9076453eb40282b61b718258e8cb0019e0480e6de02121e58a7effff", + "cborBytes": [ + 159, 73, 153, 248, 152, 201, 69, 249, 26, 171, 105, 191, 27, 67, 146, 63, 7, 79, 203, 144, 118, 69, 62, 180, 2, + 130, 182, 27, 113, 130, 88, 232, 203, 0, 25, 224, 72, 14, 109, 224, 33, 33, 229, 138, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3636, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16887932531641741420" + } + }, + { + "_tag": "ByteArray", + "bytearray": "59e4b5a2f4951b4e" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "671c658b300ef3394ae0a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12068065241831785184" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e454acea42edb659a2cd5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b93ff1deba93d91b8e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8955c684" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8613428343344256480" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5733d552a43" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7351065607329459303" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9ff6944" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12586276357799791162" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e89a4d227d26f77956" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7237861103762680475" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17620061086709795693" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "44" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3432469604535065922" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8523677812040351596" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10498773034338092915" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f9f1bea5dfd295344f06c4859e4b5a2f4951b4effbf4b671c658b300ef3394ae0a81ba77a6165e99f42e04b7e454acea42edb659a2cd549b93ff1deba93d91b8e448955c6841b77890b713f50d5e046b5733d552a431b66043b38e576ac6744c9ff69441baeab6fa9978dca3a49e89a4d227d26f779561b64720c5377642a9bff1bf48708340a054b6d9f41441b2fa294eb58a35d421b764a2fcf468b3f6c1b91b32273292c0773ffffff", + "cborBytes": [ + 159, 159, 159, 27, 234, 93, 253, 41, 83, 68, 240, 108, 72, 89, 228, 181, 162, 244, 149, 27, 78, 255, 191, 75, 103, + 28, 101, 139, 48, 14, 243, 57, 74, 224, 168, 27, 167, 122, 97, 101, 233, 159, 66, 224, 75, 126, 69, 74, 206, 164, + 46, 219, 101, 154, 44, 213, 73, 185, 63, 241, 222, 186, 147, 217, 27, 142, 68, 137, 85, 198, 132, 27, 119, 137, + 11, 113, 63, 80, 213, 224, 70, 181, 115, 61, 85, 42, 67, 27, 102, 4, 59, 56, 229, 118, 172, 103, 68, 201, 255, + 105, 68, 27, 174, 171, 111, 169, 151, 141, 202, 58, 73, 232, 154, 77, 34, 125, 38, 247, 121, 86, 27, 100, 114, 12, + 83, 119, 100, 42, 155, 255, 27, 244, 135, 8, 52, 10, 5, 75, 109, 159, 65, 68, 27, 47, 162, 148, 235, 88, 163, 93, + 66, 27, 118, 74, 47, 207, 70, 139, 63, 108, 27, 145, 179, 34, 115, 41, 44, 7, 115, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3637, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1281800716526852902" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2771272020147181482" + } + } + ] + }, + "cborHex": "9f1b11c9def5dd6c9b261b2675893830da17aaff", + "cborBytes": [159, 27, 17, 201, 222, 245, 221, 108, 155, 38, 27, 38, 117, 137, 56, 48, 218, 23, 170, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3638, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ced8da424004b1c48a5f5b00" + }, + { + "_tag": "ByteArray", + "bytearray": "50ed" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0f22acf39daeb252" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "589193018040568420" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f69d49f54c5829188bbac7" + } + ] + } + ] + } + ] + }, + "cborHex": "9f4cced8da424004b1c48a5f5b004250ed9fd905029f480f22acf39daeb2520dffd8669f1b082d3beda072ca649f4bf69d49f54c5829188bbac7ffffffff", + "cborBytes": [ + 159, 76, 206, 216, 218, 66, 64, 4, 177, 196, 138, 95, 91, 0, 66, 80, 237, 159, 217, 5, 2, 159, 72, 15, 34, 172, + 243, 157, 174, 178, 82, 13, 255, 216, 102, 159, 27, 8, 45, 59, 237, 160, 114, 202, 100, 159, 75, 246, 157, 73, + 245, 76, 88, 41, 24, 139, 186, 199, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3639, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12499832577559630665" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4a720c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16993916153454744049" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f2a80" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "56a613c789a8383373" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a52" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9005dbd4b84e80f7beb643" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7873553639077716655" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b687ffacca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6089286987851914991" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8c264" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8126204852965299303" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e06eb3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "952b4359bd3f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d8b" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fa01bad785380994c13499f434a720c1bebd684b4357151f1437f2a80bf4956a613c789a8383373423a524b9005dbd4b84e80f7beb6431b6d447b51a13622af45b687ffacca1b54817e40c6525eef43d8c2641b70c61442610d546743e06eb346952b4359bd3f41e5422d8bffffff", + "cborBytes": [ + 159, 160, 27, 173, 120, 83, 128, 153, 76, 19, 73, 159, 67, 74, 114, 12, 27, 235, 214, 132, 180, 53, 113, 81, 241, + 67, 127, 42, 128, 191, 73, 86, 166, 19, 199, 137, 168, 56, 51, 115, 66, 58, 82, 75, 144, 5, 219, 212, 184, 78, + 128, 247, 190, 182, 67, 27, 109, 68, 123, 81, 161, 54, 34, 175, 69, 182, 135, 255, 172, 202, 27, 84, 129, 126, 64, + 198, 82, 94, 239, 67, 216, 194, 100, 27, 112, 198, 20, 66, 97, 13, 84, 103, 67, 224, 110, 179, 70, 149, 43, 67, + 89, 189, 63, 65, 229, 66, 45, 139, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3640, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7184653763169334398" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ab6cf6953e91dba4c6b1" + }, + { + "_tag": "ByteArray", + "bytearray": "aa0c2edd1c" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1353156973100591150" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9083291957794872430" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1382136045540860079" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7019164013027553615" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5047167293252992408" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6b232" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5167311380997274266" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f208b37525c022b1f708" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13966732341179363154" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a8e863573b7e9d795" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14344418418660157497" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9372577875474306200" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "36dc85dcf4e7aac8e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa37" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ae30ba35a7df2af2f0fef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dacbc80dfcbc8973" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1896890fde" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10006776290618491284" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ac68ac61675a2bfa39" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4094253393228514653" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b63b504881be1b47e9f9f4aab6cf6953e91dba4c6b145aa0c2edd1cffffffd8669f1bfffffffffffffff39fbf1b12c761190300e82e1b7e0e55e907869c6e1b132e556919b9e0af1b6169147b10b6714f1b460b23e984507d9843f6b2321b47b5fa52cc2cfa9a4af208b37525c022b1f7081bc1d3cd10bcf4af52499a8e863573b7e9d7951bc7119c8d41cf28391b821215eb7154d498ffbf4936dc85dcf4e7aac8e342fa374b8ae30ba35a7df2af2f0fef41fc48dacbc80dfcbc8973451896890fdeffffff001bfffffffffffffffdd8669f1b8adf3604a51dc1949f49ac68ac61675a2bfa391b38d1b5c4d3d2c55dffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 99, 181, 4, 136, 27, 225, 180, 126, 159, 159, 74, 171, 108, 246, 149, 62, 145, 219, 164, + 198, 177, 69, 170, 12, 46, 221, 28, 255, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, + 191, 27, 18, 199, 97, 25, 3, 0, 232, 46, 27, 126, 14, 85, 233, 7, 134, 156, 110, 27, 19, 46, 85, 105, 25, 185, + 224, 175, 27, 97, 105, 20, 123, 16, 182, 113, 79, 27, 70, 11, 35, 233, 132, 80, 125, 152, 67, 246, 178, 50, 27, + 71, 181, 250, 82, 204, 44, 250, 154, 74, 242, 8, 179, 117, 37, 192, 34, 177, 247, 8, 27, 193, 211, 205, 16, 188, + 244, 175, 82, 73, 154, 142, 134, 53, 115, 183, 233, 215, 149, 27, 199, 17, 156, 141, 65, 207, 40, 57, 27, 130, 18, + 21, 235, 113, 84, 212, 152, 255, 191, 73, 54, 220, 133, 220, 244, 231, 170, 200, 227, 66, 250, 55, 75, 138, 227, + 11, 163, 90, 125, 242, 175, 47, 15, 239, 65, 252, 72, 218, 203, 200, 13, 252, 188, 137, 115, 69, 24, 150, 137, 15, + 222, 255, 255, 255, 0, 27, 255, 255, 255, 255, 255, 255, 255, 253, 216, 102, 159, 27, 138, 223, 54, 4, 165, 29, + 193, 148, 159, 73, 172, 104, 172, 97, 103, 90, 43, 250, 57, 27, 56, 209, 181, 196, 211, 210, 197, 93, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3641, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b9734aae99bb70e86b7fd50e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11041770825655880194" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10147389969918103199" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15539940121933153894" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9679619451260396473" + } + }, + { + "_tag": "ByteArray", + "bytearray": "35604082ccbf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3792870347947114752" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3238381008373667886" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9965934586633733361" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4054130084702260138" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4020069998457667904" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "851847627367545420" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2584789464678322597" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2668871617704287602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16966083294170324064" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7456359844619239046" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b2767c45bb146568cb92dc6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10040154294154280020" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2187822951830737229" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17014638059195900216" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5564709108963196055" + } + } + } + ] + } + ] + }, + "cborHex": "9f4cb9734aae99bb70e86b7fd50ed8669f1b993c40106a7d8a029fd8669f1b8cd2c56a1a548e9f9f1bd7a8f534eeaa86661b8654ea9b295663b94635604082ccbf1b34a2fb7c68800100ffff1b2cf10a5e937bd82e1b8a4e1cb46b1544f1ffffd8669f1b384329d513e70baa80ffd8669f1b37ca285d4646414080ffbf1b0bd25ee760007a4c1b23df0452c552d1a51b2509bc989462dd721beb73a2ddaab61c601b677a4fc5f0043e864c2b2767c45bb146568cb92dc61b8b55cb22b12dbc541b1e5cb5621351514d1bec20232adc36a1381b4d39d1739621bc97ffff", + "cborBytes": [ + 159, 76, 185, 115, 74, 174, 153, 187, 112, 232, 107, 127, 213, 14, 216, 102, 159, 27, 153, 60, 64, 16, 106, 125, + 138, 2, 159, 216, 102, 159, 27, 140, 210, 197, 106, 26, 84, 142, 159, 159, 27, 215, 168, 245, 52, 238, 170, 134, + 102, 27, 134, 84, 234, 155, 41, 86, 99, 185, 70, 53, 96, 64, 130, 204, 191, 27, 52, 162, 251, 124, 104, 128, 1, 0, + 255, 255, 27, 44, 241, 10, 94, 147, 123, 216, 46, 27, 138, 78, 28, 180, 107, 21, 68, 241, 255, 255, 216, 102, 159, + 27, 56, 67, 41, 213, 19, 231, 11, 170, 128, 255, 216, 102, 159, 27, 55, 202, 40, 93, 70, 70, 65, 64, 128, 255, + 191, 27, 11, 210, 94, 231, 96, 0, 122, 76, 27, 35, 223, 4, 82, 197, 82, 209, 165, 27, 37, 9, 188, 152, 148, 98, + 221, 114, 27, 235, 115, 162, 221, 170, 182, 28, 96, 27, 103, 122, 79, 197, 240, 4, 62, 134, 76, 43, 39, 103, 196, + 91, 177, 70, 86, 140, 185, 45, 198, 27, 139, 85, 203, 34, 177, 45, 188, 84, 27, 30, 92, 181, 98, 19, 81, 81, 77, + 27, 236, 32, 35, 42, 220, 54, 161, 56, 27, 77, 57, 209, 115, 150, 33, 188, 151, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3642, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15807744993623098879" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14858927100059269721" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15834582517828425614" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8179e1665a3c811f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9086794702851711004" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12c692aa1208c398a91289ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14680699647549338764" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "137475f01e8844d70b1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b4f30afdb47a686" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e658277a2ff76" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7405aded7dfb460d062cba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd99bc9abe0eed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9728cbf9abd6e3ef748a1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d69bb2092910d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7352657954516457360" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1bdb60645194dd45ff1bce358378b6753a591bdbbfbce79dc6178e488179e1665a3c811fffd8669f1b7e1ac7a36a60a01c9fbf4c12c692aa1208c398a91289ee1bcbbc528c3a61748c4a137475f01e8844d70b1b480b4f30afdb47a686473e658277a2ff764b7405aded7dfb460d062cba47cd99bc9abe0eed4bc9728cbf9abd6e3ef748a147d69bb2092910d41b6609e3741de75790ffffffff", + "cborBytes": [ + 159, 191, 27, 219, 96, 100, 81, 148, 221, 69, 255, 27, 206, 53, 131, 120, 182, 117, 58, 89, 27, 219, 191, 188, + 231, 157, 198, 23, 142, 72, 129, 121, 225, 102, 90, 60, 129, 31, 255, 216, 102, 159, 27, 126, 26, 199, 163, 106, + 96, 160, 28, 159, 191, 76, 18, 198, 146, 170, 18, 8, 195, 152, 169, 18, 137, 238, 27, 203, 188, 82, 140, 58, 97, + 116, 140, 74, 19, 116, 117, 240, 30, 136, 68, 215, 11, 27, 72, 11, 79, 48, 175, 219, 71, 166, 134, 71, 62, 101, + 130, 119, 162, 255, 118, 75, 116, 5, 173, 237, 125, 251, 70, 13, 6, 44, 186, 71, 205, 153, 188, 154, 190, 14, 237, + 75, 201, 114, 140, 191, 154, 189, 110, 62, 247, 72, 161, 71, 214, 155, 178, 9, 41, 16, 212, 27, 102, 9, 227, 116, + 29, 231, 87, 144, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3643, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9659125774230386287" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac7d0c327a76cf997d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8399e90327dd9dfd7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bffb881c20795d327e7e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed5ad6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13243412334656307539" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11231924183465789162" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18432847963892930494" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14291098370674164272" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea4ec4d686babe613519" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12979371222597551320" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8553152783799346800" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "35770dfc79a6f887e6a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e1e941c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c00d78763ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "205466576960337525" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16907115576732523491" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d351465323d02d145016" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "166eee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8438694407139dde677" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14763240689842482039" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b860c1bb725d2766f49ac7d0c327a76cf997d49d8399e90327dd9dfd74abffb881c20795d327e7e43ed5ad61bb7ca0d5a0d374153ff9fbf1b9bdfcf891b9906ea1bffcea18fce9ed7be1bc6542e402a3282304aea4ec4d686babe613519ffffbf1bb41ffd5bfadac4d81b76b2e723ec00e670ffbf4a35770dfc79a6f887e6a9446e1e941c465c00d78763ae1b02d9f6c35cefb67542d2ec1beaa2240a0f9d9be34ad351465323d02d14501643166eee4ad8438694407139dde6771bcce191303ba76b77ffff", + "cborBytes": [ + 159, 191, 27, 134, 12, 27, 183, 37, 210, 118, 111, 73, 172, 125, 12, 50, 122, 118, 207, 153, 125, 73, 216, 57, + 158, 144, 50, 125, 217, 223, 215, 74, 191, 251, 136, 28, 32, 121, 93, 50, 126, 126, 67, 237, 90, 214, 27, 183, + 202, 13, 90, 13, 55, 65, 83, 255, 159, 191, 27, 155, 223, 207, 137, 27, 153, 6, 234, 27, 255, 206, 161, 143, 206, + 158, 215, 190, 27, 198, 84, 46, 64, 42, 50, 130, 48, 74, 234, 78, 196, 214, 134, 186, 190, 97, 53, 25, 255, 255, + 191, 27, 180, 31, 253, 91, 250, 218, 196, 216, 27, 118, 178, 231, 35, 236, 0, 230, 112, 255, 191, 74, 53, 119, 13, + 252, 121, 166, 248, 135, 230, 169, 68, 110, 30, 148, 28, 70, 92, 0, 215, 135, 99, 174, 27, 2, 217, 246, 195, 92, + 239, 182, 117, 66, 210, 236, 27, 234, 162, 36, 10, 15, 157, 155, 227, 74, 211, 81, 70, 83, 35, 208, 45, 20, 80, + 22, 67, 22, 110, 238, 74, 216, 67, 134, 148, 64, 113, 57, 221, 230, 119, 27, 204, 225, 145, 48, 59, 167, 107, 119, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3644, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "525b4c" + } + ] + }, + "cborHex": "9f43525b4cff", + "cborBytes": [159, 67, 82, 91, 76, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3645, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18254590480564613548" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d72866" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "527533264372055387" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b5b0a94e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16176588867446345262" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28e733b5f4964ef22786a9" + }, + { + "_tag": "ByteArray", + "bytearray": "58" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8111269007538115392" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2fd6c4123b78fa09e234" + } + ] + }, + "cborHex": "9fd8669f1bfd5555533a47f1ac80ffd8669f1bffffffffffffffec9f43d72866d8669f1b07522cb57e193d5b9f44b5b0a94e1be07ec9de21ad8e2e4b28e733b5f4964ef22786a941581b7091042fdff1d340ffffffff4a2fd6c4123b78fa09e234ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 253, 85, 85, 83, 58, 71, 241, 172, 128, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 236, 159, 67, 215, 40, 102, 216, 102, 159, 27, 7, 82, 44, 181, 126, 25, 61, 91, 159, 68, 181, 176, 169, + 78, 27, 224, 126, 201, 222, 33, 173, 142, 46, 75, 40, 231, 51, 181, 244, 150, 78, 242, 39, 134, 169, 65, 88, 27, + 112, 145, 4, 47, 223, 241, 211, 64, 255, 255, 255, 255, 74, 47, 214, 196, 18, 59, 120, 250, 9, 226, 52, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3646, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "649308" + } + ] + }, + "cborHex": "9f43649308ff", + "cborBytes": [159, 67, 100, 147, 8, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3647, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4efc169a5e2ee8b96709d11a" + } + ] + }, + "cborHex": "9f4c4efc169a5e2ee8b96709d11aff", + "cborBytes": [159, 76, 78, 252, 22, 154, 94, 46, 232, 185, 103, 9, 209, 26, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3648, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bbf57eeacd3e" + } + ] + }, + "cborHex": "9f46bbf57eeacd3eff", + "cborBytes": [159, 70, 187, 245, 126, 234, 205, 62, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3649, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c4bc93e5" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10642749240622148702" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ee" + }, + { + "_tag": "ByteArray", + "bytearray": "42c3" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "50ca803b654af688d2942184" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "000cf845c9a69a3207" + }, + { + "_tag": "ByteArray", + "bytearray": "c27418b07c84ba" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3239a1d00db51f1dc138072c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3627441807216481541" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "490cd97f63efb0f45aaced3a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8152085742311227909" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49d5d44e3949658753" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16576654048265451866" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4a30c2f9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16013970079038501145" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6fad63fe7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a98ad2d35cc858533" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2ac8a922fad07dbffe1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14893682771979181031" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14660211257931687578" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9f" + } + ] + }, + "cborHex": "9f44c4bc93e59fd8669f1b93b2a40bf0d76c5e9f41ee4242c3ffff4c50ca803b654af688d29421849f49000cf845c9a69a320747c27418b07c84baffbf4c3239a1d00db51f1dc138072c1b3257431aca8a15054c490cd97f63efb0f45aaced3a1b712206ca80fcc2054949d5d44e39496587531be60c1b07af67395a45a4a30c2f9c1bde3d0cf0f4d2f11945a6fad63fe7497a98ad2d35cc8585334ab2ac8a922fad07dbffe11bceb0fd922d2c9be7ff1bcb7388774933669aff419fff", + "cborBytes": [ + 159, 68, 196, 188, 147, 229, 159, 216, 102, 159, 27, 147, 178, 164, 11, 240, 215, 108, 94, 159, 65, 238, 66, 66, + 195, 255, 255, 76, 80, 202, 128, 59, 101, 74, 246, 136, 210, 148, 33, 132, 159, 73, 0, 12, 248, 69, 201, 166, 154, + 50, 7, 71, 194, 116, 24, 176, 124, 132, 186, 255, 191, 76, 50, 57, 161, 208, 13, 181, 31, 29, 193, 56, 7, 44, 27, + 50, 87, 67, 26, 202, 138, 21, 5, 76, 73, 12, 217, 127, 99, 239, 176, 244, 90, 172, 237, 58, 27, 113, 34, 6, 202, + 128, 252, 194, 5, 73, 73, 213, 212, 78, 57, 73, 101, 135, 83, 27, 230, 12, 27, 7, 175, 103, 57, 90, 69, 164, 163, + 12, 47, 156, 27, 222, 61, 12, 240, 244, 210, 241, 25, 69, 166, 250, 214, 63, 231, 73, 122, 152, 173, 45, 53, 204, + 133, 133, 51, 74, 178, 172, 138, 146, 47, 173, 7, 219, 255, 225, 27, 206, 176, 253, 146, 45, 44, 155, 231, 255, + 27, 203, 115, 136, 119, 73, 51, 102, 154, 255, 65, 159, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3650, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1951219928836645608" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d2cc81aaf5d9f8103a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7755987387530087064" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1026108518843512833" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15502109561363759236" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5140272502990080563" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "329c0e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11162686032715471956" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac7d8a7017a921c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6575815510957584608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cff00313f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ad2eb185f48a6496f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d063e2528236d30ac7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16968313050768772343" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15639007267869259196" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12942000425134028273" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3361900223567163925" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "143032a9de116efc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8481825126268345065" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a9c73dba10a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25b6d0cbe7ef75" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab97c59ec761d85167" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "998304302174843926" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6fb44" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10314907037929765069" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1f07644b6496812661d96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee7d3d4b86414e10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0b266db8ae033" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7190897952372048636" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5df0b73363f42f86817a71ce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18b2b87e5b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1abc6ef2ba4c12e61d74b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62a8a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2326" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d660258e8ab828" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24a2a9860d76098aa782ba4f" + } + } + ] + } + ] + }, + "cborHex": "9f9fa0bf1b1b14202ff0f8a2e84a6d2cc81aaf5d9f8103a71b6ba2cd6f9c240a981b0e3d7842e6ab78011bd7228e832a4600841b4755ea9b6d6e8a3343329c0e1b9ae9d3cde7385c54ffbf48ac7d8a7017a921c01b5b41fd5df72170e045cff00313f3490ad2eb185f48a6496f49d063e2528236d30ac71beb7b8ed154b28cf7ff1bd908ea40491975bcffd8669f1bb39b38d1271175f180ffd8669f1b2ea7de70f406f2159fbf48143032a9de116efc1b75b57f0382351ae9467a9c73dba10a4725b6d0cbe7ef7549ab97c59ec761d851671b0ddab0793ce0341643d6fb441b8f25e94cdefaf8cd4be1f07644b6496812661d96419e48ee7d3d4b86414e1047e0b266db8ae033ffffffbf1b63cb3396b33842fc4c5df0b73363f42f86817a71ce4518b2b87e5b4b1abc6ef2ba4c12e61d74b94362a8a442232647d660258e8ab8284c24a2a9860d76098aa782ba4fffff", + "cborBytes": [ + 159, 159, 160, 191, 27, 27, 20, 32, 47, 240, 248, 162, 232, 74, 109, 44, 200, 26, 175, 93, 159, 129, 3, 167, 27, + 107, 162, 205, 111, 156, 36, 10, 152, 27, 14, 61, 120, 66, 230, 171, 120, 1, 27, 215, 34, 142, 131, 42, 70, 0, + 132, 27, 71, 85, 234, 155, 109, 110, 138, 51, 67, 50, 156, 14, 27, 154, 233, 211, 205, 231, 56, 92, 84, 255, 191, + 72, 172, 125, 138, 112, 23, 169, 33, 192, 27, 91, 65, 253, 93, 247, 33, 112, 224, 69, 207, 240, 3, 19, 243, 73, + 10, 210, 235, 24, 95, 72, 166, 73, 111, 73, 208, 99, 226, 82, 130, 54, 211, 10, 199, 27, 235, 123, 142, 209, 84, + 178, 140, 247, 255, 27, 217, 8, 234, 64, 73, 25, 117, 188, 255, 216, 102, 159, 27, 179, 155, 56, 209, 39, 17, 117, + 241, 128, 255, 216, 102, 159, 27, 46, 167, 222, 112, 244, 6, 242, 21, 159, 191, 72, 20, 48, 50, 169, 222, 17, 110, + 252, 27, 117, 181, 127, 3, 130, 53, 26, 233, 70, 122, 156, 115, 219, 161, 10, 71, 37, 182, 208, 203, 231, 239, + 117, 73, 171, 151, 197, 158, 199, 97, 216, 81, 103, 27, 13, 218, 176, 121, 60, 224, 52, 22, 67, 214, 251, 68, 27, + 143, 37, 233, 76, 222, 250, 248, 205, 75, 225, 240, 118, 68, 182, 73, 104, 18, 102, 29, 150, 65, 158, 72, 238, + 125, 61, 75, 134, 65, 78, 16, 71, 224, 178, 102, 219, 138, 224, 51, 255, 255, 255, 191, 27, 99, 203, 51, 150, 179, + 56, 66, 252, 76, 93, 240, 183, 51, 99, 244, 47, 134, 129, 122, 113, 206, 69, 24, 178, 184, 126, 91, 75, 26, 188, + 110, 242, 186, 76, 18, 230, 29, 116, 185, 67, 98, 168, 164, 66, 35, 38, 71, 214, 96, 37, 142, 138, 184, 40, 76, + 36, 162, 169, 134, 13, 118, 9, 138, 167, 130, 186, 79, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3651, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4525070004486967409" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "305ca3" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8318332616627237913" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d571668dc8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1c57b53c4b4e0381" + }, + { + "_tag": "ByteArray", + "bytearray": "24a3d50705101a" + }, + { + "_tag": "ByteArray", + "bytearray": "27ca5e24c58440bc8be73a0f" + }, + { + "_tag": "ByteArray", + "bytearray": "ee641a1e3d8d1d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12275389975472808680" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b3ecc4731b93890719f43305ca3ffffa09fbf1b7370a771419cb41945d571668dc8ff9f481c57b53c4b4e03814724a3d50705101a4c27ca5e24c58440bc8be73a0f47ee641a1e3d8d1d1baa5af2251772a2e8ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 62, 204, 71, 49, 185, 56, 144, 113, 159, 67, 48, 92, 163, 255, 255, 160, 159, 191, 27, + 115, 112, 167, 113, 65, 156, 180, 25, 69, 213, 113, 102, 141, 200, 255, 159, 72, 28, 87, 181, 60, 75, 78, 3, 129, + 71, 36, 163, 213, 7, 5, 16, 26, 76, 39, 202, 94, 36, 197, 132, 64, 188, 139, 231, 58, 15, 71, 238, 100, 26, 30, + 61, 141, 29, 27, 170, 90, 242, 37, 23, 114, 162, 232, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3652, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "672a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15832904522946270626" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "834f8438d959be14" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17893044112578272814" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fdcf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1845585684709273756" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2781610761279344746" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8de1bb38f87" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11555445612183965726" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5736271408137967569" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2eb1e087a3ea11e13b2ed1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7071646116201311880" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1" + }, + { + "_tag": "ByteArray", + "bytearray": "6875a2" + }, + { + "_tag": "ByteArray", + "bytearray": "1a82660686753dbae69f" + } + ] + } + ] + } + ] + }, + "cborHex": "9fa042672abf0f41ef1bdbb9c6c6fce355a21bfffffffffffffff5ffbf412748834f8438d959be14ffd8669f1bf850dcd1a89f5e2e9f9f42fdcf1b199cd666e3a4709c1b269a443ff175906a46c8de1bb38f871ba05d308f9792501effd8669f1b4f9b5474214b17d19f4b2eb1e087a3ea11e13b2ed11b622388aced732e8841c1436875a24a1a82660686753dbae69fffffffffff", + "cborBytes": [ + 159, 160, 66, 103, 42, 191, 15, 65, 239, 27, 219, 185, 198, 198, 252, 227, 85, 162, 27, 255, 255, 255, 255, 255, + 255, 255, 245, 255, 191, 65, 39, 72, 131, 79, 132, 56, 217, 89, 190, 20, 255, 216, 102, 159, 27, 248, 80, 220, + 209, 168, 159, 94, 46, 159, 159, 66, 253, 207, 27, 25, 156, 214, 102, 227, 164, 112, 156, 27, 38, 154, 68, 63, + 241, 117, 144, 106, 70, 200, 222, 27, 179, 143, 135, 27, 160, 93, 48, 143, 151, 146, 80, 30, 255, 216, 102, 159, + 27, 79, 155, 84, 116, 33, 75, 23, 209, 159, 75, 46, 177, 224, 135, 163, 234, 17, 225, 59, 46, 209, 27, 98, 35, + 136, 172, 237, 115, 46, 136, 65, 193, 67, 104, 117, 162, 74, 26, 130, 102, 6, 134, 117, 61, 186, 230, 159, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3653, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ca034cfc04" + }, + { + "_tag": "ByteArray", + "bytearray": "a20792004e9afc0193" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1631981487545367721" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "367e3f8e9a22aad2cd6769" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11030813565053501663" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12637673571783721568" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12829730761081486418" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2567858670809115456" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13374234437969943980" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "231b5705c9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14464816959718859652" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1895b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15815302628274834356" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14308547325887850633" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1515472466356188153" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9725772320229113695" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f749e48221a1b82e10f3fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13777239425088606585" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18072732973399054029" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + } + ] + }, + "cborHex": "9f1345ca034cfc0449a20792004e9afc0193bf1b16a5f6842d27bca94b367e3f8e9a22aad2cd67691b9915527e609300df1baf6209280182c2601bb20c5c270229fc521b23a2dddb22fbeb401bb99ad35c91fe9dac45231b5705c91bc8bd5a631116a38443f1895b1bdb7b3df2859f8bb41bc6922bfba3692889ff9f809f1b15080a2dc80bb3f91b86f8e26559953f5f4bf749e48221a1b82e10f3fc1bbf3296431de9d1791bfacf3ee2c7f096cdff1bffffffffffffffefffff", + "cborBytes": [ + 159, 19, 69, 202, 3, 76, 252, 4, 73, 162, 7, 146, 0, 78, 154, 252, 1, 147, 191, 27, 22, 165, 246, 132, 45, 39, + 188, 169, 75, 54, 126, 63, 142, 154, 34, 170, 210, 205, 103, 105, 27, 153, 21, 82, 126, 96, 147, 0, 223, 27, 175, + 98, 9, 40, 1, 130, 194, 96, 27, 178, 12, 92, 39, 2, 41, 252, 82, 27, 35, 162, 221, 219, 34, 251, 235, 64, 27, 185, + 154, 211, 92, 145, 254, 157, 172, 69, 35, 27, 87, 5, 201, 27, 200, 189, 90, 99, 17, 22, 163, 132, 67, 241, 137, + 91, 27, 219, 123, 61, 242, 133, 159, 139, 180, 27, 198, 146, 43, 251, 163, 105, 40, 137, 255, 159, 128, 159, 27, + 21, 8, 10, 45, 200, 11, 179, 249, 27, 134, 248, 226, 101, 89, 149, 63, 95, 75, 247, 73, 228, 130, 33, 161, 184, + 46, 16, 243, 252, 27, 191, 50, 150, 67, 29, 233, 209, 121, 27, 250, 207, 62, 226, 199, 240, 150, 205, 255, 27, + 255, 255, 255, 255, 255, 255, 255, 239, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3654, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f6f31be245ac8642" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b6ade3e176507ab784" + } + ] + }, + "cborHex": "9f9f48f6f31be245ac8642ff49b6ade3e176507ab784ff", + "cborBytes": [ + 159, 159, 72, 246, 243, 27, 226, 69, 172, 134, 66, 255, 73, 182, 173, 227, 225, 118, 80, 122, 183, 132, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3655, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7369395182437364772" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "644a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15059833647955762898" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9706129697840894643" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8981045435116363070" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4c883d3d" + }, + { + "_tag": "ByteArray", + "bytearray": "5ee8e163bf1221" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8789041486405701848" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9cfc" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9edf897060c2d14c292d" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "10d7e967e02ce3d287" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14322328683245665763" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4972228292536150675" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b664559dfaaa7742442644a1bd0ff46e992e0ded21b86b31988efad12b3ff9fd8669f1b7ca3153d57c11d3e9f444c883d3d475ee8e163bf12211b79f8f2aa616210d8429cfcffff9f4a9edf897060c2d14c292dff4910d7e967e02ce3d287ffbf1bc6c3220df13efde31b4500e749bec3aa93ffff", + "cborBytes": [ + 159, 191, 27, 102, 69, 89, 223, 170, 167, 116, 36, 66, 100, 74, 27, 208, 255, 70, 233, 146, 224, 222, 210, 27, + 134, 179, 25, 136, 239, 173, 18, 179, 255, 159, 216, 102, 159, 27, 124, 163, 21, 61, 87, 193, 29, 62, 159, 68, 76, + 136, 61, 61, 71, 94, 232, 225, 99, 191, 18, 33, 27, 121, 248, 242, 170, 97, 98, 16, 216, 66, 156, 252, 255, 255, + 159, 74, 158, 223, 137, 112, 96, 194, 209, 76, 41, 45, 255, 73, 16, 215, 233, 103, 224, 44, 227, 210, 135, 255, + 191, 27, 198, 195, 34, 13, 241, 62, 253, 227, 27, 69, 0, 231, 73, 190, 195, 170, 147, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3656, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14283526353844199245" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9ad69bc0dc" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9679465650057741043" + }, + "fields": [] + } + ] + }, + "cborHex": "9f801bc639478a9cd05f4d459ad69bc0dcd8669f1b86545eb9874982f380ffff", + "cborBytes": [ + 159, 128, 27, 198, 57, 71, 138, 156, 208, 95, 77, 69, 154, 214, 155, 192, 220, 216, 102, 159, 27, 134, 84, 94, + 185, 135, 73, 130, 243, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3657, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15913525162992893331" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17777770908689471581" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d603979cfce8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "063f8b4061c4c0e7ee9133" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9403961279165667822" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8394e358cd3fcbba103076" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04b929794089776e3514cec5" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6648940011772245164" + }, + "fields": [] + } + ] + }, + "cborHex": "9f9fbf1bdcd832d2806e7d931bf6b7547366b5985d46d603979cfce84109ffbf4b063f8b4061c4c0e7ee91331b828194f5863299ee4b8394e358cd3fcbba1030764c04b929794089776e3514cec5ffffd8669f1b5c45c7b68e90f4ac80ffff", + "cborBytes": [ + 159, 159, 191, 27, 220, 216, 50, 210, 128, 110, 125, 147, 27, 246, 183, 84, 115, 102, 181, 152, 93, 70, 214, 3, + 151, 156, 252, 232, 65, 9, 255, 191, 75, 6, 63, 139, 64, 97, 196, 192, 231, 238, 145, 51, 27, 130, 129, 148, 245, + 134, 50, 153, 238, 75, 131, 148, 227, 88, 205, 63, 203, 186, 16, 48, 118, 76, 4, 185, 41, 121, 64, 137, 119, 110, + 53, 20, 206, 197, 255, 255, 216, 102, 159, 27, 92, 69, 199, 182, 142, 144, 244, 172, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3658, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11274086153105739974" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2578062338712074819" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d4" + }, + { + "_tag": "ByteArray", + "bytearray": "7a54" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5877293772438489038" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6553404120344919794" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f42" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b9c75999fa30490c61b23c71e09b3befa43ff9f41d4427a54bf011b5190578bfacfc7ceffbf1b5af25e5376bd7ef2426f4241874195ffffff", + "cborBytes": [ + 159, 191, 27, 156, 117, 153, 159, 163, 4, 144, 198, 27, 35, 199, 30, 9, 179, 190, 250, 67, 255, 159, 65, 212, 66, + 122, 84, 191, 1, 27, 81, 144, 87, 139, 250, 207, 199, 206, 255, 191, 27, 90, 242, 94, 83, 118, 189, 126, 242, 66, + 111, 66, 65, 135, 65, 149, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3659, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "50a7713a7a67bea22b" + }, + { + "_tag": "ByteArray", + "bytearray": "03a6d78c02b9ce88ff77a8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11822743111668368954" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6195064978587227398" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "43a2f5643e0a2a313c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4b938b21105a3ac79c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9217267780997239708" + } + }, + { + "_tag": "ByteArray", + "bytearray": "82930245" + }, + { + "_tag": "ByteArray", + "bytearray": "a32255f3ee82513d" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffff9f4950a7713a7a67bea22b4b03a6d78c02b9ce88ff77a81ba412d23871b0863ad8669f1b55f94ac6712795069f4943a2f5643e0a2a313cffff9f494b938b21105a3ac79c1b7fea50362dfe539c448293024548a32255f3ee82513dffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 73, 80, 167, 113, 58, 122, 103, 190, 162, 43, + 75, 3, 166, 215, 140, 2, 185, 206, 136, 255, 119, 168, 27, 164, 18, 210, 56, 113, 176, 134, 58, 216, 102, 159, 27, + 85, 249, 74, 198, 113, 39, 149, 6, 159, 73, 67, 162, 245, 100, 62, 10, 42, 49, 60, 255, 255, 159, 73, 75, 147, + 139, 33, 16, 90, 58, 199, 156, 27, 127, 234, 80, 54, 45, 254, 83, 156, 68, 130, 147, 2, 69, 72, 163, 34, 85, 243, + 238, 130, 81, 61, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3660, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6fb60b1a7546c122e69a71ac" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2334177713306024235" + } + } + ] + }, + "cborHex": "9f124c6fb60b1a7546c122e69a71ac1b2064aa43643d392bff", + "cborBytes": [ + 159, 18, 76, 111, 182, 11, 26, 117, 70, 193, 34, 230, 154, 113, 172, 27, 32, 100, 170, 67, 100, 61, 57, 43, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3661, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5959514092551416748" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf071b52b4727e08762bacffff", + "cborBytes": [159, 191, 7, 27, 82, 180, 114, 126, 8, 118, 43, 172, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3662, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3887b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3597859916545205313" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6105230645284783147" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "77353aef8db994f1f06f4ade" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8034129740767467377" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0fc807540206fcf907" + } + ] + }, + "cborHex": "9fd9050a9f9f433887b01b31ee2a88254b2441121b54ba22eccc07442bffbf4c77353aef8db994f1f06f4ade1b6f7ef66ebdd89771ffff490fc807540206fcf907ff", + "cborBytes": [ + 159, 217, 5, 10, 159, 159, 67, 56, 135, 176, 27, 49, 238, 42, 136, 37, 75, 36, 65, 18, 27, 84, 186, 34, 236, 204, + 7, 68, 43, 255, 191, 76, 119, 53, 58, 239, 141, 185, 148, 241, 240, 111, 74, 222, 27, 111, 126, 246, 110, 189, + 216, 151, 113, 255, 255, 73, 15, 200, 7, 84, 2, 6, 252, 249, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3663, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13338272829573522215" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "844a7caf62709218520e3b" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "384a87" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6661303335092081244" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11195241739325105111" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14450905642506025233" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94d80ced190397c58f69bcdb" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6357984701134172336" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0495a100bfea78e879d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3657215440662263876" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4668561211002503353" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e3ad780678f51c01" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4109760769323599418" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11219483787642025505" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bb91b107823f963279f4b844a7caf62709218520e3b9f43384a87ffbf1b5c71b4171549d25c1b9b5d7d0c071963d71bc88bee1e204279114c94d80ced190397c58f69bcdbffffff9fd8669f1b583c19664e7870b09f4a0495a100bfea78e879d31b32c10a1107bf7844ffffd8669f1b40ca0fafb1f8c0b99f48e3ad780678f51c01ffffffbf1b3908cda52f5e863a071b9bb39d0fbda8362108ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 185, 27, 16, 120, 35, 249, 99, 39, 159, 75, 132, 74, 124, 175, 98, 112, 146, 24, 82, 14, + 59, 159, 67, 56, 74, 135, 255, 191, 27, 92, 113, 180, 23, 21, 73, 210, 92, 27, 155, 93, 125, 12, 7, 25, 99, 215, + 27, 200, 139, 238, 30, 32, 66, 121, 17, 76, 148, 216, 12, 237, 25, 3, 151, 197, 143, 105, 188, 219, 255, 255, 255, + 159, 216, 102, 159, 27, 88, 60, 25, 102, 78, 120, 112, 176, 159, 74, 4, 149, 161, 0, 191, 234, 120, 232, 121, 211, + 27, 50, 193, 10, 17, 7, 191, 120, 68, 255, 255, 216, 102, 159, 27, 64, 202, 15, 175, 177, 248, 192, 185, 159, 72, + 227, 173, 120, 6, 120, 245, 28, 1, 255, 255, 255, 191, 27, 57, 8, 205, 165, 47, 94, 134, 58, 7, 27, 155, 179, 157, + 15, 189, 168, 54, 33, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3664, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10135645673653391587" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11016904208667594391" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f35a1502" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10272569232305140022" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "33ff05cd8185360d" + }, + { + "_tag": "ByteArray", + "bytearray": "79ec47" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13489692379176085457" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2109499725000330171" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18133926435197037706" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b7d7cfaec1d104d3f164a" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "0dc6ba" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1559618688967515888" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b8ca90c0a0b55d0e380ff1b98e3e801fa234e9744f35a15021b8e8f7f4a5627b1369f4833ff05cd8185360d4379ec47bf1bbb3503bf5615a7d11b1d4672d2c26dcbbb1bfba8a603e0fc2c8a4b5b7d7cfaec1d104d3f164aff430dc6ba1b15a4e0ef34f81ef0ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 140, 169, 12, 10, 11, 85, 208, 227, 128, 255, 27, 152, 227, 232, 1, 250, 35, 78, 151, 68, + 243, 90, 21, 2, 27, 142, 143, 127, 74, 86, 39, 177, 54, 159, 72, 51, 255, 5, 205, 129, 133, 54, 13, 67, 121, 236, + 71, 191, 27, 187, 53, 3, 191, 86, 21, 167, 209, 27, 29, 70, 114, 210, 194, 109, 203, 187, 27, 251, 168, 166, 3, + 224, 252, 44, 138, 75, 91, 125, 124, 250, 236, 29, 16, 77, 63, 22, 74, 255, 67, 13, 198, 186, 27, 21, 164, 224, + 239, 52, 248, 30, 240, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3665, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1501105691967247754" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5182023729507233475" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14995701509012717589" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8174031644213847927" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5967301950757815936" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9252365207112604817" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d24822" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5476511755383531481" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17577363815215095680" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "37f0a64c1b3b4909ac19a277" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d8" + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b14d4ffac7406558a9f1b47ea3f205eec6ec31bd01b6f12627e0015ffffbf1b716ffe78f82b27771b52d01d82126a46801b806701227e215c9143d24822ff1b4c007a6cfbe2e7d9d8669f1bf3ef5742d5b35f809f4c37f0a64c1b3b4909ac19a277ffff41d8ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 20, 212, 255, 172, 116, 6, 85, 138, 159, 27, 71, 234, 63, 32, 94, 236, 110, 195, 27, + 208, 27, 111, 18, 98, 126, 0, 21, 255, 255, 191, 27, 113, 111, 254, 120, 248, 43, 39, 119, 27, 82, 208, 29, 130, + 18, 106, 70, 128, 27, 128, 103, 1, 34, 126, 33, 92, 145, 67, 210, 72, 34, 255, 27, 76, 0, 122, 108, 251, 226, 231, + 217, 216, 102, 159, 27, 243, 239, 87, 66, 213, 179, 95, 128, 159, 76, 55, 240, 166, 76, 27, 59, 73, 9, 172, 25, + 162, 119, 255, 255, 65, 216, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3666, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12768875958324743974" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6431340670919687089" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ded34a8723ac520f0f219351" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17067113091601458924" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7847867173533404884" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6821265091713429528" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd2c95c0518f1df959" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15212878359811369336" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bd85" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10084454674964912186" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a9396bdad3e5e4f1c158bf" + }, + { + "_tag": "ByteArray", + "bytearray": "4153bc71bcd80d2955ac85c9" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8121208404239350322" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12273965802859343529" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ef" + }, + { + "_tag": "ByteArray", + "bytearray": "4c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4ba05ee36093f6a1" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "455003520470742941" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9397828644792081745" + } + } + ] + }, + "cborHex": "9f1bb13429081cf8cf269f9f1b5940b643f7b0bbb14cded34a8723ac520f0f2193511becda90ee6e52e6ecffffd8669f1b6ce9399d52e84ed49fbf1b5eaa0075d659f01849cd2c95c0518f1df959ffd8669f1bd31f004457c8a9789f42bd851b8bf32e18decf983a4ba9396bdad3e5e4f1c158bf4c4153bc71bcd80d2955ac85c9ffff9f1b70b45404019a7a321baa55e2de10b92ea941ef414cff484ba05ee36093f6a180ffff1b06507f4a8935f79d1b826bcb5c50d29d51ff", + "cborBytes": [ + 159, 27, 177, 52, 41, 8, 28, 248, 207, 38, 159, 159, 27, 89, 64, 182, 67, 247, 176, 187, 177, 76, 222, 211, 74, + 135, 35, 172, 82, 15, 15, 33, 147, 81, 27, 236, 218, 144, 238, 110, 82, 230, 236, 255, 255, 216, 102, 159, 27, + 108, 233, 57, 157, 82, 232, 78, 212, 159, 191, 27, 94, 170, 0, 117, 214, 89, 240, 24, 73, 205, 44, 149, 192, 81, + 143, 29, 249, 89, 255, 216, 102, 159, 27, 211, 31, 0, 68, 87, 200, 169, 120, 159, 66, 189, 133, 27, 139, 243, 46, + 24, 222, 207, 152, 58, 75, 169, 57, 107, 218, 211, 229, 228, 241, 193, 88, 191, 76, 65, 83, 188, 113, 188, 216, + 13, 41, 85, 172, 133, 201, 255, 255, 159, 27, 112, 180, 84, 4, 1, 154, 122, 50, 27, 170, 85, 226, 222, 16, 185, + 46, 169, 65, 239, 65, 76, 255, 72, 75, 160, 94, 227, 96, 147, 246, 161, 128, 255, 255, 27, 6, 80, 127, 74, 137, + 53, 247, 157, 27, 130, 107, 203, 92, 80, 210, 157, 81, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3667, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15810338474845837582" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "db7d1829c78275c082" + }, + { + "_tag": "ByteArray", + "bytearray": "13a1a7fc6804e4291595" + }, + { + "_tag": "ByteArray", + "bytearray": "0a6d82" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5383768685984693051" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6259" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffdca2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16379513557735706554" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10070416630396617212" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5c66d623333fa20e531962" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5380097653022437631" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1882718686153071284" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7227978927114467539" + } + }, + { + "_tag": "ByteArray", + "bytearray": "452c96da38" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7719391022692437247" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "3d33bffb001e17d3bda628" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2875040249910276194" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2909115848039037482" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10135994849198688678" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3058604072677446215" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7cdda2b16b9143" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4225085353900413834" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "531bad7ad60d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8443518789156000385" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7988594656924413957" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12899458528003582172" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04e1edb1" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11539861275712718049" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1095593615093739268" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ab3d8038fee6287e97bfc5dc" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c843480dc19fe6" + }, + { + "_tag": "ByteArray", + "bytearray": "b7edcdfd27969878a2789d" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bdb699b137be0990e9f9f49db7d1829c78275c0824a13a1a7fc6804e4291595430a6d82ffbf1b4ab6fd1870fd3b3b42625943ffdca21be34fb8cc62880fbaffd8669f1b8bc14e91eafa01fc9f4b5c66d623333fa20e5319621b4aa9f24f7950b0ff1b1a20c2ab8424dab41b644ef089eaaab8d345452c96da38ffffffff9f1b6b20c93c6dec0cffa04b3d33bffb001e17d3bda628bf1b27e631dfeada306241ae1b285f41735cd37a2a1b8caa499ccfad49a61b2a725832ec809247477cdda2b16b91431b3aa284be70f0938a46531bad7ad60d1b752d679a61fad2811b6edd3083dc9030051bb304152fdc8968dc4404e1edb1ffff9f1ba025d2b0802484e11b0f34549695d92f044cab3d8038fee6287e97bfc5dc9f47c843480dc19fe64bb7edcdfd27969878a2789dffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 219, 105, 155, 19, 123, 224, 153, 14, 159, 159, 73, 219, 125, 24, 41, 199, 130, 117, 192, + 130, 74, 19, 161, 167, 252, 104, 4, 228, 41, 21, 149, 67, 10, 109, 130, 255, 191, 27, 74, 182, 253, 24, 112, 253, + 59, 59, 66, 98, 89, 67, 255, 220, 162, 27, 227, 79, 184, 204, 98, 136, 15, 186, 255, 216, 102, 159, 27, 139, 193, + 78, 145, 234, 250, 1, 252, 159, 75, 92, 102, 214, 35, 51, 63, 162, 14, 83, 25, 98, 27, 74, 169, 242, 79, 121, 80, + 176, 255, 27, 26, 32, 194, 171, 132, 36, 218, 180, 27, 100, 78, 240, 137, 234, 170, 184, 211, 69, 69, 44, 150, + 218, 56, 255, 255, 255, 255, 159, 27, 107, 32, 201, 60, 109, 236, 12, 255, 160, 75, 61, 51, 191, 251, 0, 30, 23, + 211, 189, 166, 40, 191, 27, 39, 230, 49, 223, 234, 218, 48, 98, 65, 174, 27, 40, 95, 65, 115, 92, 211, 122, 42, + 27, 140, 170, 73, 156, 207, 173, 73, 166, 27, 42, 114, 88, 50, 236, 128, 146, 71, 71, 124, 221, 162, 177, 107, + 145, 67, 27, 58, 162, 132, 190, 112, 240, 147, 138, 70, 83, 27, 173, 122, 214, 13, 27, 117, 45, 103, 154, 97, 250, + 210, 129, 27, 110, 221, 48, 131, 220, 144, 48, 5, 27, 179, 4, 21, 47, 220, 137, 104, 220, 68, 4, 225, 237, 177, + 255, 255, 159, 27, 160, 37, 210, 176, 128, 36, 132, 225, 27, 15, 52, 84, 150, 149, 217, 47, 4, 76, 171, 61, 128, + 56, 254, 230, 40, 126, 151, 191, 197, 220, 159, 71, 200, 67, 72, 13, 193, 159, 230, 75, 183, 237, 205, 253, 39, + 150, 152, 120, 162, 120, 157, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3668, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5046977217147887448" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4008902912598822767" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10732079006287753855" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13232424715369927296" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfeb149c0d9b17" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16618849738762279478" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "177628" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4380911246004778137" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac10674fd16be5c1e048d495" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11483409301294857285" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13663216628068455540" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12292093680385721359" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f20894c118295df347dd3c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16677109121461172155" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09ba4b6d51b69800043a53" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18094551462923999663" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13302833517440775987" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18394388970489028012" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f16d79335ad51170685d21" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14508457675950941339" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "407dd98fbe055e750e" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "35314907976083831" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12785392665601304480" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "623328226800073738" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5736277264674643699" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5350826256080966613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11192182855698078231" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5239311822717783442" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b460a7709f996df58bf1b37a27bf57c7b4f6f1b94f000fec735727f1bb7a3042b94b9528047dfeb149c0d9b171be6a203c97684da3643177628ffbf1b3ccc1f9132a0f4994cac10674fd16be5c1e048d4951b9f5d43eaf618bc451bbd9d7f21e53b14741baa964a137537040f4bf20894c118295df347dd3c1be770fe63091eb7bb4b09ba4b6d51b69800043a531bfb1cc2afbd9c19af1bb89d289a4937b7331bff45ff4f9e5c9dac4bf16d79335ad51170685d21ffbf1bc95865631dd8649b49407dd98fbe055e750effbf1b007d76b8c130a9771bb16ed6e3b30ce7a01b08a681b840e47c0a1b4f9b59c7b614def31b4a41f421488a13d51b9b529f022f19da1741021b48b5c657fc990d92ffff", + "cborBytes": [ + 159, 27, 70, 10, 119, 9, 249, 150, 223, 88, 191, 27, 55, 162, 123, 245, 124, 123, 79, 111, 27, 148, 240, 0, 254, + 199, 53, 114, 127, 27, 183, 163, 4, 43, 148, 185, 82, 128, 71, 223, 235, 20, 156, 13, 155, 23, 27, 230, 162, 3, + 201, 118, 132, 218, 54, 67, 23, 118, 40, 255, 191, 27, 60, 204, 31, 145, 50, 160, 244, 153, 76, 172, 16, 103, 79, + 209, 107, 229, 193, 224, 72, 212, 149, 27, 159, 93, 67, 234, 246, 24, 188, 69, 27, 189, 157, 127, 33, 229, 59, 20, + 116, 27, 170, 150, 74, 19, 117, 55, 4, 15, 75, 242, 8, 148, 193, 24, 41, 93, 243, 71, 221, 60, 27, 231, 112, 254, + 99, 9, 30, 183, 187, 75, 9, 186, 75, 109, 81, 182, 152, 0, 4, 58, 83, 27, 251, 28, 194, 175, 189, 156, 25, 175, + 27, 184, 157, 40, 154, 73, 55, 183, 51, 27, 255, 69, 255, 79, 158, 92, 157, 172, 75, 241, 109, 121, 51, 90, 213, + 17, 112, 104, 93, 33, 255, 191, 27, 201, 88, 101, 99, 29, 216, 100, 155, 73, 64, 125, 217, 143, 190, 5, 94, 117, + 14, 255, 191, 27, 0, 125, 118, 184, 193, 48, 169, 119, 27, 177, 110, 214, 227, 179, 12, 231, 160, 27, 8, 166, 129, + 184, 64, 228, 124, 10, 27, 79, 155, 89, 199, 182, 20, 222, 243, 27, 74, 65, 244, 33, 72, 138, 19, 213, 27, 155, + 82, 159, 2, 47, 25, 218, 23, 65, 2, 27, 72, 181, 198, 87, 252, 153, 13, 146, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3669, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12771204528291836975" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "675a23a08ea5db1b200acf2e" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5770028382180494484" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1752082452384377820" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7050119286209138765" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1180333" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9126415872297447216" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "faaf" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7781b9d2a513" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2353552836584555233" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8952533525163197822" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "12" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81f61372eaec796e38fc34" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8577d1948750" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2b7a7723abfc77b2a14ca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ade4b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1750365653768269447" + } + } + } + ] + } + ] + }, + "cborHex": "9f1bb13c6eda8eb1f42f9f804c675a23a08ea5db1b200acf2ebf1b5013423e1fca4c941b1850a5b51f90ebdc1b61d70e233ea0504d44b11803331b7ea78ae1ccc6af3042faafffff467781b9d2a513bf1b20a97fd5d0bc42e11b7c3dc9ceff20c57e41124b81f61372eaec796e38fc34468577d19487504ba2b7a7723abfc77b2a14ca438ade4b1b184a8c49cbe6ee87ffff", + "cborBytes": [ + 159, 27, 177, 60, 110, 218, 142, 177, 244, 47, 159, 128, 76, 103, 90, 35, 160, 142, 165, 219, 27, 32, 10, 207, 46, + 191, 27, 80, 19, 66, 62, 31, 202, 76, 148, 27, 24, 80, 165, 181, 31, 144, 235, 220, 27, 97, 215, 14, 35, 62, 160, + 80, 77, 68, 177, 24, 3, 51, 27, 126, 167, 138, 225, 204, 198, 175, 48, 66, 250, 175, 255, 255, 70, 119, 129, 185, + 210, 165, 19, 191, 27, 32, 169, 127, 213, 208, 188, 66, 225, 27, 124, 61, 201, 206, 255, 32, 197, 126, 65, 18, 75, + 129, 246, 19, 114, 234, 236, 121, 110, 56, 252, 52, 70, 133, 119, 209, 148, 135, 80, 75, 162, 183, 167, 114, 58, + 191, 199, 123, 42, 20, 202, 67, 138, 222, 75, 27, 24, 74, 140, 73, 203, 230, 238, 135, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3670, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5857609208211904120" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4a05f826" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2fa7228098a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8adb5d8b9071aba76ef51a" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12928414616302538355" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b514a688a38871678444a05f826bf46a2fa7228098a4b8adb5d8b9071aba76ef51affbf081bb36af49889ae4e73ffff", + "cborBytes": [ + 159, 27, 81, 74, 104, 138, 56, 135, 22, 120, 68, 74, 5, 248, 38, 191, 70, 162, 250, 114, 40, 9, 138, 75, 138, 219, + 93, 139, 144, 113, 171, 167, 110, 245, 26, 255, 191, 8, 27, 179, 106, 244, 152, 137, 174, 78, 115, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3671, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a02b41a7da9a261338380273" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a5ebe0ed85b4f8b183c41" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfa739d4c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5741056620836693204" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3749569678496829399" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11065609848583590119" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15030295880136118609" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b07eba582d5143d5eb4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7723448144389392278" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2432416922fe9a7ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3942006515730569220" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e2" + } + ] + }, + "cborHex": "9fbf4ca02b41a7da9a2613383802734b1a5ebe0ed85b4f8b183c4145cfa739d4c71b4fac5494486024d441e81b340925c1ab610fd7ffd8669f1b9990f18777e390e780ffd8669f1bd09656781487d15180ffbf4a6b07eba582d5143d5eb41b6b2f332aaf7ac79649e2432416922fe9a7ab1b36b4d20a58655804ff41e2ff", + "cborBytes": [ + 159, 191, 76, 160, 43, 65, 167, 218, 154, 38, 19, 56, 56, 2, 115, 75, 26, 94, 190, 14, 216, 91, 79, 139, 24, 60, + 65, 69, 207, 167, 57, 212, 199, 27, 79, 172, 84, 148, 72, 96, 36, 212, 65, 232, 27, 52, 9, 37, 193, 171, 97, 15, + 215, 255, 216, 102, 159, 27, 153, 144, 241, 135, 119, 227, 144, 231, 128, 255, 216, 102, 159, 27, 208, 150, 86, + 120, 20, 135, 209, 81, 128, 255, 191, 74, 107, 7, 235, 165, 130, 213, 20, 61, 94, 180, 27, 107, 47, 51, 42, 175, + 122, 199, 150, 73, 226, 67, 36, 22, 146, 47, 233, 167, 171, 27, 54, 180, 210, 10, 88, 101, 88, 4, 255, 65, 226, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3672, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "060402065f018c04d804f866" + }, + { + "_tag": "ByteArray", + "bytearray": "000299fcadff93fff6" + } + ] + }, + "cborHex": "9f4c060402065f018c04d804f86649000299fcadff93fff6ff", + "cborBytes": [ + 159, 76, 6, 4, 2, 6, 95, 1, 140, 4, 216, 4, 248, 102, 73, 0, 2, 153, 252, 173, 255, 147, 255, 246, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3673, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13049720887770176340" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4de19fc0dba1b6ff06b8fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bfae3b5fcfbe8c" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17406806477729770579" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03ad1616c89fcbbb5b7e9fc7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7760281954412169282" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7be3c6f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5052995739e04da66" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "843d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "860509a131" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6dad90ed5215e83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16884980162934870422" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e53c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47f02020f448fa758c6631e2" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12480428851629211213" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7036701503615815014" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2385416615587772458" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15797666438096692231" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d66933004158c8a991" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16926274675483363547" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e28903" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5641677340533897777" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13788293280673033419" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eb994a74bf9a7fc8ccf2b915" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4166920873656920434" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10565907374849738030" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22620a8116e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2619420874107373477" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15251584508062306966" + } + } + ] + }, + "cborHex": "9f9fbf1bb519ec01cd895b544b4de19fc0dba1b6ff06b8fc41b647bfae3b5fcfbe8cff1bf19166442b0d2c53ffbf4c03ad1616c89fcbbb5b7e9fc71b6bb20f52619c8842447be3c6f049b5052995739e04da6642843d45860509a13148c6dad90ed5215e831bea537fff6b40119642e53c4c47f02020f448fa758c6631e2ffd8669f1bad3363ea99e53e4d9fd8669f1b61a762bc497a4d669f1b211ab3c5fd6c782a1bdb3c95ed02dd240749d66933004158c8a9911beae635235ae048dbffff9f43e289031b4e4b43a67be4ba311bbf59dbaf6d6beccbff9f4ceb994a74bf9a7fc8ccf2b915ffd8669f1b39d3e075117b29729f1b92a1a4c6df99452effffbf4622620a8116e81b245a0d681e69c7a5ffffff1bd3a8834dc0e79296ff", + "cborBytes": [ + 159, 159, 191, 27, 181, 25, 236, 1, 205, 137, 91, 84, 75, 77, 225, 159, 192, 219, 161, 182, 255, 6, 184, 252, 65, + 182, 71, 191, 174, 59, 95, 207, 190, 140, 255, 27, 241, 145, 102, 68, 43, 13, 44, 83, 255, 191, 76, 3, 173, 22, + 22, 200, 159, 203, 187, 91, 126, 159, 199, 27, 107, 178, 15, 82, 97, 156, 136, 66, 68, 123, 227, 198, 240, 73, + 181, 5, 41, 149, 115, 158, 4, 218, 102, 66, 132, 61, 69, 134, 5, 9, 161, 49, 72, 198, 218, 217, 14, 213, 33, 94, + 131, 27, 234, 83, 127, 255, 107, 64, 17, 150, 66, 229, 60, 76, 71, 240, 32, 32, 244, 72, 250, 117, 140, 102, 49, + 226, 255, 216, 102, 159, 27, 173, 51, 99, 234, 153, 229, 62, 77, 159, 216, 102, 159, 27, 97, 167, 98, 188, 73, + 122, 77, 102, 159, 27, 33, 26, 179, 197, 253, 108, 120, 42, 27, 219, 60, 149, 237, 2, 221, 36, 7, 73, 214, 105, + 51, 0, 65, 88, 200, 169, 145, 27, 234, 230, 53, 35, 90, 224, 72, 219, 255, 255, 159, 67, 226, 137, 3, 27, 78, 75, + 67, 166, 123, 228, 186, 49, 27, 191, 89, 219, 175, 109, 107, 236, 203, 255, 159, 76, 235, 153, 74, 116, 191, 154, + 127, 200, 204, 242, 185, 21, 255, 216, 102, 159, 27, 57, 211, 224, 117, 17, 123, 41, 114, 159, 27, 146, 161, 164, + 198, 223, 153, 69, 46, 255, 255, 191, 70, 34, 98, 10, 129, 22, 232, 27, 36, 90, 13, 104, 30, 105, 199, 165, 255, + 255, 255, 27, 211, 168, 131, 77, 192, 231, 146, 150, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3674, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1402667806267241967" + } + } + ] + }, + "cborHex": "9f1b137746f02a6f75efff", + "cborBytes": [159, 27, 19, 119, 70, 240, 42, 111, 117, 239, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3675, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7518234254975396118" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "63" + }, + { + "_tag": "ByteArray", + "bytearray": "3d0ba511de" + }, + { + "_tag": "ByteArray", + "bytearray": "cd1c5848018013f797d1dd22" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11056597305142256404" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4541663298064032039" + } + } + ] + }, + "cborHex": "9f9fd8669f1b68562238b9fb69169f4163453d0ba511de4ccd1c5848018013f797d1dd22ffffa0ff1b9970ecab2d8ba3141b3f073ab4f2892127ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 104, 86, 34, 56, 185, 251, 105, 22, 159, 65, 99, 69, 61, 11, 165, 17, 222, 76, 205, + 28, 88, 72, 1, 128, 19, 247, 151, 209, 221, 34, 255, 255, 160, 255, 27, 153, 112, 236, 171, 45, 139, 163, 20, 27, + 63, 7, 58, 180, 242, 137, 33, 39, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3676, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "126b8b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "667168451465497383" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d0bab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cff3f3" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16755975309635135882" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4885b0c3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18292722213778423453" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eaa1c508" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1a174011eacf062396e7efc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6251371796856471439" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d8931c5419d5ed9c" + } + ] + }, + "cborHex": "9fbf43126b8b1b0942422bfaf2cb27435d0bab43cff3f3ffbf1be8892ec46404a98a444885b0c31bfddccdef3728fe9d41ec413144eaa1c5084ca1a174011eacf062396e7efc1b56c155872e867f8fff48d8931c5419d5ed9cff", + "cborBytes": [ + 159, 191, 67, 18, 107, 139, 27, 9, 66, 66, 43, 250, 242, 203, 39, 67, 93, 11, 171, 67, 207, 243, 243, 255, 191, + 27, 232, 137, 46, 196, 100, 4, 169, 138, 68, 72, 133, 176, 195, 27, 253, 220, 205, 239, 55, 40, 254, 157, 65, 236, + 65, 49, 68, 234, 161, 197, 8, 76, 161, 161, 116, 1, 30, 172, 240, 98, 57, 110, 126, 252, 27, 86, 193, 85, 135, 46, + 134, 127, 143, 255, 72, 216, 147, 28, 84, 25, 213, 237, 156, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3677, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "269545671014830001" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c98372a292b8f044" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11346278067354804044" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12858661754278971084" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12903668959681260008" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88243f839d76a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14829674911655430942" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13424526758852442598" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17523750376161937804" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ea9651b21d256f40cd3b101" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b03bd9e5c13954fb148c98372a292b8f0441b9d7613c97f7d1f4c1bb27324bcc6b306cc1bb3130a8d610929e84788243f839d76a71bcdcd96c2dbbe8b1e1bba4d7ff6032039e61bf330de1f4fc0098c4c3ea9651b21d256f40cd3b101ffff", + "cborBytes": [ + 159, 191, 27, 3, 189, 158, 92, 19, 149, 79, 177, 72, 201, 131, 114, 162, 146, 184, 240, 68, 27, 157, 118, 19, 201, + 127, 125, 31, 76, 27, 178, 115, 36, 188, 198, 179, 6, 204, 27, 179, 19, 10, 141, 97, 9, 41, 232, 71, 136, 36, 63, + 131, 157, 118, 167, 27, 205, 205, 150, 194, 219, 190, 139, 30, 27, 186, 77, 127, 246, 3, 32, 57, 230, 27, 243, 48, + 222, 31, 79, 192, 9, 140, 76, 62, 169, 101, 27, 33, 210, 86, 244, 12, 211, 177, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3678, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "61b3127f3b5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13635149880510366767" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4661b3127f3b5c1bbd39c892ff07c42fffff", + "cborBytes": [159, 191, 70, 97, 179, 18, 127, 59, 92, 27, 189, 57, 200, 146, 255, 7, 196, 47, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3679, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10157925478770285444" + } + } + ] + }, + "cborHex": "9f1b8cf8336768fe1b84ff", + "cborBytes": [159, 27, 140, 248, 51, 103, 104, 254, 27, 132, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3680, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff0505" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8257001483637945133" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12666091085449108430" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "71609e8d" + }, + { + "_tag": "ByteArray", + "bytearray": "d0bbb63eab5b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2671110926837995648" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13275037425367266399" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6c0505" + } + ] + } + ] + }, + "cborHex": "9f9f43ff0505ffd8669f1b7296c31a161cf32d80ff1bffffffffffffffebd8669f1bafc6febc00ef9bce9fd8669f1bfffffffffffffff39f4471609e8d46d0bbb63eab5b1b2511b13c5dd7d8801bb83a68344708345fffff436c0505ffffff", + "cborBytes": [ + 159, 159, 67, 255, 5, 5, 255, 216, 102, 159, 27, 114, 150, 195, 26, 22, 28, 243, 45, 128, 255, 27, 255, 255, 255, + 255, 255, 255, 255, 235, 216, 102, 159, 27, 175, 198, 254, 188, 0, 239, 155, 206, 159, 216, 102, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 243, 159, 68, 113, 96, 158, 141, 70, 208, 187, 182, 62, 171, 91, 27, 37, 17, 177, + 60, 93, 215, 216, 128, 27, 184, 58, 104, 52, 71, 8, 52, 95, 255, 255, 67, 108, 5, 5, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3681, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17049358926378542741" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5351125222553788041" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15238819762233250444" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9577857288507665360" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f133eec5c9ef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10588407948976472277" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1761d362624d9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15872042460743706193" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5756193640711174893" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15820545124778699022" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b1864ec50645eb52f3eec9" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5368505732221819107" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03eec79c5373df6eb8ac8f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8180034804952854684" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12372521558556449791" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12885585691987001014" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64424166d9f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15134734597507755234" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18380473245498201230" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16563524221309020932" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17484570399708880799" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7767191843442186391" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10903539358296514378" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "51c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b17683ca47" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "560cfff9c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14560377240700532463" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6842e21e9ab03a6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "256aa5a7f932489882aa09ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a53cdaca6178f37442" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11e5915dae5250a253ae5f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e05609" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d696d79b3c42f2d1" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bec9b7d9cb6eda6959f1b4a430409d6f39e89ffff1bd37b29d5c41d928cbf1b84eb62754ee2abd046f133eec5c9ef1b92f194ee07aa40d547c1761d362624d91bdc44d2863c8ba6511b4fe21b9e5cf3baedffd8669f1bdb8dddf85b78e90e9f80804bb1864ec50645eb52f3eec9bf1b4a80c38517bad8e34b03eec79c5373df6eb8ac8f1b71855250bf8bf09c1babb406ce199e9bff1bb2d2cbea85bdbeb64664424166d9f81bd20960edde43ace21bff148f08697dd48e1be5dd75859fb3eb041bf2a5ac242cf51f9fffd8669f1b6bca9bd44aaed8979f1b97512746e5c11f4affffffffbf4251c045b17683ca4745560cfff9c71bca10d9f4cba336ef486842e21e9ab03a6d4c256aa5a7f932489882aa09ff49a53cdaca6178f374424b11e5915dae5250a253ae5f43e0560948d696d79b3c42f2d1ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 236, 155, 125, 156, 182, 237, 166, 149, 159, 27, 74, 67, 4, 9, 214, 243, 158, 137, 255, + 255, 27, 211, 123, 41, 213, 196, 29, 146, 140, 191, 27, 132, 235, 98, 117, 78, 226, 171, 208, 70, 241, 51, 238, + 197, 201, 239, 27, 146, 241, 148, 238, 7, 170, 64, 213, 71, 193, 118, 29, 54, 38, 36, 217, 27, 220, 68, 210, 134, + 60, 139, 166, 81, 27, 79, 226, 27, 158, 92, 243, 186, 237, 255, 216, 102, 159, 27, 219, 141, 221, 248, 91, 120, + 233, 14, 159, 128, 128, 75, 177, 134, 78, 197, 6, 69, 235, 82, 243, 238, 201, 191, 27, 74, 128, 195, 133, 23, 186, + 216, 227, 75, 3, 238, 199, 156, 83, 115, 223, 110, 184, 172, 143, 27, 113, 133, 82, 80, 191, 139, 240, 156, 27, + 171, 180, 6, 206, 25, 158, 155, 255, 27, 178, 210, 203, 234, 133, 189, 190, 182, 70, 100, 66, 65, 102, 217, 248, + 27, 210, 9, 96, 237, 222, 67, 172, 226, 27, 255, 20, 143, 8, 105, 125, 212, 142, 27, 229, 221, 117, 133, 159, 179, + 235, 4, 27, 242, 165, 172, 36, 44, 245, 31, 159, 255, 216, 102, 159, 27, 107, 202, 155, 212, 74, 174, 216, 151, + 159, 27, 151, 81, 39, 70, 229, 193, 31, 74, 255, 255, 255, 255, 191, 66, 81, 192, 69, 177, 118, 131, 202, 71, 69, + 86, 12, 255, 249, 199, 27, 202, 16, 217, 244, 203, 163, 54, 239, 72, 104, 66, 226, 30, 154, 176, 58, 109, 76, 37, + 106, 165, 167, 249, 50, 72, 152, 130, 170, 9, 255, 73, 165, 60, 218, 202, 97, 120, 243, 116, 66, 75, 17, 229, 145, + 93, 174, 82, 80, 162, 83, 174, 95, 67, 224, 86, 9, 72, 214, 150, 215, 155, 60, 66, 242, 209, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3682, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4928297893487803671" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5541449d8241" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9657784443387646813" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14211202551089456686" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14966593714810304570" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10496397249360304718" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15666239553268543592" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2630348382244839363" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17472438985242721988" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9053073606191826650" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3261832286148749912" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13947699221692573603" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2766774423835679263" + } + }, + { + "_tag": "ByteArray", + "bytearray": "304281b7e754c60ddaf9b3" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "47463b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6ef8b0e1bd" + } + ] + }, + "cborHex": "9fbf1b4464d4d2a8a57d17465541449d82411b860757c8396a135d1bc538556d10cfe62e1bcfb405afecdcb83a1b91aab1af9d821a4eff9f1bd969a9ded2bef0681b2480dfeadf3a1fc3d8669f1bf27a92af23143ec49f1b7da2fa7ac68746da1b2d445b2eaccbea581bc1902e8b46fa67a3ffff9f1b26658eadf25c9a1f4b304281b7e754c60ddaf9b3ff4347463bff456ef8b0e1bdff", + "cborBytes": [ + 159, 191, 27, 68, 100, 212, 210, 168, 165, 125, 23, 70, 85, 65, 68, 157, 130, 65, 27, 134, 7, 87, 200, 57, 106, + 19, 93, 27, 197, 56, 85, 109, 16, 207, 230, 46, 27, 207, 180, 5, 175, 236, 220, 184, 58, 27, 145, 170, 177, 175, + 157, 130, 26, 78, 255, 159, 27, 217, 105, 169, 222, 210, 190, 240, 104, 27, 36, 128, 223, 234, 223, 58, 31, 195, + 216, 102, 159, 27, 242, 122, 146, 175, 35, 20, 62, 196, 159, 27, 125, 162, 250, 122, 198, 135, 70, 218, 27, 45, + 68, 91, 46, 172, 203, 234, 88, 27, 193, 144, 46, 139, 70, 250, 103, 163, 255, 255, 159, 27, 38, 101, 142, 173, + 242, 92, 154, 31, 75, 48, 66, 129, 183, 231, 84, 198, 13, 218, 249, 179, 255, 67, 71, 70, 59, 255, 69, 110, 248, + 176, 225, 189, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3683, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2559835993674494982" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "191548330041889014" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01f0b94f80530c1b96f0cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df0da461fee90088da" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11813521272038692398" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "969795183973100302" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1978180173618321233" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "589559045923775768" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9812bba76c00" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ad12ea" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf1b23865d460e3a34061b02a88430f97750f64b01f0b94f80530c1b96f0cc49df0da461fee90088daff80d8669f1ba3f20f019663162e9fd9050b9f1b0d756794e599eb0e1b1b73e863163d97511b082e88d42267a518469812bba76c00ff43ad12eaffff80ff", + "cborBytes": [ + 159, 191, 27, 35, 134, 93, 70, 14, 58, 52, 6, 27, 2, 168, 132, 48, 249, 119, 80, 246, 75, 1, 240, 185, 79, 128, + 83, 12, 27, 150, 240, 204, 73, 223, 13, 164, 97, 254, 233, 0, 136, 218, 255, 128, 216, 102, 159, 27, 163, 242, 15, + 1, 150, 99, 22, 46, 159, 217, 5, 11, 159, 27, 13, 117, 103, 148, 229, 153, 235, 14, 27, 27, 115, 232, 99, 22, 61, + 151, 81, 27, 8, 46, 136, 212, 34, 103, 165, 24, 70, 152, 18, 187, 167, 108, 0, 255, 67, 173, 18, 234, 255, 255, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3684, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03f9" + } + ] + }, + "cborHex": "9f4203f9ff", + "cborBytes": [159, 66, 3, 249, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3685, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "06a898" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1708192679024133125" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6745782986955024550" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5388924476208687373" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "042cbc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9246230085572060410" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7299362430196711628" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12566142259885734350" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab16173490000dab68" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15081640697314823224" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8d8b535026e9fce5df17075" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12871842957570126903" + } + } + ] + }, + "cborHex": "9f4306a898bf1b17b4b830f12804051b5d9dd5e2cd53e8a61b4ac94e4265d3a90d43042cbc1b80513546320d64fa1b654c8b74e2b500cc1bae63e7ce9d8379ce49ab16173490000dab681bd14cc04ee9864c384ce8d8b535026e9fce5df17075ff1bb2a1f8f8d294b437ff", + "cborBytes": [ + 159, 67, 6, 168, 152, 191, 27, 23, 180, 184, 48, 241, 40, 4, 5, 27, 93, 157, 213, 226, 205, 83, 232, 166, 27, 74, + 201, 78, 66, 101, 211, 169, 13, 67, 4, 44, 188, 27, 128, 81, 53, 70, 50, 13, 100, 250, 27, 101, 76, 139, 116, 226, + 181, 0, 204, 27, 174, 99, 231, 206, 157, 131, 121, 206, 73, 171, 22, 23, 52, 144, 0, 13, 171, 104, 27, 209, 76, + 192, 78, 233, 134, 76, 56, 76, 232, 216, 181, 53, 2, 110, 159, 206, 93, 241, 112, 117, 255, 27, 178, 161, 248, + 248, 210, 148, 180, 55, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3686, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15661006451656309522" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d499295f9" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff49f1bd957126468133b12456d499295f9ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 27, 217, 87, 18, 100, 104, 19, 59, 18, 69, + 109, 73, 146, 149, 249, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3687, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9234907135328959974" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10007262534026392219" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "de43fdf258ff8de373b60ab6" + }, + { + "_tag": "ByteArray", + "bytearray": "7a3cc64de0606c8e" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2163969717356907602" + } + } + ] + }, + "cborHex": "9f1b8028fb1c6700bde61b8ae0f04102b7f29b9f4cde43fdf258ff8de373b60ab6487a3cc64de0606c8eff1b1e07f6fe23c2cc52ff", + "cborBytes": [ + 159, 27, 128, 40, 251, 28, 103, 0, 189, 230, 27, 138, 224, 240, 65, 2, 183, 242, 155, 159, 76, 222, 67, 253, 242, + 88, 255, 141, 227, 115, 182, 10, 182, 72, 122, 60, 198, 77, 224, 96, 108, 142, 255, 27, 30, 7, 246, 254, 35, 194, + 204, 82, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3688, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bf62726aed1c" + }, + { + "_tag": "ByteArray", + "bytearray": "296dbc60899fe22b97d3c741" + } + ] + }, + "cborHex": "9f46bf62726aed1c4c296dbc60899fe22b97d3c741ff", + "cborBytes": [159, 70, 191, 98, 114, 106, 237, 28, 76, 41, 109, 188, 96, 137, 159, 226, 43, 151, 211, 199, 65, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3689, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11150588503236777381" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11129469304543931841" + } + }, + { + "_tag": "ByteArray", + "bytearray": "97193526d8cb688bf3689eff" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10555918323287112103" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2989610923570199939" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15974694090658029723" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9442228665543563039" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57f42dc9da" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "377fbb8aa31f2dcee50e3f4f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3895462759882709536" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18383524250381064712" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1473543910077516541" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2bffa2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2805639582896796189" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23eb8196d33818" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5650112460537980711" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8201492485087162473" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15101798405548032909" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d088914" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17285475982134398774" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f44f02" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16458700113975245" + }, + "fields": [] + } + ] + }, + "cborHex": "9f9fd8669f1b9abed92a53fb95a59f1b9a73d15db3f46dc14c97193526d8cb688bf3689effffff1b927e27c99190b9a7bf1b297d3b4b9c077d831bddb183a34d34209b1b830988f1b9bc171f4557f42dc9daff9f4c377fbb8aa31f2dcee50e3f4f1b360f76bdb6925a201bff1f65e7d7be1a08ffffbf1b14731461091c4afd432bffa21b26efa255f256b21d4723eb8196d338181b4e693b58e75fe7271b71d18df639a7f0691bd1945da31840438d440d0889141befe258d2c8aacf3643f44f02ffd8669f1b003a7919bdc217cd80ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 154, 190, 217, 42, 83, 251, 149, 165, 159, 27, 154, 115, 209, 93, 179, 244, 109, 193, + 76, 151, 25, 53, 38, 216, 203, 104, 139, 243, 104, 158, 255, 255, 255, 27, 146, 126, 39, 201, 145, 144, 185, 167, + 191, 27, 41, 125, 59, 75, 156, 7, 125, 131, 27, 221, 177, 131, 163, 77, 52, 32, 155, 27, 131, 9, 136, 241, 185, + 188, 23, 31, 69, 87, 244, 45, 201, 218, 255, 159, 76, 55, 127, 187, 138, 163, 31, 45, 206, 229, 14, 63, 79, 27, + 54, 15, 118, 189, 182, 146, 90, 32, 27, 255, 31, 101, 231, 215, 190, 26, 8, 255, 255, 191, 27, 20, 115, 20, 97, 9, + 28, 74, 253, 67, 43, 255, 162, 27, 38, 239, 162, 85, 242, 86, 178, 29, 71, 35, 235, 129, 150, 211, 56, 24, 27, 78, + 105, 59, 88, 231, 95, 231, 39, 27, 113, 209, 141, 246, 57, 167, 240, 105, 27, 209, 148, 93, 163, 24, 64, 67, 141, + 68, 13, 8, 137, 20, 27, 239, 226, 88, 210, 200, 170, 207, 54, 67, 244, 79, 2, 255, 216, 102, 159, 27, 0, 58, 121, + 25, 189, 194, 23, 205, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3690, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "148236695342240787" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16850639485123568767" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f3426ebfe41763a739" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13794938238451449159" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8063590475313967919" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15549090555139617985" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff2b" + }, + { + "_tag": "ByteArray", + "bytearray": "ab49204fa3fa77" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "db4b10c1cef699259a" + } + ] + } + ] + }, + "cborHex": "9f1b020ea47d308d5413d8669f1be9d97f554cf6247f9f9f49f3426ebfe41763a739ffd8669f1bbf71773d3959fd479f1b6fe7a0d0874ff32f1bd7c9777a2f7a74c142ff2b47ab49204fa3fa77ffff49db4b10c1cef699259affffff", + "cborBytes": [ + 159, 27, 2, 14, 164, 125, 48, 141, 84, 19, 216, 102, 159, 27, 233, 217, 127, 85, 76, 246, 36, 127, 159, 159, 73, + 243, 66, 110, 191, 228, 23, 99, 167, 57, 255, 216, 102, 159, 27, 191, 113, 119, 61, 57, 89, 253, 71, 159, 27, 111, + 231, 160, 208, 135, 79, 243, 47, 27, 215, 201, 119, 122, 47, 122, 116, 193, 66, 255, 43, 71, 171, 73, 32, 79, 163, + 250, 119, 255, 255, 73, 219, 75, 16, 193, 206, 246, 153, 37, 154, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3691, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2515596788665093393" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16517567321549133957" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7a5bd6b68e9f9cbf" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17046720734056208204" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3684607131780056410" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a580f8f2" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5209103690883210819" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47ea4d21bab70c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14170642316335581274" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1620821574659466890" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18416622713059277584" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12161181560404544346" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "54bc" + } + ] + }, + "cborHex": "9f9f1b22e931f37a7f0d11809f1be53a2ff712895885487a5bd6b68e9f9cbfffd8669f1bec921e30b2b4d74c9f1b33225aaa1a9f055a44a580f8f2ffffffbf1b484a743535451e434747ea4d21bab70c1bc4a83c1b804d085a1b167e50a279dde68a1bff94fcc83649fb101ba8c532324cf18b5aff4254bcff", + "cborBytes": [ + 159, 159, 27, 34, 233, 49, 243, 122, 127, 13, 17, 128, 159, 27, 229, 58, 47, 247, 18, 137, 88, 133, 72, 122, 91, + 214, 182, 142, 159, 156, 191, 255, 216, 102, 159, 27, 236, 146, 30, 48, 178, 180, 215, 76, 159, 27, 51, 34, 90, + 170, 26, 159, 5, 90, 68, 165, 128, 248, 242, 255, 255, 255, 191, 27, 72, 74, 116, 53, 53, 69, 30, 67, 71, 71, 234, + 77, 33, 186, 183, 12, 27, 196, 168, 60, 27, 128, 77, 8, 90, 27, 22, 126, 80, 162, 121, 221, 230, 138, 27, 255, + 148, 252, 200, 54, 73, 251, 16, 27, 168, 197, 50, 50, 76, 241, 139, 90, 255, 66, 84, 188, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3692, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10148761591072579601" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17863112437308736734" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b8cd7a4e58a0260119f1bf7e6861e70a644deffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 140, 215, 164, 229, 138, 2, 96, 17, 159, 27, 247, 230, 134, 30, 112, 166, 68, 222, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3693, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2641102004941174372" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7486d3e91f" + }, + { + "_tag": "ByteArray", + "bytearray": "35" + }, + { + "_tag": "ByteArray", + "bytearray": "9f10cd0580c85c22" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18146865417069827298" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fb" + }, + { + "_tag": "ByteArray", + "bytearray": "8f9e99ae4902ffdeca2585" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ed6f" + }, + { + "_tag": "ByteArray", + "bytearray": "6f" + }, + { + "_tag": "ByteArray", + "bytearray": "5be789a11e714e41daaa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9183269651934720486" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3633031214801916316" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f1b24a71447c41736649f457486d3e91f4135489f10cd0580c85c22ff1bfbd69df35b4494e29f41fb4b8f9e99ae4902ffdeca2585ff9f42ed6f416f4a5be789a11e714e41daaa1b7f718717e831b1e61b326b1ea4282c919cffffff", + "cborBytes": [ + 159, 159, 27, 36, 167, 20, 71, 196, 23, 54, 100, 159, 69, 116, 134, 211, 233, 31, 65, 53, 72, 159, 16, 205, 5, + 128, 200, 92, 34, 255, 27, 251, 214, 157, 243, 91, 68, 148, 226, 159, 65, 251, 75, 143, 158, 153, 174, 73, 2, 255, + 222, 202, 37, 133, 255, 159, 66, 237, 111, 65, 111, 74, 91, 231, 137, 161, 30, 113, 78, 65, 218, 170, 27, 127, + 113, 135, 23, 232, 49, 177, 230, 27, 50, 107, 30, 164, 40, 44, 145, 156, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3694, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8143887484716409870" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "49e86cbc15843727d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11641419997847518084" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8d53600ce03da2096419" + }, + { + "_tag": "ByteArray", + "bytearray": "c6ada38cce75b26987" + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf111b7104e684e945640eff809f9f4949e86cbc15843727d31ba18ea1cf24d47b844a8d53600ce03da209641949c6ada38cce75b26987ffffff", + "cborBytes": [ + 159, 191, 17, 27, 113, 4, 230, 132, 233, 69, 100, 14, 255, 128, 159, 159, 73, 73, 232, 108, 188, 21, 132, 55, 39, + 211, 27, 161, 142, 161, 207, 36, 212, 123, 132, 74, 141, 83, 96, 12, 224, 61, 162, 9, 100, 25, 73, 198, 173, 163, + 140, 206, 117, 178, 105, 135, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3695, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02c2ff" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2543fe087524a3198acd" + }, + { + "_tag": "ByteArray", + "bytearray": "10d8c74bd1cf" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6375428775922523835" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12053373758972020328" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6724807199172569054" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17425375604080509660" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9373692055199346079" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7dbc1b731ebae644" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15858009097305564169" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14329558108484513538" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bea06d7f76" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2191f620af" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1876789953960824681" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8982162581418643451" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10820250746215592389" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16431057827286696032" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4302c2ffd905089f4a2543fe087524a3198acd4610d8c74bd1cfbf1b587a12b177aa5ebb1ba7462f92808ac6681b5d535084a1aba7de1bf1d35ec9cefa02dc1b82160b42a00eed9f487dbc1b731ebae6441bdc12f74131cfa4091bc6dcd12dac89af02ff80ffbf45bea06d7f76452191f620afff9f1b1a0bb284fbdb4f69d8669f1b7ca70d473c438ffb9f1b962940b9bcd5f1c51be406d809d7534060ffffffff", + "cborBytes": [ + 159, 67, 2, 194, 255, 217, 5, 8, 159, 74, 37, 67, 254, 8, 117, 36, 163, 25, 138, 205, 70, 16, 216, 199, 75, 209, + 207, 191, 27, 88, 122, 18, 177, 119, 170, 94, 187, 27, 167, 70, 47, 146, 128, 138, 198, 104, 27, 93, 83, 80, 132, + 161, 171, 167, 222, 27, 241, 211, 94, 201, 206, 250, 2, 220, 27, 130, 22, 11, 66, 160, 14, 237, 159, 72, 125, 188, + 27, 115, 30, 186, 230, 68, 27, 220, 18, 247, 65, 49, 207, 164, 9, 27, 198, 220, 209, 45, 172, 137, 175, 2, 255, + 128, 255, 191, 69, 190, 160, 109, 127, 118, 69, 33, 145, 246, 32, 175, 255, 159, 27, 26, 11, 178, 132, 251, 219, + 79, 105, 216, 102, 159, 27, 124, 167, 13, 71, 60, 67, 143, 251, 159, 27, 150, 41, 64, 185, 188, 213, 241, 197, 27, + 228, 6, 216, 9, 215, 83, 64, 96, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3696, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5556da3de9cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "261775422953699382" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d92ef02b4f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17750138580011884668" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea6e885a986fd3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70820cabeb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5867f684473d9a95b08d6b2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5192da68505a3e9432b577" + } + } + ] + } + ] + }, + "cborHex": "9fbf465556da3de9cc1b03a2035c3815383645d92ef02b4f1bf65528fe8790a07c47ea6e885a986fd34570820cabeb4cf5867f684473d9a95b08d6b24b5192da68505a3e9432b577ffff", + "cborBytes": [ + 159, 191, 70, 85, 86, 218, 61, 233, 204, 27, 3, 162, 3, 92, 56, 21, 56, 54, 69, 217, 46, 240, 43, 79, 27, 246, 85, + 40, 254, 135, 144, 160, 124, 71, 234, 110, 136, 90, 152, 111, 211, 69, 112, 130, 12, 171, 235, 76, 245, 134, 127, + 104, 68, 115, 217, 169, 91, 8, 214, 178, 75, 81, 146, 218, 104, 80, 90, 62, 148, 50, 181, 119, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3697, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10323510024423158750" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "526b41f709" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a06096" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17166332792973032245" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c767" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "455066167889475945" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf1b8f4479abc0ed33de45526b41f70943a060961bee3b10b95d4bfb3542c7671b0650b844c659b969ff80ff", + "cborBytes": [ + 159, 191, 27, 143, 68, 121, 171, 192, 237, 51, 222, 69, 82, 107, 65, 247, 9, 67, 160, 96, 150, 27, 238, 59, 16, + 185, 93, 75, 251, 53, 66, 199, 103, 27, 6, 80, 184, 68, 198, 89, 185, 105, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3698, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7622700565134717310" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17225912568942438628" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8fd20c2bb28bff01274c47" + }, + { + "_tag": "ByteArray", + "bytearray": "72" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8b" + }, + { + "_tag": "ByteArray", + "bytearray": "0cb90ca98403b33b4d25a0ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14324831088773281881" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "26732a01afdc5253fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9289207211206691954" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86a032699bc36e0f0dab3c4e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11958873209496143589" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe26a5a3d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df4aae2a" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2973914151596267878" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b69c945c6f606317e9f9f1bef0ebc36f3c028e44b8fd20c2bb28bff01274c474172ff418b4c0cb90ca98403b33b4d25a0ca1bc6cc05faa1cdb859bf4926732a01afdc5253fc1b80e9e4be04f8cc724c86a032699bc36e0f0dab3c4e1ba5f673d2bdf406e545fe26a5a3d844df4aae2affffff1b2945772a1667196680ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 105, 201, 69, 198, 246, 6, 49, 126, 159, 159, 27, 239, 14, 188, 54, 243, 192, 40, 228, 75, + 143, 210, 12, 43, 178, 139, 255, 1, 39, 76, 71, 65, 114, 255, 65, 139, 76, 12, 185, 12, 169, 132, 3, 179, 59, 77, + 37, 160, 202, 27, 198, 204, 5, 250, 161, 205, 184, 89, 191, 73, 38, 115, 42, 1, 175, 220, 82, 83, 252, 27, 128, + 233, 228, 190, 4, 248, 204, 114, 76, 134, 160, 50, 105, 155, 195, 110, 15, 13, 171, 60, 78, 27, 165, 246, 115, + 210, 189, 244, 6, 229, 69, 254, 38, 165, 163, 216, 68, 223, 74, 174, 42, 255, 255, 255, 27, 41, 69, 119, 42, 22, + 103, 25, 102, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3699, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9096869706832326116" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4035400714891387053" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bd1a50a94d5055" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7e3e92cd13c0ade49fbf1b38009f91d97560ad1bffffffffffffffebff47bd1a50a94d5055ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 126, 62, 146, 205, 19, 192, 173, 228, 159, 191, 27, 56, 0, 159, 145, 217, 117, 96, 173, + 27, 255, 255, 255, 255, 255, 255, 255, 235, 255, 71, 189, 26, 80, 169, 77, 80, 85, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3700, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "602943f5fdd7266bf6" + } + ] + }, + "cborHex": "9fa049602943f5fdd7266bf6ff", + "cborBytes": [159, 160, 73, 96, 41, 67, 245, 253, 215, 38, 107, 246, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3701, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + "cborHex": "9f413c0fff", + "cborBytes": [159, 65, 60, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3702, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12199965445654836832" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10306866748193320984" + }, + "fields": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "293e9d1d14f5b3cef36a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8298274546072006228" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5720f87be8" + } + ] + }, + "cborHex": "9fd8669f1ba94efbef444bf6609f80a0d8669f1b8f0958b30959301880ffffff4a293e9d1d14f5b3cef36a1b732964bbc749ae54455720f87be8ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 169, 78, 251, 239, 68, 75, 246, 96, 159, 128, 160, 216, 102, 159, 27, 143, 9, 88, 179, 9, + 89, 48, 24, 128, 255, 255, 255, 74, 41, 62, 157, 29, 20, 245, 179, 206, 243, 106, 27, 115, 41, 100, 187, 199, 73, + 174, 84, 69, 87, 32, 248, 123, 232, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3703, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04ae" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12220638825990449643" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04196e932ca6004ea7325c7e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "94" + } + ] + }, + "cborHex": "9fbf114204aeffbf1ba9986e43b781e9eb4c04196e932ca6004ea7325c7eff4194ff", + "cborBytes": [ + 159, 191, 17, 66, 4, 174, 255, 191, 27, 169, 152, 110, 67, 183, 129, 233, 235, 76, 4, 25, 110, 147, 44, 166, 0, + 78, 167, 50, 92, 126, 255, 65, 148, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3704, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18213262568568814191" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc9e5e56a0113d" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12545196847817554830" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f759832d88568a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "122299011295625697" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13302229816495511181" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2089500406000090319" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "42" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2143039671666317162" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2672708189140072276" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b61561" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2055579364041304848" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15963841346853247396" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17292066688699008597" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17212031607810203540" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ac3dc4b18bff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5462885192855246286" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff00" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "85f5af35cd2a67538fdd" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf1bfcc281cee0767a6f47cc9e5e56a0113dff9fbf41f61bae197e10d783fb8e47f759832d88568a1b01b27e4d84a841e1ff1bb89b038a34d3168dd8669f1b1cff658c71ab7ccf9f41421b1dbd9b3a213d976a1b25175deff9f8b75443b615611b1c86e28a694e2b10ffffff1bdd8af51ff9e199a4d8669f1beff9c3093c4506559fd8669f1beedd6b8dd6529f949f46ac3dc4b18bff1b4bd01123a8e0d5ce42ff00ffff4a85f5af35cd2a67538fddffff80ff", + "cborBytes": [ + 159, 191, 27, 252, 194, 129, 206, 224, 118, 122, 111, 71, 204, 158, 94, 86, 160, 17, 61, 255, 159, 191, 65, 246, + 27, 174, 25, 126, 16, 215, 131, 251, 142, 71, 247, 89, 131, 45, 136, 86, 138, 27, 1, 178, 126, 77, 132, 168, 65, + 225, 255, 27, 184, 155, 3, 138, 52, 211, 22, 141, 216, 102, 159, 27, 28, 255, 101, 140, 113, 171, 124, 207, 159, + 65, 66, 27, 29, 189, 155, 58, 33, 61, 151, 106, 27, 37, 23, 93, 239, 249, 248, 183, 84, 67, 182, 21, 97, 27, 28, + 134, 226, 138, 105, 78, 43, 16, 255, 255, 255, 27, 221, 138, 245, 31, 249, 225, 153, 164, 216, 102, 159, 27, 239, + 249, 195, 9, 60, 69, 6, 85, 159, 216, 102, 159, 27, 238, 221, 107, 141, 214, 82, 159, 148, 159, 70, 172, 61, 196, + 177, 139, 255, 27, 75, 208, 17, 35, 168, 224, 213, 206, 66, 255, 0, 255, 255, 74, 133, 245, 175, 53, 205, 42, 103, + 83, 143, 221, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3705, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11802314162850894549" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "150503050177ff01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1ba3ca3e33244a12d59fbf48150503050177ff0100ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 163, 202, 62, 51, 36, 74, 18, 213, 159, 191, 72, 21, 5, 3, 5, 1, 119, 255, 1, 0, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3706, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17117142152969106253" + } + } + ] + } + ] + }, + "cborHex": "9f9f1bed8c4e18fd96b34dffff", + "cborBytes": [159, 159, 27, 237, 140, 78, 24, 253, 150, 179, 77, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3707, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15833468585676423073" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "30169d7dfa051be8ff02" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f674d8729fcff5" + }, + { + "_tag": "ByteArray", + "bytearray": "2e73b9c6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14641575916814355039" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16262258591159467093" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28819a65873a42" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fbf1bdbbbc7ca138cbfa11bfffffffffffffffe41fd12ffd905019fd8669f1bfffffffffffffff580ff4a30169d7dfa051be8ff029f47f674d8729fcff5442e73b9c61bcb3153b8d1a24a5f1be1af26070b9abc554728819a65873a42ffd9050780ffff", + "cborBytes": [ + 159, 191, 27, 219, 187, 199, 202, 19, 140, 191, 161, 27, 255, 255, 255, 255, 255, 255, 255, 254, 65, 253, 18, 255, + 217, 5, 1, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 128, 255, 74, 48, 22, 157, 125, 250, 5, + 27, 232, 255, 2, 159, 71, 246, 116, 216, 114, 159, 207, 245, 68, 46, 115, 185, 198, 27, 203, 49, 83, 184, 209, + 162, 74, 95, 27, 225, 175, 38, 7, 11, 154, 188, 85, 71, 40, 129, 154, 101, 135, 58, 66, 255, 217, 5, 7, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3708, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ebd21247632ed4df" + }, + { + "_tag": "ByteArray", + "bytearray": "588daeb7" + }, + { + "_tag": "ByteArray", + "bytearray": "4359db" + } + ] + }, + "cborHex": "9f48ebd21247632ed4df44588daeb7434359dbff", + "cborBytes": [159, 72, 235, 210, 18, 71, 99, 46, 212, 223, 68, 88, 141, 174, 183, 67, 67, 89, 219, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3709, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "28c63511807bc027af" + } + ] + }, + "cborHex": "9f4928c63511807bc027afff", + "cborBytes": [159, 73, 40, 198, 53, 17, 128, 123, 192, 39, 175, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3710, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17c266b05c657084c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8636672098126074730" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e8391d89b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "640b7921ec2d311b06" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e88df46115f516a8d8f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f5d4aafd4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6294111929151443714" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abf86239" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5169951582773549106" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12859163609407844736" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2889511644260447120" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17827525374551287136" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12252697093323133208" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf4917c266b05c657084c61b77db9f83a255136a452e8391d89b49640b7921ec2d311b06413c4a7e88df46115f516a8d8f455f5d4aafd41b57592d73b19ed30244abf862391b47bf5b92ad2f9832ffd8669f1bb274ed2c076271809f1b28199b87fa7fb3901bf76817dfb66465601baa0a5316bbfc9118ffffffff", + "cborBytes": [ + 159, 159, 191, 73, 23, 194, 102, 176, 92, 101, 112, 132, 198, 27, 119, 219, 159, 131, 162, 85, 19, 106, 69, 46, + 131, 145, 216, 155, 73, 100, 11, 121, 33, 236, 45, 49, 27, 6, 65, 60, 74, 126, 136, 223, 70, 17, 95, 81, 106, 141, + 143, 69, 95, 93, 74, 175, 212, 27, 87, 89, 45, 115, 177, 158, 211, 2, 68, 171, 248, 98, 57, 27, 71, 191, 91, 146, + 173, 47, 152, 50, 255, 216, 102, 159, 27, 178, 116, 237, 44, 7, 98, 113, 128, 159, 27, 40, 25, 155, 135, 250, 127, + 179, 144, 27, 247, 104, 23, 223, 182, 100, 101, 96, 27, 170, 10, 83, 22, 187, 252, 145, 24, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3711, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "688955d3c876ab953287c1a8" + } + ] + }, + "cborHex": "9f4c688955d3c876ab953287c1a8ff", + "cborBytes": [159, 76, 104, 137, 85, 211, 200, 118, 171, 149, 50, 135, 193, 168, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3712, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d463bffa" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "627ee1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40e0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ab2e204f026967c18f3b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1999933237192293469" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e907badc41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5a1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f30d50fb7c61" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d46383832547fe35c17" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3e04e4b7f03aba" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15058709318103219371" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2792968355875252392" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15264317402794056188" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14262809856531713487" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ece26a2f099dfd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9997491063215774379" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7286808180844586008" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "10e306d1a82b59a5640e03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15818647491376858047" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8196478360277186463" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17423773579622100826" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "eea18cff744be1" + } + ] + }, + "cborHex": "9f9f44d463bffabf43627ee14240e04b6ab2e204f026967c18f3b81b1bc130aee157fc5d45e907badc4142c5a146f30d50fb7c614a3d46383832547fe35c17ff473e04e4b7f03ababf1bd0fb485721683cab1b26c29dec00d9e8a81bd3d5bfcdd45a59fc1bc5efadff35834dcf47ece26a2f099dfd1b8abe39272c1e5aabffd8669f1b651ff16eeda6e4189f4b10e306d1a82b59a5640e031bdb87201526a443bfffffffbf1b71bfbda4517f779f1bf1cdadc16c362f5affd8669f1bffffffffffffffed80ff47eea18cff744be1ff", + "cborBytes": [ + 159, 159, 68, 212, 99, 191, 250, 191, 67, 98, 126, 225, 66, 64, 224, 75, 106, 178, 226, 4, 240, 38, 150, 124, 24, + 243, 184, 27, 27, 193, 48, 174, 225, 87, 252, 93, 69, 233, 7, 186, 220, 65, 66, 197, 161, 70, 243, 13, 80, 251, + 124, 97, 74, 61, 70, 56, 56, 50, 84, 127, 227, 92, 23, 255, 71, 62, 4, 228, 183, 240, 58, 186, 191, 27, 208, 251, + 72, 87, 33, 104, 60, 171, 27, 38, 194, 157, 236, 0, 217, 232, 168, 27, 211, 213, 191, 205, 212, 90, 89, 252, 27, + 197, 239, 173, 255, 53, 131, 77, 207, 71, 236, 226, 106, 47, 9, 157, 253, 27, 138, 190, 57, 39, 44, 30, 90, 171, + 255, 216, 102, 159, 27, 101, 31, 241, 110, 237, 166, 228, 24, 159, 75, 16, 227, 6, 209, 168, 43, 89, 165, 100, 14, + 3, 27, 219, 135, 32, 21, 38, 164, 67, 191, 255, 255, 255, 191, 27, 113, 191, 189, 164, 81, 127, 119, 159, 27, 241, + 205, 173, 193, 108, 54, 47, 90, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 128, 255, 71, 238, + 161, 140, 255, 116, 75, 225, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3713, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17365462546811298759" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "24e4ae11ab7b05835c60" + }, + { + "_tag": "ByteArray", + "bytearray": "6dc30e91c7d301195c7cea" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "552605292296570984" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "26810c5f22317e344d0957" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15734850546167901802" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1137d07c4635eb2e9d4b46" + }, + { + "_tag": "ByteArray", + "bytearray": "f227a90f" + }, + { + "_tag": "ByteArray", + "bytearray": "f654fc9c" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "939a91564f0ab8528b2959" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5012e44bd02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bc2cce2889e5204a572" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1bf0fe842e1f09a3c79f4a24e4ae11ab7b05835c604b6dc30e91c7d301195c7cead8669f1b07ab3f95e45688689f4b26810c5f22317e344d09571bda5d6b347632ee6a4b1137d07c4635eb2e9d4b4644f227a90f44f654fc9cffff4b939a91564f0ab8528b2959bf46b5012e44bd024a8bc2cce2889e5204a572ffffff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 240, 254, 132, 46, 31, 9, 163, 199, 159, 74, 36, 228, 174, 17, 171, 123, 5, 131, 92, 96, + 75, 109, 195, 14, 145, 199, 211, 1, 25, 92, 124, 234, 216, 102, 159, 27, 7, 171, 63, 149, 228, 86, 136, 104, 159, + 75, 38, 129, 12, 95, 34, 49, 126, 52, 77, 9, 87, 27, 218, 93, 107, 52, 118, 50, 238, 106, 75, 17, 55, 208, 124, + 70, 53, 235, 46, 157, 75, 70, 68, 242, 39, 169, 15, 68, 246, 84, 252, 156, 255, 255, 75, 147, 154, 145, 86, 79, + 10, 184, 82, 139, 41, 89, 191, 70, 181, 1, 46, 68, 189, 2, 74, 139, 194, 204, 226, 136, 158, 82, 4, 165, 114, 255, + 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3714, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4274796671228115185" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "855a40b2" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2907728953841688038" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b3b5320ec7392f8f144855a40b2ff9f1b285a5413e4da1de6ffff", + "cborBytes": [ + 159, 191, 27, 59, 83, 32, 236, 115, 146, 248, 241, 68, 133, 90, 64, 178, 255, 159, 27, 40, 90, 84, 19, 228, 218, + 29, 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3715, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "70" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1761199995632816524" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b789c0d39683" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bdce01e0302" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba74949b73448d1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16880061998946161203" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "baf99e55d1b745a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d294ea06375d95f62b2d3d87" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe0c6f8ce01e035d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12516038211775594299" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1648899392164135162" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf41701b18710a10961d118c46b789c0d39683468bdce01e030248ba74949b73448d1e1bea4206f421c1923348baf99e55d1b745a14cd294ea06375d95f62b2d3d8748fe0c6f8ce01e035d1badb1e670d8197f3bffd8669f1b16e21142cc4d00fa80ffff", + "cborBytes": [ + 159, 191, 65, 112, 27, 24, 113, 10, 16, 150, 29, 17, 140, 70, 183, 137, 192, 211, 150, 131, 70, 139, 220, 224, 30, + 3, 2, 72, 186, 116, 148, 155, 115, 68, 141, 30, 27, 234, 66, 6, 244, 33, 193, 146, 51, 72, 186, 249, 158, 85, 209, + 183, 69, 161, 76, 210, 148, 234, 6, 55, 93, 149, 246, 43, 45, 61, 135, 72, 254, 12, 111, 140, 224, 30, 3, 93, 27, + 173, 177, 230, 112, 216, 25, 127, 59, 255, 216, 102, 159, 27, 22, 226, 17, 66, 204, 77, 0, 250, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3716, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "ea60d474291ed1" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f5dbb17c205a0bfcf06f428" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7389c5c215" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c618e8810594b3b568d18" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12208945828294222941" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc9915e013" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79538ead1d97c251" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7bb61a5ba22d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16520276100045409562" + } + } + } + ] + } + ] + }, + "cborHex": "9f8047ea60d474291ed1bf4c2f5dbb17c205a0bfcf06f428457389c5c2154b7c618e8810594b3b568d181ba96ee38b8976e45d45bc9915e0134879538ead1d97c25147f7bb61a5ba22d91be543cf95b6950d1affff", + "cborBytes": [ + 159, 128, 71, 234, 96, 212, 116, 41, 30, 209, 191, 76, 47, 93, 187, 23, 194, 5, 160, 191, 207, 6, 244, 40, 69, + 115, 137, 197, 194, 21, 75, 124, 97, 142, 136, 16, 89, 75, 59, 86, 141, 24, 27, 169, 110, 227, 139, 137, 118, 228, + 93, 69, 188, 153, 21, 224, 19, 72, 121, 83, 142, 173, 29, 151, 194, 81, 71, 247, 187, 97, 165, 186, 34, 217, 27, + 229, 67, 207, 149, 182, 149, 13, 26, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3717, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "43af3ddd809f8785f01f94b2" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3500029481330349299" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa91" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dee43d89" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4c43af3ddd809f8785f01f94b29f14bf1b30929a44f21714f342aa9144dee43d8913ffffff", + "cborBytes": [ + 159, 76, 67, 175, 61, 221, 128, 159, 135, 133, 240, 31, 148, 178, 159, 20, 191, 27, 48, 146, 154, 68, 242, 23, 20, + 243, 66, 170, 145, 68, 222, 228, 61, 137, 19, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3718, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5890480411433472166" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "21c656b018ae1f" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3cc89ab842df72dd" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9711953642457983024" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ea1f2775" + }, + { + "_tag": "ByteArray", + "bytearray": "4f0f88" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8623984252983453416" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b6b6" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ec8bdc" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11856193813343506878" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16286343621552060146" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9203475215185171829" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14425344169443538902" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "15" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "375ae7" + }, + { + "_tag": "ByteArray", + "bytearray": "ff" + } + ] + }, + "cborHex": "9fd905069fd8669f1b51bf30b99fe390a69f4721c656b018ae1fffff483cc89ab842df72ddd8669f1b86c7ca61b5c4e8309f44ea1f2775434f0f881b77ae8bfc7ba426e842b6b6ffff43ec8bdcff9f1ba489a974d88611be9f1be204b73c2c8f36f21b7fb94ff2343955751bc8311e17e66f37d6ff804115ff43375ae741ffff", + "cborBytes": [ + 159, 217, 5, 6, 159, 216, 102, 159, 27, 81, 191, 48, 185, 159, 227, 144, 166, 159, 71, 33, 198, 86, 176, 24, 174, + 31, 255, 255, 72, 60, 200, 154, 184, 66, 223, 114, 221, 216, 102, 159, 27, 134, 199, 202, 97, 181, 196, 232, 48, + 159, 68, 234, 31, 39, 117, 67, 79, 15, 136, 27, 119, 174, 139, 252, 123, 164, 38, 232, 66, 182, 182, 255, 255, 67, + 236, 139, 220, 255, 159, 27, 164, 137, 169, 116, 216, 134, 17, 190, 159, 27, 226, 4, 183, 60, 44, 143, 54, 242, + 27, 127, 185, 79, 242, 52, 57, 85, 117, 27, 200, 49, 30, 23, 230, 111, 55, 214, 255, 128, 65, 21, 255, 67, 55, 90, + 231, 65, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3719, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1695446813924444319" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + }, + "cborHex": "9f1b17876fe4f788c89f07ff", + "cborBytes": [159, 27, 23, 135, 111, 228, 247, 136, 200, 159, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3720, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "257113342990664512" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17979295569477911648" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7619811787713731757" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1745905888330823705" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6887703644138343564" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16337425298787925914" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e16f20e77c4fab733b5bd962" + }, + { + "_tag": "ByteArray", + "bytearray": "ab74b6ce30de42acb9153690" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13526600717067187389" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2052025497164900645" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bea05027775bbe" + }, + { + "_tag": "ByteArray", + "bytearray": "7320bdeb7a5d469367d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16343235156754185614" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f4" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "604c" + }, + { + "_tag": "ByteArray", + "bytearray": "499e9cefa9f11343" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6060869858680623679" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12390649549398890032" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b0391733923f8c3401bf9834a0fe27c44601b69bf02730e02dcad1b183ab427bd38b819ff9fd8669f1b5f9609f8c3078c8c9f1be2ba31bff6bbff9a4ce16f20e77c4fab733b5bd9624cab74b6ce30de42acb91536901bbbb823af675574bdffff1b1c7a42514c8ee9259f47bea05027775bbe4a7320bdeb7a5d469367d51be2ced5c8ef023d8e41f4ff9f42604c48499e9cefa9f113431b541c89064c87d23f1babf46e1de0465630ffffff", + "cborBytes": [ + 159, 191, 27, 3, 145, 115, 57, 35, 248, 195, 64, 27, 249, 131, 74, 15, 226, 124, 68, 96, 27, 105, 191, 2, 115, 14, + 2, 220, 173, 27, 24, 58, 180, 39, 189, 56, 184, 25, 255, 159, 216, 102, 159, 27, 95, 150, 9, 248, 195, 7, 140, + 140, 159, 27, 226, 186, 49, 191, 246, 187, 255, 154, 76, 225, 111, 32, 231, 124, 79, 171, 115, 59, 91, 217, 98, + 76, 171, 116, 182, 206, 48, 222, 66, 172, 185, 21, 54, 144, 27, 187, 184, 35, 175, 103, 85, 116, 189, 255, 255, + 27, 28, 122, 66, 81, 76, 142, 233, 37, 159, 71, 190, 160, 80, 39, 119, 91, 190, 74, 115, 32, 189, 235, 122, 93, + 70, 147, 103, 213, 27, 226, 206, 213, 200, 239, 2, 61, 142, 65, 244, 255, 159, 66, 96, 76, 72, 73, 158, 156, 239, + 169, 241, 19, 67, 27, 84, 28, 137, 6, 76, 135, 210, 63, 27, 171, 244, 110, 29, 224, 70, 86, 48, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3721, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11073185309153724443" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15385505927301046642" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a02df18596bca5" + }, + { + "_tag": "ByteArray", + "bytearray": "f954a8efc0264c5f978cb2cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1376032291478360520" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "46dd31901f52c881a9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7208122458794642371" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "75372796478959400" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13041704982780541007" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9767389572992625483" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8968044123080480200" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17813911941467540074" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10322245023438881231" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8726797718181542038" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07372c4e063c7fafb80c0b14" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14632713508407294784" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b99abdb5ed42e881b9fd8669f1bd5844c1ffe7221729f47a02df18596bca54cf954a8efc0264c5f978cb2cc1b1318a6141d08d1c8ffff4946dd31901f52c881a9d8669f1b6408652f9df84bc39f1b010bc728b7db2f281bb4fd71957c13784fffff1b878cbd1119146b4bbf1b7c74e49d7e3dd5c81bf737ba8753430a6a1b8f3ffb28c29e41cf1b791bd049c2e678964c07372c4e063c7fafb80c0b141bcb11d76890ad3b40ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 153, 171, 219, 94, 212, 46, 136, 27, 159, 216, 102, 159, 27, 213, 132, 76, 31, 254, 114, + 33, 114, 159, 71, 160, 45, 241, 133, 150, 188, 165, 76, 249, 84, 168, 239, 192, 38, 76, 95, 151, 140, 178, 204, + 27, 19, 24, 166, 20, 29, 8, 209, 200, 255, 255, 73, 70, 221, 49, 144, 31, 82, 200, 129, 169, 216, 102, 159, 27, + 100, 8, 101, 47, 157, 248, 75, 195, 159, 27, 1, 11, 199, 40, 183, 219, 47, 40, 27, 180, 253, 113, 149, 124, 19, + 120, 79, 255, 255, 27, 135, 140, 189, 17, 25, 20, 107, 75, 191, 27, 124, 116, 228, 157, 126, 61, 213, 200, 27, + 247, 55, 186, 135, 83, 67, 10, 106, 27, 143, 63, 251, 40, 194, 158, 65, 207, 27, 121, 27, 208, 73, 194, 230, 120, + 150, 76, 7, 55, 44, 78, 6, 60, 127, 175, 184, 12, 11, 20, 27, 203, 17, 215, 104, 144, 173, 59, 64, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3722, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9d1f804c6782078d477b965e" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3401275856773385649" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16547499290785646373" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5511409813380677619" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11701340580271332259" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12456812512026428298" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5953f7674e30e28e0feb5971" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17993442971447065143" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "903388183079360594" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18295528228694996818" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6695841122547435715" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1379288232816789508" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5198467742446609012" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3133767649484400562" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc57e5dd49" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "301500af85592a659e11" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8614d9dcfcc79c7aa28" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13824285777922461654" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63bf09c5e4716d5cb3637b6e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe6b4f40a30ba6" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4265704841065993977" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12462881803804219906" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "81f9bcb6f4dc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13071339293188971702" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b" + }, + { + "_tag": "ByteArray", + "bytearray": "9827cd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11617282946820671494" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8542539871861108269" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7003064239891139160" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11718951769498079938" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7dfc155b250dd4fc0f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11822930069139348026" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6367954360697946285" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7487570459402273501" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9562987628404938546" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a30336da03f0b790d509d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46b337e3e6b575d9b291" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "9d2b377818e357" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18088233447083465466" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6990999465733098507" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "252525f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71355c566d7eb6bbf0eed011" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a91f96705a32f5b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7546591097214274194" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffeb4caf1b42ff8ba4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b5fd563" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3003996057053036736" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48d4b701016169fcfb051218" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4bea4eb9360e002f89fc8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0500fff83546" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8144959569076366003" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffec9f4c9d1f804c6782078d477b965e80bf1b2f33c25efa170db11be5a486eebc4e87251b4c7c76064a283ff31ba2638342eaef9ba31bacdf7cfb0cfa038a4c5953f7674e30e28e0feb59711bf9b58d0c9759fa371b0c897ac422bb18521bfde6c5fd797f37521b5cec68065de488c3ff9f1b1324375707ebc8041b4824aade7cdb62741b2b7d6112e420e7b245fc57e5dd49ffbf4a301500af85592a659e114af8614d9dcfcc79c7aa28414f1bbfd9baabba8d8fd64c63bf09c5e4716d5cb3637b6e47fe6b4f40a30ba6ffffff9f1b3b32d3f3c86716f9d8669f1bacf50cf8296e1a029f4681f9bcb6f4dc1bb566b9d50d225cb6418b439827cd1ba138e14a04730806ffff80d8669f1b768d32c0cde46e2d9f1b612fe1d285f3ca581ba2a2148b70de52c2497dfc155b250dd4fc0f1ba4137c41df55da3a1b585f84c08f4d00adffffff9f9f1b67e931a9776182ddffbf1b84b68e94c688173241e54ba30336da03f0b790d509d64a46b337e3e6b575d9b291ff479d2b377818e357bf1bfb06507c0bbfdafa1b610504f963f78c0b44252525f94c71355c566d7eb6bbf0eed01148a91f96705a32f5b61b68bae09e8e950a92ffbf49ffeb4caf1b42ff8ba4449b5fd563ffff9f9f1b29b0567f7f5200c0ffff9fbf4c48d4b701016169fcfb05121841054be4bea4eb9360e002f89fc8460500fff83546ff1b7108b59300b72ab3ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 76, 157, 31, 128, 76, 103, 130, 7, 141, 71, + 123, 150, 94, 128, 191, 27, 47, 51, 194, 94, 250, 23, 13, 177, 27, 229, 164, 134, 238, 188, 78, 135, 37, 27, 76, + 124, 118, 6, 74, 40, 63, 243, 27, 162, 99, 131, 66, 234, 239, 155, 163, 27, 172, 223, 124, 251, 12, 250, 3, 138, + 76, 89, 83, 247, 103, 78, 48, 226, 142, 15, 235, 89, 113, 27, 249, 181, 141, 12, 151, 89, 250, 55, 27, 12, 137, + 122, 196, 34, 187, 24, 82, 27, 253, 230, 197, 253, 121, 127, 55, 82, 27, 92, 236, 104, 6, 93, 228, 136, 195, 255, + 159, 27, 19, 36, 55, 87, 7, 235, 200, 4, 27, 72, 36, 170, 222, 124, 219, 98, 116, 27, 43, 125, 97, 18, 228, 32, + 231, 178, 69, 252, 87, 229, 221, 73, 255, 191, 74, 48, 21, 0, 175, 133, 89, 42, 101, 158, 17, 74, 248, 97, 77, + 157, 207, 204, 121, 199, 170, 40, 65, 79, 27, 191, 217, 186, 171, 186, 141, 143, 214, 76, 99, 191, 9, 197, 228, + 113, 109, 92, 179, 99, 123, 110, 71, 254, 107, 79, 64, 163, 11, 166, 255, 255, 255, 159, 27, 59, 50, 211, 243, + 200, 103, 22, 249, 216, 102, 159, 27, 172, 245, 12, 248, 41, 110, 26, 2, 159, 70, 129, 249, 188, 182, 244, 220, + 27, 181, 102, 185, 213, 13, 34, 92, 182, 65, 139, 67, 152, 39, 205, 27, 161, 56, 225, 74, 4, 115, 8, 6, 255, 255, + 128, 216, 102, 159, 27, 118, 141, 50, 192, 205, 228, 110, 45, 159, 27, 97, 47, 225, 210, 133, 243, 202, 88, 27, + 162, 162, 20, 139, 112, 222, 82, 194, 73, 125, 252, 21, 91, 37, 13, 212, 252, 15, 27, 164, 19, 124, 65, 223, 85, + 218, 58, 27, 88, 95, 132, 192, 143, 77, 0, 173, 255, 255, 255, 159, 159, 27, 103, 233, 49, 169, 119, 97, 130, 221, + 255, 191, 27, 132, 182, 142, 148, 198, 136, 23, 50, 65, 229, 75, 163, 3, 54, 218, 3, 240, 183, 144, 213, 9, 214, + 74, 70, 179, 55, 227, 230, 181, 117, 217, 178, 145, 255, 71, 157, 43, 55, 120, 24, 227, 87, 191, 27, 251, 6, 80, + 124, 11, 191, 218, 250, 27, 97, 5, 4, 249, 99, 247, 140, 11, 68, 37, 37, 37, 249, 76, 113, 53, 92, 86, 109, 126, + 182, 187, 240, 238, 208, 17, 72, 169, 31, 150, 112, 90, 50, 245, 182, 27, 104, 186, 224, 158, 142, 149, 10, 146, + 255, 191, 73, 255, 235, 76, 175, 27, 66, 255, 139, 164, 68, 155, 95, 213, 99, 255, 255, 159, 159, 27, 41, 176, 86, + 127, 127, 82, 0, 192, 255, 255, 159, 191, 76, 72, 212, 183, 1, 1, 97, 105, 252, 251, 5, 18, 24, 65, 5, 75, 228, + 190, 164, 235, 147, 96, 224, 2, 248, 159, 200, 70, 5, 0, 255, 248, 53, 70, 255, 27, 113, 8, 181, 147, 0, 183, 42, + 179, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3723, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6a59d2919eba2637" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2643180175329791619" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cab74fcf71c8ca1ffe" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a689597865" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13757969217813462132" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13813632436342235957" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4263199384978127096" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1199653608691088534" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bfffffffffffffff7486a59d2919eba26371b24ae765d83e30e839f49cab74fcf71c8ca1ffe9f45a6895978651bbeee201c5a87bc741bbfb3e18359fe23351b3b29ed40d448f8f81b10a60699df8c3c96ffffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 72, 106, 89, 210, 145, 158, 186, 38, 55, 27, 36, 174, 118, 93, + 131, 227, 14, 131, 159, 73, 202, 183, 79, 207, 113, 200, 202, 31, 254, 159, 69, 166, 137, 89, 120, 101, 27, 190, + 238, 32, 28, 90, 135, 188, 116, 27, 191, 179, 225, 131, 89, 254, 35, 53, 27, 59, 41, 237, 64, 212, 72, 248, 248, + 27, 16, 166, 6, 153, 223, 140, 60, 150, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3724, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "10b2308cc664e8c7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a586a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46710e352a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b531c6a18a08dddd695c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "748cfd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40bc719ede" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87ee81" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a729a8750369a7f651" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bffabe7cc4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2021" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce9f7f9a1c0d20c921d6ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16966840888757680508" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d4d950584fc4b8cd" + }, + { + "_tag": "ByteArray", + "bytearray": "c65d8a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a6a81ac627bdd3e46c36d771" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16193314658898821727" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14529904651739057674" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0ae9caa517dd" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9266936186720053287" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14078883429323085761" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6025943332956248359" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1563592037541639876" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b274ab230c000" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7938066748354513693" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5647431274778362424" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9213303930236615808" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a24c6d82985e" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "573952865694779120" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18244485350139742655" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16268042487651177645" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92d183405dd9f75aef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17951895147762462851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14721936015239469740" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4810b2308cc664e8c7bf4130437a586a4546710e352a4ab531c6a18a08dddd695c43748cfd4540bc719ede4387ee8149a729a8750369a7f65145bffabe7cc44220214bce9f7f9a1c0d20c921d6ec1beb7653e4e6f9797cff9f48d4d950584fc4b8cd43c65d8a9f4ca6a81ac627bdd3e46c36d7711be0ba35e2ebca425f1bc9a4974c4b33ce0a460ae9caa517ddffd8669f1b809ac55d0da9682780ffffd8669f1bc3623de2c6ef97c19f1b53a07388d57d9927bf1b15b2feac834c76c4474b274ab230c0001b6e29ada66302cb1d1b4e5fb4d2b29882381b7fdc3b1c4176bc8046a24c6d82985effbf1b07f71717258e06f01bfd316ec334e5c9bf1be1c3b273636914ad4992d183405dd9f75aef1bf921f1860f70b0831bcc4ed2ce4260daacffffffff", + "cborBytes": [ + 159, 72, 16, 178, 48, 140, 198, 100, 232, 199, 191, 65, 48, 67, 122, 88, 106, 69, 70, 113, 14, 53, 42, 74, 181, + 49, 198, 161, 138, 8, 221, 221, 105, 92, 67, 116, 140, 253, 69, 64, 188, 113, 158, 222, 67, 135, 238, 129, 73, + 167, 41, 168, 117, 3, 105, 167, 246, 81, 69, 191, 250, 190, 124, 196, 66, 32, 33, 75, 206, 159, 127, 154, 28, 13, + 32, 201, 33, 214, 236, 27, 235, 118, 83, 228, 230, 249, 121, 124, 255, 159, 72, 212, 217, 80, 88, 79, 196, 184, + 205, 67, 198, 93, 138, 159, 76, 166, 168, 26, 198, 39, 189, 211, 228, 108, 54, 215, 113, 27, 224, 186, 53, 226, + 235, 202, 66, 95, 27, 201, 164, 151, 76, 75, 51, 206, 10, 70, 10, 233, 202, 165, 23, 221, 255, 216, 102, 159, 27, + 128, 154, 197, 93, 13, 169, 104, 39, 128, 255, 255, 216, 102, 159, 27, 195, 98, 61, 226, 198, 239, 151, 193, 159, + 27, 83, 160, 115, 136, 213, 125, 153, 39, 191, 27, 21, 178, 254, 172, 131, 76, 118, 196, 71, 75, 39, 74, 178, 48, + 192, 0, 27, 110, 41, 173, 166, 99, 2, 203, 29, 27, 78, 95, 180, 210, 178, 152, 130, 56, 27, 127, 220, 59, 28, 65, + 118, 188, 128, 70, 162, 76, 109, 130, 152, 94, 255, 191, 27, 7, 247, 23, 23, 37, 142, 6, 240, 27, 253, 49, 110, + 195, 52, 229, 201, 191, 27, 225, 195, 178, 115, 99, 105, 20, 173, 73, 146, 209, 131, 64, 93, 217, 247, 90, 239, + 27, 249, 33, 241, 134, 15, 112, 176, 131, 27, 204, 78, 210, 206, 66, 96, 218, 172, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3725, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11314620968212164448" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "ByteArray", + "bytearray": "07fb" + } + ] + }, + "cborHex": "9f1bfffffffffffffffd1b9d059bd2ba78ef601bfffffffffffffffe4207fbff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 27, 157, 5, 155, 210, 186, 120, 239, 96, 27, 255, 255, 255, 255, + 255, 255, 255, 254, 66, 7, 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3726, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5cbbb8ef64ed" + } + ] + }, + "cborHex": "9f465cbbb8ef64edff", + "cborBytes": [159, 70, 92, 187, 184, 239, 100, 237, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3727, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6902928781624898852" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2088198118503371581" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4588778396038238335" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7761962815306042939" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2761b606233b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f576dbf177c88add87" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3eac76b8b868f05e6ddc491" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17553874072467772168" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5672911273909979825" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14420403872804115619" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7219098948367088660" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d17a57769891" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9922523969220311078" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10747128131978147998" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10072524902883092540" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15215172720368232943" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11604285520150070524" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "362fb57c4924d68a6a03c353" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c9e2d11dc0a485" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3166569816624033008" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17076937803695916764" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95b7278820f4a85f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17697864518167275231" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "02ab" + } + ] + }, + "cborHex": "9f1b5fcc212752927524d8669f1b1cfac5200208533d9f1b3fae9da388d8907f1b6bb8080e4e1b8e3bffffd9050b9fbf462761b606233b49f576dbf177c88add874cb3eac76b8b868f05e6ddc4911bf39be376e9619308ffbf1b4eba3abf4bb68ab11bc81f90eb742814a31b642f643ebfd0fc1446d17a577698911b89b3e2fa6cacf8261b95257818662a389e1b8bc8cc085b9f683c1bd32726f9c9c329ef1ba10ab432ccc104fc4c362fb57c4924d68a6a03c353ff9f47c9e2d11dc0a4851b2bf1ea7894596cf01becfd787478bc06dc4895b7278820f4a85fff1bf59b72031059a6dfffa04202abff", + "cborBytes": [ + 159, 27, 95, 204, 33, 39, 82, 146, 117, 36, 216, 102, 159, 27, 28, 250, 197, 32, 2, 8, 83, 61, 159, 27, 63, 174, + 157, 163, 136, 216, 144, 127, 27, 107, 184, 8, 14, 78, 27, 142, 59, 255, 255, 217, 5, 11, 159, 191, 70, 39, 97, + 182, 6, 35, 59, 73, 245, 118, 219, 241, 119, 200, 138, 221, 135, 76, 179, 234, 199, 107, 139, 134, 143, 5, 230, + 221, 196, 145, 27, 243, 155, 227, 118, 233, 97, 147, 8, 255, 191, 27, 78, 186, 58, 191, 75, 182, 138, 177, 27, + 200, 31, 144, 235, 116, 40, 20, 163, 27, 100, 47, 100, 62, 191, 208, 252, 20, 70, 209, 122, 87, 118, 152, 145, 27, + 137, 179, 226, 250, 108, 172, 248, 38, 27, 149, 37, 120, 24, 102, 42, 56, 158, 27, 139, 200, 204, 8, 91, 159, 104, + 60, 27, 211, 39, 38, 249, 201, 195, 41, 239, 27, 161, 10, 180, 50, 204, 193, 4, 252, 76, 54, 47, 181, 124, 73, 36, + 214, 138, 106, 3, 195, 83, 255, 159, 71, 201, 226, 209, 29, 192, 164, 133, 27, 43, 241, 234, 120, 148, 89, 108, + 240, 27, 236, 253, 120, 116, 120, 188, 6, 220, 72, 149, 183, 39, 136, 32, 244, 168, 95, 255, 27, 245, 155, 114, 3, + 16, 89, 166, 223, 255, 160, 66, 2, 171, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3728, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1116963139287927188" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea03d408897ed68ad4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "056f2dd9421765" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02dc7e4c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ee47619068743" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17686116370013568591" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc20ce66" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3711241664227869415" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf6bb1420bd6b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8511796677539614546" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9387285061848095667" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12205462644725361957" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12512081373844760989" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7504610445009893795" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12932846798887645332" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5908293112611598017" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11838542697545717514" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "515171840501948678" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9627458029149488660" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c3cb00349bf22a2f06ebdee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10326787430113538133" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "456529f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5091471e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63bea519ebbcc139e18cfa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04ec43268d2784bd181a32" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b986" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d15" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5210496413650676431" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc920df40031a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12415584709692460418" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2293673221458854878" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2252671832148134108" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3787360fe1fe7ec8263dcb4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2932128247291905680" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3c5e52c84" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2717328644233199496" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "29d7b0dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9642a98c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "619b86c58060817f6bf922f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9225859184007234214" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98a28ac3e44c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5143582427252691513" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae2efdcf649d7eb2e5160b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b98fef5ba42ee83013783ce2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4456644444066353191" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9962463484497855462" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6334451529398881516" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f1b0f80400ea876499449ea03d408897ed68ad4bf47056f2dd94217654402dc7e4c473ee476190687431bf571b5222ae13e4f44cc20ce661b3380faa16fee82e747cf6bb1420bd6b21b761ff9fb15194f52ff9f1b824656071cc95bb31ba962839baa27ad25ffbf1bada3d7b7b8cc699d1b6825bb70488039a31bb37ab3a4763ef0941b51fe79484e19eec1ffff1ba44af3dc3181d70ad8669f1b0726420f376721069f1b859b9a11ad700614bf4c0c3cb00349bf22a2f06ebdee1b8f501e743ae2f05544456529f3445091471e4b63bea519ebbcc139e18cfa4b04ec43268d2784bd181a3242b986425d1542c3d51b484f66e1bf186acf47fc920df40031a51bac4d04834bfd8d82ffbf1b1fd4c3a47be183de1b1f4319189eb7c8dc4cb3787360fe1fe7ec8263dcb41b28b1031b17b9069045d3c5e52c841b25b5e40141837f88ffbf4429d7b0dd45e9642a98c34c619b86c58060817f6bf922f31b8008d60c1286c2a64698a28ac3e44c1b4761acf7395692394bae2efdcf649d7eb2e5160b4208f24cb98fef5ba42ee83013783ce21b3dd92e8272cb1027ff80ffffbf1b8a41c7c1794b83e61b57e87e1ac8c00cecffff", + "cborBytes": [ + 159, 159, 27, 15, 128, 64, 14, 168, 118, 73, 148, 73, 234, 3, 212, 8, 137, 126, 214, 138, 212, 191, 71, 5, 111, + 45, 217, 66, 23, 101, 68, 2, 220, 126, 76, 71, 62, 228, 118, 25, 6, 135, 67, 27, 245, 113, 181, 34, 42, 225, 62, + 79, 68, 204, 32, 206, 102, 27, 51, 128, 250, 161, 111, 238, 130, 231, 71, 207, 107, 177, 66, 11, 214, 178, 27, + 118, 31, 249, 251, 21, 25, 79, 82, 255, 159, 27, 130, 70, 86, 7, 28, 201, 91, 179, 27, 169, 98, 131, 155, 170, 39, + 173, 37, 255, 191, 27, 173, 163, 215, 183, 184, 204, 105, 157, 27, 104, 37, 187, 112, 72, 128, 57, 163, 27, 179, + 122, 179, 164, 118, 62, 240, 148, 27, 81, 254, 121, 72, 78, 25, 238, 193, 255, 255, 27, 164, 74, 243, 220, 49, + 129, 215, 10, 216, 102, 159, 27, 7, 38, 66, 15, 55, 103, 33, 6, 159, 27, 133, 155, 154, 17, 173, 112, 6, 20, 191, + 76, 12, 60, 176, 3, 73, 191, 34, 162, 240, 110, 189, 238, 27, 143, 80, 30, 116, 58, 226, 240, 85, 68, 69, 101, 41, + 243, 68, 80, 145, 71, 30, 75, 99, 190, 165, 25, 235, 188, 193, 57, 225, 140, 250, 75, 4, 236, 67, 38, 141, 39, + 132, 189, 24, 26, 50, 66, 185, 134, 66, 93, 21, 66, 195, 213, 27, 72, 79, 102, 225, 191, 24, 106, 207, 71, 252, + 146, 13, 244, 0, 49, 165, 27, 172, 77, 4, 131, 75, 253, 141, 130, 255, 191, 27, 31, 212, 195, 164, 123, 225, 131, + 222, 27, 31, 67, 25, 24, 158, 183, 200, 220, 76, 179, 120, 115, 96, 254, 31, 231, 236, 130, 99, 220, 180, 27, 40, + 177, 3, 27, 23, 185, 6, 144, 69, 211, 197, 229, 44, 132, 27, 37, 181, 228, 1, 65, 131, 127, 136, 255, 191, 68, 41, + 215, 176, 221, 69, 233, 100, 42, 152, 195, 76, 97, 155, 134, 197, 128, 96, 129, 127, 107, 249, 34, 243, 27, 128, + 8, 214, 12, 18, 134, 194, 166, 70, 152, 162, 138, 195, 228, 76, 27, 71, 97, 172, 247, 57, 86, 146, 57, 75, 174, + 46, 253, 207, 100, 157, 126, 178, 229, 22, 11, 66, 8, 242, 76, 185, 143, 239, 91, 164, 46, 232, 48, 19, 120, 60, + 226, 27, 61, 217, 46, 130, 114, 203, 16, 39, 255, 128, 255, 255, 191, 27, 138, 65, 199, 193, 121, 75, 131, 230, + 27, 87, 232, 126, 26, 200, 192, 12, 236, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3729, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10003653640584296385" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1376868125282257574" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "378b1ba2ff4dce1f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14613930058208923900" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16851526494308854425" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb8f10f051" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18152291005809527910" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2878928531953906589" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ed3263257d0efa39531d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18225395427470835540" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2840385545870616673" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1102716525156474435" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b8ad41dfc0711f7c19fbf1b131b9e43d601caa648378b1ba2ff4dce1f1bcacf1bf5c3f250fc41cd1be9dca610385cea9945eb8f10f0511bfbe9e47eaccb8c661b27f4023f20d9739dff4aed3263257d0efa39531d0cbf1bfced9c94396d7f541b276b139adec5a861ffffffbf1b0f4da2d651e79e4341674201ce09ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 138, 212, 29, 252, 7, 17, 247, 193, 159, 191, 27, 19, 27, 158, 67, 214, 1, 202, 166, 72, + 55, 139, 27, 162, 255, 77, 206, 31, 27, 202, 207, 27, 245, 195, 242, 80, 252, 65, 205, 27, 233, 220, 166, 16, 56, + 92, 234, 153, 69, 235, 143, 16, 240, 81, 27, 251, 233, 228, 126, 172, 203, 140, 102, 27, 39, 244, 2, 63, 32, 217, + 115, 157, 255, 74, 237, 50, 99, 37, 125, 14, 250, 57, 83, 29, 12, 191, 27, 252, 237, 156, 148, 57, 109, 127, 84, + 27, 39, 107, 19, 154, 222, 197, 168, 97, 255, 255, 255, 191, 27, 15, 77, 162, 214, 81, 231, 158, 67, 65, 103, 66, + 1, 206, 9, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3730, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3946360069449248504" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9554953920776746504" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12947584720090953816" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16921299748281732588" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f29ae593e5aba765be5ba874" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4080846511804044443" + } + }, + { + "_tag": "ByteArray", + "bytearray": "503ff6e8562705" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10941282003700880050" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "33479ade87ee077c60436271" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4908142335501510982" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "815261922501623818" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4127d26fd83925f19ea6d85e" + }, + { + "_tag": "ByteArray", + "bytearray": "b719" + }, + { + "_tag": "ByteArray", + "bytearray": "fb42b98528870c26a7" + }, + { + "_tag": "ByteArray", + "bytearray": "cd6d605e9c49cf" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "417680600236817701" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8331624392838345825" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17375315548063464943" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5766150691052073820" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b36c449930f4eeef89f1b849a03f7751fb608d8669f1bb3af0fb4244bf8589f1bead48877da3d4dec4cf29ae593e5aba765be5ba8741b38a21447fef8d49b47503ff6e8562705ffffd8669f1b97d73e0351f712b29f4c33479ade87ee077c604362711b441d39731e9fa946ffffd8669f1b0b506466299c800a9f4c4127d26fd83925f19ea6d85e42b71949fb42b98528870c26a747cd6d605e9c49cfffffffff80bf1b05cbe64afeaffd251b739fe03e111bf4611bf121856ebea4fdef1b50057b80cd88335cffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 54, 196, 73, 147, 15, 78, 238, 248, 159, 27, 132, 154, 3, 247, 117, 31, 182, 8, 216, 102, + 159, 27, 179, 175, 15, 180, 36, 75, 248, 88, 159, 27, 234, 212, 136, 119, 218, 61, 77, 236, 76, 242, 154, 229, + 147, 229, 171, 167, 101, 190, 91, 168, 116, 27, 56, 162, 20, 71, 254, 248, 212, 155, 71, 80, 63, 246, 232, 86, 39, + 5, 255, 255, 216, 102, 159, 27, 151, 215, 62, 3, 81, 247, 18, 178, 159, 76, 51, 71, 154, 222, 135, 238, 7, 124, + 96, 67, 98, 113, 27, 68, 29, 57, 115, 30, 159, 169, 70, 255, 255, 216, 102, 159, 27, 11, 80, 100, 102, 41, 156, + 128, 10, 159, 76, 65, 39, 210, 111, 216, 57, 37, 241, 158, 166, 216, 94, 66, 183, 25, 73, 251, 66, 185, 133, 40, + 135, 12, 38, 167, 71, 205, 109, 96, 94, 156, 73, 207, 255, 255, 255, 255, 128, 191, 27, 5, 203, 230, 74, 254, 175, + 253, 37, 27, 115, 159, 224, 62, 17, 27, 244, 97, 27, 241, 33, 133, 110, 190, 164, 253, 239, 27, 80, 5, 123, 128, + 205, 136, 51, 92, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3731, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c8eb07fdfef8b0aa0803" + }, + { + "_tag": "ByteArray", + "bytearray": "d531c12645c9de" + }, + { + "_tag": "ByteArray", + "bytearray": "4107" + } + ] + } + ] + }, + "cborHex": "9f9f4ac8eb07fdfef8b0aa080347d531c12645c9de424107ffff", + "cborBytes": [ + 159, 159, 74, 200, 235, 7, 253, 254, 248, 176, 170, 8, 3, 71, 213, 49, 193, 38, 69, 201, 222, 66, 65, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3732, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9434408531145281020" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13513860040818350432" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3471493212790167060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8057417685894490984" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11464143299967096996" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9197296962929598205" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15599139924998407350" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43a845714d94a8145f7579" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14135845664215452011" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1208748036936668746" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5ae6eebbae9e62ed782" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d584da9a2d644" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd77" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11210051216921017830" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c510" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6233716796225554258" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5509297338768122094" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12786588501833828072" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4087902590546333581" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13032078389784810672" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94bea92d389065a50ccc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17558296680329671551" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17712581554589888879" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1941578101297448630" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d5921a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6726457615279593290" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f1b82edc092ccd44dfc1bbb8ae01b8d52d960bf1b302d38af2c8996141b6fd1b2b1feb0eb681b9f18d19778b698a41b7fa35cdbc1329efd1bd87b471d2f24c4b64b43a845714d94a8145f7579ffbf41271bc42c9cbc974ec96b41911b10c655ef748f964a41bf417b4ae5ae6eebbae9e62ed782475d584da9a2d64442fd771b9b921a303a833de6ff9f42c510bf1b56829c66056907521b4c74f4bd774760ee1bb173167f04e646e81b38bb25bf59e9cf8d1bb4db3e3fa42b14b04a94bea92d389065a50ccc1bf3ab99cd8bf8737f41751bf5cfbb142077716f1b1af1deff078306b6ff43d5921ad8669f1b5d592d901376174a80ffffff", + "cborBytes": [ + 159, 27, 130, 237, 192, 146, 204, 212, 77, 252, 27, 187, 138, 224, 27, 141, 82, 217, 96, 191, 27, 48, 45, 56, 175, + 44, 137, 150, 20, 27, 111, 209, 178, 177, 254, 176, 235, 104, 27, 159, 24, 209, 151, 120, 182, 152, 164, 27, 127, + 163, 92, 219, 193, 50, 158, 253, 27, 216, 123, 71, 29, 47, 36, 196, 182, 75, 67, 168, 69, 113, 77, 148, 168, 20, + 95, 117, 121, 255, 191, 65, 39, 27, 196, 44, 156, 188, 151, 78, 201, 107, 65, 145, 27, 16, 198, 85, 239, 116, 143, + 150, 74, 65, 191, 65, 123, 74, 229, 174, 110, 235, 186, 233, 230, 46, 215, 130, 71, 93, 88, 77, 169, 162, 214, 68, + 66, 253, 119, 27, 155, 146, 26, 48, 58, 131, 61, 230, 255, 159, 66, 197, 16, 191, 27, 86, 130, 156, 102, 5, 105, + 7, 82, 27, 76, 116, 244, 189, 119, 71, 96, 238, 27, 177, 115, 22, 127, 4, 230, 70, 232, 27, 56, 187, 37, 191, 89, + 233, 207, 141, 27, 180, 219, 62, 63, 164, 43, 20, 176, 74, 148, 190, 169, 45, 56, 144, 101, 165, 12, 204, 27, 243, + 171, 153, 205, 139, 248, 115, 127, 65, 117, 27, 245, 207, 187, 20, 32, 119, 113, 111, 27, 26, 241, 222, 255, 7, + 131, 6, 182, 255, 67, 213, 146, 26, 216, 102, 159, 27, 93, 89, 45, 144, 19, 118, 23, 74, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3733, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "23" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7380340586534732222" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11566038005480150794" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4771692088866431409" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12320799011160068628" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13045243814438758791" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11053904659863874803" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8403809771310132521" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "720dd72f0de6198b327189" + } + ] + }, + "cborHex": "9f4123d8669f1b666c3ca925cd01be9fd8669f1ba082d249574fd70a9f1b423874ac5e6ce1b11baafc456c192e12141bb50a0421effbe9871b99675bb8d838acf31b74a0547632e5ad29ffffffff4b720dd72f0de6198b327189ff", + "cborBytes": [ + 159, 65, 35, 216, 102, 159, 27, 102, 108, 60, 169, 37, 205, 1, 190, 159, 216, 102, 159, 27, 160, 130, 210, 73, 87, + 79, 215, 10, 159, 27, 66, 56, 116, 172, 94, 108, 225, 177, 27, 170, 252, 69, 108, 25, 46, 18, 20, 27, 181, 10, 4, + 33, 239, 251, 233, 135, 27, 153, 103, 91, 184, 216, 56, 172, 243, 27, 116, 160, 84, 118, 50, 229, 173, 41, 255, + 255, 255, 255, 75, 114, 13, 215, 47, 13, 230, 25, 139, 50, 113, 137, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3734, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10789757593446856185" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "625635018310883369" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d0308384ddf01c" + }, + { + "_tag": "ByteArray", + "bytearray": "20ae" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b95bceb5d59f935f99f1b08aeb3bc0177182947d0308384ddf01c4220aeffffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 149, 188, 235, 93, 89, 249, 53, 249, 159, 27, 8, 174, 179, 188, 1, 119, 24, 41, 71, + 208, 48, 131, 132, 221, 240, 28, 66, 32, 174, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3735, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e49220c3a75516de" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e44" + } + } + ] + } + ] + }, + "cborHex": "9fbf48e49220c3a75516de425e44ffff", + "cborBytes": [159, 191, 72, 228, 146, 32, 195, 167, 85, 22, 222, 66, 94, 68, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3736, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3063921820282836404" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7407616579439326539" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5262399590368755962" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "259c3c847e57ed" + } + } + ] + } + ] + }, + "cborHex": "9fa0bf1b2a853ca98586d5b41b66cd240821c6754b1b4907cc8bca1740fa47259c3c847e57edffff", + "cborBytes": [ + 159, 160, 191, 27, 42, 133, 60, 169, 133, 134, 213, 180, 27, 102, 205, 36, 8, 33, 198, 117, 75, 27, 73, 7, 204, + 139, 202, 23, 64, 250, 71, 37, 156, 60, 132, 126, 87, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3737, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14635958326199684526" + } + }, + { + "_tag": "ByteArray", + "bytearray": "26967ed4c998fd3b" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1045100780840172791" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "64b5f3ada8b4" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02af42ee" + }, + { + "_tag": "ByteArray", + "bytearray": "b0b940d295ae0a87628cf8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16858315488082494538" + } + }, + { + "_tag": "ByteArray", + "bytearray": "318a65" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12361018321113633749" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4098260455784093621" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6061044507250124718" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bcb1d5e8d948d8dae4826967ed4c998fd3bd8669f1b0e80f19f7c763cf79f4664b5f3ada8b49f4402af42ee4bb0b940d295ae0a87628cf81be9f4c49e029f844a43318a65ff1bab8b28abec12d3d5bf1b38dff22bc80a97b51b541d27ddd679e7aeffffffff", + "cborBytes": [ + 159, 27, 203, 29, 94, 141, 148, 141, 141, 174, 72, 38, 150, 126, 212, 201, 152, 253, 59, 216, 102, 159, 27, 14, + 128, 241, 159, 124, 118, 60, 247, 159, 70, 100, 181, 243, 173, 168, 180, 159, 68, 2, 175, 66, 238, 75, 176, 185, + 64, 210, 149, 174, 10, 135, 98, 140, 248, 27, 233, 244, 196, 158, 2, 159, 132, 74, 67, 49, 138, 101, 255, 27, 171, + 139, 40, 171, 236, 18, 211, 213, 191, 27, 56, 223, 242, 43, 200, 10, 151, 181, 27, 84, 29, 39, 221, 214, 121, 231, + 174, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3738, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14746155555364609149" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12260702517482507383" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bd0c9f374f34c8e17603e7" + } + ] + }, + "cborHex": "9f1bcca4de5960291c7d801baa26c3facb484c774bbd0c9f374f34c8e17603e7ff", + "cborBytes": [ + 159, 27, 204, 164, 222, 89, 96, 41, 28, 125, 128, 27, 170, 38, 195, 250, 203, 72, 76, 119, 75, 189, 12, 159, 55, + 79, 52, 200, 225, 118, 3, 231, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3739, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9cbc95e44a" + } + ] + }, + "cborHex": "9f459cbc95e44aff", + "cborBytes": [159, 69, 156, 188, 149, 228, 74, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3740, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "34c088bf6e2be95347a915" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13511044394229323316" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "419cb3c3b1f0739b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1252125065287955752" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4926069139446870030" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3358040661915864087" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14345130597421394876" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25714efe8bce56945890a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4061428632903584490" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d8a9f6afe9d047a19" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2191195289298756993" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f4b34c088bf6e2be95347a915d8669f1bbb80df4abe9256349f48419cb3c3b1f0739b1b1160711ce2d9f5281b445ce9c86bbeb00effffbf1b2e9a2830bad00c171bc71424464be3abbc4b25714efe8bce56945890a41b385d17d2c0d18aea499d8a9f6afe9d047a191b1e68b08194296581ffffff", + "cborBytes": [ + 159, 159, 75, 52, 192, 136, 191, 110, 43, 233, 83, 71, 169, 21, 216, 102, 159, 27, 187, 128, 223, 74, 190, 146, + 86, 52, 159, 72, 65, 156, 179, 195, 177, 240, 115, 155, 27, 17, 96, 113, 28, 226, 217, 245, 40, 27, 68, 92, 233, + 200, 107, 190, 176, 14, 255, 255, 191, 27, 46, 154, 40, 48, 186, 208, 12, 23, 27, 199, 20, 36, 70, 75, 227, 171, + 188, 75, 37, 113, 78, 254, 139, 206, 86, 148, 88, 144, 164, 27, 56, 93, 23, 210, 192, 209, 138, 234, 73, 157, 138, + 159, 106, 254, 157, 4, 122, 25, 27, 30, 104, 176, 129, 148, 41, 101, 129, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3741, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "847366064770442213" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b6c3d9cdc69e24e1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "930280623846081517" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "502753690464284748" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e3d781509ef2feee4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5353842528427945477" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d60" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17179012855924796045" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "500c64a7c5859461" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15486737069828781121" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2430527509300065458" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9620972e03d35f0c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5136a00d1b221ca38c95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b90ba05908" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97344dc01b02c0debd99" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b8f0906e1512008120210" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0ef345bfad635b2" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4069860379482047990" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9801815659258950148" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17714426971875750092" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11948060565183045304" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "243f918f6b31d3cb654c2632" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a87f82ce25b9eb419f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6416894283651386276" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b0bc272f2455ce3e548b6c3d9cdc69e24e11b0ce9054c6dc643ed9f80bf1b06fa23d159a3f04c496e3d781509ef2feee41b4a4cab69ea53ae05427d601bee681d2c95442a8d48500c64a7c5859461ff1bd6ebf1501104b441bf1b21baf7e468a534b2489620972e03d35f0c4a5136a00d1b221ca38c9545b90ba059084a97344dc01b02c0debd994b7b8f0906e151200812021041b348e0ef345bfad635b2ff9f1b387b0c73bc76c5f6ffffbf1b88070b68ebfdb2041bf5d64979d240b0cc1ba5d009c7ce969eb84c243f918f6b31d3cb654c263249a87f82ce25b9eb419f1b590d635a52468ba4ffff", + "cborBytes": [ + 159, 27, 11, 194, 114, 242, 69, 92, 227, 229, 72, 182, 195, 217, 205, 198, 158, 36, 225, 27, 12, 233, 5, 76, 109, + 198, 67, 237, 159, 128, 191, 27, 6, 250, 35, 209, 89, 163, 240, 76, 73, 110, 61, 120, 21, 9, 239, 47, 238, 228, + 27, 74, 76, 171, 105, 234, 83, 174, 5, 66, 125, 96, 27, 238, 104, 29, 44, 149, 68, 42, 141, 72, 80, 12, 100, 167, + 197, 133, 148, 97, 255, 27, 214, 235, 241, 80, 17, 4, 180, 65, 191, 27, 33, 186, 247, 228, 104, 165, 52, 178, 72, + 150, 32, 151, 46, 3, 211, 95, 12, 74, 81, 54, 160, 13, 27, 34, 28, 163, 140, 149, 69, 185, 11, 160, 89, 8, 74, + 151, 52, 77, 192, 27, 2, 192, 222, 189, 153, 75, 123, 143, 9, 6, 225, 81, 32, 8, 18, 2, 16, 65, 179, 72, 224, 239, + 52, 91, 250, 214, 53, 178, 255, 159, 27, 56, 123, 12, 115, 188, 118, 197, 246, 255, 255, 191, 27, 136, 7, 11, 104, + 235, 253, 178, 4, 27, 245, 214, 73, 121, 210, 64, 176, 204, 27, 165, 208, 9, 199, 206, 150, 158, 184, 76, 36, 63, + 145, 143, 107, 49, 211, 203, 101, 76, 38, 50, 73, 168, 127, 130, 206, 37, 185, 235, 65, 159, 27, 89, 13, 99, 90, + 82, 70, 139, 164, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3742, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "525482cd89" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "793502784814277253" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "61db" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7339129151835956575" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1301300978653909246" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2370955569145252915" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2596841463455899660" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4385479fdb767c48" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13395175585315439281" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ccf5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14805827224444829929" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6144433229271084781" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12755071366867715393" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f1134a6d81" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18227197654990671338" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4690155993277677356" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31e643" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10974911734110444643" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "02" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6576943692088834817" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f45525482cd89d8669f1b0b031694212362859f4261dbffffd8669f1b65d9d31447e5655f9fbf1b120f26587288d0fe1b20e753873d230c331b2409d58d674b600c484385479fdb767c481bb9e5393962b642b142ccf51bcd78dd6a7ed780e91b55456977a8cf2eedffd8669f1bb1031dd432e805419f45f1134a6d811bfcf403b2048d4dea1b4116c806c07c3f2c4331e6431b984eb81318eb5c63ffff4102ffff1b5b45ff711ab37b0180ff", + "cborBytes": [ + 159, 69, 82, 84, 130, 205, 137, 216, 102, 159, 27, 11, 3, 22, 148, 33, 35, 98, 133, 159, 66, 97, 219, 255, 255, + 216, 102, 159, 27, 101, 217, 211, 20, 71, 229, 101, 95, 159, 191, 27, 18, 15, 38, 88, 114, 136, 208, 254, 27, 32, + 231, 83, 135, 61, 35, 12, 51, 27, 36, 9, 213, 141, 103, 75, 96, 12, 72, 67, 133, 71, 159, 219, 118, 124, 72, 27, + 185, 229, 57, 57, 98, 182, 66, 177, 66, 204, 245, 27, 205, 120, 221, 106, 126, 215, 128, 233, 27, 85, 69, 105, + 119, 168, 207, 46, 237, 255, 216, 102, 159, 27, 177, 3, 29, 212, 50, 232, 5, 65, 159, 69, 241, 19, 74, 109, 129, + 27, 252, 244, 3, 178, 4, 141, 77, 234, 27, 65, 22, 200, 6, 192, 124, 63, 44, 67, 49, 230, 67, 27, 152, 78, 184, + 19, 24, 235, 92, 99, 255, 255, 65, 2, 255, 255, 27, 91, 69, 255, 113, 26, 179, 123, 1, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3743, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2412c2a997" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30f3d32639a92a1c284da3f4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7553fca528e92d93bdc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "552191" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10015075910210423735" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d92733b640a331406" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a4f6ad1466077eef2988f47" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb0751dacc259d5c37" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5f37f9a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "797526609d2eac7a3d" + }, + { + "_tag": "ByteArray", + "bytearray": "e534452a" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "603002337644298393" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3275507354851408354" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9dc83b0cfccfb4809fa82" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8223598779971919170" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3a8f293ed8a5c4fcc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8791535825995497799" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13870221180406397613" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4690574392402266388" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8209234754734961308" + } + } + ] + }, + "cborHex": "9f80d9050c9fbf452412c2a99741db4c30f3d32639a92a1c284da3f44aa7553fca528e92d93bdc435521911b8afcb27a6aaa0bb74162493d92733b640a3314064c8a4f6ad1466077eef2988f4749fb0751dacc259d5c3744a5f37f9a4114ffd87a9f49797526609d2eac7a3d44e534452affd905079f0aff1b085e4b6e6604c099ffbf1b2d74f095b918f9e24bc9dc83b0cfccfb4809fa821b72201785178fdd4249d3a8f293ed8a5c4fcc1b7a01cf41129501471bc07cecad0e38faadff1b4118448ee3ae49141b71ed0f83d9c4b29cff", + "cborBytes": [ + 159, 128, 217, 5, 12, 159, 191, 69, 36, 18, 194, 169, 151, 65, 219, 76, 48, 243, 211, 38, 57, 169, 42, 28, 40, 77, + 163, 244, 74, 167, 85, 63, 202, 82, 142, 146, 217, 59, 220, 67, 85, 33, 145, 27, 138, 252, 178, 122, 106, 170, 11, + 183, 65, 98, 73, 61, 146, 115, 59, 100, 10, 51, 20, 6, 76, 138, 79, 106, 209, 70, 96, 119, 238, 242, 152, 143, 71, + 73, 251, 7, 81, 218, 204, 37, 157, 92, 55, 68, 165, 243, 127, 154, 65, 20, 255, 216, 122, 159, 73, 121, 117, 38, + 96, 157, 46, 172, 122, 61, 68, 229, 52, 69, 42, 255, 217, 5, 7, 159, 10, 255, 27, 8, 94, 75, 110, 102, 4, 192, + 153, 255, 191, 27, 45, 116, 240, 149, 185, 24, 249, 226, 75, 201, 220, 131, 176, 207, 204, 251, 72, 9, 250, 130, + 27, 114, 32, 23, 133, 23, 143, 221, 66, 73, 211, 168, 242, 147, 237, 138, 92, 79, 204, 27, 122, 1, 207, 65, 18, + 149, 1, 71, 27, 192, 124, 236, 173, 14, 56, 250, 173, 255, 27, 65, 24, 68, 142, 227, 174, 73, 20, 27, 113, 237, + 15, 131, 217, 196, 178, 156, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3744, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ce847b76f674f78aa1b7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11893459067540386725" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11633878709069460431" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14753828969594681642" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62713b1a3d48" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e7ec7d5d951a68e17e2c3a3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14377424897763710422" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6cdd12ccadfa60765bf4b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2719984055452495063" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f4ace847b76f674f78aa1b7bf1ba50e0e01f764b3a51ba173d70c0610b3cf1bccc02147598ef92a4662713b1a3d484c0e7ec7d5d951a68e17e2c3a31bc786dfc5081015d64bc6cdd12ccadfa60765bf4b1b25bf53165bf8ecd7ff80ff", + "cborBytes": [ + 159, 74, 206, 132, 123, 118, 246, 116, 247, 138, 161, 183, 191, 27, 165, 14, 14, 1, 247, 100, 179, 165, 27, 161, + 115, 215, 12, 6, 16, 179, 207, 27, 204, 192, 33, 71, 89, 142, 249, 42, 70, 98, 113, 59, 26, 61, 72, 76, 14, 126, + 199, 213, 217, 81, 166, 142, 23, 226, 195, 163, 27, 199, 134, 223, 197, 8, 16, 21, 214, 75, 198, 205, 209, 44, + 202, 223, 166, 7, 101, 191, 75, 27, 37, 191, 83, 22, 91, 248, 236, 215, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3745, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9217491732598231376" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05037c00" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10007357756878846569" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a03900405" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "baef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3528902740701205896" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1628317428398127571" + } + } + ] + }, + "cborHex": "9fd8669f1b7feb1be4f99e11509f4405037c00ffffa01b8ae146dbcf037a69bf455a039004051bfffffffffffffffc42baef1b30f92e588265d588ff1b1698f212ed3f79d3ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 127, 235, 27, 228, 249, 158, 17, 80, 159, 68, 5, 3, 124, 0, 255, 255, 160, 27, 138, 225, + 70, 219, 207, 3, 122, 105, 191, 69, 90, 3, 144, 4, 5, 27, 255, 255, 255, 255, 255, 255, 255, 252, 66, 186, 239, + 27, 48, 249, 46, 88, 130, 101, 213, 136, 255, 27, 22, 152, 242, 18, 237, 63, 121, 211, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3746, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1303290543873137180" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11890371041310576202" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2825742772539579911" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e4e9eb613cc2d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11705127323117850055" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "346a0f09" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bb35409871d8d72" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4270626823697206207" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4844294104456144936" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9518967867" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7487289900942319227" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02ddd1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77c03d3152ebac07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f41a534d8900dec517" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e793b7ec7e4134477767f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be4f3b8b45badda073d403" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17054623644953251004" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8814193194326698851" + } + }, + { + "_tag": "ByteArray", + "bytearray": "93bb2428" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5654516096978109080" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1374600584676114386" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8418126493263080840" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "56" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b121637d832af1a1c1ba5031576d4e88e4a1b27370e1487d95e07475e4e9eb613cc2d1ba270f748b1288dc744346a0f09487bb35409871d8d721b3b4450782aba0bbfffbf1b433a63d263a0a8284595189678671b67e8327edc095e7b4302ddd14877c03d3152ebac0749f41a534d8900dec5174be793b7ec7e4134477767f8412affd8669f1bfffffffffffffff59f9f4bbe4f3b8b45badda073d4031becae31d8876a8cbc1b7a524e02b9822b634493bb2428ffffffd8669f1b4e78e06e691bc2989fd8669f1b13138ff2e5a9ffd29f1b74d33171c9402d88ffffffffd87d9f1bfffffffffffffff1bf41561bfffffffffffffffbffffff", + "cborBytes": [ + 159, 191, 27, 18, 22, 55, 216, 50, 175, 26, 28, 27, 165, 3, 21, 118, 212, 232, 142, 74, 27, 39, 55, 14, 20, 135, + 217, 94, 7, 71, 94, 78, 158, 182, 19, 204, 45, 27, 162, 112, 247, 72, 177, 40, 141, 199, 68, 52, 106, 15, 9, 72, + 123, 179, 84, 9, 135, 29, 141, 114, 27, 59, 68, 80, 120, 42, 186, 11, 191, 255, 191, 27, 67, 58, 99, 210, 99, 160, + 168, 40, 69, 149, 24, 150, 120, 103, 27, 103, 232, 50, 126, 220, 9, 94, 123, 67, 2, 221, 209, 72, 119, 192, 61, + 49, 82, 235, 172, 7, 73, 244, 26, 83, 77, 137, 0, 222, 197, 23, 75, 231, 147, 183, 236, 126, 65, 52, 71, 119, 103, + 248, 65, 42, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 159, 75, 190, 79, 59, 139, 69, + 186, 221, 160, 115, 212, 3, 27, 236, 174, 49, 216, 135, 106, 140, 188, 27, 122, 82, 78, 2, 185, 130, 43, 99, 68, + 147, 187, 36, 40, 255, 255, 255, 216, 102, 159, 27, 78, 120, 224, 110, 105, 27, 194, 152, 159, 216, 102, 159, 27, + 19, 19, 143, 242, 229, 169, 255, 210, 159, 27, 116, 211, 49, 113, 201, 64, 45, 136, 255, 255, 255, 255, 216, 125, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 191, 65, 86, 27, 255, 255, 255, 255, 255, 255, 255, 251, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3747, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6564823570639147762" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8827ceeb5052b7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12091500674282022569" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2803434862753406564" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12171370065848092010" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12935002483946895275" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2778219431582759829" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16399351683602813112" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5b8" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11352475906794812991" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "231aca3bc942c4" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2659244958808991493" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6509147792608624468" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14914091761327221969" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6519528241038478674" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79909c93ac043c3c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c12c6ca67e61" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f89bae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7baa687439707663" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d9323844b053d61681" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15052503129408608123" + }, + "fields": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "db6118" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7624216f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "783ccb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5184447164613761212" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a07b1ca1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "95487446928807986" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4bf22cea0949e2e330a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c144f23465" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f59e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "339f1db005b79fb7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd4a34f797041c858e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7739631723680468730" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6503563777666083230" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8174794001239634218" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7385377321521577267" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12640065499836201506" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf1b5b1af0416d0ed2f2478827ceeb5052b71ba7cda3ccbbf9e6a91b26e7cd27895cde641ba8e9649694b2c56a418d1bb3825c3a007337ab1b268e37da7793fb951be3963377ffd990b842d5b8ff9fbf418a1b9d8c18b071af763fff47231aca3bc942c4ffbf1b24e78933648ee7051b5a55236e30f47f541bcef97f704d7d2cd11b5a7a0464ae39cd524879909c93ac043c3c46c12c6ca67e6143f89bae487baa687439707663ff49d9323844b053d61681d8669f1bd0e53bd838db177b9f8043db6118bf4117447624216f43783ccb1b47f2db3a539598bc44a07b1ca11b01533d53bab358324ae4bf22cea0949e2e330a45c144f2346542f59e48339f1db005b79fb749fd4a34f797041c858e1b6b68b20bde518efaff809f1b5a414ccc65e2699e1b7172b3d50be1f12a1b667e218b6584fd331baf6a889a27683a22ffffffff", + "cborBytes": [ + 159, 191, 27, 91, 26, 240, 65, 109, 14, 210, 242, 71, 136, 39, 206, 235, 80, 82, 183, 27, 167, 205, 163, 204, 187, + 249, 230, 169, 27, 38, 231, 205, 39, 137, 92, 222, 100, 27, 168, 233, 100, 150, 148, 178, 197, 106, 65, 141, 27, + 179, 130, 92, 58, 0, 115, 55, 171, 27, 38, 142, 55, 218, 119, 147, 251, 149, 27, 227, 150, 51, 119, 255, 217, 144, + 184, 66, 213, 184, 255, 159, 191, 65, 138, 27, 157, 140, 24, 176, 113, 175, 118, 63, 255, 71, 35, 26, 202, 59, + 201, 66, 196, 255, 191, 27, 36, 231, 137, 51, 100, 142, 231, 5, 27, 90, 85, 35, 110, 48, 244, 127, 84, 27, 206, + 249, 127, 112, 77, 125, 44, 209, 27, 90, 122, 4, 100, 174, 57, 205, 82, 72, 121, 144, 156, 147, 172, 4, 60, 60, + 70, 193, 44, 108, 166, 126, 97, 67, 248, 155, 174, 72, 123, 170, 104, 116, 57, 112, 118, 99, 255, 73, 217, 50, 56, + 68, 176, 83, 214, 22, 129, 216, 102, 159, 27, 208, 229, 59, 216, 56, 219, 23, 123, 159, 128, 67, 219, 97, 24, 191, + 65, 23, 68, 118, 36, 33, 111, 67, 120, 60, 203, 27, 71, 242, 219, 58, 83, 149, 152, 188, 68, 160, 123, 28, 161, + 27, 1, 83, 61, 83, 186, 179, 88, 50, 74, 228, 191, 34, 206, 160, 148, 158, 46, 51, 10, 69, 193, 68, 242, 52, 101, + 66, 245, 158, 72, 51, 159, 29, 176, 5, 183, 159, 183, 73, 253, 74, 52, 247, 151, 4, 28, 133, 142, 27, 107, 104, + 178, 11, 222, 81, 142, 250, 255, 128, 159, 27, 90, 65, 76, 204, 101, 226, 105, 158, 27, 113, 114, 179, 213, 11, + 225, 241, 42, 27, 102, 126, 33, 139, 101, 132, 253, 51, 27, 175, 106, 136, 154, 39, 104, 58, 34, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3748, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7f68ed7cdad6" + } + ] + } + ] + }, + "cborHex": "9f9f467f68ed7cdad6ffff", + "cborBytes": [159, 159, 70, 127, 104, 237, 124, 218, 214, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3749, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6f3ab466a95bfc" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6595e07c1056fa9e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4658d36fb" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33fa1d22baf471" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cb7a0aced" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f476f3ab466a95bfc9fbf486595e07c1056fa9e45e4658d36fbffbf4733fa1d22baf471458cb7a0acedffffff", + "cborBytes": [ + 159, 71, 111, 58, 180, 102, 169, 91, 252, 159, 191, 72, 101, 149, 224, 124, 16, 86, 250, 158, 69, 228, 101, 141, + 54, 251, 255, 191, 71, 51, 250, 29, 34, 186, 244, 113, 69, 140, 183, 160, 172, 237, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3750, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5547505064076690135" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13013320811696676190" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9feebb76e3f3ecd1d04a9ad4" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "78b748ee4bb0ce47c5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12034488132378127045" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2efe94a888" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14964062011806656483" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1235620163301644543" + } + }, + { + "_tag": "ByteArray", + "bytearray": "45863cee7b1b823f3713" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3195185042478081759" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f16ff21779c45f4bf4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16393810201075241707" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8177066172061031188" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6003fa865fb5cb3d90" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06c17f9dd07e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14531674306831320002" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8182471d6e06c540da9d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50b5443670cdcf8d7a4c7e9e" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4301371198922823999" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a61f57a362f5387783b9a9f" + } + ] + } + ] + }, + "cborHex": "9f1b4cfcb276bdf8c2d7bf1bb4989a54a960dd5e4c9feebb76e3f3ecd1d04a9ad4ff4978b748ee4bb0ce47c51ba7031731e80d6ac59f9f452efe94a8881bcfab071de2a727e31b1125cdfdeee798ff4a45863cee7b1b823f37131b2c5793de088c26dfffbf49f16ff21779c45f4bf41be38283850e43d2ebffbf1b717ac65c0a8f9b14496003fa865fb5cb3d904606c17f9dd07e1bc9aae0ca3a5a03c24a8182471d6e06c540da9d421cca418d4c50b5443670cdcf8d7a4c7e9eff1b3bb18a50d6e4193f4c9a61f57a362f5387783b9a9fffff", + "cborBytes": [ + 159, 27, 76, 252, 178, 118, 189, 248, 194, 215, 191, 27, 180, 152, 154, 84, 169, 96, 221, 94, 76, 159, 238, 187, + 118, 227, 243, 236, 209, 208, 74, 154, 212, 255, 73, 120, 183, 72, 238, 75, 176, 206, 71, 197, 27, 167, 3, 23, 49, + 232, 13, 106, 197, 159, 159, 69, 46, 254, 148, 168, 136, 27, 207, 171, 7, 29, 226, 167, 39, 227, 27, 17, 37, 205, + 253, 238, 231, 152, 255, 74, 69, 134, 60, 238, 123, 27, 130, 63, 55, 19, 27, 44, 87, 147, 222, 8, 140, 38, 223, + 255, 191, 73, 241, 111, 242, 23, 121, 196, 95, 75, 244, 27, 227, 130, 131, 133, 14, 67, 210, 235, 255, 191, 27, + 113, 122, 198, 92, 10, 143, 155, 20, 73, 96, 3, 250, 134, 95, 181, 203, 61, 144, 70, 6, 193, 127, 157, 208, 126, + 27, 201, 170, 224, 202, 58, 90, 3, 194, 74, 129, 130, 71, 29, 110, 6, 197, 64, 218, 157, 66, 28, 202, 65, 141, 76, + 80, 181, 68, 54, 112, 205, 207, 141, 122, 76, 126, 158, 255, 27, 59, 177, 138, 80, 214, 228, 25, 63, 76, 154, 97, + 245, 122, 54, 47, 83, 135, 120, 59, 154, 159, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3751, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5408210594149136771" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b4b0dd2e1a6c3798380ffff", + "cborBytes": [159, 216, 102, 159, 27, 75, 13, 210, 225, 166, 195, 121, 131, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3752, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9776749636569261897" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f6f9d667b68aa0514" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14667691791281863163" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15759301486832486753" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a9829596d20a86c" + }, + { + "_tag": "ByteArray", + "bytearray": "38" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1902950684519411335" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "55b48a07ce0b454fd9" + }, + { + "_tag": "ByteArray", + "bytearray": "82657b8bdc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15706468285141667363" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12524635569485970918" + } + }, + { + "_tag": "ByteArray", + "bytearray": "244fb9f9fc3c49b3b340a0" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4320388933663481212" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11773897115949712565" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8179539056224967305" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dda5fe907451e5d6e5df3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17186297073245863011" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11882529995161607361" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4075bec9ece8950c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c49a18aa712955" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b87adfdfeb9a3e749498f6f9d667b68aa05149f9f1bcb8e1bf8ae44b9fb1bdab44934b6ef8961480a9829596d20a86c41381b1a68a390b7ddae87ff9f4955b48a07ce0b454fd94582657b8bdc1bd9f895b05bcece23ff1badd071b12c6efde64b244fb9f9fc3c49b3b340a0bf1b3bf51ad8428a5d7c1ba365490bd22dc4b51b71838f6f40b91a894b2dda5fe907451e5d6e5df31bee81fe219727bc631ba4e73a1302881cc149c4075bec9ece8950c147c49a18aa712955ffffff", + "cborBytes": [ + 159, 27, 135, 173, 253, 254, 185, 163, 231, 73, 73, 143, 111, 157, 102, 123, 104, 170, 5, 20, 159, 159, 27, 203, + 142, 27, 248, 174, 68, 185, 251, 27, 218, 180, 73, 52, 182, 239, 137, 97, 72, 10, 152, 41, 89, 109, 32, 168, 108, + 65, 56, 27, 26, 104, 163, 144, 183, 221, 174, 135, 255, 159, 73, 85, 180, 138, 7, 206, 11, 69, 79, 217, 69, 130, + 101, 123, 139, 220, 27, 217, 248, 149, 176, 91, 206, 206, 35, 255, 27, 173, 208, 113, 177, 44, 110, 253, 230, 75, + 36, 79, 185, 249, 252, 60, 73, 179, 179, 64, 160, 191, 27, 59, 245, 26, 216, 66, 138, 93, 124, 27, 163, 101, 73, + 11, 210, 45, 196, 181, 27, 113, 131, 143, 111, 64, 185, 26, 137, 75, 45, 218, 95, 233, 7, 69, 30, 93, 110, 93, + 243, 27, 238, 129, 254, 33, 151, 39, 188, 99, 27, 164, 231, 58, 19, 2, 136, 28, 193, 73, 196, 7, 91, 236, 158, + 206, 137, 80, 193, 71, 196, 154, 24, 170, 113, 41, 85, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3753, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13879751776769405903" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62b548" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27004998808c23fa39f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7593267f54e673b1499" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "744ca299963790e0a0" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7042613650136074234" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7616483094744397427" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5195728803205828361" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9060000173299825871" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a5226a1432a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9579764229190339011" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acba6b7ec8b4ef8de8ab06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14402012606780959476" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16162721990444382468" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14432056266648937868" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2364950615069335233" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15051920347501596276" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "659484e11b" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9774725718833078654" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3fe95741" + }, + { + "_tag": "ByteArray", + "bytearray": "3ca8cb4d3e25035a" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4942260836587276496" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3aeb3d82e50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd1e" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "90d66c2c64547964" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15859233826263882990" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9475456474506996597" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14655974936133791904" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + }, + "cborHex": "9fbf1bc09ec8b3f0eff3cf4362b5484a27004998808c23fa39f64ab7593267f54e673b1499419949744ca299963790e0a0ffd8669f1b61bc63cd2aad87fa9fbf1b69b32f055401f6731b481aefd180594f091b7dbb9627da837ccf461a5226a1432a1b84f228cf88e249c34bacba6b7ec8b4ef8de8ab061bc7de3a2925e06af41be04d86043bd4f9041bc848f6b5d00f658c1b20d1fe0dea8c9ec11bd0e329cebc4e8e7445659484e11bffd8669f1b87a6cd40a7eba17e9f443fe95741483ca8cb4d3e25035affffbf41a11b4496700bb01c08d046c3aeb3d82e5042bd1eff9f4890d66c2c645479641bdc175123a0515cee1b837f9575dfaa2b751bcb647b8dc14870a0ffffff08ff", + "cborBytes": [ + 159, 191, 27, 192, 158, 200, 179, 240, 239, 243, 207, 67, 98, 181, 72, 74, 39, 0, 73, 152, 128, 140, 35, 250, 57, + 246, 74, 183, 89, 50, 103, 245, 78, 103, 59, 20, 153, 65, 153, 73, 116, 76, 162, 153, 150, 55, 144, 224, 160, 255, + 216, 102, 159, 27, 97, 188, 99, 205, 42, 173, 135, 250, 159, 191, 27, 105, 179, 47, 5, 84, 1, 246, 115, 27, 72, + 26, 239, 209, 128, 89, 79, 9, 27, 125, 187, 150, 39, 218, 131, 124, 207, 70, 26, 82, 38, 161, 67, 42, 27, 132, + 242, 40, 207, 136, 226, 73, 195, 75, 172, 186, 107, 126, 200, 180, 239, 141, 232, 171, 6, 27, 199, 222, 58, 41, + 37, 224, 106, 244, 27, 224, 77, 134, 4, 59, 212, 249, 4, 27, 200, 72, 246, 181, 208, 15, 101, 140, 27, 32, 209, + 254, 13, 234, 140, 158, 193, 27, 208, 227, 41, 206, 188, 78, 142, 116, 69, 101, 148, 132, 225, 27, 255, 216, 102, + 159, 27, 135, 166, 205, 64, 167, 235, 161, 126, 159, 68, 63, 233, 87, 65, 72, 60, 168, 203, 77, 62, 37, 3, 90, + 255, 255, 191, 65, 161, 27, 68, 150, 112, 11, 176, 28, 8, 208, 70, 195, 174, 179, 216, 46, 80, 66, 189, 30, 255, + 159, 72, 144, 214, 108, 44, 100, 84, 121, 100, 27, 220, 23, 81, 35, 160, 81, 92, 238, 27, 131, 127, 149, 117, 223, + 170, 43, 117, 27, 203, 100, 123, 141, 193, 72, 112, 160, 255, 255, 255, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3754, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "11" + } + ] + } + ] + }, + "cborHex": "9f9fa04111ffff", + "cborBytes": [159, 159, 160, 65, 17, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3755, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "884d63495564f1db" + } + ] + }, + "cborHex": "9f48884d63495564f1dbff", + "cborBytes": [159, 72, 136, 77, 99, 73, 85, 100, 241, 219, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3756, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "442947257033016453" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6585111866992377530" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ec488f268" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6769197082762656327" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7461594090915842602" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9aedc007c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4560754307928852316" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5140394226274890404" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d7c1111e3df30bc8684fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5585545248965087330" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8e678c25069" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10978894574402956974" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52fd1e2d" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15351937862376391609" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9386791508866037843" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cfbd03c82a0f" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1021730456587292551" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12488628155927152161" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7380459270584758239" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3620237495044191268" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4257be1a7e14c22e833" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8073273175919041249" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7f49e5e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5554042704488795181" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15729472283103925499" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c1826a68" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11889181197299532986" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d96f1eddb107a079fd6a2f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16ca1b498cb153fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8284b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50e908f884511cf28b73" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16549205252484776889" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7555b2047eae20233dc3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a87e7733a86580eb3cfe805" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d58804ee123" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15726101399967054810" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f953a9ddbfa0bdef0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08f655df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16019658456690546633" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ff127c89361af262e9" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b0625aa2ef5afc4859fbf1b5b63045a864a3eba453ec488f2681b5df104e1ccadba471b678ce84adf314a2a459aedc007c11b3f4b0de10fee875cffbf1b47565950569572a44b6d7c1111e3df30bc8684fa1b4d83d7cf796f506246b8e678c250691b985cde725dc06eae4452fd1e2dffffff1bd50d0a25d4d083b9809f9f1b82449524da9cf85346cfbd03c82a0fffbf1b0e2dea6fd9154f871bad508523e5fac6211b666ca89a6e716fdf1b323daad226a8b4244ad4257be1a7e14c22e8331b700a072df1581ae144d7f49e5e1b4d13ec69c4678c2dffffd8669f1bda4a4fb402c314fb9f9f44c1826a681ba4fedb4eaf4ac4baff4bd96f1eddb107a079fd6a2fbf4816ca1b498cb153fa43a8284b4a50e908f884511cf28b731be5aa967ee56243b94a7555b2047eae20233dc34c2a87e7733a86580eb3cfe805468d58804ee1231bda3e55e71ecf3bda499f953a9ddbfa0bdef04408f655df41a91bde51427d961f57c9ff49ff127c89361af262e9ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 6, 37, 170, 46, 245, 175, 196, 133, 159, 191, 27, 91, 99, 4, 90, 134, 74, 62, 186, 69, 62, + 196, 136, 242, 104, 27, 93, 241, 4, 225, 204, 173, 186, 71, 27, 103, 140, 232, 74, 223, 49, 74, 42, 69, 154, 237, + 192, 7, 193, 27, 63, 75, 13, 225, 15, 238, 135, 92, 255, 191, 27, 71, 86, 89, 80, 86, 149, 114, 164, 75, 109, 124, + 17, 17, 227, 223, 48, 188, 134, 132, 250, 27, 77, 131, 215, 207, 121, 111, 80, 98, 70, 184, 230, 120, 194, 80, + 105, 27, 152, 92, 222, 114, 93, 192, 110, 174, 68, 82, 253, 30, 45, 255, 255, 255, 27, 213, 13, 10, 37, 212, 208, + 131, 185, 128, 159, 159, 27, 130, 68, 149, 36, 218, 156, 248, 83, 70, 207, 189, 3, 200, 42, 15, 255, 191, 27, 14, + 45, 234, 111, 217, 21, 79, 135, 27, 173, 80, 133, 35, 229, 250, 198, 33, 27, 102, 108, 168, 154, 110, 113, 111, + 223, 27, 50, 61, 170, 210, 38, 168, 180, 36, 74, 212, 37, 123, 225, 167, 225, 76, 34, 232, 51, 27, 112, 10, 7, 45, + 241, 88, 26, 225, 68, 215, 244, 158, 94, 27, 77, 19, 236, 105, 196, 103, 140, 45, 255, 255, 216, 102, 159, 27, + 218, 74, 79, 180, 2, 195, 20, 251, 159, 159, 68, 193, 130, 106, 104, 27, 164, 254, 219, 78, 175, 74, 196, 186, + 255, 75, 217, 111, 30, 221, 177, 7, 160, 121, 253, 106, 47, 191, 72, 22, 202, 27, 73, 140, 177, 83, 250, 67, 168, + 40, 75, 74, 80, 233, 8, 248, 132, 81, 28, 242, 139, 115, 27, 229, 170, 150, 126, 229, 98, 67, 185, 74, 117, 85, + 178, 4, 126, 174, 32, 35, 61, 195, 76, 42, 135, 231, 115, 58, 134, 88, 14, 179, 207, 232, 5, 70, 141, 88, 128, 78, + 225, 35, 27, 218, 62, 85, 231, 30, 207, 59, 218, 73, 159, 149, 58, 157, 219, 250, 11, 222, 240, 68, 8, 246, 85, + 223, 65, 169, 27, 222, 81, 66, 125, 150, 31, 87, 201, 255, 73, 255, 18, 124, 137, 54, 26, 242, 98, 233, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3757, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "80" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16058550659951977620" + }, + "fields": [] + } + ] + }, + "cborHex": "9f4180d87e80d8669f1bdedb6ebe4e0d649480ffff", + "cborBytes": [159, 65, 128, 216, 126, 128, 216, 102, 159, 27, 222, 219, 110, 190, 78, 13, 100, 148, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3758, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15106358605718355675" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2149154830586419135" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10918577186877149211" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf" + }, + { + "_tag": "ByteArray", + "bytearray": "e5af3829db8c3c8aa6" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df7d4709afb59f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bd189ae149418e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e6637e7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3286689035890227599" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15401351174687839184" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6730671879252833600" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b758cb7bb812e9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8114735388442425964" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9770722d07" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7579813379986292822" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0ee3c99e" + }, + { + "_tag": "ByteArray", + "bytearray": "21d39d2afb42" + }, + { + "_tag": "ByteArray", + "bytearray": "2d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7797573773154661947" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e6fd403ce868311e584e" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1971802378660943561" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7661094685936846472" + } + }, + { + "_tag": "ByteArray", + "bytearray": "21" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4baf96bd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4572098292989777566" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1508188696882158736" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c8525b5e172ac9d51da5e9" + } + ] + }, + "cborHex": "9f9fa0a0d8669f1bd1a4911d6f81fedb9f1b1dd354ee846b17bf1b9786941a347f101b41bf49e5af3829db8c3c8aa6ffffffbf410147df7d4709afb59f482bd189ae149418e94136448e6637e71b2d9caa43b768798fffd8669f1bd5bc974b245053d09fd8669f1b5d682669de9375409f47b758cb7bb812e91b709d54d79266fa6c459770722d07ffffd8669f1b6930e81c09d600569f440ee3c99e4621d39d2afb42412d1b6c368c088ac9363b4ae6fd403ce868311e584effffd8669f1b1b5d3fd0fb5b16c99f1b6a51ad06d1e606884121ffffa0bf444baf96bd1b3f735b2c67d3569e41ff1b14ee29a10beb9c90ffffff4bc8525b5e172ac9d51da5e9ff", + "cborBytes": [ + 159, 159, 160, 160, 216, 102, 159, 27, 209, 164, 145, 29, 111, 129, 254, 219, 159, 27, 29, 211, 84, 238, 132, 107, + 23, 191, 27, 151, 134, 148, 26, 52, 127, 16, 27, 65, 191, 73, 229, 175, 56, 41, 219, 140, 60, 138, 166, 255, 255, + 255, 191, 65, 1, 71, 223, 125, 71, 9, 175, 181, 159, 72, 43, 209, 137, 174, 20, 148, 24, 233, 65, 54, 68, 142, + 102, 55, 231, 27, 45, 156, 170, 67, 183, 104, 121, 143, 255, 216, 102, 159, 27, 213, 188, 151, 75, 36, 80, 83, + 208, 159, 216, 102, 159, 27, 93, 104, 38, 105, 222, 147, 117, 64, 159, 71, 183, 88, 203, 123, 184, 18, 233, 27, + 112, 157, 84, 215, 146, 102, 250, 108, 69, 151, 112, 114, 45, 7, 255, 255, 216, 102, 159, 27, 105, 48, 232, 28, 9, + 214, 0, 86, 159, 68, 14, 227, 201, 158, 70, 33, 211, 157, 42, 251, 66, 65, 45, 27, 108, 54, 140, 8, 138, 201, 54, + 59, 74, 230, 253, 64, 60, 232, 104, 49, 30, 88, 78, 255, 255, 216, 102, 159, 27, 27, 93, 63, 208, 251, 91, 22, + 201, 159, 27, 106, 81, 173, 6, 209, 230, 6, 136, 65, 33, 255, 255, 160, 191, 68, 75, 175, 150, 189, 27, 63, 115, + 91, 44, 103, 211, 86, 158, 65, 255, 27, 20, 238, 41, 161, 11, 235, 156, 144, 255, 255, 255, 75, 200, 82, 91, 94, + 23, 42, 201, 213, 29, 165, 233, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3759, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3931663720365504292" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14610157539332220895" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a1c6c3" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "afbe9c436aa4206928" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4660327058282582072" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "807979579256335438" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14272992505758873003" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2629933595843427771" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17116934534635723876" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2940386183263520268" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "028c655c0148ab9046" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5853374194456088136" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18382600971791790073" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16053783297454194316" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2349aa09190719062de5" + } + } + ] + } + ] + }, + "cborHex": "9f9f1b36901352a4ad3724ff9fd8669f1bcac1b4dfc46467df9f43a1c6c3ffffff49afbe9c436aa4206928bf1b40accec49e13103841ddffbf1b0b3685257f57ec4e1bc613db0ffb91f5ab1b247f66abe31cfdbb1bed8b914514941c641b28ce59a7a3e3860c49028c655c0148ab90461b513b5cd13dfe4e481bff1c1e304b666ff91bdeca7eda39db3e8c4a2349aa09190719062de5ffff", + "cborBytes": [ + 159, 159, 27, 54, 144, 19, 82, 164, 173, 55, 36, 255, 159, 216, 102, 159, 27, 202, 193, 180, 223, 196, 100, 103, + 223, 159, 67, 161, 198, 195, 255, 255, 255, 73, 175, 190, 156, 67, 106, 164, 32, 105, 40, 191, 27, 64, 172, 206, + 196, 158, 19, 16, 56, 65, 221, 255, 191, 27, 11, 54, 133, 37, 127, 87, 236, 78, 27, 198, 19, 219, 15, 251, 145, + 245, 171, 27, 36, 127, 102, 171, 227, 28, 253, 187, 27, 237, 139, 145, 69, 20, 148, 28, 100, 27, 40, 206, 89, 167, + 163, 227, 134, 12, 73, 2, 140, 101, 92, 1, 72, 171, 144, 70, 27, 81, 59, 92, 209, 61, 254, 78, 72, 27, 255, 28, + 30, 48, 75, 102, 111, 249, 27, 222, 202, 126, 218, 57, 219, 62, 140, 74, 35, 73, 170, 9, 25, 7, 25, 6, 45, 229, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3760, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eb0cbf8bf1055b87cf27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3753901991984702850" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9743065208282758537" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9883cb" + }, + { + "_tag": "ByteArray", + "bytearray": "365e024f1eaafb" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11908746428862737442" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7507479828890133011" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8128e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11444331477264314116" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7c870d9d8054" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "102565259891165672" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b06d0294dc859" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4768672999348443217" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16539906851507860551" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5407323381566006171" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15751544032264478372" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11443282856074081878" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2918292736224778524" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13141975797820146998" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11398458809595673586" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16401976873926162745" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "624b3641730c8c4b518456b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10714372155591809478" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "668ca32b9d75a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8055290400151172563" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "789d44e4018f2d0a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f3a56e71154538221b12fef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a51c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b09df190fc192d8278" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d69788576cc5bf1bb7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1950446544437841755" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "84480e7f4c968c929fdab30e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17573337342437638182" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9995600827820961614" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "591116520341452096" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b114a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5288267546440419339" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfd07b97aaef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11296974673173832630" + } + } + } + ] + } + ] + }, + "cborHex": "9f4aeb0cbf8bf1055b87cf271b341889f901e125829fd8669f1b8736522f9b293d899f439883cb47365e024f1eaafbffff1ba5445dc82490ac22d8669f1b682fed20c76822139f43f8128e1b9ed26ed80a292f04467c870d9d80541b016c628f7a1bc9e8474b06d0294dc859ffffbf1b422dbad3d02918511be5898da6362cf4471b4b0aabf75fe7e39b1bda98b9d7930c5ea41b9eceb520e49cf6561b287fdbc82547d91c1bb661ad5be3d9c5361b9e2f75e54cdf3bf2ffbf41091be39f8710c08a79394c624b3641730c8c4b518456b71b94b118b55562d9c647668ca32b9d75a71b6fca23f0af9ff5d348789d44e4018f2d0a4c5f3a56e71154538221b12fef438a51c649b09df190fc192d827849d69788576cc5bf1bb71b1b1160cc5a9b0f5bffff9fa04c84480e7f4c968c929fdab30e1bf3e10934961a40261b8ab781fe72de6f4e1b08341157e7d13540ffbf430b114a1b4963b350a6cec80b46dfd07b97aaef1b9cc6ea9c7f1c63b6ffff", + "cborBytes": [ + 159, 74, 235, 12, 191, 139, 241, 5, 91, 135, 207, 39, 27, 52, 24, 137, 249, 1, 225, 37, 130, 159, 216, 102, 159, + 27, 135, 54, 82, 47, 155, 41, 61, 137, 159, 67, 152, 131, 203, 71, 54, 94, 2, 79, 30, 170, 251, 255, 255, 27, 165, + 68, 93, 200, 36, 144, 172, 34, 216, 102, 159, 27, 104, 47, 237, 32, 199, 104, 34, 19, 159, 67, 248, 18, 142, 27, + 158, 210, 110, 216, 10, 41, 47, 4, 70, 124, 135, 13, 157, 128, 84, 27, 1, 108, 98, 143, 122, 27, 201, 232, 71, 75, + 6, 208, 41, 77, 200, 89, 255, 255, 191, 27, 66, 45, 186, 211, 208, 41, 24, 81, 27, 229, 137, 141, 166, 54, 44, + 244, 71, 27, 75, 10, 171, 247, 95, 231, 227, 155, 27, 218, 152, 185, 215, 147, 12, 94, 164, 27, 158, 206, 181, 32, + 228, 156, 246, 86, 27, 40, 127, 219, 200, 37, 71, 217, 28, 27, 182, 97, 173, 91, 227, 217, 197, 54, 27, 158, 47, + 117, 229, 76, 223, 59, 242, 255, 191, 65, 9, 27, 227, 159, 135, 16, 192, 138, 121, 57, 76, 98, 75, 54, 65, 115, + 12, 140, 75, 81, 132, 86, 183, 27, 148, 177, 24, 181, 85, 98, 217, 198, 71, 102, 140, 163, 43, 157, 117, 167, 27, + 111, 202, 35, 240, 175, 159, 245, 211, 72, 120, 157, 68, 228, 1, 143, 45, 10, 76, 95, 58, 86, 231, 17, 84, 83, + 130, 33, 177, 47, 239, 67, 138, 81, 198, 73, 176, 157, 241, 144, 252, 25, 45, 130, 120, 73, 214, 151, 136, 87, + 108, 197, 191, 27, 183, 27, 27, 17, 96, 204, 90, 155, 15, 91, 255, 255, 159, 160, 76, 132, 72, 14, 127, 76, 150, + 140, 146, 159, 218, 179, 14, 27, 243, 225, 9, 52, 150, 26, 64, 38, 27, 138, 183, 129, 254, 114, 222, 111, 78, 27, + 8, 52, 17, 87, 231, 209, 53, 64, 255, 191, 67, 11, 17, 74, 27, 73, 99, 179, 80, 166, 206, 200, 11, 70, 223, 208, + 123, 151, 170, 239, 27, 156, 198, 234, 156, 127, 28, 99, 182, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3761, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ef5f7d2b000304fb05861200" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "033b79f5d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16278517873963022215" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd6eac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af4411a0dddc4c5bb7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20" + } + } + ] + } + ] + }, + "cborHex": "9f4cef5f7d2b000304fb05861200bf45033b79f5d11be1e8e9c25369b78743bd6eac49af4411a0dddc4c5bb741df4120ffff", + "cborBytes": [ + 159, 76, 239, 95, 125, 43, 0, 3, 4, 251, 5, 134, 18, 0, 191, 69, 3, 59, 121, 245, 209, 27, 225, 232, 233, 194, 83, + 105, 183, 135, 67, 189, 110, 172, 73, 175, 68, 17, 160, 221, 220, 76, 91, 183, 65, 223, 65, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3762, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5571368717061852799" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "db4103dc4f" + }, + { + "_tag": "ByteArray", + "bytearray": "1e0ef2ddfe126f17c7fd8d" + }, + { + "_tag": "ByteArray", + "bytearray": "0e9451d652b834052519" + }, + { + "_tag": "ByteArray", + "bytearray": "cf69d843e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17792530994729124468" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ff1a63" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "714358178571985237" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "868abe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10659213207886050144" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11609162157856156884" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11975980312704922078" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5154108884737491842" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + }, + "cborHex": "9f9fd8669f1b4d517a546d320e7f9f45db4103dc4f4b1e0ef2ddfe126f17c7fd8d4a0e9451d652b83405251945cf69d843e81bf6ebc4abbbf50274ffff43ff1a63bf1b09e9e8fa842da15543868abe1b93ed21f0093333601ba11c07797eec6cd41ba6333aa497d931de1b478712b918768382ffff0aff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 77, 81, 122, 84, 109, 50, 14, 127, 159, 69, 219, 65, 3, 220, 79, 75, 30, 14, 242, + 221, 254, 18, 111, 23, 199, 253, 141, 74, 14, 148, 81, 214, 82, 184, 52, 5, 37, 25, 69, 207, 105, 216, 67, 232, + 27, 246, 235, 196, 171, 187, 245, 2, 116, 255, 255, 67, 255, 26, 99, 191, 27, 9, 233, 232, 250, 132, 45, 161, 85, + 67, 134, 138, 190, 27, 147, 237, 33, 240, 9, 51, 51, 96, 27, 161, 28, 7, 121, 126, 236, 108, 212, 27, 166, 51, 58, + 164, 151, 217, 49, 222, 27, 71, 135, 18, 185, 24, 118, 131, 130, 255, 255, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3763, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16651996112155102570" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b8ebac7cf48b2c6ca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f64bc87e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3536713199465237089" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcbb300bc02b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ccada322edc" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8957970211041341008" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "353f5275609c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2979458698323311306" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12066197561786155831" + } + } + ] + }, + "cborHex": "9fbf1be717c63cea30cd6a499b8ebac7cf48b2c6ca452f64bc87e31b3114edeaa68f8a6146dcbb300bc02b464ccada322edcffd8669f1b7c511a7211a66e509f46353f5275609c1b295929e678823acaffff1ba773bec0c3f2c337ff", + "cborBytes": [ + 159, 191, 27, 231, 23, 198, 60, 234, 48, 205, 106, 73, 155, 142, 186, 199, 207, 72, 178, 198, 202, 69, 47, 100, + 188, 135, 227, 27, 49, 20, 237, 234, 166, 143, 138, 97, 70, 220, 187, 48, 11, 192, 43, 70, 76, 202, 218, 50, 46, + 220, 255, 216, 102, 159, 27, 124, 81, 26, 114, 17, 166, 110, 80, 159, 70, 53, 63, 82, 117, 96, 156, 27, 41, 89, + 41, 230, 120, 130, 58, 202, 255, 255, 27, 167, 115, 190, 192, 195, 242, 195, 55, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3764, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "934b0820d289" + } + ] + }, + "cborHex": "9f46934b0820d289ff", + "cborBytes": [159, 70, 147, 75, 8, 32, 210, 137, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3765, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7e5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8566410667593037491" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14490713328569181796" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0052b2a2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17559140916874242188" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f29ccd4c83df7" + } + } + ] + } + ] + }, + "cborHex": "9fbf0b42d7e50e1b76e2011d89fff6b310051bc9195aff4b626664440052b2a21bf3ae99a1af50e88c0c1bfffffffffffffff3473f29ccd4c83df7ffff", + "cborBytes": [ + 159, 191, 11, 66, 215, 229, 14, 27, 118, 226, 1, 29, 137, 255, 246, 179, 16, 5, 27, 201, 25, 90, 255, 75, 98, 102, + 100, 68, 0, 82, 178, 162, 27, 243, 174, 153, 161, 175, 80, 232, 140, 12, 27, 255, 255, 255, 255, 255, 255, 255, + 243, 71, 63, 41, 204, 212, 200, 61, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3766, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2278f0873671f8" + } + ] + }, + "cborHex": "9f472278f0873671f8ff", + "cborBytes": [159, 71, 34, 120, 240, 135, 54, 113, 248, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3767, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10564437154189030242" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b1" + } + ] + }, + "cborHex": "9f1b929c6b9e7360336241b1ff", + "cborBytes": [159, 27, 146, 156, 107, 158, 115, 96, 51, 98, 65, 177, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3768, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7e32e4877a4ec29a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7559487367692873710" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16834218002203982803" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2409594623981114691" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1159444274300780220" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17848774936000215001" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10936618478869237714" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f487e32e4877a4ec29ad8669f1b68e8b1b58362efee9f1be99f2814dcdabbd31b2170998b3f15d5431b10172c6caa8efebc9f1bf7b3963cc83037d91b97c6ac8fd4f94fd2ffffffff", + "cborBytes": [ + 159, 72, 126, 50, 228, 135, 122, 78, 194, 154, 216, 102, 159, 27, 104, 232, 177, 181, 131, 98, 239, 238, 159, 27, + 233, 159, 40, 20, 220, 218, 187, 211, 27, 33, 112, 153, 139, 63, 21, 213, 67, 27, 16, 23, 44, 108, 170, 142, 254, + 188, 159, 27, 247, 179, 150, 60, 200, 48, 55, 217, 27, 151, 198, 172, 143, 212, 249, 79, 210, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3769, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7bf6" + }, + { + "_tag": "ByteArray", + "bytearray": "c5b5c196" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1591868544859898073" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1442011893619366064" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cc5e0399f94a04539f" + } + ] + } + ] + }, + "cborHex": "9f809f9f427bf644c5b5c1961b16177401e97e00d91b14030e2d591218b0ff49cc5e0399f94a04539fffff", + "cborBytes": [ + 159, 128, 159, 159, 66, 123, 246, 68, 197, 181, 193, 150, 27, 22, 23, 116, 1, 233, 126, 0, 217, 27, 20, 3, 14, 45, + 89, 18, 24, 176, 255, 73, 204, 94, 3, 153, 249, 74, 4, 83, 159, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3770, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa01f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4465319205557288172" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00908f6100dbfa02ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9602332462866408735" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11354074658243014905" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11510015379077257395" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dbaead0cfa00fb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf0e43fa01f81b3df80028bff8bcec4900908f6100dbfa02ff1b8542567fe85aa51f1b9d91c6bec5d6f0f91b9fbbca012d2ed8b347dbaead0cfa00fb1bfffffffffffffffa0fffff", + "cborBytes": [ + 159, 191, 14, 67, 250, 1, 248, 27, 61, 248, 0, 40, 191, 248, 188, 236, 73, 0, 144, 143, 97, 0, 219, 250, 2, 255, + 27, 133, 66, 86, 127, 232, 90, 165, 31, 27, 157, 145, 198, 190, 197, 214, 240, 249, 27, 159, 187, 202, 1, 45, 46, + 216, 179, 71, 219, 174, 173, 12, 250, 0, 251, 27, 255, 255, 255, 255, 255, 255, 255, 250, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3771, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3279469827376072458" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13310772877949725349" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6562431871795629210" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3126269853403000703" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2983264217098869179" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6456992066340928332" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4827281154278648000" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11909223908627312896" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7602131379674875187" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16180610493918529061" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9939ecc05d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13675605501727286701" + } + }, + { + "_tag": "ByteArray", + "bytearray": "82a5130d" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4367911429301295359" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6004" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10844841777151150280" + } + } + ] + }, + "cborHex": "9fd8669f1b2d83046ec05cc70a9f1bb8b95d68b418eaa5d8669f1b5b127104a5148c9a9f1b2b62bdde34192f7f1b2966aeffdb4fd9bbffffbf1b599bd812dfc43b4c1b42fdf2a23fb768c01ba546100c1051f1001b69803236455f05331be08d138402f8c625459939ecc05dff1bbdc982bf52d525ad4482a5130dffff9f1b3c9df04d81df58ff426004ffa01b96809e234c6908c8ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 45, 131, 4, 110, 192, 92, 199, 10, 159, 27, 184, 185, 93, 104, 180, 24, 234, 165, 216, + 102, 159, 27, 91, 18, 113, 4, 165, 20, 140, 154, 159, 27, 43, 98, 189, 222, 52, 25, 47, 127, 27, 41, 102, 174, + 255, 219, 79, 217, 187, 255, 255, 191, 27, 89, 155, 216, 18, 223, 196, 59, 76, 27, 66, 253, 242, 162, 63, 183, + 104, 192, 27, 165, 70, 16, 12, 16, 81, 241, 0, 27, 105, 128, 50, 54, 69, 95, 5, 51, 27, 224, 141, 19, 132, 2, 248, + 198, 37, 69, 153, 57, 236, 192, 93, 255, 27, 189, 201, 130, 191, 82, 213, 37, 173, 68, 130, 165, 19, 13, 255, 255, + 159, 27, 60, 157, 240, 77, 129, 223, 88, 255, 66, 96, 4, 255, 160, 27, 150, 128, 158, 35, 76, 105, 8, 200, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3772, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3822887513778091284" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5731616471310280643" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7144811763904937191" + } + }, + { + "_tag": "ByteArray", + "bytearray": "be237a4db3b40eda65f4" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd87d9fd8669f1b350d9ff07304f5149f1b4f8acad0313a27c31b63277871c695fce74abe237a4db3b40eda65f4ffffffff", + "cborBytes": [ + 159, 216, 125, 159, 216, 102, 159, 27, 53, 13, 159, 240, 115, 4, 245, 20, 159, 27, 79, 138, 202, 208, 49, 58, 39, + 195, 27, 99, 39, 120, 113, 198, 149, 252, 231, 74, 190, 35, 122, 77, 179, 180, 14, 218, 101, 244, 255, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3773, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7465514446581852956" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + }, + "cborHex": "9fd905049fd8669f1b679ad5d5ce0eeb1c80ffffa005ff", + "cborBytes": [ + 159, 217, 5, 4, 159, 216, 102, 159, 27, 103, 154, 213, 213, 206, 14, 235, 28, 128, 255, 255, 160, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3774, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a" + } + ] + }, + "cborHex": "9f419aff", + "cborBytes": [159, 65, 154, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3775, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12946755801429319781" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae0d46e3" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15620711161526080250" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10904909929849478968" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5a4bd3572785" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1275374443416641453" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3534745237983089562" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "38ffb885007a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdce4256bf03da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c292" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8933376625291376910" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7726783700003727322" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5060030299969538723" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6277125210229550658" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18134152965907790104" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2359a1880fa1994744165cbc" + }, + { + "_tag": "ByteArray", + "bytearray": "7dd8182ffebae6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16927152315743875302" + } + }, + { + "_tag": "ByteArray", + "bytearray": "67c4248a17587752033a" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bb3ac1dce79ec20659fa0bf415044ae0d46e3ff9f1bd8c7ea0a11bdd2fa1b975605cdf44edf38465a4bd35727851b11b30a4c8f75dfad1b310df010e97c539affa0ffbf4638ffb885007a41cf47bdce4256bf03da42c292ffd8669f1b7bf9bab5ab45390e9f1b6b3b0cd63f0027da1b4638d6bfa665caa3d8669f1b571cd41efe61ae429f1bfba9740b2b87b9184c2359a1880fa1994744165cbc477dd8182ffebae61beae95358e6d830e64a67c4248a17587752033affffffffff", + "cborBytes": [ + 159, 27, 179, 172, 29, 206, 121, 236, 32, 101, 159, 160, 191, 65, 80, 68, 174, 13, 70, 227, 255, 159, 27, 216, + 199, 234, 10, 17, 189, 210, 250, 27, 151, 86, 5, 205, 244, 78, 223, 56, 70, 90, 75, 211, 87, 39, 133, 27, 17, 179, + 10, 76, 143, 117, 223, 173, 27, 49, 13, 240, 16, 233, 124, 83, 154, 255, 160, 255, 191, 70, 56, 255, 184, 133, 0, + 122, 65, 207, 71, 189, 206, 66, 86, 191, 3, 218, 66, 194, 146, 255, 216, 102, 159, 27, 123, 249, 186, 181, 171, + 69, 57, 14, 159, 27, 107, 59, 12, 214, 63, 0, 39, 218, 27, 70, 56, 214, 191, 166, 101, 202, 163, 216, 102, 159, + 27, 87, 28, 212, 30, 254, 97, 174, 66, 159, 27, 251, 169, 116, 11, 43, 135, 185, 24, 76, 35, 89, 161, 136, 15, + 161, 153, 71, 68, 22, 92, 188, 71, 125, 216, 24, 47, 254, 186, 230, 27, 234, 233, 83, 88, 230, 216, 48, 230, 74, + 103, 196, 36, 138, 23, 88, 119, 82, 3, 58, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3776, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5128638191531909305" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14146111566745618425" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6286752916716527678" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19c89143" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6683871797275468878" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16442453540685020454" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11834168505699153815" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5f0ab60e10fe2f" + }, + { + "_tag": "ByteArray", + "bytearray": "2ea9f9f9ac8ad6bd59" + }, + { + "_tag": "ByteArray", + "bytearray": "5ab1bf47feda" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17772060585632292992" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8480120567343023335" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8749382437050399802" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8929484013306292056" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7769" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17123306998647329547" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4041c89b10fbef8ee10142" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1350375493766082591" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15f9b8feddbb0785dc99" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5645993160684645519" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e5a694e29b11064b5fa5e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad4dea3073" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e129c88ee5f68b4c74ca48fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c37b33ba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e644" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0755bfbb2c501d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13776953062654110248" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6375105239787619740" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5324454721219844607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14763432056192342925" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3183723611468009021" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3b8f82ee" + }, + { + "_tag": "ByteArray", + "bytearray": "a5f96afd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9681561079634701698" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9510658376466397149" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14672588934461077414" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "192201d59234e4b904c3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9859d7bb03acf2bf5234d7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "396dcaf93f9c009ee7e58c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15114323420876983989" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d020002a72f3f0d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13537447141308790109" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca85" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "206158c52549" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f284" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14182528173915204834" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b472c954333c2e0b99fbf1bc451158548eac7f91b573f0878178a203e4419c891431b5cc1e1fca8db244effffff9f1be42f54612064fd26d8669f1ba43b698e4a5037979f475f0ab60e10fe2f492ea9f9f9ac8ad6bd59465ab1bf47feda1bf6a30af1355560801b75af70b9f4f704e7ffffa0d8669f1b796c0cf8646e3c3a9f1b7bebe66650a6a7584277691beda234fdfa55930b4b4041c89b10fbef8ee101421b12bd7f5b6351f01fffffffbf4a15f9b8feddbb0785dc991b4e5a98ddaae4ac8f4b6e5a694e29b11064b5fa5e45ad4dea30734ce129c88ee5f68b4c74ca48fc44c37b33ba42e64448f0755bfbb2c501d141ea1bbf3191d12aba6a28ff9f9f1b5878ec705745c59cffd8669f1b49e4435bd8f5d9ff9f1bcce23f3c2ef59b8dffffd8669f1b2c2edbc1ac930e3d9f443b8f82ee44a5f96afd1b865bd081bedfad821b83fca5675d5f77dd1bcb9f81e5ade137a6ffffffbf4a192201d59234e4b904c34b9859d7bb03acf2bf5234d74b396dcaf93f9c009ee7e58c1bd1c0dd1279bd4eb5487d020002a72f3f0d1bbbdeac735756755d42ca8546206158c5254942f2841bc4d2763b5f2f6ce2ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 71, 44, 149, 67, 51, 194, 224, 185, 159, 191, 27, 196, 81, 21, 133, 72, 234, 199, 249, 27, + 87, 63, 8, 120, 23, 138, 32, 62, 68, 25, 200, 145, 67, 27, 92, 193, 225, 252, 168, 219, 36, 78, 255, 255, 255, + 159, 27, 228, 47, 84, 97, 32, 100, 253, 38, 216, 102, 159, 27, 164, 59, 105, 142, 74, 80, 55, 151, 159, 71, 95, + 10, 182, 14, 16, 254, 47, 73, 46, 169, 249, 249, 172, 138, 214, 189, 89, 70, 90, 177, 191, 71, 254, 218, 27, 246, + 163, 10, 241, 53, 85, 96, 128, 27, 117, 175, 112, 185, 244, 247, 4, 231, 255, 255, 160, 216, 102, 159, 27, 121, + 108, 12, 248, 100, 110, 60, 58, 159, 27, 123, 235, 230, 102, 80, 166, 167, 88, 66, 119, 105, 27, 237, 162, 52, + 253, 250, 85, 147, 11, 75, 64, 65, 200, 155, 16, 251, 239, 142, 225, 1, 66, 27, 18, 189, 127, 91, 99, 81, 240, 31, + 255, 255, 255, 191, 74, 21, 249, 184, 254, 221, 187, 7, 133, 220, 153, 27, 78, 90, 152, 221, 170, 228, 172, 143, + 75, 110, 90, 105, 78, 41, 177, 16, 100, 181, 250, 94, 69, 173, 77, 234, 48, 115, 76, 225, 41, 200, 142, 229, 246, + 139, 76, 116, 202, 72, 252, 68, 195, 123, 51, 186, 66, 230, 68, 72, 240, 117, 91, 251, 178, 197, 1, 209, 65, 234, + 27, 191, 49, 145, 209, 42, 186, 106, 40, 255, 159, 159, 27, 88, 120, 236, 112, 87, 69, 197, 156, 255, 216, 102, + 159, 27, 73, 228, 67, 91, 216, 245, 217, 255, 159, 27, 204, 226, 63, 60, 46, 245, 155, 141, 255, 255, 216, 102, + 159, 27, 44, 46, 219, 193, 172, 147, 14, 61, 159, 68, 59, 143, 130, 238, 68, 165, 249, 106, 253, 27, 134, 91, 208, + 129, 190, 223, 173, 130, 27, 131, 252, 165, 103, 93, 95, 119, 221, 27, 203, 159, 129, 229, 173, 225, 55, 166, 255, + 255, 255, 191, 74, 25, 34, 1, 213, 146, 52, 228, 185, 4, 195, 75, 152, 89, 215, 187, 3, 172, 242, 191, 82, 52, + 215, 75, 57, 109, 202, 249, 63, 156, 0, 158, 231, 229, 140, 27, 209, 192, 221, 18, 121, 189, 78, 181, 72, 125, 2, + 0, 2, 167, 47, 63, 13, 27, 187, 222, 172, 115, 87, 86, 117, 93, 66, 202, 133, 70, 32, 97, 88, 197, 37, 73, 66, + 242, 132, 27, 196, 210, 118, 59, 95, 47, 108, 226, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3777, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "169c87c9a94eba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d9a5ccf76ca4401" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "284e0b2985" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3341273860119625397" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3afe7ad6b23411" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e1d1a6b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6394922539150266089" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e107b51e2b10af94f86c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9330bc4646c4ea263dd1d4" + } + } + ] + } + ] + }, + "cborHex": "9fbf47169c87c9a94eba480d9a5ccf76ca440145284e0b29851b2e5e96df79ba7eb5412c473afe7ad6b23411442e1d1a6b1b58bf542ae830cee94ae107b51e2b10af94f86c4b9330bc4646c4ea263dd1d4ffff", + "cborBytes": [ + 159, 191, 71, 22, 156, 135, 201, 169, 78, 186, 72, 13, 154, 92, 207, 118, 202, 68, 1, 69, 40, 78, 11, 41, 133, 27, + 46, 94, 150, 223, 121, 186, 126, 181, 65, 44, 71, 58, 254, 122, 214, 178, 52, 17, 68, 46, 29, 26, 107, 27, 88, + 191, 84, 42, 232, 48, 206, 233, 74, 225, 7, 181, 30, 43, 16, 175, 148, 248, 108, 75, 147, 48, 188, 70, 70, 196, + 234, 38, 61, 209, 212, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3778, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17705445111000239355" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2919ab4bf6bb7d4da2" + }, + { + "_tag": "ByteArray", + "bytearray": "9e39be7bdb9802" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6480640126743921513" + } + } + ] + }, + "cborHex": "9f1bf5b660855f588cfb492919ab4bf6bb7d4da2479e39be7bdb98021b59efdbdbffb6c369ff", + "cborBytes": [ + 159, 27, 245, 182, 96, 133, 95, 88, 140, 251, 73, 41, 25, 171, 75, 246, 187, 125, 77, 162, 71, 158, 57, 190, 123, + 219, 152, 2, 27, 89, 239, 219, 219, 255, 182, 195, 105, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3779, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14050782416842325495" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05dffe37" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13658289399545936951" + } + }, + { + "_tag": "ByteArray", + "bytearray": "118b" + }, + { + "_tag": "ByteArray", + "bytearray": "99c0" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1bc2fe6829f430fdf74405dffe379f9f1bbd8bfdd81b6b3c3742118b4299c0ffffff", + "cborBytes": [ + 159, 27, 194, 254, 104, 41, 244, 48, 253, 247, 68, 5, 223, 254, 55, 159, 159, 27, 189, 139, 253, 216, 27, 107, 60, + 55, 66, 17, 139, 66, 153, 192, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3780, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1796639030183616745" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e8161813519794" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b18eef1adcfb260e99f47e8161813519794ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 24, 238, 241, 173, 207, 178, 96, 233, 159, 71, 232, 22, 24, 19, 81, 151, 148, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3781, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "547910404321547805" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec0322fd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1084718523966648127" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17125019610998281997" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3076779189115155992" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "247301303961360923" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4652886684970254640" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15612238088863114505" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9187410715482113531" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e32cbcffcca5719e" + } + } + ] + } + ] + }, + "cborHex": "9f80bf1b079a919c1a53961d44ec0322fd1b0f0db1c01e516f3f1beda84a9a9d26970d1b2ab2ea5efb85f6181b036e9739c71b9a1b1b40925fc9b5cc01301bd8a9cfd31b8265091b7f803d5e65edc5fb48e32cbcffcca5719effff", + "cborBytes": [ + 159, 128, 191, 27, 7, 154, 145, 156, 26, 83, 150, 29, 68, 236, 3, 34, 253, 27, 15, 13, 177, 192, 30, 81, 111, 63, + 27, 237, 168, 74, 154, 157, 38, 151, 13, 27, 42, 178, 234, 94, 251, 133, 246, 24, 27, 3, 110, 151, 57, 199, 27, + 154, 27, 27, 64, 146, 95, 201, 181, 204, 1, 48, 27, 216, 169, 207, 211, 27, 130, 101, 9, 27, 127, 128, 61, 94, + 101, 237, 197, 251, 72, 227, 44, 188, 255, 204, 165, 113, 158, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3782, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4999224816458099170" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15563890102611054551" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9724258923866429250" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "156aae8c0914" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9893274788384457144" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eff3bdeceb18f94dac5546" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13835196868380528369" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "edb835f3a3a63c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15717719538637611119" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7acf10cbf502969d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16787090355024561554" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12271911533792981680" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14801678443873576764" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9846833741195750247" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2050759d62a773de" + }, + { + "_tag": "ByteArray", + "bytearray": "e65fa1e919" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4856425278457565407" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4bd814697a4dbec4bd4164" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8435030387101826382" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16807743886024363202" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3216581038345100305" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c2c685f26ea64e1932537bf8" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6c24e005daeab51af6" + } + ] + }, + "cborHex": "9fbf1b4560d07bc94d69e21bd7fe0b9659598fd71b86f381f84cfb174246156aae8c09141b894bf900d2fbc1b84beff3bdeceb18f94dac55461bc0007e3ff16b0ef147edb835f3a3a63c1bda208ea4f3b6206f487acf10cbf502969d1be8f7b9bc6fa005921baa4e968546bff2b0ff9fd8669f1bcd6a201f3ea4273c9f1b88a6fb1dea4dab67482050759d62a773de45e65fa1e9191b43657d0f70b0d0dfffff4b4bd814697a4dbec4bd4164d8669f1b750f3f7244d47d4e9f1be9411a035a39ccc241721b2ca3976985d11c114cc2c685f26ea64e1932537bf8ffffff496c24e005daeab51af6ff", + "cborBytes": [ + 159, 191, 27, 69, 96, 208, 123, 201, 77, 105, 226, 27, 215, 254, 11, 150, 89, 89, 143, 215, 27, 134, 243, 129, + 248, 76, 251, 23, 66, 70, 21, 106, 174, 140, 9, 20, 27, 137, 75, 249, 0, 210, 251, 193, 184, 75, 239, 243, 189, + 236, 235, 24, 249, 77, 172, 85, 70, 27, 192, 0, 126, 63, 241, 107, 14, 241, 71, 237, 184, 53, 243, 163, 166, 60, + 27, 218, 32, 142, 164, 243, 182, 32, 111, 72, 122, 207, 16, 203, 245, 2, 150, 157, 27, 232, 247, 185, 188, 111, + 160, 5, 146, 27, 170, 78, 150, 133, 70, 191, 242, 176, 255, 159, 216, 102, 159, 27, 205, 106, 32, 31, 62, 164, 39, + 60, 159, 27, 136, 166, 251, 29, 234, 77, 171, 103, 72, 32, 80, 117, 157, 98, 167, 115, 222, 69, 230, 95, 161, 233, + 25, 27, 67, 101, 125, 15, 112, 176, 208, 223, 255, 255, 75, 75, 216, 20, 105, 122, 77, 190, 196, 189, 65, 100, + 216, 102, 159, 27, 117, 15, 63, 114, 68, 212, 125, 78, 159, 27, 233, 65, 26, 3, 90, 57, 204, 194, 65, 114, 27, 44, + 163, 151, 105, 133, 209, 28, 17, 76, 194, 198, 133, 242, 110, 166, 78, 25, 50, 83, 123, 248, 255, 255, 255, 73, + 108, 36, 224, 5, 218, 234, 181, 26, 246, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3783, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1279835888301724915" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2390296334143549264" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7397" + }, + { + "_tag": "ByteArray", + "bytearray": "18ca912246f4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9714804487028245230" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1094632645429425092" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17175565403543771385" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d9365ef35" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8878732394781411781" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bd9cc52b9db837d492" + }, + { + "_tag": "ByteArray", + "bytearray": "967d02dedf8061" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2415980663903130661" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "451357805466681787" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4656706135896440611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7783341474829400036" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16833702436950033200" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4078188149528749855" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b11c2e3f5a50554f39f1b212c09da008b6f504273974618ca912246f41b86d1eb35afb082eed8669f1b0f30ea97665df3c49f1bee5bddbc06b718f9455d9365ef351b7b3798124eb309c5ffffffff49bd9cc52b9db837d49247967d02dedf8061bf1b2187499d082894251b06438b885d7101bb1b409ff18eed7d3f231b6c03fbd55cc577e41be99d532d7908c3301b3898a283cbde671fffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 17, 194, 227, 245, 165, 5, 84, 243, 159, 27, 33, 44, 9, 218, 0, 139, 111, 80, 66, 115, + 151, 70, 24, 202, 145, 34, 70, 244, 27, 134, 209, 235, 53, 175, 176, 130, 238, 216, 102, 159, 27, 15, 48, 234, + 151, 102, 93, 243, 196, 159, 27, 238, 91, 221, 188, 6, 183, 24, 249, 69, 93, 147, 101, 239, 53, 27, 123, 55, 152, + 18, 78, 179, 9, 197, 255, 255, 255, 255, 73, 189, 156, 197, 43, 157, 184, 55, 212, 146, 71, 150, 125, 2, 222, 223, + 128, 97, 191, 27, 33, 135, 73, 157, 8, 40, 148, 37, 27, 6, 67, 139, 136, 93, 113, 1, 187, 27, 64, 159, 241, 142, + 237, 125, 63, 35, 27, 108, 3, 251, 213, 92, 197, 119, 228, 27, 233, 157, 83, 45, 121, 8, 195, 48, 27, 56, 152, + 162, 131, 203, 222, 103, 31, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3784, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11219912232948179567" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1932318909914949704" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "421363266476392795" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6408545314228811402" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12977946583778697155" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2485692025612947335" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eedcf0f2522f6ca222" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6931904606392416705" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2520888019067617049" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28c7b549cd134a1078" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10526882913217672820" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "962efa60c66c94" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15345746142825904477" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee070b2d5281" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16768985156904665950" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c6f84404d30f7" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3803453284293355568" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "41" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14351288219897654469" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6186645286005634671" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dcf00531be47a355" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b9bb522baefefa26f9f1b1ad0f9cf8a4028481b05d8fba88bb9415bd8669f1b58efba02659a368a9f1bb41aeda8681f9fc31b227ef3ba3fae4f8749eedcf0f2522f6ca2221b6033128340e9f9c1ffffbf1b22fbfe4c0f103f194928c7b549cd134a10781b9217003c5a77f67447962efa60c66c941bd4f70acfc875795d46ee070b2d52811be8b767278119c35e470c6f84404d30f7ffd8669f1b34c8949c4a1928309f41411bc72a0499803f6cc51b55db611bffb5f66f48dcf00531be47a355ffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 155, 181, 34, 186, 239, 239, 162, 111, 159, 27, 26, 208, 249, 207, 138, 64, 40, 72, 27, 5, + 216, 251, 168, 139, 185, 65, 91, 216, 102, 159, 27, 88, 239, 186, 2, 101, 154, 54, 138, 159, 27, 180, 26, 237, + 168, 104, 31, 159, 195, 27, 34, 126, 243, 186, 63, 174, 79, 135, 73, 238, 220, 240, 242, 82, 47, 108, 162, 34, 27, + 96, 51, 18, 131, 64, 233, 249, 193, 255, 255, 191, 27, 34, 251, 254, 76, 15, 16, 63, 25, 73, 40, 199, 181, 73, + 205, 19, 74, 16, 120, 27, 146, 23, 0, 60, 90, 119, 246, 116, 71, 150, 46, 250, 96, 198, 108, 148, 27, 212, 247, + 10, 207, 200, 117, 121, 93, 70, 238, 7, 11, 45, 82, 129, 27, 232, 183, 103, 39, 129, 25, 195, 94, 71, 12, 111, + 132, 64, 77, 48, 247, 255, 216, 102, 159, 27, 52, 200, 148, 156, 74, 25, 40, 48, 159, 65, 65, 27, 199, 42, 4, 153, + 128, 63, 108, 197, 27, 85, 219, 97, 27, 255, 181, 246, 111, 72, 220, 240, 5, 49, 190, 71, 163, 85, 255, 255, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3785, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6510407705562378673" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5c076740c8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3229606293882551922" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11731033121964054562" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7c55c593b29f96f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2654119085671006245" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6731333769202195719" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b40e6516d0e300eb6156" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16010049908805398217" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "255e49" + } + } + ] + } + ] + }, + "cborHex": "9f80d8669f1b5a599d508902f1b19f9f455c076740c81b2cd1ddd0273c3e72ff1ba2cd007883025822ffffbf48b7c55c593b29f96f1b24d5533f0d014025ffbf1b5d6a806621e35d074ab40e6516d0e300eb61561bde2f1f91329eeec943255e49ffff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 90, 89, 157, 80, 137, 2, 241, 177, 159, 159, 69, 92, 7, 103, 64, 200, 27, 44, 209, + 221, 208, 39, 60, 62, 114, 255, 27, 162, 205, 0, 120, 131, 2, 88, 34, 255, 255, 191, 72, 183, 197, 92, 89, 59, 41, + 249, 111, 27, 36, 213, 83, 63, 13, 1, 64, 37, 255, 191, 27, 93, 106, 128, 102, 33, 227, 93, 7, 74, 180, 14, 101, + 22, 208, 227, 0, 235, 97, 86, 27, 222, 47, 31, 145, 50, 158, 238, 201, 67, 37, 94, 73, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3786, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1803542401714125963" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb44" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16679697798124906576" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18115004863146976807" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14794857975283550722" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b190778423f867c8b42cb441be77a30c64a19a85041b81bfb656cf2145966271bcd51e4f127218a02ffff", + "cborBytes": [ + 159, 191, 27, 25, 7, 120, 66, 63, 134, 124, 139, 66, 203, 68, 27, 231, 122, 48, 198, 74, 25, 168, 80, 65, 184, 27, + 251, 101, 108, 242, 20, 89, 102, 39, 27, 205, 81, 228, 241, 39, 33, 138, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3787, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2338566769390652910" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cbff6f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4768004322742864875" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12346611586276942728" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10212916115634507227" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c9a32f6284a" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b2074421625100dee441cbff6f91b422b5aab689d8beb1bab57f9d293c263881b8dbb9118c941cddb466c9a32f6284affff", + "cborBytes": [ + 159, 191, 27, 32, 116, 66, 22, 37, 16, 13, 238, 68, 28, 191, 246, 249, 27, 66, 43, 90, 171, 104, 157, 139, 235, + 27, 171, 87, 249, 210, 147, 194, 99, 136, 27, 141, 187, 145, 24, 201, 65, 205, 219, 70, 108, 154, 50, 246, 40, 74, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3788, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3617942785" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13846237529329709969" + } + } + ] + }, + "cborHex": "9f4536179427851bc027b7ac23613391ff", + "cborBytes": [159, 69, 54, 23, 148, 39, 133, 27, 192, 39, 183, 172, 35, 97, 51, 145, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3789, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3106146058923800995" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4906736301571276168" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdbf54b589b02b490d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12167055270525172642" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdb0afbe7231c28bc6795a68" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + }, + "cborHex": "9fa0059f1b2b1b3f622ea1f9a3ffbf1b44183aab55ab7d8849fdbf54b589b02b490d1ba8da104e02327ba24cbdb0afbe7231c28bc6795a68ff06ff", + "cborBytes": [ + 159, 160, 5, 159, 27, 43, 27, 63, 98, 46, 161, 249, 163, 255, 191, 27, 68, 24, 58, 171, 85, 171, 125, 136, 73, + 253, 191, 84, 181, 137, 176, 43, 73, 13, 27, 168, 218, 16, 78, 2, 50, 123, 162, 76, 189, 176, 175, 190, 114, 49, + 194, 139, 198, 121, 90, 104, 255, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3790, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9847032236385996780" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6c8264e0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9098874454245639623" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b88a7afa5ad9b8fec9f446c8264e01b7e45b21bb53005c7ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 136, 167, 175, 165, 173, 155, 143, 236, 159, 68, 108, 130, 100, 224, 27, 126, 69, 178, 27, + 181, 48, 5, 199, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3791, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11507642556002111202" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "957d0619" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "58a3fc0c0b32" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17414140341267194824" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a" + }, + { + "_tag": "ByteArray", + "bytearray": "2502a22499c94e3b8d" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9613496172016033508" + } + } + ] + }, + "cborHex": "9fd8669f1b9fb35bef40ac8ee29f44957d0619d8669f1bfffffffffffffffe9f4658a3fc0c0b321bf1ab74605607e3c8418a492502a22499c94e3b8dffffffff1b8569ffd57e97dee4ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 159, 179, 91, 239, 64, 172, 142, 226, 159, 68, 149, 125, 6, 25, 216, 102, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 254, 159, 70, 88, 163, 252, 12, 11, 50, 27, 241, 171, 116, 96, 86, 7, 227, 200, 65, + 138, 73, 37, 2, 162, 36, 153, 201, 78, 59, 141, 255, 255, 255, 255, 27, 133, 105, 255, 213, 126, 151, 222, 228, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3792, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11740388800317063528" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "58ff58a5e7fc8ca0b638d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2538157004022752843" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + { + "_tag": "ByteArray", + "bytearray": "060504" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4ad70872cb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8677664893813945913" + } + } + ] + }, + "cborHex": "9fd8669f1ba2ee3d691fdf81689f9f4b58ff58a5e7fc8ca0b638d61b23395858f0f2264b1bfffffffffffffff843060504ffffff454ad70872cb1b786d423ea3a87639ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 162, 238, 61, 105, 31, 223, 129, 104, 159, 159, 75, 88, 255, 88, 165, 231, 252, 140, 160, + 182, 56, 214, 27, 35, 57, 88, 88, 240, 242, 38, 75, 27, 255, 255, 255, 255, 255, 255, 255, 248, 67, 6, 5, 4, 255, + 255, 255, 69, 74, 215, 8, 114, 203, 27, 120, 109, 66, 62, 163, 168, 118, 57, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3793, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9088799919459503563" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "834b4acd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10774705295370989805" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9004633577681458089" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3633554468588015970" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16805164955553747887" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10324884111603562516" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12542782838480192527" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a9af7285d6ef8c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6651179862395416068" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c0" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "3f31ca6ae1c6" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b7e21e75f49fb8dcb9f44834b4acd1b958771611a1bb0ed1b7cf6e287c24213a91b326cfa89ac38d162ffffd8669f1be937f07d4f9fd3af9f1b8f495b655b3478141bae10ea897e7a440fffffff47a9af7285d6ef8c9f1b5c4dbcd86b4f6e0441c080463f31ca6ae1c680ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 126, 33, 231, 95, 73, 251, 141, 203, 159, 68, 131, 75, 74, 205, 27, 149, 135, 113, + 97, 26, 27, 176, 237, 27, 124, 246, 226, 135, 194, 66, 19, 169, 27, 50, 108, 250, 137, 172, 56, 209, 98, 255, 255, + 216, 102, 159, 27, 233, 55, 240, 125, 79, 159, 211, 175, 159, 27, 143, 73, 91, 101, 91, 52, 120, 20, 27, 174, 16, + 234, 137, 126, 122, 68, 15, 255, 255, 255, 71, 169, 175, 114, 133, 214, 239, 140, 159, 27, 92, 77, 188, 216, 107, + 79, 110, 4, 65, 192, 128, 70, 63, 49, 202, 106, 225, 198, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3794, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7096095909420927181" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7462795893459339746" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1819711918270215539" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8704102697568171179" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b449e" + }, + { + "_tag": "ByteArray", + "bytearray": "432a64ba16f7b9eee83b5d5b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c87a37" + }, + { + "_tag": "ByteArray", + "bytearray": "ed32" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3777445976201952612" + } + } + ] + }, + "cborHex": "9fd8669f1b627a65a2052308cd9fd8669f1b67912d5354e349e29f1b1940ea59320a75731b78cb2f498111f4ab438b449e4c432a64ba16f7b9eee83b5d5bffff43c87a3742ed32ffff1b346c2f1a01befd64ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 98, 122, 101, 162, 5, 35, 8, 205, 159, 216, 102, 159, 27, 103, 145, 45, 83, 84, 227, 73, + 226, 159, 27, 25, 64, 234, 89, 50, 10, 117, 115, 27, 120, 203, 47, 73, 129, 17, 244, 171, 67, 139, 68, 158, 76, + 67, 42, 100, 186, 22, 247, 185, 238, 232, 59, 93, 91, 255, 255, 67, 200, 122, 55, 66, 237, 50, 255, 255, 27, 52, + 108, 47, 26, 1, 190, 253, 100, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3795, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0107" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aaa2caf45451" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "01fff9a9cff9b301a4fb04" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0465e905e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16811777347194910462" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2019341679" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f261997c7cb7195a06d96e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9894ae3ece40b6fcac11be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14389149429063438317" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "633c" + } + ] + } + ] + }, + "cborHex": "9f80bf4201071bfffffffffffffffd46aaa2caf454514111ff4b01fff9a9cff9b301a4fb04bf450465e905e51be94f6e6cb682f6fe4520193416794bf261997c7cb7195a06d96e4b9894ae3ece40b6fcac11be1bc7b0872b33574fedff9f42633cffff", + "cborBytes": [ + 159, 128, 191, 66, 1, 7, 27, 255, 255, 255, 255, 255, 255, 255, 253, 70, 170, 162, 202, 244, 84, 81, 65, 17, 255, + 75, 1, 255, 249, 169, 207, 249, 179, 1, 164, 251, 4, 191, 69, 4, 101, 233, 5, 229, 27, 233, 79, 110, 108, 182, + 130, 246, 254, 69, 32, 25, 52, 22, 121, 75, 242, 97, 153, 124, 124, 183, 25, 90, 6, 217, 110, 75, 152, 148, 174, + 62, 206, 64, 182, 252, 172, 17, 190, 27, 199, 176, 135, 43, 51, 87, 79, 237, 255, 159, 66, 99, 60, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3796, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e11" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf111bfffffffffffffffb14425e11ffa0ff", + "cborBytes": [159, 191, 17, 27, 255, 255, 255, 255, 255, 255, 255, 251, 20, 66, 94, 17, 255, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3797, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a3a8ecbb401015" + }, + { + "_tag": "ByteArray", + "bytearray": "58a9" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6eb6" + }, + { + "_tag": "ByteArray", + "bytearray": "f83feeefa1a580" + } + ] + } + ] + } + ] + }, + "cborHex": "9fa09f9f47a3a8ecbb4010154258a9ff9f426eb647f83feeefa1a580ffffff", + "cborBytes": [ + 159, 160, 159, 159, 71, 163, 168, 236, 187, 64, 16, 21, 66, 88, 169, 255, 159, 66, 110, 182, 71, 248, 63, 238, + 239, 161, 165, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3798, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "197e42ac91e0fadca47c9c22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06653e4f80" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24b1cfa3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14904311466700141761" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cd6d7d6a6fd7d51ad90603f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "591ec19501ca52bedb44a46e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d972cbc6105259b3bf5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "668a80ef43b1895f7eecd5" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2260339868628697822" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b5e4f4a873a99ef6" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b9aec945ae9b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15811352032530424355" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12256551716418614374" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5898afffe8a5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11874054263999919320" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc02" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28cd7c62fb3b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55fcdecaba5448" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8862892715329607079" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15939948604320605618" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f80bf4c197e42ac91e0fadca47c9c224506653e4f804424b1cfa31bced6c050027174c14c4cd6d7d6a6fd7d51ad90603f4c591ec19501ca52bedb44a46e4a4d972cbc6105259b3bf54b668a80ef43b1895f7eecd5ff1b1f5e57227d4442de48b5e4f4a873a99ef69f46b9aec945ae9b1bdb6d34e6c5a062231baa1804d91c55f466ffff465898afffe8a5bf1041031ba4c91d71116d74d842fc021bffffffffffffffec4628cd7c62fb3b1bffffffffffffffef4755fcdecaba54481bfffffffffffffff31b7aff51f78b9e55a71bfffffffffffffffb1bdd3612cd5a8365b2ffff", + "cborBytes": [ + 159, 159, 128, 191, 76, 25, 126, 66, 172, 145, 224, 250, 220, 164, 124, 156, 34, 69, 6, 101, 62, 79, 128, 68, 36, + 177, 207, 163, 27, 206, 214, 192, 80, 2, 113, 116, 193, 76, 76, 214, 215, 214, 166, 253, 125, 81, 173, 144, 96, + 63, 76, 89, 30, 193, 149, 1, 202, 82, 190, 219, 68, 164, 110, 74, 77, 151, 44, 188, 97, 5, 37, 155, 59, 245, 75, + 102, 138, 128, 239, 67, 177, 137, 95, 126, 236, 213, 255, 27, 31, 94, 87, 34, 125, 68, 66, 222, 72, 181, 228, 244, + 168, 115, 169, 158, 246, 159, 70, 185, 174, 201, 69, 174, 155, 27, 219, 109, 52, 230, 197, 160, 98, 35, 27, 170, + 24, 4, 217, 28, 85, 244, 102, 255, 255, 70, 88, 152, 175, 255, 232, 165, 191, 16, 65, 3, 27, 164, 201, 29, 113, + 17, 109, 116, 216, 66, 252, 2, 27, 255, 255, 255, 255, 255, 255, 255, 236, 70, 40, 205, 124, 98, 251, 59, 27, 255, + 255, 255, 255, 255, 255, 255, 239, 71, 85, 252, 222, 202, 186, 84, 72, 27, 255, 255, 255, 255, 255, 255, 255, 243, + 27, 122, 255, 81, 247, 139, 158, 85, 167, 27, 255, 255, 255, 255, 255, 255, 255, 251, 27, 221, 54, 18, 205, 90, + 131, 101, 178, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3799, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3d80b1fe88b3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7812449317037600019" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10902508103420899363" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8719855384174242256" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35289ce0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11141528723736769432" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2536cd8f3d20d4c5c54c60" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4932908960657872904" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5915472043013260027" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c6" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "163198606837944745" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2a416d7808" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c1ea4c17ca8b18" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11318834870402775564" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13746197076942725360" + } + } + ] + } + ] + }, + "cborHex": "9f463d80b1fe88b31b6c6b6542ffc4ed13bf1b974d7d5b293870231b79032645aa7ba9d04435289ce01b9a9ea95809243398ff4b2536cd8f3d20d4c5c54c609fd8669f1b44753690655a98089f1b5217fa7b4a8f42fb41c6ffffd8669f1b0243cc44ac6a11a99f452a416d7808ffff47c1ea4c17ca8b181b9d14945849a97a0c1bbec44d6937af20f0ffff", + "cborBytes": [ + 159, 70, 61, 128, 177, 254, 136, 179, 27, 108, 107, 101, 66, 255, 196, 237, 19, 191, 27, 151, 77, 125, 91, 41, 56, + 112, 35, 27, 121, 3, 38, 69, 170, 123, 169, 208, 68, 53, 40, 156, 224, 27, 154, 158, 169, 88, 9, 36, 51, 152, 255, + 75, 37, 54, 205, 143, 61, 32, 212, 197, 197, 76, 96, 159, 216, 102, 159, 27, 68, 117, 54, 144, 101, 90, 152, 8, + 159, 27, 82, 23, 250, 123, 74, 143, 66, 251, 65, 198, 255, 255, 216, 102, 159, 27, 2, 67, 204, 68, 172, 106, 17, + 169, 159, 69, 42, 65, 109, 120, 8, 255, 255, 71, 193, 234, 76, 23, 202, 139, 24, 27, 157, 20, 148, 88, 73, 169, + 122, 12, 27, 190, 196, 77, 105, 55, 175, 32, 240, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3800, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a704ff0664ea01" + }, + { + "_tag": "ByteArray", + "bytearray": "c61e" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "4365893358beff926b" + } + ] + }, + "cborHex": "9f47a704ff0664ea0142c61ea0494365893358beff926bff", + "cborBytes": [ + 159, 71, 167, 4, 255, 6, 100, 234, 1, 66, 198, 30, 160, 73, 67, 101, 137, 51, 88, 190, 255, 146, 107, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3801, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1141225783291124085" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "16c497b7c3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13297400210473573051" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10919356773618967289" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7397045097153544835" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c89c92" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4072002929290661249" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "281cca4a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0510809bbaa1cd304d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f20" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10725452917654825622" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3285659797785970637" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "817506992f2c17896c30bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6701268359130272090" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9038489648519091043" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10783143426487568315" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10332536431725749602" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9486171919744997385" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4865718059984533288" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16528608158117294538" + } + }, + { + "_tag": "ByteArray", + "bytearray": "12e5a5917d861daae2cf21" + }, + { + "_tag": "ByteArray", + "bytearray": "51635ace2fd52593" + }, + { + "_tag": "ByteArray", + "bytearray": "9c916c4fe3231cc928a1fbb4" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b0fd672cdad9599759f4516c497b7c31bb889db09ed7b5abbd8669f1b97895921e35062f99f1b66a795531b61c283ffffbf43c89c921b3882a916fcb84d81ffffffbf44281cca4a490510809bbaa1cd304d422f201b94d8769a4bfe2a96414d1b2d99022d8bd087cd4b817506992f2c17896c30bf411aff9fd8669f1b5cffb0115a86515a9f1b7d6f2a72860693631b95a56bd099e147bbffff1b8f648b23f9cba562d8669f1b83a5a719e2af98099f1b438680cbbe94b7281be561698c283471ca4b12e5a5917d861daae2cf214851635ace2fd525934c9c916c4fe3231cc928a1fbb4ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 15, 214, 114, 205, 173, 149, 153, 117, 159, 69, 22, 196, 151, 183, 195, 27, 184, 137, 219, + 9, 237, 123, 90, 187, 216, 102, 159, 27, 151, 137, 89, 33, 227, 80, 98, 249, 159, 27, 102, 167, 149, 83, 27, 97, + 194, 131, 255, 255, 191, 67, 200, 156, 146, 27, 56, 130, 169, 22, 252, 184, 77, 129, 255, 255, 255, 191, 68, 40, + 28, 202, 74, 73, 5, 16, 128, 155, 186, 161, 205, 48, 77, 66, 47, 32, 27, 148, 216, 118, 154, 75, 254, 42, 150, 65, + 77, 27, 45, 153, 2, 45, 139, 208, 135, 205, 75, 129, 117, 6, 153, 47, 44, 23, 137, 108, 48, 191, 65, 26, 255, 159, + 216, 102, 159, 27, 92, 255, 176, 17, 90, 134, 81, 90, 159, 27, 125, 111, 42, 114, 134, 6, 147, 99, 27, 149, 165, + 107, 208, 153, 225, 71, 187, 255, 255, 27, 143, 100, 139, 35, 249, 203, 165, 98, 216, 102, 159, 27, 131, 165, 167, + 25, 226, 175, 152, 9, 159, 27, 67, 134, 128, 203, 190, 148, 183, 40, 27, 229, 97, 105, 140, 40, 52, 113, 202, 75, + 18, 229, 165, 145, 125, 134, 29, 170, 226, 207, 33, 72, 81, 99, 90, 206, 47, 213, 37, 147, 76, 156, 145, 108, 79, + 227, 35, 28, 201, 40, 161, 251, 180, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3802, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6193874621688486978" + }, + "fields": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "68a3757a0211" + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b55f51026e10c9c429f80ffffd8799f4668a3757a021180ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 85, 245, 16, 38, 225, 12, 156, 66, 159, 128, 255, 255, 216, 121, 159, 70, 104, 163, 117, + 122, 2, 17, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3803, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "000f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1017593338629264673" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "00b8b1a298d1e9ba634b1d74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "210701529bfa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05050525800105" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2906219895559014169" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d5b5910000568017402" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae759dd75455c2c66233" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17331034455907686535" + } + } + ] + }, + "cborHex": "9fbf42000f1b0e1f37c002cd15214c00b8b1a298d1e9ba634b1d7446210701529bfa47050505258001051b2854f798e1f7c719411e4a3d5b59100005680174024aae759dd75455c2c6623308ff1bf08434038e6ed887ff", + "cborBytes": [ + 159, 191, 66, 0, 15, 27, 14, 31, 55, 192, 2, 205, 21, 33, 76, 0, 184, 177, 162, 152, 209, 233, 186, 99, 75, 29, + 116, 70, 33, 7, 1, 82, 155, 250, 71, 5, 5, 5, 37, 128, 1, 5, 27, 40, 84, 247, 152, 225, 247, 199, 25, 65, 30, 74, + 61, 91, 89, 16, 0, 5, 104, 1, 116, 2, 74, 174, 117, 157, 215, 84, 85, 194, 198, 98, 51, 8, 255, 27, 240, 132, 52, + 3, 142, 110, 216, 135, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3804, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7037098071986398535" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ad10bc35c794" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7657148382727412878" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d3b4d4f1efdeb9398873" + }, + { + "_tag": "ByteArray", + "bytearray": "0edf66347ec6a9" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12761561906341490315" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b61a8cb698e55e5479f9f46ad10bc35c7941b6a43a7e280ec9c8e4ad3b4d4f1efdeb9398873470edf66347ec6a9ff1bb11a2cf0aea42e8bffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 97, 168, 203, 105, 142, 85, 229, 71, 159, 159, 70, 173, 16, 188, 53, 199, 148, 27, 106, + 67, 167, 226, 128, 236, 156, 142, 74, 211, 180, 212, 241, 239, 222, 185, 57, 136, 115, 71, 14, 223, 102, 52, 126, + 198, 169, 255, 27, 177, 26, 44, 240, 174, 164, 46, 139, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3805, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6465547823885496400" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be5cef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7262405339604108963" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "137db8184e0243be88" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13523661196126206253" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "750068129556216373" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14812673897835959573" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "976e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15234011451804558544" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6092aa3bfdf9f31fda55" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17905289241147281177" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e93e32f0616e1c8535c1c08f" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2042857932224294480" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12950472341548399083" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d1a1de150d62aeebbd6fd7" + }, + { + "_tag": "ByteArray", + "bytearray": "baeb2a4961711e50f87220" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8770985348580350755" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7193940c8dfcbf" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14550267827420579611" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f9fbf1b59ba3d7d68feb05043be5cef1b64c93f2db200c6a349137db8184e0243be881bbbadb234d9d6392d1b0a68c6fd638a3a351bcd91306dde36951542976e1bd36a14b3c10b24d04a6092aa3bfdf9f31fda551bf87c5db2d3350f194ce93e32f0616e1c8535c1c08fffd8669f1b1c59b07740d16e509f1bb3b951fae78379eb4bd1a1de150d62aeebbd6fd74bbaeb2a4961711e50f872201b79b8ccb430499b23477193940c8dfcbfffffd8669f1bc9ecef7f9832c71b80ffffff", + "cborBytes": [ + 159, 159, 191, 27, 89, 186, 61, 125, 104, 254, 176, 80, 67, 190, 92, 239, 27, 100, 201, 63, 45, 178, 0, 198, 163, + 73, 19, 125, 184, 24, 78, 2, 67, 190, 136, 27, 187, 173, 178, 52, 217, 214, 57, 45, 27, 10, 104, 198, 253, 99, + 138, 58, 53, 27, 205, 145, 48, 109, 222, 54, 149, 21, 66, 151, 110, 27, 211, 106, 20, 179, 193, 11, 36, 208, 74, + 96, 146, 170, 59, 253, 249, 243, 31, 218, 85, 27, 248, 124, 93, 178, 211, 53, 15, 25, 76, 233, 62, 50, 240, 97, + 110, 28, 133, 53, 193, 192, 143, 255, 216, 102, 159, 27, 28, 89, 176, 119, 64, 209, 110, 80, 159, 27, 179, 185, + 81, 250, 231, 131, 121, 235, 75, 209, 161, 222, 21, 13, 98, 174, 235, 189, 111, 215, 75, 186, 235, 42, 73, 97, + 113, 30, 80, 248, 114, 32, 27, 121, 184, 204, 180, 48, 73, 155, 35, 71, 113, 147, 148, 12, 141, 252, 191, 255, + 255, 216, 102, 159, 27, 201, 236, 239, 127, 152, 50, 199, 27, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3806, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + ] + }, + "cborHex": "9f1bfffffffffffffff5ff", + "cborBytes": [159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3807, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3368095444263485039" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dc1399" + }, + { + "_tag": "ByteArray", + "bytearray": "66f4281915f1c3a6b9ccf9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12050787695104025817" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ee1da960fba6" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8996847211182188822" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13538211199010383511" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13993116114693875748" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4126773461480681625" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15753078428292884030" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16335500028403079397" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15024654791221856864" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17228722867334063776" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f08ada0eb3e" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6284385477442825501" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72487ad022543f45b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17577288830074499696" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8fb634da627b55765171e16d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15029731218311356957" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d81f62" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8416264533967050107" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e118d35971318e7d15" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36602ee96c0fded97f" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b2ebde0f62cefbe6f9f43dc13994b66f4281915f1c3a6b9ccf91ba73cff8f9652e4d9ffff46ee1da960fba6d8669f1b7cdb38df08fa69169fd8669f1bbbe1635b633aa6979f1bc23188f7b51f6824ffffbf1b39453e994010b0991bda9e2d5dfd44263e1be2b35aba055958e51bd0824bedb7a64a601bef18b82a8918a6a0469f08ada0eb3effffffbf41211b57369f4bae9a6d1d4972487ad022543f45b61bf3ef130fff0832704c8fb634da627b55765171e16d1bd09454e9810c221d43d81f621b74cc94009ad3157b49e118d35971318e7d154936602ee96c0fded97fffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 46, 189, 224, 246, 44, 239, 190, 111, 159, 67, 220, 19, 153, 75, 102, 244, 40, 25, 21, + 241, 195, 166, 185, 204, 249, 27, 167, 60, 255, 143, 150, 82, 228, 217, 255, 255, 70, 238, 29, 169, 96, 251, 166, + 216, 102, 159, 27, 124, 219, 56, 223, 8, 250, 105, 22, 159, 216, 102, 159, 27, 187, 225, 99, 91, 99, 58, 166, 151, + 159, 27, 194, 49, 136, 247, 181, 31, 104, 36, 255, 255, 191, 27, 57, 69, 62, 153, 64, 16, 176, 153, 27, 218, 158, + 45, 93, 253, 68, 38, 62, 27, 226, 179, 90, 186, 5, 89, 88, 229, 27, 208, 130, 75, 237, 183, 166, 74, 96, 27, 239, + 24, 184, 42, 137, 24, 166, 160, 70, 159, 8, 173, 160, 235, 62, 255, 255, 255, 191, 65, 33, 27, 87, 54, 159, 75, + 174, 154, 109, 29, 73, 114, 72, 122, 208, 34, 84, 63, 69, 182, 27, 243, 239, 19, 15, 255, 8, 50, 112, 76, 143, + 182, 52, 218, 98, 123, 85, 118, 81, 113, 225, 109, 27, 208, 148, 84, 233, 129, 12, 34, 29, 67, 216, 31, 98, 27, + 116, 204, 148, 0, 154, 211, 21, 123, 73, 225, 24, 211, 89, 113, 49, 142, 125, 21, 73, 54, 96, 46, 233, 108, 15, + 222, 217, 127, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3808, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12686942882707377241" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "ByteArray", + "bytearray": "91" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9dd0d942f70070ca26" + }, + { + "_tag": "ByteArray", + "bytearray": "2c4b7a22914f" + }, + { + "_tag": "ByteArray", + "bytearray": "02" + }, + { + "_tag": "ByteArray", + "bytearray": "2dab221bc71d6ce1" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9317549209866139825" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1712dd028e6054a1c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10d446453f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25392a00e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "056312" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "751dcbaa1a39" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8688149070137954779" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12186875681263021090" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7aa6ece2" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bb011135561718c599f410041919f499dd0d942f70070ca26462c4b7a22914f4102482dab221bc71d6ce1ffd8669f1b814e95a3cf4af8b180ffa0ffffbf491712dd028e6054a1c04510d446453f4525392a00e14305631246751dcbaa1a391b7892818c293691dbffd8669f1ba9207adcff876c229f447aa6ece2ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 176, 17, 19, 85, 97, 113, 140, 89, 159, 65, 0, 65, 145, 159, 73, 157, 208, 217, 66, 247, + 0, 112, 202, 38, 70, 44, 75, 122, 34, 145, 79, 65, 2, 72, 45, 171, 34, 27, 199, 29, 108, 225, 255, 216, 102, 159, + 27, 129, 78, 149, 163, 207, 74, 248, 177, 128, 255, 160, 255, 255, 191, 73, 23, 18, 221, 2, 142, 96, 84, 161, 192, + 69, 16, 212, 70, 69, 63, 69, 37, 57, 42, 0, 225, 67, 5, 99, 18, 70, 117, 29, 203, 170, 26, 57, 27, 120, 146, 129, + 140, 41, 54, 145, 219, 255, 216, 102, 159, 27, 169, 32, 122, 220, 255, 135, 108, 34, 159, 68, 122, 166, 236, 226, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3809, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11073119010004515947" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a9e97753" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15508857973427311923" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1630051251386610888" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12268066235407199953" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d9c42e4866f599ee6a6b10" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1493418871936221144" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b99ab9f125af1bc6b9f44a9e97753d8669f1bd73a88284a1e95339f1b169f1afa0c9474c81baa40ed3dfa68eed1ffff4bd9c42e4866f599ee6a6b10ffffd8669f1b14b9b08d329f7fd880ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 153, 171, 159, 18, 90, 241, 188, 107, 159, 68, 169, 233, 119, 83, 216, 102, 159, 27, 215, + 58, 136, 40, 74, 30, 149, 51, 159, 27, 22, 159, 26, 250, 12, 148, 116, 200, 27, 170, 64, 237, 61, 250, 104, 238, + 209, 255, 255, 75, 217, 196, 46, 72, 102, 245, 153, 238, 106, 107, 16, 255, 255, 216, 102, 159, 27, 20, 185, 176, + 141, 50, 159, 127, 216, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3810, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7888257632911845925" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7549573861534271322" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3652283223723018616" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15105883983736515249" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24c7513f861d024a84" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17484936521619260851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14225826400886338808" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3eda98eef696eb57512e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af63cd4145db35c8122c" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffec9f1b6d78b885fa796a25bf1b68c5796d7e53075a1b32af843dc92109781bd1a2e172e4e0aab14924c7513f861d024a841bf2a6f920935ec5b31bc56c49bd6d3434f84bf3eda98eef696eb57512e94aaf63cd4145db35c8122cffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 27, 109, 120, 184, 133, 250, 121, 106, 37, + 191, 27, 104, 197, 121, 109, 126, 83, 7, 90, 27, 50, 175, 132, 61, 201, 33, 9, 120, 27, 209, 162, 225, 114, 228, + 224, 170, 177, 73, 36, 199, 81, 63, 134, 29, 2, 74, 132, 27, 242, 166, 249, 32, 147, 94, 197, 179, 27, 197, 108, + 73, 189, 109, 52, 52, 248, 75, 243, 237, 169, 142, 239, 105, 110, 181, 117, 18, 233, 74, 175, 99, 205, 65, 69, + 219, 53, 200, 18, 44, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3811, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9222119999024318244" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10216024287040328970" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2375577134266544162" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a32d1b064" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12849928737379447696" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1991827661880089356" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "853071691892225360" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "280025553232376652" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7423630218953110202" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b18c557183459bf2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11372192291738425148" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10950265938152454409" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e4afa91498c3b4e1" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7ffb8d4739dec7249fd8669f1b8dc69bf655cd550a9f1b20f7bed1387f7022458a32d1b0641bb2541e1ad495f3901b1ba464b49028db0cffff9f1b0bd6b82f1b2d7550ffd8669f1b03e2d9c1cc72b34c9f1b6706085a208e32ba48b18c557183459bf21b9dd224a30a81173c1b97f728da8fa2f90941ceffff48e4afa91498c3b4e1ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 127, 251, 141, 71, 57, 222, 199, 36, 159, 216, 102, 159, 27, 141, 198, 155, 246, 85, 205, + 85, 10, 159, 27, 32, 247, 190, 209, 56, 127, 112, 34, 69, 138, 50, 209, 176, 100, 27, 178, 84, 30, 26, 212, 149, + 243, 144, 27, 27, 164, 100, 180, 144, 40, 219, 12, 255, 255, 159, 27, 11, 214, 184, 47, 27, 45, 117, 80, 255, 216, + 102, 159, 27, 3, 226, 217, 193, 204, 114, 179, 76, 159, 27, 103, 6, 8, 90, 32, 142, 50, 186, 72, 177, 140, 85, + 113, 131, 69, 155, 242, 27, 157, 210, 36, 163, 10, 129, 23, 60, 27, 151, 247, 40, 218, 143, 162, 249, 9, 65, 206, + 255, 255, 72, 228, 175, 169, 20, 152, 195, 180, 225, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3812, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b61b982c844e" + } + ] + }, + "cborHex": "9f46b61b982c844eff", + "cborBytes": [159, 70, 182, 27, 152, 44, 132, 78, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3813, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2381208846175169685" + } + } + ] + }, + "cborHex": "9f1b210bc0d45449ec95ff", + "cborBytes": [159, 27, 33, 11, 192, 212, 84, 73, 236, 149, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3814, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fb84edfe3f0602ff0106" + } + ] + }, + "cborHex": "9f4afb84edfe3f0602ff0106ff", + "cborBytes": [159, 74, 251, 132, 237, 254, 63, 6, 2, 255, 1, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3815, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8491311601493353065" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "491f5e9b4d63f8dbf8360dbd" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e1d9f5" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b75d732e9a42a226980ff4c491f5e9b4d63f8dbf8360dbd9f43e1d9f5ff9f80ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 117, 215, 50, 233, 164, 42, 34, 105, 128, 255, 76, 73, 31, 94, 155, 77, 99, 248, 219, 248, + 54, 13, 189, 159, 67, 225, 217, 245, 255, 159, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3816, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2679258366952887532" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "161e5bad912e7e6e11d7" + }, + { + "_tag": "ByteArray", + "bytearray": "b2f8edee72eb1a492f073348" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7643914232570724464" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6bda4b39147c8f736e102624" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15125408466560359877" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14333315920553170658" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1802800117614467710" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10385700629060512968" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7760848780071406208" + } + }, + { + "_tag": "ByteArray", + "bytearray": "88e812551ff7f18552" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "31b0a1e1ced002" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "545c02715d99b348881837" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4474627645773493559" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5268841085298897285" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0decefc41aad321340cd" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ac34385dd14317219be48f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8565880914741360964" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "86" + }, + { + "_tag": "ByteArray", + "bytearray": "a64e47961b2f07abc4" + }, + { + "_tag": "ByteArray", + "bytearray": "a1a7da22adc9e99f2629e7" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bef78c3aa0" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "896133635914205572" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b252ea34a17b854ec9f4a161e5bad912e7e6e11d74cb2f8edee72eb1a492f073348d8669f1b6a14a37ecdee40709f4c6bda4b39147c8f736e102624ffffd8669f1bd1e83edccc041dc59f1bc6ea2ae37a05d6e21b1904d527c3715a7e1b90216bb242b3ecc81b6bb412d8c3ae0a804988e812551ff7f18552ffffffff9f9f4731b0a1e1ced002ffbf4b545c02715d99b3488818371b3e191222e078b537ffbf1b491eaf0d333971854a0decefc41aad321340cdff4bac34385dd14317219be48fff1b76e01f4ed774f9449f9f418649a64e47961b2f07abc44ba1a7da22adc9e99f2629e7ff45bef78c3aa0a09f1b0c6fb4cb3ff20984ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 37, 46, 163, 74, 23, 184, 84, 236, 159, 74, 22, 30, 91, 173, 145, 46, 126, 110, 17, 215, + 76, 178, 248, 237, 238, 114, 235, 26, 73, 47, 7, 51, 72, 216, 102, 159, 27, 106, 20, 163, 126, 205, 238, 64, 112, + 159, 76, 107, 218, 75, 57, 20, 124, 143, 115, 110, 16, 38, 36, 255, 255, 216, 102, 159, 27, 209, 232, 62, 220, + 204, 4, 29, 197, 159, 27, 198, 234, 42, 227, 122, 5, 214, 226, 27, 25, 4, 213, 39, 195, 113, 90, 126, 27, 144, 33, + 107, 178, 66, 179, 236, 200, 27, 107, 180, 18, 216, 195, 174, 10, 128, 73, 136, 232, 18, 85, 31, 247, 241, 133, + 82, 255, 255, 255, 255, 159, 159, 71, 49, 176, 161, 225, 206, 208, 2, 255, 191, 75, 84, 92, 2, 113, 93, 153, 179, + 72, 136, 24, 55, 27, 62, 25, 18, 34, 224, 120, 181, 55, 255, 191, 27, 73, 30, 175, 13, 51, 57, 113, 133, 74, 13, + 236, 239, 196, 26, 173, 50, 19, 64, 205, 255, 75, 172, 52, 56, 93, 209, 67, 23, 33, 155, 228, 143, 255, 27, 118, + 224, 31, 78, 215, 116, 249, 68, 159, 159, 65, 134, 73, 166, 78, 71, 150, 27, 47, 7, 171, 196, 75, 161, 167, 218, + 34, 173, 201, 233, 159, 38, 41, 231, 255, 69, 190, 247, 140, 58, 160, 160, 159, 27, 12, 111, 180, 203, 63, 242, 9, + 132, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3817, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "73" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11138964478607691830" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15762035158061609693" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7638539215167226392" + } + } + ] + } + ] + }, + "cborHex": "9f41731b9a958d2d311b1036d8669f1bdabdff77257af2dd9f1b6a018af20aef0218ffffff", + "cborBytes": [ + 159, 65, 115, 27, 154, 149, 141, 45, 49, 27, 16, 54, 216, 102, 159, 27, 218, 189, 255, 119, 37, 122, 242, 221, + 159, 27, 106, 1, 138, 242, 10, 239, 2, 24, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3818, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8986022358243970506" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9382827935100238508" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77c17992ec04044f8baefa8c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08c3700dd4f46a7de937990d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4902500304793848582" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b29c669b8fccb8cb298b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17253907312897729682" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a3594f19214" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7cb4c3b98ed98dca9fd8669f1b8236804b6c42faac80ffffffbf0641cf094c77c17992ec04044f8baefa8c134c08c3700dd4f46a7de937990d1b44092e0d7a7b4b064ab29c669b8fccb8cb298b1bef72314934c8a492464a3594f19214ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 124, 180, 195, 185, 142, 217, 141, 202, 159, 216, 102, 159, 27, 130, 54, 128, 75, 108, 66, + 250, 172, 128, 255, 255, 255, 191, 6, 65, 207, 9, 76, 119, 193, 121, 146, 236, 4, 4, 79, 139, 174, 250, 140, 19, + 76, 8, 195, 112, 13, 212, 244, 106, 125, 233, 55, 153, 13, 27, 68, 9, 46, 13, 122, 123, 75, 6, 74, 178, 156, 102, + 155, 143, 204, 184, 203, 41, 139, 27, 239, 114, 49, 73, 52, 200, 164, 146, 70, 74, 53, 148, 241, 146, 20, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3819, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f8" + } + ] + }, + "cborHex": "9f41f8ff", + "cborBytes": [159, 65, 248, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3820, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bc9ea2194d35f5e6e7f0ce2a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8772544585139040605" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5680330093338861523" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15569517815931145049" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14199070653443186256" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5069280178740632075" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14503321149670902808" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10736677336782173657" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15487728790528410364" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "101b37d726fae8e2" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18359536326289090077" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1876807533945206745" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ba03da2c6cf79bd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0b509" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12282091622976132791" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "8363d1677b" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8692205065800650630" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9250534099317926048" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "feba" + } + ] + } + ] + }, + "cborHex": "9f4cbc9ea2194d35f5e6e7f0ce2a9f1b79be56d23d7d315dbf1b4ed4961fcc6c9fd31bd81209f676b10b591bc50d3b8787279e501b4659b376e0c39a0b1bc94625be658b4c181b9500572706e375d91bd6ef7747090942fc48101b37d726fae8e2ffd8669f1bfeca2d040957661d80ffbf1b1a0bc2822494b7d9482ba03da2c6cf79bd43d0b5091baa72c141fe4b16b7ff458363d1677bff9f809f1b78a0ea743de60f861b80607fc07c7ba8a0ff42febaffff", + "cborBytes": [ + 159, 76, 188, 158, 162, 25, 77, 53, 245, 230, 231, 240, 206, 42, 159, 27, 121, 190, 86, 210, 61, 125, 49, 93, 191, + 27, 78, 212, 150, 31, 204, 108, 159, 211, 27, 216, 18, 9, 246, 118, 177, 11, 89, 27, 197, 13, 59, 135, 135, 39, + 158, 80, 27, 70, 89, 179, 118, 224, 195, 154, 11, 27, 201, 70, 37, 190, 101, 139, 76, 24, 27, 149, 0, 87, 39, 6, + 227, 117, 217, 27, 214, 239, 119, 71, 9, 9, 66, 252, 72, 16, 27, 55, 215, 38, 250, 232, 226, 255, 216, 102, 159, + 27, 254, 202, 45, 4, 9, 87, 102, 29, 128, 255, 191, 27, 26, 11, 194, 130, 36, 148, 183, 217, 72, 43, 160, 61, 162, + 198, 207, 121, 189, 67, 208, 181, 9, 27, 170, 114, 193, 65, 254, 75, 22, 183, 255, 69, 131, 99, 209, 103, 123, + 255, 159, 128, 159, 27, 120, 160, 234, 116, 61, 230, 15, 134, 27, 128, 96, 127, 192, 124, 123, 168, 160, 255, 66, + 254, 186, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3821, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4e4817072931cbe9" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8018039253793892759" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6650424101462275033" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ade7f76186f5adb0afadc3" + }, + { + "_tag": "ByteArray", + "bytearray": "0b798d2f6b579cb4f3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13073007490357849751" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0bd6dc841afd55bc9e3609" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12913344042813776612" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10734232017644369008" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14604787427237554099" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "73ea84244a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "ByteArray", + "bytearray": "926f9ee32fa2116fb3" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1365" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5030915617740158823" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fa8ddbc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17695401704482503612" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb10a8167a1d9b07a2bb1d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8478049997630789713" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d77a3c5b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16852032027411521145" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef76b587" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8268902391619830636" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8a6eec7a6a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15487886190280185697" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + }, + "cborHex": "9f484e4817072931cbe9d8669f1b6f45cc384d85e9979fd8669f1b5c4b0d7c1d5af3d99f4bade7f76186f5adb0afadc3490b798d2f6b579cb4f31bb56ca70c78ccee974b0bd6dc841afd55bc9e36091bb33569fd365262e4ffffffffd8669f1b94f7a725cc5134709fd8669f1bcaaea0c91c95e7b39f4573ea84244affff0249926f9ee32fa2116fb3bf4213651b45d16719725df767443fa8ddbc1bf592b21891857bbc4bcb10a8167a1d9b07a2bb1d1b75a8158de0c8d85144d77a3c5b1be9de71d7d15e9e7944ef76b5871b72c10aea26e0c36c46f8a6eec7a6a61bd6f0066e85541761ffffff0a0fff", + "cborBytes": [ + 159, 72, 78, 72, 23, 7, 41, 49, 203, 233, 216, 102, 159, 27, 111, 69, 204, 56, 77, 133, 233, 151, 159, 216, 102, + 159, 27, 92, 75, 13, 124, 29, 90, 243, 217, 159, 75, 173, 231, 247, 97, 134, 245, 173, 176, 175, 173, 195, 73, 11, + 121, 141, 47, 107, 87, 156, 180, 243, 27, 181, 108, 167, 12, 120, 204, 238, 151, 75, 11, 214, 220, 132, 26, 253, + 85, 188, 158, 54, 9, 27, 179, 53, 105, 253, 54, 82, 98, 228, 255, 255, 255, 255, 216, 102, 159, 27, 148, 247, 167, + 37, 204, 81, 52, 112, 159, 216, 102, 159, 27, 202, 174, 160, 201, 28, 149, 231, 179, 159, 69, 115, 234, 132, 36, + 74, 255, 255, 2, 73, 146, 111, 158, 227, 47, 162, 17, 111, 179, 191, 66, 19, 101, 27, 69, 209, 103, 25, 114, 93, + 247, 103, 68, 63, 168, 221, 188, 27, 245, 146, 178, 24, 145, 133, 123, 188, 75, 203, 16, 168, 22, 122, 29, 155, 7, + 162, 187, 29, 27, 117, 168, 21, 141, 224, 200, 216, 81, 68, 215, 122, 60, 91, 27, 233, 222, 113, 215, 209, 94, + 158, 121, 68, 239, 118, 181, 135, 27, 114, 193, 10, 234, 38, 224, 195, 108, 70, 248, 166, 238, 199, 166, 166, 27, + 214, 240, 6, 110, 133, 84, 23, 97, 255, 255, 255, 10, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3822, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17736919311284212381" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "abe5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17810969271417497740" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05d2d5840cfb5a969e79" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12150733042734400247" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16021835857002034815" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15382224247843878152" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf6263223aedc929d9f139f42abe51bf72d462f903ce88c4a05d2d5840cfb5a969e791ba8a0135334c902f71bde58fed31a38f67fff9f141bd578a37474227508ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 246, 38, 50, 35, 174, 220, 146, 157, 159, 19, 159, 66, 171, 229, 27, 247, 45, 70, 47, 144, + 60, 232, 140, 74, 5, 210, 213, 132, 12, 251, 90, 150, 158, 121, 27, 168, 160, 19, 83, 52, 201, 2, 247, 27, 222, + 88, 254, 211, 26, 56, 246, 127, 255, 159, 20, 27, 213, 120, 163, 116, 116, 34, 117, 8, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3823, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2712447241894228862" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3303682631014454621" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3568628671533367982" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6eb7ee91a18f46d45a118f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4552660402591928235" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb08557fc1ff611c4b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7886353347281326026" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca465eb2ae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14226491972428647811" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7dd4" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12127571017133471513" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3dd006" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16924151031886094421" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6bf50f5f66afcac3ee001b40" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11760490744024426210" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15805867327125738758" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1610459912645004167" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f80bf1b25a48c653517f37e1b2dd909d9683e955d1b318650de8e0542ae4b6eb7ee91a18f46d45a118f1b3f2e4c83df7a8fab49cb08557fc1ff611c4b1b6d71f495edea8fca45ca465eb2ae1bc56ea712e08e4d83427dd4ffd905069fbf1ba84dc995e0903719433dd0061beadea9b20ca1a0554c6bf50f5f66afcac3ee001b40ffbf1ba335a8059dd866e241d41bdb59b897484855061b165980c20a364b87ffffff", + "cborBytes": [ + 159, 128, 191, 27, 37, 164, 140, 101, 53, 23, 243, 126, 27, 45, 217, 9, 217, 104, 62, 149, 93, 27, 49, 134, 80, + 222, 142, 5, 66, 174, 75, 110, 183, 238, 145, 161, 143, 70, 212, 90, 17, 143, 27, 63, 46, 76, 131, 223, 122, 143, + 171, 73, 203, 8, 85, 127, 193, 255, 97, 28, 75, 27, 109, 113, 244, 149, 237, 234, 143, 202, 69, 202, 70, 94, 178, + 174, 27, 197, 110, 167, 18, 224, 142, 77, 131, 66, 125, 212, 255, 217, 5, 6, 159, 191, 27, 168, 77, 201, 149, 224, + 144, 55, 25, 67, 61, 208, 6, 27, 234, 222, 169, 178, 12, 161, 160, 85, 76, 107, 245, 15, 95, 102, 175, 202, 195, + 238, 0, 27, 64, 255, 191, 27, 163, 53, 168, 5, 157, 216, 102, 226, 65, 212, 27, 219, 89, 184, 151, 72, 72, 85, 6, + 27, 22, 89, 128, 194, 10, 54, 75, 135, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3824, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8898245280262227474" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1c3c4050dfbbfe" + }, + { + "_tag": "ByteArray", + "bytearray": "21" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12307553899142245006" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "87800edad5" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12242257973795269111" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8365399417757143597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "da33" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8794399283518811923" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9676548195383073495" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6180897157422664378" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b7b7ceaeffe5386129f9f471c3c4050dfbbfe4121ffd8669f1baacd37102458ea8e9f4587800edad5ffffffff1ba9e53cc3d0c2a9f7d8669f1b7417de72dbac922d9f42da331b7a0bfb8dbb16af139f1b864a0150adc15ad71b55c6f53785664abaffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 123, 124, 234, 239, 254, 83, 134, 18, 159, 159, 71, 28, 60, 64, 80, 223, 187, 254, 65, 33, + 255, 216, 102, 159, 27, 170, 205, 55, 16, 36, 88, 234, 142, 159, 69, 135, 128, 14, 218, 213, 255, 255, 255, 255, + 27, 169, 229, 60, 195, 208, 194, 169, 247, 216, 102, 159, 27, 116, 23, 222, 114, 219, 172, 146, 45, 159, 66, 218, + 51, 27, 122, 11, 251, 141, 187, 22, 175, 19, 159, 27, 134, 74, 1, 80, 173, 193, 90, 215, 27, 85, 198, 245, 55, + 133, 102, 74, 186, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3825, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14430072447411891997" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3669307076492869744" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3059884671624995728" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "601609900973331832" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a282bd" + }, + { + "_tag": "ByteArray", + "bytearray": "af39779a54e49280" + }, + { + "_tag": "ByteArray", + "bytearray": "ddb6fa" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14379493737932076641" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6137606430580660764" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "833400362541833158" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10497191454998793861" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3509740197056428542" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12657753585046347057" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10019526642440783145" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17135126633327067216" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1755277958e1bbf423" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7273462631534450062" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c8727cb45baaad6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a409d6d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15285554334683014954" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11376959612894016632" + } + }, + { + "_tag": "ByteArray", + "bytearray": "371ed06790ecbf214a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6643438927280014778" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9554218320166052136" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7320062823146435323" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd7699664dbc" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9131014166180125191" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "4f9f2d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17761903966982637926" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1bc841ea6fe7232f1d9fd8669f1b32ebff58622f40709f1b2a76e4e599dee3901b0859590478df957843a282bd48af39779a54e4928043ddb6faffff1bc78e395e6b653661a0bf1b552d2887b9e9da1c1b0b90d536d4fcdbc61b91ad840306780e851b30b51a1d237539fe1bafa95fd26b1d5d311b8b0c8265443ec529ffffffd8669f1bedcc32e320cb80509fbf491755277958e1bbf4231b64f087ba17b0558e485c8727cb45baaad6449a409d6dff1bd42132ae59b6a72a1b9de3147d7e83747849371ed06790ecbf214abf1b5c323c81838705ba1b849766f11806e1281b6596165ab32fb2fb46dd7699664dbcffffffd8669f1b7eb7e1018639da0780ff434f9f2dd8669f1bf67ef58d269a096680ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 200, 65, 234, 111, 231, 35, 47, 29, 159, 216, 102, 159, 27, 50, 235, 255, 88, 98, 47, 64, + 112, 159, 27, 42, 118, 228, 229, 153, 222, 227, 144, 27, 8, 89, 89, 4, 120, 223, 149, 120, 67, 162, 130, 189, 72, + 175, 57, 119, 154, 84, 228, 146, 128, 67, 221, 182, 250, 255, 255, 27, 199, 142, 57, 94, 107, 101, 54, 97, 160, + 191, 27, 85, 45, 40, 135, 185, 233, 218, 28, 27, 11, 144, 213, 54, 212, 252, 219, 198, 27, 145, 173, 132, 3, 6, + 120, 14, 133, 27, 48, 181, 26, 29, 35, 117, 57, 254, 27, 175, 169, 95, 210, 107, 29, 93, 49, 27, 139, 12, 130, + 101, 68, 62, 197, 41, 255, 255, 255, 216, 102, 159, 27, 237, 204, 50, 227, 32, 203, 128, 80, 159, 191, 73, 23, 85, + 39, 121, 88, 225, 187, 244, 35, 27, 100, 240, 135, 186, 23, 176, 85, 142, 72, 92, 135, 39, 203, 69, 186, 170, 214, + 68, 154, 64, 157, 109, 255, 27, 212, 33, 50, 174, 89, 182, 167, 42, 27, 157, 227, 20, 125, 126, 131, 116, 120, 73, + 55, 30, 208, 103, 144, 236, 191, 33, 74, 191, 27, 92, 50, 60, 129, 131, 135, 5, 186, 27, 132, 151, 102, 241, 24, + 6, 225, 40, 27, 101, 150, 22, 90, 179, 47, 178, 251, 70, 221, 118, 153, 102, 77, 188, 255, 255, 255, 216, 102, + 159, 27, 126, 183, 225, 1, 134, 57, 218, 7, 128, 255, 67, 79, 159, 45, 216, 102, 159, 27, 246, 126, 245, 141, 38, + 154, 9, 102, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3826, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1518205627798123187" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18258042399847060584" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11001958164211756593" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5a195bbd0769968b5de90" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4df7117417c0b854" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12525599849739335653" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12668765279392947040" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ba6335bb01a80c2e81" + }, + { + "_tag": "ByteArray", + "bytearray": "c401eb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16262772027953181837" + } + } + ] + }, + "cborHex": "9fbf1b1511bff984e7f2b31bfd6198d3d0e794681b98aecea8d38cee314bc5a195bbd0769968b5de90484df7117417c0b8541badd3deb32a6637e5ff9f1bafd07ee64d04db6041d7ff49ba6335bb01a80c2e8143c401eb1be1b0f8fedd4ef48dff", + "cborBytes": [ + 159, 191, 27, 21, 17, 191, 249, 132, 231, 242, 179, 27, 253, 97, 152, 211, 208, 231, 148, 104, 27, 152, 174, 206, + 168, 211, 140, 238, 49, 75, 197, 161, 149, 187, 208, 118, 153, 104, 181, 222, 144, 72, 77, 247, 17, 116, 23, 192, + 184, 84, 27, 173, 211, 222, 179, 42, 102, 55, 229, 255, 159, 27, 175, 208, 126, 230, 77, 4, 219, 96, 65, 215, 255, + 73, 186, 99, 53, 187, 1, 168, 12, 46, 129, 67, 196, 1, 235, 27, 225, 176, 248, 254, 221, 78, 244, 141, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3827, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2821836524720455695" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a837f60f" + }, + { + "_tag": "ByteArray", + "bytearray": "f8" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12104071071422430095" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "69ab0c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13360641255606665635" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c689ff0518aa0f376c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12245844939984810842" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4172702390929653153" + } + }, + { + "_tag": "ByteArray", + "bytearray": "618fb5f07536d9a707df13" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6282906956001230943" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7585140547504279766" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac678bd95a" + }, + { + "_tag": "ByteArray", + "bytearray": "449c0fa5dd1478020d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1320573803805502136" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2ba0a948e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9346800629281465839" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14044277975395212934" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "73" + }, + { + "_tag": "ByteArray", + "bytearray": "ce25" + } + ] + }, + "cborHex": "9f9f9f1b27292d5e562f800f44a837f60f41f8ffd8669f1ba7fa4c8264373b8f9f4369ab0cffffd8669f1bb96a886f2bdd41a39f49c689ff0518aa0f376c1ba9f1fb17764f335a1b39e86ab774c8fda14b618fb5f07536d9a707df131b57315e969548c05fffffffd9050d9f1b6943d523e16790d645ac678bd95a49449c0fa5dd1478020dbf1b12539ee0bb836ab845f2ba0a948e1b81b681a69eb825ef1bc2e74c68aa461e86ffff417342ce25ff", + "cborBytes": [ + 159, 159, 159, 27, 39, 41, 45, 94, 86, 47, 128, 15, 68, 168, 55, 246, 15, 65, 248, 255, 216, 102, 159, 27, 167, + 250, 76, 130, 100, 55, 59, 143, 159, 67, 105, 171, 12, 255, 255, 216, 102, 159, 27, 185, 106, 136, 111, 43, 221, + 65, 163, 159, 73, 198, 137, 255, 5, 24, 170, 15, 55, 108, 27, 169, 241, 251, 23, 118, 79, 51, 90, 27, 57, 232, + 106, 183, 116, 200, 253, 161, 75, 97, 143, 181, 240, 117, 54, 217, 167, 7, 223, 19, 27, 87, 49, 94, 150, 149, 72, + 192, 95, 255, 255, 255, 217, 5, 13, 159, 27, 105, 67, 213, 35, 225, 103, 144, 214, 69, 172, 103, 139, 217, 90, 73, + 68, 156, 15, 165, 221, 20, 120, 2, 13, 191, 27, 18, 83, 158, 224, 187, 131, 106, 184, 69, 242, 186, 10, 148, 142, + 27, 129, 182, 129, 166, 158, 184, 37, 239, 27, 194, 231, 76, 104, 170, 70, 30, 134, 255, 255, 65, 115, 66, 206, + 37, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3828, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6886608267395456825" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14098058141592221602" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "8c8557ba20b797be5aae" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11970511160221093156" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1157200765900056600" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "54230369e2ae1004de" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11990550322264051923" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9871631403856375220" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f0a87152b76f01fdcac7b8" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4aa7" + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f1b5f9225bb7d5fdf391bc3a65d2f606877a29f804a8c8557ba20b797be5aae801ba61fcc7a4cd3cd24d8669f1b100f33f7294868189f4954230369e2ae1004de1ba666fdfd4bfe90d31b88ff1475ac732db44bf0a87152b76f01fdcac7b8ffffff424aa780ff", + "cborBytes": [ + 159, 27, 95, 146, 37, 187, 125, 95, 223, 57, 27, 195, 166, 93, 47, 96, 104, 119, 162, 159, 128, 74, 140, 133, 87, + 186, 32, 183, 151, 190, 90, 174, 128, 27, 166, 31, 204, 122, 76, 211, 205, 36, 216, 102, 159, 27, 16, 15, 51, 247, + 41, 72, 104, 24, 159, 73, 84, 35, 3, 105, 226, 174, 16, 4, 222, 27, 166, 102, 253, 253, 75, 254, 144, 211, 27, + 136, 255, 20, 117, 172, 115, 45, 180, 75, 240, 168, 113, 82, 183, 111, 1, 253, 202, 199, 184, 255, 255, 255, 66, + 74, 167, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3829, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1568603304106752183" + } + } + ] + }, + "cborHex": "9f1b15c4cc64eec978b7ff", + "cborBytes": [159, 27, 21, 196, 204, 100, 238, 201, 120, 183, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3830, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13034670390614060865" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5542129027126998709" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33b5600ec4eaee58" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bb4e473a8dcda6f419fbf1b4ce998fc994936b54833b5600ec4eaee58ffd8669f1bfffffffffffffffe80ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 180, 228, 115, 168, 220, 218, 111, 65, 159, 191, 27, 76, 233, 152, 252, 153, 73, 54, 181, + 72, 51, 181, 96, 14, 196, 234, 238, 88, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 128, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3831, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2505379165782927960" + } + } + ] + }, + "cborHex": "9f1b22c4e513c427ea58ff", + "cborBytes": [159, 27, 34, 196, 229, 19, 196, 39, 234, 88, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3832, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0174382160fa8f4aa194" + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f9f4a0174382160fa8f4aa194a0ffff", + "cborBytes": [159, 159, 74, 1, 116, 56, 33, 96, 250, 143, 74, 161, 148, 160, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3833, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4380471941093874749" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3472be88e4ef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6160129344450535327" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11082658444379924236" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9662292838928300358" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bfe4589a56936" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59f8e3acac73e2ecf547" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15442849347180673453" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b3cca90058d775c3d463472be88e4ef1b557d2d00426f1f9f1b99cd8323003fa70c1b86175c24dc1f3946478bfe4589a569364a59f8e3acac73e2ecf5471bd65005a95a93b9adffff", + "cborBytes": [ + 159, 191, 27, 60, 202, 144, 5, 141, 119, 92, 61, 70, 52, 114, 190, 136, 228, 239, 27, 85, 125, 45, 0, 66, 111, 31, + 159, 27, 153, 205, 131, 35, 0, 63, 167, 12, 27, 134, 23, 92, 36, 220, 31, 57, 70, 71, 139, 254, 69, 137, 165, 105, + 54, 74, 89, 248, 227, 172, 172, 115, 226, 236, 245, 71, 27, 214, 80, 5, 169, 90, 147, 185, 173, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3834, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "301021642171f3570b107044" + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe4c02fd02070368faf84a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6377524340427791128" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3651189064575424388" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a2896" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "25ddec19481fd9b2ea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + }, + "cborHex": "9f4c301021642171f3570b107044a0bf0b4bfe4c02fd02070368faf84a121b58818499199b1b181b32aba11c01cf1784431a2896ff4925ddec19481fd9b2ea10ff", + "cborBytes": [ + 159, 76, 48, 16, 33, 100, 33, 113, 243, 87, 11, 16, 112, 68, 160, 191, 11, 75, 254, 76, 2, 253, 2, 7, 3, 104, 250, + 248, 74, 18, 27, 88, 129, 132, 153, 25, 155, 27, 24, 27, 50, 171, 161, 28, 1, 207, 23, 132, 67, 26, 40, 150, 255, + 73, 37, 221, 236, 25, 72, 31, 217, 178, 234, 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3835, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "868f056368d8ea" + } + ] + }, + "cborHex": "9f47868f056368d8eaff", + "cborBytes": [159, 71, 134, 143, 5, 99, 104, 216, 234, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3836, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "03fb0003fa0705" + }, + { + "_tag": "ByteArray", + "bytearray": "7a44c68c6d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2158eb2bcf99ce" + } + } + ] + } + ] + }, + "cborHex": "9fd90501804703fb0003fa0705457a44c68c6dbf0d472158eb2bcf99ceffff", + "cborBytes": [ + 159, 217, 5, 1, 128, 71, 3, 251, 0, 3, 250, 7, 5, 69, 122, 68, 198, 140, 109, 191, 13, 71, 33, 88, 235, 43, 207, + 153, 206, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3837, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4564773861804331615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7132550268624159739" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6250315966558353458" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3941251616484676565" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6434288089356359782" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab012959d354" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "245f78521385ac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8e5673547669883" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51685fb8da538e3e85" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15237017623303620034" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59a88e2865" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87a63c1add56" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1637571740356023760" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2713448322381528131" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5358623c1c0a981740ede" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "712497ea229332577ba1a80e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1f23" + }, + { + "_tag": "ByteArray", + "bytearray": "efeefe4c746c49" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9009533998753674444" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7277006793599379895" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "845b" + } + ] + }, + "cborHex": "9fbf1b3f5955a460d5d25f1b62fbe8adeff5c3fb1b56bd954188a9b8321b36b22376ab00d3d51b594b2eed4c9cd86646ab012959d354ff9fbf47245f78521385ac48e8e56735476698834951685fb8da538e3e851bd374c2cc996105c24559a88e28654687a63c1add56417c1b16b9d2d2562395d042b2cf1b25a81adf6bee3c434bb5358623c1c0a981740ede4c712497ea229332577ba1a80eff421f2347efeefe4c746c49ff1b7d084b6ff38474cc9f1b64fd1f1fa09869b7ff42845bff", + "cborBytes": [ + 159, 191, 27, 63, 89, 85, 164, 96, 213, 210, 95, 27, 98, 251, 232, 173, 239, 245, 195, 251, 27, 86, 189, 149, 65, + 136, 169, 184, 50, 27, 54, 178, 35, 118, 171, 0, 211, 213, 27, 89, 75, 46, 237, 76, 156, 216, 102, 70, 171, 1, 41, + 89, 211, 84, 255, 159, 191, 71, 36, 95, 120, 82, 19, 133, 172, 72, 232, 229, 103, 53, 71, 102, 152, 131, 73, 81, + 104, 95, 184, 218, 83, 142, 62, 133, 27, 211, 116, 194, 204, 153, 97, 5, 194, 69, 89, 168, 142, 40, 101, 70, 135, + 166, 60, 26, 221, 86, 65, 124, 27, 22, 185, 210, 210, 86, 35, 149, 208, 66, 178, 207, 27, 37, 168, 26, 223, 107, + 238, 60, 67, 75, 181, 53, 134, 35, 193, 192, 169, 129, 116, 14, 222, 76, 113, 36, 151, 234, 34, 147, 50, 87, 123, + 161, 168, 14, 255, 66, 31, 35, 71, 239, 238, 254, 76, 116, 108, 73, 255, 27, 125, 8, 75, 111, 243, 132, 116, 204, + 159, 27, 100, 253, 31, 31, 160, 152, 105, 183, 255, 66, 132, 91, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3838, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1417549916871343709" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d2f57fdb8e66" + }, + { + "_tag": "ByteArray", + "bytearray": "6aa497184166" + }, + { + "_tag": "ByteArray", + "bytearray": "ed38e0824ab2d54f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17577886571098573145" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "930427506606822013" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b13ac26238e803e5d9f9f46d2f57fdb8e66466aa49718416648ed38e0824ab2d54f1bf3f132b46c7089591b0ce98ae33c8d527dffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 19, 172, 38, 35, 142, 128, 62, 93, 159, 159, 70, 210, 245, 127, 219, 142, 102, 70, 106, + 164, 151, 24, 65, 102, 72, 237, 56, 224, 130, 74, 178, 213, 79, 27, 243, 241, 50, 180, 108, 112, 137, 89, 27, 12, + 233, 138, 227, 60, 141, 82, 125, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3839, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e8bd755b7a890c70" + } + ] + }, + "cborHex": "9f48e8bd755b7a890c70ff", + "cborBytes": [159, 72, 232, 189, 117, 91, 122, 137, 12, 112, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3840, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13125129260133659788" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2ceb6ca12978" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8861137555673390627" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7086011697997397214" + } + }, + { + "_tag": "ByteArray", + "bytearray": "78ce" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cba8442883a92a" + }, + { + "_tag": "ByteArray", + "bytearray": "f483f5949b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12706270704879638267" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7d3a031dacf27133" + }, + { + "_tag": "ByteArray", + "bytearray": "c45a7f07bb" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bb625d385ad5a348c9f462ceb6ca12978d8669f1b7af915a897c91e239f1b625692189565bcde4278ceffff9f47cba8442883a92a45f483f5949b1bb055bde2a84d96fb487d3a031dacf2713345c45a7f07bbffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 182, 37, 211, 133, 173, 90, 52, 140, 159, 70, 44, 235, 108, 161, 41, 120, 216, 102, 159, + 27, 122, 249, 21, 168, 151, 201, 30, 35, 159, 27, 98, 86, 146, 24, 149, 101, 188, 222, 66, 120, 206, 255, 255, + 159, 71, 203, 168, 68, 40, 131, 169, 42, 69, 244, 131, 245, 148, 155, 27, 176, 85, 189, 226, 168, 77, 150, 251, + 72, 125, 58, 3, 29, 172, 242, 113, 51, 69, 196, 90, 127, 7, 187, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3841, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ebcac6aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17058111188890966052" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf4dc7af88d574ea33" + } + ] + }, + "cborHex": "9f44ebcac6aa1becba95bfa0f658240c49bf4dc7af88d574ea33ff", + "cborBytes": [ + 159, 68, 235, 202, 198, 170, 27, 236, 186, 149, 191, 160, 246, 88, 36, 12, 73, 191, 77, 199, 175, 136, 213, 116, + 234, 51, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3842, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17297460149521599303" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10171056250709005259" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3995677682265531953" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9225805937962271873" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10031929550359681181" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9670926823559266794" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13115440638146791275" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8aa61b4e77a2a41c4c68a1" + }, + { + "_tag": "ByteArray", + "bytearray": "1895" + }, + { + "_tag": "ByteArray", + "bytearray": "11b5" + }, + { + "_tag": "ByteArray", + "bytearray": "3930315c47231d" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5748615197766821599" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4a92605a95904c24" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c92" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0358047a1edbf1206" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cfcdbe21e3d1c14" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "881625" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3648047bdf930d5dbf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3811cf87a90319" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "915f0065533a44daa8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "590a2d382371" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "947919d574463036ff74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5184" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4dc85f4942e599e33" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8550509825268574205" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae550d74be62a3e01a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c58bc21c16dd846e9d7e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3aa71101bf31d4d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eafcac6f8717d9fd3f5c7b" + } + } + ] + } + ] + }, + "cborHex": "9f099fbf1bf00cec5c30b5cb471b8d26d9c57e06d3cb41c41b37737fae9864a631ffd8669f1b8008a59ec2ee44819f1b8b3892c64ceed89dffffd8669f1b863608b50f0c01ea80ff80d8669f1bb60367c59576476b9f4b8aa61b4e77a2a41c4c68a14218954211b5473930315c47231dffffffd8669f1b4fc72f109d4da6df9fd8669f1bfffffffffffffff69f484a92605a95904c24ffff08429c92bf49d0358047a1edbf1206481cfcdbe21e3d1c14ff43881625ffffbf493648047bdf930d5dbf473811cf87a9031949915f0065533a44daa846590a2d3823714a947919d574463036ff7442518449a4dc85f4942e599e331b76a983622f9ee7fd49ae550d74be62a3e01a4ac58bc21c16dd846e9d7e48b3aa71101bf31d4d4beafcac6f8717d9fd3f5c7bffff", + "cborBytes": [ + 159, 9, 159, 191, 27, 240, 12, 236, 92, 48, 181, 203, 71, 27, 141, 38, 217, 197, 126, 6, 211, 203, 65, 196, 27, + 55, 115, 127, 174, 152, 100, 166, 49, 255, 216, 102, 159, 27, 128, 8, 165, 158, 194, 238, 68, 129, 159, 27, 139, + 56, 146, 198, 76, 238, 216, 157, 255, 255, 216, 102, 159, 27, 134, 54, 8, 181, 15, 12, 1, 234, 128, 255, 128, 216, + 102, 159, 27, 182, 3, 103, 197, 149, 118, 71, 107, 159, 75, 138, 166, 27, 78, 119, 162, 164, 28, 76, 104, 161, 66, + 24, 149, 66, 17, 181, 71, 57, 48, 49, 92, 71, 35, 29, 255, 255, 255, 216, 102, 159, 27, 79, 199, 47, 16, 157, 77, + 166, 223, 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 72, 74, 146, 96, 90, 149, 144, 76, + 36, 255, 255, 8, 66, 156, 146, 191, 73, 208, 53, 128, 71, 161, 237, 191, 18, 6, 72, 28, 252, 219, 226, 30, 61, 28, + 20, 255, 67, 136, 22, 37, 255, 255, 191, 73, 54, 72, 4, 123, 223, 147, 13, 93, 191, 71, 56, 17, 207, 135, 169, 3, + 25, 73, 145, 95, 0, 101, 83, 58, 68, 218, 168, 70, 89, 10, 45, 56, 35, 113, 74, 148, 121, 25, 213, 116, 70, 48, + 54, 255, 116, 66, 81, 132, 73, 164, 220, 133, 244, 148, 46, 89, 158, 51, 27, 118, 169, 131, 98, 47, 158, 231, 253, + 73, 174, 85, 13, 116, 190, 98, 163, 224, 26, 74, 197, 139, 194, 28, 22, 221, 132, 110, 157, 126, 72, 179, 170, + 113, 16, 27, 243, 29, 77, 75, 234, 252, 172, 111, 135, 23, 217, 253, 63, 92, 123, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3843, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7530f5fd8f020a9005042d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16779378182340681247" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7596076590837284654" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7271909884546393607" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e5ab95b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16498305546162781302" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4308803353677755111" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "188520204295479238" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7d376676250ead5be5" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "18bbff19608677" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3842351388424596001" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2af0a3b8ad45c733be20411c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "412dca736db03aca64" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f4b7530f5fd8f020a9005042dd87c9fd8669f1be8dc538e4e5b1e1f9f1b696aaf69e3843f2e1b64eb0383030a2607446e5ab95b1be4f5c17b82e3bc761b3bcbf1d236f972e7ffff9f1b029dc22082041fc6497d376676250ead5be5ff4718bbff19608677bf1b3552c63ae946ea21412a4c2af0a3b8ad45c733be20411c49412dca736db03aca64ffff80ff", + "cborBytes": [ + 159, 75, 117, 48, 245, 253, 143, 2, 10, 144, 5, 4, 45, 216, 124, 159, 216, 102, 159, 27, 232, 220, 83, 142, 78, + 91, 30, 31, 159, 27, 105, 106, 175, 105, 227, 132, 63, 46, 27, 100, 235, 3, 131, 3, 10, 38, 7, 68, 110, 90, 185, + 91, 27, 228, 245, 193, 123, 130, 227, 188, 118, 27, 59, 203, 241, 210, 54, 249, 114, 231, 255, 255, 159, 27, 2, + 157, 194, 32, 130, 4, 31, 198, 73, 125, 55, 102, 118, 37, 14, 173, 91, 229, 255, 71, 24, 187, 255, 25, 96, 134, + 119, 191, 27, 53, 82, 198, 58, 233, 70, 234, 33, 65, 42, 76, 42, 240, 163, 184, 173, 69, 199, 51, 190, 32, 65, 28, + 73, 65, 45, 202, 115, 109, 176, 58, 202, 100, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3844, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17646566359166526181" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a6a01203b570815c" + } + ] + } + ] + }, + "cborHex": "9fd8669f1bf4e5329baf7aa2e59f48a6a01203b570815cffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 244, 229, 50, 155, 175, 122, 162, 229, 159, 72, 166, 160, 18, 3, 181, 112, 129, 92, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3845, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ac42bb85e7a7" + } + ] + }, + "cborHex": "9f46ac42bb85e7a7ff", + "cborBytes": [159, 70, 172, 66, 187, 133, 231, 167, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3846, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14436625507633173953" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb3316563b709ccb55" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64d8bff449d42397eaeaf196" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4329136759599126370" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14090690378005893452" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4fc0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d32b65c73685b89900ef9318" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1bc859326921d195c149cb3316563b709ccb551bffffffffffffffeb4c64d8bff449d42397eaeaf196ff1b3c142ef233fdd7629f1bc38c303e3d0e514cffd8669f1bfffffffffffffff580ffbf424fc041674cd32b65c73685b89900ef93181bfffffffffffffff5ffff", + "cborBytes": [ + 159, 191, 27, 200, 89, 50, 105, 33, 209, 149, 193, 73, 203, 51, 22, 86, 59, 112, 156, 203, 85, 27, 255, 255, 255, + 255, 255, 255, 255, 235, 76, 100, 216, 191, 244, 73, 212, 35, 151, 234, 234, 241, 150, 255, 27, 60, 20, 46, 242, + 51, 253, 215, 98, 159, 27, 195, 140, 48, 62, 61, 14, 81, 76, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 245, 128, 255, 191, 66, 79, 192, 65, 103, 76, 211, 43, 101, 199, 54, 133, 184, 153, 0, 239, 147, 24, 27, 255, + 255, 255, 255, 255, 255, 255, 245, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3847, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7165170852351817359" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15318449094063814314" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8412931552665522093" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8766615300253452667" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6709674721423193910" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13085572713286265163" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cad40db4" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5717933076953856379" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11004016438090479453" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15657022579475175555" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6e1928bf83c90" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17376466915611915051" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17353355706142638326" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17760785284141349988" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a58e53de1f528" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4526183944840096028" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11252433587718270589" + } + }, + { + "_tag": "ByteArray", + "bytearray": "402348fc170aa1a37af8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5429839067996073584" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b7d87f420112" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6667878997388961654" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2144374749011029093" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b674506bc6" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2e887994edf2d6b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6679433173657050969" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "63da2c" + } + ] + } + ] + }, + "cborHex": "9f9f1b636fcced7169b68fd8669f1bd496104a5993f6aa9f1b74c0bcac6c4dcfad1b79a9462b061c897b1b5d1d8d9c18d8f7361bb5994b0d69f8e94bffff44cad40db4bf1b4f5a2dd6ad4a797b1b98b61ea60ef1375d1bd948eb14e1e3588347c6e1928bf83c901bf1259c986460332b1bf0d381129da140f61bf67afc1d813afc64472a58e53de1f528ffffd8669f1b3ed03c512c45291c80ff9f9f1b9c28acbae69f2e7d4a402348fc170aa1a37af81b4b5aa9dd2371ae7046b7d87f4201121b5c89109ec4a82776ff9f1b1dc259790c1eac6545b674506bc6ffbf48d2e887994edf2d6b1b5cb21d1510c9df59ff4363da2cffff", + "cborBytes": [ + 159, 159, 27, 99, 111, 204, 237, 113, 105, 182, 143, 216, 102, 159, 27, 212, 150, 16, 74, 89, 147, 246, 170, 159, + 27, 116, 192, 188, 172, 108, 77, 207, 173, 27, 121, 169, 70, 43, 6, 28, 137, 123, 27, 93, 29, 141, 156, 24, 216, + 247, 54, 27, 181, 153, 75, 13, 105, 248, 233, 75, 255, 255, 68, 202, 212, 13, 180, 191, 27, 79, 90, 45, 214, 173, + 74, 121, 123, 27, 152, 182, 30, 166, 14, 241, 55, 93, 27, 217, 72, 235, 20, 225, 227, 88, 131, 71, 198, 225, 146, + 139, 248, 60, 144, 27, 241, 37, 156, 152, 100, 96, 51, 43, 27, 240, 211, 129, 18, 157, 161, 64, 246, 27, 246, 122, + 252, 29, 129, 58, 252, 100, 71, 42, 88, 229, 61, 225, 245, 40, 255, 255, 216, 102, 159, 27, 62, 208, 60, 81, 44, + 69, 41, 28, 128, 255, 159, 159, 27, 156, 40, 172, 186, 230, 159, 46, 125, 74, 64, 35, 72, 252, 23, 10, 161, 163, + 122, 248, 27, 75, 90, 169, 221, 35, 113, 174, 112, 70, 183, 216, 127, 66, 1, 18, 27, 92, 137, 16, 158, 196, 168, + 39, 118, 255, 159, 27, 29, 194, 89, 121, 12, 30, 172, 101, 69, 182, 116, 80, 107, 198, 255, 191, 72, 210, 232, + 135, 153, 78, 223, 45, 107, 27, 92, 178, 29, 21, 16, 201, 223, 89, 255, 67, 99, 218, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3848, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "148537654715659553" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c99ba2b648" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "017f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff9c06c6020e05feb684" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f75" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9041852390069812730" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b020fb635c118b52141171bfffffffffffffffa45c99ba2b648ffbf42017f4aff9c06c6020e05feb684421f751b7d7b1cd7cda0bdfaffff", + "cborBytes": [ + 159, 191, 27, 2, 15, 182, 53, 193, 24, 181, 33, 65, 23, 27, 255, 255, 255, 255, 255, 255, 255, 250, 69, 201, 155, + 162, 182, 72, 255, 191, 66, 1, 127, 74, 255, 156, 6, 198, 2, 14, 5, 254, 182, 132, 66, 31, 117, 27, 125, 123, 28, + 215, 205, 160, 189, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3849, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "069a6bcacb0200f9cfb9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6037462321685423907" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd79aa1682b84e56e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "833d0407320701fc03f89e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c89079105ee284458a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8f8bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a10695055bca532bcb" + } + } + ] + } + ] + }, + "cborHex": "9fbf4a069a6bcacb0200f9cfb91b53c95ffe64dd672349bd79aa1682b84e56e54b833d0407320701fc03f89e49c89079105ee284458a0b43f8f8bb49a10695055bca532bcbffff", + "cborBytes": [ + 159, 191, 74, 6, 154, 107, 202, 203, 2, 0, 249, 207, 185, 27, 83, 201, 95, 254, 100, 221, 103, 35, 73, 189, 121, + 170, 22, 130, 184, 78, 86, 229, 75, 131, 61, 4, 7, 50, 7, 1, 252, 3, 248, 158, 73, 200, 144, 121, 16, 94, 226, + 132, 69, 138, 11, 67, 248, 248, 187, 73, 161, 6, 149, 5, 91, 202, 83, 43, 203, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3850, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8283115690770394077" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "743539e2ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5945c674e08bd8e65e9870" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11372695193309720138" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7322348154366768441" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "580184600007650291" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea250de72d39" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7904597682196176943" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e905ca6651be6898b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8486218688321062932" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1963b9204005c2fd3ce291" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12532133860323566460" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12858834959329549598" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16118011454388728877" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6621129167622003354" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b72f389d5bdd56bdd9fbf45743539e2ec4b5945c674e08bd8e65e9870ffffff1b9dd3ee05f004ae4a1b659e34d9d6c4b539bf1b080d3ad1db9babf346ea250de72d391b6db2c5b62bade02f494e905ca6651be6898b1b75c51aef63a888144b1963b9204005c2fd3ce2911badeb15590e3b237c1bb273c24438365d1e1bdfaeae055884742d1b5be2f9e5d0165a9affff", + "cborBytes": [ + 159, 216, 102, 159, 27, 114, 243, 137, 213, 189, 213, 107, 221, 159, 191, 69, 116, 53, 57, 226, 236, 75, 89, 69, + 198, 116, 224, 139, 216, 230, 94, 152, 112, 255, 255, 255, 27, 157, 211, 238, 5, 240, 4, 174, 74, 27, 101, 158, + 52, 217, 214, 196, 181, 57, 191, 27, 8, 13, 58, 209, 219, 155, 171, 243, 70, 234, 37, 13, 231, 45, 57, 27, 109, + 178, 197, 182, 43, 173, 224, 47, 73, 78, 144, 92, 166, 101, 27, 230, 137, 139, 27, 117, 197, 26, 239, 99, 168, + 136, 20, 75, 25, 99, 185, 32, 64, 5, 194, 253, 60, 226, 145, 27, 173, 235, 21, 89, 14, 59, 35, 124, 27, 178, 115, + 194, 68, 56, 54, 93, 30, 27, 223, 174, 174, 5, 88, 132, 116, 45, 27, 91, 226, 249, 229, 208, 22, 90, 154, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3851, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ba712090330e41b7ed3cc8" + }, + { + "_tag": "ByteArray", + "bytearray": "0405ef002f" + } + ] + }, + "cborHex": "9f4bba712090330e41b7ed3cc8450405ef002fff", + "cborBytes": [159, 75, 186, 113, 32, 144, 51, 14, 65, 183, 237, 60, 200, 69, 4, 5, 239, 0, 47, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3852, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16583585244878118140" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10272258341994084288" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a8be37647ef01c79313b" + } + ] + } + ] + }, + "cborHex": "9fd87e9fd8669f1be624baeaa75e9cfc80ff1b8e8e64898b99b7c0ff9f4aa8be37647ef01c79313bffff", + "cborBytes": [ + 159, 216, 126, 159, 216, 102, 159, 27, 230, 36, 186, 234, 167, 94, 156, 252, 128, 255, 27, 142, 142, 100, 137, + 139, 153, 183, 192, 255, 159, 74, 168, 190, 55, 100, 126, 240, 28, 121, 49, 59, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3853, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7007fd4d07fb61" + }, + { + "_tag": "ByteArray", + "bytearray": "a9aae190c3" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18348891163991443130" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d40f63d06b6a8834800e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14712722471692142848" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9599199691202581949" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "20" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "336d77" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7387674507024878474" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55e353fe3f2653fafe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "404c4cbd8c379c0b2dc5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85be92" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2107346259102527110" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5abcba0d8108064b48469319" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16569233828812957960" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "904f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "969e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b01bad94d8b67b202bc887" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1404402140161168474" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2955491a7971c0e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6201462833122795099" + } + } + } + ] + } + ] + }, + "cborHex": "9f477007fd4d07fb6145a9aae190c3d905059fd8669f1bfea45b4c0c0386ba9f4ad40f63d06b6a8834800e1bcc2e1722fc1e09001b85373542aa2b55bdffffbf412041cb43336d771b66864ad2936d4b8a4955e353fe3f2653fafe4a404c4cbd8c379c0b2dc54385be921b1d3ecc41e88dee86ffffbf4c5abcba0d8108064b484693191be5f1be6136c8290842904f42969e4bb01bad94d8b67b202bc8871b137d704e3e1ad45a48c2955491a7971c0e1b5610059708125e5bffff", + "cborBytes": [ + 159, 71, 112, 7, 253, 77, 7, 251, 97, 69, 169, 170, 225, 144, 195, 217, 5, 5, 159, 216, 102, 159, 27, 254, 164, + 91, 76, 12, 3, 134, 186, 159, 74, 212, 15, 99, 208, 107, 106, 136, 52, 128, 14, 27, 204, 46, 23, 34, 252, 30, 9, + 0, 27, 133, 55, 53, 66, 170, 43, 85, 189, 255, 255, 191, 65, 32, 65, 203, 67, 51, 109, 119, 27, 102, 134, 74, 210, + 147, 109, 75, 138, 73, 85, 227, 83, 254, 63, 38, 83, 250, 254, 74, 64, 76, 76, 189, 140, 55, 156, 11, 45, 197, 67, + 133, 190, 146, 27, 29, 62, 204, 65, 232, 141, 238, 134, 255, 255, 191, 76, 90, 188, 186, 13, 129, 8, 6, 75, 72, + 70, 147, 25, 27, 229, 241, 190, 97, 54, 200, 41, 8, 66, 144, 79, 66, 150, 158, 75, 176, 27, 173, 148, 216, 182, + 123, 32, 43, 200, 135, 27, 19, 125, 112, 78, 62, 26, 212, 90, 72, 194, 149, 84, 145, 167, 151, 28, 14, 27, 86, 16, + 5, 151, 8, 18, 94, 91, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3854, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "615208c73ddd7be6fbcac3a0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "820021232124413713" + }, + "fields": [] + } + ] + }, + "cborHex": "9f4c615208c73ddd7be6fbcac3a0d8669f1b0b614cf7490dc71180ffff", + "cborBytes": [ + 159, 76, 97, 82, 8, 199, 61, 221, 123, 230, 251, 202, 195, 160, 216, 102, 159, 27, 11, 97, 76, 247, 73, 13, 199, + 17, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3855, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03fa1704" + } + ] + }, + "cborHex": "9f4403fa1704ff", + "cborBytes": [159, 68, 3, 250, 23, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3856, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10119971697760947163" + }, + "fields": [] + } + ] + }, + "cborHex": "9f80d8669f1b8c715ca4260c4bdb80ffff", + "cborBytes": [159, 128, 216, 102, 159, 27, 140, 113, 92, 164, 38, 12, 75, 219, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3857, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2613711413193614748" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7429820411961050651" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5347886012767862563" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9700385559928685806" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17362203364033223407" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13327066074805806335" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "92aa7cca4e66f52a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "414438" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1786aef379ec2a92c1ccf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2211" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11029808988938335671" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f1b2445c4aea8ca259c809f1b671c064cbfe2861bbf1b4a3781fe8a4eff231b869eb1459be0c4ee1bf0f2eff87f4adaef1bb8f33ffc36f5a4ffffbf4892aa7cca4e66f52a434144384bb1786aef379ec2a92c1ccf422211ffd8669f1b9911c0d6461475b780ffffff", + "cborBytes": [ + 159, 27, 36, 69, 196, 174, 168, 202, 37, 156, 128, 159, 27, 103, 28, 6, 76, 191, 226, 134, 27, 191, 27, 74, 55, + 129, 254, 138, 78, 255, 35, 27, 134, 158, 177, 69, 155, 224, 196, 238, 27, 240, 242, 239, 248, 127, 74, 218, 239, + 27, 184, 243, 63, 252, 54, 245, 164, 255, 255, 191, 72, 146, 170, 124, 202, 78, 102, 245, 42, 67, 65, 68, 56, 75, + 177, 120, 106, 239, 55, 158, 194, 169, 44, 28, 207, 66, 34, 17, 255, 216, 102, 159, 27, 153, 17, 192, 214, 70, 20, + 117, 183, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3858, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6840678416" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dfa10728de" + }, + { + "_tag": "ByteArray", + "bytearray": "f5e11775" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2138641192679679460" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11398582302611396424" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "bb5762f56789a0f1ef584277" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8964033800672867049" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5476446025256276474" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12358076904125727038" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2843330673578988328" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "17daffbcc627e24cc1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0afef45a2ccd2c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e620b9d094287b2fb9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2" + } + } + ] + } + ] + }, + "cborHex": "9f02d8669f1bfffffffffffffffb9f4568406784169f45dfa10728de44f5e117751b1dadfad56fb0a5e41b9e2fe6364234d748ff4cbb5762f56789a0f1ef5842771b7c66a53f8bb372e91b4c003ea4ff0011faffffa0bf1bab80b577e95f813e1b27758a2ed9a5d3284917daffbcc627e24cc148a0afef45a2ccd2c549e620b9d094287b2fb941e2ffff", + "cborBytes": [ + 159, 2, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 69, 104, 64, 103, 132, 22, 159, 69, 223, + 161, 7, 40, 222, 68, 245, 225, 23, 117, 27, 29, 173, 250, 213, 111, 176, 165, 228, 27, 158, 47, 230, 54, 66, 52, + 215, 72, 255, 76, 187, 87, 98, 245, 103, 137, 160, 241, 239, 88, 66, 119, 27, 124, 102, 165, 63, 139, 179, 114, + 233, 27, 76, 0, 62, 164, 255, 0, 17, 250, 255, 255, 160, 191, 27, 171, 128, 181, 119, 233, 95, 129, 62, 27, 39, + 117, 138, 46, 217, 165, 211, 40, 73, 23, 218, 255, 188, 198, 39, 226, 76, 193, 72, 160, 175, 239, 69, 162, 204, + 210, 197, 73, 230, 32, 185, 208, 148, 40, 123, 47, 185, 65, 226, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3859, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11872798139536797485" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9988879963430782332" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1a86ca3a48" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9016444876211088725" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14729303515046047878" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8509685836446712020" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "159087848113737788" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d36150585631d27f672fc9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7618142027918861261" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3a6596a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3721318392210480042" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "878915117881564726" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b33477c1ab34" + }, + { + "_tag": "ByteArray", + "bytearray": "e7bbc901147556b3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8249724007390714048" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b78a553a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16194aa6405f2d07" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12778034643927272208" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14342470261796937629" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8266338679235642896" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ef419fe8738fa202" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8479706935339592543" + } + } + ] + } + ] + }, + "cborHex": "9f9fbf1ba4c4a700cd026f2d1b8a9fa167444f057cff451a86ca3a481b7d20d8d7ff73ed55ffd8669f1bcc68ff81fb3b70869f1b76187a2e979440d49f1b0235318e12e6903c4bd36150585631d27f672fc91b69b913cfce93e3cdffbf44f3a6596a1b33a4c75c7fd55baaff9f1b0c3288a49d0d1e3646b33477c1ab3448e7bbc901147556b31b727ce8469b8918c0ffbf44b78a553a4816194aa6405f2d07ffffff1bb154b2cec6eb8b10d8669f1bc70ab0b6a4029f9d9f1b72b7ef3b58e9861048ef419fe8738fa2021b75adf887c0552b5fffffff", + "cborBytes": [ + 159, 159, 191, 27, 164, 196, 167, 0, 205, 2, 111, 45, 27, 138, 159, 161, 103, 68, 79, 5, 124, 255, 69, 26, 134, + 202, 58, 72, 27, 125, 32, 216, 215, 255, 115, 237, 85, 255, 216, 102, 159, 27, 204, 104, 255, 129, 251, 59, 112, + 134, 159, 27, 118, 24, 122, 46, 151, 148, 64, 212, 159, 27, 2, 53, 49, 142, 18, 230, 144, 60, 75, 211, 97, 80, 88, + 86, 49, 210, 127, 103, 47, 201, 27, 105, 185, 19, 207, 206, 147, 227, 205, 255, 191, 68, 243, 166, 89, 106, 27, + 51, 164, 199, 92, 127, 213, 91, 170, 255, 159, 27, 12, 50, 136, 164, 157, 13, 30, 54, 70, 179, 52, 119, 193, 171, + 52, 72, 231, 187, 201, 1, 20, 117, 86, 179, 27, 114, 124, 232, 70, 155, 137, 24, 192, 255, 191, 68, 183, 138, 85, + 58, 72, 22, 25, 74, 166, 64, 95, 45, 7, 255, 255, 255, 27, 177, 84, 178, 206, 198, 235, 139, 16, 216, 102, 159, + 27, 199, 10, 176, 182, 164, 2, 159, 157, 159, 27, 114, 183, 239, 59, 88, 233, 134, 16, 72, 239, 65, 159, 232, 115, + 143, 162, 2, 27, 117, 173, 248, 135, 192, 85, 43, 95, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3860, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14066528546559987374" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "06931d2a91d2" + }, + { + "_tag": "ByteArray", + "bytearray": "43ba607cb04f8e" + }, + { + "_tag": "ByteArray", + "bytearray": "9d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15840867754058028582" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9392" + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8482679490185106436" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7544915406546919569" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48dd721f" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bc336592f78998eae9f9f4606931d2a91d24743ba607cb04f8e419d1bdbd6114b36919626429392ff809f1b75b8880d9bf99404ffffffbf1b68b4ec966b99e0914448dd721fffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 195, 54, 89, 47, 120, 153, 142, 174, 159, 159, 70, 6, 147, 29, 42, 145, 210, 71, 67, 186, + 96, 124, 176, 79, 142, 65, 157, 27, 219, 214, 17, 75, 54, 145, 150, 38, 66, 147, 146, 255, 128, 159, 27, 117, 184, + 136, 13, 155, 249, 148, 4, 255, 255, 255, 191, 27, 104, 180, 236, 150, 107, 153, 224, 145, 68, 72, 221, 114, 31, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3861, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15112569182145388241" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3203819476753493211" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6211138623183141738" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a1644d9e6fd3" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bd1baa199f14a9ed19f1b2c7640d6ec5eacdb9f1b563265ab758a3b6a46a1644d9e6fd3ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 209, 186, 161, 153, 241, 74, 158, 209, 159, 27, 44, 118, 64, 214, 236, 94, 172, 219, 159, + 27, 86, 50, 101, 171, 117, 138, 59, 106, 70, 161, 100, 77, 158, 111, 211, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3862, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17668705229405245909" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fade020207c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3623679706109424381" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8916990108899984288" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0306" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [] + } + ] + }, + "cborHex": "9fbf021bf533d9cb17c951d507140946fade020207c11b3249e57e5e71b2fd1bffffffffffffffee1b7bbf834282a7c3a0420306ffd8669f1bfffffffffffffff580ffff", + "cborBytes": [ + 159, 191, 2, 27, 245, 51, 217, 203, 23, 201, 81, 213, 7, 20, 9, 70, 250, 222, 2, 2, 7, 193, 27, 50, 73, 229, 126, + 94, 113, 178, 253, 27, 255, 255, 255, 255, 255, 255, 255, 238, 27, 123, 191, 131, 66, 130, 167, 195, 160, 66, 3, + 6, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3863, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3071257139042612474" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2782589530214684551" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "469658094611997781" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14553803518934915467" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5aa649bf9d3b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16683262349611557426" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60ee80b645091bee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8112222890800905987" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b2a9f4c18828474faa01b269dbe6f582ad787d8669f1b06848f8c773c24559f1bc9f97f30ecf2198b419dbf465aa649bf9d3b1be786dab71b3ee2324860ee80b645091bee1b709467bd20faff03ffffffff", + "cborBytes": [ + 159, 27, 42, 159, 76, 24, 130, 132, 116, 250, 160, 27, 38, 157, 190, 111, 88, 42, 215, 135, 216, 102, 159, 27, 6, + 132, 143, 140, 119, 60, 36, 85, 159, 27, 201, 249, 127, 48, 236, 242, 25, 139, 65, 157, 191, 70, 90, 166, 73, 191, + 157, 59, 27, 231, 134, 218, 183, 27, 62, 226, 50, 72, 96, 238, 128, 182, 69, 9, 27, 238, 27, 112, 148, 103, 189, + 32, 250, 255, 3, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3864, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12845053935528180774" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "445072636532216377" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "52fac150e7ed" + }, + { + "_tag": "ByteArray", + "bytearray": "c1912d1279f439c6" + }, + { + "_tag": "ByteArray", + "bytearray": "e20c3d02d5be8f53" + }, + { + "_tag": "ByteArray", + "bytearray": "8d3288b4" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1472041065100599759" + } + }, + { + "_tag": "ByteArray", + "bytearray": "14330b067a8931b11c" + }, + { + "_tag": "ByteArray", + "bytearray": "99db3bb9ed4c" + }, + { + "_tag": "ByteArray", + "bytearray": "c371e307c66c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15514377223108846325" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1393249070256851510" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8882229627273061440" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cfbb270568df683cae103e" + }, + { + "_tag": "ByteArray", + "bytearray": "da281d8bee0f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13719514283123820248" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "477145998726057294" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d82a713856fa4de1964a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4512212264071307303" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4812de5285" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8354018047385039967" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53b21a7a6dcc6bfc98" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9585842431528726776" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a6787489dc0dd56" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15026928558189927840" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14434337297880322629" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17713132268392484649" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd" + }, + { + "_tag": "ByteArray", + "bytearray": "2004e3caff2c6af1" + }, + { + "_tag": "ByteArray", + "bytearray": "f4214f61" + }, + { + "_tag": "ByteArray", + "bytearray": "8970d4ce4f18f3d6850267" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "66e9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13284092301302042160" + } + } + ] + }, + "cborHex": "9fd8669f1bb242cc7f93e3fc269fd8669f1b062d37346fbfd2399f4652fac150e7ed48c1912d1279f439c648e20c3d02d5be8f53448d3288b4ffff1b146dbd8cac1be1cf4914330b067a8931b11c4699db3bb9ed4c46c371e307c66cffffd8669f1bd74e23e2bed062f59f1b1355d0a5cc4d8a36d8669f1b7b4404c9330fa4409f4bcfbb270568df683cae103e46da281d8bee0fffff1bbe65818d287e46d8bf1b069f29c20010cd4e4ad82a713856fa4de1964a1b3e9e9925bf21a027454812de52851b73ef6f271196745f4953b21a7a6dcc6bfc981b8507c0e74c22f0f8489a6787489dc0dd561bd08a5fe858155da01bc851114bc8541245ff9f1bf5d1aff32d0b0f2941fd482004e3caff2c6af144f4214f614b8970d4ce4f18f3d6850267ffffff4266e91bb85a9390de9c0e30ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 178, 66, 204, 127, 147, 227, 252, 38, 159, 216, 102, 159, 27, 6, 45, 55, 52, 111, 191, + 210, 57, 159, 70, 82, 250, 193, 80, 231, 237, 72, 193, 145, 45, 18, 121, 244, 57, 198, 72, 226, 12, 61, 2, 213, + 190, 143, 83, 68, 141, 50, 136, 180, 255, 255, 27, 20, 109, 189, 140, 172, 27, 225, 207, 73, 20, 51, 11, 6, 122, + 137, 49, 177, 28, 70, 153, 219, 59, 185, 237, 76, 70, 195, 113, 227, 7, 198, 108, 255, 255, 216, 102, 159, 27, + 215, 78, 35, 226, 190, 208, 98, 245, 159, 27, 19, 85, 208, 165, 204, 77, 138, 54, 216, 102, 159, 27, 123, 68, 4, + 201, 51, 15, 164, 64, 159, 75, 207, 187, 39, 5, 104, 223, 104, 60, 174, 16, 62, 70, 218, 40, 29, 139, 238, 15, + 255, 255, 27, 190, 101, 129, 141, 40, 126, 70, 216, 191, 27, 6, 159, 41, 194, 0, 16, 205, 78, 74, 216, 42, 113, + 56, 86, 250, 77, 225, 150, 74, 27, 62, 158, 153, 37, 191, 33, 160, 39, 69, 72, 18, 222, 82, 133, 27, 115, 239, + 111, 39, 17, 150, 116, 95, 73, 83, 178, 26, 122, 109, 204, 107, 252, 152, 27, 133, 7, 192, 231, 76, 34, 240, 248, + 72, 154, 103, 135, 72, 157, 192, 221, 86, 27, 208, 138, 95, 232, 88, 21, 93, 160, 27, 200, 81, 17, 75, 200, 84, + 18, 69, 255, 159, 27, 245, 209, 175, 243, 45, 11, 15, 41, 65, 253, 72, 32, 4, 227, 202, 255, 44, 106, 241, 68, + 244, 33, 79, 97, 75, 137, 112, 212, 206, 79, 24, 243, 214, 133, 2, 103, 255, 255, 255, 66, 102, 233, 27, 184, 90, + 147, 144, 222, 156, 14, 48, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3865, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6032550844811002036" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0c" + }, + { + "_tag": "ByteArray", + "bytearray": "221af5" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5333108239171996645" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8091681350075515157" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1917222692490442685" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0bc50186c5c465060d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9aad138993" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61ac97c3ae6626f9d49f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "567133545908336518" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6462493266512165201" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11666741831844760112" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17941226405059074661" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2daf64e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "849685533783091375" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2f490ee61a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17118721854266855820" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15123584127401796940" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "72" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b3411ca3b58" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77e351343d405a17" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17548174561813721820" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8113fcb3d5bf12bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdfb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e227c2a03d3a1fd6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10560718531922791226" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b53b7ed08127140b49f410c43221af5d8669f1b4a0301b0008e4be59f1b704b6d50fae781151b1a9b57e18535f7bdffffbf490bc50186c5c465060d459aad1389934a61ac97c3ae6626f9d49f41daffbf1b07dedcf48812f7861b59af6362d9cfb9511ba1e897e20d4c0a301bf8fc0a5bd4679a65442daf64e21b0bcab07dbbede8af46c2f490ee61a01bed91ead3dc4ad18cffff80d8669f1bd1e1c3a2bc85254c80ffbf4172460b3411ca3b584877e351343d405a171bf387a3ca2d73f2dc488113fcb3d5bf12bb42bdfb48e227c2a03d3a1fd61b928f358d3c248b3affff", + "cborBytes": [ + 159, 27, 83, 183, 237, 8, 18, 113, 64, 180, 159, 65, 12, 67, 34, 26, 245, 216, 102, 159, 27, 74, 3, 1, 176, 0, + 142, 75, 229, 159, 27, 112, 75, 109, 80, 250, 231, 129, 21, 27, 26, 155, 87, 225, 133, 53, 247, 189, 255, 255, + 191, 73, 11, 197, 1, 134, 197, 196, 101, 6, 13, 69, 154, 173, 19, 137, 147, 74, 97, 172, 151, 195, 174, 102, 38, + 249, 212, 159, 65, 218, 255, 191, 27, 7, 222, 220, 244, 136, 18, 247, 134, 27, 89, 175, 99, 98, 217, 207, 185, 81, + 27, 161, 232, 151, 226, 13, 76, 10, 48, 27, 248, 252, 10, 91, 212, 103, 154, 101, 68, 45, 175, 100, 226, 27, 11, + 202, 176, 125, 187, 237, 232, 175, 70, 194, 244, 144, 238, 97, 160, 27, 237, 145, 234, 211, 220, 74, 209, 140, + 255, 255, 128, 216, 102, 159, 27, 209, 225, 195, 162, 188, 133, 37, 76, 128, 255, 191, 65, 114, 70, 11, 52, 17, + 202, 59, 88, 72, 119, 227, 81, 52, 61, 64, 90, 23, 27, 243, 135, 163, 202, 45, 115, 242, 220, 72, 129, 19, 252, + 179, 213, 191, 18, 187, 66, 189, 251, 72, 226, 39, 194, 160, 61, 58, 31, 214, 27, 146, 143, 53, 141, 60, 36, 139, + 58, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3866, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9392312453199281192" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13938413837864689759" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "168fa8865e8227" + }, + { + "_tag": "ByteArray", + "bytearray": "f6e01c1e5f29d54682de50" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11160046745226016550" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c83f2f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11737611779501953821" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14070129775983354948" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12812687923933077788" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2261bf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13779822389531238203" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ade6519dea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14508798831016549717" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9801709173400400791" + } + } + } + ] + } + ] + }, + "cborHex": "9f1b82583269e06bbc28d8669f1bc16f31896250605f9f9f47168fa8865e82274bf6e01c1e5f29d54682de50ffa0ffffbf1b9ae07362e5f37726443c83f2f91ba2e45fb994a7931d1bc343247c092264441bb1cfcfc843f7e11c432261bf1bbf3bc37463fbdf3b45ade6519dea1bc9599baa78581d551b8806aa8fc037f397ffff", + "cborBytes": [ + 159, 27, 130, 88, 50, 105, 224, 107, 188, 40, 216, 102, 159, 27, 193, 111, 49, 137, 98, 80, 96, 95, 159, 159, 71, + 22, 143, 168, 134, 94, 130, 39, 75, 246, 224, 28, 30, 95, 41, 213, 70, 130, 222, 80, 255, 160, 255, 255, 191, 27, + 154, 224, 115, 98, 229, 243, 119, 38, 68, 60, 131, 242, 249, 27, 162, 228, 95, 185, 148, 167, 147, 29, 27, 195, + 67, 36, 124, 9, 34, 100, 68, 27, 177, 207, 207, 200, 67, 247, 225, 28, 67, 34, 97, 191, 27, 191, 59, 195, 116, 99, + 251, 223, 59, 69, 173, 230, 81, 157, 234, 27, 201, 89, 155, 170, 120, 88, 29, 85, 27, 136, 6, 170, 143, 192, 55, + 243, 151, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3867, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4582752844513011903" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b8c43181897c" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05" + }, + { + "_tag": "ByteArray", + "bytearray": "020501fc" + }, + { + "_tag": "ByteArray", + "bytearray": "a466bf56528d55" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b2f00a57f6c677d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15841624681427510587" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3685248662757499869" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8745055357717530185" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3390393384352073927" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22c09f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cdc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "107081768625679402" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ab868d9946e763cad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15846666918965554720" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3e9306fb9be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c88f821377" + } + } + ] + } + ] + }, + "cborHex": "9f9fd905079f1b3f99356e7e9be8bf46b8c43181897cffd87f9f410544020501fc47a466bf56528d551bfffffffffffffff2ff9f48b2f00a57f6c677d11bdbd8c1b7198c253bffff1b3324a2222ca4e3dd1b795cad83b9e14649bf1b2f0d18d1eb23c8c74322c09f420cdc1b017c6e4d1cdaac2a494ab868d9946e763cad1bdbeaab9a82e02e2046d3e9306fb9be45c88f821377ffff", + "cborBytes": [ + 159, 159, 217, 5, 7, 159, 27, 63, 153, 53, 110, 126, 155, 232, 191, 70, 184, 196, 49, 129, 137, 124, 255, 216, + 127, 159, 65, 5, 68, 2, 5, 1, 252, 71, 164, 102, 191, 86, 82, 141, 85, 27, 255, 255, 255, 255, 255, 255, 255, 242, + 255, 159, 72, 178, 240, 10, 87, 246, 198, 119, 209, 27, 219, 216, 193, 183, 25, 140, 37, 59, 255, 255, 27, 51, 36, + 162, 34, 44, 164, 227, 221, 27, 121, 92, 173, 131, 185, 225, 70, 73, 191, 27, 47, 13, 24, 209, 235, 35, 200, 199, + 67, 34, 192, 159, 66, 12, 220, 27, 1, 124, 110, 77, 28, 218, 172, 42, 73, 74, 184, 104, 217, 148, 110, 118, 60, + 173, 27, 219, 234, 171, 154, 130, 224, 46, 32, 70, 211, 233, 48, 111, 185, 190, 69, 200, 143, 130, 19, 119, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3868, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "81" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4527004470668353971" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1015951358216095905" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13123256056419960956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10894823211760582616" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13287935423389992673" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "38824d49b3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15142459245708000894" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11512350354601646519" + } + }, + { + "_tag": "ByteArray", + "bytearray": "430b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5192825205910408548" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c038616ca86180d9" + }, + { + "_tag": "ByteArray", + "bytearray": "d4cf73b9c7cbdb76" + }, + { + "_tag": "ByteArray", + "bytearray": "8ab2203fcc111d" + }, + { + "_tag": "ByteArray", + "bytearray": "881481ffdf197e288c" + }, + { + "_tag": "ByteArray", + "bytearray": "a5af" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7296076351966455885" + } + } + ] + } + ] + }, + "cborHex": "9f4181bf1b3ed32694bacae1b31b0e196260a78bc8a11bb61f2bda7367c87c1b97322ffce3ab7fd8ffd8669f1bb8683add757d86e19f9f4538824d49b31bd224d274ae413e7e1b9fc415a707df99b742430bff1b48109f0312fc0d649f48c038616ca86180d948d4cf73b9c7cbdb76478ab2203fcc111d49881481ffdf197e288c42a5afffffff9f1b6540dec92d16a84dffff", + "cborBytes": [ + 159, 65, 129, 191, 27, 62, 211, 38, 148, 186, 202, 225, 179, 27, 14, 25, 98, 96, 167, 139, 200, 161, 27, 182, 31, + 43, 218, 115, 103, 200, 124, 27, 151, 50, 47, 252, 227, 171, 127, 216, 255, 216, 102, 159, 27, 184, 104, 58, 221, + 117, 125, 134, 225, 159, 159, 69, 56, 130, 77, 73, 179, 27, 210, 36, 210, 116, 174, 65, 62, 126, 27, 159, 196, 21, + 167, 7, 223, 153, 183, 66, 67, 11, 255, 27, 72, 16, 159, 3, 18, 252, 13, 100, 159, 72, 192, 56, 97, 108, 168, 97, + 128, 217, 72, 212, 207, 115, 185, 199, 203, 219, 118, 71, 138, 178, 32, 63, 204, 17, 29, 73, 136, 20, 129, 255, + 223, 25, 126, 40, 140, 66, 165, 175, 255, 255, 255, 159, 27, 101, 64, 222, 201, 45, 22, 168, 77, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3869, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10100304560772850633" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11711089528469586694" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14733693496970388278" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15643056085109622353" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a598a08228feacb5" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "46f083173e165b12ebecea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5457826077193626387" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6824432463dc6e35" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7884" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0f1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1796fab1ca703cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc1b9948c9d2e60c1ea06f39" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0f424fdb1c680" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a59215" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea23144cde569a1894" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae5841343b126e402090" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10351363481952973444" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16071748494155471823" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13627947553530969671" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cd925c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2130142537132237434" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7114886224037932190" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16797179976935469116" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1827046720840070513" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4642867280647411579" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16325053860769237314" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "422292608005456308" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12064379639919158461" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1630330482489597628" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3fe0dd5d7791" + }, + { + "_tag": "ByteArray", + "bytearray": "23f4" + }, + { + "_tag": "ByteArray", + "bytearray": "5e797cb2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12361724674676020734" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15398310772200416975" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9039238500545356894" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2998595470300181891" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7d" + }, + { + "_tag": "ByteArray", + "bytearray": "7f6c4285cb" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14256488667945711966" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "799736570445142016" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8815584500531945163" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a0794ebad6253773f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12006649004868665550" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15136241875283968212" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b023235d5cb529b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6088562099497883599" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c2554fc" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4703840337692410374" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7136234980489798828" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8763634398423282194" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "220a164e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9962017990795278469" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66ee" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12656150358453059786" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c862aac5e0603" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14992188388367900772" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2246406015078352731" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18393588882605985554" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14617241520684358733" + } + }, + { + "_tag": "ByteArray", + "bytearray": "81d7b65755381186b3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16676581650172307316" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16577843923403766638" + } + }, + { + "_tag": "ByteArray", + "bytearray": "73734313ce545c4607a06561" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b8c2b7d7bfc1fa3c99f1ba28625e0cd3a03061bcc78982c4c672336ffff1bd9174ca10278c65148a598a08228feacb5bf4b46f083173e165b12ebecea1b4bbe17e680fd63134168486824432463dc6e3542788442b0f148c1796fab1ca703cb4cdc1b9948c9d2e60c1ea06f3947e0f424fdb1c68043a5921549ea23144cde569a18944aae5841343b126e402090ffff1b8fa76e3e32c1f2849fd8669f1bdf0a521a898e5bcf9f1bbd20321891ddfe47ffff43cd925c1b1d8fc959feb7627ad8669f1b62bd27531119ec9e9f1be91b9231998af03c1b195af94fffb6f5711b406ec7315a45d77b1be28e3dfe16450942ffffd8669f1b05dc48e3bb7041b480ffffd8669f1ba76d495cd8d624bd9f1b16a018ef9b489ebc9f463fe0dd5d77914223f4445e797cb21bab8dab18ad3ed5feffd8669f1bd5b1ca104613a6cf9f1b7d71d386390a645e1b299d26b168567583417d457f6c4285cbffffd8669f1bc5d938e8cd49395e9f1b0b193c2c734598001b7a573f6571a55ecb499a0794ebad6253773fffff1ba6a02fa7edfe80ceffff9f9f1bd20ebbca52b180d4482b023235d5cb529b1b547eeaf88d7a57cf440c2554fcffbf1b414765dd784f42061b6308ffe7c5cfa4ac1b799eaf0dbb69f21244220a164e1b8a403294e36738854266ee1bafa3adb2238700ca478c862aac5e06031bd00ef3e83e67a0641b1f2cd65e660bc75bffd8669f1bff4327a2a44dcf129f1bcadadfb7b47b5c4d4981d7b65755381186b31be76f1ea78e5167741be610553714597b6e4c73734313ce545c4607a06561ffffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 140, 43, 125, 123, 252, 31, 163, 201, 159, 27, 162, 134, 37, 224, 205, 58, 3, 6, 27, + 204, 120, 152, 44, 76, 103, 35, 54, 255, 255, 27, 217, 23, 76, 161, 2, 120, 198, 81, 72, 165, 152, 160, 130, 40, + 254, 172, 181, 191, 75, 70, 240, 131, 23, 62, 22, 91, 18, 235, 236, 234, 27, 75, 190, 23, 230, 128, 253, 99, 19, + 65, 104, 72, 104, 36, 67, 36, 99, 220, 110, 53, 66, 120, 132, 66, 176, 241, 72, 193, 121, 111, 171, 28, 167, 3, + 203, 76, 220, 27, 153, 72, 201, 210, 230, 12, 30, 160, 111, 57, 71, 224, 244, 36, 253, 177, 198, 128, 67, 165, + 146, 21, 73, 234, 35, 20, 76, 222, 86, 154, 24, 148, 74, 174, 88, 65, 52, 59, 18, 110, 64, 32, 144, 255, 255, 27, + 143, 167, 110, 62, 50, 193, 242, 132, 159, 216, 102, 159, 27, 223, 10, 82, 26, 137, 142, 91, 207, 159, 27, 189, + 32, 50, 24, 145, 221, 254, 71, 255, 255, 67, 205, 146, 92, 27, 29, 143, 201, 89, 254, 183, 98, 122, 216, 102, 159, + 27, 98, 189, 39, 83, 17, 25, 236, 158, 159, 27, 233, 27, 146, 49, 153, 138, 240, 60, 27, 25, 90, 249, 79, 255, + 182, 245, 113, 27, 64, 110, 199, 49, 90, 69, 215, 123, 27, 226, 142, 61, 254, 22, 69, 9, 66, 255, 255, 216, 102, + 159, 27, 5, 220, 72, 227, 187, 112, 65, 180, 128, 255, 255, 216, 102, 159, 27, 167, 109, 73, 92, 216, 214, 36, + 189, 159, 27, 22, 160, 24, 239, 155, 72, 158, 188, 159, 70, 63, 224, 221, 93, 119, 145, 66, 35, 244, 68, 94, 121, + 124, 178, 27, 171, 141, 171, 24, 173, 62, 213, 254, 255, 216, 102, 159, 27, 213, 177, 202, 16, 70, 19, 166, 207, + 159, 27, 125, 113, 211, 134, 57, 10, 100, 94, 27, 41, 157, 38, 177, 104, 86, 117, 131, 65, 125, 69, 127, 108, 66, + 133, 203, 255, 255, 216, 102, 159, 27, 197, 217, 56, 232, 205, 73, 57, 94, 159, 27, 11, 25, 60, 44, 115, 69, 152, + 0, 27, 122, 87, 63, 101, 113, 165, 94, 203, 73, 154, 7, 148, 235, 173, 98, 83, 119, 63, 255, 255, 27, 166, 160, + 47, 167, 237, 254, 128, 206, 255, 255, 159, 159, 27, 210, 14, 187, 202, 82, 177, 128, 212, 72, 43, 2, 50, 53, 213, + 203, 82, 155, 27, 84, 126, 234, 248, 141, 122, 87, 207, 68, 12, 37, 84, 252, 255, 191, 27, 65, 71, 101, 221, 120, + 79, 66, 6, 27, 99, 8, 255, 231, 197, 207, 164, 172, 27, 121, 158, 175, 13, 187, 105, 242, 18, 68, 34, 10, 22, 78, + 27, 138, 64, 50, 148, 227, 103, 56, 133, 66, 102, 238, 27, 175, 163, 173, 178, 35, 135, 0, 202, 71, 140, 134, 42, + 172, 94, 6, 3, 27, 208, 14, 243, 232, 62, 103, 160, 100, 27, 31, 44, 214, 94, 102, 11, 199, 91, 255, 216, 102, + 159, 27, 255, 67, 39, 162, 164, 77, 207, 18, 159, 27, 202, 218, 223, 183, 180, 123, 92, 77, 73, 129, 215, 182, 87, + 85, 56, 17, 134, 179, 27, 231, 111, 30, 167, 142, 81, 103, 116, 27, 230, 16, 85, 55, 20, 89, 123, 110, 76, 115, + 115, 67, 19, 206, 84, 92, 70, 7, 160, 101, 97, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3870, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13984416079462271612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "db6b0d" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18166839951156516805" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c7c45f0a52b8" + }, + { + "_tag": "ByteArray", + "bytearray": "33bd9d11" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13751218811133333175" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7268216f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9810407317593257440" + } + } + ] + }, + "cborHex": "9fd8669f1bc212a054e79c0a7c9f43db6b0dd8669f1bfc1d94aefc0f17c59f46c7c45f0a52b84433bd9d11ffff1bbed624a6d2458eb7447268216fffff1b8825917a4309f5e0ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 194, 18, 160, 84, 231, 156, 10, 124, 159, 67, 219, 107, 13, 216, 102, 159, 27, 252, 29, + 148, 174, 252, 15, 23, 197, 159, 70, 199, 196, 95, 10, 82, 184, 68, 51, 189, 157, 17, 255, 255, 27, 190, 214, 36, + 166, 210, 69, 142, 183, 68, 114, 104, 33, 111, 255, 255, 27, 136, 37, 145, 122, 67, 9, 245, 224, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3871, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12229149791180263005" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15744564942785475580" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15588437490370667914" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "375e6cba3bac241df647" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17464706683311827433" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17342910962628002999" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c2ab25746d8a1a319cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4575071943120839900" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "149b" + } + ] + } + ] + }, + "cborHex": "9fd8799fbf1ba9b6aaf138578e5d1bda7fee65adcbf3fc1bd855414e70ece58a4a375e6cba3bac241df6471bf25f1a324d3129e91bf0ae65a242ab84b74a7c2ab25746d8a1a319cd1b3f7debb14792e4dcff42149bffff", + "cborBytes": [ + 159, 216, 121, 159, 191, 27, 169, 182, 170, 241, 56, 87, 142, 93, 27, 218, 127, 238, 101, 173, 203, 243, 252, 27, + 216, 85, 65, 78, 112, 236, 229, 138, 74, 55, 94, 108, 186, 59, 172, 36, 29, 246, 71, 27, 242, 95, 26, 50, 77, 49, + 41, 233, 27, 240, 174, 101, 162, 66, 171, 132, 183, 74, 124, 42, 178, 87, 70, 216, 161, 163, 25, 205, 27, 63, 125, + 235, 177, 71, 146, 228, 220, 255, 66, 20, 155, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3872, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "092c0002ef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2fd1e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13359377300384804394" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "13a30dc028af59423cfae9" + } + ] + }, + "cborHex": "9fbf45092c0002ef43a2fd1e414a1bb9660adfa9da6e2aff4b13a30dc028af59423cfae9ff", + "cborBytes": [ + 159, 191, 69, 9, 44, 0, 2, 239, 67, 162, 253, 30, 65, 74, 27, 185, 102, 10, 223, 169, 218, 110, 42, 255, 75, 19, + 163, 13, 192, 40, 175, 89, 66, 60, 250, 233, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3873, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf0b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16103016475647055986" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4850325156077197015" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cdaf36bd97cdc4872716a52e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "132234019511251905" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a6a9d5" + }, + { + "_tag": "ByteArray", + "bytearray": "bc" + }, + { + "_tag": "ByteArray", + "bytearray": "0c49" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8278295558400881954" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1f" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1993708239497762148" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3216564449214191304" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12491370353629315896" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10682699495745616974" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8a716f3f214628c3fb" + }, + { + "_tag": "ByteArray", + "bytearray": "50b9d0a009dc6b3a" + }, + { + "_tag": "ByteArray", + "bytearray": "1e7b83c164" + }, + { + "_tag": "ByteArray", + "bytearray": "3a4d5d0814ea" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4497598332762140343" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3a4ceb14fe0be347" + } + ] + } + ] + } + ] + }, + "cborHex": "9fbf42bf0b1bdf79682acb349872ffd8669f1b434fd108051f56d79f4ccdaf36bd97cdc4872716a52ed8669f1b01d5ca23e030b3c180ff9f43a6a9d541bc420c49ff9f1b72e269f3382db522ffffff411fd8669f1b1bab1314a90895649f1b2ca38853108fd6c81bad5a43278debc338d8669f1b944092978e297c4e9f498a716f3f214628c3fb4850b9d0a009dc6b3a451e7b83c164463a4d5d0814eaffffd8669f1b3e6aaddab6ad2eb79f483a4ceb14fe0be347ffffffffff", + "cborBytes": [ + 159, 191, 66, 191, 11, 27, 223, 121, 104, 42, 203, 52, 152, 114, 255, 216, 102, 159, 27, 67, 79, 209, 8, 5, 31, + 86, 215, 159, 76, 205, 175, 54, 189, 151, 205, 196, 135, 39, 22, 165, 46, 216, 102, 159, 27, 1, 213, 202, 35, 224, + 48, 179, 193, 128, 255, 159, 67, 166, 169, 213, 65, 188, 66, 12, 73, 255, 159, 27, 114, 226, 105, 243, 56, 45, + 181, 34, 255, 255, 255, 65, 31, 216, 102, 159, 27, 27, 171, 19, 20, 169, 8, 149, 100, 159, 27, 44, 163, 136, 83, + 16, 143, 214, 200, 27, 173, 90, 67, 39, 141, 235, 195, 56, 216, 102, 159, 27, 148, 64, 146, 151, 142, 41, 124, 78, + 159, 73, 138, 113, 111, 63, 33, 70, 40, 195, 251, 72, 80, 185, 208, 160, 9, 220, 107, 58, 69, 30, 123, 131, 193, + 100, 70, 58, 77, 93, 8, 20, 234, 255, 255, 216, 102, 159, 27, 62, 106, 173, 218, 182, 173, 46, 183, 159, 72, 58, + 76, 235, 20, 254, 11, 227, 71, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3874, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11997846037911503451" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7758806621055691101" + } + }, + { + "_tag": "ByteArray", + "bytearray": "21f52698" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14868238728414351568" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3049354433720525273" + } + }, + { + "_tag": "ByteArray", + "bytearray": "348390ba" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3478944886494370284" + } + } + ] + } + ] + }, + "cborHex": "9f1ba680e967778b025b1b6bacd18390f9295d4421f5269880d8669f1bce56985922d7d0d09f1b2a517bb3882ca1d944348390ba1b3047b1f128a899ecffffff", + "cborBytes": [ + 159, 27, 166, 128, 233, 103, 119, 139, 2, 91, 27, 107, 172, 209, 131, 144, 249, 41, 93, 68, 33, 245, 38, 152, 128, + 216, 102, 159, 27, 206, 86, 152, 89, 34, 215, 208, 208, 159, 27, 42, 81, 123, 179, 136, 44, 161, 217, 68, 52, 131, + 144, 186, 27, 48, 71, 177, 241, 40, 168, 153, 236, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3875, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8766292949331614486" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "439dced96fd0e0b1cffa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15905407941830254541" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9530993880347844976" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6b9b6a697ae300d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4871ff16dd1d6334b8165f8c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6f638cd42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b727871d6d" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7209347130775090057" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2543354966638100988" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6304843477789697237" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4769180112611796601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16669566310257113971" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8202064138551742713" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18372973827645660347" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10219274662007196986" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10644284920428309003" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13044897576640487064" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4125492204981641636" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18255112751677424447" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7554878593944883147" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "71054bda24aaca2b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18198913203475776157" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aadd5ba9314863d67e4784d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10628812186678902636" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17003703446057253238" + } + } + ] + }, + "cborHex": "9fd8669f1b79a820fdd9ec1b169fbf4a439dced96fd0e0b1cffa1bdcbb5c40ac781fcd41651b8444e46fd28e217048b6b9b6a697ae300d4c4871ff16dd1d6334b8165f8c45e6f638cd4245b727871d6dff1b640cbf04c854b389bf1b234bcfddec3081fc1b577f4dbd1217e4d51b422f880b521566791be756323d72b1bb731b71d395e0ab58d0f91bfef9ea5a205e5cbb1b8dd228293b16cd3a1b93b818bd422d2a0b1bb508c93b2b029e981b3940b14d7992e1a41bfd573053f26fc33f1b68d8520dc1498fcbff4871054bda24aaca2b1bfc8f8722f757029dffff9f4caadd5ba9314863d67e4784d51b9381205eb356bf6cff1bebf94a31d853f976ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 121, 168, 32, 253, 217, 236, 27, 22, 159, 191, 74, 67, 157, 206, 217, 111, 208, 224, 177, + 207, 250, 27, 220, 187, 92, 64, 172, 120, 31, 205, 65, 101, 27, 132, 68, 228, 111, 210, 142, 33, 112, 72, 182, + 185, 182, 166, 151, 174, 48, 13, 76, 72, 113, 255, 22, 221, 29, 99, 52, 184, 22, 95, 140, 69, 230, 246, 56, 205, + 66, 69, 183, 39, 135, 29, 109, 255, 27, 100, 12, 191, 4, 200, 84, 179, 137, 191, 27, 35, 75, 207, 221, 236, 48, + 129, 252, 27, 87, 127, 77, 189, 18, 23, 228, 213, 27, 66, 47, 136, 11, 82, 21, 102, 121, 27, 231, 86, 50, 61, 114, + 177, 187, 115, 27, 113, 211, 149, 224, 171, 88, 208, 249, 27, 254, 249, 234, 90, 32, 94, 92, 187, 27, 141, 210, + 40, 41, 59, 22, 205, 58, 27, 147, 184, 24, 189, 66, 45, 42, 11, 27, 181, 8, 201, 59, 43, 2, 158, 152, 27, 57, 64, + 177, 77, 121, 146, 225, 164, 27, 253, 87, 48, 83, 242, 111, 195, 63, 27, 104, 216, 82, 13, 193, 73, 143, 203, 255, + 72, 113, 5, 75, 218, 36, 170, 202, 43, 27, 252, 143, 135, 34, 247, 87, 2, 157, 255, 255, 159, 76, 170, 221, 91, + 169, 49, 72, 99, 214, 126, 71, 132, 213, 27, 147, 129, 32, 94, 179, 86, 191, 108, 255, 27, 235, 249, 74, 49, 216, + 83, 249, 118, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3876, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01664c9e4d61ca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6199236060534411874" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81cc5ae32dc6298d02ba0c24" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10168231256704517407" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b875ab8ace7766ac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4654ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4c20ffd1d2da600" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15764551971289712254" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4191624979bb7cfed259728" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f92c2d71f84f9293f4" + } + } + ] + } + ] + }, + "cborHex": "9fbf4701664c9e4d61ca1b56081c5a22f212624c81cc5ae32dc6298d02ba0c241b8d1cd07451e5851f48b875ab8ace7766ac434654ff48c4c20ffd1d2da6001bdac6f07e63e8467e4cd4191624979bb7cfed25972849f92c2d71f84f9293f4ffff", + "cborBytes": [ + 159, 191, 71, 1, 102, 76, 158, 77, 97, 202, 27, 86, 8, 28, 90, 34, 242, 18, 98, 76, 129, 204, 90, 227, 45, 198, + 41, 141, 2, 186, 12, 36, 27, 141, 28, 208, 116, 81, 229, 133, 31, 72, 184, 117, 171, 138, 206, 119, 102, 172, 67, + 70, 84, 255, 72, 196, 194, 15, 253, 29, 45, 166, 0, 27, 218, 198, 240, 126, 99, 232, 70, 126, 76, 212, 25, 22, 36, + 151, 155, 183, 207, 237, 37, 151, 40, 73, 249, 44, 45, 113, 248, 79, 146, 147, 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3877, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "542926938760213308" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e651c0" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9120027414497557953" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3040122179396741104" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f95d9e47bfa210ee28ed66" + }, + { + "_tag": "ByteArray", + "bytearray": "391d4106d5e1cf" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "f087197bb429" + } + ] + }, + "cborHex": "9f9f1b0788dd2c9bcaf33c43e651c09f1b7e90d89d0ef37dc11b2a30af03d0baa7f04bf95d9e47bfa210ee28ed6647391d4106d5e1cfffff46f087197bb429ff", + "cborBytes": [ + 159, 159, 27, 7, 136, 221, 44, 155, 202, 243, 60, 67, 230, 81, 192, 159, 27, 126, 144, 216, 157, 14, 243, 125, + 193, 27, 42, 48, 175, 3, 208, 186, 167, 240, 75, 249, 93, 158, 71, 191, 162, 16, 238, 40, 237, 102, 71, 57, 29, + 65, 6, 213, 225, 207, 255, 255, 70, 240, 135, 25, 123, 180, 41, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3878, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9030467334456561099" + }, + "fields": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1836392301411221841" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01132a39e66be2e7" + }, + { + "_tag": "ByteArray", + "bytearray": "e4b5c4e18cc238ec" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7a7f3e0eee7734e6d7" + }, + { + "_tag": "ByteArray", + "bytearray": "08b8a7a9b1625ded" + }, + { + "_tag": "ByteArray", + "bytearray": "9e4b6cb2a5ac" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7cfe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10473387151478175137" + } + } + ] + }, + "cborHex": "9f9fd8669f1b7d52aa31fa0d4dcb80ffffd8669f1b197c2d1189e0c1519f9f4801132a39e66be2e748e4b5c4e18cc238ecff9f497a7f3e0eee7734e6d74808b8a7a9b1625ded469e4b6cb2a5acffffff427cfe1b9158f21fb6ff35a1ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 125, 82, 170, 49, 250, 13, 77, 203, 128, 255, 255, 216, 102, 159, 27, 25, 124, 45, + 17, 137, 224, 193, 81, 159, 159, 72, 1, 19, 42, 57, 230, 107, 226, 231, 72, 228, 181, 196, 225, 140, 194, 56, 236, + 255, 159, 73, 122, 127, 62, 14, 238, 119, 52, 230, 215, 72, 8, 184, 167, 169, 177, 98, 93, 237, 70, 158, 75, 108, + 178, 165, 172, 255, 255, 255, 66, 124, 254, 27, 145, 88, 242, 31, 182, 255, 53, 161, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3879, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1543738481242069587" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5a8419571c3356cc3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6594949744131326006" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "036bda75dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9654357250595083929" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2431b65a550c87" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11866672179497138335" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1dd6f81d81b5550f21a74c9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17685952658607059144" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3081359642282540823" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b156c75f83888da5349f5a8419571c3356cc31b5b85f7d9ca80403645036bda75dd1b85fb2ac4b86fd699472431b65a550c871ba4aee37994eff89f4ca1dd6f81d81b5550f21a74c91bf571203d22a630c81b2ac33044d779bf17ffff", + "cborBytes": [ + 159, 191, 27, 21, 108, 117, 248, 56, 136, 218, 83, 73, 245, 168, 65, 149, 113, 195, 53, 108, 195, 27, 91, 133, + 247, 217, 202, 128, 64, 54, 69, 3, 107, 218, 117, 221, 27, 133, 251, 42, 196, 184, 111, 214, 153, 71, 36, 49, 182, + 90, 85, 12, 135, 27, 164, 174, 227, 121, 148, 239, 248, 159, 76, 161, 221, 111, 129, 216, 27, 85, 80, 242, 26, + 116, 201, 27, 245, 113, 32, 61, 34, 166, 48, 200, 27, 42, 195, 48, 68, 215, 121, 191, 23, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3880, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11195745485023189839" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3379409631909059742" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2c27708f72" + }, + { + "_tag": "ByteArray", + "bytearray": "3cd81ff9cd9f23e34e" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b9b5f4733767d9b4fd8669f1bfffffffffffffffe9fd8669f1b2ee61327c4791c9e9f452c27708f72493cd81ff9cd9f23e34effffffffff", + "cborBytes": [ + 159, 27, 155, 95, 71, 51, 118, 125, 155, 79, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 216, + 102, 159, 27, 46, 230, 19, 39, 196, 121, 28, 158, 159, 69, 44, 39, 112, 143, 114, 73, 60, 216, 31, 249, 205, 159, + 35, 227, 78, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3881, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9661244633839959208" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ca79a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f06fa00a2cda6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7372865229903301253" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5366b03142" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10067148204716592606" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6513524088515422046" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dad2f1a645d0bf2a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6342069467885189761" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "026d36849ea60d9f871aa416" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1389732653264271087" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2788333161928198307" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "945b12a0297d72becc2112" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17913155664429648034" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10289590575589724073" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0504a042e206e53f65c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12018114005964703917" + } + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b8613a2ce982dfca89fbf430ca79a477f06fa00a2cda641111b6651addd0d370a85455366b031421b8bb5b1f443580ddeffffffd8669f1b5a64afa5fbe9675e9f48dad2f1a645d0bf2a1b58038e944e25ba8180ffff4c026d36849ea60d9f871aa4161b1349527c2a93f6efbf1b26b2263cd02c08a34b945b12a0297d72becc21121bf898502b389b08a21b8ecbf81ca63b8fa94a0504a042e206e53f65c71ba6c8eb0383ac48adffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 134, 19, 162, 206, 152, 45, 252, 168, 159, 191, 67, 12, 167, 154, 71, 127, 6, 250, 0, 162, + 205, 166, 65, 17, 27, 102, 81, 173, 221, 13, 55, 10, 133, 69, 83, 102, 176, 49, 66, 27, 139, 181, 177, 244, 67, + 88, 13, 222, 255, 255, 255, 216, 102, 159, 27, 90, 100, 175, 165, 251, 233, 103, 94, 159, 72, 218, 210, 241, 166, + 69, 208, 191, 42, 27, 88, 3, 142, 148, 78, 37, 186, 129, 128, 255, 255, 76, 2, 109, 54, 132, 158, 166, 13, 159, + 135, 26, 164, 22, 27, 19, 73, 82, 124, 42, 147, 246, 239, 191, 27, 38, 178, 38, 60, 208, 44, 8, 163, 75, 148, 91, + 18, 160, 41, 125, 114, 190, 204, 33, 18, 27, 248, 152, 80, 43, 56, 155, 8, 162, 27, 142, 203, 248, 28, 166, 59, + 143, 169, 74, 5, 4, 160, 66, 226, 6, 229, 63, 101, 199, 27, 166, 200, 235, 3, 131, 172, 72, 173, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3882, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "239a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10866250907583465200" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5429695357588668138" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2afbacb8db" + }, + { + "_tag": "ByteArray", + "bytearray": "218bcd2d9441903abbe2" + }, + { + "_tag": "ByteArray", + "bytearray": "d52d3300f62a5c4c" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "58726043843199966" + } + }, + { + "_tag": "ByteArray", + "bytearray": "714ccd82" + } + ] + }, + "cborHex": "9f42239a1b96ccada0eac746f0d8669f1b4b5a2728f3a8feea9f452afbacb8db4a218bcd2d9441903abbe248d52d3300f62a5c4cffff1b00d0a306965683de44714ccd82ff", + "cborBytes": [ + 159, 66, 35, 154, 27, 150, 204, 173, 160, 234, 199, 70, 240, 216, 102, 159, 27, 75, 90, 39, 40, 243, 168, 254, + 234, 159, 69, 42, 251, 172, 184, 219, 74, 33, 139, 205, 45, 148, 65, 144, 58, 187, 226, 72, 213, 45, 51, 0, 246, + 42, 92, 76, 255, 255, 27, 0, 208, 163, 6, 150, 86, 131, 222, 68, 113, 76, 205, 130, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3883, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a6d40aecb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11575115531909327237" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29c6a935" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16117225648288432720" + } + } + } + ] + } + ] + }, + "cborHex": "9fa0bf450a6d40aecb1ba0a3123fa98fe9854429c6a9351bdfabe3559b0c0250ffff", + "cborBytes": [ + 159, 160, 191, 69, 10, 109, 64, 174, 203, 27, 160, 163, 18, 63, 169, 143, 233, 133, 68, 41, 198, 169, 53, 27, 223, + 171, 227, 85, 155, 12, 2, 80, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3884, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15795950089657505993" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b9fd9f9bad02a8b9" + }, + { + "_tag": "ByteArray", + "bytearray": "9248e94a" + }, + { + "_tag": "ByteArray", + "bytearray": "4b2ff56bc49ebc1a1f" + } + ] + }, + "cborHex": "9fa01bdb367cea7fd5d8c948b9fd9f9bad02a8b9449248e94a494b2ff56bc49ebc1a1fff", + "cborBytes": [ + 159, 160, 27, 219, 54, 124, 234, 127, 213, 216, 201, 72, 185, 253, 159, 155, 173, 2, 168, 185, 68, 146, 72, 233, + 74, 73, 75, 47, 245, 107, 196, 158, 188, 26, 31, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3885, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "231321043987958221" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16353789749399003813" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13616389095749508321" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17357182448858063055" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5336263892613974375" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1732601138762188915" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dc43851f5635" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8974256716162113733" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7891103240579748347" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2901322864679457849" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12716202198429385269" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19c6a45c05944be463" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17247916487643429394" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38d63044041dfe500b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "175fa7a0800a49d03e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c37d7d710484ac64f498010" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7208347879833976925" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6405566335826139430" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17376621498277479566" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b0335d1438ff989cd9fbf1be2f45521885a22a51bbcf721bd67a6dce11bf0e1197995d460cf1b4a0e37bcd2ffc967ff1b180b6f8e555b887346dc43851f5635ffff9f1b7c8af6ef8a01a0c5d8669f1b6d82d496a4b091fb9f1b284391c607f014391bb0790686b16cc235ffffbf4919c6a45c05944be4631bef5ce8a98196fa124938d63044041dfe500b49175fa7a0800a49d03e4c3c37d7d710484ac64f4980101b640932348af1c05dff9f1b58e524a4f01e19261bf126292ff93ec48effffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 3, 53, 209, 67, 143, 249, 137, 205, 159, 191, 27, 226, 244, 85, 33, 136, 90, 34, 165, 27, + 188, 247, 33, 189, 103, 166, 220, 225, 27, 240, 225, 25, 121, 149, 212, 96, 207, 27, 74, 14, 55, 188, 210, 255, + 201, 103, 255, 27, 24, 11, 111, 142, 85, 91, 136, 115, 70, 220, 67, 133, 31, 86, 53, 255, 255, 159, 27, 124, 138, + 246, 239, 138, 1, 160, 197, 216, 102, 159, 27, 109, 130, 212, 150, 164, 176, 145, 251, 159, 27, 40, 67, 145, 198, + 7, 240, 20, 57, 27, 176, 121, 6, 134, 177, 108, 194, 53, 255, 255, 191, 73, 25, 198, 164, 92, 5, 148, 75, 228, 99, + 27, 239, 92, 232, 169, 129, 150, 250, 18, 73, 56, 214, 48, 68, 4, 29, 254, 80, 11, 73, 23, 95, 167, 160, 128, 10, + 73, 208, 62, 76, 60, 55, 215, 215, 16, 72, 74, 198, 79, 73, 128, 16, 27, 100, 9, 50, 52, 138, 241, 192, 93, 255, + 159, 27, 88, 229, 36, 164, 240, 30, 25, 38, 27, 241, 38, 41, 47, 249, 62, 196, 142, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3886, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5cc7c00ea80c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "815335099595378714" + } + } + ] + }, + "cborHex": "9f465cc7c00ea80c1b0b50a6f4084a501aff", + "cborBytes": [159, 70, 92, 199, 192, 14, 168, 12, 27, 11, 80, 166, 244, 8, 74, 80, 26, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3887, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bd91fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14506316906739093436" + } + } + ] + }, + "cborHex": "9f43bd91fc1bc950ca5e716d4fbcff", + "cborBytes": [159, 67, 189, 145, 252, 27, 201, 80, 202, 94, 113, 109, 79, 188, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3888, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "69343054930930905" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2150870094196462005" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15038006607799765175" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "907754850723872464" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62c1cd46" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a330d21c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8278df34" + } + } + ] + } + ] + }, + "cborHex": "9f1bfffffffffffffff3bf1b00f65b241ccc6cd91b1dd96cf4729751b51bd0b1bb55c3e1c8b71b0c98fe3a2c88bed0417f4462c1cd46458a330d21c8448278df34ffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 191, 27, 0, 246, 91, 36, 28, 204, 108, 217, 27, 29, 217, 108, + 244, 114, 151, 81, 181, 27, 208, 177, 187, 85, 195, 225, 200, 183, 27, 12, 152, 254, 58, 44, 136, 190, 208, 65, + 127, 68, 98, 193, 205, 70, 69, 138, 51, 13, 33, 200, 68, 130, 120, 223, 52, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3889, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3357911216995608532" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15386826893144352792" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3480296287622962997" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4dd6eba" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b2e99b275fc52a7d41bd588fd89524be8181b304c7f08c0e09f3544a4dd6ebaffff", + "cborBytes": [ + 159, 191, 27, 46, 153, 178, 117, 252, 82, 167, 212, 27, 213, 136, 253, 137, 82, 75, 232, 24, 27, 48, 76, 127, 8, + 192, 224, 159, 53, 68, 164, 221, 110, 186, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3890, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2265765176391198458" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8790307fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "427c6e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1189419551460562258" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3e726bea9e3be3a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6168848494199297186" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + ] + }, + "cborHex": "9fbf0d41a51b1f719d6c633f66fa45f8790307fe43427c6e1b1081aac7bdb6155248a3e726bea9e3be3a1b559c270581f3d4a2ff1bfffffffffffffff6ff", + "cborBytes": [ + 159, 191, 13, 65, 165, 27, 31, 113, 157, 108, 99, 63, 102, 250, 69, 248, 121, 3, 7, 254, 67, 66, 124, 110, 27, 16, + 129, 170, 199, 189, 182, 21, 82, 72, 163, 231, 38, 190, 169, 227, 190, 58, 27, 85, 156, 39, 5, 129, 243, 212, 162, + 255, 27, 255, 255, 255, 255, 255, 255, 255, 246, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3891, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8164d8b7079478e38009b7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "350151996823305103" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b18a31341f285118b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7694b444f8fe473eb5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6654905641515417362" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "12c799c23c8e0fad674455" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7302903446432683776" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "341eff2e4b5a4417b3804c" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3163457202850018080" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11223719515617582724" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "40993220660670898" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10202268827572983181" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13201632373299601718" + } + } + ] + } + ] + }, + "cborHex": "9f9f4b8164d8b7079478e38009b7bf1b04dbfd62cc0bfb8f498b18a31341f285118b497694b444f8fe473eb51b5c5af96bf844ff12ffd905079f4b12c799c23c8e0fad6744551b65591ffdf9989700ff4b341eff2e4b5a4417b3804cff9f1b2be6db90b606b320d8669f1b9bc2a96f03015e849f1b0091a31df3adb1b2ffffff41fc1b8d95bd71da87558d9f1bb7359eb2c1d1e136ffff", + "cborBytes": [ + 159, 159, 75, 129, 100, 216, 183, 7, 148, 120, 227, 128, 9, 183, 191, 27, 4, 219, 253, 98, 204, 11, 251, 143, 73, + 139, 24, 163, 19, 65, 242, 133, 17, 139, 73, 118, 148, 180, 68, 248, 254, 71, 62, 181, 27, 92, 90, 249, 107, 248, + 68, 255, 18, 255, 217, 5, 7, 159, 75, 18, 199, 153, 194, 60, 142, 15, 173, 103, 68, 85, 27, 101, 89, 31, 253, 249, + 152, 151, 0, 255, 75, 52, 30, 255, 46, 75, 90, 68, 23, 179, 128, 76, 255, 159, 27, 43, 230, 219, 144, 182, 6, 179, + 32, 216, 102, 159, 27, 155, 194, 169, 111, 3, 1, 94, 132, 159, 27, 0, 145, 163, 29, 243, 173, 177, 178, 255, 255, + 255, 65, 252, 27, 141, 149, 189, 113, 218, 135, 85, 141, 159, 27, 183, 53, 158, 178, 193, 209, 225, 54, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3892, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3743978155686887499" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2774481146629306715" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15913818699361366946" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f0dc18184" + }, + { + "_tag": "ByteArray", + "bytearray": "9dfc4571c6785965" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5484758151364738169" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11182116875440478841" + } + }, + { + "_tag": "ByteArray", + "bytearray": "38ad85" + }, + { + "_tag": "ByteArray", + "bytearray": "c014c3d16a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17962638937689410140" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1009201309452454498" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "14fb84a941" + }, + { + "_tag": "ByteArray", + "bytearray": "8075621df2" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16769332801596624397" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6812603380885165298" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "46e8c718620ad7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10934214808176848245" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5df6df51a8d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15834018738802272815" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18198093524964689546" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d970b0f70b2a6e43a4" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16998926233576881066" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12210811802964552177" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9952851827284458231" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "51" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5167652041341177790" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5323276262029152" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fa0d8669f1b33f5484bd08a004b80ff9fd8669f1b2680efe72cdbb95b9f1bdcd93dcac36733a2455f0dc18184489dfc4571c6785965ffffd8669f1b4c1dc67aab05fc799f1b9b2edc0d8587da794338ad8545c014c3d16a1bf9481cf19593ca5c1b0e01673e74c5ca62ffff9f4514fb84a941458075621df2ff1be8b8a355d7790e0dffd8669f1b5e8b3aae214914f29f4746e8c718620ad7bf1b97be226fa3326d7546d5df6df51a8d1bdbbdbc2695302a2f1bfc8c9da4b0db468a41a949d970b0f70b2a6e43a4ffd8669f1bebe85158636b3baa9f1ba97584a39ed969f11b8a1fa20123633af7ffff4151bf1b47b73026f6f68fbe1b0012e97dd6a3b760ffffffff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 51, 245, 72, 75, 208, 138, 0, 75, 128, 255, 159, 216, 102, 159, 27, 38, 128, 239, + 231, 44, 219, 185, 91, 159, 27, 220, 217, 61, 202, 195, 103, 51, 162, 69, 95, 13, 193, 129, 132, 72, 157, 252, 69, + 113, 198, 120, 89, 101, 255, 255, 216, 102, 159, 27, 76, 29, 198, 122, 171, 5, 252, 121, 159, 27, 155, 46, 220, + 13, 133, 135, 218, 121, 67, 56, 173, 133, 69, 192, 20, 195, 209, 106, 27, 249, 72, 28, 241, 149, 147, 202, 92, 27, + 14, 1, 103, 62, 116, 197, 202, 98, 255, 255, 159, 69, 20, 251, 132, 169, 65, 69, 128, 117, 98, 29, 242, 255, 27, + 232, 184, 163, 85, 215, 121, 14, 13, 255, 216, 102, 159, 27, 94, 139, 58, 174, 33, 73, 20, 242, 159, 71, 70, 232, + 199, 24, 98, 10, 215, 191, 27, 151, 190, 34, 111, 163, 50, 109, 117, 70, 213, 223, 109, 245, 26, 141, 27, 219, + 189, 188, 38, 149, 48, 42, 47, 27, 252, 140, 157, 164, 176, 219, 70, 138, 65, 169, 73, 217, 112, 176, 247, 11, 42, + 110, 67, 164, 255, 216, 102, 159, 27, 235, 232, 81, 88, 99, 107, 59, 170, 159, 27, 169, 117, 132, 163, 158, 217, + 105, 241, 27, 138, 31, 162, 1, 35, 99, 58, 247, 255, 255, 65, 81, 191, 27, 71, 183, 48, 38, 246, 246, 143, 190, + 27, 0, 18, 233, 125, 214, 163, 183, 96, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3893, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14008517824015608984" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14639416476786796865" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18380060727180684207" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ba" + }, + { + "_tag": "ByteArray", + "bytearray": "356a23f6" + }, + { + "_tag": "ByteArray", + "bytearray": "07" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2972703492151424196" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c2ecdba5" + }, + { + "_tag": "ByteArray", + "bytearray": "ea510948cac7" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16907182693683091241" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "38465542999570473" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a9994affe71" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "161042795573408240" + }, + "fields": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "706078" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12970878521430700766" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1bc26840bd9a2dac989fd8669f1bcb29a7b901e0a9419f1bff1317d981b66baf41ba44356a23f64107ffffd8669f1b29412a13783fb4c49f44c2ecdba546ea510948cac7ffffffff9f1beaa26114f19cd729bf1b0088a8352294f829460a9994affe71ffd8669f1b023c2391bfc9f1f080ffff9f437060781bb401d14ae69ef2deffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 194, 104, 64, 189, 154, 45, 172, 152, 159, 216, 102, 159, 27, 203, 41, 167, 185, 1, 224, + 169, 65, 159, 27, 255, 19, 23, 217, 129, 182, 107, 175, 65, 186, 68, 53, 106, 35, 246, 65, 7, 255, 255, 216, 102, + 159, 27, 41, 65, 42, 19, 120, 63, 180, 196, 159, 68, 194, 236, 219, 165, 70, 234, 81, 9, 72, 202, 199, 255, 255, + 255, 255, 159, 27, 234, 162, 97, 20, 241, 156, 215, 41, 191, 27, 0, 136, 168, 53, 34, 148, 248, 41, 70, 10, 153, + 148, 175, 254, 113, 255, 216, 102, 159, 27, 2, 60, 35, 145, 191, 201, 241, 240, 128, 255, 255, 159, 67, 112, 96, + 120, 27, 180, 1, 209, 74, 230, 158, 242, 222, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3894, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17739844978631515364" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b91687256bbd28" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2410259447331331147" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14577246468397785324" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4937373179619543054" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1717362506936218951" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8891789948455726823" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11568315874717227061" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4469145d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11934618851437203786" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "620206470087756913" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5aa6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9854717467329931829" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "3621" + } + ] + }, + "cborHex": "9fd8669f1bf6309704b1d41ce49f9f47b91687256bbd281b2172f6327eb69c4b1bca4cc86df02ae0ec1b448512bf5ec3880effbf1b17d54c19e081f5471b7b65fbd8ef17aee71ba08ae9ff1a085835444469145d1ba5a0489cf198514a1b089b6a7fa0facc71425aa61b88c2fd52f209aa35ffa0ffff80423621ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 246, 48, 151, 4, 177, 212, 28, 228, 159, 159, 71, 185, 22, 135, 37, 107, 189, 40, 27, 33, + 114, 246, 50, 126, 182, 156, 75, 27, 202, 76, 200, 109, 240, 42, 224, 236, 27, 68, 133, 18, 191, 94, 195, 136, 14, + 255, 191, 27, 23, 213, 76, 25, 224, 129, 245, 71, 27, 123, 101, 251, 216, 239, 23, 174, 231, 27, 160, 138, 233, + 255, 26, 8, 88, 53, 68, 68, 105, 20, 93, 27, 165, 160, 72, 156, 241, 152, 81, 74, 27, 8, 155, 106, 127, 160, 250, + 204, 113, 66, 90, 166, 27, 136, 194, 253, 82, 242, 9, 170, 53, 255, 160, 255, 255, 128, 66, 54, 33, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3895, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15744720009423917152" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2172281858628973975" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c0c1ecf75f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17985992191643739879" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3f05f1f8" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9162562902409466842" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10034819291453367533" + } + } + ] + }, + "cborHex": "9f9f1bda807b6df1b290601b1e257ed7579af5979f45c0c1ecf75f1bf99b149abbdfe6e7443f05f1f8ff1b7f27f66a1649d3daff1b8b42d6fa9450a4edff", + "cborBytes": [ + 159, 159, 27, 218, 128, 123, 109, 241, 178, 144, 96, 27, 30, 37, 126, 215, 87, 154, 245, 151, 159, 69, 192, 193, + 236, 247, 95, 27, 249, 155, 20, 154, 187, 223, 230, 231, 68, 63, 5, 241, 248, 255, 27, 127, 39, 246, 106, 22, 73, + 211, 218, 255, 27, 139, 66, 214, 250, 148, 80, 164, 237, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3896, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2433082356658749053" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6211200433684264764" + } + }, + { + "_tag": "ByteArray", + "bytearray": "91198dd9fece87901cca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16701450522813366365" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd207ecccb761714b5cfdb4e" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3a7a99da0548539046" + }, + { + "_tag": "ByteArray", + "bytearray": "3201ec4a20bd7934" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12710297155409044270" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10242100300645112099" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7675145134245008820" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0939d510b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16865898826071689904" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "791f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed49e2" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3733723383455784185" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7da7f584d73d8dd415e11" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16903793994249905554" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7769589025749039770" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b21c40b8329ea3e7d9f9f1b56329de2d680b73c4a91198dd9fece87901cca1be7c778c32e0d805d4cfd207ecccb761714b5cfdb4eff9f493a7a99da0548539046483201ec4a20bd79341bb0640bebb9d0632effbf1b8e233ff55ddf99231b6a8397d5be3dd5b4450939d510b71bea0fb59f79ae4ab042791f43ed49e2ffffffbf1b33d0d9a298739cf94bb7da7f584d73d8dd415e11ffd8669f1bea965713dfa5a5929fd8669f1b6bd3200dca8b7a9a80ffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 33, 196, 11, 131, 41, 234, 62, 125, 159, 159, 27, 86, 50, 157, 226, 214, 128, 183, 60, 74, + 145, 25, 141, 217, 254, 206, 135, 144, 28, 202, 27, 231, 199, 120, 195, 46, 13, 128, 93, 76, 253, 32, 126, 204, + 203, 118, 23, 20, 181, 207, 219, 78, 255, 159, 73, 58, 122, 153, 218, 5, 72, 83, 144, 70, 72, 50, 1, 236, 74, 32, + 189, 121, 52, 27, 176, 100, 11, 235, 185, 208, 99, 46, 255, 191, 27, 142, 35, 63, 245, 93, 223, 153, 35, 27, 106, + 131, 151, 213, 190, 61, 213, 180, 69, 9, 57, 213, 16, 183, 27, 234, 15, 181, 159, 121, 174, 74, 176, 66, 121, 31, + 67, 237, 73, 226, 255, 255, 255, 191, 27, 51, 208, 217, 162, 152, 115, 156, 249, 75, 183, 218, 127, 88, 77, 115, + 216, 221, 65, 94, 17, 255, 216, 102, 159, 27, 234, 150, 87, 19, 223, 165, 165, 146, 159, 216, 102, 159, 27, 107, + 211, 32, 13, 202, 139, 122, 154, 128, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3897, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b8ccaa849d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16388558233944999522" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5c7e17a1" + }, + { + "_tag": "ByteArray", + "bytearray": "1d1f0d1b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10423936373657789837" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c24f2d9fc6b649" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16079857279192736315" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17023079584759681872" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9013459149741073941" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10166267294416856748" + }, + "fields": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4021178539709786529" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15152277066441517003" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dfd87ea3a101d7aabe" + } + ] + } + ] + }, + "cborHex": "9f45b8ccaa849d9f1be36fdae22b1846629f445c7e17a1441d1f0d1b1b90a942e74925658d47c24f2d9fc6b6491bdf2721002d43223bffff1bec3e20b0b0ce13509fd8669f1b7d163d5761cfa61580ffd8669f1b8d15d63db76366ac80ff1b37ce1893a5d369a1ffd8669f1bd247b3b6338b67cb9f49dfd87ea3a101d7aabeffffff", + "cborBytes": [ + 159, 69, 184, 204, 170, 132, 157, 159, 27, 227, 111, 218, 226, 43, 24, 70, 98, 159, 68, 92, 126, 23, 161, 68, 29, + 31, 13, 27, 27, 144, 169, 66, 231, 73, 37, 101, 141, 71, 194, 79, 45, 159, 198, 182, 73, 27, 223, 39, 33, 0, 45, + 67, 34, 59, 255, 255, 27, 236, 62, 32, 176, 176, 206, 19, 80, 159, 216, 102, 159, 27, 125, 22, 61, 87, 97, 207, + 166, 21, 128, 255, 216, 102, 159, 27, 141, 21, 214, 61, 183, 99, 102, 172, 128, 255, 27, 55, 206, 24, 147, 165, + 211, 105, 161, 255, 216, 102, 159, 27, 210, 71, 179, 182, 51, 139, 103, 203, 159, 73, 223, 216, 126, 163, 161, 1, + 215, 170, 190, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3898, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dd45d94516e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "683411208455702545" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2901713143647937790" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "12a7070e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16116048134363832568" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14771802565090045597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1a417f54" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd87f9f46dd45d94516e51b097bf6df8b85c811a0ff801b2844f4baef37a4fed9050d9f4412a7070ed8669f1bdfa7b46447da60f880ff80d8669f1bccfffc2b28656e9d9f441a417f54ffffffff", + "cborBytes": [ + 159, 216, 127, 159, 70, 221, 69, 217, 69, 22, 229, 27, 9, 123, 246, 223, 139, 133, 200, 17, 160, 255, 128, 27, 40, + 68, 244, 186, 239, 55, 164, 254, 217, 5, 13, 159, 68, 18, 167, 7, 14, 216, 102, 159, 27, 223, 167, 180, 100, 71, + 218, 96, 248, 128, 255, 128, 216, 102, 159, 27, 204, 255, 252, 43, 40, 101, 110, 157, 159, 68, 26, 65, 127, 84, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3899, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be4ed593561557bbdca4" + }, + { + "_tag": "ByteArray", + "bytearray": "5524eceeabf2642b3333ce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14150036550232305879" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13330322605387698508" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13554113816099212686" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6793052043374329695" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "662e4cb6c1cfd71c63850c" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7aa8f4d5a544d7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12071499005719450518" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6455081695974778411" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9652740277978513103" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2e9b3ea" + } + } + ] + } + ] + }, + "cborHex": "9f9f9f4abe4ed593561557bbdca44b5524eceeabf2642b3333ce1bc45f0745b763f0d71bb8fed1c8537e514c1bbc19e2b3f5cecd8effffbf1b5e45c4d7a2117f5f4b662e4cb6c1cfd71c63850cff477aa8f4d5a544d7bf004258ff031ba78694635e63939606080e1b59950e9a1cb3e62b1b85f56c23f203becf1bfffffffffffffffc1bfffffffffffffff444f2e9b3eaffff", + "cborBytes": [ + 159, 159, 159, 74, 190, 78, 213, 147, 86, 21, 87, 187, 220, 164, 75, 85, 36, 236, 238, 171, 242, 100, 43, 51, 51, + 206, 27, 196, 95, 7, 69, 183, 99, 240, 215, 27, 184, 254, 209, 200, 83, 126, 81, 76, 27, 188, 25, 226, 179, 245, + 206, 205, 142, 255, 255, 191, 27, 94, 69, 196, 215, 162, 17, 127, 95, 75, 102, 46, 76, 182, 193, 207, 215, 28, 99, + 133, 12, 255, 71, 122, 168, 244, 213, 165, 68, 215, 191, 0, 66, 88, 255, 3, 27, 167, 134, 148, 99, 94, 99, 147, + 150, 6, 8, 14, 27, 89, 149, 14, 154, 28, 179, 230, 43, 27, 133, 245, 108, 35, 242, 3, 190, 207, 27, 255, 255, 255, + 255, 255, 255, 255, 252, 27, 255, 255, 255, 255, 255, 255, 255, 244, 68, 242, 233, 179, 234, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3900, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "61095d9673" + } + ] + }, + "cborHex": "9f4561095d9673ff", + "cborBytes": [159, 69, 97, 9, 93, 150, 115, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3901, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10558960255296041866" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13114077347009746996" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4974204216006417381" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5607171086348494348" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17070693634025811738" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7615" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f0706acffe3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6955b3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d56e0e8a266020b69ca655" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12685267570413952943" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5b6d6ce7ca8ebd3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78e7e21bb3977a3a73b458" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8528803070078799898" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2916698249960672384" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8051229970509710068" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5584546651594999904" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "401676537464856100" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4e4d7b" + }, + { + "_tag": "ByteArray", + "bytearray": "a0cae5f0a752ed75" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "123183232296057177" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "565e7ccab5a90833c9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2849077807446607970" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a31ac932e1374f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5126803256922777619" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2202" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5463727024872142754" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7e6409fa9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5559601014485261493" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "129f1514903d16876c" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b9288f6688e63738a9fd8669f1bb5fe8fdda18358349f1b4507ec6147501be5ffff1b4dd0ac651ca4a60cbf1bece7496a6da16f1a427615468f0706acffe3436955b34bd56e0e8a266020b69ca6551bb00b1fa5574e5faf48f5b6d6ce7ca8ebd34b78e7e21bb3977a3a73b458ffd8669f1b765c6534674ed01a9f1b287a319ae1e8cc801b6fbbb7003d35c2f41b4d804b9767eac860ffffd8669f1b05930aaec2339e249f434e4d7b48a0cae5f0a752ed75ffffffffbf1b01b5a27f434a795949565e7ccab5a90833c91b2789f52bba4dc86247a31ac932e1374f1b472610663232a8134222021b4bd30ec7f334b7a245a7e6409fa91b4d27abaaa94b9cb549129f1514903d16876cffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 146, 136, 246, 104, 142, 99, 115, 138, 159, 216, 102, 159, 27, 181, 254, 143, 221, 161, + 131, 88, 52, 159, 27, 69, 7, 236, 97, 71, 80, 27, 229, 255, 255, 27, 77, 208, 172, 101, 28, 164, 166, 12, 191, 27, + 236, 231, 73, 106, 109, 161, 111, 26, 66, 118, 21, 70, 143, 7, 6, 172, 255, 227, 67, 105, 85, 179, 75, 213, 110, + 14, 138, 38, 96, 32, 182, 156, 166, 85, 27, 176, 11, 31, 165, 87, 78, 95, 175, 72, 245, 182, 214, 206, 124, 168, + 235, 211, 75, 120, 231, 226, 27, 179, 151, 122, 58, 115, 180, 88, 255, 216, 102, 159, 27, 118, 92, 101, 52, 103, + 78, 208, 26, 159, 27, 40, 122, 49, 154, 225, 232, 204, 128, 27, 111, 187, 183, 0, 61, 53, 194, 244, 27, 77, 128, + 75, 151, 103, 234, 200, 96, 255, 255, 216, 102, 159, 27, 5, 147, 10, 174, 194, 51, 158, 36, 159, 67, 78, 77, 123, + 72, 160, 202, 229, 240, 167, 82, 237, 117, 255, 255, 255, 255, 191, 27, 1, 181, 162, 127, 67, 74, 121, 89, 73, 86, + 94, 124, 202, 181, 169, 8, 51, 201, 27, 39, 137, 245, 43, 186, 77, 200, 98, 71, 163, 26, 201, 50, 225, 55, 79, 27, + 71, 38, 16, 102, 50, 50, 168, 19, 66, 34, 2, 27, 75, 211, 14, 199, 243, 52, 183, 162, 69, 167, 230, 64, 159, 169, + 27, 77, 39, 171, 170, 169, 75, 156, 181, 73, 18, 159, 21, 20, 144, 61, 22, 135, 108, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3902, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f8a7" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8978969282778376221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "edb061cf71b774cad8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10585118497459127991" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4333146869298351826" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15175466819613665484" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14710524583950355071" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16821637764243805522" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1662291585223310853" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "d42c64" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "61c1404dbcf580" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13637203414878868617" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14539867327496464932" + } + } + ] + }, + "cborHex": "9f9f9f42f8a7ffbf1b7c9bb4fd7526281d49edb061cf71b774cad81b92e5e530ea77c6b71b3c226e1ea01fced21bd29a16ab5bcca8cc1bcc26482b5e030a7f1be972766bf60c55521b1711a563ba5b3e05ff43d42c64ff9f4761c1404dbcf5809f1bbd411440b9995489ffff1bc9c7fc4c80bc2a24ff", + "cborBytes": [ + 159, 159, 159, 66, 248, 167, 255, 191, 27, 124, 155, 180, 253, 117, 38, 40, 29, 73, 237, 176, 97, 207, 113, 183, + 116, 202, 216, 27, 146, 229, 229, 48, 234, 119, 198, 183, 27, 60, 34, 110, 30, 160, 31, 206, 210, 27, 210, 154, + 22, 171, 91, 204, 168, 204, 27, 204, 38, 72, 43, 94, 3, 10, 127, 27, 233, 114, 118, 107, 246, 12, 85, 82, 27, 23, + 17, 165, 99, 186, 91, 62, 5, 255, 67, 212, 44, 100, 255, 159, 71, 97, 193, 64, 77, 188, 245, 128, 159, 27, 189, + 65, 20, 64, 185, 153, 84, 137, 255, 255, 27, 201, 199, 252, 76, 128, 188, 42, 36, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3903, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "da1a7153db62cb93d050" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7070471043526041018" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d4fd109f114aab4e4bf9" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "07aac4a16146" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "893ec8a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13230679519820474424" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b41b65ea525676aa2fd2d35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fecff7e1fa1d814cdda2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c13f653aaf61d9d89b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51cda6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10453257264192349566" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7908e5a8d2961a8b708" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1456603201694338267" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4646396128020123229" + } + }, + { + "_tag": "ByteArray", + "bytearray": "419ba710" + } + ] + }, + "cborHex": "9f4ada1a7153db62cb93d050d8669f1b621f5bf4000e1dba9f9f4ad4fd109f114aab4e4bf9ff4607aac4a16146ffffbf44893ec8a71bb79cd0ec93ef68384c9b41b65ea525676aa2fd2d354afecff7e1fa1d814cdda249c13f653aaf61d9d89b4351cda641da1b91116e1919f4e57e4af7908e5a8d2961a8b7081b1436e4e4ffb00cdbff1b407b50a92863ce5d44419ba710ff", + "cborBytes": [ + 159, 74, 218, 26, 113, 83, 219, 98, 203, 147, 208, 80, 216, 102, 159, 27, 98, 31, 91, 244, 0, 14, 29, 186, 159, + 159, 74, 212, 253, 16, 159, 17, 74, 171, 78, 75, 249, 255, 70, 7, 170, 196, 161, 97, 70, 255, 255, 191, 68, 137, + 62, 200, 167, 27, 183, 156, 208, 236, 147, 239, 104, 56, 76, 155, 65, 182, 94, 165, 37, 103, 106, 162, 253, 45, + 53, 74, 254, 207, 247, 225, 250, 29, 129, 76, 221, 162, 73, 193, 63, 101, 58, 175, 97, 217, 216, 155, 67, 81, 205, + 166, 65, 218, 27, 145, 17, 110, 25, 25, 244, 229, 126, 74, 247, 144, 142, 90, 141, 41, 97, 168, 183, 8, 27, 20, + 54, 228, 228, 255, 176, 12, 219, 255, 27, 64, 123, 80, 169, 40, 99, 206, 93, 68, 65, 155, 167, 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3904, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2331849466379344544" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11714985191351061307" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ad6ccbd284ad0f547843ed3a" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "12" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff191342" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2189806142744963074" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "95820608767182694" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "62dbac4aace8515a387a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17746019890597019808" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b360dd169403" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e83b025f8789788" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8330137432923214567" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a58e8411620a8329e0e077" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "908244db8e5d42513ac1c6" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5181ffb1fa0832ea" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1718346363283636613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13213533728696037640" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10771499648866811309" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11681440868159581686" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12992571085701403387" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a28163eeb4f7" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "a14b12d62e" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17165289415233595437" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5418679148484324651" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1300827843084669587" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4915ae8f7577826e608246a7" + } + ] + } + ] + }, + "cborHex": "9fd8669f1b205c64bc29399aa09f1ba293fcf67f710b3b4cad6ccbd284ad0f547843ed3a9f4112ff9f44ff1913421b1e63c115b14828021b01546c5603bac766ffffffbf4a62dbac4aace8515a387a1bf64687116c0d40a046b360dd169403483e83b025f8789788ffd8669f1b739a97dc3b9292e79fbf4ba58e8411620a8329e0e0774b908244db8e5d42513ac1c6ff485181ffb1fa0832eabf1b17d8cae9c89b01851bb75fe6eafe91f1081b957c0ddc5cf37dad1ba21cd0942361edf61bb44ee2909a3e52fb46a28163eeb4f7ffffff45a14b12d62ed8669f1bee375bc70dc5682d9f1b4b3303f9e5396d2b1b120d7807fcffd2934c4915ae8f7577826e608246a7ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 32, 92, 100, 188, 41, 57, 154, 160, 159, 27, 162, 147, 252, 246, 127, 113, 11, 59, 76, + 173, 108, 203, 210, 132, 173, 15, 84, 120, 67, 237, 58, 159, 65, 18, 255, 159, 68, 255, 25, 19, 66, 27, 30, 99, + 193, 21, 177, 72, 40, 2, 27, 1, 84, 108, 86, 3, 186, 199, 102, 255, 255, 255, 191, 74, 98, 219, 172, 74, 172, 232, + 81, 90, 56, 122, 27, 246, 70, 135, 17, 108, 13, 64, 160, 70, 179, 96, 221, 22, 148, 3, 72, 62, 131, 176, 37, 248, + 120, 151, 136, 255, 216, 102, 159, 27, 115, 154, 151, 220, 59, 146, 146, 231, 159, 191, 75, 165, 142, 132, 17, 98, + 10, 131, 41, 224, 224, 119, 75, 144, 130, 68, 219, 142, 93, 66, 81, 58, 193, 198, 255, 72, 81, 129, 255, 177, 250, + 8, 50, 234, 191, 27, 23, 216, 202, 233, 200, 155, 1, 133, 27, 183, 95, 230, 234, 254, 145, 241, 8, 27, 149, 124, + 13, 220, 92, 243, 125, 173, 27, 162, 28, 208, 148, 35, 97, 237, 246, 27, 180, 78, 226, 144, 154, 62, 82, 251, 70, + 162, 129, 99, 238, 180, 247, 255, 255, 255, 69, 161, 75, 18, 214, 46, 216, 102, 159, 27, 238, 55, 91, 199, 13, + 197, 104, 45, 159, 27, 75, 51, 3, 249, 229, 57, 109, 43, 27, 18, 13, 120, 7, 252, 255, 210, 147, 76, 73, 21, 174, + 143, 117, 119, 130, 110, 96, 130, 70, 167, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3905, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16892424773111983847" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1239563370967525517" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6386771692010270399" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3233997210280138535" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "732080362013424989" + } + }, + { + "_tag": "ByteArray", + "bytearray": "82" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "268044769665585221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4175894370223530508" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6b4c94736d4293b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4983780119343809847" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5561915529198023" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16693981809856636636" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d965795bd5195a7a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17847183539956454864" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9867118055874795601" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "904644605a9eadcbf643" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "03" + } + ] + }, + "cborHex": "9f14d8669f1bea6df2d4cc592ee79fd8669f1b1133d051831ae88d9f1b58a25f03ebcaeebf1b2ce177540b5a17271b0a28df35e4d97d5d4182ffffbf1b03b8494c3fd1904541721b39f3c1ce0cba220c48d6b4c94736d4293b1b4529f19d042445374855619155291980231be7acf001ef5666dc48d965795bd5195a7a1bf7adeedf044d95d01b88ef0b97f5429851ff4a904644605a9eadcbf643ffff4103ff", + "cborBytes": [ + 159, 20, 216, 102, 159, 27, 234, 109, 242, 212, 204, 89, 46, 231, 159, 216, 102, 159, 27, 17, 51, 208, 81, 131, + 26, 232, 141, 159, 27, 88, 162, 95, 3, 235, 202, 238, 191, 27, 44, 225, 119, 84, 11, 90, 23, 39, 27, 10, 40, 223, + 53, 228, 217, 125, 93, 65, 130, 255, 255, 191, 27, 3, 184, 73, 76, 63, 209, 144, 69, 65, 114, 27, 57, 243, 193, + 206, 12, 186, 34, 12, 72, 214, 180, 201, 71, 54, 212, 41, 59, 27, 69, 41, 241, 157, 4, 36, 69, 55, 72, 85, 97, + 145, 85, 41, 25, 128, 35, 27, 231, 172, 240, 1, 239, 86, 102, 220, 72, 217, 101, 121, 91, 213, 25, 90, 122, 27, + 247, 173, 238, 223, 4, 77, 149, 208, 27, 136, 239, 11, 151, 245, 66, 152, 81, 255, 74, 144, 70, 68, 96, 90, 158, + 173, 203, 246, 67, 255, 255, 65, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3906, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18137052625364706709" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18432342004284283560" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d8ac953" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5495967282074672732" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24a0138e33" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1895129204349045977" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9857637987733697443" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0521f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3809681924164454714" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6230858399410333660" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8053227410287137370" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14794838750365782291" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2320834022434230620" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "498232768935406139" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9f80d8669f1bfbb3c144bf6de5959f9f1bffccd564e7e05aa8ffffff9fbf440d8ac9531b4c45991fc93ade5c4524a0138e331b1a4cd9f874b18cd941db1b88cd5d85974373a343e0521f1b34deb586850c893affbf1b567874b3a69ca7dc1b6fc2cfa96d9a925a1bcd51d37500bc91131b2035423f41d5515cffa0d8669f1b06ea141047daaa3b80ffffff", + "cborBytes": [ + 159, 128, 216, 102, 159, 27, 251, 179, 193, 68, 191, 109, 229, 149, 159, 159, 27, 255, 204, 213, 100, 231, 224, + 90, 168, 255, 255, 255, 159, 191, 68, 13, 138, 201, 83, 27, 76, 69, 153, 31, 201, 58, 222, 92, 69, 36, 160, 19, + 142, 51, 27, 26, 76, 217, 248, 116, 177, 140, 217, 65, 219, 27, 136, 205, 93, 133, 151, 67, 115, 163, 67, 224, 82, + 31, 27, 52, 222, 181, 134, 133, 12, 137, 58, 255, 191, 27, 86, 120, 116, 179, 166, 156, 167, 220, 27, 111, 194, + 207, 169, 109, 154, 146, 90, 27, 205, 81, 211, 117, 0, 188, 145, 19, 27, 32, 53, 66, 63, 65, 213, 81, 92, 255, + 160, 216, 102, 159, 27, 6, 234, 20, 16, 71, 218, 170, 59, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3907, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14970138504836977889" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "608767364490549876" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3979a400ab" + }, + { + "_tag": "ByteArray", + "bytearray": "492b" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5407753162845152845" + } + } + ] + } + ] + }, + "cborHex": "9fd87e9f9f1bcfc09da7ab3494e141b11b0872c6b14f4f5a74453979a400ab42492bff1b4b0c32d9a061664dffff", + "cborBytes": [ + 159, 216, 126, 159, 159, 27, 207, 192, 157, 167, 171, 52, 148, 225, 65, 177, 27, 8, 114, 198, 177, 79, 79, 90, + 116, 69, 57, 121, 164, 0, 171, 66, 73, 43, 255, 27, 75, 12, 50, 217, 160, 97, 102, 77, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3908, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15299618483252501359" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4111548723165972796" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d572eced0f1710" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ee37157ce4ccf7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11091130500789107358" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3483703838984136990" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4989730896293707964" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55a4c4923ae3d9321f73" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71b03502ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2973160144411313999" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bd45329f31d441b6f9f9f1b390f27c7a104c93c47d572eced0f1710ff47ee37157ce4ccf71b99eb9c6d5908fa9effffa09fbf1b30589a2f2150691e1b453f15d03e60c0bc4a55a4c4923ae3d9321f7341e64571b03502ba1b2942c9661bfc474fffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 212, 83, 41, 243, 29, 68, 27, 111, 159, 159, 27, 57, 15, 39, 199, 161, 4, 201, 60, 71, + 213, 114, 236, 237, 15, 23, 16, 255, 71, 238, 55, 21, 124, 228, 204, 247, 27, 153, 235, 156, 109, 89, 8, 250, 158, + 255, 255, 160, 159, 191, 27, 48, 88, 154, 47, 33, 80, 105, 30, 27, 69, 63, 21, 208, 62, 96, 192, 188, 74, 85, 164, + 196, 146, 58, 227, 217, 50, 31, 115, 65, 230, 69, 113, 176, 53, 2, 186, 27, 41, 66, 201, 102, 27, 252, 71, 79, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3909, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13863137586084128583" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14705173359119319280" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ec" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8100366771352837458" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13986640990235567420" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7536eda391004f05193e5b0f" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cd44a4" + }, + { + "_tag": "ByteArray", + "bytearray": "9e14d89d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6404038252927865172" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16140688467074732912" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dfe05dd38f790cc5f3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14505248957878284415" + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "1a35fa5f4e72e1263de34ce1" + } + ] + }, + "cborHex": "9fd8669f1bc063c22f3ae927479fd8669f1bcc1345423ed840f09f41ec1b706a48a934dd1d521bc21a87e04fe8a53c4c7536eda391004f05193e5b0fffff9f43cd44a4449e14d89dffd8669f1b58dfb6dc69c751549f1bdfff3ea4ce3bd37049dfe05dd38f790cc5f31bc94cff1338f0b07fffffffff4c1a35fa5f4e72e1263de34ce1ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 192, 99, 194, 47, 58, 233, 39, 71, 159, 216, 102, 159, 27, 204, 19, 69, 66, 62, 216, 64, + 240, 159, 65, 236, 27, 112, 106, 72, 169, 52, 221, 29, 82, 27, 194, 26, 135, 224, 79, 232, 165, 60, 76, 117, 54, + 237, 163, 145, 0, 79, 5, 25, 62, 91, 15, 255, 255, 159, 67, 205, 68, 164, 68, 158, 20, 216, 157, 255, 216, 102, + 159, 27, 88, 223, 182, 220, 105, 199, 81, 84, 159, 27, 223, 255, 62, 164, 206, 59, 211, 112, 73, 223, 224, 93, + 211, 143, 121, 12, 197, 243, 27, 201, 76, 255, 19, 56, 240, 176, 127, 255, 255, 255, 255, 76, 26, 53, 250, 95, 78, + 114, 225, 38, 61, 227, 76, 225, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3910, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2640132094101100674" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6166357154875196504" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02743d889157" + }, + { + "_tag": "ByteArray", + "bytearray": "8dfe2414409211" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17438360925151484099" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16863719980340709895" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "755466099413323518" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e11e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12038926274896932923" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fef44762b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13672618695843486304" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7414223148583803958" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14180523972515003540" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14874351209389399980" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c3900fc137064" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4e8144dc75fe247136aa" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11168554673929275384" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16755179091157061570" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b8c460cf78" + }, + { + "_tag": "ByteArray", + "bytearray": "a4fc74c7d7" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4818538819136508116" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aca0aa561f15" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5352024925570420889" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14440163234343548225" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11057425114466890586" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3070167609947533135" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a060a32bc9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4422529371750256476" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9696415978243381986" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3505912201435450840" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13388806942329107378" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13436312244079659884" + } + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4571257907911154261" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "faec96cb90751a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "289714109d6636c11602" + } + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b24a3a226cd0118829f1b55934d295e8644584602743d889157478dfe2414409211ffff1bf20180de78b4d8c31bea07f7f96bdd8a07ffbf1b0a7bf46a2f618efe42e11e1ba712dba97c59303b459fef44762b1bbdbee643631d9a601b66e49cabe0d0dc361bc4cb576bdeaafc9441091bce6c4f9e040e9fac470c3900fc137064ff4a4e8144dc75fe247136aa9f9f1b9afead4d6a1547f81be8865a9c54780fc2ff45b8c460cf7845a4fc74c7d7bf1b42dee386bb0fd0d446aca0aa561f151b4a46365045a950991bc865c3f451b3f5411b9973dd8e8e48335a1b2a9b6d2cbfd52f4f45a060a32bc91b3d5ffb0833e7cf5cffbf1b869096f5599e5ae21b30a7809274448dd81bb9ce98fa23cf73b21bba775ecc1f998b6cffffbf41eb1b3f705ed901bd5a5547faec96cb90751a4a289714109d6636c11602ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 36, 163, 162, 38, 205, 1, 24, 130, 159, 27, 85, 147, 77, 41, 94, 134, 68, 88, 70, 2, + 116, 61, 136, 145, 87, 71, 141, 254, 36, 20, 64, 146, 17, 255, 255, 27, 242, 1, 128, 222, 120, 180, 216, 195, 27, + 234, 7, 247, 249, 107, 221, 138, 7, 255, 191, 27, 10, 123, 244, 106, 47, 97, 142, 254, 66, 225, 30, 27, 167, 18, + 219, 169, 124, 89, 48, 59, 69, 159, 239, 68, 118, 43, 27, 189, 190, 230, 67, 99, 29, 154, 96, 27, 102, 228, 156, + 171, 224, 208, 220, 54, 27, 196, 203, 87, 107, 222, 170, 252, 148, 65, 9, 27, 206, 108, 79, 158, 4, 14, 159, 172, + 71, 12, 57, 0, 252, 19, 112, 100, 255, 74, 78, 129, 68, 220, 117, 254, 36, 113, 54, 170, 159, 159, 27, 154, 254, + 173, 77, 106, 21, 71, 248, 27, 232, 134, 90, 156, 84, 120, 15, 194, 255, 69, 184, 196, 96, 207, 120, 69, 164, 252, + 116, 199, 215, 191, 27, 66, 222, 227, 134, 187, 15, 208, 212, 70, 172, 160, 170, 86, 31, 21, 27, 74, 70, 54, 80, + 69, 169, 80, 153, 27, 200, 101, 195, 244, 81, 179, 245, 65, 27, 153, 115, 221, 142, 142, 72, 51, 90, 27, 42, 155, + 109, 44, 191, 213, 47, 79, 69, 160, 96, 163, 43, 201, 27, 61, 95, 251, 8, 51, 231, 207, 92, 255, 191, 27, 134, + 144, 150, 245, 89, 158, 90, 226, 27, 48, 167, 128, 146, 116, 68, 141, 216, 27, 185, 206, 152, 250, 35, 207, 115, + 178, 27, 186, 119, 94, 204, 31, 153, 139, 108, 255, 255, 191, 65, 235, 27, 63, 112, 94, 217, 1, 189, 90, 85, 71, + 250, 236, 150, 203, 144, 117, 26, 74, 40, 151, 20, 16, 157, 102, 54, 193, 22, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3911, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11848023388456085265" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cbf01a57" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15495124551392025260" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d0a6bf" + }, + { + "_tag": "ByteArray", + "bytearray": "82eeecf2b16dedc51e76" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1014b5a9a5825a57" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6bdf4bb0820f1016cc84" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "257231167e54b645538334fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7823076130653522432" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d1342886cb256" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73d156fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4342462087788882956" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8061d9c02c2793e84a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "888bed" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96fa995d2856e12f2ab5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee7cb1c6" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d0dbdb0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13059232099322973108" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f18c6f1901c4b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12709901302971450229" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "937876949625597956" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10554316685793868090" + } + }, + { + "_tag": "ByteArray", + "bytearray": "73ed8a33cb2cf17d" + }, + { + "_tag": "ByteArray", + "bytearray": "c5fe184bc4d256" + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1ba46ca27f8f71e7119f44cbf01a57ffffd8669f1bd709bdaecc27daac9f43d0a6bf4a82eeecf2b16dedc51e76ffffbf481014b5a9a5825a574a6bdf4bb0820f1016cc844c257231167e54b645538334fb1b6c91264ada70ca00475d1342886cb256414c4473d156fe1b3c438642f141ec0c498061d9c02c2793e84a43888bed4a96fa995d2856e12f2ab544ee7cb1c6ffbf445d0dbdb01bb53bb6674f864bb4475f18c6f1901c4b1bb062a3e525e34375ff9f1b0d04021dd975f0041b9278771b47b8b93a4873ed8a33cb2cf17d47c5fe184bc4d256ffffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 164, 108, 162, 127, 143, 113, 231, 17, 159, 68, 203, 240, 26, 87, 255, 255, 216, 102, + 159, 27, 215, 9, 189, 174, 204, 39, 218, 172, 159, 67, 208, 166, 191, 74, 130, 238, 236, 242, 177, 109, 237, 197, + 30, 118, 255, 255, 191, 72, 16, 20, 181, 169, 165, 130, 90, 87, 74, 107, 223, 75, 176, 130, 15, 16, 22, 204, 132, + 76, 37, 114, 49, 22, 126, 84, 182, 69, 83, 131, 52, 251, 27, 108, 145, 38, 74, 218, 112, 202, 0, 71, 93, 19, 66, + 136, 108, 178, 86, 65, 76, 68, 115, 209, 86, 254, 27, 60, 67, 134, 66, 241, 65, 236, 12, 73, 128, 97, 217, 192, + 44, 39, 147, 232, 74, 67, 136, 139, 237, 74, 150, 250, 153, 93, 40, 86, 225, 47, 42, 181, 68, 238, 124, 177, 198, + 255, 191, 68, 93, 13, 189, 176, 27, 181, 59, 182, 103, 79, 134, 75, 180, 71, 95, 24, 198, 241, 144, 28, 75, 27, + 176, 98, 163, 229, 37, 227, 67, 117, 255, 159, 27, 13, 4, 2, 29, 217, 117, 240, 4, 27, 146, 120, 119, 27, 71, 184, + 185, 58, 72, 115, 237, 138, 51, 203, 44, 241, 125, 71, 197, 254, 24, 75, 196, 210, 86, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3912, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10857155257578559210" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b860" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15404544153732069422" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7490" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "05c027" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06c6c16fcc61427c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6448562542835049976" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "12b872ede5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dccffbda34e3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "437e487503fbee43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e19" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "743be49cd5d1b1d101" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da730c7ba68325" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1468785874988763837" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fed53075bfb0843ff0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4673351931214951656" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5767324909479291414" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "32f9dadc65c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13133860433483696234" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8214403793108683905" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10309538816608004041" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4158747062413714666" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9855261014239506215" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6773700440461046671" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11631219631616638838" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2630640015383789406" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9135550582816090" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84715757914fd678" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "948725368614280348" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18164213943036036703" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6528596024861933894" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43e98ab08ca2a9214e6e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9099977077632519253" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7513046707092981589" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12842272380433953229" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "830298580213583615" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17443997205195601677" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3535968925273793168" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16505641121879387865" + } + } + ] + } + ] + }, + "cborHex": "9f9fbf1b96ac5d2edf3c16ea42b8601bd5c7ef4a8205382e427490ff4305c027bf4806c6c16fcc61427c1b597de5777d92a5f84512b872ede546dccffbda34e348437e487503fbee43411c424e1949743be49cd5d1b1d10147da730c7ba683251b14622cf8a9d10abd49fed53075bfb0843ff01b40db14d22a73f4e8ffd8669f1b5009a772d5c66a169f4632f9dadc65c41bb644d87a635a886affffffa01b71ff6cba61dd4c819f1b8f12d6ee720567c9bf1b39b6d66b55de64ea1b88c4ebad52806f271b5e0104a97896738f1ba16a64a14f0f3f76ffffd8669f1b2481e92800e0ff5e9fbf1b002074bc1f50fd5a4884715757914fd6781b0d2a8cb239a7dc9c1bfc144057d2dc465f1b5a9a3b7e9fec41464a43e98ab08ca2a9214e6e1b7e499cf0387bcc551b6843b42c9d3207551bb238eab0509371cd1b0b85d028db244eff1bf21587092e97370d1b31124900cfc3a290ff1be50fd12653b36ed9ffffff", + "cborBytes": [ + 159, 159, 191, 27, 150, 172, 93, 46, 223, 60, 22, 234, 66, 184, 96, 27, 213, 199, 239, 74, 130, 5, 56, 46, 66, + 116, 144, 255, 67, 5, 192, 39, 191, 72, 6, 198, 193, 111, 204, 97, 66, 124, 27, 89, 125, 229, 119, 125, 146, 165, + 248, 69, 18, 184, 114, 237, 229, 70, 220, 207, 251, 218, 52, 227, 72, 67, 126, 72, 117, 3, 251, 238, 67, 65, 28, + 66, 78, 25, 73, 116, 59, 228, 156, 213, 209, 177, 209, 1, 71, 218, 115, 12, 123, 166, 131, 37, 27, 20, 98, 44, + 248, 169, 209, 10, 189, 73, 254, 213, 48, 117, 191, 176, 132, 63, 240, 27, 64, 219, 20, 210, 42, 115, 244, 232, + 255, 216, 102, 159, 27, 80, 9, 167, 114, 213, 198, 106, 22, 159, 70, 50, 249, 218, 220, 101, 196, 27, 182, 68, + 216, 122, 99, 90, 136, 106, 255, 255, 255, 160, 27, 113, 255, 108, 186, 97, 221, 76, 129, 159, 27, 143, 18, 214, + 238, 114, 5, 103, 201, 191, 27, 57, 182, 214, 107, 85, 222, 100, 234, 27, 136, 196, 235, 173, 82, 128, 111, 39, + 27, 94, 1, 4, 169, 120, 150, 115, 143, 27, 161, 106, 100, 161, 79, 15, 63, 118, 255, 255, 216, 102, 159, 27, 36, + 129, 233, 40, 0, 224, 255, 94, 159, 191, 27, 0, 32, 116, 188, 31, 80, 253, 90, 72, 132, 113, 87, 87, 145, 79, 214, + 120, 27, 13, 42, 140, 178, 57, 167, 220, 156, 27, 252, 20, 64, 87, 210, 220, 70, 95, 27, 90, 154, 59, 126, 159, + 236, 65, 70, 74, 67, 233, 138, 176, 140, 162, 169, 33, 78, 110, 27, 126, 73, 156, 240, 56, 123, 204, 85, 27, 104, + 67, 180, 44, 157, 50, 7, 85, 27, 178, 56, 234, 176, 80, 147, 113, 205, 27, 11, 133, 208, 40, 219, 36, 78, 255, 27, + 242, 21, 135, 9, 46, 151, 55, 13, 27, 49, 18, 73, 0, 207, 195, 162, 144, 255, 27, 229, 15, 209, 38, 83, 179, 110, + 217, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3913, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "92048937342231909" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4796224506044114627" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f51463" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10269330417514314138" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0bd65b87cf9a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14783925114424355043" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e8e9232" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b01470605543c6565d8669f1b428f9cc6d9c866c39f43f51463bf1b8e83fd9b010df99a460bd65b87cf9a1bcd2b0d901f3d68e3447e8e9232ffffffff", + "cborBytes": [ + 159, 27, 1, 71, 6, 5, 84, 60, 101, 101, 216, 102, 159, 27, 66, 143, 156, 198, 217, 200, 102, 195, 159, 67, 245, + 20, 99, 191, 27, 142, 131, 253, 155, 1, 13, 249, 154, 70, 11, 214, 91, 135, 207, 154, 27, 205, 43, 13, 144, 31, + 61, 104, 227, 68, 126, 142, 146, 50, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3914, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15778595102947203443" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15036383114474025005" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ec2323" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b341ad65085bbb72326a" + }, + { + "_tag": "ByteArray", + "bytearray": "742aa09aff2624f4b6574234" + }, + { + "_tag": "ByteArray", + "bytearray": "5920019d1bfba0b0e9" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "cc6817881d" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11072855093677586341" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18340634466527052576" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00989357cdf3c9a602d624" + }, + { + "_tag": "ByteArray", + "bytearray": "2ce3f98b" + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bffffffffffffffee9f9f1bdaf8d4a5c5e2d9731bd0abf6c6c4e7f02d43ec2323ff9f4ab341ad65085bbb72326a4c742aa09aff2624f4b6574234495920019d1bfba0b0e9ff45cc6817881dffffd8669f1b99aaaf0a8c06f7a59f9f1bfe8705dfdca183204b00989357cdf3c9a602d624442ce3f98bffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 159, 27, 218, 248, 212, 165, 197, 226, 217, + 115, 27, 208, 171, 246, 198, 196, 231, 240, 45, 67, 236, 35, 35, 255, 159, 74, 179, 65, 173, 101, 8, 91, 187, 114, + 50, 106, 76, 116, 42, 160, 154, 255, 38, 36, 244, 182, 87, 66, 52, 73, 89, 32, 1, 157, 27, 251, 160, 176, 233, + 255, 69, 204, 104, 23, 136, 29, 255, 255, 216, 102, 159, 27, 153, 170, 175, 10, 140, 6, 247, 165, 159, 159, 27, + 254, 135, 5, 223, 220, 161, 131, 32, 75, 0, 152, 147, 87, 205, 243, 201, 166, 2, 214, 36, 68, 44, 227, 249, 139, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3915, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd87b80ff", + "cborBytes": [159, 216, 123, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3916, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11083818692578721583" + } + } + ] + }, + "cborHex": "9f1b99d1a26055fd3f2fff", + "cborBytes": [159, 27, 153, 209, 162, 96, 85, 253, 63, 47, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3917, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13283514610728440143" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1921444462983884792" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3456771001306716817" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6728771108257481464" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7414144271189226233" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6741333007084655971" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "312734420849631335" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9073901812037312090" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0d9f2c59f5fd5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17644679805022284696" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9315798596565060307" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4da7" + } + ] + }, + "cborHex": "9fd8669f1bb8588628cd2e114f9fbf1b1aaa578f0fcbaff81b2ff8eae932c21a911b5d6165ac229942f81b66e454eecdbb32f91b5d8e06a71fe595631b04570e4c7fc7a0671b7decf99f5941de5a47c0d9f2c59f5fd51bf4de7ecc11dcab981b81485d776357cad3ffffff424da7ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 184, 88, 134, 40, 205, 46, 17, 79, 159, 191, 27, 26, 170, 87, 143, 15, 203, 175, 248, 27, + 47, 248, 234, 233, 50, 194, 26, 145, 27, 93, 97, 101, 172, 34, 153, 66, 248, 27, 102, 228, 84, 238, 205, 187, 50, + 249, 27, 93, 142, 6, 167, 31, 229, 149, 99, 27, 4, 87, 14, 76, 127, 199, 160, 103, 27, 125, 236, 249, 159, 89, 65, + 222, 90, 71, 192, 217, 242, 197, 159, 95, 213, 27, 244, 222, 126, 204, 17, 220, 171, 152, 27, 129, 72, 93, 119, + 99, 87, 202, 211, 255, 255, 255, 66, 77, 167, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3918, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9990322278710225435" + } + } + ] + }, + "cborHex": "9f1b8aa4c12e7631aa1bff", + "cborBytes": [159, 27, 138, 164, 193, 46, 118, 49, 170, 27, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3919, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17674044433860336494" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2722989288453278921" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "113b31340a72b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1083429230835517052" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "40b62f6b" + } + ] + }, + "cborHex": "9fbf1bf546d1c580b71b6e1b25ca0054b1738cc947113b31340a72b01b0f091d252b39c67cff4440b62f6bff", + "cborBytes": [ + 159, 191, 27, 245, 70, 209, 197, 128, 183, 27, 110, 27, 37, 202, 0, 84, 177, 115, 140, 201, 71, 17, 59, 49, 52, + 10, 114, 176, 27, 15, 9, 29, 37, 43, 57, 198, 124, 255, 68, 64, 182, 47, 107, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3920, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1057939342117648086" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13966303454000050742" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9684396564485777211" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0aafd777d41384216f393" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d1e9074a4b4f93bf682ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "109546c8fbef9e59ad513591" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4ec08424eee0c51e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8639494902605504531" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5473488157173293427" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9091664745521969303" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14730960126798117378" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8157015516837256382" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d0cd9" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6113927474669677525" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9429916114968499745" + }, + "fields": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aedf1aba3b70a884545d" + }, + { + "_tag": "ByteArray", + "bytearray": "a4f0ca0eb8c8d97b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3602571729000187691" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13662196124624717455" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "87115930381203582" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fdf7bd6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12046262198688819424" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e083ad1d36431ce257accf8c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1995797255011945648" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5d90a29133279ee6" + } + ] + } + ] + }, + "cborHex": "9f9fbf1b0eae8e39f8d536d61bc1d246fea8fbf2361b8665e35d8230273b4bf0aafd777d41384216f3934b9d1e9074a4b4f93bf682ad4c109546c8fbef9e59ad51359149c4ec08424eee0c51e41b77e5a6d704996013ffd8669f1b4bf5bc7aaa9f21739f1b7e2c14ea95c778971bcc6ee22ff63eba02ffff9f1b71338a65146f1cbe435d0cd9ffff1b54d908a52e2febd59fd8669f1b82ddcabea66dd62180ff9f4aaedf1aba3b70a884545d48a4f0ca0eb8c8d97b1b31fee7e678ebc72b1bbd99defd6bf9868f1b01357f7a24a6387effbf440fdf7bd61ba72ceba5581028e04ce083ad1d36431ce257accf8c1b1bb27f077cafccb0ff485d90a29133279ee6ffff", + "cborBytes": [ + 159, 159, 191, 27, 14, 174, 142, 57, 248, 213, 54, 214, 27, 193, 210, 70, 254, 168, 251, 242, 54, 27, 134, 101, + 227, 93, 130, 48, 39, 59, 75, 240, 170, 253, 119, 125, 65, 56, 66, 22, 243, 147, 75, 157, 30, 144, 116, 164, 180, + 249, 59, 246, 130, 173, 76, 16, 149, 70, 200, 251, 239, 158, 89, 173, 81, 53, 145, 73, 196, 236, 8, 66, 78, 238, + 12, 81, 228, 27, 119, 229, 166, 215, 4, 153, 96, 19, 255, 216, 102, 159, 27, 75, 245, 188, 122, 170, 159, 33, 115, + 159, 27, 126, 44, 20, 234, 149, 199, 120, 151, 27, 204, 110, 226, 47, 246, 62, 186, 2, 255, 255, 159, 27, 113, 51, + 138, 101, 20, 111, 28, 190, 67, 93, 12, 217, 255, 255, 27, 84, 217, 8, 165, 46, 47, 235, 213, 159, 216, 102, 159, + 27, 130, 221, 202, 190, 166, 109, 214, 33, 128, 255, 159, 74, 174, 223, 26, 186, 59, 112, 168, 132, 84, 93, 72, + 164, 240, 202, 14, 184, 200, 217, 123, 27, 49, 254, 231, 230, 120, 235, 199, 43, 27, 189, 153, 222, 253, 107, 249, + 134, 143, 27, 1, 53, 127, 122, 36, 166, 56, 126, 255, 191, 68, 15, 223, 123, 214, 27, 167, 44, 235, 165, 88, 16, + 40, 224, 76, 224, 131, 173, 29, 54, 67, 28, 226, 87, 172, 207, 140, 27, 27, 178, 127, 7, 124, 175, 204, 176, 255, + 72, 93, 144, 162, 145, 51, 39, 158, 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3921, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14589039687365513537" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "82f8cb3726e6f44f6d84c1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6812658278467792473" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8c70" + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "395d799b420784363f52" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b89417a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5678118468840545349" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e72602984a61" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9803248501673722831" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2f80c29dc609ea06e7ab0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10038756826027459880" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11483742351995340876" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "3ad20175" + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff29fbf1bca76ae4cb37f5141411bff4b82f8cb3726e6f44f6d84c104d9050a9f1b5e8b6c9bf8326e59ff9f428c70ffffff4a395d799b420784363f52bf44b89417a71b4eccbaa9d7d35c4546e72602984a611b880c22928b2483cf4bf2f80c29dc609ea06e7ab01b8b50d42549e50528ffd8669f1b9f5e72d35eca884c80ff443ad20175ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 191, 27, 202, 118, 174, 76, 179, 127, 81, 65, + 65, 27, 255, 75, 130, 248, 203, 55, 38, 230, 244, 79, 109, 132, 193, 4, 217, 5, 10, 159, 27, 94, 139, 108, 155, + 248, 50, 110, 89, 255, 159, 66, 140, 112, 255, 255, 255, 74, 57, 93, 121, 155, 66, 7, 132, 54, 63, 82, 191, 68, + 184, 148, 23, 167, 27, 78, 204, 186, 169, 215, 211, 92, 69, 70, 231, 38, 2, 152, 74, 97, 27, 136, 12, 34, 146, + 139, 36, 131, 207, 75, 242, 248, 12, 41, 220, 96, 158, 160, 110, 122, 176, 27, 139, 80, 212, 37, 73, 229, 5, 40, + 255, 216, 102, 159, 27, 159, 94, 114, 211, 94, 202, 136, 76, 128, 255, 68, 58, 210, 1, 117, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3922, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5614493013396428097" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1bdc2e3a8b81720f3cdf6665" + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff19fa0a01b4deaafa6196815414c1bdc2e3a8b81720f3cdf6665ffff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 160, 160, 27, 77, 234, 175, 166, 25, 104, 21, + 65, 76, 27, 220, 46, 58, 139, 129, 114, 15, 60, 223, 102, 101, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3923, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14130702301233246336" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12283217943974316639" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6da46f0abe56b9d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c76fdff6ec3f0285" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71ac066073" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24f9829375b2c92e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a74591b83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7817515908780150219" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7ffdf0182791bf" + } + ] + }, + "cborHex": "9fbf1bc41a56e013cd70801baa76c1a4094b0a5f486da46f0abe56b9d548c76fdff6ec3f02854571ac0660734824f9829375b2c92e457a74591b831b6c7d654cd0ce4dcbff477ffdf0182791bfff", + "cborBytes": [ + 159, 191, 27, 196, 26, 86, 224, 19, 205, 112, 128, 27, 170, 118, 193, 164, 9, 75, 10, 95, 72, 109, 164, 111, 10, + 190, 86, 185, 213, 72, 199, 111, 223, 246, 236, 63, 2, 133, 69, 113, 172, 6, 96, 115, 72, 36, 249, 130, 147, 117, + 178, 201, 46, 69, 122, 116, 89, 27, 131, 27, 108, 125, 101, 76, 208, 206, 77, 203, 255, 71, 127, 253, 240, 24, 39, + 145, 191, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3924, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fb9a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + ] + }, + "cborHex": "9f1142fb9a1bfffffffffffffffbff", + "cborBytes": [159, 17, 66, 251, 154, 27, 255, 255, 255, 255, 255, 255, 255, 251, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3925, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02e99ffdff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06393a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "042a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b30601" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15069814497130050151" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb14db3614d19d266a96b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f94e0c41b5f8c1ad3462dfca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "943975683337505267" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf4502e99ffdff4306393a42042a1bfffffffffffffffd43b306011bd122bc711c77f26741c91bfffffffffffffff44bcb14db3614d19d266a96b0114cf94e0c41b5f8c1ad3462dfca1b0d19ace1f1f049f3ffff", + "cborBytes": [ + 159, 191, 69, 2, 233, 159, 253, 255, 67, 6, 57, 58, 66, 4, 42, 27, 255, 255, 255, 255, 255, 255, 255, 253, 67, + 179, 6, 1, 27, 209, 34, 188, 113, 28, 119, 242, 103, 65, 201, 27, 255, 255, 255, 255, 255, 255, 255, 244, 75, 203, + 20, 219, 54, 20, 209, 157, 38, 106, 150, 176, 17, 76, 249, 78, 12, 65, 181, 248, 193, 173, 52, 98, 223, 202, 27, + 13, 25, 172, 225, 241, 240, 73, 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3926, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7246333936598329120" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8852f43a" + }, + { + "_tag": "ByteArray", + "bytearray": "78" + }, + { + "_tag": "ByteArray", + "bytearray": "ba5926913c92" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "acb7" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "badabd3b938bf1d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f31336" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0f2acb616c6b98d3f6d9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17695870090328497482" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b8d207" + }, + { + "_tag": "ByteArray", + "bytearray": "7f8b3875daf8497efa" + }, + { + "_tag": "ByteArray", + "bytearray": "5e18447d" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12215085691187721115" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8776742431765951240" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2418462656370323394" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2583631729880136775" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7a6c869b916c" + }, + { + "_tag": "ByteArray", + "bytearray": "cf35198cce8db185cc2f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4115085887638562660" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "342775965969945379" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "35" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8911491887585761251" + }, + "fields": [] + } + ] + } + ] + }, + "cborHex": "9fd9050a9fd8669f1b6490265296cd27209f448852f43a417846ba5926913c92ffff42acb7ffbf48badabd3b938bf1d61bfffffffffffffffaffd905089f43f313369f4a0f2acb616c6b98d3f6d91bf5945c17257d5d4a43b8d207497f8b3875daf8497efa445e18447dffffd87a9fd8669f1ba984b3b7c433739b9f1b79cd40bd9281f3081b21901af8ef802fc21b23dae75ea1eefc47467a6c869b916c4acf35198cce8db185cc2fffff1b391bb8cfe8eb67641b04c1c8ecc92e1323ff9f9f413500ffd8669f1b7babfaa81a5317e380ffffff", + "cborBytes": [ + 159, 217, 5, 10, 159, 216, 102, 159, 27, 100, 144, 38, 82, 150, 205, 39, 32, 159, 68, 136, 82, 244, 58, 65, 120, + 70, 186, 89, 38, 145, 60, 146, 255, 255, 66, 172, 183, 255, 191, 72, 186, 218, 189, 59, 147, 139, 241, 214, 27, + 255, 255, 255, 255, 255, 255, 255, 250, 255, 217, 5, 8, 159, 67, 243, 19, 54, 159, 74, 15, 42, 203, 97, 108, 107, + 152, 211, 246, 217, 27, 245, 148, 92, 23, 37, 125, 93, 74, 67, 184, 210, 7, 73, 127, 139, 56, 117, 218, 248, 73, + 126, 250, 68, 94, 24, 68, 125, 255, 255, 216, 122, 159, 216, 102, 159, 27, 169, 132, 179, 183, 196, 51, 115, 155, + 159, 27, 121, 205, 64, 189, 146, 129, 243, 8, 27, 33, 144, 26, 248, 239, 128, 47, 194, 27, 35, 218, 231, 94, 161, + 238, 252, 71, 70, 122, 108, 134, 155, 145, 108, 74, 207, 53, 25, 140, 206, 141, 177, 133, 204, 47, 255, 255, 27, + 57, 27, 184, 207, 232, 235, 103, 100, 27, 4, 193, 200, 236, 201, 46, 19, 35, 255, 159, 159, 65, 53, 0, 255, 216, + 102, 159, 27, 123, 171, 250, 168, 26, 83, 23, 227, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3927, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c486f1268c0c74a38a98cf5c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b530098a2798856a11" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "024c064d687fc4f86d5f6807" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe4d3e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0782" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0457a905" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bc749e3111c651a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e42eaaa70bbf19b3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12353870636116395859" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e5641d09acb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4452470693026662502" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8799fbf42a9cb41f94cc486f1268c0c74a38a98cf5c49b530098a2798856a11ffbf4c024c064d687fc4f86d5f680743fe4d3e420782440457a905483bc749e3111c651a0a498e42eaaa70bbf19b3f1bab71c3e3d2d8c753469e5641d09acb1b3dca5a814eb10866ffffff", + "cborBytes": [ + 159, 216, 121, 159, 191, 66, 169, 203, 65, 249, 76, 196, 134, 241, 38, 140, 12, 116, 163, 138, 152, 207, 92, 73, + 181, 48, 9, 138, 39, 152, 133, 106, 17, 255, 191, 76, 2, 76, 6, 77, 104, 127, 196, 248, 109, 95, 104, 7, 67, 254, + 77, 62, 66, 7, 130, 68, 4, 87, 169, 5, 72, 59, 199, 73, 227, 17, 28, 101, 26, 10, 73, 142, 66, 234, 170, 112, 187, + 241, 155, 63, 27, 171, 113, 195, 227, 210, 216, 199, 83, 70, 158, 86, 65, 208, 154, 203, 27, 61, 202, 90, 129, 78, + 177, 8, 102, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3928, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5620721949116410180" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16746116782635374422" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4114975386172992324" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17652640008292367834" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1505698277712279440" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2ede6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4075436755791027419" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9e9f06494edf419" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18026345934073025410" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7aebcdd4cae9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17000878108991777846" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4122131761581772940" + } + }, + { + "_tag": "ByteArray", + "bytearray": "67e24a50cc01692f87ffae" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecdb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2841d62660d33c3f61" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edc873dd507b4f509a2d49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8760933507812132302" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "95bd03f288" + }, + { + "_tag": "ByteArray", + "bytearray": "2ba363fb33" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2864387611102010073" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f809fa01b4e00d0d5365329441be866287d343057561b391b544fc8512b44a0ff1bf4fac68f521d7ddabf1b14e5509b25f5379043b2ede61b388edc23057e9cdb48d9e9f06494edf419ffd8669f1bfa2a721e8ebad3829f9f467aebcdd4cae91bebef4090cc2b6c361b3934c0ff466fd08c4b67e24a50cc01692f87ffaeffbf42ecdb492841d62660d33c3f614bedc873dd507b4f509a2d491b7995169ba1f585ceff809f4595bd03f288452ba363fb331b27c0595b2ac3dad9ffffffff", + "cborBytes": [ + 159, 128, 159, 160, 27, 78, 0, 208, 213, 54, 83, 41, 68, 27, 232, 102, 40, 125, 52, 48, 87, 86, 27, 57, 27, 84, + 79, 200, 81, 43, 68, 160, 255, 27, 244, 250, 198, 143, 82, 29, 125, 218, 191, 27, 20, 229, 80, 155, 37, 245, 55, + 144, 67, 178, 237, 230, 27, 56, 142, 220, 35, 5, 126, 156, 219, 72, 217, 233, 240, 100, 148, 237, 244, 25, 255, + 216, 102, 159, 27, 250, 42, 114, 30, 142, 186, 211, 130, 159, 159, 70, 122, 235, 205, 212, 202, 233, 27, 235, 239, + 64, 144, 204, 43, 108, 54, 27, 57, 52, 192, 255, 70, 111, 208, 140, 75, 103, 226, 74, 80, 204, 1, 105, 47, 135, + 255, 174, 255, 191, 66, 236, 219, 73, 40, 65, 214, 38, 96, 211, 60, 63, 97, 75, 237, 200, 115, 221, 80, 123, 79, + 80, 154, 45, 73, 27, 121, 149, 22, 155, 161, 245, 133, 206, 255, 128, 159, 69, 149, 189, 3, 242, 136, 69, 43, 163, + 99, 251, 51, 27, 39, 192, 89, 91, 42, 195, 218, 217, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3929, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a4b40e14b1e" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5e0afe" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15368496720661501467" + } + }, + { + "_tag": "ByteArray", + "bytearray": "41d530b53d" + }, + { + "_tag": "ByteArray", + "bytearray": "adfd2378e50b" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ee" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "76051228602248106" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16013571731031027805" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6198100350610930402" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8184378235317122" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16082859352331069748" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75f61a" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ff69a0afc673dc2e2a56" + } + ] + }, + "cborHex": "9f466a4b40e14b1e9fa09f435e0afeff9f1bd547de5776c8d61b4541d530b53d46adfd2378e50bff41eeffbf1b010e30308191abaa1bde3ba2a55557705d1b5604136e10637ae21b001d13a60d6c6b821bdf31cb5ecc4329344375f61aff4aff69a0afc673dc2e2a56ff", + "cborBytes": [ + 159, 70, 106, 75, 64, 225, 75, 30, 159, 160, 159, 67, 94, 10, 254, 255, 159, 27, 213, 71, 222, 87, 118, 200, 214, + 27, 69, 65, 213, 48, 181, 61, 70, 173, 253, 35, 120, 229, 11, 255, 65, 238, 255, 191, 27, 1, 14, 48, 48, 129, 145, + 171, 170, 27, 222, 59, 162, 165, 85, 87, 112, 93, 27, 86, 4, 19, 110, 16, 99, 122, 226, 27, 0, 29, 19, 166, 13, + 108, 107, 130, 27, 223, 49, 203, 94, 204, 67, 41, 52, 67, 117, 246, 26, 255, 74, 255, 105, 160, 175, 198, 115, + 220, 46, 42, 86, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3930, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "036c0a6f0a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10181766049675721449" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "611d8b581e4da806489aee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10719962674499586064" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73146556333a3cb8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16830694609093773382" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a61406e3b2ab11bab9c2155a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3047553571617531460" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "b2dd806bc949cff7ff" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11677948458695814849" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ae4620c8c" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3485303243125493804" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7385e2eaf18893" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14528832384000621393" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ddf53c780130baa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14646043675714398079" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "913850387284723784" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14654053258737597933" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13431114702135734533" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15690750147685120648" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3286196904876320570" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16527301832813551938" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13287637254890071187" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7945931336777914626" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "b477cdb12e4476494009" + } + ] + } + ] + }, + "cborHex": "9fbf45036c0a6f0a1b8d4ce646e10dbae94b611d8b581e4da806489aee1b94c4f54172fe88104873146556333a3cb81be992a392fa1dc8464ca61406e3b2ab11bab9c2155a1b2a4b15d3a63c6644ff49b2dd806bc949cff7ffbf1ba210684031e26ec1450ae4620c8cffbf1b305e48d56d03102c477385e2eaf188931bc9a0c813818c7b51486ddf53c780130baa1bcb41331fffd0277f1b0caea615dff588481bcb5da7cc5eb5bded1bba64e7a91653b1051bd9c0be204c2dfa881b2d9aeaac8924273a1be55cc5739883a1421bb8672baeb1f82493ffd8669f1b6e459e73924ad9029fa0a0a04ab477cdb12e4476494009ffffff", + "cborBytes": [ + 159, 191, 69, 3, 108, 10, 111, 10, 27, 141, 76, 230, 70, 225, 13, 186, 233, 75, 97, 29, 139, 88, 30, 77, 168, 6, + 72, 154, 238, 27, 148, 196, 245, 65, 114, 254, 136, 16, 72, 115, 20, 101, 86, 51, 58, 60, 184, 27, 233, 146, 163, + 146, 250, 29, 200, 70, 76, 166, 20, 6, 227, 178, 171, 17, 186, 185, 194, 21, 90, 27, 42, 75, 21, 211, 166, 60, + 102, 68, 255, 73, 178, 221, 128, 107, 201, 73, 207, 247, 255, 191, 27, 162, 16, 104, 64, 49, 226, 110, 193, 69, + 10, 228, 98, 12, 140, 255, 191, 27, 48, 94, 72, 213, 109, 3, 16, 44, 71, 115, 133, 226, 234, 241, 136, 147, 27, + 201, 160, 200, 19, 129, 140, 123, 81, 72, 109, 223, 83, 199, 128, 19, 11, 170, 27, 203, 65, 51, 31, 255, 208, 39, + 127, 27, 12, 174, 166, 21, 223, 245, 136, 72, 27, 203, 93, 167, 204, 94, 181, 189, 237, 27, 186, 100, 231, 169, + 22, 83, 177, 5, 27, 217, 192, 190, 32, 76, 45, 250, 136, 27, 45, 154, 234, 172, 137, 36, 39, 58, 27, 229, 92, 197, + 115, 152, 131, 161, 66, 27, 184, 103, 43, 174, 177, 248, 36, 147, 255, 216, 102, 159, 27, 110, 69, 158, 115, 146, + 74, 217, 2, 159, 160, 160, 160, 74, 180, 119, 205, 177, 46, 68, 118, 73, 64, 9, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3931, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14827646368422233977" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "721849b8988ef942f3" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15393470299021846066" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "46" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17735333546286657280" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5846153622227311027" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11296882961982596668" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c7a8486415146154454d8a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18280710190188792438" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12698047556018520502" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15430223789408116853" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8cbece" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1626106829351401138" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3298074559984326778" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7435026197638230354" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e015ba5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7489972799225736673" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5770730e1525300e5011af3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13960002236650419026" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15373062883002095744" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16819989191930678533" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9056577450246182592" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18257275532017281413" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9394726843122032489" + } + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fbf1bcdc661cfd4eb077949721849b8988ef942f3ffd8669f1bd5a097adc9b926329f4146d8669f1bf6208fe4ff7c2f009f1b5121b5bec338d9b31b9cc697335222a63c4bc7a8486415146154454d8a1bfdb2211008110a761bb03886f99d8041b6ffff1bd6232ac89c73e075438cbeceffffbf1b1691178bba53b6b21b2dc51d569e9e587a1b672e84ef2df33152442e015ba51b67f1ba93cb302de14cf5770730e1525300e5011af31bc1bbe4122b34f3521bd558173dfb1518801be96c9b0dcef00d051b7daf6d350abc96c01bfd5edf5d7c5229851b8260c649d61d9f69ff80ff", + "cborBytes": [ + 159, 191, 27, 205, 198, 97, 207, 212, 235, 7, 121, 73, 114, 24, 73, 184, 152, 142, 249, 66, 243, 255, 216, 102, + 159, 27, 213, 160, 151, 173, 201, 185, 38, 50, 159, 65, 70, 216, 102, 159, 27, 246, 32, 143, 228, 255, 124, 47, 0, + 159, 27, 81, 33, 181, 190, 195, 56, 217, 179, 27, 156, 198, 151, 51, 82, 34, 166, 60, 75, 199, 168, 72, 100, 21, + 20, 97, 84, 69, 77, 138, 27, 253, 178, 33, 16, 8, 17, 10, 118, 27, 176, 56, 134, 249, 157, 128, 65, 182, 255, 255, + 27, 214, 35, 42, 200, 156, 115, 224, 117, 67, 140, 190, 206, 255, 255, 191, 27, 22, 145, 23, 139, 186, 83, 182, + 178, 27, 45, 197, 29, 86, 158, 158, 88, 122, 27, 103, 46, 132, 239, 45, 243, 49, 82, 68, 46, 1, 91, 165, 27, 103, + 241, 186, 147, 203, 48, 45, 225, 76, 245, 119, 7, 48, 225, 82, 83, 0, 229, 1, 26, 243, 27, 193, 187, 228, 18, 43, + 52, 243, 82, 27, 213, 88, 23, 61, 251, 21, 24, 128, 27, 233, 108, 155, 13, 206, 240, 13, 5, 27, 125, 175, 109, 53, + 10, 188, 150, 192, 27, 253, 94, 223, 93, 124, 82, 41, 133, 27, 130, 96, 198, 73, 214, 29, 159, 105, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3932, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "267710217549024230" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "da520ab33543822f847a" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb08f387c5fb8db7a5850370" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8fff03effee3e0498f13f7" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7413151695602141232" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a39c06190b9c30bda" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98" + } + } + ] + } + ] + }, + "cborHex": "9fa0d8669f1b03b7190643c08be69f4ada520ab33543822f847abf4ccb08f387c5fb8db7a58503704b8fff03effee3e0498f13f7ff1b66e0ce30ca734830ffffbf493a39c06190b9c30bda4198ffff", + "cborBytes": [ + 159, 160, 216, 102, 159, 27, 3, 183, 25, 6, 67, 192, 139, 230, 159, 74, 218, 82, 10, 179, 53, 67, 130, 47, 132, + 122, 191, 76, 203, 8, 243, 135, 197, 251, 141, 183, 165, 133, 3, 112, 75, 143, 255, 3, 239, 254, 227, 224, 73, + 143, 19, 247, 255, 27, 102, 224, 206, 48, 202, 115, 72, 48, 255, 255, 191, 73, 58, 57, 192, 97, 144, 185, 195, 11, + 218, 65, 152, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3933, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5bf4ad923de7ed0d" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f7115038" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16697468066826286967" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b207d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f485bf4ad923de7ed0d80d87a9f9f44f71150381be7b952bd639bf777ff9f43b207d502ffffff", + "cborBytes": [ + 159, 72, 91, 244, 173, 146, 61, 231, 237, 13, 128, 216, 122, 159, 159, 68, 247, 17, 80, 56, 27, 231, 185, 82, 189, + 99, 155, 247, 119, 255, 159, 67, 178, 7, 213, 2, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3934, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16008233279051426169" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02b828" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17084134143279320376" + } + } + } + ] + } + ] + }, + "cborHex": "9f1bde28ab5a1f726979bf4302b8281bed17097cd9494d38ffff", + "cborBytes": [ + 159, 27, 222, 40, 171, 90, 31, 114, 105, 121, 191, 67, 2, 184, 40, 27, 237, 23, 9, 124, 217, 73, 77, 56, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3935, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3372267411554417852" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15008192340430033237" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1624054170528197333" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8718a7f0f0fae1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13577667671081404694" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc347e47a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15337939236567752299" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddf91ea8ceabe9d8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10413937584922762269" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f123d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17725442775021241798" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15936214606961729012" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10818970115734411564" + } + }, + { + "_tag": "ByteArray", + "bytearray": "25ff" + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b2eccb3580153bcbc9fbf1bd047cf6ab41211551b1689cca9da532ad5ffbf478718a7f0f0fae11bbc6d90cf2d1cc91645cc347e47a51bd4db4e78c6259e6b48ddf91ea8ceabe9d81b9085bd0ede691c1d43f123d541a0ffd8669f1bf5fd6c4a5ba7c5c69f1bdd28cec058585df41b9624b3ffb7ea992c4225ffffffffff", + "cborBytes": [ + 159, 27, 46, 204, 179, 88, 1, 83, 188, 188, 159, 191, 27, 208, 71, 207, 106, 180, 18, 17, 85, 27, 22, 137, 204, + 169, 218, 83, 42, 213, 255, 191, 71, 135, 24, 167, 240, 240, 250, 225, 27, 188, 109, 144, 207, 45, 28, 201, 22, + 69, 204, 52, 126, 71, 165, 27, 212, 219, 78, 120, 198, 37, 158, 107, 72, 221, 249, 30, 168, 206, 171, 233, 216, + 27, 144, 133, 189, 14, 222, 105, 28, 29, 67, 241, 35, 213, 65, 160, 255, 216, 102, 159, 27, 245, 253, 108, 74, 91, + 167, 197, 198, 159, 27, 221, 40, 206, 192, 88, 88, 93, 244, 27, 150, 36, 179, 255, 183, 234, 153, 44, 66, 37, 255, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3936, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9237235975195652173" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3ec6523536059818" + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14104670017963668281" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "ab" + }, + { + "_tag": "ByteArray", + "bytearray": "e306ff" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "06facf290151ff06706604" + } + ] + } + ] + }, + "cborHex": "9f809f1b8031412daffef04d483ec6523536059818801bc3bddaa6ced3b339ff41ab43e306ffd87c9f4b06facf290151ff06706604ffff", + "cborBytes": [ + 159, 128, 159, 27, 128, 49, 65, 45, 175, 254, 240, 77, 72, 62, 198, 82, 53, 54, 5, 152, 24, 128, 27, 195, 189, + 218, 166, 206, 211, 179, 57, 255, 65, 171, 67, 227, 6, 255, 216, 124, 159, 75, 6, 250, 207, 41, 1, 81, 255, 6, + 112, 102, 4, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3937, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15205065733255005311" + } + } + ] + }, + "cborHex": "9f1bd3033eb97921047fff", + "cborBytes": [159, 27, 211, 3, 62, 185, 121, 33, 4, 127, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3938, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "219447050319918833" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b6ad2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "818010840078903414" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6525215070643980845" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1875535204745074640" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5efa3985abe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10918953926946102566" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89942cacf3ea06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13654172377125723813" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2925609383182409757" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "517907941748716618" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2102e38d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6216887718622905327" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2708649189528981066" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16707238085141278166" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13008081554320189539" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7041847989013329183" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4821486166021646189" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16846519617402763237" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1479253729062840931" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16120795603079542367" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2626723739450539598" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6874" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "764339098103899456" + } + } + ] + }, + "cborHex": "9fbf1b030ba1edf95376f1437b6ad21b0b5a2886695268761b5a8e3888e0c28a2d1b1a073d54ea91d7d046a5efa3985abe1b9787eabed67a9d264789942cacf3ea061bbd7d5d6f20879ea51b2899da3bc423201dffbf1b072ffa876e49344a442102e38d1b5646d2710d01c3ef1b25970e163b064e4a1be7dc08850ab92dd61bb485fd40fe90e863ff9fbf1b61b9ab6fcb70351f1b42e95c1f672e276dff1be9cadc55d8f0f7e5ffbf1b14875d6ddd766a631bdfb892307a3c365f1b2473ff52f508fe4e426874ff1b0a9b7a5c2e6ce540ff", + "cborBytes": [ + 159, 191, 27, 3, 11, 161, 237, 249, 83, 118, 241, 67, 123, 106, 210, 27, 11, 90, 40, 134, 105, 82, 104, 118, 27, + 90, 142, 56, 136, 224, 194, 138, 45, 27, 26, 7, 61, 84, 234, 145, 215, 208, 70, 165, 239, 163, 152, 90, 190, 27, + 151, 135, 234, 190, 214, 122, 157, 38, 71, 137, 148, 44, 172, 243, 234, 6, 27, 189, 125, 93, 111, 32, 135, 158, + 165, 27, 40, 153, 218, 59, 196, 35, 32, 29, 255, 191, 27, 7, 47, 250, 135, 110, 73, 52, 74, 68, 33, 2, 227, 141, + 27, 86, 70, 210, 113, 13, 1, 195, 239, 27, 37, 151, 14, 22, 59, 6, 78, 74, 27, 231, 220, 8, 133, 10, 185, 45, 214, + 27, 180, 133, 253, 64, 254, 144, 232, 99, 255, 159, 191, 27, 97, 185, 171, 111, 203, 112, 53, 31, 27, 66, 233, 92, + 31, 103, 46, 39, 109, 255, 27, 233, 202, 220, 85, 216, 240, 247, 229, 255, 191, 27, 20, 135, 93, 109, 221, 118, + 106, 99, 27, 223, 184, 146, 48, 122, 60, 54, 95, 27, 36, 115, 255, 82, 245, 8, 254, 78, 66, 104, 116, 255, 27, 10, + 155, 122, 92, 46, 108, 229, 64, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3939, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8556433820542556755" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9988898813828839441" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2770382588185910393" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2431547932749706136" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d2cbcaa717d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9012979222990673510" + } + }, + { + "_tag": "ByteArray", + "bytearray": "abd655d415" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9892737438180628868" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffff19f1b76be8f39d193da53d8669f1b8a9fb28c3796b8119f1b267260492cbf9c79ffffd8669f1b21be97f641e1b3989f46d2cbcaa717d61b7d1488d9ba55d66645abd655d4151b894a10493af6d984ffffffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 27, 118, 190, 143, 57, 209, 147, 218, 83, + 216, 102, 159, 27, 138, 159, 178, 140, 55, 150, 184, 17, 159, 27, 38, 114, 96, 73, 44, 191, 156, 121, 255, 255, + 216, 102, 159, 27, 33, 190, 151, 246, 65, 225, 179, 152, 159, 70, 210, 203, 202, 167, 23, 214, 27, 125, 20, 136, + 217, 186, 85, 214, 102, 69, 171, 214, 85, 212, 21, 27, 137, 74, 16, 73, 58, 246, 217, 132, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3940, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6006747035534853915" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9abb27" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9065324495739443213" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1598485543511708765" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14814903073740630077" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8869220433891604454" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "ByteArray", + "bytearray": "44d088" + } + ] + }, + "cborHex": "9fbf1b535c409a8caf871b439abb271b7dce80994632580d1b162ef621f79cd45d1bcd991bda5427283d415aff1b7b15ccfe54beb7e6a04344d088ff", + "cborBytes": [ + 159, 191, 27, 83, 92, 64, 154, 140, 175, 135, 27, 67, 154, 187, 39, 27, 125, 206, 128, 153, 70, 50, 88, 13, 27, + 22, 46, 246, 33, 247, 156, 212, 93, 27, 205, 153, 27, 218, 84, 39, 40, 61, 65, 90, 255, 27, 123, 21, 204, 254, 84, + 190, 183, 230, 160, 67, 68, 208, 136, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3941, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc04045973fcfeff02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04fafe4301" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "540367885a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b8441f32c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5847793307087744828" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ed7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62fd0ca6cb29e15104d44f3b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6a09b6bd58887e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11151802230288769626" + } + } + } + ] + } + ] + }, + "cborHex": "9f80bf410049fc04045973fcfeff024504fafe430145540367885a455b8441f32c1b51278907a4df2f3c429ed74c62fd0ca6cb29e15104d44f3b48e6a09b6bd58887e81b9ac3290b2dc5625affff", + "cborBytes": [ + 159, 128, 191, 65, 0, 73, 252, 4, 4, 89, 115, 252, 254, 255, 2, 69, 4, 250, 254, 67, 1, 69, 84, 3, 103, 136, 90, + 69, 91, 132, 65, 243, 44, 27, 81, 39, 137, 7, 164, 223, 47, 60, 66, 158, 215, 76, 98, 253, 12, 166, 203, 41, 225, + 81, 4, 212, 79, 59, 72, 230, 160, 155, 107, 213, 136, 135, 232, 27, 154, 195, 41, 11, 45, 197, 98, 90, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3942, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17861516174102243994" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16498680702489650353" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3e9cefed17cd8a" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13135709146388517061" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "901019359656412404" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa02b5b244453d9d7d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14058056788135593469" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1816714612410545687" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5774624272937706710" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6032f17352689707" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12773802559883093852" + } + } + ] + }, + "cborHex": "9fd8669f1bf7e0da5373422a9a9fd8669f1be4f716af667ce4b19f473e9cefed17cd8affff1bb64b69df675650c5bf1b0c811055741204f449fa02b5b244453d9d7d1bc318402a811745fd1b193644508afdf617ff1b5023962e53cce4d6ffff486032f173526897071bb145a9bfeccea75cff", + "cborBytes": [ + 159, 216, 102, 159, 27, 247, 224, 218, 83, 115, 66, 42, 154, 159, 216, 102, 159, 27, 228, 247, 22, 175, 102, 124, + 228, 177, 159, 71, 62, 156, 239, 237, 23, 205, 138, 255, 255, 27, 182, 75, 105, 223, 103, 86, 80, 197, 191, 27, + 12, 129, 16, 85, 116, 18, 4, 244, 73, 250, 2, 181, 178, 68, 69, 61, 157, 125, 27, 195, 24, 64, 42, 129, 23, 69, + 253, 27, 25, 54, 68, 80, 138, 253, 246, 23, 255, 27, 80, 35, 150, 46, 83, 204, 228, 214, 255, 255, 72, 96, 50, + 241, 115, 82, 104, 151, 7, 27, 177, 69, 169, 191, 236, 206, 167, 92, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3943, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bd8f0ceb2dcd6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13642126163231453592" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e247eff02de7fa4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "18" + } + ] + } + ] + }, + "cborHex": "9fbf475bd8f0ceb2dcd61bbd52917764793198489e247eff02de7fa401ff9f4118ffff", + "cborBytes": [ + 159, 191, 71, 91, 216, 240, 206, 178, 220, 214, 27, 189, 82, 145, 119, 100, 121, 49, 152, 72, 158, 36, 126, 255, + 2, 222, 127, 164, 1, 255, 159, 65, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3944, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9241695924442440459" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "39f8b426" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4692955725111955099" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6586102227367284167" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54ac49de3339c93dc842" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34d8909a" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "85438385171094327" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf646872" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5380140365372435848" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5431692740077447031" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8901459475518236494" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6880162714777792220" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "186db3f7dc9f65fc8c0f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7929104197951556111" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d46c1f28d280afe9a8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16911896806427499205" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12371812267348554790" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6931626569275326977" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8290095853638233869" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "67808207b88242627ec87c6a" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "56605ec8b659164f6b7cf9bb" + }, + { + "_tag": "ByteArray", + "bytearray": "18391d" + }, + { + "_tag": "ByteArray", + "bytearray": "b96334402816191515d5" + }, + { + "_tag": "ByteArray", + "bytearray": "d7d3" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4c04daf6a857bef5" + } + ] + } + ] + }, + "cborHex": "9f9fd8669f1b8041197a8a91230b80ff4439f8b426bf1b4120ba5e1def0e9b1b5b668914c4a2cdc74a54ac49de3339c93dc8424434d8909affa0ff9fbf1b012f89c2364e5b3744bf6468721b4aaa192837c3ad8841971b4b613fc4cd6267771b7b88563b24cca74e1b5f7b3f895337aedc4a186db3f7dc9f65fc8c0f1b6e09d64201f60a0f49d46c1f28d280afe9a81beab3208ad92c9ac51babb181b55f217426ff1b603215a3b150c201d8669f1b730c56418e0baf0d9f4c67808207b88242627ec87c6affff9f4c56605ec8b659164f6b7cf9bb4318391d4ab96334402816191515d542d7d3ff484c04daf6a857bef5ffff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 128, 65, 25, 122, 138, 145, 35, 11, 128, 255, 68, 57, 248, 180, 38, 191, 27, 65, 32, + 186, 94, 29, 239, 14, 155, 27, 91, 102, 137, 20, 196, 162, 205, 199, 74, 84, 172, 73, 222, 51, 57, 201, 61, 200, + 66, 68, 52, 216, 144, 154, 255, 160, 255, 159, 191, 27, 1, 47, 137, 194, 54, 78, 91, 55, 68, 191, 100, 104, 114, + 27, 74, 170, 25, 40, 55, 195, 173, 136, 65, 151, 27, 75, 97, 63, 196, 205, 98, 103, 119, 27, 123, 136, 86, 59, 36, + 204, 167, 78, 27, 95, 123, 63, 137, 83, 55, 174, 220, 74, 24, 109, 179, 247, 220, 159, 101, 252, 140, 15, 27, 110, + 9, 214, 66, 1, 246, 10, 15, 73, 212, 108, 31, 40, 210, 128, 175, 233, 168, 27, 234, 179, 32, 138, 217, 44, 154, + 197, 27, 171, 177, 129, 181, 95, 33, 116, 38, 255, 27, 96, 50, 21, 163, 177, 80, 194, 1, 216, 102, 159, 27, 115, + 12, 86, 65, 142, 11, 175, 13, 159, 76, 103, 128, 130, 7, 184, 130, 66, 98, 126, 200, 124, 106, 255, 255, 159, 76, + 86, 96, 94, 200, 182, 89, 22, 79, 107, 124, 249, 187, 67, 24, 57, 29, 74, 185, 99, 52, 64, 40, 22, 25, 21, 21, + 213, 66, 215, 211, 255, 72, 76, 4, 218, 246, 168, 87, 190, 245, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3945, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "db154e02ebeefe3766" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15263975960214006006" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14826654680997285505" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3986637035315062155" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6532143262443567823" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14210138684591627334" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "789b59b12945" + } + ] + }, + "cborHex": "9f9f9f49db154e02ebeefe37661bd3d4894388a868f61bcdc2dbe09c39ce811b37536142f25ee58b1b5aa6d5b03be8facfff1bc5348dd8581edc46ff46789b59b12945ff", + "cborBytes": [ + 159, 159, 159, 73, 219, 21, 78, 2, 235, 238, 254, 55, 102, 27, 211, 212, 137, 67, 136, 168, 104, 246, 27, 205, + 194, 219, 224, 156, 57, 206, 129, 27, 55, 83, 97, 66, 242, 94, 229, 139, 27, 90, 166, 213, 176, 59, 232, 250, 207, + 255, 27, 197, 52, 141, 216, 88, 30, 220, 70, 255, 70, 120, 155, 89, 177, 41, 69, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3946, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14444839109628668730" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1e17e0e3dec55f5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15102553390127408576" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14996212845933124803" + } + }, + { + "_tag": "ByteArray", + "bytearray": "36e5137c078b53b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18217551008195675142" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b4c93419751d1fd11b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14998044837972642337" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7200212988844230833" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11985475894675888520" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f89c70cdc63b3bc464c03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1140cbc9f1cf85" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ae303475dd055690ece" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b6c334fbc7da79a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3c5923b296b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3ac48cab281b4cdf4460d" + } + } + ] + } + ] + }, + "cborHex": "9f1bc87660a35f162b3a48c1e17e0e3dec55f51bd1970c4aa3ea65c09f9f1bd01d402149fe5cc34836e5137c078b53b71bfcd1be1f0910040649b4c93419751d1fd11b1bd023c2512cbd8a21ffd8669f1b63ec4b90a336c8b19f1ba654f6d30e29d988ffffffbf4b2f89c70cdc63b3bc464c03471140cbc9f1cf854a4ae303475dd055690ece480b6c334fbc7da79a46b3c5923b296b4bc3ac48cab281b4cdf4460dffff", + "cborBytes": [ + 159, 27, 200, 118, 96, 163, 95, 22, 43, 58, 72, 193, 225, 126, 14, 61, 236, 85, 245, 27, 209, 151, 12, 74, 163, + 234, 101, 192, 159, 159, 27, 208, 29, 64, 33, 73, 254, 92, 195, 72, 54, 229, 19, 124, 7, 139, 83, 183, 27, 252, + 209, 190, 31, 9, 16, 4, 6, 73, 180, 201, 52, 25, 117, 29, 31, 209, 27, 27, 208, 35, 194, 81, 44, 189, 138, 33, + 255, 216, 102, 159, 27, 99, 236, 75, 144, 163, 54, 200, 177, 159, 27, 166, 84, 246, 211, 14, 41, 217, 136, 255, + 255, 255, 191, 75, 47, 137, 199, 12, 220, 99, 179, 188, 70, 76, 3, 71, 17, 64, 203, 201, 241, 207, 133, 74, 74, + 227, 3, 71, 93, 208, 85, 105, 14, 206, 72, 11, 108, 51, 79, 188, 125, 167, 154, 70, 179, 197, 146, 59, 41, 107, + 75, 195, 172, 72, 202, 178, 129, 180, 205, 244, 70, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3947, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ce0303f91700b2ab2f0100" + }, + { + "_tag": "ByteArray", + "bytearray": "ab" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1273805141430836376" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3972625924237294361" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5738727310355631418" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7718476569119032964" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8402179252235074722" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3128415692117821113" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18255149841623680942" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9720195423512237749" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5f4a6000dc57f2aec5752c87" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1329053686448889442" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71241317c778" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3319155734863390580" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7631164449858446952" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53883a7d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14682456852298254747" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "952340df7867904e" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1190851835949915061" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6831891336539794469" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b27c" + }, + { + "_tag": "ByteArray", + "bytearray": "dd8b69a2bf7dbfb8a58ab3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9809695878655323512" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7300887835284212918" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14733041448628625956" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2223ffa6a504143c521d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2003726451809747207" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "237715e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7302564670809765038" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4089faf53bcc4e0892173f7d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1209015075759722747" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ad873b94d11a0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf0ce058" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6137e15b8eb233" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90300c81da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c08102" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b90b4ae6d6c80553bfccc" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f4bce0303f91700b2ab2f010041abd905089f1b11ad7706f80d1c9810ffffbf1b37219a3aefabfb1941271b4fa40e156c948d3a1b6b1d898b9d8406841b749a898364a0fca21b2b6a5d7f3670c6b91bfd57520f9f8207ae41d6ffd8669f1b86e5123ce5d316b59f4c5f4a6000dc57f2aec5752c87bf1b1271bf4944359e624671241317c7781b2e10028e22bba774414d1b69e757a2b066e6684453883a7d1bcbc290b7573cc99b48952340df7867904effd8669f1b1086c16f75ea9bb59f1b5ecfc0f94285ec2542b27c4bdd8b69a2bf7dbfb8a58ab31b88230a6d79dd2d78ffffa01b6551f6cdef160cb6ffffd8669f1bfffffffffffffffa9f9f1bcc764723769da224ffbf4a2223ffa6a504143c521d1b1bceaa977b2c810744237715e51b6557ebe0a0eef4ae4c4089faf53bcc4e0892173f7d1b10c748ce46c010fb474ad873b94d11a044cf0ce058476137e15b8eb2334590300c81da43c081024b6b90b4ae6d6c80553bfcccffffffff", + "cborBytes": [ + 159, 159, 75, 206, 3, 3, 249, 23, 0, 178, 171, 47, 1, 0, 65, 171, 217, 5, 8, 159, 27, 17, 173, 119, 6, 248, 13, + 28, 152, 16, 255, 255, 191, 27, 55, 33, 154, 58, 239, 171, 251, 25, 65, 39, 27, 79, 164, 14, 21, 108, 148, 141, + 58, 27, 107, 29, 137, 139, 157, 132, 6, 132, 27, 116, 154, 137, 131, 100, 160, 252, 162, 27, 43, 106, 93, 127, 54, + 112, 198, 185, 27, 253, 87, 82, 15, 159, 130, 7, 174, 65, 214, 255, 216, 102, 159, 27, 134, 229, 18, 60, 229, 211, + 22, 181, 159, 76, 95, 74, 96, 0, 220, 87, 242, 174, 197, 117, 44, 135, 191, 27, 18, 113, 191, 73, 68, 53, 158, 98, + 70, 113, 36, 19, 23, 199, 120, 27, 46, 16, 2, 142, 34, 187, 167, 116, 65, 77, 27, 105, 231, 87, 162, 176, 102, + 230, 104, 68, 83, 136, 58, 125, 27, 203, 194, 144, 183, 87, 60, 201, 155, 72, 149, 35, 64, 223, 120, 103, 144, 78, + 255, 216, 102, 159, 27, 16, 134, 193, 111, 117, 234, 155, 181, 159, 27, 94, 207, 192, 249, 66, 133, 236, 37, 66, + 178, 124, 75, 221, 139, 105, 162, 191, 125, 191, 184, 165, 138, 179, 27, 136, 35, 10, 109, 121, 221, 45, 120, 255, + 255, 160, 27, 101, 81, 246, 205, 239, 22, 12, 182, 255, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 250, 159, 159, 27, 204, 118, 71, 35, 118, 157, 162, 36, 255, 191, 74, 34, 35, 255, 166, 165, 4, 20, 60, 82, 29, + 27, 27, 206, 170, 151, 123, 44, 129, 7, 68, 35, 119, 21, 229, 27, 101, 87, 235, 224, 160, 238, 244, 174, 76, 64, + 137, 250, 245, 59, 204, 78, 8, 146, 23, 63, 125, 27, 16, 199, 72, 206, 70, 192, 16, 251, 71, 74, 216, 115, 185, + 77, 17, 160, 68, 207, 12, 224, 88, 71, 97, 55, 225, 91, 142, 178, 51, 69, 144, 48, 12, 129, 218, 67, 192, 129, 2, + 75, 107, 144, 180, 174, 109, 108, 128, 85, 59, 252, 204, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3948, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "74c0" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5223173912402956574" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "079995" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5885717936683726449" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27cec55c6b39cc7a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9874282564241072237" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17246142668476637247" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13826489865758242328" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4cc8ff2e12e8ac35b11b717" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15934924880284582868" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd164440c0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16032180564307275436" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10342117851735745012" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7548592162558106970" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6524205755277274221" + } + } + ] + }, + "cborHex": "9f9f4274c0ffbf1b487c70fff0dd911e430799951b51ae4547902db6714827cec55c6b39cc7a1b89087fad0d6c206d1bef569b620c41e03f1bbfe18f46eb0ef6184cf4cc8ff2e12e8ac35b11b7171bdd2439c073e583d445fd164440c01bde7dbf47f674eeac1b8f86956429ef61f4ff1b68c1fc93e392dd5a1b5a8aa29154dc6c6dff", + "cborBytes": [ + 159, 159, 66, 116, 192, 255, 191, 27, 72, 124, 112, 255, 240, 221, 145, 30, 67, 7, 153, 149, 27, 81, 174, 69, 71, + 144, 45, 182, 113, 72, 39, 206, 197, 92, 107, 57, 204, 122, 27, 137, 8, 127, 173, 13, 108, 32, 109, 27, 239, 86, + 155, 98, 12, 65, 224, 63, 27, 191, 225, 143, 70, 235, 14, 246, 24, 76, 244, 204, 143, 242, 225, 46, 138, 195, 91, + 17, 183, 23, 27, 221, 36, 57, 192, 115, 229, 131, 212, 69, 253, 22, 68, 64, 192, 27, 222, 125, 191, 71, 246, 116, + 238, 172, 27, 143, 134, 149, 100, 41, 239, 97, 244, 255, 27, 104, 193, 252, 147, 227, 146, 221, 90, 27, 90, 138, + 162, 145, 84, 220, 108, 109, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3949, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5282239272062443317" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1699457465344428465" + } + } + ] + }, + "cborHex": "9f1b494e48a1a5e65f351b1795af8f84bd89b1ff", + "cborBytes": [159, 27, 73, 78, 72, 161, 165, 230, 95, 53, 27, 23, 149, 175, 143, 132, 189, 137, 177, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3950, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d5e78ce7b6543e634ea2c8e8" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15305631046020691913" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ea" + }, + { + "_tag": "ByteArray", + "bytearray": "88b3f7" + }, + { + "_tag": "ByteArray", + "bytearray": "f50618304ba500" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00fab2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "886e6420f8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34253bc924113a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16865334875682828093" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37116dc7bcdd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "405cb934c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10662185121917974223" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b57e1c9b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64a7cce5454ad664" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8858de9dfc96fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1789791419a95e42b76cf" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14067109135971366711" + } + }, + { + "_tag": "ByteArray", + "bytearray": "866f4cbe1c2e6a54f86d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6939202949023280489" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4cd5e78ce7b6543e634ea2c8e89fd8669f1bd4688657f940f7c99f41ea4388b3f747f50618304ba500ffffbf4300fab245886e6420f84734253bc924113a1bea0db4b68b14ef3d4637116dc7bcdd41ba45405cb934c11b93f7b0e0b16036cf457b57e1c9b94864a7cce5454ad664478858de9dfc96fe4bb1789791419a95e42b76cfff9f1bc338693a7a39b7374a866f4cbe1c2e6a54f86d1b604d005110e02d69ffffff", + "cborBytes": [ + 159, 76, 213, 231, 140, 231, 182, 84, 62, 99, 78, 162, 200, 232, 159, 216, 102, 159, 27, 212, 104, 134, 87, 249, + 64, 247, 201, 159, 65, 234, 67, 136, 179, 247, 71, 245, 6, 24, 48, 75, 165, 0, 255, 255, 191, 67, 0, 250, 178, 69, + 136, 110, 100, 32, 248, 71, 52, 37, 59, 201, 36, 17, 58, 27, 234, 13, 180, 182, 139, 20, 239, 61, 70, 55, 17, 109, + 199, 188, 221, 65, 186, 69, 64, 92, 185, 52, 193, 27, 147, 247, 176, 224, 177, 96, 54, 207, 69, 123, 87, 225, 201, + 185, 72, 100, 167, 204, 229, 69, 74, 214, 100, 71, 136, 88, 222, 157, 252, 150, 254, 75, 177, 120, 151, 145, 65, + 154, 149, 228, 43, 118, 207, 255, 159, 27, 195, 56, 105, 58, 122, 57, 183, 55, 74, 134, 111, 76, 190, 28, 46, 106, + 84, 248, 109, 27, 96, 77, 0, 81, 16, 224, 45, 105, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3951, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2a5cedcf2c5fc79914fd" + }, + { + "_tag": "ByteArray", + "bytearray": "f43543e343c19fc8d2d0e69a" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10702855236032423151" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2390069979221380528" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17350936208094687698" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7ae2b71659771b8f45701ef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d7107e17f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4654437525576629860" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d32f8f173ba9b9b308fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2720497406376554824" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f4a2a5cedcf2c5fc79914fd4cf43543e343c19fc8d2d0e69ad8669f1b94882e218a2464ef9f1b212b3bfba3d0cdb0bf1bf0cae88d53f271d24ce7ae2b71659771b8f45701ef458d7107e17f1b4097e244ed3e3e644ad32f8f173ba9b9b308fa1b25c125fa2f723148ffffff80ff", + "cborBytes": [ + 159, 74, 42, 92, 237, 207, 44, 95, 199, 153, 20, 253, 76, 244, 53, 67, 227, 67, 193, 159, 200, 210, 208, 230, 154, + 216, 102, 159, 27, 148, 136, 46, 33, 138, 36, 100, 239, 159, 27, 33, 43, 59, 251, 163, 208, 205, 176, 191, 27, + 240, 202, 232, 141, 83, 242, 113, 210, 76, 231, 174, 43, 113, 101, 151, 113, 184, 244, 87, 1, 239, 69, 141, 113, + 7, 225, 127, 27, 64, 151, 226, 68, 237, 62, 62, 100, 74, 211, 47, 143, 23, 59, 169, 185, 179, 8, 250, 27, 37, 193, + 37, 250, 47, 114, 49, 72, 255, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3952, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2360164944496729339" + } + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1371060168025361476" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03c987" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5516532269646367596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4989" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14704794616673896378" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70cf8f2cce0d" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f1b20c0fd83280e9cfb80bf1b1306fbf568d6cc444303c9871b4c8ea8df14404b6c4249891bcc11eccb65ec87ba4670cf8f2cce0dffa0ff", + "cborBytes": [ + 159, 27, 32, 192, 253, 131, 40, 14, 156, 251, 128, 191, 27, 19, 6, 251, 245, 104, 214, 204, 68, 67, 3, 201, 135, + 27, 76, 142, 168, 223, 20, 64, 75, 108, 66, 73, 137, 27, 204, 17, 236, 203, 101, 236, 135, 186, 70, 112, 207, 143, + 44, 206, 13, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3953, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14957541680587253143" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11881238147683057412" + }, + "fields": [] + }, + { + "_tag": "ByteArray", + "bytearray": "d1cadf144fa387" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00f9fad00507" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9264508280015610234" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fdcf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12286269940603257775" + } + }, + { + "_tag": "ByteArray", + "bytearray": "56b677e22cddd46f64edb36c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1054974734614515766" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9f80ff1bcf93dce8f880a5979fd8669f1ba4e2a3255477ff0480ff47d1cadf144fa387d87d9f4600f9fad005071b80922531f8fee17affd8669f1bfffffffffffffff99f42fdcf1baa81996a603783af4c56b677e22cddd46f64edb36c1b0ea405ee7fb5d036ffffffff", + "cborBytes": [ + 159, 159, 128, 255, 27, 207, 147, 220, 232, 248, 128, 165, 151, 159, 216, 102, 159, 27, 164, 226, 163, 37, 84, + 119, 255, 4, 128, 255, 71, 209, 202, 223, 20, 79, 163, 135, 216, 125, 159, 70, 0, 249, 250, 208, 5, 7, 27, 128, + 146, 37, 49, 248, 254, 225, 122, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 66, 253, + 207, 27, 170, 129, 153, 106, 96, 55, 131, 175, 76, 86, 182, 119, 226, 44, 221, 212, 111, 100, 237, 179, 108, 27, + 14, 164, 5, 238, 127, 181, 208, 54, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3954, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "ByteArray", + "bytearray": "a23c3c677cca47" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3649478387419252051" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4b8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9318844714541415813" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1169971142557071801" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11894454153356906803" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1bbdb672915d12ac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15469599293030603322" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4d7fb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17658584713859836519" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16231816884880783640" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "ByteArray", + "bytearray": "49e05aec3dc18f4333b0" + } + ] + }, + "cborHex": "9f8047a23c3c677cca47bf1b32a58d41f197055342b4b81b81532fe4ff447d851b103c928e2d9279b91ba511970870021133481bbdb672915d12ac1bd6af0e9876b91a3a43e4d7fb1bf50fe53cf1c22a671be142ff74fa81b918ff1bffffffffffffffed4a49e05aec3dc18f4333b0ff", + "cborBytes": [ + 159, 128, 71, 162, 60, 60, 103, 124, 202, 71, 191, 27, 50, 165, 141, 65, 241, 151, 5, 83, 66, 180, 184, 27, 129, + 83, 47, 228, 255, 68, 125, 133, 27, 16, 60, 146, 142, 45, 146, 121, 185, 27, 165, 17, 151, 8, 112, 2, 17, 51, 72, + 27, 189, 182, 114, 145, 93, 18, 172, 27, 214, 175, 14, 152, 118, 185, 26, 58, 67, 228, 215, 251, 27, 245, 15, 229, + 60, 241, 194, 42, 103, 27, 225, 66, 255, 116, 250, 129, 185, 24, 255, 27, 255, 255, 255, 255, 255, 255, 255, 237, + 74, 73, 224, 90, 236, 61, 193, 143, 67, 51, 176, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3955, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9574324261720227600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17692323543950769014" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15659993896739967556" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6070842103256100258" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85f7b20987" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17183092508984672805" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1098211496138396129" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a50f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16530524223369909955" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a25f267752788c9de4887bb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13818272467876947845" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f39f0f205" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62b96898b7a74c450e5308d5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6bfd68ed00cceb14e18857f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13211644450553956427" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16080080118980177499" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3119326725100034648" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "591998061459306347" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4698631786075116423" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6717687033298892336" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7d7dc3105666e8525bf128f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14549181869970101261" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d6209ac19f92986ea1a" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6521702577665544523" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17390766372302665877" + } + } + ] + }, + "cborHex": "9f9fbf1b84ded530683cff1041691bf587c28678773b761bd953797a97f89244ff9f1b543ff6ba6c10ada24585f7b209871bee769b98d4b502251b0f3da189839451e1ffbf433a50f71be5683832dcf416c34c5a25f267752788c9de4887bb1bbfc45d98e15da785455f39f0f2054c62b96898b7a74c450e5308d54cf6bfd68ed00cceb14e18857f4153ff1bb75930a12607884b1bdf27ebac1ba26e5bffbf1b2b4a13212bf85a581b08373319b100776b1b4134e4b70b5dd38741801b5d3a04c3d40736304cd7d7dc3105666e8525bf128f1bc9e913d36c1f140d4a0d6209ac19f92986ea1aff1b5a81bdf0e081114b1bf15869e018e8b895ff", + "cborBytes": [ + 159, 159, 191, 27, 132, 222, 213, 48, 104, 60, 255, 16, 65, 105, 27, 245, 135, 194, 134, 120, 119, 59, 118, 27, + 217, 83, 121, 122, 151, 248, 146, 68, 255, 159, 27, 84, 63, 246, 186, 108, 16, 173, 162, 69, 133, 247, 178, 9, + 135, 27, 238, 118, 155, 152, 212, 181, 2, 37, 27, 15, 61, 161, 137, 131, 148, 81, 225, 255, 191, 67, 58, 80, 247, + 27, 229, 104, 56, 50, 220, 244, 22, 195, 76, 90, 37, 242, 103, 117, 39, 136, 201, 222, 72, 135, 187, 27, 191, 196, + 93, 152, 225, 93, 167, 133, 69, 95, 57, 240, 242, 5, 76, 98, 185, 104, 152, 183, 167, 76, 69, 14, 83, 8, 213, 76, + 246, 191, 214, 142, 208, 12, 206, 177, 78, 24, 133, 127, 65, 83, 255, 27, 183, 89, 48, 161, 38, 7, 136, 75, 27, + 223, 39, 235, 172, 27, 162, 110, 91, 255, 191, 27, 43, 74, 19, 33, 43, 248, 90, 88, 27, 8, 55, 51, 25, 177, 0, + 119, 107, 27, 65, 52, 228, 183, 11, 93, 211, 135, 65, 128, 27, 93, 58, 4, 195, 212, 7, 54, 48, 76, 215, 215, 220, + 49, 5, 102, 110, 133, 37, 191, 18, 143, 27, 201, 233, 19, 211, 108, 31, 20, 13, 74, 13, 98, 9, 172, 25, 249, 41, + 134, 234, 26, 255, 27, 90, 129, 189, 240, 224, 129, 17, 75, 27, 241, 88, 105, 224, 24, 232, 184, 149, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3956, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14004002792770013232" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8149519491912222888" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14811083254627158021" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "781a57e38a7b5b73a679" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00dbac36005d70d1f06fd2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "236c0af0a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f19" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11443670629544809655" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "563e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da0c23873a117ace243aecdd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5da12e31a8bf377f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4427" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "caf5186e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9189af222e2caa86" + } + } + ] + } + ] + }, + "cborHex": "9f809f1bc2583657f8a288301b7118e8ccc58cc8a81bcd8b89bf62c9c805ff9f4a781a57e38a7b5b73a679ffbf4b00dbac36005d70d1f06fd245236c0af0a2422f191b9ed015ce7096d4b742563e4cda0c23873a117ace243aecdd485da12e31a8bf377f42442744caf5186e489189af222e2caa86ffff", + "cborBytes": [ + 159, 128, 159, 27, 194, 88, 54, 87, 248, 162, 136, 48, 27, 113, 24, 232, 204, 197, 140, 200, 168, 27, 205, 139, + 137, 191, 98, 201, 200, 5, 255, 159, 74, 120, 26, 87, 227, 138, 123, 91, 115, 166, 121, 255, 191, 75, 0, 219, 172, + 54, 0, 93, 112, 209, 240, 111, 210, 69, 35, 108, 10, 240, 162, 66, 47, 25, 27, 158, 208, 21, 206, 112, 150, 212, + 183, 66, 86, 62, 76, 218, 12, 35, 135, 58, 17, 122, 206, 36, 58, 236, 221, 72, 93, 161, 46, 49, 168, 191, 55, 127, + 66, 68, 39, 68, 202, 245, 24, 110, 72, 145, 137, 175, 34, 46, 44, 170, 134, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3957, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1010f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9991538278836549966" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "413a229d491e77cecd07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "319594588454147005" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "c47f6220532d88" + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9fbf431010f51b8aa913208dc5394e4a413a229d491e77cecd071b046f6d95bcf253bdff47c47f6220532d88a0ff", + "cborBytes": [ + 159, 191, 67, 16, 16, 245, 27, 138, 169, 19, 32, 141, 197, 57, 78, 74, 65, 58, 34, 157, 73, 30, 119, 206, 205, 7, + 27, 4, 111, 109, 149, 188, 242, 83, 189, 255, 71, 196, 127, 98, 32, 83, 45, 136, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3958, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "39b2f261" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "187e88c4208e22440e72" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15857923657584229049" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ca271e0ded99f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6183c55387c6b73f6da701" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1696737776789301674" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ca9c99dcb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16485516816643147955" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66984223a4c59e9f44671de3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c87b4f8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66c7855bde2aa19094a60b" + } + } + ] + } + ] + }, + "cborHex": "9f4439b2f261bf4a187e88c4208e22440e721bdc12a98c35923ab9475ca271e0ded99f41b94b6183c55387c6b73f6da7011b178c0604ae8329aa459ca9c99dcb1be4c8523362be48b342ae104c66984223a4c59e9f44671de344c87b4f8f4b66c7855bde2aa19094a60bffff", + "cborBytes": [ + 159, 68, 57, 178, 242, 97, 191, 74, 24, 126, 136, 196, 32, 142, 34, 68, 14, 114, 27, 220, 18, 169, 140, 53, 146, + 58, 185, 71, 92, 162, 113, 224, 222, 217, 159, 65, 185, 75, 97, 131, 197, 83, 135, 198, 183, 63, 109, 167, 1, 27, + 23, 140, 6, 4, 174, 131, 41, 170, 69, 156, 169, 201, 157, 203, 27, 228, 200, 82, 51, 98, 190, 72, 179, 66, 174, + 16, 76, 102, 152, 66, 35, 164, 197, 158, 159, 68, 103, 29, 227, 68, 200, 123, 79, 143, 75, 102, 199, 133, 91, 222, + 42, 161, 144, 148, 166, 11, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3959, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10205666892076503925" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2d" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7369772926128666425" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8d61d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13595084948669975994" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "791126783536936183" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19170cef9a641fa736" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2673205714981540899" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d04acb1ca66605a1d0526" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7626484865754256781" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10401917591749104050" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7937303553084378992" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11330403658535990440" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9530355163828438565" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b70f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14996544589997722408" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9704362829982297457" + } + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4500918550330188682" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a133e503ec80ba1c" + }, + { + "_tag": "ByteArray", + "bytearray": "d434637f0866" + }, + { + "_tag": "ByteArray", + "bytearray": "c157" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18012263257521757206" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9822604159982532398" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6134538677622146793" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4196061535805879294" + } + }, + { + "_tag": "ByteArray", + "bytearray": "98f82d090d492b9f5baf3622" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4583278058932913241" + } + }, + { + "_tag": "ByteArray", + "bytearray": "649daed9f90966" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9988654949132715828" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "561dc2" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0f360b5c547687" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3471354110346894105" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12530141165823879099" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17643768695833368911" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6854709365381104091" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "350a501958770c7ee0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15601443763360521608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d8296a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dda866354a721fe7367d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6a16ef2064e20" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17702723865392813515" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9ffae2212a6edf89d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17564915014391531568" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f1b8da1cff7662f53759f412d9f1b6646b16df930b739438d61d01bbcab71bb20bbcdbaffbf1b0afaa59e390434f74919170cef9a641fa7361b2519226f3d04d4234b2d04acb1ca66605a1d05261b69d6b7941c2cd58d1b905b08f01f1791b21b6e26f787240a4f701b9d3dae18acd2f4a81b84429f870b4dc62542b70f1bd01e6dd9791ecb281b86acd293f4996d71ffd8669f1b3e7679931b65a38a9f48a133e503ec80ba1c46d434637f086642c1571bf9f869ffe9679c161b8850e670ed08772effffffd8669f1b5522426cd49006e99f9f1b3a3b67bc3163b3fe4c98f82d090d492b9f5baf36221b3f9b131c8189c45947649daed9f90966ffd8669f1b8a9ed4c10b00c7349f43561dc2ffff9f470f360b5c5476871b302cba2bdcd19b191bade40100b66e67bb1bf4db4225ee4e194fffbf41281b5f20d1d99a1581db49350a501958770c7ee01bd88376715a565d88444d8296a44adda866354a721fe7367d47c6a16ef2064e201bf5acb590019195cb49c9ffae2212a6edf89d1bf3c31d2486bb8830ffffffff", + "cborBytes": [ + 159, 27, 141, 161, 207, 247, 102, 47, 83, 117, 159, 65, 45, 159, 27, 102, 70, 177, 109, 249, 48, 183, 57, 67, 141, + 97, 208, 27, 188, 171, 113, 187, 32, 187, 205, 186, 255, 191, 27, 10, 250, 165, 158, 57, 4, 52, 247, 73, 25, 23, + 12, 239, 154, 100, 31, 167, 54, 27, 37, 25, 34, 111, 61, 4, 212, 35, 75, 45, 4, 172, 177, 202, 102, 96, 90, 29, 5, + 38, 27, 105, 214, 183, 148, 28, 44, 213, 141, 27, 144, 91, 8, 240, 31, 23, 145, 178, 27, 110, 38, 247, 135, 36, + 10, 79, 112, 27, 157, 61, 174, 24, 172, 210, 244, 168, 27, 132, 66, 159, 135, 11, 77, 198, 37, 66, 183, 15, 27, + 208, 30, 109, 217, 121, 30, 203, 40, 27, 134, 172, 210, 147, 244, 153, 109, 113, 255, 216, 102, 159, 27, 62, 118, + 121, 147, 27, 101, 163, 138, 159, 72, 161, 51, 229, 3, 236, 128, 186, 28, 70, 212, 52, 99, 127, 8, 102, 66, 193, + 87, 27, 249, 248, 105, 255, 233, 103, 156, 22, 27, 136, 80, 230, 112, 237, 8, 119, 46, 255, 255, 255, 216, 102, + 159, 27, 85, 34, 66, 108, 212, 144, 6, 233, 159, 159, 27, 58, 59, 103, 188, 49, 99, 179, 254, 76, 152, 248, 45, 9, + 13, 73, 43, 159, 91, 175, 54, 34, 27, 63, 155, 19, 28, 129, 137, 196, 89, 71, 100, 157, 174, 217, 249, 9, 102, + 255, 216, 102, 159, 27, 138, 158, 212, 193, 11, 0, 199, 52, 159, 67, 86, 29, 194, 255, 255, 159, 71, 15, 54, 11, + 92, 84, 118, 135, 27, 48, 44, 186, 43, 220, 209, 155, 25, 27, 173, 228, 1, 0, 182, 110, 103, 187, 27, 244, 219, + 66, 37, 238, 78, 25, 79, 255, 191, 65, 40, 27, 95, 32, 209, 217, 154, 21, 129, 219, 73, 53, 10, 80, 25, 88, 119, + 12, 126, 224, 27, 216, 131, 118, 113, 90, 86, 93, 136, 68, 77, 130, 150, 164, 74, 221, 168, 102, 53, 74, 114, 31, + 231, 54, 125, 71, 198, 161, 110, 242, 6, 78, 32, 27, 245, 172, 181, 144, 1, 145, 149, 203, 73, 201, 255, 174, 34, + 18, 166, 237, 248, 157, 27, 243, 195, 29, 36, 134, 187, 136, 48, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3960, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "53aa070140202a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9237298074199947738" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3746461748388094514" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6355036250859928168" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11764012548137203519" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f4753aa070140202a1b803179a83d1679da9f1b33fe1b1c4d42e232d8669f1b58319fccbb3c7a689f1ba3422b1588f4b73fffffffff", + "cborBytes": [ + 159, 71, 83, 170, 7, 1, 64, 32, 42, 27, 128, 49, 121, 168, 61, 22, 121, 218, 159, 27, 51, 254, 27, 28, 77, 66, + 226, 50, 216, 102, 159, 27, 88, 49, 159, 204, 187, 60, 122, 104, 159, 27, 163, 66, 43, 21, 136, 244, 183, 63, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3961, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5492086875361710149" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2366722907892543436" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13957794035145861574" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6769401325461460621" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "962be17f9627bf9ffcdfa2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2878210290622399353" + } + }, + { + "_tag": "List", + "list": [] + } + ] + } + ] + }, + "cborHex": "9fd8669f1b4c37cfea318510459f1b20d849f1feb6efcc1bc1b40bb930ef69c61b5df1bea3c230568dffff9f4b962be17f9627bf9ffcdfa21b27f17502896c037980ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 76, 55, 207, 234, 49, 133, 16, 69, 159, 27, 32, 216, 73, 241, 254, 182, 239, 204, 27, 193, + 180, 11, 185, 48, 239, 105, 198, 27, 93, 241, 190, 163, 194, 48, 86, 141, 255, 255, 159, 75, 150, 43, 225, 127, + 150, 39, 191, 159, 252, 223, 162, 27, 39, 241, 117, 2, 137, 108, 3, 121, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3962, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4723951420822873715" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15565432888068726100" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14277538253546977242" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11d209" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6726a4e6a99c479d8ec42a8c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35084f9ba5dca936" + } + } + ] + } + ] + }, + "cborHex": "9fbf1b418ed8c9e65966731bd80386be1484dd541bc62401655db7f7da4311d2094c6726a4e6a99c479d8ec42a8c4835084f9ba5dca936ffff", + "cborBytes": [ + 159, 191, 27, 65, 142, 216, 201, 230, 89, 102, 115, 27, 216, 3, 134, 190, 20, 132, 221, 84, 27, 198, 36, 1, 101, + 93, 183, 247, 218, 67, 17, 210, 9, 76, 103, 38, 164, 230, 169, 156, 71, 157, 142, 196, 42, 140, 72, 53, 8, 79, + 155, 165, 220, 169, 54, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3963, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a05c607" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9715b0bd2f1823d899fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20124f9da4f3b694ec9ecb99" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5513621680217529124" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba6918a34f69a968" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7cbfa4dda" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12001221126434989632" + } + } + } + ] + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "2545f52411b4935073" + }, + { + "_tag": "ByteArray", + "bytearray": "1c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "274587d912fe92f18a7c8279" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15024135116073019558" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5667354011915104903" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f" + }, + { + "_tag": "ByteArray", + "bytearray": "6cd49c8f36b3d0b0fe3d7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18339470785158621931" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4380967279204541119" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12825486736074802076" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2aa461bc848cf10b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18156291707750652901" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d724b74e50497" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a27611fd8117df91" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1817083772054157855" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1750654847313345946" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4051997260447505751" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82af3b83cf975092ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5431972761746952597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14996898463838126809" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13647721441365405930" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16091094529756529707" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2083981153538309938" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5626600459888637951" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a2e9fe1c7f84" + }, + { + "_tag": "ByteArray", + "bytearray": "478e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9763179793505043306" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf440a05c6074a9715b0bd2f1823d899fc4c20124f9da4f3b694ec9ecb991b4c8451b4ab421b24418548ba6918a34f69a96845b7cbfa4dda1ba68ce70780122640ffff492545f52411b4935073411c9f4c274587d912fe92f18a7c8279d8669f1bd08073496b0128a69f1b4ea67c726895b287416f4b6cd49c8f36b3d0b0fe3d7c1bfe82e3832e08aaeb1b3ccc52877198a2bfffff1bb1fd483bef39039cbf482aa461bc848cf10b1bfbf81b1caed91be5475d724b74e5049748a27611fd8117df91ffbf1b19379410386a3a1f1b184b934eea6d7d9a1b383b960a3bd45d574982af3b83cf975092ff1b4b623e726d8651951bd01fafb225ac42d91bbd6672579a1130ea1bdf4f0d38755e842bffff9f1b1cebc9d157427f32d8669f1b4e15b34ea8b637ff9f46a2e9fe1c7f8442478e1b877dc84b6e23c36affffffff", + "cborBytes": [ + 159, 159, 191, 68, 10, 5, 198, 7, 74, 151, 21, 176, 189, 47, 24, 35, 216, 153, 252, 76, 32, 18, 79, 157, 164, 243, + 182, 148, 236, 158, 203, 153, 27, 76, 132, 81, 180, 171, 66, 27, 36, 65, 133, 72, 186, 105, 24, 163, 79, 105, 169, + 104, 69, 183, 203, 250, 77, 218, 27, 166, 140, 231, 7, 128, 18, 38, 64, 255, 255, 73, 37, 69, 245, 36, 17, 180, + 147, 80, 115, 65, 28, 159, 76, 39, 69, 135, 217, 18, 254, 146, 241, 138, 124, 130, 121, 216, 102, 159, 27, 208, + 128, 115, 73, 107, 1, 40, 166, 159, 27, 78, 166, 124, 114, 104, 149, 178, 135, 65, 111, 75, 108, 212, 156, 143, + 54, 179, 208, 176, 254, 61, 124, 27, 254, 130, 227, 131, 46, 8, 170, 235, 27, 60, 204, 82, 135, 113, 152, 162, + 191, 255, 255, 27, 177, 253, 72, 59, 239, 57, 3, 156, 191, 72, 42, 164, 97, 188, 132, 140, 241, 11, 27, 251, 248, + 27, 28, 174, 217, 27, 229, 71, 93, 114, 75, 116, 229, 4, 151, 72, 162, 118, 17, 253, 129, 23, 223, 145, 255, 191, + 27, 25, 55, 148, 16, 56, 106, 58, 31, 27, 24, 75, 147, 78, 234, 109, 125, 154, 27, 56, 59, 150, 10, 59, 212, 93, + 87, 73, 130, 175, 59, 131, 207, 151, 80, 146, 255, 27, 75, 98, 62, 114, 109, 134, 81, 149, 27, 208, 31, 175, 178, + 37, 172, 66, 217, 27, 189, 102, 114, 87, 154, 17, 48, 234, 27, 223, 79, 13, 56, 117, 94, 132, 43, 255, 255, 159, + 27, 28, 235, 201, 209, 87, 66, 127, 50, 216, 102, 159, 27, 78, 21, 179, 78, 168, 182, 55, 255, 159, 70, 162, 233, + 254, 28, 127, 132, 66, 71, 142, 27, 135, 125, 200, 75, 110, 35, 195, 106, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3964, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13254426932054754907" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1360904088105054353" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12317379732535941917" + } + }, + { + "_tag": "ByteArray", + "bytearray": "35af114535" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6002877365147634943" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16578225360053185070" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9394940647640319616" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5308608787861017301" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10520428963491943512" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6807832992694047886" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9572249491291189569" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16795073464365084879" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12341310020205901274" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9346330975323591829" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4778240482005925305" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "e3ea3d3fa6" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3068231757474426519" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16428485280773391584" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15167241569008584502" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b8d532e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11749398989997709274" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "85a599e789" + }, + { + "_tag": "ByteArray", + "bytearray": "2d3997" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5713427643101106966" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12247351269533466964" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "3d8f34d080de832150" + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "201c02adf6f0dfc2f5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15998887971952900492" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "82fddaa33934" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6493013352722998568" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a60404011b658e2b6b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a70712f90871164" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1155990365470711209" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bb7f12f11da7e865b9fd8669f1b12e2e70ec8e0f0919f1baaf01f9b41669b1d4535af1145351b534e8128b3db8cff41051be611b0213857aa2effff9f1b826188be147ac6801b49abf790fbf912d5ff9f1b9200126715ab14581b5e7a480993b6948e1b84d7763245d331411be9141654ec11f0cfffd8669f1bab452413895775da9f1b81b4d680c96494951b424fb866f55abdb9ffff45e3ea3d3fa6ffff9fd8669f1b2a948c86f8d5ee979f1be3fdb4522e3b44e01bd27cddd8f74b8736444b8d532e1ba30e4021632597daffff9f4585a599e789432d39971b4f4a2c2b9cf053161ba9f7551723f8c154ff493d8f34d080de832150ff49201c02adf6f0dfc2f51bde0777d84185b98c9f4682fddaa33934bf1b5a1bd13e2aec252849a60404011b658e2b6b481a70712f908711641b100ae71cd9a7dda9ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 183, 241, 47, 17, 218, 126, 134, 91, 159, 216, 102, 159, 27, 18, 226, 231, 14, 200, 224, + 240, 145, 159, 27, 170, 240, 31, 155, 65, 102, 155, 29, 69, 53, 175, 17, 69, 53, 27, 83, 78, 129, 40, 179, 219, + 140, 255, 65, 5, 27, 230, 17, 176, 33, 56, 87, 170, 46, 255, 255, 159, 27, 130, 97, 136, 190, 20, 122, 198, 128, + 27, 73, 171, 247, 144, 251, 249, 18, 213, 255, 159, 27, 146, 0, 18, 103, 21, 171, 20, 88, 27, 94, 122, 72, 9, 147, + 182, 148, 142, 27, 132, 215, 118, 50, 69, 211, 49, 65, 27, 233, 20, 22, 84, 236, 17, 240, 207, 255, 216, 102, 159, + 27, 171, 69, 36, 19, 137, 87, 117, 218, 159, 27, 129, 180, 214, 128, 201, 100, 148, 149, 27, 66, 79, 184, 102, + 245, 90, 189, 185, 255, 255, 69, 227, 234, 61, 63, 166, 255, 255, 159, 216, 102, 159, 27, 42, 148, 140, 134, 248, + 213, 238, 151, 159, 27, 227, 253, 180, 82, 46, 59, 68, 224, 27, 210, 124, 221, 216, 247, 75, 135, 54, 68, 75, 141, + 83, 46, 27, 163, 14, 64, 33, 99, 37, 151, 218, 255, 255, 159, 69, 133, 165, 153, 231, 137, 67, 45, 57, 151, 27, + 79, 74, 44, 43, 156, 240, 83, 22, 27, 169, 247, 85, 23, 35, 248, 193, 84, 255, 73, 61, 143, 52, 208, 128, 222, + 131, 33, 80, 255, 73, 32, 28, 2, 173, 246, 240, 223, 194, 245, 27, 222, 7, 119, 216, 65, 133, 185, 140, 159, 70, + 130, 253, 218, 163, 57, 52, 191, 27, 90, 27, 209, 62, 42, 236, 37, 40, 73, 166, 4, 4, 1, 27, 101, 142, 43, 107, + 72, 26, 112, 113, 47, 144, 135, 17, 100, 27, 16, 10, 231, 28, 217, 167, 221, 169, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3965, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5aaa" + }, + { + "_tag": "ByteArray", + "bytearray": "df" + } + ] + }, + "cborHex": "9f425aaa41dfff", + "cborBytes": [159, 66, 90, 170, 65, 223, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3966, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07fdf5fef32c07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67ddad6e0fc636e6" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "dd65cb2591283427256251ab" + } + ] + }, + "cborHex": "9fbf4707fdf5fef32c074867ddad6e0fc636e6ff4cdd65cb2591283427256251abff", + "cborBytes": [ + 159, 191, 71, 7, 253, 245, 254, 243, 44, 7, 72, 103, 221, 173, 110, 15, 198, 54, 230, 255, 76, 221, 101, 203, 37, + 145, 40, 52, 39, 37, 98, 81, 171, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3967, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17684912029036993259" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f66d8e215e1b" + }, + { + "_tag": "ByteArray", + "bytearray": "d2f4b79496205cf830b4d619" + }, + { + "_tag": "ByteArray", + "bytearray": "e444" + }, + { + "_tag": "ByteArray", + "bytearray": "1b3d52d542b235953240" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10571183671671940343" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1921714158383313437" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f1" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4d1daa35" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "58c1e754049564" + }, + { + "_tag": "ByteArray", + "bytearray": "35c6877e00a8" + }, + { + "_tag": "ByteArray", + "bytearray": "d1" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4040990844859513374" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15154081498070924331" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afb7d72a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "411fe8ff7a79" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd71cc65b7727169" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6271010a6dc0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a384" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76010b4cf3f7abca1eb34d71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4832733068663835305" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0098e91c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1026337185796137090" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0896166dd403f4a105" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0b9d4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21d14f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "206d4b048bcf63fe92" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9633f34c221ccd31" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5504739618740809110" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf13" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7681821423087218500" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1088260170105337161" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6a37" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17310414708394439464" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9878292301544216803" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb07" + }, + { + "_tag": "ByteArray", + "bytearray": "deb00704fc0004fb0a06f900" + }, + { + "_tag": "ByteArray", + "bytearray": "3eaa04" + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1529686735083688799" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11665c50a67f3416b7bd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2385826048953895014" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6279168897618010519" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6085532421193519250" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c170940819a42d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12112420470595864915" + } + } + } + ] + } + ] + }, + "cborHex": "9f9f9f1bf56d6dcaaec85aeb46f66d8e215e1b4cd2f4b79496205cf830b4d61942e4444a1b3d52d542b235953240ff1b92b4638a756a64f79f1b1aab4cd86a46b21d41f1ffff9f444d1daa359f4758c1e7540495644635c6877e00a841d1ff1b38147bc36874fa1effd8669f1bd24e1cd52dd63c2b9fbf412b44afb7d72a46411fe8ff7a7948cd71cc65b7727169466271010a6dc042a3844c76010b4cf3f7abca1eb34d711b4311511efbfdcaa9ffbf440098e91c1b0e3e483b93272082490896166dd403f4a10543c0b9d44321d14f49206d4b048bcf63fe92489633f34c221ccd31410641ca1b4c64c3849410ad9642cf131b6a9b4fe25f196f44ff9f1b0f1a46dbde55b549426a371bf03af276788c33281b8916be82c504d8e3ff1bfffffffffffffff4d9050c9f42fb074cdeb00704fc0004fb0a06f900433eaa04ffffffbf1b153a89fb1e4a535f4a11665c50a67f3416b7bd1b211c28269fc548661b572416d80b33e19741a11b5474277e9a5cd09247c170940819a42d1ba817f63e60094953ffff", + "cborBytes": [ + 159, 159, 159, 27, 245, 109, 109, 202, 174, 200, 90, 235, 70, 246, 109, 142, 33, 94, 27, 76, 210, 244, 183, 148, + 150, 32, 92, 248, 48, 180, 214, 25, 66, 228, 68, 74, 27, 61, 82, 213, 66, 178, 53, 149, 50, 64, 255, 27, 146, 180, + 99, 138, 117, 106, 100, 247, 159, 27, 26, 171, 76, 216, 106, 70, 178, 29, 65, 241, 255, 255, 159, 68, 77, 29, 170, + 53, 159, 71, 88, 193, 231, 84, 4, 149, 100, 70, 53, 198, 135, 126, 0, 168, 65, 209, 255, 27, 56, 20, 123, 195, + 104, 116, 250, 30, 255, 216, 102, 159, 27, 210, 78, 28, 213, 45, 214, 60, 43, 159, 191, 65, 43, 68, 175, 183, 215, + 42, 70, 65, 31, 232, 255, 122, 121, 72, 205, 113, 204, 101, 183, 114, 113, 105, 70, 98, 113, 1, 10, 109, 192, 66, + 163, 132, 76, 118, 1, 11, 76, 243, 247, 171, 202, 30, 179, 77, 113, 27, 67, 17, 81, 30, 251, 253, 202, 169, 255, + 191, 68, 0, 152, 233, 28, 27, 14, 62, 72, 59, 147, 39, 32, 130, 73, 8, 150, 22, 109, 212, 3, 244, 161, 5, 67, 192, + 185, 212, 67, 33, 209, 79, 73, 32, 109, 75, 4, 139, 207, 99, 254, 146, 72, 150, 51, 243, 76, 34, 28, 205, 49, 65, + 6, 65, 202, 27, 76, 100, 195, 132, 148, 16, 173, 150, 66, 207, 19, 27, 106, 155, 79, 226, 95, 25, 111, 68, 255, + 159, 27, 15, 26, 70, 219, 222, 85, 181, 73, 66, 106, 55, 27, 240, 58, 242, 118, 120, 140, 51, 40, 27, 137, 22, + 190, 130, 197, 4, 216, 227, 255, 27, 255, 255, 255, 255, 255, 255, 255, 244, 217, 5, 12, 159, 66, 251, 7, 76, 222, + 176, 7, 4, 252, 0, 4, 251, 10, 6, 249, 0, 67, 62, 170, 4, 255, 255, 255, 191, 27, 21, 58, 137, 251, 30, 74, 83, + 95, 74, 17, 102, 92, 80, 166, 127, 52, 22, 183, 189, 27, 33, 28, 40, 38, 159, 197, 72, 102, 27, 87, 36, 22, 216, + 11, 51, 225, 151, 65, 161, 27, 84, 116, 39, 126, 154, 92, 208, 146, 71, 193, 112, 148, 8, 25, 164, 45, 27, 168, + 23, 246, 62, 96, 9, 73, 83, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3968, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13513141203776832651" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "27b7dd3a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "240460372733986874" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e867189a4306194a8b93f3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2707566573637389209" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2579596318403893548" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1845d17323521d5bc325" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6737813396026353727" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13967169420428501429" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13647917802576898685" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6899029451366276214" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "30a9336cf425" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13503945559222173756" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2852450647963269468" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18042132835099690673" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4213179915076082986" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1440189331882162060" + }, + "fields": [] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "783477689630965584" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4763962137844184912" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2459471883802992661" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ad284cc4c41a0e151168c7e" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "5a7fc5640a48b849829d" + } + ] + }, + "cborHex": "9fd8669f1bbb88525442d0048b9f9f4427b7dd3a1b0356496f5b5e083a4be867189a4306194a8b93f31b259335741360cb99ffd8669f1b23cc912f2e5e992c9f4a1845d17323521d5bc3251b5d818595d104e83f1bc1d55a962e56e1b5ffffd8669f1bbd6724ee82536a7d9f1b5fbe46bbbfa51c76ffff9f4630a9336cf4251bbb67a6f06ba6c03c1b2795f0c05b2ef95c1bfa628838e28746b11b3a7838cf74eb9d2affd8669f1b13fc94912024b78c80ffffffbf1b0adf78cec3e5bf501b421cfe52e59cf7501b2221cca5c12360154c7ad284cc4c41a0e151168c7eff4a5a7fc5640a48b849829dff", + "cborBytes": [ + 159, 216, 102, 159, 27, 187, 136, 82, 84, 66, 208, 4, 139, 159, 159, 68, 39, 183, 221, 58, 27, 3, 86, 73, 111, 91, + 94, 8, 58, 75, 232, 103, 24, 154, 67, 6, 25, 74, 139, 147, 243, 27, 37, 147, 53, 116, 19, 96, 203, 153, 255, 216, + 102, 159, 27, 35, 204, 145, 47, 46, 94, 153, 44, 159, 74, 24, 69, 209, 115, 35, 82, 29, 91, 195, 37, 27, 93, 129, + 133, 149, 209, 4, 232, 63, 27, 193, 213, 90, 150, 46, 86, 225, 181, 255, 255, 216, 102, 159, 27, 189, 103, 36, + 238, 130, 83, 106, 125, 159, 27, 95, 190, 70, 187, 191, 165, 28, 118, 255, 255, 159, 70, 48, 169, 51, 108, 244, + 37, 27, 187, 103, 166, 240, 107, 166, 192, 60, 27, 39, 149, 240, 192, 91, 46, 249, 92, 27, 250, 98, 136, 56, 226, + 135, 70, 177, 27, 58, 120, 56, 207, 116, 235, 157, 42, 255, 216, 102, 159, 27, 19, 252, 148, 145, 32, 36, 183, + 140, 128, 255, 255, 255, 191, 27, 10, 223, 120, 206, 195, 229, 191, 80, 27, 66, 28, 254, 82, 229, 156, 247, 80, + 27, 34, 33, 204, 165, 193, 35, 96, 21, 76, 122, 210, 132, 204, 76, 65, 160, 225, 81, 22, 140, 126, 255, 74, 90, + 127, 197, 100, 10, 72, 184, 73, 130, 157, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3969, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bddd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64db11ef20839b0beb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8afd47274" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0e081a0803b68" + } + } + ] + } + ] + }, + "cborHex": "9fbf42bddd4964db11ef20839b0beb45c8afd4727447b0e081a0803b68ffff", + "cborBytes": [ + 159, 191, 66, 189, 221, 73, 100, 219, 17, 239, 32, 131, 155, 11, 235, 69, 200, 175, 212, 114, 116, 71, 176, 224, + 129, 160, 128, 59, 104, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3970, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9dfdfc01" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7206479628014812025" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2497882972079545372" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4696850219308410229" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "245998600716277607" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6935285890867258726" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4468843170125881022" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "03d7fa60" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1856762721530449635" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12868279839931782045" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a4b8b381" + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "10418d0b6552" + }, + { + "_tag": "ByteArray", + "bytearray": "beafbfbd7b2743d428039d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8725580095755165353" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17594583081754443539" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17172380327641483368" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7746391271208104982" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1811246909737799433" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9988420902247272866" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7947810466202449448" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10069794503974206973" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5142803741606420360" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "447183708796860262" + } + }, + { + "_tag": "ByteArray", + "bytearray": "67171096aa" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4801504240463809378" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "688cd6a9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9833530285641162265" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12134450146267469629" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1abbcefd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14279636138719322204" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ae817c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17963537518393319567" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "085769478a324388493c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "913c16" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bda" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3937623774466626076" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9398cd0c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "144360533363019030" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1fe0bbbbbdda55abdc2924f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9980c737dc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cce9e29f27fb30" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16734903381105173053" + } + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f449dfdfc01d8669f1b64028f0a44e97b7980ffd87b9f9f1b22aa4354294c5c1c1b412e9063b517e5751b0369f66c8aefd7671b603f15c5e4ebe5661b3e04852fb0489ebeff4403d7fa609f1b19c48bdb91028ee31bb2955055d974539d44a4b8b381ffd905049f4610418d0b65524bbeafbfbd7b2743d428039d1b79177cddf2b49ea91bf42c8417bf123f13ff1bee508cecc0fa0868ff9fbf1b6b80b5d1ab8bb4161b1922d777cf720f091b8a9dffe3c18911a21b6e4c4b827c20f6281b8bbf18bfd2903dfd1b475ee8c158001f88ff1b0634b736c02db7664567171096aabf1b42a25eaad0608b6244688cd6a91b8877b7b1cbafde191ba8663a1df0f5973d441abbcefd1bc62b75695232205c444ae817c11bf94b4e32b53c608fffbf4a085769478a324388493c43913c16421bda1b36a53ff5e037521c449398cd0c1b0200df23e6b04d164ca1fe0bbbbbdda55abdc2924f459980c737dc47cce9e29f27fb301be83e51f5b541e23dffffff", + "cborBytes": [ + 159, 68, 157, 253, 252, 1, 216, 102, 159, 27, 100, 2, 143, 10, 68, 233, 123, 121, 128, 255, 216, 123, 159, 159, + 27, 34, 170, 67, 84, 41, 76, 92, 28, 27, 65, 46, 144, 99, 181, 23, 229, 117, 27, 3, 105, 246, 108, 138, 239, 215, + 103, 27, 96, 63, 21, 197, 228, 235, 229, 102, 27, 62, 4, 133, 47, 176, 72, 158, 190, 255, 68, 3, 215, 250, 96, + 159, 27, 25, 196, 139, 219, 145, 2, 142, 227, 27, 178, 149, 80, 85, 217, 116, 83, 157, 68, 164, 184, 179, 129, + 255, 217, 5, 4, 159, 70, 16, 65, 141, 11, 101, 82, 75, 190, 175, 191, 189, 123, 39, 67, 212, 40, 3, 157, 27, 121, + 23, 124, 221, 242, 180, 158, 169, 27, 244, 44, 132, 23, 191, 18, 63, 19, 255, 27, 238, 80, 140, 236, 192, 250, 8, + 104, 255, 159, 191, 27, 107, 128, 181, 209, 171, 139, 180, 22, 27, 25, 34, 215, 119, 207, 114, 15, 9, 27, 138, + 157, 255, 227, 193, 137, 17, 162, 27, 110, 76, 75, 130, 124, 32, 246, 40, 27, 139, 191, 24, 191, 210, 144, 61, + 253, 27, 71, 94, 232, 193, 88, 0, 31, 136, 255, 27, 6, 52, 183, 54, 192, 45, 183, 102, 69, 103, 23, 16, 150, 170, + 191, 27, 66, 162, 94, 170, 208, 96, 139, 98, 68, 104, 140, 214, 169, 27, 136, 119, 183, 177, 203, 175, 222, 25, + 27, 168, 102, 58, 29, 240, 245, 151, 61, 68, 26, 187, 206, 253, 27, 198, 43, 117, 105, 82, 50, 32, 92, 68, 74, + 232, 23, 193, 27, 249, 75, 78, 50, 181, 60, 96, 143, 255, 191, 74, 8, 87, 105, 71, 138, 50, 67, 136, 73, 60, 67, + 145, 60, 22, 66, 27, 218, 27, 54, 165, 63, 245, 224, 55, 82, 28, 68, 147, 152, 205, 12, 27, 2, 0, 223, 35, 230, + 176, 77, 22, 76, 161, 254, 11, 187, 187, 221, 165, 90, 189, 194, 146, 79, 69, 153, 128, 199, 55, 220, 71, 204, + 233, 226, 159, 39, 251, 48, 27, 232, 62, 81, 245, 181, 65, 226, 61, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3971, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aa99d82c0fb0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8476022437871875819" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5443951962552958928" + } + }, + { + "_tag": "ByteArray", + "bytearray": "892d80460b60" + }, + { + "_tag": "ByteArray", + "bytearray": "eeaba8088e8f" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18262585528533338492" + } + } + ] + }, + "cborHex": "9f46aa99d82c0fb01b75a0e17fd597f6eba09f1b4b8ccd7776427fd046892d80460b6046eeaba8088e8fff1bfd71bcc7646b497cff", + "cborBytes": [ + 159, 70, 170, 153, 216, 44, 15, 176, 27, 117, 160, 225, 127, 213, 151, 246, 235, 160, 159, 27, 75, 140, 205, 119, + 118, 66, 127, 208, 70, 137, 45, 128, 70, 11, 96, 70, 238, 171, 168, 8, 142, 143, 255, 27, 253, 113, 188, 199, 100, + 107, 73, 124, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3972, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18350185266931427760" + } + } + ] + }, + "cborHex": "9f1bfea8f446de0de9b0ff", + "cborBytes": [159, 27, 254, 168, 244, 70, 222, 13, 233, 176, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3973, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15036726128118059121" + } + } + ] + }, + "cborHex": "9f1bd0ad2ebedb4fd071ff", + "cborBytes": [159, 27, 208, 173, 46, 190, 219, 79, 208, 113, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3974, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3990841199359829245" + } + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + "cborHex": "9f1b376250ed2ad624fda0ff", + "cborBytes": [159, 27, 55, 98, 80, 237, 42, 214, 36, 253, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3975, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "20e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3910814460355722443" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "4b8214ee" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2be63001" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10965724019106086689" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c709987af" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1526100714886833029" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0d70dde1d76da0aa3b11b21" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a09601bf5a52b0c414" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e880914018bf2377" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17316266226424966840" + } + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1435178866618099891" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3818430685462406728" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12958367849473322438" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10287921716318929296" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17792815767143954570" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17071460950399371915" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13c26da49dd79f7a5bdaf6b5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17447850101008388575" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "385571459662350131" + } + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8397553432301127793" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4557276983154732077" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fcd6f23ff7103bff9952" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16064469171602806403" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f02bf4220e61b3646010803f6bccbff444b8214ee9f09a0bf442be630011b982e13e57fc97f21452c709987af1b152dcc83ba4ca3854cc0d70dde1d76da0aa3b11b2149a09601bf5a52b0c41448e880914018bf23771bf04fbc632e276eb8ff1b13eac79345eb68b3bf1b34fdca7a3e7026481bb3d55ee718b32dc61b8ec60a4b123781901bf6ecc7ab7a95b88a1becea03493181ca8b4c13c26da49dd79f7a5bdaf6b51bf223373964de51df1b0559d33320b40733ffff9f1b748a1a5ac2abc8719f1b3f3eb3454c006c2d4afcd6f23ff7103bff99521bdef075992e995683ffffff", + "cborBytes": [ + 159, 2, 191, 66, 32, 230, 27, 54, 70, 1, 8, 3, 246, 188, 203, 255, 68, 75, 130, 20, 238, 159, 9, 160, 191, 68, 43, + 230, 48, 1, 27, 152, 46, 19, 229, 127, 201, 127, 33, 69, 44, 112, 153, 135, 175, 27, 21, 45, 204, 131, 186, 76, + 163, 133, 76, 192, 215, 13, 222, 29, 118, 218, 10, 163, 177, 27, 33, 73, 160, 150, 1, 191, 90, 82, 176, 196, 20, + 72, 232, 128, 145, 64, 24, 191, 35, 119, 27, 240, 79, 188, 99, 46, 39, 110, 184, 255, 27, 19, 234, 199, 147, 69, + 235, 104, 179, 191, 27, 52, 253, 202, 122, 62, 112, 38, 72, 27, 179, 213, 94, 231, 24, 179, 45, 198, 27, 142, 198, + 10, 75, 18, 55, 129, 144, 27, 246, 236, 199, 171, 122, 149, 184, 138, 27, 236, 234, 3, 73, 49, 129, 202, 139, 76, + 19, 194, 109, 164, 157, 215, 159, 122, 91, 218, 246, 181, 27, 242, 35, 55, 57, 100, 222, 81, 223, 27, 5, 89, 211, + 51, 32, 180, 7, 51, 255, 255, 159, 27, 116, 138, 26, 90, 194, 171, 200, 113, 159, 27, 63, 62, 179, 69, 76, 0, 108, + 45, 74, 252, 214, 242, 63, 247, 16, 59, 255, 153, 82, 27, 222, 240, 117, 153, 46, 153, 86, 131, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3976, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "51" + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3453412414853375117" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5975517272428875763" + } + }, + { + "_tag": "ByteArray", + "bytearray": "97b46eb1971ba29cf5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4221032600308774665" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e1b1f1f65b70506" + }, + { + "_tag": "ByteArray", + "bytearray": "a3029a39d959c065ea" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9676735167937984636" + } + } + ] + }, + "cborHex": "9f9f4151ff9f1b2fecfc4b5a42648d9f1b52ed4d4cb4558ff34997b46eb1971ba29cf51b3a941ec936bf7709488e1b1f1f65b7050649a3029a39d959c065eaffff1b864aab5d9e79387cff", + "cborBytes": [ + 159, 159, 65, 81, 255, 159, 27, 47, 236, 252, 75, 90, 66, 100, 141, 159, 27, 82, 237, 77, 76, 180, 85, 143, 243, + 73, 151, 180, 110, 177, 151, 27, 162, 156, 245, 27, 58, 148, 30, 201, 54, 191, 119, 9, 72, 142, 27, 31, 31, 101, + 183, 5, 6, 73, 163, 2, 154, 57, 217, 89, 192, 101, 234, 255, 255, 27, 134, 74, 171, 93, 158, 121, 56, 124, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3977, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11864123077373915081" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "638b64e3e34c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5404982509919364106" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2408045351131020190" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cdc57f01" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13701133590174590008" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67" + } + } + ] + }, + { + "_tag": "List", + "list": [] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8595282497833833535" + } + }, + { + "_tag": "ByteArray", + "bytearray": "191842fc280989" + }, + { + "_tag": "ByteArray", + "bytearray": "b3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "996453006295565460" + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8251605345199795630" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2629909148198210255" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "715ace57466a71fb23e9b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d09decc" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1601565631388292736" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3469883907586421533" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9f87355770babc1f6e7c6f" + }, + { + "_tag": "ByteArray", + "bytearray": "0b" + }, + { + "_tag": "ByteArray", + "bytearray": "5f0cfc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16968499360795654492" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "7f" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b3b07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5774475991358610716" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8caccc4696bb89a6e953" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6179fd06cdb625f0" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f9fbf1ba4a5d5147e62efc946638b64e3e34cffd8669f1b4b025af4b8f1640a80ffbf1b216b187d0d31fb9e44cdc57f011bbe243468968764384167ff809f1b774893e45b84943f47191842fc28098941b31b0dd41cbad39e0494ffffd8669f1b72839757b3592dae80ffd8669f1b247f506fb9e78acf9fbf4b715ace57466a71fb23e9b8445d09deccff1b1639e774cf5f96809f1b302781079b88731d4b9f87355770babc1f6e7c6f410b435f0cfc1beb7c384403aaf95cff417fbf434b3b071b50230f51d4f39d1c4a8caccc4696bb89a6e953486179fd06cdb625f0ffffffff", + "cborBytes": [ + 159, 159, 191, 27, 164, 165, 213, 20, 126, 98, 239, 201, 70, 99, 139, 100, 227, 227, 76, 255, 216, 102, 159, 27, + 75, 2, 90, 244, 184, 241, 100, 10, 128, 255, 191, 27, 33, 107, 24, 125, 13, 49, 251, 158, 68, 205, 197, 127, 1, + 27, 190, 36, 52, 104, 150, 135, 100, 56, 65, 103, 255, 128, 159, 27, 119, 72, 147, 228, 91, 132, 148, 63, 71, 25, + 24, 66, 252, 40, 9, 137, 65, 179, 27, 13, 212, 28, 186, 211, 158, 4, 148, 255, 255, 216, 102, 159, 27, 114, 131, + 151, 87, 179, 89, 45, 174, 128, 255, 216, 102, 159, 27, 36, 127, 80, 111, 185, 231, 138, 207, 159, 191, 75, 113, + 90, 206, 87, 70, 106, 113, 251, 35, 233, 184, 68, 93, 9, 222, 204, 255, 27, 22, 57, 231, 116, 207, 95, 150, 128, + 159, 27, 48, 39, 129, 7, 155, 136, 115, 29, 75, 159, 135, 53, 87, 112, 186, 188, 31, 110, 124, 111, 65, 11, 67, + 95, 12, 252, 27, 235, 124, 56, 68, 3, 170, 249, 92, 255, 65, 127, 191, 67, 75, 59, 7, 27, 80, 35, 15, 81, 212, + 243, 157, 28, 74, 140, 172, 204, 70, 150, 187, 137, 166, 233, 83, 72, 97, 121, 253, 6, 205, 182, 37, 240, 255, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3978, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d9051f03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + }, + "cborHex": "9f44d9051f0302ff", + "cborBytes": [159, 68, 217, 5, 31, 3, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3979, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "324100351163392473" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3142205407194459542" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17141951841746586467" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5005339938257344908" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5870962040519444732" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16530951874496110834" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8636629116293021437" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8606f8b4" + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "26e8" + } + ] + }, + "cborHex": "9fbf1b047f6f8d5eac61d941ba1b2b9b5b2b73232d961bede47260cc288b631b45768a2787e7998c1bffffffffffffffef1b5179d8dec2f6c8fc1be569bd25266b20f21b77db786c2570fefd448606f8b4ff4226e8ff", + "cborBytes": [ + 159, 191, 27, 4, 127, 111, 141, 94, 172, 97, 217, 65, 186, 27, 43, 155, 91, 43, 115, 35, 45, 150, 27, 237, 228, + 114, 96, 204, 40, 139, 99, 27, 69, 118, 138, 39, 135, 231, 153, 140, 27, 255, 255, 255, 255, 255, 255, 255, 239, + 27, 81, 121, 216, 222, 194, 246, 200, 252, 27, 229, 105, 189, 37, 38, 107, 32, 242, 27, 119, 219, 120, 108, 37, + 112, 254, 253, 68, 134, 6, 248, 180, 255, 66, 38, 232, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3980, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16505839825713449599" + }, + "fields": [ + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f14d8669f1be51085deab254a7f9fa0ffffff", + "cborBytes": [159, 20, 216, 102, 159, 27, 229, 16, 133, 222, 171, 37, 74, 127, 159, 160, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3981, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b6f078db283ba07c" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16288875482475570911" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11979398230819499265" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de9bdf5bf0eda67b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16819803903916254734" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9f48b6f078db283ba07c9f80d8669f1be20db5f2fb86a6df9f1ba63f5f38aaf06d0148de9bdf5bf0eda67b1be96bf28914a8260effffffff", + "cborBytes": [ + 159, 72, 182, 240, 120, 219, 40, 59, 160, 124, 159, 128, 216, 102, 159, 27, 226, 13, 181, 242, 251, 134, 166, 223, + 159, 27, 166, 63, 95, 56, 170, 240, 109, 1, 72, 222, 155, 223, 91, 240, 237, 166, 123, 27, 233, 107, 242, 137, 20, + 168, 38, 14, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3982, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6d5219517ccb02cc2745" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "562948d2f041ed4c1e81" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6d22119573ff7eaa1f36b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d4573e003e970436158ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b21abb81e75c777197b808" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6ef2808b06acbfd1fc1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8474d8682058b6c19b92f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc64cf8c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c68ecc799eb8dab98" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3634410948402415321" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6641129422154780754" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8649026031269627169" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d823b7" + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10403419350369841076" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "805939e864393eef9e67e841" + }, + { + "_tag": "ByteArray", + "bytearray": "1b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17521925099309188991" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3266247028222202840" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2167816910154629757" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16073090347527876147" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cf46b04aba" + } + ] + }, + { + "_tag": "Map", + "entries": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1618207312666274014" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "54ce0528" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2084188998396600439" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00304f05" + } + } + ] + } + ] + }, + "cborHex": "9fd905059f4a6d5219517ccb02cc2745bf4a562948d2f041ed4c1e814bd6d22119573ff7eaa1f36b4b5d4573e003e970436158ff4bb21abb81e75c777197b8084af6ef2808b06acbfd1fc14bd8474d8682058b6c19b92f44fc64cf8c499c68ecc799eb8dab98ff1b327005806b5106d9d8669f1b5c2a0805f2ee50529f1b78078359d6eec52143d823b7ffffffd8669f1b90605ec78c382fb49f9f4c805939e864393eef9e67e841411b1bf32a620aed53477f1b2d540a5de9dc13d8ff1b1e15a1fe83da027d1bdf0f16831f28ae3345cf46b04abaffffa0d8669f1b167506fa2c69a8de80ffbf4454ce05281b1cec86d9fe34e077415f4400304f05ffff", + "cborBytes": [ + 159, 217, 5, 5, 159, 74, 109, 82, 25, 81, 124, 203, 2, 204, 39, 69, 191, 74, 86, 41, 72, 210, 240, 65, 237, 76, + 30, 129, 75, 214, 210, 33, 25, 87, 63, 247, 234, 161, 243, 107, 75, 93, 69, 115, 224, 3, 233, 112, 67, 97, 88, + 255, 75, 178, 26, 187, 129, 231, 92, 119, 113, 151, 184, 8, 74, 246, 239, 40, 8, 176, 106, 203, 253, 31, 193, 75, + 216, 71, 77, 134, 130, 5, 139, 108, 25, 185, 47, 68, 252, 100, 207, 140, 73, 156, 104, 236, 199, 153, 235, 141, + 171, 152, 255, 27, 50, 112, 5, 128, 107, 81, 6, 217, 216, 102, 159, 27, 92, 42, 8, 5, 242, 238, 80, 82, 159, 27, + 120, 7, 131, 89, 214, 238, 197, 33, 67, 216, 35, 183, 255, 255, 255, 216, 102, 159, 27, 144, 96, 94, 199, 140, 56, + 47, 180, 159, 159, 76, 128, 89, 57, 232, 100, 57, 62, 239, 158, 103, 232, 65, 65, 27, 27, 243, 42, 98, 10, 237, + 83, 71, 127, 27, 45, 84, 10, 93, 233, 220, 19, 216, 255, 27, 30, 21, 161, 254, 131, 218, 2, 125, 27, 223, 15, 22, + 131, 31, 40, 174, 51, 69, 207, 70, 176, 74, 186, 255, 255, 160, 216, 102, 159, 27, 22, 117, 6, 250, 44, 105, 168, + 222, 128, 255, 191, 68, 84, 206, 5, 40, 27, 28, 236, 134, 217, 254, 52, 224, 119, 65, 95, 68, 0, 48, 79, 5, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3983, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5067751974432536631" + }, + "fields": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bc5a401529c752f2d40278cb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10189925657135370588" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c0e39a1c59e7" + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18139189689320391680" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9683075690931853715" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16518057133723558811" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab9800eaca1a8d6c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d77e0c074c2158d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae22d14e633941453b2185" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c726692a76c5" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8819079763806067922" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1d4754bb11e57306f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16468018818006777722" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62d294f9ad3d542eb9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17638555670687706792" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe5c7e95e972c0" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9fd8669f1b4654459215d5f8379f9f4cbc5a401529c752f2d40278cb1b8d69e3658931515c46c0e39a1c59e7ffffff1bfbbb58eab95ec400bf1b86613209ab3699931be53bed725b33239b48ab9800eaca1a8d6c48d77e0c074c2158d34bae22d14e633941453b218546c726692a76c5ffbf1b7a63aa51d77f1cd249d1d4754bb11e57306f1be48a27dd19bdff7a4962d294f9ad3d542eb91bf4c8bcedee4aeea847fe5c7e95e972c0ff80ff", + "cborBytes": [ + 159, 216, 102, 159, 27, 70, 84, 69, 146, 21, 213, 248, 55, 159, 159, 76, 188, 90, 64, 21, 41, 199, 82, 242, 212, + 2, 120, 203, 27, 141, 105, 227, 101, 137, 49, 81, 92, 70, 192, 227, 154, 28, 89, 231, 255, 255, 255, 27, 251, 187, + 88, 234, 185, 94, 196, 0, 191, 27, 134, 97, 50, 9, 171, 54, 153, 147, 27, 229, 59, 237, 114, 91, 51, 35, 155, 72, + 171, 152, 0, 234, 202, 26, 141, 108, 72, 215, 126, 12, 7, 76, 33, 88, 211, 75, 174, 34, 209, 78, 99, 57, 65, 69, + 59, 33, 133, 70, 199, 38, 105, 42, 118, 197, 255, 191, 27, 122, 99, 170, 81, 215, 127, 28, 210, 73, 209, 212, 117, + 75, 177, 30, 87, 48, 111, 27, 228, 138, 39, 221, 25, 189, 255, 122, 73, 98, 210, 148, 249, 173, 61, 84, 46, 185, + 27, 244, 200, 188, 237, 238, 74, 238, 168, 71, 254, 92, 126, 149, 233, 114, 192, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3984, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "06f8f801ddffed00" + } + ] + }, + "cborHex": "9f4806f8f801ddffed00ff", + "cborBytes": [159, 72, 6, 248, 248, 1, 221, 255, 237, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3985, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b0501fbfc0704" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3fb5e00960204f0034299" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc3c11e8b9e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62f36f3655dc76931496aebf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf41030d421b00474b0501fbfc070441c54be3fb5e00960204f003429946cc3c11e8b9e64c62f36f3655dc76931496aebf41ee0cffff", + "cborBytes": [ + 159, 191, 65, 3, 13, 66, 27, 0, 71, 75, 5, 1, 251, 252, 7, 4, 65, 197, 75, 227, 251, 94, 0, 150, 2, 4, 240, 3, 66, + 153, 70, 204, 60, 17, 232, 185, 230, 76, 98, 243, 111, 54, 85, 220, 118, 147, 20, 150, 174, 191, 65, 238, 12, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3986, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f846a8fa" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "06f93781" + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18411521021711396936" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12612410480011731118" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1446209487593468934" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1789511976046463467" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05069d030407f8662af8fd" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14896012989641717045" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2f276a5ce7700" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e0d063cb5ee0218c9ddf414" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fceeaa1a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d195d8d1ac72d05d92b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15061155214697706483" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d27bcc37dd1f7106557613" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ccd1f6164d" + } + } + ] + } + ] + }, + "cborHex": "9f9f44f846a8fa9f4406f93781ff1bff82dcd221beb048d8669f1baf084882168360ae9f1b1411f7dddacef4061b18d59fa9358e89ebffffff1bfffffffffffffffc1bfffffffffffffffc4b05069d030407f8662af8fdbf4210fc1bceb944e44132f5354214ad47a2f276a5ce77004c7e0d063cb5ee0218c9ddf41444fceeaa1a418141694ad195d8d1ac72d05d92b71bd103f8decf1433f34bd27bcc37dd1f710655761345ccd1f6164dffff", + "cborBytes": [ + 159, 159, 68, 248, 70, 168, 250, 159, 68, 6, 249, 55, 129, 255, 27, 255, 130, 220, 210, 33, 190, 176, 72, 216, + 102, 159, 27, 175, 8, 72, 130, 22, 131, 96, 174, 159, 27, 20, 17, 247, 221, 218, 206, 244, 6, 27, 24, 213, 159, + 169, 53, 142, 137, 235, 255, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 252, 27, 255, 255, 255, 255, 255, + 255, 255, 252, 75, 5, 6, 157, 3, 4, 7, 248, 102, 42, 248, 253, 191, 66, 16, 252, 27, 206, 185, 68, 228, 65, 50, + 245, 53, 66, 20, 173, 71, 162, 242, 118, 165, 206, 119, 0, 76, 126, 13, 6, 60, 181, 238, 2, 24, 201, 221, 244, 20, + 68, 252, 238, 170, 26, 65, 129, 65, 105, 74, 209, 149, 216, 209, 172, 114, 208, 93, 146, 183, 27, 209, 3, 248, + 222, 207, 20, 51, 243, 75, 210, 123, 204, 55, 221, 31, 113, 6, 85, 118, 19, 69, 204, 209, 246, 22, 77, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3987, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "902385892306197828" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11456062321660291987" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "6406fa06002ef505" + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "061f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5dc3a330" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fc3bdd37e92" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6876766157564547505" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e5042" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35f4e141dd315f6d09a6c8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "baebac1e373aad6d2c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5147473697422896046" + } + } + } + ] + } + ] + }, + "cborHex": "9f07bf1b0c85eb30213c1d441b9efc1bfc174c6b93ff486406fa06002ef505bf42061f445dc3a330460fc3bdd37e921b5f6f2e62b91011b1434e50424b35f4e141dd315f6d09a6c849baebac1e373aad6d2c1b476f800e298eebaeffff", + "cborBytes": [ + 159, 7, 191, 27, 12, 133, 235, 48, 33, 60, 29, 68, 27, 158, 252, 27, 252, 23, 76, 107, 147, 255, 72, 100, 6, 250, + 6, 0, 46, 245, 5, 191, 66, 6, 31, 68, 93, 195, 163, 48, 70, 15, 195, 189, 211, 126, 146, 27, 95, 111, 46, 98, 185, + 16, 17, 177, 67, 78, 80, 66, 75, 53, 244, 225, 65, 221, 49, 95, 109, 9, 166, 200, 73, 186, 235, 172, 30, 55, 58, + 173, 109, 44, 27, 71, 111, 128, 14, 41, 142, 235, 174, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3988, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5294243356517854552" + }, + "fields": [] + } + ] + }, + "cborHex": "9fd8669f1b4978ee485bb7ed5880ffff", + "cborBytes": [159, 216, 102, 159, 27, 73, 120, 238, 72, 91, 183, 237, 88, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3989, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10418731660086929061" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6bac2623a2a0" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2935999271548133133" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9043215044375399699" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15768921420258340551" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3cb39307904eea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18042759426411388712" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12662799725906325572" + } + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14741881076863359348" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11706086512635826380" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9bb4be0f" + } + ] + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11330301242118524190" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b9096c53e7998e6a59f466bac2623a2a0d8669f1b28bec3c8296e9f0d9f1b7d7ff42b7b76cd13ffffbf1bdad6767c018beec7473cb39307904eea1bfa64c21a8b14df281bafbb4d42a48f7044ff9f1bcc95aebbcb7e59741ba2745fa967a650cc449bb4be0fffffff9f1b9d3d50f2fea44d1effff", + "cborBytes": [ + 159, 216, 102, 159, 27, 144, 150, 197, 62, 121, 152, 230, 165, 159, 70, 107, 172, 38, 35, 162, 160, 216, 102, 159, + 27, 40, 190, 195, 200, 41, 110, 159, 13, 159, 27, 125, 127, 244, 43, 123, 118, 205, 19, 255, 255, 191, 27, 218, + 214, 118, 124, 1, 139, 238, 199, 71, 60, 179, 147, 7, 144, 78, 234, 27, 250, 100, 194, 26, 139, 20, 223, 40, 27, + 175, 187, 77, 66, 164, 143, 112, 68, 255, 159, 27, 204, 149, 174, 187, 203, 126, 89, 116, 27, 162, 116, 95, 169, + 103, 166, 80, 204, 68, 155, 180, 190, 15, 255, 255, 255, 159, 27, 157, 61, 80, 242, 254, 164, 77, 30, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3990, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1222288866808625030" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "871b8db86a0fed8de9047c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1823979541929781383" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee4e7110da0a2710448652be" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5565562783110341367" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3352367819676546398" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12133342757114931950" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6641771936674418036" + } + } + } + ] + } + ] + }, + "cborHex": "9fbf1b10f6713f970af7864b871b8db86a0fed8de9047c1b195013bac24de8874cee4e7110da0a2710448652be1b4d3cd9dd166d22f71b2e8600c53845755e1ba8624af3cfe4eaee1b5c2c506304a30d74ffff", + "cborBytes": [ + 159, 191, 27, 16, 246, 113, 63, 151, 10, 247, 134, 75, 135, 27, 141, 184, 106, 15, 237, 141, 233, 4, 124, 27, 25, + 80, 19, 186, 194, 77, 232, 135, 76, 238, 78, 113, 16, 218, 10, 39, 16, 68, 134, 82, 190, 27, 77, 60, 217, 221, 22, + 109, 34, 247, 27, 46, 134, 0, 197, 56, 69, 117, 94, 27, 168, 98, 74, 243, 207, 228, 234, 238, 27, 92, 44, 80, 99, + 4, 163, 13, 116, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3991, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "026e86e0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd65bf7d01" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39c1d073616c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4fb95d47f1bcc01d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24c97c296207" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d1d5b931a86" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04ad19" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90f2ba320a51b793a48e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15cadeabd916e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc43c3fe089badf5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2537827727a0f81c5" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2240664814341593312" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d9ea181d8c28373ea506b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "103266430261632822" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6029052513687031452" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2372308142815728729" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15652912770942544586" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4037463045876420195" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8313198796227766309" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11970623022378371428" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11551441353752911415" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13220866618120951809" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c" + } + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5814967231086566977" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9775102817577824031" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5063144960606200416" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12968178880525649610" + } + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + ] + }, + "cborHex": "9f9fbf44026e86e045dd65bf7d014639c1d073616c4188484fb95d47f1bcc01d4624c97c296207465d1d5b931a864304ad194a90f2ba320a51b793a48e4715cadeabd916e448bc43c3fe089badf549f2537827727a0f81c5ffd8669f1b1f1870c6ef8c18e09f4bd9ea181d8c28373ea506b81b016ee0456cf79f361b53ab7f51627dce9cffffbf1b20ec21afd64c54591bd93a513b8434aaca1b3807f33fb33b0e631b735e6a428c5c68251ba62032373cf9c9641ba04ef6b586331e371bb779f4245beb5801416cffd8669f1b50b2e9e33d739e419f1b87a82438cca56f1f1b4643e784173de2601bb3f839fbc57446caffff80ff1bfffffffffffffffcff", + "cborBytes": [ + 159, 159, 191, 68, 2, 110, 134, 224, 69, 221, 101, 191, 125, 1, 70, 57, 193, 208, 115, 97, 108, 65, 136, 72, 79, + 185, 93, 71, 241, 188, 192, 29, 70, 36, 201, 124, 41, 98, 7, 70, 93, 29, 91, 147, 26, 134, 67, 4, 173, 25, 74, + 144, 242, 186, 50, 10, 81, 183, 147, 164, 142, 71, 21, 202, 222, 171, 217, 22, 228, 72, 188, 67, 195, 254, 8, 155, + 173, 245, 73, 242, 83, 120, 39, 114, 122, 15, 129, 197, 255, 216, 102, 159, 27, 31, 24, 112, 198, 239, 140, 24, + 224, 159, 75, 217, 234, 24, 29, 140, 40, 55, 62, 165, 6, 184, 27, 1, 110, 224, 69, 108, 247, 159, 54, 27, 83, 171, + 127, 81, 98, 125, 206, 156, 255, 255, 191, 27, 32, 236, 33, 175, 214, 76, 84, 89, 27, 217, 58, 81, 59, 132, 52, + 170, 202, 27, 56, 7, 243, 63, 179, 59, 14, 99, 27, 115, 94, 106, 66, 140, 92, 104, 37, 27, 166, 32, 50, 55, 60, + 249, 201, 100, 27, 160, 78, 246, 181, 134, 51, 30, 55, 27, 183, 121, 244, 36, 91, 235, 88, 1, 65, 108, 255, 216, + 102, 159, 27, 80, 178, 233, 227, 61, 115, 158, 65, 159, 27, 135, 168, 36, 56, 204, 165, 111, 31, 27, 70, 67, 231, + 132, 23, 61, 226, 96, 27, 179, 248, 57, 251, 197, 116, 70, 202, 255, 255, 128, 255, 27, 255, 255, 255, 255, 255, + 255, 255, 252, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3992, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "68bdb617b19b20" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b9a83282f6df89882" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b211" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b476ae0e10c9452a14e3af" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + } + ] + }, + "cborHex": "9f1bfffffffffffffff4bf4768bdb617b19b2042fc07496b9a83282f6df8988242b2114bb476ae0e10c9452a14e3af11ffff", + "cborBytes": [ + 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 191, 71, 104, 189, 182, 23, 177, 155, 32, 66, 252, 7, 73, 107, + 154, 131, 40, 47, 109, 248, 152, 130, 66, 178, 17, 75, 180, 118, 174, 14, 16, 201, 69, 42, 20, 227, 175, 17, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3993, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b04df28fe15c6336" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3bdb863040944ba46f4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5db67bb3" + } + } + ] + } + ] + } + ] + }, + "cborHex": "9fd8669f1bfffffffffffffffb80ffd9050b9fbf48b04df28fe15c6336074af3bdb863040944ba46f4445db67bb3ffffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 128, 255, 217, 5, 11, 159, 191, 72, 176, 77, 242, + 143, 225, 92, 99, 54, 7, 74, 243, 189, 184, 99, 4, 9, 68, 186, 70, 244, 68, 93, 182, 123, 179, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3994, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e82c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3993303472788524288" + } + } + ] + }, + "cborHex": "9f42e82c1b376b1059dfe4cd00ff", + "cborBytes": [159, 66, 232, 44, 27, 55, 107, 16, 89, 223, 228, 205, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3995, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6074346871804764903" + }, + "fields": [] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0053c9e173c0850aaffc0906" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5032040708683630703" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ff1d18084bb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1400806739269216200" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cab553569c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "801a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c3f9654b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16267849093189033576" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6905c6968b1e6473c4ecae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8889145364163462968" + } + } + } + ] + }, + { + "_tag": "ByteArray", + "bytearray": "082a67d728c504c5aa57" + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18280561552745206018" + }, + "fields": [] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5473268356635572716" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1367377411365906809" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8774226805049519905" + } + }, + { + "_tag": "ByteArray", + "bytearray": "018d4cec6b933ca485b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11441678185397297601" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15414497110147306091" + } + } + ] + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7769229326010909178" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2880641946923549195" + } + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15976688598581601494" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b544c6a4bf06da2e780ffbf4c0053c9e173c0850aaffc09061b45d5665d1864886f460ff1d18084bb1b1370aa4ebd1d67c8464cab553569c942801a455c3f9654b21be1c3028f3b315e684b6905c6968b1e6473c4ecae1b7b5c969cabc60738ff4a082a67d728c504c5aa579fd8669f1bfdb199e0ae0a910280ffd8669f1b4bf4f4925da639ec9f1b12f9e682ce5ba9791b79c450ca95afef214a018d4cec6b933ca485b01b9ec901b062f121c11bd5eb4b73c19d926bffff9f1b6bd1d8e8ab6d81fa1b27fa1896a377c20bff1bddb899a1dd7d64d6ffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 84, 76, 106, 75, 240, 109, 162, 231, 128, 255, 191, 76, 0, 83, 201, 225, 115, 192, 133, + 10, 175, 252, 9, 6, 27, 69, 213, 102, 93, 24, 100, 136, 111, 70, 15, 241, 209, 128, 132, 187, 27, 19, 112, 170, + 78, 189, 29, 103, 200, 70, 76, 171, 85, 53, 105, 201, 66, 128, 26, 69, 92, 63, 150, 84, 178, 27, 225, 195, 2, 143, + 59, 49, 94, 104, 75, 105, 5, 198, 150, 139, 30, 100, 115, 196, 236, 174, 27, 123, 92, 150, 156, 171, 198, 7, 56, + 255, 74, 8, 42, 103, 215, 40, 197, 4, 197, 170, 87, 159, 216, 102, 159, 27, 253, 177, 153, 224, 174, 10, 145, 2, + 128, 255, 216, 102, 159, 27, 75, 244, 244, 146, 93, 166, 57, 236, 159, 27, 18, 249, 230, 130, 206, 91, 169, 121, + 27, 121, 196, 80, 202, 149, 175, 239, 33, 74, 1, 141, 76, 236, 107, 147, 60, 164, 133, 176, 27, 158, 201, 1, 176, + 98, 241, 33, 193, 27, 213, 235, 75, 115, 193, 157, 146, 107, 255, 255, 159, 27, 107, 209, 216, 232, 171, 109, 129, + 250, 27, 39, 250, 24, 150, 163, 119, 194, 11, 255, 27, 221, 184, 153, 161, 221, 125, 100, 214, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3996, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "056ede38" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9247889210463751834" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3604702305235832884" + } + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + } + ] + }, + "cborHex": "9f9f9f44056ede381b80571a3d4fdc0e9a1b320679a5e89d1034ffa0ffff", + "cborBytes": [ + 159, 159, 159, 68, 5, 110, 222, 56, 27, 128, 87, 26, 61, 79, 220, 14, 154, 27, 50, 6, 121, 165, 232, 157, 16, 52, + 255, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3997, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ee316c7e0dfdb9a7" + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3661054847576948288" + }, + "fields": [ + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1848462048724661227" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7546357840659753000" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7245295978864481548" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d88059e27072c7ac30" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14789327255946902831" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5612888353704966939" + } + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5908187735355037858" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15864230423746596668" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13241686128555024749" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16738307948289392310" + } + } + ] + } + ] + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f48ee316c7e0dfdb9a7d8669f1b32ceadfc9d0bbe409fbf1b19a70e70930633eb1b68ba0c79488228281b648c764e38c8950c49d88059e27072c7ac301bcd3e3ec835b7bd2f1b4de4fc382682fb1bffffff1b51fe1971402818a29fd8669f1bdc291184a25c4f3c9f1bb7c3eb605fbd616d1be84a6a6546e2feb6ffffff80ff", + "cborBytes": [ + 159, 72, 238, 49, 108, 126, 13, 253, 185, 167, 216, 102, 159, 27, 50, 206, 173, 252, 157, 11, 190, 64, 159, 191, + 27, 25, 167, 14, 112, 147, 6, 51, 235, 27, 104, 186, 12, 121, 72, 130, 40, 40, 27, 100, 140, 118, 78, 56, 200, + 149, 12, 73, 216, 128, 89, 226, 112, 114, 199, 172, 48, 27, 205, 62, 62, 200, 53, 183, 189, 47, 27, 77, 228, 252, + 56, 38, 130, 251, 27, 255, 255, 255, 27, 81, 254, 25, 113, 64, 40, 24, 162, 159, 216, 102, 159, 27, 220, 41, 17, + 132, 162, 92, 79, 60, 159, 27, 183, 195, 235, 96, 95, 189, 97, 109, 27, 232, 74, 106, 101, 70, 226, 254, 182, 255, + 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3998, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "626145521957469659" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13299877595077179214" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f0c3b657e" + }, + { + "_tag": "ByteArray", + "bytearray": "988bdc051551adc8f2c436" + }, + { + "_tag": "ByteArray", + "bytearray": "377641507596d1d765" + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd5033c872" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10892807395110531180" + } + } + } + ] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13026736182280003405" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13203905091421150442" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14695535857775364112" + } + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9583576320366843807" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b4617e942d2ce9c51a" + }, + { + "_tag": "ByteArray", + "bytearray": "3267d02a6da88b4bd733b534" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13829266027259748640" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16714481605327632038" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6113621250903837476" + } + } + ] + } + ] + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8210230927464612265" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12190758576068989835" + } + }, + { + "_tag": "List", + "list": [] + } + ] + }, + "cborHex": "9f9fd8669f1b08b08408e5f9fddb9f1bb892a834fac0774e458f0c3b657e4b988bdc051551adc8f2c43649377641507596d1d765ffffbf45fd5033c8721b972b069d004fb06cffffd8669f1bb4c8438a07871f4d9f1bb73db1b92e211cea1bcbf108009ab74810d8669f1b84ffb3e32d4f979f9f49b4617e942d2ce9c51a4c3267d02a6da88b4bd733b5341bbfeb6c2e6331e1201be7f5c476825ab6a61b54d7f222e7670b24ffffffff1b71f09987637441a91ba92e4655e523938b80ff", + "cborBytes": [ + 159, 159, 216, 102, 159, 27, 8, 176, 132, 8, 229, 249, 253, 219, 159, 27, 184, 146, 168, 52, 250, 192, 119, 78, + 69, 143, 12, 59, 101, 126, 75, 152, 139, 220, 5, 21, 81, 173, 200, 242, 196, 54, 73, 55, 118, 65, 80, 117, 150, + 209, 215, 101, 255, 255, 191, 69, 253, 80, 51, 200, 114, 27, 151, 43, 6, 157, 0, 79, 176, 108, 255, 255, 216, 102, + 159, 27, 180, 200, 67, 138, 7, 135, 31, 77, 159, 27, 183, 61, 177, 185, 46, 33, 28, 234, 27, 203, 241, 8, 0, 154, + 183, 72, 16, 216, 102, 159, 27, 132, 255, 179, 227, 45, 79, 151, 159, 159, 73, 180, 97, 126, 148, 45, 44, 233, + 197, 26, 76, 50, 103, 208, 42, 109, 168, 139, 75, 215, 51, 181, 52, 27, 191, 235, 108, 46, 99, 49, 225, 32, 27, + 231, 245, 196, 118, 130, 90, 182, 166, 27, 84, 215, 242, 34, 231, 103, 11, 36, 255, 255, 255, 255, 27, 113, 240, + 153, 135, 99, 116, 65, 169, 27, 169, 46, 70, 85, 229, 35, 147, 139, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + }, + { + "index": 3999, + "sample": { + "_tag": "List", + "list": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5802592126213224101" + }, + "fields": [ + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18130989166981879872" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f1be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17399431737003222971" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "988371551261558521" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a598871ea22a2291fb791d8" + }, + { + "_tag": "ByteArray", + "bytearray": "22fd16849afb6e" + } + ] + }, + { + "_tag": "Map", + "entries": [] + } + ] + }, + { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1604928173639241092" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17769952170222960698" + } + }, + { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2513139574628157132" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8581900925579737942" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14103544669454907827" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15571971143719502194" + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3014778643736448972" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7815537289382084082" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6548619673916109517" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17665544854253138920" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10989948580168398008" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10636361260173825663" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16945471183003716006" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2209015466940786426" + } + } + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "547755409148292586" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8844948830ed2fa88b50350b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9717188286385008310" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8564407609710670630" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1725656276acd6f672de2f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4dfc0278551" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "767e599e6c6575112cdb81" + } + } + ] + } + ] + }, + { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "166865264994053938" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11977625957477718851" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "217983210138106343" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1530231630193024581" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9572986064981379297" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e638fe4bd9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17113774112710411676" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ed109eb798d9c" + } + } + ] + } + ] + }, + "cborHex": "9fd8669f1b5086f2cb9b6af6a59fd8669f1bfb9e3695d46918409f42f1be1bf17732fa89bc27bb1b0db766b0730c06f94c1a598871ea22a2291fb791d84722fd16849afb6effffa0ffffd8669f1b1645d9abafc88d849f1bf69b8d597dd2403a9f1b22e07720c0b006cc1b7719096c46c6bb561bc3b9db2730b6b9b31bd81ac1405a08c172ffbf1b29d6a53418584fcc1b6c765dc196703df21b5ae15ee5b8e772cd1bf5289f72e97cf3e81b98842401a4bef4b81b939bf2365763167f1beb2a68428e8e09a61b1ea7ffdd025966faffbf1b079a04a47a152dea4c8844948830ed2fa88b50350b1b86da63433990aeb61b76dae3584874f32641b64b1725656276acd6f672de2f46e4dfc02785514b767e599e6c6575112cdb81ffffffbf1b0250d3130d526f321ba63913591ff51b431b03066e931f47f9e71b153c798f65b8de451b84da141b32fac8e145e638fe4bd91bed8056e20261459c479ed109eb798d9cffff", + "cborBytes": [ + 159, 216, 102, 159, 27, 80, 134, 242, 203, 155, 106, 246, 165, 159, 216, 102, 159, 27, 251, 158, 54, 149, 212, + 105, 24, 64, 159, 66, 241, 190, 27, 241, 119, 50, 250, 137, 188, 39, 187, 27, 13, 183, 102, 176, 115, 12, 6, 249, + 76, 26, 89, 136, 113, 234, 34, 162, 41, 31, 183, 145, 216, 71, 34, 253, 22, 132, 154, 251, 110, 255, 255, 160, + 255, 255, 216, 102, 159, 27, 22, 69, 217, 171, 175, 200, 141, 132, 159, 27, 246, 155, 141, 89, 125, 210, 64, 58, + 159, 27, 34, 224, 119, 32, 192, 176, 6, 204, 27, 119, 25, 9, 108, 70, 198, 187, 86, 27, 195, 185, 219, 39, 48, + 182, 185, 179, 27, 216, 26, 193, 64, 90, 8, 193, 114, 255, 191, 27, 41, 214, 165, 52, 24, 88, 79, 204, 27, 108, + 118, 93, 193, 150, 112, 61, 242, 27, 90, 225, 94, 229, 184, 231, 114, 205, 27, 245, 40, 159, 114, 233, 124, 243, + 232, 27, 152, 132, 36, 1, 164, 190, 244, 184, 27, 147, 155, 242, 54, 87, 99, 22, 127, 27, 235, 42, 104, 66, 142, + 142, 9, 166, 27, 30, 167, 255, 221, 2, 89, 102, 250, 255, 191, 27, 7, 154, 4, 164, 122, 21, 45, 234, 76, 136, 68, + 148, 136, 48, 237, 47, 168, 139, 80, 53, 11, 27, 134, 218, 99, 67, 57, 144, 174, 182, 27, 118, 218, 227, 88, 72, + 116, 243, 38, 65, 182, 75, 23, 37, 101, 98, 118, 172, 214, 246, 114, 222, 47, 70, 228, 223, 192, 39, 133, 81, 75, + 118, 126, 89, 158, 108, 101, 117, 17, 44, 219, 129, 255, 255, 255, 191, 27, 2, 80, 211, 19, 13, 82, 111, 50, 27, + 166, 57, 19, 89, 31, 245, 27, 67, 27, 3, 6, 110, 147, 31, 71, 249, 231, 27, 21, 60, 121, 143, 101, 184, 222, 69, + 27, 132, 218, 20, 27, 50, 250, 200, 225, 69, 230, 56, 254, 75, 217, 27, 237, 128, 86, 226, 2, 97, 69, 156, 71, + 158, 209, 9, 235, 121, 141, 156, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "list", + "seed": 12345 + } + } +] diff --git a/packages/evolution/test/golden/map.golden.json b/packages/evolution/test/golden/map.golden.json new file mode 100644 index 00000000..d98d71c5 --- /dev/null +++ b/packages/evolution/test/golden/map.golden.json @@ -0,0 +1,359097 @@ +[ + { + "index": 0, + "sample": { + "_tag": "Map", + "entries": [] + }, + "cborHex": "a0", + "cborBytes": [160], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b32ca" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4663730105259605006" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f803" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "921786d5304c20692e" + } + } + ] + }, + "cborHex": "bf436b32ca9f1b40b8e5d23c4b3c0eff42f80349921786d5304c20692eff", + "cborBytes": [ + 191, 67, 107, 50, 202, 159, 27, 64, 184, 229, 210, 60, 75, 60, 14, 255, 66, 248, 3, 73, 146, 23, 134, 213, 48, 76, + 32, 105, 46, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4480147213859589293" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4803472964881764925" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09aa62ee48b23b" + }, + { + "_tag": "ByteArray", + "bytearray": "0f8c7e0fd8527f54" + }, + { + "_tag": "ByteArray", + "bytearray": "e1d9da058ca8" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "263c67a2a7d3bc777067" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "333c04f4429d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b61" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11815335568321193770" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be07d64d59" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdc84d2e5811" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13957788623524096348" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4db8c8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13215213087662357563" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87c33672518e927ac45417cb" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97f36e2641a91cad33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b946" + } + } + ] + }, + "cborHex": "bf41079f1b3e2cae27778e8cad1b42a95d362ff8523d4709aa62ee48b23b480f8c7e0fd8527f5446e1d9da058ca8ff4a263c67a2a7d3bc777067bf46333c04f4429d420b61415c1ba3f881195bd2a72a416045be07d64d5946fdc84d2e58111bc1b406cd3324695cff434db8c8d905099f1bb765de4939353c3bff4c87c33672518e927ac45417cba04997f36e2641a91cad3342b946ff", + "cborBytes": [ + 191, 65, 7, 159, 27, 62, 44, 174, 39, 119, 142, 140, 173, 27, 66, 169, 93, 54, 47, 248, 82, 61, 71, 9, 170, 98, + 238, 72, 178, 59, 72, 15, 140, 126, 15, 216, 82, 127, 84, 70, 225, 217, 218, 5, 140, 168, 255, 74, 38, 60, 103, + 162, 167, 211, 188, 119, 112, 103, 191, 70, 51, 60, 4, 244, 66, 157, 66, 11, 97, 65, 92, 27, 163, 248, 129, 25, + 91, 210, 167, 42, 65, 96, 69, 190, 7, 214, 77, 89, 70, 253, 200, 77, 46, 88, 17, 27, 193, 180, 6, 205, 51, 36, + 105, 92, 255, 67, 77, 184, 200, 217, 5, 9, 159, 27, 183, 101, 222, 73, 57, 53, 60, 59, 255, 76, 135, 195, 54, 114, + 81, 142, 146, 122, 196, 84, 23, 203, 160, 73, 151, 243, 110, 38, 65, 169, 28, 173, 51, 66, 185, 70, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7950454218792897708" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13504293425777979826" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12519670675679598760" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12358847448391406301" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfac371fdea6f2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18289066866896440522" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5766712942503293926" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8515103171604164440" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af274a9ddf71d4a6c8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15165975758405399353" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6e55affd1a280cac1bbb68e3526a23b1b21badbece25c0c1d8a81bab8372463a9cd2dd47bfac371fdea6f2d8669f1bfdcfd16a72ba8cca9f1b50077ade2b8e73e61b762bb9383944af5849af274a9ddf71d4a6c81bd2785e9977f07339ffffff", + "cborBytes": [ + 191, 27, 110, 85, 175, 253, 26, 40, 12, 172, 27, 187, 104, 227, 82, 106, 35, 177, 178, 27, 173, 190, 206, 37, 192, + 193, 216, 168, 27, 171, 131, 114, 70, 58, 156, 210, 221, 71, 191, 172, 55, 31, 222, 166, 242, 216, 102, 159, 27, + 253, 207, 209, 106, 114, 186, 140, 202, 159, 27, 80, 7, 122, 222, 43, 142, 115, 230, 27, 118, 43, 185, 56, 57, 68, + 175, 88, 73, 175, 39, 74, 157, 223, 113, 212, 166, 200, 27, 210, 120, 94, 153, 119, 240, 115, 57, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 4, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1888213283141297544" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "105289945117662776" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10426663101145057494" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d5b9e46112b06e4b06db995" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11959581090060052638" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2191755285566310082" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15871036621216648279" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1208" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12003328502646942037" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1dd9d3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13103317794347066743" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1871435969727659280" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17293008217772726904" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfd242dd99a1064f6ef8e3" + } + } + ] + }, + "cborHex": "bf1b1a3447fa11cfa588d8669f1b017610a5b1289e389f1b90b2f2d9006c88d64c5d5b9e46112b06e4b06db9951ba5f8f7a30782289effff1b1e6aadd1dec3c6c29f1bdc413fb7f8d58c574212081ba69463ad4297a955431dd9d3ff1bb5d8561c0f1ca5771b19f8ad1963817d101beffd1b5a0e411a784bdfd242dd99a1064f6ef8e3ff", + "cborBytes": [ + 191, 27, 26, 52, 71, 250, 17, 207, 165, 136, 216, 102, 159, 27, 1, 118, 16, 165, 177, 40, 158, 56, 159, 27, 144, + 178, 242, 217, 0, 108, 136, 214, 76, 93, 91, 158, 70, 17, 43, 6, 228, 176, 109, 185, 149, 27, 165, 248, 247, 163, + 7, 130, 40, 158, 255, 255, 27, 30, 106, 173, 209, 222, 195, 198, 194, 159, 27, 220, 65, 63, 183, 248, 213, 140, + 87, 66, 18, 8, 27, 166, 148, 99, 173, 66, 151, 169, 85, 67, 29, 217, 211, 255, 27, 181, 216, 86, 28, 15, 28, 165, + 119, 27, 25, 248, 173, 25, 99, 129, 125, 16, 27, 239, 253, 27, 90, 14, 65, 26, 120, 75, 223, 210, 66, 221, 153, + 161, 6, 79, 110, 248, 227, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 5, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8373010797243001202" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2b3c" + }, + { + "_tag": "ByteArray", + "bytearray": "a57ebbbefb33e0f83fbc87" + }, + { + "_tag": "ByteArray", + "bytearray": "f6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2945696163145583269" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2120859663153288019" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6410300592379412921" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9756361155730994599" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7299262509812810402" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf030c04d8669f1b7432e8f53e2de9729f422b3c4ba57ebbbefb33e0f83fbc8741f61b28e1370dac860aa5ffff111b1d6ecea078b4d3531b58f5f66cf04041b91b87658ec79bc3f5a71b654c30945bb802a280ff", + "cborBytes": [ + 191, 3, 12, 4, 216, 102, 159, 27, 116, 50, 232, 245, 62, 45, 233, 114, 159, 66, 43, 60, 75, 165, 126, 187, 190, + 251, 51, 224, 248, 63, 188, 135, 65, 246, 27, 40, 225, 55, 13, 172, 134, 10, 165, 255, 255, 17, 27, 29, 110, 206, + 160, 120, 180, 211, 83, 27, 88, 245, 246, 108, 240, 64, 65, 185, 27, 135, 101, 142, 199, 155, 195, 245, 167, 27, + 101, 76, 48, 148, 91, 184, 2, 162, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 6, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2352031042383575073" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b20a417c57df6f8219f11ffff", + "cborBytes": [191, 27, 32, 164, 23, 197, 125, 246, 248, 33, 159, 17, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 7, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5579f2012" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95a55d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24877b9b9108f27dd44dc252" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9945476341940995279" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3494" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17158539242000128730" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c909109bb657230d38baa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e630260b13813d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6eb7a12b322f5d323956ebc1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1050186613205898548" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dba468ce3e41afd2fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f18d898fa372ce8e2c90f282" + } + } + ] + } + } + ] + }, + "cborHex": "bf45f5579f2012bf411a4395a55d4c24877b9b9108f27dd44dc2521b8a056e0a2371c4cf4234941bee1f6087e0049ada4b6c909109bb657230d38baa47e630260b13813d4c6eb7a12b322f5d323956ebc11b0e9303291c02153449dba468ce3e41afd2fb4cf18d898fa372ce8e2c90f282ffff", + "cborBytes": [ + 191, 69, 245, 87, 159, 32, 18, 191, 65, 26, 67, 149, 165, 93, 76, 36, 135, 123, 155, 145, 8, 242, 125, 212, 77, + 194, 82, 27, 138, 5, 110, 10, 35, 113, 196, 207, 66, 52, 148, 27, 238, 31, 96, 135, 224, 4, 154, 218, 75, 108, + 144, 145, 9, 187, 101, 114, 48, 211, 139, 170, 71, 230, 48, 38, 11, 19, 129, 61, 76, 110, 183, 161, 43, 50, 47, + 93, 50, 57, 86, 235, 193, 27, 14, 147, 3, 41, 28, 2, 21, 52, 73, 219, 164, 104, 206, 62, 65, 175, 210, 251, 76, + 241, 141, 137, 143, 163, 114, 206, 142, 44, 144, 242, 130, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 8, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06025302e4f806ce" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12712252951336774882" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15626722870407448568" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee68ee382a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18111056405214743921" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bcaa4c24caa9bf95c5a3b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c33800e9846565f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b78d847fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19da96431ce3730c" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b25" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11716362544137445477" + } + } + } + ] + }, + "cborHex": "bf4806025302e4f806ce9f1bb06afeb4f356ece2ff418abf1bd8dd45a81e1bc7f845ee68ee382a1bfb5765d813e34d7141954b3bcaa4c24caa9bf95c5a3b489c33800e9846565f457b78d847fb4819da96431ce3730cff429b251ba298e1a86f012065ff", + "cborBytes": [ + 191, 72, 6, 2, 83, 2, 228, 248, 6, 206, 159, 27, 176, 106, 254, 180, 243, 86, 236, 226, 255, 65, 138, 191, 27, + 216, 221, 69, 168, 30, 27, 199, 248, 69, 238, 104, 238, 56, 42, 27, 251, 87, 101, 216, 19, 227, 77, 113, 65, 149, + 75, 59, 202, 164, 194, 76, 170, 155, 249, 92, 90, 59, 72, 156, 51, 128, 14, 152, 70, 86, 95, 69, 123, 120, 216, + 71, 251, 72, 25, 218, 150, 67, 28, 227, 115, 12, 255, 66, 155, 37, 27, 162, 152, 225, 168, 111, 1, 32, 101, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 9, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11022573277844442445" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11685188195089496501" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db3dc4f80a449a47" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "780626a95a42872c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9079696195845420610" + } + }, + { + "_tag": "ByteArray", + "bytearray": "32f7" + } + ] + } + } + ] + }, + "cborHex": "bf061b98f80bff00a18d4d0e111ba22a20c0ade5b9b548db3dc4f80a449a471bffffffffffffffecd905009f48780626a95a42872cff1bfffffffffffffffcd87a9f1b7e018f9575d4f6424232f7ffff", + "cborBytes": [ + 191, 6, 27, 152, 248, 11, 255, 0, 161, 141, 77, 14, 17, 27, 162, 42, 32, 192, 173, 229, 185, 181, 72, 219, 61, + 196, 248, 10, 68, 154, 71, 27, 255, 255, 255, 255, 255, 255, 255, 236, 217, 5, 0, 159, 72, 120, 6, 38, 169, 90, + 66, 135, 44, 255, 27, 255, 255, 255, 255, 255, 255, 255, 252, 216, 122, 159, 27, 126, 1, 143, 149, 117, 212, 246, + 66, 66, 50, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 10, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6075940715703653440" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8685818791890827722" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14079839703963809745" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9dfb1d620000e011" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5fde4e07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f16e8fbdc569" + } + } + ] + }, + "cborHex": "bf1b545213e3a3d954401b788a3a2bfa10b9ca1bc365a39cd13437d1489dfb1d620000e011445fde4e0746f16e8fbdc569ff", + "cborBytes": [ + 191, 27, 84, 82, 19, 227, 163, 217, 84, 64, 27, 120, 138, 58, 43, 250, 16, 185, 202, 27, 195, 101, 163, 156, 209, + 52, 55, 209, 72, 157, 251, 29, 98, 0, 0, 224, 17, 68, 95, 222, 78, 7, 70, 241, 110, 143, 189, 197, 105, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 11, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a403b75bf5de2af" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5494706768457093640" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2161416985907114413" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14928889694450079910" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1eae28abc13497f9e792d4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9213889789486616130" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6833018881854422054" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4431976274165251117" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4efb21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10150573484125159946" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a4cfc" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9258193907900801692" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7341929084121770553" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1707946906251188168" + } + }, + { + "_tag": "ByteArray", + "bytearray": "29f1b036" + }, + { + "_tag": "ByteArray", + "bytearray": "654ce5061d6d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98d2f19a3462250b0c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2057084959384068679" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ccef41b6a3e1de6392b00642" + } + ] + } + } + ] + }, + "cborHex": "bf481a403b75bf5de2afd8669f1b4c411eb196d1d2089f1b1dfee54c087d31ad1bcf2e121498afd8a6ffff4b1eae28abc13497f9e792d4d8669f1b7fde4ff23df2ce429f1b5ed3c2785c783c261b3d818af092943c2dffff434efb211b8cde14cdc3c7820a438a4cfcd8669f1b807bb64ea61ce29c9f1b65e3c59a512fea391b17b3d8a9825457c84429f1b03646654ce5061d6dffff4998d2f19a3462250b0cd8669f1b1c8c3bdf24e2e2479f4cccef41b6a3e1de6392b00642ffffff", + "cborBytes": [ + 191, 72, 26, 64, 59, 117, 191, 93, 226, 175, 216, 102, 159, 27, 76, 65, 30, 177, 150, 209, 210, 8, 159, 27, 29, + 254, 229, 76, 8, 125, 49, 173, 27, 207, 46, 18, 20, 152, 175, 216, 166, 255, 255, 75, 30, 174, 40, 171, 193, 52, + 151, 249, 231, 146, 212, 216, 102, 159, 27, 127, 222, 79, 242, 61, 242, 206, 66, 159, 27, 94, 211, 194, 120, 92, + 120, 60, 38, 27, 61, 129, 138, 240, 146, 148, 60, 45, 255, 255, 67, 78, 251, 33, 27, 140, 222, 20, 205, 195, 199, + 130, 10, 67, 138, 76, 252, 216, 102, 159, 27, 128, 123, 182, 78, 166, 28, 226, 156, 159, 27, 101, 227, 197, 154, + 81, 47, 234, 57, 27, 23, 179, 216, 169, 130, 84, 87, 200, 68, 41, 241, 176, 54, 70, 101, 76, 229, 6, 29, 109, 255, + 255, 73, 152, 210, 241, 154, 52, 98, 37, 11, 12, 216, 102, 159, 27, 28, 140, 59, 223, 36, 226, 226, 71, 159, 76, + 204, 239, 65, 182, 163, 225, 222, 99, 146, 176, 6, 66, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 12, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03ccbb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "449328117182187622" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11997755042876006696" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adc0f9395747946896f59af6" + } + } + ] + }, + "cborHex": "bf4303ccbb9f1b063c558abc3d48661ba68096a508c6a128414fff413a4cadc0f9395747946896f59af6ff", + "cborBytes": [ + 191, 67, 3, 204, 187, 159, 27, 6, 60, 85, 138, 188, 61, 72, 102, 27, 166, 128, 150, 165, 8, 198, 161, 40, 65, 79, + 255, 65, 58, 76, 173, 192, 249, 57, 87, 71, 148, 104, 150, 245, 154, 246, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 13, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b57ffefcc058956aaed2b2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1730e1fe1a150" + } + } + ] + }, + "cborHex": "bf417a804bb57ffefcc058956aaed2b247e1730e1fe1a150ff", + "cborBytes": [ + 191, 65, 122, 128, 75, 181, 127, 254, 252, 192, 88, 149, 106, 174, 210, 178, 71, 225, 115, 14, 31, 225, 161, 80, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 14, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5edcb0cb21b6d3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10472825555927434192" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0fc5204d52" + } + ] + } + } + ] + }, + "cborHex": "bf475edcb0cb21b6d39f1b9156f35b0fb003d0450fc5204d52ffff", + "cborBytes": [ + 191, 71, 94, 220, 176, 203, 33, 182, 211, 159, 27, 145, 86, 243, 91, 15, 176, 3, 208, 69, 15, 197, 32, 77, 82, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 15, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa0ad746c4d6fa8406" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13281450582429147094" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18337351826407176628" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf49aa0ad746c4d6fa8406bf1bb85130efc3981fd61bfe7b5c54a65c39b4ffff", + "cborBytes": [ + 191, 73, 170, 10, 215, 70, 196, 214, 250, 132, 6, 191, 27, 184, 81, 48, 239, 195, 152, 31, 214, 27, 254, 123, 92, + 84, 166, 92, 57, 180, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 16, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2514329644189245323" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10511527425102821187" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15836774527393856647" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12393151872364880891" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e476b2e1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16487142030136937868" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03ae363d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18038013735836946776" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d234f72ad9e099b2a771c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aecfed0f671de4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7df2fedcc128305dc13122" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b22e4b17d6a225f8bd8669f1b91e072802c07b7439f1bdbc786869d43fc87ffff1babfd51f757c6a3fb44e476b2e11be4ce1852e3b98d8cbf4403ae363d1bfa53e5ec5a2d91584b0d234f72ad9e099b2a771c47aecfed0f671de441314b7df2fedcc128305dc13122ffff", + "cborBytes": [ + 191, 27, 34, 228, 177, 125, 106, 34, 95, 139, 216, 102, 159, 27, 145, 224, 114, 128, 44, 7, 183, 67, 159, 27, 219, + 199, 134, 134, 157, 67, 252, 135, 255, 255, 27, 171, 253, 81, 247, 87, 198, 163, 251, 68, 228, 118, 178, 225, 27, + 228, 206, 24, 82, 227, 185, 141, 140, 191, 68, 3, 174, 54, 61, 27, 250, 83, 229, 236, 90, 45, 145, 88, 75, 13, 35, + 79, 114, 173, 158, 9, 155, 42, 119, 28, 71, 174, 207, 237, 15, 103, 29, 228, 65, 49, 75, 125, 242, 254, 220, 193, + 40, 48, 93, 193, 49, 34, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 17, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1164916053708257991" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1237973f56dcc8e5e61a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "785696" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17977162063786696665" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37aaf8c402470207fe" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18064332814262076235" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8" + }, + { + "_tag": "ByteArray", + "bytearray": "b9fa3d44cf80f378907849" + } + ] + } + } + ] + }, + "cborHex": "bf1b102a9cfa966e3ac7a04a1237973f56dcc8e5e61abf437856961bf97bb5a661a25fd9ff4937aaf8c402470207fed8669f1bfab166fc5286034b9f41f84bb9fa3d44cf80f378907849ffffff", + "cborBytes": [ + 191, 27, 16, 42, 156, 250, 150, 110, 58, 199, 160, 74, 18, 55, 151, 63, 86, 220, 200, 229, 230, 26, 191, 67, 120, + 86, 150, 27, 249, 123, 181, 166, 97, 162, 95, 217, 255, 73, 55, 170, 248, 196, 2, 71, 2, 7, 254, 216, 102, 159, + 27, 250, 177, 102, 252, 82, 134, 3, 75, 159, 65, 248, 75, 185, 250, 61, 68, 207, 128, 243, 120, 144, 120, 73, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 18, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13831668039282849609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5061e96415" + } + } + ] + }, + "cborHex": "bf1bbff3f4cc6493f749455061e96415ff", + "cborBytes": [191, 27, 191, 243, 244, 204, 100, 147, 247, 73, 69, 80, 97, 233, 100, 21, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 19, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "800fff9500aa14488a00e0e4" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3226071116754039436" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f0f708171" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4c800fff9500aa14488a00e0e49f094202fa1b2cc54e969645b28cff458f0f708171a0ff", + "cborBytes": [ + 191, 76, 128, 15, 255, 149, 0, 170, 20, 72, 138, 0, 224, 228, 159, 9, 66, 2, 250, 27, 44, 197, 78, 150, 150, 69, + 178, 140, 255, 69, 143, 15, 112, 129, 113, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 20, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "035e51c91f910c7f3c1d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3200300567150302036" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19bf04e46a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5311158421300225244" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2896a1b6ea9b4704c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eff1ee229826da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6213060ebda2f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f6397e58727c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e28376e2f786d85b71101" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "889607175424122182" + } + } + } + ] + }, + "cborHex": "bf4a035e51c91f910c7f3c1d1b2c69c068ef7993544519bf04e46a1b49b50671c76ca4dc492896a1b6ea9b4704c047eff1ee229826da476213060ebda2f6472f6397e58727c04b9e28376e2f786d85b711011b0c58850340cb1d46ff", + "cborBytes": [ + 191, 74, 3, 94, 81, 201, 31, 145, 12, 127, 60, 29, 27, 44, 105, 192, 104, 239, 121, 147, 84, 69, 25, 191, 4, 228, + 106, 27, 73, 181, 6, 113, 199, 108, 164, 220, 73, 40, 150, 161, 182, 234, 155, 71, 4, 192, 71, 239, 241, 238, 34, + 152, 38, 218, 71, 98, 19, 6, 14, 189, 162, 246, 71, 47, 99, 151, 229, 135, 39, 192, 75, 158, 40, 55, 110, 47, 120, + 109, 133, 183, 17, 1, 27, 12, 88, 133, 3, 64, 203, 29, 70, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 21, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb84f9417725b655" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18359615140598348709" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8024696259736077753" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2a7d4127de7cfbe20eb29d75" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "79b3223b99163e" + }, + { + "_tag": "ByteArray", + "bytearray": "bf63404445b089d5185916" + } + ] + } + } + ] + }, + "cborHex": "bf039f48cb84f9417725b6551bfeca74b26c3f7ba51b6f5d72bb47f985b94c2a7d4127de7cfbe20eb29d75ff0fd87b9f4779b3223b99163e4bbf63404445b089d5185916ffff", + "cborBytes": [ + 191, 3, 159, 72, 203, 132, 249, 65, 119, 37, 182, 85, 27, 254, 202, 116, 178, 108, 63, 123, 165, 27, 111, 93, 114, + 187, 71, 249, 133, 185, 76, 42, 125, 65, 39, 222, 124, 251, 226, 14, 178, 157, 117, 255, 15, 216, 123, 159, 71, + 121, 179, 34, 59, 153, 22, 62, 75, 191, 99, 64, 68, 69, 176, 137, 213, 24, 89, 22, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 22, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11481624441304568481" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16389843884908291894" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b2f6db6ea4" + }, + { + "_tag": "ByteArray", + "bytearray": "f9a5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7ebb06469678c4fd8d9a8c07" + } + ] + } + } + ] + }, + "cborHex": "bf029f1b9f56ec98dc66d2a10303ff1bfffffffffffffff9d8669f1be3746c2d1c1127369f45b2f6db6ea442f9a51bfffffffffffffffb114c7ebb06469678c4fd8d9a8c07ffffff", + "cborBytes": [ + 191, 2, 159, 27, 159, 86, 236, 152, 220, 102, 210, 161, 3, 3, 255, 27, 255, 255, 255, 255, 255, 255, 255, 249, + 216, 102, 159, 27, 227, 116, 108, 45, 28, 17, 39, 54, 159, 69, 178, 246, 219, 110, 164, 66, 249, 165, 27, 255, + 255, 255, 255, 255, 255, 255, 251, 17, 76, 126, 187, 6, 70, 150, 120, 196, 253, 141, 154, 140, 7, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 23, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "952860275384287624" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e8d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2313329405801669811" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1530885082771008026" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7138773292304178252" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2779638963126998363" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11310204838994778338" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3918465636834583281" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3764005759459203992" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3274579927130692962" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12982891921928402028" + } + }, + { + "_tag": "ByteArray", + "bytearray": "692c6cce22" + }, + { + "_tag": "ByteArray", + "bytearray": "8ea28a3592" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10344316527018939571" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2406491187370985104" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16856015983281647981" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2635007750670058192" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17053174609972085104" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0d393d5f3adc8188422e8d1b201a98d6894624b39f1b153ecbdf2e82aa1a1b6312047c8bd61c4cff1b269342e8e905155b1b9cf5eb60853018e21b36612fbc5c19a2f1d8669f1b343c6f4bb1171b989f1b2d71a518213fdd621bb42c7f6aabd4b46c45692c6cce22458ea28a3592ffff1b8f8e6513252a94b31b216592fc1a5b06901be9ec993ad3cf316dd8669f1b24916d969f1702d09f1beca90bf4c818c170ffffff", + "cborBytes": [ + 191, 27, 13, 57, 61, 95, 58, 220, 129, 136, 66, 46, 141, 27, 32, 26, 152, 214, 137, 70, 36, 179, 159, 27, 21, 62, + 203, 223, 46, 130, 170, 26, 27, 99, 18, 4, 124, 139, 214, 28, 76, 255, 27, 38, 147, 66, 232, 233, 5, 21, 91, 27, + 156, 245, 235, 96, 133, 48, 24, 226, 27, 54, 97, 47, 188, 92, 25, 162, 241, 216, 102, 159, 27, 52, 60, 111, 75, + 177, 23, 27, 152, 159, 27, 45, 113, 165, 24, 33, 63, 221, 98, 27, 180, 44, 127, 106, 171, 212, 180, 108, 69, 105, + 44, 108, 206, 34, 69, 142, 162, 138, 53, 146, 255, 255, 27, 143, 142, 101, 19, 37, 42, 148, 179, 27, 33, 101, 146, + 252, 26, 91, 6, 144, 27, 233, 236, 153, 58, 211, 207, 49, 109, 216, 102, 159, 27, 36, 145, 109, 150, 159, 23, 2, + 208, 159, 27, 236, 169, 11, 244, 200, 24, 193, 112, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 24, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5074430367934144339" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11704182829236732879" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7915083202707441278" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8288930824729645622" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d8f442e4c15dff59247c73" + } + ] + } + } + ] + }, + "cborHex": "bf4209cc1b466bff88be2b5f534128d8669f1ba26d9c4592e1c3cf9f1b6dd8063ca909c67e1b730832ab1fcbd2364bd8f442e4c15dff59247c73ffffff", + "cborBytes": [ + 191, 66, 9, 204, 27, 70, 107, 255, 136, 190, 43, 95, 83, 65, 40, 216, 102, 159, 27, 162, 109, 156, 69, 146, 225, + 195, 207, 159, 27, 109, 216, 6, 60, 169, 9, 198, 126, 27, 115, 8, 50, 171, 31, 203, 210, 54, 75, 216, 244, 66, + 228, 193, 93, 255, 89, 36, 124, 115, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 25, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1526521710588562796" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "33031c9e0667ff04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4f413d1b03c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2891092722477053047" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f3b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5383228455924234496" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1fe01" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6021168518930067516" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7743156996479816358" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8917128682331682676" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5903904703032136363" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17782896527569838957" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70e518c162451081b5004c60" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b152f4b686d8d8d6c1bfffffffffffffffc4833031c9e0667ff041bfffffffffffffffe46c4f413d1b03cbf1b281f39836ff63477421f3b1b4ab511c25423790043d1fe011b538f7cddcf97703c1b6b753843674292a61b7bc0014aa6d3b7741b51eee20c13fd12ab1bf6c98a2c8b53e36d4c70e518c162451081b5004c60ffff", + "cborBytes": [ + 191, 27, 21, 47, 75, 104, 109, 141, 141, 108, 27, 255, 255, 255, 255, 255, 255, 255, 252, 72, 51, 3, 28, 158, 6, + 103, 255, 4, 27, 255, 255, 255, 255, 255, 255, 255, 254, 70, 196, 244, 19, 209, 176, 60, 191, 27, 40, 31, 57, 131, + 111, 246, 52, 119, 66, 31, 59, 27, 74, 181, 17, 194, 84, 35, 121, 0, 67, 209, 254, 1, 27, 83, 143, 124, 221, 207, + 151, 112, 60, 27, 107, 117, 56, 67, 103, 66, 146, 166, 27, 123, 192, 1, 74, 166, 211, 183, 116, 27, 81, 238, 226, + 12, 19, 253, 18, 171, 27, 246, 201, 138, 44, 139, 83, 227, 109, 76, 112, 229, 24, 193, 98, 69, 16, 129, 181, 0, + 76, 96, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 26, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1606840172383976737" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12380968324678021047" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2243265332014441655" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2748032666981146468" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7948314188043057327" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10019491701354139258" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7560788879801833650" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3d7746b2bc0d610be2c37397" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15092222360434831850" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16664391464118767573" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14061856265198981189" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10180693150840152500" + } + } + } + ] + }, + "cborHex": "bf1b164ca49f95c63d219f1babd2091817cbefb7ff1b1f21adef23ab64b71b2622f926a2949f641b6e4e15a45d80f8afd8669f1b8b0c629de9300e7a9f1b68ed516d6a4fd8b24c3d7746b2bc0d610be2c373971bd172584658ecf1ea1be743cfbeb0d9cfd5ffff1bc325bfc531c950451b8d49167b271461b4ff", + "cborBytes": [ + 191, 27, 22, 76, 164, 159, 149, 198, 61, 33, 159, 27, 171, 210, 9, 24, 23, 203, 239, 183, 255, 27, 31, 33, 173, + 239, 35, 171, 100, 183, 27, 38, 34, 249, 38, 162, 148, 159, 100, 27, 110, 78, 21, 164, 93, 128, 248, 175, 216, + 102, 159, 27, 139, 12, 98, 157, 233, 48, 14, 122, 159, 27, 104, 237, 81, 109, 106, 79, 216, 178, 76, 61, 119, 70, + 178, 188, 13, 97, 11, 226, 195, 115, 151, 27, 209, 114, 88, 70, 88, 236, 241, 234, 27, 231, 67, 207, 190, 176, + 217, 207, 213, 255, 255, 27, 195, 37, 191, 197, 49, 201, 80, 69, 27, 141, 73, 22, 123, 39, 20, 97, 180, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 27, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "be300ac30e8c1b" + }, + { + "_tag": "ByteArray", + "bytearray": "981255" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11795201176315030163" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f0a9d83592" + }, + { + "_tag": "ByteArray", + "bytearray": "c9159e5a7ccbb4" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15147530100733720718" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "333385cd233a3e3c32537e9f" + } + } + ] + }, + "cborHex": "bf13d905089f47be300ac30e8c1b439812551ba3b0f8f9e886ea9345f0a9d8359247c9159e5a7ccbb4ff1bd236d65f1ec5388e4c333385cd233a3e3c32537e9fff", + "cborBytes": [ + 191, 19, 217, 5, 8, 159, 71, 190, 48, 10, 195, 14, 140, 27, 67, 152, 18, 85, 27, 163, 176, 248, 249, 232, 134, + 234, 147, 69, 240, 169, 216, 53, 146, 71, 201, 21, 158, 90, 124, 203, 180, 255, 27, 210, 54, 214, 95, 30, 197, 56, + 142, 76, 51, 51, 133, 205, 35, 58, 62, 60, 50, 83, 126, 159, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 28, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7064211582271002423" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17409999256150538337" + } + } + } + ] + }, + "cborHex": "bf1b62091f019b7697371bf19cbe14d2aaf861ff", + "cborBytes": [191, 27, 98, 9, 31, 1, 155, 118, 151, 55, 27, 241, 156, 190, 20, 210, 170, 248, 97, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 29, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04b0e3ba4ee3bac165e59280" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bfc9379e441ab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67a2ebea1d18fe31e4215e95" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14e11510cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7061883467899913964" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "371475d4a58b59eaf922f94d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4773779129882366357" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a2d00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9800887715917950804" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "941637e865622e64ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9807f9f857197eb8b75b0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b75b5a7a768a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b97b6f792d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4928d70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65498cdb6c9718d3" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68efa42143d9f48ebde5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95139d4fe0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef02096310ad98784f955da4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9485496754088914289" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14083059469749238391" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2296095476724477351" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12918209473615794473" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6460098681528d4b69592bf8" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f07155ad" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8fa5a4a8c4f47c7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14378579222266886308" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "197101712856994884" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c04b0e3ba4ee3bac165e59280473bfc9379e441ab4c67a2ebea1d18fe31e4215e95bf4514e11510cf1b6200d9993d60c6ec4c371475d4a58b59eaf922f94d1b423fded378cfd195434a2d001b8803bf7346c76f5449941637e865622e64ff4bd9807f9f857197eb8b75b046b75b5a7a768a45b97b6f792d44d4928d704865498cdb6c9718d3ff4a68efa42143d9f48ebde54595139d4fe04cef02096310ad98784f955da4d8669f1b83a3410aa1972d719f41b01bc37113f8f51aba771b1fdd5eabbc8b2da71bb346b31298f491294c6460098681528d4b69592bf8ffff44f07155ad9f488fa5a4a8c4f47c7b1bc78af99f2607b8a441bc1b02bc3ef6ab765444ffff", + "cborBytes": [ + 191, 76, 4, 176, 227, 186, 78, 227, 186, 193, 101, 229, 146, 128, 71, 59, 252, 147, 121, 228, 65, 171, 76, 103, + 162, 235, 234, 29, 24, 254, 49, 228, 33, 94, 149, 191, 69, 20, 225, 21, 16, 207, 27, 98, 0, 217, 153, 61, 96, 198, + 236, 76, 55, 20, 117, 212, 165, 139, 89, 234, 249, 34, 249, 77, 27, 66, 63, 222, 211, 120, 207, 209, 149, 67, 74, + 45, 0, 27, 136, 3, 191, 115, 70, 199, 111, 84, 73, 148, 22, 55, 232, 101, 98, 46, 100, 255, 75, 217, 128, 127, + 159, 133, 113, 151, 235, 139, 117, 176, 70, 183, 91, 90, 122, 118, 138, 69, 185, 123, 111, 121, 45, 68, 212, 146, + 141, 112, 72, 101, 73, 140, 219, 108, 151, 24, 211, 255, 74, 104, 239, 164, 33, 67, 217, 244, 142, 189, 229, 69, + 149, 19, 157, 79, 224, 76, 239, 2, 9, 99, 16, 173, 152, 120, 79, 149, 93, 164, 216, 102, 159, 27, 131, 163, 65, + 10, 161, 151, 45, 113, 159, 65, 176, 27, 195, 113, 19, 248, 245, 26, 186, 119, 27, 31, 221, 94, 171, 188, 139, 45, + 167, 27, 179, 70, 179, 18, 152, 244, 145, 41, 76, 100, 96, 9, 134, 129, 82, 141, 75, 105, 89, 43, 248, 255, 255, + 68, 240, 113, 85, 173, 159, 72, 143, 165, 164, 168, 196, 244, 124, 123, 27, 199, 138, 249, 159, 38, 7, 184, 164, + 65, 188, 27, 2, 188, 62, 246, 171, 118, 84, 68, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 30, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15509609460286173003" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14277482076881402747" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16226256475907467675" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9950029302789922293" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17202854897138597156" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10960467105663836706" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bd73d33a175652f4b1bc623ce4db785bb7b1be12f3e4b60d8a99bd8669f1b8a159aeef1855df59f1beebcd1626288fd241b981b66c2f5726222ffffff", + "cborBytes": [ + 191, 27, 215, 61, 51, 161, 117, 101, 47, 75, 27, 198, 35, 206, 77, 183, 133, 187, 123, 27, 225, 47, 62, 75, 96, + 216, 169, 155, 216, 102, 159, 27, 138, 21, 154, 238, 241, 133, 93, 245, 159, 27, 238, 188, 209, 98, 98, 136, 253, + 36, 27, 152, 27, 102, 194, 245, 114, 98, 34, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 31, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "327c821dd321bc3dd1ab86" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a45984fd91" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11642880325452127367" + } + } + } + ] + }, + "cborHex": "bf4b327c821dd321bc3dd1ab86a045a45984fd911ba193d1f828f55c87ff", + "cborBytes": [ + 191, 75, 50, 124, 130, 29, 211, 33, 188, 61, 209, 171, 134, 160, 69, 164, 89, 132, 253, 145, 27, 161, 147, 209, + 248, 40, 245, 92, 135, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 32, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbe6fb5a060035" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "023abc" + } + } + ] + }, + "cborHex": "bf47fbe6fb5a06003543023abcff", + "cborBytes": [191, 71, 251, 230, 251, 90, 6, 0, 53, 67, 2, 58, 188, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 33, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08660f" + } + } + ] + }, + "cborHex": "bf424cec4308660fff", + "cborBytes": [191, 66, 76, 236, 67, 8, 102, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 34, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5809430616055710189" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2006535638322158911" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7342249462418724303" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12725047376660043209" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18221874693157020219" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10809797720892809013" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3291132786725062834" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15660639501760903991" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8078731603616450270" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15981069940561645764" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f8d00ce6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16695319763698978185" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "506327" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16732501396624328278" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10047107095199577033" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b509f3e5d994781edbf1b1bd8a5882f5a9d3f1b65e4e8fc33c555cf1bb098732b3bd695c91bfce11a7d634de23bff1b96041dc11fa49f35d8669f1b2dac73d5156388b29f1bd955c4a739e8bb371b701d6b972d47c6deffff1bddc82a7089d990c49f44f8d00ce6ff1be7b1b0de96d60d89435063271be835c95e1d854656bf1b8b6e7eabd5ad73c9418bffff", + "cborBytes": [ + 191, 27, 80, 159, 62, 93, 153, 71, 129, 237, 191, 27, 27, 216, 165, 136, 47, 90, 157, 63, 27, 101, 228, 232, 252, + 51, 197, 85, 207, 27, 176, 152, 115, 43, 59, 214, 149, 201, 27, 252, 225, 26, 125, 99, 77, 226, 59, 255, 27, 150, + 4, 29, 193, 31, 164, 159, 53, 216, 102, 159, 27, 45, 172, 115, 213, 21, 99, 136, 178, 159, 27, 217, 85, 196, 167, + 57, 232, 187, 55, 27, 112, 29, 107, 151, 45, 71, 198, 222, 255, 255, 27, 221, 200, 42, 112, 137, 217, 144, 196, + 159, 68, 248, 208, 12, 230, 255, 27, 231, 177, 176, 222, 150, 214, 13, 137, 67, 80, 99, 39, 27, 232, 53, 201, 94, + 29, 133, 70, 86, 191, 27, 139, 110, 126, 171, 213, 173, 115, 201, 65, 139, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 35, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5053252002805777009" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "70dd778eb0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13226192695134049275" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4620c1ec5bc502719f4570dd778eb01bb78ce02e4c54d3fbffff", + "cborBytes": [ + 191, 27, 70, 32, 193, 236, 91, 197, 2, 113, 159, 69, 112, 221, 119, 142, 176, 27, 183, 140, 224, 46, 76, 84, 211, + 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 36, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2045842701573795350" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5414742733520186373" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fc54e5c69" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e544be0b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18757ca09f4be5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4963850449382719351" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cba09f27a37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "535497315202678177" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "13d224bd92" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1323369781328280715" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14885304264519348462" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5967175024839503489" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14407912101252052220" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6835118153051611403" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2149297687752465575" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11402702497495844967" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13572750256060138479" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12613719343043336331" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16539896542118432990" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5071069848335020441" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c692e08" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b165e94c982f3c" + }, + { + "_tag": "ByteArray", + "bytearray": "533c4444" + }, + { + "_tag": "ByteArray", + "bytearray": "aad94b" + }, + { + "_tag": "ByteArray", + "bytearray": "e295d7123064362d7e62" + }, + { + "_tag": "ByteArray", + "bytearray": "56aadd0d855df60a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f8890139eb3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8737748252769821333" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9fbd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7797640226812601992" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5df4d320" + }, + { + "_tag": "ByteArray", + "bytearray": "93d3ce2c6b75" + }, + { + "_tag": "ByteArray", + "bytearray": "c8376b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2324456056369392265" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15429864562955333878" + } + } + ] + } + } + ] + }, + "cborHex": "bf4104bf1b1c644b1905a1ae161b4b2507d3dd992c05450fc54e5c6944e544be0b4718757ca09f4be51b44e323af219ebf77467cba09f27a371b076e77f892d4bda1ff4513d224bd92bf1b125d8dcdfa8efc8b1bce93395ce44870ee1b52cfaa11d4242e811bc7f32fb83e2e34fc1b5edb37bf0677210b1b1dd3d6dc0b0ddca71b9e3e8981e2b3086741fa1bbc5c1872458e83ef1baf0ceee98292588b1be5898445deae50de1b46600f28cd33f199ff445c692e089f47b165e94c982f3c44533c444443aad94b4ae295d7123064362d7e624856aadd0d855df60aff468f8890139eb31b7942b7bdc722a295429fbdd8669f1b6c36c878fd7626889f445df4d3204693d3ce2c6b7543c8376b1b20422077bfe72a891bd621e411af5730f6ffffff", + "cborBytes": [ + 191, 65, 4, 191, 27, 28, 100, 75, 25, 5, 161, 174, 22, 27, 75, 37, 7, 211, 221, 153, 44, 5, 69, 15, 197, 78, 92, + 105, 68, 229, 68, 190, 11, 71, 24, 117, 124, 160, 159, 75, 229, 27, 68, 227, 35, 175, 33, 158, 191, 119, 70, 124, + 186, 9, 242, 122, 55, 27, 7, 110, 119, 248, 146, 212, 189, 161, 255, 69, 19, 210, 36, 189, 146, 191, 27, 18, 93, + 141, 205, 250, 142, 252, 139, 27, 206, 147, 57, 92, 228, 72, 112, 238, 27, 82, 207, 170, 17, 212, 36, 46, 129, 27, + 199, 243, 47, 184, 62, 46, 52, 252, 27, 94, 219, 55, 191, 6, 119, 33, 11, 27, 29, 211, 214, 220, 11, 13, 220, 167, + 27, 158, 62, 137, 129, 226, 179, 8, 103, 65, 250, 27, 188, 92, 24, 114, 69, 142, 131, 239, 27, 175, 12, 238, 233, + 130, 146, 88, 139, 27, 229, 137, 132, 69, 222, 174, 80, 222, 27, 70, 96, 15, 40, 205, 51, 241, 153, 255, 68, 92, + 105, 46, 8, 159, 71, 177, 101, 233, 76, 152, 47, 60, 68, 83, 60, 68, 68, 67, 170, 217, 75, 74, 226, 149, 215, 18, + 48, 100, 54, 45, 126, 98, 72, 86, 170, 221, 13, 133, 93, 246, 10, 255, 70, 143, 136, 144, 19, 158, 179, 27, 121, + 66, 183, 189, 199, 34, 162, 149, 66, 159, 189, 216, 102, 159, 27, 108, 54, 200, 120, 253, 118, 38, 136, 159, 68, + 93, 244, 211, 32, 70, 147, 211, 206, 44, 107, 117, 67, 200, 55, 107, 27, 32, 66, 32, 119, 191, 231, 42, 137, 27, + 214, 33, 228, 17, 175, 87, 48, 246, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 37, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d0842" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0b5cf7c75a92" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1363739381867926523" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c09b4905ebcd32b125a22b27" + } + ] + } + } + ] + }, + "cborHex": "bf439d08429f460b5cf7c75a921b12ecf9be0e72d3fb4cc09b4905ebcd32b125a22b27ffff", + "cborBytes": [ + 191, 67, 157, 8, 66, 159, 70, 11, 92, 247, 199, 90, 146, 27, 18, 236, 249, 190, 14, 114, 211, 251, 76, 192, 155, + 73, 5, 235, 205, 50, 177, 37, 162, 43, 39, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 38, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "406beea9bba1f67f79c8f1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c70bf27915e2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2843134789699433114" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74368b8a0e92c0548847af27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14746476970791025592" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7083bd0bf2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2878997203435600827" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "651d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3411091382386487215" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17118406062806797453" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5174057762189330922" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9de95f171fd92c97" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "772e07c680faea" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2782831881884112571" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2601f4752b85871c46c0e0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12614177286077096518" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e53e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82f20996e3a96812e600" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca727dc6c9a9ab6ecf" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "862d908cd9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8738917953836206868" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91f2166dd52b5698a4af29" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18168950118445007256" + } + } + } + ] + }, + "cborHex": "bf4b406beea9bba1f67f79c8f19f46c70bf27915e21b2774d8071496f29a4c74368b8a0e92c0548847af271bcca602acbc7a3bb8ff457083bd0bf2bf1b27f440b3f41f3bbb42651d1b2f56a18a1f8aefaf1bed90cb9dee7e0c8d1b47cdf21f12a5c9ea489de95f171fd92c97ff47772e07c680faeabf1b269e9ada3d5596bb4b2601f4752b85871c46c0e01baf0e8f68ae6d224642e53e4a82f20996e3a96812e60049ca727dc6c9a9ab6ecfff45862d908cd91b7946df9407b0cb144b91f2166dd52b5698a4af291bfc2513de97b4c198ff", + "cborBytes": [ + 191, 75, 64, 107, 238, 169, 187, 161, 246, 127, 121, 200, 241, 159, 70, 199, 11, 242, 121, 21, 226, 27, 39, 116, + 216, 7, 20, 150, 242, 154, 76, 116, 54, 139, 138, 14, 146, 192, 84, 136, 71, 175, 39, 27, 204, 166, 2, 172, 188, + 122, 59, 184, 255, 69, 112, 131, 189, 11, 242, 191, 27, 39, 244, 64, 179, 244, 31, 59, 187, 66, 101, 29, 27, 47, + 86, 161, 138, 31, 138, 239, 175, 27, 237, 144, 203, 157, 238, 126, 12, 141, 27, 71, 205, 242, 31, 18, 165, 201, + 234, 72, 157, 233, 95, 23, 31, 217, 44, 151, 255, 71, 119, 46, 7, 198, 128, 250, 234, 191, 27, 38, 158, 154, 218, + 61, 85, 150, 187, 75, 38, 1, 244, 117, 43, 133, 135, 28, 70, 192, 224, 27, 175, 14, 143, 104, 174, 109, 34, 70, + 66, 229, 62, 74, 130, 242, 9, 150, 227, 169, 104, 18, 230, 0, 73, 202, 114, 125, 198, 201, 169, 171, 110, 207, + 255, 69, 134, 45, 144, 140, 217, 27, 121, 70, 223, 148, 7, 176, 203, 20, 75, 145, 242, 22, 109, 213, 43, 86, 152, + 164, 175, 41, 27, 252, 37, 19, 222, 151, 180, 193, 152, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 39, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4360737188797857467" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10202415076464501630" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d2ea7ae3437b9e05c1" + }, + { + "_tag": "ByteArray", + "bytearray": "ac56c6217c85b38121" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7635375298386816127" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11b8b6a2ce849b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9530478237084265782" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1eb90e22" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12263343264042634998" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13987931214485989233" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1900511402615556232" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5fae628bb5228873ed7c4ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3672143158441697103" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7442526544595043404" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5263211910458973532" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13148609887911245129" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7839104482127060478" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17305727081539870499" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10051374560522727277" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb2bb7250528" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3c84735e7921bebbd8669f1b8d96427513c1a37e9f49d2ea7ae3437b9e05c149ac56c6217c85b38121ffff1b69f64d6143236c7f4711b8b6a2ce849b1b84430f7644ffad36441eb90e221baa3025b983f0cef6a01bc21f1d540e092771bf1b1a5ff90d247ac8884cc5fae628bb5228873ed7c4ff1b32f612bf2b4c5f4f1b67492a75ca00c44c1b490aaf58cc831d5c1bb6793f075b2375491b6cca17fe3e5b1dfe1bf02a4b174b0a9f231b8b7da7e8885aef6d46cb2bb7250528ffff", + "cborBytes": [ + 191, 27, 60, 132, 115, 94, 121, 33, 190, 187, 216, 102, 159, 27, 141, 150, 66, 117, 19, 193, 163, 126, 159, 73, + 210, 234, 122, 227, 67, 123, 158, 5, 193, 73, 172, 86, 198, 33, 124, 133, 179, 129, 33, 255, 255, 27, 105, 246, + 77, 97, 67, 35, 108, 127, 71, 17, 184, 182, 162, 206, 132, 155, 27, 132, 67, 15, 118, 68, 255, 173, 54, 68, 30, + 185, 14, 34, 27, 170, 48, 37, 185, 131, 240, 206, 246, 160, 27, 194, 31, 29, 84, 14, 9, 39, 113, 191, 27, 26, 95, + 249, 13, 36, 122, 200, 136, 76, 197, 250, 230, 40, 187, 82, 40, 135, 62, 215, 196, 255, 27, 50, 246, 18, 191, 43, + 76, 95, 79, 27, 103, 73, 42, 117, 202, 0, 196, 76, 27, 73, 10, 175, 88, 204, 131, 29, 92, 27, 182, 121, 63, 7, 91, + 35, 117, 73, 27, 108, 202, 23, 254, 62, 91, 29, 254, 27, 240, 42, 75, 23, 75, 10, 159, 35, 27, 139, 125, 167, 232, + 136, 90, 239, 109, 70, 203, 43, 183, 37, 5, 40, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 40, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2705348221017363450" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3743109190670586301" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13826495729735071939" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3f1d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4901103864616445879" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3000bc969d61ad5ac1e8de66" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18328289926185325964" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cad6780e31230b2dafd9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6866697487199145232" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14680134945713516163" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5be063894c5d6776" + } + } + ] + }, + "cborHex": "bf1b258b53df9b7993fa801b33f231fa216b91bdd8669f1bbfe1949c3b5078c39f423f1dffff1b440437ff69c1e7b7bf4c3000bc969d61ad5ac1e8de661bfe5b2a9496a5958c4acad6780e31230b2dafd91b5f4b68fbb8928d10ff1bcbba50f4560d6e83485be063894c5d6776ff", + "cborBytes": [ + 191, 27, 37, 139, 83, 223, 155, 121, 147, 250, 128, 27, 51, 242, 49, 250, 33, 107, 145, 189, 216, 102, 159, 27, + 191, 225, 148, 156, 59, 80, 120, 195, 159, 66, 63, 29, 255, 255, 27, 68, 4, 55, 255, 105, 193, 231, 183, 191, 76, + 48, 0, 188, 150, 157, 97, 173, 90, 193, 232, 222, 102, 27, 254, 91, 42, 148, 150, 165, 149, 140, 74, 202, 214, + 120, 14, 49, 35, 11, 45, 175, 217, 27, 95, 75, 104, 251, 184, 146, 141, 16, 255, 27, 203, 186, 80, 244, 86, 13, + 110, 131, 72, 91, 224, 99, 137, 76, 93, 103, 118, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 41, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "31c9bf92" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6179d699e1ee9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ee379e107d6f116ead4" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4431c9bf9247d6179d699e1ee94a6ee379e107d6f116ead4a0ff", + "cborBytes": [ + 191, 68, 49, 201, 191, 146, 71, 214, 23, 157, 105, 158, 30, 233, 74, 110, 227, 121, 225, 7, 214, 241, 22, 234, + 212, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 42, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14880688b7023f9afcf9fea5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "45b2e89c2c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c14880688b7023f9afcf9fea5bf4545b2e89c2c4105ffff", + "cborBytes": [ + 191, 76, 20, 136, 6, 136, 183, 2, 63, 154, 252, 249, 254, 165, 191, 69, 69, 178, 232, 156, 44, 65, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 43, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12800497146813991113" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66b4404da48d1e22c94dd3" + } + } + ] + }, + "cborHex": "bf1bb1a48055c83fc8c94b66b4404da48d1e22c94dd3ff", + "cborBytes": [ + 191, 27, 177, 164, 128, 85, 200, 63, 200, 201, 75, 102, 180, 64, 77, 164, 141, 30, 34, 201, 77, 211, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 44, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01fdf8e2ad3ff4aa0aee28" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14667976369202503296" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f42217ce9b181" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7823256681218533809" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "698cacfd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78dff3f20ea91041e186" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50d2a88e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c298" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "91" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14850980653431526333" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14334850420831094369" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec7db851a00409" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7692666146564069821" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2fca5f02cb6f04461b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8519759536693092339" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11852780130653208630" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13709016713042938731" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16881093234841323913" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "814490571878867298" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4b01fdf8e2ad3ff4aa0aee281bcb8f1ecb24239e80474f42217ce9b1811b6c91ca808ebb69b144698cacfd4a78dff3f20ea91041e18641904450d2a88e42c2989f41911bce1948386dfc13bd1bc6ef9e8229ff0661ff47ec7db851a00409bf1b6ac1d71a519fd9bd492fca5f02cb6f04461b1b763c4428b4569ff341e21ba47d88bae86480361bbe40361128d14b6b1bea45b0db72f789891b0b4da6dc19bea162ffff", + "cborBytes": [ + 191, 75, 1, 253, 248, 226, 173, 63, 244, 170, 10, 238, 40, 27, 203, 143, 30, 203, 36, 35, 158, 128, 71, 79, 66, + 33, 124, 233, 177, 129, 27, 108, 145, 202, 128, 142, 187, 105, 177, 68, 105, 140, 172, 253, 74, 120, 223, 243, + 242, 14, 169, 16, 65, 225, 134, 65, 144, 68, 80, 210, 168, 142, 66, 194, 152, 159, 65, 145, 27, 206, 25, 72, 56, + 109, 252, 19, 189, 27, 198, 239, 158, 130, 41, 255, 6, 97, 255, 71, 236, 125, 184, 81, 160, 4, 9, 191, 27, 106, + 193, 215, 26, 81, 159, 217, 189, 73, 47, 202, 95, 2, 203, 111, 4, 70, 27, 27, 118, 60, 68, 40, 180, 86, 159, 243, + 65, 226, 27, 164, 125, 136, 186, 232, 100, 128, 54, 27, 190, 64, 54, 17, 40, 209, 75, 107, 27, 234, 69, 176, 219, + 114, 247, 137, 137, 27, 11, 77, 166, 220, 25, 190, 161, 98, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 45, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13556223308508984574" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12813572667571354673" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3536366833685627152" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16391952817988877348" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bbc2161466f8c74fed8669f1bb1d2f473b23ebc319f1b3113b2e6154e01101be37bea3d5b30bc24ffffff", + "cborBytes": [ + 191, 27, 188, 33, 97, 70, 111, 140, 116, 254, 216, 102, 159, 27, 177, 210, 244, 115, 178, 62, 188, 49, 159, 27, + 49, 19, 178, 230, 21, 78, 1, 16, 27, 227, 123, 234, 61, 91, 48, 188, 36, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 46, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a03fd7f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1730515136727452973" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3059121835dbb452c7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "69" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8798121081425906994" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13059591224874108834" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da718eed1ecb95c86f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "922355d72714580535" + } + } + ] + }, + "cborHex": "bf440a03fd7f1b1804065923138d2d41110b493059121835dbb452c7bf41691b7a19348255444d32ff424b811bb53cfd06be6e07a249da718eed1ecb95c86f49922355d72714580535ff", + "cborBytes": [ + 191, 68, 10, 3, 253, 127, 27, 24, 4, 6, 89, 35, 19, 141, 45, 65, 17, 11, 73, 48, 89, 18, 24, 53, 219, 180, 82, + 199, 191, 65, 105, 27, 122, 25, 52, 130, 85, 68, 77, 50, 255, 66, 75, 129, 27, 181, 60, 253, 6, 190, 110, 7, 162, + 73, 218, 113, 142, 237, 30, 203, 149, 200, 111, 73, 146, 35, 85, 215, 39, 20, 88, 5, 53, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 47, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "608e63dd213ebe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9429843697851767983" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad5c85f61f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5693af9a6de6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4d080c14a84312551" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa56d14e6705582d9f" + } + ] + } + } + ] + }, + "cborHex": "bf47608e63dd213ebe1b82dd88e1b9e91caf45ad5c85f61f465693af9a6de649e4d080c14a843125519f49fa56d14e6705582d9fffff", + "cborBytes": [ + 191, 71, 96, 142, 99, 221, 33, 62, 190, 27, 130, 221, 136, 225, 185, 233, 28, 175, 69, 173, 92, 133, 246, 31, 70, + 86, 147, 175, 154, 109, 230, 73, 228, 208, 128, 193, 74, 132, 49, 37, 81, 159, 73, 250, 86, 209, 78, 103, 5, 88, + 45, 159, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 48, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9266378003730562712" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "26475f80305c9f6a" + }, + { + "_tag": "ByteArray", + "bytearray": "45df0c7ef9de2366ecfb7ecd" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19c64b674704b962c9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "892063244941036979" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9d030f6f16e8b4ee9f" + }, + { + "_tag": "ByteArray", + "bytearray": "e41d39e4bea6260045fa41" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "583f9c70aab30bb71ca8e0f3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1719985402999983556" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d39c542f3be2" + } + ] + } + } + ] + }, + "cborHex": "bf4106d8669f1b8098c9b2f2da7e989f4826475f80305c9f6a4c45df0c7ef9de2366ecfb7ecdffff4919c64b674704b962c9d8669f1b0c613ecb7fe48db39f499d030f6f16e8b4ee9f4be41d39e4bea6260045fa41ffff4c583f9c70aab30bb71ca8e0f3d8669f1b17de9d9c74abcdc49f46d39c542f3be2ffffff", + "cborBytes": [ + 191, 65, 6, 216, 102, 159, 27, 128, 152, 201, 178, 242, 218, 126, 152, 159, 72, 38, 71, 95, 128, 48, 92, 159, 106, + 76, 69, 223, 12, 126, 249, 222, 35, 102, 236, 251, 126, 205, 255, 255, 73, 25, 198, 75, 103, 71, 4, 185, 98, 201, + 216, 102, 159, 27, 12, 97, 62, 203, 127, 228, 141, 179, 159, 73, 157, 3, 15, 111, 22, 232, 180, 238, 159, 75, 228, + 29, 57, 228, 190, 166, 38, 0, 69, 250, 65, 255, 255, 76, 88, 63, 156, 112, 170, 179, 11, 183, 28, 168, 224, 243, + 216, 102, 159, 27, 23, 222, 157, 156, 116, 171, 205, 196, 159, 70, 211, 156, 84, 47, 59, 226, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 49, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0306d0aa54ebe8800d" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2697" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0319c0ed3d74b9010c5749" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6a98853ee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a29c15307fdb9559cbfaa54" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4273174874486861617" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "980a006d962bb71a91b10b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e65fe2ae338fd811f2972d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3574098650074311892" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "709c951b17ee797861259ec8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15186101387289627488" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46fad8fb020001fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "883a3faac85dc81af7" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7efbc771" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9332d1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17149943611911512363" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5644605947417672689" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4d38e73bf550b8" + }, + { + "_tag": "ByteArray", + "bytearray": "b4d2" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4481a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + } + ] + }, + "cborHex": "bf490306d0aa54ebe8800da0422697bf4b0319c0ed3d74b9010c574945f6a98853ee4c0a29c15307fdb9559cbfaa541b3b4d5de878e9ef3141544b980a006d962bb71a91b10b4c6e65fe2ae338fd811f2972d51b3199bfc92de1ecd44c709c951b17ee797861259ec81bd2bfdec098770b60ff4846fad8fb020001fb1449883a3faac85dc81af79f447efbc771ff439332d19f1bee00d6d9c9f7212b1b4e55ab33e8e33bf1474d38e73bf550b842b4d2ff43d4481a05ff", + "cborBytes": [ + 191, 73, 3, 6, 208, 170, 84, 235, 232, 128, 13, 160, 66, 38, 151, 191, 75, 3, 25, 192, 237, 61, 116, 185, 1, 12, + 87, 73, 69, 246, 169, 136, 83, 238, 76, 10, 41, 193, 83, 7, 253, 185, 85, 156, 191, 170, 84, 27, 59, 77, 93, 232, + 120, 233, 239, 49, 65, 84, 75, 152, 10, 0, 109, 150, 43, 183, 26, 145, 177, 11, 76, 110, 101, 254, 42, 227, 56, + 253, 129, 31, 41, 114, 213, 27, 49, 153, 191, 201, 45, 225, 236, 212, 76, 112, 156, 149, 27, 23, 238, 121, 120, + 97, 37, 158, 200, 27, 210, 191, 222, 192, 152, 119, 11, 96, 255, 72, 70, 250, 216, 251, 2, 0, 1, 251, 20, 73, 136, + 58, 63, 170, 200, 93, 200, 26, 247, 159, 68, 126, 251, 199, 113, 255, 67, 147, 50, 209, 159, 27, 238, 0, 214, 217, + 201, 247, 33, 43, 27, 78, 85, 171, 51, 232, 227, 59, 241, 71, 77, 56, 231, 59, 245, 80, 184, 66, 180, 210, 255, + 67, 212, 72, 26, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 50, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "44" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e1d41a7b40eaeb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9393" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e25231be29" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91dacaa358" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc36884fdce05b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77e932" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8ed28" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73b05cb5905fbef516a51b6a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7541920777294669489" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4144bf482e1d41a7b40eaeb642939345e25231be294591dacaa358ff41d98047dc36884fdce05b4377e93243e8ed28bf423c4c41014c73b05cb5905fbef516a51b6a1b68aa48fcf6c966b1ffff", + "cborBytes": [ + 191, 65, 68, 191, 72, 46, 29, 65, 167, 180, 14, 174, 182, 66, 147, 147, 69, 226, 82, 49, 190, 41, 69, 145, 218, + 202, 163, 88, 255, 65, 217, 128, 71, 220, 54, 136, 79, 220, 224, 91, 67, 119, 233, 50, 67, 232, 237, 40, 191, 66, + 60, 76, 65, 1, 76, 115, 176, 92, 181, 144, 95, 190, 245, 22, 165, 27, 106, 27, 104, 170, 72, 252, 246, 201, 102, + 177, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 51, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6851010686787754311" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a0483619af0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e68dc702" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34ebbe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1df7932" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "389dd4dc3c499a975747" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c49601943c2d8e5b54b36627" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "677b849d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12834113227504221519" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67c4cf2a8178" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f53eb12" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb3341ec76e709" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6053904025832280836" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5f13adebe2639947bf461a0483619af044e68dc7024334ebbe44c1df79324a389dd4dc3c499a9757474cc49601943c2d8e5b54b3662744677b849d1bb21bedfb7c87fd4f4667c4cf2a8178449f53eb1247bb3341ec76e7091b5403c9a2f40a5304ffff", + "cborBytes": [ + 191, 27, 95, 19, 173, 235, 226, 99, 153, 71, 191, 70, 26, 4, 131, 97, 154, 240, 68, 230, 141, 199, 2, 67, 52, 235, + 190, 68, 193, 223, 121, 50, 74, 56, 157, 212, 220, 60, 73, 154, 151, 87, 71, 76, 196, 150, 1, 148, 60, 45, 142, + 91, 84, 179, 102, 39, 68, 103, 123, 132, 157, 27, 178, 27, 237, 251, 124, 135, 253, 79, 70, 103, 196, 207, 42, + 129, 120, 68, 159, 83, 235, 18, 71, 187, 51, 65, 236, 118, 231, 9, 27, 84, 3, 201, 162, 244, 10, 83, 4, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 52, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9407776904561387922" + } + } + } + ] + }, + "cborHex": "bf1bffffffffffffffeb1b828f23400a816992ff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 235, 27, 130, 143, 35, 64, 10, 129, 105, 146, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 53, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00b05b5c7cc8833e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1095576627261168708" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16408162067987719300" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7280034018221427591" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1ecf93" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4067378274077119550" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "990500f9a50302cea300" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd32395d42523d65" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5805816063977932080" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ebdef79527676b564cf1" + }, + { + "_tag": "ByteArray", + "bytearray": "f9bb806f940a" + } + ] + } + } + ] + }, + "cborHex": "bf4800b05b5c7cc8833e9f1b0f3445234c1f5c441be3b58077777264841b6507e05e48d90b87431ecf931b38723afd8982143eff4a990500f9a50302cea300d905098048fd32395d42523d65d8669f1b509266f31ca945309f4aebdef79527676b564cf146f9bb806f940affffff", + "cborBytes": [ + 191, 72, 0, 176, 91, 92, 124, 200, 131, 62, 159, 27, 15, 52, 69, 35, 76, 31, 92, 68, 27, 227, 181, 128, 119, 119, + 114, 100, 132, 27, 101, 7, 224, 94, 72, 217, 11, 135, 67, 30, 207, 147, 27, 56, 114, 58, 253, 137, 130, 20, 62, + 255, 74, 153, 5, 0, 249, 165, 3, 2, 206, 163, 0, 217, 5, 9, 128, 72, 253, 50, 57, 93, 66, 82, 61, 101, 216, 102, + 159, 27, 80, 146, 102, 243, 28, 169, 69, 48, 159, 74, 235, 222, 247, 149, 39, 103, 107, 86, 76, 241, 70, 249, 187, + 128, 111, 148, 10, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 54, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "026405" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6307455885661915141" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "602427" + }, + { + "_tag": "ByteArray", + "bytearray": "053dfa5a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16513565921016083731" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "243234d21ab9ab48" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1901948064452196087" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11272115866328804171" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6f89017018197f800fa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16525433667370894497" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14045225231012781030" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c4f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1260144536819681899" + } + } + ] + } + } + ] + }, + "cborHex": "bf43026405d8669f1b578895b5ad5348059f4360242744053dfa5a1be52bf8b66928f513ffff48243234d21ab9ab48bf1b1a6513b00aea36f71b9c6e99a87f92ab4bff4aa6f89017018197f800fad905089f1be556225d6eec44a11bc2eaa9eeccdedbe6422c4f1b117ceec79ac94a6bffff", + "cborBytes": [ + 191, 67, 2, 100, 5, 216, 102, 159, 27, 87, 136, 149, 181, 173, 83, 72, 5, 159, 67, 96, 36, 39, 68, 5, 61, 250, 90, + 27, 229, 43, 248, 182, 105, 40, 245, 19, 255, 255, 72, 36, 50, 52, 210, 26, 185, 171, 72, 191, 27, 26, 101, 19, + 176, 10, 234, 54, 247, 27, 156, 110, 153, 168, 127, 146, 171, 75, 255, 74, 166, 248, 144, 23, 1, 129, 151, 248, 0, + 250, 217, 5, 8, 159, 27, 229, 86, 34, 93, 110, 236, 68, 161, 27, 194, 234, 169, 238, 204, 222, 219, 230, 66, 44, + 79, 27, 17, 124, 238, 199, 154, 201, 74, 107, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 55, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "142644111563489213" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12724969987581683897" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4249291546364508972" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cbf72f542597d8f9395f" + }, + { + "_tag": "ByteArray", + "bytearray": "1cab4e29" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7660889762247208411" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10309774821011525003" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17781873892785375946" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7681518954251197899" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f18e21aca1480d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12053109889793202205" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13323364102910503103" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "865348544796350867" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62c6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10569795140541893333" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8558437253644518373" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "108aa4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "586d2f6523ba731a3c8966" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "172e6fc91bbcf8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5256778840131694969" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c23596d7bec4ae157f77" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3732760958864991409" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13460696566391118651" + } + }, + { + "_tag": "ByteArray", + "bytearray": "857950" + } + ] + } + } + ] + }, + "cborHex": "bf1b01fac6104f0affbdd8669f1bb0982cc8af5028b99f1b3af88425d0207b2c4acbf72f542597d8f9395f441cab4e291b6a50f2a64e2beddbffff1b8f13ad9380a88d8bd8669f1bf6c5e817d443caca9f1b6a9a3cca5b929dcb47f18e21aca1480d1ba7453f95abdf181d1bb8e6190fb72be8bf1b0c0255eaab7cd993ffff4262c6bf1b92af74addca64ad51b76c5ad566ff383e543108aa44b586d2f6523ba731a3c896647172e6fc91bbcf81b48f3d480e4d6f179ff4ac23596d7bec4ae157f77d8669f1b33cd6e50a89824b19f1bbace003595101b3b43857950ffffff", + "cborBytes": [ + 191, 27, 1, 250, 198, 16, 79, 10, 255, 189, 216, 102, 159, 27, 176, 152, 44, 200, 175, 80, 40, 185, 159, 27, 58, + 248, 132, 37, 208, 32, 123, 44, 74, 203, 247, 47, 84, 37, 151, 216, 249, 57, 95, 68, 28, 171, 78, 41, 27, 106, 80, + 242, 166, 78, 43, 237, 219, 255, 255, 27, 143, 19, 173, 147, 128, 168, 141, 139, 216, 102, 159, 27, 246, 197, 232, + 23, 212, 67, 202, 202, 159, 27, 106, 154, 60, 202, 91, 146, 157, 203, 71, 241, 142, 33, 172, 161, 72, 13, 27, 167, + 69, 63, 149, 171, 223, 24, 29, 27, 184, 230, 25, 15, 183, 43, 232, 191, 27, 12, 2, 85, 234, 171, 124, 217, 147, + 255, 255, 66, 98, 198, 191, 27, 146, 175, 116, 173, 220, 166, 74, 213, 27, 118, 197, 173, 86, 111, 243, 131, 229, + 67, 16, 138, 164, 75, 88, 109, 47, 101, 35, 186, 115, 26, 60, 137, 102, 71, 23, 46, 111, 201, 27, 188, 248, 27, + 72, 243, 212, 128, 228, 214, 241, 121, 255, 74, 194, 53, 150, 215, 190, 196, 174, 21, 127, 119, 216, 102, 159, 27, + 51, 205, 110, 80, 168, 152, 36, 177, 159, 27, 186, 206, 0, 53, 149, 16, 27, 59, 67, 133, 121, 80, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 56, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b65a750ea00c2f1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11657878306061394745" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9782933895387001812" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de" + }, + { + "_tag": "ByteArray", + "bytearray": "53" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5457966511396735874" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "516d2038" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12900720844734105399" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "60f9f04305bdb7ff59" + }, + { + "_tag": "ByteArray", + "bytearray": "881cbe56" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14894686465322966176" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f8078e6a1ac4d87488efc" + }, + { + "_tag": "ByteArray", + "bytearray": "ad06ad" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9221a608b1ba27726c0a3762" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15886935900735368965" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e687d6351b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4488158636309739554" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8e85a8fa3f0336be4b6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "803664463182719564" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3304bd954" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3463286481021349302" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8748307273987524401" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5353530723092338142" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2360952909696755247" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8153419068879249603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4971307716986649764" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13611904795983296664" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60fa3da20341fb048d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13795796985398482578" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16720443913477792889" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf484b65a750ea00c2f1d8669f1ba1c91a8da385a3399f1b87c3f68bafabb3d441de41531b4bbe979fe3c7cb82ffff44516d2038d8669f1bb3089141e0da87379f4960f9f04305bdb7ff5944881cbe561bceb48e6cbe64dca04b8f8078e6a1ac4d87488efc43ad06adffff4c9221a608b1ba27726c0a37621bdc79bc0774bb6f05419541f9469e687d6351b01b3e4924801cd7f8224af8e85a8fa3f0336be4b6bf1b0b2730923e9c6a4c45d3304bd9541b301010b488b0adb61b79683b1d7bfe07311b4a4b8fd4140f15de1b20c3ca2999e6662f1b7126c371c971a0c31b44fda2078c25bca41bbce7334b010538984960fa3da20341fb048d1bbf748443d414d6921be80af3268dafa479ffff", + "cborBytes": [ + 191, 72, 75, 101, 167, 80, 234, 0, 194, 241, 216, 102, 159, 27, 161, 201, 26, 141, 163, 133, 163, 57, 159, 27, + 135, 195, 246, 139, 175, 171, 179, 212, 65, 222, 65, 83, 27, 75, 190, 151, 159, 227, 199, 203, 130, 255, 255, 68, + 81, 109, 32, 56, 216, 102, 159, 27, 179, 8, 145, 65, 224, 218, 135, 55, 159, 73, 96, 249, 240, 67, 5, 189, 183, + 255, 89, 68, 136, 28, 190, 86, 27, 206, 180, 142, 108, 190, 100, 220, 160, 75, 143, 128, 120, 230, 161, 172, 77, + 135, 72, 142, 252, 67, 173, 6, 173, 255, 255, 76, 146, 33, 166, 8, 177, 186, 39, 114, 108, 10, 55, 98, 27, 220, + 121, 188, 7, 116, 187, 111, 5, 65, 149, 65, 249, 70, 158, 104, 125, 99, 81, 176, 27, 62, 73, 36, 128, 28, 215, + 248, 34, 74, 248, 232, 90, 143, 163, 240, 51, 107, 228, 182, 191, 27, 11, 39, 48, 146, 62, 156, 106, 76, 69, 211, + 48, 75, 217, 84, 27, 48, 16, 16, 180, 136, 176, 173, 182, 27, 121, 104, 59, 29, 123, 254, 7, 49, 27, 74, 75, 143, + 212, 20, 15, 21, 222, 27, 32, 195, 202, 41, 153, 230, 102, 47, 27, 113, 38, 195, 113, 201, 113, 160, 195, 27, 68, + 253, 162, 7, 140, 37, 188, 164, 27, 188, 231, 51, 75, 1, 5, 56, 152, 73, 96, 250, 61, 162, 3, 65, 251, 4, 141, 27, + 191, 116, 132, 67, 212, 20, 214, 146, 27, 232, 10, 243, 38, 141, 175, 164, 121, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 57, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3598481341305051857" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9319166377821921630" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f16" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9239472549482483145" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "207758879925084336" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa010a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18240700556971402832" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17745777801549354567" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b31f05fb6df5bdad1801bffffffffffffffec1b8154547210d6e15e420f16bf0a1b80393354b7e04dc91b02e21b99bcde20b043fa010a1bfd23fc83608ce6501bf645aae3ac5c9647ffff", + "cborBytes": [ + 191, 27, 49, 240, 95, 182, 223, 91, 218, 209, 128, 27, 255, 255, 255, 255, 255, 255, 255, 236, 27, 129, 84, 84, + 114, 16, 214, 225, 94, 66, 15, 22, 191, 10, 27, 128, 57, 51, 84, 183, 224, 77, 201, 27, 2, 226, 27, 153, 188, 222, + 32, 176, 67, 250, 1, 10, 27, 253, 35, 252, 131, 96, 140, 230, 80, 27, 246, 69, 170, 227, 172, 92, 150, 71, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 58, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8421435628430931995" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7026839145993442814" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6092270132632003221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd6ba38238ab5e99" + } + } + ] + }, + "cborHex": "bf0cbf1b74def315db71b81b1b618458f936bf95feff1b548c17684b40a29548dd6ba38238ab5e99ff", + "cborBytes": [ + 191, 12, 191, 27, 116, 222, 243, 21, 219, 113, 184, 27, 27, 97, 132, 88, 249, 54, 191, 149, 254, 255, 27, 84, 140, + 23, 104, 75, 64, 162, 149, 72, 221, 107, 163, 130, 56, 171, 94, 153, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 59, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74764ff773cb32" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d171696ba7856d05f4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "532a6d1b105b15132ef3" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5127087370806581159" + } + } + } + ] + }, + "cborHex": "bf02bf094774764ff773cb324a2d171696ba7856d05f4c4a532a6d1b105b15132ef3ff0a1b472712cc9d5157a7ff", + "cborBytes": [ + 191, 2, 191, 9, 71, 116, 118, 79, 247, 115, 203, 50, 74, 45, 23, 22, 150, 186, 120, 86, 208, 95, 76, 74, 83, 42, + 109, 27, 16, 91, 21, 19, 46, 243, 255, 10, 27, 71, 39, 18, 204, 157, 81, 87, 167, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 60, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69092f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3642999145604780507" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2b9389d88240c0d" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4224ec4369092f414e1b328e886be6d311db48e2b9389d88240c0d80ff", + "cborBytes": [ + 191, 66, 36, 236, 67, 105, 9, 47, 65, 78, 27, 50, 142, 136, 107, 230, 211, 17, 219, 72, 226, 185, 56, 157, 136, + 36, 12, 13, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 61, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "516375687793278506" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11650426947160692086" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4710585580559553690" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2540841310332242899" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54204683" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9389038581364529369" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e35dbcd326da99ee3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12210873934314589253" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f6b2031916" + }, + { + "_tag": "ByteArray", + "bytearray": "b201e9f28bd7a7" + } + ] + } + } + ] + }, + "cborHex": "bf1b072a88f3c190fe2abf1ba1aea194f326d5761b415f5ca0b554549aff1b2342e1b5b4fdcbd344542046831b824c90d830ab98d9492e35dbcd326da99ee31ba975bd25b3e5cc459f45f6b203191647b201e9f28bd7a7ffff", + "cborBytes": [ + 191, 27, 7, 42, 136, 243, 193, 144, 254, 42, 191, 27, 161, 174, 161, 148, 243, 38, 213, 118, 27, 65, 95, 92, 160, + 181, 84, 84, 154, 255, 27, 35, 66, 225, 181, 180, 253, 203, 211, 68, 84, 32, 70, 131, 27, 130, 76, 144, 216, 48, + 171, 152, 217, 73, 46, 53, 219, 205, 50, 109, 169, 158, 227, 27, 169, 117, 189, 37, 179, 229, 204, 69, 159, 69, + 246, 178, 3, 25, 22, 71, 178, 1, 233, 242, 139, 215, 167, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 62, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "68a8c9efc7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18392333532899069667" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1993a69eee03209" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7651463566581207198" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17871459720501707224" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9573935669432483309" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6962ae293a09" + } + ] + } + } + ] + }, + "cborHex": "bf4568a8c9efc71bff3eb1e6c2f44ee348a1993a69eee032099f1b6a2f759319ea909e1bf8042dedc234c1d81b84dd73c436f6fded466962ae293a09ffff", + "cborBytes": [ + 191, 69, 104, 168, 201, 239, 199, 27, 255, 62, 177, 230, 194, 244, 78, 227, 72, 161, 153, 58, 105, 238, 224, 50, + 9, 159, 27, 106, 47, 117, 147, 25, 234, 144, 158, 27, 248, 4, 45, 237, 194, 52, 193, 216, 27, 132, 221, 115, 196, + 54, 246, 253, 237, 70, 105, 98, 174, 41, 58, 9, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 63, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5105386509609511857" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc706d845808" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9288188366440411489" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3995429490598257658" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "58" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16458399814465661413" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11308091810532334770" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b46d9f9fb2258abb146dc706d8458081b80e6461bbc98b161d8669f1b37729df3f83aa3fa9f4158ffff1be467fb6e5094a9e5d8669f1b9cee6996be489cb280ffff", + "cborBytes": [ + 191, 27, 70, 217, 249, 251, 34, 88, 171, 177, 70, 220, 112, 109, 132, 88, 8, 27, 128, 230, 70, 27, 188, 152, 177, + 97, 216, 102, 159, 27, 55, 114, 157, 243, 248, 58, 163, 250, 159, 65, 88, 255, 255, 27, 228, 103, 251, 110, 80, + 148, 169, 229, 216, 102, 159, 27, 156, 238, 105, 150, 190, 72, 156, 178, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 64, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb030105" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13506344569019959379" + } + } + ] + } + } + ] + }, + "cborHex": "bf41021144fb030105d905089f1bbb702cd36a760853ffff", + "cborBytes": [191, 65, 2, 17, 68, 251, 3, 1, 5, 217, 5, 8, 159, 27, 187, 112, 44, 211, 106, 118, 8, 83, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 65, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17713123753942519115" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8742576115428740966" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5598565006015778116" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bf5d1a834c0470d4bd8669f1b7953dea825f1cf669f1b4db21935e380cd44ffffff", + "cborBytes": [ + 191, 27, 245, 209, 168, 52, 192, 71, 13, 75, 216, 102, 159, 27, 121, 83, 222, 168, 37, 241, 207, 102, 159, 27, 77, + 178, 25, 53, 227, 128, 205, 68, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 66, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "90b557d8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17616788419885228411" + } + } + } + ] + }, + "cborHex": "bf4490b557d81bf47b67baea79617bff", + "cborBytes": [191, 68, 144, 181, 87, 216, 27, 244, 123, 103, 186, 234, 121, 97, 123, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 67, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18048437864554802464" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1bfa78ee9cf37fad2080ff", + "cborBytes": [191, 27, 250, 120, 238, 156, 243, 127, 173, 32, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 68, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ff764e1c95abc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd60" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87f5dd2fe1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + ] + } + } + ] + }, + "cborHex": "bf472ff764e1c95abc42dd604587f5dd2fe19f1bfffffffffffffffdffff", + "cborBytes": [ + 191, 71, 47, 247, 100, 225, 201, 90, 188, 66, 221, 96, 69, 135, 245, 221, 47, 225, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 69, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6342167157881140829" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15529696744878209640" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12372776263698310360" + } + }, + { + "_tag": "ByteArray", + "bytearray": "315e93f917" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16772172936141972828" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bb" + } + ] + } + } + ] + }, + "cborHex": "bf1b5803e76d87a7765d9f1bd78490e8dc017a681babb4ee75431f64d845315e93f9171be8c2ba6c3229a55c41bbffff", + "cborBytes": [ + 191, 27, 88, 3, 231, 109, 135, 167, 118, 93, 159, 27, 215, 132, 144, 232, 220, 1, 122, 104, 27, 171, 180, 238, + 117, 67, 31, 100, 216, 69, 49, 94, 147, 249, 23, 27, 232, 194, 186, 108, 50, 41, 165, 92, 65, 187, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 70, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "228d1fdbc8cb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17852300592359374069" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "072aa01db8c74f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6345045006109339791" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14226751262061414289" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb20668f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "faa39d7903fc01fb170efae4" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf46228d1fdbc8cbd8669f1bf7c01ccd9f137cf59f47072aa01db8c74f1b580e20d0c903708f1bc56f92e57302c79144cb20668fffff4cfaa39d7903fc01fb170efae480ff", + "cborBytes": [ + 191, 70, 34, 141, 31, 219, 200, 203, 216, 102, 159, 27, 247, 192, 28, 205, 159, 19, 124, 245, 159, 71, 7, 42, 160, + 29, 184, 199, 79, 27, 88, 14, 32, 208, 201, 3, 112, 143, 27, 197, 111, 146, 229, 115, 2, 199, 145, 68, 203, 32, + 102, 143, 255, 255, 76, 250, 163, 157, 121, 3, 252, 1, 251, 23, 14, 250, 228, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 71, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c88541385" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "301e3dcaf0c710" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5916508585935338552" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3119b4e117" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9353158430054125601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12846980018664705720" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13368749233333717874" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7640056962354932404" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16177549035683501140" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4278c70" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18245134163853610954" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1669840184828559213" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51d0620760ca9b3b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4446485628826838069" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15238726779344078966" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d11" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12543874640917860510" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11451800291096958570" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9c7f3cebf5812" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf451c88541385a047301e3dcaf0c710bf1b521ba9363f397c38453119b4e1171b81cd1809775390211bb249a442c10d0eb81bb9875698d821cb721b6a06ef5418ea6ab41be0823322b860d45444f4278c701bfd33bcdaebd68fca1b172c76cd0860ff6dff4851d0620760ca9b3bd8669f1b3db5171ef51a64359f1bd37ad54480094876420d111bae14cb868ef0909e1b9eecf7b0c58c966affff47b9c7f3cebf581280ff", + "cborBytes": [ + 191, 69, 28, 136, 84, 19, 133, 160, 71, 48, 30, 61, 202, 240, 199, 16, 191, 27, 82, 27, 169, 54, 63, 57, 124, 56, + 69, 49, 25, 180, 225, 23, 27, 129, 205, 24, 9, 119, 83, 144, 33, 27, 178, 73, 164, 66, 193, 13, 14, 184, 27, 185, + 135, 86, 152, 216, 33, 203, 114, 27, 106, 6, 239, 84, 24, 234, 106, 180, 27, 224, 130, 51, 34, 184, 96, 212, 84, + 68, 244, 39, 140, 112, 27, 253, 51, 188, 218, 235, 214, 143, 202, 27, 23, 44, 118, 205, 8, 96, 255, 109, 255, 72, + 81, 208, 98, 7, 96, 202, 155, 59, 216, 102, 159, 27, 61, 181, 23, 30, 245, 26, 100, 53, 159, 27, 211, 122, 213, + 68, 128, 9, 72, 118, 66, 13, 17, 27, 174, 20, 203, 134, 142, 240, 144, 158, 27, 158, 236, 247, 176, 197, 140, 150, + 106, 255, 255, 71, 185, 199, 243, 206, 191, 88, 18, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 72, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "662818091029449904" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "43df7535234e868b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5669" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c98ff676" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11396059107484457666" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cb735dbb0c036fce8ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e3af9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca0dc0c8f9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05673b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2867402165026912461" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b57eee07b2a1ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25fb64dff0" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0932cd8ac2834cb0bf4843df7535234e868b42566944c98ff6761b9e26ef611cf75ac2ff4a9cb735dbb0c036fce8ed435e3af945ca0dc0c8f9bf4305673b1b27cb0f13b29d78cd47b57eee07b2a1ea4525fb64dff0ffff", + "cborBytes": [ + 191, 27, 9, 50, 205, 138, 194, 131, 76, 176, 191, 72, 67, 223, 117, 53, 35, 78, 134, 139, 66, 86, 105, 68, 201, + 143, 246, 118, 27, 158, 38, 239, 97, 28, 247, 90, 194, 255, 74, 156, 183, 53, 219, 176, 192, 54, 252, 232, 237, + 67, 94, 58, 249, 69, 202, 13, 192, 200, 249, 191, 67, 5, 103, 59, 27, 39, 203, 15, 19, 178, 157, 120, 205, 71, + 181, 126, 238, 7, 178, 161, 234, 69, 37, 251, 100, 223, 240, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 73, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3376007258351380945" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b2ed9fcb6f12ca9d180ff", + "cborBytes": [191, 27, 46, 217, 252, 182, 241, 44, 169, 209, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 74, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e4ed282a4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6736762486232251313" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14561366162518690472" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10414919972144360498" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7847573010361433520" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13215242723615798823" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f21f1f602f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14023782283628134836" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52c56a42c4fdd3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16625762157002381392" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13620126551970573226" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17328654860865682333" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ce3" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72d5162862" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17980315327642330555" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12796204716368084058" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f83b28" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5022572618907673555" + } + }, + { + "_tag": "ByteArray", + "bytearray": "979f8b43aa" + }, + { + "_tag": "ByteArray", + "bytearray": "520626afae" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8b3e10b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15370969153294101000" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9bc230089591b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "315c52d20631a7fe1bbb3c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7219176907421074790" + } + }, + { + "_tag": "ByteArray", + "bytearray": "390bfe7e3c2307" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d01947" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3962107462100249115" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e038444bf3b9592a8356" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10902110678140777997" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1529b14d58ad9cf50224f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11484767430690223456" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12042188944812959092" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13844784273034388245" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17670453027593071708" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f274d5e0a0130bfdf2185f42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74" + } + } + ] + }, + "cborHex": "bf453e4ed282a4bf1b5d7dc9c9d00cfbb11bca145d601951caa81b90893a88b7c92c321b6ce82e131f893db01bb765f93d61af762745f21f1f602f1bc29e7baf8f1241b44752c56a42c4fdd31be6ba9298404258501bbd0468efbe126baa1bf07bbfc8e93ebb9d421ce3ff4572d5162862d8669f1bf986e986d5a1e5bb9f1bb1954064704c3c5a43f83b281b45b3c32fa89863d345979f8b43aa45520626afaeffff44b8b3e10b1bd550a7018b94ea0847c9bc230089591b9f4b315c52d20631a7fe1bbb3c1b642fab260189456647390bfe7e3c2307ff43d01947bf1b36fc3bbea068ea1b4ae038444bf3b9592a83561b974c13e66092f60d4ba1529b14d58ad9cf50224f1b9f6217211a4435601ba71e730b05b665741bc0228df18a2123151bf53a0f6811e92c5cff4cf274d5e0a0130bfdf2185f424174ff", + "cborBytes": [ + 191, 69, 62, 78, 210, 130, 164, 191, 27, 93, 125, 201, 201, 208, 12, 251, 177, 27, 202, 20, 93, 96, 25, 81, 202, + 168, 27, 144, 137, 58, 136, 183, 201, 44, 50, 27, 108, 232, 46, 19, 31, 137, 61, 176, 27, 183, 101, 249, 61, 97, + 175, 118, 39, 69, 242, 31, 31, 96, 47, 27, 194, 158, 123, 175, 143, 18, 65, 180, 71, 82, 197, 106, 66, 196, 253, + 211, 27, 230, 186, 146, 152, 64, 66, 88, 80, 27, 189, 4, 104, 239, 190, 18, 107, 170, 27, 240, 123, 191, 200, 233, + 62, 187, 157, 66, 28, 227, 255, 69, 114, 213, 22, 40, 98, 216, 102, 159, 27, 249, 134, 233, 134, 213, 161, 229, + 187, 159, 27, 177, 149, 64, 100, 112, 76, 60, 90, 67, 248, 59, 40, 27, 69, 179, 195, 47, 168, 152, 99, 211, 69, + 151, 159, 139, 67, 170, 69, 82, 6, 38, 175, 174, 255, 255, 68, 184, 179, 225, 11, 27, 213, 80, 167, 1, 139, 148, + 234, 8, 71, 201, 188, 35, 0, 137, 89, 27, 159, 75, 49, 92, 82, 210, 6, 49, 167, 254, 27, 187, 60, 27, 100, 47, + 171, 38, 1, 137, 69, 102, 71, 57, 11, 254, 126, 60, 35, 7, 255, 67, 208, 25, 71, 191, 27, 54, 252, 59, 190, 160, + 104, 234, 27, 74, 224, 56, 68, 75, 243, 185, 89, 42, 131, 86, 27, 151, 76, 19, 230, 96, 146, 246, 13, 75, 161, 82, + 155, 20, 213, 138, 217, 207, 80, 34, 79, 27, 159, 98, 23, 33, 26, 68, 53, 96, 27, 167, 30, 115, 11, 5, 182, 101, + 116, 27, 192, 34, 141, 241, 138, 33, 35, 21, 27, 245, 58, 15, 104, 17, 233, 44, 92, 255, 76, 242, 116, 213, 224, + 160, 19, 11, 253, 242, 24, 95, 66, 65, 116, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 75, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b5478c603154d" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7c69c16" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ff6ee54b81d5537bb8bbf4b" + } + } + ] + }, + "cborHex": "bf477b5478c603154d8044c7c69c164c7ff6ee54b81d5537bb8bbf4bff", + "cborBytes": [ + 191, 71, 123, 84, 120, 198, 3, 21, 77, 128, 68, 199, 198, 156, 22, 76, 127, 246, 238, 84, 184, 29, 85, 55, 187, + 139, 191, 75, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 76, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ba282113447014197fc80" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16751666991144799062" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d" + } + ] + } + } + ] + }, + "cborHex": "bf4b9ba282113447014197fc809f1be879e05fd2d28b56419dffff", + "cborBytes": [ + 191, 75, 155, 162, 130, 17, 52, 71, 1, 65, 151, 252, 128, 159, 27, 232, 121, 224, 95, 210, 210, 139, 86, 65, 157, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 77, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04a6ab12f627089d" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2683" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1834714856518519407" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14138390034955622495" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "72381095419845255" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e2f4" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d30752d5690b8f19fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a261d7a50713e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3487076014858424158" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b3a5bcbe5c6e97" + }, + { + "_tag": "ByteArray", + "bytearray": "a00bb8d71d8a9a344cbe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14447134208474477889" + } + } + ] + } + } + ] + }, + "cborHex": "bf4804a6ab12f627089d80422683804149d8669f1b19763770f6eb0a6f9f1bc435a6d41173d85f1b0101263908f41a8742e2f4ffff49d30752d5690b8f19fa471a261d7a50713e41f0d8669f1b30649529026bcf5e9f47b3a5bcbe5c6e974aa00bb8d71d8a9a344cbe1bc87e8804b683f541ffffff", + "cborBytes": [ + 191, 72, 4, 166, 171, 18, 246, 39, 8, 157, 128, 66, 38, 131, 128, 65, 73, 216, 102, 159, 27, 25, 118, 55, 112, + 246, 235, 10, 111, 159, 27, 196, 53, 166, 212, 17, 115, 216, 95, 27, 1, 1, 38, 57, 8, 244, 26, 135, 66, 226, 244, + 255, 255, 73, 211, 7, 82, 213, 105, 11, 143, 25, 250, 71, 26, 38, 29, 122, 80, 113, 62, 65, 240, 216, 102, 159, + 27, 48, 100, 149, 41, 2, 107, 207, 94, 159, 71, 179, 165, 188, 190, 92, 110, 151, 74, 160, 11, 184, 215, 29, 138, + 154, 52, 76, 190, 27, 200, 126, 136, 4, 182, 131, 245, 65, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 78, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5900a16afca575dc" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4021018535500519862" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9262e5d4ab7c0d" + } + ] + } + } + ] + }, + "cborHex": "bf485900a16afca575dc9f1b37cd870dc3c519b6479262e5d4ab7c0dffff", + "cborBytes": [ + 191, 72, 89, 0, 161, 106, 252, 165, 117, 220, 159, 27, 55, 205, 135, 13, 195, 197, 25, 182, 71, 146, 98, 229, 212, + 171, 124, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 79, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2894718904148040592" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1103649761639416782" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5134782585673676021" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "744882626983742337" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0527a1e90da5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2213551560152668244" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dbbb337697c36efd" + }, + { + "_tag": "ByteArray", + "bytearray": "43ca2b568a40" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12075180699043234306" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17403577545110105954" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd39bfa1300163a8" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b282c1b81a65a1b901b0f50f39c5ef643ce1b4742698e71f0f4f5d8669f1b0a565acd7cb9cb819f460527a1e90da51b1eb81d6a82e9585448dbbb337697c36efd4643ca2b568a40ffff1ba793a8de65200202bf1bf185ed91b540af6248cd39bfa1300163a8ffff", + "cborBytes": [ + 191, 27, 40, 44, 27, 129, 166, 90, 27, 144, 27, 15, 80, 243, 156, 94, 246, 67, 206, 27, 71, 66, 105, 142, 113, + 240, 244, 245, 216, 102, 159, 27, 10, 86, 90, 205, 124, 185, 203, 129, 159, 70, 5, 39, 161, 233, 13, 165, 27, 30, + 184, 29, 106, 130, 233, 88, 84, 72, 219, 187, 51, 118, 151, 195, 110, 253, 70, 67, 202, 43, 86, 138, 64, 255, 255, + 27, 167, 147, 168, 222, 101, 32, 2, 2, 191, 27, 241, 133, 237, 145, 181, 64, 175, 98, 72, 205, 57, 191, 161, 48, + 1, 99, 168, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 80, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0204e6f8fdfeda2136d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5102958381236709247" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04604b5aba" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9054252933366607465" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9404721073344745072" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17189414970372968979" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5819780067699490729" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5ec798fcc" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f2f6f305fe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2834817025989602364" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b5db2dc11dab12f8d469994" + } + ] + } + } + ] + }, + "cborHex": "bf4a0204e6f8fdfeda2136d31b46d1599c7137677f4504604b5abad8669f1b7da72b1247daee699f1b828447fce4580e701bee8d11d795dcd2131b50c4032316207fa90effff45a5ec798fccd905029f45f2f6f305fe1b27574b10cd56ec3c4c8b5db2dc11dab12f8d469994ffff", + "cborBytes": [ + 191, 74, 2, 4, 230, 248, 253, 254, 218, 33, 54, 211, 27, 70, 209, 89, 156, 113, 55, 103, 127, 69, 4, 96, 75, 90, + 186, 216, 102, 159, 27, 125, 167, 43, 18, 71, 218, 238, 105, 159, 27, 130, 132, 71, 252, 228, 88, 14, 112, 27, + 238, 141, 17, 215, 149, 220, 210, 19, 27, 80, 196, 3, 35, 22, 32, 127, 169, 14, 255, 255, 69, 165, 236, 121, 143, + 204, 217, 5, 2, 159, 69, 242, 246, 243, 5, 254, 27, 39, 87, 75, 16, 205, 86, 236, 60, 76, 139, 93, 178, 220, 17, + 218, 177, 47, 141, 70, 153, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 81, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0502fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdfb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d02592612" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + }, + "cborHex": "bf430502fc42bdfb456d025926120bff", + "cborBytes": [191, 67, 5, 2, 252, 66, 189, 251, 69, 109, 2, 89, 38, 18, 11, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 82, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14f907" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "176ff6f38a17aac0fe73be" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0550" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2774223157086164960" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b226daff28db0d8e2" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1a8cc" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9703224838158348448" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffabf4314f9074b176ff6f38a17aac0fe73beff4205509f1b268005434dc897e00c494b226daff28db0d8e2ff43d1a8ccd8669f1b86a8c794962cf0a09f0dffffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 250, 191, 67, 20, 249, 7, 75, 23, 111, 246, 243, 138, 23, 170, 192, + 254, 115, 190, 255, 66, 5, 80, 159, 27, 38, 128, 5, 67, 77, 200, 151, 224, 12, 73, 75, 34, 109, 175, 242, 141, + 176, 216, 226, 255, 67, 209, 168, 204, 216, 102, 159, 27, 134, 168, 199, 148, 150, 44, 240, 160, 159, 13, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 83, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "67ffe688618346fe24c8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17989217364881196112" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8372958755207208062" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4a67ffe688618346fe24c8bf1bf9a689e1e50844501b7432b9a0431f5c7effff", + "cborBytes": [ + 191, 74, 103, 255, 230, 136, 97, 131, 70, 254, 36, 200, 191, 27, 249, 166, 137, 225, 229, 8, 68, 80, 27, 116, 50, + 185, 160, 67, 31, 92, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 84, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "271208252010862550" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6134876116154516721" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa892a3eddcdc93f" + }, + { + "_tag": "ByteArray", + "bytearray": "a72b21a9e9ed8f81" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17814571101725316134" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b853" + }, + { + "_tag": "ByteArray", + "bytearray": "741d76360c5933353ce32f66" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1683074090301211452" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e0448f8358dad5cd24" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9411704342491304144" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8446527559989376672" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3767887432090483113" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4603904583510851123" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "43d9a3" + }, + { + "_tag": "ByteArray", + "bytearray": "31" + }, + { + "_tag": "ByteArray", + "bytearray": "402ff8fb6a4fc6c5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1825874429869548584" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4622104741549653315" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16704410590459351589" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3132b5d7" + }, + { + "_tag": "ByteArray", + "bytearray": "cfbf342f6b7a4a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13305164578071825736" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ddcc30aa54" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8185554803222734677" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fd79898c961744ebc0d9c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb231efe73b6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "442ea587b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13087431530165849826" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac581ea00412209edc1fb8d2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6129681250827236976" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0c8fdf9af1e606b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6063326267357385027" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f02ddc024012b86f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1217421072997230548" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b03c38677e14317d6d8669f1b55237552dc6b04f19f48aa892a3eddcdc93f48a72b21a9e9ed8f811bf73a12080846d42642b8534c741d76360c5933353ce32f66ffff1b175b7af7c311433c9f49e0448f8358dad5cd241b829d173bf13210d01b753818106eb6b6a0ff1b344a39a8076979a9d8669f1b3fe45ad37ff4fe339f4343d9a3413148402ff8fb6a4fc6c51b1956cf1ebcd7e428ffff1b402503c602b73d43d8669f1be7d1fceda29a52259f443132b5d747cfbf342f6b7a4a1bb8a570b0a214cd4845ddcc30aa54ffff1b7198eeb97f956755bf4b0fd79898c961744ebc0d9c46eb231efe73b645442ea587b11bb59fe5a2f1c84ee24cac581ea00412209edc1fb8d21b5511009f05edf67048d0c8fdf9af1e606b1b5425431d8321d14348f02ddc024012b86f1b10e52604061327d4ffff", + "cborBytes": [ + 191, 27, 3, 195, 134, 119, 225, 67, 23, 214, 216, 102, 159, 27, 85, 35, 117, 82, 220, 107, 4, 241, 159, 72, 170, + 137, 42, 62, 221, 205, 201, 63, 72, 167, 43, 33, 169, 233, 237, 143, 129, 27, 247, 58, 18, 8, 8, 70, 212, 38, 66, + 184, 83, 76, 116, 29, 118, 54, 12, 89, 51, 53, 60, 227, 47, 102, 255, 255, 27, 23, 91, 122, 247, 195, 17, 67, 60, + 159, 73, 224, 68, 143, 131, 88, 218, 213, 205, 36, 27, 130, 157, 23, 59, 241, 50, 16, 208, 27, 117, 56, 24, 16, + 110, 182, 182, 160, 255, 27, 52, 74, 57, 168, 7, 105, 121, 169, 216, 102, 159, 27, 63, 228, 90, 211, 127, 244, + 254, 51, 159, 67, 67, 217, 163, 65, 49, 72, 64, 47, 248, 251, 106, 79, 198, 197, 27, 25, 86, 207, 30, 188, 215, + 228, 40, 255, 255, 27, 64, 37, 3, 198, 2, 183, 61, 67, 216, 102, 159, 27, 231, 209, 252, 237, 162, 154, 82, 37, + 159, 68, 49, 50, 181, 215, 71, 207, 191, 52, 47, 107, 122, 74, 27, 184, 165, 112, 176, 162, 20, 205, 72, 69, 221, + 204, 48, 170, 84, 255, 255, 27, 113, 152, 238, 185, 127, 149, 103, 85, 191, 75, 15, 215, 152, 152, 201, 97, 116, + 78, 188, 13, 156, 70, 235, 35, 30, 254, 115, 182, 69, 68, 46, 165, 135, 177, 27, 181, 159, 229, 162, 241, 200, 78, + 226, 76, 172, 88, 30, 160, 4, 18, 32, 158, 220, 31, 184, 210, 27, 85, 17, 0, 159, 5, 237, 246, 112, 72, 208, 200, + 253, 249, 175, 30, 96, 107, 27, 84, 37, 67, 29, 131, 33, 209, 67, 72, 240, 45, 220, 2, 64, 18, 184, 111, 27, 16, + 229, 38, 4, 6, 19, 39, 212, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 85, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "018dcd79" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf44018dcd7980ff", + "cborBytes": [191, 68, 1, 141, 205, 121, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 86, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04cf0e38f408d96a69" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17487924262286131728" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + } + ] + }, + "cborHex": "bf054904cf0e38f408d96a6913d8669f1bf2b196762880021080ff141bffffffffffffffeeff", + "cborBytes": [ + 191, 5, 73, 4, 207, 14, 56, 244, 8, 217, 106, 105, 19, 216, 102, 159, 27, 242, 177, 150, 118, 40, 128, 2, 16, 128, + 255, 20, 27, 255, 255, 255, 255, 255, 255, 255, 238, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 87, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f003c" + } + } + ] + }, + "cborHex": "bf42cf74439f003cff", + "cborBytes": [191, 66, 207, 116, 67, 159, 0, 60, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 88, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8171642868924037499" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf0d1bfffffffffffffff41b716781e4e192397b80ff", + "cborBytes": [ + 191, 13, 27, 255, 255, 255, 255, 255, 255, 255, 244, 27, 113, 103, 129, 228, 225, 146, 57, 123, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 89, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2113077442609813785" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3471630953224131890" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7956b1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16386423931992599822" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a0500024f07fe03fb96" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17502080903753526462" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fffd6707034300079e28" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6151648199149139629" + } + } + } + ] + }, + "cborHex": "bf1b1d5328bd0da61919121b302db5f55e2cd532437956b11be36845bf4560ed0e4a8a0500024f07fe03fb961bf2e3e1da1a606cbe121bfffffffffffffff44afffd6707034300079e281bfffffffffffffffa1b555f0b71bd74b6adff", + "cborBytes": [ + 191, 27, 29, 83, 40, 189, 13, 166, 25, 25, 18, 27, 48, 45, 181, 245, 94, 44, 213, 50, 67, 121, 86, 177, 27, 227, + 104, 69, 191, 69, 96, 237, 14, 74, 138, 5, 0, 2, 79, 7, 254, 3, 251, 150, 27, 242, 227, 225, 218, 26, 96, 108, + 190, 18, 27, 255, 255, 255, 255, 255, 255, 255, 244, 74, 255, 253, 103, 7, 3, 67, 0, 7, 158, 40, 27, 255, 255, + 255, 255, 255, 255, 255, 250, 27, 85, 95, 11, 113, 189, 116, 182, 173, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 90, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "99e7c6ec13e5fd014f05" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13215259686657634556" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17755798690530663998" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5440311259370523638" + } + } + } + ] + }, + "cborHex": "bf0d9f4a99e7c6ec13e5fd014f051bfffffffffffffffa1bb76608aae5c4b0fcff1bf66944d5b46d1e3e1b4b7fde4432568bf6ff", + "cborBytes": [ + 191, 13, 159, 74, 153, 231, 198, 236, 19, 229, 253, 1, 79, 5, 27, 255, 255, 255, 255, 255, 255, 255, 250, 27, 183, + 102, 8, 170, 229, 196, 176, 252, 255, 27, 246, 105, 68, 213, 180, 109, 30, 62, 27, 75, 127, 222, 68, 50, 86, 139, + 246, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 91, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16211704265010555842" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11261955258109135553" + } + } + } + ] + }, + "cborHex": "bf1be0fb8b22bfa3abc21b9c4a80a38bf00ac1ff", + "cborBytes": [191, 27, 224, 251, 139, 34, 191, 163, 171, 194, 27, 156, 74, 128, 163, 139, 240, 10, 193, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 92, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1926386338330280435" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "663b12e866a408c566333e60" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3494096997763249873" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4718139231367121887" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c84bba80c2ba734b" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9771873168664652466" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69bfa3b5e4b969049c0c51ee" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10007540707643202230" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10903179205613158181" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1798307630160078726" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9670749198656793718" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4447558791654020875" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0cedd0be6ff2c5d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6645908068687802262" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cd96d3193bc7b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9843561960723612390" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63e56d7087" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10420121618854133045" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61c81c5045" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12104412812258197181" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1017326754982550272" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14862992443261493743" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18382604523942999091" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3550763787954627976" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8722170899458016284" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a85d40e30cb640b7e6f50b" + }, + { + "_tag": "ByteArray", + "bytearray": "7b" + } + ] + } + } + ] + }, + "cborHex": "bf1b1abbe62b145781f34c663b12e866a408c566333e601b307d86b4fa6ff6d1bf1b417a32a21678cbdf48c84bba80c2ba734bff1b879caadf906d6ab24c69bfa3b5e4b969049c0c51ee1b8ae1ed405a559ab641b31b974fdfb850ff7f25bf1b18f4df430490e7861b8635672889d4ec761b3db8e7282634170b48e0cedd0be6ff2c5d1b5c3b022d4c09ef96479cd96d3193bc7b1b889b5b73297a82e64563e56d70871b909bb567782b3d354561c81c50451ba7fb835221563ebd1b0e1e454b2b3c5b00ff1bce43f4e12feaa1efd8669f1bff1c216b581c74339f1b3146d8da365b25881b790b60389471c41c4ba85d40e30cb640b7e6f50b417bffffff", + "cborBytes": [ + 191, 27, 26, 187, 230, 43, 20, 87, 129, 243, 76, 102, 59, 18, 232, 102, 164, 8, 197, 102, 51, 62, 96, 27, 48, 125, + 134, 180, 250, 111, 246, 209, 191, 27, 65, 122, 50, 162, 22, 120, 203, 223, 72, 200, 75, 186, 128, 194, 186, 115, + 75, 255, 27, 135, 156, 170, 223, 144, 109, 106, 178, 76, 105, 191, 163, 181, 228, 185, 105, 4, 156, 12, 81, 238, + 27, 138, 225, 237, 64, 90, 85, 154, 182, 65, 179, 27, 151, 79, 223, 184, 80, 255, 127, 37, 191, 27, 24, 244, 223, + 67, 4, 144, 231, 134, 27, 134, 53, 103, 40, 137, 212, 236, 118, 27, 61, 184, 231, 40, 38, 52, 23, 11, 72, 224, + 206, 221, 11, 230, 255, 44, 93, 27, 92, 59, 2, 45, 76, 9, 239, 150, 71, 156, 217, 109, 49, 147, 188, 123, 27, 136, + 155, 91, 115, 41, 122, 130, 230, 69, 99, 229, 109, 112, 135, 27, 144, 155, 181, 103, 120, 43, 61, 53, 69, 97, 200, + 28, 80, 69, 27, 167, 251, 131, 82, 33, 86, 62, 189, 27, 14, 30, 69, 75, 43, 60, 91, 0, 255, 27, 206, 67, 244, 225, + 47, 234, 161, 239, 216, 102, 159, 27, 255, 28, 33, 107, 88, 28, 116, 51, 159, 27, 49, 70, 216, 218, 54, 91, 37, + 136, 27, 121, 11, 96, 56, 148, 113, 196, 28, 75, 168, 93, 64, 227, 12, 182, 64, 183, 230, 245, 11, 65, 123, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 93, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05fb02" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4305fb0280ff", + "cborBytes": [191, 67, 5, 251, 2, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 94, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3336689311641845602" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8112da39" + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffef1bfffffffffffffffd1bfffffffffffffff49f031b2e4e4d401a413f62448112da39ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 239, 27, 255, 255, 255, 255, 255, 255, 255, 253, 27, 255, 255, 255, + 255, 255, 255, 255, 244, 159, 3, 27, 46, 78, 77, 64, 26, 65, 63, 98, 68, 129, 18, 218, 57, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 95, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7203967651939604058" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3571221061215618203" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18326708228921046072" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af7b121b2e7e5987" + } + } + ] + }, + "cborHex": "bf1b63f9a2694343d65a1b318f86a25026849b1bfe558c08ff11343848af7b121b2e7e5987ff", + "cborBytes": [ + 191, 27, 99, 249, 162, 105, 67, 67, 214, 90, 27, 49, 143, 134, 162, 80, 38, 132, 155, 27, 254, 85, 140, 8, 255, + 17, 52, 56, 72, 175, 123, 18, 27, 46, 126, 89, 135, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 96, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce2dcd0fef4b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2257209438150030955" + } + } + } + ] + }, + "cborHex": "bf46ce2dcd0fef4b1b1f5338065897766bff", + "cborBytes": [191, 70, 206, 45, 205, 15, 239, 75, 27, 31, 83, 56, 6, 88, 151, 118, 107, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 97, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2365531920bf82baefd13e97" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7566139934358550954" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eb56772a1c72f58729cb8e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17889876283869902613" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c2365531920bf82baefd13e97d87f9f1b6900542ee456b9aa4beb56772a1c72f58729cb8e1bf8459bb20fc03715ffff", + "cborBytes": [ + 191, 76, 35, 101, 83, 25, 32, 191, 130, 186, 239, 209, 62, 151, 216, 127, 159, 27, 105, 0, 84, 46, 228, 86, 185, + 170, 75, 235, 86, 119, 42, 28, 114, 245, 135, 41, 203, 142, 27, 248, 69, 155, 178, 15, 192, 55, 21, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 98, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc45e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13653887547389964322" + } + } + } + ] + }, + "cborHex": "bf43cc45e21bbd7c5a62094ef022ff", + "cborBytes": [191, 67, 204, 69, 226, 27, 189, 124, 90, 98, 9, 78, 240, 34, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 99, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "29" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7377120781947413650" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5fc6e2b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15295216730701076496" + } + } + } + ] + }, + "cborHex": "bf41291b6660cc43f920a49244c5fc6e2b1bd44386943c0c9810ff", + "cborBytes": [ + 191, 65, 41, 27, 102, 96, 204, 67, 249, 32, 164, 146, 68, 197, 252, 110, 43, 27, 212, 67, 134, 148, 60, 12, 152, + 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 100, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "44819ffc5adcfa" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "249867971055728541" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11760923532577667619" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d3139dcfe1d1240477d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17988906477036183095" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15544975305653552470" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6026823073071669426" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3ed503822" + } + ] + } + } + ] + }, + "cborHex": "bf4744819ffc5adcfa9f1b0377b5988786379d1ba33731a40dd2fa23ff4a6d3139dcfe1d1240477dd8669f1bf9a56f21ad771e379f1bd7bad8adffb305561b53a393a74a90a0b245f3ed503822ffffff", + "cborBytes": [ + 191, 71, 68, 129, 159, 252, 90, 220, 250, 159, 27, 3, 119, 181, 152, 135, 134, 55, 157, 27, 163, 55, 49, 164, 13, + 210, 250, 35, 255, 74, 109, 49, 57, 220, 254, 29, 18, 64, 71, 125, 216, 102, 159, 27, 249, 165, 111, 33, 173, 119, + 30, 55, 159, 27, 215, 186, 216, 173, 255, 179, 5, 86, 27, 83, 163, 147, 167, 74, 144, 160, 178, 69, 243, 237, 80, + 56, 34, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 101, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "99de" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4299dea0ff", + "cborBytes": [191, 66, 153, 222, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 102, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5224419064847455676" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ecfd9036afb4a4dd960c05" + }, + { + "_tag": "ByteArray", + "bytearray": "bef544d9adcc5109" + } + ] + } + } + ] + }, + "cborHex": "bf1b4880dd759602d5bc9f4becfd9036afb4a4dd960c0548bef544d9adcc5109ffff", + "cborBytes": [ + 191, 27, 72, 128, 221, 117, 150, 2, 213, 188, 159, 75, 236, 253, 144, 54, 175, 180, 164, 221, 150, 12, 5, 72, 190, + 245, 68, 217, 173, 204, 81, 9, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 103, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + } + ] + }, + "cborHex": "bf0a1bffffffffffffffebff", + "cborBytes": [191, 10, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 104, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2540951387816044674" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbfcef03072c56c206" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8028430494883145338" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16763588365683594036" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9842018926382381720" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14710155423136020591" + } + } + } + ] + }, + "cborHex": "bf1b234345d31e4fa88249fbfcef03072c56c2061b6f6ab6ffa76c667a1be8a43acd217113341b8895e0117bb17a98413a1bfffffffffffffffb1bcc24f86b6acef86fff", + "cborBytes": [ + 191, 27, 35, 67, 69, 211, 30, 79, 168, 130, 73, 251, 252, 239, 3, 7, 44, 86, 194, 6, 27, 111, 106, 182, 255, 167, + 108, 102, 122, 27, 232, 164, 58, 205, 33, 113, 19, 52, 27, 136, 149, 224, 17, 123, 177, 122, 152, 65, 58, 27, 255, + 255, 255, 255, 255, 255, 255, 251, 27, 204, 36, 248, 107, 106, 206, 248, 111, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 105, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9581865637771809944" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7302793888888689977" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "03aa54cccce9951c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5175053568935480495" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5131165994836971751" + } + }, + { + "_tag": "ByteArray", + "bytearray": "681418ad" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e238bd7e0fa40acdb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14254076785621583008" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b84f9a007d8e91498d8669f1b6558bc599f1a953980ff4803aa54cccce9951cd8669f1b47d17bcd66044caf9f1b4735904945d250e744681418adffff496e238bd7e0fa40acdb411341a09f1bc5d0a750b01dc4a0ffff", + "cborBytes": [ + 191, 27, 132, 249, 160, 7, 216, 233, 20, 152, 216, 102, 159, 27, 101, 88, 188, 89, 159, 26, 149, 57, 128, 255, 72, + 3, 170, 84, 204, 204, 233, 149, 28, 216, 102, 159, 27, 71, 209, 123, 205, 102, 4, 76, 175, 159, 27, 71, 53, 144, + 73, 69, 210, 80, 231, 68, 104, 20, 24, 173, 255, 255, 73, 110, 35, 139, 215, 224, 250, 64, 172, 219, 65, 19, 65, + 160, 159, 27, 197, 208, 167, 80, 176, 29, 196, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 106, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8895822171801351761" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4066777771fdfa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6160153023364631588" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bbfea95ad15e1cee5e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c059c4f88e7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9ceadfc4954eccf7ea45c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed14" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15307628743530845541" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b7b744f22174376511bfffffffffffffff01bfffffffffffffffdbf474066777771fdfa1b557d42896fb28c244a8bbfea95ad15e1cee5e2462c059c4f88e7429bee4bc9ceadfc4954eccf7ea45c42ed141bd46f9f3d2bb71565ffff", + "cborBytes": [ + 191, 27, 123, 116, 79, 34, 23, 67, 118, 81, 27, 255, 255, 255, 255, 255, 255, 255, 240, 27, 255, 255, 255, 255, + 255, 255, 255, 253, 191, 71, 64, 102, 119, 119, 113, 253, 250, 27, 85, 125, 66, 137, 111, 178, 140, 36, 74, 139, + 191, 234, 149, 173, 21, 225, 206, 229, 226, 70, 44, 5, 156, 79, 136, 231, 66, 155, 238, 75, 201, 206, 173, 252, + 73, 84, 236, 207, 126, 164, 92, 66, 237, 20, 27, 212, 111, 159, 61, 43, 183, 21, 101, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 107, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5255954983580754914" + } + } + } + ] + }, + "cborHex": "bf1bffffffffffffffee1b48f0e735d7c663e2ff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 238, 27, 72, 240, 231, 53, 215, 198, 99, 226, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 108, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2feb6f8650ff51cb6b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2116518237580790831" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72be1c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12618149837142127228" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11803708811128369235" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4610312372208718984" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c667518007e2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1643491921757523100" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5840699546442814426" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "affefda42f9fb1deffa2912f" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bea456dbd0e8b3cf" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7796439537049746561" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f68d1530" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16662755055289470307" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13348021844185348451" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6336b57487b8c2d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9dd19" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e2e070d1aae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba7f09c6af3c2c6d161f9f" + } + } + ] + } + } + ] + }, + "cborHex": "bf492feb6f8650ff51cb6b1b1d5f621f8fa38c2f4372be1cd8669f1baf1cac6c4d82727c9f1ba3cf329fff7470531b3ffb1ead1116d48846c667518007e21b16cedb31fb94cc9c1b510e554ac98253daffff4caffefda42f9fb1deffa2912f8048bea456dbd0e8b3cfd8669f1b6c3284739ea93c8180ff44f68d1530bf1be73dff7091df8d631bb93db3257cd27963486336b57487b8c2d543e9dd19469e2e070d1aae4bba7f09c6af3c2c6d161f9fffff", + "cborBytes": [ + 191, 73, 47, 235, 111, 134, 80, 255, 81, 203, 107, 27, 29, 95, 98, 31, 143, 163, 140, 47, 67, 114, 190, 28, 216, + 102, 159, 27, 175, 28, 172, 108, 77, 130, 114, 124, 159, 27, 163, 207, 50, 159, 255, 116, 112, 83, 27, 63, 251, + 30, 173, 17, 22, 212, 136, 70, 198, 103, 81, 128, 7, 226, 27, 22, 206, 219, 49, 251, 148, 204, 156, 27, 81, 14, + 85, 74, 201, 130, 83, 218, 255, 255, 76, 175, 254, 253, 164, 47, 159, 177, 222, 255, 162, 145, 47, 128, 72, 190, + 164, 86, 219, 208, 232, 179, 207, 216, 102, 159, 27, 108, 50, 132, 115, 158, 169, 60, 129, 128, 255, 68, 246, 141, + 21, 48, 191, 27, 231, 61, 255, 112, 145, 223, 141, 99, 27, 185, 61, 179, 37, 124, 210, 121, 99, 72, 99, 54, 181, + 116, 135, 184, 194, 213, 67, 233, 221, 25, 70, 158, 46, 7, 13, 26, 174, 75, 186, 127, 9, 198, 175, 60, 44, 109, + 22, 31, 159, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 109, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4225814160081345945" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7567362850138509375" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8aca60cb77d8c431" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6374762577674241747" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1bae" + }, + { + "_tag": "ByteArray", + "bytearray": "0a1df67960a3" + }, + { + "_tag": "ByteArray", + "bytearray": "c694c1" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b48d67a4eb733" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8214389927474646264" + } + } + } + ] + }, + "cborHex": "bf1b3aa51b96da76dd99d8669f1b6904ac6b28fe503f9f488aca60cb77d8c4311b5877b4ca19ba06d3421bae460a1df67960a343c694c1ffff471b48d67a4eb7331b71ff601e09ac4cf8ff", + "cborBytes": [ + 191, 27, 58, 165, 27, 150, 218, 118, 221, 153, 216, 102, 159, 27, 105, 4, 172, 107, 40, 254, 80, 63, 159, 72, 138, + 202, 96, 203, 119, 216, 196, 49, 27, 88, 119, 180, 202, 25, 186, 6, 211, 66, 27, 174, 70, 10, 29, 246, 121, 96, + 163, 67, 198, 148, 193, 255, 255, 71, 27, 72, 214, 122, 78, 183, 51, 27, 113, 255, 96, 30, 9, 172, 76, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 110, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7156821570917760865" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8739069216054121278" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3dd444" + }, + { + "_tag": "ByteArray", + "bytearray": "d7e90402ef7ba82534" + }, + { + "_tag": "ByteArray", + "bytearray": "209bfe8366" + }, + { + "_tag": "ByteArray", + "bytearray": "3867451eff" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10418926596334490871" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "105f8f6441" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ad316096571" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17282737505878373430" + } + } + } + ] + }, + "cborHex": "bf1b6352234cdf67ff61d8669f1b794769268275133e9f433dd44449d7e90402ef7ba8253445209bfe8366453867451effffff1b909776899b6314f745105f8f6441468ad3160965711befd89e3198337436ff", + "cborBytes": [ + 191, 27, 99, 82, 35, 76, 223, 103, 255, 97, 216, 102, 159, 27, 121, 71, 105, 38, 130, 117, 19, 62, 159, 67, 61, + 212, 68, 73, 215, 233, 4, 2, 239, 123, 168, 37, 52, 69, 32, 155, 254, 131, 102, 69, 56, 103, 69, 30, 255, 255, + 255, 27, 144, 151, 118, 137, 155, 99, 20, 247, 69, 16, 95, 143, 100, 65, 70, 138, 211, 22, 9, 101, 113, 27, 239, + 216, 158, 49, 152, 51, 116, 54, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 111, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2894417113802954500" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "621135000814034669" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f82953833210ee2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12572403807921801034" + } + } + } + ] + }, + "cborHex": "bf1b282b09079c0957041b089eb6fe09151eed484f82953833210ee21bae7a26a6dff2874aff", + "cborBytes": [ + 191, 27, 40, 43, 9, 7, 156, 9, 87, 4, 27, 8, 158, 182, 254, 9, 21, 30, 237, 72, 79, 130, 149, 56, 51, 33, 14, 226, + 27, 174, 122, 38, 166, 223, 242, 135, 74, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 112, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19f0650c4a327fcd90f49e" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ef97ef2e6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11449359488166473507" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10626138658024126059" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a592c5" + }, + { + "_tag": "ByteArray", + "bytearray": "2e52b3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "998bd2a7cdf6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc1bfbfa504cb442" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "681c1a09d96b358782" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2179705829390260112" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4eafc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "559cbc34f6678d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7881aeb4919" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5355976363782795497" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea8e26558afe41956c2d0e62" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11124229196261123931" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5dc8f3b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "48255e2901" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4553090288187027990" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14177712507937080710" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c719e6ca997e78e" + } + ] + } + } + ] + }, + "cborHex": "bf4b19f0650c4a327fcd90f49ea0451ef97ef2e6d8669f1b9ee44bcb0de92f239f1b9377a0cf4d92f66b43a592c5432e52b3ffff415b46998bd2a7cdf648bc1bfbfa504cb442bf49681c1a09d96b3587821b1e3fdee73ba7979043b4eafc47559cbc34f6678d46b7881aeb49191b4a5440202ca970e94cea8e26558afe41956c2d0e621b9a613383eb2c675bff44c5dc8f3b9f4548255e29011b3f2fd37e69ab32161bc4c15a68c333c586489c719e6ca997e78effff", + "cborBytes": [ + 191, 75, 25, 240, 101, 12, 74, 50, 127, 205, 144, 244, 158, 160, 69, 30, 249, 126, 242, 230, 216, 102, 159, 27, + 158, 228, 75, 203, 13, 233, 47, 35, 159, 27, 147, 119, 160, 207, 77, 146, 246, 107, 67, 165, 146, 197, 67, 46, 82, + 179, 255, 255, 65, 91, 70, 153, 139, 210, 167, 205, 246, 72, 188, 27, 251, 250, 80, 76, 180, 66, 191, 73, 104, 28, + 26, 9, 217, 107, 53, 135, 130, 27, 30, 63, 222, 231, 59, 167, 151, 144, 67, 180, 234, 252, 71, 85, 156, 188, 52, + 246, 103, 141, 70, 183, 136, 26, 235, 73, 25, 27, 74, 84, 64, 32, 44, 169, 112, 233, 76, 234, 142, 38, 85, 138, + 254, 65, 149, 108, 45, 14, 98, 27, 154, 97, 51, 131, 235, 44, 103, 91, 255, 68, 197, 220, 143, 59, 159, 69, 72, + 37, 94, 41, 1, 27, 63, 47, 211, 126, 105, 171, 50, 22, 27, 196, 193, 90, 104, 195, 51, 197, 134, 72, 156, 113, + 158, 108, 169, 151, 231, 142, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 113, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7716c844bf6df8995f79d012" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + } + ] + }, + "cborHex": "bf4c7716c844bf6df8995f79d0121bffffffffffffffefff", + "cborBytes": [ + 191, 76, 119, 22, 200, 68, 191, 109, 248, 153, 95, 121, 208, 18, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 114, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "39e20a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "765668575132646563" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "052d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2549813428072446157" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f572" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8565951384925434550" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "515328569825317241" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10931701342036706207" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "383a1a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12601619623295730181" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a03cf20134f324a65c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14334035758430718449" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8275338017438827192" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e49cf01aef4f85237" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1487512085487113770" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e2472" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12130174155398551432" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6474636399264639592" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1607295769363440336" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "861f686527c723" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b95bb303209" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5ade522e0f576" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7140366906055675320" + } + } + } + ] + }, + "cborHex": "bf4339e20abf1b0aa033832c75fca342052d1b2362c1cda7c778cd42f5721b76e05f6675bef2b61b0726d09a9b0c51791b97b53473b2c2439f43383a1a1baee1f247f922420549a03cf20134f324a65c1bc6ecb993cb0289f11b72d7e8150dba02b8ff495e49cf01aef4f852371b14a4b45c4e8f562a437e2472d8669f1ba85709203c2797889f1b59da878043fbaa681b164e42fc85e562d0ffff47861f686527c723463b95bb30320947b5ade522e0f5761b6317addea9674db8ff", + "cborBytes": [ + 191, 67, 57, 226, 10, 191, 27, 10, 160, 51, 131, 44, 117, 252, 163, 66, 5, 45, 27, 35, 98, 193, 205, 167, 199, + 120, 205, 66, 245, 114, 27, 118, 224, 95, 102, 117, 190, 242, 182, 27, 7, 38, 208, 154, 155, 12, 81, 121, 27, 151, + 181, 52, 115, 178, 194, 67, 159, 67, 56, 58, 26, 27, 174, 225, 242, 71, 249, 34, 66, 5, 73, 160, 60, 242, 1, 52, + 243, 36, 166, 92, 27, 198, 236, 185, 147, 203, 2, 137, 241, 27, 114, 215, 232, 21, 13, 186, 2, 184, 255, 73, 94, + 73, 207, 1, 174, 244, 248, 82, 55, 27, 20, 164, 180, 92, 78, 143, 86, 42, 67, 126, 36, 114, 216, 102, 159, 27, + 168, 87, 9, 32, 60, 39, 151, 136, 159, 27, 89, 218, 135, 128, 67, 251, 170, 104, 27, 22, 78, 66, 252, 133, 229, + 98, 208, 255, 255, 71, 134, 31, 104, 101, 39, 199, 35, 70, 59, 149, 187, 48, 50, 9, 71, 181, 173, 229, 34, 224, + 245, 118, 27, 99, 23, 173, 222, 169, 103, 77, 184, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 115, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2fd06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5543987856405771577" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14330154011210479670" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12841655045898413038" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6db3efd58a57" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1567897319908937954" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3552533360170443497" + } + }, + { + "_tag": "ByteArray", + "bytearray": "304f42da54d7f2fa76944d55" + }, + { + "_tag": "ByteArray", + "bytearray": "2a809371a8c7bd" + } + ] + } + } + ] + }, + "cborHex": "bf0243e2fd060ad87c801b4cf0339504253539d87f9f1bc6deef2616d6f836ff1bb236b939eae0a3ee9f466db3efd58a571b15c24a4e2d7590e21b314d2244d9af22e94c304f42da54d7f2fa76944d55472a809371a8c7bdffff", + "cborBytes": [ + 191, 2, 67, 226, 253, 6, 10, 216, 124, 128, 27, 76, 240, 51, 149, 4, 37, 53, 57, 216, 127, 159, 27, 198, 222, 239, + 38, 22, 214, 248, 54, 255, 27, 178, 54, 185, 57, 234, 224, 163, 238, 159, 70, 109, 179, 239, 213, 138, 87, 27, 21, + 194, 74, 78, 45, 117, 144, 226, 27, 49, 77, 34, 68, 217, 175, 34, 233, 76, 48, 79, 66, 218, 84, 215, 242, 250, + 118, 148, 77, 85, 71, 42, 128, 147, 113, 168, 199, 189, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 116, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12589194070907600563" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7963895803523302232" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bef567e35d83" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + }, + "cborHex": "bf1baeb5cd4e9ce6beb39f1b6e857109ed3b035846bef567e35d83ff42bc0607ff", + "cborBytes": [ + 191, 27, 174, 181, 205, 78, 156, 230, 190, 179, 159, 27, 110, 133, 113, 9, 237, 59, 3, 88, 70, 190, 245, 103, 227, + 93, 131, 255, 66, 188, 6, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 117, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0771154f8c21" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d" + }, + { + "_tag": "ByteArray", + "bytearray": "00f8" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9ad199903" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "649eb67d3135" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b61" + } + } + ] + } + } + ] + }, + "cborHex": "bf460771154f8c21d9050c9f10412d4200f8ff45e9ad199903bf46649eb67d3135423b61ffff", + "cborBytes": [ + 191, 70, 7, 113, 21, 79, 140, 33, 217, 5, 12, 159, 16, 65, 45, 66, 0, 248, 255, 69, 233, 173, 25, 153, 3, 191, 70, + 100, 158, 182, 125, 49, 53, 66, 59, 97, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 118, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4744562083154906810" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10227693305879276059" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "917e51975317" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11075320192463768013" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13373401624963105905" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b41d81213ad3c4ebad8669f1b8df010df80932a1b80ff1bfffffffffffffff89f46917e519753171b99b37109158389cd1bb997ddec2e8ec471ffff", + "cborBytes": [ + 191, 27, 65, 216, 18, 19, 173, 60, 78, 186, 216, 102, 159, 27, 141, 240, 16, 223, 128, 147, 42, 27, 128, 255, 27, + 255, 255, 255, 255, 255, 255, 255, 248, 159, 70, 145, 126, 81, 151, 83, 23, 27, 153, 179, 113, 9, 21, 131, 137, + 205, 27, 185, 151, 221, 236, 46, 142, 196, 113, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 119, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0be45098a120" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6607368253583826678" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14544071706679102990" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20bb36a65c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3657319045442212418" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "508bb57adcd0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16021475108538013683" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eaf36eda86538d" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf460be45098a120d8669f1b5bb2166b570e9ef69f1bc9d6ec28d06ace0effff4520bb36a65c1b32c1684b65da924246508bb57adcd01bde57b6b9ce2bd7f347eaf36eda86538da0ff", + "cborBytes": [ + 191, 70, 11, 228, 80, 152, 161, 32, 216, 102, 159, 27, 91, 178, 22, 107, 87, 14, 158, 246, 159, 27, 201, 214, 236, + 40, 208, 106, 206, 14, 255, 255, 69, 32, 187, 54, 166, 92, 27, 50, 193, 104, 75, 101, 218, 146, 66, 70, 80, 139, + 181, 122, 220, 208, 27, 222, 87, 182, 185, 206, 43, 215, 243, 71, 234, 243, 110, 218, 134, 83, 141, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 120, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14180888048944449903" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7280093870417399920" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1bc4cca28c04ea896f1b650816cdb5ba50701bffffffffffffffffa0ff", + "cborBytes": [ + 191, 27, 196, 204, 162, 140, 4, 234, 137, 111, 27, 101, 8, 22, 205, 181, 186, 80, 112, 27, 255, 255, 255, 255, + 255, 255, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 121, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e003" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11292761840094967670" + } + }, + { + "_tag": "ByteArray", + "bytearray": "99aac0cb04de4da1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17810376182561195851" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02ed0555009f07003cfc05" + } + ] + } + } + ] + }, + "cborHex": "bf4202a80142e0039f0a1b9cb7f30fdbf277764899aac0cb04de4da11bf72b2ac64da3474b4b02ed0555009f07003cfc05ffff", + "cborBytes": [ + 191, 66, 2, 168, 1, 66, 224, 3, 159, 10, 27, 156, 183, 243, 15, 219, 242, 119, 118, 72, 153, 170, 192, 203, 4, + 222, 77, 161, 27, 247, 43, 42, 198, 77, 163, 71, 75, 75, 2, 237, 5, 85, 0, 159, 7, 0, 60, 252, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 122, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4366433379104658637" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3c98b00620f114cd9f12ffff", + "cborBytes": [191, 27, 60, 152, 176, 6, 32, 241, 20, 205, 159, 18, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 123, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "051c9bad55" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1759361844291416574" + } + } + } + ] + }, + "cborHex": "bf45051c9bad551b186a8246a05db1feff", + "cborBytes": [191, 69, 5, 28, 155, 173, 85, 27, 24, 106, 130, 70, 160, 93, 177, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 124, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16573283550299882827" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4312038434846549351" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e317761e9183ca9ba2f8329" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00f8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e72ac7bc621ba38012" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df5959feb1dcfe80f03885e8" + } + } + ] + }, + "cborHex": "bf1be60021947973054b9f1b3bd7701c3edc2567ff4c5e317761e9183ca9ba2f83294200f849e72ac7bc621ba380124cdf5959feb1dcfe80f03885e8ff", + "cborBytes": [ + 191, 27, 230, 0, 33, 148, 121, 115, 5, 75, 159, 27, 59, 215, 112, 28, 62, 220, 37, 103, 255, 76, 94, 49, 119, 97, + 233, 24, 60, 169, 186, 47, 131, 41, 66, 0, 248, 73, 231, 42, 199, 188, 98, 27, 163, 128, 18, 76, 223, 89, 89, 254, + 177, 220, 254, 128, 240, 56, 133, 232, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 125, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10458196929946851593" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4936556281609851714" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13c3a11d382903bd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "26a3e5080440cdb25b80" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a16598b486b6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8497965d86c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e9fc0f9c97aaef7d8" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6923835530544188612" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "283e7bbbb731991e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3288776571515174904" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b9122fab2a8901909bf1b44822bc87b1413424813c3a11d382903bd4a26a3e5080440cdb25b8046a16598b486b6468497965d86c9490e9fc0f9c97aaef7d8ff1bffffffffffffffed1b601667bb21508cc448283e7bbbb731991ed8669f1b2da414ddfac9fff880ffff", + "cborBytes": [ + 191, 27, 145, 34, 250, 178, 168, 144, 25, 9, 191, 27, 68, 130, 43, 200, 123, 20, 19, 66, 72, 19, 195, 161, 29, 56, + 41, 3, 189, 74, 38, 163, 229, 8, 4, 64, 205, 178, 91, 128, 70, 161, 101, 152, 180, 134, 182, 70, 132, 151, 150, + 93, 134, 201, 73, 14, 159, 192, 249, 201, 122, 174, 247, 216, 255, 27, 255, 255, 255, 255, 255, 255, 255, 237, 27, + 96, 22, 103, 187, 33, 80, 140, 196, 72, 40, 62, 123, 187, 183, 49, 153, 30, 216, 102, 159, 27, 45, 164, 20, 221, + 250, 201, 255, 248, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 126, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9927552004416836676" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10719518584849207640" + } + }, + { + "_tag": "ByteArray", + "bytearray": "56762ad480cbfbec0a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11161651625336685570" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16784115562141263109" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1107027380702354734" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34e3597e33965fb17e4a7c51" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1285017503068881464" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11217332869549007346" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91540db10c7e805bc78d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae6d06" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b89c5bff3187b94449f1b94c3615bc52291584956762ad480cbfbec0a1b9ae627042adac402ff1be8ed282d7e892505bf1b0f5cf38997651d2e4c34e3597e33965fb17e4a7c511b11d54c9c589482381b9babf8d018c821f24a91540db10c7e805bc78d43ae6d06ffff", + "cborBytes": [ + 191, 27, 137, 197, 191, 243, 24, 123, 148, 68, 159, 27, 148, 195, 97, 91, 197, 34, 145, 88, 73, 86, 118, 42, 212, + 128, 203, 251, 236, 10, 27, 154, 230, 39, 4, 42, 218, 196, 2, 255, 27, 232, 237, 40, 45, 126, 137, 37, 5, 191, 27, + 15, 92, 243, 137, 151, 101, 29, 46, 76, 52, 227, 89, 126, 51, 150, 95, 177, 126, 74, 124, 81, 27, 17, 213, 76, + 156, 88, 148, 130, 56, 27, 155, 171, 248, 208, 24, 200, 33, 242, 74, 145, 84, 13, 177, 12, 126, 128, 91, 199, 141, + 67, 174, 109, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 127, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "739e3413f876bc47ca9c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15965591125443206258" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6423257582977225632" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f23c770570" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15519189194396762421" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a739e3413f876bc47ca9cd8669f1bdd912c8a0d2bdc729f1b5923febd663113a045f23c7705701bd75f3c591e198135ffffff", + "cborBytes": [ + 191, 74, 115, 158, 52, 19, 248, 118, 188, 71, 202, 156, 216, 102, 159, 27, 221, 145, 44, 138, 13, 43, 220, 114, + 159, 27, 89, 35, 254, 189, 102, 49, 19, 160, 69, 242, 60, 119, 5, 112, 27, 215, 95, 60, 89, 30, 25, 129, 53, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 128, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7562194333851489996" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0cfc5869a1b3ca9062d223" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8023115503159322106" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6092670807729099953" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "468432574085737916" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6467602418580959052" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "640636788504981033" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c7673663c75b58" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8208710428179236606" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fb5fdd66af" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8969642817331244172" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12014439665972883070" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5147570503521843135" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12429303688052352295" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6958654676877613034" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13578341833863207368" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7225093203720916854" + } + } + } + ] + }, + "cborHex": "bf1b68f24fae2fb096cc9f4b0cfc5869a1b3ca9062d223ff1b6f57d50ab5bda5fa9f1b548d83d1bc15d4b11b068034f1bb9a2dbc1b59c18a2203f9af4c1b08e3ffc3d0e2ee2947c7673663c75b58ff1b71eb32a48fab06fe9f45fb5fdd66afff1b7c7a929e8129ac8ca01ba6bbdd3891ad2e7ed8669f1b476fd81996b2b7bf9f1bac7dc1d9dbd025271b60921b8f61e697eaffff1bbc6ff5f4ee3e19c81b6444affd14dfcf76ff", + "cborBytes": [ + 191, 27, 104, 242, 79, 174, 47, 176, 150, 204, 159, 75, 12, 252, 88, 105, 161, 179, 202, 144, 98, 210, 35, 255, + 27, 111, 87, 213, 10, 181, 189, 165, 250, 159, 27, 84, 141, 131, 209, 188, 21, 212, 177, 27, 6, 128, 52, 241, 187, + 154, 45, 188, 27, 89, 193, 138, 34, 3, 249, 175, 76, 27, 8, 227, 255, 195, 208, 226, 238, 41, 71, 199, 103, 54, + 99, 199, 91, 88, 255, 27, 113, 235, 50, 164, 143, 171, 6, 254, 159, 69, 251, 95, 221, 102, 175, 255, 27, 124, 122, + 146, 158, 129, 41, 172, 140, 160, 27, 166, 187, 221, 56, 145, 173, 46, 126, 216, 102, 159, 27, 71, 111, 216, 25, + 150, 178, 183, 191, 159, 27, 172, 125, 193, 217, 219, 208, 37, 39, 27, 96, 146, 27, 143, 97, 230, 151, 234, 255, + 255, 27, 188, 111, 245, 244, 238, 62, 25, 200, 27, 100, 68, 175, 253, 20, 223, 207, 118, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 129, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41b58a8c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5693805739631774897" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16057820645057203138" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4415652441781164479" + } + }, + { + "_tag": "ByteArray", + "bytearray": "43fb098c0a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a0c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5131985000619086389" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13932671237800957616" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10079516421856754394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15069928289484804427" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d181b12a5ae9727dc56" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9e0ff19858dbc0e2edb977d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61656f07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15414340656760094791" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "985a98b075fa0de22476da72" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b04ba977e706" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14585564861056608632" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f46e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccd2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "243645702761270025" + } + } + } + ] + }, + "cborHex": "bf4441b58a8cd8669f1b4f04762732d50cb19f1bded8d6cc77918bc21b3d478c802bf3d9bf4543fb098c0affff428a0cbf1b4738792aea8892351bc15acaac1d6d96b01b8be1a2c8387cfada1bd12323ef755a114b4a1d181b12a5ae9727dc564ce9e0ff19858dbc0e2edb977d4461656f071bd5eabd289d0c0047ff4c985a98b075fa0de22476da729f46b04ba977e7061bca6a55f6a7b2e97842f46eff42ccd21b03619a79cc22cb09ff", + "cborBytes": [ + 191, 68, 65, 181, 138, 140, 216, 102, 159, 27, 79, 4, 118, 39, 50, 213, 12, 177, 159, 27, 222, 216, 214, 204, 119, + 145, 139, 194, 27, 61, 71, 140, 128, 43, 243, 217, 191, 69, 67, 251, 9, 140, 10, 255, 255, 66, 138, 12, 191, 27, + 71, 56, 121, 42, 234, 136, 146, 53, 27, 193, 90, 202, 172, 29, 109, 150, 176, 27, 139, 225, 162, 200, 56, 124, + 250, 218, 27, 209, 35, 35, 239, 117, 90, 17, 75, 74, 29, 24, 27, 18, 165, 174, 151, 39, 220, 86, 76, 233, 224, + 255, 25, 133, 141, 188, 14, 46, 219, 151, 125, 68, 97, 101, 111, 7, 27, 213, 234, 189, 40, 157, 12, 0, 71, 255, + 76, 152, 90, 152, 176, 117, 250, 13, 226, 36, 118, 218, 114, 159, 70, 176, 75, 169, 119, 231, 6, 27, 202, 106, 85, + 246, 167, 178, 233, 120, 66, 244, 110, 255, 66, 204, 210, 27, 3, 97, 154, 121, 204, 34, 203, 9, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 130, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "abdff23e1f3ca027" + }, + { + "_tag": "ByteArray", + "bytearray": "44cbe824a019e50d4a" + }, + { + "_tag": "ByteArray", + "bytearray": "baa453185de8ab5d4bc321" + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff1081bfffffffffffffffb9f48abdff23e1f3ca0274944cbe824a019e50d4a4bbaa453185de8ab5d4bc321ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 241, 8, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 72, 171, 223, + 242, 62, 31, 60, 160, 39, 73, 68, 203, 232, 36, 160, 25, 229, 13, 74, 75, 186, 164, 83, 24, 93, 232, 171, 93, 75, + 195, 33, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 131, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e133f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7805251113176564521" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5ba13e2645cdf2ee90f64824" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3474020635326880941" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e6fc249adc6dcf" + }, + { + "_tag": "ByteArray", + "bytearray": "ca0b6d5c8d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41627d5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "485243950469990299" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9435a861f247f96a866b9917" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15617901464228468664" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da774a9b68" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e58233903890d73b7a4b0a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4105889089028404135" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f39b25b05a360d7956da0662" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1938046062964644395" + } + } + } + ] + }, + "cborHex": "bf432e133f9f1b6c51d2888f9c83294c5ba13e2645cdf2ee90f648241b3036335c97091cad47e6fc249adc6dcf45ca0b6d5c8dff4441627d5c1b06bbeecd512bc79b4c9435a861f247f96a866b99171bd8bdeea2706417b845da774a9b68804be58233903890d73b7a4b0ad8669f1b38fb0c5f5eb0b3a780ff4cf39b25b05a360d7956da06621b1ae552a0455a1a2bff", + "cborBytes": [ + 191, 67, 46, 19, 63, 159, 27, 108, 81, 210, 136, 143, 156, 131, 41, 76, 91, 161, 62, 38, 69, 205, 242, 238, 144, + 246, 72, 36, 27, 48, 54, 51, 92, 151, 9, 28, 173, 71, 230, 252, 36, 154, 220, 109, 207, 69, 202, 11, 109, 92, 141, + 255, 68, 65, 98, 125, 92, 27, 6, 187, 238, 205, 81, 43, 199, 155, 76, 148, 53, 168, 97, 242, 71, 249, 106, 134, + 107, 153, 23, 27, 216, 189, 238, 162, 112, 100, 23, 184, 69, 218, 119, 74, 155, 104, 128, 75, 229, 130, 51, 144, + 56, 144, 215, 59, 122, 75, 10, 216, 102, 159, 27, 56, 251, 12, 95, 94, 176, 179, 167, 128, 255, 76, 243, 155, 37, + 176, 90, 54, 13, 121, 86, 218, 6, 98, 27, 26, 229, 82, 160, 69, 90, 26, 43, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 132, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23278e55f4ca228b90" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f664be9d2e73" + } + } + ] + }, + "cborHex": "bf4923278e55f4ca228b9046f664be9d2e73ff", + "cborBytes": [191, 73, 35, 39, 142, 85, 244, 202, 34, 139, 144, 70, 246, 100, 190, 157, 46, 115, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 133, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1405904851522900239" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6294582819984121135" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05af" + }, + { + "_tag": "ByteArray", + "bytearray": "b4" + }, + { + "_tag": "ByteArray", + "bytearray": "b98873b9cd219c4b770106" + }, + { + "_tag": "ByteArray", + "bytearray": "6b21b9bd42b0515d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2223263840372860417" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6797887217392685017" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31590701" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b26404a0f8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe6400a3008d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13468600319978447314" + } + }, + { + "_tag": "ByteArray", + "bytearray": "525a94b8c68d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12651316448123052988" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5341209191714937293" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eada20a5841e56" + } + ] + } + } + ] + }, + "cborHex": "bf1b1382c7037f05510fd9050b9f1b575ad9b9826e1d2f4205af41b44bb98873b9cd219c4b770106486b21b9bd42b0515dff1b1eda9eaef76526011b5e56f2684fdc0fd9443159070145b26404a0f846fe6400a3008d9f1bbaea14a19e0721d246525a94b8c68d1baf928147af6e63bc1b4a1fc975ff3859cd47eada20a5841e56ffff", + "cborBytes": [ + 191, 27, 19, 130, 199, 3, 127, 5, 81, 15, 217, 5, 11, 159, 27, 87, 90, 217, 185, 130, 110, 29, 47, 66, 5, 175, 65, + 180, 75, 185, 136, 115, 185, 205, 33, 156, 75, 119, 1, 6, 72, 107, 33, 185, 189, 66, 176, 81, 93, 255, 27, 30, + 218, 158, 174, 247, 101, 38, 1, 27, 94, 86, 242, 104, 79, 220, 15, 217, 68, 49, 89, 7, 1, 69, 178, 100, 4, 160, + 248, 70, 254, 100, 0, 163, 0, 141, 159, 27, 186, 234, 20, 161, 158, 7, 33, 210, 70, 82, 90, 148, 184, 198, 141, + 27, 175, 146, 129, 71, 175, 110, 99, 188, 27, 74, 31, 201, 117, 255, 56, 89, 205, 71, 234, 218, 32, 165, 132, 30, + 86, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 134, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4600485665762050036" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7761815974584891216" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8d7ce346f6c95802741d13" + }, + { + "_tag": "ByteArray", + "bytearray": "46bd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10125046748647132566" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2684772295667959419" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d7d7edd8648cc" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6285052725497358409" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3967969057054065426" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3700380272779572092" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3fd83556ae05fff4d8669f1b6bb782814915b7509f4b8d7ce346f6c95802741d134246bd1b8c83645f83560d961b25423a2daa19467b472d7d7edd8648ccffff1b5738fe2779dee849bf1b37110ed58d7303121b335a6440ace3b37cffff", + "cborBytes": [ + 191, 27, 63, 216, 53, 86, 174, 5, 255, 244, 216, 102, 159, 27, 107, 183, 130, 129, 73, 21, 183, 80, 159, 75, 141, + 124, 227, 70, 246, 201, 88, 2, 116, 29, 19, 66, 70, 189, 27, 140, 131, 100, 95, 131, 86, 13, 150, 27, 37, 66, 58, + 45, 170, 25, 70, 123, 71, 45, 125, 126, 221, 134, 72, 204, 255, 255, 27, 87, 56, 254, 39, 121, 222, 232, 73, 191, + 27, 55, 17, 14, 213, 141, 115, 3, 18, 27, 51, 90, 100, 64, 172, 227, 179, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 135, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6993327333998455805" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a0300cb136c04d5" + } + } + ] + }, + "cborHex": "bf1b610d4a287501ebfd1bfffffffffffffff3421d05480a0300cb136c04d5ff", + "cborBytes": [ + 191, 27, 97, 13, 74, 40, 117, 1, 235, 253, 27, 255, 255, 255, 255, 255, 255, 255, 243, 66, 29, 5, 72, 10, 3, 0, + 203, 19, 108, 4, 213, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 136, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "840b46362185" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8738975697957980450" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d9c1041354b9" + }, + { + "_tag": "ByteArray", + "bytearray": "76b78db7c2eca762" + }, + { + "_tag": "ByteArray", + "bytearray": "15f15b7e4ef0ec90043700" + }, + { + "_tag": "ByteArray", + "bytearray": "df1eb39436e198" + } + ] + } + } + ] + }, + "cborHex": "bf46840b463621859f1b79471418a18e892246d9c1041354b94876b78db7c2eca7624b15f15b7e4ef0ec9004370047df1eb39436e198ffff", + "cborBytes": [ + 191, 70, 132, 11, 70, 54, 33, 133, 159, 27, 121, 71, 20, 24, 161, 142, 137, 34, 70, 217, 193, 4, 19, 84, 185, 72, + 118, 183, 141, 183, 194, 236, 167, 98, 75, 21, 241, 91, 126, 78, 240, 236, 144, 4, 55, 0, 71, 223, 30, 179, 148, + 54, 225, 152, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 137, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "109a8bfda5f3ea66908407" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1230835333737812106" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bd8d32d44d7ea72" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5746f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7698511152123981970" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4446428a5c952e8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a695f9c8584e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50b1042a758c6b30a0be37" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16238674963019734489" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3e779e84daf57028f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fea63d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11225971101104270618" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdf66ee84bc6a8199012a0e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96ea5cf309e2" + } + } + ] + }, + "cborHex": "bf4b109a8bfda5f3ea66908407bf1b1114ce36fc71108a483bd8d32d44d7ea72435746f51b6ad69b1ab9bbb092ff484446428a5c952e8f476a695f9c8584e24b50b1042a758c6b30a0be37d8669f1be15b5cd7b9d21dd980ff49d3e779e84daf57028fbf43fea63d1b9bcaa93d1c1eed1aff4cfdf66ee84bc6a8199012a0e64696ea5cf309e2ff", + "cborBytes": [ + 191, 75, 16, 154, 139, 253, 165, 243, 234, 102, 144, 132, 7, 191, 27, 17, 20, 206, 54, 252, 113, 16, 138, 72, 59, + 216, 211, 45, 68, 215, 234, 114, 67, 87, 70, 245, 27, 106, 214, 155, 26, 185, 187, 176, 146, 255, 72, 68, 70, 66, + 138, 92, 149, 46, 143, 71, 106, 105, 95, 156, 133, 132, 226, 75, 80, 177, 4, 42, 117, 140, 107, 48, 160, 190, 55, + 216, 102, 159, 27, 225, 91, 92, 215, 185, 210, 29, 217, 128, 255, 73, 211, 231, 121, 232, 77, 175, 87, 2, 143, + 191, 67, 254, 166, 61, 27, 155, 202, 169, 61, 28, 30, 237, 26, 255, 76, 253, 246, 110, 232, 75, 198, 168, 25, 144, + 18, 160, 230, 70, 150, 234, 92, 243, 9, 226, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 138, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3332066906835447418" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9f7ceb183581" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4929749757460262380" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + } + } + ] + }, + "cborHex": "bf09d905019f1b2e3de1329dc2ee7a469f7ceb183581ff1b4469fd4914fcadecd87b9f1bfffffffffffffff30fffff", + "cborBytes": [ + 191, 9, 217, 5, 1, 159, 27, 46, 61, 225, 50, 157, 194, 238, 122, 70, 159, 124, 235, 24, 53, 129, 255, 27, 68, 105, + 253, 73, 20, 252, 173, 236, 216, 123, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 139, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2499866415133230898" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4147431150804902409" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3007903486105050378" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6728350306410537087" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10436889447196520916" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17238831149852662085" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1489358299306612412" + } + }, + { + "_tag": "ByteArray", + "bytearray": "08b65c8508" + }, + { + "_tag": "ByteArray", + "bytearray": "a7a2370c043cebc989" + } + ] + } + } + ] + }, + "cborHex": "bf1b22b14f427bf207321b398ea2a85a1da2091b29be3848b7f35d0a1b5d5fe6f491fda07f1b90d747a7bc2bf1d441361bef3ca19875e819459f1b14ab437b757356bc4508b65c850849a7a2370c043cebc989ffff", + "cborBytes": [ + 191, 27, 34, 177, 79, 66, 123, 242, 7, 50, 27, 57, 142, 162, 168, 90, 29, 162, 9, 27, 41, 190, 56, 72, 183, 243, + 93, 10, 27, 93, 95, 230, 244, 145, 253, 160, 127, 27, 144, 215, 71, 167, 188, 43, 241, 212, 65, 54, 27, 239, 60, + 161, 152, 117, 232, 25, 69, 159, 27, 20, 171, 67, 123, 117, 115, 86, 188, 69, 8, 182, 92, 133, 8, 73, 167, 162, + 55, 12, 4, 60, 235, 201, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 140, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c18f15de8" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "13812c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d1475d991" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4935596526159830446" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "676e5e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11466120553095447687" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e05aa20e075e059d1bdeab9e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7589389489663214851" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e646035f2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc477586c998" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11992246936428534933" + } + } + } + ] + }, + "cborHex": "bf450c18f15de8a04313812cbf457d1475d9911b447ec2e400689daeff43676e5ed8669f1b9f1fd7e4970f44879f4ce05aa20e075e059d1bdeab9e1b6952ed87d1758503419affff45e646035f2d46cc477586c99841ff1ba66d050d1096dc95ff", + "cborBytes": [ + 191, 69, 12, 24, 241, 93, 232, 160, 67, 19, 129, 44, 191, 69, 125, 20, 117, 217, 145, 27, 68, 126, 194, 228, 0, + 104, 157, 174, 255, 67, 103, 110, 94, 216, 102, 159, 27, 159, 31, 215, 228, 151, 15, 68, 135, 159, 76, 224, 90, + 162, 14, 7, 94, 5, 157, 27, 222, 171, 158, 27, 105, 82, 237, 135, 209, 117, 133, 3, 65, 154, 255, 255, 69, 230, + 70, 3, 95, 45, 70, 204, 71, 117, 134, 201, 152, 65, 255, 27, 166, 109, 5, 13, 16, 150, 220, 149, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 141, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05ff07" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b06f24bf6cbd605ada" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05038467" + } + } + ] + }, + "cborHex": "bf4305ff078049b06f24bf6cbd605ada4405038467ff", + "cborBytes": [191, 67, 5, 255, 7, 128, 73, 176, 111, 36, 191, 108, 189, 96, 90, 218, 68, 5, 3, 132, 103, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 142, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f66dd8f02d02a1497f6ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40c1232bb7966e4d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7db155a5f5fb244861" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1134925156976155748" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18165279213701315238" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6322054022687980881" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16705823386076350374" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8648484488791300015" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d14302896494b5bddc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d57f2ff10d78" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "806dfe0fd36223f19b3bc5f5" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9dd2d2d03fc38bfea2b261" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6021404977569769815" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e4585f4354b861d47" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6186648252797958425" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4c6e994c6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9422971359276121338" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5921919796441855423" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10386798121472267601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82db4daae42855872f2a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12717017157728307228" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7596705933869112252" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d743dd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13150785287646743946" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4dfb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4257948433928581525" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5021577958715469954" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3064933978705612925" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10034858675442027057" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f17eec6283091bffc9b4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2306325766835227193" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7da204bbce999dc3a326" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1307286369666201292" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a1cd84e26f747a3e" + }, + { + "_tag": "ByteArray", + "bytearray": "dac7aa2997df79" + } + ] + } + } + ] + }, + "cborHex": "bf4b3f66dd8f02d02a1497f6ab4840c1232bb7966e4d497db155a5f5fb244861bf1b0fc0106acc37dc641bfc1809337a743aa61b57bc72a351257d511be7d701dbbf7e87a61b780596d227e197af49d14302896494b5bddc413146d57f2ff10d78ff4c806dfe0fd36223f19b3bc5f5804b9dd2d2d03fc38bfea2b261bf1b539053eca0d0a957498e4585f4354b861d471b55db63cec250391945e4c6e994c61b82c51e86b6553cfa1b522ee2addf4535bf1b902551dc200c95514a82db4daae42855872f2a1bb07bebba30f1881c1b696cebcc3b5edbbcff43d743ddd8669f1bb680f98b139e0d8a9f424dfb1b3b17458a843e71951b45b03a8c492ab0821b2a88d53704c5d07d1b8b42facc60f80a31ffff4af17eec6283091bffc9b4d8669f1b2001b710c48b4a399f4a7da204bbce999dc3a3261b12246a06e3a9f6cc48a1cd84e26f747a3e47dac7aa2997df79ffffff", + "cborBytes": [ + 191, 75, 63, 102, 221, 143, 2, 208, 42, 20, 151, 246, 171, 72, 64, 193, 35, 43, 183, 150, 110, 77, 73, 125, 177, + 85, 165, 245, 251, 36, 72, 97, 191, 27, 15, 192, 16, 106, 204, 55, 220, 100, 27, 252, 24, 9, 51, 122, 116, 58, + 166, 27, 87, 188, 114, 163, 81, 37, 125, 81, 27, 231, 215, 1, 219, 191, 126, 135, 166, 27, 120, 5, 150, 210, 39, + 225, 151, 175, 73, 209, 67, 2, 137, 100, 148, 181, 189, 220, 65, 49, 70, 213, 127, 47, 241, 13, 120, 255, 76, 128, + 109, 254, 15, 211, 98, 35, 241, 155, 59, 197, 245, 128, 75, 157, 210, 210, 208, 63, 195, 139, 254, 162, 178, 97, + 191, 27, 83, 144, 83, 236, 160, 208, 169, 87, 73, 142, 69, 133, 244, 53, 75, 134, 29, 71, 27, 85, 219, 99, 206, + 194, 80, 57, 25, 69, 228, 198, 233, 148, 198, 27, 130, 197, 30, 134, 182, 85, 60, 250, 27, 82, 46, 226, 173, 223, + 69, 53, 191, 27, 144, 37, 81, 220, 32, 12, 149, 81, 74, 130, 219, 77, 170, 228, 40, 85, 135, 47, 42, 27, 176, 123, + 235, 186, 48, 241, 136, 28, 27, 105, 108, 235, 204, 59, 94, 219, 188, 255, 67, 215, 67, 221, 216, 102, 159, 27, + 182, 128, 249, 139, 19, 158, 13, 138, 159, 66, 77, 251, 27, 59, 23, 69, 138, 132, 62, 113, 149, 27, 69, 176, 58, + 140, 73, 42, 176, 130, 27, 42, 136, 213, 55, 4, 197, 208, 125, 27, 139, 66, 250, 204, 96, 248, 10, 49, 255, 255, + 74, 241, 126, 236, 98, 131, 9, 27, 255, 201, 180, 216, 102, 159, 27, 32, 1, 183, 16, 196, 139, 74, 57, 159, 74, + 125, 162, 4, 187, 206, 153, 157, 195, 163, 38, 27, 18, 36, 106, 6, 227, 169, 246, 204, 72, 161, 205, 132, 226, + 111, 116, 122, 62, 71, 218, 199, 170, 41, 151, 223, 121, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 143, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3706978861511791836" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c104a874369e267aa67f8653" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14882325713783625247" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf3e6c8a08e36e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18227557104511800248" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10512090257765151523" + } + }, + { + "_tag": "ByteArray", + "bytearray": "129962" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9c6f7c0b3fe6d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "187052992664130256" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14970293782875379950" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3371d5a2564ad4dcbf4cc104a874369e267aa67f86531bce88a46301bc161fff47bf3e6c8a08e36ed8669f1bfcf54a9ce192d3b89f1b91e27264dcefb32343129962ffff47d9c6f7c0b3fe6d9f41861b02988bb4adeb52d01bcfc12ae1278698eeffff", + "cborBytes": [ + 191, 27, 51, 113, 213, 162, 86, 74, 212, 220, 191, 76, 193, 4, 168, 116, 54, 158, 38, 122, 166, 127, 134, 83, 27, + 206, 136, 164, 99, 1, 188, 22, 31, 255, 71, 191, 62, 108, 138, 8, 227, 110, 216, 102, 159, 27, 252, 245, 74, 156, + 225, 146, 211, 184, 159, 27, 145, 226, 114, 100, 220, 239, 179, 35, 67, 18, 153, 98, 255, 255, 71, 217, 198, 247, + 192, 179, 254, 109, 159, 65, 134, 27, 2, 152, 139, 180, 173, 235, 82, 208, 27, 207, 193, 42, 225, 39, 134, 152, + 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 144, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2176344756212714768" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "822460602213375750" + } + } + } + ] + }, + "cborHex": "bf1b1e33ee0666d7cd101b0b69f78f64ae9f06ff", + "cborBytes": [191, 27, 30, 51, 238, 6, 102, 215, 205, 16, 27, 11, 105, 247, 143, 100, 174, 159, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 145, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e04ae4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9349841036230662892" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5b9fa7ebbfe65869f63d5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17963890447659195769" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a6c54aedd37e1856b123cd2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "301e36bd2ab4cb038d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3544851213403512194" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "635cedf8bb37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16735925900127410497" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9fd7ce3f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb0202a705fdcd640600f80b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2002762413538255866" + } + } + } + ] + }, + "cborHex": "bf43e04ae4bf1b81c14ee286e61aec4bd5b9fa7ebbfe65869f63d51bf94c8f2f74c25d794c9a6c54aedd37e1856b123cd249301e36bd2ab4cb038d1b3131d765ac875d8246635cedf8bb371be841f3ef785a9941ff45f9fd7ce3f9134cfb0202a705fdcd640600f80b1b1bcb3dcdd473a3faff", + "cborBytes": [ + 191, 67, 224, 74, 228, 191, 27, 129, 193, 78, 226, 134, 230, 26, 236, 75, 213, 185, 250, 126, 187, 254, 101, 134, + 159, 99, 213, 27, 249, 76, 143, 47, 116, 194, 93, 121, 76, 154, 108, 84, 174, 221, 55, 225, 133, 107, 18, 60, 210, + 73, 48, 30, 54, 189, 42, 180, 203, 3, 141, 27, 49, 49, 215, 101, 172, 135, 93, 130, 70, 99, 92, 237, 248, 187, 55, + 27, 232, 65, 243, 239, 120, 90, 153, 65, 255, 69, 249, 253, 124, 227, 249, 19, 76, 251, 2, 2, 167, 5, 253, 205, + 100, 6, 0, 248, 11, 27, 27, 203, 61, 205, 212, 115, 163, 250, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 146, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "248176545912695513" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7354364160831106678" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7694686281777804502" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11596199722940864778" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14713158779512304893" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0be90fd3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3d323ed93e6107c4ce" + }, + { + "_tag": "ByteArray", + "bytearray": "22fd7f0a24086a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8323794222250089855" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0371b340ecb5aad91b660ff33d3b33ae761b6ac90467b36ff4d6a01ba0edfa356e5f990a1bcc2fa3f4d0c034fd440be90fd39f493d323ed93e6107c4ce4722fd7f0a24086a1b73840ebe68aa5d7fffff", + "cborBytes": [ + 191, 27, 3, 113, 179, 64, 236, 181, 170, 217, 27, 102, 15, 243, 61, 59, 51, 174, 118, 27, 106, 201, 4, 103, 179, + 111, 244, 214, 160, 27, 160, 237, 250, 53, 110, 95, 153, 10, 27, 204, 47, 163, 244, 208, 192, 52, 253, 68, 11, + 233, 15, 211, 159, 73, 61, 50, 62, 217, 62, 97, 7, 196, 206, 71, 34, 253, 127, 10, 36, 8, 106, 27, 115, 132, 14, + 190, 104, 170, 93, 127, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 147, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0061f94601" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13117218060772535323" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12179692288466299041" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2fc09333e7c8762a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3368ce11f8442" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3dd1e5f9c8686a1f6c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf450061f94601bf051bb609b85409af6c1b1ba906f59b079928a11bfffffffffffffffd1bfffffffffffffff549b2fc09333e7c8762a41bfffffffffffffffa47a3368ce11f8442ff493dd1e5f9c8686a1f6cd8669f1bfffffffffffffff980ffff", + "cborBytes": [ + 191, 69, 0, 97, 249, 70, 1, 191, 5, 27, 182, 9, 184, 84, 9, 175, 108, 27, 27, 169, 6, 245, 155, 7, 153, 40, 161, + 27, 255, 255, 255, 255, 255, 255, 255, 253, 27, 255, 255, 255, 255, 255, 255, 255, 245, 73, 178, 252, 9, 51, 62, + 124, 135, 98, 164, 27, 255, 255, 255, 255, 255, 255, 255, 250, 71, 163, 54, 140, 225, 31, 132, 66, 255, 73, 61, + 209, 229, 249, 200, 104, 106, 31, 108, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 148, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "87aacfc8ad67ae5e7f6bf19d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9060331599560269817" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6258ccf5f9d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4349597415852157716" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fba5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1693104296694683773" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d7f08" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0707fd9befebdd51" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13517763434718398330" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4c87aacfc8ad67ae5e7f6bf19dd8669f1b7dbcc3960b095ff99f466258ccf5f9d31b3c5cdfcdf7d32b14ffff42fba5bf1b177f1d632c2c987d433d7f08480707fd9befebdd511bbb98be394427877affff", + "cborBytes": [ + 191, 76, 135, 170, 207, 200, 173, 103, 174, 94, 127, 107, 241, 157, 216, 102, 159, 27, 125, 188, 195, 150, 11, 9, + 95, 249, 159, 70, 98, 88, 204, 245, 249, 211, 27, 60, 92, 223, 205, 247, 211, 43, 20, 255, 255, 66, 251, 165, 191, + 27, 23, 127, 29, 99, 44, 44, 152, 125, 67, 61, 127, 8, 72, 7, 7, 253, 155, 239, 235, 221, 81, 27, 187, 152, 190, + 57, 68, 39, 135, 122, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 149, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f97e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1042f97e1bfffffffffffffffe80ff", + "cborBytes": [191, 16, 66, 249, 126, 27, 255, 255, 255, 255, 255, 255, 255, 254, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 150, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3517101597140896920" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d02b890c5abc558c68" + }, + { + "_tag": "ByteArray", + "bytearray": "03164ac4f3" + }, + { + "_tag": "ByteArray", + "bytearray": "488c106fc49faa57" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7185775492075724935" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13058716121433076833" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ab9719982509f9d746" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10472935814709539214" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "364493348448655809" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10977872492827462563" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11350159474739794692" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1554533398762739981" + } + } + } + ] + }, + "cborHex": "bf1b30cf4144a88acc989f49d02b890c5abc558c684503164ac4f348488c106fc49faa57ff1b63b900bcf8e1a087d8669f1bb539e11fd8af74619f49ab9719982509f9d746ffff1b915757a2af3a718ed8669f1b050ef0c4ed4659c19f1b98593cde74834ba3ffff1b9d83dde813e653041b1592cfe3d0bbd90dff", + "cborBytes": [ + 191, 27, 48, 207, 65, 68, 168, 138, 204, 152, 159, 73, 208, 43, 137, 12, 90, 188, 85, 140, 104, 69, 3, 22, 74, + 196, 243, 72, 72, 140, 16, 111, 196, 159, 170, 87, 255, 27, 99, 185, 0, 188, 248, 225, 160, 135, 216, 102, 159, + 27, 181, 57, 225, 31, 216, 175, 116, 97, 159, 73, 171, 151, 25, 152, 37, 9, 249, 215, 70, 255, 255, 27, 145, 87, + 87, 162, 175, 58, 113, 142, 216, 102, 159, 27, 5, 14, 240, 196, 237, 70, 89, 193, 159, 27, 152, 89, 60, 222, 116, + 131, 75, 163, 255, 255, 27, 157, 131, 221, 232, 19, 230, 83, 4, 27, 21, 146, 207, 227, 208, 187, 217, 13, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 151, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "569721738153333360" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9340834816212482084" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2825920038207387387" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e06c535d195317327" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3702191716656639263" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "296505451836120468" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4980242058082743988" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11631352039616926793" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14747282083106267623" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b07e80ee6ff7292701b81a14fc685f238241b2737af4d690276fb497e06c535d1953173271b3360d3c051b66d1f1b041d662332a89d941b451d5fc3ef7b76b41ba16add0df2e1d4491bcca8deeb8e0821e780ff", + "cborBytes": [ + 191, 27, 7, 232, 14, 230, 255, 114, 146, 112, 27, 129, 161, 79, 198, 133, 242, 56, 36, 27, 39, 55, 175, 77, 105, + 2, 118, 251, 73, 126, 6, 197, 53, 209, 149, 49, 115, 39, 27, 51, 96, 211, 192, 81, 182, 109, 31, 27, 4, 29, 102, + 35, 50, 168, 157, 148, 27, 69, 29, 95, 195, 239, 123, 118, 180, 27, 161, 106, 221, 13, 242, 225, 212, 73, 27, 204, + 168, 222, 235, 142, 8, 33, 231, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 152, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7028264012351052825" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3460442180213755765" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3376539183607040906" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13645169250565785775" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8075460800358939567" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3259295227768477896" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c48" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4978615723728332860" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0701" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7238518014086615180" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6fa0e01" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7621848617554880681" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d885973b30141034f743" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13473861521688895242" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + } + ] + } + } + ] + }, + "cborHex": "bf05d8669f1b618968e1c3d89c199f41f81b3005f5d4256b4f75ffff09d8669f1b2edbe07f7115cb8a9f0341e3ffff0d41741bbd5d6123600e88afd90508801bfffffffffffffff21b7011cccff2fc7baf1bfffffffffffffffcbf0e1bfffffffffffffff41b2d3b57bdbd4418c8429c481b4517989f7600683c4207011b647461c851e6108c44a6fa0e011b69c63eef752928a94ad885973b30141034f7431bbafcc5aa99121f0a4103ffff", + "cborBytes": [ + 191, 5, 216, 102, 159, 27, 97, 137, 104, 225, 195, 216, 156, 25, 159, 65, 248, 27, 48, 5, 245, 212, 37, 107, 79, + 117, 255, 255, 9, 216, 102, 159, 27, 46, 219, 224, 127, 113, 21, 203, 138, 159, 3, 65, 227, 255, 255, 13, 65, 116, + 27, 189, 93, 97, 35, 96, 14, 136, 175, 217, 5, 8, 128, 27, 255, 255, 255, 255, 255, 255, 255, 242, 27, 112, 17, + 204, 207, 242, 252, 123, 175, 27, 255, 255, 255, 255, 255, 255, 255, 252, 191, 14, 27, 255, 255, 255, 255, 255, + 255, 255, 244, 27, 45, 59, 87, 189, 189, 68, 24, 200, 66, 156, 72, 27, 69, 23, 152, 159, 118, 0, 104, 60, 66, 7, + 1, 27, 100, 116, 97, 200, 81, 230, 16, 140, 68, 166, 250, 14, 1, 27, 105, 198, 62, 239, 117, 41, 40, 169, 74, 216, + 133, 151, 59, 48, 20, 16, 52, 247, 67, 27, 186, 252, 197, 170, 153, 18, 31, 10, 65, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 153, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16774935374774877409" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "03c2" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14651242308541576330" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad2e9f14d0e21c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "50d6a91fe59192a8e5" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d40966a00b3fd57a8ac4b981" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + } + } + ] + }, + "cborHex": "bf1be8cc8ad88f973ce10b4203c29f1bcb53ab4106cb748aff47ad2e9f14d0e21c9f4950d6a91fe59192a8e5ff4cd40966a00b3fd57a8ac4b9819f0affff", + "cborBytes": [ + 191, 27, 232, 204, 138, 216, 143, 151, 60, 225, 11, 66, 3, 194, 159, 27, 203, 83, 171, 65, 6, 203, 116, 138, 255, + 71, 173, 46, 159, 20, 208, 226, 28, 159, 73, 80, 214, 169, 31, 229, 145, 146, 168, 229, 255, 76, 212, 9, 102, 160, + 11, 63, 213, 122, 138, 196, 185, 129, 159, 10, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 154, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7712289040374352444" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f787101c0fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5585501757575741892" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68af56d53d" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5c34145" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e0edf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffbd3c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6622692592259585579" + } + } + ] + } + } + ] + }, + "cborHex": "bf41141b6b078e0550a6ca3c464f787101c0fe1b4d83b041589f41c44568af56d53da044c5c34145437e0edf43ffbd3c9f1b5be887d2fa3e562bffff", + "cborBytes": [ + 191, 65, 20, 27, 107, 7, 142, 5, 80, 166, 202, 60, 70, 79, 120, 113, 1, 192, 254, 27, 77, 131, 176, 65, 88, 159, + 65, 196, 69, 104, 175, 86, 213, 61, 160, 68, 197, 195, 65, 69, 67, 126, 14, 223, 67, 255, 189, 60, 159, 27, 91, + 232, 135, 210, 250, 62, 86, 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 155, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "481490935153767377" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "de137e331d5c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14838915518844979511" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8837704896095078620" + } + }, + { + "_tag": "ByteArray", + "bytearray": "622925268da60316" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6272593462410727148" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1149465671148403144" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6bd032b6d999fbab" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10541536405638201826" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12688549104628073432" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11139644532052463913" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5610678337975521456" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5107503426910528548" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11625764700344689913" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4110829508530308039" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16225335494697751042" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a60fe09f5399ce56" + } + } + ] + }, + "cborHex": "bf1b06ae9974586933d19f46de137e331d5c1bcdee6b0b60c949371b7aa5d5c7617a48dc48622925268da60316ff1b570cba853b6dceecd8669f1b0ff3b8f0124e79c89f486bd032b6d999fbabffff1b924b0f826ce9c1e21bb016c82f107503d81b9a97f7ae791c1129d8669f1b4ddd2238c40290b09f1b46e17f4e5a17a424ffff1ba1570366265224f91b390c99a86c2483c71be12bf8aabaff120248a60fe09f5399ce56ff", + "cborBytes": [ + 191, 27, 6, 174, 153, 116, 88, 105, 51, 209, 159, 70, 222, 19, 126, 51, 29, 92, 27, 205, 238, 107, 11, 96, 201, + 73, 55, 27, 122, 165, 213, 199, 97, 122, 72, 220, 72, 98, 41, 37, 38, 141, 166, 3, 22, 255, 27, 87, 12, 186, 133, + 59, 109, 206, 236, 216, 102, 159, 27, 15, 243, 184, 240, 18, 78, 121, 200, 159, 72, 107, 208, 50, 182, 217, 153, + 251, 171, 255, 255, 27, 146, 75, 15, 130, 108, 233, 193, 226, 27, 176, 22, 200, 47, 16, 117, 3, 216, 27, 154, 151, + 247, 174, 121, 28, 17, 41, 216, 102, 159, 27, 77, 221, 34, 56, 196, 2, 144, 176, 159, 27, 70, 225, 127, 78, 90, + 23, 164, 36, 255, 255, 27, 161, 87, 3, 102, 38, 82, 36, 249, 27, 57, 12, 153, 168, 108, 36, 131, 199, 27, 225, 43, + 248, 170, 186, 255, 18, 2, 72, 166, 15, 224, 159, 83, 153, 206, 86, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 156, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1176eb05" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e05f72e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89c14f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2883560210458152610" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1409e781c56e" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cde421d3f08080dcec070f7a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17258533694381124730" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d026a772cd64e7a4f712" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf441176eb05bf446e05f72e412d4389c14f1b280476bbd0cf0ea2ff461409e781c56e804ccde421d3f08080dcec070f7a1bef82a0f495b26c7a4ad026a772cd64e7a4f712a0ff", + "cborBytes": [ + 191, 68, 17, 118, 235, 5, 191, 68, 110, 5, 247, 46, 65, 45, 67, 137, 193, 79, 27, 40, 4, 118, 187, 208, 207, 14, + 162, 255, 70, 20, 9, 231, 129, 197, 110, 128, 76, 205, 228, 33, 211, 240, 128, 128, 220, 236, 7, 15, 122, 27, 239, + 130, 160, 244, 149, 178, 108, 122, 74, 208, 38, 167, 114, 205, 100, 231, 164, 247, 18, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 157, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1028560047491110922" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13698933126940055462" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5176c9c223d9ab3493fd" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3037769236771191472" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5739663234895000399" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d5e66c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12089539354373896625" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9931687611707953755" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a3842c8bf64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18074119629380672179" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a38d234b7271e7a418" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64632da19377671c09eb9ca0" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10371787172732360227" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "73f8e34693" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2273154286574340969" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebf15e74c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "919ff9906f181dc07d" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16006715604807243854" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a8a265ff4000992073eb467" + } + } + ] + }, + "cborHex": "bf1b0e462de9e4ddd80abf1bbe1c63195117d7a64a5176c9c223d9ab3493fdff1b2a285306ab5b3ab0d8669f1b4fa7614d5649334f9f43d5e66c1ba7c6abfd5b8fb9b1ffff1b89d471433400125bbf463a3842c8bf641bfad42c0ac9265ab349a38d234b7271e7a4184c64632da19377671c09eb9ca0ff1b8feffd7b44aa5623bf4573f8e346931b1f8bddc7aaeb8b6945ebf15e74c949919ff9906f181dc07dff1bde2347090d3cd84e4c1a8a265ff4000992073eb467ff", + "cborBytes": [ + 191, 27, 14, 70, 45, 233, 228, 221, 216, 10, 191, 27, 190, 28, 99, 25, 81, 23, 215, 166, 74, 81, 118, 201, 194, + 35, 217, 171, 52, 147, 253, 255, 27, 42, 40, 83, 6, 171, 91, 58, 176, 216, 102, 159, 27, 79, 167, 97, 77, 86, 73, + 51, 79, 159, 67, 213, 230, 108, 27, 167, 198, 171, 253, 91, 143, 185, 177, 255, 255, 27, 137, 212, 113, 67, 52, 0, + 18, 91, 191, 70, 58, 56, 66, 200, 191, 100, 27, 250, 212, 44, 10, 201, 38, 90, 179, 73, 163, 141, 35, 75, 114, + 113, 231, 164, 24, 76, 100, 99, 45, 161, 147, 119, 103, 28, 9, 235, 156, 160, 255, 27, 143, 239, 253, 123, 68, + 170, 86, 35, 191, 69, 115, 248, 227, 70, 147, 27, 31, 139, 221, 199, 170, 235, 139, 105, 69, 235, 241, 94, 116, + 201, 73, 145, 159, 249, 144, 111, 24, 29, 192, 125, 255, 27, 222, 35, 71, 9, 13, 60, 216, 78, 76, 26, 138, 38, 95, + 244, 0, 9, 146, 7, 62, 180, 103, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 158, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7023915198832289338" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9438141548319380109" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12122780537366516456" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12527719747053693883" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "454cce9341578f4a87edaf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bd9bdc0354e156a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "552a43f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f4115a046" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edff380ad9c10679057d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7649107125981280852" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87f35119bcda6809259e5163" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2355847781065608622" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3ef" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12842473700548198487" + } + }, + { + "_tag": "ByteArray", + "bytearray": "47d5941d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14046717640291098821" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11214285389714701412" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1c1968e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11935442026533651134" + } + }, + { + "_tag": "ByteArray", + "bytearray": "46f9cdc67b478e5b37aa" + }, + { + "_tag": "ByteArray", + "bytearray": "bedf8ab22eea40cc681f2c47" + } + ] + } + } + ] + }, + "cborHex": "bf1b6179f5a8b6dda63abf1b82fb03bb976e928d1ba83cc4ab63c012e8ff1baddb66bc38c82bbbbf4b454cce9341578f4a87edaf488bd9bdc0354e156a44552a43f2455f4115a0464aedff380ad9c10679057d1b6a2716678505fa54ff4c87f35119bcda6809259e51639f1b20b1a713374ecdae42f3ef1bb239a1c9ce78c0574447d5941d1bc2eff74569c3a0c5ff41b3d8669f1b9ba1252567cc3c649f441c1968e31ba5a3354954ce82be4a46f9cdc67b478e5b37aa4cbedf8ab22eea40cc681f2c47ffffff", + "cborBytes": [ + 191, 27, 97, 121, 245, 168, 182, 221, 166, 58, 191, 27, 130, 251, 3, 187, 151, 110, 146, 141, 27, 168, 60, 196, + 171, 99, 192, 18, 232, 255, 27, 173, 219, 102, 188, 56, 200, 43, 187, 191, 75, 69, 76, 206, 147, 65, 87, 143, 74, + 135, 237, 175, 72, 139, 217, 189, 192, 53, 78, 21, 106, 68, 85, 42, 67, 242, 69, 95, 65, 21, 160, 70, 74, 237, + 255, 56, 10, 217, 193, 6, 121, 5, 125, 27, 106, 39, 22, 103, 133, 5, 250, 84, 255, 76, 135, 243, 81, 25, 188, 218, + 104, 9, 37, 158, 81, 99, 159, 27, 32, 177, 167, 19, 55, 78, 205, 174, 66, 243, 239, 27, 178, 57, 161, 201, 206, + 120, 192, 87, 68, 71, 213, 148, 29, 27, 194, 239, 247, 69, 105, 195, 160, 197, 255, 65, 179, 216, 102, 159, 27, + 155, 161, 37, 37, 103, 204, 60, 100, 159, 68, 28, 25, 104, 227, 27, 165, 163, 53, 73, 84, 206, 130, 190, 74, 70, + 249, 205, 198, 123, 71, 142, 91, 55, 170, 76, 190, 223, 138, 178, 46, 234, 64, 204, 104, 31, 44, 71, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 159, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15777873698751871811" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3c7f" + } + ] + } + } + ] + }, + "cborHex": "bf0fd8669f1bdaf64488c5157b439f423c7fffffff", + "cborBytes": [191, 15, 216, 102, 159, 27, 218, 246, 68, 136, 197, 21, 123, 67, 159, 66, 60, 127, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 160, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8225278692319563248" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4196457386029492322" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12031484588968340605" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e456600926eb59f07190c12" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "996653208379667881" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17646313861537056554" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13786034421845231819" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10207090777591142934" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6482936223197525996" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2436" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5232322866515219805" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b72260f642a4c0df0d8669f1b3a3ccfc2415a28629f1ba6f86b7cf60b6c7d4c9e456600926eb59f07190c121b0dd4d2d001b935a91bf4e44cf67ff7c72a1bbf51d543df6488cbffff1b8da6defb947c5a16bf1b59f804259d3377ec004224361b489cf1ecd0cb155dffff", + "cborBytes": [ + 191, 27, 114, 38, 15, 100, 42, 76, 13, 240, 216, 102, 159, 27, 58, 60, 207, 194, 65, 90, 40, 98, 159, 27, 166, + 248, 107, 124, 246, 11, 108, 125, 76, 158, 69, 102, 0, 146, 110, 181, 159, 7, 25, 12, 18, 27, 13, 212, 210, 208, + 1, 185, 53, 169, 27, 244, 228, 76, 246, 127, 247, 199, 42, 27, 191, 81, 213, 67, 223, 100, 136, 203, 255, 255, 27, + 141, 166, 222, 251, 148, 124, 90, 22, 191, 27, 89, 248, 4, 37, 157, 51, 119, 236, 0, 66, 36, 54, 27, 72, 156, 241, + 236, 208, 203, 21, 93, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 161, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18327533067498722734" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15555816369627176785" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "905413673343858994" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9005020296532434287" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9768444292728816857" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8577997778734735405" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41fe0201f4040202d3f90400" + } + } + ] + } + } + ] + }, + "cborHex": "bf011bfe587a38b17c95ae039f1bd7e15c91e6d59f51ff12a01b0c90acf056713932d8669f1b7cf8423fc1ff9d6f80ff1b87907c542c4b04d9bf1b770b2b881592e02d1bfffffffffffffffc1bfffffffffffffff44c41fe0201f4040202d3f90400ffff", + "cborBytes": [ + 191, 1, 27, 254, 88, 122, 56, 177, 124, 149, 174, 3, 159, 27, 215, 225, 92, 145, 230, 213, 159, 81, 255, 18, 160, + 27, 12, 144, 172, 240, 86, 113, 57, 50, 216, 102, 159, 27, 124, 248, 66, 63, 193, 255, 157, 111, 128, 255, 27, + 135, 144, 124, 84, 44, 75, 4, 217, 191, 27, 119, 11, 43, 136, 21, 146, 224, 45, 27, 255, 255, 255, 255, 255, 255, + 255, 252, 27, 255, 255, 255, 255, 255, 255, 255, 244, 76, 65, 254, 2, 1, 244, 4, 2, 2, 211, 249, 4, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 162, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "964972695511969865" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "324930352513617325" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13623101503300098402" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8312055181485612279" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17241637450199462673" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8743570030867145704" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5541939038525398362" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e671d963b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4174671400080105077" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13380641997804259042" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10525948282622162884" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15862849267559799084" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16445373396112042893" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7971977633763401867" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18420410309534310400" + } + }, + { + "_tag": "ByteArray", + "bytearray": "edbcae5d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5921067276067690897" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16505980555360993566" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5208304597443574112" + } + } + } + ] + }, + "cborHex": "bf1b0d64458dcdf130499f1b0482626f1e510dad1bbd0efaa3934ad9621b735a5a25fde51cf71bef4699e92d35f3111b7957669e1e9663e8ff1b4ce8ec316e2d1d5abf45e671d963b31b39ef69851fc1de75ff1bb9b19700d9cbc6e21b9213ae31b5d3b7c41bdc24295d2677992cd8669f1be439b3f8f1eaeb8d9f1b6ea2276ba9d3a08b1bffa27194bcbc600044edbcae5d1b522bdb5101345991ffff1be51105dcd7cc011e1b48479d6fc4a87960ff", + "cborBytes": [ + 191, 27, 13, 100, 69, 141, 205, 241, 48, 73, 159, 27, 4, 130, 98, 111, 30, 81, 13, 173, 27, 189, 14, 250, 163, + 147, 74, 217, 98, 27, 115, 90, 90, 37, 253, 229, 28, 247, 27, 239, 70, 153, 233, 45, 53, 243, 17, 27, 121, 87, + 102, 158, 30, 150, 99, 232, 255, 27, 76, 232, 236, 49, 110, 45, 29, 90, 191, 69, 230, 113, 217, 99, 179, 27, 57, + 239, 105, 133, 31, 193, 222, 117, 255, 27, 185, 177, 151, 0, 217, 203, 198, 226, 27, 146, 19, 174, 49, 181, 211, + 183, 196, 27, 220, 36, 41, 93, 38, 119, 153, 44, 216, 102, 159, 27, 228, 57, 179, 248, 241, 234, 235, 141, 159, + 27, 110, 162, 39, 107, 169, 211, 160, 139, 27, 255, 162, 113, 148, 188, 188, 96, 0, 68, 237, 188, 174, 93, 27, 82, + 43, 219, 81, 1, 52, 89, 145, 255, 255, 27, 229, 17, 5, 220, 215, 204, 1, 30, 27, 72, 71, 157, 111, 196, 168, 121, + 96, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 163, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06f3ee738284ccf0c60a7d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18235930794748616945" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c6e291" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12744570588164094118" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "827463f9554e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7874b786a555ed85" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc04e6682fe6e113c505d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0fd064f72" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d014f61fbcfd2675988b7148" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b191faa12282271dfad804e5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6044897792293322166" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10555555590590645627" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1098456385979715054" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10637345062223705179" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14124901215663650459" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ae9320" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee185315881b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf4f5b1a9c2e" + } + } + ] + }, + "cborHex": "bf4b06f3ee738284ccf0c60a7d9f1bfd130a70919920f143c6e2911bb0ddcf6d226978a6ff46827463f9554ebf487874b786a555ed854bbc04e6682fe6e113c505d345a0fd064f724cd014f61fbcfd2675988b7148ff4cb191faa12282271dfad804e5d8669f1b53e3ca83cd2fbdb69f1b927cdde2480b457b1b0f3e80435f948dee1b939f70f99b19745b1bc405bad1971d769b43ae9320ffff46ee185315881b46bf4f5b1a9c2eff", + "cborBytes": [ + 191, 75, 6, 243, 238, 115, 130, 132, 204, 240, 198, 10, 125, 159, 27, 253, 19, 10, 112, 145, 153, 32, 241, 67, + 198, 226, 145, 27, 176, 221, 207, 109, 34, 105, 120, 166, 255, 70, 130, 116, 99, 249, 85, 78, 191, 72, 120, 116, + 183, 134, 165, 85, 237, 133, 75, 188, 4, 230, 104, 47, 230, 225, 19, 197, 5, 211, 69, 160, 253, 6, 79, 114, 76, + 208, 20, 246, 31, 188, 253, 38, 117, 152, 139, 113, 72, 255, 76, 177, 145, 250, 161, 34, 130, 39, 29, 250, 216, 4, + 229, 216, 102, 159, 27, 83, 227, 202, 131, 205, 47, 189, 182, 159, 27, 146, 124, 221, 226, 72, 11, 69, 123, 27, + 15, 62, 128, 67, 95, 148, 141, 238, 27, 147, 159, 112, 249, 155, 25, 116, 91, 27, 196, 5, 186, 209, 151, 29, 118, + 155, 67, 174, 147, 32, 255, 255, 70, 238, 24, 83, 21, 136, 27, 70, 191, 79, 91, 26, 156, 46, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 164, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2502161448672706829" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bd0917fff65a481fc950c2d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7622169623107350365" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b60fde" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10700238534742727428" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a718977c97961b5ed" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b22b976949ed0410d804c3bd0917fff65a481fc950c2dbf1b69c762e363162f5d43b60fde1b947ee2414b495b04498a718977c97961b5edffff", + "cborBytes": [ + 191, 27, 34, 185, 118, 148, 158, 208, 65, 13, 128, 76, 59, 208, 145, 127, 255, 101, 164, 129, 252, 149, 12, 45, + 191, 27, 105, 199, 98, 227, 99, 22, 47, 93, 67, 182, 15, 222, 27, 148, 126, 226, 65, 75, 73, 91, 4, 73, 138, 113, + 137, 119, 201, 121, 97, 181, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 165, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb8c95d6" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfa0086f41" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "37572836829581565" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12041464513979641951" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3869534491256291756" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9390883847957392385" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9527808881773629416" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fe037037" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c169ba" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3de284835b3ce86050763ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10489647212109680775" + } + } + } + ] + }, + "cborHex": "bf44bb8c95d6a045bfa0086f41d8669f1b00857c4bc86e50fd9f1ba71be02d533a705f1b35b3591e3d7401ac1b82531f1acc742c011b843993b28dedcfe844fe037037ffff43c169baa04cf3de284835b3ce86050763ee1b9192b69018f6d087ff", + "cborBytes": [ + 191, 68, 187, 140, 149, 214, 160, 69, 191, 160, 8, 111, 65, 216, 102, 159, 27, 0, 133, 124, 75, 200, 110, 80, 253, + 159, 27, 167, 27, 224, 45, 83, 58, 112, 95, 27, 53, 179, 89, 30, 61, 116, 1, 172, 27, 130, 83, 31, 26, 204, 116, + 44, 1, 27, 132, 57, 147, 178, 141, 237, 207, 232, 68, 254, 3, 112, 55, 255, 255, 67, 193, 105, 186, 160, 76, 243, + 222, 40, 72, 53, 179, 206, 134, 5, 7, 99, 238, 27, 145, 146, 182, 144, 24, 246, 208, 135, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 166, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "907303223660883979" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5351250611249124052" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4386086946653840941" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01dfc06ee4bd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4409192674751315822" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17443802134663749403" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5939092594064350245" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12568145881583671376" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8585930930394794564" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "492f765554b12035a4d42de4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17946038467631327453" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18111592031865289474" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2122474362155550621" + } + } + } + ] + }, + "cborHex": "bf1b0c9763798ddfb00b1b4a4376142b9892d41b3cde82d6e947a62d4601dfc06ee4bd1b3d30996074ce7f6e1bf214d59ec8d55f1b1b526be53f655bdc251bae6b0617251558501b77275ab0e4388a449f4c492f765554b12035a4d42de41bf90d22e774a928ddff1bfb594cfe60203b021b1d748b2fe127c79dff", + "cborBytes": [ + 191, 27, 12, 151, 99, 121, 141, 223, 176, 11, 27, 74, 67, 118, 20, 43, 152, 146, 212, 27, 60, 222, 130, 214, 233, + 71, 166, 45, 70, 1, 223, 192, 110, 228, 189, 27, 61, 48, 153, 96, 116, 206, 127, 110, 27, 242, 20, 213, 158, 200, + 213, 95, 27, 27, 82, 107, 229, 63, 101, 91, 220, 37, 27, 174, 107, 6, 23, 37, 21, 88, 80, 27, 119, 39, 90, 176, + 228, 56, 138, 68, 159, 76, 73, 47, 118, 85, 84, 177, 32, 53, 164, 212, 45, 228, 27, 249, 13, 34, 231, 116, 169, + 40, 221, 255, 27, 251, 89, 76, 254, 96, 32, 59, 2, 27, 29, 116, 139, 47, 225, 39, 199, 157, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 167, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "352af9" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ec06c30" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3a2296" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11341323302216743525" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a3c859" + } + ] + } + } + ] + }, + "cborHex": "bf43352af9a0446ec06c309f031bfffffffffffffff7433a22961b9d647974577d3a6543a3c859ffff", + "cborBytes": [ + 191, 67, 53, 42, 249, 160, 68, 110, 192, 108, 48, 159, 3, 27, 255, 255, 255, 255, 255, 255, 255, 247, 67, 58, 34, + 150, 27, 157, 100, 121, 116, 87, 125, 58, 101, 67, 163, 200, 89, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 168, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11897266093094686850" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1370723688085650894" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7177693879069841432" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d570bd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2668887957422813092" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "09d82e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f1ae157db24fad77225b" + } + ] + } + } + ] + }, + "cborHex": "bf1ba51b947a2d3550829f1b1305c9ee918efdce1b639c4a8dd074181843d570bd1b2509cb74f7812fa4ff4309d82ed905029f4af1ae157db24fad77225bffff", + "cborBytes": [ + 191, 27, 165, 27, 148, 122, 45, 53, 80, 130, 159, 27, 19, 5, 201, 238, 145, 142, 253, 206, 27, 99, 156, 74, 141, + 208, 116, 24, 24, 67, 213, 112, 189, 27, 37, 9, 203, 116, 247, 129, 47, 164, 255, 67, 9, 216, 46, 217, 5, 2, 159, + 74, 241, 174, 21, 125, 178, 79, 173, 119, 34, 91, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 169, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2548013c00358d98d5cfe920" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5875862468687572763" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3645cb5d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a23934" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c74d4908" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4864347274876857585" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "23bf3e4ca7e9" + }, + { + "_tag": "ByteArray", + "bytearray": "0d54cbbb2f" + }, + { + "_tag": "ByteArray", + "bytearray": "e5cd19b899d060435ba6c29c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d905e4530ce80719" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4c2548013c00358d98d5cfe9201b518b41c89b2c2f1b443645cb5d9f43a23934ff44c74d4908d8669f1b4381a212f72cacf19f4623bf3e4ca7e9450d54cbbb2f4ce5cd19b899d060435ba6c29cffff48d905e4530ce80719a0ff", + "cborBytes": [ + 191, 76, 37, 72, 1, 60, 0, 53, 141, 152, 213, 207, 233, 32, 27, 81, 139, 65, 200, 155, 44, 47, 27, 68, 54, 69, + 203, 93, 159, 67, 162, 57, 52, 255, 68, 199, 77, 73, 8, 216, 102, 159, 27, 67, 129, 162, 18, 247, 44, 172, 241, + 159, 70, 35, 191, 62, 76, 167, 233, 69, 13, 84, 203, 187, 47, 76, 229, 205, 25, 184, 153, 208, 96, 67, 91, 166, + 194, 156, 255, 255, 72, 217, 5, 228, 83, 12, 232, 7, 25, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 170, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "553900297631583772" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18035048388617224104" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13285394437785672333" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "491313025581381603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8732238113861247452" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5956037230292114252" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5393240366459796781" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7220002737551767012" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acfc8ab62d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8661003328473887274" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17977295462621580357" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9130139567119553182" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13393782502532493551" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17877177642581744155" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aaeb8474940b0f7094c0" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b07afd962d1504e1c1bfa495cf4a682bfa81bb85f33da252a5a8dbf1b06d17e97fb4cf7e31b792f244c96d3a1dc1b52a8184df4901b4c1b4ad8a389e7223d2d1b64329a3c911ef5e445acfc8ab62d1b783210a3a829722a1bf97c2ef9b7cd0c451b7eb4c5900fe6529e1bb9e04639064ab0ef1bf8187e593ca3da1b4aaaeb8474940b0f7094c0ffff", + "cborBytes": [ + 191, 27, 7, 175, 217, 98, 209, 80, 78, 28, 27, 250, 73, 92, 244, 166, 130, 191, 168, 27, 184, 95, 51, 218, 37, 42, + 90, 141, 191, 27, 6, 209, 126, 151, 251, 76, 247, 227, 27, 121, 47, 36, 76, 150, 211, 161, 220, 27, 82, 168, 24, + 77, 244, 144, 27, 76, 27, 74, 216, 163, 137, 231, 34, 61, 45, 27, 100, 50, 154, 60, 145, 30, 245, 228, 69, 172, + 252, 138, 182, 45, 27, 120, 50, 16, 163, 168, 41, 114, 42, 27, 249, 124, 46, 249, 183, 205, 12, 69, 27, 126, 180, + 197, 144, 15, 230, 82, 158, 27, 185, 224, 70, 57, 6, 74, 176, 239, 27, 248, 24, 126, 89, 60, 163, 218, 27, 74, + 170, 235, 132, 116, 148, 11, 15, 112, 148, 192, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 171, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06b3b73cf08f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14954979328220372647" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "33060405b6059c0304fbf95c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18152451693724168319" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c7b06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4753089295674046804" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a06" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6594728617484489712" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f09e75b2" + }, + { + "_tag": "ByteArray", + "bytearray": "c4" + }, + { + "_tag": "ByteArray", + "bytearray": "0616927c676f5a1eb4a7dd74" + }, + { + "_tag": "ByteArray", + "bytearray": "c4819276a9bfc7" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f823" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10768912138246119491" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8d2a0c" + }, + { + "_tag": "ByteArray", + "bytearray": "091eadb293d334b905" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13566034627315955629" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe06" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1106906482099343327" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e2a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2311798324202597712" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f33" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10497958162940153015" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15340122501595302189" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12698592728692655793" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2285685546004651481" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18275409158993869850" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f455c8" + } + } + ] + } + } + ] + }, + "cborHex": "bf4606b3b73cf08f1bcf8ac276d1e29ea74c33060405b6059c0304fbf95cbf0c1bfbea76a3beddf07fff436c7b061b41f65d880e5cf954428a069f1b5b852ebcbb4413f044f09e75b241c44c0616927c676f5a1eb4a7dd7447c4819276a9bfc7ff42f823d8669f1b9572dc88998d60439f438d2a0c49091eadb293d334b9051bbc443c9e1bd0f7adffff42fe06bf1b0f5c8594b11bcfdf425e2a1b20152853d2706d50427f331b91b03d5420f5ccb71bd4e31023c690892d1bb03a76ce851586b11b1fb862e4ddda1dd91bfd9f4bcd86bffc1a43f455c8ffff", + "cborBytes": [ + 191, 70, 6, 179, 183, 60, 240, 143, 27, 207, 138, 194, 118, 209, 226, 158, 167, 76, 51, 6, 4, 5, 182, 5, 156, 3, + 4, 251, 249, 92, 191, 12, 27, 251, 234, 118, 163, 190, 221, 240, 127, 255, 67, 108, 123, 6, 27, 65, 246, 93, 136, + 14, 92, 249, 84, 66, 138, 6, 159, 27, 91, 133, 46, 188, 187, 68, 19, 240, 68, 240, 158, 117, 178, 65, 196, 76, 6, + 22, 146, 124, 103, 111, 90, 30, 180, 167, 221, 116, 71, 196, 129, 146, 118, 169, 191, 199, 255, 66, 248, 35, 216, + 102, 159, 27, 149, 114, 220, 136, 153, 141, 96, 67, 159, 67, 141, 42, 12, 73, 9, 30, 173, 178, 147, 211, 52, 185, + 5, 27, 188, 68, 60, 158, 27, 208, 247, 173, 255, 255, 66, 254, 6, 191, 27, 15, 92, 133, 148, 177, 27, 207, 223, + 66, 94, 42, 27, 32, 21, 40, 83, 210, 112, 109, 80, 66, 127, 51, 27, 145, 176, 61, 84, 32, 245, 204, 183, 27, 212, + 227, 16, 35, 198, 144, 137, 45, 27, 176, 58, 118, 206, 133, 21, 134, 177, 27, 31, 184, 98, 228, 221, 218, 29, 217, + 27, 253, 159, 75, 205, 134, 191, 252, 26, 67, 244, 85, 200, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 172, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6823e0cc89186759" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5525195507552334119" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13488646454893393118" + } + } + } + ] + }, + "cborHex": "bf486823e0cc891867591b4cad700a563db12741e41bbb314c7c1cc0b4deff", + "cborBytes": [ + 191, 72, 104, 35, 224, 204, 137, 24, 103, 89, 27, 76, 173, 112, 10, 86, 61, 177, 39, 65, 228, 27, 187, 49, 76, + 124, 28, 192, 180, 222, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 173, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b189936c" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf44b189936ca0ff", + "cborBytes": [191, 68, 177, 137, 147, 108, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 174, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10827379284369377964" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b806" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf0c413f0d1b96429417dd428aac42b80680ff", + "cborBytes": [191, 12, 65, 63, 13, 27, 150, 66, 148, 23, 221, 66, 138, 172, 66, 184, 6, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 175, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "010c2e0e0d4a1e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23ecd7cb9d995450" + } + } + ] + }, + "cborHex": "bf47010c2e0e0d4a1e4823ecd7cb9d995450ff", + "cborBytes": [191, 71, 1, 12, 46, 14, 13, 74, 30, 72, 35, 236, 215, 203, 157, 153, 84, 80, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 176, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0506fe870541044a0306" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a173ae6a16ab11419efc0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "493186" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a845afb9de203" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe891af4b56e36" + } + } + ] + }, + "cborHex": "bf4a0506fe870541044a0306bf4b5a173ae6a16ab11419efc043493186ff479a845afb9de20347fe891af4b56e36ff", + "cborBytes": [ + 191, 74, 5, 6, 254, 135, 5, 65, 4, 74, 3, 6, 191, 75, 90, 23, 58, 230, 161, 106, 177, 20, 25, 239, 192, 67, 73, + 49, 134, 255, 71, 154, 132, 90, 251, 157, 226, 3, 71, 254, 137, 26, 244, 181, 110, 54, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 177, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1903927cd8d3d965491ec9" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "307b3898a86132081d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0cdbe466f02cbe11558e" + } + } + ] + }, + "cborHex": "bf4b1903927cd8d3d965491ec9a049307b3898a86132081d4a0cdbe466f02cbe11558eff", + "cborBytes": [ + 191, 75, 25, 3, 146, 124, 216, 211, 217, 101, 73, 30, 201, 160, 73, 48, 123, 56, 152, 168, 97, 50, 8, 29, 74, 12, + 219, 228, 102, 240, 44, 190, 17, 85, 142, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 178, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "997ee16f61a05853d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11805307673794335307" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff1d9050a9f49997ee16f61a05853d11ba3d4e0c838b4524bffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 241, 217, 5, 10, 159, 73, 153, 126, 225, 111, 97, 160, 88, 83, 209, + 27, 163, 212, 224, 200, 56, 180, 82, 75, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 179, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "723301896523567473" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7818768253858020046" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6940" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3934050000139877780" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1330372b550ae4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15105560334765140657" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90d36a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16634224135956251085" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf01d9050a9f1b0a09af3e1fa751711b6c81d84d204eface426940ff1b36988da1b2f67d941bfffffffffffffff01bffffffffffffffebbf471330372b550ae41bd1a1bb177ee82ab14390d36a1be6d8a2b841e6c1cdffff", + "cborBytes": [ + 191, 1, 217, 5, 10, 159, 27, 10, 9, 175, 62, 31, 167, 81, 113, 27, 108, 129, 216, 77, 32, 78, 250, 206, 66, 105, + 64, 255, 27, 54, 152, 141, 161, 178, 246, 125, 148, 27, 255, 255, 255, 255, 255, 255, 255, 240, 27, 255, 255, 255, + 255, 255, 255, 255, 235, 191, 71, 19, 48, 55, 43, 85, 10, 228, 27, 209, 161, 187, 23, 126, 232, 42, 177, 67, 144, + 211, 106, 27, 230, 216, 162, 184, 65, 230, 193, 205, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 180, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75c1422ff4b9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0a044675c1422ff4b9bf1bffffffffffffffef07ffff", + "cborBytes": [ + 191, 10, 4, 70, 117, 193, 66, 47, 244, 185, 191, 27, 255, 255, 255, 255, 255, 255, 255, 239, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 181, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5443492403889475173" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "755686329043598113" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8762963032348049162" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2029377705687074807" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10087232033409577208" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13999450881637592007" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14269551911134140978" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1b65366c843cfb9377b8706" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d11c1c6cba810e03f74d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5074748932087775172" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe025e27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4" + } + } + ] + } + } + ] + }, + "cborHex": "bf00bf1b4b8b2b801f5e8e651b0a7cbcb664433b211b799c4c7322fc3f0a1b1c29cc456e9347f71b8bfd0c170651b0f81bc2480a679289abc71bc607a1dc1f259a324cc1b65366c843cfb9377b8706ff0ed87a9f4ad11c1c6cba810e03f74dff1b466d21443d627fc4bf41e10544fe025e2741a4ffff", + "cborBytes": [ + 191, 0, 191, 27, 75, 139, 43, 128, 31, 94, 142, 101, 27, 10, 124, 188, 182, 100, 67, 59, 33, 27, 121, 156, 76, + 115, 34, 252, 63, 10, 27, 28, 41, 204, 69, 110, 147, 71, 247, 27, 139, 253, 12, 23, 6, 81, 176, 248, 27, 194, 72, + 10, 103, 146, 137, 171, 199, 27, 198, 7, 161, 220, 31, 37, 154, 50, 76, 193, 182, 83, 102, 200, 67, 207, 185, 55, + 123, 135, 6, 255, 14, 216, 122, 159, 74, 209, 28, 28, 108, 186, 129, 14, 3, 247, 77, 255, 27, 70, 109, 33, 68, 61, + 98, 127, 196, 191, 65, 225, 5, 68, 254, 2, 94, 39, 65, 164, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 182, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6dea944e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f30605" + } + } + ] + }, + "cborHex": "bf446dea944e43f30605ff", + "cborBytes": [191, 68, 109, 234, 148, 78, 67, 243, 6, 5, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 183, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01dcfffc14f815f9" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "455f8bb0e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac0395" + } + } + ] + }, + "cborHex": "bf4801dcfffc14f815f9a045455f8bb0e843ac0395ff", + "cborBytes": [191, 72, 1, 220, 255, 252, 20, 248, 21, 249, 160, 69, 69, 95, 139, 176, 232, 67, 172, 3, 149, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 184, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3997fb476e42" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f83b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5622724296090985110" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6c1a5cef696cd21f6d1c65b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7285821a32dfa0cde" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13423079461994866730" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5823322395793774111" + } + }, + { + "_tag": "ByteArray", + "bytearray": "252a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "634637f2ba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eca2bdd6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b40083b297" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9361648901008615202" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a0ae76fd3fec0e69020a6154" + }, + { + "_tag": "ByteArray", + "bytearray": "0d0dee205d985de36b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12660209271717393508" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16009636647618161154" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3b93b61ba504939eca75d82" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14132714568871784310" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fdb9bfba" + }, + { + "_tag": "ByteArray", + "bytearray": "6486de34d645a7" + }, + { + "_tag": "ByteArray", + "bytearray": "6f4a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb5c0756e8af385b8b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9482198494955392940" + } + } + } + ] + }, + "cborHex": "bf463997fb476e42bf436f83b21b4e07edf4f27622964ca6c1a5cef696cd21f6d1c65b49c7285821a32dfa0cdeff4161d8669f1bba485ba6f40ba82a9f1b50d098dd9ddd561f42252affff45634637f2ba44eca2bdd645b40083b297d8669f1b81eb4213488b67229f4ca0ae76fd3fec0e69020a6154490d0dee205d985de36b1bafb2194186d274641bde2da7b5545b2a02ffff4cd3b93b61ba504939eca75d82d8669f1bc4217d05a5972f769f44fdb9bfba476486de34d645a7426f4affff49eb5c0756e8af385b8b1b8397894ad58f4facff", + "cborBytes": [ + 191, 70, 57, 151, 251, 71, 110, 66, 191, 67, 111, 131, 178, 27, 78, 7, 237, 244, 242, 118, 34, 150, 76, 166, 193, + 165, 206, 246, 150, 205, 33, 246, 209, 198, 91, 73, 199, 40, 88, 33, 163, 45, 250, 12, 222, 255, 65, 97, 216, 102, + 159, 27, 186, 72, 91, 166, 244, 11, 168, 42, 159, 27, 80, 208, 152, 221, 157, 221, 86, 31, 66, 37, 42, 255, 255, + 69, 99, 70, 55, 242, 186, 68, 236, 162, 189, 214, 69, 180, 0, 131, 178, 151, 216, 102, 159, 27, 129, 235, 66, 19, + 72, 139, 103, 34, 159, 76, 160, 174, 118, 253, 63, 236, 14, 105, 2, 10, 97, 84, 73, 13, 13, 238, 32, 93, 152, 93, + 227, 107, 27, 175, 178, 25, 65, 134, 210, 116, 100, 27, 222, 45, 167, 181, 84, 91, 42, 2, 255, 255, 76, 211, 185, + 59, 97, 186, 80, 73, 57, 236, 167, 93, 130, 216, 102, 159, 27, 196, 33, 125, 5, 165, 151, 47, 118, 159, 68, 253, + 185, 191, 186, 71, 100, 134, 222, 52, 214, 69, 167, 66, 111, 74, 255, 255, 73, 235, 92, 7, 86, 232, 175, 56, 91, + 139, 27, 131, 151, 137, 74, 213, 143, 79, 172, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 185, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6127624623076666158" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17025474372073286987" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14816456289814491397" + } + } + ] + } + } + ] + }, + "cborHex": "bf41bf9f1b5509b2210f6beb2e1bec46a2bc8ff1ed4b1bcd9ea07ea07eb105ffff", + "cborBytes": [ + 191, 65, 191, 159, 27, 85, 9, 178, 33, 15, 107, 235, 46, 27, 236, 70, 162, 188, 143, 241, 237, 75, 27, 205, 158, + 160, 126, 160, 126, 177, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 186, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1108962573143348349" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9766218240165441902" + } + } + } + ] + }, + "cborHex": "bf1b0f63d395b169947d1b878893beec00716eff", + "cborBytes": [191, 27, 15, 99, 211, 149, 177, 105, 148, 125, 27, 135, 136, 147, 190, 236, 0, 113, 110, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 187, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8098494266497795516" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10638676277772804561" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dc6701f7fa922b2529bcc5" + } + ] + } + } + ] + }, + "cborHex": "bf1b7063a1a0b22385bcd8669f1b93a42bb56105e1d19f4bdc6701f7fa922b2529bcc5ffffff", + "cborBytes": [ + 191, 27, 112, 99, 161, 160, 178, 35, 133, 188, 216, 102, 159, 27, 147, 164, 43, 181, 97, 5, 225, 209, 159, 75, + 220, 103, 1, 247, 250, 146, 43, 37, 41, 188, 197, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 188, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "059bf94d2528ae" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4696151326065266073" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14164527530856249068" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "074f" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87fe02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e90fa017b05" + } + } + ] + }, + "cborHex": "bf47059bf94d2528aed8669f1b412c14bff1998d999f1bc49282be0fed76ecffff42074fa04387fe02466e90fa017b05ff", + "cborBytes": [ + 191, 71, 5, 155, 249, 77, 37, 40, 174, 216, 102, 159, 27, 65, 44, 20, 191, 241, 153, 141, 153, 159, 27, 196, 146, + 130, 190, 15, 237, 118, 236, 255, 255, 66, 7, 79, 160, 67, 135, 254, 2, 70, 110, 144, 250, 1, 123, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 189, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1824aa4c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11607ac1ee8f7bd8d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17910287239400127627" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "586425410cedd9fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58ad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0a3e119c314e517" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9f854" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7052858839640565619" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc8527bd2376042709981409" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2796214113309748268" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89791c3b50ffcb15d5b7f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7b7f063" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9298b53fd0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8763182174172351594" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b60f2a4cbf39436e1f117b10" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8710639557587192444" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18062912711450153698" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5721643085814732496" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd4dd70ae2bceea5751af777" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7480febfd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3181a1a0b97" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5017356126870571871" + } + } + } + ] + }, + "cborHex": "bf441824aa4cbf4911607ac1ee8f7bd8d11bf88e1f59f9a7fc8b48586425410cedd9fe4258ad419248e0a3e119c314e51743a9f8541b61e0c9bf3bbfe7734cbc8527bd23760427099814091b26ce25ebcbc2ec2cff4b89791c3b50ffcb15d5b7f344a7b7f063459298b53fd01b799d13c211940c6a4cb60f2a4cbf39436e1f117b109f1b78e26886d4734a7c1bfaac5b68dedfd2e21b4f675c126d8e96d0ff4cdd4dd70ae2bceea5751af77745e7480febfd46f3181a1a0b971b45a13ad075c00b5fff", + "cborBytes": [ + 191, 68, 24, 36, 170, 76, 191, 73, 17, 96, 122, 193, 238, 143, 123, 216, 209, 27, 248, 142, 31, 89, 249, 167, 252, + 139, 72, 88, 100, 37, 65, 12, 237, 217, 254, 66, 88, 173, 65, 146, 72, 224, 163, 225, 25, 195, 20, 229, 23, 67, + 169, 248, 84, 27, 97, 224, 201, 191, 59, 191, 231, 115, 76, 188, 133, 39, 189, 35, 118, 4, 39, 9, 152, 20, 9, 27, + 38, 206, 37, 235, 203, 194, 236, 44, 255, 75, 137, 121, 28, 59, 80, 255, 203, 21, 213, 183, 243, 68, 167, 183, + 240, 99, 69, 146, 152, 181, 63, 208, 27, 121, 157, 19, 194, 17, 148, 12, 106, 76, 182, 15, 42, 76, 191, 57, 67, + 110, 31, 17, 123, 16, 159, 27, 120, 226, 104, 134, 212, 115, 74, 124, 27, 250, 172, 91, 104, 222, 223, 210, 226, + 27, 79, 103, 92, 18, 109, 142, 150, 208, 255, 76, 221, 77, 215, 10, 226, 188, 238, 165, 117, 26, 247, 119, 69, + 231, 72, 15, 235, 253, 70, 243, 24, 26, 26, 11, 151, 27, 69, 161, 58, 208, 117, 192, 11, 95, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 190, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10765432701347157561" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4863" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3758723bcad4610ed09e7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5fe58e14612fcac9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13750657468426856370" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "616a7b308a216e32d6aeff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8341425061103298883" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc4b562a8e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9369681146585040290" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6401adda521" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b09620e4429f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ece87b9c9d5853b03da331" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7848557134173609404" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a7fd34106d37bb7d1202f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "84d588" + }, + { + "_tag": "ByteArray", + "bytearray": "1c0d4af46afcb33607" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10108319024692866666" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7b7ae7500b158d4b61a3c9" + } + ] + } + } + ] + }, + "cborHex": "bf1b95668001112bd639bf4248634bb3758723bcad4610ed09e7485fe58e14612fcac91bbed4261d09a7a7b24b616a7b308a216e32d6aeff1b73c2b1e5f79a694345bc4b562a8e1b8207cb5c30e045a246d6401adda521474b09620e4429f94bece87b9c9d5853b03da3311b6cebad214dc69dbcff4b1a7fd34106d37bb7d1202f9f4384d588491c0d4af46afcb336071b8c47f698c7242e6a4b7b7ae7500b158d4b61a3c9ffff", + "cborBytes": [ + 191, 27, 149, 102, 128, 1, 17, 43, 214, 57, 191, 66, 72, 99, 75, 179, 117, 135, 35, 188, 173, 70, 16, 237, 9, 231, + 72, 95, 229, 142, 20, 97, 47, 202, 201, 27, 190, 212, 38, 29, 9, 167, 167, 178, 75, 97, 106, 123, 48, 138, 33, + 110, 50, 214, 174, 255, 27, 115, 194, 177, 229, 247, 154, 105, 67, 69, 188, 75, 86, 42, 142, 27, 130, 7, 203, 92, + 48, 224, 69, 162, 70, 214, 64, 26, 221, 165, 33, 71, 75, 9, 98, 14, 68, 41, 249, 75, 236, 232, 123, 156, 157, 88, + 83, 176, 61, 163, 49, 27, 108, 235, 173, 33, 77, 198, 157, 188, 255, 75, 26, 127, 211, 65, 6, 211, 123, 183, 209, + 32, 47, 159, 67, 132, 213, 136, 73, 28, 13, 74, 244, 106, 252, 179, 54, 7, 27, 140, 71, 246, 152, 199, 36, 46, + 106, 75, 123, 122, 231, 80, 11, 21, 141, 75, 97, 163, 201, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 191, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14988422413563037727" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2e" + } + ] + } + } + ] + }, + "cborHex": "bf061bd00192c5e7ed881f149f412effff", + "cborBytes": [191, 6, 27, 208, 1, 146, 197, 231, 237, 136, 31, 20, 159, 65, 46, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 192, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7322561708274662992" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "361312681750874120" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "46" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2283496676037437520" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18143631626989789334" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5886302c73" + }, + { + "_tag": "ByteArray", + "bytearray": "4a0af59d7e9e7bc4c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9993395687539242723" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10405708532534359973" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3eb67e1d39ab80eb16" + } + ] + } + } + ] + }, + "cborHex": "bf1b659ef713bb96be50d8669f1b0503a3f8409ac8089f41461b1fb09c20dcff2850ffff1bfbcb20d5ee44e0969f455886302c73494a0af59d7e9e7bc4c71b8aafac6e37b276e31b906880c74df637a5493eb67e1d39ab80eb16ffff", + "cborBytes": [ + 191, 27, 101, 158, 247, 19, 187, 150, 190, 80, 216, 102, 159, 27, 5, 3, 163, 248, 64, 154, 200, 8, 159, 65, 70, + 27, 31, 176, 156, 32, 220, 255, 40, 80, 255, 255, 27, 251, 203, 32, 213, 238, 68, 224, 150, 159, 69, 88, 134, 48, + 44, 115, 73, 74, 10, 245, 157, 126, 158, 123, 196, 199, 27, 138, 175, 172, 110, 55, 178, 118, 227, 27, 144, 104, + 128, 199, 77, 246, 55, 165, 73, 62, 182, 126, 29, 57, 171, 128, 235, 22, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 193, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab45073bbb05f772a64d" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbf83d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a51d052c9a69abb8020506" + } + } + ] + }, + "cborHex": "bf4aab45073bbb05f772a64d8043fbf83d4ba51d052c9a69abb8020506ff", + "cborBytes": [ + 191, 74, 171, 69, 7, 59, 187, 5, 247, 114, 166, 77, 128, 67, 251, 248, 61, 75, 165, 29, 5, 44, 154, 105, 171, 184, + 2, 5, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 194, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1522f62cded3a12fa4eaa446" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5649950393229427103" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3666" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8679244499329088195" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56aaaa5e70fcd0a13e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17080913387354242783" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "957c61f96daff690f0aaa29d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8885605a5899635" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9462647058146840564" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0103d565fd2ff9aa27e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d16008def2ef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04072600" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6da6aae382" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "135655300416584470" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d29351f98b3b57402b18" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11570203492979390627" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06521084079b0002b0d900f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72" + } + } + ] + }, + "cborHex": "bf4101bf4c1522f62cded3a12fa4eaa4461b4e68a7f2ab04c19f4236661b7872dee33545fac34956aaaa5e70fcd0a13e1bed0b983a2c76bedf4c957c61f96daff690f0aaa29d410e48b8885605a58996351b8352135d37bccff4ff4a0103d565fd2ff9aa27e546d16008def2ef4404072600bf456da6aae3821b01e1f1c6e93abb164ad29351f98b3b57402b181ba0919ec67a0538a3ff4c06521084079b0002b0d900f60741784172ff", + "cborBytes": [ + 191, 65, 1, 191, 76, 21, 34, 246, 44, 222, 211, 161, 47, 164, 234, 164, 70, 27, 78, 104, 167, 242, 171, 4, 193, + 159, 66, 54, 102, 27, 120, 114, 222, 227, 53, 69, 250, 195, 73, 86, 170, 170, 94, 112, 252, 208, 161, 62, 27, 237, + 11, 152, 58, 44, 118, 190, 223, 76, 149, 124, 97, 249, 109, 175, 246, 144, 240, 170, 162, 157, 65, 14, 72, 184, + 136, 86, 5, 165, 137, 150, 53, 27, 131, 82, 19, 93, 55, 188, 207, 244, 255, 74, 1, 3, 213, 101, 253, 47, 249, 170, + 39, 229, 70, 209, 96, 8, 222, 242, 239, 68, 4, 7, 38, 0, 191, 69, 109, 166, 170, 227, 130, 27, 1, 225, 241, 198, + 233, 58, 187, 22, 74, 210, 147, 81, 249, 139, 59, 87, 64, 43, 24, 27, 160, 145, 158, 198, 122, 5, 56, 163, 255, + 76, 6, 82, 16, 132, 7, 155, 0, 2, 176, 217, 0, 246, 7, 65, 120, 65, 114, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 195, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01fff9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10519236463474008753" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c06f382e29bae74" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe060107" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4301fff9d8669f1bffffffffffffffff9f1b91fbd5d489b462b1485c06f382e29bae74ffff44fe06010780ff", + "cborBytes": [ + 191, 67, 1, 255, 249, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 27, 145, 251, 213, 212, 137, + 180, 98, 177, 72, 92, 6, 243, 130, 226, 155, 174, 116, 255, 255, 68, 254, 6, 1, 7, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 196, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9908726154077939091" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d06b540" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f71147f7112551ad" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11673181379748159344" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12430035878318149804" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9678f6af43acb157c4b12c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61bd46117f6dc3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14487020159324314805" + } + } + } + ] + }, + "cborHex": "bf1b8982ddf03e702593bf440d06b54048f71147f7112551adff1ba1ff789e2297df709f0d0fff1bac805bc6308390acd87f9f4b9678f6af43acb157c4b12cff4761bd46117f6dc31bc90c3c145272dcb5ff", + "cborBytes": [ + 191, 27, 137, 130, 221, 240, 62, 112, 37, 147, 191, 68, 13, 6, 181, 64, 72, 247, 17, 71, 247, 17, 37, 81, 173, + 255, 27, 161, 255, 120, 158, 34, 151, 223, 112, 159, 13, 15, 255, 27, 172, 128, 91, 198, 48, 131, 144, 172, 216, + 127, 159, 75, 150, 120, 246, 175, 67, 172, 177, 87, 196, 177, 44, 255, 71, 97, 189, 70, 17, 127, 109, 195, 27, + 201, 12, 60, 20, 82, 114, 220, 181, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 197, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bf2902b27914aaaa4197f79" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15902526399907608961" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3671d005fbfacc5e80144d" + }, + { + "_tag": "ByteArray", + "bytearray": "7987" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1ee4702c608ee4189e714ed" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c963f222" + }, + { + "_tag": "ByteArray", + "bytearray": "c829" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3926be4498a0797" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bfbcd1ebfd61" + }, + { + "_tag": "ByteArray", + "bytearray": "f6aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10196465996286990389" + } + }, + { + "_tag": "ByteArray", + "bytearray": "009aef40e04f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6427262004417414342" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c1bf2902b27914aaaa4197f79d8669f1bdcb11f8169c3b9819f4b3671d005fbfacc5e80144d427987ffff4cb1ee4702c608ee4189e714ed9f44c963f22242c829ff48d3926be4498a07979f46bfbcd1ebfd6142f6aa1b8d811fcce909183546009aef40e04f1b593238bd6baa44c6ffff", + "cborBytes": [ + 191, 76, 27, 242, 144, 43, 39, 145, 74, 170, 164, 25, 127, 121, 216, 102, 159, 27, 220, 177, 31, 129, 105, 195, + 185, 129, 159, 75, 54, 113, 208, 5, 251, 250, 204, 94, 128, 20, 77, 66, 121, 135, 255, 255, 76, 177, 238, 71, 2, + 198, 8, 238, 65, 137, 231, 20, 237, 159, 68, 201, 99, 242, 34, 66, 200, 41, 255, 72, 211, 146, 107, 228, 73, 138, + 7, 151, 159, 70, 191, 188, 209, 235, 253, 97, 66, 246, 170, 27, 141, 129, 31, 204, 233, 9, 24, 53, 70, 0, 154, + 239, 64, 224, 79, 27, 89, 50, 56, 189, 107, 170, 68, 198, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 198, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1053054100988770653" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "275541329533358576" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1788960193889546719" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13861028410333457734" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2092250747406904371" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b004f617926a2abc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11773943575996102537" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16612597827616089407" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14020653217766170313" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e170c2b98254b6002cbb4d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12527629906257049535" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1405281648338819438" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b1e68f2191" + }, + { + "_tag": "ByteArray", + "bytearray": "76be4e10050bca3531" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9917929007081349592" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17702303575481573083" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f68a" + } + } + ] + }, + "cborHex": "bf1b0e9d332022b4395d1b03d2eb611bc651f01b18d3a9d16a19b1df9f1bc05c43e67b85ed46ff1b1d092af8343bec3348b004f617926a2abc1ba365734d24bd7789d8669f1be68bcdb4f77ba53f9f1bc2935dd123e3dec94be170c2b98254b6002cbb4dffff1baddb15068802f7bfd8669f1b13809036b29c596e9f45b1e68f21914976be4e10050bca35311b89a38fe26ea061d8ffff1bf5ab374fa2b4dedb42f68aff", + "cborBytes": [ + 191, 27, 14, 157, 51, 32, 34, 180, 57, 93, 27, 3, 210, 235, 97, 27, 198, 81, 240, 27, 24, 211, 169, 209, 106, 25, + 177, 223, 159, 27, 192, 92, 67, 230, 123, 133, 237, 70, 255, 27, 29, 9, 42, 248, 52, 59, 236, 51, 72, 176, 4, 246, + 23, 146, 106, 42, 188, 27, 163, 101, 115, 77, 36, 189, 119, 137, 216, 102, 159, 27, 230, 139, 205, 180, 247, 123, + 165, 63, 159, 27, 194, 147, 93, 209, 35, 227, 222, 201, 75, 225, 112, 194, 185, 130, 84, 182, 0, 44, 187, 77, 255, + 255, 27, 173, 219, 21, 6, 136, 2, 247, 191, 216, 102, 159, 27, 19, 128, 144, 54, 178, 156, 89, 110, 159, 69, 177, + 230, 143, 33, 145, 73, 118, 190, 78, 16, 5, 11, 202, 53, 49, 27, 137, 163, 143, 226, 110, 160, 97, 216, 255, 255, + 27, 245, 171, 55, 79, 162, 180, 222, 219, 66, 246, 138, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 199, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4468961861593974285" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16863661712580340266" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3014115495745186961" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe0506" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11691250616064044836" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10329643676410080721" + } + } + } + ] + }, + "cborHex": "bf1b3e04f122b313c60dbf141bea07c2fae6b4ea2a1b29d44a12ebe46c911bffffffffffffffec1bfffffffffffffff11bffffffffffffffec1bffffffffffffffff43fe0506ff1ba23faa7e0e906f241b8f5a4431e4c86dd1ff", + "cborBytes": [ + 191, 27, 62, 4, 241, 34, 179, 19, 198, 13, 191, 20, 27, 234, 7, 194, 250, 230, 180, 234, 42, 27, 41, 212, 74, 18, + 235, 228, 108, 145, 27, 255, 255, 255, 255, 255, 255, 255, 236, 27, 255, 255, 255, 255, 255, 255, 255, 241, 27, + 255, 255, 255, 255, 255, 255, 255, 236, 27, 255, 255, 255, 255, 255, 255, 255, 255, 67, 254, 5, 6, 255, 27, 162, + 63, 170, 126, 14, 144, 111, 36, 27, 143, 90, 68, 49, 228, 200, 109, 209, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 200, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27a293217bf42462ad" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "020086" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e46c71fce268417bcbed0a1c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a21c0fb322" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3190205489152036086" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4927a293217bf42462add9050d9f43020086ff4ce46c71fce268417bcbed0a1cbf45a21c0fb3221b2c45e2fd6d688cf6ffff", + "cborBytes": [ + 191, 73, 39, 162, 147, 33, 123, 244, 36, 98, 173, 217, 5, 13, 159, 67, 2, 0, 134, 255, 76, 228, 108, 113, 252, + 226, 104, 65, 123, 203, 237, 10, 28, 191, 69, 162, 28, 15, 179, 34, 27, 44, 69, 226, 253, 109, 104, 140, 246, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 201, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1747106153516614186" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7783a25019" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eefc12daafd464584c6d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bae4870709" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5068418610511052238" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b299a66f56b13d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6413653711f1f5b0c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1263750107613224676" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1214687000597765350" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09026c0206e17d239a445a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14819334256332936342" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09c0cfa26d4f" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b183ef7ca4141c22abf457783a250194aeefc12daafd464584c6d45bae48707094190ff1b4656a3df647d7dce47b299a66f56b13d496413653711f1f5b0c01b1189be06f925dee44172bf1b10db6f642fea1ce64b09026c0206e17d239a445a1bcda8d9fd6c8094964609c0cfa26d4fffff", + "cborBytes": [ + 191, 27, 24, 62, 247, 202, 65, 65, 194, 42, 191, 69, 119, 131, 162, 80, 25, 74, 238, 252, 18, 218, 175, 212, 100, + 88, 76, 109, 69, 186, 228, 135, 7, 9, 65, 144, 255, 27, 70, 86, 163, 223, 100, 125, 125, 206, 71, 178, 153, 166, + 111, 86, 177, 61, 73, 100, 19, 101, 55, 17, 241, 245, 176, 192, 27, 17, 137, 190, 6, 249, 37, 222, 228, 65, 114, + 191, 27, 16, 219, 111, 100, 47, 234, 28, 230, 75, 9, 2, 108, 2, 6, 225, 125, 35, 154, 68, 90, 27, 205, 168, 217, + 253, 108, 128, 148, 150, 70, 9, 192, 207, 162, 109, 79, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 202, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2074629036223982966" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5813469525453392299" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "32316006947018235" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c1ec3986f1487" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10725481437127979018" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f52f14" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11832299153159568319" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e69a4e2711a4d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12704624024824647681" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7702982978168194618" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7753929950885427448" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6220884984004271461" + } + } + } + ] + }, + "cborHex": "bf1b1cca901dd8d76d76a01b50ad97bb793549abbf1b0072cf3cb2a2d5fb470c1ec3986f14871b94d8908a810f300a43f52f141ba434c563bc3b3bbf470e69a4e2711a4d1bb04fe43d149110011b6ae67e34dc98863aff1b6b9b7e354fc9b8f81b565505eeec22dd65ff", + "cborBytes": [ + 191, 27, 28, 202, 144, 29, 216, 215, 109, 118, 160, 27, 80, 173, 151, 187, 121, 53, 73, 171, 191, 27, 0, 114, 207, + 60, 178, 162, 213, 251, 71, 12, 30, 195, 152, 111, 20, 135, 27, 148, 216, 144, 138, 129, 15, 48, 10, 67, 245, 47, + 20, 27, 164, 52, 197, 99, 188, 59, 59, 191, 71, 14, 105, 164, 226, 113, 26, 77, 27, 176, 79, 228, 61, 20, 145, 16, + 1, 27, 106, 230, 126, 52, 220, 152, 134, 58, 255, 27, 107, 155, 126, 53, 79, 201, 184, 248, 27, 86, 85, 5, 238, + 236, 34, 221, 101, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 203, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2411341144152047086" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "ByteArray", + "bytearray": "25c299739c784c0b05b74fa9" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3319666069063282966" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b2176cdfea9777dee9f1bffffffffffffffed4c25c299739c784c0b05b74fa9ff1b2e11d2b3936f3116a0ff", + "cborBytes": [ + 191, 27, 33, 118, 205, 254, 169, 119, 125, 238, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 76, 37, 194, 153, + 115, 156, 120, 76, 11, 5, 183, 79, 169, 255, 27, 46, 17, 210, 179, 147, 111, 49, 22, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 204, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d54" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15699153453839247169" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "893133f1887730c8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4182570747343462073" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f011e91f2f8ecdf4918e" + }, + { + "_tag": "ByteArray", + "bytearray": "4a9e60bca0f39d654b12" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14624517887687397874" + } + } + ] + } + } + ] + }, + "cborHex": "bf424d541bd9de98e37a6f674148893133f1887730c8d8669f1b3a0b79ef3b58deb99f4af011e91f2f8ecdf4918e4a4a9e60bca0f39d654b121bcaf4b988eaf411f2ffffff", + "cborBytes": [ + 191, 66, 77, 84, 27, 217, 222, 152, 227, 122, 111, 103, 65, 72, 137, 49, 51, 241, 136, 119, 48, 200, 216, 102, + 159, 27, 58, 11, 121, 239, 59, 88, 222, 185, 159, 74, 240, 17, 233, 31, 47, 142, 205, 244, 145, 142, 74, 74, 158, + 96, 188, 160, 243, 157, 101, 75, 18, 27, 202, 244, 185, 136, 234, 244, 17, 242, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 205, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11368164599612906751" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "681745bfe6bd64414f0d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afab7417063672569b758a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "605e9dd324e6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbb5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9735316826253974888" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db801def7b1524566694b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86614987c64569" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f59d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "461283aabb12d12ce2e19b" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b9dc3d578e4191cffbf4a681745bfe6bd64414f0d41174bafab7417063672569b758a46605e9dd324e642cbb51b871acb12d4c05d684bdb801def7b1524566694b04786614987c6456942f59d4b461283aabb12d12ce2e19bffff", + "cborBytes": [ + 191, 27, 157, 195, 213, 120, 228, 25, 28, 255, 191, 74, 104, 23, 69, 191, 230, 189, 100, 65, 79, 13, 65, 23, 75, + 175, 171, 116, 23, 6, 54, 114, 86, 155, 117, 138, 70, 96, 94, 157, 211, 36, 230, 66, 203, 181, 27, 135, 26, 203, + 18, 212, 192, 93, 104, 75, 219, 128, 29, 239, 123, 21, 36, 86, 102, 148, 176, 71, 134, 97, 73, 135, 198, 69, 105, + 66, 245, 157, 75, 70, 18, 131, 170, 187, 18, 209, 44, 226, 225, 155, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 206, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7415622640099375170" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1277233497087265577" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf780572248d3f0b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17907342155496699240" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5001543768333051608" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b66e995806377b842bf1b11b9a519391dcb2948bf780572248d3f0b1bf883a8d031c235681b45690d8ed80f66d8ffff", + "cborBytes": [ + 191, 27, 102, 233, 149, 128, 99, 119, 184, 66, 191, 27, 17, 185, 165, 25, 57, 29, 203, 41, 72, 191, 120, 5, 114, + 36, 141, 63, 11, 27, 248, 131, 168, 208, 49, 194, 53, 104, 27, 69, 105, 13, 142, 216, 15, 102, 216, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 207, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12400407340186746646" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5bc0aacc94f7a48696" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14975005482439121652" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "058ebf013df8df04" + } + } + ] + }, + "cborHex": "bf1bac1718c695fa3f16495bc0aacc94f7a486961bcfd1e825324f9af448058ebf013df8df04ff", + "cborBytes": [ + 191, 27, 172, 23, 24, 198, 149, 250, 63, 22, 73, 91, 192, 170, 204, 148, 247, 164, 134, 150, 27, 207, 209, 232, + 37, 50, 79, 154, 244, 72, 5, 142, 191, 1, 61, 248, 223, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 208, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "36a192a6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1328eb83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fda23402f79c1400586" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d548cc5f1f4b456" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41a8bf8cb2b281992da109" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70bd9d7a9431b7a654" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cd021b542535732cae9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9564830153311981494" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e105bc7ebdcc6095" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16514517715233577860" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f83925c5353389dc95907f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec231d612c7035da72c2" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97c5ac265457fd82fdf381" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18268349980567666949" + } + } + } + ] + }, + "cborHex": "bf4436a192a6bf441328eb8341e04a3fda23402f79c1400586481d548cc5f1f4b4564b41a8bf8cb2b281992da1094970bd9d7a9431b7a6544a8cd021b542535732cae91b84bd1a59091b0fb648e105bc7ebdcc60951be52f5a5d45649b844bf83925c5353389dc95907f4aec231d612c7035da72c2ff4b97c5ac265457fd82fdf3811bfd86378478400105ff", + "cborBytes": [ + 191, 68, 54, 161, 146, 166, 191, 68, 19, 40, 235, 131, 65, 224, 74, 63, 218, 35, 64, 47, 121, 193, 64, 5, 134, 72, + 29, 84, 140, 197, 241, 244, 180, 86, 75, 65, 168, 191, 140, 178, 178, 129, 153, 45, 161, 9, 73, 112, 189, 157, + 122, 148, 49, 183, 166, 84, 74, 140, 208, 33, 181, 66, 83, 87, 50, 202, 233, 27, 132, 189, 26, 89, 9, 27, 15, 182, + 72, 225, 5, 188, 126, 189, 204, 96, 149, 27, 229, 47, 90, 93, 69, 100, 155, 132, 75, 248, 57, 37, 197, 53, 51, + 137, 220, 149, 144, 127, 74, 236, 35, 29, 97, 44, 112, 53, 218, 114, 194, 255, 75, 151, 197, 172, 38, 84, 87, 253, + 130, 253, 243, 129, 27, 253, 134, 55, 132, 120, 64, 1, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 209, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8314488429025669672" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19a3d8c7ef3c690ac5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16afd9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a90630d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c47" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14806458855818966525" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3490136206970474150" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "081ea426ae" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "25ee8e1ae3ed758fca703f24" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13167926134957570145" + } + }, + { + "_tag": "ByteArray", + "bytearray": "902a89f4604e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd19117217" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11625409290095945064" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15555520486043263328" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9601872925735821180" + } + }, + { + "_tag": "ByteArray", + "bytearray": "93" + }, + { + "_tag": "ByteArray", + "bytearray": "eb3a33d2" + } + ] + } + } + ] + }, + "cborHex": "bf1b7362ff2c952bb228bf4919a3d8c7ef3c690ac54316afd944a90630d5421c47ff1bcd7b1be1a286b5fd1b306f746382344ea645081ea426ae9f4c25ee8e1ae3ed758fca703f241bb6bddf0d96ba786146902a89f4604eff45fd19117217d8669f1ba155c027c0b1e5689f1bd7e04f7722eba1601b8540b48d94ec9f7c419344eb3a33d2ffffff", + "cborBytes": [ + 191, 27, 115, 98, 255, 44, 149, 43, 178, 40, 191, 73, 25, 163, 216, 199, 239, 60, 105, 10, 197, 67, 22, 175, 217, + 68, 169, 6, 48, 213, 66, 28, 71, 255, 27, 205, 123, 27, 225, 162, 134, 181, 253, 27, 48, 111, 116, 99, 130, 52, + 78, 166, 69, 8, 30, 164, 38, 174, 159, 76, 37, 238, 142, 26, 227, 237, 117, 143, 202, 112, 63, 36, 27, 182, 189, + 223, 13, 150, 186, 120, 97, 70, 144, 42, 137, 244, 96, 78, 255, 69, 253, 25, 17, 114, 23, 216, 102, 159, 27, 161, + 85, 192, 39, 192, 177, 229, 104, 159, 27, 215, 224, 79, 119, 34, 235, 161, 96, 27, 133, 64, 180, 141, 148, 236, + 159, 124, 65, 147, 68, 235, 58, 51, 210, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 210, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5092174394937483809" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1283490692098502342" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd33dbfd92ee53e1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9736148698539437275" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5811124881253470349" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0af2c3347b9f85c859b21fc0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc41dc21cfdfb973b1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f757f8ed295c" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5193007649041914461" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11862918933973840011" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5657373660331248643" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8717200276483702947" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6144514956418798033" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6535558672716136803" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "21efab299f80323b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "683072374708448532" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14222614913110406913" + } + }, + { + "_tag": "ByteArray", + "bytearray": "759420ec74da004eb78d41" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11697913901615485009" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15492361684884993387" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12050657686812575034" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5637916516408311850" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17477894449594926377" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d69a5e2b699" + } + } + ] + }, + "cborHex": "bf1b46ab09a1f896a221bf1b11cfdffbf70d2ec648dd33dbfd92ee53e11b871dbfa830d32cdb1b50a5434a748c108d4c0af2c3347b9f85c859b21fc049dc41dc21cfdfb973b141ad46f757f8ed295cff1b481144f16d079a5d9f1ba4a18deb02c4308b1b4e83075eb9b20c031b78f9b7773bbf80a31b5545b3cc3e6ad1d1ff1b5ab2f7fc67f801639f4821efab299f80323b1b097ac2b4aa612d141bc560e0e8a91e77014b759420ec74da004eb78d41ff1ba25756b71ee510511bd6ffecdecf71356b1ba73c8951ac4b453a1b4e3de73361d3402a1bf28df46669e08529460d69a5e2b699ff", + "cborBytes": [ + 191, 27, 70, 171, 9, 161, 248, 150, 162, 33, 191, 27, 17, 207, 223, 251, 247, 13, 46, 198, 72, 221, 51, 219, 253, + 146, 238, 83, 225, 27, 135, 29, 191, 168, 48, 211, 44, 219, 27, 80, 165, 67, 74, 116, 140, 16, 141, 76, 10, 242, + 195, 52, 123, 159, 133, 200, 89, 178, 31, 192, 73, 220, 65, 220, 33, 207, 223, 185, 115, 177, 65, 173, 70, 247, + 87, 248, 237, 41, 92, 255, 27, 72, 17, 68, 241, 109, 7, 154, 93, 159, 27, 164, 161, 141, 235, 2, 196, 48, 139, 27, + 78, 131, 7, 94, 185, 178, 12, 3, 27, 120, 249, 183, 119, 59, 191, 128, 163, 27, 85, 69, 179, 204, 62, 106, 209, + 209, 255, 27, 90, 178, 247, 252, 103, 248, 1, 99, 159, 72, 33, 239, 171, 41, 159, 128, 50, 59, 27, 9, 122, 194, + 180, 170, 97, 45, 20, 27, 197, 96, 224, 232, 169, 30, 119, 1, 75, 117, 148, 32, 236, 116, 218, 0, 78, 183, 141, + 65, 255, 27, 162, 87, 86, 183, 30, 229, 16, 81, 27, 214, 255, 236, 222, 207, 113, 53, 107, 27, 167, 60, 137, 81, + 172, 75, 69, 58, 27, 78, 61, 231, 51, 97, 211, 64, 42, 27, 242, 141, 244, 102, 105, 224, 133, 41, 70, 13, 105, + 165, 226, 182, 153, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 211, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2429763360224914687" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9670167228204454443" + } + }, + { + "_tag": "ByteArray", + "bytearray": "71" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15198775146726081958" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11006270377147453006" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1657648819016217885" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1dab0f54a95cfe16fe836a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1695564871779856357" + } + } + ] + } + } + ] + }, + "cborHex": "bf00081b21b840e716772cff9f1b863355dbfbc0122b41711bd2ece57829a4c5a6ff1b98be209823c74e4ed8669f1b170126d17bceb51d9f4b1dab0f54a95cfe16fe836a1b1787db447411afe5ffffff", + "cborBytes": [ + 191, 0, 8, 27, 33, 184, 64, 231, 22, 119, 44, 255, 159, 27, 134, 51, 85, 219, 251, 192, 18, 43, 65, 113, 27, 210, + 236, 229, 120, 41, 164, 197, 166, 255, 27, 152, 190, 32, 152, 35, 199, 78, 78, 216, 102, 159, 27, 23, 1, 38, 209, + 123, 206, 181, 29, 159, 75, 29, 171, 15, 84, 169, 92, 254, 22, 254, 131, 106, 27, 23, 135, 219, 68, 116, 17, 175, + 229, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 212, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3548529620139457430" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4819906288485045650" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14371583887467176578" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5487327572673771549" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ed94e0ea8fe5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16981937221838069609" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9952706379378647685" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b313ee8e37b5d3b96d8669f1b42e3bf3b7fd295929f1bc7721f66d83562821b4c26e75aaf6d381d46ed94e0ea8fe51bebabf5edd9a45f691b8a1f1db868a0e285ffffff", + "cborBytes": [ + 191, 27, 49, 62, 232, 227, 123, 93, 59, 150, 216, 102, 159, 27, 66, 227, 191, 59, 127, 210, 149, 146, 159, 27, + 199, 114, 31, 102, 216, 53, 98, 130, 27, 76, 38, 231, 90, 175, 109, 56, 29, 70, 237, 148, 224, 234, 143, 229, 27, + 235, 171, 245, 237, 217, 164, 95, 105, 27, 138, 31, 29, 184, 104, 160, 226, 133, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 213, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2dcdfa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1578883268351614085" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6961" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "21096756679922075" + } + } + } + ] + }, + "cborHex": "bf432dcdfa1b15e951f79fe7dc854269611b004af3636fd1d19bff", + "cborBytes": [ + 191, 67, 45, 205, 250, 27, 21, 233, 81, 247, 159, 231, 220, 133, 66, 105, 97, 27, 0, 74, 243, 99, 111, 209, 209, + 155, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 214, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7dfd88" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10421919375295811567" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14489333462401711642" + } + } + ] + } + } + ] + }, + "cborHex": "bf437dfd88d8669f1b90a2187442448fef9f1bc91474042aa27e1affffff", + "cborBytes": [ + 191, 67, 125, 253, 136, 216, 102, 159, 27, 144, 162, 24, 116, 66, 68, 143, 239, 159, 27, 201, 20, 116, 4, 42, 162, + 126, 26, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 215, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2536" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17728621320932206850" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3030035815303815394" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8846f6ee4ffaa2bd524988" + }, + { + "_tag": "ByteArray", + "bytearray": "6c3a8e8826" + }, + { + "_tag": "ByteArray", + "bytearray": "8922b0072b6b6bb2" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ae3f867ded35ffdc07affb7" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9adeaad70d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3863419145227241817" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7417196371925069078" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16702090972178683968" + } + }, + { + "_tag": "ByteArray", + "bytearray": "98b884e05caaf3" + } + ] + } + } + ] + }, + "cborHex": "bf422536d8669f1bf608b7293f94a9029f1b2a0cd9852be520e24b8846f6ee4ffaa2bd524988456c3a8e8826488922b0072b6b6bb2ffff4c5ae3f867ded35ffdc07affb7a0459adeaad70d9f1b359d9f3e49b689591b66ef2ccd61e8ed161be7c9bf3f6af818404798b884e05caaf3ffff", + "cborBytes": [ + 191, 66, 37, 54, 216, 102, 159, 27, 246, 8, 183, 41, 63, 148, 169, 2, 159, 27, 42, 12, 217, 133, 43, 229, 32, 226, + 75, 136, 70, 246, 238, 79, 250, 162, 189, 82, 73, 136, 69, 108, 58, 142, 136, 38, 72, 137, 34, 176, 7, 43, 107, + 107, 178, 255, 255, 76, 90, 227, 248, 103, 222, 211, 95, 253, 192, 122, 255, 183, 160, 69, 154, 222, 170, 215, 13, + 159, 27, 53, 157, 159, 62, 73, 182, 137, 89, 27, 102, 239, 44, 205, 97, 232, 237, 22, 27, 231, 201, 191, 63, 106, + 248, 24, 64, 71, 152, 184, 132, 224, 92, 170, 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 216, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8205" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15048205976742864353" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5edfe354e6f264" + }, + { + "_tag": "ByteArray", + "bytearray": "97264eeb522c29cdb746" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7590896561135535531" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16728560952108895666" + } + }, + { + "_tag": "ByteArray", + "bytearray": "626403e748" + }, + { + "_tag": "ByteArray", + "bytearray": "627a43" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18114557686241849666" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13173453159171384265" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14031043322578711038" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16399969417877674800" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "476674028375121809" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6223524765559129825" + } + } + ] + } + } + ] + }, + "cborHex": "bf10bf014282051bfffffffffffffff91bd0d5f79b66ab25e1ff11d87f9f475edfe354e6f2644a97264eeb522c29cdb746ff1b695848343d37c5ab9f1be827c98de1ebcdb245626403e74843627a431bfb63d63d97c471421bb6d181da31a863c9ff1bc2b8478fee6bb1fe41d41be398654b77de5b30d8669f1b069d7c80d6f41f919f1b565e66ccf5ff86e1ffffff", + "cborBytes": [ + 191, 16, 191, 1, 66, 130, 5, 27, 255, 255, 255, 255, 255, 255, 255, 249, 27, 208, 213, 247, 155, 102, 171, 37, + 225, 255, 17, 216, 127, 159, 71, 94, 223, 227, 84, 230, 242, 100, 74, 151, 38, 78, 235, 82, 44, 41, 205, 183, 70, + 255, 27, 105, 88, 72, 52, 61, 55, 197, 171, 159, 27, 232, 39, 201, 141, 225, 235, 205, 178, 69, 98, 100, 3, 231, + 72, 67, 98, 122, 67, 27, 251, 99, 214, 61, 151, 196, 113, 66, 27, 182, 209, 129, 218, 49, 168, 99, 201, 255, 27, + 194, 184, 71, 143, 238, 107, 177, 254, 65, 212, 27, 227, 152, 101, 75, 119, 222, 91, 48, 216, 102, 159, 27, 6, + 157, 124, 128, 214, 244, 31, 145, 159, 27, 86, 94, 102, 204, 245, 255, 134, 225, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 217, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7327886727245755761" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f362e7d45900" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ace" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11456191579495671042" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5dc59e3309b5dea7dab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c03b77b5a22bfcff46" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed6c71" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8c109" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4842694084103396226" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2854476077174200196" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d587f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3837097830171543284" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "228cabef81" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6214392067490564587" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "130600" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16535937273437342706" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10422601170012061262" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03fb" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00a0" + } + } + ] + }, + "cborHex": "bf011b65b1e22753c875710446f362e7d459000bbf424ace1b9efc918b46a925024ae5dc59e3309b5dea7dab49c03b77b5a22bfcff4643ed6c7143f8c109ff1b4334b49c9ede5b82bf1b279d22de57d1978443d587f91b35401c258fcc06f445228cabef811b563df4a8fdc7c9eb431306001be57b7356cb5fcbf211ff1b90a4848af623be4e9f4203fbff1bfffffffffffffffc4200a0ff", + "cborBytes": [ + 191, 1, 27, 101, 177, 226, 39, 83, 200, 117, 113, 4, 70, 243, 98, 231, 212, 89, 0, 11, 191, 66, 74, 206, 27, 158, + 252, 145, 139, 70, 169, 37, 2, 74, 229, 220, 89, 227, 48, 155, 93, 234, 125, 171, 73, 192, 59, 119, 181, 162, 43, + 252, 255, 70, 67, 237, 108, 113, 67, 248, 193, 9, 255, 27, 67, 52, 180, 156, 158, 222, 91, 130, 191, 27, 39, 157, + 34, 222, 87, 209, 151, 132, 67, 213, 135, 249, 27, 53, 64, 28, 37, 143, 204, 6, 244, 69, 34, 140, 171, 239, 129, + 27, 86, 61, 244, 168, 253, 199, 201, 235, 67, 19, 6, 0, 27, 229, 123, 115, 86, 203, 95, 203, 242, 17, 255, 27, + 144, 164, 132, 138, 246, 35, 190, 78, 159, 66, 3, 251, 255, 27, 255, 255, 255, 255, 255, 255, 255, 252, 66, 0, + 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 218, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "601887634209413314" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "85c294ac2640cca18af1dda8" + }, + { + "_tag": "ByteArray", + "bytearray": "5e116f37ca3f46fa4cd18f30" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12707804932746171852" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1979110330079815962" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12901450829887935216" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2033515543139238775" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15040326346701431965" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11160349721521231159" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23c42f75a4" + } + } + ] + }, + "cborHex": "bf1b085a559d47c098c29f4c85c294ac2640cca18af1dda84c5e116f37ca3f46fa4cd18f301bb05b3141eb4ad5ccff1b1b77365c03b6a91a1bb30b292ccaa392f01b1c387f9cca0cc3771bd0b9f9201116649d1b9ae186f1106715374523c42f75a4ff", + "cborBytes": [ + 191, 27, 8, 90, 85, 157, 71, 192, 152, 194, 159, 76, 133, 194, 148, 172, 38, 64, 204, 161, 138, 241, 221, 168, 76, + 94, 17, 111, 55, 202, 63, 70, 250, 76, 209, 143, 48, 27, 176, 91, 49, 65, 235, 74, 213, 204, 255, 27, 27, 119, 54, + 92, 3, 182, 169, 26, 27, 179, 11, 41, 44, 202, 163, 146, 240, 27, 28, 56, 127, 156, 202, 12, 195, 119, 27, 208, + 185, 249, 32, 17, 22, 100, 157, 27, 154, 225, 134, 241, 16, 103, 21, 55, 69, 35, 196, 47, 117, 164, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 219, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cec79bfa3622ca6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12004233133332606894" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "131257647ddf9797ec5d76" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4ddc65b24e63ae0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8004737471101472132" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "888cf1e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3b3e986" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b215648636d2e75baa8ce34" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3f7008fb04346" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5f2a1297aa8f43f7c" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15061720884284789415" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ea03f6" + } + ] + } + } + ] + }, + "cborHex": "bf008004489cec79bfa3622ca61ba6979a6f0143afaebf4b131257647ddf9797ec5d7648a4ddc65b24e63ae0425d501b6f168a51ad430d8444888cf1e544c3b3e98641d34c5b215648636d2e75baa8ce3447e3f7008fb0434649e5f2a1297aa8f43f7cff1bfffffffffffffffcd8669f1bd105fb5805e092a79f43ea03f6ffffff", + "cborBytes": [ + 191, 0, 128, 4, 72, 156, 236, 121, 191, 163, 98, 44, 166, 27, 166, 151, 154, 111, 1, 67, 175, 174, 191, 75, 19, + 18, 87, 100, 125, 223, 151, 151, 236, 93, 118, 72, 164, 221, 198, 91, 36, 230, 58, 224, 66, 93, 80, 27, 111, 22, + 138, 81, 173, 67, 13, 132, 68, 136, 140, 241, 229, 68, 195, 179, 233, 134, 65, 211, 76, 91, 33, 86, 72, 99, 109, + 46, 117, 186, 168, 206, 52, 71, 227, 247, 0, 143, 176, 67, 70, 73, 229, 242, 161, 41, 122, 168, 244, 63, 124, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 252, 216, 102, 159, 27, 209, 5, 251, 88, 5, 224, 146, 167, 159, 67, 234, 3, + 246, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 220, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16766816198556622153" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f8c712d5c614470137ba41b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2cd228f70095f64c82" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7eb1f0592b831948" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4461c3" + } + } + ] + }, + "cborHex": "bf1be8afb27f893b9d494c6f8c712d5c614470137ba41b492cd228f70095f64c82a0487eb1f0592b831948434461c3ff", + "cborBytes": [ + 191, 27, 232, 175, 178, 127, 137, 59, 157, 73, 76, 111, 140, 113, 45, 92, 97, 68, 112, 19, 123, 164, 27, 73, 44, + 210, 40, 247, 0, 149, 246, 76, 130, 160, 72, 126, 177, 240, 89, 43, 131, 25, 72, 67, 68, 97, 195, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 221, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "046606" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15720653825300115468" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a60207023d024404" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebe7f50528ece4" + } + } + ] + }, + "cborHex": "bf43046606d8669f1bda2afb5ccde6300c80ff48a60207023d02440447ebe7f50528ece4ff", + "cborBytes": [ + 191, 67, 4, 102, 6, 216, 102, 159, 27, 218, 42, 251, 92, 205, 230, 48, 12, 128, 255, 72, 166, 2, 7, 2, 61, 2, 68, + 4, 71, 235, 231, 245, 5, 40, 236, 228, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 222, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2361220438809509523" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6530004422547972023" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9220033963909402260" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf6e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "346d2c1757be87e4c51229e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2473487741554613227" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cb1c1a5e1efc8a5fa45" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13355045736741053905" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8f64c2849" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94ebabd75f21e5ff386d" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8586782168477679664" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "db677fafb0ca6c1022" + } + ] + } + } + ] + }, + "cborHex": "bf1b20c4bd7a93a1fe93801b5a9f3c6cc3b39fb7bf1b7ff4240a53db4e9442bf6e4c346d2c1757be87e4c51229e11b225397feefa55beb4a3cb1c1a5e1efc8a5fa451bb956a756e98ba5d145a8f64c28494a94ebabd75f21e5ff386dff1b772a60e333c540309f49db677fafb0ca6c1022ffff", + "cborBytes": [ + 191, 27, 32, 196, 189, 122, 147, 161, 254, 147, 128, 27, 90, 159, 60, 108, 195, 179, 159, 183, 191, 27, 127, 244, + 36, 10, 83, 219, 78, 148, 66, 191, 110, 76, 52, 109, 44, 23, 87, 190, 135, 228, 197, 18, 41, 225, 27, 34, 83, 151, + 254, 239, 165, 91, 235, 74, 60, 177, 193, 165, 225, 239, 200, 165, 250, 69, 27, 185, 86, 167, 86, 233, 139, 165, + 209, 69, 168, 246, 76, 40, 73, 74, 148, 235, 171, 215, 95, 33, 229, 255, 56, 109, 255, 27, 119, 42, 96, 227, 51, + 197, 64, 48, 159, 73, 219, 103, 127, 175, 176, 202, 108, 16, 34, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 223, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15531272908675408955" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8160753551544562130" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15373343604938105172" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10383963663808169139" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14071373375182545665" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee85df0a3e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9584" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd01" + } + } + ] + }, + "cborHex": "bf1bd78a2a6c173ee43bd8669f1b7140d21e1b5231d29f1bd559168ea65be1541b901b3fef85d984b31bc3478f8809a5230145ee85df0a3effff42958442dd01ff", + "cborBytes": [ + 191, 27, 215, 138, 42, 108, 23, 62, 228, 59, 216, 102, 159, 27, 113, 64, 210, 30, 27, 82, 49, 210, 159, 27, 213, + 89, 22, 142, 166, 91, 225, 84, 27, 144, 27, 63, 239, 133, 217, 132, 179, 27, 195, 71, 143, 136, 9, 165, 35, 1, 69, + 238, 133, 223, 10, 62, 255, 255, 66, 149, 132, 66, 221, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 224, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1797903852230886181" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5178988907191330011" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f53e1243384653097bf87c" + }, + { + "_tag": "ByteArray", + "bytearray": "4ebaa5572621efcc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10265536657967647120" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4777882305360005742" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1922836479836943365" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8343850696987774973" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6041706679756897781" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42d123759187" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8765869169967197927" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6000470933442178556" + } + } + } + ] + }, + "cborHex": "bf1b18f37007248743259f1b47df76f8bcd3e4db4bf53e1243384653097bf87c484ebaa5572621efcc1b8e76833386e989901b424e72a4759b8a6eff1b1aaf49973dd7f4051b73cb500054da0ffd1b53d874370403bdf54642d1237591871b79a69f9107716ee71b5345f485a8e0adfcff", + "cborBytes": [ + 191, 27, 24, 243, 112, 7, 36, 135, 67, 37, 159, 27, 71, 223, 118, 248, 188, 211, 228, 219, 75, 245, 62, 18, 67, + 56, 70, 83, 9, 123, 248, 124, 72, 78, 186, 165, 87, 38, 33, 239, 204, 27, 142, 118, 131, 51, 134, 233, 137, 144, + 27, 66, 78, 114, 164, 117, 155, 138, 110, 255, 27, 26, 175, 73, 151, 61, 215, 244, 5, 27, 115, 203, 80, 0, 84, + 218, 15, 253, 27, 83, 216, 116, 55, 4, 3, 189, 245, 70, 66, 209, 35, 117, 145, 135, 27, 121, 166, 159, 145, 7, + 113, 110, 231, 27, 83, 69, 244, 133, 168, 224, 173, 252, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 225, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8fa5084910469fb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8ddaf51473a983bb0bd3b9" + } + ] + } + } + ] + }, + "cborHex": "bf48d8fa5084910469fb9f4b8ddaf51473a983bb0bd3b9ffff", + "cborBytes": [ + 191, 72, 216, 250, 80, 132, 145, 4, 105, 251, 159, 75, 141, 218, 245, 20, 115, 169, 131, 187, 11, 211, 185, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 226, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02e3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3516090003816202463" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cff1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5178239561470444223" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a34b22649" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5813489494102541640" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91351cb72cf48bbeb03f" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e664" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12733950558076866407" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10364580384244524393" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6854074290180727237" + } + }, + { + "_tag": "ByteArray", + "bytearray": "983cc6a31643b64f2c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4066039573448742899" + } + } + ] + } + } + ] + }, + "cborHex": "bf4202e3bf1b30cba93abbc440df42cff11b47dccd72175202bf455a34b226491b50ada9e4c97285484a91351cb72cf48bbeb03fff42e6649f1bb0b81490b18f0f671b8fd662f210e065691b5f1e9040a25c21c549983cc6a31643b64f2c1b386d79730217d7f3ffff", + "cborBytes": [ + 191, 66, 2, 227, 191, 27, 48, 203, 169, 58, 187, 196, 64, 223, 66, 207, 241, 27, 71, 220, 205, 114, 23, 82, 2, + 191, 69, 90, 52, 178, 38, 73, 27, 80, 173, 169, 228, 201, 114, 133, 72, 74, 145, 53, 28, 183, 44, 244, 139, 190, + 176, 63, 255, 66, 230, 100, 159, 27, 176, 184, 20, 144, 177, 143, 15, 103, 27, 143, 214, 98, 242, 16, 224, 101, + 105, 27, 95, 30, 144, 64, 162, 92, 33, 197, 73, 152, 60, 198, 163, 22, 67, 182, 79, 44, 27, 56, 109, 121, 115, 2, + 23, 215, 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 227, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7679068045733617168" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5301291009450949075" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "530c7eaee51528a76c4e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12593916413268893432" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13889081194318608896" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8001eebd2b277ee4da" + }, + { + "_tag": "ByteArray", + "bytearray": "d6ab188742f41d7da9aa64" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3435410637572423946" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dba8c7795a55" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16183168406574020196" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2817e019653305" + } + } + ] + }, + "cborHex": "bf1b6a9187b3c0015e10d8669f1b4991f815ed4bb9d39f4a530c7eaee51528a76c4e1baec694409fda9ef8ffff1bc0bfedc23beb3a009f498001eebd2b277ee4da4bd6ab188742f41d7da9aa641b2fad07c5f61a410a46dba8c7795a55ff1be09629ec762b3664472817e019653305ff", + "cborBytes": [ + 191, 27, 106, 145, 135, 179, 192, 1, 94, 16, 216, 102, 159, 27, 73, 145, 248, 21, 237, 75, 185, 211, 159, 74, 83, + 12, 126, 174, 229, 21, 40, 167, 108, 78, 27, 174, 198, 148, 64, 159, 218, 158, 248, 255, 255, 27, 192, 191, 237, + 194, 59, 235, 58, 0, 159, 73, 128, 1, 238, 189, 43, 39, 126, 228, 218, 75, 214, 171, 24, 135, 66, 244, 29, 125, + 169, 170, 100, 27, 47, 173, 7, 197, 246, 26, 65, 10, 70, 219, 168, 199, 121, 90, 85, 255, 27, 224, 150, 41, 236, + 118, 43, 54, 100, 71, 40, 23, 224, 25, 101, 51, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 228, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5950" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46c52a0998c89a2e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8573d6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d5" + }, + { + "_tag": "ByteArray", + "bytearray": "7fbb" + }, + { + "_tag": "ByteArray", + "bytearray": "f37611d608" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11947458458019685027" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ff84c11773200ee" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b73f72f26e9fd6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3306192235521748830" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17606346564771524759" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1dac83891" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5646954827804091100" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2bcec2e2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6522694495707113876" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6e88035" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6535903621802902353" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9876665737187711926" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14932897572304578285" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5886937819224458253" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4259504846c52a0998c89a2e438573d69f41d5427fbb45f37611d6081ba5cde62aceffe2a3ff488ff84c11773200ee9f47b73f72f26e9fd61b2de1f4523d6daf5e1bf4564eeb11a03097ff45a1dac83891bf1b4e5e037f3df0a2dc442bcec2e21b5a854415cb04a99444a6e880351b5ab431b71fc043511b8910f728be585bb61bcf3c4f396081e6ed1b51b29ac199afc40dffff", + "cborBytes": [ + 191, 66, 89, 80, 72, 70, 197, 42, 9, 152, 200, 154, 46, 67, 133, 115, 214, 159, 65, 213, 66, 127, 187, 69, 243, + 118, 17, 214, 8, 27, 165, 205, 230, 42, 206, 255, 226, 163, 255, 72, 143, 248, 76, 17, 119, 50, 0, 238, 159, 71, + 183, 63, 114, 242, 110, 159, 214, 27, 45, 225, 244, 82, 61, 109, 175, 94, 27, 244, 86, 78, 235, 17, 160, 48, 151, + 255, 69, 161, 218, 200, 56, 145, 191, 27, 78, 94, 3, 127, 61, 240, 162, 220, 68, 43, 206, 194, 226, 27, 90, 133, + 68, 21, 203, 4, 169, 148, 68, 166, 232, 128, 53, 27, 90, 180, 49, 183, 31, 192, 67, 81, 27, 137, 16, 247, 40, 190, + 88, 91, 182, 27, 207, 60, 79, 57, 96, 129, 230, 237, 27, 81, 178, 154, 193, 153, 175, 196, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 229, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b04efa111c2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12987691626443296982" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2630542432923737804" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59b8d30f67" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6792128330173982868" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e6d09f20150" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8af83327" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4711211628556159340" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2338111611695038113" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6438041786617345596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f6247" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1001ba95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be9597cf553955d366ceb8f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d61946ca9e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "749b2424" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31cd59ebdb9a03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5288675976822560346" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bbe8d146d43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a955dc5ac5a57d93e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8881add4a5aec47e46646fe5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04ad6f6367ffd0a622" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a80f8b5c52f9ad803ce52a29" + } + } + ] + } + } + ] + }, + "cborHex": "bf463b04efa111c2bf1bb43d8cb8f677d0d61b24819067d102deccff4559b8d30f671b5e427cbae4e32894467e6d09f20150a0448af83327bf1b41619603ddc7896c1b2072a41f7c4c7ea11b595884e50c72b63c431f6247ff41b8bf441001ba954cbe9597cf553955d366ceb8f3462d61946ca9e144749b24244731cd59ebdb9a031b496526c7c2a6965a466bbe8d146d43495a955dc5ac5a57d93e4c8881add4a5aec47e46646fe54904ad6f6367ffd0a62241bc4ca80f8b5c52f9ad803ce52a29ffff", + "cborBytes": [ + 191, 70, 59, 4, 239, 161, 17, 194, 191, 27, 180, 61, 140, 184, 246, 119, 208, 214, 27, 36, 129, 144, 103, 209, 2, + 222, 204, 255, 69, 89, 184, 211, 15, 103, 27, 94, 66, 124, 186, 228, 227, 40, 148, 70, 126, 109, 9, 242, 1, 80, + 160, 68, 138, 248, 51, 39, 191, 27, 65, 97, 150, 3, 221, 199, 137, 108, 27, 32, 114, 164, 31, 124, 76, 126, 161, + 27, 89, 88, 132, 229, 12, 114, 182, 60, 67, 31, 98, 71, 255, 65, 184, 191, 68, 16, 1, 186, 149, 76, 190, 149, 151, + 207, 85, 57, 85, 211, 102, 206, 184, 243, 70, 45, 97, 148, 108, 169, 225, 68, 116, 155, 36, 36, 71, 49, 205, 89, + 235, 219, 154, 3, 27, 73, 101, 38, 199, 194, 166, 150, 90, 70, 107, 190, 141, 20, 109, 67, 73, 90, 149, 93, 197, + 172, 90, 87, 217, 62, 76, 136, 129, 173, 212, 165, 174, 196, 126, 70, 100, 111, 229, 73, 4, 173, 111, 99, 103, + 255, 208, 166, 34, 65, 188, 76, 168, 15, 139, 92, 82, 249, 173, 128, 60, 229, 42, 41, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 230, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1031223859" + }, + { + "_tag": "ByteArray", + "bytearray": "46cef252b13f50fe0ab649fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8465477317305758325" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5885459704708512042" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6602031057112215c5" + } + ] + } + } + ] + }, + "cborHex": "bf05d9050b9f4510312238594c46cef252b13f50fe0ab649fb1b757b6ac4a022f2751b51ad5a6b3f06b92a496602031057112215c5ffff", + "cborBytes": [ + 191, 5, 217, 5, 11, 159, 69, 16, 49, 34, 56, 89, 76, 70, 206, 242, 82, 177, 63, 80, 254, 10, 182, 73, 251, 27, + 117, 123, 106, 196, 160, 34, 242, 117, 27, 81, 173, 90, 107, 63, 6, 185, 42, 73, 102, 2, 3, 16, 87, 17, 34, 21, + 197, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 231, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "391785e1bb18be0b2a1ed0" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ee273a00bd8cb2b625a0c15" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9044258636582821888" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b7d6401b056121" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2806223779675017802" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d782a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11965661818266375369" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1e7c48138203d4024c26d28" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9041265031977876779" + } + } + } + ] + }, + "cborHex": "bf4b391785e1bb18be0b2a1ed0a04c9ee273a00bd8cb2b625a0c15d8669f1b7d83a94fba4720009f47b7d6401b0561211b26f1b5a8dbc8924a435d782a1ba60e9206e438d4c9ffff4ce1e7c48138203d4024c26d281b7d7906a4d733bd2bff", + "cborBytes": [ + 191, 75, 57, 23, 133, 225, 187, 24, 190, 11, 42, 30, 208, 160, 76, 158, 226, 115, 160, 11, 216, 203, 43, 98, 90, + 12, 21, 216, 102, 159, 27, 125, 131, 169, 79, 186, 71, 32, 0, 159, 71, 183, 214, 64, 27, 5, 97, 33, 27, 38, 241, + 181, 168, 219, 200, 146, 74, 67, 93, 120, 42, 27, 166, 14, 146, 6, 228, 56, 212, 201, 255, 255, 76, 225, 231, 196, + 129, 56, 32, 61, 64, 36, 194, 109, 40, 27, 125, 121, 6, 164, 215, 51, 189, 43, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 232, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "727718f4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5116289371943132238" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48bad1487b570c94" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8208324413028419745" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11963779299651707553" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15384517097013729969" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64754d03a0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "09763a9b4857da78fc02c71f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17401986295662326591" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cc20638b7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13968604993960717143" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8722001703012990189" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8384d7d8604ac1c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36bf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebb59300486665ba7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7cb4137d695171" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95f85fabbb7d8952" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd977656f79762617bd99140" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d717f0ba7da441add2c79a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6606736c5" + } + } + ] + }, + "cborHex": "bf44727718f4bf1b4700b61396c6dc4e4848bad1487b570c941b71e9d39067b9c8a11ba607e1e2dee962a11bd580c8ca006d5ab14564754d03a04c09763a9b4857da78fc02c71f1bf1804656132b333fff458cc20638b7bf1bc1da743bb0c6ab571b790ac6567670fced488384d7d8604ac1c44236bf49ebb59300486665ba7f477cb4137d695171ff4895f85fabbb7d89524ccd977656f79762617bd991404bd717f0ba7da441add2c79a45c6606736c5ff", + "cborBytes": [ + 191, 68, 114, 119, 24, 244, 191, 27, 71, 0, 182, 19, 150, 198, 220, 78, 72, 72, 186, 209, 72, 123, 87, 12, 148, + 27, 113, 233, 211, 144, 103, 185, 200, 161, 27, 166, 7, 225, 226, 222, 233, 98, 161, 27, 213, 128, 200, 202, 0, + 109, 90, 177, 69, 100, 117, 77, 3, 160, 76, 9, 118, 58, 155, 72, 87, 218, 120, 252, 2, 199, 31, 27, 241, 128, 70, + 86, 19, 43, 51, 63, 255, 69, 140, 194, 6, 56, 183, 191, 27, 193, 218, 116, 59, 176, 198, 171, 87, 27, 121, 10, + 198, 86, 118, 112, 252, 237, 72, 131, 132, 215, 216, 96, 74, 193, 196, 66, 54, 191, 73, 235, 181, 147, 0, 72, 102, + 101, 186, 127, 71, 124, 180, 19, 125, 105, 81, 113, 255, 72, 149, 248, 95, 171, 187, 125, 137, 82, 76, 205, 151, + 118, 86, 247, 151, 98, 97, 123, 217, 145, 64, 75, 215, 23, 240, 186, 125, 164, 65, 173, 210, 199, 154, 69, 198, + 96, 103, 54, 197, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 233, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "146c4119a9b69f16a642" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e2b07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8019011326729724317" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7051058d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07fc3e" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a146c4119a9b69f16a642bf430e2b071b6f494050ab8f219dff4130bf447051058d4307fc3effff", + "cborBytes": [ + 191, 74, 20, 108, 65, 25, 169, 182, 159, 22, 166, 66, 191, 67, 14, 43, 7, 27, 111, 73, 64, 80, 171, 143, 33, 157, + 255, 65, 48, 191, 68, 112, 81, 5, 141, 67, 7, 252, 62, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 234, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15785407687066095689" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "52ee206070cfe83ecfd896" + }, + { + "_tag": "ByteArray", + "bytearray": "c7646e58b9c872dd0c04aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10434621673151526518" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2f42a6f815908e01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6558306609913110785" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bdb1108a81e4b90499f4b52ee206070cfe83ecfd8964bc7646e58b9c872dd0c04aa1b90cf392071c9f676482f42a6f815908e011b5b03c91d43f7a101ffff", + "cborBytes": [ + 191, 27, 219, 17, 8, 168, 30, 75, 144, 73, 159, 75, 82, 238, 32, 96, 112, 207, 232, 62, 207, 216, 150, 75, 199, + 100, 110, 88, 185, 200, 114, 221, 12, 4, 170, 27, 144, 207, 57, 32, 113, 201, 246, 118, 72, 47, 66, 166, 248, 21, + 144, 142, 1, 27, 91, 3, 201, 29, 67, 247, 161, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 235, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4274a733c5540e44d77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0954fe" + } + } + ] + }, + "cborHex": "bf4ae4274a733c5540e44d77430954feff", + "cborBytes": [191, 74, 228, 39, 74, 115, 60, 85, 64, 228, 77, 119, 67, 9, 84, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 236, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff506ff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 245, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 237, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d93d049f3e0e1a246c7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3748814085699136065" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bc5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3189418384134022420" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a35943443a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65ebf93eb2371c1fb1d7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba6be851be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8478364873420970250" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cd7e134279301ff9a5a26f6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13410555567001062081" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5509997345424838045" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8820993843572141413" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bc10a6d23de42d3d02a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8568290874183319227" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ae4a482b86c4f3596ca30" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cead548e8e45db" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4a0d93d049f3e0e1a246c7bf411f1b3406768c8313ea41427bc51b2c43171f4268a51445a35943443a4a65ebf93eb2371c1fb1d745ba6be851be1b75a933ee9c68190aff4c4cd7e134279301ff9a5a26f69f1bba1bdd3c6bbc4ac11b4c77716477648d9d1b7a6a772a44066d65ff4a5bc10a6d23de42d3d02a1b76e8af273feafebb4b8ae4a482b86c4f3596ca308047cead548e8e45dba0ff", + "cborBytes": [ + 191, 74, 13, 147, 208, 73, 243, 224, 225, 162, 70, 199, 191, 65, 31, 27, 52, 6, 118, 140, 131, 19, 234, 65, 66, + 123, 197, 27, 44, 67, 23, 31, 66, 104, 165, 20, 69, 163, 89, 67, 68, 58, 74, 101, 235, 249, 62, 178, 55, 28, 31, + 177, 215, 69, 186, 107, 232, 81, 190, 27, 117, 169, 51, 238, 156, 104, 25, 10, 255, 76, 76, 215, 225, 52, 39, 147, + 1, 255, 154, 90, 38, 246, 159, 27, 186, 27, 221, 60, 107, 188, 74, 193, 27, 76, 119, 113, 100, 119, 100, 141, 157, + 27, 122, 106, 119, 42, 68, 6, 109, 101, 255, 74, 91, 193, 10, 109, 35, 222, 66, 211, 208, 42, 27, 118, 232, 175, + 39, 63, 234, 254, 187, 75, 138, 228, 164, 130, 184, 108, 79, 53, 150, 202, 48, 128, 71, 206, 173, 84, 142, 142, + 69, 219, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 238, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "67" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4792753238127127710" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2931354024793083230" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7402983583243737334" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80c75f2c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8592172078588214920" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3833575150793595377" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10494217153083658064" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12702575615908109644" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10630062191160647447" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5348019615444122459" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17343763842156393144" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9855014070499995434" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4167bf1b428347ad4eabac9e1b28ae42f45eb40d5e1b66bcae58a54a98f64480c75f2c1b773d86fb7147be881b35339849dad119f11b91a2f2e6655ccf501bb0489d38b6bddd4c1b9385913e0c70df171b4a37fb81565e3b5b1bf0b16d52bffef2b81b88c40b1540a0ef2affff", + "cborBytes": [ + 191, 65, 103, 191, 27, 66, 131, 71, 173, 78, 171, 172, 158, 27, 40, 174, 66, 244, 94, 180, 13, 94, 27, 102, 188, + 174, 88, 165, 74, 152, 246, 68, 128, 199, 95, 44, 27, 119, 61, 134, 251, 113, 71, 190, 136, 27, 53, 51, 152, 73, + 218, 209, 25, 241, 27, 145, 162, 242, 230, 101, 92, 207, 80, 27, 176, 72, 157, 56, 182, 189, 221, 76, 27, 147, + 133, 145, 62, 12, 112, 223, 23, 27, 74, 55, 251, 129, 86, 94, 59, 91, 27, 240, 177, 109, 82, 191, 254, 242, 184, + 27, 136, 196, 11, 21, 64, 160, 239, 42, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 239, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10406157488492984602" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b906a191a0265391aa0ff", + "cborBytes": [191, 27, 144, 106, 25, 26, 2, 101, 57, 26, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 240, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8409774072022339459" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4f83a" + } + } + ] + }, + "cborHex": "bf1b74b584f62c2e8f8343f4f83aff", + "cborBytes": [191, 27, 116, 181, 132, 246, 44, 46, 143, 131, 67, 244, 248, 58, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 241, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4631697129726804902" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ea7ea4b6f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17769316482083520381" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10261605218779575229" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b404717ffec9003a6450ea7ea4b6f1bf6994b31d014ff7dbf41781b8e688b9402a6b3bdffff", + "cborBytes": [ + 191, 27, 64, 71, 23, 255, 236, 144, 3, 166, 69, 14, 167, 234, 75, 111, 27, 246, 153, 75, 49, 208, 20, 255, 125, + 191, 65, 120, 27, 142, 104, 139, 148, 2, 166, 179, 189, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 242, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3823328502627173031" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f40eb712e641ae4ebe6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14917756076816822942" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5479427237927449290" + } + } + } + ] + }, + "cborHex": "bf01051b350f31042ab802a74a5f40eb712e641ae4ebe61bcf06841d3c97729e1b4c0ad60aa943f2caff", + "cborBytes": [ + 191, 1, 5, 27, 53, 15, 49, 4, 42, 184, 2, 167, 74, 95, 64, 235, 113, 46, 100, 26, 228, 235, 230, 27, 207, 6, 132, + 29, 60, 151, 114, 158, 27, 76, 10, 214, 10, 169, 67, 242, 202, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 243, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05ce07a49741fad603" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7878725389de70ec" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4303367841374004227" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1401406da828a412" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17192300302760349879" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12138432588138929807" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17957119656956095078" + } + } + ] + } + } + ] + }, + "cborHex": "bf02bf4905ce07a49741fad603487878725389de70ecff1b3bb8a24062efe403091bfffffffffffffff9a01bfffffffffffffffa9f481401406da828a4121bee97520961df10b71ba8746020720bde8f1bf934812fe60d6a66ffff", + "cborBytes": [ + 191, 2, 191, 73, 5, 206, 7, 164, 151, 65, 250, 214, 3, 72, 120, 120, 114, 83, 137, 222, 112, 236, 255, 27, 59, + 184, 162, 64, 98, 239, 228, 3, 9, 27, 255, 255, 255, 255, 255, 255, 255, 249, 160, 27, 255, 255, 255, 255, 255, + 255, 255, 250, 159, 72, 20, 1, 64, 109, 168, 40, 164, 18, 27, 238, 151, 82, 9, 97, 223, 16, 183, 27, 168, 116, 96, + 32, 114, 11, 222, 143, 27, 249, 52, 129, 47, 230, 13, 106, 102, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 244, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3301fc" + } + ] + } + } + ] + }, + "cborHex": "bf4110d905059f433301fcffff", + "cborBytes": [191, 65, 16, 217, 5, 5, 159, 67, 51, 1, 252, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 245, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00d6ecab51" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5193421599165860543" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "454c8c182e36ba3ae1e740" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12745920526605911863" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10498200973483989036" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c01887d68" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13812838776319991798" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ace70b4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13590674052208228167" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1958f4538943c1454da32c21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14834680142901418323" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "26" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17208686627441475160" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b66c80fbf" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7963377998408070110" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c1a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f01551d2ce" + }, + { + "_tag": "ByteArray", + "bytearray": "6478" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15443656488495463676" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9728147660805408424" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99eb6c577f6dbecbb731c1cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00adb159f5" + } + } + ] + }, + "cborHex": "bf4500d6ecab51bf1b4812bd6db31f4abf4b454c8c182e36ba3ae1e7401bb0e29b302bb487371b91b11a29dd2c582c457c01887d681bbfb10faefa4b5ff6448ace70b41bbc9bc60b43fd7747ff4c1958f4538943c1454da32c211bcddf5efe122e19534126d8669f1beed1894fe7a9fe5880ff452b66c80fbf9f1b6e839a19074633deff426c1a9f45f01551d2ce4264781bd652e3c095edbcfc1b870152c16cda86a8ff4c99eb6c577f6dbecbb731c1cf4500adb159f5ff", + "cborBytes": [ + 191, 69, 0, 214, 236, 171, 81, 191, 27, 72, 18, 189, 109, 179, 31, 74, 191, 75, 69, 76, 140, 24, 46, 54, 186, 58, + 225, 231, 64, 27, 176, 226, 155, 48, 43, 180, 135, 55, 27, 145, 177, 26, 41, 221, 44, 88, 44, 69, 124, 1, 136, + 125, 104, 27, 191, 177, 15, 174, 250, 75, 95, 246, 68, 138, 206, 112, 180, 27, 188, 155, 198, 11, 67, 253, 119, + 71, 255, 76, 25, 88, 244, 83, 137, 67, 193, 69, 77, 163, 44, 33, 27, 205, 223, 94, 254, 18, 46, 25, 83, 65, 38, + 216, 102, 159, 27, 238, 209, 137, 79, 231, 169, 254, 88, 128, 255, 69, 43, 102, 200, 15, 191, 159, 27, 110, 131, + 154, 25, 7, 70, 51, 222, 255, 66, 108, 26, 159, 69, 240, 21, 81, 210, 206, 66, 100, 120, 27, 214, 82, 227, 192, + 149, 237, 188, 252, 27, 135, 1, 82, 193, 108, 218, 134, 168, 255, 76, 153, 235, 108, 87, 127, 109, 190, 203, 183, + 49, 193, 207, 69, 0, 173, 177, 89, 245, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 246, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19f4c986c6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6699978010750415581" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16374175067877881988" + } + }, + { + "_tag": "ByteArray", + "bytearray": "993c7761e2b7204b9e2655f1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7329353575910033613" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30b085bbd1e3af5b8c" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66a3e2de91cc6d3160e33c90" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d5c4ba52718e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6edd92b2a75cae4653f14524" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13217214881309348854" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b578" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8660169747565022053" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18057160469346990711" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5327c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d66a77fe4c4d20" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1386826403708146370" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12155243246411685310" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11389886513574878332" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef46099b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17404970448910996730" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3236771256430001176" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2713396841833728661" + } + }, + { + "_tag": "ByteArray", + "bytearray": "88ed25a4865a02f77f" + }, + { + "_tag": "ByteArray", + "bytearray": "0139" + } + ] + } + } + ] + }, + "cborHex": "bf4519f4c986c6d8669f1b5cfb1a80b5b4f2dd9f1be33cc1785aeb38844c993c7761e2b7204b9e2655f11b65b7183ea55b48cdffff4930b085bbd1e3af5b8c804c66a3e2de91cc6d3160e33c90471d5c4ba52718e24c6edd92b2a75cae4653f145249f1bb76cfae8207353f642b5781b782f1a807a328b651bfa97ebc6a3a73a7743f5327cff47d66a77fe4c4d20d8669f1b133eff44362812c29f1ba8b01954d4d59dbe1b9e11017019a49c7cffff44ef46099bd8669f1bf18ae0686582d4fa9f1b2ceb524efeb47c181b25a7ec0d2c2a8a954988ed25a4865a02f77f420139ffffff", + "cborBytes": [ + 191, 69, 25, 244, 201, 134, 198, 216, 102, 159, 27, 92, 251, 26, 128, 181, 180, 242, 221, 159, 27, 227, 60, 193, + 120, 90, 235, 56, 132, 76, 153, 60, 119, 97, 226, 183, 32, 75, 158, 38, 85, 241, 27, 101, 183, 24, 62, 165, 91, + 72, 205, 255, 255, 73, 48, 176, 133, 187, 209, 227, 175, 91, 140, 128, 76, 102, 163, 226, 222, 145, 204, 109, 49, + 96, 227, 60, 144, 71, 29, 92, 75, 165, 39, 24, 226, 76, 110, 221, 146, 178, 167, 92, 174, 70, 83, 241, 69, 36, + 159, 27, 183, 108, 250, 232, 32, 115, 83, 246, 66, 181, 120, 27, 120, 47, 26, 128, 122, 50, 139, 101, 27, 250, + 151, 235, 198, 163, 167, 58, 119, 67, 245, 50, 124, 255, 71, 214, 106, 119, 254, 76, 77, 32, 216, 102, 159, 27, + 19, 62, 255, 68, 54, 40, 18, 194, 159, 27, 168, 176, 25, 84, 212, 213, 157, 190, 27, 158, 17, 1, 112, 25, 164, + 156, 124, 255, 255, 68, 239, 70, 9, 155, 216, 102, 159, 27, 241, 138, 224, 104, 101, 130, 212, 250, 159, 27, 44, + 235, 82, 78, 254, 180, 124, 24, 27, 37, 167, 236, 13, 44, 42, 138, 149, 73, 136, 237, 37, 164, 134, 90, 2, 247, + 127, 66, 1, 57, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 247, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cfc0603" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc107c4c6af873" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71f5ff00ff0403f216" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34b03266b02703cf40c657" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17471919417503905030" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7207659298597570693" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf09bf441cfc060347dc107c4c6af8734971f5ff00ff0403f2164b34b03266b02703cf40c657ff1bf278ba23d891f506d8669f1b6406bff1baf3088580ffff", + "cborBytes": [ + 191, 9, 191, 68, 28, 252, 6, 3, 71, 220, 16, 124, 76, 106, 248, 115, 73, 113, 245, 255, 0, 255, 4, 3, 242, 22, 75, + 52, 176, 50, 102, 176, 39, 3, 207, 64, 198, 87, 255, 27, 242, 120, 186, 35, 216, 145, 245, 6, 216, 102, 159, 27, + 100, 6, 191, 241, 186, 243, 8, 133, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 248, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24c3e9953814e832b238" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14479089829162025004" + } + } + ] + } + } + ] + }, + "cborHex": "bf109f0dff4a24c3e9953814e832b238d905049f1bc8f00f7c722c802cffff", + "cborBytes": [ + 191, 16, 159, 13, 255, 74, 36, 195, 233, 149, 56, 20, 232, 50, 178, 56, 217, 5, 4, 159, 27, 200, 240, 15, 124, + 114, 44, 128, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 249, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b48957dcc0d952" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3762268f5316c5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "17" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7478120543415483855" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0347" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d040b05fa5ffb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05fd" + } + ] + } + } + ] + }, + "cborHex": "bf091bfffffffffffffff51447b48957dcc0d952473762268f5316c5d905079f41171b67c79f0371d4bdcf420347ff474d040b05fa5ffb9f4205fdffff", + "cborBytes": [ + 191, 9, 27, 255, 255, 255, 255, 255, 255, 255, 245, 20, 71, 180, 137, 87, 220, 192, 217, 82, 71, 55, 98, 38, 143, + 83, 22, 197, 217, 5, 7, 159, 65, 23, 27, 103, 199, 159, 3, 113, 212, 189, 207, 66, 3, 71, 255, 71, 77, 4, 11, 5, + 250, 95, 251, 159, 66, 5, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 250, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "679790648065283988" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d27586ff072df67d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2016807406134402986" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad96fa28e03f3cfc0cf55c53" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "23488f3b6d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14138955825373296617" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1844555285083978771" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "55c4a1858a8bc26b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60e418" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "430b30f2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10150281083416385901" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afa2787acd8df7bd84477d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3267939354659572908" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0f141b096f19fe23905794bf0448d27586ff072df67d1b1bfd23a67f049faa4cad96fa28e03f3cfc0cf55c534523488f3b6d1bc437a9696a50b7e94258c607ff1b19992d4247fffc13bf4855c4a1858a8bc26b4360e418ff44430b30f2bf1b8cdd0addeb66996d1bfffffffffffffffc4bafa2787acd8df7bd84477d1b2d5a0d875e00ccacffff", + "cborBytes": [ + 191, 15, 20, 27, 9, 111, 25, 254, 35, 144, 87, 148, 191, 4, 72, 210, 117, 134, 255, 7, 45, 246, 125, 27, 27, 253, + 35, 166, 127, 4, 159, 170, 76, 173, 150, 250, 40, 224, 63, 60, 252, 12, 245, 92, 83, 69, 35, 72, 143, 59, 109, 27, + 196, 55, 169, 105, 106, 80, 183, 233, 66, 88, 198, 7, 255, 27, 25, 153, 45, 66, 71, 255, 252, 19, 191, 72, 85, + 196, 161, 133, 138, 139, 194, 107, 67, 96, 228, 24, 255, 68, 67, 11, 48, 242, 191, 27, 140, 221, 10, 221, 235, + 102, 153, 109, 27, 255, 255, 255, 255, 255, 255, 255, 252, 75, 175, 162, 120, 122, 205, 141, 247, 189, 132, 71, + 125, 27, 45, 90, 13, 135, 94, 0, 204, 172, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 251, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c9e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "edb04d59fe3c31" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b89f880fb82dc5ac8e4d02e0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1351918956548454239" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13352573125359793637" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b70af0158ae1efca5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4378161142284980744" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cab486449ee748" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8c7c344c61cc434c6bf8b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6574eafe62440a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6287621855973126365" + } + } + ] + } + } + ] + }, + "cborHex": "bf426c9e47edb04d59fe3c314cb89f880fb82dc5ac8e4d02e0d905069f1b12c2fb20d22ff75f1bb94dde83367f75e5492b70af0158ae1efca51b3cc25a5cc750920847cab486449ee748ff4bf8c7c344c61cc434c6bf8bd905039f476574eafe62440a1b57421ec3c742b0ddffff", + "cborBytes": [ + 191, 66, 108, 158, 71, 237, 176, 77, 89, 254, 60, 49, 76, 184, 159, 136, 15, 184, 45, 197, 172, 142, 77, 2, 224, + 217, 5, 6, 159, 27, 18, 194, 251, 32, 210, 47, 247, 95, 27, 185, 77, 222, 131, 54, 127, 117, 229, 73, 43, 112, + 175, 1, 88, 174, 30, 252, 165, 27, 60, 194, 90, 92, 199, 80, 146, 8, 71, 202, 180, 134, 68, 158, 231, 72, 255, 75, + 248, 199, 195, 68, 198, 28, 196, 52, 198, 191, 139, 217, 5, 3, 159, 71, 101, 116, 234, 254, 98, 68, 10, 27, 87, + 66, 30, 195, 199, 66, 176, 221, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 252, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1793920816383461478" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8609629692578323680" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2549738905401748676" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11121664495634245234" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7dd6d0b" + }, + { + "_tag": "ByteArray", + "bytearray": "3d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16444371860110999689" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8555934626903868952" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2a6e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7119231225919623054" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff48e0e22cdc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2aa91d10" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b18e5497a57b708661b777b8c96f1c95ce01b23627e067e76ecc49f1b9a5816ef055a667244d7dd6d0b413d1be4362514ac588089ff1b76bcc9363e11c618bf43a2a6e21b62cc9714a6cecf8e46ff48e0e22cdc442aa91d10ffff", + "cborBytes": [ + 191, 27, 24, 229, 73, 122, 87, 183, 8, 102, 27, 119, 123, 140, 150, 241, 201, 92, 224, 27, 35, 98, 126, 6, 126, + 118, 236, 196, 159, 27, 154, 88, 22, 239, 5, 90, 102, 114, 68, 215, 221, 109, 11, 65, 61, 27, 228, 54, 37, 20, + 172, 88, 128, 137, 255, 27, 118, 188, 201, 54, 62, 17, 198, 24, 191, 67, 162, 166, 226, 27, 98, 204, 151, 20, 166, + 206, 207, 142, 70, 255, 72, 224, 226, 44, 220, 68, 42, 169, 29, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 253, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "29e2362b4500" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3917951666092278854" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cbb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12151030501292232211" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9af6fbbe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3055265326493743030" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d0bd44197cac5e1a3f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10672746012626506831" + } + } + ] + } + } + ] + }, + "cborHex": "bf4629e2362b45001b365f5c4838948446423cbbd8669f1ba8a121dcac75ce139f449af6fbbe1b2a667ba0803a37b649d0bd44197cac5e1a3f1b941d35f3ac91d44fffffff", + "cborBytes": [ + 191, 70, 41, 226, 54, 43, 69, 0, 27, 54, 95, 92, 72, 56, 148, 132, 70, 66, 60, 187, 216, 102, 159, 27, 168, 161, + 33, 220, 172, 117, 206, 19, 159, 68, 154, 246, 251, 190, 27, 42, 102, 123, 160, 128, 58, 55, 182, 73, 208, 189, + 68, 25, 124, 172, 94, 26, 63, 27, 148, 29, 53, 243, 172, 145, 212, 79, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 254, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cdec9624a5dfc47c8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "747d50" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18261231790834522485" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d547586743d459fff448d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "607021847984349304" + } + }, + { + "_tag": "ByteArray", + "bytearray": "35a25f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b729d895a0c5030355923fc" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11720180700138746467" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c4a90940d5154060bafa882" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3349d0ac6f84a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd9c2c76321e394aff8936b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a20" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "498477271968962311" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13458936821573027324" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6289718858196599757" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2edf9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "801ec9190688" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70ba5940aea543" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2413689395784728798" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9249868929887646269" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5213027031653375920" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22cb5e12" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6581081162856903349" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7673318949920430943" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13875270205663359366" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cf6c1ff8d585464453a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17543524105350930434" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d14309d1c4a8f" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce2f55" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9140822810006328225" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "408940741822430768" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10685841398403484807" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4056966094620886276" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1d4dcbfa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13322650759620745458" + } + } + ] + } + } + ] + }, + "cborHex": "bf490cdec9624a5dfc47c89f43747d501bfd6ced8fc5c319754b5d547586743d459fff448d1b086c9327940220784335a25fff4c3b729d895a0c5030355923fcd8669f1ba2a672402728b26380ff4c5c4a90940d5154060bafa882bf473349d0ac6f84a94cfd9c2c76321e394aff8936b5428a201b06eaf2701450d70742a6c61bbac7bfbb104905fc41bf1b574991fa27e243cd43c2edf946801ec9190688ff4770ba5940aea543bf1b217f25b799e040de1b805e22c8a8e0323d1b485864772a355fb04422cb5e121b5b54b2731619b2b51b6a7d1aee1247db5f1bc08edcbcdb2031864a9cf6c1ff8d585464453a1bf3771e3967f1e002470d14309d1c4a8fff43ce2f55d8669f1b7edab9ea613713a19f1b05acd9702282be301b944bbc22c600cc871b384d3d2b17ae8504441d4dcbfa1bb8e3904789c858f2ffffff", + "cborBytes": [ + 191, 73, 12, 222, 201, 98, 74, 93, 252, 71, 200, 159, 67, 116, 125, 80, 27, 253, 108, 237, 143, 197, 195, 25, 117, + 75, 93, 84, 117, 134, 116, 61, 69, 159, 255, 68, 141, 27, 8, 108, 147, 39, 148, 2, 32, 120, 67, 53, 162, 95, 255, + 76, 59, 114, 157, 137, 90, 12, 80, 48, 53, 89, 35, 252, 216, 102, 159, 27, 162, 166, 114, 64, 39, 40, 178, 99, + 128, 255, 76, 92, 74, 144, 148, 13, 81, 84, 6, 11, 175, 168, 130, 191, 71, 51, 73, 208, 172, 111, 132, 169, 76, + 253, 156, 44, 118, 50, 30, 57, 74, 255, 137, 54, 181, 66, 138, 32, 27, 6, 234, 242, 112, 20, 80, 215, 7, 66, 166, + 198, 27, 186, 199, 191, 187, 16, 73, 5, 252, 65, 191, 27, 87, 73, 145, 250, 39, 226, 67, 205, 67, 194, 237, 249, + 70, 128, 30, 201, 25, 6, 136, 255, 71, 112, 186, 89, 64, 174, 165, 67, 191, 27, 33, 127, 37, 183, 153, 224, 64, + 222, 27, 128, 94, 34, 200, 168, 224, 50, 61, 27, 72, 88, 100, 119, 42, 53, 95, 176, 68, 34, 203, 94, 18, 27, 91, + 84, 178, 115, 22, 25, 178, 181, 27, 106, 125, 26, 238, 18, 71, 219, 95, 27, 192, 142, 220, 188, 219, 32, 49, 134, + 74, 156, 246, 193, 255, 141, 88, 84, 100, 69, 58, 27, 243, 119, 30, 57, 103, 241, 224, 2, 71, 13, 20, 48, 157, 28, + 74, 143, 255, 67, 206, 47, 85, 216, 102, 159, 27, 126, 218, 185, 234, 97, 55, 19, 161, 159, 27, 5, 172, 217, 112, + 34, 130, 190, 48, 27, 148, 75, 188, 34, 198, 0, 204, 135, 27, 56, 77, 61, 43, 23, 174, 133, 4, 68, 29, 77, 203, + 250, 27, 184, 227, 144, 71, 137, 200, 88, 242, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 255, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "315de78a0a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5126542534086199907" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7cb331e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b294c79a9b678e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffa2a429307dce9ae48888" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96ea7fda040eb3c2a1b467" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c416f801" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1a4e8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16034106843322621695" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "221d229135" + } + ] + } + } + ] + }, + "cborHex": "bf45315de78a0abf1b47252345ee238a6344e7cb331e47b294c79a9b678e4bffa2a429307dce9ae48888ff4b96ea7fda040eb3c2a1b46744c416f80143e1a4e8d8669f1bde849738bee79eff9f45221d229135ffffff", + "cborBytes": [ + 191, 69, 49, 93, 231, 138, 10, 191, 27, 71, 37, 35, 69, 238, 35, 138, 99, 68, 231, 203, 51, 30, 71, 178, 148, 199, + 154, 155, 103, 142, 75, 255, 162, 164, 41, 48, 125, 206, 154, 228, 136, 136, 255, 75, 150, 234, 127, 218, 4, 14, + 179, 194, 161, 180, 103, 68, 196, 22, 248, 1, 67, 225, 164, 232, 216, 102, 159, 27, 222, 132, 151, 56, 190, 231, + 158, 255, 159, 69, 34, 29, 34, 145, 53, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 256, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2269338588423078116" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3360927327114608578" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16512496259260813263" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7353202415696342601" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15686774721914813257" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1b" + }, + { + "_tag": "ByteArray", + "bytearray": "488c636e74735b8c22" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3522430579148506245" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7ebf03ca38967b45310c8fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5333180162925909126" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16583736858347872311" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14647006889971005169" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16906077579827147059" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f96c72338e4ca0cb6473" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8143517028250335885" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17512674628898718821" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3882f7cd8e01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16923877113239097167" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6447b5ba184c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f70e86e1c58" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c53ce4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3884c3e3747063d398c23579" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18310159189618670114" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7949419987368622282" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1f7e4f6c360b40e4d8669f1b2ea46998d891bfc29f1be5282bdc60350fcf1b660bd2a35d1fee491bd9b29e7f5b4f3b49411b49488c636e74735b8c22ffff1b30e22ff2f81ec4854cc7ebf03ca38967b45310c8fa1b4a03431a0e5bd486bf1be62544ceea60a0371bcb449f29cb6bb6f11bea9e73fc92caf1334af96c72338e4ca0cb6473ff1b710395974b34ba8da01bf30984c9f2810465bf463882f7cd8e011beaddb09164facf4f466447b5ba184c469f70e86e1c5843c53ce44c3884c3e3747063d398c23579ff1bfe1ac0c586133a229f1b6e52035c557f38caffff", + "cborBytes": [ + 191, 27, 31, 126, 79, 108, 54, 11, 64, 228, 216, 102, 159, 27, 46, 164, 105, 152, 216, 145, 191, 194, 159, 27, + 229, 40, 43, 220, 96, 53, 15, 207, 27, 102, 11, 210, 163, 93, 31, 238, 73, 27, 217, 178, 158, 127, 91, 79, 59, 73, + 65, 27, 73, 72, 140, 99, 110, 116, 115, 91, 140, 34, 255, 255, 27, 48, 226, 47, 242, 248, 30, 196, 133, 76, 199, + 235, 240, 60, 163, 137, 103, 180, 83, 16, 200, 250, 27, 74, 3, 67, 26, 14, 91, 212, 134, 191, 27, 230, 37, 68, + 206, 234, 96, 160, 55, 27, 203, 68, 159, 41, 203, 107, 182, 241, 27, 234, 158, 115, 252, 146, 202, 241, 51, 74, + 249, 108, 114, 51, 142, 76, 160, 203, 100, 115, 255, 27, 113, 3, 149, 151, 75, 52, 186, 141, 160, 27, 243, 9, 132, + 201, 242, 129, 4, 101, 191, 70, 56, 130, 247, 205, 142, 1, 27, 234, 221, 176, 145, 100, 250, 207, 79, 70, 100, 71, + 181, 186, 24, 76, 70, 159, 112, 232, 110, 28, 88, 67, 197, 60, 228, 76, 56, 132, 195, 227, 116, 112, 99, 211, 152, + 194, 53, 121, 255, 27, 254, 26, 192, 197, 134, 19, 58, 34, 159, 27, 110, 82, 3, 92, 85, 127, 56, 202, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 257, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03e8af9a182f9cd729" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0c5a20d005" + }, + { + "_tag": "ByteArray", + "bytearray": "4bf2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3561994778443935798" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16221129072878558833" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40b5ab7a29465dbb58f54e8c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a84081b1a69fdb070bfc4a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1418659265716746643" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2193f1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1178630848087823514" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7f4215bdbfae7660027" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17119133234031362759" + } + } + } + ] + }, + "cborHex": "bf4903e8af9a182f9cd7299f450c5a20d005424bf21b316ebf60f4f270361be11d06f2d4b01e71ff4c40b5ab7a29465dbb58f54e8c4ba84081b1a69fdb070bfc4a4247c71b13b01715f65cf99344d2193f1e1b105b5682fd97949a4af7f4215bdbfae76600271bed9360f9ad0602c7ff", + "cborBytes": [ + 191, 73, 3, 232, 175, 154, 24, 47, 156, 215, 41, 159, 69, 12, 90, 32, 208, 5, 66, 75, 242, 27, 49, 110, 191, 96, + 244, 242, 112, 54, 27, 225, 29, 6, 242, 212, 176, 30, 113, 255, 76, 64, 181, 171, 122, 41, 70, 93, 187, 88, 245, + 78, 140, 75, 168, 64, 129, 177, 166, 159, 219, 7, 11, 252, 74, 66, 71, 199, 27, 19, 176, 23, 21, 246, 92, 249, + 147, 68, 210, 25, 63, 30, 27, 16, 91, 86, 130, 253, 151, 148, 154, 74, 247, 244, 33, 91, 219, 250, 231, 102, 0, + 39, 27, 237, 147, 96, 249, 173, 6, 2, 199, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 258, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07785483" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17410920254667053349" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8740" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + } + ] + }, + "cborHex": "bf44077854831bf1a003b9801559254287400dff", + "cborBytes": [191, 68, 7, 120, 84, 131, 27, 241, 160, 3, 185, 128, 21, 89, 37, 66, 135, 64, 13, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 259, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1935026648744789426" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13168279041066044425" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8714665379776793700" + } + }, + { + "_tag": "ByteArray", + "bytearray": "db97680c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16530026049855886714" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2473854042472259615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2609484656043322402" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64ea5aa52ac3ebb9fa0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf19df89" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "737e3a72dd079d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1493906130346053400" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eb" + }, + { + "_tag": "ByteArray", + "bytearray": "f219ab45" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3472142124213970710" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1ada987c1d5905b2d8669f1bb6bf2004f1f68c099f1b78f0b5fd99fd8c6444db97680c1be566731ccd9d157affff1b2254e52503b9201f1b2436c078124b6c224a64ea5aa52ac3ebb9fa0f44cf19df8947737e3a72dd079dd8669f1b14bb6bb5e30e0f189f41eb44f219ab451b302f86dda371a716ffffff", + "cborBytes": [ + 191, 27, 26, 218, 152, 124, 29, 89, 5, 178, 216, 102, 159, 27, 182, 191, 32, 4, 241, 246, 140, 9, 159, 27, 120, + 240, 181, 253, 153, 253, 140, 100, 68, 219, 151, 104, 12, 27, 229, 102, 115, 28, 205, 157, 21, 122, 255, 255, 27, + 34, 84, 229, 37, 3, 185, 32, 31, 27, 36, 54, 192, 120, 18, 75, 108, 34, 74, 100, 234, 90, 165, 42, 195, 235, 185, + 250, 15, 68, 207, 25, 223, 137, 71, 115, 126, 58, 114, 221, 7, 157, 216, 102, 159, 27, 20, 187, 107, 181, 227, 14, + 15, 24, 159, 65, 235, 68, 242, 25, 171, 69, 27, 48, 47, 134, 221, 163, 113, 167, 22, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 260, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d177e53819eb84174ae98" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16252032376160849372" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ece96d" + }, + { + "_tag": "ByteArray", + "bytearray": "0e15b0d04765d78d4c1d9818" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13100776018701281163" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7047e19adb2735b9" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39de2bfebd1e1bdd1e5b8766" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "431562233622850124" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7363320213981258669" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7900174116842773035" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2345779904973981117" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0259f5a012" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34b05a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4193980b34c7229232e12536" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b5bfa6f13deac9a70165b" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f9cd3df852134c63430df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4db0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "681add1fd253" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22091a0147d8f36c0866e7d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd001639903ac4f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12358931117984358864" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eeaecb656315c4dded7909" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "39" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2306187554208616881" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a207b9344de2071e3e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1586460213347305137" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4b2d177e53819eb84174ae98d8669f1be18ad156d3370ddc9f43ece96d4c0e15b0d04765d78d4c1d98181bb5cf4e60cca5678b487047e19adb2735b9ffff4c39de2bfebd1e1bdd1e5b8766bf1b05fd3790a1906a4c1b662fc4b8d9ce63ad1b6da30e809a261a2b1b208de265253945bd450259f5a0124334b05a4c4193980b34c7229232e125364b8b5bfa6f13deac9a70165bff4b5f9cd3df852134c63430df424db046681add1fd2534c22091a0147d8f36c0866e7d148dd001639903ac4f81bab83be5f12faa1d04beeaecb656315c4dded7909bf41391b2001395ca20811b149a207b9344de2071e3e1b16043d289adb46b1ffff", + "cborBytes": [ + 191, 75, 45, 23, 126, 83, 129, 158, 184, 65, 116, 174, 152, 216, 102, 159, 27, 225, 138, 209, 86, 211, 55, 13, + 220, 159, 67, 236, 233, 109, 76, 14, 21, 176, 208, 71, 101, 215, 141, 76, 29, 152, 24, 27, 181, 207, 78, 96, 204, + 165, 103, 139, 72, 112, 71, 225, 154, 219, 39, 53, 185, 255, 255, 76, 57, 222, 43, 254, 189, 30, 27, 221, 30, 91, + 135, 102, 191, 27, 5, 253, 55, 144, 161, 144, 106, 76, 27, 102, 47, 196, 184, 217, 206, 99, 173, 27, 109, 163, 14, + 128, 154, 38, 26, 43, 27, 32, 141, 226, 101, 37, 57, 69, 189, 69, 2, 89, 245, 160, 18, 67, 52, 176, 90, 76, 65, + 147, 152, 11, 52, 199, 34, 146, 50, 225, 37, 54, 75, 139, 91, 250, 111, 19, 222, 172, 154, 112, 22, 91, 255, 75, + 95, 156, 211, 223, 133, 33, 52, 198, 52, 48, 223, 66, 77, 176, 70, 104, 26, 221, 31, 210, 83, 76, 34, 9, 26, 1, + 71, 216, 243, 108, 8, 102, 231, 209, 72, 221, 0, 22, 57, 144, 58, 196, 248, 27, 171, 131, 190, 95, 18, 250, 161, + 208, 75, 238, 174, 203, 101, 99, 21, 196, 221, 237, 121, 9, 191, 65, 57, 27, 32, 1, 57, 92, 162, 8, 17, 177, 73, + 162, 7, 185, 52, 77, 226, 7, 30, 62, 27, 22, 4, 61, 40, 154, 219, 70, 177, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 261, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "39c6bd2db63c2ac2d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3aa82bea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6000b932" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12749406692069780125" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfd17a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17835615078093637318" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7739784489892650561" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0fd87f801bfffffffffffffffabf4939c6bd2db63c2ac2d2443aa82bea446000b9321bb0eefdd651ceaa9d43bfd17a1bf784d56a985f46c642e4fc1b6b693cfc86211e41ffff", + "cborBytes": [ + 191, 15, 216, 127, 128, 27, 255, 255, 255, 255, 255, 255, 255, 250, 191, 73, 57, 198, 189, 45, 182, 60, 42, 194, + 210, 68, 58, 168, 43, 234, 68, 96, 0, 185, 50, 27, 176, 238, 253, 214, 81, 206, 170, 157, 67, 191, 209, 122, 27, + 247, 132, 213, 106, 152, 95, 70, 198, 66, 228, 252, 27, 107, 105, 60, 252, 134, 33, 30, 65, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 262, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3989853436158117916" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b8e004e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4085585946530352205" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11593662581651029743" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4385363037774372951" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "465856e655b85b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14497684410348422288" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4744370131816415307" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4e2c0dd10" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15234428370745756942" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16636799863541388960" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13867031823078218626" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e750a622feb18fa813072" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b375ece8fa013881c445b8e004e1b38b2eac5a2450c4d1ba0e4f6b1310c3eef1b3cdbf072bdab605747465856e655b85b1bc9321f28c0894490bf1b41d7637f85e4004b45a4e2c0dd10ff1bd36b8fe3426f0d0ea01be6e1c95491a6d6a0bf1bc07197f8ef9d5b824b7e750a622feb18fa813072ffff", + "cborBytes": [ + 191, 27, 55, 94, 206, 143, 160, 19, 136, 28, 68, 91, 142, 0, 78, 27, 56, 178, 234, 197, 162, 69, 12, 77, 27, 160, + 228, 246, 177, 49, 12, 62, 239, 27, 60, 219, 240, 114, 189, 171, 96, 87, 71, 70, 88, 86, 230, 85, 184, 91, 27, + 201, 50, 31, 40, 192, 137, 68, 144, 191, 27, 65, 215, 99, 127, 133, 228, 0, 75, 69, 164, 226, 192, 221, 16, 255, + 27, 211, 107, 143, 227, 66, 111, 13, 14, 160, 27, 230, 225, 201, 84, 145, 166, 214, 160, 191, 27, 192, 113, 151, + 248, 239, 157, 91, 130, 75, 126, 117, 10, 98, 47, 235, 24, 250, 129, 48, 114, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 263, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "025cf9307252fe45" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14941801686264857550" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a8c9c526f7a56758" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12277564933798723527" + } + }, + { + "_tag": "ByteArray", + "bytearray": "159028e79ffa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12500092588261244830" + } + } + ] + } + } + ] + }, + "cborHex": "bf48025cf9307252fe45d8669f1bcf5bf177f62643ce9f48a8c9c526f7a567581baa62ac4209dd7fc746159028e79ffa1bad793ffb0ecdff9effffff", + "cborBytes": [ + 191, 72, 2, 92, 249, 48, 114, 82, 254, 69, 216, 102, 159, 27, 207, 91, 241, 119, 246, 38, 67, 206, 159, 72, 168, + 201, 197, 38, 247, 165, 103, 88, 27, 170, 98, 172, 66, 9, 221, 127, 199, 70, 21, 144, 40, 231, 159, 250, 27, 173, + 121, 63, 251, 14, 205, 255, 158, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 264, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c904492" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15467904175163916350" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30b94aac5173fe" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd03d72fd8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74d7b0ef06" + } + } + ] + }, + "cborHex": "bf442c904492bf1bd6a908e5146d403e4730b94aac5173feff45dd03d72fd84574d7b0ef06ff", + "cborBytes": [ + 191, 68, 44, 144, 68, 146, 191, 27, 214, 169, 8, 229, 20, 109, 64, 62, 71, 48, 185, 74, 172, 81, 115, 254, 255, + 69, 221, 3, 215, 47, 216, 69, 116, 215, 176, 239, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 265, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1145823759320406612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7257741865763058431" + } + } + } + ] + }, + "cborHex": "bf1b0fe6c8a3657eda541b64b8adc61449b2ffff", + "cborBytes": [191, 27, 15, 230, 200, 163, 101, 126, 218, 84, 27, 100, 184, 173, 198, 20, 73, 178, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 266, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11285192959161655355" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16567734203693282145" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3dbd59514852a030de" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1410739214759268868" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3131549337565437408" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15758459373869434442" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11084922011404762396" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f56b2f0d6b26a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "796d42fe6c5e2a5c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5cc6542f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b3d7479b4d32d681f3203ff" + } + } + ] + }, + "cborHex": "bf1b9c9d0f347091e03b1be5ec6a7a883a3361493dbd59514852a030debf1b1393f3d7667092041b2b757f87e6329de01bdab14b4f02e9864a1b99d58dd6c4b07d1cff474f56b2f0d6b26a48796d42fe6c5e2a5c445cc6542f4c9b3d7479b4d32d681f3203ffff", + "cborBytes": [ + 191, 27, 156, 157, 15, 52, 112, 145, 224, 59, 27, 229, 236, 106, 122, 136, 58, 51, 97, 73, 61, 189, 89, 81, 72, + 82, 160, 48, 222, 191, 27, 19, 147, 243, 215, 102, 112, 146, 4, 27, 43, 117, 127, 135, 230, 50, 157, 224, 27, 218, + 177, 75, 79, 2, 233, 134, 74, 27, 153, 213, 141, 214, 196, 176, 125, 28, 255, 71, 79, 86, 178, 240, 214, 178, 106, + 72, 121, 109, 66, 254, 108, 94, 42, 92, 68, 92, 198, 84, 47, 76, 155, 61, 116, 121, 180, 211, 45, 104, 31, 50, 3, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 267, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4965381033551244562" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "760826138285069131" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51e6e52d4f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3217098634258525908" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15322853025913542655" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8595822342564350728" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10901003592695364445" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16443955607624511265" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a3301c51ed8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17347418895360748665" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27d0d696569229c8f0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18326785451263634215" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9864547993658766352" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8010789181037800386" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11508226008891600253" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3143379380816078353" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8654752642663574279" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10514490341227485193" + } + } + } + ] + }, + "cborHex": "bf1b44e893be0748ad12bf1b0a8eff577c50534b4551e6e52d4f1b2ca56e29b65faed41bd4a5b5a4a31897ff1b774a7ee0c0ea0b081b97482502f5dd3b5d1be434aa8056c06f21468a3301c51ed81bf0be699323e06c794927d0d696569229c8f01bfe55d244b95dab271b88e5ea22b7d2b410ff1b6f2c0a51324cebc29f1b9fb56e94f6e52d7d1b2b9f86e47bd46611ff1b781bdbac74d5eb071b91eaf941d723d809ff", + "cborBytes": [ + 191, 27, 68, 232, 147, 190, 7, 72, 173, 18, 191, 27, 10, 142, 255, 87, 124, 80, 83, 75, 69, 81, 230, 229, 45, 79, + 27, 44, 165, 110, 41, 182, 95, 174, 212, 27, 212, 165, 181, 164, 163, 24, 151, 255, 27, 119, 74, 126, 224, 192, + 234, 11, 8, 27, 151, 72, 37, 2, 245, 221, 59, 93, 27, 228, 52, 170, 128, 86, 192, 111, 33, 70, 138, 51, 1, 197, + 30, 216, 27, 240, 190, 105, 147, 35, 224, 108, 121, 73, 39, 208, 214, 150, 86, 146, 41, 200, 240, 27, 254, 85, + 210, 68, 185, 93, 171, 39, 27, 136, 229, 234, 34, 183, 210, 180, 16, 255, 27, 111, 44, 10, 81, 50, 76, 235, 194, + 159, 27, 159, 181, 110, 148, 246, 229, 45, 125, 27, 43, 159, 134, 228, 123, 212, 102, 17, 255, 27, 120, 27, 219, + 172, 116, 213, 235, 7, 27, 145, 234, 249, 65, 215, 35, 216, 9, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 268, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1600372760074557715" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2da" + } + } + ] + }, + "cborHex": "bf1b1635aa8bd074991342c2daff", + "cborBytes": [191, 27, 22, 53, 170, 139, 208, 116, 153, 19, 66, 194, 218, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 269, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "97" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4b92cea6aaed3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15996716357705868352" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4e6ca42407ef07ab" + }, + { + "_tag": "ByteArray", + "bytearray": "dab3a8" + }, + { + "_tag": "ByteArray", + "bytearray": "2d2cc6186dc7d4cb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18421061928322509449" + } + }, + { + "_tag": "ByteArray", + "bytearray": "24e71ed4dfbf944e51487d0e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b212969fed4bf50d2720" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "667fb21ca627c58ec75105d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bad1085dd8400eeae5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8531088224761807578" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebfe6eeb1582608ad6ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6322453421290643839" + } + } + } + ] + }, + "cborHex": "bf4197a047a4b92cea6aaed3d8669f1bddffc0c5e9bd24409f484e6ca42407ef07ab43dab3a8482d2cc6186dc7d4cb1bffa4c2398f22aa894c24e71ed4dfbf944e51487d0effff4ab212969fed4bf50d27204c667fb21ca627c58ec75105d149bad1085dd8400eeae59f1b7664838a707202daff4aebfe6eeb1582608ad6ba1b57bddde38cfb617fff", + "cborBytes": [ + 191, 65, 151, 160, 71, 164, 185, 44, 234, 106, 174, 211, 216, 102, 159, 27, 221, 255, 192, 197, 233, 189, 36, 64, + 159, 72, 78, 108, 164, 36, 7, 239, 7, 171, 67, 218, 179, 168, 72, 45, 44, 198, 24, 109, 199, 212, 203, 27, 255, + 164, 194, 57, 143, 34, 170, 137, 76, 36, 231, 30, 212, 223, 191, 148, 78, 81, 72, 125, 14, 255, 255, 74, 178, 18, + 150, 159, 237, 75, 245, 13, 39, 32, 76, 102, 127, 178, 28, 166, 39, 197, 142, 199, 81, 5, 209, 73, 186, 209, 8, + 93, 216, 64, 14, 234, 229, 159, 27, 118, 100, 131, 138, 112, 114, 2, 218, 255, 74, 235, 254, 110, 235, 21, 130, + 96, 138, 214, 186, 27, 87, 189, 221, 227, 140, 251, 97, 127, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 270, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ffc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66f13e3eea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a36415e77aac" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc2d5396d299119fd5d2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15842492669489254366" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17222747091189032186" + } + }, + { + "_tag": "ByteArray", + "bytearray": "22a0c4142210024692" + }, + { + "_tag": "ByteArray", + "bytearray": "b5409af9ccb9a40044cfca3a" + }, + { + "_tag": "ByteArray", + "bytearray": "ba7550bbafb9eb0585dd9e81" + }, + { + "_tag": "ByteArray", + "bytearray": "f99557bbf9d9869995111750" + } + ] + } + } + ] + }, + "cborHex": "bf428ffc4566f13e3eea46a36415e77aaca04abc2d5396d299119fd5d2d8669f1bdbdbd72551a30fde9f1bef037d3abab6e4fa4922a0c41422100246924cb5409af9ccb9a40044cfca3a4cba7550bbafb9eb0585dd9e814cf99557bbf9d9869995111750ffffff", + "cborBytes": [ + 191, 66, 143, 252, 69, 102, 241, 62, 62, 234, 70, 163, 100, 21, 231, 122, 172, 160, 74, 188, 45, 83, 150, 210, + 153, 17, 159, 213, 210, 216, 102, 159, 27, 219, 219, 215, 37, 81, 163, 15, 222, 159, 27, 239, 3, 125, 58, 186, + 182, 228, 250, 73, 34, 160, 196, 20, 34, 16, 2, 70, 146, 76, 181, 64, 154, 249, 204, 185, 164, 0, 68, 207, 202, + 58, 76, 186, 117, 80, 187, 175, 185, 235, 5, 133, 221, 158, 129, 76, 249, 149, 87, 187, 249, 217, 134, 153, 149, + 17, 23, 80, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 271, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96f4851f3b3ce5" + } + } + ] + }, + "cborHex": "bf064796f4851f3b3ce5ff", + "cborBytes": [191, 6, 71, 150, 244, 133, 31, 59, 60, 229, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 272, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06fff9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fcabac40ea6b0b549b5e33b2" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "070201fd9f2ed80c" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13403232062777896173" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "920a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9520407756832020355" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8da7edcceb9d3778ef7f60c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2963718802516284808" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4317450779603100528" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10667707870185373240" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5984371137954596180" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13183629423564002544" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13516176173380695628" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16431250538568057790" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3723247225937938907" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4306fff99f4cfcabac40ea6b0b549b5e33b2ff48070201fd9f2ed80ca04148d8669f1bba01d88c3800aced9f42920affff41bfd8669f1b841f4869ded897839f12ffff4cc8da7edcceb9d3778ef7f60cbf1b29213e8c662115881b3beaaa9bf579e3701b940b4fc9ba09be381b530cc1d7e9e245541bb6f5a91c61eb94f01bbb931a9e2ff4764c1be407874eeecb83be1b33aba1a018fd49dbffff", + "cborBytes": [ + 191, 67, 6, 255, 249, 159, 76, 252, 171, 172, 64, 234, 107, 11, 84, 155, 94, 51, 178, 255, 72, 7, 2, 1, 253, 159, + 46, 216, 12, 160, 65, 72, 216, 102, 159, 27, 186, 1, 216, 140, 56, 0, 172, 237, 159, 66, 146, 10, 255, 255, 65, + 191, 216, 102, 159, 27, 132, 31, 72, 105, 222, 216, 151, 131, 159, 18, 255, 255, 76, 200, 218, 126, 220, 206, 185, + 211, 119, 142, 247, 246, 12, 191, 27, 41, 33, 62, 140, 102, 33, 21, 136, 27, 59, 234, 170, 155, 245, 121, 227, + 112, 27, 148, 11, 79, 201, 186, 9, 190, 56, 27, 83, 12, 193, 215, 233, 226, 69, 84, 27, 182, 245, 169, 28, 97, + 235, 148, 240, 27, 187, 147, 26, 158, 47, 244, 118, 76, 27, 228, 7, 135, 78, 238, 203, 131, 190, 27, 51, 171, 161, + 160, 24, 253, 73, 219, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 273, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16563351491879423122" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "074a72f65d9c73cc9bd28d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fe3636785" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3d3c9900c84684facc0f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b391740ea4819d67" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5027927368301060992" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "90f32adaf274" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6993351762848021469" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a87a71eaa30bc8621023ce" + } + ] + } + } + ] + }, + "cborHex": "bf1be5dcd86ceb68cc924b074a72f65d9c73cc9bd28d456fe36367854bf3d3c9900c84684facc0f248b391740ea4819d67d8669f1b45c6c94d680ca3809f4690f32adaf2741b610d60603de87bdd4ba87a71eaa30bc8621023ceffffff", + "cborBytes": [ + 191, 27, 229, 220, 216, 108, 235, 104, 204, 146, 75, 7, 74, 114, 246, 93, 156, 115, 204, 155, 210, 141, 69, 111, + 227, 99, 103, 133, 75, 243, 211, 201, 144, 12, 132, 104, 79, 172, 192, 242, 72, 179, 145, 116, 14, 164, 129, 157, + 103, 216, 102, 159, 27, 69, 198, 201, 77, 104, 12, 163, 128, 159, 70, 144, 243, 42, 218, 242, 116, 27, 97, 13, 96, + 96, 61, 232, 123, 221, 75, 168, 122, 113, 234, 163, 11, 200, 98, 16, 35, 206, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 274, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f46" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ab768e7c3f120ee505d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "941180839743102255" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b602" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2248a01fa02feabff63" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1111070099869120156" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf420f469f4aab768e7c3f120ee505d01b0d0fbefcb64a9d2f42b602ff4ae2248a01fa02feabff63d8669f1b0f6b505e7f41b69c80ffff", + "cborBytes": [ + 191, 66, 15, 70, 159, 74, 171, 118, 142, 124, 63, 18, 14, 229, 5, 208, 27, 13, 15, 190, 252, 182, 74, 157, 47, 66, + 182, 2, 255, 74, 226, 36, 138, 1, 250, 2, 254, 171, 255, 99, 216, 102, 159, 27, 15, 107, 80, 94, 127, 65, 182, + 156, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 275, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05902e" + } + } + ] + } + } + ] + }, + "cborHex": "bf12bf0c0b41ed4305902effff", + "cborBytes": [191, 18, 191, 12, 11, 65, 237, 67, 5, 144, 46, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 276, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17aff6c9891eb4901894d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + } + ] + }, + "cborHex": "bf4b17aff6c9891eb4901894d41bfffffffffffffff7ff", + "cborBytes": [ + 191, 75, 23, 175, 246, 201, 137, 30, 180, 144, 24, 148, 212, 27, 255, 255, 255, 255, 255, 255, 255, 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 277, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01f8fe7bfafb0600" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6843666534597759720" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6786e7c8c5f2" + }, + { + "_tag": "ByteArray", + "bytearray": "16faf8750505ffcdf94e" + }, + { + "_tag": "ByteArray", + "bytearray": "9b00e04444fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + } + } + ] + }, + "cborHex": "bf0b4801f8fe7bfafb06001b5ef9967433ed92e89f09466786e7c8c5f24a16faf8750505ffcdf94e469b00e04444fd0affff", + "cborBytes": [ + 191, 11, 72, 1, 248, 254, 123, 250, 251, 6, 0, 27, 94, 249, 150, 116, 51, 237, 146, 232, 159, 9, 70, 103, 134, + 231, 200, 197, 242, 74, 22, 250, 248, 117, 5, 5, 255, 205, 249, 78, 70, 155, 0, 224, 68, 68, 253, 10, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 278, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2600536922932308439" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + } + ] + }, + "cborHex": "bf1b2416f68d9caae9d71bfffffffffffffffdff", + "cborBytes": [191, 27, 36, 22, 246, 141, 156, 170, 233, 215, 27, 255, 255, 255, 255, 255, 255, 255, 253, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 279, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15583504506381033012" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9971459390126667306" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5926454519677238836" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12974052465704479482" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6685842876201385159" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7196346599120596666" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4761700345715598573" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7692225326918400751" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d22df141ef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17404277914232014798" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2039" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18083190225704417543" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10864317518265839147" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf07d8669f1bd843bac89a8a5e3480ff1b8a61bd7bf8bbb62abf1b523efefc66debe341bb40d17fa6398aafa1b5cc8e2ac3c0f3cc741751b63de8f1aa12c6eba1b4214f53c613ba4ed1b6ac0462dff3bfaef45d22df141ef1bf1886a8d19f9c7ce4220391bfaf465b390ed79071b96c5cf38a349ee2bffff", + "cborBytes": [ + 191, 7, 216, 102, 159, 27, 216, 67, 186, 200, 154, 138, 94, 52, 128, 255, 27, 138, 97, 189, 123, 248, 187, 182, + 42, 191, 27, 82, 62, 254, 252, 102, 222, 190, 52, 27, 180, 13, 23, 250, 99, 152, 170, 250, 27, 92, 200, 226, 172, + 60, 15, 60, 199, 65, 117, 27, 99, 222, 143, 26, 161, 44, 110, 186, 27, 66, 20, 245, 60, 97, 59, 164, 237, 27, 106, + 192, 70, 45, 255, 59, 250, 239, 69, 210, 45, 241, 65, 239, 27, 241, 136, 106, 141, 25, 249, 199, 206, 66, 32, 57, + 27, 250, 244, 101, 179, 144, 237, 121, 7, 27, 150, 197, 207, 56, 163, 73, 238, 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 280, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11330899155026756817" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3797179364510799534" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7c10" + }, + { + "_tag": "ByteArray", + "bytearray": "e7243bdf" + }, + { + "_tag": "ByteArray", + "bytearray": "2b743814366ee2a8" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16297307631611225421" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4235961898376298536" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13051400093718614052" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8617375b657e9f9b0731e2" + }, + { + "_tag": "ByteArray", + "bytearray": "d6882add2f67b21b986fed" + }, + { + "_tag": "ByteArray", + "bytearray": "d06ece0fddc7044d31f6ad" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f712743c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "499b8eb251b77026393e7432" + } + } + ] + }, + "cborHex": "bf1b9d3f70bf7124c4d19f1b34b24a83821c16ae427c1044e7243bdf482b743814366ee2a8ff41bfd8669f1be22baaf1b173254d9f1b3ac928e74acf00281bb51fe33c679910244b8617375b657e9f9b0731e24bd6882add2f67b21b986fed4bd06ece0fddc7044d31f6adffff44f712743c4c499b8eb251b77026393e7432ff", + "cborBytes": [ + 191, 27, 157, 63, 112, 191, 113, 36, 196, 209, 159, 27, 52, 178, 74, 131, 130, 28, 22, 174, 66, 124, 16, 68, 231, + 36, 59, 223, 72, 43, 116, 56, 20, 54, 110, 226, 168, 255, 65, 191, 216, 102, 159, 27, 226, 43, 170, 241, 177, 115, + 37, 77, 159, 27, 58, 201, 40, 231, 74, 207, 0, 40, 27, 181, 31, 227, 60, 103, 153, 16, 36, 75, 134, 23, 55, 91, + 101, 126, 159, 155, 7, 49, 226, 75, 214, 136, 42, 221, 47, 103, 178, 27, 152, 111, 237, 75, 208, 110, 206, 15, + 221, 199, 4, 77, 49, 246, 173, 255, 255, 68, 247, 18, 116, 60, 76, 73, 155, 142, 178, 81, 183, 112, 38, 57, 62, + 116, 50, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 281, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b8a3d360c4a6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "151705a601" + } + } + ] + }, + "cborHex": "bf470b8a3d360c4a6b45151705a601ff", + "cborBytes": [191, 71, 11, 138, 61, 54, 12, 74, 107, 69, 21, 23, 5, 166, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 282, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "38b87ae9899c358f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13257792941736149659" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eb21" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10086949588335896839" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01721c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6de6f5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12891284322741036876" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5668a5" + }, + { + "_tag": "ByteArray", + "bytearray": "59" + }, + { + "_tag": "ByteArray", + "bytearray": "c91cddc14f71cd" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f71d2f81" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11179812863983750695" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "926d2613aea3c9a840" + } + } + ] + } + } + ] + }, + "cborHex": "bf4838b87ae9899c358fd8669f1bb7fd24700ddd429b9f42eb211b8bfc0b352808a907ffff423a484301721c436de6f5d8669f1bb2e70aca638aa74c9f435668a5415947c91cddc14f71cdffff44f71d2f81bf1b9b26ac910d180e2749926d2613aea3c9a840ffff", + "cborBytes": [ + 191, 72, 56, 184, 122, 233, 137, 156, 53, 143, 216, 102, 159, 27, 183, 253, 36, 112, 13, 221, 66, 155, 159, 66, + 235, 33, 27, 139, 252, 11, 53, 40, 8, 169, 7, 255, 255, 66, 58, 72, 67, 1, 114, 28, 67, 109, 230, 245, 216, 102, + 159, 27, 178, 231, 10, 202, 99, 138, 167, 76, 159, 67, 86, 104, 165, 65, 89, 71, 201, 28, 221, 193, 79, 113, 205, + 255, 255, 68, 247, 29, 47, 129, 191, 27, 155, 38, 172, 145, 13, 24, 14, 39, 73, 146, 109, 38, 19, 174, 163, 201, + 168, 64, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 283, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1474470956268844730" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6a96ed2f1b12a6" + }, + { + "_tag": "ByteArray", + "bytearray": "56" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14834192162893115833" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9910483738528877377" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "179154f39c240d9a54b73e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17915057151849524851" + } + }, + { + "_tag": "ByteArray", + "bytearray": "73fa" + }, + { + "_tag": "ByteArray", + "bytearray": "23bceb3a97635b0f" + }, + { + "_tag": "ByteArray", + "bytearray": "c36af02a4250" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12682266647290347064" + } + } + ] + } + } + ] + }, + "cborHex": "bf119f1b14765f85cc08f6ba476a96ed2f1b12a641561bcddda32d5f20b1b91b89891c73c34c8b41ff4b179154f39c240d9a54b73e9f1bf89f118fc2cfee734273fa4823bceb3a97635b0f46c36af02a42501bb00076527a867e38ffff", + "cborBytes": [ + 191, 17, 159, 27, 20, 118, 95, 133, 204, 8, 246, 186, 71, 106, 150, 237, 47, 27, 18, 166, 65, 86, 27, 205, 221, + 163, 45, 95, 32, 177, 185, 27, 137, 137, 28, 115, 195, 76, 139, 65, 255, 75, 23, 145, 84, 243, 156, 36, 13, 154, + 84, 183, 62, 159, 27, 248, 159, 17, 143, 194, 207, 238, 115, 66, 115, 250, 72, 35, 188, 235, 58, 151, 99, 91, 15, + 70, 195, 106, 240, 42, 66, 80, 27, 176, 0, 118, 82, 122, 134, 126, 56, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 284, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13912843932393923580" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "801383503653542620" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4db4a9adcfeec5bf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7404547668269047147" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11554597741589194242" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8518085604953271952" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a867" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9515059549159610815" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9fb982e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11195407747273637680" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a37402d3fe2c5816c4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12685190806492533802" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17829416527021874865" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bc11459d7d5c9e3fcbf1b0b1f160cf8209adc484db4a9adcfeec5bf1b66c23cdf919f9d6b1ba05a2d6d55f466021b763651ba199bae9042a8671b840c483f3c58d9bf44f9fb982e1b9b5e1407c3e6bf3049a37402d3fe2c5816c41bb00ad9d45909d42a1bf76ecfddf59e1eb1ffff", + "cborBytes": [ + 191, 27, 193, 20, 89, 215, 213, 201, 227, 252, 191, 27, 11, 31, 22, 12, 248, 32, 154, 220, 72, 77, 180, 169, 173, + 207, 238, 197, 191, 27, 102, 194, 60, 223, 145, 159, 157, 107, 27, 160, 90, 45, 109, 85, 244, 102, 2, 27, 118, 54, + 81, 186, 25, 155, 174, 144, 66, 168, 103, 27, 132, 12, 72, 63, 60, 88, 217, 191, 68, 249, 251, 152, 46, 27, 155, + 94, 20, 7, 195, 230, 191, 48, 73, 163, 116, 2, 211, 254, 44, 88, 22, 196, 27, 176, 10, 217, 212, 89, 9, 212, 42, + 27, 247, 110, 207, 221, 245, 158, 30, 177, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 285, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf02f9affbfa4a03fd02" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c0ac26e182293d7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1173198173582532881" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e605fb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6dfe903eb3c54c" + }, + { + "_tag": "ByteArray", + "bytearray": "f01009ced921ff5b0c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14272591498507070235" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + } + } + ] + }, + "cborHex": "bf4acf02f9affbfa4a03fd029f48c0ac26e182293d7c1b10480985e3862111ff43e605fbd87e9f476dfe903eb3c54c49f01009ced921ff5b0c1bc6126e5934c62b1b07ffff", + "cborBytes": [ + 191, 74, 207, 2, 249, 175, 251, 250, 74, 3, 253, 2, 159, 72, 192, 172, 38, 225, 130, 41, 61, 124, 27, 16, 72, 9, + 133, 227, 134, 33, 17, 255, 67, 230, 5, 251, 216, 126, 159, 71, 109, 254, 144, 62, 179, 197, 76, 73, 240, 16, 9, + 206, 217, 33, 255, 91, 12, 27, 198, 18, 110, 89, 52, 198, 43, 27, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 286, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12250668999182280539" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7141052108096939960" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12759681933429300364" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05fd" + } + } + ] + }, + "cborHex": "bf061baa031e8c4526675b12a01b631a1d0eb1ac27b8801bb1137f1d6105dc8c1bfffffffffffffff41bfffffffffffffffd4205fdff", + "cborBytes": [ + 191, 6, 27, 170, 3, 30, 140, 69, 38, 103, 91, 18, 160, 27, 99, 26, 29, 14, 177, 172, 39, 184, 128, 27, 177, 19, + 127, 29, 97, 5, 220, 140, 27, 255, 255, 255, 255, 255, 255, 255, 244, 27, 255, 255, 255, 255, 255, 255, 255, 253, + 66, 5, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 287, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e2d6b352d7fffa1e5c5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17812342952245124215" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4071415561286229583" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1fc04" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ace4b7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16299838842657557170" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "43a64797d40fe1db7e75" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14945108827678810603" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0f93" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c98c73030db231" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81" + } + } + ] + }, + "cborHex": "bf4a7e2d6b352d7fffa1e5c5d8669f1bf732278a8e00dc779f1b388092e1b7769e4fffff43a1fc048043ace4b7d8669f1be234a91130b7cab29f4a43a64797d40fe1db7e751bcf67b14bd359a1eb420f93ffff47c98c73030db2314181ff", + "cborBytes": [ + 191, 74, 126, 45, 107, 53, 45, 127, 255, 161, 229, 197, 216, 102, 159, 27, 247, 50, 39, 138, 142, 0, 220, 119, + 159, 27, 56, 128, 146, 225, 183, 118, 158, 79, 255, 255, 67, 161, 252, 4, 128, 67, 172, 228, 183, 216, 102, 159, + 27, 226, 52, 169, 17, 48, 183, 202, 178, 159, 74, 67, 166, 71, 151, 212, 15, 225, 219, 126, 117, 27, 207, 103, + 177, 75, 211, 89, 161, 235, 66, 15, 147, 255, 255, 71, 201, 140, 115, 3, 13, 178, 49, 65, 129, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 288, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ebc3a9a48c1de" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5ac25b31" + }, + { + "_tag": "ByteArray", + "bytearray": "e35c92e8dfc2ba6b" + }, + { + "_tag": "ByteArray", + "bytearray": "5a82f7a6b9453195688c" + }, + { + "_tag": "ByteArray", + "bytearray": "b6ab63aefc4180d6c781" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e95" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3878753768282385054" + } + } + } + ] + }, + "cborHex": "bf472ebc3a9a48c1de9f445ac25b3148e35c92e8dfc2ba6b4a5a82f7a6b9453195688c4ab6ab63aefc4180d6c781ff429e951b35d41a0071adea9eff", + "cborBytes": [ + 191, 71, 46, 188, 58, 154, 72, 193, 222, 159, 68, 90, 194, 91, 49, 72, 227, 92, 146, 232, 223, 194, 186, 107, 74, + 90, 130, 247, 166, 185, 69, 49, 149, 104, 140, 74, 182, 171, 99, 174, 252, 65, 128, 214, 199, 129, 255, 66, 158, + 149, 27, 53, 212, 26, 0, 113, 173, 234, 158, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 289, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5576351659882015334" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9282587185000164718" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7765663050069142348" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5395925887154476408" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8791412380725905631" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6666247134194689911" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9366272581796036250" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a2be33" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15141014314979555726" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1569459082101808495" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c721a929f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10411244068004974968" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5211ed1ba0ee3721ae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13729874420087659607" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1524359800603739039" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89bd3f3eb5687f" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4d632e4a35ed6a66bf42a4c91b80d25fdd0e872d6eff1b6bc52d6658bf6b4c1b4ae22e016a2d55781b7a015efb3b2388dfd8669f1b5c83447302a3e7779f1b81fbaf49db6efe9a43a2be331bd21fb04c8775f98e1b15c7d6b846305d6f459c721a929fffff1b907c2b5197545178495211ed1ba0ee3721ae1bbe8a500a840c1c57bf1b15279d2988df039f4789bd3f3eb5687fffff", + "cborBytes": [ + 191, 27, 77, 99, 46, 74, 53, 237, 106, 102, 191, 66, 164, 201, 27, 128, 210, 95, 221, 14, 135, 45, 110, 255, 27, + 107, 197, 45, 102, 88, 191, 107, 76, 27, 74, 226, 46, 1, 106, 45, 85, 120, 27, 122, 1, 94, 251, 59, 35, 136, 223, + 216, 102, 159, 27, 92, 131, 68, 115, 2, 163, 231, 119, 159, 27, 129, 251, 175, 73, 219, 110, 254, 154, 67, 162, + 190, 51, 27, 210, 31, 176, 76, 135, 117, 249, 142, 27, 21, 199, 214, 184, 70, 48, 93, 111, 69, 156, 114, 26, 146, + 159, 255, 255, 27, 144, 124, 43, 81, 151, 84, 81, 120, 73, 82, 17, 237, 27, 160, 238, 55, 33, 174, 27, 190, 138, + 80, 10, 132, 12, 28, 87, 191, 27, 21, 39, 157, 41, 136, 223, 3, 159, 71, 137, 189, 63, 62, 181, 104, 127, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 290, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8521265858142423831" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1836534264445615472" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18291238751486809376" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4785a2f62d2e06" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14694835685579801079" + } + }, + { + "_tag": "ByteArray", + "bytearray": "130b666667133d9db1053d3b" + }, + { + "_tag": "ByteArray", + "bytearray": "b3d774aa39a87ca97808d1" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60731ba7d8" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72b68a2af3d52de22f05" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9187854891649955503" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17784241810245310219" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10726549437486131661" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b76419e267f3e4b179f1b197cae2ee21d3d70ff4100d8669f1bfdd788bbbc3b15209f474785a2f62d2e061bcbee8b330fb7c1f74c130b666667133d9db1053d3b4bb3d774aa39a87ca97808d1ffff4560731ba7d8a04a72b68a2af3d52de22f05d8669f1b7f81d15838a176af9f1bf6ce51b39352570b1b94dc5be1b706e9cdffffff", + "cborBytes": [ + 191, 27, 118, 65, 158, 38, 127, 62, 75, 23, 159, 27, 25, 124, 174, 46, 226, 29, 61, 112, 255, 65, 0, 216, 102, + 159, 27, 253, 215, 136, 187, 188, 59, 21, 32, 159, 71, 71, 133, 162, 246, 45, 46, 6, 27, 203, 238, 139, 51, 15, + 183, 193, 247, 76, 19, 11, 102, 102, 103, 19, 61, 157, 177, 5, 61, 59, 75, 179, 215, 116, 170, 57, 168, 124, 169, + 120, 8, 209, 255, 255, 69, 96, 115, 27, 167, 216, 160, 74, 114, 182, 138, 42, 243, 213, 45, 226, 47, 5, 216, 102, + 159, 27, 127, 129, 209, 88, 56, 161, 118, 175, 159, 27, 246, 206, 81, 179, 147, 82, 87, 11, 27, 148, 220, 91, 225, + 183, 6, 233, 205, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 291, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13732507490590914876" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "835b2df0fa9fe5" + } + } + ] + }, + "cborHex": "bf1bbe93aace040ff93c47835b2df0fa9fe5ff", + "cborBytes": [191, 27, 190, 147, 170, 206, 4, 15, 249, 60, 71, 131, 91, 45, 240, 250, 159, 229, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 292, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16731841117300028298" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16820718952073044958" + } + } + ] + } + } + ] + }, + "cborHex": "bf1be83370d8daf1738a9f1be96f32c454fea3deffff", + "cborBytes": [ + 191, 27, 232, 51, 112, 216, 218, 241, 115, 138, 159, 27, 233, 111, 50, 196, 84, 254, 163, 222, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 293, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9728586196392519174" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11814536690819045295" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "819420" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17417461251174107050" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17691479267564457762" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a6d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11562880902075491136" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b8702e199f2bea606801ba3f5aa86321697af438194201bf1b740b9ed5d07aad8669f1bf584c2a90e5e0f229f42a6d01ba0779aeaec5ba340ffffff", + "cborBytes": [ + 191, 27, 135, 2, 225, 153, 242, 190, 166, 6, 128, 27, 163, 245, 170, 134, 50, 22, 151, 175, 67, 129, 148, 32, 27, + 241, 183, 64, 185, 237, 93, 7, 170, 216, 102, 159, 27, 245, 132, 194, 169, 14, 94, 15, 34, 159, 66, 166, 208, 27, + 160, 119, 154, 234, 236, 91, 163, 64, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 294, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a54281016a22e5a4dd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b1c836" + } + ] + } + } + ] + }, + "cborHex": "bf49a54281016a22e5a4dd9f43b1c836ffff", + "cborBytes": [191, 73, 165, 66, 129, 1, 106, 34, 229, 164, 221, 159, 67, 177, 200, 54, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 295, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6650447262375293331" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff06f8" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffef1b5c4b228caf5931934106bf412443ff06f8ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 239, 27, 92, 75, 34, 140, 175, 89, 49, 147, 65, 6, 191, 65, 36, 67, + 255, 6, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 296, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "406d4202d457c2c8aa" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11846617962656003861" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05be" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d70358818e9fc0a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c80d39d16b815ef66573" + } + } + ] + }, + "cborHex": "bf49406d4202d457c2c8aa9f1ba467a4455ddf77154205beff48d70358818e9fc0a44ac80d39d16b815ef66573ff", + "cborBytes": [ + 191, 73, 64, 109, 66, 2, 212, 87, 194, 200, 170, 159, 27, 164, 103, 164, 69, 93, 223, 119, 21, 66, 5, 190, 255, + 72, 215, 3, 88, 129, 142, 159, 192, 164, 74, 200, 13, 57, 209, 107, 129, 94, 246, 101, 115, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 297, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3871490630042736465" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16716047507411886468" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c3397dbce3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12871821293672491699" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12685661115993078385" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15426817641233418375" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9ba119e8d1fe6af22b3" + } + } + ] + }, + "cborHex": "bf1b35ba4c374af35751d8669f1be7fb54a47fd6e1849f45c3397dbce31bb2a1e544cda86ab3ffff1bb00c8592cfc0ba71801bd61710e8f07288874af9ba119e8d1fe6af22b3ff", + "cborBytes": [ + 191, 27, 53, 186, 76, 55, 74, 243, 87, 81, 216, 102, 159, 27, 231, 251, 84, 164, 127, 214, 225, 132, 159, 69, 195, + 57, 125, 188, 227, 27, 178, 161, 229, 68, 205, 168, 106, 179, 255, 255, 27, 176, 12, 133, 146, 207, 192, 186, 113, + 128, 27, 214, 23, 16, 232, 240, 114, 136, 135, 74, 249, 186, 17, 158, 141, 31, 230, 175, 34, 179, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 298, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00a1c3b5e82cfbf5819377" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5140228698243037220" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a702645b03a" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c04" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2002080945524503952" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4470178129287551628" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b59eddb666a67de88613b3e1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8913041915006542144" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4696986354142622469" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b00a1c3b5e82cfbf5819377d8669f1b4755c2c4570b782480ff461a702645b03aa0428c04d8669f1b1bc8d2033190f5909f1b3e09435316e79a8cffff4cb59eddb666a67de88613b3e1d8669f1b7bb17c65fc21e1409f1b412f0c3411873305ffffff", + "cborBytes": [ + 191, 75, 0, 161, 195, 181, 232, 44, 251, 245, 129, 147, 119, 216, 102, 159, 27, 71, 85, 194, 196, 87, 11, 120, 36, + 128, 255, 70, 26, 112, 38, 69, 176, 58, 160, 66, 140, 4, 216, 102, 159, 27, 27, 200, 210, 3, 49, 144, 245, 144, + 159, 27, 62, 9, 67, 83, 22, 231, 154, 140, 255, 255, 76, 181, 158, 221, 182, 102, 166, 125, 232, 134, 19, 179, + 225, 216, 102, 159, 27, 123, 177, 124, 101, 252, 33, 225, 64, 159, 27, 65, 47, 12, 52, 17, 135, 51, 5, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 299, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4065762486033142333" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2057634430635950857" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6413061847702468803" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1010776485379896484" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10815b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1715880181464761618" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12919262481680832483" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af40fc441feaa8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "162fa9aa0f294fde" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6916022684319282592" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15383541393657532362" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3530027587411001825" + } + }, + { + "_tag": "ByteArray", + "bytearray": "66ea" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10344372473488101683" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13294914735649391592" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12371716183439562060" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1543994638526297491" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7044407819641046101" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c07abc092735a2d62" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2857180168280330174" + } + }, + { + "_tag": "ByteArray", + "bytearray": "84021610ad79f6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17605520604252955770" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17087116806580047196" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6631220220459090304" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4477487893452217783" + } + }, + { + "_tag": "ByteArray", + "bytearray": "81faf9" + }, + { + "_tag": "ByteArray", + "bytearray": "aedd0712" + }, + { + "_tag": "ByteArray", + "bytearray": "5e06749a8046c454" + } + ] + } + } + ] + }, + "cborHex": "bf1b386c7d70911d523d1b1c8e2f9ce3ab43091b58ffc5c5caea78c3bf1b0e06ffdbae62f4a44310815b1b17d007ef155705121bb34a70c7249e17e347af40fc441feaa848162fa9aa0f294fdeff1b5ffaa5fd1d64f5a09f1bd57d51645c798fca1b30fd2d634af641e14266eaff1b8f8e97f5329651331bb8810683397d03e81babb12a5217ddd54cd8669f1b156d5ef17c77b5939f1b61c2c396ceb04455494c07abc092735a2d621b27a6be399da3cfbe4784021610ad79f61bf4535fb62651647affff1bed21a23443cf8d5cd8669f1b5c06d3a823da01809f1b3e233b842f54ddb74381faf944aedd0712485e06749a8046c454ffffff", + "cborBytes": [ + 191, 27, 56, 108, 125, 112, 145, 29, 82, 61, 27, 28, 142, 47, 156, 227, 171, 67, 9, 27, 88, 255, 197, 197, 202, + 234, 120, 195, 191, 27, 14, 6, 255, 219, 174, 98, 244, 164, 67, 16, 129, 91, 27, 23, 208, 7, 239, 21, 87, 5, 18, + 27, 179, 74, 112, 199, 36, 158, 23, 227, 71, 175, 64, 252, 68, 31, 234, 168, 72, 22, 47, 169, 170, 15, 41, 79, + 222, 255, 27, 95, 250, 165, 253, 29, 100, 245, 160, 159, 27, 213, 125, 81, 100, 92, 121, 143, 202, 27, 48, 253, + 45, 99, 74, 246, 65, 225, 66, 102, 234, 255, 27, 143, 142, 151, 245, 50, 150, 81, 51, 27, 184, 129, 6, 131, 57, + 125, 3, 232, 27, 171, 177, 42, 82, 23, 221, 213, 76, 216, 102, 159, 27, 21, 109, 94, 241, 124, 119, 181, 147, 159, + 27, 97, 194, 195, 150, 206, 176, 68, 85, 73, 76, 7, 171, 192, 146, 115, 90, 45, 98, 27, 39, 166, 190, 57, 157, + 163, 207, 190, 71, 132, 2, 22, 16, 173, 121, 246, 27, 244, 83, 95, 182, 38, 81, 100, 122, 255, 255, 27, 237, 33, + 162, 52, 67, 207, 141, 92, 216, 102, 159, 27, 92, 6, 211, 168, 35, 218, 1, 128, 159, 27, 62, 35, 59, 132, 47, 84, + 221, 183, 67, 129, 250, 249, 68, 174, 221, 7, 18, 72, 94, 6, 116, 154, 128, 70, 196, 84, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 300, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3282975407413669990" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f3ca1b4d162bf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7973642423805557691" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14958912732738496922" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17232740140617838258" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2d8f78bd353c3066470f3ca1b4d162bf1b6ea81189ccea3bbb9f1bcf98bbdfecf2299a1bef26fddadc242eb2ffff", + "cborBytes": [ + 191, 27, 45, 143, 120, 189, 53, 60, 48, 102, 71, 15, 60, 161, 180, 209, 98, 191, 27, 110, 168, 17, 137, 204, 234, + 59, 187, 159, 27, 207, 152, 187, 223, 236, 242, 41, 154, 27, 239, 38, 253, 218, 220, 36, 46, 178, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 301, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "510472011c0206" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb1505fafd6b01fd004273" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7762458488288540533" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ddf210d3f5e54ac9a45362" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "010102" + }, + { + "_tag": "ByteArray", + "bytearray": "012b0d8342025cb641d7dfec" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13384778854529959470" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4023403034376245989" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1596764240972722697" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e67522420690cecd36" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8515107758903703426" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf47510472011c02064bcb1505fafd6b01fd0042734158d8669f1b6bb9cade2a2777759f4bddf210d3f5e54ac9a4536209430101024c012b0d8342025cb641d7dfecffff41d49f1bb9c04973dd6b062e1b37d5ffbe2c3992e51b1628d89dfd39b209ff49e67522420690cecd36bf1b762bbd6449a0b7821bfffffffffffffffcffff", + "cborBytes": [ + 191, 71, 81, 4, 114, 1, 28, 2, 6, 75, 203, 21, 5, 250, 253, 107, 1, 253, 0, 66, 115, 65, 88, 216, 102, 159, 27, + 107, 185, 202, 222, 42, 39, 119, 117, 159, 75, 221, 242, 16, 211, 245, 229, 74, 201, 164, 83, 98, 9, 67, 1, 1, 2, + 76, 1, 43, 13, 131, 66, 2, 92, 182, 65, 215, 223, 236, 255, 255, 65, 212, 159, 27, 185, 192, 73, 115, 221, 107, 6, + 46, 27, 55, 213, 255, 190, 44, 57, 146, 229, 27, 22, 40, 216, 157, 253, 57, 178, 9, 255, 73, 230, 117, 34, 66, 6, + 144, 206, 205, 54, 191, 27, 118, 43, 189, 100, 73, 160, 183, 130, 27, 255, 255, 255, 255, 255, 255, 255, 252, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 302, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "59" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7697357863461226810" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6519071217649256586" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4159bf031bfffffffffffffffb1b6ad28231c8aa893a1b5a7864bba175088affff", + "cborBytes": [ + 191, 65, 89, 191, 3, 27, 255, 255, 255, 255, 255, 255, 255, 251, 27, 106, 210, 130, 49, 200, 170, 137, 58, 27, 90, + 120, 100, 187, 161, 117, 8, 138, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 303, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "541043042086054929" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10477923779753547100" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3263940551340563398" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11016958363595172794" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1b9a6d1f75d4e300807901" + }, + { + "_tag": "ByteArray", + "bytearray": "d6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2024206967710395911" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4332641706505242503" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b07822bc7bbbc6c119f1b91691029cbd4155c1b2d4bd8a36aa59bc61b98e41942e75bebba4b1b9a6d1f75d4e30080790141d6ff1b1c176d832e3fae079f1b3c20a2ad3f498787ffff", + "cborBytes": [ + 191, 27, 7, 130, 43, 199, 187, 188, 108, 17, 159, 27, 145, 105, 16, 41, 203, 212, 21, 92, 27, 45, 75, 216, 163, + 106, 165, 155, 198, 27, 152, 228, 25, 66, 231, 91, 235, 186, 75, 27, 154, 109, 31, 117, 212, 227, 0, 128, 121, 1, + 65, 214, 255, 27, 28, 23, 109, 131, 46, 63, 174, 7, 159, 27, 60, 32, 162, 173, 63, 73, 135, 135, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 304, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10448193370314131440" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b90ff70836e2a47f0a0ff", + "cborBytes": [191, 27, 144, 255, 112, 131, 110, 42, 71, 240, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 305, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2382157128195841377" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "40e790" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11881419372337303201" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3177010792882419649" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18194472649651174805" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16990206298107826254" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03c7" + } + ] + } + } + ] + }, + "cborHex": "bf1b210f1f4971471d61d8669f1bfffffffffffffff99f4340e790ffff1ba4e347f7fb9c0ea19f1b2c17027bcd56b7c11bfc7fc079f604bd95ff1bebc9569c3352504e9f0c0f4203c7ffff", + "cborBytes": [ + 191, 27, 33, 15, 31, 73, 113, 71, 29, 97, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 67, 64, + 231, 144, 255, 255, 27, 164, 227, 71, 247, 251, 156, 14, 161, 159, 27, 44, 23, 2, 123, 205, 86, 183, 193, 27, 252, + 127, 192, 121, 246, 4, 189, 149, 255, 27, 235, 201, 86, 156, 51, 82, 80, 78, 159, 12, 15, 66, 3, 199, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 306, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "275d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15875385149147195502" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b18cb3aa399ab336" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb39d25b7b1eb9e5611548b0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15091590312333635622" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e3963" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cddf" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15788132565482489221" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9a1e92e199ebc314471" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a406a6915bda" + }, + { + "_tag": "ByteArray", + "bytearray": "6e14904417228f8b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1812394576796096467" + } + } + ] + } + } + ] + }, + "cborHex": "bf42275d1bdc50b2ae876e286e48b18cb3aa399ab336a04ccb39d25b7b1eb9e5611548b0bf1bd170196e2e5f7026430e3963ff42cddfd8669f1bdb1ab6eb505c458580ff4ad9a1e92e199ebc3144719f46a406a6915bda486e14904417228f8b1b1926eb43dec697d3ffff", + "cborBytes": [ + 191, 66, 39, 93, 27, 220, 80, 178, 174, 135, 110, 40, 110, 72, 177, 140, 179, 170, 57, 154, 179, 54, 160, 76, 203, + 57, 210, 91, 123, 30, 185, 229, 97, 21, 72, 176, 191, 27, 209, 112, 25, 110, 46, 95, 112, 38, 67, 14, 57, 99, 255, + 66, 205, 223, 216, 102, 159, 27, 219, 26, 182, 235, 80, 92, 69, 133, 128, 255, 74, 217, 161, 233, 46, 25, 158, + 188, 49, 68, 113, 159, 70, 164, 6, 166, 145, 91, 218, 72, 110, 20, 144, 68, 23, 34, 143, 139, 27, 25, 38, 235, 67, + 222, 198, 151, 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 307, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d528add4e06b606d317798" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a84267" + }, + { + "_tag": "ByteArray", + "bytearray": "4a2d7a" + } + ] + } + } + ] + }, + "cborHex": "bf4bd528add4e06b606d3177989f43a84267434a2d7affff", + "cborBytes": [ + 191, 75, 213, 40, 173, 212, 224, 107, 96, 109, 49, 119, 152, 159, 67, 168, 66, 103, 67, 74, 45, 122, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 308, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d32e627e9fd4f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1118276266250808384" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6284429177847231866" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10744308307358366553" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab548a7cbf" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10132200522995778157" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4f" + }, + { + "_tag": "ByteArray", + "bytearray": "41ba9888491f2ed7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11317840950481973252" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11400293408617603158" + } + } + ] + } + } + ] + }, + "cborHex": "bf471d32e627e9fd4fd8669f1b0f84ea56daa12c409f1b5736c70a79af357a1b951b737ad15fbb59ffff45ab548a7cbfd8669f1b8c9cceb16630c26d9f414f4841ba9888491f2ed71b9d110c6145d8f0041b9e35fa742be12056ffffff", + "cborBytes": [ + 191, 71, 29, 50, 230, 39, 233, 253, 79, 216, 102, 159, 27, 15, 132, 234, 86, 218, 161, 44, 64, 159, 27, 87, 54, + 199, 10, 121, 175, 53, 122, 27, 149, 27, 115, 122, 209, 95, 187, 89, 255, 255, 69, 171, 84, 138, 124, 191, 216, + 102, 159, 27, 140, 156, 206, 177, 102, 48, 194, 109, 159, 65, 79, 72, 65, 186, 152, 136, 73, 31, 46, 215, 27, 157, + 17, 12, 97, 69, 216, 240, 4, 27, 158, 53, 250, 116, 43, 225, 32, 86, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 309, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2557590875985161784" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91306aedb4c3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5282139373199487326" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13655616417646983443" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7570825263358940444" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "befacfd4295b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8812530617840231588" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bee91" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14965159556711730587" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16016167634427714400" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "963904914839183734" + } + } + } + ] + }, + "cborHex": "bf1b237e6359dbe02e384691306aedb4c31b494dedc621a8f15ed8669f1bbd827ec802d7391380ff1b6910f9770f10151c46befacfd4295b1b7a4c65e7f89ee4a4433bee911bcfaeed53f8d84d9b9f414bff1bde44db9b312c1b601b0d607a69be3e2176ff", + "cborBytes": [ + 191, 27, 35, 126, 99, 89, 219, 224, 46, 56, 70, 145, 48, 106, 237, 180, 195, 27, 73, 77, 237, 198, 33, 168, 241, + 94, 216, 102, 159, 27, 189, 130, 126, 200, 2, 215, 57, 19, 128, 255, 27, 105, 16, 249, 119, 15, 16, 21, 28, 70, + 190, 250, 207, 212, 41, 91, 27, 122, 76, 101, 231, 248, 158, 228, 164, 67, 59, 238, 145, 27, 207, 174, 237, 83, + 248, 216, 77, 155, 159, 65, 75, 255, 27, 222, 68, 219, 155, 49, 44, 27, 96, 27, 13, 96, 122, 105, 190, 62, 33, + 118, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 310, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "506986487381413638" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5a7bf779b83bc9f54a2ff5e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ae652e7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef3e6a8f3e20" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a171a7bdf72" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5236305447187238797" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32443c66750377" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8663699394121322388" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd3025617ef5e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9177506d53cbb5c1" + } + } + ] + }, + "cborHex": "bf1b07092d862e4acf064cc5a7bf779b83bc9f54a2ff5e41ad444ae652e746ef3e6a8f3e20bf460a171a7bdf721b48ab180fa309cf8d4732443c667503771b783ba4b25b5e4f94ff47fd3025617ef5e8489177506d53cbb5c1ff", + "cborBytes": [ + 191, 27, 7, 9, 45, 134, 46, 74, 207, 6, 76, 197, 167, 191, 119, 155, 131, 188, 159, 84, 162, 255, 94, 65, 173, 68, + 74, 230, 82, 231, 70, 239, 62, 106, 143, 62, 32, 191, 70, 10, 23, 26, 123, 223, 114, 27, 72, 171, 24, 15, 163, 9, + 207, 141, 71, 50, 68, 60, 102, 117, 3, 119, 27, 120, 59, 164, 178, 91, 94, 79, 148, 255, 71, 253, 48, 37, 97, 126, + 245, 232, 72, 145, 119, 80, 109, 83, 203, 181, 193, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 311, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4c721d55bf9caa3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14060719619070837796" + } + } + } + ] + }, + "cborHex": "bf48e4c721d55bf9caa31bc321b5ff25154424ff", + "cborBytes": [191, 72, 228, 199, 33, 213, 91, 249, 202, 163, 27, 195, 33, 181, 255, 37, 21, 68, 36, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 312, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "44200eb268d1e042a8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9116814481386276662" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6499572759282993852" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13026071940575032914" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c894c215f731169cc9275a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14224869811601348247" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b925d6ef29d5" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4713d4477d707c89f47e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "357f75b2c5f26fbcddce00bf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f673da5ad16e7397dc94d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12372056087547799621" + } + } + } + ] + }, + "cborHex": "bf4944200eb268d1e042a8bf1b7e856e77c62a87361b5a331efd04de4abc1bb4c5e76a34a876524bc894c215f731169cc9275a1bc568e3ba20ad169746b925d6ef29d5ff4a4713d4477d707c89f47e4c357f75b2c5f26fbcddce00bf4bf673da5ad16e7397dc94d01babb25f762f7ee845ff", + "cborBytes": [ + 191, 73, 68, 32, 14, 178, 104, 209, 224, 66, 168, 191, 27, 126, 133, 110, 119, 198, 42, 135, 54, 27, 90, 51, 30, + 253, 4, 222, 74, 188, 27, 180, 197, 231, 106, 52, 168, 118, 82, 75, 200, 148, 194, 21, 247, 49, 22, 156, 201, 39, + 90, 27, 197, 104, 227, 186, 32, 173, 22, 151, 70, 185, 37, 214, 239, 41, 213, 255, 74, 71, 19, 212, 71, 125, 112, + 124, 137, 244, 126, 76, 53, 127, 117, 178, 197, 242, 111, 188, 221, 206, 0, 191, 75, 246, 115, 218, 90, 209, 110, + 115, 151, 220, 148, 208, 27, 171, 178, 95, 118, 47, 126, 232, 69, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 313, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2439708965803630096" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16677002544663932295" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3886653711202466536" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0370310405fa1eee045d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6714194585119586086" + } + } + } + ] + }, + "cborHex": "bf0441811b21db9660d60f9e109f02ff1be7709d74b0faad871b35f02af53d2d3ae84a0370310405fa1eee045d1b5d2d9c66dee77726ff", + "cborBytes": [ + 191, 4, 65, 129, 27, 33, 219, 150, 96, 214, 15, 158, 16, 159, 2, 255, 27, 231, 112, 157, 116, 176, 250, 173, 135, + 27, 53, 240, 42, 245, 61, 45, 58, 232, 74, 3, 112, 49, 4, 5, 250, 30, 238, 4, 93, 27, 93, 45, 156, 102, 222, 231, + 119, 38, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 314, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7210912350231435499" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2765488245964717622" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "00fdfd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14837201231594409533" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3a21" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + { + "_tag": "ByteArray", + "bytearray": "637eb6e2bac9b75de9042d" + }, + { + "_tag": "ByteArray", + "bytearray": "b43203ad700614fb47f929" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d126e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5894d80877aa6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf0e04885890a1dbb8bd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14402013641045564680" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d5989d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12918728262333740547" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b64124e93d60598ebd8669f1b2660fce8533ebe369f4102ffff4300fdfd9f1bcde853e8c62c4e3d423a211bffffffffffffffee4b637eb6e2bac9b75de9042d4bb43203ad700614fb47f929ff432d126ebf0947f5894d80877aa60e4111ff4acf0e04885890a1dbb8bdd8669f1bc7de3b19f4d9dd089f43d5989d1bb3488ae88233b603ffffff", + "cborBytes": [ + 191, 27, 100, 18, 78, 147, 214, 5, 152, 235, 216, 102, 159, 27, 38, 96, 252, 232, 83, 62, 190, 54, 159, 65, 2, + 255, 255, 67, 0, 253, 253, 159, 27, 205, 232, 83, 232, 198, 44, 78, 61, 66, 58, 33, 27, 255, 255, 255, 255, 255, + 255, 255, 238, 75, 99, 126, 182, 226, 186, 201, 183, 93, 233, 4, 45, 75, 180, 50, 3, 173, 112, 6, 20, 251, 71, + 249, 41, 255, 67, 45, 18, 110, 191, 9, 71, 245, 137, 77, 128, 135, 122, 166, 14, 65, 17, 255, 74, 207, 14, 4, 136, + 88, 144, 161, 219, 184, 189, 216, 102, 159, 27, 199, 222, 59, 25, 244, 217, 221, 8, 159, 67, 213, 152, 157, 27, + 179, 72, 138, 232, 130, 51, 182, 3, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 315, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b0056001de" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11133214659612168789" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13127779892683257536" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4343532612444241632" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "655192898542255919" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a558ed" + }, + { + "_tag": "ByteArray", + "bytearray": "28" + }, + { + "_tag": "ByteArray", + "bytearray": "d40a36c11071ad680c836c" + }, + { + "_tag": "ByteArray", + "bytearray": "fe7107ea1c8abd9a2e732a" + }, + { + "_tag": "ByteArray", + "bytearray": "78be60f7fbfda31c019182" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4072010723437703061" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb5104" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7494597053386354307" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + } + ] + }, + "cborHex": "bf079f45b0056001de1b9a811fbf225ad2551bb62f3e4228e6b6c01b3c4753e5e3103ee0ff1b0917b67848f83f2fd8669f1bfffffffffffffffe9f43a558ed41284bd40a36c11071ad680c836c4bfe7107ea1c8abd9a2e732a4b78be60f7fbfda31c019182ffff1b3882b02db415ef9543fb51041b6802284fddc86e8306ff", + "cborBytes": [ + 191, 7, 159, 69, 176, 5, 96, 1, 222, 27, 154, 129, 31, 191, 34, 90, 210, 85, 27, 182, 47, 62, 66, 40, 230, 182, + 192, 27, 60, 71, 83, 229, 227, 16, 62, 224, 255, 27, 9, 23, 182, 120, 72, 248, 63, 47, 216, 102, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 254, 159, 67, 165, 88, 237, 65, 40, 75, 212, 10, 54, 193, 16, 113, 173, 104, 12, + 131, 108, 75, 254, 113, 7, 234, 28, 138, 189, 154, 46, 115, 42, 75, 120, 190, 96, 247, 251, 253, 163, 28, 1, 145, + 130, 255, 255, 27, 56, 130, 176, 45, 180, 21, 239, 149, 67, 251, 81, 4, 27, 104, 2, 40, 79, 221, 200, 110, 131, 6, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 316, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "064a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7758591581111473328" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce6b6049c997881a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4663791192687089444" + } + } + ] + } + } + ] + }, + "cborHex": "bf42064a9f1b6bac0defad7c54b048ce6b6049c997881a1b40b91d6142b59724ffff", + "cborBytes": [ + 191, 66, 6, 74, 159, 27, 107, 172, 13, 239, 173, 124, 84, 176, 72, 206, 107, 96, 73, 201, 151, 136, 26, 27, 64, + 185, 29, 97, 66, 181, 151, 36, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 317, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "96323d50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7ce6e8ebaaca5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b78a27ed327081d1617510" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e90f97d22dd285e5f7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3730359994912427725" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4067992982327564391" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f504ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85803e1a" + } + } + ] + }, + "cborHex": "bf4496323d50414247b7ce6e8ebaaca54bb78a27ed327081d161751049e90f97d22dd285e5f7bf41e11b33c4e6a6ad154ecd41ef1b38746a10746a9867ff43f504ab4485803e1aff", + "cborBytes": [ + 191, 68, 150, 50, 61, 80, 65, 66, 71, 183, 206, 110, 142, 186, 172, 165, 75, 183, 138, 39, 237, 50, 112, 129, 209, + 97, 117, 16, 73, 233, 15, 151, 210, 45, 210, 133, 229, 247, 191, 65, 225, 27, 51, 196, 230, 166, 173, 21, 78, 205, + 65, 239, 27, 56, 116, 106, 16, 116, 106, 152, 103, 255, 67, 245, 4, 171, 68, 133, 128, 62, 26, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 318, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2efdae4cfeb8a8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3086735423536860037" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8571246894285624058" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10405910131377014480" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10227629521126784607" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12102043229840262928" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16627146836992543600" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ce6e200c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "960293411400838239" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c7b053d887dea5c24745dc1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15077723207509083779" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a57900073337bd2866e10b" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6bb8109d25d9fa30de42a51" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7f0ae129" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8388504495306304294" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4743472821806476374" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14397756584359566628" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1fce75833aeea5410f" + }, + { + "_tag": "ByteArray", + "bytearray": "5a024cc7f0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11716492517362240317" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6e74062b87a759e4d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14902048035881497300" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3706223734804011766" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4" + } + ] + } + } + ] + }, + "cborHex": "bf472efdae4cfeb8a8bf1b2ad6498373878b851b76f32fa3501092fa1b90693821b15d86d01b8defd6dc750f7e5f1ba7f31832bb0cc7101be6bf7df42f334b70459ce6e200c11b0d53a5c512b1ec5fff4c8c7b053d887dea5c24745dc11bd13ed55f3d3e06834ba57900073337bd2866e10ba04cb6bb8109d25d9fa30de42a519f447f0ae129ff41c0d8669f1b7469f464ef7feb269f1b41d43366417eac561bc7cf1b54b54b1d24491fce75833aeea5410f455a024cc7f01ba29957de2ee60b3dffff49d6e74062b87a759e4dd8669f1bceceb5bbf48632d49f1b336f26d9b31d5af641e4ffffff", + "cborBytes": [ + 191, 71, 46, 253, 174, 76, 254, 184, 168, 191, 27, 42, 214, 73, 131, 115, 135, 139, 133, 27, 118, 243, 47, 163, + 80, 16, 146, 250, 27, 144, 105, 56, 33, 177, 93, 134, 208, 27, 141, 239, 214, 220, 117, 15, 126, 95, 27, 167, 243, + 24, 50, 187, 12, 199, 16, 27, 230, 191, 125, 244, 47, 51, 75, 112, 69, 156, 230, 226, 0, 193, 27, 13, 83, 165, + 197, 18, 177, 236, 95, 255, 76, 140, 123, 5, 61, 136, 125, 234, 92, 36, 116, 93, 193, 27, 209, 62, 213, 95, 61, + 62, 6, 131, 75, 165, 121, 0, 7, 51, 55, 189, 40, 102, 225, 11, 160, 76, 182, 187, 129, 9, 210, 93, 159, 163, 13, + 228, 42, 81, 159, 68, 127, 10, 225, 41, 255, 65, 192, 216, 102, 159, 27, 116, 105, 244, 100, 239, 127, 235, 38, + 159, 27, 65, 212, 51, 102, 65, 126, 172, 86, 27, 199, 207, 27, 84, 181, 75, 29, 36, 73, 31, 206, 117, 131, 58, + 238, 165, 65, 15, 69, 90, 2, 76, 199, 240, 27, 162, 153, 87, 222, 46, 230, 11, 61, 255, 255, 73, 214, 231, 64, 98, + 184, 122, 117, 158, 77, 216, 102, 159, 27, 206, 206, 181, 187, 244, 134, 50, 212, 159, 27, 51, 111, 38, 217, 179, + 29, 90, 246, 65, 228, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 319, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1698089288571677809" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9442297c640a79a2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12954676113816417652" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2704312870994760075" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "85c4ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8326770863854337403" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12287277300798438683" + } + }, + { + "_tag": "ByteArray", + "bytearray": "78e1b557" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14036792404231343499" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38cc870b297a2c7008e1c0b7" + } + } + ] + }, + "cborHex": "bf1b1790d3360a35ec71489442297c640a79a21bb3c84149e843f574d8669f1b2587a63a6528d18b9f4385c4ab1b738ea1fbca1c3d7b1baa852d9ab2cfbd1b4478e1b557ffff1bc2ccb452501c4d8b4c38cc870b297a2c7008e1c0b7ff", + "cborBytes": [ + 191, 27, 23, 144, 211, 54, 10, 53, 236, 113, 72, 148, 66, 41, 124, 100, 10, 121, 162, 27, 179, 200, 65, 73, 232, + 67, 245, 116, 216, 102, 159, 27, 37, 135, 166, 58, 101, 40, 209, 139, 159, 67, 133, 196, 171, 27, 115, 142, 161, + 251, 202, 28, 61, 123, 27, 170, 133, 45, 154, 178, 207, 189, 27, 68, 120, 225, 181, 87, 255, 255, 27, 194, 204, + 180, 82, 80, 28, 77, 139, 76, 56, 204, 135, 11, 41, 122, 44, 112, 8, 225, 192, 183, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 320, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c71" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15583366019713696650" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c1a0fc6c25e25" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f4e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "698aa8dafef4123550b237" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c17bb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14832881389392874646" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf5a1aa953a91efb2f04f298" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14353678918849578832" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ed5c4f33670864" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4576869257977896984" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ef5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18192221807554807153" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8af38" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf422c71d8669f1bd8433cd4a9ed838a9f477c1a0fc6c25e25ffff425f4e9f4b698aa8dafef4123550b237ff436c17bb9f1bcdd8fb092243cc964cbf5a1aa953a91efb2f04f2981bc73282ed7a0ac75047ed5c4f336708641b3f844e57412da018ff428ef51bfc77c158f26b457143b8af38a0ff", + "cborBytes": [ + 191, 66, 44, 113, 216, 102, 159, 27, 216, 67, 60, 212, 169, 237, 131, 138, 159, 71, 124, 26, 15, 198, 194, 94, 37, + 255, 255, 66, 95, 78, 159, 75, 105, 138, 168, 218, 254, 244, 18, 53, 80, 178, 55, 255, 67, 108, 23, 187, 159, 27, + 205, 216, 251, 9, 34, 67, 204, 150, 76, 191, 90, 26, 169, 83, 169, 30, 251, 47, 4, 242, 152, 27, 199, 50, 130, + 237, 122, 10, 199, 80, 71, 237, 92, 79, 51, 103, 8, 100, 27, 63, 132, 78, 87, 65, 45, 160, 24, 255, 66, 142, 245, + 27, 252, 119, 193, 88, 242, 107, 69, 113, 67, 184, 175, 56, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 321, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5794470788674843057" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4986084897085410629" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "74" + }, + { + "_tag": "ByteArray", + "bytearray": "6486" + } + ] + } + } + ] + }, + "cborHex": "bf1b506a187b5c5771b1d8669f1b453221cbe6b74d459f4174426486ffffff", + "cborBytes": [ + 191, 27, 80, 106, 24, 123, 92, 87, 113, 177, 216, 102, 159, 27, 69, 50, 33, 203, 230, 183, 77, 69, 159, 65, 116, + 66, 100, 134, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 322, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14804673992465086374" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6c4dd4e21b3dbe56ce8" + } + } + ] + }, + "cborHex": "bf1bcd74c48ec05877a64aa6c4dd4e21b3dbe56ce8ff", + "cborBytes": [ + 191, 27, 205, 116, 196, 142, 192, 88, 119, 166, 74, 166, 196, 221, 78, 33, 179, 219, 229, 108, 232, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 323, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "076b8801" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09b6ce5c6df587044297d62d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0dc89880f2c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0700" + } + } + ] + }, + "cborHex": "bf44076b88014c09b6ce5c6df587044297d62d46c0dc89880f2c420700ff", + "cborBytes": [ + 191, 68, 7, 107, 136, 1, 76, 9, 182, 206, 92, 109, 245, 135, 4, 66, 151, 214, 45, 70, 192, 220, 137, 136, 15, 44, + 66, 7, 0, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 324, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "34" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12086747042482827877" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cadecb82417f04d8ec" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11824636421456488221" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2302554759949101589" + } + }, + { + "_tag": "ByteArray", + "bytearray": "633ebf" + } + ] + } + } + ] + }, + "cborHex": "bf4134d8669f1ba7bcc065953132659f49cadecb82417f04d8ec1ba4198c2cfb0f671d1b1ff4515acea6aa1543633ebfffffff", + "cborBytes": [ + 191, 65, 52, 216, 102, 159, 27, 167, 188, 192, 101, 149, 49, 50, 101, 159, 73, 202, 222, 203, 130, 65, 127, 4, + 216, 236, 27, 164, 25, 140, 44, 251, 15, 103, 29, 27, 31, 244, 81, 90, 206, 166, 170, 21, 67, 99, 62, 191, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 325, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa" + }, + { + "_tag": "ByteArray", + "bytearray": "d0afd75f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06fc8a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9502809919225388593" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13489804399802943948" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1061768184472067687" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0207fa0504060019" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4038766679605194788" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7576317759735684192" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c131e4b0b6a2b5c582e917f" + } + } + ] + }, + "cborHex": "bf0a9f41fa44d0afd75f064306fc8aff11d87d9f1b83e0c346037cde311bbb3569a12bc189ccff1b0ebc2889cd44de67bf480207fa05040600191b380c94e5948d3024ff1b69247cdc86875c60071bfffffffffffffff14c2c131e4b0b6a2b5c582e917fff", + "cborBytes": [ + 191, 10, 159, 65, 250, 68, 208, 175, 215, 95, 6, 67, 6, 252, 138, 255, 17, 216, 125, 159, 27, 131, 224, 195, 70, + 3, 124, 222, 49, 27, 187, 53, 105, 161, 43, 193, 137, 204, 255, 27, 14, 188, 40, 137, 205, 68, 222, 103, 191, 72, + 2, 7, 250, 5, 4, 6, 0, 25, 27, 56, 12, 148, 229, 148, 141, 48, 36, 255, 27, 105, 36, 124, 220, 134, 135, 92, 96, + 7, 27, 255, 255, 255, 255, 255, 255, 255, 241, 76, 44, 19, 30, 75, 11, 106, 43, 92, 88, 46, 145, 127, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 326, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "105584fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13596759133510868457" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bdd239f9c02" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cc522a9b603" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18035320063171231573" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b4f5d3b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15962987571104899888" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d99b02c4d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7276777621404452546" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f5c498a98ed02d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14975729201879690482" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6b5fb96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b3d1173c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5cf05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13937331797249362532" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf44105584fe1bbcb16464a9769de9462bdd239f9c02bf460cc522a9b6031bfa4a540acfcbff55441b4f5d3b1bdd87ec9ed1aee330455d99b02c4d1b64fc4eb1515306c2488f5c498a98ed02d51bcfd47a5d427bacf244e6b5fb96459b3d1173c343f5cf051bc16b596d2bce0a64ffff", + "cborBytes": [ + 191, 68, 16, 85, 132, 254, 27, 188, 177, 100, 100, 169, 118, 157, 233, 70, 43, 221, 35, 159, 156, 2, 191, 70, 12, + 197, 34, 169, 182, 3, 27, 250, 74, 84, 10, 207, 203, 255, 85, 68, 27, 79, 93, 59, 27, 221, 135, 236, 158, 209, + 174, 227, 48, 69, 93, 153, 176, 44, 77, 27, 100, 252, 78, 177, 81, 83, 6, 194, 72, 143, 92, 73, 138, 152, 237, 2, + 213, 27, 207, 212, 122, 93, 66, 123, 172, 242, 68, 230, 181, 251, 150, 69, 155, 61, 17, 115, 195, 67, 245, 207, 5, + 27, 193, 107, 89, 109, 43, 206, 10, 100, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 327, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36f27788" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14901459209800652027" + } + } + } + ] + }, + "cborHex": "bf41ae4436f2778841ee1bcecc9e33332414fbff", + "cborBytes": [191, 65, 174, 68, 54, 242, 119, 136, 65, 238, 27, 206, 204, 158, 51, 51, 36, 20, 251, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 328, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9643246627674978621" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f004f8fd07fbfc4a0c6c" + }, + { + "_tag": "ByteArray", + "bytearray": "465fa615301b29" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a644e" + } + } + ] + }, + "cborHex": "bf1b85d3b1b73c0cf93d9f4af004f8fd07fbfc4a0c6c47465fa615301b29ff4135437a644eff", + "cborBytes": [ + 191, 27, 133, 211, 177, 183, 60, 12, 249, 61, 159, 74, 240, 4, 248, 253, 7, 251, 252, 74, 12, 108, 71, 70, 95, + 166, 21, 48, 27, 41, 255, 65, 53, 67, 122, 100, 78, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 329, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1130763616865726212" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8375043967884782902" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c03b98d978a5642" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17139748163365295939" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b46caecc0195d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15923919019008275610" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7106761581022614258" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38e3907856af6f72491d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15021246115603967958" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13946929564962162275" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8917067488923111013" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16516275862884059738" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10321713826237386994" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b11" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2471f85c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13057760988413033071" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31bf80379c4700622f55" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "305aa4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5297b78b4c5ee537571392b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "125222241084172562" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0cbf1b0fb14784bc37af041b743a221dac0ced36482c03b98d978a56421beddc9e24f10ad743474b46caecc0195d1bdcfd1ffab013349aff0e801b62a04a01343f12f24a38e3907856af6f72491d1bd0762fc1944a6fd6d8669f1bc18d728b9af686639f1b7bbfc9a2f3724e65ffff1be5359963eb900a5abf1b8f3e1809c61e10f2420b11442471f85c1bb5367c6f9c4ffa6f4a31bf80379c4700622f5543305aa44c5297b78b4c5ee537571392b31b01bce0f6fdcce912ffff", + "cborBytes": [ + 191, 12, 191, 27, 15, 177, 71, 132, 188, 55, 175, 4, 27, 116, 58, 34, 29, 172, 12, 237, 54, 72, 44, 3, 185, 141, + 151, 138, 86, 66, 27, 237, 220, 158, 36, 241, 10, 215, 67, 71, 75, 70, 202, 236, 192, 25, 93, 27, 220, 253, 31, + 250, 176, 19, 52, 154, 255, 14, 128, 27, 98, 160, 74, 1, 52, 63, 18, 242, 74, 56, 227, 144, 120, 86, 175, 111, + 114, 73, 29, 27, 208, 118, 47, 193, 148, 74, 111, 214, 216, 102, 159, 27, 193, 141, 114, 139, 154, 246, 134, 99, + 159, 27, 123, 191, 201, 162, 243, 114, 78, 101, 255, 255, 27, 229, 53, 153, 99, 235, 144, 10, 90, 191, 27, 143, + 62, 24, 9, 198, 30, 16, 242, 66, 11, 17, 68, 36, 113, 248, 92, 27, 181, 54, 124, 111, 156, 79, 250, 111, 74, 49, + 191, 128, 55, 156, 71, 0, 98, 47, 85, 67, 48, 90, 164, 76, 82, 151, 183, 139, 76, 94, 229, 55, 87, 19, 146, 179, + 27, 1, 188, 224, 246, 253, 204, 233, 18, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 330, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01f8fe6205bd008ffc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11732936310500985693" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0902c2d2917e6166" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fffb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1867703020f00065707" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18331110375073331143" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4075447311449847719" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2115267473705179389" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8344611910643537724" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14900790245027950399" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18172858959025348378" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15792624607712644775" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14256984938605267825" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17665462618983280470" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3009173897573037903" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + } + ] + }, + "cborHex": "bf014901f8fe6205bd008ffc1ba2d3c3691fb18b5dbf480902c2d2917e61660442fffb4ab1867703020f00065707ff1bfe652fc384b937c7bf1b388ee5bcb3c9f7a71b1d5af08f672298fd1b73ce04523266d73c41b71bceca3dc7b37f2f3f1bfc32f6f075fb1f1a1bdb2aac6865ce0ea71bc5dafc43d1a94b711bf52854a80570af561b29c2bbb77037f74fff1bfffffffffffffff20fff", + "cborBytes": [ + 191, 1, 73, 1, 248, 254, 98, 5, 189, 0, 143, 252, 27, 162, 211, 195, 105, 31, 177, 139, 93, 191, 72, 9, 2, 194, + 210, 145, 126, 97, 102, 4, 66, 255, 251, 74, 177, 134, 119, 3, 2, 15, 0, 6, 87, 7, 255, 27, 254, 101, 47, 195, + 132, 185, 55, 199, 191, 27, 56, 142, 229, 188, 179, 201, 247, 167, 27, 29, 90, 240, 143, 103, 34, 152, 253, 27, + 115, 206, 4, 82, 50, 102, 215, 60, 65, 183, 27, 206, 202, 61, 199, 179, 127, 47, 63, 27, 252, 50, 246, 240, 117, + 251, 31, 26, 27, 219, 42, 172, 104, 101, 206, 14, 167, 27, 197, 218, 252, 67, 209, 169, 75, 113, 27, 245, 40, 84, + 168, 5, 112, 175, 86, 27, 41, 194, 187, 183, 112, 55, 247, 79, 255, 27, 255, 255, 255, 255, 255, 255, 255, 242, + 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 331, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12505380533286473675" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17125228530361108028" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1082370519035601415" + } + } + ] + } + } + ] + }, + "cborHex": "bf121bad8c0956b3a00fcb1bffffffffffffffefd8669f1beda9089d718f063c9f1b0f055a409e78e207ffffff", + "cborBytes": [ + 191, 18, 27, 173, 140, 9, 86, 179, 160, 15, 203, 27, 255, 255, 255, 255, 255, 255, 255, 239, 216, 102, 159, 27, + 237, 169, 8, 157, 113, 143, 6, 60, 159, 27, 15, 5, 90, 64, 158, 120, 226, 7, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 332, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7076130932321130175" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10111615363535373516" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4398846028312131034" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7794556432851631271" + } + }, + { + "_tag": "ByteArray", + "bytearray": "379f27a12609d33cfd3e25" + }, + { + "_tag": "ByteArray", + "bytearray": "7a2685e53480dcb001" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8915439068355489354" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9244809781859433501" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13957089607018421435" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12391592742773133647" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "044c572c2ff52480eb744acd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b261698" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12637000500463764222" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2d038d740ec0d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e561830a135d35f42441e32" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b623377978d2796bf9f1b8c53ac9978e884cc1b3d0bd7281b2eb5da1b6c2bd3c741db7ca74b379f27a12609d33cfd3e25497a2685e53480dcb001ff1b7bba0098bdf7ee4a801b804c2983f7c9bc1d1bc1b18b0cbca11cbb1babf7c7f2324d114fbf4c044c572c2ff52480eb744acd448b261698412c1baf5fa500609382fe47f2d038d740ec0d4c6e561830a135d35f42441e32ffff", + "cborBytes": [ + 191, 27, 98, 51, 119, 151, 141, 39, 150, 191, 159, 27, 140, 83, 172, 153, 120, 232, 132, 204, 27, 61, 11, 215, 40, + 27, 46, 181, 218, 27, 108, 43, 211, 199, 65, 219, 124, 167, 75, 55, 159, 39, 161, 38, 9, 211, 60, 253, 62, 37, 73, + 122, 38, 133, 229, 52, 128, 220, 176, 1, 255, 27, 123, 186, 0, 152, 189, 247, 238, 74, 128, 27, 128, 76, 41, 131, + 247, 201, 188, 29, 27, 193, 177, 139, 12, 188, 161, 28, 187, 27, 171, 247, 199, 242, 50, 77, 17, 79, 191, 76, 4, + 76, 87, 44, 47, 245, 36, 128, 235, 116, 74, 205, 68, 139, 38, 22, 152, 65, 44, 27, 175, 95, 165, 0, 96, 147, 130, + 254, 71, 242, 208, 56, 215, 64, 236, 13, 76, 110, 86, 24, 48, 161, 53, 211, 95, 66, 68, 30, 50, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 333, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5082045251832928918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "219846ea82876fd20dc0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14620255886530066516" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61159d355151984d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16589711254174534316" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6409016034909176608" + } + } + } + ] + }, + "cborHex": "bf1b46870d3b0ff65a964a219846ea82876fd20dc01bcae5954471f038544861159d355151984d1be63a7e7d575f8aac1b58f16620988b4320ff", + "cborBytes": [ + 191, 27, 70, 135, 13, 59, 15, 246, 90, 150, 74, 33, 152, 70, 234, 130, 135, 111, 210, 13, 192, 27, 202, 229, 149, + 68, 113, 240, 56, 84, 72, 97, 21, 157, 53, 81, 81, 152, 77, 27, 230, 58, 126, 125, 87, 95, 138, 172, 27, 88, 241, + 102, 32, 152, 139, 67, 32, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 334, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18120644821598432751" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13271472887182717788" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7264" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3168683634615504221" + } + } + ] + } + } + ] + }, + "cborHex": "bf10d8669f1bfb7976753c656def9f1bb82dbe468ec0f35c1bffffffffffffffed1bfffffffffffffff74272641b2bf96cfa2ed9cd5dffffff", + "cborBytes": [ + 191, 16, 216, 102, 159, 27, 251, 121, 118, 117, 60, 101, 109, 239, 159, 27, 184, 45, 190, 70, 142, 192, 243, 92, + 27, 255, 255, 255, 255, 255, 255, 255, 237, 27, 255, 255, 255, 255, 255, 255, 255, 247, 66, 114, 100, 27, 43, 249, + 108, 250, 46, 217, 205, 93, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 335, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7052492118059501477" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8303437" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c88b8d5b04c4c9c3fcb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15764232894523363898" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53301901ce77" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6940415296756747572" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d1c3b2f7ec52ddaa53" + }, + { + "_tag": "ByteArray", + "bytearray": "e40af3222f3e914ba5" + } + ] + } + } + ] + }, + "cborHex": "bf1b61df7c37362dc7a544a83034374a1c88b8d5b04c4c9c3fcb1bdac5ce4b8a97d23a4653301901ce77d8669f1b60514ef0c4df8d349f49d1c3b2f7ec52ddaa5349e40af3222f3e914ba5ffffff", + "cborBytes": [ + 191, 27, 97, 223, 124, 55, 54, 45, 199, 165, 68, 168, 48, 52, 55, 74, 28, 136, 184, 213, 176, 76, 76, 156, 63, + 203, 27, 218, 197, 206, 75, 138, 151, 210, 58, 70, 83, 48, 25, 1, 206, 119, 216, 102, 159, 27, 96, 81, 78, 240, + 196, 223, 141, 52, 159, 73, 209, 195, 178, 247, 236, 82, 221, 170, 83, 73, 228, 10, 243, 34, 47, 62, 145, 75, 165, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 336, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5379076664505890221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d343959f3d6f91cacfe" + } + } + ] + }, + "cborHex": "bf1b4aa651ba0f7775ad4a5d343959f3d6f91cacfeff", + "cborBytes": [191, 27, 74, 166, 81, 186, 15, 119, 117, 173, 74, 93, 52, 57, 89, 243, 214, 249, 28, 172, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 337, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1941502475244018506" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f2772dfc312000" + }, + { + "_tag": "ByteArray", + "bytearray": "21bc2abe15" + }, + { + "_tag": "ByteArray", + "bytearray": "8c134d87a5b8e3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12875467685972379917" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "380001222409143555" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2545909601255723857" + } + }, + { + "_tag": "ByteArray", + "bytearray": "71f33486e5" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4dec93cc" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2950725834254485433" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77951f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14520628190945004625" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10649809391960266897" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60d33b25a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "312f9f0fb657b7ad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b04d3f6b60d30e989e02e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "976247963679328284" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1af19a36f7761b4a9f47f2772dfc3120004521bc2abe15478c134d87a5b8e3ff1bb2aed9a4ab67890dd8669f1b0546091933e945039f1b2354e34b251a93514571f33486e5ffff444dec93cc9f1b28f315833c4e87b9ff4377951fbf1bc983a267f4cccc511b93cbb937856918914560d33b25a148312f9f0fb657b7ad4b9b04d3f6b60d30e989e02e1b0d8c5459bfce081cffff", + "cborBytes": [ + 191, 27, 26, 241, 154, 54, 247, 118, 27, 74, 159, 71, 242, 119, 45, 252, 49, 32, 0, 69, 33, 188, 42, 190, 21, 71, + 140, 19, 77, 135, 165, 184, 227, 255, 27, 178, 174, 217, 164, 171, 103, 137, 13, 216, 102, 159, 27, 5, 70, 9, 25, + 51, 233, 69, 3, 159, 27, 35, 84, 227, 75, 37, 26, 147, 81, 69, 113, 243, 52, 134, 229, 255, 255, 68, 77, 236, 147, + 204, 159, 27, 40, 243, 21, 131, 60, 78, 135, 185, 255, 67, 119, 149, 31, 191, 27, 201, 131, 162, 103, 244, 204, + 204, 81, 27, 147, 203, 185, 55, 133, 105, 24, 145, 69, 96, 211, 59, 37, 161, 72, 49, 47, 159, 15, 182, 87, 183, + 173, 75, 155, 4, 211, 246, 182, 13, 48, 233, 137, 224, 46, 27, 13, 140, 84, 89, 191, 206, 8, 28, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 338, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11371776044391460788" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64aab6b962b8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7160321553826229844" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7dead284b8bacf969" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e203" + } + } + ] + }, + "cborHex": "bf1b9dd0aa0fe73fefb44664aab6b962b81bfffffffffffffffa8041051b635e92842562ae5449e7dead284b8bacf96942e203ff", + "cborBytes": [ + 191, 27, 157, 208, 170, 15, 231, 63, 239, 180, 70, 100, 170, 182, 185, 98, 184, 27, 255, 255, 255, 255, 255, 255, + 255, 250, 128, 65, 5, 27, 99, 94, 146, 132, 37, 98, 174, 84, 73, 231, 222, 173, 40, 75, 139, 172, 249, 105, 66, + 226, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 339, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4ee7a11229cf92" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16633605957582307837" + } + } + ] + } + } + ] + }, + "cborHex": "bf0dd8799f0cff149f474ee7a11229cf921be6d6707d6383c1fdffff", + "cborBytes": [ + 191, 13, 216, 121, 159, 12, 255, 20, 159, 71, 78, 231, 161, 18, 41, 207, 146, 27, 230, 214, 112, 125, 99, 131, + 193, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 340, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6847615770132741648" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c8a28306f14" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7351339012152625803" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5580347274437643783" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10103623337647178059" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5169368011624757171" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16850169540945761559" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "372623580775464516" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "724f1319" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1815845312179626319" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "232384698525776916" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "730687a3f8acd05b1d2080" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "262ebef1d4686a80e542" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5f079e43411ffe10468c8a28306f141b660533e1ead40a8b1b4d716047b82cce071b8c3747e4f0ce814bd8669f1b47bd48d16e2937b380ff1be9d7d3ebe52dd517bf1b052bd32c270e3e4444724f13191b19332db0cf86614f1b033998a6eedd7c144b730687a3f8acd05b1d20804a262ebef1d4686a80e542ffff", + "cborBytes": [ + 191, 27, 95, 7, 158, 67, 65, 31, 254, 16, 70, 140, 138, 40, 48, 111, 20, 27, 102, 5, 51, 225, 234, 212, 10, 139, + 27, 77, 113, 96, 71, 184, 44, 206, 7, 27, 140, 55, 71, 228, 240, 206, 129, 75, 216, 102, 159, 27, 71, 189, 72, + 209, 110, 41, 55, 179, 128, 255, 27, 233, 215, 211, 235, 229, 45, 213, 23, 191, 27, 5, 43, 211, 44, 39, 14, 62, + 68, 68, 114, 79, 19, 25, 27, 25, 51, 45, 176, 207, 134, 97, 79, 27, 3, 57, 152, 166, 238, 221, 124, 20, 75, 115, + 6, 135, 163, 248, 172, 208, 91, 29, 32, 128, 74, 38, 46, 190, 241, 212, 104, 106, 128, 229, 66, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 341, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bd4f26252" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1136175224140281709" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9772534802234565345" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4205e775c33a6e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8507695591134799474" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1809967555169866769" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f4b570" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "995a2aad4da7cc45254fc85a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c30fbc1" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1d40e7f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f668" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16095235604074571500" + } + }, + { + "_tag": "ByteArray", + "bytearray": "71e4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16841352772794696171" + } + } + ] + } + } + ] + }, + "cborHex": "bf452bd4f26252d8669f1b0fc48158bd7b376d9f1b879f04a0225562e1ffff474205e775c33a6ed8669f1b761168107ebf26729f1b191e4be6dce1d41143f4b570ffff4254f34c995a2aad4da7cc45254fc85a447c30fbc1a044e1d40e7f9f42f6681bdf5dc3817515a6ec4271e41be9b8811e1777c1ebffff", + "cborBytes": [ + 191, 69, 43, 212, 242, 98, 82, 216, 102, 159, 27, 15, 196, 129, 88, 189, 123, 55, 109, 159, 27, 135, 159, 4, 160, + 34, 85, 98, 225, 255, 255, 71, 66, 5, 231, 117, 195, 58, 110, 216, 102, 159, 27, 118, 17, 104, 16, 126, 191, 38, + 114, 159, 27, 25, 30, 75, 230, 220, 225, 212, 17, 67, 244, 181, 112, 255, 255, 66, 84, 243, 76, 153, 90, 42, 173, + 77, 167, 204, 69, 37, 79, 200, 90, 68, 124, 48, 251, 193, 160, 68, 225, 212, 14, 127, 159, 66, 246, 104, 27, 223, + 93, 195, 129, 117, 21, 166, 236, 66, 113, 228, 27, 233, 184, 129, 30, 23, 119, 193, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 342, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14155068969274744748" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1523ac6f38bcce4a87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e119c7c2b3266cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "257e7100c8ebeb8e47" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e603b06f0bd2602b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2eaa5362a3e81105b1c904" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6580130340920615705" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41b712e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14418090275163953347" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f3f6d79a7edc7226a570c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7019367904905870709" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9018dd52ca8fd04e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1585793039819123690" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12138724244350363673" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6181987518627286002" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13189489520283980880" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07cf2eabc8d19177" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6594203634720389251" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bc470e83b14c69facbf491523ac6f38bcce4a87489e119c7c2b3266cb49257e7100c8ebeb8e4748e603b06f0bd2602b4b2eaa5362a3e81105b1c9041b5b5151ae9a57e3194441b712e81bc81758b706a958c34b5f3f6d79a7edc7226a570c1b6169cdeb57b13d75ff489018dd52ca8fd04ebf1b1601de5e29b4abea1ba8756962f2ece8191b55cad4e505ad8bf21bb70a7ad6794394504807cf2eabc8d191771b5b835144a8193883ffff", + "cborBytes": [ + 191, 27, 196, 112, 232, 59, 20, 198, 159, 172, 191, 73, 21, 35, 172, 111, 56, 188, 206, 74, 135, 72, 158, 17, 156, + 124, 43, 50, 102, 203, 73, 37, 126, 113, 0, 200, 235, 235, 142, 71, 72, 230, 3, 176, 111, 11, 210, 96, 43, 75, 46, + 170, 83, 98, 163, 232, 17, 5, 177, 201, 4, 27, 91, 81, 81, 174, 154, 87, 227, 25, 68, 65, 183, 18, 232, 27, 200, + 23, 88, 183, 6, 169, 88, 195, 75, 95, 63, 109, 121, 167, 237, 199, 34, 106, 87, 12, 27, 97, 105, 205, 235, 87, + 177, 61, 117, 255, 72, 144, 24, 221, 82, 202, 143, 208, 78, 191, 27, 22, 1, 222, 94, 41, 180, 171, 234, 27, 168, + 117, 105, 98, 242, 236, 232, 25, 27, 85, 202, 212, 229, 5, 173, 139, 242, 27, 183, 10, 122, 214, 121, 67, 148, 80, + 72, 7, 207, 46, 171, 200, 209, 145, 119, 27, 91, 131, 81, 68, 168, 25, 56, 131, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 343, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d9fe14c3a74fd" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "966b9f4ae5c7bb18542965" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2861643678040754189" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4972453276041491771" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6637196389257881791" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a6f9c505e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7214452517137039738" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33561bf85535c88e73" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11443142245201479019" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18432067747620190820" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b903c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d151c7ae7dc" + } + } + ] + }, + "cborHex": "bf476d9fe14c3a74fd804b966b9f4ae5c7bb18542965bf1b27b699c3775c880d1b4501b3e8ccae353b1b5c1c0ef35e38a8bf453a6f9c505e1b641ee2572ce0417a4933561bf85535c88e731b9ece353e5f80056b1bffcbdbf58cd5fa64ff43b903c1461d151c7ae7dcff", + "cborBytes": [ + 191, 71, 109, 159, 225, 76, 58, 116, 253, 128, 75, 150, 107, 159, 74, 229, 199, 187, 24, 84, 41, 101, 191, 27, 39, + 182, 153, 195, 119, 92, 136, 13, 27, 69, 1, 179, 232, 204, 174, 53, 59, 27, 92, 28, 14, 243, 94, 56, 168, 191, 69, + 58, 111, 156, 80, 94, 27, 100, 30, 226, 87, 44, 224, 65, 122, 73, 51, 86, 27, 248, 85, 53, 200, 142, 115, 27, 158, + 206, 53, 62, 95, 128, 5, 107, 27, 255, 203, 219, 245, 140, 213, 250, 100, 255, 67, 185, 3, 193, 70, 29, 21, 28, + 122, 231, 220, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 344, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1052c8a8d6113a902b33759" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "20348e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2653" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "213ca28fdd4003" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6307613515364456858" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7044" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51cd7cef" + } + } + ] + } + } + ] + }, + "cborHex": "bf4cd1052c8a8d6113a902b33759bf4320348e42265347213ca28fdd40031b57892512b3c0599a4270444451cd7cefffff", + "cborBytes": [ + 191, 76, 209, 5, 44, 138, 141, 97, 19, 169, 2, 179, 55, 89, 191, 67, 32, 52, 142, 66, 38, 83, 71, 33, 60, 162, + 143, 221, 64, 3, 27, 87, 137, 37, 18, 179, 192, 89, 154, 66, 112, 68, 68, 81, 205, 124, 239, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 345, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2175275857952382921" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10444521668269943016" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12561384567487465149" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "666371762928261360" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17238338987388163277" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8026407519817086602" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2258616602322300293" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2782526110385840235" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3abca8201985a6c78d54055b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3648734044495118294" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11300391144272018253" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12370575723384951819" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1850457208383786591" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10125806145032410472" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "946308829917868971" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cff3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4190194891644592910" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15885972816957353211" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf75b8cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10359820381760938652" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11399596638778302807" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "338853434271080001" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19807c4dd1d946d988cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18cfcd9b8237ce2acb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2fc1e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59154d2c23" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17145456461131967471" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2e3cf43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fccbb" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14477174378167997856" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9531111795065280019" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17747662117403652630" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10160958592209913182" + } + }, + { + "_tag": "ByteArray", + "bytearray": "19e9318e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16182018781542042350" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15446109148570897396" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5061317872735576615" + } + } + } + ] + }, + "cborHex": "bf1b1e3021de21bc1fc99f419c1b90f2651eae19a8e81bae5300b6082a06bd1b093f6d9679b098f01bef3ae1f9f509d4cdff1b6f63871d1138b68abf1b1f5837d549386d85415d1b269d84c143cc206b4c3abca8201985a6c78d54055b1b32a2e8481a017fd61b9cd30ddfa94dbb4d1babad1d140b6e540b1b19ae2506e1c6ce5fff1b8c86170a431fd568bf1b0d21f6ddf711f3ab42cff31b3a26900da821e30e1bdc76501c0a412cfb44cf75b8cc1b8fc579bf9fb6629cff1b9e3380becd1e2157bf1b04b3d96734a61e414a19807c4dd1d946d988cb4918cfcd9b8237ce2acb43c2fc1e4559154d2c231bedf0e5cf95b26bef44a2e3cf43431fccbbff1bc8e94164c21715a09f1b84454fadfb66d6131bf64c5caa258072161b8d02fa012a20055e4419e9318e1be092145886834aeeff1bd65b9a6f027acbf41b463d69ca0bbd6227ff", + "cborBytes": [ + 191, 27, 30, 48, 33, 222, 33, 188, 31, 201, 159, 65, 156, 27, 144, 242, 101, 30, 174, 25, 168, 232, 27, 174, 83, + 0, 182, 8, 42, 6, 189, 27, 9, 63, 109, 150, 121, 176, 152, 240, 27, 239, 58, 225, 249, 245, 9, 212, 205, 255, 27, + 111, 99, 135, 29, 17, 56, 182, 138, 191, 27, 31, 88, 55, 213, 73, 56, 109, 133, 65, 93, 27, 38, 157, 132, 193, 67, + 204, 32, 107, 76, 58, 188, 168, 32, 25, 133, 166, 199, 141, 84, 5, 91, 27, 50, 162, 232, 72, 26, 1, 127, 214, 27, + 156, 211, 13, 223, 169, 77, 187, 77, 27, 171, 173, 29, 20, 11, 110, 84, 11, 27, 25, 174, 37, 6, 225, 198, 206, 95, + 255, 27, 140, 134, 23, 10, 67, 31, 213, 104, 191, 27, 13, 33, 246, 221, 247, 17, 243, 171, 66, 207, 243, 27, 58, + 38, 144, 13, 168, 33, 227, 14, 27, 220, 118, 80, 28, 10, 65, 44, 251, 68, 207, 117, 184, 204, 27, 143, 197, 121, + 191, 159, 182, 98, 156, 255, 27, 158, 51, 128, 190, 205, 30, 33, 87, 191, 27, 4, 179, 217, 103, 52, 166, 30, 65, + 74, 25, 128, 124, 77, 209, 217, 70, 217, 136, 203, 73, 24, 207, 205, 155, 130, 55, 206, 42, 203, 67, 194, 252, 30, + 69, 89, 21, 77, 44, 35, 27, 237, 240, 229, 207, 149, 178, 107, 239, 68, 162, 227, 207, 67, 67, 31, 204, 187, 255, + 27, 200, 233, 65, 100, 194, 23, 21, 160, 159, 27, 132, 69, 79, 173, 251, 102, 214, 19, 27, 246, 76, 92, 170, 37, + 128, 114, 22, 27, 141, 2, 250, 1, 42, 32, 5, 94, 68, 25, 233, 49, 142, 27, 224, 146, 20, 88, 134, 131, 74, 238, + 255, 27, 214, 91, 154, 111, 2, 122, 203, 244, 27, 70, 61, 105, 202, 11, 189, 98, 39, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 346, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "84" + } + ] + } + } + ] + }, + "cborHex": "bf41039f4184ffff", + "cborBytes": [191, 65, 3, 159, 65, 132, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 347, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "627b543edb9a2e3dc1969a8c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15402029847842775068" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e234ab59f72777f50c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1036650149608958214" + } + } + } + ] + }, + "cborHex": "bf4c627b543edb9a2e3dc1969a8cd8669f1bd5bf008b0ca1e01c80ff49e234ab59f72777f50c1b0e62ebd193cc2906ff", + "cborBytes": [ + 191, 76, 98, 123, 84, 62, 219, 154, 46, 61, 193, 150, 154, 140, 216, 102, 159, 27, 213, 191, 0, 139, 12, 161, 224, + 28, 128, 255, 73, 226, 52, 171, 89, 247, 39, 119, 245, 12, 27, 14, 98, 235, 209, 147, 204, 41, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 348, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9978351985569595629" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14458805778501577172" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f985f27bbaef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17947794200076934595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12756876145302790384" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0623258ee3e89b0902" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15289605247946025562" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17571487227385282295" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8888951500964915639" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4ed93787820bc" + }, + { + "_tag": "ByteArray", + "bytearray": "470a095561fac5eb1c0a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "749037951362606934" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f7a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18040177122199218193" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7664500784822441709" + } + } + } + ] + }, + "cborHex": "bf1b8a7a3a4367b080edbf1bc8a7ff3fdff3a9d446f985f27bbaef1bf9135fbbc566ddc31bb1098743ec6d60f0490623258ee3e89b09021bd42f96f717c56a5aff1bf3da76891b9cfef79f1b7b5be64b60b069b747e4ed93787820bc4a470a095561fac5eb1c0a1b0a651e0c56412756426f7aff1bfa5b9582fdd028111b6a5dc6db040b56edff", + "cborBytes": [ + 191, 27, 138, 122, 58, 67, 103, 176, 128, 237, 191, 27, 200, 167, 255, 63, 223, 243, 169, 212, 70, 249, 133, 242, + 123, 186, 239, 27, 249, 19, 95, 187, 197, 102, 221, 195, 27, 177, 9, 135, 67, 236, 109, 96, 240, 73, 6, 35, 37, + 142, 227, 232, 155, 9, 2, 27, 212, 47, 150, 247, 23, 197, 106, 90, 255, 27, 243, 218, 118, 137, 27, 156, 254, 247, + 159, 27, 123, 91, 230, 75, 96, 176, 105, 183, 71, 228, 237, 147, 120, 120, 32, 188, 74, 71, 10, 9, 85, 97, 250, + 197, 235, 28, 10, 27, 10, 101, 30, 12, 86, 65, 39, 86, 66, 111, 122, 255, 27, 250, 91, 149, 130, 253, 208, 40, 17, + 27, 106, 93, 198, 219, 4, 11, 86, 237, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 349, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "57aaa125fcba08f0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8850453450343911670" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "004f29c2dc060007059306c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b28b9e702ae7d0f990ed3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9405fc4dfdffdc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + }, + "cborHex": "bf4857aaa125fcba08f0bf1b7ad3208578e110f60e4c004f29c2dc060007059306c31bffffffffffffffef4bb28b9e702ae7d0f990ed3f0aff479405fc4dfdffdc07ff", + "cborBytes": [ + 191, 72, 87, 170, 161, 37, 252, 186, 8, 240, 191, 27, 122, 211, 32, 133, 120, 225, 16, 246, 14, 76, 0, 79, 41, + 194, 220, 6, 0, 7, 5, 147, 6, 195, 27, 255, 255, 255, 255, 255, 255, 255, 239, 75, 178, 139, 158, 112, 42, 231, + 208, 249, 144, 237, 63, 10, 255, 71, 148, 5, 252, 77, 253, 255, 220, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 350, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "589ec279" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ae8157e09b7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c7a0287463d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5630697892293566389" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4451051318114949429" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf44589ec279465ae8157e09b7469c7a0287463dbf1b4e2441e67bb2dfb51b3dc54f9755469935ffff", + "cborBytes": [ + 191, 68, 88, 158, 194, 121, 70, 90, 232, 21, 126, 9, 183, 70, 156, 122, 2, 135, 70, 61, 191, 27, 78, 36, 65, 230, + 123, 178, 223, 181, 27, 61, 197, 79, 151, 85, 70, 153, 53, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 351, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d8e06ed708a0a82" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0187f8" + } + } + ] + }, + "cborHex": "bf487d8e06ed708a0a82430187f8ff", + "cborBytes": [191, 72, 125, 142, 6, 237, 112, 138, 10, 130, 67, 1, 135, 248, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 352, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1717521316153352287" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18342947766304552623" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eedf8cd8c9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "904901940472452085" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15617072267543281620" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11485035561484069677" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10753532476406751063" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2162742464441880074" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14764057409677382784" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2cbbd6b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c2a213d21833b7c76" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5286263851506169779" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4189286340393382928" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b17d5dc89877b605fd8669f1bfe8f3dcef020b6af9f45eedf8cd8c91b0c8edb853e6c13f541f51bd8bafc7c0a857fd41b9f630afe2afcab2dffff1b953c38d008d9df571b1e039ad00db60e0a1bcce477fda34b548044a2cbbd6b495c2a213d21833b7c76d8669f1b495c94f7120377b39f1b3a2355bb158b3410ffffff", + "cborBytes": [ + 191, 27, 23, 213, 220, 137, 135, 123, 96, 95, 216, 102, 159, 27, 254, 143, 61, 206, 240, 32, 182, 175, 159, 69, + 238, 223, 140, 216, 201, 27, 12, 142, 219, 133, 62, 108, 19, 245, 65, 245, 27, 216, 186, 252, 124, 10, 133, 127, + 212, 27, 159, 99, 10, 254, 42, 252, 171, 45, 255, 255, 27, 149, 60, 56, 208, 8, 217, 223, 87, 27, 30, 3, 154, 208, + 13, 182, 14, 10, 27, 204, 228, 119, 253, 163, 75, 84, 128, 68, 162, 203, 189, 107, 73, 92, 42, 33, 61, 33, 131, + 59, 124, 118, 216, 102, 159, 27, 73, 92, 148, 247, 18, 3, 119, 179, 159, 27, 58, 35, 85, 187, 21, 139, 52, 16, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 353, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11135120376347219391" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12111995344046491910" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + } + ] + }, + "cborHex": "bf051b9a87e4fc6363d5bf1ba8167397e31389069f09ff1bfffffffffffffffd0fff", + "cborBytes": [ + 191, 5, 27, 154, 135, 228, 252, 99, 99, 213, 191, 27, 168, 22, 115, 151, 227, 19, 137, 6, 159, 9, 255, 27, 255, + 255, 255, 255, 255, 255, 255, 253, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 354, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a7bcb954633cfa8ae87" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21475a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "271607313685849961" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4316536449931506187" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "308256537754207149" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15318939667689454690" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7dbb253835ed032cf2605b31" + }, + { + "_tag": "ByteArray", + "bytearray": "2b0a672ee14e22b4" + } + ] + } + } + ] + }, + "cborHex": "bf4a6a7bcb954633cfa8ae87bf4321475a1b03c4f169aaa4a769ff41b1d8669f1b3be76b07fe31720b9f1b044725b0188803ad1bd497ce76ec453c624c7dbb253835ed032cf2605b31482b0a672ee14e22b4ffffff", + "cborBytes": [ + 191, 74, 106, 123, 203, 149, 70, 51, 207, 168, 174, 135, 191, 67, 33, 71, 90, 27, 3, 196, 241, 105, 170, 164, 167, + 105, 255, 65, 177, 216, 102, 159, 27, 59, 231, 107, 7, 254, 49, 114, 11, 159, 27, 4, 71, 37, 176, 24, 136, 3, 173, + 27, 212, 151, 206, 118, 236, 69, 60, 98, 76, 125, 187, 37, 56, 53, 237, 3, 44, 242, 96, 91, 49, 72, 43, 10, 103, + 46, 225, 78, 34, 180, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 355, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8dde" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7f9" + } + } + ] + }, + "cborHex": "bf428dde42e7f9ff", + "cborBytes": [191, 66, 141, 222, 66, 231, 249, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 356, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2328012316666497599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6e0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3013204673724106050" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4957253367081329523" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12790548620356453008" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5e4e" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18378807413919412054" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6093733034476675" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba45be8e6c68" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14646992765779351928" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f750e93921b41a399b7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16126691987460152074" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b204ec2de1fa40a3f42f6e01b29d10dafa4df4542d8669f1b44cbb3ac367de3739f1bb1812833f6b58290425e4effff1bff0ea3f7c5fb6f56bf1b0015a637c8e0448346ba45be8e6c681bcb4492513ffe99784a2f750e93921b41a399b71bdfcd84eb72b35b0a4111ffff", + "cborBytes": [ + 191, 27, 32, 78, 194, 222, 31, 164, 10, 63, 66, 246, 224, 27, 41, 209, 13, 175, 164, 223, 69, 66, 216, 102, 159, + 27, 68, 203, 179, 172, 54, 125, 227, 115, 159, 27, 177, 129, 40, 51, 246, 181, 130, 144, 66, 94, 78, 255, 255, 27, + 255, 14, 163, 247, 197, 251, 111, 86, 191, 27, 0, 21, 166, 55, 200, 224, 68, 131, 70, 186, 69, 190, 142, 108, 104, + 27, 203, 68, 146, 81, 63, 254, 153, 120, 74, 47, 117, 14, 147, 146, 27, 65, 163, 153, 183, 27, 223, 205, 132, 235, + 114, 179, 91, 10, 65, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 357, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6c34a1ce81d44" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acdf7753e27f69" + } + } + ] + }, + "cborHex": "bf47c6c34a1ce81d4447acdf7753e27f69ff", + "cborBytes": [191, 71, 198, 195, 74, 28, 232, 29, 68, 71, 172, 223, 119, 83, 226, 127, 105, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 358, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fb8d278e75e22b" + }, + { + "_tag": "ByteArray", + "bytearray": "f422278e34" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11986294392941726433" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5068039007618269504" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8689935972791926129" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1076560677059764763" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50" + } + } + ] + } + } + ] + }, + "cborHex": "bf029f47fb8d278e75e22b45f422278e341ba657df3e888c4ae1ff1bfffffffffffffff4bf061b46554aa034e90140091b7898dab9db26bd711b0ef0b63b5f4d221b4150ffff", + "cborBytes": [ + 191, 2, 159, 71, 251, 141, 39, 142, 117, 226, 43, 69, 244, 34, 39, 142, 52, 27, 166, 87, 223, 62, 136, 140, 74, + 225, 255, 27, 255, 255, 255, 255, 255, 255, 255, 244, 191, 6, 27, 70, 85, 74, 160, 52, 233, 1, 64, 9, 27, 120, + 152, 218, 185, 219, 38, 189, 113, 27, 14, 240, 182, 59, 95, 77, 34, 27, 65, 80, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 359, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27624a2c0556489641fa70" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7fd433d53f3327632413c09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17648093923698965287" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bf0d0f59440f298c7df" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13772951459828234025" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "603c9b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "75b07301cb7f94ca27f31a" + }, + { + "_tag": "ByteArray", + "bytearray": "d81d163d141e31817cb6cfd1" + }, + { + "_tag": "ByteArray", + "bytearray": "be9d8b3a316c15e6ea2752" + }, + { + "_tag": "ByteArray", + "bytearray": "4c7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3152386390473781941" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8fe262" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "544742b592" + } + } + ] + }, + "cborHex": "bf4b27624a2c0556489641fa70bf4cd7fd433d53f3327632413c091bf4ea9feb84ce7b27ff4a4bf0d0f59440f298c7df9f1bbf235a6167c27729ff43603c9b9f4b75b07301cb7f94ca27f31a4cd81d163d141e31817cb6cfd14bbe9d8b3a316c15e6ea2752424c7c1b2bbf86b856f732b5ff438fe26245544742b592ff", + "cborBytes": [ + 191, 75, 39, 98, 74, 44, 5, 86, 72, 150, 65, 250, 112, 191, 76, 215, 253, 67, 61, 83, 243, 50, 118, 50, 65, 60, 9, + 27, 244, 234, 159, 235, 132, 206, 123, 39, 255, 74, 75, 240, 208, 245, 148, 64, 242, 152, 199, 223, 159, 27, 191, + 35, 90, 97, 103, 194, 119, 41, 255, 67, 96, 60, 155, 159, 75, 117, 176, 115, 1, 203, 127, 148, 202, 39, 243, 26, + 76, 216, 29, 22, 61, 20, 30, 49, 129, 124, 182, 207, 209, 75, 190, 157, 139, 58, 49, 108, 21, 230, 234, 39, 82, + 66, 76, 124, 27, 43, 191, 134, 184, 86, 247, 50, 181, 255, 67, 143, 226, 98, 69, 84, 71, 66, 181, 146, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 360, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f51962617" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2855383951208321348" + } + } + } + ] + }, + "cborHex": "bf453f519626171b27a05c933d1f9144ff", + "cborBytes": [191, 69, 63, 81, 150, 38, 23, 27, 39, 160, 92, 147, 61, 31, 145, 68, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 361, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2552034743060170812" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85ab9ad3d55e812c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6452055083360546383" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e8156a03e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6957065803282916567" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13307066066993105303" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b4717e16522d60e8" + }, + { + "_tag": "ByteArray", + "bytearray": "39bfccdde25f0d93bb14e1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8173966405725254580" + } + }, + { + "_tag": "ByteArray", + "bytearray": "90d903df8eebcfb574fcf3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7914029640819811224" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a1c59516b0ef59e633a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8482891085856014578" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9327ebe5a4e0abf48f" + }, + { + "_tag": "ByteArray", + "bytearray": "b60a24fe4f786e" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11592764403180212528" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e388ed6e74c89d04" + }, + { + "_tag": "ByteArray", + "bytearray": "13ae" + }, + { + "_tag": "ByteArray", + "bytearray": "f2e9b0934e86de" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13486121405311999853" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9b95c6c4093fdd8792e945c0" + } + ] + } + } + ] + }, + "cborHex": "bf1b236aa613da8e883c4885ab9ad3d55e812c1b598a4de9f2f56e4f458e8156a03e1b608c767cebb224d7d8669f1bb8ac321585c749979f48b4717e16522d60e84b39bfccdde25f0d93bb14e11b716fc323733af3b44b90d903df8eebcfb574fcf3ffff1b6dd448072afa23984a2a1c59516b0ef59e633a1b75b9487f90c680f29f499327ebe5a4e0abf48f47b60a24fe4f786eff1ba0e1c5cdb85991309f48e388ed6e74c89d044213ae47f2e9b0934e86de1bbb2853f73169df6d4c9b95c6c4093fdd8792e945c0ffff", + "cborBytes": [ + 191, 27, 35, 106, 166, 19, 218, 142, 136, 60, 72, 133, 171, 154, 211, 213, 94, 129, 44, 27, 89, 138, 77, 233, 242, + 245, 110, 79, 69, 142, 129, 86, 160, 62, 27, 96, 140, 118, 124, 235, 178, 36, 215, 216, 102, 159, 27, 184, 172, + 50, 21, 133, 199, 73, 151, 159, 72, 180, 113, 126, 22, 82, 45, 96, 232, 75, 57, 191, 204, 221, 226, 95, 13, 147, + 187, 20, 225, 27, 113, 111, 195, 35, 115, 58, 243, 180, 75, 144, 217, 3, 223, 142, 235, 207, 181, 116, 252, 243, + 255, 255, 27, 109, 212, 72, 7, 42, 250, 35, 152, 74, 42, 28, 89, 81, 107, 14, 245, 158, 99, 58, 27, 117, 185, 72, + 127, 144, 198, 128, 242, 159, 73, 147, 39, 235, 229, 164, 224, 171, 244, 143, 71, 182, 10, 36, 254, 79, 120, 110, + 255, 27, 160, 225, 197, 205, 184, 89, 145, 48, 159, 72, 227, 136, 237, 110, 116, 200, 157, 4, 66, 19, 174, 71, + 242, 233, 176, 147, 78, 134, 222, 27, 187, 40, 83, 247, 49, 105, 223, 109, 76, 155, 149, 198, 196, 9, 63, 221, + 135, 146, 233, 69, 192, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 362, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4871311317374581737" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "737368828478de" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "32af0505f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "392599986465186144" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f7a45" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57b18630731756b48351" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2a5d9dfed36ff73" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fed400" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13920383909097064464" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf00d8799f4100ff1b439a5fd57673bbe947737368828478de1bfffffffffffffff2bf4532af0505f91b0572cb9b8c14a160433f7a45014a57b18630731756b483511348d2a5d9dfed36ff731bfffffffffffffff441f50043fed4001bc12f236976cb4810ffff", + "cborBytes": [ + 191, 0, 216, 121, 159, 65, 0, 255, 27, 67, 154, 95, 213, 118, 115, 187, 233, 71, 115, 115, 104, 130, 132, 120, + 222, 27, 255, 255, 255, 255, 255, 255, 255, 242, 191, 69, 50, 175, 5, 5, 249, 27, 5, 114, 203, 155, 140, 20, 161, + 96, 67, 63, 122, 69, 1, 74, 87, 177, 134, 48, 115, 23, 86, 180, 131, 81, 19, 72, 210, 165, 217, 223, 237, 54, 255, + 115, 27, 255, 255, 255, 255, 255, 255, 255, 244, 65, 245, 0, 67, 254, 212, 0, 27, 193, 47, 35, 105, 118, 203, 72, + 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 363, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "58b757fb5691ef23e032" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1fd4ba8c4d78" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a54ae0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6396344730965161028" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e1c54499a9c6691004e3e9" + }, + { + "_tag": "ByteArray", + "bytearray": "a9a82fdfc37de38d02f7f999" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1e0e689976bf429" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce" + } + } + ] + }, + "cborHex": "bf4a58b757fb5691ef23e0329f461fd4ba8c4d78ff43a54ae09f1b58c461a4be1eb4444be1c54499a9c6691004e3e94ca9a82fdfc37de38d02f7f999ff48f1e0e689976bf42941ceff", + "cborBytes": [ + 191, 74, 88, 183, 87, 251, 86, 145, 239, 35, 224, 50, 159, 70, 31, 212, 186, 140, 77, 120, 255, 67, 165, 74, 224, + 159, 27, 88, 196, 97, 164, 190, 30, 180, 68, 75, 225, 197, 68, 153, 169, 198, 105, 16, 4, 227, 233, 76, 169, 168, + 47, 223, 195, 125, 227, 141, 2, 247, 249, 153, 255, 72, 241, 224, 230, 137, 151, 107, 244, 41, 65, 206, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 364, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb4b" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf42eb4ba0ff", + "cborBytes": [191, 66, 235, 75, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 365, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6348029728904393403" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17650142277004076823" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0130a" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8866020861641268167" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17542640434690999708" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9981370651214102026" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3518381764403099120" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5934175771437511921" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10495763660501099297" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12590610445822870543" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b5818bb67b6f732bbbf1bf4f1e6e2efeea71743f0130aff1b7b0a6effdd549bc79f1bf373fa87cc29459cff1b8a84f3b945203e0ad8669f1b30d3cd92d37575f09f1b525a6d6c6b4334f11b91a87170b69f2321ffff1baebad57e1898440f80ff", + "cborBytes": [ + 191, 27, 88, 24, 187, 103, 182, 247, 50, 187, 191, 27, 244, 241, 230, 226, 239, 238, 167, 23, 67, 240, 19, 10, + 255, 27, 123, 10, 110, 255, 221, 84, 155, 199, 159, 27, 243, 115, 250, 135, 204, 41, 69, 156, 255, 27, 138, 132, + 243, 185, 69, 32, 62, 10, 216, 102, 159, 27, 48, 211, 205, 146, 211, 117, 117, 240, 159, 27, 82, 90, 109, 108, + 107, 67, 52, 241, 27, 145, 168, 113, 112, 182, 159, 35, 33, 255, 255, 27, 174, 186, 213, 126, 24, 152, 68, 15, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 366, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "64d5fedb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + }, + "cborHex": "bf4464d5fedb08ff", + "cborBytes": [191, 68, 100, 213, 254, 219, 8, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 367, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "048d59820f51" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12268806346116032264" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c69" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11824793848660260045" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22" + } + } + ] + }, + "cborHex": "bf46048d59820f519f1baa438e5e6e4de7080d425c691ba41a1b5adb9e74cdff4204f84122ff", + "cborBytes": [ + 191, 70, 4, 141, 89, 130, 15, 81, 159, 27, 170, 67, 142, 94, 110, 77, 231, 8, 13, 66, 92, 105, 27, 164, 26, 27, + 90, 219, 158, 116, 205, 255, 66, 4, 248, 65, 34, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 368, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "469951ef57d8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4984208650210323906" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4846859104529744693" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5372f9591" + }, + { + "_tag": "ByteArray", + "bytearray": "6aa12fada0a474303ff86a5f" + } + ] + } + } + ] + }, + "cborHex": "bf46469951ef57d8d8669f1b452b775c22372dc29f1b434380ad01dd033545f5372f95914c6aa12fada0a474303ff86a5fffffff", + "cborBytes": [ + 191, 70, 70, 153, 81, 239, 87, 216, 216, 102, 159, 27, 69, 43, 119, 92, 34, 55, 45, 194, 159, 27, 67, 67, 128, + 173, 1, 221, 3, 53, 69, 245, 55, 47, 149, 145, 76, 106, 161, 47, 173, 160, 164, 116, 48, 63, 248, 106, 95, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 369, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6cbeac9bc2af" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff1466cbeac9bc2afff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 241, 70, 108, 190, 172, 155, 194, 175, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 370, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4980414112666840913" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "070604" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5840562425131249396" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b1f7389cc364e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb06003201b6abf9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "894ee3346d60d2a7ae2a6381" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c06b3927ea05ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80932fdc40c980f81388" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "020603" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2253681393147777199" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11622347226656863108" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b451dfc3f83d96f51bf430706041b510dd894be712ef4476b1f7389cc364e48fb06003201b6abf94c894ee3346d60d2a7ae2a63811bfffffffffffffff747c06b3927ea05ff4a80932fdc40c980f8138841fd43020603ff4100d8669f1b1f46af495b7b10af9f1ba14adf398d20f384ffffff", + "cborBytes": [ + 191, 27, 69, 29, 252, 63, 131, 217, 111, 81, 191, 67, 7, 6, 4, 27, 81, 13, 216, 148, 190, 113, 46, 244, 71, 107, + 31, 115, 137, 204, 54, 78, 72, 251, 6, 0, 50, 1, 182, 171, 249, 76, 137, 78, 227, 52, 109, 96, 210, 167, 174, 42, + 99, 129, 27, 255, 255, 255, 255, 255, 255, 255, 247, 71, 192, 107, 57, 39, 234, 5, 255, 74, 128, 147, 47, 220, 64, + 201, 128, 248, 19, 136, 65, 253, 67, 2, 6, 3, 255, 65, 0, 216, 102, 159, 27, 31, 70, 175, 73, 91, 123, 16, 175, + 159, 27, 161, 74, 223, 57, 141, 32, 243, 132, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 371, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5dc3c1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17160869773987124248" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a617" + }, + { + "_tag": "ByteArray", + "bytearray": "5a" + }, + { + "_tag": "ByteArray", + "bytearray": "15f376eeb1cf2a0f6c" + } + ] + } + } + ] + }, + "cborHex": "bf435dc3c19f1bee27a823233d941842a617415a4915f376eeb1cf2a0f6cffff", + "cborBytes": [ + 191, 67, 93, 195, 193, 159, 27, 238, 39, 168, 35, 35, 61, 148, 24, 66, 166, 23, 65, 90, 73, 21, 243, 118, 238, + 177, 207, 42, 15, 108, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 372, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9156522754499057761" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15879719649100674270" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3aa3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6888603205574484264" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eafa74c3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8040085604957035046" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5531342733303320654" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d4d1d4bb6830b59" + } + ] + } + } + ] + }, + "cborHex": "bf1b7f1280ee8fb298611bdc6018e2f16fb4de423aa31b5f993c1e3ae2612844eafa74c3d8669f1b6f941f426f321a269f1b4cc346e8dd7b904e489d4d1d4bb6830b59ffffff", + "cborBytes": [ + 191, 27, 127, 18, 128, 238, 143, 178, 152, 97, 27, 220, 96, 24, 226, 241, 111, 180, 222, 66, 58, 163, 27, 95, 153, + 60, 30, 58, 226, 97, 40, 68, 234, 250, 116, 195, 216, 102, 159, 27, 111, 148, 31, 66, 111, 50, 26, 38, 159, 27, + 76, 195, 70, 232, 221, 123, 144, 78, 72, 157, 77, 29, 75, 182, 131, 11, 89, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 373, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12520127995724094403" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6eb13117" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc0186de" + } + } + ] + }, + "cborHex": "bf1badc06e13df8edbc3a0446eb1311744fc0186deff", + "cborBytes": [191, 27, 173, 192, 110, 19, 223, 142, 219, 195, 160, 68, 110, 177, 49, 23, 68, 252, 1, 134, 222, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 374, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "588751569500465421" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8210934885202767746" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12622811785873314585" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11009873628434739001" + } + } + } + ] + }, + "cborHex": "bf1b082baa6ee107690dd8669f1b71f319c6525faf8280ff1baf2d3c70d397d3191b98caedbb74cb2f39ff", + "cborBytes": [ + 191, 27, 8, 43, 170, 110, 225, 7, 105, 13, 216, 102, 159, 27, 113, 243, 25, 198, 82, 95, 175, 130, 128, 255, 27, + 175, 45, 60, 112, 211, 151, 211, 25, 27, 152, 202, 237, 187, 116, 203, 47, 57, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 375, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "264959" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3aa63f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1398388479726524037" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da80dbd40d167e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10109303559502489667" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12425707245886573734" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df07516cdd606cf0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "400ffa9ae127" + } + } + ] + }, + "cborHex": "bf4326495980433aa63f1b136812e9d019168547da80dbd40d167ed8669f1b8c4b7606a6bce8439f1bac70fae7ea110ca6ffff48df07516cdd606cf046400ffa9ae127ff", + "cborBytes": [ + 191, 67, 38, 73, 89, 128, 67, 58, 166, 63, 27, 19, 104, 18, 233, 208, 25, 22, 133, 71, 218, 128, 219, 212, 13, 22, + 126, 216, 102, 159, 27, 140, 75, 118, 6, 166, 188, 232, 67, 159, 27, 172, 112, 250, 231, 234, 17, 12, 166, 255, + 255, 72, 223, 7, 81, 108, 221, 96, 108, 240, 70, 64, 15, 250, 154, 225, 39, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 376, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1342723229126585286" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "218c9b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12003192592412579677" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15474746275594443497" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15737330594518818625" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b411ae300fec51" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01625a8e3cf33d3c0f900e2e" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b12a24fa9afc16bc69f43218c9b1ba693e811315a175dff1bd6c157bfba1b1ae9d8669f1bda663acbb72e5f419f47b411ae300fec51ffff4c01625a8e3cf33d3c0f900e2e80ff", + "cborBytes": [ + 191, 27, 18, 162, 79, 169, 175, 193, 107, 198, 159, 67, 33, 140, 155, 27, 166, 147, 232, 17, 49, 90, 23, 93, 255, + 27, 214, 193, 87, 191, 186, 27, 26, 233, 216, 102, 159, 27, 218, 102, 58, 203, 183, 46, 95, 65, 159, 71, 180, 17, + 174, 48, 15, 236, 81, 255, 255, 76, 1, 98, 90, 142, 60, 243, 61, 60, 15, 144, 14, 46, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 377, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2aecb2a22a0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a72f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cefeab2dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddfe5ce456196f03" + } + } + ] + }, + "cborHex": "bf462aecb2a22a0f42a72f454cefeab2dc48ddfe5ce456196f03ff", + "cborBytes": [ + 191, 70, 42, 236, 178, 162, 42, 15, 66, 167, 47, 69, 76, 239, 234, 178, 220, 72, 221, 254, 92, 228, 86, 25, 111, + 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 378, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5302754494934379001" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14804906337815394936" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a8fc952f7fbef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6656492908919300458" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7795244738145993810" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8d26382d31119e0fac9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8878137456469028317" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb4e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5416501029018920467" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed4cbe89ec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff4073c6fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e511" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11231356481283147467" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bbc9de8b0eb826" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13897277573174474632" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1445897597062503355" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16590044143187210001" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11129605954058308726" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13039785008674885625" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12049418705056464482" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca57ec" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17570094802264563514" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18341868018237417978" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17884535271134393263" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1671606416669228429" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b49972b1e31ab69f9bf1bcd7597dfde6a7a78478a8fc952f7fbef41021b5c609d08760aa16aff1b6c2e45c9d26cc452bf4ab8d26382d31119e0fac91b7b357afa6fed2ddd42cb4e1b4b2b46fcf035e61341f445ed4cbe89ec45ff4073c6fd42e511ff1b9bddcb36a4a9c6cb47bbc9de8b0eb8261bc0dd0c5266113788bf1b1410dc342e805bbb1be63bad401ab92f111b9a744da5e5b7cc761bb4f69f60ad87cff91ba7382278c0d67e6243ca57ec1bf3d58421deea9f3a1bfe8b67c88023a9fa1bf832a212a0e8f3af1b1732bd2dedd53d8dffff", + "cborBytes": [ + 191, 27, 73, 151, 43, 30, 49, 171, 105, 249, 191, 27, 205, 117, 151, 223, 222, 106, 122, 120, 71, 138, 143, 201, + 82, 247, 251, 239, 65, 2, 27, 92, 96, 157, 8, 118, 10, 161, 106, 255, 27, 108, 46, 69, 201, 210, 108, 196, 82, + 191, 74, 184, 210, 99, 130, 211, 17, 25, 224, 250, 201, 27, 123, 53, 122, 250, 111, 237, 45, 221, 66, 203, 78, 27, + 75, 43, 70, 252, 240, 53, 230, 19, 65, 244, 69, 237, 76, 190, 137, 236, 69, 255, 64, 115, 198, 253, 66, 229, 17, + 255, 27, 155, 221, 203, 54, 164, 169, 198, 203, 71, 187, 201, 222, 139, 14, 184, 38, 27, 192, 221, 12, 82, 102, + 17, 55, 136, 191, 27, 20, 16, 220, 52, 46, 128, 91, 187, 27, 230, 59, 173, 64, 26, 185, 47, 17, 27, 154, 116, 77, + 165, 229, 183, 204, 118, 27, 180, 246, 159, 96, 173, 135, 207, 249, 27, 167, 56, 34, 120, 192, 214, 126, 98, 67, + 202, 87, 236, 27, 243, 213, 132, 33, 222, 234, 159, 58, 27, 254, 139, 103, 200, 128, 35, 169, 250, 27, 248, 50, + 162, 18, 160, 232, 243, 175, 27, 23, 50, 189, 45, 237, 213, 61, 141, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 379, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "158e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "75115af4f766" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13658812767717486540" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8691776713155170818" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30fae83b5931" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e86001ac9d8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14894160070175182740" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8eb3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14756199633119986281" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b74d87cbe0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12905487150225735023" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d29dbd5a9262d3fa4ce2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24a5c5bdaf2324" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4427320d40c699ab30d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14936806257977649726" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8cb33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8bc40d6d481aa5e84dcaf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed86dbc794" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1fc4dbdd746" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17483081531719524936" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf42158e9f4675115af4f7661bbd8dd9d8415eefcc1b789f64de9ea05202ff4630fae83b5931bf422b774137463e86001ac9d81bceb2afabd2994f94428eb31bccc88d6276ddc26945b74d87cbe01bb319802fda92bd6f4ad29dbd5a9262d3fa4ce24724a5c5bdaf2324ff4a4427320d40c699ab30d61bcf4a32272d96ea3e43c8cb334bb8bc40d6d481aa5e84dcaf45ed86dbc794bf46e1fc4dbdd7461bf2a062061555a248ffff", + "cborBytes": [ + 191, 66, 21, 142, 159, 70, 117, 17, 90, 244, 247, 102, 27, 189, 141, 217, 216, 65, 94, 239, 204, 27, 120, 159, + 100, 222, 158, 160, 82, 2, 255, 70, 48, 250, 232, 59, 89, 49, 191, 66, 43, 119, 65, 55, 70, 62, 134, 0, 26, 201, + 216, 27, 206, 178, 175, 171, 210, 153, 79, 148, 66, 142, 179, 27, 204, 200, 141, 98, 118, 221, 194, 105, 69, 183, + 77, 135, 203, 224, 27, 179, 25, 128, 47, 218, 146, 189, 111, 74, 210, 157, 189, 90, 146, 98, 211, 250, 76, 226, + 71, 36, 165, 197, 189, 175, 35, 36, 255, 74, 68, 39, 50, 13, 64, 198, 153, 171, 48, 214, 27, 207, 74, 50, 39, 45, + 150, 234, 62, 67, 200, 203, 51, 75, 184, 188, 64, 214, 212, 129, 170, 94, 132, 220, 175, 69, 237, 134, 219, 199, + 148, 191, 70, 225, 252, 77, 189, 215, 70, 27, 242, 160, 98, 6, 21, 85, 162, 72, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 380, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75d5b9" + } + ] + } + } + ] + }, + "cborHex": "bf41fa9f064375d5b9ffff", + "cborBytes": [191, 65, 250, 159, 6, 67, 117, 213, 185, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 381, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5729545c0bed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f32839c83ff6c0233b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7509c3392230" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5018367881890188729" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9271d3b0877c435a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5295045449844246874" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15518747610868054817" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04ca" + } + ] + } + } + ] + }, + "cborHex": "bf465729545c0bed49f32839c83ff6c0233b467509c33922301b45a4d300084b4db9489271d3b0877c435ad8669f1b497bc7c84383c95a9f1bd75daabaf0bb7b214204caffffff", + "cborBytes": [ + 191, 70, 87, 41, 84, 92, 11, 237, 73, 243, 40, 57, 200, 63, 246, 192, 35, 59, 70, 117, 9, 195, 57, 34, 48, 27, 69, + 164, 211, 0, 8, 75, 77, 185, 72, 146, 113, 211, 176, 135, 124, 67, 90, 216, 102, 159, 27, 73, 123, 199, 200, 67, + 131, 201, 90, 159, 27, 215, 93, 170, 186, 240, 187, 123, 33, 66, 4, 202, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 382, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06faab06" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17641831452679818901" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0e7a476310228dfbca" + }, + { + "_tag": "ByteArray", + "bytearray": "8164db32aaa05f18c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2479331197547273306" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "815d06" + } + } + ] + }, + "cborHex": "bf4406faab06d8669f1bfffffffffffffff59f1bf4d4603c5c4b4e95490e7a476310228dfbca498164db32aaa05f18c71b22685a968e595c5affff42bc0043815d06ff", + "cborBytes": [ + 191, 68, 6, 250, 171, 6, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 27, 244, 212, 96, 60, 92, + 75, 78, 149, 73, 14, 122, 71, 99, 16, 34, 141, 251, 202, 73, 129, 100, 219, 50, 170, 160, 95, 24, 199, 27, 34, + 104, 90, 150, 142, 89, 92, 90, 255, 255, 66, 188, 0, 67, 129, 93, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 383, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13631225058197480838" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12465070127969243122" + } + } + } + ] + }, + "cborHex": "bf1bbd2bd6f81743a5861bacfcd33d15f08ff2ff", + "cborBytes": [191, 27, 189, 43, 214, 248, 23, 67, 165, 134, 27, 172, 252, 211, 61, 21, 240, 143, 242, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 384, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8506ba0507b39e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11286202009552527621" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9f" + }, + { + "_tag": "ByteArray", + "bytearray": "17" + } + ] + } + } + ] + }, + "cborHex": "bf478506ba0507b39ed8669f1b9ca0a4ee4aada1059f419f4117ffffff", + "cborBytes": [ + 191, 71, 133, 6, 186, 5, 7, 179, 158, 216, 102, 159, 27, 156, 160, 164, 238, 74, 173, 161, 5, 159, 65, 159, 65, + 23, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 385, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2017099199519101629" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a8b8cf700dbcfc3e2" + } + } + ] + }, + "cborHex": "bf1b1bfe2d08f00f92bd496a8b8cf700dbcfc3e2ff", + "cborBytes": [191, 27, 27, 254, 45, 8, 240, 15, 146, 189, 73, 106, 139, 140, 247, 0, 219, 207, 195, 226, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 386, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10775603150359580340" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13480959248935057328" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + } + ] + }, + "cborHex": "bf10a01b958aa1f941c34eb41bfffffffffffffffd1bbb15fd03004a77b01bfffffffffffffff7ff", + "cborBytes": [ + 191, 16, 160, 27, 149, 138, 161, 249, 65, 195, 78, 180, 27, 255, 255, 255, 255, 255, 255, 255, 253, 27, 187, 21, + 253, 3, 0, 74, 119, 176, 27, 255, 255, 255, 255, 255, 255, 255, 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 387, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "697338" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6490289493461309267" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "822378db" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1036537080377178302" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8985853283699336706" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12505829726715753006" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efbf748ce10ab2496cab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13851349053445817928" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24" + } + } + ] + } + } + ] + }, + "cborHex": "bf43697338d8669f1b5a1223e84336175380ff44822378dbbf1b0e6284fb9866f8be1b7cb429f3d2ad26021bad8da1e0b269b22e4aefbf748ce10ab2496cab1bc039e0939694c6484124ffff", + "cborBytes": [ + 191, 67, 105, 115, 56, 216, 102, 159, 27, 90, 18, 35, 232, 67, 54, 23, 83, 128, 255, 68, 130, 35, 120, 219, 191, + 27, 14, 98, 132, 251, 152, 102, 248, 190, 27, 124, 180, 41, 243, 210, 173, 38, 2, 27, 173, 141, 161, 224, 178, + 105, 178, 46, 74, 239, 191, 116, 140, 225, 10, 178, 73, 108, 171, 27, 192, 57, 224, 147, 150, 148, 198, 72, 65, + 36, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 388, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02f29b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12338723347502129645" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2f4efd2d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3907091255552466652" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8855aa9a4fd59f5181" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e6dd12ddc8334af6436" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d3fa2e44d31bb19" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09c7ae9c24a7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f96b172569c1c7916af" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b9a7c66de70ce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f38698919c95" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c93" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6c3a17620fcb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13687370848153380147" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12763336734358458660" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1227174273351393199" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15050237441718653138" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a9a624772f84ff0c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5bc652ea74d4e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2a411082a1a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fef0db0d" + } + } + ] + }, + "cborHex": "bf4302f29b9f1bab3bf382ddaee1ed442f4efd2d1b3638c6cbd83d5edc498855aa9a4fd59f5181ff410f4a5e6dd12ddc8334af6436481d3fa2e44d31bb19bf4609c7ae9c24a74a2f96b172569c1c7916af477b9a7c66de70ce46f38698919c95ff424c939f466c3a17620fcb1bbdf34f44813825331bb1207b23082151241b1107cc7ff09b9faf1bd0dd2f36b2ec90d2ff497a9a624772f84ff0c1475bc652ea74d4e546e2a411082a1a44fef0db0dff", + "cborBytes": [ + 191, 67, 2, 242, 155, 159, 27, 171, 59, 243, 130, 221, 174, 225, 237, 68, 47, 78, 253, 45, 27, 54, 56, 198, 203, + 216, 61, 94, 220, 73, 136, 85, 170, 154, 79, 213, 159, 81, 129, 255, 65, 15, 74, 94, 109, 209, 45, 220, 131, 52, + 175, 100, 54, 72, 29, 63, 162, 228, 77, 49, 187, 25, 191, 70, 9, 199, 174, 156, 36, 167, 74, 47, 150, 177, 114, + 86, 156, 28, 121, 22, 175, 71, 123, 154, 124, 102, 222, 112, 206, 70, 243, 134, 152, 145, 156, 149, 255, 66, 76, + 147, 159, 70, 108, 58, 23, 98, 15, 203, 27, 189, 243, 79, 68, 129, 56, 37, 51, 27, 177, 32, 123, 35, 8, 33, 81, + 36, 27, 17, 7, 204, 127, 240, 155, 159, 175, 27, 208, 221, 47, 54, 178, 236, 144, 210, 255, 73, 122, 154, 98, 71, + 114, 248, 79, 240, 193, 71, 91, 198, 82, 234, 116, 212, 229, 70, 226, 164, 17, 8, 42, 26, 68, 254, 240, 219, 13, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 389, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4cfc5d" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff5434cfc5dff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 245, 67, 76, 252, 93, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 390, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98fe79baba3933" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12979796138744959832" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff4124798fe79baba39331bb4217fd17ae15358ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 244, 18, 71, 152, 254, 121, 186, 186, 57, 51, 27, 180, 33, 127, 209, + 122, 225, 83, 88, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 391, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9da" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "789c32b4dc601876" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15884409723652195111" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96a9d74d95b1872ded0403a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16690656878959282050" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cff669c8d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f404" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be37836036b57611" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee67704df16747d22e03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12361610956840662557" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf42b9dabf48789c32b4dc6018761bdc70c27c050cc3274c96a9d74d95b1872ded0403a01be7a12000224c478245cff669c8d842f40442e0f648be37836036b576114aee67704df16747d22e031bab8d43abae10761dffff", + "cborBytes": [ + 191, 66, 185, 218, 191, 72, 120, 156, 50, 180, 220, 96, 24, 118, 27, 220, 112, 194, 124, 5, 12, 195, 39, 76, 150, + 169, 215, 77, 149, 177, 135, 45, 237, 4, 3, 160, 27, 231, 161, 32, 0, 34, 76, 71, 130, 69, 207, 246, 105, 200, + 216, 66, 244, 4, 66, 224, 246, 72, 190, 55, 131, 96, 54, 181, 118, 17, 74, 238, 103, 112, 77, 241, 103, 71, 210, + 46, 3, 27, 171, 141, 67, 171, 174, 16, 118, 29, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 392, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18a66e267ca332" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88e56c27279548" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51b029c81360" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10853398347138155852" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "386924333788ee12" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16153000491584359847" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10075144916851605173" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea96" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15853960543587819671" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adcbb6fc43351cb302d654" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01fcdd48fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fb5a1f7e6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4881958c88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12326145220989543045" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "753b9047cfb3570931" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15767126478283910193" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe24c95e45352960b7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13631594624452464078" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4718a66e267ca3324788e56c272795484651b029c81360bf1b969f044afefb454c48386924333788ee121be02afc5d65988da71b8bd21aebe585beb542ea961bdc04951dd39c6097ff4badcbb6fc43351cb302d654bf4501fcdd48fd456fb5a1f7e6454881958c881bab0f43c592f5e28549753b9047cfb35709311bdad015fe82c4ac3141f94198ff49fe24c95e45352960b7d8669f1bbd2d2716709d0dce80ffff", + "cborBytes": [ + 191, 71, 24, 166, 110, 38, 124, 163, 50, 71, 136, 229, 108, 39, 39, 149, 72, 70, 81, 176, 41, 200, 19, 96, 191, + 27, 150, 159, 4, 74, 254, 251, 69, 76, 72, 56, 105, 36, 51, 55, 136, 238, 18, 27, 224, 42, 252, 93, 101, 152, 141, + 167, 27, 139, 210, 26, 235, 229, 133, 190, 181, 66, 234, 150, 27, 220, 4, 149, 29, 211, 156, 96, 151, 255, 75, + 173, 203, 182, 252, 67, 53, 28, 179, 2, 214, 84, 191, 69, 1, 252, 221, 72, 253, 69, 111, 181, 161, 247, 230, 69, + 72, 129, 149, 140, 136, 27, 171, 15, 67, 197, 146, 245, 226, 133, 73, 117, 59, 144, 71, 207, 179, 87, 9, 49, 27, + 218, 208, 21, 254, 130, 196, 172, 49, 65, 249, 65, 152, 255, 73, 254, 36, 201, 94, 69, 53, 41, 96, 183, 216, 102, + 159, 27, 189, 45, 39, 22, 112, 157, 13, 206, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 393, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1045226096814661846" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18108017584968548349" + } + } + } + ] + }, + "cborHex": "bf1b0e816398e29b20d61bfb4c9a0d9a93bffdff", + "cborBytes": [191, 27, 14, 129, 99, 152, 226, 155, 32, 214, 27, 251, 76, 154, 13, 154, 147, 191, 253, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 394, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "38fc971495f6b38541" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "249a3136d94327" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "982517007794654507" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12360006399490601333" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d1b877fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5907308322258814532" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d2f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10227395743605442910" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e8142b1d937bd14c12d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14822869906473401845" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13066182074157575577" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e839c9345ed9e21c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13194102956740270207" + } + } + } + ] + }, + "cborHex": "bf4938fc971495f6b385419f47249a3136d943271b0da29a0353614d2b1bab8790558f31317544d1b877fb1b51faf99eeef20644ff423d2fbf1b8def023de2f1c95e4a9e8142b1d937bd14c12d1bcdb569a51f2cbdf51bb554675e6cbd2d99ff48e839c9345ed9e21c1bb71adebbda6f587fff", + "cborBytes": [ + 191, 73, 56, 252, 151, 20, 149, 246, 179, 133, 65, 159, 71, 36, 154, 49, 54, 217, 67, 39, 27, 13, 162, 154, 3, 83, + 97, 77, 43, 27, 171, 135, 144, 85, 143, 49, 49, 117, 68, 209, 184, 119, 251, 27, 81, 250, 249, 158, 238, 242, 6, + 68, 255, 66, 61, 47, 191, 27, 141, 239, 2, 61, 226, 241, 201, 94, 74, 158, 129, 66, 177, 217, 55, 189, 20, 193, + 45, 27, 205, 181, 105, 165, 31, 44, 189, 245, 27, 181, 84, 103, 94, 108, 189, 45, 153, 255, 72, 232, 57, 201, 52, + 94, 217, 226, 28, 27, 183, 26, 222, 187, 218, 111, 88, 127, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 395, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2191914978815615394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1547098736104891855" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9726593076418672597" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "49d9e7a5" + }, + { + "_tag": "ByteArray", + "bytearray": "083a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7933693835230299016" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1e6b3f0f5a29a1a21b1578661a85fce5cf1b86fbccde8ab577d59f4449d9e7a542083a1b6e1a2482359bc388ffff", + "cborBytes": [ + 191, 27, 30, 107, 63, 15, 90, 41, 161, 162, 27, 21, 120, 102, 26, 133, 252, 229, 207, 27, 134, 251, 204, 222, 138, + 181, 119, 213, 159, 68, 73, 217, 231, 165, 66, 8, 58, 27, 110, 26, 36, 130, 53, 155, 195, 136, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 396, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7953504442420194488" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12794451778547951194" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3904061cf900034fda28f802" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1134422668059233553" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "057f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3943100301660143192" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5236635748248592418" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16204351545548297745" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4822714666259255887" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16294054566670313451" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c40c3fd388d31869" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2973b0d6f79fa81c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16412818893562887371" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87385bc01e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cede31" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e140ea47dba3607" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4816560702267060372" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8051203421862562460" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4873603464067442624" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16328174920732863544" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d25fb3" + } + } + ] + }, + "cborHex": "bf07d8669f1b6e608626a1f26cb89f1bb18f061acc37265a4c3904061cf900034fda28f802ffff1b0fbe4767fad24d1142057f1b36b8b4d53a303e58d8669f1b48ac4477d87820229f1be0e16be057f55611ffff1b42edb96fe773124fbf1be2201c4c7d3727eb48c40c3fd388d31869482973b0d6f79fa81c1be3c60bd329a2bccb4587385bc01e43cede31489e140ea47dba36071b42d7dc7081bbf094ff1b6fbb9edae6870a9c9f1b43a2848773da67c01be29954947cb96c38ff1bffffffffffffffef43d25fb3ff", + "cborBytes": [ + 191, 7, 216, 102, 159, 27, 110, 96, 134, 38, 161, 242, 108, 184, 159, 27, 177, 143, 6, 26, 204, 55, 38, 90, 76, + 57, 4, 6, 28, 249, 0, 3, 79, 218, 40, 248, 2, 255, 255, 27, 15, 190, 71, 103, 250, 210, 77, 17, 66, 5, 127, 27, + 54, 184, 180, 213, 58, 48, 62, 88, 216, 102, 159, 27, 72, 172, 68, 119, 216, 120, 32, 34, 159, 27, 224, 225, 107, + 224, 87, 245, 86, 17, 255, 255, 27, 66, 237, 185, 111, 231, 115, 18, 79, 191, 27, 226, 32, 28, 76, 125, 55, 39, + 235, 72, 196, 12, 63, 211, 136, 211, 24, 105, 72, 41, 115, 176, 214, 247, 159, 168, 28, 27, 227, 198, 11, 211, 41, + 162, 188, 203, 69, 135, 56, 91, 192, 30, 67, 206, 222, 49, 72, 158, 20, 14, 164, 125, 186, 54, 7, 27, 66, 215, + 220, 112, 129, 187, 240, 148, 255, 27, 111, 187, 158, 218, 230, 135, 10, 156, 159, 27, 67, 162, 132, 135, 115, + 218, 103, 192, 27, 226, 153, 84, 148, 124, 185, 108, 56, 255, 27, 255, 255, 255, 255, 255, 255, 255, 239, 67, 210, + 95, 179, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 397, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14216725809077933742" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9779055093713990244" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03eedf6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8a209d3e5c5c0e9b7c596" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40046f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16762561626232737912" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf031bc54bf4ccc737d6ae1b87b62ecbcbcbf264bf4403eedf6b4ba8a209d3e5c5c0e9b7c5964340046f1bfffffffffffffff0ff1be8a094fcb9325078a0ff", + "cborBytes": [ + 191, 3, 27, 197, 75, 244, 204, 199, 55, 214, 174, 27, 135, 182, 46, 203, 203, 203, 242, 100, 191, 68, 3, 238, 223, + 107, 75, 168, 162, 9, 211, 229, 197, 192, 233, 183, 197, 150, 67, 64, 4, 111, 27, 255, 255, 255, 255, 255, 255, + 255, 240, 255, 27, 232, 160, 148, 252, 185, 50, 80, 120, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 398, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16368065515297125459" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1be3270cdd4b9b3453a0ff", + "cborBytes": [191, 27, 227, 39, 12, 221, 75, 155, 52, 83, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 399, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9285014109146519967" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12641821400535715583" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "46842ebd869ad40b79d0b9" + }, + { + "_tag": "ByteArray", + "bytearray": "2801" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc03f9a5d5c3fc80f8067c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10057034167368944292" + } + } + } + ] + }, + "cborHex": "bf1b80daff235e2b199fd8669f1baf70c595a4dcceff9f4b46842ebd869ad40b79d0b9422801ffff4bfc03f9a5d5c3fc80f8067c1b8b91c34a6ffe0aa4ff", + "cborBytes": [ + 191, 27, 128, 218, 255, 35, 94, 43, 25, 159, 216, 102, 159, 27, 175, 112, 197, 149, 164, 220, 206, 255, 159, 75, + 70, 132, 46, 189, 134, 154, 212, 11, 121, 208, 185, 66, 40, 1, 255, 255, 75, 252, 3, 249, 165, 213, 195, 252, 128, + 248, 6, 124, 27, 139, 145, 195, 74, 111, 254, 10, 164, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 400, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06a0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5674115516015587010" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9470946590773195813" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9080727197777080768" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb755c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9468623343290863003" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5db0e01990" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9800918244228518067" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7029d85313210e2393b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12602490645676051404" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3569ff9c34630e079ff2a036" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17376916255390879424" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "485619" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19168721d1d9d5e7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15332364641620915362" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2eb3bc" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "63c9b88da4fb59ef1e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11191263959783669823" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e9179e52d10d5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5827391629205537668" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e3ad60f7ef9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2667854918623099028" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7c3298" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96b82059cce387d3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21f0032b49bdb6bb2a52" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9815a5436d09" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2460b264eccb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8b6437a580df0c0b9141d68" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9026335411492078832" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5de6d6220d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9799097695515004799" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7558e946c3e48978" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10354441100638469880" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "764764176101597439" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8d5c3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9c286ebfc09b19aa6fdcf0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6192017957210620939" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9fe3a2f0f8523db2390248" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13839192560487357136" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16376243152657899059" + } + } + ] + } + } + ] + }, + "cborHex": "bf4206a0bf1b4ebe81ffc2a42ec21b836f8fbebdbbb4251b7e0539464dbb31c043fb755c1b83674ec388d2cd9b455db0e019901b8803db3733e2d0b34ae7029d85313210e2393b1baee50a78acb44bcc4c3569ff9c34630e079ff2a0361bf12735447648cec043485619ff4819168721d1d9d5e71bd4c780683e92f4a2432eb3bc9f4963c9b88da4fb59ef1e1b9b4f5b470e89803fff474e9179e52d10d59f1b50df0dcfd9e18384464e3ad60f7ef91b25061fe9e0cef894437c3298ff4896b82059cce387d3bf4a21f0032b49bdb6bb2a52469815a5436d09462460b264eccb4cf8b6437a580df0c0b9141d68422f8a1b7d43fc3bb183c4f0455de6d6220d1b87fd636fac854f7f487558e946c3e489781b8fb25d522342bef841b61b0a9cfcf75d7ae0ffff43f8d5c39f4b9c286ebfc09b19aa6fdcf01b55ee77867e61040b4b9fe3a2f0f8523db23902481bc00eb04f8213dad01be3441a61dd98de33ffff", + "cborBytes": [ + 191, 66, 6, 160, 191, 27, 78, 190, 129, 255, 194, 164, 46, 194, 27, 131, 111, 143, 190, 189, 187, 180, 37, 27, + 126, 5, 57, 70, 77, 187, 49, 192, 67, 251, 117, 92, 27, 131, 103, 78, 195, 136, 210, 205, 155, 69, 93, 176, 224, + 25, 144, 27, 136, 3, 219, 55, 51, 226, 208, 179, 74, 231, 2, 157, 133, 49, 50, 16, 226, 57, 59, 27, 174, 229, 10, + 120, 172, 180, 75, 204, 76, 53, 105, 255, 156, 52, 99, 14, 7, 159, 242, 160, 54, 27, 241, 39, 53, 68, 118, 72, + 206, 192, 67, 72, 86, 25, 255, 72, 25, 22, 135, 33, 209, 217, 213, 231, 27, 212, 199, 128, 104, 62, 146, 244, 162, + 67, 46, 179, 188, 159, 73, 99, 201, 184, 141, 164, 251, 89, 239, 30, 27, 155, 79, 91, 71, 14, 137, 128, 63, 255, + 71, 78, 145, 121, 229, 45, 16, 213, 159, 27, 80, 223, 13, 207, 217, 225, 131, 132, 70, 78, 58, 214, 15, 126, 249, + 27, 37, 6, 31, 233, 224, 206, 248, 148, 67, 124, 50, 152, 255, 72, 150, 184, 32, 89, 204, 227, 135, 211, 191, 74, + 33, 240, 3, 43, 73, 189, 182, 187, 42, 82, 70, 152, 21, 165, 67, 109, 9, 70, 36, 96, 178, 100, 236, 203, 76, 248, + 182, 67, 122, 88, 13, 240, 192, 185, 20, 29, 104, 66, 47, 138, 27, 125, 67, 252, 59, 177, 131, 196, 240, 69, 93, + 230, 214, 34, 13, 27, 135, 253, 99, 111, 172, 133, 79, 127, 72, 117, 88, 233, 70, 195, 228, 137, 120, 27, 143, + 178, 93, 82, 35, 66, 190, 248, 65, 182, 27, 10, 156, 252, 247, 93, 122, 224, 255, 255, 67, 248, 213, 195, 159, 75, + 156, 40, 110, 191, 192, 155, 25, 170, 111, 220, 240, 27, 85, 238, 119, 134, 126, 97, 4, 11, 75, 159, 227, 162, + 240, 248, 82, 61, 178, 57, 2, 72, 27, 192, 14, 176, 79, 130, 19, 218, 208, 27, 227, 68, 26, 97, 221, 152, 222, 51, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 401, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17577789953823855244" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15100022026720740367" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01010501" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "214824850900340067" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1227688070818712190" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13000087578712523227" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1374983176020676620" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13753367539360671464" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc03" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "25fe00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14780661374371737791" + } + } + ] + } + } + ] + }, + "cborHex": "bf030b1bf3f0dad4f619d28c9f1bd18e0e07ab43840fff44010105019f1b02fb36104ed74d631b11099fcbbc224a7e1bb46996c68220c1db1b1314ebe9e2d9d00c1bbeddc6e898fb26e8ff42cc03d8669f1bfffffffffffffffc9f4325fe001bcd1f75356cc3b0bfffffff", + "cborBytes": [ + 191, 3, 11, 27, 243, 240, 218, 212, 246, 25, 210, 140, 159, 27, 209, 142, 14, 7, 171, 67, 132, 15, 255, 68, 1, 1, + 5, 1, 159, 27, 2, 251, 54, 16, 78, 215, 77, 99, 27, 17, 9, 159, 203, 188, 34, 74, 126, 27, 180, 105, 150, 198, + 130, 32, 193, 219, 27, 19, 20, 235, 233, 226, 217, 208, 12, 27, 190, 221, 198, 232, 152, 251, 38, 232, 255, 66, + 204, 3, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 67, 37, 254, 0, 27, 205, 31, 117, 53, 108, + 195, 176, 191, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 402, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "57535b420c12fc64" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9163486503422270189" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2712572744186347946" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6210" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2222655191464193829" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3044777160947156572" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5587800512946332461" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28fc3c9b6a" + }, + { + "_tag": "ByteArray", + "bytearray": "da78de8bee218e" + }, + { + "_tag": "ByteArray", + "bytearray": "7b0b14f973" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f577ec215" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebcb4747fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b660a480e788873051931326" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d635" + } + } + ] + }, + "cborHex": "bf4857535b420c12fc649f1b7f2b3e6cb4921aed1b25a4fe89fca241aaff426210d8669f1b1ed8751ed966af259f1b2a4138b22a7a465c1b4d8bdaf609e9632d4528fc3c9b6a47da78de8bee218e457b0b14f973ffff456f577ec21545ebcb4747fc4cb660a480e78887305193132642d635ff", + "cborBytes": [ + 191, 72, 87, 83, 91, 66, 12, 18, 252, 100, 159, 27, 127, 43, 62, 108, 180, 146, 26, 237, 27, 37, 164, 254, 137, + 252, 162, 65, 170, 255, 66, 98, 16, 216, 102, 159, 27, 30, 216, 117, 30, 217, 102, 175, 37, 159, 27, 42, 65, 56, + 178, 42, 122, 70, 92, 27, 77, 139, 218, 246, 9, 233, 99, 45, 69, 40, 252, 60, 155, 106, 71, 218, 120, 222, 139, + 238, 33, 142, 69, 123, 11, 20, 249, 115, 255, 255, 69, 111, 87, 126, 194, 21, 69, 235, 203, 71, 71, 252, 76, 182, + 96, 164, 128, 231, 136, 135, 48, 81, 147, 19, 38, 66, 214, 53, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 403, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2999566420686137153" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34a00482b8e0fd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8970577604380449875" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1922756896769184411" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13508042210873054295" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6449002347579614824" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10446916446986204444" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16040852855106857554" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7157899504640020462" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2910684ed78f85e421f6fc38" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15925656318828959659" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5475044265685675548" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b29a099c4692fe7414734a00482b8e0fd1b7c7de4cd932bdc53bf1b1aaf0135dd5c129b1bbb7634d2761214571b597f75778324a6681b90fae7288ccc751c1bde9c8eaf02f46a521b6355f7ace0034feeff4c2910684ed78f85e421f6fc389f1bdd034c0b52c157ab1b4bfb43c069bbee1cffff", + "cborBytes": [ + 191, 27, 41, 160, 153, 196, 105, 47, 231, 65, 71, 52, 160, 4, 130, 184, 224, 253, 27, 124, 125, 228, 205, 147, 43, + 220, 83, 191, 27, 26, 175, 1, 53, 221, 92, 18, 155, 27, 187, 118, 52, 210, 118, 18, 20, 87, 27, 89, 127, 117, 119, + 131, 36, 166, 104, 27, 144, 250, 231, 40, 140, 204, 117, 28, 27, 222, 156, 142, 175, 2, 244, 106, 82, 27, 99, 85, + 247, 172, 224, 3, 79, 238, 255, 76, 41, 16, 104, 78, 215, 143, 133, 228, 33, 246, 252, 56, 159, 27, 221, 3, 76, + 11, 82, 193, 87, 171, 27, 75, 251, 67, 192, 105, 187, 238, 28, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 404, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23df29404674ec" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e5dc7adbdc2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb99ff1a2de0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11f4cccfdea6b66b834977" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bfc664bf1d09ff965bfac0c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6040183d7d5527686505" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "417828608439739930" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db7279ae7b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8639" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bc4c7e93f02159c9e76f10a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18212303760045216799" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13927723512910188066" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e43f99b1" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc2a4489a26e89a9b56e038f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ca5a291f" + }, + { + "_tag": "ByteArray", + "bytearray": "22312e60" + }, + { + "_tag": "ByteArray", + "bytearray": "f2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4837208018503287376" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8450799597626558817" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecf99eca8503" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dcffec88fa76" + } + } + ] + }, + "cborHex": "bf4723df29404674ecbf460e5dc7adbdc246fb99ff1a2de04b11f4cccfdea6b66b8349774cbfc664bf1d09ff965bfac0c34a6040183d7d55276865051b05cc6ce7d70be61a45db7279ae7b428639ff4c5bc4c7e93f02159c9e76f10ad8669f1bfcbf19c6df01941f9f1bc14936be24de0e2244e43f99b1ffff4ccc2a4489a26e89a9b56e038f9f44ca5a291f4422312e6041f21b432137106f8f42501b75474575b48b8961ff46ecf99eca850346dcffec88fa76ff", + "cborBytes": [ + 191, 71, 35, 223, 41, 64, 70, 116, 236, 191, 70, 14, 93, 199, 173, 189, 194, 70, 251, 153, 255, 26, 45, 224, 75, + 17, 244, 204, 207, 222, 166, 182, 107, 131, 73, 119, 76, 191, 198, 100, 191, 29, 9, 255, 150, 91, 250, 192, 195, + 74, 96, 64, 24, 61, 125, 85, 39, 104, 101, 5, 27, 5, 204, 108, 231, 215, 11, 230, 26, 69, 219, 114, 121, 174, 123, + 66, 134, 57, 255, 76, 91, 196, 199, 233, 63, 2, 21, 156, 158, 118, 241, 10, 216, 102, 159, 27, 252, 191, 25, 198, + 223, 1, 148, 31, 159, 27, 193, 73, 54, 190, 36, 222, 14, 34, 68, 228, 63, 153, 177, 255, 255, 76, 204, 42, 68, + 137, 162, 110, 137, 169, 181, 110, 3, 143, 159, 68, 202, 90, 41, 31, 68, 34, 49, 46, 96, 65, 242, 27, 67, 33, 55, + 16, 111, 143, 66, 80, 27, 117, 71, 69, 117, 180, 139, 137, 97, 255, 70, 236, 249, 158, 202, 133, 3, 70, 220, 255, + 236, 136, 250, 118, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 405, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1958259617986970519" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2341487572757663969" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "600213" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3429777911195021491" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8222316828650034201" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "277381e08bfc4fd2a2f588" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10010884707706817955" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10706176980541047758" + } + } + } + ] + }, + "cborHex": "bf1b1b2d22bf4c1b0397801b207ea28aac3650e1436002131b2f9904d6a742b0b3a01b721b89978a66d4194b277381e08bfc4fd2a2f5881b8aedce9a0a414da31b9493fb3d739d03ceff", + "cborBytes": [ + 191, 27, 27, 45, 34, 191, 76, 27, 3, 151, 128, 27, 32, 126, 162, 138, 172, 54, 80, 225, 67, 96, 2, 19, 27, 47, + 153, 4, 214, 167, 66, 176, 179, 160, 27, 114, 27, 137, 151, 138, 102, 212, 25, 75, 39, 115, 129, 224, 139, 252, + 79, 210, 162, 245, 136, 27, 138, 237, 206, 154, 10, 65, 77, 163, 27, 148, 147, 251, 61, 115, 157, 3, 206, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 406, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14735249310999976506" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10389996205119622983" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "708e66a08d2c37cd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15501167146137787012" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17832158145672591995" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "300801599029456047" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1b5795325abccd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11958345387183147175" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1277677439763052530" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "938706221271479694" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14594433139484135720" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bcc7e1f2d7af91a3ad8669f1b9030ae7fffcfcf479f48708e66a08d2c37cd1bd71f3564057f9a84ffff1bf7788d5acb673a7bd8669f1b042ca975ea052caf9f471b5795325abccd1ba5f493c5887b88a71b11bb38dcae9b77f21b0d06f455b355f58e1bca89d79da1241128ffffff", + "cborBytes": [ + 191, 27, 204, 126, 31, 45, 122, 249, 26, 58, 216, 102, 159, 27, 144, 48, 174, 127, 255, 207, 207, 71, 159, 72, + 112, 142, 102, 160, 141, 44, 55, 205, 27, 215, 31, 53, 100, 5, 127, 154, 132, 255, 255, 27, 247, 120, 141, 90, + 203, 103, 58, 123, 216, 102, 159, 27, 4, 44, 169, 117, 234, 5, 44, 175, 159, 71, 27, 87, 149, 50, 90, 188, 205, + 27, 165, 244, 147, 197, 136, 123, 136, 167, 27, 17, 187, 56, 220, 174, 155, 119, 242, 27, 13, 6, 244, 85, 179, 85, + 245, 142, 27, 202, 137, 215, 157, 161, 36, 17, 40, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 407, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10bf950106f954c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2095a891" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4912e904fc7da7" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80b008b1327ffa" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9303fc0638ca6fc6205f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d5ffb23aaed9e56d95" + }, + { + "_tag": "ByteArray", + "bytearray": "8a" + }, + { + "_tag": "ByteArray", + "bytearray": "cfb8f5b356c2f8" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ae8c5ffe3a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17511488319248733611" + } + } + } + ] + }, + "cborHex": "bf4810bf950106f954c0442095a891474912e904fc7da7a04780b008b1327ffa804a9303fc0638ca6fc6205f9f49d5ffb23aaed9e56d95418a47cfb8f5b356c2f8ff469ae8c5ffe3a61bf3054dd8b53915abff", + "cborBytes": [ + 191, 72, 16, 191, 149, 1, 6, 249, 84, 192, 68, 32, 149, 168, 145, 71, 73, 18, 233, 4, 252, 125, 167, 160, 71, 128, + 176, 8, 177, 50, 127, 250, 128, 74, 147, 3, 252, 6, 56, 202, 111, 198, 32, 95, 159, 73, 213, 255, 178, 58, 174, + 217, 229, 109, 149, 65, 138, 71, 207, 184, 245, 179, 86, 194, 248, 255, 70, 154, 232, 197, 255, 227, 166, 27, 243, + 5, 77, 216, 181, 57, 21, 171, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 408, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6764998283341143113" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9725181948527552422" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6570441757965255860" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0aeeb1ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1809653834369316964" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "17c044726d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3363d43b080c8e" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15325313771917802106" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "709e84801f3cbe4ee6daff" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b5de21a18a0ad1c49bf1b86f6c974ba06a7a61b5b2ee5f798e984b4440aeeb1ae1b191d2e930c01b8644517c044726d473363d43b080c8eff1bd4ae73adb68ffa7a41024b709e84801f3cbe4ee6daffa0ff", + "cborBytes": [ + 191, 27, 93, 226, 26, 24, 160, 173, 28, 73, 191, 27, 134, 246, 201, 116, 186, 6, 167, 166, 27, 91, 46, 229, 247, + 152, 233, 132, 180, 68, 10, 238, 177, 174, 27, 25, 29, 46, 147, 12, 1, 184, 100, 69, 23, 192, 68, 114, 109, 71, + 51, 99, 212, 59, 8, 12, 142, 255, 27, 212, 174, 115, 173, 182, 143, 250, 122, 65, 2, 75, 112, 158, 132, 128, 31, + 60, 190, 78, 230, 218, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 409, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17722542357453592800" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e888e12306211c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9d2d" + }, + { + "_tag": "ByteArray", + "bytearray": "398221593ceaf573" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7770804176703336152" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2435" + }, + { + "_tag": "ByteArray", + "bytearray": "0b" + } + ] + } + } + ] + }, + "cborHex": "bf0d1bf5f31e6044d5d8e01bffffffffffffffee47e888e12306211c1bffffffffffffffef9f429d2d48398221593ceaf5731b6bd7713a2b862ed8422435410bffff", + "cborBytes": [ + 191, 13, 27, 245, 243, 30, 96, 68, 213, 216, 224, 27, 255, 255, 255, 255, 255, 255, 255, 238, 71, 232, 136, 225, + 35, 6, 33, 28, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 66, 157, 45, 72, 57, 130, 33, 89, 60, 234, 245, + 115, 27, 107, 215, 113, 58, 43, 134, 46, 216, 66, 36, 53, 65, 11, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 410, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "732943382373182280" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11505682663707033164" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1846467794130115764" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd3e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7101571342683447554" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa1f4221f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d802ac760c9d" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7944540086495943642" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acbf408f66" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8416102732387622720" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "087dce6d6f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15549425924342314045" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3487099229535748069" + } + } + } + ] + }, + "cborHex": "bf1b0a2bf01f7ad3ab481b9fac656c44a0be4c1b199ff8acfe531cb4bf42cd3e1b628dd982abbda10245fa1f4221f546d802ac760c9dff1b6e40ad1ddf711bda45acbf408f661b74cc00d83d289f4045087dce6d6f1bd7caa87e69ac743d1b3064aa4619043fe5ff", + "cborBytes": [ + 191, 27, 10, 43, 240, 31, 122, 211, 171, 72, 27, 159, 172, 101, 108, 68, 160, 190, 76, 27, 25, 159, 248, 172, 254, + 83, 28, 180, 191, 66, 205, 62, 27, 98, 141, 217, 130, 171, 189, 161, 2, 69, 250, 31, 66, 33, 245, 70, 216, 2, 172, + 118, 12, 157, 255, 27, 110, 64, 173, 29, 223, 113, 27, 218, 69, 172, 191, 64, 143, 102, 27, 116, 204, 0, 216, 61, + 40, 159, 64, 69, 8, 125, 206, 109, 111, 27, 215, 202, 168, 126, 105, 172, 116, 61, 27, 48, 100, 170, 70, 25, 4, + 63, 229, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 411, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f251714a59b36be26612a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15830473672297194245" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15726896323216543063" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19683ba5e1a9e2881c1e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0abce56e58" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4313865087067592041" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d619090e6cf10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f654ac6cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "187defe3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "422f39d3b12e9a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5054601966053405503" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "878276a2a542" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10581758886277991216" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c356975b3a890b43cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11123397453643352581" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c3d34de42abd26d789e1e54" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3254365748602480335" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b055c6a199" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "359116791741467228" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9689" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7945911562673932867" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4924752926023393399" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16208193336956364466" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "434b7863dceb5063e3" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d546e6b7f5c6f2c08b3ffd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a866fa94ba939e2c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f718fcdd971a48e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2126223402374605515" + } + } + } + ] + }, + "cborHex": "bf4b0f251714a59b36be26612a9f1bdbb123ee7772a3051bda4128e19cb80d57ff4a19683ba5e1a9e2881c1ebf450abce56e581b3bdded70db9f9569470d619090e6cf10458f654ac6cd44187defe3415047422f39d3b12e9a1b46258db52b9ab33f46878276a2a5421b92d9f5a47b6ecb3049c356975b3a890b43cf1b9a5e3f0cbfe58a05ff4c8c3d34de42abd26d789e1e541b2d29d467eea626cf45b055c6a199bf1b04fbd6d1c4a0ca5c4296891b6e458c778dd94a431b44583cb19a30a0771be0ef11f71c2326b249434b7863dceb5063e3ff4bd546e6b7f5c6f2c08b3ffd48a866fa94ba939e2c48f718fcdd971a48e21b1d81dceb53a92acbff", + "cborBytes": [ + 191, 75, 15, 37, 23, 20, 165, 155, 54, 190, 38, 97, 42, 159, 27, 219, 177, 35, 238, 119, 114, 163, 5, 27, 218, 65, + 40, 225, 156, 184, 13, 87, 255, 74, 25, 104, 59, 165, 225, 169, 226, 136, 28, 30, 191, 69, 10, 188, 229, 110, 88, + 27, 59, 221, 237, 112, 219, 159, 149, 105, 71, 13, 97, 144, 144, 230, 207, 16, 69, 143, 101, 74, 198, 205, 68, 24, + 125, 239, 227, 65, 80, 71, 66, 47, 57, 211, 177, 46, 154, 27, 70, 37, 141, 181, 43, 154, 179, 63, 70, 135, 130, + 118, 162, 165, 66, 27, 146, 217, 245, 164, 123, 110, 203, 48, 73, 195, 86, 151, 91, 58, 137, 11, 67, 207, 27, 154, + 94, 63, 12, 191, 229, 138, 5, 255, 76, 140, 61, 52, 222, 66, 171, 210, 109, 120, 158, 30, 84, 27, 45, 41, 212, + 103, 238, 166, 38, 207, 69, 176, 85, 198, 161, 153, 191, 27, 4, 251, 214, 209, 196, 160, 202, 92, 66, 150, 137, + 27, 110, 69, 140, 119, 141, 217, 74, 67, 27, 68, 88, 60, 177, 154, 48, 160, 119, 27, 224, 239, 17, 247, 28, 35, + 38, 178, 73, 67, 75, 120, 99, 220, 235, 80, 99, 227, 255, 75, 213, 70, 230, 183, 245, 198, 242, 192, 139, 63, 253, + 72, 168, 102, 250, 148, 186, 147, 158, 44, 72, 247, 24, 252, 221, 151, 26, 72, 226, 27, 29, 129, 220, 235, 83, + 169, 42, 203, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 412, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6322315630" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "722afa35d700bae099" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2960643392608966244" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14266431634422990133" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7027623965863760919" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "794471802089718353" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "255ca3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17167401597277319036" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49b9c93848b98ede" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f86b18" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bd94ed8e1f102066eca6a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e7addfc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ae936054bae5a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11674603405066210770" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11242741625643015983" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17961812851867879547" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76eacdb2cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e9cf34749299b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14836852829248581528" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "769b37049148a7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7aeb988d1d29e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9624311775845043809" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14851662582134910453" + } + } + ] + } + } + ] + }, + "cborHex": "bf456322315630a049722afa35d700bae099bf1b2916517abb1096641bc5fc8bfc162d85351b618722c35454d4171b0b0687e50b9f425143255ca31bee3edccbc2302f7c4849b9c93848b98ede43f86b18ff4b7bd94ed8e1f102066eca6a445e7addfc479ae936054bae5abf1ba20485f134898dd21b9c063df121f31f2f1bf9452d9f7da1887b4576eacdb2cb475e9cf34749299b1bcde7170a081c6f9847769b37049148a7412cff47a7aeb988d1d29ed8669f1b85906c917eda4e619f1bce1bb46e541cadf5ffffff", + "cborBytes": [ + 191, 69, 99, 34, 49, 86, 48, 160, 73, 114, 42, 250, 53, 215, 0, 186, 224, 153, 191, 27, 41, 22, 81, 122, 187, 16, + 150, 100, 27, 197, 252, 139, 252, 22, 45, 133, 53, 27, 97, 135, 34, 195, 84, 84, 212, 23, 27, 11, 6, 135, 229, 11, + 159, 66, 81, 67, 37, 92, 163, 27, 238, 62, 220, 203, 194, 48, 47, 124, 72, 73, 185, 201, 56, 72, 185, 142, 222, + 67, 248, 107, 24, 255, 75, 123, 217, 78, 216, 225, 241, 2, 6, 110, 202, 106, 68, 94, 122, 221, 252, 71, 154, 233, + 54, 5, 75, 174, 90, 191, 27, 162, 4, 133, 241, 52, 137, 141, 210, 27, 156, 6, 61, 241, 33, 243, 31, 47, 27, 249, + 69, 45, 159, 125, 161, 136, 123, 69, 118, 234, 205, 178, 203, 71, 94, 156, 243, 71, 73, 41, 155, 27, 205, 231, 23, + 10, 8, 28, 111, 152, 71, 118, 155, 55, 4, 145, 72, 167, 65, 44, 255, 71, 167, 174, 185, 136, 209, 210, 158, 216, + 102, 159, 27, 133, 144, 108, 145, 126, 218, 78, 97, 159, 27, 206, 27, 180, 110, 84, 28, 173, 245, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 413, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1587614735281990209" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11639195722393033250" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7621277116726050108" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3b7820b4287a81b4fc6421" + }, + { + "_tag": "ByteArray", + "bytearray": "c28b71aca302" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2040673026422347053" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3564137341590318326" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7612644398923365383" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5b8de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84f18993848b722b8ae0d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11571541161511385462" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9074104377512513898" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9322973587292782443" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4661774793721673791" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14596502939636451610" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15122378438936612263" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5e4814a0af641a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17137830760560749005" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17248442439942394129" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11171766356446527276" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18427431442954554990" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2274070332872984027" + } + }, + { + "_tag": "ByteArray", + "bytearray": "337d7e247c97d6" + }, + { + "_tag": "ByteArray", + "bytearray": "18e5cd12905cc58d9f35" + }, + { + "_tag": "ByteArray", + "bytearray": "bdcd4b" + }, + { + "_tag": "ByteArray", + "bytearray": "f8" + } + ] + } + } + ] + }, + "cborHex": "bf1b16085730b0a8aa41d8669f1ba186bad7a87b9a229f1b69c437288d44fd3c4b3b7820b4287a81b4fc642146c28b71aca302ffff1b1c51ed4e3aa0152dbf1b31765c0750322cf641f71b69a58bbf4f31bc0743d5b8de4b84f18993848b722b8ae0d11ba0965f60b3b27976ff1b7dedb1dacc73516a801b8161db1518ef7f6bd8669f1b40b1f379caa6783f9f1bca91321687f9c91a1bd1dd7b1183d7cda7475e4814a0af641a1bedd5ce46cffc69cd1bef5ec7035189d111ffff1b9b0a164f85a7bf2c801bffbb6343c02b8e6e9f1b1f8f1eeb512605db47337d7e247c97d64a18e5cd12905cc58d9f3543bdcd4b41f8ffff", + "cborBytes": [ + 191, 27, 22, 8, 87, 48, 176, 168, 170, 65, 216, 102, 159, 27, 161, 134, 186, 215, 168, 123, 154, 34, 159, 27, 105, + 196, 55, 40, 141, 68, 253, 60, 75, 59, 120, 32, 180, 40, 122, 129, 180, 252, 100, 33, 70, 194, 139, 113, 172, 163, + 2, 255, 255, 27, 28, 81, 237, 78, 58, 160, 21, 45, 191, 27, 49, 118, 92, 7, 80, 50, 44, 246, 65, 247, 27, 105, + 165, 139, 191, 79, 49, 188, 7, 67, 213, 184, 222, 75, 132, 241, 137, 147, 132, 139, 114, 43, 138, 224, 209, 27, + 160, 150, 95, 96, 179, 178, 121, 118, 255, 27, 125, 237, 177, 218, 204, 115, 81, 106, 128, 27, 129, 97, 219, 21, + 24, 239, 127, 107, 216, 102, 159, 27, 64, 177, 243, 121, 202, 166, 120, 63, 159, 27, 202, 145, 50, 22, 135, 249, + 201, 26, 27, 209, 221, 123, 17, 131, 215, 205, 167, 71, 94, 72, 20, 160, 175, 100, 26, 27, 237, 213, 206, 70, 207, + 252, 105, 205, 27, 239, 94, 199, 3, 81, 137, 209, 17, 255, 255, 27, 155, 10, 22, 79, 133, 167, 191, 44, 128, 27, + 255, 187, 99, 67, 192, 43, 142, 110, 159, 27, 31, 143, 30, 235, 81, 38, 5, 219, 71, 51, 125, 126, 36, 124, 151, + 214, 74, 24, 229, 205, 18, 144, 92, 197, 141, 159, 53, 67, 189, 205, 75, 65, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 414, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6721479514971375564" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0228c8f4c7ccb9f66d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14321341835043070028" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e206d9ce0bca24144d" + } + } + ] + }, + "cborHex": "bf1b5d477e01c6ef07cc490228c8f4c7ccb9f66d1bc6bfa08570aee04c49e206d9ce0bca24144dff", + "cborBytes": [ + 191, 27, 93, 71, 126, 1, 198, 239, 7, 204, 73, 2, 40, 200, 244, 199, 204, 185, 246, 109, 27, 198, 191, 160, 133, + 112, 174, 224, 76, 73, 226, 6, 217, 206, 11, 202, 36, 20, 77, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 415, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22e1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11430465294815081183" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4342071909884457404" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71912d9bc7cd7d97" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17979852658916884809" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b1b7201f96105c2cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e92f2b2183593887e820ba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c833031ad93f07a76a20dd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8421683186526479328" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00533107f79e5a2946da04" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17038485686759731590" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17733525855302354182" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18351174550496280383" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17470682911847932761" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4222e1d8669f1b9ea12b9fdae232df9f1b3c42236591dd71bcffff4871912d9bc7cd7d971bf98544bb609a8149498b1b7201f96105c2cb4be92f2b2183593887e820ba4bc833031ad93f07a76a20ddbf1b74dfd43cf7ca63e04b00533107f79e5a2946da041bec74dc7555e431861bf61a23cf248085061bfeac78066584ff3f1bf274558b702ee359ffff", + "cborBytes": [ + 191, 66, 34, 225, 216, 102, 159, 27, 158, 161, 43, 159, 218, 226, 50, 223, 159, 27, 60, 66, 35, 101, 145, 221, + 113, 188, 255, 255, 72, 113, 145, 45, 155, 199, 205, 125, 151, 27, 249, 133, 68, 187, 96, 154, 129, 73, 73, 139, + 27, 114, 1, 249, 97, 5, 194, 203, 75, 233, 47, 43, 33, 131, 89, 56, 135, 232, 32, 186, 75, 200, 51, 3, 26, 217, + 63, 7, 167, 106, 32, 221, 191, 27, 116, 223, 212, 60, 247, 202, 99, 224, 75, 0, 83, 49, 7, 247, 158, 90, 41, 70, + 218, 4, 27, 236, 116, 220, 117, 85, 228, 49, 134, 27, 246, 26, 35, 207, 36, 128, 133, 6, 27, 254, 172, 120, 6, + 101, 132, 255, 63, 27, 242, 116, 85, 139, 112, 46, 227, 89, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 416, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ecc5cd30198bec53c69" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8696027717867541693" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "46c32c360753267af80677" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ff2a328f155" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b7397f04a4d" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7298988485215954381" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b3feeb95f4568853b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10209129474923909229" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0cbf4a5ecc5cd30198bec53c691b78ae7f22c87214bdff0dbf4b46c32c360753267af8067700466ff2a328f155469b7397f04a4dff1b654b375b08f6a5cdbf494b3feeb95f4568853b1b8dae1d2acacf506dffff", + "cborBytes": [ + 191, 12, 191, 74, 94, 204, 92, 211, 1, 152, 190, 197, 60, 105, 27, 120, 174, 127, 34, 200, 114, 20, 189, 255, 13, + 191, 75, 70, 195, 44, 54, 7, 83, 38, 122, 248, 6, 119, 0, 70, 111, 242, 163, 40, 241, 85, 70, 155, 115, 151, 240, + 74, 77, 255, 27, 101, 75, 55, 91, 8, 246, 165, 205, 191, 73, 75, 63, 238, 185, 95, 69, 104, 133, 59, 27, 141, 174, + 29, 42, 202, 207, 80, 109, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 417, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17575958034582677087" + } + }, + { + "_tag": "ByteArray", + "bytearray": "500483fa" + } + ] + } + } + ] + }, + "cborHex": "bf41ce9f1bf3ea58b60679265f44500483faffff", + "cborBytes": [191, 65, 206, 159, 27, 243, 234, 88, 182, 6, 121, 38, 95, 68, 80, 4, 131, 250, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 418, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05a2fcfb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05daf37d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15105242519435546200" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00ba5cfc" + }, + { + "_tag": "ByteArray", + "bytearray": "5dff" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9200" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14309623090674345464" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a649af751d5827efca03de" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4200ad41ec4405a2fcfbd8669f1bfffffffffffffffb80ff4405daf37dd8669f1bd1a09a0a59150e589f4400ba5cfc425dffffff4292009f1bc695fe62a55f25f805ff4ba649af751d5827efca03de80ff", + "cborBytes": [ + 191, 66, 0, 173, 65, 236, 68, 5, 162, 252, 251, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 128, + 255, 68, 5, 218, 243, 125, 216, 102, 159, 27, 209, 160, 154, 10, 89, 21, 14, 88, 159, 68, 0, 186, 92, 252, 66, 93, + 255, 255, 255, 66, 146, 0, 159, 27, 198, 149, 254, 98, 165, 95, 37, 248, 5, 255, 75, 166, 73, 175, 117, 29, 88, + 39, 239, 202, 3, 222, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 419, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "68" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7475525062763161558" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b5873ea169837d32" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "715521c7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10926639268750889709" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12232677346720094648" + } + }, + { + "_tag": "ByteArray", + "bytearray": "20" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c609e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4923d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7517560483295107762" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ad53377343a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "191825af8a90b3f2c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0bf563706650f1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "215b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22465ff4eb6e35" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "914bb8182a15417783192dbe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3169a4df07a9d9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a72332cdf76340" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "071392c9" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b70b393c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6282315275475148479" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12208581929591394424" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c2" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed279a66e6d4cb38895fe1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "392c703fda9e" + } + } + ] + }, + "cborHex": "bf41689f1b67be6670038727d648b5873ea169837d32ff44715521c7d8669f1b97a33885eabb12ed9f1ba9c3333c3f3819b84120ffff437c609e9f434923d81b6853bd6e08519ab2ff469ad53377343abf49191825af8a90b3f2c2470bf563706650f142215b4722465ff4eb6e354c914bb8182a15417783192dbe473169a4df07a9d947a72332cdf7634044071392c9ff44b70b393cd8669f1b572f447539b4debf9f1ba96d9894c48c507841c2ffff4bed279a66e6d4cb38895fe146392c703fda9eff", + "cborBytes": [ + 191, 65, 104, 159, 27, 103, 190, 102, 112, 3, 135, 39, 214, 72, 181, 135, 62, 161, 105, 131, 125, 50, 255, 68, + 113, 85, 33, 199, 216, 102, 159, 27, 151, 163, 56, 133, 234, 187, 18, 237, 159, 27, 169, 195, 51, 60, 63, 56, 25, + 184, 65, 32, 255, 255, 67, 124, 96, 158, 159, 67, 73, 35, 216, 27, 104, 83, 189, 110, 8, 81, 154, 178, 255, 70, + 154, 213, 51, 119, 52, 58, 191, 73, 25, 24, 37, 175, 138, 144, 179, 242, 194, 71, 11, 245, 99, 112, 102, 80, 241, + 66, 33, 91, 71, 34, 70, 95, 244, 235, 110, 53, 76, 145, 75, 184, 24, 42, 21, 65, 119, 131, 25, 45, 190, 71, 49, + 105, 164, 223, 7, 169, 217, 71, 167, 35, 50, 205, 247, 99, 64, 68, 7, 19, 146, 201, 255, 68, 183, 11, 57, 60, 216, + 102, 159, 27, 87, 47, 68, 117, 57, 180, 222, 191, 159, 27, 169, 109, 152, 148, 196, 140, 80, 120, 65, 194, 255, + 255, 75, 237, 39, 154, 102, 230, 212, 203, 56, 137, 95, 225, 70, 57, 44, 112, 63, 218, 158, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 420, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6315887801070196638" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a772bec916" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14028021628848569082" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14971927666120244711" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14341670960791081242" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b57a68a7df803179e45a772bec9161bc2ad8b590903fafa9f1bcfc6f8e33df0bde71bc707d9c0df7cd11affff", + "cborBytes": [ + 191, 27, 87, 166, 138, 125, 248, 3, 23, 158, 69, 167, 114, 190, 201, 22, 27, 194, 173, 139, 89, 9, 3, 250, 250, + 159, 27, 207, 198, 248, 227, 61, 240, 189, 231, 27, 199, 7, 217, 192, 223, 124, 209, 26, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 421, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "818114614376241926" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "acaa8b553f72a3364eb67d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9290903591927922497" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18224721481979967820" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c21ee0" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11379649518576880865" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17241326129976801246" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a9409e69b900cfcec83ca58" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c95b61b9a90caa9f167b3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15807604267827992920" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b901e369836c43345842a4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2225418411774976973" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9040114768643191699" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5203237332656559632" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14799913481622777208" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16700635986343703267" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33b361" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7069dcdbf511" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c43f4a0a" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0b5a86e83f739b069f4bacaa8b553f72a3364eb67d1b80efeb976f43bf411bfceb37a10fd8b94c43c21ee0ff1b9deca2f1f7384ce11bef457ec449ed77de4c9a9409e69b900cfcec83ca58bf4bc95b61b9a90caa9f167b3f1bdb5fe4544dd61958ff4bb901e369836c43345842a4bf1b1ee24641367623cd1b7d74f07c49bd73931b48359cc93f0b96101bcd63dae5f2a3ed781be7c493f2211f32e34333b361467069dcdbf51144c43f4a0affff", + "cborBytes": [ + 191, 27, 11, 90, 134, 232, 63, 115, 155, 6, 159, 75, 172, 170, 139, 85, 63, 114, 163, 54, 78, 182, 125, 27, 128, + 239, 235, 151, 111, 67, 191, 65, 27, 252, 235, 55, 161, 15, 216, 185, 76, 67, 194, 30, 224, 255, 27, 157, 236, + 162, 241, 247, 56, 76, 225, 27, 239, 69, 126, 196, 73, 237, 119, 222, 76, 154, 148, 9, 230, 155, 144, 12, 252, + 236, 131, 202, 88, 191, 75, 201, 91, 97, 185, 169, 12, 170, 159, 22, 123, 63, 27, 219, 95, 228, 84, 77, 214, 25, + 88, 255, 75, 185, 1, 227, 105, 131, 108, 67, 52, 88, 66, 164, 191, 27, 30, 226, 70, 65, 54, 118, 35, 205, 27, 125, + 116, 240, 124, 73, 189, 115, 147, 27, 72, 53, 156, 201, 63, 11, 150, 16, 27, 205, 99, 218, 229, 242, 163, 237, + 120, 27, 231, 196, 147, 242, 33, 31, 50, 227, 67, 51, 179, 97, 70, 112, 105, 220, 219, 245, 17, 68, 196, 63, 74, + 10, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 422, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bdadfac8fa3" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf462bdadfac8fa3a0ff", + "cborBytes": [191, 70, 43, 218, 223, 172, 143, 163, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 423, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c0904" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7593760523270645229" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c6c91028a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16382750695343895583" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c3299eec581f749e24ad3f6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1239549652598082160" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c9eb948c82582c16310133a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3125388697527812481" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4422bcc3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3426537350218321379" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16621163831130594225" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5123314909997233079" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4115923877977964054" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14224542369435061271" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de401490d2e71a" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3a2cf2ae014" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11113102968968538719" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13165697563456415515" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1107673793549058127" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8598d2" + } + ] + } + } + ] + }, + "cborHex": "bf432c0904d8669f1b696274f662ee65ed80ff454c6c91028a1be35b38f537c1b41f4c9c3299eec581f749e24ad3f6bf1b1133c3d774914a704c6c9eb948c82582c16310133a1b2b5f9c761d2a8181444422bcc31b2f8d8190c15f0de31be6aa3c71141c1bb11b4719abc422d8f3b71b391eb2f5bd6cbe161bc567b9eb8eab8c1747de401490d2e71aff46f3a2cf2ae0149f1b9a39ac4541b56a5f1bb6b5f42dda0ba71b1b0f5f3f724f80404f438598d2ffff", + "cborBytes": [ + 191, 67, 44, 9, 4, 216, 102, 159, 27, 105, 98, 116, 246, 98, 238, 101, 237, 128, 255, 69, 76, 108, 145, 2, 138, + 27, 227, 91, 56, 245, 55, 193, 180, 31, 76, 156, 50, 153, 238, 197, 129, 247, 73, 226, 74, 211, 246, 191, 27, 17, + 51, 195, 215, 116, 145, 74, 112, 76, 108, 158, 185, 72, 200, 37, 130, 193, 99, 16, 19, 58, 27, 43, 95, 156, 118, + 29, 42, 129, 129, 68, 68, 34, 188, 195, 27, 47, 141, 129, 144, 193, 95, 13, 227, 27, 230, 170, 60, 113, 20, 28, + 27, 177, 27, 71, 25, 171, 196, 34, 216, 243, 183, 27, 57, 30, 178, 245, 189, 108, 190, 22, 27, 197, 103, 185, 235, + 142, 171, 140, 23, 71, 222, 64, 20, 144, 210, 231, 26, 255, 70, 243, 162, 207, 42, 224, 20, 159, 27, 154, 57, 172, + 69, 65, 181, 106, 95, 27, 182, 181, 244, 45, 218, 11, 167, 27, 27, 15, 95, 63, 114, 79, 128, 64, 79, 67, 133, 152, + 210, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 424, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "98534246898852279" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9282117869613889707" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3614434370910614277" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11675237823142142965" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4576540241209137573" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7be5576ae5f5a40ec30576" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5584729688648291554" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4703374041511151873" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3af20a088356d7dc3b32" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14776644476436086615" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da0d44" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10731595519934371487" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13938573491485086370" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7108417550903902343" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13826057947474433469" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14915948383355148707" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9763361440507119488" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b015e1060209de1b71b80d0b5060da438ab1b32290ce90616f3051ba206c6f12c97a3f51b3f83231a118d19a54b7be5576ae5f5a40ec305761b4d80f2100a7594e2d8669f1b4145bdc56e10c9019f4a3af20a088356d7dc3b321bcd112fdc7e35ff5743da0d44ffff1b94ee494456dc969fa01bc16fc2bda3a512a2d8669f1b62a62c19bcc780879f1bbfe006731b2e15bd1bcf001806cdf219a31b877e6d806b2c4780ffffff", + "cborBytes": [ + 191, 27, 1, 94, 16, 96, 32, 157, 225, 183, 27, 128, 208, 181, 6, 13, 164, 56, 171, 27, 50, 41, 12, 233, 6, 22, + 243, 5, 27, 162, 6, 198, 241, 44, 151, 163, 245, 27, 63, 131, 35, 26, 17, 141, 25, 165, 75, 123, 229, 87, 106, + 229, 245, 164, 14, 195, 5, 118, 27, 77, 128, 242, 16, 10, 117, 148, 226, 216, 102, 159, 27, 65, 69, 189, 197, 110, + 16, 201, 1, 159, 74, 58, 242, 10, 8, 131, 86, 215, 220, 59, 50, 27, 205, 17, 47, 220, 126, 53, 255, 87, 67, 218, + 13, 68, 255, 255, 27, 148, 238, 73, 68, 86, 220, 150, 159, 160, 27, 193, 111, 194, 189, 163, 165, 18, 162, 216, + 102, 159, 27, 98, 166, 44, 25, 188, 199, 128, 135, 159, 27, 191, 224, 6, 115, 27, 46, 21, 189, 27, 207, 0, 24, 6, + 205, 242, 25, 163, 27, 135, 126, 109, 128, 107, 44, 71, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 425, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + }, + "cborHex": "bf0bd87a801208ff", + "cborBytes": [191, 11, 216, 122, 128, 18, 8, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 426, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21129971fb522dcdd0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18242139491528194058" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1e746a204194db7e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7437425089757228735" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8729870947603025179" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f51f69" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98dc5b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15378524020040671303" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1aa67d" + } + } + ] + }, + "cborHex": "bf4921129971fb522dcdd0d8669f1bfd2919376fa9b80a9f481e746a204194db7e1b67370ab6c68eaebf1b7926bb5fbee18d1b43f51f69ffff4398dc5b1bd56b7e1e0856204741b2431aa67dff", + "cborBytes": [ + 191, 73, 33, 18, 153, 113, 251, 82, 45, 205, 208, 216, 102, 159, 27, 253, 41, 25, 55, 111, 169, 184, 10, 159, 72, + 30, 116, 106, 32, 65, 148, 219, 126, 27, 103, 55, 10, 182, 198, 142, 174, 191, 27, 121, 38, 187, 95, 190, 225, + 141, 27, 67, 245, 31, 105, 255, 255, 67, 152, 220, 91, 27, 213, 107, 126, 30, 8, 86, 32, 71, 65, 178, 67, 26, 166, + 125, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 427, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0452" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "209823600186994021" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4cc9cdba7dca180ff8a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11796451823217120004" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16551013816759060066" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16550115168913735048" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23c4c4e94d43c91c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f4cc8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2abf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12210003012927024912" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bf612bbcb818bd393" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1252628188541416037" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a519f55cf5c50b2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f15ccf872007cb03" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11623974904471684350" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e271d89fb07b6b2c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17701382144699585999" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f61" + } + } + ] + }, + "cborHex": "bf00420452091b02e97173e2a3ad650ad87a9f4a4cc9cdba7dca180ff8a71ba3b56a6ed4dd93041be5b10360148186621be5add20f52e83d88ff11bf4823c4c4e94d43c91c435f4cc8422abf1ba972a50c83f6ef10499bf612bbcb818bd3931b11623ab365a6f26548a519f55cf5c50b2d48f15ccf872007cb03ff1ba150a796d31704fe48e271d89fb07b6b2c1bf5a7f1465042d5cf422f61ff", + "cborBytes": [ + 191, 0, 66, 4, 82, 9, 27, 2, 233, 113, 115, 226, 163, 173, 101, 10, 216, 122, 159, 74, 76, 201, 205, 186, 125, + 202, 24, 15, 248, 167, 27, 163, 181, 106, 110, 212, 221, 147, 4, 27, 229, 177, 3, 96, 20, 129, 134, 98, 27, 229, + 173, 210, 15, 82, 232, 61, 136, 255, 17, 191, 72, 35, 196, 196, 233, 77, 67, 201, 28, 67, 95, 76, 200, 66, 42, + 191, 27, 169, 114, 165, 12, 131, 246, 239, 16, 73, 155, 246, 18, 187, 203, 129, 139, 211, 147, 27, 17, 98, 58, + 179, 101, 166, 242, 101, 72, 165, 25, 245, 92, 245, 197, 11, 45, 72, 241, 92, 207, 135, 32, 7, 203, 3, 255, 27, + 161, 80, 167, 150, 211, 23, 4, 254, 72, 226, 113, 216, 159, 176, 123, 107, 44, 27, 245, 167, 241, 70, 80, 66, 213, + 207, 66, 47, 97, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 428, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7880747998775624010" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0487b97167fd1cb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9601695196778499139" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6081868897571822243" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13690554307105058541" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15462071794736047887" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9057582980139079379" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6d5e0a8d0764414a48f0487b97167fd1cb1b854012e8d58e8c439f1b5467238a0a43daa31bbdfe9e9b4d30eeed1bd694506030d4270f1b7db2ffbb36d056d3ffff", + "cborBytes": [ + 191, 27, 109, 94, 10, 141, 7, 100, 65, 74, 72, 240, 72, 123, 151, 22, 127, 209, 203, 27, 133, 64, 18, 232, 213, + 142, 140, 67, 159, 27, 84, 103, 35, 138, 10, 67, 218, 163, 27, 189, 254, 158, 155, 77, 48, 238, 237, 27, 214, 148, + 80, 96, 48, 212, 39, 15, 27, 125, 178, 255, 187, 54, 208, 86, 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 429, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "91087806ff92fa06ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c698609e8c285e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee8e244b134e3c2e9f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "810370241216791940" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "050603" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11087529742819164717" + } + } + } + ] + }, + "cborHex": "bf4991087806ff92fa06ff47c698609e8c285e49ee8e244b134e3c2e9fd8669f1b0b3f0370dc4645849f43050603ffff41fc1b99ded18e8d50822dff", + "cborBytes": [ + 191, 73, 145, 8, 120, 6, 255, 146, 250, 6, 255, 71, 198, 152, 96, 158, 140, 40, 94, 73, 238, 142, 36, 75, 19, 78, + 60, 46, 159, 216, 102, 159, 27, 11, 63, 3, 112, 220, 70, 69, 132, 159, 67, 5, 6, 3, 255, 255, 65, 252, 27, 153, + 222, 209, 142, 141, 80, 130, 45, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 430, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1281959450463627789" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "393540016264635091" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1300" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4935187232343630195" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6003350808864012788" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16605072493183977269" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5822738104247591383" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b11ca6f53fd56ea0dbf1b0576228f4a5ae2d34213001b447d4ea3dbe2a173071b53502fc0e864b9f40c1be671117481d7473541031bffffffffffffffec1b50ce8574a3cf21d71bfffffffffffffff21bfffffffffffffff1ffff", + "cborBytes": [ + 191, 27, 17, 202, 111, 83, 253, 86, 234, 13, 191, 27, 5, 118, 34, 143, 74, 90, 226, 211, 66, 19, 0, 27, 68, 125, + 78, 163, 219, 226, 161, 115, 7, 27, 83, 80, 47, 192, 232, 100, 185, 244, 12, 27, 230, 113, 17, 116, 129, 215, 71, + 53, 65, 3, 27, 255, 255, 255, 255, 255, 255, 255, 236, 27, 80, 206, 133, 116, 163, 207, 33, 215, 27, 255, 255, + 255, 255, 255, 255, 255, 242, 27, 255, 255, 255, 255, 255, 255, 255, 241, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 431, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9669937574169580853" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1034fbd612" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfe265eff0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca1b05e636ebc2db0d34" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91126c32839d" + } + } + ] + } + } + ] + }, + "cborHex": "bf05a01b863284fd7c949535bf451034fbd61245dfe265eff04aca1b05e636ebc2db0d344691126c32839dffff", + "cborBytes": [ + 191, 5, 160, 27, 134, 50, 132, 253, 124, 148, 149, 53, 191, 69, 16, 52, 251, 214, 18, 69, 223, 226, 101, 239, 240, + 74, 202, 27, 5, 230, 54, 235, 194, 219, 13, 52, 70, 145, 18, 108, 50, 131, 157, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 432, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5869403968938945243" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90fe841d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fcdc45f0db2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8696537022670252819" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3c104" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5717447242248543275" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9d2d86b6ef74" + }, + { + "_tag": "ByteArray", + "bytearray": "65c82bb10d36" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb3fde6f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14605009460312330606" + } + } + } + ] + }, + "cborHex": "bf1b51744fcff3dfaadb4490fe841d466fcdc45f0db21b78b04e588c4b2b1343a3c1049f1b4f5873f97842dc2b469d2d86b6ef744665c82bb10d36ff44eb3fde6f1bcaaf6ab93722d16eff", + "cborBytes": [ + 191, 27, 81, 116, 79, 207, 243, 223, 170, 219, 68, 144, 254, 132, 29, 70, 111, 205, 196, 95, 13, 178, 27, 120, + 176, 78, 88, 140, 75, 43, 19, 67, 163, 193, 4, 159, 27, 79, 88, 115, 249, 120, 66, 220, 43, 70, 157, 45, 134, 182, + 239, 116, 70, 101, 200, 43, 177, 13, 54, 255, 68, 235, 63, 222, 111, 27, 202, 175, 106, 185, 55, 34, 209, 110, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 433, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "068cf940" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1201352015203436497" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17016652450325249883" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4790786054180919705" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e95e3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5912762798062548309" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65201f23fb151e1ff086" + } + } + ] + } + } + ] + }, + "cborHex": "bf44068cf940bf1b10ac0f4af46687d11bec274b3ed7eabf5b1b427c4a889a595999437e95e31b520e5a700ba9b5554a65201f23fb151e1ff086ffff", + "cborBytes": [ + 191, 68, 6, 140, 249, 64, 191, 27, 16, 172, 15, 74, 244, 102, 135, 209, 27, 236, 39, 75, 62, 215, 234, 191, 91, + 27, 66, 124, 74, 136, 154, 89, 89, 153, 67, 126, 149, 227, 27, 82, 14, 90, 112, 11, 169, 181, 85, 74, 101, 32, 31, + 35, 251, 21, 30, 31, 240, 134, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 434, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8092ebc67478083c1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + } + ] + }, + "cborHex": "bf498092ebc67478083c1e1bffffffffffffffefff", + "cborBytes": [191, 73, 128, 146, 235, 198, 116, 120, 8, 60, 30, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 435, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5018569534660318242" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "309218148777516522" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13302930802043339572" + } + }, + { + "_tag": "ByteArray", + "bytearray": "52751ced506da110043cfa27" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "23" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14401868505078836818" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "612ab3f7cf" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a0a5cf3b703f82375" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4466810279356332268" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c7f89e5dba807e0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11846350377016126469" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "214a00" + }, + { + "_tag": "ByteArray", + "bytearray": "01" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98a4b9749c" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf411fd8669f1b45a58a66fa0694229f1b044a90449bfcddea1bb89d81151f6543344c52751ced506da110043cfa27ffff4123d8669f1bc7ddb719db1c2e529f45612ab3f7cfffff494a0a5cf3b703f823751b3dfd4c486c18f8ec484c7f89e5dba807e0d8669f1ba466b0e73adc6c059f43214a004101ffff4598a4b9749c80ff", + "cborBytes": [ + 191, 65, 31, 216, 102, 159, 27, 69, 165, 138, 102, 250, 6, 148, 34, 159, 27, 4, 74, 144, 68, 155, 252, 221, 234, + 27, 184, 157, 129, 21, 31, 101, 67, 52, 76, 82, 117, 28, 237, 80, 109, 161, 16, 4, 60, 250, 39, 255, 255, 65, 35, + 216, 102, 159, 27, 199, 221, 183, 25, 219, 28, 46, 82, 159, 69, 97, 42, 179, 247, 207, 255, 255, 73, 74, 10, 92, + 243, 183, 3, 248, 35, 117, 27, 61, 253, 76, 72, 108, 24, 248, 236, 72, 76, 127, 137, 229, 219, 168, 7, 224, 216, + 102, 159, 27, 164, 102, 176, 231, 58, 220, 108, 5, 159, 67, 33, 74, 0, 65, 1, 255, 255, 69, 152, 164, 185, 116, + 156, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 436, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19201bcb0629e3c237bdb3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "52631a50c1cf42022471" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e381dbcd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e46952d6" + }, + { + "_tag": "ByteArray", + "bytearray": "f43ab2e016" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4945159444906993773" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7598110405821707115" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12987212748448559862" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b19201bcb0629e3c237bdb39f4a52631a50c1cf42022471ff44e381dbcd9f44e46952d645f43ab2e0161b44a0bc508759686d1b6971e9285733b36b1bb43bd92f7db372f6ffff", + "cborBytes": [ + 191, 75, 25, 32, 27, 203, 6, 41, 227, 194, 55, 189, 179, 159, 74, 82, 99, 26, 80, 193, 207, 66, 2, 36, 113, 255, + 68, 227, 129, 219, 205, 159, 68, 228, 105, 82, 214, 69, 244, 58, 178, 224, 22, 27, 68, 160, 188, 80, 135, 89, 104, + 109, 27, 105, 113, 233, 40, 87, 51, 179, 107, 27, 180, 59, 217, 47, 125, 179, 114, 246, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 437, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10788030900211617652" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60" + } + } + ] + }, + "cborHex": "bf1b95b6c8f2410d0f744160ff", + "cborBytes": [191, 27, 149, 182, 200, 242, 65, 13, 15, 116, 65, 96, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 438, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3497319685398048602" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7a0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7127457476888450391" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cbb169" + }, + { + "_tag": "ByteArray", + "bytearray": "ec637d2b41fc6df33bd215d6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14634878549542517622" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "54e02969aef2" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11516740898911617491" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8955958466761853626" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16430262784122764796" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13313079488494048184" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8aadc44910c62ea013e" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff04" + } + } + ] + }, + "cborHex": "bf1b3088f9b96a21af5a42b7a01b62e9d0cff5a355579f1343cbb1694cec637d2b41fc6df33bd215d6ff1bcb1988807c773b76d87c9f4654e02969aef2ff1bfffffffffffffff1d8669f1b9fd3aed449d701d39f1b7c49f4c65a7e0aba1be40404f36df53dfcffff1bfffffffffffffff3bf1bb8c18f42523a13b84aa8aadc44910c62ea013eff1bfffffffffffffffc42ff04ff", + "cborBytes": [ + 191, 27, 48, 136, 249, 185, 106, 33, 175, 90, 66, 183, 160, 27, 98, 233, 208, 207, 245, 163, 85, 87, 159, 19, 67, + 203, 177, 105, 76, 236, 99, 125, 43, 65, 252, 109, 243, 59, 210, 21, 214, 255, 27, 203, 25, 136, 128, 124, 119, + 59, 118, 216, 124, 159, 70, 84, 224, 41, 105, 174, 242, 255, 27, 255, 255, 255, 255, 255, 255, 255, 241, 216, 102, + 159, 27, 159, 211, 174, 212, 73, 215, 1, 211, 159, 27, 124, 73, 244, 198, 90, 126, 10, 186, 27, 228, 4, 4, 243, + 109, 245, 61, 252, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 243, 191, 27, 184, 193, 143, 66, 82, 58, 19, + 184, 74, 168, 170, 220, 68, 145, 12, 98, 234, 1, 62, 255, 27, 255, 255, 255, 255, 255, 255, 255, 252, 66, 255, 4, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 439, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7711950679414964352" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40" + } + } + ] + }, + "cborHex": "bf1b6b065a4883dc80804140ff", + "cborBytes": [191, 27, 107, 6, 90, 72, 131, 220, 128, 128, 65, 64, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 440, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5489586075779023399" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eab3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5459695382404817392" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "881756305524857424" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2752347708234913605" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10008684128901972860" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10785891460878715420" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24e6db2ef0cc269aa2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13424029677148459491" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa040329" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14176003213191068872" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4709923391019507237" + } + } + } + ] + }, + "cborHex": "bf021008d8669f1b4c2eed736abd42279f42eab31b4bc4bc060a1461f01b0c3ca0b029451a501b26324da877b3d745ffff14d9050a9f1b8ae5fd2fdc4ac37cff1b95af2f2337984a1c4924e6db2ef0cc269aa21bba4bbbde28bc51e344fa0403291bc4bb47d0910cbcc81b415d025eb1055e25ff", + "cborBytes": [ + 191, 2, 16, 8, 216, 102, 159, 27, 76, 46, 237, 115, 106, 189, 66, 39, 159, 66, 234, 179, 27, 75, 196, 188, 6, 10, + 20, 97, 240, 27, 12, 60, 160, 176, 41, 69, 26, 80, 27, 38, 50, 77, 168, 119, 179, 215, 69, 255, 255, 20, 217, 5, + 10, 159, 27, 138, 229, 253, 47, 220, 74, 195, 124, 255, 27, 149, 175, 47, 35, 55, 152, 74, 28, 73, 36, 230, 219, + 46, 240, 204, 38, 154, 162, 27, 186, 75, 187, 222, 40, 188, 81, 227, 68, 250, 4, 3, 41, 27, 196, 187, 71, 208, + 145, 12, 188, 200, 27, 65, 93, 2, 94, 177, 5, 94, 37, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 441, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17357139658931009082" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9441117826650018958" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8802702370500424041" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7580619224933154473" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3823632249348394466" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10175852209336710866" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1de1cd0d3a10" + } + ] + } + } + ] + }, + "cborHex": "bf091bf0e0f28ec76d763a0ed8669f1b830596a46415148e9f1b7a297b2ad12ab1691b6933c5056fa33ea91b35104545b6238de21b8d37e3aba06376d2461de1cd0d3a10ffffff", + "cborBytes": [ + 191, 9, 27, 240, 224, 242, 142, 199, 109, 118, 58, 14, 216, 102, 159, 27, 131, 5, 150, 164, 100, 21, 20, 142, 159, + 27, 122, 41, 123, 42, 209, 42, 177, 105, 27, 105, 51, 197, 5, 111, 163, 62, 169, 27, 53, 16, 69, 69, 182, 35, 141, + 226, 27, 141, 55, 227, 171, 160, 99, 118, 210, 70, 29, 225, 205, 13, 58, 16, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 442, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7075857331717100479" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6084171716659931121" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8197923501869085734" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13472102709300594598" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5937465373559278097" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8742081937542974716" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "548dfc782d0606ac6c08" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "608e2baacc241f94" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e160f351c378da05cafc36" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11755090420161694301" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bb238f2d1c5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17348781120090788766" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15991081302093645391" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5164550432125075586" + } + }, + { + "_tag": "ByteArray", + "bytearray": "94591e93a286a439424894" + }, + { + "_tag": "ByteArray", + "bytearray": "b4681703c384f5d6dbd9" + } + ] + } + } + ] + }, + "cborHex": "bf1b62327ec0f25753bf1b546f51f0e3fe67f11b71c4dffd90bbb426bf1bbaf686092d7087a61b52661d4c992eca1141451b79521d34649b8cfc4a548dfc782d0606ac6c0848608e2baacc241f944be160f351c378da05cafc361ba3227874bc55ca5dff461bb238f2d1c59f1bf0c34082cd03d39e1bddebbbb849aec64f1b47ac2b414b67c0824b94591e93a286a4394248944ab4681703c384f5d6dbd9ffff", + "cborBytes": [ + 191, 27, 98, 50, 126, 192, 242, 87, 83, 191, 27, 84, 111, 81, 240, 227, 254, 103, 241, 27, 113, 196, 223, 253, + 144, 187, 180, 38, 191, 27, 186, 246, 134, 9, 45, 112, 135, 166, 27, 82, 102, 29, 76, 153, 46, 202, 17, 65, 69, + 27, 121, 82, 29, 52, 100, 155, 140, 252, 74, 84, 141, 252, 120, 45, 6, 6, 172, 108, 8, 72, 96, 142, 43, 170, 204, + 36, 31, 148, 75, 225, 96, 243, 81, 195, 120, 218, 5, 202, 252, 54, 27, 163, 34, 120, 116, 188, 85, 202, 93, 255, + 70, 27, 178, 56, 242, 209, 197, 159, 27, 240, 195, 64, 130, 205, 3, 211, 158, 27, 221, 235, 187, 184, 73, 174, + 198, 79, 27, 71, 172, 43, 65, 75, 103, 192, 130, 75, 148, 89, 30, 147, 162, 134, 164, 57, 66, 72, 148, 74, 180, + 104, 23, 3, 195, 132, 245, 214, 219, 217, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 443, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bad3947649" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "203213250063842933" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8e8ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e36df01f3ca396120" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bff" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "24216b7503cb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13378559085074812030" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffefbf45bad39476491b02d1f55fcfb53e7543f8e8ad498e36df01f3ca396120ff429bffd8669f1bfffffffffffffff99f4624216b7503cb1bb9aa309af0758c7effffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 239, 191, 69, 186, 211, 148, 118, 73, 27, 2, 209, 245, 95, 207, 181, + 62, 117, 67, 248, 232, 173, 73, 142, 54, 223, 1, 243, 202, 57, 97, 32, 255, 66, 155, 255, 216, 102, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 249, 159, 70, 36, 33, 107, 117, 3, 203, 27, 185, 170, 48, 154, 240, 117, 140, 126, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 444, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8d793b7b706a34fa8e" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4420507672888878576" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04e7fe04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10387163001199315156" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "070040" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12326673982702590696" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1df20882bd1e6f1b99a07424" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12568133410667961528" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3929c088d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14400193215809741883" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11702967084611586780" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13205684398086180079" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15885178266395470171" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16358855622253598260" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "516b" + } + } + ] + }, + "cborHex": "bf139f498d793b7b706a34fa8eff1b3d58cc4ec16e25f0bf4404e7fe041b90269db74e90c8d4430700401bffffffffffffffebff1bab1124ad81099ae8d905069f4c1df20882bd1e6f1b99a074241bae6afabf88951cb8453929c088d61bc7d7c36f2d54643b1ba2694a8ef85ccadcff1bb74403fe4bd84cef1bdc737d785241e95b1be3065483f853d63442516bff", + "cborBytes": [ + 191, 19, 159, 73, 141, 121, 59, 123, 112, 106, 52, 250, 142, 255, 27, 61, 88, 204, 78, 193, 110, 37, 240, 191, 68, + 4, 231, 254, 4, 27, 144, 38, 157, 183, 78, 144, 200, 212, 67, 7, 0, 64, 27, 255, 255, 255, 255, 255, 255, 255, + 235, 255, 27, 171, 17, 36, 173, 129, 9, 154, 232, 217, 5, 6, 159, 76, 29, 242, 8, 130, 189, 30, 111, 27, 153, 160, + 116, 36, 27, 174, 106, 250, 191, 136, 149, 28, 184, 69, 57, 41, 192, 136, 214, 27, 199, 215, 195, 111, 45, 84, + 100, 59, 27, 162, 105, 74, 142, 248, 92, 202, 220, 255, 27, 183, 68, 3, 254, 75, 216, 76, 239, 27, 220, 115, 125, + 120, 82, 65, 233, 91, 27, 227, 6, 84, 131, 248, 83, 214, 52, 66, 81, 107, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 445, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5899" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4849089774035905416" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ee1cb17974" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15759295377513872256" + } + } + ] + } + } + ] + }, + "cborHex": "bf425899d8669f1b434b6d753963ab889f45ee1cb179741bdab443a6472b7b80ffffff", + "cborBytes": [ + 191, 66, 88, 153, 216, 102, 159, 27, 67, 75, 109, 117, 57, 99, 171, 136, 159, 69, 238, 28, 177, 121, 116, 27, 218, + 180, 67, 166, 71, 43, 123, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 446, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "997561814014581091" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83182241f5d2f7d499b242d2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4580485764234503048" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15124054823626416460" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5089412505819125036" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7915608651726128395" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "935d550499d9ca" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18306243461710079245" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13973959486065072569" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1365089347911115098" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "111827765308956145" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14801885651232067814" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0dd80d2f3dd559634c83182241f5d2f7d499b242d21b3f912788bbee63881bd1e36fbb3dc9214c1b46a139b58cc7952cd8669f1b6dd9e4214b25050b9f47935d550499d9caffff1bfe0cd770130be50d9f1bc1ed7a1d889bd9b91b12f1c58784e9615a1b018d4ac293441df11bcd6adc9377a390e6ffff", + "cborBytes": [ + 191, 27, 13, 216, 13, 47, 61, 213, 89, 99, 76, 131, 24, 34, 65, 245, 210, 247, 212, 153, 178, 66, 210, 27, 63, + 145, 39, 136, 187, 238, 99, 136, 27, 209, 227, 111, 187, 61, 201, 33, 76, 27, 70, 161, 57, 181, 140, 199, 149, 44, + 216, 102, 159, 27, 109, 217, 228, 33, 75, 37, 5, 11, 159, 71, 147, 93, 85, 4, 153, 217, 202, 255, 255, 27, 254, + 12, 215, 112, 19, 11, 229, 13, 159, 27, 193, 237, 122, 29, 136, 155, 217, 185, 27, 18, 241, 197, 135, 132, 233, + 97, 90, 27, 1, 141, 74, 194, 147, 68, 29, 241, 27, 205, 106, 220, 147, 119, 163, 144, 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 447, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "852194405643577195" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8718701711227571160" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3748f7353c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "955605f9f7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4e" + }, + { + "_tag": "ByteArray", + "bytearray": "87fafb67d74e5b" + } + ] + } + } + ] + }, + "cborHex": "bf019f1b0bd39a4bfbf5e76b1b78ff0d03404f4bd8ff453748f7353cd9050c9f1102ff45955605f9f7d87f9f414e4787fafb67d74e5bffff", + "cborBytes": [ + 191, 1, 159, 27, 11, 211, 154, 75, 251, 245, 231, 107, 27, 120, 255, 13, 3, 64, 79, 75, 216, 255, 69, 55, 72, 247, + 53, 60, 217, 5, 12, 159, 17, 2, 255, 69, 149, 86, 5, 249, 247, 216, 127, 159, 65, 78, 71, 135, 250, 251, 103, 215, + 78, 91, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 448, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "663500316362955661" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8718631901621435435" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0608fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14810646858026769525" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cd" + }, + { + "_tag": "ByteArray", + "bytearray": "5544fa42" + }, + { + "_tag": "ByteArray", + "bytearray": "977ca116b17c124424212182" + } + ] + } + } + ] + }, + "cborHex": "bf1b09353a05b92c5b8dd8669f1b78fecd856f88bc2b9f430608fc1bcd89fcd8e270dc7541cd445544fa424c977ca116b17c124424212182ffffff", + "cborBytes": [ + 191, 27, 9, 53, 58, 5, 185, 44, 91, 141, 216, 102, 159, 27, 120, 254, 205, 133, 111, 136, 188, 43, 159, 67, 6, 8, + 252, 27, 205, 137, 252, 216, 226, 112, 220, 117, 65, 205, 68, 85, 68, 250, 66, 76, 151, 124, 161, 22, 177, 124, + 18, 68, 36, 33, 33, 130, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 449, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2607d5ae07b88f6b0a8ed28" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "050249" + } + } + ] + }, + "cborHex": "bf4cd2607d5ae07b88f6b0a8ed2843050249ff", + "cborBytes": [191, 76, 210, 96, 125, 90, 224, 123, 136, 246, 176, 168, 237, 40, 67, 5, 2, 73, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 450, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ad628dee9a8b78bd6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7328550194229714090" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9514642899053226568" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a40ba786b957" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13456989656248770709" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9081241678809742654" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2d2b06b293fe1be20f9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9024902453619635665" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee48fea2d0fa87" + } + } + ] + }, + "cborHex": "bf499ad628dee9a8b78bd6bf1b65b43d92c5ae9caa1b840acd4e52c2aa48ff46a40ba786b957d8669f1bbac0d4cb4ed060959f1b7e070d3140ed3d3effff4ab2d2b06b293fe1be20f9d8669f1b7d3ee4f7308cb5d180ff41b547ee48fea2d0fa87ff", + "cborBytes": [ + 191, 73, 154, 214, 40, 222, 233, 168, 183, 139, 214, 191, 27, 101, 180, 61, 146, 197, 174, 156, 170, 27, 132, 10, + 205, 78, 82, 194, 170, 72, 255, 70, 164, 11, 167, 134, 185, 87, 216, 102, 159, 27, 186, 192, 212, 203, 78, 208, + 96, 149, 159, 27, 126, 7, 13, 49, 64, 237, 61, 62, 255, 255, 74, 178, 210, 176, 107, 41, 63, 225, 190, 32, 249, + 216, 102, 159, 27, 125, 62, 228, 247, 48, 140, 181, 209, 128, 255, 65, 181, 71, 238, 72, 254, 162, 208, 250, 135, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 451, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10223097681866755795" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "564652224152546952" + } + } + } + ] + }, + "cborHex": "bf1b8ddfbd2d67c98ed31b07d60c34ca3f2e88ff", + "cborBytes": [191, 27, 141, 223, 189, 45, 103, 201, 142, 211, 27, 7, 214, 12, 52, 202, 63, 46, 136, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 452, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "595977238566485942" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f2cbbe96bc204d51" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10374688646480580911" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "281229221883215150" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6501761963959718658" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b084556240ef93fb6a01bfffffffffffffff39f48f2cbbe96bc204d511b8ffa4c5b44c0d12f1b03e7207cbecefd2e1b5a3ae60ef3f71302ffff", + "cborBytes": [ + 191, 27, 8, 69, 86, 36, 14, 249, 63, 182, 160, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 72, 242, 203, 190, + 150, 188, 32, 77, 81, 27, 143, 250, 76, 91, 68, 192, 209, 47, 27, 3, 231, 32, 124, 190, 206, 253, 46, 27, 90, 58, + 230, 14, 243, 247, 19, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 453, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6550432762345617873" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f30cdd" + }, + { + "_tag": "ByteArray", + "bytearray": "8f6c6af45b71ef" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11976601288154492097" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "42832028406891787" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12565380145621534323" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "320564125448533394" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ac950d1c4bf7950f5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14257177498965383082" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "996fd0d51a4e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "560036213350513817" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5ae7cfe444b0f9d19f43f30cdd478f6c6af45b71efff1ba6356f6ab4ef2cc1bf0e1bffffffffffffffec1b00982b80be33c50b1bae6132ab0f8486731b0472df5fa917f592492ac950d1c4bf7950f51bc5dbab65c58617aa46996fd0d51a4e1bfffffffffffffffc1b07c5a5f8061cbc99ffff", + "cborBytes": [ + 191, 27, 90, 231, 207, 228, 68, 176, 249, 209, 159, 67, 243, 12, 221, 71, 143, 108, 106, 244, 91, 113, 239, 255, + 27, 166, 53, 111, 106, 180, 239, 44, 193, 191, 14, 27, 255, 255, 255, 255, 255, 255, 255, 236, 27, 0, 152, 43, + 128, 190, 51, 197, 11, 27, 174, 97, 50, 171, 15, 132, 134, 115, 27, 4, 114, 223, 95, 169, 23, 245, 146, 73, 42, + 201, 80, 209, 196, 191, 121, 80, 245, 27, 197, 219, 171, 101, 197, 134, 23, 170, 70, 153, 111, 208, 213, 26, 78, + 27, 255, 255, 255, 255, 255, 255, 255, 252, 27, 7, 197, 165, 248, 6, 28, 188, 153, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 454, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0501cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7772b8711" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bfc00050307f85606730352" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4e3fa2b50d16bf531b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2982172226616175295" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3004073b4f04403bc5f740" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1962034659577222220" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7697" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c882f920" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14111057742698588169" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1475686691146022540" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b7f6f5676d60" + }, + { + "_tag": "ByteArray", + "bytearray": "a9990a20" + } + ] + } + } + ] + }, + "cborHex": "bf430501cb45a7772b87114c1bfc00050307f856067303529f494e3fa2b50d16bf531b1b2962cdd7027e2abfff4b3004073b4f04403bc5f7401b1b3a8c20a91ad44c427697d87e8044c882f9209f1bc3d48c40de9328091b147ab13a2187be8c46b7f6f5676d6044a9990a20ffff", + "cborBytes": [ + 191, 67, 5, 1, 203, 69, 167, 119, 43, 135, 17, 76, 27, 252, 0, 5, 3, 7, 248, 86, 6, 115, 3, 82, 159, 73, 78, 63, + 162, 181, 13, 22, 191, 83, 27, 27, 41, 98, 205, 215, 2, 126, 42, 191, 255, 75, 48, 4, 7, 59, 79, 4, 64, 59, 197, + 247, 64, 27, 27, 58, 140, 32, 169, 26, 212, 76, 66, 118, 151, 216, 126, 128, 68, 200, 130, 249, 32, 159, 27, 195, + 212, 140, 64, 222, 147, 40, 9, 27, 20, 122, 177, 58, 33, 135, 190, 140, 70, 183, 246, 245, 103, 109, 96, 68, 169, + 153, 10, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 455, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8734685569486890332" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "41c5131feb7989176a8d" + }, + { + "_tag": "ByteArray", + "bytearray": "0542" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17335001743951089608" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17891710764551514200" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b7937d63f41ff255c9f4a41c5131feb7989176a8d4205421bf0924c3dc8fb4fc81bf84c202561202858ffff", + "cborBytes": [ + 191, 27, 121, 55, 214, 63, 65, 255, 37, 92, 159, 74, 65, 197, 19, 31, 235, 121, 137, 23, 106, 141, 66, 5, 66, 27, + 240, 146, 76, 61, 200, 251, 79, 200, 27, 248, 76, 32, 37, 97, 32, 40, 88, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 456, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3332660591483613745" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15519432943267752061" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12203088342536085784" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9872072937567959418" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9841961610086439737" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13229955872686083771" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10201682510476170846" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12458123341819843072" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18231110401467343949" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13880276671044219298" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e29688bcc43d44b1523b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15358509312758237722" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96f679dbbf" + } + } + ] + }, + "cborHex": "bf1b2e3ffd269852f2311bd7601a0952f8287d1ba95a14315b92e118bf1b8900a608407c397a1b8895abf07e3bdb391bb79a3ec5598c0ebb1b8d93a831443f565eff1bace4252c652c92001bfd01ea514c63e44d1bc0a0a61769bb71a24ae29688bcc43d44b1523b1bd52462d8da7bca1a4596f679dbbfff", + "cborBytes": [ + 191, 27, 46, 63, 253, 38, 152, 82, 242, 49, 27, 215, 96, 26, 9, 82, 248, 40, 125, 27, 169, 90, 20, 49, 91, 146, + 225, 24, 191, 27, 137, 0, 166, 8, 64, 124, 57, 122, 27, 136, 149, 171, 240, 126, 59, 219, 57, 27, 183, 154, 62, + 197, 89, 140, 14, 187, 27, 141, 147, 168, 49, 68, 63, 86, 94, 255, 27, 172, 228, 37, 44, 101, 44, 146, 0, 27, 253, + 1, 234, 81, 76, 99, 228, 77, 27, 192, 160, 166, 23, 105, 187, 113, 162, 74, 226, 150, 136, 188, 196, 61, 68, 177, + 82, 59, 27, 213, 36, 98, 216, 218, 123, 202, 26, 69, 150, 246, 121, 219, 191, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 457, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8b26e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5330510685261905193" + } + }, + { + "_tag": "ByteArray", + "bytearray": "816d" + }, + { + "_tag": "ByteArray", + "bytearray": "7094c4b0c4375b13905f20" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "907045272259560053" + } + } + ] + } + } + ] + }, + "cborHex": "bf43c8b26e9f1b49f9c739da75bd2942816d4b7094c4b0c4375b13905f201b0c9678de903a8275ffff", + "cborBytes": [ + 191, 67, 200, 178, 110, 159, 27, 73, 249, 199, 57, 218, 117, 189, 41, 66, 129, 109, 75, 112, 148, 196, 176, 196, + 55, 91, 19, 144, 95, 32, 27, 12, 150, 120, 222, 144, 58, 130, 117, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 458, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5036c4f9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + } + ] + }, + "cborHex": "bf445036c4f9d9050c8041811bfffffffffffffff1ff", + "cborBytes": [191, 68, 80, 54, 196, 249, 217, 5, 12, 128, 65, 129, 27, 255, 255, 255, 255, 255, 255, 255, 241, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 459, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4872361065617330078" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf659cb82549de" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5887182307528312422" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3079fba1b5befb9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14172325046354324856" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3474513650570700361" + } + } + } + ] + }, + "cborHex": "bf1b439e1a9305908f9e47bf659cb82549de1b51b3791df830866648a3079fba1b5befb91bc4ae368a9d522d781b3037f3c1a5832649ff", + "cborBytes": [ + 191, 27, 67, 158, 26, 147, 5, 144, 143, 158, 71, 191, 101, 156, 184, 37, 73, 222, 27, 81, 179, 121, 29, 248, 48, + 134, 102, 72, 163, 7, 159, 186, 27, 91, 239, 185, 27, 196, 174, 54, 138, 157, 82, 45, 120, 27, 48, 55, 243, 193, + 165, 131, 38, 73, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 460, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "988145576693674067" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16329103558938433401" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17070907448266623215" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14704069351146369877" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8041772884116166304" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3239810136925787399" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf53ca" + } + } + ] + }, + "cborHex": "bf1b0db6992aa5333053d8669f1be29ca12beb1797799f1bece80be0ef8088ef1bcc0f592b5bc9b3551b6f9a1dd4ba1cd6a0ffff1b2cf61e277f2bd50743bf53caff", + "cborBytes": [ + 191, 27, 13, 182, 153, 42, 165, 51, 48, 83, 216, 102, 159, 27, 226, 156, 161, 43, 235, 23, 151, 121, 159, 27, 236, + 232, 11, 224, 239, 128, 136, 239, 27, 204, 15, 89, 43, 91, 201, 179, 85, 27, 111, 154, 29, 212, 186, 28, 214, 160, + 255, 255, 27, 44, 246, 30, 39, 127, 43, 213, 7, 67, 191, 83, 202, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 461, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6131494174024290104" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa8e9d" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d" + } + } + ] + }, + "cborHex": "bf0dbf1b5517717719184f3843fa8e9dff1bfffffffffffffff2412dff", + "cborBytes": [ + 191, 13, 191, 27, 85, 23, 113, 119, 25, 24, 79, 56, 67, 250, 142, 157, 255, 27, 255, 255, 255, 255, 255, 255, 255, + 242, 65, 45, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 462, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10838974749165016365" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16455494067574362259" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb0406f903e7ea" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8215586951430860610" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4852141695352047069" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe2c4e0c1770ef" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ad3c3ceb91" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5085624341207389272" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ca9e684c023ce2c6" + }, + { + "_tag": "ByteArray", + "bytearray": "5555fc4e524a0dbd" + } + ] + } + } + ] + }, + "cborHex": "bf1341fc41fa9f1b966bc61b6568d52d1be45da8ab65515093ff47fb0406f903e7ead9050d9f1b7203a0cde55eef421b4356452a075205ddff47fe2c4e0c1770ef9f45ad3c3ceb911b4693c464bebf145848ca9e684c023ce2c6485555fc4e524a0dbdffff", + "cborBytes": [ + 191, 19, 65, 252, 65, 250, 159, 27, 150, 107, 198, 27, 101, 104, 213, 45, 27, 228, 93, 168, 171, 101, 81, 80, 147, + 255, 71, 251, 4, 6, 249, 3, 231, 234, 217, 5, 13, 159, 27, 114, 3, 160, 205, 229, 94, 239, 66, 27, 67, 86, 69, 42, + 7, 82, 5, 221, 255, 71, 254, 44, 78, 12, 23, 112, 239, 159, 69, 173, 60, 60, 235, 145, 27, 70, 147, 196, 100, 190, + 191, 20, 88, 72, 202, 158, 104, 76, 2, 60, 226, 198, 72, 85, 85, 252, 78, 82, 74, 13, 189, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 463, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15913964626724231206" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14661402237876998775" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4f82" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10176036631162973214" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14244467266465535066" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d224fbbfce6a0b" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cfe5e85ed0503fb3f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17645701080994789210" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bdcd9c28320079826d8669f1bcb77c3a7e9c692779f424f821b8d388b66add4ec1e1bc5ae8382285b945a47d224fbbfce6a0bffff494cfe5e85ed0503fb3f9f1bf4e21fa4696bb75affff", + "cborBytes": [ + 191, 27, 220, 217, 194, 131, 32, 7, 152, 38, 216, 102, 159, 27, 203, 119, 195, 167, 233, 198, 146, 119, 159, 66, + 79, 130, 27, 141, 56, 139, 102, 173, 212, 236, 30, 27, 197, 174, 131, 130, 40, 91, 148, 90, 71, 210, 36, 251, 191, + 206, 106, 11, 255, 255, 73, 76, 254, 94, 133, 237, 5, 3, 251, 63, 159, 27, 244, 226, 31, 164, 105, 107, 183, 90, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 464, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "080dfd31052b46" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ffc03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a624ae2191064e5a83e3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1108477944193253969" + } + }, + { + "_tag": "ByteArray", + "bytearray": "51f87b4a" + }, + { + "_tag": "ByteArray", + "bytearray": "57b0871746" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf2d3e20" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc0db1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07e704fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd28016a" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de" + } + } + ] + }, + "cborHex": "bf47080dfd31052b4680437ffc03134aa624ae2191064e5a83e39f1b0f621ad138fe82514451f87b4a4557b0871746ff44bf2d3e20bf1bfffffffffffffff643fc0db14407e704fc44fd28016aff42db0f41deff", + "cborBytes": [ + 191, 71, 8, 13, 253, 49, 5, 43, 70, 128, 67, 127, 252, 3, 19, 74, 166, 36, 174, 33, 145, 6, 78, 90, 131, 227, 159, + 27, 15, 98, 26, 209, 56, 254, 130, 81, 68, 81, 248, 123, 74, 69, 87, 176, 135, 23, 70, 255, 68, 191, 45, 62, 32, + 191, 27, 255, 255, 255, 255, 255, 255, 255, 246, 67, 252, 13, 177, 68, 7, 231, 4, 252, 68, 253, 40, 1, 106, 255, + 66, 219, 15, 65, 222, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 465, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9304030565803116460" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48bb47afc668cba7b347" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "866138535519346424" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb730eec2f650e3f9cdf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14258dad53c073" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdbba51b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7562265b571" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17676202869556142454" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df3c6de01f9b7416" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88d8ced5d4ae3bb83585" + } + } + ] + }, + "cborHex": "bf1b811e8e81361247acbf4a48bb47afc668cba7b3471b0c052468b7e85ef84afb730eec2f650e3f9cdf4714258dad53c07344fdbba51b46a7562265b571ff1bf54e7cdb79a26176a048df3c6de01f9b74164a88d8ced5d4ae3bb83585ff", + "cborBytes": [ + 191, 27, 129, 30, 142, 129, 54, 18, 71, 172, 191, 74, 72, 187, 71, 175, 198, 104, 203, 167, 179, 71, 27, 12, 5, + 36, 104, 183, 232, 94, 248, 74, 251, 115, 14, 236, 47, 101, 14, 63, 156, 223, 71, 20, 37, 141, 173, 83, 192, 115, + 68, 253, 187, 165, 27, 70, 167, 86, 34, 101, 181, 113, 255, 27, 245, 78, 124, 219, 121, 162, 97, 118, 160, 72, + 223, 60, 109, 224, 31, 155, 116, 22, 74, 136, 216, 206, 213, 212, 174, 59, 184, 53, 133, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 466, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a16" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0b0d54975d34e7675db7" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b36315e5c494649a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1895554924001547972" + } + } + } + ] + }, + "cborHex": "bf424a169f4a0b0d54975d34e7675db7ff48b36315e5c494649a1b1a4e5d29095ad6c4ff", + "cborBytes": [ + 191, 66, 74, 22, 159, 74, 11, 13, 84, 151, 93, 52, 231, 103, 93, 183, 255, 72, 179, 99, 21, 229, 196, 148, 100, + 154, 27, 26, 78, 93, 41, 9, 90, 214, 196, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 467, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7893837901287106368" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7270" + } + } + ] + }, + "cborHex": "bf1b6d8c8bbf74bba7400e1bfffffffffffffffa427270ff", + "cborBytes": [ + 191, 27, 109, 140, 139, 191, 116, 187, 167, 64, 14, 27, 255, 255, 255, 255, 255, 255, 255, 250, 66, 114, 112, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 468, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "193781115212377435" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "293c1fb9f8849606f4280754" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "474461065721268190" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7783632625986080414" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6778735038058778273" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7996781075570441000" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1055542286420505993" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8318867351420185610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17398228796183009928" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12524998283237618180" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "500897737602323484" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14890634597664490785" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17553325079604969651" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7637725977610477664" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8329252418250411924" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11548605864286143345" + } + }, + { + "_tag": "ByteArray", + "bytearray": "88b9fd7d086262fbcb0db8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3323141020922268979" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b02b072e5c869ad5b4c293c1fb9f8849606f42807541b06959fd35211c7debf1b6c0504a2460a8e9e1b5e12e79a11fccea11b6efa4604fbf13b281b0ea60a1df37f75891b73728dc7e6feac0a1bf172ece90d75da881badd1bb940cc172041b06f38bd6a695541c1bcea62945c9ef05211bf399f0288ccf40b3ff1b69fea74f6b3ee060d8669f1b739772f1b2610f949f1ba044e3d8afc4c3714b88b9fd7d086262fbcb0db81b2e1e2b26da99cd33ffffff", + "cborBytes": [ + 191, 27, 2, 176, 114, 229, 200, 105, 173, 91, 76, 41, 60, 31, 185, 248, 132, 150, 6, 244, 40, 7, 84, 27, 6, 149, + 159, 211, 82, 17, 199, 222, 191, 27, 108, 5, 4, 162, 70, 10, 142, 158, 27, 94, 18, 231, 154, 17, 252, 206, 161, + 27, 110, 250, 70, 4, 251, 241, 59, 40, 27, 14, 166, 10, 29, 243, 127, 117, 137, 27, 115, 114, 141, 199, 230, 254, + 172, 10, 27, 241, 114, 236, 233, 13, 117, 218, 136, 27, 173, 209, 187, 148, 12, 193, 114, 4, 27, 6, 243, 139, 214, + 166, 149, 84, 28, 27, 206, 166, 41, 69, 201, 239, 5, 33, 27, 243, 153, 240, 40, 140, 207, 64, 179, 255, 27, 105, + 254, 167, 79, 107, 62, 224, 96, 216, 102, 159, 27, 115, 151, 114, 241, 178, 97, 15, 148, 159, 27, 160, 68, 227, + 216, 175, 196, 195, 113, 75, 136, 185, 253, 125, 8, 98, 98, 251, 203, 13, 184, 27, 46, 30, 43, 38, 218, 153, 205, + 51, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 469, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15341353608028806334" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16142784652695652679" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3759cf4b2c5625" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14251743581929056409" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2259125919998467669" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7944993906529447669" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c88b1b17fddd509fe8" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17368306059539897739" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6769773154126997629" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7d60cbc54f0ca06b744317" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5486668873248798356" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bd4e76fd31436dcbea01be006b11d0d8d49479f473759cf4b2c56251bc5c85d475ed5a8991b1f5a070e0c62de551b6e4249dd1554aef549c88b1b17fddd509fe8ff1bf1089e570523dd8bd8669f1b5df310d0ddb7287d9f4b7d60cbc54f0ca06b7443171b4c249045462ff694ffffff", + "cborBytes": [ + 191, 27, 212, 231, 111, 211, 20, 54, 220, 190, 160, 27, 224, 6, 177, 29, 13, 141, 73, 71, 159, 71, 55, 89, 207, + 75, 44, 86, 37, 27, 197, 200, 93, 71, 94, 213, 168, 153, 27, 31, 90, 7, 14, 12, 98, 222, 85, 27, 110, 66, 73, 221, + 21, 84, 174, 245, 73, 200, 139, 27, 23, 253, 221, 80, 159, 232, 255, 27, 241, 8, 158, 87, 5, 35, 221, 139, 216, + 102, 159, 27, 93, 243, 16, 208, 221, 183, 40, 125, 159, 75, 125, 96, 203, 197, 79, 12, 160, 107, 116, 67, 23, 27, + 76, 36, 144, 69, 70, 47, 246, 148, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 470, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2140538042467179300" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "839002742492222997" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a32613dd1a7c9a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4852553860758126363" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11481011619070894329" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5374505071976417067" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12791106803456201933" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15356116606458157520" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f76b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17200275868336352841" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5685290620237413401" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4617269696081117107" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5976465086530372718" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f6152fd3445159f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6484312827670599045" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3888195854003423832" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13389426788790211549" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7156db305662d5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18261489150281177180" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3824407888615849533" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9879650538502981699" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16110402956635030816" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17679289577368716287" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13b5b29ba929426ddd" + } + } + ] + }, + "cborHex": "bf1b1db4b80231775b24bf1b0ba4bc8c8fd3d61547a32613dd1a7c9a1b4357bc06c3f03f1b1b9f54bf3d10da60f91b4a9613e33ab0872b1bb18323de1816d4cd1bd51be2b1816a59d042f76b1beeb3a7c572e96e491b4ee635b2781c7c19ff1b4013d65343173fb3bf1b52f0ab54df2ac46e481f6152fd3445159f1b59fce82951d095851b35f5a58757054a581bb9d0ccb963f093dd477156db305662d51bfd6dd7a0f028d85c1b351306b64d263e3dff1b891b91d1f47788431bdf93a621eaa245201bf5597433a45403ff4913b5b29ba929426dddff", + "cborBytes": [ + 191, 27, 29, 180, 184, 2, 49, 119, 91, 36, 191, 27, 11, 164, 188, 140, 143, 211, 214, 21, 71, 163, 38, 19, 221, + 26, 124, 154, 27, 67, 87, 188, 6, 195, 240, 63, 27, 27, 159, 84, 191, 61, 16, 218, 96, 249, 27, 74, 150, 19, 227, + 58, 176, 135, 43, 27, 177, 131, 35, 222, 24, 22, 212, 205, 27, 213, 27, 226, 177, 129, 106, 89, 208, 66, 247, 107, + 27, 238, 179, 167, 197, 114, 233, 110, 73, 27, 78, 230, 53, 178, 120, 28, 124, 25, 255, 27, 64, 19, 214, 83, 67, + 23, 63, 179, 191, 27, 82, 240, 171, 84, 223, 42, 196, 110, 72, 31, 97, 82, 253, 52, 69, 21, 159, 27, 89, 252, 232, + 41, 81, 208, 149, 133, 27, 53, 245, 165, 135, 87, 5, 74, 88, 27, 185, 208, 204, 185, 99, 240, 147, 221, 71, 113, + 86, 219, 48, 86, 98, 213, 27, 253, 109, 215, 160, 240, 40, 216, 92, 27, 53, 19, 6, 182, 77, 38, 62, 61, 255, 27, + 137, 27, 145, 209, 244, 119, 136, 67, 27, 223, 147, 166, 33, 234, 162, 69, 32, 27, 245, 89, 116, 51, 164, 84, 3, + 255, 73, 19, 181, 178, 155, 169, 41, 66, 109, 221, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 471, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11878339382018009000" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3554379544285484755" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2177264639640225993" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10127002481315264168" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3352547819720138232" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12844415190640182680" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "33d66401d1584ed247" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8763062612904739008" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2c1831e83e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c03783b7a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7255403182322434696" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b423613525f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fc1b1" + } + } + ] + }, + "cborHex": "bf1ba4d856bbdab767a8d8669f1b3153b15d160d16d39f1b1e3732a773c648c91b8c8a571a024bb6a81b2e86a47abeedddf81bb240879031bd4598ffff4933d66401d1584ed247d8669f1b799ca7048ab180c09f452c1831e83effff453c03783b7a1b64b05ec0e891428846b423613525f6439fc1b1ff", + "cborBytes": [ + 191, 27, 164, 216, 86, 187, 218, 183, 103, 168, 216, 102, 159, 27, 49, 83, 177, 93, 22, 13, 22, 211, 159, 27, 30, + 55, 50, 167, 115, 198, 72, 201, 27, 140, 138, 87, 26, 2, 75, 182, 168, 27, 46, 134, 164, 122, 190, 237, 221, 248, + 27, 178, 64, 135, 144, 49, 189, 69, 152, 255, 255, 73, 51, 214, 100, 1, 209, 88, 78, 210, 71, 216, 102, 159, 27, + 121, 156, 167, 4, 138, 177, 128, 192, 159, 69, 44, 24, 49, 232, 62, 255, 255, 69, 60, 3, 120, 59, 122, 27, 100, + 176, 94, 192, 232, 145, 66, 136, 70, 180, 35, 97, 53, 37, 246, 67, 159, 193, 177, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 472, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d0d317f4c133952" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "441fa6cb886d2fef04fa77f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13483725781791429257" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4ad63ff1c5cbb6d26fa6c41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a68fd6fa72a2829e5d4a07c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b068a053382a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a40ca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90497ef48b410efa3070" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eea1c52b52c1af3e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13878156425788712329" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd586401" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6d4ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb3f9038ef" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "318d4315ac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15425444352737391596" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "792bea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89c0e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c29a5f09f733b722" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13228250545844203230" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0ae72b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a194ec3" + } + } + ] + } + } + ] + }, + "cborHex": "bf483d0d317f4c133952bf4c441fa6cb886d2fef04fa77f31bbb1fd128a07452894ca4ad63ff1c5cbb6d26fa6c414ca68fd6fa72a2829e5d4a07c346b068a053382a438a40ca41dc4a90497ef48b410efa307048eea1c52b52c1af3e1bc0991dbd5870e589ff44cd58640143b6d4ae45fb3f9038efbf45318d4315ac1bd6122fe94b77b3ec43792bea4389c0e548c29a5f09f733b7221bb7942fc900e92ede44f0ae72b1446a194ec3ffff", + "cborBytes": [ + 191, 72, 61, 13, 49, 127, 76, 19, 57, 82, 191, 76, 68, 31, 166, 203, 136, 109, 47, 239, 4, 250, 119, 243, 27, 187, + 31, 209, 40, 160, 116, 82, 137, 76, 164, 173, 99, 255, 28, 92, 187, 109, 38, 250, 108, 65, 76, 166, 143, 214, 250, + 114, 162, 130, 158, 93, 74, 7, 195, 70, 176, 104, 160, 83, 56, 42, 67, 138, 64, 202, 65, 220, 74, 144, 73, 126, + 244, 139, 65, 14, 250, 48, 112, 72, 238, 161, 197, 43, 82, 193, 175, 62, 27, 192, 153, 29, 189, 88, 112, 229, 137, + 255, 68, 205, 88, 100, 1, 67, 182, 212, 174, 69, 251, 63, 144, 56, 239, 191, 69, 49, 141, 67, 21, 172, 27, 214, + 18, 47, 233, 75, 119, 179, 236, 67, 121, 43, 234, 67, 137, 192, 229, 72, 194, 154, 95, 9, 247, 51, 183, 34, 27, + 183, 148, 47, 201, 0, 233, 46, 222, 68, 240, 174, 114, 177, 68, 106, 25, 78, 195, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 473, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1afbcff69a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18345068159394411929" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32e284" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17841348613657258028" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3675239567903476838" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ab31ee31dda53699a34aecad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3836427322275642302" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2388947381732443545" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17207335389532493709" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3093703265995370430" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74269cd2" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13402254676437660946" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9049300178228591925" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11951859675156662399" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa7c2e92" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17146839631005147294" + } + }, + { + "_tag": "ByteArray", + "bytearray": "45cd6d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbfafa58f57823ca" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf451afbcff69a1bfe96c64b6d0875994332e2841bf79934095ef2e82c4171d8669f1b330112ea2d58cc669f4cab31ee31dda53699a34aecad1b353dba52c6d7bbbe1b21273efc8b4305991beeccbc5e5017978d1b2aef0abab21eafbeffff4474269cd29f1bb9fe5f9eba6275121b7d9592911d31bd351ba5dd890d0707487fff44aa7c2e929f1bedf5cfcbeaa6e09e4345cd6dff48cbfafa58f57823caa0ff", + "cborBytes": [ + 191, 69, 26, 251, 207, 246, 154, 27, 254, 150, 198, 75, 109, 8, 117, 153, 67, 50, 226, 132, 27, 247, 153, 52, 9, + 94, 242, 232, 44, 65, 113, 216, 102, 159, 27, 51, 1, 18, 234, 45, 88, 204, 102, 159, 76, 171, 49, 238, 49, 221, + 165, 54, 153, 163, 74, 236, 173, 27, 53, 61, 186, 82, 198, 215, 187, 190, 27, 33, 39, 62, 252, 139, 67, 5, 153, + 27, 238, 204, 188, 94, 80, 23, 151, 141, 27, 42, 239, 10, 186, 178, 30, 175, 190, 255, 255, 68, 116, 38, 156, 210, + 159, 27, 185, 254, 95, 158, 186, 98, 117, 18, 27, 125, 149, 146, 145, 29, 49, 189, 53, 27, 165, 221, 137, 13, 7, + 7, 72, 127, 255, 68, 170, 124, 46, 146, 159, 27, 237, 245, 207, 203, 234, 166, 224, 158, 67, 69, 205, 109, 255, + 72, 203, 250, 250, 88, 245, 120, 35, 202, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 474, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5dc3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d1cf47fcee3e8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11526835346196075153" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13655392882020257559" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12606294143303470304" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2263635815146403504" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12609504850633967581" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b268041fa1e69e0d6b2d" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98618efa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "335840851636946192" + } + } + } + ] + }, + "cborHex": "bf4148425dc3476d1cf47fcee3e8bf1b9ff78bacf26f12911bbd81b37a11370f171baef28dbb79b0cce01b1f6a0cc7d6a736b01baefdf5da879a47dd4ab268041fa1e69e0d6b2dff4498618efa1b04a92579a6e28510ff", + "cborBytes": [ + 191, 65, 72, 66, 93, 195, 71, 109, 28, 244, 127, 206, 227, 232, 191, 27, 159, 247, 139, 172, 242, 111, 18, 145, + 27, 189, 129, 179, 122, 17, 55, 15, 23, 27, 174, 242, 141, 187, 121, 176, 204, 224, 27, 31, 106, 12, 199, 214, + 167, 54, 176, 27, 174, 253, 245, 218, 135, 154, 71, 221, 74, 178, 104, 4, 31, 161, 230, 158, 13, 107, 45, 255, 68, + 152, 97, 142, 250, 27, 4, 169, 37, 121, 166, 226, 133, 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 475, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "951677582421502481" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1854718215646584734" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13237535175598433475" + } + }, + { + "_tag": "ByteArray", + "bytearray": "53a3ca182df082" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4994849682466980304" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2207040601639453840" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "928382787a4a1d" + }, + { + "_tag": "ByteArray", + "bytearray": "c6e1c5a3" + }, + { + "_tag": "ByteArray", + "bytearray": "1247" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10197203040945645264" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6413300969667804497" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1588370518906105190" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12481252480162807290" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14106272294637141097" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13974667461355803006" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7911925326694709229" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17680543671543371640" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b0d3509b810efaa11d8669f1b19bd4863f20f9f9e9f1bb7b52c1b534864c34753a3ca182df082ffff1b4551455285eac1d0d8669f1b1ea0fbbbd99584909f47928382787a4a1d44c6e1c5a34212471b8d83be237e1926d0ffff1b59009f40b6b7bd519f1b160b06924719ed66ff1bad36510090113dfa1bc3c38be9eac7fc691bc1effe03e052917e1b6dccce2a5b0df7ed1bf55de8cb321f977880ff", + "cborBytes": [ + 191, 27, 13, 53, 9, 184, 16, 239, 170, 17, 216, 102, 159, 27, 25, 189, 72, 99, 242, 15, 159, 158, 159, 27, 183, + 181, 44, 27, 83, 72, 100, 195, 71, 83, 163, 202, 24, 45, 240, 130, 255, 255, 27, 69, 81, 69, 82, 133, 234, 193, + 208, 216, 102, 159, 27, 30, 160, 251, 187, 217, 149, 132, 144, 159, 71, 146, 131, 130, 120, 122, 74, 29, 68, 198, + 225, 197, 163, 66, 18, 71, 27, 141, 131, 190, 35, 126, 25, 38, 208, 255, 255, 27, 89, 0, 159, 64, 182, 183, 189, + 81, 159, 27, 22, 11, 6, 146, 71, 25, 237, 102, 255, 27, 173, 54, 81, 0, 144, 17, 61, 250, 27, 195, 195, 139, 233, + 234, 199, 252, 105, 27, 193, 239, 254, 3, 224, 82, 145, 126, 27, 109, 204, 206, 42, 91, 13, 247, 237, 27, 245, 93, + 232, 203, 50, 31, 151, 120, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 476, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1865984758504178913" + } + } + ] + } + } + ] + }, + "cborHex": "bf0a9f1b19e54f405eef44e1ffff", + "cborBytes": [191, 10, 159, 27, 25, 229, 79, 64, 94, 239, 68, 225, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 477, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3b897ec15b4e20b1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4fa9fd59" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3121426906684135815" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18080906056157008770" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3175807783440648697" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7477081497897981495" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7695942883298671451" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c03c16535e275b0e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13631564650957530915" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3443610920916358161" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17703657535687823060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5002147080338857393" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17916943095948465131" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08cd03c21f93c3e1a9f08d" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a16b160ee02ad94" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f803" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed9d4ded7e9083d06ab6c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbf0c502" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + } + ] + }, + "cborHex": "bf41009f483b897ec15b4e20b11bfffffffffffffff6ff444fa9fd59bf1b2b51893bcd4119871bfaec4842e67293821b2c12bc5a56e689f91b67c3ee01cedad6371b6acd7b470ab67b5b48c03c16535e275b0e1bbd2d0bd3b11867231b2fca29e335e014111bf5b006bb0fd70ed41b456b32445ddaddb11bf8a5c4d156e553eb4b08cd03c21f93c3e1a9f08dff488a16b160ee02ad9442f8034bed9d4ded7e9083d06ab6c31bfffffffffffffff844fbf0c5021bffffffffffffffffff", + "cborBytes": [ + 191, 65, 0, 159, 72, 59, 137, 126, 193, 91, 78, 32, 177, 27, 255, 255, 255, 255, 255, 255, 255, 246, 255, 68, 79, + 169, 253, 89, 191, 27, 43, 81, 137, 59, 205, 65, 25, 135, 27, 250, 236, 72, 66, 230, 114, 147, 130, 27, 44, 18, + 188, 90, 86, 230, 137, 249, 27, 103, 195, 238, 1, 206, 218, 214, 55, 27, 106, 205, 123, 71, 10, 182, 123, 91, 72, + 192, 60, 22, 83, 94, 39, 91, 14, 27, 189, 45, 11, 211, 177, 24, 103, 35, 27, 47, 202, 41, 227, 53, 224, 20, 17, + 27, 245, 176, 6, 187, 15, 215, 14, 212, 27, 69, 107, 50, 68, 93, 218, 221, 177, 27, 248, 165, 196, 209, 86, 229, + 83, 235, 75, 8, 205, 3, 194, 31, 147, 195, 225, 169, 240, 141, 255, 72, 138, 22, 177, 96, 238, 2, 173, 148, 66, + 248, 3, 75, 237, 157, 77, 237, 126, 144, 131, 208, 106, 182, 195, 27, 255, 255, 255, 255, 255, 255, 255, 248, 68, + 251, 240, 197, 2, 27, 255, 255, 255, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 478, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6917908727127535094" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10084634202655230905" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14866586320640138486" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16532488535446024851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2428206168849926268" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17964363817822162640" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f53c042904a7d7a7642" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11687829186946458484" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14552794922112233274" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10086055304131242011" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11117595379686262908" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14226751542846728841" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15303922917236650946" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18f6ecbbb969d14f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8285ad48ee60d3b5f564" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9158436318747837741" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "afcfc88a" + }, + { + "_tag": "ByteArray", + "bytearray": "758b5a0b631cc58330c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17111159480283900812" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1589187892964473816" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18288094901094119928" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b60015955ad02edf6bf1b8bf3d1606b050bb91bce50b97df86fdcf61be56f32bae87a72931b21b2b8a537b6487c1bf94e3db6892b8ed041bf4a8f53c042904a7d7a76421ba23382b88362e374ff1bc9f5e9e0ad9baf3ad8669f1b8bf8dddc63afe81b9f1b9a49a21822b9487c1bc56f9326d31eaa89ffff1bd46274cf3fd9b3c24818f6ecbbb969d14f4a8285ad48ee60d3b5f564d8669f1b7f194d4ef500452d9f44afcfc88a4a758b5a0b631cc58330c71bed770ce375612b8c1b160dedf8017fbbd81bfdcc5d6b0658f9f8ffffff", + "cborBytes": [ + 191, 27, 96, 1, 89, 85, 173, 2, 237, 246, 191, 27, 139, 243, 209, 96, 107, 5, 11, 185, 27, 206, 80, 185, 125, 248, + 111, 220, 246, 27, 229, 111, 50, 186, 232, 122, 114, 147, 27, 33, 178, 184, 165, 55, 182, 72, 124, 27, 249, 78, + 61, 182, 137, 43, 142, 208, 65, 191, 74, 143, 83, 192, 66, 144, 74, 125, 122, 118, 66, 27, 162, 51, 130, 184, 131, + 98, 227, 116, 255, 27, 201, 245, 233, 224, 173, 155, 175, 58, 216, 102, 159, 27, 139, 248, 221, 220, 99, 175, 232, + 27, 159, 27, 154, 73, 162, 24, 34, 185, 72, 124, 27, 197, 111, 147, 38, 211, 30, 170, 137, 255, 255, 27, 212, 98, + 116, 207, 63, 217, 179, 194, 72, 24, 246, 236, 187, 185, 105, 209, 79, 74, 130, 133, 173, 72, 238, 96, 211, 181, + 245, 100, 216, 102, 159, 27, 127, 25, 77, 78, 245, 0, 69, 45, 159, 68, 175, 207, 200, 138, 74, 117, 139, 90, 11, + 99, 28, 197, 131, 48, 199, 27, 237, 119, 12, 227, 117, 97, 43, 140, 27, 22, 13, 237, 248, 1, 127, 187, 216, 27, + 253, 204, 93, 107, 6, 88, 249, 248, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 479, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a043fff70c7ac6877d34a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9f90546036603" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9c0611c" + } + } + ] + } + } + ] + }, + "cborHex": "bf4ba043fff70c7ac6877d34a60b41f4bf47f9f9054603660344d9c0611cffff", + "cborBytes": [ + 191, 75, 160, 67, 255, 247, 12, 122, 198, 135, 125, 52, 166, 11, 65, 244, 191, 71, 249, 249, 5, 70, 3, 102, 3, 68, + 217, 192, 97, 28, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 480, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1639aed0f2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "34dfb415143503" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14468804932067130911" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "395c704c583ceb78f52a41" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1538023301424734541" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a81b135" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10045978526066548985" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d8d758f7c8b5d6b0813e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3131081856670731972" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b68df930a464641b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16879789888975209591" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec55812527" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6bd60bbaa4ebbbd500fe" + } + } + ] + } + } + ] + }, + "cborHex": "bf451639aed0f2bf4734dfb4151435031bc8cb856d3c47fe1f4b395c704c583ceb78f52a411b1558280b39b1e14d444a81b1351b8b6a7c3e5b6620f94b7d8d758f7c8b5d6b0813e01b2b73d65c05878ec4499b68df930a464641b51bea410f789799047745ec558125274a6bd60bbaa4ebbbd500feffff", + "cborBytes": [ + 191, 69, 22, 57, 174, 208, 242, 191, 71, 52, 223, 180, 21, 20, 53, 3, 27, 200, 203, 133, 109, 60, 71, 254, 31, 75, + 57, 92, 112, 76, 88, 60, 235, 120, 245, 42, 65, 27, 21, 88, 40, 11, 57, 177, 225, 77, 68, 74, 129, 177, 53, 27, + 139, 106, 124, 62, 91, 102, 32, 249, 75, 125, 141, 117, 143, 124, 139, 93, 107, 8, 19, 224, 27, 43, 115, 214, 92, + 5, 135, 142, 196, 73, 155, 104, 223, 147, 10, 70, 70, 65, 181, 27, 234, 65, 15, 120, 151, 153, 4, 119, 69, 236, + 85, 129, 37, 39, 74, 107, 214, 11, 186, 164, 235, 187, 213, 0, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 481, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4602783447393756150" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13514581706380468264" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7708326782752656543" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1dfece" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8886917261170956304" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2666440138459749634" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2143a9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9387887321510379621" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9832e17eeee81" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11146431592258980803" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55b2aa3348cc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13365146724013874723" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12354086018601414287" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10291611818613833174" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16081212781033351280" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "583864356679088941" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2678107420946795653" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "906524907328541353" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9160501341706614543" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8584206190655634467" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15067682442782507988" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9890330790078857858" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83ecf2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10962877104502630179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15667623549340318524" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15974842608532225807" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5769" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18175965890093315405" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "109565743703909059" + } + }, + { + "_tag": "ByteArray", + "bytearray": "56f7" + }, + { + "_tag": "ByteArray", + "bytearray": "5c" + }, + { + "_tag": "ByteArray", + "bytearray": "be450ba194756f30f1" + }, + { + "_tag": "ByteArray", + "bytearray": "7d" + } + ] + } + } + ] + }, + "cborHex": "bf1b3fe05f28a7f3e3f61bbb8d707568cce0281b6af97a5e529a0c9f431dfece1b7b54ac2a0461d810bf1b2501192db3bc9d02432143a91b824879c79e05006547b9832e17eeee811b9ab0147a11c9cbc34655b2aa3348cc1bb97a8a2247d29e231bab7287c7775b6e8fff1b8ed3266bf6b07dd6801bdf2bf1d28af6e870bf1b081a4d89f8de7b2d1b252a8c8297df0c851b0c949f99a95c92a91b7f20a36f94e9770f1b77213a0ca0bcfc231bd11b2959867103d41b89418373cdc242824383ecf21b9823f6a48a2467231bd96e949b84f97b3c1bddb20ab6d0567f0f425769ff1bfc3e00ad38a0f54d9f1b01854176a105e2c34256f7415c49be450ba194756f30f1417dffff", + "cborBytes": [ + 191, 27, 63, 224, 95, 40, 167, 243, 227, 246, 27, 187, 141, 112, 117, 104, 204, 224, 40, 27, 106, 249, 122, 94, + 82, 154, 12, 159, 67, 29, 254, 206, 27, 123, 84, 172, 42, 4, 97, 216, 16, 191, 27, 37, 1, 25, 45, 179, 188, 157, + 2, 67, 33, 67, 169, 27, 130, 72, 121, 199, 158, 5, 0, 101, 71, 185, 131, 46, 23, 238, 238, 129, 27, 154, 176, 20, + 122, 17, 201, 203, 195, 70, 85, 178, 170, 51, 72, 204, 27, 185, 122, 138, 34, 71, 210, 158, 35, 27, 171, 114, 135, + 199, 119, 91, 110, 143, 255, 27, 142, 211, 38, 107, 246, 176, 125, 214, 128, 27, 223, 43, 241, 210, 138, 246, 232, + 112, 191, 27, 8, 26, 77, 137, 248, 222, 123, 45, 27, 37, 42, 140, 130, 151, 223, 12, 133, 27, 12, 148, 159, 153, + 169, 92, 146, 169, 27, 127, 32, 163, 111, 148, 233, 119, 15, 27, 119, 33, 58, 12, 160, 188, 252, 35, 27, 209, 27, + 41, 89, 134, 113, 3, 212, 27, 137, 65, 131, 115, 205, 194, 66, 130, 67, 131, 236, 242, 27, 152, 35, 246, 164, 138, + 36, 103, 35, 27, 217, 110, 148, 155, 132, 249, 123, 60, 27, 221, 178, 10, 182, 208, 86, 127, 15, 66, 87, 105, 255, + 27, 252, 62, 0, 173, 56, 160, 245, 77, 159, 27, 1, 133, 65, 118, 161, 5, 226, 195, 66, 86, 247, 65, 92, 73, 190, + 69, 11, 161, 148, 117, 111, 48, 241, 65, 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 482, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "031207020006235602ff0687" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "020158eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a045d2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "80b3e2fa3642" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10312850660570606057" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6873543508135341128" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c031207020006235602ff068744020158eb43a045d2d8669f1bffffffffffffffee9f4680b3e2fa36421b8f1e9b0934f6a9e91b5f63bb672e996c48ffffff", + "cborBytes": [ + 191, 76, 3, 18, 7, 2, 0, 6, 35, 86, 2, 255, 6, 135, 68, 2, 1, 88, 235, 67, 160, 69, 210, 216, 102, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 238, 159, 70, 128, 179, 226, 250, 54, 66, 27, 143, 30, 155, 9, 52, 246, 169, 233, + 27, 95, 99, 187, 103, 46, 153, 108, 72, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 483, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2382787713711132950" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10720524302652224256" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12476048822063045111" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7bb528e167f7b68d19011" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4041520370646173682" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18362725819194893152" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5617834407330086666" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14990928795103667325" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8e9e913bd" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16539759571166599414" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "95" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11600216850530765577" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9725b600e37832b57c0fe10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7d573ded698c8f77af2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7679721a07eb1927728ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13477429672323143403" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b21115ccd12ead1169f1b94c6f40db18733001bad23d44d7f7f99f74bd7bb528e167f7b68d19011ff1b38165d5d3cdec7f2d8669f1bfed581d7b90163609f1b4df68ea0ffe07f0a1bd00a7a505554247d45c8e9e913bdffff1be58907b2d5c098f6bf41951ba0fc3fc3d5630b094ca9725b600e37832b57c0fe104ac7d573ded698c8f77af24bd7679721a07eb1927728ed1bbb0972e1682156ebffff", + "cborBytes": [ + 191, 27, 33, 17, 92, 205, 18, 234, 209, 22, 159, 27, 148, 198, 244, 13, 177, 135, 51, 0, 27, 173, 35, 212, 77, + 127, 127, 153, 247, 75, 215, 187, 82, 142, 22, 127, 123, 104, 209, 144, 17, 255, 27, 56, 22, 93, 93, 60, 222, 199, + 242, 216, 102, 159, 27, 254, 213, 129, 215, 185, 1, 99, 96, 159, 27, 77, 246, 142, 160, 255, 224, 127, 10, 27, + 208, 10, 122, 80, 85, 84, 36, 125, 69, 200, 233, 233, 19, 189, 255, 255, 27, 229, 137, 7, 178, 213, 192, 152, 246, + 191, 65, 149, 27, 160, 252, 63, 195, 213, 99, 11, 9, 76, 169, 114, 91, 96, 14, 55, 131, 43, 87, 192, 254, 16, 74, + 199, 213, 115, 222, 214, 152, 200, 247, 122, 242, 75, 215, 103, 151, 33, 160, 126, 177, 146, 119, 40, 237, 27, + 187, 9, 114, 225, 104, 33, 86, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 484, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "111058182058038159" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7915511783615022052" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14121329751107948646" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3903084480209907081" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1593" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8335730444218263614" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8311675324609047993" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1391483596751866633" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13003641049542669987" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6735820536261514130" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ea7699cca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8145320864661058384" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4916642204964764354" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12308268581489774215" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "586ea83ac2ea4cbd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15918212766734886922" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5985343331578862249" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16391501937576593586" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "596844235902490633" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15258851440966962726" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6314841037326859211" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10850837188532502167" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13609856568624363760" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "464756763088791825" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15581915757202817384" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1925210769547852987" + } + } + } + ] + }, + "cborHex": "bf1b018a8ed402f8538f9f1b6dd98c076dcac3e41bc3f90a9732f1d0661b362a8aa7c3406d894215931b73ae76aca709e83eff1b735900ababb3adb9bf1b134f8af5772d8b091bb47636a368adb6a31b5d7a7116fea61392454ea7699cca1b7109fe2bafb333501b443b6c09329e3ac21baacfc11017cc8e8748586ea83ac2ea4cbd1bdce8da2c4c52280a1b5310360c6182daa91be37a502a946148b21b08486aab9b351809ff1bd3c2548a6b4b0e26bf1b57a2d2774aed3bcb1b9695eaeeca13fe971bbcdfec70e8df38f01b067325d04ade2911ff1bd83e15d31c22c1681b1ab7b8fea4a7fcbbff", + "cborBytes": [ + 191, 27, 1, 138, 142, 212, 2, 248, 83, 143, 159, 27, 109, 217, 140, 7, 109, 202, 195, 228, 27, 195, 249, 10, 151, + 50, 241, 208, 102, 27, 54, 42, 138, 167, 195, 64, 109, 137, 66, 21, 147, 27, 115, 174, 118, 172, 167, 9, 232, 62, + 255, 27, 115, 89, 0, 171, 171, 179, 173, 185, 191, 27, 19, 79, 138, 245, 119, 45, 139, 9, 27, 180, 118, 54, 163, + 104, 173, 182, 163, 27, 93, 122, 113, 22, 254, 166, 19, 146, 69, 78, 167, 105, 156, 202, 27, 113, 9, 254, 43, 175, + 179, 51, 80, 27, 68, 59, 108, 9, 50, 158, 58, 194, 27, 170, 207, 193, 16, 23, 204, 142, 135, 72, 88, 110, 168, 58, + 194, 234, 76, 189, 27, 220, 232, 218, 44, 76, 82, 40, 10, 27, 83, 16, 54, 12, 97, 130, 218, 169, 27, 227, 122, 80, + 42, 148, 97, 72, 178, 27, 8, 72, 106, 171, 155, 53, 24, 9, 255, 27, 211, 194, 84, 138, 107, 75, 14, 38, 191, 27, + 87, 162, 210, 119, 74, 237, 59, 203, 27, 150, 149, 234, 238, 202, 19, 254, 151, 27, 188, 223, 236, 112, 232, 223, + 56, 240, 27, 6, 115, 37, 208, 74, 222, 41, 17, 255, 27, 216, 62, 21, 211, 28, 34, 193, 104, 27, 26, 183, 184, 254, + 164, 167, 252, 187, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 485, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2037e75b32" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f194" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68ba7e0416ad7142217931" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18244575088709755299" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "12eed1402abe62171a3e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8764244312702325566" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4172954529921873415" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8387033743744938232" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14684237976136642331" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "937be13cb2b0316443" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5017416075298047687" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b500230ff176" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14595590178418290924" + } + } + ] + } + } + ] + }, + "cborHex": "bf452037e75b3242f1944b68ba7e0416ad7142217931d8669f1bfd31c061187c61a39f4a12eed1402abe62171a3e1b79a0d9c4775c133e1b39e9500923d9b6071b7464bac0e721b0f81bcbc8e4a38cecef1bffff49937be13cb2b0316443d8669f1b45a171564a7986c780ff46b500230ff1769f1bca8df3efbfcd70ecffff", + "cborBytes": [ + 191, 69, 32, 55, 231, 91, 50, 66, 241, 148, 75, 104, 186, 126, 4, 22, 173, 113, 66, 33, 121, 49, 216, 102, 159, + 27, 253, 49, 192, 97, 24, 124, 97, 163, 159, 74, 18, 238, 209, 64, 42, 190, 98, 23, 26, 62, 27, 121, 160, 217, + 196, 119, 92, 19, 62, 27, 57, 233, 80, 9, 35, 217, 182, 7, 27, 116, 100, 186, 192, 231, 33, 176, 248, 27, 203, + 200, 228, 163, 140, 236, 239, 27, 255, 255, 73, 147, 123, 225, 60, 178, 176, 49, 100, 67, 216, 102, 159, 27, 69, + 161, 113, 86, 74, 121, 134, 199, 128, 255, 70, 181, 0, 35, 15, 241, 118, 159, 27, 202, 141, 243, 239, 191, 205, + 112, 236, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 486, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e6ce0300" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9668058196944583854" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1268519252455586032" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1113af" + } + ] + } + } + ] + }, + "cborHex": "bf039f44e6ce03001b862bd7b4e0af7caeff0d1b119aaf8a095bf8f01bfffffffffffffffbd8669f1bffffffffffffffec9f12431113afffffff", + "cborBytes": [ + 191, 3, 159, 68, 230, 206, 3, 0, 27, 134, 43, 215, 180, 224, 175, 124, 174, 255, 13, 27, 17, 154, 175, 138, 9, 91, + 248, 240, 27, 255, 255, 255, 255, 255, 255, 255, 251, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, + 159, 18, 67, 17, 19, 175, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 487, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16debd92a013cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8003dd4dc263" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b76e367c1c3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7cd627c44f7d20da427a24e9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb836f23410e0f37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5775576227902678821" + } + } + } + ] + }, + "cborHex": "bf4716debd92a013cf468003dd4dc263461b76e367c1c34c7cd627c44f7d20da427a24e948fb836f23410e0f371b5026f7fa9d546725ff", + "cborBytes": [ + 191, 71, 22, 222, 189, 146, 160, 19, 207, 70, 128, 3, 221, 77, 194, 99, 70, 27, 118, 227, 103, 193, 195, 76, 124, + 214, 39, 196, 79, 125, 32, 218, 66, 122, 36, 233, 72, 251, 131, 111, 35, 65, 14, 15, 55, 27, 80, 38, 247, 250, + 157, 84, 103, 37, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 488, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1377369505729012901" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4623151937213726043" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eef8fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10406219434328707556" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16916498037535464115" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2b2b9c3f19cf00dfcd07e0fd" + }, + { + "_tag": "ByteArray", + "bytearray": "317e75e586e2253cc6604e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1600873915145501406" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a303" + }, + { + "_tag": "ByteArray", + "bytearray": "010205015df1b1fafa" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12070659367312556442" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dceff64bb28ffc05f9f17ff0" + }, + { + "_tag": "ByteArray", + "bytearray": "1359911f78" + }, + { + "_tag": "ByteArray", + "bytearray": "fefcacbe" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13726188138809539042" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28c0e95d041bd3d903424dfd" + } + } + ] + }, + "cborHex": "bf0aa01b131d6644916ee4a5a01b4028bc3140487d5b43eef8fc1b906a5170e5edd1e4d8669f1beac3795672e4dab39f4c2b2b9c3f19cf00dfcd07e0fd4b317e75e586e2253cc6604e1b16377258126fbade42a30349010205015df1b1fafaffff1ba78398bdd168019a9f4cdceff64bb28ffc05f9f17ff0451359911f7844fefcacbeff1bbe7d376345ec39e24c28c0e95d041bd3d903424dfdff", + "cborBytes": [ + 191, 10, 160, 27, 19, 29, 102, 68, 145, 110, 228, 165, 160, 27, 64, 40, 188, 49, 64, 72, 125, 91, 67, 238, 248, + 252, 27, 144, 106, 81, 112, 229, 237, 209, 228, 216, 102, 159, 27, 234, 195, 121, 86, 114, 228, 218, 179, 159, 76, + 43, 43, 156, 63, 25, 207, 0, 223, 205, 7, 224, 253, 75, 49, 126, 117, 229, 134, 226, 37, 60, 198, 96, 78, 27, 22, + 55, 114, 88, 18, 111, 186, 222, 66, 163, 3, 73, 1, 2, 5, 1, 93, 241, 177, 250, 250, 255, 255, 27, 167, 131, 152, + 189, 209, 104, 1, 154, 159, 76, 220, 239, 246, 75, 178, 143, 252, 5, 249, 241, 127, 240, 69, 19, 89, 145, 31, 120, + 68, 254, 252, 172, 190, 255, 27, 190, 125, 55, 99, 69, 236, 57, 226, 76, 40, 192, 233, 93, 4, 27, 211, 217, 3, 66, + 77, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 489, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1732883494344983902" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15422199905115483569" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40" + } + } + ] + } + } + ] + }, + "cborHex": "bf0a071bffffffffffffffefbf1b180c705b5d92055e031bd606a91a7778adb14140ffff", + "cborBytes": [ + 191, 10, 7, 27, 255, 255, 255, 255, 255, 255, 255, 239, 191, 27, 24, 12, 112, 91, 93, 146, 5, 94, 3, 27, 214, 6, + 169, 26, 119, 120, 173, 177, 65, 64, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 490, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + } + ] + }, + "cborHex": "bf4204fa1bfffffffffffffffbff", + "cborBytes": [191, 66, 4, 250, 27, 255, 255, 255, 255, 255, 255, 255, 251, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 491, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2078068305764568157" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3887203430107594699" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9516269835663397510" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11437252741557346215" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9349323859876589596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14733891032216305565" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a94" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15005794418118891793" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17952823313564555690" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15333032547600545334" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6045f0bee73cb6f4d7" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2448215574520392626" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6400820416637000468" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c0e2b795ac198920c446" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6140780478055274080" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17136479841983781315" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d5eec64" + }, + { + "_tag": "ByteArray", + "bytearray": "77" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10377458199946444799" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "264b78cdc110" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11746025949473491328" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11444300869200653509" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13591506739246473213" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13254156164841228945" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14175811466652658724" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "462599be59cc9567ea" + } + } + ] + }, + "cborHex": "bf1b1cd6c81d30184c5dbf1b35f21eeca53e3fcb1b841094ff057b52861b9eb948c572e35fa71b81bf78840607301c1bcc794bd48e90ff9d427a941bd03f4a84e88419111bf9253daf805dd9aa1bd4c9dfdd393bb636496045f0bee73cb6f4d7ff1b21f9cf1804ddebb2d8669f1b58d4484184b75b149f4ac0e2b795ac198920c4461b55386f4f3e2356601bedd1019f9215d9c3446d5eec644177ffff1b900423402f45bfff46264b78cdc1101ba302445e30e34980d8669f1b9ed253018b662cc580ff1bbc9ebb5e531d1ffd1bb7f038cef2ea4a911bc4ba996c18bdac2449462599be59cc9567eaff", + "cborBytes": [ + 191, 27, 28, 214, 200, 29, 48, 24, 76, 93, 191, 27, 53, 242, 30, 236, 165, 62, 63, 203, 27, 132, 16, 148, 255, 5, + 123, 82, 134, 27, 158, 185, 72, 197, 114, 227, 95, 167, 27, 129, 191, 120, 132, 6, 7, 48, 28, 27, 204, 121, 75, + 212, 142, 144, 255, 157, 66, 122, 148, 27, 208, 63, 74, 132, 232, 132, 25, 17, 27, 249, 37, 61, 175, 128, 93, 217, + 170, 27, 212, 201, 223, 221, 57, 59, 182, 54, 73, 96, 69, 240, 190, 231, 60, 182, 244, 215, 255, 27, 33, 249, 207, + 24, 4, 221, 235, 178, 216, 102, 159, 27, 88, 212, 72, 65, 132, 183, 91, 20, 159, 74, 192, 226, 183, 149, 172, 25, + 137, 32, 196, 70, 27, 85, 56, 111, 79, 62, 35, 86, 96, 27, 237, 209, 1, 159, 146, 21, 217, 195, 68, 109, 94, 236, + 100, 65, 119, 255, 255, 27, 144, 4, 35, 64, 47, 69, 191, 255, 70, 38, 75, 120, 205, 193, 16, 27, 163, 2, 68, 94, + 48, 227, 73, 128, 216, 102, 159, 27, 158, 210, 83, 1, 139, 102, 44, 197, 128, 255, 27, 188, 158, 187, 94, 83, 29, + 31, 253, 27, 183, 240, 56, 206, 242, 234, 74, 145, 27, 196, 186, 153, 108, 24, 189, 172, 36, 73, 70, 37, 153, 190, + 89, 204, 149, 103, 234, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 492, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "100701574156469669" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80f193f88857" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4103672112207654989" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6746" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e613c248537886be6be5c" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5031481085246764948" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8547639697361674731" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e451839c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "815785354501323776" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10935439665283505881" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1013295141409048185" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0165c38c53eb45a54680f193f888571b38f32c0b3ad0704dbf4267464b7e613c248537886be6be5cff1b45d369639c3af7949f1b769f5104754521eb44e451839c1b0b5240752c047c001b97c27c6fe7f09ed91b0e0ff28ffc50c679ffff", + "cborBytes": [ + 191, 27, 1, 101, 195, 140, 83, 235, 69, 165, 70, 128, 241, 147, 248, 136, 87, 27, 56, 243, 44, 11, 58, 208, 112, + 77, 191, 66, 103, 70, 75, 126, 97, 60, 36, 133, 55, 136, 107, 230, 190, 92, 255, 27, 69, 211, 105, 99, 156, 58, + 247, 148, 159, 27, 118, 159, 81, 4, 117, 69, 33, 235, 68, 228, 81, 131, 156, 27, 11, 82, 64, 117, 44, 4, 124, 0, + 27, 151, 194, 124, 111, 231, 240, 158, 217, 27, 14, 15, 242, 143, 252, 80, 198, 121, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 493, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6356285242307874137" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29e245f76680cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b49d7c8a5c3334e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd66fcf99bff53a816" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11743013305302017211" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8611028752411501063" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b58360fc036d18d594729e245f76680cb485b49d7c8a5c3334e1449bd66fcf99bff53a816d905079f1ba2f790624f3664bbff41ecd8669f1b77808506f229a20780ffff", + "cborBytes": [ + 191, 27, 88, 54, 15, 192, 54, 209, 141, 89, 71, 41, 226, 69, 247, 102, 128, 203, 72, 91, 73, 215, 200, 165, 195, + 51, 78, 20, 73, 189, 102, 252, 249, 155, 255, 83, 168, 22, 217, 5, 7, 159, 27, 162, 247, 144, 98, 79, 54, 100, + 187, 255, 65, 236, 216, 102, 159, 27, 119, 128, 133, 6, 242, 41, 162, 7, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 494, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12286167154094617187" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "66932303615787009" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42a1eb8169052cc3738c7e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10660132686507676984" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "12e16d522dcd" + } + ] + } + } + ] + }, + "cborHex": "bf1baa813bee86e1b2631b00edca93550480014b42a1eb8169052cc3738c7ed8669f1b93f06632d5d215389f4612e16d522dcdffffff", + "cborBytes": [ + 191, 27, 170, 129, 59, 238, 134, 225, 178, 99, 27, 0, 237, 202, 147, 85, 4, 128, 1, 75, 66, 161, 235, 129, 105, 5, + 44, 195, 115, 140, 126, 216, 102, 159, 27, 147, 240, 102, 50, 213, 210, 21, 56, 159, 70, 18, 225, 109, 82, 45, + 205, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 495, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01070301a2ff2e9e0241fd05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1328376574921025011" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2186200834179026537" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13427578122768530580" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11997361192272918795" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c307e464bbbfa93" + } + ] + } + } + ] + }, + "cborHex": "bf004c01070301a2ff2e9e0241fd051b126f5774f41e25f3d87b9f1b1e56f21360e74e69ff1bba585729096cbc94d8669f1ba67f30708b7bf90b9f1bfffffffffffffffe485c307e464bbbfa93ffffff", + "cborBytes": [ + 191, 0, 76, 1, 7, 3, 1, 162, 255, 46, 158, 2, 65, 253, 5, 27, 18, 111, 87, 116, 244, 30, 37, 243, 216, 123, 159, + 27, 30, 86, 242, 19, 96, 231, 78, 105, 255, 27, 186, 88, 87, 41, 9, 108, 188, 148, 216, 102, 159, 27, 166, 127, + 48, 112, 139, 123, 249, 11, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 72, 92, 48, 126, 70, 75, 187, 250, + 147, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 496, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12744479151424493271" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9832877994801894585" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10820331684875011897" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "50d106" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16645031138700713223" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16705586380041670074" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13562486816618430788" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d01070200f802031403c497" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14652698220941027288" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18270130853554635866" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe0042" + } + } + ] + } + } + ] + }, + "cborHex": "bf0d1bffffffffffffffeb14d8669f1bb0dd7c43dc0756d780ff1b887566707fec14b9801b96298a56bce107399f4350d1061be6ff07a1a9925d07ff1be7d62a4d7afccdbabf081bfffffffffffffff31bbc37a1e70f75c1444c6d01070200f802031403c4971bcb58d7660c3027d841f21bfd8c8b364607445a1bffffffffffffffeb1bffffffffffffffeb415d1bfffffffffffffff843fe0042ffff", + "cborBytes": [ + 191, 13, 27, 255, 255, 255, 255, 255, 255, 255, 235, 20, 216, 102, 159, 27, 176, 221, 124, 67, 220, 7, 86, 215, + 128, 255, 27, 136, 117, 102, 112, 127, 236, 20, 185, 128, 27, 150, 41, 138, 86, 188, 225, 7, 57, 159, 67, 80, 209, + 6, 27, 230, 255, 7, 161, 169, 146, 93, 7, 255, 27, 231, 214, 42, 77, 122, 252, 205, 186, 191, 8, 27, 255, 255, + 255, 255, 255, 255, 255, 243, 27, 188, 55, 161, 231, 15, 117, 193, 68, 76, 109, 1, 7, 2, 0, 248, 2, 3, 20, 3, 196, + 151, 27, 203, 88, 215, 102, 12, 48, 39, 216, 65, 242, 27, 253, 140, 139, 54, 70, 7, 68, 90, 27, 255, 255, 255, + 255, 255, 255, 255, 235, 27, 255, 255, 255, 255, 255, 255, 255, 235, 65, 93, 27, 255, 255, 255, 255, 255, 255, + 255, 248, 67, 254, 0, 66, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 497, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5610826255480693496" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4082312184447785895" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17215462388733017114" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a16019d62e4d8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7185832530961133891" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4ddda8c07e5ca2f8bf1b38a7494d80425ba71beee99bd4c4877c1a471a16019d62e4d81b63b9349d5f627143ffff", + "cborBytes": [ + 191, 27, 77, 221, 168, 192, 126, 92, 162, 248, 191, 27, 56, 167, 73, 77, 128, 66, 91, 167, 27, 238, 233, 155, 212, + 196, 135, 124, 26, 71, 26, 22, 1, 157, 98, 228, 216, 27, 99, 185, 52, 157, 95, 98, 113, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 498, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a189" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c21d5c6c" + } + } + ] + }, + "cborHex": "bf42a18944c21d5c6cff", + "cborBytes": [191, 66, 161, 137, 68, 194, 29, 92, 108, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 499, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9626930801473422367" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + } + ] + }, + "cborHex": "bf1b8599ba8eeb17041f1bfffffffffffffffaff", + "cborBytes": [191, 27, 133, 153, 186, 142, 235, 23, 4, 31, 27, 255, 255, 255, 255, 255, 255, 255, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 500, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4330896846585931886" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12298521600374660501" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9bebb4f7286bc3e83c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4ff4c5a2d49c" + }, + { + "_tag": "ByteArray", + "bytearray": "6f8a4348a0" + }, + { + "_tag": "ByteArray", + "bytearray": "65ffb710" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10811540880578213045" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5413634427528286690" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17599186674840196302" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10252381326587963936" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15700811162031954434" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10407054450127667481" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14840888342051385258" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15798438547853487376" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "962c80254db266" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17162396659574242223" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d540180026d" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3c1a6fbc639d286e1bfffffffffffffff41baaad203c34ccdd95499bebb4f7286bc3e83c1bfffffffffffffff39f464ff4c5a2d49c456f8a4348a04465ffb7101b960a4f261d7a74b51b4b2117d444a611e2ff1bfffffffffffffff9131bfffffffffffffffdbf011bf43cdf0949a354ce1b8e47c67f411faa201bd9e47c90be671a021b906d48e22a0201191bffffffffffffffff1bcdf56d5113356faa41841bdb3f5427d2a52d1047962c80254db2661bee2d14d4e445fbaf460d540180026dffff", + "cborBytes": [ + 191, 27, 60, 26, 111, 188, 99, 157, 40, 110, 27, 255, 255, 255, 255, 255, 255, 255, 244, 27, 170, 173, 32, 60, 52, + 204, 221, 149, 73, 155, 235, 180, 247, 40, 107, 195, 232, 60, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 70, + 79, 244, 197, 162, 212, 156, 69, 111, 138, 67, 72, 160, 68, 101, 255, 183, 16, 27, 150, 10, 79, 38, 29, 122, 116, + 181, 27, 75, 33, 23, 212, 68, 166, 17, 226, 255, 27, 255, 255, 255, 255, 255, 255, 255, 249, 19, 27, 255, 255, + 255, 255, 255, 255, 255, 253, 191, 1, 27, 244, 60, 223, 9, 73, 163, 84, 206, 27, 142, 71, 198, 127, 65, 31, 170, + 32, 27, 217, 228, 124, 144, 190, 103, 26, 2, 27, 144, 109, 72, 226, 42, 2, 1, 25, 27, 255, 255, 255, 255, 255, + 255, 255, 255, 27, 205, 245, 109, 81, 19, 53, 111, 170, 65, 132, 27, 219, 63, 84, 39, 210, 165, 45, 16, 71, 150, + 44, 128, 37, 77, 178, 102, 27, 238, 45, 20, 212, 228, 69, 251, 175, 70, 13, 84, 1, 128, 2, 109, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 501, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "79cde638" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13852094979673179021" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac80e74f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6952570692988435777" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "370576" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8568262800410813805" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3069446027155529504" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13396933427537434023" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2711de6a9591b4099bee" + } + } + ] + } + } + ] + }, + "cborHex": "bf4479cde638d8669f1bc03c86fe1264438d80ff44ac80e74fbf1b607c7e357f5dfd41433705761b76e8959ed0ae256d1b2a98dce629d6df201bb9eb77f8ebecd5a74a2711de6a9591b4099beeffff", + "cborBytes": [ + 191, 68, 121, 205, 230, 56, 216, 102, 159, 27, 192, 60, 134, 254, 18, 100, 67, 141, 128, 255, 68, 172, 128, 231, + 79, 191, 27, 96, 124, 126, 53, 127, 93, 253, 65, 67, 55, 5, 118, 27, 118, 232, 149, 158, 208, 174, 37, 109, 27, + 42, 152, 220, 230, 41, 214, 223, 32, 27, 185, 235, 119, 248, 235, 236, 213, 167, 74, 39, 17, 222, 106, 149, 145, + 180, 9, 155, 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 502, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a94fe999ad040e10b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbf2643f7ac126e6f09497" + } + } + ] + }, + "cborHex": "bf49a94fe999ad040e10b44bfbf2643f7ac126e6f09497ff", + "cborBytes": [ + 191, 73, 169, 79, 233, 153, 173, 4, 14, 16, 180, 75, 251, 242, 100, 63, 122, 193, 38, 230, 240, 148, 151, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 503, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7860b5fd" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91d4a842d0f0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "040a539d8d7fd465" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbc1b703bd4c801b095b02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "920e61ab69486460ea" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5c9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1080043915674753915" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d88bf47d5f913e8d4db4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae6cb4f9a024" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5fcab34031ecd502b5565" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17033704017707772352" + } + } + } + ] + }, + "cborHex": "bf447860b5fda04691d4a842d0f0bf48040a539d8d7fd46541244bcbc1b703bd4c801b095b0249920e61ab69486460eaff42b5c9d8669f1b0efd16380f9d9b7b80ff4ad88bf47d5f913e8d4db446ae6cb4f9a0244be5fcab34031ecd502b55651bec63df8e409da9c0ff", + "cborBytes": [ + 191, 68, 120, 96, 181, 253, 160, 70, 145, 212, 168, 66, 208, 240, 191, 72, 4, 10, 83, 157, 141, 127, 212, 101, 65, + 36, 75, 203, 193, 183, 3, 189, 76, 128, 27, 9, 91, 2, 73, 146, 14, 97, 171, 105, 72, 100, 96, 234, 255, 66, 181, + 201, 216, 102, 159, 27, 14, 253, 22, 56, 15, 157, 155, 123, 128, 255, 74, 216, 139, 244, 125, 95, 145, 62, 141, + 77, 180, 70, 174, 108, 180, 249, 160, 36, 75, 229, 252, 171, 52, 3, 30, 205, 80, 43, 85, 101, 27, 236, 99, 223, + 142, 64, 157, 169, 192, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 504, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1005589406802377415" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1366906444369384793" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6843098744618372787" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1646420759618039563" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12096908094808455937" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dc6399b5c23bc233533666a2" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3789386869997017231" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6aac3819aacd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7538850072524322944" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0901988c" + }, + { + "_tag": "ByteArray", + "bytearray": "23edb9cff11013ba6061d862" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2684569489448288942" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12525223900556938557" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12274235131559214224" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16405761043459498111" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6cfbb82d09844d4" + } + } + ] + }, + "cborHex": "bf1b0df4923cd659fac7801b12f83a2b41d45559d8669f1b5ef7920d4be64eb39f1b16d942f52fdcaf0b1ba7e0d9d1ef9afb014cdc6399b5c23bc233533666a2ffff1b34969b47feb3988f466aac3819aacd1b689f6032cbbd78809f440901988c4c23edb9cff11013ba6061d8621b254181ba296ac2ae1badd288c6acedcd3dff1baa56d7d20a34fc90a01be3acf8bf6158607f48c6cfbb82d09844d4ff", + "cborBytes": [ + 191, 27, 13, 244, 146, 60, 214, 89, 250, 199, 128, 27, 18, 248, 58, 43, 65, 212, 85, 89, 216, 102, 159, 27, 94, + 247, 146, 13, 75, 230, 78, 179, 159, 27, 22, 217, 66, 245, 47, 220, 175, 11, 27, 167, 224, 217, 209, 239, 154, + 251, 1, 76, 220, 99, 153, 181, 194, 59, 194, 51, 83, 54, 102, 162, 255, 255, 27, 52, 150, 155, 71, 254, 179, 152, + 143, 70, 106, 172, 56, 25, 170, 205, 27, 104, 159, 96, 50, 203, 189, 120, 128, 159, 68, 9, 1, 152, 140, 76, 35, + 237, 185, 207, 241, 16, 19, 186, 96, 97, 216, 98, 27, 37, 65, 129, 186, 41, 106, 194, 174, 27, 173, 210, 136, 198, + 172, 237, 205, 61, 255, 27, 170, 86, 215, 210, 10, 52, 252, 144, 160, 27, 227, 172, 248, 191, 97, 88, 96, 127, 72, + 198, 207, 187, 130, 208, 152, 68, 212, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 505, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "443874756000853061" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6713604951547265569" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b60c9d5285507056b2f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12189310487787096940" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3621639730334217118" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13077580561642070663" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c81795d8" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14333870874473095349" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c31d8180faf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17752776849189143773" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6bdaec7546" + } + } + ] + }, + "cborHex": "bf1b0628f5bd2431ac45bf1b5d2b84221b4742214a8b60c9d5285507056b2f1ba929214e917e4b6c1b3242a6257f03339e1bb57ce63b9a3aa28744c81795d8ff1bc6ec239dc14960b5469c31d8180faf1bf65e887c70b284dd456bdaec7546ff", + "cborBytes": [ + 191, 27, 6, 40, 245, 189, 36, 49, 172, 69, 191, 27, 93, 43, 132, 34, 27, 71, 66, 33, 74, 139, 96, 201, 213, 40, + 85, 7, 5, 107, 47, 27, 169, 41, 33, 78, 145, 126, 75, 108, 27, 50, 66, 166, 37, 127, 3, 51, 158, 27, 181, 124, + 230, 59, 154, 58, 162, 135, 68, 200, 23, 149, 216, 255, 27, 198, 236, 35, 157, 193, 73, 96, 181, 70, 156, 49, 216, + 24, 15, 175, 27, 246, 94, 136, 124, 112, 178, 132, 221, 69, 107, 218, 236, 117, 70, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 506, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7386bb212dc3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9621755fb1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d4d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3de40f09" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7e11578f9ce203a5c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4691929111373234733" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9f8096ed0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6bfd5c6aa95" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38a0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43ba593cb4484c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae1a820b4542b2a5756c13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f347d21a1b131eb1b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f79016" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5753384404105487338" + } + } + ] + } + } + ] + }, + "cborHex": "bf412fbf467386bb212dc3459621755fb1427d4d443de40f0949a7e11578f9ce203a5c1b411d14aafab7422d45a9f8096ed046c6bfd5c6aa95ff4238a04743ba593cb4484c4bae1a820b4542b2a5756c13493f347d21a1b131eb1b43f790169f1b4fd820a1fefae3eaffff", + "cborBytes": [ + 191, 65, 47, 191, 70, 115, 134, 187, 33, 45, 195, 69, 150, 33, 117, 95, 177, 66, 125, 77, 68, 61, 228, 15, 9, 73, + 167, 225, 21, 120, 249, 206, 32, 58, 92, 27, 65, 29, 20, 170, 250, 183, 66, 45, 69, 169, 248, 9, 110, 208, 70, + 198, 191, 213, 198, 170, 149, 255, 66, 56, 160, 71, 67, 186, 89, 60, 180, 72, 76, 75, 174, 26, 130, 11, 69, 66, + 178, 165, 117, 108, 19, 73, 63, 52, 125, 33, 161, 177, 49, 235, 27, 67, 247, 144, 22, 159, 27, 79, 216, 32, 161, + 254, 250, 227, 234, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 507, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13420287333211815379" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8094096357536625550" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8db75b10122d750fe5" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18349036773695300752" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8579845171630134541" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + } + } + ] + }, + "cborHex": "bf04d8669f1bfffffffffffffffe9f1bba3e7039cfc3bdd31b705401c0b8c0f38e498db75b10122d750fe5ffff0dd8669f1bfea4dfba72b024909f1b7711bbb9c2dd550d0cffffff", + "cborBytes": [ + 191, 4, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 27, 186, 62, 112, 57, 207, 195, 189, 211, + 27, 112, 84, 1, 192, 184, 192, 243, 142, 73, 141, 183, 91, 16, 18, 45, 117, 15, 229, 255, 255, 13, 216, 102, 159, + 27, 254, 164, 223, 186, 114, 176, 36, 144, 159, 27, 119, 17, 187, 185, 194, 221, 85, 13, 12, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 508, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a4994" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7307538864140740986" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b008daab9df450c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "279317636224726909" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7040166075163471424" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2009579878103637134" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c67a2ce511c41d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8009454509229757496" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8190382208144243877" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16976683837794639881" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7334908104823847070" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5445341f690400815be" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2475762916371784975" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf433a49941b656997e14378697a486b008daab9df450cbf1b03e055e906ad377d1b61b3b1beb5dfee401b1be376407e23dc8e47c67a2ce511c41d1b6f274c70b34a54381b71aa15394b1dfca51beb994c010fdd60091b65cad40f3028b89eff4aa5445341f690400815bed8669f1b225bad415a6ce50f80ffff", + "cborBytes": [ + 191, 67, 58, 73, 148, 27, 101, 105, 151, 225, 67, 120, 105, 122, 72, 107, 0, 141, 170, 185, 223, 69, 12, 191, 27, + 3, 224, 85, 233, 6, 173, 55, 125, 27, 97, 179, 177, 190, 181, 223, 238, 64, 27, 27, 227, 118, 64, 126, 35, 220, + 142, 71, 198, 122, 44, 229, 17, 196, 29, 27, 111, 39, 76, 112, 179, 74, 84, 56, 27, 113, 170, 21, 57, 75, 29, 252, + 165, 27, 235, 153, 76, 1, 15, 221, 96, 9, 27, 101, 202, 212, 15, 48, 40, 184, 158, 255, 74, 165, 68, 83, 65, 246, + 144, 64, 8, 21, 190, 216, 102, 159, 27, 34, 91, 173, 65, 90, 108, 229, 15, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 509, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9431523368660392328" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5697134703941010343" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efbd709b1b1c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a18c118e07cb07430ce2f" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10037081931480210683" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1421241162774828718" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e679e11d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8428266f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5cb56d4cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14412840693147302421" + } + } + } + ] + }, + "cborHex": "bf1b82e380888fcc5988bf41b51b4f1049d419f443a746efbd709b1b1c4b7a18c118e07cb07430ce2fff1b8b4ae0d6835e9cfb1b13b9434eb75b56ae455e679e11d0448428266f45e5cb56d4cd1bc804b23f7756fa15ff", + "cborBytes": [ + 191, 27, 130, 227, 128, 136, 143, 204, 89, 136, 191, 65, 181, 27, 79, 16, 73, 212, 25, 244, 67, 167, 70, 239, 189, + 112, 155, 27, 28, 75, 122, 24, 193, 24, 224, 124, 176, 116, 48, 206, 47, 255, 27, 139, 74, 224, 214, 131, 94, 156, + 251, 27, 19, 185, 67, 78, 183, 91, 86, 174, 69, 94, 103, 158, 17, 208, 68, 132, 40, 38, 111, 69, 229, 203, 86, + 212, 205, 27, 200, 4, 178, 63, 119, 86, 250, 21, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 510, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "463190768144455046" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14420830376549939087" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c7a93e6c8b17bab9c5" + }, + { + "_tag": "ByteArray", + "bytearray": "b01283d7e6" + }, + { + "_tag": "ByteArray", + "bytearray": "9b9ece68a0e39f60" + }, + { + "_tag": "ByteArray", + "bytearray": "88c47d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17628800274178797552" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + } + ] + }, + "cborHex": "bf1b066d958cae7d95869f0cff1bc82114d2986bf78f9f49c7a93e6c8b17bab9c545b01283d7e6489b9ece68a0e39f604388c47dff1bf4a61472aebc6ff01bffffffffffffffebff", + "cborBytes": [ + 191, 27, 6, 109, 149, 140, 174, 125, 149, 134, 159, 12, 255, 27, 200, 33, 20, 210, 152, 107, 247, 143, 159, 73, + 199, 169, 62, 108, 139, 23, 186, 185, 197, 69, 176, 18, 131, 215, 230, 72, 155, 158, 206, 104, 160, 227, 159, 96, + 67, 136, 196, 125, 255, 27, 244, 166, 20, 114, 174, 188, 111, 240, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 511, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "488804915889183701" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11790799399044201056" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17089497662778074538" + } + } + ] + } + } + ] + }, + "cborHex": "bf060d1b06c8957b300a1bd59f1ba3a1559545eb3a601bed2a17948bc165aaffff", + "cborBytes": [ + 191, 6, 13, 27, 6, 200, 149, 123, 48, 10, 27, 213, 159, 27, 163, 161, 85, 149, 69, 235, 58, 96, 27, 237, 42, 23, + 148, 139, 193, 101, 170, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 512, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4672d5cddec2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c521" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c89ea5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e50c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecde607de743cdaa6cb1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7849996591645166174" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1672359097280380584" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3958766887358551811" + } + }, + { + "_tag": "ByteArray", + "bytearray": "83530e10e2d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11818489034205448842" + } + } + ] + } + } + ] + }, + "cborHex": "bf464672d5cddec242c52143c89ea542e50c4aecde607de743cdaa6cb19f1b6cf0ca4f1d098a5e1b173569bd0a4a3ea81b36f05d827595d7034683530e10e2d81ba403b528d9aa4a8affff", + "cborBytes": [ + 191, 70, 70, 114, 213, 205, 222, 194, 66, 197, 33, 67, 200, 158, 165, 66, 229, 12, 74, 236, 222, 96, 125, 231, 67, + 205, 170, 108, 177, 159, 27, 108, 240, 202, 79, 29, 9, 138, 94, 27, 23, 53, 105, 189, 10, 74, 62, 168, 27, 54, + 240, 93, 130, 117, 149, 215, 3, 70, 131, 83, 14, 16, 226, 216, 27, 164, 3, 181, 40, 217, 170, 74, 138, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 513, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3927579874741712413" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4142094873621975233" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d87adceceba8389cacd5ce6b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a815162637d89821cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3806847365407584384" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4714956670451328301" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4ed4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13877240447436837808" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2126124142693109063" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8849302291975801070" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5408677137150292325" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17943173735923533891" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11814973884119827944" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0aa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13361674506972418418" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f030a2e61e0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17439226724248743439" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9788490968134345565" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04c593ca4ec6d008e59dc6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7605054021136955633" + } + } + } + ] + }, + "cborHex": "bf1b368191163cf3f61dbf1b397bad57803450c14cd87adceceba8389cacd5ce6b49a815162637d89821cc1b34d4a38261403080ff1b416ee41c619c252d9f424ed41bc095dca98427d3b01b1d8182a4a19acd47ff1b7acf098c874488eebf1b4b0f7b33289eb1651bf902f57220d748431ba3f73826317ac5e842f0aa1bb96e342bc07bd172460f030a2e61e01bf204944f08586e0f1b87d7b4ac82c4635dff4b04c593ca4ec6d008e59dc61b698a9456c38638f1ff", + "cborBytes": [ + 191, 27, 54, 129, 145, 22, 60, 243, 246, 29, 191, 27, 57, 123, 173, 87, 128, 52, 80, 193, 76, 216, 122, 220, 236, + 235, 168, 56, 156, 172, 213, 206, 107, 73, 168, 21, 22, 38, 55, 216, 152, 33, 204, 27, 52, 212, 163, 130, 97, 64, + 48, 128, 255, 27, 65, 110, 228, 28, 97, 156, 37, 45, 159, 66, 78, 212, 27, 192, 149, 220, 169, 132, 39, 211, 176, + 27, 29, 129, 130, 164, 161, 154, 205, 71, 255, 27, 122, 207, 9, 140, 135, 68, 136, 238, 191, 27, 75, 15, 123, 51, + 40, 158, 177, 101, 27, 249, 2, 245, 114, 32, 215, 72, 67, 27, 163, 247, 56, 38, 49, 122, 197, 232, 66, 240, 170, + 27, 185, 110, 52, 43, 192, 123, 209, 114, 70, 15, 3, 10, 46, 97, 224, 27, 242, 4, 148, 79, 8, 88, 110, 15, 27, + 135, 215, 180, 172, 130, 196, 99, 93, 255, 75, 4, 197, 147, 202, 78, 198, 208, 8, 229, 157, 198, 27, 105, 138, + 148, 86, 195, 134, 56, 241, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 514, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd0dce5cba3e3dce79ec" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4736251390777712741" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13704284214961364548" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f964ce7f65b6ca79bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a2958" + } + } + ] + }, + "cborHex": "bf4acd0dce5cba3e3dce79ecbf41ca1b41ba8b8bd2416065ff41f11bbe2f65e295c3de4449f964ce7f65b6ca79bb434a2958ff", + "cborBytes": [ + 191, 74, 205, 13, 206, 92, 186, 62, 61, 206, 121, 236, 191, 65, 202, 27, 65, 186, 139, 139, 210, 65, 96, 101, 255, + 65, 241, 27, 190, 47, 101, 226, 149, 195, 222, 68, 73, 249, 100, 206, 127, 101, 182, 202, 121, 187, 67, 74, 41, + 88, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 515, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c4d0c7109e1a94573" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10951797803203641271" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bc5c67560178906dc1519" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5302892800287718784" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9e0c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1744150521152233685" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce41a2152eeccb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2d5bd37bcbf1b37f2eae3d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db2a7a051db73a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14869992248410048591" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7b2ed4ebdfc6b08" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15500435213715456739" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12478296518451237906" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3608585488345665557" + } + } + ] + } + } + ] + }, + "cborHex": "bf490c4d0c7109e1a945731b97fc9a13afdb3fb74b6bc5c67560178906dc15191b4997a8e7eb203d8043b9e0c61b183477a8781760d547ce41a2152eeccb9f4b2d5bd37bcbf1b37f2eae3dff47db2a7a051db73a1bce5cd32a534b084f48e7b2ed4ebdfc6b08d8669f1bd71c9bb3b97742e39f1bad2bd092184794121b32144561ee791015ffffff", + "cborBytes": [ + 191, 73, 12, 77, 12, 113, 9, 225, 169, 69, 115, 27, 151, 252, 154, 19, 175, 219, 63, 183, 75, 107, 197, 198, 117, + 96, 23, 137, 6, 220, 21, 25, 27, 73, 151, 168, 231, 235, 32, 61, 128, 67, 185, 224, 198, 27, 24, 52, 119, 168, + 120, 23, 96, 213, 71, 206, 65, 162, 21, 46, 236, 203, 159, 75, 45, 91, 211, 123, 203, 241, 179, 127, 46, 174, 61, + 255, 71, 219, 42, 122, 5, 29, 183, 58, 27, 206, 92, 211, 42, 83, 75, 8, 79, 72, 231, 178, 237, 78, 189, 252, 107, + 8, 216, 102, 159, 27, 215, 28, 155, 179, 185, 119, 66, 227, 159, 27, 173, 43, 208, 146, 24, 71, 148, 18, 27, 50, + 20, 69, 97, 238, 121, 16, 21, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 516, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0901fbce0607a7cb" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1458872673597102790" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68c41c57e576" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5107493030333032657" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10681108627897380800" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eff69c7ea8ba8497cb6f8073" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15425920084139686775" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13183488666525955399" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5c918705045f7bea8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "ByteArray", + "bytearray": "08da17d7456b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5246287115315021327" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + ] + } + } + ] + }, + "cborHex": "bf480901fbce0607a7cbbf1b143ef4f79a479ac64668c41c57e5761b46e175d9b5c8a8d141101b943aebb4c52eefc04ceff69c7ea8ba8497cb6f80731bd613e09624b5bb771bb6f52917d4aaf547ff49d5c918705045f7bea89f0b4608da17d7456b1b48ce8e55da0f860f1bfffffffffffffffdffff", + "cborBytes": [ + 191, 72, 9, 1, 251, 206, 6, 7, 167, 203, 191, 27, 20, 62, 244, 247, 154, 71, 154, 198, 70, 104, 196, 28, 87, 229, + 118, 27, 70, 225, 117, 217, 181, 200, 168, 209, 65, 16, 27, 148, 58, 235, 180, 197, 46, 239, 192, 76, 239, 246, + 156, 126, 168, 186, 132, 151, 203, 111, 128, 115, 27, 214, 19, 224, 150, 36, 181, 187, 119, 27, 182, 245, 41, 23, + 212, 170, 245, 71, 255, 73, 213, 201, 24, 112, 80, 69, 247, 190, 168, 159, 11, 70, 8, 218, 23, 215, 69, 107, 27, + 72, 206, 142, 85, 218, 15, 134, 15, 27, 255, 255, 255, 255, 255, 255, 255, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 517, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e917e52366957" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a548428de6623bf3aa1c40" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3a76ccf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc6bc099afab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d196e5d57bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb7abb009efcf0830cff71b2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6048188383673653527" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14425307860208552642" + } + } + } + ] + }, + "cborHex": "bf478e917e52366957a04ba548428de6623bf3aa1c4044b3a76ccf46cc6bc099afab466d196e5d57bb4ceb7abb009efcf0830cff71b2d8669f1b53ef7b4a4f83191780ff41f31bc830fd11ff618ac2ff", + "cborBytes": [ + 191, 71, 142, 145, 126, 82, 54, 105, 87, 160, 75, 165, 72, 66, 141, 230, 98, 59, 243, 170, 28, 64, 68, 179, 167, + 108, 207, 70, 204, 107, 192, 153, 175, 171, 70, 109, 25, 110, 93, 87, 187, 76, 235, 122, 187, 0, 158, 252, 240, + 131, 12, 255, 113, 178, 216, 102, 159, 27, 83, 239, 123, 74, 79, 131, 25, 23, 128, 255, 65, 243, 27, 200, 48, 253, + 17, 255, 97, 138, 194, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 518, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4156" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e38f77fecf88516e185e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17713233949582712572" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd4f4a" + } + ] + } + } + ] + }, + "cborHex": "bf424156a04ae38f77fecf88516e185ed87b9f1bf5d20c6dac445efc43fd4f4affff", + "cborBytes": [ + 191, 66, 65, 86, 160, 74, 227, 143, 119, 254, 207, 136, 81, 110, 24, 94, 216, 123, 159, 27, 245, 210, 12, 109, + 172, 68, 94, 252, 67, 253, 79, 74, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 519, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5138700198494238265" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2713865750575070683" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "249cdeb0732b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7378178684069509510" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19f9b2014674dd330effce5a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18168124350703373401" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15152887906260562467" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11176830228239390189" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27a1efb0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14889804828816104666" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c12d51878b24db0842" + } + } + ] + }, + "cborHex": "bf1b4750549ac27a7639bf1b25a996857f203ddb46249cdeb0732b1b66648e6c015279864c19f9b2014674dd330effce5a1bfc2224d68ecc8c591bd249df446df93223ff1b9b1c13e00d0e95ed4427a1efb01bcea3369a2c7adcda49c12d51878b24db0842ff", + "cborBytes": [ + 191, 27, 71, 80, 84, 154, 194, 122, 118, 57, 191, 27, 37, 169, 150, 133, 127, 32, 61, 219, 70, 36, 156, 222, 176, + 115, 43, 27, 102, 100, 142, 108, 1, 82, 121, 134, 76, 25, 249, 178, 1, 70, 116, 221, 51, 14, 255, 206, 90, 27, + 252, 34, 36, 214, 142, 204, 140, 89, 27, 210, 73, 223, 68, 109, 249, 50, 35, 255, 27, 155, 28, 19, 224, 13, 14, + 149, 237, 68, 39, 161, 239, 176, 27, 206, 163, 54, 154, 44, 122, 220, 218, 73, 193, 45, 81, 135, 139, 36, 219, 8, + 66, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 520, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "665762906933536791" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9685362968998638677" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7425800064181527162" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db760a08b577" + } + } + ] + }, + "cborHex": "bf1b093d43d62467a8171b8669524e17e2f4551b670dbdd0969ce27a46db760a08b577ff", + "cborBytes": [ + 191, 27, 9, 61, 67, 214, 36, 103, 168, 23, 27, 134, 105, 82, 78, 23, 226, 244, 85, 27, 103, 13, 189, 208, 150, + 156, 226, 122, 70, 219, 118, 10, 8, 181, 119, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 521, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14746768851073531187" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2afa457b" + } + } + ] + }, + "cborHex": "bf1bcca70c2369087d33442afa457bff", + "cborBytes": [191, 27, 204, 167, 12, 35, 105, 8, 125, 51, 68, 42, 250, 69, 123, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 522, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4070178650102083941" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7020b07804" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "976eda7024" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13188527788177783404" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14741137374910569099" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16251098809436030510" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6195112195693412297" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18223484866848756267" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9453084153461028952" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1178b9dd1bb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12949797396766031741" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b387c2deae3b6b1659f457020b0780402ff45976eda7024bf1bb7071025c4b47a6c1bcc930a5730c75a8b1be1878043e235462e1b55f975b807feffc91bfce6d2ef2a3a122b1b833019f3f6eb385846f1178b9dd1bb1bb3b6ec1f13847f7dffff", + "cborBytes": [ + 191, 27, 56, 124, 45, 234, 227, 182, 177, 101, 159, 69, 112, 32, 176, 120, 4, 2, 255, 69, 151, 110, 218, 112, 36, + 191, 27, 183, 7, 16, 37, 196, 180, 122, 108, 27, 204, 147, 10, 87, 48, 199, 90, 139, 27, 225, 135, 128, 67, 226, + 53, 70, 46, 27, 85, 249, 117, 184, 7, 254, 255, 201, 27, 252, 230, 210, 239, 42, 58, 18, 43, 27, 131, 48, 25, 243, + 246, 235, 56, 88, 70, 241, 23, 139, 157, 209, 187, 27, 179, 182, 236, 31, 19, 132, 127, 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 523, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13704578281282577779" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17657486102581597609" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6802204278359557504" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "562eafec3308713b6f1b14" + } + ] + } + } + ] + }, + "cborHex": "bf1bbe3071563c61a573a01bf50bfe0e92c5d5a9d8669f1b5e6648c0654385809f4b562eafec3308713b6f1b14ffffff", + "cborBytes": [ + 191, 27, 190, 48, 113, 86, 60, 97, 165, 115, 160, 27, 245, 11, 254, 14, 146, 197, 213, 169, 216, 102, 159, 27, 94, + 102, 72, 192, 101, 67, 133, 128, 159, 75, 86, 46, 175, 236, 51, 8, 113, 59, 111, 27, 20, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 524, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03857bcc9b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11975881844803001601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7342727496276644540" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c1d40" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9480064818560029854" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14267270903583375589" + } + } + ] + } + } + ] + }, + "cborHex": "bf4503857bcc9bbf1ba632e1163f885d011b65e69bc1221012bcff431c1d409f1b838ff4b995f2d49e1bc5ff874baa5a80e5ffff", + "cborBytes": [ + 191, 69, 3, 133, 123, 204, 155, 191, 27, 166, 50, 225, 22, 63, 136, 93, 1, 27, 101, 230, 155, 193, 34, 16, 18, + 188, 255, 67, 28, 29, 64, 159, 27, 131, 143, 244, 185, 149, 242, 212, 158, 27, 197, 255, 135, 75, 170, 90, 128, + 229, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 525, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "26df3c6e98fd1dc055c4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "75992aa6bcbe88726aa6a849" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b780a36c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1cd9" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5186b3041bd5d5aebdae78f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1620089218643681096" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3da282175" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4a26df3c6e98fd1dc055c4bf4c75992aa6bcbe88726aa6a84944b780a36c41ed421cd9ff4c5186b3041bd5d5aebdae78f71b167bb68f8db25f4845d3da28217580ff", + "cborBytes": [ + 191, 74, 38, 223, 60, 110, 152, 253, 29, 192, 85, 196, 191, 76, 117, 153, 42, 166, 188, 190, 136, 114, 106, 166, + 168, 73, 68, 183, 128, 163, 108, 65, 237, 66, 28, 217, 255, 76, 81, 134, 179, 4, 27, 213, 213, 174, 189, 174, 120, + 247, 27, 22, 123, 182, 143, 141, 178, 95, 72, 69, 211, 218, 40, 33, 117, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 526, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "997150978002454892" + } + } + ] + } + } + ] + }, + "cborHex": "bf049f1b0dd697880745096cffff", + "cborBytes": [191, 4, 159, 27, 13, 214, 151, 136, 7, 69, 9, 108, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 527, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6780718979079830597" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff05bc02" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8528414307758635787" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2328366278037322579" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13198799635963265531" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16243221105263224649" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10273517503780851452" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16652052593681086010" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "95e48576b6ea" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6655323094534358962" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12709173899421718152" + } + } + ] + } + } + ] + }, + "cborHex": "bf04bf1b5e19f3fc55cd7c4544ff05bc021b765b03a09f4ffb0b0bff1b205004cb2d69bb531bb72b8e56b32541fb1be16b8388f357a7491b8e92ddbcfe9d8efc1be717f99b8b7bb63ad9050b9f4695e48576b6eaff1bfffffffffffffff39f1b5c5c7517d32c87b21bb0600e534fb29688ffff", + "cborBytes": [ + 191, 4, 191, 27, 94, 25, 243, 252, 85, 205, 124, 69, 68, 255, 5, 188, 2, 27, 118, 91, 3, 160, 159, 79, 251, 11, + 11, 255, 27, 32, 80, 4, 203, 45, 105, 187, 83, 27, 183, 43, 142, 86, 179, 37, 65, 251, 27, 225, 107, 131, 136, + 243, 87, 167, 73, 27, 142, 146, 221, 188, 254, 157, 142, 252, 27, 231, 23, 249, 155, 139, 123, 182, 58, 217, 5, + 11, 159, 70, 149, 228, 133, 118, 182, 234, 255, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 27, 92, 92, 117, + 23, 211, 44, 135, 178, 27, 176, 96, 14, 83, 79, 178, 150, 136, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 528, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9298771090957593884" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17566494167926976378" + } + } + } + ] + }, + "cborHex": "bf1b810bdf0a4c32ed1c1bf3c8b95fdc422f7aff", + "cborBytes": [191, 27, 129, 11, 223, 10, 76, 50, 237, 28, 27, 243, 200, 185, 95, 220, 66, 47, 122, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 529, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1106" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7719833365910693201" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12845011296177402863" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14424229076630684351" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dc697bb08fc89ab7d9953b" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "206b2ead7454dc9422" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "671fbe49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3765779896713135738" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e738fa98aa44df3e3d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12521448688944485022" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f556ffec58bc7938c118804d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14828228647024795839" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae9706" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b684" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8c0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4839460173272790250" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1f383a60" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa01fb013cdf24" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bfb6512641c8a4" + } + } + ] + }, + "cborHex": "bf4211069f1b6b225b8b7c50a5511bb242a5b7d488b3ef1bc82d27ec1f6ec2bf4bdc697bb08fc89ab7d9953bff49206b2ead7454dc9422bf44671fbe491b3442bcdd35e4c67a49e738fa98aa44df3e3d1badc51f3db9d1129e4cf556ffec58bc7938c118804d1bcdc87364222f20bfff43ae970642b68442b8c09f1b43293763149334ea441f383a60ff47fa01fb013cdf2447bfb6512641c8a4ff", + "cborBytes": [ + 191, 66, 17, 6, 159, 27, 107, 34, 91, 139, 124, 80, 165, 81, 27, 178, 66, 165, 183, 212, 136, 179, 239, 27, 200, + 45, 39, 236, 31, 110, 194, 191, 75, 220, 105, 123, 176, 143, 200, 154, 183, 217, 149, 59, 255, 73, 32, 107, 46, + 173, 116, 84, 220, 148, 34, 191, 68, 103, 31, 190, 73, 27, 52, 66, 188, 221, 53, 228, 198, 122, 73, 231, 56, 250, + 152, 170, 68, 223, 62, 61, 27, 173, 197, 31, 61, 185, 209, 18, 158, 76, 245, 86, 255, 236, 88, 188, 121, 56, 193, + 24, 128, 77, 27, 205, 200, 115, 100, 34, 47, 32, 191, 255, 67, 174, 151, 6, 66, 182, 132, 66, 184, 192, 159, 27, + 67, 41, 55, 99, 20, 147, 52, 234, 68, 31, 56, 58, 96, 255, 71, 250, 1, 251, 1, 60, 223, 36, 71, 191, 182, 81, 38, + 65, 200, 164, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 530, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0631a8ad72b0e1c7b17485ca" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12160997879250691956" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "08dc7f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ecac7c9d374103b8ce108a3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8d63ea7ba43ae0920985679" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04b2035c4a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5aae8940" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17364951506672326026" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "814761063434790670" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17664264003918546835" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c7d418fed2b88" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c0631a8ad72b0e1c7b17485cad8669f1ba8c48b23b30427749f4308dc7fffff4c1ecac7c9d374103b8ce108a34cc8d63ea7ba43ae09209856794243a54504b2035c4a445aae8940bf1bf0fcb3645116958a1b0b4e9cded2d9a70e1bf5241285b448c793474c7d418fed2b88ffff", + "cborBytes": [ + 191, 76, 6, 49, 168, 173, 114, 176, 225, 199, 177, 116, 133, 202, 216, 102, 159, 27, 168, 196, 139, 35, 179, 4, + 39, 116, 159, 67, 8, 220, 127, 255, 255, 76, 30, 202, 199, 201, 211, 116, 16, 59, 140, 225, 8, 163, 76, 200, 214, + 62, 167, 186, 67, 174, 9, 32, 152, 86, 121, 66, 67, 165, 69, 4, 178, 3, 92, 74, 68, 90, 174, 137, 64, 191, 27, + 240, 252, 179, 100, 81, 22, 149, 138, 27, 11, 78, 156, 222, 210, 217, 167, 14, 27, 245, 36, 18, 133, 180, 72, 199, + 147, 71, 76, 125, 65, 143, 237, 43, 136, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 531, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "536d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6f866" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18259013052857979566" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5451542231411638126" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf42536dd905088043c6f866bf1bfd650ba194d212ae1b4ba7c4c6a554bf6effff", + "cborBytes": [ + 191, 66, 83, 109, 217, 5, 8, 128, 67, 198, 248, 102, 191, 27, 253, 101, 11, 161, 148, 210, 18, 174, 27, 75, 167, + 196, 198, 165, 84, 191, 110, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 532, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1231953677635899067" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4783268300904398400" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5262556490027278491" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16324517245051392268" + } + } + } + ] + }, + "cborHex": "bf1b1118c757b7394ebb1b4261952d44cafe401b49085b3ed680a09b1be28c55f18106d10cff", + "cborBytes": [ + 191, 27, 17, 24, 199, 87, 183, 57, 78, 187, 27, 66, 97, 149, 45, 68, 202, 254, 64, 27, 73, 8, 91, 62, 214, 128, + 160, 155, 27, 226, 140, 85, 241, 129, 6, 209, 12, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 533, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4324434752169534782" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7855118190495044457" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13886254992062883168" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9114225459679598736" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74a1e25a6819983f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11181912560527839800" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8996979269324880864" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ba9a34a9996a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7928527336744705736" + } + }, + { + "_tag": "ByteArray", + "bytearray": "615e352a" + }, + { + "_tag": "ByteArray", + "bytearray": "05fdc074fb5ad9" + } + ] + } + } + ] + }, + "cborHex": "bf1b3c037a7ec96b653e41571b6d02fc60452a93691bc0b5e357be6725601b7e7c3bc42f0618904874a1e25a6819983f1b9b2e223abfbd9238d8669f1b7cdbb0fa37a9bbe09f46ba9a34a9996a1b6e07c99b0aa45ec844615e352a4705fdc074fb5ad9ffffff", + "cborBytes": [ + 191, 27, 60, 3, 122, 126, 201, 107, 101, 62, 65, 87, 27, 109, 2, 252, 96, 69, 42, 147, 105, 27, 192, 181, 227, 87, + 190, 103, 37, 96, 27, 126, 124, 59, 196, 47, 6, 24, 144, 72, 116, 161, 226, 90, 104, 25, 152, 63, 27, 155, 46, 34, + 58, 191, 189, 146, 56, 216, 102, 159, 27, 124, 219, 176, 250, 55, 169, 187, 224, 159, 70, 186, 154, 52, 169, 153, + 106, 27, 110, 7, 201, 155, 10, 164, 94, 200, 68, 97, 94, 53, 42, 71, 5, 253, 192, 116, 251, 90, 217, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 534, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8565904028418129873" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10712130779579899879" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16394572824154469264" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14796124430539178278" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12461991860537467862" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11803529343913565993" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6479258366887563477" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11208665166965576582" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13802207051285320645" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ab0272711" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6202261533168264359" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6294b42b2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58cda2fe2327c6c8" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c7aa77f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4519396899840909259" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02118387eace" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11594695968120683679" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6208737278410860845" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12259712488757819947" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7443f4dfa9b185a523" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14399103951923355173" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1619312783413070053" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b76e0345469f33fd19f1b94a9223050635fe71be385391f13fff3901bcd5664c6bec441261bacf1e392192523d6ff1ba3ce8f6687de1f29d8669f1b59eaf327f64f90d59f1b9b8d2d9553471386ffff1bbf8b4a2f9840d3c5bf453ab02727111b5612dc00e09064a745e6294b42b24858cda2fe2327c6c8ff445c7aa77fbf1b3eb81f891e04dfcb4602118387eace1ba0e8a28d3a7cbc9f1b5629dda8cf67a92d1baa233f8dc4d47a2b497443f4dfa9b185a5231bc7d3e4c12a509e251b1678f465a395c8e5ffff", + "cborBytes": [ + 191, 27, 118, 224, 52, 84, 105, 243, 63, 209, 159, 27, 148, 169, 34, 48, 80, 99, 95, 231, 27, 227, 133, 57, 31, + 19, 255, 243, 144, 27, 205, 86, 100, 198, 190, 196, 65, 38, 27, 172, 241, 227, 146, 25, 37, 35, 214, 255, 27, 163, + 206, 143, 102, 135, 222, 31, 41, 216, 102, 159, 27, 89, 234, 243, 39, 246, 79, 144, 213, 159, 27, 155, 141, 45, + 149, 83, 71, 19, 134, 255, 255, 27, 191, 139, 74, 47, 152, 64, 211, 197, 191, 69, 58, 176, 39, 39, 17, 27, 86, 18, + 220, 0, 224, 144, 100, 167, 69, 230, 41, 75, 66, 178, 72, 88, 205, 162, 254, 35, 39, 198, 200, 255, 68, 92, 122, + 167, 127, 191, 27, 62, 184, 31, 137, 30, 4, 223, 203, 70, 2, 17, 131, 135, 234, 206, 27, 160, 232, 162, 141, 58, + 124, 188, 159, 27, 86, 41, 221, 168, 207, 103, 169, 45, 27, 170, 35, 63, 141, 196, 212, 122, 43, 73, 116, 67, 244, + 223, 169, 177, 133, 165, 35, 27, 199, 211, 228, 193, 42, 80, 158, 37, 27, 22, 120, 244, 101, 163, 149, 200, 229, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 535, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52b09fc245e3f7779410" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "050c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c666f2250a9bad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbf743" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f6a07" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4f83a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8c4f803" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff64a52b09fc245e3f777941042050cbf47c666f2250a9bad43fbf743ff432f6a07a043c4f83a44f8c4f803ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 246, 74, 82, 176, 159, 194, 69, 227, 247, 119, 148, 16, 66, 5, 12, + 191, 71, 198, 102, 242, 37, 10, 155, 173, 67, 251, 247, 67, 255, 67, 47, 106, 7, 160, 67, 196, 248, 58, 68, 248, + 196, 248, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 536, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1841799863487088010" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "892b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8351576326253097985" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6cd446" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16715681301349618283" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9119514320234308186" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "268f20000c9f95a7255d1c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17491497584052798877" + } + }, + { + "_tag": "ByteArray", + "bytearray": "49c9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10280417293071278369" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9178cd52b3061cfd42de45" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13952858207219554006" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17029097515723908540" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b198f6337b282c58a42892b1b73e6c26b90e0b401bf436cd4461be7fa07948195526bff1b7e8f05f4fda7625a9f4b268f20000c9f95a7255d1c1bf2be4860f712059d4249c91b8eab610f604be121ff4b9178cd52b3061cfd42de45d8669f1bc1a2829d32b716d69f1bec5381f76e35e5bcffffff", + "cborBytes": [ + 191, 27, 25, 143, 99, 55, 178, 130, 197, 138, 66, 137, 43, 27, 115, 230, 194, 107, 144, 224, 180, 1, 191, 67, 108, + 212, 70, 27, 231, 250, 7, 148, 129, 149, 82, 107, 255, 27, 126, 143, 5, 244, 253, 167, 98, 90, 159, 75, 38, 143, + 32, 0, 12, 159, 149, 167, 37, 93, 28, 27, 242, 190, 72, 96, 247, 18, 5, 157, 66, 73, 201, 27, 142, 171, 97, 15, + 96, 75, 225, 33, 255, 75, 145, 120, 205, 82, 179, 6, 28, 253, 66, 222, 69, 216, 102, 159, 27, 193, 162, 130, 157, + 50, 183, 22, 214, 159, 27, 236, 83, 129, 247, 110, 53, 229, 188, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 537, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "40c444" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3220232015090358655" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d89f9fb9725a5dcb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8656114056370257046" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77adaf998036306d2c7c7cca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10427516582841007545" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10171755560672072757" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c3bb4f78f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8409218695782913824" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e14c1157" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ca69d2900" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16094884763098384880" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10179638891642273789" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1639099181749594828" + } + }, + { + "_tag": "ByteArray", + "bytearray": "32bb" + }, + { + "_tag": "ByteArray", + "bytearray": "da5f3bddb5" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "511674947ea0d35446" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c082275a6aa59e0fcae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16428904820338761033" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91be9816103132140c539e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac86bbc36f6d75c1d3172f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1036786951259344915" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3b2d8d08ac1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28ccb4b7020b" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7df048ad3fc21a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7513668337366958508" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14433361676158781324" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3504977977416701814" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "950113310133854757" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4a05a83e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17190381528261052748" + } + } + } + ] + }, + "cborHex": "bf4340c444bf1b2cb08ff4c9cd197f48d89f9fb9725a5dcb1b7820b1df4936fc964c77adaf998036306d2c7c7cca1b90b5fb15b1bbbdb91b8d2955ca47f69435ff456c3bb4f78fbf1b74b38bd990b6d72044e14c1157ff456ca69d2900d8669f1bdf5c846aed5389f09f1b8d4557a34e16bffd1b16bf40057fd16acc4232bb45da5f3bddb5ffff4179bf49511674947ea0d3544641394a8c082275a6aa59e0fcae1be3ff31e3d8fe9d494b91be9816103132140c539e41cb4bac86bbc36f6d75c1d3172f1b0e63683d3192d01346e3b2d8d08ac14628ccb4b7020bff477df048ad3fc21ad8669f1b6845e98b30db81ac9f1bc84d99f9262e478c1b30a42ee6797d57761b0d2f7b058ae62225ffff45c4a05a83e21bee9080ebe16fc94cff", + "cborBytes": [ + 191, 67, 64, 196, 68, 191, 27, 44, 176, 143, 244, 201, 205, 25, 127, 72, 216, 159, 159, 185, 114, 90, 93, 203, 27, + 120, 32, 177, 223, 73, 54, 252, 150, 76, 119, 173, 175, 153, 128, 54, 48, 109, 44, 124, 124, 202, 27, 144, 181, + 251, 21, 177, 187, 189, 185, 27, 141, 41, 85, 202, 71, 246, 148, 53, 255, 69, 108, 59, 180, 247, 143, 191, 27, + 116, 179, 139, 217, 144, 182, 215, 32, 68, 225, 76, 17, 87, 255, 69, 108, 166, 157, 41, 0, 216, 102, 159, 27, 223, + 92, 132, 106, 237, 83, 137, 240, 159, 27, 141, 69, 87, 163, 78, 22, 191, 253, 27, 22, 191, 64, 5, 127, 209, 106, + 204, 66, 50, 187, 69, 218, 95, 59, 221, 181, 255, 255, 65, 121, 191, 73, 81, 22, 116, 148, 126, 160, 211, 84, 70, + 65, 57, 74, 140, 8, 34, 117, 166, 170, 89, 224, 252, 174, 27, 227, 255, 49, 227, 216, 254, 157, 73, 75, 145, 190, + 152, 22, 16, 49, 50, 20, 12, 83, 158, 65, 203, 75, 172, 134, 187, 195, 111, 109, 117, 193, 211, 23, 47, 27, 14, + 99, 104, 61, 49, 146, 208, 19, 70, 227, 178, 216, 208, 138, 193, 70, 40, 204, 180, 183, 2, 11, 255, 71, 125, 240, + 72, 173, 63, 194, 26, 216, 102, 159, 27, 104, 69, 233, 139, 48, 219, 129, 172, 159, 27, 200, 77, 153, 249, 38, 46, + 71, 140, 27, 48, 164, 46, 230, 121, 125, 87, 118, 27, 13, 47, 123, 5, 138, 230, 34, 37, 255, 255, 69, 196, 160, + 90, 131, 226, 27, 238, 144, 128, 235, 225, 111, 201, 76, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 538, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5650498701050331642" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5abc463314af1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6841987026750068247" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2072719795958305707" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7223228364704499465" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6139314909667603464" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7498853570096419520" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f222c4f0c34263596ffa4bd1" + }, + { + "_tag": "ByteArray", + "bytearray": "3418a8339840" + } + ] + } + } + ] + }, + "cborHex": "bf1b4e6a9aa187e941fa47f5abc463314af11b5ef39ef34f44d617d8669f1b1cc3c7ac3503d3ab9f1b643e0fed69bcc7091b55333a6202ff34081b68114797644452c04cf222c4f0c34263596ffa4bd1463418a8339840ffffff", + "cborBytes": [ + 191, 27, 78, 106, 154, 161, 135, 233, 65, 250, 71, 245, 171, 196, 99, 49, 74, 241, 27, 94, 243, 158, 243, 79, 68, + 214, 23, 216, 102, 159, 27, 28, 195, 199, 172, 53, 3, 211, 171, 159, 27, 100, 62, 15, 237, 105, 188, 199, 9, 27, + 85, 51, 58, 98, 2, 255, 52, 8, 27, 104, 17, 71, 151, 100, 68, 82, 192, 76, 242, 34, 196, 240, 195, 66, 99, 89, + 111, 250, 75, 209, 70, 52, 24, 168, 51, 152, 64, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 539, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c485390ecf8785f7f6e515" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fafb06" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13631907657664226506" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9922646953932816101" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5315454040106089483" + } + } + ] + } + } + ] + }, + "cborHex": "bf41039f0c4bc485390ecf8785f7f6e515ff418643fafb06418dd8669f1bbd2e43ca2a00e4ca9f1b89b452d508c6fee51b49c4494978703c0bffffff", + "cborBytes": [ + 191, 65, 3, 159, 12, 75, 196, 133, 57, 14, 207, 135, 133, 247, 246, 229, 21, 255, 65, 134, 67, 250, 251, 6, 65, + 141, 216, 102, 159, 27, 189, 46, 67, 202, 42, 0, 228, 202, 159, 27, 137, 180, 82, 213, 8, 198, 254, 229, 27, 73, + 196, 73, 73, 120, 112, 60, 11, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 540, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a60b955c289e82604a88548" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "793f05e3d5d855777b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6246413491427920072" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40cc1cee3e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "59e6217c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15026904669012829395" + } + }, + { + "_tag": "ByteArray", + "bytearray": "77c9b76fca8e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5aca9b8833d4d75276a9f6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12108004900493263415" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ee287f824f4141" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15578799641999407437" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11890296565490474951" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91371273c74c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c2af27c05a4c7a57be2ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3b911114abd79" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9936798763280384319" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ba27761337aeee3647e2" + }, + { + "_tag": "ByteArray", + "bytearray": "82fad06f836f" + }, + { + "_tag": "ByteArray", + "bytearray": "8a" + }, + { + "_tag": "ByteArray", + "bytearray": "02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10381561481424500172" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f00daa1337d5484788d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12791296911349103467" + } + } + } + ] + }, + "cborHex": "bf4c0a60b955c289e82604a885489f49793f05e3d5d855777b1b56afb7f9bcc4c8c8ff4540cc1cee3e9f4459e6217c1bd08a4a2e362b24d34677c9b76fca8eff4b5aca9b8833d4d75276a9f6d8669f1ba808464e589702379f47ee287f824f41411bd83303bc005b794d1ba502d1ba941b5fc7ffff4691371273c74c4b6c2af27c05a4c7a57be2ff47d3b911114abd79d8669f1b89e699d3e9de413f9f4aba27761337aeee3647e24682fad06f836f418a41021b9012b729da2f75ccffff4af00daa1337d5484788d11bb183d0c50983bb6bff", + "cborBytes": [ + 191, 76, 10, 96, 185, 85, 194, 137, 232, 38, 4, 168, 133, 72, 159, 73, 121, 63, 5, 227, 213, 216, 85, 119, 123, + 27, 86, 175, 183, 249, 188, 196, 200, 200, 255, 69, 64, 204, 28, 238, 62, 159, 68, 89, 230, 33, 124, 27, 208, 138, + 74, 46, 54, 43, 36, 211, 70, 119, 201, 183, 111, 202, 142, 255, 75, 90, 202, 155, 136, 51, 212, 215, 82, 118, 169, + 246, 216, 102, 159, 27, 168, 8, 70, 78, 88, 151, 2, 55, 159, 71, 238, 40, 127, 130, 79, 65, 65, 27, 216, 51, 3, + 188, 0, 91, 121, 77, 27, 165, 2, 209, 186, 148, 27, 95, 199, 255, 255, 70, 145, 55, 18, 115, 199, 76, 75, 108, 42, + 242, 124, 5, 164, 199, 165, 123, 226, 255, 71, 211, 185, 17, 17, 74, 189, 121, 216, 102, 159, 27, 137, 230, 153, + 211, 233, 222, 65, 63, 159, 74, 186, 39, 118, 19, 55, 174, 238, 54, 71, 226, 70, 130, 250, 208, 111, 131, 111, 65, + 138, 65, 2, 27, 144, 18, 183, 41, 218, 47, 117, 204, 255, 255, 74, 240, 13, 170, 19, 55, 213, 72, 71, 136, 209, + 27, 177, 131, 208, 197, 9, 131, 187, 107, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 541, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f0103fe0094fe7affc5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42cf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6c7d24a7d62" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3bad60982148f6ad022cf348" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7852333687661363531" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a3f0103fe0094fe7affc54242cf46f6c7d24a7d62d8669f1bffffffffffffffee9f4c3bad60982148f6ad022cf3481b6cf917e2aee3814bffffff", + "cborBytes": [ + 191, 74, 63, 1, 3, 254, 0, 148, 254, 122, 255, 197, 66, 66, 207, 70, 246, 199, 210, 74, 125, 98, 216, 102, 159, + 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 76, 59, 173, 96, 152, 33, 72, 246, 173, 2, 44, 243, 72, 27, 108, + 249, 23, 226, 174, 227, 129, 75, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 542, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0601070091" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddb3" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf450601070091a042ddb380ff", + "cborBytes": [191, 69, 6, 1, 7, 0, 145, 160, 66, 221, 179, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 543, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8490066307" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8fa11a8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14606073391594568178" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4292472477534237528" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fba4f934953e010006f103ff" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cab788180d86a9ee79162c" + }, + { + "_tag": "ByteArray", + "bytearray": "7879f919" + }, + { + "_tag": "ByteArray", + "bytearray": "7ec5cd7c28ff982a4bcf24" + } + ] + } + } + ] + }, + "cborHex": "bf4584900663071bfffffffffffffff744f8fa11a8bf1bcab3325d054779f21b3b91ecf9cf91b358ff4cfba4f934953e010006f103ff9f4bcab788180d86a9ee79162c447879f9194b7ec5cd7c28ff982a4bcf24ffff", + "cborBytes": [ + 191, 69, 132, 144, 6, 99, 7, 27, 255, 255, 255, 255, 255, 255, 255, 247, 68, 248, 250, 17, 168, 191, 27, 202, 179, + 50, 93, 5, 71, 121, 242, 27, 59, 145, 236, 249, 207, 145, 179, 88, 255, 76, 251, 164, 249, 52, 149, 62, 1, 0, 6, + 241, 3, 255, 159, 75, 202, 183, 136, 24, 13, 134, 169, 238, 121, 22, 44, 68, 120, 121, 249, 25, 75, 126, 197, 205, + 124, 40, 255, 152, 42, 75, 207, 36, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 544, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1399034349743475400" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4233776740866941350" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "059d539f7e47cba30cefeab2" + }, + { + "_tag": "ByteArray", + "bytearray": "73a5744c02b5bef81a9067" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16596682541769493831" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f166a535bb953b02d0b19e" + }, + { + "_tag": "ByteArray", + "bytearray": "147ce1dd1175c7603d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1978291874385026452" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7154294158513984835" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2370363467311275245" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13450640738833022842" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13627947425208149555" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f2a5c96" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14642281151479487943" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df018796fd0ad519c37c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15516955684371293720" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b427" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17925575636374719902" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "421ce9bffb2b02" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10587018298745684745" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1aa1154beb94ebc076e473" + }, + { + "_tag": "ByteArray", + "bytearray": "f54070" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9187766957675225851" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13855247148512986113" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c46f1ba776" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1323479701085332411" + } + } + } + ] + }, + "cborHex": "bf1b136a5e5425078ac8d8669f1b3ac16583a9af61a69f4c059d539f7e47cba30cefeab24b73a5744c02b5bef81a90671be65342d6b8190d474bf166a535bb953b02d0b19e49147ce1dd1175c7603dffff1b1b744dfa72c2dd94bf1b634928a1d0e0d5431b20e53903c9a6dced1bbaaa467cc78a3f7a4207d31bbd2031fab13b2633447f2a5c961bcb33d5210f551dc74adf018796fd0ad519c37c1bd7574cfb8a6de61842b4271bf8c4701148830d9e47421ce9bffb2b02ff1b92eca50cdf4c03099f4b1aa1154beb94ebc076e47343f540701b7f81815e7f4da2fb1bc047b9df925c4401ff45c46f1ba7761b125df1c6aaa1a3bbff", + "cborBytes": [ + 191, 27, 19, 106, 94, 84, 37, 7, 138, 200, 216, 102, 159, 27, 58, 193, 101, 131, 169, 175, 97, 166, 159, 76, 5, + 157, 83, 159, 126, 71, 203, 163, 12, 239, 234, 178, 75, 115, 165, 116, 76, 2, 181, 190, 248, 26, 144, 103, 27, + 230, 83, 66, 214, 184, 25, 13, 71, 75, 241, 102, 165, 53, 187, 149, 59, 2, 208, 177, 158, 73, 20, 124, 225, 221, + 17, 117, 199, 96, 61, 255, 255, 27, 27, 116, 77, 250, 114, 194, 221, 148, 191, 27, 99, 73, 40, 161, 208, 224, 213, + 67, 27, 32, 229, 57, 3, 201, 166, 220, 237, 27, 186, 170, 70, 124, 199, 138, 63, 122, 66, 7, 211, 27, 189, 32, 49, + 250, 177, 59, 38, 51, 68, 127, 42, 92, 150, 27, 203, 51, 213, 33, 15, 85, 29, 199, 74, 223, 1, 135, 150, 253, 10, + 213, 25, 195, 124, 27, 215, 87, 76, 251, 138, 109, 230, 24, 66, 180, 39, 27, 248, 196, 112, 17, 72, 131, 13, 158, + 71, 66, 28, 233, 191, 251, 43, 2, 255, 27, 146, 236, 165, 12, 223, 76, 3, 9, 159, 75, 26, 161, 21, 75, 235, 148, + 235, 192, 118, 228, 115, 67, 245, 64, 112, 27, 127, 129, 129, 94, 127, 77, 162, 251, 27, 192, 71, 185, 223, 146, + 92, 68, 1, 255, 69, 196, 111, 27, 167, 118, 27, 18, 93, 241, 198, 170, 161, 163, 187, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 545, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6490591292117897036" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "23b30172c77f45ad13a862" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12996317265156086598" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7677300173735759777" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "637e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7876484232001306730" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0822cf56b07f" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b132e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13048440873118899995" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "045eecc2d40b" + } + ] + } + } + ] + }, + "cborHex": "bf1b5a1336643cee4f4c9f4b23b30172c77f45ad13a862ff1bb45c31b1f9e79b46bf1b6a8b3fd4f9908fa142637e1b6d4ee4ad7767406a460822cf56b07fff434b132e1bb5155fd72af09f1b4160d8669f1bfffffffffffffff69f46045eecc2d40bffffff", + "cborBytes": [ + 191, 27, 90, 19, 54, 100, 60, 238, 79, 76, 159, 75, 35, 179, 1, 114, 199, 127, 69, 173, 19, 168, 98, 255, 27, 180, + 92, 49, 177, 249, 231, 155, 70, 191, 27, 106, 139, 63, 212, 249, 144, 143, 161, 66, 99, 126, 27, 109, 78, 228, + 173, 119, 103, 64, 106, 70, 8, 34, 207, 86, 176, 127, 255, 67, 75, 19, 46, 27, 181, 21, 95, 215, 42, 240, 159, 27, + 65, 96, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 70, 4, 94, 236, 194, 212, 11, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 546, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7423140154540345242" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0597ec00e0f8feea0601f832" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67a52a6f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcd0afbf83256e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34821e00" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0326" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16886441983061495945" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18c3" + } + } + ] + }, + "cborHex": "bf1b67044aa41d50c79abf4c0597ec00e0f8feea0601f832044467a52a6f41cc47fcd0afbf83256e4434821e0041ff420326ff1bea58b183f09f90894218c3ff", + "cborBytes": [ + 191, 27, 103, 4, 74, 164, 29, 80, 199, 154, 191, 76, 5, 151, 236, 0, 224, 248, 254, 234, 6, 1, 248, 50, 4, 68, + 103, 165, 42, 111, 65, 204, 71, 252, 208, 175, 191, 131, 37, 110, 68, 52, 130, 30, 0, 65, 255, 66, 3, 38, 255, 27, + 234, 88, 177, 131, 240, 159, 144, 137, 66, 24, 195, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 547, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba07fb06b1b8ebf726593c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0101fe4e3c76f803f96efd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7344188358915694318" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14539277295325493125" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "ByteArray", + "bytearray": "68" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0775f9dd04a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17756409758159235420" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f901" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf41014bba07fb06b1b8ebf726593c4b0101fe4e3c76f803f96efdd8669f1b65ebcc66b8ba9eee9f1bc9c5e3aaeec7378506416800ffff46c0775f9dd04a1bf66b7098f95c695c42f901a0ff", + "cborBytes": [ + 191, 65, 1, 75, 186, 7, 251, 6, 177, 184, 235, 247, 38, 89, 60, 75, 1, 1, 254, 78, 60, 118, 248, 3, 249, 110, 253, + 216, 102, 159, 27, 101, 235, 204, 102, 184, 186, 158, 238, 159, 27, 201, 197, 227, 170, 238, 199, 55, 133, 6, 65, + 104, 0, 255, 255, 70, 192, 119, 95, 157, 208, 74, 27, 246, 107, 112, 152, 249, 92, 105, 92, 66, 249, 1, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 548, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "453f3e03a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10444579984150498467" + } + } + } + ] + }, + "cborHex": "bf45453f3e03a01b90f29a2867720ca3ff", + "cborBytes": [191, 69, 69, 63, 62, 3, 160, 27, 144, 242, 154, 40, 103, 114, 12, 163, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 549, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1342284985339406946" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7cdc371d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9261693528541256901" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "412dd325" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "618154275214641051" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a9b9176f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a743d712" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ae2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "824474580499236460" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3776505077301566a389dd0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec5c3046f22a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f585fffc919a2" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b12a0c1151a7eea629f447cdc371dff1b80882531933c5cc5bf44412dd3251b08942009c68ec79b455a9b9176f244a743d712428ae21b0b711f4340ff066c419c4cf3776505077301566a389dd046ec5c3046f22a475f585fffc919a2ffff", + "cborBytes": [ + 191, 27, 18, 160, 193, 21, 26, 126, 234, 98, 159, 68, 124, 220, 55, 29, 255, 27, 128, 136, 37, 49, 147, 60, 92, + 197, 191, 68, 65, 45, 211, 37, 27, 8, 148, 32, 9, 198, 142, 199, 155, 69, 90, 155, 145, 118, 242, 68, 167, 67, + 215, 18, 66, 138, 226, 27, 11, 113, 31, 67, 64, 255, 6, 108, 65, 156, 76, 243, 119, 101, 5, 7, 115, 1, 86, 106, + 56, 157, 208, 70, 236, 92, 48, 70, 242, 42, 71, 95, 88, 95, 255, 201, 25, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 550, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bebe994cff" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9073980304771232868" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2288767291108676413" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10243189644600849436" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f833786e8d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2956819426142264460" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2db79599" + }, + { + "_tag": "ByteArray", + "bytearray": "986d7e5224cc2c7b6df0b41c" + }, + { + "_tag": "ByteArray", + "bytearray": "f6632c690a6c93586a6b" + }, + { + "_tag": "ByteArray", + "bytearray": "f4ac11f3918ac7387c2e58" + }, + { + "_tag": "ByteArray", + "bytearray": "ea6bb473910b" + } + ] + } + } + ] + }, + "cborHex": "bf45bebe994cff9f1b7ded4102dcc7b4641b1fc355b99010d33d1b8e271eb60564b41cff45f833786e8dd8669f1b2908bb9a282f1c8c9f442db795994c986d7e5224cc2c7b6df0b41c4af6632c690a6c93586a6b4bf4ac11f3918ac7387c2e5846ea6bb473910bffffff", + "cborBytes": [ + 191, 69, 190, 190, 153, 76, 255, 159, 27, 125, 237, 65, 2, 220, 199, 180, 100, 27, 31, 195, 85, 185, 144, 16, 211, + 61, 27, 142, 39, 30, 182, 5, 100, 180, 28, 255, 69, 248, 51, 120, 110, 141, 216, 102, 159, 27, 41, 8, 187, 154, + 40, 47, 28, 140, 159, 68, 45, 183, 149, 153, 76, 152, 109, 126, 82, 36, 204, 44, 123, 109, 240, 180, 28, 74, 246, + 99, 44, 105, 10, 108, 147, 88, 106, 107, 75, 244, 172, 17, 243, 145, 138, 199, 56, 124, 46, 88, 70, 234, 107, 180, + 115, 145, 11, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 551, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1116056981921206401" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5504bd1d71f66244" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5252235378200102752" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1e8554f835" + }, + { + "_tag": "ByteArray", + "bytearray": "0772121a5a0ba46d59eda5" + }, + { + "_tag": "ByteArray", + "bytearray": "52c60fb76aac15d1a2" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12219894144961562493" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ba5e637935cd2e89906c21" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15047834157834055983" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13867023373099022732" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9497435118561253500" + } + } + } + ] + }, + "cborHex": "bf1b0f7d07e974821081485504bd1d71f662441b48e3b03fba5b47609f451e8554f8354b0772121a5a0ba46d59eda54952c60fb76aac15d1a2ff1ba995c8fb274f477d9f4bba5e637935cd2e89906c211bd0d4a57090b0312fff1bc0719049859b398c1b83cdaaebb729d87cff", + "cborBytes": [ + 191, 27, 15, 125, 7, 233, 116, 130, 16, 129, 72, 85, 4, 189, 29, 113, 246, 98, 68, 27, 72, 227, 176, 63, 186, 91, + 71, 96, 159, 69, 30, 133, 84, 248, 53, 75, 7, 114, 18, 26, 90, 11, 164, 109, 89, 237, 165, 73, 82, 198, 15, 183, + 106, 172, 21, 209, 162, 255, 27, 169, 149, 200, 251, 39, 79, 71, 125, 159, 75, 186, 94, 99, 121, 53, 205, 46, 137, + 144, 108, 33, 27, 208, 212, 165, 112, 144, 176, 49, 47, 255, 27, 192, 113, 144, 73, 133, 155, 57, 140, 27, 131, + 205, 170, 235, 183, 41, 216, 124, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 552, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f9f020206fa01" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17333456976635060341" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2916886316301299330" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b23ffa" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8224d14d381396ad41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9fc65dce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12bf4c6752" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57690d55fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dce414e0e6ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1738981046836382174" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf479f9f020206fa019f1bf08ccf489dd960751b287adca67d562e82ff43b23ffabf498224d14d381396ad4142d4b5449fc65dce4512bf4c675241c74557690d55fe46dce414e0e6ed1b18221a0c6fd1c9deffff", + "cborBytes": [ + 191, 71, 159, 159, 2, 2, 6, 250, 1, 159, 27, 240, 140, 207, 72, 157, 217, 96, 117, 27, 40, 122, 220, 166, 125, 86, + 46, 130, 255, 67, 178, 63, 250, 191, 73, 130, 36, 209, 77, 56, 19, 150, 173, 65, 66, 212, 181, 68, 159, 198, 93, + 206, 69, 18, 191, 76, 103, 82, 65, 199, 69, 87, 105, 13, 85, 254, 70, 220, 228, 20, 224, 230, 237, 27, 24, 34, 26, + 12, 111, 209, 201, 222, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 553, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "180036850676694313" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10513566973433829635" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11588931489965658326" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22dcafdd68" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12682179567835792380" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "840178482776662822" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94901b711882da" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3673410319950224106" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13756586958251436747" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6294463368368823605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12266377734345333891" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9195909114163816001" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10074356208799962467" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11129227245527241793" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14920940593826786138" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18421722901962861612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7293332413667940321" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b027f9e8fd3107d291b91e7b17585cd59031ba0d427ca11bdd0d64522dcafdd681bb000271fb691c3fcbf1b0ba8e9e0edd463264794901b711882da1b32fa933932e31aea1bbee936f3f8592acb1b575a6d1583551d351baa3aed8f306a1c831b7f9e6e9e0882e6411b8bcf4d987e45d5631b9a72f536f24014411bcf11d46a61c06b5a1bffa71b607a2cac2c1b65371f30418517e1ffff", + "cborBytes": [ + 191, 27, 2, 127, 158, 143, 211, 16, 125, 41, 27, 145, 231, 177, 117, 133, 205, 89, 3, 27, 160, 212, 39, 202, 17, + 189, 208, 214, 69, 34, 220, 175, 221, 104, 27, 176, 0, 39, 31, 182, 145, 195, 252, 191, 27, 11, 168, 233, 224, + 237, 212, 99, 38, 71, 148, 144, 27, 113, 24, 130, 218, 27, 50, 250, 147, 57, 50, 227, 26, 234, 27, 190, 233, 54, + 243, 248, 89, 42, 203, 27, 87, 90, 109, 21, 131, 85, 29, 53, 27, 170, 58, 237, 143, 48, 106, 28, 131, 27, 127, + 158, 110, 158, 8, 130, 230, 65, 27, 139, 207, 77, 152, 126, 69, 213, 99, 27, 154, 114, 245, 54, 242, 64, 20, 65, + 27, 207, 17, 212, 106, 97, 192, 107, 90, 27, 255, 167, 27, 96, 122, 44, 172, 44, 27, 101, 55, 31, 48, 65, 133, 23, + 225, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 554, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17596507679936032589" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2291455530567447253" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8443203086430866507" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5335746604564977387" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fb6ee810a337a31a9b" + } + ] + } + } + ] + }, + "cborHex": "bf1bf4335a812e052f4d9f1b1fcce2aa1613b2d51b752c48791d318c4b411e1b4a0c6144509796eb49fb6ee810a337a31a9bffff", + "cborBytes": [ + 191, 27, 244, 51, 90, 129, 46, 5, 47, 77, 159, 27, 31, 204, 226, 170, 22, 19, 178, 213, 27, 117, 44, 72, 121, 29, + 49, 140, 75, 65, 30, 27, 74, 12, 97, 68, 80, 151, 150, 235, 73, 251, 110, 232, 16, 163, 55, 163, 26, 155, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 555, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5320b65a8b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15993357358119753894" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9dc1707738a23e8366" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41c153629bcbc4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7ec3a71f686a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12198780318291520396" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db24dd45210bf0d8c7ec019e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2358490112610177840" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7225980099539658748" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8846125593638560065" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cb54e29f5c1e7e7cb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10910028346725685243" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee8df0bf34798e6fe314c8" + } + } + ] + } + } + ] + }, + "cborHex": "bf455320b65a8b9f1bddf3d1c7e09b98a6ff499dc1707738a23e83664741c153629bcbc447b7ec3a71f686a51ba94ac6114ccaeb8c4cdb24dd45210bf0d8c7ec019ebf1b20bb0a42f86693301b6447d69d9b1a67fc1b7ac3c05bcf516141498cb54e29f5c1e7e7cb1b976834fa4006d7fb4bee8df0bf34798e6fe314c8ffff", + "cborBytes": [ + 191, 69, 83, 32, 182, 90, 139, 159, 27, 221, 243, 209, 199, 224, 155, 152, 166, 255, 73, 157, 193, 112, 119, 56, + 162, 62, 131, 102, 71, 65, 193, 83, 98, 155, 203, 196, 71, 183, 236, 58, 113, 246, 134, 165, 27, 169, 74, 198, 17, + 76, 202, 235, 140, 76, 219, 36, 221, 69, 33, 11, 240, 216, 199, 236, 1, 158, 191, 27, 32, 187, 10, 66, 248, 102, + 147, 48, 27, 100, 71, 214, 157, 155, 26, 103, 252, 27, 122, 195, 192, 91, 207, 81, 97, 65, 73, 140, 181, 78, 41, + 245, 193, 231, 231, 203, 27, 151, 104, 52, 250, 64, 6, 215, 251, 75, 238, 141, 240, 191, 52, 121, 142, 111, 227, + 20, 200, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 556, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3383766078486857942" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16944944469596644119" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14131712685400430461" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c41c59a3cbde2a803d86ae3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14004482761696970796" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17761180038256193443" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7e7d3e86b20816d2cf0511d4" + }, + { + "_tag": "ByteArray", + "bytearray": "758d11" + }, + { + "_tag": "ByteArray", + "bytearray": "38a47ba0224cc1c3100363" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9779210694509415353" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2ef58d520739c8d6bf1beb288937890723171bc41dedd0792c977d4c8c41c59a3cbde2a803d86ae31bc259eadf7207882cff1bf67c63245c04efa39f4c7e7d3e86b20816d2cf0511d443758d114b38a47ba0224cc1c31003631b87b6bc506def4bb9ffff", + "cborBytes": [ + 191, 27, 46, 245, 141, 82, 7, 57, 200, 214, 191, 27, 235, 40, 137, 55, 137, 7, 35, 23, 27, 196, 29, 237, 208, 121, + 44, 151, 125, 76, 140, 65, 197, 154, 60, 189, 226, 168, 3, 216, 106, 227, 27, 194, 89, 234, 223, 114, 7, 136, 44, + 255, 27, 246, 124, 99, 36, 92, 4, 239, 163, 159, 76, 126, 125, 62, 134, 178, 8, 22, 210, 207, 5, 17, 212, 67, 117, + 141, 17, 75, 56, 164, 123, 160, 34, 76, 193, 195, 16, 3, 99, 27, 135, 182, 188, 80, 109, 239, 75, 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 557, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "87f30a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3eda91a09559093d947240" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59f67f2d4b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "595b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1252723584930776309" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c4b7c0ab14ee3a0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60b52d4e14cdd8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5792508883470024269" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7138ff7066d15794aa81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9684704881063996110" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8dea5aeeea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17089990501212648225" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6cc322f4ca19c991eaf60" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "16" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcd6f9402e3793" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "044c766767" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe18935d9a417025d2" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4387f30abf4b3eda91a09559093d9472404559f67f2d4b42595b1b11629176998d84f5425bac488c4b7c0ab14ee3a04760b52d4e14cdd81b50632023b5867e4d4a7138ff7066d15794aa811b8666fbc70e4faace458dea5aeeea1bed2bd7d06f947321ff4bb6cc322f4ca19c991eaf609f4116ff47fcd6f9402e379345044c76676749fe18935d9a417025d280ff", + "cborBytes": [ + 191, 67, 135, 243, 10, 191, 75, 62, 218, 145, 160, 149, 89, 9, 61, 148, 114, 64, 69, 89, 246, 127, 45, 75, 66, 89, + 91, 27, 17, 98, 145, 118, 153, 141, 132, 245, 66, 91, 172, 72, 140, 75, 124, 10, 177, 78, 227, 160, 71, 96, 181, + 45, 78, 20, 205, 216, 27, 80, 99, 32, 35, 181, 134, 126, 77, 74, 113, 56, 255, 112, 102, 209, 87, 148, 170, 129, + 27, 134, 102, 251, 199, 14, 79, 170, 206, 69, 141, 234, 90, 238, 234, 27, 237, 43, 215, 208, 111, 148, 115, 33, + 255, 75, 182, 204, 50, 47, 76, 161, 156, 153, 30, 175, 96, 159, 65, 22, 255, 71, 252, 214, 249, 64, 46, 55, 147, + 69, 4, 76, 118, 103, 103, 73, 254, 24, 147, 93, 154, 65, 112, 37, 210, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 558, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdca0092" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf44fdca0092d8669f1bfffffffffffffff980ffff", + "cborBytes": [191, 68, 253, 202, 0, 146, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 559, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f608d22bb3840399e8ec82" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a86f3" + } + } + ] + }, + "cborHex": "bf4bf608d22bb3840399e8ec82437a86f3ff", + "cborBytes": [191, 75, 246, 8, 210, 43, 179, 132, 3, 153, 232, 236, 130, 67, 122, 134, 243, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 560, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "40ade8815a2fd9e8357c4352" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3142425422263775615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "493e8598b36240d77cb2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5653488715526325196" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f2929216b20aa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6481508744156501226" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5270323528564188965" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52701733136eed" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8f40b6aca6b72184cf6f" + }, + { + "_tag": "ByteArray", + "bytearray": "37" + } + ] + } + } + ] + }, + "cborHex": "bf4c40ade8815a2fd9e8357c4352bf1b2b9c2345b330717f4a493e8598b36240d77cb21b4e753a0886a043cc478f2929216b20aa1b59f2f1dcc00954ea1b4923f3536b73a725ff4752701733136eed9f4a8f40b6aca6b72184cf6f4137ffff", + "cborBytes": [ + 191, 76, 64, 173, 232, 129, 90, 47, 217, 232, 53, 124, 67, 82, 191, 27, 43, 156, 35, 69, 179, 48, 113, 127, 74, + 73, 62, 133, 152, 179, 98, 64, 215, 124, 178, 27, 78, 117, 58, 8, 134, 160, 67, 204, 71, 143, 41, 41, 33, 107, 32, + 170, 27, 89, 242, 241, 220, 192, 9, 84, 234, 27, 73, 35, 243, 83, 107, 115, 167, 37, 255, 71, 82, 112, 23, 51, 19, + 110, 237, 159, 74, 143, 64, 182, 172, 166, 183, 33, 132, 207, 111, 65, 55, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 561, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03dc00" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9254618479144182060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1333148418777619166" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14306684517941114285" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d1c1218878e" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "902bfcc0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10862902425136914784" + } + } + } + ] + }, + "cborHex": "bf4303dc00bf1b806f02794527a12c1b12804b6c6e1d1ade1bc68b8dc4dd75f5ad464d1c1218878eff44902bfcc01b96c0c8339803e160ff", + "cborBytes": [ + 191, 67, 3, 220, 0, 191, 27, 128, 111, 2, 121, 69, 39, 161, 44, 27, 18, 128, 75, 108, 110, 29, 26, 222, 27, 198, + 139, 141, 196, 221, 117, 245, 173, 70, 77, 28, 18, 24, 135, 142, 255, 68, 144, 43, 252, 192, 27, 150, 192, 200, + 51, 152, 3, 225, 96, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 562, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1283466850609676650" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16380924357911424237" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14521636171683119091" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14694341158454575019" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + }, + "cborHex": "bf1b11cfca4cef94416ad8669f1be354bbe9e5daaced9f1bc9873728c2a2bff3ffff1bcbecc96dfe163fab03ff", + "cborBytes": [ + 191, 27, 17, 207, 202, 76, 239, 148, 65, 106, 216, 102, 159, 27, 227, 84, 187, 233, 229, 218, 172, 237, 159, 27, + 201, 135, 55, 40, 194, 162, 191, 243, 255, 255, 27, 203, 236, 201, 109, 254, 22, 63, 171, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 563, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03fa" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "233929525839119720" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f803ff" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07e386490e4b8dcc35" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "524070500861019811" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9200271715246644264" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14652198939271917748" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af52" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3203fffa022d3d00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2303fafc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f800" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c007" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12723180572416151581" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7258221735646548393" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16098027612601440091" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13926308592814721176" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a61a97" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbfd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17657314050988685862" + } + } + ] + } + } + ] + }, + "cborHex": "bf4203fabf1b033f15aa121dc56843f803ffff4907e386490e4b8dcc35bf1b0745df58091506a31b7fadee6140599c281bcb57114df9a870b442af521bfffffffffffffffc4145483203fffa022d3d0011ff442303fafcbf0342f800ff42c007d8669f1bb091d1520004101d9f1b64ba62367e3b51a91bdf67aed29989d75b1bc1442fe16331089843a61a97ffff42fbfdd9050b9f1bf50b6193b0b1ba26ffff", + "cborBytes": [ + 191, 66, 3, 250, 191, 27, 3, 63, 21, 170, 18, 29, 197, 104, 67, 248, 3, 255, 255, 73, 7, 227, 134, 73, 14, 75, + 141, 204, 53, 191, 27, 7, 69, 223, 88, 9, 21, 6, 163, 27, 127, 173, 238, 97, 64, 89, 156, 40, 27, 203, 87, 17, 77, + 249, 168, 112, 180, 66, 175, 82, 27, 255, 255, 255, 255, 255, 255, 255, 252, 65, 69, 72, 50, 3, 255, 250, 2, 45, + 61, 0, 17, 255, 68, 35, 3, 250, 252, 191, 3, 66, 248, 0, 255, 66, 192, 7, 216, 102, 159, 27, 176, 145, 209, 82, 0, + 4, 16, 29, 159, 27, 100, 186, 98, 54, 126, 59, 81, 169, 27, 223, 103, 174, 210, 153, 137, 215, 91, 27, 193, 68, + 47, 225, 99, 49, 8, 152, 67, 166, 26, 151, 255, 255, 66, 251, 253, 217, 5, 11, 159, 27, 245, 11, 97, 147, 176, + 177, 186, 38, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 564, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7375320040914717625" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7676529381760101634" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14809268803336047722" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9102686432031956675" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18026530042568491933" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11804232936447219182" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2881352703170297799" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14268347458929213684" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c139df" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17805941404699594393" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de6c2d" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b665a6680478a8bb9bf1b6a8882ccfba8ed021bcd851783861e8c6a1b7e533d14f3085ec31bfa2b1990a833c39d1ba3d10f506ee715ee1b27fc9f047913bfc71bc6035a6abd52c0f443c139df1bf71b695e1e8a0e9943de6c2dffff", + "cborBytes": [ + 191, 27, 102, 90, 102, 128, 71, 138, 139, 185, 191, 27, 106, 136, 130, 204, 251, 168, 237, 2, 27, 205, 133, 23, + 131, 134, 30, 140, 106, 27, 126, 83, 61, 20, 243, 8, 94, 195, 27, 250, 43, 25, 144, 168, 51, 195, 157, 27, 163, + 209, 15, 80, 110, 231, 21, 238, 27, 39, 252, 159, 4, 121, 19, 191, 199, 27, 198, 3, 90, 106, 189, 82, 192, 244, + 67, 193, 57, 223, 27, 247, 27, 105, 94, 30, 138, 14, 153, 67, 222, 108, 45, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 565, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12398236472571731649" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16689201625730121562" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4b5250be43b642c1668aaab2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16428328294136808686" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7664052380697613985" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eb6f" + } + ] + } + } + ] + }, + "cborHex": "bf1bac0f626214ee1ec1d8669f1be79bf4749683ff5a9f4c4b5250be43b642c1668aaab21be3fd258ae18604ee1b6a5c2f08cb77d6a142eb6fffffff", + "cborBytes": [ + 191, 27, 172, 15, 98, 98, 20, 238, 30, 193, 216, 102, 159, 27, 231, 155, 244, 116, 150, 131, 255, 90, 159, 76, 75, + 82, 80, 190, 67, 182, 66, 193, 102, 138, 170, 178, 27, 227, 253, 37, 138, 225, 134, 4, 238, 27, 106, 92, 47, 8, + 203, 119, 214, 161, 66, 235, 111, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 566, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14163593574487919446" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12176176824162677829" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3779966592989864096" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d38e21a9678f2b7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9905284544428280116" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "270613402451296429" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11611046198355388230" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bc48f3150665b8b56d8669f1ba8fa784f368f74459f1b34752396d60120a048d38e21a9678f2b7c1b8976a3d00dd089341b03c16974ac91c0ad1ba122b8ffdb9f6746ffffff", + "cborBytes": [ + 191, 27, 196, 143, 49, 80, 102, 91, 139, 86, 216, 102, 159, 27, 168, 250, 120, 79, 54, 143, 116, 69, 159, 27, 52, + 117, 35, 150, 214, 1, 32, 160, 72, 211, 142, 33, 169, 103, 143, 43, 124, 27, 137, 118, 163, 208, 13, 208, 137, 52, + 27, 3, 193, 105, 116, 172, 145, 192, 173, 27, 161, 34, 184, 255, 219, 159, 103, 70, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 567, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff380ff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 243, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 568, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6773064931422723513" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12be43fcaec1fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17551367780724237542" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fb9e5460961" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4757840993527260579" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4db0f48e80d9fe1f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0612" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18139170747550912033" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15876492113276364383" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9633133125005543632" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9258559738858924087" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3661442436420534029" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "658387314220334542" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5dfec2ab7e1b5db9bf4712be43fcaec1fe1bf392fc01644de4e6466fb9e54609611b42073f2cecfbe5a349e4db0f48e80d9fe1f6420612ff1bfbbb47b07fedce21d8669f1bdc54a175b320e65f9f1b85afc389e60108d01b807d03074e6b68371b32d00e7f2c62ff0d1b09230fc624b9fdceffffff", + "cborBytes": [ + 191, 27, 93, 254, 194, 171, 126, 27, 93, 185, 191, 71, 18, 190, 67, 252, 174, 193, 254, 27, 243, 146, 252, 1, 100, + 77, 228, 230, 70, 111, 185, 229, 70, 9, 97, 27, 66, 7, 63, 44, 236, 251, 229, 163, 73, 228, 219, 15, 72, 232, 13, + 159, 225, 246, 66, 6, 18, 255, 27, 251, 187, 71, 176, 127, 237, 206, 33, 216, 102, 159, 27, 220, 84, 161, 117, + 179, 32, 230, 95, 159, 27, 133, 175, 195, 137, 230, 1, 8, 208, 27, 128, 125, 3, 7, 78, 107, 104, 55, 27, 50, 208, + 14, 127, 44, 98, 255, 13, 27, 9, 35, 15, 198, 36, 185, 253, 206, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 569, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7066265246147939232" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5abd1abfc6f809c720" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b62106acd7d560ba0410c495abd1abfc6f809c720a0ff", + "cborBytes": [ + 191, 27, 98, 16, 106, 205, 125, 86, 11, 160, 65, 12, 73, 90, 189, 26, 191, 198, 248, 9, 199, 32, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 570, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "106a0ae2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6090877922532384029" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b8732" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "acee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2118472270892098671" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d291c3f7" + } + } + ] + }, + "cborHex": "bf44106a0ae2bf1b548725331ecfdd1d438b873242acee1b1d66534e6509e46fff416b44d291c3f7ff", + "cborBytes": [ + 191, 68, 16, 106, 10, 226, 191, 27, 84, 135, 37, 51, 30, 207, 221, 29, 67, 139, 135, 50, 66, 172, 238, 27, 29, + 102, 83, 78, 101, 9, 228, 111, 255, 65, 107, 68, 210, 145, 195, 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 571, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7257092901135420529" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9421846222708925935" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9421535890994691222" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d5efdb62e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10875087084295213170" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a24d3c5b20" + } + } + ] + }, + "cborHex": "bf1b64b65f8b3a2f8c711b82c11f3870ebe5ef1b82c004f9b554fc96455d5efdb62e1b96ec1215a0dad07245a24d3c5b20ff", + "cborBytes": [ + 191, 27, 100, 182, 95, 139, 58, 47, 140, 113, 27, 130, 193, 31, 56, 112, 235, 229, 239, 27, 130, 192, 4, 249, 181, + 84, 252, 150, 69, 93, 94, 253, 182, 46, 27, 150, 236, 18, 21, 160, 218, 208, 114, 69, 162, 77, 60, 91, 32, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 572, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16ae01e19b35384294325e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c9eb1ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2365d6f07ab506a185" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16006144770955538111" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0108d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4352485888626397106" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25dd1cad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07b65569e7ef482cbef1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "320e9e7220c9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10700676841350664259" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec2399" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b16ae01e19b35384294325e449c9eb1ff492365d6f07ab506a185d8669f1bde213fdd7047eebf9f430108d11b3c6722daf17a0fb2ffff4425dd1cad4a07b65569e7ef482cbef146320e9e7220c9bf1b948070e480f4904343ec2399ffff", + "cborBytes": [ + 191, 75, 22, 174, 1, 225, 155, 53, 56, 66, 148, 50, 94, 68, 156, 158, 177, 255, 73, 35, 101, 214, 240, 122, 181, + 6, 161, 133, 216, 102, 159, 27, 222, 33, 63, 221, 112, 71, 238, 191, 159, 67, 1, 8, 209, 27, 60, 103, 34, 218, + 241, 122, 15, 178, 255, 255, 68, 37, 221, 28, 173, 74, 7, 182, 85, 105, 231, 239, 72, 44, 190, 241, 70, 50, 14, + 158, 114, 32, 201, 191, 27, 148, 128, 112, 228, 128, 244, 144, 67, 67, 236, 35, 153, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 573, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6907156399164050664" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3366775601102883570" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14049762279280392068" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4345953964960716306" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80d3262a2092fba873d845" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9091865991601623347" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16798927304327375661" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5992584327795844824" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11845555807667465564" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8035018463365126755" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10814676897617392311" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "898ecd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17794045483325295361" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "38a74f4ad627131532" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04f12cae262b5016" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddebc327bbeb12" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37a83751d413" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4cd4ceb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4826842694492886661" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5fdb26263c3d4ce8bf1b2eb930923e308af21bc2fac85aab30b7841b3c4fee1af3af16124b80d3262a2092fba873d845ff1b7e2ccbf2d6de9133d8669f1be921c760f60b2b2d9f1b5329efb230d826d81ba463de3f2315ad5c41f41b6f821eb898955a63ffff1b96157356fb1bb2b743898ecd1bf6f1261716bf8b01bf4938a74f4ad6271315324804f12cae262b501647ddebc327bbeb124637a83751d41344f4cd4ceb1b42fc63db5ff01685ffff", + "cborBytes": [ + 191, 27, 95, 219, 38, 38, 60, 61, 76, 232, 191, 27, 46, 185, 48, 146, 62, 48, 138, 242, 27, 194, 250, 200, 90, + 171, 48, 183, 132, 27, 60, 79, 238, 26, 243, 175, 22, 18, 75, 128, 211, 38, 42, 32, 146, 251, 168, 115, 216, 69, + 255, 27, 126, 44, 203, 242, 214, 222, 145, 51, 216, 102, 159, 27, 233, 33, 199, 96, 246, 11, 43, 45, 159, 27, 83, + 41, 239, 178, 48, 216, 38, 216, 27, 164, 99, 222, 63, 35, 21, 173, 92, 65, 244, 27, 111, 130, 30, 184, 152, 149, + 90, 99, 255, 255, 27, 150, 21, 115, 86, 251, 27, 178, 183, 67, 137, 142, 205, 27, 246, 241, 38, 23, 22, 191, 139, + 1, 191, 73, 56, 167, 79, 74, 214, 39, 19, 21, 50, 72, 4, 241, 44, 174, 38, 43, 80, 22, 71, 221, 235, 195, 39, 187, + 235, 18, 70, 55, 168, 55, 81, 212, 19, 68, 244, 205, 76, 235, 27, 66, 252, 99, 219, 95, 240, 22, 133, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 574, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2982370677237957567" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3474024424437025080" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14187585698844709630" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14010663262781653086" + } + } + ] + } + } + ] + }, + "cborHex": "bf00d8669f1bfffffffffffffffa9f1b29638254654f43bf1b303636cecf9989381bc4e46e06280d12fe1bc26fe0017db7405effffff", + "cborBytes": [ + 191, 0, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 27, 41, 99, 130, 84, 101, 79, 67, 191, 27, + 48, 54, 54, 206, 207, 153, 137, 56, 27, 196, 228, 110, 6, 40, 13, 18, 254, 27, 194, 111, 224, 1, 125, 183, 64, 94, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 575, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "69b26b8abb6a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6084974473210419702" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18090784988360016383" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5268663884934032128" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17546980738206505463" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7ebd337e13f05e94b7b2" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8aafae352" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "98693580142796897" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f65fa029e265bd93" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4908113071285215061" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd628dc90083cb64" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1644106385513416374" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4151793055788930869" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3932107898246276944" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17113072797660673127" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4459439596636808918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd92" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14185382063471971837" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "365cbae151781612ce" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "149314dc3415ff5e" + } + ] + } + } + ] + }, + "cborHex": "bf4669b26b8abb6a1b54722c0b3706d9f641b7d8669f1bfb0f61190b2b01ff9f1b491e0de3866c2b001bf3836603756b99f74a7ebd337e13f05e94b7b2ffff45b8aafae352bf1b015ea149ca05e06148f65fa029e265bd931b441d1ed583681f55418fff48bd628dc90083cb64bf1b16d10a0bf97a86b61b399e21c97f3b97351b3691a74cdd7a27501bed7dd90a5ff6f4671b3de31caf9ed926d642cd921bc4dc99d45071cdfd49365cbae151781612ceff41cc9f48149314dc3415ff5effff", + "cborBytes": [ + 191, 70, 105, 178, 107, 138, 187, 106, 27, 84, 114, 44, 11, 55, 6, 217, 246, 65, 183, 216, 102, 159, 27, 251, 15, + 97, 25, 11, 43, 1, 255, 159, 27, 73, 30, 13, 227, 134, 108, 43, 0, 27, 243, 131, 102, 3, 117, 107, 153, 247, 74, + 126, 189, 51, 126, 19, 240, 94, 148, 183, 178, 255, 255, 69, 184, 170, 250, 227, 82, 191, 27, 1, 94, 161, 73, 202, + 5, 224, 97, 72, 246, 95, 160, 41, 226, 101, 189, 147, 27, 68, 29, 30, 213, 131, 104, 31, 85, 65, 143, 255, 72, + 189, 98, 141, 201, 0, 131, 203, 100, 191, 27, 22, 209, 10, 11, 249, 122, 134, 182, 27, 57, 158, 33, 201, 127, 59, + 151, 53, 27, 54, 145, 167, 76, 221, 122, 39, 80, 27, 237, 125, 217, 10, 95, 246, 244, 103, 27, 61, 227, 28, 175, + 158, 217, 38, 214, 66, 205, 146, 27, 196, 220, 153, 212, 80, 113, 205, 253, 73, 54, 92, 186, 225, 81, 120, 22, 18, + 206, 255, 65, 204, 159, 72, 20, 147, 20, 220, 52, 21, 255, 94, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 576, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12091364844703769967" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11692241178820728399" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f12a6d62" + }, + { + "_tag": "ByteArray", + "bytearray": "7c8eb45cea8ca8c77941" + }, + { + "_tag": "ByteArray", + "bytearray": "06d1e6d5a298367d34" + }, + { + "_tag": "ByteArray", + "bytearray": "01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + ] + } + } + ] + }, + "cborHex": "bf1ba7cd28437236e56fd8669f1ba2432f676bcdd64f9f44f12a6d624a7c8eb45cea8ca8c779414906d1e6d5a298367d3441011bfffffffffffffffeffffff", + "cborBytes": [ + 191, 27, 167, 205, 40, 67, 114, 54, 229, 111, 216, 102, 159, 27, 162, 67, 47, 103, 107, 205, 214, 79, 159, 68, + 241, 42, 109, 98, 74, 124, 142, 180, 92, 234, 140, 168, 199, 121, 65, 73, 6, 209, 230, 213, 162, 152, 54, 125, 52, + 65, 1, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 577, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2188488812168624562" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9910778906869055224" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4625008309402756008" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3279241078172830348" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f097b9ccc77ddf06" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "138135183220073623" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6982047997674565317" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87270c47" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7986778879369175081" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a62723ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13384069795392998904" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1e5f12fac43a39b21b898a28e7ff5d3ef81b402f548d952e63a81b2d823462ed5c4a8c48f097b9ccc77ddf06bf1b01eac1379ed0e4971b60e537a9521eaec54487270c471b6ed6bd133464602944a62723ae1bb9bdc4912b6f4df8ffff", + "cborBytes": [ + 191, 27, 30, 95, 18, 250, 196, 58, 57, 178, 27, 137, 138, 40, 231, 255, 93, 62, 248, 27, 64, 47, 84, 141, 149, 46, + 99, 168, 27, 45, 130, 52, 98, 237, 92, 74, 140, 72, 240, 151, 185, 204, 199, 125, 223, 6, 191, 27, 1, 234, 193, + 55, 158, 208, 228, 151, 27, 96, 229, 55, 169, 82, 30, 174, 197, 68, 135, 39, 12, 71, 27, 110, 214, 189, 19, 52, + 100, 96, 41, 68, 166, 39, 35, 174, 27, 185, 189, 196, 145, 43, 111, 77, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 578, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2296688791014339479" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d56abf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3344154139040416505" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c60bf953d8220593671" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16575846039319306803" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3460522246916207738" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17707598627162815983" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "625b3db9cb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b88f07800fb5d5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12002858077092147292" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4781818875224476425" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15101739804158119647" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1d71db05fb49c3e61155" + }, + { + "_tag": "ByteArray", + "bytearray": "dffc279ca66a5828a1910a55" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4c8fdd2e5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5740790783039314459" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf41b8bf0c041b1fdf7a497c07f39743d56abf1b2e68d278aba802f94a1c60bf953d82205936711be6093c26713162331b30063ea620c6f47a1bf5be0721ed3bfdef45625b3db9cb1bffffffffffffffec14ff47b88f07800fb5d5d8669f1ba692b7d3c681705c9f1b425c6eee8e034b091bd1942856e538cedf4a1d71db05fb49c3e611554cdffc279ca66a5828a1910a55ffff45e4c8fdd2e5d8669f1b4fab62cd18e51a1b80ffff", + "cborBytes": [ + 191, 65, 184, 191, 12, 4, 27, 31, 223, 122, 73, 124, 7, 243, 151, 67, 213, 106, 191, 27, 46, 104, 210, 120, 171, + 168, 2, 249, 74, 28, 96, 191, 149, 61, 130, 32, 89, 54, 113, 27, 230, 9, 60, 38, 113, 49, 98, 51, 27, 48, 6, 62, + 166, 32, 198, 244, 122, 27, 245, 190, 7, 33, 237, 59, 253, 239, 69, 98, 91, 61, 185, 203, 27, 255, 255, 255, 255, + 255, 255, 255, 236, 20, 255, 71, 184, 143, 7, 128, 15, 181, 213, 216, 102, 159, 27, 166, 146, 183, 211, 198, 129, + 112, 92, 159, 27, 66, 92, 110, 238, 142, 3, 75, 9, 27, 209, 148, 40, 86, 229, 56, 206, 223, 74, 29, 113, 219, 5, + 251, 73, 195, 230, 17, 85, 76, 223, 252, 39, 156, 166, 106, 88, 40, 161, 145, 10, 85, 255, 255, 69, 228, 200, 253, + 210, 229, 216, 102, 159, 27, 79, 171, 98, 205, 24, 229, 26, 27, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 579, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "964249132122222792" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4622879875028731112" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0db464e8a1c5d4e595f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d0f15bdaa0d3d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9716006204321730790" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b40816" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "99507863652266930" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f92ccb5687cf083868d919" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3513d36818a4a4c" + } + } + ] + } + } + ] + }, + "cborHex": "bf011bffffffffffffffec1b0d61b37a131fb0c8bf1b4027c4c0d663c4e84a0db464e8a1c5d4e595f2471d0f15bdaa0d3d1b86d6302a4c1690e643b408161b016185dff159f3b24bf92ccb5687cf083868d91948e3513d36818a4a4cffff", + "cborBytes": [ + 191, 1, 27, 255, 255, 255, 255, 255, 255, 255, 236, 27, 13, 97, 179, 122, 19, 31, 176, 200, 191, 27, 64, 39, 196, + 192, 214, 99, 196, 232, 74, 13, 180, 100, 232, 161, 197, 212, 229, 149, 242, 71, 29, 15, 21, 189, 170, 13, 61, 27, + 134, 214, 48, 42, 76, 22, 144, 230, 67, 180, 8, 22, 27, 1, 97, 133, 223, 241, 89, 243, 178, 75, 249, 44, 203, 86, + 135, 207, 8, 56, 104, 217, 25, 72, 227, 81, 61, 54, 129, 138, 74, 76, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 580, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15723099509305622204" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1f27f34fb07" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f08698ca6cabb9c4f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "953dcaeb85c4f5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37e13882" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1183140425170214126" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e920fffc01778c184" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a3dc5a8c7e9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61f6aa79708d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b04450cbc0484c756a530be5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aac22d1f56be52b65d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c34ce60cc21d67fe09b0f" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bda33abb2fc47bebc46e1f27f34fb071bffffffffffffffebbf490f08698ca6cabb9c4f47953dcaeb85c4f54437e138821b106b5bf2b9acdcee495e920fffc01778c184465a3dc5a8c7e94661f6aa79708d4cb04450cbc0484c756a530be549aac22d1f56be52b65d4b9c34ce60cc21d67fe09b0fffff", + "cborBytes": [ + 191, 27, 218, 51, 171, 178, 252, 71, 190, 188, 70, 225, 242, 127, 52, 251, 7, 27, 255, 255, 255, 255, 255, 255, + 255, 235, 191, 73, 15, 8, 105, 140, 166, 202, 187, 156, 79, 71, 149, 61, 202, 235, 133, 196, 245, 68, 55, 225, 56, + 130, 27, 16, 107, 91, 242, 185, 172, 220, 238, 73, 94, 146, 15, 255, 192, 23, 120, 193, 132, 70, 90, 61, 197, 168, + 199, 233, 70, 97, 246, 170, 121, 112, 141, 76, 176, 68, 80, 203, 192, 72, 76, 117, 106, 83, 11, 229, 73, 170, 194, + 45, 31, 86, 190, 82, 182, 93, 75, 156, 52, 206, 96, 204, 33, 214, 127, 224, 155, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 581, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1955446614391689674" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12889956332323414424" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3567396986049176117" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b6" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "17b92a5868901329650309" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0cba9dc6f6368d8b015f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a75deffe" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "96d606bf0cc7f4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10724889072024341869" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1b232455dc0e91cad8669f1bb2e252fd866f21989f1b3181f0a86e42a23541b6ffff4b17b92a58689013296503094a0cba9dc6f6368d8b015f44a75deffe9f4796d606bf0cc7f41b94d675c9c17acd6dffff", + "cborBytes": [ + 191, 27, 27, 35, 36, 85, 220, 14, 145, 202, 216, 102, 159, 27, 178, 226, 82, 253, 134, 111, 33, 152, 159, 27, 49, + 129, 240, 168, 110, 66, 162, 53, 65, 182, 255, 255, 75, 23, 185, 42, 88, 104, 144, 19, 41, 101, 3, 9, 74, 12, 186, + 157, 198, 246, 54, 141, 139, 1, 95, 68, 167, 93, 239, 254, 159, 71, 150, 214, 6, 191, 12, 199, 244, 27, 148, 214, + 117, 201, 193, 122, 205, 109, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 582, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1215960744123327821" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1929799306176705221" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5461873695815474254" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10261121144256625679" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5645477558505686056" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18309831089522753274" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10232029772320252495" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17320653014458820758" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5935193100559852631" + } + } + } + ] + }, + "cborHex": "bf1b10dff5dab64a654d1b1ac8063e947532c51b4bcc793027219c4e1b8e66d350a0aa7c0f1b4e58c3edae2bc4281bfe19965dc4683efa1b8dff78ddc65ea24fa01bf05f5225dc9de8961b525e0aadd0382457ff", + "cborBytes": [ + 191, 27, 16, 223, 245, 218, 182, 74, 101, 77, 27, 26, 200, 6, 62, 148, 117, 50, 197, 27, 75, 204, 121, 48, 39, 33, + 156, 78, 27, 142, 102, 211, 80, 160, 170, 124, 15, 27, 78, 88, 195, 237, 174, 43, 196, 40, 27, 254, 25, 150, 93, + 196, 104, 62, 250, 27, 141, 255, 120, 221, 198, 94, 162, 79, 160, 27, 240, 95, 82, 37, 220, 157, 232, 150, 27, 82, + 94, 10, 173, 208, 56, 36, 87, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 583, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5172103" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10861331763482322560" + } + } + } + ] + }, + "cborHex": "bf44e51721031b96bb33b16e07e680ff", + "cborBytes": [191, 68, 229, 23, 33, 3, 27, 150, 187, 51, 177, 110, 7, 230, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 584, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00fb06fe421403fa" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff5a04251a14800fb06fe421403faff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 245, 160, 66, 81, 161, 72, 0, 251, 6, 254, 66, 20, 3, 250, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 585, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12949465323629734386" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10328619738065142763" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04f8fb02156518fe009305" + } + } + ] + }, + "cborHex": "bf0a1bb3b5be1a463069f21b8f56a0edab7603eb4b04f8fb02156518fe009305ff", + "cborBytes": [ + 191, 10, 27, 179, 181, 190, 26, 70, 48, 105, 242, 27, 143, 86, 160, 237, 171, 118, 3, 235, 75, 4, 248, 251, 2, 21, + 101, 24, 254, 0, 147, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 586, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "388022122175337779" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a039" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7239525968933411275" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc2e0d8c43daed8d0b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7834081120224076410" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6699615547" + } + } + ] + }, + "cborHex": "bf1b056288107541153342a0391b6477f683187dd9cb49cc2e0d8c43daed8d0b1b6cb83f45a88ce27a456699615547ff", + "cborBytes": [ + 191, 27, 5, 98, 136, 16, 117, 65, 21, 51, 66, 160, 57, 27, 100, 119, 246, 131, 24, 125, 217, 203, 73, 204, 46, 13, + 140, 67, 218, 237, 141, 11, 27, 108, 184, 63, 69, 168, 140, 226, 122, 69, 102, 153, 97, 85, 71, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 587, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12519029214889442052" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "31" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9466e8" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16477697393410461439" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b8361e05" + } + ] + } + } + ] + }, + "cborHex": "bf1badbc86be0638fb04bf4131439466e8ff1be4ac8a7a0a9c4eff9f44b8361e05ffff", + "cborBytes": [ + 191, 27, 173, 188, 134, 190, 6, 56, 251, 4, 191, 65, 49, 67, 148, 102, 232, 255, 27, 228, 172, 138, 122, 10, 156, + 78, 255, 159, 68, 184, 54, 30, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 588, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4500224641297705776" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "688446031801563611" + } + } + } + ] + }, + "cborHex": "bf1b3e740277d2026b301b098dda04b48f39dbff", + "cborBytes": [191, 27, 62, 116, 2, 119, 210, 2, 107, 48, 27, 9, 141, 218, 4, 180, 143, 57, 219, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 589, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4883228696338054092" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e973" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6805634117881065367" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8016665682791732468" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7010563308282619103" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1647783991929511821" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0bdbb1" + }, + { + "_tag": "ByteArray", + "bytearray": "2551" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18435264834994576207" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16943832704448667443" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12682791460820366205" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "500918800870087834" + } + } + } + ] + }, + "cborHex": "bf1b43c4b6a07a393bcc42e9731b5e72782c23946f971b6f40eaf6e1dd94f41b614a862f7192a4dfd8669f1b16de1acf71889f8d9f430bdbb14225511bffd737b1761a1b4f1beb2496128a4f1f33ffff1bb00253a3268e337d1b06f39efed32d1c9aff", + "cborBytes": [ + 191, 27, 67, 196, 182, 160, 122, 57, 59, 204, 66, 233, 115, 27, 94, 114, 120, 44, 35, 148, 111, 151, 27, 111, 64, + 234, 246, 225, 221, 148, 244, 27, 97, 74, 134, 47, 113, 146, 164, 223, 216, 102, 159, 27, 22, 222, 26, 207, 113, + 136, 159, 141, 159, 67, 11, 219, 177, 66, 37, 81, 27, 255, 215, 55, 177, 118, 26, 27, 79, 27, 235, 36, 150, 18, + 138, 79, 31, 51, 255, 255, 27, 176, 2, 83, 163, 38, 142, 51, 125, 27, 6, 243, 158, 254, 211, 45, 28, 154, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 590, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c5becd5d91cf9e9d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c00060681" + } + } + ] + }, + "cborHex": "bf493c5becd5d91cf9e9d3451c00060681ff", + "cborBytes": [191, 73, 60, 91, 236, 213, 217, 28, 249, 233, 211, 69, 28, 0, 6, 6, 129, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 591, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7658469459904405663" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4166cf69f7ee" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9128860824604184181" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "846abc1510f8632eff71" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3943745484618089436" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9626372005059810645" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ab7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3f0438226cbb9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1931404637952642742" + } + } + } + ] + }, + "cborHex": "bf1b6a485965c0c7a09f464166cf69f7ee1b7eb03a8d9e830e759f4a846abc1510f8632eff711b36baff9f973643dcff1b8597be55fd5ad555426ab747c3f0438226cbb91b1acdba4902b58eb6ff", + "cborBytes": [ + 191, 27, 106, 72, 89, 101, 192, 199, 160, 159, 70, 65, 102, 207, 105, 247, 238, 27, 126, 176, 58, 141, 158, 131, + 14, 117, 159, 74, 132, 106, 188, 21, 16, 248, 99, 46, 255, 113, 27, 54, 186, 255, 159, 151, 54, 67, 220, 255, 27, + 133, 151, 190, 85, 253, 90, 213, 85, 66, 106, 183, 71, 195, 240, 67, 130, 38, 203, 185, 27, 26, 205, 186, 73, 2, + 181, 142, 182, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 592, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6942367050813737226" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16797291006280628067" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14365267345395033133" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "680529365935037457" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2735963349938192860" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2137871203387602262" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95fd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3315335896738012105" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "914656" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7736293472365582751" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a8f6443c7284a1996" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25fedfdac112571e17" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6267947848179660744" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13639053093548528593" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d5fa7fe6ad0a" + }, + { + "_tag": "ByteArray", + "bytearray": "2fc8b54631a71bb539962a" + } + ] + } + } + ] + }, + "cborHex": "bf1b60583e0cec21090a1be91bf72ca23877631bc75bae8a49ca242dbf1b0971b9da4bc79c111b25f8182bc78dc1dc1b1dab3e88557475564295fd1b2e02706ec42b9bc9439146561b6b5cd5ecaa86199f498a8f6443c7284a1996ff4925fedfdac112571e17bf1b56fc395be16c37c84192ff41add8669f1bbd47a68699a713d19f46d5fa7fe6ad0a4b2fc8b54631a71bb539962affffff", + "cborBytes": [ + 191, 27, 96, 88, 62, 12, 236, 33, 9, 10, 27, 233, 27, 247, 44, 162, 56, 119, 99, 27, 199, 91, 174, 138, 73, 202, + 36, 45, 191, 27, 9, 113, 185, 218, 75, 199, 156, 17, 27, 37, 248, 24, 43, 199, 141, 193, 220, 27, 29, 171, 62, + 136, 85, 116, 117, 86, 66, 149, 253, 27, 46, 2, 112, 110, 196, 43, 155, 201, 67, 145, 70, 86, 27, 107, 92, 213, + 236, 170, 134, 25, 159, 73, 138, 143, 100, 67, 199, 40, 74, 25, 150, 255, 73, 37, 254, 223, 218, 193, 18, 87, 30, + 23, 191, 27, 86, 252, 57, 91, 225, 108, 55, 200, 65, 146, 255, 65, 173, 216, 102, 159, 27, 189, 71, 166, 134, 153, + 167, 19, 209, 159, 70, 213, 250, 127, 230, 173, 10, 75, 47, 200, 181, 70, 49, 167, 27, 181, 57, 150, 42, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 593, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01a38b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd613118f812827c6cf428" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c0288ef3e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "121d75f7aa536301" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17904861712526069847" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "133befca3e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05f5e4b3d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8dc8357834b0d517" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3152974118915528821" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b8a24ed7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65689cdb2307db137e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac6067" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e6c1cd35188" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7b649eb6552743bb740" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "911f8c6726b1162b" + } + } + ] + } + } + ] + }, + "cborHex": "bf4301a38b4bfd613118f812827c6cf428453c0288ef3ebf48121d75f7aa5363011bf87ad8dd0f9bd05745133befca3e4505f5e4b3d1488dc8357834b0d5171b2bc19d4187f5d875459b8a24ed7d4965689cdb2307db137e43ac6067469e6c1cd351884ad7b649eb6552743bb74048911f8c6726b1162bffff", + "cborBytes": [ + 191, 67, 1, 163, 139, 75, 253, 97, 49, 24, 248, 18, 130, 124, 108, 244, 40, 69, 60, 2, 136, 239, 62, 191, 72, 18, + 29, 117, 247, 170, 83, 99, 1, 27, 248, 122, 216, 221, 15, 155, 208, 87, 69, 19, 59, 239, 202, 62, 69, 5, 245, 228, + 179, 209, 72, 141, 200, 53, 120, 52, 176, 213, 23, 27, 43, 193, 157, 65, 135, 245, 216, 117, 69, 155, 138, 36, + 237, 125, 73, 101, 104, 156, 219, 35, 7, 219, 19, 126, 67, 172, 96, 103, 70, 158, 108, 28, 211, 81, 136, 74, 215, + 182, 73, 235, 101, 82, 116, 59, 183, 64, 72, 145, 31, 140, 103, 38, 177, 22, 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 594, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1642057158095014463" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb2fe2b9" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93dd4a5e05c891" + } + } + ] + }, + "cborHex": "bf1b16c9c24909240a3f9f44cb2fe2b9ff41344793dd4a5e05c891ff", + "cborBytes": [ + 191, 27, 22, 201, 194, 73, 9, 36, 10, 63, 159, 68, 203, 47, 226, 185, 255, 65, 52, 71, 147, 221, 74, 94, 5, 200, + 145, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 595, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5972284483495120478" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "488151191104625205" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ffc5e5bc89d31cf1645907" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5050764571232530137" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7317288092883308238" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6843884564942495087" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ed" + }, + { + "_tag": "ByteArray", + "bytearray": "15f0a45d545a" + }, + { + "_tag": "ByteArray", + "bytearray": "6cdb8add" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2305312053302556667" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b52e1d118604dce5ed8669f1b06c642ec06799a359f4bffc5e5bc89d31cf16459071b4617eb9e10716ed91b658c3ac077814eceffff1b5efa5cc0592d1d6f9f41ed4615f0a45d545a446cdb8add1b1ffe1d19318677fbffff", + "cborBytes": [ + 191, 27, 82, 225, 209, 24, 96, 77, 206, 94, 216, 102, 159, 27, 6, 198, 66, 236, 6, 121, 154, 53, 159, 75, 255, + 197, 229, 188, 137, 211, 28, 241, 100, 89, 7, 27, 70, 23, 235, 158, 16, 113, 110, 217, 27, 101, 140, 58, 192, 119, + 129, 78, 206, 255, 255, 27, 94, 250, 92, 192, 89, 45, 29, 111, 159, 65, 237, 70, 21, 240, 164, 93, 84, 90, 68, + 108, 219, 138, 221, 27, 31, 254, 29, 25, 49, 134, 119, 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 596, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0461f5ba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be5af757815de5c161f7e719" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6501a8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11231393294044046545" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d71d72d4ddf0844559a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18326404892524803678" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9484627439482623535" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18373411266755522410" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91c609a7c497989685999cd9" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5f767f43ce29687cf" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "56548395166606296" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1355093551895800631" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d99b68573adbeed196dd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a18faa7e09f01f2e8e34340f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10524284592719613259" + } + } + ] + } + } + ] + }, + "cborHex": "bf440461f5ba4cbe5af757815de5c161f7e719436501a8bf1b9bddecb1c83324d14a7d71d72d4ddf0844559a1bfe547826fcebf65e1b83a02a678d48d62f1bfefb78335b1f6f6a4c91c609a7c497989685999cd9ff49d5f767f43ce29687cf9f1b00c8e6773e8623d81b12ce4267e62beb37ff4ad99b68573adbeed196dd9f4ca18faa7e09f01f2e8e34340f1b920dc513b82b4d4bffff", + "cborBytes": [ + 191, 68, 4, 97, 245, 186, 76, 190, 90, 247, 87, 129, 93, 229, 193, 97, 247, 231, 25, 67, 101, 1, 168, 191, 27, + 155, 221, 236, 177, 200, 51, 36, 209, 74, 125, 113, 215, 45, 77, 223, 8, 68, 85, 154, 27, 254, 84, 120, 38, 252, + 235, 246, 94, 27, 131, 160, 42, 103, 141, 72, 214, 47, 27, 254, 251, 120, 51, 91, 31, 111, 106, 76, 145, 198, 9, + 167, 196, 151, 152, 150, 133, 153, 156, 217, 255, 73, 213, 247, 103, 244, 60, 226, 150, 135, 207, 159, 27, 0, 200, + 230, 119, 62, 134, 35, 216, 27, 18, 206, 66, 103, 230, 43, 235, 55, 255, 74, 217, 155, 104, 87, 58, 219, 238, 209, + 150, 221, 159, 76, 161, 143, 170, 126, 9, 240, 31, 46, 142, 52, 52, 15, 27, 146, 13, 197, 19, 184, 43, 77, 75, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 597, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16447150429743192886" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4683666355137880672" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13426773902798377125" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5fcbc45" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6187049716560984732" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e900cfed5023fa6b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3822168337515382857" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "df6b0994490e1c" + }, + { + "_tag": "ByteArray", + "bytearray": "4898a4c53d8392d065bd314f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11475522039760730781" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb94f29e0e7848ba" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3841565713459247214" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3abf7e373e03885c202f5bec" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7798375987100957008" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7678602666529089958" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12951842503729061839" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12307970138921030454" + } + } + ] + } + } + ] + }, + "cborHex": "bf414b9f1be440042cd4419b361b40ffb9bc20712260419f1bba557bb9fbc850a5ff44d5fcbc451b55dcd0efd34c7a9c48e900cfed5023fa6bd8669f1b350b11da2d5988499f47df6b0994490e1c4c4898a4c53d8392d065bd314f1b9f413e7ec81aba9dffff48eb94f29e0e7848bad8669f1b354ffba9b40ef86e9f4c3abf7e373e03885c202f5bec1b6c3965a48816b9501b6a8fe07135d569a61bb3be3022a5939fcf1baaceb1a18480d336ffffff", + "cborBytes": [ + 191, 65, 75, 159, 27, 228, 64, 4, 44, 212, 65, 155, 54, 27, 64, 255, 185, 188, 32, 113, 34, 96, 65, 159, 27, 186, + 85, 123, 185, 251, 200, 80, 165, 255, 68, 213, 252, 188, 69, 27, 85, 220, 208, 239, 211, 76, 122, 156, 72, 233, 0, + 207, 237, 80, 35, 250, 107, 216, 102, 159, 27, 53, 11, 17, 218, 45, 89, 136, 73, 159, 71, 223, 107, 9, 148, 73, + 14, 28, 76, 72, 152, 164, 197, 61, 131, 146, 208, 101, 189, 49, 79, 27, 159, 65, 62, 126, 200, 26, 186, 157, 255, + 255, 72, 235, 148, 242, 158, 14, 120, 72, 186, 216, 102, 159, 27, 53, 79, 251, 169, 180, 14, 248, 110, 159, 76, + 58, 191, 126, 55, 62, 3, 136, 92, 32, 47, 91, 236, 27, 108, 57, 101, 164, 136, 22, 185, 80, 27, 106, 143, 224, + 113, 53, 213, 105, 166, 27, 179, 190, 48, 34, 165, 147, 159, 207, 27, 170, 206, 177, 161, 132, 128, 211, 54, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 598, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11265121196581617774" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bce525255d630a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11291310243197886762" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15436346299441316854" + } + } + } + ] + }, + "cborHex": "bf1b9c55c00b09f8806e47bce525255d630a1b9cb2cad79e8a212a1bd638eb2c901d83f6ff", + "cborBytes": [ + 191, 27, 156, 85, 192, 11, 9, 248, 128, 110, 71, 188, 229, 37, 37, 93, 99, 10, 27, 156, 178, 202, 215, 158, 138, + 33, 42, 27, 214, 56, 235, 44, 144, 29, 131, 246, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 599, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e83f79935b7e006f4a7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4608906712593116217" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4a8e83f79935b7e006f4a7d8669f1b3ff6203c6f06ac3980ffff", + "cborBytes": [ + 191, 74, 142, 131, 247, 153, 53, 183, 224, 6, 244, 167, 216, 102, 159, 27, 63, 246, 32, 60, 111, 6, 172, 57, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 600, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1485193440412839063" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "75e4438b19bfafb1fcc374d1" + }, + { + "_tag": "ByteArray", + "bytearray": "59e55da4579d24790504" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "282006784991494925" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15227894261111664121" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "571111110676591026" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f7317a6483d2b2f5d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10400198891019950111" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a58" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13592240483810719375" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c87b78a8864d2b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7377633778863533590" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13792174116798561235" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aecfa1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4653200320214228221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "411869262e1a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10614011039413429086" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1335886267520370680" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4da749e8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4bcd4b6f9a8f4bafa7783" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7ec59" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15489685714735565717" + } + } + ] + } + } + ] + }, + "cborHex": "bf4105d8669f1b149c7790ae8c2c979f4c75e4438b19bfafb1fcc374d14a59e55da4579d247905041b03e9e3ad43ab030d1bd35459264ec52df91b07ecfe877f2831b2ffff496f7317a6483d2b2f5d1b9054edc9eca7d81f428a58d8669f1bbca156b48b38b68f9f47c87b78a8864d2b1b66629ed560156e161bbf67a549001d7bd3ffff43aecfa1bf1b40937d099b1a5cfd46411869262e1a1b934c8ace0e4fe35e1b128a057b83dfc7f8ff45b4da749e8f4be4bcd4b6f9a8f4bafa778343b7ec599f1bd6f66b16f5418b95ffff", + "cborBytes": [ + 191, 65, 5, 216, 102, 159, 27, 20, 156, 119, 144, 174, 140, 44, 151, 159, 76, 117, 228, 67, 139, 25, 191, 175, + 177, 252, 195, 116, 209, 74, 89, 229, 93, 164, 87, 157, 36, 121, 5, 4, 27, 3, 233, 227, 173, 67, 171, 3, 13, 27, + 211, 84, 89, 38, 78, 197, 45, 249, 27, 7, 236, 254, 135, 127, 40, 49, 178, 255, 255, 73, 111, 115, 23, 166, 72, + 61, 43, 47, 93, 27, 144, 84, 237, 201, 236, 167, 216, 31, 66, 138, 88, 216, 102, 159, 27, 188, 161, 86, 180, 139, + 56, 182, 143, 159, 71, 200, 123, 120, 168, 134, 77, 43, 27, 102, 98, 158, 213, 96, 21, 110, 22, 27, 191, 103, 165, + 73, 0, 29, 123, 211, 255, 255, 67, 174, 207, 161, 191, 27, 64, 147, 125, 9, 155, 26, 92, 253, 70, 65, 24, 105, 38, + 46, 26, 27, 147, 76, 138, 206, 14, 79, 227, 94, 27, 18, 138, 5, 123, 131, 223, 199, 248, 255, 69, 180, 218, 116, + 158, 143, 75, 228, 188, 212, 182, 249, 168, 244, 186, 250, 119, 131, 67, 183, 236, 89, 159, 27, 214, 246, 107, 22, + 245, 65, 139, 149, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 601, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5281653051520653926" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8886973515617718798" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10165768272285517884" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "54b8" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a55d829117ba98861679" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1534272415683536866" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6731876908983485198" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d804" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3486136126633233430" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7201853994942501327" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1469436719628064077" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f26a8e12a206794f504733ce" + } + ] + } + } + ] + }, + "cborHex": "bf1b494c33778abf1a661b7b54df53c6b2d20e1b8d1410621283c83c9f4254b8ff4aa55d829117ba98861679d8669f1b154ad4a2157f67e29f1b5d6c6e61b79d830effff42d804d8669f1b30613e563aa14c169f1b63f2200d24c691cf1b14647ce93d58954d4cf26a8e12a206794f504733ceffffff", + "cborBytes": [ + 191, 27, 73, 76, 51, 119, 138, 191, 26, 102, 27, 123, 84, 223, 83, 198, 178, 210, 14, 27, 141, 20, 16, 98, 18, + 131, 200, 60, 159, 66, 84, 184, 255, 74, 165, 93, 130, 145, 23, 186, 152, 134, 22, 121, 216, 102, 159, 27, 21, 74, + 212, 162, 21, 127, 103, 226, 159, 27, 93, 108, 110, 97, 183, 157, 131, 14, 255, 255, 66, 216, 4, 216, 102, 159, + 27, 48, 97, 62, 86, 58, 161, 76, 22, 159, 27, 99, 242, 32, 13, 36, 198, 145, 207, 27, 20, 100, 124, 233, 61, 88, + 149, 77, 76, 242, 106, 142, 18, 162, 6, 121, 79, 80, 71, 51, 206, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 602, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "276d653c7b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16452699084445405822" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16025537906031217565" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51d74d41d9f2b3bb8cc1bf27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6336595783301751343" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45d10fd55d944c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3857712109213908912" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "486320619444871236" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3927915912574082145" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1cf14487f93c5e5839b0b418" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84c34de083c00f939dcd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "53e7f8f968" + }, + { + "_tag": "ByteArray", + "bytearray": "b3aff752cc4259a9f1" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d5d0ffa95103d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12108329887749188083" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91bd03fb55541f869914bbbc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8722768450325603591" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18314320796583145401" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d4f53f655a183e93d45c40" + }, + { + "_tag": "ByteArray", + "bytearray": "02c27eefe016064fbb6ff6" + } + ] + } + } + ] + }, + "cborHex": "bf45276d653c7bbf1be453baa5acc3527e1bde6625d18f8c4b9d4c51d74d41d9f2b3bb8cc1bf271b57f01c4accf0622fff4745d10fd55d944c9f1b358958b96b6affb01b06bfc206d8f5a0441b3682c2b624951c614c1cf14487f93c5e5839b0b418ff4a84c34de083c00f939dcd9f4553e7f8f96849b3aff752cc4259a9f1ff478d5d0ffa95103d1ba8096de1568929f34c91bd03fb55541f869914bbbc1b790d7fb0bba4650741c1d8669f1bfe2989bb26e32fb99f4bd4f53f655a183e93d45c404b02c27eefe016064fbb6ff6ffffff", + "cborBytes": [ + 191, 69, 39, 109, 101, 60, 123, 191, 27, 228, 83, 186, 165, 172, 195, 82, 126, 27, 222, 102, 37, 209, 143, 140, + 75, 157, 76, 81, 215, 77, 65, 217, 242, 179, 187, 140, 193, 191, 39, 27, 87, 240, 28, 74, 204, 240, 98, 47, 255, + 71, 69, 209, 15, 213, 93, 148, 76, 159, 27, 53, 137, 88, 185, 107, 106, 255, 176, 27, 6, 191, 194, 6, 216, 245, + 160, 68, 27, 54, 130, 194, 182, 36, 149, 28, 97, 76, 28, 241, 68, 135, 249, 60, 94, 88, 57, 176, 180, 24, 255, 74, + 132, 195, 77, 224, 131, 192, 15, 147, 157, 205, 159, 69, 83, 231, 248, 249, 104, 73, 179, 175, 247, 82, 204, 66, + 89, 169, 241, 255, 71, 141, 93, 15, 250, 149, 16, 61, 27, 168, 9, 109, 225, 86, 137, 41, 243, 76, 145, 189, 3, + 251, 85, 84, 31, 134, 153, 20, 187, 188, 27, 121, 13, 127, 176, 187, 164, 101, 7, 65, 193, 216, 102, 159, 27, 254, + 41, 137, 187, 38, 227, 47, 185, 159, 75, 212, 245, 63, 101, 90, 24, 62, 147, 212, 92, 64, 75, 2, 194, 126, 239, + 224, 22, 6, 79, 187, 111, 246, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 603, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05fbfecff8fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95a86454f806e33615" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63bf0c7ba502cc4f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11760785450345590842" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a304" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eec661eed6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7801170564257990635" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1253bd007a7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8fa00" + }, + { + "_tag": "ByteArray", + "bytearray": "a0" + }, + { + "_tag": "ByteArray", + "bytearray": "0e7fa4" + }, + { + "_tag": "ByteArray", + "bytearray": "ea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6594929503709735945" + } + } + ] + } + } + ] + }, + "cborHex": "bf4605fbfecff8fe4995a86454f806e336154863bf0c7ba502cc4fd905059f1ba336b40e476e703aff42a30445eec661eed641b31b6c43534bbad4c7eb46e1253bd007a7d905029f43f8fa0041a0430e7fa441ea1b5b85e571335cac09ffff", + "cborBytes": [ + 191, 70, 5, 251, 254, 207, 248, 254, 73, 149, 168, 100, 84, 248, 6, 227, 54, 21, 72, 99, 191, 12, 123, 165, 2, + 204, 79, 217, 5, 5, 159, 27, 163, 54, 180, 14, 71, 110, 112, 58, 255, 66, 163, 4, 69, 238, 198, 97, 238, 214, 65, + 179, 27, 108, 67, 83, 75, 186, 212, 199, 235, 70, 225, 37, 59, 208, 7, 167, 217, 5, 2, 159, 67, 248, 250, 0, 65, + 160, 67, 14, 127, 164, 65, 234, 27, 91, 133, 229, 113, 51, 92, 172, 9, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 604, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01050103" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02a319" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17387357459918298740" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4803825867286907619" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7868490804715198167" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9790403390013739924" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8668966507830132974" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2f2f7a7b76d5cf936c96" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8366014987225571408" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15500213207502722579" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edafa7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff2780488f7ba4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff1d18a626" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4662672729052654486" + } + } + } + ] + }, + "cborHex": "bf4401050103a04302a319d8669f1bfffffffffffffffd9f1bf14c4d7cd52b1e74ffff4104d8669f1b42aa9e2cae780ae39f1b6d327eb2a57a16d71b87de8002ed8c93941b784e5b1bd4f940ee4a2f2f7a7b76d5cf936c961b741a0e4e4b2ca050ffff42cb011bd71bd1c9e004961343edafa747ff2780488f7ba445ff1d18a6261b40b52424a715ab96ff", + "cborBytes": [ + 191, 68, 1, 5, 1, 3, 160, 67, 2, 163, 25, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 27, 241, + 76, 77, 124, 213, 43, 30, 116, 255, 255, 65, 4, 216, 102, 159, 27, 66, 170, 158, 44, 174, 120, 10, 227, 159, 27, + 109, 50, 126, 178, 165, 122, 22, 215, 27, 135, 222, 128, 2, 237, 140, 147, 148, 27, 120, 78, 91, 27, 212, 249, 64, + 238, 74, 47, 47, 122, 123, 118, 213, 207, 147, 108, 150, 27, 116, 26, 14, 78, 75, 44, 160, 80, 255, 255, 66, 203, + 1, 27, 215, 27, 209, 201, 224, 4, 150, 19, 67, 237, 175, 167, 71, 255, 39, 128, 72, 143, 123, 164, 69, 255, 29, + 24, 166, 38, 27, 64, 181, 36, 36, 167, 21, 171, 150, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 605, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "020e8ecd2968df060c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48aa1ae227" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "919f82df1419e9ecb0" + } + } + ] + }, + "cborHex": "bf410249020e8ecd2968df060c4548aa1ae22749919f82df1419e9ecb0ff", + "cborBytes": [ + 191, 65, 2, 73, 2, 14, 142, 205, 41, 104, 223, 6, 12, 69, 72, 170, 26, 226, 39, 73, 145, 159, 130, 223, 20, 25, + 233, 236, 176, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 606, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28011ecb1fd9c215" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7181121531619119913" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bb" + }, + { + "_tag": "ByteArray", + "bytearray": "1e46bf9ab38ba444e97a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "82796689870457941" + } + }, + { + "_tag": "ByteArray", + "bytearray": "db1c687d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d4d93a2f3da6a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c18e04ac66" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4720120013075444159" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "01a154" + }, + { + "_tag": "ByteArray", + "bytearray": "b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16615144178246761243" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87fab9fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "367282693526774410" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c29934" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ae8832a4948e1c297b45c181" + }, + { + "_tag": "ByteArray", + "bytearray": "7f1a404a6cdef2d1a5804a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5513804212449957997" + } + } + ] + } + } + ] + }, + "cborHex": "bf4828011ecb1fd9c215d8669f1b63a877fc5d1113299f41bb4a1e46bf9ab38ba444e97a1b01262726984e8c5544db1c687dffff479d4d93a2f3da6a412a45c18e04ac66d8669f1b41813c24c492f1bf9f4301a15441b61be694d9996c4c3b1b4487fab9fb1b0518d9a9efcfe28affff43c299349f4cae8832a4948e1c297b45c1814b7f1a404a6cdef2d1a5804a1b4c84f7b7c421d86dffff", + "cborBytes": [ + 191, 72, 40, 1, 30, 203, 31, 217, 194, 21, 216, 102, 159, 27, 99, 168, 119, 252, 93, 17, 19, 41, 159, 65, 187, 74, + 30, 70, 191, 154, 179, 139, 164, 68, 233, 122, 27, 1, 38, 39, 38, 152, 78, 140, 85, 68, 219, 28, 104, 125, 255, + 255, 71, 157, 77, 147, 162, 243, 218, 106, 65, 42, 69, 193, 142, 4, 172, 102, 216, 102, 159, 27, 65, 129, 60, 36, + 196, 146, 241, 191, 159, 67, 1, 161, 84, 65, 182, 27, 230, 148, 217, 153, 108, 76, 59, 27, 68, 135, 250, 185, 251, + 27, 5, 24, 217, 169, 239, 207, 226, 138, 255, 255, 67, 194, 153, 52, 159, 76, 174, 136, 50, 164, 148, 142, 28, 41, + 123, 69, 193, 129, 75, 127, 26, 64, 74, 108, 222, 242, 209, 165, 128, 74, 27, 76, 132, 247, 183, 196, 33, 216, + 109, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 607, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "25" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8756417680918905249" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4908a3032499099d4b9a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "619751877218189936" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "230758824615821407" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10467523017309849473" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "368e83bef6a4f16a6fab06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a422103024eb5108b87f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "537771128d73142a0eaf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e3990" + } + } + ] + } + } + ] + }, + "cborHex": "bf4125d8669f1b79850b7cc01f01a19f4a4908a3032499099d4b9a1b0899cd0c7a78c2701b0333d1edaa03405f1b91441cb994fa8781ffff4145bf4b368e83bef6a4f16a6fab064b6a422103024eb5108b87f34a537771128d73142a0eaf432e3990ffff", + "cborBytes": [ + 191, 65, 37, 216, 102, 159, 27, 121, 133, 11, 124, 192, 31, 1, 161, 159, 74, 73, 8, 163, 3, 36, 153, 9, 157, 75, + 154, 27, 8, 153, 205, 12, 122, 120, 194, 112, 27, 3, 51, 209, 237, 170, 3, 64, 95, 27, 145, 68, 28, 185, 148, 250, + 135, 129, 255, 255, 65, 69, 191, 75, 54, 142, 131, 190, 246, 164, 241, 106, 111, 171, 6, 75, 106, 66, 33, 3, 2, + 78, 181, 16, 139, 135, 243, 74, 83, 119, 113, 18, 141, 115, 20, 42, 14, 175, 67, 46, 57, 144, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 608, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "714349246923656347" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7222278874282989701" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e2717bcf58af4" + } + } + ] + }, + "cborHex": "bf1b09e9e0daf473cc9ba01b643ab05ef2721885470e2717bcf58af4ff", + "cborBytes": [ + 191, 27, 9, 233, 224, 218, 244, 115, 204, 155, 160, 27, 100, 58, 176, 94, 242, 114, 24, 133, 71, 14, 39, 23, 188, + 245, 138, 244, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 609, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17575018825573084124" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55cf7c927969d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8a3507757deabe82f" + } + } + ] + }, + "cborHex": "bf1bf3e7028163162bdc41434755cf7c927969d349e8a3507757deabe82fff", + "cborBytes": [ + 191, 27, 243, 231, 2, 129, 99, 22, 43, 220, 65, 67, 71, 85, 207, 124, 146, 121, 105, 211, 73, 232, 163, 80, 119, + 87, 222, 171, 232, 47, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 610, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1151769f5822107c07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd33de3695" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6094487904168525838" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10674211536222861864" + } + } + } + ] + }, + "cborHex": "bf0bbf491151769f5822107c0745dd33de3695ff1b5493f87577e1400e1b94226ad679f0ba28ff", + "cborBytes": [ + 191, 11, 191, 73, 17, 81, 118, 159, 88, 34, 16, 124, 7, 69, 221, 51, 222, 54, 149, 255, 27, 84, 147, 248, 117, + 119, 225, 64, 14, 27, 148, 34, 106, 214, 121, 240, 186, 40, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 611, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4853335628520402964" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6756483344e370f258" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5c71e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abd37f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8397787460669134598" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd71d84c7c4cf209" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17425032208537233754" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c514" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecd8d83c94f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1a30c9c346d138b2f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9428383680871608677" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10190454730823587997" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e3d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b81b78d3498acc56dc5d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8388007869152896909" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b6bd13aeabec00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2607878635038384112" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b435a830a41b4b014bf496756483344e370f25843b5c71e43abd37f1b748aef33bc69d70648bd71d84c7c4cf2091bf1d22678cd9a295a42c51446ecd8d83c94f249f1a30c9c346d138b2f1b82d8590108713165ff1b8d6bc4961a70589d426e3d4ab81b78d3498acc56dc5d9f1b746830b7260a278d47b6bd13aeabec001b24310bcd2acb1ff0ffff", + "cborBytes": [ + 191, 27, 67, 90, 131, 10, 65, 180, 176, 20, 191, 73, 103, 86, 72, 51, 68, 227, 112, 242, 88, 67, 181, 199, 30, 67, + 171, 211, 127, 27, 116, 138, 239, 51, 188, 105, 215, 6, 72, 189, 113, 216, 76, 124, 76, 242, 9, 27, 241, 210, 38, + 120, 205, 154, 41, 90, 66, 197, 20, 70, 236, 216, 216, 60, 148, 242, 73, 241, 163, 12, 156, 52, 109, 19, 139, 47, + 27, 130, 216, 89, 1, 8, 113, 49, 101, 255, 27, 141, 107, 196, 150, 26, 112, 88, 157, 66, 110, 61, 74, 184, 27, + 120, 211, 73, 138, 204, 86, 220, 93, 159, 27, 116, 104, 48, 183, 38, 10, 39, 141, 71, 182, 189, 19, 174, 171, 236, + 0, 27, 36, 49, 11, 205, 42, 203, 31, 240, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 612, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcb1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17485657755047039059" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a01b6556a2a50d2e0338dfb" + } + ] + } + } + ] + }, + "cborHex": "bf42fcb1d905019f1bf2a98915d1a210534c8a01b6556a2a50d2e0338dfbffff", + "cborBytes": [ + 191, 66, 252, 177, 217, 5, 1, 159, 27, 242, 169, 137, 21, 209, 162, 16, 83, 76, 138, 1, 182, 85, 106, 42, 80, 210, + 224, 51, 141, 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 613, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "022803b70007" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05968306" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c56201643bf1ef393a21594" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4115504571009588710" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d884f5ab334882aca1a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffc8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b606b2fc80fa89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "660d" + } + } + ] + } + } + ] + }, + "cborHex": "bf46022803b70007d8669f1bfffffffffffffff380ff4405968306bf4c0c56201643bf1ef393a215941b391d359a3a85dde64a2d884f5ab334882aca1a42ffc847b606b2fc80fa8942660dffff", + "cborBytes": [ + 191, 70, 2, 40, 3, 183, 0, 7, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 128, 255, 68, 5, 150, + 131, 6, 191, 76, 12, 86, 32, 22, 67, 191, 30, 243, 147, 162, 21, 148, 27, 57, 29, 53, 154, 58, 133, 221, 230, 74, + 45, 136, 79, 90, 179, 52, 136, 42, 202, 26, 66, 255, 200, 71, 182, 6, 178, 252, 128, 250, 137, 66, 102, 13, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 614, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1556284206174825559" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16344614745969972799" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2580522490648354810" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10669557060944641051" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7467685170590630101" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8632101714455278953" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15479829346276546423" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6983a1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10324813126551092006" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15308520837558451491" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9981448021404535216" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9945927532435577588" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5aed9a96cbb1b24b8032c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15327499670206674855" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4776404609463182820" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16891775360299403840" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9885309150145614701" + } + } + } + ] + }, + "cborHex": "bf1b1599083d6e99ec571be2d3bc839426d63f1b23cfdb8876005ffad8669f1b9411e19e005dbc1b9f1b67a28c18df81c0d5ffff1b77cb62c64325b569d8669f1bd6d366c6587b17779f436983a11b8f491ad5dc5e3b261bd472ca97ff563d231b8a853a176bd7c9b0ffff1b8a0708651c999af44bb5aed9a96cbb1b24b8032c1bd4b637bdd195f7a71b424932af929765e41bea6ba43198578a401b892fac4c2559136dff", + "cborBytes": [ + 191, 27, 21, 153, 8, 61, 110, 153, 236, 87, 27, 226, 211, 188, 131, 148, 38, 214, 63, 27, 35, 207, 219, 136, 118, + 0, 95, 250, 216, 102, 159, 27, 148, 17, 225, 158, 0, 93, 188, 27, 159, 27, 103, 162, 140, 24, 223, 129, 192, 213, + 255, 255, 27, 119, 203, 98, 198, 67, 37, 181, 105, 216, 102, 159, 27, 214, 211, 102, 198, 88, 123, 23, 119, 159, + 67, 105, 131, 161, 27, 143, 73, 26, 213, 220, 94, 59, 38, 27, 212, 114, 202, 151, 255, 86, 61, 35, 27, 138, 133, + 58, 23, 107, 215, 201, 176, 255, 255, 27, 138, 7, 8, 101, 28, 153, 154, 244, 75, 181, 174, 217, 169, 108, 187, 27, + 36, 184, 3, 44, 27, 212, 182, 55, 189, 209, 149, 247, 167, 27, 66, 73, 50, 175, 146, 151, 101, 228, 27, 234, 107, + 164, 49, 152, 87, 138, 64, 27, 137, 47, 172, 76, 37, 89, 19, 109, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 615, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10162677391797827698" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bd5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + }, + "cborHex": "bf051b8d09153e6100b872424bd507ff", + "cborBytes": [191, 5, 27, 141, 9, 21, 62, 97, 0, 184, 114, 66, 75, 213, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 616, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13443aed26" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4338ff8db9034ba5d5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17182315900357707699" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "506229734185031851" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2761f48d73f2" + }, + { + "_tag": "ByteArray", + "bytearray": "a67654bfb404a440ea439e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfc51b80be1bb6d360" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "801762676849241343" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3207474680076889546" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3723a63" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "712dd319bd6d1d" + } + } + ] + }, + "cborHex": "bf4513443aed2680494338ff8db9034ba5d59f1bee73d9468b5e07b31b07067d42d8d6d8ab462761f48d73f24ba67654bfb404a440ea439eff49cfc51b80be1bb6d360bf1b0b206ee81bc3ecff1b2c833d3a440aedcaff44f3723a6347712dd319bd6d1dff", + "cborBytes": [ + 191, 69, 19, 68, 58, 237, 38, 128, 73, 67, 56, 255, 141, 185, 3, 75, 165, 213, 159, 27, 238, 115, 217, 70, 139, + 94, 7, 179, 27, 7, 6, 125, 66, 216, 214, 216, 171, 70, 39, 97, 244, 141, 115, 242, 75, 166, 118, 84, 191, 180, 4, + 164, 64, 234, 67, 158, 255, 73, 207, 197, 27, 128, 190, 27, 182, 211, 96, 191, 27, 11, 32, 110, 232, 27, 195, 236, + 255, 27, 44, 131, 61, 58, 68, 10, 237, 202, 255, 68, 243, 114, 58, 99, 71, 113, 45, 211, 25, 189, 109, 29, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 617, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6471029409920795874" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cd06fdfc8aeb060619000607" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13908893877804779287" + } + }, + { + "_tag": "ByteArray", + "bytearray": "73b3" + }, + { + "_tag": "ByteArray", + "bytearray": "2783041c9a8c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14290992353107476990" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3003998260591727969" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13105063161424998198" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2974374330445348820" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18394614732877901314" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11366564031008278060" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6144325198813181581" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c82e48f4c9f3812f7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "728599949546980019" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f2faf68b6748eabb17" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b9bda32516f8b927b25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a91b62" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8ea3ed72d6887a09d13" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5520966372943925886" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0bd8669f1b59cdb6f69d6f44e29f4ccd06fdfc8aeb0606190006071bc106514a1528c7174273b3462783041c9a8cffff1bc653cdd406cb81fe9f1b29b058808c7615611bb5de8982ffcb6f361b294719b1d33c3fd4ff1bfffffffffffffff4d8669f1bff46cca4055aae029f1b9dbe25c378fb062c1b55450736dbbdb68d498c82e48f4c9f3812f71b0a1c81cb381d82b349f2faf68b6748eabb17ffff1bfffffffffffffff6bf4a9b9bda32516f8b927b2543a91b624ae8ea3ed72d6887a09d131b4c9e69aa3433127effff", + "cborBytes": [ + 191, 11, 216, 102, 159, 27, 89, 205, 182, 246, 157, 111, 68, 226, 159, 76, 205, 6, 253, 252, 138, 235, 6, 6, 25, + 0, 6, 7, 27, 193, 6, 81, 74, 21, 40, 199, 23, 66, 115, 179, 70, 39, 131, 4, 28, 154, 140, 255, 255, 27, 198, 83, + 205, 212, 6, 203, 129, 254, 159, 27, 41, 176, 88, 128, 140, 118, 21, 97, 27, 181, 222, 137, 130, 255, 203, 111, + 54, 27, 41, 71, 25, 177, 211, 60, 63, 212, 255, 27, 255, 255, 255, 255, 255, 255, 255, 244, 216, 102, 159, 27, + 255, 70, 204, 164, 5, 90, 174, 2, 159, 27, 157, 190, 37, 195, 120, 251, 6, 44, 27, 85, 69, 7, 54, 219, 189, 182, + 141, 73, 140, 130, 228, 143, 76, 159, 56, 18, 247, 27, 10, 28, 129, 203, 56, 29, 130, 179, 73, 242, 250, 246, 139, + 103, 72, 234, 187, 23, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 246, 191, 74, 155, 155, 218, 50, 81, 111, + 139, 146, 123, 37, 67, 169, 27, 98, 74, 232, 234, 62, 215, 45, 104, 135, 160, 157, 19, 27, 76, 158, 105, 170, 52, + 51, 18, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 618, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "028b0040fd00" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bfa4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15069889423485437806" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c7b733fc307b6" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebfd05024307ba4f467890" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cb66ff4f7c0e64449" + } + } + ] + }, + "cborHex": "bf46028b0040fd00d87d9f42bfa41bd12300964344076e475c7b733fc307b6ff4bebfd05024307ba4f467890498cb66ff4f7c0e64449ff", + "cborBytes": [ + 191, 70, 2, 139, 0, 64, 253, 0, 216, 125, 159, 66, 191, 164, 27, 209, 35, 0, 150, 67, 68, 7, 110, 71, 92, 123, + 115, 63, 195, 7, 182, 255, 75, 235, 253, 5, 2, 67, 7, 186, 79, 70, 120, 144, 73, 140, 182, 111, 244, 247, 192, + 230, 68, 73, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 619, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9209314061903964150" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12017740844703903265" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7856007163693326521" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "609744972501581103" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c059fb9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1888454714566044253" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff372dcabdce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17135832073096236075" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16321258496308793657" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9615e59" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14657244681188267817" + } + } + } + ] + }, + "cborHex": "bf00a01bfffffffffffffff29f1b7fce0e58a4cba7f61ba6c797a023476e211b6d0624e478dd60b91b08763fd269897d2fff446c059fb9d8669f1b1a35238eb41eea5d9f46ff372dcabdce1bedceb47b1fa58c2b1be280c220efcfd139ffff44f9615e591bcb68fe615035d729ff", + "cborBytes": [ + 191, 0, 160, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 127, 206, 14, 88, 164, 203, 167, 246, 27, 166, + 199, 151, 160, 35, 71, 110, 33, 27, 109, 6, 36, 228, 120, 221, 96, 185, 27, 8, 118, 63, 210, 105, 137, 125, 47, + 255, 68, 108, 5, 159, 185, 216, 102, 159, 27, 26, 53, 35, 142, 180, 30, 234, 93, 159, 70, 255, 55, 45, 202, 189, + 206, 27, 237, 206, 180, 123, 31, 165, 140, 43, 27, 226, 128, 194, 32, 239, 207, 209, 57, 255, 255, 68, 249, 97, + 94, 89, 27, 203, 104, 254, 97, 80, 53, 215, 41, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 620, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6084886799431014543" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7fd44e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10363976313190042884" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "704954466478816479" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af7c28b0ec3639ca97e44eeb" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11672948663154808736" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15957196750501250090" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c78c4316fc5d" + }, + { + "_tag": "ByteArray", + "bytearray": "217740afd4988c308702" + }, + { + "_tag": "ByteArray", + "bytearray": "5656" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12075786928624350045" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1397447873467702830" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13359596091410964480" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3040148272428216388" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a28bcd11c2" + }, + { + "_tag": "ByteArray", + "bytearray": "863b6a9205017f1605" + }, + { + "_tag": "ByteArray", + "bytearray": "91bd1da076" + }, + { + "_tag": "ByteArray", + "bytearray": "1887be1c23b99d54" + }, + { + "_tag": "ByteArray", + "bytearray": "181d1d8aff53" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14384607936869980757" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "290845573845751785" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "913db81cc829966a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17273964287118634681" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16933476519651675392" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "502a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5d69cbc19d19c68d9" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5471dc4e128c988f437fd44e1b8fd43d8bd0414d049f1b09c8805a2d4b7cdf4caf7c28b0ec3639ca97e44eebff1ba1fea4f694b697a0d8669f1bdd7359e654a5042a9f46c78c4316fc5d4a217740afd4988c3087024256561ba795d03b37f5b35d1b1364bb6fda2ade2effff1bb966d1dceb3f6000d8669f1b2a30c6bf1299f0449f45a28bcd11c249863b6a9205017f16054591bd1da076481887be1c23b99d5446181d1d8aff53ffff1bc7a064b4a6665a55d8669f1b04094a82299217e99f48913db81cc829966affff1befb972ff6c7d6eb9bf1beaffcb2d5e418d0042502a410b49f5d69cbc19d19c68d9ffff", + "cborBytes": [ + 191, 27, 84, 113, 220, 78, 18, 140, 152, 143, 67, 127, 212, 78, 27, 143, 212, 61, 139, 208, 65, 77, 4, 159, 27, 9, + 200, 128, 90, 45, 75, 124, 223, 76, 175, 124, 40, 176, 236, 54, 57, 202, 151, 228, 78, 235, 255, 27, 161, 254, + 164, 246, 148, 182, 151, 160, 216, 102, 159, 27, 221, 115, 89, 230, 84, 165, 4, 42, 159, 70, 199, 140, 67, 22, + 252, 93, 74, 33, 119, 64, 175, 212, 152, 140, 48, 135, 2, 66, 86, 86, 27, 167, 149, 208, 59, 55, 245, 179, 93, 27, + 19, 100, 187, 111, 218, 42, 222, 46, 255, 255, 27, 185, 102, 209, 220, 235, 63, 96, 0, 216, 102, 159, 27, 42, 48, + 198, 191, 18, 153, 240, 68, 159, 69, 162, 139, 205, 17, 194, 73, 134, 59, 106, 146, 5, 1, 127, 22, 5, 69, 145, + 189, 29, 160, 118, 72, 24, 135, 190, 28, 35, 185, 157, 84, 70, 24, 29, 29, 138, 255, 83, 255, 255, 27, 199, 160, + 100, 180, 166, 102, 90, 85, 216, 102, 159, 27, 4, 9, 74, 130, 41, 146, 23, 233, 159, 72, 145, 61, 184, 28, 200, + 41, 150, 106, 255, 255, 27, 239, 185, 114, 255, 108, 125, 110, 185, 191, 27, 234, 255, 203, 45, 94, 65, 141, 0, + 66, 80, 42, 65, 11, 73, 245, 214, 156, 188, 25, 209, 156, 104, 217, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 621, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b4f3fc782" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + } + ] + }, + "cborHex": "bf454b4f3fc7820fff", + "cborBytes": [191, 69, 75, 79, 63, 199, 130, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 622, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0177" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa7cdb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3406fcfd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10074778597653186633" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f42e231281257e94" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15235689849598206788" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1741073711001425769" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15460924576488744012" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10677166219254355049" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4716bf41e7e564" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + }, + "cborHex": "bf42017743fa7cdb443406fcfdbf1b8bd0cdc18fd3884948f42e231281257e941bd3700b32315363441b18298950c802d7691bd6903cfca0b7e44c1b942cea1b3a74d469ff474716bf41e7e5640141b610ff", + "cborBytes": [ + 191, 66, 1, 119, 67, 250, 124, 219, 68, 52, 6, 252, 253, 191, 27, 139, 208, 205, 193, 143, 211, 136, 73, 72, 244, + 46, 35, 18, 129, 37, 126, 148, 27, 211, 112, 11, 50, 49, 83, 99, 68, 27, 24, 41, 137, 80, 200, 2, 215, 105, 27, + 214, 144, 60, 252, 160, 183, 228, 76, 27, 148, 44, 234, 27, 58, 116, 212, 105, 255, 71, 71, 22, 191, 65, 231, 229, + 100, 1, 65, 182, 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 623, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3139686789659640883" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8567258559285674166" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "77a3b86b086729c6ea978278" + }, + { + "_tag": "ByteArray", + "bytearray": "d370fc3a73ec55c159a97395" + }, + { + "_tag": "ByteArray", + "bytearray": "d2a7f417" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15952507257738325538" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2836676066267704138" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2b9268801ba64433d8669f1b76e50444b525c0b69f4c77a3b86b086729c6ea9782784cd370fc3a73ec55c159a9739544d2a7f4171bdd62b0d4b6556e221b275de5da58bd2b4affffff", + "cborBytes": [ + 191, 27, 43, 146, 104, 128, 27, 166, 68, 51, 216, 102, 159, 27, 118, 229, 4, 68, 181, 37, 192, 182, 159, 76, 119, + 163, 184, 107, 8, 103, 41, 198, 234, 151, 130, 120, 76, 211, 112, 252, 58, 115, 236, 85, 193, 89, 169, 115, 149, + 68, 210, 167, 244, 23, 27, 221, 98, 176, 212, 182, 85, 110, 34, 27, 39, 93, 229, 218, 88, 189, 43, 74, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 624, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0704019d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "008408e96615940302" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce1d65" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf440704019d49008408e9661594030243ce1d65a0ff", + "cborBytes": [191, 68, 7, 4, 1, 157, 73, 0, 132, 8, 233, 102, 21, 148, 3, 2, 67, 206, 29, 101, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 625, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3389588811811016510" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3852825819302327449" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3433857075608887218" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6621848699028792674" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "908eeb2d4955" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8602392501796920710" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3750" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12360903768594113279" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14721919306878393401" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14296538927589899406" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d9c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16301373329158956763" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae69966f81b4cec69b" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7355188279235418423" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10860068891311296187" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14604782745660566604" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2b" + }, + { + "_tag": "ByteArray", + "bytearray": "80e20e96c2c4ca3ae3ce6941" + }, + { + "_tag": "ByteArray", + "bytearray": "71a337" + }, + { + "_tag": "ByteArray", + "bytearray": "8fe1a152e6" + } + ] + } + } + ] + }, + "cborHex": "bf1b2f0a3d10c6a24f3e1b3577fcab64f7f4991b2fa782d121211fb2bf1b5be5884ec5fe656246908eeb2d49551b7761d6672816dd864237501bab8ac07c95d6e2ff1bcc4ec39c0a739c391bc6678268888a3c8e424d9c1be23a1cacab8be6db49ae69966f81b4cec69bff1b6612e0c53ff199371b96b6b71e16e14ebb1bcaae9c8718da2c4c9f412b4c80e20e96c2c4ca3ae3ce69414371a337458fe1a152e6ffff", + "cborBytes": [ + 191, 27, 47, 10, 61, 16, 198, 162, 79, 62, 27, 53, 119, 252, 171, 100, 247, 244, 153, 27, 47, 167, 130, 209, 33, + 33, 31, 178, 191, 27, 91, 229, 136, 78, 197, 254, 101, 98, 70, 144, 142, 235, 45, 73, 85, 27, 119, 97, 214, 103, + 40, 22, 221, 134, 66, 55, 80, 27, 171, 138, 192, 124, 149, 214, 226, 255, 27, 204, 78, 195, 156, 10, 115, 156, 57, + 27, 198, 103, 130, 104, 136, 138, 60, 142, 66, 77, 156, 27, 226, 58, 28, 172, 171, 139, 230, 219, 73, 174, 105, + 150, 111, 129, 180, 206, 198, 155, 255, 27, 102, 18, 224, 197, 63, 241, 153, 55, 27, 150, 182, 183, 30, 22, 225, + 78, 187, 27, 202, 174, 156, 135, 24, 218, 44, 76, 159, 65, 43, 76, 128, 226, 14, 150, 194, 196, 202, 58, 227, 206, + 105, 65, 67, 113, 163, 55, 69, 143, 225, 161, 82, 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 626, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "63656501016357315" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15187175183127955660" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16209668508119809995" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16039449437895632855" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5526622891690674104" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2542534332841284239" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7674932535ba8afdd89e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14536744416512024845" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a34cfb509f6df1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11093779341768455689" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12439598943308359215" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8080638011823658544" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12077878194046429469" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2834547434199322653" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15796883084705033424" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14728559240516520131" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17306005684004449533" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b00e227401ab969c3bf1bd2c3af5d2bf848cc1be0f44fa029513fcb1bde9792487a9ba7d71b4cb2823d1ac3c7b8ff1b2348e5813a3d528fbf4a7674932535ba8afdd89e1bc9bce40720d7a10d47a34cfb509f6df11b99f50588b2acf609ff1baca25554c438262fd8669f1b702431756d4496309f1ba79d3e39e492e91d1b275655df9272101d1bdb39cd7856386cd01bcc665a981048c8c31bf02b487a7bf9ecfdffffff", + "cborBytes": [ + 191, 27, 0, 226, 39, 64, 26, 185, 105, 195, 191, 27, 210, 195, 175, 93, 43, 248, 72, 204, 27, 224, 244, 79, 160, + 41, 81, 63, 203, 27, 222, 151, 146, 72, 122, 155, 167, 215, 27, 76, 178, 130, 61, 26, 195, 199, 184, 255, 27, 35, + 72, 229, 129, 58, 61, 82, 143, 191, 74, 118, 116, 147, 37, 53, 186, 138, 253, 216, 158, 27, 201, 188, 228, 7, 32, + 215, 161, 13, 71, 163, 76, 251, 80, 159, 109, 241, 27, 153, 245, 5, 136, 178, 172, 246, 9, 255, 27, 172, 162, 85, + 84, 196, 56, 38, 47, 216, 102, 159, 27, 112, 36, 49, 117, 109, 68, 150, 48, 159, 27, 167, 157, 62, 57, 228, 146, + 233, 29, 27, 39, 86, 85, 223, 146, 114, 16, 29, 27, 219, 57, 205, 120, 86, 56, 108, 208, 27, 204, 102, 90, 152, + 16, 72, 200, 195, 27, 240, 43, 72, 122, 123, 249, 236, 253, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 627, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00490606" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6e7533703ceaf9d20cee6" + } + } + ] + }, + "cborHex": "bf44004906064bc6e7533703ceaf9d20cee6ff", + "cborBytes": [191, 68, 0, 73, 6, 6, 75, 198, 231, 83, 55, 3, 206, 175, 157, 32, 206, 230, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 628, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "37e782710b72c646bf" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9850221627928926672" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15831506312620812843" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4182627996667398534" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40a8f8ec94598b6a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0ce4d57b9e7aea3f8e42" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5737211192996026722" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1890098235815397822" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c815ae" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14509390609552425924" + } + } + ] + } + } + ] + }, + "cborHex": "bf4937e782710b72c646bfbf1b88b30461c392d9d0411a1bdbb4cf1cc71e2a2b1b3a0bae00a0f6c986ff4840a8f8ec94598b6a9f4a0ce4d57b9e7aea3f8e421b4f9eab2ed7ec5962ff42ae631b1a3afa54d05e89be43c815ae9f1bc95bb5e2a5c2c3c4ffff", + "cborBytes": [ + 191, 73, 55, 231, 130, 113, 11, 114, 198, 70, 191, 191, 27, 136, 179, 4, 97, 195, 146, 217, 208, 65, 26, 27, 219, + 180, 207, 28, 199, 30, 42, 43, 27, 58, 11, 174, 0, 160, 246, 201, 134, 255, 72, 64, 168, 248, 236, 148, 89, 139, + 106, 159, 74, 12, 228, 213, 123, 158, 122, 234, 63, 142, 66, 27, 79, 158, 171, 46, 215, 236, 89, 98, 255, 66, 174, + 99, 27, 26, 58, 250, 84, 208, 94, 137, 190, 67, 200, 21, 174, 159, 27, 201, 91, 181, 226, 165, 194, 195, 196, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 629, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "61acb603" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4732464111913544551" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84d74c761d555b451e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6584524696089552240" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12360461309745625931" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17563201879067660570" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16851050637687804470" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84bac91a2b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10798094282022905675" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "78587cfc42ba" + }, + { + "_tag": "ByteArray", + "bytearray": "907bd0ad8c27c18651e888" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0481394c70cf7d026" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72f08c113e1d10dc59" + } + } + ] + }, + "cborHex": "bf4461acb603bf1b41ad17093ee42b674984d74c761d555b451e1b5b60ee53253465701bab892e129b58fb4b1bf3bd070e204d111a1be9daf54637805236ff4584bac91a2bd8669f1b95da8989eb26e74b9f4678587cfc42ba4b907bd0ad8c27c18651e888ffff49d0481394c70cf7d0264972f08c113e1d10dc59ff", + "cborBytes": [ + 191, 68, 97, 172, 182, 3, 191, 27, 65, 173, 23, 9, 62, 228, 43, 103, 73, 132, 215, 76, 118, 29, 85, 91, 69, 30, + 27, 91, 96, 238, 83, 37, 52, 101, 112, 27, 171, 137, 46, 18, 155, 88, 251, 75, 27, 243, 189, 7, 14, 32, 77, 17, + 26, 27, 233, 218, 245, 70, 55, 128, 82, 54, 255, 69, 132, 186, 201, 26, 43, 216, 102, 159, 27, 149, 218, 137, 137, + 235, 38, 231, 75, 159, 70, 120, 88, 124, 252, 66, 186, 75, 144, 123, 208, 173, 140, 39, 193, 134, 81, 232, 136, + 255, 255, 73, 208, 72, 19, 148, 199, 12, 247, 208, 38, 73, 114, 240, 140, 17, 62, 29, 16, 220, 89, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 630, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11368689436268133633" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b9dc5b2cef27f7d0180ff", + "cborBytes": [191, 27, 157, 197, 178, 206, 242, 127, 125, 1, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 631, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5088809801319041112" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21fe51fd01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7849718ea80f71f9281d3c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4117219992140000740" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13660252418506929073" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b0f3934a5f10a2fd2270" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d28a2c803" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4046640533547646507" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec7ec807f18229b10cb2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12000065156893748794" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b1a189d540458" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7320580132552212997" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4200d51b469f158d7925c8584521fe51fd01024b7849718ea80f71f9281d3c9f1b39234dc4d5a42de41bbd92f7331346b3b14ab0f3934a5f10a2fd2270ff458d28a2c8031b38288e200fcdfe2b4aec7ec807f18229b10cb2bf41411ba688cbae5e31ae3a478b1a189d5404581b6597ecd82e8e8205ffff", + "cborBytes": [ + 191, 66, 0, 213, 27, 70, 159, 21, 141, 121, 37, 200, 88, 69, 33, 254, 81, 253, 1, 2, 75, 120, 73, 113, 142, 168, + 15, 113, 249, 40, 29, 60, 159, 27, 57, 35, 77, 196, 213, 164, 45, 228, 27, 189, 146, 247, 51, 19, 70, 179, 177, + 74, 176, 243, 147, 74, 95, 16, 162, 253, 34, 112, 255, 69, 141, 40, 162, 200, 3, 27, 56, 40, 142, 32, 15, 205, + 254, 43, 74, 236, 126, 200, 7, 241, 130, 41, 177, 12, 178, 191, 65, 65, 27, 166, 136, 203, 174, 94, 49, 174, 58, + 71, 139, 26, 24, 157, 84, 4, 88, 27, 101, 151, 236, 216, 46, 142, 130, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 632, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10353869639109535976" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a894b9ef086741c8" + }, + { + "_tag": "ByteArray", + "bytearray": "a9e239" + } + ] + } + } + ] + }, + "cborHex": "bf1b8fb0559461d368e89f48a894b9ef086741c843a9e239ffff", + "cborBytes": [ + 191, 27, 143, 176, 85, 148, 97, 211, 104, 232, 159, 72, 168, 148, 185, 239, 8, 103, 65, 200, 67, 169, 226, 57, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 633, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16048267093361565975" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "927ff22d502bdffcfce18d34" + } + ] + } + } + ] + }, + "cborHex": "bf1bdeb6e5e4e0682117801bfffffffffffffff3d905059f4c927ff22d502bdffcfce18d34ffff", + "cborBytes": [ + 191, 27, 222, 182, 229, 228, 224, 104, 33, 23, 128, 27, 255, 255, 255, 255, 255, 255, 255, 243, 217, 5, 5, 159, + 76, 146, 127, 242, 45, 80, 43, 223, 252, 252, 225, 141, 52, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 634, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3ea7fb5eb7489" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d80e625edc62e8" + } + } + ] + }, + "cborHex": "bf47b3ea7fb5eb748947d80e625edc62e8ff", + "cborBytes": [191, 71, 179, 234, 127, 181, 235, 116, 137, 71, 216, 14, 98, 94, 220, 98, 232, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 635, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "483123420560965970" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11777342972298634144" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14579740652685815535" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cad763511d246e" + } + ] + } + } + ] + }, + "cborHex": "bf1b06b46630f9354152d8669f1ba3718708c5cda3a09f1bca55a4e078a8eeef47cad763511d246effffff", + "cborBytes": [ + 191, 27, 6, 180, 102, 48, 249, 53, 65, 82, 216, 102, 159, 27, 163, 113, 135, 8, 197, 205, 163, 160, 159, 27, 202, + 85, 164, 224, 120, 168, 238, 239, 71, 202, 215, 99, 81, 29, 36, 110, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 636, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "917831497936409534" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2156245103560039921" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "839059190620894901" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5110839211007935286" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c1cade0ed19e0978b56" + } + } + ] + }, + "cborHex": "bf1b0cbccae26e2a13bea01b1dec857f565f1df11b0ba4efe36a7c36b51b46ed592f1c4403364a5c1cade0ed19e0978b56ff", + "cborBytes": [ + 191, 27, 12, 188, 202, 226, 110, 42, 19, 190, 160, 27, 29, 236, 133, 127, 86, 95, 29, 241, 27, 11, 164, 239, 227, + 106, 124, 54, 181, 27, 70, 237, 89, 47, 28, 68, 3, 54, 74, 92, 28, 173, 224, 237, 25, 224, 151, 139, 86, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 637, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2517422965822748866" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + } + ] + }, + "cborHex": "bf1b22efaed97b4678c20eff", + "cborBytes": [191, 27, 34, 239, 174, 217, 123, 70, 120, 194, 14, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 638, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "26f1e50e3345cc2f18" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8f5d2dd1df42b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba1f3722" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1969236615420293504" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffbbf4926f1e50e3345cc2f1847b8f5d2dd1df42b44ba1f37221b1b542244acd1b180ff41dba0ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 251, 191, 73, 38, 241, 229, 14, 51, 69, 204, 47, 24, 71, 184, 245, + 210, 221, 29, 244, 43, 68, 186, 31, 55, 34, 27, 27, 84, 34, 68, 172, 209, 177, 128, 255, 65, 219, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 639, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3304408803951533529" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6936784184509459159" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10162948868278997871" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d4b2777cfc" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14351202438684306340" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8774680509934625480" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16346768879694664225" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10024932173673897877" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3747495038679517005" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12223007892598582928" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f2976e0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13334725568734321190" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9548885511077193720" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18165144119399955237" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3439157053021376623" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1284863111501659692" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9467b1e41a8a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1408602315282686170" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f43ed2e676bf96" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18312186386504161463" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "19dd" + } + ] + } + } + ] + }, + "cborHex": "bf1b2ddb9e4cb8345dd9d8669f1b60446876913bead780ff1b8d0a0c266c3a536f9f45d4b2777cfcff1bc729b695017f6ba4bf1b79c5ed6efc3262c81be2db63afeb9c52211b8b1fb6b295379f951b3401c6e1f208074d1ba9a0d8eb05226e90447f2976e01bb90e76411dba5a261b848474c7b8a167f8ff1bfc178e55629c3b259f1b2fba571e481e506f1b11d4c031420f3e2c469467b1e41a8a1b138c5c57b837a0da47f43ed2e676bf96ff1bfe21f47f145318b79f4219ddffff", + "cborBytes": [ + 191, 27, 45, 219, 158, 76, 184, 52, 93, 217, 216, 102, 159, 27, 96, 68, 104, 118, 145, 59, 234, 215, 128, 255, 27, + 141, 10, 12, 38, 108, 58, 83, 111, 159, 69, 212, 178, 119, 124, 252, 255, 27, 199, 41, 182, 149, 1, 127, 107, 164, + 191, 27, 121, 197, 237, 110, 252, 50, 98, 200, 27, 226, 219, 99, 175, 235, 156, 82, 33, 27, 139, 31, 182, 178, + 149, 55, 159, 149, 27, 52, 1, 198, 225, 242, 8, 7, 77, 27, 169, 160, 216, 235, 5, 34, 110, 144, 68, 127, 41, 118, + 224, 27, 185, 14, 118, 65, 29, 186, 90, 38, 27, 132, 132, 116, 199, 184, 161, 103, 248, 255, 27, 252, 23, 142, 85, + 98, 156, 59, 37, 159, 27, 47, 186, 87, 30, 72, 30, 80, 111, 27, 17, 212, 192, 49, 66, 15, 62, 44, 70, 148, 103, + 177, 228, 26, 138, 27, 19, 140, 92, 87, 184, 55, 160, 218, 71, 244, 62, 210, 230, 118, 191, 150, 255, 27, 254, 33, + 244, 127, 20, 83, 24, 183, 159, 66, 25, 221, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 640, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9597535403867074517" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dbbe94bb6d7a007db538" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14366167313487201083" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14300708874368902761" + } + }, + { + "_tag": "ByteArray", + "bytearray": "735349a0f0091f3aa489bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12532675602424637945" + } + } + ] + } + } + ] + }, + "cborHex": "bf131b85314b9992bb6fd5144adbbe94bb6d7a007db5384181d8669f1bc75ee10e703b833b9f1bc67652f3ed08e6694b735349a0f0091f3aa489bc1baded020f37b9a9f9ffffff", + "cborBytes": [ + 191, 19, 27, 133, 49, 75, 153, 146, 187, 111, 213, 20, 74, 219, 190, 148, 187, 109, 122, 0, 125, 181, 56, 65, 129, + 216, 102, 159, 27, 199, 94, 225, 14, 112, 59, 131, 59, 159, 27, 198, 118, 82, 243, 237, 8, 230, 105, 75, 115, 83, + 73, 160, 240, 9, 31, 58, 164, 137, 188, 27, 173, 237, 2, 15, 55, 185, 169, 249, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 641, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17969020326720683256" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b812c13ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1194193644930771258" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "199651" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "293585806210475537" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79dc3276db1df2c4c645aaf1" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94a3a9" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2608260798367784902" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e985f5b1a28bb4fe15" + }, + { + "_tag": "ByteArray", + "bytearray": "3b4485b39a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "164042081190834943" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bf95ec8c87ff5bcf8bf453b812c13ec1b1092a0caff20a93aff43199651bf1b041306bc3a45a6114c79dc3276db1df2c4c645aaf1ff4394a3a9a041f69f1b243267608049dfc649e985f5b1a28bb4fe15453b4485b39a1b0246cb67599872ffffff", + "cborBytes": [ + 191, 27, 249, 94, 200, 200, 127, 245, 188, 248, 191, 69, 59, 129, 44, 19, 236, 27, 16, 146, 160, 202, 255, 32, + 169, 58, 255, 67, 25, 150, 81, 191, 27, 4, 19, 6, 188, 58, 69, 166, 17, 76, 121, 220, 50, 118, 219, 29, 242, 196, + 198, 69, 170, 241, 255, 67, 148, 163, 169, 160, 65, 246, 159, 27, 36, 50, 103, 96, 128, 73, 223, 198, 73, 233, + 133, 245, 177, 162, 139, 180, 254, 21, 69, 59, 68, 133, 179, 154, 27, 2, 70, 203, 103, 89, 152, 114, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 642, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14681743760177576800" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17239438805139757259" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7282600363811747757" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b3c930bfbd" + }, + { + "_tag": "ByteArray", + "bytearray": "1ffd5e0862" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "098e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17970873294223739571" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e70c019b3fbb357" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3344967178090050337" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e47392d30edab245c8466f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b72678a498bb0cd3848b56ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e5c0f86" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3fc7f8fe538f9c772918be8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17503783107695850607" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bcbc00829a4b13b60d8669f1bef3eca413b7098cb9f1b6510fe722e2137ad45b3c930bfbd451ffd5e0862ffff42098e1bf9655e0c1dc28ab3486e70c019b3fbb3571b2e6bb5ed1365f3214be47392d30edab245c8466fbf4cb72678a498bb0cd3848b56ea444e5c0f864cf3fc7f8fe538f9c772918be81bf2e9edff57b1b46fffff", + "cborBytes": [ + 191, 27, 203, 192, 8, 41, 164, 177, 59, 96, 216, 102, 159, 27, 239, 62, 202, 65, 59, 112, 152, 203, 159, 27, 101, + 16, 254, 114, 46, 33, 55, 173, 69, 179, 201, 48, 191, 189, 69, 31, 253, 94, 8, 98, 255, 255, 66, 9, 142, 27, 249, + 101, 94, 12, 29, 194, 138, 179, 72, 110, 112, 192, 25, 179, 251, 179, 87, 27, 46, 107, 181, 237, 19, 101, 243, 33, + 75, 228, 115, 146, 211, 14, 218, 178, 69, 200, 70, 111, 191, 76, 183, 38, 120, 164, 152, 187, 12, 211, 132, 139, + 86, 234, 68, 78, 92, 15, 134, 76, 243, 252, 127, 143, 229, 56, 249, 199, 114, 145, 139, 232, 27, 242, 233, 237, + 255, 87, 177, 180, 111, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 643, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "52" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12068144194576664978" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ad479700bf42e1a6afd7c" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "99c6654af92786f410" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2370745308791638408" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8449992186745403008" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5249627813163820801" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8040238249803463762" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba2019160c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83b29a2d0d0cde" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb2dd4ada3ff14" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4add099ecdcb781761d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d59966a7bdec06ad01b77f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4103158695729687598" + } + } + } + ] + }, + "cborHex": "bf41521ba77aa93487ef49924b7ad479700bf42e1a6afd7ca041929f4999c6654af92786f4101b20e6944c2f7309881b7544671fb5c936801b48da6caeaea3e7011b6f94aa16d50b3c52ff45ba2019160c4783b29a2d0d0cde47cb2dd4ada3ff144a4add099ecdcb781761d64bd59966a7bdec06ad01b77f1b38f159182405ec2eff", + "cborBytes": [ + 191, 65, 82, 27, 167, 122, 169, 52, 135, 239, 73, 146, 75, 122, 212, 121, 112, 11, 244, 46, 26, 106, 253, 124, + 160, 65, 146, 159, 73, 153, 198, 101, 74, 249, 39, 134, 244, 16, 27, 32, 230, 148, 76, 47, 115, 9, 136, 27, 117, + 68, 103, 31, 181, 201, 54, 128, 27, 72, 218, 108, 174, 174, 163, 231, 1, 27, 111, 148, 170, 22, 213, 11, 60, 82, + 255, 69, 186, 32, 25, 22, 12, 71, 131, 178, 154, 45, 13, 12, 222, 71, 203, 45, 212, 173, 163, 255, 20, 74, 74, + 221, 9, 158, 205, 203, 120, 23, 97, 214, 75, 213, 153, 102, 167, 189, 236, 6, 173, 1, 183, 127, 27, 56, 241, 89, + 24, 36, 5, 236, 46, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 644, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ed33e5afb34b78b359d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15d3ccedcb1acaf30a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d0e23d510c37d7658" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ed5f38f02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5d085c8683f26e8278ca6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54d1eadffff6a9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e8ea2c52f5beb447b686865" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24d3b81c3a5b8555422101" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82ac79f1193ad608b03934c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9457d1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1989304336544698449" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e392b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14621956042606225187" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88832609" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "200e9cc8ac8441ee5c258d86" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f1667e9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1808668519132087835" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a2ed33e5afb34b78b359d4915d3ccedcb1acaf30a497d0e23d510c37d7658bf451ed5f38f024bf5d085c8683f26e8278ca6413e4754d1eadffff6a94c4e8ea2c52f5beb447b6868654b24d3b81c3a5b85554221014c82ac79f1193ad608b03934c1424b9e439457d11b1b9b6dc119e4105143e392b51bcaeb9f8ce0eba723ff44888326094c200e9cc8ac8441ee5c258d86448f1667e99f1b1919ae6f774cc61bffff", + "cborBytes": [ + 191, 74, 46, 211, 62, 90, 251, 52, 183, 139, 53, 157, 73, 21, 211, 204, 237, 203, 26, 202, 243, 10, 73, 125, 14, + 35, 213, 16, 195, 125, 118, 88, 191, 69, 30, 213, 243, 143, 2, 75, 245, 208, 133, 200, 104, 63, 38, 232, 39, 140, + 166, 65, 62, 71, 84, 209, 234, 223, 255, 246, 169, 76, 78, 142, 162, 197, 47, 91, 235, 68, 123, 104, 104, 101, 75, + 36, 211, 184, 28, 58, 91, 133, 85, 66, 33, 1, 76, 130, 172, 121, 241, 25, 58, 214, 8, 176, 57, 52, 193, 66, 75, + 158, 67, 148, 87, 209, 27, 27, 155, 109, 193, 25, 228, 16, 81, 67, 227, 146, 181, 27, 202, 235, 159, 140, 224, + 235, 167, 35, 255, 68, 136, 131, 38, 9, 76, 32, 14, 156, 200, 172, 132, 65, 238, 92, 37, 141, 134, 68, 143, 22, + 103, 233, 159, 27, 25, 25, 174, 111, 119, 76, 198, 27, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 645, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11392659998202186100" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "40" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b8880daa3a51b91c9a75f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "822615414e1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e949b57ed8a1" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15061414658302279237" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8868518780239505662" + } + } + } + ] + }, + "cborHex": "bf1b9e1adbe84fa4c974bf41404b0b8880daa3a51b91c9a75f46822615414e1b46e949b57ed8a1ff1bd104e4d53af7fe451b7b134ed7dc0e68feff", + "cborBytes": [ + 191, 27, 158, 26, 219, 232, 79, 164, 201, 116, 191, 65, 64, 75, 11, 136, 128, 218, 163, 165, 27, 145, 201, 167, + 95, 70, 130, 38, 21, 65, 78, 27, 70, 233, 73, 181, 126, 216, 161, 255, 27, 209, 4, 228, 213, 58, 247, 254, 69, 27, + 123, 19, 78, 215, 220, 14, 104, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 646, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11477267709225588204" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3e8d94d8d6" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "202ef7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "46454a2254e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7796213853463560649" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92072f62648d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33d8c7b707ba417243a5a5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d6fb84dd9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10124170924708439051" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f7d7ebdd91c4b21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16661904198823420624" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b25e18c7eb43d35d39dbfd0a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a95e8c19487c9a3204a2ef32" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b944446e9f701ec61b0597" + } + ] + } + } + ] + }, + "cborHex": "bf1b9f47722c2073d5ec9f453e8d94d8d6ff43202ef7bf4646454a2254e11b6c31b73190acc1c94692072f62648d4b33d8c7b707ba417243a5a5459d6fb84dd91b8c8047d0dc95a40b489f7d7ebdd91c4b211be73af9971c75a2d04cb25e18c7eb43d35d39dbfd0a41ccff4ca95e8c19487c9a3204a2ef329f4bb944446e9f701ec61b0597ffff", + "cborBytes": [ + 191, 27, 159, 71, 114, 44, 32, 115, 213, 236, 159, 69, 62, 141, 148, 216, 214, 255, 67, 32, 46, 247, 191, 70, 70, + 69, 74, 34, 84, 225, 27, 108, 49, 183, 49, 144, 172, 193, 201, 70, 146, 7, 47, 98, 100, 141, 75, 51, 216, 199, + 183, 7, 186, 65, 114, 67, 165, 165, 69, 157, 111, 184, 77, 217, 27, 140, 128, 71, 208, 220, 149, 164, 11, 72, 159, + 125, 126, 189, 217, 28, 75, 33, 27, 231, 58, 249, 151, 28, 117, 162, 208, 76, 178, 94, 24, 199, 235, 67, 211, 93, + 57, 219, 253, 10, 65, 204, 255, 76, 169, 94, 140, 25, 72, 124, 154, 50, 4, 162, 239, 50, 159, 75, 185, 68, 68, + 110, 159, 112, 30, 198, 27, 5, 151, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 647, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "856a05776b2fc40d6c19202d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f83" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dff20c53" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "41b1c0215069e2" + }, + { + "_tag": "ByteArray", + "bytearray": "278d9aad" + } + ] + } + } + ] + }, + "cborHex": "bf4c856a05776b2fc40d6c19202d429f8344dff20c539f4741b1c0215069e244278d9aadffff", + "cborBytes": [ + 191, 76, 133, 106, 5, 119, 107, 47, 196, 13, 108, 25, 32, 45, 66, 159, 131, 68, 223, 242, 12, 83, 159, 71, 65, + 177, 192, 33, 80, 105, 226, 68, 39, 141, 154, 173, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 648, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "056eda301de0359040b1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9088170299458997993" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15238634635513918345" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9b88fab4486b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06eedc2a80f8730db22b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5350ab4157ec415c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "800406f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54f54c42c564ef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e53c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06020256" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a056eda301de0359040b1bf1b7e1faabc75824ee9131bd37a817697c573890d47a9b88fab4486b91bfffffffffffffff5ff4a06eedc2a80f8730db22b07485350ab4157ec415c9f02ff44800406f94754f54c42c564ef42e53cd905079f1bfffffffffffffff844060202560affff", + "cborBytes": [ + 191, 74, 5, 110, 218, 48, 29, 224, 53, 144, 64, 177, 191, 27, 126, 31, 170, 188, 117, 130, 78, 233, 19, 27, 211, + 122, 129, 118, 151, 197, 115, 137, 13, 71, 169, 184, 143, 171, 68, 134, 185, 27, 255, 255, 255, 255, 255, 255, + 255, 245, 255, 74, 6, 238, 220, 42, 128, 248, 115, 13, 178, 43, 7, 72, 83, 80, 171, 65, 87, 236, 65, 92, 159, 2, + 255, 68, 128, 4, 6, 249, 71, 84, 245, 76, 66, 197, 100, 239, 66, 229, 60, 217, 5, 7, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 248, 68, 6, 2, 2, 86, 10, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 649, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "030304" + } + } + ] + }, + "cborHex": "bf0f43030304ff", + "cborBytes": [191, 15, 67, 3, 3, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 650, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11261183134450317884" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3679218819290619625" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11969446861662624139" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c489a4d48db597afda750a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13212839836018952488" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11579633410991151069" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ab7924379fce18" + } + ] + } + } + ] + }, + "cborHex": "bf1b9c47c2657f87fa3cd9050b9f1b330f3605d6bfdee91ba61c0480fb50998b4bc489a4d48db597afda750aff1bb75d6fd3840a4928d8669f1ba0b31f3c5b5f57dd9f47ab7924379fce18ffffff", + "cborBytes": [ + 191, 27, 156, 71, 194, 101, 127, 135, 250, 60, 217, 5, 11, 159, 27, 51, 15, 54, 5, 214, 191, 222, 233, 27, 166, + 28, 4, 128, 251, 80, 153, 139, 75, 196, 137, 164, 212, 141, 181, 151, 175, 218, 117, 10, 255, 27, 183, 93, 111, + 211, 132, 10, 73, 40, 216, 102, 159, 27, 160, 179, 31, 60, 91, 95, 87, 221, 159, 71, 171, 121, 36, 55, 159, 206, + 24, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 651, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00bb1a03" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1398235882564294463" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16967319906611403820" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17129189503913390159" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "520107fbf98a16067503fd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04ff0703f93896fa03" + } + ] + } + } + ] + }, + "cborHex": "bf4400bb1a03d8669f1b136788208473173f9f1beb78078eeffc9c2c1bedb71b19771b704fffff4b520107fbf98a16067503fd9f4904ff0703f93896fa03ffff", + "cborBytes": [ + 191, 68, 0, 187, 26, 3, 216, 102, 159, 27, 19, 103, 136, 32, 132, 115, 23, 63, 159, 27, 235, 120, 7, 142, 239, + 252, 156, 44, 27, 237, 183, 27, 25, 119, 27, 112, 79, 255, 255, 75, 82, 1, 7, 251, 249, 138, 22, 6, 117, 3, 253, + 159, 73, 4, 255, 7, 3, 249, 56, 150, 250, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 652, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1886597062193099575" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce8a51ab97475174a70474c5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5570738536079646367" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8de311833a25d76fbe641c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14570315614282481574" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e20420b93" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17841351458138046223" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17843713396668197888" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4171985987116642611" + } + } + } + ] + }, + "cborHex": "bf1b1a2e8a084e50b3374cce8a51ab97475174a70474c51b4d4f3d2efb9b5e9f4b8de311833a25d76fbe641c1bca3428dab6a27fa6457e20420b931bf799369fa7373f0fa01bf7a19acb52496c001b39e5df26b1feb133ff", + "cborBytes": [ + 191, 27, 26, 46, 138, 8, 78, 80, 179, 55, 76, 206, 138, 81, 171, 151, 71, 81, 116, 167, 4, 116, 197, 27, 77, 79, + 61, 46, 251, 155, 94, 159, 75, 141, 227, 17, 131, 58, 37, 215, 111, 190, 100, 28, 27, 202, 52, 40, 218, 182, 162, + 127, 166, 69, 126, 32, 66, 11, 147, 27, 247, 153, 54, 159, 167, 55, 63, 15, 160, 27, 247, 161, 154, 203, 82, 73, + 108, 0, 27, 57, 229, 223, 38, 177, 254, 177, 51, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 653, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4a818" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1aa6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12573448412391036544" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f975de40" + } + ] + } + } + ] + }, + "cborHex": "bf43e4a8189f421aa61bae7ddcb6ce44568044f975de40ffff", + "cborBytes": [ + 191, 67, 228, 168, 24, 159, 66, 26, 166, 27, 174, 125, 220, 182, 206, 68, 86, 128, 68, 249, 117, 222, 64, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 654, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01a86e4dd146" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13108256074617629303" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10594783289839740947" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11883664261545501803" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dd2d7d06417b76e4" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21de" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "873a8536f6e5199421" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62c350060adf2e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e98b2ed9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eab149dc2b481cd5bc240509" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bb3d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f92c" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4601a86e4dd146d8669f1bb5e9e1730870aa779f1b93083b44bf2468131ba4eb41aefb6ca46b48dd2d7d06417b76e4ffff4221de41d549873a8536f6e51994214762c350060adf2e44e98b2ed94ceab149dc2b481cd5bc24050941ee9f42bb3dff42f92c80ff", + "cborBytes": [ + 191, 70, 1, 168, 110, 77, 209, 70, 216, 102, 159, 27, 181, 233, 225, 115, 8, 112, 170, 119, 159, 27, 147, 8, 59, + 68, 191, 36, 104, 19, 27, 164, 235, 65, 174, 251, 108, 164, 107, 72, 221, 45, 125, 6, 65, 123, 118, 228, 255, 255, + 66, 33, 222, 65, 213, 73, 135, 58, 133, 54, 246, 229, 25, 148, 33, 71, 98, 195, 80, 6, 10, 223, 46, 68, 233, 139, + 46, 217, 76, 234, 177, 73, 220, 43, 72, 28, 213, 188, 36, 5, 9, 65, 238, 159, 66, 187, 61, 255, 66, 249, 44, 128, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 655, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a04b80705dbce41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e0603280e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51ee146b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac24" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee4c6ffffdff0622" + } + } + ] + }, + "cborHex": "bf480a04b80705dbce41456e0603280e4451ee146b0642ac2448ee4c6ffffdff0622ff", + "cborBytes": [ + 191, 72, 10, 4, 184, 7, 5, 219, 206, 65, 69, 110, 6, 3, 40, 14, 68, 81, 238, 20, 107, 6, 66, 172, 36, 72, 238, 76, + 111, 255, 253, 255, 6, 34, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 656, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4922160165892944316" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12405516499331634558" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1a3795cbd35182" + }, + { + "_tag": "ByteArray", + "bytearray": "a7" + }, + { + "_tag": "ByteArray", + "bytearray": "6d609fb329a9abd443464b" + }, + { + "_tag": "ByteArray", + "bytearray": "6b0e1528ffc5d4f776abac" + }, + { + "_tag": "ByteArray", + "bytearray": "d09b173d87b8c612663c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12581220487271810032" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5412753480063415514" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d7d081" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2618410645879344262" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b444f069797a071bc41011bac293f8765e8d57ed905049f471a3795cbd3518241a74b6d609fb329a9abd443464b4b6b0e1528ffc5d4f776abac4ad09b173d87b8c612663cff1bae99796000b403f0d8669f1b4b1df69cb3f074da9f43d7d0811b2456769c07bd4c86ffffff", + "cborBytes": [ + 191, 27, 68, 79, 6, 151, 151, 160, 113, 188, 65, 1, 27, 172, 41, 63, 135, 101, 232, 213, 126, 217, 5, 4, 159, 71, + 26, 55, 149, 203, 211, 81, 130, 65, 167, 75, 109, 96, 159, 179, 41, 169, 171, 212, 67, 70, 75, 75, 107, 14, 21, + 40, 255, 197, 212, 247, 118, 171, 172, 74, 208, 155, 23, 61, 135, 184, 198, 18, 102, 60, 255, 27, 174, 153, 121, + 96, 0, 180, 3, 240, 216, 102, 159, 27, 75, 29, 246, 156, 179, 240, 116, 218, 159, 67, 215, 208, 129, 27, 36, 86, + 118, 156, 7, 189, 76, 134, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 657, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3086c203448e48" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3414797168617209062" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5303810909863448509" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8884560289153270923" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13045325469237748910" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "311c82bfea67ac93f8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4290346334646483007" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9461585526659344351" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c54d31951958" + }, + { + "_tag": "ByteArray", + "bytearray": "6f7f3d26321733d2a28cd21f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6688c52960" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7106387891409070161" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76a42b76133e45156be3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dfd3289ad9" + }, + { + "_tag": "ByteArray", + "bytearray": "99a1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8755455889550811789" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5156834548926067561" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee5151440bcb" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "781f38fce30a" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf473086c203448e48bf1b2f63cbeeb7703ce61b499aebebf6408fbd1b7b4c4c82b485c48b1bb50a4e65ad45a4aeff49311c82bfea67ac93f89f1b3b8a5f429800b83f1b834e4de82881e7df46c54d319519584c6f7f3d26321733d2a28cd21fff456688c529601b629ef622cf9328514a76a42b76133e45156be39f45dfd3289ad94299a11b7981a0be3f47228d1b4790c1b33e33336946ee5151440bcbff46781f38fce30aa0ff", + "cborBytes": [ + 191, 71, 48, 134, 194, 3, 68, 142, 72, 191, 27, 47, 99, 203, 238, 183, 112, 60, 230, 27, 73, 154, 235, 235, 246, + 64, 143, 189, 27, 123, 76, 76, 130, 180, 133, 196, 139, 27, 181, 10, 78, 101, 173, 69, 164, 174, 255, 73, 49, 28, + 130, 191, 234, 103, 172, 147, 248, 159, 27, 59, 138, 95, 66, 152, 0, 184, 63, 27, 131, 78, 77, 232, 40, 129, 231, + 223, 70, 197, 77, 49, 149, 25, 88, 76, 111, 127, 61, 38, 50, 23, 51, 210, 162, 140, 210, 31, 255, 69, 102, 136, + 197, 41, 96, 27, 98, 158, 246, 34, 207, 147, 40, 81, 74, 118, 164, 43, 118, 19, 62, 69, 21, 107, 227, 159, 69, + 223, 211, 40, 154, 217, 66, 153, 161, 27, 121, 129, 160, 190, 63, 71, 34, 141, 27, 71, 144, 193, 179, 62, 51, 51, + 105, 70, 238, 81, 81, 68, 11, 203, 255, 70, 120, 31, 56, 252, 227, 10, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 658, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a932a9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15464946237030906534" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fcfa" + }, + { + "_tag": "ByteArray", + "bytearray": "dbf869da" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe73" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3429708538656490354" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06" + } + ] + } + } + ] + }, + "cborHex": "bf43a932a9d8669f1bd69e86aa70bdbaa69f42fcfa44dbf869daffff42fe73d8669f1b2f98c5be99be83729f084106ffffff", + "cborBytes": [ + 191, 67, 169, 50, 169, 216, 102, 159, 27, 214, 158, 134, 170, 112, 189, 186, 166, 159, 66, 252, 250, 68, 219, 248, + 105, 218, 255, 255, 66, 254, 115, 216, 102, 159, 27, 47, 152, 197, 190, 153, 190, 131, 114, 159, 8, 65, 6, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 659, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1453971472008191774" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e70857554c3aa2a3ca70" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4718467194336393482" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13005886760236354840" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5838417243732543910" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8867702845586385701" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eada308d05830a27f2e710" + }, + { + "_tag": "ByteArray", + "bytearray": "45328f" + }, + { + "_tag": "ByteArray", + "bytearray": "598ce3dfd98d9d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7132506525631898095" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10860127271417814695" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8556281786665902286" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14312622863768301119" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b142d8b59ae999f1e4ae70857554c3aa2a3ca701b417b5ce9eac1390a1bb47e3119acd80d181b5106398cc73189a6d8669f1b7b1068c144e5ab259f4beada308d05830a27f2e7104345328f47598ce3dfd98d9dffff1b62fbc0e53a71e1efd8669f1b96b6ec36c4641ea79f1b76be04f3ac5da0ce1bc6a0a6a9bf0b2e3fffffff", + "cborBytes": [ + 191, 27, 20, 45, 139, 89, 174, 153, 159, 30, 74, 231, 8, 87, 85, 76, 58, 162, 163, 202, 112, 27, 65, 123, 92, 233, + 234, 193, 57, 10, 27, 180, 126, 49, 25, 172, 216, 13, 24, 27, 81, 6, 57, 140, 199, 49, 137, 166, 216, 102, 159, + 27, 123, 16, 104, 193, 68, 229, 171, 37, 159, 75, 234, 218, 48, 141, 5, 131, 10, 39, 242, 231, 16, 67, 69, 50, + 143, 71, 89, 140, 227, 223, 217, 141, 157, 255, 255, 27, 98, 251, 192, 229, 58, 113, 225, 239, 216, 102, 159, 27, + 150, 182, 236, 54, 196, 100, 30, 167, 159, 27, 118, 190, 4, 243, 172, 93, 160, 206, 27, 198, 160, 166, 169, 191, + 11, 46, 63, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 660, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7605075473645668623" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7101431536512025604" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6158740367160335353" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9228591439616500638" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8331982877011772551" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6e942fb5ef" + }, + { + "_tag": "ByteArray", + "bytearray": "30a48a00621f94d67b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8416365303279361263" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "954462949d44" + }, + { + "_tag": "ByteArray", + "bytearray": "0dd6" + }, + { + "_tag": "ByteArray", + "bytearray": "229cd6da" + }, + { + "_tag": "ByteArray", + "bytearray": "14b9dc971dc1" + }, + { + "_tag": "ByteArray", + "bytearray": "e250" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10027254475259332002" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8041955948796988260" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2748926175136421076" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dc2465" + }, + { + "_tag": "ByteArray", + "bytearray": "677685d7" + }, + { + "_tag": "ByteArray", + "bytearray": "589aa5d8d7f4e68b3e48" + }, + { + "_tag": "ByteArray", + "bytearray": "3703eff30a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15183188221807775570" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc67" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16170485547602165294" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d210317b97c9c20a5159d31c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6821569298928500154" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1092dc8" + }, + { + "_tag": "ByteArray", + "bytearray": "d8e705d1" + }, + { + "_tag": "ByteArray", + "bytearray": "86ee777b" + } + ] + } + } + ] + }, + "cborHex": "bf1b698aa7d990af890fd8669f1b628d5a5b828e44049f1b55783dbbc8735bf91b80128b04e78d639effff1b73a126482aec84879f456e942fb5ef4930a48a00621f94d67bff1b74ccefa6c9e39cef9f46954462949d44420dd644229cd6da4614b9dc971dc142e250ff1b8b27f6d18e4745a2d8669f1b6f9ac453cb624b649f1b262625cab6c794d443dc246544677685d74a589aa5d8d7f4e68b3e48453703eff30affff1bd2b5853e66bf4f5242dc671be0691aee3e6a3e2e9f4cd210317b97c9c20a5159d31c1b5eab15229957fdba44c1092dc844d8e705d14486ee777bffff", + "cborBytes": [ + 191, 27, 105, 138, 167, 217, 144, 175, 137, 15, 216, 102, 159, 27, 98, 141, 90, 91, 130, 142, 68, 4, 159, 27, 85, + 120, 61, 187, 200, 115, 91, 249, 27, 128, 18, 139, 4, 231, 141, 99, 158, 255, 255, 27, 115, 161, 38, 72, 42, 236, + 132, 135, 159, 69, 110, 148, 47, 181, 239, 73, 48, 164, 138, 0, 98, 31, 148, 214, 123, 255, 27, 116, 204, 239, + 166, 201, 227, 156, 239, 159, 70, 149, 68, 98, 148, 157, 68, 66, 13, 214, 68, 34, 156, 214, 218, 70, 20, 185, 220, + 151, 29, 193, 66, 226, 80, 255, 27, 139, 39, 246, 209, 142, 71, 69, 162, 216, 102, 159, 27, 111, 154, 196, 83, + 203, 98, 75, 100, 159, 27, 38, 38, 37, 202, 182, 199, 148, 212, 67, 220, 36, 101, 68, 103, 118, 133, 215, 74, 88, + 154, 165, 216, 215, 244, 230, 139, 62, 72, 69, 55, 3, 239, 243, 10, 255, 255, 27, 210, 181, 133, 62, 102, 191, 79, + 82, 66, 220, 103, 27, 224, 105, 26, 238, 62, 106, 62, 46, 159, 76, 210, 16, 49, 123, 151, 201, 194, 10, 81, 89, + 211, 28, 27, 94, 171, 21, 34, 153, 87, 253, 186, 68, 193, 9, 45, 200, 68, 216, 231, 5, 209, 68, 134, 238, 119, + 123, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 661, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6898929291648140309" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60586c0aebb55c1f6e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66107ba7fd73f2" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11624633205239074685" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14756212769390912575" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2a3b2cbbc36464" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1daddd2ca13436177b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "857e65df0ca9b8" + } + } + ] + }, + "cborHex": "bf1b5fbdeba37f3984154960586c0aebb55c1f6e4766107ba7fd73f29f1ba152fe4f6a7c4f7d1bccc89954fda0e43f472a3b2cbbc36464ff4ab1daddd2ca13436177b347857e65df0ca9b8ff", + "cborBytes": [ + 191, 27, 95, 189, 235, 163, 127, 57, 132, 21, 73, 96, 88, 108, 10, 235, 181, 92, 31, 110, 71, 102, 16, 123, 167, + 253, 115, 242, 159, 27, 161, 82, 254, 79, 106, 124, 79, 125, 27, 204, 200, 153, 84, 253, 160, 228, 63, 71, 42, 59, + 44, 187, 195, 100, 100, 255, 74, 177, 218, 221, 210, 202, 19, 67, 97, 119, 179, 71, 133, 126, 101, 223, 12, 169, + 184, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 662, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6327407386290872187" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14195028007565230904" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25dcf5fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4854764003559807850" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3aecfe11b55f37b025efc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d26012277dbc00b62ddd" + } + } + ] + }, + "cborHex": "bf1b57cf777e690cdf7b1bc4fedec3afa583384425dcf5fb1b435f9623bc891b6a4bb3aecfe11b55f37b025efc4ad26012277dbc00b62dddff", + "cborBytes": [ + 191, 27, 87, 207, 119, 126, 105, 12, 223, 123, 27, 196, 254, 222, 195, 175, 165, 131, 56, 68, 37, 220, 245, 251, + 27, 67, 95, 150, 35, 188, 137, 27, 106, 75, 179, 174, 207, 225, 27, 85, 243, 123, 2, 94, 252, 74, 210, 96, 18, 39, + 125, 188, 0, 182, 45, 221, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 663, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4865677f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14920509039474010435" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f" + }, + { + "_tag": "ByteArray", + "bytearray": "d35feca7872b2e240ec47c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86bfac76" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2476600275369012706" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10664467107960205588" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f75da59b69" + }, + { + "_tag": "ByteArray", + "bytearray": "0c55ab25bd438ad64537c3" + }, + { + "_tag": "ByteArray", + "bytearray": "618af4b462df" + }, + { + "_tag": "ByteArray", + "bytearray": "2e90da7f6fbf7c136e" + } + ] + } + } + ] + }, + "cborHex": "bf444865677fd905069f418e1bcf104beb4dda6943415f4bd35feca7872b2e240ec47cff4486bfac76d8669f1b225ea6d430012de29f1b93ffcc54f8ce311445f75da59b694b0c55ab25bd438ad64537c346618af4b462df492e90da7f6fbf7c136effffff", + "cborBytes": [ + 191, 68, 72, 101, 103, 127, 217, 5, 6, 159, 65, 142, 27, 207, 16, 75, 235, 77, 218, 105, 67, 65, 95, 75, 211, 95, + 236, 167, 135, 43, 46, 36, 14, 196, 124, 255, 68, 134, 191, 172, 118, 216, 102, 159, 27, 34, 94, 166, 212, 48, 1, + 45, 226, 159, 27, 147, 255, 204, 84, 248, 206, 49, 20, 69, 247, 93, 165, 155, 105, 75, 12, 85, 171, 37, 189, 67, + 138, 214, 69, 55, 195, 70, 97, 138, 244, 180, 98, 223, 73, 46, 144, 218, 127, 111, 191, 124, 19, 110, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 664, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4721446915461061599" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15636752620770565672" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3aa52ad89ee39cf655eb5b" + } + } + ] + }, + "cborHex": "bf1b4185f2f44deb9bdfa01bd900e7a959b01e284b3aa52ad89ee39cf655eb5bff", + "cborBytes": [ + 191, 27, 65, 133, 242, 244, 77, 235, 155, 223, 160, 27, 217, 0, 231, 169, 89, 176, 30, 40, 75, 58, 165, 42, 216, + 158, 227, 156, 246, 85, 235, 91, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 665, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8824252343415817201" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17768163842763748617" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10215440377281476530" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "840347d334e611b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7931" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbaf1cb06ca27b05de" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b7a760ac0e1b543f11bf69532e00edf75091b8dc488e6400b77b241fa48840347d334e611b942793149fbaf1cb06ca27b05dea0ff", + "cborBytes": [ + 191, 27, 122, 118, 10, 192, 225, 181, 67, 241, 27, 246, 149, 50, 224, 14, 223, 117, 9, 27, 141, 196, 136, 230, 64, + 11, 119, 178, 65, 250, 72, 132, 3, 71, 211, 52, 230, 17, 185, 66, 121, 49, 73, 251, 175, 28, 176, 108, 162, 123, + 5, 222, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 666, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9640624301477419153" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b303e8cc2143c29347740f" + } + } + ] + }, + "cborHex": "bf1b85ca60b9568f58914bb303e8cc2143c29347740fff", + "cborBytes": [ + 191, 27, 133, 202, 96, 185, 86, 143, 88, 145, 75, 179, 3, 232, 204, 33, 67, 194, 147, 71, 116, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 667, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5369170385167429561" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd691221fc4180ebebe7a007" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5513839649667797323" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7505794229386972332" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1014546473325307309" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "995d0621dade1c5f6213fb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2692098254947909252" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5018161088209318580" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3583384604206358120" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10300741166676831779" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9087717343757209226" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "345445668901018628" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9666817422779601527" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c21046a34fa7ae9736868" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14178842457831138527" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "148e793a3da42d07f9" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17407454963424194265" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9995527734488839849" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12526127636176870460" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9f04e7fb839309" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13127245565606591333" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4a832004aa73afb94cdd691221fc4180ebebe7a0071b4c8517f2a2e9d14b801b6829f0158fc98cacbf1b0e1464a466ae25ad4b995d0621dade1c5f6213fb1b255c41197a9e7e841b45a416ec206772b41b31babd4fdb52de681b8ef39583f303ee231b7e1e0ec67dce0e8a1b04cb4501700adc041b86276f3aa155d2774b4c21046a34fa7ae97368681bc4c55e17b94064df49148e793a3da42d07f9ff1bf193b40f82826ed99f1b8ab73f8414c5b6a91badd5beb805869c3c479f04e7fb8393091bb62d584a714d7b65ffff", + "cborBytes": [ + 191, 27, 74, 131, 32, 4, 170, 115, 175, 185, 76, 221, 105, 18, 33, 252, 65, 128, 235, 235, 231, 160, 7, 27, 76, + 133, 23, 242, 162, 233, 209, 75, 128, 27, 104, 41, 240, 21, 143, 201, 140, 172, 191, 27, 14, 20, 100, 164, 102, + 174, 37, 173, 75, 153, 93, 6, 33, 218, 222, 28, 95, 98, 19, 251, 27, 37, 92, 65, 25, 122, 158, 126, 132, 27, 69, + 164, 22, 236, 32, 103, 114, 180, 27, 49, 186, 189, 79, 219, 82, 222, 104, 27, 142, 243, 149, 131, 243, 3, 238, 35, + 27, 126, 30, 14, 198, 125, 206, 14, 138, 27, 4, 203, 69, 1, 112, 10, 220, 4, 27, 134, 39, 111, 58, 161, 85, 210, + 119, 75, 76, 33, 4, 106, 52, 250, 122, 233, 115, 104, 104, 27, 196, 197, 94, 23, 185, 64, 100, 223, 73, 20, 142, + 121, 58, 61, 164, 45, 7, 249, 255, 27, 241, 147, 180, 15, 130, 130, 110, 217, 159, 27, 138, 183, 63, 132, 20, 197, + 182, 169, 27, 173, 213, 190, 184, 5, 134, 156, 60, 71, 159, 4, 231, 251, 131, 147, 9, 27, 182, 45, 88, 74, 113, + 77, 123, 101, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 668, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a12a1b57a4d16227b79b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15093375160271955568" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1795178745300010196" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16928237548555890017" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14242637489082367229" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4ecbf7c5399d491" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5675ac02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "407442579167357307" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14343444117709165128" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9141277576371287007" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4632755597568116473" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18305724801403877800" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14629697725441143532" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4aa12a1b57a4d16227b79b9f1bd17670bd79b6e6701b18e9c18ebdf044d41beaed2e5c5b1a6d6141011bc5a80355e96a7cfdff48e4ecbf7c5399d491445675ac0241efbf1b05a786ddf5a3a97b1bc70e266e23b892481b7edc5785ecdab3df1b404adaabac4006f91bfe0affb80fbc79a81bcb072091e04272ecffff", + "cborBytes": [ + 191, 74, 161, 42, 27, 87, 164, 209, 98, 39, 183, 155, 159, 27, 209, 118, 112, 189, 121, 182, 230, 112, 27, 24, + 233, 193, 142, 189, 240, 68, 212, 27, 234, 237, 46, 92, 91, 26, 109, 97, 65, 1, 27, 197, 168, 3, 85, 233, 106, + 124, 253, 255, 72, 228, 236, 191, 124, 83, 153, 212, 145, 68, 86, 117, 172, 2, 65, 239, 191, 27, 5, 167, 134, 221, + 245, 163, 169, 123, 27, 199, 14, 38, 110, 35, 184, 146, 72, 27, 126, 220, 87, 133, 236, 218, 179, 223, 27, 64, 74, + 218, 171, 172, 64, 6, 249, 27, 254, 10, 255, 184, 15, 188, 121, 168, 27, 203, 7, 32, 145, 224, 66, 114, 236, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 669, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4018256207510486163" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1796654595" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5106145113396504532" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11010294365058540616" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60f357aa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12254713195024058337" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11421601345636113274" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17447556551423324871" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "683ed2fa0293152b" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8161127918136656918" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8176664070738266955" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b70854282cdd2181bd6c0979" + }, + { + "_tag": "ByteArray", + "bytearray": "98c34622" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6129583360250285916" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3898379006950121997" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15825251897846503971" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2057842417249396579" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fada1d00cfe261434fb60a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2074002889114451512" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a25ee122" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13475666743020942694" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f366bdd7a7a5181" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15006064266683514578" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12278859708313626936" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18066031905301113741" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34a1911da387a1" + } + } + ] + }, + "cborHex": "bf1b37c3b6bb292bbc934517966545951b46dcabed579867d4bf1b98cc6c63d5cca4484460f357aa1baa117cb8fdb387e11b9e81ade8dcc39b7a1bf2222c3e0e2072c748683ed2fa0293152bff1b7142269a1f0f0416d8669f1b717958a6880dcb4b9f4cb70854282cdd2181bd6c09794498c346221b5510a79718dd0f5c1b3619d30d651a220dffff1bdb9e96c15c379a23bf1b1c8eecc68be1a7634c5fada1d00cfe261434fb60a71b1cc856a39cccfe3844a25ee1221bbb032f81714ef566484f366bdd7a7a51811bd0403ff1ec5a7ed21baa6745d938e3e938ff1bfab7704cc858ab8d4734a1911da387a1ff", + "cborBytes": [ + 191, 27, 55, 195, 182, 187, 41, 43, 188, 147, 69, 23, 150, 101, 69, 149, 27, 70, 220, 171, 237, 87, 152, 103, 212, + 191, 27, 152, 204, 108, 99, 213, 204, 164, 72, 68, 96, 243, 87, 170, 27, 170, 17, 124, 184, 253, 179, 135, 225, + 27, 158, 129, 173, 232, 220, 195, 155, 122, 27, 242, 34, 44, 62, 14, 32, 114, 199, 72, 104, 62, 210, 250, 2, 147, + 21, 43, 255, 27, 113, 66, 38, 154, 31, 15, 4, 22, 216, 102, 159, 27, 113, 121, 88, 166, 136, 13, 203, 75, 159, 76, + 183, 8, 84, 40, 44, 221, 33, 129, 189, 108, 9, 121, 68, 152, 195, 70, 34, 27, 85, 16, 167, 151, 24, 221, 15, 92, + 27, 54, 25, 211, 13, 101, 26, 34, 13, 255, 255, 27, 219, 158, 150, 193, 92, 55, 154, 35, 191, 27, 28, 142, 236, + 198, 139, 225, 167, 99, 76, 95, 173, 161, 208, 12, 254, 38, 20, 52, 251, 96, 167, 27, 28, 200, 86, 163, 156, 204, + 254, 56, 68, 162, 94, 225, 34, 27, 187, 3, 47, 129, 113, 78, 245, 102, 72, 79, 54, 107, 221, 122, 122, 81, 129, + 27, 208, 64, 63, 241, 236, 90, 126, 210, 27, 170, 103, 69, 217, 56, 227, 233, 56, 255, 27, 250, 183, 112, 76, 200, + 88, 171, 141, 71, 52, 161, 145, 29, 163, 135, 161, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 670, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2309229517021371630" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "999674690053957402" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8404768782165512138" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3753329276536752313" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9107124064702677567" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9646772917225971308" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17930998347577931626" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6c9e7536cf1e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1650467165510293098" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4228" + } + ] + } + } + ] + }, + "cborHex": "bf1b200c0802cae7dcee9f1b0ddf8ed5879d671aff1b74a3bcad50448fcad8669f1b341681174d0c08b99f414f1b7e630115d203c23f1b85e038db801cde6cffff1bf8d7b3fe9f7fb76a9f466c9e7536cf1e1b16e7a32479afd66a424228ffff", + "cborBytes": [ + 191, 27, 32, 12, 8, 2, 202, 231, 220, 238, 159, 27, 13, 223, 142, 213, 135, 157, 103, 26, 255, 27, 116, 163, 188, + 173, 80, 68, 143, 202, 216, 102, 159, 27, 52, 22, 129, 23, 77, 12, 8, 185, 159, 65, 79, 27, 126, 99, 1, 21, 210, + 3, 194, 63, 27, 133, 224, 56, 219, 128, 28, 222, 108, 255, 255, 27, 248, 215, 179, 254, 159, 127, 183, 106, 159, + 70, 108, 158, 117, 54, 207, 30, 27, 22, 231, 163, 36, 121, 175, 214, 106, 66, 66, 40, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 671, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "233d0cdb178ac2ded4c0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5215345336290609485" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14623775443514722821" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10025053924821640172" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17674134132360440309" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14304915805731259114" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "255a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d5d63b9c58246c16" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15611011333703730474" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3214289415617126949" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ef7d0403055e3b147" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4367411740117433577" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5afa47664cc259" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12379152916156318795" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a1beac4f3864" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13588565542950835474" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c4f18936ee307656ef8" + }, + { + "_tag": "ByteArray", + "bytearray": "ab8c1a3780e2b5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10752863401066102133" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67b4e339c50828efb6b8" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7ca240d8f0591f9ef2c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccbfaf8c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "332c3c296c122f54f69274" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8722af1956700cf9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1283084239404930280" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4a233d0cdb178ac2ded4c0d8669f1b4860a0f38697894d9f1bcaf2164929c68a051b8b20256dfb2123ec1bf547235a0ff369f51bc6854522767b82eaffff42255a9f48d5d63b9c58246c161bd8a57418ea02052a1b2c9b733187282225ff492ef7d0403055e3b1471b3c9c29d68d91fce9475afa47664cc259d8669f1babcb95fd5bbd044b9f46a1beac4f38641bbc94485db2b295124a2c4f18936ee307656ef847ab8c1a3780e2b51b9539d84acad7fd75ffff4a67b4e339c50828efb6b8804ab7ca240d8f0591f9ef2cbf44ccbfaf8c4b332c3c296c122f54f6927449e8722af1956700cf9c1b11ce6e5152a214e8ffff", + "cborBytes": [ + 191, 74, 35, 61, 12, 219, 23, 138, 194, 222, 212, 192, 216, 102, 159, 27, 72, 96, 160, 243, 134, 151, 137, 77, + 159, 27, 202, 242, 22, 73, 41, 198, 138, 5, 27, 139, 32, 37, 109, 251, 33, 35, 236, 27, 245, 71, 35, 90, 15, 243, + 105, 245, 27, 198, 133, 69, 34, 118, 123, 130, 234, 255, 255, 66, 37, 90, 159, 72, 213, 214, 59, 156, 88, 36, 108, + 22, 27, 216, 165, 116, 24, 234, 2, 5, 42, 27, 44, 155, 115, 49, 135, 40, 34, 37, 255, 73, 46, 247, 208, 64, 48, + 85, 227, 177, 71, 27, 60, 156, 41, 214, 141, 145, 252, 233, 71, 90, 250, 71, 102, 76, 194, 89, 216, 102, 159, 27, + 171, 203, 149, 253, 91, 189, 4, 75, 159, 70, 161, 190, 172, 79, 56, 100, 27, 188, 148, 72, 93, 178, 178, 149, 18, + 74, 44, 79, 24, 147, 110, 227, 7, 101, 110, 248, 71, 171, 140, 26, 55, 128, 226, 181, 27, 149, 57, 216, 74, 202, + 215, 253, 117, 255, 255, 74, 103, 180, 227, 57, 197, 8, 40, 239, 182, 184, 128, 74, 183, 202, 36, 13, 143, 5, 145, + 249, 239, 44, 191, 68, 204, 191, 175, 140, 75, 51, 44, 60, 41, 108, 18, 47, 84, 246, 146, 116, 73, 232, 114, 42, + 241, 149, 103, 0, 207, 156, 27, 17, 206, 110, 81, 82, 162, 20, 232, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 672, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41e30f75" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15051810565328847187" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9887832096582165511" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16772245450102157573" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6989271987171829917" + } + } + ] + } + } + ] + }, + "cborHex": "bf4441e30f758041fcd8669f1bd0e2c5f614e5c1539f1b8938a2e7637c64071be8c2fc5fab0031051b60fee1d771f7289dffffff", + "cborBytes": [ + 191, 68, 65, 227, 15, 117, 128, 65, 252, 216, 102, 159, 27, 208, 226, 197, 246, 20, 229, 193, 83, 159, 27, 137, + 56, 162, 231, 99, 124, 100, 7, 27, 232, 194, 252, 95, 171, 0, 49, 5, 27, 96, 254, 225, 215, 113, 247, 40, 157, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 673, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4898247449654811421" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16572409204977965666" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5631501665478558921" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ec28fffa99" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1010079549720769411" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17463348794796822841" + } + } + ] + } + } + ] + }, + "cborHex": "bf13d8669f1b43fa121a7aa35b1d9f0affff1be5fd065e17201a62d8669f1b4e271ced82dec4c99f45ec28fffa991b0e0485ffb3fe3383ffff1bfffffffffffffffc9f1bf25a47343e9c5139ffff", + "cborBytes": [ + 191, 19, 216, 102, 159, 27, 67, 250, 18, 26, 122, 163, 91, 29, 159, 10, 255, 255, 27, 229, 253, 6, 94, 23, 32, 26, + 98, 216, 102, 159, 27, 78, 39, 28, 237, 130, 222, 196, 201, 159, 69, 236, 40, 255, 250, 153, 27, 14, 4, 133, 255, + 179, 254, 51, 131, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 27, 242, 90, 71, 52, 62, 156, 81, + 57, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 674, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9663944556021574106" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0040153" + } + } + ] + }, + "cborHex": "bf1b861d3a5f36bc69da44b0040153ff", + "cborBytes": [191, 27, 134, 29, 58, 95, 54, 188, 105, 218, 68, 176, 4, 1, 83, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 675, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "165ce2f6cfb9992eaea03d57" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11163786792827818494" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7868743876980558306" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d2" + }, + { + "_tag": "ByteArray", + "bytearray": "7978b63bb8d39e12" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4730012937833284192" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "195b9ce5d422c3392c7398" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99520f81" + } + } + ] + }, + "cborHex": "bf4c165ce2f6cfb9992eaea03d57d8669f1b9aedbcf096b311fe9f1b6d3364dd9ff4c9e241d2487978b63bb8d39e121b41a461b4ce8e0260ffff4b195b9ce5d422c3392c73984499520f81ff", + "cborBytes": [ + 191, 76, 22, 92, 226, 246, 207, 185, 153, 46, 174, 160, 61, 87, 216, 102, 159, 27, 154, 237, 188, 240, 150, 179, + 17, 254, 159, 27, 109, 51, 100, 221, 159, 244, 201, 226, 65, 210, 72, 121, 120, 182, 59, 184, 211, 158, 18, 27, + 65, 164, 97, 180, 206, 142, 2, 96, 255, 255, 75, 25, 91, 156, 229, 212, 34, 195, 57, 44, 115, 152, 68, 153, 82, + 15, 129, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 676, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4877870473457241282" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12419227175563059856" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4990168790903494640" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2096950798446859137" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5622099590729616440" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7152e8827973968d34c61438" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73fdf2" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9970f9" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf0bbf1b43b1ad59fec90cc21bffffffffffffffec1bac59f550f85062900f1bffffffffffffffee1b4540a413870b17f0ff1b1d19dda41ce593819f1b4e05b5ca654ecc384c7152e8827973968d34c61438ff4373fdf280439970f980ff", + "cborBytes": [ + 191, 11, 191, 27, 67, 177, 173, 89, 254, 201, 12, 194, 27, 255, 255, 255, 255, 255, 255, 255, 236, 27, 172, 89, + 245, 80, 248, 80, 98, 144, 15, 27, 255, 255, 255, 255, 255, 255, 255, 238, 27, 69, 64, 164, 19, 135, 11, 23, 240, + 255, 27, 29, 25, 221, 164, 28, 229, 147, 129, 159, 27, 78, 5, 181, 202, 101, 78, 204, 56, 76, 113, 82, 232, 130, + 121, 115, 150, 141, 52, 198, 20, 56, 255, 67, 115, 253, 242, 128, 67, 153, 112, 249, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 677, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6933829758044761844" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b6039e96d8d4a6ef4a0ff", + "cborBytes": [191, 27, 96, 57, 233, 109, 141, 74, 110, 244, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 678, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7181479969673249873" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9286252803538609875" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11734008154783622233" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9ada80b" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8308918240908531889" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ae2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10530191594934679647" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12822179344164342460" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "744706532494832496" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2185144530424619027" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3b49e08" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4077868892250416836" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16597941994640027905" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02003c42eb40e4" + }, + { + "_tag": "ByteArray", + "bytearray": "c6661f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16997644953214933486" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17236262179766784672" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62e85fcc1331f33c" + } + } + ] + }, + "cborHex": "bf1b63a9bdfbb9f50451bf1b80df65b96164e6d341351ba2d7923f516a245944b9ada80bff1b734f351e191dd8b1420ae21b9222c176d8e2b85f41b01bb1f1882dbf444abcbf1b0a55baa54b4473701b1e53315f7ed8e01344e3b49e081b38978026eb33a6c4ff1be657bc4df10eb1019f4702003c42eb40e443c6661f1bebe3c4070e9659eeff1bef338121807fd2a04862e85fcc1331f33cff", + "cborBytes": [ + 191, 27, 99, 169, 189, 251, 185, 245, 4, 81, 191, 27, 128, 223, 101, 185, 97, 100, 230, 211, 65, 53, 27, 162, 215, + 146, 63, 81, 106, 36, 89, 68, 185, 173, 168, 11, 255, 27, 115, 79, 53, 30, 25, 29, 216, 177, 66, 10, 226, 27, 146, + 34, 193, 118, 216, 226, 184, 95, 65, 176, 27, 177, 241, 136, 45, 191, 68, 74, 188, 191, 27, 10, 85, 186, 165, 75, + 68, 115, 112, 27, 30, 83, 49, 95, 126, 216, 224, 19, 68, 227, 180, 158, 8, 27, 56, 151, 128, 38, 235, 51, 166, + 196, 255, 27, 230, 87, 188, 77, 241, 14, 177, 1, 159, 71, 2, 0, 60, 66, 235, 64, 228, 67, 198, 102, 31, 27, 235, + 227, 196, 7, 14, 150, 89, 238, 255, 27, 239, 51, 129, 33, 128, 127, 210, 160, 72, 98, 232, 95, 204, 19, 49, 243, + 60, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 679, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0604eed5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01a7f8a1f0b703" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6876780341952272945" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0706f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17708882752899913512" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63432a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "151019312804180583" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0612" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17059630670145527006" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "278980740941612423" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf12440604eed54701a7f8a1f0b7031b5f6f3b4948745a31430706f31bf5c29709bfa417284363432abf1b02188743cdeab2674206121becbffbb56d621cde081bfffffffffffffffc1b03df23817b000587ffff", + "cborBytes": [ + 191, 18, 68, 6, 4, 238, 213, 71, 1, 167, 248, 161, 240, 183, 3, 27, 95, 111, 59, 73, 72, 116, 90, 49, 67, 7, 6, + 243, 27, 245, 194, 151, 9, 191, 164, 23, 40, 67, 99, 67, 42, 191, 27, 2, 24, 135, 67, 205, 234, 178, 103, 66, 6, + 18, 27, 236, 191, 251, 181, 109, 98, 28, 222, 8, 27, 255, 255, 255, 255, 255, 255, 255, 252, 27, 3, 223, 35, 129, + 123, 0, 5, 135, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 680, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04f88551700e8e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17380681271340794886" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7391234210475248567" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b" + }, + { + "_tag": "ByteArray", + "bytearray": "63" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ad490bab9657636" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "290321383909089448" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9185780645157322658" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15770124304922229639" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17907166425708682237" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "33bfffe7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14222227382002162173" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb60ff" + }, + { + "_tag": "ByteArray", + "bytearray": "91" + } + ] + } + } + ] + }, + "cborHex": "bf4704f88551700e8e9f1bf13495878c8d84061b6692f05a9f178bb7414b4163ff481ad490bab9657636bf1b04076dc2ae99e0a81b7f7a72d41342bfa21bdadabc806aa4bb871bf88308fcea2adbfdff4433bfffe7d8669f1bc55f80738b1299fd9f43fb60ff4191ffffff", + "cborBytes": [ + 191, 71, 4, 248, 133, 81, 112, 14, 142, 159, 27, 241, 52, 149, 135, 140, 141, 132, 6, 27, 102, 146, 240, 90, 159, + 23, 139, 183, 65, 75, 65, 99, 255, 72, 26, 212, 144, 186, 185, 101, 118, 54, 191, 27, 4, 7, 109, 194, 174, 153, + 224, 168, 27, 127, 122, 114, 212, 19, 66, 191, 162, 27, 218, 218, 188, 128, 106, 164, 187, 135, 27, 248, 131, 8, + 252, 234, 42, 219, 253, 255, 68, 51, 191, 255, 231, 216, 102, 159, 27, 197, 95, 128, 115, 139, 18, 153, 253, 159, + 67, 251, 96, 255, 65, 145, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 681, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5517" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf44f252a578e27d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15443431292513074231" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdfc255d491c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "282dc833" + } + } + ] + }, + "cborHex": "bf41b142551748cf44f252a578e27dd8669f1bd65216f00f64bc3780ff46fdfc255d491c44282dc833ff", + "cborBytes": [ + 191, 65, 177, 66, 85, 23, 72, 207, 68, 242, 82, 165, 120, 226, 125, 216, 102, 159, 27, 214, 82, 22, 240, 15, 100, + 188, 55, 128, 255, 70, 253, 252, 37, 93, 73, 28, 68, 40, 45, 200, 51, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 682, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "335176009464058622" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4836130983264201667" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1db62fb6d7d9ecc6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2156520517314897711" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b24ee56a28c9e637ed7d783" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e89" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "491a22" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14735886862552819530" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af094020cabc9e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d2dc479c6fa96" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be1b9773982724e2d4034413" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f77b8165c" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9950160526110742547" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18203844782486593731" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12312706317623366192" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fcae4e9c0e" + }, + { + "_tag": "ByteArray", + "bytearray": "fbc7a0" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11600445993638400419" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8ff4c148313fc1a9482e86" + }, + { + "_tag": "ByteArray", + "bytearray": "dd9f886d227c37e9b7a8" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14289820650821921713" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "183683d77e64c5e297a090" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd4eb910" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21326841" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9493643037203401778" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4773892563093375425" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce29c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10204434651140361171" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b04a6c8ce055692fe801b431d6381a0b92bc3bf481db62fb6d7d9ecc61b1ded7ffc1965672f4c2b24ee56a28c9e637ed7d783422e8943491a221bcc80630704ce674a47af094020cabc9e477d2dc479c6fa964cbe1b9773982724e2d4034413451f77b8165cff1b8a161247c0f1d8139f1bfca10c61ae7620c31baadf85290da6123045fcae4e9c0e43fbc7a0ff1ba0fd102b5eeb91a39f4b8ff4c148313fc1a9482e864add9f886d227c37e9b7a8ff1bc64fa42bd4482bb1bf4b183683d77e64c5e297a09044bd4eb91044213268411b83c0320af8de8c32412b1b424045fe330f49c143ce29c11b8d9d6f3ff2e88bd3ffff", + "cborBytes": [ + 191, 27, 4, 166, 200, 206, 5, 86, 146, 254, 128, 27, 67, 29, 99, 129, 160, 185, 43, 195, 191, 72, 29, 182, 47, + 182, 215, 217, 236, 198, 27, 29, 237, 127, 252, 25, 101, 103, 47, 76, 43, 36, 238, 86, 162, 140, 158, 99, 126, + 215, 215, 131, 66, 46, 137, 67, 73, 26, 34, 27, 204, 128, 99, 7, 4, 206, 103, 74, 71, 175, 9, 64, 32, 202, 188, + 158, 71, 125, 45, 196, 121, 198, 250, 150, 76, 190, 27, 151, 115, 152, 39, 36, 226, 212, 3, 68, 19, 69, 31, 119, + 184, 22, 92, 255, 27, 138, 22, 18, 71, 192, 241, 216, 19, 159, 27, 252, 161, 12, 97, 174, 118, 32, 195, 27, 170, + 223, 133, 41, 13, 166, 18, 48, 69, 252, 174, 78, 156, 14, 67, 251, 199, 160, 255, 27, 160, 253, 16, 43, 94, 235, + 145, 163, 159, 75, 143, 244, 193, 72, 49, 63, 193, 169, 72, 46, 134, 74, 221, 159, 136, 109, 34, 124, 55, 233, + 183, 168, 255, 27, 198, 79, 164, 43, 212, 72, 43, 177, 191, 75, 24, 54, 131, 215, 126, 100, 197, 226, 151, 160, + 144, 68, 189, 78, 185, 16, 68, 33, 50, 104, 65, 27, 131, 192, 50, 10, 248, 222, 140, 50, 65, 43, 27, 66, 64, 69, + 254, 51, 15, 73, 193, 67, 206, 41, 193, 27, 141, 157, 111, 63, 242, 232, 139, 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 683, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9897242210748929437" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10971016825013361211" + } + }, + { + "_tag": "ByteArray", + "bytearray": "efcb" + }, + { + "_tag": "ByteArray", + "bytearray": "6d06" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16909199020491752291" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12861485704145391268" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c753e35d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d651cb47a0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13224097269562369283" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "03" + }, + { + "_tag": "ByteArray", + "bytearray": "87dbcf94316e030da5e2e2f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14940500072306383358" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13840321301186178324" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b895a115a53b1159d9f1b9840e1ace7c15a3b42efcb426d06ff1beaa98aeb9ccb4363d8669f1bb27d2d1ad759cea49f44c753e35dffff45d651cb47a0d8669f1bb7856e67037a65039f41034c87dbcf94316e030da5e2e2f91bcf5751a8588519fe1bc012b2e4ee796d14ffffff", + "cborBytes": [ + 191, 27, 137, 90, 17, 90, 83, 177, 21, 157, 159, 27, 152, 64, 225, 172, 231, 193, 90, 59, 66, 239, 203, 66, 109, + 6, 255, 27, 234, 169, 138, 235, 156, 203, 67, 99, 216, 102, 159, 27, 178, 125, 45, 26, 215, 89, 206, 164, 159, 68, + 199, 83, 227, 93, 255, 255, 69, 214, 81, 203, 71, 160, 216, 102, 159, 27, 183, 133, 110, 103, 3, 122, 101, 3, 159, + 65, 3, 76, 135, 219, 207, 148, 49, 110, 3, 13, 165, 226, 226, 249, 27, 207, 87, 81, 168, 88, 133, 25, 254, 27, + 192, 18, 178, 228, 238, 121, 109, 20, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 684, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c210039e713f7512954e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ac968127e0c0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6764964773122101413" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e450ea4f26c3cb63461e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2210527291046423451" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efa0722252" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3063963677157627486" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb1f0b762d1644d446d7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3415629815121086597" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c66" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13813167186880722062" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10603883834203443890" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fad8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5761783597586985667" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1235334774092073695" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5997284757350388549" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9476123139118214374" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10817192074534924357" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd958aee313fae06d8" + } + } + ] + } + } + ] + }, + "cborHex": "bf4ac210039e713f7512954e9f46ac968127e0c01b5de1fb9e6bf950a5ff4ae450ea4f26c3cb63461e1b1ead5edbfd20eb9b45efa0722252bf1b2a8562bb15ae165e4acb1f0b762d1644d446d71b2f66c13856868885427c661bbfb23a5f051b748e1b9328902a593412b2ff42fad8bf1b4ff5f7a79ed832c31b1124ca6e94720adf1b533aa2b63abc13451b8381f3c9d3002ce61b961e62e13dd3304549cd958aee313fae06d8ffff", + "cborBytes": [ + 191, 74, 194, 16, 3, 158, 113, 63, 117, 18, 149, 78, 159, 70, 172, 150, 129, 39, 224, 192, 27, 93, 225, 251, 158, + 107, 249, 80, 165, 255, 74, 228, 80, 234, 79, 38, 195, 203, 99, 70, 30, 27, 30, 173, 94, 219, 253, 32, 235, 155, + 69, 239, 160, 114, 34, 82, 191, 27, 42, 133, 98, 187, 21, 174, 22, 94, 74, 203, 31, 11, 118, 45, 22, 68, 212, 70, + 215, 27, 47, 102, 193, 56, 86, 134, 136, 133, 66, 124, 102, 27, 191, 178, 58, 95, 5, 27, 116, 142, 27, 147, 40, + 144, 42, 89, 52, 18, 178, 255, 66, 250, 216, 191, 27, 79, 245, 247, 167, 158, 216, 50, 195, 27, 17, 36, 202, 110, + 148, 114, 10, 223, 27, 83, 58, 162, 182, 58, 188, 19, 69, 27, 131, 129, 243, 201, 211, 0, 44, 230, 27, 150, 30, + 98, 225, 61, 211, 48, 69, 73, 205, 149, 138, 238, 49, 63, 174, 6, 216, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 685, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14898381970833328455" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17710032189156080421" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1bcec1af77ab9ac947d8669f1bf5c6ac71bb61bb2580ffff", + "cborBytes": [ + 191, 27, 206, 193, 175, 119, 171, 154, 201, 71, 216, 102, 159, 27, 245, 198, 172, 113, 187, 97, 187, 37, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 686, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6805793395460483932" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6380520701679988204" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17d655ae867cb0f9f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6119eb9baa214842cee6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "496b5442681fdfe0437511" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8efbce417e0ca32b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24b921e54f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92477a9f34db0b9430" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea131835a65ad538643a2b" + } + } + ] + } + } + ] + }, + "cborHex": "bf0bd8669f1bfffffffffffffff480ff1b5e730908d71f2b5cbf1b588c29c5d1a96dec4917d655ae867cb0f9f64a6119eb9baa214842cee64b496b5442681fdfe0437511488efbce417e0ca32b4524b921e54f4992477a9f34db0b94304bea131835a65ad538643a2bffff", + "cborBytes": [ + 191, 11, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 128, 255, 27, 94, 115, 9, 8, 215, 31, 43, 92, + 191, 27, 88, 140, 41, 197, 209, 169, 109, 236, 73, 23, 214, 85, 174, 134, 124, 176, 249, 246, 74, 97, 25, 235, + 155, 170, 33, 72, 66, 206, 230, 75, 73, 107, 84, 66, 104, 31, 223, 224, 67, 117, 17, 72, 142, 251, 206, 65, 126, + 12, 163, 43, 69, 36, 185, 33, 229, 79, 73, 146, 71, 122, 159, 52, 219, 11, 148, 48, 75, 234, 19, 24, 53, 166, 90, + 213, 56, 100, 58, 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 687, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32289b37675c20a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + }, + "cborHex": "bf4105804832289b37675c20a609ff", + "cborBytes": [191, 65, 5, 128, 72, 50, 40, 155, 55, 103, 92, 32, 166, 9, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 688, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b094c310195c0d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9709180531450606235" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17802214596283618431" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c6ea59c7462a8a1490d704" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10818208860582341395" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13976217613249556223" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba8a33404bd9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8644390443418045402" + } + }, + { + "_tag": "ByteArray", + "bytearray": "90e92f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17063876185274790780" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc627e0e347f873bbe" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9020179839269767824" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf47b094c310195c0dd8669f1b86bdf0407d40729b9f1bf70e2bdaeac2547f4bc6ea59c7462a8a1490d7041b9621ffa430fe6b131bc1f57fdebd4c2effffff46ba8a33404bd99f1b77f70b4eefb6cbda4390e92f1beccf10fb728d337cff49fc627e0e347f873bbed8669f1b7d2e1dc5d9d08a9080ffff", + "cborBytes": [ + 191, 71, 176, 148, 195, 16, 25, 92, 13, 216, 102, 159, 27, 134, 189, 240, 64, 125, 64, 114, 155, 159, 27, 247, 14, + 43, 218, 234, 194, 84, 127, 75, 198, 234, 89, 199, 70, 42, 138, 20, 144, 215, 4, 27, 150, 33, 255, 164, 48, 254, + 107, 19, 27, 193, 245, 127, 222, 189, 76, 46, 255, 255, 255, 70, 186, 138, 51, 64, 75, 217, 159, 27, 119, 247, 11, + 78, 239, 182, 203, 218, 67, 144, 233, 47, 27, 236, 207, 16, 251, 114, 141, 51, 124, 255, 73, 252, 98, 126, 14, 52, + 127, 135, 59, 190, 216, 102, 159, 27, 125, 46, 29, 197, 217, 208, 138, 144, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 689, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12557101414350490539" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4272837031797774964" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "17" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4573671416704085925" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07acb72ff317ef84dae9" + }, + { + "_tag": "ByteArray", + "bytearray": "1473b9e4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "666376930091198493" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bd571501" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11887474596715970903" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcbd23c9e892" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4420544083334746928" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2093385800371268264" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5704356719517123675" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d7bb452d2b4f0f8275384" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9876181928372142572" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45866567a5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "236104afdb57e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "517edcc3" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bae43c934baea8bab1b3b4c2aa45770da7441171bffffffffffffffec41c4d8669f1b3f78f1ebd0012fa59f4a07acb72ff317ef84dae9441473b9e41b093f72498c99e81d44bd5715011ba4f8cb29c5bc4157ffff46dcbd23c9e892bf1b3d58ed6c391f53301b1d0d334b50f9eaa81b4f29f236a2ee445b4b1d7bb452d2b4f0f82753841b890f3f2339c101ec4545866567a547236104afdb57e844517edcc3ffff", + "cborBytes": [ + 191, 27, 174, 67, 201, 52, 186, 234, 139, 171, 27, 59, 76, 42, 164, 87, 112, 218, 116, 65, 23, 27, 255, 255, 255, + 255, 255, 255, 255, 236, 65, 196, 216, 102, 159, 27, 63, 120, 241, 235, 208, 1, 47, 165, 159, 74, 7, 172, 183, 47, + 243, 23, 239, 132, 218, 233, 68, 20, 115, 185, 228, 27, 9, 63, 114, 73, 140, 153, 232, 29, 68, 189, 87, 21, 1, 27, + 164, 248, 203, 41, 197, 188, 65, 87, 255, 255, 70, 220, 189, 35, 201, 232, 146, 191, 27, 61, 88, 237, 108, 57, 31, + 83, 48, 27, 29, 13, 51, 75, 80, 249, 234, 168, 27, 79, 41, 242, 54, 162, 238, 68, 91, 75, 29, 123, 180, 82, 210, + 180, 240, 248, 39, 83, 132, 27, 137, 15, 63, 35, 57, 193, 1, 236, 69, 69, 134, 101, 103, 165, 71, 35, 97, 4, 175, + 219, 87, 232, 68, 81, 126, 220, 195, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 690, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6627251904950569458" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8766391316244040259" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79c49da81c35" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11023412620931429263" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "84e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17147920030747349623" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11394393817727571904" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7898414002466276691" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16347343591872315949" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11761392253524563550" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11317230864982277855" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16003877484292453986" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15294086418459151920" + } + }, + { + "_tag": "ByteArray", + "bytearray": "33ae" + } + ] + } + } + ] + }, + "cborHex": "bf1b5bf8ba7eaf9c09f2bf1b79a87a74aecb8a434679c49da81c35ff1b98fb075fcb2cf38f9f4284e51bedf9a66a15805277ff1b9e2104cea08f17c0d8669f1b6d9ccdb009f9455380ff1be2dd6e6286cec22dd8669f1ba338dbf0a75cd65e9f1b9d0ee182ac5afedf1bde1931c7a01fb6621bd43f8290e8624e304233aeffffff", + "cborBytes": [ + 191, 27, 91, 248, 186, 126, 175, 156, 9, 242, 191, 27, 121, 168, 122, 116, 174, 203, 138, 67, 70, 121, 196, 157, + 168, 28, 53, 255, 27, 152, 251, 7, 95, 203, 44, 243, 143, 159, 66, 132, 229, 27, 237, 249, 166, 106, 21, 128, 82, + 119, 255, 27, 158, 33, 4, 206, 160, 143, 23, 192, 216, 102, 159, 27, 109, 156, 205, 176, 9, 249, 69, 83, 128, 255, + 27, 226, 221, 110, 98, 134, 206, 194, 45, 216, 102, 159, 27, 163, 56, 219, 240, 167, 92, 214, 94, 159, 27, 157, + 14, 225, 130, 172, 90, 254, 223, 27, 222, 25, 49, 199, 160, 31, 182, 98, 27, 212, 63, 130, 144, 232, 98, 78, 48, + 66, 51, 174, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 691, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1068057661917284373" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8158247349448021063" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c317dff0127f8d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3776425188248241555" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0ed280c8e236c81541951b7137eabd759f1447bf47c317dff0127f8d1b34688eb34a5fc593ffff", + "cborBytes": [ + 191, 27, 14, 210, 128, 200, 226, 54, 200, 21, 65, 149, 27, 113, 55, 234, 189, 117, 159, 20, 71, 191, 71, 195, 23, + 223, 240, 18, 127, 141, 27, 52, 104, 142, 179, 74, 95, 197, 147, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 692, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6872506461851855537" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec79a1c71c48" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f58980e3491" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "20b281b11007066db6e6f7db" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "727946882404873674" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0e519ad67ae0838b6d26528d" + }, + { + "_tag": "ByteArray", + "bytearray": "3f7e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b32102e3d7f0f5862d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17094320351242365560" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6c9bd5ef481217d45c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9138491081628554492" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d60241c84e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12092476435113057121" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3ce5bcdf56616a5b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10521378339410735197" + } + } + } + ] + }, + "cborHex": "bf1b5f600c370741aab146ec79a1c71c48467f58980e34919f4c20b281b11007066db6e6f7db1b0a1a2fd52d1875ca4c0e519ad67ae0838b6d26528d423f7eff49b32102e3d7f0f5862dd8669f1bed3b39ca34882a789f496c9bd5ef481217d45c1b7ed271388f8b94fc45d60241c84e1ba7d11b3fc1b21b61ffff49b3ce5bcdf56616a5b01b920371dae410f05dff", + "cborBytes": [ + 191, 27, 95, 96, 12, 55, 7, 65, 170, 177, 70, 236, 121, 161, 199, 28, 72, 70, 127, 88, 152, 14, 52, 145, 159, 76, + 32, 178, 129, 177, 16, 7, 6, 109, 182, 230, 247, 219, 27, 10, 26, 47, 213, 45, 24, 117, 202, 76, 14, 81, 154, 214, + 122, 224, 131, 139, 109, 38, 82, 141, 66, 63, 126, 255, 73, 179, 33, 2, 227, 215, 240, 245, 134, 45, 216, 102, + 159, 27, 237, 59, 57, 202, 52, 136, 42, 120, 159, 73, 108, 155, 213, 239, 72, 18, 23, 212, 92, 27, 126, 210, 113, + 56, 143, 139, 148, 252, 69, 214, 2, 65, 200, 78, 27, 167, 209, 27, 63, 193, 178, 27, 97, 255, 255, 73, 179, 206, + 91, 205, 245, 102, 22, 165, 176, 27, 146, 3, 113, 218, 228, 16, 240, 93, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 693, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0bbec7e72e592241" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0a3838a88efa0b262" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "535e76a748603cea34c4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11862147505677892249" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bafdda269e63fbaf2ec5fb86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3662280767375174244" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d9cdf6e450" + }, + { + "_tag": "ByteArray", + "bytearray": "6548ddde87a54a17bf8b60" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8aa17efee0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "061c1af6af5755b6ea70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00da10" + } + } + ] + } + } + ] + }, + "cborHex": "bf480bbec7e72e59224149c0a3838a88efa0b2624a535e76a748603cea34c4d8669f1ba49ed04edd377a999f4cbafdda269e63fbaf2ec5fb861b32d308f44f246a6445d9cdf6e4504b6548ddde87a54a17bf8b60ffff458aa17efee0bf4a061c1af6af5755b6ea704300da10ffff", + "cborBytes": [ + 191, 72, 11, 190, 199, 231, 46, 89, 34, 65, 73, 192, 163, 131, 138, 136, 239, 160, 178, 98, 74, 83, 94, 118, 167, + 72, 96, 60, 234, 52, 196, 216, 102, 159, 27, 164, 158, 208, 78, 221, 55, 122, 153, 159, 76, 186, 253, 218, 38, + 158, 99, 251, 175, 46, 197, 251, 134, 27, 50, 211, 8, 244, 79, 36, 106, 100, 69, 217, 205, 246, 228, 80, 75, 101, + 72, 221, 222, 135, 165, 74, 23, 191, 139, 96, 255, 255, 69, 138, 161, 126, 254, 224, 191, 74, 6, 28, 26, 246, 175, + 87, 85, 182, 234, 112, 67, 0, 218, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 694, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1133818379175912002" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2309557401955357705" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9966067902471592696" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11675643839915528318" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14573383774297656090" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12751698531917976321" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14446142563824929610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11641363196146312326" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8216942545976931304" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7817216881359742905" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18310997438880980852" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3198329551439520053" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0fbc21cf0296e242bf1b200d323873ec54091b8a4e95f46e3ddaf81ba20838365224907e1bca3f0f5462740b1a1bb0f72240ddd7530141501bc87b021f736f8b4a1ba18e6e25f79b6486ff1b720871b5d8bfb3e81b6c7c555611a267b91bfe1dbb27a3969f749f1b2c62bfc8142fe135ffff", + "cborBytes": [ + 191, 27, 15, 188, 33, 207, 2, 150, 226, 66, 191, 27, 32, 13, 50, 56, 115, 236, 84, 9, 27, 138, 78, 149, 244, 110, + 61, 218, 248, 27, 162, 8, 56, 54, 82, 36, 144, 126, 27, 202, 63, 15, 84, 98, 116, 11, 26, 27, 176, 247, 34, 64, + 221, 215, 83, 1, 65, 80, 27, 200, 123, 2, 31, 115, 111, 139, 74, 27, 161, 142, 110, 37, 247, 155, 100, 134, 255, + 27, 114, 8, 113, 181, 216, 191, 179, 232, 27, 108, 124, 85, 86, 17, 162, 103, 185, 27, 254, 29, 187, 39, 163, 150, + 159, 116, 159, 27, 44, 98, 191, 200, 20, 47, 225, 53, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 695, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6554377849098005887" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + } + ] + }, + "cborHex": "bf1b5af5d3ed5b2ced7f4106ff", + "cborBytes": [191, 27, 90, 245, 211, 237, 91, 44, 237, 127, 65, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 696, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14108103623360362885" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8fe0695" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14037540770429789618" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13727827226744294283" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17147796236579333594" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14534399812200146405" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0636c26922a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17318592940045502303" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45060027" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17475640433130849340" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bc3ca0d7f5ccbb985bf0144a8fe06951bc2cf5cf4e587e5b21bbe830a212c078b8b1bedf935d3021765da0e1bfffffffffffffff302ff1bc9b48f9f65b1a5e546a0636c26922a1bf05800856900075f44450600271bffffffffffffffef9f1bf285f2624f37c43cffff", + "cborBytes": [ + 191, 27, 195, 202, 13, 127, 92, 203, 185, 133, 191, 1, 68, 168, 254, 6, 149, 27, 194, 207, 92, 244, 229, 135, 229, + 178, 27, 190, 131, 10, 33, 44, 7, 139, 139, 27, 237, 249, 53, 211, 2, 23, 101, 218, 14, 27, 255, 255, 255, 255, + 255, 255, 255, 243, 2, 255, 27, 201, 180, 143, 159, 101, 177, 165, 229, 70, 160, 99, 108, 38, 146, 42, 27, 240, + 88, 0, 133, 105, 0, 7, 95, 68, 69, 6, 0, 39, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 27, 242, 133, 242, + 98, 79, 55, 196, 60, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 697, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "197368062861" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4271505309966036444" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2189df87d2fe861b830a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5210580007533699195" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10226214049155242653" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9543119633287184087" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11111597056468162479" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11357888462860112538" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15877732219828406633" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14092344273170822603" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37170447050db64f7d023b78" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16473525948479077814" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6388538316701931634" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cdcb4fa514c7731" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12260322836085570826" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c634" + }, + { + "_tag": "ByteArray", + "bytearray": "262a366e9a" + }, + { + "_tag": "ByteArray", + "bytearray": "326f1d" + }, + { + "_tag": "ByteArray", + "bytearray": "c91dbf972d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f018c3ad5e809ff30cc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "421382414034544833" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10379ed147" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "680396446146905458" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2585355235038529296" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14358644713459719916" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10030640135724763789" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fec68d01212e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12883238020170418899" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb1046742a6e8a7494" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17355733037929063970" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2713949111803726697" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72c5eb7c1e45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5b1a9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85637eea9190" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "377122268379632298" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13371837057788244816" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5453439148533169476" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13235829217037900742" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f884ffc0d66caffd25" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1433208010257837915" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10962245155983278544" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4a0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17379454715014795312" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14068519902350180932" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18053837919808751688" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1950369095755989772" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf46197368062861bf1b3b476f72b0b86ddc4a2189df87d2fe861b830a1b484fb2e8f6cc607b1b8deacf7f3501da9d1b846ff8beaf237ed71b9a3452a6ae0f97af1b9d9f53615b48d29a1bdc59095481a589691bc3921073b6db75cb4c37170447050db64f7d023b781be49db891d5467db61b58a8a5c048fd9872ff481cdcb4fa514c77319f1baa256aa9547d7d0a42c63445262a366e9a43326f1d45c91dbf972dff4a2f018c3ad5e809ff30ccbf1b05d90d12af2028c14510379ed1471b097140f67f06457241ed1b23e106e372ab07101bc744274aa1ce9eec1b8b33fe0f0fa68a8d46fec68d01212e1bb2ca74b895108ad349bb1046742a6e8a74941bf0dbf33e4e45e6221b25a9e2568b8c4b69ff4672c5eb7c1e4543a5b1a94685637eea9190d8669f1b053bceb47ba852aa9f1bb9924ef4ffdf73501b4bae820314873d441bb7af1c8be547dbc6414cffff49f884ffc0d66caffd25bf1b13e3c71784a9af5b41731b9821b7e38f2141d042c4a01bf13039fba671d0301bc33d6c501f1882441bfa8c1def4aad88481b1b111a5bed6f830cffff", + "cborBytes": [ + 191, 70, 25, 115, 104, 6, 40, 97, 191, 27, 59, 71, 111, 114, 176, 184, 109, 220, 74, 33, 137, 223, 135, 210, 254, + 134, 27, 131, 10, 27, 72, 79, 178, 232, 246, 204, 96, 123, 27, 141, 234, 207, 127, 53, 1, 218, 157, 27, 132, 111, + 248, 190, 175, 35, 126, 215, 27, 154, 52, 82, 166, 174, 15, 151, 175, 27, 157, 159, 83, 97, 91, 72, 210, 154, 27, + 220, 89, 9, 84, 129, 165, 137, 105, 27, 195, 146, 16, 115, 182, 219, 117, 203, 76, 55, 23, 4, 71, 5, 13, 182, 79, + 125, 2, 59, 120, 27, 228, 157, 184, 145, 213, 70, 125, 182, 27, 88, 168, 165, 192, 72, 253, 152, 114, 255, 72, 28, + 220, 180, 250, 81, 76, 119, 49, 159, 27, 170, 37, 106, 169, 84, 125, 125, 10, 66, 198, 52, 69, 38, 42, 54, 110, + 154, 67, 50, 111, 29, 69, 201, 29, 191, 151, 45, 255, 74, 47, 1, 140, 58, 213, 232, 9, 255, 48, 204, 191, 27, 5, + 217, 13, 18, 175, 32, 40, 193, 69, 16, 55, 158, 209, 71, 27, 9, 113, 64, 246, 127, 6, 69, 114, 65, 237, 27, 35, + 225, 6, 227, 114, 171, 7, 16, 27, 199, 68, 39, 74, 161, 206, 158, 236, 27, 139, 51, 254, 15, 15, 166, 138, 141, + 70, 254, 198, 141, 1, 33, 46, 27, 178, 202, 116, 184, 149, 16, 138, 211, 73, 187, 16, 70, 116, 42, 110, 138, 116, + 148, 27, 240, 219, 243, 62, 78, 69, 230, 34, 27, 37, 169, 226, 86, 139, 140, 75, 105, 255, 70, 114, 197, 235, 124, + 30, 69, 67, 165, 177, 169, 70, 133, 99, 126, 234, 145, 144, 216, 102, 159, 27, 5, 59, 206, 180, 123, 168, 82, 170, + 159, 27, 185, 146, 78, 244, 255, 223, 115, 80, 27, 75, 174, 130, 3, 20, 135, 61, 68, 27, 183, 175, 28, 139, 229, + 71, 219, 198, 65, 76, 255, 255, 73, 248, 132, 255, 192, 214, 108, 175, 253, 37, 191, 27, 19, 227, 199, 23, 132, + 169, 175, 91, 65, 115, 27, 152, 33, 183, 227, 143, 33, 65, 208, 66, 196, 160, 27, 241, 48, 57, 251, 166, 113, 208, + 48, 27, 195, 61, 108, 80, 31, 24, 130, 68, 27, 250, 140, 29, 239, 74, 173, 136, 72, 27, 27, 17, 26, 91, 237, 111, + 131, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 698, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3233203834966830726" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01e5c7" + } + } + ] + }, + "cborHex": "bf1b2cdea5c1f5a0ee864301e5c7ff", + "cborBytes": [191, 27, 44, 222, 165, 193, 245, 160, 238, 134, 67, 1, 229, 199, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 699, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41a542bea4e18cce5ed0470a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7835886106868720557" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5224e59f747967" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "968fea67e53c0ae9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16879637027433307453" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c08f37aa7c24" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16526241539286749530" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7440633734474279434" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8422df8605df7589" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "643748130084413535" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9da6c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1070280936901410581" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "199f2d2abd00e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16605528905442547265" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6996285166161572595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16862905194326044945" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7a880" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c41a542bea4e18cce5ed0470a1b6cbea8e5dc5423ad475224e59f747967410c48968fea67e53c0ae91bea408471bdb15d3d46c08f37aa7c24d8669f1be559011ec57dd15a9f1b674270f59720aa0a488422df8605df75891b08ef0d837a80e05fffff43f9da6cbf1b0eda66d76de17f1547199f2d2abd00e91be672b08f446256411b6117cc4a6c6532f31bea0512ee44e4b11143e7a880ffff", + "cborBytes": [ + 191, 76, 65, 165, 66, 190, 164, 225, 140, 206, 94, 208, 71, 10, 27, 108, 190, 168, 229, 220, 84, 35, 173, 71, 82, + 36, 229, 159, 116, 121, 103, 65, 12, 72, 150, 143, 234, 103, 229, 60, 10, 233, 27, 234, 64, 132, 113, 189, 177, + 93, 61, 70, 192, 143, 55, 170, 124, 36, 216, 102, 159, 27, 229, 89, 1, 30, 197, 125, 209, 90, 159, 27, 103, 66, + 112, 245, 151, 32, 170, 10, 72, 132, 34, 223, 134, 5, 223, 117, 137, 27, 8, 239, 13, 131, 122, 128, 224, 95, 255, + 255, 67, 249, 218, 108, 191, 27, 14, 218, 102, 215, 109, 225, 127, 21, 71, 25, 159, 45, 42, 189, 0, 233, 27, 230, + 114, 176, 143, 68, 98, 86, 65, 27, 97, 23, 204, 74, 108, 101, 50, 243, 27, 234, 5, 18, 238, 68, 228, 177, 17, 67, + 231, 168, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 700, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2297515904771067736" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11802139268355198846" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15314278025510895871" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16911049512528889081" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13226052657968135037" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0be8a8ef4b2b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13075716497529268094" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1fe26a8ae9b08f581ba3c99f2258000f7e1bd4873eb9c625c0ffd8669f1beab01deedd53c4f99f1bb78c60d15acd3b7d460be8a8ef4b2b1bb57646e05af2677effffff", + "cborBytes": [ + 191, 27, 31, 226, 106, 138, 233, 176, 143, 88, 27, 163, 201, 159, 34, 88, 0, 15, 126, 27, 212, 135, 62, 185, 198, + 37, 192, 255, 216, 102, 159, 27, 234, 176, 29, 238, 221, 83, 196, 249, 159, 27, 183, 140, 96, 209, 90, 205, 59, + 125, 70, 11, 232, 168, 239, 75, 43, 27, 181, 118, 70, 224, 90, 242, 103, 126, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 701, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03fa03" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3832018028086917495" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5857930754982731503" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2484147130749088422" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3493929549125940389" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15816909949125356517" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05fa0e03fe03051e04f81d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13128584041880171583" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "326e577c4b5e0d3f45f1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94c357a30357fefbfc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6f8fe" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a00ce6f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd0702" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4303fa039f1b352e1017f90379771b514b8cfc2994deef1b227976a7621af2a61b307cee69cde474a51bdb80f3cc11f56be5ff4b05fa0e03fe03051e04f81d1bb63219a0bc21343f4a326e577c4b5e0d3f45f14994c357a30357fefbfc43b6f8fea041c244a00ce6f943fd070280ff", + "cborBytes": [ + 191, 67, 3, 250, 3, 159, 27, 53, 46, 16, 23, 249, 3, 121, 119, 27, 81, 75, 140, 252, 41, 148, 222, 239, 27, 34, + 121, 118, 167, 98, 26, 242, 166, 27, 48, 124, 238, 105, 205, 228, 116, 165, 27, 219, 128, 243, 204, 17, 245, 107, + 229, 255, 75, 5, 250, 14, 3, 254, 3, 5, 30, 4, 248, 29, 27, 182, 50, 25, 160, 188, 33, 52, 63, 74, 50, 110, 87, + 124, 75, 94, 13, 63, 69, 241, 73, 148, 195, 87, 163, 3, 87, 254, 251, 252, 67, 182, 248, 254, 160, 65, 194, 68, + 160, 12, 230, 249, 67, 253, 7, 2, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 702, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "000700" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a89106" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0612ae5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a337aa1707" + } + } + ] + }, + "cborHex": "bf430007009f43a89106ff44b0612ae545a337aa1707ff", + "cborBytes": [191, 67, 0, 7, 0, 159, 67, 168, 145, 6, 255, 68, 176, 97, 42, 229, 69, 163, 55, 170, 23, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 703, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6161696993741974229" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6516385347353387061" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2084528223582094510" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5582bec50d952ad59f1b5a6ed9f2b88f20351b1cedbb6002e304aeff1bfffffffffffffff0d9050b9f10ffff", + "cborBytes": [ + 191, 27, 85, 130, 190, 197, 13, 149, 42, 213, 159, 27, 90, 110, 217, 242, 184, 143, 32, 53, 27, 28, 237, 187, 96, + 2, 227, 4, 174, 255, 27, 255, 255, 255, 255, 255, 255, 255, 240, 217, 5, 11, 159, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 704, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10302774369327465002" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7189729526515409872" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1267960499573134775" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17277400377382282136" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9025935182483403192" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b8efaceb3d4c3422a9f1b63c70ce95b16a3d0ff1bfffffffffffffff99f1b1198b35b3e4895b71befc5a81a881223981b7d42903a1d9fb1b8ffff", + "cborBytes": [ + 191, 27, 142, 250, 206, 179, 212, 195, 66, 42, 159, 27, 99, 199, 12, 233, 91, 22, 163, 208, 255, 27, 255, 255, + 255, 255, 255, 255, 255, 249, 159, 27, 17, 152, 179, 91, 62, 72, 149, 183, 27, 239, 197, 168, 26, 136, 18, 35, + 152, 27, 125, 66, 144, 58, 29, 159, 177, 184, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 705, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2522b68fabdec4f8b0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8911289062599863184" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12275084807873456675" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1db2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4862824117045562468" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "409e7dbe" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17741103493245679421" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9631339878832635039" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d859995ffa74" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d721a9f40b7dd3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e638455915a5c547ff3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "228177114277301902" + } + } + } + ] + }, + "cborHex": "bf492522b68fabdec4f8b09f1b7bab42303b16ab901baa59dc98b9176a23421db21b437c38c525b40c64ff44409e7dbed8669f1bf6350fa17659b73d9f1b85a964973cdf7c9fffff46d859995ffa749f47d721a9f40b7dd3ff4ae638455915a5c547ff3f1b032aa5e0625f4e8eff", + "cborBytes": [ + 191, 73, 37, 34, 182, 143, 171, 222, 196, 248, 176, 159, 27, 123, 171, 66, 48, 59, 22, 171, 144, 27, 170, 89, 220, + 152, 185, 23, 106, 35, 66, 29, 178, 27, 67, 124, 56, 197, 37, 180, 12, 100, 255, 68, 64, 158, 125, 190, 216, 102, + 159, 27, 246, 53, 15, 161, 118, 89, 183, 61, 159, 27, 133, 169, 100, 151, 60, 223, 124, 159, 255, 255, 70, 216, + 89, 153, 95, 250, 116, 159, 71, 215, 33, 169, 244, 11, 125, 211, 255, 74, 230, 56, 69, 89, 21, 165, 197, 71, 255, + 63, 27, 3, 42, 165, 224, 98, 95, 78, 142, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 706, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9fb060a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12644550700545321035" + } + } + ] + } + } + ] + }, + "cborHex": "bf44f9fb060a9f1baf7a77de526ba84bffff", + "cborBytes": [191, 68, 249, 251, 6, 10, 159, 27, 175, 122, 119, 222, 82, 107, 168, 75, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 707, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1327650307662951083" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9a9891236" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14445605376856924757" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c66c53" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15368258155282390391" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66cf87040914e10aa2" + } + } + ] + }, + "cborHex": "bf1b126cc2ebae3032ab45e9a98912361bc879198ddd07a25543c66c531bd547055e221b5d774966cf87040914e10aa2ff", + "cborBytes": [ + 191, 27, 18, 108, 194, 235, 174, 48, 50, 171, 69, 233, 169, 137, 18, 54, 27, 200, 121, 25, 141, 221, 7, 162, 85, + 67, 198, 108, 83, 27, 213, 71, 5, 94, 34, 27, 93, 119, 73, 102, 207, 135, 4, 9, 20, 225, 10, 162, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 708, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13538381406119326292" + } + } + } + ] + }, + "cborHex": "bf414c1bbbe1fe28d17ef254ff", + "cborBytes": [191, 65, 76, 27, 187, 225, 254, 40, 209, 126, 242, 84, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 709, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "583423335380320412" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8451979101016112942" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "084183c0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9363364311029490103" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f35a2afe0bd5c2910" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11547955920356437625" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16745926629136329499" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11714005347381475188" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4348800109842509476" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3939835577711363271" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12759516062108020966" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15366335825740932145" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11824794254395442123" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0dc791e5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e24d10de1a33" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6464215841590089490" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0818bc6eb304809cbf1b754b76363d173f2e44084183c01b81f15a3b4d7ba1b7490f35a2afe0bd5c29101ba04294b9d2b6ee791be8657b8ba46ceb1b1ba29081cccbb2f7741b3c5a0aa8b257aea4ff1b36ad1b9572ee84c71bb112e84173d6f0e61bd5403104e8a5a4311ba41a1bb9535203cb440dc791e59f46e24d10de1a331b59b5820f1d6e1712ffff", + "cborBytes": [ + 191, 27, 8, 24, 188, 110, 179, 4, 128, 156, 191, 27, 117, 75, 118, 54, 61, 23, 63, 46, 68, 8, 65, 131, 192, 27, + 129, 241, 90, 59, 77, 123, 161, 183, 73, 15, 53, 162, 175, 224, 189, 92, 41, 16, 27, 160, 66, 148, 185, 210, 182, + 238, 121, 27, 232, 101, 123, 139, 164, 108, 235, 27, 27, 162, 144, 129, 204, 203, 178, 247, 116, 27, 60, 90, 10, + 168, 178, 87, 174, 164, 255, 27, 54, 173, 27, 149, 114, 238, 132, 199, 27, 177, 18, 232, 65, 115, 214, 240, 230, + 27, 213, 64, 49, 4, 232, 165, 164, 49, 27, 164, 26, 27, 185, 83, 82, 3, 203, 68, 13, 199, 145, 229, 159, 70, 226, + 77, 16, 222, 26, 51, 27, 89, 181, 130, 15, 29, 110, 23, 18, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 710, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4779679809850259742" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10301340126399792279" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7555350316763151560" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13216312236128533891" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14645628454189072069" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7047403969312003700" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "70da2512" + } + ] + } + } + ] + }, + "cborHex": "bf1b4254d576963b391e1b8ef5b644208984971b68d9ff15484d7cc81bb769c5f4ab16fd831bcb3fb97bb44afec5d8669f1b61cd6892438516749f4470da2512ffffff", + "cborBytes": [ + 191, 27, 66, 84, 213, 118, 150, 59, 57, 30, 27, 142, 245, 182, 68, 32, 137, 132, 151, 27, 104, 217, 255, 21, 72, + 77, 124, 200, 27, 183, 105, 197, 244, 171, 22, 253, 131, 27, 203, 63, 185, 123, 180, 74, 254, 197, 216, 102, 159, + 27, 97, 205, 104, 146, 67, 133, 22, 116, 159, 68, 112, 218, 37, 18, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 711, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16e13eb1d4c72f11" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4088419944174847745" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5a38e5f697b1276889" + }, + { + "_tag": "ByteArray", + "bytearray": "6362b6c192fa9a88" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13110771698165600194" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12199700333847209980" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ca9de3fb8081df2907e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7963587557816817359" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "321b6f01270fde65" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18172317740755473154" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f0be2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6322485166983616645" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35180e00acc3d087" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14480480420890339738" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "652cb14e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3275" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4be61ae5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "062ff42225" + }, + { + "_tag": "ByteArray", + "bytearray": "df" + }, + { + "_tag": "ByteArray", + "bytearray": "27aadcfc9cdd0bb173" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1e54b0ba03769" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12247990167756009752" + } + } + ] + } + } + ] + }, + "cborHex": "bf4816e13eb1d4c72f119f1b38bcfc47212a0701495a38e5f697b1276889486362b6c192fa9a881bb5f2d1654867cfc21ba94e0ad11d2d67fcff4a1ca9de3fb8081df2907e1b6e8458b0e16456cf48321b6f01270fde65bf410c1bfc310ab443425302432f0be21b57bdfac2ebbc18854835180e00acc3d0871bc8f50038d02ae99a44652cb14e423275ff444be61ae59f45062ff4222541df4927aadcfc9cdd0bb173ff47a1e54b0ba037699f1ba9f99a2a3992f118ffff", + "cborBytes": [ + 191, 72, 22, 225, 62, 177, 212, 199, 47, 17, 159, 27, 56, 188, 252, 71, 33, 42, 7, 1, 73, 90, 56, 229, 246, 151, + 177, 39, 104, 137, 72, 99, 98, 182, 193, 146, 250, 154, 136, 27, 181, 242, 209, 101, 72, 103, 207, 194, 27, 169, + 78, 10, 209, 29, 45, 103, 252, 255, 74, 28, 169, 222, 63, 184, 8, 29, 242, 144, 126, 27, 110, 132, 88, 176, 225, + 100, 86, 207, 72, 50, 27, 111, 1, 39, 15, 222, 101, 191, 65, 12, 27, 252, 49, 10, 180, 67, 66, 83, 2, 67, 47, 11, + 226, 27, 87, 189, 250, 194, 235, 188, 24, 133, 72, 53, 24, 14, 0, 172, 195, 208, 135, 27, 200, 245, 0, 56, 208, + 42, 233, 154, 68, 101, 44, 177, 78, 66, 50, 117, 255, 68, 75, 230, 26, 229, 159, 69, 6, 47, 244, 34, 37, 65, 223, + 73, 39, 170, 220, 252, 156, 221, 11, 177, 115, 255, 71, 161, 229, 75, 11, 160, 55, 105, 159, 27, 169, 249, 154, + 42, 57, 146, 241, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 712, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "594702845952209048" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6b2de9e8c210e68e7ba78a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5614404566667886671" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13844592221191882365" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8296769837424199773" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5854593869547880722" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5aa9" + }, + { + "_tag": "ByteArray", + "bytearray": "67a4a69fd09620ec33af75" + }, + { + "_tag": "ByteArray", + "bytearray": "ee7402d93b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2942044331263638219" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15998197145336114278" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2b8ba5e1" + }, + { + "_tag": "ByteArray", + "bytearray": "4b9ed05ca08f" + } + ] + } + } + ] + }, + "cborHex": "bf001bfffffffffffffff21b0840cf1667e530989f4b6b2de9e8c210e68e7ba78aff1b4dea5f34fd92004f1bc021df45fc47467d1b73240c357ed8485d0b1bfffffffffffffffdd8669f1b513fb21afa94c1129f425aa94b67a4a69fd09620ec33af7545ee7402d93b1b28d43dbb4e6bbacbffff1bffffffffffffffffd8669f1bde05038aa66d6c669f442b8ba5e1464b9ed05ca08fffffff", + "cborBytes": [ + 191, 0, 27, 255, 255, 255, 255, 255, 255, 255, 242, 27, 8, 64, 207, 22, 103, 229, 48, 152, 159, 75, 107, 45, 233, + 232, 194, 16, 230, 142, 123, 167, 138, 255, 27, 77, 234, 95, 52, 253, 146, 0, 79, 27, 192, 33, 223, 69, 252, 71, + 70, 125, 27, 115, 36, 12, 53, 126, 216, 72, 93, 11, 27, 255, 255, 255, 255, 255, 255, 255, 253, 216, 102, 159, 27, + 81, 63, 178, 26, 250, 148, 193, 18, 159, 66, 90, 169, 75, 103, 164, 166, 159, 208, 150, 32, 236, 51, 175, 117, 69, + 238, 116, 2, 217, 59, 27, 40, 212, 61, 187, 78, 107, 186, 203, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, + 255, 216, 102, 159, 27, 222, 5, 3, 138, 166, 109, 108, 102, 159, 68, 43, 139, 165, 225, 70, 75, 158, 208, 92, 160, + 143, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 713, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8051342769609920664" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8151683755111909793" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13361114249667905604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10915679994450452380" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17172620789889838891" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16419893860509149862" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17362633312495948013" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "de10d6bb29ce" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18104117753902580898" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3748001393257850292" + } + } + } + ] + }, + "cborHex": "bf1b6fbc1d97538250981b7120992f90c489a11bb96c369eaedd88441b977c491f070e9f9c1bee51679fbbdf2f2b1be3df2e784543eaa61bf0f47701acaf50ed9f46de10d6bb29ceff1bfb3ebf2d6d34c4a21b34039368cecda5b4ff", + "cborBytes": [ + 191, 27, 111, 188, 29, 151, 83, 130, 80, 152, 27, 113, 32, 153, 47, 144, 196, 137, 161, 27, 185, 108, 54, 158, + 174, 221, 136, 68, 27, 151, 124, 73, 31, 7, 14, 159, 156, 27, 238, 81, 103, 159, 187, 223, 47, 43, 27, 227, 223, + 46, 120, 69, 67, 234, 166, 27, 240, 244, 119, 1, 172, 175, 80, 237, 159, 70, 222, 16, 214, 187, 41, 206, 255, 27, + 251, 62, 191, 45, 109, 52, 196, 162, 27, 52, 3, 147, 104, 206, 205, 165, 180, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 714, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6549054148846441624" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10755260071174982331" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14680200122845600804" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11667862051430544391" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cc1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22a2d0e855" + } + } + ] + }, + "cborHex": "bf1b5ae2ea0cccca5498801b95425c0d0953cabba01bcbba8c3b91db9c24d8669f1ba1ec92b77fc7340780ff421cc14522a2d0e855ff", + "cborBytes": [ + 191, 27, 90, 226, 234, 12, 204, 202, 84, 152, 128, 27, 149, 66, 92, 13, 9, 83, 202, 187, 160, 27, 203, 186, 140, + 59, 145, 219, 156, 36, 216, 102, 159, 27, 161, 236, 146, 183, 127, 199, 52, 7, 128, 255, 66, 28, 193, 69, 34, 162, + 208, 232, 85, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 715, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "337baf151627" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + }, + "cborHex": "bf46337baf15162712ff", + "cborBytes": [191, 70, 51, 123, 175, 21, 22, 39, 18, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 716, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16954430996453923099" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf3f3257239680ad6d8faae8" + }, + { + "_tag": "ByteArray", + "bytearray": "05ac2c0a" + }, + { + "_tag": "ByteArray", + "bytearray": "329a470b688fa6251b02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3040252710322769848" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "931712353652506532" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1956950552838672590" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6527914852289868084" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2241930098528466572" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e7f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2838517972805075762" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6778261178638592488" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1772009102598788711" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48b0ea24" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "944278233284889348" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcfc" + } + } + ] + }, + "cborHex": "bf0080019f1beb4a3d29b082191b4cbf3f3257239680ad6d8faae84405ac2c0a4a329a470b688fa6251b021b2a3125bb6a350fb8ff1b0cee1b73004cffa4bf1b1b287c28d0f410ce1b5a97cff8c6bbf1341b1f1cef8bde0bb68c421e7f1b2764710ea19bc332416c1b5e1138a11392e9e81b189770e3eb28d6671bfffffffffffffffd4448b0ea24ff1b0d1ac00cd8144b04d8669f1bfffffffffffffff480ff1bffffffffffffffff42fcfcff", + "cborBytes": [ + 191, 0, 128, 1, 159, 27, 235, 74, 61, 41, 176, 130, 25, 27, 76, 191, 63, 50, 87, 35, 150, 128, 173, 109, 143, 170, + 232, 68, 5, 172, 44, 10, 74, 50, 154, 71, 11, 104, 143, 166, 37, 27, 2, 27, 42, 49, 37, 187, 106, 53, 15, 184, + 255, 27, 12, 238, 27, 115, 0, 76, 255, 164, 191, 27, 27, 40, 124, 40, 208, 244, 16, 206, 27, 90, 151, 207, 248, + 198, 187, 241, 52, 27, 31, 28, 239, 139, 222, 11, 182, 140, 66, 30, 127, 27, 39, 100, 113, 14, 161, 155, 195, 50, + 65, 108, 27, 94, 17, 56, 161, 19, 146, 233, 232, 27, 24, 151, 112, 227, 235, 40, 214, 103, 27, 255, 255, 255, 255, + 255, 255, 255, 253, 68, 72, 176, 234, 36, 255, 27, 13, 26, 192, 12, 216, 20, 75, 4, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 244, 128, 255, 27, 255, 255, 255, 255, 255, 255, 255, 255, 66, 252, 252, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 717, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c323b050165ce3c44cd3c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b662cd9c3ba3a5d23c" + }, + { + "_tag": "ByteArray", + "bytearray": "29082290f9f3dc6b" + }, + { + "_tag": "ByteArray", + "bytearray": "a673ca0eba13" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ba0fe4f99" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f9dbb64c793b" + }, + { + "_tag": "ByteArray", + "bytearray": "b29168" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b1c323b050165ce3c44cd3cd8669f1bfffffffffffffffd9f49b662cd9c3ba3a5d23c4829082290f9f3dc6b46a673ca0eba13ffff459ba0fe4f999f46f9dbb64c793b43b291680cffff", + "cborBytes": [ + 191, 75, 28, 50, 59, 5, 1, 101, 206, 60, 68, 205, 60, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, + 159, 73, 182, 98, 205, 156, 59, 163, 165, 210, 60, 72, 41, 8, 34, 144, 249, 243, 220, 107, 70, 166, 115, 202, 14, + 186, 19, 255, 255, 69, 155, 160, 254, 79, 153, 159, 70, 249, 219, 182, 76, 121, 59, 67, 178, 145, 104, 12, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 718, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfd4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7779849786564899512" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17751982609778649227" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "767656331927540886" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2418913494200603932" + } + } + ] + } + } + ] + }, + "cborHex": "bf42cfd4d8669f1b6bf79429561972b89f1bf65bb6212ac4a88b1b0aa7435dde1ed4961b2191b501cc39d51cffffff", + "cborBytes": [ + 191, 66, 207, 212, 216, 102, 159, 27, 107, 247, 148, 41, 86, 25, 114, 184, 159, 27, 246, 91, 182, 33, 42, 196, + 168, 139, 27, 10, 167, 67, 93, 222, 30, 212, 150, 27, 33, 145, 181, 1, 204, 57, 213, 28, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 719, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ab5380f9a7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87468700fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e0503d1" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf462ab5380f9a7f4587468700fb445e0503d1a0ff", + "cborBytes": [191, 70, 42, 181, 56, 15, 154, 127, 69, 135, 70, 135, 0, 251, 68, 94, 5, 3, 209, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 720, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "355d28dc7036fbad" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac89e90f8d99d18803570ddc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0402" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10233153858489781645" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16625431758141093081" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17049096675703557461" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17087787287031083715" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf041bffffffffffffffec0648355d28dc7036fbad0fbf4cac89e90f8d99d18803570ddc420402ff1b8e0377377b338d8dd90509801be6b96619457f74d91bfffffffffffffff31bec9a8f18b89a8d55d8669f1bed240400a8ec72c380ffff", + "cborBytes": [ + 191, 4, 27, 255, 255, 255, 255, 255, 255, 255, 236, 6, 72, 53, 93, 40, 220, 112, 54, 251, 173, 15, 191, 76, 172, + 137, 233, 15, 141, 153, 209, 136, 3, 87, 13, 220, 66, 4, 2, 255, 27, 142, 3, 119, 55, 123, 51, 141, 141, 217, 5, + 9, 128, 27, 230, 185, 102, 25, 69, 127, 116, 217, 27, 255, 255, 255, 255, 255, 255, 255, 243, 27, 236, 154, 143, + 24, 184, 154, 141, 85, 216, 102, 159, 27, 237, 36, 4, 0, 168, 236, 114, 195, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 721, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8067336712721786371" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6689785205407476740" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15276154871944617314" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4618437897171126473" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1236bef6e706cbbd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1831201808567258762" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1097540769564856269" + } + }, + { + "_tag": "ByteArray", + "bytearray": "623c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3906961920970556380" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a23" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17418213671475949702" + } + } + } + ] + }, + "cborHex": "bf1b6ff4efff653fe603d8669f1b5cd6e43347f9ec049f1bd3ffcdeb641c9d621b4017fccc461648c9ffff481236bef6e706cbbdd8669f1b1969bc57bfb44e8a9f1b0f3b3f83d06c0fcd42623c1b3638512aca6d83dcffff427a231bf1b9ed0c6e2d3086ff", + "cborBytes": [ + 191, 27, 111, 244, 239, 255, 101, 63, 230, 3, 216, 102, 159, 27, 92, 214, 228, 51, 71, 249, 236, 4, 159, 27, 211, + 255, 205, 235, 100, 28, 157, 98, 27, 64, 23, 252, 204, 70, 22, 72, 201, 255, 255, 72, 18, 54, 190, 246, 231, 6, + 203, 189, 216, 102, 159, 27, 25, 105, 188, 87, 191, 180, 78, 138, 159, 27, 15, 59, 63, 131, 208, 108, 15, 205, 66, + 98, 60, 27, 54, 56, 81, 42, 202, 109, 131, 220, 255, 255, 66, 122, 35, 27, 241, 185, 237, 12, 110, 45, 48, 134, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 722, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "503a2cedef8efff126282e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d6f07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59a08d1a27dccc" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12766395687980031447" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a7a72d859" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8903137404814210433" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "195c53be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2cf191c17e56f6760a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d19a820d794651" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a413e6e497" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13639686138705046106" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f646ca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16238321627482466521" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b09c404b91bd88bde3608cde" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "43ecce14309001682421" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13533461937489760038" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65c3e7dc7106a24c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90212d11e4b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5255587295251760487" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e550812e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9389691997877158525" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6fd1ace0d84ee87ebc9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5124016724900186122" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04323314a1d8776f793a" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b503a2cedef8efff126282e436d6f074759a08d1a27dcccd8669f1bb12b593d2c20ddd780ff459a7a72d859bf1b7b8e4c4c8071b58144195c53be492cf191c17e56f6760a47d19a820d79465145a413e6e4971bbd49e646e9556a5a43f646ca1be15a1b7c62a2a8d9ff4cb09c404b91bd88bde3608cdebf4a43ecce143090016824211bbbd083edc558cf264865c3e7dc7106a24c4226db4690212d11e4b31b48ef98ccbb898567419244e550812e41f61b824ee31f93cbc27dff4ac6fd1ace0d84ee87ebc9bf1b471c2a1026d6080a4a04323314a1d8776f793affff", + "cborBytes": [ + 191, 75, 80, 58, 44, 237, 239, 142, 255, 241, 38, 40, 46, 67, 109, 111, 7, 71, 89, 160, 141, 26, 39, 220, 204, + 216, 102, 159, 27, 177, 43, 89, 61, 44, 32, 221, 215, 128, 255, 69, 154, 122, 114, 216, 89, 191, 27, 123, 142, 76, + 76, 128, 113, 181, 129, 68, 25, 92, 83, 190, 73, 44, 241, 145, 193, 126, 86, 246, 118, 10, 71, 209, 154, 130, 13, + 121, 70, 81, 69, 164, 19, 230, 228, 151, 27, 189, 73, 230, 70, 233, 85, 106, 90, 67, 246, 70, 202, 27, 225, 90, + 27, 124, 98, 162, 168, 217, 255, 76, 176, 156, 64, 75, 145, 189, 136, 189, 227, 96, 140, 222, 191, 74, 67, 236, + 206, 20, 48, 144, 1, 104, 36, 33, 27, 187, 208, 131, 237, 197, 88, 207, 38, 72, 101, 195, 231, 220, 113, 6, 162, + 76, 66, 38, 219, 70, 144, 33, 45, 17, 228, 179, 27, 72, 239, 152, 204, 187, 137, 133, 103, 65, 146, 68, 229, 80, + 129, 46, 65, 246, 27, 130, 78, 227, 31, 147, 203, 194, 125, 255, 74, 198, 253, 26, 206, 13, 132, 238, 135, 235, + 201, 191, 27, 71, 28, 42, 16, 38, 214, 8, 10, 74, 4, 50, 51, 20, 161, 216, 119, 111, 121, 58, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 723, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f27a1095d4abeb0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1eb6e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90d1cc18ab" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cd478bfbf4d0d788bec10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "467076691358641518" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91b6b1693712f4e436b6fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15028820313797108889" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2751c4e9c87cc330d7e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "070505" + }, + { + "_tag": "ByteArray", + "bytearray": "5c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15494063007116665496" + } + } + ] + } + } + ] + }, + "cborHex": "bf486f27a1095d4abeb0431eb6e54590d1cc18abbf4b7cd478bfbf4d0d788bec101b067b63c6af4bed6e4b91b6b1693712f4e436b6fd1bd0911873050d2499ff4aa2751c4e9c87cc330d7e9f43070505415c1bd705f836c2b5a298ffff", + "cborBytes": [ + 191, 72, 111, 39, 161, 9, 93, 74, 190, 176, 67, 30, 182, 229, 69, 144, 209, 204, 24, 171, 191, 75, 124, 212, 120, + 191, 191, 77, 13, 120, 139, 236, 16, 27, 6, 123, 99, 198, 175, 75, 237, 110, 75, 145, 182, 177, 105, 55, 18, 244, + 228, 54, 182, 253, 27, 208, 145, 24, 115, 5, 13, 36, 153, 255, 74, 162, 117, 28, 78, 156, 135, 204, 51, 13, 126, + 159, 67, 7, 5, 5, 65, 92, 27, 215, 5, 248, 54, 194, 181, 162, 152, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 724, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1291754861502602164" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14586435373663109840" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1862508788655163903" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3556833973172920981" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1963302455016028034" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8730905474210398874" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2103457061739982594" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9c4f824461bfb696" + }, + { + "_tag": "ByteArray", + "bytearray": "62a59b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8910407634699325106" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9137043572838134375" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13686338459222849791" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17760600554649973140" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4987347909436893742" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8200901307855786744" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b11ed3c33d8bf1bb41bca6d6db0aa61c2d01b19d8f5e012d589ff1b315c69a7580362951b1b3f0d2e49e1f782d8669f1b792a68453dd3029a9f1b1d30fb0d954c6f02489c4f824461bfb6964362a59b1b7ba82088ce2e8eb2ffff1b7ecd4cb8284872679f1bbdefa450b9beb8ffff1bf67a541ad1847194d8669f1b45369e7fe145ea2e9f1b71cf744a0cc7d2f8ffffff", + "cborBytes": [ + 191, 27, 17, 237, 60, 51, 216, 191, 27, 180, 27, 202, 109, 109, 176, 170, 97, 194, 208, 27, 25, 216, 245, 224, 18, + 213, 137, 255, 27, 49, 92, 105, 167, 88, 3, 98, 149, 27, 27, 63, 13, 46, 73, 225, 247, 130, 216, 102, 159, 27, + 121, 42, 104, 69, 61, 211, 2, 154, 159, 27, 29, 48, 251, 13, 149, 76, 111, 2, 72, 156, 79, 130, 68, 97, 191, 182, + 150, 67, 98, 165, 155, 27, 123, 168, 32, 136, 206, 46, 142, 178, 255, 255, 27, 126, 205, 76, 184, 40, 72, 114, + 103, 159, 27, 189, 239, 164, 80, 185, 190, 184, 255, 255, 27, 246, 122, 84, 26, 209, 132, 113, 148, 216, 102, 159, + 27, 69, 54, 158, 127, 225, 69, 234, 46, 159, 27, 113, 207, 116, 74, 12, 199, 210, 248, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 725, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "010606fc0306fb01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5038543011138306575" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "79fc1835c1dba00527759e62" + }, + { + "_tag": "ByteArray", + "bytearray": "672e190763e3f1bc0e0178" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6740716796886744108" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10598586979892367530" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13609072277643836870" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a107f6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17207330375759116107" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "224653602535441947" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f83773890347ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8781265229888265554" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b236959c365c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce9f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7753778020300576251" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8693694259993098231" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d78ba3f146df60d278" + }, + { + "_tag": "ByteArray", + "bytearray": "30bfffb55b" + }, + { + "_tag": "ByteArray", + "bytearray": "a17248b25e4ac4e31b44c2a3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9060cfd93" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + }, + "cborHex": "bf48010606fc0306fb0114412cd8669f1b45ec802c5c6d020f9f4c79fc1835c1dba00527759e624b672e190763e3f1bc0e01781b5d8bd63681f17c2c1b9315beb4599090aa1bbcdd2321ef93bdc6ffff43a107f69f1beeccb7cef3e9374b1bfffffffffffffffeff41c4d8669f1b031e2142e0a3061b9f47f83773890347ab1b79dd523391fa9d520046b236959c365c07ffff42ce9fd8669f1b6b9af407373f55fb9f1b78a634de48bdb7f749d78ba3f146df60d2784530bfffb55b4ca17248b25e4ac4e31b44c2a3ffff45f9060cfd9310ff", + "cborBytes": [ + 191, 72, 1, 6, 6, 252, 3, 6, 251, 1, 20, 65, 44, 216, 102, 159, 27, 69, 236, 128, 44, 92, 109, 2, 15, 159, 76, + 121, 252, 24, 53, 193, 219, 160, 5, 39, 117, 158, 98, 75, 103, 46, 25, 7, 99, 227, 241, 188, 14, 1, 120, 27, 93, + 139, 214, 54, 129, 241, 124, 44, 27, 147, 21, 190, 180, 89, 144, 144, 170, 27, 188, 221, 35, 33, 239, 147, 189, + 198, 255, 255, 67, 161, 7, 246, 159, 27, 238, 204, 183, 206, 243, 233, 55, 75, 27, 255, 255, 255, 255, 255, 255, + 255, 254, 255, 65, 196, 216, 102, 159, 27, 3, 30, 33, 66, 224, 163, 6, 27, 159, 71, 248, 55, 115, 137, 3, 71, 171, + 27, 121, 221, 82, 51, 145, 250, 157, 82, 0, 70, 178, 54, 149, 156, 54, 92, 7, 255, 255, 66, 206, 159, 216, 102, + 159, 27, 107, 154, 244, 7, 55, 63, 85, 251, 159, 27, 120, 166, 52, 222, 72, 189, 183, 247, 73, 215, 139, 163, 241, + 70, 223, 96, 210, 120, 69, 48, 191, 255, 181, 91, 76, 161, 114, 72, 178, 94, 74, 196, 227, 27, 68, 194, 163, 255, + 255, 69, 249, 6, 12, 253, 147, 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 726, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "323113257558689658" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17616573389970230433" + } + } + } + ] + }, + "cborHex": "bf1b047bedcbbb01477a1bf47aa4295cc64ca1ff", + "cborBytes": [191, 27, 4, 123, 237, 203, 187, 1, 71, 122, 27, 244, 122, 164, 41, 92, 198, 76, 161, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 727, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44f8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "973c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4851398525822302802" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "000707d1249cfa0106ce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25420e7e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6c8d9202d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14807726833608080893" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8183201085045586994" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "598c235ec99dc456f0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1465911438720963588" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2625510638676244659" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83df28796b115b9766" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6001308283433098721" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0cbf427f074244f842973c1b4353a141637dfa52ff1bfffffffffffffff541a64a000707d1249cfa0106ce4425420e7e45b6c8d9202dbf1bcd7f9d19b83abdfd1b71909207c7bbbc3249598c235ec99dc456f01b1457f6afd1251404416a1b246fb003ec4e78b34983df28796b115b97661b5348ee1665a39de1ffff", + "cborBytes": [ + 191, 12, 191, 66, 127, 7, 66, 68, 248, 66, 151, 60, 27, 67, 83, 161, 65, 99, 125, 250, 82, 255, 27, 255, 255, 255, + 255, 255, 255, 255, 245, 65, 166, 74, 0, 7, 7, 209, 36, 156, 250, 1, 6, 206, 68, 37, 66, 14, 126, 69, 182, 200, + 217, 32, 45, 191, 27, 205, 127, 157, 25, 184, 58, 189, 253, 27, 113, 144, 146, 7, 199, 187, 188, 50, 73, 89, 140, + 35, 94, 201, 157, 196, 86, 240, 27, 20, 87, 246, 175, 209, 37, 20, 4, 65, 106, 27, 36, 111, 176, 3, 236, 78, 120, + 179, 73, 131, 223, 40, 121, 107, 17, 91, 151, 102, 27, 83, 72, 238, 22, 101, 163, 157, 225, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 728, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2832462794357537797" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4c33b03e4920bbebfe" + }, + { + "_tag": "ByteArray", + "bytearray": "2e113240c02e4d" + }, + { + "_tag": "ByteArray", + "bytearray": "5a35ef5fad" + }, + { + "_tag": "ByteArray", + "bytearray": "ea" + } + ] + } + } + ] + }, + "cborHex": "bf0d8013d87e9f1bffffffffffffffedff1b274eede78930fc05d87c9f494c33b03e4920bbebfe472e113240c02e4d455a35ef5fad41eaffff", + "cborBytes": [ + 191, 13, 128, 19, 216, 126, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 255, 27, 39, 78, 237, 231, 137, 48, + 252, 5, 216, 124, 159, 73, 76, 51, 176, 62, 73, 32, 187, 235, 254, 71, 46, 17, 50, 64, 192, 46, 77, 69, 90, 53, + 239, 95, 173, 65, 234, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 729, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13dd19ddabedb6bc1f3ef85f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9583171518611035490" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28866b690e7de79dd4aea1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ba242074c6c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44f81cd35d52f70a739a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "399c635e" + }, + { + "_tag": "ByteArray", + "bytearray": "bc18" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5783122554761826475" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10006693123439746571" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75712a7d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b9beec" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11027039503559400311" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9223358338423951337" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18324884915187454489" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12961436665918881720" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecc3ad174d4be2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10985270641490674167" + } + } + } + ] + }, + "cborHex": "bf4c13dd19ddabedb6bc1f3ef85f1b84fe43b8ec7395624b28866b690e7de79dd4aea1467ba242074c6c4a44f81cd35d52f70a739a9f44399c635e42bc181b5041c752c120d0ab1b8adeea60c6f85e0bff4475712a7d9f43b9beec1b9907ea0135db9b771b7ffff38a95e58fe91bfe4f11bdafa992191bb3e045f99ad17fb8ff47ecc3ad174d4be21b987385722b9441f7ff", + "cborBytes": [ + 191, 76, 19, 221, 25, 221, 171, 237, 182, 188, 31, 62, 248, 95, 27, 132, 254, 67, 184, 236, 115, 149, 98, 75, 40, + 134, 107, 105, 14, 125, 231, 157, 212, 174, 161, 70, 123, 162, 66, 7, 76, 108, 74, 68, 248, 28, 211, 93, 82, 247, + 10, 115, 154, 159, 68, 57, 156, 99, 94, 66, 188, 24, 27, 80, 65, 199, 82, 193, 32, 208, 171, 27, 138, 222, 234, + 96, 198, 248, 94, 11, 255, 68, 117, 113, 42, 125, 159, 67, 185, 190, 236, 27, 153, 7, 234, 1, 53, 219, 155, 119, + 27, 127, 255, 243, 138, 149, 229, 143, 233, 27, 254, 79, 17, 189, 175, 169, 146, 25, 27, 179, 224, 69, 249, 154, + 209, 127, 184, 255, 71, 236, 195, 173, 23, 77, 75, 226, 27, 152, 115, 133, 114, 43, 148, 65, 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 730, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1253fe5aec857079995aec" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17951261454326514022" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10987273699856709577" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7207056375122422494" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9967685308087786696" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af0e2a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f9f96dc092b33b5b0e96c6a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3135490463531835713" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7321cb8e553066da3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "149919298315191716" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b1253fe5aec857079995aecd8669f1bf91fb12ecf4b41669f1b987aa33789f377c91b64049b96ab62eade1b8a5454fa0573dcc843af0e2affff4c9f9f96dc092b33b5b0e96c6a1b2b837ff6cb70a14149c7321cb8e553066da39f1b02149eceb90d85a4ffff", + "cborBytes": [ + 191, 75, 18, 83, 254, 90, 236, 133, 112, 121, 153, 90, 236, 216, 102, 159, 27, 249, 31, 177, 46, 207, 75, 65, 102, + 159, 27, 152, 122, 163, 55, 137, 243, 119, 201, 27, 100, 4, 155, 150, 171, 98, 234, 222, 27, 138, 84, 84, 250, 5, + 115, 220, 200, 67, 175, 14, 42, 255, 255, 76, 159, 159, 150, 220, 9, 43, 51, 181, 176, 233, 108, 106, 27, 43, 131, + 127, 246, 203, 112, 161, 65, 73, 199, 50, 28, 184, 229, 83, 6, 109, 163, 159, 27, 2, 20, 158, 206, 185, 13, 133, + 164, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 731, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7335294988847814733" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11751174284135296119" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3855398207937511383" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c65375d96c8de3cb17b8c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4524189145760490809" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "311314163675869158" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b65cc33eda4fa184d9f1ba3148ec04396ec771b3581203e4bcaffd74b5c65375d96c8de3cb17b8c1b3ec9260ed1bb65391b045202951b72afe6ffff", + "cborBytes": [ + 191, 27, 101, 204, 51, 237, 164, 250, 24, 77, 159, 27, 163, 20, 142, 192, 67, 150, 236, 119, 27, 53, 129, 32, 62, + 75, 202, 255, 215, 75, 92, 101, 55, 93, 150, 200, 222, 60, 177, 123, 140, 27, 62, 201, 38, 14, 209, 187, 101, 57, + 27, 4, 82, 2, 149, 27, 114, 175, 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 732, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "030001ff" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f9001b8a0605e632041a" + } + ] + } + } + ] + }, + "cborHex": "bf44030001ffd8669f1bfffffffffffffffd9f4af9001b8a0605e632041affffff", + "cborBytes": [ + 191, 68, 3, 0, 1, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 74, 249, 0, 27, 138, 6, 5, + 230, 50, 4, 26, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 733, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4052293158617649532" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5510852990407087372" + } + }, + { + "_tag": "ByteArray", + "bytearray": "add1295246" + }, + { + "_tag": "ByteArray", + "bytearray": "c5064cc737553e" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2738413779513793821" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00808ca0bd9c7c06138f" + } + ] + } + } + ] + }, + "cborHex": "bf029f1b383ca3286526917c1b4c7a7b98d69d150c45add129524647c5064cc737553eff1b2600ccd2dff45d1dd87a9f4a00808ca0bd9c7c06138fffff", + "cborBytes": [ + 191, 2, 159, 27, 56, 60, 163, 40, 101, 38, 145, 124, 27, 76, 122, 123, 152, 214, 157, 21, 12, 69, 173, 209, 41, + 82, 70, 71, 197, 6, 76, 199, 55, 85, 62, 255, 27, 38, 0, 204, 210, 223, 244, 93, 29, 216, 122, 159, 74, 0, 128, + 140, 160, 189, 156, 124, 6, 19, 143, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 734, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "064d0044" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6180757326989576151" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d7cf5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6327942180849226397" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9609617940379355172" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17855827647018528332" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "248483" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "641fe4b2a8a0c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fee63318d0b19c41342dbb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6783c8c3ce6e4ce88066024c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1981337377367126095" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d96bf8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4921923626558371535" + } + } + } + ] + }, + "cborHex": "bf44064d0044a04124bf1b55c6760ab61b47d7437d7cf51b57d15de2f8ba929d1b855c389a538848241bf7cca4a407236e4c43248483ff47641fe4b2a8a0c84bfee63318d0b19c41342dbb4c6783c8c3ce6e4ce88066024c1b1b7f1fd8de2bf04f43d96bf81b444e2f75fc9d36cfff", + "cborBytes": [ + 191, 68, 6, 77, 0, 68, 160, 65, 36, 191, 27, 85, 198, 118, 10, 182, 27, 71, 215, 67, 125, 124, 245, 27, 87, 209, + 93, 226, 248, 186, 146, 157, 27, 133, 92, 56, 154, 83, 136, 72, 36, 27, 247, 204, 164, 164, 7, 35, 110, 76, 67, + 36, 132, 131, 255, 71, 100, 31, 228, 178, 168, 160, 200, 75, 254, 230, 51, 24, 208, 177, 156, 65, 52, 45, 187, 76, + 103, 131, 200, 195, 206, 110, 76, 232, 128, 102, 2, 76, 27, 27, 127, 31, 216, 222, 43, 240, 79, 67, 217, 107, 248, + 27, 68, 78, 47, 117, 252, 157, 54, 207, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 735, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5583065017212700710" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11473788710138164915" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9375925fa54fffa9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17022541219756568395" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5f4a2780414cf96d4f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93f91b3a3a4a27d5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f4a76496b5a5d843c3bd6a7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8899537570739932305" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e08f5deab1f2a56cd415f" + }, + { + "_tag": "ByteArray", + "bytearray": "1820a0bfe98092" + } + ] + } + } + ] + }, + "cborHex": "bf1b4d7b080d84df88269f1b9f3b160a87ac36b3ff489375925fa54fffa9d8669f1bec3c370cd208ef4b9f495f4a2780414cf96d4fffff4893f91b3a3a4a27d59f4cf4a76496b5a5d843c3bd6a7b1b7b818244d1324c914b4e08f5deab1f2a56cd415f471820a0bfe98092ffff", + "cborBytes": [ + 191, 27, 77, 123, 8, 13, 132, 223, 136, 38, 159, 27, 159, 59, 22, 10, 135, 172, 54, 179, 255, 72, 147, 117, 146, + 95, 165, 79, 255, 169, 216, 102, 159, 27, 236, 60, 55, 12, 210, 8, 239, 75, 159, 73, 95, 74, 39, 128, 65, 76, 249, + 109, 79, 255, 255, 72, 147, 249, 27, 58, 58, 74, 39, 213, 159, 76, 244, 167, 100, 150, 181, 165, 216, 67, 195, + 189, 106, 123, 27, 123, 129, 130, 68, 209, 50, 76, 145, 75, 78, 8, 245, 222, 171, 31, 42, 86, 205, 65, 95, 71, 24, + 32, 160, 191, 233, 128, 146, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 736, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e50c4acd759" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14617269409673980380" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9089db99" + }, + { + "_tag": "ByteArray", + "bytearray": "590e1eb2a292c4bb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5729813915642511582" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df5d574adc80d6" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11070ecf46e5c81318ef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95e40f7e5c56f23b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b64600f724eb2708" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbc9fc783cc06d46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2675eed50" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee235fb435be89f2f8" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf460e50c4acd759d8669f1bcadaf9151dcd29dc9f449089db9948590e1eb2a292c4bb1b4f846365fef640de47df5d574adc80d6ffff4a11070ecf46e5c81318ef4895e40f7e5c56f23b48b64600f724eb2708410448dbc9fc783cc06d4645a2675eed5049ee235fb435be89f2f8a0ff", + "cborBytes": [ + 191, 70, 14, 80, 196, 172, 215, 89, 216, 102, 159, 27, 202, 218, 249, 21, 29, 205, 41, 220, 159, 68, 144, 137, + 219, 153, 72, 89, 14, 30, 178, 162, 146, 196, 187, 27, 79, 132, 99, 101, 254, 246, 64, 222, 71, 223, 93, 87, 74, + 220, 128, 214, 255, 255, 74, 17, 7, 14, 207, 70, 229, 200, 19, 24, 239, 72, 149, 228, 15, 126, 92, 86, 242, 59, + 72, 182, 70, 0, 247, 36, 235, 39, 8, 65, 4, 72, 219, 201, 252, 120, 60, 192, 109, 70, 69, 162, 103, 94, 237, 80, + 73, 238, 35, 95, 180, 53, 190, 137, 242, 248, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 737, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "faa6fd4a94f320db" + }, + { + "_tag": "ByteArray", + "bytearray": "58ce90e3fb34b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18103791586489504132" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bab2d8ca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d477f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3b12c15f6d2979e550ca43b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16961039779914325983" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18206342992701400499" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ae07c202" + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffe9f48faa6fd4a94f320db4758ce90e3fb34b71bfb3d9687a8699184ff44bab2d8ca43d477f94cf3b12c15f6d2979e550ca43bd87b9f09021beb61b7d0ff101fdf1bfca9ec7d92e3a5b344ae07c202ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 72, 250, 166, 253, 74, 148, 243, 32, 219, 71, 88, 206, 144, + 227, 251, 52, 183, 27, 251, 61, 150, 135, 168, 105, 145, 132, 255, 68, 186, 178, 216, 202, 67, 212, 119, 249, 76, + 243, 177, 44, 21, 246, 210, 151, 158, 85, 12, 164, 59, 216, 123, 159, 9, 2, 27, 235, 97, 183, 208, 255, 16, 31, + 223, 27, 252, 169, 236, 125, 146, 227, 165, 179, 68, 174, 7, 194, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 738, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1396472396882308471" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8178150039761337110" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7638972532913969428" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13559021659674575589" + } + } + } + ] + }, + "cborHex": "bf1b1361443f02ceed771b717ea021a7d23b161b6a03150bb14d99141bbc2b525c56bb02e5ff", + "cborBytes": [ + 191, 27, 19, 97, 68, 63, 2, 206, 237, 119, 27, 113, 126, 160, 33, 167, 210, 59, 22, 27, 106, 3, 21, 11, 177, 77, + 153, 20, 27, 188, 43, 82, 92, 86, 187, 2, 229, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 739, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4490982100873276629" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11933104847155811648" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4573358789664223323" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5751704194624469942" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3162472822636245403" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7061616363942983398" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3072095962020236026" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7221161511960168722" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17187067495078447741" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8170250863622528995" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "37f27e42282868a6" + }, + { + "_tag": "ByteArray", + "bytearray": "69ee701ab1a841e9" + }, + { + "_tag": "ByteArray", + "bytearray": "b590c414d49b00793d2a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11833078612572208680" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a481" + } + } + ] + }, + "cborHex": "bf1b3e532c6d2f306cd59f1ba59ae7a25a36d540ff1b3f77d596a858b05bbf1b4fd2287dbdb73bb61b2be35c46d50f719bff1b61ffe6ab40e836e61b2aa247003420cafa1b6436b822c21bc9121bee84bad366d04a7d1b71628fdf640c9fe39f4837f27e42282868a64869ee701ab1a841e94ab590c414d49b00793d2aff1ba4378a4dc5a37e2842a481ff", + "cborBytes": [ + 191, 27, 62, 83, 44, 109, 47, 48, 108, 213, 159, 27, 165, 154, 231, 162, 90, 54, 213, 64, 255, 27, 63, 119, 213, + 150, 168, 88, 176, 91, 191, 27, 79, 210, 40, 125, 189, 183, 59, 182, 27, 43, 227, 92, 70, 213, 15, 113, 155, 255, + 27, 97, 255, 230, 171, 64, 232, 54, 230, 27, 42, 162, 71, 0, 52, 32, 202, 250, 27, 100, 54, 184, 34, 194, 27, 201, + 18, 27, 238, 132, 186, 211, 102, 208, 74, 125, 27, 113, 98, 143, 223, 100, 12, 159, 227, 159, 72, 55, 242, 126, + 66, 40, 40, 104, 166, 72, 105, 238, 112, 26, 177, 168, 65, 233, 74, 181, 144, 196, 20, 212, 155, 0, 121, 61, 42, + 255, 27, 164, 55, 138, 77, 197, 163, 126, 40, 66, 164, 129, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 740, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7979734280980899366" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2993335461783598945" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dbbcf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11511783425093524293" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1739140970877843469" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16949889698320810929" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffb0e8f3a50f1ac01e8c" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8031695660587510406" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2408215811755278373" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8938291133929992175" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2949694628002518946" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "968221fcc9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4694175406148067711" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9782a54126f63dfd5d21e17b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7608394697748345066" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb3d6dfc532c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15188120061681536109" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15789739453987548625" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9246096945941454000" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18230965598668786949" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "97aae2329993703ea08b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3765143742227569609" + } + }, + { + "_tag": "ByteArray", + "bytearray": "936ab3fc32918e94b566" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3211838709382597515" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18322200915985000348" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12570426909487298463" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "39212581319598881" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3707969344525701461" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15221785770162972438" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10517834653243263638" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2810874986278152195" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12940199146175581689" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1355644347144140592" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18092055179676602423" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13649472257103732891" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17104431164685167851" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5958698596409667024" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7ff76dd888791c10b63577" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14567152507782464771" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5690202659285410420" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6ebdb60cd3dfa626bf1b298a76be3d30f761432dbbcf1b9fc2120877eddb451b1822ab7fa780780d1beb3a1ae0527703b14affb0e8f3a50f1ac01e8cff1b6f7650a6495d6a86bf1b216bb385822700251b7c0b306de0ebafef1b28ef6ba2d1f7d7a245968221fcc91b41250fa93cd4a17f4c9782a54126f63dfd5d21e17b1b699672aaa64170ea46fb3d6dfc532c1bd2c70ab9da830c6d1bdb206c6032e5edd1ff1b8050bc2f35aa1cb0d8669f1bfd01669ec5050d059f4a97aae2329993703ea08b1b34407a48f3c25bc94a936ab3fc32918e94b5661b2c92be4a04994b8b1bfe4588a86c9f679cffff1bae7320ac5700779fbf1b008b4fa28c47e321413c1b33755a79227e11551bd33ea5826da8e7161b91f6dae428dbca961b27023be84923e8031bb394d290369bcdf91b12d03759e94af7301bfb13e4548163d0371bbd6caab32837a09bff1bed5f2585682e2ceb9f1b52b18ccd8a9dedd04b7ff76dd888791c10b635771bca28ec06975085031b4ef7a92baeb0a274ffff", + "cborBytes": [ + 191, 27, 110, 189, 182, 12, 211, 223, 166, 38, 191, 27, 41, 138, 118, 190, 61, 48, 247, 97, 67, 45, 187, 207, 27, + 159, 194, 18, 8, 119, 237, 219, 69, 27, 24, 34, 171, 127, 167, 128, 120, 13, 27, 235, 58, 26, 224, 82, 119, 3, + 177, 74, 255, 176, 232, 243, 165, 15, 26, 192, 30, 140, 255, 27, 111, 118, 80, 166, 73, 93, 106, 134, 191, 27, 33, + 107, 179, 133, 130, 39, 0, 37, 27, 124, 11, 48, 109, 224, 235, 175, 239, 27, 40, 239, 107, 162, 209, 247, 215, + 162, 69, 150, 130, 33, 252, 201, 27, 65, 37, 15, 169, 60, 212, 161, 127, 76, 151, 130, 165, 65, 38, 246, 61, 253, + 93, 33, 225, 123, 27, 105, 150, 114, 170, 166, 65, 112, 234, 70, 251, 61, 109, 252, 83, 44, 27, 210, 199, 10, 185, + 218, 131, 12, 109, 27, 219, 32, 108, 96, 50, 229, 237, 209, 255, 27, 128, 80, 188, 47, 53, 170, 28, 176, 216, 102, + 159, 27, 253, 1, 102, 158, 197, 5, 13, 5, 159, 74, 151, 170, 226, 50, 153, 147, 112, 62, 160, 139, 27, 52, 64, + 122, 72, 243, 194, 91, 201, 74, 147, 106, 179, 252, 50, 145, 142, 148, 181, 102, 27, 44, 146, 190, 74, 4, 153, 75, + 139, 27, 254, 69, 136, 168, 108, 159, 103, 156, 255, 255, 27, 174, 115, 32, 172, 87, 0, 119, 159, 191, 27, 0, 139, + 79, 162, 140, 71, 227, 33, 65, 60, 27, 51, 117, 90, 121, 34, 126, 17, 85, 27, 211, 62, 165, 130, 109, 168, 231, + 22, 27, 145, 246, 218, 228, 40, 219, 202, 150, 27, 39, 2, 59, 232, 73, 35, 232, 3, 27, 179, 148, 210, 144, 54, + 155, 205, 249, 27, 18, 208, 55, 89, 233, 74, 247, 48, 27, 251, 19, 228, 84, 129, 99, 208, 55, 27, 189, 108, 170, + 179, 40, 55, 160, 155, 255, 27, 237, 95, 37, 133, 104, 46, 44, 235, 159, 27, 82, 177, 140, 205, 138, 157, 237, + 208, 75, 127, 247, 109, 216, 136, 121, 28, 16, 182, 53, 119, 27, 202, 40, 236, 6, 151, 80, 133, 3, 27, 78, 247, + 169, 43, 174, 176, 162, 116, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 741, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8855840266964555047" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11274134340861143121" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3027800366962211756" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10255048105283531682" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + } + ] + }, + "cborHex": "bf11bf1b7ae643cd7405d5271bffffffffffffffee1b9c75c573390fa8511b2a04e8644b947bacff1b8e513feb0df7b3a201ff", + "cborBytes": [ + 191, 17, 191, 27, 122, 230, 67, 205, 116, 5, 213, 39, 27, 255, 255, 255, 255, 255, 255, 255, 238, 27, 156, 117, + 197, 115, 57, 15, 168, 81, 27, 42, 4, 232, 100, 75, 148, 123, 172, 255, 27, 142, 81, 63, 235, 13, 247, 179, 162, + 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 742, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f4ea30fb983" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "622323866326971296" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1177122369204343488" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12862588287246551232" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f3f58be7ef5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7578692381341483283" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f15a89dd156a77b5537" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2401991880430390718" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75e9df0b4bb234a6ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15852140360190899883" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e1e591cf1328feebd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2977157052564170714" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5ae" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e42dba8c27e7bdba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "749a7c840067f352866650" + } + } + ] + }, + "cborHex": "bf460f4ea30fb9839f1b08a2f0425baab3a01b1055fa8ee19752c01bb28117e5f96e48c0ff463f3f58be7ef5bf1b692cec9133d181134a9f15a89dd156a77b5537424bea1b215596e3926d0dbe4975e9df0b4bb234a6ed1bdbfe1dab5acfb6abff497e1e591cf1328feebd1b2950fc90cea2e7da42a5ae8048e42dba8c27e7bdba4b749a7c840067f352866650ff", + "cborBytes": [ + 191, 70, 15, 78, 163, 15, 185, 131, 159, 27, 8, 162, 240, 66, 91, 170, 179, 160, 27, 16, 85, 250, 142, 225, 151, + 82, 192, 27, 178, 129, 23, 229, 249, 110, 72, 192, 255, 70, 63, 63, 88, 190, 126, 245, 191, 27, 105, 44, 236, 145, + 51, 209, 129, 19, 74, 159, 21, 168, 157, 209, 86, 167, 123, 85, 55, 66, 75, 234, 27, 33, 85, 150, 227, 146, 109, + 13, 190, 73, 117, 233, 223, 11, 75, 178, 52, 166, 237, 27, 219, 254, 29, 171, 90, 207, 182, 171, 255, 73, 126, 30, + 89, 28, 241, 50, 143, 238, 189, 27, 41, 80, 252, 144, 206, 162, 231, 218, 66, 165, 174, 128, 72, 228, 45, 186, + 140, 39, 231, 189, 186, 75, 116, 154, 124, 132, 0, 103, 243, 82, 134, 102, 80, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 743, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "51b84d52706157caf0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9321118765727136496" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97e5dd82265f0f316c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31e44e2b0ce68259" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed790427c65be1bbfd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d52c4347" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8897544734132309632" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2758999107212696632" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7201712176182967648" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17259810138844350196" + } + } + ] + } + } + ] + }, + "cborHex": "bf4951b84d52706157caf01b815b4421cc64baf04997e5dd82265f0f316c4831e44e2b0ce6825949ed790427c65be1bbfd9f44d52c43471b7b7a6dcb631a8e801b2649ef11f9085c381b63f19f1163fdbd601bef8729dff880c6f4ffff", + "cborBytes": [ + 191, 73, 81, 184, 77, 82, 112, 97, 87, 202, 240, 27, 129, 91, 68, 33, 204, 100, 186, 240, 73, 151, 229, 221, 130, + 38, 95, 15, 49, 108, 72, 49, 228, 78, 43, 12, 230, 130, 89, 73, 237, 121, 4, 39, 198, 91, 225, 187, 253, 159, 68, + 213, 44, 67, 71, 27, 123, 122, 109, 203, 99, 26, 142, 128, 27, 38, 73, 239, 17, 249, 8, 92, 56, 27, 99, 241, 159, + 17, 99, 253, 189, 96, 27, 239, 135, 41, 223, 248, 128, 198, 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 744, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "180c00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49d929927690" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adc971" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ac559c" + }, + { + "_tag": "ByteArray", + "bytearray": "de2b06f65041417040e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8177748e53be622e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + } + } + ] + }, + "cborHex": "bf43180c004649d92992769043adc9719f43ac559c4ade2b06f65041417040e804488177748e53be622e1bffffffffffffffefffff", + "cborBytes": [ + 191, 67, 24, 12, 0, 70, 73, 217, 41, 146, 118, 144, 67, 173, 201, 113, 159, 67, 172, 85, 156, 74, 222, 43, 6, 246, + 80, 65, 65, 112, 64, 232, 4, 72, 129, 119, 116, 142, 83, 190, 98, 46, 27, 255, 255, 255, 255, 255, 255, 255, 239, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 745, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e0201" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1976839505494057461" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6882599279596620325" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9606377420578758530" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7777640025282086147" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11363556071335493873" + } + } + } + ] + }, + "cborHex": "bf04120d438e02011b1b6f250e76eea1f5a01b5f83e79447b74a251b8550b55e03ee1f821b6befba6531cc85031b9db3760a492f80f1ff", + "cborBytes": [ + 191, 4, 18, 13, 67, 142, 2, 1, 27, 27, 111, 37, 14, 118, 238, 161, 245, 160, 27, 95, 131, 231, 148, 71, 183, 74, + 37, 27, 133, 80, 181, 94, 3, 238, 31, 130, 27, 107, 239, 186, 101, 49, 204, 133, 3, 27, 157, 179, 118, 10, 73, 47, + 128, 241, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 746, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04fab1c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56033f04" + } + } + ] + }, + "cborHex": "bf4404fab1c84456033f04ff", + "cborBytes": [191, 68, 4, 250, 177, 200, 68, 86, 3, 63, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 747, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3745285776792388905" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9137129028795573336" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f198ef" + }, + { + "_tag": "ByteArray", + "bytearray": "67" + }, + { + "_tag": "ByteArray", + "bytearray": "30abb1bac78d28725544dab3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10842299832028439697" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15088280801119088260" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11178380292368627933" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fc99e1b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11528307489038091936" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cdd7b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8619235140833713900" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b33f9ed9214088529d8669f1b7ecd9a70ec4524589f43f198ef41674c30abb1bac78d28725544dab3ffff1b96779640945524911bd16457728e0cae841b9b2195a67adbf8ddbf446fc99e1b1b9ffcc694e99746a0439cdd7b1b779dacb1a4f51eecffff", + "cborBytes": [ + 191, 27, 51, 249, 237, 146, 20, 8, 133, 41, 216, 102, 159, 27, 126, 205, 154, 112, 236, 69, 36, 88, 159, 67, 241, + 152, 239, 65, 103, 76, 48, 171, 177, 186, 199, 141, 40, 114, 85, 68, 218, 179, 255, 255, 27, 150, 119, 150, 64, + 148, 85, 36, 145, 27, 209, 100, 87, 114, 142, 12, 174, 132, 27, 155, 33, 149, 166, 122, 219, 248, 221, 191, 68, + 111, 201, 158, 27, 27, 159, 252, 198, 148, 233, 151, 70, 160, 67, 156, 221, 123, 27, 119, 157, 172, 177, 164, 245, + 30, 236, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 748, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d4d6355" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e206e98b54174d52c636500b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a12491d3d8ac6af3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6978458838710114995" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7745362404146451689" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17081935775563105305" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c2cb7a3a9e44" + }, + { + "_tag": "ByteArray", + "bytearray": "ef3fb1d8cda4" + } + ] + } + } + ] + }, + "cborHex": "bf441d4d63554ce206e98b54174d52c636500b48a12491d3d8ac6af3d8669f1b60d8775721005ab39f41b01b6b7d0e11e3d094e91bed0f3a157a79c41946c2cb7a3a9e4446ef3fb1d8cda4ffffff", + "cborBytes": [ + 191, 68, 29, 77, 99, 85, 76, 226, 6, 233, 139, 84, 23, 77, 82, 198, 54, 80, 11, 72, 161, 36, 145, 211, 216, 172, + 106, 243, 216, 102, 159, 27, 96, 216, 119, 87, 33, 0, 90, 179, 159, 65, 176, 27, 107, 125, 14, 17, 227, 208, 148, + 233, 27, 237, 15, 58, 21, 122, 121, 196, 25, 70, 194, 203, 122, 58, 158, 68, 70, 239, 63, 177, 216, 205, 164, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 749, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9901986692968993454" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16605292450685916606" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12601470888575856113" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4f7d0ae31cf4a8da9c" + }, + { + "_tag": "ByteArray", + "bytearray": "a1030afc082c75b0a3c6" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5f8f4cc1390d500d4d252" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1438691578171792657" + } + } + } + ] + }, + "cborHex": "bf1b896aec6f2d0fd2ae1be671d9815a9c15be1baee16b01f8fd6df19f494f7d0ae31cf4a8da9c4aa1030afc082c75b0a3c6ff4ba5f8f4cc1390d500d4d2521b13f7425e2a469d11ff", + "cborBytes": [ + 191, 27, 137, 106, 236, 111, 45, 15, 210, 174, 27, 230, 113, 217, 129, 90, 156, 21, 190, 27, 174, 225, 107, 1, + 248, 253, 109, 241, 159, 73, 79, 125, 10, 227, 28, 244, 168, 218, 156, 74, 161, 3, 10, 252, 8, 44, 117, 176, 163, + 198, 255, 75, 165, 248, 244, 204, 19, 144, 213, 0, 212, 210, 82, 27, 19, 247, 66, 94, 42, 70, 157, 17, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 750, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2272985632960885810" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f291dc90fb20b771d2a0a417" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1941782893605497852" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15256756279907928011" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bca9" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13467949065244574299" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9552636908341900254" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aaf2" + }, + { + "_tag": "ByteArray", + "bytearray": "5eae8168d1c5efcba5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5179582035782076958" + } + }, + { + "_tag": "ByteArray", + "bytearray": "35c61b4397" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5960025684030336903" + } + }, + { + "_tag": "ByteArray", + "bytearray": "faf90480" + } + ] + } + } + ] + }, + "cborHex": "bf0cd8669f1b1f8b4463f03334329f4cf291dc90fb20b771d2a0a4171b1af29940f4492bfc1bd3bae300b89f47cb42bca9ffff141bbae7c4518ef5025b1b8491c8a7f60133de9f42aaf2495eae8168d1c5efcba51b47e1926b3fc90a1e4535c61b4397ff1bffffffffffffffeed8669f1bfffffffffffffff99f1b52b643c834d52f8744faf90480ffffff", + "cborBytes": [ + 191, 12, 216, 102, 159, 27, 31, 139, 68, 99, 240, 51, 52, 50, 159, 76, 242, 145, 220, 144, 251, 32, 183, 113, 210, + 160, 164, 23, 27, 26, 242, 153, 64, 244, 73, 43, 252, 27, 211, 186, 227, 0, 184, 159, 71, 203, 66, 188, 169, 255, + 255, 20, 27, 186, 231, 196, 81, 142, 245, 2, 91, 27, 132, 145, 200, 167, 246, 1, 51, 222, 159, 66, 170, 242, 73, + 94, 174, 129, 104, 209, 197, 239, 203, 165, 27, 71, 225, 146, 107, 63, 201, 10, 30, 69, 53, 198, 27, 67, 151, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 238, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 27, + 82, 182, 67, 200, 52, 213, 47, 135, 68, 250, 249, 4, 128, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 751, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c409a54d4063" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17114983709197672867" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6141917338495977837" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6fb283" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "737136179940187386" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7034610571210794456" + } + } + ] + } + } + ] + }, + "cborHex": "bf46c409a54d4063d8669f1bed84a301235321a39f1b553c794730dd896d436fb2831b0a3ad5733c6c5cfa1b619ff50b263a25d8ffffff", + "cborBytes": [ + 191, 70, 196, 9, 165, 77, 64, 99, 216, 102, 159, 27, 237, 132, 163, 1, 35, 83, 33, 163, 159, 27, 85, 60, 121, 71, + 48, 221, 137, 109, 67, 111, 178, 131, 27, 10, 58, 213, 115, 60, 108, 92, 250, 27, 97, 159, 245, 11, 38, 58, 37, + 216, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 752, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1570209368748551433" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16735126407194771353" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15566777835887114865" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5659137125740025901" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16893414174025200815" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16012596302632517232" + } + } + } + ] + }, + "cborHex": "bf1b15ca8119ff3f6d09d8669f1be83f1ccd041a7f999f1bd8084df72579ba71ffff1b4e894b3b82f5982d801bea7176afa65234af1bde382b7fb624fe70ff", + "cborBytes": [ + 191, 27, 21, 202, 129, 25, 255, 63, 109, 9, 216, 102, 159, 27, 232, 63, 28, 205, 4, 26, 127, 153, 159, 27, 216, 8, + 77, 247, 37, 121, 186, 113, 255, 255, 27, 78, 137, 75, 59, 130, 245, 152, 45, 128, 27, 234, 113, 118, 175, 166, + 82, 52, 175, 27, 222, 56, 43, 127, 182, 36, 254, 112, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 753, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3093969773471300721" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15309842265406633015" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11538550598163300371" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b77fd0e7b2b7f99486cf8d92" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18260267844970878939" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6c4731" + }, + { + "_tag": "ByteArray", + "bytearray": "daa963" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5674612063291955755" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7048793371689900604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17296352265621696181" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9348387575212978936" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2139b826" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14877732355808275493" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21bf19360725810f8c2e" + } + } + ] + }, + "cborHex": "bf1b2aeffd1dcd8d7c71d8669f1bd4777c6ce4d2f4379f1ba0212aa29a6500134cb77fd0e7b2b7f99486cf8d921bfd6980dba2fa17db436c473143daa963ffff1b4ec0459b2ea9da2b801b61d25839b6b45a3c1bf008fcbede676eb51b81bc24f8433eb2f89f442139b826ff1bce7852c08349ac254a21bf19360725810f8c2eff", + "cborBytes": [ + 191, 27, 42, 239, 253, 29, 205, 141, 124, 113, 216, 102, 159, 27, 212, 119, 124, 108, 228, 210, 244, 55, 159, 27, + 160, 33, 42, 162, 154, 101, 0, 19, 76, 183, 127, 208, 231, 178, 183, 249, 148, 134, 207, 141, 146, 27, 253, 105, + 128, 219, 162, 250, 23, 219, 67, 108, 71, 49, 67, 218, 169, 99, 255, 255, 27, 78, 192, 69, 155, 46, 169, 218, 43, + 128, 27, 97, 210, 88, 57, 182, 180, 90, 60, 27, 240, 8, 252, 190, 222, 103, 110, 181, 27, 129, 188, 36, 248, 67, + 62, 178, 248, 159, 68, 33, 57, 184, 38, 255, 27, 206, 120, 82, 192, 131, 73, 172, 37, 74, 33, 191, 25, 54, 7, 37, + 129, 15, 140, 46, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 754, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4918739991205044158" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3509471945552828269" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6725305367546136635" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c3f4cfc3da40b" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a503f807" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + } + ] + }, + "cborHex": "bf41049f1b4442dff61e48dfbe1b30b42623f7e0176d1b5d5515997e9d883bff475c3f4cfc3da40b8044a503f8071bfffffffffffffffbff", + "cborBytes": [ + 191, 65, 4, 159, 27, 68, 66, 223, 246, 30, 72, 223, 190, 27, 48, 180, 38, 35, 247, 224, 23, 109, 27, 93, 85, 21, + 153, 126, 157, 136, 59, 255, 71, 92, 63, 76, 252, 61, 164, 11, 128, 68, 165, 3, 248, 7, 27, 255, 255, 255, 255, + 255, 255, 255, 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 755, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2069298372324839783" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7013797242624275663" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2585943619633062305" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b9" + }, + { + "_tag": "ByteArray", + "bytearray": "5d33d0630e6cec4a583539" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4910609042995577716" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "386fb92a9238c81913" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6093244766543682247" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9725764848466631036" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8815875781144096116" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d474a30c23ea9b5636e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0324051715a9b77da" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12168013626678584105" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d9a1823f581644235" + } + } + ] + }, + "cborHex": "bf1b1cb79fe7f0b751671b6156036e753bf4cf1b23e31e05696aa1a19f41b94b5d33d0630e6cec4a583539ff1b4425fce83692837449386fb92a9238c819131b548f8dd4ef581ac71b86f8db99b1d5997c1b7a5848507f102d74bf4a3d474a30c23ea9b5636e49c0324051715a9b77daff1ba8dd77ecb04a2329492d9a1823f581644235ff", + "cborBytes": [ + 191, 27, 28, 183, 159, 231, 240, 183, 81, 103, 27, 97, 86, 3, 110, 117, 59, 244, 207, 27, 35, 227, 30, 5, 105, + 106, 161, 161, 159, 65, 185, 75, 93, 51, 208, 99, 14, 108, 236, 74, 88, 53, 57, 255, 27, 68, 37, 252, 232, 54, + 146, 131, 116, 73, 56, 111, 185, 42, 146, 56, 200, 25, 19, 27, 84, 143, 141, 212, 239, 88, 26, 199, 27, 134, 248, + 219, 153, 177, 213, 153, 124, 27, 122, 88, 72, 80, 127, 16, 45, 116, 191, 74, 61, 71, 74, 48, 194, 62, 169, 181, + 99, 110, 73, 192, 50, 64, 81, 113, 90, 155, 119, 218, 255, 27, 168, 221, 119, 236, 176, 74, 35, 41, 73, 45, 154, + 24, 35, 245, 129, 100, 66, 53, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 756, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bcc64b0d409" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1424f1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f13a4490f9915348f20a9cbb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7772265430845221233" + } + } + } + ] + }, + "cborHex": "bf464bcc64b0d409431424f14cf13a4490f9915348f20a9cbb1b6bdca23ae993e971ff", + "cborBytes": [ + 191, 70, 75, 204, 100, 176, 212, 9, 67, 20, 36, 241, 76, 241, 58, 68, 144, 249, 145, 83, 72, 242, 10, 156, 187, + 27, 107, 220, 162, 58, 233, 147, 233, 113, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 757, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3854598952846536392" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11770987401758353133" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8380253081557135441" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1027266622519622926" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1214d92db93645" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6381906169580426357" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4039104215802120865" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15303597226328546634" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5514977554471877650" + } + } + } + ] + }, + "cborHex": "bf1b357e49533802aec81ba35af2ad3167a6ed1b744ca3c6f615f0519f1b0e41958cece5bd0e471214d92db936451b589115d933b714751b380dc7e259ab0aa1ff1bd4614c986cf75d4a1b4c8922ddbe8c7c12ff", + "cborBytes": [ + 191, 27, 53, 126, 73, 83, 56, 2, 174, 200, 27, 163, 90, 242, 173, 49, 103, 166, 237, 27, 116, 76, 163, 198, 246, + 21, 240, 81, 159, 27, 14, 65, 149, 140, 236, 229, 189, 14, 71, 18, 20, 217, 45, 185, 54, 69, 27, 88, 145, 21, 217, + 51, 183, 20, 117, 27, 56, 13, 199, 226, 89, 171, 10, 161, 255, 27, 212, 97, 76, 152, 108, 247, 93, 74, 27, 76, + 137, 34, 221, 190, 140, 124, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 758, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9772694658341012843" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13990410878952631478" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11012996156268811382" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bb220091433b0c9" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "304633111969682564" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "64" + } + ] + } + } + ] + }, + "cborHex": "bf11bf1b879f960388c6056b1bc227ec91edbb6cb61b98d605a79f251476487bb220091433b0c9ff1b043a463389c654849f4164ffff", + "cborBytes": [ + 191, 17, 191, 27, 135, 159, 150, 3, 136, 198, 5, 107, 27, 194, 39, 236, 145, 237, 187, 108, 182, 27, 152, 214, 5, + 167, 159, 37, 20, 118, 72, 123, 178, 32, 9, 20, 51, 176, 201, 255, 27, 4, 58, 70, 51, 137, 198, 84, 132, 159, 65, + 100, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 759, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9736be35eced" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5015108907698313161" + } + } + } + ] + }, + "cborHex": "bf469736be35eced1b45993efaf94157c9ff", + "cborBytes": [191, 70, 151, 54, 190, 53, 236, 237, 27, 69, 153, 62, 250, 249, 65, 87, 201, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 760, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9732611823279595659" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f502" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04f9" + } + } + ] + }, + "cborHex": "bf1bffffffffffffffff1b87112ee33f58e08b42f5024204f9ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 255, 27, 135, 17, 46, 227, 63, 88, 224, 139, 66, 245, 2, 66, 4, 249, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 761, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d8c60b40f3b6693" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8784861724419742453" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cad517c68df773a1001e891b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17409413186699411" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3fddf" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12510444369820583886" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "753911536902021368" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9094497307097280598" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7735416a506553cb0ea558" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8558636793715839908" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6292753267902903355" + } + } + ] + } + } + ] + }, + "cborHex": "bf483d8c60b40f3b66931b79ea1931b4f6daf54ccad517c68df773a1001e891b1b003dd9c4e0bdc09343d3fddfd8669f1bad9e06df057107ce9f1b0a766e8c651d20f81b7e36251db847b0564b7735416a506553cb0ea5581b76c662d17b0553a41b575459c1b887f43bffffff", + "cborBytes": [ + 191, 72, 61, 140, 96, 180, 15, 59, 102, 147, 27, 121, 234, 25, 49, 180, 246, 218, 245, 76, 202, 213, 23, 198, 141, + 247, 115, 161, 0, 30, 137, 27, 27, 0, 61, 217, 196, 224, 189, 192, 147, 67, 211, 253, 223, 216, 102, 159, 27, 173, + 158, 6, 223, 5, 113, 7, 206, 159, 27, 10, 118, 110, 140, 101, 29, 32, 248, 27, 126, 54, 37, 29, 184, 71, 176, 86, + 75, 119, 53, 65, 106, 80, 101, 83, 203, 14, 165, 88, 27, 118, 198, 98, 209, 123, 5, 83, 164, 27, 87, 84, 89, 193, + 184, 135, 244, 59, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 762, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "769705941737158343" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8682163880428169882" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba79139cb61931ba6f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3134139143012481791" + } + } + } + ] + }, + "cborHex": "bf1b0aae8b79d6c036c71b787d3e0c96a5ea9a49ba79139cb61931ba6f1b2b7eb2f1f7e7faffff", + "cborBytes": [ + 191, 27, 10, 174, 139, 121, 214, 192, 54, 199, 27, 120, 125, 62, 12, 150, 165, 234, 154, 73, 186, 121, 19, 156, + 182, 25, 49, 186, 111, 27, 43, 126, 178, 241, 247, 231, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 763, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "027007343804eb0c1c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10788575687249678139" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52bde2661edc2536ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5253254072873103060" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89010500" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "504bfe95f6fd58" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c83e53" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb25b51e4f31241c64e03545" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c25e2257e7d3ed8968d5" + } + } + ] + } + } + ] + }, + "cborHex": "bf0cbf49027007343804eb0c1c1b95b8b86d5eeecf3b4952bde2661edc2536ff1b48e74ebf1079aed4448901050047504bfe95f6fd5843c83e531bffffffffffffffeb4cfb25b51e4f31241c64e035454ac25e2257e7d3ed8968d5ffff", + "cborBytes": [ + 191, 12, 191, 73, 2, 112, 7, 52, 56, 4, 235, 12, 28, 27, 149, 184, 184, 109, 94, 238, 207, 59, 73, 82, 189, 226, + 102, 30, 220, 37, 54, 255, 27, 72, 231, 78, 191, 16, 121, 174, 212, 68, 137, 1, 5, 0, 71, 80, 75, 254, 149, 246, + 253, 88, 67, 200, 62, 83, 27, 255, 255, 255, 255, 255, 255, 255, 235, 76, 251, 37, 181, 30, 79, 49, 36, 28, 100, + 224, 53, 69, 74, 194, 94, 34, 87, 231, 211, 237, 137, 104, 213, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 764, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4467122338523206252" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ec6332931" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e2e8569c0b883" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d0f89" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5354265011110345208" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be0c07850b48326eb1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc4dbae18f18" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6333834478370495732" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18304920014288713144" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8100353798289295302" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "99fd1a7aa3aa5b4009" + }, + { + "_tag": "ByteArray", + "bytearray": "95e3381666dd" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14051910682182739119" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4144818655538800551" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14953570255756316002" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8673905905431073302" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "75db" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15640686518716030967" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "271c8ce80c1f" + } + } + ] + }, + "cborHex": "bf1b3dfe68195be3526cbf450ec6332931475e2e8569c0b883433d0f891b4a4e2ba8d488f9f849be0c07850b48326eb146cc4dbae18f18ff1b57e64ce665651cf41bfe0823c4f59df5b81b706a3cdcae0507c69f4999fd1a7aa3aa5b40094695e3381666ddff1bc3026a50b304e4afd8669f1b39855a9b65cd67a780ff1bcf85c0eb9233cd62d8669f1b785fe776f461d2169f4275dbffff1bd90ee185574f5ff746271c8ce80c1fff", + "cborBytes": [ + 191, 27, 61, 254, 104, 25, 91, 227, 82, 108, 191, 69, 14, 198, 51, 41, 49, 71, 94, 46, 133, 105, 192, 184, 131, + 67, 61, 15, 137, 27, 74, 78, 43, 168, 212, 136, 249, 248, 73, 190, 12, 7, 133, 11, 72, 50, 110, 177, 70, 204, 77, + 186, 225, 143, 24, 255, 27, 87, 230, 76, 230, 101, 101, 28, 244, 27, 254, 8, 35, 196, 245, 157, 245, 184, 27, 112, + 106, 60, 220, 174, 5, 7, 198, 159, 73, 153, 253, 26, 122, 163, 170, 91, 64, 9, 70, 149, 227, 56, 22, 102, 221, + 255, 27, 195, 2, 106, 80, 179, 4, 228, 175, 216, 102, 159, 27, 57, 133, 90, 155, 101, 205, 103, 167, 128, 255, 27, + 207, 133, 192, 235, 146, 51, 205, 98, 216, 102, 159, 27, 120, 95, 231, 118, 244, 97, 210, 22, 159, 66, 117, 219, + 255, 255, 27, 217, 14, 225, 133, 87, 79, 95, 247, 70, 39, 28, 140, 232, 12, 31, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 765, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7532018989737637370" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5256424957658905356" + } + } + } + ] + }, + "cborHex": "bf1b68871b5d64cef5fa1b48f292a635c1bb0cff", + "cborBytes": [191, 27, 104, 135, 27, 93, 100, 206, 245, 250, 27, 72, 242, 146, 166, 53, 193, 187, 12, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 766, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9383059845545330660" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13360786236606957320" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1867131503354731412" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13724533836351480646" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5925983788335918917" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10124015653920255996" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "357431796474618049" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11796816628893827821" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0266a7cfcbceed1821d3f515" + } + } + ] + }, + "cborHex": "bf1b8237533747f607e4d8669f1bb96b0c4b30e2c7089f1b19e96235b6665b941bbe7756cef78f23461b523d52dbb87c6f45ffff1b8c7fba9910692ffc1b04f5da533c4ca0c11ba3b6b638c5a342ed4c0266a7cfcbceed1821d3f515ff", + "cborBytes": [ + 191, 27, 130, 55, 83, 55, 71, 246, 7, 228, 216, 102, 159, 27, 185, 107, 12, 75, 48, 226, 199, 8, 159, 27, 25, 233, + 98, 53, 182, 102, 91, 148, 27, 190, 119, 86, 206, 247, 143, 35, 70, 27, 82, 61, 82, 219, 184, 124, 111, 69, 255, + 255, 27, 140, 127, 186, 153, 16, 105, 47, 252, 27, 4, 245, 218, 83, 60, 76, 160, 193, 27, 163, 182, 182, 56, 197, + 163, 66, 237, 76, 2, 102, 167, 207, 203, 206, 237, 24, 33, 211, 245, 21, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 767, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6692600826121449331" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e640a499" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14527189526928319435" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5ce0e4fe10746f73bf44e640a4991bc99af1e8095663cbffff", + "cborBytes": [ + 191, 27, 92, 224, 228, 254, 16, 116, 111, 115, 191, 68, 230, 64, 164, 153, 27, 201, 154, 241, 232, 9, 86, 99, 203, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 768, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "947296905452169082" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56a4d6dbe71563d1590c75" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff61b0d2579843a4da77a4b56a4d6dbe71563d1590c75a0ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 246, 27, 13, 37, 121, 132, 58, 77, 167, 122, 75, 86, 164, 214, 219, + 231, 21, 99, 209, 89, 12, 117, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 769, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16656818401301301091" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f7328db6" + }, + { + "_tag": "ByteArray", + "bytearray": "d0edd8c3eac330cf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18330504049985585270" + } + } + ] + } + } + ] + }, + "cborHex": "bf1be728e81599c107639f44f7328db648d0edd8c3eac330cf1bfe63085075400076ffff", + "cborBytes": [ + 191, 27, 231, 40, 232, 21, 153, 193, 7, 99, 159, 68, 247, 50, 141, 182, 72, 208, 237, 216, 195, 234, 195, 48, 207, + 27, 254, 99, 8, 80, 117, 64, 0, 118, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 770, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1308726536048171414" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16143159509860633338" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6756544025500698127" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6562566237660288800" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6593172766208183093" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2382494338764378354" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4bac67da0cac88e83c29" + }, + { + "_tag": "ByteArray", + "bytearray": "90d95f7d0ca93f74061a9154" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6231698732171963875" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8970291884647926847" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6591924693557588100" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57d039de8dc3b3e6522309" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13982241538485733809" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2db2dccf3e7eb80507a80d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15225440636191822137" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5959c2f7ac" + }, + { + "_tag": "ByteArray", + "bytearray": "9d203f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4061040515334513016" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2201448837445843706" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7192566050860784246" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b122987d9c1475996d8669f1be008060b49b64afa9f1b5dc410fe5541c60fffff1b5b12eb3922b69720d8669f1b5b7fa7b2e09e4b359f1b211051fa656e10f24a4bac67da0cac88e83c294c90d95f7d0ca93f74061a91541b567b70fade5cade31b7c7ce0f144024c3fffff1b5b7b389551a030844b57d039de8dc3b3e65223091bc20ae699212749b14b2db2dccf3e7eb80507a80d1bd34ba1973d02d1399f455959c2f7ac439d203f1b385bb6d516fba1781b1e8d1e0dcb27fafa1b63d120b725175a76ffff", + "cborBytes": [ + 191, 27, 18, 41, 135, 217, 193, 71, 89, 150, 216, 102, 159, 27, 224, 8, 6, 11, 73, 182, 74, 250, 159, 27, 93, 196, + 16, 254, 85, 65, 198, 15, 255, 255, 27, 91, 18, 235, 57, 34, 182, 151, 32, 216, 102, 159, 27, 91, 127, 167, 178, + 224, 158, 75, 53, 159, 27, 33, 16, 81, 250, 101, 110, 16, 242, 74, 75, 172, 103, 218, 12, 172, 136, 232, 60, 41, + 76, 144, 217, 95, 125, 12, 169, 63, 116, 6, 26, 145, 84, 27, 86, 123, 112, 250, 222, 92, 173, 227, 27, 124, 124, + 224, 241, 68, 2, 76, 63, 255, 255, 27, 91, 123, 56, 149, 81, 160, 48, 132, 75, 87, 208, 57, 222, 141, 195, 179, + 230, 82, 35, 9, 27, 194, 10, 230, 153, 33, 39, 73, 177, 75, 45, 178, 220, 207, 62, 126, 184, 5, 7, 168, 13, 27, + 211, 75, 161, 151, 61, 2, 209, 57, 159, 69, 89, 89, 194, 247, 172, 67, 157, 32, 63, 27, 56, 91, 182, 213, 22, 251, + 161, 120, 27, 30, 141, 30, 13, 203, 39, 250, 250, 27, 99, 209, 32, 183, 37, 23, 90, 118, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 771, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8296769680557494228" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3043254061871355929" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12541186827774457005" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8999940816175019588" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "339674015629185458" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e27a9956825a60068c57" + }, + { + "_tag": "ByteArray", + "bytearray": "4dbdcae1ae7c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27cfd606c3872a6576" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18152028887615637441" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fb6bc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16378680763766638077" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3005295391077204885" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0fe3e6cc1ceb0ab64140" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b73240c10f8dc4fd4d8669f1b2a3bcf72071b58199f1bae0b3ef94b4df4ad1b7ce6367d13a6b6441b04b6c3b7b10211b24ae27a9956825a60068c57464dbdcae1ae7cffff4927cfd606c3872a6576bf061bfbe8f61986f587c10a435fb6bc12131be34cc3606dd585fd1b29b4f43c464683951bfffffffffffffff64a0fe3e6cc1ceb0ab64140ffff", + "cborBytes": [ + 191, 27, 115, 36, 12, 16, 248, 220, 79, 212, 216, 102, 159, 27, 42, 59, 207, 114, 7, 27, 88, 25, 159, 27, 174, 11, + 62, 249, 75, 77, 244, 173, 27, 124, 230, 54, 125, 19, 166, 182, 68, 27, 4, 182, 195, 183, 177, 2, 17, 178, 74, + 226, 122, 153, 86, 130, 90, 96, 6, 140, 87, 70, 77, 189, 202, 225, 174, 124, 255, 255, 73, 39, 207, 214, 6, 195, + 135, 42, 101, 118, 191, 6, 27, 251, 232, 246, 25, 134, 245, 135, 193, 10, 67, 95, 182, 188, 18, 19, 27, 227, 76, + 195, 96, 109, 213, 133, 253, 27, 41, 180, 244, 60, 70, 70, 131, 149, 27, 255, 255, 255, 255, 255, 255, 255, 246, + 74, 15, 227, 230, 204, 28, 235, 10, 182, 65, 64, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 772, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10cf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2229726942443532106" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2206249" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5208656318861460298" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "872788521361182735" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14944855892750932669" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ab32c2d97fe96c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17379449004442129162" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11928454177800137555" + } + } + ] + } + } + ] + }, + "cborHex": "bf0aa0114210cf1b1ef194d72e76ef4a44c22062491b4848dd534ad4c34ad8669f1b0c1cc48933c5900f9f1bcf66cb40d2d29abdffff1bffffffffffffffed9f47ab32c2d97fe96c1bf13034ca0dca130a1ba58a61e0034d2b53ffff", + "cborBytes": [ + 191, 10, 160, 17, 66, 16, 207, 27, 30, 241, 148, 215, 46, 118, 239, 74, 68, 194, 32, 98, 73, 27, 72, 72, 221, 83, + 74, 212, 195, 74, 216, 102, 159, 27, 12, 28, 196, 137, 51, 197, 144, 15, 159, 27, 207, 102, 203, 64, 210, 210, + 154, 189, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 71, 171, 50, 194, 217, 127, 233, 108, 27, + 241, 48, 52, 202, 13, 202, 19, 10, 27, 165, 138, 97, 224, 3, 77, 43, 83, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 773, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "256c32f534f0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "321335022092153919" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abf5b97991fdd2af7f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "945301256811665916" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81075dd911508fe9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10523197712315923258" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43388f59fcb596c22f1c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15185792823598902846" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89a849f30d35" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17211223850894780046" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c266463925c144bae82bab" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "843514221709795587" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61997d95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "967dbbf1a7d1fa2bb7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f4fe16d08dedfd975" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7822626710940188786" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68" + } + } + ] + }, + "cborHex": "bf46256c32f534f0bf1b04759c8005b1f43f49abf5b97991fdd2af7f1b0d1e627c11fd59fc4881075dd911508fe91b9209e890a7cb3b3a4a43388f59fcb596c22f1c1bd2bec61d8349ee3e4689a849f30d351beeda8ce74650668e4bc266463925c144bae82babff41351b0bb4c3b72c00a1034461997d9541aa49967dbbf1a7d1fa2bb7493f4fe16d08dedfd97541bd1b6c8f8d8c2c12807241fd4168ff", + "cborBytes": [ + 191, 70, 37, 108, 50, 245, 52, 240, 191, 27, 4, 117, 156, 128, 5, 177, 244, 63, 73, 171, 245, 185, 121, 145, 253, + 210, 175, 127, 27, 13, 30, 98, 124, 17, 253, 89, 252, 72, 129, 7, 93, 217, 17, 80, 143, 233, 27, 146, 9, 232, 144, + 167, 203, 59, 58, 74, 67, 56, 143, 89, 252, 181, 150, 194, 47, 28, 27, 210, 190, 198, 29, 131, 73, 238, 62, 70, + 137, 168, 73, 243, 13, 53, 27, 238, 218, 140, 231, 70, 80, 102, 142, 75, 194, 102, 70, 57, 37, 193, 68, 186, 232, + 43, 171, 255, 65, 53, 27, 11, 180, 195, 183, 44, 0, 161, 3, 68, 97, 153, 125, 149, 65, 170, 73, 150, 125, 187, + 241, 167, 209, 250, 43, 183, 73, 63, 79, 225, 109, 8, 222, 223, 217, 117, 65, 189, 27, 108, 143, 141, 140, 44, 18, + 128, 114, 65, 253, 65, 104, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 774, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8158952978665832711" + } + } + } + ] + }, + "cborHex": "bf081b713a6c81907e0107ff", + "cborBytes": [191, 8, 27, 113, 58, 108, 129, 144, 126, 1, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 775, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10802088575986418881" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e30700fdde197a0104740605" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82865d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15864822514906388977" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10710030758647727945" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f37" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "127924897568029823" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b95e8ba53f3f9c4c19f4ce30700fdde197a01047406051bfffffffffffffffdff4382865d9f1bdc2b2c05999d59f11b94a1ac3b16b48749425f371b01c67b043d787c7fffff", + "cborBytes": [ + 191, 27, 149, 232, 186, 83, 243, 249, 196, 193, 159, 76, 227, 7, 0, 253, 222, 25, 122, 1, 4, 116, 6, 5, 27, 255, + 255, 255, 255, 255, 255, 255, 253, 255, 67, 130, 134, 93, 159, 27, 220, 43, 44, 5, 153, 157, 89, 241, 27, 148, + 161, 172, 59, 22, 180, 135, 73, 66, 95, 55, 27, 1, 198, 123, 4, 61, 120, 124, 127, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 776, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12921824256706372342" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5506532083543115835" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44e6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6015257971939462639" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17613879618423275080" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8830075566069699973" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d747b5506c44cdf5f74eda" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10950259298611920936" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15849407803242081843" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15385732675166880000" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9657335575539687107" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2c853ac72e8935702d9a86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3142814222413221261" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12842653217053837579" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5587b902e5c2afdbf7" + }, + { + "_tag": "ByteArray", + "bytearray": "330f8384a6" + } + ] + } + } + ] + }, + "cborHex": "bf1bb3538ab2df0262f6bf1b4c6b21c14fe1083b4244e61b537a7d4159c9cdef1bf4711230cc9cbe481b7a8abaf18f70d5854bd747b5506c44cdf5f74eda1b97f722d0ac2e80281bdbf4686c5c8c6e331bd5851a59d87141001b8605bf8a08c91ec3ff1bfffffffffffffff09f4b2c853ac72e8935702d9a861b2b9d84e249fc4d8d1bb23a450ec005890b495587b902e5c2afdbf745330f8384a6ffff", + "cborBytes": [ + 191, 27, 179, 83, 138, 178, 223, 2, 98, 246, 191, 27, 76, 107, 33, 193, 79, 225, 8, 59, 66, 68, 230, 27, 83, 122, + 125, 65, 89, 201, 205, 239, 27, 244, 113, 18, 48, 204, 156, 190, 72, 27, 122, 138, 186, 241, 143, 112, 213, 133, + 75, 215, 71, 181, 80, 108, 68, 205, 245, 247, 78, 218, 27, 151, 247, 34, 208, 172, 46, 128, 40, 27, 219, 244, 104, + 108, 92, 140, 110, 51, 27, 213, 133, 26, 89, 216, 113, 65, 0, 27, 134, 5, 191, 138, 8, 201, 30, 195, 255, 27, 255, + 255, 255, 255, 255, 255, 255, 240, 159, 75, 44, 133, 58, 199, 46, 137, 53, 112, 45, 154, 134, 27, 43, 157, 132, + 226, 73, 252, 77, 141, 27, 178, 58, 69, 14, 192, 5, 137, 11, 73, 85, 135, 185, 2, 229, 194, 175, 219, 247, 69, 51, + 15, 131, 132, 166, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 777, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "815699070785171791" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6157143333929531829" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88e48e73c1c90b58d85b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9100115904610670206" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18834dcfb45b3e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14810693791391169271" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "480101060747978405" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17060575356923930071" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6050568983169651413" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18059640355258814792" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1f40f80163a84e034e6b3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18422117048771253704" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63d1d3c3cf5b23" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9044850494912623542" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69a652c3769b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11254085873229783187" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1974159304612346607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11271006713573405155" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12079273353009520671" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4650828612587145096" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15027511493445130669" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13918458503853296265" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2056504161700742323" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0b51f1fbadc4314fbf1b5572913d8208b9b54a88e48e73c1c90b58d85b1b7e4a1b336533967e4718834dcfb45b3e1bcd8a278868f43af71b06a9a95efe2be6a51becc356e5753be5d71b53f7f06ed2d2d2d51bfaa0bb381282d1484bd1f40f80163a84e034e6b31bffa881d9eead95c84763d1d3c3cf5b23ff1b7d85c39a7bc873b64669a652c3769b1b9c2e8b79999a6093d8669f1b1b659f6d91737aef9f1b9c6aa8e3bf95f1e3ffff1ba7a2331da6f9601fd8669f1b408b0ffb647ac7889f1bd08c721588e599adffff1bc1284c441f30ca899f1b1c8a2ba3a54904b3ffff", + "cborBytes": [ + 191, 27, 11, 81, 241, 251, 173, 196, 49, 79, 191, 27, 85, 114, 145, 61, 130, 8, 185, 181, 74, 136, 228, 142, 115, + 193, 201, 11, 88, 216, 91, 27, 126, 74, 27, 51, 101, 51, 150, 126, 71, 24, 131, 77, 207, 180, 91, 62, 27, 205, + 138, 39, 136, 104, 244, 58, 247, 27, 6, 169, 169, 94, 254, 43, 230, 165, 27, 236, 195, 86, 229, 117, 59, 229, 215, + 27, 83, 247, 240, 110, 210, 210, 210, 213, 27, 250, 160, 187, 56, 18, 130, 209, 72, 75, 209, 244, 15, 128, 22, 58, + 132, 224, 52, 230, 179, 27, 255, 168, 129, 217, 238, 173, 149, 200, 71, 99, 209, 211, 195, 207, 91, 35, 255, 27, + 125, 133, 195, 154, 123, 200, 115, 182, 70, 105, 166, 82, 195, 118, 155, 27, 156, 46, 139, 121, 153, 154, 96, 147, + 216, 102, 159, 27, 27, 101, 159, 109, 145, 115, 122, 239, 159, 27, 156, 106, 168, 227, 191, 149, 241, 227, 255, + 255, 27, 167, 162, 51, 29, 166, 249, 96, 31, 216, 102, 159, 27, 64, 139, 15, 251, 100, 122, 199, 136, 159, 27, + 208, 140, 114, 21, 136, 229, 153, 173, 255, 255, 27, 193, 40, 76, 68, 31, 48, 202, 137, 159, 27, 28, 138, 43, 163, + 165, 73, 4, 179, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 778, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "47a47d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6004986409197299918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5750117a649f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73db8025d39d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1179332619416321215" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97a06f272d26af2c250a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6893cb0ae000" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c" + } + } + ] + }, + "cborHex": "bf4347a47dbf1b5355ff52c940e8ce465750117a649f4673db8025d39d1b105dd4c4dc573cbf4a97a06f272d26af2c250a466893cb0ae000ff41bf415cff", + "cborBytes": [ + 191, 67, 71, 164, 125, 191, 27, 83, 85, 255, 82, 201, 64, 232, 206, 70, 87, 80, 17, 122, 100, 159, 70, 115, 219, + 128, 37, 211, 157, 27, 16, 93, 212, 196, 220, 87, 60, 191, 74, 151, 160, 111, 39, 45, 38, 175, 44, 37, 10, 70, + 104, 147, 203, 10, 224, 0, 255, 65, 191, 65, 92, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 779, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8240414187760068106" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8869bf9f86a4fc1ca18416" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0f03c5c8f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec7b4911417ec8a4d0d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e2d540121" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9a0bd87" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b725bd50b4f87260a804b8869bf9f86a4fc1ca1841645a0f03c5c8f4aec7b4911417ec8a4d0d7452e2d54012144f9a0bd87a0ff", + "cborBytes": [ + 191, 27, 114, 91, 213, 11, 79, 135, 38, 10, 128, 75, 136, 105, 191, 159, 134, 164, 252, 28, 161, 132, 22, 69, 160, + 240, 60, 92, 143, 74, 236, 123, 73, 17, 65, 126, 200, 164, 208, 215, 69, 46, 45, 84, 1, 33, 68, 249, 160, 189, + 135, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 780, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "80dc8392f5686890b5487a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + }, + "cborHex": "bf4b80dc8392f5686890b5487a07ff", + "cborBytes": [191, 75, 128, 220, 131, 146, 245, 104, 104, 144, 181, 72, 122, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 781, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7560686590312137198" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5243528922765538848" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6551559359088409300" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6810274939936772848" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "428527859022215043" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8318510060798892859" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "338210840311192286" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16994476873291571326" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2543166764408737810" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17686146690888506034" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14915966341005806640" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8389276131656689257" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4142193977046201465" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d8d1de08a46c23a78" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1053973548747530688" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10650302555797796116" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11915415714046115397" + } + } + } + ] + }, + "cborHex": "bf1b68ecf465499d41eebf1b48c4c1c61aed36201b5aebd0868359bad41b5e82f4f9b9ad12f01b05f26fd13d60b7831b737148d3b26e5b3b1b04b190f7a3ef5ade1bebd882acf822a07e1b234b24b2ad2990121bf571d0b5cbdc1ab21bcf00285be5558c30ff1b746cb231860f66699f1b397c0779d099f479490d8d1de08a46c23a781b0ea0775bbfc121c0ff1b93cd79bf2cc335141ba55c0f761ad37e45ff", + "cborBytes": [ + 191, 27, 104, 236, 244, 101, 73, 157, 65, 238, 191, 27, 72, 196, 193, 198, 26, 237, 54, 32, 27, 90, 235, 208, 134, + 131, 89, 186, 212, 27, 94, 130, 244, 249, 185, 173, 18, 240, 27, 5, 242, 111, 209, 61, 96, 183, 131, 27, 115, 113, + 72, 211, 178, 110, 91, 59, 27, 4, 177, 144, 247, 163, 239, 90, 222, 27, 235, 216, 130, 172, 248, 34, 160, 126, 27, + 35, 75, 36, 178, 173, 41, 144, 18, 27, 245, 113, 208, 181, 203, 220, 26, 178, 27, 207, 0, 40, 91, 229, 85, 140, + 48, 255, 27, 116, 108, 178, 49, 134, 15, 102, 105, 159, 27, 57, 124, 7, 121, 208, 153, 244, 121, 73, 13, 141, 29, + 224, 138, 70, 194, 58, 120, 27, 14, 160, 119, 91, 191, 193, 33, 192, 255, 27, 147, 205, 121, 191, 44, 195, 53, 20, + 27, 165, 92, 15, 118, 26, 211, 126, 69, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 782, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1c0ea0d271591b4e82b75" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9a8841ad89b53" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b98a39051d59b8" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9191552236944474029" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15120533587130721727" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "811437361498575" + } + } + ] + } + } + ] + }, + "cborHex": "bf4ba1c0ea0d271591b4e82b7547c9a8841ad89b5347b98a39051d59b8a041e89f1b7f8ef40f8185bfad1bd1d6ed2f7b4a25bf1b0002e1ff7bb089cfffff", + "cborBytes": [ + 191, 75, 161, 192, 234, 13, 39, 21, 145, 180, 232, 43, 117, 71, 201, 168, 132, 26, 216, 155, 83, 71, 185, 138, 57, + 5, 29, 89, 184, 160, 65, 232, 159, 27, 127, 142, 244, 15, 129, 133, 191, 173, 27, 209, 214, 237, 47, 123, 74, 37, + 191, 27, 0, 2, 225, 255, 123, 176, 137, 207, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 783, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcfe58b4000c" + } + } + ] + }, + "cborHex": "bf0d46fcfe58b4000cff", + "cborBytes": [191, 13, 70, 252, 254, 88, 180, 0, 12, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 784, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1766667439274629518" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16357555343426358399" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5438082976306418374" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7aaab94cd2" + }, + { + "_tag": "ByteArray", + "bytearray": "08b1db367d69291fb9b0b9f7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6300877078763221037" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5072966782719609895" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47ea2925b245" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7799798463139205218" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8749111545796157334" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10736569272139879672" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8180746573066326754" + } + }, + { + "_tag": "ByteArray", + "bytearray": "67fed90a6c48cd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14340270522376279003" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9f66" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9740499239168204766" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1414410535533310019" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11339322796041922767" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15319894170121321329" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "923bd31baf0bff30" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15997324679288502152" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1045366992498552792" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10829652868508189679" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12701226879151434719" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4064618853039622041" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b188476ad0236998e9f1be301b5eb36b88c7f1b4b77f3a79dd7d2c6457aaab94cd24c08b1db367d69291fb9b0b9f71b57713651d515302dff1b4666cc69415bcc274647ea2925b2451b6c3e73608b0cd062d8669f1b796b16989b72df969f1b94fff4de444594f81b7187d9aa2d1cd2e24767fed90a6c48cd1bc702e00fe53e53db429f66ffff1b872d34735d955fde1b13a0fee3610870431b9d5d5e01339168cfbf1bd49b329456a8bb7148923bd31baf0bff30ff1bde01ea09d194b788bf1b0e81e3bdb7cb6fd81b964aa7e7ec3883ef1bb043d28d7776ebdf1b38686d4fc2c84799ffff", + "cborBytes": [ + 191, 27, 24, 132, 118, 173, 2, 54, 153, 142, 159, 27, 227, 1, 181, 235, 54, 184, 140, 127, 27, 75, 119, 243, 167, + 157, 215, 210, 198, 69, 122, 170, 185, 76, 210, 76, 8, 177, 219, 54, 125, 105, 41, 31, 185, 176, 185, 247, 27, 87, + 113, 54, 81, 213, 21, 48, 45, 255, 27, 70, 102, 204, 105, 65, 91, 204, 39, 70, 71, 234, 41, 37, 178, 69, 27, 108, + 62, 115, 96, 139, 12, 208, 98, 216, 102, 159, 27, 121, 107, 22, 152, 155, 114, 223, 150, 159, 27, 148, 255, 244, + 222, 68, 69, 148, 248, 27, 113, 135, 217, 170, 45, 28, 210, 226, 71, 103, 254, 217, 10, 108, 72, 205, 27, 199, 2, + 224, 15, 229, 62, 83, 219, 66, 159, 102, 255, 255, 27, 135, 45, 52, 115, 93, 149, 95, 222, 27, 19, 160, 254, 227, + 97, 8, 112, 67, 27, 157, 93, 94, 1, 51, 145, 104, 207, 191, 27, 212, 155, 50, 148, 86, 168, 187, 113, 72, 146, 59, + 211, 27, 175, 11, 255, 48, 255, 27, 222, 1, 234, 9, 209, 148, 183, 136, 191, 27, 14, 129, 227, 189, 183, 203, 111, + 216, 27, 150, 74, 167, 231, 236, 56, 131, 239, 27, 176, 67, 210, 141, 119, 118, 235, 223, 27, 56, 104, 109, 79, + 194, 200, 71, 153, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 785, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ae155592590eb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ede81a660" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72016ef1196ef87b4f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "91b7e13536" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddede6d0df2c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96e17d71b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52e9f937db8c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c00af6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6feac8d675d3cece" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d999e760510bc72d7" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8dfc14766fced7b20ce2b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9115178340837718999" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1d6be3584b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15012123130215521164" + } + } + } + ] + }, + "cborHex": "bf473ae155592590eb450ede81a6604972016ef1196ef87b4fbf4591b7e1353646ddede6d0df2c4596e17d71b44652e9f937db8c43c00af6486feac8d675d3cece41eb497d999e760510bc72d7ff4b8dfc14766fced7b20ce2b31b7e7f9e681df77bd746b1d6be3584b11bd055c67304ebdb8cff", + "cborBytes": [ + 191, 71, 58, 225, 85, 89, 37, 144, 235, 69, 14, 222, 129, 166, 96, 73, 114, 1, 110, 241, 25, 110, 248, 123, 79, + 191, 69, 145, 183, 225, 53, 54, 70, 221, 237, 230, 208, 223, 44, 69, 150, 225, 125, 113, 180, 70, 82, 233, 249, + 55, 219, 140, 67, 192, 10, 246, 72, 111, 234, 200, 214, 117, 211, 206, 206, 65, 235, 73, 125, 153, 158, 118, 5, + 16, 188, 114, 215, 255, 75, 141, 252, 20, 118, 111, 206, 215, 178, 12, 226, 179, 27, 126, 127, 158, 104, 29, 247, + 123, 215, 70, 177, 214, 190, 53, 132, 177, 27, 208, 85, 198, 115, 4, 235, 219, 140, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 786, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e1f242774fbea19" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14816580891275247422" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9095057986134776011" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "215772205037495785" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7a7962afec32e625d361" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5232409423058146335" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8af21bde62" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f032628d209f5" + } + } + ] + }, + "cborHex": "bf485e1f242774fbea19d8669f1bcd9f11d1aa4d3f3e9f1b7e38230cfb2498cb1b02fe93ad61a9a5e94a7a7962afec32e625d3611b489d40a5d4c9941f458af21bde62ffff4166479f032628d209f5ff", + "cborBytes": [ + 191, 72, 94, 31, 36, 39, 116, 251, 234, 25, 216, 102, 159, 27, 205, 159, 17, 209, 170, 77, 63, 62, 159, 27, 126, + 56, 35, 12, 251, 36, 152, 203, 27, 2, 254, 147, 173, 97, 169, 165, 233, 74, 122, 121, 98, 175, 236, 50, 230, 37, + 211, 97, 27, 72, 157, 64, 165, 212, 201, 148, 31, 69, 138, 242, 27, 222, 98, 255, 255, 65, 102, 71, 159, 3, 38, + 40, 210, 9, 245, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 787, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05d1da0720040207040306fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f8f00a20507" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00fe038201" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8f5fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01f8063a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "226547815347795385" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "03f80004" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9761215013047321482" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee2eff03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eeea01f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc92025107f80401" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fad200dc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4c05d1da0720040207040306fe1bfffffffffffffff6463f8f00a20507bf4500fe03820143c8f5fa4401f8063a1b0324dc09aa7235b94403f800041b8776cd5654e5438a44ee2eff03413744eeea01f748bc92025107f8040144fad200dc08ffff", + "cborBytes": [ + 191, 76, 5, 209, 218, 7, 32, 4, 2, 7, 4, 3, 6, 254, 27, 255, 255, 255, 255, 255, 255, 255, 246, 70, 63, 143, 0, + 162, 5, 7, 191, 69, 0, 254, 3, 130, 1, 67, 200, 245, 250, 68, 1, 248, 6, 58, 27, 3, 36, 220, 9, 170, 114, 53, 185, + 68, 3, 248, 0, 4, 27, 135, 118, 205, 86, 84, 229, 67, 138, 68, 238, 46, 255, 3, 65, 55, 68, 238, 234, 1, 247, 72, + 188, 146, 2, 81, 7, 248, 4, 1, 68, 250, 210, 0, 220, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 788, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24b8f26ccb40d81bf63c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9676094683967052230" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b08f1d078" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18247169493876938138" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9d0bf295ed257a2f3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7243170057786672251" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11015970832107454682" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a24b8f26ccb40d81bf63c1b864864d952e6d9c6457b08f1d0781bfd3af7fa1ee1159a49e9d0bf295ed257a2f39f1b6484e8caa61ec47b1b98e0971b4fd440daffff", + "cborBytes": [ + 191, 74, 36, 184, 242, 108, 203, 64, 216, 27, 246, 60, 27, 134, 72, 100, 217, 82, 230, 217, 198, 69, 123, 8, 241, + 208, 120, 27, 253, 58, 247, 250, 30, 225, 21, 154, 73, 233, 208, 191, 41, 94, 210, 87, 162, 243, 159, 27, 100, + 132, 232, 202, 166, 30, 196, 123, 27, 152, 224, 151, 27, 79, 212, 64, 218, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 789, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "596525048377720184" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4450840971108772528" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06c78fcc6150b651" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5971315659198054391" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8359331340122103766" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14246577146176256049" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4ac04a285203187a2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15716128739404838104" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "feba2bf05384" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1982684515084916719" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d97ae4268894292ab01d3617" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9759443418633605254" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6424376426394369203" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "df5ce714" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10288426672286133367" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14088817194305666767" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3906419279048236327" + } + }, + { + "_tag": "ByteArray", + "bytearray": "73d3d5ecc9ab3369005c80" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11978410715746478267" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4514183446095601590" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16773697556841545524" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "569cda35d3" + } + } + ] + }, + "cborHex": "bf1b0847485ef82d3d78bf1b3dc490481ab16ab04806c78fcc6150b6511b52de5ff4643a3ff71b74024f906fc49fd61bc5b6026ecf08b83149c4ac04a285203187a21bda1ae7d2248874d846feba2bf05384ff1b1b83e90fcf4dd7ef4cd97ae4268894292ab01d36171b87708214dd2e1086d8669f1b5927f8526ea13cb39f44df5ce714ffff1b8ec7d58c4b44ec77d8669f1bc3858897ac013ecf9f1b363663a31f685d274b73d3d5ecc9ab3369005c80ffff1ba63bdd14e5cd28bb1b3ea599ed537a1fb61be8c8250e9d60bf3445569cda35d3ff", + "cborBytes": [ + 191, 27, 8, 71, 72, 94, 248, 45, 61, 120, 191, 27, 61, 196, 144, 72, 26, 177, 106, 176, 72, 6, 199, 143, 204, 97, + 80, 182, 81, 27, 82, 222, 95, 244, 100, 58, 63, 247, 27, 116, 2, 79, 144, 111, 196, 159, 214, 27, 197, 182, 2, + 110, 207, 8, 184, 49, 73, 196, 172, 4, 162, 133, 32, 49, 135, 162, 27, 218, 26, 231, 210, 36, 136, 116, 216, 70, + 254, 186, 43, 240, 83, 132, 255, 27, 27, 131, 233, 15, 207, 77, 215, 239, 76, 217, 122, 228, 38, 136, 148, 41, 42, + 176, 29, 54, 23, 27, 135, 112, 130, 20, 221, 46, 16, 134, 216, 102, 159, 27, 89, 39, 248, 82, 110, 161, 60, 179, + 159, 68, 223, 92, 231, 20, 255, 255, 27, 142, 199, 213, 140, 75, 68, 236, 119, 216, 102, 159, 27, 195, 133, 136, + 151, 172, 1, 62, 207, 159, 27, 54, 54, 99, 163, 31, 104, 93, 39, 75, 115, 211, 213, 236, 201, 171, 51, 105, 0, 92, + 128, 255, 255, 27, 166, 59, 221, 20, 229, 205, 40, 187, 27, 62, 165, 153, 237, 83, 122, 31, 182, 27, 232, 200, 37, + 14, 157, 96, 191, 52, 69, 86, 156, 218, 53, 211, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 790, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "032056e634c067a48a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2055001750847939904" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4427c238c8db" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "073077d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17939929904675927194" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16361450320028209488" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adba9d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15652927591745480150" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed31e2ff4900021f180da2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12763858097896193687" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8829104777311244472" + } + } + ] + } + } + ] + }, + "cborHex": "bf49032056e634c067a48a1b1c84d5345c18e540464427c238c8db9f44073077d81bf8f76f32cf9db49a1be30f8c611f7b9150ff43adba9dd8669f1bd93a5eb640e665d680ff4bed31e2ff4900021f180da2d8669f1bb122555070987e979f1b7a874804305750b8ffffff", + "cborBytes": [ + 191, 73, 3, 32, 86, 230, 52, 192, 103, 164, 138, 27, 28, 132, 213, 52, 92, 24, 229, 64, 70, 68, 39, 194, 56, 200, + 219, 159, 68, 7, 48, 119, 216, 27, 248, 247, 111, 50, 207, 157, 180, 154, 27, 227, 15, 140, 97, 31, 123, 145, 80, + 255, 67, 173, 186, 157, 216, 102, 159, 27, 217, 58, 94, 182, 64, 230, 101, 214, 128, 255, 75, 237, 49, 226, 255, + 73, 0, 2, 31, 24, 13, 162, 216, 102, 159, 27, 177, 34, 85, 80, 112, 152, 126, 151, 159, 27, 122, 135, 72, 4, 48, + 87, 80, 184, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 791, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13e41619d8a234ba862340" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7672701001927060738" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3544e40d49" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d0005fff902f806df03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bf9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a97d8903a45478c71" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d026224ebc249a1d2e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf07bf4b13e41619d8a234ba8623401b6a7ae8e8d7a56d02453544e40d494a5d0005fff902f806df03425bf9491a97d8903a45478c7149d026224ebc249a1d2e4106ff13d8669f1bfffffffffffffffc80ffff", + "cborBytes": [ + 191, 7, 191, 75, 19, 228, 22, 25, 216, 162, 52, 186, 134, 35, 64, 27, 106, 122, 232, 232, 215, 165, 109, 2, 69, + 53, 68, 228, 13, 73, 74, 93, 0, 5, 255, 249, 2, 248, 6, 223, 3, 66, 91, 249, 73, 26, 151, 216, 144, 58, 69, 71, + 140, 113, 73, 208, 38, 34, 78, 188, 36, 154, 29, 46, 65, 6, 255, 19, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 252, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 792, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "52773366c53f6ce4244a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0007ebfa07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73af0703" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2403891330981319147" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88bb6e828991097a66b6b2" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4a52773366c53f6ce4244a450007ebfa074473af0703d8669f1b215c566dddc851eb80ff4b88bb6e828991097a66b6b2a0ff", + "cborBytes": [ + 191, 74, 82, 119, 51, 102, 197, 63, 108, 228, 36, 74, 69, 0, 7, 235, 250, 7, 68, 115, 175, 7, 3, 216, 102, 159, + 27, 33, 92, 86, 109, 221, 200, 81, 235, 128, 255, 75, 136, 187, 110, 130, 137, 145, 9, 122, 102, 182, 178, 160, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 793, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14442188403425081400" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d2b592e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8416280036956596052" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14582998190156938112" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c772ab5ac09e594e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5341063943673071934" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6d70e81ed997aea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6639384500486513848" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4720747536668123714" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18231626908973408342" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8269565987294439837" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bc86cf5d5bd6af8389f44d2b592e81b74cca21a2d0267541bca6137970477fb80ff48c772ab5ac09e594ebf1b4a1f455bcd47c93e48c6d70e81ed997aea1b5c23d506b6bba4b81b418376df7d6762421bfd03c01412d020561b72c366738f56699dffff", + "cborBytes": [ + 191, 27, 200, 108, 245, 213, 189, 106, 248, 56, 159, 68, 210, 181, 146, 232, 27, 116, 204, 162, 26, 45, 2, 103, + 84, 27, 202, 97, 55, 151, 4, 119, 251, 128, 255, 72, 199, 114, 171, 90, 192, 158, 89, 78, 191, 27, 74, 31, 69, 91, + 205, 71, 201, 62, 72, 198, 215, 14, 129, 237, 153, 122, 234, 27, 92, 35, 213, 6, 182, 187, 164, 184, 27, 65, 131, + 118, 223, 125, 103, 98, 66, 27, 253, 3, 192, 20, 18, 208, 32, 86, 27, 114, 195, 102, 115, 143, 86, 105, 157, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 794, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7874c3e2a256ee3fe9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05ad85ccc5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10207132876160938286" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "119cfc3103771bf6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9393999890880463235" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3dd6ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "534130488422698888" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5391" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12192612756235894850" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70ef6e28b0c058871112da65" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3005135111268972260" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b5b0e5c23" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3048276524858603569" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7dab60bfe4f5cc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "773e26e7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14767015765512280568" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9086ba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "809382e96d630b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b02997a7c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "402343646aa4e87daa2230" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0f4d234ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1649500353938757029" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f442aa286e337c6d3b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2fd31efa110db4e5671822" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85e2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "520043249886453131" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63604c8412eb5ceb074d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3696773880938403875" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16169172596094706012" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1833940085306435688" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c3e6219058ce0b6bec26c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7720214868158543920" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7832856474987091992" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11554866249370359991" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b862cd75d8cf6831" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5270564342123468977" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16075155374950928205" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d378b95ffaa2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11143195902244761782" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17875850119969510643" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13022387507868998169" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c36fd658d95f8e" + } + ] + } + } + ] + }, + "cborHex": "bf497874c3e2a256ee3fe9bf4505ad85ccc51b8da705456ac8b12e48119cfc3103771bf61b825e312113fd0183433dd6ab1b07699cd96a240f884253911ba934dcb3db5640424c70ef6e28b0c058871112da651b29b46276393db6e4458b5b0e5c231b2a4da759515bf831ff477dab60bfe4f5ccbf44773e26e71bcceefa9987f3d9f8439086ba47809382e96d630b45b02997a7c04b402343646aa4e87daa223045b0f4d234ae1b16e433d51d6695a549f442aa286e337c6d3b4b2fd31efa110db4e5671822ff4285e2bf1b0737909499525d8b4a63604c8412eb5ceb074d1b334d94422446982341671be06470cee634a15c1b197376ca7c0a2868ff4b9c3e6219058ce0b6bec26c9f1b6b23b684e64778301b6cb3e576b83958181ba05b21a22cded8b7ff48b862cd75d8cf6831d8669f1b4924ce58321c18b19f1bdf166ca4c9294f4dffff46d378b95ffaa2d8669f1b9aa495a247e330b69f1bf813c6f94ae814f3415c1bb4b8d0715e041a1947c36fd658d95f8effffff", + "cborBytes": [ + 191, 73, 120, 116, 195, 226, 162, 86, 238, 63, 233, 191, 69, 5, 173, 133, 204, 197, 27, 141, 167, 5, 69, 106, 200, + 177, 46, 72, 17, 156, 252, 49, 3, 119, 27, 246, 27, 130, 94, 49, 33, 19, 253, 1, 131, 67, 61, 214, 171, 27, 7, + 105, 156, 217, 106, 36, 15, 136, 66, 83, 145, 27, 169, 52, 220, 179, 219, 86, 64, 66, 76, 112, 239, 110, 40, 176, + 192, 88, 135, 17, 18, 218, 101, 27, 41, 180, 98, 118, 57, 61, 182, 228, 69, 139, 91, 14, 92, 35, 27, 42, 77, 167, + 89, 81, 91, 248, 49, 255, 71, 125, 171, 96, 191, 228, 245, 204, 191, 68, 119, 62, 38, 231, 27, 204, 238, 250, 153, + 135, 243, 217, 248, 67, 144, 134, 186, 71, 128, 147, 130, 233, 109, 99, 11, 69, 176, 41, 151, 167, 192, 75, 64, + 35, 67, 100, 106, 164, 232, 125, 170, 34, 48, 69, 176, 244, 210, 52, 174, 27, 22, 228, 51, 213, 29, 102, 149, 165, + 73, 244, 66, 170, 40, 110, 51, 124, 109, 59, 75, 47, 211, 30, 250, 17, 13, 180, 229, 103, 24, 34, 255, 66, 133, + 226, 191, 27, 7, 55, 144, 148, 153, 82, 93, 139, 74, 99, 96, 76, 132, 18, 235, 92, 235, 7, 77, 27, 51, 77, 148, + 66, 36, 70, 152, 35, 65, 103, 27, 224, 100, 112, 206, 230, 52, 161, 92, 27, 25, 115, 118, 202, 124, 10, 40, 104, + 255, 75, 156, 62, 98, 25, 5, 140, 224, 182, 190, 194, 108, 159, 27, 107, 35, 182, 132, 230, 71, 120, 48, 27, 108, + 179, 229, 118, 184, 57, 88, 24, 27, 160, 91, 33, 162, 44, 222, 216, 183, 255, 72, 184, 98, 205, 117, 216, 207, + 104, 49, 216, 102, 159, 27, 73, 36, 206, 88, 50, 28, 24, 177, 159, 27, 223, 22, 108, 164, 201, 41, 79, 77, 255, + 255, 70, 211, 120, 185, 95, 250, 162, 216, 102, 159, 27, 154, 164, 149, 162, 71, 227, 48, 182, 159, 27, 248, 19, + 198, 249, 74, 232, 20, 243, 65, 92, 27, 180, 184, 208, 113, 94, 4, 26, 25, 71, 195, 111, 214, 88, 217, 95, 142, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 795, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1084740594067582104" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16658258039021535832" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7245445894248636042" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8868897256209477107" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f16d216857980272" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8154005396447826426" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2413ceb4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9321287c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a22da065bbb7588af321" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4995238bb33a3cc91bc02b51" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa09" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abde03ffeda6f0686b" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11040064799239327762" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23d0a327379834" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d89978261" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11514165701587844061" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e378acabca56e5555f75d9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16488275218111785572" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14692808254673525072" + } + }, + { + "_tag": "ByteArray", + "bytearray": "006c41ec633a05" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17650268569180698212" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10691334760274899739" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0f0dc5d2b6d82c981be72e056d60ac82581b648cfea71e009e8a9f41fd1b7b14a710a9cd6df348f16d216857980272ff1b7128d8b4cfe411fabf442413ceb4449321287c4aa22da065bbb7588af3214c4995238bb33a3cc91bc02b5142aa0949abde03ffeda6f0686bff1b993630712ff45012bf4723d0a327379834455d89978261ff1b9fca88b370213bdd4be378acabca56e5555f75d91be4d21ef3c66dea649f1bcbe7574304be195047006c41ec633a051bf4f259bfa041f6641b945f4051c0f8b31bffff", + "cborBytes": [ + 191, 27, 15, 13, 197, 210, 182, 216, 44, 152, 27, 231, 46, 5, 109, 96, 172, 130, 88, 27, 100, 140, 254, 167, 30, + 0, 158, 138, 159, 65, 253, 27, 123, 20, 167, 16, 169, 205, 109, 243, 72, 241, 109, 33, 104, 87, 152, 2, 114, 255, + 27, 113, 40, 216, 180, 207, 228, 17, 250, 191, 68, 36, 19, 206, 180, 68, 147, 33, 40, 124, 74, 162, 45, 160, 101, + 187, 183, 88, 138, 243, 33, 76, 73, 149, 35, 139, 179, 58, 60, 201, 27, 192, 43, 81, 66, 170, 9, 73, 171, 222, 3, + 255, 237, 166, 240, 104, 107, 255, 27, 153, 54, 48, 113, 47, 244, 80, 18, 191, 71, 35, 208, 163, 39, 55, 152, 52, + 69, 93, 137, 151, 130, 97, 255, 27, 159, 202, 136, 179, 112, 33, 59, 221, 75, 227, 120, 172, 171, 202, 86, 229, + 85, 95, 117, 217, 27, 228, 210, 30, 243, 198, 109, 234, 100, 159, 27, 203, 231, 87, 67, 4, 190, 25, 80, 71, 0, + 108, 65, 236, 99, 58, 5, 27, 244, 242, 89, 191, 160, 65, 246, 100, 27, 148, 95, 64, 81, 192, 248, 179, 27, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 796, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef719c51" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a4464" + } + } + ] + }, + "cborHex": "bf44ef719c51438a4464ff", + "cborBytes": [191, 68, 239, 113, 156, 81, 67, 138, 68, 100, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 797, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2234267019578219822" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8452820865023623605" + } + } + } + ] + }, + "cborHex": "bf1b1f01b60443549d2e1b754e73cab1be41b5ff", + "cborBytes": [191, 27, 31, 1, 182, 4, 67, 84, 157, 46, 27, 117, 78, 115, 202, 177, 190, 65, 181, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 798, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2500902898468565066" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1690506577042112134" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1eb7" + }, + { + "_tag": "ByteArray", + "bytearray": "d15e1cca1627b0c6" + }, + { + "_tag": "ByteArray", + "bytearray": "d196bd54" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11036858464438710661" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15419461007008848318" + } + } + } + ] + }, + "cborHex": "bf1b22b4fdef90f6b04a9f1b1775e2c66f0e7e86421eb748d15e1cca1627b0c644d196bd54ff1b992acc4c3121f1851bd5fcee170ebfd9beff", + "cborBytes": [ + 191, 27, 34, 180, 253, 239, 144, 246, 176, 74, 159, 27, 23, 117, 226, 198, 111, 14, 126, 134, 66, 30, 183, 72, + 209, 94, 28, 202, 22, 39, 176, 198, 68, 209, 150, 189, 84, 255, 27, 153, 42, 204, 76, 49, 33, 241, 133, 27, 213, + 252, 238, 23, 14, 191, 217, 190, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 799, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c144f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16966213457918478236" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15767006749029655295" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "acd99f8ee737af56b1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c7740305c62d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3f852fb3c5a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8210443554082758869" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8141628677767615150" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02b4f01809" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10824696285943997824" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2968e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adc31e25b6a708" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e82a7e4330c6e2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5116146279271224106" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c7df4594" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17879992918420329361" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0016b7bca7e04722" + }, + { + "_tag": "ByteArray", + "bytearray": "f1bc" + } + ] + } + } + ] + }, + "cborHex": "bf434c144f1beb74193fc6aec79c416d1bdacfa919df1962ff49acd99f8ee737af56b19f46c7740305c62dff46d3f852fb3c5abf1b71f15ae9617fa0d51b70fce0256f78d2ae4502b4f018091b96390beb9d2ea58043f2968e47adc31e25b6a708ff47e82a7e4330c6e2d8669f1b470033ef3ae5d32a9f44c7df45941bf8227ed3b8f19391480016b7bca7e0472242f1bcffffff", + "cborBytes": [ + 191, 67, 76, 20, 79, 27, 235, 116, 25, 63, 198, 174, 199, 156, 65, 109, 27, 218, 207, 169, 25, 223, 25, 98, 255, + 73, 172, 217, 159, 142, 231, 55, 175, 86, 177, 159, 70, 199, 116, 3, 5, 198, 45, 255, 70, 211, 248, 82, 251, 60, + 90, 191, 27, 113, 241, 90, 233, 97, 127, 160, 213, 27, 112, 252, 224, 37, 111, 120, 210, 174, 69, 2, 180, 240, 24, + 9, 27, 150, 57, 11, 235, 157, 46, 165, 128, 67, 242, 150, 142, 71, 173, 195, 30, 37, 182, 167, 8, 255, 71, 232, + 42, 126, 67, 48, 198, 226, 216, 102, 159, 27, 71, 0, 51, 239, 58, 229, 211, 42, 159, 68, 199, 223, 69, 148, 27, + 248, 34, 126, 211, 184, 241, 147, 145, 72, 0, 22, 183, 188, 167, 224, 71, 34, 66, 241, 188, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 800, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c28e31581" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf457c28e3158180ff", + "cborBytes": [191, 69, 124, 40, 227, 21, 129, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 801, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2222412505773938484" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2578953959546870289" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6520998007264260915" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13765490522124170812" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10229608184878261856" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2727558310373999335" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10349192936435014760" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8782047955321799762" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bae9dfdcf40f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10843599172005743639" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14667344956384146722" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de6fb8a8bdadd1e1ca3d8047" + }, + { + "_tag": "ByteArray", + "bytearray": "947a965714014f9ade3701" + }, + { + "_tag": "ByteArray", + "bytearray": "e753ede49b73fb1d99002e0b" + }, + { + "_tag": "ByteArray", + "bytearray": "446daa13b0ad432c" + } + ] + } + } + ] + }, + "cborHex": "bf1b1ed798662f0a9734801b23ca48f65ae0da119f1b5a7f3d234c0433331bbf08d8b27a37b63cff1b8df6de720318e6601b25da3bd50201c2e71b8f9fb824b030dc68d8669f1b79e01a160966c4529f46bae9dfdcf40fffff1b967c33febe1f4c17d8669f1bcb8ce086e364f5229f4cde6fb8a8bdadd1e1ca3d80474b947a965714014f9ade37014ce753ede49b73fb1d99002e0b48446daa13b0ad432cffffff", + "cborBytes": [ + 191, 27, 30, 215, 152, 102, 47, 10, 151, 52, 128, 27, 35, 202, 72, 246, 90, 224, 218, 17, 159, 27, 90, 127, 61, + 35, 76, 4, 51, 51, 27, 191, 8, 216, 178, 122, 55, 182, 60, 255, 27, 141, 246, 222, 114, 3, 24, 230, 96, 27, 37, + 218, 59, 213, 2, 1, 194, 231, 27, 143, 159, 184, 36, 176, 48, 220, 104, 216, 102, 159, 27, 121, 224, 26, 22, 9, + 102, 196, 82, 159, 70, 186, 233, 223, 220, 244, 15, 255, 255, 27, 150, 124, 51, 254, 190, 31, 76, 23, 216, 102, + 159, 27, 203, 140, 224, 134, 227, 100, 245, 34, 159, 76, 222, 111, 184, 168, 189, 173, 209, 225, 202, 61, 128, 71, + 75, 148, 122, 150, 87, 20, 1, 79, 154, 222, 55, 1, 76, 231, 83, 237, 228, 155, 115, 251, 29, 153, 0, 46, 11, 72, + 68, 109, 170, 19, 176, 173, 67, 44, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 802, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8525729920752499828" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12746871853457342436" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17505056994746363341" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3861753398878979671" + } + }, + { + "_tag": "ByteArray", + "bytearray": "462344b2e9dceb" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a458764fe30bd18d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16680408158563853033" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f191766bff8e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c98045e40b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "383790088908806049" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15577039705682730989" + } + }, + { + "_tag": "ByteArray", + "bytearray": "12cd79774a1e9e6ef84d" + }, + { + "_tag": "ByteArray", + "bytearray": "00308114b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6979298426970887546" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b76517a31115f3c749f1bb0e5fc6a36bfffe41bf2ee749748d2edcd1b3597b4417e56c65747462344b2e9dcebff48a458764fe30bd18dd8669f1be77cb6d7f7b9e2e99f46f191766bff8effff45c98045e40bd8669f1b05537f0d6db997a19f1bd82cc314e55fdfed4a12cd79774a1e9e6ef84d4500308114b71b60db72f1010ad57affffff", + "cborBytes": [ + 191, 27, 118, 81, 122, 49, 17, 95, 60, 116, 159, 27, 176, 229, 252, 106, 54, 191, 255, 228, 27, 242, 238, 116, + 151, 72, 210, 237, 205, 27, 53, 151, 180, 65, 126, 86, 198, 87, 71, 70, 35, 68, 178, 233, 220, 235, 255, 72, 164, + 88, 118, 79, 227, 11, 209, 141, 216, 102, 159, 27, 231, 124, 182, 215, 247, 185, 226, 233, 159, 70, 241, 145, 118, + 107, 255, 142, 255, 255, 69, 201, 128, 69, 228, 11, 216, 102, 159, 27, 5, 83, 127, 13, 109, 185, 151, 161, 159, + 27, 216, 44, 195, 20, 229, 95, 223, 237, 74, 18, 205, 121, 119, 74, 30, 158, 110, 248, 77, 69, 0, 48, 129, 20, + 183, 27, 96, 219, 114, 241, 1, 10, 213, 122, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 803, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "535141924308365797" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17564705812036616317" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b076d34beaed1b1e5d8669f1bf3c25edfceae807d80ffff", + "cborBytes": [ + 191, 27, 7, 109, 52, 190, 174, 209, 177, 229, 216, 102, 159, 27, 243, 194, 94, 223, 206, 174, 128, 125, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 804, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2499320970656790336" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "602eddff595b584b54" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17129387316505157854" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10098601149259068636" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18148099180562863156" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15930533844360091555" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17987994438750897199" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b22af5f2e4baeb74049602eddff595b584b541bedb7cf024c5f20de9f1b8c25703d95f034dcff1bfbdb000d4e01d434d8669f1bdd14a020bb6bd7a39f1bf9a231a33773042fffffff", + "cborBytes": [ + 191, 27, 34, 175, 95, 46, 75, 174, 183, 64, 73, 96, 46, 221, 255, 89, 91, 88, 75, 84, 27, 237, 183, 207, 2, 76, + 95, 32, 222, 159, 27, 140, 37, 112, 61, 149, 240, 52, 220, 255, 27, 251, 219, 0, 13, 78, 1, 212, 52, 216, 102, + 159, 27, 221, 20, 160, 32, 187, 107, 215, 163, 159, 27, 249, 162, 49, 163, 55, 115, 4, 47, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 805, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2665492505857044181" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe15" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2dffb9fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a70105" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8235e36bac" + } + } + ] + } + } + ] + }, + "cborHex": "bf4105bf1b24fdbb4fcb132ed542fe15442dffb9fa414eff43a701058041c2bf4122458235e36bacffff", + "cborBytes": [ + 191, 65, 5, 191, 27, 36, 253, 187, 79, 203, 19, 46, 213, 66, 254, 21, 68, 45, 255, 185, 250, 65, 78, 255, 67, 167, + 1, 5, 128, 65, 194, 191, 65, 34, 69, 130, 53, 227, 107, 172, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 806, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0089" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13804667280105035811" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "527e08dcdc" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6303ea64fdfe02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6306040407fb78165c05faf9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f101fbfc0d847" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15685236015641787430" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "32" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17900453481999054984" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3cf50be00426bd5679" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90c20103" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12dfe75c3b74d9a678b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1607401160461749752" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c50f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1481326748449379445" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21d1712a144721d8f531796f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8691260644400965775" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd82807953dd3d53" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34ea4c5bceadee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfaa15" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "658df13c41045b5f1e3b7e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6d5d03f06e25ca5462f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15486431644845920241" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf420089d8669f1bbf9407c0411e58239f45527e08dcdcffff4205fb4194476303ea64fdfe02014c6306040407fb78165c05faf99f13ff477f101fbfc0d847d8669f1bd9ad270d627dfc269f41321bf86b2f99e8f53888493cf50be00426bd5679ffff4490c20103bf4a12dfe75c3b74d9a678b11b164ea2d6ccdf8df8431c50f91b148ebad44d9c14754c21d1712a144721d8f531796f1b789d8f81ffda288f48bd82807953dd3d534734ea4c5bceadee43bfaa154b658df13c41045b5f1e3b7e4ae6d5d03f06e25ca5462f1bd6eadb87c568cff1ffff", + "cborBytes": [ + 191, 66, 0, 137, 216, 102, 159, 27, 191, 148, 7, 192, 65, 30, 88, 35, 159, 69, 82, 126, 8, 220, 220, 255, 255, 66, + 5, 251, 65, 148, 71, 99, 3, 234, 100, 253, 254, 2, 1, 76, 99, 6, 4, 4, 7, 251, 120, 22, 92, 5, 250, 249, 159, 19, + 255, 71, 127, 16, 31, 191, 192, 216, 71, 216, 102, 159, 27, 217, 173, 39, 13, 98, 125, 252, 38, 159, 65, 50, 27, + 248, 107, 47, 153, 232, 245, 56, 136, 73, 60, 245, 11, 224, 4, 38, 189, 86, 121, 255, 255, 68, 144, 194, 1, 3, + 191, 74, 18, 223, 231, 92, 59, 116, 217, 166, 120, 177, 27, 22, 78, 162, 214, 204, 223, 141, 248, 67, 28, 80, 249, + 27, 20, 142, 186, 212, 77, 156, 20, 117, 76, 33, 209, 113, 42, 20, 71, 33, 216, 245, 49, 121, 111, 27, 120, 157, + 143, 129, 255, 218, 40, 143, 72, 189, 130, 128, 121, 83, 221, 61, 83, 71, 52, 234, 76, 91, 206, 173, 238, 67, 191, + 170, 21, 75, 101, 141, 241, 60, 65, 4, 91, 95, 30, 59, 126, 74, 230, 213, 208, 63, 6, 226, 92, 165, 70, 47, 27, + 214, 234, 219, 135, 197, 104, 207, 241, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 807, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30bdd7508f35fd7be707" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7eb6217971cfaaab" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4246578096243376100" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10904398721641551952" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a0b520df3bb7" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4f3057411392333539f5e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1982787529281149829" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfea8ce29918d85d57e235" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16758849593272012775" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5242655137686542185" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16686168693614029190" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a30bdd7508f35fd7be70780487eb6217971cfaaab9f1b3aeee047798a7fe41b975434dd04ab185046a0b520df3bb7ff4ba4f3057411392333539f5e1b1b8446c0abe09b854bbfea8ce29918d85d57e235d8669f1be89364e9b32d8fe79f1b48c1a71229aed7691be7912e050d1ba986ffffff", + "cborBytes": [ + 191, 74, 48, 189, 215, 80, 143, 53, 253, 123, 231, 7, 128, 72, 126, 182, 33, 121, 113, 207, 170, 171, 159, 27, 58, + 238, 224, 71, 121, 138, 127, 228, 27, 151, 84, 52, 221, 4, 171, 24, 80, 70, 160, 181, 32, 223, 59, 183, 255, 75, + 164, 243, 5, 116, 17, 57, 35, 51, 83, 159, 94, 27, 27, 132, 70, 192, 171, 224, 155, 133, 75, 191, 234, 140, 226, + 153, 24, 216, 93, 87, 226, 53, 216, 102, 159, 27, 232, 147, 100, 233, 179, 45, 143, 231, 159, 27, 72, 193, 167, + 18, 41, 174, 215, 105, 27, 231, 145, 46, 5, 13, 27, 169, 134, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 808, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1049340581989990245" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4001817754728431786" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16455766713734206695" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5472353276141404813" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17566317187342318179" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8683383901971618956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6016065648825190144" + } + } + } + ] + }, + "cborHex": "bf1b0e9001b31dea3f65d8669f1b3789500b9e7080aa9f1be45ea0a3c6d314e71b4bf1b44f95da828d1bf3c818695b60ba63ffff1b788193a6fd5d1c8c1b537d5bd547a7c700ff", + "cborBytes": [ + 191, 27, 14, 144, 1, 179, 29, 234, 63, 101, 216, 102, 159, 27, 55, 137, 80, 11, 158, 112, 128, 170, 159, 27, 228, + 94, 160, 163, 198, 211, 20, 231, 27, 75, 241, 180, 79, 149, 218, 130, 141, 27, 243, 200, 24, 105, 91, 96, 186, 99, + 255, 255, 27, 120, 129, 147, 166, 253, 93, 28, 140, 27, 83, 125, 91, 213, 71, 167, 199, 0, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 809, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3688605947890659991" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "11506a535392d013" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2236628271147825287" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3721423063772471191" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3097908ad40870c7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5810012704043672145" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12472599900301665146" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11638438185658078366" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0db505" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6391912465657107763" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08bc58b1d7898d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12289539473085535197" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05d9bbf634" + } + } + ] + }, + "cborHex": "bf1b33308f91086a72979f4811506a535392d0131b1f0a198ffc5cb887ff1b33a5268f3f1a9f97483097908ad40870c71b50a14fc58507a2519f1bad179386d30da37a1ba18409dde47dd49e430db505ff1b58b4a2858ee215334708bc58b1d7898d1baa8d3709ba6793dd4505d9bbf634ff", + "cborBytes": [ + 191, 27, 51, 48, 143, 145, 8, 106, 114, 151, 159, 72, 17, 80, 106, 83, 83, 146, 208, 19, 27, 31, 10, 25, 143, 252, + 92, 184, 135, 255, 27, 51, 165, 38, 143, 63, 26, 159, 151, 72, 48, 151, 144, 138, 212, 8, 112, 199, 27, 80, 161, + 79, 197, 133, 7, 162, 81, 159, 27, 173, 23, 147, 134, 211, 13, 163, 122, 27, 161, 132, 9, 221, 228, 125, 212, 158, + 67, 13, 181, 5, 255, 27, 88, 180, 162, 133, 142, 226, 21, 51, 71, 8, 188, 88, 177, 215, 137, 141, 27, 170, 141, + 55, 9, 186, 103, 147, 221, 69, 5, 217, 187, 246, 52, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 810, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdd189" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f9f501961daca76741f" + } + } + ] + }, + "cborHex": "bf43fdd1894a4f9f501961daca76741fff", + "cborBytes": [191, 67, 253, 209, 137, 74, 79, 159, 80, 25, 97, 218, 202, 118, 116, 31, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 811, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7435190430894583526" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "72" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff23f84e7763019f8e85" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a13592f5e6aa1d3907" + } + } + ] + }, + "cborHex": "bf1b672f1a4db6daeee69f4172ff4aff23f84e7763019f8e8549a13592f5e6aa1d3907ff", + "cborBytes": [ + 191, 27, 103, 47, 26, 77, 182, 218, 238, 230, 159, 65, 114, 255, 74, 255, 35, 248, 78, 119, 99, 1, 159, 142, 133, + 73, 161, 53, 146, 245, 230, 170, 29, 57, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 812, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1071945432873215491" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ca8d2acc3840c4" + }, + { + "_tag": "ByteArray", + "bytearray": "d2ead6bcd076d5497addd9c0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5752332568279971365" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d1" + } + ] + } + } + ] + }, + "cborHex": "bf1b0ee050b11902a6039f47ca8d2acc3840c44cd2ead6bcd076d5497addd9c01b4fd463fe623cf62541d1ffff", + "cborBytes": [ + 191, 27, 14, 224, 80, 177, 25, 2, 166, 3, 159, 71, 202, 141, 42, 204, 56, 64, 196, 76, 210, 234, 214, 188, 208, + 118, 213, 73, 122, 221, 217, 192, 27, 79, 212, 99, 254, 98, 60, 246, 37, 65, 209, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 813, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ffcd6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + } + ] + }, + "cborHex": "bf431ffcd61bffffffffffffffecff", + "cborBytes": [191, 67, 31, 252, 214, 27, 255, 255, 255, 255, 255, 255, 255, 236, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 814, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "374757186999494134" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13955111585495164878" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15679803307795979986" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6232d01089c805f1a12cb96" + } + } + ] + }, + "cborHex": "bf1b053367ad102125f6d8669f1bc1aa840cb660a7ce80ff1bd999da08852c9ed24cc6232d01089c805f1a12cb96ff", + "cborBytes": [ + 191, 27, 5, 51, 103, 173, 16, 33, 37, 246, 216, 102, 159, 27, 193, 170, 132, 12, 182, 96, 167, 206, 128, 255, 27, + 217, 153, 218, 8, 133, 44, 158, 210, 76, 198, 35, 45, 1, 8, 156, 128, 95, 26, 18, 203, 150, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 815, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4930632ad24601d75c78" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dfafd7025645ab686a4b8d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15438401028801215811" + } + }, + { + "_tag": "ByteArray", + "bytearray": "60a88a1e" + } + ] + } + } + ] + }, + "cborHex": "bf4a4930632ad24601d75c789f4bdfafd7025645ab686a4b8d1bd64037f085b8bd434460a88a1effff", + "cborBytes": [ + 191, 74, 73, 48, 99, 42, 210, 70, 1, 215, 92, 120, 159, 75, 223, 175, 215, 2, 86, 69, 171, 104, 106, 75, 141, 27, + 214, 64, 55, 240, 133, 184, 189, 67, 68, 96, 168, 138, 30, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 816, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2250042047607838067" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15934390652205869747" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5813836346790017800" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "907313636588549722" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c761c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16505611910637720679" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3505829659660984180" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17383529459158411310" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "729056678439785248" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12060285460479271962" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16834545720839531426" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11492319457615452184" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e50445c878" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13639621670835116070" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8aef2933e6ef826a2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3641919243473731948" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1f39c152315b95731bdd2253dfc9092ab31b50aee55ab8ac7b08d8669f1b0c976cf200ba765a9f437c761c1be50fb6950e0494671b30a73580331f1f741bf13eb3f0f3ace82e1b0a1e212fb3879320ffff1ba75ebdba69ace41a9f1be9a05223cdb66ba21b9f7ceba8647a981845e50445c878ff1bbd49aba4d0d8d826bf49e8aef2933e6ef826a21b328ab24197e9416cffff", + "cborBytes": [ + 191, 27, 31, 57, 193, 82, 49, 91, 149, 115, 27, 221, 34, 83, 223, 201, 9, 42, 179, 27, 80, 174, 229, 90, 184, 172, + 123, 8, 216, 102, 159, 27, 12, 151, 108, 242, 0, 186, 118, 90, 159, 67, 124, 118, 28, 27, 229, 15, 182, 149, 14, + 4, 148, 103, 27, 48, 167, 53, 128, 51, 31, 31, 116, 27, 241, 62, 179, 240, 243, 172, 232, 46, 27, 10, 30, 33, 47, + 179, 135, 147, 32, 255, 255, 27, 167, 94, 189, 186, 105, 172, 228, 26, 159, 27, 233, 160, 82, 35, 205, 182, 107, + 162, 27, 159, 124, 235, 168, 100, 122, 152, 24, 69, 229, 4, 69, 200, 120, 255, 27, 189, 73, 171, 164, 208, 216, + 216, 38, 191, 73, 232, 174, 242, 147, 62, 110, 248, 38, 162, 27, 50, 138, 178, 65, 151, 233, 65, 108, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 817, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "340319" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18434890955073176655" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "288324595741703385" + } + }, + { + "_tag": "ByteArray", + "bytearray": "584ce86071c0176e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4689162326512100467" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18246734917036535468" + } + }, + { + "_tag": "ByteArray", + "bytearray": "49a4163fa3c9b5" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00af07" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2" + } + } + ] + }, + "cborHex": "bf059f43340319ff07d8669f1bffd5e3a6c232c44f9f1b040055b135313cd948584ce86071c0176e1b4113404aade5e4731bfd396cbb50adeeac4749a4163fa3c9b5ffff084300af071bffffffffffffffff41f2ff", + "cborBytes": [ + 191, 5, 159, 67, 52, 3, 25, 255, 7, 216, 102, 159, 27, 255, 213, 227, 166, 194, 50, 196, 79, 159, 27, 4, 0, 85, + 177, 53, 49, 60, 217, 72, 88, 76, 232, 96, 113, 192, 23, 110, 27, 65, 19, 64, 74, 173, 229, 228, 115, 27, 253, 57, + 108, 187, 80, 173, 238, 172, 71, 73, 164, 22, 63, 163, 201, 181, 255, 255, 8, 67, 0, 175, 7, 27, 255, 255, 255, + 255, 255, 255, 255, 255, 65, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 818, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4668191411245336715" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f22cd92491f" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7667a506" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b40c8bf5afacec88bd8669f1bfffffffffffffffc80ff463f22cd92491fa0447667a50680ff", + "cborBytes": [ + 191, 27, 64, 200, 191, 90, 250, 206, 200, 139, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 128, + 255, 70, 63, 34, 205, 146, 73, 31, 160, 68, 118, 103, 165, 6, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 819, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b3441b763b9e93ffc17" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3590302460162559620" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1401292861185898423" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6423848200533043338" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a82a0573b6d660" + }, + { + "_tag": "ByteArray", + "bytearray": "6a81a4" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d04f4762" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb2b63" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f69e82bbefb87d9bf1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "26e4391ed95c6fb70e1c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16469817929407990875" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7019" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b10229326321f" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a9b3441b763b9e93ffc17d8669f1b31d35110b6334e849f1b1372646ed146b7b71b592617e743cde88a47a82a0573b6d660436a81a4ffff44d04f476243fb2b6349f69e82bbefb87d9bf1bf4a26e4391ed95c6fb70e1c1be4908c255db90c5b4270194128428f4c474b10229326321fffff", + "cborBytes": [ + 191, 74, 155, 52, 65, 183, 99, 185, 233, 63, 252, 23, 216, 102, 159, 27, 49, 211, 81, 16, 182, 51, 78, 132, 159, + 27, 19, 114, 100, 110, 209, 70, 183, 183, 27, 89, 38, 23, 231, 67, 205, 232, 138, 71, 168, 42, 5, 115, 182, 214, + 96, 67, 106, 129, 164, 255, 255, 68, 208, 79, 71, 98, 67, 251, 43, 99, 73, 246, 158, 130, 187, 239, 184, 125, 155, + 241, 191, 74, 38, 228, 57, 30, 217, 92, 111, 183, 14, 28, 27, 228, 144, 140, 37, 93, 185, 12, 91, 66, 112, 25, 65, + 40, 66, 143, 76, 71, 75, 16, 34, 147, 38, 50, 31, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 820, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82cc7a3a93bf116c8459b9a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1359593296683544407" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14115063129540717902" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7131406480060639134" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7596801229859681744" + } + } + ] + } + } + ] + }, + "cborHex": "bf044c82cc7a3a93bf116c8459b9a71b12de3ee65fd32f57d8669f1bc3e2c721aa7ced4e9f1bfffffffffffffff914ffff1b62f7d868e8eee79e9f1b696d42780f0975d0ffff", + "cborBytes": [ + 191, 4, 76, 130, 204, 122, 58, 147, 191, 17, 108, 132, 89, 185, 167, 27, 18, 222, 62, 230, 95, 211, 47, 87, 216, + 102, 159, 27, 195, 226, 199, 33, 170, 124, 237, 78, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 20, 255, 255, + 27, 98, 247, 216, 104, 232, 238, 231, 158, 159, 27, 105, 109, 66, 120, 15, 9, 117, 208, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 821, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5968452893468255094" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "29e4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7633122372041542258" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "660d44" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2710657692838586812" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9690311535181344444" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "164896118695704798" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b6657e8958" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb67c15261" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4414379971712450942" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5780635790501654699" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9943409785230337540" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "931724118017113346" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12827852132881979196" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2eb68f" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b52d43448cdd3e3769f4229e41b69ee4c5af89f8a72ff41629f43660d441b259e30cf5952e9bc1b867ae6fff15aaebc1b0249d42573b2b8de45b6657e8958ff45fb67c15261bf1b3d4307322585017e1b5038f19fd4c2b0ab1b89fe168468cc26041b0cee26261b12fd021bb205af8ccbaad73c432eb68fffff", + "cborBytes": [ + 191, 27, 82, 212, 52, 72, 205, 211, 227, 118, 159, 66, 41, 228, 27, 105, 238, 76, 90, 248, 159, 138, 114, 255, 65, + 98, 159, 67, 102, 13, 68, 27, 37, 158, 48, 207, 89, 82, 233, 188, 27, 134, 122, 230, 255, 241, 90, 174, 188, 27, + 2, 73, 212, 37, 115, 178, 184, 222, 69, 182, 101, 126, 137, 88, 255, 69, 251, 103, 193, 82, 97, 191, 27, 61, 67, + 7, 50, 37, 133, 1, 126, 27, 80, 56, 241, 159, 212, 194, 176, 171, 27, 137, 254, 22, 132, 104, 204, 38, 4, 27, 12, + 238, 38, 38, 27, 18, 253, 2, 27, 178, 5, 175, 140, 203, 170, 215, 60, 67, 46, 182, 143, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 822, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe8b0603" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0103ab06021602" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a102" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfd4689675e77c71ce" + } + } + ] + } + } + ] + }, + "cborHex": "bf44fe8b0603bf470103ab06021602413742a10249dfd4689675e77c71ceffff", + "cborBytes": [ + 191, 68, 254, 139, 6, 3, 191, 71, 1, 3, 171, 6, 2, 22, 2, 65, 55, 66, 161, 2, 73, 223, 212, 104, 150, 117, 231, + 124, 113, 206, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 823, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "25d0d732e17f2c24d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7b81f9d43ce24ad134b11a6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6813566712850855495" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "599612" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14173474456584660019" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68a61e063934f22e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5701923693946526524" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "767dca2de2cd2b860ad11898" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0c76de5329a5d5f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2baca198304afb69088c133" + } + } + ] + } + } + ] + }, + "cborHex": "bf4925d0d732e17f2c24d0084ce7b81f9d43ce24ad134b11a6bf41101b5e8ea6d354e6b647435996121bc4b24bec89cd24334868a61e063934f22e1b4f214d63ba10db3c4c767dca2de2cd2b860ad11898415548f0c76de5329a5d5f4cd2baca198304afb69088c133ffff", + "cborBytes": [ + 191, 73, 37, 208, 215, 50, 225, 127, 44, 36, 208, 8, 76, 231, 184, 31, 157, 67, 206, 36, 173, 19, 75, 17, 166, + 191, 65, 16, 27, 94, 142, 166, 211, 84, 230, 182, 71, 67, 89, 150, 18, 27, 196, 178, 75, 236, 137, 205, 36, 51, + 72, 104, 166, 30, 6, 57, 52, 242, 46, 27, 79, 33, 77, 99, 186, 16, 219, 60, 76, 118, 125, 202, 45, 226, 205, 43, + 134, 10, 209, 24, 152, 65, 85, 72, 240, 199, 109, 229, 50, 154, 93, 95, 76, 210, 186, 202, 25, 131, 4, 175, 182, + 144, 136, 193, 51, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 824, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "032f6af9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07fc" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16685938368780770586" + } + }, + { + "_tag": "ByteArray", + "bytearray": "77fe4c732943" + }, + { + "_tag": "ByteArray", + "bytearray": "eb44d7f747ce8b6c" + } + ] + } + } + ] + }, + "cborHex": "bf44032f6af99f1bfffffffffffffffaff4207fcd9050b9f1be7905c8a5f3d1d1a4677fe4c73294348eb44d7f747ce8b6cffff", + "cborBytes": [ + 191, 68, 3, 47, 106, 249, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 255, 66, 7, 252, 217, 5, 11, 159, 27, + 231, 144, 92, 138, 95, 61, 29, 26, 70, 119, 254, 76, 115, 41, 67, 72, 235, 68, 215, 247, 71, 206, 139, 108, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 825, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00e0f98e001bfc02" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9742866651782275929" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0eeaa1dc55" + }, + { + "_tag": "ByteArray", + "bytearray": "2154801f31" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13239764248815674373" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2698a53c64e2fbede5c08d7b" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0603" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5807" + } + } + ] + } + } + ] + }, + "cborHex": "bf4800e0f98e001bfc02d87c9f1b87359d99917b6359450eeaa1dc55452154801f311bb7bd176fe09324054c2698a53c64e2fbede5c08d7bff420603bf04425807ffff", + "cborBytes": [ + 191, 72, 0, 224, 249, 142, 0, 27, 252, 2, 216, 124, 159, 27, 135, 53, 157, 153, 145, 123, 99, 89, 69, 14, 234, + 161, 220, 85, 69, 33, 84, 128, 31, 49, 27, 183, 189, 23, 111, 224, 147, 36, 5, 76, 38, 152, 165, 60, 100, 226, + 251, 237, 229, 192, 141, 123, 255, 66, 6, 3, 191, 4, 66, 88, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 826, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba555b74b24ae1a3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + }, + "cborHex": "bf48ba555b74b24ae1a309ff", + "cborBytes": [191, 72, 186, 85, 91, 116, 178, 74, 225, 163, 9, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 827, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "606356ab94" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81a0b66d9e8e103b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + }, + "cborHex": "bf45606356ab949f05ff4881a0b66d9e8e103b12ff", + "cborBytes": [191, 69, 96, 99, 86, 171, 148, 159, 5, 255, 72, 129, 160, 182, 109, 158, 142, 16, 59, 18, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 828, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "972d3f9a7a4f3d1de35e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16324064504107957152" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb2c71b1b7da016af4474536" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5820453709496764696" + } + }, + { + "_tag": "ByteArray", + "bytearray": "543401" + } + ] + } + } + ] + }, + "cborHex": "bf4a972d3f9a7a4f3d1de35e9f1be28aba2d89eafba04ccb2c71b1b7da016af44745361b50c667cf8a28c91843543401ffff", + "cborBytes": [ + 191, 74, 151, 45, 63, 154, 122, 79, 61, 29, 227, 94, 159, 27, 226, 138, 186, 45, 137, 234, 251, 160, 76, 203, 44, + 113, 177, 183, 218, 1, 106, 244, 71, 69, 54, 27, 80, 198, 103, 207, 138, 40, 201, 24, 67, 84, 52, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 829, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07f60df6f3d472c5a71c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c60afa589c" + }, + { + "_tag": "ByteArray", + "bytearray": "c143e2366c" + } + ] + } + } + ] + }, + "cborHex": "bf4a07f60df6f3d472c5a71c9f45c60afa589c45c143e2366cffff", + "cborBytes": [ + 191, 74, 7, 246, 13, 246, 243, 212, 114, 197, 167, 28, 159, 69, 198, 10, 250, 88, 156, 69, 193, 67, 226, 54, 108, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 830, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f346e8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18099469946067444250" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ca6f59240c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8921773665447789302" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dda1d66de36cbf3d87" + } + ] + } + } + ] + }, + "cborHex": "bf43f346e8d8669f1bfb2e3c055635621a9f45ca6f59240c1b7bd081e10f7342f649dda1d66de36cbf3d87ffffff", + "cborBytes": [ + 191, 67, 243, 70, 232, 216, 102, 159, 27, 251, 46, 60, 5, 86, 53, 98, 26, 159, 69, 202, 111, 89, 36, 12, 27, 123, + 208, 129, 225, 15, 115, 66, 246, 73, 221, 161, 214, 109, 227, 108, 191, 61, 135, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 831, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13842188495766909501" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85d07d943432" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da45da3f6265a4ab2e" + } + } + ] + }, + "cborHex": "bf1bc01955190c2f723d41ad4685d07d94343249da45da3f6265a4ab2eff", + "cborBytes": [ + 191, 27, 192, 25, 85, 25, 12, 47, 114, 61, 65, 173, 70, 133, 208, 125, 148, 52, 50, 73, 218, 69, 218, 63, 98, 101, + 164, 171, 46, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 832, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a8f04c0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06ee0687ba3048371f0007b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e6cb6f0bdb573129cbf88" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9845591172941256353" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7469810281987604482" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf446a8f04c0bf4c06ee0687ba3048371f0007b54140416e4b4e6cb6f0bdb573129cbf88ff41cfbf1b88a29101f2e296a11b67aa18dfed6e8002ffff", + "cborBytes": [ + 191, 68, 106, 143, 4, 192, 191, 76, 6, 238, 6, 135, 186, 48, 72, 55, 31, 0, 7, 181, 65, 64, 65, 110, 75, 78, 108, + 182, 240, 189, 181, 115, 18, 156, 191, 136, 255, 65, 207, 191, 27, 136, 162, 145, 1, 242, 226, 150, 161, 27, 103, + 170, 24, 223, 237, 110, 128, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 833, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e72c03a0784d795c6a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9377652034610045050" + } + } + } + ] + }, + "cborHex": "bf4a1e72c03a0784d795c6a71b82241cd72e26a07aff", + "cborBytes": [191, 74, 30, 114, 192, 58, 7, 132, 215, 149, 198, 167, 27, 130, 36, 28, 215, 46, 38, 160, 122, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 834, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "237199597493998669" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6baf76809d2d1637f26" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13839171696916576714" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4801354666063950564" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18035465435167380517" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "039a21" + } + } + ] + }, + "cborHex": "bf1b034ab3c6f57ed44d4af6baf76809d2d1637f261bc00e9d55d45a39ca1b42a1d6a14f67f2e41bfa4ad841ddfcd42543039a21ff", + "cborBytes": [ + 191, 27, 3, 74, 179, 198, 245, 126, 212, 77, 74, 246, 186, 247, 104, 9, 210, 209, 99, 127, 38, 27, 192, 14, 157, + 85, 212, 90, 57, 202, 27, 66, 161, 214, 161, 79, 103, 242, 228, 27, 250, 74, 216, 65, 221, 252, 212, 37, 67, 3, + 154, 33, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 835, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14411194900230027892" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15687803436661002118" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a9e3d7ae5f5958a6" + }, + { + "_tag": "ByteArray", + "bytearray": "62835bda7afe45" + }, + { + "_tag": "ByteArray", + "bytearray": "c70e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8522302484974100065" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14561226045967044422" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4880842266635440102" + } + } + } + ] + }, + "cborHex": "bf1bc7fed9687121ba749f1bd9b6461bac54cf8648a9e3d7ae5f5958a64762835bda7afe4542c70e1b76454cf4fd4f5e61ff1bca13ddf0ac080f461b43bc3c2e83848fe6ff", + "cborBytes": [ + 191, 27, 199, 254, 217, 104, 113, 33, 186, 116, 159, 27, 217, 182, 70, 27, 172, 84, 207, 134, 72, 169, 227, 215, + 174, 95, 89, 88, 166, 71, 98, 131, 91, 218, 122, 254, 69, 66, 199, 14, 27, 118, 69, 76, 244, 253, 79, 94, 97, 255, + 27, 202, 19, 221, 240, 172, 8, 15, 70, 27, 67, 188, 60, 46, 131, 132, 143, 230, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 836, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01a301bffd045c2b02484f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b01a301bffd045c2b02484f9f0fffff", + "cborBytes": [191, 75, 1, 163, 1, 191, 253, 4, 92, 43, 2, 72, 79, 159, 15, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 837, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "981d39" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1375375602002310287" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da5be3b225c6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14039308867622013831" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bc89a5d8990c10d4cbbb2df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1d27dc4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "325bf4b0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa89db1127" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc3d6e1f7b001e63b79d" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbfc180240e6e7aadf" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf43981d39bf1b131650d2ae16348f46da5be3b225c61bc2d5a5081a9a0b874c3bc89a5d8990c10d4cbbb2df44d1d27dc444325bf4b045fa89db11274afc3d6e1f7b001e63b79dff49fbfc180240e6e7aadfa0ff", + "cborBytes": [ + 191, 67, 152, 29, 57, 191, 27, 19, 22, 80, 210, 174, 22, 52, 143, 70, 218, 91, 227, 178, 37, 198, 27, 194, 213, + 165, 8, 26, 154, 11, 135, 76, 59, 200, 154, 93, 137, 144, 193, 13, 76, 187, 178, 223, 68, 209, 210, 125, 196, 68, + 50, 91, 244, 176, 69, 250, 137, 219, 17, 39, 74, 252, 61, 110, 31, 123, 0, 30, 99, 183, 157, 255, 73, 251, 252, + 24, 2, 64, 230, 231, 170, 223, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 838, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9468822429278315907" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d02" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11752588900877282136" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "992536503497653984" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcda" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7679498753673746057" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63f042" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13852315142346047268" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5010141361270390016" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14552688187531053984" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b836803d4da62a583423d021ba319955663fd2b58bf1b0dc632b0f595fee042fcda1b6a930f6dc1c756894363f0421bc03d4f3ab04cff241b45879905f1037d00ff1bc9f588cd98cfcba0a0ff", + "cborBytes": [ + 191, 27, 131, 104, 3, 212, 218, 98, 165, 131, 66, 61, 2, 27, 163, 25, 149, 86, 99, 253, 43, 88, 191, 27, 13, 198, + 50, 176, 245, 149, 254, 224, 66, 252, 218, 27, 106, 147, 15, 109, 193, 199, 86, 137, 67, 99, 240, 66, 27, 192, 61, + 79, 58, 176, 76, 255, 36, 27, 69, 135, 153, 5, 241, 3, 125, 0, 255, 27, 201, 245, 136, 205, 152, 207, 203, 160, + 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 839, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "205e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2973ba865f1c22b3f977" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e5ed53493587a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "474d51fb47dee900ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17517574994547712659" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be2e15a910ecc19334ce9f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "467dae75a22db52a" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cdb7832d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5454361326647766962" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7127293389830981627" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14916125168655080555" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6614db7e7cd1e88c" + } + } + ] + } + } + ] + }, + "cborHex": "bf42205ebf4a2973ba865f1c22b3f977476e5ed53493587a49474d51fb47dee900ea1bf31aeda53c4822934bbe2e15a910ecc19334ce9f48467dae75a22db52aff44cdb7832dbf1b4bb1c8ba6777efb21b62e93b9376dd87fb1bcf00b8cfd6f31c6b486614db7e7cd1e88cffff", + "cborBytes": [ + 191, 66, 32, 94, 191, 74, 41, 115, 186, 134, 95, 28, 34, 179, 249, 119, 71, 110, 94, 213, 52, 147, 88, 122, 73, + 71, 77, 81, 251, 71, 222, 233, 0, 234, 27, 243, 26, 237, 165, 60, 72, 34, 147, 75, 190, 46, 21, 169, 16, 236, 193, + 147, 52, 206, 159, 72, 70, 125, 174, 117, 162, 45, 181, 42, 255, 68, 205, 183, 131, 45, 191, 27, 75, 177, 200, + 186, 103, 119, 239, 178, 27, 98, 233, 59, 147, 118, 221, 135, 251, 27, 207, 0, 184, 207, 214, 243, 28, 107, 72, + 102, 20, 219, 126, 124, 209, 232, 140, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 840, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11724247161858721159" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14fa48" + } + } + ] + }, + "cborHex": "bf1ba2b4e4ad0d7885874314fa48ff", + "cborBytes": [191, 27, 162, 180, 228, 173, 13, 120, 133, 135, 67, 20, 250, 72, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 841, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf00a0ff", + "cborBytes": [191, 0, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 842, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a96120f8503c11" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12221964819156835454" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1047a96120f8503c111ba99d243f8f2a1c7e80ff", + "cborBytes": [191, 16, 71, 169, 97, 32, 248, 80, 60, 17, 27, 169, 157, 36, 63, 143, 42, 28, 126, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 843, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9d2b36197bd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5419960368586414529" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "247ea822f263375dbde7462e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11550265438115620712" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac90730f541146dd73b83d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13686607790094664781" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11708993987522819152" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17814750456530851713" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "620b964d5ac146b206d35dd6" + } + } + ] + } + } + ] + }, + "cborHex": "bf46e9d2b36197bdbf1b4b37913d3249d9c14c247ea822f263375dbde7462e1ba04ac938545a67684bac90730f541146dd73b83d1bbdf0994534afc44d1ba27eb3fea77b74501bf73ab52753bfd7814c620b964d5ac146b206d35dd6ffff", + "cborBytes": [ + 191, 70, 233, 210, 179, 97, 151, 189, 191, 27, 75, 55, 145, 61, 50, 73, 217, 193, 76, 36, 126, 168, 34, 242, 99, + 55, 93, 189, 231, 70, 46, 27, 160, 74, 201, 56, 84, 90, 103, 104, 75, 172, 144, 115, 15, 84, 17, 70, 221, 115, + 184, 61, 27, 189, 240, 153, 69, 52, 175, 196, 77, 27, 162, 126, 179, 254, 167, 123, 116, 80, 27, 247, 58, 181, 39, + 83, 191, 215, 129, 76, 98, 11, 150, 77, 90, 193, 70, 178, 6, 211, 93, 214, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 844, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8029444584119508250" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d804ac0dc44218a9917cfe6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3552359830114407412" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2aacc5d0407e332d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea94c7c41207" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "988259d64824c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6eea30fd651ba8fbf6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c82f8fdf638f6f796b03ee59" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "142046ed0abe4151" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc9b1b1abee8c6adf8040890" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e563a042" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1e10ceb82fafe08f2cc4210" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71813ea3" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6f6e514eb4209d1abf4c1d804ac0dc44218a9917cfe61b314c8471bc5613f4482aacc5d0407e332d46ea94c7c4120747988259d64824c1496eea30fd651ba8fbf64cc82f8fdf638f6f796b03ee5948142046ed0abe41514cdc9b1b1abee8c6adf804089044e563a0424ce1e10ceb82fafe08f2cc42104471813ea3ffff", + "cborBytes": [ + 191, 27, 111, 110, 81, 78, 180, 32, 157, 26, 191, 76, 29, 128, 74, 192, 220, 68, 33, 138, 153, 23, 207, 230, 27, + 49, 76, 132, 113, 188, 86, 19, 244, 72, 42, 172, 197, 208, 64, 126, 51, 45, 70, 234, 148, 199, 196, 18, 7, 71, + 152, 130, 89, 214, 72, 36, 193, 73, 110, 234, 48, 253, 101, 27, 168, 251, 246, 76, 200, 47, 143, 223, 99, 143, + 111, 121, 107, 3, 238, 89, 72, 20, 32, 70, 237, 10, 190, 65, 81, 76, 220, 155, 27, 26, 190, 232, 198, 173, 248, 4, + 8, 144, 68, 229, 99, 160, 66, 76, 225, 225, 12, 235, 130, 250, 254, 8, 242, 204, 66, 16, 68, 113, 129, 62, 163, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 845, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4946152751784590018" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0808af9fd02674639f1889" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed025f21baff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5e8b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14449752471460228522" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11345421576636117049" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1469181714347346101" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b44a443b8cef0fac2bf4b0808af9fd02674639f188946ed025f21baff43a5e8b204ff1bc887d55091b5adaa9f1b9d7308d03672b0391b146394fc322c48b5ffff", + "cborBytes": [ + 191, 27, 68, 164, 67, 184, 206, 240, 250, 194, 191, 75, 8, 8, 175, 159, 208, 38, 116, 99, 159, 24, 137, 70, 237, + 2, 95, 33, 186, 255, 67, 165, 232, 178, 4, 255, 27, 200, 135, 213, 80, 145, 181, 173, 170, 159, 27, 157, 115, 8, + 208, 54, 114, 176, 57, 27, 20, 99, 148, 252, 50, 44, 72, 181, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 846, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1858aea3647edda4f7" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "243104151a7dc00bda4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06871b724ebc88977aacd4b1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d555ab509" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5465751180271275005" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "58395eff812e0f77a100" + }, + { + "_tag": "ByteArray", + "bytearray": "d5754e78c0" + }, + { + "_tag": "ByteArray", + "bytearray": "b2cd9e115f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15599464462227349399" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84ffbdbf2027000d402f" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e8be0c6d693dd9ab24c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1626541539559734881" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf491858aea3647edda4f7a04a243104151a7dc00bda4c4c06871b724ebc88977aacd4b1452d555ab509d8669f1b4bda3fbd5abdcbfd80ff41469f4a58395eff812e0f77a10045d5754e78c045b2cd9e115f1bd87c6e4765641f97ff4a84ffbdbf2027000d402fa04a9e8be0c6d693dd9ab24cd8669f1b1692a2e995dffe6180ffff", + "cborBytes": [ + 191, 73, 24, 88, 174, 163, 100, 126, 221, 164, 247, 160, 74, 36, 49, 4, 21, 26, 125, 192, 11, 218, 76, 76, 6, 135, + 27, 114, 78, 188, 136, 151, 122, 172, 212, 177, 69, 45, 85, 90, 181, 9, 216, 102, 159, 27, 75, 218, 63, 189, 90, + 189, 203, 253, 128, 255, 65, 70, 159, 74, 88, 57, 94, 255, 129, 46, 15, 119, 161, 0, 69, 213, 117, 78, 120, 192, + 69, 178, 205, 158, 17, 95, 27, 216, 124, 110, 71, 101, 100, 31, 151, 255, 74, 132, 255, 189, 191, 32, 39, 0, 13, + 64, 47, 160, 74, 158, 139, 224, 198, 214, 147, 221, 154, 178, 76, 216, 102, 159, 27, 22, 146, 162, 233, 149, 223, + 254, 97, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 847, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4276399028734692036" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "54def184f712d2898d739d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9238634412331280511" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5dd80c22a88e88681cd1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4758019db0b0" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10295999938372142899" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21664e7673ad07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8d6" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16832263697870269647" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16780827783137351315" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35244674462f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17698377953401059565" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "895711007198411510" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17054215323098580386" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8350381615906488974" + } + } + } + ] + }, + "cborHex": "bf1b3b58d242618e8ac4bf4b54def184f712d2898d739d1b8036390cb4b4a87f4a5dd80c22a88e88681cd1464758019db0b0ff1b8ee2bd64b61d8733bf4721664e7673ad0742c8d6ff1be99836a6ed42accfbf1be8e179f5cae856934635244674462f1bf59d44fa851338ed1b0c6e346a5577faf6ff1becacbe7ab05085a21b73e283d6630f028eff", + "cborBytes": [ + 191, 27, 59, 88, 210, 66, 97, 142, 138, 196, 191, 75, 84, 222, 241, 132, 247, 18, 210, 137, 141, 115, 157, 27, + 128, 54, 57, 12, 180, 180, 168, 127, 74, 93, 216, 12, 34, 168, 142, 136, 104, 28, 209, 70, 71, 88, 1, 157, 176, + 176, 255, 27, 142, 226, 189, 100, 182, 29, 135, 51, 191, 71, 33, 102, 78, 118, 115, 173, 7, 66, 200, 214, 255, 27, + 233, 152, 54, 166, 237, 66, 172, 207, 191, 27, 232, 225, 121, 245, 202, 232, 86, 147, 70, 53, 36, 70, 116, 70, 47, + 27, 245, 157, 68, 250, 133, 19, 56, 237, 27, 12, 110, 52, 106, 85, 119, 250, 246, 255, 27, 236, 172, 190, 122, + 176, 80, 133, 162, 27, 115, 226, 131, 214, 99, 15, 2, 142, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 848, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04fc44b1a95f8d61" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "849a07ee61f9eed3af8c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c81b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6275277235436120053" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17027063202387970078" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "462267194542645303" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17093944164255839778" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13731078733575179695" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf06bf4804fc44b1a95f8d614a849a07ee61f9eed3af8c42c81b1b57164365d543e7f5ff1bffffffffffffffecbf1bec4c47c4f275c81e1b066a4d907207e0371bed39e3a658d4b6221bbe8e975b99ab4dafffff", + "cborBytes": [ + 191, 6, 191, 72, 4, 252, 68, 177, 169, 95, 141, 97, 74, 132, 154, 7, 238, 97, 249, 238, 211, 175, 140, 66, 200, + 27, 27, 87, 22, 67, 101, 213, 67, 231, 245, 255, 27, 255, 255, 255, 255, 255, 255, 255, 236, 191, 27, 236, 76, 71, + 196, 242, 117, 200, 30, 27, 6, 106, 77, 144, 114, 7, 224, 55, 27, 237, 57, 227, 166, 88, 212, 182, 34, 27, 190, + 142, 151, 91, 153, 171, 77, 175, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 849, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12a854440ac8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7949879907632649259" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12747612044226879778" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8883990574344411153" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4349402624092337477" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b767bd670416616987" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a1cbd56295a9014" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e349343a3a914d690dccce" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15529622743725733798" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16648414438715183839" + } + } + ] + } + } + ] + }, + "cborHex": "bf4612a854440ac89f1b6e53a5a7dd75942b1bb0e89d9d4ea261221b7b4a465ba3b798111b3c5c2ea47a2cf545ff49b767bd670416616987482a1cbd56295a90144be349343a3a914d690dccce9f1bd7844d9b1f9977a61be70b0cb9951a52dfffff", + "cborBytes": [ + 191, 70, 18, 168, 84, 68, 10, 200, 159, 27, 110, 83, 165, 167, 221, 117, 148, 43, 27, 176, 232, 157, 157, 78, 162, + 97, 34, 27, 123, 74, 70, 91, 163, 183, 152, 17, 27, 60, 92, 46, 164, 122, 44, 245, 69, 255, 73, 183, 103, 189, + 103, 4, 22, 97, 105, 135, 72, 42, 28, 189, 86, 41, 90, 144, 20, 75, 227, 73, 52, 58, 58, 145, 77, 105, 13, 204, + 206, 159, 27, 215, 132, 77, 155, 31, 153, 119, 166, 27, 231, 11, 12, 185, 149, 26, 82, 223, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 850, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10101671316045147113" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "97828734741088543" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15456899009059209699" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "215923342230885420" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10262342752332396748" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91da4dd278c17b37f759" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd43" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14315796120002018253" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2633524868546221696" + } + }, + { + "_tag": "ByteArray", + "bytearray": "88" + } + ] + } + } + ] + }, + "cborHex": "bf0ad9050d9f1b8c30588a7e9fabe91b015b8eb74711891f1bd681efc12c0fc1e31b02ff1d22c063142c1b8e6b2a5c6c13b8ccff4107024a91da4dd278c17b37f7591bffffffffffffffec42bd43d8669f1bc6abecb909a2bbcd9f1b248c28ea38dad6804188ffffff", + "cborBytes": [ + 191, 10, 217, 5, 13, 159, 27, 140, 48, 88, 138, 126, 159, 171, 233, 27, 1, 91, 142, 183, 71, 17, 137, 31, 27, 214, + 129, 239, 193, 44, 15, 193, 227, 27, 2, 255, 29, 34, 192, 99, 20, 44, 27, 142, 107, 42, 92, 108, 19, 184, 204, + 255, 65, 7, 2, 74, 145, 218, 77, 210, 120, 193, 123, 55, 247, 89, 27, 255, 255, 255, 255, 255, 255, 255, 236, 66, + 189, 67, 216, 102, 159, 27, 198, 171, 236, 185, 9, 162, 187, 205, 159, 27, 36, 140, 40, 234, 56, 218, 214, 128, + 65, 136, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 851, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cbb314ae3f40c35900" + }, + { + "_tag": "ByteArray", + "bytearray": "2e033f231d4cea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2179779020895442334" + } + }, + { + "_tag": "ByteArray", + "bytearray": "657e43cf7524c5" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b29c8d962204841130e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12689637644669511666" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "139334951640672200" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "640830107667255812" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b4" + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff29f49cbb314ae3f40c35900472e033f231d4cea1b1e4021787552559e47657e43cf7524c5ff4a5b29c8d962204841130ed8669f1bb01aa6348af367f29f1b01ef04667956a7c81b08e4af9670e1d20441b4ffffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 73, 203, 179, 20, 174, 63, 64, 195, 89, 0, 71, 46, 3, 63, + 35, 29, 76, 234, 27, 30, 64, 33, 120, 117, 82, 85, 158, 71, 101, 126, 67, 207, 117, 36, 197, 255, 74, 91, 41, 200, + 217, 98, 32, 72, 65, 19, 14, 216, 102, 159, 27, 176, 26, 166, 52, 138, 243, 103, 242, 159, 27, 1, 239, 4, 102, + 121, 86, 167, 200, 27, 8, 228, 175, 150, 112, 225, 210, 4, 65, 180, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 852, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8270681391114846188" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "50f7160e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7215491901022684430" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c3c41ce937b7ebe0702" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10657333457857358380" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f14b5241" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10716042444791530927" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7691272717318929876" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12120149145308788921" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec0f54" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13625942950467540117" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14770105298572743469" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2095c82fa63dcc69a032" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17806758889529258325" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b05e167c47d246f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4947484747826245547" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b72c75ce7bfd57fec9f4450f7160e1b642293a7982a450e4a5c3c41ce937b7ebe07021b93e67450a0792a2c44f14b5241ff1b94b707d3d7cec5afd8669f1b6abce3c94a72bdd480ff1ba8336b6eaee278b943ec0f541bbd1912eb8c5b1495d8669f1bccf9f483808b132d9f4a2095c82fa63dcc69a032ffff1bf71e50dda36bb155bf484b05e167c47d246f1b44a8ff2a4dd8afabffff", + "cborBytes": [ + 191, 27, 114, 199, 92, 231, 191, 213, 127, 236, 159, 68, 80, 247, 22, 14, 27, 100, 34, 147, 167, 152, 42, 69, 14, + 74, 92, 60, 65, 206, 147, 123, 126, 190, 7, 2, 27, 147, 230, 116, 80, 160, 121, 42, 44, 68, 241, 75, 82, 65, 255, + 27, 148, 183, 7, 211, 215, 206, 197, 175, 216, 102, 159, 27, 106, 188, 227, 201, 74, 114, 189, 212, 128, 255, 27, + 168, 51, 107, 110, 174, 226, 120, 185, 67, 236, 15, 84, 27, 189, 25, 18, 235, 140, 91, 20, 149, 216, 102, 159, 27, + 204, 249, 244, 131, 128, 139, 19, 45, 159, 74, 32, 149, 200, 47, 166, 61, 204, 105, 160, 50, 255, 255, 27, 247, + 30, 80, 221, 163, 107, 177, 85, 191, 72, 75, 5, 225, 103, 196, 125, 36, 111, 27, 68, 168, 255, 42, 77, 216, 175, + 171, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 853, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "60319ed2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26a5fd5007350106901f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4460319ed24a26a5fd5007350106901f417dd9050d80ff", + "cborBytes": [191, 68, 96, 49, 158, 210, 74, 38, 165, 253, 80, 7, 53, 1, 6, 144, 31, 65, 125, 217, 5, 13, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 854, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14219314417211634231" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b963e95bdee829efb6389a81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9212550502999725971" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bc5552720137d7237bf4cb963e95bdee829efb6389a811b7fd98ddf4ea51793ffff", + "cborBytes": [ + 191, 27, 197, 85, 39, 32, 19, 125, 114, 55, 191, 76, 185, 99, 233, 91, 222, 232, 41, 239, 182, 56, 154, 129, 27, + 127, 217, 141, 223, 78, 165, 23, 147, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 855, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ace5042ca07f0082d0d0" + } + ] + } + } + ] + }, + "cborHex": "bf099f4aace5042ca07f0082d0d0ffff", + "cborBytes": [191, 9, 159, 74, 172, 229, 4, 44, 160, 127, 0, 130, 208, 208, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 856, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "130b7f2e3441" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2462783211830356317" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5b44b5b02aa97105f67" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16590352838959453189" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12393953736394997139" + } + } + ] + } + } + ] + }, + "cborHex": "bf46130b7f2e3441d8669f1b222d904863f1a95d80ff4ac5b44b5b02aa97105f67d8669f1be63cc601f09254059f1bac002b41dc72fd93ffffff", + "cborBytes": [ + 191, 70, 19, 11, 127, 46, 52, 65, 216, 102, 159, 27, 34, 45, 144, 72, 99, 241, 169, 93, 128, 255, 74, 197, 180, + 75, 91, 2, 170, 151, 16, 95, 103, 216, 102, 159, 27, 230, 60, 198, 1, 240, 146, 84, 5, 159, 27, 172, 0, 43, 65, + 220, 114, 253, 147, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 857, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "47964b8bac35284399" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a0af6897dcaf19bb0a11383" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ee3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa54da96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f09c8d69885a9ab99b8bd9" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "483f006430740bf170c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16026281332934552104" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9119d7e09434b67" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e2f72aa22" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca6488" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2562062098909389013" + } + } + } + ] + }, + "cborHex": "bf4947964b8bac35284399bf4c2a0af6897dcaf19bb0a11383421ee344fa54da964bf09c8d69885a9ab99b8bd9ff4a483f006430740bf170c01bde68c9f62009aa2848c9119d7e09434b67457e2f72aa2243ca64881b238e45e791fc60d5ff", + "cborBytes": [ + 191, 73, 71, 150, 75, 139, 172, 53, 40, 67, 153, 191, 76, 42, 10, 246, 137, 125, 202, 241, 155, 176, 161, 19, 131, + 66, 30, 227, 68, 250, 84, 218, 150, 75, 240, 156, 141, 105, 136, 90, 154, 185, 155, 139, 217, 255, 74, 72, 63, 0, + 100, 48, 116, 11, 241, 112, 192, 27, 222, 104, 201, 246, 32, 9, 170, 40, 72, 201, 17, 157, 126, 9, 67, 75, 103, + 69, 126, 47, 114, 170, 34, 67, 202, 100, 136, 27, 35, 142, 69, 231, 145, 252, 96, 213, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 858, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb1bf0ea61" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf45bb1bf0ea6180ff", + "cborBytes": [191, 69, 187, 27, 240, 234, 97, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 859, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "322736224969107479" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6306977114148649753" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10409280911178939089" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7209068900727946248" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "080fb6fddc155592e1e4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8311104651278685169" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e3a28a5f3e3b1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9968614766511830213" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10548055979199130047" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "545376629492950318" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ddf76c7e8347" + }, + { + "_tag": "ByteArray", + "bytearray": "280a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6827703709533945688" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3d30751898" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13763514513100575221" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "367421587447756610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3044345407364407178" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d4e5f2f778211" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7506954905072942888" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65b6b0c11b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33ec06c7cd" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b047a96e2fd6f28171b5786e244ff593b191b907531d686133ad1bf1b640bc1f84d347c084a080fb6fddc155592e1e41b7356f9a56e9013f1478e3a28a5f3e3b11b8a57a2506ca6b4c541d4ff1b92623906ef1969bfd8669f1b07919127adba252e9f46ddf76c7e834742280a1b5ec0e0595e633f58453d30751898ffff1bbf01d387064b11f5bf1b051957fcb2a237421b2a3fb004b38c1f8a470d4e5f2f7782111b682e0fb66dbfbf284565b6b0c11b4533ec06c7cdffff", + "cborBytes": [ + 191, 27, 4, 122, 150, 226, 253, 111, 40, 23, 27, 87, 134, 226, 68, 255, 89, 59, 25, 27, 144, 117, 49, 214, 134, + 19, 58, 209, 191, 27, 100, 11, 193, 248, 77, 52, 124, 8, 74, 8, 15, 182, 253, 220, 21, 85, 146, 225, 228, 27, 115, + 86, 249, 165, 110, 144, 19, 241, 71, 142, 58, 40, 165, 243, 227, 177, 27, 138, 87, 162, 80, 108, 166, 180, 197, + 65, 212, 255, 27, 146, 98, 57, 6, 239, 25, 105, 191, 216, 102, 159, 27, 7, 145, 145, 39, 173, 186, 37, 46, 159, + 70, 221, 247, 108, 126, 131, 71, 66, 40, 10, 27, 94, 192, 224, 89, 94, 99, 63, 88, 69, 61, 48, 117, 24, 152, 255, + 255, 27, 191, 1, 211, 135, 6, 75, 17, 245, 191, 27, 5, 25, 87, 252, 178, 162, 55, 66, 27, 42, 63, 176, 4, 179, + 140, 31, 138, 71, 13, 78, 95, 47, 119, 130, 17, 27, 104, 46, 15, 182, 109, 191, 191, 40, 69, 101, 182, 176, 193, + 27, 69, 51, 236, 6, 199, 205, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 860, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c896240d0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a26602a1ac6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2894911469658046393" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14456436228476022220" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11569263181504569080" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddd703e2209dd565f1a6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0682009204075f" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11886798769411480852" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "60149f62c1" + }, + { + "_tag": "ByteArray", + "bytearray": "a11845" + } + ] + } + } + ] + }, + "cborHex": "bf0bbf00457c896240d00b469a26602a1ac61b282ccaa4cd2bffb91bc89f94280466adccff0ed87e801ba08e47912695def8bf034addd703e2209dd565f1a61bffffffffffffffef470682009204075fff1ba4f6648077525d149f4560149f62c143a11845ffff", + "cborBytes": [ + 191, 11, 191, 0, 69, 124, 137, 98, 64, 208, 11, 70, 154, 38, 96, 42, 26, 198, 27, 40, 44, 202, 164, 205, 43, 255, + 185, 27, 200, 159, 148, 40, 4, 102, 173, 204, 255, 14, 216, 126, 128, 27, 160, 142, 71, 145, 38, 149, 222, 248, + 191, 3, 74, 221, 215, 3, 226, 32, 157, 213, 101, 241, 166, 27, 255, 255, 255, 255, 255, 255, 255, 239, 71, 6, 130, + 0, 146, 4, 7, 95, 255, 27, 164, 246, 100, 128, 119, 82, 93, 20, 159, 69, 96, 20, 159, 98, 193, 67, 161, 24, 69, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 861, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "974f63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13429552668120773975" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecae0deeea53" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5ea44892558be8197a8a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9282675665528997360" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f715aee89dec275cc9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "154d488b23d857" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11177583584672383213" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "08db2b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7688258171420477157" + } + } + ] + } + } + ] + }, + "cborHex": "bf07bf43974f631bba5f5affb3bcf557419d46ecae0deeea534be5ea44892558be8197a8a41b80d2b0560904c5f049f715aee89dec275cc947154d488b23d857ff1bffffffffffffffedd8669f1b9b1ec10c83a280ed9f4308db2b1b6ab22e12a10306e5ffffff", + "cborBytes": [ + 191, 7, 191, 67, 151, 79, 99, 27, 186, 95, 90, 255, 179, 188, 245, 87, 65, 157, 70, 236, 174, 13, 238, 234, 83, + 75, 229, 234, 68, 137, 37, 88, 190, 129, 151, 168, 164, 27, 128, 210, 176, 86, 9, 4, 197, 240, 73, 247, 21, 174, + 232, 157, 236, 39, 92, 201, 71, 21, 77, 72, 139, 35, 216, 87, 255, 27, 255, 255, 255, 255, 255, 255, 255, 237, + 216, 102, 159, 27, 155, 30, 193, 12, 131, 162, 128, 237, 159, 67, 8, 219, 43, 27, 106, 178, 46, 18, 161, 3, 6, + 229, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 862, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00fc8499" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1abb87e95c9656652232ef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13967030682090717061" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18099671188468329909" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32a0f25e9387d274" + } + } + ] + }, + "cborHex": "bf024400fc849910bf4b1abb87e95c9656652232ef1bc1d4dc67a4ffbf85ff1bfb2ef30cbc06edb54832a0f25e9387d274ff", + "cborBytes": [ + 191, 2, 68, 0, 252, 132, 153, 16, 191, 75, 26, 187, 135, 233, 92, 150, 86, 101, 34, 50, 239, 27, 193, 212, 220, + 103, 164, 255, 191, 133, 255, 27, 251, 46, 243, 12, 188, 6, 237, 181, 72, 50, 160, 242, 94, 147, 135, 210, 116, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 863, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c7b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "155b921ef7c168db" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "717721498242174010" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "881573489292de11" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "555f7a3dcb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3fa61d0196b11b8ec6c8330a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b26777b6bc8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9013ab" + } + } + ] + } + } + ] + }, + "cborHex": "bf429c7bbf48155b921ef7c168db1b09f5dbe66662cc3a414c48881573489292de1145555f7a3dcb4c3fa61d0196b11b8ec6c8330a465b26777b6bc8439013abffff", + "cborBytes": [ + 191, 66, 156, 123, 191, 72, 21, 91, 146, 30, 247, 193, 104, 219, 27, 9, 245, 219, 230, 102, 98, 204, 58, 65, 76, + 72, 136, 21, 115, 72, 146, 146, 222, 17, 69, 85, 95, 122, 61, 203, 76, 63, 166, 29, 1, 150, 177, 27, 142, 198, + 200, 51, 10, 70, 91, 38, 119, 123, 107, 200, 67, 144, 19, 171, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 864, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8dc37635384d50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f92d7d70979be4" + } + } + ] + }, + "cborHex": "bf478dc37635384d5047f92d7d70979be4ff", + "cborBytes": [191, 71, 141, 195, 118, 53, 56, 77, 80, 71, 249, 45, 125, 112, 151, 155, 228, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 865, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2690922538840425822" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "000d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + }, + "cborHex": "bf1b255813cabdad055e42c6d342000d0aff", + "cborBytes": [191, 27, 37, 88, 19, 202, 189, 173, 5, 94, 66, 198, 211, 66, 0, 13, 10, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 866, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a22ae492064905c4db7ae7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30cd864b58ad891323e04e" + } + } + ] + }, + "cborHex": "bf4c2a22ae492064905c4db7ae7d4b30cd864b58ad891323e04eff", + "cborBytes": [ + 191, 76, 42, 34, 174, 73, 32, 100, 144, 92, 77, 183, 174, 125, 75, 48, 205, 134, 75, 88, 173, 137, 19, 35, 224, + 78, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 867, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a5f7cf72bc4225d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0137114fca7e0dcc1d6a9f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "135dd6f944acf6aa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66319395" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "136160" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a6aaea1908ed68c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "621dd6bf74c5278e926bbb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d84bd16f520f5d58b12" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a92a21ab5f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7960f71e942c36ca7b4b8d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c70d9fb80c991e2055a3ebe5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13956248573831005841" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b52b88619ab8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8014122444342995901" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfc12e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13855491471506483569" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9850259494246177776" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6905560629523675540" + } + }, + { + "_tag": "ByteArray", + "bytearray": "451bc687d62015" + } + ] + } + } + ] + }, + "cborHex": "bf480a5f7cf72bc4225d4b0137114fca7e0dcc1d6a9f48135dd6f944acf6aa413a4466319395bf43136160483a6aaea1908ed68c4b621dd6bf74c5278e926bbb4a7d84bd16f520f5d58b1245a92a21ab5f4b7960f71e942c36ca7b4b8d4cc70d9fb80c991e2055a3ebe51bc1ae8e22703fc691ff46b52b88619ab81b6f37e1e7098cabbd43dfc12ed8669f1bc0489815739929719f1b88b326d233f65bf01b5fd57ace29ae799447451bc687d62015ffffff", + "cborBytes": [ + 191, 72, 10, 95, 124, 247, 43, 196, 34, 93, 75, 1, 55, 17, 79, 202, 126, 13, 204, 29, 106, 159, 72, 19, 93, 214, + 249, 68, 172, 246, 170, 65, 58, 68, 102, 49, 147, 149, 191, 67, 19, 97, 96, 72, 58, 106, 174, 161, 144, 142, 214, + 140, 75, 98, 29, 214, 191, 116, 197, 39, 142, 146, 107, 187, 74, 125, 132, 189, 22, 245, 32, 245, 213, 139, 18, + 69, 169, 42, 33, 171, 95, 75, 121, 96, 247, 30, 148, 44, 54, 202, 123, 75, 141, 76, 199, 13, 159, 184, 12, 153, + 30, 32, 85, 163, 235, 229, 27, 193, 174, 142, 34, 112, 63, 198, 145, 255, 70, 181, 43, 136, 97, 154, 184, 27, 111, + 55, 225, 231, 9, 140, 171, 189, 67, 223, 193, 46, 216, 102, 159, 27, 192, 72, 152, 21, 115, 153, 41, 113, 159, 27, + 136, 179, 38, 210, 51, 246, 91, 240, 27, 95, 213, 122, 206, 41, 174, 121, 148, 71, 69, 27, 198, 135, 214, 32, 21, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 868, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9555042365986668765" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10535195144617330547" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13852425350337213666" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85f9c902" + } + } + ] + }, + "cborHex": "bf1b849a5468367180dd1b9234882a8a5607731bc03db3767c7734e24485f9c902ff", + "cborBytes": [ + 191, 27, 132, 154, 84, 104, 54, 113, 128, 221, 27, 146, 52, 136, 42, 138, 86, 7, 115, 27, 192, 61, 179, 118, 124, + 119, 52, 226, 68, 133, 249, 201, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 869, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4207034835100335401" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "21f581111faa8e1e" + }, + { + "_tag": "ByteArray", + "bytearray": "876f9f16f959a9af49ac" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15275530065422298429" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebd76f7951a5ce" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17170890744323018139" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4166787382344879043" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8927592747592535187" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4686209579331377245" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17435173889637582931" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0abfabd55ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7272185724103263931" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3a6263e487d97d299f4821f581111faa8e1e4a876f9f16f959a9af49acff1bd3fd95a9494bad3d47ebd76f7951a5ce1bee4b42281c6a8d9bbf1b39d3670c333f0bc31b7be52e4db39b4c931b4108c2c8a714585d1bf1f62e46f103885346b0abfabd55ce1b64ebfe62e9d786bbffff", + "cborBytes": [ + 191, 27, 58, 98, 99, 228, 135, 217, 125, 41, 159, 72, 33, 245, 129, 17, 31, 170, 142, 30, 74, 135, 111, 159, 22, + 249, 89, 169, 175, 73, 172, 255, 27, 211, 253, 149, 169, 73, 75, 173, 61, 71, 235, 215, 111, 121, 81, 165, 206, + 27, 238, 75, 66, 40, 28, 106, 141, 155, 191, 27, 57, 211, 103, 12, 51, 63, 11, 195, 27, 123, 229, 46, 77, 179, + 155, 76, 147, 27, 65, 8, 194, 200, 167, 20, 88, 93, 27, 241, 246, 46, 70, 241, 3, 136, 83, 70, 176, 171, 250, 189, + 85, 206, 27, 100, 235, 254, 98, 233, 215, 134, 187, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 870, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2313b3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3700700001103924912" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "64fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4130401244102688606" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17006165739100317013" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3699905536164541420" + } + }, + { + "_tag": "ByteArray", + "bytearray": "68" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7389116455121117468" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02060701" + } + } + ] + }, + "cborHex": "bf00a005432313b31b335b870b3a164eb0bf4264fc1b3952220c36927f5eff1bec0209a31e7e25559f1b3358b47b7196b3ec41681b668b6a44477ce11cff1bfffffffffffffff64402060701ff", + "cborBytes": [ + 191, 0, 160, 5, 67, 35, 19, 179, 27, 51, 91, 135, 11, 58, 22, 78, 176, 191, 66, 100, 252, 27, 57, 82, 34, 12, 54, + 146, 127, 94, 255, 27, 236, 2, 9, 163, 30, 126, 37, 85, 159, 27, 51, 88, 180, 123, 113, 150, 179, 236, 65, 104, + 27, 102, 139, 106, 68, 71, 124, 225, 28, 255, 27, 255, 255, 255, 255, 255, 255, 255, 246, 68, 2, 6, 7, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 871, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6126641328801427365" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64c2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8529592541659331977" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11266830358580089844" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "94c38de3d3e220f7911917d1" + }, + { + "_tag": "ByteArray", + "bytearray": "76b428e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7491900738719529674" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9403149052353327868" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44ce11af7f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12858075303812027748" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1da2eba98488225770cc9147" + } + } + ] + }, + "cborHex": "bf1b550633d4056fafa54264c21b765f3339946cfd89d8669f1b9c5bd28453c0d3f49f4c94c38de3d3e220f7911917d14476b428e51b67f894072fdd3acaffff1b827eb23e3b9232fc4544ce11af7f1bb2710f5d22f055644c1da2eba98488225770cc9147ff", + "cborBytes": [ + 191, 27, 85, 6, 51, 212, 5, 111, 175, 165, 66, 100, 194, 27, 118, 95, 51, 57, 148, 108, 253, 137, 216, 102, 159, + 27, 156, 91, 210, 132, 83, 192, 211, 244, 159, 76, 148, 195, 141, 227, 211, 226, 32, 247, 145, 25, 23, 209, 68, + 118, 180, 40, 229, 27, 103, 248, 148, 7, 47, 221, 58, 202, 255, 255, 27, 130, 126, 178, 62, 59, 146, 50, 252, 69, + 68, 206, 17, 175, 127, 27, 178, 113, 15, 93, 34, 240, 85, 100, 76, 29, 162, 235, 169, 132, 136, 34, 87, 112, 204, + 145, 71, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 872, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24beafa9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "584211788529232241" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8824875840473679565" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "362262ce3ee19253ffbe" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3341573828694953947" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17935543847408849135" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5438386795811985222" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b4e" + } + } + ] + } + } + ] + }, + "cborHex": "bf4424beafa99f1b081b8986c0e169711b7a7841d21a5c46cdff4a362262ce3ee19253ffbebf1b2e5fa7b15a1acfdb1bf8e7da1a463f50ef1b4b7907fa1b8c5746429b4effff", + "cborBytes": [ + 191, 68, 36, 190, 175, 169, 159, 27, 8, 27, 137, 134, 192, 225, 105, 113, 27, 122, 120, 65, 210, 26, 92, 70, 205, + 255, 74, 54, 34, 98, 206, 62, 225, 146, 83, 255, 190, 191, 27, 46, 95, 167, 177, 90, 26, 207, 219, 27, 248, 231, + 218, 26, 70, 63, 80, 239, 27, 75, 121, 7, 250, 27, 140, 87, 70, 66, 155, 78, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 873, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "440163077d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37ddf80306070301be" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6384933171512705517" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2e8b0202f8bfd1c64b43f9" + }, + { + "_tag": "ByteArray", + "bytearray": "af" + }, + { + "_tag": "ByteArray", + "bytearray": "c1fdcd56b5e3ca9e18805e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b181a04b89ff74" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4ab1524e502" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + } + ] + }, + "cborHex": "bf412d45440163077d4937ddf80306070301be9f1b589bd6e4029f81ed4b2e8b0202f8bfd1c64b43f941af4bc1fdcd56b5e3ca9e18805eff47b181a04b89ff740146b4ab1524e5020fff", + "cborBytes": [ + 191, 65, 45, 69, 68, 1, 99, 7, 125, 73, 55, 221, 248, 3, 6, 7, 3, 1, 190, 159, 27, 88, 155, 214, 228, 2, 159, 129, + 237, 75, 46, 139, 2, 2, 248, 191, 209, 198, 75, 67, 249, 65, 175, 75, 193, 253, 205, 86, 181, 227, 202, 158, 24, + 128, 94, 255, 71, 177, 129, 160, 75, 137, 255, 116, 1, 70, 180, 171, 21, 36, 229, 2, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 874, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2391baade329" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12667762433533070026" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ad67e78b5ea869538d" + }, + { + "_tag": "ByteArray", + "bytearray": "72007b3eb6cc16fee413" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16180984171780502574" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6516757299185923762" + } + }, + { + "_tag": "ByteArray", + "bytearray": "82a8ca7be4" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bf86f866702" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6f8867abe39c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16374419052613419889" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7915885937973238217" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "247416181567d66c748a94" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18012941536307930507" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14597090299176452783" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11848019742520851800" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06b07fc4576c789a72c30e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d84d5890212a4a4227" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f34c6f4156b8a070" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f497" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17509754220645870609" + } + } + } + ] + }, + "cborHex": "bf462391baade329d8669f1bafcceed10dc6caca9f49ad67e78b5ea869538d4a72007b3eb6cc16fee4131be08e675fab31f42e1b5a702c3c816936b24582a8ca7be4ffff467bf86f8667029f466f8867abe39c1be33d9f5f7a6943711b6ddae052076799c9ff41c69f4b247416181567d66c748a941bf9fad2e3ff83658b1bca934849d4b682af1ba46c9f2eacc53d584b06b07fc4576c789a72c30eff49d84d5890212a4a4227418d48f34c6f4156b8a070415142f4971bf2ff24b169fe6c11ff", + "cborBytes": [ + 191, 70, 35, 145, 186, 173, 227, 41, 216, 102, 159, 27, 175, 204, 238, 209, 13, 198, 202, 202, 159, 73, 173, 103, + 231, 139, 94, 168, 105, 83, 141, 74, 114, 0, 123, 62, 182, 204, 22, 254, 228, 19, 27, 224, 142, 103, 95, 171, 49, + 244, 46, 27, 90, 112, 44, 60, 129, 105, 54, 178, 69, 130, 168, 202, 123, 228, 255, 255, 70, 123, 248, 111, 134, + 103, 2, 159, 70, 111, 136, 103, 171, 227, 156, 27, 227, 61, 159, 95, 122, 105, 67, 113, 27, 109, 218, 224, 82, 7, + 103, 153, 201, 255, 65, 198, 159, 75, 36, 116, 22, 24, 21, 103, 214, 108, 116, 138, 148, 27, 249, 250, 210, 227, + 255, 131, 101, 139, 27, 202, 147, 72, 73, 212, 182, 130, 175, 27, 164, 108, 159, 46, 172, 197, 61, 88, 75, 6, 176, + 127, 196, 87, 108, 120, 154, 114, 195, 14, 255, 73, 216, 77, 88, 144, 33, 42, 74, 66, 39, 65, 141, 72, 243, 76, + 111, 65, 86, 184, 160, 112, 65, 81, 66, 244, 151, 27, 242, 255, 36, 177, 105, 254, 108, 17, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 875, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "110d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51779015" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1" + } + } + ] + }, + "cborHex": "bf42110d1bfffffffffffffff4445177901541c1ff", + "cborBytes": [191, 66, 17, 13, 27, 255, 255, 255, 255, 255, 255, 255, 244, 68, 81, 119, 144, 21, 65, 193, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 876, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2603252448900056957" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3eed99772df0af75fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2663626693464987522" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5cf30da204bb9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4808140134007758005" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b257affdcf37" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5304703293606298126" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13624206603533002855" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12575422443176300492" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15876526160888386134" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14294582988449570136" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf11bf1b24209c4f455a877d493eed99772df0af75fa1b24f71a5d7e3a978247a5cf30da204bb91b42b9f1fa2dd4dcb546b257affdcf371b499e178a3e3f820e41011bbd12e7b8c61da8671bae84e015a9ff8fcc1bdc54c06d06f2d2561bc6608f7df6e0dd58ffff", + "cborBytes": [ + 191, 17, 191, 27, 36, 32, 156, 79, 69, 90, 135, 125, 73, 62, 237, 153, 119, 45, 240, 175, 117, 250, 27, 36, 247, + 26, 93, 126, 58, 151, 130, 71, 165, 207, 48, 218, 32, 75, 185, 27, 66, 185, 241, 250, 45, 212, 220, 181, 70, 178, + 87, 175, 253, 207, 55, 27, 73, 158, 23, 138, 62, 63, 130, 14, 65, 1, 27, 189, 18, 231, 184, 198, 29, 168, 103, 27, + 174, 132, 224, 21, 169, 255, 143, 204, 27, 220, 84, 192, 109, 6, 242, 210, 86, 27, 198, 96, 143, 125, 246, 224, + 221, 88, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 877, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd79fe02a7c958a5c7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd6348" + } + } + ] + }, + "cborHex": "bf49dd79fe02a7c958a5c743fd6348ff", + "cborBytes": [191, 73, 221, 121, 254, 2, 167, 201, 88, 165, 199, 67, 253, 99, 72, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 878, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "030a03f8f805014a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27009073f5f51827b996" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5126504278572359616" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e50438efc71652b576edd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14826784743733681363" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1eb35a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8759493006550091941" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e884902f9b44331dd2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a53714c3e2651bb5810c9ff9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f99530172293a6bb6938" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ac62257" + } + } + ] + } + } + ] + }, + "cborHex": "bf48030a03f8f805014abf4a27009073f5f51827b9961b4725007adfd35fc04b5e50438efc71652b576edd41cf4286aa1bcdc3522b336d5cd344b1eb35a61b798ff87acbefc8a549e884902f9b44331dd24ca53714c3e2651bb5810c9ff94af99530172293a6bb6938441ac62257ffff", + "cborBytes": [ + 191, 72, 3, 10, 3, 248, 248, 5, 1, 74, 191, 74, 39, 0, 144, 115, 245, 245, 24, 39, 185, 150, 27, 71, 37, 0, 122, + 223, 211, 95, 192, 75, 94, 80, 67, 142, 252, 113, 101, 43, 87, 110, 221, 65, 207, 66, 134, 170, 27, 205, 195, 82, + 43, 51, 109, 92, 211, 68, 177, 235, 53, 166, 27, 121, 143, 248, 122, 203, 239, 200, 165, 73, 232, 132, 144, 47, + 155, 68, 51, 29, 210, 76, 165, 55, 20, 195, 226, 101, 27, 181, 129, 12, 159, 249, 74, 249, 149, 48, 23, 34, 147, + 166, 187, 105, 56, 68, 26, 198, 34, 87, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 879, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "501afe6b2d5a0f2217" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "831e1b446fa0c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3fee4d85cc9c4d4d73" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "899776d4c181a40f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17077975598387101074" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09f90742" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13458322684987116903" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9eb1" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b129638da2eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04c60601d8b00302f9bf5ab5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd54065403040dd9d90001" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a983" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10993351386302098029" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1462b92fc0545ff76" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "752851519119377292" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf49501afe6b2d5a0f22179f47831e1b446fa0c40b493fee4d85cc9c4d4d73ff48899776d4c181a40f9f1bed012852e0a6fd921bfffffffffffffff04409f907421bbac5912d3f3d0d67429eb1ff46b129638da2eb0241babf0c1bffffffffffffffff4c04c60601d8b00302f9bf5ab54bfd54065403040dd9d9000142a9831b98903ad72f95aa6dff49c1462b92fc0545ff76bf1bffffffffffffffff1b0a72aa77c5b9438cffff", + "cborBytes": [ + 191, 73, 80, 26, 254, 107, 45, 90, 15, 34, 23, 159, 71, 131, 30, 27, 68, 111, 160, 196, 11, 73, 63, 238, 77, 133, + 204, 156, 77, 77, 115, 255, 72, 137, 151, 118, 212, 193, 129, 164, 15, 159, 27, 237, 1, 40, 82, 224, 166, 253, + 146, 27, 255, 255, 255, 255, 255, 255, 255, 240, 68, 9, 249, 7, 66, 27, 186, 197, 145, 45, 63, 61, 13, 103, 66, + 158, 177, 255, 70, 177, 41, 99, 141, 162, 235, 2, 65, 186, 191, 12, 27, 255, 255, 255, 255, 255, 255, 255, 255, + 76, 4, 198, 6, 1, 216, 176, 3, 2, 249, 191, 90, 181, 75, 253, 84, 6, 84, 3, 4, 13, 217, 217, 0, 1, 66, 169, 131, + 27, 152, 144, 58, 215, 47, 149, 170, 109, 255, 73, 193, 70, 43, 146, 252, 5, 69, 255, 118, 191, 27, 255, 255, 255, + 255, 255, 255, 255, 255, 27, 10, 114, 170, 119, 197, 185, 67, 140, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 880, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "187a61f7300b8ae6e39f8387" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10485008607663418471" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13648777943153773868" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5820472641393206665" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2361990991307708577" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9454526449089481201" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0d1779098d9e6bf4a6c183e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff3804c187a61f7300b8ae6e39f83879f1b91823bc6d6b0ec671bbd6a333997de0d2c1b50c67907771f25891b20c77a4acf9198a11b833539b6958389f1ff4cc0d1779098d9e6bf4a6c183e0241d006ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 243, 128, 76, 24, 122, 97, 247, 48, 11, 138, 230, 227, 159, 131, 135, + 159, 27, 145, 130, 59, 198, 214, 176, 236, 103, 27, 189, 106, 51, 57, 151, 222, 13, 44, 27, 80, 198, 121, 7, 119, + 31, 37, 137, 27, 32, 199, 122, 74, 207, 145, 152, 161, 27, 131, 53, 57, 182, 149, 131, 137, 241, 255, 76, 192, + 209, 119, 144, 152, 217, 230, 191, 74, 108, 24, 62, 2, 65, 208, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 881, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14812531465508392301" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + }, + "cborHex": "bf1bcd90aee341ec8d6d02ff", + "cborBytes": [191, 27, 205, 144, 174, 227, 65, 236, 141, 109, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 882, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16302184252870337588" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15182343095348500241" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a5a02e3044fae4f93" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16500595577842534441" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16683078189278276022" + } + } + } + ] + }, + "cborHex": "bf0cbf071be23cfe348f4da4340f0e1bd2b2849b105a1711494a5a02e3044fae4f931bffffffffffffffef09ff1be4fde4410faf88291be7863338efffa9b6ff", + "cborBytes": [ + 191, 12, 191, 7, 27, 226, 60, 254, 52, 143, 77, 164, 52, 15, 14, 27, 210, 178, 132, 155, 16, 90, 23, 17, 73, 74, + 90, 2, 227, 4, 79, 174, 79, 147, 27, 255, 255, 255, 255, 255, 255, 255, 239, 9, 255, 27, 228, 253, 228, 65, 15, + 175, 136, 41, 27, 231, 134, 51, 56, 239, 255, 169, 182, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 883, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3736c086001e0e73f970e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9315252190694101800" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45e184e3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7d0bdde43f44e6acb77e7554" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9015091607024980776" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3627569031948524758" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14230225014722058255" + } + }, + { + "_tag": "ByteArray", + "bytearray": "866233ba" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c5ed7ff6a59de" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cd4b6c28897523e0a0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12881486034580106566" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14210364951703845741" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "623ed1bb09d820b1d35607f7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10618270551656428147" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f455a80eb7d8caa65cc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17470357835051597884" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6159641863459365808" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "737163115882417863" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2423563828647440832" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee6b5ecaf3e7eaebe5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5152338833188675919" + } + } + } + ] + }, + "cborHex": "bf4b3736c086001e0e73f970e11b81466c835b8053284445e184e39f4c7d0bdde43f44e6acb77e75541b7d1c0a0d765453281b3257b6d09b7fdcd61bc57bea418462d80f44866233baff474c5ed7ff6a59de9f49cd4b6c28897523e0a01bb2c43b4ca64d6d461bc5355ba242f7fb6dff4c623ed1bb09d820b1d35607f7bf1b935baccf0878f2734a3f455a80eb7d8caa65cc1bf2732de39936803c1b557b71a3bf1ee3b0ff41739f1b0a3aedf2bfb10ec71b21a23a76290431c0ff49ee6b5ecaf3e7eaebe51b4780c8dedaa9614fff", + "cborBytes": [ + 191, 75, 55, 54, 192, 134, 0, 30, 14, 115, 249, 112, 225, 27, 129, 70, 108, 131, 91, 128, 83, 40, 68, 69, 225, + 132, 227, 159, 76, 125, 11, 221, 228, 63, 68, 230, 172, 183, 126, 117, 84, 27, 125, 28, 10, 13, 118, 84, 83, 40, + 27, 50, 87, 182, 208, 155, 127, 220, 214, 27, 197, 123, 234, 65, 132, 98, 216, 15, 68, 134, 98, 51, 186, 255, 71, + 76, 94, 215, 255, 106, 89, 222, 159, 73, 205, 75, 108, 40, 137, 117, 35, 224, 160, 27, 178, 196, 59, 76, 166, 77, + 109, 70, 27, 197, 53, 91, 162, 66, 247, 251, 109, 255, 76, 98, 62, 209, 187, 9, 216, 32, 177, 211, 86, 7, 247, + 191, 27, 147, 91, 172, 207, 8, 120, 242, 115, 74, 63, 69, 90, 128, 235, 125, 140, 170, 101, 204, 27, 242, 115, 45, + 227, 153, 54, 128, 60, 27, 85, 123, 113, 163, 191, 30, 227, 176, 255, 65, 115, 159, 27, 10, 58, 237, 242, 191, + 177, 14, 199, 27, 33, 162, 58, 118, 41, 4, 49, 192, 255, 73, 238, 107, 94, 202, 243, 231, 234, 235, 229, 27, 71, + 128, 200, 222, 218, 169, 97, 79, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 884, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9921050367526970929" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16411831713215705267" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18208490376440380067" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6839829402835250679" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13604657495168582857" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7045727017385511344" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8228061971934903542" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12777217070215330420" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f811f2fc674ddadd7377" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13043762765783804088" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf85bbeecc18b8a725" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17195485069487527443" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6574046757827796653" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18268208464845894654" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91cd2870be92442cc2a2" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b89aea6becb3426311be3c289fd53b670b31bfcb18d864fd8faa3bf1b5eebf49a58446df71bbccd73e94a6104c91b61c7736477a2c9b01b722ff2c4f3147cf61bb151cb3a903dfa744af811f2fc674ddadd73771bb504c1206d02a8b849bf85bbeecc18b8a7251beea2a290ab5656131b5b3bb4b209225ead1bfd85b6cf45ec73fe4a91cd2870be92442cc2a2ffff", + "cborBytes": [ + 191, 27, 137, 174, 166, 190, 203, 52, 38, 49, 27, 227, 194, 137, 253, 83, 182, 112, 179, 27, 252, 177, 141, 134, + 79, 216, 250, 163, 191, 27, 94, 235, 244, 154, 88, 68, 109, 247, 27, 188, 205, 115, 233, 74, 97, 4, 201, 27, 97, + 199, 115, 100, 119, 162, 201, 176, 27, 114, 47, 242, 196, 243, 20, 124, 246, 27, 177, 81, 203, 58, 144, 61, 250, + 116, 74, 248, 17, 242, 252, 103, 77, 218, 221, 115, 119, 27, 181, 4, 193, 32, 109, 2, 168, 184, 73, 191, 133, 187, + 238, 204, 24, 184, 167, 37, 27, 238, 162, 162, 144, 171, 86, 86, 19, 27, 91, 59, 180, 178, 9, 34, 94, 173, 27, + 253, 133, 182, 207, 69, 236, 115, 254, 74, 145, 205, 40, 112, 190, 146, 68, 44, 194, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 885, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1503048149410182373" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14104639219527320585" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12418535438946137190" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11427770711247470437" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16364862734612194410" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9dc29afe" + }, + { + "_tag": "ByteArray", + "bytearray": "af21418f98b98696d1c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6560868601058745363" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18384696001212295286" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12138322706402679746" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c21709ba367df37917d38c6b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "45030612261f28f4508c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10689186883052691769" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b14dbe65411e6f4e5d8669f1bc3bdbea3fcf804099f1bac57802f7cfbf466ffff1b9e9798ea3a84bf65d8669f1be31babf3ce96646a9f449dc29afe4aaf21418f98b98696d1c41b5b0ce33b501edc131bff238f9b57cda8761ba873fc309c309bc2ffff4cc21709ba367df37917d38c6bbf4a45030612261f28f4508c1b94579ed61e1ee139ffff", + "cborBytes": [ + 191, 27, 20, 219, 230, 84, 17, 230, 244, 229, 216, 102, 159, 27, 195, 189, 190, 163, 252, 248, 4, 9, 159, 27, 172, + 87, 128, 47, 124, 251, 244, 102, 255, 255, 27, 158, 151, 152, 234, 58, 132, 191, 101, 216, 102, 159, 27, 227, 27, + 171, 243, 206, 150, 100, 106, 159, 68, 157, 194, 154, 254, 74, 175, 33, 65, 143, 152, 185, 134, 150, 209, 196, 27, + 91, 12, 227, 59, 80, 30, 220, 19, 27, 255, 35, 143, 155, 87, 205, 168, 118, 27, 168, 115, 252, 48, 156, 48, 155, + 194, 255, 255, 76, 194, 23, 9, 186, 54, 125, 243, 121, 23, 211, 140, 107, 191, 74, 69, 3, 6, 18, 38, 31, 40, 244, + 80, 140, 27, 148, 87, 158, 214, 30, 30, 225, 57, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 886, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07e915fdf810ff06006c01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff0106033f4059046c" + } + } + ] + }, + "cborHex": "bf4b07e915fdf810ff06006c0149ff0106033f4059046cff", + "cborBytes": [191, 75, 7, 233, 21, 253, 248, 16, 255, 6, 0, 108, 1, 73, 255, 1, 6, 3, 63, 64, 89, 4, 108, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 887, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4158618008664186998" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15273757553890589649" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5928697131367271265" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4efad" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6315064990483472598" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1467277016763307000" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10084781615242166014" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0704d3c5f92286" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12779708211064099467" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1387865166492593326" + } + } + } + ] + }, + "cborHex": "bf0ebf1b39b6610baaf8a0761bd3f7499249167bd11b5246f6a120060b6143d4efadff1b57a39e267345e0d69f1bffffffffffffffec1b145cd0ac3b4593f8ff1b8bf4577295e63efe470704d3c5f922861bb15aa4e87d9e528b1b1342b00404edecaeff", + "cborBytes": [ + 191, 14, 191, 27, 57, 182, 97, 11, 170, 248, 160, 118, 27, 211, 247, 73, 146, 73, 22, 123, 209, 27, 82, 70, 246, + 161, 32, 6, 11, 97, 67, 212, 239, 173, 255, 27, 87, 163, 158, 38, 115, 69, 224, 214, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 236, 27, 20, 92, 208, 172, 59, 69, 147, 248, 255, 27, 139, 244, 87, 114, 149, 230, 62, 254, 71, 7, + 4, 211, 197, 249, 34, 134, 27, 177, 90, 164, 232, 125, 158, 82, 139, 27, 19, 66, 176, 4, 4, 237, 236, 174, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 888, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "052962" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "78c340cc" + }, + { + "_tag": "ByteArray", + "bytearray": "979075a4271a009a4406" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1946524233389499411" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14567030381600861793" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d62e4909d54aaa5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "904865d67c4ec467" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e77f89d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6699907785312864343" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15360391293894591606" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74e2c9c9842a8abb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10149073616255152400" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fefa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15396791052227632895" + } + } + } + ] + }, + "cborHex": "bf430529629f4478c340cc4a979075a4271a009a44061b1b03717a25dee4131bca287cf3dfa46e61ff481d62e4909d54aaa548904865d67c4ec467444e77f89dd8669f1b5cfadaa2137288579f1bd52b127fbb9704764874e2c9c9842a8abb1b8cd8c0ae902d7110ffff42fefa1bd5ac63e2e4f0deffff", + "cborBytes": [ + 191, 67, 5, 41, 98, 159, 68, 120, 195, 64, 204, 74, 151, 144, 117, 164, 39, 26, 0, 154, 68, 6, 27, 27, 3, 113, + 122, 37, 222, 228, 19, 27, 202, 40, 124, 243, 223, 164, 110, 97, 255, 72, 29, 98, 228, 144, 157, 84, 170, 165, 72, + 144, 72, 101, 214, 124, 78, 196, 103, 68, 78, 119, 248, 157, 216, 102, 159, 27, 92, 250, 218, 162, 19, 114, 136, + 87, 159, 27, 213, 43, 18, 127, 187, 151, 4, 118, 72, 116, 226, 201, 201, 132, 42, 138, 187, 27, 140, 216, 192, + 174, 144, 45, 113, 16, 255, 255, 66, 254, 250, 27, 213, 172, 99, 226, 228, 240, 222, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 889, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14002450619694893107" + } + }, + { + "_tag": "ByteArray", + "bytearray": "054058e9" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01059e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4563037396197657332" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5390263804318352136" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9227575461941737614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9960953450979639719" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12580326081385908395" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16823304227382265305" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "092cdc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02fda337" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4340574285151910504" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05d48aa704fbf4fafb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa4186c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14314547284698914285" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccf112e2fb5f1413d44d96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78543c22f4988cb7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04838904" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8210a1bb12dc6ca0d672fc80" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "377fcc50c625a063759a72" + } + } + ] + }, + "cborHex": "bf1bffffffffffffffebd905039f1bc252b2a683dcc83344054058e9ff4301059ebf1b3f532a55f92f4af41b4ace105f060a83081b800eeefe2b25f88e1b8a3c6a6365d7c1a71bae964beae796c8ab1be978620fa57285d9ff43092cdcbf4402fda3371b3c3cd150a3acba684905d48aa704fbf4fafb44aa4186c141061bc6a77ce9e902dded4bccf112e2fb5f1413d44d964878543c22f4988cb742d0fd440483890442f3c31bffffffffffffffecff4c8210a1bb12dc6ca0d672fc804b377fcc50c625a063759a72ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 235, 217, 5, 3, 159, 27, 194, 82, 178, 166, 131, 220, 200, 51, 68, 5, + 64, 88, 233, 255, 67, 1, 5, 158, 191, 27, 63, 83, 42, 85, 249, 47, 74, 244, 27, 74, 206, 16, 95, 6, 10, 131, 8, + 27, 128, 14, 238, 254, 43, 37, 248, 142, 27, 138, 60, 106, 99, 101, 215, 193, 167, 27, 174, 150, 75, 234, 231, + 150, 200, 171, 27, 233, 120, 98, 15, 165, 114, 133, 217, 255, 67, 9, 44, 220, 191, 68, 2, 253, 163, 55, 27, 60, + 60, 209, 80, 163, 172, 186, 104, 73, 5, 212, 138, 167, 4, 251, 244, 250, 251, 68, 170, 65, 134, 193, 65, 6, 27, + 198, 167, 124, 233, 233, 2, 221, 237, 75, 204, 241, 18, 226, 251, 95, 20, 19, 212, 77, 150, 72, 120, 84, 60, 34, + 244, 152, 140, 183, 66, 208, 253, 68, 4, 131, 137, 4, 66, 243, 195, 27, 255, 255, 255, 255, 255, 255, 255, 236, + 255, 76, 130, 16, 161, 187, 18, 220, 108, 160, 214, 114, 252, 128, 75, 55, 127, 204, 80, 198, 37, 160, 99, 117, + 154, 114, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 890, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13694338507994122465" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4949656891573196222" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1a0c3f9046158b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15489083142893089642" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3519763708876535138" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11523662651220946002" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "634768677b8de07dd0acae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "973746608632429392" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c16716" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7370337244737089394" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bbe0c10513af148e1d8669f1b44b0b6b7ee48d5be9f471a0c3f9046158b1bd6f4470dc4a2336a1b30d8b671d8e5b5621b9fec46205575ec52ffff4b634768677b8de07dd0acae1b0d837161a4c6fb5043c167169f1b6648b2aca362af72ffff", + "cborBytes": [ + 191, 27, 190, 12, 16, 81, 58, 241, 72, 225, 216, 102, 159, 27, 68, 176, 182, 183, 238, 72, 213, 190, 159, 71, 26, + 12, 63, 144, 70, 21, 139, 27, 214, 244, 71, 13, 196, 162, 51, 106, 27, 48, 216, 182, 113, 216, 229, 181, 98, 27, + 159, 236, 70, 32, 85, 117, 236, 82, 255, 255, 75, 99, 71, 104, 103, 123, 141, 224, 125, 208, 172, 174, 27, 13, + 131, 113, 97, 164, 198, 251, 80, 67, 193, 103, 22, 159, 27, 102, 72, 178, 172, 163, 98, 175, 114, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 891, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16882597848386812228" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13381940109274844893" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17091934660517568571" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19379c35e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16355060558374964865" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4fdfac5a0008" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14067678735349192217" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5cb6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11419859822118148999" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6185ba3006df21ea83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae78bd174cab7f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a10ce84025025a74" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "204763243818161701" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06536bd925a310ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5bd9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b2674b521f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01c5526d" + } + } + ] + }, + "cborHex": "bf1bea4b094b96deb9441bb9b633a0fae10edd1bed32c0044c56203bbf4519379c35e41be2f8d8eccdf10e81464fdfac5a00081bc33a6f46aace1619425cb61b9e7b7e00d21b9b87496185ba3006df21ea8347ae78bd174cab7f48a10ce84025025a741b02d77715dad69625ff4806536bd925a310ad425bd9465b2674b521f34401c5526dff", + "cborBytes": [ + 191, 27, 234, 75, 9, 75, 150, 222, 185, 68, 27, 185, 182, 51, 160, 250, 225, 14, 221, 27, 237, 50, 192, 4, 76, 86, + 32, 59, 191, 69, 25, 55, 156, 53, 228, 27, 226, 248, 216, 236, 205, 241, 14, 129, 70, 79, 223, 172, 90, 0, 8, 27, + 195, 58, 111, 70, 170, 206, 22, 25, 66, 92, 182, 27, 158, 123, 126, 0, 210, 27, 155, 135, 73, 97, 133, 186, 48, 6, + 223, 33, 234, 131, 71, 174, 120, 189, 23, 76, 171, 127, 72, 161, 12, 232, 64, 37, 2, 90, 116, 27, 2, 215, 119, 21, + 218, 214, 150, 37, 255, 72, 6, 83, 107, 217, 37, 163, 16, 173, 66, 91, 217, 70, 91, 38, 116, 181, 33, 243, 68, 1, + 197, 82, 109, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 892, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4915131021305782214" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eaee7eb32bb91eb81c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6100249921300283485" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8329250563313684540" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "268403a75af7121f36" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4910338786115230692" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "872277413842197333" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3498614395292721049" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16557781500969358868" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13812373186286750075" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99e71e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83521427" + } + } + ] + }, + "cborHex": "bf1b44360d9f556f1fc649eaee7eb32bb91eb81c1b54a870fba035405d1b73977141cf88d03c49268403a75af7121f369f1b4425071c21389be41b0c1af3afb5a91b551b308d93418d7d9f991be5c90e8c59d016141bbfaf683b59c0897bff4399e71e4483521427ff", + "cborBytes": [ + 191, 27, 68, 54, 13, 159, 85, 111, 31, 198, 73, 234, 238, 126, 179, 43, 185, 30, 184, 28, 27, 84, 168, 112, 251, + 160, 53, 64, 93, 27, 115, 151, 113, 65, 207, 136, 208, 60, 73, 38, 132, 3, 167, 90, 247, 18, 31, 54, 159, 27, 68, + 37, 7, 28, 33, 56, 155, 228, 27, 12, 26, 243, 175, 181, 169, 27, 85, 27, 48, 141, 147, 65, 141, 125, 159, 153, 27, + 229, 201, 14, 140, 89, 208, 22, 20, 27, 191, 175, 104, 59, 89, 192, 137, 123, 255, 67, 153, 231, 30, 68, 131, 82, + 20, 39, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 893, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9402842671013642786" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b827d9b9744a7422280ff", + "cborBytes": [191, 27, 130, 125, 155, 151, 68, 167, 66, 34, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 894, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bc6fd1642b009cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "599688" + } + } + ] + }, + "cborHex": "bf486bc6fd1642b009cb43599688ff", + "cborBytes": [191, 72, 107, 198, 253, 22, 66, 176, 9, 203, 67, 89, 150, 136, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 895, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10904598741817607290" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17911020194654217637" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15263283273917071161" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5821825254488364205" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5060294982134727861" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7303339680266456918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "364952d157b1782dbe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18186837554088688899" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e26a04b7bdcb381" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b9754eac7d835c47a1bf890b9f86b3665a51bd3d21344effcff39bf1b50cb47393e2d54ad1b4639c779c4d504b51b655aacbe944c0f5649364952d157b1782dbe1bfc64a065bf30bd03487e26a04b7bdcb381ffff", + "cborBytes": [ + 191, 27, 151, 84, 234, 199, 216, 53, 196, 122, 27, 248, 144, 185, 248, 107, 54, 101, 165, 27, 211, 210, 19, 68, + 239, 252, 255, 57, 191, 27, 80, 203, 71, 57, 62, 45, 84, 173, 27, 70, 57, 199, 121, 196, 213, 4, 181, 27, 101, 90, + 172, 190, 148, 76, 15, 86, 73, 54, 73, 82, 209, 87, 177, 120, 45, 190, 27, 252, 100, 160, 101, 191, 48, 189, 3, + 72, 126, 38, 160, 75, 123, 220, 179, 129, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 896, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe8e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0ec40c40979e174d7bba" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1453744614579532083" + } + } + ] + } + } + ] + }, + "cborHex": "bf42fe8ed905019f4a0ec40c40979e174d7bba1b142cbd0652267133ffff", + "cborBytes": [ + 191, 66, 254, 142, 217, 5, 1, 159, 74, 14, 196, 12, 64, 151, 158, 23, 77, 123, 186, 27, 20, 44, 189, 6, 82, 38, + 113, 51, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 897, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12183524075264671396" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5947033283264953253" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01f95dee30026a1e8304e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ae075bb4886" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb04f90707f80f01ca02fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c" + } + } + ] + }, + "cborHex": "bf0ba01ba91492986a91fea41b52881b432c6ebba54b01f95dee30026a1e8304e5468ae075bb48864bfb04f90707f80f01ca02fc413cff", + "cborBytes": [ + 191, 11, 160, 27, 169, 20, 146, 152, 106, 145, 254, 164, 27, 82, 136, 27, 67, 44, 110, 187, 165, 75, 1, 249, 93, + 238, 48, 2, 106, 30, 131, 4, 229, 70, 138, 224, 117, 187, 72, 134, 75, 251, 4, 249, 7, 7, 248, 15, 1, 202, 2, 252, + 65, 60, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 898, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13216690920334421666" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1255950181232771624" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10158120534162449167" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bb76b1e5df4a9eea2d8669f1b116e080917f782289f1b8cf8e4ce485aa30fffffff", + "cborBytes": [ + 191, 27, 183, 107, 30, 93, 244, 169, 238, 162, 216, 102, 159, 27, 17, 110, 8, 9, 23, 247, 130, 40, 159, 27, 140, + 248, 228, 206, 72, 90, 163, 15, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 899, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4632610023248500155" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5b086e7b6fdda90de97" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5782831313688610111" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15425180446619657792" + } + } + } + ] + }, + "cborHex": "bf1b404a564582a415bb4ac5b086e7b6fdda90de971b5040be70e86a453f1bd6113fe3dd10e640ff", + "cborBytes": [ + 191, 27, 64, 74, 86, 69, 130, 164, 21, 187, 74, 197, 176, 134, 231, 182, 253, 218, 144, 222, 151, 27, 80, 64, 190, + 112, 232, 106, 69, 63, 27, 214, 17, 63, 227, 221, 16, 230, 64, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 900, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5705252617834673061" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10594126356459226248" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7879442597319655388" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f39146fc8d331071f496" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8527257631164512196" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "53cfbe7ffd5874d1e8f93465" + }, + { + "_tag": "ByteArray", + "bytearray": "f832724ffb553d2bba388d2c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15814333205087224179" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8" + }, + { + "_tag": "ByteArray", + "bytearray": "93fe902fd8060d2d664871" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9290925331985558136" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10068539766784444491" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8244540909299040930" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8609e09287de0" + }, + { + "_tag": "ByteArray", + "bytearray": "62f549" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9699293914560583928" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12056220079771336095" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16758772977094941183" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b4f2d210737e733a59f1b9305e5ca865b04881b6d59674b9151bfdc4af39146fc8d331071f496ff1b7656e7a2ddccb7c49f4c53cfbe7ffd5874d1e8f934654cf832724ffb553d2bba388d2c1bdb77cc4318e3817341c84b93fe902fd8060d2d664871ff1b80efff5d2fad6a78d8669f1b8bbaa3928e14c84b9f1b726a7e468af202a247c8609e09287de04362f549ffff1b869ad06d1d7dd8f81ba7504c4934b3bd9f1be8931f3b1b28d9ff80ff", + "cborBytes": [ + 191, 27, 79, 45, 33, 7, 55, 231, 51, 165, 159, 27, 147, 5, 229, 202, 134, 91, 4, 136, 27, 109, 89, 103, 75, 145, + 81, 191, 220, 74, 243, 145, 70, 252, 141, 51, 16, 113, 244, 150, 255, 27, 118, 86, 231, 162, 221, 204, 183, 196, + 159, 76, 83, 207, 190, 127, 253, 88, 116, 209, 232, 249, 52, 101, 76, 248, 50, 114, 79, 251, 85, 61, 43, 186, 56, + 141, 44, 27, 219, 119, 204, 67, 24, 227, 129, 115, 65, 200, 75, 147, 254, 144, 47, 216, 6, 13, 45, 102, 72, 113, + 255, 27, 128, 239, 255, 93, 47, 173, 106, 120, 216, 102, 159, 27, 139, 186, 163, 146, 142, 20, 200, 75, 159, 27, + 114, 106, 126, 70, 138, 242, 2, 162, 71, 200, 96, 158, 9, 40, 125, 224, 67, 98, 245, 73, 255, 255, 27, 134, 154, + 208, 109, 29, 125, 216, 248, 27, 167, 80, 76, 73, 52, 179, 189, 159, 27, 232, 147, 31, 59, 27, 40, 217, 255, 128, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 901, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1956496161953101834" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8782867841338033268" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3431031180030476880" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5010742647645970648" + } + } + } + ] + }, + "cborHex": "bf1b1b26dee4b1a1380a1b79e303c4a027c4741b2f9d78ae0b0182501b4589bbe3d5d6a0d8ff", + "cborBytes": [ + 191, 27, 27, 38, 222, 228, 177, 161, 56, 10, 27, 121, 227, 3, 196, 160, 39, 196, 116, 27, 47, 157, 120, 174, 11, + 1, 130, 80, 27, 69, 137, 187, 227, 213, 214, 160, 216, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 902, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10478189439493499580" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "524401324803880490" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4076629203047579824" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e92370d827fea38637a4ac88" + }, + { + "_tag": "ByteArray", + "bytearray": "5e032cfda5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4604428443414463154" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11096465198883887122" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13561543052309571232" + } + } + } + ] + }, + "cborHex": "bf1b916a01c786426abc9f1b07470c39fcadf62a1b389318a948a280b04ce92370d827fea38637a4ac88455e032cfda51b3fe63746236c82b2ff1b99fe904e89f558121bbc34478dcf1426a0ff", + "cborBytes": [ + 191, 27, 145, 106, 1, 199, 134, 66, 106, 188, 159, 27, 7, 71, 12, 57, 252, 173, 246, 42, 27, 56, 147, 24, 169, 72, + 162, 128, 176, 76, 233, 35, 112, 216, 39, 254, 163, 134, 55, 164, 172, 136, 69, 94, 3, 44, 253, 165, 27, 63, 230, + 55, 70, 35, 108, 130, 178, 255, 27, 153, 254, 144, 78, 137, 245, 88, 18, 27, 188, 52, 71, 141, 207, 20, 38, 160, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 903, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7274a0eedb43bab9d18" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4af7274a0eedb43bab9d1880ff", + "cborBytes": [191, 74, 247, 39, 74, 14, 237, 180, 59, 171, 157, 24, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 904, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6026199479959067592" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c88f5b074a6" + } + } + ] + }, + "cborHex": "bf1b53a15c7fb49a9bc8469c88f5b074a6ff", + "cborBytes": [191, 27, 83, 161, 92, 127, 180, 154, 155, 200, 70, 156, 136, 245, 176, 116, 166, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 905, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f22b9f58c5d155" + }, + { + "_tag": "ByteArray", + "bytearray": "ddb5670b28" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7981928063321078627" + } + } + } + ] + }, + "cborHex": "bf41049f47f22b9f58c5d15545ddb5670b28ff42a6de1b6ec5814894f97b63ff", + "cborBytes": [ + 191, 65, 4, 159, 71, 242, 43, 159, 88, 197, 209, 85, 69, 221, 181, 103, 11, 40, 255, 66, 166, 222, 27, 110, 197, + 129, 72, 148, 249, 123, 99, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 906, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "013277" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0005" + } + } + ] + }, + "cborHex": "bf43013277420005ff", + "cborBytes": [191, 67, 1, 50, 119, 66, 0, 5, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 907, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6201753215257557302" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6637410115711580332" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b56110db0e41039369f1b5c1cd1556f92b8acffff", + "cborBytes": [191, 27, 86, 17, 13, 176, 228, 16, 57, 54, 159, 27, 92, 28, 209, 85, 111, 146, 184, 172, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 908, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + } + ] + }, + "cborHex": "bf12a01bfffffffffffffffe1bffffffffffffffefff", + "cborBytes": [ + 191, 18, 160, 27, 255, 255, 255, 255, 255, 255, 255, 254, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 909, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f923137ada9af5b33" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12394176737408711827" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "13c79de09f" + }, + { + "_tag": "ByteArray", + "bytearray": "4defa7a20946" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5365" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3e9c368a2c0bf6" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afdc794b43b2" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "538f33227fcc01" + }, + { + "_tag": "ByteArray", + "bytearray": "5178917e6ef0209d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7299078943386890509" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db731b032bb3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8987d67778" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83e165fa93f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9cd6e7ab739dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba87ba08636b7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07e582fb" + } + } + ] + } + } + ] + }, + "cborHex": "bf491f923137ada9af5b33d8669f1bac00f61354a7fc939f4513c79de09f464defa7a20946ffff424d0741384253659f473e9c368a2c0bf6ff46afdc794b43b29f47538f33227fcc01485178917e6ef0209d1b654b89a0781bf10dff46db731b032bb3bf458987d677784683e165fa93f647a9cd6e7ab739dc411347ba87ba08636b7d4407e582fbffff", + "cborBytes": [ + 191, 73, 31, 146, 49, 55, 173, 169, 175, 91, 51, 216, 102, 159, 27, 172, 0, 246, 19, 84, 167, 252, 147, 159, 69, + 19, 199, 157, 224, 159, 70, 77, 239, 167, 162, 9, 70, 255, 255, 66, 77, 7, 65, 56, 66, 83, 101, 159, 71, 62, 156, + 54, 138, 44, 11, 246, 255, 70, 175, 220, 121, 75, 67, 178, 159, 71, 83, 143, 51, 34, 127, 204, 1, 72, 81, 120, + 145, 126, 110, 240, 32, 157, 27, 101, 75, 137, 160, 120, 27, 241, 13, 255, 70, 219, 115, 27, 3, 43, 179, 191, 69, + 137, 135, 214, 119, 120, 70, 131, 225, 101, 250, 147, 246, 71, 169, 205, 110, 122, 183, 57, 220, 65, 19, 71, 186, + 135, 186, 8, 99, 107, 125, 68, 7, 229, 130, 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 910, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21f552f4f73628a19883c123" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5567597072070325539" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9060494259932021992" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f80f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "206222200720064306" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdf6b260ff392dfd2621311e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6b9b715ff76daf1d70f82" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4436217943027622621" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3621948516405685435" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14697685275369006108" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7952d5d9400d0407a3ba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7662c1fbb2ab2115" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "866669902b1e253dcc" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14926792869164047806" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62a0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10325609519688680208" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2998264368499378326" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d2407fe37b31c7b3811" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdf13e57633d0e" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ceeba009680e35bc5f36d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9845397081301302188" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0e44c4d36" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f742835dd0700025e7a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00dad6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ef87631f0163a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3de0427d32f12ace93" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8510bb70052e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd1774cf" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c21f552f4f73628a19883c123bf1b4d441409e541b5231b7dbd57865cb6c4e8437f80f31b02dca5ffbab7ff324cbdf6b260ff392dfd2621311e4bd6b9b715ff76daf1d70f82ff4173bf1b3d909cb7106022dd1b3243befc5b1d2cbb1bcbf8aae2e2dbe41c4a7952d5d9400d0407a3ba487662c1fbb2ab211541baff49866669902b1e253dcc9f1bcf269f076a5b5dbe4262a01b8f4bef26966f83101b299bf98ec31dc8964a5d2407fe37b31c7b3811ff47bdf13e57633d0e804bceeba009680e35bc5f36d41b88a1e07b77a1bbac45d0e44c4d36bf4a3f742835dd0700025e7a4300dad6478ef87631f0163a493de0427d32f12ace9347e8510bb70052e644fd1774cfffff", + "cborBytes": [ + 191, 76, 33, 245, 82, 244, 247, 54, 40, 161, 152, 131, 193, 35, 191, 27, 77, 68, 20, 9, 229, 65, 181, 35, 27, 125, + 189, 87, 134, 92, 182, 196, 232, 67, 127, 128, 243, 27, 2, 220, 165, 255, 186, 183, 255, 50, 76, 189, 246, 178, + 96, 255, 57, 45, 253, 38, 33, 49, 30, 75, 214, 185, 183, 21, 255, 118, 218, 241, 215, 15, 130, 255, 65, 115, 191, + 27, 61, 144, 156, 183, 16, 96, 34, 221, 27, 50, 67, 190, 252, 91, 29, 44, 187, 27, 203, 248, 170, 226, 226, 219, + 228, 28, 74, 121, 82, 213, 217, 64, 13, 4, 7, 163, 186, 72, 118, 98, 193, 251, 178, 171, 33, 21, 65, 186, 255, 73, + 134, 102, 105, 144, 43, 30, 37, 61, 204, 159, 27, 207, 38, 159, 7, 106, 91, 93, 190, 66, 98, 160, 27, 143, 75, + 239, 38, 150, 111, 131, 16, 27, 41, 155, 249, 142, 195, 29, 200, 150, 74, 93, 36, 7, 254, 55, 179, 28, 123, 56, + 17, 255, 71, 189, 241, 62, 87, 99, 61, 14, 128, 75, 206, 235, 160, 9, 104, 14, 53, 188, 95, 54, 212, 27, 136, 161, + 224, 123, 119, 161, 187, 172, 69, 208, 228, 76, 77, 54, 191, 74, 63, 116, 40, 53, 221, 7, 0, 2, 94, 122, 67, 0, + 218, 214, 71, 142, 248, 118, 49, 240, 22, 58, 73, 61, 224, 66, 125, 50, 241, 42, 206, 147, 71, 232, 81, 11, 183, + 0, 82, 230, 68, 253, 23, 116, 207, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 911, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7478472960747879321" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7ccc6f6f18bf4bf267c57e96" + }, + { + "_tag": "ByteArray", + "bytearray": "1687eda2dd2443d5dd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15403122532578530624" + } + }, + { + "_tag": "ByteArray", + "bytearray": "93452903cc3d5276bb5f2098" + }, + { + "_tag": "ByteArray", + "bytearray": "963d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15895147148199789958" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61044756240ed678335075cf" + } + } + ] + }, + "cborHex": "bf1b67c8df88ffbdbb999f4c7ccc6f6f18bf4bf267c57e96491687eda2dd2443d5dd1bd5c2e2558a2895404c93452903cc3d5276bb5f209842963dff1bdc96e81d7d0305864c61044756240ed678335075cfff", + "cborBytes": [ + 191, 27, 103, 200, 223, 136, 255, 189, 187, 153, 159, 76, 124, 204, 111, 111, 24, 191, 75, 242, 103, 197, 126, + 150, 73, 22, 135, 237, 162, 221, 36, 67, 213, 221, 27, 213, 194, 226, 85, 138, 40, 149, 64, 76, 147, 69, 41, 3, + 204, 61, 82, 118, 187, 95, 32, 152, 66, 150, 61, 255, 27, 220, 150, 232, 29, 125, 3, 5, 134, 76, 97, 4, 71, 86, + 36, 14, 214, 120, 51, 80, 117, 207, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 912, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2430198044469542648" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc411f728a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5151052971905782336" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12194720799706918857" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6936203272847402117" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d0b4d1f3145c941fb46379" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14253332813158753819" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11181545048323660351" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "718741984275980026" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9556033253154442966" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60a15929f4ae0e1f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11714473553365157756" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1079921660458088938" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9bc9bfb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3983795441927176049" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f243a7bfc35" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4884754816891641632" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15792706871336837072" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8882797733497951279" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2308cf58325c076d9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12119186592675823941" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "140b55d4b3f1437b" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13828264697641284115" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b21b9cc3ee674bef845dc411f728a1b477c3762f1aa12401ba93c59f4f9992fc91b6042582087f8a4859f4bd0b4d1f3145c941fb463791bc5ce02ad19bf261b1b9b2cd3faa55c1a3f1b09f97c06d1eddefaff1b849dd99d1c174ed64860a15929f4ae0e1f1ba2922ba17f09c77cbf1b0efca7074cdab9ea44a9bc9bfb1b374948d8ede3bf71460f243a7bfc351b43ca22a01bb45f201bdb2af739e3e71fd01b7b460979bcca542f49c2308cf58325c076d91ba82ffffeef1e814548140b55d4b3f1437bff1bbfe7dd7a2afbb213a0ff", + "cborBytes": [ + 191, 27, 33, 185, 204, 62, 230, 116, 190, 248, 69, 220, 65, 31, 114, 138, 27, 71, 124, 55, 98, 241, 170, 18, 64, + 27, 169, 60, 89, 244, 249, 153, 47, 201, 27, 96, 66, 88, 32, 135, 248, 164, 133, 159, 75, 208, 180, 209, 243, 20, + 92, 148, 31, 180, 99, 121, 27, 197, 206, 2, 173, 25, 191, 38, 27, 27, 155, 44, 211, 250, 165, 92, 26, 63, 27, 9, + 249, 124, 6, 209, 237, 222, 250, 255, 27, 132, 157, 217, 157, 28, 23, 78, 214, 72, 96, 161, 89, 41, 244, 174, 14, + 31, 27, 162, 146, 43, 161, 127, 9, 199, 124, 191, 27, 14, 252, 167, 7, 76, 218, 185, 234, 68, 169, 188, 155, 251, + 27, 55, 73, 72, 216, 237, 227, 191, 113, 70, 15, 36, 58, 123, 252, 53, 27, 67, 202, 34, 160, 27, 180, 95, 32, 27, + 219, 42, 247, 57, 227, 231, 31, 208, 27, 123, 70, 9, 121, 188, 202, 84, 47, 73, 194, 48, 140, 245, 131, 37, 192, + 118, 217, 27, 168, 47, 255, 254, 239, 30, 129, 69, 72, 20, 11, 85, 212, 179, 241, 67, 123, 255, 27, 191, 231, 221, + 122, 42, 251, 178, 19, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 913, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05d3d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "395642236787871517" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "168a71319d6cb921e349" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "912810307372078884" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14454241051835624366" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8441310499238914636" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a6f2ed1995e75b" + }, + { + "_tag": "ByteArray", + "bytearray": "20a056a3a1815b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3971687034252925974" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a39a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1434726110690644987" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2a35079e1a28830" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13316942988768231740" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1edbfcfce967bc106" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "551718402214076120" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5098186773332008400" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9e5459b6a9c654fa8656e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10548245020551339797" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13190156299843289667" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12547237183305685239" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11207624951612677537" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4305d3d61b057d9a84a5e1cf1d4a168a71319d6cb921e349d8669f1b0caaf423663a57249f1bc897c7a7a087ebae1b75258f2cd1e92a4c47a6f2ed1995e75b4720a056a3a1815b1b371e445093ab9c16ffff42a39a1b13e92bcbd1b193fb48b2a35079e1a288301bb8cf491793a8c13c49d1edbfcfce967bc106bf1b07a818f6b4041ed841351b46c065dbe70c9dd04be9e5459b6a9c654fa8656e1b9262e4f58dbedf151bb70cd945300a42431bae20bdbd778218f71b9b897b8350ad9da1ffff", + "cborBytes": [ + 191, 67, 5, 211, 214, 27, 5, 125, 154, 132, 165, 225, 207, 29, 74, 22, 138, 113, 49, 157, 108, 185, 33, 227, 73, + 216, 102, 159, 27, 12, 170, 244, 35, 102, 58, 87, 36, 159, 27, 200, 151, 199, 167, 160, 135, 235, 174, 27, 117, + 37, 143, 44, 209, 233, 42, 76, 71, 166, 242, 237, 25, 149, 231, 91, 71, 32, 160, 86, 163, 161, 129, 91, 27, 55, + 30, 68, 80, 147, 171, 156, 22, 255, 255, 66, 163, 154, 27, 19, 233, 43, 203, 209, 177, 147, 251, 72, 178, 163, 80, + 121, 225, 162, 136, 48, 27, 184, 207, 73, 23, 147, 168, 193, 60, 73, 209, 237, 191, 207, 206, 150, 123, 193, 6, + 191, 27, 7, 168, 24, 246, 180, 4, 30, 216, 65, 53, 27, 70, 192, 101, 219, 231, 12, 157, 208, 75, 233, 229, 69, + 155, 106, 156, 101, 79, 168, 101, 110, 27, 146, 98, 228, 245, 141, 190, 223, 21, 27, 183, 12, 217, 69, 48, 10, 66, + 67, 27, 174, 32, 189, 189, 119, 130, 24, 247, 27, 155, 137, 123, 131, 80, 173, 157, 161, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 914, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe04fa" + } + } + ] + }, + "cborHex": "bf1143fe04faff", + "cborBytes": [191, 17, 67, 254, 4, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 915, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15838307067904566863" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4089374932356871791" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b17e7368" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6568968443309590804" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acbe9778" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11406053317123780895" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13961761832334723392" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11487112691177570525" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1718036293912847139" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13956242809196315959" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1821684324815295294" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15474428611151326792" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f19bfe37" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bdbccf85d0202a64fbf1b38c060d5a484b66f44b17e73681b5b29a9fecc38091444acbe97781b9e4a710f6054311f1bc1c22469f6eb09401b9f6a6c219c8540dd1b17d7b0e821e763231bc1ae88e4413f05371b1947ec3de183533e1bd6c036d5b5d0ee4844f19bfe37ffff", + "cborBytes": [ + 191, 27, 219, 204, 248, 93, 2, 2, 166, 79, 191, 27, 56, 192, 96, 213, 164, 132, 182, 111, 68, 177, 126, 115, 104, + 27, 91, 41, 169, 254, 204, 56, 9, 20, 68, 172, 190, 151, 120, 27, 158, 74, 113, 15, 96, 84, 49, 31, 27, 193, 194, + 36, 105, 246, 235, 9, 64, 27, 159, 106, 108, 33, 156, 133, 64, 221, 27, 23, 215, 176, 232, 33, 231, 99, 35, 27, + 193, 174, 136, 228, 65, 63, 5, 55, 27, 25, 71, 236, 61, 225, 131, 83, 62, 27, 214, 192, 54, 213, 181, 208, 238, + 72, 68, 241, 155, 254, 55, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 916, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13344509572252621674" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24cd13b20436" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5819697107595671929" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13511598374900353279" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5712351070106390750" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6928421001749656742" + } + }, + { + "_tag": "ByteArray", + "bytearray": "777efb3de7846569" + }, + { + "_tag": "ByteArray", + "bytearray": "e0f3e356f365a66cf08a" + } + ] + } + } + ] + }, + "cborHex": "bf41011bb93138c0f3eadb6a4624cd13b20436d8669f1b50c3b7af6e9bb9799f1bbb82d7226bae48ff1b4f4659086e0390de1b6026b23157a4f4a648777efb3de78465694ae0f3e356f365a66cf08affffff", + "cborBytes": [ + 191, 65, 1, 27, 185, 49, 56, 192, 243, 234, 219, 106, 70, 36, 205, 19, 178, 4, 54, 216, 102, 159, 27, 80, 195, + 183, 175, 110, 155, 185, 121, 159, 27, 187, 130, 215, 34, 107, 174, 72, 255, 27, 79, 70, 89, 8, 110, 3, 144, 222, + 27, 96, 38, 178, 49, 87, 164, 244, 166, 72, 119, 126, 251, 61, 231, 132, 101, 105, 74, 224, 243, 227, 86, 243, + 101, 166, 108, 240, 138, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 917, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "020168" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16828390764922534301" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7454eabbe82a" + }, + { + "_tag": "ByteArray", + "bytearray": "0a5fc2170ad5f949" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17859666143049744398" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18159234558033566384" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a6bebccb5716a7f03b9dbda8" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "698575437e485fce" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1fffbc86c0102b4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4366052717254541143" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8fcff07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2194665694882288681" + } + } + } + ] + }, + "cborHex": "bf43020168d8669f1be98a743d74abf99d9f467454eabbe82a480a5fc2170ad5f9491bf7da47bb878d000e1bfc028f9e68969ab04ca6bebccb5716a7f03b9dbda8ffff48698575437e485fcea048e1fffbc86c0102b4d8669f1b3c9755d06295ff5780ff44f8fcff071b1e7504d25831d429ff", + "cborBytes": [ + 191, 67, 2, 1, 104, 216, 102, 159, 27, 233, 138, 116, 61, 116, 171, 249, 157, 159, 70, 116, 84, 234, 187, 232, 42, + 72, 10, 95, 194, 23, 10, 213, 249, 73, 27, 247, 218, 71, 187, 135, 141, 0, 14, 27, 252, 2, 143, 158, 104, 150, + 154, 176, 76, 166, 190, 188, 203, 87, 22, 167, 240, 59, 157, 189, 168, 255, 255, 72, 105, 133, 117, 67, 126, 72, + 95, 206, 160, 72, 225, 255, 251, 200, 108, 1, 2, 180, 216, 102, 159, 27, 60, 151, 85, 208, 98, 149, 255, 87, 128, + 255, 68, 248, 252, 255, 7, 27, 30, 117, 4, 210, 88, 49, 212, 41, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 918, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9f72465fc74a5c8b1564cbb" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "127562256883931041" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14922660413624422049" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4cd9f72465fc74a5c8b1564cbbbf1b01c53132605057a11bcf17f09521de0ea1ffff", + "cborBytes": [ + 191, 76, 217, 247, 36, 101, 252, 116, 165, 200, 177, 86, 76, 187, 191, 27, 1, 197, 49, 50, 96, 80, 87, 161, 27, + 207, 23, 240, 149, 33, 222, 14, 161, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 919, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5989947833315439518" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67368bb86ae49dd619534b11" + } + } + ] + }, + "cborHex": "bf1b532091d17be3339e4c67368bb86ae49dd619534b11ff", + "cborBytes": [ + 191, 27, 83, 32, 145, 209, 123, 227, 51, 158, 76, 103, 54, 139, 184, 106, 228, 157, 214, 25, 83, 75, 17, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 920, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16013603028684184876" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21508098477733" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1459313283917048377" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "902e407679a5ff13e3c3fb50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d1bcad3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a67cc8313181f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16983055666538942137" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c069b886b784668aa5ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8aba4c97c0" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bde3bbf1c62d71d2cbf47215080984777331b144085b32fe26a394c902e407679a5ff13e3c3fb50444d1bcad347a67cc8313181f61bebafef260cbd0eb94ac069b886b784668aa5ab458aba4c97c0ffff", + "cborBytes": [ + 191, 27, 222, 59, 191, 28, 98, 215, 29, 44, 191, 71, 33, 80, 128, 152, 71, 119, 51, 27, 20, 64, 133, 179, 47, 226, + 106, 57, 76, 144, 46, 64, 118, 121, 165, 255, 19, 227, 195, 251, 80, 68, 77, 27, 202, 211, 71, 166, 124, 200, 49, + 49, 129, 246, 27, 235, 175, 239, 38, 12, 189, 14, 185, 74, 192, 105, 184, 134, 183, 132, 102, 138, 165, 171, 69, + 138, 186, 76, 151, 192, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 921, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07fd3f97" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4624102295156516267" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa193025" + } + ] + } + } + ] + }, + "cborHex": "bf4407fd3f979f1b402c1c89b3df65ab0c1bfffffffffffffffc44fa193025ffff", + "cborBytes": [ + 191, 68, 7, 253, 63, 151, 159, 27, 64, 44, 28, 137, 179, 223, 101, 171, 12, 27, 255, 255, 255, 255, 255, 255, 255, + 252, 68, 250, 25, 48, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 922, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4034a40" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "743d4cf6" + }, + { + "_tag": "ByteArray", + "bytearray": "c69e3b7197bdcd" + }, + { + "_tag": "ByteArray", + "bytearray": "680fd2ae" + } + ] + } + } + ] + }, + "cborHex": "bf44e4034a409f44743d4cf647c69e3b7197bdcd44680fd2aeffff", + "cborBytes": [ + 191, 68, 228, 3, 74, 64, 159, 68, 116, 61, 76, 246, 71, 198, 158, 59, 113, 151, 189, 205, 68, 104, 15, 210, 174, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 923, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d3513b38363011a6840" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18258165541810847901" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3b0008c06100020c5c9a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12396509947265805464" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5044153395929463624" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3464323751946919984" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd9bb73353fde99e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21ddbe" + } + } + ] + }, + "cborHex": "bf4a1d3513b38363011a6840d8669f1bfd6208d309e9c09d9f4a3b0008c06100020c5c9a1bac09401e155fec981b46006ec9dcf4bb48ffff41211b3013c018fdbea03048bd9bb73353fde99e4321ddbeff", + "cborBytes": [ + 191, 74, 29, 53, 19, 179, 131, 99, 1, 26, 104, 64, 216, 102, 159, 27, 253, 98, 8, 211, 9, 233, 192, 157, 159, 74, + 59, 0, 8, 192, 97, 0, 2, 12, 92, 154, 27, 172, 9, 64, 30, 21, 95, 236, 152, 27, 70, 0, 110, 201, 220, 244, 187, + 72, 255, 255, 65, 33, 27, 48, 19, 192, 24, 253, 190, 160, 48, 72, 189, 155, 183, 51, 83, 253, 233, 158, 67, 33, + 221, 190, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 924, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15933697121265032919" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "315d85dfd93e4a9cc0025b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "737932642021967518" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a013d74a0c471c7bbd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7649323460045101102" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bdd1fdd1c87aa9ed7bf4b315d85dfd93e4a9cc0025b1b0a3da9d403e2869e49a013d74a0c471c7bbd1b6a27db28b80cd82effff", + "cborBytes": [ + 191, 27, 221, 31, 221, 28, 135, 170, 158, 215, 191, 75, 49, 93, 133, 223, 217, 62, 74, 156, 192, 2, 91, 27, 10, + 61, 169, 212, 3, 226, 134, 158, 73, 160, 19, 215, 74, 12, 71, 28, 123, 189, 27, 106, 39, 219, 40, 184, 12, 216, + 46, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 925, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27352e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27335b36c85a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf6f852d8520b7062f64e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13526555899619752475" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d179d38f78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18394684773570985581" + } + } + } + ] + }, + "cborHex": "bf4327352e4627335b36c85a4bcf6f852d8520b7062f64e31bbbb7faec874cba1b45d179d38f781bff470c57a3fc3e6dff", + "cborBytes": [ + 191, 67, 39, 53, 46, 70, 39, 51, 91, 54, 200, 90, 75, 207, 111, 133, 45, 133, 32, 183, 6, 47, 100, 227, 27, 187, + 183, 250, 236, 135, 76, 186, 27, 69, 209, 121, 211, 143, 120, 27, 255, 71, 12, 87, 163, 252, 62, 109, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 926, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14256062173251564768" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12361826702698695932" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18396933113389264469" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13108493804680455589" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10332410407630010533" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16658016798720646448" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1278114537655495382" + } + } + } + ] + }, + "cborHex": "bf1bc5d7b503c48af4e0bf1bab8e07e3ed4b4cfc1bff4f09320c302e551bb5eab9a9e06325a51b8f641885b455f8a5ff1be72d2a053e3bdd301b11bcc6667737ead6ff", + "cborBytes": [ + 191, 27, 197, 215, 181, 3, 196, 138, 244, 224, 191, 27, 171, 142, 7, 227, 237, 75, 76, 252, 27, 255, 79, 9, 50, + 12, 48, 46, 85, 27, 181, 234, 185, 169, 224, 99, 37, 165, 27, 143, 100, 24, 133, 180, 85, 248, 165, 255, 27, 231, + 45, 42, 5, 62, 59, 221, 48, 27, 17, 188, 198, 102, 119, 55, 234, 214, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 927, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14577384981343173818" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "265d82057610fafd52405648" + }, + { + "_tag": "ByteArray", + "bytearray": "6e14ff" + }, + { + "_tag": "ByteArray", + "bytearray": "582035ba0e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "578577608730804716" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6046bd4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4860016046061257894" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bca4d4667ff12fcbad8669f1bfffffffffffffff99f4c265d82057610fafd52405648436e14ff45582035ba0e1b080785450b6501ecffff1bfffffffffffffff8bf44f6046bd41b43723ed82c2e04a6ffff", + "cborBytes": [ + 191, 27, 202, 77, 70, 103, 255, 18, 252, 186, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 76, + 38, 93, 130, 5, 118, 16, 250, 253, 82, 64, 86, 72, 67, 110, 20, 255, 69, 88, 32, 53, 186, 14, 27, 8, 7, 133, 69, + 11, 101, 1, 236, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 248, 191, 68, 246, 4, 107, 212, 27, 67, 114, 62, + 216, 44, 46, 4, 166, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 928, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1641013502295675586" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8a798484b8f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "284344679620867563" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9939890080793308614" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3905858573057329856" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17695411539955896964" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c" + } + ] + } + } + ] + }, + "cborHex": "bf1b16c60d15fbf412c2bf46b8a798484b8f1b03f231fac692f5ebff1b89f1955d5c1d2dc6d8669f1b363465ad95ff0ac09f1bf592bb0a916b5284411cffffff", + "cborBytes": [ + 191, 27, 22, 198, 13, 21, 251, 244, 18, 194, 191, 70, 184, 167, 152, 72, 75, 143, 27, 3, 242, 49, 250, 198, 146, + 245, 235, 255, 27, 137, 241, 149, 93, 92, 29, 45, 198, 216, 102, 159, 27, 54, 52, 101, 173, 149, 255, 10, 192, + 159, 27, 245, 146, 187, 10, 145, 107, 82, 132, 65, 28, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 929, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a02fcd2228000655693" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4456052080480663993" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd069d01" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "292d0852e0c76ebf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e966b0d90d69c3f3a81581" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a319d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7729443415822603825" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14780410717692380959" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "685d828edbfac11b26c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17671975340599009445" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac55f6ac583511165842" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4494472638374188957" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d000f435" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1305f185" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a1a02fcd2228000655693d8669f1b3dd713c20db0b9b980ff44fd069d01bf48292d0852e0c76ebf4be966b0d90d69c3f3a81581433a319d1b6b447fd59796963141541bcd1e913cde6e471f4a685d828edbfac11b26c11bf53f77f12fdde0a54aac55f6ac5835111658421b3e5f930d4701979d44d000f435441305f185ffff", + "cborBytes": [ + 191, 74, 26, 2, 252, 210, 34, 128, 0, 101, 86, 147, 216, 102, 159, 27, 61, 215, 19, 194, 13, 176, 185, 185, 128, + 255, 68, 253, 6, 157, 1, 191, 72, 41, 45, 8, 82, 224, 199, 110, 191, 75, 233, 102, 176, 217, 13, 105, 195, 243, + 168, 21, 129, 67, 58, 49, 157, 27, 107, 68, 127, 213, 151, 150, 150, 49, 65, 84, 27, 205, 30, 145, 60, 222, 110, + 71, 31, 74, 104, 93, 130, 142, 219, 250, 193, 27, 38, 193, 27, 245, 63, 119, 241, 47, 221, 224, 165, 74, 172, 85, + 246, 172, 88, 53, 17, 22, 88, 66, 27, 62, 95, 147, 13, 71, 1, 151, 157, 68, 208, 0, 244, 53, 68, 19, 5, 241, 133, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 930, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5919802095085080890" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15540620546398467743" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3222915031666385723" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d12c27af7de72741" + }, + { + "_tag": "ByteArray", + "bytearray": "ea038775fa75df3637" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12458750551081958065" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18a3f209eed2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4807359132bafce4b4362a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27a0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b08ade39b1c2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45de0129fe8c26" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f43e0ccace210" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71f20d7d620ffc1da5018104" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9498517053490082678" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf7b1458ff6f1aed66cede" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f13e1d41c2222d7a40" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12801447564235519680" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "399986460533548332" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14185516797683207623" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2772904830416964044" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4268977686126129981" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4294486228538431838" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55de" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15670732059770155175" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41558422" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16345366839971897120" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3448236509946807922" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b52275ca41a28d13ad8669f1bd7ab600c9937b69f9f1b2cba182543bde33b48d12c27af7de7274149ea038775fa75df3637ffff1bace65f9dee713ab1bf4618a3f209eed24b4807359132bafce4b4362a4227a046b08ade39b1c24745de0129fe8c26472f43e0ccace2104c71f20d7d620ffc1da50181041b83d182ef524433764bbf7b1458ff6f1aed66cede49f13e1d41c2222d7a40ff1bb1a7e0bc150c36c0bf1b058d09910f11652c1bc4dd145e913e8dc71b267b564074f7c9cc1b3b3e7496679df33d1b3b991478c0d7195e4255de1bd9799fc800ecf0a74441558422ff1be2d6688a1bf95f209f1b2fda98d614e98672ffff", + "cborBytes": [ + 191, 27, 82, 39, 92, 164, 26, 40, 209, 58, 216, 102, 159, 27, 215, 171, 96, 12, 153, 55, 182, 159, 159, 27, 44, + 186, 24, 37, 67, 189, 227, 59, 72, 209, 44, 39, 175, 125, 231, 39, 65, 73, 234, 3, 135, 117, 250, 117, 223, 54, + 55, 255, 255, 27, 172, 230, 95, 157, 238, 113, 58, 177, 191, 70, 24, 163, 242, 9, 238, 210, 75, 72, 7, 53, 145, + 50, 186, 252, 228, 180, 54, 42, 66, 39, 160, 70, 176, 138, 222, 57, 177, 194, 71, 69, 222, 1, 41, 254, 140, 38, + 71, 47, 67, 224, 204, 172, 226, 16, 76, 113, 242, 13, 125, 98, 15, 252, 29, 165, 1, 129, 4, 27, 131, 209, 130, + 239, 82, 68, 51, 118, 75, 191, 123, 20, 88, 255, 111, 26, 237, 102, 206, 222, 73, 241, 62, 29, 65, 194, 34, 45, + 122, 64, 255, 27, 177, 167, 224, 188, 21, 12, 54, 192, 191, 27, 5, 141, 9, 145, 15, 17, 101, 44, 27, 196, 221, 20, + 94, 145, 62, 141, 199, 27, 38, 123, 86, 64, 116, 247, 201, 204, 27, 59, 62, 116, 150, 103, 157, 243, 61, 27, 59, + 153, 20, 120, 192, 215, 25, 94, 66, 85, 222, 27, 217, 121, 159, 200, 0, 236, 240, 167, 68, 65, 85, 132, 34, 255, + 27, 226, 214, 104, 138, 27, 249, 95, 32, 159, 27, 47, 218, 152, 214, 20, 233, 134, 114, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 931, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12b77995b04230fcf65cf0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b7e587c962b20" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25b1" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c90aabdba16b02bbe4ae" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15750c849b8201bd9fad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b060870629e85eaae783e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c2357" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "739302887748567972" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7843042338e2dd76afd39a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15921592770492713111" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa2f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16959051121425248423" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0fb" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb7e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5922111993c953" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbff07" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14070315117229300690" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10780344340716199931" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12890087734146174482" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b12b77995b04230fcf65cf0474b7e587c962b204225b1a04ac90aabdba16b02bbe4aebf4a15750c849b8201bd9fad4bb060870629e85eaae783e2431c23571b0a42880f35ac83a44b7843042338e2dd76afd39a1bdcf4dc44bfa5489742fa2f1beb5aa7245c3df0a7ff42f0fb8042fb7e475922111993c95343fbff07d8669f1bc343cd0d2842dbd29f1b959b7a0fa8c81ffb1bb2e2ca7fe5670e12ffffff", + "cborBytes": [ + 191, 75, 18, 183, 121, 149, 176, 66, 48, 252, 246, 92, 240, 71, 75, 126, 88, 124, 150, 43, 32, 66, 37, 177, 160, + 74, 201, 10, 171, 219, 161, 107, 2, 187, 228, 174, 191, 74, 21, 117, 12, 132, 155, 130, 1, 189, 159, 173, 75, 176, + 96, 135, 6, 41, 232, 94, 170, 231, 131, 226, 67, 28, 35, 87, 27, 10, 66, 136, 15, 53, 172, 131, 164, 75, 120, 67, + 4, 35, 56, 226, 221, 118, 175, 211, 154, 27, 220, 244, 220, 68, 191, 165, 72, 151, 66, 250, 47, 27, 235, 90, 167, + 36, 92, 61, 240, 167, 255, 66, 240, 251, 128, 66, 251, 126, 71, 89, 34, 17, 25, 147, 201, 83, 67, 251, 255, 7, + 216, 102, 159, 27, 195, 67, 205, 13, 40, 66, 219, 210, 159, 27, 149, 155, 122, 15, 168, 200, 31, 251, 27, 178, + 226, 202, 127, 229, 103, 14, 18, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 932, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4461" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "06" + } + ] + } + } + ] + }, + "cborHex": "bf411b41bc4244619f4106ffff", + "cborBytes": [191, 65, 27, 65, 188, 66, 68, 97, 159, 65, 6, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 933, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9209046962122070183" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5389053774821526864" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7756589334586353443" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5845974037593912176" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11703745137971522558" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18096592641955219766" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60f6b0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2287" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e366306d05335bc3f5934b0" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a21e4683c4f48d48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0563e4bb56099cb4" + } + } + ] + }, + "cborHex": "bf1b7fcd1b6ba12d18a7bf1b4ac9c3db13b70d501b6ba4f0e7549a67231b51211269f4f0f3701ba26c0e31a27f6bfe1bfb240320c4b049364360f6b04222874c2e366306d05335bc3f5934b0ff48a21e4683c4f48d48480563e4bb56099cb4ff", + "cborBytes": [ + 191, 27, 127, 205, 27, 107, 161, 45, 24, 167, 191, 27, 74, 201, 195, 219, 19, 183, 13, 80, 27, 107, 164, 240, 231, + 84, 154, 103, 35, 27, 81, 33, 18, 105, 244, 240, 243, 112, 27, 162, 108, 14, 49, 162, 127, 107, 254, 27, 251, 36, + 3, 32, 196, 176, 73, 54, 67, 96, 246, 176, 66, 34, 135, 76, 46, 54, 99, 6, 208, 83, 53, 188, 63, 89, 52, 176, 255, + 72, 162, 30, 70, 131, 196, 244, 141, 72, 72, 5, 99, 228, 187, 86, 9, 156, 180, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 934, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3441" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13059763480659441316" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a47268d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7734750513182914957" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba33" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "34d5279e3f7c4043e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5943753256909189127" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45662b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8407865780250252496" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfe166d17e75d42042519835" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11482722116756037270" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4234411bb53d99b12b5336a4445a47268d1b6b575a9c7c89b98d42ba33bf4934d5279e3f7c4043e21b527c741886a4b0074345662b1b74aebd615efa94d04ccfe166d17e75d420425198351b9f5ad2ed57c3de96ffff", + "cborBytes": [ + 191, 66, 52, 65, 27, 181, 61, 153, 177, 43, 83, 54, 164, 68, 90, 71, 38, 141, 27, 107, 87, 90, 156, 124, 137, 185, + 141, 66, 186, 51, 191, 73, 52, 213, 39, 158, 63, 124, 64, 67, 226, 27, 82, 124, 116, 24, 134, 164, 176, 7, 67, 69, + 102, 43, 27, 116, 174, 189, 97, 94, 250, 148, 208, 76, 207, 225, 102, 209, 126, 117, 212, 32, 66, 81, 152, 53, 27, + 159, 90, 210, 237, 87, 195, 222, 150, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 935, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1157c8ea97bdef3bea" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16595538240829121487" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7839968421722502464" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10144346669524877292" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cd9b2b7ec63bc66154d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12385604385020987824" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1161489472990288724" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5a6a37832e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e20422" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86d99bb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2130802c7b42a7881ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c0203fd0106" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc33ad" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4733cfcb4606" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18086705910518452625" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06264fec68883f" + }, + { + "_tag": "ByteArray", + "bytearray": "e23b57ea026e3d82" + }, + { + "_tag": "ByteArray", + "bytearray": "7a" + } + ] + } + } + ] + }, + "cborHex": "bf491157c8ea97bdef3bea9f1be64f321a6507e3cfff41289f1b6ccd29bddb0cb5401b8cc7f58c83727fecff4a3cd9b2b7ec63bc66154d9f1babe2819101b249b01b101e708597f11b54455a6a37832e1bfffffffffffffffa43e20422ff4486d99bb64af2130802c7b42a7881ae468c0203fd01068043dc33add905009f464733cfcb46061bfb00e332b96911914706264fec68883f48e23b57ea026e3d82417affff", + "cborBytes": [ + 191, 73, 17, 87, 200, 234, 151, 189, 239, 59, 234, 159, 27, 230, 79, 50, 26, 101, 7, 227, 207, 255, 65, 40, 159, + 27, 108, 205, 41, 189, 219, 12, 181, 64, 27, 140, 199, 245, 140, 131, 114, 127, 236, 255, 74, 60, 217, 178, 183, + 236, 99, 188, 102, 21, 77, 159, 27, 171, 226, 129, 145, 1, 178, 73, 176, 27, 16, 30, 112, 133, 151, 241, 27, 84, + 69, 90, 106, 55, 131, 46, 27, 255, 255, 255, 255, 255, 255, 255, 250, 67, 226, 4, 34, 255, 68, 134, 217, 155, 182, + 74, 242, 19, 8, 2, 199, 180, 42, 120, 129, 174, 70, 140, 2, 3, 253, 1, 6, 128, 67, 220, 51, 173, 217, 5, 0, 159, + 70, 71, 51, 207, 203, 70, 6, 27, 251, 0, 227, 50, 185, 105, 17, 145, 71, 6, 38, 79, 236, 104, 136, 63, 72, 226, + 59, 87, 234, 2, 110, 61, 130, 65, 122, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 936, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07e907fe03040204fb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11270743027458755436" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0119a2b8a1af74e55d13d3b7" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c212093b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "25a67645266cc99cfe9c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "452656977299631444" + } + } + ] + } + } + ] + }, + "cborHex": "bf4907e907fe03040204fbd8669f1b9c69b9118a63cb6c9f4c0119a2b8a1af74e55d13d3b7ffff44c212093b9f4a25a67645266cc99cfe9c1b0648291f610bed54ffff", + "cborBytes": [ + 191, 73, 7, 233, 7, 254, 3, 4, 2, 4, 251, 216, 102, 159, 27, 156, 105, 185, 17, 138, 99, 203, 108, 159, 76, 1, 25, + 162, 184, 161, 175, 116, 229, 93, 19, 211, 183, 255, 255, 68, 194, 18, 9, 59, 159, 74, 37, 166, 118, 69, 38, 108, + 201, 156, 254, 156, 27, 6, 72, 41, 31, 97, 11, 237, 84, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 937, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05060139df79ff93050703" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5cabd21fce37c962d2289197" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5006507963077379794" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12049302305859336916" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6648500140453995899" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e951cd513d4c7868cf1959a6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7299846475773496952" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3744917607429345128" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8975656066248751175" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17889211645362650315" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16338912431750407118" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "769faf" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b05060139df79ff93050703a04c5cabd21fce37c962d2289197bf1b457ab077806446d21ba737b89b740a7ad41b5c4437a708e5257b4ce951cd513d4c7868cf1959a61b654e43b1875dce781b33f89eb8f7ee8f681b7c8fefa31ed638471bf8433f35d99f3ccb1be2bf7a4a16b263ce43769fafffff", + "cborBytes": [ + 191, 75, 5, 6, 1, 57, 223, 121, 255, 147, 5, 7, 3, 160, 76, 92, 171, 210, 31, 206, 55, 201, 98, 210, 40, 145, 151, + 191, 27, 69, 122, 176, 119, 128, 100, 70, 210, 27, 167, 55, 184, 155, 116, 10, 122, 212, 27, 92, 68, 55, 167, 8, + 229, 37, 123, 76, 233, 81, 205, 81, 61, 76, 120, 104, 207, 25, 89, 166, 27, 101, 78, 67, 177, 135, 93, 206, 120, + 27, 51, 248, 158, 184, 247, 238, 143, 104, 27, 124, 143, 239, 163, 30, 214, 56, 71, 27, 248, 67, 63, 53, 217, 159, + 60, 203, 27, 226, 191, 122, 74, 22, 178, 99, 206, 67, 118, 159, 175, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 938, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6458674542009775293" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1545025f2c245893fc" + } + } + ] + } + } + ] + }, + "cborHex": "bf03bf1b59a1d246c459f4bd491545025f2c245893fcffff", + "cborBytes": [ + 191, 3, 191, 27, 89, 161, 210, 70, 196, 89, 244, 189, 73, 21, 69, 2, 95, 44, 36, 88, 147, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 939, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10320768493046201782" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "003a00f8e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa9aba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cdac9fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99e2436ad4775e0c244acd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "895ff1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ede400a58575" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b8f3abc433d0ffdb6bf45003a00f8e543fa9aba441cdac9fd4b99e2436ad4775e0c244acd43895ff146ede400a58575ffff", + "cborBytes": [ + 191, 27, 143, 58, 188, 67, 61, 15, 253, 182, 191, 69, 0, 58, 0, 248, 229, 67, 250, 154, 186, 68, 28, 218, 201, + 253, 75, 153, 226, 67, 106, 212, 119, 94, 12, 36, 74, 205, 67, 137, 95, 241, 70, 237, 228, 0, 165, 133, 117, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 940, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6257325252694132210" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "361686966839632431" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b13d70" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "573739335553276819" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3692018398800546664" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1279576843282594389" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "157662429070661634" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8009871310748345252" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8c2ec" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8177716094457630428" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c1ec681716f" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7472859605628016484" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2394297476806529794" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14265730247125940139" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1122705403894695320" + } + }, + { + "_tag": "ByteArray", + "bytearray": "07d6deda2e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4517316884909212946" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2952a1fbc00a1c9f9704fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12709367385676511370" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15168856395269288139" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15665264352779892632" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "39105a43b1544b" + } + ] + } + } + ] + }, + "cborHex": "bf1b56d67c2a22ea45f2bf1b0504f8614a5d622f43b13d701b07f654e2c9525b931b333caf2c2cb68b681b11c1f85c06acba551b02302124d72e98021b6f28c784ddbf63a443b8c2ec1b717d1575e4244edc465c1ec681716fff1b67b4ee37e9d2d7641b213a40de9faad3021bc5fa0e13a17cb7ab9f1b0f94a69dd28e05984507d6deda2e1b3eb0bbc5e6e345124b2952a1fbc00a1c9f9704fb1bb060be4cd72ef88aff1bd2829a8600f030cbd8669f1bd96632ee4408f7989f4739105a43b1544bffffff", + "cborBytes": [ + 191, 27, 86, 214, 124, 42, 34, 234, 69, 242, 191, 27, 5, 4, 248, 97, 74, 93, 98, 47, 67, 177, 61, 112, 27, 7, 246, + 84, 226, 201, 82, 91, 147, 27, 51, 60, 175, 44, 44, 182, 139, 104, 27, 17, 193, 248, 92, 6, 172, 186, 85, 27, 2, + 48, 33, 36, 215, 46, 152, 2, 27, 111, 40, 199, 132, 221, 191, 99, 164, 67, 184, 194, 236, 27, 113, 125, 21, 117, + 228, 36, 78, 220, 70, 92, 30, 198, 129, 113, 111, 255, 27, 103, 180, 238, 55, 233, 210, 215, 100, 27, 33, 58, 64, + 222, 159, 170, 211, 2, 27, 197, 250, 14, 19, 161, 124, 183, 171, 159, 27, 15, 148, 166, 157, 210, 142, 5, 152, 69, + 7, 214, 222, 218, 46, 27, 62, 176, 187, 197, 230, 227, 69, 18, 75, 41, 82, 161, 251, 192, 10, 28, 159, 151, 4, + 251, 27, 176, 96, 190, 76, 215, 46, 248, 138, 255, 27, 210, 130, 154, 134, 0, 240, 48, 203, 216, 102, 159, 27, + 217, 102, 50, 238, 68, 8, 247, 152, 159, 71, 57, 16, 90, 67, 177, 84, 75, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 941, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4245eb2ffee3f31980" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1353474726805586547" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "788c7e5420e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7724237343842488453" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d24bc97de1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "379023b03871da5a4f3d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14623886247269486320" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f034d227d564d3b6" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f02ea5995d94" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2892356426315648446" + } + } + } + ] + }, + "cborHex": "bf494245eb2ffee3f319801b12c88217cfb7427346788c7e5420e11b6b3200f08089d08545d24bc97de19f4a379023b03871da5a4f3d1bcaf27b0fac37cef048f034d227d564d3b6ff46f02ea5995d941b2823b6d86a5ccdbeff", + "cborBytes": [ + 191, 73, 66, 69, 235, 47, 254, 227, 243, 25, 128, 27, 18, 200, 130, 23, 207, 183, 66, 115, 70, 120, 140, 126, 84, + 32, 225, 27, 107, 50, 0, 240, 128, 137, 208, 133, 69, 210, 75, 201, 125, 225, 159, 74, 55, 144, 35, 176, 56, 113, + 218, 90, 79, 61, 27, 202, 242, 123, 15, 172, 55, 206, 240, 72, 240, 52, 210, 39, 213, 100, 211, 182, 255, 70, 240, + 46, 165, 153, 93, 148, 27, 40, 35, 182, 216, 106, 92, 205, 190, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 942, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "40" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9254191157862190282" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "759694105732426481" + } + }, + { + "_tag": "ByteArray", + "bytearray": "367ba1e7c082f5fd80d3" + }, + { + "_tag": "ByteArray", + "bytearray": "569448dd615912ae3dfc" + }, + { + "_tag": "ByteArray", + "bytearray": "046641" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4770" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4140d8669f1b806d7dd3c7efccca9f1b0a8af9c39e23aaf14a367ba1e7c082f5fd80d34a569448dd615912ae3dfc43046641ffff42477080ff", + "cborBytes": [ + 191, 65, 64, 216, 102, 159, 27, 128, 109, 125, 211, 199, 239, 204, 202, 159, 27, 10, 138, 249, 195, 158, 35, 170, + 241, 74, 54, 123, 161, 231, 192, 130, 245, 253, 128, 211, 74, 86, 148, 72, 221, 97, 89, 18, 174, 61, 252, 67, 4, + 102, 65, 255, 255, 66, 71, 112, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 943, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "669342911305463205" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1129413119235541308" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b4093fb924" + }, + { + "_tag": "ByteArray", + "bytearray": "7973a10d41e0750982bb08" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5985502807259837023" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12420687898446867224" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1870561508021497843" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3265692910354111630" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4e3169e36" + }, + { + "_tag": "ByteArray", + "bytearray": "3907a3eec464181dea" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9472291256994423824" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "170502827086141010" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9383234052661424979" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6840158306961754816" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3285197150240322408" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10270019686572674789" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb3b532502" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13543342233467801422" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10772349726057288555" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10602542115153490399" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "18d1" + }, + { + "_tag": "ByteArray", + "bytearray": "7d500fc1" + }, + { + "_tag": "ByteArray", + "bytearray": "7a8aa49fa5ff39fd" + }, + { + "_tag": "ByteArray", + "bytearray": "125d9cc0bf1f12" + } + ] + } + } + ] + }, + "cborHex": "bf1b0949fbd4dd49b5a5d8669f1b0fac7b3f80b3493c9f45b4093fb9244b7973a10d41e0750982bb08ffff1b5310c71734d3725fd8669f1bac5f25d604eb2b189f1b19f591c7e823eff31b2d5212664b2b1c8e45e4e3169e36493907a3eec464181deaffff1b837456b63e30e410bf1b025dbf6af9ab56521b8237f1a8093bb3531b5eed1fbd4de48ac01b2d975d67053333681b8e86707df66ecee545bb3b5325021bbbf39e017164cf4e4146ff1b957f130061ebd36bd8669f1b9323cbe109d7b1df9f4218d1447d500fc1487a8aa49fa5ff39fd47125d9cc0bf1f12ffffff", + "cborBytes": [ + 191, 27, 9, 73, 251, 212, 221, 73, 181, 165, 216, 102, 159, 27, 15, 172, 123, 63, 128, 179, 73, 60, 159, 69, 180, + 9, 63, 185, 36, 75, 121, 115, 161, 13, 65, 224, 117, 9, 130, 187, 8, 255, 255, 27, 83, 16, 199, 23, 52, 211, 114, + 95, 216, 102, 159, 27, 172, 95, 37, 214, 4, 235, 43, 24, 159, 27, 25, 245, 145, 199, 232, 35, 239, 243, 27, 45, + 82, 18, 102, 75, 43, 28, 142, 69, 228, 227, 22, 158, 54, 73, 57, 7, 163, 238, 196, 100, 24, 29, 234, 255, 255, 27, + 131, 116, 86, 182, 62, 48, 228, 16, 191, 27, 2, 93, 191, 106, 249, 171, 86, 82, 27, 130, 55, 241, 168, 9, 59, 179, + 83, 27, 94, 237, 31, 189, 77, 228, 138, 192, 27, 45, 151, 93, 103, 5, 51, 51, 104, 27, 142, 134, 112, 125, 246, + 110, 206, 229, 69, 187, 59, 83, 37, 2, 27, 187, 243, 158, 1, 113, 100, 207, 78, 65, 70, 255, 27, 149, 127, 19, 0, + 97, 235, 211, 107, 216, 102, 159, 27, 147, 35, 203, 225, 9, 215, 177, 223, 159, 66, 24, 209, 68, 125, 80, 15, 193, + 72, 122, 138, 164, 159, 165, 255, 57, 253, 71, 18, 93, 156, 192, 191, 31, 18, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 944, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "87798b81ebc466bca9db" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "042808" + }, + { + "_tag": "ByteArray", + "bytearray": "2ef5c3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12431044468652764521" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12164344233165692047" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a87798b81ebc466bca9db9f43042808432ef5c31bac83f114ed21ed691ba8d06ea16f699c8fffff", + "cborBytes": [ + 191, 74, 135, 121, 139, 129, 235, 196, 102, 188, 169, 219, 159, 67, 4, 40, 8, 67, 46, 245, 195, 27, 172, 131, 241, + 20, 237, 33, 237, 105, 27, 168, 208, 110, 161, 111, 105, 156, 143, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 945, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4260186313265603239" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3fba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4434389958666485099" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c62f20a1c88d2c01eb4c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15507392469126215779" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11664498991347092260" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "378b0817a92e9728" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3b1f38e1672d62a7423fba1b3d8a1e2c49dffd6b4ac62f20a1c88d2c01eb4c1bd7355349fad5f863bf1ba1e0a0080e254b2448378b0817a92e9728ffff", + "cborBytes": [ + 191, 27, 59, 31, 56, 225, 103, 45, 98, 167, 66, 63, 186, 27, 61, 138, 30, 44, 73, 223, 253, 107, 74, 198, 47, 32, + 161, 200, 141, 44, 1, 235, 76, 27, 215, 53, 83, 73, 250, 213, 248, 99, 191, 27, 161, 224, 160, 8, 14, 37, 75, 36, + 72, 55, 139, 8, 23, 169, 46, 151, 40, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 946, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3ff040d9bc80703" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8115088345491276365" + } + } + } + ] + }, + "cborHex": "bf48d3ff040d9bc807031b709e95dac9eb824dff", + "cborBytes": [191, 72, 211, 255, 4, 13, 155, 200, 7, 3, 27, 112, 158, 149, 218, 201, 235, 130, 77, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 947, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3473021930243265616" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09b965c5fea3ab47129314" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16368752584773630870" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b8c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "696e0a02d4412e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "945472" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14425919386456329388" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9abc792cca0c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c426" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a37dbacff231ee619f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "948509928346678709" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efce7d9cc8b8597ae8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9829a" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7402304977894644879" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1096031870498123393" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c1a268" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2600826515740176979" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c88b62" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1785869013417364013" + } + }, + { + "_tag": "ByteArray", + "bytearray": "330d2942cc3d9d325c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8128751094180950991" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12298147172419560503" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bede1376e4" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13701163694029177336" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4532608193543733884" + } + } + } + ] + }, + "cborHex": "bf1b3032a70b714a9450bf4b09b965c5fea3ab471293141be3297dc01fb07b96420b8c47696e0a02d4412e439454721bc83329400c268cac469abc792cca0c42c42649a37dbacff231ee619f1b0d29c8c12108f5b549efce7d9cc8b8597ae843b9829aff1b66ba452886841c8fd8669f1b0f35e32ddf8c2e819f43c1a2681b2417fdefb11c325343c88b621b18c8ae67e01e8a2d49330d2942cc3d9d325cffff1b70cf200d5c3933cfbf1baaabcbb1e78ae43745bede1376e4ff1bbe244fc9b01681f81b3ee70f232233027cff", + "cborBytes": [ + 191, 27, 48, 50, 167, 11, 113, 74, 148, 80, 191, 75, 9, 185, 101, 197, 254, 163, 171, 71, 18, 147, 20, 27, 227, + 41, 125, 192, 31, 176, 123, 150, 66, 11, 140, 71, 105, 110, 10, 2, 212, 65, 46, 67, 148, 84, 114, 27, 200, 51, 41, + 64, 12, 38, 140, 172, 70, 154, 188, 121, 44, 202, 12, 66, 196, 38, 73, 163, 125, 186, 207, 242, 49, 238, 97, 159, + 27, 13, 41, 200, 193, 33, 8, 245, 181, 73, 239, 206, 125, 156, 200, 184, 89, 122, 232, 67, 185, 130, 154, 255, 27, + 102, 186, 69, 40, 134, 132, 28, 143, 216, 102, 159, 27, 15, 53, 227, 45, 223, 140, 46, 129, 159, 67, 193, 162, + 104, 27, 36, 23, 253, 239, 177, 28, 50, 83, 67, 200, 139, 98, 27, 24, 200, 174, 103, 224, 30, 138, 45, 73, 51, 13, + 41, 66, 204, 61, 157, 50, 92, 255, 255, 27, 112, 207, 32, 13, 92, 57, 51, 207, 191, 27, 170, 171, 203, 177, 231, + 138, 228, 55, 69, 190, 222, 19, 118, 228, 255, 27, 190, 36, 79, 201, 176, 22, 129, 248, 27, 62, 231, 15, 35, 34, + 51, 2, 124, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 948, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "faff320704fd03ac05b20286" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "711852313823982889" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b70c2f144ec7acb5386c1f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10379497062344109787" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f002cba69c5e969967749337" + }, + { + "_tag": "ByteArray", + "bytearray": "9563ccdadb686f272f7975" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14689757485872441192" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d6a3255a44c" + } + } + ] + }, + "cborHex": "bf044cfaff320704fd03ac05b2028610801b09e101e86a04b5294c9b70c2f144ec7acb5386c1f81b900b6195d43b2edbd8669f1bfffffffffffffff29f4cf002cba69c5e9699677493374b9563ccdadb686f272f7975ffff1bcbdc809a8e0fe768467d6a3255a44cff", + "cborBytes": [ + 191, 4, 76, 250, 255, 50, 7, 4, 253, 3, 172, 5, 178, 2, 134, 16, 128, 27, 9, 225, 1, 232, 106, 4, 181, 41, 76, + 155, 112, 194, 241, 68, 236, 122, 203, 83, 134, 193, 248, 27, 144, 11, 97, 149, 212, 59, 46, 219, 216, 102, 159, + 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 76, 240, 2, 203, 166, 156, 94, 150, 153, 103, 116, 147, 55, 75, + 149, 99, 204, 218, 219, 104, 111, 39, 47, 121, 117, 255, 255, 27, 203, 220, 128, 154, 142, 15, 231, 104, 70, 125, + 106, 50, 85, 164, 76, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 949, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2077514973994123939" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2583260358283506900" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5032285993357838631" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92249f90654dcd207cff25" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14957851596562322554" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a3ebc0112" + } + } + ] + }, + "cborHex": "bf1b1cd4d0dc987982a31b23d9959bf1d634d41b45d64572e24489274b92249f90654dcd207cff251bcf94f6c6e81b547a455a3ebc0112ff", + "cborBytes": [ + 191, 27, 28, 212, 208, 220, 152, 121, 130, 163, 27, 35, 217, 149, 155, 241, 214, 52, 212, 27, 69, 214, 69, 114, + 226, 68, 137, 39, 75, 146, 36, 159, 144, 101, 77, 205, 32, 124, 255, 37, 27, 207, 148, 246, 198, 232, 27, 84, 122, + 69, 90, 62, 188, 1, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 950, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9769460106074139733" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34a2c19f10ebc7726fffb1eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ff7c3d8dc" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c47" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "457225963098512229" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9e30073d57c4" + }, + { + "_tag": "ByteArray", + "bytearray": "5e54" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18321193968896437900" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b87941834a5e62c554c34a2c19f10ebc7726fffb1eb453ff7c3d8dca0429c47d8669f1b0658649748929b659f469e30073d57c4425e541bfe41f4d84919ee8cffffff", + "cborBytes": [ + 191, 27, 135, 148, 24, 52, 165, 230, 44, 85, 76, 52, 162, 193, 159, 16, 235, 199, 114, 111, 255, 177, 235, 69, 63, + 247, 195, 216, 220, 160, 66, 156, 71, 216, 102, 159, 27, 6, 88, 100, 151, 72, 146, 155, 101, 159, 70, 158, 48, 7, + 61, 87, 196, 66, 94, 84, 27, 254, 65, 244, 216, 73, 25, 238, 140, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 951, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6244ef30f93e657e79e0" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4a6244ef30f93e657e79e080ff", + "cborBytes": [191, 74, 98, 68, 239, 48, 249, 62, 101, 126, 121, 224, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 952, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c546a83c3ea0f1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8164956693175252804" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13968772722260422635" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6187406226852281958" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4a17f8d2ed3f2a0fb" + } + } + ] + }, + "cborHex": "bf47c546a83c3ea0f1d8669f1b714fc0da4728b7449f1bc1db0cc7fa7fafeb1b55de152e5891fe66ffff42cd2749e4a17f8d2ed3f2a0fbff", + "cborBytes": [ + 191, 71, 197, 70, 168, 60, 62, 160, 241, 216, 102, 159, 27, 113, 79, 192, 218, 71, 40, 183, 68, 159, 27, 193, 219, + 12, 199, 250, 127, 175, 235, 27, 85, 222, 21, 46, 88, 145, 254, 102, 255, 255, 66, 205, 39, 73, 228, 161, 127, + 141, 46, 211, 242, 160, 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 953, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6c8c794" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16900390625833644566" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd5422" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6744061510052824641" + } + } + } + ] + }, + "cborHex": "bf44a6c8c7941bea8a3fbb6a27f21643cd54221b5d97b8363a154641ff", + "cborBytes": [ + 191, 68, 166, 200, 199, 148, 27, 234, 138, 63, 187, 106, 39, 242, 22, 67, 205, 84, 34, 27, 93, 151, 184, 54, 58, + 21, 70, 65, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 954, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2596043279895721955" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2918662470195824307" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15388625021300154556" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4859086911302376984" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf99f0d1ad8f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9543321005939502545" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18228553701121449070" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14212411025541282503" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16427304036260219077" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15229123084979007902" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9565f4d" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2406ff9bcfb977e3bf1b28812c0d8b4946b31bd58f60eca848a0bc1b436ef1cd20ed9e1846cf99f0d1ad8f1b8470afe4688c2dd11bfcf8d5031c79dc6e1bc53ca086f33bbac71be3f981fc42a188c51bd358b6c228dff19e44b9565f4dffff", + "cborBytes": [ + 191, 27, 36, 6, 255, 155, 207, 185, 119, 227, 191, 27, 40, 129, 44, 13, 139, 73, 70, 179, 27, 213, 143, 96, 236, + 168, 72, 160, 188, 27, 67, 110, 241, 205, 32, 237, 158, 24, 70, 207, 153, 240, 209, 173, 143, 27, 132, 112, 175, + 228, 104, 140, 45, 209, 27, 252, 248, 213, 3, 28, 121, 220, 110, 27, 197, 60, 160, 134, 243, 59, 186, 199, 27, + 227, 249, 129, 252, 66, 161, 136, 197, 27, 211, 88, 182, 194, 40, 223, 241, 158, 68, 185, 86, 95, 77, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 955, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06c5c3b8fd520b9695" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12641408056993913257" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52c6db153137290c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14792180378881021210" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8936fb387012bd4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0286011e0e6658e4f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15603784345402746501" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2680" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6bd4f75819de2b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c006ddb4b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15026250155156602570" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d317512737b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d668da4c6c0b90fea84" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4884130de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "98105586875342292" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b745" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13251109317543753175" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd6a3e205d9a89c00f0f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11347155190975491851" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "65d81abe03" + } + ] + } + } + ] + }, + "cborHex": "bf4906c5c3b8fd520b96951baf6f4da699e219a94852c6db153137290c1bcd4861aea8b4d51a48a8936fb387012bd4bf490286011e0e6658e4f51bd88bc73093882685422680476bd4f75819de2b453c006ddb4b1bd087f6e754447eca463d317512737b4a9d668da4c6c0b90fea8445a4884130de1b015c8a82f02f9dd4ff42b7451bb7e565b7881075d74add6a3e205d9a89c00f0fd8669f1b9d793186c152ef0b9f4565d81abe03ffffff", + "cborBytes": [ + 191, 73, 6, 197, 195, 184, 253, 82, 11, 150, 149, 27, 175, 111, 77, 166, 153, 226, 25, 169, 72, 82, 198, 219, 21, + 49, 55, 41, 12, 27, 205, 72, 97, 174, 168, 180, 213, 26, 72, 168, 147, 111, 179, 135, 1, 43, 212, 191, 73, 2, 134, + 1, 30, 14, 102, 88, 228, 245, 27, 216, 139, 199, 48, 147, 136, 38, 133, 66, 38, 128, 71, 107, 212, 247, 88, 25, + 222, 43, 69, 60, 0, 109, 219, 75, 27, 208, 135, 246, 231, 84, 68, 126, 202, 70, 61, 49, 117, 18, 115, 123, 74, + 157, 102, 141, 164, 198, 192, 185, 15, 234, 132, 69, 164, 136, 65, 48, 222, 27, 1, 92, 138, 130, 240, 47, 157, + 212, 255, 66, 183, 69, 27, 183, 229, 101, 183, 136, 16, 117, 215, 74, 221, 106, 62, 32, 93, 154, 137, 192, 15, 15, + 216, 102, 159, 27, 157, 121, 49, 134, 193, 82, 239, 11, 159, 69, 101, 216, 26, 190, 3, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 956, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0929e7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2052833444252863956" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24091180f6e0c083e808a0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "507b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47b3ac363ba869955079" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6984800420083043626" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8eec4e8189b9a09eaa" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15913857347395085221" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12579540785765507737" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf430929e71b1c7d212423bbcdd44b24091180f6e0c083e808a042507b4a47b3ac363ba8699550791b60eefef99a0c8d2a498eec4e8189b9a09eaabf1bdcd960f135b963a51bae9381b205176299ffff", + "cborBytes": [ + 191, 67, 9, 41, 231, 27, 28, 125, 33, 36, 35, 187, 205, 212, 75, 36, 9, 17, 128, 246, 224, 192, 131, 232, 8, 160, + 66, 80, 123, 74, 71, 179, 172, 54, 59, 168, 105, 149, 80, 121, 27, 96, 238, 254, 249, 154, 12, 141, 42, 73, 142, + 236, 78, 129, 137, 185, 160, 158, 170, 191, 27, 220, 217, 96, 241, 53, 185, 99, 165, 27, 174, 147, 129, 178, 5, + 23, 98, 153, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 957, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c12e280669703e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1175780242162814426" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "14bba1b862f5a2de" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9119966067725557964" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + ] + } + } + ] + }, + "cborHex": "bf0647c12e280669703e1b105135e694098dda9f4814bba1b862f5a2deff1bffffffffffffffebd8669f1b7e90a0d1a665e0cc9f1bfffffffffffffff11bfffffffffffffff4ffffff", + "cborBytes": [ + 191, 6, 71, 193, 46, 40, 6, 105, 112, 62, 27, 16, 81, 53, 230, 148, 9, 141, 218, 159, 72, 20, 187, 161, 184, 98, + 245, 162, 222, 255, 27, 255, 255, 255, 255, 255, 255, 255, 235, 216, 102, 159, 27, 126, 144, 160, 209, 166, 101, + 224, 204, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 27, 255, 255, 255, 255, 255, 255, 255, 244, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 958, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12457253149594995259" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6174719841425418889" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15307041213045548642" + } + }, + { + "_tag": "ByteArray", + "bytearray": "30fe794b" + }, + { + "_tag": "ByteArray", + "bytearray": "70d84f913417d41e" + } + ] + } + } + ] + }, + "cborHex": "bf1bace10dbcfab9ca3b9f1b55b102fb0fb7ea891bd46d88e211d826624430fe794b4870d84f913417d41effff", + "cborBytes": [ + 191, 27, 172, 225, 13, 188, 250, 185, 202, 59, 159, 27, 85, 177, 2, 251, 15, 183, 234, 137, 27, 212, 109, 136, + 226, 17, 216, 38, 98, 68, 48, 254, 121, 75, 72, 112, 216, 79, 145, 52, 23, 212, 30, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 959, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "99fe02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9aaaf7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "462426144131618915" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d55e0eeb56f8549a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5075576861059742174" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8556856940584528192" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10094455292214524810" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10145120780374505836" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13115914028127217133" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12231373310173992752" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18322303091725366632" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9419033115562676495" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4399fe024238f9439aaaf7bf1b066ade20c7d1986348d55e0eeb56f8549a1b4670124379a879de1b76c0100d216069401b8c16b59b05823b8a1b8ccab5993da7f96c1bb60516514715e5ed1ba9be9138941d57301bfe45e5961154f5681b82b720b6e4c1110fffff", + "cborBytes": [ + 191, 67, 153, 254, 2, 66, 56, 249, 67, 154, 170, 247, 191, 27, 6, 106, 222, 32, 199, 209, 152, 99, 72, 213, 94, + 14, 235, 86, 248, 84, 154, 27, 70, 112, 18, 67, 121, 168, 121, 222, 27, 118, 192, 16, 13, 33, 96, 105, 64, 27, + 140, 22, 181, 155, 5, 130, 59, 138, 27, 140, 202, 181, 153, 61, 167, 249, 108, 27, 182, 5, 22, 81, 71, 21, 229, + 237, 27, 169, 190, 145, 56, 148, 29, 87, 48, 27, 254, 69, 229, 150, 17, 84, 245, 104, 27, 130, 183, 32, 182, 228, + 193, 17, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 960, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "42c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16217016580979361667" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84187b1adf581d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8290213304961910130" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1974a46" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16389010310038907415" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12576169760615183615" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3171bc8c1503f3e2f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15926348001120540918" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8507914347408001630" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb013355" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60d715c5d0af1c6c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f307" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16020651855131405595" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11290971017017596921" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7309d7a9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2214484509261155736" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "febaba51c5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09b772959da36f482b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d59c30f2627a3c5409bd256" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "249aec038582e8830da2cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "082b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29d83267d908e627" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c240d6c3f44579a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "119814782857677681" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4242c01be10e6aa8b1e507834784187b1adf581dbf1b730cc113d278c57244c1974a461be371760b56156a171bae8787c4107a34ff493171bc8c1503f3e2f21bdd05c120280ad8f641f61b76122f05a8b40a5eff44eb0133554860d715c5d0af1c6c42f307d8669f1bde54c9fb2f4f6d1b9f416d1b9cb196515e909bf9447309d7a91b1ebb6deda71dcd98ffff45febaba51c5bf4909b772959da36f482b4c0d59c30f2627a3c5409bd2564b249aec038582e8830da2cb42082b4829d83267d908e627410c48c240d6c3f44579a11b01a9aae903128b71ffff", + "cborBytes": [ + 191, 66, 66, 192, 27, 225, 14, 106, 168, 177, 229, 7, 131, 71, 132, 24, 123, 26, 223, 88, 29, 191, 27, 115, 12, + 193, 19, 210, 120, 197, 114, 68, 193, 151, 74, 70, 27, 227, 113, 118, 11, 86, 21, 106, 23, 27, 174, 135, 135, 196, + 16, 122, 52, 255, 73, 49, 113, 188, 140, 21, 3, 243, 226, 242, 27, 221, 5, 193, 32, 40, 10, 216, 246, 65, 246, 27, + 118, 18, 47, 5, 168, 180, 10, 94, 255, 68, 235, 1, 51, 85, 72, 96, 215, 21, 197, 208, 175, 28, 108, 66, 243, 7, + 216, 102, 159, 27, 222, 84, 201, 251, 47, 79, 109, 27, 159, 65, 109, 27, 156, 177, 150, 81, 94, 144, 155, 249, 68, + 115, 9, 215, 169, 27, 30, 187, 109, 237, 167, 29, 205, 152, 255, 255, 69, 254, 186, 186, 81, 197, 191, 73, 9, 183, + 114, 149, 157, 163, 111, 72, 43, 76, 13, 89, 195, 15, 38, 39, 163, 197, 64, 155, 210, 86, 75, 36, 154, 236, 3, + 133, 130, 232, 131, 13, 162, 203, 66, 8, 43, 72, 41, 216, 50, 103, 217, 8, 230, 39, 65, 12, 72, 194, 64, 214, 195, + 244, 69, 121, 161, 27, 1, 169, 170, 233, 3, 18, 139, 113, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 961, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c991a8e67d75cf57" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf428827668379" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13413292241262676909" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31f1a0" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9f8bc80d90125d8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + }, + "cborHex": "bf48c991a8e67d75cf578047cf428827668379bf1bba25963a0cf70bad4331f1a0ff48d9f8bc80d90125d810ff", + "cborBytes": [ + 191, 72, 201, 145, 168, 230, 125, 117, 207, 87, 128, 71, 207, 66, 136, 39, 102, 131, 121, 191, 27, 186, 37, 150, + 58, 12, 247, 11, 173, 67, 49, 241, 160, 255, 72, 217, 248, 188, 128, 217, 1, 37, 216, 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 962, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "71361632486598950" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0e5a8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13947480140366553667" + } + } + } + ] + }, + "cborHex": "bf1b00fd8706d2f4a92643e0e5a81bfffffffffffffff21bc18f674a6e5d2243ff", + "cborBytes": [ + 191, 27, 0, 253, 135, 6, 210, 244, 169, 38, 67, 224, 229, 168, 27, 255, 255, 255, 255, 255, 255, 255, 242, 27, + 193, 143, 103, 74, 110, 93, 34, 67, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 963, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "292e7c15" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6055c7255f80536de6" + }, + { + "_tag": "ByteArray", + "bytearray": "a6626df1db9a99e309ec5fa2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1698046287503368405" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e01" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5105762172158258406" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5233112847279369121" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43c601078b010401" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13300665183865923106" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5dff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2069c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "079600fdfd" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3023f8b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "034b9206fe0746527009e7" + } + } + ] + }, + "cborHex": "bf44292e7c159f496055c7255f80536de64ca6626df1db9a99e309ec5fa2111b1790ac1a12cf20d5ff422e01bf1b46db4fa4e31eace61b489fc0688b9eaba1ff4843c601078b0104011bb8957483c8bbe622425dff0443b2069c9f45079600fdfdff44c3023f8b4b034b9206fe0746527009e7ff", + "cborBytes": [ + 191, 68, 41, 46, 124, 21, 159, 73, 96, 85, 199, 37, 95, 128, 83, 109, 230, 76, 166, 98, 109, 241, 219, 154, 153, + 227, 9, 236, 95, 162, 17, 27, 23, 144, 172, 26, 18, 207, 32, 213, 255, 66, 46, 1, 191, 27, 70, 219, 79, 164, 227, + 30, 172, 230, 27, 72, 159, 192, 104, 139, 158, 171, 161, 255, 72, 67, 198, 1, 7, 139, 1, 4, 1, 27, 184, 149, 116, + 131, 200, 187, 230, 34, 66, 93, 255, 4, 67, 178, 6, 156, 159, 69, 7, 150, 0, 253, 253, 255, 68, 195, 2, 63, 139, + 75, 3, 75, 146, 6, 254, 7, 70, 82, 112, 9, 231, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 964, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf28" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6088611515183687553" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f34a265" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8868748329135352719" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68" + } + } + ] + }, + "cborHex": "bf0842cf280ad905069f13ff1b547f17ea09e06781444f34a2651b7b141f9de073ab8f4168ff", + "cborBytes": [ + 191, 8, 66, 207, 40, 10, 217, 5, 6, 159, 19, 255, 27, 84, 127, 23, 234, 9, 224, 103, 129, 68, 79, 52, 162, 101, + 27, 123, 20, 31, 157, 224, 115, 171, 143, 65, 104, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 965, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8129083934927215450" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2780756294393689476" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "09e58c635df2" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10050699770789986218" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8494907884485077338" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cf3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5b06a65088135ee3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "185059542269272116" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1905414289601038423" + } + }, + { + "_tag": "ByteArray", + "bytearray": "082920c5f68bfdff96675f7e" + }, + { + "_tag": "ByteArray", + "bytearray": "830ff5336723b192" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff752324" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7615720595353836494" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "82a19061e1a1ae2f2c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5749910525615423684" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11470534818333418913" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13599388167186772892" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18297601122223569886" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b70d04ec4e2abdb5ad8669f1b26973b1dde4475849f4609e58c635df2ffff1b8b7b4230ce097faad8669f1b75e3f9b68665e95a80ff429cf39f485b06a65088135ee31b029176ac5741a0341b1a716433799f88574c082920c5f68bfdff96675f7e48830ff5336723b192ff44ff752324d8669f1b69b079881ab11bce9f4982a19061e1a1ae2f2c1b4fcbc928a19640c41b9f2f86a4ce8365a11bbcbabb7c43d1739c1bfdee23469becbbdeffffff", + "cborBytes": [ + 191, 27, 112, 208, 78, 196, 226, 171, 219, 90, 216, 102, 159, 27, 38, 151, 59, 29, 222, 68, 117, 132, 159, 70, 9, + 229, 140, 99, 93, 242, 255, 255, 27, 139, 123, 66, 48, 206, 9, 127, 170, 216, 102, 159, 27, 117, 227, 249, 182, + 134, 101, 233, 90, 128, 255, 66, 156, 243, 159, 72, 91, 6, 166, 80, 136, 19, 94, 227, 27, 2, 145, 118, 172, 87, + 65, 160, 52, 27, 26, 113, 100, 51, 121, 159, 136, 87, 76, 8, 41, 32, 197, 246, 139, 253, 255, 150, 103, 95, 126, + 72, 131, 15, 245, 51, 103, 35, 177, 146, 255, 68, 255, 117, 35, 36, 216, 102, 159, 27, 105, 176, 121, 136, 26, + 177, 27, 206, 159, 73, 130, 161, 144, 97, 225, 161, 174, 47, 44, 27, 79, 203, 201, 40, 161, 150, 64, 196, 27, 159, + 47, 134, 164, 206, 131, 101, 161, 27, 188, 186, 187, 124, 67, 209, 115, 156, 27, 253, 238, 35, 70, 155, 236, 187, + 222, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 966, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4759982034421557516" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2085125553660341996" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e434bf8ec26e4ef0" + }, + { + "_tag": "ByteArray", + "bytearray": "6f9e99453a4a9d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6435685413818093947" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "615709635614168935" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5ae3a0f61100de510" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2776335379495816791" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1066364752348388612" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8037730158481908741" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15328342816251480767" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10781220985294097960" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57d0ba29163ea945f9dfe567" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13259860587633664124" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8912024662775654818" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13592788682571816748" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6461139846005537830" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11882249673234559101" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15746663251706614304" + } + } + } + ] + }, + "cborHex": "bf1b420eda70daf0290cd8669f1b1cefdaa4c203aeec9f48e434bf8ec26e4ef0476f9e99453a4a9dffff1b595025c940ca517bbf1b088b70a6c391576749c5ae3a0f61100de5101b2687865168328e571b0ecc7d17a8b91d041b6f8bc0fe50c224051bd4b936940e148abf1b959e975d61710e284c57d0ba29163ea945f9dfe5671bb8047cf3611b607c1b7baddf367e4369a21bbca3494a03a49f2c1b59aa947515483c26ff1ba4e63b1f79a5b07d1bda8762cc4bab9220ff", + "cborBytes": [ + 191, 27, 66, 14, 218, 112, 218, 240, 41, 12, 216, 102, 159, 27, 28, 239, 218, 164, 194, 3, 174, 236, 159, 72, 228, + 52, 191, 142, 194, 110, 78, 240, 71, 111, 158, 153, 69, 58, 74, 157, 255, 255, 27, 89, 80, 37, 201, 64, 202, 81, + 123, 191, 27, 8, 139, 112, 166, 195, 145, 87, 103, 73, 197, 174, 58, 15, 97, 16, 13, 229, 16, 27, 38, 135, 134, + 81, 104, 50, 142, 87, 27, 14, 204, 125, 23, 168, 185, 29, 4, 27, 111, 139, 192, 254, 80, 194, 36, 5, 27, 212, 185, + 54, 148, 14, 20, 138, 191, 27, 149, 158, 151, 93, 97, 113, 14, 40, 76, 87, 208, 186, 41, 22, 62, 169, 69, 249, + 223, 229, 103, 27, 184, 4, 124, 243, 97, 27, 96, 124, 27, 123, 173, 223, 54, 126, 67, 105, 162, 27, 188, 163, 73, + 74, 3, 164, 159, 44, 27, 89, 170, 148, 117, 21, 72, 60, 38, 255, 27, 164, 230, 59, 31, 121, 165, 176, 125, 27, + 218, 135, 98, 204, 75, 171, 146, 32, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 967, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "533849196422712181" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b92156ba26dd2353efd514af" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5709402883935541826" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16005147281394719237" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7e6a" + }, + { + "_tag": "ByteArray", + "bytearray": "052142c353e5afde9cc3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13619514410489290255" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a025e9b9f1df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16236780620065715778" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b07689d0404674b754cb92156ba26dd2353efd514af1b4f3bdfac58919a42d8669f1bde1db4a74d575a059f427e6a4a052142c353e5afde9cc31bbd023c3272871e0f46a025e9b9f1df1be154a1f2a2f6b642ffffff", + "cborBytes": [ + 191, 27, 7, 104, 157, 4, 4, 103, 75, 117, 76, 185, 33, 86, 186, 38, 221, 35, 83, 239, 213, 20, 175, 27, 79, 59, + 223, 172, 88, 145, 154, 66, 216, 102, 159, 27, 222, 29, 180, 167, 77, 87, 90, 5, 159, 66, 126, 106, 74, 5, 33, 66, + 195, 83, 229, 175, 222, 156, 195, 27, 189, 2, 60, 50, 114, 135, 30, 15, 70, 160, 37, 233, 185, 241, 223, 27, 225, + 84, 161, 242, 162, 246, 182, 66, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 968, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6629415571002445983" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1193705633056575192" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12702250428159195396" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9561307923447741882" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13268360874918515205" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d7858b6df51" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1925583818989406834" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4aba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7528908389707991467" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13820629060597598834" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5566563450815277062" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ad82c692633dd7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3452711522187640737" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e2cb635f4a266abc422cf869" + } + ] + } + } + ] + }, + "cborHex": "bf1b5c006a56720b509f1b1090e4f2e0b84ed81bb04775770a7b79041b84b096e5fd3afdba1bb822afeabd359205bf463d7858b6df511b1ab90c47fc1a8a72424aba1b687c0e4a6300c9abff1bbfccbce7e15c4a72d8669f1b4d4067f7318468069f47ad82c692633dd71b2fea7ed60fe47fa14ce2cb635f4a266abc422cf869ffffff", + "cborBytes": [ + 191, 27, 92, 0, 106, 86, 114, 11, 80, 159, 27, 16, 144, 228, 242, 224, 184, 78, 216, 27, 176, 71, 117, 119, 10, + 123, 121, 4, 27, 132, 176, 150, 229, 253, 58, 253, 186, 27, 184, 34, 175, 234, 189, 53, 146, 5, 191, 70, 61, 120, + 88, 182, 223, 81, 27, 26, 185, 12, 71, 252, 26, 138, 114, 66, 74, 186, 27, 104, 124, 14, 74, 99, 0, 201, 171, 255, + 27, 191, 204, 188, 231, 225, 92, 74, 114, 216, 102, 159, 27, 77, 64, 103, 247, 49, 132, 104, 6, 159, 71, 173, 130, + 198, 146, 99, 61, 215, 27, 47, 234, 126, 214, 15, 228, 127, 161, 76, 226, 203, 99, 95, 74, 38, 106, 188, 66, 44, + 248, 105, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 969, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a2b34" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9875029548447880426" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3cdaf2452498" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16616798470019803623" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d752fdefc8c393ec2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0eb551d39c48082d8aaf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12149567953521572861" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc6784d6f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2759988622475588095" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf434a2b34bf1b890b270dddb8d4ea463cdaf24524981be69aba2b3dc8e9e7498d752fdefc8c393ec24a0eb551d39c48082d8aaf1ba89befaebc1f7bfd45bc6784d6f41b264d730772c6f1ffffff", + "cborBytes": [ + 191, 67, 74, 43, 52, 191, 27, 137, 11, 39, 13, 221, 184, 212, 234, 70, 60, 218, 242, 69, 36, 152, 27, 230, 154, + 186, 43, 61, 200, 233, 231, 73, 141, 117, 47, 222, 252, 140, 57, 62, 194, 74, 14, 181, 81, 211, 156, 72, 8, 45, + 138, 175, 27, 168, 155, 239, 174, 188, 31, 123, 253, 69, 188, 103, 132, 214, 244, 27, 38, 77, 115, 7, 114, 198, + 241, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 970, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d051e130457823f27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2904727551655323565" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ebf4be5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4" + } + } + ] + }, + "cborHex": "bf492d051e130457823f271b284faa517db4a7ad448ebf4be541c4ff", + "cborBytes": [ + 191, 73, 45, 5, 30, 19, 4, 87, 130, 63, 39, 27, 40, 79, 170, 81, 125, 180, 167, 173, 68, 142, 191, 75, 229, 65, + 196, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 971, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5049001122917888945" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18355591255822321722" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16452006949202703895" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0a0fcbe9f3" + }, + { + "_tag": "ByteArray", + "bytearray": "8312c20cb274821b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7841651579842150578" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4611a7c54211b3b1413b1bfebc28febd8e483ad8669f1be4514527617c36179f450a0fcbe9f3488312c20cb274821b1b6cd32490a4df40b2ffffff", + "cborBytes": [ + 191, 27, 70, 17, 167, 197, 66, 17, 179, 177, 65, 59, 27, 254, 188, 40, 254, 189, 142, 72, 58, 216, 102, 159, 27, + 228, 81, 69, 39, 97, 124, 54, 23, 159, 69, 10, 15, 203, 233, 243, 72, 131, 18, 194, 12, 178, 116, 130, 27, 27, + 108, 211, 36, 144, 164, 223, 64, 178, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 972, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "65ba8bfa05000706c005fe99" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1092206088470220069" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b149f6c6586a52b8132" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5504894947429038554" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b11eb7e4b78ee31f2e6ac216" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9439054182330122975" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2194a34e93" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17569138674735468729" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69d647ecaf31" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2f8f5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "246a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15082175603517172400" + } + }, + { + "_tag": "ByteArray", + "bytearray": "101c14f6bf010a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fafdfbf9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18242114673082161086" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16629579258307456330" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a7255" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2904199700138915616" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40bd4b9fa8d62610ece8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "995754890c711ba9b321" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "513fd0524640d0" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c65ba8bfa05000706c005fe99bf1b0f284ba694c94d254a3b149f6c6586a52b81321b4c6550c9db59b9da4cb11eb7e4b78ee31f2e6ac2161b82fe41c4c173c2df452194a34e931bf3d21e8a152f50b94669d647ecaf31ff43a2f8f59f42246a1bd14ea6cd77b42ab047101c14f6bf010aff44fafdfbf9bf1bfd2902a4f100d7be1be6c8223a679ead4a431a72551b284dca3d7b9377204a40bd4b9fa8d62610ece84a995754890c711ba9b321414547513fd0524640d0ffff", + "cborBytes": [ + 191, 76, 101, 186, 139, 250, 5, 0, 7, 6, 192, 5, 254, 153, 191, 27, 15, 40, 75, 166, 148, 201, 77, 37, 74, 59, 20, + 159, 108, 101, 134, 165, 43, 129, 50, 27, 76, 101, 80, 201, 219, 89, 185, 218, 76, 177, 30, 183, 228, 183, 142, + 227, 31, 46, 106, 194, 22, 27, 130, 254, 65, 196, 193, 115, 194, 223, 69, 33, 148, 163, 78, 147, 27, 243, 210, 30, + 138, 21, 47, 80, 185, 70, 105, 214, 71, 236, 175, 49, 255, 67, 162, 248, 245, 159, 66, 36, 106, 27, 209, 78, 166, + 205, 119, 180, 42, 176, 71, 16, 28, 20, 246, 191, 1, 10, 255, 68, 250, 253, 251, 249, 191, 27, 253, 41, 2, 164, + 241, 0, 215, 190, 27, 230, 200, 34, 58, 103, 158, 173, 74, 67, 26, 114, 85, 27, 40, 77, 202, 61, 123, 147, 119, + 32, 74, 64, 189, 75, 159, 168, 214, 38, 16, 236, 232, 74, 153, 87, 84, 137, 12, 113, 27, 169, 179, 33, 65, 69, 71, + 81, 63, 208, 82, 70, 64, 208, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 973, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6361494050364367429" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ef119eb8878" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71fc7f45c8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7495524832634048641" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2616685210269034629" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d55116d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7c0" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca7f94db552a62" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15684303732668675974" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e784cc566c03a398" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6211408366062587007" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8217614424693161766" + } + } + ] + } + } + ] + }, + "cborHex": "bf41011b5848912258baa245463ef119eb8878804571fc7f45c8d8669f1b6805741f4e4590819f1b24505555bf1aa885440d55116dffff42b7c08047ca7f94db552a621bd9a9d725570cb78648e784cc566c03a398d8669f1b56335affde0ccc7f9f1b720ad4c7ccf63f26ffffff", + "cborBytes": [ + 191, 65, 1, 27, 88, 72, 145, 34, 88, 186, 162, 69, 70, 62, 241, 25, 235, 136, 120, 128, 69, 113, 252, 127, 69, + 200, 216, 102, 159, 27, 104, 5, 116, 31, 78, 69, 144, 129, 159, 27, 36, 80, 85, 85, 191, 26, 168, 133, 68, 13, 85, + 17, 109, 255, 255, 66, 183, 192, 128, 71, 202, 127, 148, 219, 85, 42, 98, 27, 217, 169, 215, 37, 87, 12, 183, 134, + 72, 231, 132, 204, 86, 108, 3, 163, 152, 216, 102, 159, 27, 86, 51, 90, 255, 222, 12, 204, 127, 159, 27, 114, 10, + 212, 199, 204, 246, 63, 38, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 974, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5367209045167209811" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0705" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12739150517225255940" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b4a7c28309c747d534207051bb0ca8de68771f404a0ff", + "cborBytes": [ + 191, 27, 74, 124, 40, 48, 156, 116, 125, 83, 66, 7, 5, 27, 176, 202, 141, 230, 135, 113, 244, 4, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 975, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3867781779956703884" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5250337094572225233" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2d901a03d024cca3b5a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17105935341317376589" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18222281886207350446" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17281254733698653663" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dfbd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6323561287354926474" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6794881588841050755" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b35ad1f09570c228c1b48dcf1c52108b2d14ac2d901a03d024cca3b5ad8669f1bed647d8fd205ca4d9f1bfce28cd4686c96ae1befd3599ecb255ddf42dfbd1b57c1cd7cb833c58a1b5e4c44cde1b67283ffffff", + "cborBytes": [ + 191, 27, 53, 173, 31, 9, 87, 12, 34, 140, 27, 72, 220, 241, 197, 33, 8, 178, 209, 74, 194, 217, 1, 160, 61, 2, 76, + 202, 59, 90, 216, 102, 159, 27, 237, 100, 125, 143, 210, 5, 202, 77, 159, 27, 252, 226, 140, 212, 104, 108, 150, + 174, 27, 239, 211, 89, 158, 203, 37, 93, 223, 66, 223, 189, 27, 87, 193, 205, 124, 184, 51, 197, 138, 27, 94, 76, + 68, 205, 225, 182, 114, 131, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 976, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9177186325288615331" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ccbfbf04b0a58b0cf460e13" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13216947667137609992" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ec8668e670cb05f2a57876f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13934882227101755083" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4215" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6818884145741501331" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbb5c3a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca09a1f90756350939db1008" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14042433815425837690" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68e8ce6f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14048996059695957904" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3252344915260189203" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0586" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5255165636604279945" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac58d2c57fda" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9894265928727114005" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee19301c1995f0ed54c1" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14111264345013079547" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "819c7ffa3fdf" + } + } + ] + }, + "cborHex": "bf1b7f5bea570c667da34c8ccbfbf04b0a58b0cf460e131bb76c07e07aaa41084c6ec8668e670cb05f2a57876f1bc162a58e2d4de6cbbf4242151b5ea18b00a777139344bbb5c3a24cca09a1f90756350939db1008ff1bc2e0bf27b663ea7a4468e8ce6f1bc2f80f7b450a4790bf1b2d22a6780121aa134205861b48ee194dada33c8946ac58d2c57fda1b894f7e70ab07b1154aee19301c1995f0ed54c1ff1bc3d548283823cdfb46819c7ffa3fdfff", + "cborBytes": [ + 191, 27, 127, 91, 234, 87, 12, 102, 125, 163, 76, 140, 203, 251, 240, 75, 10, 88, 176, 207, 70, 14, 19, 27, 183, + 108, 7, 224, 122, 170, 65, 8, 76, 110, 200, 102, 142, 103, 12, 176, 95, 42, 87, 135, 111, 27, 193, 98, 165, 142, + 45, 77, 230, 203, 191, 66, 66, 21, 27, 94, 161, 139, 0, 167, 119, 19, 147, 68, 187, 181, 195, 162, 76, 202, 9, + 161, 249, 7, 86, 53, 9, 57, 219, 16, 8, 255, 27, 194, 224, 191, 39, 182, 99, 234, 122, 68, 104, 232, 206, 111, 27, + 194, 248, 15, 123, 69, 10, 71, 144, 191, 27, 45, 34, 166, 120, 1, 33, 170, 19, 66, 5, 134, 27, 72, 238, 25, 77, + 173, 163, 60, 137, 70, 172, 88, 210, 197, 127, 218, 27, 137, 79, 126, 112, 171, 7, 177, 21, 74, 238, 25, 48, 28, + 25, 149, 240, 237, 84, 193, 255, 27, 195, 213, 72, 40, 56, 35, 205, 251, 70, 129, 156, 127, 250, 63, 223, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 977, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "26623b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5836363153150471884" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5469997361563461629" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17527402581817766626" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e8240f9b7689a42d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9410708033744733409" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41e55f14750dbadd12a9ae" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f76da44914161dfb3c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3465a1abb1b6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42abdd26c41a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57f2d0f524" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49d46e3672d33091596a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92dec58b3baa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bc2b10f5c0f0efdd5bc7448" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11822332313428416363" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2896b7b5e59d56d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11976846286433235714" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74c218d9b505b8318f01" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4849367977089807643" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11056500268342815773" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "182b6f80d1f1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1805552608" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5efc028ed9eceb25b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e55d8500f82c7604db0a7a60" + } + } + ] + }, + "cborHex": "bf4326623bbf1b50feed5d8bb66ecc1b4be9559e7a5067fd1bf33dd7c8b48332e2493e8240f9b7689a42d141b91b82998d18bc4504e1ff4b41e55f14750dbadd12a9aebf4a3f76da44914161dfb3c2463465a1abb1b64642abdd26c41a4557f2d0f5244a49d46e3672d33091596a4692dec58b3baa4c7bc2b10f5c0f0efdd5bc74481ba4115c9a0685d76b48c2896b7b5e59d56d1ba6364e3dd04f3302ff4a74c218d9b505b8318f01bf1b434c6a7b6b97b51b1b9970946a0995ac1d46182b6f80d1f1451805552608ff49f5efc028ed9eceb25b4ce55d8500f82c7604db0a7a60ff", + "cborBytes": [ + 191, 67, 38, 98, 59, 191, 27, 80, 254, 237, 93, 139, 182, 110, 204, 27, 75, 233, 85, 158, 122, 80, 103, 253, 27, + 243, 61, 215, 200, 180, 131, 50, 226, 73, 62, 130, 64, 249, 183, 104, 154, 66, 209, 65, 185, 27, 130, 153, 141, + 24, 188, 69, 4, 225, 255, 75, 65, 229, 95, 20, 117, 13, 186, 221, 18, 169, 174, 191, 74, 63, 118, 218, 68, 145, + 65, 97, 223, 179, 194, 70, 52, 101, 161, 171, 177, 182, 70, 66, 171, 221, 38, 196, 26, 69, 87, 242, 208, 245, 36, + 74, 73, 212, 110, 54, 114, 211, 48, 145, 89, 106, 70, 146, 222, 197, 139, 59, 170, 76, 123, 194, 177, 15, 92, 15, + 14, 253, 213, 188, 116, 72, 27, 164, 17, 92, 154, 6, 133, 215, 107, 72, 194, 137, 107, 123, 94, 89, 213, 109, 27, + 166, 54, 78, 61, 208, 79, 51, 2, 255, 74, 116, 194, 24, 217, 181, 5, 184, 49, 143, 1, 191, 27, 67, 76, 106, 123, + 107, 151, 181, 27, 27, 153, 112, 148, 106, 9, 149, 172, 29, 70, 24, 43, 111, 128, 209, 241, 69, 24, 5, 85, 38, 8, + 255, 73, 245, 239, 192, 40, 237, 158, 206, 178, 91, 76, 229, 93, 133, 0, 248, 44, 118, 4, 219, 10, 122, 96, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 978, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25a704095f3a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff0a04625a704095f3a0aff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 240, 160, 70, 37, 167, 4, 9, 95, 58, 10, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 979, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2875872305370678790" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e5d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6499668207631550716" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6590552229629333827" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a498d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10059467368578247153" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3883258996990167746" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d575fb828a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18071880950428686119" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11280545061144470233" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "55e7abd3d2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8066212793318583040" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "754a67b712b7f30718648715" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1704838106450292350" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "894d6458" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acfb563e262fda58a55ac4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a124" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cdfbe6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c52d5e25b02ce8fa6c2c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27a4623a70891d5f3bb9679d" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12987498081665027763" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13776879585694280224" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6462823175352865495" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5822440971908362887" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15395955554717896904" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "092ce7e548" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6888246346240113842" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c42a7e0c5ed52" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11237646457096681434" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c728a84c0924e407582c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be9ceb5b9f67cd5b124c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1307b5376f9970" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dda94c4b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d28e3f1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15204303121984152467" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17282984591909626492" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a4141bce010e0a191f4d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdfded366554130e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b9c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3557fb669232f9231b944d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7f63e66e327ca5e15" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "037dd7c5108728f8f6aa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3d8359f8e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f035c48c7c62fd115ba5" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b27e9269fed00c606426e5d1b5a3375cc51c748fcbf1b5b765855a8b71143438a498d1b8b9a68463dbd69f11b35e41b7bbe704ac245d575fb828a1bfacc37f9b9735727ff1b9c8c8bf75a4da2d9bf4555e7abd3d21b6ff0f1cc84772b004c754a67b712b7f307186487151b17a8cd39a684ee7e44894d64584bacfb563e262fda58a55ac442a12443cdfbe64ac52d5e25b02ce8fa6c2c4c27a4623a70891d5f3bb9679dff1bb43cdcb1ceb60eb39f1bbf314efd7aa36a201b59b08f6fbd11d2d741b81b50cd773720473287ff1bd5a96c0178a990c8bf45092ce7e5481b5f97f78e71063cb2472c42a7e0c5ed521b9bf423e9c2acb7da4b5c728a84c0924e407582c141f74abe9ceb5b9f67cd5b124c471307b5376f997044dda94c4b448d28e3f141ee1bd3008922333a6393ff1befd97eeacb52a27cbf4b5a4141bce010e0a191f4d548bdfded366554130e428b9c4b3557fb669232f9231b944d49a7f63e66e327ca5e154a037dd7c5108728f8f6aa45d3d8359f8e4af035c48c7c62fd115ba5ffff", + "cborBytes": [ + 191, 27, 39, 233, 38, 159, 237, 0, 198, 6, 66, 110, 93, 27, 90, 51, 117, 204, 81, 199, 72, 252, 191, 27, 91, 118, + 88, 85, 168, 183, 17, 67, 67, 138, 73, 141, 27, 139, 154, 104, 70, 61, 189, 105, 241, 27, 53, 228, 27, 123, 190, + 112, 74, 194, 69, 213, 117, 251, 130, 138, 27, 250, 204, 55, 249, 185, 115, 87, 39, 255, 27, 156, 140, 139, 247, + 90, 77, 162, 217, 191, 69, 85, 231, 171, 211, 210, 27, 111, 240, 241, 204, 132, 119, 43, 0, 76, 117, 74, 103, 183, + 18, 183, 243, 7, 24, 100, 135, 21, 27, 23, 168, 205, 57, 166, 132, 238, 126, 68, 137, 77, 100, 88, 75, 172, 251, + 86, 62, 38, 47, 218, 88, 165, 90, 196, 66, 161, 36, 67, 205, 251, 230, 74, 197, 45, 94, 37, 176, 44, 232, 250, + 108, 44, 76, 39, 164, 98, 58, 112, 137, 29, 95, 59, 185, 103, 157, 255, 27, 180, 60, 220, 177, 206, 182, 14, 179, + 159, 27, 191, 49, 78, 253, 122, 163, 106, 32, 27, 89, 176, 143, 111, 189, 17, 210, 215, 65, 184, 27, 80, 205, 119, + 55, 32, 71, 50, 135, 255, 27, 213, 169, 108, 1, 120, 169, 144, 200, 191, 69, 9, 44, 231, 229, 72, 27, 95, 151, + 247, 142, 113, 6, 60, 178, 71, 44, 66, 167, 224, 197, 237, 82, 27, 155, 244, 35, 233, 194, 172, 183, 218, 75, 92, + 114, 138, 132, 192, 146, 78, 64, 117, 130, 193, 65, 247, 74, 190, 156, 235, 91, 159, 103, 205, 91, 18, 76, 71, 19, + 7, 181, 55, 111, 153, 112, 68, 221, 169, 76, 75, 68, 141, 40, 227, 241, 65, 238, 27, 211, 0, 137, 34, 51, 58, 99, + 147, 255, 27, 239, 217, 126, 234, 203, 82, 162, 124, 191, 75, 90, 65, 65, 188, 224, 16, 224, 161, 145, 244, 213, + 72, 189, 253, 237, 54, 101, 84, 19, 14, 66, 139, 156, 75, 53, 87, 251, 102, 146, 50, 249, 35, 27, 148, 77, 73, + 167, 246, 62, 102, 227, 39, 202, 94, 21, 74, 3, 125, 215, 197, 16, 135, 40, 248, 246, 170, 69, 211, 216, 53, 159, + 142, 74, 240, 53, 196, 140, 124, 98, 253, 17, 91, 165, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 980, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05fb03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fe76acf559795" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8762842121559192996" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1e11" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10432141364690838864" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8cba7fc0eb0141" + } + ] + } + } + ] + }, + "cborHex": "bf4224fa4305fb03473fe76acf5597959f1b799bde7b665db5a4421e111b90c6694ca10e6550478cba7fc0eb0141ffff", + "cborBytes": [ + 191, 66, 36, 250, 67, 5, 251, 3, 71, 63, 231, 106, 207, 85, 151, 149, 159, 27, 121, 155, 222, 123, 102, 93, 181, + 164, 66, 30, 17, 27, 144, 198, 105, 76, 161, 14, 101, 80, 71, 140, 186, 127, 192, 235, 1, 65, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 981, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "565bc285c8be077e3a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc06fa3901" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3a6b45aa5469fa3f80a7a0b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2006206538169121107" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0796fde003ae0af848fbd2" + }, + { + "_tag": "ByteArray", + "bytearray": "6c945fb1fa85" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + ] + } + } + ] + }, + "cborHex": "bf49565bc285c8be077e3a45cc06fa39014cd3a6b45aa5469fa3f80a7a0b9f1b1bd77a3795a2f9534b0796fde003ae0af848fbd2466c945fb1fa851bffffffffffffffeb1bffffffffffffffffffff", + "cborBytes": [ + 191, 73, 86, 91, 194, 133, 200, 190, 7, 126, 58, 69, 204, 6, 250, 57, 1, 76, 211, 166, 180, 90, 165, 70, 159, 163, + 248, 10, 122, 11, 159, 27, 27, 215, 122, 55, 149, 162, 249, 83, 75, 7, 150, 253, 224, 3, 174, 10, 248, 72, 251, + 210, 70, 108, 148, 95, 177, 250, 133, 27, 255, 255, 255, 255, 255, 255, 255, 235, 27, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 982, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06ebadd257059505" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3010" + } + } + ] + }, + "cborHex": "bf4806ebadd2570595050642b1c5423010ff", + "cborBytes": [191, 72, 6, 235, 173, 210, 87, 5, 149, 5, 6, 66, 177, 197, 66, 48, 16, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 983, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10117734083858587803" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1805719939771935973" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0833d5b2bc23" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10932920065817785514" + } + } + ] + } + } + ] + }, + "cborHex": "bf03091b8c69698b1040e09bd8669f1b190f34b7d5f22ce59f460833d5b2bc231b97b988dff0cf34aaffffff", + "cborBytes": [ + 191, 3, 9, 27, 140, 105, 105, 139, 16, 64, 224, 155, 216, 102, 159, 27, 25, 15, 52, 183, 213, 242, 44, 229, 159, + 70, 8, 51, 213, 178, 188, 35, 27, 151, 185, 136, 223, 240, 207, 52, 170, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 984, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03000300" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a89f46823ed1" + } + } + ] + }, + "cborHex": "bf440300030041ff4281d346a89f46823ed1ff", + "cborBytes": [191, 68, 3, 0, 3, 0, 65, 255, 66, 129, 211, 70, 168, 159, 70, 130, 62, 209, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 985, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7482677621626080469" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b67d7cfa6e5c98cd5801bfffffffffffffff580ff", + "cborBytes": [ + 191, 27, 103, 215, 207, 166, 229, 201, 140, 213, 128, 27, 255, 255, 255, 255, 255, 255, 255, 245, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 986, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14471206636058090292" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1992626959736429205" + } + }, + { + "_tag": "ByteArray", + "bytearray": "69a539dd430d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04ddd847" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ca2b640b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4606624582217008317" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8aff" + }, + { + "_tag": "ByteArray", + "bytearray": "0702" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d64d80c01d7bf984b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d501fd06" + } + } + ] + }, + "cborHex": "bf1bc8d40dc385849b349f1b1ba73ba998f4da954669a539dd430d0fff4404ddd8479f1044ca2b640b1b3fee04a68ca084bd428aff420702ff498d64d80c01d7bf984b44d501fd06ff", + "cborBytes": [ + 191, 27, 200, 212, 13, 195, 133, 132, 155, 52, 159, 27, 27, 167, 59, 169, 152, 244, 218, 149, 70, 105, 165, 57, + 221, 67, 13, 15, 255, 68, 4, 221, 216, 71, 159, 16, 68, 202, 43, 100, 11, 27, 63, 238, 4, 166, 140, 160, 132, 189, + 66, 138, 255, 66, 7, 2, 255, 73, 141, 100, 216, 12, 1, 215, 191, 152, 75, 68, 213, 1, 253, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 987, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e435d45b8f35304d46b60" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "32" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14930976459004299574" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e0a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "289490654109629531" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6787ef243cd29" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4b4e435d45b8f35304d46b60bf41321bcf357bfb54abc936424e0a1b04047a3753fffc5bff47e6787ef243cd29a0ff", + "cborBytes": [ + 191, 75, 78, 67, 93, 69, 184, 243, 83, 4, 212, 107, 96, 191, 65, 50, 27, 207, 53, 123, 251, 84, 171, 201, 54, 66, + 78, 10, 27, 4, 4, 122, 55, 83, 255, 252, 91, 255, 71, 230, 120, 126, 242, 67, 205, 41, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 988, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "550629009859770438" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12910870011224737378" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8f9" + }, + { + "_tag": "ByteArray", + "bytearray": "cf0607f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8682307966206554284" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa0024a2" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16113855576448826281" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5641478457595497010" + } + } + } + ] + }, + "cborHex": "bf1b07a43a2ac7b77846d8669f1bb32c9fded84b46629f42f8f944cf0607f80a1b787dc1182c4930ac44fa0024a2ffff1bdf9fea459c2dfba91b4e4a8ec470ff8a32ff", + "cborBytes": [ + 191, 27, 7, 164, 58, 42, 199, 183, 120, 70, 216, 102, 159, 27, 179, 44, 159, 222, 216, 75, 70, 98, 159, 66, 248, + 249, 68, 207, 6, 7, 248, 10, 27, 120, 125, 193, 24, 44, 73, 48, 172, 68, 250, 0, 36, 162, 255, 255, 27, 223, 159, + 234, 69, 156, 45, 251, 169, 27, 78, 74, 142, 196, 112, 255, 138, 50, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 989, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "537f8b718eb24697" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e840a8249f61698c610" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5013f45cbcb9d8094545" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b62801" + } + } + ] + }, + "cborHex": "bf00bf48537f8b718eb246974a2e840a8249f61698c610ff4a5013f45cbcb9d809454580416743b62801ff", + "cborBytes": [ + 191, 0, 191, 72, 83, 127, 139, 113, 142, 178, 70, 151, 74, 46, 132, 10, 130, 73, 246, 22, 152, 198, 16, 255, 74, + 80, 19, 244, 92, 188, 185, 216, 9, 69, 69, 128, 65, 103, 67, 182, 40, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 990, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "289381370969003642" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7056027438535300933" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17523205317137333402" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7364452000338991700" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efdec1d4c84c2d5eb6452e65" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9833169696558531946" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "652987af49ed" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11117465359065063809" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15859155665120801416" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16086235389926023317" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21a06453f8ca88" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11616475984501904156" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9895907076359644810" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15856846378716045303" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2755217650047227945" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ccb7d348104509a7" + }, + { + "_tag": "ByteArray", + "bytearray": "423628d8ae6284951591f2" + }, + { + "_tag": "ByteArray", + "bytearray": "1b61a3" + }, + { + "_tag": "ByteArray", + "bytearray": "52f269252d9bc9a9" + } + ] + } + } + ] + }, + "cborHex": "bf1b040416d2dd39167abf1b61ec0b92274e57451bf32eee64de34fc9a1b6633ca13659eda544cefdec1d4c84c2d5eb6452e651b88766fbd9b81c56a46652987af49ed1b9a492bd759c8a1811bdc170a0d512632881bdf3dc9dbcddba0954721a06453f8ca88ff1ba136035c7617931c1b8955530e20b0e68a1bdc0ed5c4ad4f1ff7d8669f1b263c7fdaddf398299f48ccb7d348104509a74b423628d8ae6284951591f2431b61a34852f269252d9bc9a9ffffff", + "cborBytes": [ + 191, 27, 4, 4, 22, 210, 221, 57, 22, 122, 191, 27, 97, 236, 11, 146, 39, 78, 87, 69, 27, 243, 46, 238, 100, 222, + 52, 252, 154, 27, 102, 51, 202, 19, 101, 158, 218, 84, 76, 239, 222, 193, 212, 200, 76, 45, 94, 182, 69, 46, 101, + 27, 136, 118, 111, 189, 155, 129, 197, 106, 70, 101, 41, 135, 175, 73, 237, 27, 154, 73, 43, 215, 89, 200, 161, + 129, 27, 220, 23, 10, 13, 81, 38, 50, 136, 27, 223, 61, 201, 219, 205, 219, 160, 149, 71, 33, 160, 100, 83, 248, + 202, 136, 255, 27, 161, 54, 3, 92, 118, 23, 147, 28, 27, 137, 85, 83, 14, 32, 176, 230, 138, 27, 220, 14, 213, + 196, 173, 79, 31, 247, 216, 102, 159, 27, 38, 60, 127, 218, 221, 243, 152, 41, 159, 72, 204, 183, 211, 72, 16, 69, + 9, 167, 75, 66, 54, 40, 216, 174, 98, 132, 149, 21, 145, 242, 67, 27, 97, 163, 72, 82, 242, 105, 37, 45, 155, 201, + 169, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 991, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6772" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14507879955276972273" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e09a4" + }, + { + "_tag": "ByteArray", + "bytearray": "1ece0c3736b34cd14664fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15076287805706153166" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68e934" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96b3ad9f607e6b45b0ca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2b5d9037ee43d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14833046168605034159" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11173037531311775274" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e9c637556455" + }, + { + "_tag": "ByteArray", + "bytearray": "ae5d95fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1443864548038982939" + } + } + ] + } + } + ] + }, + "cborHex": "bf4267729f1bc95657f40a4b40f1436e09a44b1ece0c3736b34cd14664fb1bd139bbe1b6ab2cceff4368e9344a96b3ad9f607e6b45b0ca47d2b5d9037ee43d9f1bcdd990e6c8ac06af1b9b0e9a6ffbf21e2a46e9c63755645544ae5d95fb1b1409a32811a4bd1bffff", + "cborBytes": [ + 191, 66, 103, 114, 159, 27, 201, 86, 87, 244, 10, 75, 64, 241, 67, 110, 9, 164, 75, 30, 206, 12, 55, 54, 179, 76, + 209, 70, 100, 251, 27, 209, 57, 187, 225, 182, 171, 44, 206, 255, 67, 104, 233, 52, 74, 150, 179, 173, 159, 96, + 126, 107, 69, 176, 202, 71, 210, 181, 217, 3, 126, 228, 61, 159, 27, 205, 217, 144, 230, 200, 172, 6, 175, 27, + 155, 14, 154, 111, 251, 242, 30, 42, 70, 233, 198, 55, 85, 100, 85, 68, 174, 93, 149, 251, 27, 20, 9, 163, 40, 17, + 164, 189, 27, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 992, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2050954439635812745" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15649709220347642261" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17461257185460077758" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17236152561537645423" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "178171166627581367" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5286214556033521046" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2948591681716851677" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e6a3a84353c681e5f975" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14937116547759117771" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11846196031916154593" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2658226408745088983" + } + } + } + ] + }, + "cborHex": "bf1b1c7674324900c189d8669f1bd92eef9ec4fa01959f1bf252d8e57f15c4be1bef331d6f04e3fb6f1b0278fdbb680dcdb7ffff1b495c682192e09596d8669f1b28eb8083206793dd9f4ae6a3a84353c681e5f9751bcf4b4c5c25ca95cbffff1ba4662486f6011ee11b24e3ead5b9d037d7ff", + "cborBytes": [ + 191, 27, 28, 118, 116, 50, 73, 0, 193, 137, 216, 102, 159, 27, 217, 46, 239, 158, 196, 250, 1, 149, 159, 27, 242, + 82, 216, 229, 127, 21, 196, 190, 27, 239, 51, 29, 111, 4, 227, 251, 111, 27, 2, 120, 253, 187, 104, 13, 205, 183, + 255, 255, 27, 73, 92, 104, 33, 146, 224, 149, 150, 216, 102, 159, 27, 40, 235, 128, 131, 32, 103, 147, 221, 159, + 74, 230, 163, 168, 67, 83, 198, 129, 229, 249, 117, 27, 207, 75, 76, 92, 37, 202, 149, 203, 255, 255, 27, 164, + 102, 36, 134, 246, 1, 30, 225, 27, 36, 227, 234, 213, 185, 208, 55, 215, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 993, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2893d75bfe072f29" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "719248492396108940" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1c91102c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d86d2b9d0d62b56977e" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fcf2e29" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9666216027258745853" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ff5caf000c6882917" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efb40b34" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8323c877bb73986f66" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e360161ceca08067d563f7" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15523696557817258541" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d4a2" + }, + { + "_tag": "ByteArray", + "bytearray": "fa5d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17332224247712137366" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "38943b33" + }, + { + "_tag": "ByteArray", + "bytearray": "ba29b1b25f5a8dbe36bc" + } + ] + } + } + ] + }, + "cborHex": "bf0ebf482893d75bfe072f291b09fb48b16e815c8c45f1c91102c54a7d86d2b9d0d62b56977eff14bf443fcf2e291b86254c4352f1f3fd495ff5caf000c688291744efb40b34498323c877bb73986f664be360161ceca08067d563f7ff1bd76f3fc571a6e22d9f42d4a242fa5dff1bf0886e1f8c4b40969f4438943b334aba29b1b25f5a8dbe36bcffff", + "cborBytes": [ + 191, 14, 191, 72, 40, 147, 215, 91, 254, 7, 47, 41, 27, 9, 251, 72, 177, 110, 129, 92, 140, 69, 241, 201, 17, 2, + 197, 74, 125, 134, 210, 185, 208, 214, 43, 86, 151, 126, 255, 20, 191, 68, 63, 207, 46, 41, 27, 134, 37, 76, 67, + 82, 241, 243, 253, 73, 95, 245, 202, 240, 0, 198, 136, 41, 23, 68, 239, 180, 11, 52, 73, 131, 35, 200, 119, 187, + 115, 152, 111, 102, 75, 227, 96, 22, 28, 236, 160, 128, 103, 213, 99, 247, 255, 27, 215, 111, 63, 197, 113, 166, + 226, 45, 159, 66, 212, 162, 66, 250, 93, 255, 27, 240, 136, 110, 31, 140, 75, 64, 150, 159, 68, 56, 148, 59, 51, + 74, 186, 41, 177, 178, 95, 90, 141, 190, 54, 188, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 994, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2837094497944171437" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ac76e163f993a1be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9501748521164733982" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4635183805580872436" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9554172167942556855" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1910594657084975983" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10020433809338509176" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5aaee15cd45e3469" + }, + { + "_tag": "ByteArray", + "bytearray": "fd" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8530420282245578000" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b275f626a102d73ad9f48ac76e163f993a1be1b83dcfdf0051dfe1eff1b40537b1ce84a8af4d8669f1b84973cf77123ccb79f1b1a83cbb7c54f2b6f1b8b0fbb7584efa778485aaee15cd45e346941fdffff1b7662240cf408fd10a0ff", + "cborBytes": [ + 191, 27, 39, 95, 98, 106, 16, 45, 115, 173, 159, 72, 172, 118, 225, 99, 249, 147, 161, 190, 27, 131, 220, 253, + 240, 5, 29, 254, 30, 255, 27, 64, 83, 123, 28, 232, 74, 138, 244, 216, 102, 159, 27, 132, 151, 60, 247, 113, 35, + 204, 183, 159, 27, 26, 131, 203, 183, 197, 79, 43, 111, 27, 139, 15, 187, 117, 132, 239, 167, 120, 72, 90, 174, + 225, 92, 212, 94, 52, 105, 65, 253, 255, 255, 27, 118, 98, 36, 12, 244, 8, 253, 16, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 995, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8381a041ec45a0704e0" + } + } + ] + }, + "cborHex": "bf054ab8381a041ec45a0704e0ff", + "cborBytes": [191, 5, 74, 184, 56, 26, 4, 30, 196, 90, 7, 4, 224, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 996, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6708214511997055597" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "951520587303280517" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70075b366012d9" + } + } + ] + }, + "cborHex": "bf061b5d185d8e98b4726d1b0d347aeecaaedf854770075b366012d9ff", + "cborBytes": [ + 191, 6, 27, 93, 24, 93, 142, 152, 180, 114, 109, 27, 13, 52, 122, 238, 202, 174, 223, 133, 71, 112, 7, 91, 54, 96, + 18, 217, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 997, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3908788344432694553" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3734997259869575599" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11980197879341270293" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8418886862531420962" + } + } + } + ] + }, + "cborHex": "bf0ad8669f1b363ece4a241915199f1b33d560380f9559afffff1ba642367f590645151b74d5e4ff0d636322ff", + "cborBytes": [ + 191, 10, 216, 102, 159, 27, 54, 62, 206, 74, 36, 25, 21, 25, 159, 27, 51, 213, 96, 56, 15, 149, 89, 175, 255, 255, + 27, 166, 66, 54, 127, 89, 6, 69, 21, 27, 116, 213, 228, 255, 13, 99, 99, 34, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 998, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11695158284833623734" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2022fc535b3028b5bae047e5" + } + ] + } + } + ] + }, + "cborHex": "bf1ba24d8c7f17798eb69f4c2022fc535b3028b5bae047e5ffff", + "cborBytes": [ + 191, 27, 162, 77, 140, 127, 23, 121, 142, 182, 159, 76, 32, 34, 252, 83, 91, 48, 40, 181, 186, 224, 71, 229, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 999, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00041b00" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8636054481130989716" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11341854854908340135" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad312d346ebe0c9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5359353131460960726" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e71c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd1503ec3002c0a394f0802d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8aea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe008f" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4400041b00d8669f1b77d96dcb78bba8949f1b9d665ce618d9e7a71bffffffffffffffedffff48ad312d346ebe0c9c1b4a603f472a9ba1d642e71c0c4cfd1503ec3002c0a394f0802dbf428aea1bfffffffffffffff8ff43fe008fa0ff", + "cborBytes": [ + 191, 68, 0, 4, 27, 0, 216, 102, 159, 27, 119, 217, 109, 203, 120, 187, 168, 148, 159, 27, 157, 102, 92, 230, 24, + 217, 231, 167, 27, 255, 255, 255, 255, 255, 255, 255, 237, 255, 255, 72, 173, 49, 45, 52, 110, 190, 12, 156, 27, + 74, 96, 63, 71, 42, 155, 161, 214, 66, 231, 28, 12, 76, 253, 21, 3, 236, 48, 2, 192, 163, 148, 240, 128, 45, 191, + 66, 138, 234, 27, 255, 255, 255, 255, 255, 255, 255, 248, 255, 67, 254, 0, 143, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1000, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "711254605531618203" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2651588857920317464" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17883313374511446956" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14340969118388179113" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3159747605146411827" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5793" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "172f2c769c5b0839f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11277126925269232421" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b72bd873e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9907238950486500524" + } + } + } + ] + }, + "cborHex": "bf1b09dee24b9b929b9b9f1b24cc56047eb968181bf82e4ac3a6bf3bac1bc7055b6e745fd0a91b2bd9adb4b0a4a333425793ff49172f2c769c5b0839f81b9c80673093aa6b2545b72bd873e51b897d9555aca964acff", + "cborBytes": [ + 191, 27, 9, 222, 226, 75, 155, 146, 155, 155, 159, 27, 36, 204, 86, 4, 126, 185, 104, 24, 27, 248, 46, 74, 195, + 166, 191, 59, 172, 27, 199, 5, 91, 110, 116, 95, 208, 169, 27, 43, 217, 173, 180, 176, 164, 163, 51, 66, 87, 147, + 255, 73, 23, 47, 44, 118, 156, 91, 8, 57, 248, 27, 156, 128, 103, 48, 147, 170, 107, 37, 69, 183, 43, 216, 115, + 229, 27, 137, 125, 149, 85, 172, 169, 100, 172, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1001, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "46dfdb4b063f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c178aa3b64" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72d040d1dacbd68a6886" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "849ba7fe61ee6efb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10509288281835562817" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12930363423002248506" + } + }, + { + "_tag": "ByteArray", + "bytearray": "119397bea5f157273a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15765092481730663758" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10450389238288295170" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c21465a08850c90bbecfa5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6205873937210954368" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c330d2449e942e48" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3423308796096391308" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10081359771470363893" + } + } + ] + } + } + ] + }, + "cborHex": "bf4646dfdb4b063f45c178aa3b644a72d040d1dacbd68a68868048849ba7fe61ee6efb9f1b91d87e0300fbe7411bb371e10674c0c53a49119397bea5f157273a1bdac8dc15c8bcd54e1b91073da4c8bd2502ff4bc21465a08850c90bbecfa51b561fb1773c50528048c330d2449e942e48d8669f1b2f8209366bcba88c9f1b8be82f4c7f677cf5ffffff", + "cborBytes": [ + 191, 70, 70, 223, 219, 75, 6, 63, 69, 193, 120, 170, 59, 100, 74, 114, 208, 64, 209, 218, 203, 214, 138, 104, 134, + 128, 72, 132, 155, 167, 254, 97, 238, 110, 251, 159, 27, 145, 216, 126, 3, 0, 251, 231, 65, 27, 179, 113, 225, 6, + 116, 192, 197, 58, 73, 17, 147, 151, 190, 165, 241, 87, 39, 58, 27, 218, 200, 220, 21, 200, 188, 213, 78, 27, 145, + 7, 61, 164, 200, 189, 37, 2, 255, 75, 194, 20, 101, 160, 136, 80, 201, 11, 190, 207, 165, 27, 86, 31, 177, 119, + 60, 80, 82, 128, 72, 195, 48, 210, 68, 158, 148, 46, 72, 216, 102, 159, 27, 47, 130, 9, 54, 107, 203, 168, 140, + 159, 27, 139, 232, 47, 76, 127, 103, 124, 245, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1002, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6163248382777619254" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4f81204" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11434373264211986701" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "075a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11872771106660402736" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "55fd066e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "034c7c21df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + } + ] + }, + "cborHex": "bf1b558841bff5f5f33644c4f812041b9eaf0de6e294490d42075a1ba4c48e6ab803c630bf4455fd066e1bfffffffffffffffbff45034c7c21df00ff", + "cborBytes": [ + 191, 27, 85, 136, 65, 191, 245, 245, 243, 54, 68, 196, 248, 18, 4, 27, 158, 175, 13, 230, 226, 148, 73, 13, 66, 7, + 90, 27, 164, 196, 142, 106, 184, 3, 198, 48, 191, 68, 85, 253, 6, 110, 27, 255, 255, 255, 255, 255, 255, 255, 251, + 255, 69, 3, 76, 124, 33, 223, 0, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1003, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12247823335321311541" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8656d39ecd" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4021a9b4763607a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "888e5e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d368dfe5776a9bb6d" + } + } + ] + }, + "cborHex": "bf4109d8669f1ba9f9026e859119359f458656d39ecdffff484021a9b4763607a943888e5e42fe03491d368dfe5776a9bb6dff", + "cborBytes": [ + 191, 65, 9, 216, 102, 159, 27, 169, 249, 2, 110, 133, 145, 25, 53, 159, 69, 134, 86, 211, 158, 205, 255, 255, 72, + 64, 33, 169, 180, 118, 54, 7, 169, 67, 136, 142, 94, 66, 254, 3, 73, 29, 54, 141, 254, 87, 118, 169, 187, 109, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1004, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "40e23aa5a168cb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1317487918422992453" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd6702a48c2fdc43b3f9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4740e23aa5a168cbd8669f1b1248a8480d78a64580ff4acd6702a48c2fdc43b3f9d9050480ff", + "cborBytes": [ + 191, 71, 64, 226, 58, 165, 161, 104, 203, 216, 102, 159, 27, 18, 72, 168, 72, 13, 120, 166, 69, 128, 255, 74, 205, + 103, 2, 164, 140, 47, 220, 67, 179, 249, 217, 5, 4, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1005, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16701211216350011925" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8794930730824035677" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17144244784771113820" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a01e9268" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "ByteArray", + "bytearray": "35f33905ff87" + }, + { + "_tag": "ByteArray", + "bytearray": "dc7fc9613842421006fd877e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + } + } + ] + }, + "cborHex": "bf1be7c69f1d4d4fe2151b7a0ddee6f2eeed5d1bfffffffffffffff5d8669f1bedec97cc32a0235c9f44a01e9268094635f33905ff874cdc7fc9613842421006fd877e01ffffff", + "cborBytes": [ + 191, 27, 231, 198, 159, 29, 77, 79, 226, 21, 27, 122, 13, 222, 230, 242, 238, 237, 93, 27, 255, 255, 255, 255, + 255, 255, 255, 245, 216, 102, 159, 27, 237, 236, 151, 204, 50, 160, 35, 92, 159, 68, 160, 30, 146, 104, 9, 70, 53, + 243, 57, 5, 255, 135, 76, 220, 127, 201, 97, 56, 66, 66, 16, 6, 253, 135, 126, 1, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1006, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12815605093387872347" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fac280fe68b35c1a157fb7" + } + } + ] + }, + "cborHex": "bf1bb1da2ceeb512285b4bfac280fe68b35c1a157fb7ff", + "cborBytes": [ + 191, 27, 177, 218, 44, 238, 181, 18, 40, 91, 75, 250, 194, 128, 254, 104, 179, 92, 26, 21, 127, 183, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1007, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "090b3272933332d9bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22e1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3901e2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2262620207597233735" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb915dddfeeb708d8d914e" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47423af81e2be58f2d9efe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7df0acd6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64bdd99a7f58509d6bb2f7ac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11729219944124166021" + } + } + } + ] + }, + "cborHex": "bf49090b3272933332d9bb4222e1433901e2bf1b1f667117477426474bcb915dddfeeb708d8d914eff4b47423af81e2be58f2d9efe447df0acd64c64bdd99a7f58509d6bb2f7ac1ba2c68f6525f2af85ff", + "cborBytes": [ + 191, 73, 9, 11, 50, 114, 147, 51, 50, 217, 187, 66, 34, 225, 67, 57, 1, 226, 191, 27, 31, 102, 113, 23, 71, 116, + 38, 71, 75, 203, 145, 93, 221, 254, 235, 112, 141, 141, 145, 78, 255, 75, 71, 66, 58, 248, 30, 43, 229, 143, 45, + 158, 254, 68, 125, 240, 172, 214, 76, 100, 189, 217, 154, 127, 88, 80, 157, 107, 178, 247, 172, 27, 162, 198, 143, + 101, 37, 242, 175, 133, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1008, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "73f6138137" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13193747395796841779" + } + } + } + ] + }, + "cborHex": "bf4573f61381371bb7199b5a5eb4b533ff", + "cborBytes": [191, 69, 115, 246, 19, 129, 55, 27, 183, 25, 155, 90, 94, 180, 181, 51, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1009, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8663477361428453323" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1497595886614629969" + } + }, + { + "_tag": "ByteArray", + "bytearray": "88d47976db3a277a34b7855d" + }, + { + "_tag": "ByteArray", + "bytearray": "c401c72137b883c2f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11686379927062999628" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b4ae02092" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10494918128494574048" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11292448379119774843" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18075873960533649694" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de24f91c53" + }, + { + "_tag": "ByteArray", + "bytearray": "fe95b78aba34155d43a0e0" + } + ] + } + } + ] + }, + "cborHex": "bf1b783adac25794d7cb9f1b14c8878636c04e514c88d47976db3a277a34b7855d49c401c72137b883c2f81ba22e5ca066d8724cff455b4ae02092d8669f1b91a5706ef3b9f9e09f1b9cb6d5f889deac7b1bfada6798d657691e45de24f91c534bfe95b78aba34155d43a0e0ffffff", + "cborBytes": [ + 191, 27, 120, 58, 218, 194, 87, 148, 215, 203, 159, 27, 20, 200, 135, 134, 54, 192, 78, 81, 76, 136, 212, 121, + 118, 219, 58, 39, 122, 52, 183, 133, 93, 73, 196, 1, 199, 33, 55, 184, 131, 194, 248, 27, 162, 46, 92, 160, 102, + 216, 114, 76, 255, 69, 91, 74, 224, 32, 146, 216, 102, 159, 27, 145, 165, 112, 110, 243, 185, 249, 224, 159, 27, + 156, 182, 213, 248, 137, 222, 172, 123, 27, 250, 218, 103, 152, 214, 87, 105, 30, 69, 222, 36, 249, 28, 83, 75, + 254, 149, 183, 138, 186, 52, 21, 93, 67, 160, 224, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1010, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "508fb73ea2c78f64" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15875099513271940074" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1b19040e6ced90cfe" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17964471679261482379" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2857a1182c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a4e340b025e7a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5fcd00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17569912310442750137" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bda288" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14120054978734090194" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd64acd5e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d2be0d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6cd9a2f2fcec73e1ee46890" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8519c5d7" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc685eb2f8e71492b0d1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4574251372374891359" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10602715002789368278" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c897f528447ca253cd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "406cd6cb5e4a88bfff" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca932709945c83fbd6c26063" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18158719630271508337" + } + } + ] + } + } + ] + }, + "cborHex": "bf48508fb73ea2c78f64d8669f1bdc4faee5be8cf3ea80ff49b1b19040e6ced90cfebf410f1bf94e9fcffbf21d8b452857a1182c471a4e340b025e7a435fcd001bf3d4de282eb3f0b943bda2881bc3f48331206e67d245cd64acd5e7441d2be0d34cf6cd9a2f2fcec73e1ee46890448519c5d7ff4abc685eb2f8e71492b0d19f1b3f7b016343bf9b5f1b9324691e93f711d6ff49c897f528447ca253cd9f49406cd6cb5e4a88bfffff4cca932709945c83fbd6c260639f1bfc00bb4b723eef71ffff", + "cborBytes": [ + 191, 72, 80, 143, 183, 62, 162, 199, 143, 100, 216, 102, 159, 27, 220, 79, 174, 229, 190, 140, 243, 234, 128, 255, + 73, 177, 177, 144, 64, 230, 206, 217, 12, 254, 191, 65, 15, 27, 249, 78, 159, 207, 251, 242, 29, 139, 69, 40, 87, + 161, 24, 44, 71, 26, 78, 52, 11, 2, 94, 122, 67, 95, 205, 0, 27, 243, 212, 222, 40, 46, 179, 240, 185, 67, 189, + 162, 136, 27, 195, 244, 131, 49, 32, 110, 103, 210, 69, 205, 100, 172, 213, 231, 68, 29, 43, 224, 211, 76, 246, + 205, 154, 47, 47, 206, 199, 62, 30, 228, 104, 144, 68, 133, 25, 197, 215, 255, 74, 188, 104, 94, 178, 248, 231, + 20, 146, 176, 209, 159, 27, 63, 123, 1, 99, 67, 191, 155, 95, 27, 147, 36, 105, 30, 147, 247, 17, 214, 255, 73, + 200, 151, 245, 40, 68, 124, 162, 83, 205, 159, 73, 64, 108, 214, 203, 94, 74, 136, 191, 255, 255, 76, 202, 147, + 39, 9, 148, 92, 131, 251, 214, 194, 96, 99, 159, 27, 252, 0, 187, 75, 114, 62, 239, 113, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1011, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "060200fa74" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3556119125001746509" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "86db41" + }, + { + "_tag": "ByteArray", + "bytearray": "1e0164050605ecb3a7fb06" + }, + { + "_tag": "ByteArray", + "bytearray": "143389fa" + }, + { + "_tag": "ByteArray", + "bytearray": "ac210d82b9c94a4a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3174f12f87bdfdec21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14750066424310095803" + } + } + } + ] + }, + "cborHex": "bf038045060200fa74d8669f1b3159df80c8b3b84d9f4386db414b1e0164050605ecb3a7fb0644143389fa48ac210d82b9c94a4affff493174f12f87bdfdec211bccb2c343826b5fbbff", + "cborBytes": [ + 191, 3, 128, 69, 6, 2, 0, 250, 116, 216, 102, 159, 27, 49, 89, 223, 128, 200, 179, 184, 77, 159, 67, 134, 219, 65, + 75, 30, 1, 100, 5, 6, 5, 236, 179, 167, 251, 6, 68, 20, 51, 137, 250, 72, 172, 33, 13, 130, 185, 201, 74, 74, 255, + 255, 73, 49, 116, 241, 47, 135, 189, 253, 236, 33, 27, 204, 178, 195, 67, 130, 107, 95, 187, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1012, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6626304007795531511" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7357692424490539741" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7719610396255021164" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df435826ff9358a968a7" + }, + { + "_tag": "ByteArray", + "bytearray": "cd00ffd556a01f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "533528079321205914" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0684c601318fe848236d2d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12161119671113115986" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "442555674234179507" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba05264f35408df1e94a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10745124986972291630" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f039d94a05320a03c1ac6cfb" + }, + { + "_tag": "ByteArray", + "bytearray": "a565cc816c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9187268472169094086" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5bf55c632e665ef7d8669f1b661bc64700575add9f1b6b2190c15131686c4adf435826ff9358a968a747cd00ffd556a01f1b076778f61da30c9a4b0684c601318fe848236d2dffff1ba8c4f9e893b669521b0624460a7c0fcfb34aba05264f35408df1e94ad8669f1b951e5a3edba8422e9f4cf039d94a05320a03c1ac6cfb45a565cc816c1b7f7fbbffcbc8dbc6ffffff", + "cborBytes": [ + 191, 27, 91, 245, 92, 99, 46, 102, 94, 247, 216, 102, 159, 27, 102, 27, 198, 71, 0, 87, 90, 221, 159, 27, 107, 33, + 144, 193, 81, 49, 104, 108, 74, 223, 67, 88, 38, 255, 147, 88, 169, 104, 167, 71, 205, 0, 255, 213, 86, 160, 31, + 27, 7, 103, 120, 246, 29, 163, 12, 154, 75, 6, 132, 198, 1, 49, 143, 232, 72, 35, 109, 45, 255, 255, 27, 168, 196, + 249, 232, 147, 182, 105, 82, 27, 6, 36, 70, 10, 124, 15, 207, 179, 74, 186, 5, 38, 79, 53, 64, 141, 241, 233, 74, + 216, 102, 159, 27, 149, 30, 90, 62, 219, 168, 66, 46, 159, 76, 240, 57, 217, 74, 5, 50, 10, 3, 193, 172, 108, 251, + 69, 165, 101, 204, 129, 108, 27, 127, 127, 187, 255, 203, 200, 219, 198, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1013, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05005b7d070647" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "043afd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "621a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3c2a1d233b21" + }, + { + "_tag": "ByteArray", + "bytearray": "54766725e264" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8919287897448988946" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6470429928527875449" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a46647599b2f64e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9692d0ff1c3a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6" + } + } + ] + }, + "cborHex": "bf4705005b7d07064743043afd42621a11416d9f463c2a1d233b214654766725e2641b7bc7ad1618e341121b59cb95bcf9f5cd79489a46647599b2f64eff47b9692d0ff1c3a941c6ff", + "cborBytes": [ + 191, 71, 5, 0, 91, 125, 7, 6, 71, 67, 4, 58, 253, 66, 98, 26, 17, 65, 109, 159, 70, 60, 42, 29, 35, 59, 33, 70, + 84, 118, 103, 37, 226, 100, 27, 123, 199, 173, 22, 24, 227, 65, 18, 27, 89, 203, 149, 188, 249, 245, 205, 121, 72, + 154, 70, 100, 117, 153, 178, 246, 78, 255, 71, 185, 105, 45, 15, 241, 195, 169, 65, 198, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1014, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10110940524984164331" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8fd0f928984d8ca60ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19ebd13b1e73fbb4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb59bcaf880aa6253f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17403879756678829629" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eda1fb1d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + }, + "cborHex": "bf1b8c5146d660c85feba04aa8fd0f928984d8ca60ec4819ebd13b1e73fbb449bb59bcaf880aa6253f9f0d1bf187006dd274163dff44eda1fb1d0aff", + "cborBytes": [ + 191, 27, 140, 81, 70, 214, 96, 200, 95, 235, 160, 74, 168, 253, 15, 146, 137, 132, 216, 202, 96, 236, 72, 25, 235, + 209, 59, 30, 115, 251, 180, 73, 187, 89, 188, 175, 136, 10, 166, 37, 63, 159, 13, 27, 241, 135, 0, 109, 210, 116, + 22, 61, 255, 68, 237, 161, 251, 29, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1015, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13506618813205603939" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "95ae737f8951a44de5b1b8" + }, + { + "_tag": "ByteArray", + "bytearray": "cc63c5ef3b9077b7f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16865435124371488271" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73f0da6f8b981c728e1349" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4896949412467566701" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "985e840fc09ca3b5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1569467105082797053" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "daaa6e26b0" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e20523" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15068075827341374847" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f77c" + } + ] + } + } + ] + }, + "cborHex": "bf410bd8669f1bbb71263fddba66639f4b95ae737f8951a44de5b1b849cc63c5ef3b9077b7f81bea0e0fe3828efe0fffff4b73f0da6f8b981c728e13491b43f5758ba52fe86d48985e840fc09ca3b5bf1b15c7de04451eebfd45daaa6e26b0ff43e205239f1bd11c8f218155357f42f77cffff", + "cborBytes": [ + 191, 65, 11, 216, 102, 159, 27, 187, 113, 38, 63, 221, 186, 102, 99, 159, 75, 149, 174, 115, 127, 137, 81, 164, + 77, 229, 177, 184, 73, 204, 99, 197, 239, 59, 144, 119, 183, 248, 27, 234, 14, 15, 227, 130, 142, 254, 15, 255, + 255, 75, 115, 240, 218, 111, 139, 152, 28, 114, 142, 19, 73, 27, 67, 245, 117, 139, 165, 47, 232, 109, 72, 152, + 94, 132, 15, 192, 156, 163, 181, 191, 27, 21, 199, 222, 4, 69, 30, 235, 253, 69, 218, 170, 110, 38, 176, 255, 67, + 226, 5, 35, 159, 27, 209, 28, 143, 33, 129, 85, 53, 127, 66, 247, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1016, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e26a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1518959646278092230" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6454f99258d2e60a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9015292406468430049" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8120833218408069797" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14c1649c12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8445162577628649381" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf42e26abf1b15146dc0208f05c6486454f99258d2e60a1b7d1cc0adb9d3c8e11b70b2fec93f67baa54514c1649c121b75333e9eb5fa57a5ffff", + "cborBytes": [ + 191, 66, 226, 106, 191, 27, 21, 20, 109, 192, 32, 143, 5, 198, 72, 100, 84, 249, 146, 88, 210, 230, 10, 27, 125, + 28, 192, 173, 185, 211, 200, 225, 27, 112, 178, 254, 201, 63, 103, 186, 165, 69, 20, 193, 100, 156, 18, 27, 117, + 51, 62, 158, 181, 250, 87, 165, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1017, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7086099347172491263" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16438523644232816213" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7780693597536549170" + } + } + } + ] + }, + "cborHex": "bf1b6256e1cfff57ffffa01be4215e28ce5b56551b6bfa939a63527932ff", + "cborBytes": [ + 191, 27, 98, 86, 225, 207, 255, 87, 255, 255, 160, 27, 228, 33, 94, 40, 206, 91, 86, 85, 27, 107, 250, 147, 154, + 99, 82, 121, 50, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1018, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0300" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c3d737200" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18039940531366602067" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a2ff01b66fef7c310568" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bff277e58edf2b45f64d21d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3b9061b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f7a45b26fad256cb954839f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04fc01f90294fb03f8" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + } + ] + }, + "cborHex": "bf4203001bfffffffffffffff1450c3d737200d8669f1bfa5abe55654725539f4aa2ff01b66fef7c310568ffff4c1bff277e58edf2b45f64d21d44a3b9061b4c7f7a45b26fad256cb954839f9f4904fc01f90294fb03f8ff41ad1bfffffffffffffffbff", + "cborBytes": [ + 191, 66, 3, 0, 27, 255, 255, 255, 255, 255, 255, 255, 241, 69, 12, 61, 115, 114, 0, 216, 102, 159, 27, 250, 90, + 190, 85, 101, 71, 37, 83, 159, 74, 162, 255, 1, 182, 111, 239, 124, 49, 5, 104, 255, 255, 76, 27, 255, 39, 126, + 88, 237, 242, 180, 95, 100, 210, 29, 68, 163, 185, 6, 27, 76, 127, 122, 69, 178, 111, 173, 37, 108, 185, 84, 131, + 159, 159, 73, 4, 252, 1, 249, 2, 148, 251, 3, 248, 255, 65, 173, 27, 255, 255, 255, 255, 255, 255, 255, 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1019, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6558a6be69d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "333e0b091578" + } + } + ] + }, + "cborHex": "bf466558a6be69d946333e0b091578ff", + "cborBytes": [191, 70, 101, 88, 166, 190, 105, 217, 70, 51, 62, 11, 9, 21, 120, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1020, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8644484815161565258" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d31a3c37a1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14481409937349625853" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e8b63" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14595775872471714209" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "279477bc" + }, + { + "_tag": "ByteArray", + "bytearray": "5c1617565d268ab324" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17710031158208659567" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3042569851243322973" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17861215268577694217" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7375945352733245312" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e6582d802cf4d5477d2e23b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14448508998576941699" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5896cc8f33b2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6182775019632005492" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3992b859b" + } + ] + } + } + ] + }, + "cborHex": "bf1b77f7612391f6a04a45d31a3c37a11bc8f84d9cba8947fd435e8b631bca8e9cd303e4c9a19f44279477bc495c1617565d268ab324ff1bf5c6ab81b220806f1b2a396128d3abde5d1bf7dfc8a76c5b5209d8669f1b665c9f38085bbf809f4ce6582d802cf4d5477d2e23b91bc8836a61fa36aa83465896cc8f33b21b55cda11f6353117445f3992b859bffffff", + "cborBytes": [ + 191, 27, 119, 247, 97, 35, 145, 246, 160, 74, 69, 211, 26, 60, 55, 161, 27, 200, 248, 77, 156, 186, 137, 71, 253, + 67, 94, 139, 99, 27, 202, 142, 156, 211, 3, 228, 201, 161, 159, 68, 39, 148, 119, 188, 73, 92, 22, 23, 86, 93, 38, + 138, 179, 36, 255, 27, 245, 198, 171, 129, 178, 32, 128, 111, 27, 42, 57, 97, 40, 211, 171, 222, 93, 27, 247, 223, + 200, 167, 108, 91, 82, 9, 216, 102, 159, 27, 102, 92, 159, 56, 8, 91, 191, 128, 159, 76, 230, 88, 45, 128, 44, + 244, 213, 71, 125, 46, 35, 185, 27, 200, 131, 106, 97, 250, 54, 170, 131, 70, 88, 150, 204, 143, 51, 178, 27, 85, + 205, 161, 31, 99, 83, 17, 116, 69, 243, 153, 43, 133, 155, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1021, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4054481526627324038" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9277005087184528961" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9164327080267800259" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8d59255ccf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8641704694019637263" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13962250342943315705" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10144002221267723061" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b38446977870150860a1b80be8af9a1202641d9050c9f1b7f2e3aecc0dadec3458d59255ccf1b77ed80a22cddc00f1bc1c3e0b6343656f91b8cc6bc46676fa335ffff", + "cborBytes": [ + 191, 27, 56, 68, 105, 119, 135, 1, 80, 134, 10, 27, 128, 190, 138, 249, 161, 32, 38, 65, 217, 5, 12, 159, 27, 127, + 46, 58, 236, 192, 218, 222, 195, 69, 141, 89, 37, 92, 207, 27, 119, 237, 128, 162, 44, 221, 192, 15, 27, 193, 195, + 224, 182, 52, 54, 86, 249, 27, 140, 198, 188, 70, 103, 111, 163, 53, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1022, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b960599" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17418475762399888213" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf441b960599d8669f1bf1badb6b3a98c35580ffff", + "cborBytes": [191, 68, 27, 150, 5, 153, 216, 102, 159, 27, 241, 186, 219, 107, 58, 152, 195, 85, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1023, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33d8291bb760157a0b377c8e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73124dea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ade4e39fc8cc9ee33d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5814512200832647531" + } + } + } + ] + }, + "cborHex": "bf4c33d8291bb760157a0b377c8e4473124dea4a6ade4e39fc8cc9ee33d31b50b14c0a40ce016bff", + "cborBytes": [ + 191, 76, 51, 216, 41, 27, 183, 96, 21, 122, 11, 55, 124, 142, 68, 115, 18, 77, 234, 74, 106, 222, 78, 57, 252, + 140, 201, 238, 51, 211, 27, 80, 177, 76, 10, 64, 206, 1, 107, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1024, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f1820c018" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6899204991713689544" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e77" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11092459168720664272" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15340477539957483133" + } + }, + { + "_tag": "ByteArray", + "bytearray": "84b4e9f51ba04beae9" + }, + { + "_tag": "ByteArray", + "bytearray": "ea" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfc1c7b5bcfe18" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12898647743691352970" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16013544384275346257" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d15cf0a773431459fc5d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "189193063505753749" + } + }, + { + "_tag": "ByteArray", + "bytearray": "beae5e2eaaff63" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16457781880219775408" + } + } + ] + } + } + ] + }, + "cborHex": "bf451f1820c018418d412c1b5fbee662ebb23fc8426e779f1b99f054d7f51eb6d01bd4e4530b9606267d4984b4e9f51ba04beae941eaff47cfc1c7b5bcfe18d8669f1bb30133c86d9deb8a9f1bde3b89c62baef3514ad15cf0a773431459fc5d1b02a02616c03a769547beae5e2eaaff631be465c96c495c31b0ffffff", + "cborBytes": [ + 191, 69, 31, 24, 32, 192, 24, 65, 141, 65, 44, 27, 95, 190, 230, 98, 235, 178, 63, 200, 66, 110, 119, 159, 27, + 153, 240, 84, 215, 245, 30, 182, 208, 27, 212, 228, 83, 11, 150, 6, 38, 125, 73, 132, 180, 233, 245, 27, 160, 75, + 234, 233, 65, 234, 255, 71, 207, 193, 199, 181, 188, 254, 24, 216, 102, 159, 27, 179, 1, 51, 200, 109, 157, 235, + 138, 159, 27, 222, 59, 137, 198, 43, 174, 243, 81, 74, 209, 92, 240, 167, 115, 67, 20, 89, 252, 93, 27, 2, 160, + 38, 22, 192, 58, 118, 149, 71, 190, 174, 94, 46, 170, 255, 99, 27, 228, 101, 201, 108, 73, 92, 49, 176, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1025, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b26bc01f988077d380047" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dc89f864f1e12a58" + } + ] + } + } + ] + }, + "cborHex": "bf4b4b26bc01f988077d3800479f48dc89f864f1e12a58ffff", + "cborBytes": [ + 191, 75, 75, 38, 188, 1, 249, 136, 7, 125, 56, 0, 71, 159, 72, 220, 137, 248, 100, 241, 225, 42, 88, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1026, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "13abae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18287072989373388121" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2989274971012904532" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17537193633944602845" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3831902404763555229" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15551501478874154888" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14561338424888906952" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6139811248423459553" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17449604945555886753" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14477106615878872373" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17630716396498372795" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "894332027055732371" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2754784945920830085" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3801726128393622676" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14311287377010894882" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bf2742e0df8b" + } + ] + } + } + ] + }, + "cborHex": "bf05d8669f1bfffffffffffffffa9f4313abae1bfdc8bbfea93dd559ffff0cbf1b297c09bf8f30b6541bf360a0b1ac8288dd1b352da6ef51e5959d1bd7d208331c4187881bca144425edbfd4c81b5534fdcce23a5ae11bf229733efac212a11bc8e903c39eeaed351bf4ace326acf0c8bb1b0c694e3d7fe97693ff131b263af65016346a851b34c271c57839149441cd1bfffffffffffffff8d8669f1bc69be80b814428229f46bf2742e0df8bffffff", + "cborBytes": [ + 191, 5, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 67, 19, 171, 174, 27, 253, 200, 187, 254, + 169, 61, 213, 89, 255, 255, 12, 191, 27, 41, 124, 9, 191, 143, 48, 182, 84, 27, 243, 96, 160, 177, 172, 130, 136, + 221, 27, 53, 45, 166, 239, 81, 229, 149, 157, 27, 215, 210, 8, 51, 28, 65, 135, 136, 27, 202, 20, 68, 37, 237, + 191, 212, 200, 27, 85, 52, 253, 204, 226, 58, 90, 225, 27, 242, 41, 115, 62, 250, 194, 18, 161, 27, 200, 233, 3, + 195, 158, 234, 237, 53, 27, 244, 172, 227, 38, 172, 240, 200, 187, 27, 12, 105, 78, 61, 127, 233, 118, 147, 255, + 19, 27, 38, 58, 246, 80, 22, 52, 106, 133, 27, 52, 194, 113, 197, 120, 57, 20, 148, 65, 205, 27, 255, 255, 255, + 255, 255, 255, 255, 248, 216, 102, 159, 27, 198, 155, 232, 11, 129, 68, 40, 34, 159, 70, 191, 39, 66, 224, 223, + 139, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1027, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "305826235072149733" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8579680028062233214" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1364656672034648554" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1422072529678204928" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b33db3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6798968856269780404" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ea8742b3ce1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10683173988735323237" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "08f79e5241956f7070be11" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "472055b84ceb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b0b87812e396db81d74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11dde662ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7764e79bbced1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73e2d759273568" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5064147328646742002" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bae0be645fba676f325cd8e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f7ca7aab3fc0dd306e5" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b043e8357287878e51b771125874729b27e1b12f03c0350fdf1ea9f1b13bc376e684f800043b33db3ff1b5e5aca26fce775b4469ea8742b3ce11b9442422410430c65bf4b08f79e5241956f7070be1146472055b84ceb4a0b0b87812e396db81d7441af4511dde662ff47f7764e79bbced14773e2d7592735681b4647772a163b7ff24cbae0be645fba676f325cd8e84a4f7ca7aab3fc0dd306e5ffff", + "cborBytes": [ + 191, 27, 4, 62, 131, 87, 40, 120, 120, 229, 27, 119, 17, 37, 135, 71, 41, 178, 126, 27, 18, 240, 60, 3, 80, 253, + 241, 234, 159, 27, 19, 188, 55, 110, 104, 79, 128, 0, 67, 179, 61, 179, 255, 27, 94, 90, 202, 38, 252, 231, 117, + 180, 70, 158, 168, 116, 43, 60, 225, 27, 148, 66, 66, 36, 16, 67, 12, 101, 191, 75, 8, 247, 158, 82, 65, 149, 111, + 112, 112, 190, 17, 70, 71, 32, 85, 184, 76, 235, 74, 11, 11, 135, 129, 46, 57, 109, 184, 29, 116, 65, 175, 69, 17, + 221, 230, 98, 255, 71, 247, 118, 78, 121, 187, 206, 209, 71, 115, 226, 215, 89, 39, 53, 104, 27, 70, 71, 119, 42, + 22, 59, 127, 242, 76, 186, 224, 190, 100, 95, 186, 103, 111, 50, 92, 216, 232, 74, 79, 124, 167, 170, 179, 252, + 13, 211, 6, 229, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1028, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7903792615784940064" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2e67301f8356ccde7e6da493" + }, + { + "_tag": "ByteArray", + "bytearray": "328779" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11406711898927574107" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0303" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd96fe01" + } + ] + } + } + ] + }, + "cborHex": "bf00d8669f1bffffffffffffffee9f1b6dafe9820a3782204c2e67301f8356ccde7e6da49343328779ffff121b9e4cc80966ccac5b420303d905029f1bfffffffffffffffc44fd96fe01ffff", + "cborBytes": [ + 191, 0, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 27, 109, 175, 233, 130, 10, 55, 130, 32, + 76, 46, 103, 48, 31, 131, 86, 204, 222, 126, 109, 164, 147, 67, 50, 135, 121, 255, 255, 18, 27, 158, 76, 200, 9, + 102, 204, 172, 91, 66, 3, 3, 217, 5, 2, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 68, 253, 150, 254, 1, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1029, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc0206fd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8507f0b8" + } + ] + } + } + ] + }, + "cborHex": "bf44fc0206fd9f448507f0b8ffff", + "cborBytes": [191, 68, 252, 2, 6, 253, 159, 68, 133, 7, 240, 184, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1030, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81990021399a22e653ce" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1474259882980242507" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06f8" + }, + { + "_tag": "ByteArray", + "bytearray": "591cb6a061" + } + ] + } + } + ] + }, + "cborHex": "bf124a81990021399a22e653ce1bfffffffffffffff79f1b14759f8d77a5744b4206f845591cb6a061ffff", + "cborBytes": [ + 191, 18, 74, 129, 153, 0, 33, 57, 154, 34, 230, 83, 206, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 27, 20, + 117, 159, 141, 119, 165, 116, 75, 66, 6, 248, 69, 89, 28, 182, 160, 97, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1031, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2635028005556371600" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13919778634948391353" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ecc07f9f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12658013280112544325" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8422084088725916506" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16172771786964394241" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5567279838660481624" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3402029414222870840" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7348529115376114905" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3953485086005252476" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17823250965645787716" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11103013260110664267" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5a06fa9b763" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16328474733330146991" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7e39" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18116449446347334203" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1dc5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6285442901320134526" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88e63bead16e48da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c74b2488dfdefd65d180" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfe2da0c7c31" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15926648831492385439" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f287358d2d27c37de6f7d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef87a345cb01bcfa6a" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b249180029464c090d8669f1bc12cfceb182bb1b99f44ecc07f9f1bafaa4c0363490a451b74e140db48fa4b5a1be0713a40d378e1011b4d42f3843c8d5258ffff1b2f366fba3e2f3938d8669f1b65fb384bd79bdcd980ff1b36dd99bd4025d17cd8669f1bf758e85255f4824480ff1b9a15d3bbd959124b46d5a06fa9b7631be29a65420c15a6af9f427e39ff1bfb6a8ec950dae23bbf421dc51b573a61045d2fef7e4888e63bead16e48da4ac74b2488dfdefd65d18046dfe2da0c7c311bdd06d2baaf7e6a9f4bf287358d2d27c37de6f7d249ef87a345cb01bcfa6affff", + "cborBytes": [ + 191, 27, 36, 145, 128, 2, 148, 100, 192, 144, 216, 102, 159, 27, 193, 44, 252, 235, 24, 43, 177, 185, 159, 68, + 236, 192, 127, 159, 27, 175, 170, 76, 3, 99, 73, 10, 69, 27, 116, 225, 64, 219, 72, 250, 75, 90, 27, 224, 113, 58, + 64, 211, 120, 225, 1, 27, 77, 66, 243, 132, 60, 141, 82, 88, 255, 255, 27, 47, 54, 111, 186, 62, 47, 57, 56, 216, + 102, 159, 27, 101, 251, 56, 75, 215, 155, 220, 217, 128, 255, 27, 54, 221, 153, 189, 64, 37, 209, 124, 216, 102, + 159, 27, 247, 88, 232, 82, 85, 244, 130, 68, 128, 255, 27, 154, 21, 211, 187, 217, 89, 18, 75, 70, 213, 160, 111, + 169, 183, 99, 27, 226, 154, 101, 66, 12, 21, 166, 175, 159, 66, 126, 57, 255, 27, 251, 106, 142, 201, 80, 218, + 226, 59, 191, 66, 29, 197, 27, 87, 58, 97, 4, 93, 47, 239, 126, 72, 136, 230, 59, 234, 209, 110, 72, 218, 74, 199, + 75, 36, 136, 223, 222, 253, 101, 209, 128, 70, 223, 226, 218, 12, 124, 49, 27, 221, 6, 210, 186, 175, 126, 106, + 159, 75, 242, 135, 53, 141, 45, 39, 195, 125, 230, 247, 210, 73, 239, 135, 163, 69, 203, 1, 188, 250, 106, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1032, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6338896914650952441" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e036a30c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7432437372454895280" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cbd325abaded" + }, + { + "_tag": "ByteArray", + "bytearray": "31f4" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8429048015320832685" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8412140247241448240" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12084321897955110506" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9067064954695086812" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18434369412226533457" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a8a5731bb3c4a3aec2ab6" + } + } + ] + }, + "cborHex": "bf1b57f84928b196f2f944e036a30c1b672552695882feb09f46cbd325abaded4231f4ff1b74f9fe82cbe8daad1b74bdecfc4597db301ba7b422bd9f16ae6a1b7dd4af8973fe72dc1bffd4094f9a16c8514b8a8a5731bb3c4a3aec2ab6ff", + "cborBytes": [ + 191, 27, 87, 248, 73, 40, 177, 150, 242, 249, 68, 224, 54, 163, 12, 27, 103, 37, 82, 105, 88, 130, 254, 176, 159, + 70, 203, 211, 37, 171, 173, 237, 66, 49, 244, 255, 27, 116, 249, 254, 130, 203, 232, 218, 173, 27, 116, 189, 236, + 252, 69, 151, 219, 48, 27, 167, 180, 34, 189, 159, 22, 174, 106, 27, 125, 212, 175, 137, 115, 254, 114, 220, 27, + 255, 212, 9, 79, 154, 22, 200, 81, 75, 138, 138, 87, 49, 187, 60, 74, 58, 236, 42, 182, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1033, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f05d9ff02f7021ffa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00fe04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "745d66" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0cbf493f05d9ff02f7021ffa4300fe0443745d6607ffff", + "cborBytes": [191, 12, 191, 73, 63, 5, 217, 255, 2, 247, 2, 31, 250, 67, 0, 254, 4, 67, 116, 93, 102, 7, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1034, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9966808535916143487" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11711472449295633106" + } + } + } + ] + }, + "cborHex": "bf1b8a51378e979ce37f1ba2878224810a4ad2ff", + "cborBytes": [191, 27, 138, 81, 55, 142, 151, 156, 227, 127, 27, 162, 135, 130, 36, 129, 10, 74, 210, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1035, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5269751649118871810" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1382363095830260322" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16841504213400713133" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3740066144645385340" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4926541a6f95" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6219053754288233937" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10428577798546083455" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15305774927808972745" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4104203476715025859" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9154827845116533966" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fffc1fbef30ae99b34" + } + } + ] + }, + "cborHex": "bf1b4921eb345c426102bf1b132f23e95d926a621be9b90ada1afe77ad1b33e76257c40d8c7c464926541a6f951b564e84708768ddd11b90b9c0413add4e7f1bd4690934102247c91b38f50f512b85b5c3ff1b7f0c7b6bb8069cce49fffc1fbef30ae99b34ff", + "cborBytes": [ + 191, 27, 73, 33, 235, 52, 92, 66, 97, 2, 191, 27, 19, 47, 35, 233, 93, 146, 106, 98, 27, 233, 185, 10, 218, 26, + 254, 119, 173, 27, 51, 231, 98, 87, 196, 13, 140, 124, 70, 73, 38, 84, 26, 111, 149, 27, 86, 78, 132, 112, 135, + 104, 221, 209, 27, 144, 185, 192, 65, 58, 221, 78, 127, 27, 212, 105, 9, 52, 16, 34, 71, 201, 27, 56, 245, 15, 81, + 43, 133, 181, 195, 255, 27, 127, 12, 123, 107, 184, 6, 156, 206, 73, 255, 252, 31, 190, 243, 10, 233, 155, 52, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1036, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5177988529704115655" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41d37fb4ac33e93633" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad9a99ab5005690b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "120839dc" + } + ] + } + } + ] + }, + "cborHex": "bf1b47dbe922340f9dc7804941d37fb4ac33e93633a048ad9a99ab5005690b9f44120839dcffff", + "cborBytes": [ + 191, 27, 71, 219, 233, 34, 52, 15, 157, 199, 128, 73, 65, 211, 127, 180, 172, 51, 233, 54, 51, 160, 72, 173, 154, + 153, 171, 80, 5, 105, 11, 159, 68, 18, 8, 57, 220, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1037, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2028561820478351511" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1609016603287137254" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "666843331558293612" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15020563740207807402" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3178601789493543510" + } + } + } + ] + }, + "cborHex": "bf1b1c26e63a5a882897d8669f1b1654601364a2abe69f1b09411a7a1a5ec06cffff1bd073c323ad32fbaa1b2c1ca97c912f0256ff", + "cborBytes": [ + 191, 27, 28, 38, 230, 58, 90, 136, 40, 151, 216, 102, 159, 27, 22, 84, 96, 19, 100, 162, 171, 230, 159, 27, 9, 65, + 26, 122, 26, 94, 192, 108, 255, 255, 27, 208, 115, 195, 35, 173, 50, 251, 170, 27, 44, 28, 169, 124, 145, 47, 2, + 86, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1038, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "934ca174ac2adfce" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12949222306112493051" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15497762884796145565" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15486577275467126326" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1381071023699649561" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db1ea540ec1989e76f8df46e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2319404515260554149" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de0506" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33817137" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df31eae3c5da12" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "746066778098189532" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13800181250180186956" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1694730248536942281" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17197407650197917283" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7047551924868108451" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9be2dc19ebc45e6413e7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8429432468346138118" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "183cb9b9182acb12" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8495268802950436208" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45ecaec2c9deda123a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8693919412687985438" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd868ee0d590" + } + } + ] + } + } + ] + }, + "cborHex": "bf48934ca174ac2adfced8669f1bb3b4e114596655fb9f1bd7131d3ba981df9d1bd6eb5ffb0adad6361b132a8cc76133e419ffff4cdb1ea540ec1989e76f8df46e1b20302e1e2e8adba543de0506443381713747df31eae3c5da12bf1b0a5a8fc8274344dc1bbf8417bb04ff034c1b1784e42e962766c91beea977245fa1ce631b61cdef22d9e250a34a9be2dc19ebc45e6413e71b74fb5c2b3dea6e0648183cb9b9182acb121b75e541f7675195704945ecaec2c9deda123a1b78a701a4bb23db1e46cd868ee0d590ffff", + "cborBytes": [ + 191, 72, 147, 76, 161, 116, 172, 42, 223, 206, 216, 102, 159, 27, 179, 180, 225, 20, 89, 102, 85, 251, 159, 27, + 215, 19, 29, 59, 169, 129, 223, 157, 27, 214, 235, 95, 251, 10, 218, 214, 54, 27, 19, 42, 140, 199, 97, 51, 228, + 25, 255, 255, 76, 219, 30, 165, 64, 236, 25, 137, 231, 111, 141, 244, 110, 27, 32, 48, 46, 30, 46, 138, 219, 165, + 67, 222, 5, 6, 68, 51, 129, 113, 55, 71, 223, 49, 234, 227, 197, 218, 18, 191, 27, 10, 90, 143, 200, 39, 67, 68, + 220, 27, 191, 132, 23, 187, 4, 255, 3, 76, 27, 23, 132, 228, 46, 150, 39, 102, 201, 27, 238, 169, 119, 36, 95, + 161, 206, 99, 27, 97, 205, 239, 34, 217, 226, 80, 163, 74, 155, 226, 220, 25, 235, 196, 94, 100, 19, 231, 27, 116, + 251, 92, 43, 61, 234, 110, 6, 72, 24, 60, 185, 185, 24, 42, 203, 18, 27, 117, 229, 65, 247, 103, 81, 149, 112, 73, + 69, 236, 174, 194, 201, 222, 218, 18, 58, 27, 120, 167, 1, 164, 187, 35, 219, 30, 70, 205, 134, 142, 224, 213, + 144, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1039, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11118926012586936138" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5483252453565009950" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4223988c6379caf89ea9e5" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "609e45f1599375c8fe7190" + } + } + ] + }, + "cborHex": "bf101b9a4e5c4c4018474a1b4c186d0e1488101e9f4b4223988c6379caf89ea9e5ff1bfffffffffffffffd4b609e45f1599375c8fe7190ff", + "cborBytes": [ + 191, 16, 27, 154, 78, 92, 76, 64, 24, 71, 74, 27, 76, 24, 109, 14, 20, 136, 16, 30, 159, 75, 66, 35, 152, 140, 99, + 121, 202, 248, 158, 169, 229, 255, 27, 255, 255, 255, 255, 255, 255, 255, 253, 75, 96, 158, 69, 241, 89, 147, 117, + 200, 254, 113, 144, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1040, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11712338946621991544" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9107fb47c600" + } + } + ] + }, + "cborHex": "bf0c1bffffffffffffffef1ba28a9637a2606a78469107fb47c600ff", + "cborBytes": [ + 191, 12, 27, 255, 255, 255, 255, 255, 255, 255, 239, 27, 162, 138, 150, 55, 162, 96, 106, 120, 70, 145, 7, 251, + 71, 198, 0, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1041, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17994806813628969427" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13511093604566472821" + } + } + } + ] + }, + "cborHex": "bf1bf9ba6574d82231d31bbb810c0c6b3c9875ff", + "cborBytes": [191, 27, 249, 186, 101, 116, 216, 34, 49, 211, 27, 187, 129, 12, 12, 107, 60, 152, 117, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1042, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "747d8b84" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12483078076003305540" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8acf8d50b87904" + } + } + ] + }, + "cborHex": "bf44747d8b841bad3ccd5f37a4c84442c7f8478acf8d50b87904ff", + "cborBytes": [ + 191, 68, 116, 125, 139, 132, 27, 173, 60, 205, 95, 55, 164, 200, 68, 66, 199, 248, 71, 138, 207, 141, 80, 184, + 121, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1043, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "73f4c321641783b58c1935d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16475815544437804372" + } + } + } + ] + }, + "cborHex": "bf4c73f4c321641783b58c1935d71be4a5daf1ef130d54ff", + "cborBytes": [ + 191, 76, 115, 244, 195, 33, 100, 23, 131, 181, 140, 25, 53, 215, 27, 228, 165, 218, 241, 239, 19, 13, 84, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1044, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "392699993122928801" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39216b4f058abb9b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8456616257840346581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15987116781036037858" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10577328425328514419" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b7f5bd1f877ab63128f18cbd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17237854714868296935" + } + }, + { + "_tag": "ByteArray", + "bytearray": "108f60cdee" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14846973082855046179" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16773873544534316465" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "999698862154672591" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12856363881311020731" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14015402964712306760" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b057326902963f8a14839216b4f058abb9b1b755befae725df5d51bdddda6024c56e6e21b92ca3829685915739f4cb7f5bd1f877ab63128f18cbd1bef39298879846ce745108f60cdeeff1bce0b0b5b315c7c239f1be8c8c51df14a55b11b0ddfa4d1891769cf1bb26afad588b4a6bb1bc280b6bd57a23848ffff", + "cborBytes": [ + 191, 27, 5, 115, 38, 144, 41, 99, 248, 161, 72, 57, 33, 107, 79, 5, 138, 187, 155, 27, 117, 91, 239, 174, 114, 93, + 245, 213, 27, 221, 221, 166, 2, 76, 86, 230, 226, 27, 146, 202, 56, 41, 104, 89, 21, 115, 159, 76, 183, 245, 189, + 31, 135, 122, 182, 49, 40, 241, 140, 189, 27, 239, 57, 41, 136, 121, 132, 108, 231, 69, 16, 143, 96, 205, 238, + 255, 27, 206, 11, 11, 91, 49, 92, 124, 35, 159, 27, 232, 200, 197, 29, 241, 74, 85, 177, 27, 13, 223, 164, 209, + 137, 23, 105, 207, 27, 178, 106, 250, 213, 136, 180, 166, 187, 27, 194, 128, 182, 189, 87, 162, 56, 72, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1045, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0005" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a36e5cb38d03033ab972d1" + }, + { + "_tag": "ByteArray", + "bytearray": "f807b75c020416e2" + }, + { + "_tag": "ByteArray", + "bytearray": "22d423eaf783a5dac0" + } + ] + } + } + ] + }, + "cborHex": "bf4200059f4ba36e5cb38d03033ab972d148f807b75c020416e24922d423eaf783a5dac0ffff", + "cborBytes": [ + 191, 66, 0, 5, 159, 75, 163, 110, 92, 179, 141, 3, 3, 58, 185, 114, 209, 72, 248, 7, 183, 92, 2, 4, 22, 226, 73, + 34, 212, 35, 234, 247, 131, 165, 218, 192, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1046, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5cf5e4196c659cfc234189e0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b0c6e13d263e82222ee840c" + } + } + ] + }, + "cborHex": "bf4c5cf5e4196c659cfc234189e04c2b0c6e13d263e82222ee840cff", + "cborBytes": [ + 191, 76, 92, 245, 228, 25, 108, 101, 156, 252, 35, 65, 137, 224, 76, 43, 12, 110, 19, 210, 99, 232, 34, 34, 238, + 132, 12, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1047, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0226ff07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "924a55f8017e7e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5721ee0f7ca4ffdd5c872c35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0473" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c0b7ca97c28b44c70806d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14469202609645562952" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12995239126004538033" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b922dcb92cba50e439" + }, + { + "_tag": "ByteArray", + "bytearray": "f06e89e0cfcf23fc79706ac7" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c63a60" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1807306" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d884b73f873dcc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb2e015d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7a3820c6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5479713018684852772" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e7ce2f99bb2cd33844a3d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4450412508719474272" + } + } + ] + } + } + ] + }, + "cborHex": "bf440226ff0747924a55f8017e7e4c5721ee0f7ca4ffdd5c872c354204734b7c0b7ca97c28b44c70806dd87f9f1bc8ccef1cc3142c481bb4585d2224c21ab149b922dcb92cba50e4394cf06e89e0cfcf23fc79706ac7ff43c63a608044d180730647d884b73f873dcc44eb2e015dd905029f447a3820c61b4c0bd9f52dcb4a244be7ce2f99bb2cd33844a3d01b3dc30a98ee2de660ffff", + "cborBytes": [ + 191, 68, 2, 38, 255, 7, 71, 146, 74, 85, 248, 1, 126, 126, 76, 87, 33, 238, 15, 124, 164, 255, 221, 92, 135, 44, + 53, 66, 4, 115, 75, 124, 11, 124, 169, 124, 40, 180, 76, 112, 128, 109, 216, 127, 159, 27, 200, 204, 239, 28, 195, + 20, 44, 72, 27, 180, 88, 93, 34, 36, 194, 26, 177, 73, 185, 34, 220, 185, 44, 186, 80, 228, 57, 76, 240, 110, 137, + 224, 207, 207, 35, 252, 121, 112, 106, 199, 255, 67, 198, 58, 96, 128, 68, 209, 128, 115, 6, 71, 216, 132, 183, + 63, 135, 61, 204, 68, 235, 46, 1, 93, 217, 5, 2, 159, 68, 122, 56, 32, 198, 27, 76, 11, 217, 245, 45, 203, 74, 36, + 75, 231, 206, 47, 153, 187, 44, 211, 56, 68, 163, 208, 27, 61, 195, 10, 152, 238, 45, 230, 96, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1048, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "064a07" + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffec9f43064a07ffff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 67, 6, 74, 7, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1049, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4cdb2df3e983" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "55865499799517115" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10742602986839209548" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + } + } + ] + }, + "cborHex": "bf02464cdb2df3e9831b00c6796046bff7bba01bfffffffffffffffdd8669f1b9515647ff199f64c9f0cffffff", + "cborBytes": [ + 191, 2, 70, 76, 219, 45, 243, 233, 131, 27, 0, 198, 121, 96, 70, 191, 247, 187, 160, 27, 255, 255, 255, 255, 255, + 255, 255, 253, 216, 102, 159, 27, 149, 21, 100, 127, 241, 153, 246, 76, 159, 12, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1050, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f686be1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5093829170344544979" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2354149816657721473" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5112598284280236286" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18237273815885394648" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15253197469850753480" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a89cfe29193d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3a7ba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3360" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcfb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55be640c9e" + } + } + ] + }, + "cborHex": "bf446f686be1bf1b46b0eaa464e8cad31b20ab9ec911ef38811b46f3990d45cb88fe1bfd17cfe90b61b2d81bd3ae3e48af5759c841d2ff46a89cfe29193d416a43d3a7ba42336042dcfb4555be640c9eff", + "cborBytes": [ + 191, 68, 111, 104, 107, 225, 191, 27, 70, 176, 234, 164, 100, 232, 202, 211, 27, 32, 171, 158, 201, 17, 239, 56, + 129, 27, 70, 243, 153, 13, 69, 203, 136, 254, 27, 253, 23, 207, 233, 11, 97, 178, 216, 27, 211, 174, 62, 72, 175, + 87, 89, 200, 65, 210, 255, 70, 168, 156, 254, 41, 25, 61, 65, 106, 67, 211, 167, 186, 66, 51, 96, 66, 220, 251, + 69, 85, 190, 100, 12, 158, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1051, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a543dd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17457228471837934950" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db5943073574841d58007853" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17481167176763556307" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "25732aef03e6" + }, + { + "_tag": "ByteArray", + "bytearray": "aaf4f4cc681530e2f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11886833316908955599" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15845213380829496876" + } + } + ] + } + } + ] + }, + "cborHex": "bf43a543dd1bf24488cd82bc45664cdb5943073574841d58007853d8669f1bf29994ed9635c1d39f4625732aef03e649aaf4f4cc681530e2f81ba4f683ec2ea2f7cf1bdbe5819e4a9bc62cffffff", + "cborBytes": [ + 191, 67, 165, 67, 221, 27, 242, 68, 136, 205, 130, 188, 69, 102, 76, 219, 89, 67, 7, 53, 116, 132, 29, 88, 0, 120, + 83, 216, 102, 159, 27, 242, 153, 148, 237, 150, 53, 193, 211, 159, 70, 37, 115, 42, 239, 3, 230, 73, 170, 244, + 244, 204, 104, 21, 48, 226, 248, 27, 164, 246, 131, 236, 46, 162, 247, 207, 27, 219, 229, 129, 158, 74, 155, 198, + 44, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1052, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8772060007264543645" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55d12d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9945427035579017378" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10805626613687491915" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3be8c12dcfcced47d506" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "32d1f6d6e22d4bfd924a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11639404468184473670" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b79bc9e19a969e39d4355d12d1b8a0541321b40e8a21b95f54c278c599d4b4a3be8c12dcfcced47d506bf4a32d1f6d6e22d4bfd924a1ba18778b2133ae046ffff", + "cborBytes": [ + 191, 27, 121, 188, 158, 25, 169, 105, 227, 157, 67, 85, 209, 45, 27, 138, 5, 65, 50, 27, 64, 232, 162, 27, 149, + 245, 76, 39, 140, 89, 157, 75, 74, 59, 232, 193, 45, 207, 204, 237, 71, 213, 6, 191, 74, 50, 209, 246, 214, 226, + 45, 75, 253, 146, 74, 27, 161, 135, 120, 178, 19, 58, 224, 70, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1053, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5453385197704995055" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e9a1b1a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8223630064459292468" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4676016721857331199" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4157378278824098005" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90bcd9fd73670898" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9fa7beed0b89ba448ad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed0c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "66efda4f1ce7c1c0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7007614135085504531" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4610213379726502593" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17516889103773409432" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4bae50f1ac9460ef444e9a1b1a1b722033f914519f34d8669f1b40e48c6f1617bfff9f1b39b1f984923c38d5ffff4890bcd9fd736708984ad9fa7beed0b89ba448ad42ed0c9f4866efda4f1ce7c1c01b61400bed8cc718131b3ffac4a49559eac11bf3187dd4d8532098ffff", + "cborBytes": [ + 191, 27, 75, 174, 80, 241, 172, 148, 96, 239, 68, 78, 154, 27, 26, 27, 114, 32, 51, 249, 20, 81, 159, 52, 216, + 102, 159, 27, 64, 228, 140, 111, 22, 23, 191, 255, 159, 27, 57, 177, 249, 132, 146, 60, 56, 213, 255, 255, 72, + 144, 188, 217, 253, 115, 103, 8, 152, 74, 217, 250, 123, 238, 208, 184, 155, 164, 72, 173, 66, 237, 12, 159, 72, + 102, 239, 218, 79, 28, 231, 193, 192, 27, 97, 64, 11, 237, 140, 199, 24, 19, 27, 63, 250, 196, 164, 149, 89, 234, + 193, 27, 243, 24, 125, 212, 216, 83, 32, 152, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1054, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "790105979874532794" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1918309626800801382" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16012002952706294519" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3695022130738946829" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15699561102406102810" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15972745789769261114" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3f3a4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac6c6da0cea26d59a411409a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca8617a386d9ca" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "809562217897728982" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1814297272028187008" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "06e6c64fdbba" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4071136552515268576" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11237448319898827349" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7150629078926578969" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7006153845495939739" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6452577039095382877" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "956153258809082190" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0af70533d9555dbabf1b1a9f347122ac86661bde360fd9aa9082f71b33475b0d03e6e30d1bd9e00ba48e74af1a1bddaa97ab26d0203a43c3f3a44cac6c6da0cea26d59a411409a47ca8617a386d9caff1b0b3c248c455f1bd6a01b192dadc1a03349809f4606e6c64fdbbaff1b387f951fecc7efe09f1b9bf36fb559613a55ff1b633c2342f9ff5519d8669f1b613adbcd6285c29b9f1b598c28a13d1f435d1b0d44f052ae25c14effffff", + "cborBytes": [ + 191, 27, 10, 247, 5, 51, 217, 85, 93, 186, 191, 27, 26, 159, 52, 113, 34, 172, 134, 102, 27, 222, 54, 15, 217, + 170, 144, 130, 247, 27, 51, 71, 91, 13, 3, 230, 227, 13, 27, 217, 224, 11, 164, 142, 116, 175, 26, 27, 221, 170, + 151, 171, 38, 208, 32, 58, 67, 195, 243, 164, 76, 172, 108, 109, 160, 206, 162, 109, 89, 164, 17, 64, 154, 71, + 202, 134, 23, 163, 134, 217, 202, 255, 27, 11, 60, 36, 140, 69, 95, 27, 214, 160, 27, 25, 45, 173, 193, 160, 51, + 73, 128, 159, 70, 6, 230, 198, 79, 219, 186, 255, 27, 56, 127, 149, 31, 236, 199, 239, 224, 159, 27, 155, 243, + 111, 181, 89, 97, 58, 85, 255, 27, 99, 60, 35, 66, 249, 255, 85, 25, 216, 102, 159, 27, 97, 58, 219, 205, 98, 133, + 194, 155, 159, 27, 89, 140, 40, 161, 61, 31, 67, 93, 27, 13, 68, 240, 82, 174, 37, 193, 78, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1055, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2296734158334017808" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7370097780291627302" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13915851147258106190" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63430e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5126429678140383453" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f22d029f5891f819cf979837" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c53479a740779af" + } + } + ] + }, + "cborHex": "bf412ad8669f1b1fdfa38c630141109f1b6647d8e1fa2d69261bc11f08e39b88114effff4363430e1b4724bca19b93e0dd4cf22d029f5891f819cf979837480c53479a740779afff", + "cborBytes": [ + 191, 65, 42, 216, 102, 159, 27, 31, 223, 163, 140, 99, 1, 65, 16, 159, 27, 102, 71, 216, 225, 250, 45, 105, 38, + 27, 193, 31, 8, 227, 155, 136, 17, 78, 255, 255, 67, 99, 67, 14, 27, 71, 36, 188, 161, 155, 147, 224, 221, 76, + 242, 45, 2, 159, 88, 145, 248, 25, 207, 151, 152, 55, 72, 12, 83, 71, 154, 116, 7, 121, 175, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1056, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1991682724155554292" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3ed50504" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7475930488501318862" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a325761f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cb04b90f11fbed294" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a8c665e108d492bf82d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97bcb430f5892900f333" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99a07fff4cfc165c33" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11057672925916732017" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9b32e1b0f35a520" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18047683362813157795" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10924747514459202640" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10417044093178309922" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17507578782801990737" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1f7f07ba4ac21a63a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14371383521826866310" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16865854776239965534" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ea6d8b5506fbe2e0173" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca9fc039026b" + } + } + ] + }, + "cborHex": "bf039f1b1ba3e0e29e92f9f4443ed50504ff1b67bfd72b8ca234cebf450a325761f7499cb04b90f11fbed2944a2a8c665e108d492bf82d4a97bcb430f5892900f3334999a07fff4cfc165c331b9974bef0a7b89a7148a9b32e1b0f35a5201bfa764065d334a1a3ff1b979c7ffb8c2c2450bf1b9090c6692f796d221bf2f76a24d214145149b1f7f07ba4ac21a63a1bc771692b95648486ff1bea0f8d8f531bc55e4a1ea6d8b5506fbe2e01731bffffffffffffffff46ca9fc039026bff", + "cborBytes": [ + 191, 3, 159, 27, 27, 163, 224, 226, 158, 146, 249, 244, 68, 62, 213, 5, 4, 255, 27, 103, 191, 215, 43, 140, 162, + 52, 206, 191, 69, 10, 50, 87, 97, 247, 73, 156, 176, 75, 144, 241, 31, 190, 210, 148, 74, 42, 140, 102, 94, 16, + 141, 73, 43, 248, 45, 74, 151, 188, 180, 48, 245, 137, 41, 0, 243, 51, 73, 153, 160, 127, 255, 76, 252, 22, 92, + 51, 27, 153, 116, 190, 240, 167, 184, 154, 113, 72, 169, 179, 46, 27, 15, 53, 165, 32, 27, 250, 118, 64, 101, 211, + 52, 161, 163, 255, 27, 151, 156, 127, 251, 140, 44, 36, 80, 191, 27, 144, 144, 198, 105, 47, 121, 109, 34, 27, + 242, 247, 106, 36, 210, 20, 20, 81, 73, 177, 247, 240, 123, 164, 172, 33, 166, 58, 27, 199, 113, 105, 43, 149, + 100, 132, 134, 255, 27, 234, 15, 141, 143, 83, 27, 197, 94, 74, 30, 166, 216, 181, 80, 111, 190, 46, 1, 115, 27, + 255, 255, 255, 255, 255, 255, 255, 255, 70, 202, 159, 192, 57, 2, 107, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1057, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "92123a13d82dbfef020e16" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2936247750670492516" + } + } + } + ] + }, + "cborHex": "bf4b92123a13d82dbfef020e161b28bfa5c5b7412364ff", + "cborBytes": [191, 75, 146, 18, 58, 19, 216, 45, 191, 239, 2, 14, 22, 27, 40, 191, 165, 197, 183, 65, 35, 100, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1058, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8501104751218788160" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18392468952954663895" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9642970095295083900" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9475465111781266807" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15244237258000280849" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10469524417906220960" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c031af0707ca07" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14663c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "011ab725e422027f6955" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "341049190017278361" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b75f9fdbafec80740d8669f1bff3f2d10b34373d79f1b85d2b63605c7357cffff1b837f9d50e55455771bd38e6904cae1ad111b914b38fcf8941fa09f47c031af0707ca07ff4314663c9f4a011ab725e422027f69551b04bba66e6dea2199ffff", + "cborBytes": [ + 191, 27, 117, 249, 253, 186, 254, 200, 7, 64, 216, 102, 159, 27, 255, 63, 45, 16, 179, 67, 115, 215, 159, 27, 133, + 210, 182, 54, 5, 199, 53, 124, 255, 255, 27, 131, 127, 157, 80, 229, 84, 85, 119, 27, 211, 142, 105, 4, 202, 225, + 173, 17, 27, 145, 75, 56, 252, 248, 148, 31, 160, 159, 71, 192, 49, 175, 7, 7, 202, 7, 255, 67, 20, 102, 60, 159, + 74, 1, 26, 183, 37, 228, 34, 2, 127, 105, 85, 27, 4, 187, 166, 110, 109, 234, 33, 153, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1059, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2883157674927518050" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "99c99241c09298dab6df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13396072031884179633" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce7253b395" + }, + { + "_tag": "ByteArray", + "bytearray": "09ec42" + }, + { + "_tag": "ByteArray", + "bytearray": "815bed" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4525859985609371887" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3515116905970637387" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15604049120369606050" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4804304196763834564" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76b9eae0669f9e5fb4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7209082060319192495" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6025816444799997463" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7686183644670752970" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6052550903141188114" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9074521349102135357" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e65badc18992c1895bf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11855148797198725138" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e2ae3278aa8" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5853144786733034541" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9769763771121534178" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6683231644452770933" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6007538428530672925" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11682154139619355369" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14833082151985395919" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4515100740072980164" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c266c7c657d" + } + ] + } + } + ] + }, + "cborHex": "bf1b280308a1357ef1629f4a99c99241c09298dab6df1bb9e868899e0078b145ce7253b3954309ec4243815bedff1b3ecf15ad8966b0efbf1b30c83433bc599a4b1bd88cb8004d607da21b42ac51367106d8c44976b9eae0669f9e5fb41b640bcdf041f775af1b53a000216202d6171b6aaacf4d3b0478ca1b53fefafa86b342121b7def2d168fee683d4a2e65badc18992c1895bf1ba485f305106df012465e2ae3278aa8ff1b513a8c2c1826ec2dd8669f1b87952c632d2e04e280ff1b5cbf9bc57741d4751b535f105f1714451d1ba21f594b975eeae99f1bcdd9b1a0d146b8cf1b3ea8dc3379273ec4468c266c7c657dffff", + "cborBytes": [ + 191, 27, 40, 3, 8, 161, 53, 126, 241, 98, 159, 74, 153, 201, 146, 65, 192, 146, 152, 218, 182, 223, 27, 185, 232, + 104, 137, 158, 0, 120, 177, 69, 206, 114, 83, 179, 149, 67, 9, 236, 66, 67, 129, 91, 237, 255, 27, 62, 207, 21, + 173, 137, 102, 176, 239, 191, 27, 48, 200, 52, 51, 188, 89, 154, 75, 27, 216, 140, 184, 0, 77, 96, 125, 162, 27, + 66, 172, 81, 54, 113, 6, 216, 196, 73, 118, 185, 234, 224, 102, 159, 158, 95, 180, 27, 100, 11, 205, 240, 65, 247, + 117, 175, 27, 83, 160, 0, 33, 98, 2, 214, 23, 27, 106, 170, 207, 77, 59, 4, 120, 202, 27, 83, 254, 250, 250, 134, + 179, 66, 18, 27, 125, 239, 45, 22, 143, 238, 104, 61, 74, 46, 101, 186, 220, 24, 153, 44, 24, 149, 191, 27, 164, + 133, 243, 5, 16, 109, 240, 18, 70, 94, 42, 227, 39, 138, 168, 255, 27, 81, 58, 140, 44, 24, 38, 236, 45, 216, 102, + 159, 27, 135, 149, 44, 99, 45, 46, 4, 226, 128, 255, 27, 92, 191, 155, 197, 119, 65, 212, 117, 27, 83, 95, 16, 95, + 23, 20, 69, 29, 27, 162, 31, 89, 75, 151, 94, 234, 233, 159, 27, 205, 217, 177, 160, 209, 70, 184, 207, 27, 62, + 168, 220, 51, 121, 39, 62, 196, 70, 140, 38, 108, 124, 101, 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1060, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dce84ef10231a3e4bb3c" + } + } + ] + }, + "cborHex": "bf0f4adce84ef10231a3e4bb3cff", + "cborBytes": [191, 15, 74, 220, 232, 78, 241, 2, 49, 163, 228, 187, 60, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1061, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0783f7f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "675230418812042766" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abfb01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7837716201059028838" + } + } + } + ] + }, + "cborHex": "bf440783f7f91b095ee67d06d47e0e43abfb011b6cc5295bde728f66ff", + "cborBytes": [ + 191, 68, 7, 131, 247, 249, 27, 9, 94, 230, 125, 6, 212, 126, 14, 67, 171, 251, 1, 27, 108, 197, 41, 91, 222, 114, + 143, 102, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1062, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c57903ff" + } + ] + } + } + ] + }, + "cborHex": "bf119f1244c57903ffffff", + "cborBytes": [191, 17, 159, 18, 68, 197, 121, 3, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1063, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "29672cf0b6acb40f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "691620102036037079" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0a39c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5122099927175935968" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17114251305358971464" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7218384834741929247" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35a4901e33a671a1f4e835" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9723036239847592306" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1290208622493207283" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10205816266251250682" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3850531231201682820" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18328379841334224769" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78793a0ced" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "398dfc0b6bdb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b17eaee28810" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a580832" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9427937000260428883" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94696ff48bf59ff506" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "642e4121111e94" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e68d61026f2d890a" + } + } + ] + }, + "cborHex": "bf4829672cf0b6acb40fbf1b099920d185609dd743b0a39c1b47155abee76037e01bed8208e314afd2481b642cdac336dc051f4b35a4901e33a671a1f4e8351b86ef29f1fe5d91721b11e7bde805da8af31b8da257d248cf2bfa1b356fd5c0f852e5841bfe5b7c5b972827814578793a0cedff46398dfc0b6bdb46b17eaee28810444a5808321b82d6c2c01948e4534994696ff48bf59ff50647642e4121111e9441ee48e68d61026f2d890aff", + "cborBytes": [ + 191, 72, 41, 103, 44, 240, 182, 172, 180, 15, 191, 27, 9, 153, 32, 209, 133, 96, 157, 215, 67, 176, 163, 156, 27, + 71, 21, 90, 190, 231, 96, 55, 224, 27, 237, 130, 8, 227, 20, 175, 210, 72, 27, 100, 44, 218, 195, 54, 220, 5, 31, + 75, 53, 164, 144, 30, 51, 166, 113, 161, 244, 232, 53, 27, 134, 239, 41, 241, 254, 93, 145, 114, 27, 17, 231, 189, + 232, 5, 218, 138, 243, 27, 141, 162, 87, 210, 72, 207, 43, 250, 27, 53, 111, 213, 192, 248, 82, 229, 132, 27, 254, + 91, 124, 91, 151, 40, 39, 129, 69, 120, 121, 58, 12, 237, 255, 70, 57, 141, 252, 11, 107, 219, 70, 177, 126, 174, + 226, 136, 16, 68, 74, 88, 8, 50, 27, 130, 214, 194, 192, 25, 72, 228, 83, 73, 148, 105, 111, 244, 139, 245, 159, + 245, 6, 71, 100, 46, 65, 33, 17, 30, 148, 65, 238, 72, 230, 141, 97, 2, 111, 45, 137, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1064, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11101346115171955933" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0406fefd0c2a01fae3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd" + } + } + ] + }, + "cborHex": "bf1b9a0fe7796b7cb4dd02490406fefd0c2a01fae341ddff", + "cborBytes": [ + 191, 27, 154, 15, 231, 121, 107, 124, 180, 221, 2, 73, 4, 6, 254, 253, 12, 42, 1, 250, 227, 65, 221, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1065, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01000406" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "883426b7d2aede2cc5b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1edab2d3a68e1b1a5c4da7c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "068fdffecd34d450e6c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3045487798675831376" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89504b7c0dc6a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6226074169812543016" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "487136266850532110" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13961937179498844657" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb2a3d83267cb9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9d3fdffc404" + } + } + ] + }, + "cborHex": "bf44010004069f4a883426b7d2aede2cc5b80bff4cc1edab2d3a68e1b1a5c4da7cbf4a068fdffecd34d450e6c71b2a43bf0467dbfa504789504b7c0dc6a81b5667757864e9662841a61b06c2a7da8ed5fb0e41b41bc1c2c3e4285911f1ff47cb2a3d83267cb946f9d3fdffc404ff", + "cborBytes": [ + 191, 68, 1, 0, 4, 6, 159, 74, 136, 52, 38, 183, 210, 174, 222, 44, 197, 184, 11, 255, 76, 193, 237, 171, 45, 58, + 104, 225, 177, 165, 196, 218, 124, 191, 74, 6, 143, 223, 254, 205, 52, 212, 80, 230, 199, 27, 42, 67, 191, 4, 103, + 219, 250, 80, 71, 137, 80, 75, 124, 13, 198, 168, 27, 86, 103, 117, 120, 100, 233, 102, 40, 65, 166, 27, 6, 194, + 167, 218, 142, 213, 251, 14, 65, 180, 27, 193, 194, 195, 228, 40, 89, 17, 241, 255, 71, 203, 42, 61, 131, 38, 124, + 185, 70, 249, 211, 253, 255, 196, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1066, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14058623338571999475" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4720227040035549322" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "761ec7e015d97ede" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14077743027156073063" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13275232145063703958" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2089603062848720113" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f04df2e8f3371396fb520" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccf798b64a23481a94" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5188363856072104984" + } + } + } + ] + }, + "cborHex": "bf1bc31a4370ce99a8f31b41819d7bec83308a48761ec7e015d97eded8669f1bc35e30b234deba679f1bb83b194cfd5e75961b1cffc2ea1aaa8cf14b7f04df2e8f3371396fb520ffff49ccf798b64a23481a941b4800c5701ea75c18ff", + "cborBytes": [ + 191, 27, 195, 26, 67, 112, 206, 153, 168, 243, 27, 65, 129, 157, 123, 236, 131, 48, 138, 72, 118, 30, 199, 224, + 21, 217, 126, 222, 216, 102, 159, 27, 195, 94, 48, 178, 52, 222, 186, 103, 159, 27, 184, 59, 25, 76, 253, 94, 117, + 150, 27, 28, 255, 194, 234, 26, 170, 140, 241, 75, 127, 4, 223, 46, 143, 51, 113, 57, 111, 181, 32, 255, 255, 73, + 204, 247, 152, 182, 74, 35, 72, 26, 148, 27, 72, 0, 197, 112, 30, 167, 92, 24, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1067, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "323637" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16076301387021455318" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "29" + }, + { + "_tag": "ByteArray", + "bytearray": "339053e0edd389" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3610941ac2" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b66d103e3a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7702504178505491067" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bc757bc9" + }, + { + "_tag": "ByteArray", + "bytearray": "01dd" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61c53bf04801e391fa248154" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6778723392387149973" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d619d7af7d" + }, + { + "_tag": "ByteArray", + "bytearray": "d8b97a73e2b33d4a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f8638bb801b89c5aede619d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67a11f5ce34f10ccb4db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f116844dcc96c6879a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d6b88b13e0ea77" + }, + { + "_tag": "ByteArray", + "bytearray": "5349d9607f42" + }, + { + "_tag": "ByteArray", + "bytearray": "841cb56dec333a7ed084" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7050240455459575117" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b61c57778f8a00f434" + } + ] + } + } + ] + }, + "cborHex": "bf43323637d8669f1bdf1a7eef83888fd69f412947339053e0edd389ffff453610941ac29f45b66d103e3a1b6ae4cabda0c8227b44bc757bc94201ddff4c61c53bf04801e391fa248154d8669f1b5e12dd0299ddf0959f45d619d7af7d48d8b97a73e2b33d4affff4c7f8638bb801b89c5aede619d4a67a11f5ce34f10ccb4db49f116844dcc96c6879a9f47d6b88b13e0ea77465349d9607f424a841cb56dec333a7ed0841b61d77c5728c1954d49b61c57778f8a00f434ffff", + "cborBytes": [ + 191, 67, 50, 54, 55, 216, 102, 159, 27, 223, 26, 126, 239, 131, 136, 143, 214, 159, 65, 41, 71, 51, 144, 83, 224, + 237, 211, 137, 255, 255, 69, 54, 16, 148, 26, 194, 159, 69, 182, 109, 16, 62, 58, 27, 106, 228, 202, 189, 160, + 200, 34, 123, 68, 188, 117, 123, 201, 66, 1, 221, 255, 76, 97, 197, 59, 240, 72, 1, 227, 145, 250, 36, 129, 84, + 216, 102, 159, 27, 94, 18, 221, 2, 153, 221, 240, 149, 159, 69, 214, 25, 215, 175, 125, 72, 216, 185, 122, 115, + 226, 179, 61, 74, 255, 255, 76, 127, 134, 56, 187, 128, 27, 137, 197, 174, 222, 97, 157, 74, 103, 161, 31, 92, + 227, 79, 16, 204, 180, 219, 73, 241, 22, 132, 77, 204, 150, 198, 135, 154, 159, 71, 214, 184, 139, 19, 224, 234, + 119, 70, 83, 73, 217, 96, 127, 66, 74, 132, 28, 181, 109, 236, 51, 58, 126, 208, 132, 27, 97, 215, 124, 87, 40, + 193, 149, 77, 73, 182, 28, 87, 119, 143, 138, 0, 244, 52, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1068, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bdcc5a2a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15969617987060647428" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c8af7cf40b459de3a7468" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12952233808691546262" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df1ba8cd31" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1667b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7864335537239544445" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0fd24299bfc2ed3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3459347651806917334" + } + } + } + ] + }, + "cborHex": "bf453bdcc5a2a61bdd9f7af2d57046044b4c8af7cf40b459de3a74681bb3bf94066edd489645df1ba8cd31bf431667b01b6d23bb810ba4d27dff48e0fd24299bfc2ed31b3002125c648872d6ff", + "cborBytes": [ + 191, 69, 59, 220, 197, 162, 166, 27, 221, 159, 122, 242, 213, 112, 70, 4, 75, 76, 138, 247, 207, 64, 180, 89, 222, + 58, 116, 104, 27, 179, 191, 148, 6, 110, 221, 72, 150, 69, 223, 27, 168, 205, 49, 191, 67, 22, 103, 176, 27, 109, + 35, 187, 129, 11, 164, 210, 125, 255, 72, 224, 253, 36, 41, 155, 252, 46, 211, 27, 48, 2, 18, 92, 100, 136, 114, + 214, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1069, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "678420148185199176" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "635953827080493616" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5488387915178081612" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1925881456284516589" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "139c2a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17527399936465679125" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04cf83002bf0529955204d42" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3122151727863400141" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f939615e545e97f4ee79b3a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11574974242098493762" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7335536381898436790" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7090257676897985027" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c7454078f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15828987201487803712" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f268087d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c677cf1bac166f8b21" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16255092474357883460" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5139690222979718337" + } + } + } + ] + }, + "cborHex": "bf1b096a3b87c50bf248bf1b08d35ca2e4aeda301b4c2aabbae9bc7d4c1b1aba1afb1159c0ed43139c2a1bf33dd560c93db3154c04cf83002bf0529955204d42ff1b2b541c74622b86cd9f4cf939615e545e97f4ee79b3a61ba0a291bf1093b9421b65cd0f795802b0b6ff1b6265a7ca957da203458c7454078f1bdbabdbfe82e29540bf452f268087d749c677cf1bac166f8b21ff1be195b07b753a22441b4753d906cc411cc1ff", + "cborBytes": [ + 191, 27, 9, 106, 59, 135, 197, 11, 242, 72, 191, 27, 8, 211, 92, 162, 228, 174, 218, 48, 27, 76, 42, 171, 186, + 233, 188, 125, 76, 27, 26, 186, 26, 251, 17, 89, 192, 237, 67, 19, 156, 42, 27, 243, 61, 213, 96, 201, 61, 179, + 21, 76, 4, 207, 131, 0, 43, 240, 82, 153, 85, 32, 77, 66, 255, 27, 43, 84, 28, 116, 98, 43, 134, 205, 159, 76, + 249, 57, 97, 94, 84, 94, 151, 244, 238, 121, 179, 166, 27, 160, 162, 145, 191, 16, 147, 185, 66, 27, 101, 205, 15, + 121, 88, 2, 176, 182, 255, 27, 98, 101, 167, 202, 149, 125, 162, 3, 69, 140, 116, 84, 7, 143, 27, 219, 171, 219, + 254, 130, 226, 149, 64, 191, 69, 47, 38, 128, 135, 215, 73, 198, 119, 207, 27, 172, 22, 111, 139, 33, 255, 27, + 225, 149, 176, 123, 117, 58, 34, 68, 27, 71, 83, 217, 6, 204, 65, 28, 193, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1070, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4269256440229350789" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12764360278744343184" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e6984e" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4293965324728545968" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c05c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4518033185890526978" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10796869832116360171" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15264409484119532815" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7778241121416249721" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2491703740381140873" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9046291377953799638" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0400ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10003915494581694056" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2db6da82a3557312fb3b" + } + } + ] + }, + "cborHex": "bf10801b3b3f721ce6eb4d85d8669f1bb1241e0b87a9a2909f1bfffffffffffffff643e6984effff1b3b973ab6624a32b0d87e9f42c05c1b3eb3473eb86e6702411d1b95d62fe8756d53eb1bd3d6138d2f0c650fff1b6bf1dd16cb5a01791b22944f59aaee17891b7d8ae214359d7dd6430400ff1b8ad50c23a9916e684a2db6da82a3557312fb3bff", + "cborBytes": [ + 191, 16, 128, 27, 59, 63, 114, 28, 230, 235, 77, 133, 216, 102, 159, 27, 177, 36, 30, 11, 135, 169, 162, 144, 159, + 27, 255, 255, 255, 255, 255, 255, 255, 246, 67, 230, 152, 78, 255, 255, 27, 59, 151, 58, 182, 98, 74, 50, 176, + 216, 126, 159, 66, 192, 92, 27, 62, 179, 71, 62, 184, 110, 103, 2, 65, 29, 27, 149, 214, 47, 232, 117, 109, 83, + 235, 27, 211, 214, 19, 141, 47, 12, 101, 15, 255, 27, 107, 241, 221, 22, 203, 90, 1, 121, 27, 34, 148, 79, 89, + 170, 238, 23, 137, 27, 125, 138, 226, 20, 53, 157, 125, 214, 67, 4, 0, 255, 27, 138, 213, 12, 35, 169, 145, 110, + 104, 74, 45, 182, 218, 130, 163, 85, 115, 18, 251, 59, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1071, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "954988721282847830" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5305fcfa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5413220410456663895" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff0bf1b0d40cd2ea8919456445305fcfa1b4b1f9f486829e75707ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 240, 191, 27, 13, 64, 205, 46, 168, 145, 148, 86, 68, 83, 5, 252, 250, + 27, 75, 31, 159, 72, 104, 41, 231, 87, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1072, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10415975780985849012" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2003134465751326258" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0480b589d81b32e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9897449408082042514" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c3ffdfb20f6ae90dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11715694342090312154" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12463718238802189960" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16814752800162257381" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57643859d82fda0b7c" + } + } + ] + } + } + ] + }, + "cborHex": "bf14801b908cfac95ebbc4b4bf1b1bcc902efc731e3248d0480b589d81b32e1b895acdcc37215e92497c3ffdfb20f6ae90dd1ba29681ee8558c9da1bacf805b3dc5c9e881be95a009557ad19e54957643859d82fda0b7cffff", + "cborBytes": [ + 191, 20, 128, 27, 144, 140, 250, 201, 94, 187, 196, 180, 191, 27, 27, 204, 144, 46, 252, 115, 30, 50, 72, 208, 72, + 11, 88, 157, 129, 179, 46, 27, 137, 90, 205, 204, 55, 33, 94, 146, 73, 124, 63, 253, 251, 32, 246, 174, 144, 221, + 27, 162, 150, 129, 238, 133, 88, 201, 218, 27, 172, 248, 5, 179, 220, 92, 158, 136, 27, 233, 90, 0, 149, 87, 173, + 25, 229, 73, 87, 100, 56, 89, 216, 47, 218, 11, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1073, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8759916186865122693" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16054057508899792082" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5657985558156914885" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12426650839810052795" + } + }, + { + "_tag": "ByteArray", + "bytearray": "30e4e307" + }, + { + "_tag": "ByteArray", + "bytearray": "13" + } + ] + } + } + ] + }, + "cborHex": "bf1b7991795c244a3d85d8669f1bdecb783f0daa24d29f1b4e8533e34a3bb0c51bac7455197eb012bb4430e4e3074113ffffff", + "cborBytes": [ + 191, 27, 121, 145, 121, 92, 36, 74, 61, 133, 216, 102, 159, 27, 222, 203, 120, 63, 13, 170, 36, 210, 159, 27, 78, + 133, 51, 227, 74, 59, 176, 197, 27, 172, 116, 85, 25, 126, 176, 18, 187, 68, 48, 228, 227, 7, 65, 19, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1074, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5309628613005497274" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7917844253433256350" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6385208455375566204" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a55af1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2095007118795761890" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c44e0a2784bc1fcc444e7bd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17053850188100589824" + } + }, + { + "_tag": "ByteArray", + "bytearray": "58327b1ed2" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6625347086169275220" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2134543473230660702" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "56b44aca395af7" + }, + { + "_tag": "ByteArray", + "bytearray": "44b77278174f6e" + }, + { + "_tag": "ByteArray", + "bytearray": "e23371ae6e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7001545557611899766" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4361f798a458c9f025" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8409280368124075677" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9787601532494033524" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15078121362269053815" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14605612607541813217" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17146367447119393223" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "388789783260266037" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15063213618568806403" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8286881416510521485" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b49af9717877153ba9f1b6de1d565e0c1d99eff1b589cd142877b357c9f43a55af11b1d12f5dfedbc68e24c1c44e0a2784bc1fcc444e7bd1becab72641276d9004558327b1ed2ff1b5bf1f61280c9fb54d8669f1b1d9f6bfac78ac45e9f4756b44aca395af74744b77278174f6e45e23371ae6e1b612a7c96c02beb76494361f798a458c9f025ffff1b74b3c3f0c6b39e9d1b87d48bbca36032741bd1403f7dde46a377d8669f1bcab18f485f7f1fe180ff1bedf4225909df71c79f1b0565423f7b877e351bd10b48fa4e9ec0031b7300eabe16e5408dffff", + "cborBytes": [ + 191, 27, 73, 175, 151, 23, 135, 113, 83, 186, 159, 27, 109, 225, 213, 101, 224, 193, 217, 158, 255, 27, 88, 156, + 209, 66, 135, 123, 53, 124, 159, 67, 165, 90, 241, 27, 29, 18, 245, 223, 237, 188, 104, 226, 76, 28, 68, 224, 162, + 120, 75, 193, 252, 196, 68, 231, 189, 27, 236, 171, 114, 100, 18, 118, 217, 0, 69, 88, 50, 123, 30, 210, 255, 27, + 91, 241, 246, 18, 128, 201, 251, 84, 216, 102, 159, 27, 29, 159, 107, 250, 199, 138, 196, 94, 159, 71, 86, 180, + 74, 202, 57, 90, 247, 71, 68, 183, 114, 120, 23, 79, 110, 69, 226, 51, 113, 174, 110, 27, 97, 42, 124, 150, 192, + 43, 235, 118, 73, 67, 97, 247, 152, 164, 88, 201, 240, 37, 255, 255, 27, 116, 179, 195, 240, 198, 179, 158, 157, + 27, 135, 212, 139, 188, 163, 96, 50, 116, 27, 209, 64, 63, 125, 222, 70, 163, 119, 216, 102, 159, 27, 202, 177, + 143, 72, 95, 127, 31, 225, 128, 255, 27, 237, 244, 34, 89, 9, 223, 113, 199, 159, 27, 5, 101, 66, 63, 123, 135, + 126, 53, 27, 209, 11, 72, 250, 78, 158, 192, 3, 27, 115, 0, 234, 190, 22, 229, 64, 141, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1075, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d9e60" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22e3b84035ca915e" + } + } + ] + }, + "cborHex": "bf432d9e604822e3b84035ca915eff", + "cborBytes": [191, 67, 45, 158, 96, 72, 34, 227, 184, 64, 53, 202, 145, 94, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1076, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3894385847511243524" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f657535c879a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1618330315927597375" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59094d8e03d44f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6680cc45c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7379" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5a5f4883888da33" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f361fb12cdb1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fff1f6af35d1cfe7f91c920" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10334361342564448637" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "220119939557354085" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10520396933796582581" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fce3440e145" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1810581821983559228" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd08be6bc83e86614b15cb73" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17399032290851649126" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d33" + } + } + ] + }, + "cborHex": "bf1b360ba34b83375b04bf473f657535c879a81b167576d91a1c313f4759094d8e03d44f456680cc45c542737948d5a5f4883888da3346f361fb12cdb14c6fff1f6af35d1cfe7f91c920ff1b8f6b06e32415397d1b030e05eb354bea651b91fff545970dd4b5bf466fce3440e1451b19207a93001c0e3c41764ccd08be6bc83e86614b15cb73ff1bf175c7af3bc37666422d33ff", + "cborBytes": [ + 191, 27, 54, 11, 163, 75, 131, 55, 91, 4, 191, 71, 63, 101, 117, 53, 200, 121, 168, 27, 22, 117, 118, 217, 26, 28, + 49, 63, 71, 89, 9, 77, 142, 3, 212, 79, 69, 102, 128, 204, 69, 197, 66, 115, 121, 72, 213, 165, 244, 136, 56, 136, + 218, 51, 70, 243, 97, 251, 18, 205, 177, 76, 111, 255, 31, 106, 243, 93, 28, 254, 127, 145, 201, 32, 255, 27, 143, + 107, 6, 227, 36, 21, 57, 125, 27, 3, 14, 5, 235, 53, 75, 234, 101, 27, 145, 255, 245, 69, 151, 13, 212, 181, 191, + 70, 111, 206, 52, 64, 225, 69, 27, 25, 32, 122, 147, 0, 28, 14, 60, 65, 118, 76, 205, 8, 190, 107, 200, 62, 134, + 97, 75, 21, 203, 115, 255, 27, 241, 117, 199, 175, 59, 195, 118, 102, 66, 45, 51, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1077, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + { + "_tag": "ByteArray", + "bytearray": "30bc7f55dd179d71" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "ByteArray", + "bytearray": "11a328dbbd57f01a93da" + } + ] + } + } + ] + }, + "cborHex": "bf069f1bfffffffffffffff54830bc7f55dd179d710c4a11a328dbbd57f01a93daffff", + "cborBytes": [ + 191, 6, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 72, 48, 188, 127, 85, 221, 23, 157, 113, 12, 74, 17, 163, + 40, 219, 189, 87, 240, 26, 147, 218, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1078, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6046617973088213336" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15539719534690455182" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1867955007239518676" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dddd3475c853f1d10846" + }, + { + "_tag": "ByteArray", + "bytearray": "e26d8e457daae015fca19a" + } + ] + } + } + ] + }, + "cborHex": "bf0c9f1b53e9e7029a6a59581bd7a82c95766c4e8e1b19ec4f2ea6ec79d44adddd3475c853f1d108464be26d8e457daae015fca19affff", + "cborBytes": [ + 191, 12, 159, 27, 83, 233, 231, 2, 154, 106, 89, 88, 27, 215, 168, 44, 149, 118, 108, 78, 142, 27, 25, 236, 79, + 46, 166, 236, 121, 212, 74, 221, 221, 52, 117, 200, 83, 241, 209, 8, 70, 75, 226, 109, 142, 69, 125, 170, 224, 21, + 252, 161, 154, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1079, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15054899055751799202" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "666d4c17020af9fb" + }, + { + "_tag": "ByteArray", + "bytearray": "f87a" + }, + { + "_tag": "ByteArray", + "bytearray": "1e5c" + }, + { + "_tag": "ByteArray", + "bytearray": "3598a2d8bfec344091" + }, + { + "_tag": "ByteArray", + "bytearray": "1c31cd6b37d19d2b" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4703" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9194281993365922426" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3b501827cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11410285860928737946" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c82f" + }, + { + "_tag": "ByteArray", + "bytearray": "e26e128357" + } + ] + } + } + ] + }, + "cborHex": "bf412cd8669f1bd0edbeed4b7321a29f48666d4c17020af9fb42f87a421e5c493598a2d8bfec344091481c31cd6b37d19d2bffff424703d905069f1b7f98a6c27358a27a453b501827cc1b9e597a894651d29a42c82f45e26e128357ffff", + "cborBytes": [ + 191, 65, 44, 216, 102, 159, 27, 208, 237, 190, 237, 75, 115, 33, 162, 159, 72, 102, 109, 76, 23, 2, 10, 249, 251, + 66, 248, 122, 66, 30, 92, 73, 53, 152, 162, 216, 191, 236, 52, 64, 145, 72, 28, 49, 205, 107, 55, 209, 157, 43, + 255, 255, 66, 71, 3, 217, 5, 6, 159, 27, 127, 152, 166, 194, 115, 88, 162, 122, 69, 59, 80, 24, 39, 204, 27, 158, + 89, 122, 137, 70, 81, 210, 154, 66, 200, 47, 69, 226, 110, 18, 131, 87, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1080, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a048bd8d7d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13147093682956132812" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c5feebb1a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df938a7fb13365" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0f11ebe2c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14913006747045016667" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf464a048bd8d7d41bb673dc0c6161e1cc457c5feebb1a47df938a7fb1336545d0f11ebe2cd8669f1bcef5a49fba9f345b80ffff", + "cborBytes": [ + 191, 70, 74, 4, 139, 216, 215, 212, 27, 182, 115, 220, 12, 97, 97, 225, 204, 69, 124, 95, 238, 187, 26, 71, 223, + 147, 138, 127, 177, 51, 101, 69, 208, 241, 30, 190, 44, 216, 102, 159, 27, 206, 245, 164, 159, 186, 159, 52, 91, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1081, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dea7455de1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d4b9c6445c318ac7d58f299" + } + } + ] + }, + "cborHex": "bf45dea7455de14c9d4b9c6445c318ac7d58f299ff", + "cborBytes": [191, 69, 222, 167, 69, 93, 225, 76, 157, 75, 156, 100, 69, 195, 24, 172, 125, 88, 242, 153, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1082, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6390660588168287290" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8627714493260014437" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "649cd1ccb248e75e9b6d22" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1533626216503033549" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15473303616843453306" + } + }, + { + "_tag": "ByteArray", + "bytearray": "50afad" + }, + { + "_tag": "ByteArray", + "bytearray": "a47b5f7ec961" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86a6c4c416b7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6765748407600782653" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "87" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13561172499971288241" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b58b02ff21ddc143a1b77bbcc9eba40a3654b649cd1ccb248e75e9b6d229f1b154888eb1ce3becd1bd6bc37a88fb8937a4350afad46a47b5f7ec961ff4686a6c4c416b7d8669f1b5de4c4548ab59d3d9f41871bbc32f689de95acb1ffffff", + "cborBytes": [ + 191, 27, 88, 176, 47, 242, 29, 220, 20, 58, 27, 119, 187, 204, 158, 186, 64, 163, 101, 75, 100, 156, 209, 204, + 178, 72, 231, 94, 155, 109, 34, 159, 27, 21, 72, 136, 235, 28, 227, 190, 205, 27, 214, 188, 55, 168, 143, 184, + 147, 122, 67, 80, 175, 173, 70, 164, 123, 95, 126, 201, 97, 255, 70, 134, 166, 196, 196, 22, 183, 216, 102, 159, + 27, 93, 228, 196, 84, 138, 181, 157, 61, 159, 65, 135, 27, 188, 50, 246, 137, 222, 149, 172, 177, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1083, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "93faedc2b6d2ccaf9600" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba8ae748bf34" + } + } + ] + }, + "cborHex": "bf4a93faedc2b6d2ccaf960046ba8ae748bf34ff", + "cborBytes": [191, 74, 147, 250, 237, 194, 182, 210, 204, 175, 150, 0, 70, 186, 138, 231, 72, 191, 52, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1084, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7418828885458547601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "641530283920751391" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7744035e29" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f59e2fedaadc5a4b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3293990427255983053" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16425177323068722300" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cf82104fc223" + }, + { + "_tag": "ByteArray", + "bytearray": "2aa2" + } + ] + } + } + ] + }, + "cborHex": "bf1b66f4f9908f29f3911b08e72c64edc07b1f457744035e298048f59e2fedaadc5a4bd8669f1b2db69ad75e214bcd9f1be3f1f3c042500c7c46cf82104fc223422aa2ffffff", + "cborBytes": [ + 191, 27, 102, 244, 249, 144, 143, 41, 243, 145, 27, 8, 231, 44, 100, 237, 192, 123, 31, 69, 119, 68, 3, 94, 41, + 128, 72, 245, 158, 47, 237, 170, 220, 90, 75, 216, 102, 159, 27, 45, 182, 154, 215, 94, 33, 75, 205, 159, 27, 227, + 241, 243, 192, 66, 80, 12, 124, 70, 207, 130, 16, 79, 194, 35, 66, 42, 162, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1085, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d44" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17980985505247938471" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8186284644611855455" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bc59c0c69538a545fc1c" + } + ] + } + } + ] + }, + "cborHex": "bf427d44d8669f1bf9894b0cb7c047a79f1b719b8682f053145f4abc59c0c69538a545fc1cffffff", + "cborBytes": [ + 191, 66, 125, 68, 216, 102, 159, 27, 249, 137, 75, 12, 183, 192, 71, 167, 159, 27, 113, 155, 134, 130, 240, 83, + 20, 95, 74, 188, 89, 192, 198, 149, 56, 165, 69, 252, 28, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1086, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2547853019575068073" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4360635798702840088" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2647050695454960338" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12024571772465766398" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14057347654558448453" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18036390290319901579" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "213c239b98cd5cf802d694" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12888414889050795453" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b235bcad27bada5a91b3c841727c088d9181b24bc3695350b2ad21ba6dfdc517202dffe1bc315bb367a207b45d8669f1bfa4e21687cd2838b9f4b213c239b98cd5cf802d6941bb2dcd90e4bba6dbdffffff", + "cborBytes": [ + 191, 27, 35, 91, 202, 210, 123, 173, 165, 169, 27, 60, 132, 23, 39, 192, 136, 217, 24, 27, 36, 188, 54, 149, 53, + 11, 42, 210, 27, 166, 223, 220, 81, 114, 2, 223, 254, 27, 195, 21, 187, 54, 122, 32, 123, 69, 216, 102, 159, 27, + 250, 78, 33, 104, 124, 210, 131, 139, 159, 75, 33, 60, 35, 155, 152, 205, 92, 248, 2, 214, 148, 27, 178, 220, 217, + 14, 75, 186, 109, 189, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1087, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a9e68931443" + }, + { + "_tag": "ByteArray", + "bytearray": "efc05144" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "801183694035596565" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb654da55637" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1597996501544506393" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff49f469a9e6893144344efc051441b0b1e60532ad3b515ff46fb654da556371b162d395a02e09419ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 70, 154, 158, 104, 147, 20, 67, 68, 239, 192, 81, 68, 27, + 11, 30, 96, 83, 42, 211, 181, 21, 255, 70, 251, 101, 77, 165, 86, 55, 27, 22, 45, 57, 90, 2, 224, 148, 25, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1088, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16060428130889869887" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11846407120146586266" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16149557463227333179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4759450912851261178" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7f9a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53a04eb5c6b469" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffcbf1bdee21a4b1261aa3f1ba466e482c4feda9a1be01ec0f2e36c7a3b1b420cf7637a6876faff43e7f9a24753a04eb5c6b469ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 252, 191, 27, 222, 226, 26, 75, 18, 97, 170, 63, 27, 164, 102, 228, + 130, 196, 254, 218, 154, 27, 224, 30, 192, 242, 227, 108, 122, 59, 27, 66, 12, 247, 99, 122, 104, 118, 250, 255, + 67, 231, 249, 162, 71, 83, 160, 78, 181, 198, 180, 105, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1089, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "514c1351" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1264074022085442112" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9ab2877526e32688a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9965948482366525793" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8005c4a8d7dc99b062255" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2154890429930080869" + } + } + } + ] + }, + "cborHex": "bf44514c13511b118ae4a03033ba4049c9ab2877526e32688ad8669f1b8a4e2957c54cd16180ff4bf8005c4a8d7dc99b0622551b1de7b56dcddf0a65ff", + "cborBytes": [ + 191, 68, 81, 76, 19, 81, 27, 17, 138, 228, 160, 48, 51, 186, 64, 73, 201, 171, 40, 119, 82, 110, 50, 104, 138, + 216, 102, 159, 27, 138, 78, 41, 87, 197, 76, 209, 97, 128, 255, 75, 248, 0, 92, 74, 141, 125, 201, 155, 6, 34, 85, + 27, 29, 231, 181, 109, 205, 223, 10, 101, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1090, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10981678055153150192" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18fa2b0819056f9e7f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17012362620611911810" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1219482319124977562" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b9866c201fb1b28f04918fa2b0819056f9e7f1bec180dab07b4e082d8669f1b10ec78b54950579a80ffff", + "cborBytes": [ + 191, 27, 152, 102, 194, 1, 251, 27, 40, 240, 73, 24, 250, 43, 8, 25, 5, 111, 158, 127, 27, 236, 24, 13, 171, 7, + 180, 224, 130, 216, 102, 159, 27, 16, 236, 120, 181, 73, 80, 87, 154, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1091, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10658128162309478962" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0305227bfbfbfafb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e7ce4f8e97f5b1b25" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff5d8669f1bffffffffffffffff9f1b93e947182d0b1a32ffff480305227bfbfbfafb497e7ce4f8e97f5b1b25ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 245, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, + 27, 147, 233, 71, 24, 45, 11, 26, 50, 255, 255, 72, 3, 5, 34, 123, 251, 251, 250, 251, 73, 126, 124, 228, 248, + 233, 127, 91, 27, 37, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1092, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd39b6ce6081ff465f287ff1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4cfd39b6ce6081ff465f287ff1d9050480ff", + "cborBytes": [191, 76, 253, 57, 182, 206, 96, 129, 255, 70, 95, 40, 127, 241, 217, 5, 4, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1093, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17211364769184865380" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7594412928551337336" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dbffcc028738d4ce08826f0e" + }, + { + "_tag": "ByteArray", + "bytearray": "57ce65281a24c9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4437268118041601650" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "142841785801785482" + } + } + ] + } + } + ] + }, + "cborHex": "bf1beedb0d115eefdc64d8669f1b6964c65253efbd789f4cdbffcc028738d4ce08826f0e4757ce65281a24c91b3d9457d7fd0926721b01fb79d8edcc408affffff", + "cborBytes": [ + 191, 27, 238, 219, 13, 17, 94, 239, 220, 100, 216, 102, 159, 27, 105, 100, 198, 82, 83, 239, 189, 120, 159, 76, + 219, 255, 204, 2, 135, 56, 212, 206, 8, 130, 111, 14, 71, 87, 206, 101, 40, 26, 36, 201, 27, 61, 148, 87, 215, + 253, 9, 38, 114, 27, 1, 251, 121, 216, 237, 204, 64, 138, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1094, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9194045798125241447" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a900504f9fa01b5022cb054" + } + } + ] + }, + "cborHex": "bf05d8669f1b7f97cff0f5ed846780ff0e1bfffffffffffffff41bfffffffffffffffa4c1a900504f9fa01b5022cb054ff", + "cborBytes": [ + 191, 5, 216, 102, 159, 27, 127, 151, 207, 240, 245, 237, 132, 103, 128, 255, 14, 27, 255, 255, 255, 255, 255, 255, + 255, 244, 27, 255, 255, 255, 255, 255, 255, 255, 250, 76, 26, 144, 5, 4, 249, 250, 1, 181, 2, 44, 176, 84, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1095, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5227703550260573211" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b121ab6896fcfb43" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13612575815676729059" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81474dbe677899f623c8cb" + } + } + ] + }, + "cborHex": "bf1b488c88ae7054741b48b121ab6896fcfb431bbce99594f37c16e34b81474dbe677899f623c8cbff", + "cborBytes": [ + 191, 27, 72, 140, 136, 174, 112, 84, 116, 27, 72, 177, 33, 171, 104, 150, 252, 251, 67, 27, 188, 233, 149, 148, + 243, 124, 22, 227, 75, 129, 71, 77, 190, 103, 120, 153, 246, 35, 200, 203, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1096, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6213417670945330873" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd54262c35" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7519629443274383973" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8500919943796823220" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "927864dfdf86f2f1265e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15099037675039674879" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2023486664966966400" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10192509617747312795" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5463571540830117381" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9276690294514346595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17898665503091288370" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c62fcbe" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b563a7e739dd4d6b9bf45fd54262c351b685b172350f02265ff1b75f955a62a0b14b49f4a927864dfdf86f2f1265e1bd18a8ec46efad1ff1b1c14de66a1188c80ff1b8d73117ebf94c09bbf1b4bd2815e801cde051b80bd6cac3fd76a631bf864d571a14b6932447c62fcbeffff", + "cborBytes": [ + 191, 27, 86, 58, 126, 115, 157, 212, 214, 185, 191, 69, 253, 84, 38, 44, 53, 27, 104, 91, 23, 35, 80, 240, 34, + 101, 255, 27, 117, 249, 85, 166, 42, 11, 20, 180, 159, 74, 146, 120, 100, 223, 223, 134, 242, 241, 38, 94, 27, + 209, 138, 142, 196, 110, 250, 209, 255, 27, 28, 20, 222, 102, 161, 24, 140, 128, 255, 27, 141, 115, 17, 126, 191, + 148, 192, 155, 191, 27, 75, 210, 129, 94, 128, 28, 222, 5, 27, 128, 189, 108, 172, 63, 215, 106, 99, 27, 248, 100, + 213, 113, 161, 75, 105, 50, 68, 124, 98, 252, 190, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1097, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1373484106866197446" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18387178081025757287" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "506364158241028365" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2333646569726213803" + } + }, + { + "_tag": "ByteArray", + "bytearray": "688328" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3040492049036054886" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3352311083137198005" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14283eb3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7287475126514175097" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12717835016741706202" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10084706319517001838" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14327209446942634236" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13851200013708258027" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3051953380471416260" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14569540882589242462" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a93f8027a30eae744ba5713" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16716988493661659088" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5429164339245830027" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10944598504958742404" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "732f" + }, + { + "_tag": "ByteArray", + "bytearray": "29635073fc75" + }, + { + "_tag": "ByteArray", + "bytearray": "227eeb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4931468761780213477" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6209130945979343711" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e3b12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8428253904433866094" + } + } + } + ] + }, + "cborHex": "bf1b130f9884a66783c6d8669f1bff2c610b956390679f1b0706f784e2f2390d1b2062c730e3d6feab43688328ffff1b2a31ff68cd319166bf1b2e85cd2b36ff67b54414283eb31b65225004515f4c791bb07ed390d4e9d9da1b8bf412f76ef2a86e1bc6d479154ba2f0fc1bc039590691f76aeb1b2a5ab76dfa0d25c41bca31683d6f43545e4c2a93f8027a30eae744ba57131be7feac76eefedfd01b4b5844339bf74f8bff1b97e3065a71564f849f42732f4629635073fc7543227eeb1b447018b5f6d856e51b562b43b2aefbe35fff434e3b121b74f72c457294656eff", + "cborBytes": [ + 191, 27, 19, 15, 152, 132, 166, 103, 131, 198, 216, 102, 159, 27, 255, 44, 97, 11, 149, 99, 144, 103, 159, 27, 7, + 6, 247, 132, 226, 242, 57, 13, 27, 32, 98, 199, 48, 227, 214, 254, 171, 67, 104, 131, 40, 255, 255, 27, 42, 49, + 255, 104, 205, 49, 145, 102, 191, 27, 46, 133, 205, 43, 54, 255, 103, 181, 68, 20, 40, 62, 179, 27, 101, 34, 80, + 4, 81, 95, 76, 121, 27, 176, 126, 211, 144, 212, 233, 217, 218, 27, 139, 244, 18, 247, 110, 242, 168, 110, 27, + 198, 212, 121, 21, 75, 162, 240, 252, 27, 192, 57, 89, 6, 145, 247, 106, 235, 27, 42, 90, 183, 109, 250, 13, 37, + 196, 27, 202, 49, 104, 61, 111, 67, 84, 94, 76, 42, 147, 248, 2, 122, 48, 234, 231, 68, 186, 87, 19, 27, 231, 254, + 172, 118, 238, 254, 223, 208, 27, 75, 88, 68, 51, 155, 247, 79, 139, 255, 27, 151, 227, 6, 90, 113, 86, 79, 132, + 159, 66, 115, 47, 70, 41, 99, 80, 115, 252, 117, 67, 34, 126, 235, 27, 68, 112, 24, 181, 246, 216, 86, 229, 27, + 86, 43, 67, 178, 174, 251, 227, 95, 255, 67, 78, 59, 18, 27, 116, 247, 44, 69, 114, 148, 101, 110, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1098, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9627745799885438126" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b859c9fcb85ee3cae80ff", + "cborBytes": [191, 27, 133, 156, 159, 203, 133, 238, 60, 174, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1099, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4741769193568133877" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6cd9aabc851a51" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17810228835473984161" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10863988127770820100" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17003272577663532603" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8010365120729574708" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10288828150235613408" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15064219472965065965" + } + }, + { + "_tag": "ByteArray", + "bytearray": "536b7113c98063abcc8da6" + }, + { + "_tag": "ByteArray", + "bytearray": "afb057fb28dc05649ae4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4404462856275966293" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30c93f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2308934248507764324" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6428c4b2ead338" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "faef8eb5fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15888057979060377941" + } + } + } + ] + }, + "cborHex": "bf1b41ce25f56584e2f59f476cd9aabc851a511bf72aa4c362d88aa11b96c4a3a46fd73e04ff1bebf7c2527ac67e3bd8669f1b6f2a88a2f643ed349f1b8ec942b0a9d548e01bd10edbcc089adced4b536b7113c98063abcc8da64aafb057fb28dc05649ae41b3d1fcba1c6bb3955ffff4330c93fd8669f1b200afb773c09ee649f476428c4b2ead338ffff45faef8eb5fe1bdc7db88dacb45955ff", + "cborBytes": [ + 191, 27, 65, 206, 37, 245, 101, 132, 226, 245, 159, 71, 108, 217, 170, 188, 133, 26, 81, 27, 247, 42, 164, 195, + 98, 216, 138, 161, 27, 150, 196, 163, 164, 111, 215, 62, 4, 255, 27, 235, 247, 194, 82, 122, 198, 126, 59, 216, + 102, 159, 27, 111, 42, 136, 162, 246, 67, 237, 52, 159, 27, 142, 201, 66, 176, 169, 213, 72, 224, 27, 209, 14, + 219, 204, 8, 154, 220, 237, 75, 83, 107, 113, 19, 201, 128, 99, 171, 204, 141, 166, 74, 175, 176, 87, 251, 40, + 220, 5, 100, 154, 228, 27, 61, 31, 203, 161, 198, 187, 57, 85, 255, 255, 67, 48, 201, 63, 216, 102, 159, 27, 32, + 10, 251, 119, 60, 9, 238, 100, 159, 71, 100, 40, 196, 178, 234, 211, 56, 255, 255, 69, 250, 239, 142, 181, 254, + 27, 220, 125, 184, 141, 172, 180, 89, 85, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1100, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0d7f4d534bc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2b35801e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2030644003674855103" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0805831" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98de9f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd52ebf4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9b805cc85ab2158" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35df4e0d4fe3bd0709" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb23cbe06c6ef93e025c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10174888365967678268" + } + } + } + ] + }, + "cborHex": "bf415e46f0d7f4d534bc45b2b35801e11b1c2e4bf6685116bf44c08058314398de9f44cd52ebf4bf48e9b805cc85ab21584935df4e0d4fe3bd0709ff4aeb23cbe06c6ef93e025c1b8d34770f5ac21b3cff", + "cborBytes": [ + 191, 65, 94, 70, 240, 215, 244, 213, 52, 188, 69, 178, 179, 88, 1, 225, 27, 28, 46, 75, 246, 104, 81, 22, 191, 68, + 192, 128, 88, 49, 67, 152, 222, 159, 68, 205, 82, 235, 244, 191, 72, 233, 184, 5, 204, 133, 171, 33, 88, 73, 53, + 223, 78, 13, 79, 227, 189, 7, 9, 255, 74, 235, 35, 203, 224, 108, 110, 249, 62, 2, 92, 27, 141, 52, 119, 15, 90, + 194, 27, 60, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1101, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fa319f7f487a2fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15353585183869840871" + } + } + } + ] + }, + "cborHex": "bf480fa319f7f487a2fa1bd512e460c1432de7ff", + "cborBytes": [191, 72, 15, 163, 25, 247, 244, 135, 162, 250, 27, 213, 18, 228, 96, 193, 67, 45, 231, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1102, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3600441653846632757" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9081340437417548961" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10997138803095660580" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "738559" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1160499747036811897" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf20bcdbdbb2e79cf02e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18044078895322815052" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c957ab31b8eb81e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f5b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb61703e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13348461515068262107" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe03f2b4f511cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10353433616339254432" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b31f7569bb40c69351b7e07670348a9dca11b989daf79e02e6824bf437385591b101aec5f100f52794abf20bcdbdbb2e79cf02e1bfa69722756d6da4c48c957ab31b8eb81e9423f5b44fb61703e1bb93f4306579dc6db47fe03f2b4f511cb1b8faec904eb7d3ca0ffff", + "cborBytes": [ + 191, 27, 49, 247, 86, 155, 180, 12, 105, 53, 27, 126, 7, 103, 3, 72, 169, 220, 161, 27, 152, 157, 175, 121, 224, + 46, 104, 36, 191, 67, 115, 133, 89, 27, 16, 26, 236, 95, 16, 15, 82, 121, 74, 191, 32, 188, 219, 219, 178, 231, + 156, 240, 46, 27, 250, 105, 114, 39, 86, 214, 218, 76, 72, 201, 87, 171, 49, 184, 235, 129, 233, 66, 63, 91, 68, + 251, 97, 112, 62, 27, 185, 63, 67, 6, 87, 157, 198, 219, 71, 254, 3, 242, 180, 245, 17, 203, 27, 143, 174, 201, 4, + 235, 125, 60, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1103, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "156107" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "910d80dfa983c1ba60ce" + } + ] + } + } + ] + }, + "cborHex": "bf43156107d905019f4a910d80dfa983c1ba60ceffff", + "cborBytes": [191, 67, 21, 97, 7, 217, 5, 1, 159, 74, 145, 13, 128, 223, 169, 131, 193, 186, 96, 206, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1104, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6087729328467838546" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd790df69b1df975fd" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11500843824450805637" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9822580266337537205" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a8e572842a96f8747a035a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14413196938032689113" + } + } + ] + } + } + ] + }, + "cborHex": "bf0001109f1b547bf591f00d865249fd790df69b1df975fdff1b9f9b348635a29f85d8669f1b8850d0b5c0cf8cb59f4ba8e572842a96f8747a035a1bc805f640312fafd9ffffff", + "cborBytes": [ + 191, 0, 1, 16, 159, 27, 84, 123, 245, 145, 240, 13, 134, 82, 73, 253, 121, 13, 246, 155, 29, 249, 117, 253, 255, + 27, 159, 155, 52, 134, 53, 162, 159, 133, 216, 102, 159, 27, 136, 80, 208, 181, 192, 207, 140, 181, 159, 75, 168, + 229, 114, 132, 42, 150, 248, 116, 122, 3, 90, 27, 200, 5, 246, 64, 49, 47, 175, 217, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1105, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9348861737600443807" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91d77620fee113" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11404331737425539809" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "143796baf8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2059532046200303349" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14499453683276941148" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9afb06b1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3191989143354039070" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15955585337671880845" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11380600056493614947" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12080137635858674690" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12082180004243815064" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "faef28551f272a298f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12657097314254385935" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4744f5e869" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a119e8582962b71" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2449971491914919263" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b81bdd437cbea659f4791d77620fee1131b9e44534addf672e19f45143796baf81b1c94ed7bf14d6ef5ff1bc938684db4f3875cbf02449afb06b11bffffffffffffffef1b2c4c3936c8855b1eff1bdd6da0540b5d108dbf1b9df003745217a7631ba7a5452d2f2ef4021ba7ac86b32147ba9849faef28551f272a298f1bafa70af277aef30f454744f5e869ff1bfffffffffffffffb486a119e8582962b711bfffffffffffffffdd8669f1b22000c17656c2d5f80ffff", + "cborBytes": [ + 191, 27, 129, 189, 212, 55, 203, 234, 101, 159, 71, 145, 215, 118, 32, 254, 225, 19, 27, 158, 68, 83, 74, 221, + 246, 114, 225, 159, 69, 20, 55, 150, 186, 248, 27, 28, 148, 237, 123, 241, 77, 110, 245, 255, 27, 201, 56, 104, + 77, 180, 243, 135, 92, 191, 2, 68, 154, 251, 6, 177, 27, 255, 255, 255, 255, 255, 255, 255, 239, 27, 44, 76, 57, + 54, 200, 133, 91, 30, 255, 27, 221, 109, 160, 84, 11, 93, 16, 141, 191, 27, 157, 240, 3, 116, 82, 23, 167, 99, 27, + 167, 165, 69, 45, 47, 46, 244, 2, 27, 167, 172, 134, 179, 33, 71, 186, 152, 73, 250, 239, 40, 85, 31, 39, 42, 41, + 143, 27, 175, 167, 10, 242, 119, 174, 243, 15, 69, 71, 68, 245, 232, 105, 255, 27, 255, 255, 255, 255, 255, 255, + 255, 251, 72, 106, 17, 158, 133, 130, 150, 43, 113, 27, 255, 255, 255, 255, 255, 255, 255, 253, 216, 102, 159, 27, + 34, 0, 12, 23, 101, 108, 45, 95, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1106, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "98e2fc66405da3d237d334" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + } + ] + }, + "cborHex": "bf4b98e2fc66405da3d237d3341bfffffffffffffffeff", + "cborBytes": [ + 191, 75, 152, 226, 252, 102, 64, 93, 163, 210, 55, 211, 52, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1107, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0811b22e07" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7627297153559580596" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "feffda" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7421405977490491341" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf450811b22e07bf1b69d99a599a444fb41bfffffffffffffff143feffda1b66fe216a8e4807cdffff", + "cborBytes": [ + 191, 69, 8, 17, 178, 46, 7, 191, 27, 105, 217, 154, 89, 154, 68, 79, 180, 27, 255, 255, 255, 255, 255, 255, 255, + 241, 67, 254, 255, 218, 27, 102, 254, 33, 106, 142, 72, 7, 205, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1108, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5551747105891083395" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6402175402615210775" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2149789186312453605" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13765927610580992882" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "430801803339661067" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3feec7a52b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11626959852749413827" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13699217805391771791" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b4d0bc4941170e483d8669f1b58d9189bc69f83179f1b1dd595dff8213de51bbf0a663a106c03721b05fa83f528a87f0b453feec7a52bffff1ba15b426240db5dc3a01bbe1d66032f15388fa0ff", + "cborBytes": [ + 191, 27, 77, 11, 196, 148, 17, 112, 228, 131, 216, 102, 159, 27, 88, 217, 24, 155, 198, 159, 131, 23, 159, 27, 29, + 213, 149, 223, 248, 33, 61, 229, 27, 191, 10, 102, 58, 16, 108, 3, 114, 27, 5, 250, 131, 245, 40, 168, 127, 11, + 69, 63, 238, 199, 165, 43, 255, 255, 27, 161, 91, 66, 98, 64, 219, 93, 195, 160, 27, 190, 29, 102, 3, 47, 21, 56, + 143, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1109, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10885853599891531088" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17716477121335952426" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13305074107245861366" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b9712522c627125501bf5dd92137090842a1bb8a51e6840a319f6a0ff", + "cborBytes": [ + 191, 27, 151, 18, 82, 44, 98, 113, 37, 80, 27, 245, 221, 146, 19, 112, 144, 132, 42, 27, 184, 165, 30, 104, 64, + 163, 25, 246, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1110, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11973312543997133551" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4913879745866828864" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "681595655567311449" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02cfe570d69ad0481a34162e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6247844527953772206" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1ba629c05249ad82efbf1b44319b9811610c401b097583a3328a02594c02cfe570d69ad0481a34162e1b56b4cd7ee48d7eaeffff", + "cborBytes": [ + 191, 27, 166, 41, 192, 82, 73, 173, 130, 239, 191, 27, 68, 49, 155, 152, 17, 97, 12, 64, 27, 9, 117, 131, 163, 50, + 138, 2, 89, 76, 2, 207, 229, 112, 214, 154, 208, 72, 26, 52, 22, 46, 27, 86, 180, 205, 126, 228, 141, 126, 174, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1111, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4230149670117270229" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15216961745131346350" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16611453967080228464" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16425944471070491683" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3014964288785221175" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5d3e720149c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9d1f54b4b56bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d5664" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5987250957672342394" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6163804273295220682" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "128ba0287c5012a268d78845" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11230624480996933740" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e587cd78cdc67612b56a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "740d4df579af0b" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15647580581300777321" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16370983906055330201" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11869059226302687983" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3ab482b6721362d5bf1bd32d8215934319ae1be687bd5f2e9206701be3f4ad77d272c4231b29d74e0bf3880637412546b5d3e720149c47a9d1f54b4b56bb439d5664ff1b5316fd06312d637a41601b558a3b544ecbdfcabf4c128ba0287c5012a268d788451b9bdb31768ba0c06c4ae587cd78cdc67612b56a47740d4df579af0bff1bd9275fa25ebbb169801be3316b20181099999f1ba4b75e7b39d82aefffff", + "cborBytes": [ + 191, 27, 58, 180, 130, 182, 114, 19, 98, 213, 191, 27, 211, 45, 130, 21, 147, 67, 25, 174, 27, 230, 135, 189, 95, + 46, 146, 6, 112, 27, 227, 244, 173, 119, 210, 114, 196, 35, 27, 41, 215, 78, 11, 243, 136, 6, 55, 65, 37, 70, 181, + 211, 231, 32, 20, 156, 71, 169, 209, 245, 75, 75, 86, 187, 67, 157, 86, 100, 255, 27, 83, 22, 253, 6, 49, 45, 99, + 122, 65, 96, 27, 85, 138, 59, 84, 78, 203, 223, 202, 191, 76, 18, 139, 160, 40, 124, 80, 18, 162, 104, 215, 136, + 69, 27, 155, 219, 49, 118, 139, 160, 192, 108, 74, 229, 135, 205, 120, 205, 198, 118, 18, 181, 106, 71, 116, 13, + 77, 245, 121, 175, 11, 255, 27, 217, 39, 95, 162, 94, 187, 177, 105, 128, 27, 227, 49, 107, 32, 24, 16, 153, 153, + 159, 27, 164, 183, 94, 123, 57, 216, 42, 239, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1112, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1543984127709250731" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13739452680804442699" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1937090654856791011" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e67326ab7c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83cf0f2640" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92400d36" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6a54d8e90bd0f0fd80f4" + }, + { + "_tag": "ByteArray", + "bytearray": "728aa837ca" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b156d55623ef384ab9f1bbeac576b1fa3224b1b1ae1edaffc77c3e345e67326ab7cff4583cf0f2640419a4492400d369f4a6a54d8e90bd0f0fd80f445728aa837caff41d1a0ff", + "cborBytes": [ + 191, 27, 21, 109, 85, 98, 62, 243, 132, 171, 159, 27, 190, 172, 87, 107, 31, 163, 34, 75, 27, 26, 225, 237, 175, + 252, 119, 195, 227, 69, 230, 115, 38, 171, 124, 255, 69, 131, 207, 15, 38, 64, 65, 154, 68, 146, 64, 13, 54, 159, + 74, 106, 84, 216, 233, 11, 208, 240, 253, 128, 244, 69, 114, 138, 168, 55, 202, 255, 65, 209, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1113, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a9f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4d" + }, + { + "_tag": "ByteArray", + "bytearray": "9c107f" + }, + { + "_tag": "ByteArray", + "bytearray": "9b6b0561daa3dd5441d0347a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6588380821285645647" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42f230744d4a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d1213b346" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95752e7a2e56" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15720168131056957815" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3df67a97ba174eef46b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "63288459792605743" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4763647424128397200" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7053ce1" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e39e692027103bda64188eb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d531" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe6228e06b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80" + } + } + ] + }, + "cborHex": "bf421a9f9f414d439c107f4c9b6b0561daa3dd5441d0347a1b5b6ea17341ba2d4fff4642f230744d4a452d1213b3464695752e7a2e561bda2941a04d10f9774aa3df67a97ba174eef46bd8669f1b00e0d884d451e22f9f1b421be017e660af9044d7053ce1ffff4ce39e692027103bda64188eb642d53145fe6228e06b4180ff", + "cborBytes": [ + 191, 66, 26, 159, 159, 65, 77, 67, 156, 16, 127, 76, 155, 107, 5, 97, 218, 163, 221, 84, 65, 208, 52, 122, 27, 91, + 110, 161, 115, 65, 186, 45, 79, 255, 70, 66, 242, 48, 116, 77, 74, 69, 45, 18, 19, 179, 70, 70, 149, 117, 46, 122, + 46, 86, 27, 218, 41, 65, 160, 77, 16, 249, 119, 74, 163, 223, 103, 169, 123, 161, 116, 238, 244, 107, 216, 102, + 159, 27, 0, 224, 216, 132, 212, 81, 226, 47, 159, 27, 66, 27, 224, 23, 230, 96, 175, 144, 68, 215, 5, 60, 225, + 255, 255, 76, 227, 158, 105, 32, 39, 16, 59, 218, 100, 24, 142, 182, 66, 213, 49, 69, 254, 98, 40, 224, 107, 65, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1114, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4096540920609309705" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10876760026742061500" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15824795087690824935" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16560095598071833579" + } + } + } + ] + }, + "cborHex": "bf1b38d9d6434cc504091b96f2039de520f9bc1bdb9cf749f5287ce71be5d147351194e3ebff", + "cborBytes": [ + 191, 27, 56, 217, 214, 67, 76, 197, 4, 9, 27, 150, 242, 3, 157, 229, 32, 249, 188, 27, 219, 156, 247, 73, 245, 40, + 124, 231, 27, 229, 209, 71, 53, 17, 148, 227, 235, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1115, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "616403819710325377" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8179418181900330724" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d31b7d8a498db8996a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8577262206137737201" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12127172496758649383" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f91d3d0218008035c7ae8dbe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1654660351788705273" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6b49d2" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13343391675212184050" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17974827033938444505" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13383101527455673927" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3490720765273735051" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14673019604861116373" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69fb" + } + } + ] + }, + "cborHex": "bf1b088de80218072281801b71832180018a66e49f49d31b7d8a498db8996aff1b77088e883e391ff1d8669f1ba84c5f221f2fb2279f4cf91d3d0218008035c7ae8dbe1b16f688d2bc49e5f9436b49d2ffff1bb92d400843ed39f2d8669f1bf97369f3e0fd40d980ff1bb9ba53eeb8fbae471b3071880a98387f8b1bcba10996f216dfd54269fbff", + "cborBytes": [ + 191, 27, 8, 141, 232, 2, 24, 7, 34, 129, 128, 27, 113, 131, 33, 128, 1, 138, 102, 228, 159, 73, 211, 27, 125, 138, + 73, 141, 184, 153, 106, 255, 27, 119, 8, 142, 136, 62, 57, 31, 241, 216, 102, 159, 27, 168, 76, 95, 34, 31, 47, + 178, 39, 159, 76, 249, 29, 61, 2, 24, 0, 128, 53, 199, 174, 141, 190, 27, 22, 246, 136, 210, 188, 73, 229, 249, + 67, 107, 73, 210, 255, 255, 27, 185, 45, 64, 8, 67, 237, 57, 242, 216, 102, 159, 27, 249, 115, 105, 243, 224, 253, + 64, 217, 128, 255, 27, 185, 186, 83, 238, 184, 251, 174, 71, 27, 48, 113, 136, 10, 152, 56, 127, 139, 27, 203, + 161, 9, 150, 242, 22, 223, 213, 66, 105, 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1116, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05ff6ef7fd02" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1303706710345387377" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "acb7b9b0" + }, + { + "_tag": "ByteArray", + "bytearray": "e6" + }, + { + "_tag": "ByteArray", + "bytearray": "fced4561a19c68b214a3833c" + }, + { + "_tag": "ByteArray", + "bytearray": "422944" + } + ] + } + } + ] + }, + "cborHex": "bf4605ff6ef7fd02d8669f1b1217b258816e0d719f44acb7b9b041e64cfced4561a19c68b214a3833c43422944ffffff", + "cborBytes": [ + 191, 70, 5, 255, 110, 247, 253, 2, 216, 102, 159, 27, 18, 23, 178, 88, 129, 110, 13, 113, 159, 68, 172, 183, 185, + 176, 65, 230, 76, 252, 237, 69, 97, 161, 156, 104, 178, 20, 163, 131, 60, 67, 66, 41, 68, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1117, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3681787817695164967" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5307839956855605405" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12411566005758858402" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ad5361845f12edeb160a5c" + }, + { + "_tag": "ByteArray", + "bytearray": "4ebf07319268442a0353" + }, + { + "_tag": "ByteArray", + "bytearray": "dcd642c4" + }, + { + "_tag": "ByteArray", + "bytearray": "45fb874dadc39b378af9e3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10451452956436488036" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17854583969437318640" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "adad33365132ccfebb8b2e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1375961810576814047" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3d1d2c387e460b05" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5775449049503570687" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6477772686245894555" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13173676132067872177" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4527748215231915176" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13342642592395806319" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14046489364017430393" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "77f77118f359" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8554192719490254965" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7231893544915387554" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15370818537016878358" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13754772301500434100" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fccd" + }, + { + "_tag": "ByteArray", + "bytearray": "c2a95a3c" + }, + { + "_tag": "ByteArray", + "bytearray": "f25674c3f876aa" + }, + { + "_tag": "ByteArray", + "bytearray": "106c330d9b8431099d" + } + ] + } + } + ] + }, + "cborHex": "bf1b331856836414ba27a01b49a93c519100c89d9f1bac3ebd85df9214a24bad5361845f12edeb160a5c4a4ebf07319268442a035344dcd642c44b45fb874dadc39b378af9e3ff1b910b0516f71a5f64d8669f1bf7c83985c6b1fdf09f4badad33365132ccfebb8b2e1b131865f9ffef2fdf483d1d2c387e460b051b5026844f96071aff1b59e5abeffb6a199bffff1bb6d24ca51df28db1d8669f1b3ed5cb03414ea4a89f1bb92a96bed4bfc66fffff1bc2ef27a7b38fbf799f4677f77118f3591b76b698f4d17308751b645cd8dce61f44a2ff1bd5501e0575e16516d8669f1bbee2c4884550c6b49f42fccd44c2a95a3c47f25674c3f876aa49106c330d9b8431099dffffff", + "cborBytes": [ + 191, 27, 51, 24, 86, 131, 100, 20, 186, 39, 160, 27, 73, 169, 60, 81, 145, 0, 200, 157, 159, 27, 172, 62, 189, + 133, 223, 146, 20, 162, 75, 173, 83, 97, 132, 95, 18, 237, 235, 22, 10, 92, 74, 78, 191, 7, 49, 146, 104, 68, 42, + 3, 83, 68, 220, 214, 66, 196, 75, 69, 251, 135, 77, 173, 195, 155, 55, 138, 249, 227, 255, 27, 145, 11, 5, 22, + 247, 26, 95, 100, 216, 102, 159, 27, 247, 200, 57, 133, 198, 177, 253, 240, 159, 75, 173, 173, 51, 54, 81, 50, + 204, 254, 187, 139, 46, 27, 19, 24, 101, 249, 255, 239, 47, 223, 72, 61, 29, 44, 56, 126, 70, 11, 5, 27, 80, 38, + 132, 79, 150, 7, 26, 255, 27, 89, 229, 171, 239, 251, 106, 25, 155, 255, 255, 27, 182, 210, 76, 165, 29, 242, 141, + 177, 216, 102, 159, 27, 62, 213, 203, 3, 65, 78, 164, 168, 159, 27, 185, 42, 150, 190, 212, 191, 198, 111, 255, + 255, 27, 194, 239, 39, 167, 179, 143, 191, 121, 159, 70, 119, 247, 113, 24, 243, 89, 27, 118, 182, 152, 244, 209, + 115, 8, 117, 27, 100, 92, 216, 220, 230, 31, 68, 162, 255, 27, 213, 80, 30, 5, 117, 225, 101, 22, 216, 102, 159, + 27, 190, 226, 196, 136, 69, 80, 198, 180, 159, 66, 252, 205, 68, 194, 169, 90, 60, 71, 242, 86, 116, 195, 248, + 118, 170, 73, 16, 108, 51, 13, 155, 132, 49, 9, 157, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1118, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15861801188393672263" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "176c060334ea9ddc7d047c18" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16615893226132126197" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14424584588804134940" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8053081913983119899" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee9e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d59235ff83bd668" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78abe8fc1338bacc1e26" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ef2dc6a3735b90bc2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16128625483611611488" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bdc2070243412de474c176c060334ea9ddc7d047c181be69782dab96cb9f5d8669f1bc82e6b42403e981c9f1b6fc24b556e16321bffff42ee9ebf487d59235ff83bd6684a78abe8fc1338bacc1e26499ef2dc6a3735b90bc21bdfd4636c99fba160ffff", + "cborBytes": [ + 191, 27, 220, 32, 112, 36, 52, 18, 222, 71, 76, 23, 108, 6, 3, 52, 234, 157, 220, 125, 4, 124, 24, 27, 230, 151, + 130, 218, 185, 108, 185, 245, 216, 102, 159, 27, 200, 46, 107, 66, 64, 62, 152, 28, 159, 27, 111, 194, 75, 85, + 110, 22, 50, 27, 255, 255, 66, 238, 158, 191, 72, 125, 89, 35, 95, 248, 59, 214, 104, 74, 120, 171, 232, 252, 19, + 56, 186, 204, 30, 38, 73, 158, 242, 220, 106, 55, 53, 185, 11, 194, 27, 223, 212, 99, 108, 153, 251, 161, 96, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1119, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9996652627570458072" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4535717382876620860" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11657905379084271671" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2326357500916970989" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10779849180266076294" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0bd9050b9f1b8abb3e99a94ffdd81b3ef21aedafece83cff1ba1c9332d116f0037801bffffffffffffffecbf1b2048e1d24eb8b5ed1b9599b7b7220b9886ffff", + "cborBytes": [ + 191, 11, 217, 5, 11, 159, 27, 138, 187, 62, 153, 169, 79, 253, 216, 27, 62, 242, 26, 237, 175, 236, 232, 60, 255, + 27, 161, 201, 51, 45, 17, 111, 0, 55, 128, 27, 255, 255, 255, 255, 255, 255, 255, 236, 191, 27, 32, 72, 225, 210, + 78, 184, 181, 237, 27, 149, 153, 183, 183, 34, 11, 152, 134, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1120, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01280532" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3143899498962297316" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07c70503" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6818766dd289" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3750432087203314203" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10645592340561698186" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4250588176859818334" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf3e741c13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "92af" + } + ] + } + } + ] + }, + "cborHex": "bf44012805321b2ba15fefed2d21e44407c70503a041624169466818766dd289d8669f1b340c361cd7fafa1b9f1b93bcbdd4bacc9d8a1b3afd1f6d2034695effff45bf3e741c1341e241f89f4292afffff", + "cborBytes": [ + 191, 68, 1, 40, 5, 50, 27, 43, 161, 95, 239, 237, 45, 33, 228, 68, 7, 199, 5, 3, 160, 65, 98, 65, 105, 70, 104, + 24, 118, 109, 210, 137, 216, 102, 159, 27, 52, 12, 54, 28, 215, 250, 250, 27, 159, 27, 147, 188, 189, 212, 186, + 204, 157, 138, 27, 58, 253, 31, 109, 32, 52, 105, 94, 255, 255, 69, 191, 62, 116, 28, 19, 65, 226, 65, 248, 159, + 66, 146, 175, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1121, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ab8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5313989176593592848" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12803610751763473887" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12828152930525130165" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11966024809556499526" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1603156143622747548" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae1384169edde7d62143cb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5244106333711576156" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11720683935595135464" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6782506147213555921" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e05f6f19012e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11296218259351856137" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13277647842448505619" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14030529802578177607" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be24911474f6d2e3b23c2c42" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76303c9199401e5344b8c5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "178907477529218937" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4629998407866333161" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2391215530627092511" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4846747799574287798" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7706637913679616741" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44341b12" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84f6efd271d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15050464600427841362" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e10405f8d19bfdd5725fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17672175338048750536" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d79e2fbf7552ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1bc7f7a82abef" + } + } + ] + }, + "cborHex": "bf421ab8bf1b49bf15005b21b2101bb1af90246d3be5df1bb206c11fb4562db51ba60fdc2a63205c46ff4139bf1b163f8e04cc1e759c4bae1384169edde7d62143cb1b48c6ceed11412c5c1ba2a83bf0c9c681e81b5e204d67d79138d146e05f6f19012e1b9cc43aa82df2e4091bb843ae5d5ddffb131bc2b67484bd342e474cbe24911474f6d2e3b23c2c42ff4b76303c9199401e5344b8c5bf1b027b9b6725ca4f791b40410f056b7f37e91b212f4ddb1c6cd01f1b43431b71cd8815b61b6af37a59d96e5ae54444341b12ff4684f6efd271d91bd0ddfdd03517c7524b9e10405f8d19bfdd5725fb1bf5402dd6b8d083c847d79e2fbf7552ae47d1bc7f7a82abefff", + "cborBytes": [ + 191, 66, 26, 184, 191, 27, 73, 191, 21, 0, 91, 33, 178, 16, 27, 177, 175, 144, 36, 109, 59, 229, 223, 27, 178, 6, + 193, 31, 180, 86, 45, 181, 27, 166, 15, 220, 42, 99, 32, 92, 70, 255, 65, 57, 191, 27, 22, 63, 142, 4, 204, 30, + 117, 156, 75, 174, 19, 132, 22, 158, 221, 231, 214, 33, 67, 203, 27, 72, 198, 206, 237, 17, 65, 44, 92, 27, 162, + 168, 59, 240, 201, 198, 129, 232, 27, 94, 32, 77, 103, 215, 145, 56, 209, 70, 224, 95, 111, 25, 1, 46, 27, 156, + 196, 58, 168, 45, 242, 228, 9, 27, 184, 67, 174, 93, 93, 223, 251, 19, 27, 194, 182, 116, 132, 189, 52, 46, 71, + 76, 190, 36, 145, 20, 116, 246, 210, 227, 178, 60, 44, 66, 255, 75, 118, 48, 60, 145, 153, 64, 30, 83, 68, 184, + 197, 191, 27, 2, 123, 155, 103, 37, 202, 79, 121, 27, 64, 65, 15, 5, 107, 127, 55, 233, 27, 33, 47, 77, 219, 28, + 108, 208, 31, 27, 67, 67, 27, 113, 205, 136, 21, 182, 27, 106, 243, 122, 89, 217, 110, 90, 229, 68, 68, 52, 27, + 18, 255, 70, 132, 246, 239, 210, 113, 217, 27, 208, 221, 253, 208, 53, 23, 199, 82, 75, 158, 16, 64, 95, 141, 25, + 191, 221, 87, 37, 251, 27, 245, 64, 45, 214, 184, 208, 131, 200, 71, 215, 158, 47, 191, 117, 82, 174, 71, 209, + 188, 127, 122, 130, 171, 239, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1122, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2906944222512363674" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "ByteArray", + "bytearray": "759957e2bae8b5" + }, + { + "_tag": "ByteArray", + "bytearray": "3b02feb22faa2c" + } + ] + } + } + ] + }, + "cborHex": "bf1b28578a5e64b9389a9f41f81bffffffffffffffec0d47759957e2bae8b5473b02feb22faa2cffff", + "cborBytes": [ + 191, 27, 40, 87, 138, 94, 100, 185, 56, 154, 159, 65, 248, 27, 255, 255, 255, 255, 255, 255, 255, 236, 13, 71, + 117, 153, 87, 226, 186, 232, 181, 71, 59, 2, 254, 178, 47, 170, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1123, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8ec53f928fa" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03" + }, + { + "_tag": "ByteArray", + "bytearray": "8de000686655604a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1920528583977224970" + } + } + ] + } + } + ] + }, + "cborHex": "bf46f8ec53f928fa9f4103488de000686655604a1b1aa716925cf24b0affff", + "cborBytes": [ + 191, 70, 248, 236, 83, 249, 40, 250, 159, 65, 3, 72, 141, 224, 0, 104, 102, 85, 96, 74, 27, 26, 167, 22, 146, 92, + 242, 75, 10, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1124, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1839675871990368948" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4674103813756031501" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13563778638615417381" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2425812669152552046" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16148163546877032310" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "20a7060506ff060568" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4171558136236201942" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2203233484431185683" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7529021598661238513" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e010756e27edfbbf78" + } + } + ] + }, + "cborHex": "bf0341ff0d1bfffffffffffffff21b1987d77563d7cab4bf1b40ddc0a7763a120d1bbc3c38ceceb41225ff1b21aa37c5247ae46ed8669f1be019cd30728477769f4920a7060506ff06056811ffff1b39e45a05e63fd7d6d8669f1b1e93752e4cc4571380ff1b687c7540e6725ef149e010756e27edfbbf78ff", + "cborBytes": [ + 191, 3, 65, 255, 13, 27, 255, 255, 255, 255, 255, 255, 255, 242, 27, 25, 135, 215, 117, 99, 215, 202, 180, 191, + 27, 64, 221, 192, 167, 118, 58, 18, 13, 27, 188, 60, 56, 206, 206, 180, 18, 37, 255, 27, 33, 170, 55, 197, 36, + 122, 228, 110, 216, 102, 159, 27, 224, 25, 205, 48, 114, 132, 119, 118, 159, 73, 32, 167, 6, 5, 6, 255, 6, 5, 104, + 17, 255, 255, 27, 57, 228, 90, 5, 230, 63, 215, 214, 216, 102, 159, 27, 30, 147, 117, 46, 76, 196, 87, 19, 128, + 255, 27, 104, 124, 117, 64, 230, 114, 94, 241, 73, 224, 16, 117, 110, 39, 237, 251, 191, 120, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1125, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0001c7" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01fda20701" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1008733277629780830" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00183e" + }, + { + "_tag": "ByteArray", + "bytearray": "7b731f4e3a62f5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16938238583757666650" + } + }, + { + "_tag": "ByteArray", + "bytearray": "97cf6c6c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "292ac7a210354f9238b7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bfe21172f8c96a3a73fe" + }, + { + "_tag": "ByteArray", + "bytearray": "dfdaea4ff8" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e0522bb86a9333387c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c046b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4b0029fa7832f5cce" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6a5176" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12531992094640351492" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa8a0711" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04aab2" + } + } + ] + }, + "cborHex": "bf430001c7804501fda207019f1b0dffbd924e3d135e4300183e477b731f4e3a62f51beb10b63fd1b0f95a4497cf6c6cff4a292ac7a210354f9238b7d905019f4abfe21172f8c96a3a73fe45dfdaea4ff8ff4a3e0522bb86a9333387c2431c046b49f4b0029fa7832f5cced9050b9f436a51761badea9469a90aa904ff44fa8a07114304aab2ff", + "cborBytes": [ + 191, 67, 0, 1, 199, 128, 69, 1, 253, 162, 7, 1, 159, 27, 13, 255, 189, 146, 78, 61, 19, 94, 67, 0, 24, 62, 71, + 123, 115, 31, 78, 58, 98, 245, 27, 235, 16, 182, 63, 209, 176, 249, 90, 68, 151, 207, 108, 108, 255, 74, 41, 42, + 199, 162, 16, 53, 79, 146, 56, 183, 217, 5, 1, 159, 74, 191, 226, 17, 114, 248, 201, 106, 58, 115, 254, 69, 223, + 218, 234, 79, 248, 255, 74, 62, 5, 34, 187, 134, 169, 51, 51, 135, 194, 67, 28, 4, 107, 73, 244, 176, 2, 159, 167, + 131, 47, 92, 206, 217, 5, 11, 159, 67, 106, 81, 118, 27, 173, 234, 148, 105, 169, 10, 169, 4, 255, 68, 250, 138, + 7, 17, 67, 4, 170, 178, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1126, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1421818980642898218" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0350cecc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15627022187393911367" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8452523022796444282" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3037aab8" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6211805960426787445" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1c94c859ce853e2f55cb4bf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11403214436818644538" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14651867339040119431" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14222341408280901965" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15933716198148532205" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4e50d9672b" + } + ] + } + } + ] + }, + "cborHex": "bf1b13bb50d46c20c12a9f440350cecc1bd8de55e248c30a471b754d64e7e597d27a443037aab8ff1b5634c49c04e492754cb1c94c859ce853e2f55cb4bf1b9e405b1d0c2e6e3a1bcb55e3b747a25a871bc55fe8285ae9794da01bdd1fee763687e7ed9f454e50d9672bffff", + "cborBytes": [ + 191, 27, 19, 187, 80, 212, 108, 32, 193, 42, 159, 68, 3, 80, 206, 204, 27, 216, 222, 85, 226, 72, 195, 10, 71, 27, + 117, 77, 100, 231, 229, 151, 210, 122, 68, 48, 55, 170, 184, 255, 27, 86, 52, 196, 156, 4, 228, 146, 117, 76, 177, + 201, 76, 133, 156, 232, 83, 226, 245, 92, 180, 191, 27, 158, 64, 91, 29, 12, 46, 110, 58, 27, 203, 85, 227, 183, + 71, 162, 90, 135, 27, 197, 95, 232, 40, 90, 233, 121, 77, 160, 27, 221, 31, 238, 118, 54, 135, 231, 237, 159, 69, + 78, 80, 217, 103, 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1127, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9054891534620900508" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb23b1fb0ff2a8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12127234947402891783" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b7da96fe038c53c9c47eb23b1fb0ff2a81ba84c97ee8ba70207a0ff", + "cborBytes": [ + 191, 27, 125, 169, 111, 224, 56, 197, 60, 156, 71, 235, 35, 177, 251, 15, 242, 168, 27, 168, 76, 151, 238, 139, + 167, 2, 7, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1128, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8938085561536140784" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "163818815702507274" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17688855568000042173" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17066104182185092985" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b7c0a75765368d5f0d8669f1b024600584d791f0a80ff1bf57b706b65d544bdd8669f1becd6fb5566f3677980ffff", + "cborBytes": [ + 191, 27, 124, 10, 117, 118, 83, 104, 213, 240, 216, 102, 159, 27, 2, 70, 0, 88, 77, 121, 31, 10, 128, 255, 27, + 245, 123, 112, 107, 101, 213, 68, 189, 216, 102, 159, 27, 236, 214, 251, 85, 102, 243, 103, 121, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1129, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6493730729519416396" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7396d9f7226c5c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "010407f1f8fd2d9cfd06f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16080671321587959403" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "044b09fa980804d4fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45a98bbf04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f50d29d1a56b42031f5e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5227dcbbf53c80dadb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f76b247742ac0ef62c8b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "541139" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff5003fc37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7396915026173358018" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf02d8669f1bfffffffffffffffe9f1b5a1e5db1780b044c477396d9f7226c5cffff1bfffffffffffffffebf4b010407f1f8fd2d9cfd06f51bdf2a055e310fc66b49044b09fa980804d4fd0f4545a98bbf044af50d29d1a56b42031f5e495227dcbbf53c80dadb4af76b247742ac0ef62c8b41d34354113945ff5003fc371b66a71f0698cfefc2ffff", + "cborBytes": [ + 191, 2, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 27, 90, 30, 93, 177, 120, 11, 4, 76, 71, + 115, 150, 217, 247, 34, 108, 92, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 254, 191, 75, 1, 4, 7, 241, 248, + 253, 45, 156, 253, 6, 245, 27, 223, 42, 5, 94, 49, 15, 198, 107, 73, 4, 75, 9, 250, 152, 8, 4, 212, 253, 15, 69, + 69, 169, 139, 191, 4, 74, 245, 13, 41, 209, 165, 107, 66, 3, 31, 94, 73, 82, 39, 220, 187, 245, 60, 128, 218, 219, + 74, 247, 107, 36, 119, 66, 172, 14, 246, 44, 139, 65, 211, 67, 84, 17, 57, 69, 255, 80, 3, 252, 55, 27, 102, 167, + 31, 6, 152, 207, 239, 194, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1130, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02dcff0203fafa0604f1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4633946243243626140" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "baa8410b77cad556" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e67fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1fb07af" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2bffe3" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "03edd1e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0506" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bb70455fa1dff" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3351724ccd0c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6764748953000745118" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35e87b3d86400d61e944f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4277359428226936386" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89bec1927b374ca6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a02dcff0203fafa0604f1bf1b404f158e78cace9c48baa8410b77cad556435e67fb0244a1fb07af432bffe3ff4403edd1e8420506472bb70455fa1dffbf463351724ccd0c1b5de13754e24e189e4b35e87b3d86400d61e944f41b3b5c3bbcd0226e42ff4889bec1927b374ca69f09ffff", + "cborBytes": [ + 191, 74, 2, 220, 255, 2, 3, 250, 250, 6, 4, 241, 191, 27, 64, 79, 21, 142, 120, 202, 206, 156, 72, 186, 168, 65, + 11, 119, 202, 213, 86, 67, 94, 103, 251, 2, 68, 161, 251, 7, 175, 67, 43, 255, 227, 255, 68, 3, 237, 209, 232, 66, + 5, 6, 71, 43, 183, 4, 85, 250, 29, 255, 191, 70, 51, 81, 114, 76, 205, 12, 27, 93, 225, 55, 84, 226, 78, 24, 158, + 75, 53, 232, 123, 61, 134, 64, 13, 97, 233, 68, 244, 27, 59, 92, 59, 188, 208, 34, 110, 66, 255, 72, 137, 190, + 193, 146, 123, 55, 76, 166, 159, 9, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1131, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + } + ] + }, + "cborHex": "bf41101bfffffffffffffffeff", + "cborBytes": [191, 65, 16, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1132, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7df96c70bcdb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "806f1bc4056a04dd5488" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef07174e04f88304" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "baa5fa30b5cbbba038d2" + } + } + ] + }, + "cborHex": "bf467df96c70bcdbd905039f4a806f1bc4056a04dd5488ff48ef07174e04f883044abaa5fa30b5cbbba038d2ff", + "cborBytes": [ + 191, 70, 125, 249, 108, 112, 188, 219, 217, 5, 3, 159, 74, 128, 111, 27, 196, 5, 106, 4, 221, 84, 136, 255, 72, + 239, 7, 23, 78, 4, 248, 131, 4, 74, 186, 165, 250, 48, 181, 203, 187, 160, 56, 210, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1133, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2643339762315152212" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5936077828614759451" + } + }, + { + "_tag": "ByteArray", + "bytearray": "184865b0b1a3d090" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b05445cb05f717c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03079007cd9f01" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7999441760368890439" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abac0401e6cd2f6909" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + } + ] + } + } + ] + }, + "cborHex": "bf059f1b24af07824175cb541b52612f559da7a41b48184865b0b1a3d090ff480b05445cb05f717cbf0d4703079007cd9f01141b6f03b9e5f036924749abac0401e6cd2f690941f9ffff", + "cborBytes": [ + 191, 5, 159, 27, 36, 175, 7, 130, 65, 117, 203, 84, 27, 82, 97, 47, 85, 157, 167, 164, 27, 72, 24, 72, 101, 176, + 177, 163, 208, 144, 255, 72, 11, 5, 68, 92, 176, 95, 113, 124, 191, 13, 71, 3, 7, 144, 7, 205, 159, 1, 20, 27, + 111, 3, 185, 229, 240, 54, 146, 71, 73, 171, 172, 4, 1, 230, 205, 47, 105, 9, 65, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1134, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3816758999029622254" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "20a6da4c13" + } + ] + } + } + ] + }, + "cborHex": "bf061b34f7da166a6fa5ee0f9f4520a6da4c13ffff", + "cborBytes": [191, 6, 27, 52, 247, 218, 22, 106, 111, 165, 238, 15, 159, 69, 32, 166, 218, 76, 19, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1135, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2336468305958785685" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13986612788963904631" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11555792496584077279" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "050c8d9a71b60835bf5e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12025851764518653837" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "212afe2146893f57f156e3" + } + } + ] + }, + "cborHex": "bf1b206ccd8b8da1d2951bc21a6e3a31210c771ba05e6c0ce904afdf4a050c8d9a71b60835bf5e1ba6e46876d1a38f8d4b212afe2146893f57f156e3ff", + "cborBytes": [ + 191, 27, 32, 108, 205, 139, 141, 161, 210, 149, 27, 194, 26, 110, 58, 49, 33, 12, 119, 27, 160, 94, 108, 12, 233, + 4, 175, 223, 74, 5, 12, 141, 154, 113, 182, 8, 53, 191, 94, 27, 166, 228, 104, 118, 209, 163, 143, 141, 75, 33, + 42, 254, 33, 70, 137, 63, 87, 241, 86, 227, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1136, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14665222510149771536" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "001c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ec008" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0653bdda76" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8572774652173916962" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e962a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8c5fdb8d599714879b7ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cdd148" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fee29853390b7e281c62" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf5a" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bcb85562c5d8a2110bf42001c436ec008450653bdda761b76f89d202a4c9b224132436e962a4bf8c5fdb8d599714879b7ec43cdd1484afee29853390b7e281c6242cf5affff", + "cborBytes": [ + 191, 27, 203, 133, 86, 44, 93, 138, 33, 16, 191, 66, 0, 28, 67, 110, 192, 8, 69, 6, 83, 189, 218, 118, 27, 118, + 248, 157, 32, 42, 76, 155, 34, 65, 50, 67, 110, 150, 42, 75, 248, 197, 253, 184, 213, 153, 113, 72, 121, 183, 236, + 67, 205, 209, 72, 74, 254, 226, 152, 83, 57, 11, 126, 40, 28, 98, 66, 207, 90, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1137, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7579127969539016487" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02000503" + }, + { + "_tag": "ByteArray", + "bytearray": "04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b692e78bb7b99c727a01bfffffffffffffff89f440200050341040cffff", + "cborBytes": [ + 191, 27, 105, 46, 120, 187, 123, 153, 199, 39, 160, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 68, 2, 0, 5, + 3, 65, 4, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1138, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1932318464234783360" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "529453942613135734" + } + } + } + ] + }, + "cborHex": "bf1b1ad0f967c5a482801b0758ff8e3e62d176ff", + "cborBytes": [191, 27, 26, 208, 249, 103, 197, 164, 130, 128, 27, 7, 88, 255, 142, 62, 98, 209, 118, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1139, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17885739634333901408" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2926763178572908362" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "759437" + }, + { + "_tag": "ByteArray", + "bytearray": "7dfe2c0fdc6de5f8b18a69a3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2489591533957185268" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10437048023203046929" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "739834" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91059f6d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "437973236160000181" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b2918f45bfd88" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1188949582379626546" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11338882874415609562" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3240803618880749776" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed19" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3287325802990617818" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "863222237978943382" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13399506207168114114" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12959578804919840942" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15668100914051118804" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13821402021994950006" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c213218c51cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5010703022863256375" + } + } + } + ] + }, + "cborHex": "bf1bf836e96f4998e260d8669f1b289df39ab088074a9f437594374c7dfe2c0fdc6de5f8b18a69a31b228cce4f49567ef41b90d7d7e116b5e611ffff437398344260f74491059f6dbf1b0613fe567a71f0b5473b2918f45bfd881b107fff58899630321b9d5bcde5f74d76da1b2cf9a5b88a3000d042ed191b2d9eed669c3b44da1b0bfac80d48f3df961bb9f49be6dbe5adc21bb3d9ac42a1edb0ae1bd97046c4a6fd76d41bbfcf7be8fadfed76ff46c213218c51cb1b458997d9f8bd8b37ff", + "cborBytes": [ + 191, 27, 248, 54, 233, 111, 73, 152, 226, 96, 216, 102, 159, 27, 40, 157, 243, 154, 176, 136, 7, 74, 159, 67, 117, + 148, 55, 76, 125, 254, 44, 15, 220, 109, 229, 248, 177, 138, 105, 163, 27, 34, 140, 206, 79, 73, 86, 126, 244, 27, + 144, 215, 215, 225, 22, 181, 230, 17, 255, 255, 67, 115, 152, 52, 66, 96, 247, 68, 145, 5, 159, 109, 191, 27, 6, + 19, 254, 86, 122, 113, 240, 181, 71, 59, 41, 24, 244, 91, 253, 136, 27, 16, 127, 255, 88, 137, 150, 48, 50, 27, + 157, 91, 205, 229, 247, 77, 118, 218, 27, 44, 249, 165, 184, 138, 48, 0, 208, 66, 237, 25, 27, 45, 158, 237, 102, + 156, 59, 68, 218, 27, 11, 250, 200, 13, 72, 243, 223, 150, 27, 185, 244, 155, 230, 219, 229, 173, 194, 27, 179, + 217, 172, 66, 161, 237, 176, 174, 27, 217, 112, 70, 196, 166, 253, 118, 212, 27, 191, 207, 123, 232, 250, 223, + 237, 118, 255, 70, 194, 19, 33, 140, 81, 203, 27, 69, 137, 151, 217, 248, 189, 139, 55, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1140, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03b93eb7e63b59a185b9c9b1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "318edf46b48939651a39d9ae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "230728088324597405" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0db542" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36e012" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5606548731663429683" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14346142203638734163" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2070589716210694234" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ba709c2e7297856c224e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "658f7f82f47556bdefc9a8ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fef6b5189fb3c45d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9aa90ee2" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b32eb32f3b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13564185548112293008" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a4397411049209" + }, + { + "_tag": "ByteArray", + "bytearray": "282fd98a67dea4e1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11134457006555612500" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4142757635145331263" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c688f768e9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11692937997550498844" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5207917569818478846" + } + }, + { + "_tag": "ByteArray", + "bytearray": "65780deaddac1c94b0df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2196614905067769589" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6405060645599278607" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c03b93eb7e63b59a185b9c9b19f4c318edf46b48939651a39d9ae1b0333b5f9504ae69d430db542ff4336e012d8669f1b4dce765ddeb730339f1bc717bc5339205d534228b71b1cbc36605e50b85a4aba709c2e7297856c224effff4c658f7f82f47556bdefc9a8ff48fef6b5189fb3c45d449aa90ee2a045b32eb32f3bd8669f1bbc3daae3ceb86c909f47a439741104920948282fd98a67dea4e11b9a8589a7929b45541b397e081eb15ff23fffff45c688f768e99f1ba245a9282caa341c1b48463d6fe08bc8fe4a65780deaddac1c94b0df1b1e7bf19e34e48ef51b58e358b8c1c7760fffff", + "cborBytes": [ + 191, 76, 3, 185, 62, 183, 230, 59, 89, 161, 133, 185, 201, 177, 159, 76, 49, 142, 223, 70, 180, 137, 57, 101, 26, + 57, 217, 174, 27, 3, 51, 181, 249, 80, 74, 230, 157, 67, 13, 181, 66, 255, 67, 54, 224, 18, 216, 102, 159, 27, 77, + 206, 118, 93, 222, 183, 48, 51, 159, 27, 199, 23, 188, 83, 57, 32, 93, 83, 66, 40, 183, 27, 28, 188, 54, 96, 94, + 80, 184, 90, 74, 186, 112, 156, 46, 114, 151, 133, 108, 34, 78, 255, 255, 76, 101, 143, 127, 130, 244, 117, 86, + 189, 239, 201, 168, 255, 72, 254, 246, 181, 24, 159, 179, 196, 93, 68, 154, 169, 14, 226, 160, 69, 179, 46, 179, + 47, 59, 216, 102, 159, 27, 188, 61, 170, 227, 206, 184, 108, 144, 159, 71, 164, 57, 116, 17, 4, 146, 9, 72, 40, + 47, 217, 138, 103, 222, 164, 225, 27, 154, 133, 137, 167, 146, 155, 69, 84, 27, 57, 126, 8, 30, 177, 95, 242, 63, + 255, 255, 69, 198, 136, 247, 104, 233, 159, 27, 162, 69, 169, 40, 44, 170, 52, 28, 27, 72, 70, 61, 111, 224, 139, + 200, 254, 74, 101, 120, 13, 234, 221, 172, 28, 148, 176, 223, 27, 30, 123, 241, 158, 52, 228, 142, 245, 27, 88, + 227, 88, 184, 193, 199, 118, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1141, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2759623407658442338" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16941718544767901552" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f01b9e73ef3bd29a9a198b20" + } + ] + } + } + ] + }, + "cborHex": "bf1b264c26de3f559e62d8669f1beb1d13416189df709f4cf01b9e73ef3bd29a9a198b20ffffff", + "cborBytes": [ + 191, 27, 38, 76, 38, 222, 63, 85, 158, 98, 216, 102, 159, 27, 235, 29, 19, 65, 97, 137, 223, 112, 159, 76, 240, + 27, 158, 115, 239, 59, 210, 154, 154, 25, 139, 32, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1142, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7003214137953354769" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15688637777528353320" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6351370145286641315" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8439226458066485751" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c42df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3767100776179077350" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77ee142621" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2869" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a39e7dfe00cd04747f136" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9300714070349770325" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac5d85" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad7e99b1bd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11367277632351700659" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71a426ec" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b61306a2762b40411bf1bd9b93cefcb59f2281b5824997f02d4d6a3ff1b751e27c02c2181f7bf435c42df1b34476e326d4090e64577ee142621422869ff4b7a39e7dfe00cd04747f1369f1b8112c62b70acee5543ac5d85ff45ad7e99b1bdbf1b9dc0aec7bb9106b34471a426ecffff", + "cborBytes": [ + 191, 27, 97, 48, 106, 39, 98, 180, 4, 17, 191, 27, 217, 185, 60, 239, 203, 89, 242, 40, 27, 88, 36, 153, 127, 2, + 212, 214, 163, 255, 27, 117, 30, 39, 192, 44, 33, 129, 247, 191, 67, 92, 66, 223, 27, 52, 71, 110, 50, 109, 64, + 144, 230, 69, 119, 238, 20, 38, 33, 66, 40, 105, 255, 75, 122, 57, 231, 223, 224, 12, 208, 71, 71, 241, 54, 159, + 27, 129, 18, 198, 43, 112, 172, 238, 85, 67, 172, 93, 133, 255, 69, 173, 126, 153, 177, 189, 191, 27, 157, 192, + 174, 199, 187, 145, 6, 179, 68, 113, 164, 38, 236, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1143, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3417208408117900090" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5248049110911495775" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51c6942fed" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16459246320189668823" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8664809449795649206" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf06bf1b2f6c5cf12958733a0f1b48d4d0dc6baf2e5f4551c6942fed1be46afd52c98f7dd71b783f964955847eb6ffff", + "cborBytes": [ + 191, 6, 191, 27, 47, 108, 92, 241, 41, 88, 115, 58, 15, 27, 72, 212, 208, 220, 107, 175, 46, 95, 69, 81, 198, 148, + 47, 237, 27, 228, 106, 253, 82, 201, 143, 125, 215, 27, 120, 63, 150, 73, 85, 132, 126, 182, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1144, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07a906" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "030705fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f136da5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1505" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4189921617100873267" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4758" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9127372316529299105" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6645ccafa7dc98abaa2260" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10083606562645180529" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "962a722a13ea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7674286792996401504" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "becae4eab9642f0866414e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8097776972813011246" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d0205" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "140982924535144" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3dfc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13703891486127968714" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa2bf45aec" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4307a90644030705fc443f136da5bf4215051b3a259782f8071e334247581b7eaaf0c353768ea14b6645ccafa7dc98abaa22601b8bf02abe5543807146962a722a13ea1b6a808b2d9905b1604bbecae4eab9642f0866414e1b70611540bedb892eff436d02059f1b000080392522e5681bfffffffffffffff7ff42a7fb423dfc41eb9f1bbe2e00b3472851caff45fa2bf45aec80ff", + "cborBytes": [ + 191, 67, 7, 169, 6, 68, 3, 7, 5, 252, 68, 63, 19, 109, 165, 191, 66, 21, 5, 27, 58, 37, 151, 130, 248, 7, 30, 51, + 66, 71, 88, 27, 126, 170, 240, 195, 83, 118, 142, 161, 75, 102, 69, 204, 175, 167, 220, 152, 171, 170, 34, 96, 27, + 139, 240, 42, 190, 85, 67, 128, 113, 70, 150, 42, 114, 42, 19, 234, 27, 106, 128, 139, 45, 153, 5, 177, 96, 75, + 190, 202, 228, 234, 185, 100, 47, 8, 102, 65, 78, 27, 112, 97, 21, 64, 190, 219, 137, 46, 255, 67, 109, 2, 5, 159, + 27, 0, 0, 128, 57, 37, 34, 229, 104, 27, 255, 255, 255, 255, 255, 255, 255, 247, 255, 66, 167, 251, 66, 61, 252, + 65, 235, 159, 27, 190, 46, 0, 179, 71, 40, 81, 202, 255, 69, 250, 43, 244, 90, 236, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1145, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13173552458644574195" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15455269776776515155" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3feb72" + } + ] + } + } + ] + }, + "cborHex": "bf1bb6d1dc2a277bcff3d8669f1bd67c25f9f8984e539f433feb72ffffff", + "cborBytes": [ + 191, 27, 182, 209, 220, 42, 39, 123, 207, 243, 216, 102, 159, 27, 214, 124, 37, 249, 248, 152, 78, 83, 159, 67, + 63, 235, 114, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1146, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2585120374688993429" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3245966912492650882" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4710855709859647606" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6840063023705364798" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17181495768778905882" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7170113893354251872" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2412743210497882717" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9250462963310243887" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5244478078627729588" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15219508450923439164" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2907362345755258426" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13248356020379125532" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15635811950475754963" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a79c2d4c07c94c" + } + } + ] + }, + "cborHex": "bf1b23e03148c2f65095bf1b2d0bfdb583cbc1821b4160524f164e10761b5eecc914713e193e1bee70ef5ec7f1991a1b63815c98dc7926601b217bc92aabf63a5dff1b80603f0dd803b02f1b48c82106acedd0b41bd3368e4cb958e43cd8669f1b285906a64c16ae3a9f1bb7db9d9b949b071cffff1bd8fd90207aea3dd347a79c2d4c07c94cff", + "cborBytes": [ + 191, 27, 35, 224, 49, 72, 194, 246, 80, 149, 191, 27, 45, 11, 253, 181, 131, 203, 193, 130, 27, 65, 96, 82, 79, + 22, 78, 16, 118, 27, 94, 236, 201, 20, 113, 62, 25, 62, 27, 238, 112, 239, 94, 199, 241, 153, 26, 27, 99, 129, 92, + 152, 220, 121, 38, 96, 27, 33, 123, 201, 42, 171, 246, 58, 93, 255, 27, 128, 96, 63, 13, 216, 3, 176, 47, 27, 72, + 200, 33, 6, 172, 237, 208, 180, 27, 211, 54, 142, 76, 185, 88, 228, 60, 216, 102, 159, 27, 40, 89, 6, 166, 76, 22, + 174, 58, 159, 27, 183, 219, 157, 155, 148, 155, 7, 28, 255, 255, 27, 216, 253, 144, 32, 122, 234, 61, 211, 71, + 167, 156, 45, 76, 7, 201, 76, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1147, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9961753027762055019" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12648224520547398556" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73e88a3912e6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4083619972790855362" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16458268304305245504" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14753021010690425404" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1570370068233887151" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ae22fc24e01897997" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12134620982324852255" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f85a124ba78b" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b8a3f41995fede76b1baf878530329cf39c4673e88a3912e69f1b38abeebab3e3a6c21be46783d2b82f4d401bccbd4271c213c23c1b15cb1341c2fc9dafff497ae22fc24e018979971ba866d57dcf79761f46f85a124ba78b80ff", + "cborBytes": [ + 191, 27, 138, 63, 65, 153, 95, 237, 231, 107, 27, 175, 135, 133, 48, 50, 156, 243, 156, 70, 115, 232, 138, 57, 18, + 230, 159, 27, 56, 171, 238, 186, 179, 227, 166, 194, 27, 228, 103, 131, 210, 184, 47, 77, 64, 27, 204, 189, 66, + 113, 194, 19, 194, 60, 27, 21, 203, 19, 65, 194, 252, 157, 175, 255, 73, 122, 226, 47, 194, 78, 1, 137, 121, 151, + 27, 168, 102, 213, 125, 207, 121, 118, 31, 70, 248, 90, 18, 75, 167, 139, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1148, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "374941030449999010" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3720597345657556901" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5d8c66d4" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12128489916666981010" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "15ace39d16bb7dfbc930bc89" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14270152086359286746" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15221333948215212035" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9aeb" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12594884336602383796" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13713527924993401632" + } + }, + { + "_tag": "ByteArray", + "bytearray": "566ef29dcb6559f65e" + }, + { + "_tag": "ByteArray", + "bytearray": "2eadbf09baab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13549866981621177416" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18445173694360979366" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b05340ee173b0eca2d8669f1b33a23792c42e0fa59f445d8c66d4ffff1ba8510d51d8d7aa929f4c15ace39d16bb7dfbc930bc891bc609c3b74e3ea3da1bd33d0a946ef63803429aebff4193d8669f1baeca0492d65105b49f1bbe503cfd8aa1a32049566ef29dcb6559f65e462eadbf09baab1bbc0acc3ac1531c481bfffa6bbf90c407a6ffffff", + "cborBytes": [ + 191, 27, 5, 52, 14, 225, 115, 176, 236, 162, 216, 102, 159, 27, 51, 162, 55, 146, 196, 46, 15, 165, 159, 68, 93, + 140, 102, 212, 255, 255, 27, 168, 81, 13, 81, 216, 215, 170, 146, 159, 76, 21, 172, 227, 157, 22, 187, 125, 251, + 201, 48, 188, 137, 27, 198, 9, 195, 183, 78, 62, 163, 218, 27, 211, 61, 10, 148, 110, 246, 56, 3, 66, 154, 235, + 255, 65, 147, 216, 102, 159, 27, 174, 202, 4, 146, 214, 81, 5, 180, 159, 27, 190, 80, 60, 253, 138, 161, 163, 32, + 73, 86, 110, 242, 157, 203, 101, 89, 246, 94, 70, 46, 173, 191, 9, 186, 171, 27, 188, 10, 204, 58, 193, 83, 28, + 72, 27, 255, 250, 107, 191, 144, 196, 7, 166, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1149, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe02e0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15730638452985968242" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "650539" + }, + { + "_tag": "ByteArray", + "bytearray": "0302030576f803047b42fc14" + } + ] + } + } + ] + }, + "cborHex": "bf43fe02e0d8669f1bda4e7454185436729f436505394c0302030576f803047b42fc14ffffff", + "cborBytes": [ + 191, 67, 254, 2, 224, 216, 102, 159, 27, 218, 78, 116, 84, 24, 84, 54, 114, 159, 67, 101, 5, 57, 76, 3, 2, 3, 5, + 118, 248, 3, 4, 123, 66, 252, 20, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1150, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21dca1dc5a18" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2414769760017704459" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd0294785ea2f1d23ca7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8822132705218977644" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3869578218102487211" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16024110930179403914" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "061ef96d29cb31334118f7c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17419467187300956080" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13770478999725149038" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18044231631360866270" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15365898470883685248" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56e61f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1926" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca84e91f309a6bb93512" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18256455466174475762" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d37b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8507303342282315863" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db1fdbb6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7789455478953769978" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc04994b99" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c51bd8b91b44" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf7a1c8a08d5b8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1767038617613451582" + } + } + ] + } + } + ] + }, + "cborHex": "bf4621dca1dc5a18bf1b2182fc4d8035e60b4abd0294785ea2f1d23ca71b7a6e82f427eedf6c1b35b380e3309678ab1bde6113fddacc308a4c061ef96d29cb31334118f7c11bf1be611d53a577b01bbf1a91b0ed980b6e1bfa69fd10f821b7de1bd53ea33f4bbd7380ff4356e61fbf4219264aca84e91f309a6bb9351241201bfd5bf58507116df242d37b1b76100350f13b185744db1fdbb61b6c19b47ce0c27bfa45fc04994b9946c51bd8b91b44ff47bf7a1c8a08d5b89f1b1885c842b33f413effff", + "cborBytes": [ + 191, 70, 33, 220, 161, 220, 90, 24, 191, 27, 33, 130, 252, 77, 128, 53, 230, 11, 74, 189, 2, 148, 120, 94, 162, + 241, 210, 60, 167, 27, 122, 110, 130, 244, 39, 238, 223, 108, 27, 53, 179, 128, 227, 48, 150, 120, 171, 27, 222, + 97, 19, 253, 218, 204, 48, 138, 76, 6, 30, 249, 109, 41, 203, 49, 51, 65, 24, 247, 193, 27, 241, 190, 97, 29, 83, + 165, 119, 176, 27, 191, 26, 145, 176, 237, 152, 11, 110, 27, 250, 105, 253, 16, 248, 33, 183, 222, 27, 213, 62, + 163, 63, 75, 189, 115, 128, 255, 67, 86, 230, 31, 191, 66, 25, 38, 74, 202, 132, 233, 31, 48, 154, 107, 185, 53, + 18, 65, 32, 27, 253, 91, 245, 133, 7, 17, 109, 242, 66, 211, 123, 27, 118, 16, 3, 80, 241, 59, 24, 87, 68, 219, + 31, 219, 182, 27, 108, 25, 180, 124, 224, 194, 123, 250, 69, 252, 4, 153, 75, 153, 70, 197, 27, 216, 185, 27, 68, + 255, 71, 191, 122, 28, 138, 8, 213, 184, 159, 27, 24, 133, 200, 66, 179, 63, 65, 62, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1151, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ae87f33468eab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff329b31" + } + } + ] + }, + "cborHex": "bf478ae87f33468eab44ff329b31ff", + "cborBytes": [191, 71, 138, 232, 127, 51, 70, 142, 171, 68, 255, 50, 155, 49, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1152, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10160685143050262527" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bbbe0a36" + }, + { + "_tag": "ByteArray", + "bytearray": "a11a8f4232c11242028d" + }, + { + "_tag": "ByteArray", + "bytearray": "c22d" + }, + { + "_tag": "ByteArray", + "bytearray": "ecb5f55ef3423c64fa4b5612" + }, + { + "_tag": "ByteArray", + "bytearray": "a5cb72" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12467498030802786555" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "013b2c66b833af2e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6deac61877bc72a0be0a12" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3275f4df3318a1c3a66504" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a1bc7e414ac8d75ecf97439" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16682539675533332066" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12731945328818095716" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c59613" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10648047478342462446" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d105e87b54cb8e05a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43a438da9800709cc4" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13056497586356202534" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3140797335985671264" + } + } + } + ] + }, + "cborHex": "bf1b8d02014dd21997ff9f44bbbe0a364aa11a8f4232c11242028d42c22d4cecb5f55ef3423c64fa4b561243a5cb72ff1bad05736743e1d8fbbf48013b2c66b833af2e4b6deac61877bc72a0be0a124b3275f4df3318a1c3a6650441674c7a1bc7e414ac8d75ecf974391be78449726f864e62428e641bb0b0f4d1dfe5866443c596131b93c576c40a18abee49d105e87b54cb8e05a84943a438da9800709cc4ff1bb531ff60e581ac261b2b965a8952eb4c60ff", + "cborBytes": [ + 191, 27, 141, 2, 1, 77, 210, 25, 151, 255, 159, 68, 187, 190, 10, 54, 74, 161, 26, 143, 66, 50, 193, 18, 66, 2, + 141, 66, 194, 45, 76, 236, 181, 245, 94, 243, 66, 60, 100, 250, 75, 86, 18, 67, 165, 203, 114, 255, 27, 173, 5, + 115, 103, 67, 225, 216, 251, 191, 72, 1, 59, 44, 102, 184, 51, 175, 46, 75, 109, 234, 198, 24, 119, 188, 114, 160, + 190, 10, 18, 75, 50, 117, 244, 223, 51, 24, 161, 195, 166, 101, 4, 65, 103, 76, 122, 27, 199, 228, 20, 172, 141, + 117, 236, 249, 116, 57, 27, 231, 132, 73, 114, 111, 134, 78, 98, 66, 142, 100, 27, 176, 176, 244, 209, 223, 229, + 134, 100, 67, 197, 150, 19, 27, 147, 197, 118, 196, 10, 24, 171, 238, 73, 209, 5, 232, 123, 84, 203, 142, 5, 168, + 73, 67, 164, 56, 218, 152, 0, 112, 156, 196, 255, 27, 181, 49, 255, 96, 229, 129, 172, 38, 27, 43, 150, 90, 137, + 82, 235, 76, 96, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1153, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2539177260622622925" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dc66b5ab6ca9" + }, + { + "_tag": "ByteArray", + "bytearray": "7a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17299737508824821195" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14708902434294858523" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b1ac57539" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9673939003679909505" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc16269e09e83669ad" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16443543653005071065" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5674599640381232044" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b233cf843f12930cd9f46dc66b5ab6ca9417a1bf015039b39012dcb1bcc2084d53806031b450b1ac57539ff1b8640bc44e523268149fc16269e09e83669ad1be43333d4adff12d9d8669f1b4ec03a4ebf7b93ac80ffff", + "cborBytes": [ + 191, 27, 35, 60, 248, 67, 241, 41, 48, 205, 159, 70, 220, 102, 181, 171, 108, 169, 65, 122, 27, 240, 21, 3, 155, + 57, 1, 45, 203, 27, 204, 32, 132, 213, 56, 6, 3, 27, 69, 11, 26, 197, 117, 57, 255, 27, 134, 64, 188, 68, 229, 35, + 38, 129, 73, 252, 22, 38, 158, 9, 232, 54, 105, 173, 27, 228, 51, 51, 212, 173, 255, 18, 217, 216, 102, 159, 27, + 78, 192, 58, 78, 191, 123, 147, 172, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1154, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "554370375446404140" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4b7aec535c3b216c3ab150" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16978054843499143730" + } + }, + { + "_tag": "ByteArray", + "bytearray": "56e136d2fd" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "720f8a8f59924f5dc283" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e04e6b5be4d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3070212350914311423" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b07b184eb567b9c2c9f4b4b7aec535c3b216c3ab1501beb9e2aed33dde2324556e136d2fdff4a720f8a8f59924f5dc2839f46e04e6b5be4d31b2a9b95ddd143b4ffffff", + "cborBytes": [ + 191, 27, 7, 177, 132, 235, 86, 123, 156, 44, 159, 75, 75, 122, 236, 83, 92, 59, 33, 108, 58, 177, 80, 27, 235, + 158, 42, 237, 51, 221, 226, 50, 69, 86, 225, 54, 210, 253, 255, 74, 114, 15, 138, 143, 89, 146, 79, 93, 194, 131, + 159, 70, 224, 78, 107, 91, 228, 211, 27, 42, 155, 149, 221, 209, 67, 180, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1155, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3695e317bf3db3b3e708" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16904669194306972804" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f57da0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14921400439220098199" + } + } + } + ] + }, + "cborHex": "bf4a3695e317bf3db3b3e70841c0418e1bea9973114427ec8443f57da01bcf1376a47b125497ff", + "cborBytes": [ + 191, 74, 54, 149, 227, 23, 191, 61, 179, 179, 231, 8, 65, 192, 65, 142, 27, 234, 153, 115, 17, 68, 39, 236, 132, + 67, 245, 125, 160, 27, 207, 19, 118, 164, 123, 18, 84, 151, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1156, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c4fe2e013c9ea68" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47b5cb2454003d9f" + } + } + ] + }, + "cborHex": "bf485c4fe2e013c9ea684847b5cb2454003d9fff", + "cborBytes": [191, 72, 92, 79, 226, 224, 19, 201, 234, 104, 72, 71, 181, 203, 36, 84, 0, 61, 159, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1157, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "94723160436985620" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5102650052309718304" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70812e48" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9086347426590061084" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13820151904569418554" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10206875986945175824" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4374481043248631232" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13828677500482028929" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15697331065030480920" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e569f78ee3649660e69e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da097bb178" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb1515" + }, + { + "_tag": "ByteArray", + "bytearray": "c574f4" + }, + { + "_tag": "ByteArray", + "bytearray": "fb" + }, + { + "_tag": "ByteArray", + "bytearray": "a3947eb4ef934030" + }, + { + "_tag": "ByteArray", + "bytearray": "d593f8" + } + ] + } + } + ] + }, + "cborHex": "bf1b0150863669d94f14bf1b46d04130050c95204470812e481b7e1930d7cbaf721c1bbfcb0aef55cc633a1b8da61ba1bc54f11041f1ff1b3cb54754f383cdc01bbfe954eb51ab05811bd9d81f6f84d894184ae569f78ee3649660e69e45da097bb1789f43cb151543c574f441fb48a3947eb4ef93403043d593f8ffff", + "cborBytes": [ + 191, 27, 1, 80, 134, 54, 105, 217, 79, 20, 191, 27, 70, 208, 65, 48, 5, 12, 149, 32, 68, 112, 129, 46, 72, 27, + 126, 25, 48, 215, 203, 175, 114, 28, 27, 191, 203, 10, 239, 85, 204, 99, 58, 27, 141, 166, 27, 161, 188, 84, 241, + 16, 65, 241, 255, 27, 60, 181, 71, 84, 243, 131, 205, 192, 27, 191, 233, 84, 235, 81, 171, 5, 129, 27, 217, 216, + 31, 111, 132, 216, 148, 24, 74, 229, 105, 247, 142, 227, 100, 150, 96, 230, 158, 69, 218, 9, 123, 177, 120, 159, + 67, 203, 21, 21, 67, 197, 116, 244, 65, 251, 72, 163, 148, 126, 180, 239, 147, 64, 48, 67, 213, 147, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1158, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf411d80ff", + "cborBytes": [191, 65, 29, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1159, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "feecac6f9429dc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2294433290991167549" + } + } + } + ] + }, + "cborHex": "bf47feecac6f9429dc1b1fd776ebf65be83dff", + "cborBytes": [191, 71, 254, 236, 172, 111, 148, 41, 220, 27, 31, 215, 118, 235, 246, 91, 232, 61, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1160, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "011f5bfd07e503" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11203677198209802746" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05fa36" + }, + { + "_tag": "ByteArray", + "bytearray": "facf004c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7148027192448735194" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "ByteArray", + "bytearray": "419a07a04004db96b7ef" + } + ] + } + } + ] + }, + "cborHex": "bf47011f5bfd07e503d8669f1b9b7b750d597061fa9f4305fa3644facf004cffff41b3d8669f1b6332e4dc12bd57da9f1bffffffffffffffef4a419a07a04004db96b7efffffff", + "cborBytes": [ + 191, 71, 1, 31, 91, 253, 7, 229, 3, 216, 102, 159, 27, 155, 123, 117, 13, 89, 112, 97, 250, 159, 67, 5, 250, 54, + 68, 250, 207, 0, 76, 255, 255, 65, 179, 216, 102, 159, 27, 99, 50, 228, 220, 18, 189, 87, 218, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 239, 74, 65, 154, 7, 160, 64, 4, 219, 150, 183, 239, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1161, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5aba8f45" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4643211205097783212" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "980255523273677186" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6118175444636174729" + } + } + ] + } + } + ] + }, + "cborHex": "bf445aba8f459f1b406ffffd80f77fac1b0d9a91346dd799821b54e82026c30e8989ffff", + "cborBytes": [ + 191, 68, 90, 186, 143, 69, 159, 27, 64, 111, 255, 253, 128, 247, 127, 172, 27, 13, 154, 145, 52, 109, 215, 153, + 130, 27, 84, 232, 32, 38, 195, 14, 137, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1162, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33fd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "736182d122" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5671867577720893246" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5837249176447471263" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11793189370990833846" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c604036c033c55fa0702fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18308498958934907698" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "663c" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c063218b3070502" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16142456656542739575" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb13a3167172e575" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8471072571317904951" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a03036c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a99" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5144418532850331504" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13411574880824893756" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1101138892351331314" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5811011744410383242" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc0080029f06" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4233fdbf0c45736182d12212071b4eb68582d71bef3e0f1b51021332eb97ce9f41031ba3a9d33ffad230b64bc604036c033c55fa0702fc1bfe14daccf1ec9b3242663cff484c063218b3070502d8669f1bfffffffffffffffa9f1be00586cd7f5eac7748cb13a3167172e5751b758f4b9f37f56637ffff445a03036cd9050a80425a99d8669f1b4764a5663a7aef709f1bba1f7c4bea1ea13c1b0f4807fd0ef7dbf21b50a4dc64bb34338affff46fc0080029f0680ff", + "cborBytes": [ + 191, 66, 51, 253, 191, 12, 69, 115, 97, 130, 209, 34, 18, 7, 27, 78, 182, 133, 130, 215, 27, 239, 62, 15, 27, 81, + 2, 19, 50, 235, 151, 206, 159, 65, 3, 27, 163, 169, 211, 63, 250, 210, 48, 182, 75, 198, 4, 3, 108, 3, 60, 85, + 250, 7, 2, 252, 27, 254, 20, 218, 204, 241, 236, 155, 50, 66, 102, 60, 255, 72, 76, 6, 50, 24, 179, 7, 5, 2, 216, + 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 27, 224, 5, 134, 205, 127, 94, 172, 119, 72, 203, 19, + 163, 22, 113, 114, 229, 117, 27, 117, 143, 75, 159, 55, 245, 102, 55, 255, 255, 68, 90, 3, 3, 108, 217, 5, 10, + 128, 66, 90, 153, 216, 102, 159, 27, 71, 100, 165, 102, 58, 122, 239, 112, 159, 27, 186, 31, 124, 75, 234, 30, + 161, 60, 27, 15, 72, 7, 253, 14, 247, 219, 242, 27, 80, 164, 220, 100, 187, 52, 51, 138, 255, 255, 70, 252, 0, + 128, 2, 159, 6, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1163, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5751864a6a1c81" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c934ac8344d5f28" + } + } + ] + }, + "cborHex": "bf475751864a6a1c81489c934ac8344d5f28ff", + "cborBytes": [191, 71, 87, 81, 134, 74, 106, 28, 129, 72, 156, 147, 74, 200, 52, 77, 95, 40, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1164, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6075641461726252603" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "69aff8fb7c62ea1fb2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2246172181705655813" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14706504866065827789" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbfdfc372a8afabfdf04" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a7314bb8143668fe" + }, + { + "_tag": "ByteArray", + "bytearray": "f3c8a8" + }, + { + "_tag": "ByteArray", + "bytearray": "7888fbf7" + } + ] + } + } + ] + }, + "cborHex": "bf1b545103b824d40e3b9f4969aff8fb7c62ea1fb21b1f2c01b2d2ee06051bcc180041dd6847cdff4afbfdfc372a8afabfdf04d905069f48a7314bb8143668fe43f3c8a8447888fbf7ffff", + "cborBytes": [ + 191, 27, 84, 81, 3, 184, 36, 212, 14, 59, 159, 73, 105, 175, 248, 251, 124, 98, 234, 31, 178, 27, 31, 44, 1, 178, + 210, 238, 6, 5, 27, 204, 24, 0, 65, 221, 104, 71, 205, 255, 74, 251, 253, 252, 55, 42, 138, 250, 191, 223, 4, 217, + 5, 6, 159, 72, 167, 49, 75, 184, 20, 54, 104, 254, 67, 243, 200, 168, 68, 120, 136, 251, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1165, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "713991031379106631" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8842f3fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc03017e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dcf8e09dcec2ed" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "789940360021591944" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14523955220270463490" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c7bfc748c36723b00fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8938530584678165553" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18282204376125323624" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b09e89b0f662a9b47bf448842f3fc0944fc03017e47dcf8e09dcec2edff1b0af66e9278d4c788d8669f1bfffffffffffffffd9f1bc98f745255e6ba024a5c7bfc748c36723b00fc1b7c0c0a3559b4ec311bfdb770044e0ab968ffff1bffffffffffffffeb80ff", + "cborBytes": [ + 191, 27, 9, 232, 155, 15, 102, 42, 155, 71, 191, 68, 136, 66, 243, 252, 9, 68, 252, 3, 1, 126, 71, 220, 248, 224, + 157, 206, 194, 237, 255, 27, 10, 246, 110, 146, 120, 212, 199, 136, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 253, 159, 27, 201, 143, 116, 82, 85, 230, 186, 2, 74, 92, 123, 252, 116, 140, 54, 114, 59, 0, 252, 27, + 124, 12, 10, 53, 89, 180, 236, 49, 27, 253, 183, 112, 4, 78, 10, 185, 104, 255, 255, 27, 255, 255, 255, 255, 255, + 255, 255, 235, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1166, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5531529381227136432" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3988298810756143068" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12742098981878700036" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9880626944460120037" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5628766910050969467" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13535651623365579457" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4032902976503206023" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12018275398778431947" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "179eb33cad5e46d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2298177708207850277" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e4825f87611b492d1088e91" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f40e14b617bf41e90119191a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70a6c2ee66" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2843399215353748636" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14516413275017180752" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16865598508036538238" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15391183271511500534" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e750de" + } + } + ] + }, + "cborHex": "bf1b4cc3f0aa38ae05b0d8669f1b375948a3313b97dc9f1bb0d5078373bf1804ffff1b891f09db2eb2dfe59f1b4e1d65aea50fa77b1bbbd84b6fbe2512c11b37f7bfe3d016d087ff1ba6c97dccb50129cbbf48179eb33cad5e46d91b1fe4c473087343254c2e4825f87611b492d1088e914cf40e14b617bf41e90119191a4570a6c2ee661b2775c88579c8dc9cff1bc974a8f65e29f6501bea0ea47c3be03f7e1bd59877a3b360a6f643e750deff", + "cborBytes": [ + 191, 27, 76, 195, 240, 170, 56, 174, 5, 176, 216, 102, 159, 27, 55, 89, 72, 163, 49, 59, 151, 220, 159, 27, 176, + 213, 7, 131, 115, 191, 24, 4, 255, 255, 27, 137, 31, 9, 219, 46, 178, 223, 229, 159, 27, 78, 29, 101, 174, 165, + 15, 167, 123, 27, 187, 216, 75, 111, 190, 37, 18, 193, 27, 55, 247, 191, 227, 208, 22, 208, 135, 255, 27, 166, + 201, 125, 204, 181, 1, 41, 203, 191, 72, 23, 158, 179, 60, 173, 94, 70, 217, 27, 31, 228, 196, 115, 8, 115, 67, + 37, 76, 46, 72, 37, 248, 118, 17, 180, 146, 209, 8, 142, 145, 76, 244, 14, 20, 182, 23, 191, 65, 233, 1, 25, 25, + 26, 69, 112, 166, 194, 238, 102, 27, 39, 117, 200, 133, 121, 200, 220, 156, 255, 27, 201, 116, 168, 246, 94, 41, + 246, 80, 27, 234, 14, 164, 124, 59, 224, 63, 126, 27, 213, 152, 119, 163, 179, 96, 166, 246, 67, 231, 80, 222, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1167, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5673468347150595865" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14821357051207554436" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18289431853865512069" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13871033360451053975" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8092373387242549208" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "692381847558902098" + } + } + } + ] + }, + "cborHex": "bf1b4ebc356704557719d9050d9f1bcdb009b60e7515841bfdd11d5e995e2c851bc07fcf5975472997ff1b704de2b8706aafd81b099bd59f38ad5152ff", + "cborBytes": [ + 191, 27, 78, 188, 53, 103, 4, 85, 119, 25, 217, 5, 13, 159, 27, 205, 176, 9, 182, 14, 117, 21, 132, 27, 253, 209, + 29, 94, 153, 94, 44, 133, 27, 192, 127, 207, 89, 117, 71, 41, 151, 255, 27, 112, 77, 226, 184, 112, 106, 175, 216, + 27, 9, 155, 213, 159, 56, 173, 81, 82, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1168, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0400ec25" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd07fb" + }, + { + "_tag": "ByteArray", + "bytearray": "924b6592b2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16707858256142406576" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + }, + "cborHex": "bf440400ec25d905069f43fd07fb45924b6592b20c1be7de3c8fdaf213b0ff41a912ff", + "cborBytes": [ + 191, 68, 4, 0, 236, 37, 217, 5, 6, 159, 67, 253, 7, 251, 69, 146, 75, 101, 146, 178, 12, 27, 231, 222, 60, 143, + 218, 242, 19, 176, 255, 65, 169, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1169, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "033fd6b1769b9e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9195519530485265014" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9110e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "53d3f91f32e3b1a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11177328463399613403" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3428479240855958026" + } + } + ] + } + } + ] + }, + "cborHex": "bf47033fd6b1769b9e1b7f9d0c4b03bdb27643e9110e9f4853d3f91f32e3b1a61b9b1dd90476cbf3db1b2f9467b46705320affff", + "cborBytes": [ + 191, 71, 3, 63, 214, 177, 118, 155, 158, 27, 127, 157, 12, 75, 3, 189, 178, 118, 67, 233, 17, 14, 159, 72, 83, + 211, 249, 31, 50, 227, 177, 166, 27, 155, 29, 217, 4, 118, 203, 243, 219, 27, 47, 148, 103, 180, 103, 5, 50, 10, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1170, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6041349742643125563" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcfe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7200579772722027139" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10661724702941514719" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b53d72f951e241d3b42fcfe1b63ed992729f59a83d8669f1b93f60e210bd60bdf9f06ffffff", + "cborBytes": [ + 191, 27, 83, 215, 47, 149, 30, 36, 29, 59, 66, 252, 254, 27, 99, 237, 153, 39, 41, 245, 154, 131, 216, 102, 159, + 27, 147, 246, 14, 33, 11, 214, 11, 223, 159, 6, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1171, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13816363505652428718" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11469882670878124855" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2217187031636152780" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0a1ebb7b4b4b86fc8d6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4836528496217481350" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16316141034941815616" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14741872061545456888" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1da1f505af7f6d" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + } + ] + }, + "cborHex": "bf051bbfbd9567fa156fae1b9f2d3584e5196b37bf1b1ec507dbad4691cc4ad0a1ebb7b4b4b86fc8d61b431ecd0ad318e0861be26e93d31ce19b401bcc95a688c0ac24f8471da1f505af7f6dff1bffffffffffffffeb1bffffffffffffffffff", + "cborBytes": [ + 191, 5, 27, 191, 189, 149, 103, 250, 21, 111, 174, 27, 159, 45, 53, 132, 229, 25, 107, 55, 191, 27, 30, 197, 7, + 219, 173, 70, 145, 204, 74, 208, 161, 235, 183, 180, 180, 184, 111, 200, 214, 27, 67, 30, 205, 10, 211, 24, 224, + 134, 27, 226, 110, 147, 211, 28, 225, 155, 64, 27, 204, 149, 166, 136, 192, 172, 36, 248, 71, 29, 161, 245, 5, + 175, 127, 109, 255, 27, 255, 255, 255, 255, 255, 255, 255, 235, 27, 255, 255, 255, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1172, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab835bb3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12763383581243395833" + } + } + } + ] + }, + "cborHex": "bf44ab835bb31bb120a5be6c10cef9ff", + "cborBytes": [191, 68, 171, 131, 91, 179, 27, 177, 32, 165, 190, 108, 16, 206, 249, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1173, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7673217557415576082" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6052384495774264958" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "548b6f2cb31c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3915256205359084254" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10872537095704475547" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9451422708977986089" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9ccdd259fc2a596231" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15928024524664104098" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6a7cbeb6ca0bc212d8669f1b53fe63a1cab4ee7e9f46548b6f2cb31c1b3655c8c65d1272de1b96e302e224b8f79bffff1b832a32e0c6b16a299f499ccdd259fc2a5962311bdd0bb5ea365064a2ffff", + "cborBytes": [ + 191, 27, 106, 124, 190, 182, 202, 11, 194, 18, 216, 102, 159, 27, 83, 254, 99, 161, 202, 180, 238, 126, 159, 70, + 84, 139, 111, 44, 179, 28, 27, 54, 85, 200, 198, 93, 18, 114, 222, 27, 150, 227, 2, 226, 36, 184, 247, 155, 255, + 255, 27, 131, 42, 50, 224, 198, 177, 106, 41, 159, 73, 156, 205, 210, 89, 252, 42, 89, 98, 49, 27, 221, 11, 181, + 234, 54, 80, 100, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1174, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "87ebcc2f87" + }, + { + "_tag": "ByteArray", + "bytearray": "fa" + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffeb9f4587ebcc2f8741faffff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 69, 135, 235, 204, 47, 135, 65, 250, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1175, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d2ca44807e796d6175f8a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6bbff498a72408c44" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "831a010f35" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4038562589976889047" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11742640212055222668" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7319530404529349928" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13662102741041388032" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7344529271358603117" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0122700d392942239ffbdc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72f0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95e3c4a784d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71ce" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4f2a690b4c3f015f3e9d1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16955600607799233335" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "322436758403551241" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10737913644816426913" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2fb122" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11396131941264435731" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dea6014258d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cebb4516ee967794f0957f85" + } + } + ] + }, + "cborHex": "bf4b1d2ca44807e796d6175f8a49f6bbff498a72408c4445831a010f351b380bdb4742c106d741c3bf1ba2f63d0ec4c4e98c1b6594321f54a4a5281bbd998a0edca99a001b65ed027595c9bf6d4b0122700d392942239ffbdc4272f04695e3c4a784d74271ceff4bc4f2a690b4c3f015f3e9d1d8669f1beb4e64eb0d454b379f1b04798685ff2c10091b9504bb916c1a67a1432fb1221b9e27319f0c8caa13ffff46dea6014258d44ccebb4516ee967794f0957f85ff", + "cborBytes": [ + 191, 75, 29, 44, 164, 72, 7, 231, 150, 214, 23, 95, 138, 73, 246, 187, 255, 73, 138, 114, 64, 140, 68, 69, 131, + 26, 1, 15, 53, 27, 56, 11, 219, 71, 66, 193, 6, 215, 65, 195, 191, 27, 162, 246, 61, 14, 196, 196, 233, 140, 27, + 101, 148, 50, 31, 84, 164, 165, 40, 27, 189, 153, 138, 14, 220, 169, 154, 0, 27, 101, 237, 2, 117, 149, 201, 191, + 109, 75, 1, 34, 112, 13, 57, 41, 66, 35, 159, 251, 220, 66, 114, 240, 70, 149, 227, 196, 167, 132, 215, 66, 113, + 206, 255, 75, 196, 242, 166, 144, 180, 195, 240, 21, 243, 233, 209, 216, 102, 159, 27, 235, 78, 100, 235, 13, 69, + 75, 55, 159, 27, 4, 121, 134, 133, 255, 44, 16, 9, 27, 149, 4, 187, 145, 108, 26, 103, 161, 67, 47, 177, 34, 27, + 158, 39, 49, 159, 12, 140, 170, 19, 255, 255, 70, 222, 166, 1, 66, 88, 212, 76, 206, 187, 69, 22, 238, 150, 119, + 148, 240, 149, 127, 133, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1176, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14069219697046908649" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a5336ff492" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11623458712252888431" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10513685460012803265" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95d8bea38087" + }, + { + "_tag": "ByteArray", + "bytearray": "0b0d5e625889a3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17917328510471098780" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbabfe06" + } + } + ] + }, + "cborHex": "bf1bc33fe8c5c568eee99f45a5336ff4921ba14ed21d7540b56f1b91e81d38d440a4c14695d8bea38087470b0d5e625889a3ff1bf8a72359a69bd19c44fbabfe06ff", + "cborBytes": [ + 191, 27, 195, 63, 232, 197, 197, 104, 238, 233, 159, 69, 165, 51, 111, 244, 146, 27, 161, 78, 210, 29, 117, 64, + 181, 111, 27, 145, 232, 29, 56, 212, 64, 164, 193, 70, 149, 216, 190, 163, 128, 135, 71, 11, 13, 94, 98, 88, 137, + 163, 255, 27, 248, 167, 35, 89, 166, 155, 209, 156, 68, 251, 171, 254, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1177, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f90028" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb" + } + } + ] + } + } + ] + }, + "cborHex": "bf43f90028bf0341fbffff", + "cborBytes": [191, 67, 249, 0, 40, 191, 3, 65, 251, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1178, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11249784860394043176" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16943747889120342899" + } + } + } + ] + }, + "cborHex": "bf1b9c1f43ba035ab7281beb2448eeeecaf373ff", + "cborBytes": [191, 27, 156, 31, 67, 186, 3, 90, 183, 40, 27, 235, 36, 72, 238, 238, 202, 243, 115, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1179, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "54" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15321428028144502847" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8796052902375349194" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7396301277591454360" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13686398129178704076" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8509ce" + } + ] + } + } + ] + }, + "cborHex": "bf4154d8669f1bd4a0a59d7d44483f9f1b7a11db82dfa05bca1b66a4f0d31e9b42981bbdefda95b84478cc438509ceffffff", + "cborBytes": [ + 191, 65, 84, 216, 102, 159, 27, 212, 160, 165, 157, 125, 68, 72, 63, 159, 27, 122, 17, 219, 130, 223, 160, 91, + 202, 27, 102, 164, 240, 211, 30, 155, 66, 152, 27, 189, 239, 218, 149, 184, 68, 120, 204, 67, 133, 9, 206, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1180, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "521075610674606413" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13982161249639707557" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4308754646129359870" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4897677d50109676" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17915395053928777237" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1445401572903343077" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9453864679785085616" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12969293903214705809" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "825bc3758177ac1ab1f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "03f14c36a182c6b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5449919635371037694" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55d0f2ac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13700064645401690480" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b073b3b81d361314d9f1bc20a9d936d01b3a5ff1b3bcbc5859adabbfe484897677d501096761bf8a044e1b8370615bf1b140f19128eb1d3e51b8332dfd66933bab01bb3fc301738c07c914a825bc3758177ac1ab1f94803f14c36a182c6b71b4ba2010890b793fe4455d0f2ac1bbe2068357d0e4170ffff", + "cborBytes": [ + 191, 27, 7, 59, 59, 129, 211, 97, 49, 77, 159, 27, 194, 10, 157, 147, 109, 1, 179, 165, 255, 27, 59, 203, 197, + 133, 154, 218, 187, 254, 72, 72, 151, 103, 125, 80, 16, 150, 118, 27, 248, 160, 68, 225, 184, 55, 6, 21, 191, 27, + 20, 15, 25, 18, 142, 177, 211, 229, 27, 131, 50, 223, 214, 105, 51, 186, 176, 27, 179, 252, 48, 23, 56, 192, 124, + 145, 74, 130, 91, 195, 117, 129, 119, 172, 26, 177, 249, 72, 3, 241, 76, 54, 161, 130, 198, 183, 27, 75, 162, 1, + 8, 144, 183, 147, 254, 68, 85, 208, 242, 172, 27, 190, 32, 104, 53, 125, 14, 65, 112, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1181, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27cfe2d45070" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4627cfe2d45070a0ff", + "cborBytes": [191, 70, 39, 207, 226, 212, 80, 112, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1182, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8decf" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf43f8decfbf071bffffffffffffffecffff", + "cborBytes": [191, 67, 248, 222, 207, 191, 7, 27, 255, 255, 255, 255, 255, 255, 255, 236, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1183, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6702929162908802666" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "122334030699934113" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9531600374934561846" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1739884379334832811" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3266240844997719180" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3810905757892698373" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10966719885374817156" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5d05968f5dc91e6abf1b01b29e271bcfb1a11b84470c0a58f464361b18254f9fec80f2ab1b2d5404be44f5f48c1b34e30e9883af61051b98319da1aefa8384ffff", + "cborBytes": [ + 191, 27, 93, 5, 150, 143, 93, 201, 30, 106, 191, 27, 1, 178, 158, 39, 27, 207, 177, 161, 27, 132, 71, 12, 10, 88, + 244, 100, 54, 27, 24, 37, 79, 159, 236, 128, 242, 171, 27, 45, 84, 4, 190, 68, 245, 244, 140, 27, 52, 227, 14, + 152, 131, 175, 97, 5, 27, 152, 49, 157, 161, 174, 250, 131, 132, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1184, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14807d" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5319964353041309487" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5137303758740193250" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17043605569664230176" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6376e970667fce946c" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83ca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9426489921325582001" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8692f00a" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b62e" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4314807da0416ebf1b49d44f6488c49f2f1b474b5e8ccafcffe21bec870cf6f7b4a320496376e970667fce946cff4283ca1b82d19ea3c76946b1448692f00aa042b62ea0ff", + "cborBytes": [ + 191, 67, 20, 128, 125, 160, 65, 110, 191, 27, 73, 212, 79, 100, 136, 196, 159, 47, 27, 71, 75, 94, 140, 202, 252, + 255, 226, 27, 236, 135, 12, 246, 247, 180, 163, 32, 73, 99, 118, 233, 112, 102, 127, 206, 148, 108, 255, 66, 131, + 202, 27, 130, 209, 158, 163, 199, 105, 70, 177, 68, 134, 146, 240, 10, 160, 66, 182, 46, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1185, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13074072372854895746" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14980747005772589477" + } + }, + { + "_tag": "ByteArray", + "bytearray": "65238fa0a5950193fa" + }, + { + "_tag": "ByteArray", + "bytearray": "a6e6c3a6d38442" + }, + { + "_tag": "ByteArray", + "bytearray": "af4a6a40a107" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "040230" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17133755335689043165" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6de5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8879765" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1bb5706f8dbfc3b4829f1bcfe64e07c51269a54965238fa0a5950193fa47a6e6c3a6d3844246af4a6a40a107ff430402301bedc753b30432fcdd4144426de544d887976580ff", + "cborBytes": [ + 191, 27, 181, 112, 111, 141, 191, 195, 180, 130, 159, 27, 207, 230, 78, 7, 197, 18, 105, 165, 73, 101, 35, 143, + 160, 165, 149, 1, 147, 250, 71, 166, 230, 195, 166, 211, 132, 66, 70, 175, 74, 106, 64, 161, 7, 255, 67, 4, 2, 48, + 27, 237, 199, 83, 179, 4, 50, 252, 221, 65, 68, 66, 109, 229, 68, 216, 135, 151, 101, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1186, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8961391472655672388" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f292fb48c57dff6f0345" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9186072506118354987" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16153920050061396935" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8786963439530312170" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14265777914485074339" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4439100328121903019" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16610935487687233795" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3518503357785425234" + } + } + } + ] + }, + "cborHex": "bf1b7c5d42109cdb24444af292fb48c57dff6f03451b7f7b7c46402ab82bd8669f1be02e40b2c9f84bc79f1b79f190b1638c81eaffff1bc5fa396e0d7ee9a39f41a21b3d9ada3aa406a7abff1be685e5d14a8711031b30d43c297dd1c552ff", + "cborBytes": [ + 191, 27, 124, 93, 66, 16, 156, 219, 36, 68, 74, 242, 146, 251, 72, 197, 125, 255, 111, 3, 69, 27, 127, 123, 124, + 70, 64, 42, 184, 43, 216, 102, 159, 27, 224, 46, 64, 178, 201, 248, 75, 199, 159, 27, 121, 241, 144, 177, 99, 140, + 129, 234, 255, 255, 27, 197, 250, 57, 110, 13, 126, 233, 163, 159, 65, 162, 27, 61, 154, 218, 58, 164, 6, 167, + 171, 255, 27, 230, 133, 229, 209, 74, 135, 17, 3, 27, 48, 212, 60, 41, 125, 209, 197, 82, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1187, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4868729436469293416" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0b11a2657c2d2f9801e60d8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9913939438232736991" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17757859867172055941" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9529781655268549259" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7832d7" + }, + { + "_tag": "ByteArray", + "bytearray": "7e324853f6c37576be9f3d" + } + ] + } + } + ] + }, + "cborHex": "bf1b439133a0783d71684cf0b11a2657c2d2f9801e60d81b899563648c9914df801bf6709776c9f4ab85d8669f1b844095ecad50e28b9f437832d74b7e324853f6c37576be9f3dffffff", + "cborBytes": [ + 191, 27, 67, 145, 51, 160, 120, 61, 113, 104, 76, 240, 177, 26, 38, 87, 194, 210, 249, 128, 30, 96, 216, 27, 137, + 149, 99, 100, 140, 153, 20, 223, 128, 27, 246, 112, 151, 118, 201, 244, 171, 133, 216, 102, 159, 27, 132, 64, 149, + 236, 173, 80, 226, 139, 159, 67, 120, 50, 215, 75, 126, 50, 72, 83, 246, 195, 117, 118, 190, 159, 61, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1188, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12059240167981956250" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + } + ] + }, + "cborHex": "bf1ba75b070a49afbc9a1bfffffffffffffff1ff", + "cborBytes": [191, 27, 167, 91, 7, 10, 73, 175, 188, 154, 27, 255, 255, 255, 255, 255, 255, 255, 241, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1189, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "37c0a8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10a5df4bb330313dc610cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "79590032220360639" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a8f3cd64d9b793785" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14154615927410021234" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b9e76b4d4527b5ee40de3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "655113087ac6debc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16e23866da9fdb6b5867" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "953ed3ae51" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "038f9e33aa3b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6159c6e63e654f925" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15182658285047111008" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "666c5beb54f47d79220c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11295285548860619938" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "980ce318c5f31bedc6b5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8510197060353740772" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7622598194799755433" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6cbd1a415fdeeb4d4d86d308" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3592918032361252745" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ed7dfaec8c6478d4393" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5337958540650638636" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12854530905748556226" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7812000511664483265" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8180604527213350347" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12720182922040021565" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1591682559158163961" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13023578408756275052" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11611710617133496520" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15630179632748102705" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2088818570916214387" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf6a4b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4193825475783211351" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3bed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14831506196074910822" + } + } + ] + } + } + ] + }, + "cborHex": "bf4337c0a8bf4b10a5df4bb330313dc610cb1b011ac2b66e280fbf493a8f3cd64d9b7937851bc46f4c310d5c5372415f4b3b9e76b4d4527b5ee40de348655113087ac6debc4a16e23866da9fdb6b586745953ed3ae5146038f9e33aa3b49c6159c6e63e654f9251bd2b3a344e25fdd60ff4a666c5beb54f47d79220cd8669f1b9cc0ea5c9870bca29f4a980ce318c5f31bedc6b51b761a4b232ef54fe41b69c8e8ac0292c0a9ffff4c6cbd1a415fdeeb4d4d86d308bf1b31dc9bea11fce7894a6ed7dfaec8c6478d43931b4a143d02d13e6d2c1bb26477c0a76c49c21b6c69cd135aee6bc11b718758798c810dcb1bb0872af9222f923d1b1616cadabdce99f91bb4bd0b8f965d676c1ba1251548e8dfb8c81bd8e98d90517f04311b1cfcf96c57b33673ff43cf6a4bd8669f1b3a33760ce60ab9579f423bed1bcdd4184dfd0cd466ffffff", + "cborBytes": [ + 191, 67, 55, 192, 168, 191, 75, 16, 165, 223, 75, 179, 48, 49, 61, 198, 16, 203, 27, 1, 26, 194, 182, 110, 40, 15, + 191, 73, 58, 143, 60, 214, 77, 155, 121, 55, 133, 27, 196, 111, 76, 49, 13, 92, 83, 114, 65, 95, 75, 59, 158, 118, + 180, 212, 82, 123, 94, 228, 13, 227, 72, 101, 81, 19, 8, 122, 198, 222, 188, 74, 22, 226, 56, 102, 218, 159, 219, + 107, 88, 103, 69, 149, 62, 211, 174, 81, 70, 3, 143, 158, 51, 170, 59, 73, 198, 21, 156, 110, 99, 230, 84, 249, + 37, 27, 210, 179, 163, 68, 226, 95, 221, 96, 255, 74, 102, 108, 91, 235, 84, 244, 125, 121, 34, 12, 216, 102, 159, + 27, 156, 192, 234, 92, 152, 112, 188, 162, 159, 74, 152, 12, 227, 24, 197, 243, 27, 237, 198, 181, 27, 118, 26, + 75, 35, 46, 245, 79, 228, 27, 105, 200, 232, 172, 2, 146, 192, 169, 255, 255, 76, 108, 189, 26, 65, 95, 222, 235, + 77, 77, 134, 211, 8, 191, 27, 49, 220, 155, 234, 17, 252, 231, 137, 74, 110, 215, 223, 174, 200, 198, 71, 141, 67, + 147, 27, 74, 20, 61, 2, 209, 62, 109, 44, 27, 178, 100, 119, 192, 167, 108, 73, 194, 27, 108, 105, 205, 19, 90, + 238, 107, 193, 27, 113, 135, 88, 121, 140, 129, 13, 203, 27, 176, 135, 42, 249, 34, 47, 146, 61, 27, 22, 22, 202, + 218, 189, 206, 153, 249, 27, 180, 189, 11, 143, 150, 93, 103, 108, 27, 161, 37, 21, 72, 232, 223, 184, 200, 27, + 216, 233, 141, 144, 81, 127, 4, 49, 27, 28, 252, 249, 108, 87, 179, 54, 115, 255, 67, 207, 106, 75, 216, 102, 159, + 27, 58, 51, 118, 12, 230, 10, 185, 87, 159, 66, 59, 237, 27, 205, 212, 24, 77, 253, 12, 212, 102, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1190, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "63" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17493955648446090472" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17623785143795732169" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a03f619ecdd6f7a079eedd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5a3730280fbc63a00c4" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6928815702638699577" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5030569" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5989564246491873121" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dbba07fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe7f2803e950d805c94e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4425849f31" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fef903d7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0fa8f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3815404467729808391" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf41639f1bf2c703f9ae114ce81bf4944336a5c04ec9ff4ba03f619ecdd6f7a079eedd0a4aa5a3730280fbc63a00c49f1b6028192bcdeda439ff44d5030569d8669f1b531f34f2b7873f619f44dbba07fa1bfffffffffffffff101ffff4afe7f2803e950d805c94e454425849f3144fef903d7bf43d0fa8f1b34f30a2605793c07ffff", + "cborBytes": [ + 191, 65, 99, 159, 27, 242, 199, 3, 249, 174, 17, 76, 232, 27, 244, 148, 67, 54, 165, 192, 78, 201, 255, 75, 160, + 63, 97, 158, 205, 214, 247, 160, 121, 238, 221, 10, 74, 165, 163, 115, 2, 128, 251, 198, 58, 0, 196, 159, 27, 96, + 40, 25, 43, 205, 237, 164, 57, 255, 68, 213, 3, 5, 105, 216, 102, 159, 27, 83, 31, 52, 242, 183, 135, 63, 97, 159, + 68, 219, 186, 7, 250, 27, 255, 255, 255, 255, 255, 255, 255, 241, 1, 255, 255, 74, 254, 127, 40, 3, 233, 80, 216, + 5, 201, 78, 69, 68, 37, 132, 159, 49, 68, 254, 249, 3, 215, 191, 67, 208, 250, 143, 27, 52, 243, 10, 38, 5, 121, + 60, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1191, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9733762889342664976" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4613966395180349551" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5382bec9f1" + }, + { + "_tag": "ByteArray", + "bytearray": "af94cc0db6137efd7ceee1d9" + }, + { + "_tag": "ByteArray", + "bytearray": "212ef5eb" + }, + { + "_tag": "ByteArray", + "bytearray": "2062" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10629195714674887713" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b871545c6b3264110d8669f1b400819fd9650786f9f455382bec9f14caf94cc0db6137efd7ceee1d944212ef5eb4220621b93827d2fc54d0c21ffffff", + "cborBytes": [ + 191, 27, 135, 21, 69, 198, 179, 38, 65, 16, 216, 102, 159, 27, 64, 8, 25, 253, 150, 80, 120, 111, 159, 69, 83, + 130, 190, 201, 241, 76, 175, 148, 204, 13, 182, 19, 126, 253, 124, 238, 225, 217, 68, 33, 46, 245, 235, 66, 32, + 98, 27, 147, 130, 125, 47, 197, 77, 12, 33, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1192, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "49020811765448924" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "929f90b0e1d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15512058983249537096" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "248184628574341804" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3972247288297738618" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11124328390323370544" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b00ae282b27e180dc9f46929f90b0e1d81bd745e775777ee848ff1b0371ba9ad0e2caac9f1b372041dce2fed17a1b9a618dbb56047a30ffff", + "cborBytes": [ + 191, 27, 0, 174, 40, 43, 39, 225, 128, 220, 159, 70, 146, 159, 144, 176, 225, 216, 27, 215, 69, 231, 117, 119, + 126, 232, 72, 255, 27, 3, 113, 186, 154, 208, 226, 202, 172, 159, 27, 55, 32, 65, 220, 226, 254, 209, 122, 27, + 154, 97, 141, 187, 86, 4, 122, 48, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1193, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10e5c681645465ec09ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + } + ] + }, + "cborHex": "bf4a10e5c681645465ec09ab1bfffffffffffffff3ff", + "cborBytes": [ + 191, 74, 16, 229, 198, 129, 100, 84, 101, 236, 9, 171, 27, 255, 255, 255, 255, 255, 255, 255, 243, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1194, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13304291853054680027" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10275943903670728139" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15565218648944666342" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14995234419159309851" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32072358" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "078a2b7a9e2fe60a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16933737128095523242" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15620282871972274419" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bb8a256f381729bdbd8669f1b8e9b7c893e2275cb9f1bd802c3e4a5a1e6e6ffff1bd019c6418db39e1b443207235848078a2b7a9e2fe60ad8669f1beb00b832fffa21aa9f1bd8c664832306a0f3ffffff", + "cborBytes": [ + 191, 27, 184, 162, 86, 243, 129, 114, 155, 219, 216, 102, 159, 27, 142, 155, 124, 137, 62, 34, 117, 203, 159, 27, + 216, 2, 195, 228, 165, 161, 230, 230, 255, 255, 27, 208, 25, 198, 65, 141, 179, 158, 27, 68, 50, 7, 35, 88, 72, 7, + 138, 43, 122, 158, 47, 230, 10, 216, 102, 159, 27, 235, 0, 184, 50, 255, 250, 33, 170, 159, 27, 216, 198, 100, + 131, 35, 6, 160, 243, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1195, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1805965862531287362" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a0a8cef59a9ae87de587" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0fff9adfdf8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "773b87ba4200d109" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3910352896453686866" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06ce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + { + "_tag": "ByteArray", + "bytearray": "18" + } + ] + } + } + ] + }, + "cborHex": "bf1b1910146230a8c942d8669f1bfffffffffffffff49f4aa0a8cef59a9ae87de587ffff46e0fff9adfdf8d87b9f48773b87ba4200d1091b36445d3dcb8ab6524206ce1bfffffffffffffff44118ffff", + "cborBytes": [ + 191, 27, 25, 16, 20, 98, 48, 168, 201, 66, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 74, + 160, 168, 206, 245, 154, 154, 232, 125, 229, 135, 255, 255, 70, 224, 255, 249, 173, 253, 248, 216, 123, 159, 72, + 119, 59, 135, 186, 66, 0, 209, 9, 27, 54, 68, 93, 61, 203, 138, 182, 82, 66, 6, 206, 27, 255, 255, 255, 255, 255, + 255, 255, 244, 65, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1196, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "908eb1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3264070595388643820" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "934581316728058052" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebb314b13b00d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33" + } + } + ] + }, + "cborHex": "bf43908eb1d8669f1b2d4c4ee9a7f019ec9f1b0cf84cc1854af0c4ffff47ebb314b13b00d64133ff", + "cborBytes": [ + 191, 67, 144, 142, 177, 216, 102, 159, 27, 45, 76, 78, 233, 167, 240, 25, 236, 159, 27, 12, 248, 76, 193, 133, 74, + 240, 196, 255, 255, 71, 235, 179, 20, 177, 59, 0, 214, 65, 51, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1197, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4210310084582859893" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4944687343259048639" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8567435557609105782" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10341889029812785236" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7151845459033113909" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e7884739e9d51" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b3a6e06b6f9ce6475d8669f1b449f0ef0cc535abf9f1b76e5a53f57576976ffff1b8f85c547688010541b6340758d8a28c535471e7884739e9d51a0ff", + "cborBytes": [ + 191, 27, 58, 110, 6, 182, 249, 206, 100, 117, 216, 102, 159, 27, 68, 159, 14, 240, 204, 83, 90, 191, 159, 27, 118, + 229, 165, 63, 87, 87, 105, 118, 255, 255, 27, 143, 133, 197, 71, 104, 128, 16, 84, 27, 99, 64, 117, 141, 138, 40, + 197, 53, 71, 30, 120, 132, 115, 158, 157, 81, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1198, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48f16e7770b8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17261381299137597699" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98ee" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12637000744035955776" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3004016133835887560" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1dbd938f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bcf83d90f069b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17525410414162756077" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d244ac7d1d4c526655" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53bc90c90eb6ff0a3924d290" + } + } + ] + }, + "cborHex": "bf4648f16e7770b8d8669f1bef8cbed63baad10380ff4298ee9f1baf5fa539169c344041951b29b068c1fcd493c8441dbd938fff479bcf83d90f069b1bf336c3eb071a41ed49d244ac7d1d4c5266554c53bc90c90eb6ff0a3924d290ff", + "cborBytes": [ + 191, 70, 72, 241, 110, 119, 112, 184, 216, 102, 159, 27, 239, 140, 190, 214, 59, 170, 209, 3, 128, 255, 66, 152, + 238, 159, 27, 175, 95, 165, 57, 22, 156, 52, 64, 65, 149, 27, 41, 176, 104, 193, 252, 212, 147, 200, 68, 29, 189, + 147, 143, 255, 71, 155, 207, 131, 217, 15, 6, 155, 27, 243, 54, 195, 235, 7, 26, 65, 237, 73, 210, 68, 172, 125, + 29, 76, 82, 102, 85, 76, 83, 188, 144, 201, 14, 182, 255, 10, 57, 36, 210, 144, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1199, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5211410776fe027f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59158358e355" + } + } + ] + }, + "cborHex": "bf49e5211410776fe027f84659158358e355ff", + "cborBytes": [191, 73, 229, 33, 20, 16, 119, 111, 224, 39, 248, 70, 89, 21, 131, 88, 227, 85, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1200, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10607578259960220509" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12345237290113949146" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7007fcc8cb0407" + } + } + ] + }, + "cborHex": "bf1b9335b039e015cb5da01bab5317e85125ddda477007fcc8cb0407ff", + "cborBytes": [ + 191, 27, 147, 53, 176, 57, 224, 21, 203, 93, 160, 27, 171, 83, 23, 232, 81, 37, 221, 218, 71, 112, 7, 252, 200, + 203, 4, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1201, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12825204254349776016" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "86e84e74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bb1fc47518858d490bf4486e84e744197ffff", + "cborBytes": [191, 27, 177, 252, 71, 81, 136, 88, 212, 144, 191, 68, 134, 232, 78, 116, 65, 151, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1202, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06d7b00ccbe306edc04f01" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2469398173392845308" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11483138496799848065" + } + }, + { + "_tag": "ByteArray", + "bytearray": "79da09" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3af7bdbb8f533e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f1f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99927fee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14567787781480067003" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af54e16a0c31f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04" + } + } + ] + }, + "cborHex": "bf4b06d7b00ccbe306edc04f01d8669f1b2245108e261439fc9f1b9f5c4d9f605e36814379da09ffff473af7bdbb8f533e426f1f4499927fee1bca2b2dcdc6652fbb47af54e16a0c31f84104ff", + "cborBytes": [ + 191, 75, 6, 215, 176, 12, 203, 227, 6, 237, 192, 79, 1, 216, 102, 159, 27, 34, 69, 16, 142, 38, 20, 57, 252, 159, + 27, 159, 92, 77, 159, 96, 94, 54, 129, 67, 121, 218, 9, 255, 255, 71, 58, 247, 189, 187, 143, 83, 62, 66, 111, 31, + 68, 153, 146, 127, 238, 27, 202, 43, 45, 205, 198, 101, 47, 187, 71, 175, 84, 225, 106, 12, 49, 248, 65, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1203, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2110" + } + } + ] + }, + "cborHex": "bf03422110ff", + "cborBytes": [191, 3, 66, 33, 16, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1204, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7688750605347338642" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa6d0895" + } + } + ] + }, + "cborHex": "bf1b6ab3edf0564c399244fa6d0895ff", + "cborBytes": [191, 27, 106, 179, 237, 240, 86, 76, 57, 146, 68, 250, 109, 8, 149, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1205, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d3a8ac24094" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d264cd56c810a1dd1cf3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + } + } + ] + }, + "cborHex": "bf463d3a8ac24094804ad264cd56c810a1dd1cf3d8669f1bffffffffffffffff9f09ffffff", + "cborBytes": [ + 191, 70, 61, 58, 138, 194, 64, 148, 128, 74, 210, 100, 205, 86, 200, 16, 161, 221, 28, 243, 216, 102, 159, 27, + 255, 255, 255, 255, 255, 255, 255, 255, 159, 9, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1206, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4987458285137451785" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06590c2e4345ea425bcebe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10172221805659347448" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "382778649a6685f96a94" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15707058526857224463" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13499786273844628912" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba292976bca3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19d4b91e420d2ad884" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f6676c3e612608c007ce2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b64aa24d0f1fb3251c65f5db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07f04f9f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd85238277911183eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15544199435297382724" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04b0ee57e80f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "79bdffa39d" + }, + { + "_tag": "ByteArray", + "bytearray": "d065b61e0f99955a9e10" + }, + { + "_tag": "ByteArray", + "bytearray": "e823c7863dd5c5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "229898248864156856" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10563939134223386977" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b453702e2b9b25b094b06590c2e4345ea425bcebe1b8d2afdd666ced9f84a382778649a6685f96a941bd9faae82b798610fbf1bbb58e01754340db046ba292976bca34919d4b91e420d2ad8844b4f6676c3e612608c007ce24cb64aa24d0f1fb3251c65f5db4407f04f9f49dd85238277911183eb1bd7b817079aba6144ff4604b0ee57e80f9f4579bdffa39d4ad065b61e0f99955a9e1047e823c7863dd5c51b0330c33d42084cb81b929aa6ac243b8961ffff", + "cborBytes": [ + 191, 27, 69, 55, 2, 226, 185, 178, 91, 9, 75, 6, 89, 12, 46, 67, 69, 234, 66, 91, 206, 190, 27, 141, 42, 253, 214, + 102, 206, 217, 248, 74, 56, 39, 120, 100, 154, 102, 133, 249, 106, 148, 27, 217, 250, 174, 130, 183, 152, 97, 15, + 191, 27, 187, 88, 224, 23, 84, 52, 13, 176, 70, 186, 41, 41, 118, 188, 163, 73, 25, 212, 185, 30, 66, 13, 42, 216, + 132, 75, 79, 102, 118, 195, 230, 18, 96, 140, 0, 124, 226, 76, 182, 74, 162, 77, 15, 31, 179, 37, 28, 101, 245, + 219, 68, 7, 240, 79, 159, 73, 221, 133, 35, 130, 119, 145, 17, 131, 235, 27, 215, 184, 23, 7, 154, 186, 97, 68, + 255, 70, 4, 176, 238, 87, 232, 15, 159, 69, 121, 189, 255, 163, 157, 74, 208, 101, 182, 30, 15, 153, 149, 90, 158, + 16, 71, 232, 35, 199, 134, 61, 213, 197, 27, 3, 48, 195, 61, 66, 8, 76, 184, 27, 146, 154, 166, 172, 36, 59, 137, + 97, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1207, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10130082213783949637" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11647348406221445630" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9325be21f8ecb0a2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16458787840474879049" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14140d67" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5370076249302390085" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "59c7989def92" + }, + { + "_tag": "ByteArray", + "bytearray": "8840b3b7" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54d6fd907c1ba226" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "146b13583545206769dbee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f4d8617aad5bf5230" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9425437004285018407" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14732396066868102474" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b8c95481a1a1851459f1ba1a3b1aa480a99fe489325be21f8ecb0a21be4695c56a9061449ff4414140d67d8669f1b4a8657e5986e55459f4659c7989def92448840b3b7ffff4854d6fd907c1ba2264b146b13583545206769dbee498f4d8617aad5bf52309f1b82cde1046d3b01271bcc73fc2ad009054affff", + "cborBytes": [ + 191, 27, 140, 149, 72, 26, 26, 24, 81, 69, 159, 27, 161, 163, 177, 170, 72, 10, 153, 254, 72, 147, 37, 190, 33, + 248, 236, 176, 162, 27, 228, 105, 92, 86, 169, 6, 20, 73, 255, 68, 20, 20, 13, 103, 216, 102, 159, 27, 74, 134, + 87, 229, 152, 110, 85, 69, 159, 70, 89, 199, 152, 157, 239, 146, 68, 136, 64, 179, 183, 255, 255, 72, 84, 214, + 253, 144, 124, 27, 162, 38, 75, 20, 107, 19, 88, 53, 69, 32, 103, 105, 219, 238, 73, 143, 77, 134, 23, 170, 213, + 191, 82, 48, 159, 27, 130, 205, 225, 4, 109, 59, 1, 39, 27, 204, 115, 252, 42, 208, 9, 5, 74, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1208, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "279709480407176076" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8083244334951545430" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1682022974206854370" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14299285373470597041" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9d884f483ece97660fe422" + }, + { + "_tag": "ByteArray", + "bytearray": "cc3301d4e2b1003e637b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10398454333445315629" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "807458390087290667" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10947290364065298960" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11254444223178425492" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a85278cbb13dde143" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13732742805364332798" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd0339a9" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17312250332359624695" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13678452350748403427" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0e4cf17593572bf4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "845554646085675097" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b03e1ba4a5bfa938cd8669f1b702d73e55179ba5680ff1b1757befbb9a544e2d8669f1bc67144494ba75fb19f4b9d884f483ece97660fe4224acc3301d4e2b1003e637bffff1b904ebb1f76211c2dbf1b0b34ab20b00fcf2b1b97ec9695bb2b3a101b9c2fd16472ff4494492a85278cbb13dde1431bbe9480d2818ad8fe44cd0339a9ff1bf04177f3faef07f7d8669f1bbdd39ff1037726e39f480e4cf17593572bf41b0bbc03787e1e2859ffffff", + "cborBytes": [ + 191, 27, 3, 225, 186, 74, 91, 250, 147, 140, 216, 102, 159, 27, 112, 45, 115, 229, 81, 121, 186, 86, 128, 255, 27, + 23, 87, 190, 251, 185, 165, 68, 226, 216, 102, 159, 27, 198, 113, 68, 73, 75, 167, 95, 177, 159, 75, 157, 136, 79, + 72, 62, 206, 151, 102, 15, 228, 34, 74, 204, 51, 1, 212, 226, 177, 0, 62, 99, 123, 255, 255, 27, 144, 78, 187, 31, + 118, 33, 28, 45, 191, 27, 11, 52, 171, 32, 176, 15, 207, 43, 27, 151, 236, 150, 149, 187, 43, 58, 16, 27, 156, 47, + 209, 100, 114, 255, 68, 148, 73, 42, 133, 39, 140, 187, 19, 221, 225, 67, 27, 190, 148, 128, 210, 129, 138, 216, + 254, 68, 205, 3, 57, 169, 255, 27, 240, 65, 119, 243, 250, 239, 7, 247, 216, 102, 159, 27, 189, 211, 159, 241, 3, + 119, 38, 227, 159, 72, 14, 76, 241, 117, 147, 87, 43, 244, 27, 11, 188, 3, 120, 126, 30, 40, 89, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1209, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5522568571701078212" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14921910026367087234" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6089283308386882574" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad27f4c80ca72feec3e1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10991433439266409749" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11231095563212564908" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "917f636736024a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10696943846747654589" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12508626055058363360" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12903686971486737073" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15532370573765029750" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15487571771472994692" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14668055961622604202" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7a62d2adf43eee" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15742127723527805473" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5406452143480866484" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c79f40a00662169623fba2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5814609858567294116" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11127300737436134269" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11947263218509917445" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4644738830098407962" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16637278620381544554" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a878da946" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4ca41adb2bfaa8c49f1bcf15461bfbf33282ff1b54817ae8151d940e4aad27f4c80ca72feec3e11b98896a7a57d30d15d8669f1b9bdcdde8ebc029ac9f47917f636736024a1b94732dc0f7b1c9bdffff1bad97911f9ff313e01bb3131aef144d92b11bd78e10be28feaf76d8669f1bd6eee8783003e1849f1bcb8f672eb210e9aa477a62d2adf43eeeffff1bda7745c259b41a21bf1b4b079394735386b44bc79f40a00662169623fba21b50b1a4dbf7634ca41b9a6c1d10d3d2ab7d1ba5cd3499115fad051b40756d5b6a7aa21a1be6e37cc1d50b006a455a878da946ffff", + "cborBytes": [ + 191, 27, 76, 164, 26, 219, 43, 250, 168, 196, 159, 27, 207, 21, 70, 27, 251, 243, 50, 130, 255, 27, 84, 129, 122, + 232, 21, 29, 148, 14, 74, 173, 39, 244, 200, 12, 167, 47, 238, 195, 225, 27, 152, 137, 106, 122, 87, 211, 13, 21, + 216, 102, 159, 27, 155, 220, 221, 232, 235, 192, 41, 172, 159, 71, 145, 127, 99, 103, 54, 2, 74, 27, 148, 115, 45, + 192, 247, 177, 201, 189, 255, 255, 27, 173, 151, 145, 31, 159, 243, 19, 224, 27, 179, 19, 26, 239, 20, 77, 146, + 177, 27, 215, 142, 16, 190, 40, 254, 175, 118, 216, 102, 159, 27, 214, 238, 232, 120, 48, 3, 225, 132, 159, 27, + 203, 143, 103, 46, 178, 16, 233, 170, 71, 122, 98, 210, 173, 244, 62, 238, 255, 255, 27, 218, 119, 69, 194, 89, + 180, 26, 33, 191, 27, 75, 7, 147, 148, 115, 83, 134, 180, 75, 199, 159, 64, 160, 6, 98, 22, 150, 35, 251, 162, 27, + 80, 177, 164, 219, 247, 99, 76, 164, 27, 154, 108, 29, 16, 211, 210, 171, 125, 27, 165, 205, 52, 153, 17, 95, 173, + 5, 27, 64, 117, 109, 91, 106, 122, 162, 26, 27, 230, 227, 124, 193, 213, 11, 0, 106, 69, 90, 135, 141, 169, 70, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1210, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4708747884553870929" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6dc78ab6026601e3a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9344646064450811911" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13064420787190955054" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3005fe4efd7813f882df03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0003" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13963856109706688225" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0e76" + }, + { + "_tag": "ByteArray", + "bytearray": "ab080c8b8aac02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16167975182453582066" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9925516484899983685" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12394548754748905582" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2909c35a060514ccfdfbfb" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf03d8669f1b4158d540c3b49e519f496dc78ab6026601e3a71bfffffffffffffff51b81aeda15e757b807ffff1bb54e257cd8befc2ebf4b3005fe4efd7813f882df03420003ff1bc1c99525e9bc36e19f420e7647ab080c8b8aac021be0602fc44f7a28f21b89be84a7c6bf51451bac02486c5e11986eff4b2909c35a060514ccfdfbfba0ff", + "cborBytes": [ + 191, 3, 216, 102, 159, 27, 65, 88, 213, 64, 195, 180, 158, 81, 159, 73, 109, 199, 138, 182, 2, 102, 1, 227, 167, + 27, 255, 255, 255, 255, 255, 255, 255, 245, 27, 129, 174, 218, 21, 231, 87, 184, 7, 255, 255, 27, 181, 78, 37, + 124, 216, 190, 252, 46, 191, 75, 48, 5, 254, 78, 253, 120, 19, 248, 130, 223, 3, 66, 0, 3, 255, 27, 193, 201, 149, + 37, 233, 188, 54, 225, 159, 66, 14, 118, 71, 171, 8, 12, 139, 138, 172, 2, 27, 224, 96, 47, 196, 79, 122, 40, 242, + 27, 137, 190, 132, 167, 198, 191, 81, 69, 27, 172, 2, 72, 108, 94, 17, 152, 110, 255, 75, 41, 9, 195, 90, 6, 5, + 20, 204, 253, 251, 251, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1211, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2221349371543002357" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "785dda540926d8fb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3065619861458527176" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12767533937694315055" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6655509271974480797" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "754766319183789981" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7237686297919118408" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11732567534200161256" + } + }, + { + "_tag": "ByteArray", + "bytearray": "58d1c264c15fe0a61d3af4c5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4299683750864423245" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14944962195683363397" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13908550694025401988" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9330432949775275296" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "777720883980804607" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2952921053464459476" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8719810035889446201" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a49f510702c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9384325044779050059" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17292356809661973588" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16254516519710452592" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd81d31212c6b160a6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16761495502212830606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6742016115428549469" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12173602009785886062" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b1ed3d17bf4db9cf548785dda540926d8fb1b2a8b45058a9e23c81bb12f64789603922f1b5c5d1e6ba35b8b9d1b0a7977f7e760ff9d1b64716d574f2e5c489f1ba2d27402b34803e84c58d1c264c15fe0a61d3af4c51b3bab8b9738cb094d1bcf672bef67594a451bc105192a61e59684ff1b817c5b5543f49520bf1b0acb0506001421ff1b28fae20d898578d41b7902fd0732139d3946a49f510702c11b823bd1e86edb644b1beffacae6493584541be193a4a7910f6b7049fd81d31212c6b160a61be89ccb5a61b4158e1b5d9073efae13e35dff1ba8f152878644e56ea0ff", + "cborBytes": [ + 191, 27, 30, 211, 209, 123, 244, 219, 156, 245, 72, 120, 93, 218, 84, 9, 38, 216, 251, 27, 42, 139, 69, 5, 138, + 158, 35, 200, 27, 177, 47, 100, 120, 150, 3, 146, 47, 27, 92, 93, 30, 107, 163, 91, 139, 157, 27, 10, 121, 119, + 247, 231, 96, 255, 157, 27, 100, 113, 109, 87, 79, 46, 92, 72, 159, 27, 162, 210, 116, 2, 179, 72, 3, 232, 76, 88, + 209, 194, 100, 193, 95, 224, 166, 29, 58, 244, 197, 27, 59, 171, 139, 151, 56, 203, 9, 77, 27, 207, 103, 43, 239, + 103, 89, 74, 69, 27, 193, 5, 25, 42, 97, 229, 150, 132, 255, 27, 129, 124, 91, 85, 67, 244, 149, 32, 191, 27, 10, + 203, 5, 6, 0, 20, 33, 255, 27, 40, 250, 226, 13, 137, 133, 120, 212, 27, 121, 2, 253, 7, 50, 19, 157, 57, 70, 164, + 159, 81, 7, 2, 193, 27, 130, 59, 209, 232, 110, 219, 100, 75, 27, 239, 250, 202, 230, 73, 53, 132, 84, 27, 225, + 147, 164, 167, 145, 15, 107, 112, 73, 253, 129, 211, 18, 18, 198, 177, 96, 166, 27, 232, 156, 203, 90, 97, 180, + 21, 142, 27, 93, 144, 115, 239, 174, 19, 227, 93, 255, 27, 168, 241, 82, 135, 134, 68, 229, 110, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1212, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8293927233830902881" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1484695525801202649" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a9aee06a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14039744620880510269" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12077756533108486864" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "84038cd3d9a727" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3221782050414472170" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12188304771530640133" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1abec1c816ee21fbab4870" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16897406041962091406" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6bf42a7e9693" + } + ] + } + } + ] + }, + "cborHex": "bf1b7319f2e0456ddc61d8669f1b149ab2b6e6fe13d99f44a9aee06affff1bc2d73158d0c8bd3dd8669f1ba79ccf937f95b2d09f4784038cd3d9a7271b2cb611b482af2bea1ba9258e9d01484b054b1abec1c816ee21fbab4870ffff1bea7fa544d4b0938e9f466bf42a7e9693ffff", + "cborBytes": [ + 191, 27, 115, 25, 242, 224, 69, 109, 220, 97, 216, 102, 159, 27, 20, 154, 178, 182, 230, 254, 19, 217, 159, 68, + 169, 174, 224, 106, 255, 255, 27, 194, 215, 49, 88, 208, 200, 189, 61, 216, 102, 159, 27, 167, 156, 207, 147, 127, + 149, 178, 208, 159, 71, 132, 3, 140, 211, 217, 167, 39, 27, 44, 182, 17, 180, 130, 175, 43, 234, 27, 169, 37, 142, + 157, 1, 72, 75, 5, 75, 26, 190, 193, 200, 22, 238, 33, 251, 171, 72, 112, 255, 255, 27, 234, 127, 165, 68, 212, + 176, 147, 142, 159, 70, 107, 244, 42, 126, 150, 147, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1213, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16530118037126349996" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15551887350738469902" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1304759971794020648" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3033" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17171519687124327091" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15987660923008234403" + } + }, + { + "_tag": "ByteArray", + "bytearray": "33bb8a55fb7ba602f68cd32f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5803380523696625927" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5823490661268887970" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17450088588865706988" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18324936336363035836" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7161772320084607509" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef69012bb2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14458440510054016066" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a45e630a68e5f97ed85c59" + } + } + ] + }, + "cborHex": "bf071be566c6c6423184ac0cd8669f1bd7d36725e7a8440e9f1b121b70480bee69284230331bee4d7e2d44ac1ab31bdddf94e7394cb3a34c33bb8a55fb7ba602f68cd32fffff1b5089bfd6b35b99079f0813ff1b50d131e6f9bc99a29f1bf22b2b1df6701bec1bfe4f40821c911cbcff1b6363b9fafcde421545ef69012bb21bc8a6b30a2fe324424ba45e630a68e5f97ed85c59ff", + "cborBytes": [ + 191, 7, 27, 229, 102, 198, 198, 66, 49, 132, 172, 12, 216, 102, 159, 27, 215, 211, 103, 37, 231, 168, 68, 14, 159, + 27, 18, 27, 112, 72, 11, 238, 105, 40, 66, 48, 51, 27, 238, 77, 126, 45, 68, 172, 26, 179, 27, 221, 223, 148, 231, + 57, 76, 179, 163, 76, 51, 187, 138, 85, 251, 123, 166, 2, 246, 140, 211, 47, 255, 255, 27, 80, 137, 191, 214, 179, + 91, 153, 7, 159, 8, 19, 255, 27, 80, 209, 49, 230, 249, 188, 153, 162, 159, 27, 242, 43, 43, 29, 246, 112, 27, + 236, 27, 254, 79, 64, 130, 28, 145, 28, 188, 255, 27, 99, 99, 185, 250, 252, 222, 66, 21, 69, 239, 105, 1, 43, + 178, 27, 200, 166, 179, 10, 47, 227, 36, 66, 75, 164, 94, 99, 10, 104, 229, 249, 126, 216, 92, 89, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1214, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0c" + }, + { + "_tag": "ByteArray", + "bytearray": "17d864f67a990e331ec8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9571214719606805422" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "649649645950858304" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6dc13875c537988bc80bacd8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25d96ae2aa58" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccc97567de412f7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ab421" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1570873530029831215" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "498c314935f3e613" + }, + { + "_tag": "ByteArray", + "bytearray": "dd9d16" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6107123484358351607" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9625194808982017678" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac4af798e259f0" + } + ] + } + } + ] + }, + "cborHex": "bf0d9f410c4a17d864f67a990e331ec81b84d3c913b72753ae1b090404e9375bf440ff0fbf4c6dc13875c537988bc80bacd84625d96ae2aa5848ccc97567de412f7d436ab421ff11001bfffffffffffffff1d8669f1b15ccdd27187df42f9f48498c314935f3e61343dd9d161b54c0dc73bca01af71b85938faeab4e968e47ac4af798e259f0ffffff", + "cborBytes": [ + 191, 13, 159, 65, 12, 74, 23, 216, 100, 246, 122, 153, 14, 51, 30, 200, 27, 132, 211, 201, 19, 183, 39, 83, 174, + 27, 9, 4, 4, 233, 55, 91, 244, 64, 255, 15, 191, 76, 109, 193, 56, 117, 197, 55, 152, 139, 200, 11, 172, 216, 70, + 37, 217, 106, 226, 170, 88, 72, 204, 201, 117, 103, 222, 65, 47, 125, 67, 106, 180, 33, 255, 17, 0, 27, 255, 255, + 255, 255, 255, 255, 255, 241, 216, 102, 159, 27, 21, 204, 221, 39, 24, 125, 244, 47, 159, 72, 73, 140, 49, 73, 53, + 243, 230, 19, 67, 221, 157, 22, 27, 84, 192, 220, 115, 188, 160, 26, 247, 27, 133, 147, 143, 174, 171, 78, 150, + 142, 71, 172, 74, 247, 152, 226, 89, 240, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1215, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9802068584481964066" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d019699b0f1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4530120847355767985" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9eb6dba114d780" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13760383221183728583" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b8807f171aa104022460d019699b0f14186d8669f1b3ede38e8b83b6cb19f479eb6dba114d7801bbef6b3a24fe6cbc7ffffff", + "cborBytes": [ + 191, 27, 136, 7, 241, 113, 170, 16, 64, 34, 70, 13, 1, 150, 153, 176, 241, 65, 134, 216, 102, 159, 27, 62, 222, + 56, 232, 184, 59, 108, 177, 159, 71, 158, 182, 219, 161, 20, 215, 128, 27, 190, 246, 179, 162, 79, 230, 203, 199, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1216, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13442851019500695702" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e4082fe3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8181269086289319154" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8a4" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "344aabbd85dd96fba77d41cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + ] + } + } + ] + }, + "cborHex": "bf4104d8669f1bba8e99c769d630969f44e4082fe31b7189b4e34428d4f2ffff42b8a49f4c344aabbd85dd96fba77d41cc1bfffffffffffffff7ffff", + "cborBytes": [ + 191, 65, 4, 216, 102, 159, 27, 186, 142, 153, 199, 105, 214, 48, 150, 159, 68, 228, 8, 47, 227, 27, 113, 137, 180, + 227, 68, 40, 212, 242, 255, 255, 66, 184, 164, 159, 76, 52, 74, 171, 189, 133, 221, 150, 251, 167, 125, 65, 204, + 27, 255, 255, 255, 255, 255, 255, 255, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1217, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b3abc006a80fad4fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12979583328319389576" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f45a07bc07038f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "77923c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17679703025436426077" + } + }, + { + "_tag": "ByteArray", + "bytearray": "955bb253" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14359206321266798757" + } + } + ] + } + } + ] + }, + "cborHex": "bf492b3abc006a80fad4fb1bb420be44b10f3f8847f45a07bc07038fd905039f4377923c1bf55aec3b05897f5d44955bb2531bc746261223a6b0a5ffff", + "cborBytes": [ + 191, 73, 43, 58, 188, 0, 106, 128, 250, 212, 251, 27, 180, 32, 190, 68, 177, 15, 63, 136, 71, 244, 90, 7, 188, 7, + 3, 143, 217, 5, 3, 159, 67, 119, 146, 60, 27, 245, 90, 236, 59, 5, 137, 127, 93, 68, 149, 91, 178, 83, 27, 199, + 70, 38, 18, 35, 166, 176, 165, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1218, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03384d26fcafad" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4601074500533165579" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d21c537ceb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11263181150697611017" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56ecd49c3eb53a530b4dbc" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c8ebf1ad1d32240fdeeab5" + }, + { + "_tag": "ByteArray", + "bytearray": "1f4319bfe9a0b93f806a6e" + }, + { + "_tag": "ByteArray", + "bytearray": "44923ac663d04b2b4c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4057591420645695938" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f8f7dd3361770a23b27" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11171205908461929891" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84a82405" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1d95b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7146f27c6bdb557a4725e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4806190292160638415" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31c7298750" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4978470177156071788" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7087674918289939061" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8135986434978809663" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8120419594669616303" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10878350559138113555" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12726879769622445993" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b74ef6c833ae6c796ef530" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17568011940013248358" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11291628840790000446" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4703384d26fcafadbf1b3fda4ce175631e0b45d21c537ceb1b9c4edb94e834df09416aff4b56ecd49c3eb53a530b4dbc9f4bc8ebf1ad1d32240fdeeab54b1f4319bfe9a0b93f806a6e4944923ac663d04b2b4c1b384f75e6274261c2ff4a5f8f7dd3361770a23b27d8669f1b9b0818960e9e45a380ff4484a8240543b1d95b4bd7146f27c6bdb557a4725ebf1b42b3049b3f2a6dcf4531c72987501b4517143fc243816c410d1b625c7ac93c1e1a751b70e8d48e6a4f073f1b70b18698f7676caf1b96f7aa32939968131bb09ef5b877737fa94bb74ef6c833ae6c796ef5301bf3ce1dc7b64f8f661b9cb3ec9ae6d8033effff", + "cborBytes": [ + 191, 71, 3, 56, 77, 38, 252, 175, 173, 191, 27, 63, 218, 76, 225, 117, 99, 30, 11, 69, 210, 28, 83, 124, 235, 27, + 156, 78, 219, 148, 232, 52, 223, 9, 65, 106, 255, 75, 86, 236, 212, 156, 62, 181, 58, 83, 11, 77, 188, 159, 75, + 200, 235, 241, 173, 29, 50, 36, 15, 222, 234, 181, 75, 31, 67, 25, 191, 233, 160, 185, 63, 128, 106, 110, 73, 68, + 146, 58, 198, 99, 208, 75, 43, 76, 27, 56, 79, 117, 230, 39, 66, 97, 194, 255, 74, 95, 143, 125, 211, 54, 23, 112, + 162, 59, 39, 216, 102, 159, 27, 155, 8, 24, 150, 14, 158, 69, 163, 128, 255, 68, 132, 168, 36, 5, 67, 177, 217, + 91, 75, 215, 20, 111, 39, 198, 189, 181, 87, 164, 114, 94, 191, 27, 66, 179, 4, 155, 63, 42, 109, 207, 69, 49, + 199, 41, 135, 80, 27, 69, 23, 20, 63, 194, 67, 129, 108, 65, 13, 27, 98, 92, 122, 201, 60, 30, 26, 117, 27, 112, + 232, 212, 142, 106, 79, 7, 63, 27, 112, 177, 134, 152, 247, 103, 108, 175, 27, 150, 247, 170, 50, 147, 153, 104, + 19, 27, 176, 158, 245, 184, 119, 115, 127, 169, 75, 183, 78, 246, 200, 51, 174, 108, 121, 110, 245, 48, 27, 243, + 206, 29, 199, 182, 79, 143, 102, 27, 156, 179, 236, 154, 230, 216, 3, 62, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1219, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13333612829544327625" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef4e595f5b6100a0f71dc024" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0fdeacfe40c1a00052c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1747680627805924062" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef8f276fff7184" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10063733155403875650" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17705882462143134299" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9132585965338796525" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e612309a5fe" + }, + { + "_tag": "ByteArray", + "bytearray": "d68051020086a60d95ce90" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3716065692146122791" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0dde4e97d24c41" + } + } + ] + }, + "cborHex": "bf1bb90a82395594a9c94cef4e595f5b6100a0f71dc0244ad0fdeacfe40c1a00052c1b1841024579342ade47ef8f276fff7184d8669f1b8ba98ffc222b45429f1bf5b7ee4a1edc3a5b1b7ebd768c88bca1ed464e612309a5fe4bd68051020086a60d95ce901b33921e0ef662c027ffff41ff470dde4e97d24c41ff", + "cborBytes": [ + 191, 27, 185, 10, 130, 57, 85, 148, 169, 201, 76, 239, 78, 89, 95, 91, 97, 0, 160, 247, 29, 192, 36, 74, 208, 253, + 234, 207, 228, 12, 26, 0, 5, 44, 27, 24, 65, 2, 69, 121, 52, 42, 222, 71, 239, 143, 39, 111, 255, 113, 132, 216, + 102, 159, 27, 139, 169, 143, 252, 34, 43, 69, 66, 159, 27, 245, 183, 238, 74, 30, 220, 58, 91, 27, 126, 189, 118, + 140, 136, 188, 161, 237, 70, 78, 97, 35, 9, 165, 254, 75, 214, 128, 81, 2, 0, 134, 166, 13, 149, 206, 144, 27, 51, + 146, 30, 14, 246, 98, 192, 39, 255, 255, 65, 255, 71, 13, 222, 78, 151, 210, 76, 65, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1220, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "49a0c54e" + }, + { + "_tag": "ByteArray", + "bytearray": "eb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3370473485065432717" + } + }, + { + "_tag": "ByteArray", + "bytearray": "969812c8415b" + }, + { + "_tag": "ByteArray", + "bytearray": "61" + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff49f4449a0c54e41eb1b2ec653c6f232ae8d46969812c8415b4161ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 68, 73, 160, 197, 78, 65, 235, 27, 46, 198, 83, 198, 242, + 50, 174, 141, 70, 150, 152, 18, 200, 65, 91, 65, 97, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1221, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2356335372322173082" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1b68d1b2b884e907" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7283561665805392985" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b8199d70f98fdcc69d61e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3630760261864937814" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3921059208077309963" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4730956711986490606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17437117777969633570" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7870821369570444870" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17429779739616750891" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14552768300807034779" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12086797966860108113" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16007565065180989669" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "318842617137131097" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4893525896190799438" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdc379" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11332798843376657729" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14720021935318811939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75fa11e6a8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18109950191686946982" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1363998868253110703" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa5488ea5898819cf2f1ce" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5567572330650069005" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14671630303577177992" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8228290789985818755" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10121752701852037002" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11700646217296144335" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1928250151910789488" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13697762982354255119" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6625801008171368639" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b20b3628966f3709a9f481b68d1b2b884e9071b651468bebdfb9c594b0b8199d70f98fdcc69d61e1b32630d38b9105956ff1b366a669338b8f80bbf1b41a7bc1059b46cee1bf1fd163bb68759221b6d3ac6558fccc6461bf1e3045385282d2b1bc9f5d1aa6c2b179b1ba7bceeb6569c41511bde264b9d7510c8e51b046cc1abc5b6ee59ff1b43e94be025a0ae4e43fdc3791b9d4630811a6c6541a01bcc4805f5cca2c5234575fa11e6a81bfb5377bfab8490a6bf1b12ede5be7042f1af4bfa5488ea5898819cf2f1ce1b4d43fd8955b0e80d1bcb9c1a070892ff881b7230c2e0cdb918831b8c77b0747a3daf8a1ba2610bbdf07467cf1b1ac2854bfebc51701bbe183adbccb87d0f1b5bf392e9747ac0bfffff", + "cborBytes": [ + 191, 27, 32, 179, 98, 137, 102, 243, 112, 154, 159, 72, 27, 104, 209, 178, 184, 132, 233, 7, 27, 101, 20, 104, + 190, 189, 251, 156, 89, 75, 11, 129, 153, 215, 15, 152, 253, 204, 105, 214, 30, 27, 50, 99, 13, 56, 185, 16, 89, + 86, 255, 27, 54, 106, 102, 147, 56, 184, 248, 11, 191, 27, 65, 167, 188, 16, 89, 180, 108, 238, 27, 241, 253, 22, + 59, 182, 135, 89, 34, 27, 109, 58, 198, 85, 143, 204, 198, 70, 27, 241, 227, 4, 83, 133, 40, 45, 43, 27, 201, 245, + 209, 170, 108, 43, 23, 155, 27, 167, 188, 238, 182, 86, 156, 65, 81, 27, 222, 38, 75, 157, 117, 16, 200, 229, 27, + 4, 108, 193, 171, 197, 182, 238, 89, 255, 27, 67, 233, 75, 224, 37, 160, 174, 78, 67, 253, 195, 121, 27, 157, 70, + 48, 129, 26, 108, 101, 65, 160, 27, 204, 72, 5, 245, 204, 162, 197, 35, 69, 117, 250, 17, 230, 168, 27, 251, 83, + 119, 191, 171, 132, 144, 166, 191, 27, 18, 237, 229, 190, 112, 66, 241, 175, 75, 250, 84, 136, 234, 88, 152, 129, + 156, 242, 241, 206, 27, 77, 67, 253, 137, 85, 176, 232, 13, 27, 203, 156, 26, 7, 8, 146, 255, 136, 27, 114, 48, + 194, 224, 205, 185, 24, 131, 27, 140, 119, 176, 116, 122, 61, 175, 138, 27, 162, 97, 11, 189, 240, 116, 103, 207, + 27, 26, 194, 133, 75, 254, 188, 81, 112, 27, 190, 24, 58, 219, 204, 184, 125, 15, 27, 91, 243, 146, 233, 116, 122, + 192, 191, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1222, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4489130543670650949" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "298e6891b473df30" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7772327909058577349" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "005c3310d49e83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f47a41968c8e71d39d2c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25f5e18e6f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16683406706336498563" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c84d0b26b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13098462278294165987" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9af01aa0d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d19da10" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4cd8e204c617b26" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7442890869813836060" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d853b5985d2e4198f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fb90533839184a3" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11890486517592050352" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "879287c2ad" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14660985691768040454" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1863088005082104993" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15454418713148511621" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17252814304451191664" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b3e4c9871edd8684548298e6891b473df301b6bdcdb0dc14a83c5bf47005c3310d49e834b1f47a41968c8e71d39d2c74525f5e18e6f1be7875e01c68e8383457c84d0b26b1bb5c7160b2193d9e345a9af01aa0d440d19da1048b4cd8e204c617b261b674a75cfdd40791c49d853b5985d2e4198f6486fb90533839184a3ff1ba5037e7d3fa54ab045879287c2ad1bcb7648cf36eb2c061b19db04ab6835c4a11bd6791ff0475dd58541a41bef6e4f3358976370a0ff", + "cborBytes": [ + 191, 27, 62, 76, 152, 113, 237, 216, 104, 69, 72, 41, 142, 104, 145, 180, 115, 223, 48, 27, 107, 220, 219, 13, + 193, 74, 131, 197, 191, 71, 0, 92, 51, 16, 212, 158, 131, 75, 31, 71, 164, 25, 104, 200, 231, 29, 57, 210, 199, + 69, 37, 245, 225, 142, 111, 27, 231, 135, 94, 1, 198, 142, 131, 131, 69, 124, 132, 208, 178, 107, 27, 181, 199, + 22, 11, 33, 147, 217, 227, 69, 169, 175, 1, 170, 13, 68, 13, 25, 218, 16, 72, 180, 205, 142, 32, 76, 97, 123, 38, + 27, 103, 74, 117, 207, 221, 64, 121, 28, 73, 216, 83, 181, 152, 93, 46, 65, 152, 246, 72, 111, 185, 5, 51, 131, + 145, 132, 163, 255, 27, 165, 3, 126, 125, 63, 165, 74, 176, 69, 135, 146, 135, 194, 173, 27, 203, 118, 72, 207, + 54, 235, 44, 6, 27, 25, 219, 4, 171, 104, 53, 196, 161, 27, 214, 121, 31, 240, 71, 93, 213, 133, 65, 164, 27, 239, + 110, 79, 51, 88, 151, 99, 112, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1223, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1163844959907250899" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1367193944488280986" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3363451663565395459" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5797871324184677151" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11817665137635799694" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14341509688399692100" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14615527904796879482" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4015729717698896470" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14703851058195774266" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e621d3a0871ba971a2b548" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16738094968318190689" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4241981466847167513" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13514895317511421278" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7334046133846335181" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17704537300204858112" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13372400384486623318" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13476776713299811686" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4526a5810730896da69d6999" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bef672f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9256165467ab79" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4660b7378aa9c60e95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ec17cf3ce30" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "592606496064941747" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18376864115563147857" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15168223312194860644" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4270a2b7e251b820b408" + }, + { + "_tag": "ByteArray", + "bytearray": "6b" + }, + { + "_tag": "ByteArray", + "bytearray": "ea78d054" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13644633219248479147" + } + }, + { + "_tag": "ByteArray", + "bytearray": "039e09f7c9a75ce70c" + } + ] + } + } + ] + }, + "cborHex": "bf1b1026ced320e682d3bf1b12f93fa6184a039a1b2ead6177ba0316031b50762d403b738b1f1ba400c7d47b4cb28e1bc7074713b7e30144418c1bcad4c9316a3a2a7a1b37babce6e96c22561bcc0e92a21202bb3a4be621d3a0871ba971a2b5481be849a8b1035be4611b3ade8bab4b374419ff1bbb8e8dafb0dbbd5e1b65c7c419ee3cdecd1bf5b326df335d2b00bf1bb9944f4cb79f48561bbb072104897ddd664c4526a5810730896da69d699944bef672f2479256165467ab79494660b7378aa9c60e95469ec17cf3ce301b08395c77e98a2eb3ff1bff07bc8c5dc3b251d8669f1bd2805abcdd2c76649f4a4270a2b7e251b820b408416b44ea78d0541bbd5b799edbccdbab49039e09f7c9a75ce70cffffff", + "cborBytes": [ + 191, 27, 16, 38, 206, 211, 32, 230, 130, 211, 191, 27, 18, 249, 63, 166, 24, 74, 3, 154, 27, 46, 173, 97, 119, + 186, 3, 22, 3, 27, 80, 118, 45, 64, 59, 115, 139, 31, 27, 164, 0, 199, 212, 123, 76, 178, 142, 27, 199, 7, 71, 19, + 183, 227, 1, 68, 65, 140, 27, 202, 212, 201, 49, 106, 58, 42, 122, 27, 55, 186, 188, 230, 233, 108, 34, 86, 27, + 204, 14, 146, 162, 18, 2, 187, 58, 75, 230, 33, 211, 160, 135, 27, 169, 113, 162, 181, 72, 27, 232, 73, 168, 177, + 3, 91, 228, 97, 27, 58, 222, 139, 171, 75, 55, 68, 25, 255, 27, 187, 142, 141, 175, 176, 219, 189, 94, 27, 101, + 199, 196, 25, 238, 60, 222, 205, 27, 245, 179, 38, 223, 51, 93, 43, 0, 191, 27, 185, 148, 79, 76, 183, 159, 72, + 86, 27, 187, 7, 33, 4, 137, 125, 221, 102, 76, 69, 38, 165, 129, 7, 48, 137, 109, 166, 157, 105, 153, 68, 190, + 246, 114, 242, 71, 146, 86, 22, 84, 103, 171, 121, 73, 70, 96, 183, 55, 138, 169, 198, 14, 149, 70, 158, 193, 124, + 243, 206, 48, 27, 8, 57, 92, 119, 233, 138, 46, 179, 255, 27, 255, 7, 188, 140, 93, 195, 178, 81, 216, 102, 159, + 27, 210, 128, 90, 188, 221, 44, 118, 100, 159, 74, 66, 112, 162, 183, 226, 81, 184, 32, 180, 8, 65, 107, 68, 234, + 120, 208, 84, 27, 189, 91, 121, 158, 219, 204, 219, 171, 73, 3, 158, 9, 247, 201, 167, 92, 231, 12, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1224, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6497628360795556889" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10076675177600981193" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "399259898190314362" + } + }, + { + "_tag": "ByteArray", + "bytearray": "106a3afd656dfdb8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15141757443148238846" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9072910892082014056" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15361713219641345452" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1e0818fb0bd7a685490" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9720607060322529853" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1892119935609377220" + } + } + } + ] + }, + "cborHex": "bf1b5a2c369177b90c199f1b8bd78aaf7de718c91b058a74c314b13b7a48106a3afd656dfdb81bd222542b89fa4ffeff1b7de97462d1522768bf1bd52fc4c88e2505ac4ae1e0818fb0bd7a685490ff1b86e6889e8fadb23d1b1a42290e7a6e91c4ff", + "cborBytes": [ + 191, 27, 90, 44, 54, 145, 119, 185, 12, 25, 159, 27, 139, 215, 138, 175, 125, 231, 24, 201, 27, 5, 138, 116, 195, + 20, 177, 59, 122, 72, 16, 106, 58, 253, 101, 109, 253, 184, 27, 210, 34, 84, 43, 137, 250, 79, 254, 255, 27, 125, + 233, 116, 98, 209, 82, 39, 104, 191, 27, 213, 47, 196, 200, 142, 37, 5, 172, 74, 225, 224, 129, 143, 176, 189, + 122, 104, 84, 144, 255, 27, 134, 230, 136, 158, 143, 173, 178, 61, 27, 26, 66, 41, 14, 122, 110, 145, 196, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1225, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0607064d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1920004768655214451" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed07f3ad8d59" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1676894926396018676" + } + } + } + ] + }, + "cborHex": "bf440607064d1b1aa53a2a1ac0077346ed07f3ad8d591b1745870d0d7d4ff4ff", + "cborBytes": [ + 191, 68, 6, 7, 6, 77, 27, 26, 165, 58, 42, 26, 192, 7, 115, 70, 237, 7, 243, 173, 141, 89, 27, 23, 69, 135, 13, + 13, 125, 79, 244, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1226, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05cc35ca65ae1ec152" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c8" + }, + { + "_tag": "ByteArray", + "bytearray": "4a5aac" + }, + { + "_tag": "ByteArray", + "bytearray": "a9b96966e8f2c6d6e0" + }, + { + "_tag": "ByteArray", + "bytearray": "45c7382f8219405c06" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34c8c45bf186be" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14540647296732563342" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43b961fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78b7de4ad3aa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b1423" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9928848324989815286" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1912896634738347448" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12075362586802402441" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8987790575979049071" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16796831483062796251" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37568f" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd0dbeffeeac" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17621348939504476144" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9fdd59" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2008861679158710096" + } + }, + { + "_tag": "ByteArray", + "bytearray": "52b5e7c45f85" + }, + { + "_tag": "ByteArray", + "bytearray": "c333ccf0db7afab3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb0e2fe32cc6fe3dc81fc7e0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13833403095797257846" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7255491004008456825" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e26348e2fea2a4d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2631273316112625382" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d00ef35093" + } + ] + } + } + ] + }, + "cborHex": "bf4905cc35ca65ae1ec1529f41c8434a5aac49a9b96966e8f2c6d6e04945c7382f8219405c06ff4734c8c45bf186bed8669f1bc9cac1ad3dfd078e80ff4443b961fb4678b7de4ad3aa437b1423bf1b89ca5af23fc009f61b1a8bf95ab59e8db81ba7944e4b706634891b7cbb0be8d4d5b06f1be91a553d8c0e3fdb4337568fff46bd0dbeffeeacd8669f1bf48b9b7fa25edff09f439fdd591b1be0e90dc5264f504652b5e7c45f8548c333ccf0db7afab3ffff4cfb0e2fe32cc6fe3dc81fc7e0d8669f1bbffa1ed2b7c8d6769f1b64b0aea07cf76279486e26348e2fea2a4d1b24842923d1db6ee645d00ef35093ffffff", + "cborBytes": [ + 191, 73, 5, 204, 53, 202, 101, 174, 30, 193, 82, 159, 65, 200, 67, 74, 90, 172, 73, 169, 185, 105, 102, 232, 242, + 198, 214, 224, 73, 69, 199, 56, 47, 130, 25, 64, 92, 6, 255, 71, 52, 200, 196, 91, 241, 134, 190, 216, 102, 159, + 27, 201, 202, 193, 173, 61, 253, 7, 142, 128, 255, 68, 67, 185, 97, 251, 70, 120, 183, 222, 74, 211, 170, 67, 123, + 20, 35, 191, 27, 137, 202, 90, 242, 63, 192, 9, 246, 27, 26, 139, 249, 90, 181, 158, 141, 184, 27, 167, 148, 78, + 75, 112, 102, 52, 137, 27, 124, 187, 11, 232, 212, 213, 176, 111, 27, 233, 26, 85, 61, 140, 14, 63, 219, 67, 55, + 86, 143, 255, 70, 189, 13, 190, 255, 238, 172, 216, 102, 159, 27, 244, 139, 155, 127, 162, 94, 223, 240, 159, 67, + 159, 221, 89, 27, 27, 224, 233, 13, 197, 38, 79, 80, 70, 82, 181, 231, 196, 95, 133, 72, 195, 51, 204, 240, 219, + 122, 250, 179, 255, 255, 76, 251, 14, 47, 227, 44, 198, 254, 61, 200, 31, 199, 224, 216, 102, 159, 27, 191, 250, + 30, 210, 183, 200, 214, 118, 159, 27, 100, 176, 174, 160, 124, 247, 98, 121, 72, 110, 38, 52, 142, 47, 234, 42, + 77, 27, 36, 132, 41, 35, 209, 219, 110, 230, 69, 208, 14, 243, 80, 147, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1227, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d57c415" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9059877f774a96119ff8" + } + } + ] + }, + "cborHex": "bf00a008d8669f1bfffffffffffffff280ff443d57c4154a9059877f774a96119ff8ff", + "cborBytes": [ + 191, 0, 160, 8, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 128, 255, 68, 61, 87, 196, 21, 74, 144, + 89, 135, 127, 119, 74, 150, 17, 159, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1228, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a28142d05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16973800913255499998" + } + } + } + ] + }, + "cborHex": "bf453a28142d051beb8f0dffe2cb88deff", + "cborBytes": [191, 69, 58, 40, 20, 45, 5, 27, 235, 143, 13, 255, 226, 203, 136, 222, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1229, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "649f5144e42701668a4566" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72a95082c39a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16047119886609555905" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6f5a5c40f983c11eea53d6c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7912205524387735788" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "90595f1b3230a5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4072309133073084112" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f40b20d2c0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17b242c8068d936a9a5f95b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10060634274273820232" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "607e7c649ff46feabf32b98a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "702853117224978724" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "840ea0f417" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36e80977225b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "997322ba2a5cd7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "231827934920722442" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9aba8d468d2c294bf1dae8df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b1af272bb9541c10d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3ad33a5a721dabd60b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48ff1f6077ec" + } + } + ] + } + } + ] + }, + "cborHex": "bf414b4b649f5144e42701668a45664672a95082c39a9f1bdeb2d283fd7821c1ff4cd6f5a5c40f983c11eea53d6cd8669f1b6dcdcd00f703a8ec9f4790595f1b3230a51b3883bf949c666ed0ffff45f40b20d2c0bf4c17b242c8068d936a9a5f95b31b8b9e8d91a535fe484c607e7c649ff46feabf32b98a1b09c1092fad78892445840ea0f4174636e80977225b47997322ba2a5cd71b03379e474df6480a4c9aba8d468d2c294bf1dae8df497b1af272bb9541c10d4ad3ad33a5a721dabd60b74648ff1f6077ecffff", + "cborBytes": [ + 191, 65, 75, 75, 100, 159, 81, 68, 228, 39, 1, 102, 138, 69, 102, 70, 114, 169, 80, 130, 195, 154, 159, 27, 222, + 178, 210, 131, 253, 120, 33, 193, 255, 76, 214, 245, 165, 196, 15, 152, 60, 17, 238, 165, 61, 108, 216, 102, 159, + 27, 109, 205, 205, 0, 247, 3, 168, 236, 159, 71, 144, 89, 95, 27, 50, 48, 165, 27, 56, 131, 191, 148, 156, 102, + 110, 208, 255, 255, 69, 244, 11, 32, 210, 192, 191, 76, 23, 178, 66, 200, 6, 141, 147, 106, 154, 95, 149, 179, 27, + 139, 158, 141, 145, 165, 53, 254, 72, 76, 96, 126, 124, 100, 159, 244, 111, 234, 191, 50, 185, 138, 27, 9, 193, 9, + 47, 173, 120, 137, 36, 69, 132, 14, 160, 244, 23, 70, 54, 232, 9, 119, 34, 91, 71, 153, 115, 34, 186, 42, 92, 215, + 27, 3, 55, 158, 71, 77, 246, 72, 10, 76, 154, 186, 141, 70, 141, 44, 41, 75, 241, 218, 232, 223, 73, 123, 26, 242, + 114, 187, 149, 65, 193, 13, 74, 211, 173, 51, 165, 167, 33, 218, 189, 96, 183, 70, 72, 255, 31, 96, 119, 236, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1230, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f2886" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d61" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70022521dc7aad825e06" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12271060975700422699" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d592de7ed964be" + }, + { + "_tag": "ByteArray", + "bytearray": "c4d0a53aeaa343" + }, + { + "_tag": "ByteArray", + "bytearray": "ed4f6774b23f6786" + } + ] + } + } + ] + }, + "cborHex": "bf430f2886420d614a70022521dc7aad825e069f1baa4b90f149c8302b47d592de7ed964be47c4d0a53aeaa34348ed4f6774b23f6786ffff", + "cborBytes": [ + 191, 67, 15, 40, 134, 66, 13, 97, 74, 112, 2, 37, 33, 220, 122, 173, 130, 94, 6, 159, 27, 170, 75, 144, 241, 73, + 200, 48, 43, 71, 213, 146, 222, 126, 217, 100, 190, 71, 196, 208, 165, 58, 234, 163, 67, 72, 237, 79, 103, 116, + 178, 63, 103, 134, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1231, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "20af93b4" + } + ] + } + } + ] + }, + "cborHex": "bf0b021bffffffffffffffff9f4420af93b4ffff", + "cborBytes": [191, 11, 2, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 68, 32, 175, 147, 180, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1232, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "020287032724ba79" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9747150813587997665" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d844263680aa42148f4220" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10702324740526953100" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5754498423809362604" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "921928fb3b6de1d29157ce05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8934c" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf48020287032724ba79bf1b8744d605b81283e14bd844263680aa42148f42201b94864ba5edfbd28c1b4fdc15d3ebb3caacff4c921928fb3b6de1d29157ce051bfffffffffffffffb43c8934c80ff", + "cborBytes": [ + 191, 72, 2, 2, 135, 3, 39, 36, 186, 121, 191, 27, 135, 68, 214, 5, 184, 18, 131, 225, 75, 216, 68, 38, 54, 128, + 170, 66, 20, 143, 66, 32, 27, 148, 134, 75, 165, 237, 251, 210, 140, 27, 79, 220, 21, 211, 235, 179, 202, 172, + 255, 76, 146, 25, 40, 251, 59, 109, 225, 210, 145, 87, 206, 5, 27, 255, 255, 255, 255, 255, 255, 255, 251, 67, + 200, 147, 76, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1233, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b57003f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15606172188697350753" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5719696384974617673" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63a9c159ed6f1caa406c" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4944" + }, + { + "_tag": "ByteArray", + "bytearray": "933112974df0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11017299370840352361" + } + } + ] + } + } + ] + }, + "cborHex": "bf0544b57003f81bd89442ebaae2d261bf1b4f60718ed17f7c494a63a9c159ed6f1caa406cff1bfffffffffffffffda01bffffffffffffffff9f42494446933112974df01b98e54f67d712e669ffff", + "cborBytes": [ + 191, 5, 68, 181, 112, 3, 248, 27, 216, 148, 66, 235, 170, 226, 210, 97, 191, 27, 79, 96, 113, 142, 209, 127, 124, + 73, 74, 99, 169, 193, 89, 237, 111, 28, 170, 64, 108, 255, 27, 255, 255, 255, 255, 255, 255, 255, 253, 160, 27, + 255, 255, 255, 255, 255, 255, 255, 255, 159, 66, 73, 68, 70, 147, 49, 18, 151, 77, 240, 27, 152, 229, 79, 103, + 215, 18, 230, 105, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1234, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb0a03fc" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a26eef7550a65556391c53" + } + ] + } + } + ] + }, + "cborHex": "bf44bb0a03fcd905059f4ba26eef7550a65556391c53ffff", + "cborBytes": [ + 191, 68, 187, 10, 3, 252, 217, 5, 5, 159, 75, 162, 110, 239, 117, 80, 166, 85, 86, 57, 28, 83, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1235, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f04ce04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "623c305badf6aaf93479" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0412bb19eec3e6a00b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4135292055153526266" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "277a1cdd4ea1421fb9f6b0f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1680740725375540335" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf444f04ce04104a623c305badf6aaf93479bf490412bb19eec3e6a00b1b39638236e5ebc5fa4c277a1cdd4ea1421fb9f6b0f21b175330c8e78a9c6fffff", + "cborBytes": [ + 191, 68, 79, 4, 206, 4, 16, 74, 98, 60, 48, 91, 173, 246, 170, 249, 52, 121, 191, 73, 4, 18, 187, 25, 238, 195, + 230, 160, 11, 27, 57, 99, 130, 54, 229, 235, 197, 250, 76, 39, 122, 28, 221, 78, 161, 66, 31, 185, 246, 176, 242, + 27, 23, 83, 48, 200, 231, 138, 156, 111, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1236, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2482584607303918520" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13898585342387078347" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4550719408659457451" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8536526004771431006" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6260298321993906637" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11101598007001530394" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13262209142362306690" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15408053148851692898" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "573de4f2924b25b16c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16303463428622386920" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "118325829055781581" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17878166811390034439" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1246270776003513699" + } + }, + { + "_tag": "ByteArray", + "bytearray": "07082cf85b2263c721b5" + } + ] + } + } + ] + }, + "cborHex": "bf1b2273e98c0b33e3b81bc0e1b1bb256ec4cb1b3f276731019f65abd8669f1b7677d52c4249225e9f1b56e10c27c66bb9cdffff1b9a10cc918e82c01aa01bb80cd4f2e3717882a01bd5d466b419a4e56249573de4f2924b25b16c1be241899bdf9c06e8d8669f1b01a460b6f09f9acd9f1bf81c01fe0c14c2071b114ba4aaf1a3cd634a07082cf85b2263c721b5ffffff", + "cborBytes": [ + 191, 27, 34, 115, 233, 140, 11, 51, 227, 184, 27, 192, 225, 177, 187, 37, 110, 196, 203, 27, 63, 39, 103, 49, 1, + 159, 101, 171, 216, 102, 159, 27, 118, 119, 213, 44, 66, 73, 34, 94, 159, 27, 86, 225, 12, 39, 198, 107, 185, 205, + 255, 255, 27, 154, 16, 204, 145, 142, 130, 192, 26, 160, 27, 184, 12, 212, 242, 227, 113, 120, 130, 160, 27, 213, + 212, 102, 180, 25, 164, 229, 98, 73, 87, 61, 228, 242, 146, 75, 37, 177, 108, 27, 226, 65, 137, 155, 223, 156, 6, + 232, 216, 102, 159, 27, 1, 164, 96, 182, 240, 159, 154, 205, 159, 27, 248, 28, 1, 254, 12, 20, 194, 7, 27, 17, 75, + 164, 170, 241, 163, 205, 99, 74, 7, 8, 44, 248, 91, 34, 99, 199, 33, 181, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1237, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7284553244816354912" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13686374430734980002" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e92b145c8624fbb9dac6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14368445853413533737" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6836704980669768282" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14677383396153692552" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6dce291b2c8685" + } + } + ] + }, + "cborHex": "bf1b6517ee94b8b2ae60a01bbdefc507fef293a24ae92b145c8624fbb9dac61bc766f9605b25e8291b5ee0daf51ef7225a1bcbb08a6f47f51188476dce291b2c8685ff", + "cborBytes": [ + 191, 27, 101, 23, 238, 148, 184, 178, 174, 96, 160, 27, 189, 239, 197, 7, 254, 242, 147, 162, 74, 233, 43, 20, 92, + 134, 36, 251, 185, 218, 198, 27, 199, 102, 249, 96, 91, 37, 232, 41, 27, 94, 224, 218, 245, 30, 247, 34, 90, 27, + 203, 176, 138, 111, 71, 245, 17, 136, 71, 109, 206, 41, 27, 44, 134, 133, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1238, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "744d901f8a0e53dc" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17883503310698123360" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b4bbef5b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18240331249966569592" + } + } + ] + } + } + ] + }, + "cborHex": "bf48744d901f8a0e53dc9f1bf82ef7829daf106044b4bbef5b1bfd22aca163b6d878ffff", + "cborBytes": [ + 191, 72, 116, 77, 144, 31, 138, 14, 83, 220, 159, 27, 248, 46, 247, 130, 157, 175, 16, 96, 68, 180, 187, 239, 91, + 27, 253, 34, 172, 161, 99, 182, 216, 120, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1239, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4989166315209528843" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e45d51e46e0bd07b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2549ccb6e75d76f8241b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14409890241385118174" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7efbd9" + } + ] + } + } + ] + }, + "cborHex": "bf1b453d14547768960b48e45d51e46e0bd07b4a2549ccb6e75d76f8241bd8669f1bc7fa36d3e220b9de9f437efbd9ffffff", + "cborBytes": [ + 191, 27, 69, 61, 20, 84, 119, 104, 150, 11, 72, 228, 93, 81, 228, 110, 11, 208, 123, 74, 37, 73, 204, 182, 231, + 93, 118, 248, 36, 27, 216, 102, 159, 27, 199, 250, 54, 211, 226, 32, 185, 222, 159, 67, 126, 251, 217, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1240, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "025ab4fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "095dfd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd33375d440e94f45cf809" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e836738292b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a83ae5c66a884811bb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5207694419126679393" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12430363175475561256" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dc94870ef5" + }, + { + "_tag": "ByteArray", + "bytearray": "681c1e66275cf3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6675273814851756537" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15433674694027522394" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c084df1043e364d8fbfd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3114428433567060988" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12906038500615616931" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1164322644020104730" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05fd05f905e1fa" + } + ] + } + } + ] + }, + "cborHex": "bf44025ab4fa410043095dfd4bcd33375d440e94f45cf809466e836738292b0f49a83ae5c66a884811bbd8669f1b4845727b8ed477619f1bac818572ff51432845dc94870ef547681c1e66275cf31b5ca3562ae0b4a1f91bd62f6d5cf472315affff4ac084df1043e364d8fbfdd8669f1b2b38ac28cd2413fc9f1bb31b75a31eb579a31bfffffffffffffff81b10288146a0c30e1a4705fd05f905e1faffffff", + "cborBytes": [ + 191, 68, 2, 90, 180, 250, 65, 0, 67, 9, 93, 253, 75, 205, 51, 55, 93, 68, 14, 148, 244, 92, 248, 9, 70, 110, 131, + 103, 56, 41, 43, 15, 73, 168, 58, 229, 198, 106, 136, 72, 17, 187, 216, 102, 159, 27, 72, 69, 114, 123, 142, 212, + 119, 97, 159, 27, 172, 129, 133, 114, 255, 81, 67, 40, 69, 220, 148, 135, 14, 245, 71, 104, 28, 30, 102, 39, 92, + 243, 27, 92, 163, 86, 42, 224, 180, 161, 249, 27, 214, 47, 109, 92, 244, 114, 49, 90, 255, 255, 74, 192, 132, 223, + 16, 67, 227, 100, 216, 251, 253, 216, 102, 159, 27, 43, 56, 172, 40, 205, 36, 19, 252, 159, 27, 179, 27, 117, 163, + 30, 181, 121, 163, 27, 255, 255, 255, 255, 255, 255, 255, 248, 27, 16, 40, 129, 70, 160, 195, 14, 26, 71, 5, 253, + 5, 249, 5, 225, 250, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1241, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10206822544475207527" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7393f2d7a17dcef2d843" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b8da5eb06b0e4b767a04a7393f2d7a17dcef2d843a0ff", + "cborBytes": [ + 191, 27, 141, 165, 235, 6, 176, 228, 183, 103, 160, 74, 115, 147, 242, 215, 161, 125, 206, 242, 216, 67, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1242, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e98da2a52cc69b940c5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1922016606969352233" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6312386543339471631" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4805745790906427609" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12149267489757269811" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17925064473091904289" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7308526537823747620" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "790d4442ef10" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "494618bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16826241016250463789" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e808a60c34488529" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15223167442689486670" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1889600814378554617" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a5e98da2a52cc69b940c5bf1b1aac5febb6cf50291b579a1a1de0b4830f1b42b17055bbce68d91ba89ade69902f0f331bf8c29f2ace9e13211b656d1a29f67ffe24ff46790d4442ef10bf44494618bf1be982d10e16b7762dff48e808a60c344885299f1bd3438e2221cc6f4e1b1a3935eddc5294f9ffff", + "cborBytes": [ + 191, 74, 94, 152, 218, 42, 82, 204, 105, 185, 64, 197, 191, 27, 26, 172, 95, 235, 182, 207, 80, 41, 27, 87, 154, + 26, 29, 224, 180, 131, 15, 27, 66, 177, 112, 85, 187, 206, 104, 217, 27, 168, 154, 222, 105, 144, 47, 15, 51, 27, + 248, 194, 159, 42, 206, 158, 19, 33, 27, 101, 109, 26, 41, 246, 127, 254, 36, 255, 70, 121, 13, 68, 66, 239, 16, + 191, 68, 73, 70, 24, 191, 27, 233, 130, 209, 14, 22, 183, 118, 45, 255, 72, 232, 8, 166, 12, 52, 72, 133, 41, 159, + 27, 211, 67, 142, 34, 33, 204, 111, 78, 27, 26, 57, 53, 237, 220, 82, 148, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1243, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2059179444340031656" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2289037691117004011" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3985" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aab9c662326365cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8121906488047309525" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec035403509b147cdb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3971916492993679515" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5666002316434345959" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11406987862561650436" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13166083572716425575" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16911091770228333413" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b0412" + } + } + ] + }, + "cborHex": "bf1b1c93accb6cac80a8bf1b1fc44ba6f88264eb42398548aab9c662326365cc1b70b6ceeb4f0012d549ec035403509b147cdb1b371f15019a67509bff1b4ea1af16479c0fe7d8669f1b9e4dc306312df70480ff1bb6b75340a2de5167a01beab0445dc07ddb65435b0412ff", + "cborBytes": [ + 191, 27, 28, 147, 172, 203, 108, 172, 128, 168, 191, 27, 31, 196, 75, 166, 248, 130, 100, 235, 66, 57, 133, 72, + 170, 185, 198, 98, 50, 99, 101, 204, 27, 112, 182, 206, 235, 79, 0, 18, 213, 73, 236, 3, 84, 3, 80, 155, 20, 124, + 219, 27, 55, 31, 21, 1, 154, 103, 80, 155, 255, 27, 78, 161, 175, 22, 71, 156, 15, 231, 216, 102, 159, 27, 158, + 77, 195, 6, 49, 45, 247, 4, 128, 255, 27, 182, 183, 83, 64, 162, 222, 81, 103, 160, 27, 234, 176, 68, 93, 192, + 125, 219, 101, 67, 91, 4, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1244, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03061e06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2163275318160666370" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8fa" + } + } + ] + }, + "cborHex": "bf4403061e061b1e057f70ba562f024205fc42f8faff", + "cborBytes": [191, 68, 3, 6, 30, 6, 27, 30, 5, 127, 112, 186, 86, 47, 2, 66, 5, 252, 66, 248, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1245, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14116421287466342300" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1bc3e79a5e7331979c80ff", + "cborBytes": [191, 27, 195, 231, 154, 94, 115, 49, 151, 156, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1246, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1237377218486821379" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3098336788110821089" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11523126372039837355" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3385512131180755176" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df1f85c687b002648c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10274614492014733691" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12468113559187716303" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16927999938074657024" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4268841147517273998" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17670944791306919884" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1ec" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7255895753522135128" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13878530682498229778" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3d5aa81f411f511e5f" + }, + { + "_tag": "ByteArray", + "bytearray": "0dd479123b272c2d08e231" + }, + { + "_tag": "ByteArray", + "bytearray": "11ad30113bbb824f12" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12509921123625522089" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16602626749723503265" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a15a01a77e94140d7dc13" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2887748773703558135" + } + } + } + ] + }, + "cborHex": "bf1b112c0c0639116203bf1b2aff80e4a1dec6e11b9fea5e621b5ec6ab1b2efbc15899cdf8e849df1f85c687b002648c1b8e96c371789e697b1bad07a339229d78cf1beaec56415ac641001b3b3df8680856878e1bf53bcea9bb635fcc42f1ecff1b64b21ebe93f3c058d8669f1bc09a721fc6aaa6129f493d5aa81f411f511e5f4b0dd479123b272c2d08e2314911ad30113bbb824f12ffff1bad9c2afb45dad3a91be66861107baaeaa14b1a15a01a77e94140d7dc131b28135835b12ba3f7ff", + "cborBytes": [ + 191, 27, 17, 44, 12, 6, 57, 17, 98, 3, 191, 27, 42, 255, 128, 228, 161, 222, 198, 225, 27, 159, 234, 94, 98, 27, + 94, 198, 171, 27, 46, 251, 193, 88, 153, 205, 248, 232, 73, 223, 31, 133, 198, 135, 176, 2, 100, 140, 27, 142, + 150, 195, 113, 120, 158, 105, 123, 27, 173, 7, 163, 57, 34, 157, 120, 207, 27, 234, 236, 86, 65, 90, 198, 65, 0, + 27, 59, 61, 248, 104, 8, 86, 135, 142, 27, 245, 59, 206, 169, 187, 99, 95, 204, 66, 241, 236, 255, 27, 100, 178, + 30, 190, 147, 243, 192, 88, 216, 102, 159, 27, 192, 154, 114, 31, 198, 170, 166, 18, 159, 73, 61, 90, 168, 31, 65, + 31, 81, 30, 95, 75, 13, 212, 121, 18, 59, 39, 44, 45, 8, 226, 49, 73, 17, 173, 48, 17, 59, 187, 130, 79, 18, 255, + 255, 27, 173, 156, 42, 251, 69, 218, 211, 169, 27, 230, 104, 97, 16, 123, 170, 234, 161, 75, 26, 21, 160, 26, 119, + 233, 65, 64, 215, 220, 19, 27, 40, 19, 88, 53, 177, 43, 163, 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1247, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "20227c2fb78b61138af34117" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16245094091683854379" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "752a721fc75ece3a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9445734736696696073" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97dd3e2b562559" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4c20227c2fb78b61138af341171be1722b01959cf82b48752a721fc75ece3ad8669f1b8315fdb2875fdd0980ff4797dd3e2b562559a0ff", + "cborBytes": [ + 191, 76, 32, 34, 124, 47, 183, 139, 97, 19, 138, 243, 65, 23, 27, 225, 114, 43, 1, 149, 156, 248, 43, 72, 117, 42, + 114, 31, 199, 94, 206, 58, 216, 102, 159, 27, 131, 21, 253, 178, 135, 95, 221, 9, 128, 255, 71, 151, 221, 62, 43, + 86, 37, 89, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1248, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1034970616946812327" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10728875158712072332" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0597142f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15927098876656958938" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "547f19" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10843323882835234997" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b0e5cf44ae814e5a7bf1b94e49f1ce28bb88c440597142f1bdd086c0afda93dda43547f19ff411ad8669f1b967b399efce750b580ffff", + "cborBytes": [ + 191, 27, 14, 92, 244, 74, 232, 20, 229, 167, 191, 27, 148, 228, 159, 28, 226, 139, 184, 140, 68, 5, 151, 20, 47, + 27, 221, 8, 108, 10, 253, 169, 61, 218, 67, 84, 127, 25, 255, 65, 26, 216, 102, 159, 27, 150, 123, 57, 158, 252, + 231, 80, 181, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1249, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "50ee3a8964154a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ac2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a6af2389e614dddad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5082c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d1b3b3021f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14662215276461387439" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9efff559de" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "001a618874" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6be421fc96" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d63b858a5887e0e36e50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e36240b04d17b981864bc45" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e78f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14389978368353778969" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd86783fdc77f0b19d8c5f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6028088676494291441" + } + } + } + ] + }, + "cborHex": "bf4750ee3a8964154a423ac2499a6af2389e614dddad435082c9469d1b3b3021f91bcb7aa71c35c96eaf459efff559debf45001a618874456be421fc964ad63b858a5887e0e36e504c0e36240b04d17b981864bc4542e78f1bc7b37915ab483d19ff4bfd86783fdc77f0b19d8c5f1b53a812b68cff31f1ff", + "cborBytes": [ + 191, 71, 80, 238, 58, 137, 100, 21, 74, 66, 58, 194, 73, 154, 106, 242, 56, 158, 97, 77, 221, 173, 67, 80, 130, + 201, 70, 157, 27, 59, 48, 33, 249, 27, 203, 122, 167, 28, 53, 201, 110, 175, 69, 158, 255, 245, 89, 222, 191, 69, + 0, 26, 97, 136, 116, 69, 107, 228, 33, 252, 150, 74, 214, 59, 133, 138, 88, 135, 224, 227, 110, 80, 76, 14, 54, + 36, 11, 4, 209, 123, 152, 24, 100, 188, 69, 66, 231, 143, 27, 199, 179, 121, 21, 171, 72, 61, 25, 255, 75, 253, + 134, 120, 63, 220, 119, 240, 177, 157, 140, 95, 27, 83, 168, 18, 182, 140, 255, 49, 241, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1250, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5113667850222364023" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c05aa1e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7091767323677438572" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9213021a178af5d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cea8cebf2c3948d260" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15687803245151702475" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5674012959603217340" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12059430302137128305" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2064273396498169586" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17165160122106958931" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3536994967224343801" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17250905321081229529" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a62a4a9" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16148025380001572822" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1495522580081819602" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10346428682179296068" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3737781534027838305" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10903371714218124521" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18313852481040078837" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8638c9" + } + } + ] + }, + "cborHex": "bf1b46f765d0ffd6e577445c05aa1e1b626b04ce9d84326cbf489213021a178af5d349cea8cebf2c3948d260ff1bd9b645ef157ccdcbbf1b4ebe24b97c1cd3bc41251ba75bb3f7587715711b1ca5c5b7958ffef21bee36e62fa6e2d4531b3115ee2ed1c05cf91bef6786fd84f150d9441a62a4a9ff1be0194f86f6fc67d69f1b14c129dceb5a3fd21b8f95e6119735bb441b33df448067be73611b97508ece380364e9ff1bfe27dfccf14cd7f5438638c9ff", + "cborBytes": [ + 191, 27, 70, 247, 101, 208, 255, 214, 229, 119, 68, 92, 5, 170, 30, 27, 98, 107, 4, 206, 157, 132, 50, 108, 191, + 72, 146, 19, 2, 26, 23, 138, 245, 211, 73, 206, 168, 206, 191, 44, 57, 72, 210, 96, 255, 27, 217, 182, 69, 239, + 21, 124, 205, 203, 191, 27, 78, 190, 36, 185, 124, 28, 211, 188, 65, 37, 27, 167, 91, 179, 247, 88, 119, 21, 113, + 27, 28, 165, 197, 183, 149, 143, 254, 242, 27, 238, 54, 230, 47, 166, 226, 212, 83, 27, 49, 21, 238, 46, 209, 192, + 92, 249, 27, 239, 103, 134, 253, 132, 241, 80, 217, 68, 26, 98, 164, 169, 255, 27, 224, 25, 79, 134, 246, 252, + 103, 214, 159, 27, 20, 193, 41, 220, 235, 90, 63, 210, 27, 143, 149, 230, 17, 151, 53, 187, 68, 27, 51, 223, 68, + 128, 103, 190, 115, 97, 27, 151, 80, 142, 206, 56, 3, 100, 233, 255, 27, 254, 39, 223, 204, 241, 76, 215, 245, 67, + 134, 56, 201, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1251, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "556531268177856609" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a9414d0b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3544728422727081763" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4f8bf447b6c8d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ad833a75176cc097bcc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f960c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5519798450172543845" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1060860547491961807" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8643384403794607403" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0fa1e06c2b70ce" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10679508588525393843" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13830730920486817321" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18095416563312887601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "107f2b020105" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ede4f70963971f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11994403061482277704" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1214754929822944401" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7092849640600431665" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7825064476378030147" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10251614491212449566" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "57434e227536cee8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5292972284024256355" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12571875068903660247" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4414351295727855469" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16960614369817410549" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7704539233208317141" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4855158061763122911" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b07b9323d62238861bf457a9414d0b31b313167b83de0df2347a4f8bf447b6c8d4a7ad833a75176cc097bcc43f960c31b4c9a4371fe494365ff1b0eb8ef0c197c1bcfbf1b77f3785215543d2b470fa1e06c2b70ce1b94353c7a92ca17b31bbff0a07e6ba0ce291bfb1fd57d9efc073146107f2b02010547ede4f70963971f1ba674ae090c824b48ff1b10dbad2c31404c911b626edd2b293eec311b6c9836aeab0a6043d8669f1b8e450d107af7071e9f4857434e227536cee81b49746a3fbb40f763ffff1bae7845c43a979ad7d8669f1b3d42ed1d7fa4e76d80ff1beb6034e87d5a3bf5d8669f1b6aec059cb97134d59f1b4360fc888fc3d6dfffffff", + "cborBytes": [ + 191, 27, 7, 185, 50, 61, 98, 35, 136, 97, 191, 69, 122, 148, 20, 208, 179, 27, 49, 49, 103, 184, 61, 224, 223, 35, + 71, 164, 248, 191, 68, 123, 108, 141, 74, 122, 216, 51, 167, 81, 118, 204, 9, 123, 204, 67, 249, 96, 195, 27, 76, + 154, 67, 113, 254, 73, 67, 101, 255, 27, 14, 184, 239, 12, 25, 124, 27, 207, 191, 27, 119, 243, 120, 82, 21, 84, + 61, 43, 71, 15, 161, 224, 108, 43, 112, 206, 27, 148, 53, 60, 122, 146, 202, 23, 179, 27, 191, 240, 160, 126, 107, + 160, 206, 41, 27, 251, 31, 213, 125, 158, 252, 7, 49, 70, 16, 127, 43, 2, 1, 5, 71, 237, 228, 247, 9, 99, 151, 31, + 27, 166, 116, 174, 9, 12, 130, 75, 72, 255, 27, 16, 219, 173, 44, 49, 64, 76, 145, 27, 98, 110, 221, 43, 41, 62, + 236, 49, 27, 108, 152, 54, 174, 171, 10, 96, 67, 216, 102, 159, 27, 142, 69, 13, 16, 122, 247, 7, 30, 159, 72, 87, + 67, 78, 34, 117, 54, 206, 232, 27, 73, 116, 106, 63, 187, 64, 247, 99, 255, 255, 27, 174, 120, 69, 196, 58, 151, + 154, 215, 216, 102, 159, 27, 61, 66, 237, 29, 127, 164, 231, 109, 128, 255, 27, 235, 96, 52, 232, 125, 90, 59, + 245, 216, 102, 159, 27, 106, 236, 5, 156, 185, 113, 52, 213, 159, 27, 67, 96, 252, 136, 143, 195, 214, 223, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1252, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18361784954481754121" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13665603303175985546" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "774106807674883837" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cb0eaea5ee09a8b714c38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86f05954" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bf13c405f338df310f15c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2191678289692935297" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7290777356151299645" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d89fe5a52dba9277f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6920" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17440172295022760101" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a888dc6ea095" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4446244190306156370" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfed22a2195ff4009bf1bbda5f9ccff35998a1b0abe2e0a49ac4efd4b3cb0eaea5ee09a8b714c384486f059544b7bf13c405f338df310f15c4144ff41d9bf1b1e6a67cadf1544811b652e0b6091dc1e3d415f491d89fe5a52dba9277f4269201bf207f04ce270d0a546a888dc6ea0951b3db43b88abd7bf52ffff", + "cborBytes": [ + 191, 27, 254, 210, 42, 33, 149, 255, 64, 9, 191, 27, 189, 165, 249, 204, 255, 53, 153, 138, 27, 10, 190, 46, 10, + 73, 172, 78, 253, 75, 60, 176, 234, 234, 94, 224, 154, 139, 113, 76, 56, 68, 134, 240, 89, 84, 75, 123, 241, 60, + 64, 95, 51, 141, 243, 16, 241, 92, 65, 68, 255, 65, 217, 191, 27, 30, 106, 103, 202, 223, 21, 68, 129, 27, 101, + 46, 11, 96, 145, 220, 30, 61, 65, 95, 73, 29, 137, 254, 90, 82, 219, 169, 39, 127, 66, 105, 32, 27, 242, 7, 240, + 76, 226, 112, 208, 165, 70, 168, 136, 220, 110, 160, 149, 27, 61, 180, 59, 136, 171, 215, 191, 82, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1253, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f1030322eefa3e0503e5b441" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2629844110464448699" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffed9f4cf1030322eefa3e0503e5b4411b247f1548f2e2f8bb0cffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 76, 241, 3, 3, 34, 238, 250, 62, 5, 3, 229, 180, 65, 27, 36, + 127, 21, 72, 242, 226, 248, 187, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1254, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10347433202726142551" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2594122276265132042" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad4b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14806481804925421557" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c15f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c1444d251ac6eb2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "498de2c6c5fc4f2d7ab5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4609646860014638805" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11659684758854227967" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5393988517485127900" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13746322896961227868" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "441ca63828fc6a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18231604244112287207" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b09b7bb80" + }, + { + "_tag": "ByteArray", + "bytearray": "e6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15346379677630288115" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a192cdfa16caa6b334" + } + } + ] + }, + "cborHex": "bf1b8f9977acc1930257bf1b24002c774cb6000a42ad4b1bcd7b30c0e3dd47f542c15f485c1444d251ac6eb24a498de2c6c5fc4f2d7ab5419f1b3ff8c1656f2ad6d5ff1ba1cf8583348ad7ff1b4adb4bfa633ca8dc1bbec4bfd7f9314c5c9f47441ca63828fc6a1bfd03ab76ffd125e7455b09b7bb8041e6ff1bd4f94b02196d50f349a192cdfa16caa6b334ff", + "cborBytes": [ + 191, 27, 143, 153, 119, 172, 193, 147, 2, 87, 191, 27, 36, 0, 44, 119, 76, 182, 0, 10, 66, 173, 75, 27, 205, 123, + 48, 192, 227, 221, 71, 245, 66, 193, 95, 72, 92, 20, 68, 210, 81, 172, 110, 178, 74, 73, 141, 226, 198, 197, 252, + 79, 45, 122, 181, 65, 159, 27, 63, 248, 193, 101, 111, 42, 214, 213, 255, 27, 161, 207, 133, 131, 52, 138, 215, + 255, 27, 74, 219, 75, 250, 99, 60, 168, 220, 27, 190, 196, 191, 215, 249, 49, 76, 92, 159, 71, 68, 28, 166, 56, + 40, 252, 106, 27, 253, 3, 171, 118, 255, 209, 37, 231, 69, 91, 9, 183, 187, 128, 65, 230, 255, 27, 212, 249, 75, + 2, 25, 109, 80, 243, 73, 161, 146, 205, 250, 22, 202, 166, 179, 52, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1255, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9230220010501ccfe0089" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1148786949072598054" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9198336233147027653" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8053378061508924305" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5271236294727749756" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf411e804bf9230220010501ccfe0089bf1b0ff14fa4c613b4261b7fa70e11b55550c51b6fc358ada629d3911b4927317b5a64d07cffff", + "cborBytes": [ + 191, 65, 30, 128, 75, 249, 35, 2, 32, 1, 5, 1, 204, 254, 0, 137, 191, 27, 15, 241, 79, 164, 198, 19, 180, 38, 27, + 127, 167, 14, 17, 181, 85, 80, 197, 27, 111, 195, 88, 173, 166, 41, 211, 145, 27, 73, 39, 49, 123, 90, 100, 208, + 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1256, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13765804570304785105" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf41b7d8669f1bbf09f65284772ad180ffff", + "cborBytes": [191, 65, 183, 216, 102, 159, 27, 191, 9, 246, 82, 132, 119, 42, 209, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1257, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4902361549750380867" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13950409670082041910" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15043543643305542551" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cd02c5f7ac2a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8182295015119605088" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bae0af572311796" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "117ea1019b1e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f68999" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b15877cb8" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b4408afdb0d67a943a01bc199cfaeb86a1836801bd0c5673d4e500397bf470cd02c5f7ac2a01b718d59f6efa74d60481bae0af57231179646117ea1019b1e43f68999453b15877cb8ff1bfffffffffffffff7a0ff", + "cborBytes": [ + 191, 27, 68, 8, 175, 219, 13, 103, 169, 67, 160, 27, 193, 153, 207, 174, 184, 106, 24, 54, 128, 27, 208, 197, 103, + 61, 78, 80, 3, 151, 191, 71, 12, 208, 44, 95, 122, 194, 160, 27, 113, 141, 89, 246, 239, 167, 77, 96, 72, 27, 174, + 10, 245, 114, 49, 23, 150, 70, 17, 126, 161, 1, 155, 30, 67, 246, 137, 153, 69, 59, 21, 135, 124, 184, 255, 27, + 255, 255, 255, 255, 255, 255, 255, 247, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1258, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c3f4363b7e378ae22ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86fb06039ca2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "086f32" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9a05cbed4f64e2b8b05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8005902" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0919c8a6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "feb6ebfe" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc0082dffb05e70700" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11467981098027845519" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4495419475330153201" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd" + }, + { + "_tag": "ByteArray", + "bytearray": "00fa" + } + ] + } + } + ] + }, + "cborHex": "bf4a7c3f4363b7e378ae22ce134686fb06039ca243086f324ae9a05cbed4f64e2b8b051244f8005902bf440919c8a644feb6ebfeff49fc0082dffb05e707009f1b9f26740c76d8078f1b3e62f031ef6d3af141fd4200faffff", + "cborBytes": [ + 191, 74, 124, 63, 67, 99, 183, 227, 120, 174, 34, 206, 19, 70, 134, 251, 6, 3, 156, 162, 67, 8, 111, 50, 74, 233, + 160, 92, 190, 212, 246, 78, 43, 139, 5, 18, 68, 248, 0, 89, 2, 191, 68, 9, 25, 200, 166, 68, 254, 182, 235, 254, + 255, 73, 252, 0, 130, 223, 251, 5, 231, 7, 0, 159, 27, 159, 38, 116, 12, 118, 216, 7, 143, 27, 62, 98, 240, 49, + 239, 109, 58, 241, 65, 253, 66, 0, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1259, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2667049663820464148" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6348382351196513918" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5633289446919981579" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "34b11a4c692259354dbf53" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8732995699019125569" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12017938337245754125" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b972f0a17e4486fa9638" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11085946785747010743" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13213777239093842833" + } + }, + { + "_tag": "ByteArray", + "bytearray": "645277f31fd7d6dcf052951e" + }, + { + "_tag": "ByteArray", + "bytearray": "4403d9" + } + ] + } + } + ] + }, + "cborHex": "bf1b25034389e25800141b5819fc1cfd6d667e1b4e2d76e7d09f4a0b9f4b34b11a4c692259354dbf53ff1b7931d551a10c9341d8669f1ba6c84b3e7414f30d9f4ab972f0a17e4486fa96381b99d931dda35584b71bb760c463ad5493914c645277f31fd7d6dcf052951e434403d9ffffff", + "cborBytes": [ + 191, 27, 37, 3, 67, 137, 226, 88, 0, 20, 27, 88, 25, 252, 28, 253, 109, 102, 126, 27, 78, 45, 118, 231, 208, 159, + 74, 11, 159, 75, 52, 177, 26, 76, 105, 34, 89, 53, 77, 191, 83, 255, 27, 121, 49, 213, 81, 161, 12, 147, 65, 216, + 102, 159, 27, 166, 200, 75, 62, 116, 20, 243, 13, 159, 74, 185, 114, 240, 161, 126, 68, 134, 250, 150, 56, 27, + 153, 217, 49, 221, 163, 85, 132, 183, 27, 183, 96, 196, 99, 173, 84, 147, 145, 76, 100, 82, 119, 243, 31, 215, + 214, 220, 240, 82, 149, 30, 67, 68, 3, 217, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1260, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f04e3f01360d2e54b871" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "206a3974" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8288a3ea7de791d9119074a7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28047c3697cec15bb339" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24727bc74845fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8da702" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96a03f37cf491a82bb814cab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9fcef1849d7c37332ea99758" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "821cbafe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db762d0dd3fea1a7c0acc0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1395598824326549799" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf06bf410a4af04e3f01360d2e54b87144206a39744c8288a3ea7de791d9119074a74a28047c3697cec15bb3394724727bc74845fc438da7024c96a03f37cf491a82bb814cab4c9fcef1849d7c37332ea9975844821cbafe4bdb762d0dd3fea1a7c0acc01b135e29bc8cefd127ffff", + "cborBytes": [ + 191, 6, 191, 65, 10, 74, 240, 78, 63, 1, 54, 13, 46, 84, 184, 113, 68, 32, 106, 57, 116, 76, 130, 136, 163, 234, + 125, 231, 145, 217, 17, 144, 116, 167, 74, 40, 4, 124, 54, 151, 206, 193, 91, 179, 57, 71, 36, 114, 123, 199, 72, + 69, 252, 67, 141, 167, 2, 76, 150, 160, 63, 55, 207, 73, 26, 130, 187, 129, 76, 171, 76, 159, 206, 241, 132, 157, + 124, 55, 51, 46, 169, 151, 88, 68, 130, 28, 186, 254, 75, 219, 118, 45, 13, 211, 254, 161, 167, 192, 172, 192, 27, + 19, 94, 41, 188, 140, 239, 209, 39, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1261, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4448764723197936592" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f37eb8b7578ce15aae3e2c7b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "ByteArray", + "bytearray": "20" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "136689658023084938" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15639308223393892236" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9566160392018848785" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2669739487130645926" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f95b33" + } + } + ] + }, + "cborHex": "bf12d8669f1b3dbd2ff1f78083d09f4cf37eb8b7578ce15aae3e2c7bffff139f0d4120ff1b01e59e850eef838ad8669f1bd909fbf7f43d078c80ff1b84c1d4315eb1ec11d87e9f1b250cd1eb2d4175a6ff1bfffffffffffffff843f95b33ff", + "cborBytes": [ + 191, 18, 216, 102, 159, 27, 61, 189, 47, 241, 247, 128, 131, 208, 159, 76, 243, 126, 184, 183, 87, 140, 225, 90, + 174, 62, 44, 123, 255, 255, 19, 159, 13, 65, 32, 255, 27, 1, 229, 158, 133, 14, 239, 131, 138, 216, 102, 159, 27, + 217, 9, 251, 247, 244, 61, 7, 140, 128, 255, 27, 132, 193, 212, 49, 94, 177, 236, 17, 216, 126, 159, 27, 37, 12, + 209, 235, 45, 65, 117, 166, 255, 27, 255, 255, 255, 255, 255, 255, 255, 248, 67, 249, 91, 51, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1262, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "961470230018193037" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "253de071c05ee89988" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17740658403186538444" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a0c06b06e8a0fc084" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c1fe86173f32451d76b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17862970214859814144" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3802be19c3a7093330" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14146120127501374485" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a58e723144b6" + }, + { + "_tag": "ByteArray", + "bytearray": "b05ba18c2979166cef25cf91" + } + ] + } + } + ] + }, + "cborHex": "bf1b0d57d4148258f68d49253de071c05ee899881bf6337ad2db7b77cc490a0c06b06e8a0fc0844a7c1fe86173f32451d76b9f1bf7e604c4b21a3500493802be19c3a70933301bc4511d4e7db9141546a58e723144b64cb05ba18c2979166cef25cf91ffff", + "cborBytes": [ + 191, 27, 13, 87, 212, 20, 130, 88, 246, 141, 73, 37, 61, 224, 113, 192, 94, 232, 153, 136, 27, 246, 51, 122, 210, + 219, 123, 119, 204, 73, 10, 12, 6, 176, 110, 138, 15, 192, 132, 74, 124, 31, 232, 97, 115, 243, 36, 81, 215, 107, + 159, 27, 247, 230, 4, 196, 178, 26, 53, 0, 73, 56, 2, 190, 25, 195, 167, 9, 51, 48, 27, 196, 81, 29, 78, 125, 185, + 20, 21, 70, 165, 142, 114, 49, 68, 182, 76, 176, 91, 161, 140, 41, 121, 22, 108, 239, 37, 207, 145, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1263, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1047710797662768656" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "97894243741605664" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1445305d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16998205917234099889" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe223d99a3fb90e5a4c736" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f1ecc3baf9fea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a20b5c3a4fe4a4c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1485888fbdc18b0049" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4990014912172839037" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18302342325509346541" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6585551317843240497" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10355372988132460656" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4080bddab359" + }, + { + "_tag": "ByteArray", + "bytearray": "3405a3" + }, + { + "_tag": "ByteArray", + "bytearray": "0db47c6164" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12372001206413694311" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5451545164725505876" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f06d61bf1e" + }, + { + "_tag": "ByteArray", + "bytearray": "17" + } + ] + } + } + ] + }, + "cborHex": "bf1b0e8a376b6207ce10bf1b015bca4bc7c61f20441445305d1bebe5c238abae76b14bfe223d99a3fb90e5a4c736475f1ecc3baf9fea42a9d348a20b5c3a4fe4a4c9491485888fbdc18b0049ff1b4540181fd7f6d07d1bfdfefb600594d4ed1b5b6494082626e631d8669f1b8fb5acde1a4f88709f464080bddab359433405a3450db47c6164ffff1babb22d8c2cfe15679f1b4ba7c7719c764f5445f06d61bf1e4117ffff", + "cborBytes": [ + 191, 27, 14, 138, 55, 107, 98, 7, 206, 16, 191, 27, 1, 91, 202, 75, 199, 198, 31, 32, 68, 20, 69, 48, 93, 27, 235, + 229, 194, 56, 171, 174, 118, 177, 75, 254, 34, 61, 153, 163, 251, 144, 229, 164, 199, 54, 71, 95, 30, 204, 59, + 175, 159, 234, 66, 169, 211, 72, 162, 11, 92, 58, 79, 228, 164, 201, 73, 20, 133, 136, 143, 189, 193, 139, 0, 73, + 255, 27, 69, 64, 24, 31, 215, 246, 208, 125, 27, 253, 254, 251, 96, 5, 148, 212, 237, 27, 91, 100, 148, 8, 38, 38, + 230, 49, 216, 102, 159, 27, 143, 181, 172, 222, 26, 79, 136, 112, 159, 70, 64, 128, 189, 218, 179, 89, 67, 52, 5, + 163, 69, 13, 180, 124, 97, 100, 255, 255, 27, 171, 178, 45, 140, 44, 254, 21, 103, 159, 27, 75, 167, 199, 113, + 156, 118, 79, 84, 69, 240, 109, 97, 191, 30, 65, 23, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1264, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7420748490173734958" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "45f68696a6d0738f7927c497" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "582499571870010833" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23fe32c4b735" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14772373344507481036" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2086103508607196773" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fad19383507ecc" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "477631304840498140" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16739155213993746063" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5619807741498965924" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8163684466793038627" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b66fbcb6f5c52602e9f4c45f68696a6d0738f7927c497ff417dbf1b081574463f210dd14623fe32c4b7351bcd02034a18d14bcc1b1cf35416a33a5e65ff47fad19383507ecc9f1b06a0e324229fcbdc1be84d6cfab2399e8f1b4dfd915daa093fa41b714b3bc4fd92c323ffff", + "cborBytes": [ + 191, 27, 102, 251, 203, 111, 92, 82, 96, 46, 159, 76, 69, 246, 134, 150, 166, 208, 115, 143, 121, 39, 196, 151, + 255, 65, 125, 191, 27, 8, 21, 116, 70, 63, 33, 13, 209, 70, 35, 254, 50, 196, 183, 53, 27, 205, 2, 3, 74, 24, 209, + 75, 204, 27, 28, 243, 84, 22, 163, 58, 94, 101, 255, 71, 250, 209, 147, 131, 80, 126, 204, 159, 27, 6, 160, 227, + 36, 34, 159, 203, 220, 27, 232, 77, 108, 250, 178, 57, 158, 143, 27, 77, 253, 145, 93, 170, 9, 63, 164, 27, 113, + 75, 59, 196, 253, 146, 195, 35, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1265, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "992293014830853245" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "484366" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2507316501595574495" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "84f9ae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3974821522038415902" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40c2cce79c71ff02" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12069447591432832977" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b0dc5553d56182c7d434843661b22cbc712e91450df9f4384f9ae1b3729671d62ad621eff4840c2cce79c71ff02d8669f1ba77f4aa3428c47d180ffff", + "cborBytes": [ + 191, 27, 13, 197, 85, 61, 86, 24, 44, 125, 67, 72, 67, 102, 27, 34, 203, 199, 18, 233, 20, 80, 223, 159, 67, 132, + 249, 174, 27, 55, 41, 103, 29, 98, 173, 98, 30, 255, 72, 64, 194, 204, 231, 156, 113, 255, 2, 216, 102, 159, 27, + 167, 127, 74, 163, 66, 140, 71, 209, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1266, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5564f8e5ed7cdc56d6f0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6169771152183991247" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4155367106123364986" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c525604af6d7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cedef19cc9f6a4beaa99fbf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96584e2d5ee9dfd042" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3702047450361510027" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "900c86646c9d43" + }, + { + "_tag": "ByteArray", + "bytearray": "35c436aff7" + }, + { + "_tag": "ByteArray", + "bytearray": "ac5cb355925132" + }, + { + "_tag": "ByteArray", + "bytearray": "f0a7751042480fcf8ac8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9645732748917036758" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8100e37d23036" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11059927082750821028" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "faa7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "36255893267557568" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4a5564f8e5ed7cdc56d6f0bf1b559f6e2c8f611bcf1b39aad45defd37a7aff477c525604af6d7f4c9cedef19cc9f6a4beaa99fbf4996584e2d5ee9dfd042d8669f1b3360508ab470388b9f47900c86646c9d434535c436aff747ac5cb3559251324af0a7751042480fcf8ac81b85dc86d4718d56d6ffff47d8100e37d230361b997cc1157115c2a442faa7d8669f1b0080ce8af73a2cc080ffff", + "cborBytes": [ + 191, 74, 85, 100, 248, 229, 237, 124, 220, 86, 214, 240, 191, 27, 85, 159, 110, 44, 143, 97, 27, 207, 27, 57, 170, + 212, 93, 239, 211, 122, 122, 255, 71, 124, 82, 86, 4, 175, 109, 127, 76, 156, 237, 239, 25, 204, 159, 106, 75, + 234, 169, 159, 191, 73, 150, 88, 78, 45, 94, 233, 223, 208, 66, 216, 102, 159, 27, 51, 96, 80, 138, 180, 112, 56, + 139, 159, 71, 144, 12, 134, 100, 108, 157, 67, 69, 53, 196, 54, 175, 247, 71, 172, 92, 179, 85, 146, 81, 50, 74, + 240, 167, 117, 16, 66, 72, 15, 207, 138, 200, 27, 133, 220, 134, 212, 113, 141, 86, 214, 255, 255, 71, 216, 16, + 14, 55, 210, 48, 54, 27, 153, 124, 193, 21, 113, 21, 194, 164, 66, 250, 167, 216, 102, 159, 27, 0, 128, 206, 138, + 247, 58, 44, 192, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1267, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12ac2ba2" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14319321608539250565" + } + } + ] + } + } + ] + }, + "cborHex": "bf4412ac2ba29f1bc6b87322cd8e9f85ffff", + "cborBytes": [191, 68, 18, 172, 43, 162, 159, 27, 198, 184, 115, 34, 205, 142, 159, 133, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1268, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2577886768040611343" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5605267484025076306" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95b186b7ad7e6dd60907" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45992d7684a452f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "feab" + } + } + ] + }, + "cborHex": "bf071b23c67e5b783d8e0f0ed8669f1bfffffffffffffff19f1b4dc9e914285cba524a95b186b7ad7e6dd60907ffff114845992d7684a452f91bffffffffffffffef42feabff", + "cborBytes": [ + 191, 7, 27, 35, 198, 126, 91, 120, 61, 142, 15, 14, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, + 159, 27, 77, 201, 233, 20, 40, 92, 186, 82, 74, 149, 177, 134, 183, 173, 126, 109, 214, 9, 7, 255, 255, 17, 72, + 69, 153, 45, 118, 132, 164, 82, 249, 27, 255, 255, 255, 255, 255, 255, 255, 239, 66, 254, 171, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1269, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a0102" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32b665d9991210bf7dbf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ee8cbc3f7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14679629182185960077" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18101834954503654453" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d45d77f2c3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5791137528197375487" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9cec4e2e82341ee1c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe9895fe0305ec068b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + }, + "cborHex": "bf430a01024a32b665d9991210bf7dbf455ee8cbc3f7d87a9f061bcbb884f716a6f28dff417ed8669f1bffffffffffffffff9f061bfb36a2fbc5f08c35ffff45d45d77f2c3d87c9f1b505e40e62da365ff09ff49d9cec4e2e82341ee1c0b49fe9895fe0305ec068b09ff", + "cborBytes": [ + 191, 67, 10, 1, 2, 74, 50, 182, 101, 217, 153, 18, 16, 191, 125, 191, 69, 94, 232, 203, 195, 247, 216, 122, 159, + 6, 27, 203, 184, 132, 247, 22, 166, 242, 141, 255, 65, 126, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 255, 159, 6, 27, 251, 54, 162, 251, 197, 240, 140, 53, 255, 255, 69, 212, 93, 119, 242, 195, 216, 124, 159, 27, + 80, 94, 64, 230, 45, 163, 101, 255, 9, 255, 73, 217, 206, 196, 226, 232, 35, 65, 238, 28, 11, 73, 254, 152, 149, + 254, 3, 5, 236, 6, 139, 9, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1270, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe01" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + }, + "cborHex": "bf0242fe011bfffffffffffffff113ff", + "cborBytes": [191, 2, 66, 254, 1, 27, 255, 255, 255, 255, 255, 255, 255, 241, 19, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1271, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3213228623226185806" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17230200640413933371" + } + }, + { + "_tag": "ByteArray", + "bytearray": "abd7a4423a3fa423ca" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3994350601120612808" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "44d94a6f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4023557744598440982" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5621226052003330454" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12516520352830147494" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12776403301300818093" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1ddcab90cd70293" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14150239821482496534" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8485866b02ce1a23e3d4" + } + } + ] + }, + "cborHex": "bf1b2c97ae688d83a84e9f1bef1df83164949f3b49abd7a4423a3fa423caff1b376ec8b5702981c89f4444d94a6f1b37d68c73740fdc16ff1b4e029b4fcfd479961badb39cf20e634ba61bb14ee71c3929d0ad48a1ddcab90cd702931bc45fc0257e0d12164a8485866b02ce1a23e3d4ff", + "cborBytes": [ + 191, 27, 44, 151, 174, 104, 141, 131, 168, 78, 159, 27, 239, 29, 248, 49, 100, 148, 159, 59, 73, 171, 215, 164, + 66, 58, 63, 164, 35, 202, 255, 27, 55, 110, 200, 181, 112, 41, 129, 200, 159, 68, 68, 217, 74, 111, 27, 55, 214, + 140, 115, 116, 15, 220, 22, 255, 27, 78, 2, 155, 79, 207, 212, 121, 150, 27, 173, 179, 156, 242, 14, 99, 75, 166, + 27, 177, 78, 231, 28, 57, 41, 208, 173, 72, 161, 221, 202, 185, 12, 215, 2, 147, 27, 196, 95, 192, 37, 126, 13, + 18, 22, 74, 132, 133, 134, 107, 2, 206, 26, 35, 227, 212, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1272, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "981c" + }, + { + "_tag": "ByteArray", + "bytearray": "c1a5165c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1843909203516893519" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10236779530797282248" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14588019482506908520" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13f9ff21557f0703f904ec00" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + } + } + ] + }, + "cborHex": "bf149f42981c44c1a5165c1b1996e1a6b1b2a94f1b8e1058bf192973c8ff1bca730e6dbf4d53684c13f9ff21557f0703f904ec001bffffffffffffffefd8669f1bfffffffffffffff99f12ffffff", + "cborBytes": [ + 191, 20, 159, 66, 152, 28, 68, 193, 165, 22, 92, 27, 25, 150, 225, 166, 177, 178, 169, 79, 27, 142, 16, 88, 191, + 25, 41, 115, 200, 255, 27, 202, 115, 14, 109, 191, 77, 83, 104, 76, 19, 249, 255, 33, 85, 127, 7, 3, 249, 4, 236, + 0, 27, 255, 255, 255, 255, 255, 255, 255, 239, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 18, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1273, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cc1375af7" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "320e39" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13137514993673804080" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9cbab5505861f2193a82df91" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ffbfc393e3e85fcd88534" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0ff920d422927b78c3fdd3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4e8fcbb8342606ffd88" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbf2222637c52e94" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5651066eadf266bc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12503149733460047925" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e69b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8713678154043737337" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf451cc1375af78043320e399f1bb651d447fd4b99304c9cbab5505861f2193a82df91ff4b5ffbfc393e3e85fcd885349f4b0ff920d422927b78c3fdd3ff41604ab4e8fcbb8342606ffd8848bbf2222637c52e94bf485651066eadf266bc1bad841c702467f83542e69b1b78ed341d32dbc4f9ffff", + "cborBytes": [ + 191, 69, 28, 193, 55, 90, 247, 128, 67, 50, 14, 57, 159, 27, 182, 81, 212, 71, 253, 75, 153, 48, 76, 156, 186, + 181, 80, 88, 97, 242, 25, 58, 130, 223, 145, 255, 75, 95, 251, 252, 57, 62, 62, 133, 252, 216, 133, 52, 159, 75, + 15, 249, 32, 212, 34, 146, 123, 120, 195, 253, 211, 255, 65, 96, 74, 180, 232, 252, 187, 131, 66, 96, 111, 253, + 136, 72, 187, 242, 34, 38, 55, 197, 46, 148, 191, 72, 86, 81, 6, 110, 173, 242, 102, 188, 27, 173, 132, 28, 112, + 36, 103, 248, 53, 66, 230, 155, 27, 120, 237, 52, 29, 50, 219, 196, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1274, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3820430" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff044b3820430ff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 240, 68, 179, 130, 4, 48, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1275, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "400749966936433275" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17560126877814651603" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7568449670455314023" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62d0749c83a4426dd506" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0c8d4c3709413cda3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d4c3d6c93e9e8be0e9ad890" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16617744683205345307" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8706193488121866836" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5bee072a37fbe85fea6e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7847162490186835735" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10371697343421679854" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12391707071326154905" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + } + ] + }, + "cborHex": "bf03bf1b058fbff8befee27b1bf3b21a5b9aee7ad31b690888e03be946674a62d0749c83a4426dd50649d0c8d4c3709413cda34c1d4c3d6c93e9e8be0e9ad890ff06bf1be69e16beaa97401b1b78d29cd99d52aa54ff084a5bee072a37fbe85fea6e1b6ce6b8b5725b2717d9050d801b8fefabc8408308ee131babf82fed6317709905ff", + "cborBytes": [ + 191, 3, 191, 27, 5, 143, 191, 248, 190, 254, 226, 123, 27, 243, 178, 26, 91, 154, 238, 122, 211, 27, 105, 8, 136, + 224, 59, 233, 70, 103, 74, 98, 208, 116, 156, 131, 164, 66, 109, 213, 6, 73, 208, 200, 212, 195, 112, 148, 19, + 205, 163, 76, 29, 76, 61, 108, 147, 233, 232, 190, 14, 154, 216, 144, 255, 6, 191, 27, 230, 158, 22, 190, 170, + 151, 64, 27, 27, 120, 210, 156, 217, 157, 82, 170, 84, 255, 8, 74, 91, 238, 7, 42, 55, 251, 232, 95, 234, 110, 27, + 108, 230, 184, 181, 114, 91, 39, 23, 217, 5, 13, 128, 27, 143, 239, 171, 200, 64, 131, 8, 238, 19, 27, 171, 248, + 47, 237, 99, 23, 112, 153, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1276, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14687206954316696461" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0f7f1f8b59ce61" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2896404616789824271" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "ByteArray", + "bytearray": "43739421cfa3f2965a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf0e9f1bcbd370e8a6b18b8d470f7f1f8b59ce611b283218a7358f130f0b4943739421cfa3f2965aff1bfffffffffffffff0a0ff", + "cborBytes": [ + 191, 14, 159, 27, 203, 211, 112, 232, 166, 177, 139, 141, 71, 15, 127, 31, 139, 89, 206, 97, 27, 40, 50, 24, 167, + 53, 143, 19, 15, 11, 73, 67, 115, 148, 33, 207, 163, 242, 150, 90, 255, 27, 255, 255, 255, 255, 255, 255, 255, + 240, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1277, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5946906355230113096" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6207937002256349804" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f1c2b71460d6a2d00" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "541f01308e3b73557c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11045170054418499273" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a49d9956561dc23d4a687e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7dda25fdb3a51e67b387e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa959a778c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15824161386914783047" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12610060426336029389" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "018949d9bde320" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8347058933029044167" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17800004497272494341" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10666961679358522430" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5263238604854439900" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85bda3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6119" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5287a7d27000fd48a01b562705cfff7e3a6cbf413e495f1c2b71460d6a2d0049541f01308e3b73557c1b994853a5096586c94ba49d9956561dc23d4a687e4bf7dda25fdb3a51e67b387e45fa959a778c1bdb9ab6f0ff821f47ff1baeffef2593f84acd9f47018949d9bde3201b73d6b5dffe727fc7ff1bf70651c824485905bf1b9408a921a2de743e1b490ac7a01278afdc4385bda3426119ffff", + "cborBytes": [ + 191, 27, 82, 135, 167, 210, 112, 0, 253, 72, 160, 27, 86, 39, 5, 207, 255, 126, 58, 108, 191, 65, 62, 73, 95, 28, + 43, 113, 70, 13, 106, 45, 0, 73, 84, 31, 1, 48, 142, 59, 115, 85, 124, 27, 153, 72, 83, 165, 9, 101, 134, 201, 75, + 164, 157, 153, 86, 86, 29, 194, 61, 74, 104, 126, 75, 247, 221, 162, 95, 219, 58, 81, 230, 123, 56, 126, 69, 250, + 149, 154, 119, 140, 27, 219, 154, 182, 240, 255, 130, 31, 71, 255, 27, 174, 255, 239, 37, 147, 248, 74, 205, 159, + 71, 1, 137, 73, 217, 189, 227, 32, 27, 115, 214, 181, 223, 254, 114, 127, 199, 255, 27, 247, 6, 81, 200, 36, 72, + 89, 5, 191, 27, 148, 8, 169, 33, 162, 222, 116, 62, 27, 73, 10, 199, 160, 18, 120, 175, 220, 67, 133, 189, 163, + 66, 97, 25, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1278, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3248877899302233464" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3040a4fb97eb07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76d51dd0557af1bab409a3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff8a0a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f703d4aab80edb6" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8673311777359990888" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbeed57af020" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15843658578874779818" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9246301196812347703" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17541640513209128395" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7038324681155206738" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ca09008665277953ad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16136347533079694044" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2d16553c7286e578bf473040a4fb97eb074b76d51dd0557af1bab409a343ff8a0a486f703d4aab80edb6ff1b785dcb1bbbc1106846cbeed57af0201bdbdffb88c066c8aa1b805175f31244e9371bf3706d1b6f6e55cbd8669f1b61ad2701c21ede529f49ca09008665277953ad1bdfefd29659774adcffffff", + "cborBytes": [ + 191, 27, 45, 22, 85, 60, 114, 134, 229, 120, 191, 71, 48, 64, 164, 251, 151, 235, 7, 75, 118, 213, 29, 208, 85, + 122, 241, 186, 180, 9, 163, 67, 255, 138, 10, 72, 111, 112, 61, 74, 171, 128, 237, 182, 255, 27, 120, 93, 203, 27, + 187, 193, 16, 104, 70, 203, 238, 213, 122, 240, 32, 27, 219, 223, 251, 136, 192, 102, 200, 170, 27, 128, 81, 117, + 243, 18, 68, 233, 55, 27, 243, 112, 109, 27, 111, 110, 85, 203, 216, 102, 159, 27, 97, 173, 39, 1, 194, 30, 222, + 82, 159, 73, 202, 9, 0, 134, 101, 39, 121, 83, 173, 27, 223, 239, 210, 150, 89, 119, 74, 220, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1279, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3581771484421287112" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68667e7d9771cd4cf210030d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c163796e97848d9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18063127092666637111" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8338987805142156044" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2354180944977935428" + } + }, + { + "_tag": "ByteArray", + "bytearray": "344a" + }, + { + "_tag": "ByteArray", + "bytearray": "5a31397898157cb048" + }, + { + "_tag": "ByteArray", + "bytearray": "fac704ea99c9c01e5fa30fff" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e3ca228ebb37bd847ef8b64" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cbc5280f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1804aca06983701e38" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "337df0bdc4b8b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d751867ede7fcc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c1782" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6dac67f64ca1a180411043" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce3f6803" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7eac7d5f2effaca676ff" + } + } + ] + }, + "cborHex": "bf1b31b50230238decc84c68667e7d9771cd4cf210030d480c163796e97848d9d8669f1bfaad1e6363211b379f1b73ba093a17d0030c1b20abbb18b2673c4442344a495a31397898157cb0484cfac704ea99c9c01e5fa30fffffff4c5e3ca228ebb37bd847ef8b64bf451cbc5280f2491804aca06983701e3847337df0bdc4b8b847d751867ede7fcc434c17824b6dac67f64ca1a180411043ff44ce3f68034a7eac7d5f2effaca676ffff", + "cborBytes": [ + 191, 27, 49, 181, 2, 48, 35, 141, 236, 200, 76, 104, 102, 126, 125, 151, 113, 205, 76, 242, 16, 3, 13, 72, 12, 22, + 55, 150, 233, 120, 72, 217, 216, 102, 159, 27, 250, 173, 30, 99, 99, 33, 27, 55, 159, 27, 115, 186, 9, 58, 23, + 208, 3, 12, 27, 32, 171, 187, 24, 178, 103, 60, 68, 66, 52, 74, 73, 90, 49, 57, 120, 152, 21, 124, 176, 72, 76, + 250, 199, 4, 234, 153, 201, 192, 30, 95, 163, 15, 255, 255, 255, 76, 94, 60, 162, 40, 235, 179, 123, 216, 71, 239, + 139, 100, 191, 69, 28, 188, 82, 128, 242, 73, 24, 4, 172, 160, 105, 131, 112, 30, 56, 71, 51, 125, 240, 189, 196, + 184, 184, 71, 215, 81, 134, 126, 222, 127, 204, 67, 76, 23, 130, 75, 109, 172, 103, 246, 76, 161, 161, 128, 65, + 16, 67, 255, 68, 206, 63, 104, 3, 74, 126, 172, 125, 95, 46, 255, 172, 166, 118, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1280, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "593e14397f6dd1f1e86576" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5427" + }, + { + "_tag": "ByteArray", + "bytearray": "f0dc8e63058140a5e10bdd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18244569735806238020" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15976289915883803227" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3590095533006342344" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffe4b593e14397f6dd1f1e8657641a79f4254274bf0dc8e63058140a5e10bdd1bfd31bb82c692bd441bddb72f0850e8d25b1b31d294ddba8f48c8ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 254, 75, 89, 62, 20, 57, 127, 109, 209, 241, 232, 101, 118, 65, 167, + 159, 66, 84, 39, 75, 240, 220, 142, 99, 5, 129, 64, 165, 225, 11, 221, 27, 253, 49, 187, 130, 198, 146, 189, 68, + 27, 221, 183, 47, 8, 80, 232, 210, 91, 27, 49, 210, 148, 221, 186, 143, 72, 200, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1281, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82ddff6302ff9d059a013100" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42844b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10039260760005121997" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16821839486828481160" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de4191a34ec9f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12138577327189763457" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d17b237aca7ca1d0799c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05fcfb8d07fd1acc07f32f35" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9476965954911082924" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9902832454421061334" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf41014c82ddff6302ff9d059a0131004342844bbf1b8b529e788f9f97cd1be9732de3290d0a8847de4191a34ec9f71ba874e3c421c1a581ff41d01bfffffffffffffff14ad17b237aca7ca1d0799cbf4c05fcfb8d07fd1acc07f32f351b8384f2532af219ac416f1b896deda65bfa1ed6ffff", + "cborBytes": [ + 191, 65, 1, 76, 130, 221, 255, 99, 2, 255, 157, 5, 154, 1, 49, 0, 67, 66, 132, 75, 191, 27, 139, 82, 158, 120, + 143, 159, 151, 205, 27, 233, 115, 45, 227, 41, 13, 10, 136, 71, 222, 65, 145, 163, 78, 201, 247, 27, 168, 116, + 227, 196, 33, 193, 165, 129, 255, 65, 208, 27, 255, 255, 255, 255, 255, 255, 255, 241, 74, 209, 123, 35, 122, 202, + 124, 161, 208, 121, 156, 191, 76, 5, 252, 251, 141, 7, 253, 26, 204, 7, 243, 47, 53, 27, 131, 132, 242, 83, 42, + 242, 25, 172, 65, 111, 27, 137, 109, 237, 166, 91, 250, 30, 214, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1282, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10705173351384510675" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cd7a" + }, + { + "_tag": "ByteArray", + "bytearray": "cab8fdb7a19fda8f149c4e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9415238172375796511" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1bf1c9d8b0f2644d" + }, + { + "_tag": "ByteArray", + "bytearray": "f11295" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3" + } + } + ] + }, + "cborHex": "bf1b94906a71d44070d39f42cd7a4bcab8fdb7a19fda8f149c4e1b82a9a53bd4284b1f481bf1c9d8b0f2644d43f11295ff1bfffffffffffffff941f3ff", + "cborBytes": [ + 191, 27, 148, 144, 106, 113, 212, 64, 112, 211, 159, 66, 205, 122, 75, 202, 184, 253, 183, 161, 159, 218, 143, 20, + 156, 78, 27, 130, 169, 165, 59, 212, 40, 75, 31, 72, 27, 241, 201, 216, 176, 242, 100, 77, 67, 241, 18, 149, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 249, 65, 243, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1283, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a173dda16cc6d86b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1453817550234214064" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1f" + }, + { + "_tag": "ByteArray", + "bytearray": "fa" + }, + { + "_tag": "ByteArray", + "bytearray": "f1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12374767964080314535" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7abe131" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf48a173dda16cc6d86bd8669f1b142cff5bf9f05eb09f411f41fa41f11babbc01e624e418a7ffff44a7abe131a0ff", + "cborBytes": [ + 191, 72, 161, 115, 221, 161, 108, 198, 216, 107, 216, 102, 159, 27, 20, 44, 255, 91, 249, 240, 94, 176, 159, 65, + 31, 65, 250, 65, 241, 27, 171, 188, 1, 230, 36, 228, 24, 167, 255, 255, 68, 167, 171, 225, 49, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1284, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "65afac8c9cdb3b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3503142389502306058" + } + } + ] + } + } + ] + }, + "cborHex": "bf4765afac8c9cdb3b9f1b309da9715be5e70affff", + "cborBytes": [191, 71, 101, 175, 172, 140, 156, 219, 59, 159, 27, 48, 157, 169, 113, 91, 229, 231, 10, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1285, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5101488617058118205" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a412380a75890180902d0b0e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69098cdae90b62e69db81f74" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11371427587414675826" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d19a0c085b58cc95c8dac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8846139606355502330" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "727badc80a6acfccf3e3a8e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4f0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91d04e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4b9f3e3a6ac8d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd49b439ae3fecee19" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13181543039092366510" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d278ab4ef5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "085e4152" + }, + { + "_tag": "ByteArray", + "bytearray": "33" + } + ] + } + } + ] + }, + "cborHex": "bf1b46cc20de4d72aa3d4ca412380a75890180902d0b0e4c69098cdae90b62e69db81f74bf41091b9dcf6d2470edd1724b5d19a0c085b58cc95c8dac1b7ac3cd1a665564fa4c727badc80a6acfccf3e3a8e142c4f04391d04e47c4b9f3e3a6ac8d49cd49b439ae3fecee191bb6ee3f8e249f9caeff45d278ab4ef59f44085e41524133ffff", + "cborBytes": [ + 191, 27, 70, 204, 32, 222, 77, 114, 170, 61, 76, 164, 18, 56, 10, 117, 137, 1, 128, 144, 45, 11, 14, 76, 105, 9, + 140, 218, 233, 11, 98, 230, 157, 184, 31, 116, 191, 65, 9, 27, 157, 207, 109, 36, 112, 237, 209, 114, 75, 93, 25, + 160, 192, 133, 181, 140, 201, 92, 141, 172, 27, 122, 195, 205, 26, 102, 85, 100, 250, 76, 114, 123, 173, 200, 10, + 106, 207, 204, 243, 227, 168, 225, 66, 196, 240, 67, 145, 208, 78, 71, 196, 185, 243, 227, 166, 172, 141, 73, 205, + 73, 180, 57, 174, 63, 236, 238, 25, 27, 182, 238, 63, 142, 36, 159, 156, 174, 255, 69, 210, 120, 171, 78, 245, + 159, 68, 8, 94, 65, 82, 65, 51, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1286, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1336135924328647530" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + } + ] + }, + "cborHex": "bf1b128ae88b453f4b6a1bfffffffffffffff8ff", + "cborBytes": [191, 27, 18, 138, 232, 139, 69, 63, 75, 106, 27, 255, 255, 255, 255, 255, 255, 255, 248, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1287, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8188293994642894" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2e763a751587808579" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16059228840490290409" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "981f6116bc535a775d5399" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + } + ] + }, + "cborHex": "bf4881882939946428949f492e763a7515878085791bdeddd78b8421cce9ff4b981f6116bc535a775d539905ff", + "cborBytes": [ + 191, 72, 129, 136, 41, 57, 148, 100, 40, 148, 159, 73, 46, 118, 58, 117, 21, 135, 128, 133, 121, 27, 222, 221, + 215, 139, 132, 33, 204, 233, 255, 75, 152, 31, 97, 22, 188, 83, 90, 119, 93, 83, 153, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1288, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2126035294067190405" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12994984038467671562" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d3c6fc3a34d533" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "315505641902332054" + } + }, + { + "_tag": "ByteArray", + "bytearray": "46fbf058b9df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11701987286947427673" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18177563201781356847" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12895144797783891144" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "96c24835ff" + }, + { + "_tag": "ByteArray", + "bytearray": "61816fc8b547" + } + ] + } + } + ] + }, + "cborHex": "bf0ad8669f1b1d8131d5f2d16a859f1bb4577521f2bc960a47d3c6fc3a34d5331b0460e6b5ae3858964646fbf058b9df1ba265cf700ca37559ffff1bfc43ad6c5463d92fd8669f1bb2f4c1df47229cc89f4596c24835ff4661816fc8b547ffffff", + "cborBytes": [ + 191, 10, 216, 102, 159, 27, 29, 129, 49, 213, 242, 209, 106, 133, 159, 27, 180, 87, 117, 33, 242, 188, 150, 10, + 71, 211, 198, 252, 58, 52, 213, 51, 27, 4, 96, 230, 181, 174, 56, 88, 150, 70, 70, 251, 240, 88, 185, 223, 27, + 162, 101, 207, 112, 12, 163, 117, 89, 255, 255, 27, 252, 67, 173, 108, 84, 99, 217, 47, 216, 102, 159, 27, 178, + 244, 193, 223, 71, 34, 156, 200, 159, 69, 150, 194, 72, 53, 255, 70, 97, 129, 111, 200, 181, 71, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1289, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04f8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "420813609767763213" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2c68f748ac961" + } + } + ] + } + } + ] + }, + "cborHex": "bf4204f8bf1b05d707bf9edb7d0d47b2c68f748ac961ffff", + "cborBytes": [ + 191, 66, 4, 248, 191, 27, 5, 215, 7, 191, 158, 219, 125, 13, 71, 178, 198, 143, 116, 138, 201, 97, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1290, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5db9727747c9351c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf97ac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3073e3a2c51cb9ea9489d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8fa56fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62b8dee5e3d565b30af8" + } + } + ] + }, + "cborHex": "bf485db9727747c9351c43bf97ac4bd3073e3a2c51cb9ea9489d1bfffffffffffffffd44d8fa56fe4a62b8dee5e3d565b30af8ff", + "cborBytes": [ + 191, 72, 93, 185, 114, 119, 71, 201, 53, 28, 67, 191, 151, 172, 75, 211, 7, 62, 58, 44, 81, 203, 158, 169, 72, + 157, 27, 255, 255, 255, 255, 255, 255, 255, 253, 68, 216, 250, 86, 254, 74, 98, 184, 222, 229, 227, 213, 101, 179, + 10, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1291, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17334882620586408502" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d5685e36c1ba6d4dd9baa2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12047597260891386319" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76e1b5df0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "786c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9020f5ef0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3156e85ba2e7608976de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce984c4e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8d4233f67ae1afd" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "399747163253691618" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17175320999451923263" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f6dc" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84bc9772f497" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8fddc43f84bcfb5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bf091dfe637253a36bf4c2d5685e36c1ba6d4dd9baa2d1ba731a9e0bc6671cf4576e1b5df0e42786c459020f5ef0e4a3156e85ba2e7608976de44ce984c4e48f8d4233f67ae1afdff1bfffffffffffffff6d8799f1b058c2fed51b4d4e21bee5aff7343a3933f42f6dcff4684bc9772f497bf48d8fddc43f84bcfb510ffff", + "cborBytes": [ + 191, 27, 240, 145, 223, 230, 55, 37, 58, 54, 191, 76, 45, 86, 133, 227, 108, 27, 166, 212, 221, 155, 170, 45, 27, + 167, 49, 169, 224, 188, 102, 113, 207, 69, 118, 225, 181, 223, 14, 66, 120, 108, 69, 144, 32, 245, 239, 14, 74, + 49, 86, 232, 91, 162, 231, 96, 137, 118, 222, 68, 206, 152, 76, 78, 72, 248, 212, 35, 63, 103, 174, 26, 253, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 246, 216, 121, 159, 27, 5, 140, 47, 237, 81, 180, 212, 226, 27, 238, 90, + 255, 115, 67, 163, 147, 63, 66, 246, 220, 255, 70, 132, 188, 151, 114, 244, 151, 191, 72, 216, 253, 220, 67, 248, + 75, 207, 181, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1292, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb0c6a80" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5239909096644139533" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ede111be13010aa2f1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2f53ff62111e21f1fad" + } + } + ] + }, + "cborHex": "bf44bb0c6a801b48b7e58fa8cfda0d49ede111be13010aa2f14ab2f53ff62111e21f1fadff", + "cborBytes": [ + 191, 68, 187, 12, 106, 128, 27, 72, 183, 229, 143, 168, 207, 218, 13, 73, 237, 225, 17, 190, 19, 1, 10, 162, 241, + 74, 178, 245, 63, 246, 33, 17, 226, 31, 31, 173, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1293, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4589467198897812780" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13857647110055009456" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fc140c108c277c06a97defa8" + } + ] + } + } + ] + }, + "cborHex": "bf011b3fb11019f29c752c1bc05040a0298c1cb09f4cfc140c108c277c06a97defa8ffff", + "cborBytes": [ + 191, 1, 27, 63, 177, 16, 25, 242, 156, 117, 44, 27, 192, 80, 64, 160, 41, 140, 28, 176, 159, 76, 252, 20, 12, 16, + 140, 39, 124, 6, 169, 125, 239, 168, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1294, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3013549006940841948" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9710760798425461892" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "478c1391bfe1" + }, + { + "_tag": "ByteArray", + "bytearray": "11e292c593" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14116597753904455465" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f9ac" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5888143567839200231" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "307652311802763918" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10079331479088811304" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2352644809278605817" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10061688052642300400" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5984617406033703190" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "923541299ed3c467e4bd37fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10342844695449491277" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3142953405933931771" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11737699246433832080" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11861284069205949873" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14942813716065072311" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3051466895146894414" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6819655541334849811" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2503396798799119123" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1565906014782975982" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10937909607793924617" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "615b7ac55f6dee2354d716" + } + } + ] + }, + "cborHex": "bf1b29d246daf7f0a7dcd8669f1b86c38d7f10f034849f46478c1391bfe14511e292c5931bc3e83add3e8d5f2942f9acffff1b51b6e360d38e83e7bf1b04450025c754da8e1b8be0fa93e0804d281b20a645fd3bb7c9f91b8ba24bf98a8941f01b530da1d2ab4231164c923541299ed3c467e4bd37fe1b8f892a73a74cd74d1b2b9e03787a4bccfb1ba2e4af46900f0c901ba49bbf0465053db11bcf5f89e782e4b4b71b2a58fcf94918444eff1b5ea448952fc9b913d8669f1b22bdda1ffc4583139f1b15bb373952c96feeffff1b97cb42d635e39a094b615b7ac55f6dee2354d716ff", + "cborBytes": [ + 191, 27, 41, 210, 70, 218, 247, 240, 167, 220, 216, 102, 159, 27, 134, 195, 141, 127, 16, 240, 52, 132, 159, 70, + 71, 140, 19, 145, 191, 225, 69, 17, 226, 146, 197, 147, 27, 195, 232, 58, 221, 62, 141, 95, 41, 66, 249, 172, 255, + 255, 27, 81, 182, 227, 96, 211, 142, 131, 231, 191, 27, 4, 69, 0, 37, 199, 84, 218, 142, 27, 139, 224, 250, 147, + 224, 128, 77, 40, 27, 32, 166, 69, 253, 59, 183, 201, 249, 27, 139, 162, 75, 249, 138, 137, 65, 240, 27, 83, 13, + 161, 210, 171, 66, 49, 22, 76, 146, 53, 65, 41, 158, 211, 196, 103, 228, 189, 55, 254, 27, 143, 137, 42, 115, 167, + 76, 215, 77, 27, 43, 158, 3, 120, 122, 75, 204, 251, 27, 162, 228, 175, 70, 144, 15, 12, 144, 27, 164, 155, 191, + 4, 101, 5, 61, 177, 27, 207, 95, 137, 231, 130, 228, 180, 183, 27, 42, 88, 252, 249, 73, 24, 68, 78, 255, 27, 94, + 164, 72, 149, 47, 201, 185, 19, 216, 102, 159, 27, 34, 189, 218, 31, 252, 69, 131, 19, 159, 27, 21, 187, 55, 57, + 82, 201, 111, 238, 255, 255, 27, 151, 203, 66, 214, 53, 227, 154, 9, 75, 97, 91, 122, 197, 95, 109, 238, 35, 84, + 215, 22, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1295, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7280360431634405284" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a6ed7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9782882007089372358" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8302" + } + ] + } + } + ] + }, + "cborHex": "bf1b6509093d5460d7a49f43a6ed7c1b87c3c75a801f5cc6428302ffff", + "cborBytes": [ + 191, 27, 101, 9, 9, 61, 84, 96, 215, 164, 159, 67, 166, 237, 124, 27, 135, 195, 199, 90, 128, 31, 92, 198, 66, + 131, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1296, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fbb4ec0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6607271431902509352" + } + }, + { + "_tag": "ByteArray", + "bytearray": "52e8bee9052f7259" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "738c088cee" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17756942011826731974" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "912290c5" + }, + { + "_tag": "ByteArray", + "bytearray": "a719f04b47" + }, + { + "_tag": "ByteArray", + "bytearray": "2586a158690664" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3227382307711966173" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15862044072017743146" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90913fe664" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c084f4d96f2277b17" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3481210964991518833" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74fae3f052" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9241147719746211629" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bd3b5f58613e30458bf3b18" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15356085954338562175" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4396882511740779860" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17142336782575277518" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b646" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17755505877222891901" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2909395648390811179" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17871082272486670506" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8136208938864243039" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d09b8084" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17647685734157698160" + } + } + } + ] + }, + "cborHex": "bf446fbb4ec09f1b5bb1be5c4922b9284852e8bee9052f7259ff45738c088ceed8669f1bf66d54adf0247bc69f44912290c545a719f04b47472586a1586906641b2cc9f71c058d5bdd1bdc214d0af4354d2affff4590913fe664bf495c084f4d96f2277b171b304fbeedac83a8714574fae3f0521b803f26e3b0624f2dff4c9bd3b5f58613e30458bf3b18bf1bd51bc6d0c0b7207f1b3d04dd59476fbd541bede5d07ad18315ce42b6461bf6683a85cb3b217d1b28603fed7566ce2b1bf802d6a44b5940aa1b70e99eec235c715fff44d09b80841bf4e92cac7c32c470ff", + "cborBytes": [ + 191, 68, 111, 187, 78, 192, 159, 27, 91, 177, 190, 92, 73, 34, 185, 40, 72, 82, 232, 190, 233, 5, 47, 114, 89, + 255, 69, 115, 140, 8, 140, 238, 216, 102, 159, 27, 246, 109, 84, 173, 240, 36, 123, 198, 159, 68, 145, 34, 144, + 197, 69, 167, 25, 240, 75, 71, 71, 37, 134, 161, 88, 105, 6, 100, 27, 44, 201, 247, 28, 5, 141, 91, 221, 27, 220, + 33, 77, 10, 244, 53, 77, 42, 255, 255, 69, 144, 145, 63, 230, 100, 191, 73, 92, 8, 79, 77, 150, 242, 39, 123, 23, + 27, 48, 79, 190, 237, 172, 131, 168, 113, 69, 116, 250, 227, 240, 82, 27, 128, 63, 38, 227, 176, 98, 79, 45, 255, + 76, 155, 211, 181, 245, 134, 19, 227, 4, 88, 191, 59, 24, 191, 27, 213, 27, 198, 208, 192, 183, 32, 127, 27, 61, + 4, 221, 89, 71, 111, 189, 84, 27, 237, 229, 208, 122, 209, 131, 21, 206, 66, 182, 70, 27, 246, 104, 58, 133, 203, + 59, 33, 125, 27, 40, 96, 63, 237, 117, 102, 206, 43, 27, 248, 2, 214, 164, 75, 89, 64, 170, 27, 112, 233, 158, + 236, 35, 92, 113, 95, 255, 68, 208, 155, 128, 132, 27, 244, 233, 44, 172, 124, 50, 196, 112, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1297, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "39925e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "61616528631917348" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2653417498269705535" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17483722038888745897" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e98de3ec370ca544e99b0c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1395dc205179aee98742ebe" + } + } + ] + }, + "cborHex": "bf4339925ed8669f1b00dae7e80565eb249f1b24d2d528012be53f1bf2a2a88fc7a1cba9ffff4be98de3ec370ca544e99b0c4ca1395dc205179aee98742ebeff", + "cborBytes": [ + 191, 67, 57, 146, 94, 216, 102, 159, 27, 0, 218, 231, 232, 5, 101, 235, 36, 159, 27, 36, 210, 213, 40, 1, 43, 229, + 63, 27, 242, 162, 168, 143, 199, 161, 203, 169, 255, 255, 75, 233, 141, 227, 236, 55, 12, 165, 68, 233, 155, 12, + 76, 161, 57, 93, 194, 5, 23, 154, 238, 152, 116, 46, 190, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1298, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4793360706484946265" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9628737343291287030" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e0cd4db7fd" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6892707231733878357" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14142258200390680667" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "105912" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1973680671557834330" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91c39bf688a95795dd5357" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12787124282341610493" + } + } + } + ] + }, + "cborHex": "bf1b4285702a8e59c559d8669f1b85a02599366a65f69f45e0cd4db7fdffff1b5fa7d0b548438e55d8669f1bc44364e78424405b80ff431059121b1b63ec1d2042565a4b91c39bf688a95795dd53571bb174fdc923be53fdff", + "cborBytes": [ + 191, 27, 66, 133, 112, 42, 142, 89, 197, 89, 216, 102, 159, 27, 133, 160, 37, 153, 54, 106, 101, 246, 159, 69, + 224, 205, 77, 183, 253, 255, 255, 27, 95, 167, 208, 181, 72, 67, 142, 85, 216, 102, 159, 27, 196, 67, 100, 231, + 132, 36, 64, 91, 128, 255, 67, 16, 89, 18, 27, 27, 99, 236, 29, 32, 66, 86, 90, 75, 145, 195, 155, 246, 136, 169, + 87, 149, 221, 83, 87, 27, 177, 116, 253, 201, 35, 190, 83, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1299, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7990107102192121105" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15245044976212736699" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a78b135f1b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12461532383513086335" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1377839847944495277" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2cd35aecc8d3be54" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f1580d8d20" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38380cbb8f01de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3993764530520458382" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df468833d5538c25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7afaaa8a9083e330" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5a415cd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7174" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe3b1958e43c02" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2811594924211955256" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf410ad8669f1b6ee29013777cb5119f1bd39147a258037abb45a78b135f1b1bacf041adc453097f1b131f120aa61c20adffff482cd35aecc8d3be549f45f1580d8d20ff4738380cbb8f01de1b376cb3ae3e3a048e48df468833d5538c25487afaaa8a9083e33044e5a415cd9f427174ff47fe3b1958e43c02d8669f1b2704caafe5f1e63880ffff", + "cborBytes": [ + 191, 65, 10, 216, 102, 159, 27, 110, 226, 144, 19, 119, 124, 181, 17, 159, 27, 211, 145, 71, 162, 88, 3, 122, 187, + 69, 167, 139, 19, 95, 27, 27, 172, 240, 65, 173, 196, 83, 9, 127, 27, 19, 31, 18, 10, 166, 28, 32, 173, 255, 255, + 72, 44, 211, 90, 236, 200, 211, 190, 84, 159, 69, 241, 88, 13, 141, 32, 255, 71, 56, 56, 12, 187, 143, 1, 222, 27, + 55, 108, 179, 174, 62, 58, 4, 142, 72, 223, 70, 136, 51, 213, 83, 140, 37, 72, 122, 250, 170, 138, 144, 131, 227, + 48, 68, 229, 164, 21, 205, 159, 66, 113, 116, 255, 71, 254, 59, 25, 88, 228, 60, 2, 216, 102, 159, 27, 39, 4, 202, + 175, 229, 241, 230, 56, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1300, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01fc07f9070000e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41de" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04034e7f000707" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa3b30" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15438132373827624075" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1826286956181669426" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10159677153514899587" + } + } + } + ] + }, + "cborHex": "bf07bf4801fc07f9070000e9134241de41e04264da4704034e7f00070743aa3b301bd63f439969741c8bff0a1b1958464f812346321bfffffffffffffff71b8cfe6c8af7e84883ff", + "cborBytes": [ + 191, 7, 191, 72, 1, 252, 7, 249, 7, 0, 0, 233, 19, 66, 65, 222, 65, 224, 66, 100, 218, 71, 4, 3, 78, 127, 0, 7, 7, + 67, 170, 59, 48, 27, 214, 63, 67, 153, 105, 116, 28, 139, 255, 10, 27, 25, 88, 70, 79, 129, 35, 70, 50, 27, 255, + 255, 255, 255, 255, 255, 255, 247, 27, 140, 254, 108, 138, 247, 232, 72, 131, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1301, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2529379055343099829" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ecee5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3783405608026340643" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10403020315865140585" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7694668856690521777" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10179262812646549844" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17699593823193013193" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a000714e0035f322" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9918148366830524582" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18434666503685796748" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18381205039283791092" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9941" + } + } + ] + }, + "cborHex": "bf1b231a28d98009dfb5436ecee51b34815b5aeba17d231b905ef3dc16504d691b6ac8f48e9b4cb6b19f1b8d440198972429541bf5a196ce441e1bc948a000714e0035f322ff1b89a457641a8dd8a6d8669f1bffd5178398fbf38c80ff1bff1728986e2164f4429941ff", + "cborBytes": [ + 191, 27, 35, 26, 40, 217, 128, 9, 223, 181, 67, 110, 206, 229, 27, 52, 129, 91, 90, 235, 161, 125, 35, 27, 144, + 94, 243, 220, 22, 80, 77, 105, 27, 106, 200, 244, 142, 155, 76, 182, 177, 159, 27, 141, 68, 1, 152, 151, 36, 41, + 84, 27, 245, 161, 150, 206, 68, 30, 27, 201, 72, 160, 0, 113, 78, 0, 53, 243, 34, 255, 27, 137, 164, 87, 100, 26, + 141, 216, 166, 216, 102, 159, 27, 255, 213, 23, 131, 152, 251, 243, 140, 128, 255, 27, 255, 23, 40, 152, 110, 33, + 100, 244, 66, 153, 65, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1302, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "201737788327269327" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "491328528350339243" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "75daa6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1270192268064648856" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11642580454519192331" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6507710700824171978" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3ffae640bee613bf5341a4d" + } + } + ] + }, + "cborHex": "bf1b02ccb7731b0513cf801b06d18cb1805660ab9f4375daa6ff1b11a0a1235670ee981ba192c13d0485bb0b1b5a5008672fa215ca4cb3ffae640bee613bf5341a4dff", + "cborBytes": [ + 191, 27, 2, 204, 183, 115, 27, 5, 19, 207, 128, 27, 6, 209, 140, 177, 128, 86, 96, 171, 159, 67, 117, 218, 166, + 255, 27, 17, 160, 161, 35, 86, 112, 238, 152, 27, 161, 146, 193, 61, 4, 133, 187, 11, 27, 90, 80, 8, 103, 47, 162, + 21, 202, 76, 179, 255, 174, 100, 11, 238, 97, 59, 245, 52, 26, 77, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1303, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "80fccf84030788078002fd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8029e008d78544d0db75" + }, + { + "_tag": "ByteArray", + "bytearray": "ecb61b81" + }, + { + "_tag": "ByteArray", + "bytearray": "60041f" + }, + { + "_tag": "ByteArray", + "bytearray": "7ff06e21" + }, + { + "_tag": "ByteArray", + "bytearray": "c863" + } + ] + } + } + ] + }, + "cborHex": "bf4b80fccf84030788078002fdd905059f4a8029e008d78544d0db7544ecb61b814360041f447ff06e2142c863ffff", + "cborBytes": [ + 191, 75, 128, 252, 207, 132, 3, 7, 136, 7, 128, 2, 253, 217, 5, 5, 159, 74, 128, 41, 224, 8, 215, 133, 68, 208, + 219, 117, 68, 236, 182, 27, 129, 67, 96, 4, 31, 68, 127, 240, 110, 33, 66, 200, 99, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1304, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bb32c368347" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17321202210708587251" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "acb46317fb207dc0271f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + } + } + ] + }, + "cborHex": "bf461bb32c3683471bf06145a393ff02f34aacb46317fb207dc0271fd87b9f14ffff", + "cborBytes": [ + 191, 70, 27, 179, 44, 54, 131, 71, 27, 240, 97, 69, 163, 147, 255, 2, 243, 74, 172, 180, 99, 23, 251, 32, 125, + 192, 39, 31, 216, 123, 159, 20, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1305, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "540932054806405054" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12891160149174664259" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f49cc7d63a68b842d99a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04f807028658d2fab3e703" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a011d8c02" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "544407ea007704065a00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1218993801745754722" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6472746b72b528" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9776886082664482329" + } + } + } + ] + }, + "cborHex": "bf1b0781c6d67e5b9fbebf1bb2e699dafa3a3c434af49cc7d63a68b842d99a1bfffffffffffffff74b04f807028658d2fab3e703ff451a011d8c02a04a544407ea007704065a001b10eabc6778756a62476472746b72b5281b87ae7a178ead4619ff", + "cborBytes": [ + 191, 27, 7, 129, 198, 214, 126, 91, 159, 190, 191, 27, 178, 230, 153, 218, 250, 58, 60, 67, 74, 244, 156, 199, + 214, 58, 104, 184, 66, 217, 154, 27, 255, 255, 255, 255, 255, 255, 255, 247, 75, 4, 248, 7, 2, 134, 88, 210, 250, + 179, 231, 3, 255, 69, 26, 1, 29, 140, 2, 160, 74, 84, 68, 7, 234, 0, 119, 4, 6, 90, 0, 27, 16, 234, 188, 103, 120, + 117, 106, 98, 71, 100, 114, 116, 107, 114, 181, 40, 27, 135, 174, 122, 23, 142, 173, 70, 25, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1306, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16883263082829018236" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8503624824041399947" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13565539143742548997" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9193306897055290117" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17084247134301675327" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17982925147910489123" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12104057448170131211" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "472842562942684777" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16181152867593737253" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d507978532b302882582" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18016427499233344720" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bea4d66528d7d747cd8669f1b7602f1b92c2e668b9f1bbc4279fa596e6c051b7f952fea262113051bed1770409f095f3fffff1bf9902f24f7a4c4239f1ba7fa401e7b1a0f0b1b068fdfce46e24e691be08f00cd3937d4254ad507978532b3028825821bfa07355afd61fcd0ffff", + "cborBytes": [ + 191, 27, 234, 77, 102, 82, 141, 125, 116, 124, 216, 102, 159, 27, 118, 2, 241, 185, 44, 46, 102, 139, 159, 27, + 188, 66, 121, 250, 89, 110, 108, 5, 27, 127, 149, 47, 234, 38, 33, 19, 5, 27, 237, 23, 112, 64, 159, 9, 95, 63, + 255, 255, 27, 249, 144, 47, 36, 247, 164, 196, 35, 159, 27, 167, 250, 64, 30, 123, 26, 15, 11, 27, 6, 143, 223, + 206, 70, 226, 78, 105, 27, 224, 143, 0, 205, 57, 55, 212, 37, 74, 213, 7, 151, 133, 50, 179, 2, 136, 37, 130, 27, + 250, 7, 53, 90, 253, 97, 252, 208, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1307, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5378186863922883449" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11849431541436135070" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16940940733623718815" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12872605380462941637" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1493034306495043679" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18051504912268639690" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5768623561983818127" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10058979063893236721" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8973232297599277090" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15583802129030748702" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13710275581805824860" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b4aa3287537cbab79d8669f1ba471a334b99c369e9f1beb1a4fd71c96539f1bb2a4ae643c4695c541621b14b852ca941bd85f1bfa83d413a4fdbdcaffff1b500e4490eefe798f9f1b8b98ac29f2729bf11b7c87533b817798221bd844c97846da9a1eff1bbe44af00623f8b5c80ff", + "cborBytes": [ + 191, 27, 74, 163, 40, 117, 55, 203, 171, 121, 216, 102, 159, 27, 164, 113, 163, 52, 185, 156, 54, 158, 159, 27, + 235, 26, 79, 215, 28, 150, 83, 159, 27, 178, 164, 174, 100, 60, 70, 149, 197, 65, 98, 27, 20, 184, 82, 202, 148, + 27, 216, 95, 27, 250, 131, 212, 19, 164, 253, 189, 202, 255, 255, 27, 80, 14, 68, 144, 238, 254, 121, 143, 159, + 27, 139, 152, 172, 41, 242, 114, 155, 241, 27, 124, 135, 83, 59, 129, 119, 152, 34, 27, 216, 68, 201, 120, 70, + 218, 154, 30, 255, 27, 190, 68, 175, 0, 98, 63, 139, 92, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1308, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8894db87d82f11" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4310543810402324993" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6033707458694764635" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3eb35725" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "495625c980b51d4f3ddc98a1" + } + } + ] + } + } + ] + }, + "cborHex": "bf478894db87d82f11bf1b3bd220c1dfca12011b53bc08f73a20585b443eb357254c495625c980b51d4f3ddc98a1ffff", + "cborBytes": [ + 191, 71, 136, 148, 219, 135, 216, 47, 17, 191, 27, 59, 210, 32, 193, 223, 202, 18, 1, 27, 83, 188, 8, 247, 58, 32, + 88, 91, 68, 62, 179, 87, 37, 76, 73, 86, 37, 201, 128, 181, 29, 79, 61, 220, 152, 161, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1309, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7365a98f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4024342178410786347" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f392695484" + }, + { + "_tag": "ByteArray", + "bytearray": "39d0483bd21bb3a94138" + }, + { + "_tag": "ByteArray", + "bytearray": "1c1c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d69d44d4765ef50624c8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3409921206124084862" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d57e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13895211665308128012" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17768027395944214" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf447365a98fd8669f1b37d955e3aecbee2b9f45f3926954844a39d0483bd21bb3a94138421c1cffff4ad69d44d4765ef50624c8bf1b2f5279453b18fe7e42d57e1bc0d5b563bd8e130c1b003f1fed414b6f16ffff", + "cborBytes": [ + 191, 68, 115, 101, 169, 143, 216, 102, 159, 27, 55, 217, 85, 227, 174, 203, 238, 43, 159, 69, 243, 146, 105, 84, + 132, 74, 57, 208, 72, 59, 210, 27, 179, 169, 65, 56, 66, 28, 28, 255, 255, 74, 214, 157, 68, 212, 118, 94, 245, 6, + 36, 200, 191, 27, 47, 82, 121, 69, 59, 24, 254, 126, 66, 213, 126, 27, 192, 213, 181, 99, 189, 142, 19, 12, 27, 0, + 63, 31, 237, 65, 75, 111, 22, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1310, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18372523969989425895" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd05ff" + } + } + ] + }, + "cborHex": "bf1bfef851357a91bae743fd05ffff", + "cborBytes": [191, 27, 254, 248, 81, 53, 122, 145, 186, 231, 67, 253, 5, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1311, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3793a261f4ecc2be5242f927" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5711363286291983926" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e182be3d9093036f2392b4a0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8845709368781231056" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85dbce7f726438419e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b57501ae831d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5327888871425459748" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a8841ff04a4c6f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3439624704959310176" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c3793a261f4ecc2be5242f927d8669f1b4f42d6a616a42e369f4ce182be3d9093036f2392b4a01b7ac245cde88cd3d0ffff4985dbce7f726438419e9f46b57501ae831d1b49f076b34012462447a8841ff04a4c6f1b2fbc0071fbc1e960ffff", + "cborBytes": [ + 191, 76, 55, 147, 162, 97, 244, 236, 194, 190, 82, 66, 249, 39, 216, 102, 159, 27, 79, 66, 214, 166, 22, 164, 46, + 54, 159, 76, 225, 130, 190, 61, 144, 147, 3, 111, 35, 146, 180, 160, 27, 122, 194, 69, 205, 232, 140, 211, 208, + 255, 255, 73, 133, 219, 206, 127, 114, 100, 56, 65, 158, 159, 70, 181, 117, 1, 174, 131, 29, 27, 73, 240, 118, + 179, 64, 18, 70, 36, 71, 168, 132, 31, 240, 74, 76, 111, 27, 47, 188, 0, 113, 251, 193, 233, 96, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1312, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "402d36fcdfc098" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4327015010981123000" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11855084347419835414" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1403c5c68e117c285ddb" + } + ] + } + } + ] + }, + "cborHex": "bf47402d36fcdfc0989f1b3c0ca53a1b5013b81ba485b8672e40bc16ff41e59f4a1403c5c68e117c285ddbffff", + "cborBytes": [ + 191, 71, 64, 45, 54, 252, 223, 192, 152, 159, 27, 60, 12, 165, 58, 27, 80, 19, 184, 27, 164, 133, 184, 103, 46, + 64, 188, 22, 255, 65, 229, 159, 74, 20, 3, 197, 198, 142, 17, 124, 40, 93, 219, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1313, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1805857004204928148" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcfbfcfc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + } + ] + }, + "cborHex": "bf100f1b190fb160a2c92c9444fcfbfcfc1bfffffffffffffff941f9ff", + "cborBytes": [ + 191, 16, 15, 27, 25, 15, 177, 96, 162, 201, 44, 148, 68, 252, 251, 252, 252, 27, 255, 255, 255, 255, 255, 255, + 255, 249, 65, 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1314, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "68c4efd504c07490e4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16887755461683730244" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07f745e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + ] + } + } + ] + }, + "cborHex": "bf4968c4efd504c07490e4d8669f1bea5d5c1e035257449f4407f745e3050c1bfffffffffffffffbffffff", + "cborBytes": [ + 191, 73, 104, 196, 239, 213, 4, 192, 116, 144, 228, 216, 102, 159, 27, 234, 93, 92, 30, 3, 82, 87, 68, 159, 68, 7, + 247, 69, 227, 5, 12, 27, 255, 255, 255, 255, 255, 255, 255, 251, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1315, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02080701a5616afd186e3b01" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20d88bae09874df829" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d145705362eaa32ead0c14c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c5e49c42ee9309bfa4b6c92" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6025516059641833642" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10801697436779815624" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6104265338347794836" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab9a4ee3be" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7597935267077472707" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "948e9b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11538449830565763902" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15900176617018402915" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58f8010606d4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9152220943872325409" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fe06020704020506118b" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f893" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5f96" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15815222213333371658" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c02080701a5616afd186e3b01d8669f1bfffffffffffffff580ff4920d88bae09874df8294cd145705362eaa32ead0c14c64c2c5e49c42ee9309bfa4b6c92bf1b539eeeee835ce8aa1b95e75696c28222c81b54b6b4fbc2f3319445ab9a4ee3be1b697149deac90c1c343948e9b1ba020cefcd189db3e1bdca8c663f35aa863ff4658f8010606d4d8669f1b7f033875396677219f4afe06020704020506118bffff42f893d905069f425f961bdb7af4cf759a4b0affff", + "cborBytes": [ + 191, 76, 2, 8, 7, 1, 165, 97, 106, 253, 24, 110, 59, 1, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, + 128, 255, 73, 32, 216, 139, 174, 9, 135, 77, 248, 41, 76, 209, 69, 112, 83, 98, 234, 163, 46, 173, 12, 20, 198, + 76, 44, 94, 73, 196, 46, 233, 48, 155, 250, 75, 108, 146, 191, 27, 83, 158, 238, 238, 131, 92, 232, 170, 27, 149, + 231, 86, 150, 194, 130, 34, 200, 27, 84, 182, 180, 251, 194, 243, 49, 148, 69, 171, 154, 78, 227, 190, 27, 105, + 113, 73, 222, 172, 144, 193, 195, 67, 148, 142, 155, 27, 160, 32, 206, 252, 209, 137, 219, 62, 27, 220, 168, 198, + 99, 243, 90, 168, 99, 255, 70, 88, 248, 1, 6, 6, 212, 216, 102, 159, 27, 127, 3, 56, 117, 57, 102, 119, 33, 159, + 74, 254, 6, 2, 7, 4, 2, 5, 6, 17, 139, 255, 255, 66, 248, 147, 217, 5, 6, 159, 66, 95, 150, 27, 219, 122, 244, + 207, 117, 154, 75, 10, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1316, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10609076077610974101" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + } + ] + }, + "cborHex": "bf1b933b027bb918bb951bfffffffffffffffeff", + "cborBytes": [191, 27, 147, 59, 2, 123, 185, 24, 187, 149, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1317, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7593822060689136277" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6373042965659159454" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7888906165619863508" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12178276773238718203" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10793726368390531681" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13557374068255501332" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4a7cb18002b0dfb57e993" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7957178881522227664" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11615650709036061796" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "af" + }, + { + "_tag": "ByteArray", + "bytearray": "9480d9e3c395f7debdb3d5" + }, + { + "_tag": "ByteArray", + "bytearray": "5070c7f25a16448dd2" + } + ] + } + } + ] + }, + "cborHex": "bf1b6962acee2ee69a951b587198cfba6a8b9e1b6d7b065c44292fd4bf1ba901ee33b548befb1b95cb04f1c6af4a611bbc2577e291762c144bd4a7cb18002b0dfb57e993ff1b6e6d9408a75f59d0d8669f1ba13314c70b1bd4649f41af4b9480d9e3c395f7debdb3d5495070c7f25a16448dd2ffffff", + "cborBytes": [ + 191, 27, 105, 98, 172, 238, 46, 230, 154, 149, 27, 88, 113, 152, 207, 186, 106, 139, 158, 27, 109, 123, 6, 92, 68, + 41, 47, 212, 191, 27, 169, 1, 238, 51, 181, 72, 190, 251, 27, 149, 203, 4, 241, 198, 175, 74, 97, 27, 188, 37, + 119, 226, 145, 118, 44, 20, 75, 212, 167, 203, 24, 0, 43, 13, 251, 87, 233, 147, 255, 27, 110, 109, 148, 8, 167, + 95, 89, 208, 216, 102, 159, 27, 161, 51, 20, 199, 11, 27, 212, 100, 159, 65, 175, 75, 148, 128, 217, 227, 195, + 149, 247, 222, 189, 179, 213, 73, 80, 112, 199, 242, 90, 22, 68, 141, 210, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1318, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "107797331748100688" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16355182883794743769" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8abc45a70fc3cd708636" + }, + { + "_tag": "ByteArray", + "bytearray": "100764c4" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3397207331330547788" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11132587157452360558" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14181456779755302167" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7e07eca23e00fcacbd42" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14210397984527266477" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b017ef91a22949a50d87a9f1be2f9482de92271d94a8abc45a70fc3cd70863644100764c4ff1b2f254e11944f604c051b9a7ee50967060b6e9f1bc4cea7cdfadead174a7e07eca23e00fcacbd42ff1bc53579ad50acb2add8669f1bfffffffffffffff180ffff", + "cborBytes": [ + 191, 27, 1, 126, 249, 26, 34, 148, 154, 80, 216, 122, 159, 27, 226, 249, 72, 45, 233, 34, 113, 217, 74, 138, 188, + 69, 167, 15, 195, 205, 112, 134, 54, 68, 16, 7, 100, 196, 255, 27, 47, 37, 78, 17, 148, 79, 96, 76, 5, 27, 154, + 126, 229, 9, 103, 6, 11, 110, 159, 27, 196, 206, 167, 205, 250, 222, 173, 23, 74, 126, 7, 236, 162, 62, 0, 252, + 172, 189, 66, 255, 27, 197, 53, 121, 173, 80, 172, 178, 173, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 241, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1319, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12032328525896281576" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11344221892852685559" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "57239561" + }, + { + "_tag": "ByteArray", + "bytearray": "70cb89" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10084793364380897783" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13383182160340757301" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5784861046428230668" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "601ac375bb90ec" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c37c9f3ee159f7e1c9ab0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17780765803386635943" + } + } + ] + } + } + ] + }, + "cborHex": "bf1ba6fb6b0b56d8ede8d8669f1b9d6ec5b510b19af79f44572395614370cb891b8bf462222523d1f7ffff1bb9ba9d448774ab35bf1b5047f478e359640c47601ac375bb90ecff4b8c37c9f3ee159f7e1c9ab09f1bf6c1f84aa94606a7ffff", + "cborBytes": [ + 191, 27, 166, 251, 107, 11, 86, 216, 237, 232, 216, 102, 159, 27, 157, 110, 197, 181, 16, 177, 154, 247, 159, 68, + 87, 35, 149, 97, 67, 112, 203, 137, 27, 139, 244, 98, 34, 37, 35, 209, 247, 255, 255, 27, 185, 186, 157, 68, 135, + 116, 171, 53, 191, 27, 80, 71, 244, 120, 227, 89, 100, 12, 71, 96, 26, 195, 117, 187, 144, 236, 255, 75, 140, 55, + 201, 243, 238, 21, 159, 126, 28, 154, 176, 159, 27, 246, 193, 248, 74, 169, 70, 6, 167, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1320, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7fb00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffb5fa0300" + } + } + ] + }, + "cborHex": "bf43c7fb0045ffb5fa0300ff", + "cborBytes": [191, 67, 199, 251, 0, 69, 255, 181, 250, 3, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1321, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d30db68ede5bb48" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09753cbeb0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fafa4e4d58abf66b00" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9194" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17330599938706137199" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8fb13ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2d6204138b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17572638230738604004" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "427564edb79a3e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "156908145802963243" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9abb989a55e12053" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11182823115499893448" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "674322d6770c76" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9bdf0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a863" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9604467003544665262" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf482d30db68ede5bb48bf4509753cbeb049fafa4e4d58abf66b004291941bf082a8d2a2fc606f41c144e8fb13ff46e2d6204138b31bf3de8d5df59f8fe4ff47427564edb79a3e9f1b022d732094f3692b489abb989a55e120531b9b315e5fd965f2c8ff47674322d6770c76bf417f43f9bdf042a8631b8549ebda633d7caeffff", + "cborBytes": [ + 191, 72, 45, 48, 219, 104, 237, 229, 187, 72, 191, 69, 9, 117, 60, 190, 176, 73, 250, 250, 78, 77, 88, 171, 246, + 107, 0, 66, 145, 148, 27, 240, 130, 168, 210, 162, 252, 96, 111, 65, 193, 68, 232, 251, 19, 255, 70, 226, 214, 32, + 65, 56, 179, 27, 243, 222, 141, 93, 245, 159, 143, 228, 255, 71, 66, 117, 100, 237, 183, 154, 62, 159, 27, 2, 45, + 115, 32, 148, 243, 105, 43, 72, 154, 187, 152, 154, 85, 225, 32, 83, 27, 155, 49, 94, 95, 217, 101, 242, 200, 255, + 71, 103, 67, 34, 214, 119, 12, 118, 191, 65, 127, 67, 249, 189, 240, 66, 168, 99, 27, 133, 73, 235, 218, 99, 61, + 124, 174, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1322, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4178113428138675052" + } + } + } + ] + }, + "cborHex": "bf061b39fba406bb7ecb6cff", + "cborBytes": [191, 6, 27, 57, 251, 164, 6, 187, 126, 203, 108, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1323, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "199083206325242508" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "853054664404220991" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3979570372659786940" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13206589494016221107" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b817e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5658205740657982579" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4304e5" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8190438276805088568" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54ded1cb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8418106760300073811" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16425383590573016332" + } + } + } + ] + }, + "cborHex": "bf1b02c3491f11c30a8c1b0bd6a8b295cdbc3f1b373a462b550e34bc9f1bb7473b2c5d3e1fb3435b817e1b4e85fc2485febc73434304e5ff1b71aa4837cbbad5384454ded1cb1b74d31f7f590013531be3f2af59a7a2850cff", + "cborBytes": [ + 191, 27, 2, 195, 73, 31, 17, 195, 10, 140, 27, 11, 214, 168, 178, 149, 205, 188, 63, 27, 55, 58, 70, 43, 85, 14, + 52, 188, 159, 27, 183, 71, 59, 44, 93, 62, 31, 179, 67, 91, 129, 126, 27, 78, 133, 252, 36, 133, 254, 188, 115, + 67, 67, 4, 229, 255, 27, 113, 170, 72, 55, 203, 186, 213, 56, 68, 84, 222, 209, 203, 27, 116, 211, 31, 127, 89, 0, + 19, 83, 27, 227, 242, 175, 89, 167, 162, 133, 12, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1324, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15716692306001105392" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0ad629e1476" + } + } + ] + }, + "cborHex": "bf1bda1ce861b74f91f046f0ad629e1476ff", + "cborBytes": [191, 27, 218, 28, 232, 97, 183, 79, 145, 240, 70, 240, 173, 98, 158, 20, 118, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1325, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddb0a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ccaed38f1392081c5e5" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1745555839481531981" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5019933887080792123" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75fcabd9" + }, + { + "_tag": "ByteArray", + "bytearray": "f3ba15f36b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2739998699195195985" + } + } + ] + } + } + ] + }, + "cborHex": "bf0fbf43ddb0a54a5ccaed38f1392081c5e5ff1b183975c9a3e7ce4d9f1b45aa63460765803b4475fcabd945f3ba15f36b1b26066e4cbe8fe251ffff", + "cborBytes": [ + 191, 15, 191, 67, 221, 176, 165, 74, 92, 202, 237, 56, 241, 57, 32, 129, 197, 229, 255, 27, 24, 57, 117, 201, 163, + 231, 206, 77, 159, 27, 69, 170, 99, 70, 7, 101, 128, 59, 68, 117, 252, 171, 217, 69, 243, 186, 21, 243, 107, 27, + 38, 6, 110, 76, 190, 143, 226, 81, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1326, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "74088077129937106" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0dbf02111b010736b6af6bf0d20cffff", + "cborBytes": [191, 13, 191, 2, 17, 27, 1, 7, 54, 182, 175, 107, 240, 210, 12, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1327, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac3bd3b45e2f90e619d044" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14305479269691256291" + } + } + } + ] + }, + "cborHex": "bf4bac3bd3b45e2f90e619d0441bc687459a23a96de3ff", + "cborBytes": [ + 191, 75, 172, 59, 211, 180, 94, 47, 144, 230, 25, 208, 68, 27, 198, 135, 69, 154, 35, 169, 109, 227, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1328, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4557735014942284887" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "38d5a0b52cfc17" + }, + { + "_tag": "ByteArray", + "bytearray": "eee580e4c9ccbc87f6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14858143762136101280" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8605222310816329618" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11521220339409392505" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3f4053d921fe9c579f4738d5a0b52cfc1749eee580e4c9ccbc87f6ff1bce32bb07a3cef1a0bf1b776be41969792f921b9fe398db4d809379ffff", + "cborBytes": [ + 191, 27, 63, 64, 83, 217, 33, 254, 156, 87, 159, 71, 56, 213, 160, 181, 44, 252, 23, 73, 238, 229, 128, 228, 201, + 204, 188, 135, 246, 255, 27, 206, 50, 187, 7, 163, 206, 241, 160, 191, 27, 119, 107, 228, 25, 105, 121, 47, 146, + 27, 159, 227, 152, 219, 77, 128, 147, 121, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1329, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1117766560545486943" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff7847483fe265064ac8ad" + }, + { + "_tag": "ByteArray", + "bytearray": "42" + }, + { + "_tag": "ByteArray", + "bytearray": "b793f243ff23974f" + } + ] + } + } + ] + }, + "cborHex": "bf1b0f831ac3bf1fb85fd87b9f031bfffffffffffffff6ff1bfffffffffffffff69f4bff7847483fe265064ac8ad414248b793f243ff23974fffff", + "cborBytes": [ + 191, 27, 15, 131, 26, 195, 191, 31, 184, 95, 216, 123, 159, 3, 27, 255, 255, 255, 255, 255, 255, 255, 246, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 75, 255, 120, 71, 72, 63, 226, 101, 6, 74, 200, 173, 65, 66, 72, + 183, 147, 242, 67, 255, 35, 151, 79, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1330, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3656309785399717356" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10987818507884108506" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3303015216824598567" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9979392131154971875" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6191851887462388941" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9930012764397212173" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8331003013773838676" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "674695418811568261" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14501435225432302863" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4386630022895567625" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9356237847826596188" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5882412679603020874" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a2286d6949b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9108136665939169026" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2161407095882409245" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12707268405728394254" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "670bcf5440a8341fb146f7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17999578142601927848" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7356082345675601049" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16387958896867049420" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4900109010720147592" + } + } + } + ] + }, + "cborHex": "bf1b32bdd260bb88edecd8669f1b987c92b78ae51ada9f41041b2dd6aad6ee8a40271b8a7dec452bd20ce31b55ede07c5e0714cd1b89ce7dff6cfd920dffff1b739dab19fab2c954bf1b095cffe8a1d8d0851bc93f7281713aa50f1b3ce070c3b3c103091b81d808c049c5015c1b51a2872a6dfde44a463a2286d6949b1b7e669a0a6b03cf021b1dfedc4d5514651d1bb0594949fcfc3c0e4b670bcf5440a8341fb146f71bf9cb58f470ac5ca81b66160deb50843499ff1be36db9ca21767fcc1b4400af2ef0aa4888ff", + "cborBytes": [ + 191, 27, 50, 189, 210, 96, 187, 136, 237, 236, 216, 102, 159, 27, 152, 124, 146, 183, 138, 229, 26, 218, 159, 65, + 4, 27, 45, 214, 170, 214, 238, 138, 64, 39, 27, 138, 125, 236, 69, 43, 210, 12, 227, 27, 85, 237, 224, 124, 94, 7, + 20, 205, 27, 137, 206, 125, 255, 108, 253, 146, 13, 255, 255, 27, 115, 157, 171, 25, 250, 178, 201, 84, 191, 27, + 9, 92, 255, 232, 161, 216, 208, 133, 27, 201, 63, 114, 129, 113, 58, 165, 15, 27, 60, 224, 112, 195, 179, 193, 3, + 9, 27, 129, 216, 8, 192, 73, 197, 1, 92, 27, 81, 162, 135, 42, 109, 253, 228, 74, 70, 58, 34, 134, 214, 148, 155, + 27, 126, 102, 154, 10, 107, 3, 207, 2, 27, 29, 254, 220, 77, 85, 20, 101, 29, 27, 176, 89, 73, 73, 252, 252, 60, + 14, 75, 103, 11, 207, 84, 64, 168, 52, 31, 177, 70, 247, 27, 249, 203, 88, 244, 112, 172, 92, 168, 27, 102, 22, + 13, 235, 80, 132, 52, 153, 255, 27, 227, 109, 185, 202, 33, 118, 127, 204, 27, 68, 0, 175, 46, 240, 170, 72, 136, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1331, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1dcecb0704fc07fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae74" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f87507" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8997102594528583239" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4840052719526155290" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf481dcecb0704fc07fe42ae7443f87507bf1b7cdc21241a9f1e471b432b524e0185141a1bfffffffffffffffe0effff", + "cborBytes": [ + 191, 72, 29, 206, 203, 7, 4, 252, 7, 254, 66, 174, 116, 67, 248, 117, 7, 191, 27, 124, 220, 33, 36, 26, 159, 30, + 71, 27, 67, 43, 82, 78, 1, 133, 20, 26, 27, 255, 255, 255, 255, 255, 255, 255, 254, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1332, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2160d77660609d4d757de9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "782823507012326748" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12354458705800036542" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd0195f3a22d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15553730269053849320" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15997486982862935709" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79b08bfd52" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d088" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "248611bdcb64f65a828177ac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e939e8a20bc57f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7404306773091561" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1982766881088432852" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a5" + }, + { + "_tag": "ByteArray", + "bytearray": "ab0acac725f67b31" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6486301784393658998" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6056907152748711880" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f57f60" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7e" + }, + { + "_tag": "ByteArray", + "bytearray": "0d26" + }, + { + "_tag": "ByteArray", + "bytearray": "36b90b4d2b428f" + }, + { + "_tag": "ByteArray", + "bytearray": "4918c6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9090071325952995932" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b2160d77660609d4d757de9bf1b0add25d5014b955c41871bab73dabc777180be46fd0195f3a22d1bd7d9f345c3320ee81bde027da7107b169dff4579b08bfd528042d0884c248611bdcb64f65a828177ac47e939e8a20bc57fd8669f1b001a4e2d8304a4e99f1b1b8433f923af6ad441a548ab0acac725f67b311b5a03f91b64c432761b540e74f6ed1c0fc8ffff43f57f609f417e420d264736b90b4d2b428f434918c61b7e266bb5ae64725cffff", + "cborBytes": [ + 191, 75, 33, 96, 215, 118, 96, 96, 157, 77, 117, 125, 233, 191, 27, 10, 221, 37, 213, 1, 75, 149, 92, 65, 135, 27, + 171, 115, 218, 188, 119, 113, 128, 190, 70, 253, 1, 149, 243, 162, 45, 27, 215, 217, 243, 69, 195, 50, 14, 232, + 27, 222, 2, 125, 167, 16, 123, 22, 157, 255, 69, 121, 176, 139, 253, 82, 128, 66, 208, 136, 76, 36, 134, 17, 189, + 203, 100, 246, 90, 130, 129, 119, 172, 71, 233, 57, 232, 162, 11, 197, 127, 216, 102, 159, 27, 0, 26, 78, 45, 131, + 4, 164, 233, 159, 27, 27, 132, 51, 249, 35, 175, 106, 212, 65, 165, 72, 171, 10, 202, 199, 37, 246, 123, 49, 27, + 90, 3, 249, 27, 100, 196, 50, 118, 27, 84, 14, 116, 246, 237, 28, 15, 200, 255, 255, 67, 245, 127, 96, 159, 65, + 126, 66, 13, 38, 71, 54, 185, 11, 77, 43, 66, 143, 67, 73, 24, 198, 27, 126, 38, 107, 181, 174, 100, 114, 92, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1333, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6535204491584567413" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7459785824312098373" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5756036521307727942" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14001326456444261367" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39f1a09a196620" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18034616862057350810" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f8751545cd42e0341" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12388158459970070598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "504196958869656150" + } + }, + { + "_tag": "ByteArray", + "bytearray": "59a4" + }, + { + "_tag": "ByteArray", + "bytearray": "27a8" + }, + { + "_tag": "ByteArray", + "bytearray": "0c243bac34d8" + } + ] + } + } + ] + }, + "cborHex": "bf1b5ab1b5dc2f6f7875bf1b67867baefe9dfe451b4fe18cb826b8e846ff1bc24eb43adca393f74739f1a09a1966201bfa47d47c0b32c69aa0491f8751545cd42e0341d8669f1babeb947bebc428469f1b06ff4476764212564259a44227a8460c243bac34d8ffffff", + "cborBytes": [ + 191, 27, 90, 177, 181, 220, 47, 111, 120, 117, 191, 27, 103, 134, 123, 174, 254, 157, 254, 69, 27, 79, 225, 140, + 184, 38, 184, 232, 70, 255, 27, 194, 78, 180, 58, 220, 163, 147, 247, 71, 57, 241, 160, 154, 25, 102, 32, 27, 250, + 71, 212, 124, 11, 50, 198, 154, 160, 73, 31, 135, 81, 84, 92, 212, 46, 3, 65, 216, 102, 159, 27, 171, 235, 148, + 123, 235, 196, 40, 70, 159, 27, 6, 255, 68, 118, 118, 66, 18, 86, 66, 89, 164, 66, 39, 168, 70, 12, 36, 59, 172, + 52, 216, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1334, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8766235586889202185" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90d91c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16375201885083372671" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3567022299634255329" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13464251234634508918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "766a073076d117aa6936" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17016617747053339390" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13283509507975985626" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9466549063378460526" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1cb4284bbc1d0e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13067247376516093691" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17542965535382077566" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c17ee7a056ec551d64" + } + } + ] + }, + "cborHex": "bf1b79a7ecd21deb3a094390d91c1be340675addb38c7fbf1b31809be1f398c5e141fa1bbadaa12947012a764a766a073076d117aa6936ff1bec272baedbb8e2febf1bb8588184b96eb9da1b835ff0379b7adf6e48a1cb4284bbc1d0e01bb5583041756596fbff1bf3752235335e807e49c17ee7a056ec551d64ff", + "cborBytes": [ + 191, 27, 121, 167, 236, 210, 29, 235, 58, 9, 67, 144, 217, 28, 27, 227, 64, 103, 90, 221, 179, 140, 127, 191, 27, + 49, 128, 155, 225, 243, 152, 197, 225, 65, 250, 27, 186, 218, 161, 41, 71, 1, 42, 118, 74, 118, 106, 7, 48, 118, + 209, 23, 170, 105, 54, 255, 27, 236, 39, 43, 174, 219, 184, 226, 254, 191, 27, 184, 88, 129, 132, 185, 110, 185, + 218, 27, 131, 95, 240, 55, 155, 122, 223, 110, 72, 161, 203, 66, 132, 187, 193, 208, 224, 27, 181, 88, 48, 65, + 117, 101, 150, 251, 255, 27, 243, 117, 34, 53, 51, 94, 128, 126, 73, 193, 126, 231, 160, 86, 236, 85, 29, 100, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1335, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9331513889220960885" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c84a29e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2999381035670960357" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11444694489520950795" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "735802082038865026" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2325688098244120011" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b8180327117a3a27541bc441c84a29ed905069f1b299ff1291935f8e51b9ed3b9006ac44e0b1b0a3618185ceb5c821b20468100da31cdcbffff", + "cborBytes": [ + 191, 27, 129, 128, 50, 113, 23, 163, 162, 117, 65, 188, 68, 28, 132, 162, 158, 217, 5, 6, 159, 27, 41, 159, 241, + 41, 25, 53, 248, 229, 27, 158, 211, 185, 0, 106, 196, 78, 11, 27, 10, 54, 24, 24, 92, 235, 92, 130, 27, 32, 70, + 129, 0, 218, 49, 205, 203, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1336, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10444443941901704480" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17054903332658874635" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6ad1548d3ddd" + } + ] + } + } + ] + }, + "cborHex": "bf1b90f21e6d99881d20d8669f1becaf303865c2090b9f466ad1548d3dddffffff", + "cborBytes": [ + 191, 27, 144, 242, 30, 109, 153, 136, 29, 32, 216, 102, 159, 27, 236, 175, 48, 56, 101, 194, 9, 11, 159, 70, 106, + 209, 84, 141, 61, 221, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1337, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9636281008066964168" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b1f73113a65af2751f" + }, + { + "_tag": "ByteArray", + "bytearray": "a9baae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15893350870719287493" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13232669267377801568" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c42a46c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba82" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "613b2a550d610c4b224c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ac97db6078470" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbbd48" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16542988953831884771" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b85baf28589acaac89f49b1f73113a65af2751f43a9baae1bdc9086690bde50c5ff1bb7a3e296c8484960bf441c42a46c42ba824a613b2a550d610c4b224c472ac97db607847043dbbd481be59480ce145c47e3ffff", + "cborBytes": [ + 191, 27, 133, 186, 242, 133, 137, 172, 170, 200, 159, 73, 177, 247, 49, 19, 166, 90, 242, 117, 31, 67, 169, 186, + 174, 27, 220, 144, 134, 105, 11, 222, 80, 197, 255, 27, 183, 163, 226, 150, 200, 72, 73, 96, 191, 68, 28, 66, 164, + 108, 66, 186, 130, 74, 97, 59, 42, 85, 13, 97, 12, 75, 34, 76, 71, 42, 201, 125, 182, 7, 132, 112, 67, 219, 189, + 72, 27, 229, 148, 128, 206, 20, 92, 71, 227, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1338, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6002" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4275077131794113104" + } + } + } + ] + }, + "cborHex": "bf4260021b3b54200043fbe250ff", + "cborBytes": [191, 66, 96, 2, 27, 59, 84, 32, 0, 67, 251, 226, 80, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1339, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0bf5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12784326273154529222" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e53816" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10521326676945475267" + } + } + } + ] + }, + "cborHex": "bf420bf51bb16b0d02dc11b7c643e538161b920342de492d16c3ff", + "cborBytes": [ + 191, 66, 11, 245, 27, 177, 107, 13, 2, 220, 17, 183, 198, 67, 229, 56, 22, 27, 146, 3, 66, 222, 73, 45, 22, 195, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1340, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "925701240306212829" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5007ae7af" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3486340771497765519" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d2b49f5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14768114357101824312" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc" + } + } + ] + }, + "cborHex": "bf1b0cd8c05f9c971fdd45c5007ae7af1b3061f875d315ea8f449d2b49f51bccf2e1c35166893841bcff", + "cborBytes": [ + 191, 27, 12, 216, 192, 95, 156, 151, 31, 221, 69, 197, 0, 122, 231, 175, 27, 48, 97, 248, 117, 211, 21, 234, 143, + 68, 157, 43, 73, 245, 27, 204, 242, 225, 195, 81, 102, 137, 56, 65, 188, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1341, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2492181045665847177" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b22960174f6dfd789a0ff", + "cborBytes": [191, 27, 34, 150, 1, 116, 246, 223, 215, 137, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1342, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b53b01279770d4f4cafc4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ef70bd98b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4b5b53b01279770d4f4cafc4d8669f1bfffffffffffffffb80ff457ef70bd98bbf1bfffffffffffffff414ffff", + "cborBytes": [ + 191, 75, 91, 83, 176, 18, 121, 119, 13, 79, 76, 175, 196, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 251, 128, 255, 69, 126, 247, 11, 217, 139, 191, 27, 255, 255, 255, 255, 255, 255, 255, 244, 20, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1343, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e5571265c2d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8617110456331559878" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "729045618542741943" + } + }, + { + "_tag": "ByteArray", + "bytearray": "861a15ced5e0b07180cfe2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14521105160562861624" + } + }, + { + "_tag": "ByteArray", + "bytearray": "974323886af3461d" + }, + { + "_tag": "ByteArray", + "bytearray": "369ac39f7c116a" + } + ] + } + } + ] + }, + "cborHex": "bf460e5571265c2dd8669f1b7796204dfbf263c69f1b0a1e17209e4b89b74b861a15ced5e0b07180cfe21bc98554351970e63848974323886af3461d47369ac39f7c116affffff", + "cborBytes": [ + 191, 70, 14, 85, 113, 38, 92, 45, 216, 102, 159, 27, 119, 150, 32, 77, 251, 242, 99, 198, 159, 27, 10, 30, 23, 32, + 158, 75, 137, 183, 75, 134, 26, 21, 206, 213, 224, 176, 113, 128, 207, 226, 27, 201, 133, 84, 53, 25, 112, 230, + 56, 72, 151, 67, 35, 136, 106, 243, 70, 29, 71, 54, 154, 195, 159, 124, 17, 106, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1344, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12326656348975567600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a5758c23f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16267736523155475072" + } + } + } + ] + }, + "cborHex": "bf1bab1114a3d50092f0450a5758c23f1bfffffffffffffff81be1c29c2d7a548a80ff", + "cborBytes": [ + 191, 27, 171, 17, 20, 163, 213, 0, 146, 240, 69, 10, 87, 88, 194, 63, 27, 255, 255, 255, 255, 255, 255, 255, 248, + 27, 225, 194, 156, 45, 122, 84, 138, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1345, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27bbe9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5713586881479781798" + } + } + } + ] + }, + "cborHex": "bf4327bbe91b4f4abcff2fef2da6ff", + "cborBytes": [191, 67, 39, 187, 233, 27, 79, 74, 188, 255, 47, 239, 45, 166, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1346, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "521c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7961927155883996575" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea96873c09" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32" + } + } + ] + }, + "cborHex": "bf42521c9f1b6e7e72906e00759fff45ea96873c094132ff", + "cborBytes": [ + 191, 66, 82, 28, 159, 27, 110, 126, 114, 144, 110, 0, 117, 159, 255, 69, 234, 150, 135, 60, 9, 65, 50, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1347, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9cfa9" + } + } + ] + }, + "cborHex": "bf0643d9cfa9ff", + "cborBytes": [191, 6, 67, 217, 207, 169, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1348, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18086431058260229326" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "808433656819064803" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13472801613040781469" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1706814dac22b642868c27a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "68f809c766071bc6c523" + }, + { + "_tag": "ByteArray", + "bytearray": "7b77259a5fb675c41b8e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4630687472382203232" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f852a48f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "553956bd9dd60cd2ff" + } + ] + } + } + ] + }, + "cborHex": "bf1bfaffe938b2317cce9f1b0b382220ab2b9fe31bbaf901af629b089dff4cc1706814dac22b642868c27a9f4a68f809c766071bc6c5234a7b77259a5fb675c41b8e1b404381b8c1315560ff44f852a48f9f49553956bd9dd60cd2ffffff", + "cborBytes": [ + 191, 27, 250, 255, 233, 56, 178, 49, 124, 206, 159, 27, 11, 56, 34, 32, 171, 43, 159, 227, 27, 186, 249, 1, 175, + 98, 155, 8, 157, 255, 76, 193, 112, 104, 20, 218, 194, 43, 100, 40, 104, 194, 122, 159, 74, 104, 248, 9, 199, 102, + 7, 27, 198, 197, 35, 74, 123, 119, 37, 154, 95, 182, 117, 196, 27, 142, 27, 64, 67, 129, 184, 193, 49, 85, 96, + 255, 68, 248, 82, 164, 143, 159, 73, 85, 57, 86, 189, 157, 214, 12, 210, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1349, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01f905060654ebfd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0606fdd1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f80621f902" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7299339956065803953" + } + } + } + ] + }, + "cborHex": "bf4801f905060654ebfd440606fdd145f80621f9021b654c7704381e1eb1ff", + "cborBytes": [ + 191, 72, 1, 249, 5, 6, 6, 84, 235, 253, 68, 6, 6, 253, 209, 69, 248, 6, 33, 249, 2, 27, 101, 76, 119, 4, 56, 30, + 30, 177, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1350, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "250662978334184942" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9a206022500990703" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcc8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6114cc9d749737" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b037a88a695f355eebf0049f9a20602250099070342fcc8476114cc9d749737ffff", + "cborBytes": [ + 191, 27, 3, 122, 136, 166, 149, 243, 85, 238, 191, 0, 73, 249, 162, 6, 2, 37, 0, 153, 7, 3, 66, 252, 200, 71, 97, + 20, 204, 157, 116, 151, 55, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1351, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01fdf90482" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49ab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3366f4176b69aeb408" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "67" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51b628" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5b00febcc30a8929ed72" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d20b1c51" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2927" + } + ] + } + } + ] + }, + "cborHex": "bf4501fdf904824249ab493366f4176b69aeb4089f4167ff4351b628d8669f1bfffffffffffffff89f4a5b00febcc30a8929ed72ffff44d20b1c519f422927ffff", + "cborBytes": [ + 191, 69, 1, 253, 249, 4, 130, 66, 73, 171, 73, 51, 102, 244, 23, 107, 105, 174, 180, 8, 159, 65, 103, 255, 67, 81, + 182, 40, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 74, 91, 0, 254, 188, 195, 10, 137, 41, + 237, 114, 255, 255, 68, 210, 11, 28, 81, 159, 66, 41, 39, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1352, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c5cbc4107" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "775f3c8f71c81fefd554d4" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51f6695194" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17888781385137635159" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee065e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2742299fcb3578a23e4e29" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17617514293574310926" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a79162" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4738433712353173020" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf450c5cbc41079f4b775f3c8f71c81fefd554d4ff4551f66951941bf841b7e415bfbf5743ee065ebf4b2742299fcb3578a23e4e291bf47dfbe88ddd1c0e43a791621b41c24c5b288bde1cffff", + "cborBytes": [ + 191, 69, 12, 92, 188, 65, 7, 159, 75, 119, 95, 60, 143, 113, 200, 31, 239, 213, 84, 212, 255, 69, 81, 246, 105, + 81, 148, 27, 248, 65, 183, 228, 21, 191, 191, 87, 67, 238, 6, 94, 191, 75, 39, 66, 41, 159, 203, 53, 120, 162, 62, + 78, 41, 27, 244, 125, 251, 232, 141, 221, 28, 14, 67, 167, 145, 98, 27, 65, 194, 76, 91, 40, 139, 222, 28, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1353, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13103366683629057959" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56e79a73" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13851541692228486975" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "88c439" + }, + { + "_tag": "ByteArray", + "bytearray": "f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15847346554925833831" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14623107085587154809" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10743382947635065698" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d03660d100d13c" + }, + { + "_tag": "ByteArray", + "bytearray": "f2f50d751d2a0f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16712682543660771912" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b02494ac33f87014460f94" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3519264855956481873" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15239107276419855006" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15334335586892157438" + } + } + } + ] + }, + "cborHex": "bf1bb5d88292fb65f7a74456e79a731bc03a8fc7cccac73f9f4388c43941f91bdbed15ba96dd5e67ff1bcaefb66af4eb8779d8669f1b951829deb7c6f3629f47d03660d100d13c47f2f50d751d2a0f1be7ef6039d2c5aa484bb02494ac33f87014460f941b30d6f0bd99cd6751ffff1bd37c2f53e113729e1bd4ce80f8b35691feff", + "cborBytes": [ + 191, 27, 181, 216, 130, 146, 251, 101, 247, 167, 68, 86, 231, 154, 115, 27, 192, 58, 143, 199, 204, 202, 199, 63, + 159, 67, 136, 196, 57, 65, 249, 27, 219, 237, 21, 186, 150, 221, 94, 103, 255, 27, 202, 239, 182, 106, 244, 235, + 135, 121, 216, 102, 159, 27, 149, 24, 41, 222, 183, 198, 243, 98, 159, 71, 208, 54, 96, 209, 0, 209, 60, 71, 242, + 245, 13, 117, 29, 42, 15, 27, 231, 239, 96, 57, 210, 197, 170, 72, 75, 176, 36, 148, 172, 51, 248, 112, 20, 70, + 15, 148, 27, 48, 214, 240, 189, 153, 205, 103, 81, 255, 255, 27, 211, 124, 47, 83, 225, 19, 114, 158, 27, 212, + 206, 128, 248, 179, 86, 145, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1354, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9575455314966414638" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a43b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7332053921203075164" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0c5ed51dc29" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2648026190393858151" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d9d03b89272d8ae97b73e970" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7930185065100849773" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b84e2d9e04333052ea042a43bbf41be1b65c0b031c751b85cff46f0c5ed51dc29d8669f1b24bfadca525b58679f4cd9d03b89272d8ae97b73e9701b6e0dad4d0071b26dffffff", + "cborBytes": [ + 191, 27, 132, 226, 217, 224, 67, 51, 5, 46, 160, 66, 164, 59, 191, 65, 190, 27, 101, 192, 176, 49, 199, 81, 184, + 92, 255, 70, 240, 197, 237, 81, 220, 41, 216, 102, 159, 27, 36, 191, 173, 202, 82, 91, 88, 103, 159, 76, 217, 208, + 59, 137, 39, 45, 138, 233, 123, 115, 233, 112, 27, 110, 13, 173, 77, 0, 113, 178, 109, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1355, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + } + ] + }, + "cborHex": "bf034106ff", + "cborBytes": [191, 3, 65, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1356, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6626629330345272351" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8057271940973567188" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14190495066782020975" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16335213049879145269" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25a193" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1975634305277642288" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0605df4031ad5e1b58b73e85" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1278988758330648206" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5bf684443d6a241f1b6fd12e241c739cd41bc4eec4142a79b56fd8669f1be2b255b8a05f2b3580ff4325a1931b1b6adceeec26463041709f4c0605df4031ad5e1b58b73e851b11bfe17fd404268effff", + "cborBytes": [ + 191, 27, 91, 246, 132, 68, 61, 106, 36, 31, 27, 111, 209, 46, 36, 28, 115, 156, 212, 27, 196, 238, 196, 20, 42, + 121, 181, 111, 216, 102, 159, 27, 226, 178, 85, 184, 160, 95, 43, 53, 128, 255, 67, 37, 161, 147, 27, 27, 106, + 220, 238, 236, 38, 70, 48, 65, 112, 159, 76, 6, 5, 223, 64, 49, 173, 94, 27, 88, 183, 62, 133, 27, 17, 191, 225, + 127, 212, 4, 38, 142, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1357, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "61c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4749164420218409229" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62570896f716f4f5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15913323357768227060" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14739468308218003512" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17022555119763121207" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9045916508768046572" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7abd1929" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "389492537037988348" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "719b7d94" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c94367207ac37fe35d82f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5592461306007670859" + } + } + } + ] + }, + "cborHex": "bf4261c71b41e86be0c70ad10d4862570896f716f4f5d8669f1bdcd77b480fb398f49f1bcc8d1c55517640381bec3c43b12afce4371b7d898d232cf60dec447abd19291b0567c16618d0a1fcffff44719b7d94a04bc94367207ac37fe35d82f41b4d9c69ed7cb4504bff", + "cborBytes": [ + 191, 66, 97, 199, 27, 65, 232, 107, 224, 199, 10, 209, 13, 72, 98, 87, 8, 150, 247, 22, 244, 245, 216, 102, 159, + 27, 220, 215, 123, 72, 15, 179, 152, 244, 159, 27, 204, 141, 28, 85, 81, 118, 64, 56, 27, 236, 60, 67, 177, 42, + 252, 228, 55, 27, 125, 137, 141, 35, 44, 246, 13, 236, 68, 122, 189, 25, 41, 27, 5, 103, 193, 102, 24, 208, 161, + 252, 255, 255, 68, 113, 155, 125, 148, 160, 75, 201, 67, 103, 32, 122, 195, 127, 227, 93, 130, 244, 27, 77, 156, + 105, 237, 124, 180, 80, 75, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1358, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0601" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5d4145d3e" + } + } + ] + }, + "cborHex": "bf42060145e5d4145d3eff", + "cborBytes": [191, 66, 6, 1, 69, 229, 212, 20, 93, 62, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1359, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7682183542159755140" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4760754560592877751" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b4390fe20b5120fc1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5962526084086330678" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13770661675013588651" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8963945183737233345" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2597393732966265921" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10969659711485626692" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2570600226487337108" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13264997658753457361" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c91e72" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6a9c993ac9c8c784bf1b4211990c9ef598b7490b4390fe20b5120fc11b52bf25e1f5f775361bbf1b37d5554546ab1b7c6654a6cebb3fc11b240bcbd6ab47b4411b983c0f634a03c9441b23ac9b494f5100941bb816bd16f4635cd143c91e72ffff", + "cborBytes": [ + 191, 27, 106, 156, 153, 58, 201, 200, 199, 132, 191, 27, 66, 17, 153, 12, 158, 245, 152, 183, 73, 11, 67, 144, + 254, 32, 181, 18, 15, 193, 27, 82, 191, 37, 225, 245, 247, 117, 54, 27, 191, 27, 55, 213, 85, 69, 70, 171, 27, + 124, 102, 84, 166, 206, 187, 63, 193, 27, 36, 11, 203, 214, 171, 71, 180, 65, 27, 152, 60, 15, 99, 74, 3, 201, 68, + 27, 35, 172, 155, 73, 79, 81, 0, 148, 27, 184, 22, 189, 22, 244, 99, 92, 209, 67, 201, 30, 114, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1360, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17747848230281067979" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa26d678" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6479503611694625734" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13288103791031715054" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8438588515601204624" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f31b7534735fa75" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a45446fe5c4114e1a3850e53" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4870052628282911273" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10540169574621444890" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c11a43ed2625cfa0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16990453392472150989" + } + } + } + ] + }, + "cborHex": "bf1bf64d05eeed72bdcb44fa26d6784192bf1b59ebd23477eb33c61bb868d3fe9af784ee1b751be38b9e19c590487f31b7534735fa75ff4ca45446fe5c4114e1a3850e53d8669f1b4395e7101242aa299f1b9246346247b0fb1affff48c11a43ed2625cfa01bebca3757572213cdff", + "cborBytes": [ + 191, 27, 246, 77, 5, 238, 237, 114, 189, 203, 68, 250, 38, 214, 120, 65, 146, 191, 27, 89, 235, 210, 52, 119, 235, + 51, 198, 27, 184, 104, 211, 254, 154, 247, 132, 238, 27, 117, 27, 227, 139, 158, 25, 197, 144, 72, 127, 49, 183, + 83, 71, 53, 250, 117, 255, 76, 164, 84, 70, 254, 92, 65, 20, 225, 163, 133, 14, 83, 216, 102, 159, 27, 67, 149, + 231, 16, 18, 66, 170, 41, 159, 27, 146, 70, 52, 98, 71, 176, 251, 26, 255, 255, 72, 193, 26, 67, 237, 38, 37, 207, + 160, 27, 235, 202, 55, 87, 87, 34, 19, 205, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1361, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1839787703777145125" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3637340536945073586" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3330703423496604923" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11058849948119318493" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5560768837731919290" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + } + } + ] + }, + "cborHex": "bf051b19883d2b41c4b125131bfffffffffffffffd1b327a6df267bd5db21b2e39091de9b14cfb1b9978ed6f7dffbfddd8669f1b4d2bd1cbb312a5ba9f020fffffff", + "cborBytes": [ + 191, 5, 27, 25, 136, 61, 43, 65, 196, 177, 37, 19, 27, 255, 255, 255, 255, 255, 255, 255, 253, 27, 50, 122, 109, + 242, 103, 189, 93, 178, 27, 46, 57, 9, 29, 233, 177, 76, 251, 27, 153, 120, 237, 111, 125, 255, 191, 221, 216, + 102, 159, 27, 77, 43, 209, 203, 179, 18, 165, 186, 159, 2, 15, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1362, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14042233934245114019" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b46a9dd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9159641370816522183" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60bf2e99d9d92755542ad7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11876109175724896967" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "defcfc9384cbbf7dfb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "442aa9b809beafc36d9ec951" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + } + ] + }, + "cborHex": "bf110b1bc2e0095d3f9db0a3bf440b46a9dd1b7f1d954c017da7c74b60bf2e99d9d92755542ad71ba4d06a5f7cd6f2c749defcfc9384cbbf7dfb4c442aa9b809beafc36d9ec951ff1bfffffffffffffff404ff", + "cborBytes": [ + 191, 17, 11, 27, 194, 224, 9, 93, 63, 157, 176, 163, 191, 68, 11, 70, 169, 221, 27, 127, 29, 149, 76, 1, 125, 167, + 199, 75, 96, 191, 46, 153, 217, 217, 39, 85, 84, 42, 215, 27, 164, 208, 106, 95, 124, 214, 242, 199, 73, 222, 252, + 252, 147, 132, 203, 191, 125, 251, 76, 68, 42, 169, 184, 9, 190, 175, 195, 109, 158, 201, 81, 255, 27, 255, 255, + 255, 255, 255, 255, 255, 244, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1363, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f290" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4533302156330983846" + } + } + } + ] + }, + "cborHex": "bf42f290d8669f1bfffffffffffffff680ff41fd1b3ee9864aef9ee1a6ff", + "cborBytes": [ + 191, 66, 242, 144, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 128, 255, 65, 253, 27, 62, 233, 134, + 74, 239, 158, 225, 166, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1364, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33a3b5caf9a8b594475e3f6d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12089933949882779498" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0007a6c4d423fa87860191e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13210250913172515554" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13577047822369324783" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17886706980047275287" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5926196529352550585" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "461374d6c735c895" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12728719629894255867" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "33e447b05a23" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11472989996278497559" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60f3a2180c8e1905" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b33c5cf5899f40" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "50a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7801733618967534092" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9434" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a59b903bf" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11229887905716396201" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3859328538226944881" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5045858257732818927" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf5e32b0ba2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ac66f23b4eb3f3e96e4" + } + } + ] + }, + "cborHex": "bf4c33a3b5caf9a8b594475e3f6dbf1ba7c812df48b2c76a4c0007a6c4d423fa87860191e91bb7543d36f16d6ae21bbc6b5d0f66d07eef1bf83a593b0337c5171b523e1458593628b9ff48461374d6c735c895d8669f1bb0a57f10516384fb9f4633e447b05a231b9f383f9d77ca4117ffff4860f3a2180c8e190547b33c5cf5899f404183bf4250a91b6c4553641ec85a0c429434454a59b903bfff4190d8669f1b9bd8938d3fae60a99f1b358f16dba08b6b711b46067d59ef22d7efffff46cf5e32b0ba2d4a8ac66f23b4eb3f3e96e4ff", + "cborBytes": [ + 191, 76, 51, 163, 181, 202, 249, 168, 181, 148, 71, 94, 63, 109, 191, 27, 167, 200, 18, 223, 72, 178, 199, 106, + 76, 0, 7, 166, 196, 212, 35, 250, 135, 134, 1, 145, 233, 27, 183, 84, 61, 54, 241, 109, 106, 226, 27, 188, 107, + 93, 15, 102, 208, 126, 239, 27, 248, 58, 89, 59, 3, 55, 197, 23, 27, 82, 62, 20, 88, 89, 54, 40, 185, 255, 72, 70, + 19, 116, 214, 199, 53, 200, 149, 216, 102, 159, 27, 176, 165, 127, 16, 81, 99, 132, 251, 159, 70, 51, 228, 71, + 176, 90, 35, 27, 159, 56, 63, 157, 119, 202, 65, 23, 255, 255, 72, 96, 243, 162, 24, 12, 142, 25, 5, 71, 179, 60, + 92, 245, 137, 159, 64, 65, 131, 191, 66, 80, 169, 27, 108, 69, 83, 100, 30, 200, 90, 12, 66, 148, 52, 69, 74, 89, + 185, 3, 191, 255, 65, 144, 216, 102, 159, 27, 155, 216, 147, 141, 63, 174, 96, 169, 159, 27, 53, 143, 22, 219, + 160, 139, 107, 113, 27, 70, 6, 125, 89, 239, 34, 215, 239, 255, 255, 70, 207, 94, 50, 176, 186, 45, 74, 138, 198, + 111, 35, 180, 235, 63, 62, 150, 228, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1365, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7040867238852640705" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9875462713441237697" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7296490422059026829" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9555998428975222528" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3650b6dfa1b9" + }, + { + "_tag": "ByteArray", + "bytearray": "1a7f6b1c41a22d2df2746a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17724865334186995762" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12456372656617677510" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18153290844275672072" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16828445116879649538" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18387232080094372549" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17508798788479271347" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c88f3e5bd3" + } + } + ] + }, + "cborHex": "bf1b61b62f731a7f3fc11b890cb103f347bac11b6542576161de498dd8669f1b849db9f0f9424f009f463650b6dfa1b94b1a7f6b1c41a22d2df2746a1bf5fb5f1c6fd9f032ffff1bacddecef3b95e2c61bfbed71d7b56704081be98aa5ac41c4bb021bff2c922838b122c51bf2fbbfbb8718c1b345c88f3e5bd3ff", + "cborBytes": [ + 191, 27, 97, 182, 47, 115, 26, 127, 63, 193, 27, 137, 12, 177, 3, 243, 71, 186, 193, 27, 101, 66, 87, 97, 97, 222, + 73, 141, 216, 102, 159, 27, 132, 157, 185, 240, 249, 66, 79, 0, 159, 70, 54, 80, 182, 223, 161, 185, 75, 26, 127, + 107, 28, 65, 162, 45, 45, 242, 116, 106, 27, 245, 251, 95, 28, 111, 217, 240, 50, 255, 255, 27, 172, 221, 236, + 239, 59, 149, 226, 198, 27, 251, 237, 113, 215, 181, 103, 4, 8, 27, 233, 138, 165, 172, 65, 196, 187, 2, 27, 255, + 44, 146, 40, 56, 177, 34, 197, 27, 242, 251, 191, 187, 135, 24, 193, 179, 69, 200, 143, 62, 91, 211, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1366, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15ae8c6036c4357b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15114100445121988069" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48f510e6e33f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1534538137180579608" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7d26d7a1f8fef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5296928588916258187" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3840756970244136195" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7627311095240648694" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5b222" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70f3c5827bfb90d3f604bbb1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27f8b1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1360754152315174790" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ae13b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9881868603537557991" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e29afbfd642275cfb405" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10029317928599041978" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6c2152f1a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c801f7" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92fd6f6c4242cba8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6641061520116055488" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfe244" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "330eb3959202aee634" + } + } + ] + }, + "cborHex": "bf4815ae8c6036c4357b1bd1c01246e311c5e54648f510e6e33fbf1b154bc64e30f0271847f7d26d7a1f8fef1b4982787cbef6f58b1b354d1c1d8001dd031b69d9a707a736e7f643e5b222ff4c70f3c5827bfb90d3f604bbb1bf4327f8b11b12e25eb123623f86432ae13b1b8923732376f109e74ae29afbfd642275cfb4051b8b2f4b84b99a37ba45f6c2152f1a43c801f7ff4892fd6f6c4242cba8d8669f1b5c29ca4446087dc080ff43cfe24449330eb3959202aee634ff", + "cborBytes": [ + 191, 72, 21, 174, 140, 96, 54, 196, 53, 123, 27, 209, 192, 18, 70, 227, 17, 197, 229, 70, 72, 245, 16, 230, 227, + 63, 191, 27, 21, 75, 198, 78, 48, 240, 39, 24, 71, 247, 210, 109, 122, 31, 143, 239, 27, 73, 130, 120, 124, 190, + 246, 245, 139, 27, 53, 77, 28, 29, 128, 1, 221, 3, 27, 105, 217, 167, 7, 167, 54, 231, 246, 67, 229, 178, 34, 255, + 76, 112, 243, 197, 130, 123, 251, 144, 211, 246, 4, 187, 177, 191, 67, 39, 248, 177, 27, 18, 226, 94, 177, 35, 98, + 63, 134, 67, 42, 225, 59, 27, 137, 35, 115, 35, 118, 241, 9, 231, 74, 226, 154, 251, 253, 100, 34, 117, 207, 180, + 5, 27, 139, 47, 75, 132, 185, 154, 55, 186, 69, 246, 194, 21, 47, 26, 67, 200, 1, 247, 255, 72, 146, 253, 111, + 108, 66, 66, 203, 168, 216, 102, 159, 27, 92, 41, 202, 68, 70, 8, 125, 192, 128, 255, 67, 207, 226, 68, 73, 51, + 14, 179, 149, 146, 2, 174, 230, 52, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1367, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03fc65015e030003a406" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17395468005429660515" + } + } + } + ] + }, + "cborHex": "bf4a03fc65015e030003a4061bf1691dfc5d4ecb63ff", + "cborBytes": [191, 74, 3, 252, 101, 1, 94, 3, 0, 3, 164, 6, 27, 241, 105, 29, 252, 93, 78, 203, 99, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1368, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13159196954765333981" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d8aedcb46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6bf4" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bb69edbe8f23095ddbf455d8aedcb46426bf4ffff", + "cborBytes": [ + 191, 27, 182, 158, 219, 232, 242, 48, 149, 221, 191, 69, 93, 138, 237, 203, 70, 66, 107, 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1369, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3111865515707974663" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8820535468714333946" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9657213542720560097" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12908377682425340217" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4167889533398096588" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44fab2f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9963835157912251803" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6dc8165195caff1772" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94a75ed55264b0" + } + } + ] + }, + "cborHex": "bf1b2b2f9132fc8fc407d8669f1b7a68d6468d7396fa9f1b8605508d0df35be11bb323c51c538ae139ffff1b39d75172bd431acc4444fab2f81b8a46a74913e86d9b80496dc8165195caff17724794a75ed55264b0ff", + "cborBytes": [ + 191, 27, 43, 47, 145, 50, 252, 143, 196, 7, 216, 102, 159, 27, 122, 104, 214, 70, 141, 115, 150, 250, 159, 27, + 134, 5, 80, 141, 13, 243, 91, 225, 27, 179, 35, 197, 28, 83, 138, 225, 57, 255, 255, 27, 57, 215, 81, 114, 189, + 67, 26, 204, 68, 68, 250, 178, 248, 27, 138, 70, 167, 73, 19, 232, 109, 155, 128, 73, 109, 200, 22, 81, 149, 202, + 255, 23, 114, 71, 148, 167, 94, 213, 82, 100, 176, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1370, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2638133596360086990" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + }, + "cborHex": "bf1b249c8887491115ce10ff", + "cborBytes": [191, 27, 36, 156, 136, 135, 73, 17, 21, 206, 16, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1371, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4894982922393864179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14105766322071841928" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5329771775592750887" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7070550a61ab34860cb0ef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15498316344790373794" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c7900e8e3f1c713" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17566449548117944449" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18130465559890517039" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3689047150957596051" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1203095412520158036" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14755683938249522500" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17872330806299207989" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b43ee79087ee3c7f31bc3c1bfbbffc2ac881b49f727310a1bdf274b7070550a61ab34860cb0ef1bd715149a1bdc55a2482c7900e8e3f1c7131bf3c890cb006428819f1bfb9c5a5e0dba5c2f1b333220d6a07e8d931b10b240e7462a83541bccc6b85ce54cbd441bf807462d39bc2935ffff", + "cborBytes": [ + 191, 27, 67, 238, 121, 8, 126, 227, 199, 243, 27, 195, 193, 191, 187, 255, 194, 172, 136, 27, 73, 247, 39, 49, 10, + 27, 223, 39, 75, 112, 112, 85, 10, 97, 171, 52, 134, 12, 176, 239, 27, 215, 21, 20, 154, 27, 220, 85, 162, 72, 44, + 121, 0, 232, 227, 241, 199, 19, 27, 243, 200, 144, 203, 0, 100, 40, 129, 159, 27, 251, 156, 90, 94, 13, 186, 92, + 47, 27, 51, 50, 32, 214, 160, 126, 141, 147, 27, 16, 178, 64, 231, 70, 42, 131, 84, 27, 204, 198, 184, 92, 229, + 76, 189, 68, 27, 248, 7, 70, 45, 57, 188, 41, 53, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1372, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "451c49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7240098218285596144" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cc7e9ceaf67a9af6a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2383946287732985303" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d90ac819" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "624ed9535d3f210a97" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e67bb17a027c03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12646349916178213910" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2daf5250c5283" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac1c3563932dd19979ae6c2e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7a60753" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66a9" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa6915ec6d38545cbe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05faf900f0e9" + } + } + ] + }, + "cborHex": "bf41bcbf43451c491b6479fef847d9fdf0498cc7e9ceaf67a9af6a1b21157a849bef8dd744d90ac81949624ed9535d3f210a9747e67bb17a027c031baf80dc3edb17ec1647f2daf5250c52834cac1c3563932dd19979ae6c2e44f7a607534266a9ff49fa6915ec6d38545cbe4605faf900f0e9ff", + "cborBytes": [ + 191, 65, 188, 191, 67, 69, 28, 73, 27, 100, 121, 254, 248, 71, 217, 253, 240, 73, 140, 199, 233, 206, 175, 103, + 169, 175, 106, 27, 33, 21, 122, 132, 155, 239, 141, 215, 68, 217, 10, 200, 25, 73, 98, 78, 217, 83, 93, 63, 33, + 10, 151, 71, 230, 123, 177, 122, 2, 124, 3, 27, 175, 128, 220, 62, 219, 23, 236, 22, 71, 242, 218, 245, 37, 12, + 82, 131, 76, 172, 28, 53, 99, 147, 45, 209, 153, 121, 174, 108, 46, 68, 247, 166, 7, 83, 66, 102, 169, 255, 73, + 250, 105, 21, 236, 109, 56, 84, 92, 190, 70, 5, 250, 249, 0, 240, 233, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1373, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4370818207565473961" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a40dc04641b" + } + } + ] + }, + "cborHex": "bf1b3ca844008fbfe8a9465a40dc04641bff", + "cborBytes": [191, 27, 60, 168, 68, 0, 143, 191, 232, 169, 70, 90, 64, 220, 4, 100, 27, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1374, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "343654582825455177" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4624" + } + } + ] + }, + "cborHex": "bf1b04c4e805b6bf0e49424624ff", + "cborBytes": [191, 27, 4, 196, 232, 5, 182, 191, 14, 73, 66, 70, 36, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1375, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00ab3505" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "de" + }, + { + "_tag": "ByteArray", + "bytearray": "d65fb11c4708b5" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db7a81e1aba6d5ebdab204" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17769570256050971989" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc49040699e10504030203" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14981820687350664960" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed5fafb2744064fec257df0d" + }, + { + "_tag": "ByteArray", + "bytearray": "fb0431d92f2f82ca" + }, + { + "_tag": "ByteArray", + "bytearray": "ba531c2b31d20617" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4173927105561801497" + } + } + ] + } + } + ] + }, + "cborHex": "bf4400ab35059f41de47d65fb11c4708b5ff4bdb7a81e1aba6d5ebdab2041bf69a32002b43e5554bdc49040699e10504030203d8669f1bcfea1e89be228f009f4ced5fafb2744064fec257df0d48fb0431d92f2f82ca48ba531c2b31d206171b39ecc4968d62b319ffffff", + "cborBytes": [ + 191, 68, 0, 171, 53, 5, 159, 65, 222, 71, 214, 95, 177, 28, 71, 8, 181, 255, 75, 219, 122, 129, 225, 171, 166, + 213, 235, 218, 178, 4, 27, 246, 154, 50, 0, 43, 67, 229, 85, 75, 220, 73, 4, 6, 153, 225, 5, 4, 3, 2, 3, 216, 102, + 159, 27, 207, 234, 30, 137, 190, 34, 143, 0, 159, 76, 237, 95, 175, 178, 116, 64, 100, 254, 194, 87, 223, 13, 72, + 251, 4, 49, 217, 47, 47, 130, 202, 72, 186, 83, 28, 43, 49, 210, 6, 23, 27, 57, 236, 196, 150, 141, 98, 179, 25, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1376, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02c6019a94" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + }, + "cborHex": "bf0e044502c6019a9411ff", + "cborBytes": [191, 14, 4, 69, 2, 198, 1, 154, 148, 17, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1377, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5030941778473414661" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10916741299133899630" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eeaf036a1641" + }, + { + "_tag": "ByteArray", + "bytearray": "1ee0c09bb46fb0" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15025139936050436402" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1170d2" + } + } + ] + }, + "cborHex": "bf049f1b45d17ee4779470051b97800e5f47b6636e46eeaf036a1641471ee0c09bb46fb0ff1bd084052a4cd25932801bfffffffffffffff1431170d2ff", + "cborBytes": [ + 191, 4, 159, 27, 69, 209, 126, 228, 119, 148, 112, 5, 27, 151, 128, 14, 95, 71, 182, 99, 110, 70, 238, 175, 3, + 106, 22, 65, 71, 30, 224, 192, 155, 180, 111, 176, 255, 27, 208, 132, 5, 42, 76, 210, 89, 50, 128, 27, 255, 255, + 255, 255, 255, 255, 255, 241, 67, 17, 112, 210, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1378, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13498830770483477466" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "017a6c49fe28fb8e802c" + }, + { + "_tag": "ByteArray", + "bytearray": "4af0c245d846" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9960044729982547289" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8790384212866357622" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "981411588663444748" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1774548129687921143" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10279631581777142630" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2488443338216661132" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10618836759051302085" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + } + ] + }, + "cborHex": "bf04d8669f1bbb557b10ddc7bbda80ff0ad8669f1bfffffffffffffffd80ff13d8669f1bfffffffffffffffe9f4a017a6c49fe28fb8e802c464af0c245d8461b8a392fe94d9c7559ffff1b79fdb7de3f19d976bf1b0d9eaca3e0bc850c41b81b18a0761f3ae1e1f71b8ea89675b5b6a3661bfffffffffffffffd1b2288ba082217608cff1b935dafc5771cf4c5d9050a9f0909ff1bfffffffffffffff50cff", + "cborBytes": [ + 191, 4, 216, 102, 159, 27, 187, 85, 123, 16, 221, 199, 187, 218, 128, 255, 10, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 253, 128, 255, 19, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 74, 1, 122, + 108, 73, 254, 40, 251, 142, 128, 44, 70, 74, 240, 194, 69, 216, 70, 27, 138, 57, 47, 233, 77, 156, 117, 89, 255, + 255, 27, 121, 253, 183, 222, 63, 25, 217, 118, 191, 27, 13, 158, 172, 163, 224, 188, 133, 12, 65, 184, 27, 24, + 160, 118, 31, 58, 225, 225, 247, 27, 142, 168, 150, 117, 181, 182, 163, 102, 27, 255, 255, 255, 255, 255, 255, + 255, 253, 27, 34, 136, 186, 8, 34, 23, 96, 140, 255, 27, 147, 93, 175, 197, 119, 28, 244, 197, 217, 5, 10, 159, 9, + 9, 255, 27, 255, 255, 255, 255, 255, 255, 255, 245, 12, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1379, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0727" + }, + { + "_tag": "ByteArray", + "bytearray": "02" + } + ] + } + } + ] + }, + "cborHex": "bf0d801bfffffffffffffff29f4207274102ffff", + "cborBytes": [191, 13, 128, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 66, 7, 39, 65, 2, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1380, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e2913304ba7be" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6240363247284657149" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a524b3b0473f2613" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0202" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5d474e22a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "655121101866924867" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14c7062836f5479dc9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a017117158dc81d" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + }, + "cborHex": "bf479e2913304ba7bed8669f1b569a394f7fce1bfd9f1bfffffffffffffffd09ffff48a524b3b0473f261342020245d5d474e22abf1b0917752bd1a3fb431bfffffffffffffff74914c7062836f5479dc9487a017117158dc81dff42e4d50bff", + "cborBytes": [ + 191, 71, 158, 41, 19, 48, 75, 167, 190, 216, 102, 159, 27, 86, 154, 57, 79, 127, 206, 27, 253, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 253, 9, 255, 255, 72, 165, 36, 179, 176, 71, 63, 38, 19, 66, 2, 2, 69, 213, 212, 116, + 226, 42, 191, 27, 9, 23, 117, 43, 209, 163, 251, 67, 27, 255, 255, 255, 255, 255, 255, 255, 247, 73, 20, 199, 6, + 40, 54, 245, 71, 157, 201, 72, 122, 1, 113, 23, 21, 141, 200, 29, 255, 66, 228, 213, 11, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1381, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed65cb9831094c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7021555487233676444" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17258969702577526127" + } + }, + { + "_tag": "ByteArray", + "bytearray": "668421dafe199ae8db392750" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdaefc01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07dc4f372fffe8" + } + } + ] + }, + "cborHex": "bf47ed65cb9831094c1bfffffffffffffffd41fa9f1b617193838b42149c1bef842d80a75cd56f4c668421dafe199ae8db392750ff44fdaefc014707dc4f372fffe8ff", + "cborBytes": [ + 191, 71, 237, 101, 203, 152, 49, 9, 76, 27, 255, 255, 255, 255, 255, 255, 255, 253, 65, 250, 159, 27, 97, 113, + 147, 131, 139, 66, 20, 156, 27, 239, 132, 45, 128, 167, 92, 213, 111, 76, 102, 132, 33, 218, 254, 25, 154, 232, + 219, 57, 39, 80, 255, 68, 253, 174, 252, 1, 71, 7, 220, 79, 55, 47, 255, 232, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1382, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9dc6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4686022621919787782" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c34da4" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf429dc61b410818bf3cf93b0643c34da4a0ff", + "cborBytes": [191, 66, 157, 198, 27, 65, 8, 24, 191, 60, 249, 59, 6, 67, 195, 77, 164, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1383, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "83754237685636199" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c02" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "34b298d1cee9c01993" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2de33c2761fef8fd3e0607fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f640301" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0102fa" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86755d3327" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8185301370641037525" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7966552641676014693" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9508092327812343634" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8721076045699732980" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11996383403433892677" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a15466438f8aefe" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba160b8a39" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5230778975604468638" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa07" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd00f903" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c5a09b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bdd1e5e5f" + } + } + ] + } + } + ] + }, + "cborHex": "bf41001b01298e0911af9c67421c02bf4934b298d1cee9c019934c2de33c2761fef8fd3e0607fb443f640301430102faff4586755d3327bf1b7198083aa093b8d51b6e8ee16b438c74651b83f387989adf27521b79077c751319d5f41ba67bb72557119b45489a15466438f8aefeff45ba160b8a391b489775c3b37c6b9e42fa07a044fd00f903bf444c5a09b5453bdd1e5e5fffff", + "cborBytes": [ + 191, 65, 0, 27, 1, 41, 142, 9, 17, 175, 156, 103, 66, 28, 2, 191, 73, 52, 178, 152, 209, 206, 233, 192, 25, 147, + 76, 45, 227, 60, 39, 97, 254, 248, 253, 62, 6, 7, 251, 68, 63, 100, 3, 1, 67, 1, 2, 250, 255, 69, 134, 117, 93, + 51, 39, 191, 27, 113, 152, 8, 58, 160, 147, 184, 213, 27, 110, 142, 225, 107, 67, 140, 116, 101, 27, 131, 243, + 135, 152, 154, 223, 39, 82, 27, 121, 7, 124, 117, 19, 25, 213, 244, 27, 166, 123, 183, 37, 87, 17, 155, 69, 72, + 154, 21, 70, 100, 56, 248, 174, 254, 255, 69, 186, 22, 11, 138, 57, 27, 72, 151, 117, 195, 179, 124, 107, 158, 66, + 250, 7, 160, 68, 253, 0, 249, 3, 191, 68, 76, 90, 9, 181, 69, 59, 221, 30, 94, 95, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1384, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02f5fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + } + ] + }, + "cborHex": "bf4302f5fa1bffffffffffffffeeff", + "cborBytes": [191, 67, 2, 245, 250, 27, 255, 255, 255, 255, 255, 255, 255, 238, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1385, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11d79ff1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4509564659697391751" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db5916" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13342285685584029076" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34243eb726c14bcdd7b467" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b1b04ff22765193939253" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bd7956361c51511a1ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10371246042609367111" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68b64f750aca800162" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5182029549983465004" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9fc22c829de4c0fc2f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "505167259378804177" + } + }, + { + "_tag": "ByteArray", + "bytearray": "35ac9f567ae5505637" + }, + { + "_tag": "ByteArray", + "bytearray": "6b" + }, + { + "_tag": "ByteArray", + "bytearray": "c177b3520e0fc36a348856" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2621449808740587257" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6899150" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "31585258777005999" + } + } + } + ] + }, + "cborHex": "bf4411d79ff1bf1b3e95312a50eb188743db59161bb9295223fd03e5944b34243eb726c14bcdd7b467ff41354b2b1b04ff227651939392534a5bd7956361c51511a1ee1b8fee115397e838474968b64f750aca8001621b47ea446b8e577e2c499fc22c829de4c0fc2f9f1b0702b6f2276e65d14935ac9f567ae5505637416b4bc177b3520e0fc36a3488561b246142b6467f96f9ff44a68991501b007036a0218acfafff", + "cborBytes": [ + 191, 68, 17, 215, 159, 241, 191, 27, 62, 149, 49, 42, 80, 235, 24, 135, 67, 219, 89, 22, 27, 185, 41, 82, 35, 253, + 3, 229, 148, 75, 52, 36, 62, 183, 38, 193, 75, 205, 215, 180, 103, 255, 65, 53, 75, 43, 27, 4, 255, 34, 118, 81, + 147, 147, 146, 83, 74, 91, 215, 149, 99, 97, 197, 21, 17, 161, 238, 27, 143, 238, 17, 83, 151, 232, 56, 71, 73, + 104, 182, 79, 117, 10, 202, 128, 1, 98, 27, 71, 234, 68, 107, 142, 87, 126, 44, 73, 159, 194, 44, 130, 157, 228, + 192, 252, 47, 159, 27, 7, 2, 182, 242, 39, 110, 101, 209, 73, 53, 172, 159, 86, 122, 229, 80, 86, 55, 65, 107, 75, + 193, 119, 179, 82, 14, 15, 195, 106, 52, 136, 86, 27, 36, 97, 66, 182, 70, 127, 150, 249, 255, 68, 166, 137, 145, + 80, 27, 0, 112, 54, 160, 33, 138, 207, 175, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1386, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0fe01fa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a20556bf3d7cea" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11709967305461773589" + } + } + } + ] + }, + "cborHex": "bf44a0fe01fad87e8047a20556bf3d7cea1ba2822938e57cb515ff", + "cborBytes": [ + 191, 68, 160, 254, 1, 250, 216, 126, 128, 71, 162, 5, 86, 191, 61, 124, 234, 27, 162, 130, 41, 56, 229, 124, 181, + 21, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1387, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "051e76cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22e52fc0be444c87" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a579cc8564ba593082be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "557934" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18383222222011667352" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1949176786425816740" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17009218503167902397" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17818571329989791148" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55e3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3745756699432497635" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13137910116369238964" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12573894168717618960" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44e8aa44c2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16148704974995246163" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15501659670153667385" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "923690331e759acb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16430425905814488399" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4ca4ba44cc43a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e" + } + } + ] + }, + "cborHex": "bf44051e76cf4822e52fc0be444c8741414aa579cc8564ba593082be43557934d8669f1bff1e5336621293989f1b1b0cddf5c75926a4410a1bec0ce21c245302bd1bf7484837c1004dacffff4255e3bf1b33fb99df4cb6b1e31bb6533ba4a9330bb41bae7f722089c4ef104544e8aa44c21be01bb99d812ccc531bd720f556b4822339ff48923690331e759acbd8669f1be404994f2872c54f80ff47b4ca4ba44cc43a411eff", + "cborBytes": [ + 191, 68, 5, 30, 118, 207, 72, 34, 229, 47, 192, 190, 68, 76, 135, 65, 65, 74, 165, 121, 204, 133, 100, 186, 89, + 48, 130, 190, 67, 85, 121, 52, 216, 102, 159, 27, 255, 30, 83, 54, 98, 18, 147, 152, 159, 27, 27, 12, 221, 245, + 199, 89, 38, 164, 65, 10, 27, 236, 12, 226, 28, 36, 83, 2, 189, 27, 247, 72, 72, 55, 193, 0, 77, 172, 255, 255, + 66, 85, 227, 191, 27, 51, 251, 153, 223, 76, 182, 177, 227, 27, 182, 83, 59, 164, 169, 51, 11, 180, 27, 174, 127, + 114, 32, 137, 196, 239, 16, 69, 68, 232, 170, 68, 194, 27, 224, 27, 185, 157, 129, 44, 204, 83, 27, 215, 32, 245, + 86, 180, 130, 35, 57, 255, 72, 146, 54, 144, 51, 30, 117, 154, 203, 216, 102, 159, 27, 228, 4, 153, 79, 40, 114, + 197, 79, 128, 255, 71, 180, 202, 75, 164, 76, 196, 58, 65, 30, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1388, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1937578f04025380b995130d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a454241ffe" + }, + { + "_tag": "ByteArray", + "bytearray": "08b39c98a18e44" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15833502725025023712" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13281691873215580410" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c1937578f04025380b995130dd8669f1bfffffffffffffffe9f45a454241ffe4708b39c98a18e441bdbbbe6d6c34bc6e01bb8520c63a73508faffffff", + "cborBytes": [ + 191, 76, 25, 55, 87, 143, 4, 2, 83, 128, 185, 149, 19, 13, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 254, 159, 69, 164, 84, 36, 31, 254, 71, 8, 179, 156, 152, 161, 142, 68, 27, 219, 187, 230, 214, 195, 75, 198, 224, + 27, 184, 82, 12, 99, 167, 53, 8, 250, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1389, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "595ac1d3ea455bc6c3748a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8197442411919234678" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e4d56f60fd81dd3ce4bb98" + }, + { + "_tag": "ByteArray", + "bytearray": "b3ebeb4bc7" + }, + { + "_tag": "ByteArray", + "bytearray": "fd8af75c67a9" + }, + { + "_tag": "ByteArray", + "bytearray": "b3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3001923598326516176" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b595ac1d3ea455bc6c3748ad8669f1b71c32a71152ad6769f4be4d56f60fd81dd3ce4bb9845b3ebeb4bc746fd8af75c67a941b31b29a8f99b991d49d0ffffff", + "cborBytes": [ + 191, 75, 89, 90, 193, 211, 234, 69, 91, 198, 195, 116, 138, 216, 102, 159, 27, 113, 195, 42, 113, 21, 42, 214, + 118, 159, 75, 228, 213, 111, 96, 253, 129, 221, 60, 228, 187, 152, 69, 179, 235, 235, 75, 199, 70, 253, 138, 247, + 92, 103, 169, 65, 179, 27, 41, 168, 249, 155, 153, 29, 73, 208, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1390, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09a7c3f6dcb5a90154cf" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2466" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7fb25fb3e8e71" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85608922ac9d1d4af268e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8835569057632612817" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2973830796469845288" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7934" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "703586deef8c9e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4fe15a68" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8165d01d9791bde0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "056333cd83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15382570380977723535" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac0534" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16435612654429084692" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4047153fe661c6ae7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "340139236514611477" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbfd8b8ea2f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4461413529719967677" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15013689386483788504" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4595257395228898079" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7069947007721446719" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13473908144767154390" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13155200574509512401" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13775657279693691022" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ac76a60163e9bcc52" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16979316647425231649" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6589657810610742273" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4a09a7c3f6dcb5a90154cfbf42246647d7fb25fb3e8e714b85608922ac9d1d4af268e51b7a9e3f3ebc9ff1d1ff4248d41b29452b5a75b3bd28427934bf47703586deef8c9e444fe15a68ff488165d01d9791bde0bf45056333cd831bd579de42da9f588f43ac05341be41706a12d291c14ff49f4047153fe661c6ae7bf1b04b86ad55ea0411546cbfd8b8ea2f81b3dea1ff7bb148fbd1bd05b56f3796b2ad81b3fc5a241161af31f1b621d7f5868129d3f1bbafcf011e116b8d61bb690a93928a776d11bbf2cf74f2faa988e499ac76a60163e9bcc521beba2a687d2a84b211b5b732add80d4e401ffff", + "cborBytes": [ + 191, 74, 9, 167, 195, 246, 220, 181, 169, 1, 84, 207, 191, 66, 36, 102, 71, 215, 251, 37, 251, 62, 142, 113, 75, + 133, 96, 137, 34, 172, 157, 29, 74, 242, 104, 229, 27, 122, 158, 63, 62, 188, 159, 241, 209, 255, 66, 72, 212, 27, + 41, 69, 43, 90, 117, 179, 189, 40, 66, 121, 52, 191, 71, 112, 53, 134, 222, 239, 140, 158, 68, 79, 225, 90, 104, + 255, 72, 129, 101, 208, 29, 151, 145, 189, 224, 191, 69, 5, 99, 51, 205, 131, 27, 213, 121, 222, 66, 218, 159, 88, + 143, 67, 172, 5, 52, 27, 228, 23, 6, 161, 45, 41, 28, 20, 255, 73, 244, 4, 113, 83, 254, 102, 28, 106, 231, 191, + 27, 4, 184, 106, 213, 94, 160, 65, 21, 70, 203, 253, 139, 142, 162, 248, 27, 61, 234, 31, 247, 187, 20, 143, 189, + 27, 208, 91, 86, 243, 121, 107, 42, 216, 27, 63, 197, 162, 65, 22, 26, 243, 31, 27, 98, 29, 127, 88, 104, 18, 157, + 63, 27, 186, 252, 240, 17, 225, 22, 184, 214, 27, 182, 144, 169, 57, 40, 167, 118, 209, 27, 191, 44, 247, 79, 47, + 170, 152, 142, 73, 154, 199, 106, 96, 22, 62, 155, 204, 82, 27, 235, 162, 166, 135, 210, 168, 75, 33, 27, 91, 115, + 42, 221, 128, 212, 228, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1391, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1034515331791669009" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4524505930409141543" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10355054504732323189" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1305291500213263907" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13087345763045510443" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6065119906434902286" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14958149053199508113" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60ab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15366789738766796955" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5602847739670743472" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10609186266230974862" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8417811315949056500" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8737077653287682786" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9039836537385575166" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14477752717424784845" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "506b42bd842f5b81f4" + } + } + ] + }, + "cborHex": "bf1b0e5b56369223471141aa1b3eca462bfe2f6527bf1b8fb48b356860ed751b121d53b4268c5e231bb59f97a1bb0a8d2b1b542ba26ba733e90e1bcf96054fed4d62914260ab1bd541cdd9c550089b1b4dc1505585acc9b0ff1b933b66b302a6698ed8669f1b74d212cad96831f49f1b794055d5ab3742e21b7d73f36f8676e2feffff1bc8eb4f63dc0cf5cd49506b42bd842f5b81f4ff", + "cborBytes": [ + 191, 27, 14, 91, 86, 54, 146, 35, 71, 17, 65, 170, 27, 62, 202, 70, 43, 254, 47, 101, 39, 191, 27, 143, 180, 139, + 53, 104, 96, 237, 117, 27, 18, 29, 83, 180, 38, 140, 94, 35, 27, 181, 159, 151, 161, 187, 10, 141, 43, 27, 84, 43, + 162, 107, 167, 51, 233, 14, 27, 207, 150, 5, 79, 237, 77, 98, 145, 66, 96, 171, 27, 213, 65, 205, 217, 197, 80, 8, + 155, 27, 77, 193, 80, 85, 133, 172, 201, 176, 255, 27, 147, 59, 102, 179, 2, 166, 105, 142, 216, 102, 159, 27, + 116, 210, 18, 202, 217, 104, 49, 244, 159, 27, 121, 64, 85, 213, 171, 55, 66, 226, 27, 125, 115, 243, 111, 134, + 118, 226, 254, 255, 255, 27, 200, 235, 79, 99, 220, 12, 245, 205, 73, 80, 107, 66, 189, 132, 47, 91, 129, 244, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1392, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9822129467794474411" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "45980736250e8ea580" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ba7222220e66d802155" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b25eb7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9085009403634913020" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15944668585995727632" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2231078530552037119" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16148765240563518746" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16409368136624800068" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "64cbe807f2bbca4f" + }, + { + "_tag": "ByteArray", + "bytearray": "a4e4dc72" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11056352330908491572" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1cab61a51d262907c52" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2528362862907091967" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72545cbb370c7843392f" + }, + { + "_tag": "ByteArray", + "bytearray": "555485f7fa0c4a0e53f6c798" + }, + { + "_tag": "ByteArray", + "bytearray": "0d7e0839e1a0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1213631593505089206" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b884f36b609c945abbf4945980736250e8ea5804a0ba7222220e66d80215543b25eb71b7e146feb0cbe0efcff1bdd46d799b99af3101b1ef6621a4f8dfeff1be01bf06d2cf6cd1ad8669f1be3b9c961342281449f4864cbe807f2bbca4f44a4e4dc721b99700dddab5cdf34ffff4ab1cab61a51d262907c529f1b23168ca0c2ddebff4a72545cbb370c7843392f4c555485f7fa0c4a0e53f6c798460d7e0839e1a01b10d7af81130fe6b6ffff", + "cborBytes": [ + 191, 27, 136, 79, 54, 182, 9, 201, 69, 171, 191, 73, 69, 152, 7, 54, 37, 14, 142, 165, 128, 74, 11, 167, 34, 34, + 32, 230, 109, 128, 33, 85, 67, 178, 94, 183, 27, 126, 20, 111, 235, 12, 190, 14, 252, 255, 27, 221, 70, 215, 153, + 185, 154, 243, 16, 27, 30, 246, 98, 26, 79, 141, 254, 255, 27, 224, 27, 240, 109, 44, 246, 205, 26, 216, 102, 159, + 27, 227, 185, 201, 97, 52, 34, 129, 68, 159, 72, 100, 203, 232, 7, 242, 187, 202, 79, 68, 164, 228, 220, 114, 27, + 153, 112, 13, 221, 171, 92, 223, 52, 255, 255, 74, 177, 202, 182, 26, 81, 210, 98, 144, 124, 82, 159, 27, 35, 22, + 140, 160, 194, 221, 235, 255, 74, 114, 84, 92, 187, 55, 12, 120, 67, 57, 47, 76, 85, 84, 133, 247, 250, 12, 74, + 14, 83, 246, 199, 152, 70, 13, 126, 8, 57, 225, 160, 27, 16, 215, 175, 129, 19, 15, 230, 182, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1393, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4884013158013281328" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3170135995562536206" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8c2918753c8f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17999108283097678091" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11270063907577720195" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14410489557780199448" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ddb2105b62011e9678bf4d" + }, + { + "_tag": "ByteArray", + "bytearray": "d5f0b4cf3d29b53f9f688eb3" + } + ] + } + } + ] + }, + "cborHex": "bf1b43c7801731b72430d8669f1b2bfe95e4512f2d0e9f468c2918753c8fffff1bf9c9ad9ebfd4010b9f1b9c674f699f1eed831bc7fc57e71af6f8184bddb2105b62011e9678bf4d4cd5f0b4cf3d29b53f9f688eb3ffff", + "cborBytes": [ + 191, 27, 67, 199, 128, 23, 49, 183, 36, 48, 216, 102, 159, 27, 43, 254, 149, 228, 81, 47, 45, 14, 159, 70, 140, + 41, 24, 117, 60, 143, 255, 255, 27, 249, 201, 173, 158, 191, 212, 1, 11, 159, 27, 156, 103, 79, 105, 159, 30, 237, + 131, 27, 199, 252, 87, 231, 26, 246, 248, 24, 75, 221, 178, 16, 91, 98, 1, 30, 150, 120, 191, 77, 76, 213, 240, + 180, 207, 61, 41, 181, 63, 159, 104, 142, 179, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1394, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d707" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf42d707a041fad9050580ff", + "cborBytes": [191, 66, 215, 7, 160, 65, 250, 217, 5, 5, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1395, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05d69c8cb3e59d0fa29fda" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6b6e1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b3b1f7e0fe74a9377f9e0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15677529771527493524" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ab7e6ae617626009d3fc8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e27009aa715ee6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a671c29478d9db66e01" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "23ca487e8799dac39f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd7582b5d4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1636841599310583356" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4484ab75" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6957682037123245580" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2c64b501eb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7abb3a" + } + } + ] + }, + "cborHex": "bf4b05d69c8cb3e59d0fa29fda43b6b6e14b0b3b1f7e0fe74a9377f9e0bf1bd991c6439b81d7944b6ab7e6ae617626009d3fc847e27009aa715ee64a3a671c29478d9db66e01ff4923ca487e8799dac39f45bd7582b5d441361b16b73ac3207d563c444484ab751b608ea6f30ad8e60c46d2c64b501eb6437abb3aff", + "cborBytes": [ + 191, 75, 5, 214, 156, 140, 179, 229, 157, 15, 162, 159, 218, 67, 182, 182, 225, 75, 11, 59, 31, 126, 15, 231, 74, + 147, 119, 249, 224, 191, 27, 217, 145, 198, 67, 155, 129, 215, 148, 75, 106, 183, 230, 174, 97, 118, 38, 0, 157, + 63, 200, 71, 226, 112, 9, 170, 113, 94, 230, 74, 58, 103, 28, 41, 71, 141, 157, 182, 110, 1, 255, 73, 35, 202, 72, + 126, 135, 153, 218, 195, 159, 69, 189, 117, 130, 181, 212, 65, 54, 27, 22, 183, 58, 195, 32, 125, 86, 60, 68, 68, + 132, 171, 117, 27, 96, 142, 166, 243, 10, 216, 230, 12, 70, 210, 198, 75, 80, 30, 182, 67, 122, 187, 58, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1396, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "120303289907fa01a59605bf" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2540647905166489212" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6a49754a2be0994a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10851454841289585991" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10481230075264452634" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11806479432384891577" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c120303289907fa01a59605bfd8669f1b234231cf0ec9f67c9f486a49754a2be0994a1b96981caf474235471b9174cf38b547481a1ba3d90a7d8741cab9ffffff", + "cborBytes": [ + 191, 76, 18, 3, 3, 40, 153, 7, 250, 1, 165, 150, 5, 191, 216, 102, 159, 27, 35, 66, 49, 207, 14, 201, 246, 124, + 159, 72, 106, 73, 117, 74, 43, 224, 153, 74, 27, 150, 152, 28, 175, 71, 66, 53, 71, 27, 145, 116, 207, 56, 181, + 71, 72, 26, 27, 163, 217, 10, 125, 135, 65, 202, 185, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1397, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05fa" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c5cdade21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1670714253123161176" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb804f16f55a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6340776865203825787" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5264" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "164adeab3b09fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15414444114610201087" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e1eaf70196cef2664d04053" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5327ff98e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9949614555629132041" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54287deba3b1a185195a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be5df547" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3c78e2d8c6002" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13268816482642673770" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fed6d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15844d" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f1553" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "151ac89167" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea73" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c9d2e12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17407748898210238387" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5839cc62e614405ae579cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3435931096381663404" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fedad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5164591033498231255" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db2d06d92f5f07" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "052d7d31a9823d85e98d8e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6151597948755043334" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fc9319fc9dc288e424b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3074902070230748422" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b8d7d80" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18438361244297508817" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4205fabf454c5cdade211b172f91c2ea968c5846cb804f16f55a1b57fef6f6ca7d2c7bff425264bf47164adeab3b09fe1bd5eb1b40c573a1ff4c3e1eaf70196cef2664d0405341f4455327ff98e91b8a1421b9185499094a54287deba3b1a185195a44be5df54747a3c78e2d8c60021bb8244e4a2dc3c06a43fed6d24315844dff438f1553bf45151ac8916742ea73443c9d2e121bf194bf648904cfb34b5839cc62e614405ae579cf1b2faee120b88c28ac437fedad1b47ac502e89d461d7ff47db2d06d92f5f07bf4b052d7d31a9823d85e98d8e1b555eddbde890e4064a7fc9319fc9dc288e424b1b2aac3f242f378d06449b8d7d801bffe237dc6eaeb7d1ffff", + "cborBytes": [ + 191, 66, 5, 250, 191, 69, 76, 92, 218, 222, 33, 27, 23, 47, 145, 194, 234, 150, 140, 88, 70, 203, 128, 79, 22, + 245, 90, 27, 87, 254, 246, 246, 202, 125, 44, 123, 255, 66, 82, 100, 191, 71, 22, 74, 222, 171, 59, 9, 254, 27, + 213, 235, 27, 64, 197, 115, 161, 255, 76, 62, 30, 175, 112, 25, 108, 239, 38, 100, 208, 64, 83, 65, 244, 69, 83, + 39, 255, 152, 233, 27, 138, 20, 33, 185, 24, 84, 153, 9, 74, 84, 40, 125, 235, 163, 177, 161, 133, 25, 90, 68, + 190, 93, 245, 71, 71, 163, 199, 142, 45, 140, 96, 2, 27, 184, 36, 78, 74, 45, 195, 192, 106, 67, 254, 214, 210, + 67, 21, 132, 77, 255, 67, 143, 21, 83, 191, 69, 21, 26, 200, 145, 103, 66, 234, 115, 68, 60, 157, 46, 18, 27, 241, + 148, 191, 100, 137, 4, 207, 179, 75, 88, 57, 204, 98, 230, 20, 64, 90, 229, 121, 207, 27, 47, 174, 225, 32, 184, + 140, 40, 172, 67, 127, 237, 173, 27, 71, 172, 80, 46, 137, 212, 97, 215, 255, 71, 219, 45, 6, 217, 47, 95, 7, 191, + 75, 5, 45, 125, 49, 169, 130, 61, 133, 233, 141, 142, 27, 85, 94, 221, 189, 232, 144, 228, 6, 74, 127, 201, 49, + 159, 201, 220, 40, 142, 66, 75, 27, 42, 172, 63, 36, 47, 55, 141, 6, 68, 155, 141, 125, 128, 27, 255, 226, 55, + 220, 110, 174, 183, 209, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1398, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3427632148854373100" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10048605981736803946" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4e" + }, + { + "_tag": "ByteArray", + "bytearray": "59e46a44" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1237827454306392213" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1805ced1b6a8af40586f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75f29a6f1c22" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b9fcd084ad180ac0c1e91b1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13316579253390497207" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7fe0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9305684206981473312" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7999239724800243078" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2f9165476d2c7aecd8669f1b8b73d1e68d499e6a9f414e4459e46a441b112da582eb2898954a1805ced1b6a8af40586fffff4675f29a6f1c22a04c7b9fcd084ad180ac0c1e91b1d8669f1bb8cdfe46d5ad55b79f427fe01b81246e7b8d17e4201b6f030225dde97586ffffff", + "cborBytes": [ + 191, 27, 47, 145, 101, 71, 109, 44, 122, 236, 216, 102, 159, 27, 139, 115, 209, 230, 141, 73, 158, 106, 159, 65, + 78, 68, 89, 228, 106, 68, 27, 17, 45, 165, 130, 235, 40, 152, 149, 74, 24, 5, 206, 209, 182, 168, 175, 64, 88, + 111, 255, 255, 70, 117, 242, 154, 111, 28, 34, 160, 76, 123, 159, 205, 8, 74, 209, 128, 172, 12, 30, 145, 177, + 216, 102, 159, 27, 184, 205, 254, 70, 213, 173, 85, 183, 159, 66, 127, 224, 27, 129, 36, 110, 123, 141, 23, 228, + 32, 27, 111, 3, 2, 37, 221, 233, 117, 134, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1399, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16ef4c9366" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56e3162c6dd31b8ffc20" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13557106534345389583" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15293970933401051554" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf414a4516ef4c93664a56e3162c6dd31b8ffc20bf1bbc24849079c8b60f1bd43f19887284e1a2ffff", + "cborBytes": [ + 191, 65, 74, 69, 22, 239, 76, 147, 102, 74, 86, 227, 22, 44, 109, 211, 27, 143, 252, 32, 191, 27, 188, 36, 132, + 144, 121, 200, 182, 15, 27, 212, 63, 25, 136, 114, 132, 225, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1400, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4331991298510059628" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5520539060441243660" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11504919243919317692" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10834343010320551125" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c3d76170e9ffc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e729" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70d1ba9aadf68aac9555cf" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "828a60af6e7a25e17b8026" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4707872681662145842" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b10634cc6156d41f" + }, + { + "_tag": "ByteArray", + "bytearray": "7779f7e7b5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7181149217168662418" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3c1e532255c6786c1b4c9ce506c244e00c1b9fa9af18bf5ddabcbf1b965b5190a8e48cd54151ff475c3d76170e9ffc42e7294b70d1ba9aadf68aac9555cf9f4b828a60af6e7a25e17b80261b4155b942b63ce53248b10634cc6156d41f457779f7e7b51b63a8912a68699f92ffff", + "cborBytes": [ + 191, 27, 60, 30, 83, 34, 85, 198, 120, 108, 27, 76, 156, 229, 6, 194, 68, 224, 12, 27, 159, 169, 175, 24, 191, 93, + 218, 188, 191, 27, 150, 91, 81, 144, 168, 228, 140, 213, 65, 81, 255, 71, 92, 61, 118, 23, 14, 159, 252, 66, 231, + 41, 75, 112, 209, 186, 154, 173, 246, 138, 172, 149, 85, 207, 159, 75, 130, 138, 96, 175, 110, 122, 37, 225, 123, + 128, 38, 27, 65, 85, 185, 66, 182, 60, 229, 50, 72, 177, 6, 52, 204, 97, 86, 212, 31, 69, 119, 121, 247, 231, 181, + 27, 99, 168, 145, 42, 104, 105, 159, 146, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1401, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8915462907000529" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "97422971aa02be5bf719c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b001fac90f79476d1bf4b97422971aa02be5bf719c94106ffff", + "cborBytes": [ + 191, 27, 0, 31, 172, 144, 247, 148, 118, 209, 191, 75, 151, 66, 41, 113, 170, 2, 190, 91, 247, 25, 201, 65, 6, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1402, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7063501818011599525" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "51191ae9ff88b655" + }, + { + "_tag": "ByteArray", + "bytearray": "12cf" + }, + { + "_tag": "ByteArray", + "bytearray": "9a6fbec9cc0b0c1a6d7fdc57" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16614233248241201733" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6206997abce842a59f4851191ae9ff88b6554212cf4c9a6fbec9cc0b0c1a6d7fdc571be6919d1d00e6b245ffff", + "cborBytes": [ + 191, 27, 98, 6, 153, 122, 188, 232, 66, 165, 159, 72, 81, 25, 26, 233, 255, 136, 182, 85, 66, 18, 207, 76, 154, + 111, 190, 201, 204, 11, 12, 26, 109, 127, 220, 87, 27, 230, 145, 157, 29, 0, 230, 178, 69, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1403, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "78631aa9dbe71b558392" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "290f45ddb39cad1c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff05e107" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e1ee3ac53a16ef051c677" + } + } + ] + }, + "cborHex": "bf4a78631aa9dbe71b55839248290f45ddb39cad1c44ff05e1074b5e1ee3ac53a16ef051c677ff", + "cborBytes": [ + 191, 74, 120, 99, 26, 169, 219, 231, 27, 85, 131, 146, 72, 41, 15, 69, 221, 179, 156, 173, 28, 68, 255, 5, 225, 7, + 75, 94, 30, 227, 172, 83, 161, 110, 240, 81, 198, 119, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1404, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3836636113023902848" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14304210576728335941" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13893945998311162706" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8384699135018412611" + } + }, + { + "_tag": "ByteArray", + "bytearray": "12dc" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5021712508947107286" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5173090145778194087" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a351068f2b0b439" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14315140338765868787" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10327384194469069258" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9020969904947869377" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14917960715170080274" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5034042481290359045" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1056912820843257722" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b353e7837a939a480d8669f1bc682c3bb8a4726459f1bc0d13645adcc03521b745c6f70734c2a434212dcffff1b45b0b4ebb3ed8dd6bf1b47ca8214522ed6a7489a351068f2b0b4391bc6a9984b12012ef31b8f523d35425001caff1b7d30ec5559e836c19f1bcf073e3b50f1e6121b45dc82f71989b1051b0eaae89c5ceb1f7affff", + "cborBytes": [ + 191, 27, 53, 62, 120, 55, 169, 57, 164, 128, 216, 102, 159, 27, 198, 130, 195, 187, 138, 71, 38, 69, 159, 27, 192, + 209, 54, 69, 173, 204, 3, 82, 27, 116, 92, 111, 112, 115, 76, 42, 67, 66, 18, 220, 255, 255, 27, 69, 176, 180, + 235, 179, 237, 141, 214, 191, 27, 71, 202, 130, 20, 82, 46, 214, 167, 72, 154, 53, 16, 104, 242, 176, 180, 57, 27, + 198, 169, 152, 75, 18, 1, 46, 243, 27, 143, 82, 61, 53, 66, 80, 1, 202, 255, 27, 125, 48, 236, 85, 89, 232, 54, + 193, 159, 27, 207, 7, 62, 59, 80, 241, 230, 18, 27, 69, 220, 130, 247, 25, 137, 177, 5, 27, 14, 170, 232, 156, 92, + 235, 31, 122, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1405, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5581262662438360436" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74af0e91e6804af3e8e02c04" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5946038486314702931" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + } + ] + }, + "cborHex": "bf1b4d74a0d218ca15744c74af0e91e6804af3e8e02c041b5284927ff596d85304ff", + "cborBytes": [ + 191, 27, 77, 116, 160, 210, 24, 202, 21, 116, 76, 116, 175, 14, 145, 230, 128, 74, 243, 232, 224, 44, 4, 27, 82, + 132, 146, 127, 245, 150, 216, 83, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1406, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4845877907018733096" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13994261852767559891" + } + } + } + ] + }, + "cborHex": "bf1b4340044828c3d6281bc2359b02a402a0d3ff", + "cborBytes": [191, 27, 67, 64, 4, 72, 40, 195, 214, 40, 27, 194, 53, 155, 2, 164, 2, 160, 211, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1407, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17615132502422878276" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "70961107111651096" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4310be6f6e0cd878e1b055" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3960159238855021011" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "278259248736da6fa3ee" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6100ab04c8a8bb71" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18038008558685492036" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18158409459570460394" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a67a7b428c65cd27" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11174991695660884693" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13482246512108148780" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15062506133054683433" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1eb355ac772707bacfb519" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6407364157414597339" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2cc59e" + } + ] + } + } + ] + }, + "cborHex": "bf1bf47585ae965a7844bf1b00fc1ac03e4227184b4310be6f6e0cd878e1b0551b36f54fd88def51d34a278259248736da6fa3eeff486100ab04c8a8bb71bf1bfa53e136f3e793441bfbffa13233ca46eaff48a67a7b428c65cd27d8669f1b9b158bbd53cea2d59f1bbb1a8fc55074982c1bd108c585ffddf9294b1eb355ac772707bacfb5191b58eb87c0e54462db432cc59effffff", + "cborBytes": [ + 191, 27, 244, 117, 133, 174, 150, 90, 120, 68, 191, 27, 0, 252, 26, 192, 62, 66, 39, 24, 75, 67, 16, 190, 111, + 110, 12, 216, 120, 225, 176, 85, 27, 54, 245, 79, 216, 141, 239, 81, 211, 74, 39, 130, 89, 36, 135, 54, 218, 111, + 163, 238, 255, 72, 97, 0, 171, 4, 200, 168, 187, 113, 191, 27, 250, 83, 225, 54, 243, 231, 147, 68, 27, 251, 255, + 161, 50, 51, 202, 70, 234, 255, 72, 166, 122, 123, 66, 140, 101, 205, 39, 216, 102, 159, 27, 155, 21, 139, 189, + 83, 206, 162, 213, 159, 27, 187, 26, 143, 197, 80, 116, 152, 44, 27, 209, 8, 197, 133, 255, 221, 249, 41, 75, 30, + 179, 85, 172, 119, 39, 7, 186, 207, 181, 25, 27, 88, 235, 135, 192, 229, 68, 98, 219, 67, 44, 197, 158, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1408, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18034823776191691357" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5ca63939a4fda5733eb0cc45" + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffedd905019f1bfa4890abfeacba5d4c5ca63939a4fda5733eb0cc45ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 237, 217, 5, 1, 159, 27, 250, 72, 144, 171, 254, 172, 186, 93, 76, 92, + 166, 57, 57, 164, 253, 165, 115, 62, 176, 204, 69, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1409, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8237114974589397605" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4026016932614447288" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3811218150375538624" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11383784564097252999" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8477392295037281754" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5930498204699779723" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cdbb658a0f6d2cbcaa" + }, + { + "_tag": "ByteArray", + "bytearray": "fd6ab59d928e078c5cda935e" + }, + { + "_tag": "ByteArray", + "bytearray": "42" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5597191362173889587" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17050261697800339794" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2b9f82b95036f0e688e13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8a26785f489a5f862" + } + } + ] + }, + "cborHex": "bf0b1b72501c6d6273aa651b37df4911c83120b8bf111b34e42ab70ea7bfc01b9dfb53bf46977e871b75a5bf608f54a5daff1b524d5cb23038e28b9f49cdbb658a0f6d2cbcaa4cfd6ab59d928e078c5cda935e41421b4dad37e382426c331bec9eb2ad90d68152ff4bf2b9f82b95036f0e688e1349d8a26785f489a5f862ff", + "cborBytes": [ + 191, 11, 27, 114, 80, 28, 109, 98, 115, 170, 101, 27, 55, 223, 73, 17, 200, 49, 32, 184, 191, 17, 27, 52, 228, 42, + 183, 14, 167, 191, 192, 27, 157, 251, 83, 191, 70, 151, 126, 135, 27, 117, 165, 191, 96, 143, 84, 165, 218, 255, + 27, 82, 77, 92, 178, 48, 56, 226, 139, 159, 73, 205, 187, 101, 138, 15, 109, 44, 188, 170, 76, 253, 106, 181, 157, + 146, 142, 7, 140, 92, 218, 147, 94, 65, 66, 27, 77, 173, 55, 227, 130, 66, 108, 51, 27, 236, 158, 178, 173, 144, + 214, 129, 82, 255, 75, 242, 185, 248, 43, 149, 3, 111, 14, 104, 142, 19, 73, 216, 162, 103, 133, 244, 137, 165, + 248, 98, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1410, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9120763543361651176" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + } + } + ] + }, + "cborHex": "bf12d8669f1b7e93761e6a6781e89f1bffffffffffffffeb02ffffff", + "cborBytes": [ + 191, 18, 216, 102, 159, 27, 126, 147, 118, 30, 106, 103, 129, 232, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 235, 2, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1411, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "461393508644701258" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8403551819125327214" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17188259793754298885" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bd01124590ffc658" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17440883281961461024" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b066732f39870444aa01b749f69db068d856ed8669f1bee88f73711da9a059f48bd01124590ffc6581bf20a76f06e5ca520ffffff", + "cborBytes": [ + 191, 27, 6, 103, 50, 243, 152, 112, 68, 74, 160, 27, 116, 159, 105, 219, 6, 141, 133, 110, 216, 102, 159, 27, 238, + 136, 247, 55, 17, 218, 154, 5, 159, 72, 189, 1, 18, 69, 144, 255, 198, 88, 27, 242, 10, 118, 240, 110, 92, 165, + 32, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1412, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4275496407221895112" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2565926512668629127" + } + } + } + ] + }, + "cborHex": "bf1b3b559d546eeb7fc81b239c0091835ed887ff", + "cborBytes": [191, 27, 59, 85, 157, 84, 110, 235, 127, 200, 27, 35, 156, 0, 145, 131, 94, 216, 135, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1413, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3807" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ecfdfeafa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "444d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7239607532350002648" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10262472084155674372" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13018747758568556961" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11014431216835577247" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "300506" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3848275899973370881" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df023906fa05" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2457954682955869274" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f0d451ca085" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc07" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8663960650023276815" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6a4d" + }, + { + "_tag": "ByteArray", + "bytearray": "2bc131df76b3b1" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe07e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d" + } + } + ] + }, + "cborHex": "bf4100423807450ecfdfeafad9050b9f42444d1b647840b18ef6d5d81b8e6b9ffcd5762f041bb4abe21c31e449a11b98db1ed5b275459fff433005061b3567d28abf9c040146df023906fa05bf1b221c68c2e797ac5a461f0d451ca0851bffffffffffffffff0aff42fc07d87a9f1b783c924ebc99910f426a4d472bc131df76b3b1ff43fe07e5415dff", + "cborBytes": [ + 191, 65, 0, 66, 56, 7, 69, 14, 207, 223, 234, 250, 217, 5, 11, 159, 66, 68, 77, 27, 100, 120, 64, 177, 142, 246, + 213, 216, 27, 142, 107, 159, 252, 213, 118, 47, 4, 27, 180, 171, 226, 28, 49, 228, 73, 161, 27, 152, 219, 30, 213, + 178, 117, 69, 159, 255, 67, 48, 5, 6, 27, 53, 103, 210, 138, 191, 156, 4, 1, 70, 223, 2, 57, 6, 250, 5, 191, 27, + 34, 28, 104, 194, 231, 151, 172, 90, 70, 31, 13, 69, 28, 160, 133, 27, 255, 255, 255, 255, 255, 255, 255, 255, 10, + 255, 66, 252, 7, 216, 122, 159, 27, 120, 60, 146, 78, 188, 153, 145, 15, 66, 106, 77, 71, 43, 193, 49, 223, 118, + 179, 177, 255, 67, 254, 7, 229, 65, 93, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1414, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "050097" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12209169546468971645" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "156bdf1f139d" + } + ] + } + } + ] + }, + "cborHex": "bf43050097d8669f1ba96faf03fbccd47d9f46156bdf1f139dffffff", + "cborBytes": [ + 191, 67, 5, 0, 151, 216, 102, 159, 27, 169, 111, 175, 3, 251, 204, 212, 125, 159, 70, 21, 107, 223, 31, 19, 157, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1415, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15687825725186196445" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02b7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10653595148179890721" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6f1f430aa0c92b7013cb2b86" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "030148fa050004fafe01" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12446482988209167444" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56312180f8a214449a5f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6956433277307963355" + } + } + } + ] + }, + "cborHex": "bf13bf0e09121bd9b65a611ff543ddff4202b7d8669f1b93d92c57941662219f4c6f1f430aa0c92b7013cb2b86ffff4a030148fa050004fafe019f1bacbaca555f265c54ff4a56312180f8a214449a5f1b608a37357da5c7dbff", + "cborBytes": [ + 191, 19, 191, 14, 9, 18, 27, 217, 182, 90, 97, 31, 245, 67, 221, 255, 66, 2, 183, 216, 102, 159, 27, 147, 217, 44, + 87, 148, 22, 98, 33, 159, 76, 111, 31, 67, 10, 160, 201, 43, 112, 19, 203, 43, 134, 255, 255, 74, 3, 1, 72, 250, + 5, 0, 4, 250, 254, 1, 159, 27, 172, 186, 202, 85, 95, 38, 92, 84, 255, 74, 86, 49, 33, 128, 248, 162, 20, 68, 154, + 95, 27, 96, 138, 55, 53, 125, 165, 199, 219, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1416, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a1738" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14872490611377033431" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13403704256078755213" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17798402083175137742" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39cec24b949108caf699" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "84e248" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "983f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5488" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9560c8726db4c87743d0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10031059280691193336" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b31e9b05e8" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7aa637d674961dd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4489741266498101198" + } + } + } + ] + }, + "cborHex": "bf431a17389f1bce65b369c875d0d71bba03860149f7358d1bf700a065093a01ceff4a39cec24b949108caf6999f4384e248ff42983fbf4254884a9560c8726db4c87743d041731b8b357b44da7be5f841d245b31e9b05e8ff48a7aa637d674961dd1b3e4ec3e4eb081fceff", + "cborBytes": [ + 191, 67, 26, 23, 56, 159, 27, 206, 101, 179, 105, 200, 117, 208, 215, 27, 186, 3, 134, 1, 73, 247, 53, 141, 27, + 247, 0, 160, 101, 9, 58, 1, 206, 255, 74, 57, 206, 194, 75, 148, 145, 8, 202, 246, 153, 159, 67, 132, 226, 72, + 255, 66, 152, 63, 191, 66, 84, 136, 74, 149, 96, 200, 114, 109, 180, 200, 119, 67, 208, 65, 115, 27, 139, 53, 123, + 68, 218, 123, 229, 248, 65, 210, 69, 179, 30, 155, 5, 232, 255, 72, 167, 170, 99, 125, 103, 73, 97, 221, 27, 62, + 78, 195, 228, 235, 8, 31, 206, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1417, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5af803f9ea01050d02ba38c5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16564610275223445549" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11210722440063356635" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4f8fb050f4af8b8c70404" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3737399491243753952" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7796426268367260552" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bc2313" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fedb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "433b" + } + } + ] + }, + "cborHex": "bf4c5af803f9ea01050d02ba38c5d8669f1be5e15148417aa02d9f1b9b947ca98b7a0edb41bfffff4be4f8fb050f4af8b8c704049f1b33dde909234f41e01b6c327862438e0b8843bc2313ff42fedb42433bff", + "cborBytes": [ + 191, 76, 90, 248, 3, 249, 234, 1, 5, 13, 2, 186, 56, 197, 216, 102, 159, 27, 229, 225, 81, 72, 65, 122, 160, 45, + 159, 27, 155, 148, 124, 169, 139, 122, 14, 219, 65, 191, 255, 255, 75, 228, 248, 251, 5, 15, 74, 248, 184, 199, 4, + 4, 159, 27, 51, 221, 233, 9, 35, 79, 65, 224, 27, 108, 50, 120, 98, 67, 142, 11, 136, 67, 188, 35, 19, 255, 66, + 254, 219, 66, 67, 59, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1418, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "92ad2455cdb16e1811" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15361353999324836878" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10660248818491044" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "580af3b3622eaefc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2068917544731658060" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4750157298045526421" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f6fa4267bf42f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8033163737470353845" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e8aa30dd6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10714233101593678404" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2309fc35250420deed49" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15697631227193115139" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7781237463910463097" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3347104848727926541" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6582165761095450181" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c68e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10521247843862105448" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c8" + }, + { + "_tag": "ByteArray", + "bytearray": "f5d6b7a30475ae" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6425513014781343741" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15033217597800722652" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf029f4992ad2455cdb16e18111bd52e7e130ec8740eff0fbf1b0025df70980b1ea448580af3b3622eaefc1b1cb6458b9b4dc74c41401b41ebf2e5293ba195472f6fa4267bf42f1b6f7b87db927841b5451e8aa30dd61b94b09a3d4d3912444a2309fc35250420deed491bd9d9306e77ecc2031b6bfc823f25583679ff1b2e734e204e6a670d9f1b5b588ce2cad53e45438c68e31b9202fb2b873ecd6841c847f5d6b7a30475aeff1b592c020b09b0f7fdd90506801bd0a0b7c17c1030dcd8669f1bffffffffffffffff80ffff", + "cborBytes": [ + 191, 2, 159, 73, 146, 173, 36, 85, 205, 177, 110, 24, 17, 27, 213, 46, 126, 19, 14, 200, 116, 14, 255, 15, 191, + 27, 0, 37, 223, 112, 152, 11, 30, 164, 72, 88, 10, 243, 179, 98, 46, 174, 252, 27, 28, 182, 69, 139, 155, 77, 199, + 76, 65, 64, 27, 65, 235, 242, 229, 41, 59, 161, 149, 71, 47, 111, 164, 38, 123, 244, 47, 27, 111, 123, 135, 219, + 146, 120, 65, 181, 69, 30, 138, 163, 13, 214, 27, 148, 176, 154, 61, 77, 57, 18, 68, 74, 35, 9, 252, 53, 37, 4, + 32, 222, 237, 73, 27, 217, 217, 48, 110, 119, 236, 194, 3, 27, 107, 252, 130, 63, 37, 88, 54, 121, 255, 27, 46, + 115, 78, 32, 78, 106, 103, 13, 159, 27, 91, 88, 140, 226, 202, 213, 62, 69, 67, 140, 104, 227, 27, 146, 2, 251, + 43, 135, 62, 205, 104, 65, 200, 71, 245, 214, 183, 163, 4, 117, 174, 255, 27, 89, 44, 2, 11, 9, 176, 247, 253, + 217, 5, 6, 128, 27, 208, 160, 183, 193, 124, 16, 48, 220, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 255, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1419, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7670484444042426390" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5abb" + }, + { + "_tag": "ByteArray", + "bytearray": "ff47" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18280207722197785657" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3121709165581743680" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8ef9a96fbcd036830f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a1399" + } + } + ] + }, + "cborHex": "bf1b6a7308f63e4ef8169f425abb42ff47ff1bfdb0581215f39c391b2b5289f25294b6404ad8ef9a96fbcd036830f8438a1399ff", + "cborBytes": [ + 191, 27, 106, 115, 8, 246, 62, 78, 248, 22, 159, 66, 90, 187, 66, 255, 71, 255, 27, 253, 176, 88, 18, 21, 243, + 156, 57, 27, 43, 82, 137, 242, 82, 148, 182, 64, 74, 216, 239, 154, 150, 251, 205, 3, 104, 48, 248, 67, 138, 19, + 153, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1420, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "530f549b5e23bca1b30c1c94" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d3b7335ddd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "674193595353797656" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5da05faef878d230328b" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73bcde3e48" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15521653665735699843" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "43d162" + }, + { + "_tag": "ByteArray", + "bytearray": "b0b072c8b4ae0c4d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14678814302847594682" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2257a137e757bf45" + }, + { + "_tag": "ByteArray", + "bytearray": "88d07581" + }, + { + "_tag": "ByteArray", + "bytearray": "d5c32e72edf38c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16987858672136010115" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c530f549b5e23bca1b30c1c949f45d3b7335ddd1b095b3780c0e814184a5da05faef878d230328bff4573bcde3e48d8669f1bd767fdc590d0ed839f4343d16248b0b072c8b4ae0c4dffff41e7d8669f1bcbb59fd6352770ba9f482257a137e757bf454488d0758147d5c32e72edf38c1bebc0ff74ef34b983ffffff", + "cborBytes": [ + 191, 76, 83, 15, 84, 155, 94, 35, 188, 161, 179, 12, 28, 148, 159, 69, 211, 183, 51, 93, 221, 27, 9, 91, 55, 128, + 192, 232, 20, 24, 74, 93, 160, 95, 174, 248, 120, 210, 48, 50, 139, 255, 69, 115, 188, 222, 62, 72, 216, 102, 159, + 27, 215, 103, 253, 197, 144, 208, 237, 131, 159, 67, 67, 209, 98, 72, 176, 176, 114, 200, 180, 174, 12, 77, 255, + 255, 65, 231, 216, 102, 159, 27, 203, 181, 159, 214, 53, 39, 112, 186, 159, 72, 34, 87, 161, 55, 231, 87, 191, 69, + 68, 136, 208, 117, 129, 71, 213, 195, 46, 114, 237, 243, 140, 27, 235, 192, 255, 116, 239, 52, 185, 131, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1421, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "049afc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8076a" + } + } + ] + }, + "cborHex": "bf43049afc14414243f8076aff", + "cborBytes": [191, 67, 4, 154, 252, 20, 65, 66, 67, 248, 7, 106, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1422, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4448943146843307864" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2975993424580113481" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10123313333406229568" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9951758451726557506" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11413081804025592923" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "708294739b" + } + ] + } + } + ] + }, + "cborHex": "bf1b3dbdd2387580ff58d8669f1b294cda408dfef4499f1b8c7d3bd753a764401b8a1bbf95cda72142ffff1bfffffffffffffff0d8669f1b9e63696e816b7c5b9f45708294739bffffff", + "cborBytes": [ + 191, 27, 61, 189, 210, 56, 117, 128, 255, 88, 216, 102, 159, 27, 41, 76, 218, 64, 141, 254, 244, 73, 159, 27, 140, + 125, 59, 215, 83, 167, 100, 64, 27, 138, 27, 191, 149, 205, 167, 33, 66, 255, 255, 27, 255, 255, 255, 255, 255, + 255, 255, 240, 216, 102, 159, 27, 158, 99, 105, 110, 129, 107, 124, 91, 159, 69, 112, 130, 148, 115, 155, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1423, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7488113958245321918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "854ce1e52483a264" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10827542569211745090" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3277270216763777189" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "71746901a0666d1f01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1413894188737567316" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b67eb1ff8a6db4cbe48854ce1e52483a2641b9643289994495342d8669f1b2d7b33e5ff2c20a59f4971746901a0666d1f011b139f294605b11a54ffffff", + "cborBytes": [ + 191, 27, 103, 235, 31, 248, 166, 219, 76, 190, 72, 133, 76, 225, 229, 36, 131, 162, 100, 27, 150, 67, 40, 153, + 148, 73, 83, 66, 216, 102, 159, 27, 45, 123, 51, 229, 255, 44, 32, 165, 159, 73, 113, 116, 105, 1, 160, 102, 109, + 31, 1, 27, 19, 159, 41, 70, 5, 177, 26, 84, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1424, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "59c6c94ab55542d5b515" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87889a07252c5d8b53f12f11" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4a59c6c94ab55542d5b5154279c54c87889a07252c5d8b53f12f1180ff", + "cborBytes": [ + 191, 74, 89, 198, 201, 74, 181, 85, 66, 213, 181, 21, 66, 121, 197, 76, 135, 136, 154, 7, 37, 44, 93, 139, 83, + 241, 47, 17, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1425, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dc" + }, + { + "_tag": "ByteArray", + "bytearray": "3bb75c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1142263295014131568" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d44e051b405f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11175745852262011958" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15531984436722027630" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16879626228901029743" + } + } + ] + } + } + ] + }, + "cborHex": "bf099f41dc433bb75cff129f1b0fda226a3348d77046d44e051b405f1b9b1839a4181f5436ff1bd78cb18d9fb64c6e9f1bea407a9f8303276fffff", + "cborBytes": [ + 191, 9, 159, 65, 220, 67, 59, 183, 92, 255, 18, 159, 27, 15, 218, 34, 106, 51, 72, 215, 112, 70, 212, 78, 5, 27, + 64, 95, 27, 155, 24, 57, 164, 24, 31, 84, 54, 255, 27, 215, 140, 177, 141, 159, 182, 76, 110, 159, 27, 234, 64, + 122, 159, 131, 3, 39, 111, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1426, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3454600136c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "448a3e1d0f4a353388b3" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b4881821dee8c9e50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "857030015674" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "958b7490498fd62362c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4469334203598480660" + } + } + } + ] + }, + "cborHex": "bf463454600136c241b34a448a3e1d0f4a353388b380496b4881821dee8c9e50468570300156744a958b7490498fd62362c41b3e0643c753fda514ff", + "cborBytes": [ + 191, 70, 52, 84, 96, 1, 54, 194, 65, 179, 74, 68, 138, 62, 29, 15, 74, 53, 51, 136, 179, 128, 73, 107, 72, 129, + 130, 29, 238, 140, 158, 80, 70, 133, 112, 48, 1, 86, 116, 74, 149, 139, 116, 144, 73, 143, 214, 35, 98, 196, 27, + 62, 6, 67, 199, 83, 253, 165, 20, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1427, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2374362049549650881" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9693863162941638269" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18210891555282398783" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3142225638847882060" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b20f36db443934bc1801b8687852fb861867d801bfcba156253c4ae3fd8669f1b2b9b6d91ffa7234c80ffff", + "cborBytes": [ + 191, 27, 32, 243, 109, 180, 67, 147, 75, 193, 128, 27, 134, 135, 133, 47, 184, 97, 134, 125, 128, 27, 252, 186, + 21, 98, 83, 196, 174, 63, 216, 102, 159, 27, 43, 155, 109, 145, 255, 167, 35, 76, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1428, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "36" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10317876957297011832" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3681f9f07d5e162f60a59d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11097161130555824442" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14822708108493516468" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ccc" + }, + { + "_tag": "ByteArray", + "bytearray": "5b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9265502324410367581" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6873" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13076675601276545005" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12447093514800651250" + } + } + ] + } + } + ] + }, + "cborHex": "bf41361b8f30766d1be06c784b3681f9f07d5e162f60a59d9f1b9a010940c20d593a1bcdb4d67d980eeeb4424ccc415b1b8095ad45f8093e5dff426873d8669f1bb579af2d191b27ed9f1bacbcf59aabc2dbf2ffffff", + "cborBytes": [ + 191, 65, 54, 27, 143, 48, 118, 109, 27, 224, 108, 120, 75, 54, 129, 249, 240, 125, 94, 22, 47, 96, 165, 157, 159, + 27, 154, 1, 9, 64, 194, 13, 89, 58, 27, 205, 180, 214, 125, 152, 14, 238, 180, 66, 76, 204, 65, 91, 27, 128, 149, + 173, 69, 248, 9, 62, 93, 255, 66, 104, 115, 216, 102, 159, 27, 181, 121, 175, 45, 25, 27, 39, 237, 159, 27, 172, + 188, 245, 154, 171, 194, 219, 242, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1429, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10729720486924843209" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10153760664753190974" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80572e450390" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11628801970886662760" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a55" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13571593645802488713" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13284165991325774097" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13866311107030063892" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3325749462911455445" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15770666103067778055" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3537254668018712195" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4665464091140589008" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9785416878576070714" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10187065636747281119" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c30ae9c9fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10920211040826985960" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2913637902471653853" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16971030841192664631" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15501230477078645554" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15533547571676832874" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b94e79fef3262f8c9bf1b8ce9678714f2b83e4680572e4503901ba161cdc7ce0fda68425a551bbc57fc83f60183891bb85ad6962a4c3111ff1bc06f087c27949b14bf1b2e276f8414c890d51bdadca943a0a61c071b3116da611f58fe831b40bf0edf48c685d01b87ccc8ce42a3703a41d31b8d5fba3925e902df45c30ae9c9fc1b978c621578ca8de81b286f523c34efe9dd1beb8536a2397cce371bd71f6efd67bb4b32ff1bd7923f37576de46a80ff", + "cborBytes": [ + 191, 27, 148, 231, 159, 239, 50, 98, 248, 201, 191, 27, 140, 233, 103, 135, 20, 242, 184, 62, 70, 128, 87, 46, 69, + 3, 144, 27, 161, 97, 205, 199, 206, 15, 218, 104, 66, 90, 85, 27, 188, 87, 252, 131, 246, 1, 131, 137, 27, 184, + 90, 214, 150, 42, 76, 49, 17, 255, 27, 192, 111, 8, 124, 39, 148, 155, 20, 191, 27, 46, 39, 111, 132, 20, 200, + 144, 213, 27, 218, 220, 169, 67, 160, 166, 28, 7, 27, 49, 22, 218, 97, 31, 88, 254, 131, 27, 64, 191, 14, 223, 72, + 198, 133, 208, 27, 135, 204, 200, 206, 66, 163, 112, 58, 65, 211, 27, 141, 95, 186, 57, 37, 233, 2, 223, 69, 195, + 10, 233, 201, 252, 27, 151, 140, 98, 21, 120, 202, 141, 232, 27, 40, 111, 82, 60, 52, 239, 233, 221, 27, 235, 133, + 54, 162, 57, 124, 206, 55, 27, 215, 31, 110, 253, 103, 187, 75, 50, 255, 27, 215, 146, 63, 55, 87, 109, 228, 106, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1430, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3308266363519725301" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6513987612092021399" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e6760821bd18dfa27" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d71a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9131376164118654486" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4012716701785762795" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17315271971900691826" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7001ff38e1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17775755236173047725" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01648e8a0f23" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17877184817631728757" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c80b69789d21857b9920b3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fdc675438e1e08acf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b50" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10334453962100672794" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3512" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7a99a7539deb56ae7a4d5" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12084827272842932830" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4683783422858376867" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "228b222f07" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9017920348678214334" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14495580583477012537" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12901633635305205616" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "791c06ce88cc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14897193172380700510" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "093a7196076b" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2de952bacbf76ef5bf1b5a6655387a0a3a97494e6760821bd18dfa2742d71a1b7eb92a3dbcc2ee16ff1b37b008947a37abebbf1bf04c341e426b1572457001ff38e11bf6b02b35126267ad4601648e8a0f231bf81884dfcef214754bc80b69789d21857b9920b3496fdc675438e1e08acf426b50ff1b8f6b5b1fcea3891abf4235124ba7a99a7539deb56ae7a4d5ff1ba7b5ee6061c1725ebf1b41002435145636a345228b222f071b7d2616c733bb52be1bc92aa5bd633268391bb30bcf6f7e992f7046791c06ce88cc1bcebd7642f6204f5e46093a7196076bffff", + "cborBytes": [ + 191, 27, 45, 233, 82, 186, 203, 247, 110, 245, 191, 27, 90, 102, 85, 56, 122, 10, 58, 151, 73, 78, 103, 96, 130, + 27, 209, 141, 250, 39, 66, 215, 26, 27, 126, 185, 42, 61, 188, 194, 238, 22, 255, 27, 55, 176, 8, 148, 122, 55, + 171, 235, 191, 27, 240, 76, 52, 30, 66, 107, 21, 114, 69, 112, 1, 255, 56, 225, 27, 246, 176, 43, 53, 18, 98, 103, + 173, 70, 1, 100, 142, 138, 15, 35, 27, 248, 24, 132, 223, 206, 242, 20, 117, 75, 200, 11, 105, 120, 157, 33, 133, + 123, 153, 32, 179, 73, 111, 220, 103, 84, 56, 225, 224, 138, 207, 66, 107, 80, 255, 27, 143, 107, 91, 31, 206, + 163, 137, 26, 191, 66, 53, 18, 75, 167, 169, 154, 117, 57, 222, 181, 106, 231, 164, 213, 255, 27, 167, 181, 238, + 96, 97, 193, 114, 94, 191, 27, 65, 0, 36, 53, 20, 86, 54, 163, 69, 34, 139, 34, 47, 7, 27, 125, 38, 22, 199, 51, + 187, 82, 190, 27, 201, 42, 165, 189, 99, 50, 104, 57, 27, 179, 11, 207, 111, 126, 153, 47, 112, 70, 121, 28, 6, + 206, 136, 204, 27, 206, 189, 118, 66, 246, 32, 79, 94, 70, 9, 58, 113, 150, 7, 107, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1431, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6393919925371451438" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c27a9829e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8994b3007b1f45c1d35d25aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7815559928633134357" + } + } + } + ] + }, + "cborHex": "bf1b58bbc44bb20eb82e457c27a9829e4c8994b3007b1f45c1d35d25aa1b6c767258b2f48d15ff", + "cborBytes": [ + 191, 27, 88, 187, 196, 75, 178, 14, 184, 46, 69, 124, 39, 169, 130, 158, 76, 137, 148, 179, 0, 123, 31, 69, 193, + 211, 93, 37, 170, 27, 108, 118, 114, 88, 178, 244, 141, 21, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1432, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "623246336264880433" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8049061227608848810" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3613983361123630353" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9bd9dafe62ea6dcf" + }, + { + "_tag": "ByteArray", + "bytearray": "36791ca81b4c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15780200811243825640" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13579424269874349905" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10897253917607389320" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16653990164482178061" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b94d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1168124227189228720" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c5607fa832d9" + }, + { + "_tag": "ByteArray", + "bytearray": "72163ffcc1c125975147" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14674789899205932076" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16904327498362400051" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16581424357232013472" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12109021556109624892" + } + }, + { + "_tag": "ByteArray", + "bytearray": "76e8ae08f2" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17344789812262056113" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10441473972190737746" + } + } + } + ] + }, + "cborHex": "bf1b08a6373da0a1c1311b6fb4028a6efeb9aa1b322772b81ff23d119f489bd9dafe62ea6dcf4636791ca81b4c1bdafe8907de84e9e8ff1bbc73ce6d342dc7511b973ad2b3b238e8881be71edbd166cf3c0d9f42b94d1b103602cbaf2444b046c5607fa832d94a72163ffcc1c1259751471bcba753a9b7a8f42cff1bea983c4bfac22d33d8669f1be61d0d99cad2f0a09f1ba80be2f2ed76463c4576e8ae08f2ffff1bf0b5127007b1b0b11b90e79141a3ea7552ff", + "cborBytes": [ + 191, 27, 8, 166, 55, 61, 160, 161, 193, 49, 27, 111, 180, 2, 138, 110, 254, 185, 170, 27, 50, 39, 114, 184, 31, + 242, 61, 17, 159, 72, 155, 217, 218, 254, 98, 234, 109, 207, 70, 54, 121, 28, 168, 27, 76, 27, 218, 254, 137, 7, + 222, 132, 233, 232, 255, 27, 188, 115, 206, 109, 52, 45, 199, 81, 27, 151, 58, 210, 179, 178, 56, 232, 136, 27, + 231, 30, 219, 209, 102, 207, 60, 13, 159, 66, 185, 77, 27, 16, 54, 2, 203, 175, 36, 68, 176, 70, 197, 96, 127, + 168, 50, 217, 74, 114, 22, 63, 252, 193, 193, 37, 151, 81, 71, 27, 203, 167, 83, 169, 183, 168, 244, 44, 255, 27, + 234, 152, 60, 75, 250, 194, 45, 51, 216, 102, 159, 27, 230, 29, 13, 153, 202, 210, 240, 160, 159, 27, 168, 11, + 226, 242, 237, 118, 70, 60, 69, 118, 232, 174, 8, 242, 255, 255, 27, 240, 181, 18, 112, 7, 177, 176, 177, 27, 144, + 231, 145, 65, 163, 234, 117, 82, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1433, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7ceca1b4466a9f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + } + ] + }, + "cborHex": "bf48b7ceca1b4466a9f400ff", + "cborBytes": [191, 72, 183, 206, 202, 27, 68, 102, 169, 244, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1434, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0631" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8149c90123" + }, + { + "_tag": "ByteArray", + "bytearray": "0062e204fb0074" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1afe0398" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "831146577ae3d2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c7fef747b5adfd02ff9c7" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1ac552b3299b23c11edecba" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12351304177781788288" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7039152942363142732" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11002657278187921983" + } + }, + { + "_tag": "ByteArray", + "bytearray": "982e158ee041e0c2589722" + }, + { + "_tag": "ByteArray", + "bytearray": "ef" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6a53c18f9d2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "389503421677366644" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f191" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9412301874489773750" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0648de" + } + ] + } + } + ] + }, + "cborHex": "bf420631d905019f458149c90123470062e204fb0074ff441afe039847831146577ae3d24b8c7fef747b5adfd02ff9c7804cb1ac552b3299b23c11edecbad8669f1bab68a5b5ad7b4e809f1b61b0184e59336a4c1b98b14a7ffbc1e23f4b982e158ee041e0c258972241efffff46c6a53c18f9d21b0567cb4c5fe0ed7442f1919f1b829f36afb3b4ceb6430648deffff", + "cborBytes": [ + 191, 66, 6, 49, 217, 5, 1, 159, 69, 129, 73, 201, 1, 35, 71, 0, 98, 226, 4, 251, 0, 116, 255, 68, 26, 254, 3, 152, + 71, 131, 17, 70, 87, 122, 227, 210, 75, 140, 127, 239, 116, 123, 90, 223, 208, 47, 249, 199, 128, 76, 177, 172, + 85, 43, 50, 153, 178, 60, 17, 237, 236, 186, 216, 102, 159, 27, 171, 104, 165, 181, 173, 123, 78, 128, 159, 27, + 97, 176, 24, 78, 89, 51, 106, 76, 27, 152, 177, 74, 127, 251, 193, 226, 63, 75, 152, 46, 21, 142, 224, 65, 224, + 194, 88, 151, 34, 65, 239, 255, 255, 70, 198, 165, 60, 24, 249, 210, 27, 5, 103, 203, 76, 95, 224, 237, 116, 66, + 241, 145, 159, 27, 130, 159, 54, 175, 179, 180, 206, 182, 67, 6, 72, 222, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1435, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0436" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8351211405189962654" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7103048c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98bd684d086d3e6e83" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17989448785104140778" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17277302452245556521" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5acac479dacbe9" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfe9ca61c28f7f01ffeb1b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c2a939fb8d80e862a22beeb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c71417a6668ffa4633e689bf" + } + } + ] + } + } + ] + }, + "cborHex": "bf4204361b73e57686c289db9e447103048cd9050a9f03ff4998bd684d086d3e6e839f1bf9a75c5b9d36f9ea1befc54f0a8f14ed29475acac479dacbe9ff4bbfe9ca61c28f7f01ffeb1bbf0a4c2c2a939fb8d80e862a22beeb1bffffffffffffffeb4cc71417a6668ffa4633e689bfffff", + "cborBytes": [ + 191, 66, 4, 54, 27, 115, 229, 118, 134, 194, 137, 219, 158, 68, 113, 3, 4, 140, 217, 5, 10, 159, 3, 255, 73, 152, + 189, 104, 77, 8, 109, 62, 110, 131, 159, 27, 249, 167, 92, 91, 157, 54, 249, 234, 27, 239, 197, 79, 10, 143, 20, + 237, 41, 71, 90, 202, 196, 121, 218, 203, 233, 255, 75, 191, 233, 202, 97, 194, 143, 127, 1, 255, 235, 27, 191, + 10, 76, 44, 42, 147, 159, 184, 216, 14, 134, 42, 34, 190, 235, 27, 255, 255, 255, 255, 255, 255, 255, 235, 76, + 199, 20, 23, 166, 102, 143, 250, 70, 51, 230, 137, 191, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1436, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "76787e6c44ab371e34" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9446525952648382229" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12909833061179516672" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f23d29587980632c2b3931d8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11062230305548655816" + } + } + ] + } + } + ] + }, + "cborHex": "bf4976787e6c44ab371e349f1b8318cd4dd91d87151bb328f0c51932e700ff4cf23d29587980632c2b3931d89f1b9984efda49c9dcc8ffff", + "cborBytes": [ + 191, 73, 118, 120, 126, 108, 68, 171, 55, 30, 52, 159, 27, 131, 24, 205, 77, 217, 29, 135, 21, 27, 179, 40, 240, + 197, 25, 50, 231, 0, 255, 76, 242, 61, 41, 88, 121, 128, 99, 44, 43, 57, 49, 216, 159, 27, 153, 132, 239, 218, 73, + 201, 220, 200, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1437, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "093caf65040e5ee9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "386051739119785585" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4087134938548157150" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f410c09ac6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6803339454204487266" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e0c4e262dd919982ab41c54" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9082324559966195848" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5005446511164199898" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9652574838064868773" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dbedcf0ba1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11239714939295624324" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10024441559670225181" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "114fba10b9c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1069b6fc73ef31f75" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4eaa" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7137610057839165543" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15445067031851366714" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13819232081785716851" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d9ad5b29b" + } + ] + } + } + ] + }, + "cborHex": "bf48093caf65040e5ee9d8669f1b055b8802e72816719f1b38b86b9271403ade45f410c09ac61b5e6a51301e422662ffff4c4e0c4e262dd919982ab41c54bf1b7e0ae6112b9750881b4576eb14f82913da1b85f4d5ac76baeda545dbedcf0ba11b9bfb7d2fcd5dec841b8b1df87c9bce791d46114fba10b9c949d1069b6fc73ef31f75ff424eaa9f1b630de287eac240671bd657e6a24d98f93a1bbfc7c65c67850073456d9ad5b29bffff", + "cborBytes": [ + 191, 72, 9, 60, 175, 101, 4, 14, 94, 233, 216, 102, 159, 27, 5, 91, 136, 2, 231, 40, 22, 113, 159, 27, 56, 184, + 107, 146, 113, 64, 58, 222, 69, 244, 16, 192, 154, 198, 27, 94, 106, 81, 48, 30, 66, 38, 98, 255, 255, 76, 78, 12, + 78, 38, 45, 217, 25, 152, 42, 180, 28, 84, 191, 27, 126, 10, 230, 17, 43, 151, 80, 136, 27, 69, 118, 235, 20, 248, + 41, 19, 218, 27, 133, 244, 213, 172, 118, 186, 237, 165, 69, 219, 237, 207, 11, 161, 27, 155, 251, 125, 47, 205, + 93, 236, 132, 27, 139, 29, 248, 124, 155, 206, 121, 29, 70, 17, 79, 186, 16, 185, 201, 73, 209, 6, 155, 111, 199, + 62, 243, 31, 117, 255, 66, 78, 170, 159, 27, 99, 13, 226, 135, 234, 194, 64, 103, 27, 214, 87, 230, 162, 77, 152, + 249, 58, 27, 191, 199, 198, 92, 103, 133, 0, 115, 69, 109, 154, 213, 178, 155, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1438, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10815674313302848293" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "783da1a5de" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6040663846664801985" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7e99ba7133df" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14031917900127437219" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df663873" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14564872433255557397" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3748840512801392800" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1530457202853708896" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4101877152821099375" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "455759061290019889" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6053752755862999955" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1774987476181320104" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12369020504904736535" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12692536541106397692" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4f14ff939a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17159363331775349224" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c667e14a8d4d0e0a96c" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17489127261962535281" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "235bd67ac92fb4c6" + } + } + ] + }, + "cborHex": "bf1b9618fe7beabbb3259f45783da1a5de1b53d4bfc384000ec1467e99ba7133dfff1bc2bb62fc628a81a344df6638731bca20d24f5f13a915bf1b34068e958d1ec8a01b153d46b7a00884601b38eccb89ae313b6f1b06532e73975b6c311b5403400eab4193931b18a205b48e8e01a81baba7969d865e9f1741511bb024f2bc774fe1fc46e4f14ff939a51bee224e093a5541e84a2c667e14a8d4d0e0a96cff1bf2b5dc9558e0817148235bd67ac92fb4c6ff", + "cborBytes": [ + 191, 27, 150, 24, 254, 123, 234, 187, 179, 37, 159, 69, 120, 61, 161, 165, 222, 27, 83, 212, 191, 195, 132, 0, 14, + 193, 70, 126, 153, 186, 113, 51, 223, 255, 27, 194, 187, 98, 252, 98, 138, 129, 163, 68, 223, 102, 56, 115, 27, + 202, 32, 210, 79, 95, 19, 169, 21, 191, 27, 52, 6, 142, 149, 141, 30, 200, 160, 27, 21, 61, 70, 183, 160, 8, 132, + 96, 27, 56, 236, 203, 137, 174, 49, 59, 111, 27, 6, 83, 46, 115, 151, 91, 108, 49, 27, 84, 3, 64, 14, 171, 65, + 147, 147, 27, 24, 162, 5, 180, 142, 142, 1, 168, 27, 171, 167, 150, 157, 134, 94, 159, 23, 65, 81, 27, 176, 36, + 242, 188, 119, 79, 225, 252, 70, 228, 241, 79, 249, 57, 165, 27, 238, 34, 78, 9, 58, 85, 65, 232, 74, 44, 102, + 126, 20, 168, 212, 208, 224, 169, 108, 255, 27, 242, 181, 220, 149, 88, 224, 129, 113, 72, 35, 91, 214, 122, 201, + 47, 180, 198, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1439, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13260069242395469625" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "daf8" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15248200509028452427" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f9db6df3ba3" + } + } + ] + }, + "cborHex": "bf1bb8053ab89a10a7399f42daf8ff1bd39c7d931492484b469f9db6df3ba3ff", + "cborBytes": [ + 191, 27, 184, 5, 58, 184, 154, 16, 167, 57, 159, 66, 218, 248, 255, 27, 211, 156, 125, 147, 20, 146, 72, 75, 70, + 159, 157, 182, 223, 59, 163, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1440, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14212230215617153453" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0be3" + } + } + ] + } + } + ] + }, + "cborHex": "bf13bf1bc53bfc14dbef09ad420be3ffff", + "cborBytes": [191, 19, 191, 27, 197, 59, 252, 20, 219, 239, 9, 173, 66, 11, 227, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1441, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7408099892458580190" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17120743459719309042" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10790088763911821438" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4152005093024229820" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17006020950988633870" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "546006191283255552" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17128876314886700544" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17566136657461866441" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11758849334644955177" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b66cedb9a369a68de1bed9919778f2966f21b95be188ffbe5d87e1b399ee2a2435269bc1bec0185f40287370e1b0793cdbcf49a39001bedb5fe41766c7e00a01bf3c7743877fb6fc99f1ba32fd32b36d9d829ffff", + "cborBytes": [ + 191, 27, 102, 206, 219, 154, 54, 154, 104, 222, 27, 237, 153, 25, 119, 143, 41, 102, 242, 27, 149, 190, 24, 143, + 251, 229, 216, 126, 27, 57, 158, 226, 162, 67, 82, 105, 188, 27, 236, 1, 133, 244, 2, 135, 55, 14, 27, 7, 147, + 205, 188, 244, 154, 57, 0, 27, 237, 181, 254, 65, 118, 108, 126, 0, 160, 27, 243, 199, 116, 56, 119, 251, 111, + 201, 159, 27, 163, 47, 211, 43, 54, 217, 216, 41, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1442, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6116988264458184643" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6564919541074775308" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6809370180432936758" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "015a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10666942444419256767" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7956635327575858891" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13224066561832868083" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5961254544954812317" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13494563375879798897" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8350860789234584671" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + }, + "cborHex": "bf0ebf1b54e3e86ad64367c31b5b1b478a48c84d0c1b5e7fbe19fcd7bf3642015a1b940897a3272591bf1b6e6ba5aca37b9ecb1bb7855279502b58f31b52baa16cafb6e79d1bbb4651e4a24fc0711b73e437a49f10cc5fff1bfffffffffffffff402ff", + "cborBytes": [ + 191, 14, 191, 27, 84, 227, 232, 106, 214, 67, 103, 195, 27, 91, 27, 71, 138, 72, 200, 77, 12, 27, 94, 127, 190, + 25, 252, 215, 191, 54, 66, 1, 90, 27, 148, 8, 151, 163, 39, 37, 145, 191, 27, 110, 107, 165, 172, 163, 123, 158, + 203, 27, 183, 133, 82, 121, 80, 43, 88, 243, 27, 82, 186, 161, 108, 175, 182, 231, 157, 27, 187, 70, 81, 228, 162, + 79, 192, 113, 27, 115, 228, 55, 164, 159, 16, 204, 95, 255, 27, 255, 255, 255, 255, 255, 255, 255, 244, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1443, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5540e2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "673943817689866047" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "122cbbb6ef" + } + ] + } + } + ] + }, + "cborHex": "bf435540e2d8669f1b095a5454dbf99f3f9f45122cbbb6efffffff", + "cborBytes": [ + 191, 67, 85, 64, 226, 216, 102, 159, 27, 9, 90, 84, 84, 219, 249, 159, 63, 159, 69, 18, 44, 187, 182, 239, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1444, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa3092" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3429110980936564727" + } + } + } + ] + }, + "cborHex": "bf43fa30921b2f96a644da1d7ff7ff", + "cborBytes": [191, 67, 250, 48, 146, 27, 47, 150, 166, 68, 218, 29, 127, 247, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1445, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3744779071352162373" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3946f60f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15983898226553496376" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5543b853" + } + } + ] + }, + "cborHex": "bf1b33f820b9864348459f443946f60fff1bddd236c02fb7a338445543b853ff", + "cborBytes": [ + 191, 27, 51, 248, 32, 185, 134, 67, 72, 69, 159, 68, 57, 70, 246, 15, 255, 27, 221, 210, 54, 192, 47, 183, 163, + 56, 68, 85, 67, 184, 83, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1446, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "696df0aa7545" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15640152659262750200" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df754a02015e53" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16124361" + } + } + ] + }, + "cborHex": "bf46696df0aa75451bd90cfbfa803cbdf847df754a02015e534416124361ff", + "cborBytes": [ + 191, 70, 105, 109, 240, 170, 117, 69, 27, 217, 12, 251, 250, 128, 60, 189, 248, 71, 223, 117, 74, 2, 1, 94, 83, + 68, 22, 18, 67, 97, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1447, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "54fbfd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + } + ] + }, + "cborHex": "bf4354fbfd1bfffffffffffffff5ff", + "cborBytes": [191, 67, 84, 251, 253, 27, 255, 255, 255, 255, 255, 255, 255, 245, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1448, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0584b1fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f906015800d3affafc" + } + } + ] + }, + "cborHex": "bf440584b1fc49f906015800d3affafcff", + "cborBytes": [191, 68, 5, 132, 177, 252, 73, 249, 6, 1, 88, 0, 211, 175, 250, 252, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1449, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "040102d0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02ab1ff341e15b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12866225373262203857" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8278256258924349210" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0afaa63d2c6115d5b1" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54dd2705" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + }, + "cborHex": "bf44040102d09f4702ab1ff341e15b1bb28e03cf0d694bd11b72e2463518d7071a490afaa63d2c6115d5b1ff4454dd270513ff", + "cborBytes": [ + 191, 68, 4, 1, 2, 208, 159, 71, 2, 171, 31, 243, 65, 225, 91, 27, 178, 142, 3, 207, 13, 105, 75, 209, 27, 114, + 226, 70, 53, 24, 215, 7, 26, 73, 10, 250, 166, 61, 44, 97, 21, 213, 177, 255, 68, 84, 221, 39, 5, 19, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1450, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14816721682267167263" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11735500063013003861" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f" + } + } + ] + }, + "cborHex": "bf07d905029f41a41bcd9f91de1f5cda1f1ba2dcdf214576e255ff0b410fff", + "cborBytes": [ + 191, 7, 217, 5, 2, 159, 65, 164, 27, 205, 159, 145, 222, 31, 92, 218, 31, 27, 162, 220, 223, 33, 69, 118, 226, 85, + 255, 11, 65, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1451, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5592014732175896570" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16697678807945540651" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a25c3edd87cb4ebe" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f705" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5547506314210597041" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10478488448533610593" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15459535785567616915" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4d9ad3c56a186ffa1be7ba12686129742b48a25c3edd87cb4ebebf0042f705011b4cfcb399cfc258b11b916b11b9fde140611bd68b4de38b327f93ffff", + "cborBytes": [ + 191, 27, 77, 154, 211, 197, 106, 24, 111, 250, 27, 231, 186, 18, 104, 97, 41, 116, 43, 72, 162, 92, 62, 221, 135, + 203, 78, 190, 191, 0, 66, 247, 5, 1, 27, 76, 252, 179, 153, 207, 194, 88, 177, 27, 145, 107, 17, 185, 253, 225, + 64, 97, 27, 214, 139, 77, 227, 139, 50, 127, 147, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1452, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "791310005162178447" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1068189147416827934" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1c238b7dfc750987b3f9" + }, + { + "_tag": "ByteArray", + "bytearray": "1c5980" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8195896548699242407" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10605727334819269046" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12417746919447118398" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b0afb4c41d4e7778fd8669f1b0ed2f85ebcb5181e9f4a1c238b7dfc750987b3f9431c59801b71bdac7cc1117fa7ffff1b932f1cd1c88d89b6d8669f1bac54b307fc58c23e80ffff", + "cborBytes": [ + 191, 27, 10, 251, 76, 65, 212, 231, 119, 143, 216, 102, 159, 27, 14, 210, 248, 94, 188, 181, 24, 30, 159, 74, 28, + 35, 139, 125, 252, 117, 9, 135, 179, 249, 67, 28, 89, 128, 27, 113, 189, 172, 124, 193, 17, 127, 167, 255, 255, + 27, 147, 47, 28, 209, 200, 141, 137, 182, 216, 102, 159, 27, 172, 84, 179, 7, 252, 88, 194, 62, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1453, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13690441318674433094" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a94ba2fba175cab1de7b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14685972578506245130" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16457535232137260129" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "169337105399361816" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff48" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7592768261038520779" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "606194" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10106012018900902847" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7668189373349857082" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14359826408046063121" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12384dd856" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17684664238168654284" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3881339b" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8f55fd9f1634c033d94cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1504a9570bc0e1a290" + } + } + ] + }, + "cborHex": "bf1bbdfe37d821eb8446bf4aa94ba2fba175cab1de7b1bcbcf0e4022fe040aff1be464e9190e046c61bf1b02599b333e9f311842ff481b695eee81550fb9cb436061941b8c3fc463226aa3bf1b6a6ae19b74f1873a1bc7485a0957dbee114512384dd8561bf56c8c6d6018c1cc443881339bff4be8f55fd9f1634c033d94cb491504a9570bc0e1a290ff", + "cborBytes": [ + 191, 27, 189, 254, 55, 216, 33, 235, 132, 70, 191, 74, 169, 75, 162, 251, 161, 117, 202, 177, 222, 123, 27, 203, + 207, 14, 64, 34, 254, 4, 10, 255, 27, 228, 100, 233, 25, 14, 4, 108, 97, 191, 27, 2, 89, 155, 51, 62, 159, 49, 24, + 66, 255, 72, 27, 105, 94, 238, 129, 85, 15, 185, 203, 67, 96, 97, 148, 27, 140, 63, 196, 99, 34, 106, 163, 191, + 27, 106, 106, 225, 155, 116, 241, 135, 58, 27, 199, 72, 90, 9, 87, 219, 238, 17, 69, 18, 56, 77, 216, 86, 27, 245, + 108, 140, 109, 96, 24, 193, 204, 68, 56, 129, 51, 155, 255, 75, 232, 245, 95, 217, 241, 99, 76, 3, 61, 148, 203, + 73, 21, 4, 169, 87, 11, 192, 225, 162, 144, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1454, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12279009639833473503" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1519e6a80c12d1" + } + ] + } + } + ] + }, + "cborHex": "bf08d905039f1baa67ce35dfdf11df471519e6a80c12d1ffff", + "cborBytes": [ + 191, 8, 217, 5, 3, 159, 27, 170, 103, 206, 53, 223, 223, 17, 223, 71, 21, 25, 230, 168, 12, 18, 209, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1455, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "220697810339145705" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1517924131154655936" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9155099658129010507" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15096329091681661921" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "040704f95d" + } + } + ] + }, + "cborHex": "bf001bfffffffffffffffe06801b0310137d3bf8a7e9111b1510bff479777ac0021b7f0d72a21e146f4b41031bd180ef533a14b3e145040704f95dff", + "cborBytes": [ + 191, 0, 27, 255, 255, 255, 255, 255, 255, 255, 254, 6, 128, 27, 3, 16, 19, 125, 59, 248, 167, 233, 17, 27, 21, 16, + 191, 244, 121, 119, 122, 192, 2, 27, 127, 13, 114, 162, 30, 20, 111, 75, 65, 3, 27, 209, 128, 239, 83, 58, 20, + 179, 225, 69, 4, 7, 4, 249, 93, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1456, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a42" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9222358292338737297" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1994504826595808225" + } + } + } + ] + }, + "cborHex": "bf12429a421b7ffc6601363a80911b1bade7928c0b93e1ff", + "cborBytes": [ + 191, 18, 66, 154, 66, 27, 127, 252, 102, 1, 54, 58, 128, 145, 27, 27, 173, 231, 146, 140, 11, 147, 225, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1457, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11518146374332170633" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "32af85a1e7a45825a1c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15839813672241910412" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd38f9f805fa30eb70aa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "997ec802d372777891d3" + } + } + ] + }, + "cborHex": "bf1b9fd8ad1a0905c1899f4a32af85a1e7a45825a1c71bdbd2529caa5ad28cff4afd38f9f805fa30eb70aa4a997ec802d372777891d3ff", + "cborBytes": [ + 191, 27, 159, 216, 173, 26, 9, 5, 193, 137, 159, 74, 50, 175, 133, 161, 231, 164, 88, 37, 161, 199, 27, 219, 210, + 82, 156, 170, 90, 210, 140, 255, 74, 253, 56, 249, 248, 5, 250, 48, 235, 112, 170, 74, 153, 126, 200, 2, 211, 114, + 119, 120, 145, 211, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1458, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "085b4fb7e40bdef7ec80" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f77ccb7cec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fe4807eece30df36e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15521077092498311675" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4df3a446998ae1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18303023537678133824" + } + }, + { + "_tag": "ByteArray", + "bytearray": "231f" + }, + { + "_tag": "ByteArray", + "bytearray": "15b832c01c8b4ee26495" + }, + { + "_tag": "ByteArray", + "bytearray": "74775fe853b3b7618396" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44d5fd90402fe33c" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85fb643ea1e6184c39d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17675690444663858181" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e33713c73eff1a" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4a085b4fb7e40bdef7ec8045f77ccb7cec491fe4807eece30df36ed8669f1bd765f161a5d089fb9f474df3a446998ae11bfe0166ef16eb2a4042231f4a15b832c01c8b4ee264954a74775fe853b3b7618396ffff4844d5fd90402fe33c804a85fb643ea1e6184c39d71bf54caacf41f4a40547e33713c73eff1a80ff", + "cborBytes": [ + 191, 74, 8, 91, 79, 183, 228, 11, 222, 247, 236, 128, 69, 247, 124, 203, 124, 236, 73, 31, 228, 128, 126, 236, + 227, 13, 243, 110, 216, 102, 159, 27, 215, 101, 241, 97, 165, 208, 137, 251, 159, 71, 77, 243, 164, 70, 153, 138, + 225, 27, 254, 1, 102, 239, 22, 235, 42, 64, 66, 35, 31, 74, 21, 184, 50, 192, 28, 139, 78, 226, 100, 149, 74, 116, + 119, 95, 232, 83, 179, 183, 97, 131, 150, 255, 255, 72, 68, 213, 253, 144, 64, 47, 227, 60, 128, 74, 133, 251, + 100, 62, 161, 230, 24, 76, 57, 215, 27, 245, 76, 170, 207, 65, 244, 164, 5, 71, 227, 55, 19, 199, 62, 255, 26, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1459, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4591365928651096721" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12736013288838111090" + } + } + } + ] + }, + "cborHex": "bf1b3fb7cefc6b1482911bb0bf689b9fd99f72ff", + "cborBytes": [191, 27, 63, 183, 206, 252, 107, 20, 130, 145, 27, 176, 191, 104, 155, 159, 217, 159, 114, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1460, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "80b32d6b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15934656253126646429" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6302979214464350903" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9721ff" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e0e82e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17439935564558926456" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8b143be349e52" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcc2eb058df87d" + } + } + ] + }, + "cborHex": "bf4480b32d6bbf1bdd23456fd1921a9d1b5778ae3370d17ab7ff439721ff9f43e0e82e1bf20718fec73c8278ff47e8b143be349e5247fcc2eb058df87dff", + "cborBytes": [ + 191, 68, 128, 179, 45, 107, 191, 27, 221, 35, 69, 111, 209, 146, 26, 157, 27, 87, 120, 174, 51, 112, 209, 122, + 183, 255, 67, 151, 33, 255, 159, 67, 224, 232, 46, 27, 242, 7, 24, 254, 199, 60, 130, 120, 255, 71, 232, 177, 67, + 190, 52, 158, 82, 71, 252, 194, 235, 5, 141, 248, 125, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1461, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12207202438261519411" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9983eb5fb2bc64" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34b18e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4c1be1923f5d954" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4309832598825741850" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17899112989666836556" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ae1a18" + }, + { + "_tag": "ByteArray", + "bytearray": "9c86cc478ee052ed01cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11543811700910345422" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2403665c71b982d2367a42" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17909397436344395213" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2853770414860463931" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1ba968b1f0e9dc3433bf479983eb5fb2bc644334b18e48b4c1be1923f5d9541b3bcf99ea06682e1aff1bf8666c6e37ac004c9f43ae1a184a9c86cc478ee052ed01cc1ba033db948ac24cce4b2403665c71b982d2367a42ff1bf88af6148e9965cdd8669f1b279aa1128846ef3b80ffff", + "cborBytes": [ + 191, 27, 169, 104, 177, 240, 233, 220, 52, 51, 191, 71, 153, 131, 235, 95, 178, 188, 100, 67, 52, 177, 142, 72, + 180, 193, 190, 25, 35, 245, 217, 84, 27, 59, 207, 153, 234, 6, 104, 46, 26, 255, 27, 248, 102, 108, 110, 55, 172, + 0, 76, 159, 67, 174, 26, 24, 74, 156, 134, 204, 71, 142, 224, 82, 237, 1, 204, 27, 160, 51, 219, 148, 138, 194, + 76, 206, 75, 36, 3, 102, 92, 113, 185, 130, 210, 54, 122, 66, 255, 27, 248, 138, 246, 20, 142, 153, 101, 205, 216, + 102, 159, 27, 39, 154, 161, 18, 136, 70, 239, 59, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1462, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12191575514042518048" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15513561106613723835" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afd1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29fc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7532132147645666517" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15327412182020047669" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad8d19e1259dfee0faf8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8688356219324025026" + } + }, + { + "_tag": "ByteArray", + "bytearray": "65e5032aeb95" + } + ] + } + } + ] + }, + "cborHex": "bf1ba9312d5616daca204284fc1bd74b3da1d106e2bb42afd14229fcbf1b6887824805b854d51bd4b5e82be34cc335ff4aad8d19e1259dfee0faf89f1b78933df2d6dd48c24665e5032aeb95ffff", + "cborBytes": [ + 191, 27, 169, 49, 45, 86, 22, 218, 202, 32, 66, 132, 252, 27, 215, 75, 61, 161, 209, 6, 226, 187, 66, 175, 209, + 66, 41, 252, 191, 27, 104, 135, 130, 72, 5, 184, 84, 213, 27, 212, 181, 232, 43, 227, 76, 195, 53, 255, 74, 173, + 141, 25, 225, 37, 157, 254, 224, 250, 248, 159, 27, 120, 147, 61, 242, 214, 221, 72, 194, 70, 101, 229, 3, 42, + 235, 149, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1463, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16118389652327133346" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6959082408541902638" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ccb18984b28af3ccd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb0487" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "070103" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bdfb005fd6a4a70a2bf1b6093a0946bcf572e493ccb18984b28af3ccd43bb048743070103ffff", + "cborBytes": [ + 191, 27, 223, 176, 5, 253, 106, 74, 112, 162, 191, 27, 96, 147, 160, 148, 107, 207, 87, 46, 73, 60, 203, 24, 152, + 75, 40, 175, 60, 205, 67, 187, 4, 135, 67, 7, 1, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1464, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f4263953162e4bcf6cf6642f" + }, + { + "_tag": "ByteArray", + "bytearray": "d024726ce6a557c85b1c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25e0055fe8bd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "daf29acab43cab303d62f672" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11679699062358694489" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14166872011214650711" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffba04107d9050d9f4cf4263953162e4bcf6cf6642f4ad024726ce6a557c85b1cff4625e0055fe8bd9f4cdaf29acab43cab303d62f6721ba216a06a5f5a5a591bc49ad708eedf7d57ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 251, 160, 65, 7, 217, 5, 13, 159, 76, 244, 38, 57, 83, 22, 46, 75, + 207, 108, 246, 100, 47, 74, 208, 36, 114, 108, 230, 165, 87, 200, 91, 28, 255, 70, 37, 224, 5, 95, 232, 189, 159, + 76, 218, 242, 154, 202, 180, 60, 171, 48, 61, 98, 246, 114, 27, 162, 22, 160, 106, 95, 90, 90, 89, 27, 196, 154, + 215, 8, 238, 223, 125, 87, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1465, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15972912352464268399" + } + } + } + ] + }, + "cborHex": "bf111bddab2f280d14ec6fff", + "cborBytes": [191, 17, 27, 221, 171, 47, 40, 13, 20, 236, 111, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1466, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13927483472942921302" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ef022c9a534" + } + } + ] + }, + "cborHex": "bf1bc1485c6d7be2f656464ef022c9a534ff", + "cborBytes": [191, 27, 193, 72, 92, 109, 123, 226, 246, 86, 70, 78, 240, 34, 201, 165, 52, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1467, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "567a76b5e2a8ad9271ea1f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0200" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16543734546870329001" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b567a76b5e2a8ad9271ea1fbf4202001be59726eafc905ea9419f4103ffff", + "cborBytes": [ + 191, 75, 86, 122, 118, 181, 226, 168, 173, 146, 113, 234, 31, 191, 66, 2, 0, 27, 229, 151, 38, 234, 252, 144, 94, + 169, 65, 159, 65, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1468, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16969527504278865228" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1beb7fdf5b52c3454cd9050380ff", + "cborBytes": [191, 27, 235, 127, 223, 91, 82, 195, 69, 76, 217, 5, 3, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1469, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "010704" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61b1edcb4ab33f8605" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cc4cf6139" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "192a2b056b06c005058290a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13189470134543804152" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f4a02517f736ade3a1b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06070004fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c664e167cf8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00fc5704f8fbd18104" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "488673" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46c82e268704bd04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe06e0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9961840900585818771" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0050908be22269" + } + ] + } + } + ] + }, + "cborHex": "bf430107044961b1edcb4ab33f8605450cc4cf6139804c192a2b056b06c005058290a71bb70a6934e11b66f84a1f4a02517f736ade3a1bbf41044506070004fd467c664e167cf84900fc5704f8fbd18104ff434886734846c82e268704bd0443fe06e0d8669f1b8a3f9184dc600a939f470050908be22269ffffff", + "cborBytes": [ + 191, 67, 1, 7, 4, 73, 97, 177, 237, 203, 74, 179, 63, 134, 5, 69, 12, 196, 207, 97, 57, 128, 76, 25, 42, 43, 5, + 107, 6, 192, 5, 5, 130, 144, 167, 27, 183, 10, 105, 52, 225, 27, 102, 248, 74, 31, 74, 2, 81, 127, 115, 106, 222, + 58, 27, 191, 65, 4, 69, 6, 7, 0, 4, 253, 70, 124, 102, 78, 22, 124, 248, 73, 0, 252, 87, 4, 248, 251, 209, 129, 4, + 255, 67, 72, 134, 115, 72, 70, 200, 46, 38, 135, 4, 189, 4, 67, 254, 6, 224, 216, 102, 159, 27, 138, 63, 145, 132, + 220, 96, 10, 147, 159, 71, 0, 80, 144, 139, 226, 34, 105, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1470, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14513243169585012272" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34225b67e672" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15457043222064049918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "794ffefa0402" + } + } + ] + }, + "cborHex": "bf1bc96965c4adfa9e304634225b67e6721bd68272ea60fcaefe46794ffefa0402ff", + "cborBytes": [ + 191, 27, 201, 105, 101, 196, 173, 250, 158, 48, 70, 52, 34, 91, 103, 230, 114, 27, 214, 130, 114, 234, 96, 252, + 174, 254, 70, 121, 79, 254, 250, 4, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1471, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e3262ac32" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16358683967056977893" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d32fa89d7a6b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3675256391645615105" + } + } + } + ] + }, + "cborHex": "bf451e3262ac321be305b865614f1fe546d32fa89d7a6b1b3301223742855401ff", + "cborBytes": [ + 191, 69, 30, 50, 98, 172, 50, 27, 227, 5, 184, 101, 97, 79, 31, 229, 70, 211, 47, 168, 157, 122, 107, 27, 51, 1, + 34, 55, 66, 133, 84, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1472, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "237fed296dd87b791ee0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd914acf41cae3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "33ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9bf6c4d2fa6fb64b4bd7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51d3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1600117986064163768" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12845386121088447066" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6806580111873647064" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d31981df88d4f9c7ab689a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10389575202432720243" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "833253319849395681" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b53c6d083980fddb8fbff21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10394875687049728334" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fe1a43e0e675226566a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1e889e7cb3926170582c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae666329" + } + } + ] + }, + "cborHex": "bf4a237fed296dd87b791ee047fd914acf41cae34233ab4a9bf6c4d2fa6fb64b4bd74251d3bf1b1634c2d49e1163b81bb243fa9e8e35b25a1b5e75d48c8777a1d84bd31981df88d4f9c7ab689a1b902f2f99ac359d731b0b904f7ac989c5e1ff4c5b53c6d083980fddb8fbff211b9042045ceaf1914e4a6fe1a43e0e675226566a4be1e889e7cb3926170582c5418a44ae666329ff", + "cborBytes": [ + 191, 74, 35, 127, 237, 41, 109, 216, 123, 121, 30, 224, 71, 253, 145, 74, 207, 65, 202, 227, 66, 51, 171, 74, 155, + 246, 196, 210, 250, 111, 182, 75, 75, 215, 66, 81, 211, 191, 27, 22, 52, 194, 212, 158, 17, 99, 184, 27, 178, 67, + 250, 158, 142, 53, 178, 90, 27, 94, 117, 212, 140, 135, 119, 161, 216, 75, 211, 25, 129, 223, 136, 212, 249, 199, + 171, 104, 154, 27, 144, 47, 47, 153, 172, 53, 157, 115, 27, 11, 144, 79, 122, 201, 137, 197, 225, 255, 76, 91, 83, + 198, 208, 131, 152, 15, 221, 184, 251, 255, 33, 27, 144, 66, 4, 92, 234, 241, 145, 78, 74, 111, 225, 164, 62, 14, + 103, 82, 38, 86, 106, 75, 225, 232, 137, 231, 203, 57, 38, 23, 5, 130, 197, 65, 138, 68, 174, 102, 99, 41, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1473, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1712005184254945137" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bf0003d80141fe0458b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3531180476494569025" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1016291704975673998" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1374460407571286454" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4297680301714409152" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48cc1518187f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7820003626548075933" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58b1643f41354fa378" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8609830877917586471" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8155976571886372006" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10546557642625662455" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8077359744688382770" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14071645405578797731" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7119173413010122337" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12275346400642473303" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2bd76095f0b8e9" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17094446717293488387" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06d8ba6b6042f76062e94d52" + } + } + ] + }, + "cborHex": "bf11071b17c243a4fd24a771d8669f1bfffffffffffffff49f4abf0003d80141fe0458b908ffff1b310145ef3340de41bf1b0e1a97ebcf404a8e1b131310755f2009b61b3ba46d76dde186c04648cc1518187f1b6c863bddbeaa1d9d4958b1643f41354fa3781b777c43910e77a4271b712fd97adbb204a61b925ce64c43e23df71b70188be46130e3321bc34886f10cc822a31b62cc628008dfa661ff1baa5aca83892a1d57d905019f472bd76095f0b8e9ff1bed3bacb8181ee9034c06d8ba6b6042f76062e94d52ff", + "cborBytes": [ + 191, 17, 7, 27, 23, 194, 67, 164, 253, 36, 167, 113, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, + 159, 74, 191, 0, 3, 216, 1, 65, 254, 4, 88, 185, 8, 255, 255, 27, 49, 1, 69, 239, 51, 64, 222, 65, 191, 27, 14, + 26, 151, 235, 207, 64, 74, 142, 27, 19, 19, 16, 117, 95, 32, 9, 182, 27, 59, 164, 109, 118, 221, 225, 134, 192, + 70, 72, 204, 21, 24, 24, 127, 27, 108, 134, 59, 221, 190, 170, 29, 157, 73, 88, 177, 100, 63, 65, 53, 79, 163, + 120, 27, 119, 124, 67, 145, 14, 119, 164, 39, 27, 113, 47, 217, 122, 219, 178, 4, 166, 27, 146, 92, 230, 76, 67, + 226, 61, 247, 27, 112, 24, 139, 228, 97, 48, 227, 50, 27, 195, 72, 134, 241, 12, 200, 34, 163, 27, 98, 204, 98, + 128, 8, 223, 166, 97, 255, 27, 170, 90, 202, 131, 137, 42, 29, 87, 217, 5, 1, 159, 71, 43, 215, 96, 149, 240, 184, + 233, 255, 27, 237, 59, 172, 184, 24, 30, 233, 3, 76, 6, 216, 186, 107, 96, 66, 247, 96, 98, 233, 77, 82, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1474, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ca91c0315f0" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60f62be3ff78a4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1039546346948902761" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0705fb" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a6d45" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1792880691463411581" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e9b45c1392e739bbdd772b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37be050201fd02001d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9481f6e0f708b77b07179e" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae037f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb0879f38dd11cf3" + } + } + ] + }, + "cborHex": "bf460ca91c0315f0a04760f62be3ff78a4d8669f1b0e6d35e51171bf699f430705fbffff437a6d45d8669f1b18e1977d6355577d80ff4c7e9b45c1392e739bbdd772b04937be050201fd02001d4b9481f6e0f708b77b07179ea043ae037f48fb0879f38dd11cf3ff", + "cborBytes": [ + 191, 70, 12, 169, 28, 3, 21, 240, 160, 71, 96, 246, 43, 227, 255, 120, 164, 216, 102, 159, 27, 14, 109, 53, 229, + 17, 113, 191, 105, 159, 67, 7, 5, 251, 255, 255, 67, 122, 109, 69, 216, 102, 159, 27, 24, 225, 151, 125, 99, 85, + 87, 125, 128, 255, 76, 126, 155, 69, 193, 57, 46, 115, 155, 189, 215, 114, 176, 73, 55, 190, 5, 2, 1, 253, 2, 0, + 29, 75, 148, 129, 246, 224, 247, 8, 183, 123, 7, 23, 158, 160, 67, 174, 3, 127, 72, 251, 8, 121, 243, 141, 209, + 28, 243, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1475, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea2bd82af229" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f982" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17727912980426682333" + } + } + } + ] + }, + "cborHex": "bf411fbf46ea2bd82af2291bffffffffffffffecff42f9821bf60632eddf5e6fddff", + "cborBytes": [ + 191, 65, 31, 191, 70, 234, 43, 216, 42, 242, 41, 27, 255, 255, 255, 255, 255, 255, 255, 236, 255, 66, 249, 130, + 27, 246, 6, 50, 237, 223, 94, 111, 221, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1476, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12159188148989556565" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12308150624551759272" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12858934592431774674" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b680f6659876fec" + } + } + ] + }, + "cborHex": "bf1ba8be1d3309a977551baacf55c81a68eda81bb2741ce1dbe0dbd2486b680f6659876fecff", + "cborBytes": [ + 191, 27, 168, 190, 29, 51, 9, 169, 119, 85, 27, 170, 207, 85, 200, 26, 104, 237, 168, 27, 178, 116, 28, 225, 219, + 224, 219, 210, 72, 107, 104, 15, 102, 89, 135, 111, 236, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1477, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6131089198157741053" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b4fb04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9484816017037302772" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15368567725110265639" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + }, + "cborHex": "bf1b551601244e6d3bfdd87b9f43b4fb040d1b83a0d5ea2f719bf4ff1bd5481eeb79bb072707ff", + "cborBytes": [ + 191, 27, 85, 22, 1, 36, 78, 109, 59, 253, 216, 123, 159, 67, 180, 251, 4, 13, 27, 131, 160, 213, 234, 47, 113, + 155, 244, 255, 27, 213, 72, 30, 235, 121, 187, 7, 39, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1478, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "40" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "271620206346155543" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81d68f6d225178" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14627613378871555078" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4772646257380428910" + } + }, + { + "_tag": "ByteArray", + "bytearray": "035e59ea278f8f41" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a03377dad8d7ccbf47a22c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3e3ac72" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb96" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16251175019391390694" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12928251792913770803" + } + }, + { + "_tag": "ByteArray", + "bytearray": "953683b4b2c9" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb3c21d22bc2371849137b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a5eac427d37d0429540917b" + } + } + ] + }, + "cborHex": "bf41401b03c4fd237914b6174781d68f6d2251789f1bcaffb8de1f63f4061b423bd87c09c20c6e48035e59ea278f8f41ff4ba03377dad8d7ccbf47a22c44a3e3ac7242eb96d8669f1be187c593e58693e69f1bb36a6082436ea93346953683b4b2c9ffff4bfb3c21d22bc2371849137b4c1a5eac427d37d0429540917bff", + "cborBytes": [ + 191, 65, 64, 27, 3, 196, 253, 35, 121, 20, 182, 23, 71, 129, 214, 143, 109, 34, 81, 120, 159, 27, 202, 255, 184, + 222, 31, 99, 244, 6, 27, 66, 59, 216, 124, 9, 194, 12, 110, 72, 3, 94, 89, 234, 39, 143, 143, 65, 255, 75, 160, + 51, 119, 218, 216, 215, 204, 191, 71, 162, 44, 68, 163, 227, 172, 114, 66, 235, 150, 216, 102, 159, 27, 225, 135, + 197, 147, 229, 134, 147, 230, 159, 27, 179, 106, 96, 130, 67, 110, 169, 51, 70, 149, 54, 131, 180, 178, 201, 255, + 255, 75, 251, 60, 33, 210, 43, 194, 55, 24, 73, 19, 123, 76, 26, 94, 172, 66, 125, 55, 208, 66, 149, 64, 145, 123, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1479, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1743df3c47754f7f9229" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2136030577642633129" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8dcafe544" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13494380844755928810" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "044e07aafa1c07100480df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2016273240860458212" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b00565030605f1e5fefd00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "342202e8fb6e0007" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a1743df3c47754f7f9229bf1b1da4b47e41c2f7a945e8dcafe5441bbb45abe1cb8346ea41fa4b044e07aafa1c07100480df1b1bfb3dd4739cfce44bb00565030605f1e5fefd0048342202e8fb6e0007ffff", + "cborBytes": [ + 191, 74, 23, 67, 223, 60, 71, 117, 79, 127, 146, 41, 191, 27, 29, 164, 180, 126, 65, 194, 247, 169, 69, 232, 220, + 175, 229, 68, 27, 187, 69, 171, 225, 203, 131, 70, 234, 65, 250, 75, 4, 78, 7, 170, 250, 28, 7, 16, 4, 128, 223, + 27, 27, 251, 61, 212, 115, 156, 252, 228, 75, 176, 5, 101, 3, 6, 5, 241, 229, 254, 253, 0, 72, 52, 34, 2, 232, + 251, 110, 0, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1480, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2899154618056587586" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6318016809607115139" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6709903157719741392" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "262f60" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3dc263ab61c12727c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d392fe9e30097c30c36774a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8742058245437333159" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d3c47f5a68f4d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4519985ee50ab3c9fd7c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66247a924930d1c3865d6e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3384235833467533940" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8724980570992882776" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12244796859081715019" + } + } + } + ] + }, + "cborHex": "bf1b283bddc3c6323942418d1b57ae1ad065943183801b5d1e5d5f112833d0bf43262f60493dc263ab61c12727c74c4d392fe9e30097c30c36774a1b795207a825111ea7475d3c47f5a68f4d4a4519985ee50ab3c9fd7c4b66247a924930d1c3865d6e1b2ef7388f61fafa74ff1b79155b9a363734581ba9ee41de1c626d4bff", + "cborBytes": [ + 191, 27, 40, 59, 221, 195, 198, 50, 57, 66, 65, 141, 27, 87, 174, 26, 208, 101, 148, 49, 131, 128, 27, 93, 30, 93, + 95, 17, 40, 51, 208, 191, 67, 38, 47, 96, 73, 61, 194, 99, 171, 97, 193, 39, 39, 199, 76, 77, 57, 47, 233, 227, 0, + 151, 195, 12, 54, 119, 74, 27, 121, 82, 7, 168, 37, 17, 30, 167, 71, 93, 60, 71, 245, 166, 143, 77, 74, 69, 25, + 152, 94, 229, 10, 179, 201, 253, 124, 75, 102, 36, 122, 146, 73, 48, 209, 195, 134, 93, 110, 27, 46, 247, 56, 143, + 97, 250, 250, 116, 255, 27, 121, 21, 91, 154, 54, 55, 52, 88, 27, 169, 238, 65, 222, 28, 98, 109, 75, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1481, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d4a6532897feb81ab" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10507656792071913766" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3990210361514232400" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11368975341853004264" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17587790552948154389" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13323370187629127360" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15171941111862441263" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14748727569864335866" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a5a921707" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15096306810071136442" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "078d08fb23ceca277be3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17244071188015186184" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5ff0e63b09db4767b768e5b" + } + } + ] + } + } + ] + }, + "cborHex": "bf497d4a6532897feb81abbf1b91d2b22e312ac1261b3760132ec9238a501b9dc6b6d68752d1e81bf4146252e47220151bb8e61e986ca9e6c01bd28d900e8db4b52f1bccae01952ac621fa455a5a9217071bd180db0f6299b8ba4a078d08fb23ceca277be31bef4f3f61eb3181084ce5ff0e63b09db4767b768e5bffff", + "cborBytes": [ + 191, 73, 125, 74, 101, 50, 137, 127, 235, 129, 171, 191, 27, 145, 210, 178, 46, 49, 42, 193, 38, 27, 55, 96, 19, + 46, 201, 35, 138, 80, 27, 157, 198, 182, 214, 135, 82, 209, 232, 27, 244, 20, 98, 82, 228, 114, 32, 21, 27, 184, + 230, 30, 152, 108, 169, 230, 192, 27, 210, 141, 144, 14, 141, 180, 181, 47, 27, 204, 174, 1, 149, 42, 198, 33, + 250, 69, 90, 90, 146, 23, 7, 27, 209, 128, 219, 15, 98, 153, 184, 186, 74, 7, 141, 8, 251, 35, 206, 202, 39, 123, + 227, 27, 239, 79, 63, 97, 235, 49, 129, 8, 76, 229, 255, 14, 99, 176, 157, 180, 118, 123, 118, 142, 91, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1482, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6457b7c978f00e5b" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d24c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10aa2ebf6a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc18e4333e080a" + } + } + ] + }, + "cborHex": "bf486457b7c978f00e5b8042d24c4510aa2ebf6a42f9f347dc18e4333e080aff", + "cborBytes": [ + 191, 72, 100, 87, 183, 201, 120, 240, 14, 91, 128, 66, 210, 76, 69, 16, 170, 46, 191, 106, 66, 249, 243, 71, 220, + 24, 228, 51, 62, 8, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1483, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3803770098757517984" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7368347057816760367" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f4e586198a7287d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9136425150027551674" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9381299638347515882" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "210b69" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13833747164853721965" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "957322cfc430c654c55801" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15620430672256764193" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9104930992462294770" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4660619206343658546" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13125529442248038504" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3049668383373922946" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3576f94d71e5b4e9393e01" + }, + { + "_tag": "ByteArray", + "bytearray": "2d1bd37ecada6b3ce820" + }, + { + "_tag": "ByteArray", + "bytearray": "e939ff43" + } + ] + } + } + ] + }, + "cborHex": "bf1b34c9b4c067b1c2a09f418a1b6641a09c22f6702f487f4e586198a7287dff1b7ecb1a44605653ba1b823112511b3447ea43210b69d8669f1bbffb57c089ac5b6d9f4b957322cfc430c654c558011bd8c6eaef927b09211b7e5b367f6628eef21b40add879a37a0c32ffff4141d8669f1bb6273f7c562018689f1b2a52993ca1be12824b3576f94d71e5b4e9393e014a2d1bd37ecada6b3ce82044e939ff43ffffff", + "cborBytes": [ + 191, 27, 52, 201, 180, 192, 103, 177, 194, 160, 159, 65, 138, 27, 102, 65, 160, 156, 34, 246, 112, 47, 72, 127, + 78, 88, 97, 152, 167, 40, 125, 255, 27, 126, 203, 26, 68, 96, 86, 83, 186, 27, 130, 49, 18, 81, 27, 52, 71, 234, + 67, 33, 11, 105, 216, 102, 159, 27, 191, 251, 87, 192, 137, 172, 91, 109, 159, 75, 149, 115, 34, 207, 196, 48, + 198, 84, 197, 88, 1, 27, 216, 198, 234, 239, 146, 123, 9, 33, 27, 126, 91, 54, 127, 102, 40, 238, 242, 27, 64, + 173, 216, 121, 163, 122, 12, 50, 255, 255, 65, 65, 216, 102, 159, 27, 182, 39, 63, 124, 86, 32, 24, 104, 159, 27, + 42, 82, 153, 60, 161, 190, 18, 130, 75, 53, 118, 249, 77, 113, 229, 180, 233, 57, 62, 1, 74, 45, 27, 211, 126, + 202, 218, 107, 60, 232, 32, 68, 233, 57, 255, 67, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1484, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3080e4473fb81e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f906fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2479a46d87681daebb31d281" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36ec7c03e5c8240ae1582e60" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82674aec" + } + } + ] + }, + "cborHex": "bf473080e4473fb81ebf43f906fd4c2479a46d87681daebb31d281ff4c36ec7c03e5c8240ae1582e604482674aecff", + "cborBytes": [ + 191, 71, 48, 128, 228, 71, 63, 184, 30, 191, 67, 249, 6, 253, 76, 36, 121, 164, 109, 135, 104, 29, 174, 187, 49, + 210, 129, 255, 76, 54, 236, 124, 3, 229, 200, 36, 10, 225, 88, 46, 96, 68, 130, 103, 74, 236, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1485, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4689a1de" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4accbfdcb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b2c8736561e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3759138045965207862" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28044eeb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10e387754b1807" + } + } + ] + }, + "cborHex": "bf4106bf444689a1de45d4accbfdcb469b2c8736561e1b342b2422d3698936ff4428044eeb4710e387754b1807ff", + "cborBytes": [ + 191, 65, 6, 191, 68, 70, 137, 161, 222, 69, 212, 172, 203, 253, 203, 70, 155, 44, 135, 54, 86, 30, 27, 52, 43, 36, + 34, 211, 105, 137, 54, 255, 68, 40, 4, 78, 235, 71, 16, 227, 135, 117, 75, 24, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1486, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d81555" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "23c60c226aeb6ade" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8eff9a3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2631230637430038917" + } + } + } + ] + }, + "cborHex": "bf1343d815554823c60c226aeb6ade44e8eff9a341da1b24840252ea246185ff", + "cborBytes": [ + 191, 19, 67, 216, 21, 85, 72, 35, 198, 12, 34, 106, 235, 106, 222, 68, 232, 239, 249, 163, 65, 218, 27, 36, 132, + 2, 82, 234, 36, 97, 133, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1487, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5283397505780642066" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "51552132418026441" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aedceb7e" + }, + { + "_tag": "ByteArray", + "bytearray": "8ad2607f" + }, + { + "_tag": "ByteArray", + "bytearray": "727a2bb47d6add9ba3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6994243915308713132" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2646948353587956545" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "febd899427" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13584921139581350703" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8542757994346856302" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15964988351814491023" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17807933663814039031" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14525604716887031916" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8052363726185352393" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b49526609f33d71129f1b00b726642c30bbc944aedceb7e448ad2607f49727a2bb47d6add9ba3ff1b61108bc8ac69c4ac1b24bbd980e26a4b4145febd899427d8669f1bbc8755ccea70f32f9f1b768df922672c3f6e1bdd8f0851e126db8f1bf7227d51175b35f71bc9955087b1ca406c1b6fbfbe254d84ccc9ffffff", + "cborBytes": [ + 191, 27, 73, 82, 102, 9, 243, 61, 113, 18, 159, 27, 0, 183, 38, 100, 44, 48, 187, 201, 68, 174, 220, 235, 126, 68, + 138, 210, 96, 127, 73, 114, 122, 43, 180, 125, 106, 221, 155, 163, 255, 27, 97, 16, 139, 200, 172, 105, 196, 172, + 27, 36, 187, 217, 128, 226, 106, 75, 65, 69, 254, 189, 137, 148, 39, 216, 102, 159, 27, 188, 135, 85, 204, 234, + 112, 243, 47, 159, 27, 118, 141, 249, 34, 103, 44, 63, 110, 27, 221, 143, 8, 81, 225, 38, 219, 143, 27, 247, 34, + 125, 81, 23, 91, 53, 247, 27, 201, 149, 80, 135, 177, 202, 64, 108, 27, 111, 191, 190, 37, 77, 132, 204, 201, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1488, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1264846596260799505" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6211877996828796064" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1290736906118325908" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4366629028898120280" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6728184779065150393" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2731075511752949944" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ca473" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7015852686758061492" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b118da347217ca411801b563506204d0ba4a0d8669f1b11e99e60a3ab66949f1b3c9961f76561a258ffff1b5d5f5068bb5e4bb91b25e6bab544cd80b8438ca4739f1b615d50d8d6af25b4ffff", + "cborBytes": [ + 191, 27, 17, 141, 163, 71, 33, 124, 164, 17, 128, 27, 86, 53, 6, 32, 77, 11, 164, 160, 216, 102, 159, 27, 17, 233, + 158, 96, 163, 171, 102, 148, 159, 27, 60, 153, 97, 247, 101, 97, 162, 88, 255, 255, 27, 93, 95, 80, 104, 187, 94, + 75, 185, 27, 37, 230, 186, 181, 68, 205, 128, 184, 67, 140, 164, 115, 159, 27, 97, 93, 80, 216, 214, 175, 37, 180, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1489, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a080012d9f186" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b03a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5967a23df1e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b275fb9a8b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4433ed59816e404b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1dcfef856af" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13004385625974450305" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15919451238423108352" + } + }, + { + "_tag": "ByteArray", + "bytearray": "24" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f49866eb0e3f992b6c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5753444980699825298" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14953722291372532493" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7ea14b82b1fbd3" + }, + { + "_tag": "ByteArray", + "bytearray": "8856376dcb9084d134b4418e" + }, + { + "_tag": "ByteArray", + "bytearray": "a2" + } + ] + } + } + ] + }, + "cborHex": "bf474a080012d9f186a042b03a46c5967a23df1e45b275fb9a8b484433ed59816e404b46d1dcfef856af9f1bb478dbd39e6728811bdced408e755c9b004124ff49f49866eb0e3f992b6cd8669f1b4fd857ba155e04929f1bcf864b321f19a30d477ea14b82b1fbd34c8856376dcb9084d134b4418e41a2ffffff", + "cborBytes": [ + 191, 71, 74, 8, 0, 18, 217, 241, 134, 160, 66, 176, 58, 70, 197, 150, 122, 35, 223, 30, 69, 178, 117, 251, 154, + 139, 72, 68, 51, 237, 89, 129, 110, 64, 75, 70, 209, 220, 254, 248, 86, 175, 159, 27, 180, 120, 219, 211, 158, + 103, 40, 129, 27, 220, 237, 64, 142, 117, 92, 155, 0, 65, 36, 255, 73, 244, 152, 102, 235, 14, 63, 153, 43, 108, + 216, 102, 159, 27, 79, 216, 87, 186, 21, 94, 4, 146, 159, 27, 207, 134, 75, 50, 31, 25, 163, 13, 71, 126, 161, 75, + 130, 177, 251, 211, 76, 136, 86, 55, 109, 203, 144, 132, 209, 52, 180, 65, 142, 65, 162, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1490, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17513923914358960678" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4822195938676241292" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6682388363123109086" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4850756515963395681" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bf30df501e295b226d8669f1b42ebe1a83a20f38c9f1b5cbc9ccfbb282cde1b43515959d1e8de61ffffff", + "cborBytes": [ + 191, 27, 243, 13, 245, 1, 226, 149, 178, 38, 216, 102, 159, 27, 66, 235, 225, 168, 58, 32, 243, 140, 159, 27, 92, + 188, 156, 207, 187, 40, 44, 222, 27, 67, 81, 89, 89, 209, 232, 222, 97, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1491, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3687680871336197989" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14193028234178550074" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1f03f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11448497879065959246" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b813901f00d8cc20d74ce6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5373276738786473641" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1254475697292761514" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6359149552894280747" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fee68b30ec5c98bed7d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3779434324441448868" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f95ae0a58aaea1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2232715652972096193" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16322033062848768672" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8044723813688937528" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3142183693815863112" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8120342838473948453" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31fe657b91b7efda29" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13203434362899911142" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14093281045527356717" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14202783627571750567" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10268928048259873289" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b332d4636dcff3f651bc4f7c3fb294d593a43a1f03f9f1b9ee13c2a0d8a1b4eff4bb813901f00d8cc20d74ce6d8669f1b4a91b6b99f3cb6a99f1b1168cb000c7ed9aa1b58403cd37dd9042b4afee68b30ec5c98bed7d61b34733f7e684041a4ffff47f95ae0a58aaea1bf1b1efc330e93db2ac11be2838297c3482aa01b6fa499af8f0e0c381b2b9b476be8eb57481b70b140c9c5a07d254931fe657b91b7efda291bb73c059927d5d1e61bc39564710667652d1bc51a6c75af25e6a71b8e828fa71c933a09ffff", + "cborBytes": [ + 191, 27, 51, 45, 70, 54, 220, 255, 63, 101, 27, 196, 247, 195, 251, 41, 77, 89, 58, 67, 161, 240, 63, 159, 27, + 158, 225, 60, 42, 13, 138, 27, 78, 255, 75, 184, 19, 144, 31, 0, 216, 204, 32, 215, 76, 230, 216, 102, 159, 27, + 74, 145, 182, 185, 159, 60, 182, 169, 159, 27, 17, 104, 203, 0, 12, 126, 217, 170, 27, 88, 64, 60, 211, 125, 217, + 4, 43, 74, 254, 230, 139, 48, 236, 92, 152, 190, 215, 214, 27, 52, 115, 63, 126, 104, 64, 65, 164, 255, 255, 71, + 249, 90, 224, 165, 138, 174, 161, 191, 27, 30, 252, 51, 14, 147, 219, 42, 193, 27, 226, 131, 130, 151, 195, 72, + 42, 160, 27, 111, 164, 153, 175, 143, 14, 12, 56, 27, 43, 155, 71, 107, 232, 235, 87, 72, 27, 112, 177, 64, 201, + 197, 160, 125, 37, 73, 49, 254, 101, 123, 145, 183, 239, 218, 41, 27, 183, 60, 5, 153, 39, 213, 209, 230, 27, 195, + 149, 100, 113, 6, 103, 101, 45, 27, 197, 26, 108, 117, 175, 37, 230, 167, 27, 142, 130, 143, 167, 28, 147, 58, 9, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1492, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10553972124259135992" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1f3d" + }, + { + "_tag": "ByteArray", + "bytearray": "0f374d32e30fea" + }, + { + "_tag": "ByteArray", + "bytearray": "a41d2024e48a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6789843018407141740" + } + }, + { + "_tag": "ByteArray", + "bytearray": "52c4a07d8773580c93" + } + ] + } + } + ] + }, + "cborHex": "bf14d8669f1b92773dbacbd731f89f421f3d470f374d32e30fea46a41d2024e48a1b5e3a5e4048d2e16c4952c4a07d8773580c93ffffff", + "cborBytes": [ + 191, 20, 216, 102, 159, 27, 146, 119, 61, 186, 203, 215, 49, 248, 159, 66, 31, 61, 71, 15, 55, 77, 50, 227, 15, + 234, 70, 164, 29, 32, 36, 228, 138, 27, 94, 58, 94, 64, 72, 210, 225, 108, 73, 82, 196, 160, 125, 135, 115, 88, + 12, 147, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1493, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7058454328577201889" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4784728971095540045" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17283176598650525729" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15542843092493754755" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "565ac4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16985407595594514903" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7981043" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b61f4aad0862996e1bf1b4266c5a60cab814d1befda2d8bd8e898211bd7b345716fb9618343565ac41bebb84a3734a201d744c7981043ffff", + "cborBytes": [ + 191, 27, 97, 244, 170, 208, 134, 41, 150, 225, 191, 27, 66, 102, 197, 166, 12, 171, 129, 77, 27, 239, 218, 45, + 139, 216, 232, 152, 33, 27, 215, 179, 69, 113, 111, 185, 97, 131, 67, 86, 90, 196, 27, 235, 184, 74, 55, 52, 162, + 1, 215, 68, 199, 152, 16, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1494, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "820499512874442554" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5468208084274459616" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7657717465879350330" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3295449079327913024" + } + }, + { + "_tag": "ByteArray", + "bytearray": "319315243ea59ee29cf28668" + }, + { + "_tag": "ByteArray", + "bytearray": "bc27a5c892" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9808270404241725139" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d09" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12571729854056057860" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b0b62fff5b3431f3a1b4be2fa47e51933e01b6a45ad76800b0c3a9f1b2dbbc97a44ba74404c319315243ea59ee29cf2866845bc27a5c892ff1b881df9f759ce16d3420d091bae77c1b1c32f4c04a0ff", + "cborBytes": [ + 191, 27, 11, 98, 255, 245, 179, 67, 31, 58, 27, 75, 226, 250, 71, 229, 25, 51, 224, 27, 106, 69, 173, 118, 128, + 11, 12, 58, 159, 27, 45, 187, 201, 122, 68, 186, 116, 64, 76, 49, 147, 21, 36, 62, 165, 158, 226, 156, 242, 134, + 104, 69, 188, 39, 165, 200, 146, 255, 27, 136, 29, 249, 247, 89, 206, 22, 211, 66, 13, 9, 27, 174, 119, 193, 177, + 195, 47, 76, 4, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1495, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "598af41c7c5e30110ba0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14267132384512954227" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ec9477feb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6be2cf07c878717294" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f0be7c5f2f4" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4362357026645730880" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1072a84c600548" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d83607149619dd77d92" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0502969ee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91d7328a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecfb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4c8406e0b78413f13" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1870068974992800915" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14199025014691815152" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6732692360094381758" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8753487435666046812" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11029061638474703935" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98b90a20211db12e997dc7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17714714762871416915" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d301ffaf77ed240f" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a598af41c7c5e30110ba01bc5ff09502e5dcf73455ec9477feb496be2cf07c878717294465f0be7c5f2f49f1b3c8a349a5ca5e640471072a84c600548ff4a7d83607149619dd77d9245c0502969ee4491d7328a42ecfb49d4c8406e0b78413f13bf1b19f3d1d31fecbc931bc50d12056d975ef01b5d6f5407b96976be1b797aa271dcb83f5c1b990f19202f2c243f4b98b90a20211db12e997dc71bf5d74f386251a85348d301ffaf77ed240fffff", + "cborBytes": [ + 191, 74, 89, 138, 244, 28, 124, 94, 48, 17, 11, 160, 27, 197, 255, 9, 80, 46, 93, 207, 115, 69, 94, 201, 71, 127, + 235, 73, 107, 226, 207, 7, 200, 120, 113, 114, 148, 70, 95, 11, 231, 197, 242, 244, 159, 27, 60, 138, 52, 154, 92, + 165, 230, 64, 71, 16, 114, 168, 76, 96, 5, 72, 255, 74, 125, 131, 96, 113, 73, 97, 157, 215, 125, 146, 69, 192, + 80, 41, 105, 238, 68, 145, 215, 50, 138, 66, 236, 251, 73, 212, 200, 64, 110, 11, 120, 65, 63, 19, 191, 27, 25, + 243, 209, 211, 31, 236, 188, 147, 27, 197, 13, 18, 5, 109, 151, 94, 240, 27, 93, 111, 84, 7, 185, 105, 118, 190, + 27, 121, 122, 162, 113, 220, 184, 63, 92, 27, 153, 15, 25, 32, 47, 44, 36, 63, 75, 152, 185, 10, 32, 33, 29, 177, + 46, 153, 125, 199, 27, 245, 215, 79, 56, 98, 81, 168, 83, 72, 211, 1, 255, 175, 119, 237, 36, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1496, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "202e442ddc03146a3feb" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2822503579993605572" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2377936549437183257" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3110287937710742683" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8fd1dc9aab2da49c5f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8888236985361834587" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4036565281947881771" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7fc1681e074245f13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6c4913dbac76f551f0ec0" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e9cda39d235d7272a4f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18257873009448867115" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4df1" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54fa25bf09b7" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2f8d4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13360730864808536608" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8731094986939811341" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a202e442ddc03146a3febbf1b272b8c0d3ec985c41b210020b15f9f15191b2b29f6667c6e5c9b498fd1dc9aab2da49c5f1b7b595c723ffb225b1b3804c2bcbf2d912b49b7fc1681e074245f134ba6c4913dbac76f551f0ec0ff4a3e9cda39d235d7272a4f1bfd60fec48a64552b424df1804654fa25bf09b7a043c2f8d4d8669f1bb96ad9eef082aa209f1b792b14a19cbdc60dffffff", + "cborBytes": [ + 191, 74, 32, 46, 68, 45, 220, 3, 20, 106, 63, 235, 191, 27, 39, 43, 140, 13, 62, 201, 133, 196, 27, 33, 0, 32, + 177, 95, 159, 21, 25, 27, 43, 41, 246, 102, 124, 110, 92, 155, 73, 143, 209, 220, 154, 171, 45, 164, 156, 95, 27, + 123, 89, 92, 114, 63, 251, 34, 91, 27, 56, 4, 194, 188, 191, 45, 145, 43, 73, 183, 252, 22, 129, 224, 116, 36, 95, + 19, 75, 166, 196, 145, 61, 186, 199, 111, 85, 31, 14, 192, 255, 74, 62, 156, 218, 57, 210, 53, 215, 39, 42, 79, + 27, 253, 96, 254, 196, 138, 100, 85, 43, 66, 77, 241, 128, 70, 84, 250, 37, 191, 9, 183, 160, 67, 194, 248, 212, + 216, 102, 159, 27, 185, 106, 217, 238, 240, 130, 170, 32, 159, 27, 121, 43, 20, 161, 156, 189, 198, 13, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1497, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8426723588883099209" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10728314269828879111" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10766085399969883382" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a9cd2b4cac5619bb726004f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c503c557a83ea7992c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e66f1135b20c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5ec2a4a276a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "988c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16289273869068118408" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cef686a215296a1e5f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1924552135045849664" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eae1df6cf6d832ae74" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7100985446116658217" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13362997748879580608" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4193155668400370458" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "366371620872269386" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69c48166ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12466856345351031557" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9adc394cd62d95fc9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02de36d1cd" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15521364097771420970" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96cd6a1da9d9f3679a88" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17373997385742433825" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a230f262898a897e8284f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1847676008661482678" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9e59c64" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e6f24c332d24122" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af5739771eb9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16830971227318642262" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7914ad8dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ea437d8b0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "feee123545b4d7e7aab388bd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11239365376445636826" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17598219279570409345" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14548071120739215067" + } + } + } + ] + }, + "cborHex": "bf1b74f1bc7517c82e491b94e2a0fcc3e793071b9568d1a14eb964f6bf4c3a9cd2b4cac5619bb726004f4a9c503c557a83ea7992c1473e66f1135b20c146a5ec2a4a276a42988c1be20f204796dba9884a9cef686a215296a1e5f41b1ab561f85920a24049eae1df6cf6d832ae741b628bc4a3ff008c29ff1bb972e7a7044fddc0bf1b3a3114dd36eb731a1b05159d0c4de02e4a4569c48166ab1bad032bcb3a790b0549f9adc394cd62d95fc94502de36d1cdff1bd766f669452abd2a4a96cd6a1da9d9f3679a881bf11cd69229be3e21bf4b5a230f262898a897e8284f1b19a4438a5c477cb644a9e59c64482e6f24c332d2412246af5739771eb91be9939f282d25e65645b7914ad8dd458ea437d8b04cfeee123545b4d7e7aab388bd1b9bfa3f42dbdde0daff1bf4396f32063997811bc9e5219af6c7a6dbff", + "cborBytes": [ + 191, 27, 116, 241, 188, 117, 23, 200, 46, 73, 27, 148, 226, 160, 252, 195, 231, 147, 7, 27, 149, 104, 209, 161, + 78, 185, 100, 246, 191, 76, 58, 156, 210, 180, 202, 197, 97, 155, 183, 38, 0, 79, 74, 156, 80, 60, 85, 122, 131, + 234, 121, 146, 193, 71, 62, 102, 241, 19, 91, 32, 193, 70, 165, 236, 42, 74, 39, 106, 66, 152, 140, 27, 226, 15, + 32, 71, 150, 219, 169, 136, 74, 156, 239, 104, 106, 33, 82, 150, 161, 229, 244, 27, 26, 181, 97, 248, 89, 32, 162, + 64, 73, 234, 225, 223, 108, 246, 216, 50, 174, 116, 27, 98, 139, 196, 163, 255, 0, 140, 41, 255, 27, 185, 114, + 231, 167, 4, 79, 221, 192, 191, 27, 58, 49, 20, 221, 54, 235, 115, 26, 27, 5, 21, 157, 12, 77, 224, 46, 74, 69, + 105, 196, 129, 102, 171, 27, 173, 3, 43, 203, 58, 121, 11, 5, 73, 249, 173, 195, 148, 205, 98, 217, 95, 201, 69, + 2, 222, 54, 209, 205, 255, 27, 215, 102, 246, 105, 69, 42, 189, 42, 74, 150, 205, 106, 29, 169, 217, 243, 103, + 154, 136, 27, 241, 28, 214, 146, 41, 190, 62, 33, 191, 75, 90, 35, 15, 38, 40, 152, 168, 151, 232, 40, 79, 27, 25, + 164, 67, 138, 92, 71, 124, 182, 68, 169, 229, 156, 100, 72, 46, 111, 36, 195, 50, 210, 65, 34, 70, 175, 87, 57, + 119, 30, 185, 27, 233, 147, 159, 40, 45, 37, 230, 86, 69, 183, 145, 74, 216, 221, 69, 142, 164, 55, 216, 176, 76, + 254, 238, 18, 53, 69, 180, 215, 231, 170, 179, 136, 189, 27, 155, 250, 63, 66, 219, 221, 224, 218, 255, 27, 244, + 57, 111, 50, 6, 57, 151, 129, 27, 201, 229, 33, 154, 246, 199, 166, 219, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1498, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11086006434282650688" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12565731417372739780" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec3e16690c154c4bbdb0" + } + } + ] + } + } + ] + }, + "cborHex": "bf02a004bf131b99d9681da51cbc401bae627225e377c8c44aec3e16690c154c4bbdb0ffff", + "cborBytes": [ + 191, 2, 160, 4, 191, 19, 27, 153, 217, 104, 29, 165, 28, 188, 64, 27, 174, 98, 114, 37, 227, 119, 200, 196, 74, + 236, 62, 22, 105, 12, 21, 76, 75, 189, 176, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1499, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a997" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15289753708708551905" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7025b0a3b4eb4bf6" + }, + { + "_tag": "ByteArray", + "bytearray": "aa16" + }, + { + "_tag": "ByteArray", + "bytearray": "a8b34abd8c0dcf342df4c902" + }, + { + "_tag": "ByteArray", + "bytearray": "7ef289a8c122" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12163414572452480561" + } + } + ] + } + } + ] + }, + "cborHex": "bf42a997d8669f1bd4301dfd4ec8dce19f487025b0a3b4eb4bf642aa164ca8b34abd8c0dcf342df4c902467ef289a8c1221ba8cd211beed70631ffffff", + "cborBytes": [ + 191, 66, 169, 151, 216, 102, 159, 27, 212, 48, 29, 253, 78, 200, 220, 225, 159, 72, 112, 37, 176, 163, 180, 235, + 75, 246, 66, 170, 22, 76, 168, 179, 74, 189, 140, 13, 207, 52, 45, 244, 201, 2, 70, 126, 242, 137, 168, 193, 34, + 27, 168, 205, 33, 27, 238, 215, 6, 49, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1500, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0007" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5816e68b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "534ee952aa852a008338eadd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af80b667db96dbbb4201" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16565906083430500048" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf420007bf445816e68b4c534ee952aa852a008338eadd4aaf80b667db96dbbb42011be5e5ebd01d5b86d0ffff", + "cborBytes": [ + 191, 66, 0, 7, 191, 68, 88, 22, 230, 139, 76, 83, 78, 233, 82, 170, 133, 42, 0, 131, 56, 234, 221, 74, 175, 128, + 182, 103, 219, 150, 219, 187, 66, 1, 27, 229, 229, 235, 208, 29, 91, 134, 208, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1501, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "444838056879743260" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17295619047731200119" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "610017779408269362" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5829606805388880199" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc146e3acc9a6d2dc2c118" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15337924476072979713" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "801290f8" + } + } + ] + }, + "cborHex": "bf1b062c61db1ae4611c9f41001bf00661e3467f80771b087737f0384d70321b50e6ec80bf6769474bcc146e3acc9a6d2dc2c118ff1bd4db410c14196d0144801290f8ff", + "cborBytes": [ + 191, 27, 6, 44, 97, 219, 26, 228, 97, 28, 159, 65, 0, 27, 240, 6, 97, 227, 70, 127, 128, 119, 27, 8, 119, 55, 240, + 56, 77, 112, 50, 27, 80, 230, 236, 128, 191, 103, 105, 71, 75, 204, 20, 110, 58, 204, 154, 109, 45, 194, 193, 24, + 255, 27, 212, 219, 65, 12, 20, 25, 109, 1, 68, 128, 18, 144, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1502, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6474401386119822576" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12561932429854189361" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3320765175419240543" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5631086597678659212" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1705309780315831847" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d732" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7734802670167040509" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16363427688354564795" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10336792221047063453" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d67c96" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e5d66334c2bf4c116931a12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4764752026525433709" + } + } + } + ] + }, + "cborHex": "bf1b59d9b1c200f7fcf0d8669f1bae54f2fd2deb27319f1b2e15ba55375a005f1b4e25a36d0219768c1b17aa7a35c7b97e2742d7321b6b578a0c3b0ca1fdffff1be31692c9102a4abb9f1b8f73a9c22488039d43d67c96ff4c9e5d66334c2bf4c116931a121b421fccb92fdeff6dff", + "cborBytes": [ + 191, 27, 89, 217, 177, 194, 0, 247, 252, 240, 216, 102, 159, 27, 174, 84, 242, 253, 45, 235, 39, 49, 159, 27, 46, + 21, 186, 85, 55, 90, 0, 95, 27, 78, 37, 163, 109, 2, 25, 118, 140, 27, 23, 170, 122, 53, 199, 185, 126, 39, 66, + 215, 50, 27, 107, 87, 138, 12, 59, 12, 161, 253, 255, 255, 27, 227, 22, 146, 201, 16, 42, 74, 187, 159, 27, 143, + 115, 169, 194, 36, 136, 3, 157, 67, 214, 124, 150, 255, 76, 158, 93, 102, 51, 76, 43, 244, 193, 22, 147, 26, 18, + 27, 66, 31, 204, 185, 47, 222, 255, 109, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1503, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11918316519300924195" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14841938417318450893" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4840297084361562142" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d8582" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4322736604455267799" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2666316161397018318" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10985787558830241828" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2898802034195946195" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "773ebf33d7e5365dd8acf1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3760671061279196033" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49c07ecaa731258cceca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9500112903884510723" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b04b7c7beb6b785bf3bd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17490766968217518301" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4100763809160331728" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8951959187466809001" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6767812157187317749" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9900267542155279930" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13395026162523691959" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef7940489f358eebea0faa" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16999296781348420915" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15613231026824816783" + } + } + } + ] + }, + "cborHex": "bf0a9f1ba5665dba759a03231bcdf9285ac67d56cd1b432c308da0bad81e435d8582ff1b3bfd7209f6226dd7bf1b2500a86c0af3cece1b98755b945dfb78241b283a9d17726ddad34b773ebf33d7e5365dd8acf11b34309667c4a343814a49c07ecaa731258cceca1b83d72e5a322416034ab04b7c7beb6b785bf3bd1bf2bbafe335bdc0dd1b38e8d6f528c781d0ff1b7c3bbf7394c0eea91b5dec194cafb85ff51b8964d0e02f7ebe3a071bb9e4b1532e49dbb7bf0a4bef7940489f358eebea0faaff1bebe9a25b43b6bd331bd8ad56e57e00288fff", + "cborBytes": [ + 191, 10, 159, 27, 165, 102, 93, 186, 117, 154, 3, 35, 27, 205, 249, 40, 90, 198, 125, 86, 205, 27, 67, 44, 48, + 141, 160, 186, 216, 30, 67, 93, 133, 130, 255, 27, 59, 253, 114, 9, 246, 34, 109, 215, 191, 27, 37, 0, 168, 108, + 10, 243, 206, 206, 27, 152, 117, 91, 148, 93, 251, 120, 36, 27, 40, 58, 157, 23, 114, 109, 218, 211, 75, 119, 62, + 191, 51, 215, 229, 54, 93, 216, 172, 241, 27, 52, 48, 150, 103, 196, 163, 67, 129, 74, 73, 192, 126, 202, 167, 49, + 37, 140, 206, 202, 27, 131, 215, 46, 90, 50, 36, 22, 3, 74, 176, 75, 124, 123, 235, 107, 120, 91, 243, 189, 27, + 242, 187, 175, 227, 53, 189, 192, 221, 27, 56, 232, 214, 245, 40, 199, 129, 208, 255, 27, 124, 59, 191, 115, 148, + 192, 238, 169, 27, 93, 236, 25, 76, 175, 184, 95, 245, 27, 137, 100, 208, 224, 47, 126, 190, 58, 7, 27, 185, 228, + 177, 83, 46, 73, 219, 183, 191, 10, 75, 239, 121, 64, 72, 159, 53, 142, 235, 234, 15, 170, 255, 27, 235, 233, 162, + 91, 67, 182, 189, 51, 27, 216, 173, 86, 229, 126, 0, 40, 143, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1504, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8211d59a9ab78db460583168" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "492326546328847890" + } + } + } + ] + }, + "cborHex": "bf4c8211d59a9ab78db4605831681b06d51862ab6d0612ff", + "cborBytes": [ + 191, 76, 130, 17, 213, 154, 154, 183, 141, 180, 96, 88, 49, 104, 27, 6, 213, 24, 98, 171, 109, 6, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1505, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "028efa" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4539168094523836656" + } + }, + { + "_tag": "ByteArray", + "bytearray": "65fe15fdcab3" + }, + { + "_tag": "ByteArray", + "bytearray": "698c901425ba3a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0497f7cfc220b7dab7b892" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9be4714b2d56f7905785" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10321934591755934386" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4e80539fdcbfa1b074f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9313759419922730126" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d094b4e633d6" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa75c4a21e49c0dac5846c64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + } + ] + }, + "cborHex": "bf43028efa9f1b3efe5d5519e148f04665fe15fdcab347698c901425ba3aff4b0497f7cfc220b7dab7b892bf4a9be4714b2d56f79057851b8f3ee0d2c06ddab2ff4ab4e80539fdcbfa1b074fbf1b81411ed893f14c8e46d094b4e633d6ff4cfa75c4a21e49c0dac5846c6406ff", + "cborBytes": [ + 191, 67, 2, 142, 250, 159, 27, 62, 254, 93, 85, 25, 225, 72, 240, 70, 101, 254, 21, 253, 202, 179, 71, 105, 140, + 144, 20, 37, 186, 58, 255, 75, 4, 151, 247, 207, 194, 32, 183, 218, 183, 184, 146, 191, 74, 155, 228, 113, 75, 45, + 86, 247, 144, 87, 133, 27, 143, 62, 224, 210, 192, 109, 218, 178, 255, 74, 180, 232, 5, 57, 253, 203, 250, 27, 7, + 79, 191, 27, 129, 65, 30, 216, 147, 241, 76, 142, 70, 208, 148, 180, 230, 51, 214, 255, 76, 250, 117, 196, 162, + 30, 73, 192, 218, 197, 132, 108, 100, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1506, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4264845501505355108" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12059549781294533004" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "15f264faf4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "740708343398742543" + } + } + } + ] + }, + "cborHex": "bf1b3b2fc66333263d64d8669f1ba75c20a1c133498c80ff4515f264faf41b0a4786505a733a0fff", + "cborBytes": [ + 191, 27, 59, 47, 198, 99, 51, 38, 61, 100, 216, 102, 159, 27, 167, 92, 32, 161, 193, 51, 73, 140, 128, 255, 69, + 21, 242, 100, 250, 244, 27, 10, 71, 134, 80, 90, 115, 58, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1507, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9691486534756361068" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8514518685693917129" + } + } + } + ] + }, + "cborHex": "bf1b867f13a7d9a2636c1b7629a5a1fe3637c9ff", + "cborBytes": [191, 27, 134, 127, 19, 167, 217, 162, 99, 108, 27, 118, 41, 165, 161, 254, 54, 55, 201, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1508, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00853cea888e0a74e7759896" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "169d6432" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "49ac1d36ef58a6f50542" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14475580025172831895" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f1289a7ebaaf988" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9a7da825348515bdd224fce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adcada" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "605c40" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1dba201" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1196478969960561973" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1874794909488770035" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "902a4de56d0dc0976a0836c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "565d153ca91a587eb6c8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e886" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1458639828012166344" + } + } + } + ] + }, + "cborHex": "bf4c00853cea888e0a74e7759896412144169d6432bf4a49ac1d36ef58a6f505421bc8e39756862aae97488f1289a7ebaaf9884cb9a7da825348515bdd224fce43adcada43605c4044d1dba2011b109abf48b1b97d35ff4136d8669f1b1a049c097ec9ebf380ff4c902a4de56d0dc0976a0836c14a565d153ca91a587eb6c842e8861b143e213203e6ecc8ff", + "cborBytes": [ + 191, 76, 0, 133, 60, 234, 136, 142, 10, 116, 231, 117, 152, 150, 65, 33, 68, 22, 157, 100, 50, 191, 74, 73, 172, + 29, 54, 239, 88, 166, 245, 5, 66, 27, 200, 227, 151, 86, 134, 42, 174, 151, 72, 143, 18, 137, 167, 235, 170, 249, + 136, 76, 185, 167, 218, 130, 83, 72, 81, 91, 221, 34, 79, 206, 67, 173, 202, 218, 67, 96, 92, 64, 68, 209, 219, + 162, 1, 27, 16, 154, 191, 72, 177, 185, 125, 53, 255, 65, 54, 216, 102, 159, 27, 26, 4, 156, 9, 126, 201, 235, + 243, 128, 255, 76, 144, 42, 77, 229, 109, 13, 192, 151, 106, 8, 54, 193, 74, 86, 93, 21, 60, 169, 26, 88, 126, + 182, 200, 66, 232, 134, 27, 20, 62, 33, 50, 3, 230, 236, 200, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1509, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "05" + }, + { + "_tag": "ByteArray", + "bytearray": "558585" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06ac" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10289560899751465125" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3022232806442070067" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11188680992024402093" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9e5fd7fc1079a0335ed" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7324947579797125031" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3637848254673479886" + } + } + ] + } + } + ] + }, + "cborHex": "bf049f410543558585ff4206ac9f1b8ecbdd1f346f50a51b29f120b99882f0331b9b462e1502c798adff4ae9e5fd7fc1079a0335edd8669f1bfffffffffffffff49f414b1b65a77103bc2a37a71b327c3bb6a69668ceffffff", + "cborBytes": [ + 191, 4, 159, 65, 5, 67, 85, 133, 133, 255, 66, 6, 172, 159, 27, 142, 203, 221, 31, 52, 111, 80, 165, 27, 41, 241, + 32, 185, 152, 130, 240, 51, 27, 155, 70, 46, 21, 2, 199, 152, 173, 255, 74, 233, 229, 253, 127, 193, 7, 154, 3, + 53, 237, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 65, 75, 27, 101, 167, 113, 3, 188, 42, + 55, 167, 27, 50, 124, 59, 182, 166, 150, 104, 206, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1510, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "027c8d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0512020001d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d326f8b9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de5315" + } + ] + } + } + ] + }, + "cborHex": "bf43027c8d460512020001d344d326f8b9d8669f1bffffffffffffffec9f43de5315ffffff", + "cborBytes": [ + 191, 67, 2, 124, 141, 70, 5, 18, 2, 0, 1, 211, 68, 211, 38, 248, 185, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 236, 159, 67, 222, 83, 21, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1511, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0004df" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f27a3cac95c9275" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "038c20694f4920" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6c9f78e014" + }, + { + "_tag": "ByteArray", + "bytearray": "e136d9814708" + } + ] + } + } + ] + }, + "cborHex": "bf430004df480f27a3cac95c927547038c20694f4920d905009f456c9f78e01446e136d9814708ffff", + "cborBytes": [ + 191, 67, 0, 4, 223, 72, 15, 39, 163, 202, 201, 92, 146, 117, 71, 3, 140, 32, 105, 79, 73, 32, 217, 5, 0, 159, 69, + 108, 159, 120, 224, 20, 70, 225, 54, 217, 129, 71, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1512, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10083066538901884989" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3fee0" + } + } + ] + }, + "cborHex": "bf1b8bee3f9841dfd03d43b3fee0ff", + "cborBytes": [191, 27, 139, 238, 63, 152, 65, 223, 208, 61, 67, 179, 254, 224, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1513, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06bc" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12892778926010393314" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7affde1f72654f2b94a3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7320172243583387233" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a063400fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb25cf1cf04e3344bb92db51" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "685e3daf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7062869666302818449" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4206bc9f1bb2ec5a1fd47de2e24a7affde1f72654f2b94a31b659679df21764661ff452a063400fe4ceb25cf1cf04e3344bb92db5144685e3daf1bfffffffffffffffa4192d8669f1b62045a8a72dc789180ffff", + "cborBytes": [ + 191, 66, 6, 188, 159, 27, 178, 236, 90, 31, 212, 125, 226, 226, 74, 122, 255, 222, 31, 114, 101, 79, 43, 148, 163, + 27, 101, 150, 121, 223, 33, 118, 70, 97, 255, 69, 42, 6, 52, 0, 254, 76, 235, 37, 207, 28, 240, 78, 51, 68, 187, + 146, 219, 81, 68, 104, 94, 61, 175, 27, 255, 255, 255, 255, 255, 255, 255, 250, 65, 146, 216, 102, 159, 27, 98, 4, + 90, 138, 114, 220, 120, 145, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1514, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f5a76eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17755927862610836176" + } + } + } + ] + }, + "cborHex": "bf443f5a76eb1bf669ba50ec613ad0ff", + "cborBytes": [191, 68, 63, 90, 118, 235, 27, 246, 105, 186, 80, 236, 97, 58, 208, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1515, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9448305370712632174" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "057051f4fe252ada0a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12343336942581896711" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2929288864318091515" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "569b42d90f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3402816048045469597" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "048563b0c6148f6691" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14805899036080190719" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f687934064dbb" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17752511759414473920" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4548176867729770700" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15794865240254019135" + } + }, + { + "_tag": "ByteArray", + "bytearray": "34c1dacfba3c0853e6e64c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2105427474450845414" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b831f1face6bdeb6e49057051f4fe252ada0a1bab4c578d2d8cd607bf1b28a6ecb3ba2ff0fb45569b42d90f1b2f393b2ab3bfaf9d49048563b0c6148f66911bcd791eba71dbb4ff476f687934064dbbff1bf65d97636ad834c0d8669f1b3f1e5ec390ae88cc9f1bdb32a2405081763f4b34c1dacfba3c0853e6e64c1b1d37fb220afd8ee6ffffff", + "cborBytes": [ + 191, 27, 131, 31, 31, 172, 230, 189, 235, 110, 73, 5, 112, 81, 244, 254, 37, 42, 218, 10, 27, 171, 76, 87, 141, + 45, 140, 214, 7, 191, 27, 40, 166, 236, 179, 186, 47, 240, 251, 69, 86, 155, 66, 217, 15, 27, 47, 57, 59, 42, 179, + 191, 175, 157, 73, 4, 133, 99, 176, 198, 20, 143, 102, 145, 27, 205, 121, 30, 186, 113, 219, 180, 255, 71, 111, + 104, 121, 52, 6, 77, 187, 255, 27, 246, 93, 151, 99, 106, 216, 52, 192, 216, 102, 159, 27, 63, 30, 94, 195, 144, + 174, 136, 204, 159, 27, 219, 50, 162, 64, 80, 129, 118, 63, 75, 52, 193, 218, 207, 186, 60, 8, 83, 230, 230, 76, + 27, 29, 55, 251, 34, 10, 253, 142, 230, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1516, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13270839640390043809" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcf102" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "ByteArray", + "bytearray": "29065fef378103" + }, + { + "_tag": "ByteArray", + "bytearray": "1b50ed4bb75ff84420ef" + } + ] + } + } + ] + }, + "cborHex": "bf1bb82b7e574c9f08a1d905098043fcf1029f0f4729065fef3781034a1b50ed4bb75ff84420efffff", + "cborBytes": [ + 191, 27, 184, 43, 126, 87, 76, 159, 8, 161, 217, 5, 9, 128, 67, 252, 241, 2, 159, 15, 71, 41, 6, 95, 239, 55, 129, + 3, 74, 27, 80, 237, 75, 183, 95, 248, 68, 32, 239, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1517, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a325ea9524fba" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf474a325ea9524fba80ff", + "cborBytes": [191, 71, 74, 50, 94, 169, 82, 79, 186, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1518, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "040417" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7339836803442571806" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1481185533231916032" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e0505b0b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10312601961772601581" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a16147801f407a7a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07c73bd298757d19" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bea2e8f617b5" + }, + { + "_tag": "ByteArray", + "bytearray": "fff6fc" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ef800e3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15456800010836079754" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "530591023607b640052d06" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93375937c920b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "744d438cc2f9223187" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c67eac" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "847969220228728006" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b833596a1f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5581974934868343648" + } + }, + { + "_tag": "ByteArray", + "bytearray": "21bea53ac797fdb372efe8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5506231048258198783" + } + } + ] + } + } + ] + }, + "cborHex": "bf43040417d8669f1b65dc56af42887a1e9f1b148e3a6512bc640044e0505b0b1b8f1db8d88173d0ed48a16147801f407a7affff4807c73bd298757d19d8669f1bfffffffffffffff79f46bea2e8f617b543fff6fcffff444ef800e3d8669f1bfffffffffffffffd9f1bd68195b75a23748affff4b530591023607b640052d06804793375937c920b549744d438cc2f922318743c67eac9f1b0bc497835832c4c645b833596a1f1b4d7728a0f1f63b604b21bea53ac797fdb372efe81b4c6a0ff712a81cffffff", + "cborBytes": [ + 191, 67, 4, 4, 23, 216, 102, 159, 27, 101, 220, 86, 175, 66, 136, 122, 30, 159, 27, 20, 142, 58, 101, 18, 188, + 100, 0, 68, 224, 80, 91, 11, 27, 143, 29, 184, 216, 129, 115, 208, 237, 72, 161, 97, 71, 128, 31, 64, 122, 122, + 255, 255, 72, 7, 199, 59, 210, 152, 117, 125, 25, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, + 70, 190, 162, 232, 246, 23, 181, 67, 255, 246, 252, 255, 255, 68, 78, 248, 0, 227, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 253, 159, 27, 214, 129, 149, 183, 90, 35, 116, 138, 255, 255, 75, 83, 5, 145, 2, 54, 7, + 182, 64, 5, 45, 6, 128, 71, 147, 55, 89, 55, 201, 32, 181, 73, 116, 77, 67, 140, 194, 249, 34, 49, 135, 67, 198, + 126, 172, 159, 27, 11, 196, 151, 131, 88, 50, 196, 198, 69, 184, 51, 89, 106, 31, 27, 77, 119, 40, 160, 241, 246, + 59, 96, 75, 33, 190, 165, 58, 199, 151, 253, 179, 114, 239, 232, 27, 76, 106, 15, 247, 18, 168, 28, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1519, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "047c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3476511475218437779" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fefd16" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5307887549307566876" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9175793194594269384" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3275eb94108377b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10165179703823807299" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf42047cbf1b303f0cc471f6d69343fefd161b49a9679a8c323b1c0241011b7f56f74b883cf8c8483275eb94108377b61b8d11f9154c6db343ffff", + "cborBytes": [ + 191, 66, 4, 124, 191, 27, 48, 63, 12, 196, 113, 246, 214, 147, 67, 254, 253, 22, 27, 73, 169, 103, 154, 140, 50, + 59, 28, 2, 65, 1, 27, 127, 86, 247, 75, 136, 60, 248, 200, 72, 50, 117, 235, 148, 16, 131, 119, 182, 27, 141, 17, + 249, 21, 76, 109, 179, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1520, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8fae00738c76bc4fa" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0507" + }, + { + "_tag": "ByteArray", + "bytearray": "fc700aad02feb4aa" + } + ] + } + } + ] + }, + "cborHex": "bf49a8fae00738c76bc4fa9f42050748fc700aad02feb4aaffff", + "cborBytes": [ + 191, 73, 168, 250, 224, 7, 56, 199, 107, 196, 250, 159, 66, 5, 7, 72, 252, 112, 10, 173, 2, 254, 180, 170, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1521, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1053057317327034703" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17497973516144547705" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4063524301709118758" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "38454920f8d2" + }, + { + "_tag": "ByteArray", + "bytearray": "adc1f5052cb023b5e9c057" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3782139391441680451" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1c52b5adabdf35526" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16674200966336554539" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17737668213272246159" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16254980760027970149" + } + } + } + ] + }, + "cborHex": "bf1b0e9d360cff67594f9f1bf2d54a3466fd1779ff1b386489d2ab8a0d269f4638454920f8d24badc1f5052cb023b5e9c0571b347cdbbce5e4b84349c1c52b5adabdf35526ff1be766a96f67f7262ba01bf628db4303d4778f1be1954ae0f046ba65ff", + "cborBytes": [ + 191, 27, 14, 157, 54, 12, 255, 103, 89, 79, 159, 27, 242, 213, 74, 52, 102, 253, 23, 121, 255, 27, 56, 100, 137, + 210, 171, 138, 13, 38, 159, 70, 56, 69, 73, 32, 248, 210, 75, 173, 193, 245, 5, 44, 176, 35, 181, 233, 192, 87, + 27, 52, 124, 219, 188, 229, 228, 184, 67, 73, 193, 197, 43, 90, 218, 189, 243, 85, 38, 255, 27, 231, 102, 169, + 111, 103, 247, 38, 43, 160, 27, 246, 40, 219, 67, 3, 212, 119, 143, 27, 225, 149, 74, 224, 240, 70, 186, 101, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1522, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbc2d6db068bbd740f67" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "027f04030e3d04a401fffc89" + } + } + ] + } + } + ] + }, + "cborHex": "bf4acbc2d6db068bbd740f679f410eff41fcbf0f4c027f04030e3d04a401fffc89ffff", + "cborBytes": [ + 191, 74, 203, 194, 214, 219, 6, 139, 189, 116, 15, 103, 159, 65, 14, 255, 65, 252, 191, 15, 76, 2, 127, 4, 3, 14, + 61, 4, 164, 1, 255, 252, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1523, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3571" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13331898479167442907" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9ea4e2406075a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f9adc0cf3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c04064b78a652" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe8b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9fa6e2e01fc222506f9" + } + } + ] + }, + "cborHex": "bf0942357113801bb9046b0808588fdb47f9ea4e2406075a1bfffffffffffffff5bf455f9adc0cf3475c04064b78a65242fe8b08ff1bfffffffffffffffd4af9fa6e2e01fc222506f9ff", + "cborBytes": [ + 191, 9, 66, 53, 113, 19, 128, 27, 185, 4, 107, 8, 8, 88, 143, 219, 71, 249, 234, 78, 36, 6, 7, 90, 27, 255, 255, + 255, 255, 255, 255, 255, 245, 191, 69, 95, 154, 220, 12, 243, 71, 92, 4, 6, 75, 120, 166, 82, 66, 254, 139, 8, + 255, 27, 255, 255, 255, 255, 255, 255, 255, 253, 74, 249, 250, 110, 46, 1, 252, 34, 37, 6, 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1524, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0696f95ddffcfc5f06" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16356532008657416116" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27a6b2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "886233322275410922" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5c6cd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2f93" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "97325371984779632" + } + } + ] + } + } + ] + }, + "cborHex": "bf490696f95ddffcfc5f06bf1be2fe13338554efb44327a6b21bfffffffffffffff01b0c4c8882da5713eaff43b5c6cd9f422f931b0159c4e900c91970ffff", + "cborBytes": [ + 191, 73, 6, 150, 249, 93, 223, 252, 252, 95, 6, 191, 27, 226, 254, 19, 51, 133, 84, 239, 180, 67, 39, 166, 178, + 27, 255, 255, 255, 255, 255, 255, 255, 240, 27, 12, 76, 136, 130, 218, 87, 19, 234, 255, 67, 181, 198, 205, 159, + 66, 47, 147, 27, 1, 89, 196, 233, 0, 201, 25, 112, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1525, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "251d434c5dbdc0e8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16329341140452126631" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ef9c0c460" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68c4252011" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32254430ae49f8bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d770e293e6637e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bf675058c0bbd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5e1833a77414603d24181c4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "607437957128f0b835eabd83" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5354966027053336537" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4020158763625539028" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77e972a6922bca478b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8842387244890872593" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "838c8817df0fa3cbc3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7564560251116260479" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e40007dae6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "836a" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de8ce2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2871805480573940744" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14298317483945436699" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17766676290880009521" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b44fa167b8e8df89ec1eb297" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ed7bd3d6d036d587e381b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4139976586162379598" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2f0afc57a58a2ceadc172" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17326100587695900433" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf48251d434c5dbdc0e8bf413e1be29d79402cd22fa7ff452ef9c0c4604568c42520114832254430ae49f8bd47d770e293e6637e475bf675058c0bbd4ce5e1833a77414603d24181c44c607437957128f0b835eabd83bf1b4a50a93ad2cc87d91b37ca79188692e5d44977e972a6922bca478b1b7ab67859aa2a5b1149838c8817df0fa3cbc31b68fab77839d30c7f45e40007dae642836aff43de8ce2bf1b27dab3de7da134081bc66dd3fef453261b1bf68fe9f46541f5314cb44fa167b8e8df89ec1eb2974b1ed7bd3d6d036d587e381b1b397426c544a49b4e4ba2f0afc57a58a2ceadc1721bf072acafd84d0711ffff", + "cborBytes": [ + 191, 72, 37, 29, 67, 76, 93, 189, 192, 232, 191, 65, 62, 27, 226, 157, 121, 64, 44, 210, 47, 167, 255, 69, 46, + 249, 192, 196, 96, 69, 104, 196, 37, 32, 17, 72, 50, 37, 68, 48, 174, 73, 248, 189, 71, 215, 112, 226, 147, 230, + 99, 126, 71, 91, 246, 117, 5, 140, 11, 189, 76, 229, 225, 131, 58, 119, 65, 70, 3, 210, 65, 129, 196, 76, 96, 116, + 55, 149, 113, 40, 240, 184, 53, 234, 189, 131, 191, 27, 74, 80, 169, 58, 210, 204, 135, 217, 27, 55, 202, 121, 24, + 134, 146, 229, 212, 73, 119, 233, 114, 166, 146, 43, 202, 71, 139, 27, 122, 182, 120, 89, 170, 42, 91, 17, 73, + 131, 140, 136, 23, 223, 15, 163, 203, 195, 27, 104, 250, 183, 120, 57, 211, 12, 127, 69, 228, 0, 7, 218, 230, 66, + 131, 106, 255, 67, 222, 140, 226, 191, 27, 39, 218, 179, 222, 125, 161, 52, 8, 27, 198, 109, 211, 254, 244, 83, + 38, 27, 27, 246, 143, 233, 244, 101, 65, 245, 49, 76, 180, 79, 161, 103, 184, 232, 223, 137, 236, 30, 178, 151, + 75, 30, 215, 189, 61, 109, 3, 109, 88, 126, 56, 27, 27, 57, 116, 38, 197, 68, 164, 155, 78, 75, 162, 240, 175, + 197, 122, 88, 162, 206, 173, 193, 114, 27, 240, 114, 172, 175, 216, 77, 7, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1526, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "921595607719489982" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff0564002e1d06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6446062209280607237" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4ca800" + }, + { + "_tag": "ByteArray", + "bytearray": "6d" + }, + { + "_tag": "ByteArray", + "bytearray": "028b" + }, + { + "_tag": "ByteArray", + "bytearray": "074704" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "60334342076612951" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16327361677026994735" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "414006040236044146" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + } + ] + }, + "cborHex": "bf1b0cca2a5288ae31be47ff0564002e1d061b5975036d383d8405d87e9f434ca800416d42028b430747041b00d659c3b33bc157ff1be29670f06e852a2f1b05bed84cd322af721bfffffffffffffffb0dff", + "cborBytes": [ + 191, 27, 12, 202, 42, 82, 136, 174, 49, 190, 71, 255, 5, 100, 0, 46, 29, 6, 27, 89, 117, 3, 109, 56, 61, 132, 5, + 216, 126, 159, 67, 76, 168, 0, 65, 109, 66, 2, 139, 67, 7, 71, 4, 27, 0, 214, 89, 195, 179, 59, 193, 87, 255, 27, + 226, 150, 112, 240, 110, 133, 42, 47, 27, 5, 190, 216, 76, 211, 34, 175, 114, 27, 255, 255, 255, 255, 255, 255, + 255, 251, 13, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1527, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9442b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ffb091ade3b93" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f687a0e1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7441949946945804672" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf439442b3478ffb091ade3b9344f687a0e1d8669f1b67471e0c2ff1198080ffff", + "cborBytes": [ + 191, 67, 148, 66, 179, 71, 143, 251, 9, 26, 222, 59, 147, 68, 246, 135, 160, 225, 216, 102, 159, 27, 103, 71, 30, + 12, 47, 241, 25, 128, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1528, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15259357182648652865" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13814278311959319115" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f51d7a13f8be2672bd5752" + }, + { + "_tag": "ByteArray", + "bytearray": "ad67926c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fef181298dbfe002" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82e2" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bd3c4208294941441d8669f1bbfb62ceefcb7d24b9f4bf51d7a13f8be2672bd575244ad67926cffff414fbf48fef181298dbfe0024282e2ffff", + "cborBytes": [ + 191, 27, 211, 196, 32, 130, 148, 148, 20, 65, 216, 102, 159, 27, 191, 182, 44, 238, 252, 183, 210, 75, 159, 75, + 245, 29, 122, 19, 248, 190, 38, 114, 189, 87, 82, 68, 173, 103, 146, 108, 255, 255, 65, 79, 191, 72, 254, 241, + 129, 41, 141, 191, 224, 2, 66, 130, 226, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1529, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7638149705155714613" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b6a0028b02d0f9e35a0ff", + "cborBytes": [191, 27, 106, 0, 40, 176, 45, 15, 158, 53, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1530, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3995618612982161071" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2818671000829369381" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17954716572665551977" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5742045961220962847" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3260773980379664910" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9758594770808094749" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9718d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11652567554150158348" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7decc38c355d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14842049287958323916" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3985472700086957377" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17196886606988993815" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14271769724800014594" + } + } + } + ] + }, + "cborHex": "bf1b377349f574bd9eafbf1b271dee575f211c251bf92bf7983c8c9c69ff1b4fafd8610a8aba1f1b2d4098a8a95dd20e1b876d7e3da500401d43f9718d1ba1b63c73da5cd00c467decc38c355d1bcdf98d30db9862cc9f1b374f3e4e06b33541ff1beea79d418c4065171bc60f82f31ae11902ff", + "cborBytes": [ + 191, 27, 55, 115, 73, 245, 116, 189, 158, 175, 191, 27, 39, 29, 238, 87, 95, 33, 28, 37, 27, 249, 43, 247, 152, + 60, 140, 156, 105, 255, 27, 79, 175, 216, 97, 10, 138, 186, 31, 27, 45, 64, 152, 168, 169, 93, 210, 14, 27, 135, + 109, 126, 61, 165, 0, 64, 29, 67, 249, 113, 141, 27, 161, 182, 60, 115, 218, 92, 208, 12, 70, 125, 236, 195, 140, + 53, 93, 27, 205, 249, 141, 48, 219, 152, 98, 204, 159, 27, 55, 79, 62, 78, 6, 179, 53, 65, 255, 27, 238, 167, 157, + 65, 140, 64, 101, 23, 27, 198, 15, 130, 243, 26, 225, 25, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1531, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4aa83433ed4d1459" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13ffdde1bd01da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4300860f03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24e51c1826" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e548747a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af16b7e05b0ee5d1018082" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c56" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "166848679261416274" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a40342759" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17557578142647245034" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb88151a020301185e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab36a3286a99" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5d4c1e4aad32ccf5e1c5282" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf484aa83433ed4d1459bf4713ffdde1bd01da454300860f034524e51c182641cc452e548747a14baf16b7e05b0ee5d1018082423c561b0250c3fd629eab52456a403427591bf3a90c4bf4a6d8eaff49bb88151a020301185e46ab36a3286a994cf5d4c1e4aad32ccf5e1c528280ff", + "cborBytes": [ + 191, 72, 74, 168, 52, 51, 237, 77, 20, 89, 191, 71, 19, 255, 221, 225, 189, 1, 218, 69, 67, 0, 134, 15, 3, 69, 36, + 229, 28, 24, 38, 65, 204, 69, 46, 84, 135, 71, 161, 75, 175, 22, 183, 224, 91, 14, 229, 209, 1, 128, 130, 66, 60, + 86, 27, 2, 80, 195, 253, 98, 158, 171, 82, 69, 106, 64, 52, 39, 89, 27, 243, 169, 12, 75, 244, 166, 216, 234, 255, + 73, 187, 136, 21, 26, 2, 3, 1, 24, 94, 70, 171, 54, 163, 40, 106, 153, 76, 245, 212, 193, 228, 170, 211, 44, 207, + 94, 28, 82, 130, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1532, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1446296341120096120" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17133979300713130591" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3421980153152303220" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5db" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6601060594443684710" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15719233229099237017" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bb16c0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1253072220966585015" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f22d43f573" + }, + { + "_tag": "ByteArray", + "bytearray": "bd" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7737979763425209283" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6215757789209390534" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10875804062186251720" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15095147326566247303" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8101654771083857686" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11627616454828928026" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aea7cebac48eda6610122521" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3141887292086272426" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7666c46719" + } + ] + } + } + ] + }, + "cborHex": "bf1b141246dc046917781bedc81f64efe6ea5f1b2f7d50d1a114707442b5db1b5b9bada300a50b66d8669f1bda25ef5679f9fe999f43bb16c01b1163ce8bc09f82b745f22d43f57341bdffff1b6b62d398e61eebc31b5642cec6dbb16dc61b96ee9e2c0d5ca5c8a01bd17cbc84182b2b87d8669f1b706edc17034d4f169f1ba15d978f5690ac1a4caea7cebac48eda66101225211b2b9a39d8811dc1aa457666c46719ffffff", + "cborBytes": [ + 191, 27, 20, 18, 70, 220, 4, 105, 23, 120, 27, 237, 200, 31, 100, 239, 230, 234, 95, 27, 47, 125, 80, 209, 161, + 20, 112, 116, 66, 181, 219, 27, 91, 155, 173, 163, 0, 165, 11, 102, 216, 102, 159, 27, 218, 37, 239, 86, 121, 249, + 254, 153, 159, 67, 187, 22, 192, 27, 17, 99, 206, 139, 192, 159, 130, 183, 69, 242, 45, 67, 245, 115, 65, 189, + 255, 255, 27, 107, 98, 211, 152, 230, 30, 235, 195, 27, 86, 66, 206, 198, 219, 177, 109, 198, 27, 150, 238, 158, + 44, 13, 92, 165, 200, 160, 27, 209, 124, 188, 132, 24, 43, 43, 135, 216, 102, 159, 27, 112, 110, 220, 23, 3, 77, + 79, 22, 159, 27, 161, 93, 151, 143, 86, 144, 172, 26, 76, 174, 167, 206, 186, 196, 142, 218, 102, 16, 18, 37, 33, + 27, 43, 154, 57, 216, 129, 29, 193, 170, 69, 118, 102, 196, 103, 25, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1533, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8593682548437796901" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4acf008b3bfa07ca077f04" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17170777556983772000" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34600d73a6bf1f06ba71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7026823063883019778" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46f27097affe04e8cdad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3d012ac64ac84df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfba114688af36e3688d5b39" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b67a45cd81e9255301" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14499264774107531184" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0c9f0102ff1b7742e4bf1c1bc8254b4acf008b3bfa07ca077f041bffffffffffffffefbf41241bee4adb36a14473604a34600d73a6bf1f06ba711b61844a58ce44f6024a46f27097affe04e8cdad48b3d012ac64ac84df414b4cdfba114688af36e3688d5b3942a4f349b67a45cd81e925530141d91bc937bc7ddd0387b0ffff", + "cborBytes": [ + 191, 12, 159, 1, 2, 255, 27, 119, 66, 228, 191, 28, 27, 200, 37, 75, 74, 207, 0, 139, 59, 250, 7, 202, 7, 127, 4, + 27, 255, 255, 255, 255, 255, 255, 255, 239, 191, 65, 36, 27, 238, 74, 219, 54, 161, 68, 115, 96, 74, 52, 96, 13, + 115, 166, 191, 31, 6, 186, 113, 27, 97, 132, 74, 88, 206, 68, 246, 2, 74, 70, 242, 112, 151, 175, 254, 4, 232, + 205, 173, 72, 179, 208, 18, 172, 100, 172, 132, 223, 65, 75, 76, 223, 186, 17, 70, 136, 175, 54, 227, 104, 141, + 91, 57, 66, 164, 243, 73, 182, 122, 69, 205, 129, 233, 37, 83, 1, 65, 217, 27, 201, 55, 188, 125, 221, 3, 135, + 176, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1534, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22f0232f8ef73813" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6647321397224137565" + } + } + } + ] + }, + "cborHex": "bf4822f0232f8ef738131b5c4007977d65e35dff", + "cborBytes": [191, 72, 34, 240, 35, 47, 142, 247, 56, 19, 27, 92, 64, 7, 151, 125, 101, 227, 93, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1535, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0dc710d2e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4341622197561495370" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ff6799012a9f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6818503988465726447" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e721ea9b973b12d87d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17010895809863668923" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b052e09c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1ae9d6f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbaef6cf7316105223f4" + } + } + ] + }, + "cborHex": "bf450dc710d2e81b3c408a62c29a8f4a471ff6799012a9f21b5ea03140641573ef49e721ea9b973b12d87d9f1bec12d79c8a1ad4bb44b052e09cff44f1ae9d6f4afbaef6cf7316105223f4ff", + "cborBytes": [ + 191, 69, 13, 199, 16, 210, 232, 27, 60, 64, 138, 98, 194, 154, 143, 74, 71, 31, 246, 121, 144, 18, 169, 242, 27, + 94, 160, 49, 64, 100, 21, 115, 239, 73, 231, 33, 234, 155, 151, 59, 18, 216, 125, 159, 27, 236, 18, 215, 156, 138, + 26, 212, 187, 68, 176, 82, 224, 156, 255, 68, 241, 174, 157, 111, 74, 251, 174, 246, 207, 115, 22, 16, 82, 35, + 244, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1536, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8a60653ceb45cc" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "378bfc05e1c90284" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2913e8164ec7480" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0509" + } + ] + } + } + ] + }, + "cborHex": "bf03d8669f1bfffffffffffffffa9f07ffff04d8669f1bfffffffffffffff39f478a60653ceb45ccffff0a48378bfc05e1c9028448a2913e8164ec74809f1bffffffffffffffed420509ffff", + "cborBytes": [ + 191, 3, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 7, 255, 255, 4, 216, 102, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 243, 159, 71, 138, 96, 101, 60, 235, 69, 204, 255, 255, 10, 72, 55, 139, 252, 5, + 225, 201, 2, 132, 72, 162, 145, 62, 129, 100, 236, 116, 128, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 66, + 5, 9, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1537, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2126560876879823900" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13027228674140868840" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4250350418373039948" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16106087508602802921" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1d830fd9bbaa441c41301bb4ca037539f310e8d8669f1b3afc472faa0ed74c9f1bdf8451415fa052e9ffffff", + "cborBytes": [ + 191, 27, 29, 131, 15, 217, 187, 170, 68, 28, 65, 48, 27, 180, 202, 3, 117, 57, 243, 16, 232, 216, 102, 159, 27, + 58, 252, 71, 47, 170, 14, 215, 76, 159, 27, 223, 132, 81, 65, 95, 160, 82, 233, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1538, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2691983661821391963" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7781101ff0ceff1d0baa" + } + } + ] + } + } + ] + }, + "cborHex": "bf00bf1b255bd8e0b004f45b4a7781101ff0ceff1d0baaffff", + "cborBytes": [ + 191, 0, 191, 27, 37, 91, 216, 224, 176, 4, 244, 91, 74, 119, 129, 16, 31, 240, 206, 255, 29, 11, 170, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1539, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5801007001" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe7e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86f59a1b" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "890004" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d54e93bbe1bd5bd22ffb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9034cff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "749c" + } + } + ] + }, + "cborHex": "bf45580100700142fe7e4486f59a1ba043890004a04ad54e93bbe1bd5bd22ffb0044f9034cff42749cff", + "cborBytes": [ + 191, 69, 88, 1, 0, 112, 1, 66, 254, 126, 68, 134, 245, 154, 27, 160, 67, 137, 0, 4, 160, 74, 213, 78, 147, 187, + 225, 189, 91, 210, 47, 251, 0, 68, 249, 3, 76, 255, 66, 116, 156, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1540, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "97" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2540181565482591658" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdb2d0899b28" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2691061132966799134" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dab31a82" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14432994879656421897" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a49583b887bc6d" + }, + { + "_tag": "ByteArray", + "bytearray": "2f4c034544b4e2e1de" + }, + { + "_tag": "ByteArray", + "bytearray": "f3475a8c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17065237005950582048" + } + } + ] + } + } + ] + }, + "cborHex": "bf4197bf415f1b234089ace395e5aa46bdb2d0899b281b255891d7b358a71eff44dab31a829f1bc84c4c5faef3ea0947a49583b887bc6d492f4c034544b4e2e1de44f3475a8c1becd3e6a43388fd20ffff", + "cborBytes": [ + 191, 65, 151, 191, 65, 95, 27, 35, 64, 137, 172, 227, 149, 229, 170, 70, 189, 178, 208, 137, 155, 40, 27, 37, 88, + 145, 215, 179, 88, 167, 30, 255, 68, 218, 179, 26, 130, 159, 27, 200, 76, 76, 95, 174, 243, 234, 9, 71, 164, 149, + 131, 184, 135, 188, 109, 73, 47, 76, 3, 69, 68, 180, 226, 225, 222, 68, 243, 71, 90, 140, 27, 236, 211, 230, 164, + 51, 136, 253, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1541, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "716547252902579799" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16436123107747398342" + } + } + } + ] + }, + "cborHex": "bf1b09f1afee1a0a4e571be418d6e259df82c6ff", + "cborBytes": [191, 27, 9, 241, 175, 238, 26, 10, 78, 87, 27, 228, 24, 214, 226, 89, 223, 130, 198, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1542, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0828" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "10f6a05c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57229470776454e98c9b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "593140561a37f80b6f1704ab" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15538209478130376494" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4721590472550013628" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6768288108655983509" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13006576159394111723" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a00f27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e76d5daf17fc38" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e197f7317d980093c0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6940ab2394a12122" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16231013358480987035" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf420828a04410f6a05c4a57229470776454e98c9b4c593140561a37f80b6f1704abd8669f1bd7a2cf3205919f2e9f1b41867584cb365abc1b5dedca2cc5f0bb951bb480a41aecc020ebffff43a00f2747e76d5daf17fc3849e197f7317d980093c0bf486940ab2394a121221be14024a768e1139bffff", + "cborBytes": [ + 191, 66, 8, 40, 160, 68, 16, 246, 160, 92, 74, 87, 34, 148, 112, 119, 100, 84, 233, 140, 155, 76, 89, 49, 64, 86, + 26, 55, 248, 11, 111, 23, 4, 171, 216, 102, 159, 27, 215, 162, 207, 50, 5, 145, 159, 46, 159, 27, 65, 134, 117, + 132, 203, 54, 90, 188, 27, 93, 237, 202, 44, 197, 240, 187, 149, 27, 180, 128, 164, 26, 236, 192, 32, 235, 255, + 255, 67, 160, 15, 39, 71, 231, 109, 93, 175, 23, 252, 56, 73, 225, 151, 247, 49, 125, 152, 0, 147, 192, 191, 72, + 105, 64, 171, 35, 148, 161, 33, 34, 27, 225, 64, 36, 167, 104, 225, 19, 155, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1543, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17566699421990334917" + } + } + } + ] + }, + "cborHex": "bf091bf3c9740d4bcb31c5ff", + "cborBytes": [191, 9, 27, 243, 201, 116, 13, 75, 203, 49, 197, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1544, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01ff8bfa" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a9d16b68" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f08cbb22c162e35e68611" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a4f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0d479d237" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15395852448739075654" + } + } + } + ] + }, + "cborHex": "bf4401ff8bfa9f44a9d16b68ff4b0f08cbb22c162e35e68611423a4f45b0d479d2371bd5a90e3b3d6ba646ff", + "cborBytes": [ + 191, 68, 1, 255, 139, 250, 159, 68, 169, 209, 107, 104, 255, 75, 15, 8, 203, 178, 44, 22, 46, 53, 230, 134, 17, + 66, 58, 79, 69, 176, 212, 121, 210, 55, 27, 213, 169, 14, 59, 61, 107, 166, 70, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1545, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fef41c5c5f8a36f0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "accd6cfbeede15bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "819aff70" + } + } + ] + }, + "cborHex": "bf410748fef41c5c5f8a36f048accd6cfbeede15bd44819aff70ff", + "cborBytes": [ + 191, 65, 7, 72, 254, 244, 28, 92, 95, 138, 54, 240, 72, 172, 205, 108, 251, 238, 222, 21, 189, 68, 129, 154, 255, + 112, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1546, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "057ddb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "669f5c0ee30416" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b5a8c4b227a3d9130118b60" + } + } + ] + }, + "cborHex": "bf43057ddb413d47669f5c0ee304164c2b5a8c4b227a3d9130118b60ff", + "cborBytes": [ + 191, 67, 5, 125, 219, 65, 61, 71, 102, 159, 92, 14, 227, 4, 22, 76, 43, 90, 140, 75, 34, 122, 61, 145, 48, 17, + 139, 96, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1547, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8000" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "70" + }, + { + "_tag": "ByteArray", + "bytearray": "c11acf" + }, + { + "_tag": "ByteArray", + "bytearray": "95084b1a" + }, + { + "_tag": "ByteArray", + "bytearray": "dab5f71b7b2ff7d110ad42c5" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3016349159958517635" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8896791406492082213" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1533493434951292803" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12083536022311883911" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bb84e59acd469f1d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15774390543804636486" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17187740478706891444" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f51708f9bb023dfe310dd5" + } + ] + } + } + ] + }, + "cborHex": "bf13428000149f417043c11acf4495084b1a4cdab5f71b7b2ff7d110ad42c5ff1b29dc399465e01783d8669f1bfffffffffffffffc80ff1b7b77c0a5a0b560259f1b154810277faa57831ba7b157fdb089548748bb84e59acd469f1dff1bdae9e49f8fc19d46d90504801bffffffffffffffedd8669f1bee871ee69ced3ab49f4bf51708f9bb023dfe310dd5ffffff", + "cborBytes": [ + 191, 19, 66, 128, 0, 20, 159, 65, 112, 67, 193, 26, 207, 68, 149, 8, 75, 26, 76, 218, 181, 247, 27, 123, 47, 247, + 209, 16, 173, 66, 197, 255, 27, 41, 220, 57, 148, 101, 224, 23, 131, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 252, 128, 255, 27, 123, 119, 192, 165, 160, 181, 96, 37, 159, 27, 21, 72, 16, 39, 127, 170, 87, 131, 27, + 167, 177, 87, 253, 176, 137, 84, 135, 72, 187, 132, 229, 154, 205, 70, 159, 29, 255, 27, 218, 233, 228, 159, 143, + 193, 157, 70, 217, 5, 4, 128, 27, 255, 255, 255, 255, 255, 255, 255, 237, 216, 102, 159, 27, 238, 135, 30, 230, + 156, 237, 58, 180, 159, 75, 245, 23, 8, 249, 187, 2, 61, 254, 49, 13, 213, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1548, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6038121776093316410" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cfedf96ce80ca23da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb9e743d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9061c73269" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee118432e61d2a2ef4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2f8bfca59cd9bfd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f855902f75ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f26069" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7769023572988867445" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15479503293820215017" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11909703184583772134" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14659363184437255135" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12090382839337260554" + } + } + } + ] + }, + "cborHex": "bf1b53cbb7c39697c53abf498cfedf96ce80ca23da41ee44cb9e743d459061c7326949ee118432e61d2a2ef448a2f8bfca59cd9bfd46f855902f75ad43f26069ff1b6bd11dc70fa333751bd6d23e3b57a49ee91ba547c3f2317447e6801bcb708525c9d25bdf1ba7c9ab22812d160aff", + "cborBytes": [ + 191, 27, 83, 203, 183, 195, 150, 151, 197, 58, 191, 73, 140, 254, 223, 150, 206, 128, 202, 35, 218, 65, 238, 68, + 203, 158, 116, 61, 69, 144, 97, 199, 50, 105, 73, 238, 17, 132, 50, 230, 29, 42, 46, 244, 72, 162, 248, 191, 202, + 89, 205, 155, 253, 70, 248, 85, 144, 47, 117, 173, 67, 242, 96, 105, 255, 27, 107, 209, 29, 199, 15, 163, 51, 117, + 27, 214, 210, 62, 59, 87, 164, 158, 233, 27, 165, 71, 195, 242, 49, 116, 71, 230, 128, 27, 203, 112, 133, 37, 201, + 210, 91, 223, 27, 167, 201, 171, 34, 129, 45, 22, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1549, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0178" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c5" + }, + { + "_tag": "ByteArray", + "bytearray": "6a42939d83f0f95eaf" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0205f2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13706634484626977846" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "16" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8978078b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16281796841314451233" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd62e91801886d441a83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17697479475099716601" + } + } + } + ] + }, + "cborHex": "bf4201789f41c5496a42939d83f0f95eafff430205f2d8669f1bbe37bf71624f743680ff411680448978078b1be1f48ff6679fff214afd62e91801886d441a831bf59a13d13d15cbf9ff", + "cborBytes": [ + 191, 66, 1, 120, 159, 65, 197, 73, 106, 66, 147, 157, 131, 240, 249, 94, 175, 255, 67, 2, 5, 242, 216, 102, 159, + 27, 190, 55, 191, 113, 98, 79, 116, 54, 128, 255, 65, 22, 128, 68, 137, 120, 7, 139, 27, 225, 244, 143, 246, 103, + 159, 255, 33, 74, 253, 98, 233, 24, 1, 136, 109, 68, 26, 131, 27, 245, 154, 19, 209, 61, 21, 203, 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1550, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00d68a01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2efc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60c406ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c51a5f8c88d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7bce1a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d4506269e" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8a15df30184f60000f98505" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5696435019903426201" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10829608327738696235" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df06fab7f7fb9c0a3c9c1244" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "335723317838263296" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13629174729607188282" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3779041054880472999" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1359693639322757737" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6413633682116020174" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfc50aec23" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a9e5132f18cc9990b29ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32" + } + } + ] + } + } + ] + }, + "cborHex": "bf4400d68a01422efc4460c406ff1bfffffffffffffff3467c51a5f8c88d44c7bce1a2458d4506269ea04cd8a15df30184f60000f985059f1b4f0dcd7837705e991b964a7f65777a222bff4cdf06fab7f7fb9c0a3c9c1244bf1b04a8ba942e90b4001bbd248e34c3f78f3a1b3471d9d133c49fa71b12de9a293730ea691b5901cdda5e0187ce45dfc50aec234b4a9e5132f18cc9990b29ea4132ffff", + "cborBytes": [ + 191, 68, 0, 214, 138, 1, 66, 46, 252, 68, 96, 196, 6, 255, 27, 255, 255, 255, 255, 255, 255, 255, 243, 70, 124, + 81, 165, 248, 200, 141, 68, 199, 188, 225, 162, 69, 141, 69, 6, 38, 158, 160, 76, 216, 161, 93, 243, 1, 132, 246, + 0, 0, 249, 133, 5, 159, 27, 79, 13, 205, 120, 55, 112, 94, 153, 27, 150, 74, 127, 101, 119, 122, 34, 43, 255, 76, + 223, 6, 250, 183, 247, 251, 156, 10, 60, 156, 18, 68, 191, 27, 4, 168, 186, 148, 46, 144, 180, 0, 27, 189, 36, + 142, 52, 195, 247, 143, 58, 27, 52, 113, 217, 209, 51, 196, 159, 167, 27, 18, 222, 154, 41, 55, 48, 234, 105, 27, + 89, 1, 205, 218, 94, 1, 135, 206, 69, 223, 197, 10, 236, 35, 75, 74, 158, 81, 50, 241, 140, 201, 153, 11, 41, 234, + 65, 50, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1551, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f3198efcba80783f854d157" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9c1800b988a9fdaa711" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34280bdf4023a323" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "566e29cd0e91b75b9b00db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "775ed55dfc6caeed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50b4da8c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9823e831cd8ec73562" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2266266509074660848" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f744dcd3b163e5a79e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2039778562362771346" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17983119218454755865" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15599067520264564096" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eed315a96a6942d4d5f4b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11220030050774730841" + } + } + } + ] + }, + "cborHex": "bf4c0f3198efcba80783f854d1574aa9c1800b988a9fdaa7114834280bdf4023a3234b566e29cd0e91b75b9b00db48775ed55dfc6caeed4450b4da8c499823e831cd8ec73562d8669f1b1f736561ffc27df09f49f744dcd3b163e5a79e1b1c4ebfcb961707921bf990dfa6897efa1941c31bd87b054324b3ed80ffff4beed315a96a6942d4d5f4b31b9bb58de289a2c859ff", + "cborBytes": [ + 191, 76, 15, 49, 152, 239, 203, 168, 7, 131, 248, 84, 209, 87, 74, 169, 193, 128, 11, 152, 138, 159, 218, 167, 17, + 72, 52, 40, 11, 223, 64, 35, 163, 35, 75, 86, 110, 41, 205, 14, 145, 183, 91, 155, 0, 219, 72, 119, 94, 213, 93, + 252, 108, 174, 237, 68, 80, 180, 218, 140, 73, 152, 35, 232, 49, 205, 142, 199, 53, 98, 216, 102, 159, 27, 31, + 115, 101, 97, 255, 194, 125, 240, 159, 73, 247, 68, 220, 211, 177, 99, 229, 167, 158, 27, 28, 78, 191, 203, 150, + 23, 7, 146, 27, 249, 144, 223, 166, 137, 126, 250, 25, 65, 195, 27, 216, 123, 5, 67, 36, 179, 237, 128, 255, 255, + 75, 238, 211, 21, 169, 106, 105, 66, 212, 213, 244, 179, 27, 155, 181, 141, 226, 137, 162, 200, 89, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1552, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d355c49c73cdf87209126e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11138890969415975882" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "deda1f58eaa9f7a508b2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3521695668771533989" + } + }, + { + "_tag": "ByteArray", + "bytearray": "41da10626bd60d510348" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a0b613300abda16" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a6c8fa7c6c2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a0d593836d2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9816496911572289760" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c00de4b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3214181027000807523" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4731189baf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3385213497561705340" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14566377900488532305" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8560052072409948400" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f51d730" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9704037777575836054" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d906e8fe9c015c08269" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16103792390106651355" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9181278304597413951" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18351148575419059811" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecd211014efffa7478" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7418717f3121404a50cb" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8341653648577048857" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b327ce111e878e560f59" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15241117140855470501" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9562647173688926560" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d2223" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9931030589813525319" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4c0d355c49c73cdf87209126e81b9a954a51ffd883ca41649f4adeda1f58eaa9f7a508b21b30df938d5028b4a54a41da10626bd60d510348ff486a0b613300abda16466a6c8fa7c6c2466a0d593836d21b883b33ee58fc48e0446c00de4bbf1b2c9b109d562ef063454731189baf1b2efab1bd8b05eb7c1bca262b8646b821511b76cb6a01bad760f0440f51d7301b86abaaf1cb60f9964a3d906e8fe9c015c082691bdf7c29db74f21adb1b7f6a73f93987903f1bfeac60669a44ce6349ecd211014efffa7478ff4a7418717f3121404a50cbbf1b73c381cc22c6b1194ab327ce111e878e560f591bd3835349e8ceb9a51b84b558f07c1f2160437d22231b89d21bb45f5f8b47ffff", + "cborBytes": [ + 191, 76, 13, 53, 92, 73, 199, 60, 223, 135, 32, 145, 38, 232, 27, 154, 149, 74, 81, 255, 216, 131, 202, 65, 100, + 159, 74, 222, 218, 31, 88, 234, 169, 247, 165, 8, 178, 27, 48, 223, 147, 141, 80, 40, 180, 165, 74, 65, 218, 16, + 98, 107, 214, 13, 81, 3, 72, 255, 72, 106, 11, 97, 51, 0, 171, 218, 22, 70, 106, 108, 143, 167, 198, 194, 70, 106, + 13, 89, 56, 54, 210, 27, 136, 59, 51, 238, 88, 252, 72, 224, 68, 108, 0, 222, 75, 191, 27, 44, 155, 16, 157, 86, + 46, 240, 99, 69, 71, 49, 24, 155, 175, 27, 46, 250, 177, 189, 139, 5, 235, 124, 27, 202, 38, 43, 134, 70, 184, 33, + 81, 27, 118, 203, 106, 1, 186, 215, 96, 240, 68, 15, 81, 215, 48, 27, 134, 171, 170, 241, 203, 96, 249, 150, 74, + 61, 144, 110, 143, 233, 192, 21, 192, 130, 105, 27, 223, 124, 41, 219, 116, 242, 26, 219, 27, 127, 106, 115, 249, + 57, 135, 144, 63, 27, 254, 172, 96, 102, 154, 68, 206, 99, 73, 236, 210, 17, 1, 78, 255, 250, 116, 120, 255, 74, + 116, 24, 113, 127, 49, 33, 64, 74, 80, 203, 191, 27, 115, 195, 129, 204, 34, 198, 177, 25, 74, 179, 39, 206, 17, + 30, 135, 142, 86, 15, 89, 27, 211, 131, 83, 73, 232, 206, 185, 165, 27, 132, 181, 88, 240, 124, 31, 33, 96, 67, + 125, 34, 35, 27, 137, 210, 27, 180, 95, 95, 139, 71, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1553, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6009314258504418349" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6551351020115052520" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "173018562118987179" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6733834140134012833" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6ccea307ad146e9d" + }, + { + "_tag": "ByteArray", + "bytearray": "829fdda3cefb935536f57267" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f81f89c4ab58ec859c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38d1" + } + } + ] + } + } + ] + }, + "cborHex": "bf0cd8669f1b53655f7ab9d8842d9f1b5aeb130ad0d9c7e81b0266af772ea6adab1b5d7362791b15f7a1486ccea307ad146e9d4c829fdda3cefb935536f57267ffff1bfffffffffffffff8bf49f81f89c4ab58ec859c4238d1ffff", + "cborBytes": [ + 191, 12, 216, 102, 159, 27, 83, 101, 95, 122, 185, 216, 132, 45, 159, 27, 90, 235, 19, 10, 208, 217, 199, 232, 27, + 2, 102, 175, 119, 46, 166, 173, 171, 27, 93, 115, 98, 121, 27, 21, 247, 161, 72, 108, 206, 163, 7, 173, 20, 110, + 157, 76, 130, 159, 221, 163, 206, 251, 147, 85, 54, 245, 114, 103, 255, 255, 27, 255, 255, 255, 255, 255, 255, + 255, 248, 191, 73, 248, 31, 137, 196, 171, 88, 236, 133, 156, 66, 56, 209, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1554, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0151fefd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4551092882097869129" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05127a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3161631d92efe2b4698e4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "543c558f162b9610" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25f22ff8319332f3b1" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5006fc9d2c4bfce6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70750303" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3b031fb5" + }, + { + "_tag": "ByteArray", + "bytearray": "9acaf274a7ef64a842" + }, + { + "_tag": "ByteArray", + "bytearray": "fb0191fffb3882523d" + }, + { + "_tag": "ByteArray", + "bytearray": "7e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab63824516ea0fbb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8d1b578c956c060" + } + } + ] + }, + "cborHex": "bf440151fefdbf1b3f28badd114091494305127a4ba3161631d92efe2b4698e448543c558f162b9610ff4925f22ff8319332f3b180485006fc9d2c4bfce61bfffffffffffffff04470750303d905099f443b031fb5499acaf274a7ef64a84249fb0191fffb3882523d417eff48ab63824516ea0fbb48d8d1b578c956c060ff", + "cborBytes": [ + 191, 68, 1, 81, 254, 253, 191, 27, 63, 40, 186, 221, 17, 64, 145, 73, 67, 5, 18, 122, 75, 163, 22, 22, 49, 217, + 46, 254, 43, 70, 152, 228, 72, 84, 60, 85, 143, 22, 43, 150, 16, 255, 73, 37, 242, 47, 248, 49, 147, 50, 243, 177, + 128, 72, 80, 6, 252, 157, 44, 75, 252, 230, 27, 255, 255, 255, 255, 255, 255, 255, 240, 68, 112, 117, 3, 3, 217, + 5, 9, 159, 68, 59, 3, 31, 181, 73, 154, 202, 242, 116, 167, 239, 100, 168, 66, 73, 251, 1, 145, 255, 251, 56, 130, + 82, 61, 65, 126, 255, 72, 171, 99, 130, 69, 22, 234, 15, 187, 72, 216, 209, 181, 120, 201, 86, 192, 96, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1555, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "310e01" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1180272171736590552" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5301214902855519940" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2650257855163776238" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32f4276d99fb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6768097614750973031" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3134484812267741665" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf43310e01bf1b10612b496ea368d81b4991b2ddfab5cec41b24c79b7a4439bcee4632f4276d99fb1b5ded1cebf4667c671b2b7fed545d1361e1ffff", + "cborBytes": [ + 191, 67, 49, 14, 1, 191, 27, 16, 97, 43, 73, 110, 163, 104, 216, 27, 73, 145, 178, 221, 250, 181, 206, 196, 27, + 36, 199, 155, 122, 68, 57, 188, 238, 70, 50, 244, 39, 109, 153, 251, 27, 93, 237, 28, 235, 244, 102, 124, 103, 27, + 43, 127, 237, 84, 93, 19, 97, 225, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1556, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb0401" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62342125dcbf9f" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbfbd9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18049950131250888027" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffebf43cb04014762342125dcbf9fff43fbfbd91bfa7e4e02fab97d5bff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 254, 191, 67, 203, 4, 1, 71, 98, 52, 33, 37, 220, 191, 159, 255, 67, + 251, 251, 217, 27, 250, 126, 78, 2, 250, 185, 125, 91, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1557, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9081368347071410174" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10044270250512903146" + } + } + } + ] + }, + "cborHex": "bf1b7e07806581aaeffe1b8b646a9375d86beaff", + "cborBytes": [191, 27, 126, 7, 128, 101, 129, 170, 239, 254, 27, 139, 100, 106, 147, 117, 216, 107, 234, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1558, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1423955013916030601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72ebcb53cbadf96f0422" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3450849212380970924" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15901609976576384358" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15241168679992384853" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87a1d9a581142d15776b68d5" + }, + { + "_tag": "ByteArray", + "bytearray": "3dd6f36de4933f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2057233352504739563" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4299405801767782544" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6066374013836112985" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8699676259282670481" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12491585163599646368" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1bfcccd6d025" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13614094285889857254" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16669908058990178501" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13677269786922093632" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bc8aee8a5b51dc6630f4d11" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17002476293100484168" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11416353785450854413" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9357263752231593535" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e5ec50a15d7c5010424" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2859600221767199021" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "287b9d0d475515d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ccb9667a984bd52f99ec55" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29da8e70" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3542461962414072611" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9951" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10000167887363740042" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d43e4c80d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f504259ad4bbc4e917cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1808914967548624042" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14478226248375892675" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a64c744abe9e61" + }, + { + "_tag": "ByteArray", + "bytearray": "f26cad" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17804077055307958188" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5629625797500941059" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa96ed662d1d0d35a099" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b13c2e78a6c99f6894a72ebcb53cbadf96f04221b2fe3e11345677facd8669f1bdcadde05faa49d669f1bd3838229ccc15d554c87a1d9a581142d15776b68d5473dd6f36de4933f1b1c8cc2d59c2186ebffff1b3baa8ecc279f4890bf1b54301706495cb4591b78bb7577077153911bad5b0685e5e58ea0461bfcccd6d0251bbceefa9f5923e6e61be757690f0687f0c51bbdcf6c67eaac8c404c3bc8aee8a5b51dc6630f4d111bebf4ee1b084136481b9e6f09480bfbf80dff1b81dbadce4567263fbf4a0e5ec50a15d7c50104241b27af57403a0fe92d48287b9d0d475515d34bccb9667a984bd52f99ec554429da8e701b31295a62d40623234299511b8ac7bbb5dc95918a45d43e4c80d24248f64af504259ad4bbc4e917cd1b191a8e94359f7caaff1bc8ecfe10602e7ac39f47a64c744abe9e6143f26cadff1bf714c9c0735047acbf1b4e2072d5f66b33034afa96ed662d1d0d35a099ffff", + "cborBytes": [ + 191, 27, 19, 194, 231, 138, 108, 153, 246, 137, 74, 114, 235, 203, 83, 203, 173, 249, 111, 4, 34, 27, 47, 227, + 225, 19, 69, 103, 127, 172, 216, 102, 159, 27, 220, 173, 222, 5, 250, 164, 157, 102, 159, 27, 211, 131, 130, 41, + 204, 193, 93, 85, 76, 135, 161, 217, 165, 129, 20, 45, 21, 119, 107, 104, 213, 71, 61, 214, 243, 109, 228, 147, + 63, 27, 28, 140, 194, 213, 156, 33, 134, 235, 255, 255, 27, 59, 170, 142, 204, 39, 159, 72, 144, 191, 27, 84, 48, + 23, 6, 73, 92, 180, 89, 27, 120, 187, 117, 119, 7, 113, 83, 145, 27, 173, 91, 6, 133, 229, 229, 142, 160, 70, 27, + 252, 204, 214, 208, 37, 27, 188, 238, 250, 159, 89, 35, 230, 230, 27, 231, 87, 105, 15, 6, 135, 240, 197, 27, 189, + 207, 108, 103, 234, 172, 140, 64, 76, 59, 200, 174, 232, 165, 181, 29, 198, 99, 15, 77, 17, 27, 235, 244, 238, 27, + 8, 65, 54, 72, 27, 158, 111, 9, 72, 11, 251, 248, 13, 255, 27, 129, 219, 173, 206, 69, 103, 38, 63, 191, 74, 14, + 94, 197, 10, 21, 215, 197, 1, 4, 36, 27, 39, 175, 87, 64, 58, 15, 233, 45, 72, 40, 123, 157, 13, 71, 85, 21, 211, + 75, 204, 185, 102, 122, 152, 75, 213, 47, 153, 236, 85, 68, 41, 218, 142, 112, 27, 49, 41, 90, 98, 212, 6, 35, 35, + 66, 153, 81, 27, 138, 199, 187, 181, 220, 149, 145, 138, 69, 212, 62, 76, 128, 210, 66, 72, 246, 74, 245, 4, 37, + 154, 212, 187, 196, 233, 23, 205, 27, 25, 26, 142, 148, 53, 159, 124, 170, 255, 27, 200, 236, 254, 16, 96, 46, + 122, 195, 159, 71, 166, 76, 116, 74, 190, 158, 97, 67, 242, 108, 173, 255, 27, 247, 20, 201, 192, 115, 80, 71, + 172, 191, 27, 78, 32, 114, 213, 246, 107, 51, 3, 74, 250, 150, 237, 102, 45, 29, 13, 53, 160, 153, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1559, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b4f910da0883e25f6e24f3e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce62c580" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e490aa91" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4c2b4f910da0883e25f6e24f3e44ce62c58044e490aa91a0ff", + "cborBytes": [ + 191, 76, 43, 79, 145, 13, 160, 136, 62, 37, 246, 226, 79, 62, 68, 206, 98, 197, 128, 68, 228, 144, 170, 145, 160, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1560, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3145982327889510776" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15211244458888587966" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10903118646223804675" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c79ffbb9" + }, + { + "_tag": "ByteArray", + "bytearray": "af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15720217781283839497" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5574799515095911979" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11246078607651426120" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17054954911849048214" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7006939855126235798" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5777871217088571149" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5171106119247793585" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df071a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9618847085030038538" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13179992265664673888" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f44b884c4cf377739c12" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7124189638962280200" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2ba8c6425382c1789f1bd319323e23aeeabe1b974fa8a43c1b990344c79ffbb941af1bda296ec86533de09ff1b4d5daa9f574fce2bd8669f1b9c1218e8cd2ecf489f1becaf5f219d10e896ffff1b613da6ac83538a969f1b502f1f426c84a70d1b47c3759e259d0db143df071aff1b857d027604045c0a9f1bb6e8bd229156b8604af44b884c4cf377739c121b62de34bb26dd7708ffff", + "cborBytes": [ + 191, 27, 43, 168, 198, 66, 83, 130, 193, 120, 159, 27, 211, 25, 50, 62, 35, 174, 234, 190, 27, 151, 79, 168, 164, + 60, 27, 153, 3, 68, 199, 159, 251, 185, 65, 175, 27, 218, 41, 110, 200, 101, 51, 222, 9, 255, 27, 77, 93, 170, + 159, 87, 79, 206, 43, 216, 102, 159, 27, 156, 18, 24, 232, 205, 46, 207, 72, 159, 27, 236, 175, 95, 33, 157, 16, + 232, 150, 255, 255, 27, 97, 61, 166, 172, 131, 83, 138, 150, 159, 27, 80, 47, 31, 66, 108, 132, 167, 13, 27, 71, + 195, 117, 158, 37, 157, 13, 177, 67, 223, 7, 26, 255, 27, 133, 125, 2, 118, 4, 4, 92, 10, 159, 27, 182, 232, 189, + 34, 145, 86, 184, 96, 74, 244, 75, 136, 76, 76, 243, 119, 115, 156, 18, 27, 98, 222, 52, 187, 38, 221, 119, 8, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1561, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8231801053829005632" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6670c495f00e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9030204787967353474" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17715022411030655952" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16445042269933115560" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1785f9" + } + } + ] + }, + "cborHex": "bf1b723d3b71cb2a0140466670c495f00e1b7d51bb691bd362829f1bf5d867064d90f3d0ff1be43886d09fa598a8431785f9ff", + "cborBytes": [ + 191, 27, 114, 61, 59, 113, 203, 42, 1, 64, 70, 102, 112, 196, 149, 240, 14, 27, 125, 81, 187, 105, 27, 211, 98, + 130, 159, 27, 245, 216, 103, 6, 77, 144, 243, 208, 255, 27, 228, 56, 134, 208, 159, 165, 152, 168, 67, 23, 133, + 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1562, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2166937629828519913" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aeafb4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "050bd93fb04c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65bf0d969d0bea950c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4399a86f37" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02adfb01066e02fe" + } + } + ] + }, + "cborHex": "bf1b1e12824b1c5b17e943aeafb446050bd93fb04c4965bf0d969d0bea950c454399a86f374802adfb01066e02feff", + "cborBytes": [ + 191, 27, 30, 18, 130, 75, 28, 91, 23, 233, 67, 174, 175, 180, 70, 5, 11, 217, 63, 176, 76, 73, 101, 191, 13, 150, + 157, 11, 234, 149, 12, 69, 67, 153, 168, 111, 55, 72, 2, 173, 251, 1, 6, 110, 2, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1563, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14502183196045233883" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5042674201813146166" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13585718010391222942" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "352835246408900635" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cffc3f654f5b4d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ce45d12" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10658965427136941761" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5013355233099786974" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2c70297f1f2" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9895507584676240670" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bc9421ac7ebea4edbd8669f1b45fb2d7825195a369f1bbc8a2a8cdbfeda9e1b04e585c98670a01b47cffc3f654f5b4dffff449ce45d12d8669f1b93ec409515aacec19f1b45930405c9c22adeffff46d2c70297f1f29f1b8953e7b838cf9d1effff", + "cborBytes": [ + 191, 27, 201, 66, 26, 199, 235, 234, 78, 219, 216, 102, 159, 27, 69, 251, 45, 120, 37, 25, 90, 54, 159, 27, 188, + 138, 42, 140, 219, 254, 218, 158, 27, 4, 229, 133, 201, 134, 112, 160, 27, 71, 207, 252, 63, 101, 79, 91, 77, 255, + 255, 68, 156, 228, 93, 18, 216, 102, 159, 27, 147, 236, 64, 149, 21, 170, 206, 193, 159, 27, 69, 147, 4, 5, 201, + 194, 42, 222, 255, 255, 70, 210, 199, 2, 151, 241, 242, 159, 27, 137, 83, 231, 184, 56, 207, 157, 30, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1564, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9218590074295405984" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6460236507384413487" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10665346801405913965" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf00801b7fef02d49451cda0d8669f1b59a75ee02ba87d2f9f1bffffffffffffffefffff1b9402ec689025eb6d801bffffffffffffffefa0ff", + "cborBytes": [ + 191, 0, 128, 27, 127, 239, 2, 212, 148, 81, 205, 160, 216, 102, 159, 27, 89, 167, 94, 224, 43, 168, 125, 47, 159, + 27, 255, 255, 255, 255, 255, 255, 255, 239, 255, 255, 27, 148, 2, 236, 104, 144, 37, 235, 109, 128, 27, 255, 255, + 255, 255, 255, 255, 255, 239, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1565, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03b20912c19c9006daa1aa" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d1b6d77dcb1df98" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f14d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c733b1" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bef6c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42e9ed93bd35eaba11fd3f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c06084974e01cd51e6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e9a64b71229760f2241b961" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6459349512773421565" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b4247168f4fe40f3d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9957941115393336670" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5276c1148d9dceeced914474" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9115454084263979186" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73f5310e9a09" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5fffaa0ac0fd0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4b2f7994472599f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f230a" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b03b20912c19c9006daa1aa80483d1b6d77dcb1df98bf42f14d43c733b1ff43bef6c04b42e9ed93bd35eaba11fd3f49c06084974e01cd51e6bf4c1e9a64b71229760f2241b9611b59a43828a4f3c9fd492b4247168f4fe40f3d1b8a31b6af5d46e55e4c5276c1148d9dceeced9144741b7e809931a2f028b24673f5310e9a0947f5fffaa0ac0fd048b4b2f7994472599f435f230affff", + "cborBytes": [ + 191, 75, 3, 178, 9, 18, 193, 156, 144, 6, 218, 161, 170, 128, 72, 61, 27, 109, 119, 220, 177, 223, 152, 191, 66, + 241, 77, 67, 199, 51, 177, 255, 67, 190, 246, 192, 75, 66, 233, 237, 147, 189, 53, 234, 186, 17, 253, 63, 73, 192, + 96, 132, 151, 78, 1, 205, 81, 230, 191, 76, 30, 154, 100, 183, 18, 41, 118, 15, 34, 65, 185, 97, 27, 89, 164, 56, + 40, 164, 243, 201, 253, 73, 43, 66, 71, 22, 143, 79, 228, 15, 61, 27, 138, 49, 182, 175, 93, 70, 229, 94, 76, 82, + 118, 193, 20, 141, 157, 206, 236, 237, 145, 68, 116, 27, 126, 128, 153, 49, 162, 240, 40, 178, 70, 115, 245, 49, + 14, 154, 9, 71, 245, 255, 250, 160, 172, 15, 208, 72, 180, 178, 247, 153, 68, 114, 89, 159, 67, 95, 35, 10, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1566, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e95824f4b6c94ae8d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + } + } + ] + }, + "cborHex": "bf496e95824f4b6c94ae8dd87b9f1200ffff", + "cborBytes": [191, 73, 110, 149, 130, 79, 75, 108, 148, 174, 141, 216, 123, 159, 18, 0, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1567, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05618d72" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8057791566930166234" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12061583456391517599" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2f8fcf2a00b18adfc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2ed6c768ada" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab7c04" + } + } + ] + }, + "cborHex": "bf4405618d729f1b6fd306bcf502c1da1ba7635a3fa2f1d59fff49a2f8fcf2a00b18adfc417746c2ed6c768ada43ab7c04ff", + "cborBytes": [ + 191, 68, 5, 97, 141, 114, 159, 27, 111, 211, 6, 188, 245, 2, 193, 218, 27, 167, 99, 90, 63, 162, 241, 213, 159, + 255, 73, 162, 248, 252, 242, 160, 11, 24, 173, 252, 65, 119, 70, 194, 237, 108, 118, 138, 218, 67, 171, 124, 4, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1568, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10332147085895278137" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15107008123728710233" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4579175294837712089" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8129638923946616265" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7776938169549803703" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16669142196022472964" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8790546372767961600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0793815021d831d6a0a7c8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a69e6701058be705fafa00" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10315721996213793947" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0abf1b8f63290855e01e391bd1a6dfd921ca4a59413d12ff1b3f8c7fab4d0be4d9bf004107091b70d247875606e5c91b6bed3c0fac3150b71be754b082a864f1041b79fe4b5a0a6ed2004b0793815021d831d6a0a7c81bfffffffffffffff34ba69e6701058be705fafa001bfffffffffffffff81b8f28ce802201b49bffff", + "cborBytes": [ + 191, 10, 191, 27, 143, 99, 41, 8, 85, 224, 30, 57, 27, 209, 166, 223, 217, 33, 202, 74, 89, 65, 61, 18, 255, 27, + 63, 140, 127, 171, 77, 11, 228, 217, 191, 0, 65, 7, 9, 27, 112, 210, 71, 135, 86, 6, 229, 201, 27, 107, 237, 60, + 15, 172, 49, 80, 183, 27, 231, 84, 176, 130, 168, 100, 241, 4, 27, 121, 254, 75, 90, 10, 110, 210, 0, 75, 7, 147, + 129, 80, 33, 216, 49, 214, 160, 167, 200, 27, 255, 255, 255, 255, 255, 255, 255, 243, 75, 166, 158, 103, 1, 5, + 139, 231, 5, 250, 250, 0, 27, 255, 255, 255, 255, 255, 255, 255, 248, 27, 143, 40, 206, 128, 34, 1, 180, 155, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1569, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0403f6a50bcaea1327" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12419739134231768835" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9136a3f2fb242bb" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "148e89fe46acba1304f124" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13037190620784921448" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf490403f6a50bcaea1327d8669f1bac5bc6f0a2e6ef0380ff48a9136a3f2fb242bbbf4b148e89fe46acba1304f1241bb4ed67cbacf08b68ffff", + "cborBytes": [ + 191, 73, 4, 3, 246, 165, 11, 202, 234, 19, 39, 216, 102, 159, 27, 172, 91, 198, 240, 162, 230, 239, 3, 128, 255, + 72, 169, 19, 106, 63, 47, 178, 66, 187, 191, 75, 20, 142, 137, 254, 70, 172, 186, 19, 4, 241, 36, 27, 180, 237, + 103, 203, 172, 240, 139, 104, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1570, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2817653384360937564" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8006940349336005641" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7600029160352776376" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a2a19d5f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3967752861425939944" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5767234022952597599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2433c14ccc206804" + }, + { + "_tag": "ByteArray", + "bytearray": "fcf491" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2656266144060151211" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9bc8babd63d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8228792134890156617" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7450446942922866371" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18119000097178274595" + } + } + } + ] + }, + "cborHex": "bf1b271a50d31302c85cd8669f1b6f1e5dd33bea2c099f1b6978ba41317000b844a2a19d5fffff1b37104a3495d535e8d8669f1b500954c9aaa2f85f9f482433c14ccc20680443fcf4911b24dcf3fc099a15ab469bc8babd63d51b72328ad942a7f249ffff1b67654e053acffec31bfb739e96fd944b23ff", + "cborBytes": [ + 191, 27, 39, 26, 80, 211, 19, 2, 200, 92, 216, 102, 159, 27, 111, 30, 93, 211, 59, 234, 44, 9, 159, 27, 105, 120, + 186, 65, 49, 112, 0, 184, 68, 162, 161, 157, 95, 255, 255, 27, 55, 16, 74, 52, 149, 213, 53, 232, 216, 102, 159, + 27, 80, 9, 84, 201, 170, 162, 248, 95, 159, 72, 36, 51, 193, 76, 204, 32, 104, 4, 67, 252, 244, 145, 27, 36, 220, + 243, 252, 9, 154, 21, 171, 70, 155, 200, 186, 189, 99, 213, 27, 114, 50, 138, 217, 66, 167, 242, 73, 255, 255, 27, + 103, 101, 78, 5, 58, 207, 254, 195, 27, 251, 115, 158, 150, 253, 148, 75, 35, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1571, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17359696110377790981" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1bf0ea07a303cc6e05a0ff", + "cborBytes": [191, 27, 240, 234, 7, 163, 3, 204, 110, 5, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1572, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16fb01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be81356a87" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea99" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7477b5" + } + } + ] + }, + "cborHex": "bf4316fb0145be81356a8742ea99437477b5ff", + "cborBytes": [191, 67, 22, 251, 1, 69, 190, 129, 53, 106, 135, 66, 234, 153, 67, 116, 119, 181, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1573, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3d9a977fdc0765e0b99" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48aaf81c175b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca3697df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15125078027997570349" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1cdd73a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12503401165021864214" + } + } + } + ] + }, + "cborHex": "bf4ac3d9a977fdc0765e0b994648aaf81c175b44ca3697df1bd1e7125492dc652d44e1cdd73a1bad85011d1d556116ff", + "cborBytes": [ + 191, 74, 195, 217, 169, 119, 253, 192, 118, 94, 11, 153, 70, 72, 170, 248, 28, 23, 91, 68, 202, 54, 151, 223, 27, + 209, 231, 18, 84, 146, 220, 101, 45, 68, 225, 205, 215, 58, 27, 173, 133, 1, 29, 29, 85, 97, 22, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1574, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "100f353bfd0c800726045618" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f804529b3fcd50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + } + ] + }, + "cborHex": "bf4c100f353bfd0c8007260456180b47f804529b3fcd5000ff", + "cborBytes": [ + 191, 76, 16, 15, 53, 59, 253, 12, 128, 7, 38, 4, 86, 24, 11, 71, 248, 4, 82, 155, 63, 205, 80, 0, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1575, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04d5f9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "301101462171226720" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "32818b753298f8c6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12257015591481671399" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5736583202088522575" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c4988c137be85edaf840" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7394922728236535025" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b5ab6d34f55de0ae2f413f2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0306130be9dee3ddf197" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "254115827292994170" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2346" + }, + { + "_tag": "ByteArray", + "bytearray": "d7dac161b1869695fbe515" + }, + { + "_tag": "ByteArray", + "bytearray": "e9fb6728e9d8d68ed56f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93dfe0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4600929887063895116" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd27637783" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14237080213198921908" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "836388530074653647" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d9e428a55e14114552f41eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1886579745330287346" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4f7330b4f8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15301704670765424363" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf04d8669f1bffffffffffffffee80ff4304d5f9d8669f1b042dba2f3e1112609f4832818b753298f8c61baa19aabd70b07ee71b4f9c700750f5934f4ac4988c137be85edaf8401b66a00b0a96004cf1ffff4c8b5ab6d34f55de0ae2f413f2d8669f1bfffffffffffffffd9f4a0306130be9dee3ddf1971b0386ccffa19a7a7a4223464bd7dac161b1869695fbe5154ae9fb6728e9d8d68ed56fffff4393dfe0bf1b3fd9c95b02ebec4c45fd276377831bc5944505ca76e0b41b0b9b72efcd4f93cf4c7d9e428a55e14114552f41eb1b1a2e7a4868dbd2f246b4f7330b4f8a1bd45a93537ee89eebffff", + "cborBytes": [ + 191, 4, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 128, 255, 67, 4, 213, 249, 216, 102, 159, 27, + 4, 45, 186, 47, 62, 17, 18, 96, 159, 72, 50, 129, 139, 117, 50, 152, 248, 198, 27, 170, 25, 170, 189, 112, 176, + 126, 231, 27, 79, 156, 112, 7, 80, 245, 147, 79, 74, 196, 152, 140, 19, 123, 232, 94, 218, 248, 64, 27, 102, 160, + 11, 10, 150, 0, 76, 241, 255, 255, 76, 139, 90, 182, 211, 79, 85, 222, 10, 226, 244, 19, 242, 216, 102, 159, 27, + 255, 255, 255, 255, 255, 255, 255, 253, 159, 74, 3, 6, 19, 11, 233, 222, 227, 221, 241, 151, 27, 3, 134, 204, 255, + 161, 154, 122, 122, 66, 35, 70, 75, 215, 218, 193, 97, 177, 134, 150, 149, 251, 229, 21, 74, 233, 251, 103, 40, + 233, 216, 214, 142, 213, 111, 255, 255, 67, 147, 223, 224, 191, 27, 63, 217, 201, 91, 2, 235, 236, 76, 69, 253, + 39, 99, 119, 131, 27, 197, 148, 69, 5, 202, 118, 224, 180, 27, 11, 155, 114, 239, 205, 79, 147, 207, 76, 125, 158, + 66, 138, 85, 225, 65, 20, 85, 47, 65, 235, 27, 26, 46, 122, 72, 104, 219, 210, 242, 70, 180, 247, 51, 11, 79, 138, + 27, 212, 90, 147, 83, 126, 232, 158, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1576, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a7349" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff9434a7349ff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 249, 67, 74, 115, 73, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1577, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2729033946498077747" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "746f3bba4a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5017008573918723981" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7748952916502162198" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11593780892840408749" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12274584314163752856" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16103343019280304106" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12640797105122565944" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12659474869660735271" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18377032892498465402" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97fb8ff610" + } + } + ] + }, + "cborHex": "bf1b25df79ea5100143345746f3bba4a1b459ffeb77b83bf8d1b6b89cf9f3156ab161ba0e5624ba976b6ada01baa581566734fef981bdf7a9128287807ea1baf6d21fe489ddf381bafaf7d52391cd7271bff08560ccf0a527a4597fb8ff610ff", + "cborBytes": [ + 191, 27, 37, 223, 121, 234, 81, 0, 20, 51, 69, 116, 111, 59, 186, 74, 27, 69, 159, 254, 183, 123, 131, 191, 141, + 27, 107, 137, 207, 159, 49, 86, 171, 22, 27, 160, 229, 98, 75, 169, 118, 182, 173, 160, 27, 170, 88, 21, 102, 115, + 79, 239, 152, 27, 223, 122, 145, 40, 40, 120, 7, 234, 27, 175, 109, 33, 254, 72, 157, 223, 56, 27, 175, 175, 125, + 82, 57, 28, 215, 39, 27, 255, 8, 86, 12, 207, 10, 82, 122, 69, 151, 251, 143, 246, 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1578, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3561203320644356313" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1f04fc0702fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "ByteArray", + "bytearray": "96053f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18009438463512768949" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1ae639252d85e5e1277c065e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17127055582239065011" + } + } + ] + } + } + ] + }, + "cborHex": "bf10d8669f1b316bef8d53f2c8d99f1bfffffffffffffff5461f04fc0702fa111bfffffffffffffff14396053fffff1bfffffffffffffff99f1bf9ee60dd4def71b54c1ae639252d85e5e1277c065e1bedaf864f1bbb03b3ffff", + "cborBytes": [ + 191, 16, 216, 102, 159, 27, 49, 107, 239, 141, 83, 242, 200, 217, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, + 70, 31, 4, 252, 7, 2, 250, 17, 27, 255, 255, 255, 255, 255, 255, 255, 241, 67, 150, 5, 63, 255, 255, 27, 255, 255, + 255, 255, 255, 255, 255, 249, 159, 27, 249, 238, 96, 221, 77, 239, 113, 181, 76, 26, 230, 57, 37, 45, 133, 229, + 225, 39, 124, 6, 94, 27, 237, 175, 134, 79, 27, 187, 3, 179, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1579, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11923388539165408309" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6896961128641696610" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11999906147654879387" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e9e8978e2b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12759753584052795167" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5353856332761665333" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14588267473338439876" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10321159556032969531" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12726110489764130558" + } + }, + { + "_tag": "ByteArray", + "bytearray": "436017cf1add111d93cbfd37" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11006331860764397549" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14327911249554014151" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6147674008259535618" + } + } + } + ] + }, + "cborHex": "bf1ba57862b41beafc359f1b5fb6ed9ad65d93621ba6883b1024fec89b45e9e8978e2bff1bb113c047d6fbf71fd8669f1b4a4cb7f7fcbc0f359f1bca73eff99cb918c41b8f3c1feeaf793b3b1bb09c3a108ac36efe4c436017cf1add111d93cbfd371b98be588368ed0fedffff1bc6d6f75e72fd7fc71b5550ecf051362302ff", + "cborBytes": [ + 191, 27, 165, 120, 98, 180, 27, 234, 252, 53, 159, 27, 95, 182, 237, 154, 214, 93, 147, 98, 27, 166, 136, 59, 16, + 36, 254, 200, 155, 69, 233, 232, 151, 142, 43, 255, 27, 177, 19, 192, 71, 214, 251, 247, 31, 216, 102, 159, 27, + 74, 76, 183, 247, 252, 188, 15, 53, 159, 27, 202, 115, 239, 249, 156, 185, 24, 196, 27, 143, 60, 31, 238, 175, + 121, 59, 59, 27, 176, 156, 58, 16, 138, 195, 110, 254, 76, 67, 96, 23, 207, 26, 221, 17, 29, 147, 203, 253, 55, + 27, 152, 190, 88, 131, 104, 237, 15, 237, 255, 255, 27, 198, 214, 247, 94, 114, 253, 127, 199, 27, 85, 80, 236, + 240, 81, 54, 35, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1580, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3349385900813691324" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80703185fe0443" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1276170934281559190" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13068079449201692779" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8294129908685727186" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e720a6486950f831e0c47c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8367140971508164948" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aed672" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13321959819618501877" + } + } + } + ] + }, + "cborHex": "bf41711b2e7b68bb21b3a9bc4780703185fe0443bf1b11b5deb40a87dc961bb55b25057a3fd06b1b731aab353027e5d241904be720a6486950f831e0c47c1b741e0e61f05c6954ff43aed6721bb8e11bdf886344f5ff", + "cborBytes": [ + 191, 65, 113, 27, 46, 123, 104, 187, 33, 179, 169, 188, 71, 128, 112, 49, 133, 254, 4, 67, 191, 27, 17, 181, 222, + 180, 10, 135, 220, 150, 27, 181, 91, 37, 5, 122, 63, 208, 107, 27, 115, 26, 171, 53, 48, 39, 229, 210, 65, 144, + 75, 231, 32, 166, 72, 105, 80, 248, 49, 224, 196, 124, 27, 116, 30, 14, 97, 240, 92, 105, 84, 255, 67, 174, 214, + 114, 27, 184, 225, 27, 223, 136, 99, 68, 245, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1581, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "024a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5937222952525144932" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d7f1a3ebc30a236" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68de8dba681fe189bb67" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "94995701540869772" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8243865653731921668" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6548388174320661722" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12477951742325659276" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11379674495640360297" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17952026669749607175" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13527154616633727251" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee82" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14558376842425825160" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15056353815602568172" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "754e800c744ce1c762" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "70fdc4a9a9e617" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3632" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "865796d535e36c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10194568755204043101" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d51c800e1cb04" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "03f00302" + }, + { + "_tag": "ByteArray", + "bytearray": "dd928d59bcebee0f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0fbfa52d8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "07" + } + ] + } + } + ] + }, + "cborHex": "bf42024a1b526540d18d8ea364485d7f1a3ebc30a23641f94a68de8dba681fe189bb67bf1b01517e165588568c1b726818225abc0f041b5ae08c5985c074da1bad2a96ffa5c9968c1b9decb9a9643755691bf922692468c39b071bbbba1b74323d191342ee821bca09be9ac71077881bd0f2ea05f7969becff49754e800c744ce1c762bf4770fdc4a9a9e61742363247865796d535e36c1b8d7a62450c3bb15dff478d51c800e1cb04d905049f4403f0030248dd928d59bcebee0fff45d0fbfa52d89f4107ffff", + "cborBytes": [ + 191, 66, 2, 74, 27, 82, 101, 64, 209, 141, 142, 163, 100, 72, 93, 127, 26, 62, 188, 48, 162, 54, 65, 249, 74, 104, + 222, 141, 186, 104, 31, 225, 137, 187, 103, 191, 27, 1, 81, 126, 22, 85, 136, 86, 140, 27, 114, 104, 24, 34, 90, + 188, 15, 4, 27, 90, 224, 140, 89, 133, 192, 116, 218, 27, 173, 42, 150, 255, 165, 201, 150, 140, 27, 157, 236, + 185, 169, 100, 55, 85, 105, 27, 249, 34, 105, 36, 104, 195, 155, 7, 27, 187, 186, 27, 116, 50, 61, 25, 19, 66, + 238, 130, 27, 202, 9, 190, 154, 199, 16, 119, 136, 27, 208, 242, 234, 5, 247, 150, 155, 236, 255, 73, 117, 78, + 128, 12, 116, 76, 225, 199, 98, 191, 71, 112, 253, 196, 169, 169, 230, 23, 66, 54, 50, 71, 134, 87, 150, 213, 53, + 227, 108, 27, 141, 122, 98, 69, 12, 59, 177, 93, 255, 71, 141, 81, 200, 0, 225, 203, 4, 217, 5, 4, 159, 68, 3, + 240, 3, 2, 72, 221, 146, 141, 89, 188, 235, 238, 15, 255, 69, 208, 251, 250, 82, 216, 159, 65, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1582, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b97a7f6a6ebf1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4c1408" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4c6e191f326" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17158824492251103284" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f4e8fb6f64" + }, + { + "_tag": "ByteArray", + "bytearray": "18d5" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1f41b0536" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf476b97a7f6a6ebf19f434c1408ff46e4c6e191f326d8669f1bee2063f6dfe640349f45f4e8fb6f644218d5ffff45f1f41b053680ff", + "cborBytes": [ + 191, 71, 107, 151, 167, 246, 166, 235, 241, 159, 67, 76, 20, 8, 255, 70, 228, 198, 225, 145, 243, 38, 216, 102, + 159, 27, 238, 32, 99, 246, 223, 230, 64, 52, 159, 69, 244, 232, 251, 111, 100, 66, 24, 213, 255, 255, 69, 241, + 244, 27, 5, 54, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1583, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1821844254038853929" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13640503112343135253" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17477865068465553424" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5bde4d778e25" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54b4b404" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7970779594460770879" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f83ed42557" + }, + { + "_tag": "ByteArray", + "bytearray": "d68329279e5c1fe7" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbe3880a5e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9740607845721041836" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6589245721800768341" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b19487db24e1289291bbd4ccd4f68d2a4151bf28dd9ad96190010465bde4d778e254454b4b4049f1b6e9de5cf66c4323f45f83ed4255748d68329279e5c1fe7ff45bbe3880a5ebf1b872d973a4c95ebac1b5b71b41299b27b55ffff", + "cborBytes": [ + 191, 27, 25, 72, 125, 178, 78, 18, 137, 41, 27, 189, 76, 205, 79, 104, 210, 164, 21, 27, 242, 141, 217, 173, 150, + 25, 0, 16, 70, 91, 222, 77, 119, 142, 37, 68, 84, 180, 180, 4, 159, 27, 110, 157, 229, 207, 102, 196, 50, 63, 69, + 248, 62, 212, 37, 87, 72, 214, 131, 41, 39, 158, 92, 31, 231, 255, 69, 187, 227, 136, 10, 94, 191, 27, 135, 45, + 151, 58, 76, 149, 235, 172, 27, 91, 113, 180, 18, 153, 178, 123, 85, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1584, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f91f" + }, + { + "_tag": "ByteArray", + "bytearray": "cec58036cb8f03" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9529037178941855203" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7132971672042481547" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3a97c582243061" + }, + { + "_tag": "ByteArray", + "bytearray": "501c0501" + }, + { + "_tag": "ByteArray", + "bytearray": "fa2f7d82ca7132c4" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16948672196713549999" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "89" + }, + { + "_tag": "ByteArray", + "bytearray": "06cc457e9d9bffc01d" + } + ] + } + } + ] + }, + "cborHex": "bf089f42f91f47cec58036cb8f03ff0b9f1b843df0d3c651d5e31b62fd67f19104278b473a97c58224306144501c050148fa2f7d82ca7132c4ff1beb35c790a3a690af9f41894906cc457e9d9bffc01dffff", + "cborBytes": [ + 191, 8, 159, 66, 249, 31, 71, 206, 197, 128, 54, 203, 143, 3, 255, 11, 159, 27, 132, 61, 240, 211, 198, 81, 213, + 227, 27, 98, 253, 103, 241, 145, 4, 39, 139, 71, 58, 151, 197, 130, 36, 48, 97, 68, 80, 28, 5, 1, 72, 250, 47, + 125, 130, 202, 113, 50, 196, 255, 27, 235, 53, 199, 144, 163, 166, 144, 175, 159, 65, 137, 73, 6, 204, 69, 126, + 157, 155, 255, 192, 29, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1585, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9419809499965232185" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f905" + }, + { + "_tag": "ByteArray", + "bytearray": "da" + }, + { + "_tag": "ByteArray", + "bytearray": "01" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "10223eb17f5b8fe7b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4624264572879532854" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14d47d3a713b4e06" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf070f1b82b9e2d4f9471439d905009f42f90541da4101ff4910223eb17f5b8fe7b21b402cb020ede873364814d47d3a713b4e06d9050a80ff", + "cborBytes": [ + 191, 7, 15, 27, 130, 185, 226, 212, 249, 71, 20, 57, 217, 5, 0, 159, 66, 249, 5, 65, 218, 65, 1, 255, 73, 16, 34, + 62, 177, 127, 91, 143, 231, 178, 27, 64, 44, 176, 32, 237, 232, 115, 54, 72, 20, 212, 125, 58, 113, 59, 78, 6, + 217, 5, 10, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1586, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12583436522108462650" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "40b6f7ffec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e61" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9441262082" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4b45269795b7b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f364b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8040325014b3b29024ad983e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc53" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0e948cc1c0a95d2351aec" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16043802321754151108" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ecb74ac56" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17438761962462603160" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6193763831947701596" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1af5d00" + }, + { + "_tag": "ByteArray", + "bytearray": "0748cacf6154907a0473" + } + ] + } + } + ] + }, + "cborHex": "bf1baea158d8d1f3a63abf4540b6f7ffec420e6145944126208247d4b45269795b7b42b3b1414c43f364b94c8040325014b3b29024ad983e42fc534bc0e948cc1c0a95d2351aecff1bdea709353abe58c4454ecb74ac561bf202ed9c3f2d67989f1b55f4ab63a1e7ad5c44c1af5d004a0748cacf6154907a0473ffff", + "cborBytes": [ + 191, 27, 174, 161, 88, 216, 209, 243, 166, 58, 191, 69, 64, 182, 247, 255, 236, 66, 14, 97, 69, 148, 65, 38, 32, + 130, 71, 212, 180, 82, 105, 121, 91, 123, 66, 179, 177, 65, 76, 67, 243, 100, 185, 76, 128, 64, 50, 80, 20, 179, + 178, 144, 36, 173, 152, 62, 66, 252, 83, 75, 192, 233, 72, 204, 28, 10, 149, 210, 53, 26, 236, 255, 27, 222, 167, + 9, 53, 58, 190, 88, 196, 69, 78, 203, 116, 172, 86, 27, 242, 2, 237, 156, 63, 45, 103, 152, 159, 27, 85, 244, 171, + 99, 161, 231, 173, 92, 68, 193, 175, 93, 0, 74, 7, 72, 202, 207, 97, 84, 144, 122, 4, 115, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1587, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3575558472285335543" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17015117867616294747" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7c11d11e25263aa8" + } + ] + } + } + ] + }, + "cborHex": "bf1b319eef7c8634aff79f1bec21d78cf6abd75b487c11d11e25263aa8ffff", + "cborBytes": [ + 191, 27, 49, 158, 239, 124, 134, 52, 175, 247, 159, 27, 236, 33, 215, 140, 246, 171, 215, 91, 72, 124, 17, 209, + 30, 37, 38, 58, 168, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1588, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4265733c517e7ee58cea" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1605282253560451248" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "805769880488174755" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6810934565614712437" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9790111655074081931" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7478063764510660866" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7f22b2554f6fcd5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7945951890665816990" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04c2cbdd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10612354392787993530" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b003335a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11276614752666123256" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c051e0937636469" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b05ad2e6b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13287527831705359484" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f035c5a19" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2588684893368162863" + } + } + } + ] + }, + "cborHex": "bf4a4265733c517e7ee58ceabf1b16471bb457b590b01b0b2eab6fe934e4a31b5e854ce6cbe4f6751b87dd76ae181a2c8b1b67c76b5f9360d90248a7f22b2554f6fcd51b6e45b125257ac39e4404c2cbdd1b9346a817f4af43ba44b003335a1b9c7e955f1997fbf8483c051e0937636469ff456b05ad2e6b1bb866c8299fea147c458f035c5a191b23ecdb31f0a11a2fff", + "cborBytes": [ + 191, 74, 66, 101, 115, 60, 81, 126, 126, 229, 140, 234, 191, 27, 22, 71, 27, 180, 87, 181, 144, 176, 27, 11, 46, + 171, 111, 233, 52, 228, 163, 27, 94, 133, 76, 230, 203, 228, 246, 117, 27, 135, 221, 118, 174, 24, 26, 44, 139, + 27, 103, 199, 107, 95, 147, 96, 217, 2, 72, 167, 242, 43, 37, 84, 246, 252, 213, 27, 110, 69, 177, 37, 37, 122, + 195, 158, 68, 4, 194, 203, 221, 27, 147, 70, 168, 23, 244, 175, 67, 186, 68, 176, 3, 51, 90, 27, 156, 126, 149, + 95, 25, 151, 251, 248, 72, 60, 5, 30, 9, 55, 99, 100, 105, 255, 69, 107, 5, 173, 46, 107, 27, 184, 102, 200, 41, + 159, 234, 20, 124, 69, 143, 3, 92, 90, 25, 27, 35, 236, 219, 49, 240, 161, 26, 47, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1589, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcffc4bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10253154222966041526" + } + } + } + ] + }, + "cborHex": "bf413d0844fcffc4bf1b8e4a8571372febb6ff", + "cborBytes": [191, 65, 61, 8, 68, 252, 255, 196, 191, 27, 142, 74, 133, 113, 55, 47, 235, 182, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1590, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "47a2" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9213639464660884810" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dd5ca5384d1d131e" + }, + { + "_tag": "ByteArray", + "bytearray": "244b3d765683" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a604c50c55bcecf82e807" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bcf4" + }, + { + "_tag": "ByteArray", + "bytearray": "b38528b690aa8855e2" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9cc0d4cde53448a74caee33" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16897124813865306661" + } + } + } + ] + }, + "cborHex": "bf4247a29f1b7fdd6c46f3a1dd4a48dd5ca5384d1d131e46244b3d765683ff4b4a604c50c55bcecf82e8079f42bcf449b38528b690aa8855e2ff4cb9cc0d4cde53448a74caee331bea7ea57e4fe14a25ff", + "cborBytes": [ + 191, 66, 71, 162, 159, 27, 127, 221, 108, 70, 243, 161, 221, 74, 72, 221, 92, 165, 56, 77, 29, 19, 30, 70, 36, 75, + 61, 118, 86, 131, 255, 75, 74, 96, 76, 80, 197, 91, 206, 207, 130, 232, 7, 159, 66, 188, 244, 73, 179, 133, 40, + 182, 144, 170, 136, 85, 226, 255, 76, 185, 204, 13, 76, 222, 83, 68, 138, 116, 202, 238, 51, 27, 234, 126, 165, + 126, 79, 225, 74, 37, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1591, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2befa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + } + ] + }, + "cborHex": "bf43f2befa1bfffffffffffffff4ff", + "cborBytes": [191, 67, 242, 190, 250, 27, 255, 255, 255, 255, 255, 255, 255, 244, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1592, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "239516893477955284" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12243931518456998255" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1873f26b2d" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5537191780409458929" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2908590511097119445" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6738804715562061239" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5341728686044863061" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9249371154248636004" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6215070420720387442" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7568121376998273588" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5105840163299968756" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13226247075402649410" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc157b46a3adf433ca02" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16060789053665558551" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f06bddced8a5c8" + } + } + ] + }, + "cborHex": "bf1b0352ef58797566d4bf1ba9eb2ed84bd6a96f451873f26b2dff1b4cd80e964484c0f11b285d63a8d30402d51b5d850b2f61cdcdb7d8669f1b4a21a1f03237da5580ff1b805c5e0f3cbc1664d8669f1b56405d9e691385729f1b69075e4b7505b2341b46db96939d6ac6f4413affff1bb78d11a3b0ec8f424acc157b46a3adf433ca021bdee3628cf437c01747f06bddced8a5c8ff", + "cborBytes": [ + 191, 27, 3, 82, 239, 88, 121, 117, 102, 212, 191, 27, 169, 235, 46, 216, 75, 214, 169, 111, 69, 24, 115, 242, 107, + 45, 255, 27, 76, 216, 14, 150, 68, 132, 192, 241, 27, 40, 93, 99, 168, 211, 4, 2, 213, 27, 93, 133, 11, 47, 97, + 205, 205, 183, 216, 102, 159, 27, 74, 33, 161, 240, 50, 55, 218, 85, 128, 255, 27, 128, 92, 94, 15, 60, 188, 22, + 100, 216, 102, 159, 27, 86, 64, 93, 158, 105, 19, 133, 114, 159, 27, 105, 7, 94, 75, 117, 5, 178, 52, 27, 70, 219, + 150, 147, 157, 106, 198, 244, 65, 58, 255, 255, 27, 183, 141, 17, 163, 176, 236, 143, 66, 74, 204, 21, 123, 70, + 163, 173, 244, 51, 202, 2, 27, 222, 227, 98, 140, 244, 55, 192, 23, 71, 240, 107, 221, 206, 216, 165, 200, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1593, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15056693704475388461" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5987291736351871423" + } + }, + { + "_tag": "ByteArray", + "bytearray": "517a7c8c7a35ba895d83c9" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16025770751245805951" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17874507992332510876" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "207cee44f4b3" + } + } + ] + }, + "cborHex": "bf1bd0f41f26831daa2d9f1b5317221cb7e291bf4b517a7c8c7a35ba895d83c9ff1bde66f9970fd9e97f801bf80f0250d9dc269c46207cee44f4b3ff", + "cborBytes": [ + 191, 27, 208, 244, 31, 38, 131, 29, 170, 45, 159, 27, 83, 23, 34, 28, 183, 226, 145, 191, 75, 81, 122, 124, 140, + 122, 53, 186, 137, 93, 131, 201, 255, 27, 222, 102, 249, 151, 15, 217, 233, 127, 128, 27, 248, 15, 2, 80, 217, + 220, 38, 156, 70, 32, 124, 238, 68, 244, 179, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1594, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f89803ed" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5843656852933544150" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cbd3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18295922042288932762" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9830185704618038248" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "67ce2e8c7c" + } + ] + } + } + ] + }, + "cborHex": "bf0044f89803ed07a01b5118d6f25c6188d6d87e9f42cbd31bfde82c2958df079aff1b886bd5d0d7e193e841da1bffffffffffffffee1bfffffffffffffff51bffffffffffffffefd87f9f4567ce2e8c7cffff", + "cborBytes": [ + 191, 0, 68, 248, 152, 3, 237, 7, 160, 27, 81, 24, 214, 242, 92, 97, 136, 214, 216, 126, 159, 66, 203, 211, 27, + 253, 232, 44, 41, 88, 223, 7, 154, 255, 27, 136, 107, 213, 208, 215, 225, 147, 232, 65, 218, 27, 255, 255, 255, + 255, 255, 255, 255, 238, 27, 255, 255, 255, 255, 255, 255, 255, 245, 27, 255, 255, 255, 255, 255, 255, 255, 239, + 216, 127, 159, 69, 103, 206, 46, 140, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1595, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5208c10bf3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15537678115619076197" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "940f4d01a9589b89" + } + } + ] + } + } + ] + }, + "cborHex": "bf455208c10bf3bf1bd7a0ebec8bd5f86548940f4d01a9589b89ffff", + "cborBytes": [ + 191, 69, 82, 8, 193, 11, 243, 191, 27, 215, 160, 235, 236, 139, 213, 248, 101, 72, 148, 15, 77, 1, 169, 88, 155, + 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1596, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16269075849330241345" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff4d905089f1bfffffffffffffff81be1c75e49a7372f41ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 244, 217, 5, 8, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 27, + 225, 199, 94, 73, 167, 55, 47, 65, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1597, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0106fc84fbf8019c03" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7611521535492931177" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "abf2c1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12397591677690878847" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15218759151508893831" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16246802803663236098" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16428541883684421082" + } + } + ] + } + } + ] + }, + "cborHex": "bf490106fc84fbf8019c03d8669f1b69a18e824b4abe699f43abf2c11bac0d17f2131a9b7f1bd333e4d0dbe9b0871be1783d12182aec021be3fde7cd12a2fddaffffff", + "cborBytes": [ + 191, 73, 1, 6, 252, 132, 251, 248, 1, 156, 3, 216, 102, 159, 27, 105, 161, 142, 130, 75, 74, 190, 105, 159, 67, + 171, 242, 193, 27, 172, 13, 23, 242, 19, 26, 155, 127, 27, 211, 51, 228, 208, 219, 233, 176, 135, 27, 225, 120, + 61, 18, 24, 42, 236, 2, 27, 227, 253, 231, 205, 18, 162, 253, 218, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1598, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3462197195243670078" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18135687961370247390" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16990182487223575734" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15289049586919205145" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13368844557310390484" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16788812885263849421" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4638331382122444200" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eedc7a249e6041a1442b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12009295176132834098" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e35b88c7a8bb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13928075592645257794" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5490043484628507900" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13954428359979827148" + } + }, + { + "_tag": "ByteArray", + "bytearray": "73d0292c57a759c44ebb" + }, + { + "_tag": "ByteArray", + "bytearray": "403f0c06" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16996609506946849439" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18168707137402503305" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17098191155867734982" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3947817840888294930" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b300c32016cda4a3ed8669f1bfbaee81d26cd40de9f1bebc940f44c0624b61bd42d9d982da6e9191bb987ad4b2fe670d41be8fdd85e42a717cdffff1b405ea9d12df475a84aeedc7a249e6041a1442b1ba6a99655b035b33246e35b88c7a8bb1bc14a76f51868aa429f1b4c308d7636badcfc1bc1a816a8e03bffcc4a73d0292c57a759c44ebb44403f0c06ff1bebe0164b6f981a9f1bfc2436e128fb00891bed48fa442338d3c6d8669f1b36c97768ec18ae1280ffff", + "cborBytes": [ + 191, 27, 48, 12, 50, 1, 108, 218, 74, 62, 216, 102, 159, 27, 251, 174, 232, 29, 38, 205, 64, 222, 159, 27, 235, + 201, 64, 244, 76, 6, 36, 182, 27, 212, 45, 157, 152, 45, 166, 233, 25, 27, 185, 135, 173, 75, 47, 230, 112, 212, + 27, 232, 253, 216, 94, 66, 167, 23, 205, 255, 255, 27, 64, 94, 169, 209, 45, 244, 117, 168, 74, 238, 220, 122, 36, + 158, 96, 65, 161, 68, 43, 27, 166, 169, 150, 85, 176, 53, 179, 50, 70, 227, 91, 136, 199, 168, 187, 27, 193, 74, + 118, 245, 24, 104, 170, 66, 159, 27, 76, 48, 141, 118, 54, 186, 220, 252, 27, 193, 168, 22, 168, 224, 59, 255, + 204, 74, 115, 208, 41, 44, 87, 167, 89, 196, 78, 187, 68, 64, 63, 12, 6, 255, 27, 235, 224, 22, 75, 111, 152, 26, + 159, 27, 252, 36, 54, 225, 40, 251, 0, 137, 27, 237, 72, 250, 68, 35, 56, 211, 198, 216, 102, 159, 27, 54, 201, + 119, 104, 236, 24, 174, 18, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1599, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09c7d627" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c022a02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb12f37caf7e4b9f1f88dbdd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4000161085396403806" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1290385237075950193" + } + } + ] + } + } + ] + }, + "cborHex": "bf4409c7d627445c022a024ceb12f37caf7e4b9f1f88dbdd9f1b37836d503b64c65e1b11e85e894f51fa71ffff", + "cborBytes": [ + 191, 68, 9, 199, 214, 39, 68, 92, 2, 42, 2, 76, 235, 18, 243, 124, 175, 126, 75, 159, 31, 136, 219, 221, 159, 27, + 55, 131, 109, 80, 59, 100, 198, 94, 27, 17, 232, 94, 137, 79, 81, 250, 113, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1600, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16236418995597329010" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2685240100952284927" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5b72b59b33458680e8" + }, + { + "_tag": "ByteArray", + "bytearray": "f2ad50e9bd649dc2f02423" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17185490122297839533" + } + }, + { + "_tag": "ByteArray", + "bytearray": "76d5776dc338d3be9c38" + }, + { + "_tag": "ByteArray", + "bytearray": "93755d" + } + ] + } + } + ] + }, + "cborHex": "bf1be153590d60fbc272d8669f1b2543e3a511e51eff9f495b72b59b33458680e84bf2ad50e9bd649dc2f024231bee7f2036ae8c0fad4a76d5776dc338d3be9c384393755dffffff", + "cborBytes": [ + 191, 27, 225, 83, 89, 13, 96, 251, 194, 114, 216, 102, 159, 27, 37, 67, 227, 165, 17, 229, 30, 255, 159, 73, 91, + 114, 181, 155, 51, 69, 134, 128, 232, 75, 242, 173, 80, 233, 189, 100, 157, 194, 240, 36, 35, 27, 238, 127, 32, + 54, 174, 140, 15, 173, 74, 118, 213, 119, 109, 195, 56, 211, 190, 156, 56, 67, 147, 117, 93, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1601, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35fc03" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f86b70" + }, + { + "_tag": "ByteArray", + "bytearray": "46430e5534eb2df2ea" + } + ] + } + } + ] + }, + "cborHex": "bf134335fc031bfffffffffffffffe9f43f86b704946430e5534eb2df2eaffff", + "cborBytes": [ + 191, 19, 67, 53, 252, 3, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 67, 248, 107, 112, 73, 70, 67, 14, 85, + 52, 235, 45, 242, 234, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1602, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10371516737870745638" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3155821551624079697" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c77304344588782d3d62d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7285864545496745666" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "317d4539e0e4be" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13167607233310627478" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d41be8781c0df96c61e3" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b8fef0785becdd026bf1b2bcbbafb1f1349514bc77304344588782d3d62d31b651c9733b3f246c247317d4539e0e4be1bb6bcbd03835816964ad41be8781c0df96c61e3ffff", + "cborBytes": [ + 191, 27, 143, 239, 7, 133, 190, 205, 208, 38, 191, 27, 43, 203, 186, 251, 31, 19, 73, 81, 75, 199, 115, 4, 52, 69, + 136, 120, 45, 61, 98, 211, 27, 101, 28, 151, 51, 179, 242, 70, 194, 71, 49, 125, 69, 57, 224, 228, 190, 27, 182, + 188, 189, 3, 131, 88, 22, 150, 74, 212, 27, 232, 120, 28, 13, 249, 108, 97, 227, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1603, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4897499519854163158" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2156f8ad8e678a7a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7304127558892309605" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68f97bc4c9b430382d80" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab5c3742c8a14e30cd9168" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2bd0c55bbb289c8a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f188e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10035018032232478318" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f931" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d16cf127" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b43f769dd808db4d6bf482156f8ad8e678a7a1b655d7950ddeacc654a68f97bc4c9b430382d8041564bab5c3742c8a14e30cd9168482bd0c55bbb289c8a43f188e11b8b438bbb85db366e42f93144d16cf127ffff", + "cborBytes": [ + 191, 27, 67, 247, 105, 221, 128, 141, 180, 214, 191, 72, 33, 86, 248, 173, 142, 103, 138, 122, 27, 101, 93, 121, + 80, 221, 234, 204, 101, 74, 104, 249, 123, 196, 201, 180, 48, 56, 45, 128, 65, 86, 75, 171, 92, 55, 66, 200, 161, + 78, 48, 205, 145, 104, 72, 43, 208, 197, 91, 187, 40, 156, 138, 67, 241, 136, 225, 27, 139, 67, 139, 187, 133, + 219, 54, 110, 66, 249, 49, 68, 209, 108, 241, 39, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1604, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0520e628cdf571" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b9647704e4c123232" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c6bd6c51f73e0fb9ebf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74a3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6150546706144145078" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7988753946414577116" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb259c4b842f2391" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4472983676363024371" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e34af404d4" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "71369934fe" + }, + { + "_tag": "ByteArray", + "bytearray": "fa88905b" + }, + { + "_tag": "ByteArray", + "bytearray": "b40463dd6d9463" + } + ] + } + } + ] + }, + "cborHex": "bf470520e628cdf57141ef491b9647704e4c1232324a7c6bd6c51f73e0fb9ebf4274a31b555b21a46a2baeb641821b6eddc163560a75dc48bb259c4b842f2391d8669f1b3e133af46bbd27f380ff45e34af404d49f4571369934fe44fa88905b47b40463dd6d9463ffff", + "cborBytes": [ + 191, 71, 5, 32, 230, 40, 205, 245, 113, 65, 239, 73, 27, 150, 71, 112, 78, 76, 18, 50, 50, 74, 124, 107, 214, 197, + 31, 115, 224, 251, 158, 191, 66, 116, 163, 27, 85, 91, 33, 164, 106, 43, 174, 182, 65, 130, 27, 110, 221, 193, 99, + 86, 10, 117, 220, 72, 187, 37, 156, 75, 132, 47, 35, 145, 216, 102, 159, 27, 62, 19, 58, 244, 107, 189, 39, 243, + 128, 255, 69, 227, 74, 244, 4, 212, 159, 69, 113, 54, 153, 52, 254, 68, 250, 136, 144, 91, 71, 180, 4, 99, 221, + 109, 148, 99, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1605, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3760221260206153125" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17664431876782178021" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9521d1ffb5f08e04778" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b342efd504b759da5d8669f1bf524ab33a6b03ee580ff4ab9521d1ffb5f08e04778a0ff", + "cborBytes": [ + 191, 27, 52, 46, 253, 80, 75, 117, 157, 165, 216, 102, 159, 27, 245, 36, 171, 51, 166, 176, 62, 229, 128, 255, 74, + 185, 82, 29, 31, 251, 95, 8, 224, 71, 120, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1606, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14945115796973032591" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab9dbf3074ce" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "10a76157141c27" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7041933795271953155" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7b3f11f2a80e" + } + ] + } + } + ] + }, + "cborHex": "bf1bcf67b7a27da8148f1246ab9dbf3074ce9f4710a76157141c271b61b9f97a1f00cb03467b3f11f2a80effff", + "cborBytes": [ + 191, 27, 207, 103, 183, 162, 125, 168, 20, 143, 18, 70, 171, 157, 191, 48, 116, 206, 159, 71, 16, 167, 97, 87, 20, + 28, 39, 27, 97, 185, 249, 122, 31, 0, 203, 3, 70, 123, 63, 17, 242, 168, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1607, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "020506" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + } + ] + }, + "cborHex": "bf430205061bfffffffffffffffdff", + "cborBytes": [191, 67, 2, 5, 6, 27, 255, 255, 255, 255, 255, 255, 255, 253, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1608, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7365102646457333341" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4c94ee05" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9067869962390407342" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "532b6583063bff2693bec2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11868089191566437687" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94af" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "855f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afe8c529c0a33288ea77" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14440187334592474476" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14344789260968326651" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0ca16a86e6161d74" + }, + { + "_tag": "ByteArray", + "bytearray": "e22d793b0654d7c8de8362" + }, + { + "_tag": "ByteArray", + "bytearray": "d7cb1a62bc34" + }, + { + "_tag": "ByteArray", + "bytearray": "66d21f77" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15570893539839382151" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8" + } + } + ] + }, + "cborHex": "bf1b663619d5c060f65d9f444c94ee05ff1b7dd78bafe9b708aebf4b532b6583063bff2693bec21ba4b3ec3d69f86d374294af42855f4aafe8c529c0a33288ea771bc865d9df987aad6cff1bc712edd4b5daf5fb9f480ca16a86e6161d744be22d793b0654d7c8de836246d7cb1a62bc344466d21f77ff1bd816ed2d258d128741f8ff", + "cborBytes": [ + 191, 27, 102, 54, 25, 213, 192, 96, 246, 93, 159, 68, 76, 148, 238, 5, 255, 27, 125, 215, 139, 175, 233, 183, 8, + 174, 191, 75, 83, 43, 101, 131, 6, 59, 255, 38, 147, 190, 194, 27, 164, 179, 236, 61, 105, 248, 109, 55, 66, 148, + 175, 66, 133, 95, 74, 175, 232, 197, 41, 192, 163, 50, 136, 234, 119, 27, 200, 101, 217, 223, 152, 122, 173, 108, + 255, 27, 199, 18, 237, 212, 181, 218, 245, 251, 159, 72, 12, 161, 106, 134, 230, 22, 29, 116, 75, 226, 45, 121, + 59, 6, 84, 215, 200, 222, 131, 98, 70, 215, 203, 26, 98, 188, 52, 68, 102, 210, 31, 119, 255, 27, 216, 22, 237, + 45, 37, 141, 18, 135, 65, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1609, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14660101247875395594" + } + } + ] + } + } + ] + }, + "cborHex": "bf13a041fc9f1bcb73246992dfb00affff", + "cborBytes": [191, 19, 160, 65, 252, 159, 27, 203, 115, 36, 105, 146, 223, 176, 10, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1610, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6907785964999511182" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4944491570023013928" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12241117540140173397" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ed5c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11392614384127600868" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13112365342132788496" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ad24a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15542179790072910290" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ea489a5b662bbee7" + } + ] + } + } + ] + }, + "cborHex": "bf1b5fdd62bc74398c8ed8669f1b449e5ce2ca229e289f1ba9e12f8be9dbc85542ed5c1b9e1ab26bf4ee68e41bb5f87ace6ef7dd10434ad24affff1bd7b0ea2c4e8d11d2d905029f48ea489a5b662bbee7ffff", + "cborBytes": [ + 191, 27, 95, 221, 98, 188, 116, 57, 140, 142, 216, 102, 159, 27, 68, 158, 92, 226, 202, 34, 158, 40, 159, 27, 169, + 225, 47, 139, 233, 219, 200, 85, 66, 237, 92, 27, 158, 26, 178, 107, 244, 238, 104, 228, 27, 181, 248, 122, 206, + 110, 247, 221, 16, 67, 74, 210, 74, 255, 255, 27, 215, 176, 234, 44, 78, 141, 17, 210, 217, 5, 2, 159, 72, 234, + 72, 154, 91, 102, 43, 190, 231, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1611, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b6d9d462d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d580669c7a4abd9b1ba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd07342302" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7143834395735437127" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7440898808328443676" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6553681665326166333" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "47d5e5" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9932209168755483553" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9043b416e17b6238c12366" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6931419174315691114" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16859118038161407353" + } + } + ] + } + } + ] + }, + "cborHex": "bf09bf451b6d9d462d4a5d580669c7a4abd9b1ba45fd073423021b6323ff8884072f4741ff1b6743620ae80b571cff1b5af35ac070c1b13dd9050c9f4347d5e5ff1b89d64b9daa8c63a1d90507801bfffffffffffffff3d8799f4b9043b416e17b6238c123661b60315903ca6b0c6a1be9f79e8842fdbd79ffff", + "cborBytes": [ + 191, 9, 191, 69, 27, 109, 157, 70, 45, 74, 93, 88, 6, 105, 199, 164, 171, 217, 177, 186, 69, 253, 7, 52, 35, 2, + 27, 99, 35, 255, 136, 132, 7, 47, 71, 65, 255, 27, 103, 67, 98, 10, 232, 11, 87, 28, 255, 27, 90, 243, 90, 192, + 112, 193, 177, 61, 217, 5, 12, 159, 67, 71, 213, 229, 255, 27, 137, 214, 75, 157, 170, 140, 99, 161, 217, 5, 7, + 128, 27, 255, 255, 255, 255, 255, 255, 255, 243, 216, 121, 159, 75, 144, 67, 180, 22, 225, 123, 98, 56, 193, 35, + 102, 27, 96, 49, 89, 3, 202, 107, 12, 106, 27, 233, 247, 158, 136, 66, 253, 189, 121, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1612, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5636973480158352137" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2743149f07e039149533" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b29d9d71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2978645649909774601" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e01f81464a9cb3dd4fc4a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7751433225517105664" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6905917538871234587" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4950640186250299922" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16404102030277786410" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6efef7a9e5611334bec43b38" + }, + { + "_tag": "ByteArray", + "bytearray": "5e31d6ffc1e8c8" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9061608351396661185" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10362091991425044815" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13971185179496338211" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15128572428261673648" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2859310513101079836" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10320819785390608842" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15047808465157892516" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4a6d2897d897e25bcaa08c2" + } + } + ] + }, + "cborHex": "bf1b4e3a8d83a522d309bf4a2743149f07e039149533410244b29d9d711b2956466fe2a279094be01f81464a9cb3dd4fc4a61b6b929f73231b8200ff1b5fd6bf69988f501bd8669f1b44b4350510390a129f1be3a713e245f8bb2a4c6efef7a9e5611334bec43b38475e31d6ffc1e8c8ffff1b7dc14cc8feb607c11b8fcd8bc3f6cf514f1bc1e39ee5f314d323d8669f1bd1f37c78094e4ab09f1b27ae4fc32bee051c1b8f3aeae9ab07d1caffff1bd0d48e1285da29a44cc4a6d2897d897e25bcaa08c2ff", + "cborBytes": [ + 191, 27, 78, 58, 141, 131, 165, 34, 211, 9, 191, 74, 39, 67, 20, 159, 7, 224, 57, 20, 149, 51, 65, 2, 68, 178, + 157, 157, 113, 27, 41, 86, 70, 111, 226, 162, 121, 9, 75, 224, 31, 129, 70, 74, 156, 179, 221, 79, 196, 166, 27, + 107, 146, 159, 115, 35, 27, 130, 0, 255, 27, 95, 214, 191, 105, 152, 143, 80, 27, 216, 102, 159, 27, 68, 180, 53, + 5, 16, 57, 10, 18, 159, 27, 227, 167, 19, 226, 69, 248, 187, 42, 76, 110, 254, 247, 169, 229, 97, 19, 52, 190, + 196, 59, 56, 71, 94, 49, 214, 255, 193, 232, 200, 255, 255, 27, 125, 193, 76, 200, 254, 182, 7, 193, 27, 143, 205, + 139, 195, 246, 207, 81, 79, 27, 193, 227, 158, 229, 243, 20, 211, 35, 216, 102, 159, 27, 209, 243, 124, 120, 9, + 78, 74, 176, 159, 27, 39, 174, 79, 195, 43, 238, 5, 28, 27, 143, 58, 234, 233, 171, 7, 209, 202, 255, 255, 27, + 208, 212, 142, 18, 133, 218, 41, 164, 76, 196, 166, 210, 137, 125, 137, 126, 37, 188, 170, 8, 194, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1613, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8287655641405372351" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e7fe7c8d3289" + }, + { + "_tag": "ByteArray", + "bytearray": "f10842395d1e47b86b82163a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10032328442998433971" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9727962271350381140" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9065981663874890990" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6849426244887105796" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2142803104391612082" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b7303aae55ebab7bf9f46e7fe7c8d32894cf10842395d1e47b86b82163a1b8b39fd90baf828b31b8700aa25143dda54ff1b7dd0d64a2777bcee9f1b5f0e0ce141bbd1041b1dbcc41204ddc6b2ffff", + "cborBytes": [ + 191, 27, 115, 3, 170, 229, 94, 186, 183, 191, 159, 70, 231, 254, 124, 141, 50, 137, 76, 241, 8, 66, 57, 93, 30, + 71, 184, 107, 130, 22, 58, 27, 139, 57, 253, 144, 186, 248, 40, 179, 27, 135, 0, 170, 37, 20, 61, 218, 84, 255, + 27, 125, 208, 214, 74, 39, 119, 188, 238, 159, 27, 95, 14, 12, 225, 65, 187, 209, 4, 27, 29, 188, 196, 18, 4, 221, + 198, 178, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1614, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16076357397395776884" + } + } + } + ] + }, + "cborHex": "bf41b21bdf1ab1e071ffa574ff", + "cborBytes": [191, 65, 178, 27, 223, 26, 177, 224, 113, 255, 165, 116, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1615, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e35ccf34" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf44e35ccf34bf011bfffffffffffffff7ffff", + "cborBytes": [191, 68, 227, 92, 207, 52, 191, 1, 27, 255, 255, 255, 255, 255, 255, 255, 247, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1616, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "51ea6bba38426bfb3a97335b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63fbb7fe01a1" + } + } + ] + }, + "cborHex": "bf4c51ea6bba38426bfb3a97335b4663fbb7fe01a1ff", + "cborBytes": [191, 76, 81, 234, 107, 186, 56, 66, 107, 251, 58, 151, 51, 91, 70, 99, 251, 183, 254, 1, 161, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1617, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14214187458321288500" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1389500954645044472" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9eed" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4646187140200891903" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12497003179570328738" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bc542f02ef00d8d34bf1b13487fc1a0af1cf8429eed1b407a929663a985ff1bad6e462e0b3774a2ffff", + "cborBytes": [ + 191, 27, 197, 66, 240, 46, 240, 13, 141, 52, 191, 27, 19, 72, 127, 193, 160, 175, 28, 248, 66, 158, 237, 27, 64, + 122, 146, 150, 99, 169, 133, 255, 27, 173, 110, 70, 46, 11, 55, 116, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1618, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14138455190213040144" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7038708046573471182" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0133a9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11480054461985862891" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4dafd7c34cf7219d631fe7" + } + ] + } + } + ] + }, + "cborHex": "bf1bc435e216356d18101b61ae83acf9b205ce430133a9d8669f1b9f5158b590ce34eb9f4b4dafd7c34cf7219d631fe7ffffff", + "cborBytes": [ + 191, 27, 196, 53, 226, 22, 53, 109, 24, 16, 27, 97, 174, 131, 172, 249, 178, 5, 206, 67, 1, 51, 169, 216, 102, + 159, 27, 159, 81, 88, 181, 144, 206, 52, 235, 159, 75, 77, 175, 215, 195, 76, 247, 33, 157, 99, 31, 231, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1619, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f904f9fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14077164662544695430" + } + } + } + ] + }, + "cborHex": "bf0d0844f904f9fd1bc35c22ad33a88086ff", + "cborBytes": [191, 13, 8, 68, 249, 4, 249, 253, 27, 195, 92, 34, 173, 51, 168, 128, 134, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1620, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e036" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12328323550957131104" + } + } + } + ] + }, + "cborHex": "bf42e0361bab1700f38ae1d560ff", + "cborBytes": [191, 66, 224, 54, 27, 171, 23, 0, 243, 138, 225, 213, 96, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1621, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1ba45fcfc0c" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbf9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17385045620150069433" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01f901fa" + } + } + ] + } + } + ] + }, + "cborHex": "bf46a1ba45fcfc0c8042fbf9bf1bf14416e1b10168b94401f901faffff", + "cborBytes": [ + 191, 70, 161, 186, 69, 252, 252, 12, 128, 66, 251, 249, 191, 27, 241, 68, 22, 225, 177, 1, 104, 185, 68, 1, 249, + 1, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1622, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6408410200397789781" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10124305212832176485" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9752420416189560888" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c91780373" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bcff0c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf1bf58522308c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c06801e6c74e890580ffc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b58ef3f1fc1b33a55801b8c80c1f3407f59651b87578eb2af3ef838452c91780373bf442bcff0c447cf1bf58522308c4b6c06801e6c74e890580ffc418cffff", + "cborBytes": [ + 191, 27, 88, 239, 63, 31, 193, 179, 58, 85, 128, 27, 140, 128, 193, 243, 64, 127, 89, 101, 27, 135, 87, 142, 178, + 175, 62, 248, 56, 69, 44, 145, 120, 3, 115, 191, 68, 43, 207, 240, 196, 71, 207, 27, 245, 133, 34, 48, 140, 75, + 108, 6, 128, 30, 108, 116, 232, 144, 88, 15, 252, 65, 140, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1623, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fbe56e59d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2743a679" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12774744123177863852" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "936191e7ef8362" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f645092c60d41703f97e6fff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e312" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6659923585750458874" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb0535f4c346884de5bd1d47" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1192144404617213567" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14c18b9a169bf3c0ef99" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8de32d3faa02be032bf8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ea15ef80e15" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94ac425732634269b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0aabac8d907a8777c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a354d39665eb5914e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6987206325590141319" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f81bc48fe7ea89ab98f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5224589102727679" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6595458397040859286" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4525575397999070785" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7441438206877827955" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7311689219973734606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9364661401840038135" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8510996274088709477" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15034d654d2adb05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10398473093882543761" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d9dee730f4aa9" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1460663911574604611" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91a6aa72fc8b48f914043e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9368892061060388631" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ef6f8f12" + }, + { + "_tag": "ByteArray", + "bytearray": "c2e8c8f44981478fa573a0bb" + }, + { + "_tag": "ByteArray", + "bytearray": "147d4baf4050aaed16f673" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe6042a9b4c870" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9657982460969166557" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "83cf36" + } + ] + } + } + ] + }, + "cborHex": "bf450fbe56e59dbf442743a6791bb1490218b6868aac47936191e7ef83624cf645092c60d41703f97e6fff42e3121b5c6ccd3727e6e1fa4ceb0535f4c346884de5bd1d471b108b59050e2db67fff4a14c18b9a169bf3c0ef99bf4a8de32d3faa02be032bf8466ea15ef80e154994ac425732634269b5490aabac8d907a8777c049a354d39665eb5914e51b60f78b222129a987ff4a2f81bc48fe7ea89ab98fbf1b00128fbc7190c1ff1b5b87c677c67cd8961b3ece12d8d1fb4e411b67454c9f6af903731b6578569b489660ce1b81f5f5edca7cb0f71b761d2204a1bb0d654815034d654d2adb051b904ecc2f77537e91470d9dee730f4aa9ff41531b14455216b1a30b434b91a6aa72fc8b48f914043ed8669f1b8204fdb0e67b57179f44ef6f8f124cc2e8c8f44981478fa573a0bb4b147d4baf4050aaed16f673ffff47fe6042a9b4c870d8669f1b86080be0c90526dd9f4383cf36ffffff", + "cborBytes": [ + 191, 69, 15, 190, 86, 229, 157, 191, 68, 39, 67, 166, 121, 27, 177, 73, 2, 24, 182, 134, 138, 172, 71, 147, 97, + 145, 231, 239, 131, 98, 76, 246, 69, 9, 44, 96, 212, 23, 3, 249, 126, 111, 255, 66, 227, 18, 27, 92, 108, 205, 55, + 39, 230, 225, 250, 76, 235, 5, 53, 244, 195, 70, 136, 77, 229, 189, 29, 71, 27, 16, 139, 89, 5, 14, 45, 182, 127, + 255, 74, 20, 193, 139, 154, 22, 155, 243, 192, 239, 153, 191, 74, 141, 227, 45, 63, 170, 2, 190, 3, 43, 248, 70, + 110, 161, 94, 248, 14, 21, 73, 148, 172, 66, 87, 50, 99, 66, 105, 181, 73, 10, 171, 172, 141, 144, 122, 135, 119, + 192, 73, 163, 84, 211, 150, 101, 235, 89, 20, 229, 27, 96, 247, 139, 34, 33, 41, 169, 135, 255, 74, 47, 129, 188, + 72, 254, 126, 168, 154, 185, 143, 191, 27, 0, 18, 143, 188, 113, 144, 193, 255, 27, 91, 135, 198, 119, 198, 124, + 216, 150, 27, 62, 206, 18, 216, 209, 251, 78, 65, 27, 103, 69, 76, 159, 106, 249, 3, 115, 27, 101, 120, 86, 155, + 72, 150, 96, 206, 27, 129, 245, 245, 237, 202, 124, 176, 247, 27, 118, 29, 34, 4, 161, 187, 13, 101, 72, 21, 3, + 77, 101, 77, 42, 219, 5, 27, 144, 78, 204, 47, 119, 83, 126, 145, 71, 13, 157, 238, 115, 15, 74, 169, 255, 65, 83, + 27, 20, 69, 82, 22, 177, 163, 11, 67, 75, 145, 166, 170, 114, 252, 139, 72, 249, 20, 4, 62, 216, 102, 159, 27, + 130, 4, 253, 176, 230, 123, 87, 23, 159, 68, 239, 111, 143, 18, 76, 194, 232, 200, 244, 73, 129, 71, 143, 165, + 115, 160, 187, 75, 20, 125, 75, 175, 64, 80, 170, 237, 22, 246, 115, 255, 255, 71, 254, 96, 66, 169, 180, 200, + 112, 216, 102, 159, 27, 134, 8, 11, 224, 201, 5, 38, 221, 159, 67, 131, 207, 54, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1624, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "010546ee" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fb52c223b3e98c" + } + ] + } + } + ] + }, + "cborHex": "bf1044010546ee1bfffffffffffffffd9f47fb52c223b3e98cffff", + "cborBytes": [ + 191, 16, 68, 1, 5, 70, 238, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 71, 251, 82, 194, 35, 179, 233, 140, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1625, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d664afadec57cc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "36882fa794572ce8637fd4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48fb53acd9b75503b1d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f60d739912b330" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "771ae15bc68714829d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4696057073507259252" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0b8047d664afadec57ccbf4b36882fa794572ce8637fd44a48fb53acd9b75503b1d1413a47f60d739912b33049771ae15bc68714829d1b412bbf070f5c5374ffff", + "cborBytes": [ + 191, 11, 128, 71, 214, 100, 175, 173, 236, 87, 204, 191, 75, 54, 136, 47, 167, 148, 87, 44, 232, 99, 127, 212, 74, + 72, 251, 83, 172, 217, 183, 85, 3, 177, 209, 65, 58, 71, 246, 13, 115, 153, 18, 179, 48, 73, 119, 26, 225, 91, + 198, 135, 20, 130, 157, 27, 65, 43, 191, 7, 15, 92, 83, 116, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1626, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "58" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1086fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cfba965" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af05aa06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5e3cc563dc7f9320aaec715" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3978350622296253025" + } + } + ] + } + } + ] + }, + "cborHex": "bf4158431086fe448cfba965d9050180419dd87d9f030aff44af05aa0641694cc5e3cc563dc7f9320aaec7159f1b3735f0d011ec2261ffff", + "cborBytes": [ + 191, 65, 88, 67, 16, 134, 254, 68, 140, 251, 169, 101, 217, 5, 1, 128, 65, 157, 216, 125, 159, 3, 10, 255, 68, + 175, 5, 170, 6, 65, 105, 76, 197, 227, 204, 86, 61, 199, 249, 50, 10, 174, 199, 21, 159, 27, 55, 53, 240, 208, 17, + 236, 34, 97, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1627, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "107c4871b923" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8683361054851830777" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cbf3078a8e2b0ddc7ed89376" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8703775693282387558" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e84549f0ff06135684" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14483512050299248469" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fe74adca7d74a669e90d" + } + ] + } + } + ] + }, + "cborHex": "bf46107c4871b923d8669f1b78817edf7ae793f99f4ccbf3078a8e2b0ddc7ed893761b78ca05e0e2c6a66649e84549f0ff061356841bc8ffc5790a2d1f554afe74adca7d74a669e90dffffff", + "cborBytes": [ + 191, 70, 16, 124, 72, 113, 185, 35, 216, 102, 159, 27, 120, 129, 126, 223, 122, 231, 147, 249, 159, 76, 203, 243, + 7, 138, 142, 43, 13, 220, 126, 216, 147, 118, 27, 120, 202, 5, 224, 226, 198, 166, 102, 73, 232, 69, 73, 240, 255, + 6, 19, 86, 132, 27, 200, 255, 197, 121, 10, 45, 31, 85, 74, 254, 116, 173, 202, 125, 116, 166, 105, 233, 13, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1628, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "291ea2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9109705818726326793" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2938ab1b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4916457150052927435" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63fea65ed808744e4bc78b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35b5fed05d38ee21c8ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "598a52ae411c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15665783239503801666" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11227621364371287188" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12631017691209415520" + } + }, + { + "_tag": "ByteArray", + "bytearray": "47ab" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ead95dbcf571d6b0c47c7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "264725c247dbc4a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3682687451041245248" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b75c54b33" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16489212053861517524" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf43291ea21b7e6c2d2d457de209442938ab1b1b443ac3babe5587cb412e4b63fea65ed808744e4bc78b41494a35b5fed05d38ee21c8ff46598a52ae411cd8669f1bd9680adafee46d429f1b9bd08624f7efec94410c1baf4a63ab0c363b604247abffff4b6ead95dbcf571d6b0c47c7bf48264725c247dbc4a51b331b88b99a1a2840459b75c54b331be4d572ffd88148d4ffff", + "cborBytes": [ + 191, 67, 41, 30, 162, 27, 126, 108, 45, 45, 69, 125, 226, 9, 68, 41, 56, 171, 27, 27, 68, 58, 195, 186, 190, 85, + 135, 203, 65, 46, 75, 99, 254, 166, 94, 216, 8, 116, 78, 75, 199, 139, 65, 73, 74, 53, 181, 254, 208, 93, 56, 238, + 33, 200, 255, 70, 89, 138, 82, 174, 65, 28, 216, 102, 159, 27, 217, 104, 10, 218, 254, 228, 109, 66, 159, 27, 155, + 208, 134, 36, 247, 239, 236, 148, 65, 12, 27, 175, 74, 99, 171, 12, 54, 59, 96, 66, 71, 171, 255, 255, 75, 110, + 173, 149, 219, 207, 87, 29, 107, 12, 71, 199, 191, 72, 38, 71, 37, 194, 71, 219, 196, 165, 27, 51, 27, 136, 185, + 154, 26, 40, 64, 69, 155, 117, 197, 75, 51, 27, 228, 213, 114, 255, 216, 129, 72, 212, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1629, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "493be8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e7dd11efd1007f61f" + } + } + ] + }, + "cborHex": "bf43493be8498e7dd11efd1007f61fff", + "cborBytes": [191, 67, 73, 59, 232, 73, 142, 125, 209, 30, 253, 16, 7, 246, 31, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1630, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3202452867522180046" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "617d641e0f684951b4dd0d18" + } + } + ] + }, + "cborHex": "bf1b2c7165ea6a9733ce4c617d641e0f684951b4dd0d18ff", + "cborBytes": [ + 191, 27, 44, 113, 101, 234, 106, 151, 51, 206, 76, 97, 125, 100, 30, 15, 104, 73, 81, 180, 221, 13, 24, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1631, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b08" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0405ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2416e145afba9fcaa1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13658146794179428685" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43b80061" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96e54f4ada2996ed" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "476b562836" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e25aa13b42f6a1f85b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a7f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc7850" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9132104083279182338" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf424b08bf430405ff0a492416e145afba9fcaa11bbd8b7c253534814d4443b800614896e54f4ada2996ed45476b56283649e25aa13b42f6a1f85b428a7f1bffffffffffffffee43bc78501b7ebbc0479fbffa02ffff", + "cborBytes": [ + 191, 66, 75, 8, 191, 67, 4, 5, 255, 10, 73, 36, 22, 225, 69, 175, 186, 159, 202, 161, 27, 189, 139, 124, 37, 53, + 52, 129, 77, 68, 67, 184, 0, 97, 72, 150, 229, 79, 74, 218, 41, 150, 237, 69, 71, 107, 86, 40, 54, 73, 226, 90, + 161, 59, 66, 246, 161, 248, 91, 66, 138, 127, 27, 255, 255, 255, 255, 255, 255, 255, 238, 67, 188, 120, 80, 27, + 126, 187, 192, 71, 159, 191, 250, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1632, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5092984808114018980" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5233062690479708326" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16593915307478185652" + } + }, + { + "_tag": "ByteArray", + "bytearray": "46b6467ea0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9031536701457194318" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5905471357389963423" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5552444445291730003" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "81ebe0c36a63" + }, + { + "_tag": "ByteArray", + "bytearray": "d140c9508163e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17841233748825799726" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11288356161284848971" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11417866815631247102" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4802474775926508229" + } + }, + { + "_tag": "ByteArray", + "bytearray": "60c18a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3223151700232582787" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15681313875276023640" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2817e9" + } + } + ] + }, + "cborHex": "bf1b46adeab2fe18daa4d8669f1b489f92ca816498a69f1be6496e0dc72776b44546b6467ea01b7d5676c762425d4effff1b51f472e93879009fd8669f1b4d0e3ece0cb454539f4681ebe0c36a6347d140c9508163e31bf798cb915178fc2effff1b9ca84c1ed379bd4b9f1b9e74695fd66bc6fe1b42a5d15d35df8ac54360c18a1b2cbaef64f58f3683ff1bd99f37e2eb3b4758432817e9ff", + "cborBytes": [ + 191, 27, 70, 173, 234, 178, 254, 24, 218, 164, 216, 102, 159, 27, 72, 159, 146, 202, 129, 100, 152, 166, 159, 27, + 230, 73, 110, 13, 199, 39, 118, 180, 69, 70, 182, 70, 126, 160, 27, 125, 86, 118, 199, 98, 66, 93, 78, 255, 255, + 27, 81, 244, 114, 233, 56, 121, 0, 159, 216, 102, 159, 27, 77, 14, 62, 206, 12, 180, 84, 83, 159, 70, 129, 235, + 224, 195, 106, 99, 71, 209, 64, 201, 80, 129, 99, 227, 27, 247, 152, 203, 145, 81, 120, 252, 46, 255, 255, 27, + 156, 168, 76, 30, 211, 121, 189, 75, 159, 27, 158, 116, 105, 95, 214, 107, 198, 254, 27, 66, 165, 209, 93, 53, + 223, 138, 197, 67, 96, 193, 138, 27, 44, 186, 239, 100, 245, 143, 54, 131, 255, 27, 217, 159, 55, 226, 235, 59, + 71, 88, 67, 40, 23, 233, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1633, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe8ae7a065c029d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3a6a72e58" + } + } + ] + }, + "cborHex": "bf48fe8ae7a065c029d545e3a6a72e58ff", + "cborBytes": [191, 72, 254, 138, 231, 160, 101, 192, 41, 213, 69, 227, 166, 167, 46, 88, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1634, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "26f779d03c88824bcc79cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2257055342755306408" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6babd029" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee723bfbf4ed4c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4006013424582983550" + } + } + } + ] + }, + "cborHex": "bf4b26f779d03c88824bcc79cc1b1f52abe03753dba8446babd0298047ee723bfbf4ed4c1b379837fc21b6ff7eff", + "cborBytes": [ + 191, 75, 38, 247, 121, 208, 60, 136, 130, 75, 204, 121, 204, 27, 31, 82, 171, 224, 55, 83, 219, 168, 68, 107, 171, + 208, 41, 128, 71, 238, 114, 59, 251, 244, 237, 76, 27, 55, 152, 55, 252, 33, 182, 255, 126, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1635, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2187486144631088099" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15830032851977558093" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5112494093176766546" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8608446195552043929" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1fdda42d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14449187242233241319" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4768978816520192521" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c08458081fc254" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11528692459799537380" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5924876292731820103" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5016770596493925816" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14723763897446278345" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a38a6aedacbd5ee5f79d76b" + } + } + ] + }, + "cborHex": "bf1b1e5b830f09d323e31bdbaf9301fce2d84d1b46f33a4a64158052d8669f1b7777583491f143999f441fdda42dffff1bc885d33de26b1ee7d8669f1b422ed0f76c0c82099f47c08458081fc2541b9ffe24b5e71366e41b52396398ce69d8471b459f26470ba51db8ffff1bcc5551414001a4c94c9a38a6aedacbd5ee5f79d76bff", + "cborBytes": [ + 191, 27, 30, 91, 131, 15, 9, 211, 35, 227, 27, 219, 175, 147, 1, 252, 226, 216, 77, 27, 70, 243, 58, 74, 100, 21, + 128, 82, 216, 102, 159, 27, 119, 119, 88, 52, 145, 241, 67, 153, 159, 68, 31, 221, 164, 45, 255, 255, 27, 200, + 133, 211, 61, 226, 107, 30, 231, 216, 102, 159, 27, 66, 46, 208, 247, 108, 12, 130, 9, 159, 71, 192, 132, 88, 8, + 31, 194, 84, 27, 159, 254, 36, 181, 231, 19, 102, 228, 27, 82, 57, 99, 152, 206, 105, 216, 71, 27, 69, 159, 38, + 71, 11, 165, 29, 184, 255, 255, 27, 204, 85, 81, 65, 64, 1, 164, 201, 76, 154, 56, 166, 174, 218, 203, 213, 238, + 95, 121, 215, 107, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1636, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5697a778e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71036990" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a539" + }, + { + "_tag": "ByteArray", + "bytearray": "80145338080dc93f02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5770448947804663924" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72aab391bc1e4e96cc813fea" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b07f85c8b00" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ceb70440e5d0d445" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5363670573799866326" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8803422be1e69ab84d8bcf39" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf455697a778e2004471036990d9050b9f42a5394980145338080dc93f021b5014c0beb06c70744c72aab391bc1e4e96cc813feaff469b07f85c8b00a048ceb70440e5d0d4450241fabf1b4a6f95f80b8e7fd61bfffffffffffffff94c8803422be1e69ab84d8bcf390dffff", + "cborBytes": [ + 191, 69, 86, 151, 167, 120, 226, 0, 68, 113, 3, 105, 144, 217, 5, 11, 159, 66, 165, 57, 73, 128, 20, 83, 56, 8, + 13, 201, 63, 2, 27, 80, 20, 192, 190, 176, 108, 112, 116, 76, 114, 170, 179, 145, 188, 30, 78, 150, 204, 129, 63, + 234, 255, 70, 155, 7, 248, 92, 139, 0, 160, 72, 206, 183, 4, 64, 229, 208, 212, 69, 2, 65, 250, 191, 27, 74, 111, + 149, 248, 11, 142, 127, 214, 27, 255, 255, 255, 255, 255, 255, 255, 249, 76, 136, 3, 66, 43, 225, 230, 154, 184, + 77, 139, 207, 57, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1637, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9786297046704372029" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9617506374557975840" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59f6839acb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4437270422f2" + } + } + ] + }, + "cborHex": "bf1b87cfe9505f44b93dd87d9f1b85783f1788954520ff4102a04559f6839acb464437270422f2ff", + "cborBytes": [ + 191, 27, 135, 207, 233, 80, 95, 68, 185, 61, 216, 125, 159, 27, 133, 120, 63, 23, 136, 149, 69, 32, 255, 65, 2, + 160, 69, 89, 246, 131, 154, 203, 70, 68, 55, 39, 4, 34, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1638, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a51aa184db6c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10060056554983056846" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7612269532992834226" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a1011c3be301e908d01fe" + } + ] + } + } + ] + }, + "cborHex": "bf46a51aa184db6cd87e9f1b8b9c8022e41ae5ce1b69a436cf08910ab24b0a1011c3be301e908d01feffff", + "cborBytes": [ + 191, 70, 165, 26, 161, 132, 219, 108, 216, 126, 159, 27, 139, 156, 128, 34, 228, 26, 229, 206, 27, 105, 164, 54, + 207, 8, 145, 10, 178, 75, 10, 16, 17, 195, 190, 48, 30, 144, 141, 1, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1639, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04046868e7001d0401" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9562180175700324543" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3375030222145403429" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15722181143307751219" + } + } + ] + } + } + ] + }, + "cborHex": "bf4904046868e7001d0401d8669f1b84b3b0350ae670bf9f1b2ed6841af92f3a251bda3068733d340f33ffffff", + "cborBytes": [ + 191, 73, 4, 4, 104, 104, 231, 0, 29, 4, 1, 216, 102, 159, 27, 132, 179, 176, 53, 10, 230, 112, 191, 159, 27, 46, + 214, 132, 26, 249, 47, 58, 37, 27, 218, 48, 104, 115, 61, 52, 15, 51, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1640, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bb00ffd92224482" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9044624230882892738" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1496385244321766149" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab9bc5b210d4d9cbc58f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "609a" + }, + { + "_tag": "ByteArray", + "bytearray": "5bd5feed75989a13" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "faa68aff4807ba8ffdc8c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3329350576891852764" + } + } + } + ] + }, + "cborHex": "bf487bb00ffd92224482bf1b7d84f5d148aa5bc21b14c43a7396ef5b05ff4aab9bc5b210d4d9cbc58f9f42609a485bd5feed75989a13ff4bfaa68aff4807ba8ffdc8c01b2e343ab5c46177dcff", + "cborBytes": [ + 191, 72, 123, 176, 15, 253, 146, 34, 68, 130, 191, 27, 125, 132, 245, 209, 72, 170, 91, 194, 27, 20, 196, 58, 115, + 150, 239, 91, 5, 255, 74, 171, 155, 197, 178, 16, 212, 217, 203, 197, 143, 159, 66, 96, 154, 72, 91, 213, 254, + 237, 117, 152, 154, 19, 255, 75, 250, 166, 138, 255, 72, 7, 186, 143, 253, 200, 192, 27, 46, 52, 58, 181, 196, 97, + 119, 220, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1641, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d720ba1e999a814a485b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0607fdb3fefa81068efb074e" + } + } + ] + }, + "cborHex": "bf03804b7d720ba1e999a814a485b54c0607fdb3fefa81068efb074eff", + "cborBytes": [ + 191, 3, 128, 75, 125, 114, 11, 161, 233, 153, 168, 20, 164, 133, 181, 76, 6, 7, 253, 179, 254, 250, 129, 6, 142, + 251, 7, 78, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1642, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0bf4f55120a3a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b47" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3793375589195242166" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "baaf9f6ac0a747df59d42d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13454964779501593880" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de5f68" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15247827266599805351" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff07" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15950300398664290580" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe202b54b002fc0fff02f8e6" + } + } + ] + } + } + ] + }, + "cborHex": "bf47b0bf4f55120a3abf10420b471b34a4c7000d9edab64bbaaf9f6ac0a747df59d42d1bbab9a32df395a51843de5f681bd39b2a1cce3261a742ff071bdd5ad9b44b2811144cfe202b54b002fc0fff02f8e6ffff", + "cborBytes": [ + 191, 71, 176, 191, 79, 85, 18, 10, 58, 191, 16, 66, 11, 71, 27, 52, 164, 199, 0, 13, 158, 218, 182, 75, 186, 175, + 159, 106, 192, 167, 71, 223, 89, 212, 45, 27, 186, 185, 163, 45, 243, 149, 165, 24, 67, 222, 95, 104, 27, 211, + 155, 42, 28, 206, 50, 97, 167, 66, 255, 7, 27, 221, 90, 217, 180, 75, 40, 17, 20, 76, 254, 32, 43, 84, 176, 2, + 252, 15, 255, 2, 248, 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1643, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5753885450688059997" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2242624280089129736" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7386579614688824245" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de072bac655524c1c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1133" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4748379184714578458" + } + } + } + ] + }, + "cborHex": "bf1b4fd9e854fe8cda5dd8669f1b1f1f66e69b60f30880ff1b6682670616ab4bb549de072bac655524c1c94211331b41e5a1b5e3c57a1aff", + "cborBytes": [ + 191, 27, 79, 217, 232, 84, 254, 140, 218, 93, 216, 102, 159, 27, 31, 31, 102, 230, 155, 96, 243, 8, 128, 255, 27, + 102, 130, 103, 6, 22, 171, 75, 181, 73, 222, 7, 43, 172, 101, 85, 36, 193, 201, 66, 17, 51, 27, 65, 229, 161, 181, + 227, 197, 122, 26, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1644, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1871c691a47e58" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15133805921993301662" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c03d3b6bf860f" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f1738d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9794603314216829128" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "608a44aed2314e72" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "330805e88ab9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b2dee46d9d50e20594796" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4320c2aca4b3b3857888200a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14559767913191053173" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c0df19e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "faf0dc23e62247199afc22" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b68859b5aa75" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d741d28db3" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80b1d34c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a475e84d5f1f9daccf523" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ea0de4ea55c13464780b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8005227266461189126" + } + } + } + ] + }, + "cborHex": "bf471871c691a47e58bf1bd206144dc01d1e9e473c03d3b6bf860fff442f1738d61b87ed6bd1fbc200c848608a44aed2314e72bf46330805e88ab94b9b2dee46d9d50e205947964c4320c2aca4b3b3857888200a1bca0eafc6ade21775445c0df19e4bfaf0dc23e62247199afc2246b68859b5aa7545d741d28db3ff4480b1d34c4b9a475e84d5f1f9daccf5234b9ea0de4ea55c13464780b01b6f1847c90bb0c406ff", + "cborBytes": [ + 191, 71, 24, 113, 198, 145, 164, 126, 88, 191, 27, 210, 6, 20, 77, 192, 29, 30, 158, 71, 60, 3, 211, 182, 191, + 134, 15, 255, 68, 47, 23, 56, 214, 27, 135, 237, 107, 209, 251, 194, 0, 200, 72, 96, 138, 68, 174, 210, 49, 78, + 114, 191, 70, 51, 8, 5, 232, 138, 185, 75, 155, 45, 238, 70, 217, 213, 14, 32, 89, 71, 150, 76, 67, 32, 194, 172, + 164, 179, 179, 133, 120, 136, 32, 10, 27, 202, 14, 175, 198, 173, 226, 23, 117, 68, 92, 13, 241, 158, 75, 250, + 240, 220, 35, 230, 34, 71, 25, 154, 252, 34, 70, 182, 136, 89, 181, 170, 117, 69, 215, 65, 210, 141, 179, 255, 68, + 128, 177, 211, 76, 75, 154, 71, 94, 132, 213, 241, 249, 218, 204, 245, 35, 75, 158, 160, 222, 78, 165, 92, 19, 70, + 71, 128, 176, 27, 111, 24, 71, 201, 11, 176, 196, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1645, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3907653323489843088" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e13b88866f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1191693933523133660" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05fb7ca5abf207070207ec" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10987426938396296839" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf029f1b363ac5fe7bfc979045e13b88866f1b1089bf5194a264dcff4b05fb7ca5abf207070207ecd8669f1b987b2e962aab468780ffff", + "cborBytes": [ + 191, 2, 159, 27, 54, 58, 197, 254, 123, 252, 151, 144, 69, 225, 59, 136, 134, 111, 27, 16, 137, 191, 81, 148, 162, + 100, 220, 255, 75, 5, 251, 124, 165, 171, 242, 7, 7, 2, 7, 236, 216, 102, 159, 27, 152, 123, 46, 150, 42, 171, 70, + 135, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1646, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8920040032886673163" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f0a0" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7" + } + } + ] + }, + "cborHex": "bf1b7bca592646794f0bd905069f42f0a0ff1bfffffffffffffff641f7ff", + "cborBytes": [ + 191, 27, 123, 202, 89, 38, 70, 121, 79, 11, 217, 5, 6, 159, 66, 240, 160, 255, 27, 255, 255, 255, 255, 255, 255, + 255, 246, 65, 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1647, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14487026817512825375" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f36e3cd3d05a087d1a959b87" + }, + { + "_tag": "ByteArray", + "bytearray": "0e12ee29f104045414cccbab" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25c14a7fb87269662774" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9049410296280437613" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35d7eca114a2cd51c059" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6d1cff" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17788476979361956831" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64c72b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b6e8ceaf117c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4139daf4c3a2cefe6209b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5933332388800704225" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9083590186401892097" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5996237498994508775" + } + }, + { + "_tag": "ByteArray", + "bytearray": "428ce6b8" + } + ] + } + } + ] + }, + "cborHex": "bf41159f1bc90c42228d68e21f4cf36e3cd3d05a087d1a959b874c0e12ee29f104045414cccbabff4a25c14a7fb872696627741b7d95f6b7f88ed36d4a35d7eca114a2cd51c0599f436d1cffff4261c41bf6dd5d90ba1543df4364c72b9f46b6e8ceaf117cff4be4139daf4c3a2cefe6209bd8669f1b52576e5f18c92ee19f1b7e0f6525c9b587011b5336ea3c6471c3e744428ce6b8ffffff", + "cborBytes": [ + 191, 65, 21, 159, 27, 201, 12, 66, 34, 141, 104, 226, 31, 76, 243, 110, 60, 211, 208, 90, 8, 125, 26, 149, 155, + 135, 76, 14, 18, 238, 41, 241, 4, 4, 84, 20, 204, 203, 171, 255, 74, 37, 193, 74, 127, 184, 114, 105, 102, 39, + 116, 27, 125, 149, 246, 183, 248, 142, 211, 109, 74, 53, 215, 236, 161, 20, 162, 205, 81, 192, 89, 159, 67, 109, + 28, 255, 255, 66, 97, 196, 27, 246, 221, 93, 144, 186, 21, 67, 223, 67, 100, 199, 43, 159, 70, 182, 232, 206, 175, + 17, 124, 255, 75, 228, 19, 157, 175, 76, 58, 44, 239, 230, 32, 155, 216, 102, 159, 27, 82, 87, 110, 95, 24, 201, + 46, 225, 159, 27, 126, 15, 101, 37, 201, 181, 135, 1, 27, 83, 54, 234, 60, 100, 113, 195, 231, 68, 66, 140, 230, + 184, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1648, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8113563489605194053" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + } + ] + }, + "cborHex": "bf1b70992b019c7f1145091bfffffffffffffff706ff", + "cborBytes": [191, 27, 112, 153, 43, 1, 156, 127, 17, 69, 9, 27, 255, 255, 255, 255, 255, 255, 255, 247, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1649, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b0d3fe9614a40" + } + } + ] + }, + "cborHex": "bf068011470b0d3fe9614a40ff", + "cborBytes": [191, 6, 128, 17, 71, 11, 13, 63, 233, 97, 74, 64, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1650, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "85cc089c79fef7628e98" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "031b" + } + } + ] + }, + "cborHex": "bf4a85cc089c79fef7628e9842031bff", + "cborBytes": [191, 74, 133, 204, 8, 156, 121, 254, 247, 98, 142, 152, 66, 3, 27, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1651, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2424014162270774014" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "34e21fa243aa2de24f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8980" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "871918046a8b105e61a390e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4941538288741375616" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fb125b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "468361cc2b88cf7f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81264a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "50e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4409035388263388642" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc12b3749b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5045665776021963458" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b21a3d409a0aa62febf4934e21fa243aa2de24f4289804c871918046a8b105e61a390e01b4493dee4686bde80ff446fb125b348468361cc2b88cf7f4381264abf4250e81b3d300a535790d5e245fc12b3749b1b4605ce4a4b2282c2ffff", + "cborBytes": [ + 191, 27, 33, 163, 212, 9, 160, 170, 98, 254, 191, 73, 52, 226, 31, 162, 67, 170, 45, 226, 79, 66, 137, 128, 76, + 135, 25, 24, 4, 106, 139, 16, 94, 97, 163, 144, 224, 27, 68, 147, 222, 228, 104, 107, 222, 128, 255, 68, 111, 177, + 37, 179, 72, 70, 131, 97, 204, 43, 136, 207, 127, 67, 129, 38, 74, 191, 66, 80, 232, 27, 61, 48, 10, 83, 87, 144, + 213, 226, 69, 252, 18, 179, 116, 155, 27, 70, 5, 206, 74, 75, 34, 130, 194, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1652, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15380759998378501371" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4649408127150127005" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13611370499528638263" + } + }, + { + "_tag": "ByteArray", + "bytearray": "39cf833bedd2d05d1a2667" + }, + { + "_tag": "ByteArray", + "bytearray": "8c695c4c7f53" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1357103553150975207" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f338ad291d" + } + ] + } + } + ] + }, + "cborHex": "bf1bd5736fba4ee364fbd8669f1b4086040eda98f79d9f1bbce54d5a6aa2bf374b39cf833bedd2d05d1a2667468c695c4c7f531b12d5667dc8fbfce745f338ad291dffffff", + "cborBytes": [ + 191, 27, 213, 115, 111, 186, 78, 227, 100, 251, 216, 102, 159, 27, 64, 134, 4, 14, 218, 152, 247, 157, 159, 27, + 188, 229, 77, 90, 106, 162, 191, 55, 75, 57, 207, 131, 59, 237, 210, 208, 93, 26, 38, 103, 70, 140, 105, 92, 76, + 127, 83, 27, 18, 213, 102, 125, 200, 251, 252, 231, 69, 243, 56, 173, 41, 29, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1653, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1939922012748625766" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "83fad5d1e42660aafa45417d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5893060602658335262" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16926744070020331616" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12388787378125958460" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7961025857261372733" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16126651554205784355" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1aebfccaddd7b7669f4c83fad5d1e42660aafa45417dff1b51c85b65354caa1ed8669f1beae7e00cc982f8609f1babedd07b570a6d3c1b6e7b3ed67dc3853d1bdfcd602558efd923ffffff", + "cborBytes": [ + 191, 27, 26, 235, 252, 202, 221, 215, 183, 102, 159, 76, 131, 250, 213, 209, 228, 38, 96, 170, 250, 69, 65, 125, + 255, 27, 81, 200, 91, 101, 53, 76, 170, 30, 216, 102, 159, 27, 234, 231, 224, 12, 201, 130, 248, 96, 159, 27, 171, + 237, 208, 123, 87, 10, 109, 60, 27, 110, 123, 62, 214, 125, 195, 133, 61, 27, 223, 205, 96, 37, 88, 239, 217, 35, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1654, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7a2c6a950d2bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "400057" + } + } + ] + }, + "cborHex": "bf47a7a2c6a950d2bd43400057ff", + "cborBytes": [191, 71, 167, 162, 198, 169, 80, 210, 189, 67, 64, 0, 87, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1655, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4933432728249796481" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "045d4eec04fcb9885d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ae1fac1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f7038" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e108e24ab6c28c4c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5a99616232352a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10775855797726544083" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14718428941944904122" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11490060607057264796" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12645347719177582507" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17318561084250316657" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2203186418548838586" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b55dafbb3bb38a78f9a" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b447712ed8a9d8781bf49045d4eec04fcb9885d443ae1fac1435f703848e108e24ab6c28c4c48b5a99616232352a41b958b87c14e5300d3ff1bcc425d24207459babf1b9f74e53ec35b809c1baf7d4cc0aee037abff1bf057e38c67a4df711b1e934a5feb9190ba4a9b55dafbb3bb38a78f9aa0ff", + "cborBytes": [ + 191, 27, 68, 119, 18, 237, 138, 157, 135, 129, 191, 73, 4, 93, 78, 236, 4, 252, 185, 136, 93, 68, 58, 225, 250, + 193, 67, 95, 112, 56, 72, 225, 8, 226, 74, 182, 194, 140, 76, 72, 181, 169, 150, 22, 35, 35, 82, 164, 27, 149, + 139, 135, 193, 78, 83, 0, 211, 255, 27, 204, 66, 93, 36, 32, 116, 89, 186, 191, 27, 159, 116, 229, 62, 195, 91, + 128, 156, 27, 175, 125, 76, 192, 174, 224, 55, 171, 255, 27, 240, 87, 227, 140, 103, 164, 223, 113, 27, 30, 147, + 74, 95, 235, 145, 144, 186, 74, 155, 85, 218, 251, 179, 187, 56, 167, 143, 154, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1656, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "082d473b43" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fc5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b787c5f99f9926733" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "532bb2ac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16263826666683358849" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82baddb2d185" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9be1103919" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0b36a890d01d68a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c61fbff514cec6ac7a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3635768c5b686e2d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bb35c5bea5f31e84c428965" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4dc68973d73f2c8608206" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d04a109f353f73ccb34c9b4" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7e2cc4a093a361cea" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9642068747778631032" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7e52a0c012fbbad89339b881" + }, + { + "_tag": "ByteArray", + "bytearray": "71" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4712812657126838193" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1512464514053363510" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8038049762616511640" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8f9e034b4736fcd0bc1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16510660210106180477" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17162289294245740003" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e671d7e8376eac1101" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee294cdc8a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cfa4faa1ee9734d3973e" + } + } + ] + }, + "cborHex": "bf45082d473b43bf420fc5493b787c5f99f992673344532bb2ac1be1b4b82f142fde814682baddb2d185459be110391948d0b36a890d01d68a49c61fbff514cec6ac7a49d3635768c5b686e2d74c3bb35c5bea5f31e84c4289654bf4dc68973d73f2c86082064c7d04a109f353f73ccb34c9b4ff49b7e2cc4a093a361cead8669f1b85cf8270b33da5789f4c7e52a0c012fbbad89339b88141711b4167462461028fb11b14fd5a764f88d7361b6f8ce3abf3ab8c98ffff4ac8f9e034b4736fcd0bc1d8669f1be521a5fbde8e237d9f1bee2cb32ef401bde349e671d7e8376eac1101ffff45ee294cdc8a4acfa4faa1ee9734d3973eff", + "cborBytes": [ + 191, 69, 8, 45, 71, 59, 67, 191, 66, 15, 197, 73, 59, 120, 124, 95, 153, 249, 146, 103, 51, 68, 83, 43, 178, 172, + 27, 225, 180, 184, 47, 20, 47, 222, 129, 70, 130, 186, 221, 178, 209, 133, 69, 155, 225, 16, 57, 25, 72, 208, 179, + 106, 137, 13, 1, 214, 138, 73, 198, 31, 191, 245, 20, 206, 198, 172, 122, 73, 211, 99, 87, 104, 197, 182, 134, + 226, 215, 76, 59, 179, 92, 91, 234, 95, 49, 232, 76, 66, 137, 101, 75, 244, 220, 104, 151, 61, 115, 242, 200, 96, + 130, 6, 76, 125, 4, 161, 9, 243, 83, 247, 60, 203, 52, 201, 180, 255, 73, 183, 226, 204, 74, 9, 58, 54, 28, 234, + 216, 102, 159, 27, 133, 207, 130, 112, 179, 61, 165, 120, 159, 76, 126, 82, 160, 192, 18, 251, 186, 216, 147, 57, + 184, 129, 65, 113, 27, 65, 103, 70, 36, 97, 2, 143, 177, 27, 20, 253, 90, 118, 79, 136, 215, 54, 27, 111, 140, + 227, 171, 243, 171, 140, 152, 255, 255, 74, 200, 249, 224, 52, 180, 115, 111, 205, 11, 193, 216, 102, 159, 27, + 229, 33, 165, 251, 222, 142, 35, 125, 159, 27, 238, 44, 179, 46, 244, 1, 189, 227, 73, 230, 113, 215, 232, 55, + 110, 172, 17, 1, 255, 255, 69, 238, 41, 76, 220, 138, 74, 207, 164, 250, 161, 238, 151, 52, 211, 151, 62, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1657, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8762393660791419074" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "048635eeeb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0909" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "184a87f6a9fbbb316330" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7595392694574865359" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3595" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7896" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11120670042897603445" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16004024006292769962" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07933cb8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11908804869681506486" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17542996451919842624" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b799a469bfd9b70c2bf45048635eeeb4209094a184a87f6a9fbbb3163301b69684169e1bb5bcf423595427896ff1b9a548e7bf33d5b75a01bde19b70a6fe78caabf4407933cb81ba54492eef4cee8b642c4e61bf3753e53849ecd40ffff", + "cborBytes": [ + 191, 27, 121, 154, 70, 155, 253, 155, 112, 194, 191, 69, 4, 134, 53, 238, 235, 66, 9, 9, 74, 24, 74, 135, 246, + 169, 251, 187, 49, 99, 48, 27, 105, 104, 65, 105, 225, 187, 91, 207, 66, 53, 149, 66, 120, 150, 255, 27, 154, 84, + 142, 123, 243, 61, 91, 117, 160, 27, 222, 25, 183, 10, 111, 231, 140, 170, 191, 68, 7, 147, 60, 184, 27, 165, 68, + 146, 238, 244, 206, 232, 182, 66, 196, 230, 27, 243, 117, 62, 83, 132, 158, 205, 64, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1658, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2203142486009273791" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3614245209245648911" + } + } + } + ] + }, + "cborHex": "bf1b1e93226b14275dbf1b322860de643e880fff", + "cborBytes": [191, 27, 30, 147, 34, 107, 20, 39, 93, 191, 27, 50, 40, 96, 222, 100, 62, 136, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1659, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "67d9f76048ff02" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c79b81fedd6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14539740330804092713" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57a042616ca54e90e482" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21e90d39bb5ed105926544" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a33defbde4646ebb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6332395489191598463" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2bc6c7af7e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3273951088714576551" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db2673d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2105866103565428237" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e067" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea951371cf4545ac" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a73829dfbf912941b0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3007aad54acc26" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2812fedae532b88236" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30de483cf24b4c0e621444d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a122bf3443d8f925932829" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "362ca0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b1171" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9384" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1402319283427579162" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a008675b223cd8d647b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64b50af4a247" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1151d237fd8a0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9975760668045685703" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e34c8484332400" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "66034814413516892" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13928280940977012039" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4755125286839171546" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14963309182112705660" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7119169926445933161" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9be70a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12897635363370971978" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17953856481535127340" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17618366186710602652" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10386631117517321618" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efdcecdc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3205278441919064880" + } + } + } + ] + }, + "cborHex": "bf4767d9f76048ff02bf461c79b81fedd61bc9c788cbc7ff9f294a57a042616ca54e90e4824b21e90d39bb5ed10592654448a33defbde4646ebb1b57e130259e8d197f46d2bc6c7af7e01b2d6f692b46d5f2a744db2673d01b1d398a10578da60d42e06748ea951371cf4545acff49a73829dfbf912941b0bf473007aad54acc26492812fedae532b882364c30de483cf24b4c0e621444d14ba122bf3443d8f92593282943362ca0432b11714293841b137609f55e61951a4aa008675b223cd8d647b64664b50af4a24747c1151d237fd8a01b8a710579472d33c7ff47e34c8484332400bf1b00ea9a5057ed305c1bc14b31b87ac73d471b41fd99413086b9da1bcfa85a6c102b2c7c1b62cc5f5441742269439be70a1bb2fd9b07443e334a1bf928e958aa3eef2c1bf48102b361a3939c1b9024b9f87ca37592ff44efdcecdc1b2c7b6fc2b8cdab30ff", + "cborBytes": [ + 191, 71, 103, 217, 247, 96, 72, 255, 2, 191, 70, 28, 121, 184, 31, 237, 214, 27, 201, 199, 136, 203, 199, 255, + 159, 41, 74, 87, 160, 66, 97, 108, 165, 78, 144, 228, 130, 75, 33, 233, 13, 57, 187, 94, 209, 5, 146, 101, 68, 72, + 163, 61, 239, 189, 228, 100, 110, 187, 27, 87, 225, 48, 37, 158, 141, 25, 127, 70, 210, 188, 108, 122, 247, 224, + 27, 45, 111, 105, 43, 70, 213, 242, 167, 68, 219, 38, 115, 208, 27, 29, 57, 138, 16, 87, 141, 166, 13, 66, 224, + 103, 72, 234, 149, 19, 113, 207, 69, 69, 172, 255, 73, 167, 56, 41, 223, 191, 145, 41, 65, 176, 191, 71, 48, 7, + 170, 213, 74, 204, 38, 73, 40, 18, 254, 218, 229, 50, 184, 130, 54, 76, 48, 222, 72, 60, 242, 75, 76, 14, 98, 20, + 68, 209, 75, 161, 34, 191, 52, 67, 216, 249, 37, 147, 40, 41, 67, 54, 44, 160, 67, 43, 17, 113, 66, 147, 132, 27, + 19, 118, 9, 245, 94, 97, 149, 26, 74, 160, 8, 103, 91, 34, 60, 216, 214, 71, 182, 70, 100, 181, 10, 244, 162, 71, + 71, 193, 21, 29, 35, 127, 216, 160, 27, 138, 113, 5, 121, 71, 45, 51, 199, 255, 71, 227, 76, 132, 132, 51, 36, 0, + 191, 27, 0, 234, 154, 80, 87, 237, 48, 92, 27, 193, 75, 49, 184, 122, 199, 61, 71, 27, 65, 253, 153, 65, 48, 134, + 185, 218, 27, 207, 168, 90, 108, 16, 43, 44, 124, 27, 98, 204, 95, 84, 65, 116, 34, 105, 67, 155, 231, 10, 27, + 178, 253, 155, 7, 68, 62, 51, 74, 27, 249, 40, 233, 88, 170, 62, 239, 44, 27, 244, 129, 2, 179, 97, 163, 147, 156, + 27, 144, 36, 185, 248, 124, 163, 117, 146, 255, 68, 239, 220, 236, 220, 27, 44, 123, 111, 194, 184, 205, 171, 48, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1660, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05388750" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10814693611347167832" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15963966531025379925" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c4ef5b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13805043858682127477" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdc0042779" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11933635622919849507" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1707981818485181327" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4206174e522c87c2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15176816812713123434" + } + } + ] + } + } + ] + }, + "cborHex": "bf414bd905099f44053887501b9615828a7308ca581bdd8b66faaffe225543c4ef5b1bbf955e3f496fa475ff45bdc0042779d9050c9f1ba59cca5f3715c6231b17b3f86a25a28b8f484206174e522c87c21bd29ee27b1ef11e6affff", + "cborBytes": [ + 191, 65, 75, 217, 5, 9, 159, 68, 5, 56, 135, 80, 27, 150, 21, 130, 138, 115, 8, 202, 88, 27, 221, 139, 102, 250, + 175, 254, 34, 85, 67, 196, 239, 91, 27, 191, 149, 94, 63, 73, 111, 164, 117, 255, 69, 189, 192, 4, 39, 121, 217, + 5, 12, 159, 27, 165, 156, 202, 95, 55, 21, 198, 35, 27, 23, 179, 248, 106, 37, 162, 139, 143, 72, 66, 6, 23, 78, + 82, 44, 135, 194, 27, 210, 158, 226, 123, 30, 241, 30, 106, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1661, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2474" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "759188141270226319" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6582599233189696737" + } + } + ] + } + } + ] + }, + "cborHex": "bf109f4224741b0a892d979619d58f1b5b5a17206107d4e1ffff", + "cborBytes": [ + 191, 16, 159, 66, 36, 116, 27, 10, 137, 45, 151, 150, 25, 213, 143, 27, 91, 90, 23, 32, 97, 7, 212, 225, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1662, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8625820726052494520" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2646176173038045956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7201766108946619116" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b77b5123fb08f9cb8bf1b24b91b3597090b041b63f1d01e9735daecffff", + "cborBytes": [ + 191, 27, 119, 181, 18, 63, 176, 143, 156, 184, 191, 27, 36, 185, 27, 53, 151, 9, 11, 4, 27, 99, 241, 208, 30, 151, + 53, 218, 236, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1663, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1542" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e87aa987d07ec9d7237" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "575c126e6f24" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10192126375113000360" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd28a8ed147e59ed0e18dc81" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "101600a923" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7f4916ce7cfc14d40" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11282823397125861276" + } + } + } + ] + }, + "cborHex": "bf4215424a3e87aa987d07ec9d723746575c126e6f241b8d71b4f01e8005a84cbd28a8ed147e59ed0e18dc8145101600a92349d7f4916ce7cfc14d401b9c94a419c9272f9cff", + "cborBytes": [ + 191, 66, 21, 66, 74, 62, 135, 170, 152, 125, 7, 236, 157, 114, 55, 70, 87, 92, 18, 110, 111, 36, 27, 141, 113, + 180, 240, 30, 128, 5, 168, 76, 189, 40, 168, 237, 20, 126, 89, 237, 14, 24, 220, 129, 69, 16, 22, 0, 169, 35, 73, + 215, 244, 145, 108, 231, 207, 193, 77, 64, 27, 156, 148, 164, 25, 201, 39, 47, 156, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1664, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04b1640407957e012c2efaf9" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9670" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3536306251450659594" + } + } + } + ] + }, + "cborHex": "bf4c04b1640407957e012c2efaf9a04296701b31137bccaeb5b30aff", + "cborBytes": [ + 191, 76, 4, 177, 100, 4, 7, 149, 126, 1, 44, 46, 250, 249, 160, 66, 150, 112, 27, 49, 19, 123, 204, 174, 181, 179, + 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1665, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1805437b9e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7596621920639416479" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "209968e2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8079664862839041106" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a01a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5512229905628710031" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11773742928527634449" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2033844129758107359" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e1f5179f55544ade19374705" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cf09e1e288f9f76cf" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7671071878246570856" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15463002325251286619" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e653b37045f3b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8828247921774053007" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "baaabc794b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8271676202498167793" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14156048003016067178" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10088347265648421042" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1118ac592dfcae18be7c982e" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2a18cee06178c6474" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d6da6014f22a49d40229b" + } + } + ] + }, + "cborHex": "bf451805437b9ed8669f1b696c9f6360a8789f80ff44209968e2d8669f1b7020bc6285b9ec529f42a01a1b4c7f5fe4e548c48f1ba364bcd043a830111b1c39aa75d2bed6df4ce1f5179f55544ade19374705ffff494cf09e1e288f9f76cfbf1b6a751f3aed601b681bd6979eb035a4665bff479e653b37045f3bd8669f1b7a843cb5f66c468f80ff45baaabc794bbf1b72cae5ae52f493f11bc47462a82326886a1b8c01026343c1e8b24c1118ac592dfcae18be7c982eff49f2a18cee06178c64744b2d6da6014f22a49d40229bff", + "cborBytes": [ + 191, 69, 24, 5, 67, 123, 158, 216, 102, 159, 27, 105, 108, 159, 99, 96, 168, 120, 159, 128, 255, 68, 32, 153, 104, + 226, 216, 102, 159, 27, 112, 32, 188, 98, 133, 185, 236, 82, 159, 66, 160, 26, 27, 76, 127, 95, 228, 229, 72, 196, + 143, 27, 163, 100, 188, 208, 67, 168, 48, 17, 27, 28, 57, 170, 117, 210, 190, 214, 223, 76, 225, 245, 23, 159, 85, + 84, 74, 222, 25, 55, 71, 5, 255, 255, 73, 76, 240, 158, 30, 40, 143, 159, 118, 207, 191, 27, 106, 117, 31, 58, + 237, 96, 27, 104, 27, 214, 151, 158, 176, 53, 164, 102, 91, 255, 71, 158, 101, 59, 55, 4, 95, 59, 216, 102, 159, + 27, 122, 132, 60, 181, 246, 108, 70, 143, 128, 255, 69, 186, 170, 188, 121, 75, 191, 27, 114, 202, 229, 174, 82, + 244, 147, 241, 27, 196, 116, 98, 168, 35, 38, 136, 106, 27, 140, 1, 2, 99, 67, 193, 232, 178, 76, 17, 24, 172, 89, + 45, 252, 174, 24, 190, 124, 152, 46, 255, 73, 242, 161, 140, 238, 6, 23, 140, 100, 116, 75, 45, 109, 166, 1, 79, + 34, 164, 157, 64, 34, 155, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1666, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6929673957387167633" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3507358784766204943" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa" + }, + { + "_tag": "ByteArray", + "bytearray": "6874d153099260c577ea53" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13864968318111235341" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43cd83ae5e45" + } + } + ] + }, + "cborHex": "bf139f1b602b25bfcf5667911b30aca43b61d5dc0f41fa4b6874d153099260c577ea53ff1bc06a4339bf10bd0d4643cd83ae5e45ff", + "cborBytes": [ + 191, 19, 159, 27, 96, 43, 37, 191, 207, 86, 103, 145, 27, 48, 172, 164, 59, 97, 213, 220, 15, 65, 250, 75, 104, + 116, 209, 83, 9, 146, 96, 197, 119, 234, 83, 255, 27, 192, 106, 67, 57, 191, 16, 189, 13, 70, 67, 205, 131, 174, + 94, 69, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1667, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5292" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a4f52fa0e823cd828e936" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9497892274858287574" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf425292bf4b6a4f52fa0e823cd828e9361b83cf4ab3b5dae1d6ffff", + "cborBytes": [ + 191, 66, 82, 146, 191, 75, 106, 79, 82, 250, 14, 130, 60, 216, 40, 233, 54, 27, 131, 207, 74, 179, 181, 218, 225, + 214, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1668, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "589af98027476245c2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18149599604188893962" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15630137431167391797" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2ed358a5c1d443" + }, + { + "_tag": "ByteArray", + "bytearray": "2d4c462459" + }, + { + "_tag": "ByteArray", + "bytearray": "b5948ddd6841efce784431" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "954647215a51" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d4abc1ccfc484" + } + } + ] + }, + "cborHex": "bf49589af98027476245c2d8669f1bfbe054ade73fd30a9f1bd8e9672e7f44d835472ed358a5c1d443452d4c4624594bb5948ddd6841efce784431ffff46954647215a51475d4abc1ccfc484ff", + "cborBytes": [ + 191, 73, 88, 154, 249, 128, 39, 71, 98, 69, 194, 216, 102, 159, 27, 251, 224, 84, 173, 231, 63, 211, 10, 159, 27, + 216, 233, 103, 46, 127, 68, 216, 53, 71, 46, 211, 88, 165, 193, 212, 67, 69, 45, 76, 70, 36, 89, 75, 181, 148, + 141, 221, 104, 65, 239, 206, 120, 68, 49, 255, 255, 70, 149, 70, 71, 33, 90, 81, 71, 93, 74, 188, 28, 207, 196, + 132, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1669, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "544ab136" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5072205495626472669" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6754041745451211451" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7228995412246760644" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10911045523767702007" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5057871268175880465" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14119525843038335967" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6b3fedc41f024321b38" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16792284360790431843" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7123189516867686558" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66be9ace7c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6791804278167961704" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f6b7c74ddaafd9a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7429742525067161854" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83b47485a3311ee293eb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15016236611993320558" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12247848257788448610" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d217f4b36cfe91d5b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3785153b856b25342d0e90" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14176579100835598704" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3bf85f30" + }, + { + "_tag": "ByteArray", + "bytearray": "f7be3fd3178c" + }, + { + "_tag": "ByteArray", + "bytearray": "a130d8b74b12" + } + ] + } + } + ] + }, + "cborHex": "bf44544ab136bf1b466418064a999cdd418c1b5dbb2d2edbc75abb1b64528d06cde58cc41b976bd2183c4a31f71b46312b1ee34721111bc3f2a1f21f3f73df4af6b3fedc41f024321b381be90a2da82442d8631b62daa72014af509eff4566be9ace7cbf1b5e415601a82e0068481f6b7c74ddaafd9a1b671bbf764b3df0fe4a83b47485a3311ee293eb1bd06463a3a113bc6e1ba9f919193c5e0f62ff496d217f4b36cfe91d5b9f4b3785153b856b25342d0e90ff41959f1bc4bd5394db885170443bf85f3046f7be3fd3178c46a130d8b74b12ffff", + "cborBytes": [ + 191, 68, 84, 74, 177, 54, 191, 27, 70, 100, 24, 6, 74, 153, 156, 221, 65, 140, 27, 93, 187, 45, 46, 219, 199, 90, + 187, 27, 100, 82, 141, 6, 205, 229, 140, 196, 27, 151, 107, 210, 24, 60, 74, 49, 247, 27, 70, 49, 43, 30, 227, 71, + 33, 17, 27, 195, 242, 161, 242, 31, 63, 115, 223, 74, 246, 179, 254, 220, 65, 240, 36, 50, 27, 56, 27, 233, 10, + 45, 168, 36, 66, 216, 99, 27, 98, 218, 167, 32, 20, 175, 80, 158, 255, 69, 102, 190, 154, 206, 124, 191, 27, 94, + 65, 86, 1, 168, 46, 0, 104, 72, 31, 107, 124, 116, 221, 170, 253, 154, 27, 103, 27, 191, 118, 75, 61, 240, 254, + 74, 131, 180, 116, 133, 163, 49, 30, 226, 147, 235, 27, 208, 100, 99, 163, 161, 19, 188, 110, 27, 169, 249, 25, + 25, 60, 94, 15, 98, 255, 73, 109, 33, 127, 75, 54, 207, 233, 29, 91, 159, 75, 55, 133, 21, 59, 133, 107, 37, 52, + 45, 14, 144, 255, 65, 149, 159, 27, 196, 189, 83, 148, 219, 136, 81, 112, 68, 59, 248, 95, 48, 70, 247, 190, 63, + 211, 23, 140, 70, 161, 48, 216, 183, 75, 18, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1670, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c079e3f40980d143" + }, + { + "_tag": "ByteArray", + "bytearray": "320b" + }, + { + "_tag": "ByteArray", + "bytearray": "0501f80206" + }, + { + "_tag": "ByteArray", + "bytearray": "d0ac02535f034f85af82" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "26" + }, + { + "_tag": "ByteArray", + "bytearray": "8a009bd63aec118d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15700634519049236837" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13641843269533149048" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16721565366424878731" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "570702000702e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "011d" + } + } + ] + }, + "cborHex": "bf059f48c079e3f40980d14342320b450501f802064ad0ac02535f034f85af82ff0bd8799f4126488a009bd63aec118d1bd9e3dbe8d82a71651bbd51902d1213a7781be80eef1b2a3abe8bff0e47570702000702e91bfffffffffffffff942011dff", + "cborBytes": [ + 191, 5, 159, 72, 192, 121, 227, 244, 9, 128, 209, 67, 66, 50, 11, 69, 5, 1, 248, 2, 6, 74, 208, 172, 2, 83, 95, 3, + 79, 133, 175, 130, 255, 11, 216, 121, 159, 65, 38, 72, 138, 0, 155, 214, 58, 236, 17, 141, 27, 217, 227, 219, 232, + 216, 42, 113, 101, 27, 189, 81, 144, 45, 18, 19, 167, 120, 27, 232, 14, 239, 27, 42, 58, 190, 139, 255, 14, 71, + 87, 7, 2, 0, 7, 2, 233, 27, 255, 255, 255, 255, 255, 255, 255, 249, 66, 1, 29, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1671, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6044b5ac9e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10787897693425441542" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "623828c6352faef827" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13873500280532732510" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9281794281988024302" + } + } + ] + } + } + ] + }, + "cborHex": "bf456044b5ac9e1b95b64fcba1e11b0649623828c6352faef827d8669f1bc08893000c6f8a5e9f1b80cf8eb8f025e7eeffffff", + "cborBytes": [ + 191, 69, 96, 68, 181, 172, 158, 27, 149, 182, 79, 203, 161, 225, 27, 6, 73, 98, 56, 40, 198, 53, 47, 174, 248, 39, + 216, 102, 159, 27, 192, 136, 147, 0, 12, 111, 138, 94, 159, 27, 128, 207, 142, 184, 240, 37, 231, 238, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1672, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2171b085ba9911b269aa4e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3818129953918301623" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3e95e1aed0539d6e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "707708acb2a2695592" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "80646296d1d6ff" + }, + { + "_tag": "ByteArray", + "bytearray": "adb74b138d" + }, + { + "_tag": "ByteArray", + "bytearray": "36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11360644796021694058" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "983e2d5bfdbe" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6ddc4f2413" + }, + { + "_tag": "ByteArray", + "bytearray": "a5058e06" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16191375957225005977" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11611667627393028268" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd54b9dd6d3e6a18ed5d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15683666417165456911" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16090090943538686566" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b2171b085ba9911b269aa4e9f1b34fcb8f6b99435b7483e95e1aed0539d6eff49707708acb2a26955929f4780646296d1d6ff45adb74b138d41361b9da91e402e435e6aff46983e2d5bfdbe9f456ddc4f241344a5058e061be0b352a5c33263991ba124ee2f94aa10acff4acd54b9dd6d3e6a18ed5d9f1bd9a79382c2ded60f1bdf4b7c76d55a6a66ffff", + "cborBytes": [ + 191, 75, 33, 113, 176, 133, 186, 153, 17, 178, 105, 170, 78, 159, 27, 52, 252, 184, 246, 185, 148, 53, 183, 72, + 62, 149, 225, 174, 208, 83, 157, 110, 255, 73, 112, 119, 8, 172, 178, 162, 105, 85, 146, 159, 71, 128, 100, 98, + 150, 209, 214, 255, 69, 173, 183, 75, 19, 141, 65, 54, 27, 157, 169, 30, 64, 46, 67, 94, 106, 255, 70, 152, 62, + 45, 91, 253, 190, 159, 69, 109, 220, 79, 36, 19, 68, 165, 5, 142, 6, 27, 224, 179, 82, 165, 195, 50, 99, 153, 27, + 161, 36, 238, 47, 148, 170, 16, 172, 255, 74, 205, 84, 185, 221, 109, 62, 106, 24, 237, 93, 159, 27, 217, 167, + 147, 130, 194, 222, 214, 15, 27, 223, 75, 124, 118, 213, 90, 106, 102, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1673, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7119029e96d8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6171798353900784170" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d39fe07" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b10f7266" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a017cce85c67" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5fa0500fe020637" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06208019786683ba169a4233" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12793311403769607345" + } + } + ] + } + } + ] + }, + "cborHex": "bf467119029e96d81b55a6a1e73d98ca2a448d39fe07bf44b10f726611ff46a017cce85c67a048d5fa0500fe0206379f01144c06208019786683ba169a42331bb18af8f09aa434b1ffff", + "cborBytes": [ + 191, 70, 113, 25, 2, 158, 150, 216, 27, 85, 166, 161, 231, 61, 152, 202, 42, 68, 141, 57, 254, 7, 191, 68, 177, + 15, 114, 102, 17, 255, 70, 160, 23, 204, 232, 92, 103, 160, 72, 213, 250, 5, 0, 254, 2, 6, 55, 159, 1, 20, 76, 6, + 32, 128, 25, 120, 102, 131, 186, 22, 154, 66, 51, 27, 177, 138, 248, 240, 154, 164, 52, 177, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1674, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d92d1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9359bf4e6b4750bff" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1257263446002649286" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7f7b06d2fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "912423937556349564" + } + } + ] + } + } + ] + }, + "cborHex": "bf4101a0438d92d1d905069f411dff49c9359bf4e6b4750bff8041ce9f1b1172b271601248c6457f7b06d2fb1b0ca994bcaa9c027cffff", + "cborBytes": [ + 191, 65, 1, 160, 67, 141, 146, 209, 217, 5, 6, 159, 65, 29, 255, 73, 201, 53, 155, 244, 230, 180, 117, 11, 255, + 128, 65, 206, 159, 27, 17, 114, 178, 113, 96, 18, 72, 198, 69, 127, 123, 6, 210, 251, 27, 12, 169, 148, 188, 170, + 156, 2, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1675, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "84" + }, + { + "_tag": "ByteArray", + "bytearray": "d655943f6611fe38d38dbf80" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7487626169543506543" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9921230406604004216" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5349503914137759480" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58cf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef4595c919c3c19f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4251351983762052890" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb6bc75b08bddacc2cd836b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4994123707477466088" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf039f41844cd655943f6611fe38d38dbf801b67e964547e8f3a6fff0cbf41061b89af4a7d686f9b7841391b4a3d41778ebe2ef841984258cf48ef4595c919c3c19f1b3affd61ac74a171a4cfb6bc75b08bddacc2cd836b01b454eb10d4c8d1be8ffff", + "cborBytes": [ + 191, 3, 159, 65, 132, 76, 214, 85, 148, 63, 102, 17, 254, 56, 211, 141, 191, 128, 27, 103, 233, 100, 84, 126, 143, + 58, 111, 255, 12, 191, 65, 6, 27, 137, 175, 74, 125, 104, 111, 155, 120, 65, 57, 27, 74, 61, 65, 119, 142, 190, + 46, 248, 65, 152, 66, 88, 207, 72, 239, 69, 149, 201, 25, 195, 193, 159, 27, 58, 255, 214, 26, 199, 74, 23, 26, + 76, 251, 107, 199, 91, 8, 189, 218, 204, 44, 216, 54, 176, 27, 69, 78, 177, 13, 76, 141, 27, 232, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1676, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e95f2c38af2e612a1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c7f7a3ab5285bdeb5a0e909b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4534271793657624060" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a22474ba498a" + } + ] + } + } + ] + }, + "cborHex": "bf498e95f2c38af2e612a19f4cc7f7a3ab5285bdeb5a0e909b1b3eecf82c380935fc46a22474ba498affff", + "cborBytes": [ + 191, 73, 142, 149, 242, 195, 138, 242, 230, 18, 161, 159, 76, 199, 247, 163, 171, 82, 133, 189, 235, 90, 14, 144, + 155, 27, 62, 236, 248, 44, 56, 9, 53, 252, 70, 162, 36, 116, 186, 73, 138, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1677, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f63acccd0d08fb666" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10846217292990273221" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11603191764089233949" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5186802792040221682" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2312292755482976828" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "476019696144315883" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13263950180279820233" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17512086240802197905" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a184e3ee78bd81a49bdd0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "13036ea9d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6293720565348065372" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75382b1954bf712c61a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cec3" + } + } + ] + } + } + ] + }, + "cborHex": "bf08499f63acccd0d08fb6661b96858129896256c59f1ba106d16edf46e21d1b47fb39a8938fcbf21b2016ea029345a23c1b069b29643ec575ebff1bfffffffffffffffebf1bb8130469de0e9fc91bf3076da72b05519141114b3a184e3ee78bd81a49bdd04513036ea9d01b5757c9823524605c4a75382b1954bf712c61a942cec3ffff", + "cborBytes": [ + 191, 8, 73, 159, 99, 172, 204, 208, 208, 143, 182, 102, 27, 150, 133, 129, 41, 137, 98, 86, 197, 159, 27, 161, 6, + 209, 110, 223, 70, 226, 29, 27, 71, 251, 57, 168, 147, 143, 203, 242, 27, 32, 22, 234, 2, 147, 69, 162, 60, 27, 6, + 155, 41, 100, 62, 197, 117, 235, 255, 27, 255, 255, 255, 255, 255, 255, 255, 254, 191, 27, 184, 19, 4, 105, 222, + 14, 159, 201, 27, 243, 7, 109, 167, 43, 5, 81, 145, 65, 17, 75, 58, 24, 78, 62, 231, 139, 216, 26, 73, 189, 208, + 69, 19, 3, 110, 169, 208, 27, 87, 87, 201, 130, 53, 36, 96, 92, 74, 117, 56, 43, 25, 84, 191, 113, 44, 97, 169, + 66, 206, 195, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1678, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "190a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "247a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84690794" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "375375809796198212" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6885354606897627157" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3867434112505408272" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4850741138009253394" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5007226518086647746" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f9a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17537898367809627520" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "601795929528318071" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17557792190858358702" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7" + } + } + ] + } + } + ] + }, + "cborHex": "bf42190a42247a4484690794bf1b05359a4f682d4f441b5f8db188e8bb80151b35abe2d5b41ceb101b43514b5d5c6a66121b457d3dfd20787fc2425f9a1bf36321a5503225801b085a02359ecfb8771bf3a9cef8f03d6fae41a7ffff", + "cborBytes": [ + 191, 66, 25, 10, 66, 36, 122, 68, 132, 105, 7, 148, 191, 27, 5, 53, 154, 79, 104, 45, 79, 68, 27, 95, 141, 177, + 136, 232, 187, 128, 21, 27, 53, 171, 226, 213, 180, 28, 235, 16, 27, 67, 81, 75, 93, 92, 106, 102, 18, 27, 69, + 125, 61, 253, 32, 120, 127, 194, 66, 95, 154, 27, 243, 99, 33, 165, 80, 50, 37, 128, 27, 8, 90, 2, 53, 158, 207, + 184, 119, 27, 243, 169, 206, 248, 240, 61, 111, 174, 65, 167, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1679, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c847030ffabd0601266e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16027386842515540795" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02f69ccabdd0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17771219957044089302" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd04e0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f486" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2213539175629271534" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15096652744324615920" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3883653668714169366" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4604e9fa25c9e5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6152013379000063265" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10075652293575571339" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15410953241178739751" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00bd0d7307d7661125cb3b" + } + } + ] + } + } + ] + }, + "cborHex": "bf4ac847030ffabd0601266ed8669f1bde6cb76aa1e88b3b9f4602f69ccabdd0081bf6a00e651cf211d61bfffffffffffffff1ffff43cd04e042f48641e4bf1b1eb8122703cb31ee1bd18215af7ae50ef01b35e5826f6a59c416474604e9fa25c9e51b55605792ccbfd5211b8bd3e860beebf78b1bd5deb452769d14274b00bd0d7307d7661125cb3bffff", + "cborBytes": [ + 191, 74, 200, 71, 3, 15, 250, 189, 6, 1, 38, 110, 216, 102, 159, 27, 222, 108, 183, 106, 161, 232, 139, 59, 159, + 70, 2, 246, 156, 202, 189, 208, 8, 27, 246, 160, 14, 101, 28, 242, 17, 214, 27, 255, 255, 255, 255, 255, 255, 255, + 241, 255, 255, 67, 205, 4, 224, 66, 244, 134, 65, 228, 191, 27, 30, 184, 18, 39, 3, 203, 49, 238, 27, 209, 130, + 21, 175, 122, 229, 14, 240, 27, 53, 229, 130, 111, 106, 89, 196, 22, 71, 70, 4, 233, 250, 37, 201, 229, 27, 85, + 96, 87, 146, 204, 191, 213, 33, 27, 139, 211, 232, 96, 190, 235, 247, 139, 27, 213, 222, 180, 82, 118, 157, 20, + 39, 75, 0, 189, 13, 115, 7, 215, 102, 17, 37, 203, 59, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1680, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2fcfbd2841" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8921711876401288421" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c98bd7346a51f1931cd787" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3619594265477702506" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c58fee83474e8efa018" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12771327490358236048" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8c609af" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13863058871271228309" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9105879d61c087b64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9360397052946391455" + } + } + } + ] + }, + "cborHex": "bf452fcfbd2841d8669f1b7bd049aead4854e59f4bc98bd7346a51f1931cd7871b323b61ce98d6e36affff4a4c58fee83474e8efa0181bb13cdeafe4fbd39044b8c609af1bc0637a980273039549b9105879d61c087b641b81e6cf86b17ba19fff", + "cborBytes": [ + 191, 69, 47, 207, 189, 40, 65, 216, 102, 159, 27, 123, 208, 73, 174, 173, 72, 84, 229, 159, 75, 201, 139, 215, 52, + 106, 81, 241, 147, 28, 215, 135, 27, 50, 59, 97, 206, 152, 214, 227, 106, 255, 255, 74, 76, 88, 254, 232, 52, 116, + 232, 239, 160, 24, 27, 177, 60, 222, 175, 228, 251, 211, 144, 68, 184, 198, 9, 175, 27, 192, 99, 122, 152, 2, 115, + 3, 149, 73, 185, 16, 88, 121, 214, 28, 8, 123, 100, 27, 129, 230, 207, 134, 177, 123, 161, 159, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1681, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e9300" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "644cb9468e2a375acb1f4d42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd5ad903" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe06a4fbfcaa3005" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a70d2cb18" + } + } + ] + }, + "cborHex": "bf431e9300804c644cb9468e2a375acb1f4d4244fd5ad90348fe06a4fbfcaa3005452a70d2cb18ff", + "cborBytes": [ + 191, 67, 30, 147, 0, 128, 76, 100, 76, 185, 70, 142, 42, 55, 90, 203, 31, 77, 66, 68, 253, 90, 217, 3, 72, 254, 6, + 164, 251, 252, 170, 48, 5, 69, 42, 112, 210, 203, 24, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1682, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07750433" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9582220367826324506" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3768998102268663485" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dad2ac2904b0d436a4fadc2a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "859821124638885558" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28876c79e2fe98" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6827957117132716997" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15191383252955680952" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8201555734481247213" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8120efa8b79" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72f22ecc3a1f4290fb83a0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70aed70c02c15e669bd5b71d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0165aed977dc299f71" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "906665" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "afb58aaa9f52" + }, + { + "_tag": "ByteArray", + "bytearray": "102daa131f40" + }, + { + "_tag": "ByteArray", + "bytearray": "a87b7e" + } + ] + } + } + ] + }, + "cborHex": "bf44077504339f1b84fae2a7dfcd0c1a1b344e2bce14d856bd4cdad2ac2904b0d436a4fadc2a1b0beeb2c1e07a46b6ff4728876c79e2fe98bf1b5ec1c6d26c4bbbc51bd2d2a294c73dd0b81b71d1c77c9f529bed46e8120efa8b79ff4231dd4b72f22ecc3a1f4290fb83a04c70aed70c02c15e669bd5b71d490165aed977dc299f71439066659f46afb58aaa9f5246102daa131f4043a87b7effff", + "cborBytes": [ + 191, 68, 7, 117, 4, 51, 159, 27, 132, 250, 226, 167, 223, 205, 12, 26, 27, 52, 78, 43, 206, 20, 216, 86, 189, 76, + 218, 210, 172, 41, 4, 176, 212, 54, 164, 250, 220, 42, 27, 11, 238, 178, 193, 224, 122, 70, 182, 255, 71, 40, 135, + 108, 121, 226, 254, 152, 191, 27, 94, 193, 198, 210, 108, 75, 187, 197, 27, 210, 210, 162, 148, 199, 61, 208, 184, + 27, 113, 209, 199, 124, 159, 82, 155, 237, 70, 232, 18, 14, 250, 139, 121, 255, 66, 49, 221, 75, 114, 242, 46, + 204, 58, 31, 66, 144, 251, 131, 160, 76, 112, 174, 215, 12, 2, 193, 94, 102, 155, 213, 183, 29, 73, 1, 101, 174, + 217, 119, 220, 41, 159, 113, 67, 144, 102, 101, 159, 70, 175, 181, 138, 170, 159, 82, 70, 16, 45, 170, 19, 31, 64, + 67, 168, 123, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1683, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "751455063f9882f836633180" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3008717083461179693" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9803835e8f95b273" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8befbaf" + } + } + ] + }, + "cborHex": "bf4c751455063f9882f8366331801b29c11c3f1d5a592d489803835e8f95b27344f8befbafff", + "cborBytes": [ + 191, 76, 117, 20, 85, 6, 63, 152, 130, 248, 54, 99, 49, 128, 27, 41, 193, 28, 63, 29, 90, 89, 45, 72, 152, 3, 131, + 94, 143, 149, 178, 115, 68, 248, 190, 251, 175, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1684, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1486777485458182086" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10702672888979139808" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3598060709106773028" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13983486486794448893" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12191981419958031941" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15536712886101269301" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a4e781e17c7db4add387daa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e7ae9ba2a162c3bed343a65" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17189643606819002506" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e5dcfab22c574144578" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "791689e0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6d3197c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13091921342448955957" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b14a2183ee8c88fc61b948788498ece2ce01b31eee126ce996c24a01bc20f52df3edbaffd1ba9329e816cc2d6451bd79d7e0d894cdb35bf4c2a4e781e17c7db4add387daa4c1e7ae9ba2a162c3bed343a65ff1bee8de1c92802d88abf4a9e5dcfab22c57414457844791689e044a6d3197c1bb5afd918d406723541f14125ffff", + "cborBytes": [ + 191, 27, 20, 162, 24, 62, 232, 200, 143, 198, 27, 148, 135, 136, 73, 142, 206, 44, 224, 27, 49, 238, 225, 38, 206, + 153, 108, 36, 160, 27, 194, 15, 82, 223, 62, 219, 175, 253, 27, 169, 50, 158, 129, 108, 194, 214, 69, 27, 215, + 157, 126, 13, 137, 76, 219, 53, 191, 76, 42, 78, 120, 30, 23, 199, 219, 74, 221, 56, 125, 170, 76, 30, 122, 233, + 186, 42, 22, 44, 59, 237, 52, 58, 101, 255, 27, 238, 141, 225, 201, 40, 2, 216, 138, 191, 74, 158, 93, 207, 171, + 34, 197, 116, 20, 69, 120, 68, 121, 22, 137, 224, 68, 166, 211, 25, 124, 27, 181, 175, 217, 24, 212, 6, 114, 53, + 65, 241, 65, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1685, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bc7d7ddc98a7000fc" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf499bc7d7ddc98a7000fc80ff", + "cborBytes": [191, 73, 155, 199, 215, 221, 201, 138, 112, 0, 252, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1686, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3752162688499173660" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13112169962356180516" + } + } + } + ] + }, + "cborHex": "bf1b34125c15db77c91c1bb5f7c91c08c98624ff", + "cborBytes": [191, 27, 52, 18, 92, 21, 219, 119, 201, 28, 27, 181, 247, 201, 28, 8, 201, 134, 36, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1687, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4770296868130951843" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5d3bdf4a42965bf5b1f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5519622898034475272" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12917889701419508266" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8968544458503719758" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2220756536353285383" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16525712963111873907" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12653449614813265251" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c24d5f0731" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15286369717450241811" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17017030897695903268" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d44ad17bea6e66a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2248617078242849011" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f7922aa44016c8641885cce6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15902506787721500347" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bde2d4db0ee2e2cda10f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17100400459219440880" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1199277924560215405" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "33019237036420378" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10436101578601323373" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12136060865582909265" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b2cff6c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cabcce02ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0b7f5457d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4b1175b" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b42337fba3a1a92a34ac5d3bdf4a42965bf5b1f1b4c99a3c8137501081bb345903dd4c9622a1b7c76abaae9698b4e9f1b1ed1b64dc1f6e5071be55720620a59ed731baf9a1562423f7d6345c24d5f0731ff1bd424184471e8f7139f1bec28a370fd02ce24482d44ad17bea6e66a1b1f34b151a88ab0f34cf7922aa44016c8641885cce6ff1bdcb10dab1860d6bb4abde2d4db0ee2e2cda10f1bed50d39da8b394f0bf1b10a4b0eb18611d6d1b00754ed2364f6d1a1b90d47b17c86cdb6d1ba86bf30ec196c751441b2cff6c45cabcce02ae45c0b7f5457d44c4b1175bffff", + "cborBytes": [ + 191, 27, 66, 51, 127, 186, 58, 26, 146, 163, 74, 197, 211, 189, 244, 164, 41, 101, 191, 91, 31, 27, 76, 153, 163, + 200, 19, 117, 1, 8, 27, 179, 69, 144, 61, 212, 201, 98, 42, 27, 124, 118, 171, 170, 233, 105, 139, 78, 159, 27, + 30, 209, 182, 77, 193, 246, 229, 7, 27, 229, 87, 32, 98, 10, 89, 237, 115, 27, 175, 154, 21, 98, 66, 63, 125, 99, + 69, 194, 77, 95, 7, 49, 255, 27, 212, 36, 24, 68, 113, 232, 247, 19, 159, 27, 236, 40, 163, 112, 253, 2, 206, 36, + 72, 45, 68, 173, 23, 190, 166, 230, 106, 27, 31, 52, 177, 81, 168, 138, 176, 243, 76, 247, 146, 42, 164, 64, 22, + 200, 100, 24, 133, 204, 230, 255, 27, 220, 177, 13, 171, 24, 96, 214, 187, 74, 189, 226, 212, 219, 14, 226, 226, + 205, 161, 15, 27, 237, 80, 211, 157, 168, 179, 148, 240, 191, 27, 16, 164, 176, 235, 24, 97, 29, 109, 27, 0, 117, + 78, 210, 54, 79, 109, 26, 27, 144, 212, 123, 23, 200, 108, 219, 109, 27, 168, 107, 243, 14, 193, 150, 199, 81, 68, + 27, 44, 255, 108, 69, 202, 188, 206, 2, 174, 69, 192, 183, 245, 69, 125, 68, 196, 177, 23, 91, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1688, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17395623250658454553" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2ff0fb6256d37595" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "207196219090046775" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12873335684543373574" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6917873973749697672" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8894259219307558419" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6274842188055636413" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d034220f" + }, + { + "_tag": "ByteArray", + "bytearray": "371a79575a" + }, + { + "_tag": "ByteArray", + "bytearray": "4f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18418401018815772522" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7987569084817776290" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffc4ff0745078e" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f437" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13599732666562593969" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11196979880766873492" + } + } + ] + } + } + ] + }, + "cborHex": "bf08d8669f1bf169ab2e3605ec199f482ff0fb6256d37595ffff1b02e01bdd0daa8f379f1bb2a7469967916106ff1b600139ba06454c88d8669f1bfffffffffffffffb9f1b7b6ec1a2db11f6131b5714b7b978b0e9bd44d034220f45371a79575a414fffff1bff9b4e244934f76abf1b6ed98bc33f749ea247ffc4ff0745078eff1bfffffffffffffff9a01bffffffffffffffff9f42f4371bbcbbf4ce46bd44b11b9b63a9e09e4e1f94ffff", + "cborBytes": [ + 191, 8, 216, 102, 159, 27, 241, 105, 171, 46, 54, 5, 236, 25, 159, 72, 47, 240, 251, 98, 86, 211, 117, 149, 255, + 255, 27, 2, 224, 27, 221, 13, 170, 143, 55, 159, 27, 178, 167, 70, 153, 103, 145, 97, 6, 255, 27, 96, 1, 57, 186, + 6, 69, 76, 136, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 27, 123, 110, 193, 162, 219, 17, + 246, 19, 27, 87, 20, 183, 185, 120, 176, 233, 189, 68, 208, 52, 34, 15, 69, 55, 26, 121, 87, 90, 65, 79, 255, 255, + 27, 255, 155, 78, 36, 73, 52, 247, 106, 191, 27, 110, 217, 139, 195, 63, 116, 158, 162, 71, 255, 196, 255, 7, 69, + 7, 142, 255, 27, 255, 255, 255, 255, 255, 255, 255, 249, 160, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 66, + 244, 55, 27, 188, 187, 244, 206, 70, 189, 68, 177, 27, 155, 99, 169, 224, 158, 78, 31, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1689, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7610156539778118831" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3136314931152553981" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "459781468293320245" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14120788103620437717" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10927042377461975620" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9105526941823809027" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14599468168669231678" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7747258254678958072" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14702700740890047390" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16310810983778470291" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff77b4f5883cad2c2b0ed7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11312585860179418571" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6619141626037269536" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e5023658f1d0a64d7251c9" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15074976307803136281" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11186365054763017582" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6047696957266137871" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15149983170946154799" + } + }, + { + "_tag": "ByteArray", + "bytearray": "76b6c6aba1e940678d3d5a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1615062888903954899" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b699cb50d769734af9f1b2b866dd01f1a07fd1b066178cf33ee4e35ff1bc3f71df710dba6d59f1b97a4a725fa42ca441b7e5d5482ac283603ff1bca9bbaf2b726fa3e1b6b83ca55fd5a1ff81bcc0a7c6cf39fb39ed8669f1be25ba42bdea7c9939f4bff77b4f5883cad2c2b0ed71b9cfe60e73719ddcb1b5bdbea3d39f3f4204be5023658f1d0a64d7251c9ffff1bd1351314d0092119d8669f1b9b3df3bfd8fe256e9f1b53edbc572f0f130f1bd23f8d6d0964412f4b76b6c6aba1e940678d3d5a1b1669db23f70951d3ffffff", + "cborBytes": [ + 191, 27, 105, 156, 181, 13, 118, 151, 52, 175, 159, 27, 43, 134, 109, 208, 31, 26, 7, 253, 27, 6, 97, 120, 207, + 51, 238, 78, 53, 255, 27, 195, 247, 29, 247, 16, 219, 166, 213, 159, 27, 151, 164, 167, 37, 250, 66, 202, 68, 27, + 126, 93, 84, 130, 172, 40, 54, 3, 255, 27, 202, 155, 186, 242, 183, 38, 250, 62, 27, 107, 131, 202, 85, 253, 90, + 31, 248, 27, 204, 10, 124, 108, 243, 159, 179, 158, 216, 102, 159, 27, 226, 91, 164, 43, 222, 167, 201, 147, 159, + 75, 255, 119, 180, 245, 136, 60, 173, 44, 43, 14, 215, 27, 156, 254, 96, 231, 55, 25, 221, 203, 27, 91, 219, 234, + 61, 57, 243, 244, 32, 75, 229, 2, 54, 88, 241, 208, 166, 77, 114, 81, 201, 255, 255, 27, 209, 53, 19, 20, 208, 9, + 33, 25, 216, 102, 159, 27, 155, 61, 243, 191, 216, 254, 37, 110, 159, 27, 83, 237, 188, 87, 47, 15, 19, 15, 27, + 210, 63, 141, 109, 9, 100, 65, 47, 75, 118, 182, 198, 171, 161, 233, 64, 103, 141, 61, 90, 27, 22, 105, 219, 35, + 247, 9, 81, 211, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1690, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a05" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14756799824135360312" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffeb1bfffffffffffffff3425a059f1bcccaaf4153228f38ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 235, 27, 255, 255, 255, 255, 255, 255, 255, 243, 66, 90, 5, 159, 27, + 204, 202, 175, 65, 83, 34, 143, 56, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1691, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ac9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6210887621925161994" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3424273835662148432" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2572083523271723094" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6100002688471405402" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d5f73c82b" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4ca109e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d7b93a096" + } + } + ] + }, + "cborHex": "bf421ac9d8669f1b56318162acb84c0a9f1b2f8576e9344e83501b23b1e056413f08561b54a790203f44135affff454d5f73c82b8044d4ca109e459d7b93a096ff", + "cborBytes": [ + 191, 66, 26, 201, 216, 102, 159, 27, 86, 49, 129, 98, 172, 184, 76, 10, 159, 27, 47, 133, 118, 233, 52, 78, 131, + 80, 27, 35, 177, 224, 86, 65, 63, 8, 86, 27, 84, 167, 144, 32, 63, 68, 19, 90, 255, 255, 69, 77, 95, 115, 200, 43, + 128, 68, 212, 202, 16, 158, 69, 157, 123, 147, 160, 150, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1692, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0e57099300077934e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17898400536823842026" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff060350" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bbd63f0c43297e8be1" + } + } + ] + }, + "cborHex": "bf49b0e57099300077934e1bf863e4755d0bc4ea44ff06035049bbd63f0c43297e8be1ff", + "cborBytes": [ + 191, 73, 176, 229, 112, 153, 48, 0, 119, 147, 78, 27, 248, 99, 228, 117, 93, 11, 196, 234, 68, 255, 6, 3, 80, 73, + 187, 214, 63, 12, 67, 41, 126, 139, 225, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1693, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3735335496458527830" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9651808636728811282" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10370662888631597204" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "509f868e928aae2e93" + } + } + ] + }, + "cborHex": "bf1b33d693d7e75164561b85f21cd150449f121b8febfef37a36789449509f868e928aae2e93ff", + "cborBytes": [ + 191, 27, 51, 214, 147, 215, 231, 81, 100, 86, 27, 133, 242, 28, 209, 80, 68, 159, 18, 27, 143, 235, 254, 243, 122, + 54, 120, 148, 73, 80, 159, 134, 142, 146, 138, 174, 46, 147, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1694, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3020938619653132560" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5b63f6dc955dcd5412" + }, + { + "_tag": "ByteArray", + "bytearray": "9a443a1cba" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11525681658656089043" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4052087934168685819" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15843724395941482724" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6b9fad3b3d91edbd6e18de" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12640387917940384100" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7492819226925556578" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c9ccfd4340" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c55796f9005f306b96b63e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1021650734640675876" + } + } + } + ] + }, + "cborHex": "bf1b29ec87ab40af11109f495b63f6dc955dcd5412459a443a1cbaff1b9ff37267226e63d31b383be881dac55cfb1bdbe03764fb4850e49f4b6b9fad3b3d91edbd6e18de1baf6badd6f7f9e1641b67fbd763631d636245c9ccfd4340ff4c7c55796f9005f306b96b63e81b0e2da1ee22c63c24ff", + "cborBytes": [ + 191, 27, 41, 236, 135, 171, 64, 175, 17, 16, 159, 73, 91, 99, 246, 220, 149, 93, 205, 84, 18, 69, 154, 68, 58, 28, + 186, 255, 27, 159, 243, 114, 103, 34, 110, 99, 211, 27, 56, 59, 232, 129, 218, 197, 92, 251, 27, 219, 224, 55, + 100, 251, 72, 80, 228, 159, 75, 107, 159, 173, 59, 61, 145, 237, 189, 110, 24, 222, 27, 175, 107, 173, 214, 247, + 249, 225, 100, 27, 103, 251, 215, 99, 99, 29, 99, 98, 69, 201, 204, 253, 67, 64, 255, 76, 124, 85, 121, 111, 144, + 5, 243, 6, 185, 107, 99, 232, 27, 14, 45, 161, 238, 34, 198, 60, 36, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1695, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "371862346608713343" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9678104582434786841" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f21d7dadbb6c641dc3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14175416910806777413" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a97cca493116b0dbe6ce32" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12637300827715589709" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9800348492513820576" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d54a1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8215797177360691059" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1323e6b0aa19" + } + ] + } + } + ] + }, + "cborHex": "bf0cd8669f1bfffffffffffffff09f1b05291ed582f49e7f1b864f88d7471b0e1949f21d7dadbb6c641dc31bc4b9329367b3fe454ba97cca493116b0dbe6ce32ffff1baf60b625c3bcd64dd8669f1bfffffffffffffffc9f1b8801d5078b523fa0430d54a11b72046000ef3daf73461323e6b0aa19ffffff", + "cborBytes": [ + 191, 12, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 27, 5, 41, 30, 213, 130, 244, 158, 127, + 27, 134, 79, 136, 215, 71, 27, 14, 25, 73, 242, 29, 125, 173, 187, 108, 100, 29, 195, 27, 196, 185, 50, 147, 103, + 179, 254, 69, 75, 169, 124, 202, 73, 49, 22, 176, 219, 230, 206, 50, 255, 255, 27, 175, 96, 182, 37, 195, 188, + 214, 77, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 27, 136, 1, 213, 7, 139, 82, 63, 160, 67, + 13, 84, 161, 27, 114, 4, 96, 0, 239, 61, 175, 115, 70, 19, 35, 230, 176, 170, 25, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1696, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cfa06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10456080117107020249" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79021d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00fd04" + } + } + ] + }, + "cborHex": "bf08438cfa061b911b7577c33051d94379021d1bfffffffffffffff14300fd04ff", + "cborBytes": [ + 191, 8, 67, 140, 250, 6, 27, 145, 27, 117, 119, 195, 48, 81, 217, 67, 121, 2, 29, 27, 255, 255, 255, 255, 255, + 255, 255, 241, 67, 0, 253, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1697, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7821395260385114038" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10724036565800922420" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb7f99eb22d0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1944b0151707" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10866796829136157550" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7112e6efa6fe424ccc2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9809147692993989807" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15025898439437529148" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7345505810651677860" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8c8c1db0c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13400357530914605599" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f641ef99c874a400138dc5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "877413782145848571" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9bafb9c422a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4a8a3ce170a263" + }, + { + "_tag": "ByteArray", + "bytearray": "048131613109a2a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3681448031673880626" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6c8b2d8cbf2db7b6bf1b94d36e702edd2d3446bb7f99eb22d0461944b01517071b96ce9e242f007b6e4ad7112e6efa6fe424ccc21b882117db0e3fccafff1bd086b70521c5303cd8669f1b65f07a9ddb7604a49f458c8c1db0c71bb9f7a22d1d654a1fffff4bf641ef99c874a400138dc51b0c2d332fa5d5d4fb46f9bafb9c422a9f474a8a3ce170a26348048131613109a2a71b3317217acafb9032ffff", + "cborBytes": [ + 191, 27, 108, 139, 45, 140, 191, 45, 183, 182, 191, 27, 148, 211, 110, 112, 46, 221, 45, 52, 70, 187, 127, 153, + 235, 34, 208, 70, 25, 68, 176, 21, 23, 7, 27, 150, 206, 158, 36, 47, 0, 123, 110, 74, 215, 17, 46, 110, 250, 111, + 228, 36, 204, 194, 27, 136, 33, 23, 219, 14, 63, 204, 175, 255, 27, 208, 134, 183, 5, 33, 197, 48, 60, 216, 102, + 159, 27, 101, 240, 122, 157, 219, 118, 4, 164, 159, 69, 140, 140, 29, 176, 199, 27, 185, 247, 162, 45, 29, 101, + 74, 31, 255, 255, 75, 246, 65, 239, 153, 200, 116, 164, 0, 19, 141, 197, 27, 12, 45, 51, 47, 165, 213, 212, 251, + 70, 249, 186, 251, 156, 66, 42, 159, 71, 74, 138, 60, 225, 112, 162, 99, 72, 4, 129, 49, 97, 49, 9, 162, 167, 27, + 51, 23, 33, 122, 202, 251, 144, 50, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1698, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1166417467035934534" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3404084069463512552" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2412782468702110223" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13377074420682309492" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3203109911109706537" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6374850f8911dad5da9805" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10184312298937299596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa3ffe0345b6db" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12313436236278901595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10570907875254747314" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18197006068029731506" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b73a20" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7599966147297977821" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13461010164135551900" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "148c0c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0eb952" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af48038fdc75c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6281694a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f40ebf31eb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee586b2355d1a4a338b7bce4" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14802657750973436693" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "970b019bbfcd9c8195c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2377f436" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "958a5e0a68691a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ccd9c4e50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4119982952314540235" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8af15133e4c8e8f70842" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5378711331174610799" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c60bb28a6f0e6fdd050b6b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6936954018085559464" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e85e2d04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "987d85" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18412772311936701210" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf05bf1b102ff2819e7cdf461b2f3dbc6cf1f055e81b217becdf2f47820f1bb9a4ea4f92bbbf741b2c73bb7e4c3a23294b6374850f8911dad5da98051b8d55f213bbccb28c47aa3ffe0345b6db1baae21d047bd3ab5b1b92b368b499f040b21bfc88c09b648a32b243b73a20ff0f9f1b697880f1d2b0a5dd1bbacf1d6cbf38e39cff11bf43148c0c430eb9524157413147af48038fdc75c1446281694a45f40ebf31eb4cee586b2355d1a4a338b7bce4ff1bcd6d9acbf2745315bf410b4a970b019bbfcd9c8195c6442377f43647958a5e0a68691a454ccd9c4e501b392d1eaaa15f90cb4a8af15133e4c8e8f708421b4aa505754407f76f4bc60bb28a6f0e6fdd050b6b1b604502ed07355ca844e85e2d0443987d85ff1bffffffffffffffebd8669f1bff874edcd722931a80ffff", + "cborBytes": [ + 191, 5, 191, 27, 16, 47, 242, 129, 158, 124, 223, 70, 27, 47, 61, 188, 108, 241, 240, 85, 232, 27, 33, 123, 236, + 223, 47, 71, 130, 15, 27, 185, 164, 234, 79, 146, 187, 191, 116, 27, 44, 115, 187, 126, 76, 58, 35, 41, 75, 99, + 116, 133, 15, 137, 17, 218, 213, 218, 152, 5, 27, 141, 85, 242, 19, 187, 204, 178, 140, 71, 170, 63, 254, 3, 69, + 182, 219, 27, 170, 226, 29, 4, 123, 211, 171, 91, 27, 146, 179, 104, 180, 153, 240, 64, 178, 27, 252, 136, 192, + 155, 100, 138, 50, 178, 67, 183, 58, 32, 255, 15, 159, 27, 105, 120, 128, 241, 210, 176, 165, 221, 27, 186, 207, + 29, 108, 191, 56, 227, 156, 255, 17, 191, 67, 20, 140, 12, 67, 14, 185, 82, 65, 87, 65, 49, 71, 175, 72, 3, 143, + 220, 117, 193, 68, 98, 129, 105, 74, 69, 244, 14, 191, 49, 235, 76, 238, 88, 107, 35, 85, 209, 164, 163, 56, 183, + 188, 228, 255, 27, 205, 109, 154, 203, 242, 116, 83, 21, 191, 65, 11, 74, 151, 11, 1, 155, 191, 205, 156, 129, + 149, 198, 68, 35, 119, 244, 54, 71, 149, 138, 94, 10, 104, 105, 26, 69, 76, 205, 156, 78, 80, 27, 57, 45, 30, 170, + 161, 95, 144, 203, 74, 138, 241, 81, 51, 228, 200, 232, 247, 8, 66, 27, 74, 165, 5, 117, 68, 7, 247, 111, 75, 198, + 11, 178, 138, 111, 14, 111, 221, 5, 11, 107, 27, 96, 69, 2, 237, 7, 53, 92, 168, 68, 232, 94, 45, 4, 67, 152, 125, + 133, 255, 27, 255, 255, 255, 255, 255, 255, 255, 235, 216, 102, 159, 27, 255, 135, 78, 220, 215, 34, 147, 26, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1699, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "967215449224239090" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2217707111474819094" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16190855596681941108" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12663817122224273737" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3b56cd" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17031850595012861533" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6619097342729359497" + } + } + } + ] + }, + "cborHex": "bf1b0d6c3d539847d7f2d8669f1b1ec6e0de3350701680ff1be0b17961e1df5074d8669f1bafbeea93aeaff9499f433b56cdffff1bec5d49e0a7445e5d1b5bdbc1f6b71d9089ff", + "cborBytes": [ + 191, 27, 13, 108, 61, 83, 152, 71, 215, 242, 216, 102, 159, 27, 30, 198, 224, 222, 51, 80, 112, 22, 128, 255, 27, + 224, 177, 121, 97, 225, 223, 80, 116, 216, 102, 159, 27, 175, 190, 234, 147, 174, 175, 249, 73, 159, 67, 59, 86, + 205, 255, 255, 27, 236, 93, 73, 224, 167, 68, 94, 93, 27, 91, 219, 193, 246, 183, 29, 144, 137, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1700, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10140722507836983289" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea40292e" + } + } + ] + }, + "cborHex": "bf1b8cbb15649d6e87f944ea40292eff", + "cborBytes": [191, 27, 140, 187, 21, 100, 157, 110, 135, 249, 68, 234, 64, 41, 46, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1701, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "768102774992286206" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2c59c4f02a75" + }, + { + "_tag": "ByteArray", + "bytearray": "beda" + }, + { + "_tag": "ByteArray", + "bytearray": "9d7a4839ed3687e45f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3737573151436061741" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6988478309047609022" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3591191e15" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14248687862273218728" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31a9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a42bd26d9499fe7aac597" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f51871b4a05bd7e40b16" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85fe0983" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67acaf5a37ace2b538b7f86c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eff3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "861818c883ec" + } + } + ] + }, + "cborHex": "bf1b0aa8d9677e6831fe9f462c59c4f02a7542beda499d7a4839ed3687e45fff1b33de86fa8d623c2dbf1b60fc0ffedb4e26be453591191e151bc5bd821e323718a84231a94b9a42bd26d9499fe7aac5974af51871b4a05bd7e40b16ff4485fe09834c67acaf5a37ace2b538b7f86c42eff346861818c883ecff", + "cborBytes": [ + 191, 27, 10, 168, 217, 103, 126, 104, 49, 254, 159, 70, 44, 89, 196, 240, 42, 117, 66, 190, 218, 73, 157, 122, 72, + 57, 237, 54, 135, 228, 95, 255, 27, 51, 222, 134, 250, 141, 98, 60, 45, 191, 27, 96, 252, 15, 254, 219, 78, 38, + 190, 69, 53, 145, 25, 30, 21, 27, 197, 189, 130, 30, 50, 55, 24, 168, 66, 49, 169, 75, 154, 66, 189, 38, 217, 73, + 159, 231, 170, 197, 151, 74, 245, 24, 113, 180, 160, 91, 215, 228, 11, 22, 255, 68, 133, 254, 9, 131, 76, 103, + 172, 175, 90, 55, 172, 226, 181, 56, 183, 248, 108, 66, 239, 243, 70, 134, 24, 24, 200, 131, 236, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1702, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3337529345868016809" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16322309077065024221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba3c757099" + } + } + ] + }, + "cborHex": "bf1b2e514941cfe7aca9141be2847da0549842dd45ba3c757099ff", + "cborBytes": [ + 191, 27, 46, 81, 73, 65, 207, 231, 172, 169, 20, 27, 226, 132, 125, 160, 84, 152, 66, 221, 69, 186, 60, 117, 112, + 153, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1703, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "903b3c40" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8817323463109147402" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9df0ee35b9be4a5f7c9f0134" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9223e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "895997927171781712" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1298917410337383244" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1984526346826395917" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "725410150838334301" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5052758746510787005" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc17871bcd43daf397aa296a" + } + } + ] + } + } + ] + }, + "cborHex": "bf44903b3c40d8669f1b7a5d6cf938567b0a9f4c9df0ee35b9be4a5f7c9f0134ffff43e9223ebf1b0c6f395e188f74501b1206ae80b3bae34c1b1b8a7432adfdb10d1b0a112cb0552e735d1b461f014f2d8601bd4cbc17871bcd43daf397aa296affff", + "cborBytes": [ + 191, 68, 144, 59, 60, 64, 216, 102, 159, 27, 122, 93, 108, 249, 56, 86, 123, 10, 159, 76, 157, 240, 238, 53, 185, + 190, 74, 95, 124, 159, 1, 52, 255, 255, 67, 233, 34, 62, 191, 27, 12, 111, 57, 94, 24, 143, 116, 80, 27, 18, 6, + 174, 128, 179, 186, 227, 76, 27, 27, 138, 116, 50, 173, 253, 177, 13, 27, 10, 17, 44, 176, 85, 46, 115, 93, 27, + 70, 31, 1, 79, 45, 134, 1, 189, 76, 188, 23, 135, 27, 205, 67, 218, 243, 151, 170, 41, 106, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1704, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf03d87b80ff", + "cborBytes": [191, 3, 216, 123, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1705, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10054042244780865633" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d8b63ab81f10f77e2c3cd26" + } + } + ] + }, + "cborHex": "bf1b8b8722272cef38614c0d8b63ab81f10f77e2c3cd26ff", + "cborBytes": [ + 191, 27, 139, 135, 34, 39, 44, 239, 56, 97, 76, 13, 139, 99, 171, 129, 241, 15, 119, 226, 195, 205, 38, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1706, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f0458be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b24242193b41" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae42d0573859969a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3740e8ae0f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15894234361906417414" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b93da0c8" + } + ] + } + } + ] + }, + "cborHex": "bf448f0458be46b24242193b4148ae42d0573859969a9f453740e8ae0f1bdc93a9f0de3d4f0644b93da0c8ffff", + "cborBytes": [ + 191, 68, 143, 4, 88, 190, 70, 178, 66, 66, 25, 59, 65, 72, 174, 66, 208, 87, 56, 89, 150, 154, 159, 69, 55, 64, + 232, 174, 15, 27, 220, 147, 169, 240, 222, 61, 79, 6, 68, 185, 61, 160, 200, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1707, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7083966968000931921" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15056469455211941190" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "882048873481654574" + } + }, + { + "_tag": "ByteArray", + "bytearray": "319f29af97e45d075039ef" + }, + { + "_tag": "ByteArray", + "bytearray": "0d451ee72468ff" + }, + { + "_tag": "ByteArray", + "bytearray": "fd" + }, + { + "_tag": "ByteArray", + "bytearray": "44c0" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8352364158679994203" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6606017760669682541" + } + } + } + ] + }, + "cborHex": "bf1b624f4e6cc84be851d8669f1bd0f35332696d4d469f1b0c3daac6f268512e4b319f29af97e45d075039ef470d451ee72468ff41fd4244c0ffff1b73e98ef318d34f5b1b5bad4a2734a34b6dff", + "cborBytes": [ + 191, 27, 98, 79, 78, 108, 200, 75, 232, 81, 216, 102, 159, 27, 208, 243, 83, 50, 105, 109, 77, 70, 159, 27, 12, + 61, 170, 198, 242, 104, 81, 46, 75, 49, 159, 41, 175, 151, 228, 93, 7, 80, 57, 239, 71, 13, 69, 30, 231, 36, 104, + 255, 65, 253, 66, 68, 192, 255, 255, 27, 115, 233, 142, 243, 24, 211, 79, 91, 27, 91, 173, 74, 39, 52, 163, 75, + 109, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1708, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d0130ca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "691c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8840cfa61109311" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf442d0130ca42691c41ed0948f8840cfa61109311a0ff", + "cborBytes": [191, 68, 45, 1, 48, 202, 66, 105, 28, 65, 237, 9, 72, 248, 132, 12, 250, 97, 16, 147, 17, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1709, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5482383127742283615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6203301586135088591" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12789910654528430900" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17592767665742149692" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15146014012312899067" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14792863085878702112" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee6af0d7e86da6fe0356" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1230627779122751219" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15030721586173539598" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8176943850858844703" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15669086543522846405" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4c15566863ac7f5f1b56168ded1432fdcf1bb17ee3f9f826a3341bf42610fb4489f83c1bd231737f46ffcdfb1bcd4ace99c4c9f0204aee6af0d7e86da6fe0356d8669f1b11141171e956e6f39f1bd097d9a57dab750e1b717a571beac1921f1bd973c731658856c5ffffff", + "cborBytes": [ + 191, 27, 76, 21, 86, 104, 99, 172, 127, 95, 27, 86, 22, 141, 237, 20, 50, 253, 207, 27, 177, 126, 227, 249, 248, + 38, 163, 52, 27, 244, 38, 16, 251, 68, 137, 248, 60, 27, 210, 49, 115, 127, 70, 255, 205, 251, 27, 205, 74, 206, + 153, 196, 201, 240, 32, 74, 238, 106, 240, 215, 232, 109, 166, 254, 3, 86, 216, 102, 159, 27, 17, 20, 17, 113, + 233, 86, 230, 243, 159, 27, 208, 151, 217, 165, 125, 171, 117, 14, 27, 113, 122, 87, 27, 234, 193, 146, 31, 27, + 217, 115, 199, 49, 101, 136, 86, 197, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1710, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3369101103947128544" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6059576247656552162" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11998674285336100089" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14461376737517514110" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16390186376220773287" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14982347825684758686" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6276031648136839599" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15023814837192029364" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8144025361205981392" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18071422228324544581" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "181ea5cf0f7bd62326b5" + } + } + ] + }, + "cborHex": "bf1b2ec1739a91251ee01b5417f07e02f696e21ba683dab0d9127cf9a01bc8b12185ead42d7e1be375a3ab95160ba71bcfebfdf7b349409e1b5718f1883a4e41af1bd07f4ffeae12f4b41b710563eac87470d01bfaca96c52961f0454a181ea5cf0f7bd62326b5ff", + "cborBytes": [ + 191, 27, 46, 193, 115, 154, 145, 37, 30, 224, 27, 84, 23, 240, 126, 2, 246, 150, 226, 27, 166, 131, 218, 176, 217, + 18, 124, 249, 160, 27, 200, 177, 33, 133, 234, 212, 45, 126, 27, 227, 117, 163, 171, 149, 22, 11, 167, 27, 207, + 235, 253, 247, 179, 73, 64, 158, 27, 87, 24, 241, 136, 58, 78, 65, 175, 27, 208, 127, 79, 254, 174, 18, 244, 180, + 27, 113, 5, 99, 234, 200, 116, 112, 208, 27, 250, 202, 150, 197, 41, 97, 240, 69, 74, 24, 30, 165, 207, 15, 123, + 214, 35, 38, 181, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1711, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7645502356986414775" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "957107030001a404" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5359550619197369911" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5507060102079a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7028290474873674435" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10449555856415430134" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10415870461502802403" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16070203445374808428" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10537024854057403452" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7425684832535639920" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18192134040307058476" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0fefc6086b6c59e610952a1" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6a1a47e2d59646b7bf48957107030001a4041b4a60f2e45cfbee37ff475507060102079abf1b618980f30d1b5ac31b910447aff23e95f61b908c9affc45bc9e31bdf04d4e3d5d2f16c1b923b0846f78dc43c1b670d5503214af7701bfc7771860acb472c4cf0fefc6086b6c59e610952a1ffff", + "cborBytes": [ + 191, 27, 106, 26, 71, 226, 213, 150, 70, 183, 191, 72, 149, 113, 7, 3, 0, 1, 164, 4, 27, 74, 96, 242, 228, 92, + 251, 238, 55, 255, 71, 85, 7, 6, 1, 2, 7, 154, 191, 27, 97, 137, 128, 243, 13, 27, 90, 195, 27, 145, 4, 71, 175, + 242, 62, 149, 246, 27, 144, 140, 154, 255, 196, 91, 201, 227, 27, 223, 4, 212, 227, 213, 210, 241, 108, 27, 146, + 59, 8, 70, 247, 141, 196, 60, 27, 103, 13, 85, 3, 33, 74, 247, 112, 27, 252, 119, 113, 134, 10, 203, 71, 44, 76, + 240, 254, 252, 96, 134, 182, 197, 158, 97, 9, 82, 161, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1712, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8489560967325957625" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10700462718047730864" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d81a1c9adf227f" + }, + { + "_tag": "ByteArray", + "bytearray": "405742729e" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8988586945213016999" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14277818949185951017" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11584011181050784421" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5042704463288643393" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18307457857624606528" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13546571633358745578" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3837594626791533749" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16245369202281022317" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27ae21332d053a5b931a6a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3735287869587489351" + } + } + } + ] + }, + "cborHex": "bf1b75d0fab85c7c3df9d8669f1b947fae26098bbcb09f47d81a1c9adf227f45405742729effff1b7cbde033fe22aba7d8669f1bc62500afe991d52980ff1ba0c2accb60af6aa5d8669f1b45fb48fdf198af419f1bfe1127eca82607401bbbff1720b2bb2fea1b3541dffb09db6cb51be1732537c308036dffff4b27ae21332d053a5b931a6a1b33d66886e8968247ff", + "cborBytes": [ + 191, 27, 117, 208, 250, 184, 92, 124, 61, 249, 216, 102, 159, 27, 148, 127, 174, 38, 9, 139, 188, 176, 159, 71, + 216, 26, 28, 154, 223, 34, 127, 69, 64, 87, 66, 114, 158, 255, 255, 27, 124, 189, 224, 51, 254, 34, 171, 167, 216, + 102, 159, 27, 198, 37, 0, 175, 233, 145, 213, 41, 128, 255, 27, 160, 194, 172, 203, 96, 175, 106, 165, 216, 102, + 159, 27, 69, 251, 72, 253, 241, 152, 175, 65, 159, 27, 254, 17, 39, 236, 168, 38, 7, 64, 27, 187, 255, 23, 32, + 178, 187, 47, 234, 27, 53, 65, 223, 251, 9, 219, 108, 181, 27, 225, 115, 37, 55, 195, 8, 3, 109, 255, 255, 75, 39, + 174, 33, 51, 45, 5, 58, 91, 147, 26, 106, 27, 51, 214, 104, 134, 232, 150, 130, 71, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1713, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5451679325030276324" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9817807463615410431" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3770687393222978678" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1b2e7566644e6205b08bae" + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffeed8669f1b4ba841763dc55ce49f41c51b883fdbdf05f9b0ff1b34542c34c8196c764b1b2e7566644e6205b08baeffffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 238, 216, 102, 159, 27, 75, 168, 65, 118, 61, 197, 92, 228, 159, 65, + 197, 27, 136, 63, 219, 223, 5, 249, 176, 255, 27, 52, 84, 44, 52, 200, 25, 108, 118, 75, 27, 46, 117, 102, 100, + 78, 98, 5, 176, 139, 174, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1714, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d0601f8fdbb33fa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10661788421374037867" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17963452333458138391" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff5a0481d0601f8fdbb33fad8669f1b93f64814a65f4f6b9f1bf94b00b90b6f2517ffffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 245, 160, 72, 29, 6, 1, 248, 253, 187, 51, 250, 216, 102, 159, 27, + 147, 246, 72, 20, 166, 95, 79, 107, 159, 27, 249, 75, 0, 185, 11, 111, 37, 23, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1715, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5e64be2cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2" + } + } + ] + }, + "cborHex": "bf45d5e64be2cb41e2ff", + "cborBytes": [191, 69, 213, 230, 75, 226, 203, 65, 226, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1716, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18069218362524315847" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8007561064171651266" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "021c58d1915cb7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "598cafe1ba76" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79c937688cdd75489102092a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11281883467012661785" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e09135b4187a8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13264914750731645189" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "099a8b5d" + }, + { + "_tag": "ByteArray", + "bytearray": "3afb39fc8f1a0f635b0bd1" + } + ] + } + } + ] + }, + "cborHex": "bf1bfac2c25dab3a30c71b6f20925cab3340c247021c58d1915cb746598cafe1ba764c79c937688cdd75489102092a9f1b9c914d3d40a46219ff478e09135b4187a8d8669f1bb81671af6d32f1059f44099a8b5d4b3afb39fc8f1a0f635b0bd1ffffff", + "cborBytes": [ + 191, 27, 250, 194, 194, 93, 171, 58, 48, 199, 27, 111, 32, 146, 92, 171, 51, 64, 194, 71, 2, 28, 88, 209, 145, 92, + 183, 70, 89, 140, 175, 225, 186, 118, 76, 121, 201, 55, 104, 140, 221, 117, 72, 145, 2, 9, 42, 159, 27, 156, 145, + 77, 61, 64, 164, 98, 25, 255, 71, 142, 9, 19, 91, 65, 135, 168, 216, 102, 159, 27, 184, 22, 113, 175, 109, 50, + 241, 5, 159, 68, 9, 154, 139, 93, 75, 58, 251, 57, 252, 143, 26, 15, 99, 91, 11, 209, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1717, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4800766054239564606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1787079702336269776" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6333994898739689889" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16154636476518237532" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13625469371797113170" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14439700952259990331" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6da07909aab15893e5488f30" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7224220648125622809" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1675745976109683430" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b429fbf4a70b3f33e1b18ccfb855b106dd01b57e6decd2c83f9a1d8669f1be030cc48d270055c9f1bbd176433ebee8952ffff1bc8641f82e253933b9f4c6da07909aab15893e5488f301b644196676691ea191b1741721637ced2e6ffff", + "cborBytes": [ + 191, 27, 66, 159, 191, 74, 112, 179, 243, 62, 27, 24, 204, 251, 133, 91, 16, 109, 208, 27, 87, 230, 222, 205, 44, + 131, 249, 161, 216, 102, 159, 27, 224, 48, 204, 72, 210, 112, 5, 92, 159, 27, 189, 23, 100, 51, 235, 238, 137, 82, + 255, 255, 27, 200, 100, 31, 130, 226, 83, 147, 59, 159, 76, 109, 160, 121, 9, 170, 177, 88, 147, 229, 72, 143, 48, + 27, 100, 65, 150, 103, 102, 145, 234, 25, 27, 23, 65, 114, 22, 55, 206, 210, 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1718, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5044225986045594326" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11641931382508644507" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "25d328" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11396534194362054567" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15445417779694161743" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13126497365243458627" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12241985437950668270" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13242877976719748590" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "655f4d69" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12755059552055484725" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a55b9e0da9d3b3019d6a6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b076" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0ceb90dfa544533a4a9ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13151240111420192849" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13951888640344384648" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e5d7a9481923729" + } + } + ] + }, + "cborHex": "bf1b4600b0cf110acad6d8669f1ba19072e929e6689b9f4325d328ffff1b9e289f77e58af7a71bd65925a3262c4f4f1bb62aafce786ff4431ba9e444e51e8dedee1bb7c8275b26396deebf44655f4d691bb1031315593861354b6a55b9e0da9d3b3019d6a642b0764bd0ceb90dfa544533a4a9ae1bb6829733fd11b851ff1bc19f10cc5188e488487e5d7a9481923729ff", + "cborBytes": [ + 191, 27, 70, 0, 176, 207, 17, 10, 202, 214, 216, 102, 159, 27, 161, 144, 114, 233, 41, 230, 104, 155, 159, 67, 37, + 211, 40, 255, 255, 27, 158, 40, 159, 119, 229, 138, 247, 167, 27, 214, 89, 37, 163, 38, 44, 79, 79, 27, 182, 42, + 175, 206, 120, 111, 244, 67, 27, 169, 228, 68, 229, 30, 141, 237, 238, 27, 183, 200, 39, 91, 38, 57, 109, 238, + 191, 68, 101, 95, 77, 105, 27, 177, 3, 19, 21, 89, 56, 97, 53, 75, 106, 85, 185, 224, 218, 157, 59, 48, 25, 214, + 166, 66, 176, 118, 75, 208, 206, 185, 13, 250, 84, 69, 51, 164, 169, 174, 27, 182, 130, 151, 51, 253, 17, 184, 81, + 255, 27, 193, 159, 16, 204, 81, 136, 228, 136, 72, 126, 93, 122, 148, 129, 146, 55, 41, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1719, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17196274158259273559" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12167732062241112381" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4929491116906422568" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c411c8e3b372fa0842dfffd1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52f242d8c3de8dfc476d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5dfd150d08" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "836185" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2201530947373799569" + } + } + } + ] + }, + "cborHex": "bf1beea5703cb745ff57d8669f1ba8dc77d7dc03413d9f1b4469120da2a6a128ffff41274cc411c8e3b372fa0842dfffd14a52f242d8c3de8dfc476d455dfd150d08438361851b1e8d68bb803e9891ff", + "cborBytes": [ + 191, 27, 238, 165, 112, 60, 183, 69, 255, 87, 216, 102, 159, 27, 168, 220, 119, 215, 220, 3, 65, 61, 159, 27, 68, + 105, 18, 13, 162, 166, 161, 40, 255, 255, 65, 39, 76, 196, 17, 200, 227, 179, 114, 250, 8, 66, 223, 255, 209, 74, + 82, 242, 66, 216, 195, 222, 141, 252, 71, 109, 69, 93, 253, 21, 13, 8, 67, 131, 97, 133, 27, 30, 141, 104, 187, + 128, 62, 152, 145, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1720, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4563" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16274373730356487577" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f61d3f3c31cda2367957" + }, + { + "_tag": "ByteArray", + "bytearray": "2747e809ced162d9dad6" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee78efda88ac3a0244556a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5591ecdbf3a6367647fed43" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14642612291223960923" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "added51bc747bd596c37b3a0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2daf63de0e1d630824ecb5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12314794088851874784" + } + }, + { + "_tag": "ByteArray", + "bytearray": "651a9ffc" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17302464849280371592" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3657664682696741969" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e25c9a897d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9556396940936054885" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd5baff1bf" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8320626132844376144" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9770479821328447284" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3357463054765262554" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f48ac64b0adb8d2143" + } + ] + } + } + ] + }, + "cborHex": "bf424563d8669f1be1da30aeb3d8e5999f4af61d3f3c31cda23679574a2747e809ced162d9dad6ffff41934bee78efda88ac3a0244556a4ca5591ecdbf3a6367647fed43d8669f1bcb35024c8a2c3d5b80ff4cadded51bc747bd596c37b3a09f4b2daf63de0e1d630824ecb51baae6effa2c18a3e044651a9ffcff41c89f1bf01eb41ba80a0b881b32c2a2a657a1945145e25c9a897d1b849f2462c51f8865ff45fd5baff1bf9f1b7378cd621d0570501b8797b7a19b6777341b2e981adc15c806da49f48ac64b0adb8d2143ffff", + "cborBytes": [ + 191, 66, 69, 99, 216, 102, 159, 27, 225, 218, 48, 174, 179, 216, 229, 153, 159, 74, 246, 29, 63, 60, 49, 205, 162, + 54, 121, 87, 74, 39, 71, 232, 9, 206, 209, 98, 217, 218, 214, 255, 255, 65, 147, 75, 238, 120, 239, 218, 136, 172, + 58, 2, 68, 85, 106, 76, 165, 89, 30, 205, 191, 58, 99, 103, 100, 127, 237, 67, 216, 102, 159, 27, 203, 53, 2, 76, + 138, 44, 61, 91, 128, 255, 76, 173, 222, 213, 27, 199, 71, 189, 89, 108, 55, 179, 160, 159, 75, 45, 175, 99, 222, + 14, 29, 99, 8, 36, 236, 181, 27, 170, 230, 239, 250, 44, 24, 163, 224, 68, 101, 26, 159, 252, 255, 65, 200, 159, + 27, 240, 30, 180, 27, 168, 10, 11, 136, 27, 50, 194, 162, 166, 87, 161, 148, 81, 69, 226, 92, 154, 137, 125, 27, + 132, 159, 36, 98, 197, 31, 136, 101, 255, 69, 253, 91, 175, 241, 191, 159, 27, 115, 120, 205, 98, 29, 5, 112, 80, + 27, 135, 151, 183, 161, 155, 103, 119, 52, 27, 46, 152, 26, 220, 21, 200, 6, 218, 73, 244, 138, 198, 75, 10, 219, + 141, 33, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1721, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2825993081621900114" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "230417152237006239" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6965318478799411097" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3726060722882224076" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9043165925843402683" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14720652920685493811" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12541675630221209699" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ddeede79d20e68ff" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9d5cdbb7cebd84d364688e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9000538029847333508" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8895368027674519592" + } + } + ] + } + } + ] + }, + "cborHex": "bf0cd8669f1b2737f1bc27c8eb5280ff1b03329b2ddd3e6d9f41041b60a9c840ac4d97999f1b33b5a07c66ee1fccff1b7d7fc77f2ecfffbb9f1bfffffffffffffffcff1bcc4a43d687467e33d9050c9f1bae0cfb897b82306348ddeede79d20e68ffff1bfffffffffffffff29f4b9d5cdbb7cebd84d364688e1b7ce855a6b871ca841b7b72b2176be82828ffff", + "cborBytes": [ + 191, 12, 216, 102, 159, 27, 39, 55, 241, 188, 39, 200, 235, 82, 128, 255, 27, 3, 50, 155, 45, 221, 62, 109, 159, + 65, 4, 27, 96, 169, 200, 64, 172, 77, 151, 153, 159, 27, 51, 181, 160, 124, 102, 238, 31, 204, 255, 27, 125, 127, + 199, 127, 46, 207, 255, 187, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 255, 27, 204, 74, 67, 214, 135, 70, + 126, 51, 217, 5, 12, 159, 27, 174, 12, 251, 137, 123, 130, 48, 99, 72, 221, 238, 222, 121, 210, 14, 104, 255, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 75, 157, 92, 219, 183, 206, 189, 132, 211, 100, 104, 142, 27, + 124, 232, 85, 166, 184, 113, 202, 132, 27, 123, 114, 178, 23, 107, 232, 40, 40, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1722, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2881889405887659853" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3058127777498732512" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7460309040289941355" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c919311800c0332e13f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7882019250191359055" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5db7828eea79a8ffeca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16932649408391958178" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12272437389035119138" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17889401988901475942" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15439356788134168078" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3125952819721073455" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1821734105158697532" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3325644197527263529" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6357394123607536447" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8219573536043069738" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c29db6ed0f61a6ce216d20ad" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f101170700287835" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf00bf1b27fe87254fe53f4d1b2a70a702cf9117e01b6788578bb51e076b4a2c919311800c0332e13f1b6d628ebf50725c4f4ad5db7828eea79a8ffeca1beafcdaec856e4ea21baa5074c87da922221bf843ec53a8a396661bd6439d329540c60eff1b2b619d870c1af32fbf1b194819844532c23c1b2e270fc712f39929ff1b583a0045c2c8733fa01b7211ca94f50c712a4cc29db6ed0f61a6ce216d20ad1bfffffffffffffff048f1011707002878351bfffffffffffffff4d8669f1bfffffffffffffff280ffff", + "cborBytes": [ + 191, 0, 191, 27, 39, 254, 135, 37, 79, 229, 63, 77, 27, 42, 112, 167, 2, 207, 145, 23, 224, 27, 103, 136, 87, 139, + 181, 30, 7, 107, 74, 44, 145, 147, 17, 128, 12, 3, 50, 225, 63, 27, 109, 98, 142, 191, 80, 114, 92, 79, 74, 213, + 219, 120, 40, 238, 167, 154, 143, 254, 202, 27, 234, 252, 218, 236, 133, 110, 78, 162, 27, 170, 80, 116, 200, 125, + 169, 34, 34, 27, 248, 67, 236, 83, 168, 163, 150, 102, 27, 214, 67, 157, 50, 149, 64, 198, 14, 255, 27, 43, 97, + 157, 135, 12, 26, 243, 47, 191, 27, 25, 72, 25, 132, 69, 50, 194, 60, 27, 46, 39, 15, 199, 18, 243, 153, 41, 255, + 27, 88, 58, 0, 69, 194, 200, 115, 63, 160, 27, 114, 17, 202, 148, 245, 12, 113, 42, 76, 194, 157, 182, 237, 15, + 97, 166, 206, 33, 109, 32, 173, 27, 255, 255, 255, 255, 255, 255, 255, 240, 72, 241, 1, 23, 7, 0, 40, 120, 53, 27, + 255, 255, 255, 255, 255, 255, 255, 244, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1723, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8041359401815147611" + } + } + } + ] + }, + "cborHex": "bf1bffffffffffffffed1b6f98a5c56070845bff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 237, 27, 111, 152, 165, 197, 96, 112, 132, 91, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1724, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5111070380046475508" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1212" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9940858308425580492" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2307517673656188636" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b1a281a333016" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17795928750684754658" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12988062878223531047" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "170df9f59475ae" + } + } + ] + }, + "cborHex": "bf1b46ee2b6e58b0e0f44212121b89f505f66c327fcc9f1b2005f31933367edc474b1a281a3330161bf6f7d6e970b9d2e2ff1bb43ede5fc0f37c2747170df9f59475aeff", + "cborBytes": [ + 191, 27, 70, 238, 43, 110, 88, 176, 224, 244, 66, 18, 18, 27, 137, 245, 5, 246, 108, 50, 127, 204, 159, 27, 32, 5, + 243, 25, 51, 54, 126, 220, 71, 75, 26, 40, 26, 51, 48, 22, 27, 246, 247, 214, 233, 112, 185, 210, 226, 255, 27, + 180, 62, 222, 95, 192, 243, 124, 39, 71, 23, 13, 249, 245, 148, 117, 174, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1725, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "81" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf418180ff", + "cborBytes": [191, 65, 129, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1726, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "639641131783419534" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14789398748042858533" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4226110279576848028" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7ebf983ace6eb4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7511802801554373717" + } + }, + { + "_tag": "ByteArray", + "bytearray": "673b5af96d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "893867532807345761" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5077063279801504932" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "286114645307788114" + } + }, + { + "_tag": "ByteArray", + "bytearray": "721cb8ebe5eca00a03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13439272229187158851" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3046086579062360571" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12819928422039326279" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4944970322030118944" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1dff26d7f54" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15689397585971659370" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0138a7d426b33" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18229862883785578908" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6010881642968116734" + } + } + } + ] + }, + "cborHex": "bf1b08e076386badf68e1bcd3e7fcdc2b390251b3aa628e88bce069c9f477ebf983ace6eb41b683f48d9496ebc5545673b5af96d1b0c67a7c9013c9661ff1b46755a274ebf94a49f1b03f87bc1069b8b5249721cb8ebe5eca00a031bba81e2e35c7903431b2a45df9ad418c9fbff1bb1e988fa19968e47bf1b44a0104eed74482046a1dff26d7f541bd9bbeffa7bb6426a47b0138a7d426b33ff1bfcfd7bb4f41e199c1b536af101dc07edfeff", + "cborBytes": [ + 191, 27, 8, 224, 118, 56, 107, 173, 246, 142, 27, 205, 62, 127, 205, 194, 179, 144, 37, 27, 58, 166, 40, 232, 139, + 206, 6, 156, 159, 71, 126, 191, 152, 58, 206, 110, 180, 27, 104, 63, 72, 217, 73, 110, 188, 85, 69, 103, 59, 90, + 249, 109, 27, 12, 103, 167, 201, 1, 60, 150, 97, 255, 27, 70, 117, 90, 39, 78, 191, 148, 164, 159, 27, 3, 248, + 123, 193, 6, 155, 139, 82, 73, 114, 28, 184, 235, 229, 236, 160, 10, 3, 27, 186, 129, 226, 227, 92, 121, 3, 67, + 27, 42, 69, 223, 154, 212, 24, 201, 251, 255, 27, 177, 233, 136, 250, 25, 150, 142, 71, 191, 27, 68, 160, 16, 78, + 237, 116, 72, 32, 70, 161, 223, 242, 109, 127, 84, 27, 217, 187, 239, 250, 123, 182, 66, 106, 71, 176, 19, 138, + 125, 66, 107, 51, 255, 27, 252, 253, 123, 180, 244, 30, 25, 156, 27, 83, 106, 241, 1, 220, 7, 237, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1727, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12384871243511937233" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12579696522606861299" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8fe73be421" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a04060105071a66013403" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3891e621b94ec18ccbb750" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f511" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + } + ] + }, + "cborHex": "bf41009f1babdfe6c7327ab8d11bae940f565432dbf3458fe73be421ff4b1a04060105071a66013403415f4b3891e621b94ec18ccbb7508042f51114ff", + "cborBytes": [ + 191, 65, 0, 159, 27, 171, 223, 230, 199, 50, 122, 184, 209, 27, 174, 148, 15, 86, 84, 50, 219, 243, 69, 143, 231, + 59, 228, 33, 255, 75, 26, 4, 6, 1, 5, 7, 26, 102, 1, 52, 3, 65, 95, 75, 56, 145, 230, 33, 185, 78, 193, 140, 203, + 183, 80, 128, 66, 245, 17, 20, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1728, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9420" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6433073472612285203" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16213937067070609323" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b7012c95532031aee98d153" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15584530919289076360" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9731720715266434413" + } + } + ] + } + } + ] + }, + "cborHex": "bf429420d8669f1b5946de3d4d0b3b139f1be10379db7d4857ab4c4b7012c95532031aee98d1531bd847604cfb513a881b870e046dfec4256dffffff", + "cborBytes": [ + 191, 66, 148, 32, 216, 102, 159, 27, 89, 70, 222, 61, 77, 11, 59, 19, 159, 27, 225, 3, 121, 219, 125, 72, 87, 171, + 76, 75, 112, 18, 201, 85, 50, 3, 26, 238, 152, 209, 83, 27, 216, 71, 96, 76, 251, 81, 58, 136, 27, 135, 14, 4, + 109, 254, 196, 37, 109, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1729, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9629992857454590078" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7681296345064913724" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12959338699053600281" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5969453789593592903" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f89fc7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12700171873577675325" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16023023651894290603" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b9d798e483f26397ce392e" + } + ] + } + } + ] + }, + "cborHex": "bf1b85a49b7b6221387e9f1b6a9972541e19bb3cff1bb3d8d1e2a1100e199f1b52d7c29817d5e44743f89fc71bb0401307d7012a3d1bde5d371e26d768ab4bb9d798e483f26397ce392effff", + "cborBytes": [ + 191, 27, 133, 164, 155, 123, 98, 33, 56, 126, 159, 27, 106, 153, 114, 84, 30, 25, 187, 60, 255, 27, 179, 216, 209, + 226, 161, 16, 14, 25, 159, 27, 82, 215, 194, 152, 23, 213, 228, 71, 67, 248, 159, 199, 27, 176, 64, 19, 7, 215, 1, + 42, 61, 27, 222, 93, 55, 30, 38, 215, 104, 171, 75, 185, 215, 152, 228, 131, 242, 99, 151, 206, 57, 46, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1730, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4253" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18076710532218424618" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01c5b9d66ed0b5d99aeb0e" + }, + { + "_tag": "ByteArray", + "bytearray": "a2a2cacfd8d9" + }, + { + "_tag": "ByteArray", + "bytearray": "8c8d4e62bbbb03eedf6eb4e8" + }, + { + "_tag": "ByteArray", + "bytearray": "85314b096116b5abf2" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76b09c172dde3575e118" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "729b0edbd7f9eccbd4f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7b67bcbe95982939d7800" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3141083158309381278" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5e2afc7dc5aac28b16d0" + }, + { + "_tag": "ByteArray", + "bytearray": "318b9b25169a0070bd" + } + ] + } + } + ] + }, + "cborHex": "bf4242539f1bfadd60745c710d2a4b01c5b9d66ed0b5d99aeb0e46a2a2cacfd8d94c8c8d4e62bbbb03eedf6eb4e84985314b096116b5abf2ff4a76b09c172dde3575e1184a729b0edbd7f9eccbd4f24be7b67bcbe95982939d7800d8669f1b2b975e7d84fe249e9f4a5e2afc7dc5aac28b16d049318b9b25169a0070bdffffff", + "cborBytes": [ + 191, 66, 66, 83, 159, 27, 250, 221, 96, 116, 92, 113, 13, 42, 75, 1, 197, 185, 214, 110, 208, 181, 217, 154, 235, + 14, 70, 162, 162, 202, 207, 216, 217, 76, 140, 141, 78, 98, 187, 187, 3, 238, 223, 110, 180, 232, 73, 133, 49, 75, + 9, 97, 22, 181, 171, 242, 255, 74, 118, 176, 156, 23, 45, 222, 53, 117, 225, 24, 74, 114, 155, 14, 219, 215, 249, + 236, 203, 212, 242, 75, 231, 182, 123, 203, 233, 89, 130, 147, 157, 120, 0, 216, 102, 159, 27, 43, 151, 94, 125, + 132, 254, 36, 158, 159, 74, 94, 42, 252, 125, 197, 170, 194, 139, 22, 208, 73, 49, 139, 155, 37, 22, 154, 0, 112, + 189, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1731, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b91" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "575a13b7f992" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42835d66c1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19df56" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f900918a8054104971" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bbbfae1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f92b33d026828b" + } + } + ] + } + } + ] + }, + "cborHex": "bf422b9146575a13b7f9924542835d66c1bf4319df5649f900918a8054104971446bbbfae147f92b33d026828bffff", + "cborBytes": [ + 191, 66, 43, 145, 70, 87, 90, 19, 183, 249, 146, 69, 66, 131, 93, 102, 193, 191, 67, 25, 223, 86, 73, 249, 0, 145, + 138, 128, 84, 16, 73, 113, 68, 107, 187, 250, 225, 71, 249, 43, 51, 208, 38, 130, 139, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1732, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "84b5f2f2" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc0caa75" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "057b" + } + } + ] + }, + "cborHex": "bf4484b5f2f28044fc0caa7542057bff", + "cborBytes": [191, 68, 132, 181, 242, 242, 128, 68, 252, 12, 170, 117, 66, 5, 123, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1733, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3800352203827813158" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "329819953151196637" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10693175681041275281" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3779905174314866856" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1614803373203032000" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9791954954676388591" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12348349039614235673" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a1" + }, + { + "_tag": "ByteArray", + "bytearray": "2b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16129096539886967737" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17300286521030234748" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11582934045529331726" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "48e2337e33f7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18418286100128379737" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15259406688789693069" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11241923260484727994" + } + }, + { + "_tag": "ByteArray", + "bytearray": "258c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17500443191754257073" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4036260812695452993" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "366da0b2720b69" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14823633939955510221" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18133611674640255593" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10008802001773309378" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6612509187570798174" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11953249812789607601" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13793345378432003455" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b34bd9031ba879b26d8669f1b0493c17ffb69bddd80ff1b9465caa0854f9991d8669f1b3474ebbaafb2d8a89f1b1668ef1cc1de87c01b87e40326ba1cc2efffff1bab5e2606f4be14199f41a1412b1bdfd60fd8eff1dbb9ff1bf016f6ee167c527cd8669f1ba0bed925388dd80e9f4648e2337e33f71bff9ae59fb1aab3591bd3c44d892087828d1b9c0355a4a564b4ba42258cffff1bf2de105c906a72b1d8669f1b3803add2f98abd419f47366da0b2720b691bcdb820878778ebcdffff1bfba787bdf9cf0a69d8669f1b8ae6686446eaadc29f1b5bc45a124f2a0e5e1ba5e2795faad43cb11bbf6bce8a99b72d7fffffff", + "cborBytes": [ + 191, 27, 52, 189, 144, 49, 186, 135, 155, 38, 216, 102, 159, 27, 4, 147, 193, 127, 251, 105, 189, 221, 128, 255, + 27, 148, 101, 202, 160, 133, 79, 153, 145, 216, 102, 159, 27, 52, 116, 235, 186, 175, 178, 216, 168, 159, 27, 22, + 104, 239, 28, 193, 222, 135, 192, 27, 135, 228, 3, 38, 186, 28, 194, 239, 255, 255, 27, 171, 94, 38, 6, 244, 190, + 20, 25, 159, 65, 161, 65, 43, 27, 223, 214, 15, 216, 239, 241, 219, 185, 255, 27, 240, 22, 246, 238, 22, 124, 82, + 124, 216, 102, 159, 27, 160, 190, 217, 37, 56, 141, 216, 14, 159, 70, 72, 226, 51, 126, 51, 247, 27, 255, 154, + 229, 159, 177, 170, 179, 89, 27, 211, 196, 77, 137, 32, 135, 130, 141, 27, 156, 3, 85, 164, 165, 100, 180, 186, + 66, 37, 140, 255, 255, 27, 242, 222, 16, 92, 144, 106, 114, 177, 216, 102, 159, 27, 56, 3, 173, 210, 249, 138, + 189, 65, 159, 71, 54, 109, 160, 178, 114, 11, 105, 27, 205, 184, 32, 135, 135, 120, 235, 205, 255, 255, 27, 251, + 167, 135, 189, 249, 207, 10, 105, 216, 102, 159, 27, 138, 230, 104, 100, 70, 234, 173, 194, 159, 27, 91, 196, 90, + 18, 79, 42, 14, 94, 27, 165, 226, 121, 95, 170, 212, 60, 177, 27, 191, 107, 206, 138, 153, 183, 45, 127, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1734, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09980d2b95613efa76" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c" + } + } + ] + }, + "cborHex": "bf4909980d2b95613efa76417cff", + "cborBytes": [191, 73, 9, 152, 13, 43, 149, 97, 62, 250, 118, 65, 124, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1735, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f111d6a1cd38f9ce538df3c3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17029411175649242554" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14836848760066408220" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9077228789255055272" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2328206630080629628" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c675860676f2541" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3456b5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2054938327646196978" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c81f7ed815f1ce5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9773781253495664121" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b347461e8f133" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7689fc" + } + } + ] + } + } + ] + }, + "cborHex": "bf05d8669f1bfffffffffffffff49f4cf111d6a1cd38f9ce538df3c31bec549f3d12a3edba1bcde7135699f3ff1cffff0e1b7df8cb7d987f27a81b204f73983daa4b7c801bfffffffffffffffabf480c675860676f25414158433456b51b1c849b857eafd4f2483c81f7ed815f1ce51b87a372442efb2df9475b347461e8f133437689fcffff", + "cborBytes": [ + 191, 5, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 76, 241, 17, 214, 161, 205, 56, 249, 206, + 83, 141, 243, 195, 27, 236, 84, 159, 61, 18, 163, 237, 186, 27, 205, 231, 19, 86, 153, 243, 255, 28, 255, 255, 14, + 27, 125, 248, 203, 125, 152, 127, 39, 168, 27, 32, 79, 115, 152, 61, 170, 75, 124, 128, 27, 255, 255, 255, 255, + 255, 255, 255, 250, 191, 72, 12, 103, 88, 96, 103, 111, 37, 65, 65, 88, 67, 52, 86, 181, 27, 28, 132, 155, 133, + 126, 175, 212, 242, 72, 60, 129, 247, 237, 129, 95, 28, 229, 27, 135, 163, 114, 68, 46, 251, 45, 249, 71, 91, 52, + 116, 97, 232, 241, 51, 67, 118, 137, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1736, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5489301073009637208" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30" + } + } + ] + }, + "cborHex": "bf01bf410008ff1b4c2dea3e09e8f7584130ff", + "cborBytes": [191, 1, 191, 65, 0, 8, 255, 27, 76, 45, 234, 62, 9, 232, 247, 88, 65, 48, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1737, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7cefaf7c2ff00ec03e89" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16970634045648204833" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2727658211855594218" + } + } + } + ] + }, + "cborHex": "bf041bfffffffffffffff4054a7cefaf7c2ff00ec03e891beb83cdc01002f4211b25da96b1225472eaff", + "cborBytes": [ + 191, 4, 27, 255, 255, 255, 255, 255, 255, 255, 244, 5, 74, 124, 239, 175, 124, 47, 240, 14, 192, 62, 137, 27, 235, + 131, 205, 192, 16, 2, 244, 33, 27, 37, 218, 150, 177, 34, 84, 114, 234, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1738, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5776603974480702038" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1bac607bc413b55834" + }, + { + "_tag": "ByteArray", + "bytearray": "b52d54d223eb67" + }, + { + "_tag": "ByteArray", + "bytearray": "0a1e065009cc00" + }, + { + "_tag": "ByteArray", + "bytearray": "0e2b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7944069339220488362" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13021673155583336602" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12270956504695980542" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f2530ed8fea50b85a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2746964946634812908" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6409b03d65" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8439673002112138971" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9379890419681300705" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17628886276257687546" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0a7306" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10125570316596483211" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e9815040504fb051cc029" + } + } + ] + }, + "cborHex": "bf1b502a9eb583082a569f491bac607bc413b5583447b52d54d223eb67470a1e065009cc00420e2bff1b6e3f00f97b4f30aad8669f1bb4b646be43c8e09a80ff1baa4b31ed3cac41fed8669f1bfffffffffffffff09f49f2530ed8fea50b85a71b261f2e109e9e2dec456409b03d651b751fbde14f593edb1b822c10a3d13190e1ffff1bf4a662aa9a1927fa9f430a7306ff1bfffffffffffffff01b8c85408e2cf9148b1bffffffffffffffff4b5e9815040504fb051cc029ff", + "cborBytes": [ + 191, 27, 80, 42, 158, 181, 131, 8, 42, 86, 159, 73, 27, 172, 96, 123, 196, 19, 181, 88, 52, 71, 181, 45, 84, 210, + 35, 235, 103, 71, 10, 30, 6, 80, 9, 204, 0, 66, 14, 43, 255, 27, 110, 63, 0, 249, 123, 79, 48, 170, 216, 102, 159, + 27, 180, 182, 70, 190, 67, 200, 224, 154, 128, 255, 27, 170, 75, 49, 237, 60, 172, 65, 254, 216, 102, 159, 27, + 255, 255, 255, 255, 255, 255, 255, 240, 159, 73, 242, 83, 14, 216, 254, 165, 11, 133, 167, 27, 38, 31, 46, 16, + 158, 158, 45, 236, 69, 100, 9, 176, 61, 101, 27, 117, 31, 189, 225, 79, 89, 62, 219, 27, 130, 44, 16, 163, 209, + 49, 144, 225, 255, 255, 27, 244, 166, 98, 170, 154, 25, 39, 250, 159, 67, 10, 115, 6, 255, 27, 255, 255, 255, 255, + 255, 255, 255, 240, 27, 140, 133, 64, 142, 44, 249, 20, 139, 27, 255, 255, 255, 255, 255, 255, 255, 255, 75, 94, + 152, 21, 4, 5, 4, 251, 5, 28, 192, 41, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1739, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5006489827759944406" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "439509712290878315" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4444900033778498974" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d14b9f19d6dd9d91e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8121607106401959743" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15991572144938970824" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10658163900113769620" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7591038438831756569" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c71c05f56b5f178259" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16942925956267769108" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1775851820962497982" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a604861b" + } + } + ] + }, + "cborHex": "bf011b457a9ff90b3cf2d61b061973c1346e936b801b3daf7507d77d3d9e9f49d14b9f19d6dd9d91e51b70b5bea216607f3fff1bdded7a238b1e6ec89f1b93e96799082c54941b6958c93db6e7151949c71c05f56b5f178259ff1beb215d63c715fd149f1b18a517d2823345beff1bffffffffffffffec44a604861bff", + "cborBytes": [ + 191, 1, 27, 69, 122, 159, 249, 11, 60, 242, 214, 27, 6, 25, 115, 193, 52, 110, 147, 107, 128, 27, 61, 175, 117, 7, + 215, 125, 61, 158, 159, 73, 209, 75, 159, 25, 214, 221, 157, 145, 229, 27, 112, 181, 190, 162, 22, 96, 127, 63, + 255, 27, 221, 237, 122, 35, 139, 30, 110, 200, 159, 27, 147, 233, 103, 153, 8, 44, 84, 148, 27, 105, 88, 201, 61, + 182, 231, 21, 25, 73, 199, 28, 5, 245, 107, 95, 23, 130, 89, 255, 27, 235, 33, 93, 99, 199, 21, 253, 20, 159, 27, + 24, 165, 23, 210, 130, 51, 69, 190, 255, 27, 255, 255, 255, 255, 255, 255, 255, 236, 68, 166, 4, 134, 27, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1740, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d05ba20495650" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "211e50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b0bbddc91" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38403a5e76b03b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8980940944501524112" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43ba159918835c5d39688832" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3876da4202cc384c5567b7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4972ab497efba9aa3ae6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d8c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a5bb4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17926996490538293445" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c0a3f9cf0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11586891487641820926" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf474d05ba20495650bf43211e50458b0bbddc914738403a5e76b03b1b7ca2b634b9c646904c43ba159918835c5d396888324b3876da4202cc384c5567b74a4972ab497efba9aa3ae6425d8c438a5bb41bf8c97c53ac3598c5459c0a3f9cf01ba0cce86b03e35efeffff", + "cborBytes": [ + 191, 71, 77, 5, 186, 32, 73, 86, 80, 191, 67, 33, 30, 80, 69, 139, 11, 189, 220, 145, 71, 56, 64, 58, 94, 118, + 176, 59, 27, 124, 162, 182, 52, 185, 198, 70, 144, 76, 67, 186, 21, 153, 24, 131, 92, 93, 57, 104, 136, 50, 75, + 56, 118, 218, 66, 2, 204, 56, 76, 85, 103, 183, 74, 73, 114, 171, 73, 126, 251, 169, 170, 58, 230, 66, 93, 140, + 67, 138, 91, 180, 27, 248, 201, 124, 83, 172, 53, 152, 197, 69, 156, 10, 63, 156, 240, 27, 160, 204, 232, 107, 3, + 227, 94, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1741, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4290b02ee8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8789851355862876530" + } + }, + { + "_tag": "ByteArray", + "bytearray": "925ca0fa7694bf" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ec4eb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3684213528048661949" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bc42294a4a6d" + }, + { + "_tag": "ByteArray", + "bytearray": "e156fd895d517e6f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bed475" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a2e904a9893d20a0dd23c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15583121170974336375" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c6bc872f12c55ade859e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0b12dc51841580e50b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77f2" + } + } + ] + }, + "cborHex": "bf454290b02ee89f1b79fbd33cceb1417247925ca0fa7694bfff439ec4ebd8669f1b3320f4af180775bd9f46bc42294a4a6d48e156fd895d517e6fffff43bed475bf4b8a2e904a9893d20a0dd23c1bd8425e245fcb65774b9c6bc872f12c55ade859e241abff4ad0b12dc51841580e50b34277f2ff", + "cborBytes": [ + 191, 69, 66, 144, 176, 46, 232, 159, 27, 121, 251, 211, 60, 206, 177, 65, 114, 71, 146, 92, 160, 250, 118, 148, + 191, 255, 67, 158, 196, 235, 216, 102, 159, 27, 51, 32, 244, 175, 24, 7, 117, 189, 159, 70, 188, 66, 41, 74, 74, + 109, 72, 225, 86, 253, 137, 93, 81, 126, 111, 255, 255, 67, 190, 212, 117, 191, 75, 138, 46, 144, 74, 152, 147, + 210, 10, 13, 210, 60, 27, 216, 66, 94, 36, 95, 203, 101, 119, 75, 156, 107, 200, 114, 241, 44, 85, 173, 232, 89, + 226, 65, 171, 255, 74, 208, 177, 45, 197, 24, 65, 88, 14, 80, 179, 66, 119, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1742, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "073d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "12f82ee47eaa0e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12992320504714921189" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b1" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11158301105101211734" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c5057b" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6419115f88ba26" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "620361603628256928" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c34ba9e35d04a4bf2cc487" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd822511033518" + } + } + ] + }, + "cborHex": "bf42073d9f4103ff4712f82ee47eaa0ed8669f1bb44dfea9ab8e84e59f41b1ffff414ed8669f1b9ada3fbc626808569f43c5057bffff476419115f88ba261b089bf797788dcea04bc34ba9e35d04a4bf2cc48747cd822511033518ff", + "cborBytes": [ + 191, 66, 7, 61, 159, 65, 3, 255, 71, 18, 248, 46, 228, 126, 170, 14, 216, 102, 159, 27, 180, 77, 254, 169, 171, + 142, 132, 229, 159, 65, 177, 255, 255, 65, 78, 216, 102, 159, 27, 154, 218, 63, 188, 98, 104, 8, 86, 159, 67, 197, + 5, 123, 255, 255, 71, 100, 25, 17, 95, 136, 186, 38, 27, 8, 155, 247, 151, 120, 141, 206, 160, 75, 195, 75, 169, + 227, 93, 4, 164, 191, 44, 196, 135, 71, 205, 130, 37, 17, 3, 53, 24, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1743, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2dc15b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "ByteArray", + "bytearray": "07fc8105" + }, + { + "_tag": "ByteArray", + "bytearray": "de5707edb6cf95a5" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34fa03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00fc760280579602c379" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92672c02" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14714384446992572550" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12314232253217776742" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f103" + }, + { + "_tag": "ByteArray", + "bytearray": "027c33fd4a0207f8" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aed08a72b17a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb0700" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0405" + }, + { + "_tag": "ByteArray", + "bytearray": "b5c54502e32fb0208970" + } + ] + } + } + ] + }, + "cborHex": "bf432dc15b9f014407fc810548de5707edb6cf95a5ff4334fa034a00fc760280579602c3794492672c029f1bcc33feb1c38660861baae4f0fd9eb4246642f10348027c33fd4a0207f8ff46aed08a72b17ad905058043fb07009f4204054ab5c54502e32fb0208970ffff", + "cborBytes": [ + 191, 67, 45, 193, 91, 159, 1, 68, 7, 252, 129, 5, 72, 222, 87, 7, 237, 182, 207, 149, 165, 255, 67, 52, 250, 3, + 74, 0, 252, 118, 2, 128, 87, 150, 2, 195, 121, 68, 146, 103, 44, 2, 159, 27, 204, 51, 254, 177, 195, 134, 96, 134, + 27, 170, 228, 240, 253, 158, 180, 36, 102, 66, 241, 3, 72, 2, 124, 51, 253, 74, 2, 7, 248, 255, 70, 174, 208, 138, + 114, 177, 122, 217, 5, 5, 128, 67, 251, 7, 0, 159, 66, 4, 5, 74, 181, 197, 69, 2, 227, 47, 176, 32, 137, 112, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1744, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10901817617999432795" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5e163" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11245574364135244768" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "552866225237412598" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11845709679002969726" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5047066340671256811" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dab258" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7080904847284634437" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2220930390844026198" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5435b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14291951972464638348" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18301883532150801869" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b974b095cfef38c5b43a5e1631b9c104e4d758543e01b07ac2ce713964af61ba4646a311960e67ebf1b460ac818a98a78eb43dab2581b62446d713ebe03451b1ed2546c6920ad5643f5435b4127ff1bc6573698d1b2b98c9f1bfdfd5a1ade6b85cdffff", + "cborBytes": [ + 191, 27, 151, 75, 9, 92, 254, 243, 140, 91, 67, 165, 225, 99, 27, 156, 16, 78, 77, 117, 133, 67, 224, 27, 7, 172, + 44, 231, 19, 150, 74, 246, 27, 164, 100, 106, 49, 25, 96, 230, 126, 191, 27, 70, 10, 200, 24, 169, 138, 120, 235, + 67, 218, 178, 88, 27, 98, 68, 109, 113, 62, 190, 3, 69, 27, 30, 210, 84, 108, 105, 32, 173, 86, 67, 245, 67, 91, + 65, 39, 255, 27, 198, 87, 54, 152, 209, 178, 185, 140, 159, 27, 253, 253, 90, 26, 222, 107, 133, 205, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1745, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17536135709923150280" + } + } + } + ] + }, + "cborHex": "bf061bf35cde848b0309c8ff", + "cborBytes": [191, 6, 27, 243, 92, 222, 132, 139, 3, 9, 200, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1746, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9553607116896743317" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "48961cbf9aa712a76e" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10140324162529692668" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15259513831291937034" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18304031353178189011" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58d2729bb009f60d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11755527098603448805" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b84953b0e3e462f959f4948961cbf9aa712a76eff1b8cb9ab199ee48bfc9f1bd3c4aefb2f50e10a1bfe04fb896bcc6cd3ff4858d2729bb009f60d9f1ba324059cdbbca9e5ffff", + "cborBytes": [ + 191, 27, 132, 149, 59, 14, 62, 70, 47, 149, 159, 73, 72, 150, 28, 191, 154, 167, 18, 167, 110, 255, 27, 140, 185, + 171, 25, 158, 228, 139, 252, 159, 27, 211, 196, 174, 251, 47, 80, 225, 10, 27, 254, 4, 251, 137, 107, 204, 108, + 211, 255, 72, 88, 210, 114, 155, 176, 9, 246, 13, 159, 27, 163, 36, 5, 156, 219, 188, 169, 229, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1747, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14393779613781831007" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9b61" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "52413547648103077" + } + } + ] + } + } + ] + }, + "cborHex": "bf099f1bc7c0fa4c16b9ad5fff149f429b611b00ba35d808fbb2a5ffff", + "cborBytes": [ + 191, 9, 159, 27, 199, 192, 250, 76, 22, 185, 173, 95, 255, 20, 159, 66, 155, 97, 27, 0, 186, 53, 216, 8, 251, 178, + 165, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1748, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14249237378456779519" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17903974234163505995" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0406fb06756c5eff6f068e" + } + } + ] + }, + "cborHex": "bf1bc5bf75e667227affbf111bf877b1b4e70feb4b1bffffffffffffffec06ff1bffffffffffffffeb4b0406fb06756c5eff6f068eff", + "cborBytes": [ + 191, 27, 197, 191, 117, 230, 103, 34, 122, 255, 191, 17, 27, 248, 119, 177, 180, 231, 15, 235, 75, 27, 255, 255, + 255, 255, 255, 255, 255, 236, 6, 255, 27, 255, 255, 255, 255, 255, 255, 255, 235, 75, 4, 6, 251, 6, 117, 108, 94, + 255, 111, 6, 142, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1749, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5216011105569041560" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12772444041400952876" + } + }, + { + "_tag": "ByteArray", + "bytearray": "12691400" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6655fdf13f4a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17175713350378802085" + } + } + ] + } + } + ] + }, + "cborHex": "bf11d8669f1b4862fe7703ef6c989f1bb140d62f3142282c441269140006466655fdf13f4a1bee5c644a95434ba5ffffff", + "cborBytes": [ + 191, 17, 216, 102, 159, 27, 72, 98, 254, 119, 3, 239, 108, 152, 159, 27, 177, 64, 214, 47, 49, 66, 40, 44, 68, 18, + 105, 20, 0, 6, 70, 102, 85, 253, 241, 63, 74, 27, 238, 92, 100, 74, 149, 67, 75, 165, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1750, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "47dd05ff040203" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6965276168174969949" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4354f550d8d05d77a1e6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15168497179429240354" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9923755927589920775" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15291537678372353310" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17972105113300882091" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16709356440375865112" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a75" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffd284f9768274a44e70" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4747dd05ff040203bf1b60a9a1c57690245d4a4354f550d8d05d77a1e61bd28153d18c64fe221b89b8437015aca0071bd43674801ce2b51e1bf969be615847d2ab1be7e38f270dfd2f18422a75ff4affd284f9768274a44e70a0ff", + "cborBytes": [ + 191, 71, 71, 221, 5, 255, 4, 2, 3, 191, 27, 96, 169, 161, 197, 118, 144, 36, 93, 74, 67, 84, 245, 80, 216, 208, + 93, 119, 161, 230, 27, 210, 129, 83, 209, 140, 100, 254, 34, 27, 137, 184, 67, 112, 21, 172, 160, 7, 27, 212, 54, + 116, 128, 28, 226, 181, 30, 27, 249, 105, 190, 97, 88, 71, 210, 171, 27, 231, 227, 143, 39, 13, 253, 47, 24, 66, + 42, 117, 255, 74, 255, 210, 132, 249, 118, 130, 116, 164, 78, 112, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1751, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "129498481050206642" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bebd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14845441621281294658" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14779791008395043712" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7849911933271923853" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e400" + } + ] + } + } + ] + }, + "cborHex": "bf1b01cc122eb1f341b242bebd1bce059a80024549421bcd1c5d9d8de623801bffffffffffffffedd8669f1b6cf07d500cc5dc8d9f42e400ffffff", + "cborBytes": [ + 191, 27, 1, 204, 18, 46, 177, 243, 65, 178, 66, 190, 189, 27, 206, 5, 154, 128, 2, 69, 73, 66, 27, 205, 28, 93, + 157, 141, 230, 35, 128, 27, 255, 255, 255, 255, 255, 255, 255, 237, 216, 102, 159, 27, 108, 240, 125, 80, 12, 197, + 220, 141, 159, 66, 228, 0, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1752, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "605d050b5d87" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17683132447232237273" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3410087172380211997" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5ff4cf034ca" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11665578195825708952" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "99b93dc38e341a61917e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e438cb86f68938821796" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae84d7799b" + } + } + ] + }, + "cborHex": "bf0d9f46605d050b5d871bf5671b4581761ed91b2f53103742d6bb1d46f5ff4cf034caff1ba1e4758fedbbcf989f4a99b93dc38e341a61917eff4ae438cb86f6893882179645ae84d7799bff", + "cborBytes": [ + 191, 13, 159, 70, 96, 93, 5, 11, 93, 135, 27, 245, 103, 27, 69, 129, 118, 30, 217, 27, 47, 83, 16, 55, 66, 214, + 187, 29, 70, 245, 255, 76, 240, 52, 202, 255, 27, 161, 228, 117, 143, 237, 187, 207, 152, 159, 74, 153, 185, 61, + 195, 142, 52, 26, 97, 145, 126, 255, 74, 228, 56, 203, 134, 246, 137, 56, 130, 23, 150, 69, 174, 132, 215, 121, + 155, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1753, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "351d63940c5c04" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4234646918056181546" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff10" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14015764536460216607" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9762718974354981071" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5812784893303304285" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4081d0a9" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d42e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec541416" + } + } + ] + }, + "cborHex": "bf47351d63940c5c049f1b3ac47cef93f0ff2a42ff101bc281ff96533a891f1b877c252e9c6500cf1b50ab29102119b05dff41579f444081d0a9ff42d42e44ec541416ff", + "cborBytes": [ + 191, 71, 53, 29, 99, 148, 12, 92, 4, 159, 27, 58, 196, 124, 239, 147, 240, 255, 42, 66, 255, 16, 27, 194, 129, + 255, 150, 83, 58, 137, 31, 27, 135, 124, 37, 46, 156, 101, 0, 207, 27, 80, 171, 41, 16, 33, 25, 176, 93, 255, 65, + 87, 159, 68, 64, 129, 208, 169, 255, 66, 212, 46, 68, 236, 84, 20, 22, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1754, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8906ae" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4256c194ea1a7300ad75" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c2272f559" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bac8333f8ab906a91d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18297395195284453327" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bfc7ee690bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5999385829262151554" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21355334fc8eb8357d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8aefd828f1f9220" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14523835539011889285" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eea1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7277850342321210700" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf438906aebf4a4256c194ea1a7300ad75454c2272f5594a8bac8333f8ab906a91d91bfded67fc81de77cf469bfc7ee690bf1b534219a027aecf8241a44921355334fc8eb8357d48d8aefd828f1f92201bc98f0778deff688542eea11b65001e539e82c54cffff", + "cborBytes": [ + 191, 67, 137, 6, 174, 191, 74, 66, 86, 193, 148, 234, 26, 115, 0, 173, 117, 69, 76, 34, 114, 245, 89, 74, 139, + 172, 131, 51, 248, 171, 144, 106, 145, 217, 27, 253, 237, 103, 252, 129, 222, 119, 207, 70, 155, 252, 126, 230, + 144, 191, 27, 83, 66, 25, 160, 39, 174, 207, 130, 65, 164, 73, 33, 53, 83, 52, 252, 142, 184, 53, 125, 72, 216, + 174, 253, 130, 143, 31, 146, 32, 27, 201, 143, 7, 120, 222, 255, 104, 133, 66, 238, 161, 27, 101, 0, 30, 83, 158, + 130, 197, 76, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1755, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15484033800663710644" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4960932826770404312" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ebb6ba9c28f50eb1a020156" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11107604426177981806" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6ad86" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14835379925614632442" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b653cf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14844388443143736689" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f9f7a99cdbaa80095b712" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bd6e256b42ab3bbb4bf1b44d8c61f2e3973d84c8ebb6ba9c28f50eb1a0201561b9a26235fffe52d6e43d6ad861bcde1db70ee389dfa43b653cf1bce01dca3dd7f0d714b2f9f7a99cdbaa80095b712ffff", + "cborBytes": [ + 191, 27, 214, 226, 86, 180, 42, 179, 187, 180, 191, 27, 68, 216, 198, 31, 46, 57, 115, 216, 76, 142, 187, 107, + 169, 194, 143, 80, 235, 26, 2, 1, 86, 27, 154, 38, 35, 95, 255, 229, 45, 110, 67, 214, 173, 134, 27, 205, 225, + 219, 112, 238, 56, 157, 250, 67, 182, 83, 207, 27, 206, 1, 220, 163, 221, 127, 13, 113, 75, 47, 159, 122, 153, + 205, 186, 168, 0, 149, 183, 18, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1756, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6232502883772259638" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15727497086365555630" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3703724325768030951" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1b0fb8ea8d50b2dd4" + }, + { + "_tag": "ByteArray", + "bytearray": "80a80e8d526b4181fe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1163102816294052453" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7663736806093283083" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3149483620501814037" + } + } + } + ] + }, + "cborHex": "bf09d8669f1bfffffffffffffff980ff1b567e4c5a00d7dd36d8669f1bda434b45aecf5bae9f1b336645a6af606ae749c1b0fb8ea8d50b2dd44980a80e8d526b4181fe1b10242bd95a76a265ffff1b6a5b10055b46df0b1b2bb536aa89ebfb15ff", + "cborBytes": [ + 191, 9, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 128, 255, 27, 86, 126, 76, 90, 0, 215, 221, 54, + 216, 102, 159, 27, 218, 67, 75, 69, 174, 207, 91, 174, 159, 27, 51, 102, 69, 166, 175, 96, 106, 231, 73, 193, 176, + 251, 142, 168, 213, 11, 45, 212, 73, 128, 168, 14, 141, 82, 107, 65, 129, 254, 27, 16, 36, 43, 217, 90, 118, 162, + 101, 255, 255, 27, 106, 91, 16, 5, 91, 70, 223, 11, 27, 43, 181, 54, 170, 137, 235, 251, 21, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1757, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6314456898204639143" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "677613976769954195" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12699695541978143509" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f40b0735" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71733b600b48da4246" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01f90e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16173558665046904256" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2aa5636b7f8eb3117b" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8dab80198b3eae4048e8a1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10530689766667404223" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31ed56c996" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10853803621085885915" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14430975036599060664" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b57a17517ef009fa71b09675e525c3681931bb03e61cf3f381b15bf414d0244f40b07354971733b600b48da4246ff4301f90ed8669f1be07405ea280fcdc09f492aa5636b7f8eb3117bffff4b8dab80198b3eae4048e8a19f1b9224868c7e0d43bf4531ed56c9961b96a074e330ac35db415f1bc8451f56530448b8ffff", + "cborBytes": [ + 191, 27, 87, 161, 117, 23, 239, 0, 159, 167, 27, 9, 103, 94, 82, 92, 54, 129, 147, 27, 176, 62, 97, 207, 63, 56, + 27, 21, 191, 65, 77, 2, 68, 244, 11, 7, 53, 73, 113, 115, 59, 96, 11, 72, 218, 66, 70, 255, 67, 1, 249, 14, 216, + 102, 159, 27, 224, 116, 5, 234, 40, 15, 205, 192, 159, 73, 42, 165, 99, 107, 127, 142, 179, 17, 123, 255, 255, 75, + 141, 171, 128, 25, 139, 62, 174, 64, 72, 232, 161, 159, 27, 146, 36, 134, 140, 126, 13, 67, 191, 69, 49, 237, 86, + 201, 150, 27, 150, 160, 116, 227, 48, 172, 53, 219, 65, 95, 27, 200, 69, 31, 86, 83, 4, 72, 184, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1758, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07fc0790020703" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0853fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c0513" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93607c499bfe9e9fe92f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "314115363175698435" + } + } + } + ] + }, + "cborHex": "bf4707fc07900207034173430853fb437c05134a93607c499bfe9e9fe92f1b045bf64230949003ff", + "cborBytes": [ + 191, 71, 7, 252, 7, 144, 2, 7, 3, 65, 115, 67, 8, 83, 251, 67, 124, 5, 19, 74, 147, 96, 124, 73, 155, 254, 158, + 159, 233, 47, 27, 4, 91, 246, 66, 48, 148, 144, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1759, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffe00ff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 254, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1760, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12520553075409774982" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "999219a5b409" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17926874260897599710" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14621036503893734572" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5793fc6d22e81a46bbb130d0" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05ff001626dd02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3dec187" + } + } + ] + }, + "cborHex": "bf04d8669f1badc1f0af733969869f46999219a5b4091bf8c90d28dde510de1bcae85b3c169af4ac4c5793fc6d22e81a46bbb130d0ffff4705ff001626dd0244b3dec187ff", + "cborBytes": [ + 191, 4, 216, 102, 159, 27, 173, 193, 240, 175, 115, 57, 105, 134, 159, 70, 153, 146, 25, 165, 180, 9, 27, 248, + 201, 13, 40, 221, 229, 16, 222, 27, 202, 232, 91, 60, 22, 154, 244, 172, 76, 87, 147, 252, 109, 34, 232, 26, 70, + 187, 177, 48, 208, 255, 255, 71, 5, 255, 0, 22, 38, 221, 2, 68, 179, 222, 193, 135, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1761, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12897eb963" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "871a5f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2afa25c121" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8130613256588686382" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12037115366056725991" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ba38c1612f918" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6eb57353c6bae3e75c7abd" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e1a2b477c694010" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c738d3f71ba14a6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "705533c5" + } + } + ] + }, + "cborHex": "bf4512897eb9639f43871a5fff452afa25c121d8669f1b70d5bdadd50cf42e9f1ba70c6ca66a350de7ffff472ba38c1612f918804b6eb57353c6bae3e75c7abda0487e1a2b477c69401080488c738d3f71ba14a644705533c5ff", + "cborBytes": [ + 191, 69, 18, 137, 126, 185, 99, 159, 67, 135, 26, 95, 255, 69, 42, 250, 37, 193, 33, 216, 102, 159, 27, 112, 213, + 189, 173, 213, 12, 244, 46, 159, 27, 167, 12, 108, 166, 106, 53, 13, 231, 255, 255, 71, 43, 163, 140, 22, 18, 249, + 24, 128, 75, 110, 181, 115, 83, 198, 186, 227, 231, 92, 122, 189, 160, 72, 126, 26, 43, 71, 124, 105, 64, 16, 128, + 72, 140, 115, 141, 63, 113, 186, 20, 166, 68, 112, 85, 51, 197, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1762, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fee1e020de" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2962167983305830520" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03fe06e9" + }, + { + "_tag": "ByteArray", + "bytearray": "04067afd00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13785607780579457527" + } + } + ] + } + } + ] + }, + "cborHex": "bf45fee1e020de9f1bffffffffffffffed1b291bbc1629fab0784403fe06e94504067afd001bbf50513cb64cb9f7ffff", + "cborBytes": [ + 191, 69, 254, 225, 224, 32, 222, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 27, 41, 27, 188, 22, 41, 250, + 176, 120, 68, 3, 254, 6, 233, 69, 4, 6, 122, 253, 0, 27, 191, 80, 81, 60, 182, 76, 185, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1763, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8479430185629478093" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8038062028557815433" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12651945014800564876" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9578149184951075837" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "300c29" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f71d7c50d6b1f0cd2f636e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd6526ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14262853324179790661" + } + } + } + ] + }, + "cborHex": "bf1b75acfcd3f02b6ccd1b6f8ceed3d6be8e891baf94bcf544f6428c1b84ec6befbeb4c3fd43300c294bf71d7c50d6b1f0cd2f636e44fd6526ab1bc5efd587cf3c5b45ff", + "cborBytes": [ + 191, 27, 117, 172, 252, 211, 240, 43, 108, 205, 27, 111, 140, 238, 211, 214, 190, 142, 137, 27, 175, 148, 188, + 245, 68, 246, 66, 140, 27, 132, 236, 107, 239, 190, 180, 195, 253, 67, 48, 12, 41, 75, 247, 29, 124, 80, 214, 177, + 240, 205, 47, 99, 110, 68, 253, 101, 38, 171, 27, 197, 239, 213, 135, 207, 60, 91, 69, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1764, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17844601731122643421" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8441392018718209179" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5137255888099862986" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2426032758013323794" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7306836329319697451" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab0968" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10432720627882550298" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14941973926124564053" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "060924e2171cfce7d8" + } + ] + } + } + ] + }, + "cborHex": "bf11bf1bf7a4c2bacde2c1dd1b7525d9510d84349bff1b474b33030a79e9ca9f1b21aafff092d86a12ff1b656718eda1050c2b43ab09681b90c87822d9d4641a111bcf5c8e1eadcdae559f49060924e2171cfce7d8ffff", + "cborBytes": [ + 191, 17, 191, 27, 247, 164, 194, 186, 205, 226, 193, 221, 27, 117, 37, 217, 81, 13, 132, 52, 155, 255, 27, 71, 75, + 51, 3, 10, 121, 233, 202, 159, 27, 33, 170, 255, 240, 146, 216, 106, 18, 255, 27, 101, 103, 24, 237, 161, 5, 12, + 43, 67, 171, 9, 104, 27, 144, 200, 120, 34, 217, 212, 100, 26, 17, 27, 207, 92, 142, 30, 173, 205, 174, 85, 159, + 73, 6, 9, 36, 226, 23, 28, 252, 231, 216, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1765, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5991883593870247443" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ac406db0507" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2dfa1fa4a42284" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59c5" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae2e6e8f6dbe" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6541518873583356600" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "520d5f79481fceccff4b8d72" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f94c" + }, + { + "_tag": "ByteArray", + "bytearray": "406429907328b790fd5719" + }, + { + "_tag": "ByteArray", + "bytearray": "8819f7f55e6dfb1e85fb" + } + ] + } + } + ] + }, + "cborHex": "bf1b53277261dc208613bf09468ac406db0507472dfa1fa4a422841bffffffffffffffed41d24259c5ff46ae2e6e8f6dbed8669f1b5ac824c1cf730ab89f4c520d5f79481fceccff4b8d721bfffffffffffffff842f94c4b406429907328b790fd57194a8819f7f55e6dfb1e85fbffffff", + "cborBytes": [ + 191, 27, 83, 39, 114, 97, 220, 32, 134, 19, 191, 9, 70, 138, 196, 6, 219, 5, 7, 71, 45, 250, 31, 164, 164, 34, + 132, 27, 255, 255, 255, 255, 255, 255, 255, 237, 65, 210, 66, 89, 197, 255, 70, 174, 46, 110, 143, 109, 190, 216, + 102, 159, 27, 90, 200, 36, 193, 207, 115, 10, 184, 159, 76, 82, 13, 95, 121, 72, 31, 206, 204, 255, 75, 141, 114, + 27, 255, 255, 255, 255, 255, 255, 255, 248, 66, 249, 76, 75, 64, 100, 41, 144, 115, 40, 183, 144, 253, 87, 25, 74, + 136, 25, 247, 245, 94, 109, 251, 30, 133, 251, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1766, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5366659705701626479" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7142926241796930474" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5394498480000718589" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ef84f8678c22f4344b641cd4" + }, + { + "_tag": "ByteArray", + "bytearray": "4272e5f24b7510ab94472b86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17681057753449891006" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8024174860353222452" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13140066314069874711" + } + }, + { + "_tag": "ByteArray", + "bytearray": "433655c47b6e33" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8869230872411553950" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13435470060450479222" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14927481588637588168" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4810467250829255760" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12970729032743048015" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4a7a34918cbf726f801b6320c592731f3baa9f41b21b4add1bc949d3d6fd4cef84f8678c22f4344b641cd44c4272e5f24b7510ab94472b861bf55fbc59378c04beff1b6f5b988586f937349f1bb65ae4b18f36181747433655c47b6e331b7b15d67cbd04c09e1bba7460d5f78bfc76ff1bcf29116a69ed5ac8d8669f1b42c2367a4953e4509f1bb40149555a7ed34fffffff", + "cborBytes": [ + 191, 27, 74, 122, 52, 145, 140, 191, 114, 111, 128, 27, 99, 32, 197, 146, 115, 31, 59, 170, 159, 65, 178, 27, 74, + 221, 27, 201, 73, 211, 214, 253, 76, 239, 132, 248, 103, 140, 34, 244, 52, 75, 100, 28, 212, 76, 66, 114, 229, + 242, 75, 117, 16, 171, 148, 71, 43, 134, 27, 245, 95, 188, 89, 55, 140, 4, 190, 255, 27, 111, 91, 152, 133, 134, + 249, 55, 52, 159, 27, 182, 90, 228, 177, 143, 54, 24, 23, 71, 67, 54, 85, 196, 123, 110, 51, 27, 123, 21, 214, + 124, 189, 4, 192, 158, 27, 186, 116, 96, 213, 247, 139, 252, 118, 255, 27, 207, 41, 17, 106, 105, 237, 90, 200, + 216, 102, 159, 27, 66, 194, 54, 122, 73, 83, 228, 80, 159, 27, 180, 1, 73, 85, 90, 126, 211, 79, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1767, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8aab6f7649ea5524f7d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c905a950228065325b916fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "971d5723" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13398870410614928600" + } + } + } + ] + }, + "cborHex": "bf4a8aab6f7649ea5524f7d64c2c905a950228065325b916fa44971d57231bb9f259a5f031f4d8ff", + "cborBytes": [ + 191, 74, 138, 171, 111, 118, 73, 234, 85, 36, 247, 214, 76, 44, 144, 90, 149, 2, 40, 6, 83, 37, 185, 22, 250, 68, + 151, 29, 87, 35, 27, 185, 242, 89, 165, 240, 49, 244, 216, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1768, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b754d7a00d915a74bb65" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14690304392217219462" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7193643927960526201" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a936f93b4d4fc35eedf66a17" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10577276407590421218" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5110453535201295328" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba951c49fed2a4bc2fb257e5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10850063359673200514" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13349918825348931202" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7e1bc9b468ec10f73d4b3a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f29c9ca0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "67f32e6f3a12" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1753929408130415382" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5903377716271298828" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7966145105694512994" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dd940f42c58c01e86d51" + } + ] + } + } + ] + }, + "cborHex": "bf4ab754d7a00d915a74bb65d8669f1bcbde72031c77d1869f1b63d4f509f6bb9d794ca936f93b4d4fc35eedf66a171b92ca08da158c02e21b46ebfa69f6cffbe0ffff4cba951c49fed2a4bc2fb257e5d8669f1b96932b23b7cd6f829f1bb9447070d5391e824b7e1bc9b468ec10f73d4b3affff44f29c9ca09f4667f32e6f3a121b1857358104b97b161b51ed02c1694eb90c1b6e8d6ec4662357624add940f42c58c01e86d51ffff", + "cborBytes": [ + 191, 74, 183, 84, 215, 160, 13, 145, 90, 116, 187, 101, 216, 102, 159, 27, 203, 222, 114, 3, 28, 119, 209, 134, + 159, 27, 99, 212, 245, 9, 246, 187, 157, 121, 76, 169, 54, 249, 59, 77, 79, 195, 94, 237, 246, 106, 23, 27, 146, + 202, 8, 218, 21, 140, 2, 226, 27, 70, 235, 250, 105, 246, 207, 251, 224, 255, 255, 76, 186, 149, 28, 73, 254, 210, + 164, 188, 47, 178, 87, 229, 216, 102, 159, 27, 150, 147, 43, 35, 183, 205, 111, 130, 159, 27, 185, 68, 112, 112, + 213, 57, 30, 130, 75, 126, 27, 201, 180, 104, 236, 16, 247, 61, 75, 58, 255, 255, 68, 242, 156, 156, 160, 159, 70, + 103, 243, 46, 111, 58, 18, 27, 24, 87, 53, 129, 4, 185, 123, 22, 27, 81, 237, 2, 193, 105, 78, 185, 12, 27, 110, + 141, 110, 196, 102, 35, 87, 98, 74, 221, 148, 15, 66, 197, 140, 1, 232, 109, 81, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1769, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15989181610662216698" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6674546697174420545" + } + } + } + ] + }, + "cborHex": "bf1bdde4fbf5e8bac3fa1b5ca0c0db99d68c41ff", + "cborBytes": [191, 27, 221, 228, 251, 245, 232, 186, 195, 250, 27, 92, 160, 192, 219, 153, 214, 140, 65, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1770, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14617120954279771113" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a8a66" + } + } + ] + }, + "cborHex": "bf1bcada721026c3bbe9437a8a66ff", + "cborBytes": [191, 27, 202, 218, 114, 16, 38, 195, 187, 233, 67, 122, 138, 102, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1771, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13097672205566298434" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1824811206998108223" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ab956ce363c77" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1915234757371486274" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8067019580198981126" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3087243100159449443" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11965688683591986193" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4570029632994026739" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05d89278fe9f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16571830858922628278" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9069733da9f5d4e1b9" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14830593713743270742" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4557150a1c6f5aac61" + }, + { + "_tag": "ByteArray", + "bytearray": "d04c1d7425ebac" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b9df5f1722e08" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02613352230aee585c579437" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4f3a304f183f6b5070070" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f72b2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07d14f00b832cc7db1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7232a8850c05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e567cbf31f1bcd" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13206957700673622276" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0264e251f6a4" + }, + { + "_tag": "ByteArray", + "bytearray": "1580e88aae3d60ce" + } + ] + } + } + ] + }, + "cborHex": "bf1bb5c44779fd494942bf1b1953081fdf46283f475ab956ce363c771b1a9447dd4e9be0421b6ff3cf9139e18e061b2ad8173e204799631ba60eaa75f6696c111b3f6c01bcf79e24f34605d89278fe9f1be5faf85d67f094b6499069733da9f5d4e1b9ff1bcdd0da6823cf13569f494557150a1c6f5aac6147d04c1d7425ebacff473b9df5f1722e08bf4c02613352230aee585c5794374bc4f3a304f183f6b5070070433f72b24907d14f00b832cc7db1467232a8850c0547e567cbf31f1bcdff41c2d8669f1bb7488a0e2842d1049f460264e251f6a4481580e88aae3d60ceffffff", + "cborBytes": [ + 191, 27, 181, 196, 71, 121, 253, 73, 73, 66, 191, 27, 25, 83, 8, 31, 223, 70, 40, 63, 71, 90, 185, 86, 206, 54, + 60, 119, 27, 26, 148, 71, 221, 78, 155, 224, 66, 27, 111, 243, 207, 145, 57, 225, 142, 6, 27, 42, 216, 23, 62, 32, + 71, 153, 99, 27, 166, 14, 170, 117, 246, 105, 108, 17, 27, 63, 108, 1, 188, 247, 158, 36, 243, 70, 5, 216, 146, + 120, 254, 159, 27, 229, 250, 248, 93, 103, 240, 148, 182, 73, 144, 105, 115, 61, 169, 245, 212, 225, 185, 255, 27, + 205, 208, 218, 104, 35, 207, 19, 86, 159, 73, 69, 87, 21, 10, 28, 111, 90, 172, 97, 71, 208, 76, 29, 116, 37, 235, + 172, 255, 71, 59, 157, 245, 241, 114, 46, 8, 191, 76, 2, 97, 51, 82, 35, 10, 238, 88, 92, 87, 148, 55, 75, 196, + 243, 163, 4, 241, 131, 246, 181, 7, 0, 112, 67, 63, 114, 178, 73, 7, 209, 79, 0, 184, 50, 204, 125, 177, 70, 114, + 50, 168, 133, 12, 5, 71, 229, 103, 203, 243, 31, 27, 205, 255, 65, 194, 216, 102, 159, 27, 183, 72, 138, 14, 40, + 66, 209, 4, 159, 70, 2, 100, 226, 81, 246, 164, 72, 21, 128, 232, 138, 174, 61, 96, 206, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1772, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "90873f9e63e3f7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4790873f9e63e3f7d9050580ff", + "cborBytes": [191, 71, 144, 135, 63, 158, 99, 227, 247, 217, 5, 5, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1773, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3691457774230074087" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8031617954128091070" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b333ab149985672e79f1b6f7609f9d77457beffff", + "cborBytes": [191, 27, 51, 58, 177, 73, 152, 86, 114, 231, 159, 27, 111, 118, 9, 249, 215, 116, 87, 190, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1774, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ea80857fde675" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15339076323334375157" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e94c3176b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14605158304120646966" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74d944ea92296a3e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a829029b0705420218" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4df3abf05787091e" + } + } + ] + }, + "cborHex": "bf475ea80857fde6751bd4df58a56af346f5456e94c3176b1bcaaff2189d752d364874d944ea92296a3e1449a829029b0705420218484df3abf05787091eff", + "cborBytes": [ + 191, 71, 94, 168, 8, 87, 253, 230, 117, 27, 212, 223, 88, 165, 106, 243, 70, 245, 69, 110, 148, 195, 23, 107, 27, + 202, 175, 242, 24, 157, 117, 45, 54, 72, 116, 217, 68, 234, 146, 41, 106, 62, 20, 73, 168, 41, 2, 155, 7, 5, 66, + 2, 24, 72, 77, 243, 171, 240, 87, 135, 9, 30, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1775, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10131987337551429374" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9412938611236401967" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8354252385590458340" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "511daf1ca94947efc6b2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50902666b784" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3add7dc8ffd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12593928384626060272" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "27180a5c61b3385d05" + }, + { + "_tag": "ByteArray", + "bytearray": "f927c504" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11993066722708362053" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6fadf05bba" + } + ] + } + } + ] + }, + "cborHex": "bf1b8c9c0ccd4b823efe1b82a179cb874df32f411fbf41c51b73f044482f1437e4ff4a511daf1ca94947efc6b24650902666b78446a3add7dc8ffdd8669f1baec69f23ec586bf09f4927180a5c61b3385d0544f927c5041ba66feea46e971345456fadf05bbaffffff", + "cborBytes": [ + 191, 27, 140, 156, 12, 205, 75, 130, 62, 254, 27, 130, 161, 121, 203, 135, 77, 243, 47, 65, 31, 191, 65, 197, 27, + 115, 240, 68, 72, 47, 20, 55, 228, 255, 74, 81, 29, 175, 28, 169, 73, 71, 239, 198, 178, 70, 80, 144, 38, 102, + 183, 132, 70, 163, 173, 215, 220, 143, 253, 216, 102, 159, 27, 174, 198, 159, 35, 236, 88, 107, 240, 159, 73, 39, + 24, 10, 92, 97, 179, 56, 93, 5, 68, 249, 39, 197, 4, 27, 166, 111, 238, 164, 110, 151, 19, 69, 69, 111, 173, 240, + 91, 186, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1776, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "82d5eea587342fc702f1506c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a428caa75941" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93ed77a847e75948a07a55bc" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17673375485175403476" + } + }, + { + "_tag": "ByteArray", + "bytearray": "981bd683fae7ac" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7185888527420270022" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13206435789288790689" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea1b57" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8d0" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4c82d5eea587342fc702f1506c46a428caa759414c93ed77a847e75948a07a55bc9f1bf544715dbffa13d447981bd683fae7ac1b63b9678b1070a5c61bb746af6131905aa143ea1b57ff42f8d080ff", + "cborBytes": [ + 191, 76, 130, 213, 238, 165, 135, 52, 47, 199, 2, 241, 80, 108, 70, 164, 40, 202, 167, 89, 65, 76, 147, 237, 119, + 168, 71, 231, 89, 72, 160, 122, 85, 188, 159, 27, 245, 68, 113, 93, 191, 250, 19, 212, 71, 152, 27, 214, 131, 250, + 231, 172, 27, 99, 185, 103, 139, 16, 112, 165, 198, 27, 183, 70, 175, 97, 49, 144, 90, 161, 67, 234, 27, 87, 255, + 66, 248, 208, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1777, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3523976753288344562" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6498600012360654647" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14796618265568606598" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62e5a54c4bee9446" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15666990153474978169" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2837904405680527967" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18048225533806799146" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4267010426089782806" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7484272384793469499" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4bc817" + }, + { + "_tag": "ByteArray", + "bytearray": "6976a2cecc" + } + ] + } + } + ] + }, + "cborHex": "bf1b30e7ae2fb07c73f21b5a2faa47ba1b1f371bcd5825eaac45f9864862e5a54c4bee94461bd96c54898d6b31791b27624305671a9a5f1bfa782d7fd8b0692a9f1b3b37775ffbf83e161b67dd7a14a1e1623b434bc817456976a2ceccffff", + "cborBytes": [ + 191, 27, 48, 231, 174, 47, 176, 124, 115, 242, 27, 90, 47, 170, 71, 186, 27, 31, 55, 27, 205, 88, 37, 234, 172, + 69, 249, 134, 72, 98, 229, 165, 76, 75, 238, 148, 70, 27, 217, 108, 84, 137, 141, 107, 49, 121, 27, 39, 98, 67, 5, + 103, 26, 154, 95, 27, 250, 120, 45, 127, 216, 176, 105, 42, 159, 27, 59, 55, 119, 95, 251, 248, 62, 22, 27, 103, + 221, 122, 20, 161, 225, 98, 59, 67, 75, 200, 23, 69, 105, 118, 162, 206, 204, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1778, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18707bab0924" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e12401d203fbac0506df01ff" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4618707bab0924a04ce12401d203fbac0506df01ffa0ff", + "cborBytes": [ + 191, 70, 24, 112, 123, 171, 9, 36, 160, 76, 225, 36, 1, 210, 3, 251, 172, 5, 6, 223, 1, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1779, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16354419551264447028" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6b6149fbacd17ba1" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18399da3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "694f7552c59dc7" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "deff49" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5729354923511965940" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3733342255059762979" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4106d8669f1be2f691eeb4d21a349f486b6149fbacd17ba1ffff4418399da3d90501804122d8669f1bffffffffffffffef9f47694f7552c59dc7ffff43deff49bf1b4f82c1f29010e8f41b33cf7f0039caff23ffff", + "cborBytes": [ + 191, 65, 6, 216, 102, 159, 27, 226, 246, 145, 238, 180, 210, 26, 52, 159, 72, 107, 97, 73, 251, 172, 209, 123, + 161, 255, 255, 68, 24, 57, 157, 163, 217, 5, 1, 128, 65, 34, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 239, 159, 71, 105, 79, 117, 82, 197, 157, 199, 255, 255, 67, 222, 255, 73, 191, 27, 79, 130, 193, 242, 144, 16, + 232, 244, 27, 51, 207, 127, 0, 57, 202, 255, 35, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1780, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "377d346942fd605070ca18" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12061448690807615921" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80b3d42ded5d75c663fa9b4d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8348544503172653303" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc2b0ec2d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8205437603311577130" + } + } + } + ] + }, + "cborHex": "bf4b377d346942fd605070ca181ba762dfae143031b14c80b3d42ded5d75c663fa9b4dd8669f1b73dbfcfe3f2560f780ff45fc2b0ec2d71b71df9206a404e82aff", + "cborBytes": [ + 191, 75, 55, 125, 52, 105, 66, 253, 96, 80, 112, 202, 24, 27, 167, 98, 223, 174, 20, 48, 49, 177, 76, 128, 179, + 212, 45, 237, 93, 117, 198, 99, 250, 155, 77, 216, 102, 159, 27, 115, 219, 252, 254, 63, 37, 96, 247, 128, 255, + 69, 252, 43, 14, 194, 215, 27, 113, 223, 146, 6, 164, 4, 232, 42, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1781, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5005861776273000935" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8b02298f60a78e29cf06" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5619629995953243581" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14171793979399757756" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b457864c3697549e79f4a8b02298f60a78e29cf06ff1b4dfcefb50dec45bdd8669f1bc4ac5389f4245fbc80ffff", + "cborBytes": [ + 191, 27, 69, 120, 100, 195, 105, 117, 73, 231, 159, 74, 139, 2, 41, 143, 96, 167, 142, 41, 207, 6, 255, 27, 77, + 252, 239, 181, 13, 236, 69, 189, 216, 102, 159, 27, 196, 172, 83, 137, 244, 36, 95, 188, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1782, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16215587240137123347" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cde378686e8bbf0bdd" + }, + { + "_tag": "ByteArray", + "bytearray": "d6e149357c02aa1c84" + }, + { + "_tag": "ByteArray", + "bytearray": "14fd1ce6b4dba6e7c213eb59" + }, + { + "_tag": "ByteArray", + "bytearray": "e9245c9ed28adc" + }, + { + "_tag": "ByteArray", + "bytearray": "e5c4e4f05509bb7f42ab0f" + } + ] + } + } + ] + }, + "cborHex": "bf1be10956ae58bae6139f49cde378686e8bbf0bdd49d6e149357c02aa1c844c14fd1ce6b4dba6e7c213eb5947e9245c9ed28adc4be5c4e4f05509bb7f42ab0fffff", + "cborBytes": [ + 191, 27, 225, 9, 86, 174, 88, 186, 230, 19, 159, 73, 205, 227, 120, 104, 110, 139, 191, 11, 221, 73, 214, 225, 73, + 53, 124, 2, 170, 28, 132, 76, 20, 253, 28, 230, 180, 219, 166, 231, 194, 19, 235, 89, 71, 233, 36, 92, 158, 210, + 138, 220, 75, 229, 196, 228, 240, 85, 9, 187, 127, 66, 171, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1783, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbbd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bea27a" + } + } + ] + }, + "cborHex": "bf42dbbd43bea27aff", + "cborBytes": [191, 66, 219, 189, 67, 190, 162, 122, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1784, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "907e03559d128cf2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecfcfc05024f9e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4294492219874102667" + } + }, + { + "_tag": "ByteArray", + "bytearray": "169eb769cb" + } + ] + } + } + ] + }, + "cborHex": "bf48907e03559d128cf20147ecfcfc05024f9ed9050a9f1b3b9919ebb8464d8b45169eb769cbffff", + "cborBytes": [ + 191, 72, 144, 126, 3, 85, 157, 18, 140, 242, 1, 71, 236, 252, 252, 5, 2, 79, 158, 217, 5, 10, 159, 27, 59, 153, + 25, 235, 184, 70, 77, 139, 69, 22, 158, 183, 105, 203, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1785, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b930204" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + } + ] + }, + "cborHex": "bf440b93020414ff", + "cborBytes": [191, 68, 11, 147, 2, 4, 20, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1786, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15617475339254610059" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8752887344698250558" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13887013681034268932" + } + } + } + ] + }, + "cborHex": "bf06d8669f1bd8bc6b137cb1b88b80ff1b797880aa4bc0553e1bc0b8955dc9099104ff", + "cborBytes": [ + 191, 6, 216, 102, 159, 27, 216, 188, 107, 19, 124, 177, 184, 139, 128, 255, 27, 121, 120, 128, 170, 75, 192, 85, + 62, 27, 192, 184, 149, 93, 201, 9, 145, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1787, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "831683701433835876" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7702416132494818292" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2642914498509354547" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9396994323114019365" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a297f0f97c4a74" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10859694070488576391" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1283915136933822460" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9023681252256946990" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10504351131328750171" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13473302160132013003" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15272900459045757520" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9345880758795599960" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7529974999270754711" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0b8abbeb857221641b6ae47aa9d1977bf41b24ad84bbcf613633d8669f1b8268d48ca992ca259f47a297f0f97c4a741b96b5623850e331871b11d16203baaffffcffff1b7d3a8e4a17209b2ed8669f1b91c6f3b312d2a25b80ff1bbafac8ee162bfbcbd8669f1bd3f43e0c5752a2509f1b81b33d08952b80581b687fd85dc71b0997ffffff", + "cborBytes": [ + 191, 27, 11, 138, 187, 235, 133, 114, 33, 100, 27, 106, 228, 122, 169, 209, 151, 123, 244, 27, 36, 173, 132, 187, + 207, 97, 54, 51, 216, 102, 159, 27, 130, 104, 212, 140, 169, 146, 202, 37, 159, 71, 162, 151, 240, 249, 124, 74, + 116, 27, 150, 181, 98, 56, 80, 227, 49, 135, 27, 17, 209, 98, 3, 186, 175, 255, 252, 255, 255, 27, 125, 58, 142, + 74, 23, 32, 155, 46, 216, 102, 159, 27, 145, 198, 243, 179, 18, 210, 162, 91, 128, 255, 27, 186, 250, 200, 238, + 22, 43, 251, 203, 216, 102, 159, 27, 211, 244, 62, 12, 87, 82, 162, 80, 159, 27, 129, 179, 61, 8, 149, 43, 128, + 88, 27, 104, 127, 216, 93, 199, 27, 9, 151, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1788, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1385" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1554238971599192588" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7222804748367770220" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4082863419554673801" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14984871374059966966" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16242741459464331792" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9016839772549629861" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf421385bf1b1591c41c263d020c1b643c8ea68c77326c1b38a93ea5ecfe34891bcff4f51f17c391f61be169cf4cb5e1a2101b7d223ffff76f47a5ffff", + "cborBytes": [ + 191, 66, 19, 133, 191, 27, 21, 145, 196, 28, 38, 61, 2, 12, 27, 100, 60, 142, 166, 140, 119, 50, 108, 27, 56, 169, + 62, 165, 236, 254, 52, 137, 27, 207, 244, 245, 31, 23, 195, 145, 246, 27, 225, 105, 207, 76, 181, 225, 162, 16, + 27, 125, 34, 63, 255, 247, 111, 71, 165, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1789, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2982262944249252686" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e7e90144929" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17778739403100666407" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9702418006028978706" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ab" + }, + { + "_tag": "ByteArray", + "bytearray": "a90f37cd5ef11aae" + } + ] + } + } + ] + }, + "cborHex": "bf1b29632058dac98b4e9f468e7e901449291bf6bac54a940e3a271b86a5e9c557b60a1241ab48a90f37cd5ef11aaeffff", + "cborBytes": [ + 191, 27, 41, 99, 32, 88, 218, 201, 139, 78, 159, 70, 142, 126, 144, 20, 73, 41, 27, 246, 186, 197, 74, 148, 14, + 58, 39, 27, 134, 165, 233, 197, 87, 182, 10, 18, 65, 171, 72, 169, 15, 55, 205, 94, 241, 26, 174, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1790, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15089436692260968708" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "78b16318aaac" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb31c1add5573ea0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3653675534122912246" + } + } + } + ] + }, + "cborHex": "bf1bd16872b96ef5d9049f4678b16318aaacff48fb31c1add5573ea01b32b4768a4fee89f6ff", + "cborBytes": [ + 191, 27, 209, 104, 114, 185, 110, 245, 217, 4, 159, 70, 120, 177, 99, 24, 170, 172, 255, 72, 251, 49, 193, 173, + 213, 87, 62, 160, 27, 50, 180, 118, 138, 79, 238, 137, 246, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1791, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1484662751057525324" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "922100926569937497" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18c8ac1c0fb190" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5262252600951360127" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06f9e52f1e071aa349" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7042569692207758568" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f9a7503d3ae5a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10730588075596850909" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ddec00819b5e0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15063224955095675448" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "910b75" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3149813560675808167" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15770094746055087121" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9254295130381866475" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a18e2e152f6f" + }, + { + "_tag": "ByteArray", + "bytearray": "e9" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13281168259195531880" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6381acc22ecac25c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18299661483161760065" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85b426694c1e911f4276b7" + } + } + ] + }, + "cborHex": "bf1b149a94e7f009ba4cbf1b0ccbf5e83f427a594718c8ac1c0fb1901b490746dc2614ca7f4906f9e52f1e071aa3491b61bc3bd269f9bce8475f9a7503d3ae5a1b94eab5006cfe26dd470ddec00819b5e01bd10b5349cc46f23843910b75ff1b2bb662beb8ca33a71bdadaa19e34de14111b806ddc63c509d5eb9f46a18e2e152f6f41e9ff1bb850302a438af268486381acc22ecac25c1bfdf57529c5c131414b85b426694c1e911f4276b7ff", + "cborBytes": [ + 191, 27, 20, 154, 148, 231, 240, 9, 186, 76, 191, 27, 12, 203, 245, 232, 63, 66, 122, 89, 71, 24, 200, 172, 28, + 15, 177, 144, 27, 73, 7, 70, 220, 38, 20, 202, 127, 73, 6, 249, 229, 47, 30, 7, 26, 163, 73, 27, 97, 188, 59, 210, + 105, 249, 188, 232, 71, 95, 154, 117, 3, 211, 174, 90, 27, 148, 234, 181, 0, 108, 254, 38, 221, 71, 13, 222, 192, + 8, 25, 181, 224, 27, 209, 11, 83, 73, 204, 70, 242, 56, 67, 145, 11, 117, 255, 27, 43, 182, 98, 190, 184, 202, 51, + 167, 27, 218, 218, 161, 158, 52, 222, 20, 17, 27, 128, 109, 220, 99, 197, 9, 213, 235, 159, 70, 161, 142, 46, 21, + 47, 111, 65, 233, 255, 27, 184, 80, 48, 42, 67, 138, 242, 104, 72, 99, 129, 172, 194, 46, 202, 194, 92, 27, 253, + 245, 117, 41, 197, 193, 49, 65, 75, 133, 180, 38, 105, 76, 30, 145, 31, 66, 118, 183, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1792, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1010683510074803264" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a547f05675c1e28fe50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1832560839070547177" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "470013529984396923" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77d8d0dcee022c01ce" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13627697784797938352" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ce5" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5485092341113482709" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10459149458573267333" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e33cfca2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4867771743442738427" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9939075609983077779" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3cc1084785a2dd982eebae18" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10184317370801506518" + } + }, + { + "_tag": "ByteArray", + "bytearray": "061541310530bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15529383375934129377" + } + }, + { + "_tag": "ByteArray", + "bytearray": "90ce506c15d4da1ef52794" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11990369951724931216" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "36bf75451f9af7e9e0" + }, + { + "_tag": "ByteArray", + "bytearray": "7709d7d4e07663aa5903c47c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13850257256157557353" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12600775770311215666" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7cdc44bd62" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16039497728379009163" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17398695623147646533" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81a15bf0541a9ff06877ff0e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16917695075721261717" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc45ea1f57b1589b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11451532540036339053" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0e06ab4c2e5a84404a5a547f05675c1e28fe501b196e905fb2177ce9bf1b0685d2d0b658ee7b4977d8d0dcee022c01ce1bbd1f4eeec14242b0420ce5ff1b4c1ef66c4848edd5d8669f1b91265d0482fa91859f44e33cfca21b438dcc9c2f969cfbffff1b89eeb09b98ca4d939f4c3cc1084785a2dd982eebae181b8d55f6b09e76c8d647061541310530bc1bd78373e6f76904e14b90ce506c15d4da1ef52794ff1ba66659f1821508909f4936bf75451f9af7e9e04c7709d7d4e07663aa5903c47cff1bc035ff97b90c3269bf1baedef2cd23bfca32457cdc44bd621bde97be33fbb7388b1bf174957cacdbee454c81a15bf0541a9ff06877ff0e1beac7ba099ebdb29548fc45ea1f57b1589b1b9eec042c1eb1556dffff", + "cborBytes": [ + 191, 27, 14, 6, 171, 76, 46, 90, 132, 64, 74, 90, 84, 127, 5, 103, 92, 30, 40, 254, 80, 27, 25, 110, 144, 95, 178, + 23, 124, 233, 191, 27, 6, 133, 210, 208, 182, 88, 238, 123, 73, 119, 216, 208, 220, 238, 2, 44, 1, 206, 27, 189, + 31, 78, 238, 193, 66, 66, 176, 66, 12, 229, 255, 27, 76, 30, 246, 108, 72, 72, 237, 213, 216, 102, 159, 27, 145, + 38, 93, 4, 130, 250, 145, 133, 159, 68, 227, 60, 252, 162, 27, 67, 141, 204, 156, 47, 150, 156, 251, 255, 255, 27, + 137, 238, 176, 155, 152, 202, 77, 147, 159, 76, 60, 193, 8, 71, 133, 162, 221, 152, 46, 235, 174, 24, 27, 141, 85, + 246, 176, 158, 118, 200, 214, 71, 6, 21, 65, 49, 5, 48, 188, 27, 215, 131, 115, 230, 247, 105, 4, 225, 75, 144, + 206, 80, 108, 21, 212, 218, 30, 245, 39, 148, 255, 27, 166, 102, 89, 241, 130, 21, 8, 144, 159, 73, 54, 191, 117, + 69, 31, 154, 247, 233, 224, 76, 119, 9, 215, 212, 224, 118, 99, 170, 89, 3, 196, 124, 255, 27, 192, 53, 255, 151, + 185, 12, 50, 105, 191, 27, 174, 222, 242, 205, 35, 191, 202, 50, 69, 124, 220, 68, 189, 98, 27, 222, 151, 190, 51, + 251, 183, 56, 139, 27, 241, 116, 149, 124, 172, 219, 238, 69, 76, 129, 161, 91, 240, 84, 26, 159, 240, 104, 119, + 255, 14, 27, 234, 199, 186, 9, 158, 189, 178, 149, 72, 252, 69, 234, 31, 87, 177, 88, 155, 27, 158, 236, 4, 44, + 30, 177, 85, 109, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1793, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15496751178774844209" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15240350398067582577" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12879134668900777989" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2320118549704836037" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16933497851074802574" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1bd70f85177f7d93319f1bd38099f0b14d26711bb2bbe0beaa3fc0051b2032b78747f383c5ff1beaffde93fa27738ea0ff", + "cborBytes": [ + 191, 27, 215, 15, 133, 23, 127, 125, 147, 49, 159, 27, 211, 128, 153, 240, 177, 77, 38, 113, 27, 178, 187, 224, + 190, 170, 63, 192, 5, 27, 32, 50, 183, 135, 71, 243, 131, 197, 255, 27, 234, 255, 222, 147, 250, 39, 115, 142, + 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1794, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "425019" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9520463053667491189" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d428c0c65" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + }, + "cborHex": "bf43425019d8669f1b841f7ab4ab14dd7580ff458d428c0c6502ff", + "cborBytes": [ + 191, 67, 66, 80, 25, 216, 102, 159, 27, 132, 31, 122, 180, 171, 20, 221, 117, 128, 255, 69, 141, 66, 140, 12, 101, + 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1795, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "14f541" + }, + { + "_tag": "ByteArray", + "bytearray": "43e673e136939067a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8255459421809624173" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2929108024282959886" + } + } + ] + } + } + ] + }, + "cborHex": "bf139f4314f5414943e673e136939067a61b7291489ad69d446d1b28a6483aa021d00effff", + "cborBytes": [ + 191, 19, 159, 67, 20, 245, 65, 73, 67, 230, 115, 225, 54, 147, 144, 103, 166, 27, 114, 145, 72, 154, 214, 157, 68, + 109, 27, 40, 166, 72, 58, 160, 33, 208, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1796, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8596666454886782634" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a1520151cf7018b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07a539b4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51296fc6cc10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3730889216344173760" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ab9c3c4a5589d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01fbcdfcdec0cc6e13022560" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "940c2b94ca6e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2b08da276176ecba60590ee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94fd3c3f9b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11267322097919449555" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b799ac9c5a3d9a672c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13962661405425382261" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12650260254717188289" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68449c07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "268dacbf9b93" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2cb5e2357d5a" + } + ] + } + } + ] + }, + "cborHex": "bf1b774d7e97f80b16aabf480a1520151cf7018b4407a539b44651296fc6cc101b33c6c7f9a487acc0478ab9c3c4a5589d4c01fbcdfcdec0cc6e1302256046940c2b94ca6e4ce2b08da276176ecba60590ee4594fd3c3f9b1b9c5d91c05065d9d349b799ac9c5a3d9a672c1bc1c55692256fb375ff1baf8ec0ad7ea918c14468449c0746268dacbf9b939f462cb5e2357d5affff", + "cborBytes": [ + 191, 27, 119, 77, 126, 151, 248, 11, 22, 170, 191, 72, 10, 21, 32, 21, 28, 247, 1, 139, 68, 7, 165, 57, 180, 70, + 81, 41, 111, 198, 204, 16, 27, 51, 198, 199, 249, 164, 135, 172, 192, 71, 138, 185, 195, 196, 165, 88, 157, 76, 1, + 251, 205, 252, 222, 192, 204, 110, 19, 2, 37, 96, 70, 148, 12, 43, 148, 202, 110, 76, 226, 176, 141, 162, 118, 23, + 110, 203, 166, 5, 144, 238, 69, 148, 253, 60, 63, 155, 27, 156, 93, 145, 192, 80, 101, 217, 211, 73, 183, 153, + 172, 156, 90, 61, 154, 103, 44, 27, 193, 197, 86, 146, 37, 111, 179, 117, 255, 27, 175, 142, 192, 173, 126, 169, + 24, 193, 68, 104, 68, 156, 7, 70, 38, 141, 172, 191, 155, 147, 159, 70, 44, 181, 226, 53, 125, 90, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1797, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5904057539336216564" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11680488305411831430" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14425511168373128764" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "195848618265645865" + } + } + } + ] + }, + "cborHex": "bf1b51ef6d0d0d9a1ff4801ba2196e3a572d3686a01bc831b5fa5e4f7e3c1b02b7cb47d9799329ff", + "cborBytes": [ + 191, 27, 81, 239, 109, 13, 13, 154, 31, 244, 128, 27, 162, 25, 110, 58, 87, 45, 54, 134, 160, 27, 200, 49, 181, + 250, 94, 79, 126, 60, 27, 2, 183, 203, 71, 217, 121, 147, 41, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1798, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0104027700" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6912" + }, + { + "_tag": "ByteArray", + "bytearray": "8046ed857369cd24" + }, + { + "_tag": "ByteArray", + "bytearray": "3ae5718bd2" + }, + { + "_tag": "ByteArray", + "bytearray": "f86e554e05eb4c75b5d62b38" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0122bc" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11179921428910473129" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12432871724696321040" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "370578" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a4e8" + }, + { + "_tag": "ByteArray", + "bytearray": "e8eca50459ac368d482079e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14507245948937860012" + } + } + ] + } + } + ] + }, + "cborHex": "bf4501040277009f426912488046ed857369cd24453ae5718bd24cf86e554e05eb4c75b5d62b38ff430122bc9f1b9b270f4e4afc7fa91bac8a6ef62085bc10ff433705789f42a4e84ce8eca50459ac368d482079e51bc9541753efaa73acffff", + "cborBytes": [ + 191, 69, 1, 4, 2, 119, 0, 159, 66, 105, 18, 72, 128, 70, 237, 133, 115, 105, 205, 36, 69, 58, 229, 113, 139, 210, + 76, 248, 110, 85, 78, 5, 235, 76, 117, 181, 214, 43, 56, 255, 67, 1, 34, 188, 159, 27, 155, 39, 15, 78, 74, 252, + 127, 169, 27, 172, 138, 110, 246, 32, 133, 188, 16, 255, 67, 55, 5, 120, 159, 66, 164, 232, 76, 232, 236, 165, 4, + 89, 172, 54, 141, 72, 32, 121, 229, 27, 201, 84, 23, 83, 239, 170, 115, 172, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1799, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b414a9529a75d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12787657015381602942" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8f0b5fc54c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15379783561275675079" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aa31d44557" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "675edefe1c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11330022568115185793" + } + } + } + ] + }, + "cborHex": "bf475b414a9529a75dd8669f1bb176e24db75a327e9f458f0b5fc54c1bd56ff7a9d43a91c745aa31d44557ffff45675edefe1c1b9d3c537f25aa2881ff", + "cborBytes": [ + 191, 71, 91, 65, 74, 149, 41, 167, 93, 216, 102, 159, 27, 177, 118, 226, 77, 183, 90, 50, 126, 159, 69, 143, 11, + 95, 197, 76, 27, 213, 111, 247, 169, 212, 58, 145, 199, 69, 170, 49, 212, 69, 87, 255, 255, 69, 103, 94, 222, 254, + 28, 27, 157, 60, 83, 127, 37, 170, 40, 129, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1800, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2300583079025774896" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd80586552" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ab61bffb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13256270797832037597" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1fed501f119b1130d9050a8045bd805865529f44ab61bffb1bb7f7bc0e4f29a4ddffff", + "cborBytes": [ + 191, 27, 31, 237, 80, 31, 17, 155, 17, 48, 217, 5, 10, 128, 69, 189, 128, 88, 101, 82, 159, 68, 171, 97, 191, 251, + 27, 183, 247, 188, 14, 79, 41, 164, 221, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1801, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2220748224352858152" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2346421951162412960" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14027402552339099122" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10422533164175242240" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10138535877829545655" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f73" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16981468199938497686" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7003600030100779159" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b1ed1aebe7821b0289f1b20902a552c36efa01bc2ab584d0d946df21b90a446b11e64b400ff1b8cb350aa24954eb7426f731bebaa4b5b2ded1c96d8669f1b6131c91ee712709780ffff", + "cborBytes": [ + 191, 27, 30, 209, 174, 190, 120, 33, 176, 40, 159, 27, 32, 144, 42, 85, 44, 54, 239, 160, 27, 194, 171, 88, 77, + 13, 148, 109, 242, 27, 144, 164, 70, 177, 30, 100, 180, 0, 255, 27, 140, 179, 80, 170, 36, 149, 78, 183, 66, 111, + 115, 27, 235, 170, 75, 91, 45, 237, 28, 150, 216, 102, 159, 27, 97, 49, 201, 30, 231, 18, 112, 151, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1802, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7102486500715500785" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4795495900859477387" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dbdf50713d07d202" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c4b32adb234c0d51cd1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d86fd3746d4f227439355" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0f7cfbc2867" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f91778" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9f9" + } + } + ] + }, + "cborHex": "bf1b629119d7812794f1bf1b428d061d3c922d8b48dbdf50713d07d202ff4a9c4b32adb234c0d51cd14b6d86fd3746d4f22743935546c0f7cfbc28671443f9177842f9f9ff", + "cborBytes": [ + 191, 27, 98, 145, 25, 215, 129, 39, 148, 241, 191, 27, 66, 141, 6, 29, 60, 146, 45, 139, 72, 219, 223, 80, 113, + 61, 7, 210, 2, 255, 74, 156, 75, 50, 173, 178, 52, 192, 213, 28, 209, 75, 109, 134, 253, 55, 70, 212, 242, 39, 67, + 147, 85, 70, 192, 247, 207, 188, 40, 103, 20, 67, 249, 23, 120, 66, 249, 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1803, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10578554620890360599" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11550976382952391045" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2198352883922341500" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55b09c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12161207547082452295" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4829966255294738898" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16944940884977416517" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16629908695891676533" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5917025266656279707" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8418711377166505141" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3931041786813059223" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1aa88ce5faedbb63" + } + ] + } + } + ] + }, + "cborHex": "bf1b92ce93614f3cab17801ba04d4fd212cdc1859f1b1e821e4cf1258e7c4355b09c1ba8c549d4cba62d471b43077cb80bf771d21beb2885f4ed127945ff1be6c94dd991cd8d751b521d7f215a0efc9b41c09f1b74d54564ae8c94b51b368dddad74359097481aa88ce5faedbb63ffff", + "cborBytes": [ + 191, 27, 146, 206, 147, 97, 79, 60, 171, 23, 128, 27, 160, 77, 79, 210, 18, 205, 193, 133, 159, 27, 30, 130, 30, + 76, 241, 37, 142, 124, 67, 85, 176, 156, 27, 168, 197, 73, 212, 203, 166, 45, 71, 27, 67, 7, 124, 184, 11, 247, + 113, 210, 27, 235, 40, 133, 244, 237, 18, 121, 69, 255, 27, 230, 201, 77, 217, 145, 205, 141, 117, 27, 82, 29, + 127, 33, 90, 14, 252, 155, 65, 192, 159, 27, 116, 213, 69, 100, 174, 140, 148, 181, 27, 54, 141, 221, 173, 116, + 53, 144, 151, 72, 26, 168, 140, 229, 250, 237, 187, 99, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1804, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "29dba266bdc47d30" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a55b6288ec537373d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94d324cc8362055ba4" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "368e3015477e21feeda191" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "313314847833096946" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15714339009032949361" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4abde7560494" + } + ] + } + } + ] + }, + "cborHex": "bf4829dba266bdc47d30495a55b6288ec537373d4994d324cc8362055ba49f4b368e3015477e21feeda1911b04591e31aff282f21bda148c1211790e71464abde7560494ffff", + "cborBytes": [ + 191, 72, 41, 219, 162, 102, 189, 196, 125, 48, 73, 90, 85, 182, 40, 142, 197, 55, 55, 61, 73, 148, 211, 36, 204, + 131, 98, 5, 91, 164, 159, 75, 54, 142, 48, 21, 71, 126, 33, 254, 237, 161, 145, 27, 4, 89, 30, 49, 175, 242, 130, + 242, 27, 218, 20, 140, 18, 17, 121, 14, 113, 70, 74, 189, 231, 86, 4, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1805, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f79444de8f9b132b9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11909475734811308877" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16522586365774088198" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ec72" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6371292925545031196" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3a4055e7ea49dff8b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0338befb898d08160c0467" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10100416022618776661" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1265" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1293868c312deffb25dd91" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6338222669609223860" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9308ad915243ae295" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60516d126a346e5a" + } + } + ] + } + } + ] + }, + "cborHex": "bf495f79444de8f9b132b99f41dc1ba546f514ea8ff34d1be54c04c25ead480642ec721b586b6128c312261cff49c3a4055e7ea49dff8bbf4b0338befb898d08160c04671b8c2be2dbb7db24554212654b1293868c312deffb25dd9142a0b31b57f5e3efc962c6b449a9308ad915243ae2954860516d126a346e5affff", + "cborBytes": [ + 191, 73, 95, 121, 68, 77, 232, 249, 177, 50, 185, 159, 65, 220, 27, 165, 70, 245, 20, 234, 143, 243, 77, 27, 229, + 76, 4, 194, 94, 173, 72, 6, 66, 236, 114, 27, 88, 107, 97, 40, 195, 18, 38, 28, 255, 73, 195, 164, 5, 94, 126, + 164, 157, 255, 139, 191, 75, 3, 56, 190, 251, 137, 141, 8, 22, 12, 4, 103, 27, 140, 43, 226, 219, 183, 219, 36, + 85, 66, 18, 101, 75, 18, 147, 134, 140, 49, 45, 239, 251, 37, 221, 145, 66, 160, 179, 27, 87, 245, 227, 239, 201, + 98, 198, 180, 73, 169, 48, 138, 217, 21, 36, 58, 226, 149, 72, 96, 81, 109, 18, 106, 52, 110, 90, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1806, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2900" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16219472972303071008" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6b031" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5ecda40b6d9b8c8f0f37" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10337272627701424944" + } + } + ] + } + } + ] + }, + "cborHex": "bf4229001be11724bbde2c772043e6b0319f4a5ecda40b6d9b8c8f0f371b8f755eaf88832330ffff", + "cborBytes": [ + 191, 66, 41, 0, 27, 225, 23, 36, 187, 222, 44, 119, 32, 67, 230, 176, 49, 159, 74, 94, 205, 164, 11, 109, 155, + 140, 143, 15, 55, 27, 143, 117, 94, 175, 136, 131, 35, 48, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1807, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11546075433384223187" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15582716124003264584" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13350218501452512879" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1318376057970135026" + } + } + } + ] + }, + "cborHex": "bf1ba03be66ed4bb21d39f41040cff1bd840edc106f768481bb94580fe9cecbe6f1bfffffffffffffff41b124bd00a27b08ff2ff", + "cborBytes": [ + 191, 27, 160, 59, 230, 110, 212, 187, 33, 211, 159, 65, 4, 12, 255, 27, 216, 64, 237, 193, 6, 247, 104, 72, 27, + 185, 69, 128, 254, 156, 236, 190, 111, 27, 255, 255, 255, 255, 255, 255, 255, 244, 27, 18, 75, 208, 10, 39, 176, + 143, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1808, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13394990869145332392" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17132504591638799047" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9a560bb6e820e6608c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2005992931264798017" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d29be4c5f107b312" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11556506046462051570" + } + }, + { + "_tag": "ByteArray", + "bytearray": "97f53621eb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14998783260627300532" + } + }, + { + "_tag": "ByteArray", + "bytearray": "259ab910cdae98d7a5" + } + ] + } + } + ] + }, + "cborHex": "bf1bb9e49139cd022aa8d8669f1bedc2e227796122c79f499a560bb6e820e6608cffff42b6fb1b1bd6b7f159fb9d4148d29be4c5f107b3129f1ba060f505300644f24597f53621eb1bd02661e898c3f0b449259ab910cdae98d7a5ffff", + "cborBytes": [ + 191, 27, 185, 228, 145, 57, 205, 2, 42, 168, 216, 102, 159, 27, 237, 194, 226, 39, 121, 97, 34, 199, 159, 73, 154, + 86, 11, 182, 232, 32, 230, 96, 140, 255, 255, 66, 182, 251, 27, 27, 214, 183, 241, 89, 251, 157, 65, 72, 210, 155, + 228, 197, 241, 7, 179, 18, 159, 27, 160, 96, 245, 5, 48, 6, 68, 242, 69, 151, 245, 54, 33, 235, 27, 208, 38, 97, + 232, 152, 195, 240, 180, 73, 37, 154, 185, 16, 205, 174, 152, 215, 165, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1809, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6326649917057030745" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b87de83ddad9f5ff63" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7520921637743300985" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17803763641144597060" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5dd742d898b7d9" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11787157370797045584" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6596113980377491671" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c5553cfc8301e00245317a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c88a6c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "087e81d88ab74506" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "285ffb3c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d32e3112b994eb64221" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12129104412124107044" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f66785a02d1fd90c8698" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9867119446383100114" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fda49434306c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5240475690766501221" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b57ccc6945c705a5949b87de83ddad9f5ff631b685fae61c93d1179d8669f1bf713acb407705a449f475dd742d898b7d9ffff1ba394652d7dfc3750d8669f1b5b8a1ab7aa6368d79f4bc5553cfc8301e00245317affff43c88a6cbf48087e81d88ab7450644285ffb3c4a4d32e3112b994eb642211ba8533c333847d1244af66785a02d1fd90c86981b88ef0cdbb60380d246fda49434306c1b48b9e8e022350565ffff", + "cborBytes": [ + 191, 27, 87, 204, 198, 148, 92, 112, 90, 89, 73, 184, 125, 232, 61, 218, 217, 245, 255, 99, 27, 104, 95, 174, 97, + 201, 61, 17, 121, 216, 102, 159, 27, 247, 19, 172, 180, 7, 112, 90, 68, 159, 71, 93, 215, 66, 216, 152, 183, 217, + 255, 255, 27, 163, 148, 101, 45, 125, 252, 55, 80, 216, 102, 159, 27, 91, 138, 26, 183, 170, 99, 104, 215, 159, + 75, 197, 85, 60, 252, 131, 1, 224, 2, 69, 49, 122, 255, 255, 67, 200, 138, 108, 191, 72, 8, 126, 129, 216, 138, + 183, 69, 6, 68, 40, 95, 251, 60, 74, 77, 50, 227, 17, 43, 153, 78, 182, 66, 33, 27, 168, 83, 60, 51, 56, 71, 209, + 36, 74, 246, 103, 133, 160, 45, 31, 217, 12, 134, 152, 27, 136, 239, 12, 219, 182, 3, 128, 210, 70, 253, 164, 148, + 52, 48, 108, 27, 72, 185, 232, 224, 34, 53, 5, 101, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1810, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1400" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14531289116162171661" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a04015f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc20f7668d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da64f2a709d15a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e03bcdcaf168bf3c5cea6c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16712614886740433567" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6980d3d50c8db5" + }, + { + "_tag": "ByteArray", + "bytearray": "471e68c6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12154950680877947875" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12190189164111298556" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9284949051815385741" + } + } + ] + } + } + ] + }, + "cborHex": "bf421400d905009f1bc9a982760958a30d14ff445a04015f45bc20f7668d47da64f2a709d15a014be03bcdcaf168bf3c5cea6cd8669f1be7ef22b138119a9f9f476980d3d50c8db544471e68c61ba8af0f3e9c1f5be31ba92c407557ab7ffc1b80dac3f8070e5a8dffffff", + "cborBytes": [ + 191, 66, 20, 0, 217, 5, 0, 159, 27, 201, 169, 130, 118, 9, 88, 163, 13, 20, 255, 68, 90, 4, 1, 95, 69, 188, 32, + 247, 102, 141, 71, 218, 100, 242, 167, 9, 209, 90, 1, 75, 224, 59, 205, 202, 241, 104, 191, 60, 92, 234, 108, 216, + 102, 159, 27, 231, 239, 34, 177, 56, 17, 154, 159, 159, 71, 105, 128, 211, 213, 12, 141, 181, 68, 71, 30, 104, + 198, 27, 168, 175, 15, 62, 156, 31, 91, 227, 27, 169, 44, 64, 117, 87, 171, 127, 252, 27, 128, 218, 195, 248, 7, + 14, 90, 141, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1811, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "924391127739555271" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41cd3253acf56037a817" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1384731281681343027" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14283004786638227784" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6493237720726214957" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15314793124961010965" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4da958c524431a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16846458121465512447" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "511eda3b09f637" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "610faac537" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d94c2955d0b495ee524" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "289d308ca1cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76f366989c4ad5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1974417557643366888" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78a35d21d99b844e52c0f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17972932525920888479" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e50243f0a503ad12a281da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14135623097634648465" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0cd418d542705dc74a41cd3253acf56037a8171b13378dc399fce233801bc6376d2dc8c689489f1b5a1c9d4dea0d992dff1bd4891334b5e54515bf474da958c524431a1be9caa467b57241ff47511eda3b09f63745610faac5374a6d94c2955d0b495ee52446289d308ca1cd4776f366989c4ad51b1b668a4ec9a091e84b78a35d21d99b844e52c0f91bf96caee85b94269f4be50243f0a503ad12a281da1bc42bd2504551f191ffff", + "cborBytes": [ + 191, 27, 12, 212, 24, 213, 66, 112, 93, 199, 74, 65, 205, 50, 83, 172, 245, 96, 55, 168, 23, 27, 19, 55, 141, 195, + 153, 252, 226, 51, 128, 27, 198, 55, 109, 45, 200, 198, 137, 72, 159, 27, 90, 28, 157, 77, 234, 13, 153, 45, 255, + 27, 212, 137, 19, 52, 181, 229, 69, 21, 191, 71, 77, 169, 88, 197, 36, 67, 26, 27, 233, 202, 164, 103, 181, 114, + 65, 255, 71, 81, 30, 218, 59, 9, 246, 55, 69, 97, 15, 170, 197, 55, 74, 109, 148, 194, 149, 93, 11, 73, 94, 229, + 36, 70, 40, 157, 48, 140, 161, 205, 71, 118, 243, 102, 152, 156, 74, 213, 27, 27, 102, 138, 78, 201, 160, 145, + 232, 75, 120, 163, 93, 33, 217, 155, 132, 78, 82, 192, 249, 27, 249, 108, 174, 232, 91, 148, 38, 159, 75, 229, 2, + 67, 240, 165, 3, 173, 18, 162, 129, 218, 27, 196, 43, 210, 80, 69, 81, 241, 145, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1812, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14290813488339292550" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9204910806835874397" + } + } + } + ] + }, + "cborHex": "bf1bc6532b26d3d311860f1bffffffffffffffff1b7fbe699bee9b4a5dff", + "cborBytes": [ + 191, 27, 198, 83, 43, 38, 211, 211, 17, 134, 15, 27, 255, 255, 255, 255, 255, 255, 255, 255, 27, 127, 190, 105, + 155, 238, 155, 74, 93, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1813, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "801af36a4a2172bd661f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8093238566718859937" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4630335320877325664" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6962218074496461510" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8907d0fad32e015902fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd5702d0fab777c9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c877831aa30c30b8" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4a801af36a4a2172bd661fd8669f1b7050f598bbc4eaa19f1b4042417117d65d601b609ec4738b2a6ac6ffff4a8907d0fad32e015902fe48fd5702d0fab777c948c877831aa30c30b880ff", + "cborBytes": [ + 191, 74, 128, 26, 243, 106, 74, 33, 114, 189, 102, 31, 216, 102, 159, 27, 112, 80, 245, 152, 187, 196, 234, 161, + 159, 27, 64, 66, 65, 113, 23, 214, 93, 96, 27, 96, 158, 196, 115, 139, 42, 106, 198, 255, 255, 74, 137, 7, 208, + 250, 211, 46, 1, 89, 2, 254, 72, 253, 87, 2, 208, 250, 183, 119, 201, 72, 200, 119, 131, 26, 163, 12, 48, 184, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1814, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12620269995285321570" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11034941513328329781" + } + }, + { + "_tag": "ByteArray", + "bytearray": "124080ac52b3a48306f052df" + }, + { + "_tag": "ByteArray", + "bytearray": "5b96" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13458511068480660682" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "785ca3cd9fbfd98fc0" + }, + { + "_tag": "ByteArray", + "bytearray": "b114c315a8dd928afca4bf" + } + ] + } + } + ] + }, + "cborHex": "bf1baf2434b2168097629f1b9923fcd73b2584354c124080ac52b3a48306f052df425b96ff1bbac63c82b273e4cad905009f49785ca3cd9fbfd98fc04bb114c315a8dd928afca4bfffff", + "cborBytes": [ + 191, 27, 175, 36, 52, 178, 22, 128, 151, 98, 159, 27, 153, 35, 252, 215, 59, 37, 132, 53, 76, 18, 64, 128, 172, + 82, 179, 164, 131, 6, 240, 82, 223, 66, 91, 150, 255, 27, 186, 198, 60, 130, 178, 115, 228, 202, 217, 5, 0, 159, + 73, 120, 92, 163, 205, 159, 191, 217, 143, 192, 75, 177, 20, 195, 21, 168, 221, 146, 138, 252, 164, 191, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1815, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "419c2b7c5be510" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5120118847859522461" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67ccf14d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f494" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebc6c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a4bc986b888275d8b18" + } + } + ] + }, + "cborHex": "bf47419c2b7c5be5101b470e50f6ee72fb9d4467ccf14d42f49443ebc6c64a3a4bc986b888275d8b18ff", + "cborBytes": [ + 191, 71, 65, 156, 43, 124, 91, 229, 16, 27, 71, 14, 80, 246, 238, 114, 251, 157, 68, 103, 204, 241, 77, 66, 244, + 148, 67, 235, 198, 198, 74, 58, 75, 201, 134, 184, 136, 39, 93, 139, 24, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1816, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cff93df5b8b0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1556239349274494928" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ac6320dd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17966753087522635797" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dc" + }, + { + "_tag": "ByteArray", + "bytearray": "78199d5a23a3" + } + ] + } + } + ] + }, + "cborHex": "bf46cff93df5b8b0d8669f1b1598df715efdc7d09f44ac6320dd1bf956babdbcf0801541dc4678199d5a23a3ffffff", + "cborBytes": [ + 191, 70, 207, 249, 61, 245, 184, 176, 216, 102, 159, 27, 21, 152, 223, 113, 94, 253, 199, 208, 159, 68, 172, 99, + 32, 221, 27, 249, 86, 186, 189, 188, 240, 128, 21, 65, 220, 70, 120, 25, 157, 90, 35, 163, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1817, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4472592922315628581" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73869b29b0b5c95abe2f67" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7c425309056b" + }, + { + "_tag": "ByteArray", + "bytearray": "03fe13" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7432366888438422849" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3e11d790e78ca0254b73869b29b0b5c95abe2f671bfffffffffffffffb9f467c425309056b4303fe130c1b6725124e81bf5d41ffff", + "cborBytes": [ + 191, 27, 62, 17, 215, 144, 231, 140, 160, 37, 75, 115, 134, 155, 41, 176, 181, 201, 90, 190, 47, 103, 27, 255, + 255, 255, 255, 255, 255, 255, 251, 159, 70, 124, 66, 83, 9, 5, 107, 67, 3, 254, 19, 12, 27, 103, 37, 18, 78, 129, + 191, 93, 65, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1818, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01800f06010504a806003041" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6639624852708888635" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14900019773922321790" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20884544d5c5f54b59" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9230827280164814774" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22d447d32ed0a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4762208994044085947" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "045b88f973" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9b852a2f111fd9e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9531880922767804567" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1131330604868088540" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2262243705637663436" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07fc12f8037200" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7f0bcc5f3bf206775f1789b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "823892571361290272" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6109631731379077789" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8362204177050122669" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5bed09a4e3747a5386b" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be03db01be0089c0e5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "050201" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f20e8c8f07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4185863950039039757" + } + } + } + ] + }, + "cborHex": "bf4c01800f06010504a806003041bf1b5c24afa01391903b1bcec7810a6aefa57e4920884544d5c5f54b591b801a7c8119357fb64722d447d32ed0a61b4216c3d94c2b06bbff45045b88f973d8669f1bfffffffffffffff99f489b852a2f111fd9e81b84480b327ae5c8971b0fb34b30eab0b2dc1b1f651aaa15e572ccffff4707fc12f80372009f4c7f0bcc5f3bf206775f1789b91b0b6f0dedb112a8201b54c9c5b0814e029d1b740c8464e85c39ad4af5bed09a4e3747a5386bff49be03db01be0089c0e54305020145f20e8c8f071b3a172d15bc30bf0dff", + "cborBytes": [ + 191, 76, 1, 128, 15, 6, 1, 5, 4, 168, 6, 0, 48, 65, 191, 27, 92, 36, 175, 160, 19, 145, 144, 59, 27, 206, 199, + 129, 10, 106, 239, 165, 126, 73, 32, 136, 69, 68, 213, 197, 245, 75, 89, 27, 128, 26, 124, 129, 25, 53, 127, 182, + 71, 34, 212, 71, 211, 46, 208, 166, 27, 66, 22, 195, 217, 76, 43, 6, 187, 255, 69, 4, 91, 136, 249, 115, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 159, 72, 155, 133, 42, 47, 17, 31, 217, 232, 27, 132, 72, 11, 50, + 122, 229, 200, 151, 27, 15, 179, 75, 48, 234, 176, 178, 220, 27, 31, 101, 26, 170, 21, 229, 114, 204, 255, 255, + 71, 7, 252, 18, 248, 3, 114, 0, 159, 76, 127, 11, 204, 95, 59, 242, 6, 119, 95, 23, 137, 185, 27, 11, 111, 13, + 237, 177, 18, 168, 32, 27, 84, 201, 197, 176, 129, 78, 2, 157, 27, 116, 12, 132, 100, 232, 92, 57, 173, 74, 245, + 190, 208, 154, 78, 55, 71, 165, 56, 107, 255, 73, 190, 3, 219, 1, 190, 0, 137, 192, 229, 67, 5, 2, 1, 69, 242, 14, + 140, 143, 7, 27, 58, 23, 45, 21, 188, 48, 191, 13, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1819, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "94602c321b873e7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22f6fb0cf5fc2954cef4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a96c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03d0611cf50d4b06616aa285" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1422530526611215672" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "621381c3e01e8c91aa31" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3078393124400481630" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f45a46dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb82b7b2c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d34c6aefb516c72cdf691199" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f787069ed2e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21" + } + } + ] + }, + "cborHex": "bf4894602c321b873e7f4a22f6fb0cf5fc2954cef442a96cbf4c03d0611cf50d4b06616aa2851b13bdd7fa20cf95384a621381c3e01e8c91aa311b2ab8a63c92e5455e44f45a46dd4194ff45cb82b7b2c64cd34c6aefb516c72cdf69119946f787069ed2e24121ff", + "cborBytes": [ + 191, 72, 148, 96, 44, 50, 27, 135, 62, 127, 74, 34, 246, 251, 12, 245, 252, 41, 84, 206, 244, 66, 169, 108, 191, + 76, 3, 208, 97, 28, 245, 13, 75, 6, 97, 106, 162, 133, 27, 19, 189, 215, 250, 32, 207, 149, 56, 74, 98, 19, 129, + 195, 224, 30, 140, 145, 170, 49, 27, 42, 184, 166, 60, 146, 229, 69, 94, 68, 244, 90, 70, 221, 65, 148, 255, 69, + 203, 130, 183, 178, 198, 76, 211, 76, 106, 239, 181, 22, 199, 44, 223, 105, 17, 153, 70, 247, 135, 6, 158, 210, + 226, 65, 33, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1820, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4725826683566926822" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8fd49b74" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4949910897002550283" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7588251832027259047" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04bff680" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12932390083056071320" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8eeff1295e27d4b7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13188789429816701621" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5989320822596724057" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1b54b00234fa17d40d7eb" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13200317673943130008" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7637856429078290855" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5915539167180949290" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b419582548811abe6448fd49b741b44b19dbc2dac140b801b694ee2d6423120a74404bff6801bb379144305577298488eeff1295e27d4b71bb707fe1bf5a6b2b5bf1b531e578e2cba65594bd1b54b00234fa17d40d7ebff1bb730f2fc75b0df98d8669f1b69ff1df484a521a79f1b52183787dabb072affffff", + "cborBytes": [ + 191, 27, 65, 149, 130, 84, 136, 17, 171, 230, 68, 143, 212, 155, 116, 27, 68, 177, 157, 188, 45, 172, 20, 11, 128, + 27, 105, 78, 226, 214, 66, 49, 32, 167, 68, 4, 191, 246, 128, 27, 179, 121, 20, 67, 5, 87, 114, 152, 72, 142, 239, + 241, 41, 94, 39, 212, 183, 27, 183, 7, 254, 27, 245, 166, 178, 181, 191, 27, 83, 30, 87, 142, 44, 186, 101, 89, + 75, 209, 181, 75, 0, 35, 79, 161, 125, 64, 215, 235, 255, 27, 183, 48, 242, 252, 117, 176, 223, 152, 216, 102, + 159, 27, 105, 255, 29, 244, 132, 165, 33, 167, 159, 27, 82, 24, 55, 135, 218, 187, 7, 42, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1821, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14787943055507518126" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05ff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7202799434436624838" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8032091130502596763" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1772826390183800050" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + } + } + ] + }, + "cborHex": "bf049f1bcd3953dbee3af2ae4205ff1b63f57bec6dfac1c614ff1b6f77b853cd2c489bd8669f1b189a58358357ecf29f03ffffff", + "cborBytes": [ + 191, 4, 159, 27, 205, 57, 83, 219, 238, 58, 242, 174, 66, 5, 255, 27, 99, 245, 123, 236, 109, 250, 193, 198, 20, + 255, 27, 111, 119, 184, 83, 205, 44, 72, 155, 216, 102, 159, 27, 24, 154, 88, 53, 131, 87, 236, 242, 159, 3, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1822, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "186219517029232719" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3304901362244334120" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eaa1b8f172b2b53b6d6e" + }, + { + "_tag": "ByteArray", + "bytearray": "16270b4b90810752" + }, + { + "_tag": "ByteArray", + "bytearray": "f87452b242bc4e7e58b086" + }, + { + "_tag": "ByteArray", + "bytearray": "ca41f540" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4534589316922476678" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15019432506097283500" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8266147913687042583" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10694241333642831396" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2844cca7dec87e39" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6415999247883040952" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b" + }, + { + "_tag": "ByteArray", + "bytearray": "b9215bb4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8019715565042242507" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10118680190977264546" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8400b2d4272cd6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15365702856738201983" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16266037746813736820" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12999982333369981940" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15593658995667832518" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15749205596664161611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b1680ed55bb6626dd7733f" + } + ] + } + } + ] + }, + "cborHex": "bf1b029595aa02c5b04fd8669f1b2ddd5e47624732289f4aeaa1b8f172b2b53b6d6e4816270b4b908107524bf87452b242bc4e7e58b08644ca41f540ffff1b3eee18f55d7208861bd06fbe49b5e231ac1b72b741bb48270a17d8669f1b946993d51a14a6249f482844cca7dec87e391b590a3552913df8b8410b44b9215bb41b6f4bc0d0ee0393cbffff1b8c6cc605cafb4ba2478400b2d4272cd61bd53df1565415e17fbf1be1bc932649ed97741bb469370e2adf1bf4ff1bd867ce3ce15b0ec6d8669f1bda906b0c1bc2e54b9f4bb1680ed55bb6626dd7733fffffff", + "cborBytes": [ + 191, 27, 2, 149, 149, 170, 2, 197, 176, 79, 216, 102, 159, 27, 45, 221, 94, 71, 98, 71, 50, 40, 159, 74, 234, 161, + 184, 241, 114, 178, 181, 59, 109, 110, 72, 22, 39, 11, 75, 144, 129, 7, 82, 75, 248, 116, 82, 178, 66, 188, 78, + 126, 88, 176, 134, 68, 202, 65, 245, 64, 255, 255, 27, 62, 238, 24, 245, 93, 114, 8, 134, 27, 208, 111, 190, 73, + 181, 226, 49, 172, 27, 114, 183, 65, 187, 72, 39, 10, 23, 216, 102, 159, 27, 148, 105, 147, 213, 26, 20, 166, 36, + 159, 72, 40, 68, 204, 167, 222, 200, 126, 57, 27, 89, 10, 53, 82, 145, 61, 248, 184, 65, 11, 68, 185, 33, 91, 180, + 27, 111, 75, 192, 208, 238, 3, 147, 203, 255, 255, 27, 140, 108, 198, 5, 202, 251, 75, 162, 71, 132, 0, 178, 212, + 39, 44, 214, 27, 213, 61, 241, 86, 84, 21, 225, 127, 191, 27, 225, 188, 147, 38, 73, 237, 151, 116, 27, 180, 105, + 55, 14, 42, 223, 27, 244, 255, 27, 216, 103, 206, 60, 225, 91, 14, 198, 216, 102, 159, 27, 218, 144, 107, 12, 27, + 194, 229, 75, 159, 75, 177, 104, 14, 213, 91, 182, 98, 109, 215, 115, 63, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1823, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6b7df3e618d07e4fce0c32be" + }, + { + "_tag": "ByteArray", + "bytearray": "aa4214" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "84818909693859457" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4202040507504770855" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de728e35bcf2dfc9bd44" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "129c52fb0c350ac90512" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13419959870928269672" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9034b03a12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6889895645444920832" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0d0d119f4c6b7df3e618d07e4fce0c32be43aa42141b012d56595689d681ff1b3a50a594059fbf274ade728e35bcf2dfc9bd441bfffffffffffffff8bf4a129c52fb0c350ac905121bba3d46668ead3168459034b03a121b5f9dd395d6415600ffff", + "cborBytes": [ + 191, 13, 13, 17, 159, 76, 107, 125, 243, 230, 24, 208, 126, 79, 206, 12, 50, 190, 67, 170, 66, 20, 27, 1, 45, 86, + 89, 86, 137, 214, 129, 255, 27, 58, 80, 165, 148, 5, 159, 191, 39, 74, 222, 114, 142, 53, 188, 242, 223, 201, 189, + 68, 27, 255, 255, 255, 255, 255, 255, 255, 248, 191, 74, 18, 156, 82, 251, 12, 53, 10, 201, 5, 18, 27, 186, 61, + 70, 102, 142, 173, 49, 104, 69, 144, 52, 176, 58, 18, 27, 95, 157, 211, 149, 214, 65, 86, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1824, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7382151961130533313" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad" + } + } + ] + }, + "cborHex": "bf1b6672ac18a92381c141adff", + "cborBytes": [191, 27, 102, 114, 172, 24, 169, 35, 129, 193, 65, 173, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1825, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15946677302270925599" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15277425846941225845" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2084713348022667010" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17666912600984179264" + } + }, + { + "_tag": "ByteArray", + "bytearray": "18d8af8d6b17ae15" + } + ] + } + } + ] + }, + "cborHex": "bf1bdd4dfa846da49b1fd8669f1bd40451dd514d93759f1b1cee63bea76807021bf52d7b684388d2404818d8af8d6b17ae15ffffff", + "cborBytes": [ + 191, 27, 221, 77, 250, 132, 109, 164, 155, 31, 216, 102, 159, 27, 212, 4, 81, 221, 81, 77, 147, 117, 159, 27, 28, + 238, 99, 190, 167, 104, 7, 2, 27, 245, 45, 123, 104, 67, 136, 210, 64, 72, 24, 216, 175, 141, 107, 23, 174, 21, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1826, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9bde530c1131cbf7f97" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50" + } + } + ] + }, + "cborHex": "bf4ac9bde530c1131cbf7f974150ff", + "cborBytes": [191, 74, 201, 189, 229, 48, 193, 19, 28, 191, 127, 151, 65, 80, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1827, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ee26e0970926e8c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b3e2" + }, + { + "_tag": "ByteArray", + "bytearray": "8dff34215546" + }, + { + "_tag": "ByteArray", + "bytearray": "5315" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9d2bcaee7449c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "81b41a293f113f132c7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2874190036977110498" + } + }, + { + "_tag": "ByteArray", + "bytearray": "11" + } + ] + } + } + ] + }, + "cborHex": "bf482ee26e0970926e8c9f42b3e2468dff34215546425315ff47b9d2bcaee7449c9f4a81b41a293f113f132c7b1b27e32c9c4afccde24111ffff", + "cborBytes": [ + 191, 72, 46, 226, 110, 9, 112, 146, 110, 140, 159, 66, 179, 226, 70, 141, 255, 52, 33, 85, 70, 66, 83, 21, 255, + 71, 185, 210, 188, 174, 231, 68, 156, 159, 74, 129, 180, 26, 41, 63, 17, 63, 19, 44, 123, 27, 39, 227, 44, 156, + 74, 252, 205, 226, 65, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1828, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "96e300" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4396e300d9050480ff", + "cborBytes": [191, 67, 150, 227, 0, 217, 5, 4, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1829, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0581070307fc6efc" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffc480581070307fc6efcff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 252, 72, 5, 129, 7, 3, 7, 252, 110, 252, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1830, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "061de31f3b1c602e9799" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7262631903717469437" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "10cbcbb4c99ee22d91d648ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13762398348294467706" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a020c6ea10340ca32b93" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16765305328609929411" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15394169641752915701" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3873805497880876993" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9ab95864a481056fc" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6628725406569155622" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5fc2b02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14737370932020152599" + } + } + } + ] + }, + "cborHex": "bf4a061de31f3b1c602e97991b64ca0d3cc37facfd4c10cbcbb4c99ee22d91d648ff1bbefddc61a783b07a4aa020c6ea10340ca32b93d8669f1be8aa545eb6c228c39f41af1bd5a313ba34c8eef51b35c28593762517c1ffff49a9ab95864a481056fc9f1b5bfdf6a304294c26ff44d5fc2b021bcc85a8c7de3a8917ff", + "cborBytes": [ + 191, 74, 6, 29, 227, 31, 59, 28, 96, 46, 151, 153, 27, 100, 202, 13, 60, 195, 127, 172, 253, 76, 16, 203, 203, + 180, 201, 158, 226, 45, 145, 214, 72, 255, 27, 190, 253, 220, 97, 167, 131, 176, 122, 74, 160, 32, 198, 234, 16, + 52, 12, 163, 43, 147, 216, 102, 159, 27, 232, 170, 84, 94, 182, 194, 40, 195, 159, 65, 175, 27, 213, 163, 19, 186, + 52, 200, 238, 245, 27, 53, 194, 133, 147, 118, 37, 23, 193, 255, 255, 73, 169, 171, 149, 134, 74, 72, 16, 86, 252, + 159, 27, 91, 253, 246, 163, 4, 41, 76, 38, 255, 68, 213, 252, 43, 2, 27, 204, 133, 168, 199, 222, 58, 137, 23, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1831, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1699220214786436953" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13539502207821433485" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "881f9435094862f1b4db" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13073326115623416246" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1e00a209" + }, + { + "_tag": "ByteArray", + "bytearray": "56fbf276c5" + }, + { + "_tag": "ByteArray", + "bytearray": "137463ae3f51b7629eb37b73" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15267259507393207387" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16744086286237314464" + } + } + } + ] + }, + "cborHex": "bf1b1794d7c851822f59d8669f1bbbe5f985ccd04a8d9f4a881f9435094862f1b4db1bb56dc8d6329231b6441e00a2094556fbf276c54c137463ae3f51b7629eb37b73ffff1bd3e033a1efe09c5b1be85ef1c36baa2da0ff", + "cborBytes": [ + 191, 27, 23, 148, 215, 200, 81, 130, 47, 89, 216, 102, 159, 27, 187, 229, 249, 133, 204, 208, 74, 141, 159, 74, + 136, 31, 148, 53, 9, 72, 98, 241, 180, 219, 27, 181, 109, 200, 214, 50, 146, 49, 182, 68, 30, 0, 162, 9, 69, 86, + 251, 242, 118, 197, 76, 19, 116, 99, 174, 63, 81, 183, 98, 158, 179, 123, 115, 255, 255, 27, 211, 224, 51, 161, + 239, 224, 156, 91, 27, 232, 94, 241, 195, 107, 170, 45, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1832, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6810d66a35f022303b21" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1805121224509003944" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5541457649748177868" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7520043684799747063" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37e48825" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9553910112430850959" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14d0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12721274484947177615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a84c6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13339977828617920743" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11536672234831395307" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "acabc44ded" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1631bcda6e123552b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7851fbcdc2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d737a48f453c716cb2a25b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c87e095e104" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcbe9b7858" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4881174625763530558" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bb85bce4" + }, + { + "_tag": "ByteArray", + "bytearray": "4d8adc" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c30d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "597423864647979751" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bcadf56b93" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4700226617621573648" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6661c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17283581732762931266" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d6208c347d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16589408807598729201" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb8a0a59950126" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4750359047385658639" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6bcd8d20f95e900c71" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5509585259667600998" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12411273656094985586" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2445973418590902934" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f39cb31bc7" + } + ] + } + } + ] + }, + "cborHex": "bf4a6810d66a35f022303b21bf1b190d1430936098a81b4ce7365f5f1c73cc1b685c8fe36fe893f74437e488251b84964ea0e374038f4214d01bb08b0bbe6d84508f432a84c61bb9211f282a5ba0e71ba01a7e460f3cb9ebff45acabc44dedbf491631bcda6e123552b9457851fbcdc24bd737a48f453c716cb2a25b468c87e095e104ff45bcbe9b7858d8669f1b43bd6a75e749173e9f44bb85bce4434d8adcffff42c30dd8669f1b084a79d6f0af12e79f45bcadf56b931b413a8f34b32b7010410effff43c6661cd8669f1befdb9e037bc3d0429f45d6208c347d1be6396b6a82a8a7f1ffff47cb8a0a59950126d8669f1b41ecaa6296fc350f9f496bcd8d20f95e900c711b4c75fa9a463736661bac3db3a1e9b48d721b21f1d7dd69289a9645f39cb31bc7ffffff", + "cborBytes": [ + 191, 74, 104, 16, 214, 106, 53, 240, 34, 48, 59, 33, 191, 27, 25, 13, 20, 48, 147, 96, 152, 168, 27, 76, 231, 54, + 95, 95, 28, 115, 204, 27, 104, 92, 143, 227, 111, 232, 147, 247, 68, 55, 228, 136, 37, 27, 132, 150, 78, 160, 227, + 116, 3, 143, 66, 20, 208, 27, 176, 139, 11, 190, 109, 132, 80, 143, 67, 42, 132, 198, 27, 185, 33, 31, 40, 42, 91, + 160, 231, 27, 160, 26, 126, 70, 15, 60, 185, 235, 255, 69, 172, 171, 196, 77, 237, 191, 73, 22, 49, 188, 218, 110, + 18, 53, 82, 185, 69, 120, 81, 251, 205, 194, 75, 215, 55, 164, 143, 69, 60, 113, 108, 178, 162, 91, 70, 140, 135, + 224, 149, 225, 4, 255, 69, 188, 190, 155, 120, 88, 216, 102, 159, 27, 67, 189, 106, 117, 231, 73, 23, 62, 159, 68, + 187, 133, 188, 228, 67, 77, 138, 220, 255, 255, 66, 195, 13, 216, 102, 159, 27, 8, 74, 121, 214, 240, 175, 18, + 231, 159, 69, 188, 173, 245, 107, 147, 27, 65, 58, 143, 52, 179, 43, 112, 16, 65, 14, 255, 255, 67, 198, 102, 28, + 216, 102, 159, 27, 239, 219, 158, 3, 123, 195, 208, 66, 159, 69, 214, 32, 140, 52, 125, 27, 230, 57, 107, 106, + 130, 168, 167, 241, 255, 255, 71, 203, 138, 10, 89, 149, 1, 38, 216, 102, 159, 27, 65, 236, 170, 98, 150, 252, 53, + 15, 159, 73, 107, 205, 141, 32, 249, 94, 144, 12, 113, 27, 76, 117, 250, 154, 70, 55, 54, 102, 27, 172, 61, 179, + 161, 233, 180, 141, 114, 27, 33, 241, 215, 221, 105, 40, 154, 150, 69, 243, 156, 179, 27, 199, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1833, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff6351" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2810497431274560059" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b98509ec7cdedf0ed9d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10463803316092150514" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10619836056619274166" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3064087960549418155" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05f9f800" + } + } + ] + } + } + ] + }, + "cborHex": "bf1143ff63511b2700e485e9449a3b4a6b98509ec7cdedf0ed9d1b9136e5ad273a22f2801b93613ca08fad4fb6bf1b2a85d3c4111964ab4405f9f800ffff", + "cborBytes": [ + 191, 17, 67, 255, 99, 81, 27, 39, 0, 228, 133, 233, 68, 154, 59, 74, 107, 152, 80, 158, 199, 205, 237, 240, 237, + 157, 27, 145, 54, 229, 173, 39, 58, 34, 242, 128, 27, 147, 97, 60, 160, 143, 173, 79, 182, 191, 27, 42, 133, 211, + 196, 17, 25, 100, 171, 68, 5, 249, 248, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1834, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + } + ] + }, + "cborHex": "bf081bfffffffffffffffe1bfffffffffffffff00fff", + "cborBytes": [ + 191, 8, 27, 255, 255, 255, 255, 255, 255, 255, 254, 27, 255, 255, 255, 255, 255, 255, 255, 240, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1835, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5393259740267601736" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13157311811135315233" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "00c6855623f00d6298331142" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16111585564819721647" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4ecf404d387becf063199" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90f97f35581c276a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5527552486456802178" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "424aaac141" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13526132432530542052" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18417113367783899869" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18196790754958120418" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11206547442595933788" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "774c8eec236dd33c3b63e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7993208476167334395" + } + } + } + ] + }, + "cborHex": "bf1b4ad8b528b810df481bb6982961bdc59d214c00c6855623f00d6298331142bf1bdf97d9b557640daf4be4ecf404d387becf0631994890f97f35581c276a1b4cb5cfb34095bb82ff45424aaac141d8669f1bbbb679c869df8de49f1bff96bb07aadb82dd1bfc87fcc7e96415e21b9b85a786327e2e5cffff4b774c8eec236dd33c3b63e41b6eed94c25d9869fbff", + "cborBytes": [ + 191, 27, 74, 216, 181, 40, 184, 16, 223, 72, 27, 182, 152, 41, 97, 189, 197, 157, 33, 76, 0, 198, 133, 86, 35, + 240, 13, 98, 152, 51, 17, 66, 191, 27, 223, 151, 217, 181, 87, 100, 13, 175, 75, 228, 236, 244, 4, 211, 135, 190, + 207, 6, 49, 153, 72, 144, 249, 127, 53, 88, 28, 39, 106, 27, 76, 181, 207, 179, 64, 149, 187, 130, 255, 69, 66, + 74, 170, 193, 65, 216, 102, 159, 27, 187, 182, 121, 200, 105, 223, 141, 228, 159, 27, 255, 150, 187, 7, 170, 219, + 130, 221, 27, 252, 135, 252, 199, 233, 100, 21, 226, 27, 155, 133, 167, 134, 50, 126, 46, 92, 255, 255, 75, 119, + 76, 142, 236, 35, 109, 211, 60, 59, 99, 228, 27, 110, 237, 148, 194, 93, 152, 105, 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1836, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0590ae01f33394" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12064910015348108983" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0761cdcfd993685c541d90" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7180097851369226104" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b315" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3306588110843568802" + } + }, + { + "_tag": "ByteArray", + "bytearray": "021c1beb20f339593a90ae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5458064260254488837" + } + } + ] + } + } + ] + }, + "cborHex": "bf470590ae01f333941ba76f2bbc7fe06eb74b0761cdcfd993685c541d909f1b63a4d4f43b687f7842b3151b2de35c5e255c62a24b021c1beb20f339593a90ae1b4bbef086d1b95905ffff", + "cborBytes": [ + 191, 71, 5, 144, 174, 1, 243, 51, 148, 27, 167, 111, 43, 188, 127, 224, 110, 183, 75, 7, 97, 205, 207, 217, 147, + 104, 92, 84, 29, 144, 159, 27, 99, 164, 212, 244, 59, 104, 127, 120, 66, 179, 21, 27, 45, 227, 92, 94, 37, 92, 98, + 162, 75, 2, 28, 27, 235, 32, 243, 57, 89, 58, 144, 174, 27, 75, 190, 240, 134, 209, 185, 89, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1837, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13734515216009297853" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7955540478400049746" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "ByteArray", + "bytearray": "faac05470575061d" + }, + { + "_tag": "ByteArray", + "bytearray": "f94a02" + }, + { + "_tag": "ByteArray", + "bytearray": "a6530700498780a8c9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8141845459199287447" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12810978632737691348" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b46402" + } + } + ] + }, + "cborHex": "bf081bbe9accd2046e7fbd09d8669f1b6e67c1ea3346b2529f0b48faac05470575061d43f94a0249a6530700498780a8c91b70fda54ecbb36097ffff1bb1c9bd30e57316d41bffffffffffffffed1bffffffffffffffeb43b46402ff", + "cborBytes": [ + 191, 8, 27, 190, 154, 204, 210, 4, 110, 127, 189, 9, 216, 102, 159, 27, 110, 103, 193, 234, 51, 70, 178, 82, 159, + 11, 72, 250, 172, 5, 71, 5, 117, 6, 29, 67, 249, 74, 2, 73, 166, 83, 7, 0, 73, 135, 128, 168, 201, 27, 112, 253, + 165, 78, 203, 179, 96, 151, 255, 255, 27, 177, 201, 189, 48, 229, 115, 22, 212, 27, 255, 255, 255, 255, 255, 255, + 255, 237, 27, 255, 255, 255, 255, 255, 255, 255, 235, 67, 180, 100, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1838, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6273566125027604371" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f2e0702f838d" + }, + { + "_tag": "ByteArray", + "bytearray": "1bff" + } + ] + } + } + ] + }, + "cborHex": "bf1b57102f26e531b793d8669f1bfffffffffffffff29f46f2e0702f838d421bffffffff", + "cborBytes": [ + 191, 27, 87, 16, 47, 38, 229, 49, 183, 147, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 70, + 242, 224, 112, 47, 131, 141, 66, 27, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1839, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1682b5540da23322e0cab4f7" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4c1682b5540da23322e0cab4f7a0ff", + "cborBytes": [191, 76, 22, 130, 181, 84, 13, 162, 51, 34, 224, 202, 180, 247, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1840, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "756f55" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9508880283699317681" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac333b70" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96f9d217b033d579" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c51981efc76e534727" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5371049357790912610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5205905488179805027" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7760b7f248a75160d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7946603423265846999" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13269089244706452553" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10703941526821240285" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10694407214728020040" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf43756f551b83f6543ce19d0bb144ac333b704896f9d217b033d57949c51981efc76e534727d8669f1b4a89ccef1237a0629f1b483f17759d36bb63ffff49d7760b7f248a75160dbf1b6e4801b5e6a9f6d71bb825465d8baf34491b948c0a1b52bb7ddd1b946a2ab34d3d0048ffff", + "cborBytes": [ + 191, 67, 117, 111, 85, 27, 131, 246, 84, 60, 225, 157, 11, 177, 68, 172, 51, 59, 112, 72, 150, 249, 210, 23, 176, + 51, 213, 121, 73, 197, 25, 129, 239, 199, 110, 83, 71, 39, 216, 102, 159, 27, 74, 137, 204, 239, 18, 55, 160, 98, + 159, 27, 72, 63, 23, 117, 157, 54, 187, 99, 255, 255, 73, 215, 118, 11, 127, 36, 138, 117, 22, 13, 191, 27, 110, + 72, 1, 181, 230, 169, 246, 215, 27, 184, 37, 70, 93, 139, 175, 52, 73, 27, 148, 140, 10, 27, 82, 187, 125, 221, + 27, 148, 106, 42, 179, 77, 61, 0, 72, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1841, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1aa2532f36" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6127504106358374339" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10844676006574057035" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cacc285" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3966855394808416968" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "979d62e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13351316626776771874" + } + }, + { + "_tag": "ByteArray", + "bytearray": "78c1cb3f97d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7800242743141721683" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c80da6142a084fba77bd8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3742c4ab106de29cc1293bc4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a015" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9753902077019447157" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1b2" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6846714038719088618" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11520583862138357393" + } + }, + { + "_tag": "ByteArray", + "bytearray": "46c3d83847ab60ec23" + }, + { + "_tag": "ByteArray", + "bytearray": "7646053df6be94c0913f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f510" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2988063696603454355" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12019601883009596324" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3743310836645091680" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54922977" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8635773342298930695" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11468468716459184604" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11384250871321745165" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0af1a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16637126202440813660" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8032502" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17877711861928784286" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4932010965854527032" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf451aa2532f36bf1b55094485133cffc31b9680075ed40c664bff441cacc285d8669f1b370d19f6dae5cac89f44979d62e51bb94967bbd6cbcd224678c1cb3f97d51b6c4007728ac7e653ffff4b8c80da6142a084fba77bd84c3742c4ab106de29cc1293bc442a0151b875cd242bab05f7542c1b29f1b5f046a248c8807ea1b9fe155fbe3dac6914946c3d83847ab60ec234a7646053df6be94c0913fff42f510bf1b2977bc19c24a1b931ba6ce343ae2673ba41b33f2e95f7e19d96044549229771b77d86e19bc83fe071b9f282f88fa3ad1dc1b9dfcfbd9e310570d43d0af1a1be6e2f22243d40c5c44d80325021bf81a6437df0d719e1b447205d7b0171e38ffff", + "cborBytes": [ + 191, 69, 26, 162, 83, 47, 54, 191, 27, 85, 9, 68, 133, 19, 60, 255, 195, 27, 150, 128, 7, 94, 212, 12, 102, 75, + 255, 68, 28, 172, 194, 133, 216, 102, 159, 27, 55, 13, 25, 246, 218, 229, 202, 200, 159, 68, 151, 157, 98, 229, + 27, 185, 73, 103, 187, 214, 203, 205, 34, 70, 120, 193, 203, 63, 151, 213, 27, 108, 64, 7, 114, 138, 199, 230, 83, + 255, 255, 75, 140, 128, 218, 97, 66, 160, 132, 251, 167, 123, 216, 76, 55, 66, 196, 171, 16, 109, 226, 156, 193, + 41, 59, 196, 66, 160, 21, 27, 135, 92, 210, 66, 186, 176, 95, 117, 66, 193, 178, 159, 27, 95, 4, 106, 36, 140, + 136, 7, 234, 27, 159, 225, 85, 251, 227, 218, 198, 145, 73, 70, 195, 216, 56, 71, 171, 96, 236, 35, 74, 118, 70, + 5, 61, 246, 190, 148, 192, 145, 63, 255, 66, 245, 16, 191, 27, 41, 119, 188, 25, 194, 74, 27, 147, 27, 166, 206, + 52, 58, 226, 103, 59, 164, 27, 51, 242, 233, 95, 126, 25, 217, 96, 68, 84, 146, 41, 119, 27, 119, 216, 110, 25, + 188, 131, 254, 7, 27, 159, 40, 47, 136, 250, 58, 209, 220, 27, 157, 252, 251, 217, 227, 16, 87, 13, 67, 208, 175, + 26, 27, 230, 226, 242, 34, 67, 212, 12, 92, 68, 216, 3, 37, 2, 27, 248, 26, 100, 55, 223, 13, 113, 158, 27, 68, + 114, 5, 215, 176, 23, 30, 56, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1842, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d0bd0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "059e" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf03bf00432d0bd00442059eff1280ff", + "cborBytes": [191, 3, 191, 0, 67, 45, 11, 208, 4, 66, 5, 158, 255, 18, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1843, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c3570d1cc05" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9240298366401031091" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4044988491921726356" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8276679885933387590" + } + }, + { + "_tag": "ByteArray", + "bytearray": "410c6886" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10368687208643787925" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51abd4db34d6699fd6cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9846108141911203923" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f5abf60b29712" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00b4b77ee13c543600" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f768cf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "26efef754456ec24af8c4977" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15852888503797867324" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3248" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acfce862" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36d448fdb5fec9ba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "407ed88c291552c68d8da4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6deaafd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4703f7473cb87cc35c499d7c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12c03fff12be6a34" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0ef2e031f8155a7bf" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5282b518" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f58675982b5a4fb657e5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1f074c8ec6ebdcd7" + }, + { + "_tag": "ByteArray", + "bytearray": "bdb3eb31e46ffa57eb08" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc651e67bcd5ec279e7c1aea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b" + } + } + ] + }, + "cborHex": "bf464c3570d1cc059f1b803c226833f4abb31b3822af9a25899b941b72dcac8128ae1f4644410c68861b8fe4fa14a2597c95ff4a51abd4db34d6699fd6cf1b88a467302ab2e053475f5abf60b29712bf4900b4b77ee13c54360043f768cf4c26efef754456ec24af8c49771bdc00c61a1cbee33c42324844acfce8624836d448fdb5fec9ba4b407ed88c291552c68d8da44241d844b6deaafd4c4703f7473cb87cc35c499d7c4812c03fff12be6a34ff49f0ef2e031f8155a7bf9f445282b518ff4af58675982b5a4fb657e59f481f074c8ec6ebdcd74abdb3eb31e46ffa57eb08ff4cfc651e67bcd5ec279e7c1aea412bff", + "cborBytes": [ + 191, 70, 76, 53, 112, 209, 204, 5, 159, 27, 128, 60, 34, 104, 51, 244, 171, 179, 27, 56, 34, 175, 154, 37, 137, + 155, 148, 27, 114, 220, 172, 129, 40, 174, 31, 70, 68, 65, 12, 104, 134, 27, 143, 228, 250, 20, 162, 89, 124, 149, + 255, 74, 81, 171, 212, 219, 52, 214, 105, 159, 214, 207, 27, 136, 164, 103, 48, 42, 178, 224, 83, 71, 95, 90, 191, + 96, 178, 151, 18, 191, 73, 0, 180, 183, 126, 225, 60, 84, 54, 0, 67, 247, 104, 207, 76, 38, 239, 239, 117, 68, 86, + 236, 36, 175, 140, 73, 119, 27, 220, 0, 198, 26, 28, 190, 227, 60, 66, 50, 72, 68, 172, 252, 232, 98, 72, 54, 212, + 72, 253, 181, 254, 201, 186, 75, 64, 126, 216, 140, 41, 21, 82, 198, 141, 141, 164, 66, 65, 216, 68, 182, 222, + 170, 253, 76, 71, 3, 247, 71, 60, 184, 124, 195, 92, 73, 157, 124, 72, 18, 192, 63, 255, 18, 190, 106, 52, 255, + 73, 240, 239, 46, 3, 31, 129, 85, 167, 191, 159, 68, 82, 130, 181, 24, 255, 74, 245, 134, 117, 152, 43, 90, 79, + 182, 87, 229, 159, 72, 31, 7, 76, 142, 198, 235, 220, 215, 74, 189, 179, 235, 49, 228, 111, 250, 87, 235, 8, 255, + 76, 252, 101, 30, 103, 188, 213, 236, 39, 158, 124, 26, 234, 65, 43, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1844, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11111609830810897933" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6837589373087230133" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12547720170266791873" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7fdd53cefd1016670d0d640c" + } + ] + } + } + ] + }, + "cborHex": "bf04090c9f1b9a345e44f038ce0d1b5ee3ff4ec6d9a8b51bae227503a1c18fc14c7fdd53cefd1016670d0d640cffff", + "cborBytes": [ + 191, 4, 9, 12, 159, 27, 154, 52, 94, 68, 240, 56, 206, 13, 27, 94, 227, 255, 78, 198, 217, 168, 181, 27, 174, 34, + 117, 3, 161, 193, 143, 193, 76, 127, 221, 83, 206, 253, 16, 22, 103, 13, 13, 100, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1845, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0671bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6603271028448903520" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e154f2daf9cfdb2" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7415199357526707775" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11194254886352001829" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5689413500452571597" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5547" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6268942092291194421" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6420235735442617477" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73bc6ad3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df4efa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14433334375794804949" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "875572047633796328" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e59c7bcf0bc02b5536" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16458330842859022392" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a9ca1c62" + } + ] + } + } + ] + }, + "cborHex": "bf430671bf1b5ba38803c6534160481e154f2daf9cfdb29f1b66e814873c158e3f1b9b59fb826a311b251b4ef4db6f52c989cdff425547d8669f1b56ffc19e6082be359f1b59194262b1537485ffff4473bc6ad341c143df4efad8669f1bc84d8124c9af08d59f1b0c26a8236a794ce849e59c7bcf0bc02b55361be467bcb39c77a83844a9ca1c62ffffff", + "cborBytes": [ + 191, 67, 6, 113, 191, 27, 91, 163, 136, 3, 198, 83, 65, 96, 72, 30, 21, 79, 45, 175, 156, 253, 178, 159, 27, 102, + 232, 20, 135, 60, 21, 142, 63, 27, 155, 89, 251, 130, 106, 49, 27, 37, 27, 78, 244, 219, 111, 82, 201, 137, 205, + 255, 66, 85, 71, 216, 102, 159, 27, 86, 255, 193, 158, 96, 130, 190, 53, 159, 27, 89, 25, 66, 98, 177, 83, 116, + 133, 255, 255, 68, 115, 188, 106, 211, 65, 193, 67, 223, 78, 250, 216, 102, 159, 27, 200, 77, 129, 36, 201, 175, + 8, 213, 159, 27, 12, 38, 168, 35, 106, 121, 76, 232, 73, 229, 156, 123, 207, 11, 192, 43, 85, 54, 27, 228, 103, + 188, 179, 156, 119, 168, 56, 68, 169, 202, 28, 98, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1846, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f93056a1b4bac34dcb9759ea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7131720312099467675" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6973063669411793424" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1611968631116026210" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "020349" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5634636631367169391" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4244177909710599181" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0a4cf93056a1b4bac34dcb9759ea1b62f8f5d6a020719bbf0e1b60c54c766378ca101b165edcedeebe5162430203491b4e324029a30b356f051bffffffffffffffed1b3ae659527fdc340dffff", + "cborBytes": [ + 191, 10, 76, 249, 48, 86, 161, 180, 186, 195, 77, 203, 151, 89, 234, 27, 98, 248, 245, 214, 160, 32, 113, 155, + 191, 14, 27, 96, 197, 76, 118, 99, 120, 202, 16, 27, 22, 94, 220, 237, 238, 190, 81, 98, 67, 2, 3, 73, 27, 78, 50, + 64, 41, 163, 11, 53, 111, 5, 27, 255, 255, 255, 255, 255, 255, 255, 237, 27, 58, 230, 89, 82, 127, 220, 52, 13, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1847, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17063948251114398731" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4ca9fbaf28" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18089861972090004795" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c0b47c54e" + }, + { + "_tag": "ByteArray", + "bytearray": "fc898f86ee809701ccbfc3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11226189876658280713" + } + } + ] + } + } + ] + }, + "cborHex": "bf1beccf52869552640b9f454ca9fbaf281bfb0c199e9245a53b454c0b47c54e4bfc898f86ee809701ccbfc31b9bcb7036c34d9909ffff", + "cborBytes": [ + 191, 27, 236, 207, 82, 134, 149, 82, 100, 11, 159, 69, 76, 169, 251, 175, 40, 27, 251, 12, 25, 158, 146, 69, 165, + 59, 69, 76, 11, 71, 197, 78, 75, 252, 137, 143, 134, 238, 128, 151, 1, 204, 191, 195, 27, 155, 203, 112, 54, 195, + 77, 153, 9, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1848, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "712daa424c435304cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "015e041c9db9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a019b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5102180294614326332" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1596943155737565283" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11153149334312061516" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8826582706807860885" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8af7771c64" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2139074973177515011" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a85f85b58c622d266fd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6089402774122174019" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92db96" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a79cf598c4c31897" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27e7c2ba78ecd4ed423a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8935254209139076070" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45232c3c1fd4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d3c342f72fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3e4b342380d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13420923854085548025" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c42a2219c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12866784553622570504" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d18b9fd5ed8b240f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9872280294938945693" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb0ff9fe2f11c260" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe6f4ea76604c532" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12740339398548252501" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6165094217129430904" + } + } + ] + } + } + ] + }, + "cborHex": "bf49712daa424c435304cc46015e041c9db9438a019bbf1b46ce95f2087c1c3c1b16297b56d43a98631b9ac7f23a468e0a4c1b7a7e5234e3e36e95ff458af7771c64bf1b1daf855ad42c8c034a0a85f85b58c622d266fd1b5481e78f5dd496434392db96ff48a79cf598c4c31897bf4a27e7c2ba78ecd4ed423a1b7c00665cb98c6be64645232c3c1fd4466d3c342f72fd46c3e4b342380d1bba40b3236055e7f945c42a2219c01bb29000616028060848d18b9fd5ed8b240f1b8901629f66eca89dff48eb0ff9fe2f11c260a048fe6f4ea76604c532d8669f1bb0cec72e8861e7559f1b558ed086c2d08f78ffffff", + "cborBytes": [ + 191, 73, 113, 45, 170, 66, 76, 67, 83, 4, 204, 70, 1, 94, 4, 28, 157, 185, 67, 138, 1, 155, 191, 27, 70, 206, 149, + 242, 8, 124, 28, 60, 27, 22, 41, 123, 86, 212, 58, 152, 99, 27, 154, 199, 242, 58, 70, 142, 10, 76, 27, 122, 126, + 82, 52, 227, 227, 110, 149, 255, 69, 138, 247, 119, 28, 100, 191, 27, 29, 175, 133, 90, 212, 44, 140, 3, 74, 10, + 133, 248, 91, 88, 198, 34, 210, 102, 253, 27, 84, 129, 231, 143, 93, 212, 150, 67, 67, 146, 219, 150, 255, 72, + 167, 156, 245, 152, 196, 195, 24, 151, 191, 74, 39, 231, 194, 186, 120, 236, 212, 237, 66, 58, 27, 124, 0, 102, + 92, 185, 140, 107, 230, 70, 69, 35, 44, 60, 31, 212, 70, 109, 60, 52, 47, 114, 253, 70, 195, 228, 179, 66, 56, 13, + 27, 186, 64, 179, 35, 96, 85, 231, 249, 69, 196, 42, 34, 25, 192, 27, 178, 144, 0, 97, 96, 40, 6, 8, 72, 209, 139, + 159, 213, 237, 139, 36, 15, 27, 137, 1, 98, 159, 102, 236, 168, 157, 255, 72, 235, 15, 249, 254, 47, 17, 194, 96, + 160, 72, 254, 111, 78, 167, 102, 4, 197, 50, 216, 102, 159, 27, 176, 206, 199, 46, 136, 97, 231, 85, 159, 27, 85, + 142, 208, 134, 194, 208, 143, 120, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1849, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00acfa0766067c0306" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "229bcaafa6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f225fee266b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb9505" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5719e451e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a3d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e282bea09ef90cae8abc7efa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7d306" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff400624" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15925205593995133552" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffff4900acfa0766067c030645229bcaafa6bf464f225fee266b43cb9505455719e451e60f428a3d4ce282bea09ef90cae8abc7efa43a7d30644ff40062441fc1bdd01b21cc524c270ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 255, 73, 0, 172, 250, 7, 102, 6, 124, 3, 6, 69, 34, 155, 202, 175, + 166, 191, 70, 79, 34, 95, 238, 38, 107, 67, 203, 149, 5, 69, 87, 25, 228, 81, 230, 15, 66, 138, 61, 76, 226, 130, + 190, 160, 158, 249, 12, 174, 138, 188, 126, 250, 67, 167, 211, 6, 68, 255, 64, 6, 36, 65, 252, 27, 221, 1, 178, + 28, 197, 36, 194, 112, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1850, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0195258d2ba7f2794cf0eea1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ab7fa420b5cad5c7dc6" + } + } + ] + }, + "cborHex": "bf4c0195258d2ba7f2794cf0eea14a4ab7fa420b5cad5c7dc6ff", + "cborBytes": [ + 191, 76, 1, 149, 37, 141, 43, 167, 242, 121, 76, 240, 238, 161, 74, 74, 183, 250, 66, 11, 92, 173, 92, 125, 198, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1851, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "56" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4bfd88" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1978780922214564604" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd0203" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3589189620132163720" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e300" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + }, + "cborHex": "bf41569f434bfd881b1b760ac3c4eb42fcff43bd02031b31cf5cf1737f308842e30011ff", + "cborBytes": [ + 191, 65, 86, 159, 67, 75, 253, 136, 27, 27, 118, 10, 195, 196, 235, 66, 252, 255, 67, 189, 2, 3, 27, 49, 207, 92, + 241, 115, 127, 48, 136, 66, 227, 0, 17, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1852, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3229600272608384037" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10592208704097642275" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "00fafd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05c438e12e4c460264f9" + } + } + ] + }, + "cborHex": "bf00d8669f1b2cd1d8563753d4259f1b92ff15b24a8a672312ffff4300fafd4a05c438e12e4c460264f9ff", + "cborBytes": [ + 191, 0, 216, 102, 159, 27, 44, 209, 216, 86, 55, 83, 212, 37, 159, 27, 146, 255, 21, 178, 74, 138, 103, 35, 18, + 255, 255, 67, 0, 250, 253, 74, 5, 196, 56, 225, 46, 76, 70, 2, 100, 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1853, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5946404084370195976" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47797733d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aebac99e6768b7c0610292e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f0c5c285ec7d9" + } + } + ] + }, + "cborHex": "bf1b5285df0263d146084547797733d14caebac99e6768b7c0610292e2478f0c5c285ec7d9ff", + "cborBytes": [ + 191, 27, 82, 133, 223, 2, 99, 209, 70, 8, 69, 71, 121, 119, 51, 209, 76, 174, 186, 201, 158, 103, 104, 183, 192, + 97, 2, 146, 226, 71, 143, 12, 92, 40, 94, 199, 217, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1854, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb07" + } + } + ] + }, + "cborHex": "bf411e1bfffffffffffffff7413d42fb07ff", + "cborBytes": [191, 65, 30, 27, 255, 255, 255, 255, 255, 255, 255, 247, 65, 61, 66, 251, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1855, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ab69e64231e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "412a6174" + }, + { + "_tag": "ByteArray", + "bytearray": "5a4cb0eb2eaf" + }, + { + "_tag": "ByteArray", + "bytearray": "e6f0e6244e625415d02d" + }, + { + "_tag": "ByteArray", + "bytearray": "503e70189865374db5cbce31" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f28dbb419b2227d4a60" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1097cecd8121c1f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e3136257b39947068fd5e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "778eaf83bd49" + }, + { + "_tag": "ByteArray", + "bytearray": "c004e68ec4a9f901" + }, + { + "_tag": "ByteArray", + "bytearray": "7442e3dd508e9eaa" + }, + { + "_tag": "ByteArray", + "bytearray": "99" + }, + { + "_tag": "ByteArray", + "bytearray": "44c288" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c29c2005751c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5fedd27f67c07dbf728e4" + } + } + ] + }, + "cborHex": "bf462ab69e64231e9f44412a6174465a4cb0eb2eaf4ae6f0e6244e625415d02d4c503e70189865374db5cbce31ff4a6f28dbb419b2227d4a6048b1097cecd8121c1f4b8e3136257b39947068fd5e9f46778eaf83bd4948c004e68ec4a9f901487442e3dd508e9eaa41994344c288ff46c29c2005751c4bd5fedd27f67c07dbf728e4ff", + "cborBytes": [ + 191, 70, 42, 182, 158, 100, 35, 30, 159, 68, 65, 42, 97, 116, 70, 90, 76, 176, 235, 46, 175, 74, 230, 240, 230, + 36, 78, 98, 84, 21, 208, 45, 76, 80, 62, 112, 24, 152, 101, 55, 77, 181, 203, 206, 49, 255, 74, 111, 40, 219, 180, + 25, 178, 34, 125, 74, 96, 72, 177, 9, 124, 236, 216, 18, 28, 31, 75, 142, 49, 54, 37, 123, 57, 148, 112, 104, 253, + 94, 159, 70, 119, 142, 175, 131, 189, 73, 72, 192, 4, 230, 142, 196, 169, 249, 1, 72, 116, 66, 227, 221, 80, 142, + 158, 170, 65, 153, 67, 68, 194, 136, 255, 70, 194, 156, 32, 5, 117, 28, 75, 213, 254, 221, 39, 246, 124, 7, 219, + 247, 40, 228, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1856, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6231" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12888784067686841301" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae936a8bdc78d40b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bb0d107982798276c0118" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4308158576760927916" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f27d36" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4262311bb2de28d265303bd548ae936a8bdc78d40bbf4b2bb0d107982798276c01181b3bc9a76663e336acff43f27d3680ff", + "cborBytes": [ + 191, 66, 98, 49, 27, 178, 222, 40, 210, 101, 48, 59, 213, 72, 174, 147, 106, 139, 220, 120, 212, 11, 191, 75, 43, + 176, 209, 7, 152, 39, 152, 39, 108, 1, 24, 27, 59, 201, 167, 102, 99, 227, 54, 172, 255, 67, 242, 125, 54, 128, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1857, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6525594690347863958" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02238525e12ab44fd0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "96061001319339286" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + } + ] + }, + "cborHex": "bf1b5a8f91cbfa5c0f96bf4902238525e12ab44fd01b015546f8c4685516ff1bfffffffffffffff11bfffffffffffffff0ff", + "cborBytes": [ + 191, 27, 90, 143, 145, 203, 250, 92, 15, 150, 191, 73, 2, 35, 133, 37, 225, 42, 180, 79, 208, 27, 1, 85, 70, 248, + 196, 104, 85, 22, 255, 27, 255, 255, 255, 255, 255, 255, 255, 241, 27, 255, 255, 255, 255, 255, 255, 255, 240, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1858, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "289c38a993239c2cca2b5515" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2910790747221146854" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6970fcaf98560041792f6a8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12806320027517365142" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8376983340071244281" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cf54f129fd428e6b8b15f2" + }, + { + "_tag": "ByteArray", + "bytearray": "c4" + } + ] + } + } + ] + }, + "cborHex": "bf4c289c38a993239c2cca2b55151b286534c3379c3ce64cd6970fcaf98560041792f6a8d8669f1bb1b93036d824ab969f1b744105f6f24fd1f94bcf54f129fd428e6b8b15f241c4ffffff", + "cborBytes": [ + 191, 76, 40, 156, 56, 169, 147, 35, 156, 44, 202, 43, 85, 21, 27, 40, 101, 52, 195, 55, 156, 60, 230, 76, 214, + 151, 15, 202, 249, 133, 96, 4, 23, 146, 246, 168, 216, 102, 159, 27, 177, 185, 48, 54, 216, 36, 171, 150, 159, 27, + 116, 65, 5, 246, 242, 79, 209, 249, 75, 207, 84, 241, 41, 253, 66, 142, 107, 139, 21, 242, 65, 196, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1859, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17536237433612241708" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a387a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17703209576752697159" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09a2fd8da8fbd8239c" + } + } + ] + }, + "cborHex": "bf1bf35d3b08ef5d8b2c43a387a71bf5ae6f507ea34f474909a2fd8da8fbd8239cff", + "cborBytes": [ + 191, 27, 243, 93, 59, 8, 239, 93, 139, 44, 67, 163, 135, 167, 27, 245, 174, 111, 80, 126, 163, 79, 71, 73, 9, 162, + 253, 141, 168, 251, 216, 35, 156, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1860, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13361394954405679058" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "480634296532847164" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5914116650155046949" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "610303aecd9e942f1f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12208472873091923162" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ea979" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d764cbc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cea6422e0f87f33b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "811cbb53d36da2" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "041c4903f9fb07db" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff05f7040200a3552d01" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bb96d35eb590c0fd2bf1b06ab8e589fb5ca3c1b521329c24cb6f82549610303aecd9e942f1f1ba96d356512a2fcda439ea979441d764cbc48cea6422e0f87f33b47811cbb53d36da2ff48041c4903f9fb07dbbf094aff05f7040200a3552d01114129ffff", + "cborBytes": [ + 191, 27, 185, 109, 53, 235, 89, 12, 15, 210, 191, 27, 6, 171, 142, 88, 159, 181, 202, 60, 27, 82, 19, 41, 194, 76, + 182, 248, 37, 73, 97, 3, 3, 174, 205, 158, 148, 47, 31, 27, 169, 109, 53, 101, 18, 162, 252, 218, 67, 158, 169, + 121, 68, 29, 118, 76, 188, 72, 206, 166, 66, 46, 15, 135, 243, 59, 71, 129, 28, 187, 83, 211, 109, 162, 255, 72, + 4, 28, 73, 3, 249, 251, 7, 219, 191, 9, 74, 255, 5, 247, 4, 2, 0, 163, 85, 45, 1, 17, 65, 41, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1861, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13683526290491384422" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8e49a7870257576d37ffcce" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13791743977102098594" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e7bceba74eb6e063f5efd6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1161958866401829433" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7453276ce2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11697962961422865152" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "00216c0a00f68a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1efb544f2a2a7244" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17102655971238412859" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a8f5c13b59227e8e30c7" + } + ] + } + } + ] + }, + "cborHex": "bf1bbde5a6a9ab7522664cc8e49a7870257576d37ffcce1bbf661e134c4dc0a29f4be7bceba74eb6e063f5efd61b10201b6ec37f2239457453276ce21ba2578355bf495300ff4700216c0a00f68a42a4b5481efb544f2a2a7244d8669f1bed58d6fdf961023b9f4aa8f5c13b59227e8e30c7ffffff", + "cborBytes": [ + 191, 27, 189, 229, 166, 169, 171, 117, 34, 102, 76, 200, 228, 154, 120, 112, 37, 117, 118, 211, 127, 252, 206, 27, + 191, 102, 30, 19, 76, 77, 192, 162, 159, 75, 231, 188, 235, 167, 78, 182, 224, 99, 245, 239, 214, 27, 16, 32, 27, + 110, 195, 127, 34, 57, 69, 116, 83, 39, 108, 226, 27, 162, 87, 131, 85, 191, 73, 83, 0, 255, 71, 0, 33, 108, 10, + 0, 246, 138, 66, 164, 181, 72, 30, 251, 84, 79, 42, 42, 114, 68, 216, 102, 159, 27, 237, 88, 214, 253, 249, 97, 2, + 59, 159, 74, 168, 245, 193, 59, 89, 34, 126, 142, 48, 199, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1862, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc95052e1a1bbbc22d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12116635920367806704" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12117116105864147721" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + } + } + ] + }, + "cborHex": "bf49fc95052e1a1bbbc22dd8669f1ba826f02c4242e8f09f1ba828a4e6283273090e0514ffffff", + "cborBytes": [ + 191, 73, 252, 149, 5, 46, 26, 27, 187, 194, 45, 216, 102, 159, 27, 168, 38, 240, 44, 66, 66, 232, 240, 159, 27, + 168, 40, 164, 230, 40, 50, 115, 9, 14, 5, 20, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1863, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48d0d3a843cdf356" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4129912572886038570" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85fc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2344831319876585456" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f07b0fbff55b8650d3e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8937551231151043094" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6392177167039563961" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10408037265692210831" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af2361214d9a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10530300619254434852" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b051865edd554e8a31" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15402987662496600573" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12929604657372099172" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15493081859504717146" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27f0be01ec1999e6" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b95dbceb146febdd6" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9472028804086241500" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edf7029f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1408406338183752847" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd56644be6cce8ed2c67" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3604410587842871104" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17311354183316722866" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4863161598209675061" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61479cdb84cb9a0fb72714" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12680657810508482551" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16642629297747545863" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16169647028936386278" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8641859822439581525" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4848d0d3a843cdf3561b3950659a944ab82a4285fcbf1b208a83a9777447f04a6f07b0fbff55b8650d3e1b7c088f7dd69cf2161b58b5934426c188b91b9070c6bfbe9cb68f46af2361214d9a1b9223249f0cbc8c2449b051865edd554e8a311bd5c267aba6d591fd1bb36f2eee90e672641bd7027bdd87d3bd5a4827f0be01ec1999e6ff498b95dbceb146febdd6a042c9b31b8373680329d418dc44edf7029fbf1b138baa1a3ed9ec8f4acd56644be6cce8ed2c671b320570552907ff401bf03e48e90590d4b21b437d6bb51a9bcf354b61479cdb84cb9a0fb727141baffabf17f9a407f71be6f67f2b7cc04f071be066204d673426e61b77ee0db8d33b4755ffff", + "cborBytes": [ + 191, 72, 72, 208, 211, 168, 67, 205, 243, 86, 27, 57, 80, 101, 154, 148, 74, 184, 42, 66, 133, 252, 191, 27, 32, + 138, 131, 169, 119, 116, 71, 240, 74, 111, 7, 176, 251, 255, 85, 184, 101, 13, 62, 27, 124, 8, 143, 125, 214, 156, + 242, 22, 27, 88, 181, 147, 68, 38, 193, 136, 185, 27, 144, 112, 198, 191, 190, 156, 182, 143, 70, 175, 35, 97, 33, + 77, 154, 27, 146, 35, 36, 159, 12, 188, 140, 36, 73, 176, 81, 134, 94, 221, 85, 78, 138, 49, 27, 213, 194, 103, + 171, 166, 213, 145, 253, 27, 179, 111, 46, 238, 144, 230, 114, 100, 27, 215, 2, 123, 221, 135, 211, 189, 90, 72, + 39, 240, 190, 1, 236, 25, 153, 230, 255, 73, 139, 149, 219, 206, 177, 70, 254, 189, 214, 160, 66, 201, 179, 27, + 131, 115, 104, 3, 41, 212, 24, 220, 68, 237, 247, 2, 159, 191, 27, 19, 139, 170, 26, 62, 217, 236, 143, 74, 205, + 86, 100, 75, 230, 204, 232, 237, 44, 103, 27, 50, 5, 112, 85, 41, 7, 255, 64, 27, 240, 62, 72, 233, 5, 144, 212, + 178, 27, 67, 125, 107, 181, 26, 155, 207, 53, 75, 97, 71, 156, 219, 132, 203, 154, 15, 183, 39, 20, 27, 175, 250, + 191, 23, 249, 164, 7, 247, 27, 230, 246, 127, 43, 124, 192, 79, 7, 27, 224, 102, 32, 77, 103, 52, 38, 230, 27, + 119, 238, 13, 184, 211, 59, 71, 85, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1864, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "88760aaf0afbfdea8cfc03" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2a" + } + ] + } + } + ] + }, + "cborHex": "bf4b88760aaf0afbfdea8cfc039f412affff", + "cborBytes": [191, 75, 136, 118, 10, 175, 10, 251, 253, 234, 140, 252, 3, 159, 65, 42, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1865, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7108854032486000751" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15818801178530361246" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9178185277945910919" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "390c8b4beeefa6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe06a9030402060703a3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6a109cf" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b62a7b914066e686f9f00ff1bdb87abdc3ad52f9e1b7f5f76e1d6af968747390c8b4beeefa64afe06a9030402060703a344a6a109cfd9050680ff", + "cborBytes": [ + 191, 27, 98, 167, 185, 20, 6, 110, 104, 111, 159, 0, 255, 27, 219, 135, 171, 220, 58, 213, 47, 158, 27, 127, 95, + 118, 225, 214, 175, 150, 135, 71, 57, 12, 139, 75, 238, 239, 166, 74, 254, 6, 169, 3, 4, 2, 6, 7, 3, 163, 68, 166, + 161, 9, 207, 217, 5, 6, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1866, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "020603" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff39" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e5030a47ac8fc695a0b371a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "627607736480347036" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14076822319606743421" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7263452682340614889" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "852e64a511f24e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0871" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10759968652540003347" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d346cf5210d0e4dc6b4df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13930369603707483326" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4302060342ff394c0e5030a47ac8fc695a0b371abf1b08b5b5e93f32b39c1bc35aeb514673417d1b64ccf7bb2dc542e947852e64a511f24e4208711b9553167b10fc44134b9d346cf5210d0e4dc6b4df1bc1529d592ae234beffff", + "cborBytes": [ + 191, 67, 2, 6, 3, 66, 255, 57, 76, 14, 80, 48, 164, 122, 200, 252, 105, 90, 11, 55, 26, 191, 27, 8, 181, 181, 233, + 63, 50, 179, 156, 27, 195, 90, 235, 81, 70, 115, 65, 125, 27, 100, 204, 247, 187, 45, 197, 66, 233, 71, 133, 46, + 100, 165, 17, 242, 78, 66, 8, 113, 27, 149, 83, 22, 123, 16, 252, 68, 19, 75, 157, 52, 108, 245, 33, 13, 14, 77, + 198, 180, 223, 27, 193, 82, 157, 89, 42, 226, 52, 190, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1867, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4700377677902243492" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17516707418539781201" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13072011908580234302" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14926410645116027446" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ccd30a3249eb564b39de6901" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3750791635720832218" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13356750305178948259" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1b8caf589d28" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11789017892928989355" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15954641307449107057" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4226036369418820376" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbb50f8a7997e59c3ce84b41" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "701040096725995792" + } + } + } + ] + }, + "cborHex": "bf1b413b18982989e6a4d8669f1bf317d896f4836c519f41fb1bb5691d928699d43effff1bcf254365f1c002369f4cccd30a3249eb564b39de69011b340d7d1ec1a584da1bb95cb5a2adc812a3461b8caf589d281ba39b01500ec1a8abff1bdd6a45bce14722711b3aa5e5afff171b184ccbb50f8a7997e59c3ce84b411b09ba9840f2a89110ff", + "cborBytes": [ + 191, 27, 65, 59, 24, 152, 41, 137, 230, 164, 216, 102, 159, 27, 243, 23, 216, 150, 244, 131, 108, 81, 159, 65, + 251, 27, 181, 105, 29, 146, 134, 153, 212, 62, 255, 255, 27, 207, 37, 67, 101, 241, 192, 2, 54, 159, 76, 204, 211, + 10, 50, 73, 235, 86, 75, 57, 222, 105, 1, 27, 52, 13, 125, 30, 193, 165, 132, 218, 27, 185, 92, 181, 162, 173, + 200, 18, 163, 70, 27, 140, 175, 88, 157, 40, 27, 163, 155, 1, 80, 14, 193, 168, 171, 255, 27, 221, 106, 69, 188, + 225, 71, 34, 113, 27, 58, 165, 229, 175, 255, 23, 27, 24, 76, 203, 181, 15, 138, 121, 151, 229, 156, 60, 232, 75, + 65, 27, 9, 186, 152, 64, 242, 168, 145, 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1868, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6558800571188462839" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1d50106" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14729685387375292819" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89f91281" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2142150125962809755" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b1d5f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1820283606579128887" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a40700b8048c03fba6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3986559835219594884" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5b058a5e965144f744b1d501061bcc6a5ad18fc43193bf034489f912810f1b1dba7230a192519b1343b1d5f91b1942f24bc09daa3749a40700b8048c03fba61b37531b0c661a8e840effff", + "cborBytes": [ + 191, 27, 91, 5, 138, 94, 150, 81, 68, 247, 68, 177, 213, 1, 6, 27, 204, 106, 90, 209, 143, 196, 49, 147, 191, 3, + 68, 137, 249, 18, 129, 15, 27, 29, 186, 114, 48, 161, 146, 81, 155, 19, 67, 177, 213, 249, 27, 25, 66, 242, 75, + 192, 157, 170, 55, 73, 164, 7, 0, 184, 4, 140, 3, 251, 166, 27, 55, 83, 27, 12, 102, 26, 142, 132, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1869, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d610c2a73d2c12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1938891132383216190" + } + } + } + ] + }, + "cborHex": "bf47d610c2a73d2c121b1ae8533653db423eff", + "cborBytes": [191, 71, 214, 16, 194, 167, 61, 44, 18, 27, 26, 232, 83, 54, 83, 219, 66, 62, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1870, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1359906538856180257" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14351070505150200457" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1478790953319411584" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16601907333301806810" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72fb7091647de4" + }, + { + "_tag": "ByteArray", + "bytearray": "283e7d00e5fe54055221227c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16521603202696549499" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7925091783760398061" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2264780005114137472" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2863529546517746690" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11918998228809953792" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11481938147797730090" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11842742815564138791" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10346029581747579495" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cdef80d967" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4610830376893099992" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9016317526293298745" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11266718836574141437" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17300738883645665806" + } + } + } + ] + }, + "cborHex": "bf1b12df5bcac040ea211bc7293e96d6103a891b1485b8897daa2f809f1be665d2c24b6826da4772fb7091647de44c283e7d00e5fe54055221227c1be5488693e0af147b1b6dfb94fd0767c6edff1b1f6e1d6a533c4b80a01b27bd4cf370069402d8669f1ba568c9bd52ba32009f1b9f5809e9587d832a1ba459dfd8600289271b8f947b16c7bf6a6745cdef80d967ffff1b3ffcf5cc6e4b2fd81b7d20650508d73e391b9c5b6d1696343bfd1bf0189259f77cf20eff", + "cborBytes": [ + 191, 27, 18, 223, 91, 202, 192, 64, 234, 33, 27, 199, 41, 62, 150, 214, 16, 58, 137, 27, 20, 133, 184, 137, 125, + 170, 47, 128, 159, 27, 230, 101, 210, 194, 75, 104, 38, 218, 71, 114, 251, 112, 145, 100, 125, 228, 76, 40, 62, + 125, 0, 229, 254, 84, 5, 82, 33, 34, 124, 27, 229, 72, 134, 147, 224, 175, 20, 123, 27, 109, 251, 148, 253, 7, + 103, 198, 237, 255, 27, 31, 110, 29, 106, 83, 60, 75, 128, 160, 27, 39, 189, 76, 243, 112, 6, 148, 2, 216, 102, + 159, 27, 165, 104, 201, 189, 82, 186, 50, 0, 159, 27, 159, 88, 9, 233, 88, 125, 131, 42, 27, 164, 89, 223, 216, + 96, 2, 137, 39, 27, 143, 148, 123, 22, 199, 191, 106, 103, 69, 205, 239, 128, 217, 103, 255, 255, 27, 63, 252, + 245, 204, 110, 75, 47, 216, 27, 125, 32, 101, 5, 8, 215, 62, 57, 27, 156, 91, 109, 22, 150, 52, 59, 253, 27, 240, + 24, 146, 89, 247, 124, 242, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1871, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "76" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "40e877296d53ab2a5a45a5cb" + }, + { + "_tag": "ByteArray", + "bytearray": "61726decf3384a9bbc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6455311430753143439" + } + } + ] + } + } + ] + }, + "cborHex": "bf41769f4c40e877296d53ab2a5a45a5cb4961726decf3384a9bbc1b5995df8b688f4a8fffff", + "cborBytes": [ + 191, 65, 118, 159, 76, 64, 232, 119, 41, 109, 83, 171, 42, 90, 69, 165, 203, 73, 97, 114, 109, 236, 243, 56, 74, + 155, 188, 27, 89, 149, 223, 139, 104, 143, 74, 143, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1872, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2335242970846173412" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7b294b443233f11b" + }, + { + "_tag": "ByteArray", + "bytearray": "5436b51f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7235914075888333041" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a64bba44c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14060313332298852695" + } + } + } + ] + }, + "cborHex": "bf1b2068731bfd8398e49f487b294b443233f11b445436b51f1b646b2183b692b0f1ff45a64bba44c71bc320447b225ca957ff", + "cborBytes": [ + 191, 27, 32, 104, 115, 27, 253, 131, 152, 228, 159, 72, 123, 41, 75, 68, 50, 51, 241, 27, 68, 84, 54, 181, 31, 27, + 100, 107, 33, 131, 182, 146, 176, 241, 255, 69, 166, 75, 186, 68, 199, 27, 195, 32, 68, 123, 34, 92, 169, 87, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1873, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd7635b0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4974440822540403719" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3996d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "352411802407505311" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4792421662471828063" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18147627327931616661" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2726945882437675202" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7221cf2edb" + } + ] + } + } + ] + }, + "cborHex": "bf44bd7635b09f1b4508c39287b90407ff43f3996dd8669f1b04e404aac9278d9f9f1b42821a1c5585325f1bfbd952e78d890d951b25d80ed5046968c2457221cf2edbffffff", + "cborBytes": [ + 191, 68, 189, 118, 53, 176, 159, 27, 69, 8, 195, 146, 135, 185, 4, 7, 255, 67, 243, 153, 109, 216, 102, 159, 27, + 4, 228, 4, 170, 201, 39, 141, 159, 159, 27, 66, 130, 26, 28, 85, 133, 50, 95, 27, 251, 217, 82, 231, 141, 137, 13, + 149, 27, 37, 216, 14, 213, 4, 105, 104, 194, 69, 114, 33, 207, 46, 219, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1874, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5148223623522338615" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8024910743463071793" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1eaf56" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81ed" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2349f33c98087503" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8505ff4f040704" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d002" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1995914365794543651" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6533621639777814425" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10050744388951947984" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15809494183206785412" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9c80606" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8147010820360270694" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13198021117431421746" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16685239156057811039" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c" + }, + { + "_tag": "ByteArray", + "bytearray": "fb25b7e0a2541e6f" + } + ] + } + } + ] + }, + "cborHex": "bf141b47722a1bf052c7371b6f5e35cdaa551031bf431eaf564281ed423d9c1bfffffffffffffffb4183482349f33c98087503478505ff4f0407040542d0021b1bb2e98a7748682342f9f81b5aac1643c7c30799ff1b8b7b6ac547bb3ad0801bdb669b3284a5118444f9c806061bfffffffffffffff51b710fff2d28d673661bfffffffffffffff69f1bb728ca47ba9a9b321be78de09c3943a85f415c48fb25b7e0a2541e6fffff", + "cborBytes": [ + 191, 20, 27, 71, 114, 42, 27, 240, 82, 199, 55, 27, 111, 94, 53, 205, 170, 85, 16, 49, 191, 67, 30, 175, 86, 66, + 129, 237, 66, 61, 156, 27, 255, 255, 255, 255, 255, 255, 255, 251, 65, 131, 72, 35, 73, 243, 60, 152, 8, 117, 3, + 71, 133, 5, 255, 79, 4, 7, 4, 5, 66, 208, 2, 27, 27, 178, 233, 138, 119, 72, 104, 35, 66, 249, 248, 27, 90, 172, + 22, 67, 199, 195, 7, 153, 255, 27, 139, 123, 106, 197, 71, 187, 58, 208, 128, 27, 219, 102, 155, 50, 132, 165, 17, + 132, 68, 249, 200, 6, 6, 27, 255, 255, 255, 255, 255, 255, 255, 245, 27, 113, 15, 255, 45, 40, 214, 115, 102, 27, + 255, 255, 255, 255, 255, 255, 255, 246, 159, 27, 183, 40, 202, 71, 186, 154, 155, 50, 27, 231, 141, 224, 156, 57, + 67, 168, 95, 65, 92, 72, 251, 37, 183, 224, 162, 84, 30, 111, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1875, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3739216880282387720" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "817e84e51a99" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0804f7214678c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5411c5fe5b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2071116693601821838" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba90a03a12dd30c86ee0b658" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1369227273466714798" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13877299403512887098" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14608890795282817345" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8306976162899254569" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b33e45df0ff60450846817e84e51a9947a0804f7214678cbf455411c5fe5b1b1cbe15a8da84a48eff4cba90a03a12dd30c86ee0b658bf1b130078f363c29aae1bc09612484c20373a1bcabd34c6ef4e61411b73484eced33f5d29ffff", + "cborBytes": [ + 191, 27, 51, 228, 93, 240, 255, 96, 69, 8, 70, 129, 126, 132, 229, 26, 153, 71, 160, 128, 79, 114, 20, 103, 140, + 191, 69, 84, 17, 197, 254, 91, 27, 28, 190, 21, 168, 218, 132, 164, 142, 255, 76, 186, 144, 160, 58, 18, 221, 48, + 200, 110, 224, 182, 88, 191, 27, 19, 0, 120, 243, 99, 194, 154, 174, 27, 192, 150, 18, 72, 76, 32, 55, 58, 27, + 202, 189, 52, 198, 239, 78, 97, 65, 27, 115, 72, 78, 206, 211, 63, 93, 41, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1876, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0100930448" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77b60801bf24ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9067938fe3c7a3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6422915801373639704" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3867972202195593471" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5162851331997254689" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "874827554714636187" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5ecb" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0a5b326365659" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4bf4379f7076928cc8" + }, + { + "_tag": "ByteArray", + "bytearray": "f15ced5b79769eaa9e5153" + } + ] + } + } + ] + }, + "cborHex": "bf4501009304484777b60801bf24ff479067938fe3c7a3d8669f1b5922c7e42b1e84189f1b35adcc3978f428ff1b47a621eeb7d944211b0c240306a67d4f9b425ecbffff47a0a5b3263656599f494bf4379f7076928cc84bf15ced5b79769eaa9e5153ffff", + "cborBytes": [ + 191, 69, 1, 0, 147, 4, 72, 71, 119, 182, 8, 1, 191, 36, 255, 71, 144, 103, 147, 143, 227, 199, 163, 216, 102, 159, + 27, 89, 34, 199, 228, 43, 30, 132, 24, 159, 27, 53, 173, 204, 57, 120, 244, 40, 255, 27, 71, 166, 33, 238, 183, + 217, 68, 33, 27, 12, 36, 3, 6, 166, 125, 79, 155, 66, 94, 203, 255, 255, 71, 160, 165, 179, 38, 54, 86, 89, 159, + 73, 75, 244, 55, 159, 112, 118, 146, 140, 200, 75, 241, 92, 237, 91, 121, 118, 158, 170, 158, 81, 83, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1877, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "000401ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02a8d607014c7f008bfdfe" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8011323910170872945" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10567356216129933363" + } + }, + { + "_tag": "ByteArray", + "bytearray": "44f04d" + }, + { + "_tag": "ByteArray", + "bytearray": "48f278a8e540c18e" + }, + { + "_tag": "ByteArray", + "bytearray": "d240d1a83edcab7294" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d1a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1923227222499788715" + } + }, + { + "_tag": "ByteArray", + "bytearray": "85d4" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b30f5ca8b28e68156db2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15172341844731526269" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa0001" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbab9802c7768102" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17874106301842668406" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0707" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00fb0005" + } + } + ] + } + } + ] + }, + "cborHex": "bf44000401ff410b4b02a8d607014c7f008bfdfed87a9f1b6f2df0a686540c711b92a6ca7d8570d0334344f04d4848f278a8e540c18e49d240d1a83edcab7294ff428d1a9f1b1ab0acf81b7607ab4285d4ff4ab30f5ca8b28e68156db2bf1bd28efc8572047c7d1bfffffffffffffffa43fa000109ff41f7d8669f1bfffffffffffffff480ff48fbab9802c7768102bf021bf80d94fafee73b764207074400fb0005ffff", + "cborBytes": [ + 191, 68, 0, 4, 1, 255, 65, 11, 75, 2, 168, 214, 7, 1, 76, 127, 0, 139, 253, 254, 216, 122, 159, 27, 111, 45, 240, + 166, 134, 84, 12, 113, 27, 146, 166, 202, 125, 133, 112, 208, 51, 67, 68, 240, 77, 72, 72, 242, 120, 168, 229, 64, + 193, 142, 73, 210, 64, 209, 168, 62, 220, 171, 114, 148, 255, 66, 141, 26, 159, 27, 26, 176, 172, 248, 27, 118, 7, + 171, 66, 133, 212, 255, 74, 179, 15, 92, 168, 178, 142, 104, 21, 109, 178, 191, 27, 210, 142, 252, 133, 114, 4, + 124, 125, 27, 255, 255, 255, 255, 255, 255, 255, 250, 67, 250, 0, 1, 9, 255, 65, 247, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 244, 128, 255, 72, 251, 171, 152, 2, 199, 118, 129, 2, 191, 2, 27, 248, 13, 148, 250, + 254, 231, 59, 118, 66, 7, 7, 68, 0, 251, 0, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1878, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03db59f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27d6122fcdb658be" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14758702367492844541" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19ef818535ca3745e2440d61" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e58fcf17fb8af07fdfe55" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c951e02af005712" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1d85b90e67b33e82f9ad740" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65bb090ad57c8c301870" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "177d5e83b6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aaefd852645b287d03545c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1125308585649773781" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17416891813541973860" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4604a831" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2c95b54" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c900a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16704659204896428024" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d540c3294cbe499db7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5053cb" + } + } + ] + } + } + ] + }, + "cborHex": "bf4403db59f9114827d6122fcdb658bebf1bccd1719bb820abfd4c19ef818535ca3745e2440d61ff4b3e58fcf17fb8af07fdfe55bf1bfffffffffffffff3489c951e02af00571241a74cc1d85b90e67b33e82f9ad740ff4a65bb090ad57c8c30187045177d5e83b64baaefd852645b287d03545cbf1bffffffffffffffef1b0f9de6324e5a1cd541361bf1b53ad365940f64ff41fcbf444604a83144a2c95b54439c900a1be7d2df0ab1cf8ff849d540c3294cbe499db7435053cbffff", + "cborBytes": [ + 191, 68, 3, 219, 89, 249, 17, 72, 39, 214, 18, 47, 205, 182, 88, 190, 191, 27, 204, 209, 113, 155, 184, 32, 171, + 253, 76, 25, 239, 129, 133, 53, 202, 55, 69, 226, 68, 13, 97, 255, 75, 62, 88, 252, 241, 127, 184, 175, 7, 253, + 254, 85, 191, 27, 255, 255, 255, 255, 255, 255, 255, 243, 72, 156, 149, 30, 2, 175, 0, 87, 18, 65, 167, 76, 193, + 216, 91, 144, 230, 123, 51, 232, 47, 154, 215, 64, 255, 74, 101, 187, 9, 10, 213, 124, 140, 48, 24, 112, 69, 23, + 125, 94, 131, 182, 75, 170, 239, 216, 82, 100, 91, 40, 125, 3, 84, 92, 191, 27, 255, 255, 255, 255, 255, 255, 255, + 239, 27, 15, 157, 230, 50, 78, 90, 28, 213, 65, 54, 27, 241, 181, 58, 211, 101, 148, 15, 100, 255, 65, 252, 191, + 68, 70, 4, 168, 49, 68, 162, 201, 91, 84, 67, 156, 144, 10, 27, 231, 210, 223, 10, 177, 207, 143, 248, 73, 213, + 64, 195, 41, 76, 190, 73, 157, 183, 67, 80, 83, 203, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1879, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6254eb88318063" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15281536473473924921" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1d8fe4308411eb748066b5" + }, + { + "_tag": "ByteArray", + "bytearray": "c626e60e2fe750f05eb6af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9395198728004622108" + } + } + ] + } + } + ] + }, + "cborHex": "bf476254eb88318063d8669f1bd412ec752396bf399f4b1d8fe4308411eb748066b54bc626e60e2fe750f05eb6af1b8262737718ead71cffffff", + "cborBytes": [ + 191, 71, 98, 84, 235, 136, 49, 128, 99, 216, 102, 159, 27, 212, 18, 236, 117, 35, 150, 191, 57, 159, 75, 29, 143, + 228, 48, 132, 17, 235, 116, 128, 102, 181, 75, 198, 38, 230, 14, 47, 231, 80, 240, 94, 182, 175, 27, 130, 98, 115, + 119, 24, 234, 215, 28, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1880, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12080294033822964653" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15043103107518819921" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8649033491408721831" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d417124dd7db6a7dd0e29" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3205050786186458710" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "15" + } + ] + } + } + ] + }, + "cborHex": "bf1ba7a5d36b6c49dbad801bd0c3d693133bee51d8669f1b78078a22c9df97a780ff4b8d417124dd7db6a7dd0e29d8669f1b2c7aa0b57dbaf6569f4115ffffff", + "cborBytes": [ + 191, 27, 167, 165, 211, 107, 108, 73, 219, 173, 128, 27, 208, 195, 214, 147, 19, 59, 238, 81, 216, 102, 159, 27, + 120, 7, 138, 34, 201, 223, 151, 167, 128, 255, 75, 141, 65, 113, 36, 221, 125, 182, 167, 221, 14, 41, 216, 102, + 159, 27, 44, 122, 160, 181, 125, 186, 246, 86, 159, 65, 21, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1881, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f300f30084" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc1c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "820621d04502ff8efb6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03e304000570faff02a600" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9262255478e0b114d0cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17949178504317052578" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "acc728c3c5fe7148a323" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98" + } + } + ] + } + } + ] + }, + "cborHex": "bf45f300f30084bf4205b842bc1c4a820621d04502ff8efb6d4b03e304000570faff02a6004a9262255478e0b114d0cc1bf9184ac037e526a24aacc728c3c5fe7148a3234198ffff", + "cborBytes": [ + 191, 69, 243, 0, 243, 0, 132, 191, 66, 5, 184, 66, 188, 28, 74, 130, 6, 33, 208, 69, 2, 255, 142, 251, 109, 75, 3, + 227, 4, 0, 5, 112, 250, 255, 2, 166, 0, 74, 146, 98, 37, 84, 120, 224, 177, 20, 208, 204, 27, 249, 24, 74, 192, + 55, 229, 38, 162, 74, 172, 199, 40, 195, 197, 254, 113, 72, 163, 35, 65, 152, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1882, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2455550670470117950" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10256737147638020301" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5289883829464966834" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12361627751266401691" + } + }, + { + "_tag": "ByteArray", + "bytearray": "455af04e6b9f14c3fe217c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12629770955984664890" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e0f3d151d2a46756be39601d" + }, + { + "_tag": "ByteArray", + "bytearray": "763b3119a5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7188199121759025548" + } + } + ] + } + } + ] + }, + "cborHex": "bf02d90501801b2213de532157fa3e0a1b8e574017df8478cd9f1b49697150de57a6b21bab8d52f1efd83d9b4b455af04e6b9f14c3fe217cff1bfffffffffffffff7d8669f1baf45f5c4e202f93a9f4ce0f3d151d2a46756be39601d45763b3119a51b63c19d043b38b98cffffff", + "cborBytes": [ + 191, 2, 217, 5, 1, 128, 27, 34, 19, 222, 83, 33, 87, 250, 62, 10, 27, 142, 87, 64, 23, 223, 132, 120, 205, 159, + 27, 73, 105, 113, 80, 222, 87, 166, 178, 27, 171, 141, 82, 241, 239, 216, 61, 155, 75, 69, 90, 240, 78, 107, 159, + 20, 195, 254, 33, 124, 255, 27, 255, 255, 255, 255, 255, 255, 255, 247, 216, 102, 159, 27, 175, 69, 245, 196, 226, + 2, 249, 58, 159, 76, 224, 243, 209, 81, 210, 164, 103, 86, 190, 57, 96, 29, 69, 118, 59, 49, 25, 165, 27, 99, 193, + 157, 4, 59, 56, 185, 140, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1883, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4446789710364697305" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7838738175b5f8f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c54d2050f0a1c4abc5cde0d2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fee8cbc7116049c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8936599911895569028" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3db62bae752662d9bf487838738175b5f8f64cc54d2050f0a1c4abc5cde0d248fee8cbc7116049c61b7c052e4590529284ffff", + "cborBytes": [ + 191, 27, 61, 182, 43, 174, 117, 38, 98, 217, 191, 72, 120, 56, 115, 129, 117, 181, 248, 246, 76, 197, 77, 32, 80, + 240, 161, 196, 171, 197, 205, 224, 210, 72, 254, 232, 203, 199, 17, 96, 73, 198, 27, 124, 5, 46, 69, 144, 82, 146, + 132, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1884, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5d9b" + }, + { + "_tag": "ByteArray", + "bytearray": "9bbaae18f6f7a57562" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5218159394625594652" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf04d905029f425d9b499bbaae18f6f7a57562ff05bf1bfffffffffffffff510ff0b1bfffffffffffffff2121bfffffffffffffff81b486aa0528a06a51ca0ff", + "cborBytes": [ + 191, 4, 217, 5, 2, 159, 66, 93, 155, 73, 155, 186, 174, 24, 246, 247, 165, 117, 98, 255, 5, 191, 27, 255, 255, + 255, 255, 255, 255, 255, 245, 16, 255, 11, 27, 255, 255, 255, 255, 255, 255, 255, 242, 18, 27, 255, 255, 255, 255, + 255, 255, 255, 248, 27, 72, 106, 160, 82, 138, 6, 165, 28, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1885, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "722796607879234089" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0379f57d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9163963756571822393" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "284b1e5433cf0254b96b9da5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "543a9c6f07c325d9b279c41e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a9436" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "480672723325274112" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d233faceca1bb40323cdcae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4400641e3d2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5f984a49bb47481" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12652819418621663725" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7342209932653889197" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15804279263558368565" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6e" + }, + { + "_tag": "ByteArray", + "bytearray": "98" + }, + { + "_tag": "ByteArray", + "bytearray": "370fde90d9d15ac5454896" + }, + { + "_tag": "ByteArray", + "bytearray": "d0c718828ae1bd6232" + } + ] + } + } + ] + }, + "cborHex": "bf1b0a07e3af717fc229bf440379f57d1b7f2cf07bdd0489394c284b1e5433cf0254b96b9da54c543a9c6f07c325d9b279c41e433a94361b06abb14b8f05c8004c6d233faceca1bb40323cdcae46a4400641e3d248d5f984a49bb474811baf97d839461bd9edff1b65e4c508762e06ad9f1bdb5414416b77fd35416e41984b370fde90d9d15ac545489649d0c718828ae1bd6232ffff", + "cborBytes": [ + 191, 27, 10, 7, 227, 175, 113, 127, 194, 41, 191, 68, 3, 121, 245, 125, 27, 127, 44, 240, 123, 221, 4, 137, 57, + 76, 40, 75, 30, 84, 51, 207, 2, 84, 185, 107, 157, 165, 76, 84, 58, 156, 111, 7, 195, 37, 217, 178, 121, 196, 30, + 67, 58, 148, 54, 27, 6, 171, 177, 75, 143, 5, 200, 0, 76, 109, 35, 63, 172, 236, 161, 187, 64, 50, 60, 220, 174, + 70, 164, 64, 6, 65, 227, 210, 72, 213, 249, 132, 164, 155, 180, 116, 129, 27, 175, 151, 216, 57, 70, 27, 217, 237, + 255, 27, 101, 228, 197, 8, 118, 46, 6, 173, 159, 27, 219, 84, 20, 65, 107, 119, 253, 53, 65, 110, 65, 152, 75, 55, + 15, 222, 144, 217, 209, 90, 197, 69, 72, 150, 73, 208, 199, 24, 130, 138, 225, 189, 98, 50, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1886, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07d2fa" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0604d20203" + }, + { + "_tag": "ByteArray", + "bytearray": "4f30" + }, + { + "_tag": "ByteArray", + "bytearray": "ef13fa" + }, + { + "_tag": "ByteArray", + "bytearray": "0b6d4d6a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9437d3d9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4307d2fa9f450604d20203424f3043ef13fa440b6d4d6aff449437d3d9d9050080ff", + "cborBytes": [ + 191, 67, 7, 210, 250, 159, 69, 6, 4, 210, 2, 3, 66, 79, 48, 67, 239, 19, 250, 68, 11, 109, 77, 106, 255, 68, 148, + 55, 211, 217, 217, 5, 0, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1887, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f65750267e66631a18b1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12861692407330662123" + } + } + ] + } + } + ] + }, + "cborHex": "bf4af65750267e66631a18b19f1bb27de919ad4866ebffff", + "cborBytes": [ + 191, 74, 246, 87, 80, 38, 126, 102, 99, 26, 24, 177, 159, 27, 178, 125, 233, 25, 173, 72, 102, 235, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1888, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aae232820aff810000fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "057589e0ee1f93b037a204" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b348d8af3f902836" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e50" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d59b3cc8d1387fb3cc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d90e5a494f96da6dbe5742" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1394862919888397846" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1568206247593653381" + } + } + ] + } + } + ] + }, + "cborHex": "bf4aaae232820aff810000fb4b057589e0ee1f93b037a20448b348d8af3f902836420e5041d349d59b3cc8d1387fb3cc4bd90e5a494f96da6dbe57429f1b135b8c6f724fe6161b15c36346025e3485ffff", + "cborBytes": [ + 191, 74, 170, 226, 50, 130, 10, 255, 129, 0, 0, 251, 75, 5, 117, 137, 224, 238, 31, 147, 176, 55, 162, 4, 72, 179, + 72, 216, 175, 63, 144, 40, 54, 66, 14, 80, 65, 211, 73, 213, 155, 60, 200, 209, 56, 127, 179, 204, 75, 217, 14, + 90, 73, 79, 150, 218, 109, 190, 87, 66, 159, 27, 19, 91, 140, 111, 114, 79, 230, 22, 27, 21, 195, 99, 70, 2, 94, + 52, 133, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1889, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ce71570c83622dc1dd5b6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18433734855447708583" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2132258043919543124" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16197244145051048565" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f6b908" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12459919578725883962" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12131856519811085859" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8182549851810365385" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6340a09a51ad367343c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f41daf3d2d39f0d2cafe5a71" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7458ea656dac39dc0397d70d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1291254447052242208" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92a3af63" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bd0bab3be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04ba3ad1a46ca5b446" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca87618708773104" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b03a721a627255b18b" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a678c70f7d6d45bf9efbd60f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7582307054180329309" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d177ee7a846b328fdb8179d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17250973735328675944" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3917e28a855" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16525092650212267150" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4b4ce71570c83622dc1dd5b6d8669f1bffd1c82f56b283a79f1b1d974d64cd4b2b541be0c82bbbb60b1a7543f6b9081bacea86d763e4203affff4161bf1ba85d033a3958b6231b718e41bcba14ffc9ff4a6340a09a51ad367343c94cf41daf3d2d39f0d2cafe5a714c7458ea656dac39dc0397d70dbf1b11eb751407313d204492a3af63454bd0bab3be4904ba3ad1a46ca5b44648ca8761870877310449b03a721a627255b18bff4ca678c70f7d6d45bf9efbd60fbf1b6939c417ce5b675d41364cd177ee7a846b328fdb8179d51bef67c53673dbf868ff46d3917e28a855d8669f1be554ec363052148e80ffff", + "cborBytes": [ + 191, 75, 76, 231, 21, 112, 200, 54, 34, 220, 29, 213, 182, 216, 102, 159, 27, 255, 209, 200, 47, 86, 178, 131, + 167, 159, 27, 29, 151, 77, 100, 205, 75, 43, 84, 27, 224, 200, 43, 187, 182, 11, 26, 117, 67, 246, 185, 8, 27, + 172, 234, 134, 215, 99, 228, 32, 58, 255, 255, 65, 97, 191, 27, 168, 93, 3, 58, 57, 88, 182, 35, 27, 113, 142, 65, + 188, 186, 20, 255, 201, 255, 74, 99, 64, 160, 154, 81, 173, 54, 115, 67, 201, 76, 244, 29, 175, 61, 45, 57, 240, + 210, 202, 254, 90, 113, 76, 116, 88, 234, 101, 109, 172, 57, 220, 3, 151, 215, 13, 191, 27, 17, 235, 117, 20, 7, + 49, 61, 32, 68, 146, 163, 175, 99, 69, 75, 208, 186, 179, 190, 73, 4, 186, 58, 209, 164, 108, 165, 180, 70, 72, + 202, 135, 97, 135, 8, 119, 49, 4, 73, 176, 58, 114, 26, 98, 114, 85, 177, 139, 255, 76, 166, 120, 199, 15, 125, + 109, 69, 191, 158, 251, 214, 15, 191, 27, 105, 57, 196, 23, 206, 91, 103, 93, 65, 54, 76, 209, 119, 238, 122, 132, + 107, 50, 143, 219, 129, 121, 213, 27, 239, 103, 197, 54, 115, 219, 248, 104, 255, 70, 211, 145, 126, 40, 168, 85, + 216, 102, 159, 27, 229, 84, 236, 54, 48, 82, 20, 142, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1890, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f7315f4089b27e13c0f0d09" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5732378159349909814" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6765006358799924883" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6495529014685047868" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f89e787e71400" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa6f3f8cbd3e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5dd3253c27" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aec794f3851f991d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18047793501662880015" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15304211726031319520" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7847272248357862131" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17751120140902138372" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7769308010169112353" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4adc5866ab0d4d5ede0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4303900574579553244" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15543849661976202924" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12873029515075781513" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8710131584289801565" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18199140434094724667" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13632496469991773841" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8cb924d7ac6326b552f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15265719736505896340" + } + } + } + ] + }, + "cborHex": "bf4c0f7315f4089b27e13c0f0d09bf1b4f8d7f90824249361b5de22170d7873e931b5a24c1395c8b9c3c476f89e787e71400ff46aa6f3f8cbd3e455dd3253c2748aec794f3851f991dd8669f1bfa76a4918638210f9f1bd4637b7ac976f1e01b6ce71c888326baf31bf658a5b7fbc102041b6bd22078c0ba1721ffff4ad4adc5866ab0d4d5ede0bf1b3bba86c50069f3dc1bd7b6d8e9a82aceac1bb2a63023c53603891b78e09a871481055d1bfc9055cd37aa163b1bbd305b4fb7a05691ff4ad8cb924d7ac6326b552f1bd3dabb38171a8d94ff", + "cborBytes": [ + 191, 76, 15, 115, 21, 244, 8, 155, 39, 225, 60, 15, 13, 9, 191, 27, 79, 141, 127, 144, 130, 66, 73, 54, 27, 93, + 226, 33, 112, 215, 135, 62, 147, 27, 90, 36, 193, 57, 92, 139, 156, 60, 71, 111, 137, 231, 135, 231, 20, 0, 255, + 70, 170, 111, 63, 140, 189, 62, 69, 93, 211, 37, 60, 39, 72, 174, 199, 148, 243, 133, 31, 153, 29, 216, 102, 159, + 27, 250, 118, 164, 145, 134, 56, 33, 15, 159, 27, 212, 99, 123, 122, 201, 118, 241, 224, 27, 108, 231, 28, 136, + 131, 38, 186, 243, 27, 246, 88, 165, 183, 251, 193, 2, 4, 27, 107, 210, 32, 120, 192, 186, 23, 33, 255, 255, 74, + 212, 173, 197, 134, 106, 176, 212, 213, 237, 224, 191, 27, 59, 186, 134, 197, 0, 105, 243, 220, 27, 215, 182, 216, + 233, 168, 42, 206, 172, 27, 178, 166, 48, 35, 197, 54, 3, 137, 27, 120, 224, 154, 135, 20, 129, 5, 93, 27, 252, + 144, 85, 205, 55, 170, 22, 59, 27, 189, 48, 91, 79, 183, 160, 86, 145, 255, 74, 216, 203, 146, 77, 122, 198, 50, + 107, 85, 47, 27, 211, 218, 187, 56, 23, 26, 141, 148, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1891, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2800421836664203222" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a71496" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af483ad144c89f7fefaffd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f283bfad0277ba885f381c71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10264005014716830072" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9fc044af3a7524ac8b0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8488668635038183636" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c27512c83a5c11fa9c70ee" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9713156646670221695" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65a0cc0f0a756d546f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11925743467211301857" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a02010b" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b26dd18d2bb9de7d6bf43a714964baf483ad144c89f7fefaffd4cf283bfad0277ba885f381c711b8e71122e0b065178ff4af9fc044af3a7524ac8b0bf1b75cdcf260f7370d44bc27512c83a5c11fa9c70ee1b86cc1081f480c17f4965a0cc0f0a756d546f1ba580c07f8590a3e1449a02010bffff", + "cborBytes": [ + 191, 27, 38, 221, 24, 210, 187, 157, 231, 214, 191, 67, 167, 20, 150, 75, 175, 72, 58, 209, 68, 200, 159, 127, + 239, 175, 253, 76, 242, 131, 191, 173, 2, 119, 186, 136, 95, 56, 28, 113, 27, 142, 113, 18, 46, 11, 6, 81, 120, + 255, 74, 249, 252, 4, 74, 243, 167, 82, 74, 200, 176, 191, 27, 117, 205, 207, 38, 15, 115, 112, 212, 75, 194, 117, + 18, 200, 58, 92, 17, 250, 156, 112, 238, 27, 134, 204, 16, 129, 244, 128, 193, 127, 73, 101, 160, 204, 15, 10, + 117, 109, 84, 111, 27, 165, 128, 192, 127, 133, 144, 163, 225, 68, 154, 2, 1, 11, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1892, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11636784256537247990" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10544999517993458274" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7640031836717530356" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2116223392009802583" + } + }, + { + "_tag": "ByteArray", + "bytearray": "24bba59ea2655cc58379c096" + }, + { + "_tag": "ByteArray", + "bytearray": "2dc40fb4b3cc4659e6281e" + }, + { + "_tag": "ByteArray", + "bytearray": "6ade0726f4" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "065844" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0712" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13240739116856239354" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "007705" + } + } + ] + } + } + ] + }, + "cborHex": "bf089f1ba17e29a082c2c0f61b92575d311aaa5a62ff13d8669f1bffffffffffffffed9f1b6a06d87a14393cf41b1d5e55f67a1dd3574c24bba59ea2655cc58379c0964b2dc40fb4b3cc4659e6281e456ade0726f4ffff43065844bf0c4207121bb7c08e1307d5e4fa43007705ffff", + "cborBytes": [ + 191, 8, 159, 27, 161, 126, 41, 160, 130, 194, 192, 246, 27, 146, 87, 93, 49, 26, 170, 90, 98, 255, 19, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 27, 106, 6, 216, 122, 20, 57, 60, 244, 27, 29, 94, 85, 246, + 122, 29, 211, 87, 76, 36, 187, 165, 158, 162, 101, 92, 197, 131, 121, 192, 150, 75, 45, 196, 15, 180, 179, 204, + 70, 89, 230, 40, 30, 69, 106, 222, 7, 38, 244, 255, 255, 67, 6, 88, 68, 191, 12, 66, 7, 18, 27, 183, 192, 142, 19, + 7, 213, 228, 250, 67, 0, 119, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1893, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16704955663959184067" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64bdece00e" + }, + { + "_tag": "ByteArray", + "bytearray": "e8e26d4b7034b2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6595470354512044700" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15605605762855761969" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1228811263230626243" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3497905513340350642" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "24134303fc076d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + } + } + ] + }, + "cborHex": "bf009f1be7d3ecab72efd2c34564bdece00e47e8e26d4b7034b21b5b87d157d74f629c1bd8923fc25fce7831ff1b110d9d5558dc49c3d8669f1b308b0e881c8830b29f4724134303fc076d0bffffff", + "cborBytes": [ + 191, 0, 159, 27, 231, 211, 236, 171, 114, 239, 210, 195, 69, 100, 189, 236, 224, 14, 71, 232, 226, 109, 75, 112, + 52, 178, 27, 91, 135, 209, 87, 215, 79, 98, 156, 27, 216, 146, 63, 194, 95, 206, 120, 49, 255, 27, 17, 13, 157, + 85, 88, 220, 73, 195, 216, 102, 159, 27, 48, 139, 14, 136, 28, 136, 48, 178, 159, 71, 36, 19, 67, 3, 252, 7, 109, + 11, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1894, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14059681241371751950" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "175e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18298251652215269199" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff2c" + }, + { + "_tag": "ByteArray", + "bytearray": "030045" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "229cb43f4df3ad543b99" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13519062703811107579" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afc257e100ddf835" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8624777260697999046" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c425da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8977380309645886476" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf01d8669f1bc31e0598ff2fb60e9f42175e1bfdf072edecfee74fffff049f42ff2c43030045ff07bf4a229cb43f4df3ad543b991bbb9d5be6ece49afb48afc257e100ddf8351b77b15d38fac556c643c425da1b7c960fd3d207840cffff", + "cborBytes": [ + 191, 1, 216, 102, 159, 27, 195, 30, 5, 152, 255, 47, 182, 14, 159, 66, 23, 94, 27, 253, 240, 114, 237, 236, 254, + 231, 79, 255, 255, 4, 159, 66, 255, 44, 67, 3, 0, 69, 255, 7, 191, 74, 34, 156, 180, 63, 77, 243, 173, 84, 59, + 153, 27, 187, 157, 91, 230, 236, 228, 154, 251, 72, 175, 194, 87, 225, 0, 221, 248, 53, 27, 119, 177, 93, 56, 250, + 197, 86, 198, 67, 196, 37, 218, 27, 124, 150, 15, 211, 210, 7, 132, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1895, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02f6f66b73c0ed3ef5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2fdbc19eec52d27aff89684a" + }, + { + "_tag": "ByteArray", + "bytearray": "f1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7636250938404296607" + } + }, + { + "_tag": "ByteArray", + "bytearray": "651f125e1d78d25c7db4c6" + }, + { + "_tag": "ByteArray", + "bytearray": "d1da5a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11250194549424555508" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c632abe49e5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9426036248779541300" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd0c25" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10320775807427568331" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2335773485320072897" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab484ceae65c151cf7b12f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a6d8d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3810834625600089418" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "704d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16397165722752281615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "734c5cafb47726" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14400428455673095009" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3927361319768668534" + } + }, + { + "_tag": "ByteArray", + "bytearray": "48afe644f5e56899" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4667622821787067535" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9559" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a7bdd89a23a224acbe06351" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8e48f0dd4b9ae951eec6e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17856753626512015531" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db05782d9f578a12f1e53c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3705665801498796738" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e12ce606c42541b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "456464421890630011" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea841e9e644de6b8ad8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14324696160088129718" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8410a84926f62" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2" + } + } + ] + }, + "cborHex": "bf4902f6f66b73c0ed3ef59f4c2fdbc19eec52d27aff89684a41f11b69f969c51754d79f4b651f125e1d78d25c7db4c643d1da5aff41051b9c20b8562c7c85f4464c632abe49e5bf1b82d00206e875cb3443cd0c251b8f3ac2ea402a62cb1b206a559c04476ec141354bab484ceae65c151cf7b12f435a6d8d1b34e2cde6bca6ed4aff42704dd8669f1be38e6f5953dc6c0f9f47734c5cafb477261bc7d8996239d263611b3680ca4ff16bb9764848afe644f5e568991b40c6ba39ee1fe48fffff429559bf41b44c0a7bdd89a23a224acbe063514bc8e48f0dd4b9ae951eec6e1bf7cfeed06deac0ab4bdb05782d9f578a12f1e53c1b336d2b69baa622c248e12ce606c42541b21b0655aff92765217b4aea841e9e644de6b8ad8a1bc6cb8b43197480b6ff47e8410a84926f6241f2ff", + "cborBytes": [ + 191, 73, 2, 246, 246, 107, 115, 192, 237, 62, 245, 159, 76, 47, 219, 193, 158, 236, 82, 210, 122, 255, 137, 104, + 74, 65, 241, 27, 105, 249, 105, 197, 23, 84, 215, 159, 75, 101, 31, 18, 94, 29, 120, 210, 92, 125, 180, 198, 67, + 209, 218, 90, 255, 65, 5, 27, 156, 32, 184, 86, 44, 124, 133, 244, 70, 76, 99, 42, 190, 73, 229, 191, 27, 130, + 208, 2, 6, 232, 117, 203, 52, 67, 205, 12, 37, 27, 143, 58, 194, 234, 64, 42, 98, 203, 27, 32, 106, 85, 156, 4, + 71, 110, 193, 65, 53, 75, 171, 72, 76, 234, 230, 92, 21, 28, 247, 177, 47, 67, 90, 109, 141, 27, 52, 226, 205, + 230, 188, 166, 237, 74, 255, 66, 112, 77, 216, 102, 159, 27, 227, 142, 111, 89, 83, 220, 108, 15, 159, 71, 115, + 76, 92, 175, 180, 119, 38, 27, 199, 216, 153, 98, 57, 210, 99, 97, 27, 54, 128, 202, 79, 241, 107, 185, 118, 72, + 72, 175, 230, 68, 245, 229, 104, 153, 27, 64, 198, 186, 57, 238, 31, 228, 143, 255, 255, 66, 149, 89, 191, 65, + 180, 76, 10, 123, 221, 137, 162, 58, 34, 74, 203, 224, 99, 81, 75, 200, 228, 143, 13, 212, 185, 174, 149, 30, 236, + 110, 27, 247, 207, 238, 208, 109, 234, 192, 171, 75, 219, 5, 120, 45, 159, 87, 138, 18, 241, 229, 60, 27, 51, 109, + 43, 105, 186, 166, 34, 194, 72, 225, 44, 230, 6, 196, 37, 65, 178, 27, 6, 85, 175, 249, 39, 101, 33, 123, 74, 234, + 132, 30, 158, 100, 77, 230, 184, 173, 138, 27, 198, 203, 139, 67, 25, 116, 128, 182, 255, 71, 232, 65, 10, 132, + 146, 111, 98, 65, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1896, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + } + ] + }, + "cborHex": "bf0e41faff", + "cborBytes": [191, 14, 65, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1897, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5186662735934726473" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c51d6435" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11903274714425786389" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02449b0b2f2e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "020f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03f8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47ad5bf0e773" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8788954944816413197" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12433796187977123481" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f83e276fb1b9e586" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15281086359087643209" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15864011497734367521" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc79c2c578f7eb79e5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16829520579733304055" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2998840865163085295" + } + }, + { + "_tag": "ByteArray", + "bytearray": "facd5fff14ccce86d1" + }, + { + "_tag": "ByteArray", + "bytearray": "9ad0" + } + ] + } + } + ] + }, + "cborHex": "bf1b47faba47392521499f44c51d64351ba530ed49593d00154602449b0b2f2eff42020f4203f84647ad5bf0e773d8669f1b79f8a3f4d8b1fa0d9f1bac8db7c181fb869948f83e276fb1b9e5861bd4115314b77c7a491bdc284a67f32b6921ffff49bc79c2c578f7eb79e5d87f9f1be98e77ccf72132f71b299e05e0d9f885ef49facd5fff14ccce86d1429ad0ffff", + "cborBytes": [ + 191, 27, 71, 250, 186, 71, 57, 37, 33, 73, 159, 68, 197, 29, 100, 53, 27, 165, 48, 237, 73, 89, 61, 0, 21, 70, 2, + 68, 155, 11, 47, 46, 255, 66, 2, 15, 66, 3, 248, 70, 71, 173, 91, 240, 231, 115, 216, 102, 159, 27, 121, 248, 163, + 244, 216, 177, 250, 13, 159, 27, 172, 141, 183, 193, 129, 251, 134, 153, 72, 248, 62, 39, 111, 177, 185, 229, 134, + 27, 212, 17, 83, 20, 183, 124, 122, 73, 27, 220, 40, 74, 103, 243, 43, 105, 33, 255, 255, 73, 188, 121, 194, 197, + 120, 247, 235, 121, 229, 216, 127, 159, 27, 233, 142, 119, 204, 247, 33, 50, 247, 27, 41, 158, 5, 224, 217, 248, + 133, 239, 73, 250, 205, 95, 255, 20, 204, 206, 134, 209, 66, 154, 208, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1898, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "642473" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17374342564928259064" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67a8a31dd3a5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e57564002c2fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4062625861373809717" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11352792067440282832" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "082e4cb2f3a563fac287d6aa" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d43b650a986a48472a55295f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4574452220625994705" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d727373401d7afa6727d0f9a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f29e1ccf6c63d00efac8395a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa36d6862d636d6685" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d8616" + } + } + ] + }, + "cborHex": "bf43642473d8669f1bf11e1082747f83f880ff4667a8a31dd3a59f478e57564002c2fc1b386158b23a805435ff419bd8669f1b9d8d383c54a68cd09f4c082e4cb2f3a563fac287d6aaffff4cd43b650a986a48472a55295f1b3f7bb80ee468c3d14cd727373401d7afa6727d0f9a4cf29e1ccf6c63d00efac8395a49fa36d6862d636d6685439d8616ff", + "cborBytes": [ + 191, 67, 100, 36, 115, 216, 102, 159, 27, 241, 30, 16, 130, 116, 127, 131, 248, 128, 255, 70, 103, 168, 163, 29, + 211, 165, 159, 71, 142, 87, 86, 64, 2, 194, 252, 27, 56, 97, 88, 178, 58, 128, 84, 53, 255, 65, 155, 216, 102, + 159, 27, 157, 141, 56, 60, 84, 166, 140, 208, 159, 76, 8, 46, 76, 178, 243, 165, 99, 250, 194, 135, 214, 170, 255, + 255, 76, 212, 59, 101, 10, 152, 106, 72, 71, 42, 85, 41, 95, 27, 63, 123, 184, 14, 228, 104, 195, 209, 76, 215, + 39, 55, 52, 1, 215, 175, 166, 114, 125, 15, 154, 76, 242, 158, 28, 207, 108, 99, 208, 14, 250, 200, 57, 90, 73, + 250, 54, 214, 134, 45, 99, 109, 102, 133, 67, 157, 134, 22, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1899, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27bfe5cccba381aae15fa5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13110088205568435268" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3e20f798774a8f11ce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7771908645569274690" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51c7c9dc58f09f57442b2f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8956556021984175737" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "543d563ba1c545" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18266872586542830507" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb1abf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1421437574036602006" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2dfa772" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2270417214481638706" + } + }, + { + "_tag": "ByteArray", + "bytearray": "357cf62f" + } + ] + } + } + ] + }, + "cborHex": "bf4b27bfe5cccba381aae15fa59f1bb5f063c342f1e444493e20f798774a8f11ce1b6bdb5dbc5df1a342ff4b51c7c9dc58f09f57442b2f1b7c4c143f8540a67947543d563ba1c5451bfd80f7d5de34d3ab43bb1abf1b13b9f5f146d83c9644e2dfa7729f1b1f82246d691c253244357cf62fffff", + "cborBytes": [ + 191, 75, 39, 191, 229, 204, 203, 163, 129, 170, 225, 95, 165, 159, 27, 181, 240, 99, 195, 66, 241, 228, 68, 73, + 62, 32, 247, 152, 119, 74, 143, 17, 206, 27, 107, 219, 93, 188, 93, 241, 163, 66, 255, 75, 81, 199, 201, 220, 88, + 240, 159, 87, 68, 43, 47, 27, 124, 76, 20, 63, 133, 64, 166, 121, 71, 84, 61, 86, 59, 161, 197, 69, 27, 253, 128, + 247, 213, 222, 52, 211, 171, 67, 187, 26, 191, 27, 19, 185, 245, 241, 70, 216, 60, 150, 68, 226, 223, 167, 114, + 159, 27, 31, 130, 36, 109, 105, 28, 37, 50, 68, 53, 124, 246, 47, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1900, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8183108413294818919" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5d0a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4768747032207032327" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "405721319241485421" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b71903dbef4f2b6679f425d0a1b422dfe28ee6600071b05a16963e7310c6dffff", + "cborBytes": [ + 191, 27, 113, 144, 61, 190, 244, 242, 182, 103, 159, 66, 93, 10, 27, 66, 45, 254, 40, 238, 102, 0, 7, 27, 5, 161, + 105, 99, 231, 49, 12, 109, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1901, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0105fcbd07a200ca" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "410959cce594bd79e6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12765646476043608656" + } + } + ] + } + } + ] + }, + "cborHex": "bf480105fcbd07a200ca9f49410959cce594bd79e61bfffffffffffffff01bb128afd5accbe250ffff", + "cborBytes": [ + 191, 72, 1, 5, 252, 189, 7, 162, 0, 202, 159, 73, 65, 9, 89, 204, 229, 148, 189, 121, 230, 27, 255, 255, 255, 255, + 255, 255, 255, 240, 27, 177, 40, 175, 213, 172, 203, 226, 80, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1902, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00ac0407" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c500ddeab858" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35621dcfb9156d0a47d8f5" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "461d2a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64f9acf12fc33f28f0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11396458962478647968" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8745933573069814730" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7713516078756807520" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4a4cbf99b7f21070501" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "63b63fcc905b" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb377804f8040206719802" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "30760423424066150" + } + } + ] + } + } + ] + }, + "cborHex": "bf4400ac040746c500ddeab8584b35621dcfb9156d0a47d8f5a043461d2a124964f9acf12fc33f28f0d8669f1b9e285b0b9bdb4aa09f1b795fcc3f2bfd3bca1b6b0bea0173904360414cffff4ac4a4cbf99b7f21070501d87a9f4663b63fcc905bff4bfb377804f80402067198029f1b006d48712f550266ffff", + "cborBytes": [ + 191, 68, 0, 172, 4, 7, 70, 197, 0, 221, 234, 184, 88, 75, 53, 98, 29, 207, 185, 21, 109, 10, 71, 216, 245, 160, + 67, 70, 29, 42, 18, 73, 100, 249, 172, 241, 47, 195, 63, 40, 240, 216, 102, 159, 27, 158, 40, 91, 11, 155, 219, + 74, 160, 159, 27, 121, 95, 204, 63, 43, 253, 59, 202, 27, 107, 11, 234, 1, 115, 144, 67, 96, 65, 76, 255, 255, 74, + 196, 164, 203, 249, 155, 127, 33, 7, 5, 1, 216, 122, 159, 70, 99, 182, 63, 204, 144, 91, 255, 75, 251, 55, 120, 4, + 248, 4, 2, 6, 113, 152, 2, 159, 27, 0, 109, 72, 113, 47, 85, 2, 102, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1903, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7910857418448943404" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18306924514318916189" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd212932ba7f2e97d882" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "466c5424af6993503e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2120999786315975658" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a334b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14060513311593114540" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1332958601099579391" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6dc902e89769b92c410e1bfe0f42d9fdde9a5d4add212932ba7f2e97d88249466c5424af6993503e9f1b1d6f4e11700b0bea430a334b1bc320fa5c7128abac1b127f9ec90ed78fffffff", + "cborBytes": [ + 191, 27, 109, 201, 2, 232, 151, 105, 185, 44, 65, 14, 27, 254, 15, 66, 217, 253, 222, 154, 93, 74, 221, 33, 41, + 50, 186, 127, 46, 151, 216, 130, 73, 70, 108, 84, 36, 175, 105, 147, 80, 62, 159, 27, 29, 111, 78, 17, 112, 11, + 11, 234, 67, 10, 51, 75, 27, 195, 32, 250, 92, 113, 40, 171, 172, 27, 18, 127, 158, 201, 14, 215, 143, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1904, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1126682560043506194" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2089037910911705211" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18236418794708835954" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6588186997451266802" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13239919811441597262" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6984267047644015153" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "131bc599967cd28a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4753025918568609907" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c5b8d5a990237fa09992f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15341005923539060720" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8dcd6bd22e96baeecbae9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80ae3ce8" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0fa2c7d1a6055a12bf1b1cfdc0e96a37607b1bfd14c645e9e09e72ff1b5b6df12b20ee1af21bb7bda4eb9fa21b4e1b60ed19e02749aa31bf48131bc599967cd28a1b41f623e3ec81b8734b8c5b8d5a990237fa09992f1bd4e6339b79b587f04bb8dcd6bd22e96baeecbae94480ae3ce8ffff", + "cborBytes": [ + 191, 27, 15, 162, 199, 209, 166, 5, 90, 18, 191, 27, 28, 253, 192, 233, 106, 55, 96, 123, 27, 253, 20, 198, 69, + 233, 224, 158, 114, 255, 27, 91, 109, 241, 43, 32, 238, 26, 242, 27, 183, 189, 164, 235, 159, 162, 27, 78, 27, 96, + 237, 25, 224, 39, 73, 170, 49, 191, 72, 19, 27, 197, 153, 150, 124, 210, 138, 27, 65, 246, 35, 227, 236, 129, 184, + 115, 75, 140, 91, 141, 90, 153, 2, 55, 250, 9, 153, 47, 27, 212, 230, 51, 155, 121, 181, 135, 240, 75, 184, 220, + 214, 189, 34, 233, 107, 174, 236, 186, 233, 68, 128, 174, 60, 232, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1905, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1351122109773165741" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15703214752793376151" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "194ed82e8073fc2e93b4" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4840483130861928006" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a" + } + ] + } + } + ] + }, + "cborHex": "bf1b12c026667934b4add8669f1bd9ed069e53ec359780ff4a194ed82e8073fc2e93b49f1b432cd9c2f44bbe46419affff", + "cborBytes": [ + 191, 27, 18, 192, 38, 102, 121, 52, 180, 173, 216, 102, 159, 27, 217, 237, 6, 158, 83, 236, 53, 151, 128, 255, 74, + 25, 78, 216, 46, 128, 115, 252, 46, 147, 180, 159, 27, 67, 44, 217, 194, 244, 75, 190, 70, 65, 154, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1906, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fdb4e" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffa431fdb4eff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 250, 67, 31, 219, 78, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1907, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1773665867095321965" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76e5c6f2b4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5144993330827049829" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8923566454334139565" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7f9441020f43" + }, + { + "_tag": "ByteArray", + "bytearray": "0ed9861732a8e69f8c60" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2415453464540202605" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6134069744413848971" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5288996635162688729" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8033371158843580098" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8478196254135935084" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65d35d3339d5ae852f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11255311113153377989" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4845186029503369913" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8763128064133255814" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3564243428984812661" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10148547997215224290" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4242672164667304247" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15445489041735788774" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b189d53b57673ad6d4576e5c6f2b41b4766b02ccfb33b65d8669f1b7bd6e069402dacad9f467f9441020f434a0ed9861732a8e69f8c601b21856a20dd67c66dffff1b552097eecf42358b1b49664a6ad91bbcd91b6f7c44819fbd5ec2bf1b75a89a92dfd1e06c4965d35d3339d5ae852f1b9c32e5d3000376c51b433d8f05df3bd2b9ff1b799ce28b97eb52861b3176bc83b5a8f4751b8cd6e2a25803f1e29f1b3ae0ffdae96ea93741021bd659667322d9a8e6ffff", + "cborBytes": [ + 191, 27, 24, 157, 83, 181, 118, 115, 173, 109, 69, 118, 229, 198, 242, 180, 27, 71, 102, 176, 44, 207, 179, 59, + 101, 216, 102, 159, 27, 123, 214, 224, 105, 64, 45, 172, 173, 159, 70, 127, 148, 65, 2, 15, 67, 74, 14, 217, 134, + 23, 50, 168, 230, 159, 140, 96, 27, 33, 133, 106, 32, 221, 103, 198, 109, 255, 255, 27, 85, 32, 151, 238, 207, 66, + 53, 139, 27, 73, 102, 74, 106, 217, 27, 188, 217, 27, 111, 124, 68, 129, 159, 189, 94, 194, 191, 27, 117, 168, + 154, 146, 223, 209, 224, 108, 73, 101, 211, 93, 51, 57, 213, 174, 133, 47, 27, 156, 50, 229, 211, 0, 3, 118, 197, + 27, 67, 61, 143, 5, 223, 59, 210, 185, 255, 27, 121, 156, 226, 139, 151, 235, 82, 134, 27, 49, 118, 188, 131, 181, + 168, 244, 117, 27, 140, 214, 226, 162, 88, 3, 241, 226, 159, 27, 58, 224, 255, 218, 233, 110, 169, 55, 65, 2, 27, + 214, 89, 102, 115, 34, 217, 168, 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1908, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3772777557570748076" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98fa0c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0613" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9612361820235540271" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15913747170332281698" + } + }, + { + "_tag": "ByteArray", + "bytearray": "43fb66ebb503f3ea17" + }, + { + "_tag": "ByteArray", + "bytearray": "b3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6368829fdedd2819c0c4e81c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11808048063403464403" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17939591188934453643" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15010000032685112341" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5343934333671330199" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55cc7ef8e5ee45f0cf" + } + ] + } + } + ] + }, + "cborHex": "bf1b345b99331791feac4398fa0c420613d8669f1b8565f825a3aaa72f9f1bdcd8fcbc9d088b624943fb66ebb503f3ea1741b3ffff4c6368829fdedd2819c0c4e81cd8669f1ba3de9d26e5e716d39f1bf8f63b23682a698b1bd04e3b80dacc3c151b4a2977f68d7e51974955cc7ef8e5ee45f0cfffffff", + "cborBytes": [ + 191, 27, 52, 91, 153, 51, 23, 145, 254, 172, 67, 152, 250, 12, 66, 6, 19, 216, 102, 159, 27, 133, 101, 248, 37, + 163, 170, 167, 47, 159, 27, 220, 216, 252, 188, 157, 8, 139, 98, 73, 67, 251, 102, 235, 181, 3, 243, 234, 23, 65, + 179, 255, 255, 76, 99, 104, 130, 159, 222, 221, 40, 25, 192, 196, 232, 28, 216, 102, 159, 27, 163, 222, 157, 38, + 229, 231, 22, 211, 159, 27, 248, 246, 59, 35, 104, 42, 105, 139, 27, 208, 78, 59, 128, 218, 204, 60, 21, 27, 74, + 41, 119, 246, 141, 126, 81, 151, 73, 85, 204, 126, 248, 229, 238, 69, 240, 207, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1909, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7430579402551809932" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee6d2f2fb4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9029990983434234170" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "766780058a56bf16e704" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15967732170972372943" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfec63" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1ecc72eb204e58067" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e93281a76e66296a5a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13678083540709330380" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11693340339349591798" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb32abc7c26c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b791d9407b574" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b671eb899046f578c45ee6d2f2fb41b7d50f8f4dc93e93abf4a766780058a56bf16e7041bdd98c7cf0f629fcf43cfec6349a1ecc72eb204e5806749e93281a76e66296a5a1bbdd25082bc18cdccff1ba2471715acad96f6bf46fb32abc7c26c471b791d9407b574ffff", + "cborBytes": [ + 191, 27, 103, 30, 184, 153, 4, 111, 87, 140, 69, 238, 109, 47, 47, 180, 27, 125, 80, 248, 244, 220, 147, 233, 58, + 191, 74, 118, 103, 128, 5, 138, 86, 191, 22, 231, 4, 27, 221, 152, 199, 207, 15, 98, 159, 207, 67, 207, 236, 99, + 73, 161, 236, 199, 46, 178, 4, 229, 128, 103, 73, 233, 50, 129, 167, 110, 102, 41, 106, 90, 27, 189, 210, 80, 130, + 188, 24, 205, 204, 255, 27, 162, 71, 23, 21, 172, 173, 150, 246, 191, 70, 251, 50, 171, 199, 194, 108, 71, 27, + 121, 29, 148, 7, 181, 116, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1910, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "988929513145804022" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4391ed4b9cf54bdb9e662881" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3938641a24a602f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5669b5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6fd3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17986286342557814147" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b561f4569c09c" + }, + { + "_tag": "ByteArray", + "bytearray": "c8423cb988ed04f4ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6894907590277319253" + } + } + ] + } + } + ] + }, + "cborHex": "bf141b0db9622712f4a4f64c4391ed4b9cf54bdb9e662881483938641a24a602f9435669b59f426fd31bf99c2022149e4d83475b561f4569c09c49c8423cb988ed04f4ca1b5fafa1ec2d9fca55ffff", + "cborBytes": [ + 191, 20, 27, 13, 185, 98, 39, 18, 244, 164, 246, 76, 67, 145, 237, 75, 156, 245, 75, 219, 158, 102, 40, 129, 72, + 57, 56, 100, 26, 36, 166, 2, 249, 67, 86, 105, 181, 159, 66, 111, 211, 27, 249, 156, 32, 34, 20, 158, 77, 131, 71, + 91, 86, 31, 69, 105, 192, 156, 73, 200, 66, 60, 185, 136, 237, 4, 244, 202, 27, 95, 175, 161, 236, 45, 159, 202, + 85, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1911, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9239647961444941406" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9238646445321328824" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1485829175854947811" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6722a98592" + } + ] + } + } + ] + }, + "cborHex": "bf1b8039d2ddff967e5ed8669f1b803643fe5acd98b89f1b149eb9c35fbedde3456722a98592ffffff", + "cborBytes": [ + 191, 27, 128, 57, 210, 221, 255, 150, 126, 94, 216, 102, 159, 27, 128, 54, 67, 254, 90, 205, 152, 184, 159, 27, + 20, 158, 185, 195, 95, 190, 221, 227, 69, 103, 34, 169, 133, 146, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1912, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7960368313381343162" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11134809338786879905" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15552597984046085441" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7939647116477826425" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9905ada03f3198b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8922895458000085093" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54ea61c922e70e0686559d" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6e78e8ce205ecfba1b9a86ca19501819a11bd7d5ed771d85f5411b6e2f4afc839d857948d9905ada03f3198bbf1b7bd47e24be0aa0654b54ea61c922e70e0686559dffff", + "cborBytes": [ + 191, 27, 110, 120, 232, 206, 32, 94, 207, 186, 27, 154, 134, 202, 25, 80, 24, 25, 161, 27, 215, 213, 237, 119, 29, + 133, 245, 65, 27, 110, 47, 74, 252, 131, 157, 133, 121, 72, 217, 144, 90, 218, 3, 243, 25, 139, 191, 27, 123, 212, + 126, 36, 190, 10, 160, 101, 75, 84, 234, 97, 201, 34, 231, 14, 6, 134, 85, 157, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1913, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20e6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11487465384855339858" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10660422576495385750" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cbacc8870c0be1156df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17363071613479975480" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98185e52edd5d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "489091" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3aa067bf35fc98d000" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4533896961692971714" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15612519910825157334" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5cde9cc5a178524e2fca" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7683" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dcbcbcd37839" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9e5d906650c2fbc54de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17809197058259560576" + } + } + } + ] + }, + "cborHex": "bf4100804220e6bf1b9f6bace781e603521b93f16dda1b8fdc964a7cbacc8870c0be1156df1bf0f605a393247a384798185e52edd5d343489091ff493aa067bf35fc98d0009f41cb1b3eeba343d9eeb2c21bd8aad023e57262d64a5cde9cc5a178524e2fcaff4276839f46dcbcbcd37839ff4ad9e5d906650c2fbc54de1bf726fa5e087e2880ff", + "cborBytes": [ + 191, 65, 0, 128, 66, 32, 230, 191, 27, 159, 107, 172, 231, 129, 230, 3, 82, 27, 147, 241, 109, 218, 27, 143, 220, + 150, 74, 124, 186, 204, 136, 112, 192, 190, 17, 86, 223, 27, 240, 246, 5, 163, 147, 36, 122, 56, 71, 152, 24, 94, + 82, 237, 213, 211, 67, 72, 144, 145, 255, 73, 58, 160, 103, 191, 53, 252, 152, 208, 0, 159, 65, 203, 27, 62, 235, + 163, 67, 217, 238, 178, 194, 27, 216, 170, 208, 35, 229, 114, 98, 214, 74, 92, 222, 156, 197, 161, 120, 82, 78, + 47, 202, 255, 66, 118, 131, 159, 70, 220, 188, 188, 211, 120, 57, 255, 74, 217, 229, 217, 6, 101, 12, 47, 188, 84, + 222, 27, 247, 38, 250, 94, 8, 126, 40, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1914, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6213652416634212514" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d733fd95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef1d63" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b563b53f39b3ad0a244d733fd9543ef1d6380ff", + "cborBytes": [191, 27, 86, 59, 83, 243, 155, 58, 208, 162, 68, 215, 51, 253, 149, 67, 239, 29, 99, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1915, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00043500cafa02f90704" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3454461024966104060" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7cd46451063b11067507fa" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06e3f95f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9044d4d9804f155363" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4a00043500cafa02f907049f1b2ff0b5ffeb8953fc4b7cd46451063b11067507faff4406e3f95f0b499044d4d9804f155363a0ff", + "cborBytes": [ + 191, 74, 0, 4, 53, 0, 202, 250, 2, 249, 7, 4, 159, 27, 47, 240, 181, 255, 235, 137, 83, 252, 75, 124, 212, 100, + 81, 6, 59, 17, 6, 117, 7, 250, 255, 68, 6, 227, 249, 95, 11, 73, 144, 68, 212, 217, 128, 79, 21, 83, 99, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1916, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1133943213631452070" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3e0d8b89" + }, + { + "_tag": "ByteArray", + "bytearray": "3e95f1adb99012" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4601640021776588681" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3104816939532143642" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "51800fb033fdb41d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f024" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb4fcb9be0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18178208741432729243" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8835271648027219859" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10137435108498088967" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18322452652260393225" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7866078078227914133" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1440111256463101373" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11907272108205016934" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1149878095101747344" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15590412795740316629" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2145c2e4f26d96e927062b01" + } + } + ] + }, + "cborHex": "bf1b0fbc93584bf7b3a69f443e0d8b89473e95f1adb990121b3fdc4f382236df89ff1b2b16868e756dcc1abf4851800fb033fdb41d42f02445fb4fcb9be01bfc45f889bdff9e9bff1b7a9d30c0aabe1793801b8caf67854f9a2407d8669f1bfe466d9c57e501099f1b6d29ec55fc431d951b13fc4d8ec6864dbd1ba53f20e51d7a07661b0ff53009018ae090ffff1bd85c45d60fce63d54c2145c2e4f26d96e927062b01ff", + "cborBytes": [ + 191, 27, 15, 188, 147, 88, 75, 247, 179, 166, 159, 68, 62, 13, 139, 137, 71, 62, 149, 241, 173, 185, 144, 18, 27, + 63, 220, 79, 56, 34, 54, 223, 137, 255, 27, 43, 22, 134, 142, 117, 109, 204, 26, 191, 72, 81, 128, 15, 176, 51, + 253, 180, 29, 66, 240, 36, 69, 251, 79, 203, 155, 224, 27, 252, 69, 248, 137, 189, 255, 158, 155, 255, 27, 122, + 157, 48, 192, 170, 190, 23, 147, 128, 27, 140, 175, 103, 133, 79, 154, 36, 7, 216, 102, 159, 27, 254, 70, 109, + 156, 87, 229, 1, 9, 159, 27, 109, 41, 236, 85, 252, 67, 29, 149, 27, 19, 252, 77, 142, 198, 134, 77, 189, 27, 165, + 63, 32, 229, 29, 122, 7, 102, 27, 15, 245, 48, 9, 1, 138, 224, 144, 255, 255, 27, 216, 92, 69, 214, 15, 206, 99, + 213, 76, 33, 69, 194, 228, 242, 109, 150, 233, 39, 6, 43, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1917, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6306167296098008832" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "649e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9728498602586231417" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83c02fee5828fffd45" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15023392146462265834" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5b4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10784720027996114608" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14461322859275287246" + } + } + } + ] + }, + "cborHex": "bf1b578401be8a1b7f00bf42649e1b870291ef6d0952794983c02fee5828fffd451bd07dcf8f5346d1ea42f5b41b95ab05b9bebfceb0ff414a1bc8b0f0856956faceff", + "cborBytes": [ + 191, 27, 87, 132, 1, 190, 138, 27, 127, 0, 191, 66, 100, 158, 27, 135, 2, 145, 239, 109, 9, 82, 121, 73, 131, 192, + 47, 238, 88, 40, 255, 253, 69, 27, 208, 125, 207, 143, 83, 70, 209, 234, 66, 245, 180, 27, 149, 171, 5, 185, 190, + 191, 206, 176, 255, 65, 74, 27, 200, 176, 240, 133, 105, 86, 250, 206, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1918, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01fa7b36858a8305efd79aa1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4939748741942949827" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11735620976415283634" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16823282028135440423" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7269b7afcbaeeb7e" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dac5b50fb8ac23" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a043be91daa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9251158419750096339" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8192b2b3050ac9da34" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc1e87c7e344725f076c8625" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5685b5f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1127227006369553165" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcdf20d6736c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2216915920313221243" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c01fa7b36858a8305efd79aa1d8669f1b448d834f133137c39f1ba2dd4d199ddb19b2416f1be9784ddefb39e027ffff487269b7afcbaeeb7e8047dac5b50fb8ac23bf461a043be91daa1b8062b7916a118dd3498192b2b3050ac9da344cbc1e87c7e344725f076c8625ff44e5685b5f1b0fa4b6fd6fe25b0d46fcdf20d6736c9f1b1ec41148a72d807bffff", + "cborBytes": [ + 191, 76, 1, 250, 123, 54, 133, 138, 131, 5, 239, 215, 154, 161, 216, 102, 159, 27, 68, 141, 131, 79, 19, 49, 55, + 195, 159, 27, 162, 221, 77, 25, 157, 219, 25, 178, 65, 111, 27, 233, 120, 77, 222, 251, 57, 224, 39, 255, 255, 72, + 114, 105, 183, 175, 203, 174, 235, 126, 128, 71, 218, 197, 181, 15, 184, 172, 35, 191, 70, 26, 4, 59, 233, 29, + 170, 27, 128, 98, 183, 145, 106, 17, 141, 211, 73, 129, 146, 178, 179, 5, 10, 201, 218, 52, 76, 188, 30, 135, 199, + 227, 68, 114, 95, 7, 108, 134, 37, 255, 68, 229, 104, 91, 95, 27, 15, 164, 182, 253, 111, 226, 91, 13, 70, 252, + 223, 32, 214, 115, 108, 159, 27, 30, 196, 17, 72, 167, 45, 128, 123, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1919, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "912070240333280831" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5990619239684573630" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c30f9f494fbd6b59" + } + } + ] + }, + "cborHex": "bf1b0ca8530d1d45363fa01b5322f475760509be48c30f9f494fbd6b59ff", + "cborBytes": [ + 191, 27, 12, 168, 83, 13, 29, 69, 54, 63, 160, 27, 83, 34, 244, 117, 118, 5, 9, 190, 72, 195, 15, 159, 73, 79, + 189, 107, 89, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1920, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4070616" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "012a" + } + } + ] + }, + "cborHex": "bf44c407061642012aff", + "cborBytes": [191, 68, 196, 7, 6, 22, 66, 1, 42, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1921, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11118032739638031393" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9780229065167517551" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf07d8669f1b9a4b2fdeef49b42180ff1b87ba5a845342b76fd8669f1bfffffffffffffff880ffff", + "cborBytes": [ + 191, 7, 216, 102, 159, 27, 154, 75, 47, 222, 239, 73, 180, 33, 128, 255, 27, 135, 186, 90, 132, 83, 66, 183, 111, + 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1922, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a8cf6af98441c4a9564" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3505659828285886362" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff1b6525b806724d723fa2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9874540366344180137" + } + } + } + ] + }, + "cborHex": "bf4a4a8cf6af98441c4a95641b30a69b0a40564f9a4bff1b6525b806724d723fa21b89096a25483351a9ff", + "cborBytes": [ + 191, 74, 74, 140, 246, 175, 152, 68, 28, 74, 149, 100, 27, 48, 166, 155, 10, 64, 86, 79, 154, 75, 255, 27, 101, + 37, 184, 6, 114, 77, 114, 63, 162, 27, 137, 9, 106, 37, 72, 51, 81, 169, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1923, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "429d1d17f5ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "219ce0f0727c58b514e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbfc610706df2b7ced" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + } + ] + }, + "cborHex": "bf46429d1d17f5ad4a219ce0f0727c58b514e449fbfc610706df2b7ced01ff", + "cborBytes": [ + 191, 70, 66, 157, 29, 23, 245, 173, 74, 33, 156, 224, 240, 114, 124, 88, 181, 20, 228, 73, 251, 252, 97, 7, 6, + 223, 43, 124, 237, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1924, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6596248265169465532" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20b7c52c7d88be3b2825ef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13922240960580562787" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8efd01450701ad05" + } + } + ] + }, + "cborHex": "bf1b5b8a94d947b670bc4b20b7c52c7d88be3b2825ef1bc135bc63f4cc2f63488efd01450701ad05ff", + "cborBytes": [ + 191, 27, 91, 138, 148, 217, 71, 182, 112, 188, 75, 32, 183, 197, 44, 125, 136, 190, 59, 40, 37, 239, 27, 193, 53, + 188, 99, 244, 204, 47, 99, 72, 142, 253, 1, 69, 7, 1, 173, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1925, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2750234616936582814" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6757743325654875445" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1230691d4b1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b2b023ea0731a5638402e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28de" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b8b803a28bd47ac97892a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3a789ca53d525fb" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53a3a003a7ed3e3a6121b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ed5421835f1" + } + } + ] + }, + "cborHex": "bf1b262acbd00f7cce9ebf1b5dc853c028ecfd3546d1230691d4b14b1b2b023ea0731a5638402e4228de4b5b8b803a28bd47ac97892a48a3a789ca53d525fbff4b53a3a003a7ed3e3a6121b5462ed5421835f1ff", + "cborBytes": [ + 191, 27, 38, 42, 203, 208, 15, 124, 206, 158, 191, 27, 93, 200, 83, 192, 40, 236, 253, 53, 70, 209, 35, 6, 145, + 212, 177, 75, 27, 43, 2, 62, 160, 115, 26, 86, 56, 64, 46, 66, 40, 222, 75, 91, 139, 128, 58, 40, 189, 71, 172, + 151, 137, 42, 72, 163, 167, 137, 202, 83, 213, 37, 251, 255, 75, 83, 163, 160, 3, 167, 237, 62, 58, 97, 33, 181, + 70, 46, 213, 66, 24, 53, 241, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1926, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5788f107" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c64be1bd924d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e240b3" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf445788f10746c64be1bd924d43e240b380ff", + "cborBytes": [191, 68, 87, 136, 241, 7, 70, 198, 75, 225, 189, 146, 77, 67, 226, 64, 179, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1927, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15682963113644831369" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10021270782190540470" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "828c6e1dccde" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "29aa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f9ab6524c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60e53b3323d9be1fd7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5792293514723963086" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91e0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61f019" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4b5544091cf028465" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ea7d8c8bdab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba4d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13522668211270884905" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2941d18658b8062ddd7b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4517bcdcfdad12b97420c" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c482f4b80d3e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3323307893466418799" + } + } + } + ] + }, + "cborHex": "bf1bd9a513dc265ab2891b8b12b4ae7277d6b646828c6e1dccdebf4229aa453f9ab6524c4960e53b3323d9be1fd71b50625c4343ebb0ce4291e04361f01949b4b5544091cf028465465ea7d8c8bdab42ba4d1bbbaa2b178c449e294bd2941d18658b8062ddd7b34bd4517bcdcfdad12b97420cff46c482f4b80d3e1b2e1ec2ebe5514e6fff", + "cborBytes": [ + 191, 27, 217, 165, 19, 220, 38, 90, 178, 137, 27, 139, 18, 180, 174, 114, 119, 214, 182, 70, 130, 140, 110, 29, + 204, 222, 191, 66, 41, 170, 69, 63, 154, 182, 82, 76, 73, 96, 229, 59, 51, 35, 217, 190, 31, 215, 27, 80, 98, 92, + 67, 67, 235, 176, 206, 66, 145, 224, 67, 97, 240, 25, 73, 180, 181, 84, 64, 145, 207, 2, 132, 101, 70, 94, 167, + 216, 200, 189, 171, 66, 186, 77, 27, 187, 170, 43, 23, 140, 68, 158, 41, 75, 210, 148, 29, 24, 101, 139, 128, 98, + 221, 215, 179, 75, 212, 81, 123, 205, 207, 218, 209, 43, 151, 66, 12, 255, 70, 196, 130, 244, 184, 13, 62, 27, 46, + 30, 194, 235, 229, 81, 78, 111, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1928, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4a487aae11a3fa0368ca7" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4be4a487aae11a3fa0368ca780ff", + "cborBytes": [191, 75, 228, 164, 135, 170, 225, 26, 63, 160, 54, 140, 167, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1929, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "564710bc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13183292458763809441" + } + } + } + ] + }, + "cborHex": "bf44564710bc1bb6f476a4a6b3f2a1ff", + "cborBytes": [191, 68, 86, 71, 16, 188, 27, 182, 244, 118, 164, 166, 179, 242, 161, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1930, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bec8d0e501" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17696563947336829480" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6a" + }, + { + "_tag": "ByteArray", + "bytearray": "4c0544cbb5855a54e8" + }, + { + "_tag": "ByteArray", + "bytearray": "095ecf" + } + ] + } + } + ] + }, + "cborHex": "bf0a45bec8d0e5011bf596d32651ff0a28d87a9f416a494c0544cbb5855a54e843095ecfffff", + "cborBytes": [ + 191, 10, 69, 190, 200, 208, 229, 1, 27, 245, 150, 211, 38, 81, 255, 10, 40, 216, 122, 159, 65, 106, 73, 76, 5, 68, + 203, 181, 133, 90, 84, 232, 67, 9, 94, 207, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1931, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1936254394054322054" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8472288620314574692" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b5e50fae" + }, + { + "_tag": "ByteArray", + "bytearray": "34938d6190324b47" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3319800771083613313" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12870092341625827474" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5192918651327766491" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d522ef62d1e66a68c0ba48" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7581482292488333448" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9058705698211459002" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87862e12b2eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "254092c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3460692744643347580" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d036fa3cfd020d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7417d08da4244b5474effd96" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbcf56f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12028009807600682824" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1adef51cd865a786d8669f1b75939d9cb06f3f649f44b5e50fae4834938d6190324b47ffff1b2e124d365581b4811bb29bc0cbc91530921b4810f40007e45fdb9f4bd522ef62d1e66a68c0ba481b6936d5fa02ae6888ff1b7db6fcd662b36fbabf41104687862e12b2eb44254092c01b3006d9b7393d047c483d036fa3cfd020d84c7417d08da4244b5474effd9644cbcf56f51ba6ec133160f40748ffff", + "cborBytes": [ + 191, 27, 26, 222, 245, 28, 216, 101, 167, 134, 216, 102, 159, 27, 117, 147, 157, 156, 176, 111, 63, 100, 159, 68, + 181, 229, 15, 174, 72, 52, 147, 141, 97, 144, 50, 75, 71, 255, 255, 27, 46, 18, 77, 54, 85, 129, 180, 129, 27, + 178, 155, 192, 203, 201, 21, 48, 146, 27, 72, 16, 244, 0, 7, 228, 95, 219, 159, 75, 213, 34, 239, 98, 209, 230, + 106, 104, 192, 186, 72, 27, 105, 54, 213, 250, 2, 174, 104, 136, 255, 27, 125, 182, 252, 214, 98, 179, 111, 186, + 191, 65, 16, 70, 135, 134, 46, 18, 178, 235, 68, 37, 64, 146, 192, 27, 48, 6, 217, 183, 57, 61, 4, 124, 72, 61, 3, + 111, 163, 207, 208, 32, 216, 76, 116, 23, 208, 141, 164, 36, 75, 84, 116, 239, 253, 150, 68, 203, 207, 86, 245, + 27, 166, 236, 19, 49, 96, 244, 7, 72, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1932, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12863202564508472150" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b49163" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17174745032121329720" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1897285019659025127" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13926597924959721946" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9351679292465393186" + } + }, + { + "_tag": "ByteArray", + "bytearray": "509d8a02321703" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17984411094903125193" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "410484813852286021" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f59573d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3a37bd47f7bea" + } + } + ] + }, + "cborHex": "bf1bb28346948b6bd35643b491631bee58f39c6b7f2838d8669f1b1a5482ac52723ae79f1bc1453706c6ea99da1b81c7d6c4e8c6ae2247509d8a023217031bf995769af64b74c91b05b255c36b5b9c45ffff447f59573d47e3a37bd47f7beaff", + "cborBytes": [ + 191, 27, 178, 131, 70, 148, 139, 107, 211, 86, 67, 180, 145, 99, 27, 238, 88, 243, 156, 107, 127, 40, 56, 216, + 102, 159, 27, 26, 84, 130, 172, 82, 114, 58, 231, 159, 27, 193, 69, 55, 6, 198, 234, 153, 218, 27, 129, 199, 214, + 196, 232, 198, 174, 34, 71, 80, 157, 138, 2, 50, 23, 3, 27, 249, 149, 118, 154, 246, 75, 116, 201, 27, 5, 178, 85, + 195, 107, 91, 156, 69, 255, 255, 68, 127, 89, 87, 61, 71, 227, 163, 123, 212, 127, 123, 234, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1933, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14748946273519745297" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15544674093056809288" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2aa0879510093b5c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11344189097594198768" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bd21993c966fbd85" + }, + { + "_tag": "ByteArray", + "bytearray": "d27beb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14995469050500344230" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bccaec87e14773911a01bd7b9c6ba79de59489f482aa0879510093b5c1b9d6ea7e152f61af048bd21993c966fbd8543d27beb1bd01a9ba6eb6fe9a6ffff", + "cborBytes": [ + 191, 27, 204, 174, 200, 126, 20, 119, 57, 17, 160, 27, 215, 185, 198, 186, 121, 222, 89, 72, 159, 72, 42, 160, + 135, 149, 16, 9, 59, 92, 27, 157, 110, 167, 225, 82, 246, 26, 240, 72, 189, 33, 153, 60, 150, 111, 189, 133, 67, + 210, 123, 235, 27, 208, 26, 155, 166, 235, 111, 233, 166, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1934, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7101423467842377386" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "840006408702313738" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8074150783798752569" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3336302634300842475" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13982796796652934424" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17674786808429069130" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02374b3d5469772e38" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5552598852668293399" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17786325432800022257" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47635a" + } + } + ] + }, + "cborHex": "bf1b628d5304e05e16aa1b0ba84d60cfc0c50a1b700d255bf34435391b2e4ced91c4b3a1eb1bc20cdf9a3ef7d518d8669f1bf54974f50d2cc34a9f4902374b3d5469772e381b4d0ecb3cd1890117ffff1bf6d5b8bec18a8ef14347635aff", + "cborBytes": [ + 191, 27, 98, 141, 83, 4, 224, 94, 22, 170, 27, 11, 168, 77, 96, 207, 192, 197, 10, 27, 112, 13, 37, 91, 243, 68, + 53, 57, 27, 46, 76, 237, 145, 196, 179, 161, 235, 27, 194, 12, 223, 154, 62, 247, 213, 24, 216, 102, 159, 27, 245, + 73, 116, 245, 13, 44, 195, 74, 159, 73, 2, 55, 75, 61, 84, 105, 119, 46, 56, 27, 77, 14, 203, 60, 209, 137, 1, 23, + 255, 255, 27, 246, 213, 184, 190, 193, 138, 142, 241, 67, 71, 99, 90, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1935, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1160673514944430034" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17899719321018995654" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4739230589484485062" + } + }, + { + "_tag": "ByteArray", + "bytearray": "40ec06b268c2e4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1182870377781198881" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5408385970678239021" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f73b14058" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6008141987111560775" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f11c92525927dffd65c2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8626869590626226798" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3489fbec4f38d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4c56b422c2e73c4b4ebc6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36ce570b33657c98f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cb476a5d4059e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "272241" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a61aa93b765981bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d97734" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbda1abe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3931945376586472432" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14565621507082103728" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fab" + } + } + ] + }, + "cborHex": "bf1b101b8a698e777fd29f1bf86893e2bc8893c61b41c5211c92e349c64740ec06b268c2e41b106a66576afb0021ff1b4b0e7262ae7b8f2d454f73b140581b5361354e05e4e647bf4b0f11c92525927dffd65c2d1b77b8cc2f80e5526e473489fbec4f38d34bd4c56b422c2e73c4b4ebc64936ce570b33657c98f6417b478cb476a5d4059e4327224148a61aa93b765981bd43d9773444cbda1abe1b3691137cd7ad1bf0ff1bca237b96b66b2bb0429fabff", + "cborBytes": [ + 191, 27, 16, 27, 138, 105, 142, 119, 127, 210, 159, 27, 248, 104, 147, 226, 188, 136, 147, 198, 27, 65, 197, 33, + 28, 146, 227, 73, 198, 71, 64, 236, 6, 178, 104, 194, 228, 27, 16, 106, 102, 87, 106, 251, 0, 33, 255, 27, 75, 14, + 114, 98, 174, 123, 143, 45, 69, 79, 115, 177, 64, 88, 27, 83, 97, 53, 78, 5, 228, 230, 71, 191, 75, 15, 17, 201, + 37, 37, 146, 125, 255, 214, 92, 45, 27, 119, 184, 204, 47, 128, 229, 82, 110, 71, 52, 137, 251, 236, 79, 56, 211, + 75, 212, 197, 107, 66, 44, 46, 115, 196, 180, 235, 198, 73, 54, 206, 87, 11, 51, 101, 124, 152, 246, 65, 123, 71, + 140, 180, 118, 165, 212, 5, 158, 67, 39, 34, 65, 72, 166, 26, 169, 59, 118, 89, 129, 189, 67, 217, 119, 52, 68, + 203, 218, 26, 190, 27, 54, 145, 19, 124, 215, 173, 27, 240, 255, 27, 202, 35, 123, 150, 182, 107, 43, 176, 66, + 159, 171, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1936, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "352de12c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b2576dbffdf326" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + }, + "cborHex": "bf44352de12c9f47b2576dbffdf326ff418103ff", + "cborBytes": [191, 68, 53, 45, 225, 44, 159, 71, 178, 87, 109, 191, 253, 243, 38, 255, 65, 129, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1937, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c077dd6fcd5335b6fb5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9917317504474272621" + } + }, + { + "_tag": "ByteArray", + "bytearray": "18" + }, + { + "_tag": "ByteArray", + "bytearray": "29" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6524392307634434318" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a3c077dd6fcd5335b6fb59f1b89a163b9e2f3d36d411841291b5a8b4c3c6fd7710effff", + "cborBytes": [ + 191, 74, 60, 7, 125, 214, 252, 213, 51, 91, 111, 181, 159, 27, 137, 161, 99, 185, 226, 243, 211, 109, 65, 24, 65, + 41, 27, 90, 139, 76, 60, 111, 215, 113, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1938, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e2ecc143f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2314632310775975331" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91758f94f0fa1a575f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b21f16" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1847326779806270410" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4172238386998884178" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9629869707083242800" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ece56fae430153d567e68f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10229680047589619240" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8802995634019965557" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11236823829178525715" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8ef219cb6ec3553214a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16026871144649808017" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14286553244096831780" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2b49d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1024485b1064a69dc2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1143654110982593714" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c66c3c98824" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10528646777258993867" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e432e48da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7739179619689065591" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61f21bad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12934835959388076543" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0cb42bf" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5491637820848035495" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf453e2ecc143f1b201f39d2bd718da34991758f94f0fa1a575f41cd43b21f16bf1b19a305eb2e6b43ca1b39e6c4b51f5137521b85a42b7a33fddd304bece56fae430153d567e68f1b8df71fcdda7af6281b7a2a85e38d131a751b9bf137bcc5d4a8134ac8ef219cb6ec3553214a1bde6ae2645dcf58911bc644087b6b18a124ff43c2b49dbf491024485b1064a69dc21b0fdf135ac7085cb2464c66c3c988241b921d4475f41568cb454e432e48da1b6b6716dc34826c774461f21bad1bb381c4c5fb4679ffff44e0cb42bfd8669f1b4c3637808abf56a780ffff", + "cborBytes": [ + 191, 69, 62, 46, 204, 20, 63, 27, 32, 31, 57, 210, 189, 113, 141, 163, 73, 145, 117, 143, 148, 240, 250, 26, 87, + 95, 65, 205, 67, 178, 31, 22, 191, 27, 25, 163, 5, 235, 46, 107, 67, 202, 27, 57, 230, 196, 181, 31, 81, 55, 82, + 27, 133, 164, 43, 122, 51, 253, 221, 48, 75, 236, 229, 111, 174, 67, 1, 83, 213, 103, 230, 143, 27, 141, 247, 31, + 205, 218, 122, 246, 40, 27, 122, 42, 133, 227, 141, 19, 26, 117, 27, 155, 241, 55, 188, 197, 212, 168, 19, 74, + 200, 239, 33, 156, 182, 236, 53, 83, 33, 74, 27, 222, 106, 226, 100, 93, 207, 88, 145, 27, 198, 68, 8, 123, 107, + 24, 161, 36, 255, 67, 194, 180, 157, 191, 73, 16, 36, 72, 91, 16, 100, 166, 157, 194, 27, 15, 223, 19, 90, 199, 8, + 92, 178, 70, 76, 102, 195, 201, 136, 36, 27, 146, 29, 68, 117, 244, 21, 104, 203, 69, 78, 67, 46, 72, 218, 27, + 107, 103, 22, 220, 52, 130, 108, 119, 68, 97, 242, 27, 173, 27, 179, 129, 196, 197, 251, 70, 121, 255, 255, 68, + 224, 203, 66, 191, 216, 102, 159, 27, 76, 54, 55, 128, 138, 191, 86, 167, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1939, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6541765346943403165" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4750650667129651239" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "604c2381" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12314773517563205093" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4b742a468d8f3b2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17243125482344245232" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99a4e39f2bdc" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7145395948803647492" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b5ac904ec5c85849dbf1b41edb39c9a3c402744604c23811baae6dd448bbe15e548f4b742a468d8f3b21bef4be344a89d67f04699a4e39f2bdcff1b63298bc1ebf4e804a0ff", + "cborBytes": [ + 191, 27, 90, 201, 4, 236, 92, 133, 132, 157, 191, 27, 65, 237, 179, 156, 154, 60, 64, 39, 68, 96, 76, 35, 129, 27, + 170, 230, 221, 68, 139, 190, 21, 229, 72, 244, 183, 66, 164, 104, 216, 243, 178, 27, 239, 75, 227, 68, 168, 157, + 103, 240, 70, 153, 164, 227, 159, 43, 220, 255, 27, 99, 41, 139, 193, 235, 244, 232, 4, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1940, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4652857158082866632" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12648706720650170499" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6e00ebe958" + }, + { + "_tag": "ByteArray", + "bytearray": "1a" + }, + { + "_tag": "ByteArray", + "bytearray": "e0f7c883f85196346b2a691e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13897793677150016546" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b409244eef229adc81bffffffffffffffee1bfffffffffffffff8d8669f1baf893bbf287310839f456e00ebe958411a4ce0f7c883f85196346b2a691e1bc0dee1b738325422ffffff", + "cborBytes": [ + 191, 27, 64, 146, 68, 238, 242, 41, 173, 200, 27, 255, 255, 255, 255, 255, 255, 255, 238, 27, 255, 255, 255, 255, + 255, 255, 255, 248, 216, 102, 159, 27, 175, 137, 59, 191, 40, 115, 16, 131, 159, 69, 110, 0, 235, 233, 88, 65, 26, + 76, 224, 247, 200, 131, 248, 81, 150, 52, 107, 42, 105, 30, 27, 192, 222, 225, 183, 56, 50, 84, 34, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1941, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7180776308673567353" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15832798980966654407" + } + } + } + ] + }, + "cborHex": "bf1b63a73e01e2075a791bdbb966c994af21c7ff", + "cborBytes": [191, 27, 99, 167, 62, 1, 226, 7, 90, 121, 27, 219, 185, 102, 201, 148, 175, 33, 199, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1942, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3721016861588643436" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1e2fc89946" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13037461501967685301" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4338800822840138840" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11661385878363810156" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0ff184" + }, + { + "_tag": "ByteArray", + "bytearray": "57a0a122e7" + }, + { + "_tag": "ByteArray", + "bytearray": "38" + }, + { + "_tag": "ByteArray", + "bytearray": "7b4f98597e2184b216f1fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3777601625379283652" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6639191874939812178" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10582662325606831793" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10152021924144676660" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16958998908547683152" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6359481888726246688" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15227591108876310596" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11096727815045080177" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "702f" + } + } + ] + }, + "cborHex": "bf1b33a3b51eee3ade6c9f451e2fc899461bb4ee5e291d9d56b5ff1b3c36845c448f1c58d8669f1ba1d590abf4a1a96c9f430ff1844557a0a122e741384b7b4f98597e2184b216f1fa1b346cbca9e7aba2c4ffff1b5c2325d595727952801b92dd2b50d7b456b1d8669f1b8ce33a26fc9eff349f1beb5a77a79a38d3501b58416b15750ee5201bd353456f2d781844ffff1b99ff7f27a0f5647142702fff", + "cborBytes": [ + 191, 27, 51, 163, 181, 30, 238, 58, 222, 108, 159, 69, 30, 47, 200, 153, 70, 27, 180, 238, 94, 41, 29, 157, 86, + 181, 255, 27, 60, 54, 132, 92, 68, 143, 28, 88, 216, 102, 159, 27, 161, 213, 144, 171, 244, 161, 169, 108, 159, + 67, 15, 241, 132, 69, 87, 160, 161, 34, 231, 65, 56, 75, 123, 79, 152, 89, 126, 33, 132, 178, 22, 241, 250, 27, + 52, 108, 188, 169, 231, 171, 162, 196, 255, 255, 27, 92, 35, 37, 213, 149, 114, 121, 82, 128, 27, 146, 221, 43, + 80, 215, 180, 86, 177, 216, 102, 159, 27, 140, 227, 58, 38, 252, 158, 255, 52, 159, 27, 235, 90, 119, 167, 154, + 56, 211, 80, 27, 88, 65, 107, 21, 117, 14, 229, 32, 27, 211, 83, 69, 111, 45, 120, 24, 68, 255, 255, 27, 153, 255, + 127, 39, 160, 245, 100, 113, 66, 112, 47, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1943, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17510871295838591597" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eee1c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "261ec19cd7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7578730988030354791" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "457e1a34d9aa11cb18c4" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bc6f020d5d3126dc4abc" + }, + { + "_tag": "ByteArray", + "bytearray": "c73720" + }, + { + "_tag": "ByteArray", + "bytearray": "90b7" + }, + { + "_tag": "ByteArray", + "bytearray": "40e0c7e8ff3b395a41ef0de7" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6478f07e12062aface2f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "397509c3addc" + } + } + ] + }, + "cborHex": "bf1bf3031caac00b1a6d43eee1c145261ec19cd71b692d0fae05cb65674a457e1a34d9aa11cb18c49f4abc6f020d5d3126dc4abc43c737204290b74c40e0c7e8ff3b395a41ef0de7ff4a6478f07e12062aface2f46397509c3addcff", + "cborBytes": [ + 191, 27, 243, 3, 28, 170, 192, 11, 26, 109, 67, 238, 225, 193, 69, 38, 30, 193, 156, 215, 27, 105, 45, 15, 174, 5, + 203, 101, 103, 74, 69, 126, 26, 52, 217, 170, 17, 203, 24, 196, 159, 74, 188, 111, 2, 13, 93, 49, 38, 220, 74, + 188, 67, 199, 55, 32, 66, 144, 183, 76, 64, 224, 199, 232, 255, 59, 57, 90, 65, 239, 13, 231, 255, 74, 100, 120, + 240, 126, 18, 6, 42, 250, 206, 47, 70, 57, 117, 9, 195, 173, 220, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1944, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1db1de07" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "10ba6ec86f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c1b1320" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11745689614707397144" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83db486ccd9ba646" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14473322831326528029" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df4e2a726f01" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7165497333876724297" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9829274b5856bc1173b8a3be" + }, + { + "_tag": "ByteArray", + "bytearray": "eae9801110cc1a" + } + ] + } + } + ] + }, + "cborHex": "bf441db1de079f4510ba6ec86f1bfffffffffffffff5ff445c1b13201ba301127926a112184883db486ccd9ba6469f1bc8db926ea0c4c21dff46df4e2a726f01d87d9f1b6370f5dc58bb12494c9829274b5856bc1173b8a3be47eae9801110cc1affff", + "cborBytes": [ + 191, 68, 29, 177, 222, 7, 159, 69, 16, 186, 110, 200, 111, 27, 255, 255, 255, 255, 255, 255, 255, 245, 255, 68, + 92, 27, 19, 32, 27, 163, 1, 18, 121, 38, 161, 18, 24, 72, 131, 219, 72, 108, 205, 155, 166, 70, 159, 27, 200, 219, + 146, 110, 160, 196, 194, 29, 255, 70, 223, 78, 42, 114, 111, 1, 216, 125, 159, 27, 99, 112, 245, 220, 88, 187, 18, + 73, 76, 152, 41, 39, 75, 88, 86, 188, 17, 115, 184, 163, 190, 71, 234, 233, 128, 17, 16, 204, 26, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1945, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8472020812225038452" + } + } + } + ] + }, + "cborHex": "bf081b7592aa0ac263c874ff", + "cborBytes": [191, 8, 27, 117, 146, 170, 10, 194, 99, 200, 116, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1946, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6020065" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "976114571792761451" + } + } + } + ] + }, + "cborHex": "bf44e60200651b0d8bdb0807ca426bff", + "cborBytes": [191, 68, 230, 2, 0, 101, 27, 13, 139, 219, 8, 7, 202, 66, 107, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1947, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1768789760788582948" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f9ce527b84" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1271811677603874328" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1fa2560a101259a88e" + }, + { + "_tag": "ByteArray", + "bytearray": "46d0941493" + } + ] + } + } + ] + }, + "cborHex": "bf1b188c00ea7e26d224d8669f1bfffffffffffffffc9f45f9ce527b841b11a661fb80c5c618491fa2560a101259a88e4546d0941493ffffff", + "cborBytes": [ + 191, 27, 24, 140, 0, 234, 126, 38, 210, 36, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 69, + 249, 206, 82, 123, 132, 27, 17, 166, 97, 251, 128, 197, 198, 24, 73, 31, 162, 86, 10, 16, 18, 89, 168, 142, 69, + 70, 208, 148, 20, 147, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1948, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6798267763369906528" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5035864170687304236" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c7ba4a9350" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16159268504230851237" + } + }, + { + "_tag": "ByteArray", + "bytearray": "973c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17857572282049690963" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10529870418072443691" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "771f4e404a282bc65166" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11339987315636033989" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b5e584c8313a711609f1b45e2fbc836ef122c45c7ba4a93501be0414116d0d672a542973c1bf7d2d760866efd53ff1b92219d5b081a1b2b4a771f4e404a282bc651661b9d5fba61b9ebd9c580ff", + "cborBytes": [ + 191, 27, 94, 88, 76, 131, 19, 167, 17, 96, 159, 27, 69, 226, 251, 200, 54, 239, 18, 44, 69, 199, 186, 74, 147, 80, + 27, 224, 65, 65, 22, 208, 214, 114, 165, 66, 151, 60, 27, 247, 210, 215, 96, 134, 110, 253, 83, 255, 27, 146, 33, + 157, 91, 8, 26, 27, 43, 74, 119, 31, 78, 64, 74, 40, 43, 198, 81, 102, 27, 157, 95, 186, 97, 185, 235, 217, 197, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1949, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3203021097372363416" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1242" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1063eed62031" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69e2c0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1446745488268111108" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d65702d98181a779019" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e5496a46ac89116e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4301200cb3345dcd6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3aa0f255b31d39b7284d6be4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec8e8e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "243466182613750232" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5680753109005833816" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "560934518664626565" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4906659623578722983" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6725585714411856731" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3910e9752a62deee176b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7679046185293009357" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17657191295125297899" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b2c736ab7bcf62a98bf421242461063eed620314369e2c01b1413df5b3c9ead044a9d65702d98181a779019491e5496a46ac89116e849d4301200cb3345dcd64c3aa0f255b31d39b7284d6be443ec8e8e1b0360f734018351d8ff1b4ed616dacefd1658d8669f1b07c8d6f9074281859f1b4417f4ee592962a71b5d561492d5f5e35b4a3910e9752a62deee176bffff1b6a9173d1f83551cdd8669f1bf50af1ee5d101aeb80ffff", + "cborBytes": [ + 191, 27, 44, 115, 106, 183, 188, 246, 42, 152, 191, 66, 18, 66, 70, 16, 99, 238, 214, 32, 49, 67, 105, 226, 192, + 27, 20, 19, 223, 91, 60, 158, 173, 4, 74, 157, 101, 112, 45, 152, 24, 26, 119, 144, 25, 73, 30, 84, 150, 164, 106, + 200, 145, 22, 232, 73, 212, 48, 18, 0, 203, 51, 69, 220, 214, 76, 58, 160, 242, 85, 179, 29, 57, 183, 40, 77, 107, + 228, 67, 236, 142, 142, 27, 3, 96, 247, 52, 1, 131, 81, 216, 255, 27, 78, 214, 22, 218, 206, 253, 22, 88, 216, + 102, 159, 27, 7, 200, 214, 249, 7, 66, 129, 133, 159, 27, 68, 23, 244, 238, 89, 41, 98, 167, 27, 93, 86, 20, 146, + 213, 245, 227, 91, 74, 57, 16, 233, 117, 42, 98, 222, 238, 23, 107, 255, 255, 27, 106, 145, 115, 209, 248, 53, 81, + 205, 216, 102, 159, 27, 245, 10, 241, 238, 93, 16, 26, 235, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1950, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7118712554007273693" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13613192488203504251" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12830613195469742659" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5438838543592049457" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c8d794" + } + ] + } + } + ] + }, + "cborHex": "bf1b62cabf59efb7a0dd1bbcebc6713662ca7b1bb20f7eb8c669e243024105d8669f1b4b7aa2d6d581cb319f43c8d794ffffff", + "cborBytes": [ + 191, 27, 98, 202, 191, 89, 239, 183, 160, 221, 27, 188, 235, 198, 113, 54, 98, 202, 123, 27, 178, 15, 126, 184, + 198, 105, 226, 67, 2, 65, 5, 216, 102, 159, 27, 75, 122, 162, 214, 213, 129, 203, 49, 159, 67, 200, 215, 148, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1951, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ba991f4875d8720276cdf" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4b5ba991f4875d8720276cdfd9050380ff", + "cborBytes": [191, 75, 91, 169, 145, 244, 135, 93, 135, 32, 39, 108, 223, 217, 5, 3, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1952, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11117488332441249822" + } + }, + { + "_tag": "ByteArray", + "bytearray": "928baa78" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e12801010401fce9b4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00eec90b23" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f462fc20d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "515043" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "995ab510994710f9e15c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43c75a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "995b0400" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd01ca04060237" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e56ee4732276092b5654" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff79f1b9a4940bc41b5e81e44928baa78ff49e12801010401fce9b4bf4500eec90b2345f462fc20d6435150431bfffffffffffffff74a995ab510994710f9e15c4343c75a44995b040047fd01ca040602374ae56ee4732276092b56541bfffffffffffffff0ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 27, 154, 73, 64, 188, 65, 181, 232, 30, 68, 146, 139, 170, + 120, 255, 73, 225, 40, 1, 1, 4, 1, 252, 233, 180, 191, 69, 0, 238, 201, 11, 35, 69, 244, 98, 252, 32, 214, 67, 81, + 80, 67, 27, 255, 255, 255, 255, 255, 255, 255, 247, 74, 153, 90, 181, 16, 153, 71, 16, 249, 225, 92, 67, 67, 199, + 90, 68, 153, 91, 4, 0, 71, 253, 1, 202, 4, 6, 2, 55, 74, 229, 110, 228, 115, 34, 118, 9, 43, 86, 84, 27, 255, 255, + 255, 255, 255, 255, 255, 240, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1953, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "29b596" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43fcb48ab927ce56535a9e89" + } + } + ] + }, + "cborHex": "bf4329b5964c43fcb48ab927ce56535a9e89ff", + "cborBytes": [191, 67, 41, 181, 150, 76, 67, 252, 180, 138, 185, 39, 206, 86, 83, 90, 158, 137, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1954, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "743266011805010949" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8227978900592899020" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6510996689956602565" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17538699106769966967" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1776184161741128592" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9215115998414828869" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13323926068424589136" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10247442311263147111" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "617047297580145962" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11072545754628476480" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5763232945923198085" + } + } + } + ] + }, + "cborHex": "bf1b0a509c7fef424c051b722fa737653fb3cc1b5a5bb4fe269b82c5bf1bf365f9e9e17c17771b18a64615a0414390ff1b7fe2ab2d4188f5459f1bb8e8182a8203bf50ff1b8e363a7d2325d4671b0890313f75e11d2a1b99a995b2efe3ce401b4ffb1dd453948c85ff", + "cborBytes": [ + 191, 27, 10, 80, 156, 127, 239, 66, 76, 5, 27, 114, 47, 167, 55, 101, 63, 179, 204, 27, 90, 91, 180, 254, 38, 155, + 130, 197, 191, 27, 243, 101, 249, 233, 225, 124, 23, 119, 27, 24, 166, 70, 21, 160, 65, 67, 144, 255, 27, 127, + 226, 171, 45, 65, 136, 245, 69, 159, 27, 184, 232, 24, 42, 130, 3, 191, 80, 255, 27, 142, 54, 58, 125, 35, 37, + 212, 103, 27, 8, 144, 49, 63, 117, 225, 29, 42, 27, 153, 169, 149, 178, 239, 227, 206, 64, 27, 79, 251, 29, 212, + 83, 148, 140, 133, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1955, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10535408146064339309" + } + } + ] + } + } + ] + }, + "cborHex": "bf41f49f1b923549e3cdebf16dffff", + "cborBytes": [191, 65, 244, 159, 27, 146, 53, 73, 227, 205, 235, 241, 109, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1956, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "041c9d392a25" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13395486274614716810" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12623807201849782145" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12314487614207717952" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abae44bbff1376" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6270131556033877671" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1858964333839687933" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11072695603961981010" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6136470915866829201" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb50c3513cb34fcefcee4083" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16873001627544464756" + } + } + } + ] + }, + "cborHex": "bf46041c9d392a25d8669f1bb9e653cb6007e98a9f41af1baf30c5c42b462f811baae5d93d7bcc7240ffff47abae44bbff1376bf1b5703fb6dfc5dd6a71b19cc5e3660a2a0fd1b99aa1dfc742ee8521b55291fc91ac22191ff4ceb50c3513cb34fcefcee40831bea28f19550602d74ff", + "cborBytes": [ + 191, 70, 4, 28, 157, 57, 42, 37, 216, 102, 159, 27, 185, 230, 83, 203, 96, 7, 233, 138, 159, 65, 175, 27, 175, 48, + 197, 196, 43, 70, 47, 129, 27, 170, 229, 217, 61, 123, 204, 114, 64, 255, 255, 71, 171, 174, 68, 187, 255, 19, + 118, 191, 27, 87, 3, 251, 109, 252, 93, 214, 167, 27, 25, 204, 94, 54, 96, 162, 160, 253, 27, 153, 170, 29, 252, + 116, 46, 232, 82, 27, 85, 41, 31, 201, 26, 194, 33, 145, 255, 76, 235, 80, 195, 81, 60, 179, 79, 206, 252, 238, + 64, 131, 27, 234, 40, 241, 149, 80, 96, 45, 116, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1957, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "090177" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10355074511933239835" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9940598156276201706" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "990422868776399546" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11346191305396085424" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14485090697747251217" + } + } + ] + } + } + ] + }, + "cborHex": "bf430901779f1b8fb49d67b27b721b1b89f4195b07bef8ea1b0dbeb05a06d732ba1b9d75c4e0a7c262b01bc905613e8a8a4011ffff", + "cborBytes": [ + 191, 67, 9, 1, 119, 159, 27, 143, 180, 157, 103, 178, 123, 114, 27, 27, 137, 244, 25, 91, 7, 190, 248, 234, 27, + 13, 190, 176, 90, 6, 215, 50, 186, 27, 157, 117, 196, 224, 167, 194, 98, 176, 27, 201, 5, 97, 62, 138, 138, 64, + 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1958, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "356329752381728429" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "da87b97cfb633a2dfd4f" + }, + { + "_tag": "ByteArray", + "bytearray": "2a7195f039" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2863615502467927106" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8623048013755237298" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7890723458995379850" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5585322581043842356" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9f2c0da8cfd05f3959e51" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13970316554159439177" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17120891463810695929" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3223590408298838912" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e519" + } + ] + } + } + ] + }, + "cborHex": "bf1b04f1f005999da6ad9f4ada87b97cfb633a2dfd4f452a7195f0391b27bd9b209de70c421b77ab387b4d04c3b21b6d817b2dda42de8aff1b4d830d4b8f160d344bf9f2c0da8cfd05f3959e511bc1e088e35a6ebd499f1bed99a013727442f91b2cbc7e65a4023b8042e519ffff", + "cborBytes": [ + 191, 27, 4, 241, 240, 5, 153, 157, 166, 173, 159, 74, 218, 135, 185, 124, 251, 99, 58, 45, 253, 79, 69, 42, 113, + 149, 240, 57, 27, 39, 189, 155, 32, 157, 231, 12, 66, 27, 119, 171, 56, 123, 77, 4, 195, 178, 27, 109, 129, 123, + 45, 218, 66, 222, 138, 255, 27, 77, 131, 13, 75, 143, 22, 13, 52, 75, 249, 242, 192, 218, 140, 253, 5, 243, 149, + 158, 81, 27, 193, 224, 136, 227, 90, 110, 189, 73, 159, 27, 237, 153, 160, 19, 114, 116, 66, 249, 27, 44, 188, + 126, 101, 164, 2, 59, 128, 66, 229, 25, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1959, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03110d9d3bbf9a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2396848252428519613" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "37a47d3f9646" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9762294183704780903" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1b6bb22ca483" + }, + { + "_tag": "ByteArray", + "bytearray": "472472e16cc57fa5" + }, + { + "_tag": "ByteArray", + "bytearray": "8cb0209530209191" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1e21" + }, + { + "_tag": "ByteArray", + "bytearray": "b54cf691079f81e9eb6179" + }, + { + "_tag": "ByteArray", + "bytearray": "0eb79e19b705" + }, + { + "_tag": "ByteArray", + "bytearray": "e40d259d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16525365163024877581" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f09c1f5effed" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14687221572416505438" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4703110d9d3bbf9ad8669f1b214350c95a8488bd9f4637a47d3f96461b877aa2d65495e067461b6bb22ca48348472472e16cc57fa5488cb0209530209191ffff41589f421e214bb54cf691079f81e9eb6179460eb79e19b70544e40d259d1be555e40f85b6880dff46f09c1f5effedd8669f1bcbd37e343157065e80ffff", + "cborBytes": [ + 191, 71, 3, 17, 13, 157, 59, 191, 154, 216, 102, 159, 27, 33, 67, 80, 201, 90, 132, 136, 189, 159, 70, 55, 164, + 125, 63, 150, 70, 27, 135, 122, 162, 214, 84, 149, 224, 103, 70, 27, 107, 178, 44, 164, 131, 72, 71, 36, 114, 225, + 108, 197, 127, 165, 72, 140, 176, 32, 149, 48, 32, 145, 145, 255, 255, 65, 88, 159, 66, 30, 33, 75, 181, 76, 246, + 145, 7, 159, 129, 233, 235, 97, 121, 70, 14, 183, 158, 25, 183, 5, 68, 228, 13, 37, 157, 27, 229, 85, 228, 15, + 133, 182, 136, 13, 255, 70, 240, 156, 31, 94, 255, 237, 216, 102, 159, 27, 203, 211, 126, 52, 49, 87, 6, 94, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1960, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15a92257d0ab8c8d9971d997" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15556574316790529800" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9226345081463315286" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "195fc4d535f688" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5989852412497932188" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efc9994a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a73b3f9524d5072bf8" + } + ] + } + } + ] + }, + "cborHex": "bf4c15a92257d0ab8c8d9971d9979f1bd7e40deb3a43bf081b800a8ff7e3cb1b56414aff47195fc4d535f6881b53203b0897f4af9c44efc9994a9f49a73b3f9524d5072bf8ffff", + "cborBytes": [ + 191, 76, 21, 169, 34, 87, 208, 171, 140, 141, 153, 113, 217, 151, 159, 27, 215, 228, 13, 235, 58, 67, 191, 8, 27, + 128, 10, 143, 247, 227, 203, 27, 86, 65, 74, 255, 71, 25, 95, 196, 213, 53, 246, 136, 27, 83, 32, 59, 8, 151, 244, + 175, 156, 68, 239, 201, 153, 74, 159, 73, 167, 59, 63, 149, 36, 213, 7, 43, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1961, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0702" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3075135311214143176" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + }, + "cborHex": "bf4207029f1b2aad1345d52de6c8ff416907ff", + "cborBytes": [191, 66, 7, 2, 159, 27, 42, 173, 19, 69, 213, 45, 230, 200, 255, 65, 105, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1962, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11665601973357688010" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16652386424055798715" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15976242406559556337" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3071594794763824198" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2744811217888124077" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12450987723855939996" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17365694014886976125" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f0a3fca934fd08" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16191603597253129315" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d9b8ec2292c75" + } + } + ] + }, + "cborHex": "bf1ba1e48b301114b4ca1be71929397c621bbb1bddb703d2b083a2f1d8669f1b2aa07f311bd62c469f1b2617874291ba9cad428b041baccacb5ddf2ec99c1bf0ff56b2fb771a7d47f0a3fca934fd08ffff1be0b421af5635b463476d9b8ec2292c75ff", + "cborBytes": [ + 191, 27, 161, 228, 139, 48, 17, 20, 180, 202, 27, 231, 25, 41, 57, 124, 98, 27, 187, 27, 221, 183, 3, 210, 176, + 131, 162, 241, 216, 102, 159, 27, 42, 160, 127, 49, 27, 214, 44, 70, 159, 27, 38, 23, 135, 66, 145, 186, 156, 173, + 66, 139, 4, 27, 172, 202, 203, 93, 223, 46, 201, 156, 27, 240, 255, 86, 178, 251, 119, 26, 125, 71, 240, 163, 252, + 169, 52, 253, 8, 255, 255, 27, 224, 180, 33, 175, 86, 53, 180, 99, 71, 109, 155, 142, 194, 41, 44, 117, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1963, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c28394258534" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4321096198741192494" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8b1d8d6171688033737838d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7013271111454205391" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc470f095ed2b2" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf46c28394258534bf1b3bf79e193e426f2e4ce8b1d8d6171688033737838d1b615424eaffbca5cf47bc470f095ed2b2ff41c3a0ff", + "cborBytes": [ + 191, 70, 194, 131, 148, 37, 133, 52, 191, 27, 59, 247, 158, 25, 62, 66, 111, 46, 76, 232, 177, 216, 214, 23, 22, + 136, 3, 55, 55, 131, 141, 27, 97, 84, 36, 234, 255, 188, 165, 207, 71, 188, 71, 15, 9, 94, 210, 178, 255, 65, 195, + 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1964, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11155424085716853684" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20f81c66" + } + } + ] + }, + "cborHex": "bf1b9ad0071a1bfd63b44420f81c66ff", + "cborBytes": [191, 27, 154, 208, 7, 26, 27, 253, 99, 180, 68, 32, 248, 28, 102, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1965, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "058de6f9e002c3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3713534621059308411" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e7c2c92a2ece15e10" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a38820e75a30f38ea525adb9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "078507f804" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f1c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fefe010fe307aa4a03d7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7b2df5b373ce6a7c7ace2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11053321568842761641" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c352c3ba5de26a38988a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99084f01a1da6dfe" + } + } + ] + } + } + ] + }, + "cborHex": "bf47058de6f9e002c3d8669f1b338920100d5adb7b9f1bfffffffffffffff8494e7c2c92a2ece15e10ffff4ca38820e75a30f38ea525adb9bf45078507f8041bfffffffffffffff6428f1c4afefe010fe307aa4a03d74bb7b2df5b373ce6a7c7ace21b99654967630945a94ac352c3ba5de26a38988a4899084f01a1da6dfeffff", + "cborBytes": [ + 191, 71, 5, 141, 230, 249, 224, 2, 195, 216, 102, 159, 27, 51, 137, 32, 16, 13, 90, 219, 123, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 248, 73, 78, 124, 44, 146, 162, 236, 225, 94, 16, 255, 255, 76, 163, 136, 32, 231, 90, + 48, 243, 142, 165, 37, 173, 185, 191, 69, 7, 133, 7, 248, 4, 27, 255, 255, 255, 255, 255, 255, 255, 246, 66, 143, + 28, 74, 254, 254, 1, 15, 227, 7, 170, 74, 3, 215, 75, 183, 178, 223, 91, 55, 60, 230, 167, 199, 172, 226, 27, 153, + 101, 73, 103, 99, 9, 69, 169, 74, 195, 82, 195, 186, 93, 226, 106, 56, 152, 138, 72, 153, 8, 79, 1, 161, 218, 109, + 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1966, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c73a30a947980ebd8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6581651473242220306" + } + } + } + ] + }, + "cborHex": "bf494c73a30a947980ebd81b5b56b924d2076712ff", + "cborBytes": [191, 73, 76, 115, 163, 10, 148, 121, 128, 235, 216, 27, 91, 86, 185, 36, 210, 7, 103, 18, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1967, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15738793664940901449" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7858780101277538839" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6789072736657885993" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b00163148149b23b86" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12284219520648236435" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc7fac" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c1fbc520" + } + ] + } + } + ] + }, + "cborHex": "bf1bda6b6d7357f8844941fd1bfffffffffffffffa9f1b6d0ffedd508e5a171b5e37a1af16c84b29ff49b00163148149b23b86d8669f1baa7a5091c7284d9380ff43fc7facd905069f44c1fbc520ffff", + "cborBytes": [ + 191, 27, 218, 107, 109, 115, 87, 248, 132, 73, 65, 253, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 27, 109, + 15, 254, 221, 80, 142, 90, 23, 27, 94, 55, 161, 175, 22, 200, 75, 41, 255, 73, 176, 1, 99, 20, 129, 73, 178, 59, + 134, 216, 102, 159, 27, 170, 122, 80, 145, 199, 40, 77, 147, 128, 255, 67, 252, 127, 172, 217, 5, 6, 159, 68, 193, + 251, 197, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1968, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "49f6ef462211a297f69aa1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4294691881448460836" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1517556547217434026" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6790720642425208190" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4342425187850448197" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12946959570654492202" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11297863579043004254" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4b49f6ef462211a297f69aa1bf1b3b99cf830d7d52241b150f71a3ab76a5aa1b5e3d7c720caabd7e1b3c4364b38188ed451bb3acd7223234762a1b9cca131105ae7f5effff", + "cborBytes": [ + 191, 75, 73, 246, 239, 70, 34, 17, 162, 151, 246, 154, 161, 191, 27, 59, 153, 207, 131, 13, 125, 82, 36, 27, 21, + 15, 113, 163, 171, 118, 165, 170, 27, 94, 61, 124, 114, 12, 170, 189, 126, 27, 60, 67, 100, 179, 129, 136, 237, + 69, 27, 179, 172, 215, 34, 50, 52, 118, 42, 27, 156, 202, 19, 17, 5, 174, 127, 94, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1969, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae214223f2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12832401877058591430" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55ccd4972f4aa8cf" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0ab5d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9a803d4fc04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18250562074325442520" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e97f" + } + ] + } + } + ] + }, + "cborHex": "bf45ae214223f2bf1bb215d984a9221ac64855ccd4972f4aa8cfff43b0ab5d46f9a803d4fc0441cb9f1bfd470582cf625fd842e97fffff", + "cborBytes": [ + 191, 69, 174, 33, 66, 35, 242, 191, 27, 178, 21, 217, 132, 169, 34, 26, 198, 72, 85, 204, 212, 151, 47, 74, 168, + 207, 255, 67, 176, 171, 93, 70, 249, 168, 3, 212, 252, 4, 65, 203, 159, 27, 253, 71, 5, 130, 207, 98, 95, 216, 66, + 233, 127, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1970, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4275867857598552139" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bc1af519dff8827b" + }, + { + "_tag": "ByteArray", + "bytearray": "5789ed04929782" + }, + { + "_tag": "ByteArray", + "bytearray": "617124e1a93c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14827908955833855991" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4344104164940456399" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3b56ef2976ac184b9f48bc1af519dff8827b475789ed0492978246617124e1a93cff1bcdc750a23a4f6ff79f41a61b3c495bb8d29221cfffff", + "cborBytes": [ + 191, 27, 59, 86, 239, 41, 118, 172, 24, 75, 159, 72, 188, 26, 245, 25, 223, 248, 130, 123, 71, 87, 137, 237, 4, + 146, 151, 130, 70, 97, 113, 36, 225, 169, 60, 255, 27, 205, 199, 80, 162, 58, 79, 111, 247, 159, 65, 166, 27, 60, + 73, 91, 184, 210, 146, 33, 207, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1971, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1332965074773916897" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7880937980640656154" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "66f93f4802999c6156" + }, + { + "_tag": "ByteArray", + "bytearray": "5dcf" + }, + { + "_tag": "ByteArray", + "bytearray": "e234ad23f889bab4" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3277074828480871508" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e9c322" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3078163850957574974" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5989908582326897289" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12623113845011256299" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11526677959457132620" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9582943862324693336" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12640446377657353832" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "422f5f0143" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13827242790577552133" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60b75f997d38faa710" + } + } + ] + }, + "cborHex": "bf1b127fa4ac53e6bce1d8669f1b6d5eb756a0f87b1a9f4966f93f4802999c6156425dcf48e234ad23f889bab4ffff1b2d7a82319df9fc549f43e9c3221b2ab7d5b6b0c6533e1b53206e1ea6a88a891baf2e4f29733613ebff1b9ff6fc887dc4504c1b84fd74ab905f89581baf6be3022ea3c66845422f5f01431bbfe43c0ee374bb054960b75f997d38faa710ff", + "cborBytes": [ + 191, 27, 18, 127, 164, 172, 83, 230, 188, 225, 216, 102, 159, 27, 109, 94, 183, 86, 160, 248, 123, 26, 159, 73, + 102, 249, 63, 72, 2, 153, 156, 97, 86, 66, 93, 207, 72, 226, 52, 173, 35, 248, 137, 186, 180, 255, 255, 27, 45, + 122, 130, 49, 157, 249, 252, 84, 159, 67, 233, 195, 34, 27, 42, 183, 213, 182, 176, 198, 83, 62, 27, 83, 32, 110, + 30, 166, 168, 138, 137, 27, 175, 46, 79, 41, 115, 54, 19, 235, 255, 27, 159, 246, 252, 136, 125, 196, 80, 76, 27, + 132, 253, 116, 171, 144, 95, 137, 88, 27, 175, 107, 227, 2, 46, 163, 198, 104, 69, 66, 47, 95, 1, 67, 27, 191, + 228, 60, 14, 227, 116, 187, 5, 73, 96, 183, 95, 153, 125, 56, 250, 167, 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1972, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d296d4d1a1c54aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15416218288017074442" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "242850e809d0a9f54dd0b6" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49b891786aae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "161d0429" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e9da46a4b57421a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8644815518314750420" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3a55912653d5036456c609e1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6204805881305759161" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75d5afd418a9d1a20ce0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9805121587428654371" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13443120268219772174" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7727c3e482470578" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a074" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17985422517107714526" + } + } + } + ] + }, + "cborHex": "bf481d296d4d1a1c54aa1bd5f168dab523690a4b242850e809d0a9f54dd0b6a04649b891786aae44161d0429484e9da46a4b57421ad8669f1b77f88de965ef61d49f4c3a55912653d5036456c609e11b561be613177bfdb9ffff4a75d5afd418a9d1a20ce0bf1b8812ca224e32fd23419b1bba8f8ea8c417ed0e487727c3e482470578ff42a0741bf9990e7d0b8469deff", + "cborBytes": [ + 191, 72, 29, 41, 109, 77, 26, 28, 84, 170, 27, 213, 241, 104, 218, 181, 35, 105, 10, 75, 36, 40, 80, 232, 9, 208, + 169, 245, 77, 208, 182, 160, 70, 73, 184, 145, 120, 106, 174, 68, 22, 29, 4, 41, 72, 78, 157, 164, 106, 75, 87, + 66, 26, 216, 102, 159, 27, 119, 248, 141, 233, 101, 239, 97, 212, 159, 76, 58, 85, 145, 38, 83, 213, 3, 100, 86, + 198, 9, 225, 27, 86, 27, 230, 19, 23, 123, 253, 185, 255, 255, 74, 117, 213, 175, 212, 24, 169, 209, 162, 12, 224, + 191, 27, 136, 18, 202, 34, 78, 50, 253, 35, 65, 155, 27, 186, 143, 142, 168, 196, 23, 237, 14, 72, 119, 39, 195, + 228, 130, 71, 5, 120, 255, 66, 160, 116, 27, 249, 153, 14, 125, 11, 132, 105, 222, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1973, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8e0fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe0004" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcbd05c2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf43c8e0fe4263f943fe0004bf0c44fcbd05c21bfffffffffffffff80fffff", + "cborBytes": [ + 191, 67, 200, 224, 254, 66, 99, 249, 67, 254, 0, 4, 191, 12, 68, 252, 189, 5, 194, 27, 255, 255, 255, 255, 255, + 255, 255, 248, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1974, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1727864395099857051" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00f8" + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff6d8669f1b17fa9b8341f8e09b9f4200f8ffffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 246, 216, 102, 159, 27, 23, 250, 155, 131, 65, 248, 224, 155, 159, 66, + 0, 248, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1975, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14148590842572110293" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9359516022140151577" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6312891921573317764" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6271768352377170487" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3ddbd964293aaa24" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "905722fb26" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12753506492264240123" + } + } + } + ] + }, + "cborHex": "bf1bc459e468abdaf9d59f1b81e3ae3bb93da7191b579be5c16acf8c841b5709cc1654fa6a37483ddbd964293aaa24ff45905722fb261bb0fd8e95700c53fbff", + "cborBytes": [ + 191, 27, 196, 89, 228, 104, 171, 218, 249, 213, 159, 27, 129, 227, 174, 59, 185, 61, 167, 25, 27, 87, 155, 229, + 193, 106, 207, 140, 132, 27, 87, 9, 204, 22, 84, 250, 106, 55, 72, 61, 219, 217, 100, 41, 58, 170, 36, 255, 69, + 144, 87, 34, 251, 38, 27, 176, 253, 142, 149, 112, 12, 83, 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1976, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "343496273656045965" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12023881792588075283" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12060782229484896750" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62b51eadf71e2a4e968672" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4143926012571585619" + } + }, + { + "_tag": "ByteArray", + "bytearray": "79b2bc" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10406030153214309229" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1775856705001586323" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7518f0330b1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7459811413400220314" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6df401d5382624e3056016" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8321081819400795233" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3faae4f98ec9c1343ef0094f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8412990213116110038" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "deffad30abec0e334166" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12146162399811853870" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17446446546471893568" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17972412219007432992" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0f1edffd7" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11136060627594131503" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11914865026277333618" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16227931564367670317" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4634be1719f1ad387589" + } + ] + } + } + ] + }, + "cborHex": "bf1b04c4580a7cf0618dd8669f1ba6dd68c8fc7fd1139f1ba760818975ca81ee4b62b51eadf71e2a4e9686721b39822ec0c2d48c534379b2bcffff1b9069a54a7457b36dbf1b18a51c43a99d7e9346f7518f0330b11b678692f4eb1ff29a4b6df401d5382624e30560161b737a6bd3e85874614c3faae4f98ec9c1343ef0094f1b74c0f2065f9fa4d64adeffad30abec0e3341661ba88fd65978fdde2e1bf21e3ab2e34c3a401bf96ad5b0f6d3f92045c0f1edffd7ff1b9a8b3c23b0f6382fa01ba55a1a9d1dfc5a72a01be13531c74d7bec2d9f4a4634be1719f1ad387589ffff", + "cborBytes": [ + 191, 27, 4, 196, 88, 10, 124, 240, 97, 141, 216, 102, 159, 27, 166, 221, 104, 200, 252, 127, 209, 19, 159, 27, + 167, 96, 129, 137, 117, 202, 129, 238, 75, 98, 181, 30, 173, 247, 30, 42, 78, 150, 134, 114, 27, 57, 130, 46, 192, + 194, 212, 140, 83, 67, 121, 178, 188, 255, 255, 27, 144, 105, 165, 74, 116, 87, 179, 109, 191, 27, 24, 165, 28, + 67, 169, 157, 126, 147, 70, 247, 81, 143, 3, 48, 177, 27, 103, 134, 146, 244, 235, 31, 242, 154, 75, 109, 244, 1, + 213, 56, 38, 36, 227, 5, 96, 22, 27, 115, 122, 107, 211, 232, 88, 116, 97, 76, 63, 170, 228, 249, 142, 201, 193, + 52, 62, 240, 9, 79, 27, 116, 192, 242, 6, 95, 159, 164, 214, 74, 222, 255, 173, 48, 171, 236, 14, 51, 65, 102, 27, + 168, 143, 214, 89, 120, 253, 222, 46, 27, 242, 30, 58, 178, 227, 76, 58, 64, 27, 249, 106, 213, 176, 246, 211, + 249, 32, 69, 192, 241, 237, 255, 215, 255, 27, 154, 139, 60, 35, 176, 246, 56, 47, 160, 27, 165, 90, 26, 157, 29, + 252, 90, 114, 160, 27, 225, 53, 49, 199, 77, 123, 236, 45, 159, 74, 70, 52, 190, 23, 25, 241, 173, 56, 117, 137, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1977, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "014c8cf5fa4af8c5ef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36d806" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6047749757396309943" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16820471609998606907" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9543738310715519802" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49d1fb05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55518f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43383bee20fa03eb2e" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f31a90d352f7" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10910709379760247989" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14045603825630401621" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4752806411511403215" + } + } + ] + } + } + ] + }, + "cborHex": "bf49014c8cf5fa4af8c5ef0e4336d806bf1b53edec5cac0fd7b71bfffffffffffffff41be96e51cf8482823b1b84722b6dbf7c333a4449d1fb054355518f418b4943383bee20fa03eb2eff46f31a90d352f79f1b976aa05f9c21d4b51bc2ec02433a9154551b41f55c3ff45612cfffff", + "cborBytes": [ + 191, 73, 1, 76, 140, 245, 250, 74, 248, 197, 239, 14, 67, 54, 216, 6, 191, 27, 83, 237, 236, 92, 172, 15, 215, + 183, 27, 255, 255, 255, 255, 255, 255, 255, 244, 27, 233, 110, 81, 207, 132, 130, 130, 59, 27, 132, 114, 43, 109, + 191, 124, 51, 58, 68, 73, 209, 251, 5, 67, 85, 81, 143, 65, 139, 73, 67, 56, 59, 238, 32, 250, 3, 235, 46, 255, + 70, 243, 26, 144, 211, 82, 247, 159, 27, 151, 106, 160, 95, 156, 33, 212, 181, 27, 194, 236, 2, 67, 58, 145, 84, + 85, 27, 65, 245, 92, 63, 244, 86, 18, 207, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1978, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16979565657922131484" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9526814242252187241" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13491630174052400582" + } + } + ] + } + } + ] + }, + "cborHex": "bf1beba3890118ded61cd8669f1b84360b13fe92e6699f1bbb3be6295d55bdc6ffffff", + "cborBytes": [ + 191, 27, 235, 163, 137, 1, 24, 222, 214, 28, 216, 102, 159, 27, 132, 54, 11, 19, 254, 146, 230, 105, 159, 27, 187, + 59, 230, 41, 93, 85, 189, 198, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1979, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19516246fba7f438" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2075099516208309620" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3521899397976919652" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10048186602591838026" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1791275003540429288" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11119763232120691761" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64e5ce979f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11550977544715914963" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fb9b17ada16618072e78f" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ee1f9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "829959" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1362bfab8cb371321ee43aad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9df23f74" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12392581327001934854" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8573589550205134313" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "759dd825465c3de9f77b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd730991b717dfd7b7c74ef3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7521cc5d" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6134fa257c79fdc6af465035" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04e0c79075db22c7341500" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "719e52039625138f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43c502b007a9f99100" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4737441996184434108" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8455514565577321406" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11037387566483904677" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9773564042167722656" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d878f318622a5c07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01fefba6021106ff" + } + } + ] + }, + "cborHex": "bf4819516246fba7f438bf1b1ccc3c04012e65741b30e04cd7b7138e641b8b72547a3c535f4a1b18dbe320091059e81b9a5155be9d00dc314564e5ce979f1ba04d50e0914e4ed34b5fb9b17ada16618072e78fff434ee1f9bf438299594c1362bfab8cb371321ee43aad449df23f741babfb4b0ee616dc0641a21b76fb824565fa65e941f24a759dd825465c3de9f77b4cfd730991b717dfd7b7c74ef3447521cc5dff4c6134fa257c79fdc6af4650354b04e0c79075db22c734150048719e52039625138fbf074943c502b007a9f99100110512141b41bec6653e9735bc1b755805b2ba60abbe1b992cad835c9618a506ff41ca1b87a2acb6baf022a048d878f318622a5c074801fefba6021106ffff", + "cborBytes": [ + 191, 72, 25, 81, 98, 70, 251, 167, 244, 56, 191, 27, 28, 204, 60, 4, 1, 46, 101, 116, 27, 48, 224, 76, 215, 183, + 19, 142, 100, 27, 139, 114, 84, 122, 60, 83, 95, 74, 27, 24, 219, 227, 32, 9, 16, 89, 232, 27, 154, 81, 85, 190, + 157, 0, 220, 49, 69, 100, 229, 206, 151, 159, 27, 160, 77, 80, 224, 145, 78, 78, 211, 75, 95, 185, 177, 122, 218, + 22, 97, 128, 114, 231, 143, 255, 67, 78, 225, 249, 191, 67, 130, 153, 89, 76, 19, 98, 191, 171, 140, 179, 113, 50, + 30, 228, 58, 173, 68, 157, 242, 63, 116, 27, 171, 251, 75, 14, 230, 22, 220, 6, 65, 162, 27, 118, 251, 130, 69, + 101, 250, 101, 233, 65, 242, 74, 117, 157, 216, 37, 70, 92, 61, 233, 247, 123, 76, 253, 115, 9, 145, 183, 23, 223, + 215, 183, 199, 78, 243, 68, 117, 33, 204, 93, 255, 76, 97, 52, 250, 37, 124, 121, 253, 198, 175, 70, 80, 53, 75, + 4, 224, 199, 144, 117, 219, 34, 199, 52, 21, 0, 72, 113, 158, 82, 3, 150, 37, 19, 143, 191, 7, 73, 67, 197, 2, + 176, 7, 169, 249, 145, 0, 17, 5, 18, 20, 27, 65, 190, 198, 101, 62, 151, 53, 188, 27, 117, 88, 5, 178, 186, 96, + 171, 190, 27, 153, 44, 173, 131, 92, 150, 24, 165, 6, 255, 65, 202, 27, 135, 162, 172, 182, 186, 240, 34, 160, 72, + 216, 120, 243, 24, 98, 42, 92, 7, 72, 1, 254, 251, 166, 2, 17, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1980, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e09e9bafdf6ca89e98f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10948541209389626570" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4a2e09e9bafdf6ca89e98fd8669f1b97f10838da64f4ca80ffff", + "cborBytes": [ + 191, 74, 46, 9, 233, 186, 253, 246, 202, 137, 233, 143, 216, 102, 159, 27, 151, 241, 8, 56, 218, 100, 244, 202, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1981, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e248f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1736e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9224726294407735367" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6666980861418090332" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11019659338936038052" + } + } + ] + } + } + ] + }, + "cborHex": "bf437e248f43e1736e41a39f1b8004cfb0a860e8471b5c85dfc531272f5c1b98edb1c8bb1932a4ffff", + "cborBytes": [ + 191, 67, 126, 36, 143, 67, 225, 115, 110, 65, 163, 159, 27, 128, 4, 207, 176, 168, 96, 232, 71, 27, 92, 133, 223, + 197, 49, 39, 47, 92, 27, 152, 237, 177, 200, 187, 25, 50, 164, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1982, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bd8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5894213220279057631" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73eaa17b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f990" + } + } + ] + }, + "cborHex": "bf426bd8d8669f1b51cc73b1e924fcdf80ff4473eaa17b42f990ff", + "cborBytes": [ + 191, 66, 107, 216, 216, 102, 159, 27, 81, 204, 115, 177, 233, 36, 252, 223, 128, 255, 68, 115, 234, 161, 123, 66, + 249, 144, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1983, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bc6ed06fee401" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15639972001436605813" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10284243605652399629" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15676757803929305622" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14714545928841513034" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + }, + "cborHex": "bf471bc6ed06fee401d8669f1bd90c57abd2af1d759f1b8eb8f912327e660d1bd98f0829e50a02161bcc34918fafc4c84affff41d912ff", + "cborBytes": [ + 191, 71, 27, 198, 237, 6, 254, 228, 1, 216, 102, 159, 27, 217, 12, 87, 171, 210, 175, 29, 117, 159, 27, 142, 184, + 249, 18, 50, 126, 102, 13, 27, 217, 143, 8, 41, 229, 10, 2, 22, 27, 204, 52, 145, 143, 175, 196, 200, 74, 255, + 255, 65, 217, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1984, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11775074373488204967" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6454347268285895122" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11891572738018386603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8023088330306246261" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15397061458202951863" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17428848419958543457" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b056" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10363994679312514297" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8918511064183042506" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "549185780192468662" + } + } + ] + } + } + ] + }, + "cborHex": "bf1ba36977c17391dca71b599272a4d73191d21ba5075a66a64e22ab1b6f57bc54097c56751bd5ad59d1b10b80b71bf1dfb54bc3c1d46142b0569f1b8fd44e400275fcf91b7bc4ea8f820571ca1b079f198eb0115eb6ffff", + "cborBytes": [ + 191, 27, 163, 105, 119, 193, 115, 145, 220, 167, 27, 89, 146, 114, 164, 215, 49, 145, 210, 27, 165, 7, 90, 102, + 166, 78, 34, 171, 27, 111, 87, 188, 84, 9, 124, 86, 117, 27, 213, 173, 89, 209, 177, 11, 128, 183, 27, 241, 223, + 181, 75, 195, 193, 212, 97, 66, 176, 86, 159, 27, 143, 212, 78, 64, 2, 117, 252, 249, 27, 123, 196, 234, 143, 130, + 5, 113, 202, 27, 7, 159, 25, 142, 176, 17, 94, 182, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1985, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00fd05" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5612574053790046375" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b92f79268633d6" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9482fe2a505bb55971fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf4b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55a26a8429b4f00c220a040a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e60602cc0bbba5a69601" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2883988078130611062" + } + } + } + ] + }, + "cborHex": "bf4300fd05bf1b4de3de5d7fbad8a747b92f79268633d6ff4a9482fe2a505bb55971fc414c42cf4b4c55a26a8429b4f00c220a040a4ae60602cc0bbba5a696011b2805fbe0856fc376ff", + "cborBytes": [ + 191, 67, 0, 253, 5, 191, 27, 77, 227, 222, 93, 127, 186, 216, 167, 71, 185, 47, 121, 38, 134, 51, 214, 255, 74, + 148, 130, 254, 42, 80, 91, 181, 89, 113, 252, 65, 76, 66, 207, 75, 76, 85, 162, 106, 132, 41, 180, 240, 12, 34, + 10, 4, 10, 74, 230, 6, 2, 204, 11, 187, 165, 166, 150, 1, 27, 40, 5, 251, 224, 133, 111, 195, 118, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1986, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a306a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef03ab0336" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1db1a5726089cf096" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6596826806941713885" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5052179949451223430" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2199659471235422593" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "060ec3c1dde4052c57ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14930013372972549156" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34e3808c53660b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82bf344d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de38f916f83e09" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8291020460875849261" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf43a306a80845ef03ab0336bf49d1db1a5726089cf0961b5b8ca307888905ddff41ffbf1b461cf2e57c6421861b1e86c2a281cf99814a060ec3c1dde4052c57ec1bcf32100f63dc44244734e3808c53660b4482bf344d47de38f916f83e091b730f9f2e74001e2dffff", + "cborBytes": [ + 191, 67, 163, 6, 168, 8, 69, 239, 3, 171, 3, 54, 191, 73, 209, 219, 26, 87, 38, 8, 156, 240, 150, 27, 91, 140, + 163, 7, 136, 137, 5, 221, 255, 65, 255, 191, 27, 70, 28, 242, 229, 124, 100, 33, 134, 27, 30, 134, 194, 162, 129, + 207, 153, 129, 74, 6, 14, 195, 193, 221, 228, 5, 44, 87, 236, 27, 207, 50, 16, 15, 99, 220, 68, 36, 71, 52, 227, + 128, 140, 83, 102, 11, 68, 130, 191, 52, 77, 71, 222, 56, 249, 22, 248, 62, 9, 27, 115, 15, 159, 46, 116, 0, 30, + 45, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1987, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd5d31795dc5be29aba8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3213756807829341955" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15470227807245768265" + } + } + ] + } + } + ] + }, + "cborHex": "bf4acd5d31795dc5be29aba8d8669f1bfffffffffffffff59f1b2c998eca1d2947031bd6b14a39d5411649ffffff", + "cborBytes": [ + 191, 74, 205, 93, 49, 121, 93, 197, 190, 41, 171, 168, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, + 159, 27, 44, 153, 142, 202, 29, 41, 71, 3, 27, 214, 177, 74, 57, 213, 65, 22, 73, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1988, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9586551755726661772" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4384331874995048429" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bc3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8041540769543156650" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f36425d4a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11821003100807314690" + } + } + } + ] + }, + "cborHex": "bf1b850a4607b4fc288c1b3cd8469c72808fed425bc31b6f994ab95770f3aa45f36425d4a71ba40ca3b098693d02ff", + "cborBytes": [ + 191, 27, 133, 10, 70, 7, 180, 252, 40, 140, 27, 60, 216, 70, 156, 114, 128, 143, 237, 66, 91, 195, 27, 111, 153, + 74, 185, 87, 112, 243, 170, 69, 243, 100, 37, 212, 167, 27, 164, 12, 163, 176, 152, 105, 61, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1989, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10338e72547ae1f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc3c060a03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bd2ff1da069ca5e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17275435247732624861" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b42c23" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16529957617206696747" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8067131242918903306" + } + } + ] + } + } + ] + }, + "cborHex": "bf4810338e72547ae1f245cc3c060a03486bd2ff1da069ca5e1befbeacd4215d8ddd43b42c23d8669f1be56634df95de1b2b9f1b6ff4351fbaa2fe0affffff", + "cborBytes": [ + 191, 72, 16, 51, 142, 114, 84, 122, 225, 242, 69, 204, 60, 6, 10, 3, 72, 107, 210, 255, 29, 160, 105, 202, 94, 27, + 239, 190, 172, 212, 33, 93, 141, 221, 67, 180, 44, 35, 216, 102, 159, 27, 229, 102, 52, 223, 149, 222, 27, 43, + 159, 27, 111, 244, 53, 31, 186, 162, 254, 10, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1990, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1467230063090767603" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b87b26fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2080569442250783349" + } + } + } + ] + }, + "cborHex": "bf0d1b145ca5f7fa4c96f344b87b26fe1b1cdfaae267e3fa75ff", + "cborBytes": [ + 191, 13, 27, 20, 92, 165, 247, 250, 76, 150, 243, 68, 184, 123, 38, 254, 27, 28, 223, 170, 226, 103, 227, 250, + 117, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1991, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f62d692d5dcf0e8d3cdc2a6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "792ac80f3d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a85448f73e52ecd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4293310229979820150" + } + } + } + ] + }, + "cborHex": "bf4c6f62d692d5dcf0e8d3cdc2a645792ac80f3d488a85448f73e52ecd1b3b94e6e8407f7076ff", + "cborBytes": [ + 191, 76, 111, 98, 214, 146, 213, 220, 240, 232, 211, 205, 194, 166, 69, 121, 42, 200, 15, 61, 72, 138, 133, 68, + 143, 115, 229, 46, 205, 27, 59, 148, 230, 232, 64, 127, 112, 118, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1992, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e0d7a3b5b74" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6835116365725528083" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "474f3815369f1191d37e" + }, + { + "_tag": "ByteArray", + "bytearray": "f4195186161c010f5180b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9835251843868599383" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4276505370129876719" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5bc993018486" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1193250606fed8f221" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18237406637830170917" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bf179bb6f04" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2072274956771470468" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c7677" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2632248465610946723" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5663744438589030559" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2843015369337661050" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d2f94c9c934" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14521896719694992249" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17399064419198371014" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b635fc8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17428400980549573403" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7713262027246491763" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8b0200e2" + }, + { + "_tag": "ByteArray", + "bytearray": "ef" + }, + { + "_tag": "ByteArray", + "bytearray": "9e8eddfda307" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6894265591683446100" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7e55fb227443e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17153561074647357712" + } + } + } + ] + }, + "cborHex": "bf460e0d7a3b5b74d8669f1b5edb361ee18770139f4a474f3815369f1191d37e4bf4195186161c010f5180b61b887dd5714e4b24571b3b5932f9eaa446ef465bc993018486ffff491193250606fed8f2211bfd1848b61037e925461bf179bb6f04bf1b1cc23318034d2c84434c76771b2487a008814eb8a31b4e99a98f20b1809f1b27746b6a5c58e67a465d2f94c9c9341bc988242052549379414d1bf175e4e7b27504c6440b635fc81bf1de1e5a28ba1b1b1b6b0b02f279895873ff41559f448b0200e241ef469e8eddfda3071b5fad5a073b7d7554ff47c7e55fb227443e1bee0db0e9f752d910ff", + "cborBytes": [ + 191, 70, 14, 13, 122, 59, 91, 116, 216, 102, 159, 27, 94, 219, 54, 30, 225, 135, 112, 19, 159, 74, 71, 79, 56, 21, + 54, 159, 17, 145, 211, 126, 75, 244, 25, 81, 134, 22, 28, 1, 15, 81, 128, 182, 27, 136, 125, 213, 113, 78, 75, 36, + 87, 27, 59, 89, 50, 249, 234, 164, 70, 239, 70, 91, 201, 147, 1, 132, 134, 255, 255, 73, 17, 147, 37, 6, 6, 254, + 216, 242, 33, 27, 253, 24, 72, 182, 16, 55, 233, 37, 70, 27, 241, 121, 187, 111, 4, 191, 27, 28, 194, 51, 24, 3, + 77, 44, 132, 67, 76, 118, 119, 27, 36, 135, 160, 8, 129, 78, 184, 163, 27, 78, 153, 169, 143, 32, 177, 128, 159, + 27, 39, 116, 107, 106, 92, 88, 230, 122, 70, 93, 47, 148, 201, 201, 52, 27, 201, 136, 36, 32, 82, 84, 147, 121, + 65, 77, 27, 241, 117, 228, 231, 178, 117, 4, 198, 68, 11, 99, 95, 200, 27, 241, 222, 30, 90, 40, 186, 27, 27, 27, + 107, 11, 2, 242, 121, 137, 88, 115, 255, 65, 85, 159, 68, 139, 2, 0, 226, 65, 239, 70, 158, 142, 221, 253, 163, 7, + 27, 95, 173, 90, 7, 59, 125, 117, 84, 255, 71, 199, 229, 95, 178, 39, 68, 62, 27, 238, 13, 176, 233, 247, 82, 217, + 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1993, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5fd315e024ca0a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + }, + "cborHex": "bf475fd315e024ca0a12ff", + "cborBytes": [191, 71, 95, 211, 21, 224, 36, 202, 10, 18, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1994, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "96c2fbfe0a4340fd0301074f" + }, + { + "_tag": "ByteArray", + "bytearray": "2102" + } + ] + } + } + ] + }, + "cborHex": "bf049f4c96c2fbfe0a4340fd0301074f422102ffff", + "cborBytes": [191, 4, 159, 76, 150, 194, 251, 254, 10, 67, 64, 253, 3, 1, 7, 79, 66, 33, 2, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1995, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3099374613313249873" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9772113268963973656" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12181141486433980279" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15590399261150730074" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b2b0330ca246662511b879d853e457a9a181ba90c1ba4b9abcf77d8669f1bd85c3986cb66d75a80ffff", + "cborBytes": [ + 191, 27, 43, 3, 48, 202, 36, 102, 98, 81, 27, 135, 157, 133, 62, 69, 122, 154, 24, 27, 169, 12, 27, 164, 185, 171, + 207, 119, 216, 102, 159, 27, 216, 92, 57, 134, 203, 102, 215, 90, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1996, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04ca267486954d82" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1715263160853901657" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2232168076684168139" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "13c9f428e1758017f5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9965941852133751708" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9574589474124843508" + } + }, + { + "_tag": "ByteArray", + "bytearray": "69" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "232e62" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "feba17ab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e9e5a7ccd4d423d2399" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d95f3365f67" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8adaf573e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9633879832399872166" + } + } + } + ] + }, + "cborHex": "bf4804ca267486954d829f1b17cdd6c1c702b1591b1efa410a09ba0bcbff4913c9f428e1758017f59f1b8a4e23500ca17b9c1b84dfc665fb67c9f44169ff43232e6244feba17ab4a6e9e5a7ccd4d423d2399465d95f3365f6745a8adaf573e1b85b26aaa42fe80a6ff", + "cborBytes": [ + 191, 72, 4, 202, 38, 116, 134, 149, 77, 130, 159, 27, 23, 205, 214, 193, 199, 2, 177, 89, 27, 30, 250, 65, 10, 9, + 186, 11, 203, 255, 73, 19, 201, 244, 40, 225, 117, 128, 23, 245, 159, 27, 138, 78, 35, 80, 12, 161, 123, 156, 27, + 132, 223, 198, 101, 251, 103, 201, 244, 65, 105, 255, 67, 35, 46, 98, 68, 254, 186, 23, 171, 74, 110, 158, 90, + 124, 205, 77, 66, 61, 35, 153, 70, 93, 149, 243, 54, 95, 103, 69, 168, 173, 175, 87, 62, 27, 133, 178, 106, 170, + 66, 254, 128, 166, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1997, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0101" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "539938975520765855" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + } + } + ] + }, + "cborHex": "bf420101d8669f1b077e3fa3344db79f9f07ffffff", + "cborBytes": [191, 66, 1, 1, 216, 102, 159, 27, 7, 126, 63, 163, 52, 77, 183, 159, 159, 7, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1998, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3996679082492247018" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17030433538642328302" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "15f9e4a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9914497196415792673" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddd081a7533a7db77d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11385194138937163600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10784826989062831806" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06ab858db7" + }, + { + "_tag": "ByteArray", + "bytearray": "0add90f80f7e6660" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5517843209066829161" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ebef3ba4" + } + ] + } + } + ] + }, + "cborHex": "bf1b37770e73412f3bead8669f1bec58411281acbaee80ff4415f9e4a61b89975eabbef8362149ddd081a7533a7db77dd8669f1b9e0055bf7e357f509f1b95ab67018f22bebe4506ab858db7480add90f80f7e66601b4c935129f2bad56944ebef3ba4ffffff", + "cborBytes": [ + 191, 27, 55, 119, 14, 115, 65, 47, 59, 234, 216, 102, 159, 27, 236, 88, 65, 18, 129, 172, 186, 238, 128, 255, 68, + 21, 249, 228, 166, 27, 137, 151, 94, 171, 190, 248, 54, 33, 73, 221, 208, 129, 167, 83, 58, 125, 183, 125, 216, + 102, 159, 27, 158, 0, 85, 191, 126, 53, 127, 80, 159, 27, 149, 171, 103, 1, 143, 34, 190, 190, 69, 6, 171, 133, + 141, 183, 72, 10, 221, 144, 248, 15, 126, 102, 96, 27, 76, 147, 81, 41, 242, 186, 213, 105, 68, 235, 239, 59, 164, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 1999, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7211674027377637328" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3181533499046113150" + } + } + } + ] + }, + "cborHex": "bf1b641503519dc137d01b2c2713dc63a62f7eff", + "cborBytes": [191, 27, 100, 21, 3, 81, 157, 193, 55, 208, 27, 44, 39, 19, 220, 99, 166, 47, 126, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2000, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "65" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9301cf58ff622b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7748cbd3abd26d5c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d9fd378" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11812338743259894479" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ae096f2969cbbd90438" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1673c81884" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a46175593f323078" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6177156357007189576" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee26" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2d9c52cb1f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e5703c838b" + } + } + ] + }, + "cborHex": "bf4165479301cf58ff622b487748cbd3abd26d5cbf446d9fd3781ba3eddb80a69712cf4a7ae096f2969cbbd90438451673c81884ff48a46175593f323078bf1b55b9aafa8d75a64842ee26ff46d2d9c52cb1f245e5703c838bff", + "cborBytes": [ + 191, 65, 101, 71, 147, 1, 207, 88, 255, 98, 43, 72, 119, 72, 203, 211, 171, 210, 109, 92, 191, 68, 109, 159, 211, + 120, 27, 163, 237, 219, 128, 166, 151, 18, 207, 74, 122, 224, 150, 242, 150, 156, 187, 217, 4, 56, 69, 22, 115, + 200, 24, 132, 255, 72, 164, 97, 117, 89, 63, 50, 48, 120, 191, 27, 85, 185, 170, 250, 141, 117, 166, 72, 66, 238, + 38, 255, 70, 210, 217, 197, 44, 177, 242, 69, 229, 112, 60, 131, 139, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2001, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "030373c505" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6b061462f8bd3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de694a07f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f86df9a106f805fbdfb7fb04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5043522692532267687" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b98d6236f75941da01fb62" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18220173923352803187" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13033575165633533040" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf45030373c50547c6b061462f8bd345de694a07f61bfffffffffffffffa4cf86df9a106f805fbdfb7fb041341fbbf1b45fe312ac901eaa74bb98d6236f75941da01fb621bfcdb0fa60f4777731bb4e08f8eecf09470ffff", + "cborBytes": [ + 191, 69, 3, 3, 115, 197, 5, 71, 198, 176, 97, 70, 47, 139, 211, 69, 222, 105, 74, 7, 246, 27, 255, 255, 255, 255, + 255, 255, 255, 250, 76, 248, 109, 249, 161, 6, 248, 5, 251, 223, 183, 251, 4, 19, 65, 251, 191, 27, 69, 254, 49, + 42, 201, 1, 234, 167, 75, 185, 141, 98, 54, 247, 89, 65, 218, 1, 251, 98, 27, 252, 219, 15, 166, 15, 71, 119, 115, + 27, 180, 224, 143, 142, 236, 240, 148, 112, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2002, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "789266554126555733" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14816505087382252834" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2152822953540053903" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2122550455343547445" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3765252515478316482" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3578057093924536116" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15324640318119086441" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7614220454555058016" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6362810727399844710" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0d" + } + ] + } + } + ] + }, + "cborHex": "bf05bf1b0af409bfcfcf5a551bcd9ecce0322fed221b1de05d11f20feb8f1b1d74d064b49884351b3440dd36b2bb25c21b31a7cff835703f341bd4ac0f2d081e09691b69ab25295b447f60ff1b584d3ea51bb66b669f410dffff", + "cborBytes": [ + 191, 5, 191, 27, 10, 244, 9, 191, 207, 207, 90, 85, 27, 205, 158, 204, 224, 50, 47, 237, 34, 27, 29, 224, 93, 17, + 242, 15, 235, 143, 27, 29, 116, 208, 100, 180, 152, 132, 53, 27, 52, 64, 221, 54, 178, 187, 37, 194, 27, 49, 167, + 207, 248, 53, 112, 63, 52, 27, 212, 172, 15, 45, 8, 30, 9, 105, 27, 105, 171, 37, 41, 91, 68, 127, 96, 255, 27, + 88, 77, 62, 165, 27, 182, 107, 102, 159, 65, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2003, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1256151101503757055" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12666148781008291635" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6343844766638150436" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1b43e4" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17237554497446512703" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13147963544379554901" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abd4752919d3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11d346cd2da69a82cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e886248178d80b78" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "312c2a309d97e1757c0e0bf3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12188563811258171740" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "346ddc94b4ab91f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90a0fcc1d514" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4c0b3fe62bb50fa43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a218" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b116ebec57d58daffd8669f1bafc733354c3f07339f1b5809dd3441b01324431b43e4ffff1bef38187ca8bc883f1bb676f32ec6877c5546abd4752919d3bf4911d346cd2da69a82cf48e886248178d80b784c312c2a309d97e1757c0e0bf31ba9267a356439815c48346ddc94b4ab91f24690a0fcc1d51449c4c0b3fe62bb50fa4342a218ffff", + "cborBytes": [ + 191, 27, 17, 110, 190, 197, 125, 88, 218, 255, 216, 102, 159, 27, 175, 199, 51, 53, 76, 63, 7, 51, 159, 27, 88, 9, + 221, 52, 65, 176, 19, 36, 67, 27, 67, 228, 255, 255, 27, 239, 56, 24, 124, 168, 188, 136, 63, 27, 182, 118, 243, + 46, 198, 135, 124, 85, 70, 171, 212, 117, 41, 25, 211, 191, 73, 17, 211, 70, 205, 45, 166, 154, 130, 207, 72, 232, + 134, 36, 129, 120, 216, 11, 120, 76, 49, 44, 42, 48, 157, 151, 225, 117, 124, 14, 11, 243, 27, 169, 38, 122, 53, + 100, 57, 129, 92, 72, 52, 109, 220, 148, 180, 171, 145, 242, 70, 144, 160, 252, 193, 213, 20, 73, 196, 192, 179, + 254, 98, 187, 80, 250, 67, 66, 162, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2004, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "29de271a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a555ef06203e784d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61cf09b3d5a38cf266e7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "240289418130414882" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c8718edbc849" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10349063858359741990" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4037a596" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68f9c854fe8e6af52eb367" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6761780363568782024" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "229d4370d33c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11743365067700618000" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13184078696813704773" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11875955229350931368" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f555a794c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17336631979809075304" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae0834" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14571073116441075518" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7e0f9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a21bedb375e2b6ebb1287" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15014291079980680453" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "929890" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "562785276397185218" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae4ccb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17158496846227773607" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0cc3f0b0fefd19242af217f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17545619588314808776" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc3ae73ebe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14660285834811590226" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7bf3f301d93feba10d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8540111558355649786" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed279d6190c3f10f06ad" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2fb70125ced29842df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "453950480985365832" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d7e235609ebd964" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3446887435295936759" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7279e77443bcaf6210144d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14358924933018245002" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7da7f6b2771e1355b530958" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12975785748093174852" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf0490" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0a52c" + } + } + ] + } + } + ] + }, + "cborHex": "bf4429de271a9f48a555ef06203e784dff4a61cf09b3d5a38cf266e7d8669f1b0355adf3e2f2dd229f46c8718edbc8491b8f9f42bf5b5dae26444037a596ffff4b68f9c854fe8e6af52eb367bf1b5dd6ab6a4bba9ac846229d4370d33c1ba2f8d04f6006c3101bb6f741b8f66036451ba4cfde5c0de7aba8458f555a794c1bf09816eea6327068416eff43ae08341bca36d9cc6db6df3e43d7e0f9bf4b6a21bedb375e2b6ebb12871bd05d7a3028908505439298901b07cf6a3a247968c243ae4ccb1bee1f39f8d71118a74cb0cc3f0b0fefd19242af217f1bf37e900e0da3c1c845bc3ae73ebe1bcb73cc4b11a2c6524ad7bf3f301d93feba10d51b7684923701ff04faff4aed279d6190c3f10f06adbf492fb70125ced29842df1b064cc18eacc01d48483d7e235609ebd9641b2fd5cddc299250f74cb7279e77443bcaf6210144d61bc7452626550d578a4cb7da7f6b2771e1355b5309581bb4134063a4ab844443bf049043f0a52cffff", + "cborBytes": [ + 191, 68, 41, 222, 39, 26, 159, 72, 165, 85, 239, 6, 32, 62, 120, 77, 255, 74, 97, 207, 9, 179, 213, 163, 140, 242, + 102, 231, 216, 102, 159, 27, 3, 85, 173, 243, 226, 242, 221, 34, 159, 70, 200, 113, 142, 219, 200, 73, 27, 143, + 159, 66, 191, 91, 93, 174, 38, 68, 64, 55, 165, 150, 255, 255, 75, 104, 249, 200, 84, 254, 142, 106, 245, 46, 179, + 103, 191, 27, 93, 214, 171, 106, 75, 186, 154, 200, 70, 34, 157, 67, 112, 211, 60, 27, 162, 248, 208, 79, 96, 6, + 195, 16, 27, 182, 247, 65, 184, 246, 96, 54, 69, 27, 164, 207, 222, 92, 13, 231, 171, 168, 69, 143, 85, 90, 121, + 76, 27, 240, 152, 22, 238, 166, 50, 112, 104, 65, 110, 255, 67, 174, 8, 52, 27, 202, 54, 217, 204, 109, 182, 223, + 62, 67, 215, 224, 249, 191, 75, 106, 33, 190, 219, 55, 94, 43, 110, 187, 18, 135, 27, 208, 93, 122, 48, 40, 144, + 133, 5, 67, 146, 152, 144, 27, 7, 207, 106, 58, 36, 121, 104, 194, 67, 174, 76, 203, 27, 238, 31, 57, 248, 215, + 17, 24, 167, 76, 176, 204, 63, 11, 15, 239, 209, 146, 66, 175, 33, 127, 27, 243, 126, 144, 14, 13, 163, 193, 200, + 69, 188, 58, 231, 62, 190, 27, 203, 115, 204, 75, 17, 162, 198, 82, 74, 215, 191, 63, 48, 29, 147, 254, 186, 16, + 213, 27, 118, 132, 146, 55, 1, 255, 4, 250, 255, 74, 237, 39, 157, 97, 144, 195, 241, 15, 6, 173, 191, 73, 47, + 183, 1, 37, 206, 210, 152, 66, 223, 27, 6, 76, 193, 142, 172, 192, 29, 72, 72, 61, 126, 35, 86, 9, 235, 217, 100, + 27, 47, 213, 205, 220, 41, 146, 80, 247, 76, 183, 39, 158, 119, 68, 59, 202, 246, 33, 1, 68, 214, 27, 199, 69, 38, + 38, 85, 13, 87, 138, 76, 183, 218, 127, 107, 39, 113, 225, 53, 91, 83, 9, 88, 27, 180, 19, 64, 99, 164, 171, 132, + 68, 67, 191, 4, 144, 67, 240, 165, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2005, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "371877f1df16819214ffece7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48364cd3544236af2f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18193477412738314089" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebffc4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6381499567637968819" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4a6f5456a1fe6d9ed10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10163923199932435274" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4c371877f1df16819214ffece7bf4948364cd3544236af2f1bfc7c37504f5c2f6943ebffc41b588fa40bcf5eb7b34af4a6f5456a1fe6d9ed101b8d0d824cb0530b4affff", + "cborBytes": [ + 191, 76, 55, 24, 119, 241, 223, 22, 129, 146, 20, 255, 236, 231, 191, 73, 72, 54, 76, 211, 84, 66, 54, 175, 47, + 27, 252, 124, 55, 80, 79, 92, 47, 105, 67, 235, 255, 196, 27, 88, 143, 164, 11, 207, 94, 183, 179, 74, 244, 166, + 245, 69, 106, 31, 230, 217, 237, 16, 27, 141, 13, 130, 76, 176, 83, 11, 74, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2006, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1326988125003171055" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + } + ] + }, + "cborHex": "bf1b126a68ab43f9c4ef06ff", + "cborBytes": [191, 27, 18, 106, 104, 171, 67, 249, 196, 239, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2007, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15266806430103277456" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16227142998219441344" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1bd3de978fa8f48f90d8669f1be1326494f05644c080ffff", + "cborBytes": [ + 191, 27, 211, 222, 151, 143, 168, 244, 143, 144, 216, 102, 159, 27, 225, 50, 100, 148, 240, 86, 68, 192, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2008, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f7e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4155094958910042460" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15868344396991821684" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "678b693627" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9300bf0706026c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d06406" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2de2a492b8e8d9821ec2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18443812511010643071" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d240" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb2ac516c48fa2ddfd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a9a544781f91ead07" + } + } + ] + }, + "cborHex": "bf421f7e1b39a9dcd9b9d9715c4232ba1bdc37af27ac41f77445678b693627479300bf0706026c41ca9f43d0640602104a2de2a492b8e8d9821ec21bfff595c25eb1dc7fff42d24049cb2ac516c48fa2ddfd41fb498a9a544781f91ead07ff", + "cborBytes": [ + 191, 66, 31, 126, 27, 57, 169, 220, 217, 185, 217, 113, 92, 66, 50, 186, 27, 220, 55, 175, 39, 172, 65, 247, 116, + 69, 103, 139, 105, 54, 39, 71, 147, 0, 191, 7, 6, 2, 108, 65, 202, 159, 67, 208, 100, 6, 2, 16, 74, 45, 226, 164, + 146, 184, 232, 217, 130, 30, 194, 27, 255, 245, 149, 194, 94, 177, 220, 127, 255, 66, 210, 64, 73, 203, 42, 197, + 22, 196, 143, 162, 221, 253, 65, 251, 73, 138, 154, 84, 71, 129, 249, 30, 173, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2009, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49d585b47c2017b42414f5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73e5ba1016a2c09a10f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + }, + "cborHex": "bf423e0e4b49d585b47c2017b42414f54a73e5ba1016a2c09a10f502ff", + "cborBytes": [ + 191, 66, 62, 14, 75, 73, 213, 133, 180, 124, 32, 23, 180, 36, 20, 245, 74, 115, 229, 186, 16, 22, 162, 192, 154, + 16, 245, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2010, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3573596927790626532" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb180a87a6cf7969c5f259" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16172260742347935240" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a4e8e280a" + } + } + ] + }, + "cborHex": "bf1b3197f778db6336e44bfb180a87a6cf7969c5f2591be06f6975faa4ce08455a4e8e280aff", + "cborBytes": [ + 191, 27, 49, 151, 247, 120, 219, 99, 54, 228, 75, 251, 24, 10, 135, 166, 207, 121, 105, 197, 242, 89, 27, 224, + 111, 105, 117, 250, 164, 206, 8, 69, 90, 78, 142, 40, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2011, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13179280952442316656" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13235405049181547275" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1698403387585877844" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6743779935163634687" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8048810527946823192" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9095823749543040741" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11139415345135246101" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7474976094628404081" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47061766eae07b697475" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "895a3b722c862cd7b2abaeb4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9835a5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10456033646097130466" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42c63a17" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bb6e636330d6567701bb7ad9ac49ee0ab0b4119bf1b1791f0e1ea6057541b5d96b81ef6d5d3ff1b6fb31e87deb1d6181b7e3adb822b1316e51b9a97273cbc525b151b67bc732768dcdb71ff4a47061766eae07b6974754c895a3b722c862cd7b2abaeb4439835a5bf1b911b4b33e326e3e24442c63a17ffff", + "cborBytes": [ + 191, 27, 182, 230, 54, 51, 13, 101, 103, 112, 27, 183, 173, 154, 196, 158, 224, 171, 11, 65, 25, 191, 27, 23, 145, + 240, 225, 234, 96, 87, 84, 27, 93, 150, 184, 30, 246, 213, 211, 255, 27, 111, 179, 30, 135, 222, 177, 214, 24, 27, + 126, 58, 219, 130, 43, 19, 22, 229, 27, 154, 151, 39, 60, 188, 82, 91, 21, 27, 103, 188, 115, 39, 104, 220, 219, + 113, 255, 74, 71, 6, 23, 102, 234, 224, 123, 105, 116, 117, 76, 137, 90, 59, 114, 44, 134, 44, 215, 178, 171, 174, + 180, 67, 152, 53, 165, 191, 27, 145, 27, 75, 51, 227, 38, 227, 226, 68, 66, 198, 58, 23, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2012, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15209ebfd8f797051519f648" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7793878405301216326" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4264899959957551706" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18ae39" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e84c0a63eb5124bea4f67" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13494649341487443879" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2e153158a39dde1f62" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15963924143359584460" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "862755941343284232" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee73d2f978101be5f04799" + }, + { + "_tag": "ByteArray", + "bytearray": "55" + }, + { + "_tag": "ByteArray", + "bytearray": "5f25fef17123" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82eabe44ebc5777e54c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2919463816439860169" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1cd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12702969198314491894" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10798586459760581721" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6199357991080886943" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c15209ebfd8f797051519f648d8669f1b6c296b1daa9124469f1b3b2ff7eacbd8fa5affff4318ae39a04b1e84c0a63eb5124bea4f67d8669f1bbb46a0140fd16fa79f492e153158a39dde1f62ffff417fd8669f1bdd8b406d8a3ae8cc9f1b0bf91ff5239fcc084bee73d2f978101be5f047994155465f25fef17123ffff4a82eabe44ebc5777e54c21b288404df81810bc942e1cdd8669f1bb04a032ec2438ff69f1b95dc492bfa5f5c591b56088b3f4ddb029fffffff", + "cborBytes": [ + 191, 76, 21, 32, 158, 191, 216, 247, 151, 5, 21, 25, 246, 72, 216, 102, 159, 27, 108, 41, 107, 29, 170, 145, 36, + 70, 159, 27, 59, 47, 247, 234, 203, 216, 250, 90, 255, 255, 67, 24, 174, 57, 160, 75, 30, 132, 192, 166, 62, 181, + 18, 75, 234, 79, 103, 216, 102, 159, 27, 187, 70, 160, 20, 15, 209, 111, 167, 159, 73, 46, 21, 49, 88, 163, 157, + 222, 31, 98, 255, 255, 65, 127, 216, 102, 159, 27, 221, 139, 64, 109, 138, 58, 232, 204, 159, 27, 11, 249, 31, + 245, 35, 159, 204, 8, 75, 238, 115, 210, 249, 120, 16, 27, 229, 240, 71, 153, 65, 85, 70, 95, 37, 254, 241, 113, + 35, 255, 255, 74, 130, 234, 190, 68, 235, 197, 119, 126, 84, 194, 27, 40, 132, 4, 223, 129, 129, 11, 201, 66, 225, + 205, 216, 102, 159, 27, 176, 74, 3, 46, 194, 67, 143, 246, 159, 27, 149, 220, 73, 43, 250, 95, 92, 89, 27, 86, 8, + 139, 63, 77, 219, 2, 159, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2013, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "919456042033213457" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1643127527171483409" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2602477283378948297" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11459797456925287628" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17606460588828423160" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9407971378443616045" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3309162438159277910" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c6ccf5db52446c978" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5368660352401654639" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8355c9cd811" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14889911092078524532" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da5f8a4a4a266fa1cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1804391761057117393" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7493bb8ba330dd9c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4048144946033510161" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5390786886390178987" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3944621560809563885" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15322342201500112218" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ec96818b9ff4cadd" + }, + { + "_tag": "ByteArray", + "bytearray": "e02dfc2fa2" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5653911478684107371" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17333850956814908081" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "461752913551268145" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10091029578984032395" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0cc2906613f9f011d8669f1b16cd8fc7c1b8e7119f1b241ddb4cfbd368c91b9f09611209f4e4cc412b1bf456b69f5d0873f81b828fd41f852c7f2dffff1b2dec81b46e8c9f56bf494c6ccf5db52446c9781b4a815025689fc36f46c8355c9cd8111bcea3973f847d387449da5f8a4a4a266fa1cf1b190a7cbf217374d149f7493bb8ba330dd9c31b382de661639ec711ff1b4acfec1c8f1ee4ab9f1b36be1c68f966a6ed1bd4a3e50d0f64155a48ec96818b9ff4cadd45e02dfc2fa2ff1b4e76ba88be78426b9f1bf08e359b46847ab11b066879d4123999311b8c0a89f0014d888bffff", + "cborBytes": [ + 191, 27, 12, 194, 144, 102, 19, 249, 240, 17, 216, 102, 159, 27, 22, 205, 143, 199, 193, 184, 231, 17, 159, 27, + 36, 29, 219, 76, 251, 211, 104, 201, 27, 159, 9, 97, 18, 9, 244, 228, 204, 65, 43, 27, 244, 86, 182, 159, 93, 8, + 115, 248, 27, 130, 143, 212, 31, 133, 44, 127, 45, 255, 255, 27, 45, 236, 129, 180, 110, 140, 159, 86, 191, 73, + 76, 108, 207, 93, 181, 36, 70, 201, 120, 27, 74, 129, 80, 37, 104, 159, 195, 111, 70, 200, 53, 92, 156, 216, 17, + 27, 206, 163, 151, 63, 132, 125, 56, 116, 73, 218, 95, 138, 74, 74, 38, 111, 161, 207, 27, 25, 10, 124, 191, 33, + 115, 116, 209, 73, 247, 73, 59, 184, 186, 51, 13, 217, 195, 27, 56, 45, 230, 97, 99, 158, 199, 17, 255, 27, 74, + 207, 236, 28, 143, 30, 228, 171, 159, 27, 54, 190, 28, 104, 249, 102, 166, 237, 27, 212, 163, 229, 13, 15, 100, + 21, 90, 72, 236, 150, 129, 139, 159, 244, 202, 221, 69, 224, 45, 252, 47, 162, 255, 27, 78, 118, 186, 136, 190, + 120, 66, 107, 159, 27, 240, 142, 53, 155, 70, 132, 122, 177, 27, 6, 104, 121, 212, 18, 57, 153, 49, 27, 140, 10, + 137, 240, 1, 77, 136, 139, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2014, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "010401" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1398" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b01ead6a730" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd0eff04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36e4dbb97cd3eec2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1449500260841417395" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7967598538076021422" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8438326573317996383" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bc779acea7cf64cf4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "547578913388825494" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f31cbd" + }, + { + "_tag": "ByteArray", + "bytearray": "c92e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2832110523540430154" + } + } + ] + } + } + ] + }, + "cborHex": "bf43010401421398460b01ead6a73044fd0eff044836e4dbb97cd3eec2d8669f1b141da8ceb549eab39f1b6e9298a7fef162ae1b751af54f6d5bbf5fffff414d80497bc779acea7cf64cf41b0799641edb090b9641e59f43f31cbd42c92e1b274dad841845dd4affff", + "cborBytes": [ + 191, 67, 1, 4, 1, 66, 19, 152, 70, 11, 1, 234, 214, 167, 48, 68, 253, 14, 255, 4, 72, 54, 228, 219, 185, 124, 211, + 238, 194, 216, 102, 159, 27, 20, 29, 168, 206, 181, 73, 234, 179, 159, 27, 110, 146, 152, 167, 254, 241, 98, 174, + 27, 117, 26, 245, 79, 109, 91, 191, 95, 255, 255, 65, 77, 128, 73, 123, 199, 121, 172, 234, 124, 246, 76, 244, 27, + 7, 153, 100, 30, 219, 9, 11, 150, 65, 229, 159, 67, 243, 28, 189, 66, 201, 46, 27, 39, 77, 173, 132, 24, 69, 221, + 74, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2015, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b81dd58ff852d927" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01fa" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f213ece61cc3" + }, + { + "_tag": "ByteArray", + "bytearray": "05072b4c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bfaf0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f7331ebf69" + }, + { + "_tag": "ByteArray", + "bytearray": "8335b0559de145fb5a" + }, + { + "_tag": "ByteArray", + "bytearray": "3a604b12" + }, + { + "_tag": "ByteArray", + "bytearray": "b84f" + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffff48b81dd58ff852d9274201fa9f46f213ece61cc34405072b4cff439bfaf09f45f7331ebf69498335b0559de145fb5a443a604b1242b84fffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 255, 72, 184, 29, 213, 143, 248, 82, 217, 39, 66, 1, 250, 159, 70, + 242, 19, 236, 230, 28, 195, 68, 5, 7, 43, 76, 255, 67, 155, 250, 240, 159, 69, 247, 51, 30, 191, 105, 73, 131, 53, + 176, 85, 157, 225, 69, 251, 90, 68, 58, 96, 75, 18, 66, 184, 79, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2016, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0e267b8219f6d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "361cd1f49752c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2998057979051281773" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49a1a0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "538fcfb43850" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51fd1090117b966444da233c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf55ed" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "640dd0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1424431317165879167" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7046cabd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10292897721346901306" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17743615136753560228" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf47b0e267b8219f6dbf47361cd1f49752c91b299b3dd8f9608d6d4349a1a046538fcfb438504c51fd1090117b966444da233c43bf55ed43640dd01b13c498bc6a9d2f7f447046cabd1b8ed7b7f1864f453a419c1bf63dfbf50970aaa4ffff", + "cborBytes": [ + 191, 71, 176, 226, 103, 184, 33, 159, 109, 191, 71, 54, 28, 209, 244, 151, 82, 201, 27, 41, 155, 61, 216, 249, 96, + 141, 109, 67, 73, 161, 160, 70, 83, 143, 207, 180, 56, 80, 76, 81, 253, 16, 144, 17, 123, 150, 100, 68, 218, 35, + 60, 67, 191, 85, 237, 67, 100, 13, 208, 27, 19, 196, 152, 188, 106, 157, 47, 127, 68, 112, 70, 202, 189, 27, 142, + 215, 183, 241, 134, 79, 69, 58, 65, 156, 27, 246, 61, 251, 245, 9, 112, 170, 164, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2017, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13646866900117006998" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15480169582943510704" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8bf1a40ed83056bd87" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13098660413299155349" + } + } + ] + } + } + ] + }, + "cborHex": "bf03d8669f1bbd6369243682aa969f1bd6d49c37de27a0b0498bf1a40ed83056bd871bb5c7ca3f082ae195ffffff", + "cborBytes": [ + 191, 3, 216, 102, 159, 27, 189, 99, 105, 36, 54, 130, 170, 150, 159, 27, 214, 212, 156, 55, 222, 39, 160, 176, 73, + 139, 241, 164, 14, 216, 48, 86, 189, 135, 27, 181, 199, 202, 63, 8, 42, 225, 149, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2018, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17519058091684678634" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18900834e3f9ae816b30" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa7a7ac4" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bf3203283b24c4beabf4a18900834e3f9ae816b3044aa7a7ac4ff1bffffffffffffffed9f010fffff", + "cborBytes": [ + 191, 27, 243, 32, 50, 131, 178, 76, 75, 234, 191, 74, 24, 144, 8, 52, 227, 249, 174, 129, 107, 48, 68, 170, 122, + 122, 196, 255, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 1, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2019, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c5e74d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b3ee0aed4fbff42" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4803d7ad375cbdc29d1c6860" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8592999759409942182" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "90512a1dd2d5ed6b43dbe107" + }, + { + "_tag": "ByteArray", + "bytearray": "33c59a52bc9b694898" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16312663540678189210" + } + } + ] + } + } + ] + }, + "cborHex": "bf441c5e74d4485b3ee0aed4fbff424c4803d7ad375cbdc29d1c68601b774077c0e6a58ea641b19f4c90512a1dd2d5ed6b43dbe1074933c59a52bc9b6948981be262390fe296e09affff", + "cborBytes": [ + 191, 68, 28, 94, 116, 212, 72, 91, 62, 224, 174, 212, 251, 255, 66, 76, 72, 3, 215, 173, 55, 92, 189, 194, 157, + 28, 104, 96, 27, 119, 64, 119, 192, 230, 165, 142, 166, 65, 177, 159, 76, 144, 81, 42, 29, 210, 213, 237, 107, 67, + 219, 225, 7, 73, 51, 197, 154, 82, 188, 155, 105, 72, 152, 27, 226, 98, 57, 15, 226, 150, 224, 154, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2020, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0604" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "754661983757456414" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ea71bd296771b344a4ca0f53" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1845442407037327713" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15300758951283517234" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6636634058153691812" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17609042016589152705" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf049f420604ff1b0a7919136b5ad41e9f4cea71bd296771b344a4ca0f53ff1b199c541774e6d9611bd45737330521e7321b5c1a0f8374828aa49f110eff1bf45fe26ad9b981c180ff", + "cborBytes": [ + 191, 4, 159, 66, 6, 4, 255, 27, 10, 121, 25, 19, 107, 90, 212, 30, 159, 76, 234, 113, 189, 41, 103, 113, 179, 68, + 164, 202, 15, 83, 255, 27, 25, 156, 84, 23, 116, 230, 217, 97, 27, 212, 87, 55, 51, 5, 33, 231, 50, 27, 92, 26, + 15, 131, 116, 130, 138, 164, 159, 17, 14, 255, 27, 244, 95, 226, 106, 217, 185, 129, 193, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2021, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1538363668347277643" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97021de37332917b988cb200" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3371210885286592191" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8005530413704233915" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "703ff2dc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9546435999150600493" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "811360d9e22c8faa9cca71e9" + }, + { + "_tag": "ByteArray", + "bytearray": "9b0b06" + }, + { + "_tag": "ByteArray", + "bytearray": "7d5894e97abfea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8669688364287850399" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "392671810027048980" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10131264601981332222" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16612906544683762087" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16796052842333947303" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5592108282332259163" + } + } + } + ] + }, + "cborHex": "bf1b15595d9b1334d14b4c97021de37332917b988cb2001b2ec8f270506ffebf801b6f195b7f036d43bb44703ff2dc1b847bc0f6485f712d9f4c811360d9e22c8faa9cca71e9439b0b06477d5894e97abfea1b7850eba222b6f79f1b05730cee45f8d014ff1b8c997b7a4e962afe1be68ce67bc2a341a71be9179112200145a71b4d9b28dac1ef235bff", + "cborBytes": [ + 191, 27, 21, 89, 93, 155, 19, 52, 209, 75, 76, 151, 2, 29, 227, 115, 50, 145, 123, 152, 140, 178, 0, 27, 46, 200, + 242, 112, 80, 111, 254, 191, 128, 27, 111, 25, 91, 127, 3, 109, 67, 187, 68, 112, 63, 242, 220, 27, 132, 123, 192, + 246, 72, 95, 113, 45, 159, 76, 129, 19, 96, 217, 226, 44, 143, 170, 156, 202, 113, 233, 67, 155, 11, 6, 71, 125, + 88, 148, 233, 122, 191, 234, 27, 120, 80, 235, 162, 34, 182, 247, 159, 27, 5, 115, 12, 238, 69, 248, 208, 20, 255, + 27, 140, 153, 123, 122, 78, 150, 42, 254, 27, 230, 140, 230, 123, 194, 163, 65, 167, 27, 233, 23, 145, 18, 32, 1, + 69, 167, 27, 77, 155, 40, 218, 193, 239, 35, 91, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2022, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3655259162493230488" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3548646ee801" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9137920224748798752" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2183793826152439403" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3100642416307981482" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1795029476647302737" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11588855624484264124" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "305a0772" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12695208802207901628" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6efafc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f473f86ce5b26f9b18066" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0becab99002650cdc8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93f86686fa4154fcc5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17931230713261735414" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95a1664c9dc412" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11814420385731178384" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15274785488811603788" + } + } + } + ] + }, + "cborHex": "bf1b32ba16d786669d98463548646ee8011b7ed06a0796028320d8669f1b1e4e64ea2681de6b9f1b2b07b1d9878bccaa1b18e939cc6ceaf651ffff1ba0d3e2ca42ac18bcbf44305a07721bb02e7124bd03a7bc436efafc4250df4b8f473f86ce5b26f9b18066490becab99002650cdc84993f86686fa4154fcc51bf8d88754798a3df64795a1664c9dc4124118ff1ba3f540becea3ef901bd3faf07908e8374cff", + "cborBytes": [ + 191, 27, 50, 186, 22, 215, 134, 102, 157, 152, 70, 53, 72, 100, 110, 232, 1, 27, 126, 208, 106, 7, 150, 2, 131, + 32, 216, 102, 159, 27, 30, 78, 100, 234, 38, 129, 222, 107, 159, 27, 43, 7, 177, 217, 135, 139, 204, 170, 27, 24, + 233, 57, 204, 108, 234, 246, 81, 255, 255, 27, 160, 211, 226, 202, 66, 172, 24, 188, 191, 68, 48, 90, 7, 114, 27, + 176, 46, 113, 36, 189, 3, 167, 188, 67, 110, 250, 252, 66, 80, 223, 75, 143, 71, 63, 134, 206, 91, 38, 249, 177, + 128, 102, 73, 11, 236, 171, 153, 0, 38, 80, 205, 200, 73, 147, 248, 102, 134, 250, 65, 84, 252, 197, 27, 248, 216, + 135, 84, 121, 138, 61, 246, 71, 149, 161, 102, 76, 157, 196, 18, 65, 24, 255, 27, 163, 245, 64, 190, 206, 163, + 239, 144, 27, 211, 250, 240, 121, 8, 232, 55, 76, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2023, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4dd9609d10475" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16958150087141690220" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ffc477" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6650360508821979211" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3239687000495221382" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6478299771878206041" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3fa43c812928" + } + ] + } + } + ] + }, + "cborHex": "bf47c4dd9609d10475d8669f1beb5773a7f7d70b6c9f43ffc4771b5c4ad3a5cc9ec04b1b2cf5ae298ff7ea861b59e78b51ab4b6a59463fa43c812928ffffff", + "cborBytes": [ + 191, 71, 196, 221, 150, 9, 209, 4, 117, 216, 102, 159, 27, 235, 87, 115, 167, 247, 215, 11, 108, 159, 67, 255, + 196, 119, 27, 92, 74, 211, 165, 204, 158, 192, 75, 27, 44, 245, 174, 41, 143, 247, 234, 134, 27, 89, 231, 139, 81, + 171, 75, 106, 89, 70, 63, 164, 60, 129, 41, 40, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2024, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2669334110784225840" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10341430542858630243" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8243789065742646575" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12468202114390757530" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10145446280753397228" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4298933445252272587" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b203c8bf916457" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16432530270994514544" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4295057515386394715" + } + }, + { + "_tag": "ByteArray", + "bytearray": "499cd4cc0c" + }, + { + "_tag": "ByteArray", + "bytearray": "95484a47b252f5f7552d72" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5120551863886086879" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "283a807f7c602bbada57" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18175116590279862987" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "ByteArray", + "bytearray": "060e" + }, + { + "_tag": "ByteArray", + "bytearray": "70e407b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4791070378805444761" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d6d7ad02290707070501ab07" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + } + } + ] + }, + "cborHex": "bf04bf1b250b613b242082301b8f8424499876b4631b7267d27a52d6fd2f1bad07f3c38009109a1b8ccbdda3b41d3dec1b3ba8e131154ed1cbff0547b203c8bf91645707d8669f1be40c1337db7b42709f1b3b9b1c0dd67a585b45499cd4cc0c4b95484a47b252f5f7552d72ffff1b470fdaca54e502df4a283a807f7c602bbada571bfc3afc3e32f0aacb9f1bfffffffffffffff91bffffffffffffffeb42060e4470e407b91bfffffffffffffffaff1bfffffffffffffffbd8669f1b427d4d20169840999f4cd6d7ad02290707070501ab071bffffffffffffffefffffff", + "cborBytes": [ + 191, 4, 191, 27, 37, 11, 97, 59, 36, 32, 130, 48, 27, 143, 132, 36, 73, 152, 118, 180, 99, 27, 114, 103, 210, 122, + 82, 214, 253, 47, 27, 173, 7, 243, 195, 128, 9, 16, 154, 27, 140, 203, 221, 163, 180, 29, 61, 236, 27, 59, 168, + 225, 49, 21, 78, 209, 203, 255, 5, 71, 178, 3, 200, 191, 145, 100, 87, 7, 216, 102, 159, 27, 228, 12, 19, 55, 219, + 123, 66, 112, 159, 27, 59, 155, 28, 13, 214, 122, 88, 91, 69, 73, 156, 212, 204, 12, 75, 149, 72, 74, 71, 178, 82, + 245, 247, 85, 45, 114, 255, 255, 27, 71, 15, 218, 202, 84, 229, 2, 223, 74, 40, 58, 128, 127, 124, 96, 43, 186, + 218, 87, 27, 252, 58, 252, 62, 50, 240, 170, 203, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 27, 255, 255, + 255, 255, 255, 255, 255, 235, 66, 6, 14, 68, 112, 228, 7, 185, 27, 255, 255, 255, 255, 255, 255, 255, 250, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 251, 216, 102, 159, 27, 66, 125, 77, 32, 22, 152, 64, 153, 159, 76, 214, + 215, 173, 2, 41, 7, 7, 7, 5, 1, 171, 7, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2025, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7283863512963087271" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16243719112096443608" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18362793137283607350" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4424390014028451761" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "377c0880a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12673274989305903608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5329a3b590876cf77b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "faf5" + } + } + ] + }, + "cborHex": "bf1b65157b460297fba71be16d487833bb6cd81bfed5bf116fc52b361b3d669746bdf38fb145377c0880a71bafe08474f66bb9f8495329a3b590876cf77b42faf5ff", + "cborBytes": [ + 191, 27, 101, 21, 123, 70, 2, 151, 251, 167, 27, 225, 109, 72, 120, 51, 187, 108, 216, 27, 254, 213, 191, 17, 111, + 197, 43, 54, 27, 61, 102, 151, 70, 189, 243, 143, 177, 69, 55, 124, 8, 128, 167, 27, 175, 224, 132, 116, 246, 107, + 185, 248, 73, 83, 41, 163, 181, 144, 135, 108, 247, 123, 66, 250, 245, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2026, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8f0" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf42d8f0a0ff", + "cborBytes": [191, 66, 216, 240, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2027, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce3f4f3e6c16e9af" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5378719923228467698" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e166dbaa35183f22e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8881445559149948026" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7355119763923609480" + } + } + ] + } + } + ] + }, + "cborHex": "bf48ce3f4f3e6c16e9af9f1b4aa50d45c25961f2499e166dbaa35183f22e1b7b413bae1d1a6c7a1b6612a274c91f2788ffff", + "cborBytes": [ + 191, 72, 206, 63, 79, 62, 108, 22, 233, 175, 159, 27, 74, 165, 13, 69, 194, 89, 97, 242, 73, 158, 22, 109, 186, + 163, 81, 131, 242, 46, 27, 123, 65, 59, 174, 29, 26, 108, 122, 27, 102, 18, 162, 116, 201, 31, 39, 136, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2028, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "295fbf" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2699455161326219419" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13923837701863296318" + } + } + ] + } + } + ] + }, + "cborHex": "bf43295fbfd8669f1b2576642ab9f1b09b9f1bc13b689e41c0cd3effffff", + "cborBytes": [ + 191, 67, 41, 95, 191, 216, 102, 159, 27, 37, 118, 100, 42, 185, 241, 176, 155, 159, 27, 193, 59, 104, 158, 65, + 192, 205, 62, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2029, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1600899714153047762" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3783140632216013123" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3330764882272701832" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6aac102203d99f431d0c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5476308980966051792" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12101342753277086311" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1753e93c007" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13039207913442043159" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "348e3c6d2b2d49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12426201165695703856" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17076378652777521525" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4456782089034610189" + } + } + } + ] + }, + "cborHex": "bf1b163789cedf1de6d29f1b34806a5c6e950943ff1b2e3941036635cd884a6aac102203d99f431d0c1b4bffc200e2c34fd041a21ba7f09b1e52540a6746e1753e93c0071bb4f49283392ce517bf47348e3c6d2b2d491bac72bc1f94d65b30ff1becfb7be900de21751b3dd9abb26a3b360dff", + "cborBytes": [ + 191, 27, 22, 55, 137, 206, 223, 29, 230, 210, 159, 27, 52, 128, 106, 92, 110, 149, 9, 67, 255, 27, 46, 57, 65, 3, + 102, 53, 205, 136, 74, 106, 172, 16, 34, 3, 217, 159, 67, 29, 12, 27, 75, 255, 194, 0, 226, 195, 79, 208, 65, 162, + 27, 167, 240, 155, 30, 82, 84, 10, 103, 70, 225, 117, 62, 147, 192, 7, 27, 180, 244, 146, 131, 57, 44, 229, 23, + 191, 71, 52, 142, 60, 109, 43, 45, 73, 27, 172, 114, 188, 31, 148, 214, 91, 48, 255, 27, 236, 251, 123, 233, 0, + 222, 33, 117, 27, 61, 217, 171, 178, 106, 59, 54, 13, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2030, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d7609d2034a11" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65794d86ee1af024fb3b482f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15514155702169402913" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "125a986fb0" + }, + { + "_tag": "ByteArray", + "bytearray": "6d9b966a7fbf25d004" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1223590374425336401" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7997984208259956878" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3169570932680363888" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da25380ac6aa200a94a4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc589d7d9fdc453796e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0d0194c345ecfca59" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa2b7c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2722733769786147116" + } + } + ] + } + } + ] + }, + "cborHex": "bf475d7609d2034a1141534c65794d86ee1af024fb3b482fd8669f1bd74d5a69e1e87e219f45125a986fb0496d9b966a7fbf25d0041b10fb10f672359a511b6efe8c432484c08effff4278c91b2bfc93f85cd10f7041894ada25380ac6aa200a94a44abc589d7d9fdc453796e249a0d0194c345ecfca5943fa2b7c9f1b25c917f01e10412cffff", + "cborBytes": [ + 191, 71, 93, 118, 9, 210, 3, 74, 17, 65, 83, 76, 101, 121, 77, 134, 238, 26, 240, 36, 251, 59, 72, 47, 216, 102, + 159, 27, 215, 77, 90, 105, 225, 232, 126, 33, 159, 69, 18, 90, 152, 111, 176, 73, 109, 155, 150, 106, 127, 191, + 37, 208, 4, 27, 16, 251, 16, 246, 114, 53, 154, 81, 27, 110, 254, 140, 67, 36, 132, 192, 142, 255, 255, 66, 120, + 201, 27, 43, 252, 147, 248, 92, 209, 15, 112, 65, 137, 74, 218, 37, 56, 10, 198, 170, 32, 10, 148, 164, 74, 188, + 88, 157, 125, 159, 220, 69, 55, 150, 226, 73, 160, 208, 25, 76, 52, 94, 207, 202, 89, 67, 250, 43, 124, 159, 27, + 37, 201, 23, 240, 30, 16, 65, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2031, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18090863702661373412" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3196745599147866127" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2273971264352980094" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6879878039313588677" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7788630751353663930" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15115455289231637840" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "612a9939d669" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "09935843f69978" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e70c20ffddbe7e5c" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfb0fa8b025239de4bf1b2c5d1f2f7280780f1b1f8ec4d121348c7e1b5f7a3ca0274c21c51b6c16c667051e71ba1bd1c4e2801cf37d5046612a9939d6694709935843f6997848e70c20ffddbe7e5cffff", + "cborBytes": [ + 191, 27, 251, 15, 168, 176, 37, 35, 157, 228, 191, 27, 44, 93, 31, 47, 114, 128, 120, 15, 27, 31, 142, 196, 209, + 33, 52, 140, 126, 27, 95, 122, 60, 160, 39, 76, 33, 197, 27, 108, 22, 198, 103, 5, 30, 113, 186, 27, 209, 196, + 226, 128, 28, 243, 125, 80, 70, 97, 42, 153, 57, 214, 105, 71, 9, 147, 88, 67, 246, 153, 120, 72, 231, 12, 32, + 255, 221, 190, 126, 92, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2032, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2622bdf0f3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ee638694ecc01f47e3b08" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff4943" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b6d4a238f903386dc9f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e843ec1992f1cdbef9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "786de7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "733e68d21c5156" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d74a3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9761201120186209865" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e89f58a8e86b77a32e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6d60ff7fe12942977ab" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "360b2f543bc2bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1422d73f67acc343" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e3f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3" + } + } + ] + }, + "cborHex": "bf452622bdf0f3bf4b5ee638694ecc01f47e3b0843ff49434a6b6d4a238f903386dc9f49e843ec1992f1cdbef943786de747733e68d21c5156438d74a31b8776c0b3a5d8164949e89f58a8e86b77a32e4ae6d60ff7fe12942977abff47360b2f543bc2bf481422d73f67acc343426e3f41d3ff", + "cborBytes": [ + 191, 69, 38, 34, 189, 240, 243, 191, 75, 94, 230, 56, 105, 78, 204, 1, 244, 126, 59, 8, 67, 255, 73, 67, 74, 107, + 109, 74, 35, 143, 144, 51, 134, 220, 159, 73, 232, 67, 236, 25, 146, 241, 205, 190, 249, 67, 120, 109, 231, 71, + 115, 62, 104, 210, 28, 81, 86, 67, 141, 116, 163, 27, 135, 118, 192, 179, 165, 216, 22, 73, 73, 232, 159, 88, 168, + 232, 107, 119, 163, 46, 74, 230, 214, 15, 247, 254, 18, 148, 41, 119, 171, 255, 71, 54, 11, 47, 84, 59, 194, 191, + 72, 20, 34, 215, 63, 103, 172, 195, 67, 66, 110, 63, 65, 211, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2033, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2696322616039012522" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d800bd925649645c9c9af" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5080244512788896728" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10032260420326261274" + } + }, + { + "_tag": "ByteArray", + "bytearray": "397ad71eed28015db46370" + }, + { + "_tag": "ByteArray", + "bytearray": "d462b2ab3eb45625ae0b9d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11038073087467351651" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7acbd755ffcb51" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9823959386991606797" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3731112984431649992" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4965792661405511237" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5182469678963045702" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "383217575035587171" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b256b432230db78aa4b5d800bd925649645c9c9af1b4680a777d4e8dbd89f1b8b39bfb2f7c2021a4b397ad71eed28015db463704bd462b2ab3eb45625ae0b9d1b992f1cfda74a6e63477acbd755ffcb51ff1b8855b7034d7fbc0dbf1b33c7937db5e564c81b44ea0a1d9b512e451b47ebd4b711d335461b0551765aa7aeca63ffff", + "cborBytes": [ + 191, 27, 37, 107, 67, 34, 48, 219, 120, 170, 75, 93, 128, 11, 217, 37, 100, 150, 69, 201, 201, 175, 27, 70, 128, + 167, 119, 212, 232, 219, 216, 159, 27, 139, 57, 191, 178, 247, 194, 2, 26, 75, 57, 122, 215, 30, 237, 40, 1, 93, + 180, 99, 112, 75, 212, 98, 178, 171, 62, 180, 86, 37, 174, 11, 157, 27, 153, 47, 28, 253, 167, 74, 110, 99, 71, + 122, 203, 215, 85, 255, 203, 81, 255, 27, 136, 85, 183, 3, 77, 127, 188, 13, 191, 27, 51, 199, 147, 125, 181, 229, + 100, 200, 27, 68, 234, 10, 29, 155, 81, 46, 69, 27, 71, 235, 212, 183, 17, 211, 53, 70, 27, 5, 81, 118, 90, 167, + 174, 202, 99, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2034, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2e103ae2583f5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1449490172452900854" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1731817544475494334" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf47d2e103ae2583f5bf1b141d9fa1d2798ff61b1808a6e1924047beffff", + "cborBytes": [ + 191, 71, 210, 225, 3, 174, 37, 131, 245, 191, 27, 20, 29, 159, 161, 210, 121, 143, 246, 27, 24, 8, 166, 225, 146, + 64, 71, 190, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2035, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a31bbf7" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d40404f9ed27edcda3044af9" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13909707709528370446" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4481472044499698877" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17785574014262976106" + } + } + ] + } + } + ] + }, + "cborHex": "bf448a31bbf79f4cd40404f9ed27edcda3044af9ff41fbd8669f1bc10935770bf36d0e9f1b3e316314a33f84bd1bf6d30d557e901e6affffff", + "cborBytes": [ + 191, 68, 138, 49, 187, 247, 159, 76, 212, 4, 4, 249, 237, 39, 237, 205, 163, 4, 74, 249, 255, 65, 251, 216, 102, + 159, 27, 193, 9, 53, 119, 11, 243, 109, 14, 159, 27, 62, 49, 99, 20, 163, 63, 132, 189, 27, 246, 211, 13, 85, 126, + 144, 30, 106, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2036, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0704fb4901f904fe2ac9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff51642da8eada" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf410e4a0704fb4901f904fe2ac947ff51642da8eadad9050480ff", + "cborBytes": [ + 191, 65, 14, 74, 7, 4, 251, 73, 1, 249, 4, 254, 42, 201, 71, 255, 81, 100, 45, 168, 234, 218, 217, 5, 4, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2037, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e48818e2abf0c4924" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17bedc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d7e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a622e2dd489fc05424a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3220633461160342560" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a0e09ad750e681" + } + ] + } + } + ] + }, + "cborHex": "bf490e48818e2abf0c49244317bedc428d7e4a3a622e2dd489fc05424a41a89f1b2cb1fd11bc32f42047a0e09ad750e681ffff", + "cborBytes": [ + 191, 73, 14, 72, 129, 142, 42, 191, 12, 73, 36, 67, 23, 190, 220, 66, 141, 126, 74, 58, 98, 46, 45, 212, 137, 252, + 5, 66, 74, 65, 168, 159, 27, 44, 177, 253, 17, 188, 50, 244, 32, 71, 160, 224, 154, 215, 80, 230, 129, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2038, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16409524159190084138" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10650380210702781277" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1be3ba574809b72a2abf41e91b93cdc05f9dca0b5dffff", + "cborBytes": [ + 191, 27, 227, 186, 87, 72, 9, 183, 42, 42, 191, 65, 233, 27, 147, 205, 192, 95, 157, 202, 11, 93, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2039, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3da7fafb54e332b13bb6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3cfe88c6d51a5c14cedaebb6" + }, + { + "_tag": "ByteArray", + "bytearray": "653a26b63363267a" + }, + { + "_tag": "ByteArray", + "bytearray": "4f684242a2ecc7c9" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4a41e17d5" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc7e2341" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "790e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea10da7e4c8cd137d62c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4180647767ef63" + } + } + ] + }, + "cborHex": "bf4a3da7fafb54e332b13bb69f4c3cfe88c6d51a5c14cedaebb648653a26b63363267a484f684242a2ecc7c9ff45a4a41e17d5a044cc7e234142790e4aea10da7e4c8cd137d62c474180647767ef63ff", + "cborBytes": [ + 191, 74, 61, 167, 250, 251, 84, 227, 50, 177, 59, 182, 159, 76, 60, 254, 136, 198, 213, 26, 92, 20, 206, 218, 235, + 182, 72, 101, 58, 38, 182, 51, 99, 38, 122, 72, 79, 104, 66, 66, 162, 236, 199, 201, 255, 69, 164, 164, 30, 23, + 213, 160, 68, 204, 126, 35, 65, 66, 121, 14, 74, 234, 16, 218, 126, 76, 140, 209, 55, 214, 44, 71, 65, 128, 100, + 119, 103, 239, 99, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2040, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "be4d9196ffd8042b06014c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4694607424100590334" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce43c34f22df28258b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93852b7d27e9bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7620524765239122119" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0bbf4bbe4d9196ffd8042b06014c1b41269894416d62fe49ce43c34f22df28258b4793852b7d27e9bb41e71b69c18ae6122518c7ffff", + "cborBytes": [ + 191, 11, 191, 75, 190, 77, 145, 150, 255, 216, 4, 43, 6, 1, 76, 27, 65, 38, 152, 148, 65, 109, 98, 254, 73, 206, + 67, 195, 79, 34, 223, 40, 37, 139, 71, 147, 133, 43, 125, 39, 233, 187, 65, 231, 27, 105, 193, 138, 230, 18, 37, + 24, 199, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2041, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06a35e642a9ec107" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1994534391664129318" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bf708463b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b240a73c4c3332bc08494" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed77b14b1e9813900d3b77d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8684578253893273931" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4514691806230803165" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16613448155272099829" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12577917133220058148" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1860835366577454013" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + } + } + ] + }, + "cborHex": "bf03a007bf4806a35e642a9ec1071b1bae02763370b526455bf708463b4b4b240a73c4c3332bc084944ced77b14b1e9813900d3b77d31b7885d1e8b764094bff1b3ea7684724c0f2dd1be68ed3134d5cb7f51bae8dbcfdf3e194249f011b19d303e822553bbdff1bffffffffffffffedd8669f1bffffffffffffffee9f13ffffff", + "cborBytes": [ + 191, 3, 160, 7, 191, 72, 6, 163, 94, 100, 42, 158, 193, 7, 27, 27, 174, 2, 118, 51, 112, 181, 38, 69, 91, 247, 8, + 70, 59, 75, 75, 36, 10, 115, 196, 195, 51, 43, 192, 132, 148, 76, 237, 119, 177, 75, 30, 152, 19, 144, 13, 59, + 119, 211, 27, 120, 133, 209, 232, 183, 100, 9, 75, 255, 27, 62, 167, 104, 71, 36, 192, 242, 221, 27, 230, 142, + 211, 19, 77, 92, 183, 245, 27, 174, 141, 188, 253, 243, 225, 148, 36, 159, 1, 27, 25, 211, 3, 232, 34, 85, 59, + 189, 255, 27, 255, 255, 255, 255, 255, 255, 255, 237, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, + 159, 19, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2042, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1822edec5ccb99ce" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "25f8f81578" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14694882199169774100" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "567218f78a658c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4d5b8645eab94" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "799437" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00a3a72972624ba0ed4e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d0edb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5506395754828686153" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b88dfea9b3564748f1a8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2011192095737555013" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be07c7e10681ea061b33b1ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13004464917072551387" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "208a1380" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13278056332950526348" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66ef9d8fe6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16236492424161123341" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12085046415924365675" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17288258181696486434" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12774692545099613155" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf481822edec5ccb99cebf4525f8f815781bcbeeb580d9b9b21447567218f78a658c47a4d5b8645eab94437994374a00a3a72972624ba0ed4e437d0edb1b4c6aa5c3cf486349ff4ab88dfea9b3564748f1a8bf1b1be9308e2982a8454cbe07c7e10681ea061b33b1ba1bb47923f104239ddb44208a13801bb84521e27924598c4566ef9d8fe61be1539bd5cc71dc0d1ba7b6b5af9b47896b1befec3b3819427c221bb148d32fc17e43e3ffff", + "cborBytes": [ + 191, 72, 24, 34, 237, 236, 92, 203, 153, 206, 191, 69, 37, 248, 248, 21, 120, 27, 203, 238, 181, 128, 217, 185, + 178, 20, 71, 86, 114, 24, 247, 138, 101, 140, 71, 164, 213, 184, 100, 94, 171, 148, 67, 121, 148, 55, 74, 0, 163, + 167, 41, 114, 98, 75, 160, 237, 78, 67, 125, 14, 219, 27, 76, 106, 165, 195, 207, 72, 99, 73, 255, 74, 184, 141, + 254, 169, 179, 86, 71, 72, 241, 168, 191, 27, 27, 233, 48, 142, 41, 130, 168, 69, 76, 190, 7, 199, 225, 6, 129, + 234, 6, 27, 51, 177, 186, 27, 180, 121, 35, 241, 4, 35, 157, 219, 68, 32, 138, 19, 128, 27, 184, 69, 33, 226, 121, + 36, 89, 140, 69, 102, 239, 157, 143, 230, 27, 225, 83, 155, 213, 204, 113, 220, 13, 27, 167, 182, 181, 175, 155, + 71, 137, 107, 27, 239, 236, 59, 56, 25, 66, 124, 34, 27, 177, 72, 211, 47, 193, 126, 67, 227, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2043, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15675878593548219751" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5511742660920190529" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10053050209529565555" + } + } + ] + } + } + ] + }, + "cborHex": "bf07413e1bd98be886c6977567d905039f1b4c7da4bf6583a6411b8b839be6f82d1173ffff", + "cborBytes": [ + 191, 7, 65, 62, 27, 217, 139, 232, 134, 198, 151, 117, 103, 217, 5, 3, 159, 27, 76, 125, 164, 191, 101, 131, 166, + 65, 27, 139, 131, 155, 230, 248, 45, 17, 115, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2044, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5465466729686001185" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4041276982019965946" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fac6ef4e852dc6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5700504412961806207" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4867980135922850733" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85f9abe3946391224e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ade3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0da7f17ab98f8174c4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7b05d2b0112e3031945" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8461663399907886435" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50cfb259d8483796d4bf0c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14645180974890046578" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0966171d804cbd0e2538550d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13700615303131249350" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "754132214992820614" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "654243489372627541" + } + } + } + ] + }, + "cborHex": "bf1b4bd93d088aa66621d8669f1b38158000e84343fa9f47fac6ef4e852dc6ffff1b4f1c428f9f22977fbf1b438e8a245756dbad4985f9abe3946391224e42ade3490da7f17ab98f8174c44ae7b05d2b0112e30319451b756dde07c86f0563ff4b50cfb259d8483796d4bf0cd8669f1bcb3e2280cfa154729f4c0966171d804cbd0e2538550d1bbe225d077b6b3ac61b0a77374104535986ffff41c11b091456fcbcaae255ff", + "cborBytes": [ + 191, 27, 75, 217, 61, 8, 138, 166, 102, 33, 216, 102, 159, 27, 56, 21, 128, 0, 232, 67, 67, 250, 159, 71, 250, + 198, 239, 78, 133, 45, 198, 255, 255, 27, 79, 28, 66, 143, 159, 34, 151, 127, 191, 27, 67, 142, 138, 36, 87, 86, + 219, 173, 73, 133, 249, 171, 227, 148, 99, 145, 34, 78, 66, 173, 227, 73, 13, 167, 241, 122, 185, 143, 129, 116, + 196, 74, 231, 176, 93, 43, 1, 18, 227, 3, 25, 69, 27, 117, 109, 222, 7, 200, 111, 5, 99, 255, 75, 80, 207, 178, + 89, 216, 72, 55, 150, 212, 191, 12, 216, 102, 159, 27, 203, 62, 34, 128, 207, 161, 84, 114, 159, 76, 9, 102, 23, + 29, 128, 76, 189, 14, 37, 56, 85, 13, 27, 190, 34, 93, 7, 123, 107, 58, 198, 27, 10, 119, 55, 65, 4, 83, 89, 134, + 255, 255, 65, 193, 27, 9, 20, 86, 252, 188, 170, 226, 85, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2045, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2242041301792039926" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14556109545672616553" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "76d7cf3e643fa205" + }, + { + "_tag": "ByteArray", + "bytearray": "47e00bfd7ba8509a9b0b" + }, + { + "_tag": "ByteArray", + "bytearray": "a48e8958024403d6" + }, + { + "_tag": "ByteArray", + "bytearray": "c87a967c55ef4a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9416418252305872529" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8727906713323632955" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "29a49a3e02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fbff4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f532d557fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14500125801369610789" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9038927834912039516" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12989196926681175912" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9345999284238181572" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf02d8669f1b1f1d54af6511a3f680ff06d8669f1bca01b0829d7d2a699f4876d7cf3e643fa2054a47e00bfd7ba8509a9b0b48a48e8958024403d647c87a967c55ef4a1b82add68299323691ffff131bffffffffffffffee1b791fc0e9d066f93bbf4529a49a3e02436fbff445f532d557fa1bc93acb97651caa25ff1b7d70b8f9be52a25c1bb442e5c8fc6d57681b81b3a8d4f01264c4a0ff", + "cborBytes": [ + 191, 2, 216, 102, 159, 27, 31, 29, 84, 175, 101, 17, 163, 246, 128, 255, 6, 216, 102, 159, 27, 202, 1, 176, 130, + 157, 125, 42, 105, 159, 72, 118, 215, 207, 62, 100, 63, 162, 5, 74, 71, 224, 11, 253, 123, 168, 80, 154, 155, 11, + 72, 164, 142, 137, 88, 2, 68, 3, 214, 71, 200, 122, 150, 124, 85, 239, 74, 27, 130, 173, 214, 130, 153, 50, 54, + 145, 255, 255, 19, 27, 255, 255, 255, 255, 255, 255, 255, 238, 27, 121, 31, 192, 233, 208, 102, 249, 59, 191, 69, + 41, 164, 154, 62, 2, 67, 111, 191, 244, 69, 245, 50, 213, 87, 250, 27, 201, 58, 203, 151, 101, 28, 170, 37, 255, + 27, 125, 112, 184, 249, 190, 82, 162, 92, 27, 180, 66, 229, 200, 252, 109, 87, 104, 27, 129, 179, 168, 212, 240, + 18, 100, 196, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2046, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2149085225745701106" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6400088422528464104" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4502638963825251003" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3710694441393675866" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2220653050760422205" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10785342155336141228" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d98ad6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16883569357182568411" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6608302262254780262" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12104899727728289053" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b7c4ab08d639dafdb648" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10439844368524295206" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14334331184834845409" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9453837907527569875" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7302212822754392404" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6bbb" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17956306027511195232" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e073" + } + } + ] + }, + "cborHex": "bf1b1dd315a0609cd8f29f1b58d1ae82dbe634e81b3e7c964816a312bb1b337f08ef31495e5aff1b1ed1582f23f6633dd8669f1b95ad3b8c0ddb49ac9f43d98ad61bea4e7ce09b8987db1b5bb567e52e1b3f661ba7fd3e2af8f7a51d4ab7c4ab08d639dafdb648ffff1b90e1c723f840bc26801bc6edc6441ce29ae19f1b8332c77d024d91d31b6556abdf9e93f954426bbbff1bf9319d320802a66042e073ff", + "cborBytes": [ + 191, 27, 29, 211, 21, 160, 96, 156, 216, 242, 159, 27, 88, 209, 174, 130, 219, 230, 52, 232, 27, 62, 124, 150, 72, + 22, 163, 18, 187, 27, 51, 127, 8, 239, 49, 73, 94, 90, 255, 27, 30, 209, 88, 47, 35, 246, 99, 61, 216, 102, 159, + 27, 149, 173, 59, 140, 13, 219, 73, 172, 159, 67, 217, 138, 214, 27, 234, 78, 124, 224, 155, 137, 135, 219, 27, + 91, 181, 103, 229, 46, 27, 63, 102, 27, 167, 253, 62, 42, 248, 247, 165, 29, 74, 183, 196, 171, 8, 214, 57, 218, + 253, 182, 72, 255, 255, 27, 144, 225, 199, 35, 248, 64, 188, 38, 128, 27, 198, 237, 198, 68, 28, 226, 154, 225, + 159, 27, 131, 50, 199, 125, 2, 77, 145, 211, 27, 101, 86, 171, 223, 158, 147, 249, 84, 66, 107, 187, 255, 27, 249, + 49, 157, 50, 8, 2, 166, 96, 66, 224, 115, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2047, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0004" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7851598875230649336" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "041502f9f183fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c81e0dc9c6677ac38806" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "606d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9921932350819511260" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4bbe598550c04a8754" + }, + { + "_tag": "ByteArray", + "bytearray": "d20e0b708ce580" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + { + "_tag": "ByteArray", + "bytearray": "81" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a47a2d87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10b49a027ef9bf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8481845634414156095" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4200041b6cf67b93d4fabbf847041502f9f183fc004228b44ac81e0dc9c6677ac3880642606dd8669f1b89b1c8e7880dabdc9f494bbe598550c04a875447d20e0b708ce5801bfffffffffffffff84181ffff44a47a2d874710b49a027ef9bf41dbbf1b75b591aa6ef4193f08ffff", + "cborBytes": [ + 191, 66, 0, 4, 27, 108, 246, 123, 147, 212, 250, 187, 248, 71, 4, 21, 2, 249, 241, 131, 252, 0, 66, 40, 180, 74, + 200, 30, 13, 201, 198, 103, 122, 195, 136, 6, 66, 96, 109, 216, 102, 159, 27, 137, 177, 200, 231, 136, 13, 171, + 220, 159, 73, 75, 190, 89, 133, 80, 192, 74, 135, 84, 71, 210, 14, 11, 112, 140, 229, 128, 27, 255, 255, 255, 255, + 255, 255, 255, 248, 65, 129, 255, 255, 68, 164, 122, 45, 135, 71, 16, 180, 154, 2, 126, 249, 191, 65, 219, 191, + 27, 117, 181, 145, 170, 110, 244, 25, 63, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2048, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a443251c1cef557" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4743674773985912537" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3faf110e4139c315e1" + }, + { + "_tag": "ByteArray", + "bytearray": "30829a90709c4c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "725c18d8a0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f72d060" + } + } + ] + }, + "cborHex": "bf484a443251c1cef557d8669f1b41d4eb12e96966d99f493faf110e4139c315e14730829a90709c4cffff45725c18d8a0440f72d060ff", + "cborBytes": [ + 191, 72, 74, 68, 50, 81, 193, 206, 245, 87, 216, 102, 159, 27, 65, 212, 235, 18, 233, 105, 102, 217, 159, 73, 63, + 175, 17, 14, 65, 57, 195, 21, 225, 71, 48, 130, 154, 144, 112, 156, 76, 255, 255, 69, 114, 92, 24, 216, 160, 68, + 15, 114, 208, 96, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2049, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6673" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d029b017a3b5c4747280" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3831948954129782047" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05ce06ed" + } + ] + } + } + ] + }, + "cborHex": "bf426673d9050d9f0a08ff4ad029b017a3b5c4747280d8669f1b352dd1457055d51f9f4405ce06edffffff", + "cborBytes": [ + 191, 66, 102, 115, 217, 5, 13, 159, 10, 8, 255, 74, 208, 41, 176, 23, 163, 181, 196, 116, 114, 128, 216, 102, 159, + 27, 53, 45, 209, 69, 112, 85, 213, 31, 159, 68, 5, 206, 6, 237, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2050, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1959600485295270493" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2fcd" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13873276734447266431" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37" + } + } + ] + }, + "cborHex": "bf1b1b31e6424bb52a5d9f422fcdff1bc087c7afab6baa7f4137ff", + "cborBytes": [ + 191, 27, 27, 49, 230, 66, 75, 181, 42, 93, 159, 66, 47, 205, 255, 27, 192, 135, 199, 175, 171, 107, 170, 127, 65, + 55, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2051, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6804941229913203686" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8184fd7691c6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11307910194867496657" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2150842713233731469" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1623456092659590431" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a0a75b09874e3714077a82b2" + }, + { + "_tag": "ByteArray", + "bytearray": "a8a9a4" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18394499631813365275" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15483309219578410344" + } + } + } + ] + }, + "cborHex": "bf1b5e7001fe9662e3e69f468184fd7691c6ff1b9cedc4690d1866d1d8669f1b1dd9540d5208af8d9f1b1687acb6ff6b251f4ca0a75b09874e3714077a82b243a8a9a4ffff1bff4663f4f74a0e1b1bd6dfc3b37c807568ff", + "cborBytes": [ + 191, 27, 94, 112, 1, 254, 150, 98, 227, 230, 159, 70, 129, 132, 253, 118, 145, 198, 255, 27, 156, 237, 196, 105, + 13, 24, 102, 209, 216, 102, 159, 27, 29, 217, 84, 13, 82, 8, 175, 141, 159, 27, 22, 135, 172, 182, 255, 107, 37, + 31, 76, 160, 167, 91, 9, 135, 78, 55, 20, 7, 122, 130, 178, 67, 168, 169, 164, 255, 255, 27, 255, 70, 99, 244, + 247, 74, 14, 27, 27, 214, 223, 195, 179, 124, 128, 117, 104, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2052, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0003" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7748160866161797112" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b7d08bbd265" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55fb78450dfe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8298dedc98838b3636b655" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7dfa0702" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15358153367646073652" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be096fd9b0bd2460" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2be6235e8df4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7678579776576361522" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4200039f1b6b86ff419a2827f8ff464b7d08bbd26541fe4655fb78450dfe4b8298dedc98838b3636b655447dfa0702bf1bd5231f1dec83733448be096fd9b0bd2460462be6235e8df41b6a8fcb9fba551432ffff", + "cborBytes": [ + 191, 66, 0, 3, 159, 27, 107, 134, 255, 65, 154, 40, 39, 248, 255, 70, 75, 125, 8, 187, 210, 101, 65, 254, 70, 85, + 251, 120, 69, 13, 254, 75, 130, 152, 222, 220, 152, 131, 139, 54, 54, 182, 85, 68, 125, 250, 7, 2, 191, 27, 213, + 35, 31, 29, 236, 131, 115, 52, 72, 190, 9, 111, 217, 176, 189, 36, 96, 70, 43, 230, 35, 94, 141, 244, 27, 106, + 143, 203, 159, 186, 85, 20, 50, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2053, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33a863551c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8334566029240337759" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eba1b2a710" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11901476206501789369" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e689b5" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cf37559988236a11b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7b8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7b3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10478470452504627142" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "83e8f64adfe65fef94f1" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea4be3ecf0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8dc078bd0a953d18a3c836ce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3958974ba371d9192d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "996510299112987836" + } + } + } + ] + }, + "cborHex": "bf4533a863551c1b73aa53a529e8855f415b9f45eba1b2a7101ba52a898d974d7eb943e689b5ff497cf37559988236a11b42c7b842d7b3d8669f1b916b015bf6f707c69f4a83e8f64adfe65fef94f1ffff45ea4be3ecf04c8dc078bd0a953d18a3c836ce4af3958974ba371d9192d91b0dd450d659a5dcbcff", + "cborBytes": [ + 191, 69, 51, 168, 99, 85, 28, 27, 115, 170, 83, 165, 41, 232, 133, 95, 65, 91, 159, 69, 235, 161, 178, 167, 16, + 27, 165, 42, 137, 141, 151, 77, 126, 185, 67, 230, 137, 181, 255, 73, 124, 243, 117, 89, 152, 130, 54, 161, 27, + 66, 199, 184, 66, 215, 179, 216, 102, 159, 27, 145, 107, 1, 91, 246, 247, 7, 198, 159, 74, 131, 232, 246, 74, 223, + 230, 95, 239, 148, 241, 255, 255, 69, 234, 75, 227, 236, 240, 76, 141, 192, 120, 189, 10, 149, 61, 24, 163, 200, + 54, 206, 74, 243, 149, 137, 116, 186, 55, 29, 145, 146, 217, 27, 13, 212, 80, 214, 89, 165, 220, 188, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2054, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fc3458f165bb230" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a581" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab9bdb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12265670429852348724" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6844114251100081493" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a2416cce570e" + }, + { + "_tag": "ByteArray", + "bytearray": "005778af21a2df8e10afbe" + }, + { + "_tag": "ByteArray", + "bytearray": "e1562b6850fa5a2b" + } + ] + } + } + ] + }, + "cborHex": "bf480fc3458f165bb23042a58143ab9bdbd8669f1baa386a45075cb1349f1b5efb2da653024d5546a2416cce570e4b005778af21a2df8e10afbe48e1562b6850fa5a2bffffff", + "cborBytes": [ + 191, 72, 15, 195, 69, 143, 22, 91, 178, 48, 66, 165, 129, 67, 171, 155, 219, 216, 102, 159, 27, 170, 56, 106, 69, + 7, 92, 177, 52, 159, 27, 94, 251, 45, 166, 83, 2, 77, 85, 70, 162, 65, 108, 206, 87, 14, 75, 0, 87, 120, 175, 33, + 162, 223, 142, 16, 175, 190, 72, 225, 86, 43, 104, 80, 250, 90, 43, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2055, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cfc0cc7ee897c0b11ee2ee5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4810160312509968498" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "988252014171018605" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e742c3faacfecf" + }, + { + "_tag": "ByteArray", + "bytearray": "f40811253b83e1480f4ddaff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "268327728757467131" + } + }, + { + "_tag": "ByteArray", + "bytearray": "89995ec224042b50" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65e31951f32818c281d57c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f59eb8f193468a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14717395988265976161" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8a8b0bc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1aaec0971898a767b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1487da703263f4a163" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efbeb2d199d7534a313e4e8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4376559009835046955" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4c0cfc0cc7ee897c0b11ee2ee5d8669f1b42c11f51a3d6b0729f1b0db6f9f88d3a556d47e742c3faacfecf4cf40811253b83e1480f4ddaff1b03b94aa5cbf9e7fb4889995ec224042b50ffff4b65e31951f32818c281d57c9f47f59eb8f193468aff417ad8669f1bcc3eb1acdb5a416180ff44e8a8b0bcbf49c1aaec0971898a767b491487da703263f4a1634cefbeb2d199d7534a313e4e8a1b3cbca93b3fc0d82bffff", + "cborBytes": [ + 191, 76, 12, 252, 12, 199, 238, 137, 124, 11, 17, 238, 46, 229, 216, 102, 159, 27, 66, 193, 31, 81, 163, 214, 176, + 114, 159, 27, 13, 182, 249, 248, 141, 58, 85, 109, 71, 231, 66, 195, 250, 172, 254, 207, 76, 244, 8, 17, 37, 59, + 131, 225, 72, 15, 77, 218, 255, 27, 3, 185, 74, 165, 203, 249, 231, 251, 72, 137, 153, 94, 194, 36, 4, 43, 80, + 255, 255, 75, 101, 227, 25, 81, 243, 40, 24, 194, 129, 213, 124, 159, 71, 245, 158, 184, 241, 147, 70, 138, 255, + 65, 122, 216, 102, 159, 27, 204, 62, 177, 172, 219, 90, 65, 97, 128, 255, 68, 232, 168, 176, 188, 191, 73, 193, + 170, 236, 9, 113, 137, 138, 118, 123, 73, 20, 135, 218, 112, 50, 99, 244, 161, 99, 76, 239, 190, 178, 209, 153, + 215, 83, 74, 49, 62, 78, 138, 27, 60, 188, 169, 59, 63, 192, 216, 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2056, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5732920929372639835" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7550335576092826730" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6644146305111414070" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15877125404553831933" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8415086485156509944" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fdcad29b0e80242aaa665ef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13482452897440086281" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9228936323196253628" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "469382880534058928" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "168ac24a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10796767084583759862" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e12c98cb43c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12155280639198281965" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5856441158462710729" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3a6b41adf7e9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4743561922909092053" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4f8f6d3600a8925b1b68c82e33fc01dc6a1b5c34bfdcbfe3d5361bdc56e16f50c2e5fd1b74c86492bdf1b8f8bf4c7fdcad29b0e80242aaa665ef1bbb1b4b7a24da3909ff1b8013c4b05ecff5bcd8669f1b0683953e31e1d7b09f44168ac24affff1b95d5d275af3eaff646e12c98cb43c11ba8b03b570498c0edd8669f1b514642347225a3c99f463a6b41adf7e91b41d4846fb910b8d5ffffff", + "cborBytes": [ + 191, 27, 79, 143, 109, 54, 0, 168, 146, 91, 27, 104, 200, 46, 51, 252, 1, 220, 106, 27, 92, 52, 191, 220, 191, + 227, 213, 54, 27, 220, 86, 225, 111, 80, 194, 229, 253, 27, 116, 200, 100, 146, 189, 241, 184, 248, 191, 76, 127, + 220, 173, 41, 176, 232, 2, 66, 170, 166, 101, 239, 27, 187, 27, 75, 122, 36, 218, 57, 9, 255, 27, 128, 19, 196, + 176, 94, 207, 245, 188, 216, 102, 159, 27, 6, 131, 149, 62, 49, 225, 215, 176, 159, 68, 22, 138, 194, 74, 255, + 255, 27, 149, 213, 210, 117, 175, 62, 175, 246, 70, 225, 44, 152, 203, 67, 193, 27, 168, 176, 59, 87, 4, 152, 192, + 237, 216, 102, 159, 27, 81, 70, 66, 52, 114, 37, 163, 201, 159, 70, 58, 107, 65, 173, 247, 233, 27, 65, 212, 132, + 111, 185, 16, 184, 213, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2057, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "983821562998241506" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13410891601011749600" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2203999732509763008" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e2adb8c18d0742abd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6da978" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "274663666e1a2dff15b82479" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5594e87e680f0d7541" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9aef81184e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11252683183268997654" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2765008044348317566" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f8446150f18c0bfee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f03d2e7b523ac50" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "649a7ae1cdb9103223" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9056defd1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bc199a4422e609d0859" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "065150" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc0d4fb0071a79756a7e6a35" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2995692020247626294" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6466816377402726269" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11530613695086134842" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11734572378648393992" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b0b00c505aa3ffeb5521ec33" + }, + { + "_tag": "ByteArray", + "bytearray": "78deb53d37e55b311b92" + }, + { + "_tag": "ByteArray", + "bytearray": "c4" + }, + { + "_tag": "ByteArray", + "bytearray": "c66fe02b71" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16523286529160625527" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "42a6e01da4be9874c9d6dc" + } + ] + } + } + ] + }, + "cborHex": "bf1b0da73c7fc0e138e21bba1d0edb6f9332e01b1e962e14554ce5c0bf491e2adb8c18d0742abd436da9784c274663666e1a2dff15b82479495594e87e680f0d754146e9aef81184e81b9c298fbc64c2aa16ff1b265f482aac7a9f7ebf490f8446150f18c0bfee480f03d2e7b523ac5049649a7ae1cdb910322345d9056defd14a6bc199a4422e609d0859430651504cbc0d4fb0071a79756a7e6a351b2992d60543550236ff1b59bebf3b8ac4977d1ba004f81059dd063a1ba2d99367ec72b9089f4cb0b00c505aa3ffeb5521ec334a78deb53d37e55b311b9241c445c66fe02b71ff1be54e818ddc9dbd779f4b42a6e01da4be9874c9d6dcffff", + "cborBytes": [ + 191, 27, 13, 167, 60, 127, 192, 225, 56, 226, 27, 186, 29, 14, 219, 111, 147, 50, 224, 27, 30, 150, 46, 20, 85, + 76, 229, 192, 191, 73, 30, 42, 219, 140, 24, 208, 116, 42, 189, 67, 109, 169, 120, 76, 39, 70, 99, 102, 110, 26, + 45, 255, 21, 184, 36, 121, 73, 85, 148, 232, 126, 104, 15, 13, 117, 65, 70, 233, 174, 248, 17, 132, 232, 27, 156, + 41, 143, 188, 100, 194, 170, 22, 255, 27, 38, 95, 72, 42, 172, 122, 159, 126, 191, 73, 15, 132, 70, 21, 15, 24, + 192, 191, 238, 72, 15, 3, 210, 231, 181, 35, 172, 80, 73, 100, 154, 122, 225, 205, 185, 16, 50, 35, 69, 217, 5, + 109, 239, 209, 74, 107, 193, 153, 164, 66, 46, 96, 157, 8, 89, 67, 6, 81, 80, 76, 188, 13, 79, 176, 7, 26, 121, + 117, 106, 126, 106, 53, 27, 41, 146, 214, 5, 67, 85, 2, 54, 255, 27, 89, 190, 191, 59, 138, 196, 151, 125, 27, + 160, 4, 248, 16, 89, 221, 6, 58, 27, 162, 217, 147, 103, 236, 114, 185, 8, 159, 76, 176, 176, 12, 80, 90, 163, + 255, 235, 85, 33, 236, 51, 74, 120, 222, 181, 61, 55, 229, 91, 49, 27, 146, 65, 196, 69, 198, 111, 224, 43, 113, + 255, 27, 229, 78, 129, 141, 220, 157, 189, 119, 159, 75, 66, 166, 224, 29, 164, 190, 152, 116, 201, 214, 220, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2058, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5391354154163915343" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + } + ] + }, + "cborHex": "bf1b4ad1f009e1444a4f1bffffffffffffffedff", + "cborBytes": [191, 27, 74, 209, 240, 9, 225, 68, 74, 79, 27, 255, 255, 255, 255, 255, 255, 255, 237, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2059, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6183085583271585464" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae832b0cb30336f810" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42f4e7d9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18078284312185705094" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c124" + }, + { + "_tag": "ByteArray", + "bytearray": "6c1fba5172527c64" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc7f477aafee81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13981668181843141482" + } + } + } + ] + }, + "cborHex": "bf1b55cebb941ebde6b849ae832b0cb30336f8104442f4e7d99f1bfae2f7cc9058928642c124486c1fba5172527c64ff47cc7f477aafee811bc208dd222224636aff", + "cborBytes": [ + 191, 27, 85, 206, 187, 148, 30, 189, 230, 184, 73, 174, 131, 43, 12, 179, 3, 54, 248, 16, 68, 66, 244, 231, 217, + 159, 27, 250, 226, 247, 204, 144, 88, 146, 134, 66, 193, 36, 72, 108, 31, 186, 81, 114, 82, 124, 100, 255, 71, + 204, 127, 71, 122, 175, 238, 129, 27, 194, 8, 221, 34, 34, 36, 99, 106, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2060, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c69892e5eb588f7851cb" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc06fba2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11494421064994297441" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13335973564818464311" + } + } + ] + } + } + ] + }, + "cborHex": "bf4ac69892e5eb588f7851cb8044fc06fba2d8669f1b9f84630efdc096619f1bb912e54cd9011e37ffffff", + "cborBytes": [ + 191, 74, 198, 152, 146, 229, 235, 88, 143, 120, 81, 203, 128, 68, 252, 6, 251, 162, 216, 102, 159, 27, 159, 132, + 99, 14, 253, 192, 150, 97, 159, 27, 185, 18, 229, 76, 217, 1, 30, 55, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2061, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6778387291145350080" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10418436872599342323" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17404960152988019810" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ac87" + } + ] + } + } + ] + }, + "cborHex": "bf1b5e11ab53eebdabc01b9095b922ea1d8cf31bf18ad70b30adec629f42ac87ffff", + "cborBytes": [ + 191, 27, 94, 17, 171, 83, 238, 189, 171, 192, 27, 144, 149, 185, 34, 234, 29, 140, 243, 27, 241, 138, 215, 11, 48, + 173, 236, 98, 159, 66, 172, 135, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2062, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "db7ec9d33b2ebf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + }, + "cborHex": "bf47db7ec9d33b2ebf12ff", + "cborBytes": [191, 71, 219, 126, 201, 211, 59, 46, 191, 18, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2063, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4258669682204681169" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11481820960116318272" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5594410657060376064" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a1e119c2da870add955" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11259855093092013111" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f5b0ec6985fe10a1d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f1add216102" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8488129552610244370" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67125ff43892bb0bc1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d9051112bd0e0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69764c560d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7478405701005513955" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bda28c55e5f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10184990327261913343" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6581496768053363147" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8b454dc68dbba5176" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14615669267756007979" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13498464118207934642" + } + } + } + ] + }, + "cborHex": "bf1b3b19d583378923d1d8669f1b9f579f54765e204080ff1b4da356da25be4e00bf4a2a1e119c2da870add9551b9c430a8cc61f5437492f5b0ec6985fe10a1d4148463f1add2161021b75cbe4db26d437124967125ff43892bb0bc1474d9051112bd0e04569764c560d1b67c8a25cdeb094e346bda28c55e5f11b8d585abd813c60ffff1b5b562c70b633c1cb49d8b454dc68dbba51761bcad549c30b30c22b1bbb542d98fb23f0b2ff", + "cborBytes": [ + 191, 27, 59, 25, 213, 131, 55, 137, 35, 209, 216, 102, 159, 27, 159, 87, 159, 84, 118, 94, 32, 64, 128, 255, 27, + 77, 163, 86, 218, 37, 190, 78, 0, 191, 74, 42, 30, 17, 156, 45, 168, 112, 173, 217, 85, 27, 156, 67, 10, 140, 198, + 31, 84, 55, 73, 47, 91, 14, 198, 152, 95, 225, 10, 29, 65, 72, 70, 63, 26, 221, 33, 97, 2, 27, 117, 203, 228, 219, + 38, 212, 55, 18, 73, 103, 18, 95, 244, 56, 146, 187, 11, 193, 71, 77, 144, 81, 17, 43, 208, 224, 69, 105, 118, 76, + 86, 13, 27, 103, 200, 162, 92, 222, 176, 148, 227, 70, 189, 162, 140, 85, 229, 241, 27, 141, 88, 90, 189, 129, 60, + 96, 255, 255, 27, 91, 86, 44, 112, 182, 51, 193, 203, 73, 216, 180, 84, 220, 104, 219, 186, 81, 118, 27, 202, 213, + 73, 195, 11, 48, 194, 43, 27, 187, 84, 45, 152, 251, 35, 240, 178, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2064, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6eab06c26a50" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf466eab06c26a5080ff", + "cborBytes": [191, 70, 110, 171, 6, 194, 106, 80, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2065, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8273077877098046838" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6dbed5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5710872924274955034" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4054300476015079607" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0964014725a6" + }, + { + "_tag": "ByteArray", + "bytearray": "e875af09bcffde8890c96f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "363327610746997605" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10535078880932464312" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cac5279b17a6" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b72cfe07f1f926576436dbed54155d8669f1b4f4118aac8ce131a9f1b3843c4cd659370b7460964014725a64be875af09bcffde8890c96f1b050acc8977aa8b651b92341e6ccab306b8ffff46cac5279b17a680ff", + "cborBytes": [ + 191, 27, 114, 207, 224, 127, 31, 146, 101, 118, 67, 109, 190, 213, 65, 85, 216, 102, 159, 27, 79, 65, 24, 170, + 200, 206, 19, 26, 159, 27, 56, 67, 196, 205, 101, 147, 112, 183, 70, 9, 100, 1, 71, 37, 166, 75, 232, 117, 175, 9, + 188, 255, 222, 136, 144, 201, 111, 27, 5, 10, 204, 137, 119, 170, 139, 101, 27, 146, 52, 30, 108, 202, 179, 6, + 184, 255, 255, 70, 202, 197, 39, 155, 23, 166, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2066, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4187632916171218100" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15850429750253334665" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6cc5000cbf8f9868cc050c7f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15645656292143290483" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a1ab04207" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6180371120231818730" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf41ddbf1b3a1d75f3421e5cb41bdbf809e0f12230894c6cc5000cbf8f9868cc050c7f1bd9208980e30e5873458a1ab042071b55c516c9f18025eaffff", + "cborBytes": [ + 191, 65, 221, 191, 27, 58, 29, 117, 243, 66, 30, 92, 180, 27, 219, 248, 9, 224, 241, 34, 48, 137, 76, 108, 197, 0, + 12, 191, 143, 152, 104, 204, 5, 12, 127, 27, 217, 32, 137, 128, 227, 14, 88, 115, 69, 138, 26, 176, 66, 7, 27, 85, + 197, 22, 201, 241, 128, 37, 234, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2067, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4501bdd38" + } + } + ] + }, + "cborHex": "bf1bffffffffffffffee45d4501bdd38ff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 238, 69, 212, 80, 27, 221, 56, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2068, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "332c0b82" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9404e0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "ByteArray", + "bytearray": "015c86" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1357017716393575254" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + ] + } + } + ] + }, + "cborHex": "bf0044332c0b82059f439404e00d43015c86ff0f031bfffffffffffffffbd8669f1b12d5186c5b8d03569f1bfffffffffffffffdffffff", + "cborBytes": [ + 191, 0, 68, 51, 44, 11, 130, 5, 159, 67, 148, 4, 224, 13, 67, 1, 92, 134, 255, 15, 3, 27, 255, 255, 255, 255, 255, + 255, 255, 251, 216, 102, 159, 27, 18, 213, 24, 108, 91, 141, 3, 86, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 253, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2069, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15247226963763158948" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff040594030db406ce51f904" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21" + } + } + ] + }, + "cborHex": "bf0cd8669f1bd3990823e8dc5fa480ff4cff040594030db406ce51f9044121ff", + "cborBytes": [ + 191, 12, 216, 102, 159, 27, 211, 153, 8, 35, 232, 220, 95, 164, 128, 255, 76, 255, 4, 5, 148, 3, 13, 180, 6, 206, + 81, 249, 4, 65, 33, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2070, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12377552393249654622" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e0" + }, + { + "_tag": "ByteArray", + "bytearray": "237aad227eabbe5f9bdd5c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13283521465521920882" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd0c541f2b16e49f8aa7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2c2c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17234213557748083727" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17752444696390976095" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2432653127970409093" + } + } + ] + } + } + ] + }, + "cborHex": "bf06d8669f1bffffffffffffffef9f1babc5e652946e875e41e04b237aad227eabbe5f9bdd5c1bb8588c64ceb5db72ffff134acd0c541f2b16e49f8aa71bfffffffffffffffa9f422c2c1bef2c39eb84cbac0f1bf65d5a651726c25f1b21c28521926b4a85ffff", + "cborBytes": [ + 191, 6, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 27, 171, 197, 230, 82, 148, 110, 135, 94, + 65, 224, 75, 35, 122, 173, 34, 126, 171, 190, 95, 155, 221, 92, 27, 184, 88, 140, 100, 206, 181, 219, 114, 255, + 255, 19, 74, 205, 12, 84, 31, 43, 22, 228, 159, 138, 167, 27, 255, 255, 255, 255, 255, 255, 255, 250, 159, 66, 44, + 44, 27, 239, 44, 57, 235, 132, 203, 172, 15, 27, 246, 93, 90, 101, 23, 38, 194, 95, 27, 33, 194, 133, 33, 146, + 107, 74, 133, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2071, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7314774681089497317" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b75" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b02e0d32e953e2be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "46803176095771988" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b65834cd12e5c58e5a0422b75bf48b02e0d32e953e2be1b00a6473d9d8c6d54ffff", + "cborBytes": [ + 191, 27, 101, 131, 76, 209, 46, 92, 88, 229, 160, 66, 43, 117, 191, 72, 176, 46, 13, 50, 233, 83, 226, 190, 27, 0, + 166, 71, 61, 157, 140, 109, 84, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2072, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d95c4cfc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8182395756957097571" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7927699355617030849" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14304276907271343774" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25933c41ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28d9c29a5c5831d8d7a0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52f707273a2dd42323be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12040924366245952645" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf44d95c4cfcbf1b718db596b9175e631b6e04d88fa9a572c11bc683000f52bb4e9e41c34525933c41ae4a28d9c29a5c5831d8d7a04a52f707273a2dd42323be1ba719f4ea616f7c85ffff", + "cborBytes": [ + 191, 68, 217, 92, 76, 252, 191, 27, 113, 141, 181, 150, 185, 23, 94, 99, 27, 110, 4, 216, 143, 169, 165, 114, 193, + 27, 198, 131, 0, 15, 82, 187, 78, 158, 65, 195, 69, 37, 147, 60, 65, 174, 74, 40, 217, 194, 154, 92, 88, 49, 216, + 215, 160, 74, 82, 247, 7, 39, 58, 45, 212, 35, 35, 190, 27, 167, 25, 244, 234, 97, 111, 124, 133, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2073, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3114263021249521731" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14990523552908260456" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d3a0c75b7a43eb307dc6ce0" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5678899146316216032" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15490955252631459159" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7883191480344547188" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b002565" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9106561157596940943" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1d591b45f61f240f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13348252375778699588" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17579237203385941943" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2026351535190838934" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10139454654962397947" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17928183385508746754" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13972132199797350346" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11882142102310122470" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a2f" + } + ] + } + } + ] + }, + "cborHex": "bf1b2b3815b7beb66843bf1bd00909bf883934684c7d3a0c75b7a43eb307dc6ce0ff1b4ecf80af7b7276e01bd6faedba4891d5571b6d66b8e26a528f74446b0025651b7e61011fcbef8a8f9f481d591b45f61f240f1bb93e84d04e8da9441bf3f5ff1902267fb71b1c1f0bfc351e0e961b8cb694499d36f2fbff1bf8cdb3cd314f16029f1bc1e6fc354bb7dfca1ba4e5d949aae873e6421a2fffff", + "cborBytes": [ + 191, 27, 43, 56, 21, 183, 190, 182, 104, 67, 191, 27, 208, 9, 9, 191, 136, 57, 52, 104, 76, 125, 58, 12, 117, 183, + 164, 62, 179, 7, 220, 108, 224, 255, 27, 78, 207, 128, 175, 123, 114, 118, 224, 27, 214, 250, 237, 186, 72, 145, + 213, 87, 27, 109, 102, 184, 226, 106, 82, 143, 116, 68, 107, 0, 37, 101, 27, 126, 97, 1, 31, 203, 239, 138, 143, + 159, 72, 29, 89, 27, 69, 246, 31, 36, 15, 27, 185, 62, 132, 208, 78, 141, 169, 68, 27, 243, 245, 255, 25, 2, 38, + 127, 183, 27, 28, 31, 11, 252, 53, 30, 14, 150, 27, 140, 182, 148, 73, 157, 54, 242, 251, 255, 27, 248, 205, 179, + 205, 49, 79, 22, 2, 159, 27, 193, 230, 252, 53, 75, 183, 223, 202, 27, 164, 229, 217, 73, 170, 232, 115, 230, 66, + 26, 47, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2074, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7285675230844447162" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6b8aae9" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff4d8669f1b651beb05735869ba80ff1bfffffffffffffff544c6b8aae9ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 244, 216, 102, 159, 27, 101, 27, 235, 5, 115, 88, 105, 186, 128, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 245, 68, 198, 184, 170, 233, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2075, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c050405" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "721941732259985139" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5b8008865" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2736127154956843370" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e7d4fd5a5b1f7b351" + } + } + ] + }, + "cborHex": "bf0c447c0504050d1b0a04da2e33e2f6f31345f5b80088651b25f8ad269b80b96a497e7d4fd5a5b1f7b351ff", + "cborBytes": [ + 191, 12, 68, 124, 5, 4, 5, 13, 27, 10, 4, 218, 46, 51, 226, 246, 243, 19, 69, 245, 184, 0, 136, 101, 27, 37, 248, + 173, 38, 155, 128, 185, 106, 73, 126, 125, 79, 213, 165, 177, 247, 179, 81, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2076, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6139908148805673268" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5044552842157638723" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16315506084963150041" + } + } + ] + } + } + ] + }, + "cborHex": "bf0fd8669f1b553555ee4316a1349f1b4601da152f7e4443ffff4118d8669f1bfffffffffffffff69f1be26c52574cf3e8d9ffffff", + "cborBytes": [ + 191, 15, 216, 102, 159, 27, 85, 53, 85, 238, 67, 22, 161, 52, 159, 27, 70, 1, 218, 21, 47, 126, 68, 67, 255, 255, + 65, 24, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 159, 27, 226, 108, 82, 87, 76, 243, 232, 217, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2077, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c83967" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d67498b9" + } + } + ] + }, + "cborHex": "bf43c8396744d67498b9ff", + "cborBytes": [191, 67, 200, 57, 103, 68, 214, 116, 152, 185, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2078, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7785912591469669988" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9744569747104885430" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9070439446277267059" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14718939232632780344" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9207484050888499581" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17631169606792620536" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee3c980e" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13338569164513146222" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6373332027598486031" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "751776414115107872" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cdf3f2fe949b4dad" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15058311504669083547" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17906135385352488308" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "041a2b92579fb115" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6569029312764251935" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f85bec6d71f863" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5348135938569752913" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1973616479242991088" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6c0d1e401aca6e64bf1b873baa8e59346ab61b7de0ac9e800c1e731bcc442d3f6fa336381b7fc78df60048a17d1bf4ae7f57eb89a9f844ee3c980eff1bb91c1dfbfec8f56ed8669f1b58729fb634a0ba0f9f1b0a6ed8aa61d9142048cdf3f2fe949b4dadffff1bd0f9de87f8fa879ba01bf87f5f431ffcc5749f48041a2b92579fb1151b5b29e15b12710f1f47f85bec6d71f8631b4a38654cecf351511b1b63b1bb3022b5f0ffff", + "cborBytes": [ + 191, 27, 108, 13, 30, 64, 26, 202, 110, 100, 191, 27, 135, 59, 170, 142, 89, 52, 106, 182, 27, 125, 224, 172, 158, + 128, 12, 30, 115, 27, 204, 68, 45, 63, 111, 163, 54, 56, 27, 127, 199, 141, 246, 0, 72, 161, 125, 27, 244, 174, + 127, 87, 235, 137, 169, 248, 68, 238, 60, 152, 14, 255, 27, 185, 28, 29, 251, 254, 200, 245, 110, 216, 102, 159, + 27, 88, 114, 159, 182, 52, 160, 186, 15, 159, 27, 10, 110, 216, 170, 97, 217, 20, 32, 72, 205, 243, 242, 254, 148, + 155, 77, 173, 255, 255, 27, 208, 249, 222, 135, 248, 250, 135, 155, 160, 27, 248, 127, 95, 67, 31, 252, 197, 116, + 159, 72, 4, 26, 43, 146, 87, 159, 177, 21, 27, 91, 41, 225, 91, 18, 113, 15, 31, 71, 248, 91, 236, 109, 113, 248, + 99, 27, 74, 56, 101, 76, 236, 243, 81, 81, 27, 27, 99, 177, 187, 48, 34, 181, 240, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2079, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "abd6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f002" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5891350943347992831" + } + } + } + ] + }, + "cborHex": "bf42abd60242f0021b51c24878216b68ffff", + "cborBytes": [191, 66, 171, 214, 2, 66, 240, 2, 27, 81, 194, 72, 120, 33, 107, 104, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2080, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2584521324476475042" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12206447183483286813" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14009577190234262783" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5660769673111642160" + } + } + } + ] + }, + "cborHex": "bf1b23de107383d7a6a21ba966030a7516b51d1bc26c043a85540cff1b4e8f1806911fa030ff", + "cborBytes": [ + 191, 27, 35, 222, 16, 115, 131, 215, 166, 162, 27, 169, 102, 3, 10, 117, 22, 181, 29, 27, 194, 108, 4, 58, 133, + 84, 12, 255, 27, 78, 143, 24, 6, 145, 31, 160, 48, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2081, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27ce6ea211d0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10486805622730448507" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3919479310925684460" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3494e173938da9c0136c17e0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4574130383258523972" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16240353445181435913" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a51" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66afce86dfb4a7085b60f0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3311135356470689441" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6df3dd305fd3c621d63e2854" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "137397397343268617" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be430c4cba2e51c0a7" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17262546405322466901" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c4f491c45d" + }, + { + "_tag": "ByteArray", + "bytearray": "8dac9129b7c6e1cca72e5f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12231554653451962577" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1311416288663531628" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "facd60baa0ed6d6b2e" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4627ce6ea211d0d8669f1b91889e27036ade7b9f1b3664c9aac037deec4c3494e173938da9c0136c17e01b3f7a93594a7219441be1615369ced4b009ffff422a51a04b66afce86dfb4a7085b60f01b2df3841045abfea14c6df3dd305fd3c621d63e28541b01e8223475b56f0949be430c4cba2e51c0a79f1bef90e27ea7f1265545c4f491c45d4b8dac9129b7c6e1cca72e5f1ba9bf3626d9c7c8d11b1233162a9673706cff49facd60baa0ed6d6b2e80ff", + "cborBytes": [ + 191, 70, 39, 206, 110, 162, 17, 208, 216, 102, 159, 27, 145, 136, 158, 39, 3, 106, 222, 123, 159, 27, 54, 100, + 201, 170, 192, 55, 222, 236, 76, 52, 148, 225, 115, 147, 141, 169, 192, 19, 108, 23, 224, 27, 63, 122, 147, 89, + 74, 114, 25, 68, 27, 225, 97, 83, 105, 206, 212, 176, 9, 255, 255, 66, 42, 81, 160, 75, 102, 175, 206, 134, 223, + 180, 167, 8, 91, 96, 240, 27, 45, 243, 132, 16, 69, 171, 254, 161, 76, 109, 243, 221, 48, 95, 211, 198, 33, 214, + 62, 40, 84, 27, 1, 232, 34, 52, 117, 181, 111, 9, 73, 190, 67, 12, 76, 186, 46, 81, 192, 167, 159, 27, 239, 144, + 226, 126, 167, 241, 38, 85, 69, 196, 244, 145, 196, 93, 75, 141, 172, 145, 41, 183, 198, 225, 204, 167, 46, 95, + 27, 169, 191, 54, 38, 217, 199, 200, 209, 27, 18, 51, 22, 42, 150, 115, 112, 108, 255, 73, 250, 205, 96, 186, 160, + 237, 109, 107, 46, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2082, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2609677151547227897" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e9783" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16365645501878911373" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "160ffc5170c069c3aca7" + }, + { + "_tag": "ByteArray", + "bytearray": "4367ab765080cb39abbefd" + } + ] + } + } + ] + }, + "cborHex": "bf1b24376f8aec6cfef9431e97831be31e73e00376418d9f4a160ffc5170c069c3aca74b4367ab765080cb39abbefdffff", + "cborBytes": [ + 191, 27, 36, 55, 111, 138, 236, 108, 254, 249, 67, 30, 151, 131, 27, 227, 30, 115, 224, 3, 118, 65, 141, 159, 74, + 22, 15, 252, 81, 112, 192, 105, 195, 172, 167, 75, 67, 103, 171, 118, 80, 128, 203, 57, 171, 190, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2083, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2230685259195615781" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14755011506448801496" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14342224753445515526" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55546d16fc1e1777326c0894" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16754766823187927129" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1ef4fc6cb00e0a25bf1bccc454ca2aae9ed801ff1bc709d16cc5ef31064c55546d16fc1e1777326c08941bfffffffffffffff3bf040a1be884e3a7b69dd059061bffffffffffffffef13ffff", + "cborBytes": [ + 191, 27, 30, 244, 252, 108, 176, 14, 10, 37, 191, 27, 204, 196, 84, 202, 42, 174, 158, 216, 1, 255, 27, 199, 9, + 209, 108, 197, 239, 49, 6, 76, 85, 84, 109, 22, 252, 30, 23, 119, 50, 108, 8, 148, 27, 255, 255, 255, 255, 255, + 255, 255, 243, 191, 4, 10, 27, 232, 132, 227, 167, 182, 157, 208, 89, 6, 27, 255, 255, 255, 255, 255, 255, 255, + 239, 19, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2084, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14970741831007793115" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "67f8d7b905" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a02bd4fe77f28e641ab2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6636105416406911140" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a20fd46ec679" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3032675858775914899" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0cd8669f1bcfc2c2607d4cefdb9f4567f8d7b905ffff1bfffffffffffffff5bf4aa02bd4fe77f28e641ab21b5c182eb774fac8a446a20fd46ec6791b2a163aa0313db993ffff", + "cborBytes": [ + 191, 12, 216, 102, 159, 27, 207, 194, 194, 96, 125, 76, 239, 219, 159, 69, 103, 248, 215, 185, 5, 255, 255, 27, + 255, 255, 255, 255, 255, 255, 255, 245, 191, 74, 160, 43, 212, 254, 119, 242, 142, 100, 26, 178, 27, 92, 24, 46, + 183, 116, 250, 200, 164, 70, 162, 15, 212, 110, 198, 121, 27, 42, 22, 58, 160, 49, 61, 185, 147, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2085, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1631547061708685995" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5385542792484491050" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9336045470798471677" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5642024089162680675" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c8b19c46ad3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14734197625903307167" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11069317275618664220" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b114333f729d2179" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15822947909084492127" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10846900136586362093" + } + } + } + ] + }, + "cborHex": "bf1b16a46b68877a82ab419b1b4abd4aa2ccb40f2a1b81904be425d661fd1b4e4c7f0430bd0963464c8b19c46ad31bcc7a62acf65ed99fd8669f1b999e1d6a17585f1c9f48b114333f729d2179ffff1bdb96674a2c7db15f1b9687ee34735dbcedff", + "cborBytes": [ + 191, 27, 22, 164, 107, 104, 135, 122, 130, 171, 65, 155, 27, 74, 189, 74, 162, 204, 180, 15, 42, 27, 129, 144, 75, + 228, 37, 214, 97, 253, 27, 78, 76, 127, 4, 48, 189, 9, 99, 70, 76, 139, 25, 196, 106, 211, 27, 204, 122, 98, 172, + 246, 94, 217, 159, 216, 102, 159, 27, 153, 158, 29, 106, 23, 88, 95, 28, 159, 72, 177, 20, 51, 63, 114, 157, 33, + 121, 255, 255, 27, 219, 150, 103, 74, 44, 125, 177, 95, 27, 150, 135, 238, 52, 115, 93, 188, 237, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2086, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10834013861294072608" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13645745129935164724" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13727579223737693890" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b965a2634ae176320d8669f1bbd5f6ce5bd4d55349f1bbe82289278eaf6c2ffffff", + "cborBytes": [ + 191, 27, 150, 90, 38, 52, 174, 23, 99, 32, 216, 102, 159, 27, 189, 95, 108, 229, 189, 77, 85, 52, 159, 27, 190, + 130, 40, 146, 120, 234, 246, 194, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2087, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf05a0ff", + "cborBytes": [191, 5, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2088, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5029687933204400" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6027161986968830065" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8538123156295302369" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "681103776538703779" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d7237edf2ec625cfead" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16821908357664541714" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "587540485262377856" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4e2502c6fc7641457ea052" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9392968557413101154" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c27c87e4ef442395c3ef" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13531625782125259486" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11130872944977082131" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "648673216095434253" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4826260506807564428" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2407ba72534deb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3392948176022194168" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12391313989066379023" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5955f4a78d58" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4937341997929511768" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6194062822135703936" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7546714663747212757" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9157103312393774850" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9013be255c3e5f7848" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12895493708840966563" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "381c952c2c0b5b46f18c82" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9861622091555937295" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b0011de797a96f7b0d8669f1b53a4c7e4d503c0719f1b767d81c61384bce11b0973c446afc437a34a6d7237edf2ec625cfead1be9736c8666c50c12ffff1b08275cf55b3983809f4b4e2502c6fc7641457ea0521b825a87230b056e624ac27c87e4ef442395c3ef1bbbc9fdf48917eade1b9a78cdf8355d7713ff1b09008cda6cadb60da01b42fa525c3dc2f88c9f472407ba72534deb1b2f162c63b51cc7f81babf6ca6bcaa14f0f465955f4a78d58ff1b4484f6635134bb58bf1b55f5bb51b5da29801b68bb5100a1e255d51b7f1490f23ac8a702499013be255c3e5f78481bb2f5ff3476c019a34b381c952c2c0b5b46f18c82ff1b88db850b0c561c0f80ff", + "cborBytes": [ + 191, 27, 0, 17, 222, 121, 122, 150, 247, 176, 216, 102, 159, 27, 83, 164, 199, 228, 213, 3, 192, 113, 159, 27, + 118, 125, 129, 198, 19, 132, 188, 225, 27, 9, 115, 196, 70, 175, 196, 55, 163, 74, 109, 114, 55, 237, 242, 236, + 98, 92, 254, 173, 27, 233, 115, 108, 134, 102, 197, 12, 18, 255, 255, 27, 8, 39, 92, 245, 91, 57, 131, 128, 159, + 75, 78, 37, 2, 198, 252, 118, 65, 69, 126, 160, 82, 27, 130, 90, 135, 35, 11, 5, 110, 98, 74, 194, 124, 135, 228, + 239, 68, 35, 149, 195, 239, 27, 187, 201, 253, 244, 137, 23, 234, 222, 27, 154, 120, 205, 248, 53, 93, 119, 19, + 255, 27, 9, 0, 140, 218, 108, 173, 182, 13, 160, 27, 66, 250, 82, 92, 61, 194, 248, 140, 159, 71, 36, 7, 186, 114, + 83, 77, 235, 27, 47, 22, 44, 99, 181, 28, 199, 248, 27, 171, 246, 202, 107, 202, 161, 79, 15, 70, 89, 85, 244, + 167, 141, 88, 255, 27, 68, 132, 246, 99, 81, 52, 187, 88, 191, 27, 85, 245, 187, 81, 181, 218, 41, 128, 27, 104, + 187, 81, 0, 161, 226, 85, 213, 27, 127, 20, 144, 242, 58, 200, 167, 2, 73, 144, 19, 190, 37, 92, 62, 95, 120, 72, + 27, 178, 245, 255, 52, 118, 192, 25, 163, 75, 56, 28, 149, 44, 44, 11, 91, 70, 241, 140, 130, 255, 27, 136, 219, + 133, 11, 12, 86, 28, 15, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2089, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12218413966085601816" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4783139007547083600" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12405624963146441579" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "20c0bcbcf789eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9482185613833488662" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56cb4fc1a148ff0fc50132" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6854835597748152231" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a197604185d900b4d4dc55" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3187648741069712863" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1611a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13484026618173012466" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e67c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51ac22" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f87908312e868e4d00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0613ae" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13171397786719669577" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14723882199512488747" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3388928764499964133" + } + }, + { + "_tag": "ByteArray", + "bytearray": "40818f4a6e679599" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16299684415166208465" + } + }, + { + "_tag": "ByteArray", + "bytearray": "673d1d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14770546717036387077" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11296117245889567499" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e2c12be7d98983febc67" + }, + { + "_tag": "ByteArray", + "bytearray": "4b81846121" + }, + { + "_tag": "ByteArray", + "bytearray": "47f1ec31f42a8dfb0b40ac68" + }, + { + "_tag": "ByteArray", + "bytearray": "1397418219" + }, + { + "_tag": "ByteArray", + "bytearray": "5eecf6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16535274619527175580" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11387822709953671963" + } + } + } + ] + }, + "cborHex": "bf1ba99086c427343a181b42611f95d0288b501bac29a22d190fe36bbf4720c0bcbcf789eb1b83977d93b6dd49164b56cb4fc1a148ff0fc501321b5f2144a85d7b27a74ba197604185d900b4d4dc551b2c3ccda4202e6ddf43d1611a1bbb20e2c48e1d39f242e67c4351ac2249f87908312e868e4d00430613aeff1bb6ca348080cacd49d8669f1bcc55bcd998a39b2b9f1b2f07e4c1891fb0e54840818f4a6e6795991be2341c9dbcf3d9d143673d1dffff1bccfb85fb3f441b05d8669f1b9cc3dec926695b0b9f4ae2c12be7d98983febc67454b818461214c47f1ec31f42a8dfb0b40ac68451397418219435eecf6ffff1be57918a8a8731d9c1b9e09ac6b5fea331bff", + "cborBytes": [ + 191, 27, 169, 144, 134, 196, 39, 52, 58, 24, 27, 66, 97, 31, 149, 208, 40, 139, 80, 27, 172, 41, 162, 45, 25, 15, + 227, 107, 191, 71, 32, 192, 188, 188, 247, 137, 235, 27, 131, 151, 125, 147, 182, 221, 73, 22, 75, 86, 203, 79, + 193, 161, 72, 255, 15, 197, 1, 50, 27, 95, 33, 68, 168, 93, 123, 39, 167, 75, 161, 151, 96, 65, 133, 217, 0, 180, + 212, 220, 85, 27, 44, 60, 205, 164, 32, 46, 109, 223, 67, 209, 97, 26, 27, 187, 32, 226, 196, 142, 29, 57, 242, + 66, 230, 124, 67, 81, 172, 34, 73, 248, 121, 8, 49, 46, 134, 142, 77, 0, 67, 6, 19, 174, 255, 27, 182, 202, 52, + 128, 128, 202, 205, 73, 216, 102, 159, 27, 204, 85, 188, 217, 152, 163, 155, 43, 159, 27, 47, 7, 228, 193, 137, + 31, 176, 229, 72, 64, 129, 143, 74, 110, 103, 149, 153, 27, 226, 52, 28, 157, 188, 243, 217, 209, 67, 103, 61, 29, + 255, 255, 27, 204, 251, 133, 251, 63, 68, 27, 5, 216, 102, 159, 27, 156, 195, 222, 201, 38, 105, 91, 11, 159, 74, + 226, 193, 43, 231, 217, 137, 131, 254, 188, 103, 69, 75, 129, 132, 97, 33, 76, 71, 241, 236, 49, 244, 42, 141, + 251, 11, 64, 172, 104, 69, 19, 151, 65, 130, 25, 67, 94, 236, 246, 255, 255, 27, 229, 121, 24, 168, 168, 115, 29, + 156, 27, 158, 9, 172, 107, 95, 234, 51, 27, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2090, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5606640860942547518" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3742028873360850332" + } + } + } + ] + }, + "cborHex": "bf1b4dceca2863abba3e1b33ee5b6f27edbd9cff", + "cborBytes": [191, 27, 77, 206, 202, 40, 99, 171, 186, 62, 27, 51, 238, 91, 111, 39, 237, 189, 156, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2091, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc50bbb2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4532653816022881813" + } + } + } + ] + }, + "cborHex": "bf44dc50bbb21b3ee738a171dcd615ff", + "cborBytes": [191, 68, 220, 80, 187, 178, 27, 62, 231, 56, 161, 113, 220, 214, 21, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2092, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14282867639370375862" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2b5911" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11149300136429401392" + } + }, + { + "_tag": "ByteArray", + "bytearray": "58cf" + } + ] + } + } + ] + }, + "cborHex": "bf01801bc636f071b297e2b6d9050d9f432b59111b9aba45670e16b5304258cfffff", + "cborBytes": [ + 191, 1, 128, 27, 198, 54, 240, 113, 178, 151, 226, 182, 217, 5, 13, 159, 67, 43, 89, 17, 27, 154, 186, 69, 103, + 14, 22, 181, 48, 66, 88, 207, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2093, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "167633" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf43167633a0ff", + "cborBytes": [191, 67, 22, 118, 51, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2094, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7858b5bd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4659978020044034885" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb8724d4cd4e8a5c9e5a07" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13517488894283669760" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16713670093780054795" + } + } + ] + } + } + ] + }, + "cborHex": "bf447858b5bd1b40ab9151d1da53454bcb8724d4cd4e8a5c9e5a07d8669f1bbb97c487d710e1009f1be7f2e265c0d4730bffffff", + "cborBytes": [ + 191, 68, 120, 88, 181, 189, 27, 64, 171, 145, 81, 209, 218, 83, 69, 75, 203, 135, 36, 212, 205, 78, 138, 92, 158, + 90, 7, 216, 102, 159, 27, 187, 151, 196, 135, 215, 16, 225, 0, 159, 27, 231, 242, 226, 101, 192, 212, 115, 11, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2095, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5193101024015227512" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "54366c0230e216dcac1bc7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11553423163412594354" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5880d359f71d7c879d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15721964555694497987" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83f5ff3d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4206024167807466650" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91886b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15885979467274425050" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ba77cc48013a2ccb55649" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16136112985162534626" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13408666643271003212" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13922551721221362294" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4baf44562edcba53" + } + } + ] + }, + "cborHex": "bf1b481199ddfb251a78bf4b54366c0230e216dcac1bc71ba05601278afa3eb2495880d359f71d7c879d1bda2fa3770173e0c34483f5ff3d1b3a5eccb236df3c9a4391886b1bdc765628700a92da4b9ba77cc48013a2ccb556491bdfeefd44682e4ee241b71bba15274517cc2c4cff1bc136d7068e671276484baf44562edcba53ff", + "cborBytes": [ + 191, 27, 72, 17, 153, 221, 251, 37, 26, 120, 191, 75, 84, 54, 108, 2, 48, 226, 22, 220, 172, 27, 199, 27, 160, 86, + 1, 39, 138, 250, 62, 178, 73, 88, 128, 211, 89, 247, 29, 124, 135, 157, 27, 218, 47, 163, 119, 1, 115, 224, 195, + 68, 131, 245, 255, 61, 27, 58, 94, 204, 178, 54, 223, 60, 154, 67, 145, 136, 107, 27, 220, 118, 86, 40, 112, 10, + 146, 218, 75, 155, 167, 124, 196, 128, 19, 162, 204, 181, 86, 73, 27, 223, 238, 253, 68, 104, 46, 78, 226, 65, + 183, 27, 186, 21, 39, 69, 23, 204, 44, 76, 255, 27, 193, 54, 215, 6, 142, 103, 18, 118, 72, 75, 175, 68, 86, 46, + 220, 186, 83, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2096, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10432195357075103505" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d234d21ab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a28b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0254ba761877" + } + } + ] + }, + "cborHex": "bf1b90c69a67b5f0df11458d234d21ab434a28b0460254ba761877ff", + "cborBytes": [ + 191, 27, 144, 198, 154, 103, 181, 240, 223, 17, 69, 141, 35, 77, 33, 171, 67, 74, 40, 176, 70, 2, 84, 186, 118, + 24, 119, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2097, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2898507468724766171" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e22b5820c5c286cfa50110e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2951383761044914859" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14198463949809322073" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "93f3f2df1f6308" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11667640157969488137" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6692658098289685123" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af578d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2436460244253657422" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2244623836718505165" + } + }, + { + "_tag": "ByteArray", + "bytearray": "114ac81236fb2e4c0f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16397647974594637897" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0768231ced6485e77c91a1cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "baec5049" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71fd7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebc3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8570c9aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16988793779498367895" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9e5c342" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16619060069972513483" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da66" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dddb65481bee1b92792afa" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2839912f942805db4c9e22b5820c5c286cfa50110e1b28f56be4c0f042abd8669f1bc50b13bc549308599f4793f3f2df1f6308ffff1ba1ebc8e7e6da99099f1b5ce11914c7b2b28343af578d1b21d00baee819c94e1b1f26817ca9fb1ccd49114ac81236fb2e4c0fff1be39025f4559df049bf4c0768231ced6485e77c91a1cf44baec50494371fd7d42ebc3448570c9aa1bebc451ee955dbb9744d9e5c3421be6a2c315039712cb42da664bdddb65481bee1b92792afaffff", + "cborBytes": [ + 191, 27, 40, 57, 145, 47, 148, 40, 5, 219, 76, 158, 34, 181, 130, 12, 92, 40, 108, 250, 80, 17, 14, 27, 40, 245, + 107, 228, 192, 240, 66, 171, 216, 102, 159, 27, 197, 11, 19, 188, 84, 147, 8, 89, 159, 71, 147, 243, 242, 223, 31, + 99, 8, 255, 255, 27, 161, 235, 200, 231, 230, 218, 153, 9, 159, 27, 92, 225, 25, 20, 199, 178, 178, 131, 67, 175, + 87, 141, 27, 33, 208, 11, 174, 232, 25, 201, 78, 27, 31, 38, 129, 124, 169, 251, 28, 205, 73, 17, 74, 200, 18, 54, + 251, 46, 76, 15, 255, 27, 227, 144, 37, 244, 85, 157, 240, 73, 191, 76, 7, 104, 35, 28, 237, 100, 133, 231, 124, + 145, 161, 207, 68, 186, 236, 80, 73, 67, 113, 253, 125, 66, 235, 195, 68, 133, 112, 201, 170, 27, 235, 196, 81, + 238, 149, 93, 187, 151, 68, 217, 229, 195, 66, 27, 230, 162, 195, 21, 3, 151, 18, 203, 66, 218, 102, 75, 221, 219, + 101, 72, 27, 238, 27, 146, 121, 42, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2098, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1923176506174266371" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16079324970471271244" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d95196ca0dc8428f8" + } + } + ] + }, + "cborHex": "bf1b1ab07ed7cae4dc031bdf253cde65022b4c41fa490d95196ca0dc8428f8ff", + "cborBytes": [ + 191, 27, 26, 176, 126, 215, 202, 228, 220, 3, 27, 223, 37, 60, 222, 101, 2, 43, 76, 65, 250, 73, 13, 149, 25, 108, + 160, 220, 132, 40, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2099, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1617538270551589739" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8660668399773449612" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2384275856395236490" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e94ad1d54c3c7c029ba1fa8f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6671431813317314197" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6335851537029488095" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4f00fe" + }, + { + "_tag": "ByteArray", + "bytearray": "49864d59b5ba5648" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71af0906d00d98" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9899251360471128756" + } + } + } + ] + }, + "cborHex": "bf1b1672a67caad3c36b1b7830e005fdf27d8c1b2116a6424afa748a4ce94ad1d54c3c7c029ba1fa8f1b5c95afe33004c695d8669f1b57ed776776415ddf9f434f00fe4849864d59b5ba5648ffff4771af0906d00d981b896134a9f32f1ab4ff", + "cborBytes": [ + 191, 27, 22, 114, 166, 124, 170, 211, 195, 107, 27, 120, 48, 224, 5, 253, 242, 125, 140, 27, 33, 22, 166, 66, 74, + 250, 116, 138, 76, 233, 74, 209, 213, 76, 60, 124, 2, 155, 161, 250, 143, 27, 92, 149, 175, 227, 48, 4, 198, 149, + 216, 102, 159, 27, 87, 237, 119, 103, 118, 65, 93, 223, 159, 67, 79, 0, 254, 72, 73, 134, 77, 89, 181, 186, 86, + 72, 255, 255, 71, 113, 175, 9, 6, 208, 13, 152, 27, 137, 97, 52, 169, 243, 47, 26, 180, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2100, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0609e62cc138c539" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8942914766361452825" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c501fa990b487c798ca14" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "880975119736653447" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f6e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6083326210486412103" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14079581808535535392" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1584754650075747534" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16539672032709023788" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80307b" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "225c08" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2853373133334000361" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9148292989837274762" + } + } + ] + } + } + ] + }, + "cborHex": "bf480609e62cc138c5391b7c1b9d993191e1194b1c501fa990b487c798ca14bf1b0c39da342bdc4687422f6e1b546c50f524dda347414e1bc364b90edbcfff201b15fe2df535e9d4ce1be588b8153315982c4380307bff43225c08d8669f1b279937bf380432e99f1b7ef5440128726e8affffff", + "cborBytes": [ + 191, 72, 6, 9, 230, 44, 193, 56, 197, 57, 27, 124, 27, 157, 153, 49, 145, 225, 25, 75, 28, 80, 31, 169, 144, 180, + 135, 199, 152, 202, 20, 191, 27, 12, 57, 218, 52, 43, 220, 70, 135, 66, 47, 110, 27, 84, 108, 80, 245, 36, 221, + 163, 71, 65, 78, 27, 195, 100, 185, 14, 219, 207, 255, 32, 27, 21, 254, 45, 245, 53, 233, 212, 206, 27, 229, 136, + 184, 21, 51, 21, 152, 44, 67, 128, 48, 123, 255, 67, 34, 92, 8, 216, 102, 159, 27, 39, 153, 55, 191, 56, 4, 50, + 233, 159, 27, 126, 245, 68, 1, 40, 114, 110, 138, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2101, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3937803698484538284" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "172864285098250089" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5681962378665845530" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8e1798d48faf1d2971c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5961422046138610784" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2b88282348bd5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4386fec4b2a71f" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10959727544691938005" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3494808276775439619" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2fa83efa220b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3964283373055961677" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31ae1a559cde252c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5903620159995716926" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a8e355aab028706" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9938269626779431614" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bcded26211b410cf6ca7c55a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11711779057779377111" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16305923734063740796" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b36a5e399b363ebac1b02662326c3a20f691b4eda62add782e31a4ae8e1798d48faf1d2971c1b52bb39c418463460bf47e2b88282348bd5474386fec4b2a71fff1b9818c622806d52d5bf1b30800d9c874b8d03462fa83efa220b1b3703f6b95ffcea4d4831ae1a559cde252c1b51eddf41bd61253e489a8e355aab0287061b89ebd392023df2be4cbcded26211b410cf6ca7c55a1ba28899005acc83d71be24a473e5f7af77cffff", + "cborBytes": [ + 191, 27, 54, 165, 227, 153, 179, 99, 235, 172, 27, 2, 102, 35, 38, 195, 162, 15, 105, 27, 78, 218, 98, 173, 215, + 130, 227, 26, 74, 232, 225, 121, 141, 72, 250, 241, 210, 151, 28, 27, 82, 187, 57, 196, 24, 70, 52, 96, 191, 71, + 226, 184, 130, 130, 52, 139, 213, 71, 67, 134, 254, 196, 178, 167, 31, 255, 27, 152, 24, 198, 34, 128, 109, 82, + 213, 191, 27, 48, 128, 13, 156, 135, 75, 141, 3, 70, 47, 168, 62, 250, 34, 11, 27, 55, 3, 246, 185, 95, 252, 234, + 77, 72, 49, 174, 26, 85, 156, 222, 37, 44, 27, 81, 237, 223, 65, 189, 97, 37, 62, 72, 154, 142, 53, 90, 171, 2, + 135, 6, 27, 137, 235, 211, 146, 2, 61, 242, 190, 76, 188, 222, 210, 98, 17, 180, 16, 207, 108, 167, 197, 90, 27, + 162, 136, 153, 0, 90, 204, 131, 215, 27, 226, 74, 71, 62, 95, 122, 247, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2102, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8d42cde" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6536930585470825097" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + } + } + ] + }, + "cborHex": "bf44e8d42cded8669f1b5ab7d7bbbc5ff2899f05ffffff", + "cborBytes": [ + 191, 68, 232, 212, 44, 222, 216, 102, 159, 27, 90, 183, 215, 187, 188, 95, 242, 137, 159, 5, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2103, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a92b1f0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4158235658976083783" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13656660675534385476" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13542894804045972357" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c9077161c2cf5f8d14aa" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c169e1669" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a641a573cd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef829a02e0170977" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b401925efc0aaabfc5dee8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7627215873183971478" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c02f0249084d4ea3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ec1" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5c663a7c56e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6142782139712534824" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5873993932324764287" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17740837740679411146" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a331d5210a6e41" + }, + { + "_tag": "ByteArray", + "bytearray": "9fa643" + } + ] + } + } + ] + }, + "cborHex": "bf443a92b1f0d8669f1b39b5054cf1a1bf479f1bbd8634873f45f1441bbbf2071229a4c3854ac9077161c2cf5f8d14aaffff454c169e1669bf45a641a573cd48ef829a02e01709774bb401925efc0aaabfc5dee81b69d9506d0a59f89648c02f0249084d4ea3421ec1ff46d5c663a7c56ed8669f1b553f8bcf6a2df9289f1b51849e5c15047a7f1bf6341dee1f0a35ca47a331d5210a6e41439fa643ffffff", + "cborBytes": [ + 191, 68, 58, 146, 177, 240, 216, 102, 159, 27, 57, 181, 5, 76, 241, 161, 191, 71, 159, 27, 189, 134, 52, 135, 63, + 69, 241, 68, 27, 187, 242, 7, 18, 41, 164, 195, 133, 74, 201, 7, 113, 97, 194, 207, 95, 141, 20, 170, 255, 255, + 69, 76, 22, 158, 22, 105, 191, 69, 166, 65, 165, 115, 205, 72, 239, 130, 154, 2, 224, 23, 9, 119, 75, 180, 1, 146, + 94, 252, 10, 170, 191, 197, 222, 232, 27, 105, 217, 80, 109, 10, 89, 248, 150, 72, 192, 47, 2, 73, 8, 77, 78, 163, + 66, 30, 193, 255, 70, 213, 198, 99, 167, 197, 110, 216, 102, 159, 27, 85, 63, 139, 207, 106, 45, 249, 40, 159, 27, + 81, 132, 158, 92, 21, 4, 122, 127, 27, 246, 52, 29, 238, 31, 10, 53, 202, 71, 163, 49, 213, 33, 10, 110, 65, 67, + 159, 166, 67, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2104, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6498569658322391333" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5879792506264737258" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8700918596216536699" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6768324495677125842" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9421457421185143497" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3569781048845094358" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3b7acef6d18ba9888a8556dd" + }, + { + "_tag": "ByteArray", + "bytearray": "e7b56734cdb920" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9434833797565954797" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de6f9d7cd44189a2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13253131775656027254" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d152e3e247f85fa33e533e" + } + ] + } + } + ] + }, + "cborHex": "bf1b5a2f8eac607011259f1b51993821c8e9d5ea1b78bfdf5d2313be7bff1b5dedeb44c968f4d241091b82bfbd9b883552c99f1b318a68f34e554dd64c3b7acef6d18ba9888a8556dd47e7b56734cdb920ff1b82ef4359dac4baed48de6f9d7cd44189a21bb7ec9521c16b64769f4bd152e3e247f85fa33e533effff", + "cborBytes": [ + 191, 27, 90, 47, 142, 172, 96, 112, 17, 37, 159, 27, 81, 153, 56, 33, 200, 233, 213, 234, 27, 120, 191, 223, 93, + 35, 19, 190, 123, 255, 27, 93, 237, 235, 68, 201, 104, 244, 210, 65, 9, 27, 130, 191, 189, 155, 136, 53, 82, 201, + 159, 27, 49, 138, 104, 243, 78, 85, 77, 214, 76, 59, 122, 206, 246, 209, 139, 169, 136, 138, 133, 86, 221, 71, + 231, 181, 103, 52, 205, 185, 32, 255, 27, 130, 239, 67, 89, 218, 196, 186, 237, 72, 222, 111, 157, 124, 212, 65, + 137, 162, 27, 183, 236, 149, 33, 193, 107, 100, 118, 159, 75, 209, 82, 227, 226, 71, 248, 95, 163, 62, 83, 62, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2105, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2678285398448877564" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10679476507507429445" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5572317101011249050" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3912867628324474627" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9003780787017999869" + } + }, + { + "_tag": "ByteArray", + "bytearray": "404dcb08817f55fb750c" + }, + { + "_tag": "ByteArray", + "bytearray": "ab2bd23032" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8155663323076510763" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8321162621955701559" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10169347735226270517" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3109080775764222436" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14177297567772196905" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8741684303305869135" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5846118265521745009" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6874880d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6829373521901960017" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d23792de54a9bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f8ef8fea1a000ac8c" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17677442976657582941" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11319183990531509284" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13260364516073531736" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3121042168712853068" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16268333772000961637" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "95632968374055990" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b252b2e6135a92ffc1b94351f4d211c10451b4d54d8e1459c279a9f1b364d4c606f67cf031b7cf3daebf5b1e5fd4a404dcb08817f55fb750c45ab2bd23032ff1b712ebc94efa8442b1b737ab55137ed7b371b8d20c7e2bb95c3351b2b25ac7e316c21e41bc4bfe105fa124029bf1b7950b38ef527874f1b51219596a358ac71446874880d1b5ec6cf08db6cbb5147d23792de54a9bb491f8ef8fea1a000ac8cff1bf552e4ba68e62b5dd8669f1b9d15d1de26eb4c249f1bb80647455cc1e9581b2b502b510324f64c1be1c4bb5f4f9ba4651b0153c1ad94c07436ffffff", + "cborBytes": [ + 191, 27, 37, 43, 46, 97, 53, 169, 47, 252, 27, 148, 53, 31, 77, 33, 28, 16, 69, 27, 77, 84, 216, 225, 69, 156, 39, + 154, 159, 27, 54, 77, 76, 96, 111, 103, 207, 3, 27, 124, 243, 218, 235, 245, 177, 229, 253, 74, 64, 77, 203, 8, + 129, 127, 85, 251, 117, 12, 69, 171, 43, 210, 48, 50, 255, 27, 113, 46, 188, 148, 239, 168, 68, 43, 27, 115, 122, + 181, 81, 55, 237, 123, 55, 27, 141, 32, 199, 226, 187, 149, 195, 53, 27, 43, 37, 172, 126, 49, 108, 33, 228, 27, + 196, 191, 225, 5, 250, 18, 64, 41, 191, 27, 121, 80, 179, 142, 245, 39, 135, 79, 27, 81, 33, 149, 150, 163, 88, + 172, 113, 68, 104, 116, 136, 13, 27, 94, 198, 207, 8, 219, 108, 187, 81, 71, 210, 55, 146, 222, 84, 169, 187, 73, + 31, 142, 248, 254, 161, 160, 0, 172, 140, 255, 27, 245, 82, 228, 186, 104, 230, 43, 93, 216, 102, 159, 27, 157, + 21, 209, 222, 38, 235, 76, 36, 159, 27, 184, 6, 71, 69, 92, 193, 233, 88, 27, 43, 80, 43, 81, 3, 36, 246, 76, 27, + 225, 196, 187, 95, 79, 155, 164, 101, 27, 1, 83, 193, 173, 148, 192, 116, 54, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2106, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc0306" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6372067390237227953" + } + } + } + ] + }, + "cborHex": "bf02d8669f1bfffffffffffffff680ff43fc03061b586e2187dff0bbb1ff", + "cborBytes": [ + 191, 2, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 246, 128, 255, 67, 252, 3, 6, 27, 88, 110, 33, 135, + 223, 240, 187, 177, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2107, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2712265020422354778" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0beae8d4f085c6959eb9c82e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3966617819086158632" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48d35808672e8ad6f0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4818171002348230043" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54d6f75c052c56ef9671" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12477880135444421801" + } + } + } + ] + }, + "cborHex": "bf1b25a3e6aa76fdf75aa04c0beae8d4f085c6959eb9c82ed8669f1b370c41e3f25d7b2880ff4948d35808672e8ad6f01b42dd94ffb60dd59b4a54d6f75c052c56ef96711bad2a55df5f115ca9ff", + "cborBytes": [ + 191, 27, 37, 163, 230, 170, 118, 253, 247, 90, 160, 76, 11, 234, 232, 212, 240, 133, 198, 149, 158, 185, 200, 46, + 216, 102, 159, 27, 55, 12, 65, 227, 242, 93, 123, 40, 128, 255, 73, 72, 211, 88, 8, 103, 46, 138, 214, 240, 27, + 66, 221, 148, 255, 182, 13, 213, 155, 74, 84, 214, 247, 92, 5, 44, 86, 239, 150, 113, 27, 173, 42, 85, 223, 95, + 17, 92, 169, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2108, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2324853202832009205" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8818629409185672608" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13924124421972548033" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13713935869438973389" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10978340159487247060" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7514541507937414394" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14511366997843179308" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12165858711999290089" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1014331461709165027" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d912c7a93c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13778375828314108329" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d030438169" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16279579287327340873" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "179fd13a9b3acbf2c856" + }, + { + "_tag": "ByteArray", + "bytearray": "3a53" + }, + { + "_tag": "ByteArray", + "bytearray": "2a4a8d41372db30dfb01ae92" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7669712640028697597" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e72fbc81d0" + } + ] + } + } + ] + }, + "cborHex": "bf1b204389ab9dbb27f51b7a6210b97c532da01bc13c6d637c03d9c19f1bbe51b0038265d5cd1b985ae63595a482d41b684903b00e89acfaff1bc962bb6667c4f72c9f1ba8d5d00a844f1ae91b0e13a1171bad71e345d912c7a93c1bbf369fd09c7db1a945d030438169ff1be1ecaf1be1f3f9499f4a179fd13a9b3acbf2c856423a534c2a4a8d41372db30dfb01ae921b6a704b029e3be3fd45e72fbc81d0ffff", + "cborBytes": [ + 191, 27, 32, 67, 137, 171, 157, 187, 39, 245, 27, 122, 98, 16, 185, 124, 83, 45, 160, 27, 193, 60, 109, 99, 124, + 3, 217, 193, 159, 27, 190, 81, 176, 3, 130, 101, 213, 205, 27, 152, 90, 230, 53, 149, 164, 130, 212, 27, 104, 73, + 3, 176, 14, 137, 172, 250, 255, 27, 201, 98, 187, 102, 103, 196, 247, 44, 159, 27, 168, 213, 208, 10, 132, 79, 26, + 233, 27, 14, 19, 161, 23, 27, 173, 113, 227, 69, 217, 18, 199, 169, 60, 27, 191, 54, 159, 208, 156, 125, 177, 169, + 69, 208, 48, 67, 129, 105, 255, 27, 225, 236, 175, 27, 225, 243, 249, 73, 159, 74, 23, 159, 209, 58, 155, 58, 203, + 242, 200, 86, 66, 58, 83, 76, 42, 74, 141, 65, 55, 45, 179, 13, 251, 1, 174, 146, 27, 106, 112, 75, 2, 158, 59, + 227, 253, 69, 231, 47, 188, 129, 208, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2109, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10dfe4ddb4" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10903693030963891083" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce9e58fed84879" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4510dfe4ddb49f1b9751b30a9a814b8bff47ce9e58fed8487980ff", + "cborBytes": [ + 191, 69, 16, 223, 228, 221, 180, 159, 27, 151, 81, 179, 10, 154, 129, 75, 139, 255, 71, 206, 158, 88, 254, 216, + 72, 121, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2110, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bef5b055035b57" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2023504079161924347" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f84b45c2f767caf5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2104863018450750165" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9611826333589765105" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2757601831973969348" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8981519592293173620" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4207149611837758058" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a10a9cde0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17752079342123541010" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a4c2cd3bfea6adb3423ff88" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c63a99baba986a4b208310eb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1e4f688317" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c76c2b46" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3001705000829320217" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4f593f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3484638236885242548" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1515474524325759054" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17c1473e7ebbf8cd6d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3859742667189349766" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e586ad5344aacf19407a79b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9a8bf7b101f6f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d6c097ad1ba8464b7" + } + } + ] + } + } + ] + }, + "cborHex": "bf47bef5b055035b57bf1b1c14ee3d30001afb48f84b45c2f767caf51b1d35f9c3639d0ad51b8564111ff05cfbf11b2644f8417ac65dc41b7ca4c47ba9d889741b3a62cc4812831a6a450a10a9cde01bf65c0e1b6bd2e2124c5a4c2cd3bfea6adb3423ff88ff4cc63a99baba986a4b208310eb9f451e4f688317ff44c76c2b46d8669f1b29a832cb66f1fc199f434f593f1b305bec039849d2b41b15080c0cf097484e4917c1473e7ebbf8cd6d1b35908f818a3d6d86ffff4ce586ad5344aacf19407a79b6419e41fdbf47a9a8bf7b101f6f494d6c097ad1ba8464b7ffff", + "cborBytes": [ + 191, 71, 190, 245, 176, 85, 3, 91, 87, 191, 27, 28, 20, 238, 61, 48, 0, 26, 251, 72, 248, 75, 69, 194, 247, 103, + 202, 245, 27, 29, 53, 249, 195, 99, 157, 10, 213, 27, 133, 100, 17, 31, 240, 92, 251, 241, 27, 38, 68, 248, 65, + 122, 198, 93, 196, 27, 124, 164, 196, 123, 169, 216, 137, 116, 27, 58, 98, 204, 72, 18, 131, 26, 106, 69, 10, 16, + 169, 205, 224, 27, 246, 92, 14, 27, 107, 210, 226, 18, 76, 90, 76, 44, 211, 191, 234, 106, 219, 52, 35, 255, 136, + 255, 76, 198, 58, 153, 186, 186, 152, 106, 75, 32, 131, 16, 235, 159, 69, 30, 79, 104, 131, 23, 255, 68, 199, 108, + 43, 70, 216, 102, 159, 27, 41, 168, 50, 203, 102, 241, 252, 25, 159, 67, 79, 89, 63, 27, 48, 91, 236, 3, 152, 73, + 210, 180, 27, 21, 8, 12, 12, 240, 151, 72, 78, 73, 23, 193, 71, 62, 126, 187, 248, 205, 109, 27, 53, 144, 143, + 129, 138, 61, 109, 134, 255, 255, 76, 229, 134, 173, 83, 68, 170, 207, 25, 64, 122, 121, 182, 65, 158, 65, 253, + 191, 71, 169, 168, 191, 123, 16, 31, 111, 73, 77, 108, 9, 122, 209, 186, 132, 100, 183, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2111, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1320962772349682880" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2978686856832233152" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ab" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5729615332512712754" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10795842012730318028" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12207341570449117289" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11010074015184946543" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16013543097557097077" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4253156848968051729" + } + } + } + ] + }, + "cborHex": "bf1b125500a4876b04c0d8669f1b29566bea1e9c2ec09f41abffff1b4f83aec9c20d4832a01b95d2891c9c075ccc801ba969307b267a90691b98cba3fba1db856f1bde3b889a954c9a751b3b063f9eb4c2ac11ff", + "cborBytes": [ + 191, 27, 18, 85, 0, 164, 135, 107, 4, 192, 216, 102, 159, 27, 41, 86, 107, 234, 30, 156, 46, 192, 159, 65, 171, + 255, 255, 27, 79, 131, 174, 201, 194, 13, 72, 50, 160, 27, 149, 210, 137, 28, 156, 7, 92, 204, 128, 27, 169, 105, + 48, 123, 38, 122, 144, 105, 27, 152, 203, 163, 251, 161, 219, 133, 111, 27, 222, 59, 136, 154, 149, 76, 154, 117, + 27, 59, 6, 63, 158, 180, 194, 172, 17, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2112, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "08a2c991" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7920464962602206166" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "095ba2892f199d56" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17602864905876417695" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9803106769117334177" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17452958133355999100" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0fea12" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ecb" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15135307541518760089" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec5cc0" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10882187504095279679" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d71" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05b6db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14643370660423290972" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c35f5ecea8f4e048ea" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "debb24d5ba" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "016df9a7c48ef8faac" + }, + { + "_tag": "ByteArray", + "bytearray": "9ea45f" + }, + { + "_tag": "ByteArray", + "bytearray": "bfbd89ff" + } + ] + } + } + ] + }, + "cborHex": "bf4408a2c991d8669f1b6deb24eb47d503d69f48095ba2892f199d561bf449f05e2ff42c9f1b880ba1aadc774aa11bf2355cf3da72ef7c430fea12ffff420ecbbf1bd20b6a04ca84389943ec5cc0ff4143d8669f1b97054be0f0cb3a3f80ff424d714305b6db41d59f1bcb37b40820e8505c49c35f5ecea8f4e048eaff45debb24d5ba9f49016df9a7c48ef8faac439ea45f44bfbd89ffffff", + "cborBytes": [ + 191, 68, 8, 162, 201, 145, 216, 102, 159, 27, 109, 235, 36, 235, 71, 213, 3, 214, 159, 72, 9, 91, 162, 137, 47, + 25, 157, 86, 27, 244, 73, 240, 94, 47, 244, 44, 159, 27, 136, 11, 161, 170, 220, 119, 74, 161, 27, 242, 53, 92, + 243, 218, 114, 239, 124, 67, 15, 234, 18, 255, 255, 66, 14, 203, 191, 27, 210, 11, 106, 4, 202, 132, 56, 153, 67, + 236, 92, 192, 255, 65, 67, 216, 102, 159, 27, 151, 5, 75, 224, 240, 203, 58, 63, 128, 255, 66, 77, 113, 67, 5, + 182, 219, 65, 213, 159, 27, 203, 55, 180, 8, 32, 232, 80, 92, 73, 195, 95, 94, 206, 168, 244, 224, 72, 234, 255, + 69, 222, 187, 36, 213, 186, 159, 73, 1, 109, 249, 167, 196, 142, 248, 250, 172, 67, 158, 164, 95, 68, 191, 189, + 137, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2113, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "179297639477905945" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15420634299591702727" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1742723534908102304" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13869738557132782522" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5930440141839894789" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03538d8634243a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7384541301344922059" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "88188421487190342" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16674835389880039808" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0598501ca0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1deb9dd2a10466" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea82b003ac3a" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17783083561636319122" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "299d42d8983bba7b7b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18442225211768673720" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10720433113466111295" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f14b329778fcab61f887" + } + ] + } + } + ] + }, + "cborHex": "bf1b027cfe40ce258a191bd6011931865e38c71b182f65d257e916a0801bc07b35bb91703bbabf1b524d27e3601589054703538d8634243a1b667b293047dd69cb1b01394ee6f00be1461be768ea70a5e97980450598501ca0471deb9dd2a1046646ea82b003ac3aff1bf6ca3447ce6bcf9249299d42d8983bba7b7b1bffeff21e773995b89f1b94c6a11e0e7b853f4af14b329778fcab61f887ffff", + "cborBytes": [ + 191, 27, 2, 124, 254, 64, 206, 37, 138, 25, 27, 214, 1, 25, 49, 134, 94, 56, 199, 27, 24, 47, 101, 210, 87, 233, + 22, 160, 128, 27, 192, 123, 53, 187, 145, 112, 59, 186, 191, 27, 82, 77, 39, 227, 96, 21, 137, 5, 71, 3, 83, 141, + 134, 52, 36, 58, 27, 102, 123, 41, 48, 71, 221, 105, 203, 27, 1, 57, 78, 230, 240, 11, 225, 70, 27, 231, 104, 234, + 112, 165, 233, 121, 128, 69, 5, 152, 80, 28, 160, 71, 29, 235, 157, 210, 161, 4, 102, 70, 234, 130, 176, 3, 172, + 58, 255, 27, 246, 202, 52, 71, 206, 107, 207, 146, 73, 41, 157, 66, 216, 152, 59, 186, 123, 123, 27, 255, 239, + 242, 30, 119, 57, 149, 184, 159, 27, 148, 198, 161, 30, 14, 123, 133, 63, 74, 241, 75, 50, 151, 120, 252, 171, 97, + 248, 135, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2114, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44ba096b8340" + } + } + ] + }, + "cborHex": "bf416f4644ba096b8340ff", + "cborBytes": [191, 65, 111, 70, 68, 186, 9, 107, 131, 64, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2115, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0a808b34d7a6e271b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16850181866762075622" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ef7178d2c53032f2f5b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0771" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a016ef9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16452361680803768963" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de070401" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf49a0a808b34d7a6e271bbf41051be9d7df21b914fde64a3ef7178d2c53032f2f5b420771445a016ef91be45287c7c48eaa8344de0704010bff41f9d9050680ff", + "cborBytes": [ + 191, 73, 160, 168, 8, 179, 77, 122, 110, 39, 27, 191, 65, 5, 27, 233, 215, 223, 33, 185, 20, 253, 230, 74, 62, + 247, 23, 141, 44, 83, 3, 47, 47, 91, 66, 7, 113, 68, 90, 1, 110, 249, 27, 228, 82, 135, 199, 196, 142, 170, 131, + 68, 222, 7, 4, 1, 11, 255, 65, 249, 217, 5, 6, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2116, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bb0bbf8a85b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11155922600449821527" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a53982ce84" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2300642460409944792" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd83854bcfb2f284c4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3344891233841737298" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12818840502908620819" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4582201431713946401" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17448324960795179545" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6642721126749583532" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7648269188913897828" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12766246721545193930" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5112409795374117635" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf463bb0bbf8a85bd8669f1b9ad1cc7f9d904b5780ff45a53982ce84bf1b1fed8620dfea5ad849dd83854bcfb2f284c41b2e6b70daed746e521bb1e5ab85304210131b3f973fecb2989b211bf224e71b4dc73a191b5c2fafab8de438ac1b6a241c4e17c721641bb12ad1c138b249ca1b46f2ed9f47807303ffff", + "cborBytes": [ + 191, 70, 59, 176, 187, 248, 168, 91, 216, 102, 159, 27, 154, 209, 204, 127, 157, 144, 75, 87, 128, 255, 69, 165, + 57, 130, 206, 132, 191, 27, 31, 237, 134, 32, 223, 234, 90, 216, 73, 221, 131, 133, 75, 207, 178, 242, 132, 196, + 27, 46, 107, 112, 218, 237, 116, 110, 82, 27, 177, 229, 171, 133, 48, 66, 16, 19, 27, 63, 151, 63, 236, 178, 152, + 155, 33, 27, 242, 36, 231, 27, 77, 199, 58, 25, 27, 92, 47, 175, 171, 141, 228, 56, 172, 27, 106, 36, 28, 78, 23, + 199, 33, 100, 27, 177, 42, 209, 193, 56, 178, 73, 202, 27, 70, 242, 237, 159, 71, 128, 115, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2117, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2141262622458911923" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16791743684080896961" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3696900376641890740" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5a5099b7e0fed6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13582698846958432116" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64b2de733114610f2e3b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13717677678594492734" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1db74b029e7c1cb341351be90841ea090d0bc19f1b334e074e37bf69b4475a5099b7e0fed61bbc7f70a31810af744a64b2de733114610f2e3b1bbe5efb2b57ee093effff", + "cborBytes": [ + 191, 27, 29, 183, 75, 2, 158, 124, 28, 179, 65, 53, 27, 233, 8, 65, 234, 9, 13, 11, 193, 159, 27, 51, 78, 7, 78, + 55, 191, 105, 180, 71, 90, 80, 153, 183, 224, 254, 214, 27, 188, 127, 112, 163, 24, 16, 175, 116, 74, 100, 178, + 222, 115, 49, 20, 97, 15, 46, 59, 27, 190, 94, 251, 43, 87, 238, 9, 62, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2118, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ec63f84" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15392400161401555650" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a695a960fc9e300e326" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12511004796258995551" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c924e854619a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "825831458855125517" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cdf3b6580c6364" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7056098573967094904" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10976114101758420794" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfecdac607135480" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "98415204818574277" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf445ec63f84bf417a1bd59cca64f5014ac24a7a695a960fc9e300e3261bada004937839cd5f46c924e854619a1b0b75f1561d67020d47cdf3b6580c63641b61ec4c44a972f47841cf1b9852fd9f2177673a48dfecdac6071354801b015da41b7bb55bc5ffff", + "cborBytes": [ + 191, 68, 94, 198, 63, 132, 191, 65, 122, 27, 213, 156, 202, 100, 245, 1, 74, 194, 74, 122, 105, 90, 150, 15, 201, + 227, 0, 227, 38, 27, 173, 160, 4, 147, 120, 57, 205, 95, 70, 201, 36, 232, 84, 97, 154, 27, 11, 117, 241, 86, 29, + 103, 2, 13, 71, 205, 243, 182, 88, 12, 99, 100, 27, 97, 236, 76, 68, 169, 114, 244, 120, 65, 207, 27, 152, 82, + 253, 159, 33, 119, 103, 58, 72, 223, 236, 218, 198, 7, 19, 84, 128, 27, 1, 93, 164, 27, 123, 181, 91, 197, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2119, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4" + } + } + ] + }, + "cborHex": "bf1341d4ff", + "cborBytes": [191, 19, 65, 212, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2120, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6635392460207686299" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6006" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12562471514479322805" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2030606890341018252" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14095007638059630221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6379d1a2b2ba7672dfc86c78" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16150982514292066854" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12254149111146773214" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b94ccabb4b16e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14276266716068569945" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee129681b99c3d0efb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ac1e4060fe9ba1e50" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5c15a64967fc029b4260061bae56dd489980e6b51b1c2e2a35493caa8c1bfffffffffffffffcbf1bc39b86c4acf63e8d4c6379d1a2b2ba7672dfc86c781be023d10671ec8a261baa0f7bb0fa927ade478b94ccabb4b16e1bc61f7cf079ffe35949ee129681b99c3d0efb497ac1e4060fe9ba1e50ffff", + "cborBytes": [ + 191, 27, 92, 21, 166, 73, 103, 252, 2, 155, 66, 96, 6, 27, 174, 86, 221, 72, 153, 128, 230, 181, 27, 28, 46, 42, + 53, 73, 60, 170, 140, 27, 255, 255, 255, 255, 255, 255, 255, 252, 191, 27, 195, 155, 134, 196, 172, 246, 62, 141, + 76, 99, 121, 209, 162, 178, 186, 118, 114, 223, 200, 108, 120, 27, 224, 35, 209, 6, 113, 236, 138, 38, 27, 170, + 15, 123, 176, 250, 146, 122, 222, 71, 139, 148, 204, 171, 180, 177, 110, 27, 198, 31, 124, 240, 121, 255, 227, 89, + 73, 238, 18, 150, 129, 185, 156, 61, 14, 251, 73, 122, 193, 228, 6, 15, 233, 186, 30, 80, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2121, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2910698618993961449" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b3a1c6b1" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8741793149120726431" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9710987929631494567" + } + } + } + ] + }, + "cborHex": "bf1b2864e0f8f15ae9e99f44b3a1c6b1ff1b7951168d9948c59f1b86c45c122bca91a7ff", + "cborBytes": [ + 191, 27, 40, 100, 224, 248, 241, 90, 233, 233, 159, 68, 179, 161, 198, 177, 255, 27, 121, 81, 22, 141, 153, 72, + 197, 159, 27, 134, 196, 92, 18, 43, 202, 145, 167, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2122, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3360587941033967315" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b2019e4629d19c9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17984828976503084122" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b2ea334ed5dca7ed3487b2019e4629d19c91bf996f2aa9a9e545aa0ff", + "cborBytes": [ + 191, 27, 46, 163, 52, 237, 93, 202, 126, 211, 72, 123, 32, 25, 228, 98, 157, 25, 201, 27, 249, 150, 242, 170, 154, + 158, 84, 90, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2123, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5249866277289053444" + } + } + } + ] + }, + "cborHex": "bf0e1b48db4590701dcd04ff", + "cborBytes": [191, 14, 27, 72, 219, 69, 144, 112, 29, 205, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2124, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5696763434459710417" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5141945313376592873" + } + } + } + ] + }, + "cborHex": "bf1b4f0ef8293067c3d11b475bdc04f24be3e9ff", + "cborBytes": [191, 27, 79, 14, 248, 41, 48, 103, 195, 209, 27, 71, 91, 220, 4, 242, 75, 227, 233, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2125, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e81bc1fed3c1c6c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11581578616558623813" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "186ac52bbf8aab43b53f2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8916203845074751735" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2893111708755625632" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd106b64" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b00869" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c635ddb8f34841d591cf3e88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1626183886196592919" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf04bf480e81bc1fed3c1c6c1ba0ba0863d23c9c454b186ac52bbf8aab43b53f2d1b7bbcb82832a710f741401b282665c54fe706a044bd106b6443b008694cc635ddb8f34841d591cf3e881b16915da0ec365117ff0780ff", + "cborBytes": [ + 191, 4, 191, 72, 14, 129, 188, 31, 237, 60, 28, 108, 27, 160, 186, 8, 99, 210, 60, 156, 69, 75, 24, 106, 197, 43, + 191, 138, 171, 67, 181, 63, 45, 27, 123, 188, 184, 40, 50, 167, 16, 247, 65, 64, 27, 40, 38, 101, 197, 79, 231, 6, + 160, 68, 189, 16, 107, 100, 67, 176, 8, 105, 76, 198, 53, 221, 184, 243, 72, 65, 213, 145, 207, 62, 136, 27, 22, + 145, 93, 160, 236, 54, 81, 23, 255, 7, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2126, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "145238908598905476" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "390096d857fe5414d60c38" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5320736211653124739" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb1a64a0b49d8952391d5966" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15261393111331487432" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5628917086296687895" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f1ce3f1c28d9f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9e0b0779a" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a4b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be" + }, + { + "_tag": "ByteArray", + "bytearray": "903a1166644ad0ac" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1033a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "652818592006044174" + } + } + ] + } + } + ] + }, + "cborHex": "bf0fbf1b0203fe04929a6a844b390096d857fe5414d60c381b49d70d64df2462834ccb1a64a0b49d8952391d59661bd3cb5c2d2a81bec81b4e1dee4446d74517472f1ce3f1c28d9f45d9e0b0779aff1bfffffffffffffffdd8669f1bffffffffffffffef80ff428a4b9f41be48903a1166644ad0acff43b1033a9f1b090f470cf74a7a0effff", + "cborBytes": [ + 191, 15, 191, 27, 2, 3, 254, 4, 146, 154, 106, 132, 75, 57, 0, 150, 216, 87, 254, 84, 20, 214, 12, 56, 27, 73, + 215, 13, 100, 223, 36, 98, 131, 76, 203, 26, 100, 160, 180, 157, 137, 82, 57, 29, 89, 102, 27, 211, 203, 92, 45, + 42, 129, 190, 200, 27, 78, 29, 238, 68, 70, 215, 69, 23, 71, 47, 28, 227, 241, 194, 141, 159, 69, 217, 224, 176, + 119, 154, 255, 27, 255, 255, 255, 255, 255, 255, 255, 253, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 239, 128, 255, 66, 138, 75, 159, 65, 190, 72, 144, 58, 17, 102, 100, 74, 208, 172, 255, 67, 177, 3, 58, 159, 27, + 9, 15, 71, 12, 247, 74, 122, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2127, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff213ff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 242, 19, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2128, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3726022405934408983" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "99488008" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2435261548255841895" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5170566980867614068" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7119136019053401180" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8440370880468643637" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11005469821065635485" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11019451324080530551" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb486cb384a47ac7f1f6252a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1408611977315179568" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11342076302537446911" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7104457297409930261" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10762600767095351668" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5680375002609400106" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12009398549735339200" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7522991044816314463" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da1a6b8c4401f7447244" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11518531386260072831" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59c9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15332128446350537737" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a8a7b5ce66e3a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17291381622867169495" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13792915507276064782" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15065699909691452427" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "77eae5b0b6" + }, + { + "_tag": "ByteArray", + "bytearray": "cfe4" + } + ] + } + } + ] + }, + "cborHex": "bf1b33b57da30adde5179f44994880081b21cbc979bef50e67ff1b47c18b4635fa65741b62cc407d935dd45c1b75223898c6e26f35d8669f1b98bb487e26e6269d9f1b98ecf4987f8724774ccb486cb384a47ac7f1f6252a1b138c6521563b5c301b9d67264de41ed5ff1b62981a455e0cf415ffff1b955c705ffe10a9741b4ed4bef80d8ab92a1ba6a9f45a3b10f4c0bf1b6867087f2ab8a05f4ada1a6b8c4401f74472441b9fda0b449c38297f4259c91bd4c6a996bf62b409477a8a7b5ce66e3a1beff753f8eab710d71bbf6a47936c2aa80eff1bd1141e3f11cb2c0b9f4577eae5b0b642cfe4ffff", + "cborBytes": [ + 191, 27, 51, 181, 125, 163, 10, 221, 229, 23, 159, 68, 153, 72, 128, 8, 27, 33, 203, 201, 121, 190, 245, 14, 103, + 255, 27, 71, 193, 139, 70, 53, 250, 101, 116, 27, 98, 204, 64, 125, 147, 93, 212, 92, 27, 117, 34, 56, 152, 198, + 226, 111, 53, 216, 102, 159, 27, 152, 187, 72, 126, 38, 230, 38, 157, 159, 27, 152, 236, 244, 152, 127, 135, 36, + 119, 76, 203, 72, 108, 179, 132, 164, 122, 199, 241, 246, 37, 42, 27, 19, 140, 101, 33, 86, 59, 92, 48, 27, 157, + 103, 38, 77, 228, 30, 213, 255, 27, 98, 152, 26, 69, 94, 12, 244, 21, 255, 255, 27, 149, 92, 112, 95, 254, 16, + 169, 116, 27, 78, 212, 190, 248, 13, 138, 185, 42, 27, 166, 169, 244, 90, 59, 16, 244, 192, 191, 27, 104, 103, 8, + 127, 42, 184, 160, 95, 74, 218, 26, 107, 140, 68, 1, 247, 68, 114, 68, 27, 159, 218, 11, 68, 156, 56, 41, 127, 66, + 89, 201, 27, 212, 198, 169, 150, 191, 98, 180, 9, 71, 122, 138, 123, 92, 230, 110, 58, 27, 239, 247, 83, 248, 234, + 183, 16, 215, 27, 191, 106, 71, 147, 108, 42, 168, 14, 255, 27, 209, 20, 30, 63, 17, 203, 44, 11, 159, 69, 119, + 234, 229, 176, 182, 66, 207, 228, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2129, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b96879ca70cb07c3b14540f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99" + } + } + ] + } + } + ] + }, + "cborHex": "bf41febf4cb96879ca70cb07c3b14540f94199ffff", + "cborBytes": [191, 65, 254, 191, 76, 185, 104, 121, 202, 112, 203, 7, 195, 177, 69, 64, 249, 65, 153, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2130, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2340446667433168232" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5867021901604853571" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8169549883864802179" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12422685457077478299" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2092199451363946171" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11728646850729915778" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12838506045355120016" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17554489007915473279" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f880f402f9b2908" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12696701997965483463" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11824128748675403789" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16292760136629109510" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11417312274296338536" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1250738551875926482" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4760614727368597656" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17622848462723358941" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8611" + }, + { + "_tag": "ByteArray", + "bytearray": "6bfe4fbe2e62db691b20d1" + }, + { + "_tag": "ByteArray", + "bytearray": "07cdaa86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16521919329728881355" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14269345630278807921" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b207aefd80419cd68a01b516bd955ae981743d8669f1b71601255d298638380ff1bac663e9ae183a39bbf1b1d08fc50e9d0aebb41dc1ba2c4862b71c2b5821bb22b893a1818d5901bf39e12beba4d197f480f880f402f9b2908ff1bb033bf3277b99dc71ba417be733348100d1be21b8305826c43069f1b9e7271059f23f8681b115b8416137379d21b421119df294c6098ff1bf490ef4e972a20dd9f4286114b6bfe4fbe2e62db691b20d14407cdaa861be549a617f02662cb1bc606e63f9e0a7171ffff", + "cborBytes": [ + 191, 27, 32, 122, 239, 216, 4, 25, 205, 104, 160, 27, 81, 107, 217, 85, 174, 152, 23, 67, 216, 102, 159, 27, 113, + 96, 18, 85, 210, 152, 99, 131, 128, 255, 27, 172, 102, 62, 154, 225, 131, 163, 155, 191, 27, 29, 8, 252, 80, 233, + 208, 174, 187, 65, 220, 27, 162, 196, 134, 43, 113, 194, 181, 130, 27, 178, 43, 137, 58, 24, 24, 213, 144, 27, + 243, 158, 18, 190, 186, 77, 25, 127, 72, 15, 136, 15, 64, 47, 155, 41, 8, 255, 27, 176, 51, 191, 50, 119, 185, + 157, 199, 27, 164, 23, 190, 115, 51, 72, 16, 13, 27, 226, 27, 131, 5, 130, 108, 67, 6, 159, 27, 158, 114, 113, 5, + 159, 35, 248, 104, 27, 17, 91, 132, 22, 19, 115, 121, 210, 27, 66, 17, 25, 223, 41, 76, 96, 152, 255, 27, 244, + 144, 239, 78, 151, 42, 32, 221, 159, 66, 134, 17, 75, 107, 254, 79, 190, 46, 98, 219, 105, 27, 32, 209, 68, 7, + 205, 170, 134, 27, 229, 73, 166, 23, 240, 38, 98, 203, 27, 198, 6, 230, 63, 158, 10, 113, 113, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2131, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3423482674185259918" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8809132897501326041" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4337286783606490987" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ad9ef920493" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3636382202806402808" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a1ee7fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebda7744f10917c343e0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bff07b322d639611037ff8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43698254" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84476729235d92" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10935125368784504080" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3c438103d4bd3b712" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "416157672390932543" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4690514293073269955" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5389285469658203373" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12091664762377691916" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10137283743409362984" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d69f889b8e12af709251df" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11715936130993322835" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2122836643819119417" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17556470729083643920" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16615037467607210292" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6450018065985014800" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11671237235975825163" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10428961715279575597" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9641623253193464310" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62a6e183ea89feab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9784568158359018255" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17249619180773123249" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10501228824674930100" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a590443806e82005ba8c3b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13649292497244709538" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7223" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15048938133244271182" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a96256fc9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15062125851935502716" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e737eeeaa" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2f82a75a91844b8e1b7a4053b28ec62ad91b3c31235989dc876bbf461ad9ef9204931b32770658d9d3fef8443a1ee7fd4aebda7744f10917c343e04c7bff07b322d639611037ff8f44436982544784476729235d921b97c15e960cc3451049e3c438103d4bd3b7121b05c67d32b96a383fff1b41180de5ec8654c3bf1b4aca9694bc26c4ed1ba7ce390978a1630c1b8caedddae141d8284bd69f889b8e12af709251df1ba2975dd663057b531b1d75d4ae270563391bf3a51d1c2492e8101be694788bea889934ff1b59831141e1e38c10d8669f1ba1f8906de3a6a70b80ff1b90bb1d6ccf633a2dbf1b85cded43e8be19f64862a6e183ea89feab1b87c9c4e62f965b0f1bef62f540a4bf24b11b91bbdbfa67d78db44ba590443806e82005ba8c3b1bbd6c07358dace2a24272231bd0d8917fdedada4e450a96256fc91bd1076ba8e6d7f17c452e737eeeaaffff", + "cborBytes": [ + 191, 27, 47, 130, 167, 90, 145, 132, 75, 142, 27, 122, 64, 83, 178, 142, 198, 42, 217, 27, 60, 49, 35, 89, 137, + 220, 135, 107, 191, 70, 26, 217, 239, 146, 4, 147, 27, 50, 119, 6, 88, 217, 211, 254, 248, 68, 58, 30, 231, 253, + 74, 235, 218, 119, 68, 241, 9, 23, 195, 67, 224, 76, 123, 255, 7, 179, 34, 214, 57, 97, 16, 55, 255, 143, 68, 67, + 105, 130, 84, 71, 132, 71, 103, 41, 35, 93, 146, 27, 151, 193, 94, 150, 12, 195, 69, 16, 73, 227, 196, 56, 16, 61, + 75, 211, 183, 18, 27, 5, 198, 125, 50, 185, 106, 56, 63, 255, 27, 65, 24, 13, 229, 236, 134, 84, 195, 191, 27, 74, + 202, 150, 148, 188, 38, 196, 237, 27, 167, 206, 57, 9, 120, 161, 99, 12, 27, 140, 174, 221, 218, 225, 65, 216, 40, + 75, 214, 159, 136, 155, 142, 18, 175, 112, 146, 81, 223, 27, 162, 151, 93, 214, 99, 5, 123, 83, 27, 29, 117, 212, + 174, 39, 5, 99, 57, 27, 243, 165, 29, 28, 36, 146, 232, 16, 27, 230, 148, 120, 139, 234, 136, 153, 52, 255, 27, + 89, 131, 17, 65, 225, 227, 140, 16, 216, 102, 159, 27, 161, 248, 144, 109, 227, 166, 167, 11, 128, 255, 27, 144, + 187, 29, 108, 207, 99, 58, 45, 191, 27, 133, 205, 237, 67, 232, 190, 25, 246, 72, 98, 166, 225, 131, 234, 137, + 254, 171, 27, 135, 201, 196, 230, 47, 150, 91, 15, 27, 239, 98, 245, 64, 164, 191, 36, 177, 27, 145, 187, 219, + 250, 103, 215, 141, 180, 75, 165, 144, 68, 56, 6, 232, 32, 5, 186, 140, 59, 27, 189, 108, 7, 53, 141, 172, 226, + 162, 66, 114, 35, 27, 208, 216, 145, 127, 222, 218, 218, 78, 69, 10, 150, 37, 111, 201, 27, 209, 7, 107, 168, 230, + 215, 241, 124, 69, 46, 115, 126, 238, 170, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2132, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6502c8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2468" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61c56663d20b02b40c03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4814104771448632564" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf436502c8bf0c4224684a61c56663d20b02b40c031b42cf22c88db574f4ffff", + "cborBytes": [ + 191, 67, 101, 2, 200, 191, 12, 66, 36, 104, 74, 97, 197, 102, 99, 210, 11, 2, 180, 12, 3, 27, 66, 207, 34, 200, + 141, 181, 116, 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2133, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f47d2278026" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a36e65bc74f329f434" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4357676695782145181" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf462f47d22780260249a36e65bc74f329f434d8669f1b3c7993ddea17bc9d80ffff", + "cborBytes": [ + 191, 70, 47, 71, 210, 39, 128, 38, 2, 73, 163, 110, 101, 188, 116, 243, 41, 244, 52, 216, 102, 159, 27, 60, 121, + 147, 221, 234, 23, 188, 157, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2134, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "87128e88" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2504172434304432563" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f9311fe9535b13d5dc83" + }, + { + "_tag": "ByteArray", + "bytearray": "2e807a4926bc1c4a" + }, + { + "_tag": "ByteArray", + "bytearray": "33d29b30768a9a64" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3804b6ee9fe94bf2866e9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11471452351132388050" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17997207870253432244" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c32" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "effeb59fb70ab78ae9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6536324337ca427c654a" + }, + { + "_tag": "ByteArray", + "bytearray": "3c1b9637" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14728709946016540974" + } + } + ] + } + } + ] + }, + "cborHex": "bf4487128e88d8669f1b22c09b8fb30a79b39f4af9311fe9535b13d5dc83482e807a4926bc1c4a4833d29b30768a9a64ffff4bb3804b6ee9fe94bf2866e9d8669f1b9f32c9228f10cad29f1bf9c2ed346751fdb4425c32ffff49effeb59fb70ab78ae99f4a6536324337ca427c654a443c1b96371bcc66e3a8ec14292effff", + "cborBytes": [ + 191, 68, 135, 18, 142, 136, 216, 102, 159, 27, 34, 192, 155, 143, 179, 10, 121, 179, 159, 74, 249, 49, 31, 233, + 83, 91, 19, 213, 220, 131, 72, 46, 128, 122, 73, 38, 188, 28, 74, 72, 51, 210, 155, 48, 118, 138, 154, 100, 255, + 255, 75, 179, 128, 75, 110, 233, 254, 148, 191, 40, 102, 233, 216, 102, 159, 27, 159, 50, 201, 34, 143, 16, 202, + 210, 159, 27, 249, 194, 237, 52, 103, 81, 253, 180, 66, 92, 50, 255, 255, 73, 239, 254, 181, 159, 183, 10, 183, + 138, 233, 159, 74, 101, 54, 50, 67, 55, 202, 66, 124, 101, 74, 68, 60, 27, 150, 55, 27, 204, 102, 227, 168, 236, + 20, 41, 46, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2135, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9768328415786283964" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbc18479e1d48662a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10714437319254147415" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17110152268547015045" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11108176136921887829" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5ea972cdd490d767889c" + }, + { + "_tag": "ByteArray", + "bytearray": "a12d039e95de602aca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4223740586206376522" + } + }, + { + "_tag": "ByteArray", + "bytearray": "514ded0d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1298198803684503216" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "03" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17953245667492971228" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b879012f0784bb3bc49cbc18479e1d48662a51b94b153f96e550157d8669f1bed7378d5b396c1859f1b9a282b57c7b334554a5ea972cdd490d767889c49a12d039e95de602aca1b3a9dbdaf503b324a44514ded0dffff1bfffffffffffffffe1b120420ef0d73aeb04103d8669f1bf926bdd0703d42dc80ffff", + "cborBytes": [ + 191, 27, 135, 144, 18, 240, 120, 75, 179, 188, 73, 203, 193, 132, 121, 225, 212, 134, 98, 165, 27, 148, 177, 83, + 249, 110, 85, 1, 87, 216, 102, 159, 27, 237, 115, 120, 213, 179, 150, 193, 133, 159, 27, 154, 40, 43, 87, 199, + 179, 52, 85, 74, 94, 169, 114, 205, 212, 144, 215, 103, 136, 156, 73, 161, 45, 3, 158, 149, 222, 96, 42, 202, 27, + 58, 157, 189, 175, 80, 59, 50, 74, 68, 81, 77, 237, 13, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 254, 27, + 18, 4, 32, 239, 13, 115, 174, 176, 65, 3, 216, 102, 159, 27, 249, 38, 189, 208, 112, 61, 66, 220, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2136, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee96cf" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11603211446062495147" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c2a686b16baebcfb68fc" + } + ] + } + } + ] + }, + "cborHex": "bf43ee96cfd8669f1ba106e355704d35ab9f4ac2a686b16baebcfb68fcffffff", + "cborBytes": [ + 191, 67, 238, 150, 207, 216, 102, 159, 27, 161, 6, 227, 85, 112, 77, 53, 171, 159, 74, 194, 166, 134, 177, 107, + 174, 188, 251, 104, 252, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2137, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2655201ed49" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf46e2655201ed4980ff", + "cborBytes": [191, 70, 226, 101, 82, 1, 237, 73, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2138, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c745fc663ecaba60023d302" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e083d428d3f41ba67c68d58" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "428f386e3e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10172572933405704003" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be595073f49dc03443aab6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "964293235516dfff7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a432c5218" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffc9e7fef3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6666018142940884929" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80fbdf01968c7e90" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9546532756448368010" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "427e750c3591685f4d892da3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "375a7ed6810269f10252e705" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "958123797b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aeef3b558907" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14531932711795638718" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4c2c745fc663ecaba60023d3024c0e083d428d3f41ba67c68d5845428f386e3e1b8d2c3d2fb3667f434bbe595073f49dc03443aab6bf49964293235516dfff7d456a432c5218ff45ffc9e7fef3bf1b5c82742ed44cefc14880fbdf01968c7e901b847c18f658bc558a4c427e750c3591685f4d892da34c375a7ed6810269f10252e70545958123797b46aeef3b5589071bc9abcbced27541beffff", + "cborBytes": [ + 191, 76, 44, 116, 95, 198, 99, 236, 171, 166, 0, 35, 211, 2, 76, 14, 8, 61, 66, 141, 63, 65, 186, 103, 198, 141, + 88, 69, 66, 143, 56, 110, 62, 27, 141, 44, 61, 47, 179, 102, 127, 67, 75, 190, 89, 80, 115, 244, 157, 192, 52, 67, + 170, 182, 191, 73, 150, 66, 147, 35, 85, 22, 223, 255, 125, 69, 106, 67, 44, 82, 24, 255, 69, 255, 201, 231, 254, + 243, 191, 27, 92, 130, 116, 46, 212, 76, 239, 193, 72, 128, 251, 223, 1, 150, 140, 126, 144, 27, 132, 124, 24, + 246, 88, 188, 85, 138, 76, 66, 126, 117, 12, 53, 145, 104, 95, 77, 137, 45, 163, 76, 55, 90, 126, 214, 129, 2, + 105, 241, 2, 82, 231, 5, 69, 149, 129, 35, 121, 123, 70, 174, 239, 59, 85, 137, 7, 27, 201, 171, 203, 206, 210, + 117, 65, 190, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2139, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5791947949170516327" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72e7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4ff6d099451ea2d79" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4477770741102041602" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f23a5538f00c40" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18350652788317176414" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6821469855057968970" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3e0cb487fbc7ac1d" + }, + { + "_tag": "ByteArray", + "bytearray": "db7071c84a29b7e5750d8a" + } + ] + } + } + ] + }, + "cborHex": "bf0ebf1b506121f903dc61674272e749a4ff6d099451ea2d791b3e243cc3c9065a0247f23a5538f00c401bfeaa9d7c2c2d425eff1bfffffffffffffff1d8669f1b5eaabab104c3ff4a9f483e0cb487fbc7ac1d4bdb7071c84a29b7e5750d8affffff", + "cborBytes": [ + 191, 14, 191, 27, 80, 97, 33, 249, 3, 220, 97, 103, 66, 114, 231, 73, 164, 255, 109, 9, 148, 81, 234, 45, 121, 27, + 62, 36, 60, 195, 201, 6, 90, 2, 71, 242, 58, 85, 56, 240, 12, 64, 27, 254, 170, 157, 124, 44, 45, 66, 94, 255, 27, + 255, 255, 255, 255, 255, 255, 255, 241, 216, 102, 159, 27, 94, 170, 186, 177, 4, 195, 255, 74, 159, 72, 62, 12, + 180, 135, 251, 199, 172, 29, 75, 219, 112, 113, 200, 74, 41, 183, 229, 117, 13, 138, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2140, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6862470725536654869" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14676095822326549201" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6322f850a48003e1ce4ffff4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17573592327106232778" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5768495078833194260" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5ffbd6dd18ab0b955d9b5c2d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12114285215232339387" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7235457330885800491" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14411099481998777627" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5f3c64c4152126151bcbabf764a35e4ad14c6322f850a48003e1ce4ffff4d8669f1bf3e1f11cd4b281ca9f1b500dcfb61e7105144c5ffbd6dd18ab0b955d9b5c2d1ba81e963811b0adbb1b6469821b7af1b22b1bc7fe82a0275a5d1bffffff", + "cborBytes": [ + 191, 27, 95, 60, 100, 196, 21, 33, 38, 21, 27, 203, 171, 247, 100, 163, 94, 74, 209, 76, 99, 34, 248, 80, 164, + 128, 3, 225, 206, 79, 255, 244, 216, 102, 159, 27, 243, 225, 241, 28, 212, 178, 129, 202, 159, 27, 80, 13, 207, + 182, 30, 113, 5, 20, 76, 95, 251, 214, 221, 24, 171, 11, 149, 93, 155, 92, 45, 27, 168, 30, 150, 56, 17, 176, 173, + 187, 27, 100, 105, 130, 27, 122, 241, 178, 43, 27, 199, 254, 130, 160, 39, 90, 93, 27, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2141, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "041b6879fb59031bc82d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11137824093182848483" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18321595280377662973" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3eef9558bd0c0cfa6229f341" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94cc3fd7af" + } + } + ] + }, + "cborHex": "bf4a041b6879fb59031bc82d9f1b9a91800084f36de31bfe4361d5e5624dfdff4c3eef9558bd0c0cfa6229f3414594cc3fd7afff", + "cborBytes": [ + 191, 74, 4, 27, 104, 121, 251, 89, 3, 27, 200, 45, 159, 27, 154, 145, 128, 0, 132, 243, 109, 227, 27, 254, 67, 97, + 213, 229, 98, 77, 253, 255, 76, 62, 239, 149, 88, 189, 12, 12, 250, 98, 41, 243, 65, 69, 148, 204, 63, 215, 175, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2142, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12588689584753751318" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f3028bb27f79bc" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a545ea90307fcfe5d01fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3059384348115355595" + } + } + } + ] + }, + "cborHex": "bf1baeb4027ac6e835169f47f3028bb27f79bcff4b7a545ea90307fcfe5d01fb1b2a751ddaf4ce47cbff", + "cborBytes": [ + 191, 27, 174, 180, 2, 122, 198, 232, 53, 22, 159, 71, 243, 2, 139, 178, 127, 121, 188, 255, 75, 122, 84, 94, 169, + 3, 7, 252, 254, 93, 1, 251, 27, 42, 117, 29, 218, 244, 206, 71, 203, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2143, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5b8a35bfa" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15672017411788501148" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10587557991728499515" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5489566675540572554" + } + } + ] + } + } + ] + }, + "cborHex": "bf45d5b8a35bfa9f1bd97e30cd5763f09c1b92ee8fe5efd34b3b1b4c2edbce726af98affff", + "cborBytes": [ + 191, 69, 213, 184, 163, 91, 250, 159, 27, 217, 126, 48, 205, 87, 99, 240, 156, 27, 146, 238, 143, 229, 239, 211, + 75, 59, 27, 76, 46, 219, 206, 114, 106, 249, 138, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2144, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18349539680866169249" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8833509817125798985" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5813766355176580142" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c57a288548e3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02ba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36a7a5e3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "833de58f5b758ffe27" + }, + { + "_tag": "ByteArray", + "bytearray": "e7fbe858e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + } + } + ] + }, + "cborHex": "bf079f1bfea6a91ea5f671a11b7a96ee6071b58449ff1b50aea5b2876ae42e46c57a288548e34202ba41fa4436a7a5e39f49833de58f5b758ffe2745e7fbe858e305ffff", + "cborBytes": [ + 191, 7, 159, 27, 254, 166, 169, 30, 165, 246, 113, 161, 27, 122, 150, 238, 96, 113, 181, 132, 73, 255, 27, 80, + 174, 165, 178, 135, 106, 228, 46, 70, 197, 122, 40, 133, 72, 227, 66, 2, 186, 65, 250, 68, 54, 167, 165, 227, 159, + 73, 131, 61, 229, 143, 91, 117, 143, 254, 39, 69, 231, 251, 232, 88, 227, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2145, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17bcf70762f0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4885745568911428102" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5f27688d8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15585802679874695590" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12268373699240450580" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4617bcf70762f0bf1b43cda7b589e78a0645c5f27688d81bd84be4f5d14331a61baa4204e0faf8da14ffff", + "cborBytes": [ + 191, 70, 23, 188, 247, 7, 98, 240, 191, 27, 67, 205, 167, 181, 137, 231, 138, 6, 69, 197, 242, 118, 136, 216, 27, + 216, 75, 228, 245, 209, 67, 49, 166, 27, 170, 66, 4, 224, 250, 248, 218, 20, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2146, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01bd0485fd7123" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d5b7f1ec1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "98c48f00b25f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "18" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c19efd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79d1626933f0a1ab65" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea326637020fa3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4776511532931665104" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4701bd0485fd7123a0458d5b7f1ec1bf4698c48f00b25f411843c19efd4979d1626933f0a1ab6547ea326637020fa31b424993eea1f2ccd0ffff", + "cborBytes": [ + 191, 71, 1, 189, 4, 133, 253, 113, 35, 160, 69, 141, 91, 127, 30, 193, 191, 70, 152, 196, 143, 0, 178, 95, 65, 24, + 67, 193, 158, 253, 73, 121, 209, 98, 105, 51, 240, 161, 171, 101, 71, 234, 50, 102, 55, 2, 15, 163, 27, 66, 73, + 147, 238, 161, 242, 204, 208, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2147, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13985119350578957184" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17781577813019282048" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17079849023220094333" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "743806df521da2eaf91d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + } + ] + }, + "cborHex": "bf1bc2151ff3f8b34b80d8669f1bf6c4dacf62fb4a809f1bed07d0319656157d06ffff4a743806df521da2eaf91d06ff", + "cborBytes": [ + 191, 27, 194, 21, 31, 243, 248, 179, 75, 128, 216, 102, 159, 27, 246, 196, 218, 207, 98, 251, 74, 128, 159, 27, + 237, 7, 208, 49, 150, 86, 21, 125, 6, 255, 255, 74, 116, 56, 6, 223, 82, 29, 162, 234, 249, 29, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2148, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "74c2efdb68a5e41ef52f6c0d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14398623012263354714" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10064818196988734106" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3900e30c2497b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15248924593816926130" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55065cde" + }, + { + "_tag": "ByteArray", + "bytearray": "3069190655592b7a7e1b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4282937153929615583" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5448862803423386377" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d339ff70a650c91608ea" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1426886510317080512" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "60e282" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9530219244076687037" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d72023" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5692659774658092775" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1661450538584599764" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2702042057578542862" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c74c2efdb68a5e41ef52f6c0d1bc7d22f57acb8e15a417c1b8bad6ad31066aa9a47a3900e30c2497b9f1bd39f1020352cf7b24455065cde4a3069190655592b7a7e1b1b3b700ca6474c18df1b4b9e3fd9b3e3db09ff4ad339ff70a650c91608ead8669f1b13cd51b89e3f0fc09f4360e2821b844223e8c2c85ebdffff43d72023d8669f1b4f0063e76fa69ee79f1b170ea8764c376cd41b257f94ef7222770effffff", + "cborBytes": [ + 191, 76, 116, 194, 239, 219, 104, 165, 228, 30, 245, 47, 108, 13, 27, 199, 210, 47, 87, 172, 184, 225, 90, 65, + 124, 27, 139, 173, 106, 211, 16, 102, 170, 154, 71, 163, 144, 14, 48, 194, 73, 123, 159, 27, 211, 159, 16, 32, 53, + 44, 247, 178, 68, 85, 6, 92, 222, 74, 48, 105, 25, 6, 85, 89, 43, 122, 126, 27, 27, 59, 112, 12, 166, 71, 76, 24, + 223, 27, 75, 158, 63, 217, 179, 227, 219, 9, 255, 74, 211, 57, 255, 112, 166, 80, 201, 22, 8, 234, 216, 102, 159, + 27, 19, 205, 81, 184, 158, 63, 15, 192, 159, 67, 96, 226, 130, 27, 132, 66, 35, 232, 194, 200, 94, 189, 255, 255, + 67, 215, 32, 35, 216, 102, 159, 27, 79, 0, 99, 231, 111, 166, 158, 231, 159, 27, 23, 14, 168, 118, 76, 55, 108, + 212, 27, 37, 127, 148, 239, 114, 34, 119, 14, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2149, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cdc035d00c3f903fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0c4463f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14993461479091540804" + } + } + } + ] + }, + "cborHex": "bf4113d905019f04ff491cdc035d00c3f903fe44e0c4463f41501bd01379c6c6c11344ff", + "cborBytes": [ + 191, 65, 19, 217, 5, 1, 159, 4, 255, 73, 28, 220, 3, 93, 0, 195, 249, 3, 254, 68, 224, 196, 70, 63, 65, 80, 27, + 208, 19, 121, 198, 198, 193, 19, 68, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2150, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8f0fa224a8d04210b06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3052436248767819540" + } + } + } + ] + }, + "cborHex": "bf4ac8f0fa224a8d04210b061b2a5c6e988354ef14ff", + "cborBytes": [191, 74, 200, 240, 250, 34, 74, 141, 4, 33, 11, 6, 27, 42, 92, 110, 152, 131, 84, 239, 20, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2151, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c696fcc7338024" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78434bedfb7f0d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "100d854d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9efda153f2abe965a2827b76" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1234771260837034785" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b34397c901a5ec36b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba86df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbb215c056" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7396951106328384900" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2e9f089" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5da70c4036b2fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e60124936049" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16103475450011742051" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d22ae442" + } + ] + } + } + ] + }, + "cborHex": "bf47c696fcc7338024bf415d4778434bedfb7f0d418c44100d854d4c9efda153f2abe965a2827b761b1122c9eb6d0d7b2149b34397c901a5ec36b543ba86df45bbb215c0561b66a73fd729a2d584ff44e2e9f089475da70c4036b2fb46e601249360499f1bdf7b099a172c6f6344d22ae442ffff", + "cborBytes": [ + 191, 71, 198, 150, 252, 199, 51, 128, 36, 191, 65, 93, 71, 120, 67, 75, 237, 251, 127, 13, 65, 140, 68, 16, 13, + 133, 77, 76, 158, 253, 161, 83, 242, 171, 233, 101, 162, 130, 123, 118, 27, 17, 34, 201, 235, 109, 13, 123, 33, + 73, 179, 67, 151, 201, 1, 165, 236, 54, 181, 67, 186, 134, 223, 69, 187, 178, 21, 192, 86, 27, 102, 167, 63, 215, + 41, 162, 213, 132, 255, 68, 226, 233, 240, 137, 71, 93, 167, 12, 64, 54, 178, 251, 70, 230, 1, 36, 147, 96, 73, + 159, 27, 223, 123, 9, 154, 23, 44, 111, 99, 68, 210, 42, 228, 66, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2152, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "179500f6f4b788a41e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4233866912405577150" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f315af7e1f254a6f89f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7372940371464263171" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9f749055c99d7885d704e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7209387145509080803" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7282" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6534103579746566206" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14880213793058925838" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b1ab5edc0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5907671015288830263" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c437ca259a598dee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e81e42d5de" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77ff9d4628a4e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f96c5a001de584227a29514b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d0d0fce37870c33" + } + } + ] + }, + "cborHex": "bf49179500f6f4b788a41e9f1b3ac1b7865c36ddbe4af315af7e1f254a6f89f81b6651f2344f4396034b9f749055c99d7885d704e51b640ce36970560ee3ff4272829f1b5aadcc962c67003e1bce81239b25252d0eff458b1ab5edc01b51fc437cfc29793741d448c437ca259a598dee45e81e42d5de4777ff9d4628a4e84cf96c5a001de584227a29514b483d0d0fce37870c33ff", + "cborBytes": [ + 191, 73, 23, 149, 0, 246, 244, 183, 136, 164, 30, 159, 27, 58, 193, 183, 134, 92, 54, 221, 190, 74, 243, 21, 175, + 126, 31, 37, 74, 111, 137, 248, 27, 102, 81, 242, 52, 79, 67, 150, 3, 75, 159, 116, 144, 85, 201, 157, 120, 133, + 215, 4, 229, 27, 100, 12, 227, 105, 112, 86, 14, 227, 255, 66, 114, 130, 159, 27, 90, 173, 204, 150, 44, 103, 0, + 62, 27, 206, 129, 35, 155, 37, 37, 45, 14, 255, 69, 139, 26, 181, 237, 192, 27, 81, 252, 67, 124, 252, 41, 121, + 55, 65, 212, 72, 196, 55, 202, 37, 154, 89, 141, 238, 69, 232, 30, 66, 213, 222, 71, 119, 255, 157, 70, 40, 164, + 232, 76, 249, 108, 90, 0, 29, 229, 132, 34, 122, 41, 81, 75, 72, 61, 13, 15, 206, 55, 135, 12, 51, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2153, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0002ff51198b36feff" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "091f98" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15562779689593951696" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "12d2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ade657f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1092789383847357217" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2fdcb2032f504e51963874" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "732f60b82a28" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8a8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7250115700729153254" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e8" + } + ] + } + } + ] + }, + "cborHex": "bf490002ff51198b36feffbf43091f981bd7fa19ac2be955d0ff4212d213444ade657f9f1b0f2a5e279e8a2b214b2fdcb2032f504e51963874ff46732f60b82a280942b8a8d8669f1bffffffffffffffec9f1b649d95d12a7186e6ffff41e79f41e8ffff", + "cborBytes": [ + 191, 73, 0, 2, 255, 81, 25, 139, 54, 254, 255, 191, 67, 9, 31, 152, 27, 215, 250, 25, 172, 43, 233, 85, 208, 255, + 66, 18, 210, 19, 68, 74, 222, 101, 127, 159, 27, 15, 42, 94, 39, 158, 138, 43, 33, 75, 47, 220, 178, 3, 47, 80, + 78, 81, 150, 56, 116, 255, 70, 115, 47, 96, 184, 42, 40, 9, 66, 184, 168, 216, 102, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 236, 159, 27, 100, 157, 149, 209, 42, 113, 134, 230, 255, 255, 65, 231, 159, 65, 232, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2154, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7283f8fe02970400" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8906949910344793967" + } + } + } + ] + }, + "cborHex": "bf487283f8fe029704001b7b9bd7c09e4c7f6fff", + "cborBytes": [191, 72, 114, 131, 248, 254, 2, 151, 4, 0, 27, 123, 155, 215, 192, 158, 76, 127, 111, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2155, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "001e06001804" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16365030780494505440" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11422614715517069880" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f28ac2f3b0ef404df4ca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7f5" + } + } + ] + }, + "cborHex": "bf14d8669f1bfffffffffffffff39f46001e060018041be31c44ca09b565e0ffff1b9e8547906c8b6a384af28ac2f3b0ef404df4ca1bfffffffffffffffe42c7f5ff", + "cborBytes": [ + 191, 20, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 70, 0, 30, 6, 0, 24, 4, 27, 227, 28, 68, + 202, 9, 181, 101, 224, 255, 255, 27, 158, 133, 71, 144, 108, 139, 106, 56, 74, 242, 138, 194, 243, 176, 239, 64, + 77, 244, 202, 27, 255, 255, 255, 255, 255, 255, 255, 254, 66, 199, 245, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2156, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a577773b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "61710688109329634" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "269824556947594842" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2084348605188510398" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2740216948922321861" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11910461548122334957" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1592086079570381639" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf44a577773bbf1b00db3d8b3b99fce21b03be9c014489de5a1b1ced1803585792be1b260734cbf8050bc51ba54a75ac76c7e6ed1b161839daa8a30b47ffff", + "cborBytes": [ + 191, 68, 165, 119, 119, 59, 191, 27, 0, 219, 61, 139, 59, 153, 252, 226, 27, 3, 190, 156, 1, 68, 137, 222, 90, 27, + 28, 237, 24, 3, 88, 87, 146, 190, 27, 38, 7, 52, 203, 248, 5, 11, 197, 27, 165, 74, 117, 172, 118, 199, 230, 237, + 27, 22, 24, 57, 218, 168, 163, 11, 71, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2157, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b6b0963fc7948cf41dc9d67" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "489967fa201a99b59a51f642" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07f80241309bdab952957a2f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48d4148c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39650ff72578a35bbd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7dcec00e5f58bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca7b90849a897be10af4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80711d629294ad8015" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3f7aeef11" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "911faf30f11543aed753c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ff88058898f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa9f8c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "946181752556905282" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4c3b6b0963fc7948cf41dc9d67bf4c489967fa201a99b59a51f6424c07f80241309bdab952957a2f4448d4148c4939650ff72578a35bbd477dcec00e5f58bf4aca7b90849a897be10af44980711d629294ad801545c3f7aeef114b911faf30f11543aed753c9465ff88058898f43aa9f8c1b0d21834a761c6342ffff", + "cborBytes": [ + 191, 76, 59, 107, 9, 99, 252, 121, 72, 207, 65, 220, 157, 103, 191, 76, 72, 153, 103, 250, 32, 26, 153, 181, 154, + 81, 246, 66, 76, 7, 248, 2, 65, 48, 155, 218, 185, 82, 149, 122, 47, 68, 72, 212, 20, 140, 73, 57, 101, 15, 247, + 37, 120, 163, 91, 189, 71, 125, 206, 192, 14, 95, 88, 191, 74, 202, 123, 144, 132, 154, 137, 123, 225, 10, 244, + 73, 128, 113, 29, 98, 146, 148, 173, 128, 21, 69, 195, 247, 174, 239, 17, 75, 145, 31, 175, 48, 241, 21, 67, 174, + 215, 83, 201, 70, 95, 248, 128, 88, 137, 143, 67, 170, 159, 140, 27, 13, 33, 131, 74, 118, 28, 99, 66, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2158, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e381c19fd3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11550902410313145303" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ca27983a5d45e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d53daf889c" + }, + { + "_tag": "ByteArray", + "bytearray": "352efe10d2044c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17164945680634208925" + } + }, + { + "_tag": "ByteArray", + "bytearray": "14" + }, + { + "_tag": "ByteArray", + "bytearray": "fdb4dbe947d752e43e03" + } + ] + } + } + ] + }, + "cborHex": "bf461e381c19fd3f1ba04d0c8af9eb1bd7472ca27983a5d45e9f45d53daf889c47352efe10d2044c1bee3623271b13e29d41144afdb4dbe947d752e43e03ffff", + "cborBytes": [ + 191, 70, 30, 56, 28, 25, 253, 63, 27, 160, 77, 12, 138, 249, 235, 27, 215, 71, 44, 162, 121, 131, 165, 212, 94, + 159, 69, 213, 61, 175, 136, 156, 71, 53, 46, 254, 16, 210, 4, 76, 27, 238, 54, 35, 39, 27, 19, 226, 157, 65, 20, + 74, 253, 180, 219, 233, 71, 215, 82, 228, 62, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2159, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3146107704098096720" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10136732327827281708" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "870629496288504899" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9106425018157800426" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10935731333091115489" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a79f24" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11600727184406334683" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c44f24f0f30425b2ef8fe4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17306676412138244583" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14438ef0" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13136669175717470530" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7625281568120892445" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18283854263488302908" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c921479c569658294" + } + } + ] + }, + "cborHex": "bf1b2ba93849bfe30650801b8cace8586f5d172cbf1b0c1518ea0140ec431b7e60854e5d069bea1b97c385b51c0141e143a79f241ba0fe0fe932c1ccdb4bc44f24f0f30425b2ef8fe41bf02daa808c21c9e74414438ef0ff1bb64ed303a676a1421b69d2712f8c2dec1d1bfdbd4c94a43b4f3c498c921479c569658294ff", + "cborBytes": [ + 191, 27, 43, 169, 56, 73, 191, 227, 6, 80, 128, 27, 140, 172, 232, 88, 111, 93, 23, 44, 191, 27, 12, 21, 24, 234, + 1, 64, 236, 67, 27, 126, 96, 133, 78, 93, 6, 155, 234, 27, 151, 195, 133, 181, 28, 1, 65, 225, 67, 167, 159, 36, + 27, 160, 254, 15, 233, 50, 193, 204, 219, 75, 196, 79, 36, 240, 243, 4, 37, 178, 239, 143, 228, 27, 240, 45, 170, + 128, 140, 33, 201, 231, 68, 20, 67, 142, 240, 255, 27, 182, 78, 211, 3, 166, 118, 161, 66, 27, 105, 210, 113, 47, + 140, 45, 236, 29, 27, 253, 189, 76, 148, 164, 59, 79, 60, 73, 140, 146, 20, 121, 197, 105, 101, 130, 148, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2160, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8200" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17897358946857890882" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10002256654719206965" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "80649e1be2d7f99f94a3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9495821484997677484" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6c013e" + }, + { + "_tag": "ByteArray", + "bytearray": "726eaf31a89ce275" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "785b4ea1dc359050" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf06d87c80084282001bf86031234d1fb442d8669f1b8acf276ee8d346359f4a80649e1be2d7f99f94a31b83c7ef545fcf11ac436c013e48726eaf31a89ce275ffff1bfffffffffffffffb48785b4ea1dc3590501bffffffffffffffff80ff", + "cborBytes": [ + 191, 6, 216, 124, 128, 8, 66, 130, 0, 27, 248, 96, 49, 35, 77, 31, 180, 66, 216, 102, 159, 27, 138, 207, 39, 110, + 232, 211, 70, 53, 159, 74, 128, 100, 158, 27, 226, 215, 249, 159, 148, 163, 27, 131, 199, 239, 84, 95, 207, 17, + 172, 67, 108, 1, 62, 72, 114, 110, 175, 49, 168, 156, 226, 117, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, + 251, 72, 120, 91, 78, 161, 220, 53, 144, 80, 27, 255, 255, 255, 255, 255, 255, 255, 255, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2161, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3328866622764522457" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a50484df0824a1cbae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6770360200243364927" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06566210992c6a51" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9140043747761941829" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14078402543708476460" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11915411048709520023" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "857e47b5f7" + } + } + ] + }, + "cborHex": "bf1b2e32828e6a889bd949a50484df0824a1cbae1b5df526bb30f2c43f4806566210992c6a511b7ed7f55cd0e16d451bc3608885deb3142c1ba55c0b37df187a9745857e47b5f7ff", + "cborBytes": [ + 191, 27, 46, 50, 130, 142, 106, 136, 155, 217, 73, 165, 4, 132, 223, 8, 36, 161, 203, 174, 27, 93, 245, 38, 187, + 48, 242, 196, 63, 72, 6, 86, 98, 16, 153, 44, 106, 81, 27, 126, 215, 245, 92, 208, 225, 109, 69, 27, 195, 96, 136, + 133, 222, 179, 20, 44, 27, 165, 92, 11, 55, 223, 24, 122, 151, 69, 133, 126, 71, 181, 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2162, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15829713566673269322" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17512463942894083030" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c02986e0e11c5fdaa" + } + } + ] + }, + "cborHex": "bf1bdbae709e95bdf24aa01bf308c52bca09dbd6496c02986e0e11c5fdaaff", + "cborBytes": [ + 191, 27, 219, 174, 112, 158, 149, 189, 242, 74, 160, 27, 243, 8, 197, 43, 202, 9, 219, 214, 73, 108, 2, 152, 110, + 14, 17, 197, 253, 170, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2163, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "38dd6782645c0dacbc68048a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3285499484437665245" + } + } + } + ] + }, + "cborHex": "bf4c38dd6782645c0dacbc68048a1b2d98705fafa2d5ddff", + "cborBytes": [ + 191, 76, 56, 221, 103, 130, 100, 92, 13, 172, 188, 104, 4, 138, 27, 45, 152, 112, 95, 175, 162, 213, 221, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2164, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3781386327352288487" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "588848fe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12023008821909214700" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15473451430388685474" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5fe8efc2d568" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d285516da2f33a60053ded8f" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17570225607808159113" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1427030122024378316" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7d8dc62aa436c2c116620355" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7456785110885822353" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16220597976277226411" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bab99e0cc8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7318910489626555435" + } + } + } + ] + }, + "cborHex": "bf1b347a2ed4805a24e79f44588848fe1ba6da4ed2a94955ecff1bd6bcbe181593daa2bf465fe8efc2d5684cd285516da2f33a60053ded8fff1bf3d5fb1968e08d89d8669f1b13cdd455d30b9fcc9f4c7d8dc62aa436c2c1166203551b677bd28cf4c56f911be11b23eb446c93abffff45bab99e0cc81b6591fe502512342bff", + "cborBytes": [ + 191, 27, 52, 122, 46, 212, 128, 90, 36, 231, 159, 68, 88, 136, 72, 254, 27, 166, 218, 78, 210, 169, 73, 85, 236, + 255, 27, 214, 188, 190, 24, 21, 147, 218, 162, 191, 70, 95, 232, 239, 194, 213, 104, 76, 210, 133, 81, 109, 162, + 243, 58, 96, 5, 61, 237, 143, 255, 27, 243, 213, 251, 25, 104, 224, 141, 137, 216, 102, 159, 27, 19, 205, 212, 85, + 211, 11, 159, 204, 159, 76, 125, 141, 198, 42, 164, 54, 194, 193, 22, 98, 3, 85, 27, 103, 123, 210, 140, 244, 197, + 111, 145, 27, 225, 27, 35, 235, 68, 108, 147, 171, 255, 255, 69, 186, 185, 158, 12, 200, 27, 101, 145, 254, 80, + 37, 18, 52, 43, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2165, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dcf7" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff342dcf7ff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 243, 66, 220, 247, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2166, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16252773879676296755" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17727349145501958790" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13403918494603710384" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a53d5658c4e3" + }, + { + "_tag": "ByteArray", + "bytearray": "fb7021" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8908908878202977276" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68df" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9feb212e7c5c599f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1616448985412332704" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7087238918787238896" + } + }, + { + "_tag": "ByteArray", + "bytearray": "997a144e20ca5589" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fff04d9a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5ced3e76c75b052262" + }, + { + "_tag": "ByteArray", + "bytearray": "74206843b4b1738d4d09" + }, + { + "_tag": "ByteArray", + "bytearray": "a344485fb9305350de8b8bde" + }, + { + "_tag": "ByteArray", + "bytearray": "ddc9dc50d74010b7" + }, + { + "_tag": "ByteArray", + "bytearray": "c1d664e01a" + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffea01bffffffffffffffffd8669f1be18d73bb90da5e339f1bf604321fd2f802861bba0448da95248fb046a53d5658c4e343fb70211b7ba2cd6c5d9cbbfcffff4268df9f489feb212e7c5c599f1b166ec7c9b50aeca01b625aee3f30a30bf048997a144e20ca5589ff44fff04d9ad9050b9f495ced3e76c75b0522624a74206843b4b1738d4d094ca344485fb9305350de8b8bde48ddc9dc50d74010b745c1d664e01affff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 254, 160, 27, 255, 255, 255, 255, 255, 255, 255, 255, 216, 102, 159, + 27, 225, 141, 115, 187, 144, 218, 94, 51, 159, 27, 246, 4, 50, 31, 210, 248, 2, 134, 27, 186, 4, 72, 218, 149, 36, + 143, 176, 70, 165, 61, 86, 88, 196, 227, 67, 251, 112, 33, 27, 123, 162, 205, 108, 93, 156, 187, 252, 255, 255, + 66, 104, 223, 159, 72, 159, 235, 33, 46, 124, 92, 89, 159, 27, 22, 110, 199, 201, 181, 10, 236, 160, 27, 98, 90, + 238, 63, 48, 163, 11, 240, 72, 153, 122, 20, 78, 32, 202, 85, 137, 255, 68, 255, 240, 77, 154, 217, 5, 11, 159, + 73, 92, 237, 62, 118, 199, 91, 5, 34, 98, 74, 116, 32, 104, 67, 180, 177, 115, 141, 77, 9, 76, 163, 68, 72, 95, + 185, 48, 83, 80, 222, 139, 139, 222, 72, 221, 201, 220, 80, 215, 64, 16, 183, 69, 193, 214, 100, 224, 26, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2167, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3897837686186775912" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16933645243860357922" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d78b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cffc11b701a1a9" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3617e6b9554b15681beb0064a188c7932242d78bbf0e47cffc11b701a1a9ffff", + "cborBytes": [ + 191, 27, 54, 23, 230, 185, 85, 75, 21, 104, 27, 235, 0, 100, 161, 136, 199, 147, 34, 66, 215, 139, 191, 14, 71, + 207, 252, 17, 183, 1, 161, 169, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2168, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6beb17114004bc21" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13289742149500622350" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "66" + }, + { + "_tag": "ByteArray", + "bytearray": "2d87bdbc19779473e808d40b" + }, + { + "_tag": "ByteArray", + "bytearray": "44" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71049b4754c8edeb708cfe" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9071904216844042105" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39792087" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1658890416147904980" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7a9896fd205" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6439600668042538960" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "590690320279080212" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fee6f5687155c4" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13457450002113428049" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10842533034231795925" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c" + } + ] + } + } + ] + }, + "cborHex": "bf486beb17114004bc21d8669f1bb86ea612a985560e9f41664c2d87bdbc19779473e808d40b4144ffff4b71049b4754c8edeb708cfebf1b7de5e0d1f95b7f794439792087ff41ab1b1705900b57cbb9d446e7a9896fd205bf1b595e0eb06a0b2fd01b08328db7787f0d14ff47fee6f5687155c49f1bbac27779ee8cfa511b96786a5932d310d5411cffff", + "cborBytes": [ + 191, 72, 107, 235, 23, 17, 64, 4, 188, 33, 216, 102, 159, 27, 184, 110, 166, 18, 169, 133, 86, 14, 159, 65, 102, + 76, 45, 135, 189, 188, 25, 119, 148, 115, 232, 8, 212, 11, 65, 68, 255, 255, 75, 113, 4, 155, 71, 84, 200, 237, + 235, 112, 140, 254, 191, 27, 125, 229, 224, 209, 249, 91, 127, 121, 68, 57, 121, 32, 135, 255, 65, 171, 27, 23, 5, + 144, 11, 87, 203, 185, 212, 70, 231, 169, 137, 111, 210, 5, 191, 27, 89, 94, 14, 176, 106, 11, 47, 208, 27, 8, 50, + 141, 183, 120, 127, 13, 20, 255, 71, 254, 230, 245, 104, 113, 85, 196, 159, 27, 186, 194, 119, 121, 238, 140, 250, + 81, 27, 150, 120, 106, 89, 50, 211, 16, 213, 65, 28, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2169, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "700026784859113225" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "911244" + }, + { + "_tag": "ByteArray", + "bytearray": "e9f01ad57b26" + }, + { + "_tag": "ByteArray", + "bytearray": "868714c8ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6233873607214802657" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12509210821737246882" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5102816288276869542" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23a03aa3143afe69e5bb23c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8086958201021732123" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9f277bca8db2f0f50fbc9f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "973812646502203638" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8696935954131282190" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5139014152953313589" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "319523716703533504" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10373073951255955419" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b364bf" + }, + { + "_tag": "ByteArray", + "bytearray": "445b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8803337341138632566" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e75b41c926ed" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16350721802274017261" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b09b6fea6e4c947099f4391124446e9f01ad57b2645868714c8ed1b56832b046cb8a6e11bad99a4f73a1ef0a2ff1b46d0d860d8d1f1a64c23a03aa3143afe69e5bb23c11b703aa5a32555151b9f4b9f277bca8db2f0f50fbc9f1b0d83ad71488c00f6ff1b78b1b92c0451690e9f1b47517224fa7cb9351b046f2d209f6d39c01b8ff48fccbd7807db43b364bf42445bff1b7a2bbcab707fff7646e75b41c926ed1be2e96ed96dc70feda0ff", + "cborBytes": [ + 191, 27, 9, 182, 254, 166, 228, 201, 71, 9, 159, 67, 145, 18, 68, 70, 233, 240, 26, 213, 123, 38, 69, 134, 135, + 20, 200, 237, 27, 86, 131, 43, 4, 108, 184, 166, 225, 27, 173, 153, 164, 247, 58, 30, 240, 162, 255, 27, 70, 208, + 216, 96, 216, 209, 241, 166, 76, 35, 160, 58, 163, 20, 58, 254, 105, 229, 187, 35, 193, 27, 112, 58, 165, 163, 37, + 85, 21, 27, 159, 75, 159, 39, 123, 202, 141, 178, 240, 245, 15, 188, 159, 27, 13, 131, 173, 113, 72, 140, 0, 246, + 255, 27, 120, 177, 185, 44, 4, 81, 105, 14, 159, 27, 71, 81, 114, 36, 250, 124, 185, 53, 27, 4, 111, 45, 32, 159, + 109, 57, 192, 27, 143, 244, 143, 204, 189, 120, 7, 219, 67, 179, 100, 191, 66, 68, 91, 255, 27, 122, 43, 188, 171, + 112, 127, 255, 118, 70, 231, 91, 65, 201, 38, 237, 27, 226, 233, 110, 217, 109, 199, 15, 237, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2170, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "169f416b8ca57c2095db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a90b8ddfdf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34bccd0ea9e0054423" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5313883372641412224" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a33bccab7d32c6" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c67da2af193929ce5f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29076c9b611ce31d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10161080245525873992" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5068" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4595019077977326085" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cd09895546e2d9677d472b5c" + }, + { + "_tag": "ByteArray", + "bytearray": "9f0a50" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ea81" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11507431962523218138" + } + }, + { + "_tag": "ByteArray", + "bytearray": "16931535867ddc587db733" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7ffac04a20e716b30b8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6607321919846539325" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4a169f416b8ca57c2095db45a90b8ddfdf4934bccd0ea9e0054423d8669f1b49beb4c5f42564809f47a33bccab7d32c6ffff4a3c67da2af193929ce5f94829076c9b611ce31d415ad8669f1b8d0368a5c8cf05489f4250681b3fc4c98186fb42054ccd09895546e2d9677d472b5c439f0a50ffff417b9f42ea811b9fb29c66a32c30da4b16931535867ddc587db733ff4ab7ffac04a20e716b30b8d8669f1b5bb1ec476d1ae03d80ffff", + "cborBytes": [ + 191, 74, 22, 159, 65, 107, 140, 165, 124, 32, 149, 219, 69, 169, 11, 141, 223, 223, 73, 52, 188, 205, 14, 169, + 224, 5, 68, 35, 216, 102, 159, 27, 73, 190, 180, 197, 244, 37, 100, 128, 159, 71, 163, 59, 204, 171, 125, 50, 198, + 255, 255, 74, 60, 103, 218, 42, 241, 147, 146, 156, 229, 249, 72, 41, 7, 108, 155, 97, 28, 227, 29, 65, 90, 216, + 102, 159, 27, 141, 3, 104, 165, 200, 207, 5, 72, 159, 66, 80, 104, 27, 63, 196, 201, 129, 134, 251, 66, 5, 76, + 205, 9, 137, 85, 70, 226, 217, 103, 125, 71, 43, 92, 67, 159, 10, 80, 255, 255, 65, 123, 159, 66, 234, 129, 27, + 159, 178, 156, 102, 163, 44, 48, 218, 75, 22, 147, 21, 53, 134, 125, 220, 88, 125, 183, 51, 255, 74, 183, 255, + 172, 4, 162, 14, 113, 107, 48, 184, 216, 102, 159, 27, 91, 177, 236, 71, 109, 26, 224, 61, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2171, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "71fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "455ba2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d75b34885ddd350e3b" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4271fa43455ba249d75b34885ddd350e3ba0ff", + "cborBytes": [191, 66, 113, 250, 67, 69, 91, 162, 73, 215, 91, 52, 136, 93, 221, 53, 14, 59, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2172, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d9ca612453cf9442450" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c755f151fc1ff945eb4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11199204852871596557" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "03" + }, + { + "_tag": "ByteArray", + "bytearray": "ed7cb4" + } + ] + } + } + ] + }, + "cborHex": "bf4a2d9ca612453cf94424504a8c755f151fc1ff945eb44145d8669f1b9b6b917a4e3e0a0d9f410343ed7cb4ffffff", + "cborBytes": [ + 191, 74, 45, 156, 166, 18, 69, 60, 249, 68, 36, 80, 74, 140, 117, 95, 21, 31, 193, 255, 148, 94, 180, 65, 69, 216, + 102, 159, 27, 155, 107, 145, 122, 78, 62, 10, 13, 159, 65, 3, 67, 237, 124, 180, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2173, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0304006f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10075666972797088222" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3983b20504ec0b523206" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d02153d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57e3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5976705557727580642" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "818933b910e6db44bbe862" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2702476751027234746" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff040000f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14868840448402041264" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fef801018c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dd0069a329d3e51a343d" + } + ] + } + } + ] + }, + "cborHex": "bf440304006f9f1b8bd3f5ba84b4b1deff4a3983b20504ec0b523206445d02153d4257e3d8669f1bffffffffffffffeb9f1b52f18609ef7491e2ffff4b818933b910e6db44bbe8629f1b2581204966bae7ba45ff040000f81bce58bb9bfcf6a9b01bfffffffffffffff3ff45fef801018cd8669f1bfffffffffffffff19f4add0069a329d3e51a343dffffff", + "cborBytes": [ + 191, 68, 3, 4, 0, 111, 159, 27, 139, 211, 245, 186, 132, 180, 177, 222, 255, 74, 57, 131, 178, 5, 4, 236, 11, 82, + 50, 6, 68, 93, 2, 21, 61, 66, 87, 227, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 27, 82, + 241, 134, 9, 239, 116, 145, 226, 255, 255, 75, 129, 137, 51, 185, 16, 230, 219, 68, 187, 232, 98, 159, 27, 37, + 129, 32, 73, 102, 186, 231, 186, 69, 255, 4, 0, 0, 248, 27, 206, 88, 187, 155, 252, 246, 169, 176, 27, 255, 255, + 255, 255, 255, 255, 255, 243, 255, 69, 254, 248, 1, 1, 140, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 241, 159, 74, 221, 0, 105, 163, 41, 211, 229, 26, 52, 61, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2174, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11754765452029552567" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2119309960818799817" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e200f7554818efb60" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2497190706139536741" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42dff4c8dab99cfef2448c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8592645768638406818" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "304b266d4083316b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16946184982107803925" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1944bbb531e91929fc" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12593572138920132353" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1654826264172478818" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16744708346097844563" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a8462234fc479a0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43" + } + } + ] + } + } + ] + }, + "cborHex": "bf1ba32150e6324167b7bf1b1d694d2e478d34c9498e200f7554818efb601b22a7cdb76fda9d654b42dff4c8dab99cfef2448c1b773f35cd0074a0a248304b266d4083316b1beb2cf174dc985115491944bbb531e91929fcff1baec55b2301973f01bf1b16f71fb838fcc1621be861278604ae4153480a8462234fc479a04143ffff", + "cborBytes": [ + 191, 27, 163, 33, 80, 230, 50, 65, 103, 183, 191, 27, 29, 105, 77, 46, 71, 141, 52, 201, 73, 142, 32, 15, 117, 84, + 129, 142, 251, 96, 27, 34, 167, 205, 183, 111, 218, 157, 101, 75, 66, 223, 244, 200, 218, 185, 156, 254, 242, 68, + 140, 27, 119, 63, 53, 205, 0, 116, 160, 162, 72, 48, 75, 38, 109, 64, 131, 49, 107, 27, 235, 44, 241, 116, 220, + 152, 81, 21, 73, 25, 68, 187, 181, 49, 233, 25, 41, 252, 255, 27, 174, 197, 91, 35, 1, 151, 63, 1, 191, 27, 22, + 247, 31, 184, 56, 252, 193, 98, 27, 232, 97, 39, 134, 4, 174, 65, 83, 72, 10, 132, 98, 35, 79, 196, 121, 160, 65, + 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2175, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "229554754650778331" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5022617802180774933" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18275254522667780791" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10552922982207989334" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8305914907663310431" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e63db63d795d027e3bd9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15571644330279057171" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12832972110588275928" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15613786208634637490" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3124248583424705655" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16287519976317145687" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8079659690020364126" + } + } + } + ] + }, + "cborHex": "bf1b032f8ad547762adb9f1b45b3ec47b589cc151bfd9ebf297376cab71b9273838a60902656ff1b7344899a15e49e5f4ae63db63d795d027e3bd91bd81998042b0237131bb217e024801becd81bd8af4fd4d48f8cb21b2b5b8f889d0c04771be208e51f9c7652571b7020b7ae21b4df5eff", + "cborBytes": [ + 191, 27, 3, 47, 138, 213, 71, 118, 42, 219, 159, 27, 69, 179, 236, 71, 181, 137, 204, 21, 27, 253, 158, 191, 41, + 115, 118, 202, 183, 27, 146, 115, 131, 138, 96, 144, 38, 86, 255, 27, 115, 68, 137, 154, 21, 228, 158, 95, 74, + 230, 61, 182, 61, 121, 93, 2, 126, 59, 217, 27, 216, 25, 152, 4, 43, 2, 55, 19, 27, 178, 23, 224, 36, 128, 27, + 236, 216, 27, 216, 175, 79, 212, 212, 143, 140, 178, 27, 43, 91, 143, 136, 157, 12, 4, 119, 27, 226, 8, 229, 31, + 156, 118, 82, 87, 27, 112, 32, 183, 174, 33, 180, 223, 94, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2176, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "814050947590088661" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae05fe28416103dd5f390084" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b5dddd1a91f6d053f28e8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "56f1fe721127fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2000412468170214442" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6148" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f1254af2669ed9017185a74" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7656221824994327924" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7afc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16926143676043434707" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87cb5ad2807b86" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "599eced53ecef611" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3823d476eb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b084" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0b4c1706182d67d54cae05fe28416103dd5f3900844b3b5dddd1a91f6d053f28e8bf4756f1fe721127fc1b1bc2e48a898c4c2a4261484c6f1254af2669ed9017185a74416f1b6a405d2f78613d74427afc1beae5bdfeabcb1ad34787cb5ad2807b8648599eced53ecef61146b3823d476eb642b084ffff", + "cborBytes": [ + 191, 27, 11, 76, 23, 6, 24, 45, 103, 213, 76, 174, 5, 254, 40, 65, 97, 3, 221, 95, 57, 0, 132, 75, 59, 93, 221, + 209, 169, 31, 109, 5, 63, 40, 232, 191, 71, 86, 241, 254, 114, 17, 39, 252, 27, 27, 194, 228, 138, 137, 140, 76, + 42, 66, 97, 72, 76, 111, 18, 84, 175, 38, 105, 237, 144, 23, 24, 90, 116, 65, 111, 27, 106, 64, 93, 47, 120, 97, + 61, 116, 66, 122, 252, 27, 234, 229, 189, 254, 171, 203, 26, 211, 71, 135, 203, 90, 210, 128, 123, 134, 72, 89, + 158, 206, 213, 62, 206, 246, 17, 70, 179, 130, 61, 71, 110, 182, 66, 176, 132, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2177, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aee13000" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18387fcd477e2425f4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c05670500f461016b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8584286745060315912" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5164d8b3d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4611116943899324323" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc047f0403000677758904" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e0eb54fcac7613250" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd3dd0edb5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ce3f0c07cd9115fc5a84b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7432805137457321837" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73ce608cbf55e02742" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b0dfd71855c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b31f4a9dc7c5580ee4a8ca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5352518068252917042" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b679e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ebd58a4ba9e45fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4a5470a6b3bccb9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34b7e502c1368ddad965c4fb" + } + } + ] + } + } + ] + }, + "cborHex": "bf44aee13000bf4918387fcd477e2425f41bfffffffffffffff2491c05670500f461016b1b77218350296a1308455164d8b3d51b3ffdfa6e02e76fa3ff4bfc047f0403000677758904bf490e0eb54fcac761325045fd3dd0edb54b4ce3f0c07cd9115fc5a84b1b6726a0e44ed7976d4973ce608cbf55e02742460b0dfd71855c4bb31f4a9dc7c5580ee4a8ca1b4a47f6d300133d3243b679e6483ebd58a4ba9e45fe48d4a5470a6b3bccb94c34b7e502c1368ddad965c4fbffff", + "cborBytes": [ + 191, 68, 174, 225, 48, 0, 191, 73, 24, 56, 127, 205, 71, 126, 36, 37, 244, 27, 255, 255, 255, 255, 255, 255, 255, + 242, 73, 28, 5, 103, 5, 0, 244, 97, 1, 107, 27, 119, 33, 131, 80, 41, 106, 19, 8, 69, 81, 100, 216, 179, 213, 27, + 63, 253, 250, 110, 2, 231, 111, 163, 255, 75, 252, 4, 127, 4, 3, 0, 6, 119, 117, 137, 4, 191, 73, 14, 14, 181, 79, + 202, 199, 97, 50, 80, 69, 253, 61, 208, 237, 181, 75, 76, 227, 240, 192, 124, 217, 17, 95, 197, 168, 75, 27, 103, + 38, 160, 228, 78, 215, 151, 109, 73, 115, 206, 96, 140, 191, 85, 224, 39, 66, 70, 11, 13, 253, 113, 133, 92, 75, + 179, 31, 74, 157, 199, 197, 88, 14, 228, 168, 202, 27, 74, 71, 246, 211, 0, 19, 61, 50, 67, 182, 121, 230, 72, 62, + 189, 88, 164, 186, 158, 69, 254, 72, 212, 165, 71, 10, 107, 59, 204, 185, 76, 52, 183, 229, 2, 193, 54, 141, 218, + 217, 101, 196, 251, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2178, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "120d1468c973de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5771482602455513239" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71cb7e387cd13f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13460174455263563088" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13531072134396958961" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1374082362222005723" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1360199841269421357" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ac81f467092" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "424532530407727867" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "948aba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17802428705473730043" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b88aff999a00a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20bab4" + } + } + ] + }, + "cborHex": "bf47120d1468c973de1b50186cd92ab538974771cb7e387cd13f9f1bbacc255a1cc58d501bbbc8066a60ead8f11b1311b8a0d45f4ddb1b12e0668c8a68152dff468ac81f4670921b05e43e164e8ce2fb43948aba1bf70eee9618fa95fb47b88aff999a00a44320bab4ff", + "cborBytes": [ + 191, 71, 18, 13, 20, 104, 201, 115, 222, 27, 80, 24, 108, 217, 42, 181, 56, 151, 71, 113, 203, 126, 56, 124, 209, + 63, 159, 27, 186, 204, 37, 90, 28, 197, 141, 80, 27, 187, 200, 6, 106, 96, 234, 216, 241, 27, 19, 17, 184, 160, + 212, 95, 77, 219, 27, 18, 224, 102, 140, 138, 104, 21, 45, 255, 70, 138, 200, 31, 70, 112, 146, 27, 5, 228, 62, + 22, 78, 140, 226, 251, 67, 148, 138, 186, 27, 247, 14, 238, 150, 24, 250, 149, 251, 71, 184, 138, 255, 153, 154, + 0, 164, 67, 32, 186, 180, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2179, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00082826f3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "950880917590246785" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "85f4a24ab5479d8f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10186754652247628590" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "03b90d1fb4af6ac0a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "832161403305984066" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "188cb00f5c5d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7034708384148278138" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18208454428984904960" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8760493601079319122" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e952e213c3e7c7fd47f180ac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12116341674192675410" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17829754004609236762" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0411f2d825" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f4b44d040479c380efc" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2404ad8837e5d404dc2b3e62" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0597" + }, + { + "_tag": "ByteArray", + "bytearray": "8e7baaea7b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13012724958622959572" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd87fe928b6c6a200e82c3a4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12442920409676712832" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9719435147592248407" + } + } + ] + } + } + ] + }, + "cborHex": "bf4500082826f3d8669f1b0d32352814aa05819f4885f4a24ab5479d8f1b8d5e9f626d471b2effff4903b90d1fb4af6ac0a41b0b8c6e6327d8004246188cb00f5c5dbf1b61a04e00ff9ecb7a1bfcb16cd4a4888d001b79938683dd6a5a524ce952e213c3e7c7fd47f180ac1ba825e48ebb8422521bf77002cd1554ff1a450411f2d8254a8f4b44d040479c380efcff4c2404ad8837e5d404dc2b3e629f420597458e7baaea7b1bb4967c67ce94c7d4ff4cfd87fe928b6c6a200e82c3a4d8669f1bacae222feb3d0b809f1b86e25ec55daeac57ffffff", + "cborBytes": [ + 191, 69, 0, 8, 40, 38, 243, 216, 102, 159, 27, 13, 50, 53, 40, 20, 170, 5, 129, 159, 72, 133, 244, 162, 74, 181, + 71, 157, 143, 27, 141, 94, 159, 98, 109, 71, 27, 46, 255, 255, 73, 3, 185, 13, 31, 180, 175, 106, 192, 164, 27, + 11, 140, 110, 99, 39, 216, 0, 66, 70, 24, 140, 176, 15, 92, 93, 191, 27, 97, 160, 78, 0, 255, 158, 203, 122, 27, + 252, 177, 108, 212, 164, 136, 141, 0, 27, 121, 147, 134, 131, 221, 106, 90, 82, 76, 233, 82, 226, 19, 195, 231, + 199, 253, 71, 241, 128, 172, 27, 168, 37, 228, 142, 187, 132, 34, 82, 27, 247, 112, 2, 205, 21, 84, 255, 26, 69, + 4, 17, 242, 216, 37, 74, 143, 75, 68, 208, 64, 71, 156, 56, 14, 252, 255, 76, 36, 4, 173, 136, 55, 229, 212, 4, + 220, 43, 62, 98, 159, 66, 5, 151, 69, 142, 123, 170, 234, 123, 27, 180, 150, 124, 103, 206, 148, 199, 212, 255, + 76, 253, 135, 254, 146, 139, 108, 106, 32, 14, 130, 195, 164, 216, 102, 159, 27, 172, 174, 34, 47, 235, 61, 11, + 128, 159, 27, 134, 226, 94, 197, 93, 174, 172, 87, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2180, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "890049793622706366" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f43398d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12802554845676541414" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9751458564269ccf1f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e78a0fe59bdedf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "981e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5515bb6a80c2e3eb9f5e6745" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afd015" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "668aca9f84a4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4fc93" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8139746591732015653" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1058790834189231998" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3965284567372536903" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5725de1b" + }, + { + "_tag": "ByteArray", + "bytearray": "142e5b9e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7703148329204237862" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5586835853487794408" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecce9472b564c44d83" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9814602693334264917" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a76b740a754c57" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "32565915646080070" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17378592659320856260" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7465737702904999588" + } + } + } + ] + }, + "cborHex": "bf1b0c5a1792554a88bebf443f43398d1bb1abcfcd220195e6499751458564269ccf1f47e78a0fe59bdedf42981e4c5515bb6a80c2e3eb9f5e674543afd01546668aca9f84a443b4fc931b70f6306621e22225ff1b0eb194a76b49e77e9f1b3707854e17941c47445725de1b44142e5b9e1b6ae71497a65cc626ff1b4d886d9bc18e68e849ecce9472b564c44d831b883479264bc7ec559f47a76b740a754c571b0073b28719deb446ff1bf12d29f2ab07dec41b679ba0e2b7e4aea4ff", + "cborBytes": [ + 191, 27, 12, 90, 23, 146, 85, 74, 136, 190, 191, 68, 63, 67, 57, 141, 27, 177, 171, 207, 205, 34, 1, 149, 230, 73, + 151, 81, 69, 133, 100, 38, 156, 207, 31, 71, 231, 138, 15, 229, 155, 222, 223, 66, 152, 30, 76, 85, 21, 187, 106, + 128, 194, 227, 235, 159, 94, 103, 69, 67, 175, 208, 21, 70, 102, 138, 202, 159, 132, 164, 67, 180, 252, 147, 27, + 112, 246, 48, 102, 33, 226, 34, 37, 255, 27, 14, 177, 148, 167, 107, 73, 231, 126, 159, 27, 55, 7, 133, 78, 23, + 148, 28, 71, 68, 87, 37, 222, 27, 68, 20, 46, 91, 158, 27, 106, 231, 20, 151, 166, 92, 198, 38, 255, 27, 77, 136, + 109, 155, 193, 142, 104, 232, 73, 236, 206, 148, 114, 181, 100, 196, 77, 131, 27, 136, 52, 121, 38, 75, 199, 236, + 85, 159, 71, 167, 107, 116, 10, 117, 76, 87, 27, 0, 115, 178, 135, 25, 222, 180, 70, 255, 27, 241, 45, 41, 242, + 171, 7, 222, 196, 27, 103, 155, 160, 226, 183, 228, 174, 164, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2181, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00fdfa040102c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7b10a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15239720769057707128" + } + } + ] + } + } + ] + }, + "cborHex": "bf4700fdfa040102c6410643e7b10ad8669f1bffffffffffffffeb9f1bd37e5d4bc3d3d478ffffff", + "cborBytes": [ + 191, 71, 0, 253, 250, 4, 1, 2, 198, 65, 6, 67, 231, 177, 10, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 235, 159, 27, 211, 126, 93, 75, 195, 211, 212, 120, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2182, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1c445a5c98bdd6d7de4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9718275670097558466" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db0bad8b410642e60cf1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9849581237885259689" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05f33c79" + }, + { + "_tag": "ByteArray", + "bytearray": "4d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13623595572461082190" + } + } + ] + } + } + ] + }, + "cborHex": "bf4ab1c445a5c98bdd6d7de41b86de403b797c7bc24adb0bad8b410642e60cf1d8669f1b88b0bdf35680cfa99f4405f33c79414d1bbd10bbfe0420964effffff", + "cborBytes": [ + 191, 74, 177, 196, 69, 165, 201, 139, 221, 109, 125, 228, 27, 134, 222, 64, 59, 121, 124, 123, 194, 74, 219, 11, + 173, 139, 65, 6, 66, 230, 12, 241, 216, 102, 159, 27, 136, 176, 189, 243, 86, 128, 207, 169, 159, 68, 5, 243, 60, + 121, 65, 77, 27, 189, 16, 187, 254, 4, 32, 150, 78, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2183, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fae1348a0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6555386782286892553" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3d044a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11855005389782025261" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff96c1047b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3245959254459361732" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0bdcb2d4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3835306545059291509" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "291e02" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11628711068585251390" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1afb45ebfa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14565204618890749516" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf453fae1348a0d8669f1b5af9698beb804e099f433d044a1ba48570976c4c842dffff45ff96c1047bbf1b2d0bf6be7d7129c4440bdcb2d41b3539befb7efd617543291e021ba1617b1af6ad523e451afb45ebfa41ee1bca22006e5ddca64cffff", + "cborBytes": [ + 191, 69, 63, 174, 19, 72, 160, 216, 102, 159, 27, 90, 249, 105, 139, 235, 128, 78, 9, 159, 67, 61, 4, 74, 27, 164, + 133, 112, 151, 108, 76, 132, 45, 255, 255, 69, 255, 150, 193, 4, 123, 191, 27, 45, 11, 246, 190, 125, 113, 41, + 196, 68, 11, 220, 178, 212, 27, 53, 57, 190, 251, 126, 253, 97, 117, 67, 41, 30, 2, 27, 161, 97, 123, 26, 246, + 173, 82, 62, 69, 26, 251, 69, 235, 250, 65, 238, 27, 202, 34, 0, 110, 93, 220, 166, 76, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2184, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8050a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14736518528551905213" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd060004c2058d18" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "57bd01fa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da97" + } + } + ] + } + } + ] + }, + "cborHex": "bf43f8050ad8669f1bfffffffffffffff29f1bcc82a186384c67bdffff48fd060004c2058d18bf4457bd01fa06418042da97ffff", + "cborBytes": [ + 191, 67, 248, 5, 10, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 204, 130, 161, 134, 56, + 76, 103, 189, 255, 255, 72, 253, 6, 0, 4, 194, 5, 141, 24, 191, 68, 87, 189, 1, 250, 6, 65, 128, 66, 218, 151, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2185, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1144503587649469183" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b0fe217f2fa01baffa0ff", + "cborBytes": [191, 27, 15, 226, 23, 242, 250, 1, 186, 255, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2186, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c8bf6a9ab5ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7202974262243999950" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3814387702774085419" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b50e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0d3ef201bd07ff36074" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d966fe" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12062045533887242570" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1222917375975464005" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14434374794244891974" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11101394405221112529" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16349769116621114035" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3512362712539612573" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf412f9f46c8bf6a9ab5ab1b63f61aedb355c0ce1b34ef6d67fb77b72bff42b50e4ae0d3ef201bd07ff3607443d966febf1ba764fe816fefa14a1b10f8acdfc8ab9c451bc851336615d1a5461b9a101364d2b69ad11be2e60c6303da8ab31b30be6b471b40459dffff", + "cborBytes": [ + 191, 65, 47, 159, 70, 200, 191, 106, 154, 181, 171, 27, 99, 246, 26, 237, 179, 85, 192, 206, 27, 52, 239, 109, + 103, 251, 119, 183, 43, 255, 66, 181, 14, 74, 224, 211, 239, 32, 27, 208, 127, 243, 96, 116, 67, 217, 102, 254, + 191, 27, 167, 100, 254, 129, 111, 239, 161, 74, 27, 16, 248, 172, 223, 200, 171, 156, 69, 27, 200, 81, 51, 102, + 21, 209, 165, 70, 27, 154, 16, 19, 100, 210, 182, 154, 209, 27, 226, 230, 12, 99, 3, 218, 138, 179, 27, 48, 190, + 107, 71, 27, 64, 69, 157, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2187, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6044455465885460358" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6546" + }, + { + "_tag": "ByteArray", + "bytearray": "4b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17404283078314576384" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "539838d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "431cff4f3a51" + } + } + ] + } + } + ] + }, + "cborHex": "bf129f1b53e23838a8c56786426546414bff1bf1886f3f75484a00bf44539838d646431cff4f3a51ffff", + "cborBytes": [ + 191, 18, 159, 27, 83, 226, 56, 56, 168, 197, 103, 134, 66, 101, 70, 65, 75, 255, 27, 241, 136, 111, 63, 117, 72, + 74, 0, 191, 68, 83, 152, 56, 214, 70, 67, 28, 255, 79, 58, 81, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2188, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1791fbf350594e5e100697" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17ff0fe5be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c59b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5672280231883417840" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "312ad1301c637e465e1eaf69" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b23c17444c01bd93066" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "585ad81876c0fdfa91" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e9a8874e006400c0dcf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b88e3f52" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42da5685779ac177de948af7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8218927740686522137" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fe32d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ad9edec8be95869f85b01a9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7128f73b3874babd6c23" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44b40986ca23f6b956e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72abcecd9c08559c0fed24d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17349902620809560939" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b72de7e7212bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a618df1a43f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d84cddba4557354951d6cb" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "142293374966514814" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e9860eff2e72cbf886bb5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12693714108736775288" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39e1081bbe1b488ca8c02c" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b1791fbf350594e5e1006974517ff0fe5be431c59b21b4eb7fcd15fe1a8f04c312ad1301c637e465e1eaf69bf4a2b23c17444c01bd9306649585ad81876c0fdfa914a3e9a8874e006400c0dcf44b88e3f524c42da5685779ac177de948af71b720f7f3c02395719436fe32d4c7ad9edec8be95869f85b01a94a7128f73b3874babd6c234a44b40986ca23f6b956e24c72abcecd9c08559c0fed24d71bf0c73c8288f9036bff479b72de7e7212bf467a618df1a43f4bd84cddba4557354951d6cbbf1b01f9871214c5447e4b2e9860eff2e72cbf886bb51bb02921ba4b9ea4784b39e1081bbe1b488ca8c02cffff", + "cborBytes": [ + 191, 75, 23, 145, 251, 243, 80, 89, 78, 94, 16, 6, 151, 69, 23, 255, 15, 229, 190, 67, 28, 89, 178, 27, 78, 183, + 252, 209, 95, 225, 168, 240, 76, 49, 42, 209, 48, 28, 99, 126, 70, 94, 30, 175, 105, 191, 74, 43, 35, 193, 116, + 68, 192, 27, 217, 48, 102, 73, 88, 90, 216, 24, 118, 192, 253, 250, 145, 74, 62, 154, 136, 116, 224, 6, 64, 12, + 13, 207, 68, 184, 142, 63, 82, 76, 66, 218, 86, 133, 119, 154, 193, 119, 222, 148, 138, 247, 27, 114, 15, 127, 60, + 2, 57, 87, 25, 67, 111, 227, 45, 76, 122, 217, 237, 236, 139, 233, 88, 105, 248, 91, 1, 169, 74, 113, 40, 247, 59, + 56, 116, 186, 189, 108, 35, 74, 68, 180, 9, 134, 202, 35, 246, 185, 86, 226, 76, 114, 171, 206, 205, 156, 8, 85, + 156, 15, 237, 36, 215, 27, 240, 199, 60, 130, 136, 249, 3, 107, 255, 71, 155, 114, 222, 126, 114, 18, 191, 70, + 122, 97, 141, 241, 164, 63, 75, 216, 76, 221, 186, 69, 87, 53, 73, 81, 214, 203, 191, 27, 1, 249, 135, 18, 20, + 197, 68, 126, 75, 46, 152, 96, 239, 242, 231, 44, 191, 136, 107, 181, 27, 176, 41, 33, 186, 75, 158, 164, 120, 75, + 57, 225, 8, 27, 190, 27, 72, 140, 168, 192, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2189, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15350132713468362101" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1bd506a05fd9627d7580ff", + "cborBytes": [191, 27, 213, 6, 160, 95, 217, 98, 125, 117, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2190, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d85" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "105b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9000b5e9014419" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "607be2c6333621ea570d" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff60b2" + }, + { + "_tag": "ByteArray", + "bytearray": "6cffa8" + } + ] + } + } + ] + }, + "cborHex": "bf09422d850cbf42105b41cb479000b5e90144194a607be2c6333621ea570dff1bffffffffffffffec9f43ff60b2436cffa8ffff", + "cborBytes": [ + 191, 9, 66, 45, 133, 12, 191, 66, 16, 91, 65, 203, 71, 144, 0, 181, 233, 1, 68, 25, 74, 96, 123, 226, 198, 51, 54, + 33, 234, 87, 13, 255, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 67, 255, 96, 178, 67, 108, 255, 168, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2191, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "837cd8fb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16007286914557041757" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a2d0ecb86901767" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4229536491163032499" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10481779890852814100" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11225100371396620657" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2520969442686580038" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11852145542941433675" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f6e" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2568701c90e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4c268a361b872c0955" + } + ] + } + } + ] + }, + "cborHex": "bf44837cd8fb9f1bde254ea377ee5c5dff488a2d0ecb86901767bf1b3ab2550798531bb31b9176c346a01d5d141b9bc791508d3371711b22fc4859f8f2b5461ba47b47937140df4b420f6eff46d2568701c90e9f494c268a361b872c0955ffff", + "cborBytes": [ + 191, 68, 131, 124, 216, 251, 159, 27, 222, 37, 78, 163, 119, 238, 92, 93, 255, 72, 138, 45, 14, 203, 134, 144, 23, + 103, 191, 27, 58, 178, 85, 7, 152, 83, 27, 179, 27, 145, 118, 195, 70, 160, 29, 93, 20, 27, 155, 199, 145, 80, + 141, 51, 113, 113, 27, 34, 252, 72, 89, 248, 242, 181, 70, 27, 164, 123, 71, 147, 113, 64, 223, 75, 66, 15, 110, + 255, 70, 210, 86, 135, 1, 201, 14, 159, 73, 76, 38, 138, 54, 27, 135, 44, 9, 85, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2192, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9929600572764840070" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10813012704205594773" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b89cd071c9529e086d8669f1b960f89c3c1f5e09580ffff", + "cborBytes": [ + 191, 27, 137, 205, 7, 28, 149, 41, 224, 134, 216, 102, 159, 27, 150, 15, 137, 195, 193, 245, 224, 149, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2193, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10307125465755559121" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3968444320805602422" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e72a18d42808a5b3d13f86" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5804081276459741064" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11109770812602171838" + } + } + ] + } + } + ] + }, + "cborHex": "bf41501b8f0a440069be24d142b0f81b3712bf158488c4764be72a18d42808a5b3d13f86d8669f1b508c3d2b6ae0ef889f1b9a2dd5b12527c1beffffff", + "cborBytes": [ + 191, 65, 80, 27, 143, 10, 68, 0, 105, 190, 36, 209, 66, 176, 248, 27, 55, 18, 191, 21, 132, 136, 196, 118, 75, + 231, 42, 24, 212, 40, 8, 165, 179, 209, 63, 134, 216, 102, 159, 27, 80, 140, 61, 43, 106, 224, 239, 136, 159, 27, + 154, 45, 213, 177, 37, 39, 193, 190, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2194, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1310671484523315075" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1484985778418691638" + } + }, + { + "_tag": "ByteArray", + "bytearray": "18b723dfd2b5a5c182b7d5" + }, + { + "_tag": "ByteArray", + "bytearray": "58df732007b604" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78b59dd6fa81" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c2839e3fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ca435dc5033baf724" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b123070c55c3eff839f1b149bbab29b272e364b18b723dfd2b5a5c182b7d54758df732007b604ff4678b59dd6fa81452c2839e3fd499ca435dc5033baf724a0ff", + "cborBytes": [ + 191, 27, 18, 48, 112, 197, 92, 62, 255, 131, 159, 27, 20, 155, 186, 178, 155, 39, 46, 54, 75, 24, 183, 35, 223, + 210, 181, 165, 193, 130, 183, 213, 71, 88, 223, 115, 32, 7, 182, 4, 255, 70, 120, 181, 157, 214, 250, 129, 69, 44, + 40, 57, 227, 253, 73, 156, 164, 53, 220, 80, 51, 186, 247, 36, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2195, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5813947562427576433" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16226164902054593927" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0a8b2d642526091a98e1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1641422027838933119" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15435738949868913180" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16812919609949044663" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b50af4a81213e7071d8669f1be12eeb022de005879f4a0a8b2d642526091a98e11b16c780a33fd7487f1bd636c2caf899021c1be9537d4e7c363fb7ffffff", + "cborBytes": [ + 191, 27, 80, 175, 74, 129, 33, 62, 112, 113, 216, 102, 159, 27, 225, 46, 235, 2, 45, 224, 5, 135, 159, 74, 10, + 139, 45, 100, 37, 38, 9, 26, 152, 225, 27, 22, 199, 128, 163, 63, 215, 72, 127, 27, 214, 54, 194, 202, 248, 153, + 2, 28, 27, 233, 83, 125, 78, 124, 54, 63, 183, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2196, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f9656bc6976c4a21e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2242008150017734683" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "992c68" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15578656210079084642" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f39c39c65ad207fedb14" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11256084833920000651" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ce299bbd260" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6270094894992357466" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ae2bed639fb73573a5f2" + }, + { + "_tag": "ByteArray", + "bytearray": "28379bf3efc3fd54509d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f4a604a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fcdfe6bd28924dd25aab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13657387208082813333" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7797790436422994805" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1627633663812466529" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ab93a957392c8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14577809018968108519" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3554764223000596747" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15969836073461059200" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1497596326322787799" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74ac84bcd0ce9596" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "753961936d512b06a5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "491994561308828283" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf491f9656bc6976c4a21ed8669f1b1f1d3688a556781b9f43992c681bd8328148a7b270624af39c39c65ad207fedb141b9c35a584e776a28bffff462ce299bbd260d8669f1b5703da162c02785a9f4aae2bed639fb73573a5f24a28379bf3efc3fd54509dffff443f4a604a9f4afcdfe6bd28924dd25aab1bbd88c94e49bd71951b6c37511663ee4b751b1696843194027761ff476ab93a957392c8d8669f1bca4ec810f3146de79f1b31550f3a1437d10b1bdda0414c07dd8e801b14c887ec976655d74874ac84bcd0ce9596ffff49753961936d512b06a5d8669f1b06d3ea72623ca27b80ffff", + "cborBytes": [ + 191, 73, 31, 150, 86, 188, 105, 118, 196, 162, 30, 216, 102, 159, 27, 31, 29, 54, 136, 165, 86, 120, 27, 159, 67, + 153, 44, 104, 27, 216, 50, 129, 72, 167, 178, 112, 98, 74, 243, 156, 57, 198, 90, 210, 7, 254, 219, 20, 27, 156, + 53, 165, 132, 231, 118, 162, 139, 255, 255, 70, 44, 226, 153, 187, 210, 96, 216, 102, 159, 27, 87, 3, 218, 22, 44, + 2, 120, 90, 159, 74, 174, 43, 237, 99, 159, 183, 53, 115, 165, 242, 74, 40, 55, 155, 243, 239, 195, 253, 84, 80, + 157, 255, 255, 68, 63, 74, 96, 74, 159, 74, 252, 223, 230, 189, 40, 146, 77, 210, 90, 171, 27, 189, 136, 201, 78, + 73, 189, 113, 149, 27, 108, 55, 81, 22, 99, 238, 75, 117, 27, 22, 150, 132, 49, 148, 2, 119, 97, 255, 71, 106, + 185, 58, 149, 115, 146, 200, 216, 102, 159, 27, 202, 78, 200, 16, 243, 20, 109, 231, 159, 27, 49, 85, 15, 58, 20, + 55, 209, 11, 27, 221, 160, 65, 76, 7, 221, 142, 128, 27, 20, 200, 135, 236, 151, 102, 85, 215, 72, 116, 172, 132, + 188, 208, 206, 149, 150, 255, 255, 73, 117, 57, 97, 147, 109, 81, 43, 6, 165, 216, 102, 159, 27, 6, 211, 234, 114, + 98, 60, 162, 123, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2197, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d3f89" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16067965689721619772" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13416192249483624424" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e7400418c5f8957d2" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2355ba66594" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9187398687388395139" + } + } + } + ] + }, + "cborHex": "bf439d3f899f1bdefce1a9bf05853c1bba2fe3c4d4d1ffe8498e7400418c5f8957d2ff46b2355ba665941b7f80326de3ace683ff", + "cborBytes": [ + 191, 67, 157, 63, 137, 159, 27, 222, 252, 225, 169, 191, 5, 133, 60, 27, 186, 47, 227, 196, 212, 209, 255, 232, + 73, 142, 116, 0, 65, 140, 95, 137, 87, 210, 255, 70, 178, 53, 91, 166, 101, 148, 27, 127, 128, 50, 109, 227, 172, + 230, 131, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2198, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9413616932456474252" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dee73cc794eedfe7b3066726" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10874410353551547615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "177746945797039298" + } + } + } + ] + }, + "cborHex": "bf1b82a3e2b97eaba68c4cdee73cc794eedfe7b30667261b96e9aa99f9451cdf1b02777be7cc24a4c2ff", + "cborBytes": [ + 191, 27, 130, 163, 226, 185, 126, 171, 166, 140, 76, 222, 231, 60, 199, 148, 238, 223, 231, 179, 6, 103, 38, 27, + 150, 233, 170, 153, 249, 69, 28, 223, 27, 2, 119, 123, 231, 204, 36, 164, 194, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2199, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "71" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80f6cf" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3957702036343312921" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f9734b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14290816696067063315" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2409290427217572378" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dedffc33b5b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d053" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13581576161157182280" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e01b5acd927ad9" + }, + { + "_tag": "ByteArray", + "bytearray": "431bc9" + }, + { + "_tag": "ByteArray", + "bytearray": "3d" + }, + { + "_tag": "ByteArray", + "bytearray": "053d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15268449227564538799" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e44643b7ef8a82c818" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11306125972466452728" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7392962999382819628" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c073d567fe10e42ba1fa406" + } + ] + } + } + ] + }, + "cborHex": "bf4171a04380f6cfd8669f1b36ec9508831552199f43f9734b1bc6532e11af4c7e131b216f84e0eb0d721affff41a2462dedffc33b5b42d053d8669f1bbc7b738f6faff3489f47e01b5acd927ad943431bc9413d42053d1bd3e46dad40125bafffff49e44643b7ef8a82c818d8669f1b9ce76dab66ae48f89f1b669914ada7d1c32c4c1c073d567fe10e42ba1fa406ffffff", + "cborBytes": [ + 191, 65, 113, 160, 67, 128, 246, 207, 216, 102, 159, 27, 54, 236, 149, 8, 131, 21, 82, 25, 159, 67, 249, 115, 75, + 27, 198, 83, 46, 17, 175, 76, 126, 19, 27, 33, 111, 132, 224, 235, 13, 114, 26, 255, 255, 65, 162, 70, 45, 237, + 255, 195, 59, 91, 66, 208, 83, 216, 102, 159, 27, 188, 123, 115, 143, 111, 175, 243, 72, 159, 71, 224, 27, 90, + 205, 146, 122, 217, 67, 67, 27, 201, 65, 61, 66, 5, 61, 27, 211, 228, 109, 173, 64, 18, 91, 175, 255, 255, 73, + 228, 70, 67, 183, 239, 138, 130, 200, 24, 216, 102, 159, 27, 156, 231, 109, 171, 102, 174, 72, 248, 159, 27, 102, + 153, 20, 173, 167, 209, 195, 44, 76, 28, 7, 61, 86, 127, 225, 14, 66, 186, 31, 164, 6, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2200, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07c9b289" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12742902429425769955" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1774991557297001369" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bcd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04a91c7b39a165335200" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c413a0259d55270" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4e38439d1856fb109" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2582385646874959984" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9786973681245027702" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18362124612538844237" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10678469095383232903" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4768860603648018346" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + } + ] + }, + "cborHex": "bf04bf4407c9b2891bb0d7e23ea9629de341211b18a2096ac4015399423bcd4a04a91c7b39a165335200485c413a0259d5527049a4e38439d1856fb109ff11141b23d67a10530ca070d8669f1bffffffffffffffff80ff1b87d250b5a0b4fd769f1bfed35f0c63d5c44dff1b94318b10b74df1871b422e6573d7cb87aa1bffffffffffffffef4106ff", + "cborBytes": [ + 191, 4, 191, 68, 7, 201, 178, 137, 27, 176, 215, 226, 62, 169, 98, 157, 227, 65, 33, 27, 24, 162, 9, 106, 196, 1, + 83, 153, 66, 59, 205, 74, 4, 169, 28, 123, 57, 161, 101, 51, 82, 0, 72, 92, 65, 58, 2, 89, 213, 82, 112, 73, 164, + 227, 132, 57, 209, 133, 111, 177, 9, 255, 17, 20, 27, 35, 214, 122, 16, 83, 12, 160, 112, 216, 102, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 255, 128, 255, 27, 135, 210, 80, 181, 160, 180, 253, 118, 159, 27, 254, 211, 95, 12, + 99, 213, 196, 77, 255, 27, 148, 49, 139, 16, 183, 77, 241, 135, 27, 66, 46, 101, 115, 215, 203, 135, 170, 27, 255, + 255, 255, 255, 255, 255, 255, 239, 65, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2201, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "040c" + } + } + ] + }, + "cborHex": "bf0242040cff", + "cborBytes": [191, 2, 66, 4, 12, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2202, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3766df3bc0e1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "508604884186335465" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0947324657b020e3e417d7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1844464626919852817" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91f4d25b9497c8f5304bb227" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07afe3c37511" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f3f31bf46700e802466" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5467430fb5e00a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13703398419827608544" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41b359ab2fd8f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "136911855533969130" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4303e632d31ffc6f9dbe8d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6050745643746889796" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "858dccddfa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a57f8aeaa98afdface84" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d675be2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13674172846607702176" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4510973346876560165" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12149869556276342956" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74c7cb" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9de6c154d597d232" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6419736387299983855" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf463766df3bc0e1bf1b070eed728cf488e94b0947324657b020e3e417d71b1998dace4854cb114c91f4d25b9497c8f5304bb2274607afe3c375114a6f3f31bf46700e802466475467430fb5e00a1bbe2c404255794be0ff4741b359ab2fd8f71b01e6689b72a44eea4b4303e632d31ffc6f9dbe8d1b53f8911ad1c6904445858dccddfa4aa57f8aeaa98afdface84449d675be2d8669f1bbdc46bc14f5818a09f1b3e9a325bdbd513251ba89d01fd192f30ac4374c7cbffff489de6c154d597d232d8669f1b59177c3b24aa41ef80ffff", + "cborBytes": [ + 191, 70, 55, 102, 223, 59, 192, 225, 191, 27, 7, 14, 237, 114, 140, 244, 136, 233, 75, 9, 71, 50, 70, 87, 176, 32, + 227, 228, 23, 215, 27, 25, 152, 218, 206, 72, 84, 203, 17, 76, 145, 244, 210, 91, 148, 151, 200, 245, 48, 75, 178, + 39, 70, 7, 175, 227, 195, 117, 17, 74, 111, 63, 49, 191, 70, 112, 14, 128, 36, 102, 71, 84, 103, 67, 15, 181, 224, + 10, 27, 190, 44, 64, 66, 85, 121, 75, 224, 255, 71, 65, 179, 89, 171, 47, 216, 247, 27, 1, 230, 104, 155, 114, + 164, 78, 234, 75, 67, 3, 230, 50, 211, 31, 252, 111, 157, 190, 141, 27, 83, 248, 145, 26, 209, 198, 144, 68, 69, + 133, 141, 204, 221, 250, 74, 165, 127, 138, 234, 169, 138, 253, 250, 206, 132, 68, 157, 103, 91, 226, 216, 102, + 159, 27, 189, 196, 107, 193, 79, 88, 24, 160, 159, 27, 62, 154, 50, 91, 219, 213, 19, 37, 27, 168, 157, 1, 253, + 25, 47, 48, 172, 67, 116, 199, 203, 255, 255, 72, 157, 230, 193, 84, 213, 151, 210, 50, 216, 102, 159, 27, 89, 23, + 124, 59, 36, 170, 65, 239, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2203, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12017063522558331628" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c4c7a0b27207053b7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17746091381535757994" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + } + ] + }, + "cborHex": "bf1ba6c52f9ac964caec499c4c7a0b27207053b71bf646c816b40f56aa05ff", + "cborBytes": [ + 191, 27, 166, 197, 47, 154, 201, 100, 202, 236, 73, 156, 76, 122, 11, 39, 32, 112, 83, 183, 27, 246, 70, 200, 22, + 180, 15, 86, 170, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2204, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14183715019342174203" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16778821356692310380" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7fb6db95" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16715998292814228101" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31" + }, + { + "_tag": "ByteArray", + "bytearray": "c60e7eb0abfa" + }, + { + "_tag": "ByteArray", + "bytearray": "7cf492cb" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17496327147344598883" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "041977ca" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9794285396196865643" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b02a04c734dd" + }, + { + "_tag": "ByteArray", + "bytearray": "b02c21" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec4f40dc735597c7" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1bc4d6ada95b4357fbd8669f1be8da59203b62096c9f447fb6db951be7fb27e1d53a6a85413146c60e7eb0abfa447cf492cbffff1bf2cf70d74b7f9763a044041977cad8669f1b87ec4aaced1c366b9f46b02a04c734dd43b02c21ffff48ec4f40dc735597c780ff", + "cborBytes": [ + 191, 27, 196, 214, 173, 169, 91, 67, 87, 251, 216, 102, 159, 27, 232, 218, 89, 32, 59, 98, 9, 108, 159, 68, 127, + 182, 219, 149, 27, 231, 251, 39, 225, 213, 58, 106, 133, 65, 49, 70, 198, 14, 126, 176, 171, 250, 68, 124, 244, + 146, 203, 255, 255, 27, 242, 207, 112, 215, 75, 127, 151, 99, 160, 68, 4, 25, 119, 202, 216, 102, 159, 27, 135, + 236, 74, 172, 237, 28, 54, 107, 159, 70, 176, 42, 4, 199, 52, 221, 67, 176, 44, 33, 255, 255, 72, 236, 79, 64, + 220, 115, 85, 151, 199, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2205, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c6fe" + }, + { + "_tag": "ByteArray", + "bytearray": "a7625a5a" + }, + { + "_tag": "ByteArray", + "bytearray": "07060001030605" + }, + { + "_tag": "ByteArray", + "bytearray": "05" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0121f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01f25d43" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f8e1de87663996075d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9181361609545665654" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9075f60" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16237196668396042096" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e368b0a019a07cc332f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffd9f42c6fe44a7625a5a470706000103060541051bfffffffffffffff0ff430121f84401f25d434a6f8e1de87663996075d41b7f6abfbd2b60cc7644f9075f60bf081be1561c576fe6f7704a1e368b0a019a07cc332f06ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 66, 198, 254, 68, 167, 98, 90, 90, 71, 7, 6, 0, 1, 3, 6, 5, + 65, 5, 27, 255, 255, 255, 255, 255, 255, 255, 240, 255, 67, 1, 33, 248, 68, 1, 242, 93, 67, 74, 111, 142, 29, 232, + 118, 99, 153, 96, 117, 212, 27, 127, 106, 191, 189, 43, 96, 204, 118, 68, 249, 7, 95, 96, 191, 8, 27, 225, 86, 28, + 87, 111, 230, 247, 112, 74, 30, 54, 139, 10, 1, 154, 7, 204, 51, 47, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2206, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19c5535b9c21db03f613" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6190760833643353455" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2e9c326737579e3a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b443c7a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7e31ab" + }, + { + "_tag": "ByteArray", + "bytearray": "75dbe39684db1fba0c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74b803f833" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1ee676bf6a0913dc886" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13431420659084671696" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9fce00451ff691801387fbc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17360197301009887485" + } + } + } + ] + }, + "cborHex": "bf4a19c5535b9c21db03f6139f1b55ea002d9ab6956f482e9c326737579e3aff446b443c7a9f437e31ab4975dbe39684db1fba0cff4574b803f8334ac1ee676bf6a0913dc88641a11bba65fded3d95bad04cd9fce00451ff691801387fbc1bf0ebcf778d63b0fdff", + "cborBytes": [ + 191, 74, 25, 197, 83, 91, 156, 33, 219, 3, 246, 19, 159, 27, 85, 234, 0, 45, 154, 182, 149, 111, 72, 46, 156, 50, + 103, 55, 87, 158, 58, 255, 68, 107, 68, 60, 122, 159, 67, 126, 49, 171, 73, 117, 219, 227, 150, 132, 219, 31, 186, + 12, 255, 69, 116, 184, 3, 248, 51, 74, 193, 238, 103, 107, 246, 160, 145, 61, 200, 134, 65, 161, 27, 186, 101, + 253, 237, 61, 149, 186, 208, 76, 217, 252, 224, 4, 81, 255, 105, 24, 1, 56, 127, 188, 27, 240, 235, 207, 119, 141, + 99, 176, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2207, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8634304964864423583" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d3262df4d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5aa8244ffd9f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5466984685326225486" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "745a91" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf021b77d3369e7922b69f454d3262df4dbf0e465aa8244ffd9f1b4bdea19b215ed04e41111bfffffffffffffff243745a9141f807ffff", + "cborBytes": [ + 191, 2, 27, 119, 211, 54, 158, 121, 34, 182, 159, 69, 77, 50, 98, 223, 77, 191, 14, 70, 90, 168, 36, 79, 253, 159, + 27, 75, 222, 161, 155, 33, 94, 208, 78, 65, 17, 27, 255, 255, 255, 255, 255, 255, 255, 242, 67, 116, 90, 145, 65, + 248, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2208, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd187e3ad0b91b71301a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e464a70482b7a5a2db5f3bd" + } + } + ] + }, + "cborHex": "bf4abd187e3ad0b91b71301a4c3e464a70482b7a5a2db5f3bdff", + "cborBytes": [ + 191, 74, 189, 24, 126, 58, 208, 185, 27, 113, 48, 26, 76, 62, 70, 74, 112, 72, 43, 122, 90, 45, 181, 243, 189, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2209, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "397196656753794758" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13678046209333909998" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55cb07eb577c06f6a959f03c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9974324346305045963" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1421375754196118685" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b43088d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12555864679670614861" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "497bbf4000d9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14411264262040990198" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52" + } + } + ] + }, + "cborHex": "bf1b058320413fc85ec69f1bbdd22e8ed8b9d9ee4c55cb07eb577c06f6a959f03c1b8a6beb25900ae5cbff1b13b9bdb7b9366c9d447b43088d1bae3f6466ffa40b4d46497bbf4000d91bc7ff187dff3c31f64152ff", + "cborBytes": [ + 191, 27, 5, 131, 32, 65, 63, 200, 94, 198, 159, 27, 189, 210, 46, 142, 216, 185, 217, 238, 76, 85, 203, 7, 235, + 87, 124, 6, 246, 169, 89, 240, 60, 27, 138, 107, 235, 37, 144, 10, 229, 203, 255, 27, 19, 185, 189, 183, 185, 54, + 108, 157, 68, 123, 67, 8, 141, 27, 174, 63, 100, 102, 255, 164, 11, 77, 70, 73, 123, 191, 64, 0, 217, 27, 199, + 255, 24, 125, 255, 60, 49, 246, 65, 82, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2210, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1672269959986535866" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9590177094697215005" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9035634410841080064" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9734705530770728429" + } + }, + { + "_tag": "ByteArray", + "bytearray": "09" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16362330670601630611" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9925391001356093591" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2515280616802296836" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1765784254839497375" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5804208194941892381" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1476061775831265460" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3f2bfbd2d82cfb6d0052a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "636248524178489075" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ad85b786edeb" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4989065692197760552" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2616785417808938732" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16448778765245070458" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10803239673188336367" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4abe50f6b9ff92c4b5cf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13010703780441981041" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3926447285189615536" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9574684270674988853" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11841598683271300093" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3de612740660d7b3c53a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1372304802967854078" + } + }, + { + "_tag": "ByteArray", + "bytearray": "20" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13894409604059408224" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f99" + } + } + ] + }, + "cborHex": "bf1b173518ab258dddbad8669f1b85172741b683e41d9f1b7d65059fb27a81001b87189f1a829ea5ed41091be312ad0db6b073931b89be12875cb04897ffff1b22e81264faed2404d8669f1b1881536c9bafa29f9f1b508cb099edec371d1b147c065d56f470b44b3f2bfbd2d82cfb6d0052a71b08d468a968867ef346ad85b786edebffff1b453cb8d058892e289f1b2450b07921ec86ec1be445cd233b6bbc7aff1b95ecd13ea7cc42ef4a4abe50f6b9ff92c4b5cf1bb48f4e2797138071d8669f1b367d8b00af061fb09f1b84e01c9d861a4f351ba455cf43511e83fd4a3de612740660d7b3c53a1b130b67f290761bfe4120ffff1bc0d2dbeb4dbca760420f99ff", + "cborBytes": [ + 191, 27, 23, 53, 24, 171, 37, 141, 221, 186, 216, 102, 159, 27, 133, 23, 39, 65, 182, 131, 228, 29, 159, 27, 125, + 101, 5, 159, 178, 122, 129, 0, 27, 135, 24, 159, 26, 130, 158, 165, 237, 65, 9, 27, 227, 18, 173, 13, 182, 176, + 115, 147, 27, 137, 190, 18, 135, 92, 176, 72, 151, 255, 255, 27, 34, 232, 18, 100, 250, 237, 36, 4, 216, 102, 159, + 27, 24, 129, 83, 108, 155, 175, 162, 159, 159, 27, 80, 140, 176, 153, 237, 236, 55, 29, 27, 20, 124, 6, 93, 86, + 244, 112, 180, 75, 63, 43, 251, 210, 216, 44, 251, 109, 0, 82, 167, 27, 8, 212, 104, 169, 104, 134, 126, 243, 70, + 173, 133, 183, 134, 237, 235, 255, 255, 27, 69, 60, 184, 208, 88, 137, 46, 40, 159, 27, 36, 80, 176, 121, 33, 236, + 134, 236, 27, 228, 69, 205, 35, 59, 107, 188, 122, 255, 27, 149, 236, 209, 62, 167, 204, 66, 239, 74, 74, 190, 80, + 246, 185, 255, 146, 196, 181, 207, 27, 180, 143, 78, 39, 151, 19, 128, 113, 216, 102, 159, 27, 54, 125, 139, 0, + 175, 6, 31, 176, 159, 27, 132, 224, 28, 157, 134, 26, 79, 53, 27, 164, 85, 207, 67, 81, 30, 131, 253, 74, 61, 230, + 18, 116, 6, 96, 215, 179, 197, 58, 27, 19, 11, 103, 242, 144, 118, 27, 254, 65, 32, 255, 255, 27, 192, 210, 219, + 235, 77, 188, 167, 96, 66, 15, 153, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2211, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05fd06f8fb5b07055afbfe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eea9a1a48d9ac8" + } + } + ] + }, + "cborHex": "bf4b05fd06f8fb5b07055afbfe47eea9a1a48d9ac8ff", + "cborBytes": [191, 75, 5, 253, 6, 248, 251, 91, 7, 5, 90, 251, 254, 71, 238, 169, 161, 164, 141, 154, 200, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2212, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1679413251231186335" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15713189600923813481" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7940248063388982929" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16541166115206606833" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d2d407f2c5c5d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "79f610" + }, + { + "_tag": "ByteArray", + "bytearray": "e1861ba11d6e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17945239131367457606" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3723150472952834742" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4683422587431759623" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a917724803" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7910948226673814976" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64c249de5b752f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5233076293103434113" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15000553538974960565" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b174e79743eb7fd9fd8669f1bda1076b0a36d06699f1b6e316d8b5ec89e911be58e06f1639e2ff1ffff478d2d407f2c5c5d9f4379f61046e1861ba11d6e1bf90a4be97a98c3461b33ab49a109ae6ab6ff41f041f741f5d8669f1b40fedc0788e92f079f45a9177248031b6dc9557f87662dc04764c249de5b752f1b489f9f299cf2b9811bd02cabf7a4d4cbb5ffffff", + "cborBytes": [ + 191, 27, 23, 78, 121, 116, 62, 183, 253, 159, 216, 102, 159, 27, 218, 16, 118, 176, 163, 109, 6, 105, 159, 27, + 110, 49, 109, 139, 94, 200, 158, 145, 27, 229, 142, 6, 241, 99, 158, 47, 241, 255, 255, 71, 141, 45, 64, 127, 44, + 92, 93, 159, 67, 121, 246, 16, 70, 225, 134, 27, 161, 29, 110, 27, 249, 10, 75, 233, 122, 152, 195, 70, 27, 51, + 171, 73, 161, 9, 174, 106, 182, 255, 65, 240, 65, 247, 65, 245, 216, 102, 159, 27, 64, 254, 220, 7, 136, 233, 47, + 7, 159, 69, 169, 23, 114, 72, 3, 27, 109, 201, 85, 127, 135, 102, 45, 192, 71, 100, 194, 73, 222, 91, 117, 47, 27, + 72, 159, 159, 41, 156, 242, 185, 129, 27, 208, 44, 171, 247, 164, 212, 203, 181, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2213, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5348522914064615200" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ba9cc5640d8162b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7687652007317566854" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d3f73a44240e2ca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10554487751875218037" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1149281125102894735" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2857889722959596033" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11121282232214044103" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b4a39c540addbc720487ba9cc5640d8162b1b6ab006c50cfb7586485d3f73a44240e2ca1b927912b0b4bbca759f1b0ff3111818d1be8f1b27a9438fb03f0a01ff1b9a56bb4461fb3dc7a0ff", + "cborBytes": [ + 191, 27, 74, 57, 197, 64, 173, 219, 199, 32, 72, 123, 169, 204, 86, 64, 216, 22, 43, 27, 106, 176, 6, 197, 12, + 251, 117, 134, 72, 93, 63, 115, 164, 66, 64, 226, 202, 27, 146, 121, 18, 176, 180, 187, 202, 117, 159, 27, 15, + 243, 17, 24, 24, 209, 190, 143, 27, 39, 169, 67, 143, 176, 63, 10, 1, 255, 27, 154, 86, 187, 68, 97, 251, 61, 199, + 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2214, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdf8" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0107" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6188556132369228362" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5645541479504203249" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14061917358391818804" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00f4fe36" + } + } + ] + } + } + ] + }, + "cborHex": "bf02bf1bfffffffffffffff642fdf8ff054201071b55e22b03966ee24a1b4e58fe107294cdf11bc325f7558fd7fa34bf144400f4fe36ffff", + "cborBytes": [ + 191, 2, 191, 27, 255, 255, 255, 255, 255, 255, 255, 246, 66, 253, 248, 255, 5, 66, 1, 7, 27, 85, 226, 43, 3, 150, + 110, 226, 74, 27, 78, 88, 254, 16, 114, 148, 205, 241, 27, 195, 37, 247, 85, 143, 215, 250, 52, 191, 20, 68, 0, + 244, 254, 54, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2215, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b54f21" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10667835299386262460" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc3895" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf43b54f21d905059f1bffffffffffffffff1b940bc3af264a83bcff43fc389580ff", + "cborBytes": [ + 191, 67, 181, 79, 33, 217, 5, 5, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 27, 148, 11, 195, 175, 38, 74, + 131, 188, 255, 67, 252, 56, 149, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2216, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "84" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4688112740675456352" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1eeb03c72d9a53ab342b2f96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5721d21553" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bbc7971" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d252b98d50a3a68b646d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "706979" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fb3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bcb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2195745192659939703" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17149449080949900846" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1220452783284710125" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eff3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5615751504977152050" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3404781901631832999" + } + }, + { + "_tag": "ByteArray", + "bytearray": "68bd" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d74c7eaf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3716280281458212091" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7a6c552e1ac0af409d40c43" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9071528728152365336" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd54ad2630" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3152052439193440521" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5094222158491040649" + } + } + ] + } + } + ] + }, + "cborHex": "bf4184bf4218a71b410f85b2eef18d604c1eeb03c72d9a53ab342b2f96455721d21553444bbc79714ad252b98d50a3a68b646d43706979425fb3429bcb1b1e78da9e81c47177ff4189d8669f1bedff1513d3ab062e9f1b10efeb5714d26aed42eff31b4def283d810748321b2f403719a871c3a74268bdffff44d74c7eaf1b3392e139ee1afcfb4cd7a6c552e1ac0af409d40c431b7de48b50b345d91845fd54ad2630d8669f1b2bbe56fe3f8751099f1b46b2501013c83b89ffffff", + "cborBytes": [ + 191, 65, 132, 191, 66, 24, 167, 27, 65, 15, 133, 178, 238, 241, 141, 96, 76, 30, 235, 3, 199, 45, 154, 83, 171, + 52, 43, 47, 150, 69, 87, 33, 210, 21, 83, 68, 75, 188, 121, 113, 74, 210, 82, 185, 141, 80, 163, 166, 139, 100, + 109, 67, 112, 105, 121, 66, 95, 179, 66, 155, 203, 27, 30, 120, 218, 158, 129, 196, 113, 119, 255, 65, 137, 216, + 102, 159, 27, 237, 255, 21, 19, 211, 171, 6, 46, 159, 27, 16, 239, 235, 87, 20, 210, 106, 237, 66, 239, 243, 27, + 77, 239, 40, 61, 129, 7, 72, 50, 27, 47, 64, 55, 25, 168, 113, 195, 167, 66, 104, 189, 255, 255, 68, 215, 76, 126, + 175, 27, 51, 146, 225, 57, 238, 26, 252, 251, 76, 215, 166, 197, 82, 225, 172, 10, 244, 9, 212, 12, 67, 27, 125, + 228, 139, 80, 179, 69, 217, 24, 69, 253, 84, 173, 38, 48, 216, 102, 159, 27, 43, 190, 86, 254, 63, 135, 81, 9, + 159, 27, 70, 178, 80, 16, 19, 200, 59, 137, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2217, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "223680102367261489" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9581610103827238040" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0bdaa2f2ff63a0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12951120147843155445" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7949942665208463950" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16460558007196369034" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11320587439497861518" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18382422595387421598" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1538494678981815863" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7108536680577145088" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b031aabde34ec7331d8669f1b84f8b79fb6ea8c989f470bdaa2f2ff63a01bb3bb9f280f9885f51b6e53debbc079024effff1be46fa64bb7a6c08ad8669f1b9d1ace4c1404d98e9f1bff1b7bf4cd2e739e1b1559d4c25d8a2e371b62a69872c6a29900ffffff", + "cborBytes": [ + 191, 27, 3, 26, 171, 222, 52, 236, 115, 49, 216, 102, 159, 27, 132, 248, 183, 159, 182, 234, 140, 152, 159, 71, + 11, 218, 162, 242, 255, 99, 160, 27, 179, 187, 159, 40, 15, 152, 133, 245, 27, 110, 83, 222, 187, 192, 121, 2, 78, + 255, 255, 27, 228, 111, 166, 75, 183, 166, 192, 138, 216, 102, 159, 27, 157, 26, 206, 76, 20, 4, 217, 142, 159, + 27, 255, 27, 123, 244, 205, 46, 115, 158, 27, 21, 89, 212, 194, 93, 138, 46, 55, 27, 98, 166, 152, 114, 198, 162, + 153, 0, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2218, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2801854268874536185" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ff87e65bc8d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13656480856817892547" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8350967159469738001" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14081458008871301983" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11654905706683908998" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4778308928918200018" + } + }, + { + "_tag": "ByteArray", + "bytearray": "99b9104bbd8ed3fd1e7730f2" + }, + { + "_tag": "ByteArray", + "bytearray": "3c08077c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f85dffcaa3f9a56b64e5164e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5374127518581305127" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14534418769554450125" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9f37bee953195b" + } + ] + } + } + ] + }, + "cborHex": "bf1b26e22f9cd8adb4f9461ff87e65bc8d1bbd8590fbf08d7cc3d8669f1b73e49862df2588119f1bc36b6373ca5a735f1ba1be8afd699143861b424ff6a77f3f1ed24c99b9104bbd8ed3fd1e7730f2443c08077cffff4cf85dffcaa3f9a56b64e5164e9f1b4a94bc813ab0af271bc9b4a0dd401026cd479f37bee953195bffff", + "cborBytes": [ + 191, 27, 38, 226, 47, 156, 216, 173, 180, 249, 70, 31, 248, 126, 101, 188, 141, 27, 189, 133, 144, 251, 240, 141, + 124, 195, 216, 102, 159, 27, 115, 228, 152, 98, 223, 37, 136, 17, 159, 27, 195, 107, 99, 115, 202, 90, 115, 95, + 27, 161, 190, 138, 253, 105, 145, 67, 134, 27, 66, 79, 246, 167, 127, 63, 30, 210, 76, 153, 185, 16, 75, 189, 142, + 211, 253, 30, 119, 48, 242, 68, 60, 8, 7, 124, 255, 255, 76, 248, 93, 255, 202, 163, 249, 165, 107, 100, 229, 22, + 78, 159, 27, 74, 148, 188, 129, 58, 176, 175, 39, 27, 201, 180, 160, 221, 64, 16, 38, 205, 71, 159, 55, 190, 233, + 83, 25, 91, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2219, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18064507080592806611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10817921138350938352" + } + } + } + ] + }, + "cborHex": "bf1bfab2057add4352d31b9620f9f5a398d8f0ff", + "cborBytes": [191, 27, 250, 178, 5, 122, 221, 67, 82, 211, 27, 150, 32, 249, 245, 163, 152, 216, 240, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2220, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24bb83a91a43f1396b83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34bcfb04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6cbb4130e35940e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf5d8a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2538404907080337173" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12f602" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0236c00262" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edfca0f85407" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "216376382964937599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c2ce" + } + ] + } + } + ] + }, + "cborHex": "bf4a24bb83a91a43f1396b8341004434bcfb0410486cbb4130e35940e90243cf5d8abf1b233a39d05ea1c7154312f6021bfffffffffffffff1450236c00262ff46edfca0f85407d8669f1b0300b92c8468b37f9f0742c2ceffffff", + "cborBytes": [ + 191, 74, 36, 187, 131, 169, 26, 67, 241, 57, 107, 131, 65, 0, 68, 52, 188, 251, 4, 16, 72, 108, 187, 65, 48, 227, + 89, 64, 233, 2, 67, 207, 93, 138, 191, 27, 35, 58, 57, 208, 94, 161, 199, 21, 67, 18, 246, 2, 27, 255, 255, 255, + 255, 255, 255, 255, 241, 69, 2, 54, 192, 2, 98, 255, 70, 237, 252, 160, 248, 84, 7, 216, 102, 159, 27, 3, 0, 185, + 44, 132, 104, 179, 127, 159, 7, 66, 194, 206, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2221, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2431302931739576858" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13311258323324170083" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b21bdb92283b40a1a9f1bb8bb16eb4332ef63ffff", + "cborBytes": [191, 27, 33, 189, 185, 34, 131, 180, 10, 26, 159, 27, 184, 187, 22, 235, 67, 50, 239, 99, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2222, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "484777703630974428" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18299877490073280625" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "65de1b19c6e920" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15614390797657548727" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18134128748365712946" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c3d08c2eee1e2bbd5e275299" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12839225161615618800" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13423437409787979917" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b06ba46c0c3f42ddcd8669f1bfdf6399eccfc20719f4765de1b19c6e9201bd8b175b3ae81a7b71bfba95e0495898e324cc3d08c2eee1e2bbd5e275299ffff1bb22e1742655b32f09f1bba49a1342b1a288dffff", + "cborBytes": [ + 191, 27, 6, 186, 70, 192, 195, 244, 45, 220, 216, 102, 159, 27, 253, 246, 57, 158, 204, 252, 32, 113, 159, 71, + 101, 222, 27, 25, 198, 233, 32, 27, 216, 177, 117, 179, 174, 129, 167, 183, 27, 251, 169, 94, 4, 149, 137, 142, + 50, 76, 195, 208, 140, 46, 238, 30, 43, 189, 94, 39, 82, 153, 255, 255, 27, 178, 46, 23, 66, 101, 91, 50, 240, + 159, 27, 186, 73, 161, 52, 43, 26, 40, 141, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2223, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2780777787253498622" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13586604926514913083" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1692512936263646083" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8629766902251898421" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17738566903616637209" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b26974eaa108aa2fe9f1bbc8d51321c7e5f3b1b177d038c57bf7b831b77c317466f25c6351bf62c0c9daa920919ffff", + "cborBytes": [ + 191, 27, 38, 151, 78, 170, 16, 138, 162, 254, 159, 27, 188, 141, 81, 50, 28, 126, 95, 59, 27, 23, 125, 3, 140, 87, + 191, 123, 131, 27, 119, 195, 23, 70, 111, 37, 198, 53, 27, 246, 44, 12, 157, 170, 146, 9, 25, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2224, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "111be49779952da439c87e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "094df4a7e7bf767345" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "16" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8561082673710355599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9790226799460330115" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "731cd1e3be201864" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15708501296807052513" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bea5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16504238479082812446" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2187545705699135618" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56883cb02a8f5a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6480226118949297581" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6636285285621824933" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16556527418772098495" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc7b90018e149b8c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "365658242126545236" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb2eef3e48cd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2424040808268088664" + } + }, + { + "_tag": "ByteArray", + "bytearray": "61ae639985" + } + ] + } + } + ] + }, + "cborHex": "bf4b111be49779952da439c87e49094df4a7e7bf7673454116bf1b76cf13554b41d48f41141b87dddf673c57aa8348731cd1e3be2018641bd9ffceb3c5f284e142bea51be50ad5741a10741e1b1e5bb93aae20d082ff4756883cb02a8f5ad8669f1b59ee63524c2e5dad9f1b5c18d24e85a3fda51be5c499f795ed0dbfffff48bc7b90018e149b8c1b0513143bdf25815446cb2eef3e48cd9f1b21a3ec45a1dec5584561ae639985ffff", + "cborBytes": [ + 191, 75, 17, 27, 228, 151, 121, 149, 45, 164, 57, 200, 126, 73, 9, 77, 244, 167, 231, 191, 118, 115, 69, 65, 22, + 191, 27, 118, 207, 19, 85, 75, 65, 212, 143, 65, 20, 27, 135, 221, 223, 103, 60, 87, 170, 131, 72, 115, 28, 209, + 227, 190, 32, 24, 100, 27, 217, 255, 206, 179, 197, 242, 132, 225, 66, 190, 165, 27, 229, 10, 213, 116, 26, 16, + 116, 30, 27, 30, 91, 185, 58, 174, 32, 208, 130, 255, 71, 86, 136, 60, 176, 42, 143, 90, 216, 102, 159, 27, 89, + 238, 99, 82, 76, 46, 93, 173, 159, 27, 92, 24, 210, 78, 133, 163, 253, 165, 27, 229, 196, 153, 247, 149, 237, 13, + 191, 255, 255, 72, 188, 123, 144, 1, 142, 20, 155, 140, 27, 5, 19, 20, 59, 223, 37, 129, 84, 70, 203, 46, 239, 62, + 72, 205, 159, 27, 33, 163, 236, 69, 161, 222, 197, 88, 69, 97, 174, 99, 153, 133, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2225, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2170b1da4c7649bda91bb7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14400795472994550402" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5199583597171553611" + } + }, + { + "_tag": "ByteArray", + "bytearray": "418892" + }, + { + "_tag": "ByteArray", + "bytearray": "16816fd72c376cdd02444fdd" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2778d8c64e60cc7fcfa6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11847074156319497554" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "32abb5ad14fd8ef9aa40c0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17711422316144734895" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30c16e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ff7480510220872" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "621161d05500b9ad67" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87a3c012" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9522" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9973205064770225479" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3f1d3a467793c002c0b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8880978039164682242" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd316c4482ce8d4f5eddea0b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9334996459725023923" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c531e24e07f6e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2505ed9b72d01f02" + } + } + ] + }, + "cborHex": "bf4b2170b1da4c7649bda91bb7d8669f1bc7d9e72f1ae4c2829f1b4828a1bba95bb54b434188924c16816fd72c376cdd02444fddffff4a2778d8c64e60cc7fcfa6d8669f1ba469432d3b225d529f4b32abb5ad14fd8ef9aa40c01bf5cb9cc1e4bbb2afffff4330c16ebf480ff7480510220872411449621161d05500b9ad674487a3c0124295221b8a67f12a85c185474aa3f1d3a467793c002c0b1b7b3f92792274c0024cdd316c4482ce8d4f5eddea0b1b818c91d239706ab3ff47c531e24e07f6e7482505ed9b72d01f02ff", + "cborBytes": [ + 191, 75, 33, 112, 177, 218, 76, 118, 73, 189, 169, 27, 183, 216, 102, 159, 27, 199, 217, 231, 47, 26, 228, 194, + 130, 159, 27, 72, 40, 161, 187, 169, 91, 181, 75, 67, 65, 136, 146, 76, 22, 129, 111, 215, 44, 55, 108, 221, 2, + 68, 79, 221, 255, 255, 74, 39, 120, 216, 198, 78, 96, 204, 127, 207, 166, 216, 102, 159, 27, 164, 105, 67, 45, 59, + 34, 93, 82, 159, 75, 50, 171, 181, 173, 20, 253, 142, 249, 170, 64, 192, 27, 245, 203, 156, 193, 228, 187, 178, + 175, 255, 255, 67, 48, 193, 110, 191, 72, 15, 247, 72, 5, 16, 34, 8, 114, 65, 20, 73, 98, 17, 97, 208, 85, 0, 185, + 173, 103, 68, 135, 163, 192, 18, 66, 149, 34, 27, 138, 103, 241, 42, 133, 193, 133, 71, 74, 163, 241, 211, 164, + 103, 121, 60, 0, 44, 11, 27, 123, 63, 146, 121, 34, 116, 192, 2, 76, 221, 49, 108, 68, 130, 206, 141, 79, 94, 221, + 234, 11, 27, 129, 140, 145, 210, 57, 112, 106, 179, 255, 71, 197, 49, 226, 78, 7, 246, 231, 72, 37, 5, 237, 155, + 114, 208, 31, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2226, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5564698486520643634" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17030301825770043497" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9b05885e6f77a5790d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5624474926116999836" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41dd5abeef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13024816357589069344" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14bf8104337789201c241e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64e9da85a5f7f03bc7060a87" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4743746611279674632" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a82c09617a6732454aec19d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f1bed5c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd5d1ed3f4bd790a83d4eb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9469844163303458302" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13729679228064034021" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2188814493844159738" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7018761656727947549" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2234017588021591896" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12649863578730885961" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b463c1d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16041049569571340065" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9586477266494326812" + } + } + } + ] + }, + "cborHex": "bf1b4d39c7ca5b378032d8669f1bec57c947b6b5b8699f499b05885e6f77a5790dffff1b4e0e2625434b929cbf4541dd5abeef1bb4c1717802cb2e2041624b14bf8104337789201c241e4c64e9da85a5f7f03bc7060a871b41d52c68d5c9bd084ca82c09617a6732454aec19d0445f1bed5c4bdd5d1ed3f4bd790a83d4eb414aff1b836ba517d80245fe9f1bbe899e83d4d0ece51b1e603b2f70cebcfa1b6167a68a3066c91d1b1f00d328f4007f58ff1baf8d57e72b67f349448b463c1d1bde9d41982abb7f211b850a024854c0881cff", + "cborBytes": [ + 191, 27, 77, 57, 199, 202, 91, 55, 128, 50, 216, 102, 159, 27, 236, 87, 201, 71, 182, 181, 184, 105, 159, 73, 155, + 5, 136, 94, 111, 119, 165, 121, 13, 255, 255, 27, 78, 14, 38, 37, 67, 75, 146, 156, 191, 69, 65, 221, 90, 190, + 239, 27, 180, 193, 113, 120, 2, 203, 46, 32, 65, 98, 75, 20, 191, 129, 4, 51, 119, 137, 32, 28, 36, 30, 76, 100, + 233, 218, 133, 165, 247, 240, 59, 199, 6, 10, 135, 27, 65, 213, 44, 104, 213, 201, 189, 8, 76, 168, 44, 9, 97, + 122, 103, 50, 69, 74, 236, 25, 208, 68, 95, 27, 237, 92, 75, 221, 93, 30, 211, 244, 189, 121, 10, 131, 212, 235, + 65, 74, 255, 27, 131, 107, 165, 23, 216, 2, 69, 254, 159, 27, 190, 137, 158, 131, 212, 208, 236, 229, 27, 30, 96, + 59, 47, 112, 206, 188, 250, 27, 97, 103, 166, 138, 48, 102, 201, 29, 27, 31, 0, 211, 40, 244, 0, 127, 88, 255, 27, + 175, 141, 87, 231, 43, 103, 243, 73, 68, 139, 70, 60, 29, 27, 222, 157, 65, 152, 42, 187, 127, 33, 27, 133, 10, 2, + 72, 84, 192, 136, 28, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2227, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9772127045143948208" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12980560611241734103" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "155cf6091ec3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10051409806254333728" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8307" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10728174188462026591" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15951598065739287381" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13668825948189170887" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15544163288364040422" + } + } + } + ] + }, + "cborHex": "bf1b879d91c5c9caebb0d8669f1bb424371a1a7dafd79f46155cf6091ec3ffff1b8b7dc7f6d1aadf204283071b94e2219587cb2f5f1bdd5f75ecf432cb551bbdb16cc782751cc71bd7b7f6277d9b40e6ff", + "cborBytes": [ + 191, 27, 135, 157, 145, 197, 201, 202, 235, 176, 216, 102, 159, 27, 180, 36, 55, 26, 26, 125, 175, 215, 159, 70, + 21, 92, 246, 9, 30, 195, 255, 255, 27, 139, 125, 199, 246, 209, 170, 223, 32, 66, 131, 7, 27, 148, 226, 33, 149, + 135, 203, 47, 95, 27, 221, 95, 117, 236, 244, 50, 203, 85, 27, 189, 177, 108, 199, 130, 117, 28, 199, 27, 215, + 183, 246, 39, 125, 155, 64, 230, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2228, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2271425732587568794" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13555058085845897639" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7161712794264581361" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fffcdededdf2604384" + }, + { + "_tag": "ByteArray", + "bytearray": "b47e06af9a91ee" + }, + { + "_tag": "ByteArray", + "bytearray": "0a6c" + }, + { + "_tag": "ByteArray", + "bytearray": "e037420e1d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15715817465367087477" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9197001585701028932" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99c72074a637c6ce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "934a3c9da5af033b9dc8743f" + } + } + ] + }, + "cborHex": "bf1b1f85b9ab54903e9a1bbc1d3d82e4a191a71b636383d78d82b4f19f49fffcdededdf260438447b47e06af9a91ee420a6c45e037420e1dff1bda19ccb80215c9751b7fa25036e26a04444899c72074a637c6ce4c934a3c9da5af033b9dc8743fff", + "cborBytes": [ + 191, 27, 31, 133, 185, 171, 84, 144, 62, 154, 27, 188, 29, 61, 130, 228, 161, 145, 167, 27, 99, 99, 131, 215, 141, + 130, 180, 241, 159, 73, 255, 252, 222, 222, 221, 242, 96, 67, 132, 71, 180, 126, 6, 175, 154, 145, 238, 66, 10, + 108, 69, 224, 55, 66, 14, 29, 255, 27, 218, 25, 204, 184, 2, 21, 201, 117, 27, 127, 162, 80, 54, 226, 106, 4, 68, + 72, 153, 199, 32, 116, 166, 55, 198, 206, 76, 147, 74, 60, 157, 165, 175, 3, 59, 157, 200, 116, 63, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2229, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13820692850262315866" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "465611133511833295" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14228498598950474393" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16257686862901125347" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6091426401293777098" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c870edc563e0a778c2fe53de" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9807216494786824359" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16698421046336139141" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b345f864057" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec6108652cdb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a00f8d652f9096bbe87c5c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a2a72e1bd4878cd77d1d74" + } + ] + } + } + ] + }, + "cborHex": "bf1bbfccf6ec11aa935a1b06762edbe87096cf1bc575c81705961299d8669f1be19ee8109cc1a0e39f1b54891809c88d38ca4cc870edc563e0a778c2fe53de1b881a3b70ef1ec8a71be7bcb57838c5af85ffff464b345f86405746ec6108652cdb4ba00f8d652f9096bbe87c5c9f4ba2a72e1bd4878cd77d1d74ffff", + "cborBytes": [ + 191, 27, 191, 204, 246, 236, 17, 170, 147, 90, 27, 6, 118, 46, 219, 232, 112, 150, 207, 27, 197, 117, 200, 23, 5, + 150, 18, 153, 216, 102, 159, 27, 225, 158, 232, 16, 156, 193, 160, 227, 159, 27, 84, 137, 24, 9, 200, 141, 56, + 202, 76, 200, 112, 237, 197, 99, 224, 167, 120, 194, 254, 83, 222, 27, 136, 26, 59, 112, 239, 30, 200, 167, 27, + 231, 188, 181, 120, 56, 197, 175, 133, 255, 255, 70, 75, 52, 95, 134, 64, 87, 70, 236, 97, 8, 101, 44, 219, 75, + 160, 15, 141, 101, 47, 144, 150, 187, 232, 124, 92, 159, 75, 162, 167, 46, 27, 212, 135, 140, 215, 125, 29, 116, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2230, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3139700221859711293" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1683928540750683246" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8885276736475675660" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7020549364543430343" + } + } + } + ] + }, + "cborHex": "bf1b2b9274b78929c93d1b175e841602961c6e1b7b4ed81d98acbc0c1b616e007359b49ec7ff", + "cborBytes": [ + 191, 27, 43, 146, 116, 183, 137, 41, 201, 61, 27, 23, 94, 132, 22, 2, 150, 28, 110, 27, 123, 78, 216, 29, 152, + 172, 188, 12, 27, 97, 110, 0, 115, 89, 180, 158, 199, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2231, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1615301463628311100" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3788481569142778672" + } + }, + { + "_tag": "ByteArray", + "bytearray": "67b410bf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11930790405144392196" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12478726910261254005" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7669732198488195407" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3190506170723823894" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cbacab507fcb" + }, + { + "_tag": "ByteArray", + "bytearray": "076b5c65917b7808e7c8bdb1" + }, + { + "_tag": "ByteArray", + "bytearray": "8f9595" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17692459274792970465" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9030209698557250868" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f449" + }, + { + "_tag": "ByteArray", + "bytearray": "1fb59329cbbfe0e9c1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5014990865311523543" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e343345615f1e8" + }, + { + "_tag": "ByteArray", + "bytearray": "319257d2" + } + ] + } + } + ] + }, + "cborHex": "bf1b166ab41f78bbea3c9f1b349363ea36deab304467b410bf1ba592aea9544532041bad2d58027f3ad775ff1b6a705ccc6d43c14f9f1b2c46f4754faf711646cbacab507fcb4c076b5c65917b7808e7c8bdb1438f95951bf5883df8c519a8e1ff1b7d51bfe071cacd349f42f449491fb59329cbbfe0e9c11b4598d39f16b8e2d747e343345615f1e844319257d2ffff", + "cborBytes": [ + 191, 27, 22, 106, 180, 31, 120, 187, 234, 60, 159, 27, 52, 147, 99, 234, 54, 222, 171, 48, 68, 103, 180, 16, 191, + 27, 165, 146, 174, 169, 84, 69, 50, 4, 27, 173, 45, 88, 2, 127, 58, 215, 117, 255, 27, 106, 112, 92, 204, 109, 67, + 193, 79, 159, 27, 44, 70, 244, 117, 79, 175, 113, 22, 70, 203, 172, 171, 80, 127, 203, 76, 7, 107, 92, 101, 145, + 123, 120, 8, 231, 200, 189, 177, 67, 143, 149, 149, 27, 245, 136, 61, 248, 197, 25, 168, 225, 255, 27, 125, 81, + 191, 224, 113, 202, 205, 52, 159, 66, 244, 73, 73, 31, 181, 147, 41, 203, 191, 224, 233, 193, 27, 69, 152, 211, + 159, 22, 184, 226, 215, 71, 227, 67, 52, 86, 21, 241, 232, 68, 49, 146, 87, 210, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2232, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09ef0bd19bcbd79799aa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "234e786fb0d1f2" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11005596705210924168" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a043746f803e5045" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0a209426e768409" + } + } + ] + }, + "cborHex": "bf4a09ef0bd19bcbd79799aa42f2da47234e786fb0d1f29f1b98bbbbe4ab4e7c88ff48a043746f803e504548b0a209426e768409ff", + "cborBytes": [ + 191, 74, 9, 239, 11, 209, 155, 203, 215, 151, 153, 170, 66, 242, 218, 71, 35, 78, 120, 111, 176, 209, 242, 159, + 27, 152, 187, 187, 228, 171, 78, 124, 136, 255, 72, 160, 67, 116, 111, 128, 62, 80, 69, 72, 176, 162, 9, 66, 110, + 118, 132, 9, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2233, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff9a0ff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 249, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2234, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12454183331727601480" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1bacd625c14f36ef48a0ff", + "cborBytes": [191, 27, 172, 214, 37, 193, 79, 54, 239, 72, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2235, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e3b0a631593ef1b14d2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9477104596013027530" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3007167064041411729" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15809798744393708088" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "422b74802bcf17" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad31" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec723cfa6537235f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "81943ed9dfd6dd" + }, + { + "_tag": "ByteArray", + "bytearray": "beb057ec" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12877557996966615807" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a3e3b0a631593ef1b14d2d8669f1b8385706b109410ca9f1b29bb9a8318715491ffff41421bdb67b031b200f23847422b74802bcf1742ad3148ec723cfa6537235f9f4781943ed9dfd6dd44beb057ec1bb2b646c51faf9affffff", + "cborBytes": [ + 191, 74, 62, 59, 10, 99, 21, 147, 239, 27, 20, 210, 216, 102, 159, 27, 131, 133, 112, 107, 16, 148, 16, 202, 159, + 27, 41, 187, 154, 131, 24, 113, 84, 145, 255, 255, 65, 66, 27, 219, 103, 176, 49, 178, 0, 242, 56, 71, 66, 43, + 116, 128, 43, 207, 23, 66, 173, 49, 72, 236, 114, 60, 250, 101, 55, 35, 95, 159, 71, 129, 148, 62, 217, 223, 214, + 221, 68, 190, 176, 87, 236, 27, 178, 182, 70, 197, 31, 175, 154, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2236, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3857389024959107877" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3ef8ae8cfeca19d4faa753ba" + }, + { + "_tag": "ByteArray", + "bytearray": "1739bd0b3e0308587892" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15792679404449006578" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13507640069271735340" + } + } + ] + } + } + ] + }, + "cborHex": "bf049f1b358832e1812d93254c3ef8ae8cfeca19d4faa753ba4a1739bd0b3e03085878921bdb2ade3ec1cf83f21bbb74c71392c64c2cffff", + "cborBytes": [ + 191, 4, 159, 27, 53, 136, 50, 225, 129, 45, 147, 37, 76, 62, 248, 174, 140, 254, 202, 25, 212, 250, 167, 83, 186, + 74, 23, 57, 189, 11, 62, 3, 8, 88, 120, 146, 27, 219, 42, 222, 62, 193, 207, 131, 242, 27, 187, 116, 199, 19, 146, + 198, 76, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2237, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "99dfdf87597404de502200" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c24f41a9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14476339576355270623" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7e8b07b46362ece577eda6" + } + ] + } + } + ] + }, + "cborHex": "bf4b99dfdf87597404de5022000644c24f41a99f1bc8e64a255095afdf4b7e8b07b46362ece577eda6ffff", + "cborBytes": [ + 191, 75, 153, 223, 223, 135, 89, 116, 4, 222, 80, 34, 0, 6, 68, 194, 79, 65, 169, 159, 27, 200, 230, 74, 37, 80, + 149, 175, 223, 75, 126, 139, 7, 180, 99, 98, 236, 229, 119, 237, 166, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2238, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1841135384831147885" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16147746949136794432" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13596179592655483520" + } + }, + { + "_tag": "ByteArray", + "bytearray": "efdbe6" + }, + { + "_tag": "ByteArray", + "bytearray": "2f9635e49f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6711169934177580867" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15655161439121854961" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f792adb7" + }, + { + "_tag": "ByteArray", + "bytearray": "7d09dae26350a173da" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1224653248412296686" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b198d06e0b4433f6dd8669f1be018524bba3243409f1bbcaf554dcaa5328043efdbe6452f9635e49fffff1b5d22dd7f71efb743d8669f1bd9424e62604051f19f44f792adb7497d09dae26350a173da1b10fed7a414a4a5eeffffff", + "cborBytes": [ + 191, 27, 25, 141, 6, 224, 180, 67, 63, 109, 216, 102, 159, 27, 224, 24, 82, 75, 186, 50, 67, 64, 159, 27, 188, + 175, 85, 77, 202, 165, 50, 128, 67, 239, 219, 230, 69, 47, 150, 53, 228, 159, 255, 255, 27, 93, 34, 221, 127, 113, + 239, 183, 67, 216, 102, 159, 27, 217, 66, 78, 98, 96, 64, 81, 241, 159, 68, 247, 146, 173, 183, 73, 125, 9, 218, + 226, 99, 80, 161, 115, 218, 27, 16, 254, 215, 164, 20, 164, 165, 238, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2239, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "90d94c14d81375d6367d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7899756646791911663" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4a90d94c14d81375d6367dbf1b6da192d0c81018ef08ffff", + "cborBytes": [ + 191, 74, 144, 217, 76, 20, 216, 19, 117, 214, 54, 125, 191, 27, 109, 161, 146, 208, 200, 16, 24, 239, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2240, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3265c413dd9da2efc7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4776599120490025494" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13959476787198139806" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba25" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf493265c413dd9da2efc7bf1b4249e397b34052161bc1ba062d6f419d9eff42ba25d9050380ff", + "cborBytes": [ + 191, 73, 50, 101, 196, 19, 221, 157, 162, 239, 199, 191, 27, 66, 73, 227, 151, 179, 64, 82, 22, 27, 193, 186, 6, + 45, 111, 65, 157, 158, 255, 66, 186, 37, 217, 5, 3, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2241, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17935210909964587702" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3e0410fe800523a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + ] + } + } + ] + }, + "cborHex": "bf412cd8669f1bf8e6ab4c3c2652b680ff48c3e0410fe800523a9f1bfffffffffffffff7ffff", + "cborBytes": [ + 191, 65, 44, 216, 102, 159, 27, 248, 230, 171, 76, 60, 38, 82, 182, 128, 255, 72, 195, 224, 65, 15, 232, 0, 82, + 58, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2242, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "87208408433105627" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11368597209253416971" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4010607" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5909352312574363712" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6f3d6a34d77f4ce3878" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "062204000301d104" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa0405270714fd0003cc" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17689403087454901534" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4102d8669f1b0135d395de151adb9f1b9dc55eedac0c100bffff44c40106071b52023c9e83a0c8404ac6f3d6a34d77f4ce387848062204000301d1044afa0405270714fd0003ccd8669f1bf57d6262b472951e80ffff", + "cborBytes": [ + 191, 65, 2, 216, 102, 159, 27, 1, 53, 211, 149, 222, 21, 26, 219, 159, 27, 157, 197, 94, 237, 172, 12, 16, 11, + 255, 255, 68, 196, 1, 6, 7, 27, 82, 2, 60, 158, 131, 160, 200, 64, 74, 198, 243, 214, 163, 77, 119, 244, 206, 56, + 120, 72, 6, 34, 4, 0, 3, 1, 209, 4, 74, 250, 4, 5, 39, 7, 20, 253, 0, 3, 204, 216, 102, 159, 27, 245, 125, 98, 98, + 180, 114, 149, 30, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2243, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17955718792555639568" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5fe54a24e50bdc3269a0ec" + } + ] + } + } + ] + }, + "cborHex": "bf1bf92f871bbd15b3109f4b5fe54a24e50bdc3269a0ecffff", + "cborBytes": [ + 191, 27, 249, 47, 135, 27, 189, 21, 179, 16, 159, 75, 95, 229, 74, 36, 229, 11, 220, 50, 105, 160, 236, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2244, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16712516185597124252" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "540160615075835766" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12473415562279553143" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2f" + }, + { + "_tag": "ByteArray", + "bytearray": "b04e914e" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18236945168910939540" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + } + ] + }, + "cborHex": "bf049f1be7eec8ec917b9e9c1b077f0937af406f761bad1a795ded808877412f44b04e914eff1bfd16a501f536759414ff", + "cborBytes": [ + 191, 4, 159, 27, 231, 238, 200, 236, 145, 123, 158, 156, 27, 7, 127, 9, 55, 175, 64, 111, 118, 27, 173, 26, 121, + 93, 237, 128, 136, 119, 65, 47, 68, 176, 78, 145, 78, 255, 27, 253, 22, 165, 1, 245, 54, 117, 148, 20, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2245, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a598805df3b03303a99c78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4661629257411637240" + } + } + } + ] + }, + "cborHex": "bf4ba598805df3b03303a99c781b40b16f1c7a96aff8ff", + "cborBytes": [ + 191, 75, 165, 152, 128, 93, 243, 176, 51, 3, 169, 156, 120, 27, 64, 177, 111, 28, 122, 150, 175, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2246, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7255947183775384192" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3396198975495779383" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13030154942008862951" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c394738853bdf774631af0a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15422239053400380842" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6545159779294575636" + } + }, + { + "_tag": "ByteArray", + "bytearray": "815ffc678f781c9fa39d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca36bdd1ae861a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2648394327091264300" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13163995" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15278801389143693138" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b82d9f563e07e04590" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91a2b32fa80ff634aa43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cfaa0b58e6" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b64b24d851ded8280d8669f1b2f21b8f970f8b4379f1bb4d468e20ebd28e7ffff4c8c394738853bdf774631af0ad8669f1bd606ccb5631615aa9f1b5ad514243b06fc144a815ffc678f781c9fa39dffff47ca36bdd1ae861abf1b24c0fc9bd36f3b2c44131639951bd40934e9b1a7975249b82d9f563e07e045904a91a2b32fa80ff634aa4345cfaa0b58e6ffff", + "cborBytes": [ + 191, 27, 100, 178, 77, 133, 29, 237, 130, 128, 216, 102, 159, 27, 47, 33, 184, 249, 112, 248, 180, 55, 159, 27, + 180, 212, 104, 226, 14, 189, 40, 231, 255, 255, 76, 140, 57, 71, 56, 133, 59, 223, 119, 70, 49, 175, 10, 216, 102, + 159, 27, 214, 6, 204, 181, 99, 22, 21, 170, 159, 27, 90, 213, 20, 36, 59, 6, 252, 20, 74, 129, 95, 252, 103, 143, + 120, 28, 159, 163, 157, 255, 255, 71, 202, 54, 189, 209, 174, 134, 26, 191, 27, 36, 192, 252, 155, 211, 111, 59, + 44, 68, 19, 22, 57, 149, 27, 212, 9, 52, 233, 177, 167, 151, 82, 73, 184, 45, 159, 86, 62, 7, 224, 69, 144, 74, + 145, 162, 179, 47, 168, 15, 246, 52, 170, 67, 69, 207, 170, 11, 88, 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2247, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1015221578487755630" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2192048383790282534" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1071665558845227786" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d355fc2b6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8193137241017195883" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3236288883259359218" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8250306449539123128" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "149310587914203133" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9338055275832044430" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4194743334596005348" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17216933553240599213" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0646d614540f51" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff2bf1b0e16caa59212f36e1b1e6bb8641e49f7261b0edf5225d8fd830a453d355fc2b61b71b3dee95eda9d6b1b2ce99b97bd383ff21b727efa00fce4c7b81b0212753049d4affd1b81976fcc58ee6b8e1b3a36b8d68e884de41beeeed5d8f268eaad470646d614540f51ff1bfffffffffffffffc1bffffffffffffffecff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 242, 191, 27, 14, 22, 202, 165, 146, 18, 243, 110, 27, 30, 107, 184, + 100, 30, 73, 247, 38, 27, 14, 223, 82, 37, 216, 253, 131, 10, 69, 61, 53, 95, 194, 182, 27, 113, 179, 222, 233, + 94, 218, 157, 107, 27, 44, 233, 155, 151, 189, 56, 63, 242, 27, 114, 126, 250, 0, 252, 228, 199, 184, 27, 2, 18, + 117, 48, 73, 212, 175, 253, 27, 129, 151, 111, 204, 88, 238, 107, 142, 27, 58, 54, 184, 214, 142, 136, 77, 228, + 27, 238, 238, 213, 216, 242, 104, 234, 173, 71, 6, 70, 214, 20, 84, 15, 81, 255, 27, 255, 255, 255, 255, 255, 255, + 255, 252, 27, 255, 255, 255, 255, 255, 255, 255, 236, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2248, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3384070040804863308" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19198d115d30cbdafc1e72" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5040728087931197250" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11860683517392367946" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11717871122373516933" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1814371869376298464" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0dbf1b2ef6a1c5c5372d4c4b19198d115d30cbdafc1e721b45f4437d327917421ba4999cd18780b14a1ba29e3db3ace19e851b192df19a2ca2bde0ffff", + "cborBytes": [ + 191, 13, 191, 27, 46, 246, 161, 197, 197, 55, 45, 76, 75, 25, 25, 141, 17, 93, 48, 203, 218, 252, 30, 114, 27, 69, + 244, 67, 125, 50, 121, 23, 66, 27, 164, 153, 156, 209, 135, 128, 177, 74, 27, 162, 158, 61, 179, 172, 225, 158, + 133, 27, 25, 45, 241, 154, 44, 162, 189, 224, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2249, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24b4726e791616b965feb37a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10958639113081582593" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10078451687394808441" + } + }, + { + "_tag": "ByteArray", + "bytearray": "94ad5bcc0d63601965" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12694321900899785185" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67b3ca23" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13371433331045215754" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a551680c25a0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5115062867077494797" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7eebb3e06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5314504817612854256" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4316" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6047806991524666502" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6adb80313c62d2a503f33ce5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10679620704694621743" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "087c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15099723251754746348" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "205c28eb8d942351643f" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9e93deadb1897" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6171957141159096147" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "198b4408265c4b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90e7b0b0a38e3221624dc1f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d64476fe43792e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d323317e4a7f036c4c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1806811848513282293" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb515113a27497" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "51de957ac8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1555619304060385133" + } + }, + { + "_tag": "ByteArray", + "bytearray": "32" + } + ] + } + } + ] + }, + "cborHex": "bf4c24b4726e791616b965feb37ad8669f1b9814e83644edf4019f417e1b8bddda69691a92794994ad5bcc0d636019651bb02b4a82ef97d9e1ffff4467b3ca231bb990dfc50ac4ae0a46a551680c25a0bf1b46fc5a93abf1f80d45c7eebb3e061b49c0e9f962ea93f04243161b53ee206a87f39c864c6adb80313c62d2a503f33ce51b9435a272a73ad62f42087c1bd18cfe4bb38c41ec4a205c28eb8d942351643fff47e9e93deadb1897bf1b55a73251c7b92f5347198b4408265c4b4c90e7b0b0a38e3221624dc1f547d64476fe43792e49d323317e4a7f036c4c1b191315cda699e0f5ff47eb515113a274979f4551de957ac81b1596ab83d842776d4132ffff", + "cborBytes": [ + 191, 76, 36, 180, 114, 110, 121, 22, 22, 185, 101, 254, 179, 122, 216, 102, 159, 27, 152, 20, 232, 54, 68, 237, + 244, 1, 159, 65, 126, 27, 139, 221, 218, 105, 105, 26, 146, 121, 73, 148, 173, 91, 204, 13, 99, 96, 25, 101, 27, + 176, 43, 74, 130, 239, 151, 217, 225, 255, 255, 68, 103, 179, 202, 35, 27, 185, 144, 223, 197, 10, 196, 174, 10, + 70, 165, 81, 104, 12, 37, 160, 191, 27, 70, 252, 90, 147, 171, 241, 248, 13, 69, 199, 238, 187, 62, 6, 27, 73, + 192, 233, 249, 98, 234, 147, 240, 66, 67, 22, 27, 83, 238, 32, 106, 135, 243, 156, 134, 76, 106, 219, 128, 49, 60, + 98, 210, 165, 3, 243, 60, 229, 27, 148, 53, 162, 114, 167, 58, 214, 47, 66, 8, 124, 27, 209, 140, 254, 75, 179, + 140, 65, 236, 74, 32, 92, 40, 235, 141, 148, 35, 81, 100, 63, 255, 71, 233, 233, 61, 234, 219, 24, 151, 191, 27, + 85, 167, 50, 81, 199, 185, 47, 83, 71, 25, 139, 68, 8, 38, 92, 75, 76, 144, 231, 176, 176, 163, 142, 50, 33, 98, + 77, 193, 245, 71, 214, 68, 118, 254, 67, 121, 46, 73, 211, 35, 49, 126, 74, 127, 3, 108, 76, 27, 25, 19, 21, 205, + 166, 153, 224, 245, 255, 71, 235, 81, 81, 19, 162, 116, 151, 159, 69, 81, 222, 149, 122, 200, 27, 21, 150, 171, + 131, 216, 66, 119, 109, 65, 50, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2250, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15fefae0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "111739071802838771" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fe" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c8791b20588bb8a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adbf2aa8b5970a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0d3280502f203fb55ffffd8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e630916f1051" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3732992689348589449" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8e7e173cb" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4415fefae0d8669f1b018cfa1802570ef39f41feffff486c8791b20588bb8ad9050a8047adbf2aa8b5970a054cc0d3280502f203fb55ffffd8d905018046e630916f1051d8669f1b33ce41129dc0b78980ff45e8e7e173cb80ff", + "cborBytes": [ + 191, 68, 21, 254, 250, 224, 216, 102, 159, 27, 1, 140, 250, 24, 2, 87, 14, 243, 159, 65, 254, 255, 255, 72, 108, + 135, 145, 178, 5, 136, 187, 138, 217, 5, 10, 128, 71, 173, 191, 42, 168, 181, 151, 10, 5, 76, 192, 211, 40, 5, 2, + 242, 3, 251, 85, 255, 255, 216, 217, 5, 1, 128, 70, 230, 48, 145, 111, 16, 81, 216, 102, 159, 27, 51, 206, 65, 18, + 157, 192, 183, 137, 128, 255, 69, 232, 231, 225, 115, 203, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2251, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5106678945142266458" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d24c5aa3e6de7dba3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13540821366321358551" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10784933166651178867" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1922" + }, + { + "_tag": "ByteArray", + "bytearray": "a43b2c53b9f9dc81b7" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef6af9f7d247dd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7221279936147320798" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11442593034146817488" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8433415141671614908" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b77b8fb6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14290571214786025897" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11690950279147687911" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b46de9171bb2bda5a80496d24c5aa3e6de7dba3d8669f1bbbeaa94a529aa6d79f1b95abc792f4927f7342192249a43b2c53b9f9dc81b7ffff47ef6af9f7d247ddbf1b643723d789b76fde1b9ecc41bd35ae25d01b75098263a2bcb9bc44b77b8fb61bc6524ece1ebe59a91ba23e99566b5a0fe7ffff", + "cborBytes": [ + 191, 27, 70, 222, 145, 113, 187, 43, 218, 90, 128, 73, 109, 36, 197, 170, 62, 109, 231, 219, 163, 216, 102, 159, + 27, 187, 234, 169, 74, 82, 154, 166, 215, 159, 27, 149, 171, 199, 146, 244, 146, 127, 115, 66, 25, 34, 73, 164, + 59, 44, 83, 185, 249, 220, 129, 183, 255, 255, 71, 239, 106, 249, 247, 210, 71, 221, 191, 27, 100, 55, 35, 215, + 137, 183, 111, 222, 27, 158, 204, 65, 189, 53, 174, 37, 208, 27, 117, 9, 130, 99, 162, 188, 185, 188, 68, 183, + 123, 143, 182, 27, 198, 82, 78, 206, 30, 190, 89, 169, 27, 162, 62, 153, 86, 107, 90, 15, 231, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2252, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "472ee1bda121" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4038609634598728939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5db1c65ed7268d4dd3ba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7005084038363690141" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f48ad7f7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8123152605244813082" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10990841638479353767" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9467744667604515725" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3109082492698136595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11637820476573068776" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7687764026539362511" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15411632574001847391" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9830418110739883142" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73433ea97580f3342254d934" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5562161755807323320" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "96a6ae20268ad122f7a2d5" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7587404966066659343" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "86216538594420409" + } + } + ] + } + } + ] + }, + "cborHex": "bf46472ee1bda121bf1b380c0610b0ba34eb4a5db1c65ed7268d4dd3ba1b61370ed1806d349d44f48ad7f71b70bb3c4193e7ef1a1b9887503cfc2257a71b83642f9ce8aa7b8d1b2b25ae0df2a890131ba181d81049e7ade81b6ab06ca68ee7c8cf1bd5e11e2bf6381c5f1b886ca9301c37a486ff4c73433ea97580f3342254d934d8669f1b4d30c4a5b62894b89f4b96a6ae20268ad122f7a2d5ffff41db9f1b694be09de970200f1b01324d7c2caf26b9ffff", + "cborBytes": [ + 191, 70, 71, 46, 225, 189, 161, 33, 191, 27, 56, 12, 6, 16, 176, 186, 52, 235, 74, 93, 177, 198, 94, 215, 38, 141, + 77, 211, 186, 27, 97, 55, 14, 209, 128, 109, 52, 157, 68, 244, 138, 215, 247, 27, 112, 187, 60, 65, 147, 231, 239, + 26, 27, 152, 135, 80, 60, 252, 34, 87, 167, 27, 131, 100, 47, 156, 232, 170, 123, 141, 27, 43, 37, 174, 13, 242, + 168, 144, 19, 27, 161, 129, 216, 16, 73, 231, 173, 232, 27, 106, 176, 108, 166, 142, 231, 200, 207, 27, 213, 225, + 30, 43, 246, 56, 28, 95, 27, 136, 108, 169, 48, 28, 55, 164, 134, 255, 76, 115, 67, 62, 169, 117, 128, 243, 52, + 34, 84, 217, 52, 216, 102, 159, 27, 77, 48, 196, 165, 182, 40, 148, 184, 159, 75, 150, 166, 174, 32, 38, 138, 209, + 34, 247, 162, 213, 255, 255, 65, 219, 159, 27, 105, 75, 224, 157, 233, 112, 32, 15, 27, 1, 50, 77, 124, 44, 175, + 38, 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2253, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1260509307348727617" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8111751394863586432" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12261456276964570095" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2db537c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17649481586062768495" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d578" + } + } + ] + }, + "cborHex": "bf1b117e3a895c9837411b7092baea6d1f9c801baa2971851974f3ef442db537c11bf4ef8dfdd711b96f42d578ff", + "cborBytes": [ + 191, 27, 17, 126, 58, 137, 92, 152, 55, 65, 27, 112, 146, 186, 234, 109, 31, 156, 128, 27, 170, 41, 113, 133, 25, + 116, 243, 239, 68, 45, 181, 55, 193, 27, 244, 239, 141, 253, 215, 17, 185, 111, 66, 213, 120, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2254, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1103891194787056984" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3aa08f36110d95ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5903601854151577038" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7199813940254240893" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0f51cf3167f6cd58bf483aa08f36110d95ed1b51edce9b940acdce41ee1b63eae0a1e5c2707dffff", + "cborBytes": [ + 191, 27, 15, 81, 207, 49, 103, 246, 205, 88, 191, 72, 58, 160, 143, 54, 17, 13, 149, 237, 27, 81, 237, 206, 155, + 148, 10, 205, 206, 65, 238, 27, 99, 234, 224, 161, 229, 194, 112, 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2255, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "67" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a128ee755f5b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07f9" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af070100f8041601fb03" + } + } + ] + }, + "cborHex": "bf02bf416702477a128ee755f5b44207f9ff1bfffffffffffffff64aaf070100f8041601fb03ff", + "cborBytes": [ + 191, 2, 191, 65, 103, 2, 71, 122, 18, 142, 231, 85, 245, 180, 66, 7, 249, 255, 27, 255, 255, 255, 255, 255, 255, + 255, 246, 74, 175, 7, 1, 0, 248, 4, 22, 1, 251, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2256, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a15f932241" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be43aade9efdbcbb9187bc" + }, + { + "_tag": "ByteArray", + "bytearray": "a61a5d2e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3537359222755280743" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "571506609324228551" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ecb6ed" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7815409627695545702" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf0045a15f932241119f4bbe43aade9efdbcbb9187bc44a61a5d2e1b31173978ab47c7671b07ee663bb38effc743ecb6edff1b6c75e9a608f5fd6680ff", + "cborBytes": [ + 191, 0, 69, 161, 95, 147, 34, 65, 17, 159, 75, 190, 67, 170, 222, 158, 253, 188, 187, 145, 135, 188, 68, 166, 26, + 93, 46, 27, 49, 23, 57, 120, 171, 71, 199, 103, 27, 7, 238, 102, 59, 179, 142, 255, 199, 67, 236, 182, 237, 255, + 27, 108, 117, 233, 166, 8, 245, 253, 102, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2257, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13700556072995383443" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8436665193238863711" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3048075532093585874" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5170592572521751298" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bbe222728e435e893d8669f1b75150e4b3be79f5f9f1b2a4cf08c0aff79d21b47c1a28cbb6ea302ffffff", + "cborBytes": [ + 191, 27, 190, 34, 39, 40, 228, 53, 232, 147, 216, 102, 159, 27, 117, 21, 14, 75, 59, 231, 159, 95, 159, 27, 42, + 76, 240, 140, 10, 255, 121, 210, 27, 71, 193, 162, 140, 187, 110, 163, 2, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2258, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2131fdd15849d7f5b1c2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11751664091735485744" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13333024261684442562" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41ab5a537d58ff" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2251102589417246745" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3d2311cfe6917171883626bc" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d804dc6548ef0c2ab261" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10521546407259407513" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "247183a2bc8244ae7b1ea4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7208" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcd87c3d4e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6867614322657645468" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1913a066b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18299372707250801855" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ba361f77e7" + }, + { + "_tag": "ByteArray", + "bytearray": "84ad776d" + }, + { + "_tag": "ByteArray", + "bytearray": "b9f4eb26d10636f7a5a5" + } + ] + } + } + ] + }, + "cborHex": "bf4a2131fdd15849d7f5b1c2d8669f1ba3164c3a7b9b6d309f1bb9086aecb35db5c2ffff4741ab5a537d58ffd8669f1b1f3d85e0d32d50199f4c3d2311cfe6917171883626bcffff4ad804dc6548ef0c2ab261bf1b92040ab63c7c04994b247183a2bc8244ae7b1ea4427208416cff45dcd87c3d4e1b5f4eaad71c64d39c45f1913a066b9f1bfdf46e85e4298cbf45ba361f77e74484ad776d4ab9f4eb26d10636f7a5a5ffff", + "cborBytes": [ + 191, 74, 33, 49, 253, 209, 88, 73, 215, 245, 177, 194, 216, 102, 159, 27, 163, 22, 76, 58, 123, 155, 109, 48, 159, + 27, 185, 8, 106, 236, 179, 93, 181, 194, 255, 255, 71, 65, 171, 90, 83, 125, 88, 255, 216, 102, 159, 27, 31, 61, + 133, 224, 211, 45, 80, 25, 159, 76, 61, 35, 17, 207, 230, 145, 113, 113, 136, 54, 38, 188, 255, 255, 74, 216, 4, + 220, 101, 72, 239, 12, 42, 178, 97, 191, 27, 146, 4, 10, 182, 60, 124, 4, 153, 75, 36, 113, 131, 162, 188, 130, + 68, 174, 123, 30, 164, 66, 114, 8, 65, 108, 255, 69, 220, 216, 124, 61, 78, 27, 95, 78, 170, 215, 28, 100, 211, + 156, 69, 241, 145, 58, 6, 107, 159, 27, 253, 244, 110, 133, 228, 41, 140, 191, 69, 186, 54, 31, 119, 231, 68, 132, + 173, 119, 109, 74, 185, 244, 235, 38, 209, 6, 54, 247, 165, 165, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2259, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1691303045260927289" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9073249621782407048" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5341400718076602572" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2bfdc679d1db1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16901371648031402312" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fe93a7c9f8c484460" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5479c32484a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2da19759bf89d6284b50f8" + } + } + ] + }, + "cborHex": "bf1b1778b728a45061399f1b7deaa87578c9a788ff1b4a2077a733f8e8cc47c2bfdc679d1db11bea8dbbf771c52948491fe93a7c9f8c484460465479c32484a54b2da19759bf89d6284b50f8ff", + "cborBytes": [ + 191, 27, 23, 120, 183, 40, 164, 80, 97, 57, 159, 27, 125, 234, 168, 117, 120, 201, 167, 136, 255, 27, 74, 32, 119, + 167, 51, 248, 232, 204, 71, 194, 191, 220, 103, 157, 29, 177, 27, 234, 141, 187, 247, 113, 197, 41, 72, 73, 31, + 233, 58, 124, 159, 140, 72, 68, 96, 70, 84, 121, 195, 36, 132, 165, 75, 45, 161, 151, 89, 191, 137, 214, 40, 75, + 80, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2260, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6976255305250553883" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11706699937256552857" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2875308439447287682" + } + } + } + ] + }, + "cborHex": "bf1b60d0a33d03e4c01b801ba2768d917443b9991b27e725caa8f03782ff", + "cborBytes": [ + 191, 27, 96, 208, 163, 61, 3, 228, 192, 27, 128, 27, 162, 118, 141, 145, 116, 67, 185, 153, 27, 39, 231, 37, 202, + 168, 240, 55, 130, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2261, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41fd00" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5784" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8434849873031754943" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be79b92fcf11682a0ea6" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e76c8baa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9638086928950768809" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4341fd00a04257849f1b750e9b450fce74bfff4abe79b92fcf11682a0ea68044e76c8baad8669f1b85c15cff427234a980ffff", + "cborBytes": [ + 191, 67, 65, 253, 0, 160, 66, 87, 132, 159, 27, 117, 14, 155, 69, 15, 206, 116, 191, 255, 74, 190, 121, 185, 47, + 207, 17, 104, 42, 14, 166, 128, 68, 231, 108, 139, 170, 216, 102, 159, 27, 133, 193, 92, 255, 66, 114, 52, 169, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2262, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16502398126494845616" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e8c5de" + }, + { + "_tag": "ByteArray", + "bytearray": "dac0b857e472" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11392762604768858142" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16815058481919640026" + } + } + ] + } + } + ] + }, + "cborHex": "bf1be5044ba99fcc0ab09f43e8c5de46dac0b857e4721b9e1b393a439a101e1be95b16996c3d41daffff", + "cborBytes": [ + 191, 27, 229, 4, 75, 169, 159, 204, 10, 176, 159, 67, 232, 197, 222, 70, 218, 192, 184, 87, 228, 114, 27, 158, 27, + 57, 58, 67, 154, 16, 30, 27, 233, 91, 22, 153, 108, 61, 65, 218, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2263, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14893458180656728256" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "20536996ffa471b4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4596930993644433592" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42b003166c8c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15634195096546985932" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "985bf73efcd18c3e1815" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10350175029089806890" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d62f9e7121" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bceb0314e6f2e08c0bf4820536996ffa471b41b3fcb94621528f0b84642b003166c8c1bd8f7d19b56d647cc4a985bf73efcd18c3e18151b8fa33559f4042a2a45d62f9e71214154ffff", + "cborBytes": [ + 191, 27, 206, 176, 49, 78, 111, 46, 8, 192, 191, 72, 32, 83, 105, 150, 255, 164, 113, 180, 27, 63, 203, 148, 98, + 21, 40, 240, 184, 70, 66, 176, 3, 22, 108, 140, 27, 216, 247, 209, 155, 86, 214, 71, 204, 74, 152, 91, 247, 62, + 252, 209, 140, 62, 24, 21, 27, 143, 163, 53, 89, 244, 4, 42, 42, 69, 214, 47, 158, 113, 33, 65, 84, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2264, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00c30376ad47fcc107fa0412" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23451f28e495" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ecbb91e13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2552f243f44d91480b24" + } + } + ] + }, + "cborHex": "bf4c00c30376ad47fcc107fa0412bf040906040e06144623451f28e4951bfffffffffffffff114ff451ecbb91e134a2552f243f44d91480b24ff", + "cborBytes": [ + 191, 76, 0, 195, 3, 118, 173, 71, 252, 193, 7, 250, 4, 18, 191, 4, 9, 6, 4, 14, 6, 20, 70, 35, 69, 31, 40, 228, + 149, 27, 255, 255, 255, 255, 255, 255, 255, 241, 20, 255, 69, 30, 203, 185, 30, 19, 74, 37, 82, 242, 67, 244, 77, + 145, 72, 11, 36, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2265, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17205158818829100997" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6257402544862659916" + } + } + } + ] + }, + "cborHex": "bf1beec500c9f47ce7c51b56d6c2761f2a054cff", + "cborBytes": [191, 27, 238, 197, 0, 201, 244, 124, 231, 197, 27, 86, 214, 194, 118, 31, 42, 5, 76, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2266, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "619d2a838735b1e3dc8a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17354991015366350314" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "10ba57b85851eeff04648770" + } + ] + } + } + ] + }, + "cborHex": "bf0d4a619d2a838735b1e3dc8a1bf0d95060b701d5ea9f4c10ba57b85851eeff04648770ffff", + "cborBytes": [ + 191, 13, 74, 97, 157, 42, 131, 135, 53, 177, 227, 220, 138, 27, 240, 217, 80, 96, 183, 1, 213, 234, 159, 76, 16, + 186, 87, 184, 88, 81, 238, 255, 4, 100, 135, 112, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2267, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "58431299790909744" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5363681211744539864" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eba0daa9131aab1269" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0156cd91205ca52e9c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68badd5e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75663cff4a66b0ff78ac8f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b1b55cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3802373861826619065" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "264603948930563035" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2985473357875733458" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11803538699874248932" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9fd7" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9529035465815887633" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10305955967532624372" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10715140491326975152" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "878951101058447506" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12121765235846939221" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5605786223570263642" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d4f776d03c87c182a3ea366" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18415235212830829253" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1523565420308971841" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f78db5d418f08e08f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11007152940525775818" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b00cf96f523cd3130bf1b4a6f9fa4e27854d849eba0daa9131aab12694164490156cd91205ca52e9c4468badd5e4b75663cff4a66b0ff78ac8f448b1b55cb1b34c4bee1a967e6b9ff1b03ac0fe3be2bfbdba01b296e8833869363d2d8669f1ba3ce97e8e294a8e49f429fd7ffff1b843def44e80e0f11d8669f1b8f061c59639969f480ff1b94b3d3816ff2ecb0d8669f1b0c32a95e9986f89280ff1ba839294215560255d8669f1b4dcbc0de9eaf1e5a9f4c2d4f776d03c87c182a3ea3661bff900edba40beac51b1524caad7595c14149f78db5d418f08e08f81b98c14347f06f6bcaffffff", + "cborBytes": [ + 191, 27, 0, 207, 150, 245, 35, 205, 49, 48, 191, 27, 74, 111, 159, 164, 226, 120, 84, 216, 73, 235, 160, 218, 169, + 19, 26, 171, 18, 105, 65, 100, 73, 1, 86, 205, 145, 32, 92, 165, 46, 156, 68, 104, 186, 221, 94, 75, 117, 102, 60, + 255, 74, 102, 176, 255, 120, 172, 143, 68, 139, 27, 85, 203, 27, 52, 196, 190, 225, 169, 103, 230, 185, 255, 27, + 3, 172, 15, 227, 190, 43, 251, 219, 160, 27, 41, 110, 136, 51, 134, 147, 99, 210, 216, 102, 159, 27, 163, 206, + 151, 232, 226, 148, 168, 228, 159, 66, 159, 215, 255, 255, 27, 132, 61, 239, 68, 232, 14, 15, 17, 216, 102, 159, + 27, 143, 6, 28, 89, 99, 153, 105, 244, 128, 255, 27, 148, 179, 211, 129, 111, 242, 236, 176, 216, 102, 159, 27, + 12, 50, 169, 94, 153, 134, 248, 146, 128, 255, 27, 168, 57, 41, 66, 21, 86, 2, 85, 216, 102, 159, 27, 77, 203, + 192, 222, 158, 175, 30, 90, 159, 76, 45, 79, 119, 109, 3, 200, 124, 24, 42, 62, 163, 102, 27, 255, 144, 14, 219, + 164, 11, 234, 197, 27, 21, 36, 202, 173, 117, 149, 193, 65, 73, 247, 141, 181, 212, 24, 240, 142, 8, 248, 27, 152, + 193, 67, 71, 240, 111, 107, 202, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2268, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7159698290677074200" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10184701571626904126" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8630823541224570059" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3814471789617233971" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17203706195030932869" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "558839633777502828" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12077877401825416375" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "44ea7fb4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd76883afb1c23117b" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b635c5ba962c74918d8669f1b8d57541e582f2a3e80ff1b77c6d8485dc4fccbd8669f1b34efb9e1f9e240339f1beebfd7a29f017d851b07c165afa1b7aa6cffff1ba79d3d81708594b7bf4444ea7fb449bd76883afb1c23117bffff", + "cborBytes": [ + 191, 27, 99, 92, 91, 169, 98, 199, 73, 24, 216, 102, 159, 27, 141, 87, 84, 30, 88, 47, 42, 62, 128, 255, 27, 119, + 198, 216, 72, 93, 196, 252, 203, 216, 102, 159, 27, 52, 239, 185, 225, 249, 226, 64, 51, 159, 27, 238, 191, 215, + 162, 159, 1, 125, 133, 27, 7, 193, 101, 175, 161, 183, 170, 108, 255, 255, 27, 167, 157, 61, 129, 112, 133, 148, + 183, 191, 68, 68, 234, 127, 180, 73, 189, 118, 136, 58, 251, 28, 35, 17, 123, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2269, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4646040223384163564" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7874551728462032546" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5977873821093009245" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1935652505914767881" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1353391267664545976" + } + }, + { + "_tag": "ByteArray", + "bytearray": "771ebc97cfd5e8949173f472" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16633485187690946348" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10074609960675308822" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18249262557887781704" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7538761156364949323" + } + } + } + ] + }, + "cborHex": "bf1b407a0cf7a6fd54eca01b6d4807136c6aeea2d8669f1b52f5ac91725b175d9f1b1adcd1b2d7a4fa091b12c8362ff742c8b84c771ebc97cfd5e8949173f472ffff1be6d602a6750a5f2c1b8bd03461b4a9f5161bfd42679b8fbcdb481b689f0f5463a5574bff", + "cborBytes": [ + 191, 27, 64, 122, 12, 247, 166, 253, 84, 236, 160, 27, 109, 72, 7, 19, 108, 106, 238, 162, 216, 102, 159, 27, 82, + 245, 172, 145, 114, 91, 23, 93, 159, 27, 26, 220, 209, 178, 215, 164, 250, 9, 27, 18, 200, 54, 47, 247, 66, 200, + 184, 76, 119, 30, 188, 151, 207, 213, 232, 148, 145, 115, 244, 114, 255, 255, 27, 230, 214, 2, 166, 117, 10, 95, + 44, 27, 139, 208, 52, 97, 180, 169, 245, 22, 27, 253, 66, 103, 155, 143, 188, 219, 72, 27, 104, 159, 15, 84, 99, + 165, 87, 75, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2270, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10929425717831313266" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15343877594820964015" + } + } + } + ] + }, + "cborHex": "bf1b97ad1ec8a65aa7721bd4f067608c60eeafff", + "cborBytes": [191, 27, 151, 173, 30, 200, 166, 90, 167, 114, 27, 212, 240, 103, 96, 140, 96, 238, 175, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2271, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11349608520086928195" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2885080315235388781" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9cd7772c4426c3" + }, + { + "_tag": "ByteArray", + "bytearray": "64039c0485" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c458b1c150439e5b45f9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4421650122377875956" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1233386456639015415" + } + }, + { + "_tag": "ByteArray", + "bytearray": "84aabf82555f56690d7e15" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1019542764764013423" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15233737765051772159" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b9d81e8d0f3873b43d8669f1b2809dd42ca13cd6d9f479cd7772c4426c34564039c0485ffff4ac458b1c150439e5b45f9d8669f1b3d5cdb5c016551f49f1b111dde7292bf09f74b84aabf82555f56690d7e151b0e2624be2714236f1bd3691bc9175d2cffffffff", + "cborBytes": [ + 191, 27, 157, 129, 232, 208, 243, 135, 59, 67, 216, 102, 159, 27, 40, 9, 221, 66, 202, 19, 205, 109, 159, 71, 156, + 215, 119, 44, 68, 38, 195, 69, 100, 3, 156, 4, 133, 255, 255, 74, 196, 88, 177, 193, 80, 67, 158, 91, 69, 249, + 216, 102, 159, 27, 61, 92, 219, 92, 1, 101, 81, 244, 159, 27, 17, 29, 222, 114, 146, 191, 9, 247, 75, 132, 170, + 191, 130, 85, 95, 86, 105, 13, 126, 21, 27, 14, 38, 36, 190, 39, 20, 35, 111, 27, 211, 105, 27, 201, 23, 93, 44, + 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2272, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "70fdd58ce986" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9a4b76dc5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11979821961376006468" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7149250642804479253" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13674206682217563786" + } + } + ] + } + } + ] + }, + "cborHex": "bf4670fdd58ce9868045c9a4b76dc59f1ba640e09a203d81441b63373d94ce9815151bbdc48a8746d9c68affff", + "cborBytes": [ + 191, 70, 112, 253, 213, 140, 233, 134, 128, 69, 201, 164, 183, 109, 197, 159, 27, 166, 64, 224, 154, 32, 61, 129, + 68, 27, 99, 55, 61, 148, 206, 152, 21, 21, 27, 189, 196, 138, 135, 70, 217, 198, 138, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2273, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10371752822927516931" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + } + ] + }, + "cborHex": "bf1b8fefde3d94bfe50341fdff", + "cborBytes": [191, 27, 143, 239, 222, 61, 148, 191, 229, 3, 65, 253, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2274, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "027d472c63fea7b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7574570764662069936" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5335333765518558939" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7420938001781073189" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f1" + } + ] + } + } + ] + }, + "cborHex": "bf0d9f48027d472c63fea7b01b691e47fa89bddab01b4a0ae9cabbe186dbff1b66fc77cb785ba5259f41f1ffff", + "cborBytes": [ + 191, 13, 159, 72, 2, 125, 71, 44, 99, 254, 167, 176, 27, 105, 30, 71, 250, 137, 189, 218, 176, 27, 74, 10, 233, + 202, 187, 225, 134, 219, 255, 27, 102, 252, 119, 203, 120, 91, 165, 37, 159, 65, 241, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2275, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "230b684bf8e4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3752967448208413392" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16987961230782913201" + } + }, + { + "_tag": "ByteArray", + "bytearray": "277227d047c2c79c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3234509707595422743" + } + }, + { + "_tag": "ByteArray", + "bytearray": "35a58c92846068b775" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83f739d12f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12472368584672041226" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c94a64808b7e87c1" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd50191a1f53da4ea5a53050" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3129" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5429512184722434227" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50933b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1f36db60f111e9473" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17270932845997235884" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbc73a6f00656b0256db1823" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15143096132163759007" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "db4afaa648" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc20d98fae" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13290622179575980287" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10131129400228274000" + } + } + ] + } + } + ] + }, + "cborHex": "bf46230b684bf8e4d8669f1b34153802941112d09f1bebc15cbbbaec5ab148277227d047c2c79c1b2ce349711fc71c174935a58c92846068b775ffff4583f739d12f1bad16c125751e590a48c94a64808b7e87c1a04ccd50191a1f53da4ea5a53050bf4231291b4b598090b20928b34350933b412649b1f36db60f111e94731befaeadeb094a9eacff4cfbc73a6f00656b0256db1823d8669f1bd22715b35d366b9f9f45db4afaa648ffff45fc20d98fae9f1bb871c674a18de0ff1b8c990083321f5f50ffff", + "cborBytes": [ + 191, 70, 35, 11, 104, 75, 248, 228, 216, 102, 159, 27, 52, 21, 56, 2, 148, 17, 18, 208, 159, 27, 235, 193, 92, + 187, 186, 236, 90, 177, 72, 39, 114, 39, 208, 71, 194, 199, 156, 27, 44, 227, 73, 113, 31, 199, 28, 23, 73, 53, + 165, 140, 146, 132, 96, 104, 183, 117, 255, 255, 69, 131, 247, 57, 209, 47, 27, 173, 22, 193, 37, 117, 30, 89, 10, + 72, 201, 74, 100, 128, 139, 126, 135, 193, 160, 76, 205, 80, 25, 26, 31, 83, 218, 78, 165, 165, 48, 80, 191, 66, + 49, 41, 27, 75, 89, 128, 144, 178, 9, 40, 179, 67, 80, 147, 59, 65, 38, 73, 177, 243, 109, 182, 15, 17, 30, 148, + 115, 27, 239, 174, 173, 235, 9, 74, 158, 172, 255, 76, 251, 199, 58, 111, 0, 101, 107, 2, 86, 219, 24, 35, 216, + 102, 159, 27, 210, 39, 21, 179, 93, 54, 107, 159, 159, 69, 219, 74, 250, 166, 72, 255, 255, 69, 252, 32, 217, 143, + 174, 159, 27, 184, 113, 198, 116, 161, 141, 224, 255, 27, 140, 153, 0, 131, 50, 31, 95, 80, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2276, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + } + ] + }, + "cborHex": "bf120cff", + "cborBytes": [191, 18, 12, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2277, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15325396256025467761" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15449756502665282112" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc10" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8400359727786627500" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bd4aebeb28a7fdb719f1bd6688faecfa5424042fc101b749412aa583811acffff", + "cborBytes": [ + 191, 27, 212, 174, 190, 178, 138, 127, 219, 113, 159, 27, 214, 104, 143, 174, 207, 165, 66, 64, 66, 252, 16, 27, + 116, 148, 18, 170, 88, 56, 17, 172, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2278, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11877617173942585846" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14231437562564530387" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f843f91c9035815098" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "161279298391728914" + } + } + } + ] + }, + "cborHex": "bf1ba4d5c5e3aeed49f641451bc580390fcfcf50d341ac49f843f91c90358150981b023cfaaada436312ff", + "cborBytes": [ + 191, 27, 164, 213, 197, 227, 174, 237, 73, 246, 65, 69, 27, 197, 128, 57, 15, 207, 207, 80, 211, 65, 172, 73, 248, + 67, 249, 28, 144, 53, 129, 80, 152, 27, 2, 60, 250, 170, 218, 67, 99, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2279, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d00303a7" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7efe" + } + ] + } + } + ] + }, + "cborHex": "bf44d00303a79f427efeffff", + "cborBytes": [191, 68, 208, 3, 3, 167, 159, 66, 126, 254, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2280, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8615667524772122391" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca9454b527fd17" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9621354590262237738" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "394007591aad41" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9091265617967385209" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18153537325056869097" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11517480945854907404" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15668237429795767864" + } + }, + { + "_tag": "ByteArray", + "bytearray": "802f7c" + }, + { + "_tag": "ByteArray", + "bytearray": "b547ee742f839c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "20f5c9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11383691119377495229" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a5005e7d599beb00be01ff" + }, + { + "_tag": "ByteArray", + "bytearray": "0102a778051597038d76" + } + ] + } + } + ] + }, + "cborHex": "bf1b7790fff74ce94f1747ca9454b527fd171b8585eb0612a79a2ad8799f47394007591aad41111b7e2aa9e975ab0a79ff1bfbee5203fccf42e99f1b9fd64fe5e503040c1bd970c2edb374c63843802f7c47b547ee742f839cff4320f5c9d8669f1b9dfafec27b43b4bd9f4ba5005e7d599beb00be01ff4a0102a778051597038d76ffffff", + "cborBytes": [ + 191, 27, 119, 144, 255, 247, 76, 233, 79, 23, 71, 202, 148, 84, 181, 39, 253, 23, 27, 133, 133, 235, 6, 18, 167, + 154, 42, 216, 121, 159, 71, 57, 64, 7, 89, 26, 173, 65, 17, 27, 126, 42, 169, 233, 117, 171, 10, 121, 255, 27, + 251, 238, 82, 3, 252, 207, 66, 233, 159, 27, 159, 214, 79, 229, 229, 3, 4, 12, 27, 217, 112, 194, 237, 179, 116, + 198, 56, 67, 128, 47, 124, 71, 181, 71, 238, 116, 47, 131, 156, 255, 67, 32, 245, 201, 216, 102, 159, 27, 157, + 250, 254, 194, 123, 67, 180, 189, 159, 75, 165, 0, 94, 125, 89, 155, 235, 0, 190, 1, 255, 74, 1, 2, 167, 120, 5, + 21, 151, 3, 141, 118, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2281, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5ae1525f3fbf41f5e114" + }, + { + "_tag": "ByteArray", + "bytearray": "c19ba02c30c5" + }, + { + "_tag": "ByteArray", + "bytearray": "83990601560361fd01ff9a" + }, + { + "_tag": "ByteArray", + "bytearray": "d6a0bfdd" + }, + { + "_tag": "ByteArray", + "bytearray": "e58277d0bf4fcf" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07b006b2" + } + } + ] + }, + "cborHex": "bf1bffffffffffffffffd8799f4a5ae1525f3fbf41f5e11446c19ba02c30c54b83990601560361fd01ff9a44d6a0bfdd47e58277d0bf4fcfff41d64407b006b2ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 255, 216, 121, 159, 74, 90, 225, 82, 95, 63, 191, 65, 245, 225, 20, + 70, 193, 155, 160, 44, 48, 197, 75, 131, 153, 6, 1, 86, 3, 97, 253, 1, 255, 154, 68, 214, 160, 191, 221, 71, 229, + 130, 119, 208, 191, 79, 207, 255, 65, 214, 68, 7, 176, 6, 178, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2282, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "205f0004ef3efa9f0505d75f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2524493547592318338" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ab" + }, + { + "_tag": "ByteArray", + "bytearray": "0e4956ecc384a4d4dd4e" + }, + { + "_tag": "ByteArray", + "bytearray": "7c1570c87768" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8de2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "602008289887193343" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "831a517e6c47" + }, + { + "_tag": "ByteArray", + "bytearray": "22f6d5ff" + }, + { + "_tag": "ByteArray", + "bytearray": "6aae3a07123cbb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3374814292726867206" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c205f0004ef3efa9f0505d75fd905039f1b2308cd8196017d8241ab4a0e4956ecc384a4d4dd4e467c1570c87768ff428de2d8669f1b085ac3599e9108ff9f46831a517e6c474422f6d5ff476aae3a07123cbb1b2ed5bfb7fce56506ffffff", + "cborBytes": [ + 191, 76, 32, 95, 0, 4, 239, 62, 250, 159, 5, 5, 215, 95, 217, 5, 3, 159, 27, 35, 8, 205, 129, 150, 1, 125, 130, + 65, 171, 74, 14, 73, 86, 236, 195, 132, 164, 212, 221, 78, 70, 124, 21, 112, 200, 119, 104, 255, 66, 141, 226, + 216, 102, 159, 27, 8, 90, 195, 89, 158, 145, 8, 255, 159, 70, 131, 26, 81, 126, 108, 71, 68, 34, 246, 213, 255, + 71, 106, 174, 58, 7, 18, 60, 187, 27, 46, 213, 191, 183, 252, 229, 101, 6, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2283, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15447598684238555527" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7349561f2844dba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2504fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "abf9ff0506d0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ac06960b" + }, + { + "_tag": "ByteArray", + "bytearray": "7304efcb4024" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "707788371222858115" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce0602" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0011e40201" + } + } + ] + }, + "cborHex": "bf1bd660e5288ed4a987417748a7349561f2844dba432504fc46abf9ff0506d09f44ac06960b467304efcb4024091b09d291c60ae40983ff43ce0602450011e40201ff", + "cborBytes": [ + 191, 27, 214, 96, 229, 40, 142, 212, 169, 135, 65, 119, 72, 167, 52, 149, 97, 242, 132, 77, 186, 67, 37, 4, 252, + 70, 171, 249, 255, 5, 6, 208, 159, 68, 172, 6, 150, 11, 70, 115, 4, 239, 203, 64, 36, 9, 27, 9, 210, 145, 198, 10, + 228, 9, 131, 255, 67, 206, 6, 2, 69, 0, 17, 228, 2, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2284, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8464893533800689140" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c023df" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11196080075421551306" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11121110547174782764" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a59259092974c7f5289c" + } + ] + } + } + ] + }, + "cborHex": "bf1b757957d1efb0edf443c023df1b9b6077825c548acad8669f1b9a561f1ed833f72c9f4aa59259092974c7f5289cffffff", + "cborBytes": [ + 191, 27, 117, 121, 87, 209, 239, 176, 237, 244, 67, 192, 35, 223, 27, 155, 96, 119, 130, 92, 84, 138, 202, 216, + 102, 159, 27, 154, 86, 31, 30, 216, 51, 247, 44, 159, 74, 165, 146, 89, 9, 41, 116, 199, 245, 40, 156, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2285, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "423424498601893474" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13772197540145123736" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8431790582753167916" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16425831086200530971" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10271333187536187162" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5401107426404590968" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13911594390708956410" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8668966516621164150" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9115a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15174852460487897089" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17618792072580117124" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18001651304968677238" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba4f034026f2261f13d116" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12845880164712761124" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12756804324873384949" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3257560610876788847" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4904425307857035742" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b05e04e568c5d1e621bbf20acb1ccdbd1981b7503bcdc897c8a2c1be3f44658598d281b1b8e8b1b1d3cc66f1abf1b4af496968891e5781bc10fe9643d862cfa1b784e5b1de0f5be76439115a51bd297e7e9ba57f0011bf482860aa99b32841bf9d2b67c2b1ae7764bba4f034026f2261f13d116ff1bb245bbf30cf0c724d8669f1bb10945f1ed3eb3f59f1b2d352e1dc59d906f1b441004d52e4121deffffff", + "cborBytes": [ + 191, 27, 5, 224, 78, 86, 140, 93, 30, 98, 27, 191, 32, 172, 177, 204, 219, 209, 152, 27, 117, 3, 188, 220, 137, + 124, 138, 44, 27, 227, 244, 70, 88, 89, 141, 40, 27, 27, 142, 139, 27, 29, 60, 198, 111, 26, 191, 27, 74, 244, + 150, 150, 136, 145, 229, 120, 27, 193, 15, 233, 100, 61, 134, 44, 250, 27, 120, 78, 91, 29, 224, 245, 190, 118, + 67, 145, 21, 165, 27, 210, 151, 231, 233, 186, 87, 240, 1, 27, 244, 130, 134, 10, 169, 155, 50, 132, 27, 249, 210, + 182, 124, 43, 26, 231, 118, 75, 186, 79, 3, 64, 38, 242, 38, 31, 19, 209, 22, 255, 27, 178, 69, 187, 243, 12, 240, + 199, 36, 216, 102, 159, 27, 177, 9, 69, 241, 237, 62, 179, 245, 159, 27, 45, 53, 46, 29, 197, 157, 144, 111, 27, + 68, 16, 4, 213, 46, 65, 33, 222, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2286, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17179314862198934312" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b68ec2d3c2657461" + } + } + ] + }, + "cborHex": "bf1bee692fd8e5f4cb2848b68ec2d3c2657461ff", + "cborBytes": [191, 27, 238, 105, 47, 216, 229, 244, 203, 40, 72, 182, 142, 194, 211, 194, 101, 116, 97, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2287, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c531aa156d6e84885e83ceef" + }, + { + "_tag": "ByteArray", + "bytearray": "02cc0601" + }, + { + "_tag": "ByteArray", + "bytearray": "774027c443ee970414fc" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15964664280663250401" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + }, + "cborHex": "bf14d8669f1bffffffffffffffed9f4cc531aa156d6e84885e83ceef4402cc06014a774027c443ee970414fcffff1bdd8de1942f4cd5e111ff", + "cborBytes": [ + 191, 20, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 76, 197, 49, 170, 21, 109, 110, 132, 136, + 94, 131, 206, 239, 68, 2, 204, 6, 1, 74, 119, 64, 39, 196, 67, 238, 151, 4, 20, 252, 255, 255, 27, 221, 141, 225, + 148, 47, 76, 213, 225, 17, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2288, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8697746023785860864" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15464256504139926078" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8172228399937454168" + } + } + ] + } + } + ] + }, + "cborHex": "bf061bfffffffffffffff90c9f1b78b499ed0e528f001bd69c135b7cc8ca3e1b7169966e71a18058ffff", + "cborBytes": [ + 191, 6, 27, 255, 255, 255, 255, 255, 255, 255, 249, 12, 159, 27, 120, 180, 153, 237, 14, 82, 143, 0, 27, 214, 156, + 19, 91, 124, 200, 202, 62, 27, 113, 105, 150, 110, 113, 161, 128, 88, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2289, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04e87b74b93a6147" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4804e87b74b93a6147a0ff", + "cborBytes": [191, 72, 4, 232, 123, 116, 185, 58, 97, 71, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2290, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13906560768441807622" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2183199512498527581" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6625664401842832853" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1ff49b95" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14158725616620458527" + } + }, + { + "_tag": "ByteArray", + "bytearray": "151ac0e4" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14823414699696038048" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6980692d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4727" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "969b31a8581e4bdd5f3e08c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f15fe1624bfb7909" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfc022269eb3647701" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15586027444165102668" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "062a5790e644a0db41530f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16111364259356479476" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18375962970599542243" + } + } + } + ] + }, + "cborHex": "bf1bc0fe0756ba5b73069f1b1e4c4863b847dd5d1b5bf316ab50cb05d5441ff49b951bc47de5eea2e2d21f44151ac0e4ff1bcdb75921adafa0a0bf446980692d4247274c969b31a8581e4bdd5f3e08c048f15fe1624bfb790949cfc022269eb364770141f0ff1bd84cb161d4f34c4c4b062a5790e644a0db41530f1bdf97106ea5de0ff41bff0488f634514de3ff", + "cborBytes": [ + 191, 27, 192, 254, 7, 86, 186, 91, 115, 6, 159, 27, 30, 76, 72, 99, 184, 71, 221, 93, 27, 91, 243, 22, 171, 80, + 203, 5, 213, 68, 31, 244, 155, 149, 27, 196, 125, 229, 238, 162, 226, 210, 31, 68, 21, 26, 192, 228, 255, 27, 205, + 183, 89, 33, 173, 175, 160, 160, 191, 68, 105, 128, 105, 45, 66, 71, 39, 76, 150, 155, 49, 168, 88, 30, 75, 221, + 95, 62, 8, 192, 72, 241, 95, 225, 98, 75, 251, 121, 9, 73, 207, 192, 34, 38, 158, 179, 100, 119, 1, 65, 240, 255, + 27, 216, 76, 177, 97, 212, 243, 76, 76, 75, 6, 42, 87, 144, 230, 68, 160, 219, 65, 83, 15, 27, 223, 151, 16, 110, + 165, 222, 15, 244, 27, 255, 4, 136, 246, 52, 81, 77, 227, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2291, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7272595951738915833" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4700089284549004557" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5476b8d890" + }, + { + "_tag": "ByteArray", + "bytearray": "d861a8cdd266a1e993fbde" + }, + { + "_tag": "ByteArray", + "bytearray": "d92c8a74ef" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16864623962186834215" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10323731491721585951" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6636628464355176382" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "740e4fd107635777" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69832233edc3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dcaa" + }, + { + "_tag": "ByteArray", + "bytearray": "b2706cee432b84d579bc699d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14451664137546011385" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14810147303165142435" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8293148491382818441" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b64ed737c7a578bf9d8669f1b413a124d5a29cd0d9f455476b8d8904bd861a8cdd266a1e993fbde45d92c8a74efffff1bea0b2e2418afe1279f1b8f4543182094251f1b5c1a0a6d0c22efbeff412548740e4fd1076357774669832233edc39f42dcaa4cb2706cee432b84d579bc699d1bc88e9ff703ae92f91bcd883681345e25a31b73172e9d2a708689ffff", + "cborBytes": [ + 191, 27, 100, 237, 115, 124, 122, 87, 139, 249, 216, 102, 159, 27, 65, 58, 18, 77, 90, 41, 205, 13, 159, 69, 84, + 118, 184, 216, 144, 75, 216, 97, 168, 205, 210, 102, 161, 233, 147, 251, 222, 69, 217, 44, 138, 116, 239, 255, + 255, 27, 234, 11, 46, 36, 24, 175, 225, 39, 159, 27, 143, 69, 67, 24, 32, 148, 37, 31, 27, 92, 26, 10, 109, 12, + 34, 239, 190, 255, 65, 37, 72, 116, 14, 79, 209, 7, 99, 87, 119, 70, 105, 131, 34, 51, 237, 195, 159, 66, 220, + 170, 76, 178, 112, 108, 238, 67, 43, 132, 213, 121, 188, 105, 157, 27, 200, 142, 159, 247, 3, 174, 146, 249, 27, + 205, 136, 54, 129, 52, 94, 37, 163, 27, 115, 23, 46, 157, 42, 112, 134, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2292, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "963bb7e7dc9e10f6e3999536" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06041e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "317026472595380936" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9469229129392071187" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c3cf02d50562835f67" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07513930cb68e93005c3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53ca2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffca" + } + } + ] + }, + "cborHex": "bf41004c963bb7e7dc9e10f6e39995364306041ed8669f1b04664de5ab715ac89f1b836975b91a32221349c3cf02d50562835f67ffff4a07513930cb68e93005c3d879804353ca2d410041e742ffcaff", + "cborBytes": [ + 191, 65, 0, 76, 150, 59, 183, 231, 220, 158, 16, 246, 227, 153, 149, 54, 67, 6, 4, 30, 216, 102, 159, 27, 4, 102, + 77, 229, 171, 113, 90, 200, 159, 27, 131, 105, 117, 185, 26, 50, 34, 19, 73, 195, 207, 2, 213, 5, 98, 131, 95, + 103, 255, 255, 74, 7, 81, 57, 48, 203, 104, 233, 48, 5, 195, 216, 121, 128, 67, 83, 202, 45, 65, 0, 65, 231, 66, + 255, 202, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2293, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9388058983641361433" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8934946921415728560" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd722f19820314b61492" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1172f6d43f" + } + } + ] + }, + "cborHex": "bf1b824915e7d25bac191b7bff4ee2b9f45db04add722f19820314b61492451172f6d43fff", + "cborBytes": [ + 191, 27, 130, 73, 21, 231, 210, 91, 172, 25, 27, 123, 255, 78, 226, 185, 244, 93, 176, 74, 221, 114, 47, 25, 130, + 3, 20, 182, 20, 146, 69, 17, 114, 246, 212, 63, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2294, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8014160580334542028" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06cebafe34" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbcc000712840203" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3596505693354792510" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9caeaea23b49ab3ff843f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f854b7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcacfa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "beaf30" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed047ffa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10170883503886816075" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9cd7dab999814978a6087" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6340537038980126989" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af22e54c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6706514761145489892" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d225fb6fdcfa06b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + }, + "cborHex": "bf1b6f38049643c75cccbf4506cebafe341bfffffffffffffff6419448fbcc00071284020342a0d51b31e95adf7d15163e4bb9caeaea23b49ab3ff843f43f854b743bcacfa43beaf3044ed047ffa1b8d263ca8bd0dd34bff4bc9cd7dab999814978a6087bf1b57fe1cd7e59e190d410a44af22e54c1b5d1253a482fd99e4ff48d225fb6fdcfa06b212ff", + "cborBytes": [ + 191, 27, 111, 56, 4, 150, 67, 199, 92, 204, 191, 69, 6, 206, 186, 254, 52, 27, 255, 255, 255, 255, 255, 255, 255, + 246, 65, 148, 72, 251, 204, 0, 7, 18, 132, 2, 3, 66, 160, 213, 27, 49, 233, 90, 223, 125, 21, 22, 62, 75, 185, + 202, 234, 234, 35, 180, 154, 179, 255, 132, 63, 67, 248, 84, 183, 67, 188, 172, 250, 67, 190, 175, 48, 68, 237, 4, + 127, 250, 27, 141, 38, 60, 168, 189, 13, 211, 75, 255, 75, 201, 205, 125, 171, 153, 152, 20, 151, 138, 96, 135, + 191, 27, 87, 254, 28, 215, 229, 158, 25, 13, 65, 10, 68, 175, 34, 229, 76, 27, 93, 18, 83, 164, 130, 253, 153, + 228, 255, 72, 210, 37, 251, 111, 220, 250, 6, 178, 18, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2295, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4272626af25143e23856" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16217026737091383095" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94ac81" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2015006196976829740" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95ea560b9b069d926cfc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aaf261bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e592a260" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea5799d5c101023b" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e477072066" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffba0c11662c42d2ec0748" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11800214565622739212" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec610c5ff3325bcd1f52" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6573346003834435178" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4a4272626af25143e238561be10e73e559580f374394ac819f1b1bf6bd75cf03c52cff4a95ea560b9b069d926cfcbf44aaf261bf44e592a26042dbec48ea5799d5c101023bff45e4770720664bffba0c11662c42d2ec074841e61ba3c2c8a09155710c4aec610c5ff3325bcd1f52d8669f1b5b39375d0848f66a80ffff", + "cborBytes": [ + 191, 74, 66, 114, 98, 106, 242, 81, 67, 226, 56, 86, 27, 225, 14, 115, 229, 89, 88, 15, 55, 67, 148, 172, 129, + 159, 27, 27, 246, 189, 117, 207, 3, 197, 44, 255, 74, 149, 234, 86, 11, 155, 6, 157, 146, 108, 252, 191, 68, 170, + 242, 97, 191, 68, 229, 146, 162, 96, 66, 219, 236, 72, 234, 87, 153, 213, 193, 1, 2, 59, 255, 69, 228, 119, 7, 32, + 102, 75, 255, 186, 12, 17, 102, 44, 66, 210, 236, 7, 72, 65, 230, 27, 163, 194, 200, 160, 145, 85, 113, 12, 74, + 236, 97, 12, 95, 243, 50, 91, 205, 31, 82, 216, 102, 159, 27, 91, 57, 55, 93, 8, 72, 246, 106, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2296, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf12a0ff", + "cborBytes": [191, 18, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2297, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "00ff1e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd04d1d8f9fd7f03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + } + } + ] + }, + "cborHex": "bf0a1bfffffffffffffff84300ff1e9f0848fd04d1d8f9fd7f030a01ffff", + "cborBytes": [ + 191, 10, 27, 255, 255, 255, 255, 255, 255, 255, 248, 67, 0, 255, 30, 159, 8, 72, 253, 4, 209, 216, 249, 253, 127, + 3, 10, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2298, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2787819877263601544" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12415676034104820278" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5753920460794518805" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8179285814271115475" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6424785197999067970" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7956381486299837004" + } + } + } + ] + }, + "cborHex": "bf1b26b053686a11ef881bac4d57926b2602361b4fda082c6b825d15d8669f1b7182a91cc40580d380ff1b59296c18fcec13421b6e6abece9c65724cff", + "cborBytes": [ + 191, 27, 38, 176, 83, 104, 106, 17, 239, 136, 27, 172, 77, 87, 146, 107, 38, 2, 54, 27, 79, 218, 8, 44, 107, 130, + 93, 21, 216, 102, 159, 27, 113, 130, 169, 28, 196, 5, 128, 211, 128, 255, 27, 89, 41, 108, 24, 252, 236, 19, 66, + 27, 110, 106, 190, 206, 156, 101, 114, 76, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2299, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + ] + } + } + ] + }, + "cborHex": "bf0f9f1bfffffffffffffff9ffff", + "cborBytes": [191, 15, 159, 27, 255, 255, 255, 255, 255, 255, 255, 249, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2300, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "86024203140998666" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16784724110333139900" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3129165667315033445" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20ff8312433d9615d8ef45a6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6223969493889822404" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b610248f249f44a0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10388056173091714614" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "853896432682728983" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13959787842975138053" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15877861605277143886" + } + } + } + ] + }, + "cborHex": "bf1b01319e8e964e260a1be8ef51a629575bbc1b2b6d07986ba925654c20ff8312433d9615d8ef45a61b565ffb47582baec448b610248f249f44a01b9029ca0d17ef7636d8669f1b0bd9a6480906fe1780ff1bc1bb2114c05981051bdc597f01675b934eff", + "cborBytes": [ + 191, 27, 1, 49, 158, 142, 150, 78, 38, 10, 27, 232, 239, 81, 166, 41, 87, 91, 188, 27, 43, 109, 7, 152, 107, 169, + 37, 101, 76, 32, 255, 131, 18, 67, 61, 150, 21, 216, 239, 69, 166, 27, 86, 95, 251, 71, 88, 43, 174, 196, 72, 182, + 16, 36, 143, 36, 159, 68, 160, 27, 144, 41, 202, 13, 23, 239, 118, 54, 216, 102, 159, 27, 11, 217, 166, 72, 9, 6, + 254, 23, 128, 255, 27, 193, 187, 33, 20, 192, 89, 129, 5, 27, 220, 89, 127, 1, 103, 91, 147, 78, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2301, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "41539118e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14291144535134170769" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b5bf5f03de8d20a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4543990722188577746" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f306fcdfa" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a1d0c8fa39ae" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12276633136866689916" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7eaf40742a65" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4344284512913421014" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15169600793993252225" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "114715637071690891" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86d7640954958f56b350" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "53" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1703850421222157522" + } + }, + { + "_tag": "ByteArray", + "bytearray": "796d5a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15731814000600799517" + } + }, + { + "_tag": "ByteArray", + "bytearray": "643a706b9f1b" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c219f414" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "636f70c7" + } + } + ] + }, + "cborHex": "bf4541539118e81bc654583caa6fee91486b5bf5f03de8d20a1b3f0f7f7c9ab88bd2456f306fcdfa9f46a1d0c8fa39ae1baa5f5ccb28ba837cff467eaf40742a659f1b3c49ffbf5b6f72d61bd2853f8cd6738d811b01978d439dd73c8bff4a86d7640954958f56b3509f41531b17a54aee4358acd243796d5a1bda52a17b9a53d91d46643a706b9f1bff44c219f41444636f70c7ff", + "cborBytes": [ + 191, 69, 65, 83, 145, 24, 232, 27, 198, 84, 88, 60, 170, 111, 238, 145, 72, 107, 91, 245, 240, 61, 232, 210, 10, + 27, 63, 15, 127, 124, 154, 184, 139, 210, 69, 111, 48, 111, 205, 250, 159, 70, 161, 208, 200, 250, 57, 174, 27, + 170, 95, 92, 203, 40, 186, 131, 124, 255, 70, 126, 175, 64, 116, 42, 101, 159, 27, 60, 73, 255, 191, 91, 111, 114, + 214, 27, 210, 133, 63, 140, 214, 115, 141, 129, 27, 1, 151, 141, 67, 157, 215, 60, 139, 255, 74, 134, 215, 100, 9, + 84, 149, 143, 86, 179, 80, 159, 65, 83, 27, 23, 165, 74, 238, 67, 88, 172, 210, 67, 121, 109, 90, 27, 218, 82, + 161, 123, 154, 83, 217, 29, 70, 100, 58, 112, 107, 159, 27, 255, 68, 194, 25, 244, 20, 68, 99, 111, 112, 199, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2302, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2223e16a508a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12934261233851785830" + } + } + } + ] + }, + "cborHex": "bf462223e16a508a1bb37fba1043d76266ff", + "cborBytes": [191, 70, 34, 35, 225, 106, 80, 138, 27, 179, 127, 186, 16, 67, 215, 98, 102, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2303, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7886962449066975355" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa5b6ec6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11167431635228602050" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1288618245774128062" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5460691860747645962" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3134e9b2" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aff695619ce4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2636339758547398991" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0164b63e880a98d647a182a9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5111347982069568937" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e6f3650d75ec2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9573457662859365280" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c08f9918233" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13070438465509083772" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8358694925943809231" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15359556392240413145" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fae438853344173f69b26bdc" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6d741e8f7d7b607b44fa5b6ec61b9afaafe79742aec2d8669f1b11e21777967433be9f1b4bc84650bbbaf40a443134e9b2ffff46aff695619ce4bf1b2496290adf74f14f4c0164b63e880a98d647a182a91b46ef27e89aaa95a9479e6f3650d75ec21b84dbc105a2f94ba0461c08f99182331bb5638688c3454a7c1b74000cbfb6bda4cf1bd5281b290b11f9d94cfae438853344173f69b26bdcffff", + "cborBytes": [ + 191, 27, 109, 116, 30, 143, 125, 123, 96, 123, 68, 250, 91, 110, 198, 27, 154, 250, 175, 231, 151, 66, 174, 194, + 216, 102, 159, 27, 17, 226, 23, 119, 150, 116, 51, 190, 159, 27, 75, 200, 70, 80, 187, 186, 244, 10, 68, 49, 52, + 233, 178, 255, 255, 70, 175, 246, 149, 97, 156, 228, 191, 27, 36, 150, 41, 10, 223, 116, 241, 79, 76, 1, 100, 182, + 62, 136, 10, 152, 214, 71, 161, 130, 169, 27, 70, 239, 39, 232, 154, 170, 149, 169, 71, 158, 111, 54, 80, 215, 94, + 194, 27, 132, 219, 193, 5, 162, 249, 75, 160, 70, 28, 8, 249, 145, 130, 51, 27, 181, 99, 134, 136, 195, 69, 74, + 124, 27, 116, 0, 12, 191, 182, 189, 164, 207, 27, 213, 40, 27, 41, 11, 17, 249, 217, 76, 250, 228, 56, 133, 51, + 68, 23, 63, 105, 178, 107, 220, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2304, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e6d2e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "201683864987575283" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4683371641477602815" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8215f4c942c1c116" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee010f7960988318a5e1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8133788f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "586233738331640261" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7722484988258040503" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12598025637276494082" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5946643931023912887" + } + } + ] + } + } + ] + }, + "cborHex": "bf435e6d2e1b02cc8668198323f341681b40feadb1c1691dff488215f4c942c1c1164aee010f7960988318a5e145a8133788f51b0822b87aa09b51c541b69f1b6b2bc72e6c683ab71baed52d91e52129021b5286b9260a69afb7ffff", + "cborBytes": [ + 191, 67, 94, 109, 46, 27, 2, 204, 134, 104, 25, 131, 35, 243, 65, 104, 27, 64, 254, 173, 177, 193, 105, 29, 255, + 72, 130, 21, 244, 201, 66, 193, 193, 22, 74, 238, 1, 15, 121, 96, 152, 131, 24, 165, 225, 69, 168, 19, 55, 136, + 245, 27, 8, 34, 184, 122, 160, 155, 81, 197, 65, 182, 159, 27, 107, 43, 199, 46, 108, 104, 58, 183, 27, 174, 213, + 45, 145, 229, 33, 41, 2, 27, 82, 134, 185, 38, 10, 105, 175, 183, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2305, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d7e6bcfc87b9eda0d7d93" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17130776347275179668" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2230647286049924542" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe14b950f24f8648ae34" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "750871198312582708" + } + } + } + ] + }, + "cborHex": "bf4b0d7e6bcfc87b9eda0d7d93d8669f1bedbcbe533a0036949f1b1ef4d9e36031e5beffff4afe14b950f24f8648ae341b0a6ba160677e4e34ff", + "cborBytes": [ + 191, 75, 13, 126, 107, 207, 200, 123, 158, 218, 13, 125, 147, 216, 102, 159, 27, 237, 188, 190, 83, 58, 0, 54, + 148, 159, 27, 30, 244, 217, 227, 96, 49, 229, 190, 255, 255, 74, 254, 20, 185, 80, 242, 79, 134, 72, 174, 52, 27, + 10, 107, 161, 96, 103, 126, 78, 52, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2306, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10200627281595237408" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ddb4f2eb5e35a8525" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14246120487684368978" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3673735526073977642" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fffc07fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11332536789626178387" + } + } + } + ] + }, + "cborHex": "bf1b8d8fe877a5a48420490ddb4f2eb5e35a85251bc5b4631ab7d76a521b32fbbaff265f4b2a44fffc07fe1b9d45422af5b6cb53ff", + "cborBytes": [ + 191, 27, 141, 143, 232, 119, 165, 164, 132, 32, 73, 13, 219, 79, 46, 181, 227, 90, 133, 37, 27, 197, 180, 99, 26, + 183, 215, 106, 82, 27, 50, 251, 186, 255, 38, 95, 75, 42, 68, 255, 252, 7, 254, 27, 157, 69, 66, 42, 245, 182, + 203, 83, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2307, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24adca07762475f4927848" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16599121092769206371" + } + } + } + ] + }, + "cborHex": "bf4b24adca07762475f49278481be65becb01e33d063ff", + "cborBytes": [ + 191, 75, 36, 173, 202, 7, 118, 36, 117, 244, 146, 120, 72, 27, 230, 91, 236, 176, 30, 51, 208, 99, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2308, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4900214505532686415" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14261194177663139544" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3234733763775263437" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4486044054627572894" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9597995014809627761" + } + }, + { + "_tag": "ByteArray", + "bytearray": "db" + } + ] + } + } + ] + }, + "cborHex": "bf1b44010f215d7e004f9f1bc5e9f08ba87afed81b2ce4153844c972cd1b3e41a14cb2d45c9e1b8532ed9d15b2ac7141dbffff", + "cborBytes": [ + 191, 27, 68, 1, 15, 33, 93, 126, 0, 79, 159, 27, 197, 233, 240, 139, 168, 122, 254, 216, 27, 44, 228, 21, 56, 68, + 201, 114, 205, 27, 62, 65, 161, 76, 178, 212, 92, 158, 27, 133, 50, 237, 157, 21, 178, 172, 113, 65, 219, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2309, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "52a018" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17056801444471610759" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6508b3b3abe200" + }, + { + "_tag": "ByteArray", + "bytearray": "0357c3ebe3bb443e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "62660895622163542" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7451779873803156378" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13715727972237001877" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5797f031b6ec6e2e7b41c499" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9134334685021654906" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3cc5ad2a226c" + }, + { + "_tag": "ByteArray", + "bytearray": "fd747c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17474857307847444016" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18027756858932681925" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4352a018d8669f1becb5ee8afe199d879f476508b3b3abe200480357c3ebe3bb443e1b00de9dc0a8ddec561b676a0a5062713b9a1bbe580debf5134495ffff4c5797f031b6ec6e2e7b41c4999f1b7ec3ad00103ecf7a463cc5ad2a226c43fd747c1bf2832a22bee2c6301bfa2f755919cb5cc5ff419280ff", + "cborBytes": [ + 191, 67, 82, 160, 24, 216, 102, 159, 27, 236, 181, 238, 138, 254, 25, 157, 135, 159, 71, 101, 8, 179, 179, 171, + 226, 0, 72, 3, 87, 195, 235, 227, 187, 68, 62, 27, 0, 222, 157, 192, 168, 221, 236, 86, 27, 103, 106, 10, 80, 98, + 113, 59, 154, 27, 190, 88, 13, 235, 245, 19, 68, 149, 255, 255, 76, 87, 151, 240, 49, 182, 236, 110, 46, 123, 65, + 196, 153, 159, 27, 126, 195, 173, 0, 16, 62, 207, 122, 70, 60, 197, 173, 42, 34, 108, 67, 253, 116, 124, 27, 242, + 131, 42, 34, 190, 226, 198, 48, 27, 250, 47, 117, 89, 25, 203, 92, 197, 255, 65, 146, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2310, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "26602fab1a1cea9f94fc" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ef732c350" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ff38f8acaee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16331164914823530527" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "908e9891" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "614131a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b8efd95b65c8715aaf32e05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c18e06c385a5541" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88ca78943e2b1426fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b65b1eac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3ff5f082d394a9b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff71c190dbca125595d3b6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbf85d7b47e70f3b02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2d991dfddb25a" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "909b8cd126004415af668475" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d2431e7" + } + } + ] + }, + "cborHex": "bf4a26602fab1a1cea9f94fc80455ef732c350bf465ff38f8acaee1be2a3f3f6bc61081fff44908e9891bf44614131a94c6b8efd95b65c8715aaf32e054182486c18e06c385a55414988ca78943e2b1426fa44b65b1eac48b3ff5f082d394a9b4bff71c190dbca125595d3b649cbf85d7b47e70f3b0247a2d991dfddb25aff4c909b8cd126004415af668475444d2431e7ff", + "cborBytes": [ + 191, 74, 38, 96, 47, 171, 26, 28, 234, 159, 148, 252, 128, 69, 94, 247, 50, 195, 80, 191, 70, 95, 243, 143, 138, + 202, 238, 27, 226, 163, 243, 246, 188, 97, 8, 31, 255, 68, 144, 142, 152, 145, 191, 68, 97, 65, 49, 169, 76, 107, + 142, 253, 149, 182, 92, 135, 21, 170, 243, 46, 5, 65, 130, 72, 108, 24, 224, 108, 56, 90, 85, 65, 73, 136, 202, + 120, 148, 62, 43, 20, 38, 250, 68, 182, 91, 30, 172, 72, 179, 255, 95, 8, 45, 57, 74, 155, 75, 255, 113, 193, 144, + 219, 202, 18, 85, 149, 211, 182, 73, 203, 248, 93, 123, 71, 231, 15, 59, 2, 71, 162, 217, 145, 223, 221, 178, 90, + 255, 76, 144, 155, 140, 209, 38, 0, 68, 21, 175, 102, 132, 117, 68, 77, 36, 49, 231, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2311, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13433530627907652471" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3198629337753862549" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75405eaffdebc668967b1ad7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17656272934235879535" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "862613048665679985" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15806400852718528506" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + }, + "cborHex": "bf029f1bba6d7ceea3c40b771b2c63d06f84f64195ff0abf0a4c75405eaffdebc668967b1ad71bfffffffffffffff61bf507aeafce79386fff14a01b0bf89dff5855a871021bdb5b9dd463b827fa11ff", + "cborBytes": [ + 191, 2, 159, 27, 186, 109, 124, 238, 163, 196, 11, 119, 27, 44, 99, 208, 111, 132, 246, 65, 149, 255, 10, 191, 10, + 76, 117, 64, 94, 175, 253, 235, 198, 104, 150, 123, 26, 215, 27, 255, 255, 255, 255, 255, 255, 255, 246, 27, 245, + 7, 174, 175, 206, 121, 56, 111, 255, 20, 160, 27, 11, 248, 157, 255, 88, 85, 168, 113, 2, 27, 219, 91, 157, 212, + 99, 184, 39, 250, 17, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2312, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15966536169914739205" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1ebce265828aad2c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4921759401391720245" + } + } + ] + } + } + ] + }, + "cborHex": "bf06d8669f1bdd94880d5d31aa059f481ebce265828aad2c1b444d9a1955e48735ffffff", + "cborBytes": [ + 191, 6, 216, 102, 159, 27, 221, 148, 136, 13, 93, 49, 170, 5, 159, 72, 30, 188, 226, 101, 130, 138, 173, 44, 27, + 68, 77, 154, 25, 85, 228, 135, 53, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2313, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16553706202114587793" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90d7e78dbf3ca6c778c6fa" + } + } + ] + }, + "cborHex": "bf1be5ba9415e5387c914b90d7e78dbf3ca6c778c6faff", + "cborBytes": [ + 191, 27, 229, 186, 148, 21, 229, 56, 124, 145, 75, 144, 215, 231, 141, 191, 60, 166, 199, 120, 198, 250, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2314, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "275da6d7" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eeb366" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2624121453254143354" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "292641b8b33b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11617751641165994403" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d80dc136c8739b4027cf" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4781612430166149323" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e9df7f" + }, + { + "_tag": "ByteArray", + "bytearray": "c6d45b" + }, + { + "_tag": "ByteArray", + "bytearray": "ffc89feb8ab85e12d0f9" + } + ] + } + } + ] + }, + "cborHex": "bf44275da6d79f43eeb3661b246ac08efcb1ed7aff46292641b8b33b1ba13a8b906c6919a34ad80dc136c8739b4027cfd8669f1b425bb32bd1a548cb9f43e9df7f43c6d45b4affc89feb8ab85e12d0f9ffffff", + "cborBytes": [ + 191, 68, 39, 93, 166, 215, 159, 67, 238, 179, 102, 27, 36, 106, 192, 142, 252, 177, 237, 122, 255, 70, 41, 38, 65, + 184, 179, 59, 27, 161, 58, 139, 144, 108, 105, 25, 163, 74, 216, 13, 193, 54, 200, 115, 155, 64, 39, 207, 216, + 102, 159, 27, 66, 91, 179, 43, 209, 165, 72, 203, 159, 67, 233, 223, 127, 67, 198, 212, 91, 74, 255, 200, 159, + 235, 138, 184, 94, 18, 208, 249, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2315, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "97122f71108898aab0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b745811df795b1d8149ccf45" + }, + { + "_tag": "ByteArray", + "bytearray": "46393499" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13380145701893682262" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc24114c341948f5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14525298428980323253" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4997122f71108898aab09f4cb745811df795b1d8149ccf4544463934991bb9afd39ff457b456ff48cc24114c341948f5d8669f1bc99439f67be963b580ffff", + "cborBytes": [ + 191, 73, 151, 18, 47, 113, 16, 136, 152, 170, 176, 159, 76, 183, 69, 129, 29, 247, 149, 177, 216, 20, 156, 207, + 69, 68, 70, 57, 52, 153, 27, 185, 175, 211, 159, 244, 87, 180, 86, 255, 72, 204, 36, 17, 76, 52, 25, 72, 245, 216, + 102, 159, 27, 201, 148, 57, 246, 123, 233, 99, 181, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2316, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11005847952705282004" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "421825927634999597" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b98bca066c8f55fd4d8669f1b05daa0723dbbd92d80ffff", + "cborBytes": [ + 191, 27, 152, 188, 160, 102, 200, 245, 95, 212, 216, 102, 159, 27, 5, 218, 160, 114, 61, 187, 217, 45, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2317, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe00ef0e4302fc05" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + } + } + ] + }, + "cborHex": "bf48fe00ef0e4302fc05d8669f1bfffffffffffffff09f0bffffff", + "cborBytes": [ + 191, 72, 254, 0, 239, 14, 67, 2, 252, 5, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 11, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2318, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ef9418aaa" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18225204392084675435" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc5203c39d85367c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf459ef9418aaa9f1bfceceed555189b6bff48fc5203c39d85367cd87e80ff", + "cborBytes": [ + 191, 69, 158, 249, 65, 138, 170, 159, 27, 252, 236, 238, 213, 85, 24, 155, 107, 255, 72, 252, 82, 3, 195, 157, + 133, 54, 124, 216, 126, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2319, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9126509468548885729" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15157584917192222090" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15449222485987411498" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30ea4a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1114012523734311794" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9738215572464978492" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b7ea7e001e0186ce11bd25a8f2c820fa58a1bd666a9ff5d41c62a416e4330ea4abf1b0f75c47cf08523721b87251777c6f3ca3cffff", + "cborBytes": [ + 191, 27, 126, 167, 224, 1, 224, 24, 108, 225, 27, 210, 90, 143, 44, 130, 15, 165, 138, 27, 214, 102, 169, 255, 93, + 65, 198, 42, 65, 110, 67, 48, 234, 74, 191, 27, 15, 117, 196, 124, 240, 133, 35, 114, 27, 135, 37, 23, 119, 198, + 243, 202, 60, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2320, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05070001fd04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02fbea01007b03" + } + } + ] + }, + "cborHex": "bf4605070001fd044702fbea01007b03ff", + "cborBytes": [191, 70, 5, 7, 0, 1, 253, 4, 71, 2, 251, 234, 1, 0, 123, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2321, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bc5468adc3551" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c6606" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34f24eb1bb303752" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4599501514615415924" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6607370851564997966" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2de40cc79a6c9fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a48729a32c7fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edf900070400" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee" + } + } + ] + }, + "cborHex": "bf472bc5468adc3551433c66064834f24eb1bb303752d8669f1b3fd4b6422285e4749f1b5bb218c83acd4d4e10ffff48d2de40cc79a6c9fe475a48729a32c7fd46edf90007040041eeff", + "cborBytes": [ + 191, 71, 43, 197, 70, 138, 220, 53, 81, 67, 60, 102, 6, 72, 52, 242, 78, 177, 187, 48, 55, 82, 216, 102, 159, 27, + 63, 212, 182, 66, 34, 133, 228, 116, 159, 27, 91, 178, 24, 200, 58, 205, 77, 78, 16, 255, 255, 72, 210, 222, 64, + 204, 121, 166, 201, 254, 71, 90, 72, 114, 154, 50, 199, 253, 70, 237, 249, 0, 7, 4, 0, 65, 238, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2322, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15704155462642123668" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8081829637668465802" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "03fb44" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05052cde01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de07fd472104f80301" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50168c43cd80cfa0d2a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3549024396803679162" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03" + } + } + ] + } + } + ] + }, + "cborHex": "bf009f1bd9f05e30684b4394ff1b70286d3c7073ec8a4207fa4303fb44bf4505052cde0149de07fd472104f803014a50168c43cd80cfa0d2a11b3140aae2a6ada3ba41fb4103ffff", + "cborBytes": [ + 191, 0, 159, 27, 217, 240, 94, 48, 104, 75, 67, 148, 255, 27, 112, 40, 109, 60, 112, 115, 236, 138, 66, 7, 250, + 67, 3, 251, 68, 191, 69, 5, 5, 44, 222, 1, 73, 222, 7, 253, 71, 33, 4, 248, 3, 1, 74, 80, 22, 140, 67, 205, 128, + 207, 160, 210, 161, 27, 49, 64, 170, 226, 166, 173, 163, 186, 65, 251, 65, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2323, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "78b0f58a44a1b5413080ec53" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2523667521130642595" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3027356865551005449" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2829572450355569462" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1465886685300812652" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4377733800348460998" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1629603193577265044" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c956a5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1956161063276747745" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f40afac4c0c9026ce919" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13832071726456416969" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c78b0f58a44a1b5413080ec531b2305de3d502ebca3417cd8669f1b2a0355079381f7099f1b2744a926e1ace3361b1457e02c76546b6c1b3cc0d5b27afda7c61b169d83787603d794ffff43c956a59f1b1b25ae1f740f9be1ff4af40afac4c0c9026ce9199f1bbff563f32328aac9ffff", + "cborBytes": [ + 191, 76, 120, 176, 245, 138, 68, 161, 181, 65, 48, 128, 236, 83, 27, 35, 5, 222, 61, 80, 46, 188, 163, 65, 124, + 216, 102, 159, 27, 42, 3, 85, 7, 147, 129, 247, 9, 159, 27, 39, 68, 169, 38, 225, 172, 227, 54, 27, 20, 87, 224, + 44, 118, 84, 107, 108, 27, 60, 192, 213, 178, 122, 253, 167, 198, 27, 22, 157, 131, 120, 118, 3, 215, 148, 255, + 255, 67, 201, 86, 165, 159, 27, 27, 37, 174, 31, 116, 15, 155, 225, 255, 74, 244, 10, 250, 196, 192, 201, 2, 108, + 233, 25, 159, 27, 191, 245, 99, 243, 35, 40, 170, 201, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2324, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23837f5ab0f25bc9765060c6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "91b24de52e3a5eb39b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1842413427684818061" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5a073" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95b501f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea5ebfaf4d8b208d2b7996" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9057257024044805981" + } + } + } + ] + }, + "cborHex": "bf4c23837f5ab0f25bc9765060c69f4991b24de52e3a5eb39b1b199191403e903c8dff43e5a0734495b501f74bea5ebfaf4d8b208d2b79961b7db1d746a59a2f5dff", + "cborBytes": [ + 191, 76, 35, 131, 127, 90, 176, 242, 91, 201, 118, 80, 96, 198, 159, 73, 145, 178, 77, 229, 46, 58, 94, 179, 155, + 27, 25, 145, 145, 64, 62, 144, 60, 141, 255, 67, 229, 160, 115, 68, 149, 181, 1, 247, 75, 234, 94, 191, 175, 77, + 139, 32, 141, 43, 121, 150, 27, 125, 177, 215, 70, 165, 154, 47, 93, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2325, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11766479907411429875" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10719059401690295900" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7966313494636922847" + } + } + } + ] + }, + "cborHex": "bf0b1ba34aef22620789f31b94c1bfbbdc0fae5c1b6e8e07ea813c07dfff", + "cborBytes": [ + 191, 11, 27, 163, 74, 239, 34, 98, 7, 137, 243, 27, 148, 193, 191, 187, 220, 15, 174, 92, 27, 110, 142, 7, 234, + 129, 60, 7, 223, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2326, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18276101361867635572" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + } + ] + }, + "cborHex": "bf0f41b81bfda1c15b91273b741bfffffffffffffff6ff", + "cborBytes": [ + 191, 15, 65, 184, 27, 253, 161, 193, 91, 145, 39, 59, 116, 27, 255, 255, 255, 255, 255, 255, 255, 246, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2327, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6363b8694e27c9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2702405d7d48cc53" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1720847662b" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a4e37561cb6c42185" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17672095748635562865" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e9a5e0ff4bffb59344c8a05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1455b135be" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8235813695020587197" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87c1723976d89f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be1a5d66d3" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18326926244438963757" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adb7167466fffda551c66262" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10037951264599581939" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b89da68637822caf31308596" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1294839928312003339" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14584396327589524780" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8a180cb2f05" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16370057713479207079" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10762823600620067011" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac6cf045c577cd87f9ce5b" + }, + { + "_tag": "ByteArray", + "bytearray": "2ac52070535f1a7727720c9c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16256026110798933869" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4036168644065574614" + } + } + ] + } + } + ] + }, + "cborHex": "bf476363b8694e27c9bf482702405d7d48cc5346d1720847662bff497a4e37561cb6c42185bf1bf53fe573de1d13714c2e9a5e0ff4bffb59344c8a05451455b135be1b724b7ceb9fffd8bd4787c1723976d89f45be1a5d66d3ff41a91bfe565251b091762d4cadb7167466fffda551c66262d8669f1b8b4df77de72424f39f4cb89da68637822caf313085961b11f8320df0077b0b1bca662f30417c352cffff46d8a180cb2f05d8669f1be32e20c2149248a79f1b955d3b0a772658c34bac6cf045c577cd87f9ce5b4c2ac52070535f1a7727720c9c1be199019ea1a52f6d1b380359ff4b193ed6ffffff", + "cborBytes": [ + 191, 71, 99, 99, 184, 105, 78, 39, 201, 191, 72, 39, 2, 64, 93, 125, 72, 204, 83, 70, 209, 114, 8, 71, 102, 43, + 255, 73, 122, 78, 55, 86, 28, 182, 196, 33, 133, 191, 27, 245, 63, 229, 115, 222, 29, 19, 113, 76, 46, 154, 94, + 15, 244, 191, 251, 89, 52, 76, 138, 5, 69, 20, 85, 177, 53, 190, 27, 114, 75, 124, 235, 159, 255, 216, 189, 71, + 135, 193, 114, 57, 118, 216, 159, 69, 190, 26, 93, 102, 211, 255, 65, 169, 27, 254, 86, 82, 81, 176, 145, 118, 45, + 76, 173, 183, 22, 116, 102, 255, 253, 165, 81, 198, 98, 98, 216, 102, 159, 27, 139, 77, 247, 125, 231, 36, 36, + 243, 159, 76, 184, 157, 166, 134, 55, 130, 44, 175, 49, 48, 133, 150, 27, 17, 248, 50, 13, 240, 7, 123, 11, 27, + 202, 102, 47, 48, 65, 124, 53, 44, 255, 255, 70, 216, 161, 128, 203, 47, 5, 216, 102, 159, 27, 227, 46, 32, 194, + 20, 146, 72, 167, 159, 27, 149, 93, 59, 10, 119, 38, 88, 195, 75, 172, 108, 240, 69, 197, 119, 205, 135, 249, 206, + 91, 76, 42, 197, 32, 112, 83, 95, 26, 119, 39, 114, 12, 156, 27, 225, 153, 1, 158, 161, 165, 47, 109, 27, 56, 3, + 89, 255, 75, 25, 62, 214, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2328, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2210821555055868024" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1180434392937856856" + } + } + } + ] + }, + "cborHex": "bf1b1eae6a7daae1b8781b1061bed37fb6ff58ff", + "cborBytes": [191, 27, 30, 174, 106, 125, 170, 225, 184, 120, 27, 16, 97, 190, 211, 127, 182, 255, 88, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2329, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "54" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7edbd0e02aca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8376" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "179140626865863177" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "724061b02326a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4026718672943210765" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77907e3c20c2d5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7371992679211760717" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fecd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11861728098822880550" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14895578598197997628" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14290698424390138781" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13031812156796065819" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad16606f1e5663c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2285952307143290100" + } + } + } + ] + }, + "cborHex": "bf4154a04157467edbd0e02aca428376bf1b027c6f73752e3a0947724061b02326a71b37e1c74c6f36610d4777907e3c20c2d51b664e944883327c4d42fecd1ba49d52dc189b7d261bceb7b9d09d80b03c1bc652c2806a023b9d1bb4da4c1c7172581bff48ad16606f1e5663c71b1fb9558308c2acf4ff", + "cborBytes": [ + 191, 65, 84, 160, 65, 87, 70, 126, 219, 208, 224, 42, 202, 66, 131, 118, 191, 27, 2, 124, 111, 115, 117, 46, 58, + 9, 71, 114, 64, 97, 176, 35, 38, 167, 27, 55, 225, 199, 76, 111, 54, 97, 13, 71, 119, 144, 126, 60, 32, 194, 213, + 27, 102, 78, 148, 72, 131, 50, 124, 77, 66, 254, 205, 27, 164, 157, 82, 220, 24, 155, 125, 38, 27, 206, 183, 185, + 208, 157, 128, 176, 60, 27, 198, 82, 194, 128, 106, 2, 59, 157, 27, 180, 218, 76, 28, 113, 114, 88, 27, 255, 72, + 173, 22, 96, 111, 30, 86, 99, 199, 27, 31, 185, 85, 131, 8, 194, 172, 244, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2330, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0306cefb" + } + } + ] + }, + "cborHex": "bf09440306cefbff", + "cborBytes": [191, 9, 68, 3, 6, 206, 251, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2331, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2473610577673141761" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4122980123348665486" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f9b45efc5df884" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1957232518444676694" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16952414696217618093" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11048389704168821809" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0300c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15528028011057289161" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10970111188705451692" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + } + ] + }, + "cborHex": "bf089f1b225407b6f2db3e011b3937c493e431848e47f9b45efc5df8841bfffffffffffffffeff0ed8669f1b1b297c9b0cbcf6569f1beb4313593529a6ad1b9953c3e62910d431ffff13430300c11bd77ea3347d6297c99f1b983daa0105539eacff1bfffffffffffffffe1bffffffffffffffffff", + "cborBytes": [ + 191, 8, 159, 27, 34, 84, 7, 182, 242, 219, 62, 1, 27, 57, 55, 196, 147, 228, 49, 132, 142, 71, 249, 180, 94, 252, + 93, 248, 132, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255, 14, 216, 102, 159, 27, 27, 41, 124, 155, 12, 188, + 246, 86, 159, 27, 235, 67, 19, 89, 53, 41, 166, 173, 27, 153, 83, 195, 230, 41, 16, 212, 49, 255, 255, 19, 67, 3, + 0, 193, 27, 215, 126, 163, 52, 125, 98, 151, 201, 159, 27, 152, 61, 170, 1, 5, 83, 158, 172, 255, 27, 255, 255, + 255, 255, 255, 255, 255, 254, 27, 255, 255, 255, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2332, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11552692802764652192" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1840786589828417716" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17035392571056625668" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3595882409221408585" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "59" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4756019414159973003" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12194277765769326023" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9134057998509142914" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adf125d4d1ad997e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10366101881029713386" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15138432232557825236" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7086841562699959414" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1ba05368e533ffbea0bf1b198bc9a68a0688b41bec69df49372898041b31e723ffd7b7c74941591b4200c6756dddda8b1ba93ac705191fedc71b7ec2b15af6f3f38248adf125d4d1ad997e1b8fdbcabd2448ddea410e1bd21683e89deeccd41b625984da84348c76ffff", + "cborBytes": [ + 191, 27, 160, 83, 104, 229, 51, 255, 190, 160, 191, 27, 25, 139, 201, 166, 138, 6, 136, 180, 27, 236, 105, 223, + 73, 55, 40, 152, 4, 27, 49, 231, 35, 255, 215, 183, 199, 73, 65, 89, 27, 66, 0, 198, 117, 109, 221, 218, 139, 27, + 169, 58, 199, 5, 25, 31, 237, 199, 27, 126, 194, 177, 90, 246, 243, 243, 130, 72, 173, 241, 37, 212, 209, 173, + 153, 126, 27, 143, 219, 202, 189, 36, 72, 221, 234, 65, 14, 27, 210, 22, 131, 232, 157, 238, 204, 212, 27, 98, 89, + 132, 218, 132, 52, 140, 118, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2333, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0212e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f001" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73b66801d7643b34583c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a76dac31bc42e0f6dfec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7785399281663020625" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9e7c496dfab5f5830" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11795548915676394867" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b307fe61c696ba5192526b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a73fe17d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "214de0f2ed13ef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7e7c282" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13589317957283163111" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf430212e642f001419a4a73b66801d7643b34583c4aa76dac31bc42e0f6dfec1b6c0b4b65da1b0e5149b9e7c496dfab5f58309f1ba3b2353e49a2b573ff41c54bb307fe61c696ba5192526b41fabf451a73fe17d947214de0f2ed13ef44a7e7c2821bbc96f4aecfb32be7ffff", + "cborBytes": [ + 191, 67, 2, 18, 230, 66, 240, 1, 65, 154, 74, 115, 182, 104, 1, 215, 100, 59, 52, 88, 60, 74, 167, 109, 172, 49, + 188, 66, 224, 246, 223, 236, 27, 108, 11, 75, 101, 218, 27, 14, 81, 73, 185, 231, 196, 150, 223, 171, 95, 88, 48, + 159, 27, 163, 178, 53, 62, 73, 162, 181, 115, 255, 65, 197, 75, 179, 7, 254, 97, 198, 150, 186, 81, 146, 82, 107, + 65, 250, 191, 69, 26, 115, 254, 23, 217, 71, 33, 77, 224, 242, 237, 19, 239, 68, 167, 231, 194, 130, 27, 188, 150, + 244, 174, 207, 179, 43, 231, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2334, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4934d8e2d77b96" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16204040972733752940" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5605" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10340391320751168067" + } + } + } + ] + }, + "cborHex": "bf474934d8e2d77b96bf1bfffffffffffffff41be0e0516979aba66cff4256051b8f80731ed7e7da43ff", + "cborBytes": [ + 191, 71, 73, 52, 216, 226, 215, 123, 150, 191, 27, 255, 255, 255, 255, 255, 255, 255, 244, 27, 224, 224, 81, 105, + 121, 171, 166, 108, 255, 66, 86, 5, 27, 143, 128, 115, 30, 215, 231, 218, 67, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2335, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3185052567808979345" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5710531717878761494" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5275830156737995930" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4692246334478245792" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3626597855990423268" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5857060817193168419" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10c5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11209361700830141472" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7169636808189479086" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14307870822815157532" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be8b663a8ff5c0060f40" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15000141807084807585" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9696806094043625132" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17318908705890682810" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8b98" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b2c33946f6f3331911b4f3fe2577ac3c8161b4937839333a9649abf1b411e352e3d345fa01b3254438915809ee41b514875c7fca86e234210c51b9b8fa713c0d95c201b637faab0d0b308ae1bc68fc4b4fe12cd1c4abe8b663a8ff5c0060f401bd02b357fd7c6a5a11b8691f9c4435036ac1bf0591fb56008c7ba428b98ff413ca0ff", + "cborBytes": [ + 191, 27, 44, 51, 148, 111, 111, 51, 49, 145, 27, 79, 63, 226, 87, 122, 195, 200, 22, 27, 73, 55, 131, 147, 51, + 169, 100, 154, 191, 27, 65, 30, 53, 46, 61, 52, 95, 160, 27, 50, 84, 67, 137, 21, 128, 158, 228, 27, 81, 72, 117, + 199, 252, 168, 110, 35, 66, 16, 197, 27, 155, 143, 167, 19, 192, 217, 92, 32, 27, 99, 127, 170, 176, 208, 179, 8, + 174, 27, 198, 143, 196, 180, 254, 18, 205, 28, 74, 190, 139, 102, 58, 143, 245, 192, 6, 15, 64, 27, 208, 43, 53, + 127, 215, 198, 165, 161, 27, 134, 145, 249, 196, 67, 80, 54, 172, 27, 240, 89, 31, 181, 96, 8, 199, 186, 66, 139, + 152, 255, 65, 60, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2336, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "83c6615a83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3a7ac046810f9513408" + } + } + ] + }, + "cborHex": "bf4583c6615a834af3a7ac046810f9513408ff", + "cborBytes": [191, 69, 131, 198, 97, 90, 131, 74, 243, 167, 172, 4, 104, 16, 249, 81, 52, 8, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2337, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04c8d495c4c9029785" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "856451b1dd53dd79" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b78b" + } + } + ] + }, + "cborHex": "bf4904c8d495c4c90297858048856451b1dd53dd7942b78bff", + "cborBytes": [ + 191, 73, 4, 200, 212, 149, 196, 201, 2, 151, 133, 128, 72, 133, 100, 81, 177, 221, 83, 221, 121, 66, 183, 139, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2338, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3655484424507857846" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eb1ff53f5c90969e5bc5b6" + }, + { + "_tag": "ByteArray", + "bytearray": "326c917fd101afef376abe48" + }, + { + "_tag": "ByteArray", + "bytearray": "7b7356" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6056807728243274811" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12726757907794685342" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0ec" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16175479359762241747" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "db519e106e4144687ca684" + }, + { + "_tag": "ByteArray", + "bytearray": "8f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "855013466490231438" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9571384974633341155" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18056397634454365362" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1003480543171029398" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6987886863688783676" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4604419883953737328" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17958220653196442523" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6618649581434234501" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28f32e7d26a61454df" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12416661328262735985" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6794561454644910269" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13539475335217402991" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a0fa31a34d0aa4f14481281" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14329534091994276181" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15044928620104331329" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b32bae3b76cc39bb69f4beb1ff53f5c90969e5bc5b64c326c917fd101afef376abe48437b7356ff1b540e1a89dac7f43ba01bb09e86e34c7eed9e42d0ec1be07ad8c6be4a98d39f4bdb519e106e4144687ca684418f1b0bdd9e37bc535a8e1b84d463ec4d8810e3ff1bfa9535fb4cdb24b2bf1b0ded143cc2b9a9961b60f9f61440c9d73c1b3fe62f7d3bcece701bf9386a898fdb7b9b1b5bda2aba2a2ce6854928f32e7d26a61454df1bac50d7b1176e28711b5e4b21a4d4abd8bd1bbbe5e11508cbd46f4c0a0fa31a34d0aa4f144812811bc6dcbb55e62b21551bd0ca52de586d3041ffff", + "cborBytes": [ + 191, 27, 50, 186, 227, 183, 108, 195, 155, 182, 159, 75, 235, 31, 245, 63, 92, 144, 150, 158, 91, 197, 182, 76, + 50, 108, 145, 127, 209, 1, 175, 239, 55, 106, 190, 72, 67, 123, 115, 86, 255, 27, 84, 14, 26, 137, 218, 199, 244, + 59, 160, 27, 176, 158, 134, 227, 76, 126, 237, 158, 66, 208, 236, 27, 224, 122, 216, 198, 190, 74, 152, 211, 159, + 75, 219, 81, 158, 16, 110, 65, 68, 104, 124, 166, 132, 65, 143, 27, 11, 221, 158, 55, 188, 83, 90, 142, 27, 132, + 212, 99, 236, 77, 136, 16, 227, 255, 27, 250, 149, 53, 251, 76, 219, 36, 178, 191, 27, 13, 237, 20, 60, 194, 185, + 169, 150, 27, 96, 249, 246, 20, 64, 201, 215, 60, 27, 63, 230, 47, 125, 59, 206, 206, 112, 27, 249, 56, 106, 137, + 143, 219, 123, 155, 27, 91, 218, 42, 186, 42, 44, 230, 133, 73, 40, 243, 46, 125, 38, 166, 20, 84, 223, 27, 172, + 80, 215, 177, 23, 110, 40, 113, 27, 94, 75, 33, 164, 212, 171, 216, 189, 27, 187, 229, 225, 21, 8, 203, 212, 111, + 76, 10, 15, 163, 26, 52, 208, 170, 79, 20, 72, 18, 129, 27, 198, 220, 187, 85, 230, 43, 33, 85, 27, 208, 202, 82, + 222, 88, 109, 48, 65, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2339, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9956700284190863945" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2da9474865" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5915710125578003309" + } + }, + { + "_tag": "ByteArray", + "bytearray": "24698aee" + }, + { + "_tag": "ByteArray", + "bytearray": "b0b0ef187dae1cf0" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1288696756330792700" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17555800973283218060" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14098901441040024429" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2928" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15891433920353283662" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "024747" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c79562" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0404c759" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16767530331002255893" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0502fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7800" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0c1589795" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0800" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4d196148e6ad6eff1c5a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf06d8669f1b8a2d4e27d63a32499f452da94748651b5218d3043542236d4424698aee48b0b0ef187dae1cf0ffff1b11e25edf404b86fc1bf3a2bbf87800d28c1bc3a95c29546f036dbf070e42b5f0422928ff1bdc89b6f442402e4ebf4302474743c79562440404c7590aff1be8b23bff73fa3a15bf430502fb42780045a0c15897954208004bf4d196148e6ad6eff1c5a91bffffffffffffffeeffff", + "cborBytes": [ + 191, 6, 216, 102, 159, 27, 138, 45, 78, 39, 214, 58, 50, 73, 159, 69, 45, 169, 71, 72, 101, 27, 82, 24, 211, 4, + 53, 66, 35, 109, 68, 36, 105, 138, 238, 72, 176, 176, 239, 24, 125, 174, 28, 240, 255, 255, 27, 17, 226, 94, 223, + 64, 75, 134, 252, 27, 243, 162, 187, 248, 120, 0, 210, 140, 27, 195, 169, 92, 41, 84, 111, 3, 109, 191, 7, 14, 66, + 181, 240, 66, 41, 40, 255, 27, 220, 137, 182, 244, 66, 64, 46, 78, 191, 67, 2, 71, 71, 67, 199, 149, 98, 68, 4, 4, + 199, 89, 10, 255, 27, 232, 178, 59, 255, 115, 250, 58, 21, 191, 67, 5, 2, 251, 66, 120, 0, 69, 160, 193, 88, 151, + 149, 66, 8, 0, 75, 244, 209, 150, 20, 142, 106, 214, 239, 241, 197, 169, 27, 255, 255, 255, 255, 255, 255, 255, + 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2340, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8773711715875068437" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7073540776357062067" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2494298469779272844" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc3bd94d4ed428a7c145" + }, + { + "_tag": "ByteArray", + "bytearray": "ce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11761114308302426805" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16324333914189188519" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06fa0390" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3559752176532771099" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6806515197612381198" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d46d99eb8aa965" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6177f92f6f4cb3b346" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd00a1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b68038b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd050506cc0206ffc004fb3d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b42a9bccdef5609bc15a978" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c7ad117e9fec3722e" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b79c27c520a6a9a15d8669f1b622a43dbdf00e5b39f1b229d873e2efe748c4acc3bd94d4ed428a7c14541ce1ba337df267d2152b5ffff1be28baf34761bcda7bf4406fa03901b3166c7be82a8d11b41071b5e7599827ffbd40e4242f547d46d99eb8aa965496177f92f6f4cb3b34643fd00a1446b68038b1bffffffffffffffef4cfd050506cc0206ffc004fb3d4c5b42a9bccdef5609bc15a978ff493c7ad117e9fec3722ea0ff", + "cborBytes": [ + 191, 27, 121, 194, 124, 82, 10, 106, 154, 21, 216, 102, 159, 27, 98, 42, 67, 219, 223, 0, 229, 179, 159, 27, 34, + 157, 135, 62, 46, 254, 116, 140, 74, 204, 59, 217, 77, 78, 212, 40, 167, 193, 69, 65, 206, 27, 163, 55, 223, 38, + 125, 33, 82, 181, 255, 255, 27, 226, 139, 175, 52, 118, 27, 205, 167, 191, 68, 6, 250, 3, 144, 27, 49, 102, 199, + 190, 130, 168, 209, 27, 65, 7, 27, 94, 117, 153, 130, 127, 251, 212, 14, 66, 66, 245, 71, 212, 109, 153, 235, 138, + 169, 101, 73, 97, 119, 249, 47, 111, 76, 179, 179, 70, 67, 253, 0, 161, 68, 107, 104, 3, 139, 27, 255, 255, 255, + 255, 255, 255, 255, 239, 76, 253, 5, 5, 6, 204, 2, 6, 255, 192, 4, 251, 61, 76, 91, 66, 169, 188, 205, 239, 86, 9, + 188, 21, 169, 120, 255, 73, 60, 122, 209, 23, 233, 254, 195, 114, 46, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2341, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "61e98d29d2b2abbe86d51295" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fe744530424" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5543116969130928485" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8e092e97f0d94fa5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15685533013822224783" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9ec6f7586f821910704" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12620146436898333832" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14806229796947140763" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15247181402700863989" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9753477085036387820" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4c61e98d29d2b2abbe86d51295466fe74453042441d4d8669f1b4ced1b83c57d29659f488e092e97f0d94fa51bd9ae352ba989398fffff4ad9ec6f7586f821910704bf1baf23c451e8bca4881bcd7a4b8db5d6a09b1bd398deb3e5ed59f51b875b4fbb92819decffff", + "cborBytes": [ + 191, 76, 97, 233, 141, 41, 210, 178, 171, 190, 134, 213, 18, 149, 70, 111, 231, 68, 83, 4, 36, 65, 212, 216, 102, + 159, 27, 76, 237, 27, 131, 197, 125, 41, 101, 159, 72, 142, 9, 46, 151, 240, 217, 79, 165, 27, 217, 174, 53, 43, + 169, 137, 57, 143, 255, 255, 74, 217, 236, 111, 117, 134, 248, 33, 145, 7, 4, 191, 27, 175, 35, 196, 81, 232, 188, + 164, 136, 27, 205, 122, 75, 141, 181, 214, 160, 155, 27, 211, 152, 222, 179, 229, 237, 89, 245, 27, 135, 91, 79, + 187, 146, 129, 157, 236, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2342, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fecbaa42629d1a1db2c218e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "55c1821b61df27" + } + } + ] + }, + "cborHex": "bf4cfecbaa42629d1a1db2c218e24755c1821b61df27ff", + "cborBytes": [ + 191, 76, 254, 203, 170, 66, 98, 157, 26, 29, 178, 194, 24, 226, 71, 85, 193, 130, 27, 97, 223, 39, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2343, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea3f3007ff33e1070503" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4aea3f3007ff33e107050380ff", + "cborBytes": [191, 74, 234, 63, 48, 7, 255, 51, 225, 7, 5, 3, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2344, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9dc5991e9ab05c9ecc94" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13414039234056029555" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13602774766476504998" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a967536480106e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0125cef891" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60c33b8e00e291" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fe1d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b510" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15983657701274111602" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9708c73bd0d5dea45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "785d14979f25a9f7f6d019" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd27fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9357001147046293251" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4a9dc5991e9ab05c9ecc94d8669f1bba283d9cdd1005739f1bbcc6c3945b7aafa6ffff47a967536480106ebf450125cef89142ce024760c33b8e00e2910e436fe1d241e442b5101bddd15bfe87e14e7249c9708c73bd0d5dea454b785d14979f25a9f7f6d01943cd27fb1b81dabef7bc9def03ffff", + "cborBytes": [ + 191, 74, 157, 197, 153, 30, 154, 176, 92, 158, 204, 148, 216, 102, 159, 27, 186, 40, 61, 156, 221, 16, 5, 115, + 159, 27, 188, 198, 195, 148, 91, 122, 175, 166, 255, 255, 71, 169, 103, 83, 100, 128, 16, 110, 191, 69, 1, 37, + 206, 248, 145, 66, 206, 2, 71, 96, 195, 59, 142, 0, 226, 145, 14, 67, 111, 225, 210, 65, 228, 66, 181, 16, 27, + 221, 209, 91, 254, 135, 225, 78, 114, 73, 201, 112, 140, 115, 189, 13, 93, 234, 69, 75, 120, 93, 20, 151, 159, 37, + 169, 247, 246, 208, 25, 67, 205, 39, 251, 27, 129, 218, 190, 247, 188, 157, 239, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2345, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "395f257aba04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b03efc3c55fd16194c7f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5cc5bfda73287b17c8e5380" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "726266852073901231" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcabf7d6835e8ba8049eb2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13220389133441036367" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed84d895" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4706555674880063056" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efb9d7e7cb7f0ca8cb93" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13987272838305652574" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a425" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b501de16" + } + } + ] + } + } + ] + }, + "cborHex": "bf46395f257aba044ab03efc3c55fd16194c7f4cd5cc5bfda73287b17c8e53801b0a1437daa2018caf4bdcabf7d6835e8ba8049eb21bb77841df4b2ff04f44ed84d8951b41510b732cd336504aefb9d7e7cb7f0ca8cb93bf41a41bc21cc689e7ad9f5e42a42544b501de16ffff", + "cborBytes": [ + 191, 70, 57, 95, 37, 122, 186, 4, 74, 176, 62, 252, 60, 85, 253, 22, 25, 76, 127, 76, 213, 204, 91, 253, 167, 50, + 135, 177, 124, 142, 83, 128, 27, 10, 20, 55, 218, 162, 1, 140, 175, 75, 220, 171, 247, 214, 131, 94, 139, 168, 4, + 158, 178, 27, 183, 120, 65, 223, 75, 47, 240, 79, 68, 237, 132, 216, 149, 27, 65, 81, 11, 115, 44, 211, 54, 80, + 74, 239, 185, 215, 231, 203, 127, 12, 168, 203, 147, 191, 65, 164, 27, 194, 28, 198, 137, 231, 173, 159, 94, 66, + 164, 37, 68, 181, 1, 222, 22, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2346, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5407522301898764803" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a98f1ebeb032e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5323fdf71" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bc0557768b7f4be15eb37" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5012233958978031980" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a80848a54b0dd5eb387" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5bd24f956e51735a52607fc8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74c323c67719" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b86c2aebf477ec33099676c8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e99ae7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16874786089457292778" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7031cc2eb9db6ff0c6cb57f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13653405776940182931" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0303040699947f45261c" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b4b0b60e21fadb203bf474a98f1ebeb032e45a5323fdf714b5bc0557768b7f4be15eb371b458f083ad009116c4a6a80848a54b0dd5eb3874c5bd24f956e51735a52607fc84674c323c677194cb86c2aebf477ec33099676c843e99ae71bea2f488abace15ea4cf7031cc2eb9db6ff0c6cb57f1bbd7aa4371cc92d93ff4a0303040699947f45261ca0ff", + "cborBytes": [ + 191, 27, 75, 11, 96, 226, 31, 173, 178, 3, 191, 71, 74, 152, 241, 235, 235, 3, 46, 69, 165, 50, 63, 223, 113, 75, + 91, 192, 85, 119, 104, 183, 244, 190, 21, 235, 55, 27, 69, 143, 8, 58, 208, 9, 17, 108, 74, 106, 128, 132, 138, + 84, 176, 221, 94, 179, 135, 76, 91, 210, 79, 149, 110, 81, 115, 90, 82, 96, 127, 200, 70, 116, 195, 35, 198, 119, + 25, 76, 184, 108, 42, 235, 244, 119, 236, 51, 9, 150, 118, 200, 67, 233, 154, 231, 27, 234, 47, 72, 138, 186, 206, + 21, 234, 76, 247, 3, 28, 194, 235, 157, 182, 255, 12, 108, 181, 127, 27, 189, 122, 164, 55, 28, 201, 45, 147, 255, + 74, 3, 3, 4, 6, 153, 148, 127, 69, 38, 28, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2347, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9cbb883" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "ByteArray", + "bytearray": "432cff1e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12002892088522898813" + } + } + ] + } + } + ] + }, + "cborHex": "bf44c9cbb8839f1bfffffffffffffffe44432cff1e1ba692d6c2adc0fd7dffff", + "cborBytes": [ + 191, 68, 201, 203, 184, 131, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 68, 67, 44, 255, 30, 27, 166, 146, + 214, 194, 173, 192, 253, 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2348, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4844956172702181503" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13034508510621105200" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "639f862f9fa7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "412a3448995b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0dbe863cef97b1dcaac1e6cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9747822682621292811" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4075866461043523973" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12500623586428502542" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c871aeecc8ec851553" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16179330181525640365" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3872916782169729346" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1724129746497901196" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b433cbdf82a3fe87f801bb4e3e06e3d607c3046639f862f9fa746412a3448995b9f4c0dbe863cef97b1dcaac1e6cc1b874739156b23310b1b389062f3926d81851bad7b22ebb3f0c20eff49c871aeecc8ec851553d8669f1be08887140d9794ad9f1b35bf5d4b35e0294241f01b17ed56de9eb1128cffffff", + "cborBytes": [ + 191, 27, 67, 60, 189, 248, 42, 63, 232, 127, 128, 27, 180, 227, 224, 110, 61, 96, 124, 48, 70, 99, 159, 134, 47, + 159, 167, 70, 65, 42, 52, 72, 153, 91, 159, 76, 13, 190, 134, 60, 239, 151, 177, 220, 170, 193, 230, 204, 27, 135, + 71, 57, 21, 107, 35, 49, 11, 27, 56, 144, 98, 243, 146, 109, 129, 133, 27, 173, 123, 34, 235, 179, 240, 194, 14, + 255, 73, 200, 113, 174, 236, 200, 236, 133, 21, 83, 216, 102, 159, 27, 224, 136, 135, 20, 13, 151, 148, 173, 159, + 27, 53, 191, 93, 75, 53, 224, 41, 66, 65, 240, 27, 23, 237, 86, 222, 158, 177, 18, 140, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2349, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "34f3af78afff511d0fe1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9778996091308169025" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "849615783a9d48" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5791d33bccb221be5994f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f616" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d40f15265b915246" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "49862a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45bdd79c04a87bf3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5481171120bc9e886ecea453" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "557673c35434cc64" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "549fd1f0b4b3ee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efd944750fb8" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a34f3af78afff511d0fe1bf1b87b5f9223a5b574147849615783a9d484bb5791d33bccb221be5994f42f616ff48d40f15265b915246bf4349862a4845bdd79c04a87bf34c5481171120bc9e886ecea45348557673c35434cc6447549fd1f0b4b3ee46efd944750fb8ffff", + "cborBytes": [ + 191, 74, 52, 243, 175, 120, 175, 255, 81, 29, 15, 225, 191, 27, 135, 181, 249, 34, 58, 91, 87, 65, 71, 132, 150, + 21, 120, 58, 157, 72, 75, 181, 121, 29, 51, 188, 203, 34, 27, 229, 153, 79, 66, 246, 22, 255, 72, 212, 15, 21, 38, + 91, 145, 82, 70, 191, 67, 73, 134, 42, 72, 69, 189, 215, 156, 4, 168, 123, 243, 76, 84, 129, 23, 17, 32, 188, 158, + 136, 110, 206, 164, 83, 72, 85, 118, 115, 195, 84, 52, 204, 100, 71, 84, 159, 209, 240, 180, 179, 238, 70, 239, + 217, 68, 117, 15, 184, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2350, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "082846d497ec7fd486a2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8645979047897798685" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6827915470034408710" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12190515959590571352" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a6b545d38" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8708038110474445371" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f967a1c0bc99e01929" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5097d6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d65155644a20a2f077" + }, + { + "_tag": "ByteArray", + "bytearray": "4eab4dbb87ec0968424dbd" + }, + { + "_tag": "ByteArray", + "bytearray": "8cea" + }, + { + "_tag": "ByteArray", + "bytearray": "379333e86ab865" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7718e371ab08fcf33dea31" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8149497722199694119" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "377369b50e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2859407280142240253" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7fd711a8f269" + }, + { + "_tag": "ByteArray", + "bytearray": "41592750" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85aea7f011e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad9ae628cde885034552f995" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a5e2cf3b852ebd657edf" + }, + { + "_tag": "ByteArray", + "bytearray": "74" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15304530344322625701" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2d0c14" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca45" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e0665483d0fb7" + } + } + ] + }, + "cborHex": "bf4a082846d497ec7fd486a2d8669f1b77fcb022bd6b181d9f1b5ec1a0f1b3cb95061ba92d69ad58204d58459a6b545d381b78d92a863964a23b49f967a1c0bc99e01929ffff435097d69f49d65155644a20a2f0774b4eab4dbb87ec0968424dbd428cea47379333e86ab865ff4b7718e371ab08fcf33dea31d8669f1b7118d5001d915b279f45377369b50e1b27aea7c5810b49fd467fd711a8f2694441592750ffff4685aea7f011e3410d4cad9ae628cde885034552f9959f4aa5e2cf3b852ebd657edf41741bd4649d42e38970a5432d0c14ff42ca45471e0665483d0fb7ff", + "cborBytes": [ + 191, 74, 8, 40, 70, 212, 151, 236, 127, 212, 134, 162, 216, 102, 159, 27, 119, 252, 176, 34, 189, 107, 24, 29, + 159, 27, 94, 193, 160, 241, 179, 203, 149, 6, 27, 169, 45, 105, 173, 88, 32, 77, 88, 69, 154, 107, 84, 93, 56, 27, + 120, 217, 42, 134, 57, 100, 162, 59, 73, 249, 103, 161, 192, 188, 153, 224, 25, 41, 255, 255, 67, 80, 151, 214, + 159, 73, 214, 81, 85, 100, 74, 32, 162, 240, 119, 75, 78, 171, 77, 187, 135, 236, 9, 104, 66, 77, 189, 66, 140, + 234, 71, 55, 147, 51, 232, 106, 184, 101, 255, 75, 119, 24, 227, 113, 171, 8, 252, 243, 61, 234, 49, 216, 102, + 159, 27, 113, 24, 213, 0, 29, 145, 91, 39, 159, 69, 55, 115, 105, 181, 14, 27, 39, 174, 167, 197, 129, 11, 73, + 253, 70, 127, 215, 17, 168, 242, 105, 68, 65, 89, 39, 80, 255, 255, 70, 133, 174, 167, 240, 17, 227, 65, 13, 76, + 173, 154, 230, 40, 205, 232, 133, 3, 69, 82, 249, 149, 159, 74, 165, 226, 207, 59, 133, 46, 189, 101, 126, 223, + 65, 116, 27, 212, 100, 157, 66, 227, 137, 112, 165, 67, 45, 12, 20, 255, 66, 202, 69, 71, 30, 6, 101, 72, 61, 15, + 183, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2351, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4523" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13829632689418420234" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af0631534efd5a" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf424523d8669f1bbfecb9a892ea400a80ff47af0631534efd5a80ff", + "cborBytes": [ + 191, 66, 69, 35, 216, 102, 159, 27, 191, 236, 185, 168, 146, 234, 64, 10, 128, 255, 71, 175, 6, 49, 83, 78, 253, + 90, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2352, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0702" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14690234903150243828" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "08e6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4584846456897246715" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11941155994572106351" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13446412133996909205" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3738459995182342722" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61da6dc84dab5e576f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16658313476582003576" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "13bf9576" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13924458608150506280" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5969ff2310" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6a65cd9bb2a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc05da48966189" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa91" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d2021ec5cd6dbfdc14fbf" + } + } + ] + }, + "cborHex": "bf4207029f1bcbde32cfed50aff4ff4208e6bf1b3fa0a58f9d1195fb1ba5b7821c2fff2a6f1bba9b4097fe6352951b33e1ad8ef3da224241914961da6dc84dab5e576f41f31be72e37d8f0c5d378ff4413bf9576d9050c9f1bfffffffffffffff81bc13d9d544470eb28ff455969ff23109f1bfffffffffffffff7ff46a6a65cd9bb2a47bc05da4896618942fa914b3d2021ec5cd6dbfdc14fbfff", + "cborBytes": [ + 191, 66, 7, 2, 159, 27, 203, 222, 50, 207, 237, 80, 175, 244, 255, 66, 8, 230, 191, 27, 63, 160, 165, 143, 157, + 17, 149, 251, 27, 165, 183, 130, 28, 47, 255, 42, 111, 27, 186, 155, 64, 151, 254, 99, 82, 149, 27, 51, 225, 173, + 142, 243, 218, 34, 66, 65, 145, 73, 97, 218, 109, 200, 77, 171, 94, 87, 111, 65, 243, 27, 231, 46, 55, 216, 240, + 197, 211, 120, 255, 68, 19, 191, 149, 118, 217, 5, 12, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 27, 193, + 61, 157, 84, 68, 112, 235, 40, 255, 69, 89, 105, 255, 35, 16, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, + 255, 70, 166, 166, 92, 217, 187, 42, 71, 188, 5, 218, 72, 150, 97, 137, 66, 250, 145, 75, 61, 32, 33, 236, 92, + 214, 219, 253, 193, 79, 191, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2353, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1050191779288161444" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7429511474080987691" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1619944446986260506" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4666620580980128670" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8708511543155558692" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4721032925639405371" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9983928601752513534" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14451711329825278279" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17644651721772118984" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d3e4" + }, + { + "_tag": "ByteArray", + "bytearray": "990210aa8d472185" + } + ] + } + } + ] + }, + "cborHex": "bf1b0e9307dbee819ca41b671aed528b493a2b1b167b32e4467b901a801b40c32ab18ed8fb9e41af1b78dad91bdc2d0924d8669f1b41847a6ec9a8ef3b80ff1b8a8e0a2a8a522bfe1bc88ecae2d2b949471bf4de65416db633c89f42d3e448990210aa8d472185ffff", + "cborBytes": [ + 191, 27, 14, 147, 7, 219, 238, 129, 156, 164, 27, 103, 26, 237, 82, 139, 73, 58, 43, 27, 22, 123, 50, 228, 70, + 123, 144, 26, 128, 27, 64, 195, 42, 177, 142, 216, 251, 158, 65, 175, 27, 120, 218, 217, 27, 220, 45, 9, 36, 216, + 102, 159, 27, 65, 132, 122, 110, 201, 168, 239, 59, 128, 255, 27, 138, 142, 10, 42, 138, 82, 43, 254, 27, 200, + 142, 202, 226, 210, 185, 73, 71, 27, 244, 222, 101, 65, 109, 182, 51, 200, 159, 66, 211, 228, 72, 153, 2, 16, 170, + 141, 71, 33, 133, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2354, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "72a7c080f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6bf0" + } + } + ] + }, + "cborHex": "bf4572a7c080f0426bf0ff", + "cborBytes": [191, 69, 114, 167, 192, 128, 240, 66, 107, 240, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2355, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02bd890506dd" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05fa06c419fa07044279f9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b8" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8311a71a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa1408528a40788c02" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d407" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e10601fb7a05eefce563bef9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + } + ] + }, + "cborHex": "bf4602bd890506dda04b05fa06c419fa07044279f9d87c9f41b8ff448311a71a1bfffffffffffffff149aa1408528a40788c02410142d4070b4ce10601fb7a05eefce563bef91bfffffffffffffff1ff", + "cborBytes": [ + 191, 70, 2, 189, 137, 5, 6, 221, 160, 75, 5, 250, 6, 196, 25, 250, 7, 4, 66, 121, 249, 216, 124, 159, 65, 184, + 255, 68, 131, 17, 167, 26, 27, 255, 255, 255, 255, 255, 255, 255, 241, 73, 170, 20, 8, 82, 138, 64, 120, 140, 2, + 65, 1, 66, 212, 7, 11, 76, 225, 6, 1, 251, 122, 5, 238, 252, 229, 99, 190, 249, 27, 255, 255, 255, 255, 255, 255, + 255, 241, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2356, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1287410020467322048" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2483226903407069918" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b11ddcc97b63bacc0d8669f1b227631b642458ade9f11ffffff", + "cborBytes": [ + 191, 27, 17, 221, 204, 151, 182, 59, 172, 192, 216, 102, 159, 27, 34, 118, 49, 182, 66, 69, 138, 222, 159, 17, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2357, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b6e2b7fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12921785666586574379" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ccccd05a4eefd0" + } + } + ] + }, + "cborHex": "bf06d9050a9f44b6e2b7fa1bb3536799e8a07e2bff417947ccccd05a4eefd0ff", + "cborBytes": [ + 191, 6, 217, 5, 10, 159, 68, 182, 226, 183, 250, 27, 179, 83, 103, 153, 232, 160, 126, 43, 255, 65, 121, 71, 204, + 204, 208, 90, 78, 239, 208, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2358, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "277312592977845082" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8148178859055103447" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14619817096250024839" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16861185648063036158" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a" + }, + { + "_tag": "ByteArray", + "bytearray": "24c58d37" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "336561790285507566" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17305459233313586550" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15760321304641625933" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5900e80e66f6729edd01" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3988097207188184269" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ec62bc886c4ced52ba791" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "680c23b9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a463adf305d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17532359694016786268" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8713581694521774234" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "644c1de412f94fd3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13121149179756722185" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32acb85736a727" + } + } + ] + }, + "cborHex": "bf1b03d93655842fdb5a9f1b711425805c53bdd71bcae406309f2a63871be9fef70334b63afe419a4424c58d37ff1b04abb52a42efebeed8669f1bf029577c04a8fd769f41e71bdab7e8b98d2f5f4d4a5900e80e66f6729edd01ffff1b37589147b42ddccdbf4b1ec62bc886c4ced52ba79144680c23b946a463adf305d01bf34f7440543f2f5cff1b78ecdc627751109a48644c1de412f94fd31bb617afa9004eb8094732acb85736a727ff", + "cborBytes": [ + 191, 27, 3, 217, 54, 85, 132, 47, 219, 90, 159, 27, 113, 20, 37, 128, 92, 83, 189, 215, 27, 202, 228, 6, 48, 159, + 42, 99, 135, 27, 233, 254, 247, 3, 52, 182, 58, 254, 65, 154, 68, 36, 197, 141, 55, 255, 27, 4, 171, 181, 42, 66, + 239, 235, 238, 216, 102, 159, 27, 240, 41, 87, 124, 4, 168, 253, 118, 159, 65, 231, 27, 218, 183, 232, 185, 141, + 47, 95, 77, 74, 89, 0, 232, 14, 102, 246, 114, 158, 221, 1, 255, 255, 27, 55, 88, 145, 71, 180, 45, 220, 205, 191, + 75, 30, 198, 43, 200, 134, 196, 206, 213, 43, 167, 145, 68, 104, 12, 35, 185, 70, 164, 99, 173, 243, 5, 208, 27, + 243, 79, 116, 64, 84, 63, 47, 92, 255, 27, 120, 236, 220, 98, 119, 81, 16, 154, 72, 100, 76, 29, 228, 18, 249, 79, + 211, 27, 182, 23, 175, 169, 0, 78, 184, 9, 71, 50, 172, 184, 87, 54, 167, 39, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2359, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + }, + "cborHex": "bf41a711ff", + "cborBytes": [191, 65, 167, 17, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2360, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5539151520555487698" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8522603913894889311" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf0f1b4cdf04f5d3c651d21b76465f1ae10f075fa0ff", + "cborBytes": [191, 15, 27, 76, 223, 4, 245, 211, 198, 81, 210, 27, 118, 70, 95, 26, 225, 15, 7, 95, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2361, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a759e987b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7630d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14559891531256846820" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8dc08b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce43" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe9afffb02f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11222532709709183220" + } + } + } + ] + }, + "cborHex": "bf45a759e987b543a7630d41afbf1bca0f2034c0c859e41bffffffffffffffec4146438dc08b42ce430fff46fe9afffb02f81b9bbe720a3a6af8f4ff", + "cborBytes": [ + 191, 69, 167, 89, 233, 135, 181, 67, 167, 99, 13, 65, 175, 191, 27, 202, 15, 32, 52, 192, 200, 89, 228, 27, 255, + 255, 255, 255, 255, 255, 255, 236, 65, 70, 67, 141, 192, 139, 66, 206, 67, 15, 255, 70, 254, 154, 255, 251, 2, + 248, 27, 155, 190, 114, 10, 58, 106, 248, 244, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2362, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c4" + }, + { + "_tag": "ByteArray", + "bytearray": "d2b0d066e7db52f1bbfacc" + }, + { + "_tag": "ByteArray", + "bytearray": "25d05a" + }, + { + "_tag": "ByteArray", + "bytearray": "ab935145" + }, + { + "_tag": "ByteArray", + "bytearray": "55237a5e2adb828cf69a5353" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a49b7735c0a3d5d7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40c618834f64567e1e99" + } + } + ] + }, + "cborHex": "bf0c9f41c44bd2b0d066e7db52f1bbfacc4325d05a44ab9351454c55237a5e2adb828cf69a5353ff492a49b7735c0a3d5d7f4a40c618834f64567e1e99ff", + "cborBytes": [ + 191, 12, 159, 65, 196, 75, 210, 176, 208, 102, 231, 219, 82, 241, 187, 250, 204, 67, 37, 208, 90, 68, 171, 147, + 81, 69, 76, 85, 35, 122, 94, 42, 219, 130, 140, 246, 154, 83, 83, 255, 73, 42, 73, 183, 115, 92, 10, 61, 93, 127, + 74, 64, 198, 24, 131, 79, 100, 86, 126, 30, 153, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2363, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "213963656201362829" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12386801797131625483" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "616210502852808041" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5648280960661927753" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8838389726945903881" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2689124851217723346" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da51ca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3420784392718068538" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4537883781666711889" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15718237636348541832" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b02f826cfcab9dd8d9f1babe6c29b3d33640b1b088d383001680d691b4e62b99b9bdb37491b7aa844a0fd128509ff1b2551b0cdf981efd243da51ca1b2f791147f5292b3a801b3ef9cd41b64029519f1bda2265d9f9bafb88ffff", + "cborBytes": [ + 191, 27, 2, 248, 38, 207, 202, 185, 221, 141, 159, 27, 171, 230, 194, 155, 61, 51, 100, 11, 27, 8, 141, 56, 48, 1, + 104, 13, 105, 27, 78, 98, 185, 155, 155, 219, 55, 73, 27, 122, 168, 68, 160, 253, 18, 133, 9, 255, 27, 37, 81, + 176, 205, 249, 129, 239, 210, 67, 218, 81, 202, 27, 47, 121, 17, 71, 245, 41, 43, 58, 128, 27, 62, 249, 205, 65, + 182, 64, 41, 81, 159, 27, 218, 34, 101, 217, 249, 186, 251, 136, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2364, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "188e8614681478af41b4f67f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "144436669950076148" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0956020dd2efc7e4" + } + ] + } + } + ] + }, + "cborHex": "bf4c188e8614681478af41b4f67f9f1b02012462d4ea24f4480956020dd2efc7e4ffff", + "cborBytes": [ + 191, 76, 24, 142, 134, 20, 104, 20, 120, 175, 65, 180, 246, 127, 159, 27, 2, 1, 36, 98, 212, 234, 36, 244, 72, 9, + 86, 2, 13, 210, 239, 199, 228, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2365, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "002d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "837bb64e1a21" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "211e7b76851de90451" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "83c535a2ef2a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11885346042230891828" + } + }, + { + "_tag": "ByteArray", + "bytearray": "498cd89a54f0" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2dad8d5c592472ddd91873" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11741906331570593561" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4b8cdd" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9789d09e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17777033033481297374" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17295397893202855880" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "853692730743115160" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11711119549962081435" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5219398140123902687" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7610409899158128927" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afc555b00867937089e65d2a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6732673465729990246" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efd9e7fbfcd322381929" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05d714a941" + } + } + ] + }, + "cborHex": "bf42002d46837bb64e1a2149211e7b76851de904519f4683c535a2ef2a1ba4f13b410fc4653446498cd89a54f0ff4b2dad8d5c592472ddd91873d8669f1ba2f3a198e72cdf199f434b8cddffff449789d09ed8669f1bf6b4b55b71099dde9f1bf00598bfb96547c81b0bd8ed03fb46cd981ba286412eb99f549b1b486f06f4736b72df1b699d9b7b4a6fc91fffff4cafc555b00867937089e65d2a1b5d6f42d88988be664aefd9e7fbfcd3223819294505d714a941ff", + "cborBytes": [ + 191, 66, 0, 45, 70, 131, 123, 182, 78, 26, 33, 73, 33, 30, 123, 118, 133, 29, 233, 4, 81, 159, 70, 131, 197, 53, + 162, 239, 42, 27, 164, 241, 59, 65, 15, 196, 101, 52, 70, 73, 140, 216, 154, 84, 240, 255, 75, 45, 173, 141, 92, + 89, 36, 114, 221, 217, 24, 115, 216, 102, 159, 27, 162, 243, 161, 152, 231, 44, 223, 25, 159, 67, 75, 140, 221, + 255, 255, 68, 151, 137, 208, 158, 216, 102, 159, 27, 246, 180, 181, 91, 113, 9, 157, 222, 159, 27, 240, 5, 152, + 191, 185, 101, 71, 200, 27, 11, 216, 237, 3, 251, 70, 205, 152, 27, 162, 134, 65, 46, 185, 159, 84, 155, 27, 72, + 111, 6, 244, 115, 107, 114, 223, 27, 105, 157, 155, 123, 74, 111, 201, 31, 255, 255, 76, 175, 197, 85, 176, 8, + 103, 147, 112, 137, 230, 93, 42, 27, 93, 111, 66, 216, 137, 136, 190, 102, 74, 239, 217, 231, 251, 252, 211, 34, + 56, 25, 41, 69, 5, 215, 20, 169, 65, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2366, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10201880848955114536" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14895949716292525532" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b8d945c948ad484289f1bceb90b5847b25ddcffff", + "cborBytes": [191, 27, 141, 148, 92, 148, 138, 212, 132, 40, 159, 27, 206, 185, 11, 88, 71, 178, 93, 220, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2367, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1582761473240340696" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10500208714490446272" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7899411791094149658" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a0559eece468666" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16528483705746938811" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b15f7192c90aa18d81b91b83c317eaa01c01b6da0592bceb2f21abf487a0559eece4686661be560f85bd4e0dbbbffff", + "cborBytes": [ + 191, 27, 21, 247, 25, 44, 144, 170, 24, 216, 27, 145, 184, 60, 49, 126, 170, 1, 192, 27, 109, 160, 89, 43, 206, + 178, 242, 26, 191, 72, 122, 5, 89, 238, 206, 70, 134, 102, 27, 229, 96, 248, 91, 212, 224, 219, 187, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2368, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4528298845190116552" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2010422249431917195" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f04c7a71" + } + } + ] + }, + "cborHex": "bf1b3ed7bfcec85e54c89f1b1be6746259ee628bff1bffffffffffffffee44f04c7a71ff", + "cborBytes": [ + 191, 27, 62, 215, 191, 206, 200, 94, 84, 200, 159, 27, 27, 230, 116, 98, 89, 238, 98, 139, 255, 27, 255, 255, 255, + 255, 255, 255, 255, 238, 68, 240, 76, 122, 113, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2369, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a452c6a66e79d54902a6b3" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1250827713046321244" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8ac685987ca43dde32a1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "531732543113905930" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b997d92d9980a23d0b114b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11207809136816988986" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8686237225075618808" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11017517125089061104" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3649625420782196239" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95b03b" + }, + { + "_tag": "ByteArray", + "bytearray": "3b56720da6d78eec1166" + } + ] + } + } + ] + }, + "cborHex": "bf4ba452c6a66e79d54902a6b39f1b115bd52d8757185c4a8ac685987ca43dde32a11b076117ee43d1c70aff4bb997d92d9980a23d0b114bd8669f1b9b8a2307465aa33a9f1b788bb6bc0b6833f81b98e61573b3b768f01b32a612fbd0f5560f4395b03b4a3b56720da6d78eec1166ffffff", + "cborBytes": [ + 191, 75, 164, 82, 198, 166, 110, 121, 213, 73, 2, 166, 179, 159, 27, 17, 91, 213, 45, 135, 87, 24, 92, 74, 138, + 198, 133, 152, 124, 164, 61, 222, 50, 161, 27, 7, 97, 23, 238, 67, 209, 199, 10, 255, 75, 185, 151, 217, 45, 153, + 128, 162, 61, 11, 17, 75, 216, 102, 159, 27, 155, 138, 35, 7, 70, 90, 163, 58, 159, 27, 120, 139, 182, 188, 11, + 104, 51, 248, 27, 152, 230, 21, 115, 179, 183, 104, 240, 27, 50, 166, 18, 251, 208, 245, 86, 15, 67, 149, 176, 59, + 74, 59, 86, 114, 13, 166, 215, 142, 236, 17, 102, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2370, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2836471156316062862" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0adaab2bc95f723c2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3950385279277357678" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5306773403092205872" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4785097507420810964" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11588126467135337697" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "380cd413debb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05001833" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71c2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3150566994731691121" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13259858378174256147" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11974920612134838498" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7667196471978793335" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4202738658712321893" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15202397128363857730" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3444b4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17286965826369981483" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c0b544af8a8f1cb87ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14978365080934964271" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58a6ccb5be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1eb0bbd3fdd74f9036" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "648f9b42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7627d1ac38f420c4f6355" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f615644b44734bf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9dd460b985035" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "398f617816" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b275d2b7d07dc448e49f0adaab2bc95f723c21b36d2967b41425a6e801b49a5724b2acd41301b426814d4996caed41ba0d14ba015e774e1bf46380cd413debb44050018334271c21b2bb90ffd420d6c71ff1bb8047af0f31054139f1ba62f76d9d3cce0e21b6a675a91976c99771b3a53208b04597f65ff1bd2f9c3a47a8bd742bf433444b41befe7a3d42d198c2b4a3c0b544af8a8f1cb87ce1bcfddd7aead3e5c2f4558a6ccb5be491eb0bbd3fdd74f903644648f9b4241fd4ba7627d1ac38f420c4f6355484f615644b44734bf47a9dd460b98503545398f617816ffff", + "cborBytes": [ + 191, 27, 39, 93, 43, 125, 7, 220, 68, 142, 73, 240, 173, 170, 178, 188, 149, 247, 35, 194, 27, 54, 210, 150, 123, + 65, 66, 90, 110, 128, 27, 73, 165, 114, 75, 42, 205, 65, 48, 27, 66, 104, 20, 212, 153, 108, 174, 212, 27, 160, + 209, 75, 160, 21, 231, 116, 225, 191, 70, 56, 12, 212, 19, 222, 187, 68, 5, 0, 24, 51, 66, 113, 194, 27, 43, 185, + 15, 253, 66, 13, 108, 113, 255, 27, 184, 4, 122, 240, 243, 16, 84, 19, 159, 27, 166, 47, 118, 217, 211, 204, 224, + 226, 27, 106, 103, 90, 145, 151, 108, 153, 119, 27, 58, 83, 32, 139, 4, 89, 127, 101, 255, 27, 210, 249, 195, 164, + 122, 139, 215, 66, 191, 67, 52, 68, 180, 27, 239, 231, 163, 212, 45, 25, 140, 43, 74, 60, 11, 84, 74, 248, 168, + 241, 203, 135, 206, 27, 207, 221, 215, 174, 173, 62, 92, 47, 69, 88, 166, 204, 181, 190, 73, 30, 176, 187, 211, + 253, 215, 79, 144, 54, 68, 100, 143, 155, 66, 65, 253, 75, 167, 98, 125, 26, 195, 143, 66, 12, 79, 99, 85, 72, 79, + 97, 86, 68, 180, 71, 52, 191, 71, 169, 221, 70, 11, 152, 80, 53, 69, 57, 143, 97, 120, 22, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2371, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "442512cf3b3362c3e569" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7514f4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c69204da69" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b25dd0ed36f462" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0640" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2bacd4809" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45aa9ba3b5c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1001597405600089861" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9d4715c631d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6dbb59d6195632e13854ef" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e630f987" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5703388796234066575" + } + } + } + ] + }, + "cborHex": "bf4a442512cf3b3362c3e569a0437514f445c69204da6947b25dd0ed36f462bf42064045f2bacd48094645aa9ba3b5c31b0de66388a0bf070546e9d4715c631d4b6dbb59d6195632e13854efff44e630f9871b4f2681e46f796a8fff", + "cborBytes": [ + 191, 74, 68, 37, 18, 207, 59, 51, 98, 195, 229, 105, 160, 67, 117, 20, 244, 69, 198, 146, 4, 218, 105, 71, 178, + 93, 208, 237, 54, 244, 98, 191, 66, 6, 64, 69, 242, 186, 205, 72, 9, 70, 69, 170, 155, 163, 181, 195, 27, 13, 230, + 99, 136, 160, 191, 7, 5, 70, 233, 212, 113, 92, 99, 29, 75, 109, 187, 89, 214, 25, 86, 50, 225, 56, 84, 239, 255, + 68, 230, 48, 249, 135, 27, 79, 38, 129, 228, 111, 121, 106, 143, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2372, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4306726782668187893" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5243330510727176200" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7509654948606112465" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15941499900736835185" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1283e35069e44210d784" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13324788465350626611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9555134134525841393" + } + } + } + ] + }, + "cborHex": "bf1b3bc49130d99928f5bf1b48c40d51b3dc60081b6837a7634d6bf2d11bdd3b95b2b2580e714a1283e35069e44210d784ff1bb8eb2882f0724d331b849aa7debd9f4ff1ff", + "cborBytes": [ + 191, 27, 59, 196, 145, 48, 217, 153, 40, 245, 191, 27, 72, 196, 13, 81, 179, 220, 96, 8, 27, 104, 55, 167, 99, 77, + 107, 242, 209, 27, 221, 59, 149, 178, 178, 88, 14, 113, 74, 18, 131, 227, 80, 105, 228, 66, 16, 215, 132, 255, 27, + 184, 235, 40, 130, 240, 114, 77, 51, 27, 132, 154, 167, 222, 189, 159, 79, 241, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2373, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7135670412302601852" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d52e85dc601255" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17627132533397916154" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6306fe6eff8fce7cbf47d52e85dc6012551bf4a027a585ea09faffff", + "cborBytes": [ + 191, 27, 99, 6, 254, 110, 255, 143, 206, 124, 191, 71, 213, 46, 133, 220, 96, 18, 85, 27, 244, 160, 39, 165, 133, + 234, 9, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2374, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5317580454296109719" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3528248415664363014" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d5b2c16fd0" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17974087118640901331" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06ccde36e4635cb88a" + } + } + ] + }, + "cborHex": "bf1b49cbd73fdae14297d8669f1b30f6db3d970256069f45d5b2c16fd0ffff1bf970c900ec83ecd34906ccde36e4635cb88aff", + "cborBytes": [ + 191, 27, 73, 203, 215, 63, 218, 225, 66, 151, 216, 102, 159, 27, 48, 246, 219, 61, 151, 2, 86, 6, 159, 69, 213, + 178, 193, 111, 208, 255, 255, 27, 249, 112, 201, 0, 236, 131, 236, 211, 73, 6, 204, 222, 54, 228, 99, 92, 184, + 138, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2375, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10669675596250511216" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8162303698488249180" + } + } + } + ] + }, + "cborHex": "bf1b94124d6ca72a77701b714653f7d13fcb5cff", + "cborBytes": [191, 27, 148, 18, 77, 108, 167, 42, 119, 112, 27, 113, 70, 83, 247, 209, 63, 203, 92, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2376, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3240a1d2272a" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff5463240a1d2272aff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 245, 70, 50, 64, 161, 210, 39, 42, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2377, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14620909501324334028" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05e3f9fb" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e416a4983760979369c0c7f0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75a459ea75d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e57631" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84d73804e2e1b4ea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf" + } + } + ] + }, + "cborHex": "bf059f1bcae7e7b9ff9213cc4405e3f9fbff06bf41234ce416a4983760979369c0c7f04675a459ea75d443e57631ff114884d73804e2e1b4ea1bffffffffffffffec41cfff", + "cborBytes": [ + 191, 5, 159, 27, 202, 231, 231, 185, 255, 146, 19, 204, 68, 5, 227, 249, 251, 255, 6, 191, 65, 35, 76, 228, 22, + 164, 152, 55, 96, 151, 147, 105, 192, 199, 240, 70, 117, 164, 89, 234, 117, 212, 67, 229, 118, 49, 255, 17, 72, + 132, 215, 56, 4, 226, 225, 180, 234, 27, 255, 255, 255, 255, 255, 255, 255, 236, 65, 207, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2378, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6826390101804510955" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02057efb05ff0792032307da" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd799155d26cd19124a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1516908704610126004" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9844026884535061283" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a00d566aa9ad91f490c1c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5ebc35a13c4ceeeb054c02057efb05ff0792032307dabf074acd799155d26cd19124a41b150d246e0efc08b441f21b889d024bac1b8b234b4a00d566aa9ad91f490c1c1bfffffffffffffff911ffff", + "cborBytes": [ + 191, 27, 94, 188, 53, 161, 60, 76, 238, 235, 5, 76, 2, 5, 126, 251, 5, 255, 7, 146, 3, 35, 7, 218, 191, 7, 74, + 205, 121, 145, 85, 210, 108, 209, 145, 36, 164, 27, 21, 13, 36, 110, 14, 252, 8, 180, 65, 242, 27, 136, 157, 2, + 75, 172, 27, 139, 35, 75, 74, 0, 213, 102, 170, 154, 217, 31, 73, 12, 28, 27, 255, 255, 255, 255, 255, 255, 255, + 249, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2379, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02fe22" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4211693310362824894" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d41ec8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a80ffe9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "619a8eecc1f50da6525c6f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1043ba215f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0ebbad4644398bd8705" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1424292421764724378" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5918464364922818735" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "63c6e036f1063609" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5301145245494807206" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7121100398912728192" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9641214400109942662" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9cbafd7d8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11458378758010525569" + } + } + ] + } + } + ] + }, + "cborHex": "bf4302fe22bf1b3a72f0c05310b0be43d41ec8444a80ffe941bb4b619a8eecc1f50da6525c6f451043ba215f4af0ebbad4644398bd87051b13c41a694f91369aff415fd8669f1b52229bfb870850af9f4863c6e036f10636091b499173839c780aa61b62d33b156715ec801b85cc796a61ef1786ffff45f9cbafd7d8d87f9f1b9f0456c575195781ffff", + "cborBytes": [ + 191, 67, 2, 254, 34, 191, 27, 58, 114, 240, 192, 83, 16, 176, 190, 67, 212, 30, 200, 68, 74, 128, 255, 233, 65, + 187, 75, 97, 154, 142, 236, 193, 245, 13, 166, 82, 92, 111, 69, 16, 67, 186, 33, 95, 74, 240, 235, 186, 212, 100, + 67, 152, 189, 135, 5, 27, 19, 196, 26, 105, 79, 145, 54, 154, 255, 65, 95, 216, 102, 159, 27, 82, 34, 155, 251, + 135, 8, 80, 175, 159, 72, 99, 198, 224, 54, 241, 6, 54, 9, 27, 73, 145, 115, 131, 156, 120, 10, 166, 27, 98, 211, + 59, 21, 103, 21, 236, 128, 27, 133, 204, 121, 106, 97, 239, 23, 134, 255, 255, 69, 249, 203, 175, 215, 216, 216, + 127, 159, 27, 159, 4, 86, 197, 117, 25, 87, 129, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2380, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2940195824919406584" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "793796f2fadc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b19ab3e5f3de049" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d4efdf340c0ea7858a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a895134be532ae244c4c73" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aff224d5a69792b68bd0" + } + } + ] + }, + "cborHex": "bf1b28cdac86626867f846793796f2fadc489b19ab3e5f3de04949d4efdf340c0ea7858a4ba895134be532ae244c4c734aaff224d5a69792b68bd0ff", + "cborBytes": [ + 191, 27, 40, 205, 172, 134, 98, 104, 103, 248, 70, 121, 55, 150, 242, 250, 220, 72, 155, 25, 171, 62, 95, 61, 224, + 73, 73, 212, 239, 223, 52, 12, 14, 167, 133, 138, 75, 168, 149, 19, 75, 229, 50, 174, 36, 76, 76, 115, 74, 175, + 242, 36, 213, 166, 151, 146, 182, 139, 208, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2381, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4078742525875540059" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4235748237109583447" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3372301355063959988" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6142997722885261289" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5144991604761049514" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11049993082345362194" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b7d0f2cac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14625921026221297867" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "855aa81c7d639cacca11cb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18123182762251375252" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5257628362894287016" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9314334946152575546" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1636fe" + } + } + ] + }, + "cborHex": "bf1b389a9ab79917505bbf1b3ac8669466e75e571b2eccd2371827e1b41b55404fe1c89c07e91b4766ae9aee2639aa1b99597629bbb81312452b7d0f2cac1bcaf9b5ae90d650cb4b855aa81c7d639cacca11cb1bfb827ab39779d2941b48f6d923d35520a8ff1b81432a48b86e723a431636feff", + "cborBytes": [ + 191, 27, 56, 154, 154, 183, 153, 23, 80, 91, 191, 27, 58, 200, 102, 148, 102, 231, 94, 87, 27, 46, 204, 210, 55, + 24, 39, 225, 180, 27, 85, 64, 79, 225, 200, 156, 7, 233, 27, 71, 102, 174, 154, 238, 38, 57, 170, 27, 153, 89, + 118, 41, 187, 184, 19, 18, 69, 43, 125, 15, 44, 172, 27, 202, 249, 181, 174, 144, 214, 80, 203, 75, 133, 90, 168, + 28, 125, 99, 156, 172, 202, 17, 203, 27, 251, 130, 122, 179, 151, 121, 210, 148, 27, 72, 246, 217, 35, 211, 85, + 32, 168, 255, 27, 129, 67, 42, 72, 184, 110, 114, 58, 67, 22, 54, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2382, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8520153089093979660" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "692740760182750419" + } + }, + { + "_tag": "ByteArray", + "bytearray": "541324e1" + }, + { + "_tag": "ByteArray", + "bytearray": "2e937c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13055815386205343235" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9439086336713596627" + } + } + ] + } + } + ] + }, + "cborHex": "bf418cd8669f1b763daa17c364ce0c9f1b099d1c0d14207cd344541324e1432e937c1bb52f92ebcbd94e031b82fe5f03480e9ed3ffffff", + "cborBytes": [ + 191, 65, 140, 216, 102, 159, 27, 118, 61, 170, 23, 195, 100, 206, 12, 159, 27, 9, 157, 28, 13, 20, 32, 124, 211, + 68, 84, 19, 36, 225, 67, 46, 147, 124, 27, 181, 47, 146, 235, 203, 217, 78, 3, 27, 130, 254, 95, 3, 72, 14, 158, + 211, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2383, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e4966d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2229fb891ad419a531c69b" + } + } + ] + }, + "cborHex": "bf446e4966d94b2229fb891ad419a531c69bff", + "cborBytes": [191, 68, 110, 73, 102, 217, 75, 34, 41, 251, 137, 26, 212, 25, 165, 49, 198, 155, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2384, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11275092342992702182" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16763581503019818870" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10951662008581584054" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3492236444432133756" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b9c792cbf79ce8ae6d8669f1be8a4348f4ace1f769f1b97fc1e9289a574b61b3076ea8b260cee7cffffff", + "cborBytes": [ + 191, 27, 156, 121, 44, 191, 121, 206, 138, 230, 216, 102, 159, 27, 232, 164, 52, 143, 74, 206, 31, 118, 159, 27, + 151, 252, 30, 146, 137, 165, 116, 182, 27, 48, 118, 234, 139, 38, 12, 238, 124, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2385, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16007268555148070032" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3767338464513895187" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9687937115700870469" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12739207260754737755" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2387368403066075578" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d08b5f292415cbaed459" + } + ] + } + } + ] + }, + "cborHex": "bf1bde253df0d5e18c90d8669f1b3448465f8e042b139f1b8672777a53ac3d451bb0cac182295cfa5b1b2121a2e9ecbeb9ba4ad08b5f292415cbaed459ffffff", + "cborBytes": [ + 191, 27, 222, 37, 61, 240, 213, 225, 140, 144, 216, 102, 159, 27, 52, 72, 70, 95, 142, 4, 43, 19, 159, 27, 134, + 114, 119, 122, 83, 172, 61, 69, 27, 176, 202, 193, 130, 41, 92, 250, 91, 27, 33, 33, 162, 233, 236, 190, 185, 186, + 74, 208, 139, 95, 41, 36, 21, 203, 174, 212, 89, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2386, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4b9a61004619abb2b3ff" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5eb6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2385458992256596472" + } + }, + { + "_tag": "ByteArray", + "bytearray": "11d4295c212dd89f19389984" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9265256022602420615" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7cec7fe768e43928f4fb6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11350733488537221119" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d43531ef138b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d13c832fef380e8a6021" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd89dc48cb62" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3306340782679994393" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1971" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8057507187380573980" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15301551268733143673" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5223873102609602218" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cabf1f595536357feda9984" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3395058520509808865" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e516359cef0b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b297" + } + } + ] + }, + "cborHex": "bf411c9f4a4b9a61004619abb2b3ffff425eb69f1b211ada5093b739f84c11d4295c212dd89f193899841b8094cd435c4411874bd7cec7fe768e43928f4fb61b9d85e7f8146437ffff479d43531ef138b841454ad13c832fef380e8a6021a046dd89dc48cb62bf1b2de27b6c920730194219711b6fd20418aef9d71c1bd45a07cecd444a79420c641b487eece8d8c356aa4c1cabf1f595536357feda99841b2f1dabbc92a680e1ff46e516359cef0b42b297ff", + "cborBytes": [ + 191, 65, 28, 159, 74, 75, 154, 97, 0, 70, 25, 171, 178, 179, 255, 255, 66, 94, 182, 159, 27, 33, 26, 218, 80, 147, + 183, 57, 248, 76, 17, 212, 41, 92, 33, 45, 216, 159, 25, 56, 153, 132, 27, 128, 148, 205, 67, 92, 68, 17, 135, 75, + 215, 206, 199, 254, 118, 142, 67, 146, 143, 79, 182, 27, 157, 133, 231, 248, 20, 100, 55, 255, 255, 71, 157, 67, + 83, 30, 241, 56, 184, 65, 69, 74, 209, 60, 131, 47, 239, 56, 14, 138, 96, 33, 160, 70, 221, 137, 220, 72, 203, 98, + 191, 27, 45, 226, 123, 108, 146, 7, 48, 25, 66, 25, 113, 27, 111, 210, 4, 24, 174, 249, 215, 28, 27, 212, 90, 7, + 206, 205, 68, 74, 121, 66, 12, 100, 27, 72, 126, 236, 232, 216, 195, 86, 170, 76, 28, 171, 241, 245, 149, 83, 99, + 87, 254, 218, 153, 132, 27, 47, 29, 171, 188, 146, 166, 128, 225, 255, 70, 229, 22, 53, 156, 239, 11, 66, 178, + 151, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2387, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6580657232894204028" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4212378461343329670" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6dc64b0ac724c423b4637c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10803311126053807359" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14191343457068713134" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1341754989299865254" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16074647552832201106" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95bce58bd24b84e619a006" + } + } + ] + }, + "cborHex": "bf1b5b5330e33343987c9f1b3a755fe477e02d864b6dc64b0ac724c423b4637cff1b95ed123b127664ff41911bc4f1c7af6c2504ae1b129edf0dc8d396a61bdf149ec83c2a61924b95bce58bd24b84e619a006ff", + "cborBytes": [ + 191, 27, 91, 83, 48, 227, 51, 67, 152, 124, 159, 27, 58, 117, 95, 228, 119, 224, 45, 134, 75, 109, 198, 75, 10, + 199, 36, 196, 35, 180, 99, 124, 255, 27, 149, 237, 18, 59, 18, 118, 100, 255, 65, 145, 27, 196, 241, 199, 175, + 108, 37, 4, 174, 27, 18, 158, 223, 13, 200, 211, 150, 166, 27, 223, 20, 158, 200, 60, 42, 97, 146, 75, 149, 188, + 229, 139, 210, 75, 132, 230, 25, 160, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2388, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "34e124c5d3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2534e1f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11938911282433658764" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ed7ecf41619dd10b323e9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14062893444841304306" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7010583607358255925" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2116427695681983504" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbbb98244720b834c22376" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21cb3dfe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcb4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17556787645793658701" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3c439499c3ee0c4bcc787bd3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10554569522807745516" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8433aa" + } + ] + } + } + ] + }, + "cborHex": "bf4534e124c5d3bf442534e1f61ba5af888e6a5c8f8cff4b7ed7ecf41619dd10b323e9d8669f1bc3296f1465ef70f29f1b614a98a5b0c3f3351b1d5f0fc6a1ec5410ffff4bcbbb98244720b834c223764421cb3dfe42dcb4d8669f1bf3a63d58107f674d9f4c3c439499c3ee0c4bcc787bd31b92795d0f7c1eabec438433aaffffff", + "cborBytes": [ + 191, 69, 52, 225, 36, 197, 211, 191, 68, 37, 52, 225, 246, 27, 165, 175, 136, 142, 106, 92, 143, 140, 255, 75, + 126, 215, 236, 244, 22, 25, 221, 16, 179, 35, 233, 216, 102, 159, 27, 195, 41, 111, 20, 101, 239, 112, 242, 159, + 27, 97, 74, 152, 165, 176, 195, 243, 53, 27, 29, 95, 15, 198, 161, 236, 84, 16, 255, 255, 75, 203, 187, 152, 36, + 71, 32, 184, 52, 194, 35, 118, 68, 33, 203, 61, 254, 66, 220, 180, 216, 102, 159, 27, 243, 166, 61, 88, 16, 127, + 103, 77, 159, 76, 60, 67, 148, 153, 195, 238, 12, 75, 204, 120, 123, 211, 27, 146, 121, 93, 15, 124, 30, 171, 236, + 67, 132, 51, 170, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2389, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "31fe" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2a2031" + }, + { + "_tag": "ByteArray", + "bytearray": "c623d34097da74" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6933866520722901026" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ef95d2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14498336698070572879" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52679f80f343abbe" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7a8ac4e8" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9304fcdf0767076668" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bf7459079d5ab544286b6f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3710159449622508731" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7963149726305707471" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "641681219906947603" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1c65a584800fda2e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2160125240918935456" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "578720512703477951" + } + } + } + ] + }, + "cborHex": "bf4231fe9f432a203147c623d34097da741b603a0add07a9882243ef95d21bc934706952819f4fff4852679f80f343abbe9f447a8ac4e8ff499304fcdf07670766689f4bbf7459079d5ab544286b6f1b337d225cb6cef4bb1b6e82ca7c49b365cf1b08e7b5ab7397ca13ff49d1c65a584800fda2e81b1dfa4e76375407a041ff1b0808073d77ec38bfff", + "cborBytes": [ + 191, 66, 49, 254, 159, 67, 42, 32, 49, 71, 198, 35, 211, 64, 151, 218, 116, 27, 96, 58, 10, 221, 7, 169, 136, 34, + 67, 239, 149, 210, 27, 201, 52, 112, 105, 82, 129, 159, 79, 255, 72, 82, 103, 159, 128, 243, 67, 171, 190, 159, + 68, 122, 138, 196, 232, 255, 73, 147, 4, 252, 223, 7, 103, 7, 102, 104, 159, 75, 191, 116, 89, 7, 157, 90, 181, + 68, 40, 107, 111, 27, 51, 125, 34, 92, 182, 206, 244, 187, 27, 110, 130, 202, 124, 73, 179, 101, 207, 27, 8, 231, + 181, 171, 115, 151, 202, 19, 255, 73, 209, 198, 90, 88, 72, 0, 253, 162, 232, 27, 29, 250, 78, 118, 55, 84, 7, + 160, 65, 255, 27, 8, 8, 7, 61, 119, 236, 56, 191, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2390, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "354f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d043473a4e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "373f60c9fe23bf7e982d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90f91cd341" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "718d86" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2742455951699737762" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5564e7221c9ddffec1376b8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8159732655268013306" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be92a41c13afb32f82ef4e39" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9426200413146566379" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2487931199718176556" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17040016722780035673" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94a3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17121432285235740497" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2198886212863894333" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab2db7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12098444776028466964" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab57d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16230891142751509983" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16484598339608252009" + } + } + ] + } + } + ] + }, + "cborHex": "bf42354f9f45d043473a4eff4a373f60c9fe23bf7e982d4590f91cd34143718d86bf1b260f29286d37fca24cf5564e7221c9ddffec1376b81b713d319e2b67a4fa4cbe92a41c13afb32f82ef4e391b82d09755673dceeb1b2286e83e98d0372c1bec7a4ced70051a594294a31bed9b8bf33f617f511b1e84035c4341a33dff43ab2db7d8669f1ba7e64f6c69db6f1480ff43ab57d51be13fb57fd7bcdddf41ba9f1be4c50ed9c9580e69ffff", + "cborBytes": [ + 191, 66, 53, 79, 159, 69, 208, 67, 71, 58, 78, 255, 74, 55, 63, 96, 201, 254, 35, 191, 126, 152, 45, 69, 144, 249, + 28, 211, 65, 67, 113, 141, 134, 191, 27, 38, 15, 41, 40, 109, 55, 252, 162, 76, 245, 86, 78, 114, 33, 201, 221, + 255, 236, 19, 118, 184, 27, 113, 61, 49, 158, 43, 103, 164, 250, 76, 190, 146, 164, 28, 19, 175, 179, 47, 130, + 239, 78, 57, 27, 130, 208, 151, 85, 103, 61, 206, 235, 27, 34, 134, 232, 62, 152, 208, 55, 44, 27, 236, 122, 76, + 237, 112, 5, 26, 89, 66, 148, 163, 27, 237, 155, 139, 243, 63, 97, 127, 81, 27, 30, 132, 3, 92, 67, 65, 163, 61, + 255, 67, 171, 45, 183, 216, 102, 159, 27, 167, 230, 79, 108, 105, 219, 111, 20, 128, 255, 67, 171, 87, 213, 27, + 225, 63, 181, 127, 215, 188, 221, 223, 65, 186, 159, 27, 228, 197, 14, 217, 201, 88, 14, 105, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2391, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4889611937805207321" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16053087083820514965" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16755784737133166760" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be2ade40" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "151c022598dbc9af0ca5e094" + } + } + ] + }, + "cborHex": "bf091b43db6426b26387190e42e4ff1bdec805a65b887e95d905069f0cff1be888817145bc00a844be2ade401bfffffffffffffff84c151c022598dbc9af0ca5e094ff", + "cborBytes": [ + 191, 9, 27, 67, 219, 100, 38, 178, 99, 135, 25, 14, 66, 228, 255, 27, 222, 200, 5, 166, 91, 136, 126, 149, 217, 5, + 6, 159, 12, 255, 27, 232, 136, 129, 113, 69, 188, 0, 168, 68, 190, 42, 222, 64, 27, 255, 255, 255, 255, 255, 255, + 255, 248, 76, 21, 28, 2, 37, 152, 219, 201, 175, 12, 165, 224, 148, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2392, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15597534837407278068" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15451068980393295921" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + ] + } + } + ] + }, + "cborHex": "bf0bd8669f1bd875934b9b70e3f49f1bd66d395fd86640311bfffffffffffffff7ffffff", + "cborBytes": [ + 191, 11, 216, 102, 159, 27, 216, 117, 147, 75, 155, 112, 227, 244, 159, 27, 214, 109, 57, 95, 216, 102, 64, 49, + 27, 255, 255, 255, 255, 255, 255, 255, 247, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2393, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "432197772413712441" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9345d117f5" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b05ff7995896f383980459345d117f580ff", + "cborBytes": [191, 27, 5, 255, 121, 149, 137, 111, 56, 57, 128, 69, 147, 69, 209, 23, 245, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2394, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00c66622" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1117636361656074588" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bc770574" + }, + { + "_tag": "ByteArray", + "bytearray": "b003273303e070" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4987755957099333810" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06fa0217" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fc2c343b48f57d9c5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12829660642961134868" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "26e57ac3aeb049" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8aeae0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed2811" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3589771213435419759" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17900013503851290938" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18134004668042021831" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5161e245d3ba" + } + } + ] + } + } + ] + }, + "cborHex": "bf4400c666229f1b0f82a4597492015c44bc77057447b003273303e0701b4538119de13e88b24195ff4406fa021707496fc2c343b48f57d9c5d8669f1bb20c1c615c8215149f4726e57ac3aeb049ffff438aeae00743ed2811bf1b31d16de631bdbc6f1bf8699f7183c0613a1bfba8ed2ae1eb8bc7465161e245d3baffff", + "cborBytes": [ + 191, 68, 0, 198, 102, 34, 159, 27, 15, 130, 164, 89, 116, 146, 1, 92, 68, 188, 119, 5, 116, 71, 176, 3, 39, 51, 3, + 224, 112, 27, 69, 56, 17, 157, 225, 62, 136, 178, 65, 149, 255, 68, 6, 250, 2, 23, 7, 73, 111, 194, 195, 67, 180, + 143, 87, 217, 197, 216, 102, 159, 27, 178, 12, 28, 97, 92, 130, 21, 20, 159, 71, 38, 229, 122, 195, 174, 176, 73, + 255, 255, 67, 138, 234, 224, 7, 67, 237, 40, 17, 191, 27, 49, 209, 109, 230, 49, 189, 188, 111, 27, 248, 105, 159, + 113, 131, 192, 97, 58, 27, 251, 168, 237, 42, 225, 235, 139, 199, 70, 81, 97, 226, 69, 211, 186, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2395, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4199949138508053366" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "caacd8fa2f9070" + }, + { + "_tag": "ByteArray", + "bytearray": "0cf47343fe73745c74d6dbfd" + }, + { + "_tag": "ByteArray", + "bytearray": "d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "32739876877750277" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16809899646206136948" + } + } + ] + } + } + ] + }, + "cborHex": "bf02d8669f1b3a49377d3b7afb769f47caacd8fa2f90704c0cf47343fe73745c74d6dbfd41d01b007450be9b49d0051be948c2aa6214d274ffffff", + "cborBytes": [ + 191, 2, 216, 102, 159, 27, 58, 73, 55, 125, 59, 122, 251, 118, 159, 71, 202, 172, 216, 250, 47, 144, 112, 76, 12, + 244, 115, 67, 254, 115, 116, 92, 116, 214, 219, 253, 65, 208, 27, 0, 116, 80, 190, 155, 73, 208, 5, 27, 233, 72, + 194, 170, 98, 20, 210, 116, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2396, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2056" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18410699165978959067" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10439785409454799170" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15448794702327502072" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39a26e0b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10110297224748812211" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f7c2a5bb735c32b76322f07" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1109963127304094045" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10014141430781031464" + } + } + ] + } + } + ] + }, + "cborHex": "bf4111a04220569f1bff7ff158eec19cdb1b90e191847ddbf9421bd66524ee382ad4f8411dff4439a26e0b1b8c4efdc25ec547b34c4f7c2a5bb735c32b76322f07d8669f1b0f6761955cbe015d9f1b8af96092f839b428ffffff", + "cborBytes": [ + 191, 65, 17, 160, 66, 32, 86, 159, 27, 255, 127, 241, 88, 238, 193, 156, 219, 27, 144, 225, 145, 132, 125, 219, + 249, 66, 27, 214, 101, 36, 238, 56, 42, 212, 248, 65, 29, 255, 68, 57, 162, 110, 11, 27, 140, 78, 253, 194, 94, + 197, 71, 179, 76, 79, 124, 42, 91, 183, 53, 195, 43, 118, 50, 47, 7, 216, 102, 159, 27, 15, 103, 97, 149, 92, 190, + 1, 93, 159, 27, 138, 249, 96, 146, 248, 57, 180, 40, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2397, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "220192993897037809" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6476250978402149186" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10666166131517742081" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3ef9c25857037fdd6b765fbe" + }, + { + "_tag": "ByteArray", + "bytearray": "e3a8c9eb4e2e92c3c2" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "548407143311257560" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18395822666351412668" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2825655929147106553" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "90bd97cde1007fe43c97" + }, + { + "_tag": "ByteArray", + "bytearray": "d5f1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3794952197945315938" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b030e485c7f433ff1d8669f1b59e043f3c3efa3429f1b9405d595b86adc014c3ef9c25857037fdd6b765fbe49e3a8c9eb4e2e92c3c2ffff1b079c5564295aafd8d8669f1bff4b173ff2f485bc80ff1b2736bf18ba4a24f99f4a90bd97cde1007fe43c9742d5f11b34aa60eae21e5262ffff", + "cborBytes": [ + 191, 27, 3, 14, 72, 92, 127, 67, 63, 241, 216, 102, 159, 27, 89, 224, 67, 243, 195, 239, 163, 66, 159, 27, 148, 5, + 213, 149, 184, 106, 220, 1, 76, 62, 249, 194, 88, 87, 3, 127, 221, 107, 118, 95, 190, 73, 227, 168, 201, 235, 78, + 46, 146, 195, 194, 255, 255, 27, 7, 156, 85, 100, 41, 90, 175, 216, 216, 102, 159, 27, 255, 75, 23, 63, 242, 244, + 133, 188, 128, 255, 27, 39, 54, 191, 24, 186, 74, 36, 249, 159, 74, 144, 189, 151, 205, 225, 0, 127, 228, 60, 151, + 66, 213, 241, 27, 52, 170, 96, 234, 226, 30, 82, 98, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2398, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + }, + "cborHex": "bf060aff", + "cborBytes": [191, 6, 10, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2399, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e941174dd03" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2302621974208050621" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0533" + }, + { + "_tag": "ByteArray", + "bytearray": "cd7995466e83bed29a3b2c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e99cdde" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c6adae12c28cc64e57" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4059384824518183330" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b53b4b" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd961c" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf460e941174dd03d8669f1b1ff48e7c58adf5bd9f4205334bcd7995466e83bed29a3b2cffff446e99cdde9f49c6adae12c28cc64e571b3855d4fd880489a243b53b4bff43bd961c80ff", + "cborBytes": [ + 191, 70, 14, 148, 17, 116, 221, 3, 216, 102, 159, 27, 31, 244, 142, 124, 88, 173, 245, 189, 159, 66, 5, 51, 75, + 205, 121, 149, 70, 110, 131, 190, 210, 154, 59, 44, 255, 255, 68, 110, 153, 205, 222, 159, 73, 198, 173, 174, 18, + 194, 140, 198, 78, 87, 27, 56, 85, 212, 253, 136, 4, 137, 162, 67, 181, 59, 75, 255, 67, 189, 150, 28, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2400, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0221" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13346443024664662886" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "036c72b7b1d37ec4e0df" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4813059330556063450" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b1c806" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11345051543172785384" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ddd3639f95e0b22edd5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "041c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "506162" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2dcded64b9d5cf7f54a51" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11617476508473458579" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3031299cf3ea2dec57" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d8b321e008f0a82f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69ff03c802e579fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c6a2e2f8b25445" + } + } + ] + }, + "cborHex": "bf4202219f091bb9381737ec209366ff4a036c72b7b1d37ec4e0dfd8669f1bffffffffffffffff9f1b42cb6bf5e0ac6eda43b1c8061b9d71b845154fa4e8ffff4a1ddd3639f95e0b22edd5bf42041c435061624bf2dcded64b9d5cf7f54a511ba13991551a017f93ff493031299cf3ea2dec579f1bffffffffffffffff48d8b321e008f0a82fff4869ff03c802e579fb47c6a2e2f8b25445ff", + "cborBytes": [ + 191, 66, 2, 33, 159, 9, 27, 185, 56, 23, 55, 236, 32, 147, 102, 255, 74, 3, 108, 114, 183, 177, 211, 126, 196, + 224, 223, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 27, 66, 203, 107, 245, 224, 172, 110, + 218, 67, 177, 200, 6, 27, 157, 113, 184, 69, 21, 79, 164, 232, 255, 255, 74, 29, 221, 54, 57, 249, 94, 11, 34, + 237, 213, 191, 66, 4, 28, 67, 80, 97, 98, 75, 242, 220, 222, 214, 75, 157, 92, 247, 245, 74, 81, 27, 161, 57, 145, + 85, 26, 1, 127, 147, 255, 73, 48, 49, 41, 156, 243, 234, 45, 236, 87, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 255, 72, 216, 179, 33, 224, 8, 240, 168, 47, 255, 72, 105, 255, 3, 200, 2, 229, 121, 251, 71, 198, 162, 226, 248, + 178, 84, 69, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2401, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6516092939089005599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12870657361174546450" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12559046211161271230" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17679056315192712986" + } + } + } + ] + }, + "cborHex": "bf1b5a6dd0011dd4cc1f1bb29dc2ada69348121bae4ab1fd05fbabbe1bf558a00d0f301f1aff", + "cborBytes": [ + 191, 27, 90, 109, 208, 1, 29, 212, 204, 31, 27, 178, 157, 194, 173, 166, 147, 72, 18, 27, 174, 74, 177, 253, 5, + 251, 171, 190, 27, 245, 88, 160, 13, 15, 48, 31, 26, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2402, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f905f8fedc9ea3fc4b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd" + } + } + ] + }, + "cborHex": "bf49f905f8fedc9ea3fc4b41bdff", + "cborBytes": [191, 73, 249, 5, 248, 254, 220, 158, 163, 252, 75, 65, 189, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2403, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2de81b2c4ab406" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16726553838606894122" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ef9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3923287967252380194" + } + }, + { + "_tag": "ByteArray", + "bytearray": "757155ae" + } + ] + } + } + ] + }, + "cborHex": "bf472de81b2c4ab406d8669f1be820a8185a9c442a80ff423ef99f1b3672519ea7a47a2244757155aeffff", + "cborBytes": [ + 191, 71, 45, 232, 27, 44, 74, 180, 6, 216, 102, 159, 27, 232, 32, 168, 24, 90, 156, 68, 42, 128, 255, 66, 62, 249, + 159, 27, 54, 114, 81, 158, 167, 164, 122, 34, 68, 117, 113, 85, 174, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2404, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06f6fec6a4964bfe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39cad9da619d3559749d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "347c37f249af68c5aa4505fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4923147507204342671" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d1d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2359633576753340332" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5ba" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6706167881765237454" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d427e6edfbe01e06" + }, + { + "_tag": "ByteArray", + "bytearray": "2d9a1a9b68371834b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3601185280675406225" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b937" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2544703707763555100" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cca3b8a6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1761988415925918170" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11939544537978386549" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c0ebd17c88" + }, + { + "_tag": "ByteArray", + "bytearray": "09cc" + } + ] + } + } + ] + }, + "cborHex": "bf4806f6fec6a4964bfe4a39cad9da619d3559749d4c347c37f249af68c5aa4505fb1b44528892e7c3c38f427d1d1b20bf1a3c76779fac42b5bad8669f1b5d1118285cc032ce9f48d427e6edfbe01e06492d9a1a9b68371834b91b31f9faeed105e19142b9371b23509a8a2fddbb1cffff44cca3b8a69f1b1873d720fd9e19da1ba5b1c87fb628387545c0ebd17c884209ccffff", + "cborBytes": [ + 191, 72, 6, 246, 254, 198, 164, 150, 75, 254, 74, 57, 202, 217, 218, 97, 157, 53, 89, 116, 157, 76, 52, 124, 55, + 242, 73, 175, 104, 197, 170, 69, 5, 251, 27, 68, 82, 136, 146, 231, 195, 195, 143, 66, 125, 29, 27, 32, 191, 26, + 60, 118, 119, 159, 172, 66, 181, 186, 216, 102, 159, 27, 93, 17, 24, 40, 92, 192, 50, 206, 159, 72, 212, 39, 230, + 237, 251, 224, 30, 6, 73, 45, 154, 26, 155, 104, 55, 24, 52, 185, 27, 49, 249, 250, 238, 209, 5, 225, 145, 66, + 185, 55, 27, 35, 80, 154, 138, 47, 221, 187, 28, 255, 255, 68, 204, 163, 184, 166, 159, 27, 24, 115, 215, 32, 253, + 158, 25, 218, 27, 165, 177, 200, 127, 182, 40, 56, 117, 69, 192, 235, 209, 124, 136, 66, 9, 204, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2405, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01d90085fba8e905053e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11344828334356396138" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10214596641566974710" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17246959344398820732" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16525328297890049318" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c7e916531" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9452983096509939997" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "12e7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5865957884583495829" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfdae413dea59c9f40c115" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6866407864531669649" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75117799c9f3" + }, + { + "_tag": "ByteArray", + "bytearray": "2a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17373636510030486141" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d47e37a0e18e12c41f740fff" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "57" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15357773436041012237" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8851971138930716097" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8278123524654296182" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a01d90085fba8e905053ebf1b9d70ed433b19786a1b8dc18986b87f62f61bef5982253a7ee57c1be555c28830726d26456c7e9165311b832fbe0acf3f411dff4212e7d8669f1b5168119dea00489580ff4bbfdae413dea59c9f40c1159f1b5f4a6192b05bd2914675117799c9f3412a031bf11b8e5b3d1fda7dff4cd47e37a0e18e12c41f740fff9f41571bd521c5923427a40d1b7ad884d9e1f9adc11b72e1cd7c7dd2ec7604ffff", + "cborBytes": [ + 191, 74, 1, 217, 0, 133, 251, 168, 233, 5, 5, 62, 191, 27, 157, 112, 237, 67, 59, 25, 120, 106, 27, 141, 193, 137, + 134, 184, 127, 98, 246, 27, 239, 89, 130, 37, 58, 126, 229, 124, 27, 229, 85, 194, 136, 48, 114, 109, 38, 69, 108, + 126, 145, 101, 49, 27, 131, 47, 190, 10, 207, 63, 65, 29, 255, 66, 18, 231, 216, 102, 159, 27, 81, 104, 17, 157, + 234, 0, 72, 149, 128, 255, 75, 191, 218, 228, 19, 222, 165, 156, 159, 64, 193, 21, 159, 27, 95, 74, 97, 146, 176, + 91, 210, 145, 70, 117, 17, 119, 153, 201, 243, 65, 42, 3, 27, 241, 27, 142, 91, 61, 31, 218, 125, 255, 76, 212, + 126, 55, 160, 225, 142, 18, 196, 31, 116, 15, 255, 159, 65, 87, 27, 213, 33, 197, 146, 52, 39, 164, 13, 27, 122, + 216, 132, 217, 225, 249, 173, 193, 27, 114, 225, 205, 124, 125, 210, 236, 118, 4, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2406, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d070073df18a237" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "033fb3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7301" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + } + ] + }, + "cborHex": "bf485d070073df18a2379f43033fb313ff4273011bffffffffffffffefff", + "cborBytes": [ + 191, 72, 93, 7, 0, 115, 223, 24, 162, 55, 159, 67, 3, 63, 179, 19, 255, 66, 115, 1, 27, 255, 255, 255, 255, 255, + 255, 255, 239, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2407, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17851705765147147777" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15773911669655062387" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1bf7bdffcf9e637e01d8669f1bdae83116fc2dc77380ffff", + "cborBytes": [ + 191, 27, 247, 189, 255, 207, 158, 99, 126, 1, 216, 102, 159, 27, 218, 232, 49, 22, 252, 45, 199, 115, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2408, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4690517205552867262" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4262984812103795104" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11656998367517304789" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13346237047041334432" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eba4" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14498302730468742708" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cf5ba46667010e00001" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14751551440631177279" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5680673743897873707" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5363718944010356242" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3114722fefeed1205" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5360608201186367420" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfd61f84454fd1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f41f" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16794392321979860640" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3784001b923c3c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17093448927259681162" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14111823179798383714" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c8e1c0a6f039de4989fced" + }, + { + "_tag": "ByteArray", + "bytearray": "7169" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1327061242590573704" + } + }, + { + "_tag": "ByteArray", + "bytearray": "25e23c602e1c1904adb6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14006741602909597517" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4118108c09d627be1b3b292a19b05501a01ba1c5fa40fb2d67d5bf1bb9375be2050e9ca042eba4ff1bc93451849faa56344a8cf5ba46667010e000011bccb809e0d0b9203fbf1b4ed5ceac2debcd2b1b4a6fc1f61cc5461249b3114722fefeed12051b4a64b4c1dbc257bc47cfd61f84454fd142f41fff1be911aad61a2846a0473784001b923c3c1bed38213bff98618ad8669f1bc3d7446a15018c629f4bc8e1c0a6f039de4989fced4271691b126aab2b47ccb4884a25e23c602e1c1904adb61bc261f146e61caf4dffffff", + "cborBytes": [ + 191, 27, 65, 24, 16, 140, 9, 214, 39, 190, 27, 59, 41, 42, 25, 176, 85, 1, 160, 27, 161, 197, 250, 64, 251, 45, + 103, 213, 191, 27, 185, 55, 91, 226, 5, 14, 156, 160, 66, 235, 164, 255, 27, 201, 52, 81, 132, 159, 170, 86, 52, + 74, 140, 245, 186, 70, 102, 112, 16, 224, 0, 1, 27, 204, 184, 9, 224, 208, 185, 32, 63, 191, 27, 78, 213, 206, + 172, 45, 235, 205, 43, 27, 74, 111, 193, 246, 28, 197, 70, 18, 73, 179, 17, 71, 34, 254, 254, 237, 18, 5, 27, 74, + 100, 180, 193, 219, 194, 87, 188, 71, 207, 214, 31, 132, 69, 79, 209, 66, 244, 31, 255, 27, 233, 17, 170, 214, 26, + 40, 70, 160, 71, 55, 132, 0, 27, 146, 60, 60, 27, 237, 56, 33, 59, 255, 152, 97, 138, 216, 102, 159, 27, 195, 215, + 68, 106, 21, 1, 140, 98, 159, 75, 200, 225, 192, 166, 240, 57, 222, 73, 137, 252, 237, 66, 113, 105, 27, 18, 106, + 171, 43, 71, 204, 180, 136, 74, 37, 226, 60, 96, 46, 28, 25, 4, 173, 182, 27, 194, 97, 241, 70, 230, 28, 175, 77, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2409, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "273b62486cc9d1b9912de0e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5061386487728946876" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d67f5c21a90e11713" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17177163187422577370" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80baa77ecb3ce45e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d46089" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16654882742586703326" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8524339" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6498119123860954605" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4c273b62486cc9d1b9912de0e51b463da831b80bbebc492d67f5c21a90e117131bee618ae9133d42da4880baa77ecb3ce45ebf43d460891be722079cefa9fdde44e85243391b5a2df4ea25e79dedffff", + "cborBytes": [ + 191, 76, 39, 59, 98, 72, 108, 201, 209, 185, 145, 45, 224, 229, 27, 70, 61, 168, 49, 184, 11, 190, 188, 73, 45, + 103, 245, 194, 26, 144, 225, 23, 19, 27, 238, 97, 138, 233, 19, 61, 66, 218, 72, 128, 186, 167, 126, 203, 60, 228, + 94, 191, 67, 212, 96, 137, 27, 231, 34, 7, 156, 239, 169, 253, 222, 68, 232, 82, 67, 57, 27, 90, 45, 244, 234, 37, + 231, 157, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2410, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aee31e927ea48a470bdd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bd4686453" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c24f7c" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4aaee31e927ea48a470bdd453bd468645343c24f7ca0ff", + "cborBytes": [ + 191, 74, 174, 227, 30, 146, 126, 164, 138, 71, 11, 221, 69, 59, 212, 104, 100, 83, 67, 194, 79, 124, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2411, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c43720b58d65a9bb71bbd8d6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16000442025097334532" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4943585594315138043" + } + } + ] + } + } + ] + }, + "cborHex": "bf084cc43720b58d65a9bb71bbd8d61bffffffffffffffffd8669f1bde0cfd3f73288f049f0f1b449b24e7e1e463fbffffff", + "cborBytes": [ + 191, 8, 76, 196, 55, 32, 181, 141, 101, 169, 187, 113, 187, 216, 214, 27, 255, 255, 255, 255, 255, 255, 255, 255, + 216, 102, 159, 27, 222, 12, 253, 63, 115, 40, 143, 4, 159, 15, 27, 68, 155, 36, 231, 225, 228, 99, 251, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2412, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "908027786300465388" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5727301131514383528" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12954901825257742833" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8eae9f733726007a43db33" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6743318187309581902" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "80104647704245174" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11005717810288301375" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b0c99f675f09fa0ec9f1b4f7b7608d99b8ca81bb3c90e92728c21f14b8eae9f733726007a43db33ff1b5d951429ea04c64ebf1b011c96c0af44f3b641a2ff1b98bc2a09a46c953fa0ff", + "cborBytes": [ + 191, 27, 12, 153, 246, 117, 240, 159, 160, 236, 159, 27, 79, 123, 118, 8, 217, 155, 140, 168, 27, 179, 201, 14, + 146, 114, 140, 33, 241, 75, 142, 174, 159, 115, 55, 38, 0, 122, 67, 219, 51, 255, 27, 93, 149, 20, 41, 234, 4, + 198, 78, 191, 27, 1, 28, 150, 192, 175, 68, 243, 182, 65, 162, 255, 27, 152, 188, 42, 9, 164, 108, 149, 63, 160, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2413, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "287935fc" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48231ea87e37" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "64dbb2f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ba2b92de2" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a7251dea3527b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bc4711cb9f19c6448fdd030f" + }, + { + "_tag": "ByteArray", + "bytearray": "644272a6e3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7158bfcf16b0b08112a3ef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3753983012755249176" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "347455" + } + } + ] + }, + "cborHex": "bf44287935fca04648231ea87e37bf4464dbb2f8457ba2b92de2ff474a7251dea3527b9f4cbc4711cb9f19c6448fdd030f45644272a6e3ff4b7158bfcf16b0b08112a3ef1b3418d3a92020981842f3c943347455ff", + "cborBytes": [ + 191, 68, 40, 121, 53, 252, 160, 70, 72, 35, 30, 168, 126, 55, 191, 68, 100, 219, 178, 248, 69, 123, 162, 185, 45, + 226, 255, 71, 74, 114, 81, 222, 163, 82, 123, 159, 76, 188, 71, 17, 203, 159, 25, 198, 68, 143, 221, 3, 15, 69, + 100, 66, 114, 166, 227, 255, 75, 113, 88, 191, 207, 22, 176, 176, 129, 18, 163, 239, 27, 52, 24, 211, 169, 32, 32, + 152, 24, 66, 243, 201, 67, 52, 116, 85, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2414, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "84" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7541415519017289952" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2508945988433222287" + } + } + ] + } + } + ] + }, + "cborHex": "bf4184d8669f1b68a87d755aa4c8e09f1bfffffffffffffffd1b22d1911561341a8fffffff", + "cborBytes": [ + 191, 65, 132, 216, 102, 159, 27, 104, 168, 125, 117, 90, 164, 200, 224, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 253, 27, 34, 209, 145, 21, 97, 52, 26, 143, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2415, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4704001447329908311" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3850972817030238803" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bd96" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7746749842037820422" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b7940" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e6b0ece38b6d931b23fb8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d8befd850d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5592dd68" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94f16117ee29ff9f5c21dcb1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2336186234721292297" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7766035315417181783" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17954161693149229201" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a68744ad" + }, + { + "_tag": "ByteArray", + "bytearray": "cb" + }, + { + "_tag": "ByteArray", + "bytearray": "a9c9e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3208535184008801538" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4147f864bb05c657d8669f1b3571675faec5d2539f42bd96ffff1b6b81fbeff27a4c06bf434b79404b0e6b0ece38b6d931b23fb8466d8befd850d6445592dd684c94f16117ee29ff9f5c21dcb11b206bcd00b9b85009ff1b6bc67ff920946e579f1bf929feef4815f09144a68744ad41cb43a9c9e81b2c8701c0142fed02ffff", + "cborBytes": [ + 191, 27, 65, 71, 248, 100, 187, 5, 198, 87, 216, 102, 159, 27, 53, 113, 103, 95, 174, 197, 210, 83, 159, 66, 189, + 150, 255, 255, 27, 107, 129, 251, 239, 242, 122, 76, 6, 191, 67, 75, 121, 64, 75, 14, 107, 14, 206, 56, 182, 217, + 49, 178, 63, 184, 70, 109, 139, 239, 216, 80, 214, 68, 85, 146, 221, 104, 76, 148, 241, 97, 23, 238, 41, 255, 159, + 92, 33, 220, 177, 27, 32, 107, 205, 0, 185, 184, 80, 9, 255, 27, 107, 198, 127, 249, 32, 148, 110, 87, 159, 27, + 249, 41, 254, 239, 72, 21, 240, 145, 68, 166, 135, 68, 173, 65, 203, 67, 169, 201, 232, 27, 44, 135, 1, 192, 20, + 47, 237, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2416, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4c0fa39729722" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8500469e3400" + } + } + ] + } + } + ] + }, + "cborHex": "bf09bf47a4c0fa39729722468500469e3400ffff", + "cborBytes": [191, 9, 191, 71, 164, 192, 250, 57, 114, 151, 34, 70, 133, 0, 70, 158, 52, 0, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2417, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14228227292665686167" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9915300f" + } + } + ] + } + } + ] + }, + "cborHex": "bf41d1bf1bc574d1569adb2897449915300fffff", + "cborBytes": [191, 65, 209, 191, 27, 197, 116, 209, 86, 154, 219, 40, 151, 68, 153, 21, 48, 15, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2418, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "20d7ee58ef44" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa0501" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b306fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "063afe" + } + } + ] + }, + "cborHex": "bf4620d7ee58ef4443fa050143b306fa43063afeff", + "cborBytes": [191, 70, 32, 215, 238, 88, 239, 68, 67, 250, 5, 1, 67, 179, 6, 250, 67, 6, 58, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2419, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6293324578877607449" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "08c5defcacf15139b391b3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2923936474576711803" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d2aee1f53d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9dc6bbafb78182" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2fb3caab8af0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9563813813516386347" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3977aafc9d1d05675e26" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0595d8afe48a230d41d2a72e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af860bfbc9d1fa26455a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a335f53e0c" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16020218221659776243" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8092695834889032159" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "853418c24eb9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12414947974857160736" + } + }, + { + "_tag": "ByteArray", + "bytearray": "470e3cb5f024f2c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15636032284067569636" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5756615c6c3c0e19bf4b08c5defcacf15139b391b31b2893e8bb60f3f07b462d2aee1f53d0479dc6bbafb78182462fb3caab8af01b84b97dfdfc9e402b4a3977aafc9d1d05675e264c0595d8afe48a230d41d2a72e4aaf860bfbc9d1fa26455a45a335f53e0cff1bde533f98064564f3d8669f1b704f07fc21d811df9f46853418c24eb91bac4ac167ea50f82048470e3cb5f024f2c41bd8fe5884e4631fe4ffffff", + "cborBytes": [ + 191, 27, 87, 86, 97, 92, 108, 60, 14, 25, 191, 75, 8, 197, 222, 252, 172, 241, 81, 57, 179, 145, 179, 27, 40, 147, + 232, 187, 96, 243, 240, 123, 70, 45, 42, 238, 31, 83, 208, 71, 157, 198, 187, 175, 183, 129, 130, 70, 47, 179, + 202, 171, 138, 240, 27, 132, 185, 125, 253, 252, 158, 64, 43, 74, 57, 119, 170, 252, 157, 29, 5, 103, 94, 38, 76, + 5, 149, 216, 175, 228, 138, 35, 13, 65, 210, 167, 46, 74, 175, 134, 11, 251, 201, 209, 250, 38, 69, 90, 69, 163, + 53, 245, 62, 12, 255, 27, 222, 83, 63, 152, 6, 69, 100, 243, 216, 102, 159, 27, 112, 79, 7, 252, 33, 216, 17, 223, + 159, 70, 133, 52, 24, 194, 78, 185, 27, 172, 74, 193, 103, 234, 80, 248, 32, 72, 71, 14, 60, 181, 240, 36, 242, + 196, 27, 216, 254, 88, 132, 228, 99, 31, 228, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2420, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b202b31a59adc6dd809" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d3362647990a4f24c29f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11853167774942411817" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d1e2c3fb987531520f0c2ad" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d9814cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8848841177295424509" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77d185f89149cd7d34759e6e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9448f94" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "979728c86a1391a2dadfbc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef7c2b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d1cfa26bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53318e76c1e0d159" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d982" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d50c8acf1cb2c8d05244" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51f7c218cb79241ebdc5" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a1b202b31a59adc6dd8099f4ad3362647990a4f24c29f1ba47ee94a608cbc29ff4c7d1e2c3fb987531520f0c2adbf446d9814cd1b7acd662ae68b0bfd4c77d185f89149cd7d34759e6e44c9448f944b979728c86a1391a2dadfbc43ef7c2b459d1cfa26bd4853318e76c1e0d15942d9824ad50c8acf1cb2c8d0524441f14a51f7c218cb79241ebdc5ffff", + "cborBytes": [ + 191, 74, 27, 32, 43, 49, 165, 154, 220, 109, 216, 9, 159, 74, 211, 54, 38, 71, 153, 10, 79, 36, 194, 159, 27, 164, + 126, 233, 74, 96, 140, 188, 41, 255, 76, 125, 30, 44, 63, 185, 135, 83, 21, 32, 240, 194, 173, 191, 68, 109, 152, + 20, 205, 27, 122, 205, 102, 42, 230, 139, 11, 253, 76, 119, 209, 133, 248, 145, 73, 205, 125, 52, 117, 158, 110, + 68, 201, 68, 143, 148, 75, 151, 151, 40, 200, 106, 19, 145, 162, 218, 223, 188, 67, 239, 124, 43, 69, 157, 28, + 250, 38, 189, 72, 83, 49, 142, 118, 193, 224, 209, 89, 66, 217, 130, 74, 213, 12, 138, 207, 28, 178, 200, 208, 82, + 68, 65, 241, 74, 81, 247, 194, 24, 203, 121, 36, 30, 189, 197, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2421, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4118483881543387281" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "025f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11714649349700506471" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15721687598914570794" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9ab3a2417b" + }, + { + "_tag": "ByteArray", + "bytearray": "fc127d0db8" + }, + { + "_tag": "ByteArray", + "bytearray": "8d026a9b71d143" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17352106324215346050" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3927cb450490c89142025f1ba292cb844528d3679f1bda2ea792faf78a2a459ab3a2417b45fc127d0db8478d026a9b71d1431bf0cf10c437aa3382ffff", + "cborBytes": [ + 191, 27, 57, 39, 203, 69, 4, 144, 200, 145, 66, 2, 95, 27, 162, 146, 203, 132, 69, 40, 211, 103, 159, 27, 218, 46, + 167, 146, 250, 247, 138, 42, 69, 154, 179, 162, 65, 123, 69, 252, 18, 125, 13, 184, 71, 141, 2, 106, 155, 113, + 209, 67, 27, 240, 207, 16, 196, 55, 170, 51, 130, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2422, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6047d75d344cba150fe9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41c6c6eb3de40d4b09" + } + } + ] + }, + "cborHex": "bf4a6047d75d344cba150fe94941c6c6eb3de40d4b09ff", + "cborBytes": [191, 74, 96, 71, 215, 93, 52, 76, 186, 21, 15, 233, 73, 65, 198, 198, 235, 61, 228, 13, 75, 9, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2423, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "055d8dfbb08f02" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3729832078709878578" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4749112773022768552" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5144660503223163153" + } + }, + { + "_tag": "ByteArray", + "bytearray": "92fbff6c9ba3d0c0" + }, + { + "_tag": "ByteArray", + "bytearray": "864f17f7f968ae7c0dd0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14383731942265616934" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9fbeb9314e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9481514353826345058" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a979f9cac8007a2a38" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1195681140620944477" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8a9246612791b95" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24567858d9f6706660" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12042881892266862107" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24b6654bd2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6253560578752908648" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31bd16daba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12882984744930148203" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36fe38db45ac59a92fd0b407" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2d824de5295" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79c8704d357331" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af25" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc93a23ee4b1314b644214" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a318e4edf007156536bb2de" + } + } + ] + }, + "cborHex": "bf47055d8dfbb08f02d8669f1b33c306839b5bef329f1b41e83ce7ba4adda81b47658178589959114892fbff6c9ba3d0c04a864f17f7f968ae7c0dd01bc79d47fe432e7a26ffff459fbeb9314ed8669f1b83951b11d09630629f05ffff49a979f9cac8007a2a381bffffffffffffffed41c61b1097e9a99358645d48d8a9246612791b95bf4924567858d9f67066601ba720e9466c8ce61b4524b6654bd21b56c91c36adf40d684531bd16daba1bb2c98e5e58567f6b4c36fe38db45ac59a92fd0b40746b2d824de52954779c8704d35733142af25ff4bfc93a23ee4b1314b6442144c6a318e4edf007156536bb2deff", + "cborBytes": [ + 191, 71, 5, 93, 141, 251, 176, 143, 2, 216, 102, 159, 27, 51, 195, 6, 131, 155, 91, 239, 50, 159, 27, 65, 232, 60, + 231, 186, 74, 221, 168, 27, 71, 101, 129, 120, 88, 153, 89, 17, 72, 146, 251, 255, 108, 155, 163, 208, 192, 74, + 134, 79, 23, 247, 249, 104, 174, 124, 13, 208, 27, 199, 157, 71, 254, 67, 46, 122, 38, 255, 255, 69, 159, 190, + 185, 49, 78, 216, 102, 159, 27, 131, 149, 27, 17, 208, 150, 48, 98, 159, 5, 255, 255, 73, 169, 121, 249, 202, 200, + 0, 122, 42, 56, 27, 255, 255, 255, 255, 255, 255, 255, 237, 65, 198, 27, 16, 151, 233, 169, 147, 88, 100, 93, 72, + 216, 169, 36, 102, 18, 121, 27, 149, 191, 73, 36, 86, 120, 88, 217, 246, 112, 102, 96, 27, 167, 32, 233, 70, 108, + 140, 230, 27, 69, 36, 182, 101, 75, 210, 27, 86, 201, 28, 54, 173, 244, 13, 104, 69, 49, 189, 22, 218, 186, 27, + 178, 201, 142, 94, 88, 86, 127, 107, 76, 54, 254, 56, 219, 69, 172, 89, 169, 47, 208, 180, 7, 70, 178, 216, 36, + 222, 82, 149, 71, 121, 200, 112, 77, 53, 115, 49, 66, 175, 37, 255, 75, 252, 147, 162, 62, 228, 177, 49, 75, 100, + 66, 20, 76, 106, 49, 142, 78, 223, 0, 113, 86, 83, 107, 178, 222, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2424, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1533d3c72c90fec9eff7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8554783074245332997" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c6f566e4ac77269e98bb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8afd755096db659c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9734b37a766138df6f8203cd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8815932773042529985" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3b8cafa830db4190" + }, + { + "_tag": "ByteArray", + "bytearray": "8b73cead6140494384aa22b1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16954136388400744956" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd58fbcbb89280ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84d80065f708" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee39de" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6402087532285143190" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3888093632826012905" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a1533d3c72c90fec9eff71b76b8b1e17eead0054b1c6f566e4ac77269e98bb6488afd755096db659c4c9734b37a766138df6f8203cdd8669f1b7a587c25f4eca6c19f483b8cafa830db41904c8b73cead6140494384aa22b11beb493137e82689fcffff48cd58fbcbb89280ae4684d80065f70843ee39ded8669f1b58d8c8b0ded028969f1b35f5488f1e0d74e9ffffff", + "cborBytes": [ + 191, 74, 21, 51, 211, 199, 44, 144, 254, 201, 239, 247, 27, 118, 184, 177, 225, 126, 234, 208, 5, 75, 28, 111, 86, + 110, 74, 199, 114, 105, 233, 139, 182, 72, 138, 253, 117, 80, 150, 219, 101, 156, 76, 151, 52, 179, 122, 118, 97, + 56, 223, 111, 130, 3, 205, 216, 102, 159, 27, 122, 88, 124, 37, 244, 236, 166, 193, 159, 72, 59, 140, 175, 168, + 48, 219, 65, 144, 76, 139, 115, 206, 173, 97, 64, 73, 67, 132, 170, 34, 177, 27, 235, 73, 49, 55, 232, 38, 137, + 252, 255, 255, 72, 205, 88, 251, 203, 184, 146, 128, 174, 70, 132, 216, 0, 101, 247, 8, 67, 238, 57, 222, 216, + 102, 159, 27, 88, 216, 200, 176, 222, 208, 40, 150, 159, 27, 53, 245, 72, 143, 30, 13, 116, 233, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2425, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e257f9f9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6533420409234045396" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a1194efce9ead18c3e81ba" + }, + { + "_tag": "ByteArray", + "bytearray": "cb17d686fbb0a55b4f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7560248101054191391" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa0675" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + }, + "cborHex": "bf44e257f9f9d8669f1bffffffffffffffee9f1b5aab5f3f24aeb9d4054ba1194efce9ead18c3e81ba49cb17d686fbb0a55b4f1b68eb65978d28171fffff43fa067502ff", + "cborBytes": [ + 191, 68, 226, 87, 249, 249, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 27, 90, 171, 95, 63, + 36, 174, 185, 212, 5, 75, 161, 25, 78, 252, 233, 234, 209, 140, 62, 129, 186, 73, 203, 23, 214, 134, 251, 176, + 165, 91, 79, 27, 104, 235, 101, 151, 141, 40, 23, 31, 255, 255, 67, 250, 6, 117, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2426, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13240815004562521295" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d7ea7b9d1624e96c3d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39fc7bab73" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15561681671712458704" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14521699288861715327" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16652548020948798195" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed4a51710a6502703eb35a34" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a4a19c8bcf6184dadbdfe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ab0df516118" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90e5ca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17551156844026811812" + } + } + } + ] + }, + "cborHex": "bf1bb7c0d318039c7ccfbf4a6d7ea7b9d1624e96c3d441dbff4539fc7bab73bf1bd7f63307f620c7d01bc98770905fa52b7f1be719bc3231c98af34ced4a51710a6502703eb35a34ff4b8a4a19c8bcf6184dadbdfe461ab0df5161184390e5ca1bf3923c28dd6255a4ff", + "cborBytes": [ + 191, 27, 183, 192, 211, 24, 3, 156, 124, 207, 191, 74, 109, 126, 167, 185, 209, 98, 78, 150, 195, 212, 65, 219, + 255, 69, 57, 252, 123, 171, 115, 191, 27, 215, 246, 51, 7, 246, 32, 199, 208, 27, 201, 135, 112, 144, 95, 165, 43, + 127, 27, 231, 25, 188, 50, 49, 201, 138, 243, 76, 237, 74, 81, 113, 10, 101, 2, 112, 62, 179, 90, 52, 255, 75, + 138, 74, 25, 200, 188, 246, 24, 77, 173, 189, 254, 70, 26, 176, 223, 81, 97, 24, 67, 144, 229, 202, 27, 243, 146, + 60, 40, 221, 98, 85, 164, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2427, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12839400722604243407" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17476711155718154485" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17805292042734906312" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13563175236867537356" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1410795905648828170" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "984379354839510135" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12458989857222004972" + } + }, + { + "_tag": "ByteArray", + "bytearray": "99d69dad7756b433e5535090" + }, + { + "_tag": "ByteArray", + "bytearray": "90643a8efea1919d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14304438012837099469" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7e" + } + ] + } + } + ] + }, + "cborHex": "bf1bb22eb6ee5fb839cf121bf289c03356afe8f5091bf7191ac6c14dabc8d8669f1bbc3a140463dd39cc9f1b13942766c6c61f0a41e41b0da937cec96fec77ffff1bfffffffffffffff99f1bace73943bbe990ec4c99d69dad7756b433e55350904890643a8efea1919d1bc6839295a2bff7cd417effff", + "cborBytes": [ + 191, 27, 178, 46, 182, 238, 95, 184, 57, 207, 18, 27, 242, 137, 192, 51, 86, 175, 232, 245, 9, 27, 247, 25, 26, + 198, 193, 77, 171, 200, 216, 102, 159, 27, 188, 58, 20, 4, 99, 221, 57, 204, 159, 27, 19, 148, 39, 102, 198, 198, + 31, 10, 65, 228, 27, 13, 169, 55, 206, 201, 111, 236, 119, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 249, + 159, 27, 172, 231, 57, 67, 187, 233, 144, 236, 76, 153, 214, 157, 173, 119, 86, 180, 51, 229, 83, 80, 144, 72, + 144, 100, 58, 142, 254, 161, 145, 157, 27, 198, 131, 146, 149, 162, 191, 247, 205, 65, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2428, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "683421370835697798" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52283e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2253285482563583862" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b38e4c927182a19efac7" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4133127096423035023" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12819320224760569317" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c658b491fe38699490" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12508422729744399151" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c64b44" + } + ] + } + } + ] + }, + "cborHex": "bf1b097c001da89280864352283e1b1f4547353dbf3f769f4ab38e4c927182a19efac7ff1b395bd13229d6308f9f1bb1e75fd322d59de549c658b491fe38699490ff1bad96d83342d63b2f9f43c64b44ffff", + "cborBytes": [ + 191, 27, 9, 124, 0, 29, 168, 146, 128, 134, 67, 82, 40, 62, 27, 31, 69, 71, 53, 61, 191, 63, 118, 159, 74, 179, + 142, 76, 146, 113, 130, 161, 158, 250, 199, 255, 27, 57, 91, 209, 50, 41, 214, 48, 143, 159, 27, 177, 231, 95, + 211, 34, 213, 157, 229, 73, 198, 88, 180, 145, 254, 56, 105, 148, 144, 255, 27, 173, 150, 216, 51, 66, 214, 59, + 47, 159, 67, 198, 75, 68, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2429, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "08b64726cdb5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + }, + "cborHex": "bf4608b64726cdb509ff", + "cborBytes": [191, 70, 8, 182, 71, 38, 205, 181, 9, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2430, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6969807722106392413" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2192544439716682629" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "914455566718712675" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2273335857371818017" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0205" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "021260fd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15993904699615854816" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17074878201183812160" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1970ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14803155014842122928" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6305585847801915515" + } + }, + { + "_tag": "ByteArray", + "bytearray": "30" + } + ] + } + } + ] + }, + "cborHex": "bf1b60b9bb3214ed0f5d9f1b1e6d7b8d23921b85021b0cb0cc7e3125bb631b1f8c82eae9ce2821420205ff44021260fdd8669f1bddf5c395c00dc0e09f1becf62741e49f3a40431970ed1bcd6f5f0e36b502b01b5781f0eb8ef6a87b4130ffffff", + "cborBytes": [ + 191, 27, 96, 185, 187, 50, 20, 237, 15, 93, 159, 27, 30, 109, 123, 141, 35, 146, 27, 133, 2, 27, 12, 176, 204, + 126, 49, 37, 187, 99, 27, 31, 140, 130, 234, 233, 206, 40, 33, 66, 2, 5, 255, 68, 2, 18, 96, 253, 216, 102, 159, + 27, 221, 245, 195, 149, 192, 13, 192, 224, 159, 27, 236, 246, 39, 65, 228, 159, 58, 64, 67, 25, 112, 237, 27, 205, + 111, 95, 14, 54, 181, 2, 176, 27, 87, 129, 240, 235, 142, 246, 168, 123, 65, 48, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2431, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7846107922285409159" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9428724789932429266" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7735447564738525764" + } + }, + { + "_tag": "ByteArray", + "bytearray": "43845c" + }, + { + "_tag": "ByteArray", + "bytearray": "e7c5f0696142d350" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17478278929411682983" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03747ac261416740" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18343436199873807402" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2617589258143980939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5753665662554948814" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17941548018935962828" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6309270496686922946" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "906665215523172427" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14307498552663773726" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16192049292384827549" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f77fbb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16647133556888757622" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15618580630950482872" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "643b6655cdd7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17310268810050369595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16691957400487942204" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14213682969473217982" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6ce2f995b9333387d8669f1b82d98f3dacd78fd29f1b6b59d49372e67a444343845c48e7c5f0696142d350ffff1bf28f521518c732a74803747ac2614167401bfe90fa093d85042abf1b24538b8fcb8cdd8b4233c11b4fd9206f94f344ce1bf8fd2edd654a9ccc1b578f0816bae05cc21b0c951f35b576304b1bc68e722117f0921e41901be0b5b70ad236789d43f77fbb1be7067fc50ad6e5761bd8c05855439993b8ff46643b6655cdd7d8669f1bf03a6dc4dd93783b9f1be7a5bed16609583c1bc541255a797875beffffff", + "cborBytes": [ + 191, 27, 108, 226, 249, 149, 185, 51, 51, 135, 216, 102, 159, 27, 130, 217, 143, 61, 172, 215, 143, 210, 159, 27, + 107, 89, 212, 147, 114, 230, 122, 68, 67, 67, 132, 92, 72, 231, 197, 240, 105, 97, 66, 211, 80, 255, 255, 27, 242, + 143, 82, 21, 24, 199, 50, 167, 72, 3, 116, 122, 194, 97, 65, 103, 64, 27, 254, 144, 250, 9, 61, 133, 4, 42, 191, + 27, 36, 83, 139, 143, 203, 140, 221, 139, 66, 51, 193, 27, 79, 217, 32, 111, 148, 243, 68, 206, 27, 248, 253, 46, + 221, 101, 74, 156, 204, 27, 87, 143, 8, 22, 186, 224, 92, 194, 27, 12, 149, 31, 53, 181, 118, 48, 75, 27, 198, + 142, 114, 33, 23, 240, 146, 30, 65, 144, 27, 224, 181, 183, 10, 210, 54, 120, 157, 67, 247, 127, 187, 27, 231, 6, + 127, 197, 10, 214, 229, 118, 27, 216, 192, 88, 85, 67, 153, 147, 184, 255, 70, 100, 59, 102, 85, 205, 215, 216, + 102, 159, 27, 240, 58, 109, 196, 221, 147, 120, 59, 159, 27, 231, 165, 190, 209, 102, 9, 88, 60, 27, 197, 65, 37, + 90, 121, 120, 117, 190, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2432, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3facdee3a26b7f044" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7305fe2e5dc2170005" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7662865b51e3df7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1353314636505669157" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14064565759080795767" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc791e1c9ce7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fffe0706" + } + } + ] + }, + "cborHex": "bf49c3facdee3a26b7f044497305fe2e5dc217000548f7662865b51e3df7d8669f1b12c7f07de241de259f1bc32f600a66220e77ffff46fc791e1c9ce744fffe0706ff", + "cborBytes": [ + 191, 73, 195, 250, 205, 238, 58, 38, 183, 240, 68, 73, 115, 5, 254, 46, 93, 194, 23, 0, 5, 72, 247, 102, 40, 101, + 181, 30, 61, 247, 216, 102, 159, 27, 18, 199, 240, 125, 226, 65, 222, 37, 159, 27, 195, 47, 96, 10, 102, 34, 14, + 119, 255, 255, 70, 252, 121, 30, 28, 156, 231, 68, 255, 254, 7, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2433, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1148277716662192300" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7417818708730468981" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2763986680471852786" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8075692875340187818" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3487283754019451331" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ea4b713fe26" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13405035760944741829" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ba3bfb55c1fbcf979" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15204939521750415772" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13696245553872317490" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17380644759795849100" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b006269e9ece238701" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18065987344241265919" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16785305762873081361" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8760768931243396461" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8899915286003763365" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11310706303513004201" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d753" + } + } + ] + }, + "cborHex": "bf1b0fef807fdd2588aca01b66f162d076205a75bf1b265ba73ddd6f96f21b70129fe21dce08aa1b306552190d51f1c3466ea4b713fe261bba0841006c84fdc5494ba3bfb55c1fbcf9791bd302cbef913b399c1bbe12d6c3f3152c321bf13474528ae2d78c49b006269e9ece2387011bfab747c59a340cff1be8f162a8b25dfe11ff1b799480ed2a0a8d6dd8669f1b7b82d9cc8152c8a580ff1b9cf7b374d3aa08a942d753ff", + "cborBytes": [ + 191, 27, 15, 239, 128, 127, 221, 37, 136, 172, 160, 27, 102, 241, 98, 208, 118, 32, 90, 117, 191, 27, 38, 91, 167, + 61, 221, 111, 150, 242, 27, 112, 18, 159, 226, 29, 206, 8, 170, 27, 48, 101, 82, 25, 13, 81, 241, 195, 70, 110, + 164, 183, 19, 254, 38, 27, 186, 8, 65, 0, 108, 132, 253, 197, 73, 75, 163, 191, 181, 92, 31, 188, 249, 121, 27, + 211, 2, 203, 239, 145, 59, 57, 156, 27, 190, 18, 214, 195, 243, 21, 44, 50, 27, 241, 52, 116, 82, 138, 226, 215, + 140, 73, 176, 6, 38, 158, 158, 206, 35, 135, 1, 27, 250, 183, 71, 197, 154, 52, 12, 255, 27, 232, 241, 98, 168, + 178, 93, 254, 17, 255, 27, 121, 148, 128, 237, 42, 10, 141, 109, 216, 102, 159, 27, 123, 130, 217, 204, 129, 82, + 200, 165, 128, 255, 27, 156, 247, 179, 116, 211, 170, 8, 169, 66, 215, 83, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2434, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11059206642950960786" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18066782835454400819" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "89cb89c446c792d4" + } + ] + } + } + ] + }, + "cborHex": "bf1b997a31d8fabb7692d8669f1bfaba1b44556259339f4889cb89c446c792d4ffffff", + "cborBytes": [ + 191, 27, 153, 122, 49, 216, 250, 187, 118, 146, 216, 102, 159, 27, 250, 186, 27, 68, 85, 98, 89, 51, 159, 72, 137, + 203, 137, 196, 70, 199, 146, 212, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2435, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82c6a0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8228964067958456887" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1273716578507673317" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8557447885300647084" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5872a315e940872b9f6c2e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14466227745265844202" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12871872770849450051" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14722589604376833195" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07fba1" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15916243355975720188" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "175c35acb5f6a975977e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13249582295847774407" + } + }, + { + "_tag": "ByteArray", + "bytearray": "36c91c94c89f238d" + }, + { + "_tag": "ByteArray", + "bytearray": "b646e18342fb6b2013fba96b" + }, + { + "_tag": "ByteArray", + "bytearray": "8ffcc04d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce5a24f461d72e6ed7ec1b81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5100943778066421006" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7e0581d2c65498430" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "374205052606847181" + } + } + } + ] + }, + "cborHex": "bf415b804382c6a0bf1b723327388c1e02371b11ad267ace79cee51b76c229832b4344ac4b5872a315e940872b9f6c2e1bc8c25d7d2c787fea1bb2a21416448128431bcc51253dd6bd6cab4307fba1ff41cad8669f1bdce1db011f9a9cfc9f4a175c35acb5f6a975977e1bb7dff8e6164fa8c74836c91c94c89f238d4cb646e18342fb6b2013fba96b448ffcc04dffff4cce5a24f461d72e6ed7ec1b811b46ca315716e3550e49d7e0581d2c654984301b0531718341c998cdff", + "cborBytes": [ + 191, 65, 91, 128, 67, 130, 198, 160, 191, 27, 114, 51, 39, 56, 140, 30, 2, 55, 27, 17, 173, 38, 122, 206, 121, + 206, 229, 27, 118, 194, 41, 131, 43, 67, 68, 172, 75, 88, 114, 163, 21, 233, 64, 135, 43, 159, 108, 46, 27, 200, + 194, 93, 125, 44, 120, 127, 234, 27, 178, 162, 20, 22, 68, 129, 40, 67, 27, 204, 81, 37, 61, 214, 189, 108, 171, + 67, 7, 251, 161, 255, 65, 202, 216, 102, 159, 27, 220, 225, 219, 1, 31, 154, 156, 252, 159, 74, 23, 92, 53, 172, + 181, 246, 169, 117, 151, 126, 27, 183, 223, 248, 230, 22, 79, 168, 199, 72, 54, 201, 28, 148, 200, 159, 35, 141, + 76, 182, 70, 225, 131, 66, 251, 107, 32, 19, 251, 169, 107, 68, 143, 252, 192, 77, 255, 255, 76, 206, 90, 36, 244, + 97, 215, 46, 110, 215, 236, 27, 129, 27, 70, 202, 49, 87, 22, 227, 85, 14, 73, 215, 224, 88, 29, 44, 101, 73, 132, + 48, 27, 5, 49, 113, 131, 65, 201, 152, 205, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2436, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f424d943888db78f497b0c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7011620812504267784" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e34f28b25a4b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9177225351431180778" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4206590043058205232" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10445155184051646029" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "995a16f34af146f065" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11795552474011675360" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10683201726408248873" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12130890070108516980" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15570262413543181510" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4bf424d943888db78f497b0cbf1b614e47fad50d7c0846e34f28b25a4b1b7f5c0dd587c3d1ea1b3a60cf5b502df2301b90f4a54c913a6e4d49995a16f34af146f0651ba3b2387ac6f22ae01b94425b5e3e674e291ba859943f1e21b2741bd814af2b9adb8cc6ffff", + "cborBytes": [ + 191, 75, 244, 36, 217, 67, 136, 141, 183, 143, 73, 123, 12, 191, 27, 97, 78, 71, 250, 213, 13, 124, 8, 70, 227, + 79, 40, 178, 90, 75, 27, 127, 92, 13, 213, 135, 195, 209, 234, 27, 58, 96, 207, 91, 80, 45, 242, 48, 27, 144, 244, + 165, 76, 145, 58, 110, 77, 73, 153, 90, 22, 243, 74, 241, 70, 240, 101, 27, 163, 178, 56, 122, 198, 242, 42, 224, + 27, 148, 66, 91, 94, 62, 103, 78, 41, 27, 168, 89, 148, 63, 30, 33, 178, 116, 27, 216, 20, 175, 43, 154, 219, 140, + 198, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2437, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16383436092233158088" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f59a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "078e24a9647817e297d3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17326298636740613954" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10032904867244355919" + } + }, + { + "_tag": "ByteArray", + "bytearray": "856b56323ddae2b2800d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "10e7811e2d36bdf5" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6970e72edcf03c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1a388" + } + } + ] + }, + "cborHex": "bf1be35da8529ddf0dc842f59a4a078e24a9647817e297d3d8669f1bf07360cfbb4257429f1b8b3c09d1f563314f4a856b56323ddae2b2800dffff4810e7811e2d36bdf5a0476970e72edcf03c43a1a388ff", + "cborBytes": [ + 191, 27, 227, 93, 168, 82, 157, 223, 13, 200, 66, 245, 154, 74, 7, 142, 36, 169, 100, 120, 23, 226, 151, 211, 216, + 102, 159, 27, 240, 115, 96, 207, 187, 66, 87, 66, 159, 27, 139, 60, 9, 209, 245, 99, 49, 79, 74, 133, 107, 86, 50, + 61, 218, 226, 178, 128, 13, 255, 255, 72, 16, 231, 129, 30, 45, 54, 189, 245, 160, 71, 105, 112, 231, 46, 220, + 240, 60, 67, 161, 163, 136, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2438, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74f8900278fe04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10986132973426929446" + } + } + } + ] + }, + "cborHex": "bf104774f8900278fe044206fd1b987695bb78516f26ff", + "cborBytes": [ + 191, 16, 71, 116, 248, 144, 2, 120, 254, 4, 66, 6, 253, 27, 152, 118, 149, 187, 120, 81, 111, 38, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2439, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6320078777733589139" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04e1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17952975534959315821" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6063752956998680386" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15708539191158412775" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15538229129883167607" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aea256aac69408999f91" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6518d193983c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6dc0a1d811eb75f62cac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a7e06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "361601683435830095" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf13a01b57b56e29c34ba8934204e11bf925c8214e874b6dbf1b5426c72fefa17f421bd9fff12abd4c95e71bd7a2e1118d502b774aaea256aac69408999f91466518d193983c4a6dc0a1d811eb75f62cac437a7e061b0504aad0b3603b4fffff", + "cborBytes": [ + 191, 19, 160, 27, 87, 181, 110, 41, 195, 75, 168, 147, 66, 4, 225, 27, 249, 37, 200, 33, 78, 135, 75, 109, 191, + 27, 84, 38, 199, 47, 239, 161, 127, 66, 27, 217, 255, 241, 42, 189, 76, 149, 231, 27, 215, 162, 225, 17, 141, 80, + 43, 119, 74, 174, 162, 86, 170, 198, 148, 8, 153, 159, 145, 70, 101, 24, 209, 147, 152, 60, 74, 109, 192, 161, + 216, 17, 235, 117, 246, 44, 172, 67, 122, 126, 6, 27, 5, 4, 170, 208, 179, 96, 59, 79, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2440, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9634115332097757801" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "508712080650394892" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10024838385752311588" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "532970891666188917" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c6d757ad90245c23" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1266402922797904841" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c6320f" + } + ] + } + } + ] + }, + "cborHex": "bf1b85b340d9ced4d2691b070f4ef12c1ddd0c1b8b1f6165e1778724d8669f1b07657e33c162ea759f48c6d757ad90245c231b11932abfa3e2b3c943c6320fffffff", + "cborBytes": [ + 191, 27, 133, 179, 64, 217, 206, 212, 210, 105, 27, 7, 15, 78, 241, 44, 29, 221, 12, 27, 139, 31, 97, 101, 225, + 119, 135, 36, 216, 102, 159, 27, 7, 101, 126, 51, 193, 98, 234, 117, 159, 72, 198, 215, 87, 173, 144, 36, 92, 35, + 27, 17, 147, 42, 191, 163, 226, 179, 201, 67, 198, 50, 15, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2441, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cda5a6e7178e50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd649d6dccc608008f" + } + } + ] + }, + "cborHex": "bf47cda5a6e7178e5049fd649d6dccc608008fff", + "cborBytes": [191, 71, 205, 165, 166, 231, 23, 142, 80, 73, 253, 100, 157, 109, 204, 198, 8, 0, 143, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2442, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00711fa7b7d89ecaabc0cd70" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b52a83e3c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9672910418536172679" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6b10d5188a73ea27c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1058140845158815976" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ca3a1c04277602d25d13" + }, + { + "_tag": "ByteArray", + "bytearray": "2e5952fa4aa4" + }, + { + "_tag": "ByteArray", + "bytearray": "390a663a127c740b10242a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e691966aee88e93f252e9d7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "557914400793244234" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6884" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3922199028533823252" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5557812964592659468" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4714248781557874775" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9817" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6130171540391216056" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11467084336622860957" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15080858200390883093" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6404544403506217175" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4eef9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3843866034865667051" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca0b50473c8535ca58fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4718964249375369922" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9180587801307583287" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5765459698559085929" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d81074" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8995495122036233416" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16764930276032554653" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4790566082163594946" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18394677851499520497" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db0227ef91c9" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2d7d4548e2a2e25ac55db28" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4c00711fa7b7d89ecaabc0cd70a0454b52a83e3cd8669f1b863d14c6c1060c879f496b10d5188a73ea27c41b0eaf457e0e05d8e84aca3a1c04277602d25d13462e5952fa4aa44b390a663a127c740b10242affff4c8e691966aee88e93f252e9d7bf1b07be1c310a5b324a4268841b366e733c5a2407141b4d215171da9b2c0c1b416c604a279340574298171b5512be89753a43b81b9f234472edd9fa9d1bd149f8a1a655d7151b58e18333c73440d7ff43d4eef9bf1b355827cb045b7beb4aca0b50473c8535ca58fc1b417d20fb8fc96ac21b7f67fff6e63913371b5003070c9371ed6943d810741b7cd66b273fba94c841501be8a8ff42fb1ca69d1b427b8278606556c21bff47060bf85fe1f146db0227ef91c9ff4ce2d7d4548e2a2e25ac55db2880ff", + "cborBytes": [ + 191, 76, 0, 113, 31, 167, 183, 216, 158, 202, 171, 192, 205, 112, 160, 69, 75, 82, 168, 62, 60, 216, 102, 159, 27, + 134, 61, 20, 198, 193, 6, 12, 135, 159, 73, 107, 16, 213, 24, 138, 115, 234, 39, 196, 27, 14, 175, 69, 126, 14, 5, + 216, 232, 74, 202, 58, 28, 4, 39, 118, 2, 210, 93, 19, 70, 46, 89, 82, 250, 74, 164, 75, 57, 10, 102, 58, 18, 124, + 116, 11, 16, 36, 42, 255, 255, 76, 142, 105, 25, 102, 174, 232, 142, 147, 242, 82, 233, 215, 191, 27, 7, 190, 28, + 49, 10, 91, 50, 74, 66, 104, 132, 27, 54, 110, 115, 60, 90, 36, 7, 20, 27, 77, 33, 81, 113, 218, 155, 44, 12, 27, + 65, 108, 96, 74, 39, 147, 64, 87, 66, 152, 23, 27, 85, 18, 190, 137, 117, 58, 67, 184, 27, 159, 35, 68, 114, 237, + 217, 250, 157, 27, 209, 73, 248, 161, 166, 85, 215, 21, 27, 88, 225, 131, 51, 199, 52, 64, 215, 255, 67, 212, 238, + 249, 191, 27, 53, 88, 39, 203, 4, 91, 123, 235, 74, 202, 11, 80, 71, 60, 133, 53, 202, 88, 252, 27, 65, 125, 32, + 251, 143, 201, 106, 194, 27, 127, 103, 255, 246, 230, 57, 19, 55, 27, 80, 3, 7, 12, 147, 113, 237, 105, 67, 216, + 16, 116, 27, 124, 214, 107, 39, 63, 186, 148, 200, 65, 80, 27, 232, 168, 255, 66, 251, 28, 166, 157, 27, 66, 123, + 130, 120, 96, 101, 86, 194, 27, 255, 71, 6, 11, 248, 95, 225, 241, 70, 219, 2, 39, 239, 145, 201, 255, 76, 226, + 215, 212, 84, 142, 42, 46, 37, 172, 85, 219, 40, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2443, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10592144955155081384" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5285033313075320490" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11384657113183235452" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10639944450085816889" + } + } + } + ] + }, + "cborHex": "bf1b92fedbb79576e8a89f1b495835cc03f5d6aaff1b9dfe6d5370e92d7c1b93a8ad1ac1410a39ff", + "cborBytes": [ + 191, 27, 146, 254, 219, 183, 149, 118, 232, 168, 159, 27, 73, 88, 53, 204, 3, 245, 214, 170, 255, 27, 157, 254, + 109, 83, 112, 233, 45, 124, 27, 147, 168, 173, 26, 193, 65, 10, 57, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2444, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12937445475043946558" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87d486e48abdd13f1a4e76" + } + } + ] + }, + "cborHex": "bf1bb38b0a1d30fab03e4b87d486e48abdd13f1a4e76ff", + "cborBytes": [ + 191, 27, 179, 139, 10, 29, 48, 250, 176, 62, 75, 135, 212, 134, 228, 138, 189, 209, 63, 26, 78, 118, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2445, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdcb7157a9b4a15c9a7393e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17275876060525482194" + } + } + } + ] + }, + "cborHex": "bf4cfdcb7157a9b4a15c9a7393e51befc03dbedb4bd0d2ff", + "cborBytes": [ + 191, 76, 253, 203, 113, 87, 169, 180, 161, 92, 154, 115, 147, 229, 27, 239, 192, 61, 190, 219, 75, 208, 210, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2446, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7045360005902938939" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1141fc1b61c62598f296b33bd8669f1bfffffffffffffffc80ffff", + "cborBytes": [ + 191, 17, 65, 252, 27, 97, 198, 37, 152, 242, 150, 179, 59, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 252, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2447, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8362929282710663142" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5316863802376515200" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be6aed" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6796969603569587485" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3898977701555254318" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15228001541731378808" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "174b05" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15959202517384769874" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91c6dd030cfb06b3fdef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5139672304283495295" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2627116225778348134" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13772545039658442530" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eefef802" + } + } + ] + } + } + ] + }, + "cborHex": "bf0641f91b740f17dfb9ae6fe6bf1b49c94b7553c8ee8043be6aed1b5e53afd7b1e4951d1b361bf38fd85eb42e1bd354bab885ffe67843174b05ff1bdd7a7a22533d31524a91c6dd030cfb06b3fdef1bfffffffffffffff7bf0f03121b4753c8bac6bb2b7f1b24756449cd2ef066061bbf21e8be55e8df221bfffffffffffffff81bfffffffffffffff244eefef802ffff", + "cborBytes": [ + 191, 6, 65, 249, 27, 116, 15, 23, 223, 185, 174, 111, 230, 191, 27, 73, 201, 75, 117, 83, 200, 238, 128, 67, 190, + 106, 237, 27, 94, 83, 175, 215, 177, 228, 149, 29, 27, 54, 27, 243, 143, 216, 94, 180, 46, 27, 211, 84, 186, 184, + 133, 255, 230, 120, 67, 23, 75, 5, 255, 27, 221, 122, 122, 34, 83, 61, 49, 82, 74, 145, 198, 221, 3, 12, 251, 6, + 179, 253, 239, 27, 255, 255, 255, 255, 255, 255, 255, 247, 191, 15, 3, 18, 27, 71, 83, 200, 186, 198, 187, 43, + 127, 27, 36, 117, 100, 73, 205, 46, 240, 102, 6, 27, 191, 33, 232, 190, 85, 232, 223, 34, 27, 255, 255, 255, 255, + 255, 255, 255, 248, 27, 255, 255, 255, 255, 255, 255, 255, 242, 68, 238, 254, 248, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2448, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1645c54562475b1257575e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4463030565304419175" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5309863939185583021" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c9f79e9e0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1303141498686941780" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1dc43273788fb6a5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4205266188701420413" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "75649666515524271" + } + }, + { + "_tag": "ByteArray", + "bytearray": "be578065" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17483476615607760732" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13447925893881875119" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2647087868624407968" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bec6709b94987995c5a8e" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e687bd6235" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4387654079810022526" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eed4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6786997396238436741" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "68c5b6682584e7ba45" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1804863955387649289" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4cf6dcb5d4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7477220644265911723" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9020911882545268241" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b1645c54562475b1257575ed8669f1b3defdea72aae43679f1b49b06d1eacd023ad458c9f79e9e01b1215b049e94e2a54ffff481dc43273788fb6a5d8669f1b3a5c1b5173824b7d9f1b010cc2f88c08daaf44be5780651bf2a1c959b826375c1bbaa0a159ae9b4aaf1b24bc5864429a8da0ffff4b4bec6709b94987995c5a8ea045e687bd6235d8669f1b3ce41423885eac7e80ff42eed4d8669f1b5e30422c3e4b09859f4968c5b6682584e7ba451b190c2a3470c98d09454cf6dcb5d41b67c46c8f58afe5ab1b7d30b78ff5360611ffffff", + "cborBytes": [ + 191, 75, 22, 69, 197, 69, 98, 71, 91, 18, 87, 87, 94, 216, 102, 159, 27, 61, 239, 222, 167, 42, 174, 67, 103, 159, + 27, 73, 176, 109, 30, 172, 208, 35, 173, 69, 140, 159, 121, 233, 224, 27, 18, 21, 176, 73, 233, 78, 42, 84, 255, + 255, 72, 29, 196, 50, 115, 120, 143, 182, 165, 216, 102, 159, 27, 58, 92, 27, 81, 115, 130, 75, 125, 159, 27, 1, + 12, 194, 248, 140, 8, 218, 175, 68, 190, 87, 128, 101, 27, 242, 161, 201, 89, 184, 38, 55, 92, 27, 186, 160, 161, + 89, 174, 155, 74, 175, 27, 36, 188, 88, 100, 66, 154, 141, 160, 255, 255, 75, 75, 236, 103, 9, 185, 73, 135, 153, + 92, 90, 142, 160, 69, 230, 135, 189, 98, 53, 216, 102, 159, 27, 60, 228, 20, 35, 136, 94, 172, 126, 128, 255, 66, + 238, 212, 216, 102, 159, 27, 94, 48, 66, 44, 62, 75, 9, 133, 159, 73, 104, 197, 182, 104, 37, 132, 231, 186, 69, + 27, 25, 12, 42, 52, 112, 201, 141, 9, 69, 76, 246, 220, 181, 212, 27, 103, 196, 108, 143, 88, 175, 229, 171, 27, + 125, 48, 183, 143, 245, 54, 6, 17, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2449, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6348256999826540705" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10436707608359252788" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f706b72" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b58198a1b598c48a141821b90d6a24614deb334bf4207f3448f706b72ffff", + "cborBytes": [ + 191, 27, 88, 25, 138, 27, 89, 140, 72, 161, 65, 130, 27, 144, 214, 162, 70, 20, 222, 179, 52, 191, 66, 7, 243, 68, + 143, 112, 107, 114, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2450, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a2ca1a2a98383" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13353688472534624549" + } + } + } + ] + }, + "cborHex": "bf473a2ca1a2a983831bb951d4ea36a7a925ff", + "cborBytes": [191, 71, 58, 44, 161, 162, 169, 131, 131, 27, 185, 81, 212, 234, 54, 167, 169, 37, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2451, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1200" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + } + ] + }, + "cborHex": "bf4212001bffffffffffffffebff", + "cborBytes": [191, 66, 18, 0, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2452, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "014704" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3198029600503293335" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b03768db57e4be15" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c602006ef8650415" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551606" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07c401a7" + } + ] + } + } + ] + }, + "cborHex": "bf430147041bfffffffffffffffb411a9f1b2c61aefa4f2ee59748b03768db57e4be15ff48c602006ef8650415d8669f1bfffffffffffffff69f4407c401a7ffffff", + "cborBytes": [ + 191, 67, 1, 71, 4, 27, 255, 255, 255, 255, 255, 255, 255, 251, 65, 26, 159, 27, 44, 97, 174, 250, 79, 46, 229, + 151, 72, 176, 55, 104, 219, 87, 228, 190, 21, 255, 72, 198, 2, 0, 110, 248, 101, 4, 21, 216, 102, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 246, 159, 68, 7, 196, 1, 167, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2453, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6857827729849832989" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a6" + }, + { + "_tag": "ByteArray", + "bytearray": "4cb0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18067988249382596832" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5775564515680760807" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5692839903442556044" + } + } + ] + } + } + ] + }, + "cborHex": "bf08d8669f1b5f2be5fc6885d61d9f41a6424cb01bfabe6395a261b0e01b5026ed53a680b3e71b4f0107baefdcd48cffffff", + "cborBytes": [ + 191, 8, 216, 102, 159, 27, 95, 43, 229, 252, 104, 133, 214, 29, 159, 65, 166, 66, 76, 176, 27, 250, 190, 99, 149, + 162, 97, 176, 224, 27, 80, 38, 237, 83, 166, 128, 179, 231, 27, 79, 1, 7, 186, 239, 220, 212, 140, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2454, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2146" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5503594919534148261" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8948318663337606739" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17481215844324610004" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10744710356867130595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7bf11fcccc81f8a54de" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10978146303820084020" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18036518636499763032" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11049452225366347678" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17228544331791399855" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15428153854265636215" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "523b9bd0bf52e8" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bd1b8b4ce86" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ba3de04455db" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10774826565140101705" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1505351180287842946" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1add15097" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15136244573719991772" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d096adce7cce2a4d866466" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f24e9639" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9743756911750678386" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12506668452754659752" + } + }, + { + "_tag": "ByteArray", + "bytearray": "59a2fcc821" + }, + { + "_tag": "ByteArray", + "bytearray": "59" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3f4b194a471" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10369413226613387726" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f6fa6c545d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9841494658837019857" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7575417617897265782" + } + } + ] + } + } + ] + }, + "cborHex": "bf422146bf1b4c60b26b867a3aa541921b7c2ed06a013c7e531bf299c130e2e60fd41b951ce1244386a4e34ad7bf11fcccc81f8a54de1b985a35e60b76b3341bfa4e96236947ff581b99578a41a79c4f9e1bef1815c9fd7efbaf1bd61bd0304793b57747523b9bd0bf52e8ff464bd1b8b4ce869f46ba3de04455db1b9587dfac6b9e3a4941fb1b14e414ec3b459a82ff45a1add15097d8669f1bd20ebe3e9a0395dc80ff4bd096adce7cce2a4d8664669f44f24e96391b8738c7495ea807721bad909cb1d20699a84559a2fcc8214159ff46e3f4b194a471d8669f1b8fe78e63dd8731ce9f45f6fa6c545d1b8894033feee27cd11b69214a2fec009a76ffffff", + "cborBytes": [ + 191, 66, 33, 70, 191, 27, 76, 96, 178, 107, 134, 122, 58, 165, 65, 146, 27, 124, 46, 208, 106, 1, 60, 126, 83, 27, + 242, 153, 193, 48, 226, 230, 15, 212, 27, 149, 28, 225, 36, 67, 134, 164, 227, 74, 215, 191, 17, 252, 204, 200, + 31, 138, 84, 222, 27, 152, 90, 53, 230, 11, 118, 179, 52, 27, 250, 78, 150, 35, 105, 71, 255, 88, 27, 153, 87, + 138, 65, 167, 156, 79, 158, 27, 239, 24, 21, 201, 253, 126, 251, 175, 27, 214, 27, 208, 48, 71, 147, 181, 119, 71, + 82, 59, 155, 208, 191, 82, 232, 255, 70, 75, 209, 184, 180, 206, 134, 159, 70, 186, 61, 224, 68, 85, 219, 27, 149, + 135, 223, 172, 107, 158, 58, 73, 65, 251, 27, 20, 228, 20, 236, 59, 69, 154, 130, 255, 69, 161, 173, 209, 80, 151, + 216, 102, 159, 27, 210, 14, 190, 62, 154, 3, 149, 220, 128, 255, 75, 208, 150, 173, 206, 124, 206, 42, 77, 134, + 100, 102, 159, 68, 242, 78, 150, 57, 27, 135, 56, 199, 73, 94, 168, 7, 114, 27, 173, 144, 156, 177, 210, 6, 153, + 168, 69, 89, 162, 252, 200, 33, 65, 89, 255, 70, 227, 244, 177, 148, 164, 113, 216, 102, 159, 27, 143, 231, 142, + 99, 221, 135, 49, 206, 159, 69, 246, 250, 108, 84, 93, 27, 136, 148, 3, 63, 238, 226, 124, 209, 27, 105, 33, 74, + 47, 236, 0, 154, 118, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2455, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9487570417672815736" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78192cb0d7f7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14287212862948687028" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10809033263073991546" + } + } + } + ] + }, + "cborHex": "bf1b83aa9f070ee484784678192cb0d7f71bc6466066e672bcb41b9601667beae81b7aff", + "cborBytes": [ + 191, 27, 131, 170, 159, 7, 14, 228, 132, 120, 70, 120, 25, 44, 176, 215, 247, 27, 198, 70, 96, 102, 230, 114, 188, + 180, 27, 150, 1, 102, 123, 234, 232, 27, 122, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2456, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "009e9702caab42" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1040601" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc03effe" + } + } + ] + }, + "cborHex": "bf47009e9702caab421444f104060144fc03effeff", + "cborBytes": [191, 71, 0, 158, 151, 2, 202, 171, 66, 20, 68, 241, 4, 6, 1, 68, 252, 3, 239, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2457, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "69" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69cc429c1a39bd9a717e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5368045872205872703" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4615693791f4e656f03e5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15268584945237550773" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9fd0300" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "355274f8d9889c" + }, + { + "_tag": "ByteArray", + "bytearray": "dd38" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11547161219897097675" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17694398168994974431" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6222230488541426456" + } + } + ] + } + } + ] + }, + "cborHex": "bf4169a04a69cc429c1a39bd9a717e1b4a7f214796d53e3f4bf4615693791f4e656f03e51bd3e4e91c7bc2e6b544f9fd0300d8799f47355274f8d9889c42dd381ba03fc1f33421fdcb1bf58f2162c1448adf1b5659cda99c1df318ffff", + "cborBytes": [ + 191, 65, 105, 160, 74, 105, 204, 66, 156, 26, 57, 189, 154, 113, 126, 27, 74, 127, 33, 71, 150, 213, 62, 63, 75, + 244, 97, 86, 147, 121, 31, 78, 101, 111, 3, 229, 27, 211, 228, 233, 28, 123, 194, 230, 181, 68, 249, 253, 3, 0, + 216, 121, 159, 71, 53, 82, 116, 248, 217, 136, 156, 66, 221, 56, 27, 160, 63, 193, 243, 52, 33, 253, 203, 27, 245, + 143, 33, 98, 193, 68, 138, 223, 27, 86, 89, 205, 169, 156, 29, 243, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2458, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0301" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1abc86fbf9f223" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "385612" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "596d05" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01d0058f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + } + } + ] + }, + "cborHex": "bf420301a0471abc86fbf9f2234338561243596d059f4401d0058f06ffff", + "cborBytes": [ + 191, 66, 3, 1, 160, 71, 26, 188, 134, 251, 249, 242, 35, 67, 56, 86, 18, 67, 89, 109, 5, 159, 68, 1, 208, 5, 143, + 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2459, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3205768772260133766" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4ac478cb2f910140bfa4555d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3306927434279208966" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7550270481964513274" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12245241794616699004" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14817945017013677900" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9872133007520131362" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4866220084524040342" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "472102872192208328" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7236653207610255075" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14663388890512526592" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8069200908778299274" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15698827265124252891" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb2ecfbdadf8" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18423961022718221680" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b2c7d2db6a69afb864c4ac478cb2f910140bfa4555d1b2de490fb0a34c8069f1b68c7f300139cb7fa1ba9efd688bce5287c1bcda3ea7bf05eaf4cff1b8900dcaa60a56922d8669f1b4388496270ed40969f1b068d3f0f9a754dc81b646dc1c03a4ce6e34175ffff1bcb7ed28186688d001b6ffb8f795cfd5f8a1bd9dd7038bff2bcdb9f46cb2ecfbdadf8ff1bffaf0eef92c31d7080ff", + "cborBytes": [ + 191, 27, 44, 125, 45, 182, 166, 154, 251, 134, 76, 74, 196, 120, 203, 47, 145, 1, 64, 191, 164, 85, 93, 27, 45, + 228, 144, 251, 10, 52, 200, 6, 159, 27, 104, 199, 243, 0, 19, 156, 183, 250, 27, 169, 239, 214, 136, 188, 229, 40, + 124, 27, 205, 163, 234, 123, 240, 94, 175, 76, 255, 27, 137, 0, 220, 170, 96, 165, 105, 34, 216, 102, 159, 27, 67, + 136, 73, 98, 112, 237, 64, 150, 159, 27, 6, 141, 63, 15, 154, 117, 77, 200, 27, 100, 109, 193, 192, 58, 76, 230, + 227, 65, 117, 255, 255, 27, 203, 126, 210, 129, 134, 104, 141, 0, 27, 111, 251, 143, 121, 92, 253, 95, 138, 27, + 217, 221, 112, 56, 191, 242, 188, 219, 159, 70, 203, 46, 207, 189, 173, 248, 255, 27, 255, 175, 14, 239, 146, 195, + 29, 112, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2460, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09cce67f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "134163597294389607" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5560d4" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5679720c219b42d2f5ba00" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15349227914318122851" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9721252312444453075" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2364544443915426997" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c3e17716086" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "877a114c3f010f354e737c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7657697638902566639" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87a5ff03" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11337239303805523679" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5b96b356b770116d4a26ee42" + }, + { + "_tag": "ByteArray", + "bytearray": "f768b74bf38221810c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8326894436883923697" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15848878310992301557" + } + } + ] + } + } + ] + }, + "cborHex": "bf4409cce67f9f410b1b01dca514b6854967435560d4ff4b5679720c219b42d2f5ba009f1bd5036976e1710f631b86e8d379073240d31b20d08ca4d333dcb5460c3e17716086ff4b877a114c3f010f354e737c1b6a459b6e2c228eef4487a5ff03d8669f1b9d55f7145cecd6df9f4c5b96b356b770116d4a26ee4249f768b74bf38221810c1b738f125f60a482f11bdbf286da5716cdf5ffffff", + "cborBytes": [ + 191, 68, 9, 204, 230, 127, 159, 65, 11, 27, 1, 220, 165, 20, 182, 133, 73, 103, 67, 85, 96, 212, 255, 75, 86, 121, + 114, 12, 33, 155, 66, 210, 245, 186, 0, 159, 27, 213, 3, 105, 118, 225, 113, 15, 99, 27, 134, 232, 211, 121, 7, + 50, 64, 211, 27, 32, 208, 140, 164, 211, 51, 220, 181, 70, 12, 62, 23, 113, 96, 134, 255, 75, 135, 122, 17, 76, + 63, 1, 15, 53, 78, 115, 124, 27, 106, 69, 155, 110, 44, 34, 142, 239, 68, 135, 165, 255, 3, 216, 102, 159, 27, + 157, 85, 247, 20, 92, 236, 214, 223, 159, 76, 91, 150, 179, 86, 183, 112, 17, 109, 74, 38, 238, 66, 73, 247, 104, + 183, 75, 243, 130, 33, 129, 12, 27, 115, 143, 18, 95, 96, 164, 130, 241, 27, 219, 242, 134, 218, 87, 22, 205, 245, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2461, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13042082949332719475" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e81556ebbf84eeeadad791f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f74c81" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9553641610792989044" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17429542565865180201" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bb4fec957ae27d773804245da1bfffffffffffffff64c4e81556ebbf84eeeadad791f43f74c814191d905049f1b84955a6d7ab4f1741bffffffffffffffef101bf1e22c9e33f1cc29ffff", + "cborBytes": [ + 191, 27, 180, 254, 201, 87, 174, 39, 215, 115, 128, 66, 69, 218, 27, 255, 255, 255, 255, 255, 255, 255, 246, 76, + 78, 129, 85, 110, 187, 248, 78, 238, 173, 173, 121, 31, 67, 247, 76, 129, 65, 145, 217, 5, 4, 159, 27, 132, 149, + 90, 109, 122, 180, 241, 116, 27, 255, 255, 255, 255, 255, 255, 255, 239, 16, 27, 241, 226, 44, 158, 51, 241, 204, + 41, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2462, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9fef9200603fcfef35605" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1186026473015911098" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3148609201500715681" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa0401030430438e" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4408748871960424622" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10714740763611810741" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8d0073f4c47dc17fce" + } + ] + } + } + ] + }, + "cborHex": "bf144bd9fef9200603fcfef356051b10759ccb1a52a2babf1b2bb21b62fff9faa1141bfffffffffffffff148fa0401030430438eff1b3d2f05bd911af0ae1bfffffffffffffff01b94b267f4937acbb59f498d0073f4c47dc17fceffff", + "cborBytes": [ + 191, 20, 75, 217, 254, 249, 32, 6, 3, 252, 254, 243, 86, 5, 27, 16, 117, 156, 203, 26, 82, 162, 186, 191, 27, 43, + 178, 27, 98, 255, 249, 250, 161, 20, 27, 255, 255, 255, 255, 255, 255, 255, 241, 72, 250, 4, 1, 3, 4, 48, 67, 142, + 255, 27, 61, 47, 5, 189, 145, 26, 240, 174, 27, 255, 255, 255, 255, 255, 255, 255, 240, 27, 148, 178, 103, 244, + 147, 122, 203, 181, 159, 73, 141, 0, 115, 244, 196, 125, 193, 127, 206, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2463, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0aad8ce5bf28" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18054397494691503006" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aea2c505" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "018a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6193572426939212713" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02383507" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "628c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "246293274d9c8830d10f687f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f94" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3cb5f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5164dc8e458bb4a032" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3b2a824880a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "916acf" + } + } + ] + }, + "cborHex": "bf460aad8ce5bf28d905099f1bfa8e1add78ca1b9eff44aea2c505bf42018a1b55f3fd4eae5da3a9440238350742628c4c246293274d9c8830d10f687f1bfffffffffffffffc424f9443c3cb5f495164dc8e458bb4a03206ff46b3b2a824880a43916acfff", + "cborBytes": [ + 191, 70, 10, 173, 140, 229, 191, 40, 217, 5, 9, 159, 27, 250, 142, 26, 221, 120, 202, 27, 158, 255, 68, 174, 162, + 197, 5, 191, 66, 1, 138, 27, 85, 243, 253, 78, 174, 93, 163, 169, 68, 2, 56, 53, 7, 66, 98, 140, 76, 36, 98, 147, + 39, 77, 156, 136, 48, 209, 15, 104, 127, 27, 255, 255, 255, 255, 255, 255, 255, 252, 66, 79, 148, 67, 195, 203, + 95, 73, 81, 100, 220, 142, 69, 139, 180, 160, 50, 6, 255, 70, 179, 178, 168, 36, 136, 10, 67, 145, 106, 207, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2464, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1bed0ef507b5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2635902937089686799" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40186d975f3e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15366854311922216354" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84801db0b177952fdb67e4c2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17248237250063338932" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f2daf7b930890d74d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9482439022930866876" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8443236515031249988" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11824758644553677645" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13304396651852277722" + } + }, + { + "_tag": "ByteArray", + "bytearray": "14" + }, + { + "_tag": "ByteArray", + "bytearray": "438b1b9e775a026ae5" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6839fcc4a1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8208813476301372455" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "47d2bbebb71a86dfb035ce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "202579022775712137" + } + }, + { + "_tag": "ByteArray", + "bytearray": "38edfed8810fe054696cc1" + }, + { + "_tag": "ByteArray", + "bytearray": "135295" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69bbfbb016d70ea441a4c235" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4451371446216356480" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "449b058b73" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2005269492593110059" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9259097323911924980" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8f38a9934ba4" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da22e0b3e632e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15815282897691778264" + } + } + } + ] + }, + "cborHex": "bf461bed0ef507b5d8669f1b24949bc173a3bd0f80ff4640186d975f3ebf1bd5420894614dada24c84801db0b177952fdb67e4c241cf1bef5e0c64d3af8db4ff494f2daf7b930890d74dd8669f1b8398640d1e18b2bc9f1b752c66e0510b74441ba419fb564359fb4d1bb8a2b643e08d27da411449438b1b9e775a026ae5ffff456839fcc4a1d8669f1b71eb905d5261fc279f4b47d2bbebb71a86dfb035ce1b02cfb48c437df9894b38edfed8810fe054696cc143135295ffff4c69bbfbb016d70ea441a4c235d8669f1b3dc672bef70af2809f45449b058b731b1bd425faa8f0ac2b1b807eebf5948a4cf4468f38a9934ba4ffff47da22e0b3e632e31bdb7b2c00a33a9cd8ff", + "cborBytes": [ + 191, 70, 27, 237, 14, 245, 7, 181, 216, 102, 159, 27, 36, 148, 155, 193, 115, 163, 189, 15, 128, 255, 70, 64, 24, + 109, 151, 95, 62, 191, 27, 213, 66, 8, 148, 97, 77, 173, 162, 76, 132, 128, 29, 176, 177, 119, 149, 47, 219, 103, + 228, 194, 65, 207, 27, 239, 94, 12, 100, 211, 175, 141, 180, 255, 73, 79, 45, 175, 123, 147, 8, 144, 215, 77, 216, + 102, 159, 27, 131, 152, 100, 13, 30, 24, 178, 188, 159, 27, 117, 44, 102, 224, 81, 11, 116, 68, 27, 164, 25, 251, + 86, 67, 89, 251, 77, 27, 184, 162, 182, 67, 224, 141, 39, 218, 65, 20, 73, 67, 139, 27, 158, 119, 90, 2, 106, 229, + 255, 255, 69, 104, 57, 252, 196, 161, 216, 102, 159, 27, 113, 235, 144, 93, 82, 97, 252, 39, 159, 75, 71, 210, + 187, 235, 183, 26, 134, 223, 176, 53, 206, 27, 2, 207, 180, 140, 67, 125, 249, 137, 75, 56, 237, 254, 216, 129, + 15, 224, 84, 105, 108, 193, 67, 19, 82, 149, 255, 255, 76, 105, 187, 251, 176, 22, 215, 14, 164, 65, 164, 194, 53, + 216, 102, 159, 27, 61, 198, 114, 190, 247, 10, 242, 128, 159, 69, 68, 155, 5, 139, 115, 27, 27, 212, 37, 250, 168, + 240, 172, 43, 27, 128, 126, 235, 245, 148, 138, 76, 244, 70, 143, 56, 169, 147, 75, 164, 255, 255, 71, 218, 34, + 224, 179, 230, 50, 227, 27, 219, 123, 44, 0, 163, 58, 156, 216, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2465, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7201755059366861251" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fbfd02daf8439e060407" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "060205073c4e02fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4496e354dd67" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e406a01529620d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9f805ed76fa01" + } + } + ] + }, + "cborHex": "bf1b63f1c611e8ef19c3d8799f4afbfd02daf8439e060407ff48060205073c4e02fd464496e354dd67488e406a01529620d947f9f805ed76fa01ff", + "cborBytes": [ + 191, 27, 99, 241, 198, 17, 232, 239, 25, 195, 216, 121, 159, 74, 251, 253, 2, 218, 248, 67, 158, 6, 4, 7, 255, 72, + 6, 2, 5, 7, 60, 78, 2, 253, 70, 68, 150, 227, 84, 221, 103, 72, 142, 64, 106, 1, 82, 150, 32, 217, 71, 249, 248, + 5, 237, 118, 250, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2466, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5683142878817268890" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01f7bbc62af1fd0f" + } + } + ] + }, + "cborHex": "bf1b4ede945673b1b49a4801f7bbc62af1fd0fff", + "cborBytes": [191, 27, 78, 222, 148, 86, 115, 177, 180, 154, 72, 1, 247, 187, 198, 42, 241, 253, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2467, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "510c73e5e7a9" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1093905cc3ea3b4236b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "68e38272053f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6120611293792327095" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e41c0c26f7c3d37dfd63" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "718976641638104824" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2542987927953064442" + } + }, + { + "_tag": "ByteArray", + "bytearray": "79384556cc5c881fee" + } + ] + } + } + ] + }, + "cborHex": "bf46510c73e5e7a9804aa1093905cc3ea3b4236b9f4668e38272053f1b54f0c78b16bc55b7ff4ae41c0c26f7c3d37dfd639f1b09fa51723ea47ef81b234a820c11bfc1fa4979384556cc5c881feeffff", + "cborBytes": [ + 191, 70, 81, 12, 115, 229, 231, 169, 128, 74, 161, 9, 57, 5, 204, 62, 163, 180, 35, 107, 159, 70, 104, 227, 130, + 114, 5, 63, 27, 84, 240, 199, 139, 22, 188, 85, 183, 255, 74, 228, 28, 12, 38, 247, 195, 211, 125, 253, 99, 159, + 27, 9, 250, 81, 114, 62, 164, 126, 248, 27, 35, 74, 130, 12, 17, 191, 193, 250, 73, 121, 56, 69, 86, 204, 92, 136, + 31, 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2468, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1303661261240618356" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab4bf7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1918146943123724021" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17096249860976063070" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "116d0ec36f430c0be738" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8114796928850643444" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10363885239316066110" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4653198878426210789" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2987724113094576801" + } + } + } + ] + }, + "cborHex": "bf1b121789028faf4d7443ab4bf71b1a9ea07b63e416f5d8669f1bed4214ab32ccb25e9f4a116d0ec36f430c0be7381b709d8cd01092c9f41b8fd3eab706592f3effff1b40937bb9e9d721e51b297687404fdf0aa1ff", + "cborBytes": [ + 191, 27, 18, 23, 137, 2, 143, 175, 77, 116, 67, 171, 75, 247, 27, 26, 158, 160, 123, 99, 228, 22, 245, 216, 102, + 159, 27, 237, 66, 20, 171, 50, 204, 178, 94, 159, 74, 17, 109, 14, 195, 111, 67, 12, 11, 231, 56, 27, 112, 157, + 140, 208, 16, 146, 201, 244, 27, 143, 211, 234, 183, 6, 89, 47, 62, 255, 255, 27, 64, 147, 123, 185, 233, 215, 33, + 229, 27, 41, 118, 135, 64, 79, 223, 10, 161, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2469, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4773051268255011010" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34e6b444d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13353894303987412100" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9a30340b5f" + }, + { + "_tag": "ByteArray", + "bytearray": "1a2512ea1947bb46" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14868701867726792782" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17601093143028853442" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "86fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14826200308308228901" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb339310eafbc61d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5121372061728113542" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec0460d5b5df26885fb08ead" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14967073509742754582" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41c00addc11c52faadf1ef34" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2118536423366890035" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b423d48d6fb1150c24534e6b444d31bb952901e15482c849f459a30340b5f481a2512ea1947bb461bce583d92290ae84eff1bf443a4f580cc6ac2bf4286fb1bcdc13ea0b97fbb2548bb339310eafbc61d1b4712c4c185ea03864cec0460d5b5df26885fb08ead1bcfb5ba0ee3603b16ff4c41c00addc11c52faadf1ef34d8669f1b1d668da70e82923380ffff", + "cborBytes": [ + 191, 27, 66, 61, 72, 214, 251, 17, 80, 194, 69, 52, 230, 180, 68, 211, 27, 185, 82, 144, 30, 21, 72, 44, 132, 159, + 69, 154, 48, 52, 11, 95, 72, 26, 37, 18, 234, 25, 71, 187, 70, 27, 206, 88, 61, 146, 41, 10, 232, 78, 255, 27, + 244, 67, 164, 245, 128, 204, 106, 194, 191, 66, 134, 251, 27, 205, 193, 62, 160, 185, 127, 187, 37, 72, 187, 51, + 147, 16, 234, 251, 198, 29, 27, 71, 18, 196, 193, 133, 234, 3, 134, 76, 236, 4, 96, 213, 181, 223, 38, 136, 95, + 176, 142, 173, 27, 207, 181, 186, 14, 227, 96, 59, 22, 255, 76, 65, 192, 10, 221, 193, 28, 82, 250, 173, 241, 239, + 52, 216, 102, 159, 27, 29, 102, 141, 167, 14, 130, 146, 51, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2470, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1909505044953733790" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc041af352d102c63d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3340090032541936683" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5605920000275196599" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4552349765751517767" + } + }, + { + "_tag": "ByteArray", + "bytearray": "062d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6145164562969203479" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2450486515776723560" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9071000250736156291" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2805497662445551888" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fcb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4421919350367939129" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "862ee3fa209342a1eb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6973834305907216288" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e477" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14757004942519519519" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11573006430107199213" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17065367537533035625" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6518896027020376362" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8176831827195335995" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4718195109377427554" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b1a7fecb8ad489a9e49cc041af352d102c63d1b2e5a6230237c2c2ba01b4dcc3a89efa92ab79f0b1b3f2d31fe18f3b24742062dff1b5548029c8e191317bf1b2201e080bbc19a681b7de2aaaaf69b9e831b26ef214284418110425fcb1b3d5dd038881b6a3949862ee3fa209342a1eb1b60c8095a2e084fa042e4771bcccb69cf2b8f491f1ba09b940821d9e6ed1becd45d5bf423a4691b5a77c565e241392aff1b7179f1396016153b1b417a6574336d48621bfffffffffffffffca0ff", + "cborBytes": [ + 191, 27, 26, 127, 236, 184, 173, 72, 154, 158, 73, 204, 4, 26, 243, 82, 209, 2, 198, 61, 27, 46, 90, 98, 48, 35, + 124, 44, 43, 160, 27, 77, 204, 58, 137, 239, 169, 42, 183, 159, 11, 27, 63, 45, 49, 254, 24, 243, 178, 71, 66, 6, + 45, 255, 27, 85, 72, 2, 156, 142, 25, 19, 23, 191, 27, 34, 1, 224, 128, 187, 193, 154, 104, 27, 125, 226, 170, + 170, 246, 155, 158, 131, 27, 38, 239, 33, 66, 132, 65, 129, 16, 66, 95, 203, 27, 61, 93, 208, 56, 136, 27, 106, + 57, 73, 134, 46, 227, 250, 32, 147, 66, 161, 235, 27, 96, 200, 9, 90, 46, 8, 79, 160, 66, 228, 119, 27, 204, 203, + 105, 207, 43, 143, 73, 31, 27, 160, 155, 148, 8, 33, 217, 230, 237, 27, 236, 212, 93, 91, 244, 35, 164, 105, 27, + 90, 119, 197, 101, 226, 65, 57, 42, 255, 27, 113, 121, 241, 57, 96, 22, 21, 59, 27, 65, 122, 101, 116, 51, 109, + 72, 98, 27, 255, 255, 255, 255, 255, 255, 255, 252, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2471, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "38c35fcd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0707c168" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8904dd96" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12709043960995983364" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "319846c9321d" + }, + { + "_tag": "ByteArray", + "bytearray": "5207f9bc5f0adc1573fb7746" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10689546648090782354" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b438bdd371dae772178c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10905674817159456568" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a7f35011" + }, + { + "_tag": "ByteArray", + "bytearray": "d5d386368445" + }, + { + "_tag": "ByteArray", + "bytearray": "7583ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13993716094869441045" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8775558375470869929" + } + } + ] + } + } + ] + }, + "cborHex": "bf4438c35fcd440707c168448904dd96d8669f1bb05f9825a9fd30049f46319846c9321d4c5207f9bc5f0adc1573fb77461b9458e60a716b2a92ffff4ab438bdd371dae772178cd8669f1b9758bd7728b667389f44a7f3501146d5d386368445437583ca1bc233aaa57a5c0a151b79c90bd8fba52da9ffffff", + "cborBytes": [ + 191, 68, 56, 195, 95, 205, 68, 7, 7, 193, 104, 68, 137, 4, 221, 150, 216, 102, 159, 27, 176, 95, 152, 37, 169, + 253, 48, 4, 159, 70, 49, 152, 70, 201, 50, 29, 76, 82, 7, 249, 188, 95, 10, 220, 21, 115, 251, 119, 70, 27, 148, + 88, 230, 10, 113, 107, 42, 146, 255, 255, 74, 180, 56, 189, 211, 113, 218, 231, 114, 23, 140, 216, 102, 159, 27, + 151, 88, 189, 119, 40, 182, 103, 56, 159, 68, 167, 243, 80, 17, 70, 213, 211, 134, 54, 132, 69, 67, 117, 131, 202, + 27, 194, 51, 170, 165, 122, 92, 10, 21, 27, 121, 201, 11, 216, 251, 165, 45, 169, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2472, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2786623393279818111" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12852018490408795652" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4409614771150883430" + } + }, + { + "_tag": "ByteArray", + "bytearray": "15762d565a2e0140ba034330" + }, + { + "_tag": "ByteArray", + "bytearray": "50441aafd0a5fba4f2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6430599199598315222" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11602475279039792091" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c924f75edf23" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "807770768aa911" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12488572674255026588" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "794bb661" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13704526946367907677" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8327083945865504715" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4b91d6f6" + } + ] + } + } + ] + }, + "cborHex": "bf1b26ac1336473cb97fd8669f1bb25b8ab95f917e049f1b3d3219456ec38a664c15762d565a2e0140ba0343304950441aafd0a5fba4f21b593e13e6b8f806d6ffff1ba10445cb326b03dbbf46c924f75edf2347807770768aa911ff1bad5052ae109ef99c44794bb6611bbe3042a5e507275d9f1b738fbebae02be7cb444b91d6f6ffff", + "cborBytes": [ + 191, 27, 38, 172, 19, 54, 71, 60, 185, 127, 216, 102, 159, 27, 178, 91, 138, 185, 95, 145, 126, 4, 159, 27, 61, + 50, 25, 69, 110, 195, 138, 102, 76, 21, 118, 45, 86, 90, 46, 1, 64, 186, 3, 67, 48, 73, 80, 68, 26, 175, 208, 165, + 251, 164, 242, 27, 89, 62, 19, 230, 184, 248, 6, 214, 255, 255, 27, 161, 4, 69, 203, 50, 107, 3, 219, 191, 70, + 201, 36, 247, 94, 223, 35, 71, 128, 119, 112, 118, 138, 169, 17, 255, 27, 173, 80, 82, 174, 16, 158, 249, 156, 68, + 121, 75, 182, 97, 27, 190, 48, 66, 165, 229, 7, 39, 93, 159, 27, 115, 143, 190, 186, 224, 43, 231, 203, 68, 75, + 145, 214, 246, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2473, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f01ba06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10178604181051678337" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42d8c374d67548" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47f9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "660197718182994078" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68fce10b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5fc288" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af16fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4923657388836433760" + } + } + } + ] + }, + "cborHex": "bf442f01ba061b8d41aa92f8e41e814742d8c374d67548d90504804247f9d8669f1b09297e53a9d2209e80ff4468fce10b9f435fc288ff43af16fe1b4454584ef952af60ff", + "cborBytes": [ + 191, 68, 47, 1, 186, 6, 27, 141, 65, 170, 146, 248, 228, 30, 129, 71, 66, 216, 195, 116, 214, 117, 72, 217, 5, 4, + 128, 66, 71, 249, 216, 102, 159, 27, 9, 41, 126, 83, 169, 210, 32, 158, 128, 255, 68, 104, 252, 225, 11, 159, 67, + 95, 194, 136, 255, 67, 175, 22, 254, 27, 68, 84, 88, 78, 249, 82, 175, 96, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2474, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a7e5bc7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12e0d2dea1cb99e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "533a9c36cbd608ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5adfda871e49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17337512665499231631" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc152bb73941" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b6565690b14e52487" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4fe780ec8b1e2c1c96ddb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "89ea888187d219418abf4f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7962891691730637153" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef1dd90c9d1a5f9b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4414692009354176904" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f8151defdabc0d0b61506" + } + } + ] + } + } + ] + }, + "cborHex": "bf444a7e5bc7bf4812e0d2dea1cb99e948533a9c36cbd608ae465adfda871e491bf09b37e943eae58f46bc152bb73941497b6565690b14e52487ff4bd4fe780ec8b1e2c1c96ddb9f4b89ea888187d219418abf4f1b6e81dfcdee839161ff48ef1dd90c9d1a5f9bbf1b3d4422fe124fa9884b4f8151defdabc0d0b61506ffff", + "cborBytes": [ + 191, 68, 74, 126, 91, 199, 191, 72, 18, 224, 210, 222, 161, 203, 153, 233, 72, 83, 58, 156, 54, 203, 214, 8, 174, + 70, 90, 223, 218, 135, 30, 73, 27, 240, 155, 55, 233, 67, 234, 229, 143, 70, 188, 21, 43, 183, 57, 65, 73, 123, + 101, 101, 105, 11, 20, 229, 36, 135, 255, 75, 212, 254, 120, 14, 200, 177, 226, 193, 201, 109, 219, 159, 75, 137, + 234, 136, 129, 135, 210, 25, 65, 138, 191, 79, 27, 110, 129, 223, 205, 238, 131, 145, 97, 255, 72, 239, 29, 217, + 12, 157, 26, 95, 155, 191, 27, 61, 68, 34, 254, 18, 79, 169, 136, 75, 79, 129, 81, 222, 253, 171, 192, 208, 182, + 21, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2475, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9920527313278099487" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17423626425101393303" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10813259522966962200" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7371e31355788b" + }, + { + "_tag": "ByteArray", + "bytearray": "db51880db063ad63b68ad3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a58d771b9ca60e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22fad5f0d65f5d7d9528e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56361b94" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b89accb07bc80601fd8669f1bf1cd27eb57471d979f1b96106a3eba8e4018477371e31355788b4bdb51880db063ad63b68ad3ffff47a58d771b9ca60ebf4b22fad5f0d65f5d7d9528e74456361b94ffff", + "cborBytes": [ + 191, 27, 137, 172, 203, 7, 188, 128, 96, 31, 216, 102, 159, 27, 241, 205, 39, 235, 87, 71, 29, 151, 159, 27, 150, + 16, 106, 62, 186, 142, 64, 24, 71, 115, 113, 227, 19, 85, 120, 139, 75, 219, 81, 136, 13, 176, 99, 173, 99, 182, + 138, 211, 255, 255, 71, 165, 141, 119, 27, 156, 166, 14, 191, 75, 34, 250, 213, 240, 214, 95, 93, 125, 149, 40, + 231, 68, 86, 54, 27, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2476, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16303864371340340859" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8396fb8202e554f961e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af0afb8df4fe51afd3da19" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94c72b512647bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2609614658471870741" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16410999460173279869" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7494673479548744180" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18323259779964819910" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7373797031918308355" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16450315007981951913" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d97adeff1e" + }, + { + "_tag": "ByteArray", + "bytearray": "c2880f38b0b80cf7" + } + ] + } + } + ] + }, + "cborHex": "bf41071be242f6439fe36e7b4a8396fb8202e554f961e34baf0afb8df4fe51afd3da194794c72b512647bf1bfffffffffffffffb41b2bf1b243736b49ede4115011be3bf950f50c1727d1b68026dd2380b31f41bfe494bb0680159c61b6654fd551d520c031bfffffffffffffff21be44b42579e0a9ba9ff41b6d8799f45d97adeff1e48c2880f38b0b80cf7ffff", + "cborBytes": [ + 191, 65, 7, 27, 226, 66, 246, 67, 159, 227, 110, 123, 74, 131, 150, 251, 130, 2, 229, 84, 249, 97, 227, 75, 175, + 10, 251, 141, 244, 254, 81, 175, 211, 218, 25, 71, 148, 199, 43, 81, 38, 71, 191, 27, 255, 255, 255, 255, 255, + 255, 255, 251, 65, 178, 191, 27, 36, 55, 54, 180, 158, 222, 65, 21, 1, 27, 227, 191, 149, 15, 80, 193, 114, 125, + 27, 104, 2, 109, 210, 56, 11, 49, 244, 27, 254, 73, 75, 176, 104, 1, 89, 198, 27, 102, 84, 253, 85, 29, 82, 12, 3, + 27, 255, 255, 255, 255, 255, 255, 255, 242, 27, 228, 75, 66, 87, 158, 10, 155, 169, 255, 65, 182, 216, 121, 159, + 69, 217, 122, 222, 255, 30, 72, 194, 136, 15, 56, 176, 184, 12, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2477, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3079896447185707169" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14931916966186355381" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bb03497503d75" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18144989080129864774" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7794787530923534188" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf41d8bf1b2abdfd802f7de0a141db1bcf38d35e392a8ab5478bb03497503d751bfbcff36e9e7b84461b6c2ca5f5f857676cffff", + "cborBytes": [ + 191, 65, 216, 191, 27, 42, 189, 253, 128, 47, 125, 224, 161, 65, 219, 27, 207, 56, 211, 94, 57, 42, 138, 181, 71, + 139, 176, 52, 151, 80, 61, 117, 27, 251, 207, 243, 110, 158, 123, 132, 70, 27, 108, 44, 165, 245, 248, 87, 103, + 108, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2478, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "008be8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "beb8248e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "095690586552" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f7f33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "836106120d7f7a89fd1dca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5018330d8c0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11793744456790587380" + } + }, + { + "_tag": "ByteArray", + "bytearray": "de963a9c926cb41b80" + }, + { + "_tag": "ByteArray", + "bytearray": "8e1f023d" + }, + { + "_tag": "ByteArray", + "bytearray": "c353d270c883fb044c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5d31fa0d51b19ab7a57de" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17617881033824922424" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14027486695213939653" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05878ea6b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12933377031012661482" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4843314786063896994" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca6e942b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3924798281582813177" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "162f7d0aa60215" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14041933072895357215" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7530077745254793821" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "522d3f25497a845b8a0b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3ce9466d3f93ed83a52f523" + } + } + ] + } + } + ] + }, + "cborHex": "bf43008be844beb8248e46095690586552a0433f7f334b836106120d7f7a89fd1dca46a5018330d8c09f1ba3abcc18f6bc37f449de963a9c926cb41b80448e1f023d49c353d270c883fb044cff4bb5d31fa0d51b19ab7a57ded8669f1bf47f4974ec39eb389f1bc2aba4d417bebbc54505878ea6b71bb37c95e2bfb4b8ea1b4336e9230ebc51a2ffff44ca6e942bbf1b3677af3e1cce9ff947162f7d0aa602151bc2def7bb81bcb11f1b688035d030fc825d4a522d3f25497a845b8a0b4cf3ce9466d3f93ed83a52f523ffff", + "cborBytes": [ + 191, 67, 0, 139, 232, 68, 190, 184, 36, 142, 70, 9, 86, 144, 88, 101, 82, 160, 67, 63, 127, 51, 75, 131, 97, 6, + 18, 13, 127, 122, 137, 253, 29, 202, 70, 165, 1, 131, 48, 216, 192, 159, 27, 163, 171, 204, 24, 246, 188, 55, 244, + 73, 222, 150, 58, 156, 146, 108, 180, 27, 128, 68, 142, 31, 2, 61, 73, 195, 83, 210, 112, 200, 131, 251, 4, 76, + 255, 75, 181, 211, 31, 160, 213, 27, 25, 171, 122, 87, 222, 216, 102, 159, 27, 244, 127, 73, 116, 236, 57, 235, + 56, 159, 27, 194, 171, 164, 212, 23, 190, 187, 197, 69, 5, 135, 142, 166, 183, 27, 179, 124, 149, 226, 191, 180, + 184, 234, 27, 67, 54, 233, 35, 14, 188, 81, 162, 255, 255, 68, 202, 110, 148, 43, 191, 27, 54, 119, 175, 62, 28, + 206, 159, 249, 71, 22, 47, 125, 10, 166, 2, 21, 27, 194, 222, 247, 187, 129, 188, 177, 31, 27, 104, 128, 53, 208, + 48, 252, 130, 93, 74, 82, 45, 63, 37, 73, 122, 132, 91, 138, 11, 76, 243, 206, 148, 102, 211, 249, 62, 216, 58, + 82, 245, 35, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2479, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9783b47a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "651c025ba8a16cfb" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6f9a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15212435069214682818" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f84493445d81473241" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4101bf45b9783b47a61bfffffffffffffffcff48651c025ba8a16cfbbf43c6f9a61bd31d6d18b53c6ec242d9f841c049f84493445d8147324108ffff", + "cborBytes": [ + 191, 65, 1, 191, 69, 185, 120, 59, 71, 166, 27, 255, 255, 255, 255, 255, 255, 255, 252, 255, 72, 101, 28, 2, 91, + 168, 161, 108, 251, 191, 67, 198, 249, 166, 27, 211, 29, 109, 24, 181, 60, 110, 194, 66, 217, 248, 65, 192, 73, + 248, 68, 147, 68, 93, 129, 71, 50, 65, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2480, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "762155322392171396" + } + }, + { + "_tag": "ByteArray", + "bytearray": "83be36157ba9e66c" + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffef9f1b0a93b83a46dbd3844883be36157ba9e66cffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 27, 10, 147, 184, 58, 70, 219, 211, 132, 72, 131, 190, 54, + 21, 123, 169, 230, 108, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2481, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10298542108020752044" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0670cda01d" + }, + { + "_tag": "ByteArray", + "bytearray": "377fa74968c2480560" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17936592419909918888" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97c03453912343d7e267b4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15ffebf9b409a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a648097a1e21ccbaaed97" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b62c79f2bb2ae97d9d5afd" + } + } + ] + }, + "cborHex": "bf1b8eebc57bb4fabeac9f450670cda01d49377fa74968c2480560ff1bf8eb93c615b1e0a84b97c03453912343d7e267b441064715ffebf9b409a24b8a648097a1e21ccbaaed974bb62c79f2bb2ae97d9d5afdff", + "cborBytes": [ + 191, 27, 142, 235, 197, 123, 180, 250, 190, 172, 159, 69, 6, 112, 205, 160, 29, 73, 55, 127, 167, 73, 104, 194, + 72, 5, 96, 255, 27, 248, 235, 147, 198, 21, 177, 224, 168, 75, 151, 192, 52, 83, 145, 35, 67, 215, 226, 103, 180, + 65, 6, 71, 21, 255, 235, 249, 180, 9, 162, 75, 138, 100, 128, 151, 161, 226, 28, 203, 170, 237, 151, 75, 182, 44, + 121, 242, 187, 42, 233, 125, 157, 90, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2482, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "629321338212684770" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1056776886226443947" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3ce3a41f24785162fa5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7009982553314472413" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa5514bd1a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14705609821758459299" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11520768702488736577" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18332451998627856419" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d37c2f77e5dad" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5880688772194262476" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "143ef7886c4ff412c3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9490258457778764723" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6098684174171105116" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11397905515511824654" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14c4ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15846995170123548929" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b6856d93c872c795a010fa1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5981628770697630419" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b08bbcc6c3dbd93e2bf1b0eaa6cfa9e5edeab4ad3ce3a41f24785162fa51b614875fde3feb1dd45fa5514bd1a1bcc14d2381f688da31b9fe1fe18634773411bfe69f3f6981d0023473d37c2f77e5dadff1b519c6747f5445dcc49143ef7886c4ff412c31b83b42bc92a8cbbb31b54a2e0f1b6c3e75c1b9e2d7ead7b8c410ebf4314c4ba1bdbebd625708b89014c5b6856d93c872c795a010fa11b530303acc7b052d3ffff", + "cborBytes": [ + 191, 27, 8, 187, 204, 108, 61, 189, 147, 226, 191, 27, 14, 170, 108, 250, 158, 94, 222, 171, 74, 211, 206, 58, 65, + 242, 71, 133, 22, 47, 165, 27, 97, 72, 117, 253, 227, 254, 177, 221, 69, 250, 85, 20, 189, 26, 27, 204, 20, 210, + 56, 31, 104, 141, 163, 27, 159, 225, 254, 24, 99, 71, 115, 65, 27, 254, 105, 243, 246, 152, 29, 0, 35, 71, 61, 55, + 194, 247, 126, 93, 173, 255, 27, 81, 156, 103, 71, 245, 68, 93, 204, 73, 20, 62, 247, 136, 108, 79, 244, 18, 195, + 27, 131, 180, 43, 201, 42, 140, 187, 179, 27, 84, 162, 224, 241, 182, 195, 231, 92, 27, 158, 45, 126, 173, 123, + 140, 65, 14, 191, 67, 20, 196, 186, 27, 219, 235, 214, 37, 112, 139, 137, 1, 76, 91, 104, 86, 217, 60, 135, 44, + 121, 90, 1, 15, 161, 27, 83, 3, 3, 172, 199, 176, 82, 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2483, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7572030202265675900" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9018916299775952425" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b69154159c293287cd8669f1b7d29a097232046299f0cffffff", + "cborBytes": [ + 191, 27, 105, 21, 65, 89, 194, 147, 40, 124, 216, 102, 159, 27, 125, 41, 160, 151, 35, 32, 70, 41, 159, 12, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2484, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0024a206" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2fbb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9804814697171260365" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16155412529563749646" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8423337206008563787" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "ByteArray", + "bytearray": "950b707df806" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e700fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10030907032551461826" + } + } + } + ] + }, + "cborHex": "bf440024a2061bfffffffffffffff04204fc4105422fbbd8669f1b8811b304d96c13cd9f1be0338e19c08acd0e1bfffffffffffffff81b74e5b48f6378c84b1146950b707df806ffff43e700fc1b8b34f0ccd23293c2ff", + "cborBytes": [ + 191, 68, 0, 36, 162, 6, 27, 255, 255, 255, 255, 255, 255, 255, 240, 66, 4, 252, 65, 5, 66, 47, 187, 216, 102, 159, + 27, 136, 17, 179, 4, 217, 108, 19, 205, 159, 27, 224, 51, 142, 25, 192, 138, 205, 14, 27, 255, 255, 255, 255, 255, + 255, 255, 248, 27, 116, 229, 180, 143, 99, 120, 200, 75, 17, 70, 149, 11, 112, 125, 248, 6, 255, 255, 67, 231, 0, + 252, 27, 139, 52, 240, 204, 210, 50, 147, 194, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2485, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "502036150195420857" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18159716535713857449" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d2e5ccf879004aa4d1f74159" + }, + { + "_tag": "ByteArray", + "bytearray": "2847c5fa25f00b6d19f266" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10950874213739476627" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6893523998076528690" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6391598448221767417" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7576070478483431194" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "258d4147a6f910da7e" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12149007368433303101" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "655793511861540049" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12996241114673107853" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6037701940199353937" + } + } + } + ] + }, + "cborHex": "bf1b06f79737fccd7eb9d8669f1bfc0445f99502ffa99f4cd2e5ccf879004aa4d1f741594b2847c5fa25f00b6d19f2661b97f95213c1ed36931b5faab78d83fb68321b58b384ecad3246f9ffff1b69239bf5df541f1a9f49258d4147a6f910da7eff1ba899f1d55911fe3d1b0919d8b9788354d11bb45bec6fcf6ad38d1b53ca39eced44ee51ff", + "cborBytes": [ + 191, 27, 6, 247, 151, 55, 252, 205, 126, 185, 216, 102, 159, 27, 252, 4, 69, 249, 149, 2, 255, 169, 159, 76, 210, + 229, 204, 248, 121, 0, 74, 164, 209, 247, 65, 89, 75, 40, 71, 197, 250, 37, 240, 11, 109, 25, 242, 102, 27, 151, + 249, 82, 19, 193, 237, 54, 147, 27, 95, 170, 183, 141, 131, 251, 104, 50, 27, 88, 179, 132, 236, 173, 50, 70, 249, + 255, 255, 27, 105, 35, 155, 245, 223, 84, 31, 26, 159, 73, 37, 141, 65, 71, 166, 249, 16, 218, 126, 255, 27, 168, + 153, 241, 213, 89, 17, 254, 61, 27, 9, 25, 216, 185, 120, 131, 84, 209, 27, 180, 91, 236, 111, 207, 106, 211, 141, + 27, 83, 202, 57, 236, 237, 68, 238, 81, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2486, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3183418189349684091" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "46bc63c9b81baa90e4b827" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12495550689960052832" + } + }, + { + "_tag": "ByteArray", + "bytearray": "37793302a5f829307268a5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "842765359461477380" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5488911913558675749" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2c2dc5fa0bb4837bd87e9f4b46bc63c9b81baa90e4b8271bad691d25f3f4c8604b37793302a5f829307268a51b0bb21aa117b4ac041b4c2c884dcb131125ffff", + "cborBytes": [ + 191, 27, 44, 45, 197, 250, 11, 180, 131, 123, 216, 126, 159, 75, 70, 188, 99, 201, 184, 27, 170, 144, 228, 184, + 39, 27, 173, 105, 29, 37, 243, 244, 200, 96, 75, 55, 121, 51, 2, 165, 248, 41, 48, 114, 104, 165, 27, 11, 178, 26, + 161, 23, 180, 172, 4, 27, 76, 44, 136, 77, 203, 19, 17, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2487, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5316300681038810802" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4934026033748548051" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1605264227047079836" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72aed2c590fa7bfba5a62321" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + ] + } + } + ] + }, + "cborHex": "bf07d9050a9f1b49c74b4d6c7c4eb2ff1b44792e893e1c99d31b16470b4f37c87f9c4c72aed2c590fa7bfba5a62321d905019f1bffffffffffffffecffff", + "cborBytes": [ + 191, 7, 217, 5, 10, 159, 27, 73, 199, 75, 77, 108, 124, 78, 178, 255, 27, 68, 121, 46, 137, 62, 28, 153, 211, 27, + 22, 71, 11, 79, 55, 200, 127, 156, 76, 114, 174, 210, 197, 144, 250, 123, 251, 165, 166, 35, 33, 217, 5, 1, 159, + 27, 255, 255, 255, 255, 255, 255, 255, 236, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2488, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23bd4e3c9b77df" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "08b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "847f5ac947093a3d1d2875b4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5191bfd30182" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2699" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d7dcd905f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3002586215258326449" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9dfc82e463a214525" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb7127e2c1538a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1957312365112947422" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5abcd40cc3ae9cfdbd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1791594242628639300" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02c78e50bd3d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13989028533794962265" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2938825031237553727" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14888932594356849913" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c84cb93eee760d6d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15520017335684615014" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6470220939370960776" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17717122687213226075" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17149781651372808689" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1d0f6e9223854de3a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9357336635388763972" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13717458629560323468" + } + } + ] + } + } + ] + }, + "cborHex": "bf4723bd4e3c9b77dfbf4208b84c847f5ac947093a3d1d2875b4465191bfd30182422699458d7dcd905f1b29ab54411ff505b149e9dfc82e463a21452541c347fb7127e2c1538a1b1b29c539cd0972deff495abcd40cc3ae9cfdbdbf1b18dd0578ad83da444602c78e50bd3d1bc22303559da6fb591b28c8cdcb9bf0ce3f1bcea01d4f43600cf948c84cb93eee760d6d1bd7622d89c962cb661b59cad7a9e58017881bf5dfdd36f55bc85b1bee00438c699699f1ff49e1d0f6e9223854de3a9f1b81dbf017b4189f441bbe5e33f2040f4d8cffff", + "cborBytes": [ + 191, 71, 35, 189, 78, 60, 155, 119, 223, 191, 66, 8, 184, 76, 132, 127, 90, 201, 71, 9, 58, 61, 29, 40, 117, 180, + 70, 81, 145, 191, 211, 1, 130, 66, 38, 153, 69, 141, 125, 205, 144, 95, 27, 41, 171, 84, 65, 31, 245, 5, 177, 73, + 233, 223, 200, 46, 70, 58, 33, 69, 37, 65, 195, 71, 251, 113, 39, 226, 193, 83, 138, 27, 27, 41, 197, 57, 205, 9, + 114, 222, 255, 73, 90, 188, 212, 12, 195, 174, 156, 253, 189, 191, 27, 24, 221, 5, 120, 173, 131, 218, 68, 70, 2, + 199, 142, 80, 189, 61, 27, 194, 35, 3, 85, 157, 166, 251, 89, 27, 40, 200, 205, 203, 155, 240, 206, 63, 27, 206, + 160, 29, 79, 67, 96, 12, 249, 72, 200, 76, 185, 62, 238, 118, 13, 109, 27, 215, 98, 45, 137, 201, 98, 203, 102, + 27, 89, 202, 215, 169, 229, 128, 23, 136, 27, 245, 223, 221, 54, 245, 91, 200, 91, 27, 238, 0, 67, 140, 105, 150, + 153, 241, 255, 73, 225, 208, 246, 233, 34, 56, 84, 222, 58, 159, 27, 129, 219, 240, 23, 180, 24, 159, 68, 27, 190, + 94, 51, 242, 4, 15, 77, 140, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2489, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ed0838b11edb5" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3231596c036f4a070083cc01" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8b5a762d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b999c4b39" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a4cb02314f146b29" + }, + { + "_tag": "ByteArray", + "bytearray": "720fd0e46d937bda" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10510975959492029642" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b887241b3279ea8a2d918bc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c41fc7c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4739598427370203768" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4891" + }, + { + "_tag": "ByteArray", + "bytearray": "8bb34ad424b0cafc150cc007" + }, + { + "_tag": "ByteArray", + "bytearray": "4e999221" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd01" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15505239020091276932" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd1eb2cf78c5645349" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4988342602325290334" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8489946979388958334" + } + } + ] + } + } + ] + }, + "cborHex": "bf471ed0838b11edb5804c3231596c036f4a070083cc019f448b5a762dff453b999c4b399f48a4cb02314f146b2948720fd0e46d937bda1b91de7cf214316ccaff4c6b887241b3279ea8a2d918bc10449c41fc7cd8669f1bffffffffffffffee9f1b41c66fa88166aa784248914c8bb34ad424b0cafc150cc007444e999221ffff42dd01d905099f1bd72dacbd0e10fe8449fd1eb2cf78c56453491b453a272add8bed5e1b75d259cbcc61267effff", + "cborBytes": [ + 191, 71, 30, 208, 131, 139, 17, 237, 181, 128, 76, 50, 49, 89, 108, 3, 111, 74, 7, 0, 131, 204, 1, 159, 68, 139, + 90, 118, 45, 255, 69, 59, 153, 156, 75, 57, 159, 72, 164, 203, 2, 49, 79, 20, 107, 41, 72, 114, 15, 208, 228, 109, + 147, 123, 218, 27, 145, 222, 124, 242, 20, 49, 108, 202, 255, 76, 107, 136, 114, 65, 179, 39, 158, 168, 162, 217, + 24, 188, 16, 68, 156, 65, 252, 124, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 27, 65, 198, + 111, 168, 129, 102, 170, 120, 66, 72, 145, 76, 139, 179, 74, 212, 36, 176, 202, 252, 21, 12, 192, 7, 68, 78, 153, + 146, 33, 255, 255, 66, 221, 1, 217, 5, 9, 159, 27, 215, 45, 172, 189, 14, 16, 254, 132, 73, 253, 30, 178, 207, + 120, 197, 100, 83, 73, 27, 69, 58, 39, 42, 221, 139, 237, 94, 27, 117, 210, 89, 203, 204, 97, 38, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2490, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3205" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "243fa5cabffa56960e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc87b695" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf5f511be5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1422335537455939518" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d823b04600798dd0e42203" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d79aa713" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1ad060ae2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2525649887639497624" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf423205bf49243fa5cabffa56960e44bc87b69545bf5f511be51b13bd26a2ad79bfbe4bd823b04600798dd0e4220344d79aa71345f1ad060ae21b230ce930fbc1eb98ffff", + "cborBytes": [ + 191, 66, 50, 5, 191, 73, 36, 63, 165, 202, 191, 250, 86, 150, 14, 68, 188, 135, 182, 149, 69, 191, 95, 81, 27, + 229, 27, 19, 189, 38, 162, 173, 121, 191, 190, 75, 216, 35, 176, 70, 0, 121, 141, 208, 228, 34, 3, 68, 215, 154, + 167, 19, 69, 241, 173, 6, 10, 226, 27, 35, 12, 233, 48, 251, 193, 235, 152, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2491, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4987200224689627818" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f62a5db7081e9b219bb7fb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8996363760520594301" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12284165525054629622" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4496446918701565814" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12324662697729496712" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4242371804951440884" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0d6efff9c9ba" + }, + { + "_tag": "ByteArray", + "bytearray": "c8c2f2713bf33920f5" + }, + { + "_tag": "ByteArray", + "bytearray": "6aed6987a0c4" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14958295989604976879" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9136667351710407676" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0a64c5e266766ab5c69143" + }, + { + "_tag": "ByteArray", + "bytearray": "485022dc25fc24" + }, + { + "_tag": "ByteArray", + "bytearray": "999b4f86" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17527150614485185114" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14074884428840613755" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b4536182e585fa2aa4bf62a5db7081e9b219bb7fb1b7cd9812ce807037da01baa7a1f75f2fb26f61b3e6696a63c9b47761bab09ff6cbaac9688d8669f1b3adfeeadf7436df49f460d6efff9c9ba49c8c2f2713bf33920f5466aed6987a0c4ffff1bcf968af3398e08efd8669f1b7ecbf68c599b9bfc9f4b0a64c5e266766ab5c6914347485022dc25fc2444999b4f86ffff1bf33cf29efd28b25ad8669f1bc35408d0ebb8b77b80ffff", + "cborBytes": [ + 191, 27, 69, 54, 24, 46, 88, 95, 162, 170, 75, 246, 42, 93, 183, 8, 30, 155, 33, 155, 183, 251, 27, 124, 217, 129, + 44, 232, 7, 3, 125, 160, 27, 170, 122, 31, 117, 242, 251, 38, 246, 27, 62, 102, 150, 166, 60, 155, 71, 118, 27, + 171, 9, 255, 108, 186, 172, 150, 136, 216, 102, 159, 27, 58, 223, 238, 173, 247, 67, 109, 244, 159, 70, 13, 110, + 255, 249, 201, 186, 73, 200, 194, 242, 113, 59, 243, 57, 32, 245, 70, 106, 237, 105, 135, 160, 196, 255, 255, 27, + 207, 150, 138, 243, 57, 142, 8, 239, 216, 102, 159, 27, 126, 203, 246, 140, 89, 155, 155, 252, 159, 75, 10, 100, + 197, 226, 102, 118, 106, 181, 198, 145, 67, 71, 72, 80, 34, 220, 37, 252, 36, 68, 153, 155, 79, 134, 255, 255, 27, + 243, 60, 242, 158, 253, 40, 178, 90, 216, 102, 159, 27, 195, 84, 8, 208, 235, 184, 183, 123, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2492, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05c903036179fbb2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25166a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10465702864594498321" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b40ed78e44589c1a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7169525949915541430" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5e10532c0024a642" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2aa391f26664ff33cf2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6cfcca091b0dc0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd6cd6fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17730739426406758657" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15392847899143528181" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12567599484020320032" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3300520516212814248" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc5073" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5552628240607000700" + } + } + } + ] + }, + "cborHex": "bf4805c903036179fbb20d4325166a9f1b913da54e40f1731148b40ed78e44589c1a1bfffffffffffffffd1b637f45dd9ca92fb6485e10532c0024a642ff41284ac2aa391f26664ff33cf2476cfcca091b0dc0d9050a9f44fd6cd6fd1bf6103d911bfcf9011bd59e619c06115ef51bae6915250c69e7201b2dcdcdec2ec0f1a8ff41e70943fc50731b4d0ee5f73b2eb87cff", + "cborBytes": [ + 191, 72, 5, 201, 3, 3, 97, 121, 251, 178, 13, 67, 37, 22, 106, 159, 27, 145, 61, 165, 78, 64, 241, 115, 17, 72, + 180, 14, 215, 142, 68, 88, 156, 26, 27, 255, 255, 255, 255, 255, 255, 255, 253, 27, 99, 127, 69, 221, 156, 169, + 47, 182, 72, 94, 16, 83, 44, 0, 36, 166, 66, 255, 65, 40, 74, 194, 170, 57, 31, 38, 102, 79, 243, 60, 242, 71, + 108, 252, 202, 9, 27, 13, 192, 217, 5, 10, 159, 68, 253, 108, 214, 253, 27, 246, 16, 61, 145, 27, 252, 249, 1, 27, + 213, 158, 97, 156, 6, 17, 94, 245, 27, 174, 105, 21, 37, 12, 105, 231, 32, 27, 45, 205, 205, 236, 46, 192, 241, + 168, 255, 65, 231, 9, 67, 252, 80, 115, 27, 77, 14, 229, 247, 59, 46, 184, 124, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2493, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1867470539793087903" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5196616359422778974" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5491217162729633904" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "823760483445530532" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1135394619965264133" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9071462257233248326" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6490462386297643512" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "377e41f53558e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17044290397288161189" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b8b3ff3219f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7878522560713550511" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8423404621517110932" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12230107078148874776" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13576339637644538558" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4696845785644780874" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17509307784627880182" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18013066992123939638" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6444356254698553385" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13504650418491141339" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14667868516254755492" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04554c" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b19ea968fc8dfbd9fd8669f1b481e170bc960de5e80ff1b4c34b8ea71073870bf1b0b6e95cb93c65fa41b0fc1bb642aeb51051b7de44edc3bc040461b5a12c127034e21f847377e41f53558e91bec897bcfd2f65fa5466b8b3ff3219f1b6d562286da3b6aafff1b74e5f1dfc8e93e941ba9ba1196f60de2181bbc68d8f84bdbb2be1b412e8c5b6a25cd4a1bf2fd8ea96dba00f6413d1bf9fb44fdf4dc8b36bf1b596ef3deb75fc0291bbb6a280141feacdb1bcb8ebcb3ab802aa44304554cffff", + "cborBytes": [ + 191, 27, 25, 234, 150, 143, 200, 223, 189, 159, 216, 102, 159, 27, 72, 30, 23, 11, 201, 96, 222, 94, 128, 255, 27, + 76, 52, 184, 234, 113, 7, 56, 112, 191, 27, 11, 110, 149, 203, 147, 198, 95, 164, 27, 15, 193, 187, 100, 42, 235, + 81, 5, 27, 125, 228, 78, 220, 59, 192, 64, 70, 27, 90, 18, 193, 39, 3, 78, 33, 248, 71, 55, 126, 65, 245, 53, 88, + 233, 27, 236, 137, 123, 207, 210, 246, 95, 165, 70, 107, 139, 63, 243, 33, 159, 27, 109, 86, 34, 134, 218, 59, + 106, 175, 255, 27, 116, 229, 241, 223, 200, 233, 62, 148, 27, 169, 186, 17, 150, 246, 13, 226, 24, 27, 188, 104, + 216, 248, 75, 219, 178, 190, 27, 65, 46, 140, 91, 106, 37, 205, 74, 27, 242, 253, 142, 169, 109, 186, 0, 246, 65, + 61, 27, 249, 251, 68, 253, 244, 220, 139, 54, 191, 27, 89, 110, 243, 222, 183, 95, 192, 41, 27, 187, 106, 40, 1, + 65, 254, 172, 219, 27, 203, 142, 188, 179, 171, 128, 42, 164, 67, 4, 85, 76, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2494, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5347943361471837635" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12291642316046490338" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e04595b8fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "584c2b34" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2f20f287e7d451fbc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "931d3bc0dd8b16bde268c8b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1af4cab3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6f21ed93ba96f169a21ca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ba0271702" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f94d7804b0c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3765856100297037700" + } + } + } + ] + }, + "cborHex": "bf1b4a37b627136ff5c3a01baa94af90021c5ae245e04595b8fd44584c2b34bf410049f2f20f287e7d451fbc4c931d3bc0dd8b16bde268c8b3441af4cab34be6f21ed93ba96f169a21ca457ba0271702ff46f94d7804b0c41b3443022bbd715784ff", + "cborBytes": [ + 191, 27, 74, 55, 182, 39, 19, 111, 245, 195, 160, 27, 170, 148, 175, 144, 2, 28, 90, 226, 69, 224, 69, 149, 184, + 253, 68, 88, 76, 43, 52, 191, 65, 0, 73, 242, 242, 15, 40, 126, 125, 69, 31, 188, 76, 147, 29, 59, 192, 221, 139, + 22, 189, 226, 104, 200, 179, 68, 26, 244, 202, 179, 75, 230, 242, 30, 217, 59, 169, 111, 22, 154, 33, 202, 69, + 123, 160, 39, 23, 2, 255, 70, 249, 77, 120, 4, 176, 196, 27, 52, 67, 2, 43, 189, 113, 87, 132, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2495, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "49" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7126243193140047500" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16094872465603949925" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16627050456891260792" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c558" + }, + { + "_tag": "ByteArray", + "bytearray": "91f6989dd0bca0134cfa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4817044685682772959" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ec885ef1e0bbde01bb885" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3529470972565386316" + } + } + } + ] + }, + "cborHex": "bf4149d8669f1b62e5806d7e286e8c9f1bdf5c793bb189f5651be6bf264bf17fff7842c5584a91f6989dd0bca0134cfa1b42d9949ead4e0bdfffff4b4ec885ef1e0bbde01bb8851b30fb33264ccff44cff", + "cborBytes": [ + 191, 65, 73, 216, 102, 159, 27, 98, 229, 128, 109, 126, 40, 110, 140, 159, 27, 223, 92, 121, 59, 177, 137, 245, + 101, 27, 230, 191, 38, 75, 241, 127, 255, 120, 66, 197, 88, 74, 145, 246, 152, 157, 208, 188, 160, 19, 76, 250, + 27, 66, 217, 148, 158, 173, 78, 11, 223, 255, 255, 75, 78, 200, 133, 239, 30, 11, 189, 224, 27, 184, 133, 27, 48, + 251, 51, 38, 76, 207, 244, 76, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2496, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2329683779212193106" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14709155409751581756" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b2054b30dd2eead52d90504801bcc216ae9a842243cd9050280ff", + "cborBytes": [ + 191, 27, 32, 84, 179, 13, 210, 238, 173, 82, 217, 5, 4, 128, 27, 204, 33, 106, 233, 168, 66, 36, 60, 217, 5, 2, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2497, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b60deec8eed4fbfd037d6d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5205763171582385187" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2258849439550335358" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + ] + } + } + ] + }, + "cborHex": "bf0e9f144bb60deec8eed4fbfd037d6d1b483e9605f2fa9c231b1f590b98ed7ce97e1bfffffffffffffff1ffff", + "cborBytes": [ + 191, 14, 159, 20, 75, 182, 13, 238, 200, 238, 212, 251, 253, 3, 125, 109, 27, 72, 62, 150, 5, 242, 250, 156, 35, + 27, 31, 89, 11, 152, 237, 124, 233, 126, 27, 255, 255, 255, 255, 255, 255, 255, 241, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2498, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "010507418e29fd0700" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6268676652100092960" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "46060104220c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b4aa422b7" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "650693" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1407254e4936" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b66f4c65b250211fae4d0afa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95ad27d7752f63cc2e08a12a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6179389335555707898" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "979630" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1decb2162a56e952" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d2d4d77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b980c5c49a40f59161ccac1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc1a5526734a733d731250e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14898171656295633388" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7edb464b4c5c93e7173b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20bc05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3351f6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2da647b812a295d16207" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ed5ebce83326ad2f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12978194991549983967" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58fce7dd38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dda2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "503a" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "820648" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07f8c591" + } + } + ] + }, + "cborHex": "bf49010507418e29fd0700bf1b56fed033c43604200d4646060104220c459b4aa422b7ff43650693bf461407254e49364cb66f4c65b250211fae4d0afa4c95ad27d7752f63cc2e08a12a1b55c199dc62a293fa43979630481decb2162a56e952449d2d4d774c7b980c5c49a40f59161ccac14ccc1a5526734a733d731250e21bcec0f030004b51ecff4a7edb464b4c5c93e7173bbf41184320bc05433351f64a2da647b812a295d16207494ed5ebce83326ad2f91bb41bcf9559172cdf4558fce7dd3842dda242e1d042503aff438206484407f8c591ff", + "cborBytes": [ + 191, 73, 1, 5, 7, 65, 142, 41, 253, 7, 0, 191, 27, 86, 254, 208, 51, 196, 54, 4, 32, 13, 70, 70, 6, 1, 4, 34, 12, + 69, 155, 74, 164, 34, 183, 255, 67, 101, 6, 147, 191, 70, 20, 7, 37, 78, 73, 54, 76, 182, 111, 76, 101, 178, 80, + 33, 31, 174, 77, 10, 250, 76, 149, 173, 39, 215, 117, 47, 99, 204, 46, 8, 161, 42, 27, 85, 193, 153, 220, 98, 162, + 147, 250, 67, 151, 150, 48, 72, 29, 236, 178, 22, 42, 86, 233, 82, 68, 157, 45, 77, 119, 76, 123, 152, 12, 92, 73, + 164, 15, 89, 22, 28, 202, 193, 76, 204, 26, 85, 38, 115, 74, 115, 61, 115, 18, 80, 226, 27, 206, 192, 240, 48, 0, + 75, 81, 236, 255, 74, 126, 219, 70, 75, 76, 92, 147, 231, 23, 59, 191, 65, 24, 67, 32, 188, 5, 67, 51, 81, 246, + 74, 45, 166, 71, 184, 18, 162, 149, 209, 98, 7, 73, 78, 213, 235, 206, 131, 50, 106, 210, 249, 27, 180, 27, 207, + 149, 89, 23, 44, 223, 69, 88, 252, 231, 221, 56, 66, 221, 162, 66, 225, 208, 66, 80, 58, 255, 67, 130, 6, 72, 68, + 7, 248, 197, 145, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2499, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17143c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7763210400991295265" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3843749086133923225" + } + }, + { + "_tag": "ByteArray", + "bytearray": "223644412e4ea13fc17e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12010025730922842545" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "208aba" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9186380413290717546" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31b741f36e6b1c0fe4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14852025499262019453" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "437a6f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8814069811010922819" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17287734079792960776" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4486cfd3260ef38b4a1bf" + }, + { + "_tag": "ByteArray", + "bytearray": "4efb" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "571d96641aad6bc8730d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b211a0aa791e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b65c3e652a7fe77889" + }, + { + "_tag": "ByteArray", + "bytearray": "10" + }, + { + "_tag": "ByteArray", + "bytearray": "ad02c365fd93" + }, + { + "_tag": "ByteArray", + "bytearray": "67" + }, + { + "_tag": "ByteArray", + "bytearray": "4d" + } + ] + } + } + ] + }, + "cborHex": "bf4317143cd8669f1b6bbc76ba7bb437219f1b3557bd6dc4bead994a223644412e4ea13fc17e1ba6ac2ec53af509b1ffff43208abad8669f1b7f7c945079cca16a80ff4931b741f36e6b1c0fe41bce1cfe808e8e677d43437a6f9f1b7a51ddcb4ecce9431befea5e8d1d7955084be4486cfd3260ef38b4a1bf424efbff4a571d96641aad6bc8730d41e046b211a0aa791e9f49b65c3e652a7fe77889411046ad02c365fd934167414dffff", + "cborBytes": [ + 191, 67, 23, 20, 60, 216, 102, 159, 27, 107, 188, 118, 186, 123, 180, 55, 33, 159, 27, 53, 87, 189, 109, 196, 190, + 173, 153, 74, 34, 54, 68, 65, 46, 78, 161, 63, 193, 126, 27, 166, 172, 46, 197, 58, 245, 9, 177, 255, 255, 67, 32, + 138, 186, 216, 102, 159, 27, 127, 124, 148, 80, 121, 204, 161, 106, 128, 255, 73, 49, 183, 65, 243, 110, 107, 28, + 15, 228, 27, 206, 28, 254, 128, 142, 142, 103, 125, 67, 67, 122, 111, 159, 27, 122, 81, 221, 203, 78, 204, 233, + 67, 27, 239, 234, 94, 141, 29, 121, 85, 8, 75, 228, 72, 108, 253, 50, 96, 239, 56, 180, 161, 191, 66, 78, 251, + 255, 74, 87, 29, 150, 100, 26, 173, 107, 200, 115, 13, 65, 224, 70, 178, 17, 160, 170, 121, 30, 159, 73, 182, 92, + 62, 101, 42, 127, 231, 120, 137, 65, 16, 70, 173, 2, 195, 101, 253, 147, 65, 103, 65, 77, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2500, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15887398820571617432" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c8a8b9993155cfd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1339425742988160826" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18368053355923879909" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7894732710914760332" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bdc7b610d61219898bf486c8a8b9993155cfd1b1296989dddd2af3aff1bfee86f358743b7e5d8669f1b6d8fb9928ebb1e8c9f0affffff", + "cborBytes": [ + 191, 27, 220, 123, 97, 13, 97, 33, 152, 152, 191, 72, 108, 138, 139, 153, 147, 21, 92, 253, 27, 18, 150, 152, 157, + 221, 210, 175, 58, 255, 27, 254, 232, 111, 53, 135, 67, 183, 229, 216, 102, 159, 27, 109, 143, 185, 146, 142, 187, + 30, 140, 159, 10, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2501, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12146461524429721368" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11995735133206746590" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "901186094489773132" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12066990826466163999" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f007a0c85687138a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4435078582460435898" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17311682169996249870" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12030654104611938853" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5793424349693804252" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11654282782789939694" + } + } + ] + } + } + ] + }, + "cborHex": "bf1ba890e666d9954f189f1ba679698c2a7615de1b0c81a7fa6e95a44c1ba77690391769bd1f48f007a0c85687138a1b3d8c9079027f4dbaff1bf03f73365f170b0ed8669f1ba6f5782ac0fd62259f41d41b506660c04c98fedc1ba1bc5471a42531eeffffff", + "cborBytes": [ + 191, 27, 168, 144, 230, 102, 217, 149, 79, 24, 159, 27, 166, 121, 105, 140, 42, 118, 21, 222, 27, 12, 129, 167, + 250, 110, 149, 164, 76, 27, 167, 118, 144, 57, 23, 105, 189, 31, 72, 240, 7, 160, 200, 86, 135, 19, 138, 27, 61, + 140, 144, 121, 2, 127, 77, 186, 255, 27, 240, 63, 115, 54, 95, 23, 11, 14, 216, 102, 159, 27, 166, 245, 120, 42, + 192, 253, 98, 37, 159, 65, 212, 27, 80, 102, 96, 192, 76, 152, 254, 220, 27, 161, 188, 84, 113, 164, 37, 49, 238, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2502, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9934699616437898447" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4319038644444450693" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17411463652699090052" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5792073506581432827" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7036069200029378885" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3839522423567580984" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17574709708115638077" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "310319e7d9" + } + } + ] + }, + "cborHex": "bf1b89df24aa33fd8ccfd8669f1b3bf04ec38d4bcf859f1bf1a1f1f136c12c841b5061942aa0bcc9fb1b61a523a8a2d169451b3548b94d33e47f38ffff1bf3e5e95d5ed7773d45310319e7d9ff", + "cborBytes": [ + 191, 27, 137, 223, 36, 170, 51, 253, 140, 207, 216, 102, 159, 27, 59, 240, 78, 195, 141, 75, 207, 133, 159, 27, + 241, 161, 241, 241, 54, 193, 44, 132, 27, 80, 97, 148, 42, 160, 188, 201, 251, 27, 97, 165, 35, 168, 162, 209, + 105, 69, 27, 53, 72, 185, 77, 51, 228, 127, 56, 255, 255, 27, 243, 229, 233, 93, 94, 215, 119, 61, 69, 49, 3, 25, + 231, 217, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2503, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2294804560055830485" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "381cb6a183d200eb995d52" + } + } + ] + }, + "cborHex": "bf1b1fd8c896c71307d51141a54b381cb6a183d200eb995d52ff", + "cborBytes": [ + 191, 27, 31, 216, 200, 150, 199, 19, 7, 213, 17, 65, 165, 75, 56, 28, 182, 161, 131, 210, 0, 235, 153, 93, 82, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2504, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "579451883571492692" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b080aa06b04b5b754d8669f1bfffffffffffffff880ffff", + "cborBytes": [ + 191, 27, 8, 10, 160, 107, 4, 181, 183, 84, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2505, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5091911455618278835" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11528026181473744192" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6228187673453071231" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "412325631016759654" + } + }, + { + "_tag": "ByteArray", + "bytearray": "83a1fda5bb" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8135584376098994495" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8486673212399469331" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18002477360089275597" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4633732931998346276" + } + }, + { + "_tag": "ByteArray", + "bytearray": "34aad9b7a811b854c348755c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11792860729108437655" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "179738522133831773" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12547082800563501535" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7427078073223246300" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4019226508098085987" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b46aa1a7da3dea5b39f1b9ffbc6bbe42535401b566ef7b0cea30b7f1b05b8dffa108af1664583a1fda5bbff1b70e766e2c999393f9f1b75c6b85285e4c3131bf9d5a5c71d221ccd1b404e538d13ca6c244c34aad9b7a811b854c348755cff1ba3a8a85a14299a971b027e8f3bcc3da05d1bae2031546f0039dfd8669f1b67124828419071dc9f1b37c72936df052463ffffff", + "cborBytes": [ + 191, 27, 70, 170, 26, 125, 163, 222, 165, 179, 159, 27, 159, 251, 198, 187, 228, 37, 53, 64, 27, 86, 110, 247, + 176, 206, 163, 11, 127, 27, 5, 184, 223, 250, 16, 138, 241, 102, 69, 131, 161, 253, 165, 187, 255, 27, 112, 231, + 102, 226, 201, 153, 57, 63, 159, 27, 117, 198, 184, 82, 133, 228, 195, 19, 27, 249, 213, 165, 199, 29, 34, 28, + 205, 27, 64, 78, 83, 141, 19, 202, 108, 36, 76, 52, 170, 217, 183, 168, 17, 184, 84, 195, 72, 117, 92, 255, 27, + 163, 168, 168, 90, 20, 41, 154, 151, 27, 2, 126, 143, 59, 204, 61, 160, 93, 27, 174, 32, 49, 84, 111, 0, 57, 223, + 216, 102, 159, 27, 103, 18, 72, 40, 65, 144, 113, 220, 159, 27, 55, 199, 41, 54, 223, 5, 36, 99, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2506, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11950178437789847916" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15063140412126770118" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17559711607246170119" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14066454774651822209" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17375491883766999981" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a0c7ab2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9545dede9c0fee6cdc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16940855370730183110" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a201ee9412f043c9d725" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1ba5d78ff972ff116cd8669f1bd10b06659aa5b3c69f1bf3b0a0abe43628071bc33616171c382081ffff1bf12225cf199d6bad445a0c7ab2499545dede9c0fee6cdc1beb1a023403a419c64aa201ee9412f043c9d725a0ff", + "cborBytes": [ + 191, 27, 165, 215, 143, 249, 114, 255, 17, 108, 216, 102, 159, 27, 209, 11, 6, 101, 154, 165, 179, 198, 159, 27, + 243, 176, 160, 171, 228, 54, 40, 7, 27, 195, 54, 22, 23, 28, 56, 32, 129, 255, 255, 27, 241, 34, 37, 207, 25, 157, + 107, 173, 68, 90, 12, 122, 178, 73, 149, 69, 222, 222, 156, 15, 238, 108, 220, 27, 235, 26, 2, 52, 3, 164, 25, + 198, 74, 162, 1, 238, 148, 18, 240, 67, 201, 215, 37, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2507, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33d0c42a1642" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + }, + "cborHex": "bf4633d0c42a164211ff", + "cborBytes": [191, 70, 51, 208, 196, 42, 22, 66, 17, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2508, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1134511192542274539" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2059110914344110999" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10449198816779947960" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4476975312659437098" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15684687371938167302" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40a2b12273c9bea294d3" + } + } + ] + }, + "cborHex": "bf1b0fbe97eb312fe3eb1b1c936e778a9c4b971b910302f62d99cfb81b3e216953ab42562a1bd9ab3410516dfa064a40a2b12273c9bea294d3ff", + "cborBytes": [ + 191, 27, 15, 190, 151, 235, 49, 47, 227, 235, 27, 28, 147, 110, 119, 138, 156, 75, 151, 27, 145, 3, 2, 246, 45, + 153, 207, 184, 27, 62, 33, 105, 83, 171, 66, 86, 42, 27, 217, 171, 52, 16, 81, 109, 250, 6, 74, 64, 162, 177, 34, + 115, 201, 190, 162, 148, 211, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2509, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2577517502101593173" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14261385649068638466" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8002241997340118195" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12497120509700074670" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2636919972145243893" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7149048256762160122" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5046849763774694597" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f" + }, + { + "_tag": "ByteArray", + "bytearray": "8a" + }, + { + "_tag": "ByteArray", + "bytearray": "4deb8537d77cbfa0af39" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14867403086616187607" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d30abd5ddc0cf4cf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16376865112202298745" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f34ee05d936d0f77cec12c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17369025232142572300" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b85b0e927a2ab0b9af4c" + } + } + ] + }, + "cborHex": "bf1b23c52e830b1e1c55d8669f1bc5ea9eb0119701029f1b6f0dacb2ea2b8cb3ffff1bad6eb0e417ebecaed8669f1b249838be60d9a6f59f1b63368583226f23fa1b460a031eec8e04c5415f418a4a4deb8537d77cbfa0af39ffff1bce53a0561e4dd2d748d30abd5ddc0cf4cf1be346500d1b4e4579bf4bf34ee05d936d0f77cec12c4114ff1bf10b2c6c70a79b0c4ab85b0e927a2ab0b9af4cff", + "cborBytes": [ + 191, 27, 35, 197, 46, 131, 11, 30, 28, 85, 216, 102, 159, 27, 197, 234, 158, 176, 17, 151, 1, 2, 159, 27, 111, 13, + 172, 178, 234, 43, 140, 179, 255, 255, 27, 173, 110, 176, 228, 23, 235, 236, 174, 216, 102, 159, 27, 36, 152, 56, + 190, 96, 217, 166, 245, 159, 27, 99, 54, 133, 131, 34, 111, 35, 250, 27, 70, 10, 3, 30, 236, 142, 4, 197, 65, 95, + 65, 138, 74, 77, 235, 133, 55, 215, 124, 191, 160, 175, 57, 255, 255, 27, 206, 83, 160, 86, 30, 77, 210, 215, 72, + 211, 10, 189, 93, 220, 12, 244, 207, 27, 227, 70, 80, 13, 27, 78, 69, 121, 191, 75, 243, 78, 224, 93, 147, 109, + 15, 119, 206, 193, 44, 65, 20, 255, 27, 241, 11, 44, 108, 112, 167, 155, 12, 74, 184, 91, 14, 146, 122, 42, 176, + 185, 175, 76, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2510, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5623fafaca9deace3ad7b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15bd58e40897" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5370b74472c2b910360a42" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "166d3c145173c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17233441198603205766" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2babc8c28832fa91" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "220266d5e8b62efa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "371e145fd94a50100604" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15558407099696088336" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7efb27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d27cd6b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec6e0a17d308ef9d33f074" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1753358339153456010" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6853427593400874211" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff71bffffffffffffffeb4be5623fafaca9deace3ad7bbf4615bd58e408974b5370b74472c2b910360a4247166d3c145173c81bef297b76a4537c86482babc8c28832fa9148220266d5e8b62efa4a371e145fd94a501006041bd7ea90d3404d0510437efb27446d27cd6b4bec6e0a17d308ef9d33f0741b18552e1ea935eb8aff41eed8669f1b5f1c4415ce84f4e380ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 247, 27, 255, 255, 255, 255, 255, 255, 255, 235, 75, 229, 98, 63, 175, + 172, 169, 222, 172, 227, 173, 123, 191, 70, 21, 189, 88, 228, 8, 151, 75, 83, 112, 183, 68, 114, 194, 185, 16, 54, + 10, 66, 71, 22, 109, 60, 20, 81, 115, 200, 27, 239, 41, 123, 118, 164, 83, 124, 134, 72, 43, 171, 200, 194, 136, + 50, 250, 145, 72, 34, 2, 102, 213, 232, 182, 46, 250, 74, 55, 30, 20, 95, 217, 74, 80, 16, 6, 4, 27, 215, 234, + 144, 211, 64, 77, 5, 16, 67, 126, 251, 39, 68, 109, 39, 205, 107, 75, 236, 110, 10, 23, 211, 8, 239, 157, 51, 240, + 116, 27, 24, 85, 46, 30, 169, 53, 235, 138, 255, 65, 238, 216, 102, 159, 27, 95, 28, 68, 21, 206, 132, 244, 227, + 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2511, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12425390481657428670" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4241391974751578854" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df95ab7d0b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5994939565666303008" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5c3737cd8ce94f58c72" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12118531262439821611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0fb01a931080d3e48ff8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12164483862448299949" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10627051507397783022" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15347636908571756855" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e24436b8" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15153317249850977471" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04fafe" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9585911361842883970" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9110780880986394622" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bac6fdacf7eb5fabebf1b3adc73877842aae645df95ab7d0b1b53324dc5bd797c204af5c3737cd8ce94f58c721ba82dabf9f931112b4a0fb01a931080d3e48ff81ba8d0ed9f6933dfad1b937adf0a9c396dee1bd4fdc273fd18093744e24436b8ff1bd24b65c0c62aacbf1bfffffffffffffff44304fafed905039f1b8507ff986306ad821b7e6ffef0b59d4ffeffff", + "cborBytes": [ + 191, 27, 172, 111, 218, 207, 126, 181, 250, 190, 191, 27, 58, 220, 115, 135, 120, 66, 170, 230, 69, 223, 149, 171, + 125, 11, 27, 83, 50, 77, 197, 189, 121, 124, 32, 74, 245, 195, 115, 124, 216, 206, 148, 245, 140, 114, 27, 168, + 45, 171, 249, 249, 49, 17, 43, 74, 15, 176, 26, 147, 16, 128, 211, 228, 143, 248, 27, 168, 208, 237, 159, 105, 51, + 223, 173, 27, 147, 122, 223, 10, 156, 57, 109, 238, 27, 212, 253, 194, 115, 253, 24, 9, 55, 68, 226, 68, 54, 184, + 255, 27, 210, 75, 101, 192, 198, 42, 172, 191, 27, 255, 255, 255, 255, 255, 255, 255, 244, 67, 4, 250, 254, 217, + 5, 3, 159, 27, 133, 7, 255, 152, 99, 6, 173, 130, 27, 126, 111, 254, 240, 181, 157, 79, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2512, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15995072147069736151" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a427ed" + } + ] + } + } + ] + }, + "cborHex": "bf1bddf9e95f4ad614d79f43a427edffff", + "cborBytes": [191, 27, 221, 249, 233, 95, 74, 214, 20, 215, 159, 67, 164, 39, 237, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2513, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "436cf7d7391dc1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fffa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f910a73810a79b03e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f94e1b3c20cd0c63" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9598292599926636074" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa071e431dfd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8372917368427946269" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13897560968907393499" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b29e80858641b700f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9381343770418569639" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6819600077052566161" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11942581139949436803" + } + } + ] + } + } + ] + }, + "cborHex": "bf47436cf7d7391dc142fffa495f910a73810a79b03e0e48f94e1b3c20cd0c63d8669f1b8533fc4404e33e2a9f14ffff46fa071e431dfdd8669f1b743293fc26d8a11d9f1bc0de0e119c0f09db492b29e80858641b700f1b82313a74679f61a71b5ea4162366f1da911ba5bc9245b3f73f83ffffff", + "cborBytes": [ + 191, 71, 67, 108, 247, 215, 57, 29, 193, 66, 255, 250, 73, 95, 145, 10, 115, 129, 10, 121, 176, 62, 14, 72, 249, + 78, 27, 60, 32, 205, 12, 99, 216, 102, 159, 27, 133, 51, 252, 68, 4, 227, 62, 42, 159, 20, 255, 255, 70, 250, 7, + 30, 67, 29, 253, 216, 102, 159, 27, 116, 50, 147, 252, 38, 216, 161, 29, 159, 27, 192, 222, 14, 17, 156, 15, 9, + 219, 73, 43, 41, 232, 8, 88, 100, 27, 112, 15, 27, 130, 49, 58, 116, 103, 159, 97, 167, 27, 94, 164, 22, 35, 102, + 241, 218, 145, 27, 165, 188, 146, 69, 179, 247, 63, 131, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2514, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5523be26f5863a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9c72" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17000833639132288902" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8833855742391640678" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd15" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59ad" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "752121887158112300" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17831598829644941509" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10880010297383240188" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4573233228400146409" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b446f2a4b2796eb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e93a4d900855cc93bf6" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb8e11eb9f9ee33d2b252c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14735378935678748582" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "390abe8ab7e7969c43e53c2b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15661789564553505331" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11239293391632209320" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf475523be26f5863a9f429c721bebef181ed9fdd7861b7a9828fe724c626642fd15ff4259adbf1b0a7012df17db102c1bf77690a8e24208c51b96fd8fb8801ec1fc1b3f77636425cdb7e9ff488b446f2a4b2796eb9f4a8e93a4d900855cc93bf6ff4bcb8e11eb9f9ee33d2b252cbf1bcc7e951213e7c7a64c390abe8ab7e7969c43e53c2b1bd959daa11621aa331b9bf9fdca96a215a8ffff", + "cborBytes": [ + 191, 71, 85, 35, 190, 38, 245, 134, 58, 159, 66, 156, 114, 27, 235, 239, 24, 30, 217, 253, 215, 134, 27, 122, 152, + 40, 254, 114, 76, 98, 102, 66, 253, 21, 255, 66, 89, 173, 191, 27, 10, 112, 18, 223, 23, 219, 16, 44, 27, 247, + 118, 144, 168, 226, 66, 8, 197, 27, 150, 253, 143, 184, 128, 30, 193, 252, 27, 63, 119, 99, 100, 37, 205, 183, + 233, 255, 72, 139, 68, 111, 42, 75, 39, 150, 235, 159, 74, 142, 147, 164, 217, 0, 133, 92, 201, 59, 246, 255, 75, + 203, 142, 17, 235, 159, 158, 227, 61, 43, 37, 44, 191, 27, 204, 126, 149, 18, 19, 231, 199, 166, 76, 57, 10, 190, + 138, 183, 231, 150, 156, 67, 229, 60, 43, 27, 217, 89, 218, 161, 22, 33, 170, 51, 27, 155, 249, 253, 202, 150, + 162, 21, 168, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2515, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1073351459479487482" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3965851895843587518" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2841940404516418263" + } + }, + { + "_tag": "ByteArray", + "bytearray": "34be832b3d4f0d48" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2145588555430976744" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a878ede0aaf604f6302da" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9829415147489213201" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5821948849844358235" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10271573588612907337" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1ad17c44c5e002b18af01bdb" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12851793473121020105" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c717bed05ff03ccbc7a349" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18044131266646215047" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4142051640496902571" + } + } + } + ] + }, + "cborHex": "bf1b0ee54f772d6c03fa413c1b370989498b9105be9f1b277099bd9c07f2d74834be832b3d4f0d481b1dc6a96c609b5ce84b8a878ede0aaf604f6302da1b886918ff87f03b11ff1b50cbb7a207778c5b9f1b8e8bf5c1f98e81494c1ad17c44c5e002b18af01bdbff1bb25abe12740fe8c94bc717bed05ff03ccbc7a3491bfa69a1c8fcf789871b397b8605812451abff", + "cborBytes": [ + 191, 27, 14, 229, 79, 119, 45, 108, 3, 250, 65, 60, 27, 55, 9, 137, 73, 139, 145, 5, 190, 159, 27, 39, 112, 153, + 189, 156, 7, 242, 215, 72, 52, 190, 131, 43, 61, 79, 13, 72, 27, 29, 198, 169, 108, 96, 155, 92, 232, 75, 138, + 135, 142, 222, 10, 175, 96, 79, 99, 2, 218, 27, 136, 105, 24, 255, 135, 240, 59, 17, 255, 27, 80, 203, 183, 162, + 7, 119, 140, 91, 159, 27, 142, 139, 245, 193, 249, 142, 129, 73, 76, 26, 209, 124, 68, 197, 224, 2, 177, 138, 240, + 27, 219, 255, 27, 178, 90, 190, 18, 116, 15, 232, 201, 75, 199, 23, 190, 208, 95, 240, 60, 203, 199, 163, 73, 27, + 250, 105, 161, 200, 252, 247, 137, 135, 27, 57, 123, 134, 5, 129, 36, 81, 171, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2516, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17973335907363213979" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16955454032811871311" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0005" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01f82fb0" + } + } + ] + }, + "cborHex": "bf1bf96e1dc7eb28529b1beb4ddf9be7374c4f4200054401f82fb0ff", + "cborBytes": [ + 191, 27, 249, 110, 29, 199, 235, 40, 82, 155, 27, 235, 77, 223, 155, 231, 55, 76, 79, 66, 0, 5, 68, 1, 248, 47, + 176, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2517, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84e04ad5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0405fa0d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85755034af" + } + } + ] + }, + "cborHex": "bf064484e04ad5440405fa0d4585755034afff", + "cborBytes": [191, 6, 68, 132, 224, 74, 213, 68, 4, 5, 250, 13, 69, 133, 117, 80, 52, 175, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2518, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4919651748100641648" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "85c40962a2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10868475766285625939" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b44461d33102b13709f4585c40962a21b96d4952033656a53ffff", + "cborBytes": [ + 191, 27, 68, 70, 29, 51, 16, 43, 19, 112, 159, 69, 133, 196, 9, 98, 162, 27, 150, 212, 149, 32, 51, 101, 106, 83, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2519, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1633cd63a3f89552bdf3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12890710489974541772" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "230b9bc876d1048b0775" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13682282529424856574" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d7946" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be4864f53fa94f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11775693206079945397" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d551f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11028897908440502360" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16561951216765714872" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8bfa68acb5a3dcf489b0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13077770669658034724" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c94675ffcd64db6e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1266461851946360608" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec01e57f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "99f6ae2e0d1ac94b6c27f2a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13523634269572651702" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a73bb9a7f3a21010d64d5099" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14368892919253977805" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a1633cd63a3f89552bdf31bb2e500e489558dcc4a230b9bc876d1048b07751bbde13b77fae6d5fe434d79469f47be4864f53fa94f1ba36baa94a4603ab5ff435d551f9f1b990e8436d0a510581be5d7dee1f6ab41b84a8bfa68acb5a3dcf489b01bb57d932292fd5224ff48c94675ffcd64db6e9f1b1193605826d89f20ff44ec01e57f9f4c99f6ae2e0d1ac94b6c27f2a61bbbad99b7862d5ab64ca73bb9a7f3a21010d64d50991bc7688ffafbc24acdffff", + "cborBytes": [ + 191, 74, 22, 51, 205, 99, 163, 248, 149, 82, 189, 243, 27, 178, 229, 0, 228, 137, 85, 141, 204, 74, 35, 11, 155, + 200, 118, 209, 4, 139, 7, 117, 27, 189, 225, 59, 119, 250, 230, 213, 254, 67, 77, 121, 70, 159, 71, 190, 72, 100, + 245, 63, 169, 79, 27, 163, 107, 170, 148, 164, 96, 58, 181, 255, 67, 93, 85, 31, 159, 27, 153, 14, 132, 54, 208, + 165, 16, 88, 27, 229, 215, 222, 225, 246, 171, 65, 184, 74, 139, 250, 104, 172, 181, 163, 220, 244, 137, 176, 27, + 181, 125, 147, 34, 146, 253, 82, 36, 255, 72, 201, 70, 117, 255, 205, 100, 219, 110, 159, 27, 17, 147, 96, 88, 38, + 216, 159, 32, 255, 68, 236, 1, 229, 127, 159, 76, 153, 246, 174, 46, 13, 26, 201, 75, 108, 39, 242, 166, 27, 187, + 173, 153, 183, 134, 45, 90, 182, 76, 167, 59, 185, 167, 243, 162, 16, 16, 214, 77, 80, 153, 27, 199, 104, 143, + 250, 251, 194, 74, 205, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2520, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "285020ee09" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a015260814577b8151b36" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40c11da0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9191589200957229350" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f39f31" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15559483936045215496" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9b06f53001a64d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80f15797854407dc5889" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc97d39ae02074b91d5365" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cc95296614fe010c07a" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18167913538117063079" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a25105b3b2a61ff75acf39" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3198662752586472539" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1f682" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3868ad" + } + } + ] + }, + "cborHex": "bf09bf45285020ee094b1a015260814577b8151b364440c11da01b7f8f15addc5f492643f39f311bd7ee6433c05f2f0848f9b06f53001a64d94a80f15797854407dc58894bfc97d39ae02074b91d53654a2cc95296614fe010c07aff1bfffffffffffffff31bfc21651aed7a51a74ba25105b3b2a61ff75acf391b2c63eed384309c5b43b1f682433868adff", + "cborBytes": [ + 191, 9, 191, 69, 40, 80, 32, 238, 9, 75, 26, 1, 82, 96, 129, 69, 119, 184, 21, 27, 54, 68, 64, 193, 29, 160, 27, + 127, 143, 21, 173, 220, 95, 73, 38, 67, 243, 159, 49, 27, 215, 238, 100, 51, 192, 95, 47, 8, 72, 249, 176, 111, + 83, 0, 26, 100, 217, 74, 128, 241, 87, 151, 133, 68, 7, 220, 88, 137, 75, 252, 151, 211, 154, 224, 32, 116, 185, + 29, 83, 101, 74, 44, 201, 82, 150, 97, 79, 224, 16, 192, 122, 255, 27, 255, 255, 255, 255, 255, 255, 255, 243, 27, + 252, 33, 101, 26, 237, 122, 81, 167, 75, 162, 81, 5, 179, 178, 166, 31, 247, 90, 207, 57, 27, 44, 99, 238, 211, + 132, 48, 156, 91, 67, 177, 246, 130, 67, 56, 104, 173, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2521, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17093367975726153029" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aec3ea7048364dc5" + } + ] + } + } + ] + }, + "cborHex": "bf0b9f1bed37d79c0031fd4548aec3ea7048364dc5ffff", + "cborBytes": [ + 191, 11, 159, 27, 237, 55, 215, 156, 0, 49, 253, 69, 72, 174, 195, 234, 112, 72, 54, 77, 197, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2522, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "63f43e8e7bdf230c661275" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15525636093562373277" + } + } + } + ] + }, + "cborHex": "bf4b63f43e8e7bdf230c6612751bd77623c4ccc4c49dff", + "cborBytes": [ + 191, 75, 99, 244, 62, 142, 123, 223, 35, 12, 102, 18, 117, 27, 215, 118, 35, 196, 204, 196, 196, 157, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2523, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5809045459905585470" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "db6f4c9e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9501677077719429727" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2143638286495047689" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9434ae3df3ace0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12207945616203240921" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15028208625123174279" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1df20cde94fba8c76f72136e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "454f5a951f3ed2f55cff8f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac6dfa065f6d1c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3199646419330937449" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b509de01171c4a13e44db6f4c9e1b83dcbcf5cbf0325fbf1b1dbfbbaa0176e009479434ae3df3ace01ba96b55db8314d5d91bd08eec1f26eda7874c1df20cde94fba8c76f72136e4b454f5a951f3ed2f55cff8f47ac6dfa065f6d1c1b2c676d7747123269ffff", + "cborBytes": [ + 191, 27, 80, 157, 224, 17, 113, 196, 161, 62, 68, 219, 111, 76, 158, 27, 131, 220, 188, 245, 203, 240, 50, 95, + 191, 27, 29, 191, 187, 170, 1, 118, 224, 9, 71, 148, 52, 174, 61, 243, 172, 224, 27, 169, 107, 85, 219, 131, 20, + 213, 217, 27, 208, 142, 236, 31, 38, 237, 167, 135, 76, 29, 242, 12, 222, 148, 251, 168, 199, 111, 114, 19, 110, + 75, 69, 79, 90, 149, 31, 62, 210, 245, 92, 255, 143, 71, 172, 109, 250, 6, 95, 109, 28, 27, 44, 103, 109, 119, 71, + 18, 50, 105, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2524, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8197843548356623541" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6470466981994389267" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11236226321299805300" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c82a949f7abc3ac18561" + }, + { + "_tag": "ByteArray", + "bytearray": "b5cee50d" + }, + { + "_tag": "ByteArray", + "bytearray": "11f50d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15334676355570069649" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4257862835041367196" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13999699304354691420" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "305bb64cbe7f4c6d72e5ac" + } + } + ] + }, + "cborHex": "bf1b71c49745f0063cb51b59cbb77028ab5f131b9bef184ea0f814749f4ac82a949f7abc3ac1856144b5cee50d4311f50d1bd4cfb6e61755f0911b3b16f7b078fa749cff1bc248ec57fe58395c4b305bb64cbe7f4c6d72e5acff", + "cborBytes": [ + 191, 27, 113, 196, 151, 69, 240, 6, 60, 181, 27, 89, 203, 183, 112, 40, 171, 95, 19, 27, 155, 239, 24, 78, 160, + 248, 20, 116, 159, 74, 200, 42, 148, 159, 122, 188, 58, 193, 133, 97, 68, 181, 206, 229, 13, 67, 17, 245, 13, 27, + 212, 207, 182, 230, 23, 85, 240, 145, 27, 59, 22, 247, 176, 120, 250, 116, 156, 255, 27, 194, 72, 236, 87, 254, + 88, 57, 92, 75, 48, 91, 182, 76, 190, 127, 76, 109, 114, 229, 172, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2525, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13423a1d0a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "322225629043762168" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58e219699269471f0fa9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bfff8ab200c1fae463f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e7688bfaec191b3ec07" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13743195402966837080" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "792341ba" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2257612341468612571" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8226845476604682422" + } + } + ] + } + } + ] + }, + "cborHex": "bf4513423a1d0a1b0478c6809cae23f84a58e219699269471f0fa94a3bfff8ab200c1fae463f4a8e7688bfaec191b3ec07d8669f1bbeb9a367889ea7589f44792341ba1b1f54a67695c647db41b11b722ba05f8f0d20b6ffffff", + "cborBytes": [ + 191, 69, 19, 66, 58, 29, 10, 27, 4, 120, 198, 128, 156, 174, 35, 248, 74, 88, 226, 25, 105, 146, 105, 71, 31, 15, + 169, 74, 59, 255, 248, 171, 32, 12, 31, 174, 70, 63, 74, 142, 118, 136, 191, 174, 193, 145, 179, 236, 7, 216, 102, + 159, 27, 190, 185, 163, 103, 136, 158, 167, 88, 159, 68, 121, 35, 65, 186, 27, 31, 84, 166, 118, 149, 198, 71, + 219, 65, 177, 27, 114, 43, 160, 95, 143, 13, 32, 182, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2526, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11558977439805093888" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "987386345824dd8b47e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2154389764061694682" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad1b2c2508ed1d35b4dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebbb" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44e962" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11485009981255399021" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4042769093964061083" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03c3313e5342d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13485863734456924125" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d63120b9298b85" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7111425785430088049" + } + } + } + ] + }, + "cborHex": "bf1ba069bcbd4a563800bf4a987386345824dd8b47e11b1de5ee1372a28ada4aad1b2c2508ed1d35b4dc42ebbbff4344e962d8669f1b9f62f3ba4e8b366d9f1b381acd124aa7d99b4703c3313e5342d31bbb27699d85a0b7ddffff47d63120b9298b851b62b0dc12eb1d1971ff", + "cborBytes": [ + 191, 27, 160, 105, 188, 189, 74, 86, 56, 0, 191, 74, 152, 115, 134, 52, 88, 36, 221, 139, 71, 225, 27, 29, 229, + 238, 19, 114, 162, 138, 218, 74, 173, 27, 44, 37, 8, 237, 29, 53, 180, 220, 66, 235, 187, 255, 67, 68, 233, 98, + 216, 102, 159, 27, 159, 98, 243, 186, 78, 139, 54, 109, 159, 27, 56, 26, 205, 18, 74, 167, 217, 155, 71, 3, 195, + 49, 62, 83, 66, 211, 27, 187, 39, 105, 157, 133, 160, 183, 221, 255, 255, 71, 214, 49, 32, 185, 41, 139, 133, 27, + 98, 176, 220, 18, 235, 29, 25, 113, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2527, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2913954799015955793" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "374145549273874007" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14702404705037363064" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9187722759223023511" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5759809532316037525" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14504402785958254090" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7772854501947219159" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7028585676350116085" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "966b6228e8b6005c24c51be5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4093497493147040268" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7533" + }, + { + "_tag": "ByteArray", + "bytearray": "a0e6733bae0c55f40586c3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18227554461389077516" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13397499650812758859" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e81fc86531da2a11" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3309536112608331190" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b47db10716441c0c" + } + ] + } + } + ] + }, + "cborHex": "bf1b287072736ee40d519f1b05313b650ec33e571bcc096f2ebbc8a7781b7f81592bbe429797ff1b4feef440bb9b31959f1bc949fd7c783a560aff1b6bdeb9fcb75c1cd7d8669f1b618a8d6f003f50f59f4c966b6228e8b6005c24c51be51b38cf06481ffb3a0c4275334ba0e6733bae0c55f40586c3ffff1bfcf548357b2ebc0cd8669f1bb9ed7af30d1d4b4b9f48e81fc86531da2a111b2dedd58f4b58c5b648b47db10716441c0cffffff", + "cborBytes": [ + 191, 27, 40, 112, 114, 115, 110, 228, 13, 81, 159, 27, 5, 49, 59, 101, 14, 195, 62, 87, 27, 204, 9, 111, 46, 187, + 200, 167, 120, 27, 127, 129, 89, 43, 190, 66, 151, 151, 255, 27, 79, 238, 244, 64, 187, 155, 49, 149, 159, 27, + 201, 73, 253, 124, 120, 58, 86, 10, 255, 27, 107, 222, 185, 252, 183, 92, 28, 215, 216, 102, 159, 27, 97, 138, + 141, 111, 0, 63, 80, 245, 159, 76, 150, 107, 98, 40, 232, 182, 0, 92, 36, 197, 27, 229, 27, 56, 207, 6, 72, 31, + 251, 58, 12, 66, 117, 51, 75, 160, 230, 115, 59, 174, 12, 85, 244, 5, 134, 195, 255, 255, 27, 252, 245, 72, 53, + 123, 46, 188, 12, 216, 102, 159, 27, 185, 237, 122, 243, 13, 29, 75, 75, 159, 72, 232, 31, 200, 101, 49, 218, 42, + 17, 27, 45, 237, 213, 143, 75, 88, 197, 182, 72, 180, 125, 177, 7, 22, 68, 28, 12, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2528, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6716950749928465260" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e60b1318544b5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17206979915768396376" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7b69" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d665be87300c7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1039660195393342188" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07baa1f9f65d06a0be" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2372207816218428366" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "972213266517396567" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4764381768590439755" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2178138729408269166" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8573114940518262301" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15080525386667884442" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81a34f00abd4" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6245d958a88d6ca9d458f0a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17817733759503638709" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15087862943030543745" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5d37671e7f47a36c476e60b1318544b51beecb791120a7fa589f427b69ff479d665be87300c7bf1b0e6d9d7079888aec4907baa1f9f65d06a0be1b20ebc670bb1ac3ce1b0d7dfed09cb10c571b421e7bf9cb2e354b1b1e3a4da255e68b6e1b76f9d29db82f661d4289f81bd148c9f06a997f9a4681a34f00abd4ff4cb6245d958a88d6ca9d458f0ad8669f1bf7454e73adb320b59f1bd162db68631d8581ffffff", + "cborBytes": [ + 191, 27, 93, 55, 103, 30, 127, 71, 163, 108, 71, 110, 96, 177, 49, 133, 68, 181, 27, 238, 203, 121, 17, 32, 167, + 250, 88, 159, 66, 123, 105, 255, 71, 157, 102, 91, 232, 115, 0, 199, 191, 27, 14, 109, 157, 112, 121, 136, 138, + 236, 73, 7, 186, 161, 249, 246, 93, 6, 160, 190, 27, 32, 235, 198, 112, 187, 26, 195, 206, 27, 13, 125, 254, 208, + 156, 177, 12, 87, 27, 66, 30, 123, 249, 203, 46, 53, 75, 27, 30, 58, 77, 162, 85, 230, 139, 110, 27, 118, 249, + 210, 157, 184, 47, 102, 29, 66, 137, 248, 27, 209, 72, 201, 240, 106, 153, 127, 154, 70, 129, 163, 79, 0, 171, + 212, 255, 76, 182, 36, 93, 149, 138, 136, 214, 202, 157, 69, 143, 10, 216, 102, 159, 27, 247, 69, 78, 115, 173, + 179, 32, 181, 159, 27, 209, 98, 219, 104, 99, 29, 133, 129, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2529, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12418319431079099369" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73f9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bdcb5b3fffc81f" + }, + { + "_tag": "ByteArray", + "bytearray": "00f6b116a59cda382c4c" + }, + { + "_tag": "ByteArray", + "bytearray": "2975c249c4bebdc8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2625643607518740024" + } + } + ] + } + } + ] + }, + "cborHex": "bf41041bac56bbba3cccfbe94273f99f47bdcb5b3fffc81f4a00f6b116a59cda382c4c482975c249c4bebdc81b247028f324edfe38ffff", + "cborBytes": [ + 191, 65, 4, 27, 172, 86, 187, 186, 60, 204, 251, 233, 66, 115, 249, 159, 71, 189, 203, 91, 63, 255, 200, 31, 74, + 0, 246, 177, 22, 165, 156, 218, 56, 44, 76, 72, 41, 117, 194, 73, 196, 190, 189, 200, 27, 36, 112, 40, 243, 36, + 237, 254, 56, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2530, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4337200388103611355" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48bf25" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7059101980648983279" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12480666915249728123" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8697795caf7343" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7911842083970861507" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cfe68800e49a3a1279" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13627159812040587764" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9506073a1d43b623" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff79633398ff65" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3542233119196881435" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17192282932603486815" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3c30d4c6049a23db4348bf251b61f6f7d9c5d6caefd8669f1bad343c6f1b6e2a7b9f478697795caf73431b6dcc8274e611c9c349cfe68800e49a3a1279ffff1bbd1d65a6362879f4489506073a1d43b62347ff79633398ff65d8669f1b31288a411d5aa21b9f1bee97423d13d7825fffffff", + "cborBytes": [ + 191, 27, 60, 48, 212, 198, 4, 154, 35, 219, 67, 72, 191, 37, 27, 97, 246, 247, 217, 197, 214, 202, 239, 216, 102, + 159, 27, 173, 52, 60, 111, 27, 110, 42, 123, 159, 71, 134, 151, 121, 92, 175, 115, 67, 27, 109, 204, 130, 116, + 230, 17, 201, 195, 73, 207, 230, 136, 0, 228, 154, 58, 18, 121, 255, 255, 27, 189, 29, 101, 166, 54, 40, 121, 244, + 72, 149, 6, 7, 58, 29, 67, 182, 35, 71, 255, 121, 99, 51, 152, 255, 101, 216, 102, 159, 27, 49, 40, 138, 65, 29, + 90, 162, 27, 159, 27, 238, 151, 66, 61, 19, 215, 130, 95, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2531, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10255822071457445187" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11f0ace6f484357cd07de2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "628c74fa9a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6267691553512538156" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d6bb8b7d1a2770c13" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3027705014144444689" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8345311822875909664" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3041918458907896971" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15445164440033547450" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14332548331201354034" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ced966086347db" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15524992158796494397" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dd4" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efb6ef276cbb81e3c08d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f91c5f0e2ee52e93dd58192" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b60459" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82ff29ed6048109a6b18a3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17666376352606049672" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b8e53ffd618d4f5434b11f0ace6f484357cd07de245628c74fa9a1b56fb5042a0d4c02c496d6bb8b7d1a2770c13bf1b2a0491ab3cbfa9111b73d080e33662de201b2a3710b8bae8ac8b1bd6583f39e9b1d4ba1bc6e770c5275fd93247ced966086347db1bd773da1d0dca363d422dd4ff4aefb6ef276cbb81e3c08dbf4c0f91c5f0e2ee52e93dd5819243b604594b82ff29ed6048109a6b18a31bf52b93b13571d588ffff", + "cborBytes": [ + 191, 27, 142, 83, 255, 214, 24, 212, 245, 67, 75, 17, 240, 172, 230, 244, 132, 53, 124, 208, 125, 226, 69, 98, + 140, 116, 250, 154, 27, 86, 251, 80, 66, 160, 212, 192, 44, 73, 109, 107, 184, 183, 209, 162, 119, 12, 19, 191, + 27, 42, 4, 145, 171, 60, 191, 169, 17, 27, 115, 208, 128, 227, 54, 98, 222, 32, 27, 42, 55, 16, 184, 186, 232, + 172, 139, 27, 214, 88, 63, 57, 233, 177, 212, 186, 27, 198, 231, 112, 197, 39, 95, 217, 50, 71, 206, 217, 102, 8, + 99, 71, 219, 27, 215, 115, 218, 29, 13, 202, 54, 61, 66, 45, 212, 255, 74, 239, 182, 239, 39, 108, 187, 129, 227, + 192, 141, 191, 76, 15, 145, 197, 240, 226, 238, 82, 233, 61, 213, 129, 146, 67, 182, 4, 89, 75, 130, 255, 41, 237, + 96, 72, 16, 154, 107, 24, 163, 27, 245, 43, 147, 177, 53, 113, 213, 136, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2532, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3561542359373771301" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "452e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8572366610921210524" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b316d23e7eefaf22542452e1b76f72a03a860c29ca0ff", + "cborBytes": [ + 191, 27, 49, 109, 35, 231, 238, 250, 242, 37, 66, 69, 46, 27, 118, 247, 42, 3, 168, 96, 194, 156, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2533, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c4af114758777" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8477898546429238135" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fcfe" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3dde828a4976c27dfed6e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8376054922698132364" + } + } + } + ] + }, + "cborHex": "bf471c4af114758777d8669f1b75a78bcf65b71b779f0642fcfeffff4b3dde828a4976c27dfed6e11b743db992ee958b8cff", + "cborBytes": [ + 191, 71, 28, 74, 241, 20, 117, 135, 119, 216, 102, 159, 27, 117, 167, 139, 207, 101, 183, 27, 119, 159, 6, 66, + 252, 254, 255, 255, 75, 61, 222, 130, 138, 73, 118, 194, 125, 254, 214, 225, 27, 116, 61, 185, 146, 238, 149, 139, + 140, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2534, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7239051770373016035" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1411af33fd" + }, + { + "_tag": "ByteArray", + "bytearray": "5120" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "768413234121029779" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8019351001355938306" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e70740630ac33813937" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f491e512c7ac67f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "901ea35364e9023abecef27e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12868802319083181393" + } + } + } + ] + }, + "cborHex": "bf1b6476473b23bf09e39f451411af33fd4251201b0aa9f3c3e47e38931b6f4a753f54fe6a02ff4a7e70740630ac33813937486f491e512c7ac67f4c901ea35364e9023abecef27e1bb2972b8701ad1551ff", + "cborBytes": [ + 191, 27, 100, 118, 71, 59, 35, 191, 9, 227, 159, 69, 20, 17, 175, 51, 253, 66, 81, 32, 27, 10, 169, 243, 195, 228, + 126, 56, 147, 27, 111, 74, 117, 63, 84, 254, 106, 2, 255, 74, 126, 112, 116, 6, 48, 172, 51, 129, 57, 55, 72, 111, + 73, 30, 81, 44, 122, 198, 127, 76, 144, 30, 163, 83, 100, 233, 2, 58, 190, 206, 242, 126, 27, 178, 151, 43, 135, + 1, 173, 21, 81, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2535, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "71ddfc07fb040621" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96f18b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f600fbfb055ac704c4070f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + }, + "cborHex": "bf4871ddfc07fb0406214396f18b4bf600fbfb055ac704c4070f09ff", + "cborBytes": [ + 191, 72, 113, 221, 252, 7, 251, 4, 6, 33, 67, 150, 241, 139, 75, 246, 0, 251, 251, 5, 90, 199, 4, 196, 7, 15, 9, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2536, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f1f832bb703a70290ff7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17364785391619073172" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c932b08f0f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12838889250103368443" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12911875270786449517" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14299278358080189610" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8205443928166925318" + } + }, + { + "_tag": "ByteArray", + "bytearray": "882070893430156c22e0d67f" + } + ] + } + } + ] + }, + "cborHex": "bf417d9f4af1f832bb703a70290ff71bf0fc1c4fa458e49445c932b08f0fff41879f1bb22ce5bfe6fe1afb1bb33032261360806d1bc6713de7e5ccf4aa1b71df97c742c684064c882070893430156c22e0d67fffff", + "cborBytes": [ + 191, 65, 125, 159, 74, 241, 248, 50, 187, 112, 58, 112, 41, 15, 247, 27, 240, 252, 28, 79, 164, 88, 228, 148, 69, + 201, 50, 176, 143, 15, 255, 65, 135, 159, 27, 178, 44, 229, 191, 230, 254, 26, 251, 27, 179, 48, 50, 38, 19, 96, + 128, 109, 27, 198, 113, 61, 231, 229, 204, 244, 170, 27, 113, 223, 151, 199, 66, 198, 132, 6, 76, 136, 32, 112, + 137, 52, 48, 21, 108, 34, 224, 214, 127, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2537, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "56ba3feea24bef49838f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35928108ddf0" + } + } + ] + }, + "cborHex": "bf4a56ba3feea24bef49838f4635928108ddf0ff", + "cborBytes": [191, 74, 86, 186, 63, 238, 162, 75, 239, 73, 131, 143, 70, 53, 146, 129, 8, 221, 240, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2538, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4783627990390268201" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "71026819199697910" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14084688945872666473" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f7fc" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11149938309639272988" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15495036750932197179" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18440628043211046314" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbaf184b11070eb148932f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15752124276607441715" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10680000603883485221" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16703283585751648585" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d31f71461f57d64" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4a9df48c563a710923f25" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0cbf890a9bef338" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb49" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d90083a7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91d8" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17778334775874823134" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b4262dc5000d3e129d8669f1b00fc568407ec83f69f1bc376ddf8ee9c7f6942f7fcffff1b9abc89d155917a1ca01bd7096dd428efbf3bbf414a1bffea4580aeb37daa4bfbaf184b11070eb148932f4146ff1bda9ac9923cfe5b331b9436fbf6d36eb8251be7cdfbec67570949bf489d31f71461f57d644bf4a9df48c563a710923f2548c0cbf890a9bef33842fb4944d90083a74291d8ff1bf6b95548f5fe23de80ff", + "cborBytes": [ + 191, 27, 66, 98, 220, 80, 0, 211, 225, 41, 216, 102, 159, 27, 0, 252, 86, 132, 7, 236, 131, 246, 159, 27, 195, + 118, 221, 248, 238, 156, 127, 105, 66, 247, 252, 255, 255, 27, 154, 188, 137, 209, 85, 145, 122, 28, 160, 27, 215, + 9, 109, 212, 40, 239, 191, 59, 191, 65, 74, 27, 255, 234, 69, 128, 174, 179, 125, 170, 75, 251, 175, 24, 75, 17, + 7, 14, 177, 72, 147, 47, 65, 70, 255, 27, 218, 154, 201, 146, 60, 254, 91, 51, 27, 148, 54, 251, 246, 211, 110, + 184, 37, 27, 231, 205, 251, 236, 103, 87, 9, 73, 191, 72, 157, 49, 247, 20, 97, 245, 125, 100, 75, 244, 169, 223, + 72, 197, 99, 167, 16, 146, 63, 37, 72, 192, 203, 248, 144, 169, 190, 243, 56, 66, 251, 73, 68, 217, 0, 131, 167, + 66, 145, 216, 255, 27, 246, 185, 85, 72, 245, 254, 35, 222, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2539, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "55010502" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3978415223781343272" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "984662758802911315" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c735d98a827ea60ef16a4ea" + }, + { + "_tag": "ByteArray", + "bytearray": "7451fb3ecb6cd0" + } + ] + } + } + ] + }, + "cborHex": "bf44550105029f1b37362b91467e40281b0daa398fea00f0534c5c735d98a827ea60ef16a4ea477451fb3ecb6cd0ffff", + "cborBytes": [ + 191, 68, 85, 1, 5, 2, 159, 27, 55, 54, 43, 145, 70, 126, 64, 40, 27, 13, 170, 57, 143, 234, 0, 240, 83, 76, 92, + 115, 93, 152, 168, 39, 234, 96, 239, 22, 164, 234, 71, 116, 81, 251, 62, 203, 108, 208, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2540, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2123466253144816610" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "778b062c4f973e2b33" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ce9f003cdf211a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8444" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10235190745130918141" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c8218e6152815bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85b81c0901fabd2d795b" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1d78114e7f39fbe2bf49778b062c4f973e2b33485ce9f003cdf211a24284441b8e0ab3c11be4e0fd488c8218e6152815bd4a85b81c0901fabd2d795bffff", + "cborBytes": [ + 191, 27, 29, 120, 17, 78, 127, 57, 251, 226, 191, 73, 119, 139, 6, 44, 79, 151, 62, 43, 51, 72, 92, 233, 240, 3, + 205, 242, 17, 162, 66, 132, 68, 27, 142, 10, 179, 193, 27, 228, 224, 253, 72, 140, 130, 24, 230, 21, 40, 21, 189, + 74, 133, 184, 28, 9, 1, 250, 189, 45, 121, 91, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2541, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b2013941d424c46b54f06fa" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1345826517490689142" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5856910581412593376" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4732034146372812852" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da8f598e9d53" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5670636373761305832" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2632141547581707454" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6348239623554056905" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13133169201443742715" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15110351019335360247" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d03876e4292f37" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2a7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13312652504344312051" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bdc22d80c6d45f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c433c59926" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5954014250925651154" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "28e8e175" + }, + { + "_tag": "ByteArray", + "bytearray": "936a21b09d41011d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17780563994099332475" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfec20b054afb9e637d3c585" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9939812723738288017" + } + } + } + ] + }, + "cborHex": "bf4c7b2013941d424c46b54f06fabf1b12ad5616505564761b5147ed247e52fee01b41ab8ffc1792003446da8f598e9d531b4eb225bcd473ace81b24873ecab62794be1b58197a4d9effc2c91bb64263ce6327a3fb1bd1b2c031aaf21ef747d03876e4292f37ff42b2a7d8669f1bb8c00aeb53a838f39f47bdc22d80c6d45fffff45c433c59926d8669f1b52a0e86a5e0974d29f4428e8e17548936a21b09d41011d1bf6c140bf4664357bffff4cdfec20b054afb9e637d3c5851b89f14f0244541f91ff", + "cborBytes": [ + 191, 76, 123, 32, 19, 148, 29, 66, 76, 70, 181, 79, 6, 250, 191, 27, 18, 173, 86, 22, 80, 85, 100, 118, 27, 81, + 71, 237, 36, 126, 82, 254, 224, 27, 65, 171, 143, 252, 23, 146, 0, 52, 70, 218, 143, 89, 142, 157, 83, 27, 78, + 178, 37, 188, 212, 115, 172, 232, 27, 36, 135, 62, 202, 182, 39, 148, 190, 27, 88, 25, 122, 77, 158, 255, 194, + 201, 27, 182, 66, 99, 206, 99, 39, 163, 251, 27, 209, 178, 192, 49, 170, 242, 30, 247, 71, 208, 56, 118, 228, 41, + 47, 55, 255, 66, 178, 167, 216, 102, 159, 27, 184, 192, 10, 235, 83, 168, 56, 243, 159, 71, 189, 194, 45, 128, + 198, 212, 95, 255, 255, 69, 196, 51, 197, 153, 38, 216, 102, 159, 27, 82, 160, 232, 106, 94, 9, 116, 210, 159, 68, + 40, 232, 225, 117, 72, 147, 106, 33, 176, 157, 65, 1, 29, 27, 246, 193, 64, 191, 70, 100, 53, 123, 255, 255, 76, + 223, 236, 32, 176, 84, 175, 185, 230, 55, 211, 197, 133, 27, 137, 241, 79, 2, 68, 84, 31, 145, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2542, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "961178336522375533" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3991331476381577305" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f10cc30f401a93d566" + }, + { + "_tag": "ByteArray", + "bytearray": "c11eec11705831" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3995280771576283215" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15317329337463775749" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3454ef" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1655155394921918511" + } + }, + { + "_tag": "ByteArray", + "bytearray": "db173650a3488d" + }, + { + "_tag": "ByteArray", + "bytearray": "3c78e289c4334c8f4d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10129300840625398823" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2924983461172439500" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16893108775210722757" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17566463571585685672" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "87" + }, + { + "_tag": "ByteArray", + "bytearray": "b49c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15438568355341908050" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0d56ca9ac237916dd8669f1b37640ed4ae8f30599f49f10cc30f401a93d56647c11eec11705831ffff1b377216b19fc0c04fd8669f1bd49215e0b332a2059f433454ef1b16f84b0ff264702f47db173650a3488d493c78e289c4334c8f4dffff1b8c9281727c8ae4271b2897a0f5f11369cc1bea7060ed727825c5a01bf3c89d8c183458a89f418742b49c1bd640d01f44bdb852ffff", + "cborBytes": [ + 191, 27, 13, 86, 202, 154, 194, 55, 145, 109, 216, 102, 159, 27, 55, 100, 14, 212, 174, 143, 48, 89, 159, 73, 241, + 12, 195, 15, 64, 26, 147, 213, 102, 71, 193, 30, 236, 17, 112, 88, 49, 255, 255, 27, 55, 114, 22, 177, 159, 192, + 192, 79, 216, 102, 159, 27, 212, 146, 21, 224, 179, 50, 162, 5, 159, 67, 52, 84, 239, 27, 22, 248, 75, 15, 242, + 100, 112, 47, 71, 219, 23, 54, 80, 163, 72, 141, 73, 60, 120, 226, 137, 196, 51, 76, 143, 77, 255, 255, 27, 140, + 146, 129, 114, 124, 138, 228, 39, 27, 40, 151, 160, 245, 241, 19, 105, 204, 27, 234, 112, 96, 237, 114, 120, 37, + 197, 160, 27, 243, 200, 157, 140, 24, 52, 88, 168, 159, 65, 135, 66, 180, 156, 27, 214, 64, 208, 31, 68, 189, 184, + 82, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2543, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "448695396549392349" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7484567494302755960" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "777155747141783339" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12359631641888342627" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9664434364809575596" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1437220165170967722" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "85549631743046548" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "196c2ad6f6b04dea20a75377" + }, + { + "_tag": "ByteArray", + "bytearray": "ddbe5ab3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11691402395765599531" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12f0b60daaf64f2d73fbcd48" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13149495573162145041" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e123fb715f7b49" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14541042432738674061" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11732502968902591106" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15501036902740830462" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17654393261748057826" + } + } + } + ] + }, + "cborHex": "bf1b063a1615fbadf7ddd8669f1b67de867b2b59ec789f1b0ac90308d38a0f2b41b21bab863b7e816ec2631b861ef7d9b58d7cacffff1b13f20820210b34aad8669f1b012feeefd2b5b3949f4c196c2ad6f6b04dea20a7537744ddbe5ab3ffff1ba240348905c26d2b4c12f0b60daaf64f2d73fbcd481bb67c648e05e6b51147e123fb715f7b491bc9cc290d0345458d1ba2d23949eba7a2821bd71ebeef5e16a8fe1bf5010122738af6e2ff", + "cborBytes": [ + 191, 27, 6, 58, 22, 21, 251, 173, 247, 221, 216, 102, 159, 27, 103, 222, 134, 123, 43, 89, 236, 120, 159, 27, 10, + 201, 3, 8, 211, 138, 15, 43, 65, 178, 27, 171, 134, 59, 126, 129, 110, 194, 99, 27, 134, 30, 247, 217, 181, 141, + 124, 172, 255, 255, 27, 19, 242, 8, 32, 33, 11, 52, 170, 216, 102, 159, 27, 1, 47, 238, 239, 210, 181, 179, 148, + 159, 76, 25, 108, 42, 214, 246, 176, 77, 234, 32, 167, 83, 119, 68, 221, 190, 90, 179, 255, 255, 27, 162, 64, 52, + 137, 5, 194, 109, 43, 76, 18, 240, 182, 13, 170, 246, 79, 45, 115, 251, 205, 72, 27, 182, 124, 100, 142, 5, 230, + 181, 17, 71, 225, 35, 251, 113, 95, 123, 73, 27, 201, 204, 41, 13, 3, 69, 69, 141, 27, 162, 210, 57, 73, 235, 167, + 162, 130, 27, 215, 30, 190, 239, 94, 22, 168, 254, 27, 245, 1, 1, 34, 115, 138, 246, 226, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2544, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fde701fcfb88" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf46fde701fcfb88d9050280ff", + "cborBytes": [191, 70, 253, 231, 1, 252, 251, 136, 217, 5, 2, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2545, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1094941082999593375" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16648217095057695861" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2236981428616631501" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10313519337491438591" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9151313967507728003" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6672440139175845181" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17139795301310237051" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15868213036405770457" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15267254911724089029" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3865582656143847419" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14728066753020242671" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9082802572577876080" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5296224216455580820" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7c549a33a380e32" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7118180670249270433" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15788364584814847546" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10285077675636929706" + } + } + } + ] + }, + "cborHex": "bf1b0f32031d1e2c199f1be70a593dee7fe4751b1f0b5ac1ddd714cdd8669f1b8f20fb31af4c9bff9f1b7effff91555e66831b5c9944f458a25d3d1beddcc9041981897b1bdc3737aee73048d91bd3e02f73eca6eec5ffff1b35a54ef1ed5d6ffbd8669f1bcc649aade2032aef9f1b7e0c98d1278228701b497ff7dd40a80c9448d7c549a33a380e32ffff1b62c8db9b19427ca1a01bdb1b89f0863f263a1b8ebbefa73fa3b4aaff", + "cborBytes": [ + 191, 27, 15, 50, 3, 29, 30, 44, 25, 159, 27, 231, 10, 89, 61, 238, 127, 228, 117, 27, 31, 11, 90, 193, 221, 215, + 20, 205, 216, 102, 159, 27, 143, 32, 251, 49, 175, 76, 155, 255, 159, 27, 126, 255, 255, 145, 85, 94, 102, 131, + 27, 92, 153, 68, 244, 88, 162, 93, 61, 27, 237, 220, 201, 4, 25, 129, 137, 123, 27, 220, 55, 55, 174, 231, 48, 72, + 217, 27, 211, 224, 47, 115, 236, 166, 238, 197, 255, 255, 27, 53, 165, 78, 241, 237, 93, 111, 251, 216, 102, 159, + 27, 204, 100, 154, 173, 226, 3, 42, 239, 159, 27, 126, 12, 152, 209, 39, 130, 40, 112, 27, 73, 127, 247, 221, 64, + 168, 12, 148, 72, 215, 197, 73, 163, 58, 56, 14, 50, 255, 255, 27, 98, 200, 219, 155, 25, 66, 124, 161, 160, 27, + 219, 27, 137, 240, 134, 63, 38, 58, 27, 142, 187, 239, 167, 63, 163, 180, 170, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2546, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "181661068920058111" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b028563c79a7f70ffd8669f1bfffffffffffffff080ffff", + "cborBytes": [ + 191, 27, 2, 133, 99, 199, 154, 127, 112, 255, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2547, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13654710433195832692" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11586046328260154352" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5190522328673965291" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9080833208772596706" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f558565d3b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "873825252177863349" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e823ae3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3510254310980507577" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cda0da9f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4148418244858484792" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4289629879245348916" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7329442675007808439" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16708664495650006479" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15038596486148239131" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8425582923065937333" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bbd7f46cb11753574d8669f1ba0c9e7c0032a53f09f1b4808708eaf5854ebffff41e01b7e0599b0e97613e245f558565d3bbf1b0c20736fe7d3e2b5442e823ae31b30b6edb29d46d7b9452cda0da9f21b3992246a188a18381b3b87d3a5d25220341b65b76947a56de3b71be7e119d51e6665cf1bd0b3d3d3854daf1b1b74edaf0722f14db5ffff", + "cborBytes": [ + 191, 27, 189, 127, 70, 203, 17, 117, 53, 116, 216, 102, 159, 27, 160, 201, 231, 192, 3, 42, 83, 240, 159, 27, 72, + 8, 112, 142, 175, 88, 84, 235, 255, 255, 65, 224, 27, 126, 5, 153, 176, 233, 118, 19, 226, 69, 245, 88, 86, 93, + 59, 191, 27, 12, 32, 115, 111, 231, 211, 226, 181, 68, 46, 130, 58, 227, 27, 48, 182, 237, 178, 157, 70, 215, 185, + 69, 44, 218, 13, 169, 242, 27, 57, 146, 36, 106, 24, 138, 24, 56, 27, 59, 135, 211, 165, 210, 82, 32, 52, 27, 101, + 183, 105, 71, 165, 109, 227, 183, 27, 231, 225, 25, 213, 30, 102, 101, 207, 27, 208, 179, 211, 211, 133, 77, 175, + 27, 27, 116, 237, 175, 7, 34, 241, 77, 181, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2548, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fac88fe135c007" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14905716211772297292" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf47fac88fe135c007d8669f1bcedbbdebb578104c80ffff", + "cborBytes": [ + 191, 71, 250, 200, 143, 225, 53, 192, 7, 216, 102, 159, 27, 206, 219, 189, 235, 181, 120, 16, 76, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2549, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14640860809434334474" + } + } + } + ] + }, + "cborHex": "bf021bcb2ec955e845850aff", + "cborBytes": [191, 2, 27, 203, 46, 201, 85, 232, 69, 133, 10, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2550, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1184522567038337162" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14655761340212789353" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16867287312720162424" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09d262eb" + } + } + ] + }, + "cborHex": "bf1b107044ffb4c1008a1bcb63b94a144940691bea14a471b7236e784409d262ebff", + "cborBytes": [ + 191, 27, 16, 112, 68, 255, 180, 193, 0, 138, 27, 203, 99, 185, 74, 20, 73, 64, 105, 27, 234, 20, 164, 113, 183, + 35, 110, 120, 68, 9, 210, 98, 235, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2551, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0706f92668010006f802" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10319159782800428178" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94fafcfc92088e70" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5bd37a584c24604b8f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8916892157715258184" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1c19c3989e89a361e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "827c3656abd249392937" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b" + }, + { + "_tag": "ByteArray", + "bytearray": "5d6460e49a" + }, + { + "_tag": "ByteArray", + "bytearray": "a80252" + } + ] + } + } + ] + }, + "cborHex": "bf0cbf034a0706f92668010006f8021b8f35052632510c924894fafcfc92088e70ff1bffffffffffffffec495bd37a584c24604b8f42b0e31b7bbf2a2c79159b4849c1c19c3989e89a361e9f4a827c3656abd24939293710415b455d6460e49a43a80252ffff", + "cborBytes": [ + 191, 12, 191, 3, 74, 7, 6, 249, 38, 104, 1, 0, 6, 248, 2, 27, 143, 53, 5, 38, 50, 81, 12, 146, 72, 148, 250, 252, + 252, 146, 8, 142, 112, 255, 27, 255, 255, 255, 255, 255, 255, 255, 236, 73, 91, 211, 122, 88, 76, 36, 96, 75, 143, + 66, 176, 227, 27, 123, 191, 42, 44, 121, 21, 155, 72, 73, 193, 193, 156, 57, 137, 232, 154, 54, 30, 159, 74, 130, + 124, 54, 86, 171, 210, 73, 57, 41, 55, 16, 65, 91, 69, 93, 100, 96, 228, 154, 67, 168, 2, 82, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2552, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f25955529768dd44a3f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6746283051667048171" + } + } + } + ] + }, + "cborHex": "bf4af25955529768dd44a3f31b5d9f9cb130da46ebff", + "cborBytes": [191, 74, 242, 89, 85, 82, 151, 104, 221, 68, 163, 243, 27, 93, 159, 156, 177, 48, 218, 70, 235, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2553, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1581618851409903904" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7879580745922423008" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6327366644782396646" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2840695775754824427" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9439809492989622614" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8312b6afb7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42ce09c26f85d07c48" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a37e77be3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15770372047170532025" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17431802912200590478" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5e6c6d6a67" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9471618090338525779" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b15f309f7305941201b6d59e4f0cbb6a8e01b57cf527089e8f4e61b276c2dc1e4d1aaeb1b8300f0b83901b956bf458312b6afb74942ce09c26f85d07c4845a37e77be3f1bdadb9dd2675972b9ff1bf1ea34641856048e9f455e6c6d6a671b8371f2786acaa253ffff", + "cborBytes": [ + 191, 27, 21, 243, 9, 247, 48, 89, 65, 32, 27, 109, 89, 228, 240, 203, 182, 168, 224, 27, 87, 207, 82, 112, 137, + 232, 244, 230, 27, 39, 108, 45, 193, 228, 209, 170, 235, 27, 131, 0, 240, 184, 57, 1, 185, 86, 191, 69, 131, 18, + 182, 175, 183, 73, 66, 206, 9, 194, 111, 133, 208, 124, 72, 69, 163, 126, 119, 190, 63, 27, 218, 219, 157, 210, + 103, 89, 114, 185, 255, 27, 241, 234, 52, 100, 24, 86, 4, 142, 159, 69, 94, 108, 109, 106, 103, 27, 131, 113, 242, + 120, 106, 202, 162, 83, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2554, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "473347952359021556" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ab146746" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1515110942875937751" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3321822221357639168" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7cb3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7376b9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "296f6a956d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2811585281821536743" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d8e94f875e1f0596a48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d2566" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7787fae4c76243e0ed1c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cf89d32761d362fedf1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb881c0d32006c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f86549ef583207d" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0691ab746b849bf4d87c9f44ab1467461b1506c160096d6bd71b2e197bb5e7056600427cb3ff437376b9bf45296f6a956d1b2704c1eadab071e74a4d8e94f875e1f0596a48438d25664bb7787fae4c76243e0ed1c94a2cf89d32761d362fedf147bb881c0d32006c480f86549ef583207dffff", + "cborBytes": [ + 191, 27, 6, 145, 171, 116, 107, 132, 155, 244, 216, 124, 159, 68, 171, 20, 103, 70, 27, 21, 6, 193, 96, 9, 109, + 107, 215, 27, 46, 25, 123, 181, 231, 5, 102, 0, 66, 124, 179, 255, 67, 115, 118, 185, 191, 69, 41, 111, 106, 149, + 109, 27, 39, 4, 193, 234, 218, 176, 113, 231, 74, 77, 142, 148, 248, 117, 225, 240, 89, 106, 72, 67, 141, 37, 102, + 75, 183, 120, 127, 174, 76, 118, 36, 62, 14, 209, 201, 74, 44, 248, 157, 50, 118, 29, 54, 47, 237, 241, 71, 187, + 136, 28, 13, 50, 0, 108, 72, 15, 134, 84, 158, 245, 131, 32, 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2555, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "58bf930f23d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ffd124ecf72bdaefde4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "808eac32af36447864" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12405905268335766014" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de6522e45843097d1aa9c1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5018409895337735566" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d2d8eb2ae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10849437198209295439" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18107825810650955641" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17694157447308727942" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a079156d97" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c538a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4214805143831232231" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4658bf930f23d84a1ffd124ecf72bdaefde449808eac32af364478641bac2aa11cbc4ce9fe4bde6522e45843097d1aa9c1bf1b45a4f9360ce9358e457d2d8eb2ae1b9690f1a6242ca44f1bfb4beba2aa7fff791bf58e46735eab568645a079156d97430c538a1b3a7dfef2838cbee7ffff", + "cborBytes": [ + 191, 70, 88, 191, 147, 15, 35, 216, 74, 31, 253, 18, 78, 207, 114, 189, 174, 253, 228, 73, 128, 142, 172, 50, 175, + 54, 68, 120, 100, 27, 172, 42, 161, 28, 188, 76, 233, 254, 75, 222, 101, 34, 228, 88, 67, 9, 125, 26, 169, 193, + 191, 27, 69, 164, 249, 54, 12, 233, 53, 142, 69, 125, 45, 142, 178, 174, 27, 150, 144, 241, 166, 36, 44, 164, 79, + 27, 251, 75, 235, 162, 170, 127, 255, 121, 27, 245, 142, 70, 115, 94, 171, 86, 134, 69, 160, 121, 21, 109, 151, + 67, 12, 83, 138, 27, 58, 125, 254, 242, 131, 140, 190, 231, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2556, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c4d7f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12623131291991815705" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fb55e0e86cd4be4bd06" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17519381449272810176" + } + } + ] + } + } + ] + }, + "cborHex": "bf437c4d7f9f1baf2e5f07a44a3619ff4a7fb55e0e86cd4be4bd069f1bf321589b40795ac0ffff", + "cborBytes": [ + 191, 67, 124, 77, 127, 159, 27, 175, 46, 95, 7, 164, 74, 54, 25, 255, 74, 127, 181, 94, 14, 134, 205, 75, 228, + 189, 6, 159, 27, 243, 33, 88, 155, 64, 121, 90, 192, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2557, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16761563595926947676" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dc97c536cfa5f48cac2d" + }, + { + "_tag": "ByteArray", + "bytearray": "9f4b108b6a58" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12623334238951508339" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "895926558d46c913" + } + } + ] + }, + "cborHex": "bf0cd8669f1be89d0948af58475c9f4adc97c536cfa5f48cac2d469f4b108b6a58ffff1baf2f179be9bb097348895926558d46c913ff", + "cborBytes": [ + 191, 12, 216, 102, 159, 27, 232, 157, 9, 72, 175, 88, 71, 92, 159, 74, 220, 151, 197, 54, 207, 165, 244, 140, 172, + 45, 70, 159, 75, 16, 139, 106, 88, 255, 255, 27, 175, 47, 23, 155, 233, 187, 9, 115, 72, 137, 89, 38, 85, 141, 70, + 201, 19, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2558, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5861246458495398647" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5384299602519475482" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b8e03a62f83270bd3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15160404307911031027" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8dbf98e74a26fcc4967" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7705968831573142625" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f447795f01cf4082" + }, + { + "_tag": "ByteArray", + "bytearray": "11" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10035074596456957805" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e111a21d82dcd7045" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "514989692057250032" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c3ada54e4ac" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cdf61151" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7515a4e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16570508023113478890" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e59915c2a8ae1b9307" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "615737f5ec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eacfa779183b56a33a7a122e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7424553866220866322" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b515754998ba272f71b4ab8dff61473451a494b8e03a62f83270bd31bd26493651056b8f34ad8dbf98e74a26fcc4967d8669f1b6af119d308262c619f48f447795f01cf408241111b8b43bf2d685d076dffff41fcbf492e111a21d82dcd70451b07259c657a0f68f0466c3ada54e4ac44cdf61151447515a4e61be5f64540b17072ea49e59915c2a8ae1b930745615737f5ec4ceacfa779183b56a33a7a122e1b6709506783d90b12ffff", + "cborBytes": [ + 191, 27, 81, 87, 84, 153, 139, 162, 114, 247, 27, 74, 184, 223, 246, 20, 115, 69, 26, 73, 75, 142, 3, 166, 47, + 131, 39, 11, 211, 27, 210, 100, 147, 101, 16, 86, 184, 243, 74, 216, 219, 249, 142, 116, 162, 111, 204, 73, 103, + 216, 102, 159, 27, 106, 241, 25, 211, 8, 38, 44, 97, 159, 72, 244, 71, 121, 95, 1, 207, 64, 130, 65, 17, 27, 139, + 67, 191, 45, 104, 93, 7, 109, 255, 255, 65, 252, 191, 73, 46, 17, 26, 33, 216, 45, 205, 112, 69, 27, 7, 37, 156, + 101, 122, 15, 104, 240, 70, 108, 58, 218, 84, 228, 172, 68, 205, 246, 17, 81, 68, 117, 21, 164, 230, 27, 229, 246, + 69, 64, 177, 112, 114, 234, 73, 229, 153, 21, 194, 168, 174, 27, 147, 7, 69, 97, 87, 55, 245, 236, 76, 234, 207, + 167, 121, 24, 59, 86, 163, 58, 122, 18, 46, 27, 103, 9, 80, 103, 131, 217, 11, 18, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2559, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d235c7901f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14723104547026527814" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "87af93806627" + } + ] + } + } + ] + }, + "cborHex": "bf45d235c7901fd8669f1bcc52f994447466469f4687af93806627ffffff", + "cborBytes": [ + 191, 69, 210, 53, 199, 144, 31, 216, 102, 159, 27, 204, 82, 249, 148, 68, 116, 102, 70, 159, 70, 135, 175, 147, + 128, 102, 39, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2560, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc62995ab5c4c7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10641770505671293925" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "020468" + } + ] + } + } + ] + }, + "cborHex": "bf1247bc62995ab5c4c71b93af29e473c43be5d9050a9f43020468ffff", + "cborBytes": [ + 191, 18, 71, 188, 98, 153, 90, 181, 196, 199, 27, 147, 175, 41, 228, 115, 196, 59, 229, 217, 5, 10, 159, 67, 2, 4, + 104, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2561, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5599941879865777945" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "569941257165896255" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15874469378970421799" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "899616589795791847" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16062506266716572185" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1906697636945601363" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16504821389156984121" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29bf69f12af2cd71c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb040e04fce0eb87b9c8" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e25" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13676227333813598613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17948195340797850231" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16409594047255202215" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3271170679069208066" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d3fbd9616eca3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6683972273969182448" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4db6fd78503b9f19bf1b07e8d68dc0367a3f1bdc4d71cb2b590a271b0c7c1485a4d393e71bdee97c58c6208a191b1a75f366103823531be50ce79b6df8a5394929bf69f12af2cd71c64acb040e04fce0eb87b9c8ff422e25bf1bbdcbb84ce37279951bf914cc919f93b2771be3ba96d81f02c9a71b2d658866b597ee02471d3fbd9616eca31b5cc23d5eb67e36f0ffff", + "cborBytes": [ + 191, 27, 77, 182, 253, 120, 80, 59, 159, 25, 191, 27, 7, 232, 214, 141, 192, 54, 122, 63, 27, 220, 77, 113, 203, + 43, 89, 10, 39, 27, 12, 124, 20, 133, 164, 211, 147, 231, 27, 222, 233, 124, 88, 198, 32, 138, 25, 27, 26, 117, + 243, 102, 16, 56, 35, 83, 27, 229, 12, 231, 155, 109, 248, 165, 57, 73, 41, 191, 105, 241, 42, 242, 205, 113, 198, + 74, 203, 4, 14, 4, 252, 224, 235, 135, 185, 200, 255, 66, 46, 37, 191, 27, 189, 203, 184, 76, 227, 114, 121, 149, + 27, 249, 20, 204, 145, 159, 147, 178, 119, 27, 227, 186, 150, 216, 31, 2, 201, 167, 27, 45, 101, 136, 102, 181, + 151, 238, 2, 71, 29, 63, 189, 150, 22, 236, 163, 27, 92, 194, 61, 94, 182, 126, 54, 240, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2562, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbff" + } + } + ] + }, + "cborHex": "bf1242fbffff", + "cborBytes": [191, 18, 66, 251, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2563, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "76fd9783020004500204" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2785100804050029676" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff03fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + } + ] + }, + "cborHex": "bf4a76fd97830200045002041b26a6aa6cd90e8c6c43ff03fe01ff", + "cborBytes": [ + 191, 74, 118, 253, 151, 131, 2, 0, 4, 80, 2, 4, 27, 38, 166, 170, 108, 217, 14, 140, 108, 67, 255, 3, 254, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2564, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4fb62c04d16d9518cc8160" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "491903420819893110" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13553205160392059237" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9776561393439619205" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b4fb62c04d16d9518cc8160804166d8669f1b06d3978e15c4eb769f1bbc16a8491128e9651b87ad52c9f4c43885ffffff", + "cborBytes": [ + 191, 75, 79, 182, 44, 4, 209, 109, 149, 24, 204, 129, 96, 128, 65, 102, 216, 102, 159, 27, 6, 211, 151, 142, 21, + 196, 235, 118, 159, 27, 188, 22, 168, 73, 17, 40, 233, 101, 27, 135, 173, 82, 201, 244, 196, 56, 133, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2565, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "309675688755757914" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15077753947823552671" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3124654935985336410" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3588129573150819395" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9148852749284263609" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f2f13b592054" + }, + { + "_tag": "ByteArray", + "bytearray": "951e3d27f2a554a46a7958" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4754211848349864443" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7278446339844317041" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7ea83c5a7cd7534452510940" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13291281415676653296" + } + }, + { + "_tag": "ByteArray", + "bytearray": "77c7887ae33d96d55dcd71" + }, + { + "_tag": "ByteArray", + "bytearray": "a16f727d2b846820cd9e" + }, + { + "_tag": "ByteArray", + "bytearray": "53d4f3838fc9a1ef" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15472149191097601593" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "57b1577283bc2c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4aa80e340ec2cdc94" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17154925834149352298" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14819291822324043273" + } + } + } + ] + }, + "cborHex": "bf1b044c3065efdc835a1bd13ef15486c4389f1b2b5d011bf113b05a801b31cb98d607ba8443d8669f1b7ef7411a4f71c6b99f46f2f13b5920544b951e3d27f2a554a46a79581b41fa5a7cb7d8d1fbffff1b65023c621b299f719f4c7ea83c5a7cd75344525109401bb8741e06ff286ef04b77c7887ae33d96d55dcd714aa16f727d2b846820cd9e4853d4f3838fc9a1efff1bd6b81db6df384e39bf4757b1577283bc2c49b4aa80e340ec2cdc94ff1bee128a27cca4d36a1bcda8b3657c79ce09ff", + "cborBytes": [ + 191, 27, 4, 76, 48, 101, 239, 220, 131, 90, 27, 209, 62, 241, 84, 134, 196, 56, 159, 27, 43, 93, 1, 27, 241, 19, + 176, 90, 128, 27, 49, 203, 152, 214, 7, 186, 132, 67, 216, 102, 159, 27, 126, 247, 65, 26, 79, 113, 198, 185, 159, + 70, 242, 241, 59, 89, 32, 84, 75, 149, 30, 61, 39, 242, 165, 84, 164, 106, 121, 88, 27, 65, 250, 90, 124, 183, + 216, 209, 251, 255, 255, 27, 101, 2, 60, 98, 27, 41, 159, 113, 159, 76, 126, 168, 60, 90, 124, 215, 83, 68, 82, + 81, 9, 64, 27, 184, 116, 30, 6, 255, 40, 110, 240, 75, 119, 199, 136, 122, 227, 61, 150, 213, 93, 205, 113, 74, + 161, 111, 114, 125, 43, 132, 104, 32, 205, 158, 72, 83, 212, 243, 131, 143, 201, 161, 239, 255, 27, 214, 184, 29, + 182, 223, 56, 78, 57, 191, 71, 87, 177, 87, 114, 131, 188, 44, 73, 180, 170, 128, 227, 64, 236, 44, 220, 148, 255, + 27, 238, 18, 138, 39, 204, 164, 211, 106, 27, 205, 168, 179, 101, 124, 121, 206, 9, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2566, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "545782983199058921" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4904553246813498616" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "068799579788779bce9f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8087384030043062970" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13120006281182429373" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9798067382292370114" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a06a183f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cfd347a5b67c49" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b079302bb46086be9bf1b441079314a4eacf84a068799579788779bce9f1b703c28ed30e242ba1bb613a03330c5c0bd1b87f9ba5f2ee0d2c244a06a183f416447cfd347a5b67c49ffff", + "cborBytes": [ + 191, 27, 7, 147, 2, 187, 70, 8, 107, 233, 191, 27, 68, 16, 121, 49, 74, 78, 172, 248, 74, 6, 135, 153, 87, 151, + 136, 119, 155, 206, 159, 27, 112, 60, 40, 237, 48, 226, 66, 186, 27, 182, 19, 160, 51, 48, 197, 192, 189, 27, 135, + 249, 186, 95, 46, 224, 210, 194, 68, 160, 106, 24, 63, 65, 100, 71, 207, 211, 71, 165, 182, 124, 73, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2567, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "463779602814555739" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18397497184793275287" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13532562015889423621" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15788785321165016701" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e213bd70679" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "789615952326429226" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0dc9a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3393412092593755376" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9781105729162181872" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7243108111451635296" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b6b46e496861dbc038e9c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2438637518631908173" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3012868432549267442" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b066fad176fd5565b1bff510a3727da2b971bbbcd517472087d051bdb1d0898d6f14e7d463e213bd70679d8669f1b0af547866b660a2a80ff43d0dc9ad8669f1b2f17d251b390d4f09f1b87bd77d6913ffcf01b6484b073a4d33e604b8b6b46e496861dbc038e9c1b21d7c7e719feb34d1b29cfdbe0651647f2ffffff", + "cborBytes": [ + 191, 27, 6, 111, 173, 23, 111, 213, 86, 91, 27, 255, 81, 10, 55, 39, 218, 43, 151, 27, 187, 205, 81, 116, 114, 8, + 125, 5, 27, 219, 29, 8, 152, 214, 241, 78, 125, 70, 62, 33, 59, 215, 6, 121, 216, 102, 159, 27, 10, 245, 71, 134, + 107, 102, 10, 42, 128, 255, 67, 208, 220, 154, 216, 102, 159, 27, 47, 23, 210, 81, 179, 144, 212, 240, 159, 27, + 135, 189, 119, 214, 145, 63, 252, 240, 27, 100, 132, 176, 115, 164, 211, 62, 96, 75, 139, 107, 70, 228, 150, 134, + 29, 188, 3, 142, 156, 27, 33, 215, 199, 231, 25, 254, 179, 77, 27, 41, 207, 219, 224, 101, 22, 71, 242, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2568, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1300025779b5010604f135" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b07fc05fcfc027b05a503" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "500ca0b45febc75f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f72c01" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0404ae42" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa0203fd062364ff69aaff7d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fafe0706cdfe03fba0660106" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3595467462233663005" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4947313747687175692" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6172537095184192861" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14297684116222608439" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5951335370161434285" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffab8b04053a7b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "058207" + } + } + ] + }, + "cborHex": "bf4b1300025779b5010604f1354b6b07fc05fcfc027b05a50348500ca0b45febc75f0543f72c019f440404ae42ff4cfa0203fd062364ff69aaff7d1bffffffffffffffec4cfafe0706cdfe03fba0660106d8669f1b31e5aa9b77e9a61d9f41fc1b44a863a43b4cf60c1b55a941c8d960155d1bc66b93f38a3184371b529763fcd5b0aeadffff47ffab8b04053a7b43058207ff", + "cborBytes": [ + 191, 75, 19, 0, 2, 87, 121, 181, 1, 6, 4, 241, 53, 75, 107, 7, 252, 5, 252, 252, 2, 123, 5, 165, 3, 72, 80, 12, + 160, 180, 95, 235, 199, 95, 5, 67, 247, 44, 1, 159, 68, 4, 4, 174, 66, 255, 76, 250, 2, 3, 253, 6, 35, 100, 255, + 105, 170, 255, 125, 27, 255, 255, 255, 255, 255, 255, 255, 236, 76, 250, 254, 7, 6, 205, 254, 3, 251, 160, 102, 1, + 6, 216, 102, 159, 27, 49, 229, 170, 155, 119, 233, 166, 29, 159, 65, 252, 27, 68, 168, 99, 164, 59, 76, 246, 12, + 27, 85, 169, 65, 200, 217, 96, 21, 93, 27, 198, 107, 147, 243, 138, 49, 132, 55, 27, 82, 151, 99, 252, 213, 176, + 174, 173, 255, 255, 71, 255, 171, 139, 4, 5, 58, 123, 67, 5, 130, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2569, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4605845500571264302" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5315843561837265495" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8060944743055303301" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "862adc59305a35" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "455616105449174466" + } + }, + { + "_tag": "ByteArray", + "bytearray": "606d" + }, + { + "_tag": "ByteArray", + "bytearray": "92" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f371f2783785" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecd6" + } + } + ] + }, + "cborHex": "bf1b3feb401477e1a52e9f1b49c5ab8e10db8257ff1b6fde3a88fbdd2285a047862adc59305a359f1b0652ac6f173eb5c242606d4192ff46f371f278378542ecd6ff", + "cborBytes": [ + 191, 27, 63, 235, 64, 20, 119, 225, 165, 46, 159, 27, 73, 197, 171, 142, 16, 219, 130, 87, 255, 27, 111, 222, 58, + 136, 251, 221, 34, 133, 160, 71, 134, 42, 220, 89, 48, 90, 53, 159, 27, 6, 82, 172, 111, 23, 62, 181, 194, 66, 96, + 109, 65, 146, 255, 70, 243, 113, 242, 120, 55, 133, 66, 236, 214, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2570, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd319b4884a851b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5919061778562578773" + } + } + } + ] + }, + "cborHex": "bf48fd319b4884a851b01b5224bb53bad07955ff", + "cborBytes": [191, 72, 253, 49, 155, 72, 132, 168, 81, 176, 27, 82, 36, 187, 83, 186, 208, 121, 85, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2571, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8fb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22268cfb2f2b69" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a564f0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc3f7926eaa26de20a70d7" + } + } + ] + }, + "cborHex": "bf428fb64722268cfb2f2b6943a564f04bcc3f7926eaa26de20a70d7ff", + "cborBytes": [ + 191, 66, 143, 182, 71, 34, 38, 140, 251, 47, 43, 105, 67, 165, 100, 240, 75, 204, 63, 121, 38, 234, 162, 109, 226, + 10, 112, 215, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2572, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2915136238070666815" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "023e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14332143358110401566" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c458ab811e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2440098224629736237" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d509b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "359ee108896673b0" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b2874a4f6a612163fbf42023e1bc6e600730225041e45c458ab811e1b21dcf868381de32d43d509b141f5ff48359ee108896673b080ff", + "cborBytes": [ + 191, 27, 40, 116, 164, 246, 166, 18, 22, 63, 191, 66, 2, 62, 27, 198, 230, 0, 115, 2, 37, 4, 30, 69, 196, 88, 171, + 129, 30, 27, 33, 220, 248, 104, 56, 29, 227, 45, 67, 213, 9, 177, 65, 245, 255, 72, 53, 158, 225, 8, 137, 102, + 115, 176, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2573, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2166104492786736632" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1974973605073813667" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e2668a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8740946257570528848" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8170170831830293490" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8456367234321275946" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16589226453323403446" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b1e0f8c8f46ee5df8d8669f1b1b688407ab3280a39f43e2668affff1b794e144f4b457e50bf1b7162471589809bf21b755b0d3223f8dc2aff1be638c590d8dad0b6a0ff", + "cborBytes": [ + 191, 27, 30, 15, 140, 143, 70, 238, 93, 248, 216, 102, 159, 27, 27, 104, 132, 7, 171, 50, 128, 163, 159, 67, 226, + 102, 138, 255, 255, 27, 121, 78, 20, 79, 75, 69, 126, 80, 191, 27, 113, 98, 71, 21, 137, 128, 155, 242, 27, 117, + 91, 13, 50, 35, 248, 220, 42, 255, 27, 230, 56, 197, 144, 216, 218, 208, 182, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2574, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c993b00" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "297333789764950244" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "701d8488fb4f2006b44361b4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4135346477954753739" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9615508336469060393" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4852837730037977135" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1283681844771644720" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7633243747732707123" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5866601075686386588" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ccd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3864243848456218017" + } + } + } + ] + }, + "cborHex": "bf444c993b00bf1b04205781a6a918e44c701d8488fb4f2006b44361b41b3963b3b631a7e4cb1b857125e30a0bab291b4358be343b86d02f1b11d08dd62a3b65301b69eebabef39457331b516a5a9883362b9cff425ccd1b35a08d4e78b8a5a1ff", + "cborBytes": [ + 191, 68, 76, 153, 59, 0, 191, 27, 4, 32, 87, 129, 166, 169, 24, 228, 76, 112, 29, 132, 136, 251, 79, 32, 6, 180, + 67, 97, 180, 27, 57, 99, 179, 182, 49, 167, 228, 203, 27, 133, 113, 37, 227, 10, 11, 171, 41, 27, 67, 88, 190, 52, + 59, 134, 208, 47, 27, 17, 208, 141, 214, 42, 59, 101, 48, 27, 105, 238, 186, 190, 243, 148, 87, 51, 27, 81, 106, + 90, 152, 131, 54, 43, 156, 255, 66, 92, 205, 27, 53, 160, 141, 78, 120, 184, 165, 161, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2575, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "64" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10099344129048497121" + } + } + ] + } + } + ] + }, + "cborHex": "bf4164d8669f1bffffffffffffffeb9f1b8c2813fa0c5ccbe1ffffff", + "cborBytes": [ + 191, 65, 100, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 27, 140, 40, 19, 250, 12, 92, 203, + 225, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2576, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4163483292483141053" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "603a53" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17712868483249722479" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dac9174c87d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8328a8cd93ad7aedcb5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9425348227306556033" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14125982343945490789" + } + }, + { + "_tag": "ByteArray", + "bytearray": "482cfb9d517a48" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7136626254409297097" + } + }, + { + "_tag": "ByteArray", + "bytearray": "89517e507372d3ca8fe8b0b8" + } + ] + } + } + ] + }, + "cborHex": "bf1b39c7a9fed4bb3dbd43603a531bf5d0c009e94fd46f462dac9174c87d4af8328a8cd93ad7aedcb59f1b82cd90466cf70a811bc4099219624f916547482cfb9d517a481b630a63c454caecc94c89517e507372d3ca8fe8b0b8ffff", + "cborBytes": [ + 191, 27, 57, 199, 169, 254, 212, 187, 61, 189, 67, 96, 58, 83, 27, 245, 208, 192, 9, 233, 79, 212, 111, 70, 45, + 172, 145, 116, 200, 125, 74, 248, 50, 138, 140, 217, 58, 215, 174, 220, 181, 159, 27, 130, 205, 144, 70, 108, 247, + 10, 129, 27, 196, 9, 146, 25, 98, 79, 145, 101, 71, 72, 44, 251, 157, 81, 122, 72, 27, 99, 10, 99, 196, 84, 202, + 236, 201, 76, 137, 81, 126, 80, 115, 114, 211, 202, 143, 232, 176, 184, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2577, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6642dbddab81415cd5c7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b9ef387440b9afc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6604613c18d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "79311fdca9ce51ff782f2323" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "425712975873317026" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ada8ed41715a3aebc25918" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5eb2c4081e4a9d177c6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19b7532c5596ab75" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f00a5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2aa2b1247222" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11601675177592850453" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3db6313d8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8aac0573f49cd04e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18203822332421873978" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1801cc5296b52" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7346898028070960367" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4a6642dbddab81415cd5c7483b9ef387440b9afc46a6604613c18d9f4c79311fdca9ce51ff782f23231b05e86fb22f3418a2ff4bada8ed41715a3aebc25918a041af804ac5eb2c4081e4a9d177c6bf4819b7532c5596ab75432f00a5462aa2b12472221ba1016e1b0fe38815414245e3db6313d8488aac0573f49cd04e1bfca0f7f69e54213a47b1801cc5296b521b65f56cd4bc2ffcefffff", + "cborBytes": [ + 191, 74, 102, 66, 219, 221, 171, 129, 65, 92, 213, 199, 72, 59, 158, 243, 135, 68, 11, 154, 252, 70, 166, 96, 70, + 19, 193, 141, 159, 76, 121, 49, 31, 220, 169, 206, 81, 255, 120, 47, 35, 35, 27, 5, 232, 111, 178, 47, 52, 24, + 162, 255, 75, 173, 168, 237, 65, 113, 90, 58, 235, 194, 89, 24, 160, 65, 175, 128, 74, 197, 235, 44, 64, 129, 228, + 169, 209, 119, 198, 191, 72, 25, 183, 83, 44, 85, 150, 171, 117, 67, 47, 0, 165, 70, 42, 162, 177, 36, 114, 34, + 27, 161, 1, 110, 27, 15, 227, 136, 21, 65, 66, 69, 227, 219, 99, 19, 216, 72, 138, 172, 5, 115, 244, 156, 208, 78, + 27, 252, 160, 247, 246, 158, 84, 33, 58, 71, 177, 128, 28, 197, 41, 107, 82, 27, 101, 245, 108, 212, 188, 47, 252, + 239, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2578, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d13d6b6f6c4de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7887323390368933163" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "413a38eb26e97a96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9aad6625f0fc591117f34ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "332358882263544326" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2318814032350445122" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10793224411177524786" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15731325356622091108" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14638311316016231481" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c90a1c683c04cd5a73221" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17537956442824229209" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a347c43f9b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17822666485655572671" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "325a4ee7701f" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cdd3cb0fcfe27d6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9694844768375090553" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d832c5" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da78b5d38d8102d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3516" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10164272445689987728" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54f88463025f5e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15185870482629251785" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17910477963797312421" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15600554343842376845" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9727986223579620349" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf473d13d6b6f6c4de1b6d7566d5af91e52b48413a38eb26e97a964cb9aad6625f0fc591117f34ae4145bf1b049cc6a47b43b20641861b202e1513aa707e42419d1b95c93c6ac14f9e321bda50e5104f8e13641bcb25ba95b6ba74394b0c90a1c683c04cd5a732211bf3635676f4cfc15945a347c43f9b1bf756d4bd7bc290bf46325a4ee7701fff489cdd3cb0fcfe27d69f1b868b01f38b8d2d7943d832c5ff48da78b5d38d8102d742351641edbf1b8d0ebfefcda482904754f88463025f5e1bd2bf0cbeea34d2c91bf88eccd07599b3a51bd8804d853be6ec8d1b8700bfede45b63fdffff", + "cborBytes": [ + 191, 71, 61, 19, 214, 182, 246, 196, 222, 27, 109, 117, 102, 213, 175, 145, 229, 43, 72, 65, 58, 56, 235, 38, 233, + 122, 150, 76, 185, 170, 214, 98, 95, 15, 197, 145, 17, 127, 52, 174, 65, 69, 191, 27, 4, 156, 198, 164, 123, 67, + 178, 6, 65, 134, 27, 32, 46, 21, 19, 170, 112, 126, 66, 65, 157, 27, 149, 201, 60, 106, 193, 79, 158, 50, 27, 218, + 80, 229, 16, 79, 142, 19, 100, 27, 203, 37, 186, 149, 182, 186, 116, 57, 75, 12, 144, 161, 198, 131, 192, 76, 213, + 167, 50, 33, 27, 243, 99, 86, 118, 244, 207, 193, 89, 69, 163, 71, 196, 63, 155, 27, 247, 86, 212, 189, 123, 194, + 144, 191, 70, 50, 90, 78, 231, 112, 31, 255, 72, 156, 221, 60, 176, 252, 254, 39, 214, 159, 27, 134, 139, 1, 243, + 139, 141, 45, 121, 67, 216, 50, 197, 255, 72, 218, 120, 181, 211, 141, 129, 2, 215, 66, 53, 22, 65, 237, 191, 27, + 141, 14, 191, 239, 205, 164, 130, 144, 71, 84, 248, 132, 99, 2, 95, 94, 27, 210, 191, 12, 190, 234, 52, 210, 201, + 27, 248, 142, 204, 208, 117, 153, 179, 165, 27, 216, 128, 77, 133, 59, 230, 236, 141, 27, 135, 0, 191, 237, 228, + 91, 99, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2579, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2921301349505950734" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7727939841538220263" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2778790378126388500" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "09d6e2cb55" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "516226088617370916" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8801929051499135797" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9889144051515703342" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f26db" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10e91436ffb2f4e592" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e67" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b58" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18265260092642726582" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53a7b66f03194c64a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea62a45630c1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de293e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10383294556201152179" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9871315226978801487" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb30178853" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7932851699370028164" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b288a8c19832be40ea01b6b3f28576c7960e7d8669f1b26903f20517f2d149f4509d6e2cb551b072a00e47bd3e524ffff1b7a26bbd674cc03351b893d4c1eb342c02e434f26dbbf4910e91436ffb2f4e592428e67424b581bfd7b3d47e01692b64953a7b66f03194c64a846ea62a45630c143de293e1b9018df62c49deeb341ed1b88fdf4e601f9d74f45fb301788531b6e1726972ccdec84ffff", + "cborBytes": [ + 191, 27, 40, 138, 140, 25, 131, 43, 228, 14, 160, 27, 107, 63, 40, 87, 108, 121, 96, 231, 216, 102, 159, 27, 38, + 144, 63, 32, 81, 127, 45, 20, 159, 69, 9, 214, 226, 203, 85, 27, 7, 42, 0, 228, 123, 211, 229, 36, 255, 255, 27, + 122, 38, 187, 214, 116, 204, 3, 53, 27, 137, 61, 76, 30, 179, 66, 192, 46, 67, 79, 38, 219, 191, 73, 16, 233, 20, + 54, 255, 178, 244, 229, 146, 66, 142, 103, 66, 75, 88, 27, 253, 123, 61, 71, 224, 22, 146, 182, 73, 83, 167, 182, + 111, 3, 25, 76, 100, 168, 70, 234, 98, 164, 86, 48, 193, 67, 222, 41, 62, 27, 144, 24, 223, 98, 196, 157, 238, + 179, 65, 237, 27, 136, 253, 244, 230, 1, 249, 215, 79, 69, 251, 48, 23, 136, 83, 27, 110, 23, 38, 151, 44, 205, + 236, 132, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2580, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01d04f92a95e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "002df83733124e80a855290d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "733aa7346f52f67781" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "223a4f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdb1adedb450c6a953" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9fcf721efa2907c90d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7476526097855359795" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e954daa1e769df3fcc83ed7e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6266912944613894064" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecf4b240db1e61b8d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14525918698048834208" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c4c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9100b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6276654141311797191" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4648556f16453b39b9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4190590373826600941" + } + }, + { + "_tag": "ByteArray", + "bytearray": "651dd00a3dbe" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cccdcc22c8ceb48ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16750140909828379488" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b708648e19830d9a1726c8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58fa09" + } + } + ] + }, + "cborHex": "bf4601d04f92a95ebf4c002df83733124e80a855290d49733aa7346f52f6778143223a4f49bdb1adedb450c6a953499fcf721efa2907c90d1b67c1f4dfa89b2b334ce954daa1e769df3fcc83ed7e1b56f88c1e9e0227b049ecf4b240db1e61b8d41bc9966e182167caa0ff427c4c9f439100b81b571b27afb6dfc7c7494648556f16453b39b91b3a27f7be071b1fed46651dd00a3dbeff497cccdcc22c8ceb48ce1be8747469540f13604bb708648e19830d9a1726c84358fa09ff", + "cborBytes": [ + 191, 70, 1, 208, 79, 146, 169, 94, 191, 76, 0, 45, 248, 55, 51, 18, 78, 128, 168, 85, 41, 13, 73, 115, 58, 167, + 52, 111, 82, 246, 119, 129, 67, 34, 58, 79, 73, 189, 177, 173, 237, 180, 80, 198, 169, 83, 73, 159, 207, 114, 30, + 250, 41, 7, 201, 13, 27, 103, 193, 244, 223, 168, 155, 43, 51, 76, 233, 84, 218, 161, 231, 105, 223, 63, 204, 131, + 237, 126, 27, 86, 248, 140, 30, 158, 2, 39, 176, 73, 236, 244, 178, 64, 219, 30, 97, 184, 212, 27, 201, 150, 110, + 24, 33, 103, 202, 160, 255, 66, 124, 76, 159, 67, 145, 0, 184, 27, 87, 27, 39, 175, 182, 223, 199, 199, 73, 70, + 72, 85, 111, 22, 69, 59, 57, 185, 27, 58, 39, 247, 190, 7, 27, 31, 237, 70, 101, 29, 208, 10, 61, 190, 255, 73, + 124, 204, 220, 194, 44, 140, 235, 72, 206, 27, 232, 116, 116, 105, 84, 15, 19, 96, 75, 183, 8, 100, 142, 25, 131, + 13, 154, 23, 38, 200, 67, 88, 250, 9, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2581, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "015d5ba1c926f896" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4802613299709066637" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "436d33" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12636534378489296500" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1458047004111676280" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16816496496992719224" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6b9071c3f7" + }, + { + "_tag": "ByteArray", + "bytearray": "b0f43dd88bf10e0cb7ccd5" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57f2094148d9ff66ba81" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d50ccc17" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6e9e2276" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16126322286219976465" + } + } + ] + } + } + ] + }, + "cborHex": "bf48015d5ba1c926f8961b42a64f59cab9bd8d43436d339f1baf5dfd10e5ddb6741b143c060671e623781be960327765da1178456b9071c3f74bb0f43dd88bf10e0cb7ccd5ff41b14a57f2094148d9ff66ba8144d50ccc179f446e9e22761bdfcc34adab9b5f11ffff", + "cborBytes": [ + 191, 72, 1, 93, 91, 161, 201, 38, 248, 150, 27, 66, 166, 79, 89, 202, 185, 189, 141, 67, 67, 109, 51, 159, 27, + 175, 93, 253, 16, 229, 221, 182, 116, 27, 20, 60, 6, 6, 113, 230, 35, 120, 27, 233, 96, 50, 119, 101, 218, 17, + 120, 69, 107, 144, 113, 195, 247, 75, 176, 244, 61, 216, 139, 241, 14, 12, 183, 204, 213, 255, 65, 177, 74, 87, + 242, 9, 65, 72, 217, 255, 102, 186, 129, 68, 213, 12, 204, 23, 159, 68, 110, 158, 34, 118, 27, 223, 204, 52, 173, + 171, 155, 95, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2582, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f3e8c6f8d8133" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17128290244998227919" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff9243b4a4" + } + ] + } + } + ] + }, + "cborHex": "bf476f3e8c6f8d8133d8669f1bedb3e93a6ee867cf9f45ff9243b4a4ffffff", + "cborBytes": [ + 191, 71, 111, 62, 140, 111, 141, 129, 51, 216, 102, 159, 27, 237, 179, 233, 58, 110, 232, 103, 207, 159, 69, 255, + 146, 67, 180, 164, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2583, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aefcfa46eefd0303cb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31a936" + } + } + ] + }, + "cborHex": "bf49aefcfa46eefd0303cb4331a936ff", + "cborBytes": [191, 73, 174, 252, 250, 70, 238, 253, 3, 3, 203, 67, 49, 169, 54, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2584, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1657b62c2aeca85e67ed" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6785580543108322901" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13942442524909684932" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87b239499f" + }, + { + "_tag": "ByteArray", + "bytearray": "e851ee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15490170583020493415" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18acac6cd7e7da0a67" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "807e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "947d6d66a3a343" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4694397670490811342" + } + } + } + ] + }, + "cborHex": "bf4a1657b62c2aeca85e67edd8669f1b5e2b398d6ac616559f1bc17d819b2e8ac8c44587b239499f43e851ee1bd6f8241327245a67ffff4918acac6cd7e7da0a6742807e47947d6d66a3a3431b4125d9cf3006abceff", + "cborBytes": [ + 191, 74, 22, 87, 182, 44, 42, 236, 168, 94, 103, 237, 216, 102, 159, 27, 94, 43, 57, 141, 106, 198, 22, 85, 159, + 27, 193, 125, 129, 155, 46, 138, 200, 196, 69, 135, 178, 57, 73, 159, 67, 232, 81, 238, 27, 214, 248, 36, 19, 39, + 36, 90, 103, 255, 255, 73, 24, 172, 172, 108, 215, 231, 218, 10, 103, 66, 128, 126, 71, 148, 125, 109, 102, 163, + 163, 67, 27, 65, 37, 217, 207, 48, 6, 171, 206, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2585, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "350078098995455874" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10177411464179364495" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8749390980171891194" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15036328409562748479" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da727e7439262ca7" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6930766907813491068" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10848896321859095177" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7502544885239724482" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7354109091247810164" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cbbd82aad74288" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5548280794240204790" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15105875612109762325" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6570254882105060686" + } + }, + { + "_tag": "ByteArray", + "bytearray": "adf3ea66df2098a70c10e4" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7986413069182628426" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67b1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10240568101132269555" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dcef75e5a9927643398d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13486885694668585836" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10436646299465559679" + } + } + } + ] + }, + "cborHex": "bf1b04dbba2d1e44a7829f1b8d3d6dcdef66328f1b796c14bd7e2701fa1bd0abc505ca1a163f48da727e7439262ca7ff1b602f07c82941717c1b968f05b98d740a891b681e64d2ac2339c2d8669f1b660f0b41374be6749f47cbbd82aad742881b4cff73fc7ecf3ff61bd1a2d9d5b909ef151b5b2e3c012ba5ed4e4badf3ea66df2098a70c10e4ffff1b6ed5705f622af24a4267b11b8e1dce6e5e2f77f34adcef75e5a9927643398d1bbb2b0b152d04bb6c1b90d66a837e0a2e7fff", + "cborBytes": [ + 191, 27, 4, 219, 186, 45, 30, 68, 167, 130, 159, 27, 141, 61, 109, 205, 239, 102, 50, 143, 27, 121, 108, 20, 189, + 126, 39, 1, 250, 27, 208, 171, 197, 5, 202, 26, 22, 63, 72, 218, 114, 126, 116, 57, 38, 44, 167, 255, 27, 96, 47, + 7, 200, 41, 65, 113, 124, 27, 150, 143, 5, 185, 141, 116, 10, 137, 27, 104, 30, 100, 210, 172, 35, 57, 194, 216, + 102, 159, 27, 102, 15, 11, 65, 55, 75, 230, 116, 159, 71, 203, 189, 130, 170, 215, 66, 136, 27, 76, 255, 115, 252, + 126, 207, 63, 246, 27, 209, 162, 217, 213, 185, 9, 239, 21, 27, 91, 46, 60, 1, 43, 165, 237, 78, 75, 173, 243, + 234, 102, 223, 32, 152, 167, 12, 16, 228, 255, 255, 27, 110, 213, 112, 95, 98, 42, 242, 74, 66, 103, 177, 27, 142, + 29, 206, 110, 94, 47, 119, 243, 74, 220, 239, 117, 229, 169, 146, 118, 67, 57, 141, 27, 187, 43, 11, 21, 45, 4, + 187, 108, 27, 144, 214, 106, 131, 126, 10, 46, 127, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2586, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0706f3aa490567f4" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c94cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15158180068337366384" + } + } + } + ] + }, + "cborHex": "bf480706f3aa490567f480437c94cb1bd25cac75eea7b570ff", + "cborBytes": [ + 191, 72, 7, 6, 243, 170, 73, 5, 103, 244, 128, 67, 124, 148, 203, 27, 210, 92, 172, 117, 238, 167, 181, 112, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2587, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9010325848311903058" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1667537943937551784" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13764537154863889169" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b7d0b1b9ecb26b3521b172448eccde20da81bbf05759d5d53fb11a0ff", + "cborBytes": [ + 191, 27, 125, 11, 27, 158, 203, 38, 179, 82, 27, 23, 36, 72, 236, 205, 226, 13, 168, 27, 191, 5, 117, 157, 93, 83, + 251, 17, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2588, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6104664606862017049" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7ebad35e0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15600884488417665711" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3789cddfb" + } + } + ] + }, + "cborHex": "bf0ba01b54b8201db4e9021945b7ebad35e01bd88179c9020962af45f3789cddfbff", + "cborBytes": [ + 191, 11, 160, 27, 84, 184, 32, 29, 180, 233, 2, 25, 69, 183, 235, 173, 53, 224, 27, 216, 129, 121, 201, 2, 9, 98, + 175, 69, 243, 120, 156, 221, 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2589, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf01801bfffffffffffffff641f91bffffffffffffffff80ff", + "cborBytes": [ + 191, 1, 128, 27, 255, 255, 255, 255, 255, 255, 255, 246, 65, 249, 27, 255, 255, 255, 255, 255, 255, 255, 255, 128, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2590, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1af59d2d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "654c070ed4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14431461431707637690" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab0aa8a24a37245bdd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7436289815743412470" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0bf7b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11437602819814669525" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6811eb1f552" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11684789144172458887" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a9699391600d173" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35bd" + } + } + ] + }, + "cborHex": "bf441af59d2dbf45654c070ed41bc846d9b602af17ba49ab0aa8a24a37245bdd1b67330230323db8f643c0bf7b1b9eba872a650f3cd546f6811eb1f5521ba228b5d165bd7387ff482a9699391600d173a041504235bdff", + "cborBytes": [ + 191, 68, 26, 245, 157, 45, 191, 69, 101, 76, 7, 14, 212, 27, 200, 70, 217, 182, 2, 175, 23, 186, 73, 171, 10, 168, + 162, 74, 55, 36, 91, 221, 27, 103, 51, 2, 48, 50, 61, 184, 246, 67, 192, 191, 123, 27, 158, 186, 135, 42, 101, 15, + 60, 213, 70, 246, 129, 30, 177, 245, 82, 27, 162, 40, 181, 209, 101, 189, 115, 135, 255, 72, 42, 150, 153, 57, 22, + 0, 209, 115, 160, 65, 80, 66, 53, 189, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2591, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16483536730680099642" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3390394640458826858" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1653750962449543306" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9974e74913e5847022a553" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9349998080385284122" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12895676945017193679" + } + } + ] + } + } + ] + }, + "cborHex": "bf1be4c14952b24a833a9f1b2f0d19f660efc46a1b16f34dbd07c3f08a4b9974e74913e5847022a5531b81c1ddb737f2f81a1bb2f6a5db75f1c4cfffff", + "cborBytes": [ + 191, 27, 228, 193, 73, 82, 178, 74, 131, 58, 159, 27, 47, 13, 25, 246, 96, 239, 196, 106, 27, 22, 243, 77, 189, 7, + 195, 240, 138, 75, 153, 116, 231, 73, 19, 229, 132, 112, 34, 165, 83, 27, 129, 193, 221, 183, 55, 242, 248, 26, + 27, 178, 246, 165, 219, 117, 241, 196, 207, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2592, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d20307" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + }, + "cborHex": "bf43d2030712ff", + "cborBytes": [191, 67, 210, 3, 7, 18, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2593, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8517461389799841212" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16015520265228648049" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13962152565877757068" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44dbd45c22bd65" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4699778907191558322" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8f396dcc943f821ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "521b55aba75abf7787" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdd64aa2e8fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f88bd3fa7fee3dd7449811" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a826" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14587963346812072865" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16308814519178469730" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a10e30cfad" + }, + { + "_tag": "ByteArray", + "bytearray": "62cb5919ecbc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6598677417573956279" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b76341a01af1fddbc801bde428ed3ce05fe711bc1c387c8b4f3d48c4744dbd45c22bd65bf41101b4138f803fe06c0b249a8f396dcc943f821ae49521b55aba75abf778746fdd64aa2e8fe4bf88bd3fa7fee3dd7449811ff42a826d8669f1bca72db5fa326f3a19f1be2548c65bb5da16245a10e30cfad4662cb5919ecbc1b5b93362665e33ab7ffffff", + "cborBytes": [ + 191, 27, 118, 52, 26, 1, 175, 31, 221, 188, 128, 27, 222, 66, 142, 211, 206, 5, 254, 113, 27, 193, 195, 135, 200, + 180, 243, 212, 140, 71, 68, 219, 212, 92, 34, 189, 101, 191, 65, 16, 27, 65, 56, 248, 3, 254, 6, 192, 178, 73, + 168, 243, 150, 220, 201, 67, 248, 33, 174, 73, 82, 27, 85, 171, 167, 90, 191, 119, 135, 70, 253, 214, 74, 162, + 232, 254, 75, 248, 139, 211, 250, 127, 238, 61, 215, 68, 152, 17, 255, 66, 168, 38, 216, 102, 159, 27, 202, 114, + 219, 95, 163, 38, 243, 161, 159, 27, 226, 84, 140, 101, 187, 93, 161, 98, 69, 161, 14, 48, 207, 173, 70, 98, 203, + 89, 25, 236, 188, 27, 91, 147, 54, 38, 101, 227, 58, 183, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2594, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8f975" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e354da02b703fb" + } + } + ] + }, + "cborHex": "bf43f8f97547e354da02b703fbff", + "cborBytes": [191, 67, 248, 249, 117, 71, 227, 84, 218, 2, 183, 3, 251, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2595, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13452208423828473435" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10922230947069226669" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02c47cd5a4e69a9352" + }, + { + "_tag": "ByteArray", + "bytearray": "4dbb121505299161e0dcc7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5195307685607245299" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a" + } + ] + } + } + ] + }, + "cborHex": "bf1bbaafd849e2d0465b9f1b97938f2d8ad6eead4902c47cd5a4e69a93524b4dbb121505299161e0dcc71b481970d06b7a05f3418affff", + "cborBytes": [ + 191, 27, 186, 175, 216, 73, 226, 208, 70, 91, 159, 27, 151, 147, 143, 45, 138, 214, 238, 173, 73, 2, 196, 124, + 213, 164, 230, 154, 147, 82, 75, 77, 187, 18, 21, 5, 41, 145, 97, 224, 220, 199, 27, 72, 25, 112, 208, 107, 122, + 5, 243, 65, 138, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2596, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a8e6c27d8e3499e95d032ea" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10049195791727092125" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9301f814b90527" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16311785301975635817" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3646fc0149d4d5c3191cbf" + } + ] + } + } + ] + }, + "cborHex": "bf4c2a8e6c27d8e3499e95d032ea9f413f1b8b75ea54643e619d479301f814b905271be25f1a4f00b217694b3646fc0149d4d5c3191cbfffff", + "cborBytes": [ + 191, 76, 42, 142, 108, 39, 216, 227, 73, 158, 149, 208, 50, 234, 159, 65, 63, 27, 139, 117, 234, 84, 100, 62, 97, + 157, 71, 147, 1, 248, 20, 185, 5, 39, 27, 226, 95, 26, 79, 0, 178, 23, 105, 75, 54, 70, 252, 1, 73, 212, 213, 195, + 25, 28, 191, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2597, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efc34f52d6b8f3c57947" + } + } + ] + }, + "cborHex": "bf41f84aefc34f52d6b8f3c57947ff", + "cborBytes": [191, 65, 248, 74, 239, 195, 79, 82, 214, 184, 243, 197, 121, 71, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2598, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06e8d500fb4302ff01" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "03" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13789120432914281455" + } + }, + { + "_tag": "ByteArray", + "bytearray": "44" + }, + { + "_tag": "ByteArray", + "bytearray": "d1aee1" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "543857b350e2e1f333" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c81e9e64fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0001b8b6e5" + } + } + ] + }, + "cborHex": "bf4906e8d500fb4302ff01d905079f41031bbf5ccbf9d0efb3ef414443d1aee1ff49543857b350e2e1f3330e45c81e9e64fa450001b8b6e5ff", + "cborBytes": [ + 191, 73, 6, 232, 213, 0, 251, 67, 2, 255, 1, 217, 5, 7, 159, 65, 3, 27, 191, 92, 203, 249, 208, 239, 179, 239, 65, + 68, 67, 209, 174, 225, 255, 73, 84, 56, 87, 179, 80, 226, 225, 243, 51, 14, 69, 200, 30, 158, 100, 250, 69, 0, 1, + 184, 182, 229, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2599, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4445be40492640f0b37752" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11454785849377509" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7daf387dc8ac6956101" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4b4445be40492640f0b37752d8669f1b0028b2112987c2e580ff4ae7daf387dc8ac695610180ff", + "cborBytes": [ + 191, 75, 68, 69, 190, 64, 73, 38, 64, 240, 179, 119, 82, 216, 102, 159, 27, 0, 40, 178, 17, 41, 135, 194, 229, + 128, 255, 74, 231, 218, 243, 135, 220, 138, 198, 149, 97, 1, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2600, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0784fc6d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cf058e52" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13932973509882487923" + } + } + ] + } + } + ] + }, + "cborHex": "bf440784fc6dd8669f1bfffffffffffffff59f1bfffffffffffffffd44cf058e521bc15bdd9651792473ffffff", + "cborBytes": [ + 191, 68, 7, 132, 252, 109, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 253, 68, 207, 5, 142, 82, 27, 193, 91, 221, 150, 81, 121, 36, 115, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2601, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2059709618357146122" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1017137913279876254" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4866920668640998713" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4422537856230884569" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8395233501958359895" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7315683843299881779" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7991593470015187436" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12260829366662294126" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "daf4e712e4ec4122682eda" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17697972588055676373" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "771162863425484270" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4145926357202399574" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b1c958efc2ea2120abf1b0e1d998b08a10c9e1b438ac68fe45a75391b3d6002bfa65c04d91b7481dc63e2afcb571b658687b200f433331b6ee7d7eb719629ec1baa2737592b956a6e4bdaf4e712e4ec4122682eda1bf59bd44d0ba8c5d51b0ab3b889da72f5eeff1b39894a0e49fa7156d9050580ff", + "cborBytes": [ + 191, 27, 28, 149, 142, 252, 46, 162, 18, 10, 191, 27, 14, 29, 153, 139, 8, 161, 12, 158, 27, 67, 138, 198, 143, + 228, 90, 117, 57, 27, 61, 96, 2, 191, 166, 92, 4, 217, 27, 116, 129, 220, 99, 226, 175, 203, 87, 27, 101, 134, + 135, 178, 0, 244, 51, 51, 27, 110, 231, 215, 235, 113, 150, 41, 236, 27, 170, 39, 55, 89, 43, 149, 106, 110, 75, + 218, 244, 231, 18, 228, 236, 65, 34, 104, 46, 218, 27, 245, 155, 212, 77, 11, 168, 197, 213, 27, 10, 179, 184, + 137, 218, 114, 245, 238, 255, 27, 57, 137, 74, 14, 73, 250, 113, 86, 217, 5, 5, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2602, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4605ba8320ae209f536e6a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5445355582127804939" + } + }, + { + "_tag": "ByteArray", + "bytearray": "668e2bb2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3486868712572610875" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f22" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17254711235126014905" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "41fd136fc708" + }, + { + "_tag": "ByteArray", + "bytearray": "1853" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15800090199002452356" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7ef0b4eca240c5512ace" + } + ] + } + } + ] + }, + "cborHex": "bf4b4605ba8320ae209f536e6a9f1b4b91ca0d1c6b120b44668e2bb21b3063d89eaf50693bff429f22d8669f1bef750c72efa0b3b99f4641fd136fc7084218531bdb453252d2ac11844a7ef0b4eca240c5512aceffffff", + "cborBytes": [ + 191, 75, 70, 5, 186, 131, 32, 174, 32, 159, 83, 110, 106, 159, 27, 75, 145, 202, 13, 28, 107, 18, 11, 68, 102, + 142, 43, 178, 27, 48, 99, 216, 158, 175, 80, 105, 59, 255, 66, 159, 34, 216, 102, 159, 27, 239, 117, 12, 114, 239, + 160, 179, 185, 159, 70, 65, 253, 19, 111, 199, 8, 66, 24, 83, 27, 219, 69, 50, 82, 210, 172, 17, 132, 74, 126, + 240, 180, 236, 162, 64, 197, 81, 42, 206, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2603, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14382342426413616872" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3adfe630f5507ead71d1cd" + }, + { + "_tag": "ByteArray", + "bytearray": "8dde0204fff3f9c72500" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cd6ffc8" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9ab001e737cf03f03483" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5604" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2f23320dacd23ae" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00f8" + }, + { + "_tag": "ByteArray", + "bytearray": "6c0ffe163d0203d6fa" + }, + { + "_tag": "ByteArray", + "bytearray": "fdf00703" + }, + { + "_tag": "ByteArray", + "bytearray": "c60201" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f43d2cc4c4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5469821149757472248" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13752721431145616040" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "301b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15991614305140152198" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9095758652183812405" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4101d8669f1bc798583c6469cee89f0a104b3adfe630f5507ead71d1cd4a8dde0204fff3f9c725001bfffffffffffffff2ffff448cd6ffc8804a9ab001e737cf03f0348342560448c2f23320dacd23aed905069f4200f8496c0ffe163d0203d6fa44fdf0070343c60201ff45f43d2cc4c4bf1b4be8b55af8367df841991bbedb7b46ce5612a842301b1bddeda07bbaef17861b7e3aa04d821a1935ffff", + "cborBytes": [ + 191, 65, 1, 216, 102, 159, 27, 199, 152, 88, 60, 100, 105, 206, 232, 159, 10, 16, 75, 58, 223, 230, 48, 245, 80, + 126, 173, 113, 209, 205, 74, 141, 222, 2, 4, 255, 243, 249, 199, 37, 0, 27, 255, 255, 255, 255, 255, 255, 255, + 242, 255, 255, 68, 140, 214, 255, 200, 128, 74, 154, 176, 1, 231, 55, 207, 3, 240, 52, 131, 66, 86, 4, 72, 194, + 242, 51, 32, 218, 205, 35, 174, 217, 5, 6, 159, 66, 0, 248, 73, 108, 15, 254, 22, 61, 2, 3, 214, 250, 68, 253, + 240, 7, 3, 67, 198, 2, 1, 255, 69, 244, 61, 44, 196, 196, 191, 27, 75, 232, 181, 90, 248, 54, 125, 248, 65, 153, + 27, 190, 219, 123, 70, 206, 86, 18, 168, 66, 48, 27, 27, 221, 237, 160, 123, 186, 239, 23, 134, 27, 126, 58, 160, + 77, 130, 26, 25, 53, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2604, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + } + ] + }, + "cborHex": "bf0e1bfffffffffffffff0ff", + "cborBytes": [191, 14, 27, 255, 255, 255, 255, 255, 255, 255, 240, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2605, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "24a3235b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4467758119145755842" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35b55a6c592270f7ae2bc8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "510c31" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51ac87a667" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "abdf8999aaf7fd2c11" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e1d33" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5099719181208615080" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6953282eef0b2ebd15e4d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18263766862236307227" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd61aa2c121109a99192eaf9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4642146415115917798" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ceafe14cb9b578fc7f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10004153857362772447" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13983601067000282795" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12756726830917278336" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8690459271859868614" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15006693698012747532" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "898922462568898088" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4424a3235b1b3e00aa56920cd4c24b35b55a6c592270f7ae2bc843510c314551ac87a66749abdf8999aaf7fd2c11439e1d331b46c5d7936a2f78a84bc6953282eef0b2ebd15e4d1bfd75ef3214254f1b4cfd61aa2c121109a99192eaf9bf1b406c3791c45659e64a2ceafe14cb9b578fc7f91b8ad5e4edd27641df1bc20fbb1507533eab1bb108ff76f584da801b789ab6a9ea3513c61bd0427c68d324970c1b0c799d378e09de28ffff", + "cborBytes": [ + 191, 68, 36, 163, 35, 91, 27, 62, 0, 170, 86, 146, 12, 212, 194, 75, 53, 181, 90, 108, 89, 34, 112, 247, 174, 43, + 200, 67, 81, 12, 49, 69, 81, 172, 135, 166, 103, 73, 171, 223, 137, 153, 170, 247, 253, 44, 17, 67, 158, 29, 51, + 27, 70, 197, 215, 147, 106, 47, 120, 168, 75, 198, 149, 50, 130, 238, 240, 178, 235, 209, 94, 77, 27, 253, 117, + 239, 50, 20, 37, 79, 27, 76, 253, 97, 170, 44, 18, 17, 9, 169, 145, 146, 234, 249, 191, 27, 64, 108, 55, 145, 196, + 86, 89, 230, 74, 44, 234, 254, 20, 203, 155, 87, 143, 199, 249, 27, 138, 213, 228, 237, 210, 118, 65, 223, 27, + 194, 15, 187, 21, 7, 83, 62, 171, 27, 177, 8, 255, 118, 245, 132, 218, 128, 27, 120, 154, 182, 169, 234, 53, 19, + 198, 27, 208, 66, 124, 104, 211, 36, 151, 12, 27, 12, 121, 157, 55, 142, 9, 222, 40, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2606, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7269739239376508401" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12184321051253184287" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17761304975398359464" + } + }, + { + "_tag": "ByteArray", + "bytearray": "57fc608257" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12056650964509525975" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10372071884312254115" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12722511186279776904" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8a59fb28aa8eb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13062508961636109696" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b64e34d524cc155f1d8669f1ba9176770d942971f9f1bf67cd4c58dff51a84557fc608257ffff1ba751d42c607607d71b8ff1006cd93f96a31bb08f70846523c28847d8a59fb28aa8eb1bb5475ab145ad4d8080ff", + "cborBytes": [ + 191, 27, 100, 227, 77, 82, 76, 193, 85, 241, 216, 102, 159, 27, 169, 23, 103, 112, 217, 66, 151, 31, 159, 27, 246, + 124, 212, 197, 141, 255, 81, 168, 69, 87, 252, 96, 130, 87, 255, 255, 27, 167, 81, 212, 44, 96, 118, 7, 215, 27, + 143, 241, 0, 108, 217, 63, 150, 163, 27, 176, 143, 112, 132, 101, 35, 194, 136, 71, 216, 165, 159, 178, 138, 168, + 235, 27, 181, 71, 90, 177, 69, 173, 77, 128, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2607, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d148e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17469762567621295473" + } + } + } + ] + }, + "cborHex": "bf43d148e91bf271107f197bbd71ff", + "cborBytes": [191, 67, 209, 72, 233, 27, 242, 113, 16, 127, 25, 123, 189, 113, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2608, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a7c2ccb2473943f5f8f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9cc89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92a4379088d91c97231663da" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "54595712873466472" + } + } + } + ] + }, + "cborHex": "bf41194a5a7c2ccb2473943f5f8f43a9cc894c92a4379088d91c97231663da41af1b00c1f682f8150a68ff", + "cborBytes": [ + 191, 65, 25, 74, 90, 124, 44, 203, 36, 115, 148, 63, 95, 143, 67, 169, 204, 137, 76, 146, 164, 55, 144, 136, 217, + 28, 151, 35, 22, 99, 218, 65, 175, 27, 0, 193, 246, 130, 248, 21, 10, 104, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2609, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2611f907ff488c0307f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8c90cbe1072" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc76c4dabb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16791119000826225284" + } + } + } + ] + }, + "cborHex": "bf4a2611f907ff488c0307f946a8c90cbe107245fc76c4dabb1be90609c4a18f2284ff", + "cborBytes": [ + 191, 74, 38, 17, 249, 7, 255, 72, 140, 3, 7, 249, 70, 168, 201, 12, 190, 16, 114, 69, 252, 118, 196, 218, 187, 27, + 233, 6, 9, 196, 161, 143, 34, 132, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2610, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "30065235126549172" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "105c45e3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "171152714354363104" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14133b6be4001bdbc0a79a86" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7440247032461465477" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11330093664676850473" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13251752193497368353" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14393976976305589712" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45516d1c361d0de52599" + } + } + ] + }, + "cborHex": "bf1b006ad02c0bce7ab444105c45e31b02600e7ca56f8ae04c14133b6be4001bdbc0a79a861b6741114183051785a01b9d3c94289af7ab291bb7e7ae68c0ea07211bc7c1adcc21d88dd04a45516d1c361d0de52599ff", + "cborBytes": [ + 191, 27, 0, 106, 208, 44, 11, 206, 122, 180, 68, 16, 92, 69, 227, 27, 2, 96, 14, 124, 165, 111, 138, 224, 76, 20, + 19, 59, 107, 228, 0, 27, 219, 192, 167, 154, 134, 27, 103, 65, 17, 65, 131, 5, 23, 133, 160, 27, 157, 60, 148, 40, + 154, 247, 171, 41, 27, 183, 231, 174, 104, 192, 234, 7, 33, 27, 199, 193, 173, 204, 33, 216, 141, 208, 74, 69, 81, + 109, 28, 54, 29, 13, 229, 37, 153, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2611, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5654252783813146388" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11450017733895710205" + } + }, + { + "_tag": "ByteArray", + "bytearray": "170a6acec7ade6f4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16028750952006123379" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3563249555957343089" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9a06a50cab061b3ea9" + } + ] + } + } + ] + }, + "cborHex": "bf1b4e77f0f3097237149f1b9ee6a276d4c6e5fd48170a6acec7ade6f41bde7190111f877f731b317334979ce7e371499a06a50cab061b3ea9ffff", + "cborBytes": [ + 191, 27, 78, 119, 240, 243, 9, 114, 55, 20, 159, 27, 158, 230, 162, 118, 212, 198, 229, 253, 72, 23, 10, 106, 206, + 199, 173, 230, 244, 27, 222, 113, 144, 17, 31, 135, 127, 115, 27, 49, 115, 52, 151, 156, 231, 227, 113, 73, 154, + 6, 165, 12, 171, 6, 27, 62, 169, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2612, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff8a0ff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 248, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2613, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46" + } + } + ] + }, + "cborHex": "bf41c14146ff", + "cborBytes": [191, 65, 193, 65, 70, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2614, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3858322824170567662" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16523633100244707141" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4903230212065909407" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b358b842a9377f7eed8669f1be54fbcc23af8e7459f1b440bc5e64226da9fffffff", + "cborBytes": [ + 191, 27, 53, 139, 132, 42, 147, 119, 247, 238, 216, 102, 159, 27, 229, 79, 188, 194, 58, 248, 231, 69, 159, 27, + 68, 11, 197, 230, 66, 38, 218, 159, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2615, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ad3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14519421388578141075" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "152388030736028445" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e7f20d359" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72bb0361e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0f426ad31bc97f58d36268b393d8669f1b021d641b480ad31d80ff1bffffffffffffffeebf453e7f20d35941cd4572bb0361e20cffff", + "cborBytes": [ + 191, 15, 66, 106, 211, 27, 201, 127, 88, 211, 98, 104, 179, 147, 216, 102, 159, 27, 2, 29, 100, 27, 72, 10, 211, + 29, 128, 255, 27, 255, 255, 255, 255, 255, 255, 255, 238, 191, 69, 62, 127, 32, 211, 89, 65, 205, 69, 114, 187, 3, + 97, 226, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2616, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1603645525241173903" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12651752008691233201" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b63484ff2853925" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "522db5d0ecf07b20bc54" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92fb08221f73e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10286205617259558387" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "861261030545353786" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf01bf1b16414b1bd5a5178f10ff021baf940d6b886031b10ebf487b63484ff28539254a522db5d0ecf07b20bc544792fb08221f73e01b8ebff1829f6235f3ff1bfffffffffffffff7bf051b0bf3d058188aec3affff", + "cborBytes": [ + 191, 1, 191, 27, 22, 65, 75, 27, 213, 165, 23, 143, 16, 255, 2, 27, 175, 148, 13, 107, 136, 96, 49, 177, 14, 191, + 72, 123, 99, 72, 79, 242, 133, 57, 37, 74, 82, 45, 181, 208, 236, 240, 123, 32, 188, 84, 71, 146, 251, 8, 34, 31, + 115, 224, 27, 142, 191, 241, 130, 159, 98, 53, 243, 255, 27, 255, 255, 255, 255, 255, 255, 255, 247, 191, 5, 27, + 11, 243, 208, 88, 24, 138, 236, 58, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2617, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2fe2621660149f" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "497494" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc011a82f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + } + ] + }, + "cborHex": "bf472fe2621660149f80434974940f45cc011a82f80fff", + "cborBytes": [191, 71, 47, 226, 98, 22, 96, 20, 159, 128, 67, 73, 116, 148, 15, 69, 204, 1, 26, 130, 248, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2618, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "428456153567975544" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8016575557668848636" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3355990465762001785" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9808934202753375196" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f00d9230781b3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15495098779061349900" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11036211901659420608" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca7bc701dd5c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11944323618140299922" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18289957737205367900" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16339609207151133994" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14951455461546403340" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b05f22e9a033fd878bf1b6f4098fefdee43fc1b2e92df8c3d5783791b882055affc4b5bdc477f00d9230781b31bd709a63e358a6e0c418aff1b99288040905917c046ca7bc701dd5c1ba5c2c30c058fa292801bfdd2fba85b08845cd8669f1be2c1f400c0f2052a9f1bcf7e3d86ac8c260cffffff", + "cborBytes": [ + 191, 27, 5, 242, 46, 154, 3, 63, 216, 120, 191, 27, 111, 64, 152, 254, 253, 238, 67, 252, 27, 46, 146, 223, 140, + 61, 87, 131, 121, 27, 136, 32, 85, 175, 252, 75, 91, 220, 71, 127, 0, 217, 35, 7, 129, 179, 27, 215, 9, 166, 62, + 53, 138, 110, 12, 65, 138, 255, 27, 153, 40, 128, 64, 144, 89, 23, 192, 70, 202, 123, 199, 1, 221, 92, 27, 165, + 194, 195, 12, 5, 143, 162, 146, 128, 27, 253, 210, 251, 168, 91, 8, 132, 92, 216, 102, 159, 27, 226, 193, 244, 0, + 192, 242, 5, 42, 159, 27, 207, 126, 61, 134, 172, 140, 38, 12, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2619, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2923863915121185085" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13898215825418075279" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6512979236859237758" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7587039318578335200" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5847773709321861885" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7591242309637855057" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1303035150558489611" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11855176796472310856" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a33" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11920002039023033256" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16494731652061707032" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13646511813444253453" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "732ad3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15259071490337181918" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dadfa94b8f9b" + } + } + ] + }, + "cborHex": "bf1b2893a6bd5061913d9f1bc0e061a845c1bc8fff1b5a62c01bd27d557ebf1b694a940ff8c88de01b51277734aeff7afd1b695982a915e157511b12154f90cee2ec0b1ba4860c7c272f7c48424a331ba56c5ab319e65ba81be4e90f0b7287bb18ff1bbd6226312784370d43732ad31bd3c31caca7d690de46dadfa94b8f9bff", + "cborBytes": [ + 191, 27, 40, 147, 166, 189, 80, 97, 145, 61, 159, 27, 192, 224, 97, 168, 69, 193, 188, 143, 255, 27, 90, 98, 192, + 27, 210, 125, 85, 126, 191, 27, 105, 74, 148, 15, 248, 200, 141, 224, 27, 81, 39, 119, 52, 174, 255, 122, 253, 27, + 105, 89, 130, 169, 21, 225, 87, 81, 27, 18, 21, 79, 144, 206, 226, 236, 11, 27, 164, 134, 12, 124, 39, 47, 124, + 72, 66, 74, 51, 27, 165, 108, 90, 179, 25, 230, 91, 168, 27, 228, 233, 15, 11, 114, 135, 187, 24, 255, 27, 189, + 98, 38, 49, 39, 132, 55, 13, 67, 115, 42, 211, 27, 211, 195, 28, 172, 167, 214, 144, 222, 70, 218, 223, 169, 75, + 143, 155, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2620, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10834645083956441689" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1932479361466380631" + } + } + } + ] + }, + "cborHex": "bf1b965c644ca8a7f2591b1ad18bbd93fa3157ff", + "cborBytes": [191, 27, 150, 92, 100, 76, 168, 167, 242, 89, 27, 26, 209, 139, 189, 147, 250, 49, 87, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2621, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17706174442674098633" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11637961418527958693" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "92d46c177d1e" + }, + { + "_tag": "ByteArray", + "bytearray": "349cd616fa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10347628690960433262" + } + }, + { + "_tag": "ByteArray", + "bytearray": "893a5fcaaa" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "08519b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6467254510403503926" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef15606d35b8f4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "529898185739347293" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b82ab3b2204e82c4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1264108814874213195" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12fb28a2e41b22e1e4ab77dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4629653293984252554" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6628922487994436848" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bf5b8f7d822b091c9d8669f1ba182583fe50f66a59f4692d46c177d1e45349cd616fa1b8f9a29786856406e45893a5fcaaaffff4308519b1b59c04db654a4c73647ef15606d35b8f4bf1b075a9397a81e255d48b82ab3b2204e82c41b118b044504047b4b4c12fb28a2e41b22e1e4ab77dd1b403fd5245526028a1b5bfea9e19c81ccf0ffff", + "cborBytes": [ + 191, 27, 245, 184, 247, 216, 34, 176, 145, 201, 216, 102, 159, 27, 161, 130, 88, 63, 229, 15, 102, 165, 159, 70, + 146, 212, 108, 23, 125, 30, 69, 52, 156, 214, 22, 250, 27, 143, 154, 41, 120, 104, 86, 64, 110, 69, 137, 58, 95, + 202, 170, 255, 255, 67, 8, 81, 155, 27, 89, 192, 77, 182, 84, 164, 199, 54, 71, 239, 21, 96, 109, 53, 184, 244, + 191, 27, 7, 90, 147, 151, 168, 30, 37, 93, 72, 184, 42, 179, 178, 32, 78, 130, 196, 27, 17, 139, 4, 69, 4, 4, 123, + 75, 76, 18, 251, 40, 162, 228, 27, 34, 225, 228, 171, 119, 221, 27, 64, 63, 213, 36, 85, 38, 2, 138, 27, 91, 254, + 169, 225, 156, 129, 204, 240, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2622, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0201" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "847cc2965627923f4fe34845" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + } + ] + }, + "cborHex": "bf4202010b4c847cc2965627923f4fe3484504ff", + "cborBytes": [191, 66, 2, 1, 11, 76, 132, 124, 194, 150, 86, 39, 146, 63, 79, 227, 72, 69, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2623, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "82ded1bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2b37205" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd3a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14003675120111877468" + } + } + } + ] + }, + "cborHex": "bf4482ded1bb44c2b3720542fd3a1bc2570c53bc3e7d5cff", + "cborBytes": [ + 191, 68, 130, 222, 209, 187, 68, 194, 179, 114, 5, 66, 253, 58, 27, 194, 87, 12, 83, 188, 62, 125, 92, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2624, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "ByteArray", + "bytearray": "81" + } + ] + } + } + ] + }, + "cborHex": "bf019f054181ffff", + "cborBytes": [191, 1, 159, 5, 65, 129, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2625, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "df46e4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1458511050348608133" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a321c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7105402125634532824" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16746108152328899741" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf43df46e4bf1b143dac12a102ba85435a321c1b629b759654c075d81be86620a3cdd64c9dffff", + "cborBytes": [ + 191, 67, 223, 70, 228, 191, 27, 20, 61, 172, 18, 161, 2, 186, 133, 67, 90, 50, 28, 27, 98, 155, 117, 150, 84, 192, + 117, 216, 27, 232, 102, 32, 163, 205, 214, 76, 157, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2626, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc03f902025048" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffe47cc03f902025048ff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 254, 71, 204, 3, 249, 2, 2, 80, 72, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2627, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "045d470405c42ffd04cb42" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + }, + "cborHex": "bf4b045d470405c42ffd04cb4212ff", + "cborBytes": [191, 75, 4, 93, 71, 4, 5, 196, 47, 253, 4, 203, 66, 18, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2628, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f510bec83011" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11066895147707635611" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf46f510bec83011d8669f1b999582807d9b979b80ffff", + "cborBytes": [ + 191, 70, 245, 16, 190, 200, 48, 17, 216, 102, 159, 27, 153, 149, 130, 128, 125, 155, 151, 155, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2629, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9104414702036630291" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11319886012953735833" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7488891713519515377" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16853343511230617785" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a90391bf90790a7293ce74" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd08770a7beb2a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16255562035927833257" + } + } + } + ] + }, + "cborHex": "bf1b7e5960ef2abcbb13bf1b9d18505a7c0532991b67ede355e9b276f11be9e31aa1708918b94ba90391bf90790a7293ce74ff47dd08770a7beb2a1be1975b8bc7cddaa9ff", + "cborBytes": [ + 191, 27, 126, 89, 96, 239, 42, 188, 187, 19, 191, 27, 157, 24, 80, 90, 124, 5, 50, 153, 27, 103, 237, 227, 85, + 233, 178, 118, 241, 27, 233, 227, 26, 161, 112, 137, 24, 185, 75, 169, 3, 145, 191, 144, 121, 10, 114, 147, 206, + 116, 255, 71, 221, 8, 119, 10, 123, 235, 42, 27, 225, 151, 91, 139, 199, 205, 218, 169, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2630, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13691967522404491604" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7e0240c3df" + }, + { + "_tag": "ByteArray", + "bytearray": "c3d8dd8b41b76773ab" + }, + { + "_tag": "ByteArray", + "bytearray": "cb064877" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b211" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6319000477064887156" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff1b75" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bbe03a3eb211ae1549f457e0240c3df49c3d8dd8b41b76773ab44cb064877ff42b211bf1b57b1997452f9fb7443ff1b75ffff", + "cborBytes": [ + 191, 27, 190, 3, 163, 235, 33, 26, 225, 84, 159, 69, 126, 2, 64, 195, 223, 73, 195, 216, 221, 139, 65, 183, 103, + 115, 171, 68, 203, 6, 72, 119, 255, 66, 178, 17, 191, 27, 87, 177, 153, 116, 82, 249, 251, 116, 67, 255, 27, 117, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2631, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0719" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c9e309e231edcb1e91" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b88b6731e5ffa2810011" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13001192658676275016" + } + } + } + ] + }, + "cborHex": "bf42071949c9e309e231edcb1e914ab88b6731e5ffa28100111bb46d83d6fcd0d748ff", + "cborBytes": [ + 191, 66, 7, 25, 73, 201, 227, 9, 226, 49, 237, 203, 30, 145, 74, 184, 139, 103, 49, 229, 255, 162, 129, 0, 17, 27, + 180, 109, 131, 214, 252, 208, 215, 72, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2632, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05fe4a15f8fcd4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2a405ae304fa281bc8f91" + } + } + ] + }, + "cborHex": "bf4705fe4a15f8fcd44bb2a405ae304fa281bc8f91ff", + "cborBytes": [191, 71, 5, 254, 74, 21, 248, 252, 212, 75, 178, 164, 5, 174, 48, 79, 162, 129, 188, 143, 145, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2633, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "010702" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12360658346538608957" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "52cec9f7cc2d836193f1ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7119687157514027435" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2132535840439939443" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8552973271366586676" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17707421321257999808" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52fbbef1fafa" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b979c978d81600a1374d87d" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07f5f8e9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a503" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + }, + "cborHex": "bf43010702d8669f1bab89e146cf66a93d9f4b52cec9f7cc2d836193f1ed1b62ce35bf7f88c1ab1b1d984a0c583631731b76b243dfed3751341bf5bd65dfadc2ddc0ffff4652fbbef1fafa804c5b979c978d81600a1374d87d8041764407f5f8e942a50310ff", + "cborBytes": [ + 191, 67, 1, 7, 2, 216, 102, 159, 27, 171, 137, 225, 70, 207, 102, 169, 61, 159, 75, 82, 206, 201, 247, 204, 45, + 131, 97, 147, 241, 237, 27, 98, 206, 53, 191, 127, 136, 193, 171, 27, 29, 152, 74, 12, 88, 54, 49, 115, 27, 118, + 178, 67, 223, 237, 55, 81, 52, 27, 245, 189, 101, 223, 173, 194, 221, 192, 255, 255, 70, 82, 251, 190, 241, 250, + 250, 128, 76, 91, 151, 156, 151, 141, 129, 96, 10, 19, 116, 216, 125, 128, 65, 118, 68, 7, 245, 248, 233, 66, 165, + 3, 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2634, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13370580743393023376" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "46" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1169778431918327364" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17650434722017824875" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17030809700823271591" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1bb98dd858829e95909f41461b103be3493c67c6441bf4f2f0dd1917d06bff1bec59973096d908a780ff", + "cborBytes": [ + 191, 27, 185, 141, 216, 88, 130, 158, 149, 144, 159, 65, 70, 27, 16, 59, 227, 73, 60, 103, 198, 68, 27, 244, 242, + 240, 221, 25, 23, 208, 107, 255, 27, 236, 89, 151, 48, 150, 217, 8, 167, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2635, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ea00402" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7435bd0b9a58ee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7025183119007212914" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5686624850251343178" + } + } + ] + } + } + ] + }, + "cborHex": "bf446ea004029f477435bd0b9a58ee1b617e76d3627ee5721b4eeaf32c1a23e54affff", + "cborBytes": [ + 191, 68, 110, 160, 4, 2, 159, 71, 116, 53, 189, 11, 154, 88, 238, 27, 97, 126, 118, 211, 98, 126, 229, 114, 27, + 78, 234, 243, 44, 26, 35, 229, 74, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2636, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0d4b3ff0" + }, + { + "_tag": "ByteArray", + "bytearray": "f6187b" + }, + { + "_tag": "ByteArray", + "bytearray": "795c9f" + } + ] + } + } + ] + }, + "cborHex": "bf10d87e9f440d4b3ff043f6187b43795c9fffff", + "cborBytes": [191, 16, 216, 126, 159, 68, 13, 75, 63, 240, 67, 246, 24, 123, 67, 121, 92, 159, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2637, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "961973882509326974" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "988304574128973972" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7908358313112229608" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12047821747431464601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fad3a10" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16578239762481613704" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ace93449dd7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11449806516174548125" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0d599e263e2bfa7e801b0db729c61ed9e8949f1b6dc021fc498fd6e8ff1ba732760c14e0de99446fad3a101be611bd3a8bf90b88bf468ace93449dd71b9ee5e25cdf896c9dffff", + "cborBytes": [ + 191, 27, 13, 89, 158, 38, 62, 43, 250, 126, 128, 27, 13, 183, 41, 198, 30, 217, 232, 148, 159, 27, 109, 192, 33, + 252, 73, 143, 214, 232, 255, 27, 167, 50, 118, 12, 20, 224, 222, 153, 68, 111, 173, 58, 16, 27, 230, 17, 189, 58, + 139, 249, 11, 136, 191, 70, 138, 206, 147, 68, 157, 215, 27, 158, 229, 226, 92, 223, 137, 108, 157, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2638, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5974332373280743701" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "839262260981221204" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13823483139284487249" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1216328078137985851" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f73704" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3676678924816979556" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0685aada0f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6819983574577922862" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15686198804168003528" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17625720664842836042" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "827ece02" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6090430835399605306" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14584197933554573096" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "ByteArray", + "bytearray": "442ac39299" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b52e917a3df83e115bf1b0ba5a8946b2d47541bbfd6e0acdba74c511b10e143f153bf8b3b43f737041b3306300092e19664450685aada0f1b5ea572ed60b7432e1bd9b092b40e974fc81bf49b238f4238184a44827ece02ff1b54858e9389143c3ad8669f1bca657ac00b819f289f1bfffffffffffffffd45442ac39299ffff1bffffffffffffffffa0ff", + "cborBytes": [ + 191, 27, 82, 233, 23, 163, 223, 131, 225, 21, 191, 27, 11, 165, 168, 148, 107, 45, 71, 84, 27, 191, 214, 224, 172, + 219, 167, 76, 81, 27, 16, 225, 67, 241, 83, 191, 139, 59, 67, 247, 55, 4, 27, 51, 6, 48, 0, 146, 225, 150, 100, + 69, 6, 133, 170, 218, 15, 27, 94, 165, 114, 237, 96, 183, 67, 46, 27, 217, 176, 146, 180, 14, 151, 79, 200, 27, + 244, 155, 35, 143, 66, 56, 24, 74, 68, 130, 126, 206, 2, 255, 27, 84, 133, 142, 147, 137, 20, 60, 58, 216, 102, + 159, 27, 202, 101, 122, 192, 11, 129, 159, 40, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 69, 68, 42, 195, + 146, 153, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2639, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "150d559efa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "92fa161e68ebe3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e5320" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17996841674539948042" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8390ade0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17378053698023952036" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0897b9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bffe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16731727615842147080" + } + } + } + ] + }, + "cborHex": "bf45150d559efad9050a9f4792fa161e68ebe3ff431e5320d8669f1bf9c1a026d1e6580a80ff448390ade09f1bf12b3fc3f6618ea4ff44a0897b9c0e42bffe1be833099e3cdd5b08ff", + "cborBytes": [ + 191, 69, 21, 13, 85, 158, 250, 217, 5, 10, 159, 71, 146, 250, 22, 30, 104, 235, 227, 255, 67, 30, 83, 32, 216, + 102, 159, 27, 249, 193, 160, 38, 209, 230, 88, 10, 128, 255, 68, 131, 144, 173, 224, 159, 27, 241, 43, 63, 195, + 246, 97, 142, 164, 255, 68, 160, 137, 123, 156, 14, 66, 191, 254, 27, 232, 51, 9, 158, 60, 221, 91, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2640, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "db2d6acd3264beef49f58e01" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9762933836487224210" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4cdb2d6acd3264beef49f58e01d8669f1b877ce89919766b9280ffff", + "cborBytes": [ + 191, 76, 219, 45, 106, 205, 50, 100, 190, 239, 73, 245, 142, 1, 216, 102, 159, 27, 135, 124, 232, 153, 25, 118, + 107, 146, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2641, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3167313233549514301" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9835407292656953858" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1297885167822321188" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15428869040670846110" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11028100237050440397" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b224680b38a975e181" + }, + { + "_tag": "ByteArray", + "bytearray": "cc212e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9119669067798492749" + } + }, + { + "_tag": "ByteArray", + "bytearray": "49875ddf6910" + } + ] + } + } + ] + }, + "cborHex": "bf1b2bf48e9ad21cd63d9f1b887e62d28c1aaa021b120303af034c3624ff1bd61e5aa597352c9ed8669f1b990baebc78caeacd9f49b224680b38a975e18143cc212e1b7e8f92b2f73f364d4649875ddf6910ffffff", + "cborBytes": [ + 191, 27, 43, 244, 142, 154, 210, 28, 214, 61, 159, 27, 136, 126, 98, 210, 140, 26, 170, 2, 27, 18, 3, 3, 175, 3, + 76, 54, 36, 255, 27, 214, 30, 90, 165, 151, 53, 44, 158, 216, 102, 159, 27, 153, 11, 174, 188, 120, 202, 234, 205, + 159, 73, 178, 36, 104, 11, 56, 169, 117, 225, 129, 67, 204, 33, 46, 27, 126, 143, 146, 178, 247, 63, 54, 77, 70, + 73, 135, 93, 223, 105, 16, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2642, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16367316035808159393" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2177886992507712216" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f2a484f0cb8750d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4544341037067369469" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6f62010df" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4322882372500094843" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16892813883873219147" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12105351701932383490" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8188393092722210760" + } + }, + { + "_tag": "ByteArray", + "bytearray": "49113dcee1c590b9" + }, + { + "_tag": "ByteArray", + "bytearray": "8add" + } + ] + } + } + ] + }, + "cborHex": "bf1be324633780e666a11b1e3968ae455db2d8485f2a484f0cb8750d1b3f10be18a4a17bfd45b6f62010dfd8669f1b3bfdf69d3aaa7f7b9f1bea6f54b9b50cd24b1ba7fed93c6ad99d021b71a3042244f837c84849113dcee1c590b9428addffffff", + "cborBytes": [ + 191, 27, 227, 36, 99, 55, 128, 230, 102, 161, 27, 30, 57, 104, 174, 69, 93, 178, 216, 72, 95, 42, 72, 79, 12, 184, + 117, 13, 27, 63, 16, 190, 24, 164, 161, 123, 253, 69, 182, 246, 32, 16, 223, 216, 102, 159, 27, 59, 253, 246, 157, + 58, 170, 127, 123, 159, 27, 234, 111, 84, 185, 181, 12, 210, 75, 27, 167, 254, 217, 60, 106, 217, 157, 2, 27, 113, + 163, 4, 34, 68, 248, 55, 200, 72, 73, 17, 61, 206, 225, 197, 144, 185, 66, 138, 221, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2643, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4862521614797647453" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3576029851579112105" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3260666379834333031" + } + }, + { + "_tag": "ByteArray", + "bytearray": "657891ec7bfb" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7326026240198928255" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0104af" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7805082851013861244" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a7a9c05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10486903623383296915" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9a6fcfbf86031d3fc" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12465040228097591285" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4035198615478091204" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8464799840549724204" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b437b25a55aac2e5d9f1b31a09c341190daa91b2d4036cbf515976746657891ec7bfbff1b65ab460cee3f677f9f430104afff1b6c51397ff92c9f7cbf08447a7a9c051b9188f7489184ab931bfffffffffffffff2417849f9a6fcfbf86031d3fcff1bacfcb80b7ab607f59f1b37ffe7c2e9b83dc41b7579029b46bfe02cffff", + "cborBytes": [ + 191, 27, 67, 123, 37, 165, 90, 172, 46, 93, 159, 27, 49, 160, 156, 52, 17, 144, 218, 169, 27, 45, 64, 54, 203, + 245, 21, 151, 103, 70, 101, 120, 145, 236, 123, 251, 255, 27, 101, 171, 70, 12, 238, 63, 103, 127, 159, 67, 1, 4, + 175, 255, 27, 108, 81, 57, 127, 249, 44, 159, 124, 191, 8, 68, 122, 122, 156, 5, 27, 145, 136, 247, 72, 145, 132, + 171, 147, 27, 255, 255, 255, 255, 255, 255, 255, 242, 65, 120, 73, 249, 166, 252, 251, 248, 96, 49, 211, 252, 255, + 27, 172, 252, 184, 11, 122, 182, 7, 245, 159, 27, 55, 255, 231, 194, 233, 184, 61, 196, 27, 117, 121, 2, 155, 70, + 191, 224, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2644, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8fbc30" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8155214854300452022" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17418932667496404880" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9fe4b016" + } + ] + } + } + ] + }, + "cborHex": "bf438fbc30d8669f1b712d24b3a99144b69f1bf1bc7af8bc921790449fe4b016ffffff", + "cborBytes": [ + 191, 67, 143, 188, 48, 216, 102, 159, 27, 113, 45, 36, 179, 169, 145, 68, 182, 159, 27, 241, 188, 122, 248, 188, + 146, 23, 144, 68, 159, 228, 176, 22, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2645, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "128499546566545977" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16822611998922616180" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4577767656500068001" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0148fde48eabea6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a9e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bd77edb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f84f533d74c583c65171eb63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4724791080398105314" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8073249142672234358" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15528910386624840747" + } + } + } + ] + }, + "cborHex": "bf1b01c885a822e5d239d8669f1be975ec7ba601ad7480ff1b3f877f6df5f57ea1bf480148fde48eabea6b427a9e443bd77edb41514cf84f533d74c583c65171eb631b4191d47461102ae2ff1b7009f152443497761bd781c5b88fa5c42bff", + "cborBytes": [ + 191, 27, 1, 200, 133, 168, 34, 229, 210, 57, 216, 102, 159, 27, 233, 117, 236, 123, 166, 1, 173, 116, 128, 255, + 27, 63, 135, 127, 109, 245, 245, 126, 161, 191, 72, 1, 72, 253, 228, 142, 171, 234, 107, 66, 122, 158, 68, 59, + 215, 126, 219, 65, 81, 76, 248, 79, 83, 61, 116, 197, 131, 198, 81, 113, 235, 99, 27, 65, 145, 212, 116, 97, 16, + 42, 226, 255, 27, 112, 9, 241, 82, 68, 52, 151, 118, 27, 215, 129, 197, 184, 143, 165, 196, 43, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2646, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4904c4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "73e7f63e40" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc0d81d13f1e1887d80813" + } + } + ] + } + } + ] + }, + "cborHex": "bf434904c4bf4573e7f63e404bcc0d81d13f1e1887d80813ffff", + "cborBytes": [ + 191, 67, 73, 4, 196, 191, 69, 115, 231, 246, 62, 64, 75, 204, 13, 129, 209, 63, 30, 24, 135, 216, 8, 19, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2647, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9965230101694696215" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "16a354ec98ec40" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7591840207036793098" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8849344296180865524" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9629989634591252985" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bac3fd4968fd" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ea43bf7035d390294260300" + } + } + ] + }, + "cborHex": "bf1b8a4b9bfabc8acb179f4716a354ec98ec401b695ba271ebf4c10a1b7acf2fc064fd59f41b85a4988d008161f946bac3fd4968fdff1bfffffffffffffffd4c5ea43bf7035d390294260300ff", + "cborBytes": [ + 191, 27, 138, 75, 155, 250, 188, 138, 203, 23, 159, 71, 22, 163, 84, 236, 152, 236, 64, 27, 105, 91, 162, 113, + 235, 244, 193, 10, 27, 122, 207, 47, 192, 100, 253, 89, 244, 27, 133, 164, 152, 141, 0, 129, 97, 249, 70, 186, + 195, 253, 73, 104, 253, 255, 27, 255, 255, 255, 255, 255, 255, 255, 253, 76, 94, 164, 59, 247, 3, 93, 57, 2, 148, + 38, 3, 0, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2648, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3e48ce10d1922a9ba58f0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + } + ] + }, + "cborHex": "bf4bb3e48ce10d1922a9ba58f01bfffffffffffffff7ff", + "cborBytes": [ + 191, 75, 179, 228, 140, 225, 13, 25, 34, 169, 186, 88, 240, 27, 255, 255, 255, 255, 255, 255, 255, 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2649, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + }, + "cborHex": "bf0312ff", + "cborBytes": [191, 3, 18, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2650, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe060103" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16770419288493162391" + } + } + } + ] + }, + "cborHex": "bf44fe0601031be8bc7f7d48fe7f97ff", + "cborBytes": [191, 68, 254, 6, 1, 3, 27, 232, 188, 127, 125, 72, 254, 127, 151, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2651, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0548" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14701746576770401584" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0604fc47" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "945359592914421896" + } + }, + { + "_tag": "ByteArray", + "bytearray": "62" + } + ] + } + } + ] + }, + "cborHex": "bf420548d8669f1bcc07189e4e3705309f440604fc471b0d1e978a80ac08884162ffffff", + "cborBytes": [ + 191, 66, 5, 72, 216, 102, 159, 27, 204, 7, 24, 158, 78, 55, 5, 48, 159, 68, 6, 4, 252, 71, 27, 13, 30, 151, 138, + 128, 172, 8, 136, 65, 98, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2652, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7612098487238091124" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12532096504843780802" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7301275887553168831" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6760388477411761814" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4589385429030434337" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11681029216928990019" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bdbf7659" + }, + { + "_tag": "ByteArray", + "bytearray": "3ad2b7eacf2c807620" + }, + { + "_tag": "ByteArray", + "bytearray": "d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7311642803587378152" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbaa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4243075126538520076" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa9f5986750e8bc8a801776a" + }, + { + "_tag": "ByteArray", + "bytearray": "f695a65efeeef9" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f158af8331ef43dd7bcd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4704992361857672299" + } + } + } + ] + }, + "cborHex": "bf1b69a39b3e571d61749f1badeaf35f8e20c2c21b655357bc64bb45bf1b5dd1b9808bc59e96ff41a1d8669f1b3fb0c5bb6ab676219f1ba21b5a2f1e03034344bdbf7659493ad2b7eacf2c80762041d81b65782c64205debe8ffff42bbaad8669f1b3ae26e58c89fc60c9f4cfa9f5986750e8bc8a801776a47f695a65efeeef9ffff4af158af8331ef43dd7bcd1b414b7d9fff73e46bff", + "cborBytes": [ + 191, 27, 105, 163, 155, 62, 87, 29, 97, 116, 159, 27, 173, 234, 243, 95, 142, 32, 194, 194, 27, 101, 83, 87, 188, + 100, 187, 69, 191, 27, 93, 209, 185, 128, 139, 197, 158, 150, 255, 65, 161, 216, 102, 159, 27, 63, 176, 197, 187, + 106, 182, 118, 33, 159, 27, 162, 27, 90, 47, 30, 3, 3, 67, 68, 189, 191, 118, 89, 73, 58, 210, 183, 234, 207, 44, + 128, 118, 32, 65, 216, 27, 101, 120, 44, 100, 32, 93, 235, 232, 255, 255, 66, 187, 170, 216, 102, 159, 27, 58, + 226, 110, 88, 200, 159, 198, 12, 159, 76, 250, 159, 89, 134, 117, 14, 139, 200, 168, 1, 119, 106, 71, 246, 149, + 166, 94, 254, 238, 249, 255, 255, 74, 241, 88, 175, 131, 49, 239, 67, 221, 123, 205, 27, 65, 75, 125, 159, 255, + 115, 228, 107, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2653, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fe11f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + }, + "cborHex": "bf433fe11f12ff", + "cborBytes": [191, 67, 63, 225, 31, 18, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2654, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a02e77c78a6571" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11606826850263169376" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + } + } + ] + }, + "cborHex": "bf079f412f0447a02e77c78a65711ba113bb865366f96008ffff", + "cborBytes": [ + 191, 7, 159, 65, 47, 4, 71, 160, 46, 119, 199, 138, 101, 113, 27, 161, 19, 187, 134, 83, 102, 249, 96, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2655, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8954368241464021808" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7847934aa77564" + }, + { + "_tag": "ByteArray", + "bytearray": "10f1f603b864" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6397170409827617792" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b7c444e792c8093309f477847934aa775644610f1f603b8641b58c75098156a4c00ffff", + "cborBytes": [ + 191, 27, 124, 68, 78, 121, 44, 128, 147, 48, 159, 71, 120, 71, 147, 74, 167, 117, 100, 70, 16, 241, 246, 3, 184, + 100, 27, 88, 199, 80, 152, 21, 106, 76, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2656, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11826598155831701354" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2414385611323943932" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15673340753789161013" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2fcb8537930fa98d1904c0" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + } + ] + }, + "cborHex": "bf0d1ba420845cdba36f6a1b21819eebe9c72bfc1bd982e45fe9418e351bffffffffffffffed9f4b2fcb8537930fa98d1904c0ff1bffffffffffffffff1bffffffffffffffebff", + "cborBytes": [ + 191, 13, 27, 164, 32, 132, 92, 219, 163, 111, 106, 27, 33, 129, 158, 235, 233, 199, 43, 252, 27, 217, 130, 228, + 95, 233, 65, 142, 53, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 75, 47, 203, 133, 55, 147, 15, 169, 141, + 25, 4, 192, 255, 27, 255, 255, 255, 255, 255, 255, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2657, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03f303" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d53b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f91cacb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4205" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5dab" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f8fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1f5b7f7746d6ec4f9b00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15560330655996529748" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da89063c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10584828705864829956" + } + } + } + ] + }, + "cborHex": "bf4303f303a0431d53b7445f91cacb42420580425dab9f0a42f8fc044a1f5b7f7746d6ec4f9b001bd7f1664a1a4b4c54ff44da89063c1b92e4dda08d6e4c04ff", + "cborBytes": [ + 191, 67, 3, 243, 3, 160, 67, 29, 83, 183, 68, 95, 145, 202, 203, 66, 66, 5, 128, 66, 93, 171, 159, 10, 66, 248, + 252, 4, 74, 31, 91, 127, 119, 70, 214, 236, 79, 155, 0, 27, 215, 241, 102, 74, 26, 75, 76, 84, 255, 68, 218, 137, + 6, 60, 27, 146, 228, 221, 160, 141, 110, 76, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2658, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa9d0604" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + } + ] + }, + "cborHex": "bf44fa9d06040fff", + "cborBytes": [191, 68, 250, 157, 6, 4, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2659, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14115802352f0304" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4991174616990821839" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16d7bf6d89" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84d43de15a77a41ad6df8658" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9788839613584409459" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7057" + }, + { + "_tag": "ByteArray", + "bytearray": "4a237a5dadf5d7f4cb7ff0" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dea25e80" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7954" + } + } + ] + }, + "cborHex": "bf4814115802352f0304bf41a61b454436dea9af2dcf41d94516d7bf6d89ff4c84d43de15a77a41ad6df8658d8669f1b87d8f1c3daf883739f4270574b4a237a5dadf5d7f4cb7ff0ffff44dea25e80427954ff", + "cborBytes": [ + 191, 72, 20, 17, 88, 2, 53, 47, 3, 4, 191, 65, 166, 27, 69, 68, 54, 222, 169, 175, 45, 207, 65, 217, 69, 22, 215, + 191, 109, 137, 255, 76, 132, 212, 61, 225, 90, 119, 164, 26, 214, 223, 134, 88, 216, 102, 159, 27, 135, 216, 241, + 195, 218, 248, 131, 115, 159, 66, 112, 87, 75, 74, 35, 122, 93, 173, 245, 215, 244, 203, 127, 240, 255, 255, 68, + 222, 162, 94, 128, 66, 121, 84, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2660, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9964182208739077817" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2907465815124499423" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13773675405908270619" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6787737698465937575" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9295077481049418899" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b8a47e2ed2528eeb91b285964c123165bdf41acd8669f1bbf25ecce3cb25e1b9f1b5e32e3794996f8a71b80febfb8b9aeec93ffffff", + "cborBytes": [ + 191, 27, 138, 71, 226, 237, 37, 40, 238, 185, 27, 40, 89, 100, 193, 35, 22, 91, 223, 65, 172, 216, 102, 159, 27, + 191, 37, 236, 206, 60, 178, 94, 27, 159, 27, 94, 50, 227, 121, 73, 150, 248, 167, 27, 128, 254, 191, 184, 185, + 174, 236, 147, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2661, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12261951834231330967" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0438" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6157084664427272945" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a15e73daa4c1" + } + ] + } + } + ] + }, + "cborHex": "bf1baa2b343a044ed8979f41021bffffffffffffffefff4204389f1b55725be173315af146a15e73daa4c1ffff", + "cborBytes": [ + 191, 27, 170, 43, 52, 58, 4, 78, 216, 151, 159, 65, 2, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255, 66, 4, 56, + 159, 27, 85, 114, 91, 225, 115, 49, 90, 241, 70, 161, 94, 115, 218, 164, 193, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2662, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12595857010997219214" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16284680532734328220" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf019f001baecd79373e1a4f8e1be1feceaa22593d9cff41fa80ff", + "cborBytes": [ + 191, 1, 159, 0, 27, 174, 205, 121, 55, 62, 26, 79, 142, 27, 225, 254, 206, 170, 34, 89, 61, 156, 255, 65, 250, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2663, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11792882113716084130" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9221469143630130894" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1146176282645536610" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13472272799665709093" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14053185417985633997" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df8c3b1a2fc5e39d" + } + ] + } + } + ] + }, + "cborHex": "bf031ba3a8bbcd121adda21b7ff93d54254caece9f41be1b0fe80941a1109f621bbaf720bb6d3b60251bc306f1ae41bbaecd48df8c3b1a2fc5e39dffff", + "cborBytes": [ + 191, 3, 27, 163, 168, 187, 205, 18, 26, 221, 162, 27, 127, 249, 61, 84, 37, 76, 174, 206, 159, 65, 190, 27, 15, + 232, 9, 65, 161, 16, 159, 98, 27, 186, 247, 32, 187, 109, 59, 96, 37, 27, 195, 6, 241, 174, 65, 187, 174, 205, 72, + 223, 140, 59, 26, 47, 197, 227, 157, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2664, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13899126290780226328" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10734109749883058750" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffdd87e9f1bc0e39db8823f83181b94f737f21dd63a3effff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 253, 216, 126, 159, 27, 192, 227, 157, 184, 130, 63, 131, 24, 27, 148, + 247, 55, 242, 29, 214, 58, 62, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2665, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "022eea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2802ccb682de1f987e7cd0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "685385533039548325" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18272251362416171251" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13221278188042468230" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16336771423904888594" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6cdfbf8253" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15364157085478431309" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7090694199596438071" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11307048724764199013" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6913636577335051305" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a06eb12b65a029e66311ef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1231584592799501854" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88" + } + } + ] + }, + "cborHex": "bf43022eea41324b2802ccb682de1f987e7cd09f1b0982fa82cf0397a51bfd9413cdb77698f341a61bb77b6a7672e43b861be2b7df0dda9a7712ff456cdfbf8253d8669f1bd5387377693e2a4d9f419f1b626734ce71de52371b9ceab4e8699a8865ffff417d9f1b5ff22bd64a340429ff4ba06eb12b65a029e66311ef1b111777a974a88e1e41a44188ff", + "cborBytes": [ + 191, 67, 2, 46, 234, 65, 50, 75, 40, 2, 204, 182, 130, 222, 31, 152, 126, 124, 208, 159, 27, 9, 130, 250, 130, + 207, 3, 151, 165, 27, 253, 148, 19, 205, 183, 118, 152, 243, 65, 166, 27, 183, 123, 106, 118, 114, 228, 59, 134, + 27, 226, 183, 223, 13, 218, 154, 119, 18, 255, 69, 108, 223, 191, 130, 83, 216, 102, 159, 27, 213, 56, 115, 119, + 105, 62, 42, 77, 159, 65, 159, 27, 98, 103, 52, 206, 113, 222, 82, 55, 27, 156, 234, 180, 232, 105, 154, 136, 101, + 255, 255, 65, 125, 159, 27, 95, 242, 43, 214, 74, 52, 4, 41, 255, 75, 160, 110, 177, 43, 101, 160, 41, 230, 99, + 17, 239, 27, 17, 23, 119, 169, 116, 168, 142, 30, 65, 164, 65, 136, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2666, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22578ca1b8c10a02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12903186051427652366" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d75" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4251679322731605938" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11414935778549935842" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10005835057377071544" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "47d2e99791e68d4c29063a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2389082873993647152" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c3800ccd329c8390324cd9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7634928852632992993" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4173857389503813309" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1302133946819853170" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b41f42dee" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74cc2f293c" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1085334" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "608e2491d71c4ab16c9a97" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2521056793556023693" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2975168121850007504" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14919127613054422806" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16818804972749305029" + } + } + ] + } + } + ] + }, + "cborHex": "bf4822578ca1b8c10a021bb31153598a1ed30e423d759f1b3b00ffd1524a6fb21b9e69ff9c965daee21b8adbddf8b41c51b8ff4b47d2e99791e68d4c29063ad8669f1b2127ba374b5c54309f4bc3800ccd329c8390324cd91b69f4b7570291fce11b39ec852e848396bd1b12121becf62cbb72ffff456b41f42dee804574cc2f293c8044f10853349f4b608e2491d71c4ab16c9a971b22fc97cbee7df98d1b2949eba4c9ef8fd01bcf0b6384e6d48f161be96866034b4bb4c5ffff", + "cborBytes": [ + 191, 72, 34, 87, 140, 161, 184, 193, 10, 2, 27, 179, 17, 83, 89, 138, 30, 211, 14, 66, 61, 117, 159, 27, 59, 0, + 255, 209, 82, 74, 111, 178, 27, 158, 105, 255, 156, 150, 93, 174, 226, 27, 138, 219, 221, 248, 180, 28, 81, 184, + 255, 75, 71, 210, 233, 151, 145, 230, 141, 76, 41, 6, 58, 216, 102, 159, 27, 33, 39, 186, 55, 75, 92, 84, 48, 159, + 75, 195, 128, 12, 205, 50, 156, 131, 144, 50, 76, 217, 27, 105, 244, 183, 87, 2, 145, 252, 225, 27, 57, 236, 133, + 46, 132, 131, 150, 189, 27, 18, 18, 27, 236, 246, 44, 187, 114, 255, 255, 69, 107, 65, 244, 45, 238, 128, 69, 116, + 204, 47, 41, 60, 128, 68, 241, 8, 83, 52, 159, 75, 96, 142, 36, 145, 215, 28, 74, 177, 108, 154, 151, 27, 34, 252, + 151, 203, 238, 125, 249, 141, 27, 41, 73, 235, 164, 201, 239, 143, 208, 27, 207, 11, 99, 132, 230, 212, 143, 22, + 27, 233, 104, 102, 3, 75, 75, 180, 197, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2667, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "904147186657353715" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8864534288224802267" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6665542607983126968" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7544604663014150229" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9555199074516746553" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4064f48476327e218cec" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17309343254496782827" + } + }, + { + "_tag": "ByteArray", + "bytearray": "084fba" + }, + { + "_tag": "ByteArray", + "bytearray": "52b308057421c3f3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14667063375836473114" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10688882375386756859" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17381614294551696361" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17977420734688312826" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0c8c2d136d615ff3d8669f1b7b0526f804e8d5db80ff1b5c80c3afb810a9b841561b68b3d1f7cdb6d055d8669f1b849ae2eec2b641399f4a4064f48476327e218cec1bf03723fb2b95a9eb43084fba4852b308057421c3f3ffff1bcb8be06e4edfe71ad8669f1b945689e366dc76fb80ff1bf137e61bf19b13e99f1bf97ca0e8e4d6bdfaffff", + "cborBytes": [ + 191, 27, 12, 140, 45, 19, 109, 97, 95, 243, 216, 102, 159, 27, 123, 5, 38, 248, 4, 232, 213, 219, 128, 255, 27, + 92, 128, 195, 175, 184, 16, 169, 184, 65, 86, 27, 104, 179, 209, 247, 205, 182, 208, 85, 216, 102, 159, 27, 132, + 154, 226, 238, 194, 182, 65, 57, 159, 74, 64, 100, 244, 132, 118, 50, 126, 33, 140, 236, 27, 240, 55, 35, 251, 43, + 149, 169, 235, 67, 8, 79, 186, 72, 82, 179, 8, 5, 116, 33, 195, 243, 255, 255, 27, 203, 139, 224, 110, 78, 223, + 231, 26, 216, 102, 159, 27, 148, 86, 137, 227, 102, 220, 118, 251, 128, 255, 27, 241, 55, 230, 27, 241, 155, 19, + 233, 159, 27, 249, 124, 160, 232, 228, 214, 189, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2668, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12956763639589313400" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15364842647674710298" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0500" + }, + { + "_tag": "ByteArray", + "bytearray": "74392bf66b231aa27b14" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8989907459727364852" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bb3cfabe1e06b1b78d905099f1bd53ae2fb4c6c691a4205004a74392bf66b231aa27b141b7cc291343caf12f4ffff", + "cborBytes": [ + 191, 27, 179, 207, 171, 225, 224, 107, 27, 120, 217, 5, 9, 159, 27, 213, 58, 226, 251, 76, 108, 105, 26, 66, 5, 0, + 74, 116, 57, 43, 246, 107, 35, 26, 162, 123, 20, 27, 124, 194, 145, 52, 60, 175, 18, 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2669, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11499622266502721514" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11217070869981598366" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7073268407916400432" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a012f946727a7fd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c538fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16720108863033383148" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d731c276c634f0c8" + }, + { + "_tag": "ByteArray", + "bytearray": "ab10fc550f80be9d1c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15082433789601541189" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b9f96dd8616112fea9f1b9bab0a8691a2929e1b62294c2426d98f30ff488a012f946727a7fd9f43c538fb1be809c26c8af718ec48d731c276c634f0c849ab10fc550f80be9d1c1bd14f919f198c6c45ffff", + "cborBytes": [ + 191, 27, 159, 150, 221, 134, 22, 17, 47, 234, 159, 27, 155, 171, 10, 134, 145, 162, 146, 158, 27, 98, 41, 76, 36, + 38, 217, 143, 48, 255, 72, 138, 1, 47, 148, 103, 39, 167, 253, 159, 67, 197, 56, 251, 27, 232, 9, 194, 108, 138, + 247, 24, 236, 72, 215, 49, 194, 118, 198, 52, 240, 200, 73, 171, 16, 252, 85, 15, 128, 190, 157, 28, 27, 209, 79, + 145, 159, 25, 140, 108, 69, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2670, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ef4c94376d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11125582854374255797" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "361296" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12881729051977832252" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f5e7e8" + }, + { + "_tag": "ByteArray", + "bytearray": "a99c543b351aba9b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "575619149274225728" + } + } + ] + } + } + ] + }, + "cborHex": "bf460ef4c94376d61b9a6602a902276cb543361296d8669f1bb2c518528bf7d73c9f43f5e7e848a99c543b351aba9b1b07fd029106671c40ffffff", + "cborBytes": [ + 191, 70, 14, 244, 201, 67, 118, 214, 27, 154, 102, 2, 169, 2, 39, 108, 181, 67, 54, 18, 150, 216, 102, 159, 27, + 178, 197, 24, 82, 139, 247, 215, 60, 159, 67, 245, 231, 232, 72, 169, 156, 84, 59, 53, 26, 186, 155, 27, 7, 253, + 2, 145, 6, 103, 28, 64, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2671, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4268168891109308513" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86adc2147cb10e" + } + } + ] + }, + "cborHex": "bf1b3b3b94fe23f178614786adc2147cb10eff", + "cborBytes": [191, 27, 59, 59, 148, 254, 35, 241, 120, 97, 71, 134, 173, 194, 20, 124, 177, 14, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2672, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "813dfd0403051d5f04" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15ee3375" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f28b2bfd01fbbb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe00fa" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf49813dfd0403051d5f044415ee337547f28b2bfd01fbbb1bfffffffffffffff043fe00faa0ff", + "cborBytes": [ + 191, 73, 129, 61, 253, 4, 3, 5, 29, 95, 4, 68, 21, 238, 51, 117, 71, 242, 139, 43, 253, 1, 251, 187, 27, 255, 255, + 255, 255, 255, 255, 255, 240, 67, 254, 0, 250, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2673, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d220a01cf40fe0d834" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa07400505e500" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07fff8fa" + } + } + ] + } + } + ] + }, + "cborHex": "bf41f9bf49d220a01cf40fe0d8341bfffffffffffffff747fa07400505e5004407fff8faffff", + "cborBytes": [ + 191, 65, 249, 191, 73, 210, 32, 160, 28, 244, 15, 224, 216, 52, 27, 255, 255, 255, 255, 255, 255, 255, 247, 71, + 250, 7, 64, 5, 5, 229, 0, 68, 7, 255, 248, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2674, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10799961748127602296" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6244299090076785017" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11521063851155063703" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd2154480352950e77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e2fe7204ad0fb6d5576" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b95e12bfd40f3d6781b56a834f04f5259791b9fe30a880ab10397bf49bd2154480352950e774a7e2fe7204ad0fb6d5576ffff", + "cborBytes": [ + 191, 27, 149, 225, 43, 253, 64, 243, 214, 120, 27, 86, 168, 52, 240, 79, 82, 89, 121, 27, 159, 227, 10, 136, 10, + 177, 3, 151, 191, 73, 189, 33, 84, 72, 3, 82, 149, 14, 119, 74, 126, 47, 231, 32, 74, 208, 251, 109, 85, 118, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2675, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd2a77" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13429374932489153499" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e23fea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fc3e01fcff04fe5fc3e7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4914838087816054088" + } + } + ] + } + } + ] + }, + "cborHex": "bf0443fd2a771bba5eb959668d2bdb43e23fea1bfffffffffffffff79f4afc3e01fcff04fe5fc3e71b4435033370d60548ffff", + "cborBytes": [ + 191, 4, 67, 253, 42, 119, 27, 186, 94, 185, 89, 102, 141, 43, 219, 67, 226, 63, 234, 27, 255, 255, 255, 255, 255, + 255, 255, 247, 159, 74, 252, 62, 1, 252, 255, 4, 254, 95, 195, 231, 27, 68, 53, 3, 51, 112, 214, 5, 72, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2676, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5990202532913369040" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "743095966213752996" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c79d711395eeab" + }, + { + "_tag": "ByteArray", + "bytearray": "91de" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3310202228749895778" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10589402093367964793" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb48" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13260270219411451472" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1474481994591335581" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c1bc090e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4124548321115420663" + } + }, + { + "_tag": "ByteArray", + "bytearray": "11823e3b89" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15669437277031312003" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aea37b66e7f9e15572" + } + ] + } + } + ] + }, + "cborHex": "bf14413e1b532179775af24fd0d8669f1b0a5001d81c3248a49f47c79d711395eeab4291de1b2df033638b580862ffff1b92f51d194ef9b47942bb481bb805f18235b5ee50d8669f1b1476698fdb53749d9f44c1bc090e1b393d56d86304b7f74511823e3b89ffff1bd975062ee7b72a839f49aea37b66e7f9e15572ffff", + "cborBytes": [ + 191, 20, 65, 62, 27, 83, 33, 121, 119, 90, 242, 79, 208, 216, 102, 159, 27, 10, 80, 1, 216, 28, 50, 72, 164, 159, + 71, 199, 157, 113, 19, 149, 238, 171, 66, 145, 222, 27, 45, 240, 51, 99, 139, 88, 8, 98, 255, 255, 27, 146, 245, + 29, 25, 78, 249, 180, 121, 66, 187, 72, 27, 184, 5, 241, 130, 53, 181, 238, 80, 216, 102, 159, 27, 20, 118, 105, + 143, 219, 83, 116, 157, 159, 68, 193, 188, 9, 14, 27, 57, 61, 86, 216, 99, 4, 183, 247, 69, 17, 130, 62, 59, 137, + 255, 255, 27, 217, 117, 6, 46, 231, 183, 42, 131, 159, 73, 174, 163, 123, 102, 231, 249, 225, 85, 114, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2677, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13399234371284138422" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1567978306497347896" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a509302" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8ba96e36c25bf5b8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a67a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c" + } + } + ] + }, + "cborHex": "bf1bb9f3a4ab229879b61b15c293f6564b0138440a509302488ba96e36c25bf5b842a67a411cff", + "cborBytes": [ + 191, 27, 185, 243, 164, 171, 34, 152, 121, 182, 27, 21, 194, 147, 246, 86, 75, 1, 56, 68, 10, 80, 147, 2, 72, 139, + 169, 110, 54, 194, 91, 245, 184, 66, 166, 122, 65, 28, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2678, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0eef3e" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f194f4ebfc04c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e1e75722305de851ffa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f88ba4ecbd73c4c6782da43" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "667685992273879001" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78a4710f6034" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7496670110769348089" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b306e5005d4bcd3e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14797182523509787162" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc032f45bd94ee638d06c329" + }, + { + "_tag": "ByteArray", + "bytearray": "32" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12921169601602892694" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f03b0d1932cd5aed110" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3c2409ea2d28cc959" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8929912310125911563" + } + } + } + ] + }, + "cborHex": "bf430eef3e80471f194f4ebfc04c4a6e1e75722305de851ffa4c6f88ba4ecbd73c4c6782da431b094418df56fd1fd94678a4710f6034d8669f1b680985bf26b1fdf99f48b306e5005d4bcd3e1bcd5a271b366b4a1a4cfc032f45bd94ee638d06c32941321bb351374b1a1db396ffff41894a7f03b0d1932cd5aed11049b3c2409ea2d28cc9591b7bed6beef0715e0bff", + "cborBytes": [ + 191, 67, 14, 239, 62, 128, 71, 31, 25, 79, 78, 191, 192, 76, 74, 110, 30, 117, 114, 35, 5, 222, 133, 31, 250, 76, + 111, 136, 186, 78, 203, 215, 60, 76, 103, 130, 218, 67, 27, 9, 68, 24, 223, 86, 253, 31, 217, 70, 120, 164, 113, + 15, 96, 52, 216, 102, 159, 27, 104, 9, 133, 191, 38, 177, 253, 249, 159, 72, 179, 6, 229, 0, 93, 75, 205, 62, 27, + 205, 90, 39, 27, 54, 107, 74, 26, 76, 252, 3, 47, 69, 189, 148, 238, 99, 141, 6, 195, 41, 65, 50, 27, 179, 81, 55, + 75, 26, 29, 179, 150, 255, 255, 65, 137, 74, 127, 3, 176, 209, 147, 44, 213, 174, 209, 16, 73, 179, 194, 64, 158, + 162, 210, 140, 201, 89, 27, 123, 237, 107, 238, 240, 113, 94, 11, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2679, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4dae239444c53f1c77" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16751031821143216041" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4736197314837065146" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c455b228ebc9e6f23ce4ed0f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9600837883322600612" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11790499738530647607" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79487f37659c61" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "298962227916393216" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "894c" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94488c2ec2568e9b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6cc27f977cb676888e4e79" + }, + { + "_tag": "ByteArray", + "bytearray": "df9247dc68f821c19fbc62" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad282ed96d951b4e26ffba6f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16067326580506352049" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33b7c33da27a0c25" + } + } + ] + } + } + ] + }, + "cborHex": "bf494dae239444c53f1c77d8669f1be8779eb0c8818fa99f1b41ba5a5d4905adba4cc455b228ebc9e6f23ce4ed0f1b853d072ffd8e8ca41ba3a0450b1f748e37ffff4779487f37659c611b0426208ff4374b0042894ca04894488c2ec2568e9b9f4b6cc27f977cb676888e4e794bdf9247dc68f821c19fbc62ff4cad282ed96d951b4e26ffba6fbf1bdefa9c658945d9b14833b7c33da27a0c25ffff", + "cborBytes": [ + 191, 73, 77, 174, 35, 148, 68, 197, 63, 28, 119, 216, 102, 159, 27, 232, 119, 158, 176, 200, 129, 143, 169, 159, + 27, 65, 186, 90, 93, 73, 5, 173, 186, 76, 196, 85, 178, 40, 235, 201, 230, 242, 60, 228, 237, 15, 27, 133, 61, 7, + 47, 253, 142, 140, 164, 27, 163, 160, 69, 11, 31, 116, 142, 55, 255, 255, 71, 121, 72, 127, 55, 101, 156, 97, 27, + 4, 38, 32, 143, 244, 55, 75, 0, 66, 137, 76, 160, 72, 148, 72, 140, 46, 194, 86, 142, 155, 159, 75, 108, 194, 127, + 151, 124, 182, 118, 136, 142, 78, 121, 75, 223, 146, 71, 220, 104, 248, 33, 193, 159, 188, 98, 255, 76, 173, 40, + 46, 217, 109, 149, 27, 78, 38, 255, 186, 111, 191, 27, 222, 250, 156, 101, 137, 69, 217, 177, 72, 51, 183, 195, + 61, 162, 122, 12, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2680, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "152739476519632030" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8088251026423157659" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18436310290475880079" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5577117938334552055" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c4e962ee1" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2164996143030210614" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "56" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10211102755738971464" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "705f74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "671a6f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bd080d1429c0d85a118ac45" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15654257800377140582" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4db6fbd2c23e3a79ec3b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a88b3e521e3db47bf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9b1170088eda7bc5f4fe779" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14415775621428457053" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7e8cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f35608880aa14ebb9" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b021ea3bea121bc9e9f1b703f3d748424139b1bffdaee8788b18e8f1b4d65e73750e3cff7451c4e962ee1ff1b1e0b9c857d681036bf41561b8db51fdb08d56d4843705f7443671a6f4c8bd080d1429c0d85a118ac451bd93f188795de05664bd4db6fbd2c23e3a79ec3b5492a88b3e521e3db47bf4cd9b1170088eda7bc5f4fe7791bc80f1f8cb4faae5d43e7e8cc498f35608880aa14ebb9ffff", + "cborBytes": [ + 191, 27, 2, 30, 163, 190, 161, 33, 188, 158, 159, 27, 112, 63, 61, 116, 132, 36, 19, 155, 27, 255, 218, 238, 135, + 136, 177, 142, 143, 27, 77, 101, 231, 55, 80, 227, 207, 247, 69, 28, 78, 150, 46, 225, 255, 27, 30, 11, 156, 133, + 125, 104, 16, 54, 191, 65, 86, 27, 141, 181, 31, 219, 8, 213, 109, 72, 67, 112, 95, 116, 67, 103, 26, 111, 76, + 139, 208, 128, 209, 66, 156, 13, 133, 161, 24, 172, 69, 27, 217, 63, 24, 135, 149, 222, 5, 102, 75, 212, 219, 111, + 189, 44, 35, 227, 167, 158, 195, 181, 73, 42, 136, 179, 229, 33, 227, 219, 71, 191, 76, 217, 177, 23, 0, 136, 237, + 167, 188, 95, 79, 231, 121, 27, 200, 15, 31, 140, 180, 250, 174, 93, 67, 231, 232, 204, 73, 143, 53, 96, 136, 128, + 170, 20, 235, 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2681, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "96e3c7a28c898b3e8289593a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10188630614747008155" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6119c596db3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16662874577351729516" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "faab4cbf80" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "68c814e10c9541df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18172674444295497762" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79b75584652b00dd53" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15415382783794906946" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4c182" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b443dbf3349e3b37718" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3f6053c7a1df276f1dc3c" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4c96e3c7a28c898b3e8289593a9f1b8d65498ffbaa4c9bff46b6119c596db3bf1be73e6c24f7efe16c45faab4cbf804868c814e10c9541df1bfc324f1fc70d68224979b75584652b00dd531bd5ee70f7b8c48742ff43c4c1824a1b443dbf3349e3b377184bf3f6053c7a1df276f1dc3c80ff", + "cborBytes": [ + 191, 76, 150, 227, 199, 162, 140, 137, 139, 62, 130, 137, 89, 58, 159, 27, 141, 101, 73, 143, 251, 170, 76, 155, + 255, 70, 182, 17, 156, 89, 109, 179, 191, 27, 231, 62, 108, 36, 247, 239, 225, 108, 69, 250, 171, 76, 191, 128, + 72, 104, 200, 20, 225, 12, 149, 65, 223, 27, 252, 50, 79, 31, 199, 13, 104, 34, 73, 121, 183, 85, 132, 101, 43, 0, + 221, 83, 27, 213, 238, 112, 247, 184, 196, 135, 66, 255, 67, 196, 193, 130, 74, 27, 68, 61, 191, 51, 73, 227, 179, + 119, 24, 75, 243, 246, 5, 60, 122, 29, 242, 118, 241, 220, 60, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2682, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4959623241499512198" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cc440bcb332a11f0263" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13661081037866776399" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18333884510200451" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8372545900914247008" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17463113265486446028" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b44d41f0f99598d864a9cc440bcb332a11f02631bbd95e8d30ddfb74fbf1b004122922195628341ee1b7431422321a585601bf25970fdcdbb3dccffff", + "cborBytes": [ + 191, 27, 68, 212, 31, 15, 153, 89, 141, 134, 74, 156, 196, 64, 188, 179, 50, 161, 31, 2, 99, 27, 189, 149, 232, + 211, 13, 223, 183, 79, 191, 27, 0, 65, 34, 146, 33, 149, 98, 131, 65, 238, 27, 116, 49, 66, 35, 33, 165, 133, 96, + 27, 242, 89, 112, 253, 205, 187, 61, 204, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2683, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15828995252824862804" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10686685228158377398" + } + } + } + ] + }, + "cborHex": "bf1bdbabe3511bf870541b944ebb9832cb5db6ff", + "cborBytes": [191, 27, 219, 171, 227, 81, 27, 248, 112, 84, 27, 148, 78, 187, 152, 50, 203, 93, 182, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2684, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc007a6c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2dea" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4088" + }, + { + "_tag": "ByteArray", + "bytearray": "fbb2" + } + ] + } + } + ] + }, + "cborHex": "bf44fc007a6cd87b9f422dea1bfffffffffffffff142408842fbb2ffff", + "cborBytes": [ + 191, 68, 252, 0, 122, 108, 216, 123, 159, 66, 45, 234, 27, 255, 255, 255, 255, 255, 255, 255, 241, 66, 64, 136, + 66, 251, 178, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2685, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14681149831309090481" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16f903330c2559485102ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "43afd7eca93d18acbf2a21" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "17" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16260240779272728399" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b77" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8980460231813184867" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d82d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd347458dc115a83996e28" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17490958069753694084" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bcbbdebfccd76deb1bf4b16f903330c2559485102ff4b43afd7eca93d18acbf2a2141171be1a7fad69adf2f4f428b771b7ca1010014bf3d6342d82d4bdd347458dc115a83996e2841e41bf2bc5db180ebc784ffff", + "cborBytes": [ + 191, 27, 203, 189, 235, 252, 205, 118, 222, 177, 191, 75, 22, 249, 3, 51, 12, 37, 89, 72, 81, 2, 255, 75, 67, 175, + 215, 236, 169, 61, 24, 172, 191, 42, 33, 65, 23, 27, 225, 167, 250, 214, 154, 223, 47, 79, 66, 139, 119, 27, 124, + 161, 1, 0, 20, 191, 61, 99, 66, 216, 45, 75, 221, 52, 116, 88, 220, 17, 90, 131, 153, 110, 40, 65, 228, 27, 242, + 188, 93, 177, 128, 235, 199, 132, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2686, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11568388255896417087" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1980764064396587900" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14143478095823675000" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "785bcaf541" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15202714732942724046" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0822bee461dafd24" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16911009171840359425" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f519" + } + } + ] + }, + "cborHex": "bf1ba08b2bd3a881b33f1b1b7d166c0a37b37c1bc447ba648e169e7845785bcaf5411bd2fae4808ea60bce480822bee461dafd241beaaff93e50eadc0142f519ff", + "cborBytes": [ + 191, 27, 160, 139, 43, 211, 168, 129, 179, 63, 27, 27, 125, 22, 108, 10, 55, 179, 124, 27, 196, 71, 186, 100, 142, + 22, 158, 120, 69, 120, 91, 202, 245, 65, 27, 210, 250, 228, 128, 142, 166, 11, 206, 72, 8, 34, 190, 228, 97, 218, + 253, 36, 27, 234, 175, 249, 62, 80, 234, 220, 1, 66, 245, 25, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2687, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2055827f94eabdf232" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5599746874548609574" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9493272681090263260" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1987a7eb" + }, + { + "_tag": "ByteArray", + "bytearray": "303cea1bb15ff4b7cf11" + }, + { + "_tag": "ByteArray", + "bytearray": "0e6d9980fa27f907d16667" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6255684955554500072" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7664" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3782279339573798363" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3002100623765633365" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d77715fa" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3ff1965" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf492055827f94eabdf232d8669f1b4db64c1d1992e2269f1b83bee134b84e28dc441987a7eb4a303cea1bb15ff4b7cf114b0e6d9980fa27f907d166671b56d0a852b294cde8ffff4276649f1b347d5b051c9865db1b29a99a9c8b87795544d77715faff44e3ff196580ff", + "cborBytes": [ + 191, 73, 32, 85, 130, 127, 148, 234, 189, 242, 50, 216, 102, 159, 27, 77, 182, 76, 29, 25, 146, 226, 38, 159, 27, + 131, 190, 225, 52, 184, 78, 40, 220, 68, 25, 135, 167, 235, 74, 48, 60, 234, 27, 177, 95, 244, 183, 207, 17, 75, + 14, 109, 153, 128, 250, 39, 249, 7, 209, 102, 103, 27, 86, 208, 168, 82, 178, 148, 205, 232, 255, 255, 66, 118, + 100, 159, 27, 52, 125, 91, 5, 28, 152, 101, 219, 27, 41, 169, 154, 156, 139, 135, 121, 85, 68, 215, 119, 21, 250, + 255, 68, 227, 255, 25, 101, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2688, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5413463048643545046" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6605060161495507019" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13507434900778920070" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14735540900858623679" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5369254739010750529" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15022596012899252785" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4376586191911109340" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12962937805804797592" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15720156274341102835" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a78da2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15948659811005160180" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3094865110892060338" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15248067371925899593" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15358513104989289845" + } + } + } + ] + }, + "cborHex": "bf1b4b207bf6031a07d61b5ba9e338c606204b1bbb740c7a0fa42886a01bcc7f286088eaf6bf1b4a836cbcd35188411bd07afb7b090f3a31bf1b3cbcc1f411bdc2dc1bb3e59b40f879fe981bda2936d7b1bac4f343a78da21bdd5505993682daf41b2af32b6bca789eb2ff1bd39c047caede09491bd524664bcd117d75ff", + "cborBytes": [ + 191, 27, 75, 32, 123, 246, 3, 26, 7, 214, 27, 91, 169, 227, 56, 198, 6, 32, 75, 27, 187, 116, 12, 122, 15, 164, + 40, 134, 160, 27, 204, 127, 40, 96, 136, 234, 246, 191, 27, 74, 131, 108, 188, 211, 81, 136, 65, 27, 208, 122, + 251, 123, 9, 15, 58, 49, 191, 27, 60, 188, 193, 244, 17, 189, 194, 220, 27, 179, 229, 155, 64, 248, 121, 254, 152, + 27, 218, 41, 54, 215, 177, 186, 196, 243, 67, 167, 141, 162, 27, 221, 85, 5, 153, 54, 130, 218, 244, 27, 42, 243, + 43, 107, 202, 120, 158, 178, 255, 27, 211, 156, 4, 124, 174, 222, 9, 73, 27, 213, 36, 102, 75, 205, 17, 125, 117, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2689, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0600" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e36963f8cd144331f7fe5a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2498160dff15e1" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73ad07030107016007fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + }, + "cborHex": "bf420600bf4be36963f8cd144331f7fe5a472498160dff15e1ff4a73ad07030107016007fd09ff", + "cborBytes": [ + 191, 66, 6, 0, 191, 75, 227, 105, 99, 248, 205, 20, 67, 49, 247, 254, 90, 71, 36, 152, 22, 13, 255, 21, 225, 255, + 74, 115, 173, 7, 3, 1, 7, 1, 96, 7, 253, 9, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2690, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b5fbe27072ca2a2d1a9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "264502dbe9b6b11b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18122265737593185876" + } + } + } + ] + }, + "cborHex": "bf0c4a2b5fbe27072ca2a2d1a948264502dbe9b6b11b1bfb7f38ac26796654ff", + "cborBytes": [ + 191, 12, 74, 43, 95, 190, 39, 7, 44, 162, 162, 209, 169, 72, 38, 69, 2, 219, 233, 182, 177, 27, 27, 251, 127, 56, + 172, 38, 121, 102, 84, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2691, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c09326b562d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2cf9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6476289125393083173" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15301196385929559059" + } + }, + { + "_tag": "ByteArray", + "bytearray": "53e9d7afa53f3f6c" + }, + { + "_tag": "ByteArray", + "bytearray": "7f88dd46" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12783134145890839335" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54a39b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15e956122fa1" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffa462c09326b562d422cf9d8669f1b59e066a58dc7ab259f1bd458c50b35d27c134853e9d7afa53f3f6c447f88dd461bb166d0c719fd6b27ffff4354a39b4615e956122fa1ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 250, 70, 44, 9, 50, 107, 86, 45, 66, 44, 249, 216, 102, 159, 27, 89, + 224, 102, 165, 141, 199, 171, 37, 159, 27, 212, 88, 197, 11, 53, 210, 124, 19, 72, 83, 233, 215, 175, 165, 63, 63, + 108, 68, 127, 136, 221, 70, 27, 177, 102, 208, 199, 25, 253, 107, 39, 255, 255, 67, 84, 163, 155, 70, 21, 233, 86, + 18, 47, 161, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2692, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10818106035154082308" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "307cb8e75962ff1bc1e8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5511" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d4f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6689afcad6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ba1cd206db39c7eaa8b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "742e0ae195c99e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1831500876960583780" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8df" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2252487393622763911" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4119d8669f1b9621a21f47de5a0480ff4a307cb8e75962ff1bc1e84144425511422d4f456689afcad64a0ba1cd206db39c7eaa8b47742e0ae195c99e1b196acc58090d506442d8dfd8669f1b1f427159adee298780ffff", + "cborBytes": [ + 191, 65, 25, 216, 102, 159, 27, 150, 33, 162, 31, 71, 222, 90, 4, 128, 255, 74, 48, 124, 184, 231, 89, 98, 255, + 27, 193, 232, 65, 68, 66, 85, 17, 66, 45, 79, 69, 102, 137, 175, 202, 214, 74, 11, 161, 205, 32, 109, 179, 156, + 126, 170, 139, 71, 116, 46, 10, 225, 149, 201, 158, 27, 25, 106, 204, 88, 9, 13, 80, 100, 66, 216, 223, 216, 102, + 159, 27, 31, 66, 113, 89, 173, 238, 41, 135, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2693, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "727e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15ff75cd04fe0004c1" + } + } + ] + }, + "cborHex": "bf42727e410742a3bf4915ff75cd04fe0004c1ff", + "cborBytes": [191, 66, 114, 126, 65, 7, 66, 163, 191, 73, 21, 255, 117, 205, 4, 254, 0, 4, 193, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2694, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4874152404563351481" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6753882589678299203" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa26" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0401db11" + } + } + ] + }, + "cborHex": "bf07d8669f1b43a477c99f1d57b980ff1b5dba9c6e84786843410442fa26440401db11ff", + "cborBytes": [ + 191, 7, 216, 102, 159, 27, 67, 164, 119, 201, 159, 29, 87, 185, 128, 255, 27, 93, 186, 156, 110, 132, 120, 104, + 67, 65, 4, 66, 250, 38, 68, 4, 1, 219, 17, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2695, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12612166195100087298" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "981de8e53fa661a2aabe" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8624265706381284062" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf071bffffffffffffffee41001baf076a55132174024a981de8e53fa661a2aabed8669f1b77af8bf7757092de80ffff", + "cborBytes": [ + 191, 7, 27, 255, 255, 255, 255, 255, 255, 255, 238, 65, 0, 27, 175, 7, 106, 85, 19, 33, 116, 2, 74, 152, 29, 232, + 229, 63, 166, 97, 162, 170, 190, 216, 102, 159, 27, 119, 175, 139, 247, 117, 112, 146, 222, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2696, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7b42" + }, + { + "_tag": "ByteArray", + "bytearray": "dadbece7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13763707275326004172" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bd5c0cf7b05219cbd925135c" + }, + { + "_tag": "ByteArray", + "bytearray": "6e648f8a92" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d02a0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6104717715500108046" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13673070359500489948" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12331189996969128865" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5941836362322326677" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf41019f427b4244dadbece71bbf0282d7fa441bcc4cbd5c0cf7b05219cbd925135c456e648f8a92ff434d02a0bf1b54b8506b066b090e1bbdc0810c86f304dc1bab212ff80331f3a11b5275a4b0b9b8b495ffff", + "cborBytes": [ + 191, 65, 1, 159, 66, 123, 66, 68, 218, 219, 236, 231, 27, 191, 2, 130, 215, 250, 68, 27, 204, 76, 189, 92, 12, + 247, 176, 82, 25, 203, 217, 37, 19, 92, 69, 110, 100, 143, 138, 146, 255, 67, 77, 2, 160, 191, 27, 84, 184, 80, + 107, 6, 107, 9, 14, 27, 189, 192, 129, 12, 134, 243, 4, 220, 27, 171, 33, 47, 248, 3, 49, 243, 161, 27, 82, 117, + 164, 176, 185, 184, 180, 149, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2697, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5171197698425997116" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16001507281098433888" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fa04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0a35abcb168abdf9" + }, + { + "_tag": "ByteArray", + "bytearray": "bc9bef86fcd9a5353de0" + }, + { + "_tag": "ByteArray", + "bytearray": "59780112ca748417" + } + ] + } + } + ] + }, + "cborHex": "bf1b47c3c8e895ffc73cd8669f1bde10c617b0b2e5609f42fa0408480a35abcb168abdf94abc9bef86fcd9a5353de04859780112ca748417ffffff", + "cborBytes": [ + 191, 27, 71, 195, 200, 232, 149, 255, 199, 60, 216, 102, 159, 27, 222, 16, 198, 23, 176, 178, 229, 96, 159, 66, + 250, 4, 8, 72, 10, 53, 171, 203, 22, 138, 189, 249, 74, 188, 155, 239, 134, 252, 217, 165, 53, 61, 224, 72, 89, + 120, 1, 18, 202, 116, 132, 23, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2698, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1403201180335741821" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4171776569635789636" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1560072084043317785" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5156470560624520832" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e602a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6438e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8600121369680581375" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8332109236463253361" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "140cffb380223c1a07f8ea10" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9839672335099860969" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1578314439046525617" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18159822235208282479" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ca60fe9a821774faf750831" + } + } + ] + }, + "cborHex": "bf1b13792c09fe521b7d801b39e520afe3705b441b15a67d4b7967c2191b478f76a79cc8ae80bf436e602a417143d6438e1b7759c4d2010e92ffff1b73a199348524b7714c140cffb380223c1a07f8ea101b888d89db1fdd97e9d8669f1b15e74c9ebb3cf2b180ff1bfc04a61ba9d4716f4c9ca60fe9a821774faf750831ff", + "cborBytes": [ + 191, 27, 19, 121, 44, 9, 254, 82, 27, 125, 128, 27, 57, 229, 32, 175, 227, 112, 91, 68, 27, 21, 166, 125, 75, 121, + 103, 194, 25, 27, 71, 143, 118, 167, 156, 200, 174, 128, 191, 67, 110, 96, 42, 65, 113, 67, 214, 67, 142, 27, 119, + 89, 196, 210, 1, 14, 146, 255, 255, 27, 115, 161, 153, 52, 133, 36, 183, 113, 76, 20, 12, 255, 179, 128, 34, 60, + 26, 7, 248, 234, 16, 27, 136, 141, 137, 219, 31, 221, 151, 233, 216, 102, 159, 27, 21, 231, 76, 158, 187, 60, 242, + 177, 128, 255, 27, 252, 4, 166, 27, 169, 212, 113, 111, 76, 156, 166, 15, 233, 168, 33, 119, 79, 175, 117, 8, 49, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2699, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "015e5fd76a7d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10583161981926149530" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "032ad5f7eb768b77fd18" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8021334459075169040" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9612085574002647887" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8dc485df578e1b43" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "207369f4" + }, + { + "_tag": "ByteArray", + "bytearray": "495783f0f7b1c9be62" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2665099841660968210" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d971e3e0c58093" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13239569025978003987" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cd4e218" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8074574818724612993" + } + } + } + ] + }, + "cborHex": "bf46015e5fd76a7d1b92def1c025208d9a4a032ad5f7eb768b77fd189f1b6f51813111c68b101b8564fce70d15a34fff488dc485df578e1b439f44207369f449495783f0f7b1c9be621b24fc562f8926dd1247d971e3e0c580931bb7bc65e204aef213ff449cd4e218a0419f1b700ea70446650b81ff", + "cborBytes": [ + 191, 70, 1, 94, 95, 215, 106, 125, 27, 146, 222, 241, 192, 37, 32, 141, 154, 74, 3, 42, 213, 247, 235, 118, 139, + 119, 253, 24, 159, 27, 111, 81, 129, 49, 17, 198, 139, 16, 27, 133, 100, 252, 231, 13, 21, 163, 79, 255, 72, 141, + 196, 133, 223, 87, 142, 27, 67, 159, 68, 32, 115, 105, 244, 73, 73, 87, 131, 240, 247, 177, 201, 190, 98, 27, 36, + 252, 86, 47, 137, 38, 221, 18, 71, 217, 113, 227, 224, 197, 128, 147, 27, 183, 188, 101, 226, 4, 174, 242, 19, + 255, 68, 156, 212, 226, 24, 160, 65, 159, 27, 112, 14, 167, 4, 70, 101, 11, 129, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2700, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13583510364693898883" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77acb55267" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15134907848394897663" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47839ee300f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43331b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1024816411786560320" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4122bf1bbc8252b54a6aa6834577acb552671bd209fe7ffbd978ff4647839ee300f24343331b1b0e38e118c8874340ffff", + "cborBytes": [ + 191, 65, 34, 191, 27, 188, 130, 82, 181, 74, 106, 166, 131, 69, 119, 172, 181, 82, 103, 27, 210, 9, 254, 127, 251, + 217, 120, 255, 70, 71, 131, 158, 227, 0, 242, 67, 67, 51, 27, 27, 14, 56, 225, 24, 200, 135, 67, 64, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2701, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11902941120517653701" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bd9fc4d49ed74262f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12673270924151491662" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9fb7b140b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16053528436003368622" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "faf1bcde98e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12227340577854147128" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "063002fe3f06" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6421594180901268354" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc96127eab0cc2e9d926" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c13c7668a142" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e26a589a3c1e56ad" + } + } + ] + } + } + ] + }, + "cborHex": "bf024269fe1ba52fbde276d844c5bf497bd9fc4d49ed74262f1bafe080c278560c4e45c9fb7b140b1bdec9970eab9ceeae46faf1bcde98e6419bff1ba9b03d78eab74a38d8669f1bffffffffffffffee80ff46063002fe3f06bf1b591e15e26c55eb824afc96127eab0cc2e9d92646c13c7668a14248e26a589a3c1e56adffff", + "cborBytes": [ + 191, 2, 66, 105, 254, 27, 165, 47, 189, 226, 118, 216, 68, 197, 191, 73, 123, 217, 252, 77, 73, 237, 116, 38, 47, + 27, 175, 224, 128, 194, 120, 86, 12, 78, 69, 201, 251, 123, 20, 11, 27, 222, 201, 151, 14, 171, 156, 238, 174, 70, + 250, 241, 188, 222, 152, 230, 65, 155, 255, 27, 169, 176, 61, 120, 234, 183, 74, 56, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 238, 128, 255, 70, 6, 48, 2, 254, 63, 6, 191, 27, 89, 30, 21, 226, 108, 85, 235, 130, 74, + 252, 150, 18, 126, 171, 12, 194, 233, 217, 38, 70, 193, 60, 118, 104, 161, 66, 72, 226, 106, 88, 154, 60, 30, 86, + 173, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2702, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ada3ad5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "477731877381641714" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17763935932323320646" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c17405aa8ed0bb1ae891" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13111787589282945740" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3988" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1951158098998293482" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ca1b470" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "282387236301798723" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "571330119789370899" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1df1483a7c37fd6d" + }, + { + "_tag": "ByteArray", + "bytearray": "73d502" + } + ] + } + } + ] + }, + "cborHex": "bf442ada3ad5d8669f1b06a13e9c813695f29f1bf6862d9cf2edd3464ac17405aa8ed0bb1ae8911bb5f66d57dd95dacc4239881b1b13e7f40f6b73eaffff448ca1b470d8669f1b03eb3db1fcdf7d439f1b07edc5b78786de13481df1483a7c37fd6d4373d502ffffff", + "cborBytes": [ + 191, 68, 42, 218, 58, 213, 216, 102, 159, 27, 6, 161, 62, 156, 129, 54, 149, 242, 159, 27, 246, 134, 45, 156, 242, + 237, 211, 70, 74, 193, 116, 5, 170, 142, 208, 187, 26, 232, 145, 27, 181, 246, 109, 87, 221, 149, 218, 204, 66, + 57, 136, 27, 27, 19, 231, 244, 15, 107, 115, 234, 255, 255, 68, 140, 161, 180, 112, 216, 102, 159, 27, 3, 235, 61, + 177, 252, 223, 125, 67, 159, 27, 7, 237, 197, 183, 135, 134, 222, 19, 72, 29, 241, 72, 58, 124, 55, 253, 109, 67, + 115, 213, 2, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2703, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4005fb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "631160614428666602" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "87c738f15115165500" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1593021218937667969" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee47c5b39dc3a7e1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17601223840379121927" + } + } + ] + } + } + ] + }, + "cborHex": "bf0d434005fb1b08c2553c1b3ceaea9f4987c738f151151655001b161b8c5bc270818148ee47c5b39dc3a7e11bf4441bd3d9ef3107ffff", + "cborBytes": [ + 191, 13, 67, 64, 5, 251, 27, 8, 194, 85, 60, 27, 60, 234, 234, 159, 73, 135, 199, 56, 241, 81, 21, 22, 85, 0, 27, + 22, 27, 140, 91, 194, 112, 129, 129, 72, 238, 71, 197, 179, 157, 195, 167, 225, 27, 244, 68, 27, 211, 217, 239, + 49, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2704, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15488789209247737848" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12281518324408519311" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11743062144680433374" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4573289741421969178" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bd6f33bb9021d67f8d8669f1baa70b7d884d20a8f9f1ba2f7bccd9d0396de1b3f7796ca1c64ff1affffff", + "cborBytes": [ + 191, 27, 214, 243, 59, 185, 2, 29, 103, 248, 216, 102, 159, 27, 170, 112, 183, 216, 132, 210, 10, 143, 159, 27, + 162, 247, 188, 205, 157, 3, 150, 222, 27, 63, 119, 150, 202, 28, 100, 255, 26, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2705, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4287848392983729270" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3674ca" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51ba37091b7040149a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "600373e69689" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6afc3bdf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "646411a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17998860433206058831" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f785" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db86" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1dad7248" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "125e198c0d03" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3282341635970155010" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1773030058216212115" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7316742186739320704" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14253759724028400824" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10143992731567096365" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "500c09671d5193de6bb76112" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10743756756517215355" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14485606019145178275" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15838319710919381432" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40a36bfd2677" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3b817f653a865476bf433674ca4951ba37091b7040149a46600373e69689446afc3bdf44646411a61bf9c8cc33b3149f4f419e42f78542db86441dad7248ff46125e198c0d03bf1b2d8d3853cb79c2021b189b1171ac1146931b658a4a40c9b647801bc5cf86f3087b94b81b8cc6b3a4e933822d4c500c09671d5193de6bb761121b95197dd8e1695c7b1bc90735ed27689ca31bdbcd03dcb06ad1b84640a36bfd2677ffff", + "cborBytes": [ + 191, 27, 59, 129, 127, 101, 58, 134, 84, 118, 191, 67, 54, 116, 202, 73, 81, 186, 55, 9, 27, 112, 64, 20, 154, 70, + 96, 3, 115, 230, 150, 137, 68, 106, 252, 59, 223, 68, 100, 100, 17, 166, 27, 249, 200, 204, 51, 179, 20, 159, 79, + 65, 158, 66, 247, 133, 66, 219, 134, 68, 29, 173, 114, 72, 255, 70, 18, 94, 25, 140, 13, 3, 191, 27, 45, 141, 56, + 83, 203, 121, 194, 2, 27, 24, 155, 17, 113, 172, 17, 70, 147, 27, 101, 138, 74, 64, 201, 182, 71, 128, 27, 197, + 207, 134, 243, 8, 123, 148, 184, 27, 140, 198, 179, 164, 233, 51, 130, 45, 76, 80, 12, 9, 103, 29, 81, 147, 222, + 107, 183, 97, 18, 27, 149, 25, 125, 216, 225, 105, 92, 123, 27, 201, 7, 53, 237, 39, 104, 156, 163, 27, 219, 205, + 3, 220, 176, 106, 209, 184, 70, 64, 163, 107, 253, 38, 119, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2706, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6792015558892516981" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5130752675573306472" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15691662950088118263" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15573330091816706108" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c2265" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7428188063567075278" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7917358574189525479" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4634bc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11587035368669931306" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "112336063869881562" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b37d67504fc05b03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22f6e40c" + } + } + ] + } + } + ] + }, + "cborHex": "bf05a01b5e42162a48b6f675bf1b4734185fe1ee94681bd9c3fc50ab290ff71bd81f95351ca2e03c433c2265ff1b671639b005b657cebf1b6de01bacddf5b9e7434634bc1ba0cd6b46ed75672a1b018f190e0e6e0cda48b37d67504fc05b034422f6e40cffff", + "cborBytes": [ + 191, 5, 160, 27, 94, 66, 22, 42, 72, 182, 246, 117, 191, 27, 71, 52, 24, 95, 225, 238, 148, 104, 27, 217, 195, + 252, 80, 171, 41, 15, 247, 27, 216, 31, 149, 53, 28, 162, 224, 60, 67, 60, 34, 101, 255, 27, 103, 22, 57, 176, 5, + 182, 87, 206, 191, 27, 109, 224, 27, 172, 221, 245, 185, 231, 67, 70, 52, 188, 27, 160, 205, 107, 70, 237, 117, + 103, 42, 27, 1, 143, 25, 14, 14, 110, 12, 218, 72, 179, 125, 103, 80, 79, 192, 91, 3, 68, 34, 246, 228, 12, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2707, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d741b778" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9495595cbe8a7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16369821733303133620" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcd6" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf44d741b7789f479495595cbe8a7c1be32d4a22aa00a5b4ff42fcd680ff", + "cborBytes": [ + 191, 68, 215, 65, 183, 120, 159, 71, 148, 149, 89, 92, 190, 138, 124, 27, 227, 45, 74, 34, 170, 0, 165, 180, 255, + 66, 252, 214, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2708, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06f92c8e3c07a262fef90e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3910c1f8130b26df64e745" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8aea2ec02e64ddacd1ea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ed099f41b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5590393030341889382" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cf09c81bba1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9017967600884160958" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9617a2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70d4eb0486494364" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c39777bca6599f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c13a9df5622d9a41150fcb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f4f70d26afdb3c79" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "885650096350576452" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4010104" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "ByteArray", + "bytearray": "36ec" + } + ] + } + } + ] + }, + "cborHex": "bf4b06f92c8e3c07a262fef90ebf4b3910c1f8130b26df64e7454a8aea2ec02e64ddacd1ea454ed099f41b1b4d9510d788590d66467cf09c81bba11b7d2641c0f6ae99be439617a24870d4eb048649436447c39777bca6599f4bc13a9df5622d9a41150fcb48f4f70d26afdb3c791b0c4a7611fc443f44ff44d40101040641ea9f034236ecffff", + "cborBytes": [ + 191, 75, 6, 249, 44, 142, 60, 7, 162, 98, 254, 249, 14, 191, 75, 57, 16, 193, 248, 19, 11, 38, 223, 100, 231, 69, + 74, 138, 234, 46, 192, 46, 100, 221, 172, 209, 234, 69, 78, 208, 153, 244, 27, 27, 77, 149, 16, 215, 136, 89, 13, + 102, 70, 124, 240, 156, 129, 187, 161, 27, 125, 38, 65, 192, 246, 174, 153, 190, 67, 150, 23, 162, 72, 112, 212, + 235, 4, 134, 73, 67, 100, 71, 195, 151, 119, 188, 166, 89, 159, 75, 193, 58, 157, 245, 98, 45, 154, 65, 21, 15, + 203, 72, 244, 247, 13, 38, 175, 219, 60, 121, 27, 12, 74, 118, 17, 252, 68, 63, 68, 255, 68, 212, 1, 1, 4, 6, 65, + 234, 159, 3, 66, 54, 236, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2709, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a5d3714311670658bf6091a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16721312861848800878" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4442158333415430153" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4d7f" + }, + { + "_tag": "ByteArray", + "bytearray": "6ad791595ee38589" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f8f7f867f24d7c6bd6a68" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea6a91d4047a1cf16aacaa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1016967425993427809" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9e67906a9d9fad3a9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "26029922010647305" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b43139ad571d584c7c" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c0a5d3714311670658bf6091a9f1be80e09745cab0e6e1b3da5b777fb449809424d7f486ad791595ee38589ff4b6f8f7f867f24d7c6bd6a68bf4bea6a91d4047a1cf16aacaa1b0e1cfe7c5e7b4b61ff49a9e67906a9d9fad3a9bf1b005c7a137ef9cb0949b43139ad571d584c7cffff", + "cborBytes": [ + 191, 76, 10, 93, 55, 20, 49, 22, 112, 101, 139, 246, 9, 26, 159, 27, 232, 14, 9, 116, 92, 171, 14, 110, 27, 61, + 165, 183, 119, 251, 68, 152, 9, 66, 77, 127, 72, 106, 215, 145, 89, 94, 227, 133, 137, 255, 75, 111, 143, 127, + 134, 127, 36, 215, 198, 189, 106, 104, 191, 75, 234, 106, 145, 212, 4, 122, 28, 241, 106, 172, 170, 27, 14, 28, + 254, 124, 94, 123, 75, 97, 255, 73, 169, 230, 121, 6, 169, 217, 250, 211, 169, 191, 27, 0, 92, 122, 19, 126, 249, + 203, 9, 73, 180, 49, 57, 173, 87, 29, 88, 76, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2710, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6239058755190668765" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5053968148806898483" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14187794732113291172" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b0" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7716013328480284669" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7e919d7878b775" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18348998765881036364" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4602654154652226553" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11155072204571017580" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c281a0f34caa5df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1276759440348457873" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d1a7b7d4b1" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecad1d0946f49f6448a7598c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15802768432199042105" + } + } + } + ] + }, + "cborHex": "bf1b569596e1c3ee3ddd9f1b46234d4117c613331bc4e52c2381c567a441b0ff1b6b14c93db63f2ffd9f477e919d7878b775ff1bfea4bd29106b8e4cd8669f1b3fdfe991580593f99f1b9acec711654a016c481c281a0f34caa5df1b11b7f5f24998ab9145d1a7b7d4b1ffff4cecad1d0946f49f6448a7598c1bdb4eb62994fb0439ff", + "cborBytes": [ + 191, 27, 86, 149, 150, 225, 195, 238, 61, 221, 159, 27, 70, 35, 77, 65, 23, 198, 19, 51, 27, 196, 229, 44, 35, + 129, 197, 103, 164, 65, 176, 255, 27, 107, 20, 201, 61, 182, 63, 47, 253, 159, 71, 126, 145, 157, 120, 120, 183, + 117, 255, 27, 254, 164, 189, 41, 16, 107, 142, 76, 216, 102, 159, 27, 63, 223, 233, 145, 88, 5, 147, 249, 159, 27, + 154, 206, 199, 17, 101, 74, 1, 108, 72, 28, 40, 26, 15, 52, 202, 165, 223, 27, 17, 183, 245, 242, 73, 152, 171, + 145, 69, 209, 167, 183, 212, 177, 255, 255, 76, 236, 173, 29, 9, 70, 244, 159, 100, 72, 167, 89, 140, 27, 219, 78, + 182, 41, 148, 251, 4, 57, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2711, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e0a74a1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16689798921064440939" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a3fb3b87" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bfbf5a3861c950b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13674798824338698302" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a7eaf61e0f14456" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8098146008303182404" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a487bca5" + }, + { + "_tag": "ByteArray", + "bytearray": "cdb8d2" + }, + { + "_tag": "ByteArray", + "bytearray": "64259623873d45e8f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13864695889588746332" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d3e8613036be9428ebe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6825123483318147815" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "722291387707efd0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8590855313035575229" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d2a8c0f1ea5ee7fda1b75dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f2a53c23acaf422d20884a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f52ae0ec52f5f2dc28" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a2f1fc9c4e254" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c066d5fd148a95" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4390196258680621450" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8269007918065223510" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de14c9ab9d51" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4b0336b6967932e1e" + } + } + ] + }, + "cborHex": "bf440e0a74a1d8669f1be79e13b13ebe646b9f44a3fb3b87ffff484bfbf5a3861c950b1bbdc6a5141ba3303e487a7eaf61e0f14456d8669f1b706264e38428a2449f44a487bca543cdb8d24964259623873d45e8f91bc0694b7409c1785cffff419cbf4a6d3e8613036be9428ebe1b5eb7b5a5a35adae748722291387707efd01b7738d96412433fbd4c7d2a8c0f1ea5ee7fda1b75dd4c3f2a53c23acaf422d20884a249f52ae0ec52f5f2dc28476a2f1fc9c4e254ff47c066d5fd148a959f1b3ced1c3cace8498a1b72c16ae3f12b875641b3ff46de14c9ab9d5149c4b0336b6967932e1eff", + "cborBytes": [ + 191, 68, 14, 10, 116, 161, 216, 102, 159, 27, 231, 158, 19, 177, 62, 190, 100, 107, 159, 68, 163, 251, 59, 135, + 255, 255, 72, 75, 251, 245, 163, 134, 28, 149, 11, 27, 189, 198, 165, 20, 27, 163, 48, 62, 72, 122, 126, 175, 97, + 224, 241, 68, 86, 216, 102, 159, 27, 112, 98, 100, 227, 132, 40, 162, 68, 159, 68, 164, 135, 188, 165, 67, 205, + 184, 210, 73, 100, 37, 150, 35, 135, 61, 69, 232, 249, 27, 192, 105, 75, 116, 9, 193, 120, 92, 255, 255, 65, 156, + 191, 74, 109, 62, 134, 19, 3, 107, 233, 66, 142, 190, 27, 94, 183, 181, 165, 163, 90, 218, 231, 72, 114, 34, 145, + 56, 119, 7, 239, 208, 27, 119, 56, 217, 100, 18, 67, 63, 189, 76, 125, 42, 140, 15, 30, 165, 238, 127, 218, 27, + 117, 221, 76, 63, 42, 83, 194, 58, 202, 244, 34, 210, 8, 132, 162, 73, 245, 42, 224, 236, 82, 245, 242, 220, 40, + 71, 106, 47, 31, 201, 196, 226, 84, 255, 71, 192, 102, 213, 253, 20, 138, 149, 159, 27, 60, 237, 28, 60, 172, 232, + 73, 138, 27, 114, 193, 106, 227, 241, 43, 135, 86, 65, 179, 255, 70, 222, 20, 201, 171, 157, 81, 73, 196, 176, 51, + 107, 105, 103, 147, 46, 30, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2712, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1561858104929888402" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "211180ccbf4aab9ab8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "466ac87d99246241a1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "430a081d65bd4f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9742677222721450326" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9215a6317d6a8475b43299" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f7e7d70179110f49c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15481201311665005003" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bdc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce303817f2ad1c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a76b4e90bbbd4d41" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13517621287957889520" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4779270130203383915" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9864582012786873043" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9564000684016199383" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4269545468795480480" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5126702691911614465" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15790765227133694604" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b15acd5abdde92892bf49211180ccbf4aab9ab849466ac87d99246241a147430a081d65bd4f1b8734f150ad99f15641564b9215a6317d6a8475b43299495f7e7d70179110f49c1bd6d84691ee1aa1cb427bdc47ce303817f2ad1c48a76b4e90bbbd4d411bbb983cf124fd01f0ff1b425360dc9c68586b1b88e6091369de92d31b84ba27f32a60e6d7d8669f1b3b4078fb9beee9a09f1b4725b4ef946e40011bdb24114f9ee4f28cffffff", + "cborBytes": [ + 191, 27, 21, 172, 213, 171, 221, 233, 40, 146, 191, 73, 33, 17, 128, 204, 191, 74, 171, 154, 184, 73, 70, 106, + 200, 125, 153, 36, 98, 65, 161, 71, 67, 10, 8, 29, 101, 189, 79, 27, 135, 52, 241, 80, 173, 153, 241, 86, 65, 86, + 75, 146, 21, 166, 49, 125, 106, 132, 117, 180, 50, 153, 73, 95, 126, 125, 112, 23, 145, 16, 244, 156, 27, 214, + 216, 70, 145, 238, 26, 161, 203, 66, 123, 220, 71, 206, 48, 56, 23, 242, 173, 28, 72, 167, 107, 78, 144, 187, 189, + 77, 65, 27, 187, 152, 60, 241, 36, 253, 1, 240, 255, 27, 66, 83, 96, 220, 156, 104, 88, 107, 27, 136, 230, 9, 19, + 105, 222, 146, 211, 27, 132, 186, 39, 243, 42, 96, 230, 215, 216, 102, 159, 27, 59, 64, 120, 251, 155, 238, 233, + 160, 159, 27, 71, 37, 180, 239, 148, 110, 64, 1, 27, 219, 36, 17, 79, 158, 228, 242, 140, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2713, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2455954845488863393" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7180429283612094977" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12935891256220678060" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7699299159618418091" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7061267108886313335" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11321686324436462119" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "686856686131885637" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16002454840085434438" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5f60bb7bcb89ac2be4e" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3452724825799455575" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3b31de1cda7d2eeb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17219525585411954549" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9752843191517213017" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17e7fb9cb4dfba061d0d2cc4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11290836277038344267" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17300292733429871729" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5584578653784112455" + } + }, + { + "_tag": "ByteArray", + "bytearray": "33ddd2c5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7769280921670619771" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13713865946258263560" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16486682649995521574" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da3752a5d8647947" + } + } + ] + }, + "cborHex": "bf1b22154deb75c358a1bf1b63a60263d082f2011bb385848f6c1d77ac1b6ad967cb0484f5ab1b61fea905f95179771b9d1eb5ba2a6eea271b09883484547e36451bde1423e47585d0464ac5f60bb7bcb89ac2be4eff1b2fea8aef8cf2f3579f483b31de1cda7d2eeb1beef80b49773ad775ff1b87590f35bc7871594c17e7fb9cb4dfba061d0d2cc41b9cb11bc5c5f6e84bd8669f1bf016fc94865bf4719f1b4d8068b27f07fd474433ddd2c51b6bd207d5b865927bffff1bbe51706b400cce08a01be4cc76851d942e2648da3752a5d8647947ff", + "cborBytes": [ + 191, 27, 34, 21, 77, 235, 117, 195, 88, 161, 191, 27, 99, 166, 2, 99, 208, 130, 242, 1, 27, 179, 133, 132, 143, + 108, 29, 119, 172, 27, 106, 217, 103, 203, 4, 132, 245, 171, 27, 97, 254, 169, 5, 249, 81, 121, 119, 27, 157, 30, + 181, 186, 42, 110, 234, 39, 27, 9, 136, 52, 132, 84, 126, 54, 69, 27, 222, 20, 35, 228, 117, 133, 208, 70, 74, + 197, 246, 11, 183, 188, 184, 154, 194, 190, 78, 255, 27, 47, 234, 138, 239, 140, 242, 243, 87, 159, 72, 59, 49, + 222, 28, 218, 125, 46, 235, 27, 238, 248, 11, 73, 119, 58, 215, 117, 255, 27, 135, 89, 15, 53, 188, 120, 113, 89, + 76, 23, 231, 251, 156, 180, 223, 186, 6, 29, 13, 44, 196, 27, 156, 177, 27, 197, 197, 246, 232, 75, 216, 102, 159, + 27, 240, 22, 252, 148, 134, 91, 244, 113, 159, 27, 77, 128, 104, 178, 127, 7, 253, 71, 68, 51, 221, 210, 197, 27, + 107, 210, 7, 213, 184, 101, 146, 123, 255, 255, 27, 190, 81, 112, 107, 64, 12, 206, 8, 160, 27, 228, 204, 118, + 133, 29, 148, 46, 38, 72, 218, 55, 82, 165, 216, 100, 121, 71, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2714, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9317820568547307394" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b814f8c706d172f82bf0d00104107ffff", + "cborBytes": [191, 27, 129, 79, 140, 112, 109, 23, 47, 130, 191, 13, 0, 16, 65, 7, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2715, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3422721784220891895" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12197582420240315880" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + ] + } + } + ] + }, + "cborHex": "bf413fd8669f1bffffffffffffffef9f1b2f7ff354117a3af711111ba9468495ecf935e81bffffffffffffffecffffff", + "cborBytes": [ + 191, 65, 63, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 27, 47, 127, 243, 84, 17, 122, 58, + 247, 17, 17, 27, 169, 70, 132, 149, 236, 249, 53, 232, 27, 255, 255, 255, 255, 255, 255, 255, 236, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2716, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1738774243714114338" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4890833543917983625" + } + } + } + ] + }, + "cborHex": "bf1b18215df6552da3221b43dfbb3208cbd789ff", + "cborBytes": [191, 27, 24, 33, 93, 246, 85, 45, 163, 34, 27, 67, 223, 187, 50, 8, 203, 215, 137, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2717, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2931891445799633353" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a25247" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13225573179017358225" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "425947922970384047" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d11f40e9ba75b3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2451423907049378351" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3904556458220340712" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15989126474532788966" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "839621981212220319" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9033929595375322511" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a623871e1d2fe1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11555954518376420428" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6740797292925287578" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "66" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5463095510882666591" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69c00fe557d6bfb9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8948165871189347846" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9496009331731972045" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12749420603317316156" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16441296823768581392" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa28122ed2a6c9e6b6" + } + } + ] + }, + "cborHex": "bf1b28b02bbc72e4c1c99f43a252471bb78aacbbf6436b911b05e94561117716af47d11f40e9ba75b31b2205350e2594122fff1b362fc56959ae45e8d8669f1bdde4c9d087521ae69f1b0ba6efbe4fc39b9f1b7d5ef71a6a3c058f47a623871e1d2fe11ba05eff688c65944cffff1b5d8c1f6c73b9fc9abf41661b4bd0d06c2431485f4869c00fe557d6bfb91b7c2e45734f83ce06ff1b83c89a2cd9adbfcd1bb0ef0a7d48c66a3c1be42b3859fb7c051049aa28122ed2a6c9e6b6ff", + "cborBytes": [ + 191, 27, 40, 176, 43, 188, 114, 228, 193, 201, 159, 67, 162, 82, 71, 27, 183, 138, 172, 187, 246, 67, 107, 145, + 27, 5, 233, 69, 97, 17, 119, 22, 175, 71, 209, 31, 64, 233, 186, 117, 179, 27, 34, 5, 53, 14, 37, 148, 18, 47, + 255, 27, 54, 47, 197, 105, 89, 174, 69, 232, 216, 102, 159, 27, 221, 228, 201, 208, 135, 82, 26, 230, 159, 27, 11, + 166, 239, 190, 79, 195, 155, 159, 27, 125, 94, 247, 26, 106, 60, 5, 143, 71, 166, 35, 135, 30, 29, 47, 225, 27, + 160, 94, 255, 104, 140, 101, 148, 76, 255, 255, 27, 93, 140, 31, 108, 115, 185, 252, 154, 191, 65, 102, 27, 75, + 208, 208, 108, 36, 49, 72, 95, 72, 105, 192, 15, 229, 87, 214, 191, 185, 27, 124, 46, 69, 115, 79, 131, 206, 6, + 255, 27, 131, 200, 154, 44, 217, 173, 191, 205, 27, 176, 239, 10, 125, 72, 198, 106, 60, 27, 228, 43, 56, 89, 251, + 124, 5, 16, 73, 170, 40, 18, 46, 210, 166, 201, 230, 182, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2718, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8761094614916532087" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "579113000788815385" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13061163375612950488" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17821936770328991830" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6429529355819061820" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12787920285234279398" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5448042415042944581" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1212756234658012500" + } + } + ] + } + } + ] + }, + "cborHex": "bf0641e61b7995a9224db007779f1b08096c34b8d3ee19ff1bb54292e39cc077d81bf7543d1164ee98561bffffffffffffffecd8669f1bfffffffffffffff29f1b593a46e24e8a923c1bb177d1bf0166b3e61b4b9b55b625e55e4541d21b10d4935eb5ee5d54ffffff", + "cborBytes": [ + 191, 6, 65, 230, 27, 121, 149, 169, 34, 77, 176, 7, 119, 159, 27, 8, 9, 108, 52, 184, 211, 238, 25, 255, 27, 181, + 66, 146, 227, 156, 192, 119, 216, 27, 247, 84, 61, 17, 100, 238, 152, 86, 27, 255, 255, 255, 255, 255, 255, 255, + 236, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 89, 58, 70, 226, 78, 138, 146, 60, 27, + 177, 119, 209, 191, 1, 102, 179, 230, 27, 75, 155, 85, 182, 37, 229, 94, 69, 65, 210, 27, 16, 212, 147, 94, 181, + 238, 93, 84, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2719, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9256345230223975339" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "84" + }, + { + "_tag": "ByteArray", + "bytearray": "c016b2e23f9f001be3" + }, + { + "_tag": "ByteArray", + "bytearray": "29302b623a8ae4a3ba" + }, + { + "_tag": "ByteArray", + "bytearray": "2b236d2d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16102000457699741583" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b807524f1d5e1a3ab9f418449c016b2e23f9f001be34929302b623a8ae4a3ba442b236d2d1bdf75cc1aae5ecf8fffff", + "cborBytes": [ + 191, 27, 128, 117, 36, 241, 213, 225, 163, 171, 159, 65, 132, 73, 192, 22, 178, 226, 63, 159, 0, 27, 227, 73, 41, + 48, 43, 98, 58, 138, 228, 163, 186, 68, 43, 35, 109, 45, 27, 223, 117, 204, 26, 174, 94, 207, 143, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2720, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3362419321856705890" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10479982783472596434" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3830544690779780919" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3bb711" + }, + { + "_tag": "ByteArray", + "bytearray": "8e4f" + }, + { + "_tag": "ByteArray", + "bytearray": "f0407696" + } + ] + } + } + ] + }, + "cborHex": "bf1b2ea9b68ef12dc56241521b917060d0f517f5d29f1b3528d419e62ff737433bb711428e4f44f0407696ffff", + "cborBytes": [ + 191, 27, 46, 169, 182, 142, 241, 45, 197, 98, 65, 82, 27, 145, 112, 96, 208, 245, 23, 245, 210, 159, 27, 53, 40, + 212, 25, 230, 47, 247, 55, 67, 59, 183, 17, 66, 142, 79, 68, 240, 64, 118, 150, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2721, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cd955da4c9bd3f1f12ccce6" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4c8cd955da4c9bd3f1f12ccce680ff", + "cborBytes": [191, 76, 140, 217, 85, 218, 76, 155, 211, 241, 241, 44, 204, 230, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2722, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2125924635642474172" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9eb44ad4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62be866cf102" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5619305499686194340" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cdc3a2f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14797417002572785430" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7ff10e330911611f569581e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8562598502519662834" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8c934" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15e43512db54f22953" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3722608333540504534" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f9f4dc54d3da6b17e81c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06d0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2887047320129240094" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "30685a958b4b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "128239275788828737" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1d80cd3146b8aebcbf414e449eb44ad44662be866cf1021b4dfbc8946131cca444cdc3a2f11bcd5afc5d1fad27164ce7ff10e330911611f569581e1b76d475f8b0f9e8f243f8c9344915e43512db54f22953ff1b33a95c8e5e9733d64b2f9f4dc54d3da6b17e81c74206d0d8669f1b2810da3dce0bfc1e9f4630685a958b4b1b01c798f11fa58041ffffff", + "cborBytes": [ + 191, 27, 29, 128, 205, 49, 70, 184, 174, 188, 191, 65, 78, 68, 158, 180, 74, 212, 70, 98, 190, 134, 108, 241, 2, + 27, 77, 251, 200, 148, 97, 49, 204, 164, 68, 205, 195, 162, 241, 27, 205, 90, 252, 93, 31, 173, 39, 22, 76, 231, + 255, 16, 227, 48, 145, 22, 17, 245, 105, 88, 30, 27, 118, 212, 117, 248, 176, 249, 232, 242, 67, 248, 201, 52, 73, + 21, 228, 53, 18, 219, 84, 242, 41, 83, 255, 27, 51, 169, 92, 142, 94, 151, 51, 214, 75, 47, 159, 77, 197, 77, 61, + 166, 177, 126, 129, 199, 66, 6, 208, 216, 102, 159, 27, 40, 16, 218, 61, 206, 11, 252, 30, 159, 70, 48, 104, 90, + 149, 139, 75, 27, 1, 199, 152, 241, 31, 165, 128, 65, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2723, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cd2b5a5f86158492245" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4537920444228646996" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92c5505f08770f31" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8573866037408734760" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb92" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d06" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f93c4beb5639661b6cb6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcb30f02052f50b6070a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff577ad281543675bbedf463" + }, + { + "_tag": "ByteArray", + "bytearray": "2cffa717b3e70f9e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3818902250960291098" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15944759507685692802" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fff705fd100702309700018f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + } + ] + }, + "cborHex": "bf4a4cd2b5a5f86158492245bf1bffffffffffffffeb1b3ef9ee99e13b3854ff4892c5505f08770f31d8669f1b76fc7dbc17889e2880ff42eb92425d064af93c4beb5639661b6cb6004afcb30f02052f50b6070ad905089f4cff577ad281543675bbedf463482cffa717b3e70f9e1b34ff775d246d851a1bdd472a4b14a35582ff4cfff705fd100702309700018f4106ff", + "cborBytes": [ + 191, 74, 76, 210, 181, 165, 248, 97, 88, 73, 34, 69, 191, 27, 255, 255, 255, 255, 255, 255, 255, 235, 27, 62, 249, + 238, 153, 225, 59, 56, 84, 255, 72, 146, 197, 80, 95, 8, 119, 15, 49, 216, 102, 159, 27, 118, 252, 125, 188, 23, + 136, 158, 40, 128, 255, 66, 235, 146, 66, 93, 6, 74, 249, 60, 75, 235, 86, 57, 102, 27, 108, 182, 0, 74, 252, 179, + 15, 2, 5, 47, 80, 182, 7, 10, 217, 5, 8, 159, 76, 255, 87, 122, 210, 129, 84, 54, 117, 187, 237, 244, 99, 72, 44, + 255, 167, 23, 179, 231, 15, 158, 27, 52, 255, 119, 93, 36, 109, 133, 26, 27, 221, 71, 42, 75, 20, 163, 85, 130, + 255, 76, 255, 247, 5, 253, 16, 7, 2, 48, 151, 0, 1, 143, 65, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2724, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12397020012703496172" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17645944002875840302" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18279561107513882185" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "615354288455444009" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "145681103726773875" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3164054040899686307" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bac0b1004f299b7ecd8669f1bf4e2fc9411d9572e9f1bfdae0bfa5f6936491b088a2d770e6666291b02059031261f06731b2be8fa62e5f70fa312ffffff", + "cborBytes": [ + 191, 27, 172, 11, 16, 4, 242, 153, 183, 236, 216, 102, 159, 27, 244, 226, 252, 148, 17, 217, 87, 46, 159, 27, 253, + 174, 11, 250, 95, 105, 54, 73, 27, 8, 138, 45, 119, 14, 102, 102, 41, 27, 2, 5, 144, 49, 38, 31, 6, 115, 27, 43, + 232, 250, 98, 229, 247, 15, 163, 18, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2725, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "345314731307532032" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69b620fed9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1116310318744048658" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15401983408096085777" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b264df3dfb67fd6aac" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5644974691918897260" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1334109184263466272" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3687823503982325197" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74423d1486b7d44d2dc0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4874259038157840496" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1937160082511204480" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10001541074784143427" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2944403956547492819" + } + } + } + ] + }, + "cborHex": "bf1b04cacdeb274b7f004569b620fed91b0f7dee5207d794129f1bd5bed64e7407071149b264df3dfb67fd6aac1b4e56fa92ede5606cff1b1283b53c139c2d204228fe1b332dc7f01d33edcd4a74423d1486b7d44d2dc01b43a4d8c530a2a0701b1ae22cd4df2590801b8acc9c9df8fcc8431b28dc9fcc61449bd3ff", + "cborBytes": [ + 191, 27, 4, 202, 205, 235, 39, 75, 127, 0, 69, 105, 182, 32, 254, 217, 27, 15, 125, 238, 82, 7, 215, 148, 18, 159, + 27, 213, 190, 214, 78, 116, 7, 7, 17, 73, 178, 100, 223, 61, 251, 103, 253, 106, 172, 27, 78, 86, 250, 146, 237, + 229, 96, 108, 255, 27, 18, 131, 181, 60, 19, 156, 45, 32, 66, 40, 254, 27, 51, 45, 199, 240, 29, 51, 237, 205, 74, + 116, 66, 61, 20, 134, 183, 212, 77, 45, 192, 27, 67, 164, 216, 197, 48, 162, 160, 112, 27, 26, 226, 44, 212, 223, + 37, 144, 128, 27, 138, 204, 156, 157, 248, 252, 200, 67, 27, 40, 220, 159, 204, 97, 68, 155, 211, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2726, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e170c4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5325532364944045692" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf43e170c4d8669f1b49e817785455f67c80ffff", + "cborBytes": [191, 67, 225, 112, 196, 216, 102, 159, 27, 73, 232, 23, 120, 84, 85, 246, 124, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2727, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1179051220346339914" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c2b677dd55503" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "525366463609626721" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "144066a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16831016016232433149" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a92" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1646951790545500357" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8832ac9d975dcf1b6995e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5040224321035496572" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd72" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a3cfb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f73b40d9cc03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2be4ed81a0ad6d43d669aef" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12605310613190072643" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13185076673974686037" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e5c085820d892" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e25ffdd0e1a2bf45f473828" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56fc59" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02f9" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b105cd4d688bc024abf470c2b677dd555031b074a7a03e05ae06144144066a41be993c7e46871c5fd426a921b16db25ed75a878c54b8832ac9d975dcf1b6995e61b45f27950d39aec7c42dd72432a3cfb46f73b40d9cc034cc2be4ed81a0ad6d43d669aefff1baeef0f3786a7d9431bffffffffffffffff1bb6facd60a08cd155476e5c085820d8921bffffffffffffffecbf4c1e25ffdd0e1a2bf45f4738281bfffffffffffffff44356fc594202f9ffff", + "cborBytes": [ + 191, 27, 16, 92, 212, 214, 136, 188, 2, 74, 191, 71, 12, 43, 103, 125, 213, 85, 3, 27, 7, 74, 122, 3, 224, 90, + 224, 97, 68, 20, 64, 102, 164, 27, 233, 147, 199, 228, 104, 113, 197, 253, 66, 106, 146, 27, 22, 219, 37, 237, + 117, 168, 120, 197, 75, 136, 50, 172, 157, 151, 93, 207, 27, 105, 149, 230, 27, 69, 242, 121, 80, 211, 154, 236, + 124, 66, 221, 114, 67, 42, 60, 251, 70, 247, 59, 64, 217, 204, 3, 76, 194, 190, 78, 216, 26, 10, 214, 212, 61, + 102, 154, 239, 255, 27, 174, 239, 15, 55, 134, 167, 217, 67, 27, 255, 255, 255, 255, 255, 255, 255, 255, 27, 182, + 250, 205, 96, 160, 140, 209, 85, 71, 110, 92, 8, 88, 32, 216, 146, 27, 255, 255, 255, 255, 255, 255, 255, 236, + 191, 76, 30, 37, 255, 221, 14, 26, 43, 244, 95, 71, 56, 40, 27, 255, 255, 255, 255, 255, 255, 255, 244, 67, 86, + 252, 89, 66, 2, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2728, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "35370442397382347" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15013913610823533329" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4710f5a365" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4437713625189246693" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "cb3c6cff3196995b92e7" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8446908638253414588" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15765341630742779339" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14633994842367899803" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "56854e54d746e9cfe3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4541" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "67ecd4bad94f1f9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8064911327579720025" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd9ed2ae9f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1744798079267730353" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15152385448164248615" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7953070525304672301" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d6f878e48" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11354875846946222763" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9425084451672608674" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18330638803041644606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10710371154909851218" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15757765658779696588" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38" + } + } + ] + }, + "cborHex": "bf1b007da93adea4f6cbd8669f1bd05c22e1c58a03119f454710f5a365ffff1b3d95ed07b450e6e59f4acb3c6cff3196995b92e7ff1b753972a72145f8bc1bdac9beaf4f19d5cb1bcb1664c6603cb89bbf4956854e54d746e9cfe34245414867ecd4bad94f1f9c1b6fec521f6969c95945fd9ed2ae9f1b1836c49bd78973b1ff1bd2481648c9a0cc27bf1b6e5efb816e6a102d453d6f878e481b9d949f6c0de472ab1b82cca05f6000cfa21bfe6382df1949f03e1b94a2e1d1c4fdee52ff1bdaaed460e169bdcc4138ff", + "cborBytes": [ + 191, 27, 0, 125, 169, 58, 222, 164, 246, 203, 216, 102, 159, 27, 208, 92, 34, 225, 197, 138, 3, 17, 159, 69, 71, + 16, 245, 163, 101, 255, 255, 27, 61, 149, 237, 7, 180, 80, 230, 229, 159, 74, 203, 60, 108, 255, 49, 150, 153, 91, + 146, 231, 255, 27, 117, 57, 114, 167, 33, 69, 248, 188, 27, 218, 201, 190, 175, 79, 25, 213, 203, 27, 203, 22, + 100, 198, 96, 60, 184, 155, 191, 73, 86, 133, 78, 84, 215, 70, 233, 207, 227, 66, 69, 65, 72, 103, 236, 212, 186, + 217, 79, 31, 156, 27, 111, 236, 82, 31, 105, 105, 201, 89, 69, 253, 158, 210, 174, 159, 27, 24, 54, 196, 155, 215, + 137, 115, 177, 255, 27, 210, 72, 22, 72, 201, 160, 204, 39, 191, 27, 110, 94, 251, 129, 110, 106, 16, 45, 69, 61, + 111, 135, 142, 72, 27, 157, 148, 159, 108, 13, 228, 114, 171, 27, 130, 204, 160, 95, 96, 0, 207, 162, 27, 254, 99, + 130, 223, 25, 73, 240, 62, 27, 148, 162, 225, 209, 196, 253, 238, 82, 255, 27, 218, 174, 212, 96, 225, 105, 189, + 204, 65, 56, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2729, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5539f3d5c17586d29" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5567857755729774345" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cb4876d694d9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10863778597852307286" + } + } + ] + } + } + ] + }, + "cborHex": "bf49c5539f3d5c17586d29d9050d9f1b4d4501210a2d470946cb4876d694d91b96c3e513737a5f56ffff", + "cborBytes": [ + 191, 73, 197, 83, 159, 61, 92, 23, 88, 109, 41, 217, 5, 13, 159, 27, 77, 69, 1, 33, 10, 45, 71, 9, 70, 203, 72, + 118, 214, 148, 217, 27, 150, 195, 229, 19, 115, 122, 95, 86, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2730, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0004" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1218488432021945097" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12188133879684827173" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c76" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7440187989623478441" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac4af4d1e68bbc" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "befb6cf7065af9f8f8059efc" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dce906" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3167cb9023a28a29e6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12265616041284759350" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2993654815984225894" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7fadfba" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b8fb8500" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + } + } + ] + }, + "cborHex": "bf420004d905089f1b10e8f0c5e9973b091ba924f33025848825ff427c76d8669f1bfffffffffffffff09f1b6740db8e87a298a9ffff47ac4af4d1e68bbca04cbefb6cf7065af9f8f8059efc9f1bfffffffffffffff0ff43dce906d9050a9f493167cb9023a28a29e61baa3838cdb41c6f3641c71b298b9931aee08e66414eff44f7fadfba9f44b8fb850011ffff", + "cborBytes": [ + 191, 66, 0, 4, 217, 5, 8, 159, 27, 16, 232, 240, 197, 233, 151, 59, 9, 27, 169, 36, 243, 48, 37, 132, 136, 37, + 255, 66, 124, 118, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 159, 27, 103, 64, 219, 142, 135, + 162, 152, 169, 255, 255, 71, 172, 74, 244, 209, 230, 139, 188, 160, 76, 190, 251, 108, 247, 6, 90, 249, 248, 248, + 5, 158, 252, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 255, 67, 220, 233, 6, 217, 5, 10, 159, 73, 49, 103, + 203, 144, 35, 162, 138, 41, 230, 27, 170, 56, 56, 205, 180, 28, 111, 54, 65, 199, 27, 41, 139, 153, 49, 174, 224, + 142, 102, 65, 78, 255, 68, 247, 250, 223, 186, 159, 68, 184, 251, 133, 0, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2731, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e8afa5662" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15792611968129662044" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edc37d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a00136e972bfc28811f0f99" + } + } + ] + }, + "cborHex": "bf457e8afa56621bdb2aa0e983f37c5c43edc37d4c4a00136e972bfc28811f0f99ff", + "cborBytes": [ + 191, 69, 126, 138, 250, 86, 98, 27, 219, 42, 160, 233, 131, 243, 124, 92, 67, 237, 195, 125, 76, 74, 0, 19, 110, + 151, 43, 252, 40, 129, 31, 15, 153, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2732, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a598a6d79b71922123" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1440174869089096618" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29e87721950ec0887b8f8b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18148367079250911481" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8483366505305771384" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf49a598a6d79b71922123bf1b13fc8769be8013aa4b29e87721950ec0887b8f8b1bfbdbf3b45424e0f91b75baf8e3c8328d78ffff", + "cborBytes": [ + 191, 73, 165, 152, 166, 215, 155, 113, 146, 33, 35, 191, 27, 19, 252, 135, 105, 190, 128, 19, 170, 75, 41, 232, + 119, 33, 149, 14, 192, 136, 123, 143, 139, 27, 251, 219, 243, 180, 84, 36, 224, 249, 27, 117, 186, 248, 227, 200, + 50, 141, 120, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2733, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10660450094511535790" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7902205615645020828" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a1e2a7" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "730001910849663666" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1158098874022538992" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18126671561789913391" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d1010365" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8076540074783712514" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16315080680960455016" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9248348608306055157" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8449446779850678473" + } + } + } + ] + }, + "cborHex": "bf149f1b93f186e12523b6ae1b6daa4623c69e529c43a1e2a7ff1b0a217cdec58cf2b2031b101264ca40e4aef0d9050d9f1bfb8edfbf08a9b92f1bffffffffffffffec44d10103650eff1b7015a2681bb0a5021be26acf70367c71681b8058bc0f350f87f51b75427714459160c9ff", + "cborBytes": [ + 191, 20, 159, 27, 147, 241, 134, 225, 37, 35, 182, 174, 27, 109, 170, 70, 35, 198, 158, 82, 156, 67, 161, 226, + 167, 255, 27, 10, 33, 124, 222, 197, 140, 242, 178, 3, 27, 16, 18, 100, 202, 64, 228, 174, 240, 217, 5, 13, 159, + 27, 251, 142, 223, 191, 8, 169, 185, 47, 27, 255, 255, 255, 255, 255, 255, 255, 236, 68, 209, 1, 3, 101, 14, 255, + 27, 112, 21, 162, 104, 27, 176, 165, 2, 27, 226, 106, 207, 112, 54, 124, 113, 104, 27, 128, 88, 188, 15, 53, 15, + 135, 245, 27, 117, 66, 119, 20, 69, 145, 96, 201, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2734, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "368d9c86756239" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6678302352e9f05f411d49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2fe" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb4eb3e7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf47368d9c86756239144b6678302352e9f05f411d490042a2febf44cb4eb3e71bfffffffffffffff3ffff", + "cborBytes": [ + 191, 71, 54, 141, 156, 134, 117, 98, 57, 20, 75, 102, 120, 48, 35, 82, 233, 240, 95, 65, 29, 73, 0, 66, 162, 254, + 191, 68, 203, 78, 179, 231, 27, 255, 255, 255, 255, 255, 255, 255, 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2735, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "68574e9ebbb021ca15751aa4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12133254053503854202" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4c68574e9ebbb021ca15751aa4d8669f1ba861fa46e4aa667a80ffff", + "cborBytes": [ + 191, 76, 104, 87, 78, 158, 187, 176, 33, 202, 21, 117, 26, 164, 216, 102, 159, 27, 168, 97, 250, 70, 228, 170, + 102, 122, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2736, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2050296111122486386" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1335801052913947013" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32fa059da1602564668d14" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4052488420223017826" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60e4ef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16202829354767196140" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8988941030596240913" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6930145353685468077" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15321734100357196254" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7531358473847666471" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11187845360620234965" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14978408231632766778" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "062fbefc1e025cbb051be02c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15320813047342164904" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5260a5bf8d49740a2260eaf2" + } + } + ] + }, + "cborHex": "bf0e9f1b1c741d733bd21472ff0fbf1b1289b7faf18751854b32fa059da1602564668d141b383d54bf47c6e3624360e4ef1be0dc0373af2b9fec1b7cbf223deb9f6611ff1b602cd27b503f03ad1bd4a1bbfc7ac7a9de1b6884c2a10dd177271b9b43361469c568d51bcfddfeed7b42073a4c062fbefc1e025cbb051be02c1bd49e764b1cffeba84c5260a5bf8d49740a2260eaf2ff", + "cborBytes": [ + 191, 14, 159, 27, 28, 116, 29, 115, 59, 210, 20, 114, 255, 15, 191, 27, 18, 137, 183, 250, 241, 135, 81, 133, 75, + 50, 250, 5, 157, 161, 96, 37, 100, 102, 141, 20, 27, 56, 61, 84, 191, 71, 198, 227, 98, 67, 96, 228, 239, 27, 224, + 220, 3, 115, 175, 43, 159, 236, 27, 124, 191, 34, 61, 235, 159, 102, 17, 255, 27, 96, 44, 210, 123, 80, 63, 3, + 173, 27, 212, 161, 187, 252, 122, 199, 169, 222, 27, 104, 132, 194, 161, 13, 209, 119, 39, 27, 155, 67, 54, 20, + 105, 197, 104, 213, 27, 207, 221, 254, 237, 123, 66, 7, 58, 76, 6, 47, 190, 252, 30, 2, 92, 187, 5, 27, 224, 44, + 27, 212, 158, 118, 75, 28, 255, 235, 168, 76, 82, 96, 165, 191, 141, 73, 116, 10, 34, 96, 234, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2737, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "57179741731e5b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3260365791972258635" + } + } + } + ] + }, + "cborHex": "bf4757179741731e5b1b2d3f2569e457734bff", + "cborBytes": [191, 71, 87, 23, 151, 65, 115, 30, 91, 27, 45, 63, 37, 105, 228, 87, 115, 75, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2738, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ead0b901ec687c8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d149851a267df0ec6" + } + } + ] + }, + "cborHex": "bf48ead0b901ec687c8f498d149851a267df0ec6ff", + "cborBytes": [191, 72, 234, 208, 185, 1, 236, 104, 124, 143, 73, 141, 20, 152, 81, 162, 103, 223, 14, 198, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2739, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0523" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ed68eccf96c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4819119366632751967" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "acbc71fa4ad8fe07c468" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4779025485552128381" + } + } + } + ] + }, + "cborHex": "bf420523d8669f1bfffffffffffffff180ff468ed68eccf96cd9050c9f1b42e0f387fa59c35fff4aacbc71fa4ad8fe07c4681b4252825bd6df917dff", + "cborBytes": [ + 191, 66, 5, 35, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 128, 255, 70, 142, 214, 142, 204, 249, + 108, 217, 5, 12, 159, 27, 66, 224, 243, 135, 250, 89, 195, 95, 255, 74, 172, 188, 113, 250, 74, 216, 254, 7, 196, + 104, 27, 66, 82, 130, 91, 214, 223, 145, 125, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2740, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5463202301654658182" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9668628693543134751" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a7bcce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2131395817328106069" + } + }, + { + "_tag": "ByteArray", + "bytearray": "97424d08efc5f95c1f88e0cf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6988482178141682530" + } + }, + { + "_tag": "ByteArray", + "bytearray": "358ff3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14801073979170230309" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11865495771912591508" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18011339556058787536" + } + }, + { + "_tag": "ByteArray", + "bytearray": "83ac" + }, + { + "_tag": "ByteArray", + "bytearray": "026a852d78" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15235923843855732016" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9dda1a2a97440b14d4f9" + } + } + ] + }, + "cborHex": "bf1b4bd1318c4e38ec86d8669f1b862dde91f7c9a61f9f43a7bcce1b1d943d3407985a554c97424d08efc5f95c1f88e0cf1b60fc1383b3487b6243358ff3ffff1bcd67fa5d56b81025d8669f1ba4aab589d8bfd8949f1bf9f521e5e7d36ed04283ac45026a852d78ffff1bd370e00339eccd304a9dda1a2a97440b14d4f9ff", + "cborBytes": [ + 191, 27, 75, 209, 49, 140, 78, 56, 236, 134, 216, 102, 159, 27, 134, 45, 222, 145, 247, 201, 166, 31, 159, 67, + 167, 188, 206, 27, 29, 148, 61, 52, 7, 152, 90, 85, 76, 151, 66, 77, 8, 239, 197, 249, 92, 31, 136, 224, 207, 27, + 96, 252, 19, 131, 179, 72, 123, 98, 67, 53, 143, 243, 255, 255, 27, 205, 103, 250, 93, 86, 184, 16, 37, 216, 102, + 159, 27, 164, 170, 181, 137, 216, 191, 216, 148, 159, 27, 249, 245, 33, 229, 231, 211, 110, 208, 66, 131, 172, 69, + 2, 106, 133, 45, 120, 255, 255, 27, 211, 112, 224, 3, 57, 236, 205, 48, 74, 157, 218, 26, 42, 151, 68, 11, 20, + 212, 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2741, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ca1" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2284601998124834065" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "34f0d9" + }, + { + "_tag": "ByteArray", + "bytearray": "44acd2f74102" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "917f56c63e4d765b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10813861887829922520" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a45739ee493f23" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3246643009595259693" + } + }, + { + "_tag": "ByteArray", + "bytearray": "81ad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4066064517285270487" + } + } + ] + } + } + ] + }, + "cborHex": "bf423ca180418fd8669f1b1fb48969b760dd119f4334f0d94644acd2f74102ffff48917f56c63e4d765b1b96128e17ba3cd2d847a45739ee493f239f1b2d0e649da36e3b2d4281ad1b386d9022b29bd3d7ffff", + "cborBytes": [ + 191, 66, 60, 161, 128, 65, 143, 216, 102, 159, 27, 31, 180, 137, 105, 183, 96, 221, 17, 159, 67, 52, 240, 217, 70, + 68, 172, 210, 247, 65, 2, 255, 255, 72, 145, 127, 86, 198, 62, 77, 118, 91, 27, 150, 18, 142, 23, 186, 60, 210, + 216, 71, 164, 87, 57, 238, 73, 63, 35, 159, 27, 45, 14, 100, 157, 163, 110, 59, 45, 66, 129, 173, 27, 56, 109, + 144, 34, 178, 155, 211, 215, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2742, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1515668563748924672" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6773895463546033245" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "451abdef7d7ae7cce5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f683512bb7ba12d7da789e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1879239369903631707" + } + } + } + ] + }, + "cborHex": "bf1b1508bc87437b2d001b5e01b608d24a945d49451abdef7d7ae7cce541a84bf683512bb7ba12d7da789e1b1a1466401308ed5bff", + "cborBytes": [ + 191, 27, 21, 8, 188, 135, 67, 123, 45, 0, 27, 94, 1, 182, 8, 210, 74, 148, 93, 73, 69, 26, 189, 239, 125, 122, + 231, 204, 229, 65, 168, 75, 246, 131, 81, 43, 183, 186, 18, 215, 218, 120, 158, 27, 26, 20, 102, 64, 19, 8, 237, + 91, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2743, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b7a9145c9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b2332b6089864f" + }, + { + "_tag": "ByteArray", + "bytearray": "4d13f1c3134bea421e47ae82" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1874859861543409227" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f7dcfa2ef7b94" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17914920146801448476" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9b86c298d76a75a9" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc7443" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1899792290301463396" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aa" + }, + { + "_tag": "ByteArray", + "bytearray": "a64f8c9969b5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13337633772477472766" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4031726393909143901" + } + } + ] + } + } + ] + }, + "cborHex": "bf450b7a9145c9d905049f47b2332b6089864f4c4d13f1c3134bea421e47ae821b1a04d71c52eed64bff472f7dcfa2ef7b948041b3d8669f1bf89e94f4c996d61c9f489b86c298d76a75a9ffff43bc7443d8669f1b1a5d6b05c271cb649f41aa46a64f8c9969b51bb918cb4010c5dffe1b37f391cb5485695dffffff", + "cborBytes": [ + 191, 69, 11, 122, 145, 69, 201, 217, 5, 4, 159, 71, 178, 51, 43, 96, 137, 134, 79, 76, 77, 19, 241, 195, 19, 75, + 234, 66, 30, 71, 174, 130, 27, 26, 4, 215, 28, 82, 238, 214, 75, 255, 71, 47, 125, 207, 162, 239, 123, 148, 128, + 65, 179, 216, 102, 159, 27, 248, 158, 148, 244, 201, 150, 214, 28, 159, 72, 155, 134, 194, 152, 215, 106, 117, + 169, 255, 255, 67, 188, 116, 67, 216, 102, 159, 27, 26, 93, 107, 5, 194, 113, 203, 100, 159, 65, 170, 70, 166, 79, + 140, 153, 105, 181, 27, 185, 24, 203, 64, 16, 197, 223, 254, 27, 55, 243, 145, 203, 84, 133, 105, 93, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2744, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca21ad977e2a5dde7923ed" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e81765a5a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13026650438925438032" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2d49b02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54aed7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0106a0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc1a0a3ffa8ff605ff66d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a7ed7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc6bfd3580f5fa0400" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f906f7010506" + } + } + ] + }, + "cborHex": "bf4107bf074bca21ad977e2a5dde7923edff450e81765a5abf031bb4c7f58e59564c501113ff411b44c2d49b024354aed7430106a04bbc1a0a3ffa8ff605ff66d5434a7ed749cc6bfd3580f5fa040046f906f7010506ff", + "cborBytes": [ + 191, 65, 7, 191, 7, 75, 202, 33, 173, 151, 126, 42, 93, 222, 121, 35, 237, 255, 69, 14, 129, 118, 90, 90, 191, 3, + 27, 180, 199, 245, 142, 89, 86, 76, 80, 17, 19, 255, 65, 27, 68, 194, 212, 155, 2, 67, 84, 174, 215, 67, 1, 6, + 160, 75, 188, 26, 10, 63, 250, 143, 246, 5, 255, 102, 213, 67, 74, 126, 215, 73, 204, 107, 253, 53, 128, 245, 250, + 4, 0, 70, 249, 6, 247, 1, 5, 6, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2745, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07f9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0694ada62a4247" + }, + { + "_tag": "ByteArray", + "bytearray": "6a2d63d743eae3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5726246863386310024" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16754187941608842155" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6aa40f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "167ee3b30d67" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2370692077525968875" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2291722405727948607" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15241799430192131568" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a7346499a972d95" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3eca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11608896828643708500" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b51c423dbca128612ab9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5817527411596694024" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17320331021593126414" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2744883767737276193" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c50f10" + } + ] + } + } + ] + }, + "cborHex": "bf4207f99f470694ada62a4247476a2d63d743eae31b4f77b72eec55f5881be882d52a57ba63ab436aa40fff46167ee3b30d67bf1b20e663e250c4a7eb1b1fcdd562cd37cf3f1bd385bfd3c65a6df0480a7346499a972d95ff423eca1ba11b1628b9778e54417d4ab51c423dbca128612ab941819f1b50bc025bb75192081bf05e2d4c0e3ca60e1b2617c93e65b7572143c50f10ffff", + "cborBytes": [ + 191, 66, 7, 249, 159, 71, 6, 148, 173, 166, 42, 66, 71, 71, 106, 45, 99, 215, 67, 234, 227, 27, 79, 119, 183, 46, + 236, 85, 245, 136, 27, 232, 130, 213, 42, 87, 186, 99, 171, 67, 106, 164, 15, 255, 70, 22, 126, 227, 179, 13, 103, + 191, 27, 32, 230, 99, 226, 80, 196, 167, 235, 27, 31, 205, 213, 98, 205, 55, 207, 63, 27, 211, 133, 191, 211, 198, + 90, 109, 240, 72, 10, 115, 70, 73, 154, 151, 45, 149, 255, 66, 62, 202, 27, 161, 27, 22, 40, 185, 119, 142, 84, + 65, 125, 74, 181, 28, 66, 61, 188, 161, 40, 97, 42, 185, 65, 129, 159, 27, 80, 188, 2, 91, 183, 81, 146, 8, 27, + 240, 94, 45, 76, 14, 60, 166, 14, 27, 38, 23, 201, 62, 101, 183, 87, 33, 67, 197, 15, 16, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2746, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d081ce7" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2569126422707428914" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9591289031807156347" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12244319510101847954" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78f493dc954b9b1fb37f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66b3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e2978d19e68a3d24a3cc6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b92ccab018" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17574241697045255048" + } + } + } + ] + }, + "cborHex": "bf442d081ce79f1b23a75edea08bde321b851b1a8ebef7407b1ba9ec8fb8a4016f92ff4a78f493dc954b9b1fb37f4266b342ae484b7e2978d19e68a3d24a3cc645b92ccab0181bf3e43fb60d3d9388ff", + "cborBytes": [ + 191, 68, 45, 8, 28, 231, 159, 27, 35, 167, 94, 222, 160, 139, 222, 50, 27, 133, 27, 26, 142, 190, 247, 64, 123, + 27, 169, 236, 143, 184, 164, 1, 111, 146, 255, 74, 120, 244, 147, 220, 149, 75, 155, 31, 179, 127, 66, 102, 179, + 66, 174, 72, 75, 126, 41, 120, 209, 158, 104, 163, 210, 74, 60, 198, 69, 185, 44, 202, 176, 24, 27, 243, 228, 63, + 182, 13, 61, 147, 136, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2747, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1400" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17140812967801441426" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24c72788" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a692cbb9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "998ae924bd77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a90104feab" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10374466017451834911" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "950524300251797507" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7226935434816243501" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8d9678b9" + }, + { + "_tag": "ByteArray", + "bytearray": "b5910bcf03fccc8ef08496f0" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e61929471fe3d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15602625847120421947" + } + } + } + ] + }, + "cborHex": "bf4214009f1bede066940b36cc92ff4424c72788d8799f1bfffffffffffffff744a692cbb91bfffffffffffffffe130bff46998ae924bd77410145a90104feabd9050b9f1b8ff981e06893fe1f1b0d30f0d0a2e298031b644b3b7ceee7c72d448d9678b94cb5910bcf03fccc8ef08496f0ff47e61929471fe3d91bd887a98aacf0e43bff", + "cborBytes": [ + 191, 66, 20, 0, 159, 27, 237, 224, 102, 148, 11, 54, 204, 146, 255, 68, 36, 199, 39, 136, 216, 121, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 247, 68, 166, 146, 203, 185, 27, 255, 255, 255, 255, 255, 255, 255, 254, 19, 11, + 255, 70, 153, 138, 233, 36, 189, 119, 65, 1, 69, 169, 1, 4, 254, 171, 217, 5, 11, 159, 27, 143, 249, 129, 224, + 104, 147, 254, 31, 27, 13, 48, 240, 208, 162, 226, 152, 3, 27, 100, 75, 59, 124, 238, 231, 199, 45, 68, 141, 150, + 120, 185, 76, 181, 145, 11, 207, 3, 252, 204, 142, 240, 132, 150, 240, 255, 71, 230, 25, 41, 71, 31, 227, 217, 27, + 216, 135, 169, 138, 172, 240, 228, 59, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2748, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3401" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1b6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e11287ac8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8896190315702281073" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a39ef9ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "724fcdf9681fa5" + } + } + ] + } + } + ] + }, + "cborHex": "bf4234018042e1b6bf450e11287ac81b7b759df545b4637144a39ef9ec47724fcdf9681fa5ffff", + "cborBytes": [ + 191, 66, 52, 1, 128, 66, 225, 182, 191, 69, 14, 17, 40, 122, 200, 27, 123, 117, 157, 245, 69, 180, 99, 113, 68, + 163, 158, 249, 236, 71, 114, 79, 205, 249, 104, 31, 165, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2749, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0305240055e107" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95b2d6d18173a3b0f4ed92" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76161dfb" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac7facbd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "675026ebb7a3e7b8946c21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7963170952431836732" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + }, + "cborHex": "bf470305240055e1074b95b2d6d18173a3b0f4ed924476161dfb8044ac7facbdbf4b675026ebb7a3e7b8946c211b6e82ddca61689e3cff41d00bff", + "cborBytes": [ + 191, 71, 3, 5, 36, 0, 85, 225, 7, 75, 149, 178, 214, 209, 129, 115, 163, 176, 244, 237, 146, 68, 118, 22, 29, 251, + 128, 68, 172, 127, 172, 189, 191, 75, 103, 80, 38, 235, 183, 163, 231, 184, 148, 108, 33, 27, 110, 130, 221, 202, + 97, 104, 158, 60, 255, 65, 208, 11, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2750, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13759954440874748491" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b0200c1014f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17445098298434032223" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcf907" + } + } + ] + }, + "cborHex": "bf1bbef52da91de5ea4b463b0200c1014f1bf21970796dee925f43fcf907ff", + "cborBytes": [ + 191, 27, 190, 245, 45, 169, 29, 229, 234, 75, 70, 59, 2, 0, 193, 1, 79, 27, 242, 25, 112, 121, 109, 238, 146, 95, + 67, 252, 249, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2751, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf54c9ebfd215318bc0a0d67" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11280162735491881079" + } + } + } + ] + }, + "cborHex": "bf4cbf54c9ebfd215318bc0a0d671b9c8b303e39979877ff", + "cborBytes": [ + 191, 76, 191, 84, 201, 235, 253, 33, 83, 24, 188, 10, 13, 103, 27, 156, 139, 48, 62, 57, 151, 152, 119, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2752, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffed9f1bffffffffffffffef14ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 20, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2753, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a64b84faec154291b8e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16787272354005134851" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5472705443748790763" + } + }, + { + "_tag": "ByteArray", + "bytearray": "10f2dc060926" + } + ] + } + } + ] + }, + "cborHex": "bf4a1a64b84faec154291b8ed8669f1bfffffffffffffff09f1be8f85f4360362e031b4bf2f49afefe41eb4610f2dc060926ffffff", + "cborBytes": [ + 191, 74, 26, 100, 184, 79, 174, 193, 84, 41, 27, 142, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, + 159, 27, 232, 248, 95, 67, 96, 54, 46, 3, 27, 75, 242, 244, 154, 254, 254, 65, 235, 70, 16, 242, 220, 6, 9, 38, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2754, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fef9" + }, + { + "_tag": "ByteArray", + "bytearray": "5dfafd87f271229cee1f3e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1282923357718739580" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13995003215374735669" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6244071852033258011" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14867049493937769216" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5199942ad" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + }, + "cborHex": "bf03d87f9f0642fef94b5dfafd87f271229cee1f3e05ff1b11cddbff22e07a7ca01bc2383d4692dc59359f041b56a766445475321bff1bce525ebee84fcb0045c5199942ad1bfffffffffffffffd13ff", + "cborBytes": [ + 191, 3, 216, 127, 159, 6, 66, 254, 249, 75, 93, 250, 253, 135, 242, 113, 34, 156, 238, 31, 62, 5, 255, 27, 17, + 205, 219, 255, 34, 224, 122, 124, 160, 27, 194, 56, 61, 70, 146, 220, 89, 53, 159, 4, 27, 86, 167, 102, 68, 84, + 117, 50, 27, 255, 27, 206, 82, 94, 190, 232, 79, 203, 0, 69, 197, 25, 153, 66, 173, 27, 255, 255, 255, 255, 255, + 255, 255, 253, 19, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2755, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a60ab" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12062573049678568753" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd0400a1040000a1" + }, + { + "_tag": "ByteArray", + "bytearray": "1589" + }, + { + "_tag": "ByteArray", + "bytearray": "e8a173" + }, + { + "_tag": "ByteArray", + "bytearray": "94fd572ef63cc2965397" + } + ] + } + } + ] + }, + "cborHex": "bf431a60abd905099f1ba766de47474a9d3148fd0400a1040000a142158943e8a1734a94fd572ef63cc2965397ffff", + "cborBytes": [ + 191, 67, 26, 96, 171, 217, 5, 9, 159, 27, 167, 102, 222, 71, 71, 74, 157, 49, 72, 253, 4, 0, 161, 4, 0, 0, 161, + 66, 21, 137, 67, 232, 161, 115, 74, 148, 253, 87, 46, 246, 60, 194, 150, 83, 151, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2756, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13756548053369539756" + } + } + } + ] + }, + "cborHex": "bf021bbee91391b8aeccacff", + "cborBytes": [191, 2, 27, 190, 233, 19, 145, 184, 174, 204, 172, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2757, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "481718485772409192" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14637091875588863383" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "678350375851587568" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8794218ba8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bbc38bdd22ea31a9d" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3310864409033039904" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15056277002580211656" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "14b54071d296daa1f1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14595351522143388431" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5e854040bedc5beb4ef6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5261482758259433635" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18265190175383623069" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11392681149695147399" + } + } + } + ] + }, + "cborHex": "bf1b06af68691a3419681bcb2165829d3af5971b0969fc12a1e2f7f0bf458794218ba8497bbc38bdd22ea31a9dff1b2df28da367e5e020d8669f1bd0f2a4298aad37c89f4914b54071d296daa1f11bca8d1ae14150430f4a5e854040bedc5beb4ef6ffff1b49048ab12de560a3801bfd7afdb0feb2159d1b9e1aef2506de3d87ff", + "cborBytes": [ + 191, 27, 6, 175, 104, 105, 26, 52, 25, 104, 27, 203, 33, 101, 130, 157, 58, 245, 151, 27, 9, 105, 252, 18, 161, + 226, 247, 240, 191, 69, 135, 148, 33, 139, 168, 73, 123, 188, 56, 189, 210, 46, 163, 26, 157, 255, 27, 45, 242, + 141, 163, 103, 229, 224, 32, 216, 102, 159, 27, 208, 242, 164, 41, 138, 173, 55, 200, 159, 73, 20, 181, 64, 113, + 210, 150, 218, 161, 241, 27, 202, 141, 26, 225, 65, 80, 67, 15, 74, 94, 133, 64, 64, 190, 220, 91, 235, 78, 246, + 255, 255, 27, 73, 4, 138, 177, 45, 229, 96, 163, 128, 27, 253, 122, 253, 176, 254, 178, 21, 157, 27, 158, 26, 239, + 37, 6, 222, 61, 135, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2758, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0013fe94035c0ffef5fe" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18337404221252889229" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17043065168097643993" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a0013fe94035c0ffef5fed8669f1bfe7b8bfbc686ea8d9f141bec852178ec4b0dd9ffffff", + "cborBytes": [ + 191, 74, 0, 19, 254, 148, 3, 92, 15, 254, 245, 254, 216, 102, 159, 27, 254, 123, 139, 251, 198, 134, 234, 141, + 159, 20, 27, 236, 133, 33, 120, 236, 75, 13, 217, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2759, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e004a264be" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf45e004a264be80ff", + "cborBytes": [191, 69, 224, 4, 162, 100, 190, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2760, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "27fd0ddb6f379ae284" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8dc5552" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "53b0c389943a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9172175121490832894" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8564272048175207079" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18244340378906733383" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11681143778251988065" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21a4770a7c8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f516fe2733f8d183f638038d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f273ca5a49367e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a12c712647ac" + } + } + ] + } + } + ] + }, + "cborHex": "bf4927fd0ddb6f379ae28444d8dc55524653b0c389943abf1b7f4a1cad3e22edfe1b76da680d674a52a71bfd30eae9760d2b471ba21bc26080f95c614621a4770a7c8f4cf516fe2733f8d183f638038d47f273ca5a49367e46a12c712647acffff", + "cborBytes": [ + 191, 73, 39, 253, 13, 219, 111, 55, 154, 226, 132, 68, 216, 220, 85, 82, 70, 83, 176, 195, 137, 148, 58, 191, 27, + 127, 74, 28, 173, 62, 34, 237, 254, 27, 118, 218, 104, 13, 103, 74, 82, 167, 27, 253, 48, 234, 233, 118, 13, 43, + 71, 27, 162, 27, 194, 96, 128, 249, 92, 97, 70, 33, 164, 119, 10, 124, 143, 76, 245, 22, 254, 39, 51, 248, 209, + 131, 246, 56, 3, 141, 71, 242, 115, 202, 90, 73, 54, 126, 70, 161, 44, 113, 38, 71, 172, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2761, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3405878097183564076" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12198975674013948374" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17316232595560980784" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15065917470333263886" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "357487879887680087" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "031bc1f4032cc9723e7db3c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "508ce9e5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "172654b7f8e4f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13828336619561927019" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3844fd36617bda" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb9f4525" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7b1a14b83a1" + } + } + ] + } + } + ] + }, + "cborHex": "bf0e9f1b2f441c1592e8e12c1ba94b77be193b99d61bf04f9dcce273e1301bd114e41dda90e00eff1b04f60d552c367257bf4c031bc1f4032cc9723e7db3c644508ce9e547172654b7f8e4f31bbfe81ee3cb83c16b473844fd36617bda411e44bb9f452546f7b1a14b83a1ffff", + "cborBytes": [ + 191, 14, 159, 27, 47, 68, 28, 21, 146, 232, 225, 44, 27, 169, 75, 119, 190, 25, 59, 153, 214, 27, 240, 79, 157, + 204, 226, 115, 225, 48, 27, 209, 20, 228, 29, 218, 144, 224, 14, 255, 27, 4, 246, 13, 85, 44, 54, 114, 87, 191, + 76, 3, 27, 193, 244, 3, 44, 201, 114, 62, 125, 179, 198, 68, 80, 140, 233, 229, 71, 23, 38, 84, 183, 248, 228, + 243, 27, 191, 232, 30, 227, 203, 131, 193, 107, 71, 56, 68, 253, 54, 97, 123, 218, 65, 30, 68, 187, 159, 69, 37, + 70, 247, 177, 161, 75, 131, 161, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2762, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "22955756c513d01c7307bf" + } + ] + } + } + ] + }, + "cborHex": "bf41f89f4b22955756c513d01c7307bfffff", + "cborBytes": [191, 65, 248, 159, 75, 34, 149, 87, 86, 197, 19, 208, 28, 115, 7, 191, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2763, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7700145944268087095" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12157577012035740312" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15584794427739695789" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8723526921116117868" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d10ff6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3800424675951070399" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8705341494064267059" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6adc69f06ec39f379f1ba8b863e0fbd86298ff1bd8484ff5d2e96aad9f1b79103183f9aeeb6c43d10ff61b34bdd21b75b14cbf1b78cf95f74a2b3f33ffff", + "cborBytes": [ + 191, 27, 106, 220, 105, 240, 110, 195, 159, 55, 159, 27, 168, 184, 99, 224, 251, 216, 98, 152, 255, 27, 216, 72, + 79, 245, 210, 233, 106, 173, 159, 27, 121, 16, 49, 131, 249, 174, 235, 108, 67, 209, 15, 246, 27, 52, 189, 210, + 27, 117, 177, 76, 191, 27, 120, 207, 149, 247, 74, 43, 63, 51, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2764, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "817831217164693871" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14090788304653027707" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "adbf" + }, + { + "_tag": "ByteArray", + "bytearray": "354bcdbe1730" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "845c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "77b51382" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14875156182470995425" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf896095cc056975331b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "894400cc" + } + } + ] + }, + "cborHex": "bf1b0b598528b153b16f801bc38c894e9012897b9f42adbf46354bcdbe1730ff42845c9f4477b513821bce6f2bbc6aa3ade1ff4abf896095cc056975331b44894400ccff", + "cborBytes": [ + 191, 27, 11, 89, 133, 40, 177, 83, 177, 111, 128, 27, 195, 140, 137, 78, 144, 18, 137, 123, 159, 66, 173, 191, 70, + 53, 75, 205, 190, 23, 48, 255, 66, 132, 92, 159, 68, 119, 181, 19, 130, 27, 206, 111, 43, 188, 106, 163, 173, 225, + 255, 74, 191, 137, 96, 149, 204, 5, 105, 117, 51, 27, 68, 137, 68, 0, 204, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2765, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "96e3f82beac755bf24" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4996e3f82beac755bf24d87d80ff", + "cborBytes": [191, 73, 150, 227, 248, 43, 234, 199, 85, 191, 36, 216, 125, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2766, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "980351567970420377" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c4de5d6" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b0d9ae88e93dfc699a0444c4de5d680ff", + "cborBytes": [191, 27, 13, 154, 232, 142, 147, 223, 198, 153, 160, 68, 76, 77, 229, 214, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2767, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11185167750393825313" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0afe21" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17021412506353395867" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d34304" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c9fd0606" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f802" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "752b73" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38f80200fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "760006" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d0428" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13321557055512482021" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b9b39b2ceb36108219f430afe211bec38347dc095e89bff43d34304d87f9f44c9fd06061bfffffffffffffff2ff42f802bf43752b734538f80200fc4376000641fa438d04281bb8dfad8fb4eb90e5ffff", + "cborBytes": [ + 191, 27, 155, 57, 178, 206, 179, 97, 8, 33, 159, 67, 10, 254, 33, 27, 236, 56, 52, 125, 192, 149, 232, 155, 255, + 67, 211, 67, 4, 216, 127, 159, 68, 201, 253, 6, 6, 27, 255, 255, 255, 255, 255, 255, 255, 242, 255, 66, 248, 2, + 191, 67, 117, 43, 115, 69, 56, 248, 2, 0, 252, 67, 118, 0, 6, 65, 250, 67, 141, 4, 40, 27, 184, 223, 173, 143, + 180, 235, 144, 229, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2768, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0242aedbc06c3f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9f5cdfe0e09a97e2" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1801" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10102985599667179145" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14462851650420869215" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4416910383043743583" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4405496099951459319" + } + } + ] + } + } + ] + }, + "cborHex": "bf470242aedbc06c3f9f489f5cdfe0e09a97e2ff421801d8669f1b8c3503dfff0c8e899f1bc8b65ef2d682085f1b3d4c0497720e8f5f1b3d23775c90f9bbf7ffffff", + "cborBytes": [ + 191, 71, 2, 66, 174, 219, 192, 108, 63, 159, 72, 159, 92, 223, 224, 224, 154, 151, 226, 255, 66, 24, 1, 216, 102, + 159, 27, 140, 53, 3, 223, 255, 12, 142, 137, 159, 27, 200, 182, 94, 242, 214, 130, 8, 95, 27, 61, 76, 4, 151, 114, + 14, 143, 95, 27, 61, 35, 119, 92, 144, 249, 187, 247, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2769, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "83fd5d244a450c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a09d06d287" + } + } + ] + }, + "cborHex": "bf4783fd5d244a450c45a09d06d287ff", + "cborBytes": [191, 71, 131, 253, 93, 36, 74, 69, 12, 69, 160, 157, 6, 210, 135, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2770, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28b9eeee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10517583060155758089" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "32" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3405f3b4afc0603937f615e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13255692066269324990" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c9d8a5e541a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3737870410139755668" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5a3b21f71684747159f32e" + }, + { + "_tag": "ByteArray", + "bytearray": "bf82e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10458296098463021243" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8609539426197492675" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7d9809175" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7652a74c597dc3b27f41" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f046b28" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b83a46" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5265236416975985711" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1342960145849581992" + } + } + ] + } + } + ] + }, + "cborHex": "bf4428b9eeee1b91f5f611943ff6094132a04c3405f3b4afc0603937f615e81bb7f5adb3ddf266be463c9d8a5e541ad8669f1b33df95557cd2e4949f4b5a3b21f71684747159f32e43bf82e81b912354e420bdf8bb1b777b3a7e2a38d3c345d7d9809175ffff4a7652a74c597dc3b27f41449f046b2843b83a46d8669f1b4911e09ff44ddc2f9f1b12a3272328df01a8ffffff", + "cborBytes": [ + 191, 68, 40, 185, 238, 238, 27, 145, 245, 246, 17, 148, 63, 246, 9, 65, 50, 160, 76, 52, 5, 243, 180, 175, 192, + 96, 57, 55, 246, 21, 232, 27, 183, 245, 173, 179, 221, 242, 102, 190, 70, 60, 157, 138, 94, 84, 26, 216, 102, 159, + 27, 51, 223, 149, 85, 124, 210, 228, 148, 159, 75, 90, 59, 33, 247, 22, 132, 116, 113, 89, 243, 46, 67, 191, 130, + 232, 27, 145, 35, 84, 228, 32, 189, 248, 187, 27, 119, 123, 58, 126, 42, 56, 211, 195, 69, 215, 217, 128, 145, + 117, 255, 255, 74, 118, 82, 167, 76, 89, 125, 195, 178, 127, 65, 68, 159, 4, 107, 40, 67, 184, 58, 70, 216, 102, + 159, 27, 73, 17, 224, 159, 244, 77, 220, 47, 159, 27, 18, 163, 39, 35, 40, 223, 1, 168, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2771, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19ed9af9c6e2d5586dd56f09" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb27e40a033c" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8cd3f3359f1777a2" + }, + { + "_tag": "ByteArray", + "bytearray": "fd34477aadf6257f5833a5" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "182395201042397365" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3155422753539467297" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6901" + } + } + ] + }, + "cborHex": "bf09bf4c19ed9af9c6e2d5586dd56f0946cb27e40a033cff119f488cd3f3359f1777a24bfd34477aadf6257f5833a5ff1b0287ff780ede38b5801b2bca5046b4e7a821426901ff", + "cborBytes": [ + 191, 9, 191, 76, 25, 237, 154, 249, 198, 226, 213, 88, 109, 213, 111, 9, 70, 203, 39, 228, 10, 3, 60, 255, 17, + 159, 72, 140, 211, 243, 53, 159, 23, 119, 162, 75, 253, 52, 71, 122, 173, 246, 37, 127, 88, 51, 165, 255, 27, 2, + 135, 255, 120, 14, 222, 56, 181, 128, 27, 43, 202, 80, 70, 180, 231, 168, 33, 66, 105, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2772, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2749790544974910722" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5788445889572697543" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5429884682842022364" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b262937ee7ff51502d8669f1b5054b0de398cf5c79f1b4b5ad359ac2221dcffff1bffffffffffffffef80ff", + "cborBytes": [ + 191, 27, 38, 41, 55, 238, 127, 245, 21, 2, 216, 102, 159, 27, 80, 84, 176, 222, 57, 140, 245, 199, 159, 27, 75, + 90, 211, 89, 172, 34, 33, 220, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 239, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2773, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15278530940930011" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6433312903342294036" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11358106052971362078" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7312936637518317978" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8303867963533400788" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ec534d4ecbf0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10050601797664642564" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11716516890659727409" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10339474839703762612" + } + } + } + ] + }, + "cborHex": "bf1b003647be316c87dba01b5947b8001ca78414d8669f1b9da019470092771e9f1b657cc5205038099a1b733d43eac4279ad446ec534d4ecbf01b8b7ae915a8b41604ffff1ba2996e0908a328311b8f7d3195f8a1b6b4ff", + "cborBytes": [ + 191, 27, 0, 54, 71, 190, 49, 108, 135, 219, 160, 27, 89, 71, 184, 0, 28, 167, 132, 20, 216, 102, 159, 27, 157, + 160, 25, 71, 0, 146, 119, 30, 159, 27, 101, 124, 197, 32, 80, 56, 9, 154, 27, 115, 61, 67, 234, 196, 39, 154, 212, + 70, 236, 83, 77, 78, 203, 240, 27, 139, 122, 233, 21, 168, 180, 22, 4, 255, 255, 27, 162, 153, 110, 9, 8, 163, 40, + 49, 27, 143, 125, 49, 149, 248, 161, 182, 180, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2774, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fad83e55336f" + } + ] + } + } + ] + }, + "cborHex": "bf119f46fad83e55336fffff", + "cborBytes": [191, 17, 159, 70, 250, 216, 62, 85, 51, 111, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2775, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2988232936547932450" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3784518369370126300" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1004" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8403456117293730439" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1011933912738258067" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14695584879667887401" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15214501504134352772" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf13141b29785606010fd922131b34854f67dc3f37dc4210041b749f12d0b4e04a871b0e0b1c883cef5c931bcbf134966734bd29801bd324c48214930f84bf0905ffff", + "cborBytes": [ + 191, 19, 20, 27, 41, 120, 86, 6, 1, 15, 217, 34, 19, 27, 52, 133, 79, 103, 220, 63, 55, 220, 66, 16, 4, 27, 116, + 159, 18, 208, 180, 224, 74, 135, 27, 14, 11, 28, 136, 60, 239, 92, 147, 27, 203, 241, 52, 150, 103, 52, 189, 41, + 128, 27, 211, 36, 196, 130, 20, 147, 15, 132, 191, 9, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2776, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4360730416683166659" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "293051042159096004" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f894aa9c5ffb93c81bbe4d9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5488759570291091408" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1ca827118e1506c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7917104872677273792" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3935656983021721710" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb81" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10411055270869855929" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4644640030902171700" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d5f4ef7a99ebf60f5c9412d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7396059640991568013" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e49d561110e4" + } + ] + } + } + ] + }, + "cborHex": "bf1b3c846d35b7a42bc3bf1b0411205ec4f370c44c8f894aa9c5ffb93c81bbe4d91b4c2bfdbf9cb9e7d048d1ca827118e1506c1b6ddf34ef617170c01b369e432c8ecb986e42cb811b907b7f9bd527eeb9ff1b4075137fef7bb8344c5d5f4ef7a99ebf60f5c9412d1b66a4150eb6e7d08d9f46e49d561110e4ffff", + "cborBytes": [ + 191, 27, 60, 132, 109, 53, 183, 164, 43, 195, 191, 27, 4, 17, 32, 94, 196, 243, 112, 196, 76, 143, 137, 74, 169, + 197, 255, 185, 60, 129, 187, 228, 217, 27, 76, 43, 253, 191, 156, 185, 231, 208, 72, 209, 202, 130, 113, 24, 225, + 80, 108, 27, 109, 223, 52, 239, 97, 113, 112, 192, 27, 54, 158, 67, 44, 142, 203, 152, 110, 66, 203, 129, 27, 144, + 123, 127, 155, 213, 39, 238, 185, 255, 27, 64, 117, 19, 127, 239, 123, 184, 52, 76, 93, 95, 78, 247, 169, 158, + 191, 96, 245, 201, 65, 45, 27, 102, 164, 21, 14, 182, 231, 208, 141, 159, 70, 228, 157, 86, 17, 16, 228, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2777, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1617303282382606861" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6196676769136515887" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12525566170420869822" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6307463981775163995" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "640294531265840414" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14664921502239164723" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1398196977797281998" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1911a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2913822637364298796" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9660022359888369940" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13715432873787962745" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13048633275327954850" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17387434614086978297" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11843174264236080388" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10668019794278442195" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2122498952133611610" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1315188090737465510" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13026517973108016950" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6b2c471" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4518272647779436422" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc5234bcc85137db92" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14592764620882595884" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "71cd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1671d0c4387d120d801b55ff04b0ac4c1b2f1badd3c0119695fabe1b57889d12b347925bbf1b08e2c87bd7b9c51e1bcb8444687ff409331b136764be4ba1b8ce431911a41b286ffa402697442c1b860f4b27c37a19141bbe570187fed8b5791bb5160ed44c43bfa21bf14c93a8affc4af91ba45b683ed8d6fd04ff1b940c6b7b36cd64d3d8669f1b1d74a18d2e10105a9f1b12407c99b13b18a6ffff1bb4c77d143f584736bf44a6b2c4711b3eb42108c941c78641b249dc5234bcc85137db92ff1bca83ea1b5e98502cbf4271cd4164ffff", + "cborBytes": [ + 191, 27, 22, 113, 208, 196, 56, 125, 18, 13, 128, 27, 85, 255, 4, 176, 172, 76, 27, 47, 27, 173, 211, 192, 17, + 150, 149, 250, 190, 27, 87, 136, 157, 18, 179, 71, 146, 91, 191, 27, 8, 226, 200, 123, 215, 185, 197, 30, 27, 203, + 132, 68, 104, 127, 244, 9, 51, 27, 19, 103, 100, 190, 75, 161, 184, 206, 67, 25, 17, 164, 27, 40, 111, 250, 64, + 38, 151, 68, 44, 27, 134, 15, 75, 39, 195, 122, 25, 20, 27, 190, 87, 1, 135, 254, 216, 181, 121, 27, 181, 22, 14, + 212, 76, 67, 191, 162, 27, 241, 76, 147, 168, 175, 252, 74, 249, 27, 164, 91, 104, 62, 216, 214, 253, 4, 255, 27, + 148, 12, 107, 123, 54, 205, 100, 211, 216, 102, 159, 27, 29, 116, 161, 141, 46, 16, 16, 90, 159, 27, 18, 64, 124, + 153, 177, 59, 24, 166, 255, 255, 27, 180, 199, 125, 20, 63, 88, 71, 54, 191, 68, 166, 178, 196, 113, 27, 62, 180, + 33, 8, 201, 65, 199, 134, 65, 178, 73, 220, 82, 52, 188, 200, 81, 55, 219, 146, 255, 27, 202, 131, 234, 27, 94, + 152, 80, 44, 191, 66, 113, 205, 65, 100, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2778, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07fc06f5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3726053690349254753" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "020188fe00" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "626984b6fa84c0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdbe5602" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4407fc06f5d8669f1b33b59a17034cf8619f45020188fe00ffff47626984b6fa84c0d905029f00ff44fdbe5602a0ff", + "cborBytes": [ + 191, 68, 7, 252, 6, 245, 216, 102, 159, 27, 51, 181, 154, 23, 3, 76, 248, 97, 159, 69, 2, 1, 136, 254, 0, 255, + 255, 71, 98, 105, 132, 182, 250, 132, 192, 217, 5, 2, 159, 0, 255, 68, 253, 190, 86, 2, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2779, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6602718249849274742" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e6bd8e6c5b02cb623c090" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9679669896441224145" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6562820591033197552" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17346617643013749136" + } + }, + { + "_tag": "ByteArray", + "bytearray": "22b0f9e01e080e71f501" + }, + { + "_tag": "ByteArray", + "bytearray": "77d996a9342349cb7738f5" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12788775908993504624" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5cbbb42fc1ce481be17a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13007964489355317233" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00be77f8dea19bf6221ea6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13732562335261516850" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5085319685445414613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1430395090849668992" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16167427915341634945" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15771262804384941463" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14025295319469739041" + } + } + } + ] + }, + "cborHex": "bf1b5ba19143fa4141764b5e6bd8e6c5b02cb623c0901b8655187c586bdbd1d8669f1b5b13d28e652723f09f1bf0bb90d70a5bb9904a22b0f9e01e080e71f5014b77d996a9342349cb7738f5ffff1bb17adbee6fa195704a5cbbb42fc1ce481be17a1bb48592c8aeeb4ff14b00be77f8dea19bf6221ea61bbe93dcaf892be432bf1b4692af4f8c466ed51b13d9c8c1ae8e9f80418e1be05e3e07c1ac1d81ff1bdadec7f5fab205971bc2a3dbc8aaf14c21ff", + "cborBytes": [ + 191, 27, 91, 161, 145, 67, 250, 65, 65, 118, 75, 94, 107, 216, 230, 197, 176, 44, 182, 35, 192, 144, 27, 134, 85, + 24, 124, 88, 107, 219, 209, 216, 102, 159, 27, 91, 19, 210, 142, 101, 39, 35, 240, 159, 27, 240, 187, 144, 215, + 10, 91, 185, 144, 74, 34, 176, 249, 224, 30, 8, 14, 113, 245, 1, 75, 119, 217, 150, 169, 52, 35, 73, 203, 119, 56, + 245, 255, 255, 27, 177, 122, 219, 238, 111, 161, 149, 112, 74, 92, 187, 180, 47, 193, 206, 72, 27, 225, 122, 27, + 180, 133, 146, 200, 174, 235, 79, 241, 75, 0, 190, 119, 248, 222, 161, 155, 246, 34, 30, 166, 27, 190, 147, 220, + 175, 137, 43, 228, 50, 191, 27, 70, 146, 175, 79, 140, 70, 110, 213, 27, 19, 217, 200, 193, 174, 142, 159, 128, + 65, 142, 27, 224, 94, 62, 7, 193, 172, 29, 129, 255, 27, 218, 222, 199, 245, 250, 178, 5, 151, 27, 194, 163, 219, + 200, 170, 241, 76, 33, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2780, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6582475331055063283" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2fbe84840e5f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16926249090475714551" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14446838349849455956" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "45e652" + }, + { + "_tag": "ByteArray", + "bytearray": "372255f283d4b1" + }, + { + "_tag": "ByteArray", + "bytearray": "3a0ed64898e08a4e17d3" + }, + { + "_tag": "ByteArray", + "bytearray": "fc4924cd7cc431ac9f9812e7" + }, + { + "_tag": "ByteArray", + "bytearray": "72" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15786724833035032569" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "339008861840957488" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3949993832241486869" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4939925737899374207" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7260167053561849594" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17022031400075629565" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13829464498339702538" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8970377c06d1" + }, + { + "_tag": "ByteArray", + "bytearray": "c349c5361c2db9" + } + ] + } + } + ] + }, + "cborHex": "bf1b5b59a6702a4f10f3bf462fbe84840e5f1beae61dde619567f7ff1bc87d7aefc2446d549f4345e65247372255f283d4b14a3a0ed64898e08a4e17d34cfc4924cd7cc431ac9f9812e74172ff1bdb15b6980fe417f9bf1b04b466c381bd60301b36d1327663bcdc151b448e2449284d367f1b64c14b781d8c66faff1bec3a675f2d0d93fd9f1bbfec20b08969e70a468970377c06d147c349c5361c2db9ffff", + "cborBytes": [ + 191, 27, 91, 89, 166, 112, 42, 79, 16, 243, 191, 70, 47, 190, 132, 132, 14, 95, 27, 234, 230, 29, 222, 97, 149, + 103, 247, 255, 27, 200, 125, 122, 239, 194, 68, 109, 84, 159, 67, 69, 230, 82, 71, 55, 34, 85, 242, 131, 212, 177, + 74, 58, 14, 214, 72, 152, 224, 138, 78, 23, 211, 76, 252, 73, 36, 205, 124, 196, 49, 172, 159, 152, 18, 231, 65, + 114, 255, 27, 219, 21, 182, 152, 15, 228, 23, 249, 191, 27, 4, 180, 102, 195, 129, 189, 96, 48, 27, 54, 209, 50, + 118, 99, 188, 220, 21, 27, 68, 142, 36, 73, 40, 77, 54, 127, 27, 100, 193, 75, 120, 29, 140, 102, 250, 255, 27, + 236, 58, 103, 95, 45, 13, 147, 253, 159, 27, 191, 236, 32, 176, 137, 105, 231, 10, 70, 137, 112, 55, 124, 6, 209, + 71, 195, 73, 197, 54, 28, 45, 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2781, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c97c4731" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "18b4b6" + }, + { + "_tag": "ByteArray", + "bytearray": "b44c88" + }, + { + "_tag": "ByteArray", + "bytearray": "a618f0501e14a57f77571a" + } + ] + } + } + ] + }, + "cborHex": "bf44c97c47319f4318b4b643b44c884ba618f0501e14a57f77571affff", + "cborBytes": [ + 191, 68, 201, 124, 71, 49, 159, 67, 24, 180, 182, 67, 180, 76, 136, 75, 166, 24, 240, 80, 30, 20, 165, 127, 119, + 87, 26, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2782, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1416119659124382324" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2157970277899250565" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11440711830196429621" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7dd5bfd4e0ae9239dfae7435" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4651326948639871001" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37ad68fb481e0d4e936c63b6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5382816173261127525" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3943874640927815884" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2508a8a7925a8a3b" + }, + { + "_tag": "ByteArray", + "bytearray": "6f5423f583e6c7fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16493858598618955708" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3277880376715269745" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7626456370035598094" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4535161427905276511" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13498388226690651501" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17971018588298428528" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b13a71153b98e5a74d8669f1b1df2a688ca092b859f1b9ec592cb4877a3354c7dd5bfd4e0ae9239dfae7435ffff1b408cd5374be190194c37ad68fb481e0d4e936c63b61b4ab39aca4a74ff659f1b36bb7517232c78cc482508a8a7925a8a3b486f5423f583e6c7fc1be4e5f501da347fbc1b2d7d5ed5ee565671ff1b69d69da96efca30ed8669f1b3ef0214a5558ea5f80ff1bbb53e8931c36156d9f1bf965e23107784070ffff", + "cborBytes": [ + 191, 27, 19, 167, 17, 83, 185, 142, 90, 116, 216, 102, 159, 27, 29, 242, 166, 136, 202, 9, 43, 133, 159, 27, 158, + 197, 146, 203, 72, 119, 163, 53, 76, 125, 213, 191, 212, 224, 174, 146, 57, 223, 174, 116, 53, 255, 255, 27, 64, + 140, 213, 55, 75, 225, 144, 25, 76, 55, 173, 104, 251, 72, 30, 13, 78, 147, 108, 99, 182, 27, 74, 179, 154, 202, + 74, 116, 255, 101, 159, 27, 54, 187, 117, 23, 35, 44, 120, 204, 72, 37, 8, 168, 167, 146, 90, 138, 59, 72, 111, + 84, 35, 245, 131, 230, 199, 252, 27, 228, 229, 245, 1, 218, 52, 127, 188, 27, 45, 125, 94, 213, 238, 86, 86, 113, + 255, 27, 105, 214, 157, 169, 110, 252, 163, 14, 216, 102, 159, 27, 62, 240, 33, 74, 85, 88, 234, 95, 128, 255, 27, + 187, 83, 232, 147, 28, 54, 21, 109, 159, 27, 249, 101, 226, 49, 7, 120, 64, 112, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2783, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e5db09c5318c0d8a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8742931240874665142" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13172663307643345466" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9219336113250964496" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1110481770641754473" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3007648201404894337" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06d701d5220501fc89d7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12433247660673717344" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12884979888712903865" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd76077bb9facc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17196415246596613096" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12807950814312433243" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00060304" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf119f48e5db09c5318c0d8a1b795521a43bffe4b61bb6ceb37c8de75a3a1b7ff1a9594f411410ff1b0f6939496ca60969a01b29bd501a9e14cc814a06d701d5220501fc89d71bac8bc4df8ae9d460d8669f1bb2d0a4f0f4c8ecb99f47fd76077bb9facc1bffffffffffffffed1bfffffffffffffffe0a1beea5f08e6780a3e8ffff1bb1befb67fbc4865b44000603041bffffffffffffffecd9050d80ff", + "cborBytes": [ + 191, 17, 159, 72, 229, 219, 9, 197, 49, 140, 13, 138, 27, 121, 85, 33, 164, 59, 255, 228, 182, 27, 182, 206, 179, + 124, 141, 231, 90, 58, 27, 127, 241, 169, 89, 79, 65, 20, 16, 255, 27, 15, 105, 57, 73, 108, 166, 9, 105, 160, 27, + 41, 189, 80, 26, 158, 20, 204, 129, 74, 6, 215, 1, 213, 34, 5, 1, 252, 137, 215, 27, 172, 139, 196, 223, 138, 233, + 212, 96, 216, 102, 159, 27, 178, 208, 164, 240, 244, 200, 236, 185, 159, 71, 253, 118, 7, 123, 185, 250, 204, 27, + 255, 255, 255, 255, 255, 255, 255, 237, 27, 255, 255, 255, 255, 255, 255, 255, 254, 10, 27, 238, 165, 240, 142, + 103, 128, 163, 232, 255, 255, 27, 177, 190, 251, 103, 251, 196, 134, 91, 68, 0, 6, 3, 4, 27, 255, 255, 255, 255, + 255, 255, 255, 236, 217, 5, 13, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2784, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12855244583912155865" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a5189" + } + } + ] + }, + "cborHex": "bf1bb26700d6ccd92ad9439a5189ff", + "cborBytes": [191, 27, 178, 103, 0, 214, 204, 217, 42, 217, 67, 154, 81, 137, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2785, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "219dafbd3d7d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bafffdc8e4567e8b7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "571567cdfa77fceaa7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8744047813661178940" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84a99256f025" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13002954209435411277" + } + } + } + ] + }, + "cborHex": "bf46219dafbd3d7d497bafffdc8e4567e8b749571567cdfa77fceaa71b79591928984e3c3c4684a99256f025a04297f91bb473c5f5fc11634dff", + "cborBytes": [ + 191, 70, 33, 157, 175, 189, 61, 125, 73, 123, 175, 255, 220, 142, 69, 103, 232, 183, 73, 87, 21, 103, 205, 250, + 119, 252, 234, 167, 27, 121, 89, 25, 40, 152, 78, 60, 60, 70, 132, 169, 146, 86, 240, 37, 160, 66, 151, 249, 27, + 180, 115, 197, 245, 252, 17, 99, 77, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2786, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba39528a007506ceb35904" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2835740141014957169" + } + } + } + ] + }, + "cborHex": "bf4bba39528a007506ceb359041b275a92a244833c71ff", + "cborBytes": [191, 75, 186, 57, 82, 138, 0, 117, 6, 206, 179, 89, 4, 27, 39, 90, 146, 162, 68, 131, 60, 113, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2787, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14830206213821659933" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17894146690772234288" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18443871204246580263" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aba053036573536906f65c2c" + } + } + ] + }, + "cborHex": "bf1bcdcf79fa48a17b1d1bf854c79ba635f0301bfff5cb23f42c6c274caba053036573536906f65c2cff", + "cborBytes": [ + 191, 27, 205, 207, 121, 250, 72, 161, 123, 29, 27, 248, 84, 199, 155, 166, 53, 240, 48, 27, 255, 245, 203, 35, + 244, 44, 108, 39, 76, 171, 160, 83, 3, 101, 115, 83, 105, 6, 246, 92, 44, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2788, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "125de602caff1e79f7f99fe7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1256512160531368223" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37d56305729f6204b7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15855100144082593176" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bf39f6deca3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "511377932029198370" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cd3816d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8940242544729572984" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f806eb672f35f12b7d" + }, + { + "_tag": "ByteArray", + "bytearray": "bc59a4ee" + }, + { + "_tag": "ByteArray", + "bytearray": "2541af32eff44f3f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "488e0c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12038655700281731260" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4791601735214676078" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea7c9c51790a6e449f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12834304647164496388" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7071968502333583849" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ea98c889fa0df0fb793426" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "866b4924a0d119" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9581e3cad1abac" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "385a0e0e73be0eada5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4242976ac2a6" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c125de602caff1e79f7f99fe71b11700727186e491f4937d56305729f6204b71bdc08a193be49a598463bf39f6deca3d8669f1b0718c785109300229f44cd3816d11b7c121f3a1c70c67849f806eb672f35f12b7d44bc59a4ee482541af32eff44f3fffff43488e0cd8669f1ba711e5936c8628bc9f1b427f3064249db86e49ea7c9c51790a6e449f1bb21c9c13d9628a041b6224ade24c5831e94bea98c889fa0df0fb793426ffff47866b4924a0d11980479581e3cad1abacbf49385a0e0e73be0eada5464242976ac2a6ffff", + "cborBytes": [ + 191, 76, 18, 93, 230, 2, 202, 255, 30, 121, 247, 249, 159, 231, 27, 17, 112, 7, 39, 24, 110, 73, 31, 73, 55, 213, + 99, 5, 114, 159, 98, 4, 183, 27, 220, 8, 161, 147, 190, 73, 165, 152, 70, 59, 243, 159, 109, 236, 163, 216, 102, + 159, 27, 7, 24, 199, 133, 16, 147, 0, 34, 159, 68, 205, 56, 22, 209, 27, 124, 18, 31, 58, 28, 112, 198, 120, 73, + 248, 6, 235, 103, 47, 53, 241, 43, 125, 68, 188, 89, 164, 238, 72, 37, 65, 175, 50, 239, 244, 79, 63, 255, 255, + 67, 72, 142, 12, 216, 102, 159, 27, 167, 17, 229, 147, 108, 134, 40, 188, 159, 27, 66, 127, 48, 100, 36, 157, 184, + 110, 73, 234, 124, 156, 81, 121, 10, 110, 68, 159, 27, 178, 28, 156, 19, 217, 98, 138, 4, 27, 98, 36, 173, 226, + 76, 88, 49, 233, 75, 234, 152, 200, 137, 250, 13, 240, 251, 121, 52, 38, 255, 255, 71, 134, 107, 73, 36, 160, 209, + 25, 128, 71, 149, 129, 227, 202, 209, 171, 172, 191, 73, 56, 90, 14, 14, 115, 190, 14, 173, 165, 70, 66, 66, 151, + 106, 194, 166, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2789, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "24270300411344707" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "199f6affd13f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7081681169761603502" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9f0198170fb950a7" + }, + { + "_tag": "ByteArray", + "bytearray": "47d054255f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5150883679340466497" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "607233866591298654" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14101570698147856599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3d9e" + }, + { + "_tag": "ByteArray", + "bytearray": "437efae3bff5f24e" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8802294186169270416" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99fa11f3676f95832aca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14341862316974982701" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7040368742214188728" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1225933178173711430" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18335249069635514537" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16199009874419274398" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "071545948df59051b781d0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8399571277745267412" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89a37579" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "248064726257375144" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e51fb4cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2579416509267958229" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16210815824426000056" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9815462337739858226" + } + } + } + ] + }, + "cborHex": "bf1b005639b5aa9c37439f46199f6affd13f1b62472f80e8368fae489f0198170fb950a74547d054255f1b477b9d6a72721141ff1b086d53fc01c2e45ed8669f1bc3b2d7d62e2900d79f423d9e48437efae3bff5f24effff1b7a2807ecff1b00904a99fa11f3676f95832aca1bc70887ca74dac62dd8669f1b61b46a11cf70beb89f1b110363baf368e4461bfe73e3e26fefb0a9ffff1be0ce71a79dce529ebf4b071545948df59051b781d01b749145930394a2d44489a375791b03714d8de1e017a844e51fb4cb1b23cbeda61ab1d9d5ff1be0f8631a8e315eb81b883786fddb35a132ff", + "cborBytes": [ + 191, 27, 0, 86, 57, 181, 170, 156, 55, 67, 159, 70, 25, 159, 106, 255, 209, 63, 27, 98, 71, 47, 128, 232, 54, 143, + 174, 72, 159, 1, 152, 23, 15, 185, 80, 167, 69, 71, 208, 84, 37, 95, 27, 71, 123, 157, 106, 114, 114, 17, 65, 255, + 27, 8, 109, 83, 252, 1, 194, 228, 94, 216, 102, 159, 27, 195, 178, 215, 214, 46, 41, 0, 215, 159, 66, 61, 158, 72, + 67, 126, 250, 227, 191, 245, 242, 78, 255, 255, 27, 122, 40, 7, 236, 255, 27, 0, 144, 74, 153, 250, 17, 243, 103, + 111, 149, 131, 42, 202, 27, 199, 8, 135, 202, 116, 218, 198, 45, 216, 102, 159, 27, 97, 180, 106, 17, 207, 112, + 190, 184, 159, 27, 17, 3, 99, 186, 243, 104, 228, 70, 27, 254, 115, 227, 226, 111, 239, 176, 169, 255, 255, 27, + 224, 206, 113, 167, 157, 206, 82, 158, 191, 75, 7, 21, 69, 148, 141, 245, 144, 81, 183, 129, 208, 27, 116, 145, + 69, 147, 3, 148, 162, 212, 68, 137, 163, 117, 121, 27, 3, 113, 77, 141, 225, 224, 23, 168, 68, 229, 31, 180, 203, + 27, 35, 203, 237, 166, 26, 177, 217, 213, 255, 27, 224, 248, 99, 26, 142, 49, 94, 184, 27, 136, 55, 134, 253, 219, + 53, 161, 50, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2790, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7171e3f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "570353a6e44d19446f" + } + } + ] + }, + "cborHex": "bf44a7171e3f49570353a6e44d19446fff", + "cborBytes": [191, 68, 167, 23, 30, 63, 73, 87, 3, 83, 166, 228, 77, 25, 68, 111, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2791, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "65dd9765f4d2c119266fed" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3487eea69f4cb9e82e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10729303720620029070" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "493424" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0d4dc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c7b67464e09adb503" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d3cf21819b9bd6bd1" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b65dd9765f4d2c119266fedbf493487eea69f4cb9e82e1b94e624e33ad5748e4349342443d0d4dc496c7b67464e09adb503498d3cf21819b9bd6bd1ffff", + "cborBytes": [ + 191, 75, 101, 221, 151, 101, 244, 210, 193, 25, 38, 111, 237, 191, 73, 52, 135, 238, 166, 159, 76, 185, 232, 46, + 27, 148, 230, 36, 227, 58, 213, 116, 142, 67, 73, 52, 36, 67, 208, 212, 220, 73, 108, 123, 103, 70, 78, 9, 173, + 181, 3, 73, 141, 60, 242, 24, 25, 185, 189, 107, 209, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2792, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0025f902" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca5c78dade5b838d4c96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4fa6c6" + } + } + ] + }, + "cborHex": "bf440025f902d87e804aca5c78dade5b838d4c96434fa6c6ff", + "cborBytes": [ + 191, 68, 0, 37, 249, 2, 216, 126, 128, 74, 202, 92, 120, 218, 222, 91, 131, 141, 76, 150, 67, 79, 166, 198, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2793, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30d0866eb544b398df7128" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15323595985135550354" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14986805775254821865" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18109714909683326025" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2d3ba19" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "451e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b293" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3438213dcb7cfab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10123324948191933154" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d87989073bbb4173ca" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4b30d0866eb544b398df7128bf1bd4a8595c4f9b3f921bcffbd472f7d61be91bfb52a1c2cf451c4944a2d3ba1942451e42b29348e3438213dcb7cfab1b8c7d46679ad472e2ff49d87989073bbb4173caa0ff", + "cborBytes": [ + 191, 75, 48, 208, 134, 110, 181, 68, 179, 152, 223, 113, 40, 191, 27, 212, 168, 89, 92, 79, 155, 63, 146, 27, 207, + 251, 212, 114, 247, 214, 27, 233, 27, 251, 82, 161, 194, 207, 69, 28, 73, 68, 162, 211, 186, 25, 66, 69, 30, 66, + 178, 147, 72, 227, 67, 130, 19, 220, 183, 207, 171, 27, 140, 125, 70, 103, 154, 212, 114, 226, 255, 73, 216, 121, + 137, 7, 59, 187, 65, 115, 202, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2794, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5322642608827002615" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17540897406082393705" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "89dde4ffcc1c46e46280" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6224782109135367833" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16949771644302359599" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9591738076639753248" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17312562200128220748" + } + }, + { + "_tag": "ByteArray", + "bytearray": "64c8a3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10367412326074878746" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c0c9b0280" + } + ] + } + } + ] + }, + "cborHex": "bf1b49ddd3408d7deef7d8669f1bf36dc941531ca6699f4a89dde4ffcc1c46e46280ffff1b5662de5913386e991beb39af81baa17c2f1b851cb2f624b374209f1bf04293985a7f6e4c4364c8a31b8fe07294e7b30b1a451c0c9b0280ffff", + "cborBytes": [ + 191, 27, 73, 221, 211, 64, 141, 125, 238, 247, 216, 102, 159, 27, 243, 109, 201, 65, 83, 28, 166, 105, 159, 74, + 137, 221, 228, 255, 204, 28, 70, 228, 98, 128, 255, 255, 27, 86, 98, 222, 89, 19, 56, 110, 153, 27, 235, 57, 175, + 129, 186, 161, 124, 47, 27, 133, 28, 178, 246, 36, 179, 116, 32, 159, 27, 240, 66, 147, 152, 90, 127, 110, 76, 67, + 100, 200, 163, 27, 143, 224, 114, 148, 231, 179, 11, 26, 69, 28, 12, 155, 2, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2795, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5966469746416201704" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cbd1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10691345809047848700" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2052898110544678135" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "572154623784700038" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7372270761996831403" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8393617279246202835" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a51e4f3aaad33f7dffc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3096786244522203068" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ffe227af26356" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea0fcc47" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12754826254273524750" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75e4333470bf8a40b846" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13417970030551203648" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "eaeb10695148" + } + ] + } + } + ] + }, + "cborHex": "bf1b52cd289f6640afe842cbd11b945f4a5e3f2886fcbf1b1c7d5bf46f160cf71b07f0b3995348c8861b664f9132b4d1caab1b747c1e71b60cf7d34a3a51e4f3aaad33f7dffc1b2af9feae920fd7bc474ffe227af2635644ea0fcc47ff1bb1023ee679ccb40e4a75e4333470bf8a40b8461bba3634a6bdd77f409f46eaeb10695148ffff", + "cborBytes": [ + 191, 27, 82, 205, 40, 159, 102, 64, 175, 232, 66, 203, 209, 27, 148, 95, 74, 94, 63, 40, 134, 252, 191, 27, 28, + 125, 91, 244, 111, 22, 12, 247, 27, 7, 240, 179, 153, 83, 72, 200, 134, 27, 102, 79, 145, 50, 180, 209, 202, 171, + 27, 116, 124, 30, 113, 182, 12, 247, 211, 74, 58, 81, 228, 243, 170, 173, 51, 247, 223, 252, 27, 42, 249, 254, + 174, 146, 15, 215, 188, 71, 79, 254, 34, 122, 242, 99, 86, 68, 234, 15, 204, 71, 255, 27, 177, 2, 62, 230, 121, + 204, 180, 14, 74, 117, 228, 51, 52, 112, 191, 138, 64, 184, 70, 27, 186, 54, 52, 166, 189, 215, 127, 64, 159, 70, + 234, 235, 16, 105, 81, 72, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2796, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5274386604957250451" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11038397598932748201" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "552036851407877672" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12161331518838715665" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d3" + }, + { + "_tag": "ByteArray", + "bytearray": "1bfc5c083af3a232" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4642307951265307228" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16989473418157202830" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17905771104087183312" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1319458706177389431" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cd6c8d04293f7bccd9" + }, + { + "_tag": "ByteArray", + "bytearray": "32f5daa1b1b6e69ee30d16" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1769232852007534624" + } + } + ] + } + } + ] + }, + "cborHex": "bf0e9f1b493262ac1c8e33931b99304421dde947a9ff1b07a93a976f1776289f1ba8c5ba953824b51141d3481bfc5c083af3a232ff1b406cca7c5523da5cd8669f1bebc6bc0f4a339d8e9f1bf87e13f348920fd01b124fa8b3d57ff37749cd6c8d04293f7bccd94b32f5daa1b1b6e69ee30d161b188d93e7b4dc4020ffffff", + "cborBytes": [ + 191, 14, 159, 27, 73, 50, 98, 172, 28, 142, 51, 147, 27, 153, 48, 68, 33, 221, 233, 71, 169, 255, 27, 7, 169, 58, + 151, 111, 23, 118, 40, 159, 27, 168, 197, 186, 149, 56, 36, 181, 17, 65, 211, 72, 27, 252, 92, 8, 58, 243, 162, + 50, 255, 27, 64, 108, 202, 124, 85, 35, 218, 92, 216, 102, 159, 27, 235, 198, 188, 15, 74, 51, 157, 142, 159, 27, + 248, 126, 19, 243, 72, 146, 15, 208, 27, 18, 79, 168, 179, 213, 127, 243, 119, 73, 205, 108, 141, 4, 41, 63, 123, + 204, 217, 75, 50, 245, 218, 161, 177, 182, 230, 158, 227, 13, 22, 27, 24, 141, 147, 231, 180, 220, 64, 32, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2797, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8742185578863289182" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6170" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14012164187160320445" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50a1aeda7a39c0f5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14973360937540676802" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5940834318572545216" + } + }, + { + "_tag": "ByteArray", + "bytearray": "99870585751aed7a323e4e" + }, + { + "_tag": "ByteArray", + "bytearray": "f0bb34e90e732ff766" + } + ] + } + } + ] + }, + "cborHex": "bf1b79527b7744b0635e4261701bc2753516ae2419bd4850a1aeda7a39c0f51bcfcc1070bfd26cc29f1b527215563bf764c04b99870585751aed7a323e4e49f0bb34e90e732ff766ffff", + "cborBytes": [ + 191, 27, 121, 82, 123, 119, 68, 176, 99, 94, 66, 97, 112, 27, 194, 117, 53, 22, 174, 36, 25, 189, 72, 80, 161, + 174, 218, 122, 57, 192, 245, 27, 207, 204, 16, 112, 191, 210, 108, 194, 159, 27, 82, 114, 21, 86, 59, 247, 100, + 192, 75, 153, 135, 5, 133, 117, 26, 237, 122, 50, 62, 78, 73, 240, 187, 52, 233, 14, 115, 47, 247, 102, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2798, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c30098a312e7af124" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17392830352395886708" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8930b395029bd4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "340b9105a4764d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cacaeb1c684d1a76fba9ee30" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e679a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebb37dd5819705673359" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf497c30098a312e7af1241bf15fbf0de9306074478930b395029bd447340b9105a4764d4ccacaeb1c684d1a76fba9ee30434e679a4aebb37dd581970567335980ff", + "cborBytes": [ + 191, 73, 124, 48, 9, 138, 49, 46, 122, 241, 36, 27, 241, 95, 191, 13, 233, 48, 96, 116, 71, 137, 48, 179, 149, 2, + 155, 212, 71, 52, 11, 145, 5, 164, 118, 77, 76, 202, 202, 235, 28, 104, 77, 26, 118, 251, 169, 238, 48, 67, 78, + 103, 154, 74, 235, 179, 125, 213, 129, 151, 5, 103, 51, 89, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2799, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a5c33f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5092598271090497987" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d57fc78" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "719db93f35" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3b42" + }, + { + "_tag": "ByteArray", + "bytearray": "3815fc42" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9809" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "122ce663fe1390b4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9e30b1d6223663efb09ca" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8b" + }, + { + "_tag": "ByteArray", + "bytearray": "bd830e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7603795354683373123" + } + } + } + ] + }, + "cborHex": "bf440a5c33f11b46ac8b25541e19c3446d57fc78a045719db93f359f423b42443815fc42ff42980948122ce663fe1390b44bc9e30b1d6223663efb09ca9f418b43bd830eff41ef1b69861b96a4aaf643ff", + "cborBytes": [ + 191, 68, 10, 92, 51, 241, 27, 70, 172, 139, 37, 84, 30, 25, 195, 68, 109, 87, 252, 120, 160, 69, 113, 157, 185, + 63, 53, 159, 66, 59, 66, 68, 56, 21, 252, 66, 255, 66, 152, 9, 72, 18, 44, 230, 99, 254, 19, 144, 180, 75, 201, + 227, 11, 29, 98, 35, 102, 62, 251, 9, 202, 159, 65, 139, 67, 189, 131, 14, 255, 65, 239, 27, 105, 134, 27, 150, + 164, 170, 246, 67, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2800, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0125" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02fa263700d21efc057e0300" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8495615469201765728" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1082c6c69651fcca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10550018877053600103" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "444392d8514d6190f50b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8333bd3b0e0556cf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1bcb0b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1026e0116d1b5028d03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bb989109d1b707698e1b91e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32342fd2e3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b20984c476" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "365009633240180736" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2beef12" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11574023031262575545" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba04dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95992848b7e031199c18" + } + } + ] + } + } + ] + }, + "cborHex": "bf420125104c02fa263700d21efc057e03001b75e67d41ee15b560481082c6c69651fcca1b92693245b47201674a444392d8514d6190f50bd8669f1bffffffffffffffee9f488333bd3b0e0556cf08ffff44b1bcb0b54ad1026e0116d1b5028d0341f7bf4c3bb989109d1b707698e1b91e4532342fd2e345b20984c4761b0510c653d8e0680044b2beef121ba09f30a008987bb943ba04dd4a95992848b7e031199c18ffff", + "cborBytes": [ + 191, 66, 1, 37, 16, 76, 2, 250, 38, 55, 0, 210, 30, 252, 5, 126, 3, 0, 27, 117, 230, 125, 65, 238, 21, 181, 96, + 72, 16, 130, 198, 198, 150, 81, 252, 202, 27, 146, 105, 50, 69, 180, 114, 1, 103, 74, 68, 67, 146, 216, 81, 77, + 97, 144, 245, 11, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 72, 131, 51, 189, 59, 14, 5, 86, + 207, 8, 255, 255, 68, 177, 188, 176, 181, 74, 209, 2, 110, 1, 22, 209, 181, 2, 141, 3, 65, 247, 191, 76, 59, 185, + 137, 16, 157, 27, 112, 118, 152, 225, 185, 30, 69, 50, 52, 47, 210, 227, 69, 178, 9, 132, 196, 118, 27, 5, 16, + 198, 83, 216, 224, 104, 0, 68, 178, 190, 239, 18, 27, 160, 159, 48, 160, 8, 152, 123, 185, 67, 186, 4, 221, 74, + 149, 153, 40, 72, 183, 224, 49, 25, 156, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2801, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "452438731646664268" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6632d551f03c7324ffdc5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7083126284815232624" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc7ae97121a5b34bcd6c18" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9646627106688870789" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15748688470777449136" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12492208545391532040" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14981317971549517604" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9653008562397558157" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18386123433624992689" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0efd" + }, + { + "_tag": "ByteArray", + "bytearray": "81afbf" + }, + { + "_tag": "ByteArray", + "bytearray": "63ab4713ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11287554770787511212" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15441923170018450445" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5c34c7c93420" + } + ] + } + } + ] + }, + "cborHex": "bf1b064762a11a6d7e4c4bb6632d551f03c7324ffdc51b624c51d3f9a4ee704bbc7ae97121a5b34bcd6c181b85dfb43e56d82985bf1bda8e94b95afacab01bad5d3d7c48295808ff1bcfe8555219627724d8669f1b85f66024c782b58d9f1bff28a1d959b3fbb1420efd4381afbf4563ab4713ed1b9ca573428f8e2bacffff1bd64cbb4eedd2dc0d9f465c34c7c93420ffff", + "cborBytes": [ + 191, 27, 6, 71, 98, 161, 26, 109, 126, 76, 75, 182, 99, 45, 85, 31, 3, 199, 50, 79, 253, 197, 27, 98, 76, 81, 211, + 249, 164, 238, 112, 75, 188, 122, 233, 113, 33, 165, 179, 75, 205, 108, 24, 27, 133, 223, 180, 62, 86, 216, 41, + 133, 191, 27, 218, 142, 148, 185, 90, 250, 202, 176, 27, 173, 93, 61, 124, 72, 41, 88, 8, 255, 27, 207, 232, 85, + 82, 25, 98, 119, 36, 216, 102, 159, 27, 133, 246, 96, 36, 199, 130, 181, 141, 159, 27, 255, 40, 161, 217, 89, 179, + 251, 177, 66, 14, 253, 67, 129, 175, 191, 69, 99, 171, 71, 19, 237, 27, 156, 165, 115, 66, 143, 142, 43, 172, 255, + 255, 27, 214, 76, 187, 78, 237, 210, 220, 13, 159, 70, 92, 52, 199, 201, 52, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2802, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0040f97f23c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3395405437640873990" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42c5b65f2fa5f6d6d3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10637873066112633636" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07e15099e8c994" + }, + { + "_tag": "ByteArray", + "bytearray": "8bf6287319" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7efa8b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "511118b131db8c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8702052137008716737" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac54" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "855908310270" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7890366235765093046" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9d178ef628ca8dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15099291226885869042" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12469778599885299221" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2ca08d887" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10927733086486544130" + } + } + } + ] + }, + "cborHex": "bf460040f97f23c71b2f1ee741830398064942c5b65f2fa5f6d6d3d8669f1b93a151311756cb249f4707e15099e8c994458bf6287319ffff437efa8b9f47511118b131db8c1b78c3e6502b555bc142ac54ff46855908310270bf1b6d8036495683b2b648d9d178ef628ca8dd1bd18b755f12b44df21bad0d8d91a1ee5e15ff45e2ca08d8871b97a71b5834503f02ff", + "cborBytes": [ + 191, 70, 0, 64, 249, 127, 35, 199, 27, 47, 30, 231, 65, 131, 3, 152, 6, 73, 66, 197, 182, 95, 47, 165, 246, 214, + 211, 216, 102, 159, 27, 147, 161, 81, 49, 23, 86, 203, 36, 159, 71, 7, 225, 80, 153, 232, 201, 148, 69, 139, 246, + 40, 115, 25, 255, 255, 67, 126, 250, 139, 159, 71, 81, 17, 24, 177, 49, 219, 140, 27, 120, 195, 230, 80, 43, 85, + 91, 193, 66, 172, 84, 255, 70, 133, 89, 8, 49, 2, 112, 191, 27, 109, 128, 54, 73, 86, 131, 178, 182, 72, 217, 209, + 120, 239, 98, 140, 168, 221, 27, 209, 139, 117, 95, 18, 180, 77, 242, 27, 173, 13, 141, 145, 161, 238, 94, 21, + 255, 69, 226, 202, 8, 216, 135, 27, 151, 167, 27, 88, 52, 80, 63, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2803, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3939631830210582962" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + } + ] + }, + "cborHex": "bf1b36ac6246c98619b20eff", + "cborBytes": [191, 27, 54, 172, 98, 70, 201, 134, 25, 178, 14, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2804, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "826641d35ddfb11b8d02" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6e9d0aa895a784c0c4f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "58b9fa1ac267" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18372809729298445411" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af83adf7591a82" + }, + { + "_tag": "ByteArray", + "bytearray": "8d58266d25" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10891834935380529053" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a826641d35ddfb11b8d02804ae6e9d0aa895a784c0c4f9f4658b9fa1ac2671bfef9551b00acb46347af83adf7591a82458d58266d251b9727922a938bcf9dffff", + "cborBytes": [ + 191, 74, 130, 102, 65, 211, 93, 223, 177, 27, 141, 2, 128, 74, 230, 233, 208, 170, 137, 90, 120, 76, 12, 79, 159, + 70, 88, 185, 250, 26, 194, 103, 27, 254, 249, 85, 27, 0, 172, 180, 99, 71, 175, 131, 173, 247, 89, 26, 130, 69, + 141, 88, 38, 109, 37, 27, 151, 39, 146, 42, 147, 139, 207, 157, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2805, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "75dd650cedba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "845600632311169159" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7eb57962a395d1bc4a07" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12828687465779870436" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6276010487405277609" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "641143644706869128" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a2ec69f889d6a7fcf9" + }, + { + "_tag": "ByteArray", + "bytearray": "fb444cabc2bba01636fdf5" + }, + { + "_tag": "ByteArray", + "bytearray": "47e62c7d947d6535ce2050" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a39de19" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1553002687376791967" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15675521193424495443" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6459083331342606368" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15740453680592957816" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10978432212533897421" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f00e658ce3ed1c9979" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11696533185271080179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14902025003138751407" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15048430462982712238" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3038155884673475151" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3b4d0bfdb29f1957a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11155216829903708117" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f780edaee8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c31a35bcb61f714a" + } + } + ] + }, + "cborHex": "bf4675dd650cedba1b0bbc2d4b7ec0c0874a7eb57962a395d1bc4a07d8669f1bb208a747e450bae49f1b5718de495c6af1a91b08e5ccbf78c08f8849a2ec69f889d6a7fcf94bfb444cabc2bba01636fdf54b47e62c7d947d6535ce2050ffff449a39de19bf1b158d5fb74c52199f1bd98aa379132ca3531b59a346117352a0201bda715339db3bb1781b985b39ee5ac9e8cd49f00e658ce3ed1c99791ba2526ef60ba6a4f31bcecea0c93a131baf1bd0d6c3c6ad406bae1b2a29b2ae2639a24fff49c3b4d0bfdb29f1957a1b9acf4a9a9ade9fd545f780edaee848c31a35bcb61f714aff", + "cborBytes": [ + 191, 70, 117, 221, 101, 12, 237, 186, 27, 11, 188, 45, 75, 126, 192, 192, 135, 74, 126, 181, 121, 98, 163, 149, + 209, 188, 74, 7, 216, 102, 159, 27, 178, 8, 167, 71, 228, 80, 186, 228, 159, 27, 87, 24, 222, 73, 92, 106, 241, + 169, 27, 8, 229, 204, 191, 120, 192, 143, 136, 73, 162, 236, 105, 248, 137, 214, 167, 252, 249, 75, 251, 68, 76, + 171, 194, 187, 160, 22, 54, 253, 245, 75, 71, 230, 44, 125, 148, 125, 101, 53, 206, 32, 80, 255, 255, 68, 154, 57, + 222, 25, 191, 27, 21, 141, 95, 183, 76, 82, 25, 159, 27, 217, 138, 163, 121, 19, 44, 163, 83, 27, 89, 163, 70, 17, + 115, 82, 160, 32, 27, 218, 113, 83, 57, 219, 59, 177, 120, 27, 152, 91, 57, 238, 90, 201, 232, 205, 73, 240, 14, + 101, 140, 227, 237, 28, 153, 121, 27, 162, 82, 110, 246, 11, 166, 164, 243, 27, 206, 206, 160, 201, 58, 19, 27, + 175, 27, 208, 214, 195, 198, 173, 64, 107, 174, 27, 42, 41, 178, 174, 38, 57, 162, 79, 255, 73, 195, 180, 208, + 191, 219, 41, 241, 149, 122, 27, 154, 207, 74, 154, 154, 222, 159, 213, 69, 247, 128, 237, 174, 232, 72, 195, 26, + 53, 188, 182, 31, 113, 74, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2806, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10408923965182970861" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11812538008959686445" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3557129697330142298" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16132490971372421075" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7351897786015984573" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b9073ed328ec80bedd8669f1ba3ee90bbcfd7972d9f1b315d769cfd5b1c5a1bdfe21f109ad97fd31b660730159876abbdffffff", + "cborBytes": [ + 191, 27, 144, 115, 237, 50, 142, 200, 11, 237, 216, 102, 159, 27, 163, 238, 144, 187, 207, 215, 151, 45, 159, 27, + 49, 93, 118, 156, 253, 91, 28, 90, 27, 223, 226, 31, 16, 154, 217, 127, 211, 27, 102, 7, 48, 21, 152, 118, 171, + 189, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2807, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "641552" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4791748133538912804" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74b6a9c7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8814944595856409473" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7291948520383900026" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9126651545373338290" + } + }, + { + "_tag": "ByteArray", + "bytearray": "076b4c652cada16599477e81" + }, + { + "_tag": "ByteArray", + "bytearray": "406087f7a7" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9285640255940337650" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9796481388633785682" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e1a0ab20609673" + } + ] + } + } + ] + }, + "cborHex": "bf08d8669f1bffffffffffffffed9f43641552ffff1b427fb58a28ba5a244474b6a9c71b7a54f96806c543819f1b6532348b7deae97a1b7ea86139b6bf6ab24c076b4c652cada16599477e8145406087f7a7ff1b80dd389d87641ff2801bfffffffffffffffbd8669f1bfffffffffffffff79f1b87f417eb423e055247e1a0ab20609673ffffff", + "cborBytes": [ + 191, 8, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, 67, 100, 21, 82, 255, 255, 27, 66, 127, + 181, 138, 40, 186, 90, 36, 68, 116, 182, 169, 199, 27, 122, 84, 249, 104, 6, 197, 67, 129, 159, 27, 101, 50, 52, + 139, 125, 234, 233, 122, 27, 126, 168, 97, 57, 182, 191, 106, 178, 76, 7, 107, 76, 101, 44, 173, 161, 101, 153, + 71, 126, 129, 69, 64, 96, 135, 247, 167, 255, 27, 128, 221, 56, 157, 135, 100, 31, 242, 128, 27, 255, 255, 255, + 255, 255, 255, 255, 251, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 27, 135, 244, 23, 235, + 66, 62, 5, 82, 71, 225, 160, 171, 32, 96, 150, 115, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2808, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "579664038288439745" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4504862232569439299" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15919476285124182508" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8523683116658723613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6426306690897483155" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9700761982456079358" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17167715394200243496" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12745149993558172440" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11727855159478906271" + } + }, + { + "_tag": "ByteArray", + "bytearray": "55a81ac1cbb3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17551218622151909569" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2404685d668f70d675d557" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93bd7d6cba65a001" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bb50d85" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f0c5fbfca" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c78d62" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9631ab7d0b74d9bec2b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d34a3a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17226014914663269394" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b080b615f234039c1a01b3e847c552e5fe443d8669f1bdced5756191501ec80ff1b764a34a25a700b1d1b592ed3e328a915931b86a007a04ee8a3fe41101bee3ffa314c4f8d28d8669f1bb0dfde64771b63189f1ba2c1b62175f8ed9f4655a81ac1cbb3ffff1bf3927458b495e0c1bf4b2404685d668f70d675d5574893bd7d6cba65a001446bb50d85453f0c5fbfca43c78d624ad9631ab7d0b74d9bec2b43d34a3a1bef0f194c2c15c412ffff", + "cborBytes": [ + 191, 27, 8, 11, 97, 95, 35, 64, 57, 193, 160, 27, 62, 132, 124, 85, 46, 95, 228, 67, 216, 102, 159, 27, 220, 237, + 87, 86, 25, 21, 1, 236, 128, 255, 27, 118, 74, 52, 162, 90, 112, 11, 29, 27, 89, 46, 211, 227, 40, 169, 21, 147, + 27, 134, 160, 7, 160, 78, 232, 163, 254, 65, 16, 27, 238, 63, 250, 49, 76, 79, 141, 40, 216, 102, 159, 27, 176, + 223, 222, 100, 119, 27, 99, 24, 159, 27, 162, 193, 182, 33, 117, 248, 237, 159, 70, 85, 168, 26, 193, 203, 179, + 255, 255, 27, 243, 146, 116, 88, 180, 149, 224, 193, 191, 75, 36, 4, 104, 93, 102, 143, 112, 214, 117, 213, 87, + 72, 147, 189, 125, 108, 186, 101, 160, 1, 68, 107, 181, 13, 133, 69, 63, 12, 95, 191, 202, 67, 199, 141, 98, 74, + 217, 99, 26, 183, 208, 183, 77, 155, 236, 43, 67, 211, 74, 58, 27, 239, 15, 25, 76, 44, 21, 196, 18, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2809, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13603200779414335691" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10466354510638061489" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1bbcc84709394ef0cbd8669f1b913ff5f96be397b180ffff", + "cborBytes": [ + 191, 27, 188, 200, 71, 9, 57, 78, 240, 203, 216, 102, 159, 27, 145, 63, 245, 249, 107, 227, 151, 177, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2810, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21fba06d2dab" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2785527277354957651" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6301626205691426554" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8815687308553255545" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f97f77e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13531682326918719738" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18285858467933385529" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14286981660908704453" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2768151454aa232394ce01" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "49ed3ec8af19e94f11" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11207268166961480680" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66bb6c4fdda25d7a58f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d0c24763ed1c9513ba1cc27" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cf56f81a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10499993953730545456" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d826747a2cb5f4d9fea9b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "523b311f426665125eb5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a81fae3626d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de46ce19b8" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cda45c0d743b45aad0b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "265c1a3d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7942995144371714321" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ab710dd83" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1546ff19b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da3d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "292335418590293878" + } + } + } + ] + }, + "cborHex": "bf4621fba06d2dabbf1b26a82e4ce6e73b531b5773dfa58987b6fa1b7a579ce64d3c7a7944f97f77e91bbbca3161e56be8fa41371bfdc46b64da3cf3391bc6458e1ffafbd2c5ff4b2768151454aa232394ce01bf4949ed3ec8af19e94f111b9b883704ea4843e84a66bb6c4fdda25d7a58f74c1d0c24763ed1c9513ba1cc27458cf56f81a11b91b778de9bdbc7304b9d826747a2cb5f4d9fea9b4a523b311f426665125eb546a81fae3626d745de46ce19b8ff4a4cda45c0d743b45aad0bbf44265c1a3d1b6e3b300000edb911ff458ab710dd8345d1546ff19b42da3d1b040e9583ac56ef76ff", + "cborBytes": [ + 191, 70, 33, 251, 160, 109, 45, 171, 191, 27, 38, 168, 46, 76, 230, 231, 59, 83, 27, 87, 115, 223, 165, 137, 135, + 182, 250, 27, 122, 87, 156, 230, 77, 60, 122, 121, 68, 249, 127, 119, 233, 27, 187, 202, 49, 97, 229, 107, 232, + 250, 65, 55, 27, 253, 196, 107, 100, 218, 60, 243, 57, 27, 198, 69, 142, 31, 250, 251, 210, 197, 255, 75, 39, 104, + 21, 20, 84, 170, 35, 35, 148, 206, 1, 191, 73, 73, 237, 62, 200, 175, 25, 233, 79, 17, 27, 155, 136, 55, 4, 234, + 72, 67, 232, 74, 102, 187, 108, 79, 221, 162, 93, 122, 88, 247, 76, 29, 12, 36, 118, 62, 209, 201, 81, 59, 161, + 204, 39, 69, 140, 245, 111, 129, 161, 27, 145, 183, 120, 222, 155, 219, 199, 48, 75, 157, 130, 103, 71, 162, 203, + 95, 77, 159, 234, 155, 74, 82, 59, 49, 31, 66, 102, 101, 18, 94, 181, 70, 168, 31, 174, 54, 38, 215, 69, 222, 70, + 206, 25, 184, 255, 74, 76, 218, 69, 192, 215, 67, 180, 90, 173, 11, 191, 68, 38, 92, 26, 61, 27, 110, 59, 48, 0, + 0, 237, 185, 17, 255, 69, 138, 183, 16, 221, 131, 69, 209, 84, 111, 241, 155, 66, 218, 61, 27, 4, 14, 149, 131, + 172, 86, 239, 118, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2811, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4203700646740757395" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf8ec6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10052835401948759608" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d223" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10753888984290984230" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "10ff8fc44fad18e4559578c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "289be46ff991999b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bb36435d2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10931644256133947209" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b3a568b774f100b9343cf8ec61b8b82d8892ea086389f42d2231b953d7d0dfea68126ff4c10ff8fc44fad18e4559578c548289be46ff991999b453bb36435d2d8669f1b97b5008859cd9f4980ffff", + "cborBytes": [ + 191, 27, 58, 86, 139, 119, 79, 16, 11, 147, 67, 207, 142, 198, 27, 139, 130, 216, 137, 46, 160, 134, 56, 159, 66, + 210, 35, 27, 149, 61, 125, 13, 254, 166, 129, 38, 255, 76, 16, 255, 143, 196, 79, 173, 24, 228, 85, 149, 120, 197, + 72, 40, 155, 228, 111, 249, 145, 153, 155, 69, 59, 179, 100, 53, 210, 216, 102, 159, 27, 151, 181, 0, 136, 89, + 205, 159, 73, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2812, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22224dd4d40a50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8107124121" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3135769610399650170" + } + } + ] + } + } + ] + }, + "cborHex": "bf4722224dd4d40a50004581071241219f1b2b847dd8bd56117affff", + "cborBytes": [ + 191, 71, 34, 34, 77, 212, 212, 10, 80, 0, 69, 129, 7, 18, 65, 33, 159, 27, 43, 132, 125, 216, 189, 86, 17, 122, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2813, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1006dd" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1140054051743777749" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02ff3af83f0352e138" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2259889926781089944" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e1f7f1561d94c365c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13796040948753854997" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9917940496589217747" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3560561572003181689" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11410425443522787056" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88fe1b6acd077085" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13703617939177661536" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebb71ed349a7a7441750" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10009471623714181608" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fea81f6015049405e401" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + } + } + ] + }, + "cborHex": "bf149f431006ddff1b0fd2491eaaeec3d54902ff3af83f0352e1381b1f5cbdea3d453898bf490e1f7f1561d94c365c1bbf756225f937721541e91b89a39a558aa95fd3ff1b3169a7e29427f479bf1b9e59f97c614136f04888fe1b6acd0770851bbe2d07e92a5ae4604aebb71ed349a7a7441750ff1b8ae8c968c8d611e89f4afea81f6015049405e4010cffff", + "cborBytes": [ + 191, 20, 159, 67, 16, 6, 221, 255, 27, 15, 210, 73, 30, 170, 238, 195, 213, 73, 2, 255, 58, 248, 63, 3, 82, 225, + 56, 27, 31, 92, 189, 234, 61, 69, 56, 152, 191, 73, 14, 31, 127, 21, 97, 217, 76, 54, 92, 27, 191, 117, 98, 37, + 249, 55, 114, 21, 65, 233, 27, 137, 163, 154, 85, 138, 169, 95, 211, 255, 27, 49, 105, 167, 226, 148, 39, 244, + 121, 191, 27, 158, 89, 249, 124, 97, 65, 54, 240, 72, 136, 254, 27, 106, 205, 7, 112, 133, 27, 190, 45, 7, 233, + 42, 90, 228, 96, 74, 235, 183, 30, 211, 73, 167, 167, 68, 23, 80, 255, 27, 138, 232, 201, 104, 200, 214, 17, 232, + 159, 74, 254, 168, 31, 96, 21, 4, 148, 5, 228, 1, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2814, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "87e9379fa68a4513357c1702" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc45" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0ce70f8a3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2273000387789138397" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13775790627479247479" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11669667274253489576" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7b" + }, + { + "_tag": "ByteArray", + "bytearray": "771b" + } + ] + } + } + ] + }, + "cborHex": "bf4c87e9379fa68a4513357c170242bc4545b0ce70f8a3d8669f1b1f8b51cf507f29dd9f1bbf2d7096a30e5a771ba1f2fc8eb0e155a8417b42771bffffff", + "cborBytes": [ + 191, 76, 135, 233, 55, 159, 166, 138, 69, 19, 53, 124, 23, 2, 66, 188, 69, 69, 176, 206, 112, 248, 163, 216, 102, + 159, 27, 31, 139, 81, 207, 80, 127, 41, 221, 159, 27, 191, 45, 112, 150, 163, 14, 90, 119, 27, 161, 242, 252, 142, + 176, 225, 85, 168, 65, 123, 66, 119, 27, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2815, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15982681435301418959" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10856731013918694467" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18129537315365281113" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2db3d7d590" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11598621237757719189" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11058323153076189972" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5948691017500262515" + } + }, + { + "_tag": "ByteArray", + "bytearray": "040d8fdeb4a862c91fd18f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11528860127401451228" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bddcde415e55f17cf9f1b96aadb55f2971c431bfb990e2248895d59ff452db3d7d5909f1ba0f6949048d9b2951b99770e5176957b141b528dfef680a900734b040d8fdeb4a862c91fd18f1b9ffebd340eed9edcffff", + "cborBytes": [ + 191, 27, 221, 205, 228, 21, 229, 95, 23, 207, 159, 27, 150, 170, 219, 85, 242, 151, 28, 67, 27, 251, 153, 14, 34, + 72, 137, 93, 89, 255, 69, 45, 179, 215, 213, 144, 159, 27, 160, 246, 148, 144, 72, 217, 178, 149, 27, 153, 119, + 14, 81, 118, 149, 123, 20, 27, 82, 141, 254, 246, 128, 169, 0, 115, 75, 4, 13, 143, 222, 180, 168, 98, 201, 31, + 209, 143, 27, 159, 254, 189, 52, 14, 237, 158, 220, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2816, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4072474031896270386" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e418d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5703658304855252085" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2168782292992162117" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16096343985382499323" + } + }, + { + "_tag": "ByteArray", + "bytearray": "63c8ee7ef7e253" + }, + { + "_tag": "ByteArray", + "bytearray": "0b" + }, + { + "_tag": "ByteArray", + "bytearray": "f37555bebdf9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4010012032812397688" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8205907332131401644" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c" + } + } + ] + }, + "cborHex": "bf1b3884558e1c2e1632435e418d1b4f2777024d1a9c75d8669f1b1e19100138f479459f1bdf61b392973823fb4763c8ee7ef7e253410b46f37555bebdf91b37a66cb2a8d33478ffff1b71e13d3de7772fac417cff", + "cborBytes": [ + 191, 27, 56, 132, 85, 142, 28, 46, 22, 50, 67, 94, 65, 141, 27, 79, 39, 119, 2, 77, 26, 156, 117, 216, 102, 159, + 27, 30, 25, 16, 1, 56, 244, 121, 69, 159, 27, 223, 97, 179, 146, 151, 56, 35, 251, 71, 99, 200, 238, 126, 247, + 226, 83, 65, 11, 70, 243, 117, 85, 190, 189, 249, 27, 55, 166, 108, 178, 168, 211, 52, 120, 255, 255, 27, 113, + 225, 61, 61, 231, 119, 47, 172, 65, 124, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2817, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "135510" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "454222751514573203" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e969b74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72ee4166ce91c30f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50ba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36d4ea56ce683b2f" + } + } + ] + }, + "cborHex": "bf43135510d8669f1b064db92f98ed399380ff443e969b744872ee4166ce91c30f4250ba4836d4ea56ce683b2fff", + "cborBytes": [ + 191, 67, 19, 85, 16, 216, 102, 159, 27, 6, 77, 185, 47, 152, 237, 57, 147, 128, 255, 68, 62, 150, 155, 116, 72, + 114, 238, 65, 102, 206, 145, 195, 15, 66, 80, 186, 72, 54, 212, 234, 86, 206, 104, 59, 47, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2818, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8214154763793260815" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13911761078734486510" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5182335874635931963" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b71fe8a3cb9fae10fbf1bc11080fe5212fbee1b47eb5b055270213bffff", + "cborBytes": [ + 191, 27, 113, 254, 138, 60, 185, 250, 225, 15, 191, 27, 193, 16, 128, 254, 82, 18, 251, 238, 27, 71, 235, 91, 5, + 82, 112, 33, 59, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2819, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11547745418930422924" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6d21f946770feeebfbdf25" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "600272013081260822" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7df4b0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa07fd" + } + } + ] + }, + "cborHex": "bf1ba041d546a3fe048c9f4b6d21f946770feeebfbdf251b085498372c513316ff44e7df4b0f43fa07fdff", + "cborBytes": [ + 191, 27, 160, 65, 213, 70, 163, 254, 4, 140, 159, 75, 109, 33, 249, 70, 119, 15, 238, 235, 251, 223, 37, 27, 8, + 84, 152, 55, 44, 81, 51, 22, 255, 68, 231, 223, 75, 15, 67, 250, 7, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2820, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10016573497642060892" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9104482625597088641" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14388170805486306313" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16322468259319031839" + } + } + } + ] + }, + "cborHex": "bf1b8b020486a98c0c5c1b7e599eb5da6e23811bc7ad0d1da4a844091be2850e66d64ca81fff", + "cborBytes": [ + 191, 27, 139, 2, 4, 134, 169, 140, 12, 92, 27, 126, 89, 158, 181, 218, 110, 35, 129, 27, 199, 173, 13, 29, 164, + 168, 68, 9, 27, 226, 133, 14, 102, 214, 76, 168, 31, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2821, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa04a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad05d20b0b8e359a7ec19a" + } + } + ] + }, + "cborHex": "bf43fa04a94bad05d20b0b8e359a7ec19aff", + "cborBytes": [191, 67, 250, 4, 169, 75, 173, 5, 210, 11, 11, 142, 53, 154, 126, 193, 154, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2822, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "767736669037329737" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9025791624603187215" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17499654809556652980" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10854302809699684530" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8746276295775129773" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1716167515009472439" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99" + } + } + ] + }, + "cborHex": "bf1b0aa78c6ecf02fd499f1b7d420da9712b380f1bf2db4355079493b41b96a23ae598ac90b21b796103f3851890adff1b17d10d43233457b74199ff", + "cborBytes": [ + 191, 27, 10, 167, 140, 110, 207, 2, 253, 73, 159, 27, 125, 66, 13, 169, 113, 43, 56, 15, 27, 242, 219, 67, 85, 7, + 148, 147, 180, 27, 150, 162, 58, 229, 152, 172, 144, 178, 27, 121, 97, 3, 243, 133, 24, 144, 173, 255, 27, 23, + 209, 13, 67, 35, 52, 87, 183, 65, 153, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2823, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "523068039239092543" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2438196686892356031" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3535705017721411788" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1850518326870929424" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6372526266243861995" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12034296818191725679" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9016041848899343875" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b07424f9c4034c93fd8669f1b21d636f7f6c0d1bf80ff1b311158fb0bd9d8cc1b19ae5c9d237df0101b586fc2e0454fcdeb1ba702693219ee746f1b7d1f6a4ae3b39603a0ff", + "cborBytes": [ + 191, 27, 7, 66, 79, 156, 64, 52, 201, 63, 216, 102, 159, 27, 33, 214, 54, 247, 246, 192, 209, 191, 128, 255, 27, + 49, 17, 88, 251, 11, 217, 216, 204, 27, 25, 174, 92, 157, 35, 125, 240, 16, 27, 88, 111, 194, 224, 69, 79, 205, + 235, 27, 167, 2, 105, 50, 25, 238, 116, 111, 27, 125, 31, 106, 74, 227, 179, 150, 3, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2824, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9432842859251007833" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4599594443167749964" + } + }, + { + "_tag": "ByteArray", + "bytearray": "000725050000b09a03" + }, + { + "_tag": "ByteArray", + "bytearray": "76cccc" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13437117870068453536" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be7e15" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13409735789264969905" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "46158cbe347a9a6b7bb6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10332536829515225056" + } + } + ] + } + } + ] + }, + "cborHex": "bf039f1bfffffffffffffffcff12a01b82e8309a67bc81599f03021b3fd50ac6bfdfd74c49000725050000b09a034376ccccff1bba7a3b828a7bd0a043be7e151bfffffffffffffff01bba18f3a70afb20b11bffffffffffffffff9f4a46158cbe347a9a6b7bb61b8f648b8097e557e0ffff", + "cborBytes": [ + 191, 3, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 255, 18, 160, 27, 130, 232, 48, 154, 103, 188, 129, 89, + 159, 3, 2, 27, 63, 213, 10, 198, 191, 223, 215, 76, 73, 0, 7, 37, 5, 0, 0, 176, 154, 3, 67, 118, 204, 204, 255, + 27, 186, 122, 59, 130, 138, 123, 208, 160, 67, 190, 126, 21, 27, 255, 255, 255, 255, 255, 255, 255, 240, 27, 186, + 24, 243, 167, 10, 251, 32, 177, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 74, 70, 21, 140, 190, 52, 122, + 154, 107, 123, 182, 27, 143, 100, 139, 128, 151, 229, 87, 224, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2825, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1823272835456961039" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15180888959091844456" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17032260305714284302" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12096598812227887472" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3681587995125513323" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5637046363792649357" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01ee7a3dc476a36dc893ab1a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16211314546466076622" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10760333528663523419" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17156288702782102677" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "945532676542701263" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6763873401098401846" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10040068753481020907" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b194d90fbd6080a0f9f1bd2ad5a139551a5681bec5ebe81dc16070e1ba7dfc08779416170ff1b3317a0c692cc7c6b801b4e3acfcd3044ac8d4c01ee7a3dc476a36dc893ab1a1be0fa28b0543bb7ced8669f1b9554625568b7005b9f1bee1761ad615fdc951b0d1f34f5acda1ecf1b5dde1b05922ef8361b8b557d5633bc35ebffffff", + "cborBytes": [ + 191, 27, 25, 77, 144, 251, 214, 8, 10, 15, 159, 27, 210, 173, 90, 19, 149, 81, 165, 104, 27, 236, 94, 190, 129, + 220, 22, 7, 14, 27, 167, 223, 192, 135, 121, 65, 97, 112, 255, 27, 51, 23, 160, 198, 146, 204, 124, 107, 128, 27, + 78, 58, 207, 205, 48, 68, 172, 141, 76, 1, 238, 122, 61, 196, 118, 163, 109, 200, 147, 171, 26, 27, 224, 250, 40, + 176, 84, 59, 183, 206, 216, 102, 159, 27, 149, 84, 98, 85, 104, 183, 0, 91, 159, 27, 238, 23, 97, 173, 97, 95, + 220, 149, 27, 13, 31, 52, 245, 172, 218, 30, 207, 27, 93, 222, 27, 5, 146, 46, 248, 54, 27, 139, 85, 125, 86, 51, + 188, 53, 235, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2826, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4105981167336460701" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b8edd0f02fee245a2653106" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f566f58ab93b33ed6d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfffb4af6ba61886" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "957027151258231290" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b81e624562b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1248416713337500209" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14143334948994710917" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5888084726803822224" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "11b77bffc3" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9dfe23c687302cfe2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "defd03861615dd" + } + } + ] + }, + "cborHex": "bf1b38fb601e0588919d804c3b8edd0f02fee245a265310649f566f58ab93b33ed6d48cfffb4af6ba61886bf1b0d480b1f9f26a1fa460b81e624562b1b11534462ea2472311bc447383396327d851b51b6addcd48b76904511b77bffc3ff49f9dfe23c687302cfe247defd03861615ddff", + "cborBytes": [ + 191, 27, 56, 251, 96, 30, 5, 136, 145, 157, 128, 76, 59, 142, 221, 15, 2, 254, 226, 69, 162, 101, 49, 6, 73, 245, + 102, 245, 138, 185, 59, 51, 237, 109, 72, 207, 255, 180, 175, 107, 166, 24, 134, 191, 27, 13, 72, 11, 31, 159, 38, + 161, 250, 70, 11, 129, 230, 36, 86, 43, 27, 17, 83, 68, 98, 234, 36, 114, 49, 27, 196, 71, 56, 51, 150, 50, 125, + 133, 27, 81, 182, 173, 220, 212, 139, 118, 144, 69, 17, 183, 123, 255, 195, 255, 73, 249, 223, 226, 60, 104, 115, + 2, 207, 226, 71, 222, 253, 3, 134, 22, 21, 221, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2827, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0440010dc602aa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15593994933275222072" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4374399514313516058" + } + } + ] + } + } + ] + }, + "cborHex": "bf470440010dc602aad8669f1bd868ffc5731c60389f1b3cb4fd2e844c641affffff", + "cborBytes": [ + 191, 71, 4, 64, 1, 13, 198, 2, 170, 216, 102, 159, 27, 216, 104, 255, 197, 115, 28, 96, 56, 159, 27, 60, 180, 253, + 46, 132, 76, 100, 26, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2828, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f376db0c55d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8036352435861476772" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b358fb49b0f8610f8fbfeffa" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11110815287603878641" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7759539011402441558" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13752572208890644193" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5152867944881446600" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf466f376db0c55dbf1b6f86dbf6455e55a44cb358fb49b0f8610f8fbfeffa1b9a318ba2ee9bdaf11b6baf6b9e7b6da3561bbedaf38f4ad606e11b4782aa184527dec8ffff", + "cborBytes": [ + 191, 70, 111, 55, 109, 176, 197, 93, 191, 27, 111, 134, 219, 246, 69, 94, 85, 164, 76, 179, 88, 251, 73, 176, 248, + 97, 15, 143, 191, 239, 250, 27, 154, 49, 139, 162, 238, 155, 218, 241, 27, 107, 175, 107, 158, 123, 109, 163, 86, + 27, 190, 218, 243, 143, 74, 214, 6, 225, 27, 71, 130, 170, 24, 69, 39, 222, 200, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2829, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16748195265229499769" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57abf6a258e6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d30e181a8f2ce2d0434" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3413948421756793291" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13641798342968787915" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8418891112552471905" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9298541647991746328" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13800360228892430456" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8fb6bec1f7f62fd0cdb387cd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15970700041605055076" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6774838802915240313" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16278052193537809115" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1106704640f0863d40f30a9e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17757510522297063638" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1082205689438876984" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1be86d8adba4e22d794657abf6a258e64a3d30e181a8f2ce2d0434bf1b2f60c8007051b1cb1bbd516750ca2ac3cb1b74d5e8dc96621d611b810b0e5cf1b92f181bbf84ba82bf8fd0784c8fb6bec1f7f62fd0cdb387cd1bdda353124a2f82641b5e050fff224ba9791be1e74239a716dadb4c1106704640f0863d40f30a9e1bf66f59bc98c718d61b0f04c4573ce93538ffff", + "cborBytes": [ + 191, 27, 232, 109, 138, 219, 164, 226, 45, 121, 70, 87, 171, 246, 162, 88, 230, 74, 61, 48, 225, 129, 168, 242, + 206, 45, 4, 52, 191, 27, 47, 96, 200, 0, 112, 81, 177, 203, 27, 189, 81, 103, 80, 202, 42, 195, 203, 27, 116, 213, + 232, 220, 150, 98, 29, 97, 27, 129, 11, 14, 92, 241, 185, 47, 24, 27, 191, 132, 186, 130, 191, 143, 208, 120, 76, + 143, 182, 190, 193, 247, 246, 47, 208, 205, 179, 135, 205, 27, 221, 163, 83, 18, 74, 47, 130, 100, 27, 94, 5, 15, + 255, 34, 75, 169, 121, 27, 225, 231, 66, 57, 167, 22, 218, 219, 76, 17, 6, 112, 70, 64, 240, 134, 61, 64, 243, 10, + 158, 27, 246, 111, 89, 188, 152, 199, 24, 214, 27, 15, 4, 196, 87, 60, 233, 53, 56, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2830, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a6" + } + ] + } + } + ] + }, + "cborHex": "bf410f9f41a6ffff", + "cborBytes": [191, 65, 15, 159, 65, 166, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2831, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3984255304567966599" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adb7d912379db274a3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12539865225584379624" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5889326926910219755" + } + } + } + ] + }, + "cborHex": "bf1b374aeb170b3d4b8749adb7d912379db274a31bae068cfbce3b06e81b51bb17a314a065ebff", + "cborBytes": [ + 191, 27, 55, 74, 235, 23, 11, 61, 75, 135, 73, 173, 183, 217, 18, 55, 157, 178, 116, 163, 27, 174, 6, 140, 251, + 206, 59, 6, 232, 27, 81, 187, 23, 163, 20, 160, 101, 235, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2832, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "36992f351b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4706308100614535531" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c22c20a283ca1a54c8e9875f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7027803377210736292" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9219078676554230536" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9607198361367440573" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14557089210903830835" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "467ef2c75ad64aba4c3497" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15758329766537412427" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5fb385" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e86104f4f97" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15700272438858417888" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5b6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16775026623977659699" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16219992152586276693" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1153e998ea" + }, + { + "_tag": "ByteArray", + "bytearray": "1dd97d1296eb9585871d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15493054998031300186" + } + } + ] + } + } + ] + }, + "cborHex": "bf4536992f351bbf1b41502a484cac396b4cc22c20a283ca1a54c8e9875f1b6187c5efc9efbea41b7ff0bf362864ab081b8553a00230056cbd1bca052b82b3982133ff4b467ef2c75ad64aba4c34971bdab0d56e73ed3f4b435fb385469e86104f4f9741c41bd9e292997b0306e042e5b6d8669f1be8ccddd62be89d339f1be118fcecf2874f55451153e998ea4a1dd97d1296eb9585871d1bd702636f5b3ef65affffff", + "cborBytes": [ + 191, 69, 54, 153, 47, 53, 27, 191, 27, 65, 80, 42, 72, 76, 172, 57, 107, 76, 194, 44, 32, 162, 131, 202, 26, 84, + 200, 233, 135, 95, 27, 97, 135, 197, 239, 201, 239, 190, 164, 27, 127, 240, 191, 54, 40, 100, 171, 8, 27, 133, 83, + 160, 2, 48, 5, 108, 189, 27, 202, 5, 43, 130, 179, 152, 33, 51, 255, 75, 70, 126, 242, 199, 90, 214, 74, 186, 76, + 52, 151, 27, 218, 176, 213, 110, 115, 237, 63, 75, 67, 95, 179, 133, 70, 158, 134, 16, 79, 79, 151, 65, 196, 27, + 217, 226, 146, 153, 123, 3, 6, 224, 66, 229, 182, 216, 102, 159, 27, 232, 204, 221, 214, 43, 232, 157, 51, 159, + 27, 225, 24, 252, 236, 242, 135, 79, 85, 69, 17, 83, 233, 152, 234, 74, 29, 217, 125, 18, 150, 235, 149, 133, 135, + 29, 27, 215, 2, 99, 111, 91, 62, 246, 90, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2833, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1688650824721406286" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10855617502267638203" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2568142207024470006" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17688160736984621378" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0710c88a9febbc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffcbf1b176f4afa6d30994e1b96a6e69a502d01bb1b23a3dfbb0e6197f61bf578f87971fae142ff470710c88a9febbc1bffffffffffffffffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 252, 191, 27, 23, 111, 74, 250, 109, 48, 153, 78, 27, 150, 166, 230, + 154, 80, 45, 1, 187, 27, 35, 163, 223, 187, 14, 97, 151, 246, 27, 245, 120, 248, 121, 113, 250, 225, 66, 255, 71, + 7, 16, 200, 138, 159, 235, 188, 27, 255, 255, 255, 255, 255, 255, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2834, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5284136331099256511" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7485810722311339713" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9788813048737339971" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17263259726147451024" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "331824b117" + }, + { + "_tag": "ByteArray", + "bytearray": "a361de3bab1e5058ca" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18103502577207180314" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa09247382728c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16228468853394509058" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17934816990531960154" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3dd4" + }, + { + "_tag": "ByteArray", + "bytearray": "8eaeb3d55921" + }, + { + "_tag": "ByteArray", + "bytearray": "391e4a45a4c2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6260983099830990852" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b495505ff1fe836bf41821b67e2f130bf2d7ec1801b87d8d99abeb29a43d8669f1bef936b419a5378909f45331824b11749a361de3bab1e5058ca1bfb3c8fad70cd7c1a47fa09247382728cffff1be1371a70a7120d02a01bf8e54507b84c3d5a9f423dd4468eaeb3d5592146391e4a45a4c21b56e37af50a267804ffff", + "cborBytes": [ + 191, 27, 73, 85, 5, 255, 31, 232, 54, 191, 65, 130, 27, 103, 226, 241, 48, 191, 45, 126, 193, 128, 27, 135, 216, + 217, 154, 190, 178, 154, 67, 216, 102, 159, 27, 239, 147, 107, 65, 154, 83, 120, 144, 159, 69, 51, 24, 36, 177, + 23, 73, 163, 97, 222, 59, 171, 30, 80, 88, 202, 27, 251, 60, 143, 173, 112, 205, 124, 26, 71, 250, 9, 36, 115, + 130, 114, 140, 255, 255, 27, 225, 55, 26, 112, 167, 18, 13, 2, 160, 27, 248, 229, 69, 7, 184, 76, 61, 90, 159, 66, + 61, 212, 70, 142, 174, 179, 213, 89, 33, 70, 57, 30, 74, 69, 164, 194, 27, 86, 227, 122, 245, 10, 38, 120, 4, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2835, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6995739007672672240" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4051610678821430871" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b7fdc87852035e14d61fbd8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "104272da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bfa8872e319" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12726119207292589192" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61a27a36bb27de69a4c8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13664751236951842734" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "619515650812485341" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f1" + }, + { + "_tag": "ByteArray", + "bytearray": "9dce222b4f4908b59768" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11911899250826326881" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e44cf9ec1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2848924534151523039" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13679404638248066762" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11833869033336567822" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18031155362093526457" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6992e190bc7852e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "583819811363387940" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f8aa65bd08" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18242824877894521239" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4193016672504809417" + } + } + } + ] + }, + "cborHex": "bf1b6115db8ffdac5ff0bf1b383a36722f54a6574c4b7fdc87852035e14d61fbd844104272da467bfa8872e319ff1bb09c41fe3ff354884a61a27a36bb27de69a4c81bbda2f2d9de981faed8669f1b0898f633bb791edd9f41f14a9dce222b4f4908b597681ba54f9141b5beb361459e44cf9ec11b278969c501ff2adfffff1bbdd7020ab99b5eca1ba43a592ff285780e1bfa3b8844c776edb99f486992e190bc7852e31b081a250675267a2445f8aa65bd08ff1bfd2b8892628fd1971b3a309672b5f087c9ff", + "cborBytes": [ + 191, 27, 97, 21, 219, 143, 253, 172, 95, 240, 191, 27, 56, 58, 54, 114, 47, 84, 166, 87, 76, 75, 127, 220, 135, + 133, 32, 53, 225, 77, 97, 251, 216, 68, 16, 66, 114, 218, 70, 123, 250, 136, 114, 227, 25, 255, 27, 176, 156, 65, + 254, 63, 243, 84, 136, 74, 97, 162, 122, 54, 187, 39, 222, 105, 164, 200, 27, 189, 162, 242, 217, 222, 152, 31, + 174, 216, 102, 159, 27, 8, 152, 246, 51, 187, 121, 30, 221, 159, 65, 241, 74, 157, 206, 34, 43, 79, 73, 8, 181, + 151, 104, 27, 165, 79, 145, 65, 181, 190, 179, 97, 69, 158, 68, 207, 158, 193, 27, 39, 137, 105, 197, 1, 255, 42, + 223, 255, 255, 27, 189, 215, 2, 10, 185, 155, 94, 202, 27, 164, 58, 89, 47, 242, 133, 120, 14, 27, 250, 59, 136, + 68, 199, 118, 237, 185, 159, 72, 105, 146, 225, 144, 188, 120, 82, 227, 27, 8, 26, 37, 6, 117, 38, 122, 36, 69, + 248, 170, 101, 189, 8, 255, 27, 253, 43, 136, 146, 98, 143, 209, 151, 27, 58, 48, 150, 114, 181, 240, 135, 201, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2836, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5280335954423052441" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17707205008169186862" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3086207112638309724" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b49478592fa1bf8991bf5bca1235cf1362e4104d9050b9f1b2ad469047c17255c02ffff", + "cborBytes": [ + 191, 27, 73, 71, 133, 146, 250, 27, 248, 153, 27, 245, 188, 161, 35, 92, 241, 54, 46, 65, 4, 217, 5, 11, 159, 27, + 42, 212, 105, 4, 124, 23, 37, 92, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2837, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c3d83dac2a37963d0a8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9911858928553703864" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3315873205520611088" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fb" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6682" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a85e71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb02" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2b61ff0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06050100fd0607fbcd05015f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9290703" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4a5c3d83dac2a37963d0a8d8669f1b898dff2e243a39b89f1b2e04591cb74ab71041fbffff4266821bfffffffffffffff143a85e711bfffffffffffffffc42fb02bf03410d44c2b61ff04c06050100fd0607fbcd05015f44f929070312ffff", + "cborBytes": [ + 191, 74, 92, 61, 131, 218, 194, 163, 121, 99, 208, 168, 216, 102, 159, 27, 137, 141, 255, 46, 36, 58, 57, 184, + 159, 27, 46, 4, 89, 28, 183, 74, 183, 16, 65, 251, 255, 255, 66, 102, 130, 27, 255, 255, 255, 255, 255, 255, 255, + 241, 67, 168, 94, 113, 27, 255, 255, 255, 255, 255, 255, 255, 252, 66, 251, 2, 191, 3, 65, 13, 68, 194, 182, 31, + 240, 76, 6, 5, 1, 0, 253, 6, 7, 251, 205, 5, 1, 95, 68, 249, 41, 7, 3, 18, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2838, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1254007637340345538" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8883611277790421896" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fe" + }, + { + "_tag": "ByteArray", + "bytearray": "fdd937a0ce" + }, + { + "_tag": "ByteArray", + "bytearray": "b2a995b45df325" + }, + { + "_tag": "ByteArray", + "bytearray": "793bd36f37be7b" + } + ] + } + } + ] + }, + "cborHex": "bf1b1167214d594c54c2d8669f1b7b48ed63c75a23889f41fe45fdd937a0ce47b2a995b45df32547793bd36f37be7bffffff", + "cborBytes": [ + 191, 27, 17, 103, 33, 77, 89, 76, 84, 194, 216, 102, 159, 27, 123, 72, 237, 99, 199, 90, 35, 136, 159, 65, 254, + 69, 253, 217, 55, 160, 206, 71, 178, 169, 149, 180, 93, 243, 37, 71, 121, 59, 211, 111, 55, 190, 123, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2839, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1070" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9144144297836199633" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4070662275611969851" + } + }, + { + "_tag": "ByteArray", + "bytearray": "13" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7926630680443375050" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4125755123796618042" + } + }, + { + "_tag": "ByteArray", + "bytearray": "22387a774fa7d786" + } + ] + } + } + ] + }, + "cborHex": "bf421070d8669f1b7ee686ca8770bed19f1b387de5c5ba6f493b41131b6e010c9b558a4dca1b3941a06d08252b3a4822387a774fa7d786ffffff", + "cborBytes": [ + 191, 66, 16, 112, 216, 102, 159, 27, 126, 230, 134, 202, 135, 112, 190, 209, 159, 27, 56, 125, 229, 197, 186, 111, + 73, 59, 65, 19, 27, 110, 1, 12, 155, 85, 138, 77, 202, 27, 57, 65, 160, 109, 8, 37, 43, 58, 72, 34, 56, 122, 119, + 79, 167, 215, 134, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2840, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "62" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12423719773588307348" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4785247289560104798" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01ab25e8370bbe3b4665" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2056814231423848839" + } + }, + { + "_tag": "ByteArray", + "bytearray": "11" + } + ] + } + } + ] + }, + "cborHex": "bf4162d8669f1bac69eb4f75ba3d949f1b42689d0e78a17f5e4a01ab25e8370bbe3b46651b1c8b45a560fc91874111ffffff", + "cborBytes": [ + 191, 65, 98, 216, 102, 159, 27, 172, 105, 235, 79, 117, 186, 61, 148, 159, 27, 66, 104, 157, 14, 120, 161, 127, + 94, 74, 1, 171, 37, 232, 55, 11, 190, 59, 70, 101, 27, 28, 139, 69, 165, 96, 252, 145, 135, 65, 17, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2841, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "83b8f3a0899d49dc30528c" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7c9f027204075278ee1ab37" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e96740a986b5f40fce9b44d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9730920578713886448" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5b19548" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11405946126644627911" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3481291003798610611" + } + } + } + ] + }, + "cborHex": "bf4b83b8f3a0899d49dc30528c804cd7c9f027204075278ee1ab37bf4c6e96740a986b5f40fce9b44d1b870b2cb5afc79ef044c5b195481b9e4a0f9225e549c7ff41f11b305007b9292de2b3ff", + "cborBytes": [ + 191, 75, 131, 184, 243, 160, 137, 157, 73, 220, 48, 82, 140, 128, 76, 215, 201, 240, 39, 32, 64, 117, 39, 142, + 225, 171, 55, 191, 76, 110, 150, 116, 10, 152, 107, 95, 64, 252, 233, 180, 77, 27, 135, 11, 44, 181, 175, 199, + 158, 240, 68, 197, 177, 149, 72, 27, 158, 74, 15, 146, 37, 229, 73, 199, 255, 65, 241, 27, 48, 80, 7, 185, 41, 45, + 226, 179, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2842, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "46238fe7279ea29890" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e576ea197974f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e9a5c00700a5162c2f" + } + ] + } + } + ] + }, + "cborHex": "bf4946238fe7279ea298901bfffffffffffffff4475e576ea197974f9f49e9a5c00700a5162c2fffff", + "cborBytes": [ + 191, 73, 70, 35, 143, 231, 39, 158, 162, 152, 144, 27, 255, 255, 255, 255, 255, 255, 255, 244, 71, 94, 87, 110, + 161, 151, 151, 79, 159, 73, 233, 165, 192, 7, 0, 165, 22, 44, 47, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2843, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3890607619741918596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09" + } + } + ] + }, + "cborHex": "bf1b35fe37044f2525844109ff", + "cborBytes": [191, 27, 53, 254, 55, 4, 79, 37, 37, 132, 65, 9, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2844, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2219910e921c9a83e2191a18" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ff399" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "238e1958202aa29d3a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17541292976307719789" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37e353a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c63ce5a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b93815ffc" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14327190915454515912" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11261862077503346617" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2f2eb19" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16bcbcc7a20cc3013d1aa8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dec845adc5e22052d134af" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17941543941649669114" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "efb4164f03c2" + } + ] + } + } + ] + }, + "cborHex": "bf4c2219910e921c9a83e2191a18436ff39949238e1958202aa29d3a1bf36f310631e04e6d4437e353a8443c63ce5a455b93815ffcd8669f1bc6d4683a98debac89f1b9c4a2be43f0797b9ffff44a2f2eb194b16bcbcc7a20cc3013d1aa84bdec845adc5e22052d134afd8669f1bf8fd2b2814171bfa9f46efb4164f03c2ffffff", + "cborBytes": [ + 191, 76, 34, 25, 145, 14, 146, 28, 154, 131, 226, 25, 26, 24, 67, 111, 243, 153, 73, 35, 142, 25, 88, 32, 42, 162, + 157, 58, 27, 243, 111, 49, 6, 49, 224, 78, 109, 68, 55, 227, 83, 168, 68, 60, 99, 206, 90, 69, 91, 147, 129, 95, + 252, 216, 102, 159, 27, 198, 212, 104, 58, 152, 222, 186, 200, 159, 27, 156, 74, 43, 228, 63, 7, 151, 185, 255, + 255, 68, 162, 242, 235, 25, 75, 22, 188, 188, 199, 162, 12, 195, 1, 61, 26, 168, 75, 222, 200, 69, 173, 197, 226, + 32, 82, 209, 52, 175, 216, 102, 159, 27, 248, 253, 43, 40, 20, 23, 27, 250, 159, 70, 239, 180, 22, 79, 3, 194, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2845, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84d338d0cdced03e" + } + } + ] + }, + "cborHex": "bf074884d338d0cdced03eff", + "cborBytes": [191, 7, 72, 132, 211, 56, 208, 205, 206, 208, 62, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2846, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "019a43" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12499905881151432252" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13707279340359741631" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8709aee6df3ffa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17875052078580365792" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2623554812424477054" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dfb6e5741f1f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1172022157431899151" + } + } + ] + } + } + ] + }, + "cborHex": "bf43019a43d8669f1bad78962bebd8e63c9f1bbe3a09ef8f3170bfffff478709aee6df3ffad8669f1bf810f128cd63f9e09f1b2468bd33a353d97e46dfb6e5741f1f1b1043dbf14a9d840fffffff", + "cborBytes": [ + 191, 67, 1, 154, 67, 216, 102, 159, 27, 173, 120, 150, 43, 235, 216, 230, 60, 159, 27, 190, 58, 9, 239, 143, 49, + 112, 191, 255, 255, 71, 135, 9, 174, 230, 223, 63, 250, 216, 102, 159, 27, 248, 16, 241, 40, 205, 99, 249, 224, + 159, 27, 36, 104, 189, 51, 163, 83, 217, 126, 70, 223, 182, 229, 116, 31, 31, 27, 16, 67, 219, 241, 74, 157, 132, + 15, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2847, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4557d16198bd00" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff5400077f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac0672cc98e368fda4" + } + ] + } + } + ] + }, + "cborHex": "bf474557d16198bd009f070145ff5400077f0b49ac0672cc98e368fda4ffff", + "cborBytes": [ + 191, 71, 69, 87, 209, 97, 152, 189, 0, 159, 7, 1, 69, 255, 84, 0, 7, 127, 11, 73, 172, 6, 114, 204, 152, 227, 104, + 253, 164, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2848, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4786829480023270044" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f8d87629929581eece" + }, + { + "_tag": "ByteArray", + "bytearray": "a29330aa" + }, + { + "_tag": "ByteArray", + "bytearray": "a9" + }, + { + "_tag": "ByteArray", + "bytearray": "f5" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7434457180880692724" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f75c7eb3df6" + } + } + ] + }, + "cborHex": "bf1b426e3c0ce527a29c9f49f8d87629929581eece44a29330aa41a941f5ff1b672c7f6aa43ee5f4463f75c7eb3df6ff", + "cborBytes": [ + 191, 27, 66, 110, 60, 12, 229, 39, 162, 156, 159, 73, 248, 216, 118, 41, 146, 149, 129, 238, 206, 68, 162, 147, + 48, 170, 65, 169, 65, 245, 255, 27, 103, 44, 127, 106, 164, 62, 229, 244, 70, 63, 117, 199, 235, 61, 246, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2849, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "640b48" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e50eeaf1528" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b238219f29e28" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8f8" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf43640b48bf464e50eeaf15281bfffffffffffffffc475b238219f29e2800ff42b8f8a0ff", + "cborBytes": [ + 191, 67, 100, 11, 72, 191, 70, 78, 80, 238, 175, 21, 40, 27, 255, 255, 255, 255, 255, 255, 255, 252, 71, 91, 35, + 130, 25, 242, 158, 40, 0, 255, 66, 184, 248, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2850, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "25202c805affba0152" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2d17a7c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a35" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11241415077223615250" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1121830840012570434" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17517086774714786934" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a01340db799b2c10f37f88ac" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5686038086295470848" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e52752d69bc72b5d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6f1d7490e2" + }, + { + "_tag": "ByteArray", + "bytearray": "4e089d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12512758671466493668" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13185748878996828585" + } + }, + { + "_tag": "ByteArray", + "bytearray": "379c1df1688725df9bf1a50e" + } + ] + } + } + ] + }, + "cborHex": "bf4925202c805affba015244c2d17a7c426a35d8669f1b9c01877402a24b129f1b0f918b348d06ff421bf319319cb29164764ca01340db799b2c10f37f88ac1b4ee8dd8378fbc300ffff48e52752d69bc72b5d9f456f1d7490e2434e089d1bada63fb75cf2f6e41bb6fd30be8e1c71a94c379c1df1688725df9bf1a50effff", + "cborBytes": [ + 191, 73, 37, 32, 44, 128, 90, 255, 186, 1, 82, 68, 194, 209, 122, 124, 66, 106, 53, 216, 102, 159, 27, 156, 1, + 135, 116, 2, 162, 75, 18, 159, 27, 15, 145, 139, 52, 141, 6, 255, 66, 27, 243, 25, 49, 156, 178, 145, 100, 118, + 76, 160, 19, 64, 219, 121, 155, 44, 16, 243, 127, 136, 172, 27, 78, 232, 221, 131, 120, 251, 195, 0, 255, 255, 72, + 229, 39, 82, 214, 155, 199, 43, 93, 159, 69, 111, 29, 116, 144, 226, 67, 78, 8, 157, 27, 173, 166, 63, 183, 92, + 242, 246, 228, 27, 182, 253, 48, 190, 142, 28, 113, 169, 76, 55, 156, 29, 241, 104, 135, 37, 223, 155, 241, 165, + 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2851, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9739315409558610678" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12572887242159025294" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17541031571479496222" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0190c641010700" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4125560507706885284" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56f860" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e7c953aa" + }, + { + "_tag": "ByteArray", + "bytearray": "cef898b3" + }, + { + "_tag": "ByteArray", + "bytearray": "7a823974" + }, + { + "_tag": "ByteArray", + "bytearray": "3a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eebb8667" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + } + ] + }, + "cborHex": "bf1b8728ffc38e3aa2f61bae7bde552dedec8e1bf36e434723f2861ed87a9f470190c6410107001b3940ef6c713fc4a4ff4356f8609f44e7c953aa44cef898b3447a823974413aff44eebb86671bfffffffffffffffaff", + "cborBytes": [ + 191, 27, 135, 40, 255, 195, 142, 58, 162, 246, 27, 174, 123, 222, 85, 45, 237, 236, 142, 27, 243, 110, 67, 71, 35, + 242, 134, 30, 216, 122, 159, 71, 1, 144, 198, 65, 1, 7, 0, 27, 57, 64, 239, 108, 113, 63, 196, 164, 255, 67, 86, + 248, 96, 159, 68, 231, 201, 83, 170, 68, 206, 248, 152, 179, 68, 122, 130, 57, 116, 65, 58, 255, 68, 238, 187, + 134, 103, 27, 255, 255, 255, 255, 255, 255, 255, 250, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2852, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13444941b8babc4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1286657857fcda893bddbbd5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cb3819f6e74e5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15429096868423451884" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76185862e497" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b4fc9f2ffb5f09287ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12289657686048083516" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4813444941b8babc4c4c1286657857fcda893bddbbd5478cb3819f6e74e5bf1bd61f29dadf78c4ec4676185862e4974a4b4fc9f2ffb5f09287ba1baa8da28d540b8e3cffff", + "cborBytes": [ + 191, 72, 19, 68, 73, 65, 184, 186, 188, 76, 76, 18, 134, 101, 120, 87, 252, 218, 137, 59, 221, 187, 213, 71, 140, + 179, 129, 159, 110, 116, 229, 191, 27, 214, 31, 41, 218, 223, 120, 196, 236, 70, 118, 24, 88, 98, 228, 151, 74, + 75, 79, 201, 242, 255, 181, 240, 146, 135, 186, 27, 170, 141, 162, 141, 84, 11, 142, 60, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2853, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16621668226190589562" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02ecfdc6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8613264416350455654" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de85c320f7c1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7054552090912183343" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c7fb6540c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14712733327914403684" + } + } + ] + } + } + ] + }, + "cborHex": "bf1be6ac072fb47cbe7a4402ecfdc64101d8669f1b7788765a0514c7669f46de85c320f7c11b61e6cdc0044f542f452c7fb6540c1bcc2e2102a5638764ffffff", + "cborBytes": [ + 191, 27, 230, 172, 7, 47, 180, 124, 190, 122, 68, 2, 236, 253, 198, 65, 1, 216, 102, 159, 27, 119, 136, 118, 90, + 5, 20, 199, 102, 159, 70, 222, 133, 195, 32, 247, 193, 27, 97, 230, 205, 192, 4, 79, 84, 47, 69, 44, 127, 182, 84, + 12, 27, 204, 46, 33, 2, 165, 99, 135, 100, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2854, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2249666622777023633" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d250ca1717be246ce73" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12342884412601507069" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "59817584812950672" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17297337886652814970" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f51f61201d" + } + ] + } + } + ] + }, + "cborHex": "bf1b1f386bdfc9ad5c914a5d250ca1717be246ce731bab4abbfa54d19cfd9f1b00d483c6c6190490ff1bf00c7d29a5d8d67a9f45f51f61201dffff", + "cborBytes": [ + 191, 27, 31, 56, 107, 223, 201, 173, 92, 145, 74, 93, 37, 12, 161, 113, 123, 226, 70, 206, 115, 27, 171, 74, 187, + 250, 84, 209, 156, 253, 159, 27, 0, 212, 131, 198, 198, 25, 4, 144, 255, 27, 240, 12, 125, 41, 165, 216, 214, 122, + 159, 69, 245, 31, 97, 32, 29, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2855, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3899625750208131105" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc7c08a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14073319692786281849" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1053199017640410274" + } + } + } + ] + }, + "cborHex": "bf1b361e40f56e1f302144bc7c08a51bc34e79b26b092d791b0e9db6ed2c3f3ca2ff", + "cborBytes": [ + 191, 27, 54, 30, 64, 245, 110, 31, 48, 33, 68, 188, 124, 8, 165, 27, 195, 78, 121, 178, 107, 9, 45, 121, 27, 14, + 157, 182, 237, 44, 63, 60, 162, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2856, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a15c5c30f78" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15964198814942964232" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4336566253142180412" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e0196c08bcec972fee9594f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14046687432555691133" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f53ef50b2e90621ea79a0633" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2762cb57e68a841" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5350467381066278833" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29dfe6b2abd134327b87f081" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13174227541954283933" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4804249244570514995" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "568098b7da48909f38" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16632487146914890182" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15365173250576149713" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd6430668f7b5054" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed4dcfaf9a2fd8c0aa0993" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e1" + }, + { + "_tag": "ByteArray", + "bytearray": "a2520ac650" + }, + { + "_tag": "ByteArray", + "bytearray": "52" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17208430087803974192" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b5" + } + ] + } + } + ] + }, + "cborHex": "bf460a15c5c30f78bf1bdd8c3a3d80632a081b3c2e9407f77c823c4c5e0196c08bcec972fee9594f1bc2efdbcc206cfc7d419f4cf53ef50b2e90621ea79a063348b2762cb57e68a8411b4a40adbc2ec527b1ff4c29dfe6b2abd134327b87f0811bb6d442263c5a499d41cabf1b42ac1f3be310763349568098b7da48909f381be6d276effb1cc1c61bd53c0fa9c8ececd1ff48dd6430668f7b505441d14bed4dcfaf9a2fd8c0aa09939f41e145a2520ac65041521beed09ffd9db3323041b5ffff", + "cborBytes": [ + 191, 70, 10, 21, 197, 195, 15, 120, 191, 27, 221, 140, 58, 61, 128, 99, 42, 8, 27, 60, 46, 148, 7, 247, 124, 130, + 60, 76, 94, 1, 150, 192, 139, 206, 201, 114, 254, 233, 89, 79, 27, 194, 239, 219, 204, 32, 108, 252, 125, 65, 159, + 76, 245, 62, 245, 11, 46, 144, 98, 30, 167, 154, 6, 51, 72, 178, 118, 44, 181, 126, 104, 168, 65, 27, 74, 64, 173, + 188, 46, 197, 39, 177, 255, 76, 41, 223, 230, 178, 171, 209, 52, 50, 123, 135, 240, 129, 27, 182, 212, 66, 38, 60, + 90, 73, 157, 65, 202, 191, 27, 66, 172, 31, 59, 227, 16, 118, 51, 73, 86, 128, 152, 183, 218, 72, 144, 159, 56, + 27, 230, 210, 118, 239, 251, 28, 193, 198, 27, 213, 60, 15, 169, 200, 236, 236, 209, 255, 72, 221, 100, 48, 102, + 143, 123, 80, 84, 65, 209, 75, 237, 77, 207, 175, 154, 47, 216, 192, 170, 9, 147, 159, 65, 225, 69, 162, 82, 10, + 198, 80, 65, 82, 27, 238, 208, 159, 253, 157, 179, 50, 48, 65, 181, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2857, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "896942733202478760" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11144386391543722182" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4925d3c7aa048cbe085a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15781361741162089822" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9fe615ffdceed75fefc8" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8708099273537902690" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14701819283232376692" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "431301176377245676" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14186340564275341760" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10358608898747245996" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "568582291147107157" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8963201730489775728" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9858332906616570230" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9723149573627896779" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13884283424156994950" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b0c7294a9e466d6a8bf1b9aa8d060aba930c64a4925d3c7aa048cbe085a1bdb02a8e3ede80d5e4a9fe615ffdceed75fefc8ff1b78d96226dc105862d8669f1bcc075abe990dc7749f1b05fc4a22812c7fec1bc4e00194ac58a9c01b8fc12be94107a5ac1b07e40294d166ab551b7c63b07c1c027670ffff1b88cfd58c006cc1761b86ef91059214e3cb1bc0aee23651b8cd86a0ff", + "cborBytes": [ + 191, 27, 12, 114, 148, 169, 228, 102, 214, 168, 191, 27, 154, 168, 208, 96, 171, 169, 48, 198, 74, 73, 37, 211, + 199, 170, 4, 140, 190, 8, 90, 27, 219, 2, 168, 227, 237, 232, 13, 94, 74, 159, 230, 21, 255, 220, 238, 215, 95, + 239, 200, 255, 27, 120, 217, 98, 38, 220, 16, 88, 98, 216, 102, 159, 27, 204, 7, 90, 190, 153, 13, 199, 116, 159, + 27, 5, 252, 74, 34, 129, 44, 127, 236, 27, 196, 224, 1, 148, 172, 88, 169, 192, 27, 143, 193, 43, 233, 65, 7, 165, + 172, 27, 7, 228, 2, 148, 209, 102, 171, 85, 27, 124, 99, 176, 124, 28, 2, 118, 112, 255, 255, 27, 136, 207, 213, + 140, 0, 108, 193, 118, 27, 134, 239, 145, 5, 146, 20, 227, 203, 27, 192, 174, 226, 54, 81, 184, 205, 134, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2858, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f3e64" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12416980606067799899" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16126729952032400497" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5280750126491433841" + } + }, + { + "_tag": "ByteArray", + "bytearray": "10" + } + ] + } + } + ] + }, + "cborHex": "bf432f3e64d8669f1bac51fa12bf95f75b9f1bdfcda772c38b24711b4948fe42ed1efb714110ffffff", + "cborBytes": [ + 191, 67, 47, 62, 100, 216, 102, 159, 27, 172, 81, 250, 18, 191, 149, 247, 91, 159, 27, 223, 205, 167, 114, 195, + 139, 36, 113, 27, 73, 72, 254, 66, 237, 30, 251, 113, 65, 16, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2859, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "85a511b4f1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4f" + } + } + ] + }, + "cborHex": "bf4585a511b4f1414fff", + "cborBytes": [191, 69, 133, 165, 17, 180, 241, 65, 79, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2860, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "431026053679455448" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11809610261970160365" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7153622219951614734" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11628337516886388539" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1309768724541888231" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1236093192181048414" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4110314255695614011" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6339590645387779459" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13449687134441054531" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e3508cc132ebd3bfc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18326174583599640703" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17242580412485008623" + } + }, + { + "_tag": "ByteArray", + "bytearray": "38f25e1e6c" + }, + { + "_tag": "ByteArray", + "bytearray": "aef89d9abd1f0bb47217f0" + }, + { + "_tag": "ByteArray", + "bytearray": "0d3f585b94" + } + ] + } + } + ] + }, + "cborHex": "bf1b05fb4fe982809cd89f1ba3e429f6988a0aed1b6346c581ed8eab0e41ce1ba160275cae5c6f3bff1b122d3bb72c3c56e7bf1b11277c358d3ae45e1b390ac509c5f6103b1b57fac01a77ba5d831bbaa6e33074802143491e3508cc132ebd3bfc415aff1bfe53a6b0033fb07f9f1bef49f387b146fcef4538f25e1e6c4baef89d9abd1f0bb47217f0450d3f585b94ffff", + "cborBytes": [ + 191, 27, 5, 251, 79, 233, 130, 128, 156, 216, 159, 27, 163, 228, 41, 246, 152, 138, 10, 237, 27, 99, 70, 197, 129, + 237, 142, 171, 14, 65, 206, 27, 161, 96, 39, 92, 174, 92, 111, 59, 255, 27, 18, 45, 59, 183, 44, 60, 86, 231, 191, + 27, 17, 39, 124, 53, 141, 58, 228, 94, 27, 57, 10, 197, 9, 197, 246, 16, 59, 27, 87, 250, 192, 26, 119, 186, 93, + 131, 27, 186, 166, 227, 48, 116, 128, 33, 67, 73, 30, 53, 8, 204, 19, 46, 189, 59, 252, 65, 90, 255, 27, 254, 83, + 166, 176, 3, 63, 176, 127, 159, 27, 239, 73, 243, 135, 177, 70, 252, 239, 69, 56, 242, 94, 30, 108, 75, 174, 248, + 157, 154, 189, 31, 11, 180, 114, 23, 240, 69, 13, 63, 88, 91, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2861, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "134053983077059429" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6080797431620065692" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b19d8b53ec65dd" + }, + { + "_tag": "ByteArray", + "bytearray": "7bd6" + } + ] + } + } + ] + }, + "cborHex": "bf1b01dc41632a08cb65a01b5463550beed2599c9f47b19d8b53ec65dd427bd6ffff", + "cborBytes": [ + 191, 27, 1, 220, 65, 99, 42, 8, 203, 101, 160, 27, 84, 99, 85, 11, 238, 210, 89, 156, 159, 71, 177, 157, 139, 83, + 236, 101, 221, 66, 123, 214, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2862, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11416822756734744524" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a90475975a03af8be1428" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8889104200472003354" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d334be039" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4960277714714829797" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f60ef6ddb3e21bba5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "517d87ef0078f26357" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3093438383880048963" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8987935401923753654" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2e4fd2cf4ad259a5e09c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1122955555419377979" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b9e70b3ceeec537ccbf4b0a90475975a03af8be14281b7b5c712c8091031a452d334be0391b44d6724d04dd23e5492f60ef6ddb3e21bba549517d87ef0078f2635741701b2aee19d205ba914341791b7cbb8fa0bfd2b6b64bb2e4fd2cf4ad259a5e09c11b0f958a20c352d13bffff", + "cborBytes": [ + 191, 27, 158, 112, 179, 206, 238, 197, 55, 204, 191, 75, 10, 144, 71, 89, 117, 160, 58, 248, 190, 20, 40, 27, 123, + 92, 113, 44, 128, 145, 3, 26, 69, 45, 51, 75, 224, 57, 27, 68, 214, 114, 77, 4, 221, 35, 229, 73, 47, 96, 239, + 109, 219, 62, 33, 187, 165, 73, 81, 125, 135, 239, 0, 120, 242, 99, 87, 65, 112, 27, 42, 238, 25, 210, 5, 186, + 145, 67, 65, 121, 27, 124, 187, 143, 160, 191, 210, 182, 182, 75, 178, 228, 253, 44, 244, 173, 37, 154, 94, 9, + 193, 27, 15, 149, 138, 32, 195, 82, 209, 59, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2863, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f74b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7a95e28b9e1b0a17315b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10756248462728174141" + } + } + ] + } + } + ] + }, + "cborHex": "bf42f74b9f4a7a95e28b9e1b0a17315b1b9545defce0c11a3dffff", + "cborBytes": [ + 191, 66, 247, 75, 159, 74, 122, 149, 226, 139, 158, 27, 10, 23, 49, 91, 27, 149, 69, 222, 252, 224, 193, 26, 61, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2864, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12759751300226027996" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9389172616595791634" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3678710979995051271" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12410471979012666439" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0501" + }, + { + "_tag": "ByteArray", + "bytearray": "2d71340318f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + } + } + ] + }, + "cborHex": "bf039f1bb113be34184d11dc1b824d0abfb3045f12ff1b330d682549ef2507d8669f1bac3ada82ebfd34479f1bfffffffffffffffd420501462d71340318f808ffffff", + "cborBytes": [ + 191, 3, 159, 27, 177, 19, 190, 52, 24, 77, 17, 220, 27, 130, 77, 10, 191, 179, 4, 95, 18, 255, 27, 51, 13, 104, + 37, 73, 239, 37, 7, 216, 102, 159, 27, 172, 58, 218, 130, 235, 253, 52, 71, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 253, 66, 5, 1, 70, 45, 113, 52, 3, 24, 248, 8, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2865, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7940752096777718316" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5213c82558cc45" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6430167798542743311" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8173c3a1117f5bd4b5f8e54f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1691420135797617293" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8466afd753028afb94e516" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6866538958308662230" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1462249820222149380" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6e3337f5c9dfca2cbf475213c82558cc451b593c8b8b564bb70f4c8173c3a1117f5bd4b5f8e54f1b177921a6e828f28d4b8466afd753028afb94e5161b5f4ad8cd565e5bd6419e1b144af476d3385304ffff", + "cborBytes": [ + 191, 27, 110, 51, 55, 245, 201, 223, 202, 44, 191, 71, 82, 19, 200, 37, 88, 204, 69, 27, 89, 60, 139, 139, 86, 75, + 183, 15, 76, 129, 115, 195, 161, 17, 127, 91, 212, 181, 248, 229, 79, 27, 23, 121, 33, 166, 232, 40, 242, 141, 75, + 132, 102, 175, 215, 83, 2, 138, 251, 148, 229, 22, 27, 95, 74, 216, 205, 86, 94, 91, 214, 65, 158, 27, 20, 74, + 244, 118, 211, 56, 83, 4, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2866, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "482612" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0dbe68b9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15205480005443327017" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0df8d4314f83c5563a25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d52660a5eebafef5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7daed4ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e52879cd81cbae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d65d0d8af2fdb45992" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "820929980265539466" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e844721c4e03054f3aee9af0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8345fecd06" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4790850715405485471" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70df893b1f7bf231ae" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc4a78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4799577776852594991" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8209135ebf742c1cd1498c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1504472739235208080" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ca6d96bc58d393ca1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2289837401563887182" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12894346661779085985" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10028729080610187115" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12729d46d7d4c455707225" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11562497196104380160" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4858182022726197138" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17677608964375353346" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3123736530820046061" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "909959be61" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6373144481182094105" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8498379088328922885" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17891008074334185891" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "917fd417ed960a2482" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15934397810866870484" + } + } + } + ] + }, + "cborHex": "bf43482612bf440dbe68b91bd304b780bbc114294a0df8d4314f83c5563a2548d52660a5eebafef5447daed4ec47e52879cd81cbae49d65d0d8af2fdb459921b0b648777b332278a4ce844721c4e03054f3aee9af0458345fecd0641e91b427c8557b7ab859fff4970df893b1f7bf231aebf43bc4a781b429b868f0d28712fff4b8209135ebf742c1cd1498cbf1b14e0f5fc3c5f9b90497ca6d96bc58d393ca11b1fc722fc119e764e1bb2f1ebf8c2161aa11b8b2d33f6de66676b4b12729d46d7d4c4557072251ba0763df06a406f001b436bbacf56c89f921bf5537bb16fda98021b2b59bdd313709cedff45909959be61d8669f1b5871f523a71993199f1b75f04ec1267417051bf849a10d9055a9a3ffff49917fd417ed960a24821bdd225a628a7b58d4ff", + "cborBytes": [ + 191, 67, 72, 38, 18, 191, 68, 13, 190, 104, 185, 27, 211, 4, 183, 128, 187, 193, 20, 41, 74, 13, 248, 212, 49, 79, + 131, 197, 86, 58, 37, 72, 213, 38, 96, 165, 238, 186, 254, 245, 68, 125, 174, 212, 236, 71, 229, 40, 121, 205, + 129, 203, 174, 73, 214, 93, 13, 138, 242, 253, 180, 89, 146, 27, 11, 100, 135, 119, 179, 50, 39, 138, 76, 232, 68, + 114, 28, 78, 3, 5, 79, 58, 238, 154, 240, 69, 131, 69, 254, 205, 6, 65, 233, 27, 66, 124, 133, 87, 183, 171, 133, + 159, 255, 73, 112, 223, 137, 59, 31, 123, 242, 49, 174, 191, 67, 188, 74, 120, 27, 66, 155, 134, 143, 13, 40, 113, + 47, 255, 75, 130, 9, 19, 94, 191, 116, 44, 28, 209, 73, 140, 191, 27, 20, 224, 245, 252, 60, 95, 155, 144, 73, + 124, 166, 217, 107, 197, 141, 57, 60, 161, 27, 31, 199, 34, 252, 17, 158, 118, 78, 27, 178, 241, 235, 248, 194, + 22, 26, 161, 27, 139, 45, 51, 246, 222, 102, 103, 107, 75, 18, 114, 157, 70, 215, 212, 196, 85, 112, 114, 37, 27, + 160, 118, 61, 240, 106, 64, 111, 0, 27, 67, 107, 186, 207, 86, 200, 159, 146, 27, 245, 83, 123, 177, 111, 218, + 152, 2, 27, 43, 89, 189, 211, 19, 112, 156, 237, 255, 69, 144, 153, 89, 190, 97, 216, 102, 159, 27, 88, 113, 245, + 35, 167, 25, 147, 25, 159, 27, 117, 240, 78, 193, 38, 116, 23, 5, 27, 248, 73, 161, 13, 144, 85, 169, 163, 255, + 255, 73, 145, 127, 212, 23, 237, 150, 10, 36, 130, 27, 221, 34, 90, 98, 138, 123, 88, 212, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2867, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22ed" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c474afb023621a6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3637695407393667920" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3058940464771988063" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13133412701793576091" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7ff3444d1920d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11610562093679040046" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "794bad201ea8dff885" + }, + { + "_tag": "ByteArray", + "bytearray": "13bde6" + } + ] + } + } + ] + }, + "cborHex": "bf4222ed41c4485c474afb023621a6d8669f1b327bb0b31ec4fb509f1b2a738a254fcd7a5f1bb6434144bb02649bffff47d7ff3444d1920dd8669f1ba12100b5745ad62e9f49794bad201ea8dff8854313bde6ffffff", + "cborBytes": [ + 191, 66, 34, 237, 65, 196, 72, 92, 71, 74, 251, 2, 54, 33, 166, 216, 102, 159, 27, 50, 123, 176, 179, 30, 196, + 251, 80, 159, 27, 42, 115, 138, 37, 79, 205, 122, 95, 27, 182, 67, 65, 68, 187, 2, 100, 155, 255, 255, 71, 215, + 255, 52, 68, 209, 146, 13, 216, 102, 159, 27, 161, 33, 0, 181, 116, 90, 214, 46, 159, 73, 121, 75, 173, 32, 30, + 168, 223, 248, 133, 67, 19, 189, 230, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2868, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1007070141785762675" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "054ea1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "514083c14fd6869ab3e965" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14f83e0e0d099e63c51324f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11442378244502791751" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d7dd6ef76957a1632" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdaa428e4de0247131408974" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31353fd75500818b955401" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2ec1c3dd4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2e4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15641164820251247801" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa327770565f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f81ecdf" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1505736315162049608" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8e5172fc95b3924bb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11988769477601694763" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd15ef58b477" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17567904029974247044" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2768309e40ac" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9164726986669146021" + } + }, + { + "_tag": "ByteArray", + "bytearray": "13" + } + ] + } + } + ] + }, + "cborHex": "bf1b0df9d4f5510aeb73bf43054ea14b514083c14fd6869ab3e9654c14f83e0e0d099e63c51324f21b9ecb7e63993f2647491d7dd6ef76957a16324cbdaa428e4de02471314089744b31353fd75500818b95540145a2ec1c3dd442a2e41bd9109488986984b946aa327770565f446f81ecdfff1b14e573336ea3bc4849c8e5172fc95b3924bb1ba660aa52167e942b46cd15ef58b4771bf3cdbba2f2c4b6849f462768309e40ac1b7f2fa6a337d9bfa54113ffff", + "cborBytes": [ + 191, 27, 13, 249, 212, 245, 81, 10, 235, 115, 191, 67, 5, 78, 161, 75, 81, 64, 131, 193, 79, 214, 134, 154, 179, + 233, 101, 76, 20, 248, 62, 14, 13, 9, 158, 99, 197, 19, 36, 242, 27, 158, 203, 126, 99, 153, 63, 38, 71, 73, 29, + 125, 214, 239, 118, 149, 122, 22, 50, 76, 189, 170, 66, 142, 77, 224, 36, 113, 49, 64, 137, 116, 75, 49, 53, 63, + 215, 85, 0, 129, 139, 149, 84, 1, 69, 162, 236, 28, 61, 212, 66, 162, 228, 27, 217, 16, 148, 136, 152, 105, 132, + 185, 70, 170, 50, 119, 112, 86, 95, 68, 111, 129, 236, 223, 255, 27, 20, 229, 115, 51, 110, 163, 188, 72, 73, 200, + 229, 23, 47, 201, 91, 57, 36, 187, 27, 166, 96, 170, 82, 22, 126, 148, 43, 70, 205, 21, 239, 88, 180, 119, 27, + 243, 205, 187, 162, 242, 196, 182, 132, 159, 70, 39, 104, 48, 158, 64, 172, 27, 127, 47, 166, 163, 55, 217, 191, + 165, 65, 19, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2869, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "057b12fb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17112034493967406563" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "505aea" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "849c1410a54951" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11921168577771677546" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3333247901902477899" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8100003196007786067" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8171446efe74" + } + ] + } + } + ] + }, + "cborHex": "bf44057b12fbd8669f1bed7a28b5752895e39f43505aeaffff47849c1410a54951d8669f1bffffffffffffffef9f1ba5707fa911a1276a1b2e42134e75369a4b1b7068fdfdb992a653468171446efe74ffffff", + "cborBytes": [ + 191, 68, 5, 123, 18, 251, 216, 102, 159, 27, 237, 122, 40, 181, 117, 40, 149, 227, 159, 67, 80, 90, 234, 255, 255, + 71, 132, 156, 20, 16, 165, 73, 81, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 27, 165, 112, + 127, 169, 17, 161, 39, 106, 27, 46, 66, 19, 78, 117, 54, 154, 75, 27, 112, 104, 253, 253, 185, 146, 166, 83, 70, + 129, 113, 68, 110, 254, 116, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2870, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8739057105975422288" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c1c" + } + ] + } + } + ] + }, + "cborHex": "bf06d905099f1b79475e22e984ad50421c1cffff", + "cborBytes": [191, 6, 217, 5, 9, 159, 27, 121, 71, 94, 34, 233, 132, 173, 80, 66, 28, 28, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2871, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff23bb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2760853344441160024" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18286971873979462745" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01ba43c0624ffefd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9797084474358182808" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "630606448c42060624" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7031165270735730101" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14164224659366365783" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf149f1143ff23bb1b2650857d385d51581bfdc86007e61af459ff1bffffffffffffffeb1bfffffffffffffffb4801ba43c0624ffefd1b87f63c6c189d339849630606448c42060624bf1b6193b78f9f4435b51bc4916f484c5c4a57ffff", + "cborBytes": [ + 191, 20, 159, 17, 67, 255, 35, 187, 27, 38, 80, 133, 125, 56, 93, 81, 88, 27, 253, 200, 96, 7, 230, 26, 244, 89, + 255, 27, 255, 255, 255, 255, 255, 255, 255, 235, 27, 255, 255, 255, 255, 255, 255, 255, 251, 72, 1, 186, 67, 192, + 98, 79, 254, 253, 27, 135, 246, 60, 108, 24, 157, 51, 152, 73, 99, 6, 6, 68, 140, 66, 6, 6, 36, 191, 27, 97, 147, + 183, 143, 159, 68, 53, 181, 27, 196, 145, 111, 72, 76, 92, 74, 87, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2872, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6224424294870653874" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "182143876934229332" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8714038814719705791" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "871879493352006670" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10019878782283734068" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f51d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14433286380722289478" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14651138593723461036" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "af8e4c399c6e7d5da2" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16632711897875153716" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2278709017606626140" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b566198eaf3139bb2d8669f1b02871ae41aad5d5480ff1b78ee7c220e5582bf1b0c1989c7a031a40e1b8b0dc2aa367edc3442f51d1bc84d557e106f7b46d8669f1bcb534ced09e72dac9f49af8e4c399c6e7d5da2ffff1be6d34358e4430334d8669f1b1f9f99c744ec1b5c80ffff", + "cborBytes": [ + 191, 27, 86, 97, 152, 234, 243, 19, 155, 178, 216, 102, 159, 27, 2, 135, 26, 228, 26, 173, 93, 84, 128, 255, 27, + 120, 238, 124, 34, 14, 85, 130, 191, 27, 12, 25, 137, 199, 160, 49, 164, 14, 27, 139, 13, 194, 170, 54, 126, 220, + 52, 66, 245, 29, 27, 200, 77, 85, 126, 16, 111, 123, 70, 216, 102, 159, 27, 203, 83, 76, 237, 9, 231, 45, 172, + 159, 73, 175, 142, 76, 57, 156, 110, 125, 93, 162, 255, 255, 27, 230, 211, 67, 88, 228, 67, 3, 52, 216, 102, 159, + 27, 31, 159, 153, 199, 68, 236, 27, 92, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2873, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11466287160478172372" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5395456261195220157" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12158919907643827517" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14467627392042605143" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12494818783013941992" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e403ef00fd9df8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ed6331e237944b6c4" + } + } + ] + }, + "cborHex": "bf1b9f206f6be4ec84d4d8669f1b4ae082e219b2c4bd9f1ba8bd293c3b89253d1bc8c75675d5691a57ffff1bad66837b966cb2e847e403ef00fd9df81bfffffffffffffff641d31bfffffffffffffff9495ed6331e237944b6c4ff", + "cborBytes": [ + 191, 27, 159, 32, 111, 107, 228, 236, 132, 212, 216, 102, 159, 27, 74, 224, 130, 226, 25, 178, 196, 189, 159, 27, + 168, 189, 41, 60, 59, 137, 37, 61, 27, 200, 199, 86, 117, 213, 105, 26, 87, 255, 255, 27, 173, 102, 131, 123, 150, + 108, 178, 232, 71, 228, 3, 239, 0, 253, 157, 248, 27, 255, 255, 255, 255, 255, 255, 255, 246, 65, 211, 27, 255, + 255, 255, 255, 255, 255, 255, 249, 73, 94, 214, 51, 30, 35, 121, 68, 182, 196, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2874, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10379785570307123605" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0501be" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06b0dd484e860407b7070200" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07010205fa07a47c0405" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b94f03f73c4c" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11dd94224f27400b2378dfde" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1b34b9" + }, + { + "_tag": "ByteArray", + "bytearray": "f61f3ad960f579" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a00242c5adb4573d81d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ecf6" + } + } + ] + }, + "cborHex": "bf1b900c67fb52e1a995bf430501be41c74c06b0dd484e860407b70702000c4a07010205fa07a47c040546b94f03f73c4cff4c11dd94224f27400b2378dfded8669f1bfffffffffffffff49f431b34b947f61f3ad960f579ffff4aa00242c5adb4573d81d142ecf6ff", + "cborBytes": [ + 191, 27, 144, 12, 103, 251, 82, 225, 169, 149, 191, 67, 5, 1, 190, 65, 199, 76, 6, 176, 221, 72, 78, 134, 4, 7, + 183, 7, 2, 0, 12, 74, 7, 1, 2, 5, 250, 7, 164, 124, 4, 5, 70, 185, 79, 3, 247, 60, 76, 255, 76, 17, 221, 148, 34, + 79, 39, 64, 11, 35, 120, 223, 222, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 67, 27, 52, + 185, 71, 246, 31, 58, 217, 96, 245, 121, 255, 255, 74, 160, 2, 66, 197, 173, 180, 87, 61, 129, 209, 66, 236, 246, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2875, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "021b3c03" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c12d051872fb6145601518" + }, + { + "_tag": "ByteArray", + "bytearray": "53fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2859865758387007396" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c4ef8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4922430466177074395" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10797944198679629611" + } + }, + { + "_tag": "ByteArray", + "bytearray": "daac0f78" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2714343078561722303" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "205713568104177854" + } + } + ] + } + } + ] + }, + "cborHex": "bf44021b3c039f4bc12d051872fb61456015184253fd1b27b048c149f5efa41bfffffffffffffff1ff435c4ef8d8669f1b444ffc6dc80b84db9f1b95da0109eaca0f2b44daac0f781b25ab48a614362fbf1b02dad7667853e0beffffff", + "cborBytes": [ + 191, 68, 2, 27, 60, 3, 159, 75, 193, 45, 5, 24, 114, 251, 97, 69, 96, 21, 24, 66, 83, 253, 27, 39, 176, 72, 193, + 73, 245, 239, 164, 27, 255, 255, 255, 255, 255, 255, 255, 241, 255, 67, 92, 78, 248, 216, 102, 159, 27, 68, 79, + 252, 109, 200, 11, 132, 219, 159, 27, 149, 218, 1, 9, 234, 202, 15, 43, 68, 218, 172, 15, 120, 27, 37, 171, 72, + 166, 20, 54, 47, 191, 27, 2, 218, 215, 102, 120, 83, 224, 190, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2876, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22c3313525f6aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11368787891619175677" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3782" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "871fb67ba736914ea29ac59e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d85f3cbc16bee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffe589343bd209" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "911a65ac6777" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f22569c3c469c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a91eaa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44f02511d60aebe426128d00" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c97cd8b5e626" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ecf" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f68dcd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4041357997593316336" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b982e7" + }, + { + "_tag": "ByteArray", + "bytearray": "4444fb52f3e7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12072590939942975473" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17347075574426911387" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14759008582648292189" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f70cc1118c85e2e0224e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5111796423378152361" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4722c3313525f6aa1b9dc60c5a5eb91cfd423782a04c871fb67ba736914ea29ac59ebf476d85f3cbc16bee47ffe589343bd20946911a65ac677747f22569c3c469c343a91eaa4c44f02511d60aebe426128d0046c97cd8b5e626426ecfff43f68dcdd8669f1b3815c9afd0bbcbf09f43b982e7464444fb52f3e71ba78a757f1de677f11bf0bd31538192429b1bccd2881bfdb1635dffff4af70cc1118c85e2e0224ed8669f1b46f0bfc37b912ba980ffff", + "cborBytes": [ + 191, 71, 34, 195, 49, 53, 37, 246, 170, 27, 157, 198, 12, 90, 94, 185, 28, 253, 66, 55, 130, 160, 76, 135, 31, + 182, 123, 167, 54, 145, 78, 162, 154, 197, 158, 191, 71, 109, 133, 243, 203, 193, 107, 238, 71, 255, 229, 137, 52, + 59, 210, 9, 70, 145, 26, 101, 172, 103, 119, 71, 242, 37, 105, 195, 196, 105, 195, 67, 169, 30, 170, 76, 68, 240, + 37, 17, 214, 10, 235, 228, 38, 18, 141, 0, 70, 201, 124, 216, 181, 230, 38, 66, 110, 207, 255, 67, 246, 141, 205, + 216, 102, 159, 27, 56, 21, 201, 175, 208, 187, 203, 240, 159, 67, 185, 130, 231, 70, 68, 68, 251, 82, 243, 231, + 27, 167, 138, 117, 127, 29, 230, 119, 241, 27, 240, 189, 49, 83, 129, 146, 66, 155, 27, 204, 210, 136, 27, 253, + 177, 99, 93, 255, 255, 74, 247, 12, 193, 17, 140, 133, 226, 224, 34, 78, 216, 102, 159, 27, 70, 240, 191, 195, + 123, 145, 43, 169, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2877, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11380938671598570143" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12307019351252324567" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18255131549770533875" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4efb110eaa5a" + } + ] + } + } + ] + }, + "cborHex": "bf1b9df1376c4b238a9fd8669f1baacb50e50340d0d79f1bfd57416cb8194bf3464efb110eaa5affffff", + "cborBytes": [ + 191, 27, 157, 241, 55, 108, 75, 35, 138, 159, 216, 102, 159, 27, 170, 203, 80, 229, 3, 64, 208, 215, 159, 27, 253, + 87, 65, 108, 184, 25, 75, 243, 70, 78, 251, 17, 14, 170, 90, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2878, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "672658572725280292" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6755806047221710723" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9266806425171996243" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16451405566932435768" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5082517573640781517" + } + }, + { + "_tag": "ByteArray", + "bytearray": "333f0411eb2dbf6dffb6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17729461426640453490" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8845050627848923912" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0955c36872695e24801b5dc171ce6015ff8341f61b809a4f5896af2e53d8669f1be44f223328e443389f1b4688bace0d89fecd4a333f0411eb2dbf6dffb6ffff1bf60bb33b99e4ff729f1b7abfeeaed547eb08ffff", + "cborBytes": [ + 191, 27, 9, 85, 195, 104, 114, 105, 94, 36, 128, 27, 93, 193, 113, 206, 96, 21, 255, 131, 65, 246, 27, 128, 154, + 79, 88, 150, 175, 46, 83, 216, 102, 159, 27, 228, 79, 34, 51, 40, 228, 67, 56, 159, 27, 70, 136, 186, 206, 13, + 137, 254, 205, 74, 51, 63, 4, 17, 235, 45, 191, 109, 255, 182, 255, 255, 27, 246, 11, 179, 59, 153, 228, 255, 114, + 159, 27, 122, 191, 238, 174, 213, 71, 235, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2879, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1071249493567420369" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16822955348264377011" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "630646d40724b3df" + }, + { + "_tag": "ByteArray", + "bytearray": "ac" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bf4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "84041652412908705" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8126526627283219747" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10513772784341877836" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "312026" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11431887119786604947" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6083464661670014903" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11446343214450298371" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "132adbf33202" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18040912339575495450" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1579911620409832898" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0eddd7bd19e737d1d8669f1be97724c1e58e5ab39f48630646d40724b3df41acffff428bf4bf1b012a9370066884a11b70c738e94cf835231b91e86ca49bde044c433120261b9ea638c4473e79931b546ccee0d27bafb71b9ed994821a834e0346132adbf332021bfa5e3230205bdb1a1b15ecf93f7f0a35c2ffff", + "cborBytes": [ + 191, 27, 14, 221, 215, 189, 25, 231, 55, 209, 216, 102, 159, 27, 233, 119, 36, 193, 229, 142, 90, 179, 159, 72, + 99, 6, 70, 212, 7, 36, 179, 223, 65, 172, 255, 255, 66, 139, 244, 191, 27, 1, 42, 147, 112, 6, 104, 132, 161, 27, + 112, 199, 56, 233, 76, 248, 53, 35, 27, 145, 232, 108, 164, 155, 222, 4, 76, 67, 49, 32, 38, 27, 158, 166, 56, + 196, 71, 62, 121, 147, 27, 84, 108, 206, 224, 210, 123, 175, 183, 27, 158, 217, 148, 130, 26, 131, 78, 3, 70, 19, + 42, 219, 243, 50, 2, 27, 250, 94, 50, 48, 32, 91, 219, 26, 27, 21, 236, 249, 63, 127, 10, 53, 194, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2880, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00de694057" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3202903925482686505" + } + }, + { + "_tag": "ByteArray", + "bytearray": "79a9a6889fb3efc9f7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10637203645805633931" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15895979191610032602" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da8cc9fd" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "43e68cd8a95bce33" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8887" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "969577" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0ce61f4de07eab5b32461b7" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4500de6940579f1b2c730026881988294979a9a6889fb3efc9f71b939ef05b87bc218b1bdc99dcdab0eac1da44da8cc9fdff4843e68cd8a95bce33a0428887439695774cb0ce61f4de07eab5b32461b7a0ff", + "cborBytes": [ + 191, 69, 0, 222, 105, 64, 87, 159, 27, 44, 115, 0, 38, 136, 25, 136, 41, 73, 121, 169, 166, 136, 159, 179, 239, + 201, 247, 27, 147, 158, 240, 91, 135, 188, 33, 139, 27, 220, 153, 220, 218, 176, 234, 193, 218, 68, 218, 140, 201, + 253, 255, 72, 67, 230, 140, 216, 169, 91, 206, 51, 160, 66, 136, 135, 67, 150, 149, 119, 76, 176, 206, 97, 244, + 222, 7, 234, 181, 179, 36, 97, 183, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2881, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0ac" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2779037850625869892" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9284760971459353529" + } + }, + { + "_tag": "ByteArray", + "bytearray": "39ef91e21ef7a9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8463817272612849516" + } + }, + { + "_tag": "ByteArray", + "bytearray": "27aaf52c481ea547391a" + }, + { + "_tag": "ByteArray", + "bytearray": "3286ba" + } + ] + } + } + ] + }, + "cborHex": "bf42c0acd8669f1b269120337feb88449f1b80da18e9283edbb94739ef91e21ef7a91b757584f759e7876c4a27aaf52c481ea547391a433286baffffff", + "cborBytes": [ + 191, 66, 192, 172, 216, 102, 159, 27, 38, 145, 32, 51, 127, 235, 136, 68, 159, 27, 128, 218, 24, 233, 40, 62, 219, + 185, 71, 57, 239, 145, 226, 30, 247, 169, 27, 117, 117, 132, 247, 89, 231, 135, 108, 74, 39, 170, 245, 44, 72, 30, + 165, 71, 57, 26, 67, 50, 134, 186, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2882, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "134429751557600361" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2660671667404346547" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3797986846226032256" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7282505389479141324" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18353390665921780749" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87c7c265893035450a4b0d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "614fbb80a5247792cb1c41" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2451256696420244388" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15871273435103885920" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8797393299760226437" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9905779928858637962" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4111529876450539137" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11634649809255754110" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12887056392371059623" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32914d4e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17210650222178752523" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c97" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12118334189713620221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc90" + } + } + ] + }, + "cborHex": "bf1b01dd972594d5b469bf1b24ec9ac8df9514b31b34b528e9fee8a6801b6510a8113ec59fcc1bfeb45791fa3cdc0d4b87c7c265893035450a4b0d4b614fbb80a5247792cb1c41ff1b22049cfa636d1ba41bdc4217198075fa601b7a169e98759c2085bf1b8978665cbad0368a1b390f16a3893d76811ba176945bc6c1697e417e1bb2d80582a3b43ba74432914d4e1beed88330ee76580b428c97ff1ba82cf8bd6759fcfd42cc90ff", + "cborBytes": [ + 191, 27, 1, 221, 151, 37, 148, 213, 180, 105, 191, 27, 36, 236, 154, 200, 223, 149, 20, 179, 27, 52, 181, 40, 233, + 254, 232, 166, 128, 27, 101, 16, 168, 17, 62, 197, 159, 204, 27, 254, 180, 87, 145, 250, 60, 220, 13, 75, 135, + 199, 194, 101, 137, 48, 53, 69, 10, 75, 13, 75, 97, 79, 187, 128, 165, 36, 119, 146, 203, 28, 65, 255, 27, 34, 4, + 156, 250, 99, 109, 27, 164, 27, 220, 66, 23, 25, 128, 117, 250, 96, 27, 122, 22, 158, 152, 117, 156, 32, 133, 191, + 27, 137, 120, 102, 92, 186, 208, 54, 138, 27, 57, 15, 22, 163, 137, 61, 118, 129, 27, 161, 118, 148, 91, 198, 193, + 105, 126, 65, 126, 27, 178, 216, 5, 130, 163, 180, 59, 167, 68, 50, 145, 77, 78, 27, 238, 216, 131, 48, 238, 118, + 88, 11, 66, 140, 151, 255, 27, 168, 44, 248, 189, 103, 89, 252, 253, 66, 204, 144, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2883, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6018262465757062925" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8250157300300094427" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11948653857290153768" + } + }, + { + "_tag": "ByteArray", + "bytearray": "682cfa" + }, + { + "_tag": "ByteArray", + "bytearray": "a7" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14068867080902757011" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12421242977722132978" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18328676554048978409" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4206049439790847828" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5854509716532251838" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8721524619333744650" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc3ee3b82fe05bda4466" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86e622f9381e0c49f2bcce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b78d" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b538529d39484270dd8669f1b727e725a797b9bdb9f1ba5d2256063e16f2843682cfa41a7ffff1bc33ea811ed654a931bac611ead7bf169f21bfe5c8a37671ebde9bf1b3a5ee3ae4e76d7541b513f659193fa4cbe1b7909146ec336380a4afc3ee3b82fe05bda44664b86e622f9381e0c49f2bcce42b78dffff", + "cborBytes": [ + 191, 27, 83, 133, 41, 211, 148, 132, 39, 13, 216, 102, 159, 27, 114, 126, 114, 90, 121, 123, 155, 219, 159, 27, + 165, 210, 37, 96, 99, 225, 111, 40, 67, 104, 44, 250, 65, 167, 255, 255, 27, 195, 62, 168, 17, 237, 101, 74, 147, + 27, 172, 97, 30, 173, 123, 241, 105, 242, 27, 254, 92, 138, 55, 103, 30, 189, 233, 191, 27, 58, 94, 227, 174, 78, + 118, 215, 84, 27, 81, 63, 101, 145, 147, 250, 76, 190, 27, 121, 9, 20, 110, 195, 54, 56, 10, 74, 252, 62, 227, + 184, 47, 224, 91, 218, 68, 102, 75, 134, 230, 34, 249, 56, 30, 12, 73, 242, 188, 206, 66, 183, 141, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2884, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11735296604571930104" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96df095fc466840369319243" + } + } + ] + }, + "cborHex": "bf1ba2dc2615e95b8df84c96df095fc466840369319243ff", + "cborBytes": [ + 191, 27, 162, 220, 38, 21, 233, 91, 141, 248, 76, 150, 223, 9, 95, 196, 102, 132, 3, 105, 49, 146, 67, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2885, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ae90107ff6c05" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12843230584378485999" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13635057280490119476" + } + }, + { + "_tag": "ByteArray", + "bytearray": "79467eeee11938f487" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8806457632857288362" + } + }, + { + "_tag": "ByteArray", + "bytearray": "19e9757f3c7931b9" + } + ] + } + } + ] + }, + "cborHex": "bf475ae90107ff6c059f1bb23c522b8e4fecef1bbd39745adfb7a1344979467eeee11938f4871b7a36d28ef7fc6eaa4819e9757f3c7931b9ffff", + "cborBytes": [ + 191, 71, 90, 233, 1, 7, 255, 108, 5, 159, 27, 178, 60, 82, 43, 142, 79, 236, 239, 27, 189, 57, 116, 90, 223, 183, + 161, 52, 73, 121, 70, 126, 238, 225, 25, 56, 244, 135, 27, 122, 54, 210, 142, 247, 252, 110, 170, 72, 25, 233, + 117, 127, 60, 121, 49, 185, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2886, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bbbb90526a20e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17746227397127200895" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5ec88fcd" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbfa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1022251214014955898" + } + } + ] + } + } + ] + }, + "cborHex": "bf478bbbb90526a20ed8669f1bf64743cb4d12607f9f445ec88fcdffff42dbfad905079f0f1b0e2fc4102292c17affff", + "cborBytes": [ + 191, 71, 139, 187, 185, 5, 38, 162, 14, 216, 102, 159, 27, 246, 71, 67, 203, 77, 18, 96, 127, 159, 68, 94, 200, + 143, 205, 255, 255, 66, 219, 250, 217, 5, 7, 159, 15, 27, 14, 47, 196, 16, 34, 146, 193, 122, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2887, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + }, + "cborHex": "bf0c0aff", + "cborBytes": [191, 12, 10, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2888, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "471371491464413074" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "09f07e9968" + }, + { + "_tag": "ByteArray", + "bytearray": "0c4ca604" + }, + { + "_tag": "ByteArray", + "bytearray": "43412a57b7175871c2" + }, + { + "_tag": "ByteArray", + "bytearray": "4fe45b99" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13156775823908959365" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7465116751891934130" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc4cd1c955bf1d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11746314098679243258" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dbe897" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12104958384624385320" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8441239115588523295" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13848815508949788949" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17051209602907073675" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4502598252716666003" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b068aa5dfc1fb7f929f4509f07e9968440c4ca6044943412a57b7175871c2444fe45b991bb69641e77d8a7485ff1b67996c224b562bb247cc4cd1c955bf1d1ba3034a7027f061fa43dbe8971ba7fd7384186c3d281b75254e4084c9551f1bc030e054cadf6915bf1beca210caec016c8b1b3e7c71414b78ac93ffff", + "cborBytes": [ + 191, 27, 6, 138, 165, 223, 193, 251, 127, 146, 159, 69, 9, 240, 126, 153, 104, 68, 12, 76, 166, 4, 73, 67, 65, 42, + 87, 183, 23, 88, 113, 194, 68, 79, 228, 91, 153, 27, 182, 150, 65, 231, 125, 138, 116, 133, 255, 27, 103, 153, + 108, 34, 75, 86, 43, 178, 71, 204, 76, 209, 201, 85, 191, 29, 27, 163, 3, 74, 112, 39, 240, 97, 250, 67, 219, 232, + 151, 27, 167, 253, 115, 132, 24, 108, 61, 40, 27, 117, 37, 78, 64, 132, 201, 85, 31, 27, 192, 48, 224, 84, 202, + 223, 105, 21, 191, 27, 236, 162, 16, 202, 236, 1, 108, 139, 27, 62, 124, 113, 65, 75, 120, 172, 147, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2889, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4be10b9ab3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f7e1dd712669fd7c29a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "daa4f8228fc3dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2301325443417cc838770098" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb41aed64d18e3abb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73ff4ffe407829858180bbd8" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72c3300f81bc741394" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11933387693136702785" + } + } + } + ] + }, + "cborHex": "bf4101bf454be10b9ab34a2f7e1dd712669fd7c29a47daa4f8228fc3dc4c2301325443417cc83877009849eb41aed64d18e3abb64c73ff4ffe407829858180bbd8ff4972c3300f81bc7413941ba59be8e1906e6d41ff", + "cborBytes": [ + 191, 65, 1, 191, 69, 75, 225, 11, 154, 179, 74, 47, 126, 29, 215, 18, 102, 159, 215, 194, 154, 71, 218, 164, 248, + 34, 143, 195, 220, 76, 35, 1, 50, 84, 67, 65, 124, 200, 56, 119, 0, 152, 73, 235, 65, 174, 214, 77, 24, 227, 171, + 182, 76, 115, 255, 79, 254, 64, 120, 41, 133, 129, 128, 187, 216, 255, 73, 114, 195, 48, 15, 129, 188, 116, 19, + 148, 27, 165, 155, 232, 225, 144, 110, 109, 65, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2890, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "56804ce1fc5f9da1b0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10604430395957895706" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69a895ba4c7a5c663b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6f722df9cc" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78f6dc79e48b0cfc8f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5560197919102269979" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2654739491330502952" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9539339069210742384" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4819420530308793510" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5835562541220605678" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10220763489205443695" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6943736877141704689" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "383687dc5b5ec2961e82cf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8743451615830466387" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1924894604428384263" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2f78e3af01b72" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7689441687957029392" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1746d9a9ce5441521d4a50" + }, + { + "_tag": "ByteArray", + "bytearray": "eeb5cee726b2" + }, + { + "_tag": "ByteArray", + "bytearray": "5af778c4ab6deb0cde" + } + ] + } + } + ] + }, + "cborHex": "bf4956804ce1fc5f9da1b0d8669f1b932a8142ac6ce21a80ff4969a895ba4c7a5c663b9f456f722df9ccff4978f6dc79e48b0cfc8fbf1b4d29ca8c58f4fa1b1b24d787807ff4b1281b84628a57844fce701b42e205701c47c4a6ff419ebf1b50fc15368e07aeee1b8dd7723dd35f5c6f1b605d1be677cfbff14b383687dc5b5ec2961e82cf1b7956faeb7863df531b1ab69971b7051807ff47d2f78e3af01b729f1b6ab662798bc242104b1746d9a9ce5441521d4a5046eeb5cee726b2495af778c4ab6deb0cdeffff", + "cborBytes": [ + 191, 73, 86, 128, 76, 225, 252, 95, 157, 161, 176, 216, 102, 159, 27, 147, 42, 129, 66, 172, 108, 226, 26, 128, + 255, 73, 105, 168, 149, 186, 76, 122, 92, 102, 59, 159, 69, 111, 114, 45, 249, 204, 255, 73, 120, 246, 220, 121, + 228, 139, 12, 252, 143, 191, 27, 77, 41, 202, 140, 88, 244, 250, 27, 27, 36, 215, 135, 128, 127, 244, 177, 40, 27, + 132, 98, 138, 87, 132, 79, 206, 112, 27, 66, 226, 5, 112, 28, 71, 196, 166, 255, 65, 158, 191, 27, 80, 252, 21, + 54, 142, 7, 174, 238, 27, 141, 215, 114, 61, 211, 95, 92, 111, 27, 96, 93, 27, 230, 119, 207, 191, 241, 75, 56, + 54, 135, 220, 91, 94, 194, 150, 30, 130, 207, 27, 121, 86, 250, 235, 120, 99, 223, 83, 27, 26, 182, 153, 113, 183, + 5, 24, 7, 255, 71, 210, 247, 142, 58, 240, 27, 114, 159, 27, 106, 182, 98, 121, 139, 194, 66, 16, 75, 23, 70, 217, + 169, 206, 84, 65, 82, 29, 74, 80, 70, 238, 181, 206, 231, 38, 178, 73, 90, 247, 120, 196, 171, 109, 235, 12, 222, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2891, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "57ca5f7408e12283cd7e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14448907258358889702" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5597647081401510404" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2fba82a1cff9" + }, + { + "_tag": "ByteArray", + "bytearray": "db9c05b6421e442de9" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c30f99d2a1df1b3a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8467296511398617551" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "34477915756d5c89" + }, + { + "_tag": "ByteArray", + "bytearray": "bf9b942168fa7bf250ef" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15606357447969740261" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a57ca5f7408e12283cd7ed8669f1bc884d4990f0b7ce69f1b4daed65ce8f06a04462fba82a1cff949db9c05b6421e442de9ffff48c30f99d2a1df1b3ad8669f1b7581e150c1d1a1cf9f4834477915756d5c894abf9b942168fa7bf250ef1bd894eb69b40215e5ffffff", + "cborBytes": [ + 191, 74, 87, 202, 95, 116, 8, 225, 34, 131, 205, 126, 216, 102, 159, 27, 200, 132, 212, 153, 15, 11, 124, 230, + 159, 27, 77, 174, 214, 92, 232, 240, 106, 4, 70, 47, 186, 130, 161, 207, 249, 73, 219, 156, 5, 182, 66, 30, 68, + 45, 233, 255, 255, 72, 195, 15, 153, 210, 161, 223, 27, 58, 216, 102, 159, 27, 117, 129, 225, 80, 193, 209, 161, + 207, 159, 72, 52, 71, 121, 21, 117, 109, 92, 137, 74, 191, 155, 148, 33, 104, 250, 123, 242, 80, 239, 27, 216, + 148, 235, 105, 180, 2, 21, 229, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2892, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc9754574dcaac7541" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf49cc9754574dcaac754180ff", + "cborBytes": [191, 73, 204, 151, 84, 87, 77, 202, 172, 117, 65, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2893, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1736423027470110027" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17066374134436808707" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8665070764651156055" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15182674339017346786" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8915453805702722685" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aafb3691aefdf37f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17504647783097623046" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2000971893032736908" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4436719736926736714" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18117539779435436613" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33c2" + } + } + ] + }, + "cborHex": "bf1b1819038b242a0d4b9f1becd7f0da8f054803ff1b784083f370a792579f1bd2b3b1debd914ee2ff1b7bba0e000c50b47d48aafb3691aefdf37f1bf2ed006a45dce206bf1b1bc4e155c9c1d88c1b3d9265180f7b914aff1bfb6e6e7045421a454233c2ff", + "cborBytes": [ + 191, 27, 24, 25, 3, 139, 36, 42, 13, 75, 159, 27, 236, 215, 240, 218, 143, 5, 72, 3, 255, 27, 120, 64, 131, 243, + 112, 167, 146, 87, 159, 27, 210, 179, 177, 222, 189, 145, 78, 226, 255, 27, 123, 186, 14, 0, 12, 80, 180, 125, 72, + 170, 251, 54, 145, 174, 253, 243, 127, 27, 242, 237, 0, 106, 69, 220, 226, 6, 191, 27, 27, 196, 225, 85, 201, 193, + 216, 140, 27, 61, 146, 101, 24, 15, 123, 145, 74, 255, 27, 251, 110, 110, 112, 69, 66, 26, 69, 66, 51, 194, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2894, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4284538240957701995" + } + }, + { + "_tag": "ByteArray", + "bytearray": "15f19980206d41440f9eecfa" + }, + { + "_tag": "ByteArray", + "bytearray": "be54d9f3b32bc7d564e5" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07046004d4f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + } + ] + }, + "cborHex": "bf04d905019f1b3b75bcd466dc5f6b4c15f19980206d41440f9eecfa4abe54d9f3b32bc7d564e5ff4607046004d4f901ff", + "cborBytes": [ + 191, 4, 217, 5, 1, 159, 27, 59, 117, 188, 212, 102, 220, 95, 107, 76, 21, 241, 153, 128, 32, 109, 65, 68, 15, 158, + 236, 250, 74, 190, 84, 217, 243, 179, 43, 199, 213, 100, 229, 255, 70, 7, 4, 96, 4, 212, 249, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2895, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00da6c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "03f0d9adfc55560497" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "ByteArray", + "bytearray": "29" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a10ffe0306d59e2091ba02" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5919542471304652769" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4c95327290820" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18371781918117368858" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6aed45db1eedc0f4fac0ce79" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f997" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d46e" + } + } + ] + }, + "cborHex": "bf4300da6c9f4903f0d9adfc55560497ff41919f0b4129ff4ba10ffe0306d59e2091ba02bf1b52267083baf3a7e147f4c953272908201bfef5ae511054941a4c6aed45db1eedc0f4fac0ce79ff42f99742d46eff", + "cborBytes": [ + 191, 67, 0, 218, 108, 159, 73, 3, 240, 217, 173, 252, 85, 86, 4, 151, 255, 65, 145, 159, 11, 65, 41, 255, 75, 161, + 15, 254, 3, 6, 213, 158, 32, 145, 186, 2, 191, 27, 82, 38, 112, 131, 186, 243, 167, 225, 71, 244, 201, 83, 39, 41, + 8, 32, 27, 254, 245, 174, 81, 16, 84, 148, 26, 76, 106, 237, 69, 219, 30, 237, 192, 244, 250, 192, 206, 121, 255, + 66, 249, 151, 66, 212, 110, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2896, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8eb2d677513f990265" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5667507434018612388" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3292598576434864400" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12201899038505114803" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4728651672065608117" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8539830797672276407" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb48a76b81dfe1810ddd8e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "034d6bbd3c2e67db01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16259901243813809552" + } + }, + { + "_tag": "ByteArray", + "bytearray": "58fdfb5f" + }, + { + "_tag": "ByteArray", + "bytearray": "4a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dca9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5469794198907645358" + } + } + } + ] + }, + "cborHex": "bf498eb2d677513f9902651b4ea707fbc690a4a441bdbf1b2db1a8f5d85b61101ba955da86ef471cb31b419f8ba46c0709b51b768392dd513261b7ff4bcb48a76b81dfe1810ddd8e9f49034d6bbd3c2e67db011be1a6c60858744d904458fdfb5f414aff42dca91b4be89cd7fc61edaeff", + "cborBytes": [ + 191, 73, 142, 178, 214, 119, 81, 63, 153, 2, 101, 27, 78, 167, 7, 251, 198, 144, 164, 164, 65, 189, 191, 27, 45, + 177, 168, 245, 216, 91, 97, 16, 27, 169, 85, 218, 134, 239, 71, 28, 179, 27, 65, 159, 139, 164, 108, 7, 9, 181, + 27, 118, 131, 146, 221, 81, 50, 97, 183, 255, 75, 203, 72, 167, 107, 129, 223, 225, 129, 13, 221, 142, 159, 73, 3, + 77, 107, 189, 60, 46, 103, 219, 1, 27, 225, 166, 198, 8, 88, 116, 77, 144, 68, 88, 253, 251, 95, 65, 74, 255, 66, + 220, 169, 27, 75, 232, 156, 215, 252, 97, 237, 174, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2897, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10a26d3568e1e3d6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5886302617579439552" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17985524848939858671" + } + }, + { + "_tag": "ByteArray", + "bytearray": "57213c" + }, + { + "_tag": "ByteArray", + "bytearray": "24769d4142653957bd" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c479cbf8604cf04d3b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6382243332443743738" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db7703988e41734aa4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fba70f4c000ad72cac" + } + } + ] + }, + "cborHex": "bf4810a26d3568e1e3d6d8669f1b51b0590b314645c09f1bf9996b8f08057aef4357213c4924769d4142653957bdffff412aa049c479cbf8604cf04d3b1b5892487f0c6a25fa49db7703988e41734aa449fba70f4c000ad72cacff", + "cborBytes": [ + 191, 72, 16, 162, 109, 53, 104, 225, 227, 214, 216, 102, 159, 27, 81, 176, 89, 11, 49, 70, 69, 192, 159, 27, 249, + 153, 107, 143, 8, 5, 122, 239, 67, 87, 33, 60, 73, 36, 118, 157, 65, 66, 101, 57, 87, 189, 255, 255, 65, 42, 160, + 73, 196, 121, 203, 248, 96, 76, 240, 77, 59, 27, 88, 146, 72, 127, 12, 106, 37, 250, 73, 219, 119, 3, 152, 142, + 65, 115, 74, 164, 73, 251, 167, 15, 76, 0, 10, 215, 44, 172, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2898, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b60dcbe9f40" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdc0e6ca7695e432caeb" + } + } + ] + }, + "cborHex": "bf464b60dcbe9f404afdc0e6ca7695e432caebff", + "cborBytes": [191, 70, 75, 96, 220, 190, 159, 64, 74, 253, 192, 230, 202, 118, 149, 228, 50, 202, 235, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2899, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e0311" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1629632572358610616" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53c5" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "387a35514b516c2020cd7090" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7926621937823757069" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ebe8b0b6eae48" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "425943f1088b9e66c118" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17185964991816774822" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a5b077dba885a78a449" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12392969124643921885" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d294cca44e88a39489f4314f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3658175964194324578" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74dcc2f3b0e65f5a15fa894b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "25ecc2f03dba6a1339" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fff7b964d528739d7a7c4b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "766cea8b9e981ef4c5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1552771605440229859" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c800b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6877905009623485359" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d0cacc9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "649044f13268" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa12debca0ebd504de" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18005652780389646851" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9d471a9bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06c9b9" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c055" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a44c400ff8120f0069beaa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6525608473949188714" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e997276d5454" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "278c5ff365c492092f" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f15b38f14804fd89d74d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1176812770355081131" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18206540224688422187" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4790523448811841825" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b13a33fae58de721d7abb41" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6281597856281530162" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b10fc80459" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12272048350225120629" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1680168904557028458" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14536827862056493345" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6581448254982872562" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15598856900459308828" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e33c688cbaf7" + } + } + ] + } + } + ] + }, + "cborHex": "bf432e0311bf1b169d9e30bdd74eb84253c5ff4c387a35514b516c2020cd70901b6e0104a7c8cdb30d474ebe8b0b6eae48bf4a425943f1088b9e66c1181bee80d01adb89b4a64a6a5b077dba885a78a4491babfcabc212c8dfdd4cd294cca44e88a39489f4314f1b32c473a857acc062ff4c74dcc2f3b0e65f5a15fa894bbf4925ecc2f03dba6a13394bfff7b964d528739d7a7c4b49766cea8b9e981ef4c51b158c8d8c5793f1e3439c800b1b5f733a2a617ccbaf449d0cacc946649044f1326849aa12debca0ebd504de1bf9e0edce4426420345c9d471a9bf4306c9b9ff42c055bf4ba44c400ff8120f0069beaa1b5a8f9e553905326a46e997276d545449278c5ff365c492092fff4af15b38f14804fd89d74dbf1b1054e0fac8286fab1bfcaa9fdf3969fd2b1b427b5bb2069be9214c5b13a33fae58de721d7abb411b572cb7f80d840f3245b10fc804591baa4f12f455963d751b175128b77ec7646a1bc9bd2febcee0e1211b5b56005161de5df21bd87a45b46607271c46e33c688cbaf7ffff", + "cborBytes": [ + 191, 67, 46, 3, 17, 191, 27, 22, 157, 158, 48, 189, 215, 78, 184, 66, 83, 197, 255, 76, 56, 122, 53, 81, 75, 81, + 108, 32, 32, 205, 112, 144, 27, 110, 1, 4, 167, 200, 205, 179, 13, 71, 78, 190, 139, 11, 110, 174, 72, 191, 74, + 66, 89, 67, 241, 8, 139, 158, 102, 193, 24, 27, 238, 128, 208, 26, 219, 137, 180, 166, 74, 106, 91, 7, 125, 186, + 136, 90, 120, 164, 73, 27, 171, 252, 171, 194, 18, 200, 223, 221, 76, 210, 148, 204, 164, 78, 136, 163, 148, 137, + 244, 49, 79, 27, 50, 196, 115, 168, 87, 172, 192, 98, 255, 76, 116, 220, 194, 243, 176, 230, 95, 90, 21, 250, 137, + 75, 191, 73, 37, 236, 194, 240, 61, 186, 106, 19, 57, 75, 255, 247, 185, 100, 213, 40, 115, 157, 122, 124, 75, 73, + 118, 108, 234, 139, 158, 152, 30, 244, 197, 27, 21, 140, 141, 140, 87, 147, 241, 227, 67, 156, 128, 11, 27, 95, + 115, 58, 42, 97, 124, 203, 175, 68, 157, 12, 172, 201, 70, 100, 144, 68, 241, 50, 104, 73, 170, 18, 222, 188, 160, + 235, 213, 4, 222, 27, 249, 224, 237, 206, 68, 38, 66, 3, 69, 201, 212, 113, 169, 191, 67, 6, 201, 185, 255, 66, + 192, 85, 191, 75, 164, 76, 64, 15, 248, 18, 15, 0, 105, 190, 170, 27, 90, 143, 158, 85, 57, 5, 50, 106, 70, 233, + 151, 39, 109, 84, 84, 73, 39, 140, 95, 243, 101, 196, 146, 9, 47, 255, 74, 241, 91, 56, 241, 72, 4, 253, 137, 215, + 77, 191, 27, 16, 84, 224, 250, 200, 40, 111, 171, 27, 252, 170, 159, 223, 57, 105, 253, 43, 27, 66, 123, 91, 178, + 6, 155, 233, 33, 76, 91, 19, 163, 63, 174, 88, 222, 114, 29, 122, 187, 65, 27, 87, 44, 183, 248, 13, 132, 15, 50, + 69, 177, 15, 200, 4, 89, 27, 170, 79, 18, 244, 85, 150, 61, 117, 27, 23, 81, 40, 183, 126, 199, 100, 106, 27, 201, + 189, 47, 235, 206, 224, 225, 33, 27, 91, 86, 0, 81, 97, 222, 93, 242, 27, 216, 122, 69, 180, 102, 7, 39, 28, 70, + 227, 60, 104, 140, 186, 247, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2900, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16368764366460656134" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "62a9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6138210333035121755" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "970767591556252844" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffefd8669f1be329887742f59a069f4262a91b552f4dc6b930cc5b1b0d78dbfb2e2c04acffffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 239, 216, 102, 159, 27, 227, 41, 136, 119, 66, 245, 154, 6, 159, 66, + 98, 169, 27, 85, 47, 77, 198, 185, 48, 204, 91, 27, 13, 120, 219, 251, 46, 44, 4, 172, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2901, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0af749ba93d80f48b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3632661101601673495" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bd6a9117a78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15557159986357807462" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5367d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70d28e9b4e3d39" + } + } + ] + } + } + ] + }, + "cborHex": "bf12bf490af749ba93d80f48b61b3269ce067658d117463bd6a9117a781bd7e622950cc7296643d5367d4770d28e9b4e3d39ffff", + "cborBytes": [ + 191, 18, 191, 73, 10, 247, 73, 186, 147, 216, 15, 72, 182, 27, 50, 105, 206, 6, 118, 88, 209, 23, 70, 59, 214, + 169, 17, 122, 120, 27, 215, 230, 34, 149, 12, 199, 41, 102, 67, 213, 54, 125, 71, 112, 210, 142, 155, 78, 61, 57, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2902, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "669ead40b25d4109fb370682" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2085065460373246253" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8740d6c0b9cf8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ee2437220" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14730215446379420085" + } + } + } + ] + }, + "cborHex": "bf4c669ead40b25d4109fb3706821b1cefa3fd32fbd12d47c8740d6c0b9cf8453ee243722041cc1bcc6c3ce78a6ad9b5ff", + "cborBytes": [ + 191, 76, 102, 158, 173, 64, 178, 93, 65, 9, 251, 55, 6, 130, 27, 28, 239, 163, 253, 50, 251, 209, 45, 71, 200, + 116, 13, 108, 11, 156, 248, 69, 62, 226, 67, 114, 32, 65, 204, 27, 204, 108, 60, 231, 138, 106, 217, 181, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2903, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8649777623714378202" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12592182682757148450" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b63edcb6cb8b936e619c235f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6169478613603771827" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13919354073685864351" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12407955575445028264" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19b8b55061d58075f6d6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "99d92e3a41edccd8ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7890fdfe" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8b2bcf0ea41fb38" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4236400466721642971" + } + } + } + ] + }, + "cborHex": "bf1b780a2eeb979e31dad8669f1baec06b6f0890af229f4cb63edcb6cb8b936e619c235f1b559e641c9d38e5b3ffff1bc12b7ac838eeaf9f1bac31e9db0f3a7da84a19b8b55061d58075f6d6bf4999d92e3a41edccd8ae447890fdfeff48a8b2bcf0ea41fb381b3acab7c7713e19dbff", + "cborBytes": [ + 191, 27, 120, 10, 46, 235, 151, 158, 49, 218, 216, 102, 159, 27, 174, 192, 107, 111, 8, 144, 175, 34, 159, 76, + 182, 62, 220, 182, 203, 139, 147, 110, 97, 156, 35, 95, 27, 85, 158, 100, 28, 157, 56, 229, 179, 255, 255, 27, + 193, 43, 122, 200, 56, 238, 175, 159, 27, 172, 49, 233, 219, 15, 58, 125, 168, 74, 25, 184, 181, 80, 97, 213, 128, + 117, 246, 214, 191, 73, 153, 217, 46, 58, 65, 237, 204, 216, 174, 68, 120, 144, 253, 254, 255, 72, 168, 178, 188, + 240, 234, 65, 251, 56, 27, 58, 202, 183, 199, 113, 62, 25, 219, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2904, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d86" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2893" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "144e96f757198ca25de7b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7819465277076618129" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9386dfd805c5f87331e349d8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14913999419788109444" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7b7ec068bd1f0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7424278255046576215" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d82ef4b2d4298c66" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12181265731928727172" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34a2d72f2f8bc6994fb430" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17122454904235842051" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4de7533d3f13cd33db784b4f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13520694528046952204" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "52162c496dadba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1704669904862895581" + } + } + } + ] + }, + "cborHex": "bf421d8680422893bf4b144e96f757198ca25de7b61b6c84523d7da73b914c9386dfd805c5f87331e349d81bcef92b745cda268447b7b7ec068bd1f01b670855bcc9b5485748d82ef4b2d4298c661ba90c8ca4e2401e84ff4b34a2d72f2f8bc6994fb430d8669f1bed9f2e04499f5a0380ff4c4de7533d3f13cd33db784b4f1bbba328099cce6f0c4752162c496dadba1b17a8343f2aa6ddddff", + "cborBytes": [ + 191, 66, 29, 134, 128, 66, 40, 147, 191, 75, 20, 78, 150, 247, 87, 25, 140, 162, 93, 231, 182, 27, 108, 132, 82, + 61, 125, 167, 59, 145, 76, 147, 134, 223, 216, 5, 197, 248, 115, 49, 227, 73, 216, 27, 206, 249, 43, 116, 92, 218, + 38, 132, 71, 183, 183, 236, 6, 139, 209, 240, 27, 103, 8, 85, 188, 201, 181, 72, 87, 72, 216, 46, 244, 178, 212, + 41, 140, 102, 27, 169, 12, 140, 164, 226, 64, 30, 132, 255, 75, 52, 162, 215, 47, 47, 139, 198, 153, 79, 180, 48, + 216, 102, 159, 27, 237, 159, 46, 4, 73, 159, 90, 3, 128, 255, 76, 77, 231, 83, 61, 63, 19, 205, 51, 219, 120, 75, + 79, 27, 187, 163, 40, 9, 156, 206, 111, 12, 71, 82, 22, 44, 73, 109, 173, 186, 27, 23, 168, 52, 63, 42, 166, 221, + 221, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2905, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "47733655608587600" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12648027018319314451" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7207103613203125069" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2780746469980671022" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ba290eb057a8aa5283408d8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6ef40d836895d79b7994ade" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c25587" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6389144803531293970" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11552907582537069839" + } + }, + { + "_tag": "ByteArray", + "bytearray": "961f2087c989bef0489eeb" + }, + { + "_tag": "ByteArray", + "bytearray": "59be3342" + } + ] + } + } + ] + }, + "cborHex": "bf1b00a99581c26175509f1baf86d18fa0773e13ff1b6404c68d2468134d1b2697322e719e8c2e4c8ba290eb057a8aa5283408d84cf6ef40d836895d79b7994ade43c25587d8669f1b58aacd59010405129f1ba0542c3c8409f50f4b961f2087c989bef0489eeb4459be3342ffffff", + "cborBytes": [ + 191, 27, 0, 169, 149, 129, 194, 97, 117, 80, 159, 27, 175, 134, 209, 143, 160, 119, 62, 19, 255, 27, 100, 4, 198, + 141, 36, 104, 19, 77, 27, 38, 151, 50, 46, 113, 158, 140, 46, 76, 139, 162, 144, 235, 5, 122, 138, 165, 40, 52, 8, + 216, 76, 246, 239, 64, 216, 54, 137, 93, 121, 183, 153, 74, 222, 67, 194, 85, 135, 216, 102, 159, 27, 88, 170, + 205, 89, 1, 4, 5, 18, 159, 27, 160, 84, 44, 60, 132, 9, 245, 15, 75, 150, 31, 32, 135, 201, 137, 190, 240, 72, + 158, 235, 68, 89, 190, 51, 66, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2906, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2802344897692028289" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7267e85136128f54" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4887635254728920144" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12285950065416374470" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6358a0daccb674ffdcc65418" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10798871992020625680" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3afe4dae62be66" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5200467753175918052" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10936583314844291985" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6458325751543694433" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17861748173262018536" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8166925938134102926" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff50df8b6601" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15164577745394910380" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7045207341210783899" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1441899020294047403" + } + }, + { + "_tag": "ByteArray", + "bytearray": "923c1ea457c489035f9080f3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13286676574492328047" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9681359103371185636" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16013625923461678160" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16893880511758552301" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7283901991008151697" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4316e6e276346b7fd7299a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11741161221217563417" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4364463350183521619" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b26e3edd6450fcd81487267e85136128f541b43d45e5e4dcb0c50d8669f1baa80767da15488c69f4c6358a0daccb674ffdcc654181b95dd4cdca34de910473afe4dae62be661b482bc5de45eca5e41b97c68c9491c21391ffff1b59a0950da8850461d8669f1bf7e1ad53f6c3d7e89f1b7156bfded968338e46ff50df8b6601ffff1bd273671d330ec4acd8669f1b61c59abfedd7d09b9f1b1402a784fa9c46ab4c923c1ea457c489035f9080f31bb863c1f2dc1e806f1b865b18cf7b6f0de4ffff1bde3bd3eefdeb845041391bea731ed15d434cedd8669f1b65159e44e0cd28919f4b4316e6e276346b7fd7299a1ba2f0fbec6143b3191b3c91b04b06e66d53ffffff", + "cborBytes": [ + 191, 27, 38, 227, 237, 214, 69, 15, 205, 129, 72, 114, 103, 232, 81, 54, 18, 143, 84, 27, 67, 212, 94, 94, 77, + 203, 12, 80, 216, 102, 159, 27, 170, 128, 118, 125, 161, 84, 136, 198, 159, 76, 99, 88, 160, 218, 204, 182, 116, + 255, 220, 198, 84, 24, 27, 149, 221, 76, 220, 163, 77, 233, 16, 71, 58, 254, 77, 174, 98, 190, 102, 27, 72, 43, + 197, 222, 69, 236, 165, 228, 27, 151, 198, 140, 148, 145, 194, 19, 145, 255, 255, 27, 89, 160, 149, 13, 168, 133, + 4, 97, 216, 102, 159, 27, 247, 225, 173, 83, 246, 195, 215, 232, 159, 27, 113, 86, 191, 222, 217, 104, 51, 142, + 70, 255, 80, 223, 139, 102, 1, 255, 255, 27, 210, 115, 103, 29, 51, 14, 196, 172, 216, 102, 159, 27, 97, 197, 154, + 191, 237, 215, 208, 155, 159, 27, 20, 2, 167, 132, 250, 156, 70, 171, 76, 146, 60, 30, 164, 87, 196, 137, 3, 95, + 144, 128, 243, 27, 184, 99, 193, 242, 220, 30, 128, 111, 27, 134, 91, 24, 207, 123, 111, 13, 228, 255, 255, 27, + 222, 59, 211, 238, 253, 235, 132, 80, 65, 57, 27, 234, 115, 30, 209, 93, 67, 76, 237, 216, 102, 159, 27, 101, 21, + 158, 68, 224, 205, 40, 145, 159, 75, 67, 22, 230, 226, 118, 52, 107, 127, 215, 41, 154, 27, 162, 240, 251, 236, + 97, 67, 179, 25, 27, 60, 145, 176, 75, 6, 230, 109, 83, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2907, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "87cecb" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "644e793eb2e0f0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f88cfc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6248925550019177990" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7145321698891128973" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6547045df80304" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12171893002492512335" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2605096329795721288" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9730987420577504709" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc1661" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "335e3eaa4892" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6829846133702538961" + } + } + ] + } + } + ] + }, + "cborHex": "bf4387cecbbf0747644e793eb2e0f00b43f88cfc131b56b8a4adf4c16e061b6329483a444be08d476547045df803041ba8eb403241a1084f1b2427294f3f25d8481bfffffffffffffffe1b870b698085511dc5ff43fc1661d8669f1bfffffffffffffff19f46335e3eaa48921b5ec87cdf5dea36d1ffffff", + "cborBytes": [ + 191, 67, 135, 206, 203, 191, 7, 71, 100, 78, 121, 62, 178, 224, 240, 11, 67, 248, 140, 252, 19, 27, 86, 184, 164, + 173, 244, 193, 110, 6, 27, 99, 41, 72, 58, 68, 75, 224, 141, 71, 101, 71, 4, 93, 248, 3, 4, 27, 168, 235, 64, 50, + 65, 161, 8, 79, 27, 36, 39, 41, 79, 63, 37, 216, 72, 27, 255, 255, 255, 255, 255, 255, 255, 254, 27, 135, 11, 105, + 128, 133, 81, 29, 197, 255, 67, 252, 22, 97, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, 70, + 51, 94, 62, 170, 72, 146, 27, 94, 200, 124, 223, 93, 234, 54, 209, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2908, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23fcf07753ce488fe96b9f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7102426876630670061" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b7decfb" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e78dab1378144" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e40" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f1289" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8415778714761824657" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa760d6b93fd7b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9212117811181993869" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af111762cd3f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ee53b1cbd75713bb9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf58d2d0ecce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4ba77ba1dd3" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f0df07708a6611a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c6c8c73ffba31321" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f93155d794a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1399586113479077846" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c371" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9706967560092594749" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ee75cbcf6652cd01e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13313953452458891091" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15266932864302117593" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15290988418502487627" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15545127607016740960" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5825654826647467174" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16579837714199170581" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20a3f7ac4ffc5c7d" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10152360669549624814" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8f13fd5b29b2c605" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5735930916598574788" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ad579b5ecb" + }, + { + "_tag": "ByteArray", + "bytearray": "21" + } + ] + } + } + ] + }, + "cborHex": "bf4b23fcf07753ce488fe96b9f1b6290e39d30c21aed444b7decfbbf470e78dab1378144428e40431f12891b74cada2701ac099147aa760d6b93fd7b1b7fd80457648d3f8d46af111762cd3f491ee53b1cbd75713bb946cf58d2d0ecce46e4ba77ba1dd3ff488f0df07708a6611a9f48c6c8c73ffba31321ff468f93155d794a1b136c5427a67d6fd642c371bf1b86b61390f18f323d491ee75cbcf6652cd01e1bb8c4aa1fe9e5d7531bd3df0a8d6a76f2d91bd43480f39573ee4b416c1bd7bb63326c59d8601b50d8e232fe5cb4a61be6176a8eac774e154820a3f7ac4ffc5c7dff41ded8669f1b8ce46e3d4c26fdee9f488f13fd5b29b2c6051b4f9a1ec74409eec445ad579b5ecb4121ffffff", + "cborBytes": [ + 191, 75, 35, 252, 240, 119, 83, 206, 72, 143, 233, 107, 159, 27, 98, 144, 227, 157, 48, 194, 26, 237, 68, 75, 125, + 236, 251, 191, 71, 14, 120, 218, 177, 55, 129, 68, 66, 142, 64, 67, 31, 18, 137, 27, 116, 202, 218, 39, 1, 172, 9, + 145, 71, 170, 118, 13, 107, 147, 253, 123, 27, 127, 216, 4, 87, 100, 141, 63, 141, 70, 175, 17, 23, 98, 205, 63, + 73, 30, 229, 59, 28, 189, 117, 113, 59, 185, 70, 207, 88, 210, 208, 236, 206, 70, 228, 186, 119, 186, 29, 211, + 255, 72, 143, 13, 240, 119, 8, 166, 97, 26, 159, 72, 198, 200, 199, 63, 251, 163, 19, 33, 255, 70, 143, 147, 21, + 93, 121, 74, 27, 19, 108, 84, 39, 166, 125, 111, 214, 66, 195, 113, 191, 27, 134, 182, 19, 144, 241, 143, 50, 61, + 73, 30, 231, 92, 188, 246, 101, 44, 208, 30, 27, 184, 196, 170, 31, 233, 229, 215, 83, 27, 211, 223, 10, 141, 106, + 118, 242, 217, 27, 212, 52, 128, 243, 149, 115, 238, 75, 65, 108, 27, 215, 187, 99, 50, 108, 89, 216, 96, 27, 80, + 216, 226, 50, 254, 92, 180, 166, 27, 230, 23, 106, 142, 172, 119, 78, 21, 72, 32, 163, 247, 172, 79, 252, 92, 125, + 255, 65, 222, 216, 102, 159, 27, 140, 228, 110, 61, 76, 38, 253, 238, 159, 72, 143, 19, 253, 91, 41, 178, 198, 5, + 27, 79, 154, 30, 199, 68, 9, 238, 196, 69, 173, 87, 155, 94, 203, 65, 33, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2909, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9561029622390924738" + } + }, + { + "_tag": "ByteArray", + "bytearray": "56b9deb8" + }, + { + "_tag": "ByteArray", + "bytearray": "1c73a70b8a4fc994" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4846892280321692061" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5150698270651272191" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16393892263675417122" + } + }, + { + "_tag": "ByteArray", + "bytearray": "24f07c6b279a64e31a44" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9813454807779778501" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7257" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7631388731789767036" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10923100995622622299" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10627048416849426291" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf0380049f1b84af99c8f99925c24456b9deb8481c73a70b8a4fc994ff0d80149f1b43439ed95928519d1b477af4c99f634bff1be382ce27be65d2224a24f07c6b279a64e31a44ff1b883065275d101fc5bf4272571b69e8239e653f717cff1b9796a67b81cd545bd8669f1b937adc3b092ff77380ffff", + "cborBytes": [ + 191, 3, 128, 4, 159, 27, 132, 175, 153, 200, 249, 153, 37, 194, 68, 86, 185, 222, 184, 72, 28, 115, 167, 11, 138, + 79, 201, 148, 255, 13, 128, 20, 159, 27, 67, 67, 158, 217, 89, 40, 81, 157, 27, 71, 122, 244, 201, 159, 99, 75, + 255, 27, 227, 130, 206, 39, 190, 101, 210, 34, 74, 36, 240, 124, 107, 39, 154, 100, 227, 26, 68, 255, 27, 136, 48, + 101, 39, 93, 16, 31, 197, 191, 66, 114, 87, 27, 105, 232, 35, 158, 101, 63, 113, 124, 255, 27, 151, 150, 166, 123, + 129, 205, 84, 91, 216, 102, 159, 27, 147, 122, 220, 59, 9, 47, 247, 115, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2910, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0407ffd2fbde8a68" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f97a55" + }, + { + "_tag": "ByteArray", + "bytearray": "48" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffdd8669f1bfffffffffffffff480ff480407ffd2fbde8a689f0843f97a55414800ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 253, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 128, + 255, 72, 4, 7, 255, 210, 251, 222, 138, 104, 159, 8, 67, 249, 122, 85, 65, 72, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2911, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1297560918729585005" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14285615959530988373" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9fe5c79a738cce9cfa97199a" + } + ] + } + } + ] + }, + "cborHex": "bf1b1201dcc7e34e716dd8669f1bc640b406d97ee3559f4c9fe5c79a738cce9cfa97199affffff", + "cborBytes": [ + 191, 27, 18, 1, 220, 199, 227, 78, 113, 109, 216, 102, 159, 27, 198, 64, 180, 6, 217, 126, 227, 85, 159, 76, 159, + 229, 199, 154, 115, 140, 206, 156, 250, 151, 25, 154, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2912, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "354f730c55e136987f" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c96c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b0ce717320586ced339d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3825" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2fb3a7b7b51fa31cf" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "67de" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21249fd7a2394ecb4e4374" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "757be7d421d9a83388a7dc99" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a43195a61ed2509" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de06da36a740" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96b3319ca74828d15c9c6d4e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e17334" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3996343509057034448" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7a9a79fa9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8121616974498291058" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f751380d" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + }, + "cborHex": "bf49354f730c55e136987fa042c96cbf4b6b0ce717320586ced339d6423825ff49d2fb3a7b7b51fa31cfbf4267de4b21249fd7a2394ecb4e43744c757be7d421d9a83388a7dc99487a43195a61ed250946de06da36a7404c96b3319ca74828d15c9c6d4e43e173341b3775dd3f79c858d045e7a9a79fa91b70b5c79baec0dd72ff44f751380da041fd0bff", + "cborBytes": [ + 191, 73, 53, 79, 115, 12, 85, 225, 54, 152, 127, 160, 66, 201, 108, 191, 75, 107, 12, 231, 23, 50, 5, 134, 206, + 211, 57, 214, 66, 56, 37, 255, 73, 210, 251, 58, 123, 123, 81, 250, 49, 207, 191, 66, 103, 222, 75, 33, 36, 159, + 215, 162, 57, 78, 203, 78, 67, 116, 76, 117, 123, 231, 212, 33, 217, 168, 51, 136, 167, 220, 153, 72, 122, 67, 25, + 90, 97, 237, 37, 9, 70, 222, 6, 218, 54, 167, 64, 76, 150, 179, 49, 156, 167, 72, 40, 209, 92, 156, 109, 78, 67, + 225, 115, 52, 27, 55, 117, 221, 63, 121, 200, 88, 208, 69, 231, 169, 167, 159, 169, 27, 112, 181, 199, 155, 174, + 192, 221, 114, 255, 68, 247, 81, 56, 13, 160, 65, 253, 11, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2913, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7487624974404991182" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12008134081680485639" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a1d34d4df28aded" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff0300" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "75c2c7cbcb13a915" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6928128075905869179" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2411738d524148d2db56f46" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "542c11d7426da2d8422e62f3" + } + } + ] + } + } + ] + }, + "cborHex": "bf141b67e9633e3ac0b8ce1ba6a5765351d3ad07481a1d34d4df28aded43ff0300bf4875c2c7cbcb13a9151b6025a7c73ac7a57b4ca2411738d524148d2db56f464c542c11d7426da2d8422e62f3ffff", + "cborBytes": [ + 191, 20, 27, 103, 233, 99, 62, 58, 192, 184, 206, 27, 166, 165, 118, 83, 81, 211, 173, 7, 72, 26, 29, 52, 212, + 223, 40, 173, 237, 67, 255, 3, 0, 191, 72, 117, 194, 199, 203, 203, 19, 169, 21, 27, 96, 37, 167, 199, 58, 199, + 165, 123, 76, 162, 65, 23, 56, 213, 36, 20, 141, 45, 181, 111, 70, 76, 84, 44, 17, 215, 66, 109, 162, 216, 66, 46, + 98, 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2914, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1598258618001151697" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7cf3cd1c8c7be96cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16822482276207020329" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1680024952980198354" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3894019366244289847" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11131480030489632319" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5293178900826477459" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67d4a415bc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12052771947890468005" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bbf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12896343402526074788" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1003100437558029180" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b162e27bec12a56d1bf49d7cf3cd1c8c7be96cf1be9757680399fc929ff1b1750a5cb282d53d2d8669f1b360a55fb717b8d379f1b9a7af61c51b05e3fffff1b4975262a745ad3934567d4a415bc1ba7440c3a70cde4a5428bbf1bb2f903ff3104e7a4d8669f1b0debba8886af6b7c80ffff", + "cborBytes": [ + 191, 27, 22, 46, 39, 190, 193, 42, 86, 209, 191, 73, 215, 207, 60, 209, 200, 199, 190, 150, 207, 27, 233, 117, + 118, 128, 57, 159, 201, 41, 255, 27, 23, 80, 165, 203, 40, 45, 83, 210, 216, 102, 159, 27, 54, 10, 85, 251, 113, + 123, 141, 55, 159, 27, 154, 122, 246, 28, 81, 176, 94, 63, 255, 255, 27, 73, 117, 38, 42, 116, 90, 211, 147, 69, + 103, 212, 164, 21, 188, 27, 167, 68, 12, 58, 112, 205, 228, 165, 66, 139, 191, 27, 178, 249, 3, 255, 49, 4, 231, + 164, 216, 102, 159, 27, 13, 235, 186, 136, 134, 175, 107, 124, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2915, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fdddec680c58c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6436694720941591293" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38fb7c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9148120906612956682" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aa0d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15335376696375483350" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f91a6dfb9f7eb2" + }, + { + "_tag": "ByteArray", + "bytearray": "1e2f2f0ac2" + }, + { + "_tag": "ByteArray", + "bytearray": "0d9764a6a86c012c612e" + }, + { + "_tag": "ByteArray", + "bytearray": "e6b5a5075c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2f308c66a98" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7517a0f49e1f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc6dcfd662b3083e96" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11440888325108888643" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8a13a5038f15effd4dd5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9720263635687379306" + } + }, + { + "_tag": "ByteArray", + "bytearray": "21bf466e766c30" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "178633088347413903" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b273ad49" + } + ] + } + } + ] + }, + "cborHex": "bf471fdddec680c58c1b5953bbbee15b0afd4338fb7c1b7ef4a77ee8fd5e0a42aa0d9f1bd4d233dae4439bd647f91a6dfb9f7eb2451e2f2f0ac24a0d9764a6a86c012c612e45e6b5a5075cff46b2f308c66a98467517a0f49e1f49bc6dcfd662b3083e96d8669f1b9ec63350b50774439f4a8a13a5038f15effd4dd51b86e55046c84b116a4721bf466e766c301b027aa1d8f0141d8f44b273ad49ffffff", + "cborBytes": [ + 191, 71, 31, 221, 222, 198, 128, 197, 140, 27, 89, 83, 187, 190, 225, 91, 10, 253, 67, 56, 251, 124, 27, 126, 244, + 167, 126, 232, 253, 94, 10, 66, 170, 13, 159, 27, 212, 210, 51, 218, 228, 67, 155, 214, 71, 249, 26, 109, 251, + 159, 126, 178, 69, 30, 47, 47, 10, 194, 74, 13, 151, 100, 166, 168, 108, 1, 44, 97, 46, 69, 230, 181, 165, 7, 92, + 255, 70, 178, 243, 8, 198, 106, 152, 70, 117, 23, 160, 244, 158, 31, 73, 188, 109, 207, 214, 98, 179, 8, 62, 150, + 216, 102, 159, 27, 158, 198, 51, 80, 181, 7, 116, 67, 159, 74, 138, 19, 165, 3, 143, 21, 239, 253, 77, 213, 27, + 134, 229, 80, 70, 200, 75, 17, 106, 71, 33, 191, 70, 110, 118, 108, 48, 27, 2, 122, 161, 216, 240, 20, 29, 143, + 68, 178, 115, 173, 73, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2916, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2067811834160107711" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11468854574994906873" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b1cb257e84d7650bfd8669f1b9f298e78ab2f5ef980ffff", + "cborBytes": [ + 191, 27, 28, 178, 87, 232, 77, 118, 80, 191, 216, 102, 159, 27, 159, 41, 142, 120, 171, 47, 94, 249, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2917, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19e3b5a6bb100793" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2585de71db9fe0e5b5ce1285" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42eb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1639106541530157137" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "870f73" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2584bc204ce802" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5470a7626c59b85b816d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2bd51140" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a756" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f078b856e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab90e8349b19c3ac1c8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7211614943288640780" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3df2c02e0e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "770174417515158209" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a135" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "230989" + } + } + ] + }, + "cborHex": "bf4819e3b5a6bb100793bf413f4c2585de71db9fe0e5b5ce12854242eb1b16bf46b714ec905143870f73472584bc204ce8024ba5470a7626c59b85b816d5442bd5114042a756451f078b856e4aab90e8349b19c3ac1c8a1b6414cd95079e450cff453df2c02e0e9f1b0ab0358d5b159ac1ff42a13543230989ff", + "cborBytes": [ + 191, 72, 25, 227, 181, 166, 187, 16, 7, 147, 191, 65, 63, 76, 37, 133, 222, 113, 219, 159, 224, 229, 181, 206, 18, + 133, 66, 66, 235, 27, 22, 191, 70, 183, 20, 236, 144, 81, 67, 135, 15, 115, 71, 37, 132, 188, 32, 76, 232, 2, 75, + 165, 71, 10, 118, 38, 197, 155, 133, 184, 22, 213, 68, 43, 213, 17, 64, 66, 167, 86, 69, 31, 7, 139, 133, 110, 74, + 171, 144, 232, 52, 155, 25, 195, 172, 28, 138, 27, 100, 20, 205, 149, 7, 158, 69, 12, 255, 69, 61, 242, 192, 46, + 14, 159, 27, 10, 176, 53, 141, 91, 21, 154, 193, 255, 66, 161, 53, 67, 35, 9, 137, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2918, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ba3ffa3d5cdc81b26e6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9317420247801028996" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f242335a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9258654251070932425" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "446262443832883019" + } + }, + { + "_tag": "ByteArray", + "bytearray": "63" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78cc7b0bc7a13b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17289197726586990216" + } + }, + { + "_tag": "ByteArray", + "bytearray": "21452ef48f4f32e48e3a25ee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18344306721065383272" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9b3250b1bf531fc79fc3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e4222aabfec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8f896b6e5e5c69fc4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac8b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cdbfc69bee5a4e88c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efe93a64863d354dc834" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb0ba4834d62e49fe0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12127918288524254699" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd6bc83a31dd3bc3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2953017889683808237" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1057045466169331518" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1a054605dc3a80889" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0cd4000f8a" + } + } + ] + }, + "cborHex": "bf4a4ba3ffa3d5cdc81b26e6d8669f1b814e20597d3661849f44f242335a1b807d58fca53e45c91b063171540941b74b4163ffff4778cc7b0bc7a13b9f1befef91baf0b56e884c21452ef48f4f32e48e3a25ee1bfe9411c53fe9b5684a9b3250b1bf531fc79fc3ff468e4222aabfec49b8f896b6e5e5c69fc442ac8bbf498cdbfc69bee5a4e88c4aefe93a64863d354dc83449bb0ba4834d62e49fe01ba84f056d4c739deb48bd6bc83a31dd3bc31b28fb3a1ff9fa1fedff41d31b0eab61404275cf3e49f1a054605dc3a80889450cd4000f8aff", + "cborBytes": [ + 191, 74, 75, 163, 255, 163, 213, 205, 200, 27, 38, 230, 216, 102, 159, 27, 129, 78, 32, 89, 125, 54, 97, 132, 159, + 68, 242, 66, 51, 90, 27, 128, 125, 88, 252, 165, 62, 69, 201, 27, 6, 49, 113, 84, 9, 65, 183, 75, 65, 99, 255, + 255, 71, 120, 204, 123, 11, 199, 161, 59, 159, 27, 239, 239, 145, 186, 240, 181, 110, 136, 76, 33, 69, 46, 244, + 143, 79, 50, 228, 142, 58, 37, 238, 27, 254, 148, 17, 197, 63, 233, 181, 104, 74, 155, 50, 80, 177, 191, 83, 31, + 199, 159, 195, 255, 70, 142, 66, 34, 170, 191, 236, 73, 184, 248, 150, 182, 229, 229, 198, 159, 196, 66, 172, 139, + 191, 73, 140, 219, 252, 105, 190, 229, 164, 232, 140, 74, 239, 233, 58, 100, 134, 61, 53, 77, 200, 52, 73, 187, + 11, 164, 131, 77, 98, 228, 159, 224, 27, 168, 79, 5, 109, 76, 115, 157, 235, 72, 189, 107, 200, 58, 49, 221, 59, + 195, 27, 40, 251, 58, 31, 249, 250, 31, 237, 255, 65, 211, 27, 14, 171, 97, 64, 66, 117, 207, 62, 73, 241, 160, + 84, 96, 93, 195, 168, 8, 137, 69, 12, 212, 0, 15, 138, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2919, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "126196e232ef27fc43" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fbcda4d05bc26a6358a6" + }, + { + "_tag": "ByteArray", + "bytearray": "1ead" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2838908663111695115" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12946608127128517867" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2316841608124477515" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c5441a7f3cecf4683eff8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c9f805b22e0df7f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a13d2fcba66c86803" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16073285474658875540" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e9c34e7f865" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb108bdd00093a12ef09eb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4c02a711ec7d42d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4297f046211ba7f" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afa9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acd1d4b522f8bc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9fd04535136" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "34c97e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "683752387713842777" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "588bb440" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0dee5f7c5f48cbb7a5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7219" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "250040588900081131" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13293431931406876085" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d192d27c8a136f095aa46e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8694178007940011546" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fef7a117a0e1bc2567089dfa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16039968632214991533" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93297e27efea7428c88e14" + } + } + ] + }, + "cborHex": "bf49126196e232ef27fc439f4afbcda4d05bc26a6358a6421ead1b2765d4634e8d3b0b1bb3ab977f5fae3ceb1b2027132add1ab04bff4b1c5441a7f3cecf4683eff841eb489c9f805b22e0df7fbf490a13d2fcba66c868031bdf0fc7fab27cf894467e9c34e7f8654bcb108bdd00093a12ef09eb48c4c02a711ec7d42d48a4297f046211ba7fff42afa947acd1d4b522f8bc46c9fd04535136bf4334c97e1b097d2d2c88023e5944588bb440490dee5f7c5f48cbb7a54272191b0378529740d19deb41981bb87bc1e8f5577db54bd192d27c8a136f095aa46e1b78a7ecd5a147161a4cfef7a117a0e1bc2567089dfa1bde996a7cd39532adff41e74b93297e27efea7428c88e14ff", + "cborBytes": [ + 191, 73, 18, 97, 150, 226, 50, 239, 39, 252, 67, 159, 74, 251, 205, 164, 208, 91, 194, 106, 99, 88, 166, 66, 30, + 173, 27, 39, 101, 212, 99, 78, 141, 59, 11, 27, 179, 171, 151, 127, 95, 174, 60, 235, 27, 32, 39, 19, 42, 221, 26, + 176, 75, 255, 75, 28, 84, 65, 167, 243, 206, 207, 70, 131, 239, 248, 65, 235, 72, 156, 159, 128, 91, 34, 224, 223, + 127, 191, 73, 10, 19, 210, 252, 186, 102, 200, 104, 3, 27, 223, 15, 199, 250, 178, 124, 248, 148, 70, 126, 156, + 52, 231, 248, 101, 75, 203, 16, 139, 221, 0, 9, 58, 18, 239, 9, 235, 72, 196, 192, 42, 113, 30, 199, 212, 45, 72, + 164, 41, 127, 4, 98, 17, 186, 127, 255, 66, 175, 169, 71, 172, 209, 212, 181, 34, 248, 188, 70, 201, 253, 4, 83, + 81, 54, 191, 67, 52, 201, 126, 27, 9, 125, 45, 44, 136, 2, 62, 89, 68, 88, 139, 180, 64, 73, 13, 238, 95, 124, 95, + 72, 203, 183, 165, 66, 114, 25, 27, 3, 120, 82, 151, 64, 209, 157, 235, 65, 152, 27, 184, 123, 193, 232, 245, 87, + 125, 181, 75, 209, 146, 210, 124, 138, 19, 111, 9, 90, 164, 110, 27, 120, 167, 236, 213, 161, 71, 22, 26, 76, 254, + 247, 161, 23, 160, 225, 188, 37, 103, 8, 157, 250, 27, 222, 153, 106, 124, 211, 149, 50, 173, 255, 65, 231, 75, + 147, 41, 126, 39, 239, 234, 116, 40, 200, 142, 20, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2920, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5537608921037393692" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3577035208577401055" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4875596083238341519" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "221fe2ce4eab3f1aa43081" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fefd9a" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4cd989f96377cf1cbf1b31a42e91fc5240df1b43a998ce41b50b8f4b221fe2ce4eab3f1aa4308143fefd9affff", + "cborBytes": [ + 191, 27, 76, 217, 137, 249, 99, 119, 207, 28, 191, 27, 49, 164, 46, 145, 252, 82, 64, 223, 27, 67, 169, 152, 206, + 65, 181, 11, 143, 75, 34, 31, 226, 206, 78, 171, 63, 26, 164, 48, 129, 67, 254, 253, 154, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2921, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b66e3de9de01a" + } + } + ] + }, + "cborHex": "bf12479b66e3de9de01aff", + "cborBytes": [191, 18, 71, 155, 102, 227, 222, 157, 224, 26, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2922, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15966191078286119812" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11949824411417565396" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3783859615247402279" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13218846507147598327" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6fabd86717e25386ee31f" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5fc05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00ac0602" + } + } + ] + }, + "cborHex": "bf41831bdd934e317541538441c7bf1ba5d64dfd42d5d8d41b3482f845b6c485271bb772c6dc9ef219f74bf6fabd86717e25386ee31fff43d5fc054400ac0602ff", + "cborBytes": [ + 191, 65, 131, 27, 221, 147, 78, 49, 117, 65, 83, 132, 65, 199, 191, 27, 165, 214, 77, 253, 66, 213, 216, 212, 27, + 52, 130, 248, 69, 182, 196, 133, 39, 27, 183, 114, 198, 220, 158, 242, 25, 247, 75, 246, 250, 189, 134, 113, 126, + 37, 56, 110, 227, 31, 255, 67, 213, 252, 5, 68, 0, 172, 6, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2923, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7a6cb5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11959617983760345365" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a534957d499ac9b3b31fd" + }, + { + "_tag": "ByteArray", + "bytearray": "b5aeabe4102d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6572419602191283024" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "59090f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + } + ] + }, + "cborHex": "bf0e9f437a6cb51ba5f919310368a9154b8a534957d499ac9b3b31fd46b5aeabe4102dff1b5b35ecce576cf350d9050a9f4359090fff1bffffffffffffffec1bfffffffffffffffeff", + "cborBytes": [ + 191, 14, 159, 67, 122, 108, 181, 27, 165, 249, 25, 49, 3, 104, 169, 21, 75, 138, 83, 73, 87, 212, 153, 172, 155, + 59, 49, 253, 70, 181, 174, 171, 228, 16, 45, 255, 27, 91, 53, 236, 206, 87, 108, 243, 80, 217, 5, 10, 159, 67, 89, + 9, 15, 255, 27, 255, 255, 255, 255, 255, 255, 255, 236, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2924, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "374d53d403055497025f1d75" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2483072893262674665" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13916401514114338979" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1e0e93a8a6e4df87e9" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3993d7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17491550105813141144" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fb07bbad798913" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a94f9524cb3e706" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18193580087619028907" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "521ed86e84" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16748786488593238102" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddca33e4387c79a1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5cb63df9c3f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb0e3238bcec" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f07ccba3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c802" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c374d53d403055497025f1d759f1b2275a5a3fa52bae91bc120fd71e07e50a3491e0e93a8a6e4df87e9ff433993d7d8669f1bf2be7825a3f046989f1bffffffffffffffee47fb07bbad798913ffff483a94f9524cb3e7061bfc7c94b22b2707ab45521ed86e841be86fa4928f76485648ddca33e4387c79a1bf465cb63df9c3f346cb0e3238bcec44f07ccba342c802ffff", + "cborBytes": [ + 191, 76, 55, 77, 83, 212, 3, 5, 84, 151, 2, 95, 29, 117, 159, 27, 34, 117, 165, 163, 250, 82, 186, 233, 27, 193, + 32, 253, 113, 224, 126, 80, 163, 73, 30, 14, 147, 168, 166, 228, 223, 135, 233, 255, 67, 57, 147, 215, 216, 102, + 159, 27, 242, 190, 120, 37, 163, 240, 70, 152, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 71, 251, 7, 187, + 173, 121, 137, 19, 255, 255, 72, 58, 148, 249, 82, 76, 179, 231, 6, 27, 252, 124, 148, 178, 43, 39, 7, 171, 69, + 82, 30, 216, 110, 132, 27, 232, 111, 164, 146, 143, 118, 72, 86, 72, 221, 202, 51, 228, 56, 124, 121, 161, 191, + 70, 92, 182, 61, 249, 195, 243, 70, 203, 14, 50, 56, 188, 236, 68, 240, 124, 203, 163, 66, 200, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2925, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18c36f71ad" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36077132706f483f126b17" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10870900542636106925" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9452a7539d7dca6ea73568" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3340672e0488f1c20ee9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f386a5773d4441b6216b5169" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84539bf64a462b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13188745477248157572" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adef7417562bae5f45" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8749169598549370910" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4e50a1d6b32e4c0ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10494692258797302752" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdff16fad163" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3972865e052b63932001" + } + } + ] + }, + "cborHex": "bf4518c36f71ada04b36077132706f483f126b171b96dd3272706d24ad4b9452a7539d7dca6ea73568bf4a3340672e0488f1c20ee94cf386a5773d4441b6216b51694784539bf64a462b1bb707d622746a878449adef7417562bae5f451b796b4b65112ea81eff49b4e50a1d6b32e4c0ec1b91a4a30190a7b3e046bdff16fad1634a3972865e052b63932001ff", + "cborBytes": [ + 191, 69, 24, 195, 111, 113, 173, 160, 75, 54, 7, 113, 50, 112, 111, 72, 63, 18, 107, 23, 27, 150, 221, 50, 114, + 112, 109, 36, 173, 75, 148, 82, 167, 83, 157, 125, 202, 110, 167, 53, 104, 191, 74, 51, 64, 103, 46, 4, 136, 241, + 194, 14, 233, 76, 243, 134, 165, 119, 61, 68, 65, 182, 33, 107, 81, 105, 71, 132, 83, 155, 246, 74, 70, 43, 27, + 183, 7, 214, 34, 116, 106, 135, 132, 73, 173, 239, 116, 23, 86, 43, 174, 95, 69, 27, 121, 107, 75, 101, 17, 46, + 168, 30, 255, 73, 180, 229, 10, 29, 107, 50, 228, 192, 236, 27, 145, 164, 163, 1, 144, 167, 179, 224, 70, 189, + 255, 22, 250, 209, 99, 74, 57, 114, 134, 94, 5, 43, 99, 147, 32, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2926, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8871893682099966011" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17819327369257195679" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01328fd307404dd7e6ced4e8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11289061521171445906" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b6517f0770bcf46bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2eaa239af" + } + } + ] + }, + "cborHex": "bf1b7b1f4c4c6e99d03b41e41bf74af7d4dcf8989f9f4c01328fd307404dd7e6ced4e81b9caacda438f47892ff498b6517f0770bcf46bc45b2eaa239afff", + "cborBytes": [ + 191, 27, 123, 31, 76, 76, 110, 153, 208, 59, 65, 228, 27, 247, 74, 247, 212, 220, 248, 152, 159, 159, 76, 1, 50, + 143, 211, 7, 64, 77, 215, 230, 206, 212, 232, 27, 156, 170, 205, 164, 56, 244, 120, 146, 255, 73, 139, 101, 23, + 240, 119, 11, 207, 70, 188, 69, 178, 234, 162, 57, 175, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2927, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30d3412187592c20" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5fe07ee01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4eeafe03" + } + } + ] + } + } + ] + }, + "cborHex": "bf4830d3412187592c20bf45f5fe07ee01444eeafe03ffff", + "cborBytes": [ + 191, 72, 48, 211, 65, 33, 135, 89, 44, 32, 191, 69, 245, 254, 7, 238, 1, 68, 78, 234, 254, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2928, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3808079893891323467" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff87695f52524e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8723492480394624745" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15985455825077405432" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9675328561240252902" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d435201a59d4cbcfee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15979341286400877962" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1054147486569470153" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b34d9047cc7b3164b47ff87695f52524e1b791012311eb67ee9d8669f1bddd7bf60da7006f89f1b8645ac1079eaa1e649d435201a59d4cbcfee1bddc2063ce0a8658a1b0ea1158dcdd818c9ffffff", + "cborBytes": [ + 191, 27, 52, 217, 4, 124, 199, 179, 22, 75, 71, 255, 135, 105, 95, 82, 82, 78, 27, 121, 16, 18, 49, 30, 182, 126, + 233, 216, 102, 159, 27, 221, 215, 191, 96, 218, 112, 6, 248, 159, 27, 134, 69, 172, 16, 121, 234, 161, 230, 73, + 212, 53, 32, 26, 89, 212, 203, 207, 238, 27, 221, 194, 6, 60, 224, 168, 101, 138, 27, 14, 161, 21, 141, 205, 216, + 24, 201, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2929, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec57c9fc1b8938a7412700" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0968683e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5196dc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "244d9a795642369fe0277b4e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4249777092224203899" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5388db7b9526f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e64e249" + } + } + ] + } + } + ] + }, + "cborHex": "bf4bec57c9fc1b8938a7412700bf440968683e435196dc4c244d9a795642369fe0277b4e1b3afa3dbfc49dbc7b475388db7b9526f2440e64e249ffff", + "cborBytes": [ + 191, 75, 236, 87, 201, 252, 27, 137, 56, 167, 65, 39, 0, 191, 68, 9, 104, 104, 62, 67, 81, 150, 220, 76, 36, 77, + 154, 121, 86, 66, 54, 159, 224, 39, 123, 78, 27, 58, 250, 61, 191, 196, 157, 188, 123, 71, 83, 136, 219, 123, 149, + 38, 242, 68, 14, 100, 226, 73, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2930, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551613" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ad1eca100fcf1ff717a0b1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15286009404957862097" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0703f8" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9591391370419460040" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12734041655207529182" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d8f680f" + }, + { + "_tag": "ByteArray", + "bytearray": "438bc106e415" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19420983495537455" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "463aaf05103f333828" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f87ce35a3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eed57aceeab2" + } + } + ] + }, + "cborHex": "bf0fd8669f1bfffffffffffffffd9f4bad1eca100fcf1ff717a0b11bd422d090a7cb28d1430703f8ffff1b851b77a24f9957c8d8669f1bb0b8676ae5ac0ade9f442d8f680f46438bc106e4151b0044ff481670b32fffff49463aaf05103f333828416d454f87ce35a346eed57aceeab2ff", + "cborBytes": [ + 191, 15, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 75, 173, 30, 202, 16, 15, 207, 31, 247, + 23, 160, 177, 27, 212, 34, 208, 144, 167, 203, 40, 209, 67, 7, 3, 248, 255, 255, 27, 133, 27, 119, 162, 79, 153, + 87, 200, 216, 102, 159, 27, 176, 184, 103, 106, 229, 172, 10, 222, 159, 68, 45, 143, 104, 15, 70, 67, 139, 193, 6, + 228, 21, 27, 0, 68, 255, 72, 22, 112, 179, 47, 255, 255, 73, 70, 58, 175, 5, 16, 63, 51, 56, 40, 65, 109, 69, 79, + 135, 206, 53, 163, 70, 238, 213, 122, 206, 234, 178, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2931, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "890145397851898118" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10503305439790891263" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9437043250151401910" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "705cfd46f2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9816027660993106568" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c00746" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "666481364666713254" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1153386254490336503" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10927201615381995190" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9114138736162120099" + } + } + } + ] + }, + "cborHex": "bf1b0c5a6e85ed6941061b91c33ca60a2a00ff1b82f71cd61f45a9b645705cfd46f21b883989266ee712889f43c007461b093fd1451e6084a61b1001a6b003b6fcf7ff1b97a537f971eb1eb61b7e7bece44a9221a3ff", + "cborBytes": [ + 191, 27, 12, 90, 110, 133, 237, 105, 65, 6, 27, 145, 195, 60, 166, 10, 42, 0, 255, 27, 130, 247, 28, 214, 31, 69, + 169, 182, 69, 112, 92, 253, 70, 242, 27, 136, 57, 137, 38, 110, 231, 18, 136, 159, 67, 192, 7, 70, 27, 9, 63, 209, + 69, 30, 96, 132, 166, 27, 16, 1, 166, 176, 3, 182, 252, 247, 255, 27, 151, 165, 55, 249, 113, 235, 30, 182, 27, + 126, 123, 236, 228, 74, 146, 33, 163, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2932, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "42458315756410807" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8471384958194727057" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8759360242367966606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e0b1c17e7103f" + } + } + ] + }, + "cborHex": "bf1b0096d79cfc6c17b71b759067bc74c8b8911b798f7fbb3a05ad8e477e0b1c17e7103fff", + "cborBytes": [ + 191, 27, 0, 150, 215, 156, 252, 108, 23, 183, 27, 117, 144, 103, 188, 116, 200, 184, 145, 27, 121, 143, 127, 187, + 58, 5, 173, 142, 71, 126, 11, 28, 23, 231, 16, 63, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2933, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15398019997339861714" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1868ecf2ae826125224e" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14153376242876010609" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4227748509048748503" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf019f1bd5b0c19af9cdc2d24a1868ecf2ae826125224eff1bc46ae4b48113d071bf0f1bfffffffffffffff11b3aabfade9189b9d701ffff", + "cborBytes": [ + 191, 1, 159, 27, 213, 176, 193, 154, 249, 205, 194, 210, 74, 24, 104, 236, 242, 174, 130, 97, 37, 34, 78, 255, 27, + 196, 106, 228, 180, 129, 19, 208, 113, 191, 15, 27, 255, 255, 255, 255, 255, 255, 255, 241, 27, 58, 171, 250, 222, + 145, 137, 185, 215, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2934, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5964825781784124864" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6c96894cf4d06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc6e4992faf7" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02bc67daa5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "57b2b4c8331c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17092624894052616467" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1ca722f6a148b337f267" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef8bad5a1822533234" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69f3c1" + } + } + ] + }, + "cborHex": "bf1b52c751720e559dc0bf47d6c96894cf4d0646bc6e4992faf7ff4502bc67daa541374657b2b4c8331c9f1bed3533c7d10149134a1ca722f6a148b337f267ff49ef8bad5a18225332344369f3c1ff", + "cborBytes": [ + 191, 27, 82, 199, 81, 114, 14, 85, 157, 192, 191, 71, 214, 201, 104, 148, 207, 77, 6, 70, 188, 110, 73, 146, 250, + 247, 255, 69, 2, 188, 103, 218, 165, 65, 55, 70, 87, 178, 180, 200, 51, 28, 159, 27, 237, 53, 51, 199, 209, 1, 73, + 19, 74, 28, 167, 34, 246, 161, 72, 179, 55, 242, 103, 255, 73, 239, 139, 173, 90, 24, 34, 83, 50, 52, 67, 105, + 243, 193, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2935, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7481310515494066736" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13064297902514527183" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55751dbebc160036c78509" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2646478421208487419" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14139605490859740054" + } + }, + { + "_tag": "ByteArray", + "bytearray": "93d4bc4b7a458397b690" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ab267a48e09414f66b88038" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16738529868225578809" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f63b709e4ead70d57b4e3b17" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "500123421315123808" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5053935064238882364" + } + }, + { + "_tag": "ByteArray", + "bytearray": "45bd6b598b00e7bbf7e1" + }, + { + "_tag": "ByteArray", + "bytearray": "ef409fed6c2a" + }, + { + "_tag": "ByteArray", + "bytearray": "02d45a97fe8f54" + }, + { + "_tag": "ByteArray", + "bytearray": "6de81c" + } + ] + } + } + ] + }, + "cborHex": "bf1b67d2f446b26b1a30bf41f91bb54db5b987425bcfff4b55751dbebc160036c78509d8669f1b24ba2e1a39de55fb9f1bc439f84772db8b964a93d4bc4b7a458397b690ffff4c5ab267a48e09414f66b880381be84b343b09da07394cf63b709e4ead70d57b4e3b17d8669f1b06f0cb9a17574a609f1b46232f29fdd97e3c4a45bd6b598b00e7bbf7e146ef409fed6c2a4702d45a97fe8f54436de81cffffff", + "cborBytes": [ + 191, 27, 103, 210, 244, 70, 178, 107, 26, 48, 191, 65, 249, 27, 181, 77, 181, 185, 135, 66, 91, 207, 255, 75, 85, + 117, 29, 190, 188, 22, 0, 54, 199, 133, 9, 216, 102, 159, 27, 36, 186, 46, 26, 57, 222, 85, 251, 159, 27, 196, 57, + 248, 71, 114, 219, 139, 150, 74, 147, 212, 188, 75, 122, 69, 131, 151, 182, 144, 255, 255, 76, 90, 178, 103, 164, + 142, 9, 65, 79, 102, 184, 128, 56, 27, 232, 75, 52, 59, 9, 218, 7, 57, 76, 246, 59, 112, 158, 78, 173, 112, 213, + 123, 78, 59, 23, 216, 102, 159, 27, 6, 240, 203, 154, 23, 87, 74, 96, 159, 27, 70, 35, 47, 41, 253, 217, 126, 60, + 74, 69, 189, 107, 89, 139, 0, 231, 187, 247, 225, 70, 239, 64, 159, 237, 108, 42, 71, 2, 212, 90, 151, 254, 143, + 84, 67, 109, 232, 28, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2936, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "763c75c8aea158ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8234530411032344849" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fb0f27d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17502615413985619628" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "56a489216de12871" + }, + { + "_tag": "ByteArray", + "bytearray": "d7d4afdabf26e6fe" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b969" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0954194" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4" + } + } + ] + }, + "cborHex": "bf48763c75c8aea158ff1b7246edc7c9bbf911447fb0f27dd8669f1bf2e5c7fc76e3aeac9f4856a489216de1287148d7d4afdabf26e6feffff42b9698044c095419441e4ff", + "cborBytes": [ + 191, 72, 118, 60, 117, 200, 174, 161, 88, 255, 27, 114, 70, 237, 199, 201, 187, 249, 17, 68, 127, 176, 242, 125, + 216, 102, 159, 27, 242, 229, 199, 252, 118, 227, 174, 172, 159, 72, 86, 164, 137, 33, 109, 225, 40, 113, 72, 215, + 212, 175, 218, 191, 38, 230, 254, 255, 255, 66, 185, 105, 128, 68, 192, 149, 65, 148, 65, 228, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2937, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7184415838404247564" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15295365918789774694" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8776392081018150854" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1642049376265170843" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1612267719851191247" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14512153896124631534" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12708175361231195853" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11216064557019382409" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4d405d1e1c2c81cbd496" + }, + { + "_tag": "ByteArray", + "bytearray": "943c4f20e570" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17617333782442361041" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c133765" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5635575324311832521" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b63b42c23eec6800c1bd4440e43cb14ad661b79cc02192ea35fc69f1b16c9bb352fefef9b1b165fecf2f48f2bcf1bc9658714704f49eeff1bb05c8229058e8ecdd8669f1b9ba7774a12fd42899f4a4d405d1e1c2c81cbd49646943c4f20e570ffff1bf47d57bc07f740d1bf448c1337651b4e3595e61e9047c9ffff", + "cborBytes": [ + 191, 27, 99, 180, 44, 35, 238, 198, 128, 12, 27, 212, 68, 14, 67, 203, 20, 173, 102, 27, 121, 204, 2, 25, 46, 163, + 95, 198, 159, 27, 22, 201, 187, 53, 47, 239, 239, 155, 27, 22, 95, 236, 242, 244, 143, 43, 207, 27, 201, 101, 135, + 20, 112, 79, 73, 238, 255, 27, 176, 92, 130, 41, 5, 142, 142, 205, 216, 102, 159, 27, 155, 167, 119, 74, 18, 253, + 66, 137, 159, 74, 77, 64, 93, 30, 28, 44, 129, 203, 212, 150, 70, 148, 60, 79, 32, 229, 112, 255, 255, 27, 244, + 125, 87, 188, 7, 247, 64, 209, 191, 68, 140, 19, 55, 101, 27, 78, 53, 149, 230, 30, 144, 71, 201, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2938, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9605875049149713100" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16574196729117603540" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f323b74a53" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12628621826543219828" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16894115335803349094" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a872433e6c384b9a73" + }, + { + "_tag": "ByteArray", + "bytearray": "55b2d6db1ad5b4bd74a5" + }, + { + "_tag": "ByteArray", + "bytearray": "55b971721a873d9cc05f6fdd" + } + ] + } + } + ] + }, + "cborHex": "bf1b854eec768d5b4acc9f1be603601c7c7ef6d445f323b74a53ff1baf41e0a455da7474d8669f1bea73f4639909a8669f49a872433e6c384b9a734a55b2d6db1ad5b4bd74a54c55b971721a873d9cc05f6fddffffff", + "cborBytes": [ + 191, 27, 133, 78, 236, 118, 141, 91, 74, 204, 159, 27, 230, 3, 96, 28, 124, 126, 246, 212, 69, 243, 35, 183, 74, + 83, 255, 27, 175, 65, 224, 164, 85, 218, 116, 116, 216, 102, 159, 27, 234, 115, 244, 99, 153, 9, 168, 102, 159, + 73, 168, 114, 67, 62, 108, 56, 75, 154, 115, 74, 85, 178, 214, 219, 26, 213, 180, 189, 116, 165, 76, 85, 185, 113, + 114, 26, 135, 61, 156, 192, 95, 111, 221, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2939, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7107283161491180862" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9a36a83c5577bbc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c117ce56fc4f7cd" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7783981513690138389" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16684916093293843563" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4401306536701958319" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16447399641523632652" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2626876892972826490" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95e7f0da14b978f626c42c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94232235a977b1" + } + } + ] + }, + "cborHex": "bf1b62a224611ecc0d3ebf48b9a36a83c5577bbc488c117ce56fc4f7cdff1b6c0641f205b54715d8669f1be78cbac94ffa546b9f1b3d1494f9dbb998afffff1be440e6d4f7e73a0c1b24748a9dca53bf7a4b95e7f0da14b978f626c42c4794232235a977b1ff", + "cborBytes": [ + 191, 27, 98, 162, 36, 97, 30, 204, 13, 62, 191, 72, 185, 163, 106, 131, 197, 87, 123, 188, 72, 140, 17, 124, 229, + 111, 196, 247, 205, 255, 27, 108, 6, 65, 242, 5, 181, 71, 21, 216, 102, 159, 27, 231, 140, 186, 201, 79, 250, 84, + 107, 159, 27, 61, 20, 148, 249, 219, 185, 152, 175, 255, 255, 27, 228, 64, 230, 212, 247, 231, 58, 12, 27, 36, + 116, 138, 157, 202, 83, 191, 122, 75, 149, 231, 240, 218, 20, 185, 120, 246, 38, 196, 44, 71, 148, 35, 34, 53, + 169, 119, 177, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2940, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1179872573691058114" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6796170643893497831" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10533174375639619369" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2951975558103257382" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2749244525674670746" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf424ee348e0ee08" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9000429160573944332" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b105fbfdac314d7c2bf141b5e50d9316635afe71bfffffffffffffffc1b922d5a49993f1729ff1b28f786213e6151269f1b262747547986aa9a48bf424ee348e0ee081b7ce7f2a29e13c20cffff", + "cborBytes": [ + 191, 27, 16, 95, 191, 218, 195, 20, 215, 194, 191, 20, 27, 94, 80, 217, 49, 102, 53, 175, 231, 27, 255, 255, 255, + 255, 255, 255, 255, 252, 27, 146, 45, 90, 73, 153, 63, 23, 41, 255, 27, 40, 247, 134, 33, 62, 97, 81, 38, 159, 27, + 38, 39, 71, 84, 121, 134, 170, 154, 72, 191, 66, 78, 227, 72, 224, 238, 8, 27, 124, 231, 242, 162, 158, 19, 194, + 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2941, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a81fecfa549ce24cbc94da18" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18283243608236666857" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4ca81fecfa549ce24cbc94da18d8669f1bfdbb213162e0afe980ffff", + "cborBytes": [ + 191, 76, 168, 31, 236, 250, 84, 156, 226, 76, 188, 148, 218, 24, 216, 102, 159, 27, 253, 187, 33, 49, 98, 224, + 175, 233, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2942, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17936688090851734538" + } + } + } + ] + }, + "cborHex": "bf42fe071bf8ebeac93632740aff", + "cborBytes": [191, 66, 254, 7, 27, 248, 235, 234, 201, 54, 50, 116, 10, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2943, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17570407470493118356" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d4cc0bf19cc1966ac60e9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c52e5bc6ab2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11492652092480346218" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b16d5aa21" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "88f7613000a12d" + }, + { + "_tag": "ByteArray", + "bytearray": "33030e7a90b71940" + } + ] + } + } + ] + }, + "cborHex": "bf1bf3d6a0809d9caf944b8d4cc0bf19cc1966ac60e9461c52e5bc6ab21b9f7e1a2ffb70d86a457b16d5aa219f4788f7613000a12d4833030e7a90b71940ffff", + "cborBytes": [ + 191, 27, 243, 214, 160, 128, 157, 156, 175, 148, 75, 141, 76, 192, 191, 25, 204, 25, 102, 172, 96, 233, 70, 28, + 82, 229, 188, 106, 178, 27, 159, 126, 26, 47, 251, 112, 216, 106, 69, 123, 22, 213, 170, 33, 159, 71, 136, 247, + 97, 48, 0, 161, 45, 72, 51, 3, 14, 122, 144, 183, 25, 64, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2944, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "725f95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa0307b7070607060e5a07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a047604" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10b8d07b45563971" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10418463477732576264" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1398507f7e41c02407c3abff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c6cf9a35a96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d68341db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ca1af" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8458289194950058852" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f004bb054b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e317" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0420410c7a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "faee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec4493c60e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c774d1033500c4fafc02f803" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c8c886f8bdd274f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ddf5b14f6a94" + } + } + ] + } + } + ] + }, + "cborHex": "bf43725f954baa0307b7070607060e5a07447a047604bf4810b8d07b455639711b9095d15567a18c084c1398507f7e41c02407c3abff41f4463c6cf9a35a9644d68341db433ca1af1b7561e1357885e364ff469f004bb054b542e31746d0420410c7a842faee45ec4493c60e4cc774d1033500c4fafc02f80341fcbf480c8c886f8bdd274f46ddf5b14f6a94ffff", + "cborBytes": [ + 191, 67, 114, 95, 149, 75, 170, 3, 7, 183, 7, 6, 7, 6, 14, 90, 7, 68, 122, 4, 118, 4, 191, 72, 16, 184, 208, 123, + 69, 86, 57, 113, 27, 144, 149, 209, 85, 103, 161, 140, 8, 76, 19, 152, 80, 127, 126, 65, 192, 36, 7, 195, 171, + 255, 65, 244, 70, 60, 108, 249, 163, 90, 150, 68, 214, 131, 65, 219, 67, 60, 161, 175, 27, 117, 97, 225, 53, 120, + 133, 227, 100, 255, 70, 159, 0, 75, 176, 84, 181, 66, 227, 23, 70, 208, 66, 4, 16, 199, 168, 66, 250, 238, 69, + 236, 68, 147, 198, 14, 76, 199, 116, 209, 3, 53, 0, 196, 250, 252, 2, 248, 3, 65, 252, 191, 72, 12, 140, 136, 111, + 139, 221, 39, 79, 70, 221, 245, 177, 79, 106, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2945, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7122953824923005677" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7534172697636698033" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8123491246022199383" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15489049742385745755" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3949091970018464609" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ff2caebc04b6229de7" + } + ] + } + } + ] + }, + "cborHex": "bf1b62d9d0c3c60bb2edd8669f1b688ec2269714f7b180ff1b70bc703f872608579f1bd6f428ad1b420f5b1b36cdfe393a4c536149ff2caebc04b6229de7ffff", + "cborBytes": [ + 191, 27, 98, 217, 208, 195, 198, 11, 178, 237, 216, 102, 159, 27, 104, 142, 194, 38, 151, 20, 247, 177, 128, 255, + 27, 112, 188, 112, 63, 135, 38, 8, 87, 159, 27, 214, 244, 40, 173, 27, 66, 15, 91, 27, 54, 205, 254, 57, 58, 76, + 83, 97, 73, 255, 44, 174, 188, 4, 182, 34, 157, 231, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2946, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4efe3f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f7f3fb50d5857e017228958" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d2c779c8c6f9d4e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b40ffa5ffefd" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e7b0369" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ee5e9ca2e53b05fdbc4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32cccc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb7455f680b2e3ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb5b05ffaad5c5fb0105028c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbfc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + } + ] + }, + "cborHex": "bf4212fe434efe3f4c1f7f3fb50d5857e017228958bf485d2c779c8c6f9d4e46b40ffa5ffefdff443e7b03694a0ee5e9ca2e53b05fdbc4418d4332cccc48cb7455f680b2e3ff4cbb5b05ffaad5c5fb0105028c42fbfc1bfffffffffffffff9ff", + "cborBytes": [ + 191, 66, 18, 254, 67, 78, 254, 63, 76, 31, 127, 63, 181, 13, 88, 87, 224, 23, 34, 137, 88, 191, 72, 93, 44, 119, + 156, 140, 111, 157, 78, 70, 180, 15, 250, 95, 254, 253, 255, 68, 62, 123, 3, 105, 74, 14, 229, 233, 202, 46, 83, + 176, 95, 219, 196, 65, 141, 67, 50, 204, 204, 72, 203, 116, 85, 246, 128, 178, 227, 255, 76, 187, 91, 5, 255, 170, + 213, 197, 251, 1, 5, 2, 140, 66, 251, 252, 27, 255, 255, 255, 255, 255, 255, 255, 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2947, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8315363571625865245" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4a21f7b07a339aea3c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3369459998218431046" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16376320648933601520" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc54b956" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11252240081316323402" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12145446062097903761" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bab6" + }, + { + "_tag": "ByteArray", + "bytearray": "e98b7977b22c09" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8755570910753726193" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11600246462629053064" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14899143422378093681" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1ead514c2ce0057db" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9865310587934218801" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ff03537055fcfda504" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12351687679351835755" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b73661b1c98fbb01dd905099f494a21f7b07a339aea3c1b2ec2ba0426b2aa461be34460dd5f94f0f044fc54b956ff1b9c27fcbcae45a04a9f1ba88d4ad81a03309142bab647e98b7977b22c091b7982095ab5381ef1ff1ba0fc5ab26ffc82881bcec46400ec71ac7149b1ead514c2ce0057dbd8669f1b88e89fb608b81a319f49ff03537055fcfda5041bab6a02809855cc6bffffff", + "cborBytes": [ + 191, 27, 115, 102, 27, 28, 152, 251, 176, 29, 217, 5, 9, 159, 73, 74, 33, 247, 176, 122, 51, 154, 234, 60, 27, 46, + 194, 186, 4, 38, 178, 170, 70, 27, 227, 68, 96, 221, 95, 148, 240, 240, 68, 252, 84, 185, 86, 255, 27, 156, 39, + 252, 188, 174, 69, 160, 74, 159, 27, 168, 141, 74, 216, 26, 3, 48, 145, 66, 186, 182, 71, 233, 139, 121, 119, 178, + 44, 9, 27, 121, 130, 9, 90, 181, 56, 30, 241, 255, 27, 160, 252, 90, 178, 111, 252, 130, 136, 27, 206, 196, 100, + 0, 236, 113, 172, 113, 73, 177, 234, 213, 20, 194, 206, 0, 87, 219, 216, 102, 159, 27, 136, 232, 159, 182, 8, 184, + 26, 49, 159, 73, 255, 3, 83, 112, 85, 252, 253, 165, 4, 27, 171, 106, 2, 128, 152, 85, 204, 107, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2948, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7722819876691740110" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10324183751426881847" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "085b960b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4317958664231696283" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6261751122850753883" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14121457575880660841" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c0a1d658013a208979d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16680634343269313171" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "722763609937106482" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa1f465eabf0cc" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12412333957998816064" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b6b2cf7c2b68985ced8669f1b8f46de6c0ba8b93780ff44085b960bbf1b3bec78871059b79b1b56e63578556c2d5b1bc3f97ed8b91d97694a0c0a1d658013a208979d1be77d848eb2bfaa931b0a07c5ac82e1563241224165ff47fa1f465eabf0ccd8669f1bac4177f8b009ab4080ffff", + "cborBytes": [ + 191, 27, 107, 44, 247, 194, 182, 137, 133, 206, 216, 102, 159, 27, 143, 70, 222, 108, 11, 168, 185, 55, 128, 255, + 68, 8, 91, 150, 11, 191, 27, 59, 236, 120, 135, 16, 89, 183, 155, 27, 86, 230, 53, 120, 85, 108, 45, 91, 27, 195, + 249, 126, 216, 185, 29, 151, 105, 74, 12, 10, 29, 101, 128, 19, 162, 8, 151, 157, 27, 231, 125, 132, 142, 178, + 191, 170, 147, 27, 10, 7, 197, 172, 130, 225, 86, 50, 65, 34, 65, 101, 255, 71, 250, 31, 70, 94, 171, 240, 204, + 216, 102, 159, 27, 172, 65, 119, 248, 176, 9, 171, 64, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2949, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "726a2363557f90" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12694065872529651860" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1947cac" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "72474e960cc46c0844" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11126359602609094715" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16939805862410817697" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28b2ecf736ce0548ed7a9a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7140338388776537948" + } + } + ] + } + } + ] + }, + "cborHex": "bf47726a2363557f90d8669f1bb02a61a7af89f89480ff44e1947cac9f4972474e960cc46c08441b9a68c51bccc5803b1beb1647ae511390a14b28b2ecf736ce0548ed7a9a1b631793eef71c4f5cffff", + "cborBytes": [ + 191, 71, 114, 106, 35, 99, 85, 127, 144, 216, 102, 159, 27, 176, 42, 97, 167, 175, 137, 248, 148, 128, 255, 68, + 225, 148, 124, 172, 159, 73, 114, 71, 78, 150, 12, 196, 108, 8, 68, 27, 154, 104, 197, 27, 204, 197, 128, 59, 27, + 235, 22, 71, 174, 81, 19, 144, 161, 75, 40, 178, 236, 247, 54, 206, 5, 72, 237, 122, 154, 27, 99, 23, 147, 238, + 247, 28, 79, 92, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2950, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "723012410186026385" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8884447263386322774" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "40" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04fe" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf0d1b0a08a7f4d5564d911bfffffffffffffff0d8669f1b7b4be5b6d7d547569f4140ffff4204fea0ff", + "cborBytes": [ + 191, 13, 27, 10, 8, 167, 244, 213, 86, 77, 145, 27, 255, 255, 255, 255, 255, 255, 255, 240, 216, 102, 159, 27, + 123, 75, 229, 182, 215, 213, 71, 86, 159, 65, 64, 255, 255, 66, 4, 254, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2951, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12618926290374152295" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9" + } + } + ] + }, + "cborHex": "bf1baf1f6e9a6896d06741a9ff", + "cborBytes": [191, 27, 175, 31, 110, 154, 104, 150, 208, 103, 65, 169, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2952, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7496830899507759982" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5bf45d600f32c42989190a3a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7765292334468711878" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4abf22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5f1492a4fe3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d685d506bbe73bb359e69" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "721217" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a90cce4922559fb104277" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bcee043453d0ad656f154cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0bfbed601875285a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c94446d62172961de63e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0883326aeca555022" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5248045896d1290fd05e9e0f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0a88f3c85" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55c0cc77504d3904a218" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68a38fb3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d55eefea2bd6fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb5db579396082138e54" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4669076326888478512" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b680a17fbb2550b6e4c5bf45d600f32c42989190a3a1b6bc3dc3c651245c6bf434abf2246c5f1492a4fe34b5d685d506bbe73bb359e69437212174b6a90cce4922559fb10427741264c6bcee043453d0ad656f154cc480bfbed601875285a4ac94446d62172961de63e49f0883326aeca555022ff4c5248045896d1290fd05e9e0fbf411c45c0a88f3c854a55c0cc77504d3904a2184468a38fb3416b47d55eefea2bd6fb4afb5db579396082138e541b40cbe42e755f9730ffff", + "cborBytes": [ + 191, 27, 104, 10, 23, 251, 178, 85, 11, 110, 76, 91, 244, 93, 96, 15, 50, 196, 41, 137, 25, 10, 58, 27, 107, 195, + 220, 60, 101, 18, 69, 198, 191, 67, 74, 191, 34, 70, 197, 241, 73, 42, 79, 227, 75, 93, 104, 93, 80, 107, 190, + 115, 187, 53, 158, 105, 67, 114, 18, 23, 75, 106, 144, 204, 228, 146, 37, 89, 251, 16, 66, 119, 65, 38, 76, 107, + 206, 224, 67, 69, 61, 10, 214, 86, 241, 84, 204, 72, 11, 251, 237, 96, 24, 117, 40, 90, 74, 201, 68, 70, 214, 33, + 114, 150, 29, 230, 62, 73, 240, 136, 51, 38, 174, 202, 85, 80, 34, 255, 76, 82, 72, 4, 88, 150, 209, 41, 15, 208, + 94, 158, 15, 191, 65, 28, 69, 192, 168, 143, 60, 133, 74, 85, 192, 204, 119, 80, 77, 57, 4, 162, 24, 68, 104, 163, + 143, 179, 65, 107, 71, 213, 94, 239, 234, 43, 214, 251, 74, 251, 93, 181, 121, 57, 96, 130, 19, 142, 84, 27, 64, + 203, 228, 46, 117, 95, 151, 48, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2953, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4954388715299715699" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b44c186497ea4ba7380ff", + "cborBytes": [191, 27, 68, 193, 134, 73, 126, 164, 186, 115, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2954, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12983962472078481520" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16865276678426630465" + } + } + } + ] + }, + "cborHex": "bf1bb4304d138d3d98701bea0d7fc8704c9941ff", + "cborBytes": [191, 27, 180, 48, 77, 19, 141, 61, 152, 112, 27, 234, 13, 127, 200, 112, 76, 153, 65, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2955, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09a0c24f4d1672388f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17718798790485819677" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01fb5d799a45c20eab0e97d3" + }, + { + "_tag": "ByteArray", + "bytearray": "e128d51d64" + }, + { + "_tag": "ByteArray", + "bytearray": "1539134de765a655" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10677329638638386951" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "556e894a30ab59725a3da2" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aaeba216a7a8527594be0f" + }, + { + "_tag": "ByteArray", + "bytearray": "0eeea0e40a01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17960862402255870368" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14116946493286684262" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf9244" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99e1ae2431e2c4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3090f3c8f07" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4909a0c24f4d1672388f9f1bf5e5d19f2987411d4c01fb5d799a45c20eab0e97d345e128d51d64481539134de765a6551b942d7ebc44ca7f07ff4b556e894a30ab59725a3da29f4baaeba216a7a8527594be0f460eeea0e40a011bf941cd31b22159a01bc3e9780a758c9666ff43cf92444799e1ae2431e2c446d3090f3c8f07a0ff", + "cborBytes": [ + 191, 73, 9, 160, 194, 79, 77, 22, 114, 56, 143, 159, 27, 245, 229, 209, 159, 41, 135, 65, 29, 76, 1, 251, 93, 121, + 154, 69, 194, 14, 171, 14, 151, 211, 69, 225, 40, 213, 29, 100, 72, 21, 57, 19, 77, 231, 101, 166, 85, 27, 148, + 45, 126, 188, 68, 202, 127, 7, 255, 75, 85, 110, 137, 74, 48, 171, 89, 114, 90, 61, 162, 159, 75, 170, 235, 162, + 22, 167, 168, 82, 117, 148, 190, 15, 70, 14, 238, 160, 228, 10, 1, 27, 249, 65, 205, 49, 178, 33, 89, 160, 27, + 195, 233, 120, 10, 117, 140, 150, 102, 255, 67, 207, 146, 68, 71, 153, 225, 174, 36, 49, 226, 196, 70, 211, 9, 15, + 60, 143, 7, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2956, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "76eacc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1be3c9448f3bd6b52e70e3ee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7a66e2ab40303dc319a9cad" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff593003c23d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7615739590447910331" + } + } + ] + } + } + ] + }, + "cborHex": "bf4376eacc4c1be3c9448f3bd6b52e70e3ee4ca7a66e2ab40303dc319a9cad8046ff593003c23d9f1b69b08acebe86cdbbffff", + "cborBytes": [ + 191, 67, 118, 234, 204, 76, 27, 227, 201, 68, 143, 59, 214, 181, 46, 112, 227, 238, 76, 167, 166, 110, 42, 180, 3, + 3, 220, 49, 154, 156, 173, 128, 70, 255, 89, 48, 3, 194, 61, 159, 27, 105, 176, 138, 206, 190, 134, 205, 187, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2957, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + } + ] + }, + "cborHex": "bf1311ff", + "cborBytes": [191, 19, 17, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2958, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "046d4303" + } + } + ] + }, + "cborHex": "bf0744046d4303ff", + "cborBytes": [191, 7, 68, 4, 109, 67, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2959, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12585207094431648046" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e93b297e1b85" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "722381156242623225" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4057202841955842310" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51b28763e4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6de135635629b85ba931babe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47" + } + } + ] + } + } + ] + }, + "cborHex": "bf1baea7a32c5053092e9f46e93b297e1b851b0a0669d592470af91b384e147d207bb906ff4551b28763e4bf4c6de135635629b85ba931babe4147ffff", + "cborBytes": [ + 191, 27, 174, 167, 163, 44, 80, 83, 9, 46, 159, 70, 233, 59, 41, 126, 27, 133, 27, 10, 6, 105, 213, 146, 71, 10, + 249, 27, 56, 78, 20, 125, 32, 123, 185, 6, 255, 69, 81, 178, 135, 99, 228, 191, 76, 109, 225, 53, 99, 86, 41, 184, + 91, 169, 49, 186, 190, 65, 71, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2960, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9fa906fd1dafd622" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1234382748140596504" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0992d23f8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c0f54" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba2d1d0c7c2c31905d0b17" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2150072273601551979" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17131674225306502109" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12002921515999039196" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e343bd9de7c9bc0f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5920333977745502132" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5427264499150211656" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7776422261928738841" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d86c79" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17410401466539826842" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0f1fd" + } + } + ] + } + } + ] + }, + "cborHex": "bf489fa906fd1dafd622d8669f1b11216891c3ca6d1880ff45a0992d23f8431c0f544bba2d1d0c7c2c31905d0b17bf1b1dd697575d6fde6b417b1bedbfeef0bf1c03dd1ba692f1864c040edcff48e343bd9de7c9bc0fbf1b52294062af322fb41b4b51844e9defca481b6beb66d891b3c01943d86c791bf19e2be3ba0bde9a43a0f1fdffff", + "cborBytes": [ + 191, 72, 159, 169, 6, 253, 29, 175, 214, 34, 216, 102, 159, 27, 17, 33, 104, 145, 195, 202, 109, 24, 128, 255, 69, + 160, 153, 45, 35, 248, 67, 28, 15, 84, 75, 186, 45, 29, 12, 124, 44, 49, 144, 93, 11, 23, 191, 27, 29, 214, 151, + 87, 93, 111, 222, 107, 65, 123, 27, 237, 191, 238, 240, 191, 28, 3, 221, 27, 166, 146, 241, 134, 76, 4, 14, 220, + 255, 72, 227, 67, 189, 157, 231, 201, 188, 15, 191, 27, 82, 41, 64, 98, 175, 50, 47, 180, 27, 75, 81, 132, 78, + 157, 239, 202, 72, 27, 107, 235, 102, 216, 145, 179, 192, 25, 67, 216, 108, 121, 27, 241, 158, 43, 227, 186, 11, + 222, 154, 67, 160, 241, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2961, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48dd1dc48a056219b49e17" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14523586897497199390" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14969315938341249765" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5ab5b54effb603fc724732" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1346005545090201688" + } + }, + { + "_tag": "ByteArray", + "bytearray": "081331f02a3f8495cf81f0" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6896ee4455361df1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11979299499350089758" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8305902380304438092" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16286738062853580899" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8401490500576812294" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91db80" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "461c6c" + } + } + ] + }, + "cborHex": "bf4b48dd1dc48a056219b49e17d8669f1bc98e255581d6931e9f1bcfbdb188fb6c62e54b5ab5b54effb603fc7247321b12adf8e96cceb8584b081331f02a3f8495cf81f0ffff486896ee4455361df19f1ba63f056cf4c6e01e1b73447e35551e134c1be2061dfa3238a8631b74981718e6b31d06ff4391db8043461c6cff", + "cborBytes": [ + 191, 75, 72, 221, 29, 196, 138, 5, 98, 25, 180, 158, 23, 216, 102, 159, 27, 201, 142, 37, 85, 129, 214, 147, 30, + 159, 27, 207, 189, 177, 136, 251, 108, 98, 229, 75, 90, 181, 181, 78, 255, 182, 3, 252, 114, 71, 50, 27, 18, 173, + 248, 233, 108, 206, 184, 88, 75, 8, 19, 49, 240, 42, 63, 132, 149, 207, 129, 240, 255, 255, 72, 104, 150, 238, 68, + 85, 54, 29, 241, 159, 27, 166, 63, 5, 108, 244, 198, 224, 30, 27, 115, 68, 126, 53, 85, 30, 19, 76, 27, 226, 6, + 29, 250, 50, 56, 168, 99, 27, 116, 152, 23, 24, 230, 179, 29, 6, 255, 67, 145, 219, 128, 67, 70, 28, 108, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2962, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "567646333926884099" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11744271575423386811" + } + } + } + ] + }, + "cborHex": "bf1b07e0af554bc3c3031ba2fc08c626d404bbff", + "cborBytes": [191, 27, 7, 224, 175, 85, 75, 195, 195, 3, 27, 162, 252, 8, 198, 38, 212, 4, 187, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2963, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16597491814444764011" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2012536839915564723" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7312f8" + }, + { + "_tag": "ByteArray", + "bytearray": "1b051848" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3916625701489249502" + } + } + ] + } + } + ] + }, + "cborHex": "bf1be65622de326f0b6bd8669f1b1bedf797d08deeb39f437312f8441b0518481b365aa653076e8cdeffffff", + "cborBytes": [ + 191, 27, 230, 86, 34, 222, 50, 111, 11, 107, 216, 102, 159, 27, 27, 237, 247, 151, 208, 141, 238, 179, 159, 67, + 115, 18, 248, 68, 27, 5, 24, 72, 27, 54, 90, 166, 83, 7, 110, 140, 222, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2964, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17cf06" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd950500" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8d4e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4317cf06bf0044fd95050043d8d4e306ffff", + "cborBytes": [191, 67, 23, 207, 6, 191, 0, 68, 253, 149, 5, 0, 67, 216, 212, 227, 6, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2965, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5002128424426185613" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16108877270359208117" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2a7fd7c42f3cdfa1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16416099739699879486" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b0828c9ab62e7a328d0" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6457909691567018103" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5977263971847982063" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "066618f0332d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4050239030761599070" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11299065388118940704" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16910746755209759986" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4ba7a9c47a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11565528277359926990" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "247763404685111917" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12087344916711916970" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12794198849495108297" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7657102893364896424" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4a364b2c83" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4209041634904028302" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b456b214cb2cea38dd8669f1bdf8e3a87661ff0b59f482a7fd7c42f3cdfa11be3d1b3bcae319e3e4a8b0828c9ab62e7a328d0ffff1b599f1aa625679077d8669f1b52f381e9dabd4bef9f46066618f0332d1b383556f07bf7b05e1b9cce581b00bd9c201beaaf0a93aede0cf2454ba7a9c47affff1ba08102b103c61ece1b03703b80fc98f26d1ba7bee029063cc5aaa01bb18e201129de0ac9d8669f1b6a437e832fa162a89f454a364b2c831b3a6985110548b48effffff", + "cborBytes": [ + 191, 27, 69, 107, 33, 76, 178, 206, 163, 141, 216, 102, 159, 27, 223, 142, 58, 135, 102, 31, 240, 181, 159, 72, + 42, 127, 215, 196, 47, 60, 223, 161, 27, 227, 209, 179, 188, 174, 49, 158, 62, 74, 139, 8, 40, 201, 171, 98, 231, + 163, 40, 208, 255, 255, 27, 89, 159, 26, 166, 37, 103, 144, 119, 216, 102, 159, 27, 82, 243, 129, 233, 218, 189, + 75, 239, 159, 70, 6, 102, 24, 240, 51, 45, 27, 56, 53, 86, 240, 123, 247, 176, 94, 27, 156, 206, 88, 27, 0, 189, + 156, 32, 27, 234, 175, 10, 147, 174, 222, 12, 242, 69, 75, 167, 169, 196, 122, 255, 255, 27, 160, 129, 2, 177, 3, + 198, 30, 206, 27, 3, 112, 59, 128, 252, 152, 242, 109, 27, 167, 190, 224, 41, 6, 60, 197, 170, 160, 27, 177, 142, + 32, 17, 41, 222, 10, 201, 216, 102, 159, 27, 106, 67, 126, 131, 47, 161, 98, 168, 159, 69, 74, 54, 75, 44, 131, + 27, 58, 105, 133, 17, 5, 72, 180, 142, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2966, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7f568b257b1864db2506d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "185823d66fc9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "788066378887500381" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18013496793188160718" + } + } + ] + } + } + ] + }, + "cborHex": "bf4be7f568b257b1864db2506d9f46185823d66fc91b0aefc6323d04925d1bf9fccbe4d09e54ceffff", + "cborBytes": [ + 191, 75, 231, 245, 104, 178, 87, 177, 134, 77, 178, 80, 109, 159, 70, 24, 88, 35, 214, 111, 201, 27, 10, 239, 198, + 50, 61, 4, 146, 93, 27, 249, 252, 203, 228, 208, 158, 84, 206, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2967, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4498918834256814757" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10061518600073535612" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8117134209853940449" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4344736048869777935" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8183516788018723737" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb2941f86fa8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10306611518692398839" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "33f7026a47af250686" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7755397708612836966" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16655206159220561937" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e8d2401e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15666854871347151215" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10987935034991231934" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10439415451977047457" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "97b4a8eedf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3675847245582942232" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "919445780677548210" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14665903112708719269" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8307724e1f10053e15b185" + } + } + ] + }, + "cborHex": "bf1b3e6f5ed7ed3122a51b8ba1b1dbca5e607c1b70a5da8eb483e2e11b3c4b9a6ac3b7a20f1b7191b1291b4d3b9946eb2941f86fa81b8f087091c99c16f79f4933f7026a47af2506861b6ba0b52049bf1e661be7232dc23d3d581144e8d2401e1bd96bd97fba3ec16fff1b987cfcb29fb8c3bed8669f1b90e0410b0dd0dda19f4597b4a8eedf1b33033b982991c0181b0cc28710eb8458b2ffff1bcb87c12d7f4c82a54b8307724e1f10053e15b185ff", + "cborBytes": [ + 191, 27, 62, 111, 94, 215, 237, 49, 34, 165, 27, 139, 161, 177, 219, 202, 94, 96, 124, 27, 112, 165, 218, 142, + 180, 131, 226, 225, 27, 60, 75, 154, 106, 195, 183, 162, 15, 27, 113, 145, 177, 41, 27, 77, 59, 153, 70, 235, 41, + 65, 248, 111, 168, 27, 143, 8, 112, 145, 201, 156, 22, 247, 159, 73, 51, 247, 2, 106, 71, 175, 37, 6, 134, 27, + 107, 160, 181, 32, 73, 191, 30, 102, 27, 231, 35, 45, 194, 61, 61, 88, 17, 68, 232, 210, 64, 30, 27, 217, 107, + 217, 127, 186, 62, 193, 111, 255, 27, 152, 124, 252, 178, 159, 184, 195, 190, 216, 102, 159, 27, 144, 224, 65, 11, + 13, 208, 221, 161, 159, 69, 151, 180, 168, 238, 223, 27, 51, 3, 59, 152, 41, 145, 192, 24, 27, 12, 194, 135, 16, + 235, 132, 88, 178, 255, 255, 27, 203, 135, 193, 45, 127, 76, 130, 165, 75, 131, 7, 114, 78, 31, 16, 5, 62, 21, + 177, 133, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2968, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17957168908074670500" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c48ead7c6c2b" + }, + { + "_tag": "ByteArray", + "bytearray": "7f345a870a6a" + }, + { + "_tag": "ByteArray", + "bytearray": "22" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1130107237279290635" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05e0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6897113148186901471" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04c58ddd6b6a51b4dbe817cb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10523582005542604553" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed99f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15656897222148774477" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6c650dc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11841235780940138857" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a8f425164f6ab27034fcfe6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11921484219596380238" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "06f8f98b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + } + } + ] + }, + "cborHex": "bf02d9050c9f1bf934adfb117ad9a446c48ead7c6c2b467f345a870a6a4122ff03bf1b0faef28b7421550b4205e01b5fb777dda55b3bdf4c04c58ddd6b6a51b4dbe817cb1b920b4613e50f4f0943ed99f91bd9487911dafa5a4d44e6c650dc1bfffffffffffffff31ba454853488950969ff0a4c1a8f425164f6ab27034fcfe61ba5719ebc2877984e9f4406f8f98b03ffff", + "cborBytes": [ + 191, 2, 217, 5, 12, 159, 27, 249, 52, 173, 251, 17, 122, 217, 164, 70, 196, 142, 173, 124, 108, 43, 70, 127, 52, + 90, 135, 10, 106, 65, 34, 255, 3, 191, 27, 15, 174, 242, 139, 116, 33, 85, 11, 66, 5, 224, 27, 95, 183, 119, 221, + 165, 91, 59, 223, 76, 4, 197, 141, 221, 107, 106, 81, 180, 219, 232, 23, 203, 27, 146, 11, 70, 19, 229, 15, 79, 9, + 67, 237, 153, 249, 27, 217, 72, 121, 17, 218, 250, 90, 77, 68, 230, 198, 80, 220, 27, 255, 255, 255, 255, 255, + 255, 255, 243, 27, 164, 84, 133, 52, 136, 149, 9, 105, 255, 10, 76, 26, 143, 66, 81, 100, 246, 171, 39, 3, 79, + 207, 230, 27, 165, 113, 158, 188, 40, 119, 152, 78, 159, 68, 6, 248, 249, 139, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2969, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15205012265954022448" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb96" + } + } + ] + }, + "cborHex": "bf1bd3030e18a5a5943042cb96ff", + "cborBytes": [191, 27, 211, 3, 14, 24, 165, 165, 148, 48, 66, 203, 150, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2970, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0a" + } + ] + } + } + ] + }, + "cborHex": "bf0ad8669f1bfffffffffffffff29f410affffff", + "cborBytes": [191, 10, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 65, 10, 255, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2971, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ffc0002" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b190859b36430d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a7c14bf" + } + } + ] + }, + "cborHex": "bf448ffc000247b190859b36430d41f2445a7c14bfff", + "cborBytes": [191, 68, 143, 252, 0, 2, 71, 177, 144, 133, 155, 54, 67, 13, 65, 242, 68, 90, 124, 20, 191, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2972, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5adb86a99" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfb4230d5ed00bf296" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6289950097390596027" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "696a107a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2375526544766790243" + } + } + ] + } + } + ] + }, + "cborHex": "bf45a5adb86a998049dfb4230d5ed00bf296d8669f1b574a6449b9e66fbb9f44696a107a1b20f790ce6f55ea63ffffff", + "cborBytes": [ + 191, 69, 165, 173, 184, 106, 153, 128, 73, 223, 180, 35, 13, 94, 208, 11, 242, 150, 216, 102, 159, 27, 87, 74, + 100, 73, 185, 230, 111, 187, 159, 68, 105, 106, 16, 122, 27, 32, 247, 144, 206, 111, 85, 234, 99, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2973, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "194403787060049953" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15253263924706551526" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c857b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17231063893067476472" + } + } + ] + } + } + ] + }, + "cborHex": "bf41fdd8669f1b02b2a936deb478219f1bd3ae7ab9696a26e6430c857b1bef2109511058adf8ffffff", + "cborBytes": [ + 191, 65, 253, 216, 102, 159, 27, 2, 178, 169, 54, 222, 180, 120, 33, 159, 27, 211, 174, 122, 185, 105, 106, 38, + 230, 67, 12, 133, 123, 27, 239, 33, 9, 81, 16, 88, 173, 248, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2974, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f2dc007fb8902e9737e2c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab00060107f9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11166883046783236016" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9929752853422450799" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "239f" + } + } + ] + }, + "cborHex": "bf4b5f2dc007fb8902e9737e2cd9050880416e8046ab00060107f9d8669f1b9af8bcf763d8b7b09f1b89cd919c2faaa86fffff41cc42239fff", + "cborBytes": [ + 191, 75, 95, 45, 192, 7, 251, 137, 2, 233, 115, 126, 44, 217, 5, 8, 128, 65, 110, 128, 70, 171, 0, 6, 1, 7, 249, + 216, 102, 159, 27, 154, 248, 188, 247, 99, 216, 183, 176, 159, 27, 137, 205, 145, 156, 47, 170, 168, 111, 255, + 255, 65, 204, 66, 35, 159, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2975, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7853535237" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "effe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5418665677443846016" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf457853535237bf42effe1b4b32f7b96ca44f80ffff", + "cborBytes": [191, 69, 120, 83, 83, 82, 55, 191, 66, 239, 254, 27, 75, 50, 247, 185, 108, 164, 79, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2976, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7841483506599374408" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "635eb12f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17244664908947647503" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2550c1f3cac39" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14270144902012050608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c96665a0e13aeaee0162" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14441281757718221536" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "864c2cce25e0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ec9cac93e98c5" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6cd28bb40af0ae48bf44635eb12f1bef515b5e5877ec0f47b2550c1f3cac391bc609bd2e91c79cb04ac96665a0e13aeaee01621bc869bd3ed61f92e0ff419cbf46864c2cce25e0475ec9cac93e98c5ffff", + "cborBytes": [ + 191, 27, 108, 210, 139, 180, 10, 240, 174, 72, 191, 68, 99, 94, 177, 47, 27, 239, 81, 91, 94, 88, 119, 236, 15, + 71, 178, 85, 12, 31, 60, 172, 57, 27, 198, 9, 189, 46, 145, 199, 156, 176, 74, 201, 102, 101, 160, 225, 58, 234, + 238, 1, 98, 27, 200, 105, 189, 62, 214, 31, 146, 224, 255, 65, 156, 191, 70, 134, 76, 44, 206, 37, 224, 71, 94, + 201, 202, 201, 62, 152, 197, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2977, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2009199467409963235" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14465866728744012524" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13270946002416036409" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15710220497230196286" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4615818507669233521" + } + }, + { + "_tag": "ByteArray", + "bytearray": "89890a4489f9e0ce" + }, + { + "_tag": "ByteArray", + "bytearray": "82aee1b5b4962c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16961075086550477908" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5501471428463994315" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17574586912866822972" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2b16dd" + }, + { + "_tag": "ByteArray", + "bytearray": "24b2f730d23cf3532020" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2562258387846475269" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7951419714999865482" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1be21c4539dff8e31bc8c1152576edcaec1bb82bdf13a365ea399f1bda05ea4e50776e3e41ce1b400eae7a214c5f714889890a4489f9e0ce4782aee1b5b4962cff1beb61d7ed7691ac541b4c59271dbb8ea5cb1bf3e579aedfa7eb3c9f432b16dd4a24b2f730d23cf35320201b238ef86da65aae051b6e591e1a349ad08affff", + "cborBytes": [ + 191, 27, 27, 226, 28, 69, 57, 223, 248, 227, 27, 200, 193, 21, 37, 118, 237, 202, 236, 27, 184, 43, 223, 19, 163, + 101, 234, 57, 159, 27, 218, 5, 234, 78, 80, 119, 110, 62, 65, 206, 27, 64, 14, 174, 122, 33, 76, 95, 113, 72, 137, + 137, 10, 68, 137, 249, 224, 206, 71, 130, 174, 225, 181, 180, 150, 44, 255, 27, 235, 97, 215, 237, 118, 145, 172, + 84, 27, 76, 89, 39, 29, 187, 142, 165, 203, 27, 243, 229, 121, 174, 223, 167, 235, 60, 159, 67, 43, 22, 221, 74, + 36, 178, 247, 48, 210, 60, 243, 83, 32, 32, 27, 35, 142, 248, 109, 166, 90, 174, 5, 27, 110, 89, 30, 26, 52, 154, + 208, 138, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2978, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a49a962" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9035b5809" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6aed" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03a3c8df6c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18177406555909643624" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b32ca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13233844160403648674" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e839f07c70eefbf30ef47d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34cbe5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "599c3b66a17996ba8242" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48d49cf8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8721ccda3474" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1159690604704338208" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92e376ee2cb7b202c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba4f502edf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3298002521064848899" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e32199" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f80fda2c00e2f992384df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8897e5a45eb69d07dc003" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "42926205e56dc3" + } + } + ] + }, + "cborHex": "bf444a49a96245b9035b5809426aedbf4503a3c8df6c1bfc431ef45ed9dd68430b32ca1bb7a80f25e1bcb0a24c4e839f07c70eefbf30ef47d44334cbe54a599c3b66a17996ba82424448d49cf8468721ccda34741b10180c75eec29120ff4992e376ee2cb7b202c0419345ba4f502edf1b2dc4dbd1c069be0343e321994b6f80fda2c00e2f992384df4be8897e5a45eb69d07dc0034742926205e56dc3ff", + "cborBytes": [ + 191, 68, 74, 73, 169, 98, 69, 185, 3, 91, 88, 9, 66, 106, 237, 191, 69, 3, 163, 200, 223, 108, 27, 252, 67, 30, + 244, 94, 217, 221, 104, 67, 11, 50, 202, 27, 183, 168, 15, 37, 225, 188, 176, 162, 76, 78, 131, 159, 7, 199, 14, + 239, 191, 48, 239, 71, 212, 67, 52, 203, 229, 74, 89, 156, 59, 102, 161, 121, 150, 186, 130, 66, 68, 72, 212, 156, + 248, 70, 135, 33, 204, 218, 52, 116, 27, 16, 24, 12, 117, 238, 194, 145, 32, 255, 73, 146, 227, 118, 238, 44, 183, + 178, 2, 192, 65, 147, 69, 186, 79, 80, 46, 223, 27, 45, 196, 219, 209, 192, 105, 190, 3, 67, 227, 33, 153, 75, + 111, 128, 253, 162, 192, 14, 47, 153, 35, 132, 223, 75, 232, 137, 126, 90, 69, 235, 105, 208, 125, 192, 3, 71, 66, + 146, 98, 5, 229, 109, 195, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2979, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "46582b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10518836533319085473" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7262662058323511667" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10819536277102633539" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12573226583045342006" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "801d155fa7d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13437340367186024699" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e19dc" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "424046697095120249" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2447498219363845727" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14123320467860878996" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea393c618bb1a9" + } + } + ] + }, + "cborHex": "bf4346582b9f1b91fa6a188ae2ada11b64ca28a9ae1489731b9626b6eb6f27a2431bae7d12f622ea8336ff415b42a9f946801d155fa7d31bba7b05deb023d8fb439e19dcd8669f1b05e284396c8845799f1b21f742a9c195465f1bc4001d230fd9f694ffff41c247ea393c618bb1a9ff", + "cborBytes": [ + 191, 67, 70, 88, 43, 159, 27, 145, 250, 106, 24, 138, 226, 173, 161, 27, 100, 202, 40, 169, 174, 20, 137, 115, 27, + 150, 38, 182, 235, 111, 39, 162, 67, 27, 174, 125, 18, 246, 34, 234, 131, 54, 255, 65, 91, 66, 169, 249, 70, 128, + 29, 21, 95, 167, 211, 27, 186, 123, 5, 222, 176, 35, 216, 251, 67, 158, 25, 220, 216, 102, 159, 27, 5, 226, 132, + 57, 108, 136, 69, 121, 159, 27, 33, 247, 66, 169, 193, 149, 70, 95, 27, 196, 0, 29, 35, 15, 217, 246, 148, 255, + 255, 65, 194, 71, 234, 57, 60, 97, 139, 177, 169, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2980, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce63ed38e76b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fafc" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf46ce63ed38e76b1042fafc80ff", + "cborBytes": [191, 70, 206, 99, 237, 56, 231, 107, 16, 66, 250, 252, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2981, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18236370924055149637" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13664152429398789786" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24bd7bdfc714bb9a0fd128a1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1161466925811558198" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8492053477602257635" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cba58942d547e54ebb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14177816081881983216" + } + } + } + ] + }, + "cborHex": "bf1bfd149abc2891bc451bbda0d23d1f1b0e9a4c24bd7bdfc714bb9a0fd128a1d8669f1b101e5c03eb5ce7369f1b75d9d5a5221a6ae3ffff49cba58942d547e54ebb1bc4c1b89bf36568f0ff", + "cborBytes": [ + 191, 27, 253, 20, 154, 188, 40, 145, 188, 69, 27, 189, 160, 210, 61, 31, 27, 14, 154, 76, 36, 189, 123, 223, 199, + 20, 187, 154, 15, 209, 40, 161, 216, 102, 159, 27, 16, 30, 92, 3, 235, 92, 231, 54, 159, 27, 117, 217, 213, 165, + 34, 26, 106, 227, 255, 255, 73, 203, 165, 137, 66, 213, 71, 229, 78, 187, 27, 196, 193, 184, 155, 243, 101, 104, + 240, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2982, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3366801360439046429" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11664824553483601051" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5427127141073244038" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9ed8f5d81789" + }, + { + "_tag": "ByteArray", + "bytearray": "c39aa9dbd9c50b54" + }, + { + "_tag": "ByteArray", + "bytearray": "7eb785a00247d6ee18" + }, + { + "_tag": "ByteArray", + "bytearray": "29de8a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4484166572485364300" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6517224431525726272" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3154d2705" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14821819006058214720" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13775475507227551069" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2666" + } + ] + } + } + ] + }, + "cborHex": "bf1b2eb947ffce45711d1ba1e1c820e5a5049b1b4b510761728d4f869f469ed8f5d8178948c39aa9dbd9c50b54497eb785a00247d6ee184329de8a1b3e3af5bd52abca4cff1b5a71d5173a96884045f3154d27051bcdb1addb4d3bb5409f1bbf2c51fcfc64655d422666ffff", + "cborBytes": [ + 191, 27, 46, 185, 71, 255, 206, 69, 113, 29, 27, 161, 225, 200, 32, 229, 165, 4, 155, 27, 75, 81, 7, 97, 114, 141, + 79, 134, 159, 70, 158, 216, 245, 216, 23, 137, 72, 195, 154, 169, 219, 217, 197, 11, 84, 73, 126, 183, 133, 160, + 2, 71, 214, 238, 24, 67, 41, 222, 138, 27, 62, 58, 245, 189, 82, 171, 202, 76, 255, 27, 90, 113, 213, 23, 58, 150, + 136, 64, 69, 243, 21, 77, 39, 5, 27, 205, 177, 173, 219, 77, 59, 181, 64, 159, 27, 191, 44, 81, 252, 252, 100, + 101, 93, 66, 38, 102, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2983, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4338241717560850838" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f581aef32149bee3b2c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12229473505319118949" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14041785576080902880" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8ef36fa1ffa9" + }, + { + "_tag": "ByteArray", + "bytearray": "21fe03056e6c077bc30402" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17385787189057680938" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7885206126873639221" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9643fdb597a1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13912090261459161722" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c8737737f" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9da806" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "707cf800" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3c3487db6cfeb9964a2f581aef32149bee3b2c1ba9b7d15bca98e865d8669f1bc2de7195ba818ae09f468ef36fa1ffa94b21fe03056e6c077bc30402ffff1bf146b955a851f62abf1b6d6de131dd097935469643fdb597a11bc111ac622571d27a456c8737737fff1bfffffffffffffff1439da8061bfffffffffffffff2bf0b011244707cf800ffff", + "cborBytes": [ + 191, 27, 60, 52, 135, 219, 108, 254, 185, 150, 74, 47, 88, 26, 239, 50, 20, 155, 238, 59, 44, 27, 169, 183, 209, + 91, 202, 152, 232, 101, 216, 102, 159, 27, 194, 222, 113, 149, 186, 129, 138, 224, 159, 70, 142, 243, 111, 161, + 255, 169, 75, 33, 254, 3, 5, 110, 108, 7, 123, 195, 4, 2, 255, 255, 27, 241, 70, 185, 85, 168, 81, 246, 42, 191, + 27, 109, 109, 225, 49, 221, 9, 121, 53, 70, 150, 67, 253, 181, 151, 161, 27, 193, 17, 172, 98, 37, 113, 210, 122, + 69, 108, 135, 55, 115, 127, 255, 27, 255, 255, 255, 255, 255, 255, 255, 241, 67, 157, 168, 6, 27, 255, 255, 255, + 255, 255, 255, 255, 242, 191, 11, 1, 18, 68, 112, 124, 248, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2984, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "196b2ba6f996c63e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6913305658201576844" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8261150509460747136" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95992eeb80cc11704e50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5127712127367073846" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf48196b2ba6f996c63ebf1b5ff0fede2ccd958c1b72a5809e7071f3804a95992eeb80cc11704e501b47294b03162d5036ffff", + "cborBytes": [ + 191, 72, 25, 107, 43, 166, 249, 150, 198, 62, 191, 27, 95, 240, 254, 222, 44, 205, 149, 140, 27, 114, 165, 128, + 158, 112, 113, 243, 128, 74, 149, 153, 46, 235, 128, 204, 17, 112, 78, 80, 27, 71, 41, 75, 3, 22, 45, 80, 54, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2985, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "42ae3fb6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7287630899430270559" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7682204145041844977" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10492849182478716963" + } + }, + { + "_tag": "ByteArray", + "bytearray": "82f734c6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3269347220062429184" + } + } + ] + } + } + ] + }, + "cborHex": "bf4442ae3fb69f1b6522ddb106b3a65f1b6a9cabf7c540aaf11b919e16bceb6450234482f734c61b2d5f0df9933b6000ffff", + "cborBytes": [ + 191, 68, 66, 174, 63, 182, 159, 27, 101, 34, 221, 177, 6, 179, 166, 95, 27, 106, 156, 171, 247, 197, 64, 170, 241, + 27, 145, 158, 22, 188, 235, 100, 80, 35, 68, 130, 247, 52, 198, 27, 45, 95, 13, 249, 147, 59, 96, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2986, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "39ebcb992b2334f4" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10814007885040671263" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c47f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3714d73b14794c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d842d33e3fb7b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85d1e95469" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18033542298218077834" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13757030574570697537" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4839ebcb992b2334f49f1b961312e05a1f5a1fff42c47fbf473714d73b14794c471d842d33e3fb7b4585d1e954691bfa44032ca7451e8a42a9c71bbeeaca6b71797341ffff", + "cborBytes": [ + 191, 72, 57, 235, 203, 153, 43, 35, 52, 244, 159, 27, 150, 19, 18, 224, 90, 31, 90, 31, 255, 66, 196, 127, 191, + 71, 55, 20, 215, 59, 20, 121, 76, 71, 29, 132, 45, 51, 227, 251, 123, 69, 133, 209, 233, 84, 105, 27, 250, 68, 3, + 44, 167, 69, 30, 138, 66, 169, 199, 27, 190, 234, 202, 107, 113, 121, 115, 65, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2987, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10314125590768879963" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d3ba4ca01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63ec47850d744ab072aa54" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4953" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12757170351480702238" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14335121167786174568" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a197b4e14c" + }, + { + "_tag": "ByteArray", + "bytearray": "ec15674ee76563ada0d726" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7beac6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "836222781084457803" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "368a45f051a43b4f90440b" + }, + { + "_tag": "ByteArray", + "bytearray": "123f36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9743773207902468166" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9bf2b00c232dd6c1f38d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d3dbe85d8b0a231" + } + } + ] + }, + "cborHex": "bf1b8f232294068b895bbf458d3ba4ca014b63ec47850d744ab072aa54ff424953d8669f1bb10a92d82327051e9f1bc6f094c05a13e86845a197b4e14c4bec15674ee76563ada0d726ffff437beac6d8669f1b0b9adc305ba0db4b9f4b368a45f051a43b4f90440b43123f361b8738d61b9cfeb8464a9bf2b00c232dd6c1f38dffff41d3484d3dbe85d8b0a231ff", + "cborBytes": [ + 191, 27, 143, 35, 34, 148, 6, 139, 137, 91, 191, 69, 141, 59, 164, 202, 1, 75, 99, 236, 71, 133, 13, 116, 74, 176, + 114, 170, 84, 255, 66, 73, 83, 216, 102, 159, 27, 177, 10, 146, 216, 35, 39, 5, 30, 159, 27, 198, 240, 148, 192, + 90, 19, 232, 104, 69, 161, 151, 180, 225, 76, 75, 236, 21, 103, 78, 231, 101, 99, 173, 160, 215, 38, 255, 255, 67, + 123, 234, 198, 216, 102, 159, 27, 11, 154, 220, 48, 91, 160, 219, 75, 159, 75, 54, 138, 69, 240, 81, 164, 59, 79, + 144, 68, 11, 67, 18, 63, 54, 27, 135, 56, 214, 27, 156, 254, 184, 70, 74, 155, 242, 176, 12, 35, 45, 214, 193, + 243, 141, 255, 255, 65, 211, 72, 77, 61, 190, 133, 216, 176, 162, 49, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2988, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6306723702930687663" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0cb8fb4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85f94f480bc22ff350" + } + } + ] + }, + "cborHex": "bf1b5785fbcb19b846af8044b0cb8fb44985f94f480bc22ff350ff", + "cborBytes": [ + 191, 27, 87, 133, 251, 203, 25, 184, 70, 175, 128, 68, 176, 203, 143, 180, 73, 133, 249, 79, 72, 11, 194, 47, 243, + 80, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2989, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0703fb06ddfa73" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "234158506665160034" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6160424026362126944" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5116589097531159683" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f249104b8ead58" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9859158903770177235" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89f293fd2c4b2f714a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13798069080846169826" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12d673771307" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18088714089279636005" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13897921561121741094" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1785d57" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf470703fb06ddfa73bf1b033fe5ebd2e9ad621b557e39033d18a2601b4701c6ace3fb348347f249104b8ead581b88d2c4c97359ded34989f293fd2c4b2f714a1bbf7c96b94622f6e24612d6737713071bfb0805a0471dc2251bc0df560686e75926ff44e1785d57a0ff", + "cborBytes": [ + 191, 71, 7, 3, 251, 6, 221, 250, 115, 191, 27, 3, 63, 229, 235, 210, 233, 173, 98, 27, 85, 126, 57, 3, 61, 24, + 162, 96, 27, 71, 1, 198, 172, 227, 251, 52, 131, 71, 242, 73, 16, 75, 142, 173, 88, 27, 136, 210, 196, 201, 115, + 89, 222, 211, 73, 137, 242, 147, 253, 44, 75, 47, 113, 74, 27, 191, 124, 150, 185, 70, 34, 246, 226, 70, 18, 214, + 115, 119, 19, 7, 27, 251, 8, 5, 160, 71, 29, 194, 37, 27, 192, 223, 86, 6, 134, 231, 89, 38, 255, 68, 225, 120, + 93, 87, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2990, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8572aae988a0d750d7e7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13661765297410390153" + } + } + } + ] + }, + "cborHex": "bf4a8572aae988a0d750d7e71bbd985727a4e7b889ff", + "cborBytes": [ + 191, 74, 133, 114, 170, 233, 136, 160, 215, 80, 215, 231, 27, 189, 152, 87, 39, 164, 231, 184, 137, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2991, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6590379646769531263" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21f076d81b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1935553909562612094" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63952b1c6bd7add71c53df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1562093022725096327" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf707242058dbb5d08336deb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12279143398546317528" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7577460414233289114" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d0d142fbd6e89" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2213414114187162324" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bfad4df67dc1f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13681297784094326152" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7165dd6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c1f6ebbeb6df4b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f50a8e2e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8548809851494934577" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12562633561024562579" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1017909974832815605" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15677211397759604018" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7814644948613424142" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3f7f18829dd51e" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15943499308418215480" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9241213808377646963" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "501a4bb2" + }, + { + "_tag": "ByteArray", + "bytearray": "e5d70748733d8555" + } + ] + } + } + ] + }, + "cborHex": "bf1b5b75bb5f14a9897fbf4521f076d81b1b1adc78069719197e4b63952b1c6bd7add71c53df1b15adab53eda543874ccf707242058dbb5d08336deb1baa6847dd006fa0d8ff1b69288c1981f5a19abf470d0d142fbd6e891b1eb7a068e0f632d4472bfad4df67dc1f1bbdddbbd91747fd8844e7165dd647c1f6ebbeb6df4b44f50a8e2e1b76a3794432b72831ff1bae5770aa004505931b0e2057ba9f3c9df51bd990a4b4702a95329f1b6c73322d4fe7640e473f7f18829dd51eff1bdd42b02612f42e38d8669f1b803f62ff25c8cf739f44501a4bb248e5d70748733d8555ffffff", + "cborBytes": [ + 191, 27, 91, 117, 187, 95, 20, 169, 137, 127, 191, 69, 33, 240, 118, 216, 27, 27, 26, 220, 120, 6, 151, 25, 25, + 126, 75, 99, 149, 43, 28, 107, 215, 173, 215, 28, 83, 223, 27, 21, 173, 171, 83, 237, 165, 67, 135, 76, 207, 112, + 114, 66, 5, 141, 187, 93, 8, 51, 109, 235, 27, 170, 104, 71, 221, 0, 111, 160, 216, 255, 27, 105, 40, 140, 25, + 129, 245, 161, 154, 191, 71, 13, 13, 20, 47, 189, 110, 137, 27, 30, 183, 160, 104, 224, 246, 50, 212, 71, 43, 250, + 212, 223, 103, 220, 31, 27, 189, 221, 187, 217, 23, 71, 253, 136, 68, 231, 22, 93, 214, 71, 193, 246, 235, 190, + 182, 223, 75, 68, 245, 10, 142, 46, 27, 118, 163, 121, 68, 50, 183, 40, 49, 255, 27, 174, 87, 112, 170, 0, 69, 5, + 147, 27, 14, 32, 87, 186, 159, 60, 157, 245, 27, 217, 144, 164, 180, 112, 42, 149, 50, 159, 27, 108, 115, 50, 45, + 79, 231, 100, 14, 71, 63, 127, 24, 130, 157, 213, 30, 255, 27, 221, 66, 176, 38, 18, 244, 46, 56, 216, 102, 159, + 27, 128, 63, 98, 255, 37, 200, 207, 115, 159, 68, 80, 26, 75, 178, 72, 229, 215, 7, 72, 115, 61, 133, 85, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2992, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b8ca72eefe9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8116296194640132150" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3001877276562695760" + } + }, + { + "_tag": "ByteArray", + "bytearray": "37035cdb2d69c2355f04" + }, + { + "_tag": "ByteArray", + "bytearray": "1fd2c61844ffe0" + }, + { + "_tag": "ByteArray", + "bytearray": "7d3bdf" + }, + { + "_tag": "ByteArray", + "bytearray": "fb" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7165bed00cfa" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5876225187295452597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13055856945632993751" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8824306800976824153" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17188711980289065916" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17458593320268023404" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13174542065129304747" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02f7531013a1615baa7c0282" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0afea1c7fa0410e5308b99" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "687e61ae326b49390f6164" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17439972520986943498" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c5b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13132116272937141302" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec293fd4c367dccbd05c6a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0839517" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f69b8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16399772356165585172" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13154471842161119456" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d9ca59a385bd16b99bb9" + }, + { + "_tag": "ByteArray", + "bytearray": "646839789bb7e70ba103" + }, + { + "_tag": "ByteArray", + "bytearray": "ca09c59391" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9946b5f760cc98313" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4390706423806572755" + } + }, + { + "_tag": "ByteArray", + "bytearray": "102f5455b5" + } + ] + } + } + ] + }, + "cborHex": "bf462b8ca72eefe9d8669f1b70a2e063156138369f1b29a8cf7a78d626504a37035cdb2d69c2355f04471fd2c61844ffe0437d3bdf41fbffff467165bed00cfabf1b518c8bac9cf2ddb51bb52fb8b81ac561d71b7a763c48454987591bee8a9279f3a183bc1bf24962200c95466c1bb6d56034de7932abff4179bf4c02f7531013a1615baa7c02824b0afea1c7fa0410e5308b994b687e61ae326b49390f61641bf2073a9b5e00200a426c5b1bb63ea62c5d8b84364bec293fd4c367dccbd05c6a44c0839517ff439f69b8d8669f1be397b211768549149f1bb68e1271efe450e04ad9ca59a385bd16b99bb94a646839789bb7e70ba10345ca09c59391ffff41ae8049b9946b5f760cc983139f1b3ceeec3ac00438d345102f5455b5ffff", + "cborBytes": [ + 191, 70, 43, 140, 167, 46, 239, 233, 216, 102, 159, 27, 112, 162, 224, 99, 21, 97, 56, 54, 159, 27, 41, 168, 207, + 122, 120, 214, 38, 80, 74, 55, 3, 92, 219, 45, 105, 194, 53, 95, 4, 71, 31, 210, 198, 24, 68, 255, 224, 67, 125, + 59, 223, 65, 251, 255, 255, 70, 113, 101, 190, 208, 12, 250, 191, 27, 81, 140, 139, 172, 156, 242, 221, 181, 27, + 181, 47, 184, 184, 26, 197, 97, 215, 27, 122, 118, 60, 72, 69, 73, 135, 89, 27, 238, 138, 146, 121, 243, 161, 131, + 188, 27, 242, 73, 98, 32, 12, 149, 70, 108, 27, 182, 213, 96, 52, 222, 121, 50, 171, 255, 65, 121, 191, 76, 2, + 247, 83, 16, 19, 161, 97, 91, 170, 124, 2, 130, 75, 10, 254, 161, 199, 250, 4, 16, 229, 48, 139, 153, 75, 104, + 126, 97, 174, 50, 107, 73, 57, 15, 97, 100, 27, 242, 7, 58, 155, 94, 0, 32, 10, 66, 108, 91, 27, 182, 62, 166, 44, + 93, 139, 132, 54, 75, 236, 41, 63, 212, 195, 103, 220, 203, 208, 92, 106, 68, 192, 131, 149, 23, 255, 67, 159, + 105, 184, 216, 102, 159, 27, 227, 151, 178, 17, 118, 133, 73, 20, 159, 27, 182, 142, 18, 113, 239, 228, 80, 224, + 74, 217, 202, 89, 163, 133, 189, 22, 185, 155, 185, 74, 100, 104, 57, 120, 155, 183, 231, 11, 161, 3, 69, 202, 9, + 197, 147, 145, 255, 255, 65, 174, 128, 73, 185, 148, 107, 95, 118, 12, 201, 131, 19, 159, 27, 60, 238, 236, 58, + 192, 4, 56, 211, 69, 16, 47, 84, 85, 181, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2993, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae7ce990b066d83e7b932f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1262341260635351298" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e33de6c11c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6787019369176526496" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "952a0260bdaa1c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9409976637358630963" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11294076865612679154" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10248672675273262026" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9907899543660476608" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13816675150771309050" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18230127850798835314" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15593113541137989938" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf074bae7ce990b066d83e7b932f11bf1b1184bcb0397d290245e33de6c11c1b5e30562837766ea047952a0260bdaa1c1b8296f3e53e7c68331b9cbc9f1218cd07f21b8e3a997f94ea43ca1b897fee24022338c01bbfbeb0d882b0c9fa41f11bfcfe6cb164d1e6721bd865de2659dd0132ffff", + "cborBytes": [ + 191, 7, 75, 174, 124, 233, 144, 176, 102, 216, 62, 123, 147, 47, 17, 191, 27, 17, 132, 188, 176, 57, 125, 41, 2, + 69, 227, 61, 230, 193, 28, 27, 94, 48, 86, 40, 55, 118, 110, 160, 71, 149, 42, 2, 96, 189, 170, 28, 27, 130, 150, + 243, 229, 62, 124, 104, 51, 27, 156, 188, 159, 18, 24, 205, 7, 242, 27, 142, 58, 153, 127, 148, 234, 67, 202, 27, + 137, 127, 238, 36, 2, 35, 56, 192, 27, 191, 190, 176, 216, 130, 176, 201, 250, 65, 241, 27, 252, 254, 108, 177, + 100, 209, 230, 114, 27, 216, 101, 222, 38, 89, 221, 1, 50, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2994, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13418230554625030841" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4573904698097337084" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3911207482834336409" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5986960751599110862" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e20c0a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10559678361027357972" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a22d92" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10728312071951960190" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5654018395396618987" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11863983640984232665" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e67693c271" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13794679460195247900" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12457308000142579653" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27eeb5932083" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15176067364061994449" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3929741352845851197" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2474816297708593925" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4033bde" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8543211554397932575" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11057633957201144080" + } + }, + { + "_tag": "ByteArray", + "bytearray": "96ab8b85fa" + } + ] + } + } + ] + }, + "cborHex": "bf1bba372198bab7bab9bf1b3f79c616de9502fc1b3647667bb130ba991b5315f51553454ace43e20c0a1b928b8385936a2d1443a22d921b94e29efd083b487e1b4e771bc63b23baeb1ba4a556436de922d945e67693c2711bbf708be1b750a71c1bace13f9fde2157c5ff4627eeb5932083d8669f1bd29c38dc82505dd19f1b36893ef0938a3a3d1b2258504f8544a305ffff44e4033bded8669f1b768f95a514e6cc1f9f1b99749b7f8b4569104596ab8b85faffffff", + "cborBytes": [ + 191, 27, 186, 55, 33, 152, 186, 183, 186, 185, 191, 27, 63, 121, 198, 22, 222, 149, 2, 252, 27, 54, 71, 102, 123, + 177, 48, 186, 153, 27, 83, 21, 245, 21, 83, 69, 74, 206, 67, 226, 12, 10, 27, 146, 139, 131, 133, 147, 106, 45, + 20, 67, 162, 45, 146, 27, 148, 226, 158, 253, 8, 59, 72, 126, 27, 78, 119, 27, 198, 59, 35, 186, 235, 27, 164, + 165, 86, 67, 109, 233, 34, 217, 69, 230, 118, 147, 194, 113, 27, 191, 112, 139, 225, 183, 80, 167, 28, 27, 172, + 225, 63, 159, 222, 33, 87, 197, 255, 70, 39, 238, 181, 147, 32, 131, 216, 102, 159, 27, 210, 156, 56, 220, 130, + 80, 93, 209, 159, 27, 54, 137, 62, 240, 147, 138, 58, 61, 27, 34, 88, 80, 79, 133, 68, 163, 5, 255, 255, 68, 228, + 3, 59, 222, 216, 102, 159, 27, 118, 143, 149, 165, 20, 230, 204, 31, 159, 27, 153, 116, 155, 127, 139, 69, 105, + 16, 69, 150, 171, 139, 133, 250, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2995, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11492551796147440793" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9642758917117443013" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fae01181c54f9962f5" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f27c33510b0d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3757cfc8c43d94f605d2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38cf586397f7ab4f5764" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ec9c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11077934935687579945" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7680011164714883972" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4d5d2975ef8f2818" + }, + { + "_tag": "ByteArray", + "bytearray": "101034b15f7dc3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66181bdf39" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "832cea27aa2d" + } + } + ] + }, + "cborHex": "bf1b9f7dbef7ec254c99d8669f1b85d1f6254583fbc59f49fae01181c54f9962f5ffff470f27c33510b0d74a3757cfc8c43d94f605d24a38cf586397f7ab4f57649f42ec9c1b99bcbb216e8c49291b6a94e176bfdd5b84484d5d2975ef8f281847101034b15f7dc3ff4566181bdf3946832cea27aa2dff", + "cborBytes": [ + 191, 27, 159, 125, 190, 247, 236, 37, 76, 153, 216, 102, 159, 27, 133, 209, 246, 37, 69, 131, 251, 197, 159, 73, + 250, 224, 17, 129, 197, 79, 153, 98, 245, 255, 255, 71, 15, 39, 195, 53, 16, 176, 215, 74, 55, 87, 207, 200, 196, + 61, 148, 246, 5, 210, 74, 56, 207, 88, 99, 151, 247, 171, 79, 87, 100, 159, 66, 236, 156, 27, 153, 188, 187, 33, + 110, 140, 73, 41, 27, 106, 148, 225, 118, 191, 221, 91, 132, 72, 77, 93, 41, 117, 239, 143, 40, 24, 71, 16, 16, + 52, 177, 95, 125, 195, 255, 69, 102, 24, 27, 223, 57, 70, 131, 44, 234, 39, 170, 45, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2996, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3099350045193024460" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13a8757e81c2ec" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3998231371451880567" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "271e63811d06175b7170" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "726acf4e08f807b8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87f61d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14828741247385114016" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f64e0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "beb3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7bb56b3ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15707501642373868398" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de7518313d1617cf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5f07af5c2ccbf7d88f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e97f274642b595ebf9" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5940796344230595318" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15678012913862510509" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13083616298275119545" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9114343727248464959" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4439387300781359670" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7679762072768684094" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "adf1c805b8aaa7b7271b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8486831507308291873" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4871863099445885541" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8671189061331943588" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11090296614842884436" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9224d70f4d5392761" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f8e7b27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16189978030084920302" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13790121480399040380" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e2792a" + }, + { + "_tag": "ByteArray", + "bytearray": "a656b487" + } + ] + } + } + ] + }, + "cborHex": "bf1b2b031a71ee5233cc4713a8757e81c2ec1b377c923fb1365477bf4a271e63811d06175b717048726acf4e08f807b84387f61d1bcdca4599349295a0439f64e042beb345d7bb56b3ad1bd9fc4185968f2b6e48de7518313d1617cf418a4af5f07af5c2ccbf7d88f349e97f274642b595ebf9ff1b5271f2cca4cdcaf6d8669f1bd9937dadf2c307ad9f1bb59257b40c3321b91b7e7ca7547f745c3f1b3d9bdf3aab740236ffff1b6a93feea82e5203e4aadf1c805b8aaa7b7271b1b75c7484a6db42721bf1b439c55ad3cce3a651b7856408264f180a41b99e8a603256d615449f9224d70f4d5392761440f8e7b271be0ae5b3d7c9713eeff1bbf605a6c58ab2f7c9f43e2792a44a656b487ffff", + "cborBytes": [ + 191, 27, 43, 3, 26, 113, 238, 82, 51, 204, 71, 19, 168, 117, 126, 129, 194, 236, 27, 55, 124, 146, 63, 177, 54, + 84, 119, 191, 74, 39, 30, 99, 129, 29, 6, 23, 91, 113, 112, 72, 114, 106, 207, 78, 8, 248, 7, 184, 67, 135, 246, + 29, 27, 205, 202, 69, 153, 52, 146, 149, 160, 67, 159, 100, 224, 66, 190, 179, 69, 215, 187, 86, 179, 173, 27, + 217, 252, 65, 133, 150, 143, 43, 110, 72, 222, 117, 24, 49, 61, 22, 23, 207, 65, 138, 74, 245, 240, 122, 245, 194, + 204, 191, 125, 136, 243, 73, 233, 127, 39, 70, 66, 181, 149, 235, 249, 255, 27, 82, 113, 242, 204, 164, 205, 202, + 246, 216, 102, 159, 27, 217, 147, 125, 173, 242, 195, 7, 173, 159, 27, 181, 146, 87, 180, 12, 51, 33, 185, 27, + 126, 124, 167, 84, 127, 116, 92, 63, 27, 61, 155, 223, 58, 171, 116, 2, 54, 255, 255, 27, 106, 147, 254, 234, 130, + 229, 32, 62, 74, 173, 241, 200, 5, 184, 170, 167, 183, 39, 27, 27, 117, 199, 72, 74, 109, 180, 39, 33, 191, 27, + 67, 156, 85, 173, 60, 206, 58, 101, 27, 120, 86, 64, 130, 100, 241, 128, 164, 27, 153, 232, 166, 3, 37, 109, 97, + 84, 73, 249, 34, 77, 112, 244, 213, 57, 39, 97, 68, 15, 142, 123, 39, 27, 224, 174, 91, 61, 124, 151, 19, 238, + 255, 27, 191, 96, 90, 108, 88, 171, 47, 124, 159, 67, 226, 121, 42, 68, 166, 86, 180, 135, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2997, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "208c0a6a059441" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0c0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "92812cf60784" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14850189661441233557" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9015663087660119687" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b32709893a41fd" + }, + { + "_tag": "ByteArray", + "bytearray": "4e6ce1c974cfe75530532023" + } + ] + } + } + ] + }, + "cborHex": "bf47208c0a6a05944142a0c04692812cf60784d8669f1bce1678d1416212959f1b7d1e11cfaa95368747b32709893a41fd4c4e6ce1c974cfe75530532023ffffff", + "cborBytes": [ + 191, 71, 32, 140, 10, 106, 5, 148, 65, 66, 160, 192, 70, 146, 129, 44, 246, 7, 132, 216, 102, 159, 27, 206, 22, + 120, 209, 65, 98, 18, 149, 159, 27, 125, 30, 17, 207, 170, 149, 54, 135, 71, 179, 39, 9, 137, 58, 65, 253, 76, 78, + 108, 225, 201, 116, 207, 231, 85, 48, 83, 32, 35, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2998, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07d096" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7592043374581425245" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6078473706131944346" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15787697072526260575" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b6ed7fc90ad33370460648a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16655196518554656889" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8bc0f5bd405" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60f5f9cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + }, + "cborHex": "bf4307d096bf1b695c5b398d48a45d1b545b13a16e8bf39a1bdb192ad73566f95f4c6b6ed7fc90ad33370460648a1be72324fd98c5e07946f8bc0f5bd405ff4460f5f9cc08ff", + "cborBytes": [ + 191, 67, 7, 208, 150, 191, 27, 105, 92, 91, 57, 141, 72, 164, 93, 27, 84, 91, 19, 161, 110, 139, 243, 154, 27, + 219, 25, 42, 215, 53, 102, 249, 95, 76, 107, 110, 215, 252, 144, 173, 51, 55, 4, 96, 100, 138, 27, 231, 35, 36, + 253, 152, 197, 224, 121, 70, 248, 188, 15, 91, 212, 5, 255, 68, 96, 245, 249, 204, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 2999, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1336106346035785979" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1ea90ad3aa59b6720dcdc1a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13012689730851049483" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17046944508304829919" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fe6f5f6a8bc9756860" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04010300" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10602650064323431384" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "09" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5284593245385226429" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5141188661208397455" + } + } + ] + } + } + ] + }, + "cborHex": "bf4101d8669f1b128acda4899bb0fb9f4c1ea90ad3aa59b6720dcdc1a61bb4965c5db3c0100b1bec92e9b6334e2ddf49fe6f5f6a8bc9756860ffff4404010300d8669f1b93242e0ee9c54bd880ff41099f1b4956a58ec59d78bd1b47592bd92297b68fffff", + "cborBytes": [ + 191, 65, 1, 216, 102, 159, 27, 18, 138, 205, 164, 137, 155, 176, 251, 159, 76, 30, 169, 10, 211, 170, 89, 182, + 114, 13, 205, 193, 166, 27, 180, 150, 92, 93, 179, 192, 16, 11, 27, 236, 146, 233, 182, 51, 78, 45, 223, 73, 254, + 111, 95, 106, 139, 201, 117, 104, 96, 255, 255, 68, 4, 1, 3, 0, 216, 102, 159, 27, 147, 36, 46, 14, 233, 197, 75, + 216, 128, 255, 65, 9, 159, 27, 73, 86, 165, 142, 197, 157, 120, 189, 27, 71, 89, 43, 217, 34, 151, 182, 143, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3000, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8293291971718855795" + } + }, + { + "_tag": "ByteArray", + "bytearray": "80f5f184e66d0f166749696b" + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff5d8669f1bfffffffffffffffe9f1b7317b11bc8e6bc734c80f5f184e66d0f166749696bffffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 245, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, + 27, 115, 23, 177, 27, 200, 230, 188, 115, 76, 128, 245, 241, 132, 230, 109, 15, 22, 103, 73, 105, 107, 255, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3001, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8517490654014809333" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "742274318059516472" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6762939481576010441" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9894835878958879761" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17003286036352697755" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11657867634510110418" + } + } + } + ] + }, + "cborHex": "bf1b7634349f4a4324f5d8669f1b0a4d168f3dd532389f1b5ddac9a07ccd72c9ffff1b895184ce8c225411a01bebf7ce901329859b1ba1c910d8f97f9ed2ff", + "cborBytes": [ + 191, 27, 118, 52, 52, 159, 74, 67, 36, 245, 216, 102, 159, 27, 10, 77, 22, 143, 61, 213, 50, 56, 159, 27, 93, 218, + 201, 160, 124, 205, 114, 201, 255, 255, 27, 137, 81, 132, 206, 140, 34, 84, 17, 160, 27, 235, 247, 206, 144, 19, + 41, 133, 155, 27, 161, 201, 16, 216, 249, 127, 158, 210, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3002, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2675989560846988699" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "028900" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0430fe0702" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9655015d03c004b4ea6a05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4465721121599413140" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "185432" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f7762bf26" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69586a9613" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1787832269958396095" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a49b8131" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15691614633963985472" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c17f353d3c08" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c911a38568f4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7d4c722" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9056234997785655166" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9554604" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9975557063733991235" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8729120999832805636" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "93" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13430844228406510782" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac" + }, + { + "_tag": "ByteArray", + "bytearray": "f0d2d57154" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9738062547326922929" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d671a6486944b40fbe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + }, + "cborHex": "bf1b25230653dcf0359bbf43028900450430fe07024b9655015d03c004b4ea6a050aff1b3df96db31ee45b94bf43185432453f7762bf264569586a96131b18cfa7fa28d9b8bf44a49b81311bd9c3d05f31be9a4046c17f353d3c0846c911a38568f444e7d4c7221b7dae35bf9d79777e44f95546041b8a704c4bf480d743ff1b7924114cec6fe1049f41931bba63f1aa83c684be41ac45f0d2d57154ff1b87248c4ad5f4f0b149d671a6486944b40fbe1bfffffffffffffffc08ff", + "cborBytes": [ + 191, 27, 37, 35, 6, 83, 220, 240, 53, 155, 191, 67, 2, 137, 0, 69, 4, 48, 254, 7, 2, 75, 150, 85, 1, 93, 3, 192, + 4, 180, 234, 106, 5, 10, 255, 27, 61, 249, 109, 179, 30, 228, 91, 148, 191, 67, 24, 84, 50, 69, 63, 119, 98, 191, + 38, 69, 105, 88, 106, 150, 19, 27, 24, 207, 167, 250, 40, 217, 184, 191, 68, 164, 155, 129, 49, 27, 217, 195, 208, + 95, 49, 190, 154, 64, 70, 193, 127, 53, 61, 60, 8, 70, 201, 17, 163, 133, 104, 244, 68, 231, 212, 199, 34, 27, + 125, 174, 53, 191, 157, 121, 119, 126, 68, 249, 85, 70, 4, 27, 138, 112, 76, 75, 244, 128, 215, 67, 255, 27, 121, + 36, 17, 76, 236, 111, 225, 4, 159, 65, 147, 27, 186, 99, 241, 170, 131, 198, 132, 190, 65, 172, 69, 240, 210, 213, + 113, 84, 255, 27, 135, 36, 140, 74, 213, 244, 240, 177, 73, 214, 113, 166, 72, 105, 68, 180, 15, 190, 27, 255, + 255, 255, 255, 255, 255, 255, 252, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3003, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3472917032167576374" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7382666312327340903" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f47ff083dcb16a6ad22951" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11470860643611477144" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13746406525292285176" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aab8f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17549283939498116232" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2412967031207975761" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b303247a3f4c09336801b66747fe56183a3674bf47ff083dcb16a6ad229511b9f30aefaea788498a01bbec50be736288cf843aab8f91bf38b94c34c40c488d8669f1b217c94bafde15b5180ffff", + "cborBytes": [ + 191, 27, 48, 50, 71, 163, 244, 192, 147, 54, 128, 27, 102, 116, 127, 229, 97, 131, 163, 103, 75, 244, 127, 240, + 131, 220, 177, 106, 106, 210, 41, 81, 27, 159, 48, 174, 250, 234, 120, 132, 152, 160, 27, 190, 197, 11, 231, 54, + 40, 140, 248, 67, 170, 184, 249, 27, 243, 139, 148, 195, 76, 64, 196, 136, 216, 102, 159, 27, 33, 124, 148, 186, + 253, 225, 91, 81, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3004, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "748727899733844519" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14531313578471351311" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c900b215b9bf7af9710" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "908631974769505655" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30fefd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8734586362222075090" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8754388873687794763" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0a64040ed10f6227d8669f1bc9a998b59c98640f9f4a7c900b215b9bf7af9710ffff1b0c9c1bf787b2b5774330fefd1bffffffffffffffffd905099f1b79377c04c437dcd21b797dd64c41cb044bffff", + "cborBytes": [ + 191, 27, 10, 100, 4, 14, 209, 15, 98, 39, 216, 102, 159, 27, 201, 169, 152, 181, 156, 152, 100, 15, 159, 74, 124, + 144, 11, 33, 91, 155, 247, 175, 151, 16, 255, 255, 27, 12, 156, 27, 247, 135, 178, 181, 119, 67, 48, 254, 253, 27, + 255, 255, 255, 255, 255, 255, 255, 255, 217, 5, 9, 159, 27, 121, 55, 124, 4, 196, 55, 220, 210, 27, 121, 125, 214, + 76, 65, 203, 4, 75, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3005, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16789719703083927181" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1be901111d3cb1c68da0ff", + "cborBytes": [191, 27, 233, 1, 17, 29, 60, 177, 198, 141, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3006, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11957378436045511005" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "59fe" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "871aac" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2353738236336598077" + } + } + ] + } + } + ] + }, + "cborHex": "bf02d8669f1ba5f12455ad68995d9f4259feffff43871aacd8669f1bfffffffffffffff29f1b20aa28748f18ec3dffffff", + "cborBytes": [ + 191, 2, 216, 102, 159, 27, 165, 241, 36, 85, 173, 104, 153, 93, 159, 66, 89, 254, 255, 255, 67, 135, 26, 172, 216, + 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 32, 170, 40, 116, 143, 24, 236, 61, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3007, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0607c3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79f818a2a4fe01fb07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2209b009e1e05fa9d04fd05" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09784c0f9c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "179cfba4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "261a9561f81eb6ad2b928104" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "979ca4050307f9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b517a3630" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7363420961163173747" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a09d4598b907" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93ff46" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2880952d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce5796f4afe0a14f16df" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bdccf7d1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92acfd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2b7e8c9d7a66c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7df5" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14902590979616444320" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11506121971796956969" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf430607c34979f818a2a4fe01fb074cb2209b009e1e05fa9d04fd05bf4509784c0f9c44179cfba44c261a9561f81eb6ad2b92810447979ca4050307f9452b517a36301b66302059e1cbdf7346a09d4598b9074393ff4645c2880952d341ad4ace5796f4afe0a14f16df05ff44bdccf7d14392acfd47d2b7e8c9d7a66c9f427df5ff41febf1bced0a389e4fa8fa01b9fadf4f8a7465729ffff", + "cborBytes": [ + 191, 67, 6, 7, 195, 73, 121, 248, 24, 162, 164, 254, 1, 251, 7, 76, 178, 32, 155, 0, 158, 30, 5, 250, 157, 4, 253, + 5, 191, 69, 9, 120, 76, 15, 156, 68, 23, 156, 251, 164, 76, 38, 26, 149, 97, 248, 30, 182, 173, 43, 146, 129, 4, + 71, 151, 156, 164, 5, 3, 7, 249, 69, 43, 81, 122, 54, 48, 27, 102, 48, 32, 89, 225, 203, 223, 115, 70, 160, 157, + 69, 152, 185, 7, 67, 147, 255, 70, 69, 194, 136, 9, 82, 211, 65, 173, 74, 206, 87, 150, 244, 175, 224, 161, 79, + 22, 223, 5, 255, 68, 189, 204, 247, 209, 67, 146, 172, 253, 71, 210, 183, 232, 201, 215, 166, 108, 159, 66, 125, + 245, 255, 65, 254, 191, 27, 206, 208, 163, 137, 228, 250, 143, 160, 27, 159, 173, 244, 248, 167, 70, 87, 41, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3008, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc060204" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5393001295279916922" + } + } + } + ] + }, + "cborHex": "bf44bc0602041b4ad7ca1ace61877aff", + "cborBytes": [191, 68, 188, 6, 2, 4, 27, 74, 215, 202, 26, 206, 97, 135, 122, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3009, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "021503" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13021396120768906847" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa040507" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6445ac0f07ca2889" + } + } + ] + } + } + ] + }, + "cborHex": "bf430215031bb4b54ac81214865f44fa040507bf1bfffffffffffffff0486445ac0f07ca2889ffff", + "cborBytes": [ + 191, 67, 2, 21, 3, 27, 180, 181, 74, 200, 18, 20, 134, 95, 68, 250, 4, 5, 7, 191, 27, 255, 255, 255, 255, 255, + 255, 255, 240, 72, 100, 69, 172, 15, 7, 202, 40, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3010, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10572802194138600997" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12156249908354666363" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6080252236420601341" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59dad8a864730b4ffb39" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9ede748b1d39df" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8238472410707680056" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81ef51e9104b43e9bdfa77f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2c817356b5bfa39f8" + } + } + ] + }, + "cborHex": "bf1b92ba2394161a1625bf1ba8b3ace2945acf7b1b54616531c89fd5fd4a59dad8a864730b4ffb39479ede748b1d39dfff41211b7254ef021c165b384c81ef51e9104b43e9bdfa77f549a2c817356b5bfa39f8ff", + "cborBytes": [ + 191, 27, 146, 186, 35, 148, 22, 26, 22, 37, 191, 27, 168, 179, 172, 226, 148, 90, 207, 123, 27, 84, 97, 101, 49, + 200, 159, 213, 253, 74, 89, 218, 216, 168, 100, 115, 11, 79, 251, 57, 71, 158, 222, 116, 139, 29, 57, 223, 255, + 65, 33, 27, 114, 84, 239, 2, 28, 22, 91, 56, 76, 129, 239, 81, 233, 16, 75, 67, 233, 189, 250, 119, 245, 73, 162, + 200, 23, 53, 107, 91, 250, 57, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3011, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17663440136213128889" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bd787401c11cb061c923b5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11192656587999360132" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12275356425972803630" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3144183859158667056" + } + } + } + ] + }, + "cborHex": "bf0b9f1bf52125380e5c66b94bbd787401c11cb061c923b51b9b544ddd94a33484ff1baa5ad3a1bd6ae82e1b2ba2628fb1ab4f30ff", + "cborBytes": [ + 191, 11, 159, 27, 245, 33, 37, 56, 14, 92, 102, 185, 75, 189, 120, 116, 1, 193, 28, 176, 97, 201, 35, 181, 27, + 155, 84, 77, 221, 148, 163, 52, 132, 255, 27, 170, 90, 211, 161, 189, 106, 232, 46, 27, 43, 162, 98, 143, 177, + 171, 79, 48, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3012, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1757001594786339375" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5551215795832159860" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2652678873976860664" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01e093cb2e82a73b646908a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10715996051814518197" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b000c3351bc76" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e19cb4ca2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c440" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10479624000859310198" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "520774301150093c77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfbbb2628ddaf4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5236eb961c94dd735ab9d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39a3e805" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ff632f6f197ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "361883380113164169" + } + } + } + ] + }, + "cborHex": "bf1b18621fa43708da2fbf1b4d09e15ace1cfe741b24d03561a292eff84c01e093cb2e82a73b646908a71b94b6dda222e48db5476b000c3351bc76455e19cb4ca242c4401b916f1a815ee08876ff49520774301150093c7747dfbbb2628ddaf44b5236eb961c94dd735ab9d24439a3e805477ff632f6f197ab1b0505ab0451c34789ff", + "cborBytes": [ + 191, 27, 24, 98, 31, 164, 55, 8, 218, 47, 191, 27, 77, 9, 225, 90, 206, 28, 254, 116, 27, 36, 208, 53, 97, 162, + 146, 239, 248, 76, 1, 224, 147, 203, 46, 130, 167, 59, 100, 105, 8, 167, 27, 148, 182, 221, 162, 34, 228, 141, + 181, 71, 107, 0, 12, 51, 81, 188, 118, 69, 94, 25, 203, 76, 162, 66, 196, 64, 27, 145, 111, 26, 129, 94, 224, 136, + 118, 255, 73, 82, 7, 116, 48, 17, 80, 9, 60, 119, 71, 223, 187, 178, 98, 141, 218, 244, 75, 82, 54, 235, 150, 28, + 148, 221, 115, 90, 185, 210, 68, 57, 163, 232, 5, 71, 127, 246, 50, 246, 241, 151, 171, 27, 5, 5, 171, 4, 81, 195, + 71, 137, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3013, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12684262469040851299" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47c4aeb3b2f144b76b3479c9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2626045422739218131" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee8d5d5bd5b7e8c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76932bcd177d8d44b4fb94b2" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf0c1bb0078d82f0ffc963134c47c4aeb3b2f144b76b3479c91b247196660a695ed348ee8d5d5bd5b7e8c34c76932bcd177d8d44b4fb94b2a0ff", + "cborBytes": [ + 191, 12, 27, 176, 7, 141, 130, 240, 255, 201, 99, 19, 76, 71, 196, 174, 179, 178, 241, 68, 183, 107, 52, 121, 201, + 27, 36, 113, 150, 102, 10, 105, 94, 211, 72, 238, 141, 93, 91, 213, 183, 232, 195, 76, 118, 147, 43, 205, 23, 125, + 141, 68, 180, 251, 148, 178, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3014, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2fcb0b4dd6880e5cdb99" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13288045170825863197" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69f93a24b81736c27c64" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "268969747354298463" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5634122034890071905" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75155ac982ca" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f51528e81f0a7" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12181455733498978108" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7711d1f4f2e8373d54" + }, + { + "_tag": "ByteArray", + "bytearray": "6413d4ec5d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10956776332273140523" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c24ed86947d339047d695547" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff4e3b2ac5d047eed17be4" + }, + { + "_tag": "ByteArray", + "bytearray": "ba4d5cd1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2890053575918981116" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a2fcb0b4dd6880e5cdb991bb8689eae066ba01d4a69f93a24b81736c27c649f41ed1b03bb928f6661285f1b4e306c23ced2df61ff4675155ac982caa0479f51528e81f0a79f1ba90d3973125a1f3c497711d1f4f2e8373d54456413d4ec5d1b980e4a05d08c432bff4cc24ed86947d339047d6955479f4bff4e3b2ac5d047eed17be444ba4d5cd11b281b886a467f8ffcffff", + "cborBytes": [ + 191, 74, 47, 203, 11, 77, 214, 136, 14, 92, 219, 153, 27, 184, 104, 158, 174, 6, 107, 160, 29, 74, 105, 249, 58, + 36, 184, 23, 54, 194, 124, 100, 159, 65, 237, 27, 3, 187, 146, 143, 102, 97, 40, 95, 27, 78, 48, 108, 35, 206, + 210, 223, 97, 255, 70, 117, 21, 90, 201, 130, 202, 160, 71, 159, 81, 82, 142, 129, 240, 167, 159, 27, 169, 13, 57, + 115, 18, 90, 31, 60, 73, 119, 17, 209, 244, 242, 232, 55, 61, 84, 69, 100, 19, 212, 236, 93, 27, 152, 14, 74, 5, + 208, 140, 67, 43, 255, 76, 194, 78, 216, 105, 71, 211, 57, 4, 125, 105, 85, 71, 159, 75, 255, 78, 59, 42, 197, + 208, 71, 238, 209, 123, 228, 68, 186, 77, 92, 209, 27, 40, 27, 136, 106, 70, 127, 143, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3015, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14807897255905055135" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "189544e597" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af66" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "553a961d2b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aaae72b700bd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8988f0f4a8c9382cda9a70" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13619640736335519532" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7ed62b82d31aec4dde0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3399861373234452669" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bcd80381940b3d19fbf45189544e59742af6645553a961d2b46aaae72b700bd4b8988f0f4a8c9382cda9a701bbd02af16f9b7df2c4af7ed62b82d31aec4dde01b2f2ebbe7dd3618bdffff", + "cborBytes": [ + 191, 27, 205, 128, 56, 25, 64, 179, 209, 159, 191, 69, 24, 149, 68, 229, 151, 66, 175, 102, 69, 85, 58, 150, 29, + 43, 70, 170, 174, 114, 183, 0, 189, 75, 137, 136, 240, 244, 168, 201, 56, 44, 218, 154, 112, 27, 189, 2, 175, 22, + 249, 183, 223, 44, 74, 247, 237, 98, 184, 45, 49, 174, 196, 221, 224, 27, 47, 46, 187, 231, 221, 54, 24, 189, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3016, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "095f53a58e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13520212224766204069" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14952197156836308575" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13835800381457093108" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1775181896899697356" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "17ffd2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3119749836957162730" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13081050415435600914" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89079d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8551520122663490237" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f865fb9ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12548168400930155929" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f693b6bb34b0cc3b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7cd3114bed7824568babda" + } + } + ] + } + } + ] + }, + "cborHex": "bf0b45095f53a58e1bbba17162a11558a51bcf80e01810d5765f1bc002a32447f6d1f41b18a2b687a8691acc4317ffd2bf1b2b4b93f293ea1cea1bb5893a0be503d4124389079d1b76ad1a3e60f652bd459f865fb9ba1bae240cad77392d9948f693b6bb34b0cc3b4b7cd3114bed7824568babdaffff", + "cborBytes": [ + 191, 11, 69, 9, 95, 83, 165, 142, 27, 187, 161, 113, 98, 161, 21, 88, 165, 27, 207, 128, 224, 24, 16, 213, 118, + 95, 27, 192, 2, 163, 36, 71, 246, 209, 244, 27, 24, 162, 182, 135, 168, 105, 26, 204, 67, 23, 255, 210, 191, 27, + 43, 75, 147, 242, 147, 234, 28, 234, 27, 181, 137, 58, 11, 229, 3, 212, 18, 67, 137, 7, 157, 27, 118, 173, 26, 62, + 96, 246, 82, 189, 69, 159, 134, 95, 185, 186, 27, 174, 36, 12, 173, 119, 57, 45, 153, 72, 246, 147, 182, 187, 52, + 176, 204, 59, 75, 124, 211, 17, 75, 237, 120, 36, 86, 139, 171, 218, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3017, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6523276098738909667" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3154299574556987041" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9312437386672034394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6119774987620969631" + } + } + } + ] + }, + "cborHex": "bf1b5a87550ccd20f1e31b2bc652c038a28ea11b813c6c76b9a7525a1b54edceed6277ec9fff", + "cborBytes": [ + 191, 27, 90, 135, 85, 12, 205, 32, 241, 227, 27, 43, 198, 82, 192, 56, 162, 142, 161, 27, 129, 60, 108, 118, 185, + 167, 82, 90, 27, 84, 237, 206, 237, 98, 119, 236, 159, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3018, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ae4b0a68366dd6cd033e221" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e39bd606a6c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a75486b3faac61a90b28f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd54697c3495" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bf72e5" + } + ] + } + } + ] + }, + "cborHex": "bf4c1ae4b0a68366dd6cd033e221804294a446e39bd606a6c74ba75486b3faac61a90b28f81346dd54697c34959f43bf72e5ffff", + "cborBytes": [ + 191, 76, 26, 228, 176, 166, 131, 102, 221, 108, 208, 51, 226, 33, 128, 66, 148, 164, 70, 227, 155, 214, 6, 166, + 199, 75, 167, 84, 134, 179, 250, 172, 97, 169, 11, 40, 248, 19, 70, 221, 84, 105, 124, 52, 149, 159, 67, 191, 114, + 229, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3019, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb0326cd94" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e8f44ffbee3d84a" + } + } + ] + }, + "cborHex": "bf45cb0326cd94489e8f44ffbee3d84aff", + "cborBytes": [191, 69, 203, 3, 38, 205, 148, 72, 158, 143, 68, 255, 190, 227, 216, 74, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3020, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4901828823727154308" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12643500486370326538" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "160003689836636263" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12052544909522032338" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11344980841302666107" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6976634246148878530" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10209527862628568118" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14617583926394631632" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "670c9ebd545233bc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8347577443170348687" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b269ae91c70349ad13c6c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdfaca7e6c" + } + } + ] + }, + "cborHex": "bf1b4406cb581c072484d8669f1baf76bcb44794f80a9f1b023872821776e8671ba7433dbcf380d6d2ffff1b9d7177f785752b7bd8669f1b60d1fbe2118770c29f1b8daf877fa86dcc361bcadc17223f3635d0ffff48670c9ebd545233bc1b73d88d750b3b6e8f4b7b269ae91c70349ad13c6c45bdfaca7e6cff", + "cborBytes": [ + 191, 27, 68, 6, 203, 88, 28, 7, 36, 132, 216, 102, 159, 27, 175, 118, 188, 180, 71, 148, 248, 10, 159, 27, 2, 56, + 114, 130, 23, 118, 232, 103, 27, 167, 67, 61, 188, 243, 128, 214, 210, 255, 255, 27, 157, 113, 119, 247, 133, 117, + 43, 123, 216, 102, 159, 27, 96, 209, 251, 226, 17, 135, 112, 194, 159, 27, 141, 175, 135, 127, 168, 109, 204, 54, + 27, 202, 220, 23, 34, 63, 54, 53, 208, 255, 255, 72, 103, 12, 158, 189, 84, 82, 51, 188, 27, 115, 216, 141, 117, + 11, 59, 110, 143, 75, 123, 38, 154, 233, 28, 112, 52, 154, 209, 60, 108, 69, 189, 250, 202, 126, 108, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3021, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18282297528847274324" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13537177203818431024" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17123354293790689915" + } + }, + { + "_tag": "ByteArray", + "bytearray": "057f26d9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6097607272226647511" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6defbc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13631567751269147561" + } + } + } + ] + }, + "cborHex": "bf1bfdb7c4bd1cf19154d8669f1bbbddb6f19f1d02309f1beda26001bc8dca7b44057f26d91b549f0d81f0e86dd7ffff436defbc1bbd2d0ea58a1163a9ff", + "cborBytes": [ + 191, 27, 253, 183, 196, 189, 28, 241, 145, 84, 216, 102, 159, 27, 187, 221, 182, 241, 159, 29, 2, 48, 159, 27, + 237, 162, 96, 1, 188, 141, 202, 123, 68, 5, 127, 38, 217, 27, 84, 159, 13, 129, 240, 232, 109, 215, 255, 255, 67, + 109, 239, 188, 27, 189, 45, 14, 165, 138, 17, 99, 169, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3022, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17211112311204041663" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1beeda27756aab53bfa0ff", + "cborBytes": [191, 27, 238, 218, 39, 117, 106, 171, 83, 191, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3023, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18181306461967943808" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + }, + "cborHex": "bf1bfc50f9e6021d08800aff", + "cborBytes": [191, 27, 252, 80, 249, 230, 2, 29, 8, 128, 10, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3024, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5649028502875431456" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72cf41d80cba03149d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "217bf2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11407597947185319157" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6733392298505337640" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11086128647065653086" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2648162557902158496" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85c7157c9a819346887e08d6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13606261574951609782" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4e65617e57f262204972cf41d80cba03149d43217bf2d8669f1b9e4fede49674ccf59f1b5d71d09ed5c2fb281b99d9d74486a14f5e1b24c029d0db3f7aa0ffff4c85c7157c9a819346887e08d69f1bbcd326d03809a5b6ffff", + "cborBytes": [ + 191, 27, 78, 101, 97, 126, 87, 242, 98, 32, 73, 114, 207, 65, 216, 12, 186, 3, 20, 157, 67, 33, 123, 242, 216, + 102, 159, 27, 158, 79, 237, 228, 150, 116, 204, 245, 159, 27, 93, 113, 208, 158, 213, 194, 251, 40, 27, 153, 217, + 215, 68, 134, 161, 79, 94, 27, 36, 192, 41, 208, 219, 63, 122, 160, 255, 255, 76, 133, 199, 21, 124, 154, 129, + 147, 70, 136, 126, 8, 214, 159, 27, 188, 211, 38, 208, 56, 9, 165, 182, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3025, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10980767831173141161" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + }, + "cborHex": "bf02a01b98638629f21c92a909ff", + "cborBytes": [191, 2, 160, 27, 152, 99, 134, 41, 242, 28, 146, 169, 9, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3026, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "869380884447589388" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11471301875265054705" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7a2c71f33f0fea29eea8" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6008898857022129537" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "71" + }, + { + "_tag": "ByteArray", + "bytearray": "870201abff4b6be5" + }, + { + "_tag": "ByteArray", + "bytearray": "e25375110c00" + }, + { + "_tag": "ByteArray", + "bytearray": "ae" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12041207005161034085" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3997588064462008262" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13492910071141750945" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2172502898296298633" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14253068841580817214" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5443155096311267445" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7933e530d424f61fd3d1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14412759673825152649" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4473788545333182140" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15526889325667061853" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4679275529176060839" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d271e1fc6863ebde92ab9629" + }, + { + "_tag": "ByteArray", + "bytearray": "b2952cb4a84b4a" + } + ] + } + } + ] + }, + "cborHex": "bf1b0c10a94ee803740cd8669f1b9f3240472a7227f19f4a7a2c71f33f0fea29eea8ffff1b5363e5ac880e05819f417148870201abff4b6be546e25375110c0041aeff1ba71af5f9619191651b377a492a1c996fc61bbb407238a0b1d8a1bf1b1e2647e026751c891bc5cd12986d9ceb3e1b4b89f8b894fd80754a7933e530d424f61fd3d11bc804688faf6c4e891b3e1616fa94cbbebcff1bd77a9793a330905d9f1b40f0204d4ab793a74cd271e1fc6863ebde92ab962947b2952cb4a84b4affff", + "cborBytes": [ + 191, 27, 12, 16, 169, 78, 232, 3, 116, 12, 216, 102, 159, 27, 159, 50, 64, 71, 42, 114, 39, 241, 159, 74, 122, 44, + 113, 243, 63, 15, 234, 41, 238, 168, 255, 255, 27, 83, 99, 229, 172, 136, 14, 5, 129, 159, 65, 113, 72, 135, 2, 1, + 171, 255, 75, 107, 229, 70, 226, 83, 117, 17, 12, 0, 65, 174, 255, 27, 167, 26, 245, 249, 97, 145, 145, 101, 27, + 55, 122, 73, 42, 28, 153, 111, 198, 27, 187, 64, 114, 56, 160, 177, 216, 161, 191, 27, 30, 38, 71, 224, 38, 117, + 28, 137, 27, 197, 205, 18, 152, 109, 156, 235, 62, 27, 75, 137, 248, 184, 148, 253, 128, 117, 74, 121, 51, 229, + 48, 212, 36, 246, 31, 211, 209, 27, 200, 4, 104, 143, 175, 108, 78, 137, 27, 62, 22, 22, 250, 148, 203, 190, 188, + 255, 27, 215, 122, 151, 147, 163, 48, 144, 93, 159, 27, 64, 240, 32, 77, 74, 183, 147, 167, 76, 210, 113, 225, + 252, 104, 99, 235, 222, 146, 171, 150, 41, 71, 178, 149, 44, 180, 168, 75, 74, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3027, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13521069182430547989" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb280e83daa1101567" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3361542307881991950" + } + } + } + ] + }, + "cborHex": "bf4133bf1bbba47cc8a24110154184ff49cb280e83daa11015671b2ea698eb36c0bf0eff", + "cborBytes": [ + 191, 65, 51, 191, 27, 187, 164, 124, 200, 162, 65, 16, 21, 65, 132, 255, 73, 203, 40, 14, 131, 218, 161, 16, 21, + 103, 27, 46, 166, 152, 235, 54, 192, 191, 14, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3028, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "978ba7602483526c02" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7566284803611162874" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "89" + }, + { + "_tag": "ByteArray", + "bytearray": "f09353cc4996aeae" + }, + { + "_tag": "ByteArray", + "bytearray": "2bb432" + } + ] + } + } + ] + }, + "cborHex": "bf49978ba7602483526c02d8669f1b6900d7f0e4adf8fa9f418948f09353cc4996aeae432bb432ffffff", + "cborBytes": [ + 191, 73, 151, 139, 167, 96, 36, 131, 82, 108, 2, 216, 102, 159, 27, 105, 0, 215, 240, 228, 173, 248, 250, 159, 65, + 137, 72, 240, 147, 83, 204, 73, 150, 174, 174, 67, 43, 180, 50, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3029, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1562264951197561368" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14034751955762523681" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9983885726754056315" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17469213353548541048" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17287337236960411539" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1c956" + }, + { + "_tag": "ByteArray", + "bytearray": "14fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9043494549021503672" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16591433630629107893" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17282301274126112832" + } + }, + { + "_tag": "ByteArray", + "bytearray": "859845" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2797423094412492265" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b15ae47b2252c72181bc2c5748b61f1ae211b8a8de32bed44a87bd8669f1bf26f1cfd3bc56c789f1befe8f59ff1687f9343c1c9564214fb1b7d80f260ba9bb0b8ffff1be6409cfb5c1e18b59f1befd7117179915840438598451b26d2717ba4ee3de9ffff", + "cborBytes": [ + 191, 27, 21, 174, 71, 178, 37, 44, 114, 24, 27, 194, 197, 116, 139, 97, 241, 174, 33, 27, 138, 141, 227, 43, 237, + 68, 168, 123, 216, 102, 159, 27, 242, 111, 28, 253, 59, 197, 108, 120, 159, 27, 239, 232, 245, 159, 241, 104, 127, + 147, 67, 193, 201, 86, 66, 20, 251, 27, 125, 128, 242, 96, 186, 155, 176, 184, 255, 255, 27, 230, 64, 156, 251, + 92, 30, 24, 181, 159, 27, 239, 215, 17, 113, 121, 145, 88, 64, 67, 133, 152, 69, 27, 38, 210, 113, 123, 164, 238, + 61, 233, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3030, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "04a4a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17646465255357822265" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6104743079957407025" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a78fa67e1898c319bd" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "678925949892552981" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1797751035858007293" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17757756486937629891" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + { + "_tag": "ByteArray", + "bytearray": "50fe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "199af229e498" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8202005706f806fe87ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34311ac5b3b585" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dbc5f38e83" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70322d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10085067751431970054" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2008026168495860133" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbbfad8718fe00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "077a0707fa045b7d4d02" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "943057475750457716" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + } + } + ] + }, + "cborHex": "bf0ad905049f4304a4a71bf4e4d6a79ee035391b54b8677ca5e2a53149a78fa67e1898c319bdff13a01b096c078de823e9151b18f2e50acee834fd1bf6703970b3ce54c39f1bfffffffffffffffb1bfffffffffffffff14250fe00ff1bfffffffffffffff9bf46199af229e4984a8202005706f806fe87ff4734311ac5b3b58545dbc5f38e834370322d1b8bf55bafdbd99d0641781b1bddf12948e269a547fbbfad8718fe004a077a0707fa045b7d4d02ff1bfffffffffffffffe9f1b0d1669c714e1f17412ffff", + "cborBytes": [ + 191, 10, 217, 5, 4, 159, 67, 4, 164, 167, 27, 244, 228, 214, 167, 158, 224, 53, 57, 27, 84, 184, 103, 124, 165, + 226, 165, 49, 73, 167, 143, 166, 126, 24, 152, 195, 25, 189, 255, 19, 160, 27, 9, 108, 7, 141, 232, 35, 233, 21, + 27, 24, 242, 229, 10, 206, 232, 52, 253, 27, 246, 112, 57, 112, 179, 206, 84, 195, 159, 27, 255, 255, 255, 255, + 255, 255, 255, 251, 27, 255, 255, 255, 255, 255, 255, 255, 241, 66, 80, 254, 0, 255, 27, 255, 255, 255, 255, 255, + 255, 255, 249, 191, 70, 25, 154, 242, 41, 228, 152, 74, 130, 2, 0, 87, 6, 248, 6, 254, 135, 255, 71, 52, 49, 26, + 197, 179, 181, 133, 69, 219, 197, 243, 142, 131, 67, 112, 50, 45, 27, 139, 245, 91, 175, 219, 217, 157, 6, 65, + 120, 27, 27, 221, 241, 41, 72, 226, 105, 165, 71, 251, 191, 173, 135, 24, 254, 0, 74, 7, 122, 7, 7, 250, 4, 91, + 125, 77, 2, 255, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, 27, 13, 22, 105, 199, 20, 225, 241, 116, 18, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3031, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b9e907be39ab4e6eb96" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7058a63ba701" + } + } + ] + }, + "cborHex": "bf4a4b9e907be39ab4e6eb96467058a63ba701ff", + "cborBytes": [191, 74, 75, 158, 144, 123, 227, 154, 180, 230, 235, 150, 70, 112, 88, 166, 59, 167, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3032, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19ca04cc" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1d0c0ee4e0e0" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7165562899614778057" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7669450585315546598" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11061010130545223124" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1277776086445442085" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14290507127282704680" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1140583481683616444" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11461408599259296903" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3363745372732729625" + } + }, + { + "_tag": "ByteArray", + "bytearray": "297f" + } + ] + } + } + ] + }, + "cborHex": "bf0bbf054419ca04ccff109f461d0c0ee4e0e0ff1b6371317e0f41c2c9bf1b6a6f5cac402515e641d71b99809a1c282525d41b11bb9294a711c4251bc652148495dfa1281b0fd42aa22e6e22bcff1b9f0f1a6558753487d8669f1bffffffffffffffed9f1b2eae6c983899291942297fffffff", + "cborBytes": [ + 191, 11, 191, 5, 68, 25, 202, 4, 204, 255, 16, 159, 70, 29, 12, 14, 228, 224, 224, 255, 27, 99, 113, 49, 126, 15, + 65, 194, 201, 191, 27, 106, 111, 92, 172, 64, 37, 21, 230, 65, 215, 27, 153, 128, 154, 28, 40, 37, 37, 212, 27, + 17, 187, 146, 148, 167, 17, 196, 37, 27, 198, 82, 20, 132, 149, 223, 161, 40, 27, 15, 212, 42, 162, 46, 110, 34, + 188, 255, 27, 159, 15, 26, 101, 88, 117, 52, 135, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 159, + 27, 46, 174, 108, 152, 56, 153, 41, 25, 66, 41, 127, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3033, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "948b6ca9cf05e802932c8d59" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5528823012612860130" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12139182141907395094" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11589112270220318252" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15476497877331064368" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e47" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5981315489501182715" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "337545625508346830" + } + } + ] + } + } + ] + }, + "cborHex": "bf0e4c948b6ca9cf05e802932c8d591b4cba533caccb68e29f061ba87709d78827e21614ff1ba0d4cc35409a562c1bffffffffffffffeb1bd6c790d24967b630423e471bfffffffffffffff7d905079f0c1b5301e6bf51427afb081b04af33f53fe97bceffff", + "cborBytes": [ + 191, 14, 76, 148, 139, 108, 169, 207, 5, 232, 2, 147, 44, 141, 89, 27, 76, 186, 83, 60, 172, 203, 104, 226, 159, + 6, 27, 168, 119, 9, 215, 136, 39, 226, 22, 20, 255, 27, 160, 212, 204, 53, 64, 154, 86, 44, 27, 255, 255, 255, + 255, 255, 255, 255, 235, 27, 214, 199, 144, 210, 73, 103, 182, 48, 66, 62, 71, 27, 255, 255, 255, 255, 255, 255, + 255, 247, 217, 5, 7, 159, 12, 27, 83, 1, 230, 191, 81, 66, 122, 251, 8, 27, 4, 175, 51, 245, 63, 233, 123, 206, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3034, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06259cc2fff669e628" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "494e50bf03efdec037fff4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8643953101682649385" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d13377" + }, + { + "_tag": "ByteArray", + "bytearray": "65" + }, + { + "_tag": "ByteArray", + "bytearray": "c61ce4819e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18129438867404069741" + } + } + ] + } + } + ] + }, + "cborHex": "bf4906259cc2fff669e628804b494e50bf03efdec037fff4d8669f1b77f57d8c60ee29299f43d13377416545c61ce4819e1bfb98b49894c79b6dffffff", + "cborBytes": [ + 191, 73, 6, 37, 156, 194, 255, 246, 105, 230, 40, 128, 75, 73, 78, 80, 191, 3, 239, 222, 192, 55, 255, 244, 216, + 102, 159, 27, 119, 245, 125, 140, 96, 238, 41, 41, 159, 67, 209, 51, 119, 65, 101, 69, 198, 28, 228, 129, 158, 27, + 251, 152, 180, 152, 148, 199, 155, 109, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3035, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4ad06be20d33022a5f5c" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf41100f4a4ad06be20d33022a5f5c80ff", + "cborBytes": [191, 65, 16, 15, 74, 74, 208, 107, 226, 13, 51, 2, 42, 95, 92, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3036, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "30" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2253151750755649694" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1e4500e9668cef6bf4f8" + }, + { + "_tag": "ByteArray", + "bytearray": "6935750258f8e8" + }, + { + "_tag": "ByteArray", + "bytearray": "f56ccdcec82a86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13952536452184365732" + } + }, + { + "_tag": "ByteArray", + "bytearray": "69560d7ad6f2ce36" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49da" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1369f922b5374c0d2e96" + } + } + ] + }, + "cborHex": "bf4130d8669f1b1f44cd9460d7089e9f4a1e4500e9668cef6bf4f8476935750258f8e847f56ccdcec82a861bc1a15dfac4235aa44869560d7ad6f2ce36ffff4249da4a1369f922b5374c0d2e96ff", + "cborBytes": [ + 191, 65, 48, 216, 102, 159, 27, 31, 68, 205, 148, 96, 215, 8, 158, 159, 74, 30, 69, 0, 233, 102, 140, 239, 107, + 244, 248, 71, 105, 53, 117, 2, 88, 248, 232, 71, 245, 108, 205, 206, 200, 42, 134, 27, 193, 161, 93, 250, 196, 35, + 90, 164, 72, 105, 86, 13, 122, 214, 242, 206, 54, 255, 255, 66, 73, 218, 74, 19, 105, 249, 34, 181, 55, 76, 13, + 46, 150, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3037, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7497808529885806372" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05a2" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3093979461220740728" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13961071097518042915" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "251032448354939125" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18175803491963254745" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11077522533083402904" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00158409f49f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6291816151351008438" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac471cad09efe74e6a62" + } + ] + } + } + ] + }, + "cborHex": "bf06d8669f1bffffffffffffffff9f1b680d912201bcbf244205a2ffff1b2af005ed686aae78d8669f1bc1bfb031bb892f239f1b037bd8ae874af0f5ffff1bfc3d6cf9f5c637d9d8669f1b99bb440d77d252989f4600158409f49f1b5751057445579cb64aac471cad09efe74e6a62ffffff", + "cborBytes": [ + 191, 6, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 27, 104, 13, 145, 34, 1, 188, 191, 36, 66, + 5, 162, 255, 255, 27, 42, 240, 5, 237, 104, 106, 174, 120, 216, 102, 159, 27, 193, 191, 176, 49, 187, 137, 47, 35, + 159, 27, 3, 123, 216, 174, 135, 74, 240, 245, 255, 255, 27, 252, 61, 108, 249, 245, 198, 55, 217, 216, 102, 159, + 27, 153, 187, 68, 13, 119, 210, 82, 152, 159, 70, 0, 21, 132, 9, 244, 159, 27, 87, 81, 5, 116, 69, 87, 156, 182, + 74, 172, 71, 28, 173, 9, 239, 231, 78, 106, 98, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3038, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b51e6c1374933665b9a0" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca84c50d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13191128356503704461" + } + } + } + ] + }, + "cborHex": "bf4ab51e6c1374933665b9a0a044ca84c50d1bb7104d59c3fc538dff", + "cborBytes": [ + 191, 74, 181, 30, 108, 19, 116, 147, 54, 101, 185, 160, 160, 68, 202, 132, 197, 13, 27, 183, 16, 77, 89, 195, 252, + 83, 141, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3039, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6678114462248210345" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5753389720192021805" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13527370649651845393" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18047942783655082703" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2433732727856541854" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4b2ece242348acf91a" + }, + { + "_tag": "ByteArray", + "bytearray": "b9d767e427b7ba" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2353281397211952512" + } + } + } + ] + }, + "cborHex": "bf04bf1b5cad6db8a3b40fa91bfffffffffffffff51bfffffffffffffff90aff1b4fd82577be6df52dd8669f1bfffffffffffffffc9f1bbbbadfef4d8b1911ffff1bfa772c56f255facf801bfffffffffffffff7d8669f1b21c65b058221b09e9f494b2ece242348acf91a47b9d767e427b7baffff1bfffffffffffffffc1b20a888f6695a7580ff", + "cborBytes": [ + 191, 4, 191, 27, 92, 173, 109, 184, 163, 180, 15, 169, 27, 255, 255, 255, 255, 255, 255, 255, 245, 27, 255, 255, + 255, 255, 255, 255, 255, 249, 10, 255, 27, 79, 216, 37, 119, 190, 109, 245, 45, 216, 102, 159, 27, 255, 255, 255, + 255, 255, 255, 255, 252, 159, 27, 187, 186, 223, 239, 77, 139, 25, 17, 255, 255, 27, 250, 119, 44, 86, 242, 85, + 250, 207, 128, 27, 255, 255, 255, 255, 255, 255, 255, 247, 216, 102, 159, 27, 33, 198, 91, 5, 130, 33, 176, 158, + 159, 73, 75, 46, 206, 36, 35, 72, 172, 249, 26, 71, 185, 215, 103, 228, 39, 183, 186, 255, 255, 27, 255, 255, 255, + 255, 255, 255, 255, 252, 27, 32, 168, 136, 246, 105, 90, 117, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3040, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "caccc9ce53033721b767af" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4bcaccc9ce53033721b767afa0ff", + "cborBytes": [191, 75, 202, 204, 201, 206, 83, 3, 55, 33, 183, 103, 175, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3041, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4601465480009564440" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7113539652679469334" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13489549268015485824" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4287710808335485502" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8178711580050263792" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6608157559233466202" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58d7e20e1e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10813971267687389932" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5796954180816295924" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7d385cfe4596619cb6710518" + }, + { + "_tag": "ByteArray", + "bytearray": "f28b83e3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b736" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e14cebde03cde56950f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5020659011801058687" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3748" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15106787417067812164" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c1e217a0d9a1c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "946910713271418855" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89c99e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16126580990364198267" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb9f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce4eb94d1278f394" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3fdbb07976314118d8669f1b62b85e9ffd9d891680ff1bbb348196ac319380bf1b3b8102434e708a3e1b71809ed971450ef01b5bb4e449e1ec4f5a41d6ff4558d7e20e1ed8669f1b9612f192b5c99aec9f1b5072eb1d26c557f44c7d385cfe4596619cb671051844f28b83e3ffff42b736bf4a1e14cebde03cde56950f1b45acf6c548c40d7f4237481bd1a6171ddbaaf544475c1e217a0d9a1c1b0d241a46da8dffe74389c99e1bdfcd1ff7ec39a57b42cb9f48ce4eb94d1278f394ffff", + "cborBytes": [ + 191, 27, 63, 219, 176, 121, 118, 49, 65, 24, 216, 102, 159, 27, 98, 184, 94, 159, 253, 157, 137, 22, 128, 255, 27, + 187, 52, 129, 150, 172, 49, 147, 128, 191, 27, 59, 129, 2, 67, 78, 112, 138, 62, 27, 113, 128, 158, 217, 113, 69, + 14, 240, 27, 91, 180, 228, 73, 225, 236, 79, 90, 65, 214, 255, 69, 88, 215, 226, 14, 30, 216, 102, 159, 27, 150, + 18, 241, 146, 181, 201, 154, 236, 159, 27, 80, 114, 235, 29, 38, 197, 87, 244, 76, 125, 56, 92, 254, 69, 150, 97, + 156, 182, 113, 5, 24, 68, 242, 139, 131, 227, 255, 255, 66, 183, 54, 191, 74, 30, 20, 206, 189, 224, 60, 222, 86, + 149, 15, 27, 69, 172, 246, 197, 72, 196, 13, 127, 66, 55, 72, 27, 209, 166, 23, 29, 219, 170, 245, 68, 71, 92, 30, + 33, 122, 13, 154, 28, 27, 13, 36, 26, 70, 218, 141, 255, 231, 67, 137, 201, 158, 27, 223, 205, 31, 247, 236, 57, + 165, 123, 66, 203, 159, 72, 206, 78, 185, 77, 18, 120, 243, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3042, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b004fb" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf43b004fb80ff", + "cborBytes": [191, 67, 176, 4, 251, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3043, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9382231107593856025" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "15038a3f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f803fccb00f8fa70ffb6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11496515770959957258" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0387" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9203053658" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcb739ffcdbe040113" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + }, + "cborHex": "bf41001b8234617bb0c064194415038a3fbf0d4af803fccb00f8fa70ffb61b9f8bd42ebabe8d0a4203871bfffffffffffffff5459203053658ff49bcb739ffcdbe04011302ff", + "cborBytes": [ + 191, 65, 0, 27, 130, 52, 97, 123, 176, 192, 100, 25, 68, 21, 3, 138, 63, 191, 13, 74, 248, 3, 252, 203, 0, 248, + 250, 112, 255, 182, 27, 159, 139, 212, 46, 186, 190, 141, 10, 66, 3, 135, 27, 255, 255, 255, 255, 255, 255, 255, + 245, 69, 146, 3, 5, 54, 88, 255, 73, 188, 183, 57, 255, 205, 190, 4, 1, 19, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3044, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "43802054777f15a1dfc536" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "66154e1885243ee7" + }, + { + "_tag": "ByteArray", + "bytearray": "279a8d69d230876f8bf2" + }, + { + "_tag": "ByteArray", + "bytearray": "742aac40f459499ed1" + }, + { + "_tag": "ByteArray", + "bytearray": "e84d74bb66de1716" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5547527871507621092" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "af5e44" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9d7f8b75b50b6f2e32c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5390482342551794575" + } + } + } + ] + }, + "cborHex": "bf4b43802054777f15a1dfc5369f4866154e1885243ee74a279a8d69d230876f8bf249742aac40f459499ed148e84d74bb66de1716ff41891b4cfcc73502ca64e443af5e44a04ad9d7f8b75b50b6f2e32c1b4aced7216bd0b38fff", + "cborBytes": [ + 191, 75, 67, 128, 32, 84, 119, 127, 21, 161, 223, 197, 54, 159, 72, 102, 21, 78, 24, 133, 36, 62, 231, 74, 39, + 154, 141, 105, 210, 48, 135, 111, 139, 242, 73, 116, 42, 172, 64, 244, 89, 73, 158, 209, 72, 232, 77, 116, 187, + 102, 222, 23, 22, 255, 65, 137, 27, 76, 252, 199, 53, 2, 202, 100, 228, 67, 175, 94, 68, 160, 74, 217, 215, 248, + 183, 91, 80, 182, 242, 227, 44, 27, 74, 206, 215, 33, 107, 208, 179, 143, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3045, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0da49436e08d80bfe8595f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c90f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4930275164975127038" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14013691312504722822" + } + } + ] + } + } + ] + }, + "cborHex": "bf4ca0da49436e08d80bfe8595f60442c90fd8669f1b446bdb240d45d9fe9f1bc27aa20041d25586ffffff", + "cborBytes": [ + 191, 76, 160, 218, 73, 67, 110, 8, 216, 11, 254, 133, 149, 246, 4, 66, 201, 15, 216, 102, 159, 27, 68, 107, 219, + 36, 13, 69, 217, 254, 159, 27, 194, 122, 162, 0, 65, 210, 85, 134, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3046, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1599307973866065287" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aca58f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12622688085464210548" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1631e220f4bc8d879f43aca58f1baf2ccbef94a65c74ffff", + "cborBytes": [ + 191, 27, 22, 49, 226, 32, 244, 188, 141, 135, 159, 67, 172, 165, 143, 27, 175, 44, 203, 239, 148, 166, 92, 116, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3047, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13578175901820936936" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4883" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "161960965800816289" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a2a13c2f348f4f5fac8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15694312997366655044" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48ff05542761f7" + } + } + ] + }, + "cborHex": "bf1bbc6f5f0addce62e8054248831b023f66a3ea096ea14a7a2a13c2f348f4f5fac81bd9cd6684e1d5e84441d64748ff05542761f7ff", + "cborBytes": [ + 191, 27, 188, 111, 95, 10, 221, 206, 98, 232, 5, 66, 72, 131, 27, 2, 63, 102, 163, 234, 9, 110, 161, 74, 122, 42, + 19, 194, 243, 72, 244, 245, 250, 200, 27, 217, 205, 102, 132, 225, 213, 232, 68, 65, 214, 71, 72, 255, 5, 84, 39, + 97, 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3048, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12183742179174751742" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1ba91558f5b0a79dfe80ff", + "cborBytes": [191, 27, 169, 21, 88, 245, 176, 167, 157, 254, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3049, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23393287fe42" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c42a51326d1b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ace223a37b38487f0b9f175" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9530272159986363199" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8604117b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d11f0530f" + } + } + ] + }, + "cborHex": "bf4623393287fe42472c42a51326d1b54c3ace223a37b38487f0b9f1751b8442540934c82b3f45b8604117b9451d11f0530fff", + "cborBytes": [ + 191, 70, 35, 57, 50, 135, 254, 66, 71, 44, 66, 165, 19, 38, 209, 181, 76, 58, 206, 34, 58, 55, 179, 132, 135, 240, + 185, 241, 117, 27, 132, 66, 84, 9, 52, 200, 43, 63, 69, 184, 96, 65, 23, 185, 69, 29, 17, 240, 83, 15, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3050, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "34f531b37fe112ee8d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10403616954248947664" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fa8bbe48b64d047705a9bcf2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12525915005854481938" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65d37ea4855671ba" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10271177865124292861" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14930780034861218699" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d10c0b6b8898df50e69" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6773252745008895220" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3ba72b5d2da1524b" + } + ] + } + } + ] + }, + "cborHex": "bf4934f531b37fe112ee8d9f41e41b9061127fc93d67d04cfa8bbe48b64d047705a9bcf21badd4fd552ab0fe12ff4865d37ea4855671bad8669f1b8e8a8dd96b96a8fd9f1bcf34c955c565bb8bffff4a8d10c0b6b8898df50e699f1b5dff6d7c4031d4f4483ba72b5d2da1524bffff", + "cborBytes": [ + 191, 73, 52, 245, 49, 179, 127, 225, 18, 238, 141, 159, 65, 228, 27, 144, 97, 18, 127, 201, 61, 103, 208, 76, 250, + 139, 190, 72, 182, 77, 4, 119, 5, 169, 188, 242, 27, 173, 212, 253, 85, 42, 176, 254, 18, 255, 72, 101, 211, 126, + 164, 133, 86, 113, 186, 216, 102, 159, 27, 142, 138, 141, 217, 107, 150, 168, 253, 159, 27, 207, 52, 201, 85, 197, + 101, 187, 139, 255, 255, 74, 141, 16, 192, 182, 184, 137, 141, 245, 14, 105, 159, 27, 93, 255, 109, 124, 64, 49, + 212, 244, 72, 59, 167, 43, 93, 45, 161, 82, 75, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3051, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "85661317162280756" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b013054839c732734a0ff", + "cborBytes": [191, 27, 1, 48, 84, 131, 156, 115, 39, 52, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3052, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + } + ] + }, + "cborHex": "bf01061bfffffffffffffffd0dff", + "cborBytes": [191, 1, 6, 27, 255, 255, 255, 255, 255, 255, 255, 253, 13, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3053, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07011cb001021c075b2b48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b" + } + } + ] + }, + "cborHex": "bf4b07011cb001021c075b2b48411bff", + "cborBytes": [191, 75, 7, 1, 28, 176, 1, 2, 28, 7, 91, 43, 72, 65, 27, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3054, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0307b3b6ac0605" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "248b8c4e03a5fa02" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00fd065802060252d7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10818898010591616544" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95b5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15211336820408992210" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2348629973478348289" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "50ff" + } + } + ] + } + } + ] + }, + "cborHex": "bf470307b3b6ac060502418fbf0148248b8c4e03a5fa020912104900fd065802060252d71b9624726b6e7e5e204295b51bd319863ebb4c41d21b209802846e0316011bfffffffffffffff04250ffffff", + "cborBytes": [ + 191, 71, 3, 7, 179, 182, 172, 6, 5, 2, 65, 143, 191, 1, 72, 36, 139, 140, 78, 3, 165, 250, 2, 9, 18, 16, 73, 0, + 253, 6, 88, 2, 6, 2, 82, 215, 27, 150, 36, 114, 107, 110, 126, 94, 32, 66, 149, 181, 27, 211, 25, 134, 62, 187, + 76, 65, 210, 27, 32, 152, 2, 132, 110, 3, 22, 1, 27, 255, 255, 255, 255, 255, 255, 255, 240, 66, 80, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3055, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9064544238709076684" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3a5d58d2499f74da99" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15640250764224536386" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12537148599521884983" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2072532025071970046" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14793965382309698263" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6467159d108a3b0ea86a" + }, + { + "_tag": "ByteArray", + "bytearray": "04477d2bb5195b497224b122" + } + ] + } + } + ] + }, + "cborHex": "bf14d8669f1b7dcbbaf5871172cc9f493a5d58d2499f74da991bd90d553457a29f42ffff1badfce63a02c9bb37d8669f1b1cc31ce5640926fe9f1bcd4eb92227fedad7024a6467159d108a3b0ea86a4c04477d2bb5195b497224b122ffffff", + "cborBytes": [ + 191, 20, 216, 102, 159, 27, 125, 203, 186, 245, 135, 17, 114, 204, 159, 73, 58, 93, 88, 210, 73, 159, 116, 218, + 153, 27, 217, 13, 85, 52, 87, 162, 159, 66, 255, 255, 27, 173, 252, 230, 58, 2, 201, 187, 55, 216, 102, 159, 27, + 28, 195, 28, 229, 100, 9, 38, 254, 159, 27, 205, 78, 185, 34, 39, 254, 218, 215, 2, 74, 100, 103, 21, 157, 16, + 138, 59, 14, 168, 106, 76, 4, 71, 125, 43, 181, 25, 91, 73, 114, 36, 177, 34, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3056, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "53" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7762976099705888119" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18102985653750193316" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8883f5d17074ef086e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7093738903170246628" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e29" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e1a96b94724dc91790" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b676d5db514cf1ef" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8306543665299470189" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d7" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb2637320882e00c8b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21c8b8ba09975ad3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f54756a078d1f3f75" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "530d73f589" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa3b3263b071f82c1a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf8115ee4c40fc4d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2185789596453404151" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f56868a9876f6228b2bc61" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17828045559141077507" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b7fb5152" + }, + { + "_tag": "ByteArray", + "bytearray": "2558feb9acc8134754457dc9" + }, + { + "_tag": "ByteArray", + "bytearray": "73c417a2187b67c6" + }, + { + "_tag": "ByteArray", + "bytearray": "1309febf5cc55a3d9b09b4b3" + } + ] + } + } + ] + }, + "cborHex": "bf4153d8669f1b6bbba1a1f6d11d779f1bfb3ab989d1c5dca4498883f5d17074ef086e1b627205f2bcd4e7e4ffff429e2949e1a96b94724dc9179048b676d5db514cf1efd8669f1b7346c5742172376d9f41d7ffff49cb2637320882e00c8bbf4821c8b8ba09975ad3491f54756a078d1f3f7545530d73f58949fa3b3263b071f82c1a48bf8115ee4c40fc4d1b1e557c0ea2597df7ff4bf56868a9876f6228b2bc61d8669f1bf769f0faa01592039f44b7fb51524c2558feb9acc8134754457dc94873c417a2187b67c64c1309febf5cc55a3d9b09b4b3ffffff", + "cborBytes": [ + 191, 65, 83, 216, 102, 159, 27, 107, 187, 161, 161, 246, 209, 29, 119, 159, 27, 251, 58, 185, 137, 209, 197, 220, + 164, 73, 136, 131, 245, 209, 112, 116, 239, 8, 110, 27, 98, 114, 5, 242, 188, 212, 231, 228, 255, 255, 66, 158, + 41, 73, 225, 169, 107, 148, 114, 77, 201, 23, 144, 72, 182, 118, 213, 219, 81, 76, 241, 239, 216, 102, 159, 27, + 115, 70, 197, 116, 33, 114, 55, 109, 159, 65, 215, 255, 255, 73, 203, 38, 55, 50, 8, 130, 224, 12, 139, 191, 72, + 33, 200, 184, 186, 9, 151, 90, 211, 73, 31, 84, 117, 106, 7, 141, 31, 63, 117, 69, 83, 13, 115, 245, 137, 73, 250, + 59, 50, 99, 176, 113, 248, 44, 26, 72, 191, 129, 21, 238, 76, 64, 252, 77, 27, 30, 85, 124, 14, 162, 89, 125, 247, + 255, 75, 245, 104, 104, 169, 135, 111, 98, 40, 178, 188, 97, 216, 102, 159, 27, 247, 105, 240, 250, 160, 21, 146, + 3, 159, 68, 183, 251, 81, 82, 76, 37, 88, 254, 185, 172, 200, 19, 71, 84, 69, 125, 201, 72, 115, 196, 23, 162, 24, + 123, 103, 198, 76, 19, 9, 254, 191, 92, 197, 90, 61, 155, 9, 180, 179, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3057, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1933994759681696009" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2156610936687283694" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a798f274abdb50b7c788" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9661338947784053405" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17786579059810796480" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6641112874600104243" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13140950492478932175" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "257169703883425144" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17309482020366130380" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de0a57eae0581cdc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61d2f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0bf8b581724cec19f2b1" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15698061989432400909" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e4f388d5d0a" + } + } + ] + }, + "cborHex": "bf1b1ad6edfcb84b61099f1b1dedd2387ff7cdee4aa798f274abdb50b7c7881b8613f895c550929d1bf6d69f6ae56c83c0ff1b5c29f8f92bd00133a01bb65e08d9633384cfbf1b0391a67baef6c578415e1bf037a2301def1ccc48de0a57eae0581cdc4361d2f94a0bf8b581724cec19f2b1ff1bd9dab8351e2e1c0d466e4f388d5d0aff", + "cborBytes": [ + 191, 27, 26, 214, 237, 252, 184, 75, 97, 9, 159, 27, 29, 237, 210, 56, 127, 247, 205, 238, 74, 167, 152, 242, 116, + 171, 219, 80, 183, 199, 136, 27, 134, 19, 248, 149, 197, 80, 146, 157, 27, 246, 214, 159, 106, 229, 108, 131, 192, + 255, 27, 92, 41, 248, 249, 43, 208, 1, 51, 160, 27, 182, 94, 8, 217, 99, 51, 132, 207, 191, 27, 3, 145, 166, 123, + 174, 246, 197, 120, 65, 94, 27, 240, 55, 162, 48, 29, 239, 28, 204, 72, 222, 10, 87, 234, 224, 88, 28, 220, 67, + 97, 210, 249, 74, 11, 248, 181, 129, 114, 76, 236, 25, 242, 177, 255, 27, 217, 218, 184, 53, 30, 46, 28, 13, 70, + 110, 79, 56, 141, 93, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3058, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d388a687ffb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6dda89873b7afd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "440001" + } + } + ] + }, + "cborHex": "bf412f464d388a687ffb476dda89873b7afd43440001ff", + "cborBytes": [191, 65, 47, 70, 77, 56, 138, 104, 127, 251, 71, 109, 218, 137, 135, 59, 122, 253, 67, 68, 0, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3059, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11372349330785804817" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6399" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14295877637609770940" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab0e54" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15663309652758486998" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c70261407c0496d08d3762d8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5367690145515520051" + } + } + } + ] + }, + "cborHex": "bf1b9dd2b3768b23a2114263991bc66528f7f62e4fbcbf43ab0e541bd95f4124339ddfd6ff4cc70261407c0496d08d3762d81b4a7dddbf83d14033ff", + "cborBytes": [ + 191, 27, 157, 210, 179, 118, 139, 35, 162, 17, 66, 99, 153, 27, 198, 101, 40, 247, 246, 46, 79, 188, 191, 67, 171, + 14, 84, 27, 217, 95, 65, 36, 51, 157, 223, 214, 255, 76, 199, 2, 97, 64, 124, 4, 150, 208, 141, 55, 98, 216, 27, + 74, 125, 221, 191, 131, 209, 64, 51, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3060, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "167879815397132568" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe877ff415ea925dde" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6397476259373629676" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7337287398192886815" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11142824474995061772" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2550292574477673603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e0d8044a1cc00f5e0aa18427" + }, + { + "_tag": "ByteArray", + "bytearray": "243f12afcfab" + }, + { + "_tag": "ByteArray", + "bytearray": "4cf2959160fd4532591cc453" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16848150970887081734" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e01f9c98ff2d7" + } + } + ] + }, + "cborHex": "bf1b02546dcd79b44918bf414d49fe877ff415ea925ddeff1b58c866c33af5c0ec1b65d34803983cb41f1b9aa343d2a29bf40cd8669f1b236475959f0ee4839f4ce0d8044a1cc00f5e0aa1842746243f12afcfab4c4cf2959160fd4532591cc453ffff1be9d0a80aede08f06476e01f9c98ff2d7ff", + "cborBytes": [ + 191, 27, 2, 84, 109, 205, 121, 180, 73, 24, 191, 65, 77, 73, 254, 135, 127, 244, 21, 234, 146, 93, 222, 255, 27, + 88, 200, 102, 195, 58, 245, 192, 236, 27, 101, 211, 72, 3, 152, 60, 180, 31, 27, 154, 163, 67, 210, 162, 155, 244, + 12, 216, 102, 159, 27, 35, 100, 117, 149, 159, 14, 228, 131, 159, 76, 224, 216, 4, 74, 28, 192, 15, 94, 10, 161, + 132, 39, 70, 36, 63, 18, 175, 207, 171, 76, 76, 242, 149, 145, 96, 253, 69, 50, 89, 28, 196, 83, 255, 255, 27, + 233, 208, 168, 10, 237, 224, 143, 6, 71, 110, 1, 249, 201, 143, 242, 215, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3061, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "33fa41059e07ce01179272e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "faea5b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15533128652942266039" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c33fa41059e07ce01179272e30043faea5b9f1bd790c2363910ceb701ffff", + "cborBytes": [ + 191, 76, 51, 250, 65, 5, 158, 7, 206, 1, 23, 146, 114, 227, 0, 67, 250, 234, 91, 159, 27, 215, 144, 194, 54, 57, + 16, 206, 183, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3062, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "263eff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c2af905e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c6a27" + } + } + ] + }, + "cborHex": "bf0c43263eff456c2af905e6435c6a27ff", + "cborBytes": [191, 12, 67, 38, 62, 255, 69, 108, 42, 249, 5, 230, 67, 92, 106, 39, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3063, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cf95a837420e5c9f7dae54" + }, + { + "_tag": "ByteArray", + "bytearray": "b92d0c1314bc09819cee304f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3177654640134725297" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5597473848960079732" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e323280be63ea569b39791" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11553231596670814337" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15558541712693851114" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cefa8492" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8742307000338143668" + } + } + ] + } + } + ] + }, + "cborHex": "bf0ed8669f1bfffffffffffffffb9f4bcf95a837420e5c9f7dae544cb92d0c1314bc09819cee304f1b2c194c0f2c1a1eb11b4dae38cf16cdd7744be323280be63ea569b39791ffff1ba05552ecef6208819f1bd7eb0b414836f3eaff44cefa8492d905009f1b7952e9e5e890d9b4ffff", + "cborBytes": [ + 191, 14, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 75, 207, 149, 168, 55, 66, 14, 92, 159, + 125, 174, 84, 76, 185, 45, 12, 19, 20, 188, 9, 129, 156, 238, 48, 79, 27, 44, 25, 76, 15, 44, 26, 30, 177, 27, 77, + 174, 56, 207, 22, 205, 215, 116, 75, 227, 35, 40, 11, 230, 62, 165, 105, 179, 151, 145, 255, 255, 27, 160, 85, 82, + 236, 239, 98, 8, 129, 159, 27, 215, 235, 11, 65, 72, 54, 243, 234, 255, 68, 206, 250, 132, 146, 217, 5, 0, 159, + 27, 121, 82, 233, 229, 232, 144, 217, 180, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3064, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "689a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7175880814394075021" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10350441652934761811" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ed82d3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13554540472457352667" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ee2e1fe81184ff2cf3f2ec1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "857d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7a131d6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6973839348268417136" + } + }, + { + "_tag": "ByteArray", + "bytearray": "689550ad34e9ab9c9e3d40" + }, + { + "_tag": "ByteArray", + "bytearray": "f1c106df44" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d803639f2d4eed21c6" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f591" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16996707001728026406" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9596006636288484591" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf42689ad8669f1b6395d994cc7fe78d9f1b8fa427d827955d5343ed82d31bbc1b66bea279d5dbffff4c8ee2e1fe81184ff2cf3f2ec142857d44a7a131d69f1b60c80df0322e40704b689550ad34e9ab9c9e3d4045f1c106df44ff49d803639f2d4eed21c6a042f591bf1bebe06ef73564c7261b852bdd31a24424efffff", + "cborBytes": [ + 191, 66, 104, 154, 216, 102, 159, 27, 99, 149, 217, 148, 204, 127, 231, 141, 159, 27, 143, 164, 39, 216, 39, 149, + 93, 83, 67, 237, 130, 211, 27, 188, 27, 102, 190, 162, 121, 213, 219, 255, 255, 76, 142, 226, 225, 254, 129, 24, + 79, 242, 207, 63, 46, 193, 66, 133, 125, 68, 167, 161, 49, 214, 159, 27, 96, 200, 13, 240, 50, 46, 64, 112, 75, + 104, 149, 80, 173, 52, 233, 171, 156, 158, 61, 64, 69, 241, 193, 6, 223, 68, 255, 73, 216, 3, 99, 159, 45, 78, + 237, 33, 198, 160, 66, 245, 145, 191, 27, 235, 224, 110, 247, 53, 100, 199, 38, 27, 133, 43, 221, 49, 162, 68, 36, + 239, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3065, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0dcb62793d90790ad9b555" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8574658236761505328" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13703868765490244187" + } + }, + { + "_tag": "ByteArray", + "bytearray": "95" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2337880011312307895" + } + }, + { + "_tag": "ByteArray", + "bytearray": "846fa5bbc3972c00" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27caf16742" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8af0a0beabc77e422" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44ca8b5e40a3b9bf8f06cf" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b4b41216e6b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6683383157654384811" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "788afa3a05ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18116643246579008448" + } + } + } + ] + }, + "cborHex": "bf4b0dcb62793d90790ad9b555d8669f1b76ff4e3c608bfe309f1bbe2dec09379dea5b41951b2071d17bd1c19eb748846fa5bbc3972c00ffff4527caf1674249b8af0a0beabc77e4224b44ca8b5e40a3b9bf8f06cfa0464b4b41216e6b9f1b5cc0259261d170abff46788afa3a05ed1bfb6b3f0bf2d243c0ff", + "cborBytes": [ + 191, 75, 13, 203, 98, 121, 61, 144, 121, 10, 217, 181, 85, 216, 102, 159, 27, 118, 255, 78, 60, 96, 139, 254, 48, + 159, 27, 190, 45, 236, 9, 55, 157, 234, 91, 65, 149, 27, 32, 113, 209, 123, 209, 193, 158, 183, 72, 132, 111, 165, + 187, 195, 151, 44, 0, 255, 255, 69, 39, 202, 241, 103, 66, 73, 184, 175, 10, 11, 234, 188, 119, 228, 34, 75, 68, + 202, 139, 94, 64, 163, 185, 191, 143, 6, 207, 160, 70, 75, 75, 65, 33, 110, 107, 159, 27, 92, 192, 37, 146, 97, + 209, 112, 171, 255, 70, 120, 138, 250, 58, 5, 237, 27, 251, 107, 63, 11, 242, 210, 67, 192, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3066, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1018599611928854881" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17498871806489730984" + } + } + } + ] + }, + "cborHex": "bf1b0e22caf3455ec1611bf2d87b31ebeb1fa8ff", + "cborBytes": [191, 27, 14, 34, 202, 243, 69, 94, 193, 97, 27, 242, 216, 123, 49, 235, 235, 31, 168, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3067, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3125441730904424195" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4168042613520129658" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9d5ab16d60bbf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9670465284420866931" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8accdc8f9bd7ab622344f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17cb15972705dc60b5e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9280908810794180748" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dea7a86f3c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e07ef5cf61bfb5816cdf6d0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb36d992f15d412b4c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1936724247387275762" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe8b10eb2c29" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e45cbc080f7802e297bae34c" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13904337888107443299" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14397965660730530321" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16870945833036747675" + } + } + } + ] + }, + "cborHex": "bf1b2b5fccb1e8bd7f03801b39d7dcac7b8ede7a47e9d5ab16d60bbf1b863464f09aa71373bf4b8accdc8f9bd7ab622344f94a17cb15972705dc60b5e441a81b80cc69641c2e208c45dea7a86f3c4c5e07ef5cf61bfb5816cdf6d049eb36d992f15d412b4c1b1ae0a071196781f246fe8b10eb2c294ce45cbc080f7802e297bae34cff1bc0f621a411a63463a01bc7cfd97c181d9a111bea21a3d95b03139bff", + "cborBytes": [ + 191, 27, 43, 95, 204, 177, 232, 189, 127, 3, 128, 27, 57, 215, 220, 172, 123, 142, 222, 122, 71, 233, 213, 171, + 22, 214, 11, 191, 27, 134, 52, 100, 240, 154, 167, 19, 115, 191, 75, 138, 204, 220, 143, 155, 215, 171, 98, 35, + 68, 249, 74, 23, 203, 21, 151, 39, 5, 220, 96, 181, 228, 65, 168, 27, 128, 204, 105, 100, 28, 46, 32, 140, 69, + 222, 167, 168, 111, 60, 76, 94, 7, 239, 92, 246, 27, 251, 88, 22, 205, 246, 208, 73, 235, 54, 217, 146, 241, 93, + 65, 43, 76, 27, 26, 224, 160, 113, 25, 103, 129, 242, 70, 254, 139, 16, 235, 44, 41, 76, 228, 92, 188, 8, 15, 120, + 2, 226, 151, 186, 227, 76, 255, 27, 192, 246, 33, 164, 17, 166, 52, 99, 160, 27, 199, 207, 217, 124, 24, 29, 154, + 17, 27, 234, 33, 163, 217, 91, 3, 19, 155, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3068, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "363cfff93ebde120520006" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e066cb01" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ab3994d93395fab09dd705e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9739163a00793949e1acd543" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "336e8cbfd67745280593e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10457498303194513749" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79000b79d25f829ca7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4227c4f6c52f1b9648" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e08467b0996bdd0255" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4302b139deb969d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e82fa8a8f967ad5d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7440474707146032258" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf417e4b363cfff93ebde12052000644e066cb01bf4c2ab3994d93395fab09dd705e4c9739163a00793949e1acd5434b336e8cbfd67745280593e61b91207f4cf128c1554979000b79d25f829ca7494227c4f6c52f1b964849e08467b0996bdd025548c4302b139deb969d48e82fa8a8f967ad5d1b6741e05327b7c482ffff", + "cborBytes": [ + 191, 65, 126, 75, 54, 60, 255, 249, 62, 189, 225, 32, 82, 0, 6, 68, 224, 102, 203, 1, 191, 76, 42, 179, 153, 77, + 147, 57, 95, 171, 9, 221, 112, 94, 76, 151, 57, 22, 58, 0, 121, 57, 73, 225, 172, 213, 67, 75, 51, 110, 140, 191, + 214, 119, 69, 40, 5, 147, 230, 27, 145, 32, 127, 76, 241, 40, 193, 85, 73, 121, 0, 11, 121, 210, 95, 130, 156, + 167, 73, 66, 39, 196, 246, 197, 47, 27, 150, 72, 73, 224, 132, 103, 176, 153, 107, 221, 2, 85, 72, 196, 48, 43, + 19, 157, 235, 150, 157, 72, 232, 47, 168, 168, 249, 103, 173, 93, 27, 103, 65, 224, 83, 39, 183, 196, 130, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3069, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "054b0602" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5446699351528135309" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4" + }, + { + "_tag": "ByteArray", + "bytearray": "115921aa8c1dcb518f23" + }, + { + "_tag": "ByteArray", + "bytearray": "72" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe49" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd39bffa8c761f" + } + } + ] + }, + "cborHex": "bf44054b06029f1b4b969033ce2f5a8d41e44a115921aa8c1dcb518f234172ff42fe4947dd39bffa8c761fff", + "cborBytes": [ + 191, 68, 5, 75, 6, 2, 159, 27, 75, 150, 144, 51, 206, 47, 90, 141, 65, 228, 74, 17, 89, 33, 170, 140, 29, 203, 81, + 143, 35, 65, 114, 255, 66, 254, 73, 71, 221, 57, 191, 250, 140, 118, 31, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3070, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e966" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f88a174fe3a2410124a0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3994eddf25eecf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13784232938004378027" + } + } + ] + } + } + ] + }, + "cborHex": "bf42e96641ff4af88a174fe3a2410124a09f473994eddf25eecf1bbf4b6ed33afd71abffff", + "cborBytes": [ + 191, 66, 233, 102, 65, 255, 74, 248, 138, 23, 79, 227, 162, 65, 1, 36, 160, 159, 71, 57, 148, 237, 223, 37, 238, + 207, 27, 191, 75, 110, 211, 58, 253, 113, 171, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3071, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "119962537433906125" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5058107316177403873" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c0bc0f404d" + } + ] + } + } + ] + }, + "cborHex": "bf1b01aa314ace1a3bcda01b463201ce188effe19f45c0bc0f404dffff", + "cborBytes": [ + 191, 27, 1, 170, 49, 74, 206, 26, 59, 205, 160, 27, 70, 50, 1, 206, 24, 142, 255, 225, 159, 69, 192, 188, 15, 64, + 77, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3072, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9052035409685195344" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b7d9f4a3ed08b2a50a0ff", + "cborBytes": [191, 27, 125, 159, 74, 62, 208, 139, 42, 80, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3073, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8912252141345135538" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "009fd68a55ec792159" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9827232535766549354" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13993688964125759603" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1822803510797265505" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01f4" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12497893949682692266" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9358388969932005947" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18002305759122932211" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30d4f20193708a6b3b21a8" + } + } + ] + }, + "cborHex": "bf1b7baeae1a79975bb249009fd68a55ec7921591b886157eca386c36ad8669f1bc23391f89c0518739f1b194be622ac67ea614201f4ffff1bad7170549f5730aa1b81dfad2f6ebb223b1bf9d509b5267dc1f34b30d4f20193708a6b3b21a8ff", + "cborBytes": [ + 191, 27, 123, 174, 174, 26, 121, 151, 91, 178, 73, 0, 159, 214, 138, 85, 236, 121, 33, 89, 27, 136, 97, 87, 236, + 163, 134, 195, 106, 216, 102, 159, 27, 194, 51, 145, 248, 156, 5, 24, 115, 159, 27, 25, 75, 230, 34, 172, 103, + 234, 97, 66, 1, 244, 255, 255, 27, 173, 113, 112, 84, 159, 87, 48, 170, 27, 129, 223, 173, 47, 110, 187, 34, 59, + 27, 249, 213, 9, 181, 38, 125, 193, 243, 75, 48, 212, 242, 1, 147, 112, 138, 107, 59, 33, 168, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3074, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02fb00f6b8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "84ca23" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12487042677036538202" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "460ff6b6ff0103e3f007" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e6b0a1e9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6460419970952935076" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8868f254d6" + }, + { + "_tag": "ByteArray", + "bytearray": "61f7f0931629c629a36f" + }, + { + "_tag": "ByteArray", + "bytearray": "1c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c0b1fc1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "02030e5f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7956640811271757296" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae2b8e51bb77c37773" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12492386628360507413" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15998507493650268982" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b59fb6a6d58009edc5d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5cd5c34d30" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12592310510318328512" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f80271b18e5003" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17678856776066307802" + } + } + } + ] + }, + "cborHex": "bf4502fb00f6b89f4384ca231bad4ae327d3e7d95aff4a460ff6b6ff0103e3f0079f44e6b0a1e91b59a805bc1c7d36a4458868f254d64a61f7f0931629c629a36f411cff446c0b1fc19f4402030e5f1b6e6baaa9693a9df0ff49ae2b8e51bb77c37773bf1bad5ddf73744490151bde061dcd3f7303364ab59fb6a6d58009edc5d9455cd5c34d3041c31baec0dfb134f11ac0ff47f80271b18e50031bf557ea923c7096daff", + "cborBytes": [ + 191, 69, 2, 251, 0, 246, 184, 159, 67, 132, 202, 35, 27, 173, 74, 227, 39, 211, 231, 217, 90, 255, 74, 70, 15, + 246, 182, 255, 1, 3, 227, 240, 7, 159, 68, 230, 176, 161, 233, 27, 89, 168, 5, 188, 28, 125, 54, 164, 69, 136, + 104, 242, 84, 214, 74, 97, 247, 240, 147, 22, 41, 198, 41, 163, 111, 65, 28, 255, 68, 108, 11, 31, 193, 159, 68, + 2, 3, 14, 95, 27, 110, 107, 170, 169, 105, 58, 157, 240, 255, 73, 174, 43, 142, 81, 187, 119, 195, 119, 115, 191, + 27, 173, 93, 223, 115, 116, 68, 144, 21, 27, 222, 6, 29, 205, 63, 115, 3, 54, 74, 181, 159, 182, 166, 213, 128, 9, + 237, 197, 217, 69, 92, 213, 195, 77, 48, 65, 195, 27, 174, 192, 223, 177, 52, 241, 26, 192, 255, 71, 248, 2, 113, + 177, 142, 80, 3, 27, 245, 87, 234, 146, 60, 112, 150, 218, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3075, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "917460611594323602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4e583147c833323eff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16332361601213360799" + } + }, + { + "_tag": "ByteArray", + "bytearray": "043822fe094bcfb1" + }, + { + "_tag": "ByteArray", + "bytearray": "69276cd21daecca320e12902" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13801110259488577753" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0ffdb4a95629" + }, + { + "_tag": "ByteArray", + "bytearray": "03e5bb" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17436142954435516452" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4064146481839327008" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16064759284480233375" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7005593637502811479" + } + } + ] + } + } + ] + }, + "cborHex": "bf02d8669f1b0cbb7990b97e06929f494e583147c833323eff1be2a83457ff8d6a9f48043822fe094bcfb14c69276cd21daecca320e129021bbf8764a8dad0d8d9ffff070f0dd905089f460ffdb4a956294303e5bbff1bf1f99fa2ec0f1824d87a9f1b3866bfb1452fc7201bdef17d74599a4f9f1b6138de4bcc177d57ffff", + "cborBytes": [ + 191, 2, 216, 102, 159, 27, 12, 187, 121, 144, 185, 126, 6, 146, 159, 73, 78, 88, 49, 71, 200, 51, 50, 62, 255, 27, + 226, 168, 52, 87, 255, 141, 106, 159, 72, 4, 56, 34, 254, 9, 75, 207, 177, 76, 105, 39, 108, 210, 29, 174, 204, + 163, 32, 225, 41, 2, 27, 191, 135, 100, 168, 218, 208, 216, 217, 255, 255, 7, 15, 13, 217, 5, 8, 159, 70, 15, 253, + 180, 169, 86, 41, 67, 3, 229, 187, 255, 27, 241, 249, 159, 162, 236, 15, 24, 36, 216, 122, 159, 27, 56, 102, 191, + 177, 69, 47, 199, 32, 27, 222, 241, 125, 116, 89, 154, 79, 159, 27, 97, 56, 222, 75, 204, 23, 125, 87, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3076, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7984578291991316388" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29c83f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14342359686053482105" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15498999278229323753" + } + }, + { + "_tag": "ByteArray", + "bytearray": "47" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17431926799051751725" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5468ce09fc3854" + } + } + ] + }, + "cborHex": "bf1b6eceeba7077007a44329c83f1bc70a4c253819ce799f1bd71781b9f0e4ffe94147ff1bf1eaa510c017812d475468ce09fc3854ff", + "cborBytes": [ + 191, 27, 110, 206, 235, 167, 7, 112, 7, 164, 67, 41, 200, 63, 27, 199, 10, 76, 37, 56, 25, 206, 121, 159, 27, 215, + 23, 129, 185, 240, 228, 255, 233, 65, 71, 255, 27, 241, 234, 165, 16, 192, 23, 129, 45, 71, 84, 104, 206, 9, 252, + 56, 84, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3077, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7841927683220627311" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "669a4c3f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08ac40" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81d365d8d2312a54b4e16c89" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15063477837305242805" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be02607d6cf0c1f22cf9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7325548517087388671" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13852328899738714351" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5958740684600911002" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15855088484973652249" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4124050040145684532" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3f8d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0bd73503a4431419" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a724d0a6b0600d9bfdeb3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af17b7ec5c7e6221" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c176" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6c67647" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3615dc2ce622cd1194bb" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb9ebbbf3d7f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9d200beae729109328" + }, + { + "_tag": "ByteArray", + "bytearray": "2a0ab1f9" + }, + { + "_tag": "ByteArray", + "bytearray": "b9aa06723a61ce617e5732a1" + } + ] + } + } + ] + }, + "cborHex": "bf1b6cd41fadf8aadf6fbf44669a4c3f4308ac404c81d365d8d2312a54b4e16c891bd10c3948868c64b54abe02607d6cf0c1f22cf91b65a9939059e223ffff1bc03d5bbdd4cdc0efd8669f1b52b1b314f64e249a9f1bdc0896f9253da9191b393b91a94ed1a834423f8dffff480bd73503a4431419bf4b3a724d0a6b0600d9bfdeb348af17b7ec5c7e622142c17641c244e6c676474a3615dc2ce622cd1194bbff46fb9ebbbf3d7f9f499d200beae729109328442a0ab1f94cb9aa06723a61ce617e5732a1ffff", + "cborBytes": [ + 191, 27, 108, 212, 31, 173, 248, 170, 223, 111, 191, 68, 102, 154, 76, 63, 67, 8, 172, 64, 76, 129, 211, 101, 216, + 210, 49, 42, 84, 180, 225, 108, 137, 27, 209, 12, 57, 72, 134, 140, 100, 181, 74, 190, 2, 96, 125, 108, 240, 193, + 242, 44, 249, 27, 101, 169, 147, 144, 89, 226, 35, 255, 255, 27, 192, 61, 91, 189, 212, 205, 192, 239, 216, 102, + 159, 27, 82, 177, 179, 20, 246, 78, 36, 154, 159, 27, 220, 8, 150, 249, 37, 61, 169, 25, 27, 57, 59, 145, 169, 78, + 209, 168, 52, 66, 63, 141, 255, 255, 72, 11, 215, 53, 3, 164, 67, 20, 25, 191, 75, 58, 114, 77, 10, 107, 6, 0, + 217, 191, 222, 179, 72, 175, 23, 183, 236, 92, 126, 98, 33, 66, 193, 118, 65, 194, 68, 230, 198, 118, 71, 74, 54, + 21, 220, 44, 230, 34, 205, 17, 148, 187, 255, 70, 251, 158, 187, 191, 61, 127, 159, 73, 157, 32, 11, 234, 231, 41, + 16, 147, 40, 68, 42, 10, 177, 249, 76, 185, 170, 6, 114, 58, 97, 206, 97, 126, 87, 50, 161, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3078, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "071aff44" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79160402" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3614892934410908596" + } + }, + { + "_tag": "ByteArray", + "bytearray": "69de411a23316c1470f6bc" + }, + { + "_tag": "ByteArray", + "bytearray": "22de2fbc64c3176b8bba86ef" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e3d2c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "514a89f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c702" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6394199520287647669" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7d6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17669327196873807493" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10204665395038825650" + } + } + ] + } + } + ] + }, + "cborHex": "bf41069f1bfffffffffffffff5ff44071aff44a044791604029f1b322aadf8a8a1b3b44b69de411a23316c1470f6bc4c22de2fbc64c3176b8bba86efff439e3d2cbf100944514a89f81042c7021b58bcc295f5b7e7b5ff42e7d69f1bf5360f782dcfd6851b8d9e411c3302acb2ffff", + "cborBytes": [ + 191, 65, 6, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 255, 68, 7, 26, 255, 68, 160, 68, 121, 22, 4, 2, 159, + 27, 50, 42, 173, 248, 168, 161, 179, 180, 75, 105, 222, 65, 26, 35, 49, 108, 20, 112, 246, 188, 76, 34, 222, 47, + 188, 100, 195, 23, 107, 139, 186, 134, 239, 255, 67, 158, 61, 44, 191, 16, 9, 68, 81, 74, 137, 248, 16, 66, 199, + 2, 27, 88, 188, 194, 149, 245, 183, 231, 181, 255, 66, 231, 214, 159, 27, 245, 54, 15, 120, 45, 207, 214, 133, 27, + 141, 158, 65, 28, 51, 2, 172, 178, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3079, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4227500874587244606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96790aec932d6ca2892b9a5d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6339234157538455000" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8b384e0d414d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8243777953728545017" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7230182055768025194" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "568687672796456162" + } + } + } + ] + }, + "cborHex": "bf1b3aab19a5ad6d083e4c96790aec932d6ca2892b9a5d1b57f97be12c1a2dd89f468b384e0d414d1b7267c85f1b2fc0f9ff1b6456c445c774e86a1b07e4626ce52d24e2ff", + "cborBytes": [ + 191, 27, 58, 171, 25, 165, 173, 109, 8, 62, 76, 150, 121, 10, 236, 147, 45, 108, 162, 137, 43, 154, 93, 27, 87, + 249, 123, 225, 44, 26, 45, 216, 159, 70, 139, 56, 78, 13, 65, 77, 27, 114, 103, 200, 95, 27, 47, 192, 249, 255, + 27, 100, 86, 196, 69, 199, 116, 232, 106, 27, 7, 228, 98, 108, 229, 45, 36, 226, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3080, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3710432376873396084" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6732ec9bce9f9931e176a0bc" + } + } + ] + }, + "cborHex": "bf1b337e1a968aa5a7744c6732ec9bce9f9931e176a0bcff", + "cborBytes": [ + 191, 27, 51, 126, 26, 150, 138, 165, 167, 116, 76, 103, 50, 236, 155, 206, 159, 153, 49, 225, 118, 160, 188, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3081, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1134787834691981917" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1531874659296121268" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1349609729025103586" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16623134239324471699" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "38" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d0a" + }, + { + "_tag": "ByteArray", + "bytearray": "d4ef85c4dc53" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1876435152359672337" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b0fbf9385f640125d9f1b15424fe2ebc491b4ff1b12bac6e5e3f3d6e2d8669f1be6b13c847c9181939f41381bfffffffffffffffb420d0a46d4ef85c4dc53ffff1b1a0a6fd44c744a1180ff", + "cborBytes": [ + 191, 27, 15, 191, 147, 133, 246, 64, 18, 93, 159, 27, 21, 66, 79, 226, 235, 196, 145, 180, 255, 27, 18, 186, 198, + 229, 227, 243, 214, 226, 216, 102, 159, 27, 230, 177, 60, 132, 124, 145, 129, 147, 159, 65, 56, 27, 255, 255, 255, + 255, 255, 255, 255, 251, 66, 13, 10, 70, 212, 239, 133, 196, 220, 83, 255, 255, 27, 26, 10, 111, 212, 76, 116, 74, + 17, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3082, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5461338690415514050" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8517832957896200058" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2225581250424165713" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "330974297057690519" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14991127156362907598" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4954563926863873549" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4bca929a805051c241ae1b76356bf21f848f7ad8669f1b1ee2da5b0a4d55519f1b0497db5e9de883971bd00b2eb8e9b90fce1b44c225a41daf860dffffff", + "cborBytes": [ + 191, 27, 75, 202, 146, 154, 128, 80, 81, 194, 65, 174, 27, 118, 53, 107, 242, 31, 132, 143, 122, 216, 102, 159, + 27, 30, 226, 218, 91, 10, 77, 85, 81, 159, 27, 4, 151, 219, 94, 157, 232, 131, 151, 27, 208, 11, 46, 184, 233, + 185, 15, 206, 27, 68, 194, 37, 164, 29, 175, 134, 13, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3083, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5113927276274750590" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eec1fc9f028a491ccf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8191902870827218590" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f44b477200" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be38ab9be10ac1b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d51" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4712593807388283314" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27a46374e2c6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb61303db4fb54acffa3" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b90101" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14169835043715041480" + } + } + } + ] + }, + "cborHex": "bf07bf1b46f851c35589947e49eec1fc9f028a491ccf1b71af7c422a28b69e45f44b47720048be38ab9be10ac1b9426d51ff0c1b41667f19741591b24627a46374e2c6bf1bffffffffffffffff00413a4afb61303db4fb54acffa3ff43b901011bc4a55de5b28448c8ff", + "cborBytes": [ + 191, 7, 191, 27, 70, 248, 81, 195, 85, 137, 148, 126, 73, 238, 193, 252, 159, 2, 138, 73, 28, 207, 27, 113, 175, + 124, 66, 42, 40, 182, 158, 69, 244, 75, 71, 114, 0, 72, 190, 56, 171, 155, 225, 10, 193, 185, 66, 109, 81, 255, + 12, 27, 65, 102, 127, 25, 116, 21, 145, 178, 70, 39, 164, 99, 116, 226, 198, 191, 27, 255, 255, 255, 255, 255, + 255, 255, 255, 0, 65, 58, 74, 251, 97, 48, 61, 180, 251, 84, 172, 255, 163, 255, 67, 185, 1, 1, 27, 196, 165, 93, + 229, 178, 132, 72, 200, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3084, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2498437585578854050" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b97bf99c69d5012600" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6087663197938356645" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5709898650230504498" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11597780228237549584" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9d089420a62369f5" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b22ac3bbf2de986a249b97bf99c69d50126001b547bb96cb95591a51b4f3da291ee78bc321ba0f397ab7f25e0109f489d089420a62369f5ff1bfffffffffffffff3a0ff", + "cborBytes": [ + 191, 27, 34, 172, 59, 191, 45, 233, 134, 162, 73, 185, 123, 249, 156, 105, 213, 1, 38, 0, 27, 84, 123, 185, 108, + 185, 85, 145, 165, 27, 79, 61, 162, 145, 238, 120, 188, 50, 27, 160, 243, 151, 171, 127, 37, 224, 16, 159, 72, + 157, 8, 148, 32, 166, 35, 105, 245, 255, 27, 255, 255, 255, 255, 255, 255, 255, 243, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3085, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48c2311866d5cb358660c1d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "780120" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "959f842c04" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aec3b31a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6" + } + } + ] + }, + "cborHex": "bf4c48c2311866d5cb358660c1d04378012045959f842c04a044aec3b31a41f6ff", + "cborBytes": [ + 191, 76, 72, 194, 49, 24, 102, 213, 203, 53, 134, 96, 193, 208, 67, 120, 1, 32, 69, 149, 159, 132, 44, 4, 160, 68, + 174, 195, 179, 26, 65, 246, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3086, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1820985305191175720" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2753411952573155991" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9582323559577916927" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2833975295883471254" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10460125886623883246" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12924129608645437739" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17924675504401481449" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6615386721629084870" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ca741ee5775b206069" + }, + { + "_tag": "ByteArray", + "bytearray": "8ecab3d85b391d0acf1366" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10553231520197855354" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1945707cb1205628801b2636159529700a97d8669f1b84fb4082137f95ff9f1b27544d843d5de9961b9129d512e2159fee1bb35bbb67726b692b1bf8c13d66f9fefee9ffff1b5bce932c6a899cc69f49ca741ee5775b2060694b8ecab3d85b391d0acf13661b92749c2779d9487affff", + "cborBytes": [ + 191, 27, 25, 69, 112, 124, 177, 32, 86, 40, 128, 27, 38, 54, 21, 149, 41, 112, 10, 151, 216, 102, 159, 27, 132, + 251, 64, 130, 19, 127, 149, 255, 159, 27, 39, 84, 77, 132, 61, 93, 233, 150, 27, 145, 41, 213, 18, 226, 21, 159, + 238, 27, 179, 91, 187, 103, 114, 107, 105, 43, 27, 248, 193, 61, 102, 249, 254, 254, 233, 255, 255, 27, 91, 206, + 147, 44, 106, 137, 156, 198, 159, 73, 202, 116, 30, 229, 119, 91, 32, 96, 105, 75, 142, 202, 179, 216, 91, 57, 29, + 10, 207, 19, 102, 27, 146, 116, 156, 39, 121, 217, 72, 122, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3087, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13169893804267737284" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9831880491009586546" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc1502000b12f87d58" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c37f0a396ea6a3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf00d8669f1bb6c4dca34cff10c49f1b8871db370cb8357249fc1502000b12f87d58ffff059f47c37f0a396ea6a3ff0f8013d9050580ff", + "cborBytes": [ + 191, 0, 216, 102, 159, 27, 182, 196, 220, 163, 76, 255, 16, 196, 159, 27, 136, 113, 219, 55, 12, 184, 53, 114, 73, + 252, 21, 2, 0, 11, 18, 248, 125, 88, 255, 255, 5, 159, 71, 195, 127, 10, 57, 110, 166, 163, 255, 15, 128, 19, 217, + 5, 5, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3088, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8143349650141774900" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "798ca658c1b7deb3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13960804092617453655" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "08d415a44d94" + }, + { + "_tag": "ByteArray", + "bytearray": "40b1" + }, + { + "_tag": "ByteArray", + "bytearray": "9e12d88dd89c" + } + ] + } + } + ] + }, + "cborHex": "bf1b7102fd5c8a80843448798ca658c1b7deb31bc1bebd5acf4870579f4608d415a44d944240b1469e12d88dd89cffff", + "cborBytes": [ + 191, 27, 113, 2, 253, 92, 138, 128, 132, 52, 72, 121, 140, 166, 88, 193, 183, 222, 179, 27, 193, 190, 189, 90, + 207, 72, 112, 87, 159, 70, 8, 212, 21, 164, 77, 148, 66, 64, 177, 70, 158, 18, 216, 141, 216, 156, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3089, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5444948216733604929" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13413757687733855121" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1243586575881481155" + } + }, + { + "_tag": "ByteArray", + "bytearray": "338a1657" + } + ] + } + } + ] + }, + "cborHex": "bf1b4b90578df6cd9c41d8669f1bba273d8c408aa3919f1b11421b66e6dc2bc344338a1657ffffff", + "cborBytes": [ + 191, 27, 75, 144, 87, 141, 246, 205, 156, 65, 216, 102, 159, 27, 186, 39, 61, 140, 64, 138, 163, 145, 159, 27, 17, + 66, 27, 102, 230, 220, 43, 195, 68, 51, 138, 22, 87, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3090, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3979442914668625546" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9774806535803277724" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17156424171923493755" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15065857198951229171" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce5f3bbc9a874b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15459712282004682383" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ae798249928fd429" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27f55ea49b55ff7ecf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7981731213927325218" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5270383752593438029" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14836942224311252643" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16354571772285046687" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8b81c2f773ea" + }, + { + "_tag": "ByteArray", + "bytearray": "f6a3e19650ea7c803d8189" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2269093732934383508" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3739d23f34c4be8abf1b87a716c152b8919c1bee17dce2bf6cd37b1bd114ad4cd43fe6f347ce5f3bbc9a874b1bd68bee6952a1f68f48ae798249928fd4294927f55ea49b55ff7ecf1b6ec4ce4002c91e22ff1b49242a196b52754d801bcde76857f110f6a3d8669f1be2f71c606cae4f9f9f468b81c2f773ea4bf6a3e19650ea7c803d8189ffff1bfffffffffffffff49f1b1f7d70ba599e7794ffff", + "cborBytes": [ + 191, 27, 55, 57, 210, 63, 52, 196, 190, 138, 191, 27, 135, 167, 22, 193, 82, 184, 145, 156, 27, 238, 23, 220, 226, + 191, 108, 211, 123, 27, 209, 20, 173, 76, 212, 63, 230, 243, 71, 206, 95, 59, 188, 154, 135, 75, 27, 214, 139, + 238, 105, 82, 161, 246, 143, 72, 174, 121, 130, 73, 146, 143, 212, 41, 73, 39, 245, 94, 164, 155, 85, 255, 126, + 207, 27, 110, 196, 206, 64, 2, 201, 30, 34, 255, 27, 73, 36, 42, 25, 107, 82, 117, 77, 128, 27, 205, 231, 104, 87, + 241, 16, 246, 163, 216, 102, 159, 27, 226, 247, 28, 96, 108, 174, 79, 159, 159, 70, 139, 129, 194, 247, 115, 234, + 75, 246, 163, 225, 150, 80, 234, 124, 128, 61, 129, 137, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 244, + 159, 27, 31, 125, 112, 186, 89, 158, 119, 148, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3091, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "117349067182919549" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a3bc3435d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5918911976830095517" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11840117277532514599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3453230249084175554" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18329753205463131134" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13455723802143244932" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9061342215706673665" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3475722647978689728" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12894306163153563946" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4310454603005642682" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16616127186871357394" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "778ca41ddaa9" + } + } + ] + }, + "cborHex": "bf1b01a0e85ad8294f7dbf451a3bc3435d4157ff1b522433154bc3509dbf1ba4508beeaa4a69271b2fec569d944bc4c21bfe605d6cd83523fe1bbabc5581ae844284ff1b7dc05abc737282011b303c3f554a8cc4c01bb2f1c7236fe5f12ad8669f1b3bd1cf9fa89947ba80ff1be69857a3f42d8fd2121bfffffffffffffff646778ca41ddaa9ff", + "cborBytes": [ + 191, 27, 1, 160, 232, 90, 216, 41, 79, 125, 191, 69, 26, 59, 195, 67, 93, 65, 87, 255, 27, 82, 36, 51, 21, 75, + 195, 80, 157, 191, 27, 164, 80, 139, 238, 170, 74, 105, 39, 27, 47, 236, 86, 157, 148, 75, 196, 194, 27, 254, 96, + 93, 108, 216, 53, 35, 254, 27, 186, 188, 85, 129, 174, 132, 66, 132, 255, 27, 125, 192, 90, 188, 115, 114, 130, 1, + 27, 48, 60, 63, 85, 74, 140, 196, 192, 27, 178, 241, 199, 35, 111, 229, 241, 42, 216, 102, 159, 27, 59, 209, 207, + 159, 168, 153, 71, 186, 128, 255, 27, 230, 152, 87, 163, 244, 45, 143, 210, 18, 27, 255, 255, 255, 255, 255, 255, + 255, 246, 70, 119, 140, 164, 29, 218, 169, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3092, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "26a3fe44e91585" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c7b636dd24d3ba611c7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4eb91eb1fb21" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63a22798adbf46" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1447943113154141270" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b167a6c0e03a6b0e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1588144541393280463" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36572857df" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2093113953015383242" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e7de02276" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9852452782093439499" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6148681798731809697" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16074150357032077857" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14952641573519383718" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4726a3fe44e915854a6c7b636dd24d3ba611c7464eb91eb1fb21a04763a22798adbf46bf1b1418209702869c56497b167a6c0e03a6b0e91b160a390bc9b8ddcf4536572857df1b1d0c3c0cebe544ca454e7de022761b88baf19ad2fd120b1b55548184d251c3a11bdf12da95d11d8a211bcf827449e35c5ca6ffff", + "cborBytes": [ + 191, 71, 38, 163, 254, 68, 233, 21, 133, 74, 108, 123, 99, 109, 210, 77, 59, 166, 17, 199, 70, 78, 185, 30, 177, + 251, 33, 160, 71, 99, 162, 39, 152, 173, 191, 70, 191, 27, 20, 24, 32, 151, 2, 134, 156, 86, 73, 123, 22, 122, + 108, 14, 3, 166, 176, 233, 27, 22, 10, 57, 11, 201, 184, 221, 207, 69, 54, 87, 40, 87, 223, 27, 29, 12, 60, 12, + 235, 229, 68, 202, 69, 78, 125, 224, 34, 118, 27, 136, 186, 241, 154, 210, 253, 18, 11, 27, 85, 84, 129, 132, 210, + 81, 195, 161, 27, 223, 18, 218, 149, 209, 29, 138, 33, 27, 207, 130, 116, 73, 227, 92, 92, 166, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3093, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2577754842024153559" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4128683316922337218" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfff01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18116449133584044781" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b23c6065f0ce491d780413abf1b394c079a1f3cc7c2419342de050043dfff011bfb6a8e807eb5d2edffff", + "cborBytes": [ + 191, 27, 35, 198, 6, 95, 12, 228, 145, 215, 128, 65, 58, 191, 27, 57, 76, 7, 154, 31, 60, 199, 194, 65, 147, 66, + 222, 5, 0, 67, 223, 255, 1, 27, 251, 106, 142, 128, 126, 181, 210, 237, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3094, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "64" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e31f82477902" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15504978094964066496" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f2d6a3fc" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83b906242daa058ea2920225" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3215501020084695336" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bcd32a5c60ac216a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "73dda226" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "337f61f284b39b1b743e8721" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2b8a7aba4e60db183" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab7992d361af1fa828" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7fe3120" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d781e665c400a2d4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5088896516331792287" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3091465f8fe9fecba231" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6777620811335114632" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7582019645307168536" + } + } + ] + } + } + ] + }, + "cborHex": "bf41649f46e31f824779021bd72cbf6db08bc8c044f2d6a3fcff4c83b906242daa058ea29202251b2c9fc1242d0df12848bcd32a5c60ac216abf4473dda2264c337f61f284b39b1b743e872149d2b8a7aba4e60db18349ab7992d361af1fa828ff44e7fe31209f48d781e665c400a2d41b469f646b62ade79f4a3091465f8fe9fecba2311b5e0ef237f1ec9f881b6938beb236912718ffff", + "cborBytes": [ + 191, 65, 100, 159, 70, 227, 31, 130, 71, 121, 2, 27, 215, 44, 191, 109, 176, 139, 200, 192, 68, 242, 214, 163, + 252, 255, 76, 131, 185, 6, 36, 45, 170, 5, 142, 162, 146, 2, 37, 27, 44, 159, 193, 36, 45, 13, 241, 40, 72, 188, + 211, 42, 92, 96, 172, 33, 106, 191, 68, 115, 221, 162, 38, 76, 51, 127, 97, 242, 132, 179, 155, 27, 116, 62, 135, + 33, 73, 210, 184, 167, 171, 164, 230, 13, 177, 131, 73, 171, 121, 146, 211, 97, 175, 31, 168, 40, 255, 68, 231, + 254, 49, 32, 159, 72, 215, 129, 230, 101, 196, 0, 162, 212, 27, 70, 159, 100, 107, 98, 173, 231, 159, 74, 48, 145, + 70, 95, 143, 233, 254, 203, 162, 49, 27, 94, 14, 242, 55, 241, 236, 159, 136, 27, 105, 56, 190, 178, 54, 145, 39, + 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3095, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "897b124e8a1d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16225833000642151843" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14406782177964563003" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "deee8c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ec0a6cb81" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f533cfa5fb92" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed214cf8ef59a941" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1dad44a0818" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3741944117713531424" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f67563b1d924c7b8b96f7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10574058867731265977" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "847717d118c12e44" + } + } + ] + } + } + ] + }, + "cborHex": "bf46897b124e8a1dbf1be12dbd255c1605a31bc7ef2c0f7a019a3b43deee8c452ec0a6cb8146f533cfa5fb9248ed214cf8ef59a941ff46e1dad44a0818bf1b33ee0e5971ad72204b8f67563b1d924c7b8b96f71b92be9a843530f9b948847717d118c12e44ffff", + "cborBytes": [ + 191, 70, 137, 123, 18, 78, 138, 29, 191, 27, 225, 45, 189, 37, 92, 22, 5, 163, 27, 199, 239, 44, 15, 122, 1, 154, + 59, 67, 222, 238, 140, 69, 46, 192, 166, 203, 129, 70, 245, 51, 207, 165, 251, 146, 72, 237, 33, 76, 248, 239, 89, + 169, 65, 255, 70, 225, 218, 212, 74, 8, 24, 191, 27, 51, 238, 14, 89, 113, 173, 114, 32, 75, 143, 103, 86, 59, 29, + 146, 76, 123, 139, 150, 247, 27, 146, 190, 154, 132, 53, 48, 249, 185, 72, 132, 119, 23, 209, 24, 193, 46, 68, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3096, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7eba8046f443bcd01c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4795996018446051597" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f0b182b5e915a1ae9278" + }, + { + "_tag": "ByteArray", + "bytearray": "88d9413a2fcc37f6a98a33" + } + ] + } + } + ] + }, + "cborHex": "bf497eba8046f443bcd01c9f1b428eccf7efaa290d4af0b182b5e915a1ae92784b88d9413a2fcc37f6a98a33ffff", + "cborBytes": [ + 191, 73, 126, 186, 128, 70, 244, 67, 188, 208, 28, 159, 27, 66, 142, 204, 247, 239, 170, 41, 13, 74, 240, 177, + 130, 181, 233, 21, 161, 174, 146, 120, 75, 136, 217, 65, 58, 47, 204, 55, 246, 169, 138, 51, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3097, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c5e5cdc7088c8915519facf" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e830cf60703e29e956db" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7beb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00097cd0d3d7fec79d1da4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b275" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2301893605461893449" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17838099502654475428" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3432303256686306859" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12380236976151975038" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "888368e8850e10318b53884d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4674018035582366575" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5cada2465" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16782826016539585841" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ccf71eb804c14a8e9f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfc801abbbd289607b0c49" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2670732597334996805" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4c3c5e5cdc7088c8915519facf9f4ae830cf60703e29e956dbff427beb4b00097cd0d3d7fec79d1da442b275bf1b1ff1f809c84ca1491bf78da8fcc3cacca41b2fa1fda07834262b1babcf6fefbeb1d47e4c888368e8850e10318b53884d1b40dd72a3aca7f36fff45b5cada24651be8e89357c306ad3149ccf71eb804c14a8e9f41ea4bcfc801abbbd289607b0c49d8669f1b25105925aa35774580ffff", + "cborBytes": [ + 191, 76, 60, 94, 92, 220, 112, 136, 200, 145, 85, 25, 250, 207, 159, 74, 232, 48, 207, 96, 112, 62, 41, 233, 86, + 219, 255, 66, 123, 235, 75, 0, 9, 124, 208, 211, 215, 254, 199, 157, 29, 164, 66, 178, 117, 191, 27, 31, 241, 248, + 9, 200, 76, 161, 73, 27, 247, 141, 168, 252, 195, 202, 204, 164, 27, 47, 161, 253, 160, 120, 52, 38, 43, 27, 171, + 207, 111, 239, 190, 177, 212, 126, 76, 136, 131, 104, 232, 133, 14, 16, 49, 139, 83, 136, 77, 27, 64, 221, 114, + 163, 172, 167, 243, 111, 255, 69, 181, 202, 218, 36, 101, 27, 232, 232, 147, 87, 195, 6, 173, 49, 73, 204, 247, + 30, 184, 4, 193, 74, 142, 159, 65, 234, 75, 207, 200, 1, 171, 187, 210, 137, 96, 123, 12, 73, 216, 102, 159, 27, + 37, 16, 89, 37, 170, 53, 119, 69, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3098, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13237817006458725461" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11308814379221618028" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16314296837445084256" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18351008272224547535" + } + } + } + ] + }, + "cborHex": "bf1bb7b62c6e2f98e4551b9cf0fac2e0558d6c1be26806896c3164601bfeabe0cbb832f2cfff", + "cborBytes": [ + 191, 27, 183, 182, 44, 110, 47, 152, 228, 85, 27, 156, 240, 250, 194, 224, 85, 141, 108, 27, 226, 104, 6, 137, + 108, 49, 100, 96, 27, 254, 171, 224, 203, 184, 50, 242, 207, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3099, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "789ddf9a10" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4376bd539187ab36f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5262146843448239444" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7bb39856b3d59830" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "234894337885540178" + } + } + ] + } + } + ] + }, + "cborHex": "bf45789ddf9a109f494376bd539187ab36f81b4906e6ac8face554487bb39856b3d598301b03428327e16b0f52ffff", + "cborBytes": [ + 191, 69, 120, 157, 223, 154, 16, 159, 73, 67, 118, 189, 83, 145, 135, 171, 54, 248, 27, 73, 6, 230, 172, 143, 172, + 229, 84, 72, 123, 179, 152, 86, 179, 213, 152, 48, 27, 3, 66, 131, 39, 225, 107, 15, 82, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3100, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c85bd6ba8165455c6ed04e0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4400506937902187884" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2051111192618228646" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10405371911449559069" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13752966448408916891" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd56b7" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61745c444fb8abcec80c46" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8488771840436174892" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9096356294439169755" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "528792065780176552" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b29eb68199a70eebf9e314" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77cd77ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4396894176786164132" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba246cfb10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1f54e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca2a644caea853111a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4882262623295399979" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4881d1399d0655c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "818440230607920941" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3211393526864253542" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8472428316879263344" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17091695047303648230" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f07330" + }, + { + "_tag": "ByteArray", + "bytearray": "349c46dd" + } + ] + } + } + ] + }, + "cborHex": "bf4c1c85bd6ba8165455c6ed04e0bf1b3d11bdbec14d456c1b1c7702c32ed65ba61b90674e9f99c7401d41521bbedc5a1e5547739b43bd56b7ff4b61745c444fb8abcec80c46d8669f1b75ce2d037089802c9f1b7e3cbfdaf06f6edb1b0756a59508df56a84bb29eb68199a70eebf9e314ffff4477cd77ce1b3d04e7f54252a9a445ba246cfb1043f1f54e49ca2a644caea853111a1b43c147fd11b0682b48e4881d1399d0655cd8669f1b0b5baf0daf461f2d9f1b2c912965e2bb92661b75941caa548c96701bed31e616ffd653e643f0733044349c46ddffffff", + "cborBytes": [ + 191, 76, 28, 133, 189, 107, 168, 22, 84, 85, 198, 237, 4, 224, 191, 27, 61, 17, 189, 190, 193, 77, 69, 108, 27, + 28, 119, 2, 195, 46, 214, 91, 166, 27, 144, 103, 78, 159, 153, 199, 64, 29, 65, 82, 27, 190, 220, 90, 30, 85, 71, + 115, 155, 67, 189, 86, 183, 255, 75, 97, 116, 92, 68, 79, 184, 171, 206, 200, 12, 70, 216, 102, 159, 27, 117, 206, + 45, 3, 112, 137, 128, 44, 159, 27, 126, 60, 191, 218, 240, 111, 110, 219, 27, 7, 86, 165, 149, 8, 223, 86, 168, + 75, 178, 158, 182, 129, 153, 167, 14, 235, 249, 227, 20, 255, 255, 68, 119, 205, 119, 206, 27, 61, 4, 231, 245, + 66, 82, 169, 164, 69, 186, 36, 108, 251, 16, 67, 241, 245, 78, 73, 202, 42, 100, 76, 174, 168, 83, 17, 26, 27, 67, + 193, 71, 253, 17, 176, 104, 43, 72, 228, 136, 29, 19, 153, 208, 101, 92, 216, 102, 159, 27, 11, 91, 175, 13, 175, + 70, 31, 45, 159, 27, 44, 145, 41, 101, 226, 187, 146, 102, 27, 117, 148, 28, 170, 84, 140, 150, 112, 27, 237, 49, + 230, 22, 255, 214, 83, 230, 67, 240, 115, 48, 68, 52, 156, 70, 221, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3101, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0cba3e536e2e76db" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "982926625202067025" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "26da04578db73e9a05c3" + }, + { + "_tag": "ByteArray", + "bytearray": "f295810e65d5492e3012a3" + }, + { + "_tag": "ByteArray", + "bytearray": "7bdc9bf6a21663974fa915" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16664677659994900086" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7bafc5cc1af0" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4fb112f9cc97c7a7b3" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a480" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e65a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcb8108e" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf480cba3e536e2e76dbd8669f1b0da40e8ecf7156519f4a26da04578db73e9a05c34bf295810e65d5492e3012a34b7bdc9bf6a21663974fa9151be744d409dc624676467bafc5cc1af0ffff494fb112f9cc97c7a7b38042a48042e65a44fcb8108ea0ff", + "cborBytes": [ + 191, 72, 12, 186, 62, 83, 110, 46, 118, 219, 216, 102, 159, 27, 13, 164, 14, 142, 207, 113, 86, 81, 159, 74, 38, + 218, 4, 87, 141, 183, 62, 154, 5, 195, 75, 242, 149, 129, 14, 101, 213, 73, 46, 48, 18, 163, 75, 123, 220, 155, + 246, 162, 22, 99, 151, 79, 169, 21, 27, 231, 68, 212, 9, 220, 98, 70, 118, 70, 123, 175, 197, 204, 26, 240, 255, + 255, 73, 79, 177, 18, 249, 204, 151, 199, 167, 179, 128, 66, 164, 128, 66, 230, 90, 68, 252, 184, 16, 142, 160, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3102, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "83" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17066856751627255367" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "610a2ff8ebb117" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6912013827869486863" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac4403cb38531ad925f473" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18417625678150997867" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3810039520080490232" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7c5bf5" + } + ] + } + } + ] + }, + "cborHex": "bf4183d8669f1becd9a7caa1383e479f47610a2ff8ebb1171b5fec67f47cbfaf0f41d7ffff4bac4403cb38531ad925f473d8669f1bff988cf9384d976b9f1b34dffac1ce98eef8437c5bf5ffffff", + "cborBytes": [ + 191, 65, 131, 216, 102, 159, 27, 236, 217, 167, 202, 161, 56, 62, 71, 159, 71, 97, 10, 47, 248, 235, 177, 23, 27, + 95, 236, 103, 244, 124, 191, 175, 15, 65, 215, 255, 255, 75, 172, 68, 3, 203, 56, 83, 26, 217, 37, 244, 115, 216, + 102, 159, 27, 255, 152, 140, 249, 56, 77, 151, 107, 159, 27, 52, 223, 250, 193, 206, 152, 238, 248, 67, 124, 91, + 245, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3103, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "110039c90014c204c8eb" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7c7bf53052cf85ec3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04fd03426b" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a110039c90014c204c8ebbf0f1bfffffffffffffff849b7c7bf53052cf85ec34504fd03426bffff", + "cborBytes": [ + 191, 74, 17, 0, 57, 201, 0, 20, 194, 4, 200, 235, 191, 15, 27, 255, 255, 255, 255, 255, 255, 255, 248, 73, 183, + 199, 191, 83, 5, 44, 248, 94, 195, 69, 4, 253, 3, 66, 107, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3104, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0303" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6216825407092679873" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17540470340426536242" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ae78daae9de259fc25deb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d9c10a33be2e401" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "882baf" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13121978823533770552" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11679349799506571820" + } + }, + { + "_tag": "ByteArray", + "bytearray": "10f5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "819172641207732304" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6839922565443004554" + } + } + ] + } + } + ] + }, + "cborHex": "bf420303bf1b564699c50461e4c11bf36c44d75a6615324b7ae78daae9de259fc25deb486d9c10a33be2e401ff43882baf9f1bb61aa2377eedb7381ba21562c3471e722c4210f51b0b5e492d50e7c8501b5eec49557468a88affff", + "cborBytes": [ + 191, 66, 3, 3, 191, 27, 86, 70, 153, 197, 4, 97, 228, 193, 27, 243, 108, 68, 215, 90, 102, 21, 50, 75, 122, 231, + 141, 170, 233, 222, 37, 159, 194, 93, 235, 72, 109, 156, 16, 163, 59, 226, 228, 1, 255, 67, 136, 43, 175, 159, 27, + 182, 26, 162, 55, 126, 237, 183, 56, 27, 162, 21, 98, 195, 71, 30, 114, 44, 66, 16, 245, 27, 11, 94, 73, 45, 80, + 231, 200, 80, 27, 94, 236, 73, 85, 116, 104, 168, 138, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3105, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5207337157741478153" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14813778070554830726" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2baed309bd0b2dc987" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6532333957358651701" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4605447727844513625" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3709909862041385115" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad7211d0ef" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7989922169572451264" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d436f11417f4ea7be8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13405185353665441497" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2498712106410044896" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed531d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f43b3ded1f4f2a41e8453" + } + } + ] + }, + "cborHex": "bf1b48442d8e28df8109d8669f1bcd951cab1ce467869f492baed309bd0b2dc9871b5aa7831fda9589351b3fe9d64ec9cd57591b337c3f5d13b1f89bffff45ad7211d0efd8669f1b6ee1e7e17c6263c080ff49d436f11417f4ea7be8bf1bba08c90e317f6ed91b22ad356c0a89ede0ff43ed531d4b0f43b3ded1f4f2a41e8453ff", + "cborBytes": [ + 191, 27, 72, 68, 45, 142, 40, 223, 129, 9, 216, 102, 159, 27, 205, 149, 28, 171, 28, 228, 103, 134, 159, 73, 43, + 174, 211, 9, 189, 11, 45, 201, 135, 27, 90, 167, 131, 31, 218, 149, 137, 53, 27, 63, 233, 214, 78, 201, 205, 87, + 89, 27, 51, 124, 63, 93, 19, 177, 248, 155, 255, 255, 69, 173, 114, 17, 208, 239, 216, 102, 159, 27, 110, 225, + 231, 225, 124, 98, 99, 192, 128, 255, 73, 212, 54, 241, 20, 23, 244, 234, 123, 232, 191, 27, 186, 8, 201, 14, 49, + 127, 110, 217, 27, 34, 173, 53, 108, 10, 137, 237, 224, 255, 67, 237, 83, 29, 75, 15, 67, 179, 222, 209, 244, 242, + 164, 30, 132, 83, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3106, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "469309392462433608" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "426768159867368477" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2761507339753333030" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3064f19d222e2cc5fb76f05c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "255641130955057873" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a316e2a5ff216b6e121" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11000942209054086939" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88117ad823" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6dbc1d4642" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d64ca8c871a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5821492144097275377" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3200362068256204832" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2642919801951429903" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8604943437652157423" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4001760854716206024" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17594571482153119358" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8076587821714922950" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16177375472690666301" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15191922672720216398" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "50417d05650b" + }, + { + "_tag": "ByteArray", + "bytearray": "b1936e45dbbb28bb4cafed36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17267310104031406570" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b06835267eb7a4d489f1b05ec2f615a57741dff1b2652d84b5ea1a126bf4c3064f19d222e2cc5fb76f05c1b038c3841108e2ad14a7a316e2a5ff216b6e1211b98ab32a75545171b4588117ad823456dbc1d464246d64ca8c871a11b50ca1842efa52df1ff1b2c69f858470ba820bf1b24ad898e9d29250f1b776ae6773195e3efff1b37891c4b8d6c4bc81bf42c798b00f46e7e1b7015cdd50e905dc6d8669f1be0819547efd81b3d80ff1bd2d48d2e3ab1014e9f4650417d05650b4cb1936e45dbbb28bb4cafed361befa1cf0db14e29eaffff", + "cborBytes": [ + 191, 27, 6, 131, 82, 103, 235, 122, 77, 72, 159, 27, 5, 236, 47, 97, 90, 87, 116, 29, 255, 27, 38, 82, 216, 75, + 94, 161, 161, 38, 191, 76, 48, 100, 241, 157, 34, 46, 44, 197, 251, 118, 240, 92, 27, 3, 140, 56, 65, 16, 142, 42, + 209, 74, 122, 49, 110, 42, 95, 242, 22, 182, 225, 33, 27, 152, 171, 50, 167, 85, 69, 23, 27, 69, 136, 17, 122, + 216, 35, 69, 109, 188, 29, 70, 66, 70, 214, 76, 168, 200, 113, 161, 27, 80, 202, 24, 66, 239, 165, 45, 241, 255, + 27, 44, 105, 248, 88, 71, 11, 168, 32, 191, 27, 36, 173, 137, 142, 157, 41, 37, 15, 27, 119, 106, 230, 119, 49, + 149, 227, 239, 255, 27, 55, 137, 28, 75, 141, 108, 75, 200, 27, 244, 44, 121, 139, 0, 244, 110, 126, 27, 112, 21, + 205, 213, 14, 144, 93, 198, 216, 102, 159, 27, 224, 129, 149, 71, 239, 216, 27, 61, 128, 255, 27, 210, 212, 141, + 46, 58, 177, 1, 78, 159, 70, 80, 65, 125, 5, 101, 11, 76, 177, 147, 110, 69, 219, 187, 40, 187, 76, 175, 237, 54, + 27, 239, 161, 207, 13, 177, 78, 41, 234, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3107, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0107002c060105" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2221774430815376405" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8706317264613960647" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f67e8d5b5ddf974aef9bdc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17909144515806371020" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + }, + "cborHex": "bf0c470107002c06010510d87e801b1ed55412c7cbd4151bfffffffffffffff21b78d30d6c932a6bc74bf67e8d5b5ddf974aef9bdc1bf88a100ce7c61ccc02ff", + "cborBytes": [ + 191, 12, 71, 1, 7, 0, 44, 6, 1, 5, 16, 216, 126, 128, 27, 30, 213, 84, 18, 199, 203, 212, 21, 27, 255, 255, 255, + 255, 255, 255, 255, 242, 27, 120, 211, 13, 108, 147, 42, 107, 199, 75, 246, 126, 141, 91, 93, 223, 151, 74, 239, + 155, 220, 27, 248, 138, 16, 12, 231, 198, 28, 204, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3108, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11785502910227080338" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9603554864814421244" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16387535366716906521" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1b84e9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1281814004181154353" + } + } + ] + } + } + ] + }, + "cborHex": "bf1ba38e84745f6ae4929f1b8546ae448a3cf4fc1be36c3897554fdc19431b84e91b11c9eb0ba356ba31ffff", + "cborBytes": [ + 191, 27, 163, 142, 132, 116, 95, 106, 228, 146, 159, 27, 133, 70, 174, 68, 138, 60, 244, 252, 27, 227, 108, 56, + 151, 85, 79, 220, 25, 67, 27, 132, 233, 27, 17, 201, 235, 11, 163, 86, 186, 49, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3109, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22beed84" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1814453646755424135" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16452138599757751776" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3272839677605807250" + } + }, + { + "_tag": "ByteArray", + "bytearray": "175f88336f68db3c9ba56f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9930455434644512624" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13999334683761962165" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6911856e306ad725d14ede52" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e700a1731f2bbb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c28d1288b395cb7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18364044045217532927" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd36e80f3af63e77d3a27ecb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3787056902131772021" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f8e579095805f42f3cd012" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8752050175409097200" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf36290778522bcfd6d9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1941477148568316754" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "254a992af009" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3820665296103696973" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16042641040169717574" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10172423285116501417" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3451029913742859922" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10565261168220240248" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6795344955533859619" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4422beed84d8669f1b192e3bfa7444e7879f1be451bce3aa0da5e01b2d6b7658b67f84924b175f88336f68db3c9ba56f1b89d0109a9fd55f701bc247a0b9256fecb5ffff4162804c6911856e306ad725d14ede5247e700a1731f2bbb489c28d1288b395cb71bfeda30c322d18bff4cbd36e80f3af63e77d3a27ecbd8669f1b348e543013c16a759f4bf8e579095805f42f3cd0121b79758743a1a789f0ffff4acf36290778522bcfd6d9bf1b1af1832e23f3eb5246254a992af0091b3505bad813ec6a4d1bdea2e9074a6b4f461b8d2bb514fe47fda91b2fe4856c15e3de921b929f590e2afef9781b5e4dea3bd8d69b23ffff", + "cborBytes": [ + 191, 68, 34, 190, 237, 132, 216, 102, 159, 27, 25, 46, 59, 250, 116, 68, 231, 135, 159, 27, 228, 81, 188, 227, + 170, 13, 165, 224, 27, 45, 107, 118, 88, 182, 127, 132, 146, 75, 23, 95, 136, 51, 111, 104, 219, 60, 155, 165, + 111, 27, 137, 208, 16, 154, 159, 213, 95, 112, 27, 194, 71, 160, 185, 37, 111, 236, 181, 255, 255, 65, 98, 128, + 76, 105, 17, 133, 110, 48, 106, 215, 37, 209, 78, 222, 82, 71, 231, 0, 161, 115, 31, 43, 187, 72, 156, 40, 209, + 40, 139, 57, 92, 183, 27, 254, 218, 48, 195, 34, 209, 139, 255, 76, 189, 54, 232, 15, 58, 246, 62, 119, 211, 162, + 126, 203, 216, 102, 159, 27, 52, 142, 84, 48, 19, 193, 106, 117, 159, 75, 248, 229, 121, 9, 88, 5, 244, 47, 60, + 208, 18, 27, 121, 117, 135, 67, 161, 167, 137, 240, 255, 255, 74, 207, 54, 41, 7, 120, 82, 43, 207, 214, 217, 191, + 27, 26, 241, 131, 46, 35, 243, 235, 82, 70, 37, 74, 153, 42, 240, 9, 27, 53, 5, 186, 216, 19, 236, 106, 77, 27, + 222, 162, 233, 7, 74, 107, 79, 70, 27, 141, 43, 181, 20, 254, 71, 253, 169, 27, 47, 228, 133, 108, 21, 227, 222, + 146, 27, 146, 159, 89, 14, 42, 254, 249, 120, 27, 94, 77, 234, 59, 216, 214, 155, 35, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3110, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11080335576327008629" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5787386476994653409" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76a594" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "714f04d044" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1763328663067809126" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c1e99bd8040632ad22ffaf1d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9996460994963728918" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14775154481528678661" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa50d005000343fa" + } + } + ] + }, + "cborHex": "bf05bf1b99c54280231831751b5050ed56832a6ce14376a59445714f04d044ff0ed8669f1b18789a13986bd5669f4cc1e99bd8040632ad22ffaf1dffff1b8aba904fb7dc6a169f1bcd0be4b80509a905ff1bfffffffffffffff448fa50d005000343faff", + "cborBytes": [ + 191, 5, 191, 27, 153, 197, 66, 128, 35, 24, 49, 117, 27, 80, 80, 237, 86, 131, 42, 108, 225, 67, 118, 165, 148, + 69, 113, 79, 4, 208, 68, 255, 14, 216, 102, 159, 27, 24, 120, 154, 19, 152, 107, 213, 102, 159, 76, 193, 233, 155, + 216, 4, 6, 50, 173, 34, 255, 175, 29, 255, 255, 27, 138, 186, 144, 79, 183, 220, 106, 22, 159, 27, 205, 11, 228, + 184, 5, 9, 169, 5, 255, 27, 255, 255, 255, 255, 255, 255, 255, 244, 72, 250, 80, 208, 5, 0, 3, 67, 250, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3111, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1890808733474276244" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14563767107176630831" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9166820729073120078" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4563948739864477510" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11567188666263127065" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "275c" + }, + { + "_tag": "ByteArray", + "bytearray": "5da8bc78c5fff8" + }, + { + "_tag": "ByteArray", + "bytearray": "868467231ac2a018" + } + ] + } + } + ] + }, + "cborHex": "bf1b1a3d808670f0c3949f1bca1ce50596c80a2f1b7f3716e29c17334e1b3f566732b4b6bf461ba086e8ce6e89c419ff1bffffffffffffffecd8669f1bffffffffffffffee9f42275c475da8bc78c5fff848868467231ac2a018ffffff", + "cborBytes": [ + 191, 27, 26, 61, 128, 134, 112, 240, 195, 148, 159, 27, 202, 28, 229, 5, 150, 200, 10, 47, 27, 127, 55, 22, 226, + 156, 23, 51, 78, 27, 63, 86, 103, 50, 180, 182, 191, 70, 27, 160, 134, 232, 206, 110, 137, 196, 25, 255, 27, 255, + 255, 255, 255, 255, 255, 255, 236, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 66, 39, 92, 71, + 93, 168, 188, 120, 197, 255, 248, 72, 134, 132, 103, 35, 26, 194, 160, 24, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3112, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3324109149488043133" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67d8a3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb0301" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3990306235828457123" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13725133244578686794" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0d90ddd4c738a6be85467e88" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "31069820062337846" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b11a0ee00303fcfa82fc" + } + } + ] + }, + "cborHex": "bf1b2e219ba8d9dc547dbf044367d8a30843fb0301ff1b37606a614394cea39f1bbe7977f79204674a4c0d90ddd4c738a6be85467e881b006e61d6340d0b36ff1bfffffffffffffffb4ab11a0ee00303fcfa82fcff", + "cborBytes": [ + 191, 27, 46, 33, 155, 168, 217, 220, 84, 125, 191, 4, 67, 103, 216, 163, 8, 67, 251, 3, 1, 255, 27, 55, 96, 106, + 97, 67, 148, 206, 163, 159, 27, 190, 121, 119, 247, 146, 4, 103, 74, 76, 13, 144, 221, 212, 199, 56, 166, 190, + 133, 70, 126, 136, 27, 0, 110, 97, 214, 52, 13, 11, 54, 255, 27, 255, 255, 255, 255, 255, 255, 255, 251, 74, 177, + 26, 14, 224, 3, 3, 252, 250, 130, 252, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3113, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15294049392982571812" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "00f8fc8fcfd4f9008300" + } + ] + } + } + ] + }, + "cborHex": "bf1bd43f60e43e013b24d905029f4a00f8fc8fcfd4f9008300ffff", + "cborBytes": [ + 191, 27, 212, 63, 96, 228, 62, 1, 59, 36, 217, 5, 2, 159, 74, 0, 248, 252, 143, 207, 212, 249, 0, 131, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3114, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12481214042921512447" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11502810688369423375" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1bad362e0b31f42dffd8669f1b9fa2316066d3740f80ffff", + "cborBytes": [ + 191, 27, 173, 54, 46, 11, 49, 244, 45, 255, 216, 102, 159, 27, 159, 162, 49, 96, 102, 211, 116, 15, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3115, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04be1a1ef80500c90600b6" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4b04be1a1ef80500c90600b680ff", + "cborBytes": [191, 75, 4, 190, 26, 30, 248, 5, 0, 201, 6, 0, 182, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3116, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1bcd6ee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0cce17e7c407a2e5969" + } + } + ] + }, + "cborHex": "bf44a1bcd6ee4ad0cce17e7c407a2e5969ff", + "cborBytes": [191, 68, 161, 188, 214, 238, 74, 208, 204, 225, 126, 124, 64, 122, 46, 89, 105, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3117, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13047014967457350358" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9248739411657335379" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15554129029169758107" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2365459185911123957" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4248bdc1695ae3a9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2815952890343723607" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15779809995322391316" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16267272325117174415" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d584a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5798552881176565708" + } + } + } + ] + }, + "cborHex": "bf1bb5104efca28002d61b805a1f7e33fda2531bd7db5df156413f9b9f1b20d3cc98caeacff5484248bdc1695ae3a91b2714463bf52c1257ff1bdafd2595f2597b141be1c0f5fdf326e28f433d584a1b5078991f95d8d7ccff", + "cborBytes": [ + 191, 27, 181, 16, 78, 252, 162, 128, 2, 214, 27, 128, 90, 31, 126, 51, 253, 162, 83, 27, 215, 219, 93, 241, 86, + 65, 63, 155, 159, 27, 32, 211, 204, 152, 202, 234, 207, 245, 72, 66, 72, 189, 193, 105, 90, 227, 169, 27, 39, 20, + 70, 59, 245, 44, 18, 87, 255, 27, 218, 253, 37, 149, 242, 89, 123, 20, 27, 225, 192, 245, 253, 243, 38, 226, 143, + 67, 61, 88, 74, 27, 80, 120, 153, 31, 149, 216, 215, 204, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3118, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6239467063824075325" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16265235413058699819" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e2ce6b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16553209235014466798" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16551266576282106951" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a35ddb077ac3187169" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c1d2141f" + }, + { + "_tag": "ByteArray", + "bytearray": "a96e22ecbde15f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8384356615413515783" + } + }, + { + "_tag": "ByteArray", + "bytearray": "72915365bd5f827b" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd6b2f9c0a9e6b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4402383276441278161" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6987674900727199755" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3baf246aece0ce641ea8ee5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "28affabf194993" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12479886749756087358" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b56970a3c86fbca3d9f1be1b9b96e6777c22b43e2ce6b1be5b8d018b9c0bcee1be5b1e9423e173c47ff49a35ddb077ac31871699f44c1d2141f47a96e22ecbde15f1b745b37eb63eb46074872915365bd5f827bff47bd6b2f9c0a9e6b9f1b3d186843dd6716d11b60f9354cc7c1f80bff4ce3baf246aece0ce641ea8ee59f4728affabf1949931bad3176e0ac50dc3effff", + "cborBytes": [ + 191, 27, 86, 151, 10, 60, 134, 251, 202, 61, 159, 27, 225, 185, 185, 110, 103, 119, 194, 43, 67, 226, 206, 107, + 27, 229, 184, 208, 24, 185, 192, 188, 238, 27, 229, 177, 233, 66, 62, 23, 60, 71, 255, 73, 163, 93, 219, 7, 122, + 195, 24, 113, 105, 159, 68, 193, 210, 20, 31, 71, 169, 110, 34, 236, 189, 225, 95, 27, 116, 91, 55, 235, 99, 235, + 70, 7, 72, 114, 145, 83, 101, 189, 95, 130, 123, 255, 71, 189, 107, 47, 156, 10, 158, 107, 159, 27, 61, 24, 104, + 67, 221, 103, 22, 209, 27, 96, 249, 53, 76, 199, 193, 248, 11, 255, 76, 227, 186, 242, 70, 174, 206, 12, 230, 65, + 234, 142, 229, 159, 71, 40, 175, 250, 191, 25, 73, 147, 27, 173, 49, 118, 224, 172, 80, 220, 62, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3119, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7716449770009864153" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14407414181108096857" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14168098140574622565" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6054396688916654491" + } + } + } + ] + }, + "cborHex": "bf1b6b16562eac9527d91bc7f16add2cdf9f591bc49f32316bd2a3651b540589b6042da99bff", + "cborBytes": [ + 191, 27, 107, 22, 86, 46, 172, 149, 39, 217, 27, 199, 241, 106, 221, 44, 223, 159, 89, 27, 196, 159, 50, 49, 107, + 210, 163, 101, 27, 84, 5, 137, 182, 4, 45, 169, 155, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3120, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26fd02fd029c14f903" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3267835292157710166" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8592573891473790581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "697345235695549059" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12533570520156116963" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + } + ] + } + } + ] + }, + "cborHex": "bf4107bf094926fd02fd029c14f9031b2d59aee26d8b8f56071b773ef46dcb9756751b09ad77cc1371ba831badf02ffb7d3697e341fdffff", + "cborBytes": [ + 191, 65, 7, 191, 9, 73, 38, 253, 2, 253, 2, 156, 20, 249, 3, 27, 45, 89, 174, 226, 109, 139, 143, 86, 7, 27, 119, + 62, 244, 109, 203, 151, 86, 117, 27, 9, 173, 119, 204, 19, 113, 186, 131, 27, 173, 240, 47, 251, 125, 54, 151, + 227, 65, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3121, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9471114911256989708" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17565556872847565494" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d63461bf6cc0f6" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fafb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6c86bd3ad7c461" + }, + { + "_tag": "ByteArray", + "bytearray": "dc3d5b14" + }, + { + "_tag": "ByteArray", + "bytearray": "d54c27e6820955b35677165e" + }, + { + "_tag": "ByteArray", + "bytearray": "f2d872dccc" + }, + { + "_tag": "ByteArray", + "bytearray": "010205d3" + } + ] + } + } + ] + }, + "cborHex": "bf1b837028d4e860d00c9f1bf3c564e8d80022b647d63461bf6cc0f6ff42fafb9f476c86bd3ad7c46144dc3d5b144cd54c27e6820955b35677165e45f2d872dccc44010205d3ffff", + "cborBytes": [ + 191, 27, 131, 112, 40, 212, 232, 96, 208, 12, 159, 27, 243, 197, 100, 232, 216, 0, 34, 182, 71, 214, 52, 97, 191, + 108, 192, 246, 255, 66, 250, 251, 159, 71, 108, 134, 189, 58, 215, 196, 97, 68, 220, 61, 91, 20, 76, 213, 76, 39, + 230, 130, 9, 85, 179, 86, 119, 22, 94, 69, 242, 216, 114, 220, 204, 68, 1, 2, 5, 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3122, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a73f994" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14669940826410784464" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b9fa44b01812077962b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17762694420575533051" + } + } + ] + } + } + ] + }, + "cborHex": "bf446a73f994d8669f1bcb961974fa3716d09f4ab9fa44b01812077962b81bf681c476f837b7fbffffff", + "cborBytes": [ + 191, 68, 106, 115, 249, 148, 216, 102, 159, 27, 203, 150, 25, 116, 250, 55, 22, 208, 159, 74, 185, 250, 68, 176, + 24, 18, 7, 121, 98, 184, 27, 246, 129, 196, 118, 248, 55, 183, 251, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3123, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5c6ea07" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4217644399119233907" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00fff1bc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7168632704437232355" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a906" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a5021e44a3df97b67de4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3493319202411173456" + } + } + ] + } + } + ] + }, + "cborHex": "bf0c44c5c6ea071b3a88153c266af3734400fff1bc1b637c1976b13aa2e342a9061bffffffffffffffec9f4aa5021e44a3df97b67de41b307ac34e62c4d650ffff", + "cborBytes": [ + 191, 12, 68, 197, 198, 234, 7, 27, 58, 136, 21, 60, 38, 106, 243, 115, 68, 0, 255, 241, 188, 27, 99, 124, 25, 118, + 177, 58, 162, 227, 66, 169, 6, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, 74, 165, 2, 30, 68, 163, 223, 151, + 182, 125, 228, 27, 48, 122, 195, 78, 98, 196, 214, 80, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3124, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b29d480bb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "826882e307" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + } + ] + }, + "cborHex": "bf452b29d480bb45826882e30742fb2d0dff", + "cborBytes": [191, 69, 43, 41, 212, 128, 187, 69, 130, 104, 130, 227, 7, 66, 251, 45, 13, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3125, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0600f76907" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14629003915213549003" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aefc02610392030003a5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0342dd180bef58" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "620429b173d78e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e071f07" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "514120ac8dbeab3f978f5707" + }, + { + "_tag": "ByteArray", + "bytearray": "ed14079205" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "941d" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3f97f49fa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "22f38c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dff89489e4ae225f34a5ec" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + }, + "cborHex": "bf450600f76907bf1bcb04a98d981a2dcb4aaefc02610392030003a51bfffffffffffffffd470342dd180bef58ff47620429b173d78e12446e071f079f4c514120ac8dbeab3f978f570745ed14079205ff42941da045c3f97f49fad905039f4322f38cff4bdff89489e4ae225f34a5ec07ff", + "cborBytes": [ + 191, 69, 6, 0, 247, 105, 7, 191, 27, 203, 4, 169, 141, 152, 26, 45, 203, 74, 174, 252, 2, 97, 3, 146, 3, 0, 3, + 165, 27, 255, 255, 255, 255, 255, 255, 255, 253, 71, 3, 66, 221, 24, 11, 239, 88, 255, 71, 98, 4, 41, 177, 115, + 215, 142, 18, 68, 110, 7, 31, 7, 159, 76, 81, 65, 32, 172, 141, 190, 171, 63, 151, 143, 87, 7, 69, 237, 20, 7, + 146, 5, 255, 66, 148, 29, 160, 69, 195, 249, 127, 73, 250, 217, 5, 3, 159, 67, 34, 243, 140, 255, 75, 223, 248, + 148, 137, 228, 174, 34, 95, 52, 165, 236, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3126, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9079ee9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3929473691041947609" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91316ce4dc9eab" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7973667749381475326" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2cb534a64d7d19a4" + }, + { + "_tag": "ByteArray", + "bytearray": "0276" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1780353060290719399" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2150909584310281992" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2408e9c019a41fc1f21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10926080591771129998" + } + } + } + ] + }, + "cborHex": "bf449079ee9c1b36884b80b4cc5fd94791316ce4dc9eabd8669f1b6ea828925edf0bfe9f482cb534a64d7d19a44202761b18b515acf5686ea71b1dd990def4cc2708ffff4ab2408e9c019a41fc1f211b97a13c68cbced88eff", + "cborBytes": [ + 191, 68, 144, 121, 238, 156, 27, 54, 136, 75, 128, 180, 204, 95, 217, 71, 145, 49, 108, 228, 220, 158, 171, 216, + 102, 159, 27, 110, 168, 40, 146, 94, 223, 11, 254, 159, 72, 44, 181, 52, 166, 77, 125, 25, 164, 66, 2, 118, 27, + 24, 181, 21, 172, 245, 104, 110, 167, 27, 29, 217, 144, 222, 244, 204, 39, 8, 255, 255, 74, 178, 64, 142, 156, 1, + 154, 65, 252, 31, 33, 27, 151, 161, 60, 104, 203, 206, 216, 142, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3127, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10218942331577411522" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01debd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15568922874213743676" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02b2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e267ed" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14d25ec9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c77e0cfad3d089ab10" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e8c7db0ed56" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb8e03" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b7721536e3c796f4e6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbe23b02fef906" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10302406781769863160" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b8dd0f9e885dfa7c2bf4301debd1bd80fecddccf6bc3c4202b243e267ed4414d25ec90b49c77e0cfad3d089ab10461e8c7db0ed5643fb8e0349b7721536e3c796f4e647fbe23b02fef9061b8ef980622ef7cff8ffff", + "cborBytes": [ + 191, 27, 141, 208, 249, 232, 133, 223, 167, 194, 191, 67, 1, 222, 189, 27, 216, 15, 236, 221, 204, 246, 188, 60, + 66, 2, 178, 67, 226, 103, 237, 68, 20, 210, 94, 201, 11, 73, 199, 126, 12, 250, 211, 208, 137, 171, 16, 70, 30, + 140, 125, 176, 237, 86, 67, 251, 142, 3, 73, 183, 114, 21, 54, 227, 199, 150, 244, 230, 71, 251, 226, 59, 2, 254, + 249, 6, 27, 142, 249, 128, 98, 46, 247, 207, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3128, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6899699901547399552" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "343303994629660519" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11987561804473113665" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5fc0a8811887c980d8669f1b04c3a92a09df9f679f1ba65c5ff2c6a91c41ffffff", + "cborBytes": [ + 191, 27, 95, 192, 168, 129, 24, 135, 201, 128, 216, 102, 159, 27, 4, 195, 169, 42, 9, 223, 159, 103, 159, 27, 166, + 92, 95, 242, 198, 169, 28, 65, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3129, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "824860827315547475" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be16d0561a1c7ef868d1f973" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7736266969019194910" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac7ee1b17644f79216ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2834209158536261404" + } + }, + { + "_tag": "ByteArray", + "bytearray": "908766aaee8b467fb9" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12510478918607724135" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14536271724592572360" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14233051593282377200" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16423802563872932525" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17162793375121763099" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af" + } + ] + } + } + ] + }, + "cborHex": "bf1b0b727e8d59472d539f4cbe16d0561a1c7ef868d1f9731b6b5cbdd1dffa1e1e4aac7ee1b17644f79216ab1b27552236a1b66f1c49908766aaee8b467fb9ff1bad9e264b09a05e67d8669f1bc9bb361df6e527c89f1bc585f5039f6755f01be3ed116a30cbc2ad1bee2e7da46d8f6b1b41afffffff", + "cborBytes": [ + 191, 27, 11, 114, 126, 141, 89, 71, 45, 83, 159, 76, 190, 22, 208, 86, 26, 28, 126, 248, 104, 209, 249, 115, 27, + 107, 92, 189, 209, 223, 250, 30, 30, 74, 172, 126, 225, 177, 118, 68, 247, 146, 22, 171, 27, 39, 85, 34, 54, 161, + 182, 111, 28, 73, 144, 135, 102, 170, 238, 139, 70, 127, 185, 255, 27, 173, 158, 38, 75, 9, 160, 94, 103, 216, + 102, 159, 27, 201, 187, 54, 29, 246, 229, 39, 200, 159, 27, 197, 133, 245, 3, 159, 103, 85, 240, 27, 227, 237, 17, + 106, 48, 203, 194, 173, 27, 238, 46, 125, 164, 109, 143, 107, 27, 65, 175, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3130, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3753086265196451254" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6469029457158068210" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15225457353524852197" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8441791627741336411" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3415a412d06e95b6d8669f1b59c69c045371d7f29f1bd34bb0cb8bb535e51b752744c24763935bffffff", + "cborBytes": [ + 191, 27, 52, 21, 164, 18, 208, 110, 149, 182, 216, 102, 159, 27, 89, 198, 156, 4, 83, 113, 215, 242, 159, 27, 211, + 75, 176, 203, 139, 181, 53, 229, 27, 117, 39, 68, 194, 71, 99, 147, 91, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3131, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7111815957699748fdcf9a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "23f6" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcbcef3cdc96" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10769956524104654097" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e4e495fe1dc4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "497668781199600162" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b7111815957699748fdcf9a9f4223f6ff46dcbcef3cdc96d905029f1b95769265a1a89d1146e4e495fe1dc41b06e8131ea7342a22ffff", + "cborBytes": [ + 191, 75, 113, 17, 129, 89, 87, 105, 151, 72, 253, 207, 154, 159, 66, 35, 246, 255, 70, 220, 188, 239, 60, 220, + 150, 217, 5, 2, 159, 27, 149, 118, 146, 101, 161, 168, 157, 17, 70, 228, 228, 149, 254, 29, 196, 27, 6, 232, 19, + 30, 167, 52, 42, 34, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3132, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4837147837531495063" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10101278828788379630" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a87637b495bb57" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75da54da9046" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24b3b5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82e99c0daf40" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d985eb97" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e76f25b39093ebcc3c6a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2989671034844323185" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2891027924168804165" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d05fcae7f110" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f223cc871bf539ad8b73" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8939583096097979123" + } + } + } + ] + }, + "cborHex": "bf411e9f1b43210054761d1a971b8c2ef3936f1aefee47a87637b495bb57ff4675da54da90464324b3b54682e99c0daf4044d985eb974ae76f25b39093ebcc3c6ad8669f1b297d71f75b2b9d719f1b281efe9467d1074546d05fcae7f110ffff4af223cc871bf539ad8b731b7c0fc7764301baf3ff", + "cborBytes": [ + 191, 65, 30, 159, 27, 67, 33, 0, 84, 118, 29, 26, 151, 27, 140, 46, 243, 147, 111, 26, 239, 238, 71, 168, 118, 55, + 180, 149, 187, 87, 255, 70, 117, 218, 84, 218, 144, 70, 67, 36, 179, 181, 70, 130, 233, 156, 13, 175, 64, 68, 217, + 133, 235, 151, 74, 231, 111, 37, 179, 144, 147, 235, 204, 60, 106, 216, 102, 159, 27, 41, 125, 113, 247, 91, 43, + 157, 113, 159, 27, 40, 30, 254, 148, 103, 209, 7, 69, 70, 208, 95, 202, 231, 241, 16, 255, 255, 74, 242, 35, 204, + 135, 27, 245, 57, 173, 139, 115, 27, 124, 15, 199, 118, 67, 1, 186, 243, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3133, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2467493685998016802" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6384038444435443006" + } + } + } + ] + }, + "cborHex": "bf1b223e4c6f1f6e59221b5898a92421030d3eff", + "cborBytes": [191, 27, 34, 62, 76, 111, 31, 110, 89, 34, 27, 88, 152, 169, 36, 33, 3, 13, 62, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3134, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aeaec704" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4424256095086463669" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1dd60cfe191ca" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9418167527332993366" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1311428015930103114" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15311323262622240201" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2b0bfb68f1421f36" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e48f9f0f83d229" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6371536068880792392" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10663455368951356257" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0440" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdcb38aefb72c962ee" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d679" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13180893260675023107" + } + } + ] + } + } + ] + }, + "cborHex": "bf44aeaec7041b3d661d7a4efc4ab547e1dd60cfe191cad8669f1b82b40d776dcd59569f1b123320d50e02554a1bd47cbf626dc60dc9482b0bfb68f1421f36ffff47e48f9f0f83d2299f1b586c3e4bfb3a7b481b93fc34292093db61420440ff49fdcb38aefb72c962ee9f42d6791bb6ebf095d0e00103ffff", + "cborBytes": [ + 191, 68, 174, 174, 199, 4, 27, 61, 102, 29, 122, 78, 252, 74, 181, 71, 225, 221, 96, 207, 225, 145, 202, 216, 102, + 159, 27, 130, 180, 13, 119, 109, 205, 89, 86, 159, 27, 18, 51, 32, 213, 14, 2, 85, 74, 27, 212, 124, 191, 98, 109, + 198, 13, 201, 72, 43, 11, 251, 104, 241, 66, 31, 54, 255, 255, 71, 228, 143, 159, 15, 131, 210, 41, 159, 27, 88, + 108, 62, 75, 251, 58, 123, 72, 27, 147, 252, 52, 41, 32, 147, 219, 97, 66, 4, 64, 255, 73, 253, 203, 56, 174, 251, + 114, 201, 98, 238, 159, 66, 214, 121, 27, 182, 235, 240, 149, 208, 224, 1, 3, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3135, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04078a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13040606379330013725" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7265163284937792080" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12146148265165786157" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11104275126413859745" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5949126084184415464" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17511583732121805667" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "637ae0e1" + } + } + ] + } + } + ] + }, + "cborHex": "bf084304078a1bb4f98a68efa88a1dbf1b64d30b83e1ed5a501ba88fc97e7e6f0c2d1b9a1a4f64fe1a9ba11b528f8aa75bd29ce81bf305a49fbfa1236344637ae0e1ffff", + "cborBytes": [ + 191, 8, 67, 4, 7, 138, 27, 180, 249, 138, 104, 239, 168, 138, 29, 191, 27, 100, 211, 11, 131, 225, 237, 90, 80, + 27, 168, 143, 201, 126, 126, 111, 12, 45, 27, 154, 26, 79, 100, 254, 26, 155, 161, 27, 82, 143, 138, 167, 91, 210, + 156, 232, 27, 243, 5, 164, 159, 191, 161, 35, 99, 68, 99, 122, 224, 225, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3136, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7319229226427802255" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7336364304490476182" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7222615340367680658" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a3130bf6dc00e011b4" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8399911189734097238" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "73631564661457887" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17906520602499157998" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3541725851411681789" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3176350942102025475" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3750530411701344922" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6394809092041876886" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10161959400768331460" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18251386743507233931" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12078236789419846738" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "601d96" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14815456264519160638" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13171103662392456346" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e0759a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15604047991063897549" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11954030181801149212" + } + } + } + ] + }, + "cborHex": "bf1b65932033d6e2e28f9f1b65d000771802b2961b643be2628fe7149249a3130bf6dc00e011b4ff1b74927ab8f0ee0156bf1b0105978497e703df1bf880bd9d7b2d0fee1b3126bce5a13611fd1b2c14aa5a51f7f5031b340c8f89ccc21a9a1b58beecfcf19825961b8d06883c10bcdec41bfd49f38b1105ac8b1ba79e845de26cac5243601d961bcd9b12fa1800133e4149ff1bb6c928ff58bfb49a9f43e0759aff1bd88cb6f95d82e5cd1ba5e53f1d7c8e431cff", + "cborBytes": [ + 191, 27, 101, 147, 32, 51, 214, 226, 226, 143, 159, 27, 101, 208, 0, 119, 24, 2, 178, 150, 27, 100, 59, 226, 98, + 143, 231, 20, 146, 73, 163, 19, 11, 246, 220, 0, 224, 17, 180, 255, 27, 116, 146, 122, 184, 240, 238, 1, 86, 191, + 27, 1, 5, 151, 132, 151, 231, 3, 223, 27, 248, 128, 189, 157, 123, 45, 15, 238, 27, 49, 38, 188, 229, 161, 54, 17, + 253, 27, 44, 20, 170, 90, 81, 247, 245, 3, 27, 52, 12, 143, 137, 204, 194, 26, 154, 27, 88, 190, 236, 252, 241, + 152, 37, 150, 27, 141, 6, 136, 60, 16, 188, 222, 196, 27, 253, 73, 243, 139, 17, 5, 172, 139, 27, 167, 158, 132, + 93, 226, 108, 172, 82, 67, 96, 29, 150, 27, 205, 155, 18, 250, 24, 0, 19, 62, 65, 73, 255, 27, 182, 201, 40, 255, + 88, 191, 180, 154, 159, 67, 224, 117, 154, 255, 27, 216, 140, 182, 249, 93, 130, 229, 205, 27, 165, 229, 63, 29, + 124, 142, 67, 28, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3137, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1769703223975009912" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fade98c65ebd" + }, + { + "_tag": "ByteArray", + "bytearray": "a40d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10686885756260862715" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10296116148498764928" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7079517170096887344" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10574296798841127406" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14759500554930602241" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4958678d69fe79" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3853842423436653910" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "716056012794055435" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1867175730925614169" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13108041437960114728" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "100437891279290387" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13513814261370037482" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6392761787350463789" + } + } + } + ] + }, + "cborHex": "bf1b188f3fb4b6e4de789f46fade98c65ebd42a40d1b944f71f9491c4afbff1b8ee32715fd6e94801b623f7f5b78e756301b92bf72e9dc79c1eed8669f1bccd4478e36d1c1019f474958678d69fe791b357b9943fd45b5561b09eff12659df4b0b1b19e98a6f3f0d3459ffff1bb5e91e3d0ab692281b0164d3badfb100131bbb8ab678b191a4ea1b58b7a6f9acb7352dff", + "cborBytes": [ + 191, 27, 24, 143, 63, 180, 182, 228, 222, 120, 159, 70, 250, 222, 152, 198, 94, 189, 66, 164, 13, 27, 148, 79, + 113, 249, 73, 28, 74, 251, 255, 27, 142, 227, 39, 21, 253, 110, 148, 128, 27, 98, 63, 127, 91, 120, 231, 86, 48, + 27, 146, 191, 114, 233, 220, 121, 193, 238, 216, 102, 159, 27, 204, 212, 71, 142, 54, 209, 193, 1, 159, 71, 73, + 88, 103, 141, 105, 254, 121, 27, 53, 123, 153, 67, 253, 69, 181, 86, 27, 9, 239, 241, 38, 89, 223, 75, 11, 27, 25, + 233, 138, 111, 63, 13, 52, 89, 255, 255, 27, 181, 233, 30, 61, 10, 182, 146, 40, 27, 1, 100, 211, 186, 223, 177, + 0, 19, 27, 187, 138, 182, 120, 177, 145, 164, 234, 27, 88, 183, 166, 249, 172, 183, 53, 45, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3138, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5432018186068083886" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17515185122351220677" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4590dc57" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18195267503706364030" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13428072047024675605" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9060839733461068966" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15287352269694681331" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10321264701716312527" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9424524288613703786" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3020603709491158038" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12626492139056235609" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5091512831366634663" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11817304816309063721" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8658712878643102595" + } + }, + { + "_tag": "ByteArray", + "bytearray": "da10ddddcd10d095" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14250164289006807778" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7757570086257108540" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16687410862575066277" + } + }, + { + "_tag": "ByteArray", + "bytearray": "595f38" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2920919538099614676" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18234346286554553883" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5393841334130507640" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17103304855804936589" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7848273048259863661" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2701639292631021741" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12624219734876663502" + } + } + ] + } + } + ] + }, + "cborHex": "bf0ed8669f1bfffffffffffffff29f1b4b6267c29a0cc4ae1bf3127011c0f387c5444590dc571bfc82936457a0587e1bba5a1861bd421b15ffff1b7dbe91bb2fb12ca6d8669f1bd42795e4b769c0f39f1b8f3c7f8fd29431cfffff1b82caa2e83fdc606a1b29eb5711e7729c161baf3a4fb3d3b58459d8669f1b46a8aff1b2f39ca79f1ba3ff801ea29d50291b7829ed7cbf9f438348da10ddddcd10d095ffff1bc5c2c0eb95352ae2d8669f1b6ba86ce45f8d263c9f1be79597c40cc81ca543595f381b288930d81decf3d4ffff1bfd0d6956818c1e1b9f1b4adac61d97aaff781bed5b25262f77818d1b6ceaaac165cd246d1b257e269f6c8278ad1baf323cf67fccaeceffff", + "cborBytes": [ + 191, 14, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 27, 75, 98, 103, 194, 154, 12, 196, 174, + 27, 243, 18, 112, 17, 192, 243, 135, 197, 68, 69, 144, 220, 87, 27, 252, 130, 147, 100, 87, 160, 88, 126, 27, 186, + 90, 24, 97, 189, 66, 27, 21, 255, 255, 27, 125, 190, 145, 187, 47, 177, 44, 166, 216, 102, 159, 27, 212, 39, 149, + 228, 183, 105, 192, 243, 159, 27, 143, 60, 127, 143, 210, 148, 49, 207, 255, 255, 27, 130, 202, 162, 232, 63, 220, + 96, 106, 27, 41, 235, 87, 17, 231, 114, 156, 22, 27, 175, 58, 79, 179, 211, 181, 132, 89, 216, 102, 159, 27, 70, + 168, 175, 241, 178, 243, 156, 167, 159, 27, 163, 255, 128, 30, 162, 157, 80, 41, 27, 120, 41, 237, 124, 191, 159, + 67, 131, 72, 218, 16, 221, 221, 205, 16, 208, 149, 255, 255, 27, 197, 194, 192, 235, 149, 53, 42, 226, 216, 102, + 159, 27, 107, 168, 108, 228, 95, 141, 38, 60, 159, 27, 231, 149, 151, 196, 12, 200, 28, 165, 67, 89, 95, 56, 27, + 40, 137, 48, 216, 29, 236, 243, 212, 255, 255, 27, 253, 13, 105, 86, 129, 140, 30, 27, 159, 27, 74, 218, 198, 29, + 151, 170, 255, 120, 27, 237, 91, 37, 38, 47, 119, 129, 141, 27, 108, 234, 170, 193, 101, 205, 36, 109, 27, 37, + 126, 38, 159, 108, 130, 120, 173, 27, 175, 50, 60, 246, 127, 204, 174, 206, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3139, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14603815154912216352" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1422085667570532613" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13227005843199515296" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bcaab2c82520245209f1b13bc43614fb741051bb78fc3bc15ec5aa0ffff", + "cborBytes": [ + 191, 27, 202, 171, 44, 130, 82, 2, 69, 32, 159, 27, 19, 188, 67, 97, 79, 183, 65, 5, 27, 183, 143, 195, 188, 21, + 236, 90, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3140, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "068a263a95442bf62e316cd1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d101e9c096" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2fdcea1cf326cfab7b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "559bb48f097e98369af6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8396583060394940810" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2186119428472532371" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c068a263a95442bf62e316cd145d101e9c096492fdcea1cf326cfab7b9f4a559bb48f097e98369af61b7486a7ce71e7198a1b1e56a809a2af6d93ffff", + "cborBytes": [ + 191, 76, 6, 138, 38, 58, 149, 68, 43, 246, 46, 49, 108, 209, 69, 209, 1, 233, 192, 150, 73, 47, 220, 234, 28, 243, + 38, 207, 171, 123, 159, 74, 85, 155, 180, 143, 9, 126, 152, 54, 154, 246, 27, 116, 134, 167, 206, 113, 231, 25, + 138, 27, 30, 86, 168, 9, 162, 175, 109, 147, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3141, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "045fcf357906dc7a99" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8289501496832466194" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf69f219437e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "377536421a201ec2502eb5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d5db9e36d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14676567388745477926" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab8df6eb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e8dc03d31" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a0f8060" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7fbad00390746211a4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "059b694adf2a24dfc55ddc" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0b97794" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4952866499988439714" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "149a854e2e9e19" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bffebddb3c23" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4762610037418181659" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d4ecb482de827c91e06526" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4823189181976398908" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1762030448055861333" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17178763710165239291" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6288" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd30d2eeeb92569bda" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5444688136308835770" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6c6f948" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c7333af3c94" + } + } + ] + }, + "cborHex": "bf49045fcf357906dc7a99bf1b730a39b113c49d1246cf69f219437e4b377536421a201ec2502eb54119454d5db9e36d1bcbada447c041af2644ab8df6eb452e8dc03d31ff442a0f8060bf497fbad00390746211a44b059b694adf2a24dfc55ddcff44a0b97794d8669f1b44bc1dd71fbe42a29f47149a854e2e9e19ffff46bffebddb3c23d8669f1b421830987c05441b9f4bd4ecb482de827c91e065261b42ef6901b435cc3c1b1873fd5b5bcac0551bee673a93d0c545fb426288ffff49cd30d2eeeb92569bda1b4b8f6b034578c5ba44d6c6f948464c7333af3c94ff", + "cborBytes": [ + 191, 73, 4, 95, 207, 53, 121, 6, 220, 122, 153, 191, 27, 115, 10, 57, 177, 19, 196, 157, 18, 70, 207, 105, 242, + 25, 67, 126, 75, 55, 117, 54, 66, 26, 32, 30, 194, 80, 46, 181, 65, 25, 69, 77, 93, 185, 227, 109, 27, 203, 173, + 164, 71, 192, 65, 175, 38, 68, 171, 141, 246, 235, 69, 46, 141, 192, 61, 49, 255, 68, 42, 15, 128, 96, 191, 73, + 127, 186, 208, 3, 144, 116, 98, 17, 164, 75, 5, 155, 105, 74, 223, 42, 36, 223, 197, 93, 220, 255, 68, 160, 185, + 119, 148, 216, 102, 159, 27, 68, 188, 29, 215, 31, 190, 66, 162, 159, 71, 20, 154, 133, 78, 46, 158, 25, 255, 255, + 70, 191, 254, 189, 219, 60, 35, 216, 102, 159, 27, 66, 24, 48, 152, 124, 5, 68, 27, 159, 75, 212, 236, 180, 130, + 222, 130, 124, 145, 224, 101, 38, 27, 66, 239, 105, 1, 180, 53, 204, 60, 27, 24, 115, 253, 91, 91, 202, 192, 85, + 27, 238, 103, 58, 147, 208, 197, 69, 251, 66, 98, 136, 255, 255, 73, 205, 48, 210, 238, 235, 146, 86, 155, 218, + 27, 75, 143, 107, 3, 69, 120, 197, 186, 68, 214, 198, 249, 72, 70, 76, 115, 51, 175, 60, 148, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3142, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "241f3b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4709063839494359023" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "362a350e75" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7472694406749787644" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4951774958122758363" + } + } + ] + } + } + ] + }, + "cborHex": "bf43241f3b9f1b4159f49cc1b2c7efff45362a350e75d8669f1b67b457f88d5e95fc9f1b44b83d16ba94f0dbffffff", + "cborBytes": [ + 191, 67, 36, 31, 59, 159, 27, 65, 89, 244, 156, 193, 178, 199, 239, 255, 69, 54, 42, 53, 14, 117, 216, 102, 159, + 27, 103, 180, 87, 248, 141, 94, 149, 252, 159, 27, 68, 184, 61, 22, 186, 148, 240, 219, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3143, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13973786099209691012" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e705" + } + } + ] + }, + "cborHex": "bf06d8669f1bc1ecdc6bc2af5f8480ff1042e705ff", + "cborBytes": [191, 6, 216, 102, 159, 27, 193, 236, 220, 107, 194, 175, 95, 132, 128, 255, 16, 66, 231, 5, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3144, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10780366776021661652" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13232242259373020238" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17869939175871822375" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5033359f5f8f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6af" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d505d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4bf813" + } + } + ] + }, + "cborHex": "bf101b959b8e774931b7d41bb7a25e3a3bd7544e1bf7fec7005fad3a27465033359f5f8f42e6af435d505d434bf813ff", + "cborBytes": [ + 191, 16, 27, 149, 155, 142, 119, 73, 49, 183, 212, 27, 183, 162, 94, 58, 59, 215, 84, 78, 27, 247, 254, 199, 0, + 95, 173, 58, 39, 70, 80, 51, 53, 159, 95, 143, 66, 230, 175, 67, 93, 80, 93, 67, 75, 248, 19, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3145, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00d75c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0600dc" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5735439419837339937" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12619733493226508780" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17575501797949769840" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15551201910679341087" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4994500567920054646" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6973633305043318864" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c93dd9dc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9544750539764793530" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6bdf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7477790028909661503" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14316399250712719698" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2a6d20" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18288586013552034367" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ce7804" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14653083777709283889" + } + } + ] + } + } + ] + }, + "cborHex": "bf10bf4300d75c4183414e430600dcff1b4f985fc3c22d5921bf1baf224cbff7dd91ec1bf3e8b9c4280908701bd7d0f7be746b081f1b455007cdf55c9176ff1b60c7528b04f0b85044c93dd9dc1b8475c40bb06600ba9f426bdf1b67c672698a1e4d3fff1bc6ae114459667152432a6d201bfdce1c150df2423f9f43ce78041bcb5a360f7a669a31ffff", + "cborBytes": [ + 191, 16, 191, 67, 0, 215, 92, 65, 131, 65, 78, 67, 6, 0, 220, 255, 27, 79, 152, 95, 195, 194, 45, 89, 33, 191, 27, + 175, 34, 76, 191, 247, 221, 145, 236, 27, 243, 232, 185, 196, 40, 9, 8, 112, 27, 215, 208, 247, 190, 116, 107, 8, + 31, 27, 69, 80, 7, 205, 245, 92, 145, 118, 255, 27, 96, 199, 82, 139, 4, 240, 184, 80, 68, 201, 61, 217, 220, 27, + 132, 117, 196, 11, 176, 102, 0, 186, 159, 66, 107, 223, 27, 103, 198, 114, 105, 138, 30, 77, 63, 255, 27, 198, + 174, 17, 68, 89, 102, 113, 82, 67, 42, 109, 32, 27, 253, 206, 28, 21, 13, 242, 66, 63, 159, 67, 206, 120, 4, 27, + 203, 90, 54, 15, 122, 102, 154, 49, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3146, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4173185222276630627" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13760814243217351453" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "03224650" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4378673061402677156" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6837718998516822761" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11559784969108175614" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee171bad02616c8f1e03f4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14709113135756421200" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5495970280642143772" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16309067375949474904" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4032690913878752105" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28bd943d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16503237638791680537" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15407031418336127197" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d692fb9f2fd5c7b6dbc2afc" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b39ea21d963b54863d8669f1bbef83ba5731b231d80ff4403224650bf1b3cc42bf33c7a8fa41b5ee475338c88f2e91ba06c9b2edb97bafe4bee171bad02616c8f1e03f41bcc214476f9cb28501b4c459bd9f1c7661c1be255725e89616c581b37f6ff0522b03b69ff4428bd943dd8669f1be5074731d008d2199f1bd5d0c571ed3528ddffff4c7d692fb9f2fd5c7b6dbc2afca0ff", + "cborBytes": [ + 191, 27, 57, 234, 33, 217, 99, 181, 72, 99, 216, 102, 159, 27, 190, 248, 59, 165, 115, 27, 35, 29, 128, 255, 68, + 3, 34, 70, 80, 191, 27, 60, 196, 43, 243, 60, 122, 143, 164, 27, 94, 228, 117, 51, 140, 136, 242, 233, 27, 160, + 108, 155, 46, 219, 151, 186, 254, 75, 238, 23, 27, 173, 2, 97, 108, 143, 30, 3, 244, 27, 204, 33, 68, 118, 249, + 203, 40, 80, 27, 76, 69, 155, 217, 241, 199, 102, 28, 27, 226, 85, 114, 94, 137, 97, 108, 88, 27, 55, 246, 255, 5, + 34, 176, 59, 105, 255, 68, 40, 189, 148, 61, 216, 102, 159, 27, 229, 7, 71, 49, 208, 8, 210, 25, 159, 27, 213, + 208, 197, 113, 237, 53, 40, 221, 255, 255, 76, 125, 105, 47, 185, 242, 253, 92, 123, 109, 188, 42, 252, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3147, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3586279220590732949" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17967035261683114865" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "53d92fecd7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16373961008889929287" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2014693122401577069" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8064365422867669602" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5593937250472159165" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6970649907466637429" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11305779299934383286" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7a543ce54980c1417a6949cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17441554861456819002" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14552488604221203687" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04039acf59c172df" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12860954538962417503" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3555602570788299860" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16052389339384465253" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "777d7b416ea12e02a84f8f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13936202691459173382" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb7d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10180952680881104217" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b31c505f340ace695d8669f1bf957bb60878a23719f4553d92fecd71be33bfec8dcfb1e471b1bf5a0b8742b286d1b6fea61a010f86262ffff1b4da1a84a9637e7bd1b60bcb928a42890751b9ce6325f698dacb69f4c7a543ce54980c1417a6949cc1bf20cd9bcb79f033a1bc9f4d3487c8664e74804039acf59c172dfff1bb27b4a034f4d775f1b315809b3224d64541bdec58b0e12474765bf4b777d7b416ea12e02a84f8f1bc1675682be444c0642eb7d1b8d4a0285b2faa559ffff", + "cborBytes": [ + 191, 27, 49, 197, 5, 243, 64, 172, 230, 149, 216, 102, 159, 27, 249, 87, 187, 96, 135, 138, 35, 113, 159, 69, 83, + 217, 47, 236, 215, 27, 227, 59, 254, 200, 220, 251, 30, 71, 27, 27, 245, 160, 184, 116, 43, 40, 109, 27, 111, 234, + 97, 160, 16, 248, 98, 98, 255, 255, 27, 77, 161, 168, 74, 150, 55, 231, 189, 27, 96, 188, 185, 40, 164, 40, 144, + 117, 27, 156, 230, 50, 95, 105, 141, 172, 182, 159, 76, 122, 84, 60, 229, 73, 128, 193, 65, 122, 105, 73, 204, 27, + 242, 12, 217, 188, 183, 159, 3, 58, 27, 201, 244, 211, 72, 124, 134, 100, 231, 72, 4, 3, 154, 207, 89, 193, 114, + 223, 255, 27, 178, 123, 74, 3, 79, 77, 119, 95, 27, 49, 88, 9, 179, 34, 77, 100, 84, 27, 222, 197, 139, 14, 18, + 71, 71, 101, 191, 75, 119, 125, 123, 65, 110, 161, 46, 2, 168, 79, 143, 27, 193, 103, 86, 130, 190, 68, 76, 6, 66, + 235, 125, 27, 141, 74, 2, 133, 178, 250, 165, 89, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3148, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "251802917f1082c388e2d0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "89378e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10136125007946233750" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3809388173778493962" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ae260fefc7" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5fdc91d0d7eeae17fbe557" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b835ea" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8b457299" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a075d2d74ea2d577dcd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91c8af" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1396532455829985301" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c27ebc7a83b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72c6cf6333e9eecc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d79ccfd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7078" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4be99c39227fa9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c552cc0fbee" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "766d20a381832a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97f11f71f8e9ad4672c70c76" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2325851648133296882" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4b251802917f1082c388e2d09f4389378e1b8caabffdc196b7961b34ddaa5c6da4220a45ae260fefc7ff4b5fdc91d0d7eeae17fbe55743b835ea448b4572994a0a075d2d74ea2d577dcd4391c8af9f1b13617ade930cd815ff41dcbf462c27ebc7a83b4872c6cf6333e9eecc443d79ccfd427078474be99c39227fa94100468c552cc0fbee47766d20a381832a4c97f11f71f8e9ad4672c70c761b204715c0473df2f2ffff", + "cborBytes": [ + 191, 75, 37, 24, 2, 145, 127, 16, 130, 195, 136, 226, 208, 159, 67, 137, 55, 142, 27, 140, 170, 191, 253, 193, + 150, 183, 150, 27, 52, 221, 170, 92, 109, 164, 34, 10, 69, 174, 38, 15, 239, 199, 255, 75, 95, 220, 145, 208, 215, + 238, 174, 23, 251, 229, 87, 67, 184, 53, 234, 68, 139, 69, 114, 153, 74, 10, 7, 93, 45, 116, 234, 45, 87, 125, + 205, 67, 145, 200, 175, 159, 27, 19, 97, 122, 222, 147, 12, 216, 21, 255, 65, 220, 191, 70, 44, 39, 235, 199, 168, + 59, 72, 114, 198, 207, 99, 51, 233, 238, 204, 68, 61, 121, 204, 253, 66, 112, 120, 71, 75, 233, 156, 57, 34, 127, + 169, 65, 0, 70, 140, 85, 44, 192, 251, 238, 71, 118, 109, 32, 163, 129, 131, 42, 76, 151, 241, 31, 113, 248, 233, + 173, 70, 114, 199, 12, 118, 27, 32, 71, 21, 192, 71, 61, 242, 242, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3149, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16c89f64aee7373f0df7d8c8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ab6d625066a27d3cc2395" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "107786603029103612" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "376068940857232257" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dea95fddf28fa1f27de49d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d3525e4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6194284872b3b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17e11ba412dff48b9d" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "23e2eb0c76d95869" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1754159461755046873" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3233927866939706638" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d13b83591" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3809749135732928679" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2facbe4d7d42" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "784148384818911322" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "851f67d8cc7f8eeb2213" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "513c7ccd63d7079227" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9470d1730da" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "658904478314907389" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11838443097681517112" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1688157539013953605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f649637b4dadc7b735d7c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5193219199742119877" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6996802096319010250" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9540708965752196516" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9202461856473835374" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16097174218343718126" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "576751211900062649" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d91b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14278700884028755712" + } + } + } + ] + }, + "cborHex": "bf4c16c89f64aee7373f0df7d8c8bf4b1ab6d625066a27d3cc23951b017eef58291883fc41851b053810b58eda4b814bdea95fddf28fa1f27de49d449d3525e447f6194284872b3b4917e11ba412dff48b9dff4823e2eb0c76d95869bf1b185806bc8d4ccbd91b2ce13842ca2d8d0eff454d13b83591bf1b34def2a76eb670a7462facbe4d7d42416f1b0ae1dacd2853d85a4a851f67d8cc7f8eeb221341d2ff49513c7ccd63d70792278046b9470d1730dabf1b0924e621cadfc6fd1ba44a99464afb5a381b176d8a5665d308454b0f649637b4dadc7b735d7c1b48120558e95e0fc51b6119a26f9acd95ca1b84676841690b4da41b7fb5b64d3e34676e1bdf64a6aa43f41cee1b0801082be5144bb9ff42d91b1bc62822cd5e970f00ff", + "cborBytes": [ + 191, 76, 22, 200, 159, 100, 174, 231, 55, 63, 13, 247, 216, 200, 191, 75, 26, 182, 214, 37, 6, 106, 39, 211, 204, + 35, 149, 27, 1, 126, 239, 88, 41, 24, 131, 252, 65, 133, 27, 5, 56, 16, 181, 142, 218, 75, 129, 75, 222, 169, 95, + 221, 242, 143, 161, 242, 125, 228, 157, 68, 157, 53, 37, 228, 71, 246, 25, 66, 132, 135, 43, 59, 73, 23, 225, 27, + 164, 18, 223, 244, 139, 157, 255, 72, 35, 226, 235, 12, 118, 217, 88, 105, 191, 27, 24, 88, 6, 188, 141, 76, 203, + 217, 27, 44, 225, 56, 66, 202, 45, 141, 14, 255, 69, 77, 19, 184, 53, 145, 191, 27, 52, 222, 242, 167, 110, 182, + 112, 167, 70, 47, 172, 190, 77, 125, 66, 65, 111, 27, 10, 225, 218, 205, 40, 83, 216, 90, 74, 133, 31, 103, 216, + 204, 127, 142, 235, 34, 19, 65, 210, 255, 73, 81, 60, 124, 205, 99, 215, 7, 146, 39, 128, 70, 185, 71, 13, 23, 48, + 218, 191, 27, 9, 36, 230, 33, 202, 223, 198, 253, 27, 164, 74, 153, 70, 74, 251, 90, 56, 27, 23, 109, 138, 86, + 101, 211, 8, 69, 75, 15, 100, 150, 55, 180, 218, 220, 123, 115, 93, 124, 27, 72, 18, 5, 88, 233, 94, 15, 197, 27, + 97, 25, 162, 111, 154, 205, 149, 202, 27, 132, 103, 104, 65, 105, 11, 77, 164, 27, 127, 181, 182, 77, 62, 52, 103, + 110, 27, 223, 100, 166, 170, 67, 244, 28, 238, 27, 8, 1, 8, 43, 229, 20, 75, 185, 255, 66, 217, 27, 27, 198, 40, + 34, 205, 94, 151, 15, 0, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3150, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "59ffe1ee58965b37dad251c1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4094089892213301495" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95bbd1a8dae9186279" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "81663d32ccf3df6967ef056d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3082895771865015483" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3218d0088d40d83807c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17406913054380201549" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9fa010e0b9ad47362c4c58" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9886599867410155205" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2c67bf3a3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c65af5ff39" + } + } + ] + }, + "cborHex": "bf4c59ffe1ee58965b37dad251c1d8669f1b38d12110c7e420f780ff4995bbd1a8dae91862799f4c81663d32ccf3df6967ef056d1b2ac8a55ee19164bb4a3218d0088d40d83807c41bf191c7327a71164dff4b9fa010e0b9ad47362c4c581b89344232ad6806c545c2c67bf3a345c65af5ff39ff", + "cborBytes": [ + 191, 76, 89, 255, 225, 238, 88, 150, 91, 55, 218, 210, 81, 193, 216, 102, 159, 27, 56, 209, 33, 16, 199, 228, 32, + 247, 128, 255, 73, 149, 187, 209, 168, 218, 233, 24, 98, 121, 159, 76, 129, 102, 61, 50, 204, 243, 223, 105, 103, + 239, 5, 109, 27, 42, 200, 165, 94, 225, 145, 100, 187, 74, 50, 24, 208, 8, 141, 64, 216, 56, 7, 196, 27, 241, 145, + 199, 50, 122, 113, 22, 77, 255, 75, 159, 160, 16, 224, 185, 173, 71, 54, 44, 76, 88, 27, 137, 52, 66, 50, 173, + 104, 6, 197, 69, 194, 198, 123, 243, 163, 69, 198, 90, 245, 255, 57, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3151, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12916417561320906754" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01a43774e50d63" + }, + { + "_tag": "ByteArray", + "bytearray": "0cc07e637b3ea4b4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2138406987002482251" + } + }, + { + "_tag": "ByteArray", + "bytearray": "44732c955c283c1d07ba74e9" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13130655640056025086" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1bb3405556812660029f4701a43774e50d63480cc07e637b3ea4b41b1dad25d32d7f0e4b4c44732c955c283c1d07ba74e9ff1bb63975bc4584cffe80ff", + "cborBytes": [ + 191, 27, 179, 64, 85, 86, 129, 38, 96, 2, 159, 71, 1, 164, 55, 116, 229, 13, 99, 72, 12, 192, 126, 99, 123, 62, + 164, 180, 27, 29, 173, 37, 211, 45, 127, 14, 75, 76, 68, 115, 44, 149, 92, 40, 60, 29, 7, 186, 116, 233, 255, 27, + 182, 57, 117, 188, 69, 132, 207, 254, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3152, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11409881836229730086" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffebf011b9e580b13f1a79f260d1bffffffffffffffecffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 254, 191, 1, 27, 158, 88, 11, 19, 241, 167, 159, 38, 13, 27, 255, 255, + 255, 255, 255, 255, 255, 236, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3153, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "048e9807" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c800" + }, + { + "_tag": "ByteArray", + "bytearray": "04006e6ff74404fc02fe05" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11393253522814706713" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9706125452631507563" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1617013131107225204" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b2e4623380d6842f3ecdc" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13478032509909637558" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4331979080875762835" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf0a9f44048e9807ff14d87f9f42c8004b04006e6ff74404fc02fe05ff1b9e1cf7b70756a419bf1b86b315ac857a826b1b1670c8e01cc9ce741bfffffffffffffff24b2b2e4623380d6842f3ecdcff1bbb0b9728785499b6d8669f1b3c1e4805b205e49380ff1bfffffffffffffff7a0ff", + "cborBytes": [ + 191, 10, 159, 68, 4, 142, 152, 7, 255, 20, 216, 127, 159, 66, 200, 0, 75, 4, 0, 110, 111, 247, 68, 4, 252, 2, 254, + 5, 255, 27, 158, 28, 247, 183, 7, 86, 164, 25, 191, 27, 134, 179, 21, 172, 133, 122, 130, 107, 27, 22, 112, 200, + 224, 28, 201, 206, 116, 27, 255, 255, 255, 255, 255, 255, 255, 242, 75, 43, 46, 70, 35, 56, 13, 104, 66, 243, 236, + 220, 255, 27, 187, 11, 151, 40, 120, 84, 153, 182, 216, 102, 159, 27, 60, 30, 72, 5, 178, 5, 228, 147, 128, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 247, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3154, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf13a0ff", + "cborBytes": [191, 19, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3155, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cad306b1955b15854a8d6cd7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12165173215840716693" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1708450fa9" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14315409817578196182" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14693980463185988721" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff2044ccad306b1955b15854a8d6cd7d8669f1ba8d36096014847959f451708450fa9ffff41f1d8669f1bc6aa8d61fee34cd69f1bcbeb816114bb0c71ffffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 242, 4, 76, 202, 211, 6, 177, 149, 91, 21, 133, 74, 141, 108, 215, + 216, 102, 159, 27, 168, 211, 96, 150, 1, 72, 71, 149, 159, 69, 23, 8, 69, 15, 169, 255, 255, 65, 241, 216, 102, + 159, 27, 198, 170, 141, 97, 254, 227, 76, 214, 159, 27, 203, 235, 129, 97, 20, 187, 12, 113, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3156, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3630386574161887892" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18072723230112262086" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10003117498696150785" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15673618670855220369" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15840198928212186378" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "25412c92" + } + ] + } + } + ] + }, + "cborHex": "bf1b3261b95ac64442941bfacf36063ecaa7c61b8ad2365dc4472f01a01bd983e12385416c91d8669f1bdbd3b1000f9c550a9f4425412c92ffffff", + "cborBytes": [ + 191, 27, 50, 97, 185, 90, 198, 68, 66, 148, 27, 250, 207, 54, 6, 62, 202, 167, 198, 27, 138, 210, 54, 93, 196, 71, + 47, 1, 160, 27, 217, 131, 225, 35, 133, 65, 108, 145, 216, 102, 159, 27, 219, 211, 177, 0, 15, 156, 85, 10, 159, + 68, 37, 65, 44, 146, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3157, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0279930618250f6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0b6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24aa43" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16780989345299576458" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8669134562357824919" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56d32fb581603a7ffd1b48f1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2459682203350308063" + } + }, + { + "_tag": "ByteArray", + "bytearray": "08f55ed027ddf08939c1" + }, + { + "_tag": "ByteArray", + "bytearray": "92" + }, + { + "_tag": "ByteArray", + "bytearray": "67c79899fae347cd73" + }, + { + "_tag": "ByteArray", + "bytearray": "8a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9a2b4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6828134606406347840" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fdfddf1e6fc67cd83bdd" + }, + { + "_tag": "ByteArray", + "bytearray": "4154bf54be7a7758505187" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14614162866853844639" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "127385144063979057" + } + } + ] + } + } + ] + }, + "cborHex": "bf480279930618250f6b42b0b64324aa43d8669f1be8e20ce66a32368a9f1b784ef3f413664d97ffff4c56d32fb581603a7ffd1b48f19f1b22228bee970b94df4a08f55ed027ddf08939c141924967c79899fae347cd73418aff43c9a2b4d8669f1b5ec2683f5d66ec409f4afdfddf1e6fc67cd83bdd4b4154bf54be7a77585051871bcacfefb2c087169f1b01c4901d15986e31ffffff", + "cborBytes": [ + 191, 72, 2, 121, 147, 6, 24, 37, 15, 107, 66, 176, 182, 67, 36, 170, 67, 216, 102, 159, 27, 232, 226, 12, 230, + 106, 50, 54, 138, 159, 27, 120, 78, 243, 244, 19, 102, 77, 151, 255, 255, 76, 86, 211, 47, 181, 129, 96, 58, 127, + 253, 27, 72, 241, 159, 27, 34, 34, 139, 238, 151, 11, 148, 223, 74, 8, 245, 94, 208, 39, 221, 240, 137, 57, 193, + 65, 146, 73, 103, 199, 152, 153, 250, 227, 71, 205, 115, 65, 138, 255, 67, 201, 162, 180, 216, 102, 159, 27, 94, + 194, 104, 63, 93, 102, 236, 64, 159, 74, 253, 253, 223, 30, 111, 198, 124, 216, 59, 221, 75, 65, 84, 191, 84, 190, + 122, 119, 88, 80, 81, 135, 27, 202, 207, 239, 178, 192, 135, 22, 159, 27, 1, 196, 144, 29, 21, 152, 110, 49, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3158, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56afd548b2f070065831c4" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "623de240718bd87533b964" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30e70663be" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb9e96c5d3" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf410d41024b56afd548b2f070065831c4804b623de240718bd87533b9644530e70663be45fb9e96c5d380ff", + "cborBytes": [ + 191, 65, 13, 65, 2, 75, 86, 175, 213, 72, 178, 240, 112, 6, 88, 49, 196, 128, 75, 98, 61, 226, 64, 113, 139, 216, + 117, 51, 185, 100, 69, 48, 231, 6, 99, 190, 69, 251, 158, 150, 197, 211, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3159, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13568676428414064574" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73357eaa37" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "303621deda0f21" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8924795044250892541" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9613764460011192509" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bbc4d9f525bd617be4573357eaa3747303621deda0f21bf1b7bdb3dcea1bdb8fd1b856af3d7293e00bdffff", + "cborBytes": [ + 191, 27, 188, 77, 159, 82, 91, 214, 23, 190, 69, 115, 53, 126, 170, 55, 71, 48, 54, 33, 222, 218, 15, 33, 191, 27, + 123, 219, 61, 206, 161, 189, 184, 253, 27, 133, 106, 243, 215, 41, 62, 0, 189, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3160, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "54b148fd00a10205d901" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "046905a7fd" + } + } + ] + }, + "cborHex": "bf4a54b148fd00a10205d90145046905a7fdff", + "cborBytes": [191, 74, 84, 177, 72, 253, 0, 161, 2, 5, 217, 1, 69, 4, 105, 5, 167, 253, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3161, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2712860386859867645" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5615269417245847909" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5273519565694937623" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8658346174623360112" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6f9a6a7f3c2b" + } + ] + } + } + ] + }, + "cborHex": "bf1b25a604260402ddfd1b4ded71c8b50db1651b492f4e1acd51aa17801b78289ff8d0c9a4709f466f9a6a7f3c2bffff", + "cborBytes": [ + 191, 27, 37, 166, 4, 38, 4, 2, 221, 253, 27, 77, 237, 113, 200, 181, 13, 177, 101, 27, 73, 47, 78, 26, 205, 81, + 170, 23, 128, 27, 120, 40, 159, 248, 208, 201, 164, 112, 159, 70, 111, 154, 106, 127, 60, 43, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3162, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7310658309948826138" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e00507" + }, + { + "_tag": "ByteArray", + "bytearray": "7aeacaaa98baff142d" + } + ] + } + } + ] + }, + "cborHex": "bf079f1bfffffffffffffffb1b6574acffd6c1e21a43e00507497aeacaaa98baff142dffff", + "cborBytes": [ + 191, 7, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 27, 101, 116, 172, 255, 214, 193, 226, 26, 67, 224, 5, 7, + 73, 122, 234, 202, 170, 152, 186, 255, 20, 45, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3163, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "860332382214347154" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14334409010179459200" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac3c9257b7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7f4bdce87ed546ac1960c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1823365609979891901" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14592560991799257743" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11842090502006261798" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8179102743482804700" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0bf083be4ea6d992a01bc6ee0d0c3ce7c88045ac3c9257b74bd7f4bdce87ed546ac1960cbf1b194de55c9683d0bd1bca8330e8476aaa8f1ba4578e91ca1c48261b7182029c46b729dcffff", + "cborBytes": [ + 191, 27, 11, 240, 131, 190, 78, 166, 217, 146, 160, 27, 198, 238, 13, 12, 60, 231, 200, 128, 69, 172, 60, 146, 87, + 183, 75, 215, 244, 189, 206, 135, 237, 84, 106, 193, 150, 12, 191, 27, 25, 77, 229, 92, 150, 131, 208, 189, 27, + 202, 131, 48, 232, 71, 106, 170, 143, 27, 164, 87, 142, 145, 202, 28, 72, 38, 27, 113, 130, 2, 156, 70, 183, 41, + 220, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3164, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10027731610880044585" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15080241603590703510" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f82e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6dd50f75bbceb7" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b8b29a8c55975ee291bfffffffffffffff01bd147c7d705174996bf42f82e476dd50f75bbceb7ffff", + "cborBytes": [ + 191, 27, 139, 41, 168, 197, 89, 117, 238, 41, 27, 255, 255, 255, 255, 255, 255, 255, 240, 27, 209, 71, 199, 215, + 5, 23, 73, 150, 191, 66, 248, 46, 71, 109, 213, 15, 117, 187, 206, 183, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3165, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4524471299713068096" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "162263369413421824" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b24d157ed6aeb0" + }, + { + "_tag": "ByteArray", + "bytearray": "dba5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9139296644661340808" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6620654008927093173" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9037876549614763166" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1133459535264527297" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12753451761453586986" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "87335706865418051" + } + } + } + ] + }, + "cborHex": "bf1b3eca26ace7d8ec409f1b024079acbdf1eb0047b24d157ed6aeb042dba51b7ed54de051f56a88ff1b5be149be4edd81b5a01b7d6cfcd64f9efc9e1b0fbadb7126b8b3c11bb0fd5cce6d855a2a1b0136475cd7ebbf43ff", + "cborBytes": [ + 191, 27, 62, 202, 38, 172, 231, 216, 236, 64, 159, 27, 2, 64, 121, 172, 189, 241, 235, 0, 71, 178, 77, 21, 126, + 214, 174, 176, 66, 219, 165, 27, 126, 213, 77, 224, 81, 245, 106, 136, 255, 27, 91, 225, 73, 190, 78, 221, 129, + 181, 160, 27, 125, 108, 252, 214, 79, 158, 252, 158, 27, 15, 186, 219, 113, 38, 184, 179, 193, 27, 176, 253, 92, + 206, 109, 133, 90, 42, 27, 1, 54, 71, 92, 215, 235, 191, 67, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3166, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15745279001183839028" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8dec174f222f5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a66dd916d9f82" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12869071638811671639" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7f9885329099cb57854" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10300630825768350526" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ab23c00a342d5cc976" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1665323211974939951" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dfded3a8d6e217839dab080c" + }, + { + "_tag": "ByteArray", + "bytearray": "bb9b" + } + ] + } + } + ] + }, + "cborHex": "bf1bda8277d45afae33447f8dec174f222f5471a66dd916d9f821bb2982078e46c7c574aa7f9885329099cb57854d8669f1b8ef33129345c733e9f49ab23c00a342d5cc9761b171c6aa355fa952f4cdfded3a8d6e217839dab080c42bb9bffffff", + "cborBytes": [ + 191, 27, 218, 130, 119, 212, 90, 250, 227, 52, 71, 248, 222, 193, 116, 242, 34, 245, 71, 26, 102, 221, 145, 109, + 159, 130, 27, 178, 152, 32, 120, 228, 108, 124, 87, 74, 167, 249, 136, 83, 41, 9, 156, 181, 120, 84, 216, 102, + 159, 27, 142, 243, 49, 41, 52, 92, 115, 62, 159, 73, 171, 35, 192, 10, 52, 45, 92, 201, 118, 27, 23, 28, 106, 163, + 85, 250, 149, 47, 76, 223, 222, 211, 168, 214, 226, 23, 131, 157, 171, 8, 12, 66, 187, 155, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3167, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "379404095823362240" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ff" + }, + { + "_tag": "ByteArray", + "bytearray": "1a11af108a53e436b2" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8230545075964300206" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5023110796148747845" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "127b" + }, + { + "_tag": "ByteArray", + "bytearray": "f5f7fc" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9531346557684995179" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7842520555058983111" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e1d809f794b270f84b" + }, + { + "_tag": "ByteArray", + "bytearray": "979e02" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15883362576207270402" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0543ea03d5e138c09f41ff491a11af108a53e436b2ff1b7238c523a8b14baed8669f1b45b5aca7cfe02e459f42127b43f5f7fcffff1b84462531e9f4d46b9f1b6cd63ae4b3fd70c749e1d809f794b270f84b43979e021bdc6d0a1c01915202ffff", + "cborBytes": [ + 191, 27, 5, 67, 234, 3, 213, 225, 56, 192, 159, 65, 255, 73, 26, 17, 175, 16, 138, 83, 228, 54, 178, 255, 27, 114, + 56, 197, 35, 168, 177, 75, 174, 216, 102, 159, 27, 69, 181, 172, 167, 207, 224, 46, 69, 159, 66, 18, 123, 67, 245, + 247, 252, 255, 255, 27, 132, 70, 37, 49, 233, 244, 212, 107, 159, 27, 108, 214, 58, 228, 179, 253, 112, 199, 73, + 225, 216, 9, 247, 148, 178, 112, 248, 75, 67, 151, 158, 2, 27, 220, 109, 10, 28, 1, 145, 82, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3168, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5e4" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14840671736280621606" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e7c919aaf2468b65fd56d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13523555474267726950" + } + } + ] + } + } + ] + }, + "cborHex": "bf42a5e49f1bcdf4a8509d2fa2264b9e7c919aaf2468b65fd56d1bbbad520d90046466ffff", + "cborBytes": [ + 191, 66, 165, 228, 159, 27, 205, 244, 168, 80, 157, 47, 162, 38, 75, 158, 124, 145, 154, 175, 36, 104, 182, 95, + 213, 109, 27, 187, 173, 82, 13, 144, 4, 100, 102, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3169, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6977229129044282907" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13246016122354166069" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7196715671806118297" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10938300390018138904" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10136989237196793609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1574f935" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11151674262439688985" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10359488186939909451" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4993183434623396727" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3650404915618658673" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17692536630307983865" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6745945287132955026" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee0337a2477dfb" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15103364053495615074" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "070ceadd497cbf54" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15358067993876767538" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10149110594062776795" + } + } + } + ] + }, + "cborHex": "bf1b60d418ed09314e1b1bb7d34d7b9e0469351b63dfdec60f7d89999f1b97cca640498c4318ff1b8cadd200cf12a709441574f9351b9ac2b4a857957b19d8669f1b8fc44b9e7d68a54b9f1b454b59e0f717ab771b32a8d7ee19ca39711bf5888453811811f91b5d9e697f41c7c19247ee0337a2477dfbffff1bd199ed95ea028e6248070ceadd497cbf541bd522d1784b5223321b8cd8e2502143f9dbff", + "cborBytes": [ + 191, 27, 96, 212, 24, 237, 9, 49, 78, 27, 27, 183, 211, 77, 123, 158, 4, 105, 53, 27, 99, 223, 222, 198, 15, 125, + 137, 153, 159, 27, 151, 204, 166, 64, 73, 140, 67, 24, 255, 27, 140, 173, 210, 0, 207, 18, 167, 9, 68, 21, 116, + 249, 53, 27, 154, 194, 180, 168, 87, 149, 123, 25, 216, 102, 159, 27, 143, 196, 75, 158, 125, 104, 165, 75, 159, + 27, 69, 75, 89, 224, 247, 23, 171, 119, 27, 50, 168, 215, 238, 25, 202, 57, 113, 27, 245, 136, 132, 83, 129, 24, + 17, 249, 27, 93, 158, 105, 127, 65, 199, 193, 146, 71, 238, 3, 55, 162, 71, 125, 251, 255, 255, 27, 209, 153, 237, + 149, 234, 2, 142, 98, 72, 7, 12, 234, 221, 73, 124, 191, 84, 27, 213, 34, 209, 120, 75, 82, 35, 50, 27, 140, 216, + 226, 80, 33, 67, 249, 219, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3170, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5038942057319555502" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4673040848672338124" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9492082817324123245" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "25f37eec384ce6fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2108762578429909121" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16261740712790022847" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00293c0fb7" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1932431800" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76a0de21cff538a19a7d8377" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6aa8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5352831399665714876" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c2a6b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4625988141043815149" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b45edeb1a8a4ee1ae1b40d9f9e49e0130cc1b83baa707f931846d9f4825f37eec384ce6fb1b1d43d46472f398811be1ad4f05175b5abf4500293c0fb7ff4519324318004c76a0de21cff538a19a7d8377426aa8d8669f1b4a4913cc27a1c6bc9f437c2a6b1b4032cfb46a1612edffffff", + "cborBytes": [ + 191, 27, 69, 237, 235, 26, 138, 78, 225, 174, 27, 64, 217, 249, 228, 158, 1, 48, 204, 27, 131, 186, 167, 7, 249, + 49, 132, 109, 159, 72, 37, 243, 126, 236, 56, 76, 230, 251, 27, 29, 67, 212, 100, 114, 243, 152, 129, 27, 225, + 173, 79, 5, 23, 91, 90, 191, 69, 0, 41, 60, 15, 183, 255, 69, 25, 50, 67, 24, 0, 76, 118, 160, 222, 33, 207, 245, + 56, 161, 154, 125, 131, 119, 66, 106, 168, 216, 102, 159, 27, 74, 73, 19, 204, 39, 161, 198, 188, 159, 67, 124, + 42, 107, 27, 64, 50, 207, 180, 106, 22, 18, 237, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3171, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5486836644370057420" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "800388405686334375" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10275728133126529525" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13847320618500126040" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11057940390784828713" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "107310320903201731" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7cf5ad4884f282" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15960844364796484169" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1136194501168079381" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6755510113645133408" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3591572851280730110" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1862216996184234373" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9871815544907988329" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8df0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14348985491656677733" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10625495321753137021" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16048031297734199595" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6466559673833864766" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a389595d7dcf16cb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "241980259939875622" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1024884958064246531" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14725818955217512866" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17279666440379977003" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14223346168957205579" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1112357664619620438" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4c2528db884608cc1b0b1b8d03ab4673a71b8e9ab84b3f7ea1f51bc02b90bc7ca475581b9975b232ac2c8529d8669f1b017d3e2b162b23c39f477cf5ad4884f282ffff1bdd804f62b6fd5a49bf1b0fc492e105e022151b5dc064a7f8607e601b31d7d47ab18657fe1b19d7ec7dd84199851b88ffbbef5a6b7d69428df01bc721d647cd6e19651b937557b2e7abaf7dff1bdeb60f706dcc492bd8669f1b59bdd5c315bbbe3e9f48a389595d7dcf16cb1b035bafc3ac5f7b261b0e391f70750f7f031bcc5c9e51ac7429a2ffff1befcdb51370164d2bd8669f1bc56379fb6e1b7c4b9f1b0f6fe36706d5e856ffffff", + "cborBytes": [ + 191, 27, 76, 37, 40, 219, 136, 70, 8, 204, 27, 11, 27, 141, 3, 171, 70, 115, 167, 27, 142, 154, 184, 75, 63, 126, + 161, 245, 27, 192, 43, 144, 188, 124, 164, 117, 88, 27, 153, 117, 178, 50, 172, 44, 133, 41, 216, 102, 159, 27, 1, + 125, 62, 43, 22, 43, 35, 195, 159, 71, 124, 245, 173, 72, 132, 242, 130, 255, 255, 27, 221, 128, 79, 98, 182, 253, + 90, 73, 191, 27, 15, 196, 146, 225, 5, 224, 34, 21, 27, 93, 192, 100, 167, 248, 96, 126, 96, 27, 49, 215, 212, + 122, 177, 134, 87, 254, 27, 25, 215, 236, 125, 216, 65, 153, 133, 27, 136, 255, 187, 239, 90, 107, 125, 105, 66, + 141, 240, 27, 199, 33, 214, 71, 205, 110, 25, 101, 27, 147, 117, 87, 178, 231, 171, 175, 125, 255, 27, 222, 182, + 15, 112, 109, 204, 73, 43, 216, 102, 159, 27, 89, 189, 213, 195, 21, 187, 190, 62, 159, 72, 163, 137, 89, 93, 125, + 207, 22, 203, 27, 3, 91, 175, 195, 172, 95, 123, 38, 27, 14, 57, 31, 112, 117, 15, 127, 3, 27, 204, 92, 158, 81, + 172, 116, 41, 162, 255, 255, 27, 239, 205, 181, 19, 112, 22, 77, 43, 216, 102, 159, 27, 197, 99, 121, 251, 110, + 27, 124, 75, 159, 27, 15, 111, 227, 103, 6, 213, 232, 86, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3172, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9907fbfff804" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10623406276458453273" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8598975574378832775" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6894" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6052832440998761162" + } + }, + { + "_tag": "ByteArray", + "bytearray": "482cba358cb22f263b0ed4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3747506522971222348" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "716300262794019742" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5305876517742905058" + } + } + ] + } + } + ] + }, + "cborHex": "bf0b469907fbfff80413801b936debb924f61919d8669f1b7755b2b9bf1c63879f426894ffff1bfffffffffffffff59f1b53fffb092ab112ca4b482cba358cb22f263b0ed41b3401d153d728b14cff1bfffffffffffffff79f1b09f0cf4b3c5b439e1b49a24294c62706e2ffff", + "cborBytes": [ + 191, 11, 70, 153, 7, 251, 255, 248, 4, 19, 128, 27, 147, 109, 235, 185, 36, 246, 25, 25, 216, 102, 159, 27, 119, + 85, 178, 185, 191, 28, 99, 135, 159, 66, 104, 148, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 27, + 83, 255, 251, 9, 42, 177, 18, 202, 75, 72, 44, 186, 53, 140, 178, 47, 38, 59, 14, 212, 27, 52, 1, 209, 83, 215, + 40, 177, 76, 255, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, 27, 9, 240, 207, 75, 60, 91, 67, 158, 27, 73, + 162, 66, 148, 198, 39, 6, 226, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3173, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13208660222911509945" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f51398816bf73a1b6a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12569957811400454750" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5962341015183366215" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "102ed67095fb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8300771090235127466" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7134834632b5e74db0c9a4" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "45280c8e24b398" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1611030742730632394" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3b322160c25c9f0b71945" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14757418909503984671" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c45475a420f1b3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9383415755534880874" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7e7ca1e10" + }, + { + "_tag": "ByteArray", + "bytearray": "3897dcdef9" + } + ] + } + } + ] + }, + "cborHex": "bf1bb74e967d8178f5b99f49f51398816bf73a1b6a1bae717607ee2bb25e1b52be7d903fbf1847ff46102ed67095fbd8669f1b73324353c34bf6aa9f4b7134834632b5e74db0c9a4ffff4745280c8e24b3981b165b87ecc6b16cca4bb3b322160c25c9f0b71945d8669f1bcccce24f5e9e141f9f47c45475a420f1b31b823896ea0875d06a45d7e7ca1e10453897dcdef9ffffff", + "cborBytes": [ + 191, 27, 183, 78, 150, 125, 129, 120, 245, 185, 159, 73, 245, 19, 152, 129, 107, 247, 58, 27, 106, 27, 174, 113, + 118, 7, 238, 43, 178, 94, 27, 82, 190, 125, 144, 63, 191, 24, 71, 255, 70, 16, 46, 214, 112, 149, 251, 216, 102, + 159, 27, 115, 50, 67, 83, 195, 75, 246, 170, 159, 75, 113, 52, 131, 70, 50, 181, 231, 77, 176, 201, 164, 255, 255, + 71, 69, 40, 12, 142, 36, 179, 152, 27, 22, 91, 135, 236, 198, 177, 108, 202, 75, 179, 179, 34, 22, 12, 37, 201, + 240, 183, 25, 69, 216, 102, 159, 27, 204, 204, 226, 79, 94, 158, 20, 31, 159, 71, 196, 84, 117, 164, 32, 241, 179, + 27, 130, 56, 150, 234, 8, 117, 208, 106, 69, 215, 231, 202, 30, 16, 69, 56, 151, 220, 222, 249, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3174, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ed0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8996261338097091392" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17510334715122385030" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10795611868786752468" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8740760400318265381" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11951574534446812947" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "738603902472525425" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14015241404459170918" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6903870921047092593" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14591533841276792829" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7513021212358270545" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15282601973765435362" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd708ab6a4637e" + } + } + ] + } + } + ] + }, + "cborHex": "bf07420ed00fbf1b7cd92405d3db83401bf30134a6510f80861b95d1b7cc0c067bd41b794d6b4607c578251ba5dc85b7884e8f131b0a400c56049796711bc28023cd2a22bc661b5fcf7a0640292d711bca7f8ab82964effd1b68439cfca896de511bd416b58641f8efe247dd708ab6a4637effff", + "cborBytes": [ + 191, 7, 66, 14, 208, 15, 191, 27, 124, 217, 36, 5, 211, 219, 131, 64, 27, 243, 1, 52, 166, 81, 15, 128, 134, 27, + 149, 209, 183, 204, 12, 6, 123, 212, 27, 121, 77, 107, 70, 7, 197, 120, 37, 27, 165, 220, 133, 183, 136, 78, 143, + 19, 27, 10, 64, 12, 86, 4, 151, 150, 113, 27, 194, 128, 35, 205, 42, 34, 188, 102, 27, 95, 207, 122, 6, 64, 41, + 45, 113, 27, 202, 127, 138, 184, 41, 100, 239, 253, 27, 104, 67, 156, 252, 168, 150, 222, 81, 27, 212, 22, 181, + 134, 65, 248, 239, 226, 71, 221, 112, 138, 182, 164, 99, 126, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3175, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6649976690505598737" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d919851a" + } + } + ] + }, + "cborHex": "bf1b5c4976912236c71144d919851aff", + "cborBytes": [191, 27, 92, 73, 118, 145, 34, 54, 199, 17, 68, 217, 25, 133, 26, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3176, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17569160645280005552" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9919125be792c3c3926b0a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10482717004972267134" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6916189628158589694" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40efb3ce9c325b3ba4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8865898455263450592" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12894609283164179408" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b851972b6a4e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2171563293198842127" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f945" + }, + { + "_tag": "ByteArray", + "bytearray": "fefa0202fbf505" + }, + { + "_tag": "ByteArray", + "bytearray": "f90301fa05070205f80700d5" + } + ] + } + } + ] + }, + "cborHex": "bf099f1bf3d232857faffdb04b9919125be792c3c3926b0a1b917a17938251967eff1b5ffb3dd2c1a23afe4940efb3ce9c325b3ba41b7b09ffabe8a995e00d1bb2f2dad310748bd09f46b851972b6a4e1b1e22f14f4a64f90f42f94547fefa0202fbf5054cf90301fa05070205f80700d5ffff", + "cborBytes": [ + 191, 9, 159, 27, 243, 210, 50, 133, 127, 175, 253, 176, 75, 153, 25, 18, 91, 231, 146, 195, 195, 146, 107, 10, 27, + 145, 122, 23, 147, 130, 81, 150, 126, 255, 27, 95, 251, 61, 210, 193, 162, 58, 254, 73, 64, 239, 179, 206, 156, + 50, 91, 59, 164, 27, 123, 9, 255, 171, 232, 169, 149, 224, 13, 27, 178, 242, 218, 211, 16, 116, 139, 208, 159, 70, + 184, 81, 151, 43, 106, 78, 27, 30, 34, 241, 79, 74, 100, 249, 15, 66, 249, 69, 71, 254, 250, 2, 2, 251, 245, 5, + 76, 249, 3, 1, 250, 5, 7, 2, 5, 248, 7, 0, 213, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3177, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6789287910371729767" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6984141172684609828" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36ba3d00" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12938496176698594563" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4385f2e3caa024" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14734831168128410572" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1a62feb5ae9361a26dba1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18374534115506528466" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9422563291361750202" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8154479541028031466" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14859934855948277059" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d7fa35e8b55954efdbb6e915" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4268761696379060032" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15618625007565666689" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13834016526942505914" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3504c35f723a6d" + } + ] + } + } + ] + }, + "cborHex": "bf1b5e3865621f8fa167bf1b60eca7649b0bd9244436ba3d001bb38ec5b8bbde9503474385f2e3caa0241bcc7ca2e101a5e3cc4bd1a62feb5ae9361a26dba11bfeff756cf41020d21b82c3ab63ff40acbaff1b712a87f0332a8bead8669f1bce3918052a3e15439f4cd7fa35e8b55954efdbb6e9151b3b3db0255f77bf401bd8c080b17ffbf9811bbffc4cbc494a8bba473504c35f723a6dffffff", + "cborBytes": [ + 191, 27, 94, 56, 101, 98, 31, 143, 161, 103, 191, 27, 96, 236, 167, 100, 155, 11, 217, 36, 68, 54, 186, 61, 0, 27, + 179, 142, 197, 184, 187, 222, 149, 3, 71, 67, 133, 242, 227, 202, 160, 36, 27, 204, 124, 162, 225, 1, 165, 227, + 204, 75, 209, 166, 47, 235, 90, 233, 54, 26, 38, 219, 161, 27, 254, 255, 117, 108, 244, 16, 32, 210, 27, 130, 195, + 171, 99, 255, 64, 172, 186, 255, 27, 113, 42, 135, 240, 51, 42, 139, 234, 216, 102, 159, 27, 206, 57, 24, 5, 42, + 62, 21, 67, 159, 76, 215, 250, 53, 232, 181, 89, 84, 239, 219, 182, 233, 21, 27, 59, 61, 176, 37, 95, 119, 191, + 64, 27, 216, 192, 128, 177, 127, 251, 249, 129, 27, 191, 252, 76, 188, 73, 74, 139, 186, 71, 53, 4, 195, 95, 114, + 58, 109, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3178, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13624459392503346554" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10689635294543159192" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fd2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14102291977866733283" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff7d8669f1bbd13cda1cae5757a9f1bfffffffffffffff51b945936aa0db91f98ffff423fd21bc3b567d6339666e3ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 247, 216, 102, 159, 27, 189, 19, 205, 161, 202, 229, 117, 122, 159, + 27, 255, 255, 255, 255, 255, 255, 255, 245, 27, 148, 89, 54, 170, 13, 185, 31, 152, 255, 255, 66, 63, 210, 27, + 195, 181, 103, 214, 51, 150, 102, 227, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3179, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3075096791974827810" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15318043024156930004" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3742630135140487046" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64995ed0d0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4094974941931920271" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17788031009955646331" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6123740474173854354" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b3f258d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7249120218318150204" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "664495941104475431" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3822" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17178317594015519000" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf62d8f6d02cb499fadf" + } + ] + } + } + ] + }, + "cborHex": "bf1b2aacf03d5f9a57221bd4949ef8d5062fd41b33f07e4752b88f864564995ed0d01b38d4460379fa5b8f1bf6dbc7f5620a0b7b1b54fbe5842bd09292447b3f258d1b649a0c6e5af49a3c9f1b0938c389ac389d274238221bee65a4d64e2351184abf62d8f6d02cb499fadfffff", + "cborBytes": [ + 191, 27, 42, 172, 240, 61, 95, 154, 87, 34, 27, 212, 148, 158, 248, 213, 6, 47, 212, 27, 51, 240, 126, 71, 82, + 184, 143, 134, 69, 100, 153, 94, 208, 208, 27, 56, 212, 70, 3, 121, 250, 91, 143, 27, 246, 219, 199, 245, 98, 10, + 11, 123, 27, 84, 251, 229, 132, 43, 208, 146, 146, 68, 123, 63, 37, 141, 27, 100, 154, 12, 110, 90, 244, 154, 60, + 159, 27, 9, 56, 195, 137, 172, 56, 157, 39, 66, 56, 34, 27, 238, 101, 164, 214, 78, 35, 81, 24, 74, 191, 98, 216, + 246, 208, 44, 180, 153, 250, 223, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3180, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "802151603766903158" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15996710916002354507" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "566d" + }, + { + "_tag": "ByteArray", + "bytearray": "ad3eaa8daf" + }, + { + "_tag": "ByteArray", + "bytearray": "0a599f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2032875889220746089" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12418382389630620903" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15421875677310650593" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "422122" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1495227926907664322" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a5d1e5db1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f26e47c" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0b21d0a236894176d8669f1bddffbbd2eaef154b9f42566d45ad3eaa8daf430a599fffff1b1c3639d9c1757b699f1bac56f4fceae654e7ff1bd60582384c5688e1bf434221221b14c01de0a19337c2457a5d1e5db1448f26e47cffff", + "cborBytes": [ + 191, 27, 11, 33, 208, 162, 54, 137, 65, 118, 216, 102, 159, 27, 221, 255, 187, 210, 234, 239, 21, 75, 159, 66, 86, + 109, 69, 173, 62, 170, 141, 175, 67, 10, 89, 159, 255, 255, 27, 28, 54, 57, 217, 193, 117, 123, 105, 159, 27, 172, + 86, 244, 252, 234, 230, 84, 231, 255, 27, 214, 5, 130, 56, 76, 86, 136, 225, 191, 67, 66, 33, 34, 27, 20, 192, 29, + 224, 161, 147, 55, 194, 69, 122, 93, 30, 93, 177, 68, 143, 38, 228, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3181, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7101557940424029698" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8972190699215632551" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "ByteArray", + "bytearray": "020005ff" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12779680078210833390" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2bbb" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9d9e2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17630048940244532761" + } + } + } + ] + }, + "cborHex": "bf1b628dcd5236d43602d8669f1b7c839fe77bcfb8a79f0544020005ffffff1bfffffffffffffff5d8669f1bb15a8b524ce49bee9f422bbbffff1bfffffffffffffff643f9d9e21bffffffffffffffff1bf4aa841a6806fe19ff", + "cborBytes": [ + 191, 27, 98, 141, 205, 82, 54, 212, 54, 2, 216, 102, 159, 27, 124, 131, 159, 231, 123, 207, 184, 167, 159, 5, 68, + 2, 0, 5, 255, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 245, 216, 102, 159, 27, 177, 90, 139, 82, 76, 228, + 155, 238, 159, 66, 43, 187, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 246, 67, 249, 217, 226, 27, 255, 255, + 255, 255, 255, 255, 255, 255, 27, 244, 170, 132, 26, 104, 6, 254, 25, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3182, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10034260484013981205" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "218675698684425580" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16524758668991381014" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2074104568434507093" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5d736f7cff10c81f9091" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d093f9c1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17090219112834515963" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df4b67" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5268211599059912912" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "530800967500615935" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe868f8670167ec418" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4dc3339f69" + } + } + ] + }, + "cborHex": "bf1b8b40dabf15647e15d8669f1b0308e463ad18756c9f1be553bc752049be161b1cc8b31dac8dbd554a5d736f7cff10c81f9091ffff44d093f9c1d8669f1bed2ca7bc3a17c3fb80ff43df4b679f1b491c7289838f08d01b075dc8aaea4ed0ffff49fe868f8670167ec418454dc3339f69ff", + "cborBytes": [ + 191, 27, 139, 64, 218, 191, 21, 100, 126, 21, 216, 102, 159, 27, 3, 8, 228, 99, 173, 24, 117, 108, 159, 27, 229, + 83, 188, 117, 32, 73, 190, 22, 27, 28, 200, 179, 29, 172, 141, 189, 85, 74, 93, 115, 111, 124, 255, 16, 200, 31, + 144, 145, 255, 255, 68, 208, 147, 249, 193, 216, 102, 159, 27, 237, 44, 167, 188, 58, 23, 195, 251, 128, 255, 67, + 223, 75, 103, 159, 27, 73, 28, 114, 137, 131, 143, 8, 208, 27, 7, 93, 200, 170, 234, 78, 208, 255, 255, 73, 254, + 134, 143, 134, 112, 22, 126, 196, 24, 69, 77, 195, 51, 159, 105, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3183, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "379cbb49c5d35b79cb54" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9e67737efb3bdd31bef3" + }, + { + "_tag": "ByteArray", + "bytearray": "8ded0b643f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7739491978720524406" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1518242347675872279" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e5b1b64197309442e659d3" + } + ] + } + } + ] + }, + "cborHex": "bf4a379cbb49c5d35b79cb54d905029f4a9e67737efb3bdd31bef3458ded0b643f1b6b6832f2f59f38761b1511e15f082cec174be5b1b64197309442e659d3ffff", + "cborBytes": [ + 191, 74, 55, 156, 187, 73, 197, 211, 91, 121, 203, 84, 217, 5, 2, 159, 74, 158, 103, 115, 126, 251, 59, 221, 49, + 190, 243, 69, 141, 237, 11, 100, 63, 27, 107, 104, 50, 242, 245, 159, 56, 118, 27, 21, 17, 225, 95, 8, 44, 236, + 23, 75, 229, 177, 182, 65, 151, 48, 148, 66, 230, 89, 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3184, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "54633564069181457" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f758b8bc104c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6815760393668252490" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2433568309694653684" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16864712158494684374" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5410947291530468765" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10562011225049510402" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1810834209376550862" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b00c218efe32838119f46f758b8bc104c1b5e9671f772c5d34a1b21c5c57bebff64f41bea0b7e5ae64974d6ff1b4b178be4aa091d9d9f1b9293cd3fcec3b2021b1921601e8503bfceffff", + "cborBytes": [ + 191, 27, 0, 194, 24, 239, 227, 40, 56, 17, 159, 70, 247, 88, 184, 188, 16, 76, 27, 94, 150, 113, 247, 114, 197, + 211, 74, 27, 33, 197, 197, 123, 235, 255, 100, 244, 27, 234, 11, 126, 90, 230, 73, 116, 214, 255, 27, 75, 23, 139, + 228, 170, 9, 29, 157, 159, 27, 146, 147, 205, 63, 206, 195, 178, 2, 27, 25, 33, 96, 30, 133, 3, 191, 206, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3185, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01ee55fd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "357c213ea2e7a59f598b19f9" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07052fda0f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8765524325168779106" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3eb348ae661fad60" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f55fc6a1a214ac0a" + }, + { + "_tag": "ByteArray", + "bytearray": "f84552" + }, + { + "_tag": "ByteArray", + "bytearray": "90" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5029701241607918128" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5df756011913140e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2fdd703" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4401ee55fd9f4c357c213ea2e7a59f598b19f9ff4507052fda0fd8669f1b79a565ee97bb0f629f07ffff483eb348ae661fad609f48f55fc6a1a214ac0a43f8455241901b45cd16a1786192301bfffffffffffffffbff485df756011913140e1bfffffffffffffffb44a2fdd703d9050580ff", + "cborBytes": [ + 191, 68, 1, 238, 85, 253, 159, 76, 53, 124, 33, 62, 162, 231, 165, 159, 89, 139, 25, 249, 255, 69, 7, 5, 47, 218, + 15, 216, 102, 159, 27, 121, 165, 101, 238, 151, 187, 15, 98, 159, 7, 255, 255, 72, 62, 179, 72, 174, 102, 31, 173, + 96, 159, 72, 245, 95, 198, 161, 162, 20, 172, 10, 67, 248, 69, 82, 65, 144, 27, 69, 205, 22, 161, 120, 97, 146, + 48, 27, 255, 255, 255, 255, 255, 255, 255, 251, 255, 72, 93, 247, 86, 1, 25, 19, 20, 14, 27, 255, 255, 255, 255, + 255, 255, 255, 251, 68, 162, 253, 215, 3, 217, 5, 5, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3186, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7070014334498261101" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "763c6c47a61d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acd1711ac2395f8260" + } + } + ] + }, + "cborHex": "bf411d1b621dbc9424b0486d46763c6c47a61d49acd1711ac2395f8260ff", + "cborBytes": [ + 191, 65, 29, 27, 98, 29, 188, 148, 36, 176, 72, 109, 70, 118, 60, 108, 71, 166, 29, 73, 172, 209, 113, 26, 194, + 57, 95, 130, 96, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3187, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "331029126675047963" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10302569723628834576" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17390095447118027593" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16972202954638025281" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "674668496885544027" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9c18b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b5ae40b7093fd8c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eb3d4f3457ecefd3a0b345e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16554535585018974033" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1561125632990922120" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8865956411886857800" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2704936845534938859" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6659062082323481804" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8370011724012243342" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a5f9d9fcac4d30e00939" + }, + { + "_tag": "ByteArray", + "bytearray": "ca" + }, + { + "_tag": "ByteArray", + "bytearray": "4ae3927ae90cbd31" + }, + { + "_tag": "ByteArray", + "bytearray": "c5af" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16077836173043658475" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e63a5d18e268b" + } + } + ] + }, + "cborHex": "bf1b04980d3ca1c6261bd8669f1b8efa14940a974f109f1bf15607ac279b9b491beb8960aa2708e241ffff1b095ce76c6202745bbf439c18b4486b5ae40b7093fd8c4ceb3d4f3457ecefd3a0b345e01be5bd8667a69e8f51ff1b15aa3b7df42e45881b7b0a3461fc9cee481b2589ddbac9f9c6ebd8669f1b5c69bdaec22a04cc9f1b74284151179ac98e4aa5f9d9fcac4d30e0093941ca484ae3927ae90cbd3142c5afffff1bdf1ff2d0bb316eeb473e63a5d18e268bff", + "cborBytes": [ + 191, 27, 4, 152, 13, 60, 161, 198, 38, 27, 216, 102, 159, 27, 142, 250, 20, 148, 10, 151, 79, 16, 159, 27, 241, + 86, 7, 172, 39, 155, 155, 73, 27, 235, 137, 96, 170, 39, 8, 226, 65, 255, 255, 27, 9, 92, 231, 108, 98, 2, 116, + 91, 191, 67, 156, 24, 180, 72, 107, 90, 228, 11, 112, 147, 253, 140, 76, 235, 61, 79, 52, 87, 236, 239, 211, 160, + 179, 69, 224, 27, 229, 189, 134, 103, 166, 158, 143, 81, 255, 27, 21, 170, 59, 125, 244, 46, 69, 136, 27, 123, 10, + 52, 97, 252, 156, 238, 72, 27, 37, 137, 221, 186, 201, 249, 198, 235, 216, 102, 159, 27, 92, 105, 189, 174, 194, + 42, 4, 204, 159, 27, 116, 40, 65, 81, 23, 154, 201, 142, 74, 165, 249, 217, 252, 172, 77, 48, 224, 9, 57, 65, 202, + 72, 74, 227, 146, 122, 233, 12, 189, 49, 66, 197, 175, 255, 255, 27, 223, 31, 242, 208, 187, 49, 110, 235, 71, 62, + 99, 165, 209, 142, 38, 139, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3188, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1664505341529852345" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "19bad0405fea2134ae86" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1288224212470873742" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ba3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57ce027ff3f86ad3b2af5f8e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f0eaba67ed3027272f23e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7963845500995638973" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c01927f34c7a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45d3681a9eaa0b8fc9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c76c023190b961" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11514454160210302990" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4659456070031502781" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9900330276067626689" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3962154108502261918" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17109425371451388369" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2792578034932256709" + } + } + } + ] + }, + "cborHex": "bf1b171982ca08a089b9bf4a19bad0405fea2134ae861b11e0b1188f623e8e422ba34c57ce027ff3f86ad3b2af5f8e4b6f0eaba67ed3027272f23e1b6e854349f4f016bd46c01927f34c7a4945d3681a9eaa0b8fc947c76c023190b9611b9fcb8f0d71da980eff1b40a9b69bdcc3edbda01b896509ee900e4ec11b36fc662b56a1c09e1bed70e3b9c86a71d11b26c13aed53b20fc5ff", + "cborBytes": [ + 191, 27, 23, 25, 130, 202, 8, 160, 137, 185, 191, 74, 25, 186, 208, 64, 95, 234, 33, 52, 174, 134, 27, 17, 224, + 177, 24, 143, 98, 62, 142, 66, 43, 163, 76, 87, 206, 2, 127, 243, 248, 106, 211, 178, 175, 95, 142, 75, 111, 14, + 171, 166, 126, 211, 2, 114, 114, 242, 62, 27, 110, 133, 67, 73, 244, 240, 22, 189, 70, 192, 25, 39, 243, 76, 122, + 73, 69, 211, 104, 26, 158, 170, 11, 143, 201, 71, 199, 108, 2, 49, 144, 185, 97, 27, 159, 203, 143, 13, 113, 218, + 152, 14, 255, 27, 64, 169, 182, 155, 220, 195, 237, 189, 160, 27, 137, 101, 9, 238, 144, 14, 78, 193, 27, 54, 252, + 102, 43, 86, 161, 192, 158, 27, 237, 112, 227, 185, 200, 106, 113, 209, 27, 38, 193, 58, 237, 83, 178, 15, 197, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3189, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7123763741021726211" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + } + ] + }, + "cborHex": "bf1b62dcb1610f6866031bfffffffffffffff6ff", + "cborBytes": [191, 27, 98, 220, 177, 97, 15, 104, 102, 3, 27, 255, 255, 255, 255, 255, 255, 255, 246, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3190, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "137972903686364227" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "205997518564310942" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15803028705216020613" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "435916556683026912" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8918460882717076628" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4272027181989254832" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15856345173429435078" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11872378253350289781" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2023556095099682820" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17726728672265387554" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17901964550587180458" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7286221614039694787" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "271da594" + }, + { + "_tag": "ByteArray", + "bytearray": "856fb654" + }, + { + "_tag": "ByteArray", + "bytearray": "4260642e71e1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17529776878811127660" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8402648230181720882" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5a60f90ac18ec8523325755" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27fe0e27c8" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10653737558949119196" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1e44ad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12893257286752614808" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11443499823206323958" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13177422377284001649" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10798446302557815186" + } + } + } + ] + }, + "cborHex": "bf1b01ea2d9ff8dadc43bf1b02dbd9a6d6a33f9e1bdb4fa2e11db3c0851b060cafcc78cda1e01b7bc4bcebb9916c941b3b494a167d4856b01bdc0d0decba3dbac61ba4c3291e6e0441751b1c151d8c177e40041bf601fdcea41c3e221bf8708de8fb6265aaff1b651ddbf4339bfdc39f44271da59444856fb654464260642e71e11bf3464731cd649f6cff1b749c340bd48bd332bf4cb5a60f90ac18ec85233257554527fe0e27c8ff1b93d9addd2b6644dc9f431e44ad1bb2ee0d30de9b3998ff1b9ecf7a757d7556f6a01bb6df9bd5cd4bdf711b95dbc9b31616c192ff", + "cborBytes": [ + 191, 27, 1, 234, 45, 159, 248, 218, 220, 67, 191, 27, 2, 219, 217, 166, 214, 163, 63, 158, 27, 219, 79, 162, 225, + 29, 179, 192, 133, 27, 6, 12, 175, 204, 120, 205, 161, 224, 27, 123, 196, 188, 235, 185, 145, 108, 148, 27, 59, + 73, 74, 22, 125, 72, 86, 176, 27, 220, 13, 13, 236, 186, 61, 186, 198, 27, 164, 195, 41, 30, 110, 4, 65, 117, 27, + 28, 21, 29, 140, 23, 126, 64, 4, 27, 246, 1, 253, 206, 164, 28, 62, 34, 27, 248, 112, 141, 232, 251, 98, 101, 170, + 255, 27, 101, 29, 219, 244, 51, 155, 253, 195, 159, 68, 39, 29, 165, 148, 68, 133, 111, 182, 84, 70, 66, 96, 100, + 46, 113, 225, 27, 243, 70, 71, 49, 205, 100, 159, 108, 255, 27, 116, 156, 52, 11, 212, 139, 211, 50, 191, 76, 181, + 166, 15, 144, 172, 24, 236, 133, 35, 50, 87, 85, 69, 39, 254, 14, 39, 200, 255, 27, 147, 217, 173, 221, 43, 102, + 68, 220, 159, 67, 30, 68, 173, 27, 178, 238, 13, 48, 222, 155, 57, 152, 255, 27, 158, 207, 122, 117, 125, 117, 86, + 246, 160, 27, 182, 223, 155, 213, 205, 75, 223, 113, 27, 149, 219, 201, 179, 22, 22, 193, 146, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3191, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "79" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4429825352552427532" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9071837180964497486" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b76" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15673247488674339490" + } + } + ] + } + } + ] + }, + "cborHex": "bf4179d8669f1b3d79e6b01be8300c9f1b7de5a3d9f791e84e428b761bd9828f8cef379aa2ffffff", + "cborBytes": [ + 191, 65, 121, 216, 102, 159, 27, 61, 121, 230, 176, 27, 232, 48, 12, 159, 27, 125, 229, 163, 217, 247, 145, 232, + 78, 66, 139, 118, 27, 217, 130, 143, 140, 239, 55, 154, 162, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3192, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a612e9bc2fc989" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8cab1af40dc714cda2dc66a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17289031732903417116" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf47a612e9bc2fc989bf4c8cab1af40dc714cda2dc66a81befeefac2862a151cffff", + "cborBytes": [ + 191, 71, 166, 18, 233, 188, 47, 201, 137, 191, 76, 140, 171, 26, 244, 13, 199, 20, 205, 162, 220, 102, 168, 27, + 239, 238, 250, 194, 134, 42, 21, 28, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3193, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ed67647f55768" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01c136dc5d4e7889c2b4a454" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86456ac0df11213a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16227548465052278370" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b725f4fa011625d4db2806" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5108f8cba7471789568" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3c1730d9e07c0661d8d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10501977688480077854" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6f60413200345fd3681" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2221103071341001539" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d6ddec3b33" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6035680503952041741" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebe23ee15389f8a2" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f974eee7" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12662123762404999318" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9de6cd66e262" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1095653630580277461" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9174635267870791730" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6c024141702f2fad4d90" + } + ] + } + } + ] + }, + "cborHex": "bf470ed67647f557684c01c136dc5d4e7889c2b4a4544886456ac0df11213a1be133d55a0ae05e624bb725f4fa011625d4db28064aa5108f8cba74717895684ad3c1730d9e07c0661d8d9f1b91be8510d8eed81e4ad6f60413200345fd36811b1ed2f179b8cf3b4345d6ddec3b331b53c30b709fcfe70dff48ebe23ee15389f8a28044f974eee79f1bafb8e679a02ec096469de6cd66e2621b0f348b2c079ac0d51b7f52da2ab53598324a6c024141702f2fad4d90ffff", + "cborBytes": [ + 191, 71, 14, 214, 118, 71, 245, 87, 104, 76, 1, 193, 54, 220, 93, 78, 120, 137, 194, 180, 164, 84, 72, 134, 69, + 106, 192, 223, 17, 33, 58, 27, 225, 51, 213, 90, 10, 224, 94, 98, 75, 183, 37, 244, 250, 1, 22, 37, 212, 219, 40, + 6, 74, 165, 16, 143, 140, 186, 116, 113, 120, 149, 104, 74, 211, 193, 115, 13, 158, 7, 192, 102, 29, 141, 159, 27, + 145, 190, 133, 16, 216, 238, 216, 30, 74, 214, 246, 4, 19, 32, 3, 69, 253, 54, 129, 27, 30, 210, 241, 121, 184, + 207, 59, 67, 69, 214, 221, 236, 59, 51, 27, 83, 195, 11, 112, 159, 207, 231, 13, 255, 72, 235, 226, 62, 225, 83, + 137, 248, 162, 128, 68, 249, 116, 238, 231, 159, 27, 175, 184, 230, 121, 160, 46, 192, 150, 70, 157, 230, 205, + 102, 226, 98, 27, 15, 52, 139, 44, 7, 154, 192, 213, 27, 127, 82, 218, 42, 181, 53, 152, 50, 74, 108, 2, 65, 65, + 112, 47, 47, 173, 77, 144, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3194, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03f9e6100a09f7a9062202" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf064b03f9e6100a09f7a90622020780ff", + "cborBytes": [191, 6, 75, 3, 249, 230, 16, 10, 9, 247, 169, 6, 34, 2, 7, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3195, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a8213a57ae882b7fcea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7773764324450194236" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6700423542594447051" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16376894695404627632" + } + } + } + ] + }, + "cborHex": "bf0280034a6a8213a57ae882b7fcea1bffffffffffffffee9f1b6be1f5774675533c1b5cfcafb62d01a6cbff1bfffffffffffffff61be3466af4fb9266b0ff", + "cborBytes": [ + 191, 2, 128, 3, 74, 106, 130, 19, 165, 122, 232, 130, 183, 252, 234, 27, 255, 255, 255, 255, 255, 255, 255, 238, + 159, 27, 107, 225, 245, 119, 70, 117, 83, 60, 27, 92, 252, 175, 182, 45, 1, 166, 203, 255, 27, 255, 255, 255, 255, + 255, 255, 255, 246, 27, 227, 70, 106, 244, 251, 146, 102, 176, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3196, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6ad9371591bb6c5b634ef6b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15239547122419769627" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13465294819669250395" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1228229574912553861" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2733984165354425418" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16663512906821925815" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2924297156387464569" + } + } + ] + } + } + ] + }, + "cborHex": "bf4cc6ad9371591bb6c5b634ef6bd8669f1bd37dbf5d81a8211b9f1bbade564bda4b115b1b110b8c4a7b4ab3851b25f1101cf57e4c4a1be740b0b3a141fbb71b289530c52828e579ffffff", + "cborBytes": [ + 191, 76, 198, 173, 147, 113, 89, 27, 182, 197, 182, 52, 239, 107, 216, 102, 159, 27, 211, 125, 191, 93, 129, 168, + 33, 27, 159, 27, 186, 222, 86, 75, 218, 75, 17, 91, 27, 17, 11, 140, 74, 123, 74, 179, 133, 27, 37, 241, 16, 28, + 245, 126, 76, 74, 27, 231, 64, 176, 179, 161, 65, 251, 183, 27, 40, 149, 48, 197, 40, 40, 229, 121, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3197, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aed5ec8e2b6ae4d679d7dbc1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9332145949101871563" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0147ff457802f8377003" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbe3b459927ed275e0f7fe5b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10024526191659011724" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4caed5ec8e2b6ae4d679d7dbc1d905019f1b8182714c005151cb4a0147ff457802f8377003ff4cdbe3b459927ed275e0f7fe5bbf1b8b1e4575876f4e8c01ffff", + "cborBytes": [ + 191, 76, 174, 213, 236, 142, 43, 106, 228, 214, 121, 215, 219, 193, 217, 5, 1, 159, 27, 129, 130, 113, 76, 0, 81, + 81, 203, 74, 1, 71, 255, 69, 120, 2, 248, 55, 112, 3, 255, 76, 219, 227, 180, 89, 146, 126, 210, 117, 224, 247, + 254, 91, 191, 27, 139, 30, 69, 117, 135, 111, 78, 140, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3198, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f84712c7a304e62153330b44" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2158944391716408510" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7369794732652271337" + } + }, + { + "_tag": "ByteArray", + "bytearray": "56e3ba49b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4345262219804451718" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3713955cc4" + }, + { + "_tag": "ByteArray", + "bytearray": "34ebdd16b5326f7993f6" + } + ] + } + } + ] + }, + "cborHex": "bf0e804cf84712c7a304e62153330b44d8669f1b1df61c7c56140cbe9f1b6646c543334896e94556e3ba49b61b3c4d78f77b5ea386453713955cc44a34ebdd16b5326f7993f6ffffff", + "cborBytes": [ + 191, 14, 128, 76, 248, 71, 18, 199, 163, 4, 230, 33, 83, 51, 11, 68, 216, 102, 159, 27, 29, 246, 28, 124, 86, 20, + 12, 190, 159, 27, 102, 70, 197, 67, 51, 72, 150, 233, 69, 86, 227, 186, 73, 182, 27, 60, 77, 120, 247, 123, 94, + 163, 134, 69, 55, 19, 149, 92, 196, 74, 52, 235, 221, 22, 181, 50, 111, 121, 147, 246, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3199, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfe9a6c815cdfbf778e20586" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + }, + "cborHex": "bf4ccfe9a6c815cdfbf778e205860aff", + "cborBytes": [191, 76, 207, 233, 166, 200, 21, 205, 251, 247, 120, 226, 5, 134, 10, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3200, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07020475730407799a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17150839229898748242" + } + }, + { + "_tag": "ByteArray", + "bytearray": "229b5b3b" + }, + { + "_tag": "ByteArray", + "bytearray": "32" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07027305060612" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "557e7a5ebed6f1ec4b664504" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bda" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12863013181119438545" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e56f29d03c0aadde32256e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f66e2a39" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + } + ] + }, + "cborHex": "bf41071bfffffffffffffffc4907020475730407799a9f1bee04056919f2f15244229b5b3b4132ff47070273050606124c557e7a5ebed6f1ec4b664504424bda1bb2829a5649ca9ed14be56f29d03c0aadde32256e4207fc44f66e2a3904ff", + "cborBytes": [ + 191, 65, 7, 27, 255, 255, 255, 255, 255, 255, 255, 252, 73, 7, 2, 4, 117, 115, 4, 7, 121, 154, 159, 27, 238, 4, 5, + 105, 25, 242, 241, 82, 68, 34, 155, 91, 59, 65, 50, 255, 71, 7, 2, 115, 5, 6, 6, 18, 76, 85, 126, 122, 94, 190, + 214, 241, 236, 75, 102, 69, 4, 66, 75, 218, 27, 178, 130, 154, 86, 73, 202, 158, 209, 75, 229, 111, 41, 208, 60, + 10, 173, 222, 50, 37, 110, 66, 7, 252, 68, 246, 110, 42, 57, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3201, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10786296822463055365" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15815586964248427697" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6898781406004526515" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b0dd715c0b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9df2fabbb5c4ef7d905a08" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8bfc4a8fb392a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7611a545251c9b75" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "252ce23ed8b03a7d63" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0bcc99eb" + } + } + ] + }, + "cborHex": "bf1b95b09fcfd0d5c605bf1bdb7c408ca6537cb11b5fbd65232ff83db3460b0dd715c0b44b9df2fabbb5c4ef7d905a0847c8bfc4a8fb392a487611a545251c9b75ff49252ce23ed8b03a7d63440bcc99ebff", + "cborBytes": [ + 191, 27, 149, 176, 159, 207, 208, 213, 198, 5, 191, 27, 219, 124, 64, 140, 166, 83, 124, 177, 27, 95, 189, 101, + 35, 47, 248, 61, 179, 70, 11, 13, 215, 21, 192, 180, 75, 157, 242, 250, 187, 181, 196, 239, 125, 144, 90, 8, 71, + 200, 191, 196, 168, 251, 57, 42, 72, 118, 17, 165, 69, 37, 28, 155, 117, 255, 73, 37, 44, 226, 62, 216, 176, 58, + 125, 99, 68, 11, 204, 153, 235, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3202, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00f9f8829d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17573113089824191219" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17578644414666648060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18128355221959403997" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf134500f9f8829d1bf3e03d3fb4bcf2f3bf1bf3f3e3f5a11c29fc1bfb94db06b6fce9ddffff", + "cborBytes": [ + 191, 19, 69, 0, 249, 248, 130, 157, 27, 243, 224, 61, 63, 180, 188, 242, 243, 191, 27, 243, 243, 227, 245, 161, + 28, 41, 252, 27, 251, 148, 219, 6, 182, 252, 233, 221, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3203, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a407676156814aca3e076" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1df1ce0dc07848ed2c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3884254579637230507" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18167733819597110568" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "600ec4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee60" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a853fe411b3aa6aa396" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b9eadcf355" + }, + { + "_tag": "ByteArray", + "bytearray": "ecc5d4f23c0d" + }, + { + "_tag": "ByteArray", + "bytearray": "4b2ae78e" + }, + { + "_tag": "ByteArray", + "bytearray": "4ec45a2aa396e3bb" + }, + { + "_tag": "ByteArray", + "bytearray": "816b70bc4949958c49a8" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d111db2b5085c17" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18044721444736500003" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d09c86aa9ef7da2914" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b0a407676156814aca3e0769f491df1ce0dc07848ed2c1b35e7a4f5e4761bab1bfc20c1a6f2efbd28ff43600ec442ee604a6a853fe411b3aa6aa3969f45b9eadcf35546ecc5d4f23c0d444b2ae78e484ec45a2aa396e3bb4a816b70bc4949958c49a8ff487d111db2b5085c17bf1bfa6bba8c8864812349d09c86aa9ef7da2914ffff", + "cborBytes": [ + 191, 75, 10, 64, 118, 118, 21, 104, 20, 172, 163, 224, 118, 159, 73, 29, 241, 206, 13, 192, 120, 72, 237, 44, 27, + 53, 231, 164, 245, 228, 118, 27, 171, 27, 252, 32, 193, 166, 242, 239, 189, 40, 255, 67, 96, 14, 196, 66, 238, 96, + 74, 106, 133, 63, 228, 17, 179, 170, 106, 163, 150, 159, 69, 185, 234, 220, 243, 85, 70, 236, 197, 212, 242, 60, + 13, 68, 75, 42, 231, 142, 72, 78, 196, 90, 42, 163, 150, 227, 187, 74, 129, 107, 112, 188, 73, 73, 149, 140, 73, + 168, 255, 72, 125, 17, 29, 178, 181, 8, 92, 23, 191, 27, 250, 107, 186, 140, 136, 100, 129, 35, 73, 208, 156, 134, + 170, 158, 247, 218, 41, 20, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3204, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17239584898278440398" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1266148930836173878" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12756973031710654475" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8478334877991860579" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18132350094940616673" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14556308957702999071" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8488779205521327328" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14901329894193964616" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c88f90505e92a48c7e7" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbc126b3316a29b59e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6117035992783759053" + } + }, + { + "_tag": "ByteArray", + "bytearray": "611158b11381f17e018c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1830814560922243095" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bef3f4f2031133dcebf1b119243be873b14361bb109df620c5a000b1b75a918a6c18279631bfba30c578ff4b7e11bca0265dfd8b94c1f1b75ce33b641d244e01bcecc2896905726484a0c88f90505e92a48c7e7ff49bbc126b3316a29b59e9f1b54e413d37427a6cd4a611158b11381f17e018c1b19685c24a1621017ffff", + "cborBytes": [ + 191, 27, 239, 63, 79, 32, 49, 19, 61, 206, 191, 27, 17, 146, 67, 190, 135, 59, 20, 54, 27, 177, 9, 223, 98, 12, + 90, 0, 11, 27, 117, 169, 24, 166, 193, 130, 121, 99, 27, 251, 163, 12, 87, 143, 244, 183, 225, 27, 202, 2, 101, + 223, 216, 185, 76, 31, 27, 117, 206, 51, 182, 65, 210, 68, 224, 27, 206, 204, 40, 150, 144, 87, 38, 72, 74, 12, + 136, 249, 5, 5, 233, 42, 72, 199, 231, 255, 73, 187, 193, 38, 179, 49, 106, 41, 181, 158, 159, 27, 84, 228, 19, + 211, 116, 39, 166, 205, 74, 97, 17, 88, 177, 19, 129, 241, 126, 1, 140, 27, 25, 104, 92, 36, 161, 98, 16, 23, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3205, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b1f493ae1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3015766713938338201" + } + }, + { + "_tag": "ByteArray", + "bytearray": "68b917700d8fa52cdea8a69b" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d7a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "303785999607369970" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8b43f94a95300427508034" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10502903184327748282" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8b4c1f2d5593" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3603119211449151819" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17546759321403325864" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8383199496ff345" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12677609030727627846" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6342fc8f3a31802b8f" + }, + { + "_tag": "ByteArray", + "bytearray": "905de4081cf3d081f007" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2077105947517820042" + } + }, + { + "_tag": "ByteArray", + "bytearray": "30ab68e872" + } + ] + } + } + ] + }, + "cborHex": "bf453b1f493ae19f1b29da27d91dbde1994c68b917700d8fa52cdea8a69bff425d7ad8669f1b043743c1d25590f29f4b8b43f94a953004275080341b91c1cecca42caaba468b4c1f2d55931b3200d9d529cff14b1bf3829ca2d784fda8ffff48f8383199496ff3459f1bafefea3e9dcdf446496342fc8f3a31802b8f4a905de4081cf3d081f0071b1cd35cdab2a69c8a4530ab68e872ffff", + "cborBytes": [ + 191, 69, 59, 31, 73, 58, 225, 159, 27, 41, 218, 39, 217, 29, 189, 225, 153, 76, 104, 185, 23, 112, 13, 143, 165, + 44, 222, 168, 166, 155, 255, 66, 93, 122, 216, 102, 159, 27, 4, 55, 67, 193, 210, 85, 144, 242, 159, 75, 139, 67, + 249, 74, 149, 48, 4, 39, 80, 128, 52, 27, 145, 193, 206, 204, 164, 44, 170, 186, 70, 139, 76, 31, 45, 85, 147, 27, + 50, 0, 217, 213, 41, 207, 241, 75, 27, 243, 130, 156, 162, 215, 132, 253, 168, 255, 255, 72, 248, 56, 49, 153, 73, + 111, 243, 69, 159, 27, 175, 239, 234, 62, 157, 205, 244, 70, 73, 99, 66, 252, 143, 58, 49, 128, 43, 143, 74, 144, + 93, 228, 8, 28, 243, 208, 129, 240, 7, 27, 28, 211, 92, 218, 178, 166, 156, 138, 69, 48, 171, 104, 232, 114, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3206, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e633d2bce96840" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0704f86a04145732" + } + ] + } + } + ] + }, + "cborHex": "bf0b47e633d2bce968400e9f480704f86a04145732ffff", + "cborBytes": [191, 11, 71, 230, 51, 210, 188, 233, 104, 64, 14, 159, 72, 7, 4, 248, 106, 4, 20, 87, 50, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3207, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fd39efe" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbd103fa030601fff23801b0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1797239850814356707" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02ff88" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2712" + }, + { + "_tag": "ByteArray", + "bytearray": "a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10081202247306216599" + } + } + ] + } + } + ] + }, + "cborHex": "bf446fd39efed8669f1bfffffffffffffffc9f0dffff4cfbd103fa030601fff23801b0d8669f1b18f1141f43f73ce39f4302ff881bfffffffffffffff442271241a71b8be7a0080b8e8497ffffff", + "cborBytes": [ + 191, 68, 111, 211, 158, 254, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 13, 255, 255, 76, + 251, 209, 3, 250, 3, 6, 1, 255, 242, 56, 1, 176, 216, 102, 159, 27, 24, 241, 20, 31, 67, 247, 60, 227, 159, 67, 2, + 255, 136, 27, 255, 255, 255, 255, 255, 255, 255, 244, 66, 39, 18, 65, 167, 27, 139, 231, 160, 8, 11, 142, 132, + 151, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3208, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0006f96d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17741566446941442806" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16135166042620729358" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "081a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11385351980533035021" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9235209681857809614" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dfdcca14" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1fef294caa3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e0c56e6970ecc1fe8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee07f995ff8406ae" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf440006f96dd87a9f1bf636b4af44ef12f61bdfeba0072a5a980eff42081a9f1b9e00e54dda76300d1b802a0e4681620cce44dfdcca14ff46a1fef294caa3499e0c56e6970ecc1fe848ee07f995ff8406ae80ff", + "cborBytes": [ + 191, 68, 0, 6, 249, 109, 216, 122, 159, 27, 246, 54, 180, 175, 68, 239, 18, 246, 27, 223, 235, 160, 7, 42, 90, + 152, 14, 255, 66, 8, 26, 159, 27, 158, 0, 229, 77, 218, 118, 48, 13, 27, 128, 42, 14, 70, 129, 98, 12, 206, 68, + 223, 220, 202, 20, 255, 70, 161, 254, 242, 148, 202, 163, 73, 158, 12, 86, 230, 151, 14, 204, 31, 232, 72, 238, 7, + 249, 149, 255, 132, 6, 174, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3209, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "13ef712afb0b943e3c63" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf064a13ef712afb0b943e3c6341caa0ff", + "cborBytes": [191, 6, 74, 19, 239, 113, 42, 251, 11, 148, 62, 60, 99, 65, 202, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3210, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "64356a0d0b44f628d4f0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "70d3cb36b12fc5d98b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5211523605561439917" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14922322872241396616" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18382369828693212916" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "89db60" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "13" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9774987007526320173" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a6746" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "277d12d97cc20d87e2316c87" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f17521b3d9a7538c59db2d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8fb0edae63" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56648d45ed24aa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0935d33d2120141e4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78f2346f78" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5bffb350be6557808" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17481452039721459150" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecb4f475c101870d3c43" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac91" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9d6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f59eac299274" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b52" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0fef3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d46efffcb6d602f8a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7783194935992338264" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4a64356a0d0b44f628d4f0114970d3cb36b12fc5d98bbf1b48530d1b800d76ad1bcf16bd9727a29b881bff1b4bf7191dfef44389db6041131b87a7bae4abaa382dff418fbf430a67464c277d12d97cc20d87e2316c874c1f17521b3d9a7538c59db2d7458fb0edae63426c274756648d45ed24aa49d0935d33d2120141e44578f2346f7849e5bffb350be65578081bf29a980269a01dce4aecb4f475c101870d3c4342ac91ff42d9d6d8669f1bfffffffffffffff080ff46f59eac299274a041f9bf425b5243e0fef349d46efffcb6d602f8a11b6c03768ea1714758ffff", + "cborBytes": [ + 191, 74, 100, 53, 106, 13, 11, 68, 246, 40, 212, 240, 17, 73, 112, 211, 203, 54, 177, 47, 197, 217, 139, 191, 27, + 72, 83, 13, 27, 128, 13, 118, 173, 27, 207, 22, 189, 151, 39, 162, 155, 136, 27, 255, 27, 75, 247, 25, 29, 254, + 244, 67, 137, 219, 96, 65, 19, 27, 135, 167, 186, 228, 171, 170, 56, 45, 255, 65, 143, 191, 67, 10, 103, 70, 76, + 39, 125, 18, 217, 124, 194, 13, 135, 226, 49, 108, 135, 76, 31, 23, 82, 27, 61, 154, 117, 56, 197, 157, 178, 215, + 69, 143, 176, 237, 174, 99, 66, 108, 39, 71, 86, 100, 141, 69, 237, 36, 170, 73, 208, 147, 93, 51, 210, 18, 1, 65, + 228, 69, 120, 242, 52, 111, 120, 73, 229, 191, 251, 53, 11, 230, 85, 120, 8, 27, 242, 154, 152, 2, 105, 160, 29, + 206, 74, 236, 180, 244, 117, 193, 1, 135, 13, 60, 67, 66, 172, 145, 255, 66, 217, 214, 216, 102, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 240, 128, 255, 70, 245, 158, 172, 41, 146, 116, 160, 65, 249, 191, 66, 91, 82, 67, + 224, 254, 243, 73, 212, 110, 255, 252, 182, 214, 2, 248, 161, 27, 108, 3, 118, 142, 161, 113, 71, 88, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3211, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3604765447405368982" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13184973694188111904" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7160440873783996205" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f7b17eb0bc8c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6330297224465269943" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "76" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1049520102919729346" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15360668825670870183" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13817341902098734157" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "397a47" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2035303274698073728" + } + }, + { + "_tag": "ByteArray", + "bytearray": "56" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1448106248436530367" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2690278924804789955" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16939015033298842098" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3361770c8314a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3710747376591625416" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "467570f193dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62ad9b45eaf8099ff29f5e9b" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3206b3135732f696d8669f1bb6fa6fb7c6f3c8209f1b635eff097d152f2d46f7b17eb0bc8cffff1b57d9bbc94ae4c4b79f41761b0e90a4f9172970c2ff1bd52c0ee9a28764a7d8669f1bbfc10f40a6b71c4d9f43397a471b1c3ed98b7a91668041561b1418b4f5e7153cbf1b2555ca6dabb596c3ffff1beb13786d10c771f2bf473361770c8314a11b337f391420f4dcc846467570f193dc4c62ad9b45eaf8099ff29f5e9bffff", + "cborBytes": [ + 191, 27, 50, 6, 179, 19, 87, 50, 246, 150, 216, 102, 159, 27, 182, 250, 111, 183, 198, 243, 200, 32, 159, 27, 99, + 94, 255, 9, 125, 21, 47, 45, 70, 247, 177, 126, 176, 188, 140, 255, 255, 27, 87, 217, 187, 201, 74, 228, 196, 183, + 159, 65, 118, 27, 14, 144, 164, 249, 23, 41, 112, 194, 255, 27, 213, 44, 14, 233, 162, 135, 100, 167, 216, 102, + 159, 27, 191, 193, 15, 64, 166, 183, 28, 77, 159, 67, 57, 122, 71, 27, 28, 62, 217, 139, 122, 145, 102, 128, 65, + 86, 27, 20, 24, 180, 245, 231, 21, 60, 191, 27, 37, 85, 202, 109, 171, 181, 150, 195, 255, 255, 27, 235, 19, 120, + 109, 16, 199, 113, 242, 191, 71, 51, 97, 119, 12, 131, 20, 161, 27, 51, 127, 57, 20, 32, 244, 220, 200, 70, 70, + 117, 112, 241, 147, 220, 76, 98, 173, 155, 69, 234, 248, 9, 159, 242, 159, 94, 155, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3212, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8400fa90" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe" + } + } + ] + }, + "cborHex": "bf448400fa9041feff", + "cborBytes": [191, 68, 132, 0, 250, 144, 65, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3213, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5296540109287146720" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "528444ce8e13acdd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d49783cf22d91b920f603e2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d4c60eb609d6330a5fb6ebb" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1102975389338388162" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5459548376527051093" + } + }, + { + "_tag": "ByteArray", + "bytearray": "43" + } + ] + } + } + ] + }, + "cborHex": "bf09bf1b4981172ac8ab44e048528444ce8e13acdd4c8d49783cf22d91b920f603e24c2d4c60eb609d6330a5fb6ebbff1b0f4e8e45d58346c29f1b4bc4365290f499554143ffff", + "cborBytes": [ + 191, 9, 191, 27, 73, 129, 23, 42, 200, 171, 68, 224, 72, 82, 132, 68, 206, 142, 19, 172, 221, 76, 141, 73, 120, + 60, 242, 45, 145, 185, 32, 246, 3, 226, 76, 45, 76, 96, 235, 96, 157, 99, 48, 165, 251, 110, 187, 255, 27, 15, 78, + 142, 69, 213, 131, 70, 194, 159, 27, 75, 196, 54, 82, 144, 244, 153, 85, 65, 67, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3214, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3719e9fa1a46f36f3f0b61" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "304993483802173000" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "eddf19a8dbbcf11716a4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14384027812766556938" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4e076209261f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12389576887743656665" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79d7a31b8c09ed1fe5a3d6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d20d121eb26e336f534a2b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8dd5b512efb08c4bca" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6224600137100046072" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3a9c41f68a73f347d79f0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12929122932560393040" + } + } + } + ] + }, + "cborHex": "bf4b3719e9fa1a46f36f3f0b61d8669f1b043b8df524d65e489f4aeddf19a8dbbcf11716a41bc79e5515fb4a230a464e076209261f1babf09e895f59b2d9ffff4b79d7a31b8c09ed1fe5a3d64bd20d121eb26e336f534a2b498dd5b512efb08c4bca1b566238d868b22ef84bd3a9c41f68a73f347d79f01bb36d78ce449e7350ff", + "cborBytes": [ + 191, 75, 55, 25, 233, 250, 26, 70, 243, 111, 63, 11, 97, 216, 102, 159, 27, 4, 59, 141, 245, 36, 214, 94, 72, 159, + 74, 237, 223, 25, 168, 219, 188, 241, 23, 22, 164, 27, 199, 158, 85, 21, 251, 74, 35, 10, 70, 78, 7, 98, 9, 38, + 31, 27, 171, 240, 158, 137, 95, 89, 178, 217, 255, 255, 75, 121, 215, 163, 27, 140, 9, 237, 31, 229, 163, 214, 75, + 210, 13, 18, 30, 178, 110, 51, 111, 83, 74, 43, 73, 141, 213, 181, 18, 239, 176, 140, 75, 202, 27, 86, 98, 56, + 216, 104, 178, 46, 248, 75, 211, 169, 196, 31, 104, 167, 63, 52, 125, 121, 240, 27, 179, 109, 120, 206, 68, 158, + 115, 80, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3215, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28c81702fb189800f80100fb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "07b4af8adbe815" + }, + { + "_tag": "ByteArray", + "bytearray": "8ebf77" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18113623540640719087" + } + }, + { + "_tag": "ByteArray", + "bytearray": "703553d8be" + }, + { + "_tag": "ByteArray", + "bytearray": "877a657d4768735b2db0" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "560547fdf85ac9ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + } + ] + }, + "cborHex": "bf4c28c81702fb189800f80100fb9f4707b4af8adbe815438ebf771bfb6084a3df0b20ef45703553d8be4a877a657d4768735b2db0ff48560547fdf85ac9ba00ff", + "cborBytes": [ + 191, 76, 40, 200, 23, 2, 251, 24, 152, 0, 248, 1, 0, 251, 159, 71, 7, 180, 175, 138, 219, 232, 21, 67, 142, 191, + 119, 27, 251, 96, 132, 163, 223, 11, 32, 239, 69, 112, 53, 83, 216, 190, 74, 135, 122, 101, 125, 71, 104, 115, 91, + 45, 176, 255, 72, 86, 5, 71, 253, 248, 90, 201, 186, 0, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3216, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + { + "_tag": "ByteArray", + "bytearray": "939e6e" + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffd9f1443939e6effff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 20, 67, 147, 158, 110, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3217, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2142f124ec1d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13380727079201472540" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cfde20" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10417893214250081699" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dde43fff4f28c25d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4577610420733606424" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f5e500" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f4d32" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea1461309f60c29119525006" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "594da339c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a085804402742df81e711fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddbf0c480c2e42284fcbfa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a86b071b" + } + } + ] + } + } + ] + }, + "cborHex": "bf462142f124ec1d1bb9b1e4626841001c43cfde201b9093caae97541da348dde43fff4f28c25d1b3f86f06ca7f3fa1843f5e500bf431f4d324cea1461309f60c2911952500645594da339c04c7a085804402742df81e711fe4bddbf0c480c2e42284fcbfa44a86b071bffff", + "cborBytes": [ + 191, 70, 33, 66, 241, 36, 236, 29, 27, 185, 177, 228, 98, 104, 65, 0, 28, 67, 207, 222, 32, 27, 144, 147, 202, + 174, 151, 84, 29, 163, 72, 221, 228, 63, 255, 79, 40, 194, 93, 27, 63, 134, 240, 108, 167, 243, 250, 24, 67, 245, + 229, 0, 191, 67, 31, 77, 50, 76, 234, 20, 97, 48, 159, 96, 194, 145, 25, 82, 80, 6, 69, 89, 77, 163, 57, 192, 76, + 122, 8, 88, 4, 64, 39, 66, 223, 129, 231, 17, 254, 75, 221, 191, 12, 72, 12, 46, 66, 40, 79, 203, 250, 68, 168, + 107, 7, 27, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3218, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "306961655700101351" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4400bf9ad" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3697549325586641005" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11871677499133582692" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4789023865438341325" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5423675250824853158" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b04428bffdfab98e745b4400bf9ad1b335055856b13b06d9f1ba4c0abc95fdadd641b427607d5105208cd1b4b44c3e79e7e36a6ffff", + "cborBytes": [ + 191, 27, 4, 66, 139, 255, 223, 171, 152, 231, 69, 180, 64, 11, 249, 173, 27, 51, 80, 85, 133, 107, 19, 176, 109, + 159, 27, 164, 192, 171, 201, 95, 218, 221, 100, 27, 66, 118, 7, 213, 16, 82, 8, 205, 27, 75, 68, 195, 231, 158, + 126, 54, 166, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3219, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00faf6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "37422dd2c81148bd1404ed00" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16752795398047495751" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3707855063364610452" + } + }, + { + "_tag": "ByteArray", + "bytearray": "532ad8f9045607fc80" + }, + { + "_tag": "ByteArray", + "bytearray": "0f821f6c02b30698b51bea3d" + } + ] + } + } + ] + }, + "cborHex": "bf4300faf69f4c37422dd2c81148bd1404ed001be87de2a7876b76471b3374f288fa7b299449532ad8f9045607fc804c0f821f6c02b30698b51bea3dffff", + "cborBytes": [ + 191, 67, 0, 250, 246, 159, 76, 55, 66, 45, 210, 200, 17, 72, 189, 20, 4, 237, 0, 27, 232, 125, 226, 167, 135, 107, + 118, 71, 27, 51, 116, 242, 136, 250, 123, 41, 148, 73, 83, 42, 216, 249, 4, 86, 7, 252, 128, 76, 15, 130, 31, 108, + 2, 179, 6, 152, 181, 27, 234, 61, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3220, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00cc" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4835598714dfabfc7f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "75ba83293900" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12801225182351193132" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b95f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2fdbff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebe71f21813d2ae950f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8621309667622533286" + } + } + } + ] + }, + "cborHex": "bf4200cca0494835598714dfabfc7fd87e804675ba832939001bb1a7167ac3d3f42c42b95f432fdbff4aebe71f21813d2ae950f71b77a50b770d4838a6ff", + "cborBytes": [ + 191, 66, 0, 204, 160, 73, 72, 53, 89, 135, 20, 223, 171, 252, 127, 216, 126, 128, 70, 117, 186, 131, 41, 57, 0, + 27, 177, 167, 22, 122, 195, 211, 244, 44, 66, 185, 95, 67, 47, 219, 255, 74, 235, 231, 31, 33, 129, 61, 42, 233, + 80, 247, 27, 119, 165, 11, 119, 13, 72, 56, 166, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3221, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2487534377727689828" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49419c564adabe14bbde2774" + } + } + ] + }, + "cborHex": "bf0a071b22857f56470804644c49419c564adabe14bbde2774ff", + "cborBytes": [ + 191, 10, 7, 27, 34, 133, 127, 86, 71, 8, 4, 100, 76, 73, 65, 156, 86, 74, 218, 190, 20, 187, 222, 39, 116, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3222, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1639408808355412546" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16149809840380930157" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3261316961848098293" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10941443284374811710" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13205938081111096963" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bd98d0893b4990c1293" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1495774523657471753" + } + } + } + ] + }, + "cborHex": "bf1b16c059a00fabba421be01fa67c0603686d1b2d42867f62e97df5a01b97d7d0b2673e743e1bb744eab77a6e3e834a8bd98d0893b4990c12931b14c20f011aaec709ff", + "cborBytes": [ + 191, 27, 22, 192, 89, 160, 15, 171, 186, 66, 27, 224, 31, 166, 124, 6, 3, 104, 109, 27, 45, 66, 134, 127, 98, 233, + 125, 245, 160, 27, 151, 215, 208, 178, 103, 62, 116, 62, 27, 183, 68, 234, 183, 122, 110, 62, 131, 74, 139, 217, + 141, 8, 147, 180, 153, 12, 18, 147, 27, 20, 194, 15, 1, 26, 174, 199, 9, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3223, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e1c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4e360" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10424363765947519666" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e296e0a7ce3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "020063" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d80014fc64" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2703832616456547367" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf422e1cbf43e4e3601b90aac79d4ec152b2ff468e296e0a7ce3bf430200630845d80014fc641b2585f1706c01ec27ffff", + "cborBytes": [ + 191, 66, 46, 28, 191, 67, 228, 227, 96, 27, 144, 170, 199, 157, 78, 193, 82, 178, 255, 70, 142, 41, 110, 10, 124, + 227, 191, 67, 2, 0, 99, 8, 69, 216, 0, 20, 252, 100, 27, 37, 133, 241, 112, 108, 1, 236, 39, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3224, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2869138463550446626" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9569743166106790787" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17269445079339428528" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6df81ae19d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14817330307374285859" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9035480187268180578" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5c7474c4bc67" + }, + { + "_tag": "ByteArray", + "bytearray": "54c58be79b" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efd105b9ca06a4" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8839224313010576888" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b27d13a3b33559c221b84ce8eb4f7846b831befa964cd5e24eab041c8456df81ae19dd8669f1bcda1bb68b2ac84239f1b7d64795bb9332a62465c7474c4bc674554c58be79bffff47efd105b9ca06a49f1b7aab3bae32fdddf8ffff", + "cborBytes": [ + 191, 27, 39, 209, 58, 59, 51, 85, 156, 34, 27, 132, 206, 142, 180, 247, 132, 107, 131, 27, 239, 169, 100, 205, 94, + 36, 234, 176, 65, 200, 69, 109, 248, 26, 225, 157, 216, 102, 159, 27, 205, 161, 187, 104, 178, 172, 132, 35, 159, + 27, 125, 100, 121, 91, 185, 51, 42, 98, 70, 92, 116, 116, 196, 188, 103, 69, 84, 197, 139, 231, 155, 255, 255, 71, + 239, 209, 5, 185, 202, 6, 164, 159, 27, 122, 171, 59, 174, 50, 253, 221, 248, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3225, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11083750299485017374" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6565466953216253491" + } + }, + { + "_tag": "ByteArray", + "bytearray": "648a79ff831891ab7fd9202f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6370420943479201443" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1311769043304194435" + } + } + ] + } + } + ] + }, + "cborHex": "bf11d8669f1b99d1642c53ef151e9f1b5b1d39689b055e334c648a79ff831891ab7fd9202f1b586848189dc95ea31b123456fead802183ffffff", + "cborBytes": [ + 191, 17, 216, 102, 159, 27, 153, 209, 100, 44, 83, 239, 21, 30, 159, 27, 91, 29, 57, 104, 155, 5, 94, 51, 76, 100, + 138, 121, 255, 131, 24, 145, 171, 127, 217, 32, 47, 27, 88, 104, 72, 24, 157, 201, 94, 163, 27, 18, 52, 86, 254, + 173, 128, 33, 131, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3226, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "000404ef0101" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551603" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf46000404ef0101d8669f1bfffffffffffffff380ffff", + "cborBytes": [ + 191, 70, 0, 4, 4, 239, 1, 1, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 243, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3227, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8351726080240529816" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d39d61076dbe84422" + } + } + ] + }, + "cborHex": "bf1b73e74a9ee21a3198493d39d61076dbe84422ff", + "cborBytes": [191, 27, 115, 231, 74, 158, 226, 26, 49, 152, 73, 61, 57, 214, 16, 118, 219, 232, 68, 34, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3228, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6057756292614383515" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e380edbb27444d26" + } + } + ] + }, + "cborHex": "bf1b54117940b52ae79b48e380edbb27444d26ff", + "cborBytes": [191, 27, 84, 17, 121, 64, 181, 42, 231, 155, 72, 227, 128, 237, 187, 39, 68, 77, 38, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3229, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a64fcb046196940e025" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16832469184301042333" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59aa1252ad" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00b064ed71" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffefbf4a1a64fcb046196940e0251be998f18a76f90a9d4559aa1252ad4500b064ed71ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 239, 191, 74, 26, 100, 252, 176, 70, 25, 105, 64, 224, 37, 27, 233, + 152, 241, 138, 118, 249, 10, 157, 69, 89, 170, 18, 82, 173, 69, 0, 176, 100, 237, 113, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3230, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2866171364084688919" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5224089804123134630" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8cfae6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8764734591664695464" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "56cce3e5423e92f360" + } + ] + } + } + ] + }, + "cborHex": "bf1b27c6afab85aa2817d8669f1b487fb1ff997fdaa69f438cfae6ffff1b79a297ac6ec0a8a8d87f9f4956cce3e5423e92f360ffff", + "cborBytes": [ + 191, 27, 39, 198, 175, 171, 133, 170, 40, 23, 216, 102, 159, 27, 72, 127, 177, 255, 153, 127, 218, 166, 159, 67, + 140, 250, 230, 255, 255, 27, 121, 162, 151, 172, 110, 192, 168, 168, 216, 127, 159, 73, 86, 204, 227, 229, 66, 62, + 146, 243, 96, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3231, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e74ead492a57eb6298ccd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17634533538427061158" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16967853225948762476" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa8c1ff13379" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "419360737190562743" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "483010208290013130" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12240741125555500713" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5e3c5e890a31eaa48cc1cfbb" + } + ] + } + } + ] + }, + "cborHex": "bf4b8e74ead492a57eb6298ccdd8669f1bf4ba72d249a843a69f1beb79ec9c05a4516cffff46fa8c1ff13379d8669f1b05d1de5e5cfd4bb79f1b06b3ff39b0037fca1ba9dfd933104036a94c5e3c5e890a31eaa48cc1cfbbffffff", + "cborBytes": [ + 191, 75, 142, 116, 234, 212, 146, 165, 126, 182, 41, 140, 205, 216, 102, 159, 27, 244, 186, 114, 210, 73, 168, 67, + 166, 159, 27, 235, 121, 236, 156, 5, 164, 81, 108, 255, 255, 70, 250, 140, 31, 241, 51, 121, 216, 102, 159, 27, 5, + 209, 222, 94, 92, 253, 75, 183, 159, 27, 6, 179, 255, 57, 176, 3, 127, 202, 27, 169, 223, 217, 51, 16, 64, 54, + 169, 76, 94, 60, 94, 137, 10, 49, 234, 164, 140, 193, 207, 187, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3232, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7861829523708303849" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1623902967920471622" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9104cf2c8404ff07f8020039" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2159395661039389342" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14121269612557671451" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a9b6ed7b63e6b4082bf14" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14676405753699573037" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12770388960227989858" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6108725523355f7c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e06f6262eb56e03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4790546845888931560" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "953623c15aa5ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca8fef9aee" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1b37a7f4282c787dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71dfb009855604bb9c01" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6d1ad44c4d4fd9e9bf1b16894325409a2e464c9104cf2c8404ff07f80200391b1df7b6e9a9c5ca9e1bfffffffffffffffe1bc3f8d3e51a049c1b4b4a9b6ed7b63e6b4082bf141bcbad114628c31d2d0f1bfffffffffffffff31bfffffffffffffffdff1bb139891951f59962bf486108725523355f7c4177488e06f6262eb56e031b427b70f99513e6e847953623c15aa5ea45ca8fef9aee49b1b37a7f4282c787dc4a71dfb009855604bb9c01ffff", + "cborBytes": [ + 191, 27, 109, 26, 212, 76, 77, 79, 217, 233, 191, 27, 22, 137, 67, 37, 64, 154, 46, 70, 76, 145, 4, 207, 44, 132, + 4, 255, 7, 248, 2, 0, 57, 27, 29, 247, 182, 233, 169, 197, 202, 158, 27, 255, 255, 255, 255, 255, 255, 255, 254, + 27, 195, 248, 211, 229, 26, 4, 156, 27, 75, 74, 155, 110, 215, 182, 62, 107, 64, 130, 191, 20, 27, 203, 173, 17, + 70, 40, 195, 29, 45, 15, 27, 255, 255, 255, 255, 255, 255, 255, 243, 27, 255, 255, 255, 255, 255, 255, 255, 253, + 255, 27, 177, 57, 137, 25, 81, 245, 153, 98, 191, 72, 97, 8, 114, 85, 35, 53, 95, 124, 65, 119, 72, 142, 6, 246, + 38, 46, 181, 110, 3, 27, 66, 123, 112, 249, 149, 19, 230, 232, 71, 149, 54, 35, 193, 90, 165, 234, 69, 202, 143, + 239, 154, 238, 73, 177, 179, 122, 127, 66, 130, 199, 135, 220, 74, 113, 223, 176, 9, 133, 86, 4, 187, 156, 1, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3233, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3851405775710474356" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2839146645509647941" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5494248613215308930" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8635066106839860253" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11984579231846670916" + } + } + } + ] + }, + "cborHex": "bf1b3572f125bb1c50741b2766acd4e6d82e451b4c3f7e0102618c82a01b77d5eadfa634841d1ba651c75078bea244ff", + "cborBytes": [ + 191, 27, 53, 114, 241, 37, 187, 28, 80, 116, 27, 39, 102, 172, 212, 230, 216, 46, 69, 27, 76, 63, 126, 1, 2, 97, + 140, 130, 160, 27, 119, 213, 234, 223, 166, 52, 132, 29, 27, 166, 81, 199, 80, 120, 190, 162, 68, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3234, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7399742848801643464" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6736929117007785448" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11793447783253837817" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f480" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15952760124871548771" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f6cff60a0f3303438e0917" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17811570334148697318" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2786201501477188738" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f1068d614012d17dfd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3850875416570103820" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "922be61e01e73cf0028c2d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10308605975296171746" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9135458253938814662" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15918094799321868128" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15234415107361393772" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17827519659055258687" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec0642f6ae9b4c" + } + } + ] + }, + "cborHex": "bf1b66b12aea5c0f1bc81b5d7e6156903c2de81ba3aabe4645f687f942f4801bdd6396cfedfc1f634bf6cff60a0f3303438e09171bf72f68d962d19ce6bf1b26aa9380f035348249f1068d614012d17dfd1b35710ec9def2080c4b922be61e01e73cf0028c2d1b8f0f868466ff5ee21b7ec7aae1566eeec61bdce86ee1de92a7601bd36b83d3231ecc6cff1bf76812acf8481c3f47ec0642f6ae9b4cff", + "cborBytes": [ + 191, 27, 102, 177, 42, 234, 92, 15, 27, 200, 27, 93, 126, 97, 86, 144, 60, 45, 232, 27, 163, 170, 190, 70, 69, + 246, 135, 249, 66, 244, 128, 27, 221, 99, 150, 207, 237, 252, 31, 99, 75, 246, 207, 246, 10, 15, 51, 3, 67, 142, + 9, 23, 27, 247, 47, 104, 217, 98, 209, 156, 230, 191, 27, 38, 170, 147, 128, 240, 53, 52, 130, 73, 241, 6, 141, + 97, 64, 18, 209, 125, 253, 27, 53, 113, 14, 201, 222, 242, 8, 12, 75, 146, 43, 230, 30, 1, 231, 60, 240, 2, 140, + 45, 27, 143, 15, 134, 132, 102, 255, 94, 226, 27, 126, 199, 170, 225, 86, 110, 238, 198, 27, 220, 232, 110, 225, + 222, 146, 167, 96, 27, 211, 107, 131, 211, 35, 30, 204, 108, 255, 27, 247, 104, 18, 172, 248, 72, 28, 63, 71, 236, + 6, 66, 246, 174, 155, 76, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3235, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff00fff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 240, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3236, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9454252783859648324" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1f3" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b833440d0eeb3c7448042e1f3a0ff", + "cborBytes": [191, 27, 131, 52, 64, 208, 238, 179, 199, 68, 128, 66, 225, 243, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3237, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16" + } + } + ] + }, + "cborHex": "bf41ff4116ff", + "cborBytes": [191, 65, 255, 65, 22, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3238, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6893086768063712637" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca1f23" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf524d94" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d23f1b47e9fb0c" + }, + { + "_tag": "ByteArray", + "bytearray": "cc01fc" + }, + { + "_tag": "ByteArray", + "bytearray": "f19f70523fa130" + } + ] + } + } + ] + }, + "cborHex": "bf1b5fa929e4f8620d7d43ca1f2344bf524d949f47d23f1b47e9fb0c43cc01fc47f19f70523fa130ffff", + "cborBytes": [ + 191, 27, 95, 169, 41, 228, 248, 98, 13, 125, 67, 202, 31, 35, 68, 191, 82, 77, 148, 159, 71, 210, 63, 27, 71, 233, + 251, 12, 67, 204, 1, 252, 71, 241, 159, 112, 82, 63, 161, 48, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3239, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15743087534279859128" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87" + } + } + ] + }, + "cborHex": "bf1bda7aaeb3b4a19bb84187ff", + "cborBytes": [191, 27, 218, 122, 174, 179, 180, 161, 155, 184, 65, 135, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3240, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7375240746017894180" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2678d2c6d823257d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12187506911591710255" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7267376427711323573" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0eebe2cd75ad0667" + }, + { + "_tag": "ByteArray", + "bytearray": "143e8cc8431c9166" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14742112289785874263" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1232118371246367087" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3668882347647737242" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11319459960711497000" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3310" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14787252623983503826" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5a792fd1ca811cdbe1f3f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15659925493487416618" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10227435790498845496" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17419230412953763628" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6307652962331899995" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17788295686713839507" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12394756625371509103" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0341e790" + }, + { + "_tag": "ByteArray", + "bytearray": "f4d5e208503e6ea195" + } + ] + } + } + ] + }, + "cborHex": "bf1b665a1e61ff622f24482678d2c6d823257d1ba922b8f6c30abe2fd8669f1b64dae85b56c7ddb59f480eebe2cd75ad066748143e8cc8431c9166ffff1bcc9681053f9b87579f1b11195d216f5f616f1b32ea7d0e7e3e9d9a1b9d16ccdc77774528423310ff1bcd36dfea507fe9d24bf5a792fd1ca811cdbe1f3f1bd9533b443866b52a1b8def26aa07ccd3381bf1bd89c500ca3f2cd8669f1b578948f32a3bb85b9f1bf6dcb8ae3e310f931bac03057b04b0316f440341e79049f4d5e208503e6ea195ffffff", + "cborBytes": [ + 191, 27, 102, 90, 30, 97, 255, 98, 47, 36, 72, 38, 120, 210, 198, 216, 35, 37, 125, 27, 169, 34, 184, 246, 195, + 10, 190, 47, 216, 102, 159, 27, 100, 218, 232, 91, 86, 199, 221, 181, 159, 72, 14, 235, 226, 205, 117, 173, 6, + 103, 72, 20, 62, 140, 200, 67, 28, 145, 102, 255, 255, 27, 204, 150, 129, 5, 63, 155, 135, 87, 159, 27, 17, 25, + 93, 33, 111, 95, 97, 111, 27, 50, 234, 125, 14, 126, 62, 157, 154, 27, 157, 22, 204, 220, 119, 119, 69, 40, 66, + 51, 16, 255, 27, 205, 54, 223, 234, 80, 127, 233, 210, 75, 245, 167, 146, 253, 28, 168, 17, 205, 190, 31, 63, 27, + 217, 83, 59, 68, 56, 102, 181, 42, 27, 141, 239, 38, 170, 7, 204, 211, 56, 27, 241, 189, 137, 197, 0, 202, 63, 44, + 216, 102, 159, 27, 87, 137, 72, 243, 42, 59, 184, 91, 159, 27, 246, 220, 184, 174, 62, 49, 15, 147, 27, 172, 3, 5, + 123, 4, 176, 49, 111, 68, 3, 65, 231, 144, 73, 244, 213, 226, 8, 80, 62, 110, 161, 149, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3241, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cacf78a9741a572f0a31a2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "59412d9a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14797387462206187376" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f08bd73687c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14677036236090399633" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a20a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3582105826680610492" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b550e95cd506e885" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ce295ef8cdd6f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5bba09a84e9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1385d4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f1c0aebf1d26c4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1ee79339e3e02292" + } + } + ] + } + } + ] + }, + "cborHex": "bf4bcacf78a9741a572f0a31a2bf4459412d9a1bcd5ae17f389e6770466f08bd73687c1bcbaf4eb1c7b45b9142a20a1b31b6324543279ebc48b550e95cd506e885475ce295ef8cdd6f46e5bba09a84e9431385d447f1c0aebf1d26c4481ee79339e3e02292ffff", + "cborBytes": [ + 191, 75, 202, 207, 120, 169, 116, 26, 87, 47, 10, 49, 162, 191, 68, 89, 65, 45, 154, 27, 205, 90, 225, 127, 56, + 158, 103, 112, 70, 111, 8, 189, 115, 104, 124, 27, 203, 175, 78, 177, 199, 180, 91, 145, 66, 162, 10, 27, 49, 182, + 50, 69, 67, 39, 158, 188, 72, 181, 80, 233, 92, 213, 6, 232, 133, 71, 92, 226, 149, 239, 140, 221, 111, 70, 229, + 187, 160, 154, 132, 233, 67, 19, 133, 212, 71, 241, 192, 174, 191, 29, 38, 196, 72, 30, 231, 147, 57, 227, 224, + 34, 146, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3242, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12970334877373630709" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12961469530789744670" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16950209900839710663" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "489563094807145352" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f63af" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14850175165760174822" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bb3ffe2d9e7b708f59f1bb3e063dd8dc5901e1beb3b3e1947dc2fc71b06cb470a791eeb88434f63af1bce166ba237767ae6ffff", + "cborBytes": [ + 191, 27, 179, 255, 226, 217, 231, 183, 8, 245, 159, 27, 179, 224, 99, 221, 141, 197, 144, 30, 27, 235, 59, 62, 25, + 71, 220, 47, 199, 27, 6, 203, 71, 10, 121, 30, 235, 136, 67, 79, 99, 175, 27, 206, 22, 107, 162, 55, 118, 122, + 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3243, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4925936984124565942" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18434338247552482024" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "581a" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b445c71969cb429b61bffd3ecf782c33ae842581aa0ff", + "cborBytes": [ + 191, 27, 68, 92, 113, 150, 156, 180, 41, 182, 27, 255, 211, 236, 247, 130, 195, 58, 232, 66, 88, 26, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3244, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1356787374861383998" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14738764416029129234" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15886373378021931250" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4110796467917299721" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1178053983387716867" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6273856698916248119" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f9f5" + } + ] + } + } + ] + }, + "cborHex": "bf1b12d446edca58f93e041bcc8a9c25a5957a12801bdc77bc6aee3838f2d8669f1b390c7b9b8e2420099f1b105949db360f0d031b5711376d669b9a3742f9f5ffffff", + "cborBytes": [ + 191, 27, 18, 212, 70, 237, 202, 88, 249, 62, 4, 27, 204, 138, 156, 37, 165, 149, 122, 18, 128, 27, 220, 119, 188, + 106, 238, 56, 56, 242, 216, 102, 159, 27, 57, 12, 123, 155, 142, 36, 32, 9, 159, 27, 16, 89, 73, 219, 54, 15, 13, + 3, 27, 87, 17, 55, 109, 102, 155, 154, 55, 66, 249, 245, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3245, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13711640032232847402" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f74be0" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14295179106816781990" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36896c63b6a0d382e46b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17308244944938741162" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "181e2ad1a8929d0be82e17" + }, + { + "_tag": "ByteArray", + "bytearray": "1eb36957dd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2589227024993500732" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6766b7eb7616" + }, + { + "_tag": "ByteArray", + "bytearray": "e905b95408fee8d685f9" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "618033727461045020" + } + } + ] + } + } + ] + }, + "cborHex": "bf05a01bbe4987f64143b82a9f43f74be0ff1bc662ada896666ea64a36896c63b6a0d382e46b1bf0333d130c862daad8669f1bffffffffffffffef9f4b181e2ad1a8929d0be82e17451eb36957dd1b23eec842cb943e3c466766b7eb76164ae905b95408fee8d685f9ffff1bfffffffffffffff21bffffffffffffffef1bfffffffffffffff39f001b0893b2669086b31cffff", + "cborBytes": [ + 191, 5, 160, 27, 190, 73, 135, 246, 65, 67, 184, 42, 159, 67, 247, 75, 224, 255, 27, 198, 98, 173, 168, 150, 102, + 110, 166, 74, 54, 137, 108, 99, 182, 160, 211, 130, 228, 107, 27, 240, 51, 61, 19, 12, 134, 45, 170, 216, 102, + 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 75, 24, 30, 42, 209, 168, 146, 157, 11, 232, 46, 23, 69, 30, + 179, 105, 87, 221, 27, 35, 238, 200, 66, 203, 148, 62, 60, 70, 103, 102, 183, 235, 118, 22, 74, 233, 5, 185, 84, + 8, 254, 232, 214, 133, 249, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 242, 27, 255, 255, 255, 255, 255, + 255, 255, 239, 27, 255, 255, 255, 255, 255, 255, 255, 243, 159, 0, 27, 8, 147, 178, 102, 144, 134, 179, 28, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3246, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16e0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e190a336ac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "421886c49688a42e1478dcb8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8789986874269615173" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e443" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd050200fb0402ccfb06ae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9413048874459371991" + } + } + } + ] + }, + "cborHex": "bf4216e045e190a336ac4c421886c49688a42e1478dcb8d8799f1b79fc4e7da52fc445ff42e443074bfd050200fb0402ccfb06ae1b82a1de142f8a99d7ff", + "cborBytes": [ + 191, 66, 22, 224, 69, 225, 144, 163, 54, 172, 76, 66, 24, 134, 196, 150, 136, 164, 46, 20, 120, 220, 184, 216, + 121, 159, 27, 121, 252, 78, 125, 165, 47, 196, 69, 255, 66, 228, 67, 7, 75, 253, 5, 2, 0, 251, 4, 2, 204, 251, 6, + 174, 27, 130, 161, 222, 20, 47, 138, 153, 215, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3247, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac8c3f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66d7967a338c1ea74ea7" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffabf43ac8c3f4a66d7967a338c1ea74ea7ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 250, 191, 67, 172, 140, 63, 74, 102, 215, 150, 122, 51, 140, 30, 167, + 78, 167, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3248, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10220799794614206751" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1691138436758674975" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3961344037281108586" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6674477353740161292" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8276613376183344734" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "250123ebee6b" + }, + { + "_tag": "ByteArray", + "bytearray": "8aeb56c6fccd28" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3989236895843436309" + } + }, + { + "_tag": "ByteArray", + "bytearray": "196e5d03c8a8b2c1688b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2802312753960842702" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b8dd79342d65d811f9f1b17782172bd029e1f1b36f98569ef40926a1b5ca081ca5312510cff1bfffffffffffffffad8669f1b72dc7003a6a79e5e9f46250123ebee6b478aeb56c6fccd281b375c9dd225a147154a196e5d03c8a8b2c1688b1b26e3d09a3961f5ceffffff", + "cborBytes": [ + 191, 27, 141, 215, 147, 66, 214, 93, 129, 31, 159, 27, 23, 120, 33, 114, 189, 2, 158, 31, 27, 54, 249, 133, 105, + 239, 64, 146, 106, 27, 92, 160, 129, 202, 83, 18, 81, 12, 255, 27, 255, 255, 255, 255, 255, 255, 255, 250, 216, + 102, 159, 27, 114, 220, 112, 3, 166, 167, 158, 94, 159, 70, 37, 1, 35, 235, 238, 107, 71, 138, 235, 86, 198, 252, + 205, 40, 27, 55, 92, 157, 210, 37, 161, 71, 21, 74, 25, 110, 93, 3, 200, 168, 178, 193, 104, 139, 27, 38, 227, + 208, 154, 57, 97, 245, 206, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3249, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "64bb032f2984" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "18e4683b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13575777935268936702" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4988691306448272328" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17335604040329747704" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ea" + }, + { + "_tag": "ByteArray", + "bytearray": "66887241a6" + } + ] + } + } + ] + }, + "cborHex": "bf4664bb032f2984d905059f4418e4683b1bbc66da1ac54a7bfe1b453b644fdeedbbc8ff41ded8669f1bf0947006d6ae5cf89f41ea4566887241a6ffffff", + "cborBytes": [ + 191, 70, 100, 187, 3, 47, 41, 132, 217, 5, 5, 159, 68, 24, 228, 104, 59, 27, 188, 102, 218, 26, 197, 74, 123, 254, + 27, 69, 59, 100, 79, 222, 237, 187, 200, 255, 65, 222, 216, 102, 159, 27, 240, 148, 112, 6, 214, 174, 92, 248, + 159, 65, 234, 69, 102, 136, 114, 65, 166, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3250, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "39a14d18559a8a0236a431" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3947090467489747490" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15095467653977958" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6b608d347be11146b2" + }, + { + "_tag": "ByteArray", + "bytearray": "226bfc77fa6bd9901e83" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4597517742631163338" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f132c39a580526b21e50e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "979fcd0774c2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec77" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93cdf1f82ab58660" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5e363de" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1909800398384733970" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "59f193" + }, + { + "_tag": "ByteArray", + "bytearray": "eb" + }, + { + "_tag": "ByteArray", + "bytearray": "d63cf5a7515d4eff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6683044088465216767" + } + }, + { + "_tag": "ByteArray", + "bytearray": "802eee6026460f0a65a1fc" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1dc" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "62" + }, + { + "_tag": "ByteArray", + "bytearray": "3ce2d5a8450589" + }, + { + "_tag": "ByteArray", + "bytearray": "e89c5be29086" + }, + { + "_tag": "ByteArray", + "bytearray": "3071582b49946e433da51acf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16226266411829838605" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d815" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19a5d4531ebdf98bfca0a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4f83e227db62b5e1373" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a14026d2" + }, + { + "_tag": "ByteArray", + "bytearray": "da0410" + }, + { + "_tag": "ByteArray", + "bytearray": "25524dbfc37f" + }, + { + "_tag": "ByteArray", + "bytearray": "e5fc" + } + ] + } + } + ] + }, + "cborHex": "bf4b39a14d18559a8a0236a431d8669f1b36c6e1de1b0e92229f1b0035a13f733bd766496b608d347be11146b24a226bfc77fa6bd9901e83ffff4194bf413e1b3fcdaa073a1615ca4b7f132c39a580526b21e50e46979fcd0774c242ec774893cdf1f82ab58660ff44b5e363ded8669f1b1a80f958019f1f129f4359f19341eb48d63cf5a7515d4eff1b5cbef130af3e54ff4b802eee6026460f0a65a1fcffff42c1dc9f4162473ce2d5a845058946e89c5be290864c3071582b49946e433da51acf1be12f4754c3f8430dff42d8154b19a5d4531ebdf98bfca0a24ae4f83e227db62b5e13739f44a14026d243da04104625524dbfc37f42e5fcffff", + "cborBytes": [ + 191, 75, 57, 161, 77, 24, 85, 154, 138, 2, 54, 164, 49, 216, 102, 159, 27, 54, 198, 225, 222, 27, 14, 146, 34, + 159, 27, 0, 53, 161, 63, 115, 59, 215, 102, 73, 107, 96, 141, 52, 123, 225, 17, 70, 178, 74, 34, 107, 252, 119, + 250, 107, 217, 144, 30, 131, 255, 255, 65, 148, 191, 65, 62, 27, 63, 205, 170, 7, 58, 22, 21, 202, 75, 127, 19, + 44, 57, 165, 128, 82, 107, 33, 229, 14, 70, 151, 159, 205, 7, 116, 194, 66, 236, 119, 72, 147, 205, 241, 248, 42, + 181, 134, 96, 255, 68, 181, 227, 99, 222, 216, 102, 159, 27, 26, 128, 249, 88, 1, 159, 31, 18, 159, 67, 89, 241, + 147, 65, 235, 72, 214, 60, 245, 167, 81, 93, 78, 255, 27, 92, 190, 241, 48, 175, 62, 84, 255, 75, 128, 46, 238, + 96, 38, 70, 15, 10, 101, 161, 252, 255, 255, 66, 193, 220, 159, 65, 98, 71, 60, 226, 213, 168, 69, 5, 137, 70, + 232, 156, 91, 226, 144, 134, 76, 48, 113, 88, 43, 73, 148, 110, 67, 61, 165, 26, 207, 27, 225, 47, 71, 84, 195, + 248, 67, 13, 255, 66, 216, 21, 75, 25, 165, 212, 83, 30, 189, 249, 139, 252, 160, 162, 74, 228, 248, 62, 34, 125, + 182, 43, 94, 19, 115, 159, 68, 161, 64, 38, 210, 67, 218, 4, 16, 70, 37, 82, 77, 191, 195, 127, 66, 229, 252, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3251, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4525147869749730595" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b3ecc8e03248c5d23a0ff", + "cborBytes": [191, 27, 62, 204, 142, 3, 36, 140, 93, 35, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3252, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13631762100719346433" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0376837c3cf5281f9ed83c0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "231f" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16124514861048982349" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3590155852860576072" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f03fee2ace3918f37b6591" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5629260718355393609" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3c6130" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5155887166627144996" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bbd2dbf680c026301bf4cc0376837c3cf5281f9ed83c042231fff1bdfc5c8d5b454eb4d9f1b31d2cbba0a0b51484bf03fee2ace3918f37b65911b4e1f26cc59a22c49433c61301b478d640f9cce6524ffff", + "cborBytes": [ + 191, 27, 189, 45, 191, 104, 12, 2, 99, 1, 191, 76, 192, 55, 104, 55, 195, 207, 82, 129, 249, 237, 131, 192, 66, + 35, 31, 255, 27, 223, 197, 200, 213, 180, 84, 235, 77, 159, 27, 49, 210, 203, 186, 10, 11, 81, 72, 75, 240, 63, + 238, 42, 206, 57, 24, 243, 123, 101, 145, 27, 78, 31, 38, 204, 89, 162, 44, 73, 67, 60, 97, 48, 27, 71, 141, 100, + 15, 156, 206, 101, 36, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3253, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6213442633771724623" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1273967259907868234" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5817864424578688904" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5924727307533509489" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6532e1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8106289760406142455" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "305be8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10170565299702148440" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0dcd89d78020c316d1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13621299873940520052" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "268df8a2fc486fd44e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14926040151855264942" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4fa1c9" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16221525900449053616" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "919ff46d4ef8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16373582337646476817" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9077376997125739786" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18200087188373133160" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7754d68b2e0ec" + } + } + ] + }, + "cborHex": "bf1b563a9527ba3b2f4fbf1b11ae0a791e49464a1b50bd34deaa6527881b5238dc187c976371436532e11b707f53968f64fdf743305be81b8d251b410da92d58490dcd89d78020c316d11bbd0894110d4c3c7449268df8a2fc486fd44e1bcf23f26fc28cf4ae434fa1c9ff1be11e6fdc73107bb046919ff46d4ef81be33aa66298073e111b7df95248edfb550a1bfc93b2dea01e576847d7754d68b2e0ecff", + "cborBytes": [ + 191, 27, 86, 58, 149, 39, 186, 59, 47, 79, 191, 27, 17, 174, 10, 121, 30, 73, 70, 74, 27, 80, 189, 52, 222, 170, + 101, 39, 136, 27, 82, 56, 220, 24, 124, 151, 99, 113, 67, 101, 50, 225, 27, 112, 127, 83, 150, 143, 100, 253, 247, + 67, 48, 91, 232, 27, 141, 37, 27, 65, 13, 169, 45, 88, 73, 13, 205, 137, 215, 128, 32, 195, 22, 209, 27, 189, 8, + 148, 17, 13, 76, 60, 116, 73, 38, 141, 248, 162, 252, 72, 111, 212, 78, 27, 207, 35, 242, 111, 194, 140, 244, 174, + 67, 79, 161, 201, 255, 27, 225, 30, 111, 220, 115, 16, 123, 176, 70, 145, 159, 244, 109, 78, 248, 27, 227, 58, + 166, 98, 152, 7, 62, 17, 27, 125, 249, 82, 72, 237, 251, 85, 10, 27, 252, 147, 178, 222, 160, 30, 87, 104, 71, + 215, 117, 77, 104, 178, 224, 236, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3254, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "360c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "21bfb0ab7f036674" + } + } + ] + }, + "cborHex": "bf42360c4821bfb0ab7f036674ff", + "cborBytes": [191, 66, 54, 12, 72, 33, 191, 176, 171, 127, 3, 102, 116, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3255, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65d65c22be8085" + } + } + ] + }, + "cborHex": "bf426e4c4765d65c22be8085ff", + "cborBytes": [191, 66, 110, 76, 71, 101, 214, 92, 34, 190, 128, 133, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3256, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11023450998095332190" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2946522631724282816" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8100563696737456270" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16958263285018909694" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10968594385169360753" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14173368608172044342" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16001459951186238492" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af659ce8ab15af" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16855004619209610346" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d9e7fa3" + } + } + ] + }, + "cborHex": "bf1b98fb2a472c65c35ebf1b28e426b8e29333c041a11b706afbc37876108e1beb57da9be719dbfe1b9838467aad5d27711bc4b1eba7c8c470361bde109b0bd6185c1c47af659ce8ab15afff1be9e90166478e946a447d9e7fa3ff", + "cborBytes": [ + 191, 27, 152, 251, 42, 71, 44, 101, 195, 94, 191, 27, 40, 228, 38, 184, 226, 147, 51, 192, 65, 161, 27, 112, 106, + 251, 195, 120, 118, 16, 142, 27, 235, 87, 218, 155, 231, 25, 219, 254, 27, 152, 56, 70, 122, 173, 93, 39, 113, 27, + 196, 177, 235, 167, 200, 196, 112, 54, 27, 222, 16, 155, 11, 214, 24, 92, 28, 71, 175, 101, 156, 232, 171, 21, + 175, 255, 27, 233, 233, 1, 102, 71, 142, 148, 106, 68, 125, 158, 127, 163, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3257, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebc0fef7feb4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2cc6a94d3f7a0545b0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed3d17fd4b3da37129" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cc72fbb9983c2a06d4c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16316970336985569849" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf46ebc0fef7feb4bf492cc6a94d3f7a0545b049ed3d17fd4b3da371294a7cc72fbb9983c2a06d4c1be27186120a9c5a39ffff", + "cborBytes": [ + 191, 70, 235, 192, 254, 247, 254, 180, 191, 73, 44, 198, 169, 77, 63, 122, 5, 69, 176, 73, 237, 61, 23, 253, 75, + 61, 163, 113, 41, 74, 124, 199, 47, 187, 153, 131, 194, 160, 109, 76, 27, 226, 113, 134, 18, 10, 156, 90, 57, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3258, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "895929eb3dfba31917" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "156664977776922678" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "16" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7805190033217516811" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b37b3f2b81c72597dce0427c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41d85070eb84ee0d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7786123553377084760" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf49895929eb3dfba31917bf1b022c95f79d23503641161b6c519afb4659750b4cb37b3f2b81c72597dce0427c4841d85070eb84ee0d1b6c0dde1e8057e558ffff", + "cborBytes": [ + 191, 73, 137, 89, 41, 235, 61, 251, 163, 25, 23, 191, 27, 2, 44, 149, 247, 157, 35, 80, 54, 65, 22, 27, 108, 81, + 154, 251, 70, 89, 117, 11, 76, 179, 123, 63, 43, 129, 199, 37, 151, 220, 224, 66, 124, 72, 65, 216, 80, 112, 235, + 132, 238, 13, 27, 108, 13, 222, 30, 128, 87, 229, 88, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3259, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "365994742343355895" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9513607471431299736" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f78fdbbb2561e9a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18248428891969784958" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8304563080062594489" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b051446476f094df70d1b84071f970b2a329848f78fdbbb2561e9a41bfd3f716496d58c7ed8669f1b733fbc1f31f46db980ffff", + "cborBytes": [ + 191, 27, 5, 20, 70, 71, 111, 9, 77, 247, 13, 27, 132, 7, 31, 151, 11, 42, 50, 152, 72, 247, 143, 219, 187, 37, 97, + 233, 164, 27, 253, 63, 113, 100, 150, 213, 140, 126, 216, 102, 159, 27, 115, 63, 188, 31, 49, 244, 109, 185, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3260, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5737190563510209256" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5076189818999165666" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9790811581137397335" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7093075512182804963" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13603041105922589374" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12229317117270943690" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4f9e986baabfcae8bf1b46723fbedde652e21b87dff3425479a6571b626faa98fcad91e31bbcc7b5d0578d82be1ba9b7431fdc89e7ca417cffff", + "cborBytes": [ + 191, 27, 79, 158, 152, 107, 170, 191, 202, 232, 191, 27, 70, 114, 63, 190, 221, 230, 82, 226, 27, 135, 223, 243, + 66, 84, 121, 166, 87, 27, 98, 111, 170, 152, 252, 173, 145, 227, 27, 188, 199, 181, 208, 87, 141, 130, 190, 27, + 169, 183, 67, 31, 220, 137, 231, 202, 65, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3261, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1411640605881094815" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8061012598459652134" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1291289138129254859" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5303690386909439573" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11968416837598889954" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6641930280113644084" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2940032571591255927" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12656408370293730077" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1c341138" + }, + { + "_tag": "ByteArray", + "bytearray": "3c8e70" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17075771423291857522" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11879751621683669688" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4853358748134735100" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8057170378726823447" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9cb49c387ca0" + }, + { + "_tag": "ByteArray", + "bytearray": "12329c5593d9d258b520" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5100944201312410336" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5057508276813655196" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6988785139910027094" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e8c8a31" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12081817385189819882" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f6b40455e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f3fc57027d9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a361362c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "563211" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d3be156a7f7800cc44cf9ce" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "868bfc0468fa22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f185e2d01f60f2d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe8dc0a1a544712c40db74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b139727a6e00f529fd8669f1b6fde783fcd22d8269f1b11eb94a12c83b9cb1b499a7e4e866426551ba6185bb3d0e2c7e21b5c2ce0663915a234ffff1b28cd180c01c667779f1bafa4985b33a36b1d441c341138433c8e701becf953a35f13da721ba4dd5b2886536ab8ff1b435a9811361afcfc9f1b6fd0d1c54ecfd617469cb49c387ca04a12329c5593d9d258b520ff1b46ca31b9a2509ae01b462fe0fb60136c9c1b60fd270e7bdda756bf441e8c8a311ba7ab3ce64d60c5ea451f6b40455e4180463f3fc57027d944a361362c435632114c9d3be156a7f7800cc44cf9ce47868bfc0468fa22480f185e2d01f60f2d4bfe8dc0a1a544712c40db7441afffff", + "cborBytes": [ + 191, 27, 19, 151, 39, 166, 224, 15, 82, 159, 216, 102, 159, 27, 111, 222, 120, 63, 205, 34, 216, 38, 159, 27, 17, + 235, 148, 161, 44, 131, 185, 203, 27, 73, 154, 126, 78, 134, 100, 38, 85, 27, 166, 24, 91, 179, 208, 226, 199, + 226, 27, 92, 44, 224, 102, 57, 21, 162, 52, 255, 255, 27, 40, 205, 24, 12, 1, 198, 103, 119, 159, 27, 175, 164, + 152, 91, 51, 163, 107, 29, 68, 28, 52, 17, 56, 67, 60, 142, 112, 27, 236, 249, 83, 163, 95, 19, 218, 114, 27, 164, + 221, 91, 40, 134, 83, 106, 184, 255, 27, 67, 90, 152, 17, 54, 26, 252, 252, 159, 27, 111, 208, 209, 197, 78, 207, + 214, 23, 70, 156, 180, 156, 56, 124, 160, 74, 18, 50, 156, 85, 147, 217, 210, 88, 181, 32, 255, 27, 70, 202, 49, + 185, 162, 80, 154, 224, 27, 70, 47, 224, 251, 96, 19, 108, 156, 27, 96, 253, 39, 14, 123, 221, 167, 86, 191, 68, + 30, 140, 138, 49, 27, 167, 171, 60, 230, 77, 96, 197, 234, 69, 31, 107, 64, 69, 94, 65, 128, 70, 63, 63, 197, 112, + 39, 217, 68, 163, 97, 54, 44, 67, 86, 50, 17, 76, 157, 59, 225, 86, 167, 247, 128, 12, 196, 76, 249, 206, 71, 134, + 139, 252, 4, 104, 250, 34, 72, 15, 24, 94, 45, 1, 246, 15, 45, 75, 254, 141, 192, 161, 165, 68, 113, 44, 64, 219, + 116, 65, 175, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3262, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9b4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15299084526192914774" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdf8f1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17970075526179253701" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "801815c0f81979d461c1a596" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11511589786050391365" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9dbd04087845d55e6de7e8b4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10517592016302250496" + } + } + ] + } + } + ] + }, + "cborHex": "bf42b9b41bd45144518c67715643fdf8f1d8669f1bf962887b44daedc59f4c801815c0f81979d461c1a5961b9fc161eb5d8c6d454c9dbd04087845d55e6de7e8b41b91f5fe36d82e1a00ffffff", + "cborBytes": [ + 191, 66, 185, 180, 27, 212, 81, 68, 81, 140, 103, 113, 86, 67, 253, 248, 241, 216, 102, 159, 27, 249, 98, 136, + 123, 68, 218, 237, 197, 159, 76, 128, 24, 21, 192, 248, 25, 121, 212, 97, 193, 165, 150, 27, 159, 193, 97, 235, + 93, 140, 109, 69, 76, 157, 189, 4, 8, 120, 69, 213, 94, 109, 231, 232, 180, 27, 145, 245, 254, 54, 216, 46, 26, 0, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3263, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09ab22d74bacd806" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31bbb9921e14e2f3d2b45303" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "18" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10306151843538987263" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "56fa12b02646bec8b47216a8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11160816707264297612" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8eabeec8dfdd37b19f0a3cbe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13610398718926543159" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "512e8b129fc722cede" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1219522111965658756" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "589b3d381e2baee2" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17642584419850008287" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1800391638524831403" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "77f6510a9f1b9604e0be4686" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "811713a50b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11402745762366045355" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7316530490478224046" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b2423530b1ff57ee" + } + ] + } + } + ] + }, + "cborHex": "bf4809ab22d74bacd806a04c31bbb9921e14e2f3d2b45303bf41181b8f06ce7f5360e8ff4c56fa12b02646bec8b47216a81b9ae32fa9a7bbba8c4c8eabeec8dfdd37b19f0a3cbe1bbce1d9861d0c5937ff49512e8b129fc722cede1b10ec9ce647727e8448589b3d381e2baee29f1bf4d70d0e310036df1b18fc46a806db26abff4c77f6510a9f1b9604e0be4686413145811713a50b9f1b9e3eb0db45eb3cab1b658989b76944e2ae48b2423530b1ff57eeffff", + "cborBytes": [ + 191, 72, 9, 171, 34, 215, 75, 172, 216, 6, 160, 76, 49, 187, 185, 146, 30, 20, 226, 243, 210, 180, 83, 3, 191, 65, + 24, 27, 143, 6, 206, 127, 83, 96, 232, 255, 76, 86, 250, 18, 176, 38, 70, 190, 200, 180, 114, 22, 168, 27, 154, + 227, 47, 169, 167, 187, 186, 140, 76, 142, 171, 238, 200, 223, 221, 55, 177, 159, 10, 60, 190, 27, 188, 225, 217, + 134, 29, 12, 89, 55, 255, 73, 81, 46, 139, 18, 159, 199, 34, 206, 222, 27, 16, 236, 156, 230, 71, 114, 126, 132, + 72, 88, 155, 61, 56, 30, 43, 174, 226, 159, 27, 244, 215, 13, 14, 49, 0, 54, 223, 27, 24, 252, 70, 168, 6, 219, + 38, 171, 255, 76, 119, 246, 81, 10, 159, 27, 150, 4, 224, 190, 70, 134, 65, 49, 69, 129, 23, 19, 165, 11, 159, 27, + 158, 62, 176, 219, 69, 235, 60, 171, 27, 101, 137, 137, 183, 105, 68, 226, 174, 72, 178, 66, 53, 48, 177, 255, 87, + 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3264, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "96fe" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1b4b4c62d0d74e" + } + ] + } + } + ] + }, + "cborHex": "bf4296fe9f471b4b4c62d0d74effff", + "cborBytes": [191, 66, 150, 254, 159, 71, 27, 75, 76, 98, 208, 215, 78, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3265, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4027228205083315985" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14521132080a106be99b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03331ca94e5706" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ba3b87f72" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4749482747055027456" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62e1e4b4ee3f1fe356d22bbe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15477464275013423112" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "689b605083b250" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2753563d9c9d8d5bc3aecc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c30d33998d652a3bc5889575" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "720c8220f800214a75" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ceb01167" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11297658875758849133" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10934686927552538797" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c1d79fdd" + }, + { + "_tag": "ByteArray", + "bytearray": "c073b20c06d53a962b3325" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17408182297380785994" + } + }, + { + "_tag": "ByteArray", + "bytearray": "afe631a99dec745807" + } + ] + } + } + ] + }, + "cborHex": "bf1b37e396b7216ccf11bf4a14521132080a106be99b4703331ca94e5706452ba3b87f721b41e98d65050fb5004c62e1e4b4ee3f1fe356d22bbe1bd6caffc147f9500847689b605083b2504b2753563d9c9d8d5bc3aecc4cc30d33998d652a3bc588957549720c8220f800214a7544ceb011671b9cc958e3d3252c6dff1b97bfcfd37ee068ad9f44c1d79fdd4bc073b20c06d53a962b33251bf196499124a00f4a49afe631a99dec745807ffff", + "cborBytes": [ + 191, 27, 55, 227, 150, 183, 33, 108, 207, 17, 191, 74, 20, 82, 17, 50, 8, 10, 16, 107, 233, 155, 71, 3, 51, 28, + 169, 78, 87, 6, 69, 43, 163, 184, 127, 114, 27, 65, 233, 141, 101, 5, 15, 181, 0, 76, 98, 225, 228, 180, 238, 63, + 31, 227, 86, 210, 43, 190, 27, 214, 202, 255, 193, 71, 249, 80, 8, 71, 104, 155, 96, 80, 131, 178, 80, 75, 39, 83, + 86, 61, 156, 157, 141, 91, 195, 174, 204, 76, 195, 13, 51, 153, 141, 101, 42, 59, 197, 136, 149, 117, 73, 114, 12, + 130, 32, 248, 0, 33, 74, 117, 68, 206, 176, 17, 103, 27, 156, 201, 88, 227, 211, 37, 44, 109, 255, 27, 151, 191, + 207, 211, 126, 224, 104, 173, 159, 68, 193, 215, 159, 221, 75, 192, 115, 178, 12, 6, 213, 58, 150, 43, 51, 37, 27, + 241, 150, 73, 145, 36, 160, 15, 74, 73, 175, 230, 49, 169, 157, 236, 116, 88, 7, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3266, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbfefaff" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "32489e4c824ff2d9746425" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebb27f20" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39ae19" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "379649e724c67b76b8bfb9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e419cab05abcd7d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cac2d6b4e6c35a2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5a8982e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4168221201851488150" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "efbb45658def03" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4129353673950800299" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf44cbfefaffbf4b32489e4c824ff2d974642544ebb27f204339ae194b379649e724c67b76b8bfb948e419cab05abcd7d0488cac2d6b4e6c35a244e5a8982e1b39d87f19519c179647efbb45658def031b394e6949c7caa9abffff", + "cborBytes": [ + 191, 68, 203, 254, 250, 255, 191, 75, 50, 72, 158, 76, 130, 79, 242, 217, 116, 100, 37, 68, 235, 178, 127, 32, 67, + 57, 174, 25, 75, 55, 150, 73, 231, 36, 198, 123, 118, 184, 191, 185, 72, 228, 25, 202, 176, 90, 188, 215, 208, 72, + 140, 172, 45, 107, 78, 108, 53, 162, 68, 229, 168, 152, 46, 27, 57, 216, 127, 25, 81, 156, 23, 150, 71, 239, 187, + 69, 101, 141, 239, 3, 27, 57, 78, 105, 73, 199, 202, 169, 171, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3267, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "372240046013044917" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3351266869526911240" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12666044616350496208" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4976594886343119967" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10713897018006932555" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c4944a6f884b874d4ee42d41" + }, + { + "_tag": "ByteArray", + "bytearray": "86e52241b783381e20670f36" + } + ] + } + } + ] + }, + "cborHex": "bf1b052a765981c858b5d8669f1b2e82177649afd9089f1bafc6d47892d1f5d01b45106aae9781d45f1b94af6892be6b8c4b4cc4944a6f884b874d4ee42d414c86e52241b783381e20670f36ffffff", + "cborBytes": [ + 191, 27, 5, 42, 118, 89, 129, 200, 88, 181, 216, 102, 159, 27, 46, 130, 23, 118, 73, 175, 217, 8, 159, 27, 175, + 198, 212, 120, 146, 209, 245, 208, 27, 69, 16, 106, 174, 151, 129, 212, 95, 27, 148, 175, 104, 146, 190, 107, 140, + 75, 76, 196, 148, 74, 111, 136, 75, 135, 77, 78, 228, 45, 65, 76, 134, 229, 34, 65, 183, 131, 56, 30, 32, 103, 15, + 54, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3268, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17676269062006571485" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1415547695938363761" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67cc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7212948171217679048" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b342a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13842158806553664265" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "575305923983521474" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11e03020a706fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bf54eb90f1b2101ddbf1b13a509212b0761714267cc1b64198a2558bbb2c8436b342a1bc0193a187d2d1b091b07fbe5b0943736c24711e03020a706fe4161ffff", + "cborBytes": [ + 191, 27, 245, 78, 185, 15, 27, 33, 1, 221, 191, 27, 19, 165, 9, 33, 43, 7, 97, 113, 66, 103, 204, 27, 100, 25, + 138, 37, 88, 187, 178, 200, 67, 107, 52, 42, 27, 192, 25, 58, 24, 125, 45, 27, 9, 27, 7, 251, 229, 176, 148, 55, + 54, 194, 71, 17, 224, 48, 32, 167, 6, 254, 65, 97, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3269, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7503456270862933324" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69585a20ec" + } + } + ] + }, + "cborHex": "bf0541221b6821a1b92c765d4c4569585a20ecff", + "cborBytes": [191, 5, 65, 34, 27, 104, 33, 161, 185, 44, 118, 93, 76, 69, 105, 88, 90, 32, 236, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3270, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "50062f39c6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "22539296612998790" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2fe" + } + } + ] + }, + "cborHex": "bf0bbf4550062f39c60bff1b0050135ef01ade8642d2feff", + "cborBytes": [ + 191, 11, 191, 69, 80, 6, 47, 57, 198, 11, 255, 27, 0, 80, 19, 94, 240, 26, 222, 134, 66, 210, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3271, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3414239858295903341" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b2f61d10fcbb5146dd9050980ff", + "cborBytes": [191, 27, 47, 97, 209, 15, 203, 181, 20, 109, 217, 5, 9, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3272, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3953559916365587452" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5417900151487677464" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12660268067850881874" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01e572171c0d5d5272aa" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe67a6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f808d6036a87eb491e79" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "498590fe518da9" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c05e96e0fe39f568b1b066" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7ad23" + } + } + ] + }, + "cborHex": "bf1b36ddddcc0d31a3fc1b4b303f7b85f544181bafb24ebb11790b52a04a01e572171c0d5d5272aabf413e43fe67a64af808d6036a87eb491e7947498590fe518da9ff4bc05e96e0fe39f568b1b06643d7ad23ff", + "cborBytes": [ + 191, 27, 54, 221, 221, 204, 13, 49, 163, 252, 27, 75, 48, 63, 123, 133, 245, 68, 24, 27, 175, 178, 78, 187, 17, + 121, 11, 82, 160, 74, 1, 229, 114, 23, 28, 13, 93, 82, 114, 170, 191, 65, 62, 67, 254, 103, 166, 74, 248, 8, 214, + 3, 106, 135, 235, 73, 30, 121, 71, 73, 133, 144, 254, 81, 141, 169, 255, 75, 192, 94, 150, 224, 254, 57, 245, 104, + 177, 176, 102, 67, 215, 173, 35, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3273, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d3b187eb823" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0207ff3d545c18cb" + }, + { + "_tag": "ByteArray", + "bytearray": "5d" + } + ] + } + } + ] + }, + "cborHex": "bf460d3b187eb823d8669f1bfffffffffffffffb9f480207ff3d545c18cb415dffffff", + "cborBytes": [ + 191, 70, 13, 59, 24, 126, 184, 35, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 72, 2, 7, 255, + 61, 84, 92, 24, 203, 65, 93, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3274, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "303449314824687380" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1846131558592713241" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13985567034113309143" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3f908713f2d5709ab8027ad" + } + } + ] + }, + "cborHex": "bf1b0436118b49760f141b199ec6df0e8e92191bc216b71e6abcb9d74ce3f908713f2d5709ab8027adff", + "cborBytes": [ + 191, 27, 4, 54, 17, 139, 73, 118, 15, 20, 27, 25, 158, 198, 223, 14, 142, 146, 25, 27, 194, 22, 183, 30, 106, 188, + 185, 215, 76, 227, 249, 8, 113, 63, 45, 87, 9, 171, 128, 39, 173, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3275, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "44b5317eefb5aebe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + }, + "cborHex": "bf4844b5317eefb5aebe02ff", + "cborBytes": [191, 72, 68, 181, 49, 126, 239, 181, 174, 190, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3276, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14574593" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10900653642769514811" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15303556940363057890" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f0353c71798020e35121" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18249631670234017030" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a3ba418f" + } + ] + } + } + ] + }, + "cborHex": "bf44145745939f1b9746e6bbe4d8413b1bd46127f49e4dcae24af0353c71798020e351211bfd43b7503a046d0644a3ba418fffff", + "cborBytes": [ + 191, 68, 20, 87, 69, 147, 159, 27, 151, 70, 230, 187, 228, 216, 65, 59, 27, 212, 97, 39, 244, 158, 77, 202, 226, + 74, 240, 53, 60, 113, 121, 128, 32, 227, 81, 33, 27, 253, 67, 183, 80, 58, 4, 109, 6, 68, 163, 186, 65, 143, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3277, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "00f8070105b17bfb44" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01030401fc" + }, + { + "_tag": "ByteArray", + "bytearray": "62a60772dd8893234d93a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + ] + } + } + ] + }, + "cborHex": "bf0fa04900f8070105b17bfb449f4501030401fc4b62a60772dd8893234d93a602ffff", + "cborBytes": [ + 191, 15, 160, 73, 0, 248, 7, 1, 5, 177, 123, 251, 68, 159, 69, 1, 3, 4, 1, 252, 75, 98, 166, 7, 114, 221, 136, + 147, 35, 77, 147, 166, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3278, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffecbf0808ffff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 236, 191, 8, 8, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3279, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11352319033674956996" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0700f802032dfe0205bc03" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15540697080073926201" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "832911184588476364" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2619122284169275495" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17214001479099451303" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0404faf87001febdfa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "09e9044bbc5e1f6563" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9600343382508806490" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1813f6a52c255c" + }, + { + "_tag": "ByteArray", + "bytearray": "e329c84304f87f83c61e9b65" + } + ] + } + } + ] + }, + "cborHex": "bf1b9d8b8a03931a00c44b0700f802032dfe0205bc031bd7aba5a7fbc1b6399f1b0b8f184f36d88fcc1b2458fdd73b3828671beee46b243cc587a7ff1bfffffffffffffffa490404faf87001febdfa4909e9044bbc5e1f6563d8669f1b853b45710c35a15a9f471813f6a52c255c4ce329c84304f87f83c61e9b65ffffff", + "cborBytes": [ + 191, 27, 157, 139, 138, 3, 147, 26, 0, 196, 75, 7, 0, 248, 2, 3, 45, 254, 2, 5, 188, 3, 27, 215, 171, 165, 167, + 251, 193, 182, 57, 159, 27, 11, 143, 24, 79, 54, 216, 143, 204, 27, 36, 88, 253, 215, 59, 56, 40, 103, 27, 238, + 228, 107, 36, 60, 197, 135, 167, 255, 27, 255, 255, 255, 255, 255, 255, 255, 250, 73, 4, 4, 250, 248, 112, 1, 254, + 189, 250, 73, 9, 233, 4, 75, 188, 94, 31, 101, 99, 216, 102, 159, 27, 133, 59, 69, 113, 12, 53, 161, 90, 159, 71, + 24, 19, 246, 165, 44, 37, 92, 76, 227, 41, 200, 67, 4, 248, 127, 131, 198, 30, 155, 101, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3280, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17903566416631156620" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9572166188127774837" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "502bb022edf7f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2566108321417153568" + } + } + } + ] + }, + "cborHex": "bf1bf8763ecc7be9cf8c1b84d72a6ebe5c687547502bb022edf7f81b239ca5ec293e4c20ff", + "cborBytes": [ + 191, 27, 248, 118, 62, 204, 123, 233, 207, 140, 27, 132, 215, 42, 110, 190, 92, 104, 117, 71, 80, 43, 176, 34, + 237, 247, 248, 27, 35, 156, 165, 236, 41, 62, 76, 32, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3281, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1489713408841984625" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3200016187861307978" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11058273861182958272" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86d79006bd4afd986395" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0b1e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8aaf95c756f5d5116e49" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12748109913547926569" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0cbf1b14ac8673d729aa711b2c68bdc4b8f9124a1b9976e17ccccc2ac041694a86d79006bd4afd986395420b1e4a8aaf95c756f5d5116e491bb0ea626c8aa8ec29ffff", + "cborBytes": [ + 191, 12, 191, 27, 20, 172, 134, 115, 215, 41, 170, 113, 27, 44, 104, 189, 196, 184, 249, 18, 74, 27, 153, 118, + 225, 124, 204, 204, 42, 192, 65, 105, 74, 134, 215, 144, 6, 189, 74, 253, 152, 99, 149, 66, 11, 30, 74, 138, 175, + 149, 199, 86, 245, 213, 17, 110, 73, 27, 176, 234, 98, 108, 138, 168, 236, 41, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3282, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10880969989356431707" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16352423268723865362" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11419592809972279040" + } + }, + { + "_tag": "ByteArray", + "bytearray": "05aab2e431da2322b8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "294842475350499274" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11640194670684025146" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6631058745438048796" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8918462313721686541" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11333663596823399269" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d0aa281436" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b9700f88e3346a95bd8669f1be2ef7a52f51e37129f1b9e7a8b283600a7004905aab2e431da2322b81b04177dab4ff69fcaffff1ba18a47616e84313abf1b5c0640cbce95121c1b7bc4be38e816ea0d1b9d4942fe346f4b6545d0aa281436ffff", + "cborBytes": [ + 191, 27, 151, 0, 248, 142, 51, 70, 169, 91, 216, 102, 159, 27, 226, 239, 122, 82, 245, 30, 55, 18, 159, 27, 158, + 122, 139, 40, 54, 0, 167, 0, 73, 5, 170, 178, 228, 49, 218, 35, 34, 184, 27, 4, 23, 125, 171, 79, 246, 159, 202, + 255, 255, 27, 161, 138, 71, 97, 110, 132, 49, 58, 191, 27, 92, 6, 64, 203, 206, 149, 18, 28, 27, 123, 196, 190, + 56, 232, 22, 234, 13, 27, 157, 73, 66, 254, 52, 111, 75, 101, 69, 208, 170, 40, 20, 54, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3283, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b0cfe060cd73a4c1b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2102156519733452761" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "259112575251218901" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6911d2231e2fc0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7106828056601637343" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e30c55c259c7eeba28248" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12182866515694742308" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0c7175384b4e62f169f58079" + } + } + ] + } + } + ] + }, + "cborHex": "bf495b0cfe060cd73a4c1bbf1b1d2c5c378cfbdfd91b03988d83acaf81d5ff476911d2231e2fc01b62a08676c18531df4b7e30c55c259c7eeba28248bf1ba9123c8c65fc6b244c0c7175384b4e62f169f58079ffff", + "cborBytes": [ + 191, 73, 91, 12, 254, 6, 12, 215, 58, 76, 27, 191, 27, 29, 44, 92, 55, 140, 251, 223, 217, 27, 3, 152, 141, 131, + 172, 175, 129, 213, 255, 71, 105, 17, 210, 35, 30, 47, 192, 27, 98, 160, 134, 118, 193, 133, 49, 223, 75, 126, 48, + 197, 92, 37, 156, 126, 235, 162, 130, 72, 191, 27, 169, 18, 60, 140, 101, 252, 107, 36, 76, 12, 113, 117, 56, 75, + 78, 98, 241, 105, 245, 128, 121, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3284, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4031951547472852098" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7bcf90181325b1228c8af1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12102435635951533140" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fe0b30" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10969138822704172789" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4462315398997626332" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "46485367447652915" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f2ae0a22" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16242754618038364172" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14327217389608995551" + } + } + } + ] + }, + "cborHex": "bf1b37f45e91fab4b4829f4b7bcf90181325b1228c8af11ba7f47d16e5eb7c5443fe0b301b983a35a46b3a8ef5ff1b3ded543689024ddcbf1b00a5263205f88a3344f2ae0a22ff1be169db446e03280c1bc6d4804e97718adfff", + "cborBytes": [ + 191, 27, 55, 244, 94, 145, 250, 180, 180, 130, 159, 75, 123, 207, 144, 24, 19, 37, 177, 34, 140, 138, 241, 27, + 167, 244, 125, 22, 229, 235, 124, 84, 67, 254, 11, 48, 27, 152, 58, 53, 164, 107, 58, 142, 245, 255, 27, 61, 237, + 84, 54, 137, 2, 77, 220, 191, 27, 0, 165, 38, 50, 5, 248, 138, 51, 68, 242, 174, 10, 34, 255, 27, 225, 105, 219, + 68, 110, 3, 40, 12, 27, 198, 212, 128, 78, 151, 113, 138, 223, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3285, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a97fb612ad08" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf46a97fb612ad08a0ff", + "cborBytes": [191, 70, 169, 127, 182, 18, 173, 8, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3286, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "876232564564524931" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c398a74d40dc72e8321c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17323945625074922168" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2598934100381498526" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a7d8d5d20ff6ac3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4902009434012005728" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17021871834526126629" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10701653954548547149" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66b4c06d84bb0d2e72" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0c2900dfff7f7f834ac398a74d40dc72e8321c1bf06b04c282c5f2b8bf1b241144cb67e37c9e485a7d8d5d20ff6ac31b44076f9bb7e635601bec39d63f6d2812251b9483e99266053e4d4966b4c06d84bb0d2e72ffff", + "cborBytes": [ + 191, 27, 12, 41, 0, 223, 255, 127, 127, 131, 74, 195, 152, 167, 77, 64, 220, 114, 232, 50, 28, 27, 240, 107, 4, + 194, 130, 197, 242, 184, 191, 27, 36, 17, 68, 203, 103, 227, 124, 158, 72, 90, 125, 141, 93, 32, 255, 106, 195, + 27, 68, 7, 111, 155, 183, 230, 53, 96, 27, 236, 57, 214, 63, 109, 40, 18, 37, 27, 148, 131, 233, 146, 102, 5, 62, + 77, 73, 102, 180, 192, 109, 132, 187, 13, 46, 114, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3287, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6013813154491562968" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "79d33dbb2f8f0d8cfd64a56a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8965253895171064142" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7176876b907970ccb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9148963190080345869" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4367459243646370377" + } + }, + { + "_tag": "ByteArray", + "bytearray": "788c01eeaf" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11143289603578229710" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04ed40dd0dea631297d86f" + } + } + ] + }, + "cborHex": "bf1b53755b33930a7bd84c79d33dbb2f8f0d8cfd64a56a1b7c6afaeaeedbc14e49a7176876b907970ccb1b7ef7a58c4fdd170d9f1b3c9c550ad489c24945788c01eeafff1b9aa4eadad29573ce4b04ed40dd0dea631297d86fff", + "cborBytes": [ + 191, 27, 83, 117, 91, 51, 147, 10, 123, 216, 76, 121, 211, 61, 187, 47, 143, 13, 140, 253, 100, 165, 106, 27, 124, + 106, 250, 234, 238, 219, 193, 78, 73, 167, 23, 104, 118, 185, 7, 151, 12, 203, 27, 126, 247, 165, 140, 79, 221, + 23, 13, 159, 27, 60, 156, 85, 10, 212, 137, 194, 73, 69, 120, 140, 1, 238, 175, 255, 27, 154, 164, 234, 218, 210, + 149, 115, 206, 75, 4, 237, 64, 221, 13, 234, 99, 18, 151, 216, 111, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3288, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d63ff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06a2fc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16126051232601161800" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9020eeb42a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "af4738" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6475080732616972679" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10372291122367254440" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15694944565525362774" + } + } + ] + } + } + ] + }, + "cborHex": "bf08431d63ff4306a2fc1bdfcb3e2814f14048459020eeb42a9f43af47381b59dc1b9eaf9c59871b8ff1c7d22fa34fa81bd9cfa4ed4d963856ffff", + "cborBytes": [ + 191, 8, 67, 29, 99, 255, 67, 6, 162, 252, 27, 223, 203, 62, 40, 20, 241, 64, 72, 69, 144, 32, 238, 180, 42, 159, + 67, 175, 71, 56, 27, 89, 220, 27, 158, 175, 156, 89, 135, 27, 143, 241, 199, 210, 47, 163, 79, 168, 27, 217, 207, + 164, 237, 77, 150, 56, 86, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3289, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "527541044739243803" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "824837479430171233" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14296738399580375635" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3603178750817208639" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd59dd9ed4f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17523625420050434306" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11784359616916079137" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1102374018245140933" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "be" + }, + { + "_tag": "ByteArray", + "bytearray": "be78" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65544f6db4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d597687f2e467" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "659724bd9cd57b92e756d4d4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "54e01b57fab5946c9709b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13732421034075625734" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b075233c9001eff1bbf1b0b7269513edd2a611bc66837d3b9acca531b32010ffbc0b2093f46fd59dd9ed4f91bf3306c79b31c8902411cff1ba38a74a2a7bdc221d8669f1b0f4c6b54371f21c59f41be42be78ffff4565544f6db4471d597687f2e4674c659724bd9cd57b92e756d4d4bf4b54e01b57fab5946c9709b21bbe935c2c4a2e1906ffff", + "cborBytes": [ + 191, 27, 7, 82, 51, 201, 0, 30, 255, 27, 191, 27, 11, 114, 105, 81, 62, 221, 42, 97, 27, 198, 104, 55, 211, 185, + 172, 202, 83, 27, 50, 1, 15, 251, 192, 178, 9, 63, 70, 253, 89, 221, 158, 212, 249, 27, 243, 48, 108, 121, 179, + 28, 137, 2, 65, 28, 255, 27, 163, 138, 116, 162, 167, 189, 194, 33, 216, 102, 159, 27, 15, 76, 107, 84, 55, 31, + 33, 197, 159, 65, 190, 66, 190, 120, 255, 255, 69, 101, 84, 79, 109, 180, 71, 29, 89, 118, 135, 242, 228, 103, 76, + 101, 151, 36, 189, 156, 213, 123, 146, 231, 86, 212, 212, 191, 75, 84, 224, 27, 87, 250, 181, 148, 108, 151, 9, + 178, 27, 190, 147, 92, 44, 74, 46, 25, 6, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3290, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2862969656633779181" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14751676113208516076" + } + }, + { + "_tag": "ByteArray", + "bytearray": "651291" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16416217804521806019" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3497714055029145115" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16813124636423085965" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12557712942578592367" + } + } + } + ] + }, + "cborHex": "bf1b27bb4fbbea60e3edd905049f1bccb87b4469689dec436512911be3d21f1dc9f718c31b308a6066bfe73e1b1be95437c6ee5ddf8dff1bfffffffffffffff31bae45f5633db8ea6fff", + "cborBytes": [ + 191, 27, 39, 187, 79, 187, 234, 96, 227, 237, 217, 5, 4, 159, 27, 204, 184, 123, 68, 105, 104, 157, 236, 67, 101, + 18, 145, 27, 227, 210, 31, 29, 201, 247, 24, 195, 27, 48, 138, 96, 102, 191, 231, 62, 27, 27, 233, 84, 55, 198, + 238, 93, 223, 141, 255, 27, 255, 255, 255, 255, 255, 255, 255, 243, 27, 174, 69, 245, 99, 61, 184, 234, 111, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3291, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6952935494337085108" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac298174cdd3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2074070174931875668" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0edb041e189319d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6454284564454537539" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12607612499250389258" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17443187730171552409" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "043daf1a54715dce56f1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e6aba08638d476bef873" + } + } + ] + }, + "cborHex": "bf1b607dc9fe6e2abeb4bf46ac298174cdd31b1cc893d5d00bf75448d0edb041e189319d1b5992399d77997943ff1baef73cc52398210a9f1bf212a6d29753e299ff4a043daf1a54715dce56f14ae6aba08638d476bef873ff", + "cborBytes": [ + 191, 27, 96, 125, 201, 254, 110, 42, 190, 180, 191, 70, 172, 41, 129, 116, 205, 211, 27, 28, 200, 147, 213, 208, + 11, 247, 84, 72, 208, 237, 176, 65, 225, 137, 49, 157, 27, 89, 146, 57, 157, 119, 153, 121, 67, 255, 27, 174, 247, + 60, 197, 35, 152, 33, 10, 159, 27, 242, 18, 166, 210, 151, 83, 226, 153, 255, 74, 4, 61, 175, 26, 84, 113, 93, + 206, 86, 241, 74, 230, 171, 160, 134, 56, 212, 118, 190, 248, 115, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3292, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "84" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12481719912719066311" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3cf938d1a4129a3eb43b37c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8db1230e1c" + } + } + ] + }, + "cborHex": "bf4184d8669f1bad37fa212f8a24c780ff4cb3cf938d1a4129a3eb43b37c458db1230e1cff", + "cborBytes": [ + 191, 65, 132, 216, 102, 159, 27, 173, 55, 250, 33, 47, 138, 36, 199, 128, 255, 76, 179, 207, 147, 141, 26, 65, 41, + 163, 235, 67, 179, 124, 69, 141, 177, 35, 14, 28, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3293, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15155664676807596170" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5783775555121484154" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e5e204615f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c936b053565a1e1e0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4003571413607868964" + } + } + } + ] + }, + "cborHex": "bf1bd253bcb9b40d588ad8669f1b504419393f9a917a9f45e5e204615fffff49c936b053565a1e1e0f1b378f8afd25016a24ff", + "cborBytes": [ + 191, 27, 210, 83, 188, 185, 180, 13, 88, 138, 216, 102, 159, 27, 80, 68, 25, 57, 63, 154, 145, 122, 159, 69, 229, + 226, 4, 97, 95, 255, 255, 73, 201, 54, 176, 83, 86, 90, 30, 30, 15, 27, 55, 143, 138, 253, 37, 1, 106, 36, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3294, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf0f80ff", + "cborBytes": [191, 15, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3295, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8249186188725860303" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9597895245218073601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5645352123722460505" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "628519f35321a24663949957" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f62435b3f6ecf37a" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12328016237860534602" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1243274717830355651" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5c36ce9b" + }, + { + "_tag": "ByteArray", + "bytearray": "82fe60cb846f6d66" + }, + { + "_tag": "ByteArray", + "bytearray": "a8dfab5a99d5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "772644979495407140" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8658134599511560720" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d05a02b10b89696c4a9ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "093f3e101e4b92" + } + } + ] + }, + "cborHex": "bf1b727aff21f11037cfbf1b853292dfaaa24c011b4e5851d89e796d594c628519f35321a2466394995748f62435b3f6ecf37aff1bab15e973a2ecb94ad8669f1b1140ffc4ca809ac39f445c36ce9b4882fe60cb846f6d6646a8dfab5a99d51b0ab8fc83e4500e241b7827df8ba567d210ffff4b5d05a02b10b89696c4a9ab47093f3e101e4b92ff", + "cborBytes": [ + 191, 27, 114, 122, 255, 33, 241, 16, 55, 207, 191, 27, 133, 50, 146, 223, 170, 162, 76, 1, 27, 78, 88, 81, 216, + 158, 121, 109, 89, 76, 98, 133, 25, 243, 83, 33, 162, 70, 99, 148, 153, 87, 72, 246, 36, 53, 179, 246, 236, 243, + 122, 255, 27, 171, 21, 233, 115, 162, 236, 185, 74, 216, 102, 159, 27, 17, 64, 255, 196, 202, 128, 154, 195, 159, + 68, 92, 54, 206, 155, 72, 130, 254, 96, 203, 132, 111, 109, 102, 70, 168, 223, 171, 90, 153, 213, 27, 10, 184, + 252, 131, 228, 80, 14, 36, 27, 120, 39, 223, 139, 165, 103, 210, 16, 255, 255, 75, 93, 5, 160, 43, 16, 184, 150, + 150, 196, 169, 171, 71, 9, 63, 62, 16, 30, 75, 146, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3296, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1761895805962736714" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9821063479691440096" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7878000210122134509" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17501817056951180905" + } + }, + { + "_tag": "ByteArray", + "bytearray": "39b63238a66a8e114c335e7c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17644662690384652136" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b187382e68da8d44a41461b884b6d335791efe0d8669f1b6d544773a0c853ed9f1bf2e2f1e27b729e694c39b63238a66a8e114c335e7c1bf4de6f3b41f72768ffffff", + "cborBytes": [ + 191, 27, 24, 115, 130, 230, 141, 168, 212, 74, 65, 70, 27, 136, 75, 109, 51, 87, 145, 239, 224, 216, 102, 159, 27, + 109, 84, 71, 115, 160, 200, 83, 237, 159, 27, 242, 226, 241, 226, 123, 114, 158, 105, 76, 57, 182, 50, 56, 166, + 106, 142, 17, 76, 51, 94, 124, 27, 244, 222, 111, 59, 65, 247, 39, 104, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3297, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12707789906464044841" + } + } + ] + } + } + ] + }, + "cborHex": "bf07d87c9f1bb05b239757157729ffff", + "cborBytes": [191, 7, 216, 124, 159, 27, 176, 91, 35, 151, 87, 21, 119, 41, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3298, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "042bb815c28bab887bcb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d1705ec76bb181539bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8f5fc021bfbff8f29021b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48119564" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a042bb815c28bab887bcb4a4d1705ec76bb181539bb4bd8f5fc021bfbff8f29021bbf44481195644108ffff", + "cborBytes": [ + 191, 74, 4, 43, 184, 21, 194, 139, 171, 136, 123, 203, 74, 77, 23, 5, 236, 118, 187, 24, 21, 57, 187, 75, 216, + 245, 252, 2, 27, 251, 255, 143, 41, 2, 27, 191, 68, 72, 17, 149, 100, 65, 8, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3299, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3753381581315620935" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6101" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16238589491064517675" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17110893396921127489" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "82975cf8762dd9" + }, + { + "_tag": "ByteArray", + "bytearray": "712cb757a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + }, + "cborHex": "bf1b3416b0a974cfc0474261011be15b0f1b3c4ab42b801bed761ae3190f92419f4782975cf8762dd945712cb757a710ff1bfffffffffffffffb03ff", + "cborBytes": [ + 191, 27, 52, 22, 176, 169, 116, 207, 192, 71, 66, 97, 1, 27, 225, 91, 15, 27, 60, 74, 180, 43, 128, 27, 237, 118, + 26, 227, 25, 15, 146, 65, 159, 71, 130, 151, 92, 248, 118, 45, 217, 69, 113, 44, 183, 87, 167, 16, 255, 27, 255, + 255, 255, 255, 255, 255, 255, 251, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3300, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe1c04ff03e907fa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + ] + } + } + ] + }, + "cborHex": "bf48fe1c04ff03e907fad9050d9f0f1bffffffffffffffebffff", + "cborBytes": [ + 191, 72, 254, 28, 4, 255, 3, 233, 7, 250, 217, 5, 13, 159, 15, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3301, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05616cde" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "738c93fe308c310d842a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0969153ab61c1b4fc3e35f" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2da23a70" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2866634481911976553" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c75099d8327b1ce1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10305707598324472074" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13500088780376967194" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14572396812442252853" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8284277864087002255" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4b4a130765fadd2e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9839272601459657953" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7712f1b79" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "814632655256382664" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b23a81cad3709f7aed" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11016298938584488759" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3081922179521116945" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "daa896980b71bfe02016a8db" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4405616cde4a738c93fe308c310d842a4b0969153ab61c1b4fc3e35f80442da23a70bf1b27c854df8b3fd26948c75099d8327b1ce11b8f053a756d2c990a1bbb59f3381e9b081a1bca3b8db16ba7b6351b72f7aad34d899c8fff49b4b4a130765fadd2e31b888c1e4ce23c8ce145d7712f1b79d8669f1b0b4e281576fd6cc89f49b23a81cad3709f7aed1b98e1c1848dd75b371b2ac52fe4bfc0fb11ffff4cdaa896980b71bfe02016a8dba0ff", + "cborBytes": [ + 191, 68, 5, 97, 108, 222, 74, 115, 140, 147, 254, 48, 140, 49, 13, 132, 42, 75, 9, 105, 21, 58, 182, 28, 27, 79, + 195, 227, 95, 128, 68, 45, 162, 58, 112, 191, 27, 39, 200, 84, 223, 139, 63, 210, 105, 72, 199, 80, 153, 216, 50, + 123, 28, 225, 27, 143, 5, 58, 117, 109, 44, 153, 10, 27, 187, 89, 243, 56, 30, 155, 8, 26, 27, 202, 59, 141, 177, + 107, 167, 182, 53, 27, 114, 247, 170, 211, 77, 137, 156, 143, 255, 73, 180, 180, 161, 48, 118, 95, 173, 210, 227, + 27, 136, 140, 30, 76, 226, 60, 140, 225, 69, 215, 113, 47, 27, 121, 216, 102, 159, 27, 11, 78, 40, 21, 118, 253, + 108, 200, 159, 73, 178, 58, 129, 202, 211, 112, 159, 122, 237, 27, 152, 225, 193, 132, 141, 215, 91, 55, 27, 42, + 197, 47, 228, 191, 192, 251, 17, 255, 255, 76, 218, 168, 150, 152, 11, 113, 191, 224, 32, 22, 168, 219, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3302, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15347704237767037181" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd875ecdcb84dcdd7c61d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18372376438931276796" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bd4fdffb049dc90fdbf4bbd875ecdcb84dcdd7c61d71bfef7cb07ba4143fcffff", + "cborBytes": [ + 191, 27, 212, 253, 255, 176, 73, 220, 144, 253, 191, 75, 189, 135, 94, 205, 203, 132, 220, 221, 124, 97, 215, 27, + 254, 247, 203, 7, 186, 65, 67, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3303, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17713087857373228855" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a92aeb4f13c99" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9254117732000660855" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6e14cf9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15815427396247562408" + } + } + } + ] + }, + "cborHex": "bf1bf5d1878eee042f37bf470a92aeb4f13c991b806d3b0bfd8afd77ff44c6e14cf91bdb7baf6c545128a8ff", + "cborBytes": [ + 191, 27, 245, 209, 135, 142, 238, 4, 47, 55, 191, 71, 10, 146, 174, 180, 241, 60, 153, 27, 128, 109, 59, 11, 253, + 138, 253, 119, 255, 68, 198, 225, 76, 249, 27, 219, 123, 175, 108, 84, 81, 40, 168, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3304, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3407466734662468408" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "434940008707379378" + } + }, + { + "_tag": "ByteArray", + "bytearray": "26c7f6f704aa89" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5397936901448669480" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18110723763460886189" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9210444546843926074" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab02fbac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9591278905846618301" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13854493061307802937" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aef830dc5f4d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10400050635664123735" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10558168016169849177" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1614266645142552132" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4144681484041939643" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e1ed0aa09b058" + }, + { + "_tag": "ByteArray", + "bytearray": "2d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18236222337842002432" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16064780003832342721" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "077d274c1bf28977" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4200693451336303360" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2f49c0f10f8443389f1b060937a22d9bd0b24726c7f6f704aa89ff1b4ae953032ad219281bfb56374ee24fcead1b7fd212842e10de3a44ab02fbac1b851b11591caf58bdd8669f1bc0450c08f65da5399f46aef830dc5f4d1b905466f388d5e757ffff1b928625df02b1d1599f1b166706f6047bbe441b3984ddd9ab756abb479e1ed0aa09b058412dff1bfd141398bc1dba00d8669f1bdef1904c7339a8c19f48077d274c1bf289771b3a4bdc701135c300ffffff", + "cborBytes": [ + 191, 27, 47, 73, 192, 241, 15, 132, 67, 56, 159, 27, 6, 9, 55, 162, 45, 155, 208, 178, 71, 38, 199, 246, 247, 4, + 170, 137, 255, 27, 74, 233, 83, 3, 42, 210, 25, 40, 27, 251, 86, 55, 78, 226, 79, 206, 173, 27, 127, 210, 18, 132, + 46, 16, 222, 58, 68, 171, 2, 251, 172, 27, 133, 27, 17, 89, 28, 175, 88, 189, 216, 102, 159, 27, 192, 69, 12, 8, + 246, 93, 165, 57, 159, 70, 174, 248, 48, 220, 95, 77, 27, 144, 84, 102, 243, 136, 213, 231, 87, 255, 255, 27, 146, + 134, 37, 223, 2, 177, 209, 89, 159, 27, 22, 103, 6, 246, 4, 123, 190, 68, 27, 57, 132, 221, 217, 171, 117, 106, + 187, 71, 158, 30, 208, 170, 9, 176, 88, 65, 45, 255, 27, 253, 20, 19, 152, 188, 29, 186, 0, 216, 102, 159, 27, + 222, 241, 144, 76, 115, 57, 168, 193, 159, 72, 7, 125, 39, 76, 27, 242, 137, 119, 27, 58, 75, 220, 112, 17, 53, + 195, 0, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3305, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f899" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4699628234823422270" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + }, + "cborHex": "bf0142f8991b41386efad90bd13e07ff", + "cborBytes": [191, 1, 66, 248, 153, 27, 65, 56, 110, 250, 217, 11, 209, 62, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3306, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1182168753494237123" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9606483817126637597" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1310549712855253574" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1357952273833679362" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f3f44ed0ad290e54" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12219636777285152293" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "68" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12252317191951147932" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c60e4ab29" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14813514626430560097" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9558517676320382397" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15038582592559726225" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4a81233b4fe5" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7953120984770706419" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6066748845272382222" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a31885" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4937830059611377630" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6625831236292728041" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9466f3275f4011" + } + ] + } + } + ] + }, + "cborHex": "bf1b1067e837c8971fc31b85511622645f301d1b123002052f3a4246bf1b12d86a65f7ca5a0248f3f44ed0ad290e541ba994dee812616e2541681baa08f9920da8e39c458c60e4ab291bcd942d113f7267611b84a6ad2ef45e5dbd1bd0b3c730aae53e91464a81233b4fe5ff1b6e5f2965f0f67bf39f1b54316bee87f8bb0e43a318851b4486b2470861cfde1b5bf3ae677cea54e9479466f3275f4011ffff", + "cborBytes": [ + 191, 27, 16, 103, 232, 55, 200, 151, 31, 195, 27, 133, 81, 22, 34, 100, 95, 48, 29, 27, 18, 48, 2, 5, 47, 58, 66, + 70, 191, 27, 18, 216, 106, 101, 247, 202, 90, 2, 72, 243, 244, 78, 208, 173, 41, 14, 84, 27, 169, 148, 222, 232, + 18, 97, 110, 37, 65, 104, 27, 170, 8, 249, 146, 13, 168, 227, 156, 69, 140, 96, 228, 171, 41, 27, 205, 148, 45, + 17, 63, 114, 103, 97, 27, 132, 166, 173, 46, 244, 94, 93, 189, 27, 208, 179, 199, 48, 170, 229, 62, 145, 70, 74, + 129, 35, 59, 79, 229, 255, 27, 110, 95, 41, 101, 240, 246, 123, 243, 159, 27, 84, 49, 107, 238, 135, 248, 187, 14, + 67, 163, 24, 133, 27, 68, 134, 178, 71, 8, 97, 207, 222, 27, 91, 243, 174, 103, 124, 234, 84, 233, 71, 148, 102, + 243, 39, 95, 64, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3307, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5656f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14ccccdfde16d3712dbf69" + } + } + ] + }, + "cborHex": "bf4100a0435656f54b14ccccdfde16d3712dbf69ff", + "cborBytes": [191, 65, 0, 160, 67, 86, 86, 245, 75, 20, 204, 204, 223, 222, 22, 211, 113, 45, 191, 105, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3308, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f88c152c442" + } + } + ] + }, + "cborHex": "bf41e3468f88c152c442ff", + "cborBytes": [191, 65, 227, 70, 143, 136, 193, 82, 196, 66, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3309, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13fc5e02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "293ca32f26c49b35cba4adbf" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5972782869587418367" + } + }, + { + "_tag": "ByteArray", + "bytearray": "68c3975aeae8fa" + }, + { + "_tag": "ByteArray", + "bytearray": "38d538a33a" + }, + { + "_tag": "ByteArray", + "bytearray": "43429e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d2f72e27eb2cfea" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4309187756030362393" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d2eaffb01ff84" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "06024ff000fe0607f40301b4" + }, + { + "_tag": "ByteArray", + "bytearray": "00c10ebc" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c309b5f06da5df5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fefd96" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4413fc5e020d4c293ca32f26c49b35cba4adbfd8669f1bffffffffffffffec9f1b52e3965fee4bdcff4768c3975aeae8fa4538d538a33a4343429effff483d2f72e27eb2cfea9f1b3bcd4f6edca70319ff474d2eaffb01ff84d8669f1bfffffffffffffffc9f4c06024ff000fe0607f40301b44400c10ebcffff485c309b5f06da5df50043fefd96a0ff", + "cborBytes": [ + 191, 68, 19, 252, 94, 2, 13, 76, 41, 60, 163, 47, 38, 196, 155, 53, 203, 164, 173, 191, 216, 102, 159, 27, 255, + 255, 255, 255, 255, 255, 255, 236, 159, 27, 82, 227, 150, 95, 238, 75, 220, 255, 71, 104, 195, 151, 90, 234, 232, + 250, 69, 56, 213, 56, 163, 58, 67, 67, 66, 158, 255, 255, 72, 61, 47, 114, 226, 126, 178, 207, 234, 159, 27, 59, + 205, 79, 110, 220, 167, 3, 25, 255, 71, 77, 46, 175, 251, 1, 255, 132, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 252, 159, 76, 6, 2, 79, 240, 0, 254, 6, 7, 244, 3, 1, 180, 68, 0, 193, 14, 188, 255, 255, 72, 92, 48, + 155, 95, 6, 218, 93, 245, 0, 67, 254, 253, 150, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3310, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa02f803" + } + } + ] + }, + "cborHex": "bf0244fa02f803ff", + "cborBytes": [191, 2, 68, 250, 2, 248, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3311, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04da0fd03a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d4aa5288311a80f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "142a27140d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4600158258005591289" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "98b2293e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6317955378020675070" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "679559ce" + }, + { + "_tag": "ByteArray", + "bytearray": "49a4756d843d9ec6d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13095951829835571074" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1163494062328750505" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9dbca63f" + } + ] + } + } + ] + }, + "cborHex": "bf4504da0fd03a488d4aa5288311a80f45142a27140d1b3fd70b901f00c4f94498b2293ed8669f1b57ade2f13db0edfe9f44679559ce4949a4756d843d9ec6d81bb5be2acdccf9df821b10258faf6b61a1a9449dbca63fffffff", + "cborBytes": [ + 191, 69, 4, 218, 15, 208, 58, 72, 141, 74, 165, 40, 131, 17, 168, 15, 69, 20, 42, 39, 20, 13, 27, 63, 215, 11, + 144, 31, 0, 196, 249, 68, 152, 178, 41, 62, 216, 102, 159, 27, 87, 173, 226, 241, 61, 176, 237, 254, 159, 68, 103, + 149, 89, 206, 73, 73, 164, 117, 109, 132, 61, 158, 198, 216, 27, 181, 190, 42, 205, 204, 249, 223, 130, 27, 16, + 37, 143, 175, 107, 97, 161, 169, 68, 157, 188, 166, 63, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3312, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2073658572915541208" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b05f23da0f4afd38833" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14334303820005497707" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f90b0d55d64fa" + } + } + ] + }, + "cborHex": "bf1b1cc71d7c401304d84a9b05f23da0f4afd388331bc6edad60bdf3db6b479f90b0d55d64faff", + "cborBytes": [ + 191, 27, 28, 199, 29, 124, 64, 19, 4, 216, 74, 155, 5, 242, 61, 160, 244, 175, 211, 136, 51, 27, 198, 237, 173, + 96, 189, 243, 219, 107, 71, 159, 144, 176, 213, 93, 100, 250, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3313, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "947524337099260837" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4732d8d50c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14ce99cdf26f772ea5bd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6471d63783" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3088589915531974692" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "654f03f40e06d71823" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7328a2be347786ecdad4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a199b72b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9519" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcbc69" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1751487559678742430" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "107c9f2eaa0213" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13104847995742181820" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "292dfd9323e7f0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7644911438270034779" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3df986d27360e7c41e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3117198521149021906" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd70ab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6005857836893962691" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10530134752294906852" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12626570540376952221" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4209467767120689017" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14936973441849074475" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11388273513919966273" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16316014897121940324" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ced30e6f750" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ece7cb5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80e86a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5128587639145855371" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18021723290616318079" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "536536" + } + } + ] + }, + "cborHex": "bf1b0d26485d48d6c3a5bf454732d8d50c4a14ce99cdf26f772ea5bd456471d637831b2adce02a0423182449654f03f40e06d718234a7328a2be347786ecdad4458a199b72b742951943fcbc694157ff1b184e88a7df2acf9ebf47107c9f2eaa02131bb5ddc5d1d5b3d9bc47292dfd9323e7f01b6a182e72d967f35b493df986d27360e7c41e1b2b42838a1375ded243dd70ab1b535917e1db8f81c3ff1b92228dc42388abe4bf1baf3a97020e948d9d1b3a6b08a1a8af7779ff1bcf4aca34b4dba32bbf1b9e0b466c5a306c411be26e211a5cef5364465ced30e6f750440ece7cb54380e86a1b472c67490ebf798bff1bfa1a05d98191c87f43536536ff", + "cborBytes": [ + 191, 27, 13, 38, 72, 93, 72, 214, 195, 165, 191, 69, 71, 50, 216, 213, 12, 74, 20, 206, 153, 205, 242, 111, 119, + 46, 165, 189, 69, 100, 113, 214, 55, 131, 27, 42, 220, 224, 42, 4, 35, 24, 36, 73, 101, 79, 3, 244, 14, 6, 215, + 24, 35, 74, 115, 40, 162, 190, 52, 119, 134, 236, 218, 212, 69, 138, 25, 155, 114, 183, 66, 149, 25, 67, 252, 188, + 105, 65, 87, 255, 27, 24, 78, 136, 167, 223, 42, 207, 158, 191, 71, 16, 124, 159, 46, 170, 2, 19, 27, 181, 221, + 197, 209, 213, 179, 217, 188, 71, 41, 45, 253, 147, 35, 231, 240, 27, 106, 24, 46, 114, 217, 103, 243, 91, 73, 61, + 249, 134, 210, 115, 96, 231, 196, 30, 27, 43, 66, 131, 138, 19, 117, 222, 210, 67, 221, 112, 171, 27, 83, 89, 23, + 225, 219, 143, 129, 195, 255, 27, 146, 34, 141, 196, 35, 136, 171, 228, 191, 27, 175, 58, 151, 2, 14, 148, 141, + 157, 27, 58, 107, 8, 161, 168, 175, 119, 121, 255, 27, 207, 74, 202, 52, 180, 219, 163, 43, 191, 27, 158, 11, 70, + 108, 90, 48, 108, 65, 27, 226, 110, 33, 26, 92, 239, 83, 100, 70, 92, 237, 48, 230, 247, 80, 68, 14, 206, 124, + 181, 67, 128, 232, 106, 27, 71, 44, 103, 73, 14, 191, 121, 139, 255, 27, 250, 26, 5, 217, 129, 145, 200, 127, 67, + 83, 101, 54, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3314, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a977b8c98" + } + } + ] + }, + "cborHex": "bf08451a977b8c98ff", + "cborBytes": [191, 8, 69, 26, 151, 123, 140, 152, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3315, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "962078085769809950" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4101028491090840949" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4606a729d6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6071458892325188451" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5966821220820313360" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7769145974177045012" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5154185508713875941" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11392699769639548316" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c7385fcfb25f58504ac139d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17553993485367191966" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4bd6e4a5255ba" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0d59fcebf47f501ebf1b38e9c7af3939cd75454606a729d61b544227b1d16df3631b52ce68496941e5101b6bd18d19cefa9a141b47875869815b49e51b9e1b0014520a359c4c6c7385fcfb25f58504ac139d1bf39c5011e4d5299e47e4bd6e4a5255baffff", + "cborBytes": [ + 191, 27, 13, 89, 252, 235, 244, 127, 80, 30, 191, 27, 56, 233, 199, 175, 57, 57, 205, 117, 69, 70, 6, 167, 41, + 214, 27, 84, 66, 39, 177, 209, 109, 243, 99, 27, 82, 206, 104, 73, 105, 65, 229, 16, 27, 107, 209, 141, 25, 206, + 250, 154, 20, 27, 71, 135, 88, 105, 129, 91, 73, 229, 27, 158, 27, 0, 20, 82, 10, 53, 156, 76, 108, 115, 133, 252, + 251, 37, 245, 133, 4, 172, 19, 157, 27, 243, 156, 80, 17, 228, 213, 41, 158, 71, 228, 189, 110, 74, 82, 85, 186, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3316, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1132221271897480562" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3592192208497622071" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2121761273864949600" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12650746621009249463" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8441534831664667934" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1939951582024026811" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1894177260200565084" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5512982977702381670" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84d4ba2ec2d1527000a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11153051070979416184" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13751197225537615389" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11708196827057613080" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12441380428357010124" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17625115810325522632" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7f2fe585d541cb592bd" + } + } + ] + }, + "cborHex": "bf1b0fb6753f7e971d72d8669f1b31da07c8086d3c379f1b1d7202a312e68f601baf907b0678bac4b71b75265b3448759d1effff1b1aec17af7fffcabbd8669f1b1a49782eafe0995c80ff1b4c820ccf26b9c8664a84d4ba2ec2d1527000a41b9ac798db8f84a0781bbed611050881b61d1ba27bdefb451fe918d8669f1baca8a99513b782cc80ff1bf498fd729792e8c84ae7f2fe585d541cb592bdff", + "cborBytes": [ + 191, 27, 15, 182, 117, 63, 126, 151, 29, 114, 216, 102, 159, 27, 49, 218, 7, 200, 8, 109, 60, 55, 159, 27, 29, + 114, 2, 163, 18, 230, 143, 96, 27, 175, 144, 123, 6, 120, 186, 196, 183, 27, 117, 38, 91, 52, 72, 117, 157, 30, + 255, 255, 27, 26, 236, 23, 175, 127, 255, 202, 187, 216, 102, 159, 27, 26, 73, 120, 46, 175, 224, 153, 92, 128, + 255, 27, 76, 130, 12, 207, 38, 185, 200, 102, 74, 132, 212, 186, 46, 194, 209, 82, 112, 0, 164, 27, 154, 199, 152, + 219, 143, 132, 160, 120, 27, 190, 214, 17, 5, 8, 129, 182, 29, 27, 162, 123, 222, 251, 69, 31, 233, 24, 216, 102, + 159, 27, 172, 168, 169, 149, 19, 183, 130, 204, 128, 255, 27, 244, 152, 253, 114, 151, 146, 232, 200, 74, 231, + 242, 254, 88, 93, 84, 28, 181, 146, 189, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3317, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "54c1b14e9cff57dad1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ccdf40866a0f2510f326" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc173d8dfe91" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7379067269056753745" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8487879510990641143" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10755500738916149131" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8478c99037524b2cb919c53" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17763338130584784753" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11454024738762354533" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4954c1b14e9cff57dad14accdf40866a0f2510f32646dc173d8dfe91bf1b6667b695d1d6f0511b75cb0171cce9d7f71b954336efdc8c678b4cd8478c99037524b2cb919c531bf6840dea62a84f711b9ef4ded05a776f65ffff", + "cborBytes": [ + 191, 73, 84, 193, 177, 78, 156, 255, 87, 218, 209, 74, 204, 223, 64, 134, 106, 15, 37, 16, 243, 38, 70, 220, 23, + 61, 141, 254, 145, 191, 27, 102, 103, 182, 149, 209, 214, 240, 81, 27, 117, 203, 1, 113, 204, 233, 215, 247, 27, + 149, 67, 54, 239, 220, 140, 103, 139, 76, 216, 71, 140, 153, 3, 117, 36, 178, 203, 145, 156, 83, 27, 246, 132, 13, + 234, 98, 168, 79, 113, 27, 158, 244, 222, 208, 90, 119, 111, 101, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3318, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "355c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16386230321613991655" + } + } + ] + } + } + ] + }, + "cborHex": "bf00a042355cd9050b9f1be36795a8d7896ee7ffff", + "cborBytes": [191, 0, 160, 66, 53, 92, 217, 5, 11, 159, 27, 227, 103, 149, 168, 215, 137, 110, 231, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3319, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9431136337049398059" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc464fe1" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b82e22087be1bab2b0c44cc464fe1a0ff", + "cborBytes": [191, 27, 130, 226, 32, 135, 190, 27, 171, 43, 12, 68, 204, 70, 79, 225, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3320, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4317836589488240890" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dbf49a28d80d95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9e9383d30fe175e5a3b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5464f3a0c04f3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df168ebac0fa72d5e9d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d0d8033bbf685802609e164" + } + } + ] + } + } + ] + }, + "cborHex": "bf021bfffffffffffffff106bf1b3bec098052a178fa47dbf49a28d80d954ac9e9383d30fe175e5a3b47c5464f3a0c04f34adf168ebac0fa72d5e9d54c0d0d8033bbf685802609e164ffff", + "cborBytes": [ + 191, 2, 27, 255, 255, 255, 255, 255, 255, 255, 241, 6, 191, 27, 59, 236, 9, 128, 82, 161, 120, 250, 71, 219, 244, + 154, 40, 216, 13, 149, 74, 201, 233, 56, 61, 48, 254, 23, 94, 90, 59, 71, 197, 70, 79, 58, 12, 4, 243, 74, 223, + 22, 142, 186, 192, 250, 114, 213, 233, 213, 76, 13, 13, 128, 51, 187, 246, 133, 128, 38, 9, 225, 100, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3321, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f6485" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c369bef5d7ab023ad9485d" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf438f6485a04bc369bef5d7ab023ad9485d80ff", + "cborBytes": [191, 67, 143, 100, 133, 160, 75, 195, 105, 190, 245, 215, 171, 2, 58, 217, 72, 93, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3322, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1407781902285424851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15973354784953595348" + } + } + } + ] + }, + "cborHex": "bf1b1389722e6ef248d31bddacc18be471f5d4ff", + "cborBytes": [191, 27, 19, 137, 114, 46, 110, 242, 72, 211, 27, 221, 172, 193, 139, 228, 113, 245, 212, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3323, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "589569d511b6bb73cb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15483318922186416604" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1296826644673150197" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bf05294" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2790932891761943190" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2ac7f3fb0962815963ac499" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12393643695018782008" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce47a3970e3a5eaadfab8c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd2ed7d9c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18157094189265910972" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1f9f6b023c1e1ffee" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "164207068109888742" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "916b5552" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8925294108885847657" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14964715822046581" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9a0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4388438018183194399" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1614707645668837984" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16771493768452774467" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4578291268968305179" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf49589569d511b6bb73cbd8669f1bd6dfcc868d0161dc9f1b11ff40f663013cf5ffff445bf052941b26bb62ad956ca2964ca2ac7f3fb0962815963ac4999f1babff1146ba5aad384bce47a3970e3a5eaadfab8cff45bd2ed7d9c31bfbfaf4f6f880fcbc49e1f9f6b023c1e1ffeed8669f1b024761755c4c5ce69f44916b55521b7bdd03b42c070e691b00352a546abcdd75ffff42f9a0bf1b3ce6dd2068a0e71f1b1668980c7432ca601be8c050b9254e1a431b3f895ba6fd20d21bffff", + "cborBytes": [ + 191, 73, 88, 149, 105, 213, 17, 182, 187, 115, 203, 216, 102, 159, 27, 214, 223, 204, 134, 141, 1, 97, 220, 159, + 27, 17, 255, 64, 246, 99, 1, 60, 245, 255, 255, 68, 91, 240, 82, 148, 27, 38, 187, 98, 173, 149, 108, 162, 150, + 76, 162, 172, 127, 63, 176, 150, 40, 21, 150, 58, 196, 153, 159, 27, 171, 255, 17, 70, 186, 90, 173, 56, 75, 206, + 71, 163, 151, 14, 58, 94, 170, 223, 171, 140, 255, 69, 189, 46, 215, 217, 195, 27, 251, 250, 244, 246, 248, 128, + 252, 188, 73, 225, 249, 246, 176, 35, 193, 225, 255, 238, 216, 102, 159, 27, 2, 71, 97, 117, 92, 76, 92, 230, 159, + 68, 145, 107, 85, 82, 27, 123, 221, 3, 180, 44, 7, 14, 105, 27, 0, 53, 42, 84, 106, 188, 221, 117, 255, 255, 66, + 249, 160, 191, 27, 60, 230, 221, 32, 104, 160, 231, 31, 27, 22, 104, 152, 12, 116, 50, 202, 96, 27, 232, 192, 80, + 185, 37, 78, 26, 67, 27, 63, 137, 91, 166, 253, 32, 210, 27, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3324, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0742e337058ea161" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "17165f5f1c83" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17879616834276055982" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16867699499740874008" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a03e33248b1fe554ff097" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10990433593503524254" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a065de002cbe6e2579ad0f8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3163883393122132132" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8610138782572235191" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6750954202975765497" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9600685d914ebcad" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7828340846786863459" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ce9415f95d30e5b22" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11382890845095790432" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1d810ea189c4" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ecb214c9053f9c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2533788988263609851" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17718697922885759554" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5153121813928101089" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44" + } + } + ] + } + } + ] + }, + "cborHex": "bf480742e337058ea161a04617165f5f1c83bf1bf82128c7cf1e5bae1bea161b537c16c518ff4b7a03e33248b1fe554ff0971b9885dd1f9c4c259e4c8a065de002cbe6e2579ad0f8bf1b2be85f2eddcd60a41b777d5b9ab20849b71b5db035145b4d03f9489600685d914ebcad1b6ca3da8619696163490ce9415f95d30e5b221b9df826ea1afb0760461d810ea189c4ff47ecb214c9053f9cbf1b2329d3a9053fb5fb1bf5e575e2180eb2421b478390fcc38044e14144ffff", + "cborBytes": [ + 191, 72, 7, 66, 227, 55, 5, 142, 161, 97, 160, 70, 23, 22, 95, 95, 28, 131, 191, 27, 248, 33, 40, 199, 207, 30, + 91, 174, 27, 234, 22, 27, 83, 124, 22, 197, 24, 255, 75, 122, 3, 227, 50, 72, 177, 254, 85, 79, 240, 151, 27, 152, + 133, 221, 31, 156, 76, 37, 158, 76, 138, 6, 93, 224, 2, 203, 230, 226, 87, 154, 208, 248, 191, 27, 43, 232, 95, + 46, 221, 205, 96, 164, 27, 119, 125, 91, 154, 178, 8, 73, 183, 27, 93, 176, 53, 20, 91, 77, 3, 249, 72, 150, 0, + 104, 93, 145, 78, 188, 173, 27, 108, 163, 218, 134, 25, 105, 97, 99, 73, 12, 233, 65, 95, 149, 211, 14, 91, 34, + 27, 157, 248, 38, 234, 26, 251, 7, 96, 70, 29, 129, 14, 161, 137, 196, 255, 71, 236, 178, 20, 201, 5, 63, 156, + 191, 27, 35, 41, 211, 169, 5, 63, 181, 251, 27, 245, 229, 117, 226, 24, 14, 178, 66, 27, 71, 131, 144, 252, 195, + 128, 68, 225, 65, 68, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3325, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "609149742337416728" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6509541045907999870" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a14" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82fc48c895" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca3aed7c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19" + } + } + ] + }, + "cborHex": "bf1b08742276970ade181b5a5689179c2bcc7e429a144582fc48c89544ca3aed7c4119ff", + "cborBytes": [ + 191, 27, 8, 116, 34, 118, 151, 10, 222, 24, 27, 90, 86, 137, 23, 156, 43, 204, 126, 66, 154, 20, 69, 130, 252, 72, + 200, 149, 68, 202, 58, 237, 124, 65, 25, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3326, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "260b0d26" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52e757b0ddfa991dac0479fd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8e9d3feeb29426db33eb8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8588568751362160273" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "856c3d518b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18314655255272549935" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1bee69b7" + }, + { + "_tag": "ByteArray", + "bytearray": "10b9f2f9f4ddd7" + }, + { + "_tag": "ByteArray", + "bytearray": "64304d" + } + ] + } + } + ] + }, + "cborHex": "bf44260b0d264c52e757b0ddfa991dac0479fd4bf8e9d3feeb29426db33eb8d8669f1b7730b9c671f636919f45856c3d518b1bfe2ab9eb6242ee2f441bee69b74710b9f2f9f4ddd74364304dffffff", + "cborBytes": [ + 191, 68, 38, 11, 13, 38, 76, 82, 231, 87, 176, 221, 250, 153, 29, 172, 4, 121, 253, 75, 248, 233, 211, 254, 235, + 41, 66, 109, 179, 62, 184, 216, 102, 159, 27, 119, 48, 185, 198, 113, 246, 54, 145, 159, 69, 133, 108, 61, 81, + 139, 27, 254, 42, 185, 235, 98, 66, 238, 47, 68, 27, 238, 105, 183, 71, 16, 185, 242, 249, 244, 221, 215, 67, 100, + 48, 77, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3327, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1269598390897571833" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "72e5aae001f29486ec" + }, + { + "_tag": "ByteArray", + "bytearray": "2ec4afc3bb75dfe888406a" + } + ] + } + } + ] + }, + "cborHex": "bf1b119e850288db77f9d8799f4972e5aae001f29486ec4b2ec4afc3bb75dfe888406affff", + "cborBytes": [ + 191, 27, 17, 158, 133, 2, 136, 219, 119, 249, 216, 121, 159, 73, 114, 229, 170, 224, 1, 242, 148, 134, 236, 75, + 46, 196, 175, 195, 187, 117, 223, 232, 136, 64, 106, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3328, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5377994807029237912" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bd" + } + } + ] + }, + "cborHex": "bf01801b4aa279c87cdf889841bdff", + "cborBytes": [191, 1, 128, 27, 74, 162, 121, 200, 124, 223, 136, 152, 65, 189, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3329, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1bd9e996cf5ee9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2864818919968435030" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7860410609304512528" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "59" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2498910557479458507" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f1e9a782622b52557c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3633074802533035124" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11323014461201340056" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12162972943881366723" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14177520118824595936" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "caa926d751702c" + }, + { + "_tag": "ByteArray", + "bytearray": "9d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14555555377330358092" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12690799009908655487" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02c281" + } + } + ] + }, + "cborHex": "bf00d87e800c471bd9e996cf5ee91b27c1e1a116896b56a01b6d15c9cd8c4ea8109f41591b22ade9e9880956cb49f1e9a782622b52557c1b326b4648b7676c741b9d236da91a845698ff1ba8cb8f7344bc6cc3d8669f1bc4c0ab6eae7e71e09f47caa926d751702c419d1bc9ffb87f3e4d874cffff1bb01ec675f57c057f4302c281ff", + "cborBytes": [ + 191, 0, 216, 126, 128, 12, 71, 27, 217, 233, 150, 207, 94, 233, 27, 39, 193, 225, 161, 22, 137, 107, 86, 160, 27, + 109, 21, 201, 205, 140, 78, 168, 16, 159, 65, 89, 27, 34, 173, 233, 233, 136, 9, 86, 203, 73, 241, 233, 167, 130, + 98, 43, 82, 85, 124, 27, 50, 107, 70, 72, 183, 103, 108, 116, 27, 157, 35, 109, 169, 26, 132, 86, 152, 255, 27, + 168, 203, 143, 115, 68, 188, 108, 195, 216, 102, 159, 27, 196, 192, 171, 110, 174, 126, 113, 224, 159, 71, 202, + 169, 38, 215, 81, 112, 44, 65, 157, 27, 201, 255, 184, 127, 62, 77, 135, 76, 255, 255, 27, 176, 30, 198, 117, 245, + 124, 5, 127, 67, 2, 194, 129, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3330, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7100438220931368308" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "61" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7921893955579378725" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1735250991644183089" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14425925657192147357" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bdf5f6f09551" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a59ed8d66c158" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1005941295737949611" + } + } + } + ] + }, + "cborHex": "bf1b6289d2f1343885749f41611b6df03894a29f7c251b1814d99549188a31ff1bc8332ef41121a99d46bdf5f6f09551475a59ed8d66c1581b0df5d2475d5b4dabff", + "cborBytes": [ + 191, 27, 98, 137, 210, 241, 52, 56, 133, 116, 159, 65, 97, 27, 109, 240, 56, 148, 162, 159, 124, 37, 27, 24, 20, + 217, 149, 73, 24, 138, 49, 255, 27, 200, 51, 46, 244, 17, 33, 169, 157, 70, 189, 245, 246, 240, 149, 81, 71, 90, + 89, 237, 141, 102, 193, 88, 27, 13, 245, 210, 71, 93, 91, 77, 171, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3331, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "248206353530213150" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5766382927055794488" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5125711973870879028" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15754003474100676042" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17599750540688970216" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15252467758614869374" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16764765223251812590" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f5e0a7a1f97fcb331528debc" + }, + { + "_tag": "ByteArray", + "bytearray": "b6492ad24c23cbe9c5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14021864067859840689" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0371ce5d0d29d31ebf1b50064eb87609b1381b47222fe20f8a41341bdaa176b1000a65ca1bf43edfde894151e8ff1bd3aba69d8c56757ed8669f1be8a86925a2bf20ee9f4cf5e0a7a1f97fcb331528debc49b6492ad24c23cbe9c51bc297ab1425997eb1ffffff", + "cborBytes": [ + 191, 27, 3, 113, 206, 93, 13, 41, 211, 30, 191, 27, 80, 6, 78, 184, 118, 9, 177, 56, 27, 71, 34, 47, 226, 15, 138, + 65, 52, 27, 218, 161, 118, 177, 0, 10, 101, 202, 27, 244, 62, 223, 222, 137, 65, 81, 232, 255, 27, 211, 171, 166, + 157, 140, 86, 117, 126, 216, 102, 159, 27, 232, 168, 105, 37, 162, 191, 32, 238, 159, 76, 245, 224, 167, 161, 249, + 127, 203, 51, 21, 40, 222, 188, 73, 182, 73, 42, 210, 76, 35, 203, 233, 197, 27, 194, 151, 171, 20, 37, 153, 126, + 177, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3332, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb1dac1e" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf44cb1dac1e80ff", + "cborBytes": [191, 68, 203, 29, 172, 30, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3333, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe00ae00cead069e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + } + ] + }, + "cborHex": "bf48fe00ae00cead069e04ff", + "cborBytes": [191, 72, 254, 0, 174, 0, 206, 173, 6, 158, 4, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3334, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "752476256866905757" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6858626379084935165" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06a6cce0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "030407010601fff705" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa0103f84888fc48f20605" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "63" + }, + { + "_tag": "ByteArray", + "bytearray": "210b5bc2cff9a06d1afc17ea" + }, + { + "_tag": "ByteArray", + "bytearray": "e621e65c" + } + ] + } + } + ] + }, + "cborHex": "bf1b0a71552b3877ae9dd8669f1b5f2ebc5a6c7b2ffd80ff4406a6cce049030407010601fff7054bfa0103f84888fc48f206059f41634c210b5bc2cff9a06d1afc17ea44e621e65cffff", + "cborBytes": [ + 191, 27, 10, 113, 85, 43, 56, 119, 174, 157, 216, 102, 159, 27, 95, 46, 188, 90, 108, 123, 47, 253, 128, 255, 68, + 6, 166, 204, 224, 73, 3, 4, 7, 1, 6, 1, 255, 247, 5, 75, 250, 1, 3, 248, 72, 136, 252, 72, 242, 6, 5, 159, 65, 99, + 76, 33, 11, 91, 194, 207, 249, 160, 109, 26, 252, 23, 234, 68, 230, 33, 230, 92, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3335, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "108874510443632726" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2359ee582bd264ca69dbbc41" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6500051846700619752" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b3ca2b69faac1690a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7f1e06fcfcb35bad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6832efb7b16dd3885b722a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4402273346160528843" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adb9ef9425bb7aabe08a9a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dcdf2b26ae9e421c859fe9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1621612629894892853" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12531865125384261112" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2766115733154822801" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b0182ccca58165856bf4c2359ee582bd264ca69dbbc411b5a34d2b7403657e8493b3ca2b69faac1690a487f1e06fcfcb35bad4b6832efb7b16dd3885b722a1b3d180448ba118dcb4badb9ef9425bb7aabe08a9a41ac4bdcdf2b26ae9e421c859fe91b16812018602c0d35ff1badea20ef53a28df8d8669f1b2663379a924ffa9180ffff", + "cborBytes": [ + 191, 27, 1, 130, 204, 202, 88, 22, 88, 86, 191, 76, 35, 89, 238, 88, 43, 210, 100, 202, 105, 219, 188, 65, 27, 90, + 52, 210, 183, 64, 54, 87, 232, 73, 59, 60, 162, 182, 159, 170, 193, 105, 10, 72, 127, 30, 6, 252, 252, 179, 91, + 173, 75, 104, 50, 239, 183, 177, 109, 211, 136, 91, 114, 42, 27, 61, 24, 4, 72, 186, 17, 141, 203, 75, 173, 185, + 239, 148, 37, 187, 122, 171, 224, 138, 154, 65, 172, 75, 220, 223, 43, 38, 174, 158, 66, 28, 133, 159, 233, 27, + 22, 129, 32, 24, 96, 44, 13, 53, 255, 27, 173, 234, 32, 239, 83, 162, 141, 248, 216, 102, 159, 27, 38, 99, 55, + 154, 146, 79, 250, 145, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3336, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6116728503332729652" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "196373412596544075" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6abcb9cef11120b89e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13292140201734030236" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11298656252899167784" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "835354987501090097" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8121425747214547884" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4026123020759313209" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "efc637ca9ddbcce8523633" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6710450376707972093" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ccd241e1fb7fb012" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9327348266938044493" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96035870" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9790874866908642969" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8792372807370980045" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10827529806927351619" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2419307123896943642" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13852025874324342746" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8143325779751317877" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17995093040743331153" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3511661097104356961" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9391359570014446677" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16858815768662184848" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15062041450386608515" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18171926831575070009" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2682028680478139659" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b54e2fc2a7ca773349f1b02b9a8940d25f24b496abcb9cef11120b89e1bb8772b16b50bc39cff1b9ccce3ffc94d0e28bf1b0b97c6ef6b5a75311b70b519b01c6f3bac1b37dfa98e5a61ab394befc637ca9ddbcce85236331b5d204f106a909bfd48ccd241e1fb7fb0121b817165d49332904d44960358701b87e02cd13263be991b7a04c87bfc26bacd1b96431cfe20dbcf431b21931b02da73041aff1bc03c48243a9f47dad8669f1b7102e7a6c85bb17580ff1bf9bb69c7499c3551bf1b30bbed298876b6611b8254cfc578ad24551be9f68b9ea8dd13901bd1071ee5a280d1831bfc2fa72ca06bf5391b25387adff94f250bffff", + "cborBytes": [ + 191, 27, 84, 226, 252, 42, 124, 167, 115, 52, 159, 27, 2, 185, 168, 148, 13, 37, 242, 75, 73, 106, 188, 185, 206, + 241, 17, 32, 184, 158, 27, 184, 119, 43, 22, 181, 11, 195, 156, 255, 27, 156, 204, 227, 255, 201, 77, 14, 40, 191, + 27, 11, 151, 198, 239, 107, 90, 117, 49, 27, 112, 181, 25, 176, 28, 111, 59, 172, 27, 55, 223, 169, 142, 90, 97, + 171, 57, 75, 239, 198, 55, 202, 157, 219, 204, 232, 82, 54, 51, 27, 93, 32, 79, 16, 106, 144, 155, 253, 72, 204, + 210, 65, 225, 251, 127, 176, 18, 27, 129, 113, 101, 212, 147, 50, 144, 77, 68, 150, 3, 88, 112, 27, 135, 224, 44, + 209, 50, 99, 190, 153, 27, 122, 4, 200, 123, 252, 38, 186, 205, 27, 150, 67, 28, 254, 32, 219, 207, 67, 27, 33, + 147, 27, 2, 218, 115, 4, 26, 255, 27, 192, 60, 72, 36, 58, 159, 71, 218, 216, 102, 159, 27, 113, 2, 231, 166, 200, + 91, 177, 117, 128, 255, 27, 249, 187, 105, 199, 73, 156, 53, 81, 191, 27, 48, 187, 237, 41, 136, 118, 182, 97, 27, + 130, 84, 207, 197, 120, 173, 36, 85, 27, 233, 246, 139, 158, 168, 221, 19, 144, 27, 209, 7, 30, 229, 162, 128, + 209, 131, 27, 252, 47, 167, 44, 160, 107, 245, 57, 27, 37, 56, 122, 223, 249, 79, 37, 11, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3337, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3943290308219869800" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6449944961949926737" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b553bb55a5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17323818201065866658" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e5a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8700273771998410750" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16559741047852917395" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9af83b60" + }, + { + "_tag": "ByteArray", + "bytearray": "9d44836121082fae" + }, + { + "_tag": "ByteArray", + "bytearray": "666a42aa78683dbf195d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17883031933713254634" + } + } + ] + } + } + ] + }, + "cborHex": "bf099f1b36b961a493af9a68ff1b5982cec505d88551d8799f45b553bb55a51bf06a90de4bfa45a242e5a61b78bd94e64c9cf7feff1be5d004bee9ba6293d8669f1bfffffffffffffff19f449af83b60489d44836121082fae4a666a42aa78683dbf195d1bf82d4acb9bf208eaffffff", + "cborBytes": [ + 191, 9, 159, 27, 54, 185, 97, 164, 147, 175, 154, 104, 255, 27, 89, 130, 206, 197, 5, 216, 133, 81, 216, 121, 159, + 69, 181, 83, 187, 85, 165, 27, 240, 106, 144, 222, 75, 250, 69, 162, 66, 229, 166, 27, 120, 189, 148, 230, 76, + 156, 247, 254, 255, 27, 229, 208, 4, 190, 233, 186, 98, 147, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, + 241, 159, 68, 154, 248, 59, 96, 72, 157, 68, 131, 97, 33, 8, 47, 174, 74, 102, 106, 66, 170, 120, 104, 61, 191, + 25, 93, 27, 248, 45, 74, 203, 155, 242, 8, 234, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3338, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7202000593264452370" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "015707" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a4fb10b99bd0163d352c296" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbf804f802fccbf9ed" + } + } + ] + }, + "cborHex": "bf129f0d1b63f2a561b9ae2312ff4301570741054c0a4fb10b99bd0163d352c29649fbf804f802fccbf9edff", + "cborBytes": [ + 191, 18, 159, 13, 27, 99, 242, 165, 97, 185, 174, 35, 18, 255, 67, 1, 87, 7, 65, 5, 76, 10, 79, 177, 11, 153, 189, + 1, 99, 211, 82, 194, 150, 73, 251, 248, 4, 248, 2, 252, 203, 249, 237, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3339, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2926453876259633147" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + } + ] + }, + "cborHex": "bf1b289cda4ba20537fb00ff", + "cborBytes": [191, 27, 40, 156, 218, 75, 162, 5, 55, 251, 0, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3340, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6745393742231354515" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14402922736284191215" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6632969711329485541" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10078846912245618546" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f3210436" + }, + { + "_tag": "ByteArray", + "bytearray": "bef3160d2cbe4a56" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8271709092706353423" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18159940194884274956" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + } + ] + }, + "cborHex": "bf1b5d9c73deb3d7bc939f1bc7e175eb2f9dc9ef1b5c0d0acf39b822e51b8bdf41ddddf1577244f321043648bef3160d2cbe4a56ff1b72cb03982c21810f1bfc0511644a6a4b0c1bffffffffffffffec41fdff", + "cborBytes": [ + 191, 27, 93, 156, 115, 222, 179, 215, 188, 147, 159, 27, 199, 225, 117, 235, 47, 157, 201, 239, 27, 92, 13, 10, + 207, 57, 184, 34, 229, 27, 139, 223, 65, 221, 221, 241, 87, 114, 68, 243, 33, 4, 54, 72, 190, 243, 22, 13, 44, + 190, 74, 86, 255, 27, 114, 203, 3, 152, 44, 33, 129, 15, 27, 252, 5, 17, 100, 74, 106, 75, 12, 27, 255, 255, 255, + 255, 255, 255, 255, 236, 65, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3341, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3191863644153175746" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + }, + "cborHex": "bf1b2c4bc712b93bdec202ff", + "cborBytes": [191, 27, 44, 75, 199, 18, 185, 59, 222, 194, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3342, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4864718064919296182" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48801dc6" + } + } + ] + }, + "cborHex": "bf1b4382f34e3ff0b8b64448801dc6ff", + "cborBytes": [191, 27, 67, 130, 243, 78, 63, 240, 184, 182, 68, 72, 128, 29, 198, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3343, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b8741d5b0e5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "13d52d1e05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d496337ecb4068db7ce2e92d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fdb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8939913828072880855" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "727fde393a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5ad2436fad3c315" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9a33d82e5c7f036" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f6a6b7fa5adaf32" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11160992390145545559" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf7d9e11" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11636141656522742937" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f818" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17942011502802371614" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11956083645338528544" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afdc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b4375" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2a6ec0e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2476444864634934025" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1176963731456576604" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8833719980320561188" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f18feec" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11102307787303558196" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12966377010363193641" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20cbae11c9134a" + } + } + ] + } + } + ] + }, + "cborHex": "bf462b8741d5b0e5bf4513d52d1e054cd496337ecb4068db7ce2e92d426fdb1b7c10f442cce2fad74276f745727fde393a48d5ad2436fad3c31548a9a33d82e5c7f036ff482f6a6b7fa5adaf32bf1b9ae3cf720376955744cf7d9e111ba17be12f8929dc9942f8181bf8fed466a482041e1ba5ec8abab942ab20ff42afdc434b437544b2a6ec0ebf1b225e197bce67d3091b10556a4726fccc5c1b7a97ad84e0471824448f18feec1b9a13521c29481c34413b1bb3f1d3312e7d59294720cbae11c9134affff", + "cborBytes": [ + 191, 70, 43, 135, 65, 213, 176, 229, 191, 69, 19, 213, 45, 30, 5, 76, 212, 150, 51, 126, 203, 64, 104, 219, 124, + 226, 233, 45, 66, 111, 219, 27, 124, 16, 244, 66, 204, 226, 250, 215, 66, 118, 247, 69, 114, 127, 222, 57, 58, 72, + 213, 173, 36, 54, 250, 211, 195, 21, 72, 169, 163, 61, 130, 229, 199, 240, 54, 255, 72, 47, 106, 107, 127, 165, + 173, 175, 50, 191, 27, 154, 227, 207, 114, 3, 118, 149, 87, 68, 207, 125, 158, 17, 27, 161, 123, 225, 47, 137, 41, + 220, 153, 66, 248, 24, 27, 248, 254, 212, 102, 164, 130, 4, 30, 27, 165, 236, 138, 186, 185, 66, 171, 32, 255, 66, + 175, 220, 67, 75, 67, 117, 68, 178, 166, 236, 14, 191, 27, 34, 94, 25, 123, 206, 103, 211, 9, 27, 16, 85, 106, 71, + 38, 252, 204, 92, 27, 122, 151, 173, 132, 224, 71, 24, 36, 68, 143, 24, 254, 236, 27, 154, 19, 82, 28, 41, 72, 28, + 52, 65, 59, 27, 179, 241, 211, 49, 46, 125, 89, 41, 71, 32, 203, 174, 17, 201, 19, 74, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3344, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0a2264ac" + }, + { + "_tag": "ByteArray", + "bytearray": "1a662cc56d8ff0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5752001630069073867" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3463653075712342463" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11003656707440077985" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11172327694773194650" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15505035fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13751972879285296775" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16672923712309794603" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0501170300" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + }, + "cborHex": "bf139f440a2264ac471a662cc56d8ff01b4fd33701d3bc27cbff1b30115e1f0305f9bfd8669f1b98b4d779bd4f6ca180ff1b9b0c14d849370f9a4515505035fc1bbed8d278fe9b1e87d8669f1be7621fc78769972b9f450501170300ffff1bfffffffffffffffa10ff", + "cborBytes": [ + 191, 19, 159, 68, 10, 34, 100, 172, 71, 26, 102, 44, 197, 109, 143, 240, 27, 79, 211, 55, 1, 211, 188, 39, 203, + 255, 27, 48, 17, 94, 31, 3, 5, 249, 191, 216, 102, 159, 27, 152, 180, 215, 121, 189, 79, 108, 161, 128, 255, 27, + 155, 12, 20, 216, 73, 55, 15, 154, 69, 21, 80, 80, 53, 252, 27, 190, 216, 210, 120, 254, 155, 30, 135, 216, 102, + 159, 27, 231, 98, 31, 199, 135, 105, 151, 43, 159, 69, 5, 1, 23, 3, 0, 255, 255, 27, 255, 255, 255, 255, 255, 255, + 255, 250, 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3345, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11219758146149585446" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8531096291558987477" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "61208ce6a713a4" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1cf848b7994e04c8c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10556220045805279810" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b9bb49696cf0a9226d8669f1b76648ae0a30696d59f4761208ce6a713a4ffff49b1cf848b7994e04c8cd8669f1b927f3a33d114da4280ffff", + "cborBytes": [ + 191, 27, 155, 180, 150, 150, 207, 10, 146, 38, 216, 102, 159, 27, 118, 100, 138, 224, 163, 6, 150, 213, 159, 71, + 97, 32, 140, 230, 167, 19, 164, 255, 255, 73, 177, 207, 132, 139, 121, 148, 224, 76, 140, 216, 102, 159, 27, 146, + 127, 58, 51, 209, 20, 218, 66, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3346, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7601309428242439767" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11219190635442538897" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16398829267117575436" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10609191567044851116" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9673272d50" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12795288297254879401" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13224109589441995122" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3bcac08e130a68a5d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7262937883184045630" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "262f2a275ae98cf4" + }, + { + "_tag": "ByteArray", + "bytearray": "35056740db6301e1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8024085283779135601" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b697d46a6ca37de571b9bb29270ecf109911be39458556ed28d0c1b933b6b8533c735ac459673272d50bf1bb191fee9fc9700a91bb785799b7586e172ff49e3bcac08e130a68a5dd8669f1b64cb238628e99e3e9f48262f2a275ae98cf44835056740db6301e11b6f5b470d5b184871ffffff", + "cborBytes": [ + 191, 27, 105, 125, 70, 166, 202, 55, 222, 87, 27, 155, 178, 146, 112, 236, 241, 9, 145, 27, 227, 148, 88, 85, 110, + 210, 141, 12, 27, 147, 59, 107, 133, 51, 199, 53, 172, 69, 150, 115, 39, 45, 80, 191, 27, 177, 145, 254, 233, 252, + 151, 0, 169, 27, 183, 133, 121, 155, 117, 134, 225, 114, 255, 73, 227, 188, 172, 8, 225, 48, 166, 138, 93, 216, + 102, 159, 27, 100, 203, 35, 134, 40, 233, 158, 62, 159, 72, 38, 47, 42, 39, 90, 233, 140, 244, 72, 53, 5, 103, 64, + 219, 99, 1, 225, 27, 111, 91, 71, 13, 91, 24, 72, 113, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3347, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1442589608357815319" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11836713873904101882" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3d74b2ac62f0fd5a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3148848071653808105" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cc9d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4490045660326628132" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2319076405306702682" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3786239304208667588" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "119ce4f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b1cb9e68473" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b10ff616d2eb48" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4181058888196304980" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2154894918116181312" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4395916074758710154" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3800031398650363262" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8555002172873378633" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16150687616372678020" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f814cb4c5f0ad94e" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7000691565739348282" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "556195c081" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11961390196319171553" + } + }, + { + "_tag": "ByteArray", + "bytearray": "90e3" + }, + { + "_tag": "ByteArray", + "bytearray": "40b5a4d07c5596ff1802e0" + } + ] + } + } + ] + }, + "cborHex": "bf00d8669f1b14051b9b0ad664179f1ba444748e01fde9fa483d74b2ac62f0fd5a1b2bb2f4a34a9957e942cc9d1b3e4fd8bd210d8b24ffff01bf1b202f03b4214bbb5a1b348b6c9639fad3c444119ce4f5469b1cb9e6847347b10ff616d2eb481b3a061ae817ee3054ff1b1de7b982ca9c0540d8669f1b3d016e61226c238a80ff1b34bc6c6c73e2bd7ed8669f1b76b979265ed00b499f1be022c4d12c319d8448f814cb4c5f0ad94effff1bfffffffffffffff8d8669f1b612773e345f7913a9f45556195c081ffff1bffffffffffffffffd905009f1ba5ff65026771b3e14290e34b40b5a4d07c5596ff1802e0ffff", + "cborBytes": [ + 191, 0, 216, 102, 159, 27, 20, 5, 27, 155, 10, 214, 100, 23, 159, 27, 164, 68, 116, 142, 1, 253, 233, 250, 72, 61, + 116, 178, 172, 98, 240, 253, 90, 27, 43, 178, 244, 163, 74, 153, 87, 233, 66, 204, 157, 27, 62, 79, 216, 189, 33, + 13, 139, 36, 255, 255, 1, 191, 27, 32, 47, 3, 180, 33, 75, 187, 90, 27, 52, 139, 108, 150, 57, 250, 211, 196, 68, + 17, 156, 228, 245, 70, 155, 28, 185, 230, 132, 115, 71, 177, 15, 246, 22, 210, 235, 72, 27, 58, 6, 26, 232, 23, + 238, 48, 84, 255, 27, 29, 231, 185, 130, 202, 156, 5, 64, 216, 102, 159, 27, 61, 1, 110, 97, 34, 108, 35, 138, + 128, 255, 27, 52, 188, 108, 108, 115, 226, 189, 126, 216, 102, 159, 27, 118, 185, 121, 38, 94, 208, 11, 73, 159, + 27, 224, 34, 196, 209, 44, 49, 157, 132, 72, 248, 20, 203, 76, 95, 10, 217, 78, 255, 255, 27, 255, 255, 255, 255, + 255, 255, 255, 248, 216, 102, 159, 27, 97, 39, 115, 227, 69, 247, 145, 58, 159, 69, 85, 97, 149, 192, 129, 255, + 255, 27, 255, 255, 255, 255, 255, 255, 255, 255, 217, 5, 0, 159, 27, 165, 255, 101, 2, 103, 113, 179, 225, 66, + 144, 227, 75, 64, 181, 164, 208, 124, 85, 150, 255, 24, 2, 224, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3348, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "94bdc8b7aa2637d3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7463597178032421106" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aefae54b5c135a5b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11075731702630193139" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11450993616175036224" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13760553587494034965" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3025664523843683812" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4894bdc8b7aa2637d3bf1b67940616ef3af8f248aefae54b5c135a5b1b99b4e74d42ce17f31b9eea1a062160f7401bbef74e94cf4f1e151b29fd51da913445e4ffff", + "cborBytes": [ + 191, 72, 148, 189, 200, 183, 170, 38, 55, 211, 191, 27, 103, 148, 6, 22, 239, 58, 248, 242, 72, 174, 250, 229, 75, + 92, 19, 90, 91, 27, 153, 180, 231, 77, 66, 206, 23, 243, 27, 158, 234, 26, 6, 33, 96, 247, 64, 27, 190, 247, 78, + 148, 207, 79, 30, 21, 27, 41, 253, 81, 218, 145, 52, 69, 228, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3349, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "925301522486484777" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5188022380885035043" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2984376676382067503" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8658124913115118792" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "23e2e2544e7ac616d222" + }, + { + "_tag": "ByteArray", + "bytearray": "676fd33f15" + }, + { + "_tag": "ByteArray", + "bytearray": "de78ee41560fa9cd08" + }, + { + "_tag": "ByteArray", + "bytearray": "24" + }, + { + "_tag": "ByteArray", + "bytearray": "35686ce7" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7636389400989727033" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "323f74bda2fe" + } + } + ] + }, + "cborHex": "bf1b0cd754d50def5f29d8669f1b47ff8ede3b6dc82380ff1b296aa2c677b6cb2fd8669f1b7827d6bc5b2fbcc89f4a23e2e2544e7ac616d22245676fd33f1549de78ee41560fa9cd0841244435686ce7ffff1b69f9e7b36c8cf93946323f74bda2feff", + "cborBytes": [ + 191, 27, 12, 215, 84, 213, 13, 239, 95, 41, 216, 102, 159, 27, 71, 255, 142, 222, 59, 109, 200, 35, 128, 255, 27, + 41, 106, 162, 198, 119, 182, 203, 47, 216, 102, 159, 27, 120, 39, 214, 188, 91, 47, 188, 200, 159, 74, 35, 226, + 226, 84, 78, 122, 198, 22, 210, 34, 69, 103, 111, 211, 63, 21, 73, 222, 120, 238, 65, 86, 15, 169, 205, 8, 65, 36, + 68, 53, 104, 108, 231, 255, 255, 27, 105, 249, 231, 179, 108, 140, 249, 57, 70, 50, 63, 116, 189, 162, 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3350, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0575" + } + } + ] + }, + "cborHex": "bf0b420575ff", + "cborBytes": [191, 11, 66, 5, 117, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3351, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9885693614407290773" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7114435117922427996" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11256066578669225381" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b893109f735180f951b62bb8d0bbd54a45c1b9c3594ea85b9c5a5a0ff", + "cborBytes": [ + 191, 27, 137, 49, 9, 247, 53, 24, 15, 149, 27, 98, 187, 141, 11, 189, 84, 164, 92, 27, 156, 53, 148, 234, 133, + 185, 197, 165, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3352, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10656400478854512044" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "da0729af64c835fd69" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + } + ] + }, + "cborHex": "bf1b93e323c6866cfdac49da0729af64c835fd691bffffffffffffffed1bfffffffffffffff8ff", + "cborBytes": [ + 191, 27, 147, 227, 35, 198, 134, 108, 253, 172, 73, 218, 7, 41, 175, 100, 200, 53, 253, 105, 27, 255, 255, 255, + 255, 255, 255, 255, 237, 27, 255, 255, 255, 255, 255, 255, 255, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3353, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5545359851352589921" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18248840314739741588" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3923639826244329474" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7fbcc1aa2d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16225581727318788751" + } + } + } + ] + }, + "cborHex": "bf1b4cf513677b958661bf1bfd40e7946ae3d3941b367391a235de6002ff46f7fbcc1aa2d61be12cd89d3ae7ca8fff", + "cborBytes": [ + 191, 27, 76, 245, 19, 103, 123, 149, 134, 97, 191, 27, 253, 64, 231, 148, 106, 227, 211, 148, 27, 54, 115, 145, + 162, 53, 222, 96, 2, 255, 70, 247, 251, 204, 26, 162, 214, 27, 225, 44, 216, 157, 58, 231, 202, 143, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3354, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7263970525307140521" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11032219389149728240" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d2072cb3577" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7555943908729561825" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17019668512027697775" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7956916272415919160" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5938125643275202686" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9058213ccde60a495a8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8448795682031733728" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0a1caf01b814" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11530809109528514264" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8043148147405701361" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11910780565918322260" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2938588249529499469" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b64ceceb4e3d6f9a9bf1b991a51154e724df0466d2072cb3577ff1b68dc1af3ae9a22e11bec3202566e4fe26f1b6e6ca53134e04c38bf1b526875cf9f0e707e4ae9058213ccde60a495a81b754026e8bf5b0be0460a1caf01b8141ba005a9cad2490ed81b6f9f00a029f540f11ba54b97d195300e541b28c7f6719257bf4dffff", + "cborBytes": [ + 191, 27, 100, 206, 206, 180, 227, 214, 249, 169, 191, 27, 153, 26, 81, 21, 78, 114, 77, 240, 70, 109, 32, 114, + 203, 53, 119, 255, 27, 104, 220, 26, 243, 174, 154, 34, 225, 27, 236, 50, 2, 86, 110, 79, 226, 111, 27, 110, 108, + 165, 49, 52, 224, 76, 56, 191, 27, 82, 104, 117, 207, 159, 14, 112, 126, 74, 233, 5, 130, 19, 204, 222, 96, 164, + 149, 168, 27, 117, 64, 38, 232, 191, 91, 11, 224, 70, 10, 28, 175, 1, 184, 20, 27, 160, 5, 169, 202, 210, 73, 14, + 216, 27, 111, 159, 0, 160, 41, 245, 64, 241, 27, 165, 75, 151, 209, 149, 48, 14, 84, 27, 40, 199, 246, 113, 146, + 87, 191, 77, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3355, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bab0583" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6688189844944731464" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c319edc934d1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4014614440221347647" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "906a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8951763" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acffed57" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc4fad" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13828073065860340185" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf442bab05831b5cd1393a7a4e3d4846c319edc934d1d8669f1b37b6c690238c0f3f9f42906affff44d895176344acffed5743dc4fadd8669f1bbfe72f306ac099d980ffff", + "cborBytes": [ + 191, 68, 43, 171, 5, 131, 27, 92, 209, 57, 58, 122, 78, 61, 72, 70, 195, 25, 237, 201, 52, 209, 216, 102, 159, 27, + 55, 182, 198, 144, 35, 140, 15, 63, 159, 66, 144, 106, 255, 255, 68, 216, 149, 23, 99, 68, 172, 255, 237, 87, 67, + 220, 79, 173, 216, 102, 159, 27, 191, 231, 47, 48, 106, 192, 153, 217, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3356, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6493200501976821521" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9398723208462452795" + } + } + ] + } + } + ] + }, + "cborHex": "bf01d8669f1b5a1c7b743fb76f119f1b826ef8f6269fc83bffffff", + "cborBytes": [ + 191, 1, 216, 102, 159, 27, 90, 28, 123, 116, 63, 183, 111, 17, 159, 27, 130, 110, 248, 246, 38, 159, 200, 59, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3357, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12786443016006261305" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18380907830831119459" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f73a956db67558" + } + ] + } + } + ] + }, + "cborHex": "bf1bb172922d75d3da399f1bff161a4931e27c6347f73a956db67558ffff", + "cborBytes": [ + 191, 27, 177, 114, 146, 45, 117, 211, 218, 57, 159, 27, 255, 22, 26, 73, 49, 226, 124, 99, 71, 247, 58, 149, 109, + 182, 117, 88, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3358, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cb0605fff9ba04feba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17518417655645195046" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf0e49cb0605fff9ba04feba1bf31dec0a8fa9cb26d9050380ff", + "cborBytes": [ + 191, 14, 73, 203, 6, 5, 255, 249, 186, 4, 254, 186, 27, 243, 29, 236, 10, 143, 169, 203, 38, 217, 5, 3, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3359, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "260370956402349afd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13186427167894795194" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9702fec2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4dcafb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd95da" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf49260370956402349afd1bb6ff99a4feedf3ba449702fec2434dcafb43cd95daa0ff", + "cborBytes": [ + 191, 73, 38, 3, 112, 149, 100, 2, 52, 154, 253, 27, 182, 255, 153, 164, 254, 237, 243, 186, 68, 151, 2, 254, 194, + 67, 77, 202, 251, 67, 205, 149, 218, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3360, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14067447450288104463" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10cf69d2ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12559500594533300820" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25699d5a1e7072437a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "635114237371879648" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6dae" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7211661512547995463" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "543ade" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13100889431191570109" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbab0b1cc2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa49e5ad" + } + } + ] + }, + "cborHex": "bf1bc3399cec6ae5a40fbf4510cf69d2ce1bae4c4f3f6576fa544925699d5a1e7072437a1b08d06108ae5810e0426dae1b6414f7efc7c78f47ff43543ade1bb5cfb586b3d7c6bd45fbab0b1cc244fa49e5adff", + "cborBytes": [ + 191, 27, 195, 57, 156, 236, 106, 229, 164, 15, 191, 69, 16, 207, 105, 210, 206, 27, 174, 76, 79, 63, 101, 118, + 250, 84, 73, 37, 105, 157, 90, 30, 112, 114, 67, 122, 27, 8, 208, 97, 8, 174, 88, 16, 224, 66, 109, 174, 27, 100, + 20, 247, 239, 199, 199, 143, 71, 255, 67, 84, 58, 222, 27, 181, 207, 181, 134, 179, 215, 198, 189, 69, 251, 171, + 11, 28, 194, 68, 250, 73, 229, 173, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3361, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5cca7fe696" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12490608104221215303" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "aad07264e9d27f" + } + ] + } + } + ] + }, + "cborHex": "bf455cca7fe696d8669f1bad578de488b88a479f47aad07264e9d27fffffff", + "cborBytes": [ + 191, 69, 92, 202, 127, 230, 150, 216, 102, 159, 27, 173, 87, 141, 228, 136, 184, 138, 71, 159, 71, 170, 208, 114, + 100, 233, 210, 127, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3362, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1280ff", + "cborBytes": [191, 18, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3363, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3867432696448295935" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "22" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c5355a57dc63f" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e52b85f920bcfbf98836" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1cb424" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10925890318663696043" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b35abe18c008823ffbf4122477c5355a57dc63fff4ae52b85f920bcfbf988369f431cb4241b97a08f5b62d43eabffff", + "cborBytes": [ + 191, 27, 53, 171, 225, 140, 0, 136, 35, 255, 191, 65, 34, 71, 124, 83, 85, 165, 125, 198, 63, 255, 74, 229, 43, + 133, 249, 32, 188, 251, 249, 136, 54, 159, 67, 28, 180, 36, 27, 151, 160, 143, 91, 98, 212, 62, 171, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3364, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7147145214311489559" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3641979961080784747" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15089417211752065321" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ed9e269cf3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17340320146028126339" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4" + } + } + ] + }, + "cborHex": "bf1b632fc2b4892b60171b328ae97a834fa76b1bd1686101c625a9299f45ed9e269cf3ff1bf0a5314cc38e608341e4ff", + "cborBytes": [ + 191, 27, 99, 47, 194, 180, 137, 43, 96, 23, 27, 50, 138, 233, 122, 131, 79, 167, 107, 27, 209, 104, 97, 1, 198, + 37, 169, 41, 159, 69, 237, 158, 38, 156, 243, 255, 27, 240, 165, 49, 76, 195, 142, 96, 131, 65, 228, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3365, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00672907ff6c01e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3701120504346449320" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d6b797944ea09f965" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04010205" + } + } + ] + }, + "cborHex": "bf4800672907ff6c01e81b335d057d447c15a8498d6b797944ea09f9654404010205ff", + "cborBytes": [ + 191, 72, 0, 103, 41, 7, 255, 108, 1, 232, 27, 51, 93, 5, 125, 68, 124, 21, 168, 73, 141, 107, 121, 121, 68, 234, + 9, 249, 101, 68, 4, 1, 2, 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3366, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1791336659690553284" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1949774900852572691" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "008a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74fe9f04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fadb6a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + } + ] + }, + "cborHex": "bf4100bf1b18dc1b3379fd7fc41bfffffffffffffffb1b1b0efdf1254a42131bffffffffffffffef42008a074474fe9f041bfffffffffffffff4ff43fadb6a0aff", + "cborBytes": [ + 191, 65, 0, 191, 27, 24, 220, 27, 51, 121, 253, 127, 196, 27, 255, 255, 255, 255, 255, 255, 255, 251, 27, 27, 14, + 253, 241, 37, 74, 66, 19, 27, 255, 255, 255, 255, 255, 255, 255, 239, 66, 0, 138, 7, 68, 116, 254, 159, 4, 27, + 255, 255, 255, 255, 255, 255, 255, 244, 255, 67, 250, 219, 106, 10, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3367, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "232973192364787981" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0bff39752f2de9cd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2735121519852834226" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14679173318049162771" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10352166356462053682" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1360326462353193126" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6393528523642091657" + } + }, + { + "_tag": "ByteArray", + "bytearray": "485e2df45bc2300b9b" + } + ] + } + } + ] + }, + "cborHex": "bf1b033bafe25517890d480bff39752f2de9cd1b25f51a87f05acdb2801bcbb6e65bf2b66613d8669f1b8faa4873fcaba9329f1b12e0d9b5cf2038a61b58ba60516103b88949485e2df45bc2300b9bffffff", + "cborBytes": [ + 191, 27, 3, 59, 175, 226, 85, 23, 137, 13, 72, 11, 255, 57, 117, 47, 45, 233, 205, 27, 37, 245, 26, 135, 240, 90, + 205, 178, 128, 27, 203, 182, 230, 91, 242, 182, 102, 19, 216, 102, 159, 27, 143, 170, 72, 115, 252, 171, 169, 50, + 159, 27, 18, 224, 217, 181, 207, 32, 56, 166, 27, 88, 186, 96, 81, 97, 3, 184, 137, 73, 72, 94, 45, 244, 91, 194, + 48, 11, 155, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3368, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5319892315993639836" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39f365a50286650f19c42ba7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15757921936089961915" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8714200525579193694" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81ca34f115" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06ca34834de2921153e3" + } + } + ] + }, + "cborHex": "bf1b49d40de01a218b9c4c39f365a50286650f19c42ba71bdaaf628306fa55bb1b78ef0f354cab8d5e4581ca34f1154a06ca34834de2921153e3ff", + "cborBytes": [ + 191, 27, 73, 212, 13, 224, 26, 33, 139, 156, 76, 57, 243, 101, 165, 2, 134, 101, 15, 25, 196, 43, 167, 27, 218, + 175, 98, 131, 6, 250, 85, 187, 27, 120, 239, 15, 53, 76, 171, 141, 94, 69, 129, 202, 52, 241, 21, 74, 6, 202, 52, + 131, 77, 226, 146, 17, 83, 227, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3369, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0004fdbcc70537f901db" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16705650189830198106" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7af3f38d0a3c4e0a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3200e020e03fb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d221b4" + }, + { + "_tag": "ByteArray", + "bytearray": "c95b46" + }, + { + "_tag": "ByteArray", + "bytearray": "f207cb046e92" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9f807ffffe702ec0005e8e5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14893652274046134575" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d27af12634690e7538c34df5" + }, + { + "_tag": "ByteArray", + "bytearray": "2c83" + }, + { + "_tag": "ByteArray", + "bytearray": "bf5329cae0" + } + ] + } + } + ] + }, + "cborHex": "bf4a0004fdbcc70537f901db1be7d664565ac4135a487af3f38d0a3c4e0a9f4101ff47b3200e020e03fb9f43d221b443c95b4646f207cb046e9207ff4cc9f807ffffe702ec0005e8e5d87e9f1bceb0e1d552b5692f4cd27af12634690e7538c34df5422c8345bf5329cae0ffff", + "cborBytes": [ + 191, 74, 0, 4, 253, 188, 199, 5, 55, 249, 1, 219, 27, 231, 214, 100, 86, 90, 196, 19, 90, 72, 122, 243, 243, 141, + 10, 60, 78, 10, 159, 65, 1, 255, 71, 179, 32, 14, 2, 14, 3, 251, 159, 67, 210, 33, 180, 67, 201, 91, 70, 70, 242, + 7, 203, 4, 110, 146, 7, 255, 76, 201, 248, 7, 255, 255, 231, 2, 236, 0, 5, 232, 229, 216, 126, 159, 27, 206, 176, + 225, 213, 82, 181, 105, 47, 76, 210, 122, 241, 38, 52, 105, 14, 117, 56, 195, 77, 245, 66, 44, 131, 69, 191, 83, + 41, 202, 224, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3370, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "78fd03190226" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "12bc9fbd507856d6" + }, + { + "_tag": "ByteArray", + "bytearray": "a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "380681002a9a017a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e5dcbe8ca8ffb4da49e6b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15287632770216977042" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2441770902900727879" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf024678fd03190226059f4812bc9fbd507856d641a604ff0b48380681002a9a017a0d4b1e5dcbe8ca8ffb4da49e6b12d87f9f1bd4289501d56762921b21e2e9b2fa486047ff1bffffffffffffffffa0ff", + "cborBytes": [ + 191, 2, 70, 120, 253, 3, 25, 2, 38, 5, 159, 72, 18, 188, 159, 189, 80, 120, 86, 214, 65, 166, 4, 255, 11, 72, 56, + 6, 129, 0, 42, 154, 1, 122, 13, 75, 30, 93, 203, 232, 202, 143, 251, 77, 164, 158, 107, 18, 216, 127, 159, 27, + 212, 40, 149, 1, 213, 103, 98, 146, 27, 33, 226, 233, 178, 250, 72, 96, 71, 255, 27, 255, 255, 255, 255, 255, 255, + 255, 255, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3371, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "976443349436132106" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17420787306949595238" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4eb480e4" + } + } + ] + }, + "cborHex": "bf1b0d8d060d8a6eeb0aa01bf1c311c1a25d5066444eb480e4ff", + "cborBytes": [ + 191, 27, 13, 141, 6, 13, 138, 110, 235, 10, 160, 27, 241, 195, 17, 193, 162, 93, 80, 102, 68, 78, 180, 128, 228, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3372, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16900675220892915116" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1bea8b4291dd9195aca0ff", + "cborBytes": [191, 27, 234, 139, 66, 145, 221, 145, 149, 172, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3373, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7780201812815160461" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12935474980480854412" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8302414956941150326" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e0a10b2d981fb25bea428" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb568bee669545" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "663fb8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffebd02213ec" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12444075707164977463" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14583272335869377060" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "07" + }, + { + "_tag": "ByteArray", + "bytearray": "beb40f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2190cb7ccf86" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + } + } + ] + }, + "cborHex": "bf081b6bf8d453d5b2a48d0a1bb38409f5ac83a98c1b73381a6a4e5e0876bf4b0e0a10b2d981fb25bea42847eb568bee66954543663fb846ffebd02213ecff1bacb23cec93a2e937d8669f1bca6230ec8a467a249f410743beb40f02462190cb7ccf8603ffffff", + "cborBytes": [ + 191, 8, 27, 107, 248, 212, 83, 213, 178, 164, 141, 10, 27, 179, 132, 9, 245, 172, 131, 169, 140, 27, 115, 56, 26, + 106, 78, 94, 8, 118, 191, 75, 14, 10, 16, 178, 217, 129, 251, 37, 190, 164, 40, 71, 235, 86, 139, 238, 102, 149, + 69, 67, 102, 63, 184, 70, 255, 235, 208, 34, 19, 236, 255, 27, 172, 178, 60, 236, 147, 162, 233, 55, 216, 102, + 159, 27, 202, 98, 48, 236, 138, 70, 122, 36, 159, 65, 7, 67, 190, 180, 15, 2, 70, 33, 144, 203, 124, 207, 134, 3, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3374, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "056f02fb0332b1ce07" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15851939666753382574" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ca51d532" + }, + { + "_tag": "ByteArray", + "bytearray": "41fa05" + } + ] + } + } + ] + }, + "cborHex": "bf49056f02fb0332b1ce079f1bdbfd6723c5c268ae44ca51d5324341fa05ffff", + "cborBytes": [ + 191, 73, 5, 111, 2, 251, 3, 50, 177, 206, 7, 159, 27, 219, 253, 103, 35, 197, 194, 104, 174, 68, 202, 81, 213, 50, + 67, 65, 250, 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3375, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff6112a74a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "382765536711734751" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "43596996324234399" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5226160278926346829" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03034201" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5379505674759310122" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16397740060919611334" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffffbf0445ff6112a74a1b054fdb3a47f6f5df1b009ae33cb72e149f1b48870d1594a94a4d44030342011b4aa7d7e8cb3a0b2a061be39079b4da4e3fc61bfffffffffffffffaffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 255, 191, 4, 69, 255, 97, 18, 167, 74, 27, 5, 79, 219, 58, 71, 246, + 245, 223, 27, 0, 154, 227, 60, 183, 46, 20, 159, 27, 72, 135, 13, 21, 148, 169, 74, 77, 68, 3, 3, 66, 1, 27, 74, + 167, 215, 232, 203, 58, 11, 42, 6, 27, 227, 144, 121, 180, 218, 78, 63, 198, 27, 255, 255, 255, 255, 255, 255, + 255, 250, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3376, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0204c8a3f51087" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1344030316009498108" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "de2c0dad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7544615658189790501" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf470204c8a3f510871b12a6f473911a25fc41fcbf44de2c0dad1b68b3dbf7d1409d25ffff", + "cborBytes": [ + 191, 71, 2, 4, 200, 163, 245, 16, 135, 27, 18, 166, 244, 115, 145, 26, 37, 252, 65, 252, 191, 68, 222, 44, 13, + 173, 27, 104, 179, 219, 247, 209, 64, 157, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3377, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28c716bac49183ba" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39524bfadf7d20" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2145894618087663638" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11805613740697973562" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5658de3b3087f63005bb" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7ff77" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1da8e2" + }, + { + "_tag": "ByteArray", + "bytearray": "dc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7108655909468246094" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4877447876987202025" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20547890586784987" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8300004fcfb00" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "602a9e3402d269232d05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbf803" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7046061429067020972" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9650046495337680616" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6f892a6852746738" + }, + { + "_tag": "ByteArray", + "bytearray": "85caf0452256958541" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15040616677446012075" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10076063674943404651" + } + } + ] + } + } + ] + }, + "cborHex": "bf4828c716bac49183bad8669f1bfffffffffffffff880ff4739524bfadf7d20bf13081b1dc7bfc92489a8161ba3d5f725f9c5f33a1bffffffffffffffeb4a5658de3b3087f63005bbff43e7ff779f431da8e241dc1b62a704e2ea56104e1b43b02d00964e29e91b00490032974f14dbff47f8300004fcfb00bf4a602a9e3402d269232d0541fdff43fbf8031b61c8a389c11efaac41fdd8669f1b85ebda28cc9b0ee89f486f892a68527467384985caf04522569585411bd0bb012df5fc4cab1b8bd55e86ef37fa6bffffff", + "cborBytes": [ + 191, 72, 40, 199, 22, 186, 196, 145, 131, 186, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 128, + 255, 71, 57, 82, 75, 250, 223, 125, 32, 191, 19, 8, 27, 29, 199, 191, 201, 36, 137, 168, 22, 27, 163, 213, 247, + 37, 249, 197, 243, 58, 27, 255, 255, 255, 255, 255, 255, 255, 235, 74, 86, 88, 222, 59, 48, 135, 246, 48, 5, 187, + 255, 67, 231, 255, 119, 159, 67, 29, 168, 226, 65, 220, 27, 98, 167, 4, 226, 234, 86, 16, 78, 27, 67, 176, 45, 0, + 150, 78, 41, 233, 27, 0, 73, 0, 50, 151, 79, 20, 219, 255, 71, 248, 48, 0, 4, 252, 251, 0, 191, 74, 96, 42, 158, + 52, 2, 210, 105, 35, 45, 5, 65, 253, 255, 67, 251, 248, 3, 27, 97, 200, 163, 137, 193, 30, 250, 172, 65, 253, 216, + 102, 159, 27, 133, 235, 218, 40, 204, 155, 14, 232, 159, 72, 111, 137, 42, 104, 82, 116, 103, 56, 73, 133, 202, + 240, 69, 34, 86, 149, 133, 65, 27, 208, 187, 1, 45, 245, 252, 76, 171, 27, 139, 213, 94, 134, 239, 55, 250, 107, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3378, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0421fab3d328278a030a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "093d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a74dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb4eabb27bd911e1d8180e1b" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "129801" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "745238eb68a6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8259755924300790374" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d750003" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "73a45e9ec1c650c0b3cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e801fe" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "730180910104788077" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12951396176990898767" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a0421fab3d328278a030abf42093d1bfffffffffffffff2433a74dc4cbb4eabb27bd911e1d8180e1bff431298019f46745238eb68a61b72a08c4047607a66ff448d7500034a73a45e9ec1c650c0b3cd43e801fe9f1b0a221fab48913c6d1bb3bc9a341ae50a4fffff", + "cborBytes": [ + 191, 74, 4, 33, 250, 179, 211, 40, 39, 138, 3, 10, 191, 66, 9, 61, 27, 255, 255, 255, 255, 255, 255, 255, 242, 67, + 58, 116, 220, 76, 187, 78, 171, 178, 123, 217, 17, 225, 216, 24, 14, 27, 255, 67, 18, 152, 1, 159, 70, 116, 82, + 56, 235, 104, 166, 27, 114, 160, 140, 64, 71, 96, 122, 102, 255, 68, 141, 117, 0, 3, 74, 115, 164, 94, 158, 193, + 198, 80, 192, 179, 205, 67, 232, 1, 254, 159, 27, 10, 34, 31, 171, 72, 145, 60, 109, 27, 179, 188, 154, 52, 26, + 229, 10, 79, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3379, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "826b9fad9a3f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5519429698209880426" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "097cd592de" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2046631996430990091" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11999225019356002154" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12208554239938892679" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17080717353647943097" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bf038300fa5c05fff803" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15621523881148994828" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10117545586697427432" + } + } + } + ] + }, + "cborHex": "bf0246826b9fad9a3f07d8669f1b4c98f4113c8a996a9f45097cd592de1bffffffffffffffeb1b1c6718f50d37bb0bffff1ba685cf949ab1b76a9f09ff1ba96d7f65c4a593879f1bed0ae5ef85092db94abf038300fa5c05fff803ff1bd8cacd341a2ad50c1b8c68be1b25ebd9e8ff", + "cborBytes": [ + 191, 2, 70, 130, 107, 159, 173, 154, 63, 7, 216, 102, 159, 27, 76, 152, 244, 17, 60, 138, 153, 106, 159, 69, 9, + 124, 213, 146, 222, 27, 255, 255, 255, 255, 255, 255, 255, 235, 27, 28, 103, 24, 245, 13, 55, 187, 11, 255, 255, + 27, 166, 133, 207, 148, 154, 177, 183, 106, 159, 9, 255, 27, 169, 109, 127, 101, 196, 165, 147, 135, 159, 27, 237, + 10, 229, 239, 133, 9, 45, 185, 74, 191, 3, 131, 0, 250, 92, 5, 255, 248, 3, 255, 27, 216, 202, 205, 52, 26, 42, + 213, 12, 27, 140, 104, 190, 27, 37, 235, 217, 232, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3380, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b705aaf6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c14a0db03f3c91" + } + } + ] + }, + "cborHex": "bf44b705aaf647c14a0db03f3c91ff", + "cborBytes": [191, 68, 183, 5, 170, 246, 71, 193, 74, 13, 176, 63, 60, 145, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3381, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05c106" + } + } + ] + }, + "cborHex": "bf104305c106ff", + "cborBytes": [191, 16, 67, 5, 193, 6, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3382, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05d90301" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f60efc074dc904eb00490281" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c3294eaad4c2b2181fbbc48" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e01f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15836579241006444433" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f8a18ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16080890109326268356" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea2659e6d90d682953e76cd5" + } + } + ] + } + } + ] + }, + "cborHex": "bf4405d903010a4cf60efc074dc904eb00490281bf4c6c3294eaad4c2b2181fbbc4803438e01f81bdbc6d4e9f583af91448f8a18ee1bdf2acc5aae7c17c441fe4cea2659e6d90d682953e76cd5ffff", + "cborBytes": [ + 191, 68, 5, 217, 3, 1, 10, 76, 246, 14, 252, 7, 77, 201, 4, 235, 0, 73, 2, 129, 191, 76, 108, 50, 148, 234, 173, + 76, 43, 33, 129, 251, 188, 72, 3, 67, 142, 1, 248, 27, 219, 198, 212, 233, 245, 131, 175, 145, 68, 143, 138, 24, + 238, 27, 223, 42, 204, 90, 174, 124, 23, 196, 65, 254, 76, 234, 38, 89, 230, 217, 13, 104, 41, 83, 231, 108, 213, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3383, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12445422408987141229" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6716780594560387332" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16197392695350502652" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74" + } + } + ] + }, + "cborHex": "bf1bacb705be075d646d1b5d36cc5d1d0249041be0c8b2d6c5dfa4fc4174ff", + "cborBytes": [ + 191, 27, 172, 183, 5, 190, 7, 93, 100, 109, 27, 93, 54, 204, 93, 29, 2, 73, 4, 27, 224, 200, 178, 214, 197, 223, + 164, 252, 65, 116, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3384, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3143794625375192408" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5425d03d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f60e3f59f1abb" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b2ba1008e24454558445425d03d476f60e3f59f1abb80ff", + "cborBytes": [ + 191, 27, 43, 161, 0, 142, 36, 69, 69, 88, 68, 84, 37, 208, 61, 71, 111, 96, 227, 245, 159, 26, 187, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3385, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2474330155012047065" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16819244099110046128" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18419882722750342088" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12230680558232743602" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d50cf7f8ba" + }, + { + "_tag": "ByteArray", + "bytearray": "77597c64f6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6487892118759248865" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5366001606707476525" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7521425131057138713" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7943710672595378949" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17654334647429676697" + } + }, + { + "_tag": "ByteArray", + "bytearray": "805e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18198322431521611919" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12566669478350428784" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15465059131275697770" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16033998145119075274" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fadf1c2b" + }, + { + "_tag": "ByteArray", + "bytearray": "612c25" + }, + { + "_tag": "ByteArray", + "bytearray": "209a7d79cc50486f009000fc" + } + ] + } + } + ] + }, + "cborHex": "bf1b2256962a9a87c0d9d8669f1be969f5655e0a09b09f1bffa091be5de3a3c81ba9bc1b2ab2bd2eb245d50cf7f8ba4577597c64f6ffff1b5a099f81f7b393e11b4a77de07eff9782d1b6861784e755b4c19d8669f1b6e3dbac4e686e3059f1bf500cbd33deabe9942805e1bfc8d6dd526de608fffff1bae65c74f3ad21a701bd69eed57ae195e6a1bde84345c79183bca9f44fadf1c2b43612c254c209a7d79cc50486f009000fcffff", + "cborBytes": [ + 191, 27, 34, 86, 150, 42, 154, 135, 192, 217, 216, 102, 159, 27, 233, 105, 245, 101, 94, 10, 9, 176, 159, 27, 255, + 160, 145, 190, 93, 227, 163, 200, 27, 169, 188, 27, 42, 178, 189, 46, 178, 69, 213, 12, 247, 248, 186, 69, 119, + 89, 124, 100, 246, 255, 255, 27, 90, 9, 159, 129, 247, 179, 147, 225, 27, 74, 119, 222, 7, 239, 249, 120, 45, 27, + 104, 97, 120, 78, 117, 91, 76, 25, 216, 102, 159, 27, 110, 61, 186, 196, 230, 134, 227, 5, 159, 27, 245, 0, 203, + 211, 61, 234, 190, 153, 66, 128, 94, 27, 252, 141, 109, 213, 38, 222, 96, 143, 255, 255, 27, 174, 101, 199, 79, + 58, 210, 26, 112, 27, 214, 158, 237, 87, 174, 25, 94, 106, 27, 222, 132, 52, 92, 121, 24, 59, 202, 159, 68, 250, + 223, 28, 43, 67, 97, 44, 37, 76, 32, 154, 125, 121, 204, 80, 72, 111, 0, 144, 0, 252, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3386, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12683349782790365396" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14101183897455902047" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7314549238960631793" + } + }, + { + "_tag": "ByteArray", + "bytearray": "59c8295b885dfc" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91bb7b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e7a68f18027f7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e752563" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1bb0044f6d9d3f60d4d8669f1bc3b1780b20513d5f9f1b65827fc7585a2ff14759c8295b885dfcffff4391bb7b472e7a68f18027f7449e752563a0ff", + "cborBytes": [ + 191, 27, 176, 4, 79, 109, 157, 63, 96, 212, 216, 102, 159, 27, 195, 177, 120, 11, 32, 81, 61, 95, 159, 27, 101, + 130, 127, 199, 88, 90, 47, 241, 71, 89, 200, 41, 91, 136, 93, 252, 255, 255, 67, 145, 187, 123, 71, 46, 122, 104, + 241, 128, 39, 247, 68, 158, 117, 37, 99, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3387, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf0580ff", + "cborBytes": [191, 5, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3388, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7799087597588703293" + } + }, + { + "_tag": "ByteArray", + "bytearray": "975c139900f62d4b4c" + }, + { + "_tag": "ByteArray", + "bytearray": "85ba52" + } + ] + } + } + ] + }, + "cborHex": "bf419e9f41011b6c3becd9426de83d49975c139900f62d4b4c4385ba52ffff", + "cborBytes": [ + 191, 65, 158, 159, 65, 1, 27, 108, 59, 236, 217, 66, 109, 232, 61, 73, 151, 92, 19, 153, 0, 246, 45, 75, 76, 67, + 133, 186, 82, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3389, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1707111819978620906" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14007675055774671777" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "774574077581267135" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15015296523499581326" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3958142396723039704" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0400058002" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15585975410947220037" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9fbb78fd9eff9cf1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7248676810734638664" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9185277208452547129" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10314761796330982519" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10568398867391755880" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1533729807220629262" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22739e9bc9b59b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2823892520619036884" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14338486279810942667" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6fc9a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14805080767523618186" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "71ca59eb223733" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16519261431876741391" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1371c837fc188ccf1e" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "783144848888510487" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9597062021671407516" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f1891a5e1dab" + } + ] + } + } + ] + }, + "cborHex": "bf1b17b0e127d5b23fea9f1bc265423f548ca3a11b0abfd7050a7510bf1bd0610ca23859af8eff1b36ee2589e7170dd8d905059f450400058002071bd84c820ee77b6245489fbb78fd9eff9cf11b649879277b731648ff1b7f78a8f4954e42391b8f2565342d140c771b92aa7ec6af86b668bf1b1548e72234d05f0e4722739e9bc9b59b1b27307b492f6150d441121bc6fc894d8cf186cb436fc9a41bcd76368473367d8a4771ca59eb2237331be54034bfded2e90f491371c837fc188ccf1eff1bfffffffffffffff0d905079f1b0ade4a173dad38171b852f9d0fb11dcf9c46f1891a5e1dabffff", + "cborBytes": [ + 191, 27, 23, 176, 225, 39, 213, 178, 63, 234, 159, 27, 194, 101, 66, 63, 84, 140, 163, 161, 27, 10, 191, 215, 5, + 10, 117, 16, 191, 27, 208, 97, 12, 162, 56, 89, 175, 142, 255, 27, 54, 238, 37, 137, 231, 23, 13, 216, 217, 5, 5, + 159, 69, 4, 0, 5, 128, 2, 7, 27, 216, 76, 130, 14, 231, 123, 98, 69, 72, 159, 187, 120, 253, 158, 255, 156, 241, + 27, 100, 152, 121, 39, 123, 115, 22, 72, 255, 27, 127, 120, 168, 244, 149, 78, 66, 57, 27, 143, 37, 101, 52, 45, + 20, 12, 119, 27, 146, 170, 126, 198, 175, 134, 182, 104, 191, 27, 21, 72, 231, 34, 52, 208, 95, 14, 71, 34, 115, + 158, 155, 201, 181, 155, 27, 39, 48, 123, 73, 47, 97, 80, 212, 65, 18, 27, 198, 252, 137, 77, 140, 241, 134, 203, + 67, 111, 201, 164, 27, 205, 118, 54, 132, 115, 54, 125, 138, 71, 113, 202, 89, 235, 34, 55, 51, 27, 229, 64, 52, + 191, 222, 210, 233, 15, 73, 19, 113, 200, 55, 252, 24, 140, 207, 30, 255, 27, 255, 255, 255, 255, 255, 255, 255, + 240, 217, 5, 7, 159, 27, 10, 222, 74, 23, 61, 173, 56, 23, 27, 133, 47, 157, 15, 177, 29, 207, 156, 70, 241, 137, + 26, 94, 29, 171, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3390, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "003f3a" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "09865660143cba679c1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7898295550851909631" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2543" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1603675249897120020" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1300749456284880288" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15988557428119619374" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3f68fc30ee57bdc2926f64" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a5e7be7595" + }, + { + "_tag": "ByteArray", + "bytearray": "7c3dcb5ce45a19a9" + }, + { + "_tag": "ByteArray", + "bytearray": "c8cac0d1565d2c" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a85d387" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2460847645847988060" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3112210124074967112" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12285633309593136499" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "75cf85" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15124517076658744581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6398780580121637925" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15700988730521366467" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "32b72123186e8ea1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15745184834125236232" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5d12267cf706" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a351c9dc377332821e7692d0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4425633629922791935" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1129884263933820393" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7635664118766429204" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4483855097326223137" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7824887530482814848" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5347539802351168470" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf43003f3a804a09865660143cba679c1e1b6d9c61f4df9387ff422543bf1b16416624a53421141b120d30bd23a48da01bdde2c4451600c72e41a1ff4b3f68fc30ee57bdc2926f649f45a5e7be7595487c3dcb5ce45a19a947c8cac0d1565d2cff444a85d387bf1b2226afe55120275c1b2b30ca9e5fdce0481baa7f56672b016d734375cf851bd1e51425e992ed051b58cd090911d174251bd9e51e1021232fc34832b72123186e8ea11bda82222f60e70808465d12267cf706ff4ca351c9dc377332821e7692d0bf1b3d6b0256a19211ff1b0fae27c06d143de91b69f7540f7f44e4141b3e39da745c743f211b6c9795c03dcfcf801b4a36471e25676bd6ffff", + "cborBytes": [ + 191, 67, 0, 63, 58, 128, 74, 9, 134, 86, 96, 20, 60, 186, 103, 156, 30, 27, 109, 156, 97, 244, 223, 147, 135, 255, + 66, 37, 67, 191, 27, 22, 65, 102, 36, 165, 52, 33, 20, 27, 18, 13, 48, 189, 35, 164, 141, 160, 27, 221, 226, 196, + 69, 22, 0, 199, 46, 65, 161, 255, 75, 63, 104, 252, 48, 238, 87, 189, 194, 146, 111, 100, 159, 69, 165, 231, 190, + 117, 149, 72, 124, 61, 203, 92, 228, 90, 25, 169, 71, 200, 202, 192, 209, 86, 93, 44, 255, 68, 74, 133, 211, 135, + 191, 27, 34, 38, 175, 229, 81, 32, 39, 92, 27, 43, 48, 202, 158, 95, 220, 224, 72, 27, 170, 127, 86, 103, 43, 1, + 109, 115, 67, 117, 207, 133, 27, 209, 229, 20, 37, 233, 146, 237, 5, 27, 88, 205, 9, 9, 17, 209, 116, 37, 27, 217, + 229, 30, 16, 33, 35, 47, 195, 72, 50, 183, 33, 35, 24, 110, 142, 161, 27, 218, 130, 34, 47, 96, 231, 8, 8, 70, 93, + 18, 38, 124, 247, 6, 255, 76, 163, 81, 201, 220, 55, 115, 50, 130, 30, 118, 146, 208, 191, 27, 61, 107, 2, 86, + 161, 146, 17, 255, 27, 15, 174, 39, 192, 109, 20, 61, 233, 27, 105, 247, 84, 15, 127, 68, 228, 20, 27, 62, 57, + 218, 116, 92, 116, 63, 33, 27, 108, 151, 149, 192, 61, 207, 207, 128, 27, 74, 54, 71, 30, 37, 103, 107, 214, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3391, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3872773307416780279" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10753749217050788459" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9766398056540404662" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "612128905575899928" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4282020aa4e3fd226e3bc1b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8848210900374921371" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9177790325703503695" + } + }, + { + "_tag": "ByteArray", + "bytearray": "22b15e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ffd1375c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30b81b1892a837" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1c24afb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11198722556247844994" + } + } + } + ] + }, + "cborHex": "bf1b35bedacde4311df71b953cfdefe5f2826b1b87893749af27fbb69f1b087eb7ff1599a3184c4282020aa4e3fd226e3bc1b61b7acb28ef1e96209b1b7f5e0facda92ef4f4322b15eff455ffd1375c14730b81b1892a83744e1c24afb1b9b69dad4df4ea882ff", + "cborBytes": [ + 191, 27, 53, 190, 218, 205, 228, 49, 29, 247, 27, 149, 60, 253, 239, 229, 242, 130, 107, 27, 135, 137, 55, 73, + 175, 39, 251, 182, 159, 27, 8, 126, 183, 255, 21, 153, 163, 24, 76, 66, 130, 2, 10, 164, 227, 253, 34, 110, 59, + 193, 182, 27, 122, 203, 40, 239, 30, 150, 32, 155, 27, 127, 94, 15, 172, 218, 146, 239, 79, 67, 34, 177, 94, 255, + 69, 95, 253, 19, 117, 193, 71, 48, 184, 27, 24, 146, 168, 55, 68, 225, 194, 74, 251, 27, 155, 105, 218, 212, 223, + 78, 168, 130, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3392, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c3e226c0c6cff20" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "43" + }, + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "ByteArray", + "bytearray": "50cc76cfe8" + }, + { + "_tag": "ByteArray", + "bytearray": "26678547100e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf486c3e226c0c6cff20d87d9f414341004550cc76cfe84626678547100eff41b9a0ff", + "cborBytes": [ + 191, 72, 108, 62, 34, 108, 12, 108, 255, 32, 216, 125, 159, 65, 67, 65, 0, 69, 80, 204, 118, 207, 232, 70, 38, + 103, 133, 71, 16, 14, 255, 65, 185, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3393, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5624746325586429146" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6267379252087744728" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7778098800365761956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13652109965336375570" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7873867287188237031" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2838268252282256560" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10187293315526032796" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7314084205426622687" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c719db8e0a2b4690bdff7d56" + }, + { + "_tag": "ByteArray", + "bytearray": "e56591e0e6743d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "709465416403383266" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7965332668108860263" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16782869672166639218" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16176537261474730284" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16526231392968642315" + } + } + } + ] + }, + "cborHex": "bf1b4e0f1cfb604344da1b56fa34394957e8d81b6bf15ba617b175a41bbd7609ae7671f1121b6d459894856c6ae7d8669f1b27638df00a8d7cb09f1b8d60894bbea3fd9c1b6580d8d549bfc0df4cc719db8e0a2b4690bdff7d5647e56591e0e6743d1b09d887098d25f3e2ffff1b6e8a8bdc08716b671be8e8bb0c212b46721be07e9aeeae12512c1be558f7e465ce0f0bff", + "cborBytes": [ + 191, 27, 78, 15, 28, 251, 96, 67, 68, 218, 27, 86, 250, 52, 57, 73, 87, 232, 216, 27, 107, 241, 91, 166, 23, 177, + 117, 164, 27, 189, 118, 9, 174, 118, 113, 241, 18, 27, 109, 69, 152, 148, 133, 108, 106, 231, 216, 102, 159, 27, + 39, 99, 141, 240, 10, 141, 124, 176, 159, 27, 141, 96, 137, 75, 190, 163, 253, 156, 27, 101, 128, 216, 213, 73, + 191, 192, 223, 76, 199, 25, 219, 142, 10, 43, 70, 144, 189, 255, 125, 86, 71, 229, 101, 145, 224, 230, 116, 61, + 27, 9, 216, 135, 9, 141, 37, 243, 226, 255, 255, 27, 110, 138, 139, 220, 8, 113, 107, 103, 27, 232, 232, 187, 12, + 33, 43, 70, 114, 27, 224, 126, 154, 238, 174, 18, 81, 44, 27, 229, 88, 247, 228, 101, 206, 15, 11, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3394, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "59a58ab93958516b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18284087538270821833" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82f912727e634e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15138025500756156410" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8187309296863359731" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de1602" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "00" + }, + { + "_tag": "ByteArray", + "bytearray": "b30a695b9c0483" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "858524084299709470" + } + } + ] + } + } + ] + }, + "cborHex": "bf4859a58ab93958516b1bfdbe20be28c75dc94782f912727e634ebf1bd21511fcfd601ffa1b719f2a6d61cb32f3ff43de16029f410047b30a695b9c04831b0bea171b23cd3c1effff", + "cborBytes": [ + 191, 72, 89, 165, 138, 185, 57, 88, 81, 107, 27, 253, 190, 32, 190, 40, 199, 93, 201, 71, 130, 249, 18, 114, 126, + 99, 78, 191, 27, 210, 21, 17, 252, 253, 96, 31, 250, 27, 113, 159, 42, 109, 97, 203, 50, 243, 255, 67, 222, 22, 2, + 159, 65, 0, 71, 179, 10, 105, 91, 156, 4, 131, 27, 11, 234, 23, 27, 35, 205, 60, 30, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3395, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8072106539895528371" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05bc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0aa96a15a2c87a70a9ad" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0498" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7504000365216200008" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc88" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11184483496703523952" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10369424188589436991" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de577b5872fef1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2254964304855544190" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2134730530849275386" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffea" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6658298272873955971" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8225420007692461276" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc6e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9502696486208459575" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "970253" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15864596399283907127" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9824261092264851441" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf02bf1bfffffffffffffffa1b7005e22153949bb34205bc4a0aa96a15a2c87a70a9adff4204989f1b68239093031cf54806ff42bc88d8669f1b9b37447b793b7c709f1b8fe7985c2637703fffff47de577b5872fef1bf011b1f4b3e168419b17e1b1da0161b8673bdfa42ffea1b5c670700833fc2830d1b72268feab6e664dc42bc6e1b83e05c1b54ced337439702531bdc2a5e5ef4422a371b8856c969892337f1ffff", + "cborBytes": [ + 191, 2, 191, 27, 255, 255, 255, 255, 255, 255, 255, 250, 27, 112, 5, 226, 33, 83, 148, 155, 179, 66, 5, 188, 74, + 10, 169, 106, 21, 162, 200, 122, 112, 169, 173, 255, 66, 4, 152, 159, 27, 104, 35, 144, 147, 3, 28, 245, 72, 6, + 255, 66, 188, 136, 216, 102, 159, 27, 155, 55, 68, 123, 121, 59, 124, 112, 159, 27, 143, 231, 152, 92, 38, 55, + 112, 63, 255, 255, 71, 222, 87, 123, 88, 114, 254, 241, 191, 1, 27, 31, 75, 62, 22, 132, 25, 177, 126, 27, 29, + 160, 22, 27, 134, 115, 189, 250, 66, 255, 234, 27, 92, 103, 7, 0, 131, 63, 194, 131, 13, 27, 114, 38, 143, 234, + 182, 230, 100, 220, 66, 188, 110, 27, 131, 224, 92, 27, 84, 206, 211, 55, 67, 151, 2, 83, 27, 220, 42, 94, 94, + 244, 66, 42, 55, 27, 136, 86, 201, 105, 137, 35, 55, 241, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3396, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6788685660924410329" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f6fd80d14d94448b6916ccb" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "336151651099031715" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0000fbdd028c02fb02010759" + } + } + ] + }, + "cborHex": "bf0342fdff0dbf1b5e3641a3ff2ff9d94c9f6fd80d14d94448b6916ccbff1b04aa40254a6b38a34c0000fbdd028c02fb02010759ff", + "cborBytes": [ + 191, 3, 66, 253, 255, 13, 191, 27, 94, 54, 65, 163, 255, 47, 249, 217, 76, 159, 111, 216, 13, 20, 217, 68, 72, + 182, 145, 108, 203, 255, 27, 4, 170, 64, 37, 74, 107, 56, 163, 76, 0, 0, 251, 221, 2, 140, 2, 251, 2, 1, 7, 89, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3397, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "deab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + }, + "cborHex": "bf42deab13ff", + "cborBytes": [191, 66, 222, 171, 19, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3398, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2ad5c18e8a59a13" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17a80a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5182422504188331205" + } + }, + { + "_tag": "ByteArray", + "bytearray": "13" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd8b" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf48d2ad5c18e8a59a139f0d034317a80a1b47eba9cf5622c4c54113ff42fd8ba0ff", + "cborBytes": [ + 191, 72, 210, 173, 92, 24, 232, 165, 154, 19, 159, 13, 3, 67, 23, 168, 10, 27, 71, 235, 169, 207, 86, 34, 196, + 197, 65, 19, 255, 66, 253, 139, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3399, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "31e96bb3a1d27897" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c89d5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "972f922673b538dc93b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15938882621807949786" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b45b385cb5ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1e2c2b7827beff25ed6cdb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df19ff664d43ac858918" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4678261012759727796" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93ba3df2264c1997ef7b14e6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8156de214fe1c8" + } + } + ] + }, + "cborHex": "bf4831e96bb3a1d27897bf430c89d541254a972f922673b538dc93b21bdd32494bf58277da46b45b385cb5ab4b1e2c2b7827beff25ed6cdb4adf19ff664d43ac8589181b40ec859ac81a4eb4ff4c93ba3df2264c1997ef7b14e6478156de214fe1c8ff", + "cborBytes": [ + 191, 72, 49, 233, 107, 179, 161, 210, 120, 151, 191, 67, 12, 137, 213, 65, 37, 74, 151, 47, 146, 38, 115, 181, 56, + 220, 147, 178, 27, 221, 50, 73, 75, 245, 130, 119, 218, 70, 180, 91, 56, 92, 181, 171, 75, 30, 44, 43, 120, 39, + 190, 255, 37, 237, 108, 219, 74, 223, 25, 255, 102, 77, 67, 172, 133, 137, 24, 27, 64, 236, 133, 154, 200, 26, 78, + 180, 255, 76, 147, 186, 61, 242, 38, 76, 25, 151, 239, 123, 20, 230, 71, 129, 86, 222, 33, 79, 225, 200, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3400, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a05fc17c5792405b2c770" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18076746218728380771" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12349394864118927233" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "950740" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4327361785880456091" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4309113084121484877" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1b" + } + ] + } + } + ] + }, + "cborHex": "bf4b0a05fc17c5792405b2c7709f1bfadd80e94630d9631bab61dd32f2d78f81ff439507409f1b3c0de09dee012b9b1b3bcd0b84f40c8e4d411bffff", + "cborBytes": [ + 191, 75, 10, 5, 252, 23, 197, 121, 36, 5, 178, 199, 112, 159, 27, 250, 221, 128, 233, 70, 48, 217, 99, 27, 171, + 97, 221, 50, 242, 215, 143, 129, 255, 67, 149, 7, 64, 159, 27, 60, 13, 224, 157, 238, 1, 43, 155, 27, 59, 205, 11, + 132, 244, 12, 142, 77, 65, 27, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3401, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5196079722471587800" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3272569937919012633" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9855387564551446579" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1324727110593308817" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5894e3f68e8b66f3c52c20c6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8558174948079316447" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14749429868721669532" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14397157108172657815" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7985682406992298327" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3cf1562125f1e2939" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14639386274776068184" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7338627309095572825" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b481c2efa42877fd8d8669f1b2d6a81050c48ef1980ff1b88c55ec61ce420331b12626049d33e68914c5894e3f68e8b66f3c52c20c6bf1b76c4bec5a9ea2ddf1bccb08051dcb1059c1bc7ccfa1c481f14971b6ed2d7d6d5dcc157ff49b3cf1562125f1e2939bf1bcb298c410dc1b0581b65d80aa7e99f5559ffff", + "cborBytes": [ + 191, 27, 72, 28, 46, 250, 66, 135, 127, 216, 216, 102, 159, 27, 45, 106, 129, 5, 12, 72, 239, 25, 128, 255, 27, + 136, 197, 94, 198, 28, 228, 32, 51, 27, 18, 98, 96, 73, 211, 62, 104, 145, 76, 88, 148, 227, 246, 142, 139, 102, + 243, 197, 44, 32, 198, 191, 27, 118, 196, 190, 197, 169, 234, 45, 223, 27, 204, 176, 128, 81, 220, 177, 5, 156, + 27, 199, 204, 250, 28, 72, 31, 20, 151, 27, 110, 210, 215, 214, 213, 220, 193, 87, 255, 73, 179, 207, 21, 98, 18, + 95, 30, 41, 57, 191, 27, 203, 41, 140, 65, 13, 193, 176, 88, 27, 101, 216, 10, 167, 233, 159, 85, 89, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3402, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "32d668" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17251425074649561453" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8571447124110384050" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17612842356920689128" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7567560398152455702" + } + } + ] + } + } + ] + }, + "cborHex": "bf4332d6689f418f1bef695fb413c0f96d1b76f3e5bef3a49bb21bf46d62ce893621e81b690560166430d616ffff", + "cborBytes": [ + 191, 67, 50, 214, 104, 159, 65, 143, 27, 239, 105, 95, 180, 19, 192, 249, 109, 27, 118, 243, 229, 190, 243, 164, + 155, 178, 27, 244, 109, 98, 206, 137, 54, 33, 232, 27, 105, 5, 96, 22, 100, 48, 214, 22, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3403, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7065169359128150828" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef60b0638d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5f50db0c27e7f2e025dc06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11353451552679746670" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf091bfffffffffffffffb1b620c861968cec32cbf0045ef60b0638d4b5f50db0c27e7f2e025dc061b9d8f9008b4155c6effff", + "cborBytes": [ + 191, 9, 27, 255, 255, 255, 255, 255, 255, 255, 251, 27, 98, 12, 134, 25, 104, 206, 195, 44, 191, 0, 69, 239, 96, + 176, 99, 141, 75, 95, 80, 219, 12, 39, 231, 242, 224, 37, 220, 6, 27, 157, 143, 144, 8, 180, 21, 92, 110, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3404, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2450254912125088082" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15809321032025664586" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "81d6" + } + ] + } + } + ] + }, + "cborHex": "bf1b22010ddc4e5f31521bfffffffffffffff71bdb65fdb79e006c4a9f4281d6ffff", + "cborBytes": [ + 191, 27, 34, 1, 13, 220, 78, 95, 49, 82, 27, 255, 255, 255, 255, 255, 255, 255, 247, 27, 219, 101, 253, 183, 158, + 0, 108, 74, 159, 66, 129, 214, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3405, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff31bffffffffffffffecff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 243, 27, 255, 255, 255, 255, 255, 255, 255, 236, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3406, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6d0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e1d03345a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3553054218869043187" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9530426046751643605" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b38d47e1eb94cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17756813132554465479" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe13" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83" + } + } + ] + } + } + ] + }, + "cborHex": "bf42b6d0bf452e1d03345a1b314efbfcb7646ff341741b8442dffec2c317d547b38d47e1eb94cb1bf66cdf76e4e670c742fe134183ffff", + "cborBytes": [ + 191, 66, 182, 208, 191, 69, 46, 29, 3, 52, 90, 27, 49, 78, 251, 252, 183, 100, 111, 243, 65, 116, 27, 132, 66, + 223, 254, 194, 195, 23, 213, 71, 179, 141, 71, 225, 235, 148, 203, 27, 246, 108, 223, 118, 228, 230, 112, 199, 66, + 254, 19, 65, 131, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3407, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9018538217082828405" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "db" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5375667064332387813" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b7d2848b9e681b6759f41db1b4a9a34b6a84c85e5ffff", + "cborBytes": [ + 191, 27, 125, 40, 72, 185, 230, 129, 182, 117, 159, 65, 219, 27, 74, 154, 52, 182, 168, 76, 133, 229, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3408, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4bcd1da3230f4721c061" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12832195285798995254" + } + } + } + ] + }, + "cborHex": "bf4a4bcd1da3230f4721c0611bb2151d9fe27dc536ff", + "cborBytes": [191, 74, 75, 205, 29, 163, 35, 15, 71, 33, 192, 97, 27, 178, 21, 29, 159, 226, 125, 197, 54, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3409, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "217441ba6edf50d58a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d57cd1a137ca" + } + } + ] + }, + "cborHex": "bf49217441ba6edf50d58a46d57cd1a137caff", + "cborBytes": [191, 73, 33, 116, 65, 186, 110, 223, 80, 213, 138, 70, 213, 124, 209, 161, 55, 202, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3410, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0c2ee0ee9798eb0c2c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fa555794e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4700685171371372709" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a855f5c1fae1c617ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "973348bea9625d16db8f2f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "afc349133dfe20e8f1a5e15a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2214983497536848589" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c07e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6678c487bc915461" + } + } + ] + } + } + ] + }, + "cborHex": "bf490c2ee0ee9798eb0c2cbf451fa555794e1b413c3042108970a549a855f5c1fae1c617ae4b973348bea9625d16db8f2f4cafc349133dfe20e8f1a5e15a1b1ebd33c16a0942cd42c07e486678c487bc915461ffff", + "cborBytes": [ + 191, 73, 12, 46, 224, 238, 151, 152, 235, 12, 44, 191, 69, 31, 165, 85, 121, 78, 27, 65, 60, 48, 66, 16, 137, 112, + 165, 73, 168, 85, 245, 193, 250, 225, 198, 23, 174, 75, 151, 51, 72, 190, 169, 98, 93, 22, 219, 143, 47, 76, 175, + 195, 73, 19, 61, 254, 32, 232, 241, 165, 225, 90, 27, 30, 189, 51, 193, 106, 9, 66, 205, 66, 192, 126, 72, 102, + 120, 196, 135, 188, 145, 84, 97, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3411, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "65" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "434709089567463928" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94a71a88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2443412030470599240" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f4a1c5720953b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "761213507105180412" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ae91eae702f8039eb2cd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9755549338066409634" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2054171323013471138" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d440143" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17749254321155943946" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e4f1317e84d0525c51b780d9" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02f07d79969c81ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9167574932086167704" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8777507693457364765" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e56ba10a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9cf8" + } + } + ] + }, + "cborHex": "bf41651b0608659d204d59f84494a71a881b21e8be4bc41db248479f4a1c5720953b9f1b0a905fa6d13bcafcff4aae91eae702f8039eb2cdbf1b8762ac6f943ed8a21b1c81e1ef50031ba2441d4401431bf65204c3f8912e0aff4ce4f1317e84d0525c51b780d9bf4802f07d79969c81ce1b7f39c4d42ec5989841951b79cff8bdf1c8d71dff44e56ba10a429cf8ff", + "cborBytes": [ + 191, 65, 101, 27, 6, 8, 101, 157, 32, 77, 89, 248, 68, 148, 167, 26, 136, 27, 33, 232, 190, 75, 196, 29, 178, 72, + 71, 159, 74, 28, 87, 32, 149, 59, 159, 27, 10, 144, 95, 166, 209, 59, 202, 252, 255, 74, 174, 145, 234, 231, 2, + 248, 3, 158, 178, 205, 191, 27, 135, 98, 172, 111, 148, 62, 216, 162, 27, 28, 129, 225, 239, 80, 3, 27, 162, 68, + 29, 68, 1, 67, 27, 246, 82, 4, 195, 248, 145, 46, 10, 255, 76, 228, 241, 49, 126, 132, 208, 82, 92, 81, 183, 128, + 217, 191, 72, 2, 240, 125, 121, 150, 156, 129, 206, 27, 127, 57, 196, 212, 46, 197, 152, 152, 65, 149, 27, 121, + 207, 248, 189, 241, 200, 215, 29, 255, 68, 229, 107, 161, 10, 66, 156, 248, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3412, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7133b7a6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4791100622324703312" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15865643394195810927" + } + } + ] + } + } + ] + }, + "cborHex": "bf447133b7a6d8669f1b427d68a1b4d120509f1bdc2e169b74106a6fffffff", + "cborBytes": [ + 191, 68, 113, 51, 183, 166, 216, 102, 159, 27, 66, 125, 104, 161, 180, 209, 32, 80, 159, 27, 220, 46, 22, 155, + 116, 16, 106, 111, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3413, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "559200122807543895" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7920212624773515575" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13997323511412756615" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5858cee4e998286ea0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3669031767312984901" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0cd2b03ed086f3a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c72965274c55d1de0ef8b32a" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4061178889789356173" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17092027938634307881" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4906bb8f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1136402087978667684" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d79be2344f9e36" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8728833799841752106" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0083a0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3be58389cf54dd9ee06bfe" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6732828493687801989" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7165246038193950505" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b00c337151195025bc31" + }, + { + "_tag": "ByteArray", + "bytearray": "8a75c17a0a593518e17200e8" + } + ] + } + } + ] + }, + "cborHex": "bf1b07c2ad8c864c6857bf1b6dea3f6b4d3089371bc2407b9297fb1087495858cee4e998286ea01b32eb04f3f8506b4548d0cd2b03ed086f3a4cc72965274c55d1de0ef8b32aff1b385c34aee735b88dd8669f1bed3314da4d5999299f444906bb8f1b0fc54fad97fb0ea447d79be2344f9e36ffff1b79230c17f6fda42a430083a04b3be58389cf54dd9ee06bfed8669f1b5d6fcfd7cbe3c8859f1b6370114f02d34f294ab00c337151195025bc314c8a75c17a0a593518e17200e8ffffff", + "cborBytes": [ + 191, 27, 7, 194, 173, 140, 134, 76, 104, 87, 191, 27, 109, 234, 63, 107, 77, 48, 137, 55, 27, 194, 64, 123, 146, + 151, 251, 16, 135, 73, 88, 88, 206, 228, 233, 152, 40, 110, 160, 27, 50, 235, 4, 243, 248, 80, 107, 69, 72, 208, + 205, 43, 3, 237, 8, 111, 58, 76, 199, 41, 101, 39, 76, 85, 209, 222, 14, 248, 179, 42, 255, 27, 56, 92, 52, 174, + 231, 53, 184, 141, 216, 102, 159, 27, 237, 51, 20, 218, 77, 89, 153, 41, 159, 68, 73, 6, 187, 143, 27, 15, 197, + 79, 173, 151, 251, 14, 164, 71, 215, 155, 226, 52, 79, 158, 54, 255, 255, 27, 121, 35, 12, 23, 246, 253, 164, 42, + 67, 0, 131, 160, 75, 59, 229, 131, 137, 207, 84, 221, 158, 224, 107, 254, 216, 102, 159, 27, 93, 111, 207, 215, + 203, 227, 200, 133, 159, 27, 99, 112, 17, 79, 2, 211, 79, 41, 74, 176, 12, 51, 113, 81, 25, 80, 37, 188, 49, 76, + 138, 117, 193, 122, 10, 89, 53, 24, 225, 114, 0, 232, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3414, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0300" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16312307553222079081" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4907366285499068050" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8180657751062707957" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10043206276392340391" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c27896c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "213bc144ee1ef208" + } + } + ] + }, + "cborHex": "bf420300d87e9f1be260f54b18b932691b441a77a2e5e66e921b718788e1b1237ef51b8b60a2e5ae56cba7ff441c27896c48213bc144ee1ef208ff", + "cborBytes": [ + 191, 66, 3, 0, 216, 126, 159, 27, 226, 96, 245, 75, 24, 185, 50, 105, 27, 68, 26, 119, 162, 229, 230, 110, 146, + 27, 113, 135, 136, 225, 177, 35, 126, 245, 27, 139, 96, 162, 229, 174, 86, 203, 167, 255, 68, 28, 39, 137, 108, + 72, 33, 59, 193, 68, 238, 30, 242, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3415, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f89332" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "39e13b3133cb49f3089b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "81fdd014505791ad5c6b81" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e9416bead" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4215836107083840789" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11204048131306854242" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8664c4b735d8f18fd506" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1226907450370827082" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8ce" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16992257165190558157" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5485507d174" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10124797187547271119" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf43f89332bf4a39e13b3133cb49f3089b4b81fdd014505791ad5c6b81453e9416bead1b3a81a89a59ff7d154240a71b9b7cc669f0ec97624a8664c4b735d8f18fd5061b1106d9d35fa2234a42b8ce1bebd09fdce744f1cd46c5485507d1741b8c8281660aa10fcfffff", + "cborBytes": [ + 191, 67, 248, 147, 50, 191, 74, 57, 225, 59, 49, 51, 203, 73, 243, 8, 155, 75, 129, 253, 208, 20, 80, 87, 145, + 173, 92, 107, 129, 69, 62, 148, 22, 190, 173, 27, 58, 129, 168, 154, 89, 255, 125, 21, 66, 64, 167, 27, 155, 124, + 198, 105, 240, 236, 151, 98, 74, 134, 100, 196, 183, 53, 216, 241, 143, 213, 6, 27, 17, 6, 217, 211, 95, 162, 35, + 74, 66, 184, 206, 27, 235, 208, 159, 220, 231, 68, 241, 205, 70, 197, 72, 85, 7, 209, 116, 27, 140, 130, 129, 102, + 10, 161, 15, 207, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3416, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0572b1bfc39a1755" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5156e47c8dcf96bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8464733316850797906" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5178ec27953d76bf" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c7cb2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "61c52388115dfc8b278c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "468278122669625a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b13651acd0a40335512e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9679044271418152709" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea3692f8b90f748edcc06bff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8382658678160168030" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "506ac06de64015" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6694726952976678903" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b3536905bf982" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1566180250520738029" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "548ff4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5433514729144130247" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13728903001600715570" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3d7e36d7c4b430" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bba3337fa8086273e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "76" + }, + { + "_tag": "ByteArray", + "bytearray": "2cba94af50ac8f46b1bc5a5f" + }, + { + "_tag": "ByteArray", + "bytearray": "7342a5c973b80199a1c7" + }, + { + "_tag": "ByteArray", + "bytearray": "5f83ab97fc1ca0e4" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3d9025f4842cd6ca0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c8a0c5f592d2533e3b0a4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc3b4829fdb550fa3e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17580612753859691943" + } + } + } + ] + }, + "cborHex": "bf480572b1bfc39a1755bf485156e47c8dcf96bf1b7578c61a854e4d52485178ec27953d76bf434c7cb24a61c52388115dfc8b278c48468278122669625a4ab13651acd0a40335512e1b8652df7bab2897054cea3692f8b90f748edcc06bff1b74552fa79115145eff47506ac06de640151b5ce872b18c687ff7476b3536905bf982d8669f1b15bc30a3ce8558ed9f43548ff41b4b67b8dbb07d1ac71bbe86dc8a86346b32473d7e36d7c4b430ffff498bba3337fa8086273e9f41764c2cba94af50ac8f46b1bc5a5f4a7342a5c973b80199a1c7485f83ab97fc1ca0e4ff49a3d9025f4842cd6ca04b9c8a0c5f592d2533e3b0a449bc3b4829fdb550fa3e1bf3fae2274f8245a7ff", + "cborBytes": [ + 191, 72, 5, 114, 177, 191, 195, 154, 23, 85, 191, 72, 81, 86, 228, 124, 141, 207, 150, 191, 27, 117, 120, 198, 26, + 133, 78, 77, 82, 72, 81, 120, 236, 39, 149, 61, 118, 191, 67, 76, 124, 178, 74, 97, 197, 35, 136, 17, 93, 252, + 139, 39, 140, 72, 70, 130, 120, 18, 38, 105, 98, 90, 74, 177, 54, 81, 172, 208, 164, 3, 53, 81, 46, 27, 134, 82, + 223, 123, 171, 40, 151, 5, 76, 234, 54, 146, 248, 185, 15, 116, 142, 220, 192, 107, 255, 27, 116, 85, 47, 167, + 145, 21, 20, 94, 255, 71, 80, 106, 192, 109, 230, 64, 21, 27, 92, 232, 114, 177, 140, 104, 127, 247, 71, 107, 53, + 54, 144, 91, 249, 130, 216, 102, 159, 27, 21, 188, 48, 163, 206, 133, 88, 237, 159, 67, 84, 143, 244, 27, 75, 103, + 184, 219, 176, 125, 26, 199, 27, 190, 134, 220, 138, 134, 52, 107, 50, 71, 61, 126, 54, 215, 196, 180, 48, 255, + 255, 73, 139, 186, 51, 55, 250, 128, 134, 39, 62, 159, 65, 118, 76, 44, 186, 148, 175, 80, 172, 143, 70, 177, 188, + 90, 95, 74, 115, 66, 165, 201, 115, 184, 1, 153, 161, 199, 72, 95, 131, 171, 151, 252, 28, 160, 228, 255, 73, 163, + 217, 2, 95, 72, 66, 205, 108, 160, 75, 156, 138, 12, 95, 89, 45, 37, 51, 227, 176, 164, 73, 188, 59, 72, 41, 253, + 181, 80, 250, 62, 27, 243, 250, 226, 39, 79, 130, 69, 167, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3417, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1433861710185714497" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9468758415877463862" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c73b73e9d10c01bfa372e91f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12171935147897196388" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12303252676705867210" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9013177629386493993" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7727203967488836263" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6729212762170414663" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17197988376925041520" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98c54a9877" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17584756351694359639" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15917264131190390915" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3988549976883240419" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18410693599055515019" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10870427197976986561" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5b2046abd823" + }, + { + "_tag": "ByteArray", + "bytearray": "2fee37b52df8ae5f3be8" + }, + { + "_tag": "ByteArray", + "bytearray": "6eff40ef9d907ac6ac93" + } + ] + } + } + ] + }, + "cborHex": "bf1b13e619a0e4a75341d8669f1b8367c99c925ddf369f4cc73b73e9d10c01bfa372e91f1ba8eb6686ff810f641baabdef1fc0ed55ca1b7d153d4cd1145029ffff1b6b3c8b11652942a7d8669f1b5d62f75ab331564780ff1beeab874f59e9f3704598c54a98771bf4099abbdc894c57d8669f1bdce57b64dfab80839f1b375a2d125d049de3ffff1bff7fec48c8430d8bd8669f1b96db83f14c29c3c19f465b2046abd8234a2fee37b52df8ae5f3be84a6eff40ef9d907ac6ac93ffffff", + "cborBytes": [ + 191, 27, 19, 230, 25, 160, 228, 167, 83, 65, 216, 102, 159, 27, 131, 103, 201, 156, 146, 93, 223, 54, 159, 76, + 199, 59, 115, 233, 209, 12, 1, 191, 163, 114, 233, 31, 27, 168, 235, 102, 134, 255, 129, 15, 100, 27, 170, 189, + 239, 31, 192, 237, 85, 202, 27, 125, 21, 61, 76, 209, 20, 80, 41, 255, 255, 27, 107, 60, 139, 17, 101, 41, 66, + 167, 216, 102, 159, 27, 93, 98, 247, 90, 179, 49, 86, 71, 128, 255, 27, 238, 171, 135, 79, 89, 233, 243, 112, 69, + 152, 197, 74, 152, 119, 27, 244, 9, 154, 187, 220, 137, 76, 87, 216, 102, 159, 27, 220, 229, 123, 100, 223, 171, + 128, 131, 159, 27, 55, 90, 45, 18, 93, 4, 157, 227, 255, 255, 27, 255, 127, 236, 72, 200, 67, 13, 139, 216, 102, + 159, 27, 150, 219, 131, 241, 76, 41, 195, 193, 159, 70, 91, 32, 70, 171, 216, 35, 74, 47, 238, 55, 181, 45, 248, + 174, 95, 59, 232, 74, 110, 255, 64, 239, 157, 144, 122, 198, 172, 147, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3418, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6156886088407087108" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3580001248924227136" + } + } + } + ] + }, + "cborHex": "bf1b5571a746de0c78041b31aeb82b11955640ff", + "cborBytes": [191, 27, 85, 113, 167, 70, 222, 12, 120, 4, 27, 49, 174, 184, 43, 17, 149, 86, 64, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3419, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "016f06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85f8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11374536530314434035" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf43016f06411b4285f8d8669f1b9dda78b59e1895f380ffff", + "cborBytes": [ + 191, 67, 1, 111, 6, 65, 27, 66, 133, 248, 216, 102, 159, 27, 157, 218, 120, 181, 158, 24, 149, 243, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3420, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551596" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b93a04" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "017d02" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17253466037490389047" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb070102" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04b5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9caa82fa359ca8b931ceb6a1" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff0d8669f1bffffffffffffffec9f43b93a041bfffffffffffffff4ffff43017d02bf1bef709ff2c4e1903744fb070102ff4204b54c9caa82fa359ca8b931ceb6a1ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 240, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 236, 159, + 67, 185, 58, 4, 27, 255, 255, 255, 255, 255, 255, 255, 244, 255, 255, 67, 1, 125, 2, 191, 27, 239, 112, 159, 242, + 196, 225, 144, 55, 68, 251, 7, 1, 2, 255, 66, 4, 181, 76, 156, 170, 130, 250, 53, 156, 168, 185, 49, 206, 182, + 161, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3421, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "252322284432965644" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "270e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7993402" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8abab4a194" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2e7d8ab17c9492" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9a983a41da0e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13736275394767876966" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11559851919193446707" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23545a6781103ef874" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17262031106298787312" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12045265444428812256" + } + } + } + ] + }, + "cborHex": "bf1b03806dc7e48ac00cbf42270e44c7993402458abab4a194472e7d8ab17c949247a9a983a41da0e31bbea10db19213f366ff1ba06cd812e3a499334923545a6781103ef8741bef8f0dd540aeb5f01ba729611a68778fe0ff", + "cborBytes": [ + 191, 27, 3, 128, 109, 199, 228, 138, 192, 12, 191, 66, 39, 14, 68, 199, 153, 52, 2, 69, 138, 186, 180, 161, 148, + 71, 46, 125, 138, 177, 124, 148, 146, 71, 169, 169, 131, 164, 29, 160, 227, 27, 190, 161, 13, 177, 146, 19, 243, + 102, 255, 27, 160, 108, 216, 18, 227, 164, 153, 51, 73, 35, 84, 90, 103, 129, 16, 62, 248, 116, 27, 239, 143, 13, + 213, 64, 174, 181, 240, 27, 167, 41, 97, 26, 104, 119, 143, 224, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3422, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0407" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa60" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + }, + "cborHex": "bf4204071042fa6003ff", + "cborBytes": [191, 66, 4, 7, 16, 66, 250, 96, 3, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3423, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15028164017606058290" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8123114945854294145" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16048530261178965635" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18023373910815784676" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a944d07a34eff" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffabf081bd08ec38d27b761321b70bb1a01514fc8811bdeb7d53e68adde831bfa1fe3147837bee4475a944d07a34effffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 250, 191, 8, 27, 208, 142, 195, 141, 39, 183, 97, 50, 27, 112, 187, + 26, 1, 81, 79, 200, 129, 27, 222, 183, 213, 62, 104, 173, 222, 131, 27, 250, 31, 227, 20, 120, 55, 190, 228, 71, + 90, 148, 77, 7, 163, 78, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3424, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1889778225212785826" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2908298156686743945" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "74dadd2707" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5310987351593139114" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb230ca3a4debc3eae" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5564299065606894247" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10122967150327860045" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7637598541546254658" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e828b89a03a2b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16451952727116407505" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c03dc" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2436138384002144327" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6446551642508335693" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15163963414169899312" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3d4ae93d233c3acf2996c2c0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18312847111769024605" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4650acb2705cb8" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9047429668163854685" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16866533234654694596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13619600696750844798" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6383783956512991579" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "684f56b000" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13838400308947426740" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8573296445820987190" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16744377441453613045" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "309a4fb3766ab731786f35bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6291751876283428339" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e0efc79860b57d9cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10020562744936334185" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "833f73902b0e41128924018a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3837506268405022891" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db4d887c06de694c39f0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7368927660557012264" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17605553846971478147" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "be26f0fef516f192f5" + }, + { + "_tag": "ByteArray", + "bytearray": "de65" + }, + { + "_tag": "ByteArray", + "bytearray": "c7c0500ba276eea90d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18161601246918510203" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18280645885724585499" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1a39d7488a1384a2bf1b285c59c3c23c99894574dadd27071b49b46adb824d3baa49eb230ca3a4debc3eae1b4d385c84ed8972a71b8c7c00fd4c3d8b4d1b69fe336865e7f142477e828b89a03a2b1be45113d6d14ae2d1433c03dcff1b21cee6f3fa245847bf1b5976c09045eb9a4d41001bd2713862109dd1304c3d4ae93d233c3acf2996c2c01bfe244d6c2b07e85d474650acb2705cb8ff1b7d8eed590d3ca15d1bea11f69d3be9ccc41bbd028aac887f2b7ed8669f1b5897c1af8acb695b9f45684f56b0001bc00bdfc312779db41b76fa77b1b7476736ffff1be85ffa9146e81ff5bf4c309a4fb3766ab731786f35bf1b5750caff10c56df3494e0efc79860b57d9cc1b8b1030b9ad7183694c833f73902b0e41128924018a1b35418f9e7f9dc0ab4adb4d887c06de694c39f01b6643b0aa3f0d0d28ff1bf4537df212bf30839f49be26f0fef516f192f542de6549c7c0500ba276eea90d1bfc0af81c1ade867b1bfdb1e693fb51ee1bffff", + "cborBytes": [ + 191, 27, 26, 57, 215, 72, 138, 19, 132, 162, 191, 27, 40, 92, 89, 195, 194, 60, 153, 137, 69, 116, 218, 221, 39, + 7, 27, 73, 180, 106, 219, 130, 77, 59, 170, 73, 235, 35, 12, 163, 164, 222, 188, 62, 174, 27, 77, 56, 92, 132, + 237, 137, 114, 167, 27, 140, 124, 0, 253, 76, 61, 139, 77, 27, 105, 254, 51, 104, 101, 231, 241, 66, 71, 126, 130, + 139, 137, 160, 58, 43, 27, 228, 81, 19, 214, 209, 74, 226, 209, 67, 60, 3, 220, 255, 27, 33, 206, 230, 243, 250, + 36, 88, 71, 191, 27, 89, 118, 192, 144, 69, 235, 154, 77, 65, 0, 27, 210, 113, 56, 98, 16, 157, 209, 48, 76, 61, + 74, 233, 61, 35, 60, 58, 207, 41, 150, 194, 192, 27, 254, 36, 77, 108, 43, 7, 232, 93, 71, 70, 80, 172, 178, 112, + 92, 184, 255, 27, 125, 142, 237, 89, 13, 60, 161, 93, 27, 234, 17, 246, 157, 59, 233, 204, 196, 27, 189, 2, 138, + 172, 136, 127, 43, 126, 216, 102, 159, 27, 88, 151, 193, 175, 138, 203, 105, 91, 159, 69, 104, 79, 86, 176, 0, 27, + 192, 11, 223, 195, 18, 119, 157, 180, 27, 118, 250, 119, 177, 183, 71, 103, 54, 255, 255, 27, 232, 95, 250, 145, + 70, 232, 31, 245, 191, 76, 48, 154, 79, 179, 118, 106, 183, 49, 120, 111, 53, 191, 27, 87, 80, 202, 255, 16, 197, + 109, 243, 73, 78, 14, 252, 121, 134, 11, 87, 217, 204, 27, 139, 16, 48, 185, 173, 113, 131, 105, 76, 131, 63, 115, + 144, 43, 14, 65, 18, 137, 36, 1, 138, 27, 53, 65, 143, 158, 127, 157, 192, 171, 74, 219, 77, 136, 124, 6, 222, + 105, 76, 57, 240, 27, 102, 67, 176, 170, 63, 13, 13, 40, 255, 27, 244, 83, 125, 242, 18, 191, 48, 131, 159, 73, + 190, 38, 240, 254, 245, 22, 241, 146, 245, 66, 222, 101, 73, 199, 192, 80, 11, 162, 118, 238, 169, 13, 27, 252, + 10, 248, 28, 26, 222, 134, 123, 27, 253, 177, 230, 147, 251, 81, 238, 27, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3425, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4639366835555756976" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "115b5c85ff" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5560782217496716452" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11168036692130235043" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15955104014374291656" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8512538609168830449" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2558401271432094025" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12318733989604377067" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2503581240651480384" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "610669917348430984" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14651972372412179254" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "42546cfaafb13ce6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5242945498914521685" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13854999446698371402" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3b2c62" + }, + { + "_tag": "ByteArray", + "bytearray": "489a8697" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18421012161321303482" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9182831456035111830" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1996026291297250495" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12820079705140468743" + } + }, + { + "_tag": "ByteArray", + "bytearray": "be956a6ae2ab18cc977e35" + }, + { + "_tag": "ByteArray", + "bytearray": "8ed16df43f5ace476b745e" + } + ] + } + } + ] + }, + "cborHex": "bf1b4062578e78076bb045115b5c85ff1b4d2bddf6eb3364a49f1b9afcd63360f382a31bdd6bea913b3048c8ff1b76229cc3804e4ff11b23814466c09e21491baaf4ef4bcce641ebd8669f1b22be81dfb35cfd409f1b0879890dea920488ffff1bcb56433e447723369f4842546cfaafb13ce61b48c2af27278882551bc046d896ffb0a94a433b2c6244489a8697ff1bffa494f646b4fdba9f1b7f6ff88e794183961b1bb34f56271cecbf1bb1ea129171179c074bbe956a6ae2ab18cc977e354b8ed16df43f5ace476b745effff", + "cborBytes": [ + 191, 27, 64, 98, 87, 142, 120, 7, 107, 176, 69, 17, 91, 92, 133, 255, 27, 77, 43, 221, 246, 235, 51, 100, 164, + 159, 27, 154, 252, 214, 51, 96, 243, 130, 163, 27, 221, 107, 234, 145, 59, 48, 72, 200, 255, 27, 118, 34, 156, + 195, 128, 78, 79, 241, 27, 35, 129, 68, 102, 192, 158, 33, 73, 27, 170, 244, 239, 75, 204, 230, 65, 235, 216, 102, + 159, 27, 34, 190, 129, 223, 179, 92, 253, 64, 159, 27, 8, 121, 137, 13, 234, 146, 4, 136, 255, 255, 27, 203, 86, + 67, 62, 68, 119, 35, 54, 159, 72, 66, 84, 108, 250, 175, 177, 60, 230, 27, 72, 194, 175, 39, 39, 136, 130, 85, 27, + 192, 70, 216, 150, 255, 176, 169, 74, 67, 59, 44, 98, 68, 72, 154, 134, 151, 255, 27, 255, 164, 148, 246, 70, 180, + 253, 186, 159, 27, 127, 111, 248, 142, 121, 65, 131, 150, 27, 27, 179, 79, 86, 39, 28, 236, 191, 27, 177, 234, 18, + 145, 113, 23, 156, 7, 75, 190, 149, 106, 106, 226, 171, 24, 204, 151, 126, 53, 75, 142, 209, 109, 244, 63, 90, + 206, 71, 107, 116, 94, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3426, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0102255ddef91fff743f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "ByteArray", + "bytearray": "23e06590c95b2bfd183a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10262979060735925408" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a0c6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "93ff" + } + } + ] + }, + "cborHex": "bf4a0102255ddef91fff743fd8669f1bfffffffffffffff79f0f4a23e06590c95b2bfd183a1b8e6d6d14846fdca0ffff42a0c64293ffff", + "cborBytes": [ + 191, 74, 1, 2, 37, 93, 222, 249, 31, 255, 116, 63, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 247, 159, + 15, 74, 35, 224, 101, 144, 201, 91, 43, 253, 24, 58, 27, 142, 109, 109, 20, 132, 111, 220, 160, 255, 255, 66, 160, + 198, 66, 147, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3427, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "529248494151635959" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11895822119180080311" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6673016863217111748" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + }, + "cborHex": "bf0abf1b075844b38bd193f71ba5167330ccf694b7ff1b5c9b517b603f52c410ff", + "cborBytes": [ + 191, 10, 191, 27, 7, 88, 68, 179, 139, 209, 147, 247, 27, 165, 22, 115, 48, 204, 246, 148, 183, 255, 27, 92, 155, + 81, 123, 96, 63, 82, 196, 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3428, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9115812779433729842" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2032987817206769806" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11589751085478256691" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41a082975b9d6cbc7b61945a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fdcb194746b5922502a875e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4fe2b88a5133040a34a3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10164794291472074662" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9377407893102823242" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5508155344293683642" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b7e81df6cdd1d1f329f1b1c369fa6054e688e1ba0d7113505212033ff4c41a082975b9d6cbc7b61945a4c5fdcb194746b5922502a875e4a4fe2b88a5133040a34a3d8669f1b8d109a8d7e1c87a69f1b82233ecb8e56874a1b4c70e61a284b61baffffff", + "cborBytes": [ + 191, 27, 126, 129, 223, 108, 221, 29, 31, 50, 159, 27, 28, 54, 159, 166, 5, 78, 104, 142, 27, 160, 215, 17, 53, 5, + 33, 32, 51, 255, 76, 65, 160, 130, 151, 91, 157, 108, 188, 123, 97, 148, 90, 76, 95, 220, 177, 148, 116, 107, 89, + 34, 80, 42, 135, 94, 74, 79, 226, 184, 138, 81, 51, 4, 10, 52, 163, 216, 102, 159, 27, 141, 16, 154, 141, 126, 28, + 135, 166, 159, 27, 130, 35, 62, 203, 142, 86, 135, 74, 27, 76, 112, 230, 26, 40, 75, 97, 186, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3429, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17335730814218099120" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fcc7f2130925429f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d7a9a3" + } + } + ] + }, + "cborHex": "bf1bf094e353af4359b09f12ff490fcc7f2130925429f543d7a9a3ff", + "cborBytes": [ + 191, 27, 240, 148, 227, 83, 175, 67, 89, 176, 159, 18, 255, 73, 15, 204, 127, 33, 48, 146, 84, 41, 245, 67, 215, + 169, 163, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3430, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "466ff242119c02bce457" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "10faf2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "740500" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb543607" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10365862052357211937" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80c2ff9ea0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4dcee778fcb" + } + } + ] + }, + "cborHex": "bf4a466ff242119c02bce457bf4310faf24374050044fb5436071b8fdaf09dad740721ff4259ff064580c2ff9ea046a4dcee778fcbff", + "cborBytes": [ + 191, 74, 70, 111, 242, 66, 17, 156, 2, 188, 228, 87, 191, 67, 16, 250, 242, 67, 116, 5, 0, 68, 251, 84, 54, 7, 27, + 143, 218, 240, 157, 173, 116, 7, 33, 255, 66, 89, 255, 6, 69, 128, 194, 255, 158, 160, 70, 164, 220, 238, 119, + 143, 203, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3431, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1983412250332725764" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4605985331509070431" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4615137193994987320" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "019c6fa561ee4f482563" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16178133122128322314" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14e4602b6865d85d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11516107114654062689" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "234b7a4e56fbcb46" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8575864983373524442" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "837871" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7624146192922128725" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f02bf5daeb57761" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9975656004330694069" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16798341956879589612" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5953760958067875158" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7604102352486547174" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16101374618499024366" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18114781283446921703" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1439106283322242555" + } + }, + { + "_tag": "ByteArray", + "bytearray": "613d49b706954df45bcd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7177466278488095799" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12942907876076922781" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b1b867eeee03d82041b3febbf4165420a5f1b400c42d36dc3a738bf4a019c6fa561ee4f4825631be084465bf1709f0a4814e4602b6865d85d1b9fd16e67e44dd86148234b7a4e56fbcb461b770397c3f7b0adda438378711b69ce689168c53155488f02bf5daeb577611b8a70a6485b9fa5b541e91be91fb302235920ecff1b52a0020c07399d56a01b698732cd23ac3ee6d8669f1bdf7392e8232005ee9f1bfb64a199dfbf99e71b13f8bb8a3b7475fb4a613d49b706954df45bcd1b639b7b8d6ca0bc37ffff1bb39e72238a2ba79d80ff", + "cborBytes": [ + 191, 27, 27, 134, 126, 238, 224, 61, 130, 4, 27, 63, 235, 191, 65, 101, 66, 10, 95, 27, 64, 12, 66, 211, 109, 195, + 167, 56, 191, 74, 1, 156, 111, 165, 97, 238, 79, 72, 37, 99, 27, 224, 132, 70, 91, 241, 112, 159, 10, 72, 20, 228, + 96, 43, 104, 101, 216, 93, 27, 159, 209, 110, 103, 228, 77, 216, 97, 72, 35, 75, 122, 78, 86, 251, 203, 70, 27, + 119, 3, 151, 195, 247, 176, 173, 218, 67, 131, 120, 113, 27, 105, 206, 104, 145, 104, 197, 49, 85, 72, 143, 2, + 191, 93, 174, 181, 119, 97, 27, 138, 112, 166, 72, 91, 159, 165, 181, 65, 233, 27, 233, 31, 179, 2, 35, 89, 32, + 236, 255, 27, 82, 160, 2, 12, 7, 57, 157, 86, 160, 27, 105, 135, 50, 205, 35, 172, 62, 230, 216, 102, 159, 27, + 223, 115, 146, 232, 35, 32, 5, 238, 159, 27, 251, 100, 161, 153, 223, 191, 153, 231, 27, 19, 248, 187, 138, 59, + 116, 117, 251, 74, 97, 61, 73, 183, 6, 149, 77, 244, 91, 205, 27, 99, 155, 123, 141, 108, 160, 188, 55, 255, 255, + 27, 179, 158, 114, 35, 138, 43, 167, 157, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3432, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c82ce7f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551602" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e68f07debc398d904" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11113321829151159578" + } + } + } + ] + }, + "cborHex": "bf04447c82ce7f1bfffffffffffffff2493e68f07debc398d9041bfffffffffffffffb1b9a3a73529d26351aff", + "cborBytes": [ + 191, 4, 68, 124, 130, 206, 127, 27, 255, 255, 255, 255, 255, 255, 255, 242, 73, 62, 104, 240, 125, 235, 195, 152, + 217, 4, 27, 255, 255, 255, 255, 255, 255, 255, 251, 27, 154, 58, 115, 82, 157, 38, 53, 26, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3433, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6801960044534596605" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2440aa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f587" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "889297833481720098" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5e656a9f46e283fdbf41e1432440aa42f5871b0c576baaf833d122ffff", + "cborBytes": [ + 191, 27, 94, 101, 106, 159, 70, 226, 131, 253, 191, 65, 225, 67, 36, 64, 170, 66, 245, 135, 27, 12, 87, 107, 170, + 248, 51, 209, 34, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3434, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "17" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4243630064238021746" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11006681108086135212" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10511311281763923603" + } + }, + { + "_tag": "ByteArray", + "bytearray": "42080b8db436" + }, + { + "_tag": "ByteArray", + "bytearray": "242ecaf8a514" + } + ] + } + } + ] + }, + "cborHex": "bf0941171b3ae4670f49134c729f1b98bf9626e37a19ac1b91dfadeb611836934642080b8db43646242ecaf8a514ffff", + "cborBytes": [ + 191, 9, 65, 23, 27, 58, 228, 103, 15, 73, 19, 76, 114, 159, 27, 152, 191, 150, 38, 227, 122, 25, 172, 27, 145, + 223, 173, 235, 97, 24, 54, 147, 70, 66, 8, 11, 141, 180, 54, 70, 36, 46, 202, 248, 165, 20, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3435, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4794608558296954432" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf418dd8669f1b4289df14b256764080ffff", + "cborBytes": [191, 65, 141, 216, 102, 159, 27, 66, 137, 223, 20, 178, 86, 118, 64, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3436, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2970110120501101908" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4946918853444601135" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23f47889b270330bcf62a4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10785907179161038132" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15631971272325344733" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12084992722799904189" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3881522379515750034" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18249425697715519583" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "81069079911210430" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d56eebe2150" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02b5e53166db34086503cc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfe8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6978810378480717392" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "27af09a07c79d4db1434" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17441129227087542096" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13291470880619450278" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14343512824627509932" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2937f36b1442c554bf1b44a6fc7cc03f852f4b23f47889b270330bcf62a41b95af3d6eea3aad341bd8efeb0cea102ddd1ba7b684da33ab45bd1b35ddf009fac3e6921bfd42fbfb8338005f1b012003e60e601dbeff469d56eebe21504b02b5e53166db34086503cc42dfe8d8669f1b60d9b7105c270e509f4a27af09a07c79d4db14341bf20b569ffe3c77501bb874ca583dc54fa61bc70e64eb372ebaacffffff", + "cborBytes": [ + 191, 27, 41, 55, 243, 107, 20, 66, 197, 84, 191, 27, 68, 166, 252, 124, 192, 63, 133, 47, 75, 35, 244, 120, 137, + 178, 112, 51, 11, 207, 98, 164, 27, 149, 175, 61, 110, 234, 58, 173, 52, 27, 216, 239, 235, 12, 234, 16, 45, 221, + 27, 167, 182, 132, 218, 51, 171, 69, 189, 27, 53, 221, 240, 9, 250, 195, 230, 146, 27, 253, 66, 251, 251, 131, 56, + 0, 95, 27, 1, 32, 3, 230, 14, 96, 29, 190, 255, 70, 157, 86, 238, 190, 33, 80, 75, 2, 181, 229, 49, 102, 219, 52, + 8, 101, 3, 204, 66, 223, 232, 216, 102, 159, 27, 96, 217, 183, 16, 92, 39, 14, 80, 159, 74, 39, 175, 9, 160, 124, + 121, 212, 219, 20, 52, 27, 242, 11, 86, 159, 254, 60, 119, 80, 27, 184, 116, 202, 88, 61, 197, 79, 166, 27, 199, + 14, 100, 235, 55, 46, 186, 172, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3437, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3684585928368573648" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17438534066554524136" + } + } + } + ] + }, + "cborHex": "bf0c41fe1b332247614ccfccd01bf2021e571887d1e8ff", + "cborBytes": [191, 12, 65, 254, 27, 51, 34, 71, 97, 76, 207, 204, 208, 27, 242, 2, 30, 87, 24, 135, 209, 232, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3438, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b47d4d9222" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1563897746584748772" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12871593355322815885" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23e27e9982fdc300" + } + } + ] + }, + "cborHex": "bf45b47d4d92229f1b15b414b6f237c2e41bb2a115f5c54b758dff41cc4823e27e9982fdc300ff", + "cborBytes": [ + 191, 69, 180, 125, 77, 146, 34, 159, 27, 21, 180, 20, 182, 242, 55, 194, 228, 27, 178, 161, 21, 245, 197, 75, 117, + 141, 255, 65, 204, 72, 35, 226, 126, 153, 130, 253, 195, 0, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3439, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8307821451671071838" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6887151021903724444" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "efa98f" + } + ] + } + } + ] + }, + "cborHex": "bf1b734b4f97f4396c5ed8669f1b5f94135d5f0a3f9c9f43efa98fffffff", + "cborBytes": [ + 191, 27, 115, 75, 79, 151, 244, 57, 108, 94, 216, 102, 159, 27, 95, 148, 19, 93, 95, 10, 63, 156, 159, 67, 239, + 169, 143, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3440, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a7d2e0cb6577dd0059aa450f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0faaf8c0db" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c8c28a050ea329216" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df21a205b2dbdd8a9ec1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b65a391c2530133" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "633e608c8c67caeddeee414d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fc1f6c816c3d4837da6" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "822171c7d3766b00" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5783f4b7b6cc37c2e9ce5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe00" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + } + ] + }, + "cborHex": "bf41039f4ca7d2e0cb6577dd0059aa450fff450faaf8c0dbbf0c494c8c28a050ea3292164adf21a205b2dbdd8a9ec103ff482b65a391c25301334c633e608c8c67caeddeee414d4a6fc1f6c816c3d4837da68048822171c7d3766b004bb5783f4b7b6cc37c2e9ce542fe0002ff", + "cborBytes": [ + 191, 65, 3, 159, 76, 167, 210, 224, 203, 101, 119, 221, 0, 89, 170, 69, 15, 255, 69, 15, 170, 248, 192, 219, 191, + 12, 73, 76, 140, 40, 160, 80, 234, 50, 146, 22, 74, 223, 33, 162, 5, 178, 219, 221, 138, 158, 193, 3, 255, 72, 43, + 101, 163, 145, 194, 83, 1, 51, 76, 99, 62, 96, 140, 140, 103, 202, 237, 222, 238, 65, 77, 74, 111, 193, 246, 200, + 22, 195, 212, 131, 125, 166, 128, 72, 130, 33, 113, 199, 211, 118, 107, 0, 75, 181, 120, 63, 75, 123, 108, 195, + 124, 46, 156, 229, 66, 254, 0, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3441, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "34d61d518489c58b55263333" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9293256781384804595" + } + } + } + ] + }, + "cborHex": "bf4c34d61d518489c58b552633331b80f847ce0cee68f3ff", + "cborBytes": [ + 191, 76, 52, 214, 29, 81, 132, 137, 197, 139, 85, 38, 51, 51, 27, 128, 248, 71, 206, 12, 238, 104, 243, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3442, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16064636503452165849" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "138b856fe0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02fffa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e0573" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14f983" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6314682787156733834" + } + } + } + ] + }, + "cborHex": "bf10bf0f0b1bdef10dc92a0a26d945138b856fe04302fffa08431e05734314f983ff121b57a24289cdc02f8aff", + "cborBytes": [ + 191, 16, 191, 15, 11, 27, 222, 241, 13, 201, 42, 10, 38, 217, 69, 19, 139, 133, 111, 224, 67, 2, 255, 250, 8, 67, + 30, 5, 115, 67, 20, 249, 131, 255, 18, 27, 87, 162, 66, 137, 205, 192, 47, 138, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3443, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2127588064062424192" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c543043ab4a9a67b67" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8579535104671231464" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "27592725c0cb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9072404014508193620" + } + }, + { + "_tag": "ByteArray", + "bytearray": "79dff9107908dab750" + } + ] + } + } + ] + }, + "cborHex": "bf1b1d86b61262cd448049c543043ab4a9a67b671b7710a1b8abec2de89f4627592725c0cb1b7de7a7622f96b7544979dff9107908dab750ffff", + "cborBytes": [ + 191, 27, 29, 134, 182, 18, 98, 205, 68, 128, 73, 197, 67, 4, 58, 180, 169, 166, 123, 103, 27, 119, 16, 161, 184, + 171, 236, 45, 232, 159, 70, 39, 89, 39, 37, 192, 203, 27, 125, 231, 167, 98, 47, 150, 183, 84, 73, 121, 223, 249, + 16, 121, 8, 218, 183, 80, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3444, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9955165027612952227" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe9e549ed1d43f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8978259450ae415" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b8a27d9d90f4306a3bf47fe9e549ed1d43f48c8978259450ae415ffff", + "cborBytes": [ + 191, 27, 138, 39, 217, 217, 15, 67, 6, 163, 191, 71, 254, 158, 84, 158, 209, 212, 63, 72, 200, 151, 130, 89, 69, + 10, 228, 21, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3445, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9548097537483188914" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "22aa202e7ff918" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e0ea8cc2447b63418a120b9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9868511056511087424" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18334011439012513850" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5618fc" + }, + { + "_tag": "ByteArray", + "bytearray": "d5" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9df91b8f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16713320363871540783" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c1ec03b89a44d6de1f74a024" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10899493963895944853" + } + }, + { + "_tag": "ByteArray", + "bytearray": "190e6a02" + } + ] + } + } + ] + }, + "cborHex": "bf1b8481a81f5277aab24722aa202e7ff9184c3e0ea8cc2447b63418a120b99f1b88f3fe85315bb3401bfe6f7e441a4a083a435618fc41d5ff449df91b8f9f1be7f1a451e9dd962f4cc1ec03b89a44d6de1f74a0241b9742c8031d88369544190e6a02ffff", + "cborBytes": [ + 191, 27, 132, 129, 168, 31, 82, 119, 170, 178, 71, 34, 170, 32, 46, 127, 249, 24, 76, 62, 14, 168, 204, 36, 71, + 182, 52, 24, 161, 32, 185, 159, 27, 136, 243, 254, 133, 49, 91, 179, 64, 27, 254, 111, 126, 68, 26, 74, 8, 58, 67, + 86, 24, 252, 65, 213, 255, 68, 157, 249, 27, 143, 159, 27, 231, 241, 164, 81, 233, 221, 150, 47, 76, 193, 236, 3, + 184, 154, 68, 214, 222, 31, 116, 160, 36, 27, 151, 66, 200, 3, 29, 136, 54, 149, 68, 25, 14, 106, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3446, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0606" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4159468247423905166" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "342ccf39" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "307e974893" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e913146c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "347e9a8a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07b2094e67d793" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38990f09331595bf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17854835137196276668" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4347fafd954216de" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "782293cbb44c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "52bbce7601cc7b7e87685a" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff02d132f4ecb7dab722" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4206061b39b966554e37ed8e44342ccf39bf45307e97489344e913146c44347e9a8a4707b2094e67d7934838990f09331595bf1bf7c91df553bf3bbc484347fafd954216de41c546782293cbb44c4b52bbce7601cc7b7e87685aff413541384aff02d132f4ecb7dab722a0ff", + "cborBytes": [ + 191, 66, 6, 6, 27, 57, 185, 102, 85, 78, 55, 237, 142, 68, 52, 44, 207, 57, 191, 69, 48, 126, 151, 72, 147, 68, + 233, 19, 20, 108, 68, 52, 126, 154, 138, 71, 7, 178, 9, 78, 103, 215, 147, 72, 56, 153, 15, 9, 51, 21, 149, 191, + 27, 247, 201, 29, 245, 83, 191, 59, 188, 72, 67, 71, 250, 253, 149, 66, 22, 222, 65, 197, 70, 120, 34, 147, 203, + 180, 76, 75, 82, 187, 206, 118, 1, 204, 123, 126, 135, 104, 90, 255, 65, 53, 65, 56, 74, 255, 2, 209, 50, 244, + 236, 183, 218, 183, 34, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3447, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4381d006" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "04fea1b806" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11801470072271914349" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "620005" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "5d7a899295a6" + }, + { + "_tag": "ByteArray", + "bytearray": "13c1df" + } + ] + } + } + ] + }, + "cborHex": "bf4202f9444381d0064504fea1b8061ba3c73e80fd2bc56d43620005d905089f465d7a899295a64313c1dfffff", + "cborBytes": [ + 191, 66, 2, 249, 68, 67, 129, 208, 6, 69, 4, 254, 161, 184, 6, 27, 163, 199, 62, 128, 253, 43, 197, 109, 67, 98, + 0, 5, 217, 5, 8, 159, 70, 93, 122, 137, 146, 149, 166, 67, 19, 193, 223, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3448, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12234105255025239526" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03710a9d9c9a70edbee46a" + } + } + ] + }, + "cborHex": "bf1ba9c845e90e84e5e64b03710a9d9c9a70edbee46aff", + "cborBytes": [ + 191, 27, 169, 200, 69, 233, 14, 132, 229, 230, 75, 3, 113, 10, 157, 156, 154, 112, 237, 190, 228, 106, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3449, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15026066104754351879" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3260971156238293731" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2005568068813183313" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6531936538407857185" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8464750542952537711" + } + }, + { + "_tag": "ByteArray", + "bytearray": "cd2d9634ef9a40d004" + }, + { + "_tag": "ByteArray", + "bytearray": "2186e877da" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9cca0705e9d3c899e1bfd1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4857123e2477bcdd856ca0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "47adea37177b6f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f6d8377ad4c45c6e1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10789256801852795493" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f20ae1db69b7a8a54526e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6972e88a635e87767e6e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef6b87ab" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "acf385d952286d0b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6466973933554855565" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15117423680869636604" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3212787972843917573" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9b0b0e1a522d76ba5adec6" + }, + { + "_tag": "ByteArray", + "bytearray": "c4e64335ee95" + }, + { + "_tag": "ByteArray", + "bytearray": "cc" + } + ] + } + } + ] + }, + "cborHex": "bf1bd0874f82c16baf07d8669f1b2d414bfd3e60dae39f1b1bd535885a79d9511b5aa619ac8b31ec211b7578d5c548fb1e6f49cd2d9634ef9a40d004452186e877daffff4b9cca0705e9d3c899e1bfd1bf4b4857123e2477bcdd856ca04747adea37177b6f494f6d8377ad4c45c6e11b95bb23e5b8e72a654b8f20ae1db69b7a8a54526e41ad4bc6972e88a635e87767e6e344ef6b87abff48acf385d952286d0bd8669f1b59bf4e87713f6e8d9f1bd1cbe0be015019fc1b2c961da3a40251054b9b0b0e1a522d76ba5adec646c4e64335ee9541ccffffff", + "cborBytes": [ + 191, 27, 208, 135, 79, 130, 193, 107, 175, 7, 216, 102, 159, 27, 45, 65, 75, 253, 62, 96, 218, 227, 159, 27, 27, + 213, 53, 136, 90, 121, 217, 81, 27, 90, 166, 25, 172, 139, 49, 236, 33, 27, 117, 120, 213, 197, 72, 251, 30, 111, + 73, 205, 45, 150, 52, 239, 154, 64, 208, 4, 69, 33, 134, 232, 119, 218, 255, 255, 75, 156, 202, 7, 5, 233, 211, + 200, 153, 225, 191, 209, 191, 75, 72, 87, 18, 62, 36, 119, 188, 221, 133, 108, 160, 71, 71, 173, 234, 55, 23, 123, + 111, 73, 79, 109, 131, 119, 173, 76, 69, 198, 225, 27, 149, 187, 35, 229, 184, 231, 42, 101, 75, 143, 32, 174, 29, + 182, 155, 122, 138, 84, 82, 110, 65, 173, 75, 198, 151, 46, 136, 166, 53, 232, 119, 103, 230, 227, 68, 239, 107, + 135, 171, 255, 72, 172, 243, 133, 217, 82, 40, 109, 11, 216, 102, 159, 27, 89, 191, 78, 135, 113, 63, 110, 141, + 159, 27, 209, 203, 224, 190, 1, 80, 25, 252, 27, 44, 150, 29, 163, 164, 2, 81, 5, 75, 155, 11, 14, 26, 82, 45, + 118, 186, 90, 222, 198, 70, 196, 230, 67, 53, 238, 149, 65, 204, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3450, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "006de1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ffb000406" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "525263343018992367" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b714b4add1637ee395b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6eb0706d04f0101" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14327170819706893623" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1980610521300992171" + } + } + } + ] + }, + "cborHex": "bf43006de1456ffb00040641631b074a1c3a3e2e62ef4a7b714b4add1637ee395b1bfffffffffffffffb48a6eb0706d04f01011bc6d455f3b0f8b53741f21b1b7c8ac6808c00abff", + "cborBytes": [ + 191, 67, 0, 109, 225, 69, 111, 251, 0, 4, 6, 65, 99, 27, 7, 74, 28, 58, 62, 46, 98, 239, 74, 123, 113, 75, 74, + 221, 22, 55, 238, 57, 91, 27, 255, 255, 255, 255, 255, 255, 255, 251, 72, 166, 235, 7, 6, 208, 79, 1, 1, 27, 198, + 212, 85, 243, 176, 248, 181, 55, 65, 242, 27, 27, 124, 138, 198, 128, 140, 0, 171, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3451, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5598805420395579" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "594611513174414545" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7845265714926181306" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d1d1a11ec79eaaf09c3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11366191032273044433" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd0e9f127eccd7e7b1" + } + } + ] + }, + "cborHex": "bf1b0013e415783fcc3b801b08407c05561e54d1a01b6cdffb9a0ab9dbba4a2d1d1a11ec79eaaf09c31b9dbcd285efdd83d149cd0e9f127eccd7e7b1ff", + "cborBytes": [ + 191, 27, 0, 19, 228, 21, 120, 63, 204, 59, 128, 27, 8, 64, 124, 5, 86, 30, 84, 209, 160, 27, 108, 223, 251, 154, + 10, 185, 219, 186, 74, 45, 29, 26, 17, 236, 121, 234, 175, 9, 195, 27, 157, 188, 210, 133, 239, 221, 131, 209, 73, + 205, 14, 159, 18, 126, 204, 215, 231, 177, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3452, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a68dac5e61fe79" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "300101dabac202079d01f8f2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcef00068d982d4403c1ff" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9707784eb166529ce0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15673579969050920537" + } + } + ] + } + } + ] + }, + "cborHex": "bf47a68dac5e61fe794c300101dabac202079d01f8f24bfcef00068d982d4403c1ff9f499707784eb166529ce005131bd983bdf08df54659ffff", + "cborBytes": [ + 191, 71, 166, 141, 172, 94, 97, 254, 121, 76, 48, 1, 1, 218, 186, 194, 2, 7, 157, 1, 248, 242, 75, 252, 239, 0, 6, + 141, 152, 45, 68, 3, 193, 255, 159, 73, 151, 7, 120, 78, 177, 102, 82, 156, 224, 5, 19, 27, 217, 131, 189, 240, + 141, 245, 70, 89, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3453, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "654472847715466259" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e5" + }, + { + "_tag": "ByteArray", + "bytearray": "29afed04fc9d9947dde8" + }, + { + "_tag": "ByteArray", + "bytearray": "2e9bdb08a457" + }, + { + "_tag": "ByteArray", + "bytearray": "a85a958df2" + }, + { + "_tag": "ByteArray", + "bytearray": "d1a77dcbd84797c9f3bc" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17506145614863595381" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5102077362202049927" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1190245139312991475" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3324192959816719533" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b091527966337fc139f41e54a29afed04fc9d9947dde8462e9bdb08a45745a85a958df24ad1a77dcbd84797c9f3bcff1bf2f252af6834f7759f1b46ce3854369d7d871b108499a5e462dcf31b2e21e7e276badcadffff", + "cborBytes": [ + 191, 27, 9, 21, 39, 150, 99, 55, 252, 19, 159, 65, 229, 74, 41, 175, 237, 4, 252, 157, 153, 71, 221, 232, 70, 46, + 155, 219, 8, 164, 87, 69, 168, 90, 149, 141, 242, 74, 209, 167, 125, 203, 216, 71, 151, 201, 243, 188, 255, 27, + 242, 242, 82, 175, 104, 52, 247, 117, 159, 27, 70, 206, 56, 84, 54, 157, 125, 135, 27, 16, 132, 153, 165, 228, 98, + 220, 243, 27, 46, 33, 231, 226, 118, 186, 220, 173, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3454, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01f0" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9383294788693765559" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15725326320582107193" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12020228694276289240" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc2e702b55" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2dfd00ce" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12704983863059883114" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dc1601d16ec2c6d4c296c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16944087010638319905" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12686585513175660039" + } + } + ] + } + } + ] + }, + "cborHex": "bf4201f0bf1b823828e53eddadb71bda3b94f8e365a0391ba6d06e4fc14bb2d845dc2e702b55ff442dfd00ced8669f1bb0512b8272c1246a9f4bdc1601d16ec2c6d4c296c41beb257d5cd06851211bb00fce4ecd73b607ffffff", + "cborBytes": [ + 191, 66, 1, 240, 191, 27, 130, 56, 40, 229, 62, 221, 173, 183, 27, 218, 59, 148, 248, 227, 101, 160, 57, 27, 166, + 208, 110, 79, 193, 75, 178, 216, 69, 220, 46, 112, 43, 85, 255, 68, 45, 253, 0, 206, 216, 102, 159, 27, 176, 81, + 43, 130, 114, 193, 36, 106, 159, 75, 220, 22, 1, 209, 110, 194, 198, 212, 194, 150, 196, 27, 235, 37, 125, 92, + 208, 104, 81, 33, 27, 176, 15, 206, 78, 205, 115, 182, 7, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3455, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6588159424687500038" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1654811990163897806" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "312e5d20fa712bba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2742570414930776885" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "084ea002608137a1dd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3855586135497147627" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c52d695d50c2418cb5c1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5424387360340552274" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "957874232010199830" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9194303155924285085" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afbea6d1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9960840265458495131" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1c6260639a715" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9806056453885534556" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3dece91d6c2a05f48c8b9f24" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bc52aad78ca9a0" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5b6dd8175823eb06bf1b16f712bccbc6bdce48312e5d20fa712bba1b260f9142f971d33549084ea002608137a1dd1b3581cb29973a84eb4ac52d695d50c2418cb5c11b4b474b908937aa521b0d4b0d89fa77d3161b7f98ba01be1eb69d44afbea6d11b8a3c0372570fae9b47a1c6260639a715ff1b88161c63dd46215cbf4c3dece91d6c2a05f48c8b9f2447bc52aad78ca9a0ffff", + "cborBytes": [ + 191, 27, 91, 109, 216, 23, 88, 35, 235, 6, 191, 27, 22, 247, 18, 188, 203, 198, 189, 206, 72, 49, 46, 93, 32, 250, + 113, 43, 186, 27, 38, 15, 145, 66, 249, 113, 211, 53, 73, 8, 78, 160, 2, 96, 129, 55, 161, 221, 27, 53, 129, 203, + 41, 151, 58, 132, 235, 74, 197, 45, 105, 93, 80, 194, 65, 140, 181, 193, 27, 75, 71, 75, 144, 137, 55, 170, 82, + 27, 13, 75, 13, 137, 250, 119, 211, 22, 27, 127, 152, 186, 1, 190, 30, 182, 157, 68, 175, 190, 166, 209, 27, 138, + 60, 3, 114, 87, 15, 174, 155, 71, 161, 198, 38, 6, 57, 167, 21, 255, 27, 136, 22, 28, 99, 221, 70, 33, 92, 191, + 76, 61, 236, 233, 29, 108, 42, 5, 244, 140, 139, 159, 36, 71, 188, 82, 170, 215, 140, 169, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3456, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8266429613538746627" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a30d182080f2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fb4f00c5c" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13562492104186388910" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15281636429837990127" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3584344462045325630" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3430555000312532851" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13885557976017831169" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1080771152224099074" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b800b172261281bc4a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15616097300617772729" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14958464098738432683" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17384096190918916948" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "140e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10311361665597765261" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3eab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c562c438f65" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "842642df10" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11760186740103413939" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9efcd1ca52791040f7f719" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "435edbb7a51d0ed1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f47f0117d14" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "566e22df337b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a7212b399c5530b6364a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8408963084481708411" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17724166655135501580" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "167841205665559757" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08d296" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1075018455426100695" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7625334685493856341" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37bc11d987ad360054" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11549640306603928867" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c21a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16347605400777584837" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b12f72ef65" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b72b841efa3bf2103bf46a30d182080f2451fb4f00c5cff1bbc37a6b62b11e1aebf1bd413475e0b2978ef1b31be264c2cd9a93e426a881b2f9bc798d0118f73ff1bc0b369690ca285019f1b0effaba303ce9b0249b800b172261281bc4aff1bd8b785c1dd423eb91bcf9723d82ebceaab1bf140b76178f17b54bf42140e1b8f1950cd8c88f68d423eab463c562c438f6545842642df101ba3349388301f80b34b9efcd1ca52791040f7f71948435edbb7a51d0ed1469f47f0117d1446566e22df337b4aa7212b399c5530b6364a1b74b2a35f6be7c17bff1bf5f8e3aa8b2ccd0cbf1b02544aaff25e74cd4308d2961b0eeb3b96eaa96dd741301b69d2a17ee65388554937bc11d987ad3600541ba04890aa8ea92d2342c21a1be2de5c7fa99af0c545b12f72ef65ffff", + "cborBytes": [ + 191, 27, 114, 184, 65, 239, 163, 191, 33, 3, 191, 70, 163, 13, 24, 32, 128, 242, 69, 31, 180, 240, 12, 92, 255, + 27, 188, 55, 166, 182, 43, 17, 225, 174, 191, 27, 212, 19, 71, 94, 11, 41, 120, 239, 27, 49, 190, 38, 76, 44, 217, + 169, 62, 66, 106, 136, 27, 47, 155, 199, 152, 208, 17, 143, 115, 255, 27, 192, 179, 105, 105, 12, 162, 133, 1, + 159, 27, 14, 255, 171, 163, 3, 206, 155, 2, 73, 184, 0, 177, 114, 38, 18, 129, 188, 74, 255, 27, 216, 183, 133, + 193, 221, 66, 62, 185, 27, 207, 151, 35, 216, 46, 188, 234, 171, 27, 241, 64, 183, 97, 120, 241, 123, 84, 191, 66, + 20, 14, 27, 143, 25, 80, 205, 140, 136, 246, 141, 66, 62, 171, 70, 60, 86, 44, 67, 143, 101, 69, 132, 38, 66, 223, + 16, 27, 163, 52, 147, 136, 48, 31, 128, 179, 75, 158, 252, 209, 202, 82, 121, 16, 64, 247, 247, 25, 72, 67, 94, + 219, 183, 165, 29, 14, 209, 70, 159, 71, 240, 17, 125, 20, 70, 86, 110, 34, 223, 51, 123, 74, 167, 33, 43, 57, + 156, 85, 48, 182, 54, 74, 27, 116, 178, 163, 95, 107, 231, 193, 123, 255, 27, 245, 248, 227, 170, 139, 44, 205, + 12, 191, 27, 2, 84, 74, 175, 242, 94, 116, 205, 67, 8, 210, 150, 27, 14, 235, 59, 150, 234, 169, 109, 215, 65, 48, + 27, 105, 210, 161, 126, 230, 83, 136, 85, 73, 55, 188, 17, 217, 135, 173, 54, 0, 84, 27, 160, 72, 144, 170, 142, + 169, 45, 35, 66, 194, 26, 27, 226, 222, 92, 127, 169, 154, 240, 197, 69, 177, 47, 114, 239, 101, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3457, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1931289567513580474" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b4ffa7a0b19eb6" + }, + { + "_tag": "ByteArray", + "bytearray": "c7fd1861669b3ff4" + }, + { + "_tag": "ByteArray", + "bytearray": "57b346e46500c0b742" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14223585751103268531" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8506265003167283303" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4425236718205083174" + } + }, + { + "_tag": "ByteArray", + "bytearray": "244d7790ce0b4da5c031" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3771635589821447660" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9099661874351650375" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10008866792690496509" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2348ef8e130d3d5366" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13447910253423934256" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5388640529810845648" + } + } + } + ] + }, + "cborHex": "bf1b1acd51a1161093ba9f47b4ffa7a0b19eb648c7fd1861669b3ff44957b346e46500c0b7421bc56453e17ed166b3ff1b760c52f3c71f78679f1b3d6999596ba11e264a244d7790ce0b4da5c0311b34578a9601873decff1b7e487e433ce5364741e91b8ae6a351968533fd492348ef8e130d3d53661bbaa093201aaabb301b4ac84c02f9a5efd0ff", + "cborBytes": [ + 191, 27, 26, 205, 81, 161, 22, 16, 147, 186, 159, 71, 180, 255, 167, 160, 177, 158, 182, 72, 199, 253, 24, 97, + 102, 155, 63, 244, 73, 87, 179, 70, 228, 101, 0, 192, 183, 66, 27, 197, 100, 83, 225, 126, 209, 102, 179, 255, 27, + 118, 12, 82, 243, 199, 31, 120, 103, 159, 27, 61, 105, 153, 89, 107, 161, 30, 38, 74, 36, 77, 119, 144, 206, 11, + 77, 165, 192, 49, 27, 52, 87, 138, 150, 1, 135, 61, 236, 255, 27, 126, 72, 126, 67, 60, 229, 54, 71, 65, 233, 27, + 138, 230, 163, 81, 150, 133, 51, 253, 73, 35, 72, 239, 142, 19, 13, 61, 83, 102, 27, 186, 160, 147, 32, 26, 170, + 187, 48, 27, 74, 200, 76, 2, 249, 165, 239, 208, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3458, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5733910535016473571" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16972547138412542840" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6572344833693267414" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11335199680922781529" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15926731963383350581" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c53" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9712986918604218656" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16783268620524863116" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4748867874878973017" + } + } + } + ] + }, + "cborHex": "bf1b4f92f1408586e3e31beb8a99b2aea6fb781b5b35a8cdf1a935d6d8669f1b9d4eb80da78607599f1bdd071e5656530535420c53ffff1b86cb76240f6ba120a01be8ea25e388583e8c1b41e75e2bef6ce459ff", + "cborBytes": [ + 191, 27, 79, 146, 241, 64, 133, 134, 227, 227, 27, 235, 138, 153, 178, 174, 166, 251, 120, 27, 91, 53, 168, 205, + 241, 169, 53, 214, 216, 102, 159, 27, 157, 78, 184, 13, 167, 134, 7, 89, 159, 27, 221, 7, 30, 86, 86, 83, 5, 53, + 66, 12, 83, 255, 255, 27, 134, 203, 118, 36, 15, 107, 161, 32, 160, 27, 232, 234, 37, 227, 136, 88, 62, 140, 27, + 65, 231, 94, 43, 239, 108, 228, 89, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3459, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12969924388798670768" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "82d01cb30e51" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe0104" + } + } + ] + }, + "cborHex": "bf1bb3fe6d83960527b04682d01cb30e51411f43fe0104ff", + "cborBytes": [ + 191, 27, 179, 254, 109, 131, 150, 5, 39, 176, 70, 130, 208, 28, 179, 14, 81, 65, 31, 67, 254, 1, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3460, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "648c27ed85c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2315511569088761850" + } + } + } + ] + }, + "cborHex": "bf46648c27ed85c81b2022598104d7cffaff", + "cborBytes": [191, 70, 100, 140, 39, 237, 133, 200, 27, 32, 34, 89, 129, 4, 215, 207, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3461, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13414317292712688663" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1bba293a817084fc17a0ff", + "cborBytes": [191, 27, 186, 41, 58, 129, 112, 132, 252, 23, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3462, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d90fa0360ae6d4a00a2d3be" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9801000574439692969" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10738507983762905592" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb44ab61e09ef04650bb1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7c687158d92a1a50e4" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c9d90fa0360ae6d4a00a2d3bebf1b8804261832e09aa91b9506d81dbde259f84bfb44ab61e09ef04650bb1b497c687158d92a1a50e4ffff", + "cborBytes": [ + 191, 76, 157, 144, 250, 3, 96, 174, 109, 74, 0, 162, 211, 190, 191, 27, 136, 4, 38, 24, 50, 224, 154, 169, 27, + 149, 6, 216, 29, 189, 226, 89, 248, 75, 251, 68, 171, 97, 224, 158, 240, 70, 80, 187, 27, 73, 124, 104, 113, 88, + 217, 42, 26, 80, 228, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3463, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11215259228589642797" + } + }, + { + "_tag": "ByteArray", + "bytearray": "07f6f0a8391935" + }, + { + "_tag": "ByteArray", + "bytearray": "b039be9b6d" + }, + { + "_tag": "ByteArray", + "bytearray": "f4" + } + ] + } + } + ] + }, + "cborHex": "bf41029f1b9ba49ad8f001d42d4707f6f0a839193545b039be9b6d41f4ffff", + "cborBytes": [ + 191, 65, 2, 159, 27, 155, 164, 154, 216, 240, 1, 212, 45, 71, 7, 246, 240, 168, 57, 25, 53, 69, 176, 57, 190, 155, + 109, 65, 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3464, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "758688626358554508" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2081930677467554211" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "10daa1a75eb38d705af3a815" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4834041186795079806" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17064021603516585895" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10908161289871530871" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4517394972912923258" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0a876749353b0f8ca01b1ce480ebad7121a34c10daa1a75eb38d705af3a8151b4315f6d8f887487ed8669f1beccf953d453297a79f1b976192e633759b771b3eb102cb2e9c327affffff", + "cborBytes": [ + 191, 27, 10, 135, 103, 73, 53, 59, 15, 140, 160, 27, 28, 228, 128, 235, 173, 113, 33, 163, 76, 16, 218, 161, 167, + 94, 179, 141, 112, 90, 243, 168, 21, 27, 67, 21, 246, 216, 248, 135, 72, 126, 216, 102, 159, 27, 236, 207, 149, + 61, 69, 50, 151, 167, 159, 27, 151, 97, 146, 230, 51, 117, 155, 119, 27, 62, 177, 2, 203, 46, 156, 50, 122, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3465, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b09a5229e320" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17038366566777474828" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5655276707918341069" + } + }, + { + "_tag": "ByteArray", + "bytearray": "478a49" + }, + { + "_tag": "ByteArray", + "bytearray": "82708a516a62336e0b14a5" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5995832715295650737" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8726063137210004450" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9102351332832883698" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f0d269742b49d96be0b" + } + } + ] + }, + "cborHex": "bf0f9f46b09a5229e3201bec74701e8da9cf0c1b4e7b9433f20363cd43478a494b82708a516a62336e0b14a5ff1b53357a1657dcf3b141d11b79193430cd0873e21b7e520c4f964eb3f21bfffffffffffffff64a2f0d269742b49d96be0bff", + "cborBytes": [ + 191, 15, 159, 70, 176, 154, 82, 41, 227, 32, 27, 236, 116, 112, 30, 141, 169, 207, 12, 27, 78, 123, 148, 51, 242, + 3, 99, 205, 67, 71, 138, 73, 75, 130, 112, 138, 81, 106, 98, 51, 110, 11, 20, 165, 255, 27, 83, 53, 122, 22, 87, + 220, 243, 177, 65, 209, 27, 121, 25, 52, 48, 205, 8, 115, 226, 27, 126, 82, 12, 79, 150, 78, 179, 242, 27, 255, + 255, 255, 255, 255, 255, 255, 246, 74, 47, 13, 38, 151, 66, 180, 157, 150, 190, 11, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3466, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "042fee29d59bcabf87" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "609eaa23c564" + }, + { + "_tag": "ByteArray", + "bytearray": "d8c2" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2260d1589541" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7191255725890699037" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "504b48524b919f6a4d2c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b3a593caf" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c158826" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14572440127289038011" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16003664531834047173" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1e8c22910fe225013fd87" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f7a0cfa4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e415935024d53327381e8a4d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2892082046047385532" + } + } + } + ] + }, + "cborHex": "bf49042fee29d59bcabf879f46609eaa23c56442d8c2ff462260d1589541d8669f1b63cc78fb56b57f1d80ff4a504b48524b919f6a4d2c453b3a593caf448c158826bf1bca3bb51671b614bb1bde187019c47c8ac5ff4bd1e8c22910fe225013fd8744f7a0cfa44ce415935024d53327381e8a4d1b2822bd4c47f077bcff", + "cborBytes": [ + 191, 73, 4, 47, 238, 41, 213, 155, 202, 191, 135, 159, 70, 96, 158, 170, 35, 197, 100, 66, 216, 194, 255, 70, 34, + 96, 209, 88, 149, 65, 216, 102, 159, 27, 99, 204, 120, 251, 86, 181, 127, 29, 128, 255, 74, 80, 75, 72, 82, 75, + 145, 159, 106, 77, 44, 69, 59, 58, 89, 60, 175, 68, 140, 21, 136, 38, 191, 27, 202, 59, 181, 22, 113, 182, 20, + 187, 27, 222, 24, 112, 25, 196, 124, 138, 197, 255, 75, 209, 232, 194, 41, 16, 254, 34, 80, 19, 253, 135, 68, 247, + 160, 207, 164, 76, 228, 21, 147, 80, 36, 213, 51, 39, 56, 30, 138, 77, 27, 40, 34, 189, 76, 71, 240, 119, 188, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3467, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551604" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "facf18259b44" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7766978822887824880" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c07f73acd7a04ef3570067" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10024408258650208677" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5481167161891946544" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c94df2565" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5768673641612977047" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf09d8669f1bfffffffffffffff49f46facf18259b44ffff1bfffffffffffffffdbf1b6bc9da169435ddf04bc07f73acd7a04ef35700671b8b1dda331c5679a51b4c11047e471b0030451c94df25651b500e721d01802397ffff", + "cborBytes": [ + 191, 9, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 244, 159, 70, 250, 207, 24, 37, 155, 68, 255, 255, + 27, 255, 255, 255, 255, 255, 255, 255, 253, 191, 27, 107, 201, 218, 22, 148, 53, 221, 240, 75, 192, 127, 115, 172, + 215, 160, 78, 243, 87, 0, 103, 27, 139, 29, 218, 51, 28, 86, 121, 165, 27, 76, 17, 4, 126, 71, 27, 0, 48, 69, 28, + 148, 223, 37, 101, 27, 80, 14, 114, 29, 1, 128, 35, 151, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3468, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11451701565516357216" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b9eec9de66e631e6080ff", + "cborBytes": [191, 27, 158, 236, 157, 230, 110, 99, 30, 96, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3469, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3b7e2d5144f3b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3073492815101534827" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9122270acb82c2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4851523953686105479" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88c8939d1ca829" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9186961898179436356" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13108038653384028640" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10671464584260309482" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91be40" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16620126134296321872" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16433565391916054771" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf6e3eb7a8c09105fdb5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6567625995449656669" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6645496760729790274" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6715404996928249950" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "60cd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b472264c3cd59b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "276d4d01ab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5b2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c38a622765f098e6ba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8ef6ca767" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd0ee5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "469c9daea7ec4c10d3a788" + }, + { + "_tag": "ByteArray", + "bytearray": "f5b54f07730e44c6" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2e4ff2afc9d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17917981294607789966" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7" + } + } + ] + }, + "cborHex": "bf47b3b7e2d5144f3bbf1b2aa73d6e67d7a26b479122270acb82c21b43541354d6c24d874788c8939d1ca8291b7f7ea52bfa089f441bb5e91bb4b50b71e01b9418a87fe1ff51ea4391be401be6a68ca974eb1f501be40fc0a7ba4f38f3ff4abf6e3eb7a8c09105fdb5bf1b5b24e50bcc65e55d1b5c398c18334ee7421b5d31e943d4caa05e4260cd481b472264c3cd59b445276d4d01ab42e5b24115ff49c38a622765f098e6ba45c8ef6ca76743cd0ee59f4b469c9daea7ec4c10d3a78848f5b54f07730e44c6ff46d2e4ff2afc9d1bf8a9750dcd30ef8e41ec41a7ff", + "cborBytes": [ + 191, 71, 179, 183, 226, 213, 20, 79, 59, 191, 27, 42, 167, 61, 110, 103, 215, 162, 107, 71, 145, 34, 39, 10, 203, + 130, 194, 27, 67, 84, 19, 84, 214, 194, 77, 135, 71, 136, 200, 147, 157, 28, 168, 41, 27, 127, 126, 165, 43, 250, + 8, 159, 68, 27, 181, 233, 27, 180, 181, 11, 113, 224, 27, 148, 24, 168, 127, 225, 255, 81, 234, 67, 145, 190, 64, + 27, 230, 166, 140, 169, 116, 235, 31, 80, 27, 228, 15, 192, 167, 186, 79, 56, 243, 255, 74, 191, 110, 62, 183, + 168, 192, 145, 5, 253, 181, 191, 27, 91, 36, 229, 11, 204, 101, 229, 93, 27, 92, 57, 140, 24, 51, 78, 231, 66, 27, + 93, 49, 233, 67, 212, 202, 160, 94, 66, 96, 205, 72, 27, 71, 34, 100, 195, 205, 89, 180, 69, 39, 109, 77, 1, 171, + 66, 229, 178, 65, 21, 255, 73, 195, 138, 98, 39, 101, 240, 152, 230, 186, 69, 200, 239, 108, 167, 103, 67, 205, + 14, 229, 159, 75, 70, 156, 157, 174, 167, 236, 76, 16, 211, 167, 136, 72, 245, 181, 79, 7, 115, 14, 68, 198, 255, + 70, 210, 228, 255, 42, 252, 157, 27, 248, 169, 117, 13, 205, 48, 239, 142, 65, 236, 65, 167, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3470, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3405ecc7e98b27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62ad0105" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16532628242299773110" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "686a05fec6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ebbfec93dd9a058143683c" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5623403966803931717" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6295265835011154994" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a407fcff" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14229447777176691304" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3230173867406198584" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15786986646701651910" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + } + ] + }, + "cborHex": "bf01bf473405ecc7e98b2741fc4462ad01051be56fb1caf1de60b645686a05fec64bebbfec93dd9a058143683cff1b4e0a581d1ddef245071b575d46ec567e24329f0244a407fcffff1bc579275ccc96a2681b2cd3e204a97f07381bdb16a4b64e7cb7c600ff", + "cborBytes": [ + 191, 1, 191, 71, 52, 5, 236, 199, 233, 139, 39, 65, 252, 68, 98, 173, 1, 5, 27, 229, 111, 177, 202, 241, 222, 96, + 182, 69, 104, 106, 5, 254, 198, 75, 235, 191, 236, 147, 221, 154, 5, 129, 67, 104, 60, 255, 27, 78, 10, 88, 29, + 29, 222, 242, 69, 7, 27, 87, 93, 70, 236, 86, 126, 36, 50, 159, 2, 68, 164, 7, 252, 255, 255, 27, 197, 121, 39, + 92, 204, 150, 162, 104, 27, 44, 211, 226, 4, 169, 127, 7, 56, 27, 219, 22, 164, 182, 78, 124, 183, 198, 0, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3471, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6551971682228974806" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3638823693508246958" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15443572365405480359" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "62336dd652efab6cd9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0532" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d1975611bcad4c1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee6c57" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e7d724d2508d88c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a36c63c5ccb9fb7ae" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ef9c457283449191d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1680917473092565184" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "93480d15528935f7d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14872483185575333064" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5aed4787f9ad34d61b327fb2deb3d57dae1bd652973e270865a7bf4962336dd652efab6cd9420532486d1975611bcad4c143ee6c57486e7d724d2508d88c491a36c63c5ccb9fb7ae496ef9c457283449191d1b1753d189306df8c04993480d15528935f7d91bce65aca8d4300cc8ffff", + "cborBytes": [ + 191, 27, 90, 237, 71, 135, 249, 173, 52, 214, 27, 50, 127, 178, 222, 179, 213, 125, 174, 27, 214, 82, 151, 62, 39, + 8, 101, 167, 191, 73, 98, 51, 109, 214, 82, 239, 171, 108, 217, 66, 5, 50, 72, 109, 25, 117, 97, 27, 202, 212, + 193, 67, 238, 108, 87, 72, 110, 125, 114, 77, 37, 8, 216, 140, 73, 26, 54, 198, 60, 92, 203, 159, 183, 174, 73, + 110, 249, 196, 87, 40, 52, 73, 25, 29, 27, 23, 83, 209, 137, 48, 109, 248, 192, 73, 147, 72, 13, 21, 82, 137, 53, + 247, 217, 27, 206, 101, 172, 168, 212, 48, 12, 200, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3472, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e34fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f6f4171166d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "58a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11856759213753694610" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bce1c075e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed0a5f5921e0b4f11fa0fcf4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cedab681956e7c9c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c216cd4a6ceb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f18be47d9ac50bae95fe68" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2651fa8e7c9d3c7dc8" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a0b575d99d5338c68a926f6" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8655396523308016720" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "af7a02c168ee" + }, + { + "_tag": "ByteArray", + "bytearray": "d4aad3cfa1a4" + }, + { + "_tag": "ByteArray", + "bytearray": "555df8830ba9cf74b952dd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6880412515894760878" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "975698137707542563" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b45e30f54564347c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c4ccf4757b353a3d67f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6d3dec3b65a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4628187626422700199" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c81cc9f99" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11863916671446002752" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c37d44b5665f1113837c" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "def99a53" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1410410607002977446" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7345060454009289122" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b5" + }, + { + "_tag": "ByteArray", + "bytearray": "dfb9089603d5e4fc4e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16412230811498504247" + } + } + ] + } + } + ] + }, + "cborHex": "bf431e34fc4170466f6f4171166dbf4258a61ba48babaf6320f992458bce1c075e4ced0a5f5921e0b4f11fa0fcf448cedab681956e7c9c46c216cd4a6ceb4bf18be47d9ac50bae95fe68492651fa8e7c9d3c7dc8ff4c7a0b575d99d5338c68a926f6d8669f1b781e254799ece4509f46af7a02c168ee46d4aad3cfa1a44b555df8830ba9cf74b952dd1b5f7c22baae0f15ae1b0d8a60496a117823ffff48b45e30f54564347c4a6c4ccf4757b353a3d67f46c6d3dec3b65abf1b403aa02002c888a7452c81cc9f991ba4a5195ade5fac404ac37d44b5665f1113837cff44def99a539f1b1392c8f971db04a61b65eee5912efe39a241b549dfb9089603d5e4fc4e1be3c3f4f7a316e037ffff", + "cborBytes": [ + 191, 67, 30, 52, 252, 65, 112, 70, 111, 111, 65, 113, 22, 109, 191, 66, 88, 166, 27, 164, 139, 171, 175, 99, 32, + 249, 146, 69, 139, 206, 28, 7, 94, 76, 237, 10, 95, 89, 33, 224, 180, 241, 31, 160, 252, 244, 72, 206, 218, 182, + 129, 149, 110, 124, 156, 70, 194, 22, 205, 74, 108, 235, 75, 241, 139, 228, 125, 154, 197, 11, 174, 149, 254, 104, + 73, 38, 81, 250, 142, 124, 157, 60, 125, 200, 255, 76, 122, 11, 87, 93, 153, 213, 51, 140, 104, 169, 38, 246, 216, + 102, 159, 27, 120, 30, 37, 71, 153, 236, 228, 80, 159, 70, 175, 122, 2, 193, 104, 238, 70, 212, 170, 211, 207, + 161, 164, 75, 85, 93, 248, 131, 11, 169, 207, 116, 185, 82, 221, 27, 95, 124, 34, 186, 174, 15, 21, 174, 27, 13, + 138, 96, 73, 106, 17, 120, 35, 255, 255, 72, 180, 94, 48, 245, 69, 100, 52, 124, 74, 108, 76, 207, 71, 87, 179, + 83, 163, 214, 127, 70, 198, 211, 222, 195, 182, 90, 191, 27, 64, 58, 160, 32, 2, 200, 136, 167, 69, 44, 129, 204, + 159, 153, 27, 164, 165, 25, 90, 222, 95, 172, 64, 74, 195, 125, 68, 181, 102, 95, 17, 19, 131, 124, 255, 68, 222, + 249, 154, 83, 159, 27, 19, 146, 200, 249, 113, 219, 4, 166, 27, 101, 238, 229, 145, 46, 254, 57, 162, 65, 181, 73, + 223, 185, 8, 150, 3, 213, 228, 252, 78, 27, 227, 195, 244, 247, 163, 22, 224, 55, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3473, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d54" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2667569212125373832" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6921907605208807514" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17171353063433745831" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14846398124070864868" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "439000155359943" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18150583469076704810" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3307" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6c7ba58ca95ccc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0704" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6dbfc349a6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13119590529370021892" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7e01effb" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8806387496633811987" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5bfc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15162400409919992502" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dd5f4f04fc04009cf3f3cd" + } + } + ] + } + } + ] + }, + "cborHex": "bf420d54bf1b25051c10a680658841441b600f8e4b088bb85a1bee4ce6a22ac8b5a71bce09006f2b4507e41b00018f44b0510ac71bfbe3d37fcc64ee2a4169ff423307476c7ba58ca95ccc4138420704456dbfc349a61bb61226136dade004447e01effbbf1b7a3692c51b4cc413425bfc1bd26baad6c784b2b64bdd5f4f04fc04009cf3f3cdffff", + "cborBytes": [ + 191, 66, 13, 84, 191, 27, 37, 5, 28, 16, 166, 128, 101, 136, 65, 68, 27, 96, 15, 142, 75, 8, 139, 184, 90, 27, + 238, 76, 230, 162, 42, 200, 181, 167, 27, 206, 9, 0, 111, 43, 69, 7, 228, 27, 0, 1, 143, 68, 176, 81, 10, 199, 27, + 251, 227, 211, 127, 204, 100, 238, 42, 65, 105, 255, 66, 51, 7, 71, 108, 123, 165, 140, 169, 92, 204, 65, 56, 66, + 7, 4, 69, 109, 191, 195, 73, 166, 27, 182, 18, 38, 19, 109, 173, 224, 4, 68, 126, 1, 239, 251, 191, 27, 122, 54, + 146, 197, 27, 76, 196, 19, 66, 91, 252, 27, 210, 107, 170, 214, 199, 132, 178, 182, 75, 221, 95, 79, 4, 252, 4, 0, + 156, 243, 243, 205, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3474, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "86a526f2b7ddd313c1b77519" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f7e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "215da2d85504" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "938693" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4419d2ede37d73ca621" + } + } + ] + }, + "cborHex": "bf4c86a526f2b7ddd313c1b77519bf424f7e46215da2d85504ff439386934aa4419d2ede37d73ca621ff", + "cborBytes": [ + 191, 76, 134, 165, 38, 242, 183, 221, 211, 19, 193, 183, 117, 25, 191, 66, 79, 126, 70, 33, 93, 162, 216, 85, 4, + 255, 67, 147, 134, 147, 74, 164, 65, 157, 46, 222, 55, 215, 60, 166, 33, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3475, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f38c3afb9e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + } + ] + }, + "cborHex": "bf45f38c3afb9e1bfffffffffffffffdff", + "cborBytes": [191, 69, 243, 140, 58, 251, 158, 27, 255, 255, 255, 255, 255, 255, 255, 253, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3476, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01d606007204" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d2b304ee7dd16758a8c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5355109266019149873" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9f907e1e31257803ec" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10599021849811006134" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "453ccc7c6292e8647e90e16c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14650943733221131525" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f68f56" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "202cc139a70981faa013" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0cfefe" + }, + { + "_tag": "ByteArray", + "bytearray": "912678" + }, + { + "_tag": "ByteArray", + "bytearray": "6917c422" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5242da" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbff08ba930d968082" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "423330751381595367" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd00fa0038fa03ff0000" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4f8864be95d76c7686f" + } + } + ] + }, + "cborHex": "bf4601d6060072044a2d2b304ee7dd16758a8c411fbf1b4a512b813e796831499f907e1e31257803ec1b93174a376496b2b64c453ccc7c6292e8647e90e16c1bcb529bb38ae1850543f68f56ff4a202cc139a70981faa0139f1bfffffffffffffffb430cfefe43912678446917c422ff435242daa049fbff08ba930d9680821b05dff913529964e74afd00fa0038fa03ff00004ae4f8864be95d76c7686fff", + "cborBytes": [ + 191, 70, 1, 214, 6, 0, 114, 4, 74, 45, 43, 48, 78, 231, 221, 22, 117, 138, 140, 65, 31, 191, 27, 74, 81, 43, 129, + 62, 121, 104, 49, 73, 159, 144, 126, 30, 49, 37, 120, 3, 236, 27, 147, 23, 74, 55, 100, 150, 178, 182, 76, 69, 60, + 204, 124, 98, 146, 232, 100, 126, 144, 225, 108, 27, 203, 82, 155, 179, 138, 225, 133, 5, 67, 246, 143, 86, 255, + 74, 32, 44, 193, 57, 167, 9, 129, 250, 160, 19, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 67, 12, 254, 254, + 67, 145, 38, 120, 68, 105, 23, 196, 34, 255, 67, 82, 66, 218, 160, 73, 251, 255, 8, 186, 147, 13, 150, 128, 130, + 27, 5, 223, 249, 19, 82, 153, 100, 231, 74, 253, 0, 250, 0, 56, 250, 3, 255, 0, 0, 74, 228, 248, 134, 75, 233, 93, + 118, 199, 104, 111, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3477, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "124738046854736106" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13242783943406014847" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "ByteArray", + "bytearray": "390235822054f92494" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13312092533548006628" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89f6b81ec5d7e9fa1119d1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0207059b02f907b0fe0405" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10250371280485429364" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "03fb5f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a0ee669c18a518d024b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "12e7fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "160204d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2503" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15235791796949775050" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5dfbfd22060102ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6681179068536741110" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f901" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17818706122182232253" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b01bb2897bcc0a8ead9050c9f1bb7c7d1d54ff6517f0049390235822054f924941bb8be0da0f7423ce4ff4b89f6b81ec5d7e9fa1119d1bf4b0207059b02f907b0fe04051b8e40a25eed3330744303fb5f4a3a0ee669c18a518d024b4312e7fd44160204d64225031bd37067eaa90072ca485dfbfd22060102ff1b5cb850f6e4e85cf642f9011bf748c2cf81c008bdffff", + "cborBytes": [ + 191, 27, 1, 187, 40, 151, 188, 192, 168, 234, 217, 5, 12, 159, 27, 183, 199, 209, 213, 79, 246, 81, 127, 0, 73, + 57, 2, 53, 130, 32, 84, 249, 36, 148, 27, 184, 190, 13, 160, 247, 66, 60, 228, 255, 75, 137, 246, 184, 30, 197, + 215, 233, 250, 17, 25, 209, 191, 75, 2, 7, 5, 155, 2, 249, 7, 176, 254, 4, 5, 27, 142, 64, 162, 94, 237, 51, 48, + 116, 67, 3, 251, 95, 74, 58, 14, 230, 105, 193, 138, 81, 141, 2, 75, 67, 18, 231, 253, 68, 22, 2, 4, 214, 66, 37, + 3, 27, 211, 112, 103, 234, 169, 0, 114, 202, 72, 93, 251, 253, 34, 6, 1, 2, 255, 27, 92, 184, 80, 246, 228, 232, + 92, 246, 66, 249, 1, 27, 247, 72, 194, 207, 129, 192, 8, 189, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3478, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12621161662762022162" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551611" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1165312747696957471" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14876664138158300486" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5ce852" + }, + { + "_tag": "ByteArray", + "bytearray": "8ecaad5c413d209522" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "817297764b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ffc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9ff01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b7a704ae73044" + } + } + ] + } + } + ] + }, + "cborHex": "bf1baf275fa999b57512d8669f1bfffffffffffffffb9f1b102c05c51ab6281f1bce748736b5b7dd46435ce852498ecaad5c413d209522ffff45817297764bbf41b1423ffc43c9ff01473b7a704ae73044ffff", + "cborBytes": [ + 191, 27, 175, 39, 95, 169, 153, 181, 117, 18, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 251, 159, 27, + 16, 44, 5, 197, 26, 182, 40, 31, 27, 206, 116, 135, 54, 181, 183, 221, 70, 67, 92, 232, 82, 73, 142, 202, 173, 92, + 65, 61, 32, 149, 34, 255, 255, 69, 129, 114, 151, 118, 75, 191, 65, 177, 66, 63, 252, 67, 201, 255, 1, 71, 59, + 122, 112, 74, 231, 48, 68, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3479, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0105" + } + ] + } + } + ] + }, + "cborHex": "bf119f420105ffff", + "cborBytes": [191, 17, 159, 66, 1, 5, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3480, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "723563041329407174" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "470977067910364027" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6315119429166728738" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9745ee30" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10538432733885373326" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "315f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13125464842125163885" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1596360262407588222" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "23828942deb5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17761944011569838206" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15960285546019949643" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16216504863708898123" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17853620783719347233" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "594240499854125017" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14d287601be78d41df722f31" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10315828661407695414" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b46d3e9971f0ac" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17772052277377600940" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18156149198206590431" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0a0a9cc0a30a64c69f1b06893f25de26fb7bff1b57a3cfa971a68622449745ee301b924008bc88961b8e42315f1bb62704bb72bfbd6dd8669f1b16276933665a897e9f4623828942deb51bf67f19f8c1ff387e1bdd7e532494520c4bffff1be10c99413bc3634ba01bf7c4cd82a01f7421bf1b083f2a9610f4a7d94c14d287601be78d41df722f311b8f292f830effc23647b46d3e9971f0ac1bf6a30362cac38dac1bfbf799801818dddfffff", + "cborBytes": [ + 191, 27, 10, 10, 156, 192, 163, 10, 100, 198, 159, 27, 6, 137, 63, 37, 222, 38, 251, 123, 255, 27, 87, 163, 207, + 169, 113, 166, 134, 34, 68, 151, 69, 238, 48, 27, 146, 64, 8, 188, 136, 150, 27, 142, 66, 49, 95, 27, 182, 39, 4, + 187, 114, 191, 189, 109, 216, 102, 159, 27, 22, 39, 105, 51, 102, 90, 137, 126, 159, 70, 35, 130, 137, 66, 222, + 181, 27, 246, 127, 25, 248, 193, 255, 56, 126, 27, 221, 126, 83, 36, 148, 82, 12, 75, 255, 255, 27, 225, 12, 153, + 65, 59, 195, 99, 75, 160, 27, 247, 196, 205, 130, 160, 31, 116, 33, 191, 27, 8, 63, 42, 150, 16, 244, 167, 217, + 76, 20, 210, 135, 96, 27, 231, 141, 65, 223, 114, 47, 49, 27, 143, 41, 47, 131, 14, 255, 194, 54, 71, 180, 109, + 62, 153, 113, 240, 172, 27, 246, 163, 3, 98, 202, 195, 141, 172, 27, 251, 247, 153, 128, 24, 24, 221, 223, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3481, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12274147097938384662" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7832676401465271136" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1986200916906621273" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13957445961692858197" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9121347944694174279" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11683763421874868079" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fc" + }, + { + "_tag": "ByteArray", + "bytearray": "d65fb4" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16149275235311936188" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e5dc77" + }, + { + "_tag": "ByteArray", + "bytearray": "9d1b2156bd5d7bddd5cf5f" + }, + { + "_tag": "ByteArray", + "bytearray": "617bb02f7bed16101b6827" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18151160379167084588" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1db06c7d401dadb9c49b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18259409677975701250" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8661123204467239176" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4990041042655737906" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4dda492a9f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e872aca8185f9ac7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ef2ae43b039a7916a733e0b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8cca41c9aa9cb753" + } + } + ] + } + } + ] + }, + "cborHex": "bf1baa5687c11d8257169f1b6cb341b015ec23601b1b906735e8c63959ff1bc1b2cf270669c7559f1b7e9589a0f43c52471ba22510edd08dcf6f41fc43d65fb4ff1be01dc04394c7e2bc9f43e5dc774b9d1b2156bd5d7bddd5cf5f4b617bb02f7bed16101b6827ff1bfbe5e0322566102c9f4a1db06c7d401dadb9c49bff1bfd66745c10124702bf1b78327daa7629a9081b45402fe3d21d7832454dda492a9f48e872aca8185f9ac74c7ef2ae43b039a7916a733e0b488cca41c9aa9cb753ffff", + "cborBytes": [ + 191, 27, 170, 86, 135, 193, 29, 130, 87, 22, 159, 27, 108, 179, 65, 176, 21, 236, 35, 96, 27, 27, 144, 103, 53, + 232, 198, 57, 89, 255, 27, 193, 178, 207, 39, 6, 105, 199, 85, 159, 27, 126, 149, 137, 160, 244, 60, 82, 71, 27, + 162, 37, 16, 237, 208, 141, 207, 111, 65, 252, 67, 214, 95, 180, 255, 27, 224, 29, 192, 67, 148, 199, 226, 188, + 159, 67, 229, 220, 119, 75, 157, 27, 33, 86, 189, 93, 123, 221, 213, 207, 95, 75, 97, 123, 176, 47, 123, 237, 22, + 16, 27, 104, 39, 255, 27, 251, 229, 224, 50, 37, 102, 16, 44, 159, 74, 29, 176, 108, 125, 64, 29, 173, 185, 196, + 155, 255, 27, 253, 102, 116, 92, 16, 18, 71, 2, 191, 27, 120, 50, 125, 170, 118, 41, 169, 8, 27, 69, 64, 47, 227, + 210, 29, 120, 50, 69, 77, 218, 73, 42, 159, 72, 232, 114, 172, 168, 24, 95, 154, 199, 76, 126, 242, 174, 67, 176, + 57, 167, 145, 106, 115, 62, 11, 72, 140, 202, 65, 201, 170, 156, 183, 83, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3482, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9fe7a361" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f6e23dcf1fb3ce561160" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "770949869575889165" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17879546305429468373" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16670342296982886929" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17410459514972411342" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b94f451c3493443df2161c2a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5017241910159485354" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4e8a48fac71fed1fec6de" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "491376994157482449" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d0bee96" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6780010392881450404" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14392292399860632360" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11884130874808037845" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e90c3e443f4fa8f" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1684c112222c3a74a6ecb12" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fcc35e1b7b7f0220eccb63" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a9ed115babaace9fd00436b6" + } + } + ] + }, + "cborHex": "bf449fe7a3619f4af6e23dcf1fb3ce5611601b0ab2f6d25bb4610d1bf820e8a2884574d51be758f3feefd59a111bf19e60af2e4015ceff4cb94f451c3493443df2161c2a1b45a0d2ef4f4229aa4bc4e8a48fac71fed1fec6debf1b06d1b8c5d38e51d1449d0bee961b5e176f87c127cda41bc7bbb1af1d3f4b281ba4ecea10d92f71d5486e90c3e443f4fa8fff4ce1684c112222c3a74a6ecb1241b64bfcc35e1b7b7f0220eccb634ca9ed115babaace9fd00436b6ff", + "cborBytes": [ + 191, 68, 159, 231, 163, 97, 159, 74, 246, 226, 61, 207, 31, 179, 206, 86, 17, 96, 27, 10, 178, 246, 210, 91, 180, + 97, 13, 27, 248, 32, 232, 162, 136, 69, 116, 213, 27, 231, 88, 243, 254, 239, 213, 154, 17, 27, 241, 158, 96, 175, + 46, 64, 21, 206, 255, 76, 185, 79, 69, 28, 52, 147, 68, 61, 242, 22, 28, 42, 27, 69, 160, 210, 239, 79, 66, 41, + 170, 75, 196, 232, 164, 143, 172, 113, 254, 209, 254, 198, 222, 191, 27, 6, 209, 184, 197, 211, 142, 81, 209, 68, + 157, 11, 238, 150, 27, 94, 23, 111, 135, 193, 39, 205, 164, 27, 199, 187, 177, 175, 29, 63, 75, 40, 27, 164, 236, + 234, 16, 217, 47, 113, 213, 72, 110, 144, 195, 228, 67, 244, 250, 143, 255, 76, 225, 104, 76, 17, 34, 34, 195, + 167, 74, 110, 203, 18, 65, 182, 75, 252, 195, 94, 27, 123, 127, 2, 32, 236, 203, 99, 76, 169, 237, 17, 91, 171, + 170, 206, 159, 208, 4, 54, 182, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3483, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9409087585150157997" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16669189560878446534" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04" + } + } + ] + }, + "cborHex": "bf1b8293cb4ea569c4ada01be754db96a5cf37c64104ff", + "cborBytes": [ + 191, 27, 130, 147, 203, 78, 165, 105, 196, 173, 160, 27, 231, 84, 219, 150, 165, 207, 55, 198, 65, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3484, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbb055f7b6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2656dbfa531dec48c3" + }, + { + "_tag": "ByteArray", + "bytearray": "7db6" + }, + { + "_tag": "ByteArray", + "bytearray": "4d493fde149aae9aa2f6e2" + } + ] + } + } + ] + }, + "cborHex": "bf45dbb055f7b69f492656dbfa531dec48c3427db64b4d493fde149aae9aa2f6e2ffff", + "cborBytes": [ + 191, 69, 219, 176, 85, 247, 182, 159, 73, 38, 86, 219, 250, 83, 29, 236, 72, 195, 66, 125, 182, 75, 77, 73, 63, + 222, 20, 154, 174, 154, 162, 246, 226, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3485, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6dd9479a423088522e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ad7783522110971acf370cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0bef6bfff1afa567050081a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "380238383766562892" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11620097864726402271" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12730689993676178427" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd02" + }, + { + "_tag": "ByteArray", + "bytearray": "3e175de82dceb2b495a839" + } + ] + } + } + ] + }, + "cborHex": "bf13d87e80496dd9479a423088522e0e4c8ad7783522110971acf370cb1bffffffffffffffed4cb0bef6bfff1afa567050081a9f1b0546e0cba25fe84c1ba142e1712a4ad4df1bb0ac7f1962b043fb42fd024b3e175de82dceb2b495a839ffff", + "cborBytes": [ + 191, 19, 216, 126, 128, 73, 109, 217, 71, 154, 66, 48, 136, 82, 46, 14, 76, 138, 215, 120, 53, 34, 17, 9, 113, + 172, 243, 112, 203, 27, 255, 255, 255, 255, 255, 255, 255, 237, 76, 176, 190, 246, 191, 255, 26, 250, 86, 112, 80, + 8, 26, 159, 27, 5, 70, 224, 203, 162, 95, 232, 76, 27, 161, 66, 225, 113, 42, 74, 212, 223, 27, 176, 172, 127, 25, + 98, 176, 67, 251, 66, 253, 2, 75, 62, 23, 93, 232, 45, 206, 178, 180, 149, 168, 57, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3486, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15528562263896580613" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "634787b68e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c69a28ef5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2033090688921904602" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8209951994558514892" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13363569534684674385" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4526646bdcbec271a52d3fb8" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bdde538b9c86db885d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "527711" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aaaa88068352af3601a3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ad2b640ef4f0afb" + } + } + ] + }, + "cborHex": "bf1bd780891aec17620545634787b68e452c69a28ef5bf1b1c36fd35b55825da1b71ef9bd742ab86cc1bb974efb0461cb9514c4526646bdcbec271a52d3fb8ff4a8bdde538b9c86db885d0435277114aaaaa88068352af3601a3486ad2b640ef4f0afbff", + "cborBytes": [ + 191, 27, 215, 128, 137, 26, 236, 23, 98, 5, 69, 99, 71, 135, 182, 142, 69, 44, 105, 162, 142, 245, 191, 27, 28, + 54, 253, 53, 181, 88, 37, 218, 27, 113, 239, 155, 215, 66, 171, 134, 204, 27, 185, 116, 239, 176, 70, 28, 185, 81, + 76, 69, 38, 100, 107, 220, 190, 194, 113, 165, 45, 63, 184, 255, 74, 139, 221, 229, 56, 185, 200, 109, 184, 133, + 208, 67, 82, 119, 17, 74, 170, 170, 136, 6, 131, 82, 175, 54, 1, 163, 72, 106, 210, 182, 64, 239, 79, 10, 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3487, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0106f465018d720503f1fb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03000337fefb0705" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "995577466567395369" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "ByteArray", + "bytearray": "04e99cf98ca420" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446495163174197471" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13858964448789007342" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "00836a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e149945f11b762448c91bfd7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11097314336059714868" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf034b0106f465018d720503f1fb109f024803000337fefb0705ff1b0dd1006e592208299f004704e99cf98ca420ff1bffff1d9dfff598dfbf1bc054eebcfcd60bee084300836a074ce149945f11b762448c91bfd71b9a019497b1b06d34ffff", + "cborBytes": [ + 191, 3, 75, 1, 6, 244, 101, 1, 141, 114, 5, 3, 241, 251, 16, 159, 2, 72, 3, 0, 3, 55, 254, 251, 7, 5, 255, 27, 13, + 209, 0, 110, 89, 34, 8, 41, 159, 0, 71, 4, 233, 156, 249, 140, 164, 32, 255, 27, 255, 255, 29, 157, 255, 245, 152, + 223, 191, 27, 192, 84, 238, 188, 252, 214, 11, 238, 8, 67, 0, 131, 106, 7, 76, 225, 73, 148, 95, 17, 183, 98, 68, + 140, 145, 191, 215, 27, 154, 1, 148, 151, 177, 176, 109, 52, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3488, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "72f1b14568b7266174b8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6557801680165436369" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dd5a4731f230da551305266c" + }, + { + "_tag": "ByteArray", + "bytearray": "a91deea5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6625215081403352787" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4390673484422347535" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53c030e81d4423b03a2b11de" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b57e91d5fd859739e9e6ac" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05d82c61150e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9e067f06" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2bf4774502d8cd1fc405fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4855118902456711826" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58152018ef58ecc8425f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "53811140bf8593591a29" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3e1ec1b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0dd791d6e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f639881fef3bd59e5b2390e2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3903836299084325908" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5f2293979265cf0beed4743" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b940db32e" + } + } + ] + }, + "cborHex": "bf4a72f1b14568b7266174b8d8669f1b5b01fde225b87bd19f4cdd5a4731f230da551305266c44a91deea51b5bf17e03bf9b86d3ffff4184bf1b3ceece4573b87b0f4c53c030e81d4423b03a2b11deff4bb57e91d5fd859739e9e6acbf4605d82c61150e449e067f064b2bf4774502d8cd1fc405fb1b4360d8eb13377a924a58152018ef58ecc8425f4a53811140bf8593591a2944e3e1ec1b450dd791d6e84cf639881fef3bd59e5b2390e21b362d366e3c326414ff4cd5f2293979265cf0beed4743456b940db32eff", + "cborBytes": [ + 191, 74, 114, 241, 177, 69, 104, 183, 38, 97, 116, 184, 216, 102, 159, 27, 91, 1, 253, 226, 37, 184, 123, 209, + 159, 76, 221, 90, 71, 49, 242, 48, 218, 85, 19, 5, 38, 108, 68, 169, 29, 238, 165, 27, 91, 241, 126, 3, 191, 155, + 134, 211, 255, 255, 65, 132, 191, 27, 60, 238, 206, 69, 115, 184, 123, 15, 76, 83, 192, 48, 232, 29, 68, 35, 176, + 58, 43, 17, 222, 255, 75, 181, 126, 145, 213, 253, 133, 151, 57, 233, 230, 172, 191, 70, 5, 216, 44, 97, 21, 14, + 68, 158, 6, 127, 6, 75, 43, 244, 119, 69, 2, 216, 205, 31, 196, 5, 251, 27, 67, 96, 216, 235, 19, 55, 122, 146, + 74, 88, 21, 32, 24, 239, 88, 236, 200, 66, 95, 74, 83, 129, 17, 64, 191, 133, 147, 89, 26, 41, 68, 227, 225, 236, + 27, 69, 13, 215, 145, 214, 232, 76, 246, 57, 136, 31, 239, 59, 213, 158, 91, 35, 144, 226, 27, 54, 45, 54, 110, + 60, 50, 100, 20, 255, 76, 213, 242, 41, 57, 121, 38, 92, 240, 190, 237, 71, 67, 69, 107, 148, 13, 179, 46, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3489, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12b07d37d3d035ac" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11557531752596263944" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "999d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4311332999168950836" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "99e52c97bd62a11271" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12461727566614458533" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15401308470574408546" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3d2f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14724068485457889151" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "74d5017a790e88125768" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "888a" + } + } + ] + } + } + ] + }, + "cborHex": "bf4812b07d37d3d035acd8669f1ba06499e501cc540880ff42999dbf1b3bd4ee8533e282344999e52c97bd62a112711bacf0f3325fbf70a51bd5bc707450cd6362423d2f1bcc566646ac3dc77f4a74d5017a790e8812576842888affff", + "cborBytes": [ + 191, 72, 18, 176, 125, 55, 211, 208, 53, 172, 216, 102, 159, 27, 160, 100, 153, 229, 1, 204, 84, 8, 128, 255, 66, + 153, 157, 191, 27, 59, 212, 238, 133, 51, 226, 130, 52, 73, 153, 229, 44, 151, 189, 98, 161, 18, 113, 27, 172, + 240, 243, 50, 95, 191, 112, 165, 27, 213, 188, 112, 116, 80, 205, 99, 98, 66, 61, 47, 27, 204, 86, 102, 70, 172, + 61, 199, 127, 74, 116, 213, 1, 122, 121, 14, 136, 18, 87, 104, 66, 136, 138, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3490, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "69f95503f886fb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1799499272124482227" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4769f95503f886fbd8669f1b18f91b0dc88dc2b380ffff", + "cborBytes": [ + 191, 71, 105, 249, 85, 3, 248, 134, 251, 216, 102, 159, 27, 24, 249, 27, 13, 200, 141, 194, 179, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3491, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7640257900415862100" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4fe349307c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2590306740336096282" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9bfa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1dd3ec9f4b2fcad855d3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe753cc0" + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff0d8669f1b6a07a614a2a8c5549f454fe349307c1b23f29e419d08741a1bfffffffffffffff3429bfa09ffff4a1dd3ec9f4b2fcad855d344fe753cc0ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 240, 216, 102, 159, 27, 106, 7, 166, 20, 162, 168, 197, 84, 159, 69, + 79, 227, 73, 48, 124, 27, 35, 242, 158, 65, 157, 8, 116, 26, 27, 255, 255, 255, 255, 255, 255, 255, 243, 66, 155, + 250, 9, 255, 255, 74, 29, 211, 236, 159, 75, 47, 202, 216, 85, 211, 68, 254, 117, 60, 192, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3492, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "469910981510923050" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7803635321365470927" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17232416566414474680" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17164542d2dddbe52ed1" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11764711047999188288" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12808141544343653483" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a6722e14d9686d4fbcad082a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5056701585823661919" + } + }, + { + "_tag": "ByteArray", + "bytearray": "58ff771ed20d9c8b46" + }, + { + "_tag": "ByteArray", + "bytearray": "15f23f" + }, + { + "_tag": "ByteArray", + "bytearray": "41d9ec66" + } + ] + } + } + ] + }, + "cborHex": "bf1b0685758c4903832ad8669f1b6c4c14fab6ae1ecf9f1bef25d790deb0fdb84a17164542d2dddbe52ed1ffff1ba344a65db51aed40d8669f1bb1bfa8dfc786cc6b9f4ca6722e14d9686d4fbcad082a1b462d034cfe2c7f5f4958ff771ed20d9c8b464315f23f4441d9ec66ffffff", + "cborBytes": [ + 191, 27, 6, 133, 117, 140, 73, 3, 131, 42, 216, 102, 159, 27, 108, 76, 20, 250, 182, 174, 30, 207, 159, 27, 239, + 37, 215, 144, 222, 176, 253, 184, 74, 23, 22, 69, 66, 210, 221, 219, 229, 46, 209, 255, 255, 27, 163, 68, 166, 93, + 181, 26, 237, 64, 216, 102, 159, 27, 177, 191, 168, 223, 199, 134, 204, 107, 159, 76, 166, 114, 46, 20, 217, 104, + 109, 79, 188, 173, 8, 42, 27, 70, 45, 3, 76, 254, 44, 127, 95, 73, 88, 255, 119, 30, 210, 13, 156, 139, 70, 67, + 21, 242, 63, 68, 65, 217, 236, 102, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3493, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4639673631413878575" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4556627140353205575" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f6c95e5197882e19367" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ec06ae7d8ade78818f4e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66aa8a9330f6761656" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2668813f683f13979e767" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86bbc277" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b40636e95f22bbf2f1b3f3c643dfaa825474a2f6c95e5197882e193674aec06ae7d8ade78818f4e4966aa8a9330f67616564ba2668813f683f13979e7674486bbc277a0ff", + "cborBytes": [ + 191, 27, 64, 99, 110, 149, 242, 43, 191, 47, 27, 63, 60, 100, 61, 250, 168, 37, 71, 74, 47, 108, 149, 229, 25, + 120, 130, 225, 147, 103, 74, 236, 6, 174, 125, 138, 222, 120, 129, 143, 78, 73, 102, 170, 138, 147, 48, 246, 118, + 22, 86, 75, 162, 102, 136, 19, 246, 131, 241, 57, 121, 231, 103, 68, 134, 187, 194, 119, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3494, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4184160580597046676" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4277951023472382162" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10809839740877712516" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15545235727555911757" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b3a111fe121addd94a01b3b5e55ca509710d21b960443f8a9eaac841bd7bbc58832ae604da0ff", + "cborBytes": [ + 191, 27, 58, 17, 31, 225, 33, 173, 221, 148, 160, 27, 59, 94, 85, 202, 80, 151, 16, 210, 27, 150, 4, 67, 248, 169, + 234, 172, 132, 27, 215, 187, 197, 136, 50, 174, 96, 77, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3495, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "820702" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3079202822851591332" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e1af1e5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17392103499423924578" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5507821040988241912" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17509995740511527683" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "35c6bd8decbc1d43a9" + } + } + ] + } + } + ] + }, + "cborHex": "bf43820702bf1b2abb86a72f72fca4444e1af1e51bf15d29fc43fdc1621b4c6fb60e1a86bff81bf300005aa3cae3034935c6bd8decbc1d43a9ffff", + "cborBytes": [ + 191, 67, 130, 7, 2, 191, 27, 42, 187, 134, 167, 47, 114, 252, 164, 68, 78, 26, 241, 229, 27, 241, 93, 41, 252, 67, + 253, 193, 98, 27, 76, 111, 182, 14, 26, 134, 191, 248, 27, 243, 0, 0, 90, 163, 202, 227, 3, 73, 53, 198, 189, 141, + 236, 188, 29, 67, 169, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3496, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9027992968028999225" + } + } + } + ] + }, + "cborHex": "bf1bffffffffffffffef1b7d49dfc5a617ce39ff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 239, 27, 125, 73, 223, 197, 166, 23, 206, 57, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3497, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e288f0a6c465" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6390156430044194708" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf46e288f0a6c465d8669f1b58ae656aa7f6679480ffff", + "cborBytes": [ + 191, 70, 226, 136, 240, 166, 196, 101, 216, 102, 159, 27, 88, 174, 101, 106, 167, 246, 103, 148, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3498, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2277" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8cf4e847a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14780593984657792152" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8251602649248789241" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1040541275844078409" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16662884051890863922" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11460457580900763732" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8fc778ca7c82f1c75" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28b75ee245841f4b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11378760822327809959" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "94df99a1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4321094103890314452" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c08f6f72057d95" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9129054370164817855" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9dfb09f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6718261113341220675" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9011e92ac27" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2993296717089144339" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3407782588257363956" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b2971e6e60748114c2ba3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8451201208171827863" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d046a39f4687160455f2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "468227280069575223" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fae82f66e1493b84fe2fa70a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd19d44ccc9d8aacfcb936" + } + } + ] + }, + "cborHex": "bf4202e742227745d8cf4e847ad8669f1bcd1f37eb08cd9c989f1b728394e4002572f91b0e70bec700d16b491be73e74c2ee79ff321b9f0bb9732105c854ffff49e8fc778ca7c82f1c75bf4828b75ee245841f4b1b9de97aae3efb17a74494df99a11b3bf79c317f6ac4d447c08f6f72057d951b7eb0ea94f4e6bfbf44e9dfb09f1b5d3c0ee341061743ff46f9011e92ac27bf1b298a53814970fe131b2f4ae03574d767f44b9b2971e6e60748114c2ba31b7548b2b8f26f12974ad046a39f4687160455f21b067f7a3afeb1c237ff4cfae82f66e1493b84fe2fa70a4bcd19d44ccc9d8aacfcb936ff", + "cborBytes": [ + 191, 66, 2, 231, 66, 34, 119, 69, 216, 207, 78, 132, 122, 216, 102, 159, 27, 205, 31, 55, 235, 8, 205, 156, 152, + 159, 27, 114, 131, 148, 228, 0, 37, 114, 249, 27, 14, 112, 190, 199, 0, 209, 107, 73, 27, 231, 62, 116, 194, 238, + 121, 255, 50, 27, 159, 11, 185, 115, 33, 5, 200, 84, 255, 255, 73, 232, 252, 119, 140, 167, 200, 47, 28, 117, 191, + 72, 40, 183, 94, 226, 69, 132, 31, 75, 27, 157, 233, 122, 174, 62, 251, 23, 167, 68, 148, 223, 153, 161, 27, 59, + 247, 156, 49, 127, 106, 196, 212, 71, 192, 143, 111, 114, 5, 125, 149, 27, 126, 176, 234, 148, 244, 230, 191, 191, + 68, 233, 223, 176, 159, 27, 93, 60, 14, 227, 65, 6, 23, 67, 255, 70, 249, 1, 30, 146, 172, 39, 191, 27, 41, 138, + 83, 129, 73, 112, 254, 19, 27, 47, 74, 224, 53, 116, 215, 103, 244, 75, 155, 41, 113, 230, 230, 7, 72, 17, 76, 43, + 163, 27, 117, 72, 178, 184, 242, 111, 18, 151, 74, 208, 70, 163, 159, 70, 135, 22, 4, 85, 242, 27, 6, 127, 122, + 58, 254, 177, 194, 55, 255, 76, 250, 232, 47, 102, 225, 73, 59, 132, 254, 47, 167, 10, 75, 205, 25, 212, 76, 204, + 157, 138, 172, 252, 185, 54, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3499, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "062f68fd096f0778ed0302" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "241db07b9ebc4d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11987678421915061962" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9092b89d76dfaabbad1e1d7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17020247706204102516" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb00f9f8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11353363332324074007" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4b062f68fd096f0778ed0302bf03030441051047241db07b9ebc4d1ba65cca02e3dcceca4cf9092b89d76dfaabbad1e1d71bec34111c9573df7444fb00f9f81bfffffffffffffff71b9d8f3fcc4d1f2217ffff", + "cborBytes": [ + 191, 75, 6, 47, 104, 253, 9, 111, 7, 120, 237, 3, 2, 191, 3, 3, 4, 65, 5, 16, 71, 36, 29, 176, 123, 158, 188, 77, + 27, 166, 92, 202, 2, 227, 220, 206, 202, 76, 249, 9, 43, 137, 215, 109, 250, 171, 186, 209, 225, 215, 27, 236, 52, + 17, 28, 149, 115, 223, 116, 68, 251, 0, 249, 248, 27, 255, 255, 255, 255, 255, 255, 255, 247, 27, 157, 143, 63, + 204, 77, 31, 34, 23, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3500, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9922833437222481720" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "291cf216600b1a4677e61f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10095592854734798770" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ab3b4f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12974697993264846412" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "667763467207064323" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6677224409156848784" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01fa6f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "058058e905b0010602ff" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b89b4fc700f03af38d8669f1bffffffffffffffff9f4b291cf216600b1a4677e61f1b8c1ac0366f707fb243ab3b4fffff1bb40f6314fc86564cbf1b09445f55e0dc3b031b5caa4439015c8c904301fa6f4a058058e905b0010602ffffff", + "cborBytes": [ + 191, 27, 137, 180, 252, 112, 15, 3, 175, 56, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 75, + 41, 28, 242, 22, 96, 11, 26, 70, 119, 230, 31, 27, 140, 26, 192, 54, 111, 112, 127, 178, 67, 171, 59, 79, 255, + 255, 27, 180, 15, 99, 20, 252, 134, 86, 76, 191, 27, 9, 68, 95, 85, 224, 220, 59, 3, 27, 92, 170, 68, 57, 1, 92, + 140, 144, 67, 1, 250, 111, 74, 5, 128, 88, 233, 5, 176, 1, 6, 2, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3501, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6675261172374285265" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2acc28fab8239e3a687bab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8842520987768358742" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f342f79162fa6a8d4b72" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8896760176952941036" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6290184110666592275" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18077305908642848095" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6115596055944091813" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4599879928379698257" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11482401661230947107" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4232052934907309358" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "19929eaaa11cd6ff390ef97a" + }, + { + "_tag": "ByteArray", + "bytearray": "52e8106260a164491bffbc94" + }, + { + "_tag": "ByteArray", + "bytearray": "1f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14389917154898381469" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13307740048521004335" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7617667731508600243" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f6016316330849c26e2c4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17698756226407242245" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8a928de48fd9c6dc4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbe984cc341f46559468" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f23ab2c2bed0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "edea72b7250b59" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4827544530265455667" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16598933172920676566" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1051344882343702885" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f86036850094" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4581432472260057745" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4861377666c16122" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10843333118982585960" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "421791633791633653" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f24" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41f1a2beb35ff67972853fc1" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5ca34aab5253abd14b2acc28fab8239e3a687bab1b7ab6f1fd1ade87564af342f79162fa6a8d4b721b7b77a43e6f1f19ec9f1b574b391f3016b0131bfadf7df23cba1d5f1b54def6360853d8a51b3fd60e6c74856c51ff1b9f59af797a069b23d8669f1b3abb45b8cfccad2e9f4c19929eaaa11cd6ff390ef97a4c52e8106260a164491bffbc94411f1bc7b341694d048a9dffff1bb8ae97111355852fbf1b69b7647111869db34b2f6016316330849c26e2c41bf59e9d04113c9a0549f8a928de48fd9c6dc44acbe984cc341f4655946846f23ab2c2bed047edea72b7250b591b42fee22c3fda3c33ff1be65b41c69e6270d6bf1b0e972099a885716546f860368500941b3f94848f5f801a91484861377666c161221b967b4205722f7e681b05da81419561c8f5421f244c41f1a2beb35ff67972853fc1ffff", + "cborBytes": [ + 191, 27, 92, 163, 74, 171, 82, 83, 171, 209, 75, 42, 204, 40, 250, 184, 35, 158, 58, 104, 123, 171, 27, 122, 182, + 241, 253, 26, 222, 135, 86, 74, 243, 66, 247, 145, 98, 250, 106, 141, 75, 114, 27, 123, 119, 164, 62, 111, 31, 25, + 236, 159, 27, 87, 75, 57, 31, 48, 22, 176, 19, 27, 250, 223, 125, 242, 60, 186, 29, 95, 27, 84, 222, 246, 54, 8, + 83, 216, 165, 27, 63, 214, 14, 108, 116, 133, 108, 81, 255, 27, 159, 89, 175, 121, 122, 6, 155, 35, 216, 102, 159, + 27, 58, 187, 69, 184, 207, 204, 173, 46, 159, 76, 25, 146, 158, 170, 161, 28, 214, 255, 57, 14, 249, 122, 76, 82, + 232, 16, 98, 96, 161, 100, 73, 27, 255, 188, 148, 65, 31, 27, 199, 179, 65, 105, 77, 4, 138, 157, 255, 255, 27, + 184, 174, 151, 17, 19, 85, 133, 47, 191, 27, 105, 183, 100, 113, 17, 134, 157, 179, 75, 47, 96, 22, 49, 99, 48, + 132, 156, 38, 226, 196, 27, 245, 158, 157, 4, 17, 60, 154, 5, 73, 248, 169, 40, 222, 72, 253, 156, 109, 196, 74, + 203, 233, 132, 204, 52, 31, 70, 85, 148, 104, 70, 242, 58, 178, 194, 190, 208, 71, 237, 234, 114, 183, 37, 11, 89, + 27, 66, 254, 226, 44, 63, 218, 60, 51, 255, 27, 230, 91, 65, 198, 158, 98, 112, 214, 191, 27, 14, 151, 32, 153, + 168, 133, 113, 101, 70, 248, 96, 54, 133, 0, 148, 27, 63, 148, 132, 143, 95, 128, 26, 145, 72, 72, 97, 55, 118, + 102, 193, 97, 34, 27, 150, 123, 66, 5, 114, 47, 126, 104, 27, 5, 218, 129, 65, 149, 97, 200, 245, 66, 31, 36, 76, + 65, 241, 162, 190, 179, 95, 246, 121, 114, 133, 63, 193, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3502, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "66000790" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1388560941545573515" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17023669851557160309" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f166d4d669d090" + }, + { + "_tag": "ByteArray", + "bytearray": "9a60b60d2eea1a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6654715404262422938" + } + } + } + ] + }, + "cborHex": "bf44660007909f1b134528d1c5ce4c8b1bec403988e397657547f166d4d669d090479a60b60d2eea1aff41fb1b5c5a4c66e861b99aff", + "cborBytes": [ + 191, 68, 102, 0, 7, 144, 159, 27, 19, 69, 40, 209, 197, 206, 76, 139, 27, 236, 64, 57, 136, 227, 151, 101, 117, + 71, 241, 102, 212, 214, 105, 208, 144, 71, 154, 96, 182, 13, 46, 234, 26, 255, 65, 251, 27, 92, 90, 76, 102, 232, + 97, 185, 154, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3503, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e9cd0a48f5313bc50fb9b46" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12637037388363497507" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "592867b613a3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15729173957115981064" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9599018bf2b6beeaf5e6df59" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1303057785720449249" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16177849013278921592" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1866b4b33812706d5ed11c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8137026867857726674" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e2" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "19e8e82108e74833" + } + ] + } + } + ] + }, + "cborHex": "bf4c2e9cd0a48f5313bc50fb9b461baf5fc68d02bc802346592867b613a31bda49406094392d084c9599018bf2b6beeaf5e6df599f1b12156426f7aca8e11be08343f6b264d3784b1866b4b33812706d5ed11c1b70ec86d312781cd2ff41e29f4819e8e82108e74833ffff", + "cborBytes": [ + 191, 76, 46, 156, 208, 164, 143, 83, 19, 188, 80, 251, 155, 70, 27, 175, 95, 198, 141, 2, 188, 128, 35, 70, 89, + 40, 103, 182, 19, 163, 27, 218, 73, 64, 96, 148, 57, 45, 8, 76, 149, 153, 1, 139, 242, 182, 190, 234, 245, 230, + 223, 89, 159, 27, 18, 21, 100, 38, 247, 172, 168, 225, 27, 224, 131, 67, 246, 178, 100, 211, 120, 75, 24, 102, + 180, 179, 56, 18, 112, 109, 94, 209, 28, 27, 112, 236, 134, 211, 18, 120, 28, 210, 255, 65, 226, 159, 72, 25, 232, + 232, 33, 8, 231, 72, 51, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3504, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4085749734788398455" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8495508049058533459" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4540715075336844695" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13815780580083959647" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8472339884491025442" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4063586093574209893" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15493637215736685823" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ed03b8e8b12a96" + } + } + ] + } + } + ] + }, + "cborHex": "bf02bf1b38b37fbc8f357d771b75e61b8f3a9b1053ff13bf1b3f03dc4da3b6b5971bbfbb833d0aa5075f1b7593cc3c8f762c221b3864c205b5b541651bd70474f57ac1e4ff47ed03b8e8b12a96ffff", + "cborBytes": [ + 191, 2, 191, 27, 56, 179, 127, 188, 143, 53, 125, 119, 27, 117, 230, 27, 143, 58, 155, 16, 83, 255, 19, 191, 27, + 63, 3, 220, 77, 163, 182, 181, 151, 27, 191, 187, 131, 61, 10, 165, 7, 95, 27, 117, 147, 204, 60, 143, 118, 44, + 34, 27, 56, 100, 194, 5, 181, 181, 65, 101, 27, 215, 4, 116, 245, 122, 193, 228, 255, 71, 237, 3, 184, 232, 177, + 42, 150, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3505, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14740013291031013642" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13410816949752052636" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e5dacf3c502d65ebbcfe752" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1492383570690175376" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bcc8f0bfe0470a90a9f1bba1ccaf655c23b9c4c9e5dacf3c502d65ebbcfe7521b14b602f3579df190ffff", + "cborBytes": [ + 191, 27, 204, 143, 11, 254, 4, 112, 169, 10, 159, 27, 186, 28, 202, 246, 85, 194, 59, 156, 76, 158, 93, 172, 243, + 197, 2, 214, 94, 187, 207, 231, 82, 27, 20, 182, 2, 243, 87, 157, 241, 144, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3506, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7794f68f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41f90e1e8d8e7d71a8da" + } + } + ] + }, + "cborHex": "bf447794f68f4a41f90e1e8d8e7d71a8daff", + "cborBytes": [191, 68, 119, 148, 246, 143, 74, 65, 249, 14, 30, 141, 142, 125, 113, 168, 218, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3507, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1651101684657499153" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10994591758696284852" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "a931f224443d71661a6e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10052233789093941120" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c32decf8dc0b8994" + }, + { + "_tag": "ByteArray", + "bytearray": "e08958e48a5c40b39e04c3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1662908885371766682" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bed243" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4124383773418107218" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3160007198140153452" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9261185282991259275" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8653483450825396711" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7909224414281989451" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9924900518030118601" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fce50c05" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10081833103793501865" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1c03eb76" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12067882509810278694" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e47e3c73ff52668c73" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13188716072574949773" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6d584988f29" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5820476963953631049" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9045137009996230628" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6761664866447873791" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18062321756480007394" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7783" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1837415731257166189" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4d9fb3964838" + }, + { + "_tag": "ByteArray", + "bytearray": "14bce3ee3ac5ff64e03496db" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3470812115042007326" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b16e9e43bfa0f2c11d8669f1b9894a2f3e38782b49f4aa931f224443d71661a6e1b8b80b55f461f8f8048c32decf8dc0b89944be08958e48a5c40b39e04c3ffff1b1713d6d21e6cc79a43bed2431b393cc130a3f8b152bf1b2bda99cde4d23e6c1b808656f26fc4fe8b1b78175959b42b51e71b6dc335b32e1ffd4b1b89bc546fd0468ec944fce50c051b8be9ddcac462b6a9441c03eb761ba779bb344c64212649e47e3c73ff52668c731bb707bb642550998d46b6d584988f29ff1b50c67cf5e3ccdf49a01b7d86c82ff9906fe41b5dd6425f06dd56ff1bfaaa41f071ccece29f4277831b197fcfdf5e4c496d464d9fb39648384c14bce3ee3ac5ff64e03496db1b302acd3abf33791effff", + "cborBytes": [ + 191, 27, 22, 233, 228, 59, 250, 15, 44, 17, 216, 102, 159, 27, 152, 148, 162, 243, 227, 135, 130, 180, 159, 74, + 169, 49, 242, 36, 68, 61, 113, 102, 26, 110, 27, 139, 128, 181, 95, 70, 31, 143, 128, 72, 195, 45, 236, 248, 220, + 11, 137, 148, 75, 224, 137, 88, 228, 138, 92, 64, 179, 158, 4, 195, 255, 255, 27, 23, 19, 214, 210, 30, 108, 199, + 154, 67, 190, 210, 67, 27, 57, 60, 193, 48, 163, 248, 177, 82, 191, 27, 43, 218, 153, 205, 228, 210, 62, 108, 27, + 128, 134, 86, 242, 111, 196, 254, 139, 27, 120, 23, 89, 89, 180, 43, 81, 231, 27, 109, 195, 53, 179, 46, 31, 253, + 75, 27, 137, 188, 84, 111, 208, 70, 142, 201, 68, 252, 229, 12, 5, 27, 139, 233, 221, 202, 196, 98, 182, 169, 68, + 28, 3, 235, 118, 27, 167, 121, 187, 52, 76, 100, 33, 38, 73, 228, 126, 60, 115, 255, 82, 102, 140, 115, 27, 183, + 7, 187, 100, 37, 80, 153, 141, 70, 182, 213, 132, 152, 143, 41, 255, 27, 80, 198, 124, 245, 227, 204, 223, 73, + 160, 27, 125, 134, 200, 47, 249, 144, 111, 228, 27, 93, 214, 66, 95, 6, 221, 86, 255, 27, 250, 170, 65, 240, 113, + 204, 236, 226, 159, 66, 119, 131, 27, 25, 127, 207, 223, 94, 76, 73, 109, 70, 77, 159, 179, 150, 72, 56, 76, 20, + 188, 227, 238, 58, 197, 255, 100, 224, 52, 150, 219, 27, 48, 42, 205, 58, 191, 51, 121, 30, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3508, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15379911932401757724" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b5d79c97a5f64" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "584bf74d9bff67" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d43ac1e26c122376f750" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b2b96a21260c7f7813e5605" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef5f443721" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84e6ca6ec0eae111ef37e9" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16488448470503275548" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1710548838046481621" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3072216509007582512" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17388113556155689766" + } + } + } + ] + }, + "cborHex": "bf1bd5706c6a8f992e1cbf476b5d79c97a5f6447584bf74d9bff674ad43ac1e26c122376f7504c9b2b96a21260c7f7813e560545ef5f4437214b84e6ca6ec0eae111ef37e9ff1be4d2bc863dae3c1cd8669f1b17bd171af6b7bcd59f1b2aa2b4a33c7cd530ffff41cc1bf14efd2734d06b26ff", + "cborBytes": [ + 191, 27, 213, 112, 108, 106, 143, 153, 46, 28, 191, 71, 107, 93, 121, 201, 122, 95, 100, 71, 88, 75, 247, 77, 155, + 255, 103, 74, 212, 58, 193, 226, 108, 18, 35, 118, 247, 80, 76, 155, 43, 150, 162, 18, 96, 199, 247, 129, 62, 86, + 5, 69, 239, 95, 68, 55, 33, 75, 132, 230, 202, 110, 192, 234, 225, 17, 239, 55, 233, 255, 27, 228, 210, 188, 134, + 61, 174, 60, 28, 216, 102, 159, 27, 23, 189, 23, 26, 246, 183, 188, 213, 159, 27, 42, 162, 180, 163, 60, 124, 213, + 48, 255, 255, 65, 204, 27, 241, 78, 253, 39, 52, 208, 107, 38, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3509, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1d1f04a209acb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "efbd1513f384" + } + ] + } + } + ] + }, + "cborHex": "bf47c1d1f04a209acb9f46efbd1513f384ffff", + "cborBytes": [191, 71, 193, 209, 240, 74, 32, 154, 203, 159, 70, 239, 189, 21, 19, 243, 132, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3510, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "32f407" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7617457580891302187" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ca2e0929ad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6529213540497553796" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f723a5769445ec7052bc7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "37a7f436d3bff10b51" + } + } + ] + }, + "cborHex": "bf4332f407d8669f1b69b6a54f90a1e92b9f45ca2e0929ad1b5a9c6d1f3006f984ffff4b8f723a5769445ec7052bc74937a7f436d3bff10b51ff", + "cborBytes": [ + 191, 67, 50, 244, 7, 216, 102, 159, 27, 105, 182, 165, 79, 144, 161, 233, 43, 159, 69, 202, 46, 9, 41, 173, 27, + 90, 156, 109, 31, 48, 6, 249, 132, 255, 255, 75, 143, 114, 58, 87, 105, 68, 94, 199, 5, 43, 199, 73, 55, 167, 244, + 54, 211, 191, 241, 11, 81, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3511, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "63d729ad648c22c9604b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13536692994345730619" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9a613fd0c61967e8057bcf0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2b" + }, + { + "_tag": "ByteArray", + "bytearray": "dfae21d807bfde540cf16935" + } + ] + } + } + ] + }, + "cborHex": "bf4a63d729ad648c22c9604b1bbbdbfe8ed17f023b4cd9a613fd0c61967e8057bcf09f412b4cdfae21d807bfde540cf16935ffff", + "cborBytes": [ + 191, 74, 99, 215, 41, 173, 100, 140, 34, 201, 96, 75, 27, 187, 219, 254, 142, 209, 127, 2, 59, 76, 217, 166, 19, + 253, 12, 97, 150, 126, 128, 87, 188, 240, 159, 65, 43, 76, 223, 174, 33, 216, 7, 191, 222, 84, 12, 241, 105, 53, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3512, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "58e05484" + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffecd8669f1bfffffffffffffff19f4458e05484ffffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 236, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, 159, + 68, 88, 224, 84, 132, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3513, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1257626249327147233" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "013c7908ccf8db51" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "313e1e6d13820adbf1e64603" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25aec1b24ee2883c76915d25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e984d630c4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6de71fc94a5b2d6f6a6c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70f78d7680285b6edaf5ab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76d8a778e12870351128" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12036392504495194131" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b044" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "775f8becd1" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5434587902073703350" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9785209006703421086" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e35d63b4918d8101e259" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17974248933796580972" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dfcc6ca7cb" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6018174958580411671" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12075945291739342986" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12539245379942076058" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13391701519831796951" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10527274533412303018" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12732516410323904940" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14012827444156610396" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11640287529085271497" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14861803584385569286" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af7bb7743943" + } + } + ] + }, + "cborHex": "bf1b1173fc691b59f8e1bf48013c7908ccf8db514c313e1e6d13820adbf1e646034c25aec1b24ee2883c76915d2545e984d630c44a6de71fc94a5b2d6f6a6c4b70f78d7680285b6edaf5ab4a76d8a778e128703511281ba709db36179c401342b04445775f8becd1ff1b4b6b88e73bbd0bb6bf1b87cc0bbf5182a69e4ae35d63b4918d8101e2591bf9715c2c73638e6c45dfcc6ca7cbff1b5384da3d3a562d179f1ba7966043012ca88a1bae04593cbee7ce9a1bb9d8e1947ba20cd7ff1b92186469890e70aaa01bb0b2fc37263029ac9f1bc27790513bccb75c1ba18a9bd5b6897dc9ff1bce3fbb9e68edd20646af7bb7743943ff", + "cborBytes": [ + 191, 27, 17, 115, 252, 105, 27, 89, 248, 225, 191, 72, 1, 60, 121, 8, 204, 248, 219, 81, 76, 49, 62, 30, 109, 19, + 130, 10, 219, 241, 230, 70, 3, 76, 37, 174, 193, 178, 78, 226, 136, 60, 118, 145, 93, 37, 69, 233, 132, 214, 48, + 196, 74, 109, 231, 31, 201, 74, 91, 45, 111, 106, 108, 75, 112, 247, 141, 118, 128, 40, 91, 110, 218, 245, 171, + 74, 118, 216, 167, 120, 225, 40, 112, 53, 17, 40, 27, 167, 9, 219, 54, 23, 156, 64, 19, 66, 176, 68, 69, 119, 95, + 139, 236, 209, 255, 27, 75, 107, 136, 231, 59, 189, 11, 182, 191, 27, 135, 204, 11, 191, 81, 130, 166, 158, 74, + 227, 93, 99, 180, 145, 141, 129, 1, 226, 89, 27, 249, 113, 92, 44, 115, 99, 142, 108, 69, 223, 204, 108, 167, 203, + 255, 27, 83, 132, 218, 61, 58, 86, 45, 23, 159, 27, 167, 150, 96, 67, 1, 44, 168, 138, 27, 174, 4, 89, 60, 190, + 231, 206, 154, 27, 185, 216, 225, 148, 123, 162, 12, 215, 255, 27, 146, 24, 100, 105, 137, 14, 112, 170, 160, 27, + 176, 178, 252, 55, 38, 48, 41, 172, 159, 27, 194, 119, 144, 81, 59, 204, 183, 92, 27, 161, 138, 155, 213, 182, + 137, 125, 201, 255, 27, 206, 63, 187, 158, 104, 237, 210, 6, 70, 175, 123, 183, 116, 57, 67, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3514, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17feed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17813784061560097301" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db3987c63ed605180bd7c109" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2395920720403062695" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12963929825699707535" + } + }, + { + "_tag": "ByteArray", + "bytearray": "119195" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13448069781131428124" + } + } + ] + } + } + ] + }, + "cborHex": "bf4317feed1bf7374638f6ce0a154cdb3987c63ed605180bd7c109d8669f1b21400533799f5fa79f1bb3e9217d99ec3a8f431191951bbaa124370b01011cffffff", + "cborBytes": [ + 191, 67, 23, 254, 237, 27, 247, 55, 70, 56, 246, 206, 10, 21, 76, 219, 57, 135, 198, 62, 214, 5, 24, 11, 215, 193, + 9, 216, 102, 159, 27, 33, 64, 5, 51, 121, 159, 95, 167, 159, 27, 179, 233, 33, 125, 153, 236, 58, 143, 67, 17, + 145, 149, 27, 186, 161, 36, 55, 11, 1, 1, 28, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3515, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "075edb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ba3a945272c6502d2cdc07" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c6bbcf3e0b76e935" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8186267097582255780" + } + }, + { + "_tag": "ByteArray", + "bytearray": "98c386d537" + }, + { + "_tag": "ByteArray", + "bytearray": "aa" + } + ] + } + } + ] + }, + "cborHex": "bf43075edb4bba3a945272c6502d2cdc0748c6bbcf3e0b76e9359f1b719b768d73dbbea44598c386d53741aaffff", + "cborBytes": [ + 191, 67, 7, 94, 219, 75, 186, 58, 148, 82, 114, 198, 80, 45, 44, 220, 7, 72, 198, 187, 207, 62, 11, 118, 233, 53, + 159, 27, 113, 155, 118, 141, 115, 219, 190, 164, 69, 152, 195, 134, 213, 55, 65, 170, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3516, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3536090601837264681" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2702555326528995980" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3112b7aad81b7f29d905059f1b258167c02f99c28cffff", + "cborBytes": [ + 191, 27, 49, 18, 183, 170, 216, 27, 127, 41, 217, 5, 5, 159, 27, 37, 129, 103, 192, 47, 153, 194, 140, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3517, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00fb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5746312911087388259" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11008042779189492896" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b7271de6040acb78abb8cf64" + } + ] + } + } + ] + }, + "cborHex": "bf4200fbd8669f1b4fbf0125b99ac6639f1b98c46c95a5e4bca04cb7271de6040acb78abb8cf64ffffff", + "cborBytes": [ + 191, 66, 0, 251, 216, 102, 159, 27, 79, 191, 1, 37, 185, 154, 198, 99, 159, 27, 152, 196, 108, 149, 165, 228, 188, + 160, 76, 183, 39, 29, 230, 4, 10, 203, 120, 171, 184, 207, 100, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3518, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "26c28bad8af3f4ad6334" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12640640096812667409" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65ad1e5a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "009280a1489d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16723981983512898179" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4011597303323946119" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fae5ea6b6b94d1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6329113863824717541" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9098000695569509994" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6431497558284482652" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5466f5" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17566077711966810224" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16310765229957352338" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "588a20" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9ef7880fe908bc2e270ed60" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a26c28bad8af3f4ad63341baf6c9331f01412114465ad1e5a9f46009280a1489d1be8178501ad51aa831b37ac0e7e3689ec87ff47fae5ea6b6b94d1bf1b57d58786ac45b6e51b7e42976de9ad6e6a1b594144f42756b85c435466f51bf3c73e9c26b030701be25b7a8efa668b9243588a204cb9ef7880fe908bc2e270ed60ffff", + "cborBytes": [ + 191, 74, 38, 194, 139, 173, 138, 243, 244, 173, 99, 52, 27, 175, 108, 147, 49, 240, 20, 18, 17, 68, 101, 173, 30, + 90, 159, 70, 0, 146, 128, 161, 72, 157, 27, 232, 23, 133, 1, 173, 81, 170, 131, 27, 55, 172, 14, 126, 54, 137, + 236, 135, 255, 71, 250, 229, 234, 107, 107, 148, 209, 191, 27, 87, 213, 135, 134, 172, 69, 182, 229, 27, 126, 66, + 151, 109, 233, 173, 110, 106, 27, 89, 65, 68, 244, 39, 86, 184, 92, 67, 84, 102, 245, 27, 243, 199, 62, 156, 38, + 176, 48, 112, 27, 226, 91, 122, 142, 250, 102, 139, 146, 67, 88, 138, 32, 76, 185, 239, 120, 128, 254, 144, 139, + 194, 226, 112, 237, 96, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3519, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "12a2bf2e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "965076408523147944" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "22c7016f4bab54baf1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "141bcc05bdc58f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dda080b6eba62eafc7ef" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "309b02dc9db818b42b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8780949513178092801" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a49f37cc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa0560ceff" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3be79f5a02ab718" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6283384318539720928" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15073165118568460196" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f075163a06e8fdc54731" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2529227320425419557" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12128031132417006179" + } + } + ] + } + } + ] + }, + "cborHex": "bf4412a2bf2e1b0d64a3e15f21caa84922c7016f4bab54baf147141bcc05bdc58f4adda080b6eba62eafc7efbf49309b02dc9db818b42b1b79dc330f0b9e950144a49f37cc45fa0560ceff48e3be79f5a02ab7181b573310bf35d1e8e0ff41e71bd12ea3d07514efa44af075163a06e8fdc54731d8669f1b23199ed8f62b93259f1ba84f6c0ed0981a63ffffff", + "cborBytes": [ + 191, 68, 18, 162, 191, 46, 27, 13, 100, 163, 225, 95, 33, 202, 168, 73, 34, 199, 1, 111, 75, 171, 84, 186, 241, + 71, 20, 27, 204, 5, 189, 197, 143, 74, 221, 160, 128, 182, 235, 166, 46, 175, 199, 239, 191, 73, 48, 155, 2, 220, + 157, 184, 24, 180, 43, 27, 121, 220, 51, 15, 11, 158, 149, 1, 68, 164, 159, 55, 204, 69, 250, 5, 96, 206, 255, 72, + 227, 190, 121, 245, 160, 42, 183, 24, 27, 87, 51, 16, 191, 53, 209, 232, 224, 255, 65, 231, 27, 209, 46, 163, 208, + 117, 20, 239, 164, 74, 240, 117, 22, 58, 6, 232, 253, 197, 71, 49, 216, 102, 159, 27, 35, 25, 158, 216, 246, 43, + 147, 37, 159, 27, 168, 79, 108, 14, 208, 152, 26, 99, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3520, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6a3e1ca4f3815acc9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1598770138409061590" + } + } + } + ] + }, + "cborHex": "bf49f6a3e1ca4f3815acc91b162ff8f8615fccd6ff", + "cborBytes": [191, 73, 246, 163, 225, 202, 79, 56, 21, 172, 201, 27, 22, 47, 248, 248, 97, 95, 204, 214, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3521, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12716515968478303212" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3591616185805976886" + } + } + } + ] + }, + "cborHex": "bf1bb07a23e5f9bb53ec1b31d7fbe44c823536ff", + "cborBytes": [191, 27, 176, 122, 35, 229, 249, 187, 83, 236, 27, 49, 215, 251, 228, 76, 130, 53, 54, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3522, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27a1f16ff6fe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12967363617456058747" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf134627a1f16ff6fe1bb3f554818bcaf17b80ff", + "cborBytes": [191, 19, 70, 39, 161, 241, 111, 246, 254, 27, 179, 245, 84, 129, 139, 202, 241, 123, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3523, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6270924123493633444" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa358615" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12992531645742207273" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4095179115183253657" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9875215289337476369" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66122bdfaf510c3662" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11693823683374290151" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5706cc43fa440da444fa3586151bb44ebeb1c57c5129bf071b38d4ffb54418a8991b890bcffc097775114966122bdfaf510c36621ba248ceaef99314e70effff", + "cborBytes": [ + 191, 27, 87, 6, 204, 67, 250, 68, 13, 164, 68, 250, 53, 134, 21, 27, 180, 78, 190, 177, 197, 124, 81, 41, 191, 7, + 27, 56, 212, 255, 181, 68, 24, 168, 153, 27, 137, 11, 207, 252, 9, 119, 117, 17, 73, 102, 18, 43, 223, 175, 81, + 12, 54, 98, 27, 162, 72, 206, 174, 249, 147, 20, 231, 14, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3524, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16138891064155617294" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16161987749255994508" + } + } + } + ] + }, + "cborHex": "bf1bdff8dbea53b8b80e1be04aea3a629e5c8cff", + "cborBytes": [191, 27, 223, 248, 219, 234, 83, 184, 184, 14, 27, 224, 74, 234, 58, 98, 158, 92, 140, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3525, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7025452989736364952" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "203614103232395034" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12949154317696903187" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12493849836007711805" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b285d581268a30" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7293919117128621403" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1550634023894135156" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11267400578558899995" + } + }, + { + "_tag": "ByteArray", + "bytearray": "923342e0f17ae58bd7acbf15" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13615750824543143091" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5905378659618555777" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15015719294864634921" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8e931" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15735415533315350447" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14554504484218076176" + } + } + } + ] + }, + "cborHex": "bf1b617f6c458f712b98bf1b02d361f2b66d371a1bb3b4a33e900a28131bad63123b084fe43d47b285d581268a30ff1b653934cacce1dd5b9f1b1584f56ddad831741b9c5dd9210308b71b4c923342e0f17ae58bd7acbf15ff1bbcf4dd3c4f2044b31b51f41e9a56bc87811bd0628d245962b42943a8e9311bda5f6d0ec86cdfaf1bc9fbfcb71fa5fc10ff", + "cborBytes": [ + 191, 27, 97, 127, 108, 69, 143, 113, 43, 152, 191, 27, 2, 211, 97, 242, 182, 109, 55, 26, 27, 179, 180, 163, 62, + 144, 10, 40, 19, 27, 173, 99, 18, 59, 8, 79, 228, 61, 71, 178, 133, 213, 129, 38, 138, 48, 255, 27, 101, 57, 52, + 202, 204, 225, 221, 91, 159, 27, 21, 132, 245, 109, 218, 216, 49, 116, 27, 156, 93, 217, 33, 3, 8, 183, 27, 76, + 146, 51, 66, 224, 241, 122, 229, 139, 215, 172, 191, 21, 255, 27, 188, 244, 221, 60, 79, 32, 68, 179, 27, 81, 244, + 30, 154, 86, 188, 135, 129, 27, 208, 98, 141, 36, 89, 98, 180, 41, 67, 168, 233, 49, 27, 218, 95, 109, 14, 200, + 108, 223, 175, 27, 201, 251, 252, 183, 31, 165, 252, 16, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3526, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17465f36a539" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "615462923265174170" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17857550452859133059" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13849583111688794589" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d405fc43005" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16846140807922919269" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "905d9d48398664" + } + } + ] + } + } + ] + }, + "cborHex": "bf4617465f36a539bf1b088a904491a4ea9a1bf7d2c3860548dc831bc0339a763b75b1dd460d405fc430051be9c983cf6475276547905d9d48398664ffff", + "cborBytes": [ + 191, 70, 23, 70, 95, 54, 165, 57, 191, 27, 8, 138, 144, 68, 145, 164, 234, 154, 27, 247, 210, 195, 134, 5, 72, + 220, 131, 27, 192, 51, 154, 118, 59, 117, 177, 221, 70, 13, 64, 95, 196, 48, 5, 27, 233, 201, 131, 207, 100, 117, + 39, 101, 71, 144, 93, 157, 72, 57, 134, 100, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3527, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21a21f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12626852169570659041" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e44e0aa102" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2995154766888067313" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3385029243101236325" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aefdee46" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14259879403805804192" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e930cd3b0da832f507" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13319001371082856699" + } + }, + { + "_tag": "ByteArray", + "bytearray": "363b0c848fd6966084" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15811595860648316247" + } + }, + { + "_tag": "ByteArray", + "bytearray": "46b9ab3450c10ee6455639" + }, + { + "_tag": "ByteArray", + "bytearray": "d63aed74bc0b4b" + } + ] + } + } + ] + }, + "cborHex": "bf4321a21fd8669f1baf3b9725f6a12ae19f45e44e0aa102001b2990ed6437ae60f1031b2efa0a29755bcc65ffff44aefdee461bc5e544c403c106a041e01bffffffffffffffff49e930cd3b0da832f507d905079f1bb8d6992e0e5598fb49363b0c848fd69660841bdb6e12a96dfacd574b46b9ab3450c10ee645563947d63aed74bc0b4bffff", + "cborBytes": [ + 191, 67, 33, 162, 31, 216, 102, 159, 27, 175, 59, 151, 37, 246, 161, 42, 225, 159, 69, 228, 78, 10, 161, 2, 0, 27, + 41, 144, 237, 100, 55, 174, 96, 241, 3, 27, 46, 250, 10, 41, 117, 91, 204, 101, 255, 255, 68, 174, 253, 238, 70, + 27, 197, 229, 68, 196, 3, 193, 6, 160, 65, 224, 27, 255, 255, 255, 255, 255, 255, 255, 255, 73, 233, 48, 205, 59, + 13, 168, 50, 245, 7, 217, 5, 7, 159, 27, 184, 214, 153, 46, 14, 85, 152, 251, 73, 54, 59, 12, 132, 143, 214, 150, + 96, 132, 27, 219, 110, 18, 169, 109, 250, 205, 87, 75, 70, 185, 171, 52, 80, 193, 14, 230, 69, 86, 57, 71, 214, + 58, 237, 116, 188, 11, 75, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3528, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7b56dd4755f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0306a2a7" + } + ] + } + } + ] + }, + "cborHex": "bf0d42fd0346b7b56dd4755f9f440306a2a7ffff", + "cborBytes": [191, 13, 66, 253, 3, 70, 183, 181, 109, 212, 117, 95, 159, 68, 3, 6, 162, 167, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3529, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1720360618093408677" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ba4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7447390095633772070" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6155432064429027983" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b379420a1e98" + }, + { + "_tag": "ByteArray", + "bytearray": "a9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6489303975439215739" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12817796747556975625" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8509593884169485047" + } + } + } + ] + }, + "cborHex": "bf1b17dff2de070771a5425ba41b675a71d582036e269f1b556c7cd98757728f46b379420a1e9841a91b5a0ea3957795ac7bff1bb1e1f63af54a74091b7618268d48c23af7ff", + "cborBytes": [ + 191, 27, 23, 223, 242, 222, 7, 7, 113, 165, 66, 91, 164, 27, 103, 90, 113, 213, 130, 3, 110, 38, 159, 27, 85, 108, + 124, 217, 135, 87, 114, 143, 70, 179, 121, 66, 10, 30, 152, 65, 169, 27, 90, 14, 163, 149, 119, 149, 172, 123, + 255, 27, 177, 225, 246, 58, 245, 74, 116, 9, 27, 118, 24, 38, 141, 72, 194, 58, 247, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3530, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00adf239f40f46c5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16580734316034284073" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e66b206" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9805483593311734784" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "41d4686bf96cecb14b11" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5312657325280966902" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17274733112739916256" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10919604999267756124" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8573483582672548448" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6065a80ddf48c573" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fadc9d9ac8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86bb0510" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "908685c3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b6458ae53f6686941d66e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fcbdf7f4676332cc" + } + } + ] + }, + "cborHex": "bf4800adf239f40f46c59f1be61a9a030e5a5a29ff443e66b2061b881413605e444c004a41d4686bf96cecb14b11bf1b49ba59b08ebfb8f61befbc2e3d968a69e01b978a3ae46cef285c1b76fb21e4e8d73260ff486065a80ddf48c57345fadc9d9ac84486bb051044908685c34bb6458ae53f6686941d66e748fcbdf7f4676332ccff", + "cborBytes": [ + 191, 72, 0, 173, 242, 57, 244, 15, 70, 197, 159, 27, 230, 26, 154, 3, 14, 90, 90, 41, 255, 68, 62, 102, 178, 6, + 27, 136, 20, 19, 96, 94, 68, 76, 0, 74, 65, 212, 104, 107, 249, 108, 236, 177, 75, 17, 191, 27, 73, 186, 89, 176, + 142, 191, 184, 246, 27, 239, 188, 46, 61, 150, 138, 105, 224, 27, 151, 138, 58, 228, 108, 239, 40, 92, 27, 118, + 251, 33, 228, 232, 215, 50, 96, 255, 72, 96, 101, 168, 13, 223, 72, 197, 115, 69, 250, 220, 157, 154, 200, 68, + 134, 187, 5, 16, 68, 144, 134, 133, 195, 75, 182, 69, 138, 229, 63, 102, 134, 148, 29, 102, 231, 72, 252, 189, + 247, 244, 103, 99, 50, 204, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3531, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "420a5f68" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3702517298298498737" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6535347d45c26f6ce0fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16678233132867735714" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10047131531167799513" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "441929" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "739199ce5a7c2ac9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d3d3dee16330fc9d68781" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e66" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "460058768164854922" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b4375cff8a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4543039881059636851" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3f980708ef600003d51a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6660525758345181391" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "328265408142929191" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14445988046654109398" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12906178098875526341" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d57527b750" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4585641548551140332" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e0e8d5c9" + }, + { + "_tag": "ByteArray", + "bytearray": "042560535c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9891291828197531167" + } + } + ] + } + } + ] + }, + "cborHex": "bf44420a5f68d8669f1b3361fbddb3d22eb19f4a6535347d45c26f6ce0fb1be774fcab55bb50a241e51b8b6e94e546e218d9ffff4344192948739199ce5a7c2ac94b4d3d3dee16330fc9d6878180429e66bf1b066275031c451c8a45b4375cff8a1b3f0c1eb3a6fe16734a3f980708ef600003d51a1b5c6ef0e36380f8cf1b048e3ba644686d271bc87a75971e5b76d61bb31bf499df66ecc5ff45d57527b750d8669f1b3fa378b150a9b3ec9f44e0e8d5c945042560535c1b8944ed82ed701e1fffffff", + "cborBytes": [ + 191, 68, 66, 10, 95, 104, 216, 102, 159, 27, 51, 97, 251, 221, 179, 210, 46, 177, 159, 74, 101, 53, 52, 125, 69, + 194, 111, 108, 224, 251, 27, 231, 116, 252, 171, 85, 187, 80, 162, 65, 229, 27, 139, 110, 148, 229, 70, 226, 24, + 217, 255, 255, 67, 68, 25, 41, 72, 115, 145, 153, 206, 90, 124, 42, 201, 75, 77, 61, 61, 238, 22, 51, 15, 201, + 214, 135, 129, 128, 66, 158, 102, 191, 27, 6, 98, 117, 3, 28, 69, 28, 138, 69, 180, 55, 92, 255, 138, 27, 63, 12, + 30, 179, 166, 254, 22, 115, 74, 63, 152, 7, 8, 239, 96, 0, 3, 213, 26, 27, 92, 110, 240, 227, 99, 128, 248, 207, + 27, 4, 142, 59, 166, 68, 104, 109, 39, 27, 200, 122, 117, 151, 30, 91, 118, 214, 27, 179, 27, 244, 153, 223, 102, + 236, 197, 255, 69, 213, 117, 39, 183, 80, 216, 102, 159, 27, 63, 163, 120, 177, 80, 169, 179, 236, 159, 68, 224, + 232, 213, 201, 69, 4, 37, 96, 83, 92, 27, 137, 68, 237, 130, 237, 112, 30, 31, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3532, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9356067119556951604" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "246010693539927960" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d265519b176e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1626579251260434570" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "110bde364091" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7863619378896158011" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17438357015430985914" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15559092898714552539" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10419705619521451127" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18367842092138124350" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15965518195546604336" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15755535994579181523" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9907657971214912772" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3343422799183239106" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16741601303750795447" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3775588019103839756" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13183500143482577627" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4449311234287862867" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "331001" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6360657397151806200" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0985" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16438419045666840698" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b81d76d7983e77e34bf1b036a016c1f65179846d265519b176e1b1692c5360666288a46110bde3640911b6d2130296ffbbd3b1bf2017d502b3478ba1bd7ed008e472f08db1b909a3b0e13b7b4771bfee7af10d85c543e1bdd90ea35bc974330ff1bdaa6e882bac5dfd3d8669f1b897f126e8a550d0480ff41cfbf1b2e663952574257c21be8561daf594860b71b3465954ca8e7b60c1bb6f53388049722db1b3dbf20fe7ee20453433310011b58459833d731b2f84209851be420ff070dfce07a41a7ffff", + "cborBytes": [ + 191, 27, 129, 215, 109, 121, 131, 231, 126, 52, 191, 27, 3, 106, 1, 108, 31, 101, 23, 152, 70, 210, 101, 81, 155, + 23, 110, 27, 22, 146, 197, 54, 6, 102, 40, 138, 70, 17, 11, 222, 54, 64, 145, 27, 109, 33, 48, 41, 111, 251, 189, + 59, 27, 242, 1, 125, 80, 43, 52, 120, 186, 27, 215, 237, 0, 142, 71, 47, 8, 219, 27, 144, 154, 59, 14, 19, 183, + 180, 119, 27, 254, 231, 175, 16, 216, 92, 84, 62, 27, 221, 144, 234, 53, 188, 151, 67, 48, 255, 27, 218, 166, 232, + 130, 186, 197, 223, 211, 216, 102, 159, 27, 137, 127, 18, 110, 138, 85, 13, 4, 128, 255, 65, 207, 191, 27, 46, + 102, 57, 82, 87, 66, 87, 194, 27, 232, 86, 29, 175, 89, 72, 96, 183, 27, 52, 101, 149, 76, 168, 231, 182, 12, 27, + 182, 245, 51, 136, 4, 151, 34, 219, 27, 61, 191, 32, 254, 126, 226, 4, 83, 67, 51, 16, 1, 27, 88, 69, 152, 51, + 215, 49, 178, 248, 66, 9, 133, 27, 228, 32, 255, 7, 13, 252, 224, 122, 65, 167, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3533, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2879973718972698640" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "684c1bf8a820686140040d6b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a44d51220378fc62f4d3f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9273493e4f883138d5c7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8564132708598213105" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f832" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fb8bf007232584eb045d2" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7257573814733576610" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16045775156354776394" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3613102212113258293" + } + }, + { + "_tag": "ByteArray", + "bytearray": "308956bcd597" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10844544414744247897" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dc557b7d85e5888860dc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12865918904024958053" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4217603449478200245" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7278105531274489510" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3d87c4" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17867295186301539650" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9455374291207968263" + } + } + } + ] + }, + "cborHex": "bf1b27f7b8d6b1d41010bf4c684c1bf8a820686140040d6b4b8a44d51220378fc62f4d3f4a9273493e4f883138d5c71b76d9e952e14ce9f142f8324b1fb8bf007232584eb045d2ff1b64b814eea65f19a2d8669f1bdeae0b7d94507d4a9f1b32245151a230573546308956bcd597ffff1b967f8fb037c6fe594adc557b7d85e5888860dc1bb28ced139f6404659f1b3a87effdd19c3bb51b6501066b6d6beea6433d87c4ff1bf7f5624e948cd5421b83383cd235cfd607ff", + "cborBytes": [ + 191, 27, 39, 247, 184, 214, 177, 212, 16, 16, 191, 76, 104, 76, 27, 248, 168, 32, 104, 97, 64, 4, 13, 107, 75, + 138, 68, 213, 18, 32, 55, 143, 198, 47, 77, 63, 74, 146, 115, 73, 62, 79, 136, 49, 56, 213, 199, 27, 118, 217, + 233, 82, 225, 76, 233, 241, 66, 248, 50, 75, 31, 184, 191, 0, 114, 50, 88, 78, 176, 69, 210, 255, 27, 100, 184, + 20, 238, 166, 95, 25, 162, 216, 102, 159, 27, 222, 174, 11, 125, 148, 80, 125, 74, 159, 27, 50, 36, 81, 81, 162, + 48, 87, 53, 70, 48, 137, 86, 188, 213, 151, 255, 255, 27, 150, 127, 143, 176, 55, 198, 254, 89, 74, 220, 85, 123, + 125, 133, 229, 136, 136, 96, 220, 27, 178, 140, 237, 19, 159, 100, 4, 101, 159, 27, 58, 135, 239, 253, 209, 156, + 59, 181, 27, 101, 1, 6, 107, 109, 107, 238, 166, 67, 61, 135, 196, 255, 27, 247, 245, 98, 78, 148, 140, 213, 66, + 27, 131, 56, 60, 210, 53, 207, 214, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3534, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10391335380048087004" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15601801382841208641" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15572405147535909886" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14198580124141397126" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "38be3ce5ba94373c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4525570531769240419" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3d493a731" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1a594d6d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8059683757515767113" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58d182734eef4962d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2000886107145365657" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b8aa9f356632699" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "afc0da28980cc561" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee0d07b5ae63c8f5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5362422517357028187" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9f80ce9ff397b37" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "94dfb473691ef84589b37a43" + } + } + ] + }, + "cborHex": "bf1b90357078f5b707dcd8669f1bd884bbb22072cf419f1bd81c4bf9bd57a3fe1bc50b7d65465ea486ffff4838be3ce5ba94373c1b3ece0e6bd014cb6345c3d493a731bf441a594d6d1b6fd9bface8b67d494958d182734eef4962d41b1bc493503469e899486b8aa9f35663269948afc0da28980cc56148ee0d07b5ae63c8f51b4a6b26de429f235bff48f9f80ce9ff397b374c94dfb473691ef84589b37a43ff", + "cborBytes": [ + 191, 27, 144, 53, 112, 120, 245, 183, 7, 220, 216, 102, 159, 27, 216, 132, 187, 178, 32, 114, 207, 65, 159, 27, + 216, 28, 75, 249, 189, 87, 163, 254, 27, 197, 11, 125, 101, 70, 94, 164, 134, 255, 255, 72, 56, 190, 60, 229, 186, + 148, 55, 60, 27, 62, 206, 14, 107, 208, 20, 203, 99, 69, 195, 212, 147, 167, 49, 191, 68, 26, 89, 77, 109, 27, + 111, 217, 191, 172, 232, 182, 125, 73, 73, 88, 209, 130, 115, 78, 239, 73, 98, 212, 27, 27, 196, 147, 80, 52, 105, + 232, 153, 72, 107, 138, 169, 243, 86, 99, 38, 153, 72, 175, 192, 218, 40, 152, 12, 197, 97, 72, 238, 13, 7, 181, + 174, 99, 200, 245, 27, 74, 107, 38, 222, 66, 159, 35, 91, 255, 72, 249, 248, 12, 233, 255, 57, 123, 55, 76, 148, + 223, 180, 115, 105, 30, 248, 69, 137, 179, 122, 67, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3535, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f6130a8a3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c09cb8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15161383541481148330" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f5117a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c77da0477858fe43" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17166096026370000890" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ee50a00bb71dd421fc79cc" + }, + { + "_tag": "ByteArray", + "bytearray": "610e635c9db9" + }, + { + "_tag": "ByteArray", + "bytearray": "6987626e917b103b154257" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6310639703942239238" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ce27ed32ac37abd82d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e68c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3771162042200604513" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2902968418681891801" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f095508e24" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6011901536033821567" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4901958548477827225" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8708950093841880926" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8fd97" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d47608011e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + ] + } + } + ] + }, + "cborHex": "bf450f6130a8a30043c09cb89f1bd2680e00a5700faa43f5117aff48c77da0477858fe43d8669f1bee3a3962d80747fa9f4bee50a00bb71dd421fc79cc46610e635c9db94b6987626e917b103b1542571b5793e56022f4140649ce27ed32ac37abd82dffff42e68cbf0a1b3455dbe59bcdbf611b28496a656db62bd941d5ff45f095508e24d8669f1b536e909837ebd37f9f1b4407415401b5d8991b78dc67f7e60cd75effff43f8fd979f45d47608011e14ffff", + "cborBytes": [ + 191, 69, 15, 97, 48, 168, 163, 0, 67, 192, 156, 184, 159, 27, 210, 104, 14, 0, 165, 112, 15, 170, 67, 245, 17, + 122, 255, 72, 199, 125, 160, 71, 120, 88, 254, 67, 216, 102, 159, 27, 238, 58, 57, 98, 216, 7, 71, 250, 159, 75, + 238, 80, 160, 11, 183, 29, 212, 33, 252, 121, 204, 70, 97, 14, 99, 92, 157, 185, 75, 105, 135, 98, 110, 145, 123, + 16, 59, 21, 66, 87, 27, 87, 147, 229, 96, 34, 244, 20, 6, 73, 206, 39, 237, 50, 172, 55, 171, 216, 45, 255, 255, + 66, 230, 140, 191, 10, 27, 52, 85, 219, 229, 155, 205, 191, 97, 27, 40, 73, 106, 101, 109, 182, 43, 217, 65, 213, + 255, 69, 240, 149, 80, 142, 36, 216, 102, 159, 27, 83, 110, 144, 152, 55, 235, 211, 127, 159, 27, 68, 7, 65, 84, + 1, 181, 216, 153, 27, 120, 220, 103, 247, 230, 12, 215, 94, 255, 255, 67, 248, 253, 151, 159, 69, 212, 118, 8, 1, + 30, 20, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3536, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4507cc06" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "15295caea8ebd0de49" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17533946895880219675" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12329761330870557870" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11675089385351553467" + } + } + ] + } + } + ] + }, + "cborHex": "bf444507cc069f4915295caea8ebd0de491bf35517cd8f80ec1b1bab1c1c9ac3e31cae41a31ba2063ff04ed021bbffff", + "cborBytes": [ + 191, 68, 69, 7, 204, 6, 159, 73, 21, 41, 92, 174, 168, 235, 208, 222, 73, 27, 243, 85, 23, 205, 143, 128, 236, 27, + 27, 171, 28, 28, 154, 195, 227, 28, 174, 65, 163, 27, 162, 6, 63, 240, 78, 208, 33, 187, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3537, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3496312307619617476" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7e89ae2e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5418716386926598765" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2442322971528133128" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15473572147891620436" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f" + } + } + ] + }, + "cborHex": "bf1b30856584ff7e5ac4447e89ae2e1b4b3325d825591a6d1b21e4dfcd78b5fa081bd6bd2be2d1754a54418fff", + "cborBytes": [ + 191, 27, 48, 133, 101, 132, 255, 126, 90, 196, 68, 126, 137, 174, 46, 27, 75, 51, 37, 216, 37, 89, 26, 109, 27, + 33, 228, 223, 205, 120, 181, 250, 8, 27, 214, 189, 43, 226, 209, 117, 74, 84, 65, 143, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3538, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "98" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10884679823673880753" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd0812" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13127384590418747847" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11322296855613905107" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8100497364147724307" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16264127458238695901" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1437214414193056" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dd8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2684961377964873514" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2bdde88944ba32e7733f59" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6210808404210154136" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c5e5a14edc3e294f955648" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12304546933933858356" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2246b17b12e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16022179475579586203" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11765643051172412935" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0c676" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2135468567534859140" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e428f8309e3621cf675e40" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12270085986322354803" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4f69ce7e54e2312316" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3083377396146370038" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6348184493847396791" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd5adf8d20a2354b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dd6568956e273" + } + } + ] + }, + "cborHex": "bf41981b970e26a14ff170b143bd0812d8669f1bb62dd6bbadd8a1c79f1b9d20e100886398d31b706abf6f360360131be1b5c9c091fe89ddffff41c3bf1b00051b238e9fc1a0422dd81b2542e625d13d572a4b2bdde88944ba32e7733f591b563139565cf4fa984bc5e5a14edc3e294f9556481baac2883e7f3fde3446b2246b17b12e1bde5a37580979c69b1ba347f6049b2cbe07ff43d0c6761b1da2b55914ed73844be428f8309e3621cf675e40d8669f1baa481a31e23e12739f494f69ce7e54e23123161b2aca5b67c5c5f5f61b58194829bc6ac1b7ffff48fd5adf8d20a2354b472dd6568956e273ff", + "cborBytes": [ + 191, 65, 152, 27, 151, 14, 38, 161, 79, 241, 112, 177, 67, 189, 8, 18, 216, 102, 159, 27, 182, 45, 214, 187, 173, + 216, 161, 199, 159, 27, 157, 32, 225, 0, 136, 99, 152, 211, 27, 112, 106, 191, 111, 54, 3, 96, 19, 27, 225, 181, + 201, 192, 145, 254, 137, 221, 255, 255, 65, 195, 191, 27, 0, 5, 27, 35, 142, 159, 193, 160, 66, 45, 216, 27, 37, + 66, 230, 37, 209, 61, 87, 42, 75, 43, 221, 232, 137, 68, 186, 50, 231, 115, 63, 89, 27, 86, 49, 57, 86, 92, 244, + 250, 152, 75, 197, 229, 161, 78, 220, 62, 41, 79, 149, 86, 72, 27, 170, 194, 136, 62, 127, 63, 222, 52, 70, 178, + 36, 107, 23, 177, 46, 27, 222, 90, 55, 88, 9, 121, 198, 155, 27, 163, 71, 246, 4, 155, 44, 190, 7, 255, 67, 208, + 198, 118, 27, 29, 162, 181, 89, 20, 237, 115, 132, 75, 228, 40, 248, 48, 158, 54, 33, 207, 103, 94, 64, 216, 102, + 159, 27, 170, 72, 26, 49, 226, 62, 18, 115, 159, 73, 79, 105, 206, 126, 84, 226, 49, 35, 22, 27, 42, 202, 91, 103, + 197, 197, 245, 246, 27, 88, 25, 72, 41, 188, 106, 193, 183, 255, 255, 72, 253, 90, 223, 141, 32, 162, 53, 75, 71, + 45, 214, 86, 137, 86, 226, 115, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3539, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebfb19c2abb0c285443060" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2763869431850441157" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "856a97e87c9c30ac8164e646" + }, + { + "_tag": "ByteArray", + "bytearray": "be2eb9c93450d8ba0e385a" + }, + { + "_tag": "ByteArray", + "bytearray": "cc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8119988656307501035" + } + } + ] + } + } + ] + }, + "cborHex": "bf4bebfb19c2abb0c285443060d8669f1b265b3c9acb0199c59f4c856a97e87c9c30ac8164e6464bbe2eb9c93450d8ba0e385a41cc1b70affea94f68f7ebffffff", + "cborBytes": [ + 191, 75, 235, 251, 25, 194, 171, 176, 194, 133, 68, 48, 96, 216, 102, 159, 27, 38, 91, 60, 154, 203, 1, 153, 197, + 159, 76, 133, 106, 151, 232, 124, 156, 48, 172, 129, 100, 230, 70, 75, 190, 46, 185, 201, 52, 80, 216, 186, 14, + 56, 90, 65, 204, 27, 112, 175, 254, 169, 79, 104, 247, 235, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3540, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0303fd36fb18f4d72b06f965" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16267672068333958207" + } + } + } + ] + }, + "cborHex": "bf1bffffffffffffffeed87c9f4c0303fd36fb18f4d72b06f965ff41021be1c2618e6b96f43fff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 238, 216, 124, 159, 76, 3, 3, 253, 54, 251, 24, 244, 215, 43, 6, 249, + 101, 255, 65, 2, 27, 225, 194, 97, 142, 107, 150, 244, 63, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3541, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "78e249e1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4756626018906249986" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a8e7592263" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + } + ] + }, + "cborHex": "bf089f4478e249e11b4202ee299a499b0245a8e7592263ff1bfffffffffffffff81bffffffffffffffeeff", + "cborBytes": [ + 191, 8, 159, 68, 120, 226, 73, 225, 27, 66, 2, 238, 41, 154, 73, 155, 2, 69, 168, 231, 89, 34, 99, 255, 27, 255, + 255, 255, 255, 255, 255, 255, 248, 27, 255, 255, 255, 255, 255, 255, 255, 238, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3542, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11698525698023629088" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11242082327712721599" + } + } + } + ] + }, + "cborHex": "bf1ba2598324127a21201b9c03e6505f036abfff", + "cborBytes": [191, 27, 162, 89, 131, 36, 18, 122, 33, 32, 27, 156, 3, 230, 80, 95, 3, 106, 191, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3543, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "dca931e9d0b3d3d05b086eb4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3508107724846599573" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6eb130" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2515335281257569987" + } + }, + { + "_tag": "ByteArray", + "bytearray": "68f3df51b9776eebc6282a" + }, + { + "_tag": "ByteArray", + "bytearray": "5625ba82a9ca93b6ba6709" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7247742949573447852" + } + } + ] + } + } + ] + }, + "cborHex": "bf4cdca931e9d0b3d3d05b086eb4d8669f1b30af4d6395490d959f436eb1301b22e8441c8a5d5ec34b68f3df51b9776eebc6282a4b5625ba82a9ca93b6ba67091b649527cffcaad0acffffff", + "cborBytes": [ + 191, 76, 220, 169, 49, 233, 208, 179, 211, 208, 91, 8, 110, 180, 216, 102, 159, 27, 48, 175, 77, 99, 149, 73, 13, + 149, 159, 67, 110, 177, 48, 27, 34, 232, 68, 28, 138, 93, 94, 195, 75, 104, 243, 223, 81, 185, 119, 110, 235, 198, + 40, 42, 75, 86, 37, 186, 130, 169, 202, 147, 182, 186, 103, 9, 27, 100, 149, 39, 207, 252, 170, 208, 172, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3544, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9275307580577691350" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2326204387016564637" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87366c07ce08754dd8" + }, + { + "_tag": "ByteArray", + "bytearray": "a0067ff9a74c7664a7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14028572436327864902" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "77f95cd3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4382734875274231623" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "01039f23" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12830473137939581610" + } + } + ] + } + } + ] + }, + "cborHex": "bf01d87e9f1b80b8831a12d236d61b20485690b313df9d4987366c07ce08754dd849a0067ff9a74c7664a71bc2af804de5289a46ff114477f95cd31b3cd29a25f96fbf479f4401039f231bb20eff5717148aaaffff", + "cborBytes": [ + 191, 1, 216, 126, 159, 27, 128, 184, 131, 26, 18, 210, 54, 214, 27, 32, 72, 86, 144, 179, 19, 223, 157, 73, 135, + 54, 108, 7, 206, 8, 117, 77, 216, 73, 160, 6, 127, 249, 167, 76, 118, 100, 167, 27, 194, 175, 128, 77, 229, 40, + 154, 70, 255, 17, 68, 119, 249, 92, 211, 27, 60, 210, 154, 37, 249, 111, 191, 71, 159, 68, 1, 3, 159, 35, 27, 178, + 14, 255, 87, 23, 20, 138, 170, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3545, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fefe6b257" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "019b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8340aa831bfaafc66d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3207cf89f85fd0428334949b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "33a616bf51e4550211" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54d5d3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11454517743249936764" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ffa6b5b2e790cf0d59a108d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb3ad0c86b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11201205858695416130" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2aa5197b3bcbc6a721714fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "594740" + } + } + ] + } + } + ] + }, + "cborHex": "bf453fefe6b257bf42019b498340aa831bfaafc66d4c3207cf89f85fd0428334949b4933a616bf51e45502114354d5d31b9ef69f32e7d2517c41954c6ffa6b5b2e790cf0d59a108d45cb3ad0c86b1b9b72ad61c79089424cd2aa5197b3bcbc6a721714fb43594740ffff", + "cborBytes": [ + 191, 69, 63, 239, 230, 178, 87, 191, 66, 1, 155, 73, 131, 64, 170, 131, 27, 250, 175, 198, 109, 76, 50, 7, 207, + 137, 248, 95, 208, 66, 131, 52, 148, 155, 73, 51, 166, 22, 191, 81, 228, 85, 2, 17, 67, 84, 213, 211, 27, 158, + 246, 159, 50, 231, 210, 81, 124, 65, 149, 76, 111, 250, 107, 91, 46, 121, 12, 240, 213, 154, 16, 141, 69, 203, 58, + 208, 200, 107, 27, 155, 114, 173, 97, 199, 144, 137, 66, 76, 210, 170, 81, 151, 179, 188, 188, 106, 114, 23, 20, + 251, 67, 89, 71, 64, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3546, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10538923746325476734" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11843852180839500867" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11324143243971758030" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1434521341886747728" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11945835143180997027" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6438384ebc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13523175813915331378" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "651444" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15956661965666953229" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "91dde0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e9879641e2bc2d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a4ecacffb701" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5266daa3b31fed" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9543b7b853c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4593274651817558721" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16961811789640325070" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b9241c74f46a8b57e1ba45dd0ce9b2c8c431b9d277048529387ce1b13e8718f5de054501ba5c821c55eae51a3456438384ebc1bbbabf8c0ff93cb32bf436514441bdd7173840890a80d4391dde047e9879641e2bc2d46a4ecacffb701475266daa3b31fed46f9543b7b853c1b3fbe96f5a96442c1ff1beb6475f4848b57ce80ff", + "cborBytes": [ + 191, 27, 146, 65, 199, 79, 70, 168, 181, 126, 27, 164, 93, 208, 206, 155, 44, 140, 67, 27, 157, 39, 112, 72, 82, + 147, 135, 206, 27, 19, 232, 113, 143, 93, 224, 84, 80, 27, 165, 200, 33, 197, 94, 174, 81, 163, 69, 100, 56, 56, + 78, 188, 27, 187, 171, 248, 192, 255, 147, 203, 50, 191, 67, 101, 20, 68, 27, 221, 113, 115, 132, 8, 144, 168, 13, + 67, 145, 221, 224, 71, 233, 135, 150, 65, 226, 188, 45, 70, 164, 236, 172, 255, 183, 1, 71, 82, 102, 218, 163, + 179, 31, 237, 70, 249, 84, 59, 123, 133, 60, 27, 63, 190, 150, 245, 169, 100, 66, 193, 255, 27, 235, 100, 117, + 244, 132, 139, 87, 206, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3547, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f4e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14441281134558347536" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf54de56856b18fc" + } + } + ] + } + } + ] + }, + "cborHex": "bf429f4ebf1bc869bcadbee6811048bf54de56856b18fcffff", + "cborBytes": [ + 191, 66, 159, 78, 191, 27, 200, 105, 188, 173, 190, 230, 129, 16, 72, 191, 84, 222, 86, 133, 107, 24, 252, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3548, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2eabc17de8e2be" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1608e6312f44" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14021251383529878289" + } + }, + { + "_tag": "ByteArray", + "bytearray": "98a6ab55f60b030354" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6aae740b7596" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14866083655728875763" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13117168511134368699" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11701754511594764991" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "974d1b03376c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14132900620331157426" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10797280827857980637" + } + } + ] + } + } + ] + }, + "cborHex": "bf472eabc17de8e2be9f461608e6312f441bc2957dd875c0b3114998a6ab55f60b030354ff466aae740b7596d8669f1bce4ef0522cf5c8f39f1bb6098b435d1a83bb1ba264fbbad06e3abfffff46974d1b03376cd8669f1bc422263c20bc87b29f1b95d7a5b4dc9c4cddffffff", + "cborBytes": [ + 191, 71, 46, 171, 193, 125, 232, 226, 190, 159, 70, 22, 8, 230, 49, 47, 68, 27, 194, 149, 125, 216, 117, 192, 179, + 17, 73, 152, 166, 171, 85, 246, 11, 3, 3, 84, 255, 70, 106, 174, 116, 11, 117, 150, 216, 102, 159, 27, 206, 78, + 240, 82, 44, 245, 200, 243, 159, 27, 182, 9, 139, 67, 93, 26, 131, 187, 27, 162, 100, 251, 186, 208, 110, 58, 191, + 255, 255, 70, 151, 77, 27, 3, 55, 108, 216, 102, 159, 27, 196, 34, 38, 60, 32, 188, 135, 178, 159, 27, 149, 215, + 165, 180, 220, 156, 76, 221, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3549, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11022674071114760607" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "278afc01271be7caa13f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1321479931184908327" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "437afe9733f80eb284aa70d4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b873f78e6f1865b6cf76" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbe0008c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e85f44d9bfe3738f27d64f" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b98f867aac3b4419fbf4a278afc01271be7caa13f1b1256d6fef41588274c437afe9733f80eb284aa70d44ab873f78e6f1865b6cf7644fbe0008c4be85f44d9bfe3738f27d64fffff", + "cborBytes": [ + 191, 27, 152, 248, 103, 170, 195, 180, 65, 159, 191, 74, 39, 138, 252, 1, 39, 27, 231, 202, 161, 63, 27, 18, 86, + 214, 254, 244, 21, 136, 39, 76, 67, 122, 254, 151, 51, 248, 14, 178, 132, 170, 112, 212, 74, 184, 115, 247, 142, + 111, 24, 101, 182, 207, 118, 68, 251, 224, 0, 140, 75, 232, 95, 68, 217, 191, 227, 115, 143, 39, 214, 79, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3550, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d60641040a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7f213168" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9422837509522951101" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8355780022959339642" + } + } + ] + } + } + ] + }, + "cborHex": "bf45d60641040a9f447f2131681b82c4a4ca63578bbd1b73f5b1a8f9cbf87affff", + "cborBytes": [ + 191, 69, 214, 6, 65, 4, 10, 159, 68, 127, 33, 49, 104, 27, 130, 196, 164, 202, 99, 87, 139, 189, 27, 115, 245, + 177, 168, 249, 203, 248, 122, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3551, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "32b2b304751af9be509f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8830187807597457746" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "943cdef79e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7eb197e03bd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2947000553213255589" + } + } + } + ] + }, + "cborHex": "bf4a32b2b304751af9be509fd8669f1b7a8b2106d3d4f15280ff45943cdef79e414146d7eb197e03bd1b28e5d963a727dfa5ff", + "cborBytes": [ + 191, 74, 50, 178, 179, 4, 117, 26, 249, 190, 80, 159, 216, 102, 159, 27, 122, 139, 33, 6, 211, 212, 241, 82, 128, + 255, 69, 148, 60, 222, 247, 158, 65, 65, 70, 215, 235, 25, 126, 3, 189, 27, 40, 229, 217, 99, 167, 39, 223, 165, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3552, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1ee9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02c5e301" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cae55e9f9bc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10143193626825916248" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f25feccd" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83a55e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2539055876615255215" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "716198766089309663" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ad88e0a35f4f57355111" + } + ] + } + } + ] + }, + "cborHex": "bf421ee94402c5e301467cae55e9f9bcbf1b8cc3dcdcd6f6ff5844f25feccdff4383a55ed8669f1b233c89de068534af9f1b09f072fbb1538ddf4aad88e0a35f4f57355111ffffff", + "cborBytes": [ + 191, 66, 30, 233, 68, 2, 197, 227, 1, 70, 124, 174, 85, 233, 249, 188, 191, 27, 140, 195, 220, 220, 214, 246, 255, + 88, 68, 242, 95, 236, 205, 255, 67, 131, 165, 94, 216, 102, 159, 27, 35, 60, 137, 222, 6, 133, 52, 175, 159, 27, + 9, 240, 114, 251, 177, 83, 141, 223, 74, 173, 136, 224, 163, 95, 79, 87, 53, 81, 17, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3553, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11785673565759452877" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7949151663752414060" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15166982128911238906" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10649321605521457986" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13073494088389568371" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "da49877b86a133fa33fa" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7eddeb950e1728c72b00" + } + } + ] + } + } + ] + }, + "cborHex": "bf1ba38f1faa35cdb6cdd8669f1b6e510f525fab036c80ff1bd27bf1e35c73c6fabf1b93c9fd93e3ffc3421bb56e619b67a127734ada49877b86a133fa33fa4a7eddeb950e1728c72b00ffff", + "cborBytes": [ + 191, 27, 163, 143, 31, 170, 53, 205, 182, 205, 216, 102, 159, 27, 110, 81, 15, 82, 95, 171, 3, 108, 128, 255, 27, + 210, 123, 241, 227, 92, 115, 198, 250, 191, 27, 147, 201, 253, 147, 227, 255, 195, 66, 27, 181, 110, 97, 155, 103, + 161, 39, 115, 74, 218, 73, 135, 123, 134, 161, 51, 250, 51, 250, 74, 126, 221, 235, 149, 14, 23, 40, 199, 43, 0, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3554, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13826931660886191540" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2a29242f4726" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17976288237950592422" + } + }, + { + "_tag": "ByteArray", + "bytearray": "90ebd03c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "135253043159015085" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8410241599276191321" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1686151534688625921" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "03042a0006fcfe07970505" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7606464619110496258" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "570434488091935357" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6982297126714536562" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90f7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7454558517803789015" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14429570336613527406" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15196895330403372180" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07c8" + } + } + ] + }, + "cborHex": "bf0dd8669f1bbfe321165cb92db49f462a29242f47261bf9789ae8f313e5a64490ebd03c1b01e083ed18489ead1b74b72e2cd8120e59ffff1b176669e31e986501d8669f1bfffffffffffffffe9f4b03042a0006fcfe0797050508ffff1b698f974532a87802bf1b07ea9725065a027d1b60e61a3e320cf2724290f71b6773e979db0eaad7ff1bc84021c51f5cef6e1bfffffffffffffff91bd2e637c9517c4c944207c8ff", + "cborBytes": [ + 191, 13, 216, 102, 159, 27, 191, 227, 33, 22, 92, 185, 45, 180, 159, 70, 42, 41, 36, 47, 71, 38, 27, 249, 120, + 154, 232, 243, 19, 229, 166, 68, 144, 235, 208, 60, 27, 1, 224, 131, 237, 24, 72, 158, 173, 27, 116, 183, 46, 44, + 216, 18, 14, 89, 255, 255, 27, 23, 102, 105, 227, 30, 152, 101, 1, 216, 102, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 254, 159, 75, 3, 4, 42, 0, 6, 252, 254, 7, 151, 5, 5, 8, 255, 255, 27, 105, 143, 151, 69, 50, 168, 120, + 2, 191, 27, 7, 234, 151, 37, 6, 90, 2, 125, 27, 96, 230, 26, 62, 50, 12, 242, 114, 66, 144, 247, 27, 103, 115, + 233, 121, 219, 14, 170, 215, 255, 27, 200, 64, 33, 197, 31, 92, 239, 110, 27, 255, 255, 255, 255, 255, 255, 255, + 249, 27, 210, 230, 55, 201, 81, 124, 76, 148, 66, 7, 200, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3555, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e51b4c40" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf44e51b4c40a0ff", + "cborBytes": [191, 68, 229, 27, 76, 64, 160, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3556, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9996346555416107957" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d670da80db847d7dce19c59c" + } + } + ] + }, + "cborHex": "bf1b8aba283aaf46dbb54cd670da80db847d7dce19c59cff", + "cborBytes": [ + 191, 27, 138, 186, 40, 58, 175, 70, 219, 181, 76, 214, 112, 218, 128, 219, 132, 125, 125, 206, 25, 197, 156, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3557, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11136060311762446546" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3055037643420556325" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10752642859543598798" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9820222262554878624" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17123471311822872120" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14893899990812618161" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17891393154748296419" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b9a8b3bda27ed28d2bf1b2a65ac8ce7875c251b95390fb5f7bc96ce1b8848701e36f762a01beda2ca6f1ecb5e381bceb1c32160946db11bf84aff4815a0ace3ffff", + "cborBytes": [ + 191, 27, 154, 139, 59, 218, 39, 237, 40, 210, 191, 27, 42, 101, 172, 140, 231, 135, 92, 37, 27, 149, 57, 15, 181, + 247, 188, 150, 206, 27, 136, 72, 112, 30, 54, 247, 98, 160, 27, 237, 162, 202, 111, 30, 203, 94, 56, 27, 206, 177, + 195, 33, 96, 148, 109, 177, 27, 248, 74, 255, 72, 21, 160, 172, 227, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3558, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "44" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17633532510263916427" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee5eb912198d638bbf3b94" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "964182506549328020" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12298421384187269850" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9664612464839043629" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0ca322af8057bc60b2c5f9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14390059572962822140" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "937d0acb8bcda017" + } + } + ] + } + } + ] + }, + "cborHex": "bf41441bf4b6e4644195378b4bee5eb912198d638bbf3b94bf1b0d6176e19984b8941baaacc516ce8cd2da1b861f99d4da8b2a2d4b0ca322af8057bc60b2c5f91bc7b3c2f0972887fc48937d0acb8bcda017ffff", + "cborBytes": [ + 191, 65, 68, 27, 244, 182, 228, 100, 65, 149, 55, 139, 75, 238, 94, 185, 18, 25, 141, 99, 139, 191, 59, 148, 191, + 27, 13, 97, 118, 225, 153, 132, 184, 148, 27, 170, 172, 197, 22, 206, 140, 210, 218, 27, 134, 31, 153, 212, 218, + 139, 42, 45, 75, 12, 163, 34, 175, 128, 87, 188, 96, 178, 197, 249, 27, 199, 179, 194, 240, 151, 40, 135, 252, 72, + 147, 125, 10, 203, 139, 205, 160, 23, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3559, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d69346ae" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "34" + } + } + ] + }, + "cborHex": "bf44d69346ae4134ff", + "cborBytes": [191, 68, 214, 147, 70, 174, 65, 52, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3560, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f96a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a8057a2ccb863c02a520d33f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8b6537177aba9841029701" + }, + { + "_tag": "ByteArray", + "bytearray": "a35c751ca9af" + } + ] + } + } + ] + }, + "cborHex": "bf430f96a541a64ca8057a2ccb863c02a520d33f9f4b8b6537177aba984102970146a35c751ca9afffff", + "cborBytes": [ + 191, 67, 15, 150, 165, 65, 166, 76, 168, 5, 122, 44, 203, 134, 60, 2, 165, 32, 211, 63, 159, 75, 139, 101, 55, 23, + 122, 186, 152, 65, 2, 151, 1, 70, 163, 92, 117, 28, 169, 175, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3561, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b2403f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a780d8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13590584759403012006" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdbd2e03" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10481271735046804363" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af8e1d829adb34" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13615652304145356987" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d6a5b404df5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b55" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9011" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1453bd52d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7248850135401845117" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf43b2403f9f43a780d81bbc9b74d52a0ddfa6ff44fdbd2e03bf1b9174f51c61ce938b47af8e1d829adb341bbcf483a1bdd018bb467d6a5b404df5424b5542901145b1453bd52d1b649916cac6ab517dffff", + "cborBytes": [ + 191, 67, 178, 64, 63, 159, 67, 167, 128, 216, 27, 188, 155, 116, 213, 42, 13, 223, 166, 255, 68, 253, 189, 46, 3, + 191, 27, 145, 116, 245, 28, 97, 206, 147, 139, 71, 175, 142, 29, 130, 154, 219, 52, 27, 188, 244, 131, 161, 189, + 208, 24, 187, 70, 125, 106, 91, 64, 77, 245, 66, 75, 85, 66, 144, 17, 69, 177, 69, 59, 213, 45, 27, 100, 153, 22, + 202, 198, 171, 81, 125, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3562, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b8c31" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7965130098589785562" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f80f308ac8fc127135e1" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf439b8c311b6e89d39fa4375dda4af80f308ac8fc127135e180ff", + "cborBytes": [ + 191, 67, 155, 140, 49, 27, 110, 137, 211, 159, 164, 55, 93, 218, 74, 248, 15, 48, 138, 200, 252, 18, 113, 53, 225, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3563, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c7b097524b8c74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e26af2" + } + } + ] + }, + "cborHex": "bf47c7b097524b8c7443e26af2ff", + "cborBytes": [191, 71, 199, 176, 151, 82, 75, 140, 116, 67, 226, 106, 242, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3564, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16636967392235026848" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17594332329491520428" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "997df225f0cc29a6f9ff8412" + }, + { + "_tag": "ByteArray", + "bytearray": "a5da6d" + }, + { + "_tag": "ByteArray", + "bytearray": "bdb5e32872988a692ea9f4" + }, + { + "_tag": "ByteArray", + "bytearray": "b94e55d7a0f8be" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5999679776476569076" + } + } + ] + } + } + ] + }, + "cborHex": "bf1be6e261b261ecf9a0a01bf42ba008ef835bac9f4c997df225f0cc29a6f9ff841243a5da6d4bbdb5e32872988a692ea9f447b94e55d7a0f8be1b534324f812fb1df4ffff", + "cborBytes": [ + 191, 27, 230, 226, 97, 178, 97, 236, 249, 160, 160, 27, 244, 43, 160, 8, 239, 131, 91, 172, 159, 76, 153, 125, + 242, 37, 240, 204, 41, 166, 249, 255, 132, 18, 67, 165, 218, 109, 75, 189, 181, 227, 40, 114, 152, 138, 105, 46, + 169, 244, 71, 185, 78, 85, 215, 160, 248, 190, 27, 83, 67, 36, 248, 18, 251, 29, 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3565, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "28fa8467dac321" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6817595409286471059" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9253081928106886781" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39931d7fc91517" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3172015050442704289" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4967017250692083253" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13175855948654939983" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14733239762079489196" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4e990c15a0e53dfb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10995592048936781666" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14786434258389259024" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2a718e561a754014" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14804976289776285984" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c7e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17708636276531260922" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3858269206034805575" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f56940c5dfc79cdb43e00b" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "743a24ad56672ffc7b870b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1000426688660802600" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f808ba747b7eb39589d67601" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14382661089435039513" + } + } + } + ] + }, + "cborHex": "bf4728fa8467dac321bf1b5e9cf6e750da9d931b80698cfd1a65c67dff4739931d7fc915179f41f81b2c0542e1dfd485a11b44ee63df84bd2e351bb6da0b2d374b8f4f1bcc76fb80e9689cacff484e990c15a0e53dfbd8669f1b989830b61bfc87629f1bcd33f79db9f55310482a718e561a7540141bcd75d77ed4323920ffff426c7ed8669f1bf5c1b6de7f3dedfa9f1b358b5366a18873474bf56940c5dfc79cdb43e00bffff4b743a24ad56672ffc7b870b9f1b0de23ac5d9728c284cf808ba747b7eb39589d67601ff41991bc7997a0ee89bb719ff", + "cborBytes": [ + 191, 71, 40, 250, 132, 103, 218, 195, 33, 191, 27, 94, 156, 246, 231, 80, 218, 157, 147, 27, 128, 105, 140, 253, + 26, 101, 198, 125, 255, 71, 57, 147, 29, 127, 201, 21, 23, 159, 65, 248, 27, 44, 5, 66, 225, 223, 212, 133, 161, + 27, 68, 238, 99, 223, 132, 189, 46, 53, 27, 182, 218, 11, 45, 55, 75, 143, 79, 27, 204, 118, 251, 128, 233, 104, + 156, 172, 255, 72, 78, 153, 12, 21, 160, 229, 61, 251, 216, 102, 159, 27, 152, 152, 48, 182, 27, 252, 135, 98, + 159, 27, 205, 51, 247, 157, 185, 245, 83, 16, 72, 42, 113, 142, 86, 26, 117, 64, 20, 27, 205, 117, 215, 126, 212, + 50, 57, 32, 255, 255, 66, 108, 126, 216, 102, 159, 27, 245, 193, 182, 222, 127, 61, 237, 250, 159, 27, 53, 139, + 83, 102, 161, 136, 115, 71, 75, 245, 105, 64, 197, 223, 199, 156, 219, 67, 224, 11, 255, 255, 75, 116, 58, 36, + 173, 86, 103, 47, 252, 123, 135, 11, 159, 27, 13, 226, 58, 197, 217, 114, 140, 40, 76, 248, 8, 186, 116, 123, 126, + 179, 149, 137, 214, 118, 1, 255, 65, 153, 27, 199, 153, 122, 14, 232, 155, 183, 25, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3566, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "414904779667508088" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16021981341206011223" + } + } + } + ] + }, + "cborHex": "bf1b05c209b2e7b18b781bde59832448855d57ff", + "cborBytes": [191, 27, 5, 194, 9, 178, 231, 177, 139, 120, 27, 222, 89, 131, 36, 72, 133, 93, 87, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3567, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9481360709733685538" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16557938133905107299" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14141898818371430147" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17193685338019764021" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12475159996409031788" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14110398923913176286" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bb9a743169cf04" + } + ] + } + } + ] + }, + "cborHex": "bf1b83948f54c30599221be5c99d014c4ee9631bc4421e0c5e8ba703d8669f1bee9c3db8088297359f1bad20abeba61fac6c1bc3d2350faae624de47bb9a743169cf04ffffff", + "cborBytes": [ + 191, 27, 131, 148, 143, 84, 195, 5, 153, 34, 27, 229, 201, 157, 1, 76, 78, 233, 99, 27, 196, 66, 30, 12, 94, 139, + 167, 3, 216, 102, 159, 27, 238, 156, 61, 184, 8, 130, 151, 53, 159, 27, 173, 32, 171, 235, 166, 31, 172, 108, 27, + 195, 210, 53, 15, 170, 230, 36, 222, 71, 187, 154, 116, 49, 105, 207, 4, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3568, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cd0273" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10105063523515171627" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1343cd02731b8c3c65bc57e1032b80ff", + "cborBytes": [191, 19, 67, 205, 2, 115, 27, 140, 60, 101, 188, 87, 225, 3, 43, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3569, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17606044153849959299" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6514433167498415955" + } + } + } + ] + }, + "cborHex": "bf1bf4553be08a11d3831b5a67ea736dc40f53ff", + "cborBytes": [191, 27, 244, 85, 59, 224, 138, 17, 211, 131, 27, 90, 103, 234, 115, 109, 196, 15, 83, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3570, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5494302298183775808" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a544a4ac1ed5aa" + }, + { + "_tag": "ByteArray", + "bytearray": "80dd9167ff5bfac1af0f92" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5368723206921082533" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3031985340686830107" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7c4626ac" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13956727183688794917" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a380ba235" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2055077812024694978" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe8aab8d516cdab4defadf8d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d67d63ab3ad1" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cbb6f3de16574813e3b2f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "145b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe30cb763c34" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7554363678397041310" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "323c82c454cedd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9199302807863737631" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18430131091098661512" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13904847130303249433" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a886f15b" + } + ] + } + } + ] + }, + "cborHex": "bf1b4c3faed483db36409f47a544a4ac1ed5aa4b80dd9167ff5bfac1af0f921b4a81894fdded56a51b2a13c69a6bd48a1b447c4626acff1bc1b0416d7acf0325bf456a380ba2351b1c851a61bb84d8c24cfe8aab8d516cdab4defadf8d46d67d63ab3ad1ff4bcbb6f3de16574813e3b2f742145b46fe30cb763c34d8669f1b68d67dbda2f80a9e9f47323c82c454cedd1b7faa7d29ebf8bd1f1bffc4fa9490d172881bc0f7f0cb41d5bc1944a886f15bffffff", + "cborBytes": [ + 191, 27, 76, 63, 174, 212, 131, 219, 54, 64, 159, 71, 165, 68, 164, 172, 30, 213, 170, 75, 128, 221, 145, 103, + 255, 91, 250, 193, 175, 15, 146, 27, 74, 129, 137, 79, 221, 237, 86, 165, 27, 42, 19, 198, 154, 107, 212, 138, 27, + 68, 124, 70, 38, 172, 255, 27, 193, 176, 65, 109, 122, 207, 3, 37, 191, 69, 106, 56, 11, 162, 53, 27, 28, 133, 26, + 97, 187, 132, 216, 194, 76, 254, 138, 171, 141, 81, 108, 218, 180, 222, 250, 223, 141, 70, 214, 125, 99, 171, 58, + 209, 255, 75, 203, 182, 243, 222, 22, 87, 72, 19, 227, 178, 247, 66, 20, 91, 70, 254, 48, 203, 118, 60, 52, 216, + 102, 159, 27, 104, 214, 125, 189, 162, 248, 10, 158, 159, 71, 50, 60, 130, 196, 84, 206, 221, 27, 127, 170, 125, + 41, 235, 248, 189, 31, 27, 255, 196, 250, 148, 144, 209, 114, 136, 27, 192, 247, 240, 203, 65, 213, 188, 25, 68, + 168, 134, 241, 91, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3571, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02ec" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fb" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "39cb24" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3460730584551719568" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3739443174787919026" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3522956337950254063" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3577295532749366526" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad630e6a7fd93f90" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f90185" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e748" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5119923020161147620" + } + } + } + ] + }, + "cborHex": "bf4202ec9f41fb06ff4339cb24bf1b3006fc21838902901b33e52bc14afe2cb21b30e40e1fbabc63ef1b31a51b556e1e24feff48ad630e6a7fd93f9043f9018542e7481b470d9edc3e0ce2e4ff", + "cborBytes": [ + 191, 66, 2, 236, 159, 65, 251, 6, 255, 67, 57, 203, 36, 191, 27, 48, 6, 252, 33, 131, 137, 2, 144, 27, 51, 229, + 43, 193, 74, 254, 44, 178, 27, 48, 228, 14, 31, 186, 188, 99, 239, 27, 49, 165, 27, 85, 110, 30, 36, 254, 255, 72, + 173, 99, 14, 106, 127, 217, 63, 144, 67, 249, 1, 133, 66, 231, 72, 27, 71, 13, 158, 220, 62, 12, 226, 228, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3572, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4344076318659547043" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4236117255540802607" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10312162411398651239" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13519813882865223948" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12109089880180036616" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17971261819076114658" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15711650310135408211" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "670810499901691366" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b3c4942655ae38fa31b3ac9b6333369842f1b8f1c2913b58d5d67801bbba007186d93890cd8669f1ba80c2116dd6894089f1bf966bf689b9278e2ffff1bda0afeb692c6e653d8669f1b094f3298763e15e680ffff", + "cborBytes": [ + 191, 27, 60, 73, 66, 101, 90, 227, 143, 163, 27, 58, 201, 182, 51, 51, 105, 132, 47, 27, 143, 28, 41, 19, 181, + 141, 93, 103, 128, 27, 187, 160, 7, 24, 109, 147, 137, 12, 216, 102, 159, 27, 168, 12, 33, 22, 221, 104, 148, 8, + 159, 27, 249, 102, 191, 104, 155, 146, 120, 226, 255, 255, 27, 218, 10, 254, 182, 146, 198, 230, 83, 216, 102, + 159, 27, 9, 79, 50, 152, 118, 62, 21, 230, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3573, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "58b92867" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c0ee66c79c74f72b00bf58c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a7cc02d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9252775176531162624" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b62c94e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14867586387164906945" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f29cef25" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d2d25f67d2cdee7c" + } + } + ] + } + } + ] + }, + "cborHex": "bf4458b92867bf416c4c3c0ee66c79c74f72b00bf58c447a7cc02d1b806875ffefb13600447b62c94e1bce54470c1a65c5c144f29cef2548d2d25f67d2cdee7cffff", + "cborBytes": [ + 191, 68, 88, 185, 40, 103, 191, 65, 108, 76, 60, 14, 230, 108, 121, 199, 79, 114, 176, 11, 245, 140, 68, 122, 124, + 192, 45, 27, 128, 104, 117, 255, 239, 177, 54, 0, 68, 123, 98, 201, 78, 27, 206, 84, 71, 12, 26, 101, 197, 193, + 68, 242, 156, 239, 37, 72, 210, 210, 95, 103, 210, 205, 238, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3574, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9357cff652981862ec5ed152" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3438676360211520213" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b097ff5123" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4311349022440909708" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c9357cff652981862ec5ed152d8669f1b2fb8a1ee43f0dad59f45b097ff51231b3bd4fd17e9516b8cffffff", + "cborBytes": [ + 191, 76, 147, 87, 207, 246, 82, 152, 24, 98, 236, 94, 209, 82, 216, 102, 159, 27, 47, 184, 161, 238, 67, 240, 218, + 213, 159, 69, 176, 151, 255, 81, 35, 27, 59, 212, 253, 23, 233, 81, 107, 140, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3575, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1006" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0103" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7cae06" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10414617266794372610" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf421006420103437cae06bf011bffffffffffffffec1bfffffffffffffffc1b90882739a2ed9e02ffff", + "cborBytes": [ + 191, 66, 16, 6, 66, 1, 3, 67, 124, 174, 6, 191, 1, 27, 255, 255, 255, 255, 255, 255, 255, 236, 27, 255, 255, 255, + 255, 255, 255, 255, 252, 27, 144, 136, 39, 57, 162, 237, 158, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3576, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "762ef50fd20d65306363ed" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de8207" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "71b6a574626879" + } + ] + } + } + ] + }, + "cborHex": "bf4b762ef50fd20d65306363ed8043de82079f4771b6a574626879ffff", + "cborBytes": [ + 191, 75, 118, 46, 245, 15, 210, 13, 101, 48, 99, 99, 237, 128, 67, 222, 130, 7, 159, 71, 113, 182, 165, 116, 98, + 104, 121, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3577, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a631988c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11825922886889655223" + } + } + } + ] + }, + "cborHex": "bf44a631988c1ba41e1e358e384bb7ff", + "cborBytes": [191, 68, 166, 49, 152, 140, 27, 164, 30, 30, 53, 142, 56, 75, 183, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3578, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7691881654706926286" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5515533379200013243" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14231744601365101441" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18281810991717754498" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31ab6a787b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12808544010169003353" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "322c11" + }, + { + "_tag": "ByteArray", + "bytearray": "accfdd979fb53b" + }, + { + "_tag": "ByteArray", + "bytearray": "c54de0edf3c32a44a7" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "556bb12398cbedbbfdca" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4210690308264394988" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa05518b49" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0bced18b186de6302f" + }, + { + "_tag": "ByteArray", + "bytearray": "5f3d87983af1a0caa2" + }, + { + "_tag": "ByteArray", + "bytearray": "0604fb030400" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + ] + } + } + ] + }, + "cborHex": "bf079f1b6abf0d9c932672ce1b4c8b1c62c606d3bb1bc581504fda733b811bfdb60a3c5c2b26824531ab6a787bff1bb1c116ea2814ad599f43322c1147accfdd979fb53b49c54de0edf3c32a44a7ff4a556bb12398cbedbbfdcad8669f1b3a6f6086b34780ec80ff45fa05518b499f490bced18b186de6302f495f3d87983af1a0caa2460604fb0304001bfffffffffffffffeffff", + "cborBytes": [ + 191, 7, 159, 27, 106, 191, 13, 156, 147, 38, 114, 206, 27, 76, 139, 28, 98, 198, 6, 211, 187, 27, 197, 129, 80, + 79, 218, 115, 59, 129, 27, 253, 182, 10, 60, 92, 43, 38, 130, 69, 49, 171, 106, 120, 123, 255, 27, 177, 193, 22, + 234, 40, 20, 173, 89, 159, 67, 50, 44, 17, 71, 172, 207, 221, 151, 159, 181, 59, 73, 197, 77, 224, 237, 243, 195, + 42, 68, 167, 255, 74, 85, 107, 177, 35, 152, 203, 237, 187, 253, 202, 216, 102, 159, 27, 58, 111, 96, 134, 179, + 71, 128, 236, 128, 255, 69, 250, 5, 81, 139, 73, 159, 73, 11, 206, 209, 139, 24, 109, 230, 48, 47, 73, 95, 61, + 135, 152, 58, 241, 160, 202, 162, 70, 6, 4, 251, 3, 4, 0, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3579, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2375866371501990057" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "103100331498033239" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7360245937141737919" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + ] + } + } + ] + }, + "cborHex": "bf10d8669f1b20f8c5e0832c20a99f1b016e49348b2a5057ffff41fad8669f1b6624d8aefed869bf9f1bffffffffffffffff11ffffff", + "cborBytes": [ + 191, 16, 216, 102, 159, 27, 32, 248, 197, 224, 131, 44, 32, 169, 159, 27, 1, 110, 73, 52, 139, 42, 80, 87, 255, + 255, 65, 250, 216, 102, 159, 27, 102, 36, 216, 174, 254, 216, 105, 191, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 255, 17, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3580, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12924166589288886498" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "227a5230" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11087228171570333947" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f572e991a56f5c7111" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8875039538806515453" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bb35bdd09ac8930e2bf44227a52301b99ddbf47862748fb49f572e991a56f5c71111b7b2a7970461be6fdffff", + "cborBytes": [ + 191, 27, 179, 91, 221, 9, 172, 137, 48, 226, 191, 68, 34, 122, 82, 48, 27, 153, 221, 191, 71, 134, 39, 72, 251, + 73, 245, 114, 233, 145, 165, 111, 92, 113, 17, 27, 123, 42, 121, 112, 70, 27, 230, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3581, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2398393167746730939" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3059950887563952838" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7997849385893874605" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7798234696587142179" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18328155491802322854" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10521185368562431468" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6495120123629702798" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "389903524382845105" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11620721735581716208" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d7a8e8a09927f85c2cc6" + }, + { + "_tag": "ByteArray", + "bytearray": "2eca593d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15374013303278682601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16180317013850588580" + } + } + } + ] + }, + "cborHex": "bf1b2148cde0fb448bbb419d1b2a77211eb36402c61b6efe11a45d47cbad1b6c38e523c533e4231bfe5ab050250097a61b9202c2595d3375ecd8669f1b5a234d56fe708e8e9f1b056937308b8328b11ba14518d96b024ef04ad7a8e8a09927f85c2cc6442eca593dffff1bd55b77a4f20e41e91be08c0898dbc605a4ff", + "cborBytes": [ + 191, 27, 33, 72, 205, 224, 251, 68, 139, 187, 65, 157, 27, 42, 119, 33, 30, 179, 100, 2, 198, 27, 110, 254, 17, + 164, 93, 71, 203, 173, 27, 108, 56, 229, 35, 197, 51, 228, 35, 27, 254, 90, 176, 80, 37, 0, 151, 166, 27, 146, 2, + 194, 89, 93, 51, 117, 236, 216, 102, 159, 27, 90, 35, 77, 86, 254, 112, 142, 142, 159, 27, 5, 105, 55, 48, 139, + 131, 40, 177, 27, 161, 69, 24, 217, 107, 2, 78, 240, 74, 215, 168, 232, 160, 153, 39, 248, 92, 44, 198, 68, 46, + 202, 89, 61, 255, 255, 27, 213, 91, 119, 164, 242, 14, 65, 233, 27, 224, 140, 8, 152, 219, 198, 5, 164, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3582, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17789636984125657374" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "601133f8418311bec3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13743596187361550589" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12247116367024844722" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5dd54cc5" + }, + { + "_tag": "ByteArray", + "bytearray": "8f57" + }, + { + "_tag": "ByteArray", + "bytearray": "d6" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c00e7fc45098f01262" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "00219bd38704a6f9ea08" + } + } + ] + }, + "cborHex": "bf1bf6e17c9561f6111e8049601133f8418311bec3d8669f1bbebb0fea6c1920fd9f1ba9f67f72a3636fb2445dd54cc5428f5741d6ffff49c00e7fc45098f012624a00219bd38704a6f9ea08ff", + "cborBytes": [ + 191, 27, 246, 225, 124, 149, 97, 246, 17, 30, 128, 73, 96, 17, 51, 248, 65, 131, 17, 190, 195, 216, 102, 159, 27, + 190, 187, 15, 234, 108, 25, 32, 253, 159, 27, 169, 246, 127, 114, 163, 99, 111, 178, 68, 93, 213, 76, 197, 66, + 143, 87, 65, 214, 255, 255, 73, 192, 14, 127, 196, 80, 152, 240, 18, 98, 74, 0, 33, 155, 211, 135, 4, 166, 249, + 234, 8, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3583, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "284230141580111723" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1e32" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "976202269598567753" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18160051412235259798" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "97423c822789192201" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15cf2784195fe75772" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d8625b83fad0fdef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5897beb135b68c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49f8ca2ee9e1482219d0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c51af3441f40b970c1c87" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10075071573474440608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "041d46050606ef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9f13ae68a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ceab3d0dc012c3e3e01c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6e0db1255f3e64ee" + } + ] + } + } + ] + }, + "cborHex": "bf1b03f1c9cecf576f6b9f421e32ff1b0d8c2acac45a4d491bfc05768b191d0f964997423c822789192201bf4915cf2784195fe7577248d8625b83fad0fdef475897beb135b68c4a49f8ca2ee9e1482219d04b5c51af3441f40b970c1c871b8bd1d8374f9475a0417847041d46050606ef45d9f13ae68a414cff4aceab3d0dc012c3e3e01c9f486e0db1255f3e64eeffff", + "cborBytes": [ + 191, 27, 3, 241, 201, 206, 207, 87, 111, 107, 159, 66, 30, 50, 255, 27, 13, 140, 42, 202, 196, 90, 77, 73, 27, + 252, 5, 118, 139, 25, 29, 15, 150, 73, 151, 66, 60, 130, 39, 137, 25, 34, 1, 191, 73, 21, 207, 39, 132, 25, 95, + 231, 87, 114, 72, 216, 98, 91, 131, 250, 208, 253, 239, 71, 88, 151, 190, 177, 53, 182, 140, 74, 73, 248, 202, 46, + 233, 225, 72, 34, 25, 208, 75, 92, 81, 175, 52, 65, 244, 11, 151, 12, 28, 135, 27, 139, 209, 216, 55, 79, 148, + 117, 160, 65, 120, 71, 4, 29, 70, 5, 6, 6, 239, 69, 217, 241, 58, 230, 138, 65, 76, 255, 74, 206, 171, 61, 13, + 192, 18, 195, 227, 224, 28, 159, 72, 110, 13, 177, 37, 95, 62, 100, 238, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3584, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10884812837345967807" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f8f910fdfef75efd19" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + }, + "cborHex": "bf0c9f41d21b970e9f9af89e3ebf091bfffffffffffffffd49f8f910fdfef75efd19ff41ff07ff", + "cborBytes": [ + 191, 12, 159, 65, 210, 27, 151, 14, 159, 154, 248, 158, 62, 191, 9, 27, 255, 255, 255, 255, 255, 255, 255, 253, + 73, 248, 249, 16, 253, 254, 247, 94, 253, 25, 255, 65, 255, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3585, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d33d39b17dc7e8a7979a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "493409609114815177" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bf7b7085efe242558a0c" + } + } + ] + } + } + ] + }, + "cborHex": "bf0f1bfffffffffffffff04ad33d39b17dc7e8a7979abf1b06d8f16ce00d8ac94abf7b7085efe242558a0cffff", + "cborBytes": [ + 191, 15, 27, 255, 255, 255, 255, 255, 255, 255, 240, 74, 211, 61, 57, 177, 125, 199, 232, 167, 151, 154, 191, 27, + 6, 216, 241, 108, 224, 13, 138, 201, 74, 191, 123, 112, 133, 239, 226, 66, 85, 138, 12, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3586, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1439" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "540d9d8633" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61ab" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5a512a9d6fe425ba04e701" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d711" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "85f1e54a9a6fab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7980164770173997110" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf421439bf45540d9d86334261ab4b5a512a9d6fe425ba04e70142d7114785f1e54a9a6fab1b6ebf3d93e74ed036ffff", + "cborBytes": [ + 191, 66, 20, 57, 191, 69, 84, 13, 157, 134, 51, 66, 97, 171, 75, 90, 81, 42, 157, 111, 228, 37, 186, 4, 231, 1, + 66, 215, 17, 71, 133, 241, 229, 74, 154, 111, 171, 27, 110, 191, 61, 147, 231, 78, 208, 54, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3587, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "805cdef82e5a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "233fe8c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12918389854619309224" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5306e53fab14ab637c286537" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df23c02c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "670f47bd34ad" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17004873362842625866" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ca574e8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16188662191955000995" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f52cecfa4d5552" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8810974661154518856" + } + } + } + ] + }, + "cborHex": "bf46805cdef82e5abf44233fe8c41bb3475720d29814a84c5306e53fab14ab637c28653744df23c02c46670f47bd34ad1bebfd723a52bca74aff448ca574e81be0a9ae7e0c463ea347f52cecfa4d55521b7a46dec593153748ff", + "cborBytes": [ + 191, 70, 128, 92, 222, 248, 46, 90, 191, 68, 35, 63, 232, 196, 27, 179, 71, 87, 32, 210, 152, 20, 168, 76, 83, 6, + 229, 63, 171, 20, 171, 99, 124, 40, 101, 55, 68, 223, 35, 192, 44, 70, 103, 15, 71, 189, 52, 173, 27, 235, 253, + 114, 58, 82, 188, 167, 74, 255, 68, 140, 165, 116, 232, 27, 224, 169, 174, 126, 12, 70, 62, 163, 71, 245, 44, 236, + 250, 77, 85, 82, 27, 122, 70, 222, 197, 147, 21, 55, 72, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3588, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f58c072284c37dc61a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9300072722473366760" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11479296213476919649" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf49f58c072284c37dc61abf1b81107ede005334e841121b9f4ea71613c749610dffff", + "cborBytes": [ + 191, 73, 245, 140, 7, 34, 132, 195, 125, 198, 26, 191, 27, 129, 16, 126, 222, 0, 83, 52, 232, 65, 18, 27, 159, 78, + 167, 22, 19, 199, 73, 97, 13, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3589, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14356106702987156954" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10273005292712039385" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6323726640600314400" + } + }, + { + "_tag": "ByteArray", + "bytearray": "adbe3522baaf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14803939133680621187" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2071" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16103574435527702338" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4476990470698359011" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "722f5f21bf4f" + }, + { + "_tag": "ByteArray", + "bytearray": "754204b98f1b04f55ebd14" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10783189085674416418" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16130512848831538011" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9936856419679693955" + } + } + } + ] + }, + "cborHex": "bf1bc73b22fc05275dda9f1b8e910be28fcf13d91b57c263e005a7f22046adbe3522baaf1bcd7228351b899683422071ff1bdf7b63a0f3b0b742d8669f1b3e21771cecc8d8e39f46722f5f21bf4f4b754204b98f1b04f55ebd141b95a59557757e2922ffff1bdfdb17f90f7a635b1b89e6ce4417116c83ff", + "cborBytes": [ + 191, 27, 199, 59, 34, 252, 5, 39, 93, 218, 159, 27, 142, 145, 11, 226, 143, 207, 19, 217, 27, 87, 194, 99, 224, 5, + 167, 242, 32, 70, 173, 190, 53, 34, 186, 175, 27, 205, 114, 40, 53, 27, 137, 150, 131, 66, 32, 113, 255, 27, 223, + 123, 99, 160, 243, 176, 183, 66, 216, 102, 159, 27, 62, 33, 119, 28, 236, 200, 216, 227, 159, 70, 114, 47, 95, 33, + 191, 79, 75, 117, 66, 4, 185, 143, 27, 4, 245, 94, 189, 20, 27, 149, 165, 149, 87, 117, 126, 41, 34, 255, 255, 27, + 223, 219, 23, 249, 15, 122, 99, 91, 27, 137, 230, 206, 68, 23, 17, 108, 131, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3590, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7805154469820941864" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3605784244754139430" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13023217669890837080" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "596315984119428237" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8352089546005151817" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14578823969596674626" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15065024681641549549" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10528305807151714924" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6c517aa306bac628d8669f1b320a51aa954549269f1bb4bbc378866f0a581b08468a3a6753748dffff1b73e89530d9e40049801bca5263288ec292429f1bd111b82149bc9eed1b921c0e59a9f5d26cffff", + "cborBytes": [ + 191, 27, 108, 81, 122, 163, 6, 186, 198, 40, 216, 102, 159, 27, 50, 10, 81, 170, 149, 69, 73, 38, 159, 27, 180, + 187, 195, 120, 134, 111, 10, 88, 27, 8, 70, 138, 58, 103, 83, 116, 141, 255, 255, 27, 115, 232, 149, 48, 217, 228, + 0, 73, 128, 27, 202, 82, 99, 40, 142, 194, 146, 66, 159, 27, 209, 17, 184, 33, 73, 188, 158, 237, 27, 146, 28, 14, + 89, 169, 245, 210, 108, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3591, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "245231983613470550" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "496696354499885215" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18279526176166254380" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3080233500657098146" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0620b3435685b3e00499" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4798462450176336844" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b8105763f47a436c4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5128388807938009516" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2408ded6ef88efa0a85dba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11949110141135524766" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16741149417774632338" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "691326599857060609" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12316950780620832640" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6f99f7be9cb16042f94b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15646994288815627572" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13010154295306506814" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cded9164" + }, + { + "_tag": "ByteArray", + "bytearray": "8268c57a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10729381294711113148" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8522188816924254692" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6469f2701160412cc84a32eb" + } + ] + } + } + ] + }, + "cborHex": "bf1b03673d3096d86756bf1b06e49eb3eb32789f1bfdadec3548d8172c1b2abf300c8fec9da24a0620b3435685b3e004991b4297902cd2cfa3cc493b8105763f47a436c41b472bb2730f3be9ac4b2408ded6ef88efa0a85dba1ba5d3c45d4066939e41b21be85482b27231cd921b099815e138423b01ff1baaee997a1adfff809f4a6f99f7be9cb16042f94bff1bd9254a67836bdd34d8669f1bb48d5a669cc4523e9f44cded9164448268c57a1b94e66b70dafa05bc1b7644e5939593a1e44c6469f2701160412cc84a32ebffffff", + "cborBytes": [ + 191, 27, 3, 103, 61, 48, 150, 216, 103, 86, 191, 27, 6, 228, 158, 179, 235, 50, 120, 159, 27, 253, 173, 236, 53, + 72, 216, 23, 44, 27, 42, 191, 48, 12, 143, 236, 157, 162, 74, 6, 32, 179, 67, 86, 133, 179, 224, 4, 153, 27, 66, + 151, 144, 44, 210, 207, 163, 204, 73, 59, 129, 5, 118, 63, 71, 164, 54, 196, 27, 71, 43, 178, 115, 15, 59, 233, + 172, 75, 36, 8, 222, 214, 239, 136, 239, 160, 168, 93, 186, 27, 165, 211, 196, 93, 64, 102, 147, 158, 65, 178, 27, + 232, 84, 130, 178, 114, 49, 205, 146, 27, 9, 152, 21, 225, 56, 66, 59, 1, 255, 27, 170, 238, 153, 122, 26, 223, + 255, 128, 159, 74, 111, 153, 247, 190, 156, 177, 96, 66, 249, 75, 255, 27, 217, 37, 74, 103, 131, 107, 221, 52, + 216, 102, 159, 27, 180, 141, 90, 102, 156, 196, 82, 62, 159, 68, 205, 237, 145, 100, 68, 130, 104, 197, 122, 27, + 148, 230, 107, 112, 218, 250, 5, 188, 27, 118, 68, 229, 147, 149, 147, 161, 228, 76, 100, 105, 242, 112, 17, 96, + 65, 44, 200, 74, 50, 235, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3592, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3076885953675121927" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3f8d594362093624" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12218649763349052785" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8532994003427208167" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fc464" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12993093285666069708" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8846006941666727207" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "823d358f4e3305" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1145489249371726707" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40666a10" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7739065443272330027" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5774532271685960799" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8592817470782073227" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dbf90f29" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10428325200721622142" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16282700717027486006" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11979731934481848501" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f42a7ce994c55334d59" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13843391001241789209" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13674824907381619710" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3fe295ea9e34341f6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2882189854230108649" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "255a69d995f7e444f654" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11151920161808136695" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9738267351524406755" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14713209929954801408" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16847361532994186589" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15558901814448045242" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01976c38f3669bd638" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16317375960575993850" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0ec8e8937626d8d0b4c" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e67bc3" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4183423780296974007" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16093611404290732495" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18257767549860534159" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12344903516487161523" + } + } + ] + } + } + ] + }, + "cborHex": "bf413ad8669f1b2ab34b790b31d5079f483f8d5943620936241ba9915d38fb54bd71ffff413b1b766b48d61cd12be7433fc464d8669f1bb450bd80c1a39ccc9f1b7ac35471feaf5527ffff47823d358f4e3305bf1b0fe598673ad4a3734440666a101b6b66af046fbf8b2b1b502342819ddf045f1b773fd1f685bc698b44dbf90f291b90b8da84b744347e1be1f7c6085e6be9361ba6408eb91b3198b54a6f42a7ce994c55334d591bc01d9ac52bdb23191bbdc6bccd0a253bfeff49a3fe295ea9e34341f6bf1b27ff9866e49ed9e94a255a69d995f7e444f6541b9ac3944d401739f71b8725468f876575e31bcc2fd27a34b4b7001be9cdda0d98b2ed5d1bd7ec52c4015b3cba4901976c38f3669bd6381be272f6fba4a167fa4ae0ec8e8937626d8d0b4cff43e67bc3d8669f1b3a0e81c37185deb79f1bdf57fe4df9ecb1cf1bfd609eda5117578f1bab51e85796b016b3ffffff", + "cborBytes": [ + 191, 65, 58, 216, 102, 159, 27, 42, 179, 75, 121, 11, 49, 213, 7, 159, 72, 63, 141, 89, 67, 98, 9, 54, 36, 27, + 169, 145, 93, 56, 251, 84, 189, 113, 255, 255, 65, 59, 27, 118, 107, 72, 214, 28, 209, 43, 231, 67, 63, 196, 100, + 216, 102, 159, 27, 180, 80, 189, 128, 193, 163, 156, 204, 159, 27, 122, 195, 84, 113, 254, 175, 85, 39, 255, 255, + 71, 130, 61, 53, 143, 78, 51, 5, 191, 27, 15, 229, 152, 103, 58, 212, 163, 115, 68, 64, 102, 106, 16, 27, 107, + 102, 175, 4, 111, 191, 139, 43, 27, 80, 35, 66, 129, 157, 223, 4, 95, 27, 119, 63, 209, 246, 133, 188, 105, 139, + 68, 219, 249, 15, 41, 27, 144, 184, 218, 132, 183, 68, 52, 126, 27, 225, 247, 198, 8, 94, 107, 233, 54, 27, 166, + 64, 142, 185, 27, 49, 152, 181, 74, 111, 66, 167, 206, 153, 76, 85, 51, 77, 89, 27, 192, 29, 154, 197, 43, 219, + 35, 25, 27, 189, 198, 188, 205, 10, 37, 59, 254, 255, 73, 163, 254, 41, 94, 169, 227, 67, 65, 246, 191, 27, 39, + 255, 152, 102, 228, 158, 217, 233, 74, 37, 90, 105, 217, 149, 247, 228, 68, 246, 84, 27, 154, 195, 148, 77, 64, + 23, 57, 247, 27, 135, 37, 70, 143, 135, 101, 117, 227, 27, 204, 47, 210, 122, 52, 180, 183, 0, 27, 233, 205, 218, + 13, 152, 178, 237, 93, 27, 215, 236, 82, 196, 1, 91, 60, 186, 73, 1, 151, 108, 56, 243, 102, 155, 214, 56, 27, + 226, 114, 246, 251, 164, 161, 103, 250, 74, 224, 236, 142, 137, 55, 98, 109, 141, 11, 76, 255, 67, 230, 123, 195, + 216, 102, 159, 27, 58, 14, 129, 195, 113, 133, 222, 183, 159, 27, 223, 87, 254, 77, 249, 236, 177, 207, 27, 253, + 96, 158, 218, 81, 23, 87, 143, 27, 171, 81, 232, 87, 150, 176, 22, 179, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3593, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8292718292880456510" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac7c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9769110161131535121" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bfbc94c3faab0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a07bf4917ed02f" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12592265374086959002" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13854899906503639417" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ccb699f1952ef5eb267f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14277791921306846280" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8382835011284869643" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15739111894761731593" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9923853189198536105" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18336717702946919847" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11319743003407388952" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12346739191873049570" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17839612723923896959" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bfa1ee1bb7c7c607232c" + } + ] + } + } + ] + }, + "cborHex": "bf1b7315a759c585fb3e42ac7c1b8792d9eebde77b11bf477bfbc94c3faab047a07bf4917ed02fff1baec0b6a41be78f9a9f1bc0467e0efdbe01794accb699f1952ef5eb267fff1bc624e81afe6fc4481b7455d0075257a20b1bda6c8ee0ff65f6091b89b89be5914e5da91bfe791b9946c495a79f1b9d17ce497acf91181bab586de111fc93e21bf79309410c05ca7f4abfa1ee1bb7c7c607232cffff", + "cborBytes": [ + 191, 27, 115, 21, 167, 89, 197, 133, 251, 62, 66, 172, 124, 27, 135, 146, 217, 238, 189, 231, 123, 17, 191, 71, + 123, 251, 201, 76, 63, 170, 176, 71, 160, 123, 244, 145, 126, 208, 47, 255, 27, 174, 192, 182, 164, 27, 231, 143, + 154, 159, 27, 192, 70, 126, 14, 253, 190, 1, 121, 74, 204, 182, 153, 241, 149, 46, 245, 235, 38, 127, 255, 27, + 198, 36, 232, 26, 254, 111, 196, 72, 27, 116, 85, 208, 7, 82, 87, 162, 11, 27, 218, 108, 142, 224, 255, 101, 246, + 9, 27, 137, 184, 155, 229, 145, 78, 93, 169, 27, 254, 121, 27, 153, 70, 196, 149, 167, 159, 27, 157, 23, 206, 73, + 122, 207, 145, 24, 27, 171, 88, 109, 225, 17, 252, 147, 226, 27, 247, 147, 9, 65, 12, 5, 202, 127, 74, 191, 161, + 238, 27, 183, 199, 198, 7, 35, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3594, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5517110331645007301" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4177764274777783616" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10399967624271658013" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10572078512062398904" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17789829394733769626" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f8f44f473934404e3ce1" + } + } + ] + }, + "cborHex": "bf1b4c90b69da05695c5d8669f1b39fa667921727d409f1b90541b73f0467c1d1b92b79164b90501b8ffff1bf6e22b9477e8a39a4af8f44f473934404e3ce1ff", + "cborBytes": [ + 191, 27, 76, 144, 182, 157, 160, 86, 149, 197, 216, 102, 159, 27, 57, 250, 102, 121, 33, 114, 125, 64, 159, 27, + 144, 84, 27, 115, 240, 70, 124, 29, 27, 146, 183, 145, 100, 185, 5, 1, 184, 255, 255, 27, 246, 226, 43, 148, 119, + 232, 163, 154, 74, 248, 244, 79, 71, 57, 52, 64, 78, 60, 225, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3595, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7389896149821245727" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5591267040990849629" + } + }, + { + "_tag": "ByteArray", + "bytearray": "dc6511411a40ed2257720f" + } + ] + } + } + ] + }, + "cborHex": "bf1b668e2f65191f491fd87c9f1b4d982bbffe9bea5d4bdc6511411a40ed2257720fffff", + "cborBytes": [ + 191, 27, 102, 142, 47, 101, 25, 31, 73, 31, 216, 124, 159, 27, 77, 152, 43, 191, 254, 155, 234, 93, 75, 220, 101, + 17, 65, 26, 64, 237, 34, 87, 114, 15, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3596, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5136297569787410642" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6635140021655922003" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d701c7638cdc" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5148172614779917235" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9724457af3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15769991908565882908" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17565121320241195012" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9ff0fcd7302262" + }, + { + "_tag": "ByteArray", + "bytearray": "97266cc7049337ff4c" + }, + { + "_tag": "ByteArray", + "bytearray": "8c56bb2f40" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "16ac0397" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "603a7a6100184e10a5b5a6de" + } + } + ] + }, + "cborHex": "bf1b4747cb6d2be178d2d8669f1b5c14c0b1f9c765539f46d701c7638cdcffff1b4771fbb78a59d3b39f459724457af31bdada44167cda981cff1bf3c3d8c6d99de8049f479ff0fcd73022624997266cc7049337ff4c458c56bb2f40ff4416ac03974c603a7a6100184e10a5b5a6deff", + "cborBytes": [ + 191, 27, 71, 71, 203, 109, 43, 225, 120, 210, 216, 102, 159, 27, 92, 20, 192, 177, 249, 199, 101, 83, 159, 70, + 215, 1, 199, 99, 140, 220, 255, 255, 27, 71, 113, 251, 183, 138, 89, 211, 179, 159, 69, 151, 36, 69, 122, 243, 27, + 218, 218, 68, 22, 124, 218, 152, 28, 255, 27, 243, 195, 216, 198, 217, 157, 232, 4, 159, 71, 159, 240, 252, 215, + 48, 34, 98, 73, 151, 38, 108, 199, 4, 147, 55, 255, 76, 69, 140, 86, 187, 47, 64, 255, 68, 22, 172, 3, 151, 76, + 96, 58, 122, 97, 0, 24, 78, 16, 165, 181, 166, 222, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3597, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2873254182447071479" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10718935785779069829" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdfc" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5539185366093133809" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17214673190936233002" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f4885a213d5480e255fbf3ed" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6476247168102496696" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3633185856670243552" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5483fa6001" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6456099489670738002" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4586381451888592669" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9372995390295151600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9406142804618407737" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "550c45fc7cda" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16272875260329086802" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12460290054479338270" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9052334544052090206" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb0361a7dedd1189" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11522314455881002350" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13968747432267327044" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b27dfd974ae29c0f7bf1b94c14f4e4995838542fdfcff1b4cdf23be1b05f7f1d8669f1beee6ce0f5631c42a9f4cf4885a213d5480e255fbf3edffff1b59e0407c9c60f9b8bf1b326bab4985cd9ae0455483fa60011b5998ac47ac67b0521b3fa619a17c42871d1b821391a5afea93f041e41b8289550b7fe06f3946550c45fc7cda1be1d4ddd4f6284f521bacebd7c97f92db1eff1b7da05a4e7638f55e48bb0361a7dedd11891b9fe77bf32522ad6e9f1bc1daf5c7b171a644ffff", + "cborBytes": [ + 191, 27, 39, 223, 217, 116, 174, 41, 192, 247, 191, 27, 148, 193, 79, 78, 73, 149, 131, 133, 66, 253, 252, 255, + 27, 76, 223, 35, 190, 27, 5, 247, 241, 216, 102, 159, 27, 238, 230, 206, 15, 86, 49, 196, 42, 159, 76, 244, 136, + 90, 33, 61, 84, 128, 226, 85, 251, 243, 237, 255, 255, 27, 89, 224, 64, 124, 156, 96, 249, 184, 191, 27, 50, 107, + 171, 73, 133, 205, 154, 224, 69, 84, 131, 250, 96, 1, 27, 89, 152, 172, 71, 172, 103, 176, 82, 27, 63, 166, 25, + 161, 124, 66, 135, 29, 27, 130, 19, 145, 165, 175, 234, 147, 240, 65, 228, 27, 130, 137, 85, 11, 127, 224, 111, + 57, 70, 85, 12, 69, 252, 124, 218, 27, 225, 212, 221, 212, 246, 40, 79, 82, 27, 172, 235, 215, 201, 127, 146, 219, + 30, 255, 27, 125, 160, 90, 78, 118, 56, 245, 94, 72, 187, 3, 97, 167, 222, 221, 17, 137, 27, 159, 231, 123, 243, + 37, 34, 173, 110, 159, 27, 193, 218, 245, 199, 177, 113, 166, 68, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3598, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551615" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8263190367517091994" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "307cf117" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6863398035305588788" + } + }, + { + "_tag": "ByteArray", + "bytearray": "69990d09027f9555b052" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7122244708045625126" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12506204898876296745" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ea90a7942e0b6354" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10089889856946555522" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14848699452396338155" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1063730673141233931" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36e216825b7f6747cf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1860949322776050460" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4d4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5429455632430239884" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1660786854039622181" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0bd8669f1bffffffffffffffff9f0effff13d8669f1b72acbfdbe749289a9f44307cf1171b5f3fb0263680e8344a69990d09027f9555b052ffff1b62d74bd3a2771726801bad8ef71845c58e29d87e9f48ea90a7942e0b63541b8c067d5dca1dca82ff1bce112d7aec9efbebbf1b0ec321694d45390b4936e216825b7f6747cf1b19d36b8ca111fb1c42e4d41b4b594d2196bf908c1b170c4cd832ab9225ffff", + "cborBytes": [ + 191, 11, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 255, 159, 14, 255, 255, 19, 216, 102, 159, 27, 114, + 172, 191, 219, 231, 73, 40, 154, 159, 68, 48, 124, 241, 23, 27, 95, 63, 176, 38, 54, 128, 232, 52, 74, 105, 153, + 13, 9, 2, 127, 149, 85, 176, 82, 255, 255, 27, 98, 215, 75, 211, 162, 119, 23, 38, 128, 27, 173, 142, 247, 24, 69, + 197, 142, 41, 216, 126, 159, 72, 234, 144, 167, 148, 46, 11, 99, 84, 27, 140, 6, 125, 93, 202, 29, 202, 130, 255, + 27, 206, 17, 45, 122, 236, 158, 251, 235, 191, 27, 14, 195, 33, 105, 77, 69, 57, 11, 73, 54, 226, 22, 130, 91, + 127, 103, 71, 207, 27, 25, 211, 107, 140, 161, 17, 251, 28, 66, 228, 212, 27, 75, 89, 77, 33, 150, 191, 144, 140, + 27, 23, 12, 76, 216, 50, 171, 146, 37, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3599, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e80e161457730" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551602" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "34bbecd98f1793ba2cb766" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c333710d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13701107288388542541" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8319904772828854545" + } + }, + { + "_tag": "ByteArray", + "bytearray": "88c7dc06e8b23a39c9" + }, + { + "_tag": "ByteArray", + "bytearray": "04dd71f23b13bd93e429" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e770dc4d385fed9acc410bc7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc4263c1d9" + } + } + ] + }, + "cborHex": "bf470e80e161457730d8669f1bfffffffffffffff29f4b34bbecd98f1793ba2cb766ffff44c333710d9f1bbe241c7cb9ea204d1b73763d4f658a79114988c7dc06e8b23a39c94a04dd71f23b13bd93e429ff4ce770dc4d385fed9acc410bc745cc4263c1d9ff", + "cborBytes": [ + 191, 71, 14, 128, 225, 97, 69, 119, 48, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 242, 159, 75, 52, + 187, 236, 217, 143, 23, 147, 186, 44, 183, 102, 255, 255, 68, 195, 51, 113, 13, 159, 27, 190, 36, 28, 124, 185, + 234, 32, 77, 27, 115, 118, 61, 79, 101, 138, 121, 17, 73, 136, 199, 220, 6, 232, 178, 58, 57, 201, 74, 4, 221, + 113, 242, 59, 19, 189, 147, 228, 41, 255, 76, 231, 112, 220, 77, 56, 95, 237, 154, 204, 65, 11, 199, 69, 204, 66, + 99, 193, 217, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3600, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "409080722613009642" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1131009511484277376" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12a03f50c69b5d7c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10324930423350447223" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1910633113268748113" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14740223150785322215" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c823328deb4cbae14be8214d" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "723131454787549893" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8f793469cc516e5c83a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11403023236337794981" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12668931060218051590" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11205445434559659115" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17352938514201631712" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12595952353487271791" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b4aa466d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10014161486669369427" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6599321292925330060" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b05ad58bff3cefceabf1b0fb22728899bc2804812a03f50c69b5d7c1b8f498584266d4c771b1a83eeb18c7b7f511bcc8fcadbcc8c5ce74cc823328deb4cbae14be8214dff1b0a09143a1085fac54ac8f793469cc516e5c83a1b9e3fad37b7707fa5a01bafd115ad2835bc06d8669f1b9b81bd40f4f37c6b80ff1bf0d205a38c2edbe0d8669f1baecdcfede55ab76f9f44b4aa466d1b8af972d0985350531b5b957fc04f7c628cffffff", + "cborBytes": [ + 191, 27, 5, 173, 88, 191, 243, 206, 252, 234, 191, 27, 15, 178, 39, 40, 137, 155, 194, 128, 72, 18, 160, 63, 80, + 198, 155, 93, 124, 27, 143, 73, 133, 132, 38, 109, 76, 119, 27, 26, 131, 238, 177, 140, 123, 127, 81, 27, 204, + 143, 202, 219, 204, 140, 92, 231, 76, 200, 35, 50, 141, 235, 76, 186, 225, 75, 232, 33, 77, 255, 27, 10, 9, 20, + 58, 16, 133, 250, 197, 74, 200, 247, 147, 70, 156, 197, 22, 229, 200, 58, 27, 158, 63, 173, 55, 183, 112, 127, + 165, 160, 27, 175, 209, 21, 173, 40, 53, 188, 6, 216, 102, 159, 27, 155, 129, 189, 64, 244, 243, 124, 107, 128, + 255, 27, 240, 210, 5, 163, 140, 46, 219, 224, 216, 102, 159, 27, 174, 205, 207, 237, 229, 90, 183, 111, 159, 68, + 180, 170, 70, 109, 27, 138, 249, 114, 208, 152, 83, 80, 83, 27, 91, 149, 127, 192, 79, 124, 98, 140, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3601, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8530275386949779576" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2636660938023242269" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "31cca5a1c0d4b63af2ceab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + } + ] + }, + "cborHex": "bf1b7661a044e36640781b24974d274c060a1d4b31cca5a1c0d4b63af2ceab0cff", + "cborBytes": [ + 191, 27, 118, 97, 160, 68, 227, 102, 64, 120, 27, 36, 151, 77, 39, 76, 6, 10, 29, 75, 49, 204, 165, 161, 192, 212, + 182, 58, 242, 206, 171, 12, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3602, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2138359168271222930" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4f19c25c" + }, + { + "_tag": "ByteArray", + "bytearray": "772bee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12334516895076561993" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2880a4f8" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14000086661801279633" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15998900076370059170" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3d64f6b86c" + }, + { + "_tag": "ByteArray", + "bytearray": "cb6c" + } + ] + } + } + ] + }, + "cborHex": "bf1b1dacfa55830188929f444f19c25c43772bee1bab2d01c3d717b449442880a4f81bc24a4ca4ad598091ff1bde0782da8901dfa29f453d64f6b86c42cb6cffff", + "cborBytes": [ + 191, 27, 29, 172, 250, 85, 131, 1, 136, 146, 159, 68, 79, 25, 194, 92, 67, 119, 43, 238, 27, 171, 45, 1, 195, 215, + 23, 180, 73, 68, 40, 128, 164, 248, 27, 194, 74, 76, 164, 173, 89, 128, 145, 255, 27, 222, 7, 130, 218, 137, 1, + 223, 162, 159, 69, 61, 100, 246, 184, 108, 66, 203, 108, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3603, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5373555382082842994" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef116b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15360786064115063886" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17221347301796437675" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10836683834746732081" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f7eae2e9898c72681a91" + }, + { + "_tag": "ByteArray", + "bytearray": "7cb3f2739ec8f6aa9d418b6b" + }, + { + "_tag": "ByteArray", + "bytearray": "a0" + }, + { + "_tag": "ByteArray", + "bytearray": "f387d1c76a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15842197529476830159" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6570395620821239260" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "156956311251425217" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4a92b42651efb17243ef116b1bd52c798a56595c4ed8669f1beefe8420dd355eab9f1b9663a288514bfe314af7eae2e9898c72681a914c7cb3f2739ec8f6aa9d418b6b41a045f387d1c76affff1bdbdacab7ae0993cfd8669f1b5b2ebc0174d505dc9f1b022d9eeef96597c1ffffff", + "cborBytes": [ + 191, 27, 74, 146, 180, 38, 81, 239, 177, 114, 67, 239, 17, 107, 27, 213, 44, 121, 138, 86, 89, 92, 78, 216, 102, + 159, 27, 238, 254, 132, 32, 221, 53, 94, 171, 159, 27, 150, 99, 162, 136, 81, 75, 254, 49, 74, 247, 234, 226, 233, + 137, 140, 114, 104, 26, 145, 76, 124, 179, 242, 115, 158, 200, 246, 170, 157, 65, 139, 107, 65, 160, 69, 243, 135, + 209, 199, 106, 255, 255, 27, 219, 218, 202, 183, 174, 9, 147, 207, 216, 102, 159, 27, 91, 46, 188, 1, 116, 213, 5, + 220, 159, 27, 2, 45, 158, 238, 249, 101, 151, 193, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3604, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "430f7b25dd9eed9e99a9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13603271713061201266" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55365adac85febdf3fe2dc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "acc396bd7b73a205" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "96aacd429064857bc0ba78" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10757156363880033829" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13937072904630907373" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8590719487224441797" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5290464553055148721" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79238ed87067887482f22ca0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9694758574732877983" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4a430f7b25dd9eed9e99a91bbcc8878cc021e5724b55365adac85febdf3fe2dc48acc396bd7b73a2054b96aacd429064857bc0ba78d8669f1b954918b81666ee259f1bc16a6df7093f31edffff41babf1b77385ddba909ebc51b496b817b1da5dab14c79238ed87067887482f22ca01b868ab38f0620209fffff", + "cborBytes": [ + 191, 74, 67, 15, 123, 37, 221, 158, 237, 158, 153, 169, 27, 188, 200, 135, 140, 192, 33, 229, 114, 75, 85, 54, 90, + 218, 200, 95, 235, 223, 63, 226, 220, 72, 172, 195, 150, 189, 123, 115, 162, 5, 75, 150, 170, 205, 66, 144, 100, + 133, 123, 192, 186, 120, 216, 102, 159, 27, 149, 73, 24, 184, 22, 102, 238, 37, 159, 27, 193, 106, 109, 247, 9, + 63, 49, 237, 255, 255, 65, 186, 191, 27, 119, 56, 93, 219, 169, 9, 235, 197, 27, 73, 107, 129, 123, 29, 165, 218, + 177, 76, 121, 35, 142, 216, 112, 103, 136, 116, 130, 242, 44, 160, 27, 134, 138, 179, 143, 6, 32, 32, 159, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3605, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5339182051751120071" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5988975571821332993" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "570041287474659310" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10933315918445463083" + } + }, + { + "_tag": "ByteArray", + "bytearray": "15dc1da7dd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18039407402271294477" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9080472144856275345" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3b618a753a1a" + }, + { + "_tag": "ByteArray", + "bytearray": "71f5aa03b4e6d06456971d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9730735092126988347" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10921894495871608346" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "35" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5831671497301576120" + } + } + } + ] + }, + "cborHex": "bf1b4a1895c9b1c44cc7d8669f1b531d1d8d36e70a019f1b07e93187df3bbfee1b97baf0e69010c62b4515dc1da7dd1bfa58d9749aeec40dffff1b7e04514e2afcd9919f463b618a753a1a4b71f5aa03b4e6d06456971dff1b870a8402b9a8383b1b97925d2d64b8a61a41351b50ee42544b6e49b8ff", + "cborBytes": [ + 191, 27, 74, 24, 149, 201, 177, 196, 76, 199, 216, 102, 159, 27, 83, 29, 29, 141, 54, 231, 10, 1, 159, 27, 7, 233, + 49, 135, 223, 59, 191, 238, 27, 151, 186, 240, 230, 144, 16, 198, 43, 69, 21, 220, 29, 167, 221, 27, 250, 88, 217, + 116, 154, 238, 196, 13, 255, 255, 27, 126, 4, 81, 78, 42, 252, 217, 145, 159, 70, 59, 97, 138, 117, 58, 26, 75, + 113, 245, 170, 3, 180, 230, 208, 100, 86, 151, 29, 255, 27, 135, 10, 132, 2, 185, 168, 56, 59, 27, 151, 146, 93, + 45, 100, 184, 166, 26, 65, 53, 27, 80, 238, 66, 84, 75, 110, 73, 184, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3606, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "55bd79c5584f7d96c6c750" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "205957" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11288487817493052102" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8306045368798501295" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c3b2799a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10370876083950764207" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b134d8f362fe23" + } + ] + } + } + ] + }, + "cborHex": "bf4b55bd79c5584f7d96c6c7509f43205957ff41ddd8669f1b9ca8c3dc6cff7ac69f1b734500416f8359af44c3b2799a1b8fecc0d9e17ac0af47b134d8f362fe23ffffff", + "cborBytes": [ + 191, 75, 85, 189, 121, 197, 88, 79, 125, 150, 198, 199, 80, 159, 67, 32, 89, 87, 255, 65, 221, 216, 102, 159, 27, + 156, 168, 195, 220, 108, 255, 122, 198, 159, 27, 115, 69, 0, 65, 111, 131, 89, 175, 68, 195, 178, 121, 154, 27, + 143, 236, 192, 217, 225, 122, 192, 175, 71, 177, 52, 216, 243, 98, 254, 35, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3607, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9b47a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dc312f9ad27c" + }, + { + "_tag": "ByteArray", + "bytearray": "618743891c8bd18c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16225049901775770316" + } + } + ] + } + } + ] + }, + "cborHex": "bf43f9b47ad9050a9f46dc312f9ad27c48618743891c8bd18c1be12af4ebf254d2ccffff", + "cborBytes": [ + 191, 67, 249, 180, 122, 217, 5, 10, 159, 70, 220, 49, 47, 154, 210, 124, 72, 97, 135, 67, 137, 28, 139, 209, 140, + 27, 225, 42, 244, 235, 242, 84, 210, 204, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3608, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3126561871368678822" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15469259084470674195" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13413488339283920988" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3870890810636730008" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e7d30dedb7539a79224cca06" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5770787653354808716" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7214047270810529174" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9b0d91e364ea548027" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9749145140076812281" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7697485069916488282" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11202640902086208799" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13234175310675757683" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eba570e2ae055c82" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16086272207163266024" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12427502162623926412" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a623" + }, + { + "_tag": "ByteArray", + "bytearray": "87c9" + } + ] + } + } + ] + }, + "cborHex": "bf1b2b63c774ef35eda6d8669f1bd6add92d7c5be3139f1bba264893addcc85c1b35b82aaef4537e984ce7d30dedb7539a79224cca061b5015f4cbb86c658cffff1b641d71c56989ad96499b0d91e364ea5480271b874bebda0a0117f9bf1b6ad2f5e3583ec25a1b9b77c68bdb1c2d1f1bb7a93c53d012ca7348eba570e2ae055c82ff1bdf3deb57fc3493e89f1bac775b5f8899108c42a6234287c9ffff", + "cborBytes": [ + 191, 27, 43, 99, 199, 116, 239, 53, 237, 166, 216, 102, 159, 27, 214, 173, 217, 45, 124, 91, 227, 19, 159, 27, + 186, 38, 72, 147, 173, 220, 200, 92, 27, 53, 184, 42, 174, 244, 83, 126, 152, 76, 231, 211, 13, 237, 183, 83, 154, + 121, 34, 76, 202, 6, 27, 80, 21, 244, 203, 184, 108, 101, 140, 255, 255, 27, 100, 29, 113, 197, 105, 137, 173, + 150, 73, 155, 13, 145, 227, 100, 234, 84, 128, 39, 27, 135, 75, 235, 218, 10, 1, 23, 249, 191, 27, 106, 210, 245, + 227, 88, 62, 194, 90, 27, 155, 119, 198, 139, 219, 28, 45, 31, 27, 183, 169, 60, 83, 208, 18, 202, 115, 72, 235, + 165, 112, 226, 174, 5, 92, 130, 255, 27, 223, 61, 235, 87, 252, 52, 147, 232, 159, 27, 172, 119, 91, 95, 136, 153, + 16, 140, 66, 166, 35, 66, 135, 201, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3609, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8fd479" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "87e3d3ca47d427" + } + } + ] + }, + "cborHex": "bf438fd4794787e3d3ca47d427ff", + "cborBytes": [191, 67, 143, 212, 121, 71, 135, 227, 211, 202, 71, 212, 39, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3610, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0fcee6b774402f896116c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "207100964670322420" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3989813928576879182" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14072184383086875327" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17639952710964779989" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03fb3b" + }, + { + "_tag": "ByteArray", + "bytearray": "2fe8" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14566439191109670476" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "480071b9" + } + } + ] + }, + "cborHex": "bf014ba0fcee6b774402f896116c1b02dfc53ae7d0b6f4801b375eaaa10cbb0a4e801bc34a712387b152bf9f1bfffffffffffffff61bf4cdb387b7be9bd54303fb3b422fe8ff1bca2663449c6b964c44480071b9ff", + "cborBytes": [ + 191, 1, 75, 160, 252, 238, 107, 119, 68, 2, 248, 150, 17, 108, 27, 2, 223, 197, 58, 231, 208, 182, 244, 128, 27, + 55, 94, 170, 161, 12, 187, 10, 78, 128, 27, 195, 74, 113, 35, 135, 177, 82, 191, 159, 27, 255, 255, 255, 255, 255, + 255, 255, 246, 27, 244, 205, 179, 135, 183, 190, 155, 213, 67, 3, 251, 59, 66, 47, 232, 255, 27, 202, 38, 99, 68, + 156, 107, 150, 76, 68, 72, 0, 113, 185, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3611, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18389461106116473908" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1da89bc4a511" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11009232345840059117" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6cba" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bbd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6b57a5e83bdf2ee" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1529011690568766377" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13682425901867248162" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ad73ac5c2c0f83f6e00c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3199304666204366337" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bff347d71c8ef3434414b461da89bc4a5111b98c8a67d378982ed426cba428bbd48d6b57a5e83bdf2ee9f1b1538240811c553a91bbde1bddd7a66aa224aad73ac5c2c0f83f6e00c1b2c6636a4ad5c6601ffff", + "cborBytes": [ + 191, 27, 255, 52, 125, 113, 200, 239, 52, 52, 65, 75, 70, 29, 168, 155, 196, 165, 17, 27, 152, 200, 166, 125, 55, + 137, 130, 237, 66, 108, 186, 66, 139, 189, 72, 214, 181, 122, 94, 131, 189, 242, 238, 159, 27, 21, 56, 36, 8, 17, + 197, 83, 169, 27, 189, 225, 189, 221, 122, 102, 170, 34, 74, 173, 115, 172, 92, 44, 15, 131, 246, 224, 12, 27, 44, + 102, 54, 164, 173, 92, 102, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3612, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98f8d14c9afa16" + } + } + ] + }, + "cborHex": "bf024798f8d14c9afa16ff", + "cborBytes": [191, 2, 71, 152, 248, 209, 76, 154, 250, 22, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3613, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c9991d596771999614" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d3bdcbf2780eb1719" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffffa41fe49c9991d596771999614bf0d492d3bdcbf2780eb1719ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 250, 65, 254, 73, 201, 153, 29, 89, 103, 113, 153, 150, 20, 191, 13, + 73, 45, 59, 220, 191, 39, 128, 235, 23, 25, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3614, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9fc" + } + } + ] + }, + "cborHex": "bf410542d9fcff", + "cborBytes": [191, 65, 5, 66, 217, 252, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3615, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14922836087750811616" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8236733071060928094" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ff9f20d5bc5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8645461cb644" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aeb5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5e5942ca5a184eb71" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4299810755306444024" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17691290661604227017" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10279763738496813874" + } + } + } + ] + }, + "cborHex": "bf1bcf18905b73c45fe0bf1b724ec1168a4c865e467ff9f20d5bc5468645461cb64442aeb549d5e5942ca5a184eb711b3babff19bf71d4f8ff1bf584171fcf1af7c91b8ea90ea7d80b4b32ff", + "cborBytes": [ + 191, 27, 207, 24, 144, 91, 115, 196, 95, 224, 191, 27, 114, 78, 193, 22, 138, 76, 134, 94, 70, 127, 249, 242, 13, + 91, 197, 70, 134, 69, 70, 28, 182, 68, 66, 174, 181, 73, 213, 229, 148, 44, 165, 161, 132, 235, 113, 27, 59, 171, + 255, 25, 191, 113, 212, 248, 255, 27, 245, 132, 23, 31, 207, 26, 247, 201, 27, 142, 169, 14, 167, 216, 11, 75, 50, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3616, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15b7887b39493aef" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7834708253613658648" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "308d40a680406bb1429cc6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9304126792587312755" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7237117843838329161" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e2bcb8156d8257818850e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5984976139552582390" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c608dc551114a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1768861091938383549" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15939607810986543763" + } + }, + { + "_tag": "ByteArray", + "bytearray": "169e46a027a03707" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b35570f1fc0a993" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "47e09d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3308dc1e" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dfa0eba1af1f7ab8717d" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e619" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f652ee4abaca25a7640b" + } + } + ] + }, + "cborHex": "bf4815b7887b39493aefbf1b6cba79a5877692184b308d40a680406bb1429cc61b811ee605c15c7e731b646f6855c79fe1494b9e2bcb8156d8257818850e1b530ee816d3386af6ff475c608dc551114ad8669f1b188c41ca91ff36bd9f1bdd34dcda38e50a9348169e46a027a03707ffff486b35570f1fc0a993bf4347e09d443308dc1eff4adfa0eba1af1f7ab8717d8042e6194af652ee4abaca25a7640bff", + "cborBytes": [ + 191, 72, 21, 183, 136, 123, 57, 73, 58, 239, 191, 27, 108, 186, 121, 165, 135, 118, 146, 24, 75, 48, 141, 64, 166, + 128, 64, 107, 177, 66, 156, 198, 27, 129, 30, 230, 5, 193, 92, 126, 115, 27, 100, 111, 104, 85, 199, 159, 225, 73, + 75, 158, 43, 203, 129, 86, 216, 37, 120, 24, 133, 14, 27, 83, 14, 232, 22, 211, 56, 106, 246, 255, 71, 92, 96, + 141, 197, 81, 17, 74, 216, 102, 159, 27, 24, 140, 65, 202, 145, 255, 54, 189, 159, 27, 221, 52, 220, 218, 56, 229, + 10, 147, 72, 22, 158, 70, 160, 39, 160, 55, 7, 255, 255, 72, 107, 53, 87, 15, 31, 192, 169, 147, 191, 67, 71, 224, + 157, 68, 51, 8, 220, 30, 255, 74, 223, 160, 235, 161, 175, 31, 122, 184, 113, 125, 128, 66, 230, 25, 74, 246, 82, + 238, 74, 186, 202, 37, 167, 100, 11, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3617, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a42666afba540dd8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3044300765611185887" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14894961985615366225" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17354653893707589296" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4913399679703666629" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed1dcdc0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e78a959b86729de47815fa" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b40103c17505bd74c5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "51" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3699fc3eae3c2ed9b75a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5c14aa5676b578862cd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1afc1ec9336f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1736805c26f56" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cf2d931908010559a3cc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6f44b801bd1e9d9a1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a4bda8d28392a1df4ce2" + } + } + ] + } + } + ] + }, + "cborHex": "bf48a42666afba540dd8bf1b2a3f876abbb456df1bceb589024f8d08511bf0d81dc4764a66b01b442fe6f9f4414fc544ed1dcdc04be78a959b86729de47815faff49b40103c17505bd74c5bf41514a3699fc3eae3c2ed9b75a4ac5c14aa5676b578862cd461afc1ec9336f47d1736805c26f564acf2d931908010559a3cc49e6f44b801bd1e9d9a14aa4bda8d28392a1df4ce2ffff", + "cborBytes": [ + 191, 72, 164, 38, 102, 175, 186, 84, 13, 216, 191, 27, 42, 63, 135, 106, 187, 180, 86, 223, 27, 206, 181, 137, 2, + 79, 141, 8, 81, 27, 240, 216, 29, 196, 118, 74, 102, 176, 27, 68, 47, 230, 249, 244, 65, 79, 197, 68, 237, 29, + 205, 192, 75, 231, 138, 149, 155, 134, 114, 157, 228, 120, 21, 250, 255, 73, 180, 1, 3, 193, 117, 5, 189, 116, + 197, 191, 65, 81, 74, 54, 153, 252, 62, 174, 60, 46, 217, 183, 90, 74, 197, 193, 74, 165, 103, 107, 87, 136, 98, + 205, 70, 26, 252, 30, 201, 51, 111, 71, 209, 115, 104, 5, 194, 111, 86, 74, 207, 45, 147, 25, 8, 1, 5, 89, 163, + 204, 73, 230, 244, 75, 128, 27, 209, 233, 217, 161, 74, 164, 189, 168, 210, 131, 146, 161, 223, 76, 226, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3618, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "689835257247937527" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15089029476785066613" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8294054404916795170" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "154694885749213323" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5856586234534124304" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1466875340343707885" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10385298550365561541" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7a70e53d595104" + }, + { + "_tag": "ByteArray", + "bytearray": "1283fd" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "09353c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6084701535836871835" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0992c982f5cdb3f71bd167005d312c12751b731a668998d45722d8669f1b0225962dd1a6c88b9f1b5146c62699d95b101b145b6359a6f788ed1b901ffe0204eb22c5477a70e53d595104431283fdffff4309353c9f1b547133cf07d49c9bffff", + "cborBytes": [ + 191, 27, 9, 146, 201, 130, 245, 205, 179, 247, 27, 209, 103, 0, 93, 49, 44, 18, 117, 27, 115, 26, 102, 137, 152, + 212, 87, 34, 216, 102, 159, 27, 2, 37, 150, 45, 209, 166, 200, 139, 159, 27, 81, 70, 198, 38, 153, 217, 91, 16, + 27, 20, 91, 99, 89, 166, 247, 136, 237, 27, 144, 31, 254, 2, 4, 235, 34, 197, 71, 122, 112, 229, 61, 89, 81, 4, + 67, 18, 131, 253, 255, 255, 67, 9, 53, 60, 159, 27, 84, 113, 51, 207, 7, 212, 156, 155, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3619, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "382054dd8e1bfae26f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12177645014352393063" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "59954b49443146" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2465e3a9" + } + ] + } + } + ] + }, + "cborHex": "bf49382054dd8e1bfae26f1ba8ffaf9ee147f3674759954b494431469f442465e3a9ffff", + "cborBytes": [ + 191, 73, 56, 32, 84, 221, 142, 27, 250, 226, 111, 27, 168, 255, 175, 158, 225, 71, 243, 103, 71, 89, 149, 75, 73, + 68, 49, 70, 159, 68, 36, 101, 227, 169, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3620, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6451659387878461659" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3298281166326806114" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "3becf3" + } + ] + } + } + ] + }, + "cborHex": "bf1b5988e607ea4f50dbd8669f1b2dc5d93ee84536629f433becf3ffffff", + "cborBytes": [ + 191, 27, 89, 136, 230, 7, 234, 79, 80, 219, 216, 102, 159, 27, 45, 197, 217, 62, 232, 69, 54, 98, 159, 67, 59, + 236, 243, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3621, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1226249043534739853" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4658539c80bf" + }, + { + "_tag": "ByteArray", + "bytearray": "7f07f6279ff36e946ee1" + }, + { + "_tag": "ByteArray", + "bytearray": "7d343056ca0e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5318960701759630718" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "185af0e371efe8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "60d0c9cc6e3ee9a181b36e04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5678963596397004641" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b11048302160cf98d9f464658539c80bf4a7f07f6279ff36e946ee1467d343056ca0e1b49d0be93c2a52d7eff47185af0e371efe8bf4c60d0c9cc6e3ee9a181b36e041b4ecfbb4d6f9e4761ffff", + "cborBytes": [ + 191, 27, 17, 4, 131, 2, 22, 12, 249, 141, 159, 70, 70, 88, 83, 156, 128, 191, 74, 127, 7, 246, 39, 159, 243, 110, + 148, 110, 225, 70, 125, 52, 48, 86, 202, 14, 27, 73, 208, 190, 147, 194, 165, 45, 126, 255, 71, 24, 90, 240, 227, + 113, 239, 232, 191, 76, 96, 208, 201, 204, 110, 62, 233, 161, 129, 179, 110, 4, 27, 78, 207, 187, 77, 111, 158, + 71, 97, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3622, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "31751f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea3ad952ae65510f21" + } + } + ] + }, + "cborHex": "bf4331751f49ea3ad952ae65510f21ff", + "cborBytes": [191, 67, 49, 117, 31, 73, 234, 58, 217, 82, 174, 101, 81, 15, 33, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3623, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9595400237055367099" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b50f880480864b2ec3fdb5de" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10080752038869922850" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3794445540947837577" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4b2dbcd917755313b3af92" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1744300243821673193" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ebdb6b68adc621d2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3693026462225223666" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1205260521771157276" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b8529b5ad4f6257bb4cb50f880480864b2ec3fdb5de1b8be60691b9a2f4229f1b34a8941d9bc2c289ff4b4b2dbcd917755313b3af92d8669f1b1834ffd47e9e3ae99f48ebdb6b68adc621d21b334044003b0d4ff21b10b9f20f0df8c71cffffff", + "cborBytes": [ + 191, 27, 133, 41, 181, 173, 79, 98, 87, 187, 76, 181, 15, 136, 4, 128, 134, 75, 46, 195, 253, 181, 222, 27, 139, + 230, 6, 145, 185, 162, 244, 34, 159, 27, 52, 168, 148, 29, 155, 194, 194, 137, 255, 75, 75, 45, 188, 217, 23, 117, + 83, 19, 179, 175, 146, 216, 102, 159, 27, 24, 52, 255, 212, 126, 158, 58, 233, 159, 72, 235, 219, 107, 104, 173, + 198, 33, 210, 27, 51, 64, 68, 0, 59, 13, 79, 242, 27, 16, 185, 242, 15, 13, 248, 199, 28, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3624, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "248b907e46f7cc0ba5bd09" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10070990406367414888" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e0b4f4afbe032c21" + }, + { + "_tag": "ByteArray", + "bytearray": "7dae" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "502ba0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8981135991095300241" + } + } + } + ] + }, + "cborHex": "bf4b248b907e46f7cc0ba5bd09d8669f1b8bc3586a8be58a689f48e0b4f4afbe032c21427daeffff43502ba01b7ca367998cb61091ff", + "cborBytes": [ + 191, 75, 36, 139, 144, 126, 70, 247, 204, 11, 165, 189, 9, 216, 102, 159, 27, 139, 195, 88, 106, 139, 229, 138, + 104, 159, 72, 224, 180, 244, 175, 190, 3, 44, 33, 66, 125, 174, 255, 255, 67, 80, 43, 160, 27, 124, 163, 103, 153, + 140, 182, 16, 145, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3625, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7d00f902ed37fb3aa203ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + } + } + ] + }, + "cborHex": "bf4b7d00f902ed37fb3aa203ff01ff", + "cborBytes": [191, 75, 125, 0, 249, 2, 237, 55, 251, 58, 162, 3, 255, 1, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3626, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f906" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14810401481478791391" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13874851643412138379" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1a6f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6043445541565251004" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f889" + } + ] + } + } + ] + }, + "cborHex": "bf42f906d905059f1bcd891dadb47660df1bc08d600ebcd3498b421a6f1b53dea1b3546a3dbc42f889ffff", + "cborBytes": [ + 191, 66, 249, 6, 217, 5, 5, 159, 27, 205, 137, 29, 173, 180, 118, 96, 223, 27, 192, 141, 96, 14, 188, 211, 73, + 139, 66, 26, 111, 27, 83, 222, 161, 179, 84, 106, 61, 188, 66, 248, 137, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3627, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4efbeba3bd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5922817699308632666" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b170f1dd919685164f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5800824813531097427" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac51125f80" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1870" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba02e3c6c7" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf454efbeba3bd9f1b523213512caffa5a49b170f1dd919685164f1b5080ab6f0ecae953ff45ac51125f809f421870ff45ba02e3c6c780ff", + "cborBytes": [ + 191, 69, 78, 251, 235, 163, 189, 159, 27, 82, 50, 19, 81, 44, 175, 250, 90, 73, 177, 112, 241, 221, 145, 150, 133, + 22, 79, 27, 80, 128, 171, 111, 14, 202, 233, 83, 255, 69, 172, 81, 18, 95, 128, 159, 66, 24, 112, 255, 69, 186, 2, + 227, 198, 199, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3628, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3535989342979412576" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17112909839398597721" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87523e98004958b269" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4172979178725953139" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8206952357539205691" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12678490467887613506" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a48d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9df749ad2294c696e961ae74" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14994410678008220834" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee962f6ba9a41f8e10117c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d5e79b135e836484b7c" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3143a5bc228e9508a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1c93ff2743cdef72d70e" + }, + { + "_tag": "ByteArray", + "bytearray": "46e7b631fdd3652bf27269" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2748319967929894342" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15653423494645021500" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af774baab2b49921d2ef69" + } + ] + } + } + ] + }, + "cborHex": "bf1b31125b92addad260d8669f1bed7d44d4b2a3f45980ff4987523e98004958b269bf1b39e96674230fce731b71e4f3afd7add23b1baff30be8329e064242a48d4c9df749ad2294c696e961ae741bd016d9115f010ca24bee962f6ba9a41f8e10117c4a2d5e79b135e836484b7cff49a3143a5bc228e9508a9f4a1c93ff2743cdef72d70e4b46e7b631fdd3652bf272691b2623fe73199305c61bd93c21bba511fb3c4baf774baab2b49921d2ef69ffff", + "cborBytes": [ + 191, 27, 49, 18, 91, 146, 173, 218, 210, 96, 216, 102, 159, 27, 237, 125, 68, 212, 178, 163, 244, 89, 128, 255, + 73, 135, 82, 62, 152, 0, 73, 88, 178, 105, 191, 27, 57, 233, 102, 116, 35, 15, 206, 115, 27, 113, 228, 243, 175, + 215, 173, 210, 59, 27, 175, 243, 11, 232, 50, 158, 6, 66, 66, 164, 141, 76, 157, 247, 73, 173, 34, 148, 198, 150, + 233, 97, 174, 116, 27, 208, 22, 217, 17, 95, 1, 12, 162, 75, 238, 150, 47, 107, 169, 164, 31, 142, 16, 17, 124, + 74, 45, 94, 121, 177, 53, 232, 54, 72, 75, 124, 255, 73, 163, 20, 58, 91, 194, 40, 233, 80, 138, 159, 74, 28, 147, + 255, 39, 67, 205, 239, 114, 215, 14, 75, 70, 231, 182, 49, 253, 211, 101, 43, 242, 114, 105, 27, 38, 35, 254, 115, + 25, 147, 5, 198, 27, 217, 60, 33, 187, 165, 17, 251, 60, 75, 175, 119, 75, 170, 178, 180, 153, 33, 210, 239, 105, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3629, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f204e14c09b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07" + } + } + ] + }, + "cborHex": "bf46f204e14c09b84107ff", + "cborBytes": [191, 70, 242, 4, 225, 76, 9, 184, 65, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3630, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "929529803523754253" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1e145782001ac2032e5147" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3873171965167738404" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "25" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4346850090830392262" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6909cdd6a456276035a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13024913465517639991" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2648f6e5f962" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7c64d0" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86e2b15cc5feb191bba0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f3a142f333936bac57557" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2ece06a0a3cac85039" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d10eb3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4555839848951697017" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3456e7ce378b48f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11518887298647312401" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14061750289807883825" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ed5246f9ba8ed4c256cb963" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14394554114316452041" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3685395377577608837" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14621729240716229681" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15995741310423647857" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0698a584903776fdc488" + }, + { + "_tag": "ByteArray", + "bytearray": "dc01ca67" + }, + { + "_tag": "ByteArray", + "bytearray": "8cee85" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7037161824420178867" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0ce65a6e732c090d9f4b1e145782001ac2032e5147ff1b35c04561a1d31e2441251b3c531d2083d1ebc6bf4a6909cdd6a456276035a71bb4c1c9c9b6618937416e462648f6e5f962437c64d04a86e2b15cc5feb191bba04b9f3a142f333936bac57557492ece06a0a3cac8503943d10eb31b3f3998346a55ce7948d3456e7ce378b48f1b9fdb4ef7eba1c811ff1bc3255f62e03ebe314c7ed5246f9ba8ed4c256cb9631bc7c3bab38bf840c91b33252791e16146851bcaead14672d53c319f1bddfc49f906d7c6714a0698a584903776fdc48844dc01ca67438cee851b61a9056513812bb3ffff", + "cborBytes": [ + 191, 27, 12, 230, 90, 110, 115, 44, 9, 13, 159, 75, 30, 20, 87, 130, 0, 26, 194, 3, 46, 81, 71, 255, 27, 53, 192, + 69, 97, 161, 211, 30, 36, 65, 37, 27, 60, 83, 29, 32, 131, 209, 235, 198, 191, 74, 105, 9, 205, 214, 164, 86, 39, + 96, 53, 167, 27, 180, 193, 201, 201, 182, 97, 137, 55, 65, 110, 70, 38, 72, 246, 229, 249, 98, 67, 124, 100, 208, + 74, 134, 226, 177, 92, 197, 254, 177, 145, 187, 160, 75, 159, 58, 20, 47, 51, 57, 54, 186, 197, 117, 87, 73, 46, + 206, 6, 160, 163, 202, 200, 80, 57, 67, 209, 14, 179, 27, 63, 57, 152, 52, 106, 85, 206, 121, 72, 211, 69, 110, + 124, 227, 120, 180, 143, 27, 159, 219, 78, 247, 235, 161, 200, 17, 255, 27, 195, 37, 95, 98, 224, 62, 190, 49, 76, + 126, 213, 36, 111, 155, 168, 237, 76, 37, 108, 185, 99, 27, 199, 195, 186, 179, 139, 248, 64, 201, 27, 51, 37, 39, + 145, 225, 97, 70, 133, 27, 202, 234, 209, 70, 114, 213, 60, 49, 159, 27, 221, 252, 73, 249, 6, 215, 198, 113, 74, + 6, 152, 165, 132, 144, 55, 118, 253, 196, 136, 68, 220, 1, 202, 103, 67, 140, 238, 133, 27, 97, 169, 5, 101, 19, + 129, 43, 179, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3631, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "332696742534883012" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3245597691930278654" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "614497141868475024" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0f849aea388afa4b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5924839967112974027" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a00a36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11552345579094668954" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6538b79cfd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7180396232489697951" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11327500891917742184" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6639700820028195361" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11409188154402267811" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10787122397267226166" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11927520804371891390" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10804023282131266319" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7296330014701636757" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11746916375600237804" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46ed12672365d5" + } + } + ] + }, + "cborHex": "bf1b049df9ecb4b8a6c4d8669f1b2d0aade7a754fafe80ff1b088721e510903290480f849aea388afa4b1b5239428f16ce4ecb9f43a00a361ba0522d18e47df69a456538b79cfd1b63a5e454801a029fff1b9d335e0ba7ad7068d8669f1b5c24f4b798a6822180ff1b9e55942d8ebde2a3d8669f1b95b38eaaedc5ee369f1ba58710fa13ab04be1b95ef99eed47beb0f1b6541c57da24fcc95ffff1ba3056e34addf0cec4746ed12672365d5ff", + "cborBytes": [ + 191, 27, 4, 157, 249, 236, 180, 184, 166, 196, 216, 102, 159, 27, 45, 10, 173, 231, 167, 84, 250, 254, 128, 255, + 27, 8, 135, 33, 229, 16, 144, 50, 144, 72, 15, 132, 154, 234, 56, 138, 250, 75, 27, 82, 57, 66, 143, 22, 206, 78, + 203, 159, 67, 160, 10, 54, 27, 160, 82, 45, 24, 228, 125, 246, 154, 69, 101, 56, 183, 156, 253, 27, 99, 165, 228, + 84, 128, 26, 2, 159, 255, 27, 157, 51, 94, 11, 167, 173, 112, 104, 216, 102, 159, 27, 92, 36, 244, 183, 152, 166, + 130, 33, 128, 255, 27, 158, 85, 148, 45, 142, 189, 226, 163, 216, 102, 159, 27, 149, 179, 142, 170, 237, 197, 238, + 54, 159, 27, 165, 135, 16, 250, 19, 171, 4, 190, 27, 149, 239, 153, 238, 212, 123, 235, 15, 27, 101, 65, 197, 125, + 162, 79, 204, 149, 255, 255, 27, 163, 5, 110, 52, 173, 223, 12, 236, 71, 70, 237, 18, 103, 35, 101, 213, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3632, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15234219569586266658" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9536728139319561633" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + } + ] + }, + "cborHex": "bf1bd36ad1fbf37e62229f1b845943b7079d4da1ff42fbff14ff", + "cborBytes": [ + 191, 27, 211, 106, 209, 251, 243, 126, 98, 34, 159, 27, 132, 89, 67, 183, 7, 157, 77, 161, 255, 66, 251, 255, 20, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3633, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "026f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c2ad60" + } + } + ] + } + } + ] + }, + "cborHex": "bf42026fbf061bffffffffffffffeb0f43c2ad60ffff", + "cborBytes": [191, 66, 2, 111, 191, 6, 27, 255, 255, 255, 255, 255, 255, 255, 235, 15, 67, 194, 173, 96, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3634, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3859598592359563374" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4641520245152418148" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "66fc8894120154" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9055210539960931325" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9687967970542489853" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9736801192887205126" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6042233783381261867" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15494047735100333954" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9245098668088494666" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17693272100735188173" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11299966651494696481" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12521906514251840521" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14415563940835232991" + } + } + } + ] + }, + "cborHex": "bf1b35900c788130806ebf1b4069fe12361809644766fc88941201541b7daa920270be93fd1b8672938a478c10fd1b87201118dea43d061b53da539ce44dfe2b1bd705ea52f799df821b804d304188da0a4a1bf58b213b8ea67ccd1b9cd18bccbc1a0621ff1badc6bfa17ca17c091bc80e5f06fa6a0cdfff", + "cborBytes": [ + 191, 27, 53, 144, 12, 120, 129, 48, 128, 110, 191, 27, 64, 105, 254, 18, 54, 24, 9, 100, 71, 102, 252, 136, 148, + 18, 1, 84, 27, 125, 170, 146, 2, 112, 190, 147, 253, 27, 134, 114, 147, 138, 71, 140, 16, 253, 27, 135, 32, 17, + 24, 222, 164, 61, 6, 27, 83, 218, 83, 156, 228, 77, 254, 43, 27, 215, 5, 234, 82, 247, 153, 223, 130, 27, 128, 77, + 48, 65, 136, 218, 10, 74, 27, 245, 139, 33, 59, 142, 166, 124, 205, 27, 156, 209, 139, 204, 188, 26, 6, 33, 255, + 27, 173, 198, 191, 161, 124, 161, 124, 9, 27, 200, 14, 95, 6, 250, 106, 12, 223, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3635, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a7d3d084ce53123e3c7a70e6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15559028194146409352" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12953379869151895817" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "19acf8477057681a2b9f" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11882484329486290668" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8842279173004328390" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13233215076383534014" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3733292217264424098" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1801e4c4d1c8a5699212" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7490037122644484639" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3bb2bd1b92b2bb41d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3161825266886297059" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf11801bffffffffffffffee4ca7d3d084ce53123e3c7a70e61bfffffffffffffff89f1bd7ecc5b512625b881bb3c3a65c6d7ea109ff4a19acf8477057681a2b9fbf1ba4e7108aa42d0eec1b7ab6160f37c1fdc61bb7a5d2ffd82f2bbe1b33cf517de4c6c4a24a1801e4c4d1c8a56992121b67f1f51441b6a21f49b3bb2bd1b92b2bb41d1b2be10f54029cc5e3ffff", + "cborBytes": [ + 191, 17, 128, 27, 255, 255, 255, 255, 255, 255, 255, 238, 76, 167, 211, 208, 132, 206, 83, 18, 62, 60, 122, 112, + 230, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 27, 215, 236, 197, 181, 18, 98, 91, 136, 27, 179, 195, 166, + 92, 109, 126, 161, 9, 255, 74, 25, 172, 248, 71, 112, 87, 104, 26, 43, 159, 191, 27, 164, 231, 16, 138, 164, 45, + 14, 236, 27, 122, 182, 22, 15, 55, 193, 253, 198, 27, 183, 165, 210, 255, 216, 47, 43, 190, 27, 51, 207, 81, 125, + 228, 198, 196, 162, 74, 24, 1, 228, 196, 209, 200, 165, 105, 146, 18, 27, 103, 241, 245, 20, 65, 182, 162, 31, 73, + 179, 187, 43, 209, 185, 43, 43, 180, 29, 27, 43, 225, 15, 84, 2, 156, 197, 227, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3636, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5647894391152075074" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b4e615a06618a6142a01bffffffffffffffed80ff", + "cborBytes": [191, 27, 78, 97, 90, 6, 97, 138, 97, 66, 160, 27, 255, 255, 255, 255, 255, 255, 255, 237, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3637, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6e520082c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2c98946ad0907c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5968171463815933549" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5567003128104721090" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "786372660221580665" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac020997fa14846c2b03e2d0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3316344189123336207" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5bdf5161121" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9638898343838837905" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2198763510307770048" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf089f456e520082c41bfffffffffffffff9472c98946ad0907c1b52d334535b5f2e6dff09d8669f1b4d41f7d98a2b9ac29f1b0ae9c1c4a19615794cac020997fa14846c2b03e2d01b2e06057821a0980fffff1446f5bdf51611211b85c43ef9829d6c91d8669f1b1e8393c358fc4ec080ffff", + "cborBytes": [ + 191, 8, 159, 69, 110, 82, 0, 130, 196, 27, 255, 255, 255, 255, 255, 255, 255, 249, 71, 44, 152, 148, 106, 208, + 144, 124, 27, 82, 211, 52, 83, 91, 95, 46, 109, 255, 9, 216, 102, 159, 27, 77, 65, 247, 217, 138, 43, 154, 194, + 159, 27, 10, 233, 193, 196, 161, 150, 21, 121, 76, 172, 2, 9, 151, 250, 20, 132, 108, 43, 3, 226, 208, 27, 46, 6, + 5, 120, 33, 160, 152, 15, 255, 255, 20, 70, 245, 189, 245, 22, 17, 33, 27, 133, 196, 62, 249, 130, 157, 108, 145, + 216, 102, 159, 27, 30, 131, 147, 195, 88, 252, 78, 192, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3638, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "647c641a953fa06d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11318860157096236625" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "496cb3dd8e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18334058535386718167" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8842611014638038322" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72577659" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4387293787761903683" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf48647c641a953fa06dd8669f1b9d14ab57ce0b16519f45496cb3dd8e1bfe6fa91994f19fd71b7ab743de1e74ed32ffff4472577659d8669f1b3ce2cc7480d3884380ffff", + "cborBytes": [ + 191, 72, 100, 124, 100, 26, 149, 63, 160, 109, 216, 102, 159, 27, 157, 20, 171, 87, 206, 11, 22, 81, 159, 69, 73, + 108, 179, 221, 142, 27, 254, 111, 169, 25, 148, 241, 159, 215, 27, 122, 183, 67, 222, 30, 116, 237, 50, 255, 255, + 68, 114, 87, 118, 89, 216, 102, 159, 27, 60, 226, 204, 116, 128, 211, 136, 67, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3639, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "158de5bb1d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16510957341312052946" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21c96080ce19" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3403bb2bc7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15723057582398910406" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "49c8283e94f2717c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16755519623263314396" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7212300987089573855" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e6b2965aa400b" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71284d01a332ef436a8e9a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "402155705111680283" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82e85ea7" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf45158de5bb1d1be522b4391e886ed24621c96080ce199f453403bb2bc71bda3385911de62fc6ff4849c8283e94f2717cd8669f1be8879052a3b261dc9f1b64173d890cac57df478e6b2965aa400bffff4b71284d01a332ef436a8e9a1b0594be7bab94151b4482e85ea780ff", + "cborBytes": [ + 191, 69, 21, 141, 229, 187, 29, 27, 229, 34, 180, 57, 30, 136, 110, 210, 70, 33, 201, 96, 128, 206, 25, 159, 69, + 52, 3, 187, 43, 199, 27, 218, 51, 133, 145, 29, 230, 47, 198, 255, 72, 73, 200, 40, 62, 148, 242, 113, 124, 216, + 102, 159, 27, 232, 135, 144, 82, 163, 178, 97, 220, 159, 27, 100, 23, 61, 137, 12, 172, 87, 223, 71, 142, 107, 41, + 101, 170, 64, 11, 255, 255, 75, 113, 40, 77, 1, 163, 50, 239, 67, 106, 142, 154, 27, 5, 148, 190, 123, 171, 148, + 21, 27, 68, 130, 232, 94, 167, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3640, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6356079319698201179" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2502598475025847385" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31a6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4365440960739533263" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b65e40069549" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90c28c615d46b77ff60a0a" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14749364364251738129" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02a8b66e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6865251993007510830" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3cdb73d849477028" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17420517701787030203" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8385add6d2998f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6133232281614344427" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "865270a7d87065edf6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3093908575860923888" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf6793bf1cc3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f26b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d05a28a18bcc690a9c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "51b11b7378" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15044558013152383493" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1989b1" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17487083392253077245" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8e8b4c826e3cfd42daef" + } + } + ] + }, + "cborHex": "bf1b583554771ed15a5bbf1b22bb040dbf5994594231a61b3c95296cb8d1e1cf46b65e4006954941064b90c28c615d46b77ff60a0aff1bccb044be6a07b011bf4402a8b66e1b5f46465060c1552e483cdb73d8494770281bf1c21c8d4a6b92bb478385add6d2998f1b551d9e43ce94e0eb49865270a7d87065edf61b2aefc5751fb99df046cf6793bf1cc342f26b49d05a28a18bcc690a9c4551b11b7378ff1bd0c901cdb0b452059f431989b1ff1bf2ae99b1d8e0a6fd4a8e8b4c826e3cfd42daefff", + "cborBytes": [ + 191, 27, 88, 53, 84, 119, 30, 209, 90, 91, 191, 27, 34, 187, 4, 13, 191, 89, 148, 89, 66, 49, 166, 27, 60, 149, + 41, 108, 184, 209, 225, 207, 70, 182, 94, 64, 6, 149, 73, 65, 6, 75, 144, 194, 140, 97, 93, 70, 183, 127, 246, 10, + 10, 255, 27, 204, 176, 68, 190, 106, 7, 176, 17, 191, 68, 2, 168, 182, 110, 27, 95, 70, 70, 80, 96, 193, 85, 46, + 72, 60, 219, 115, 216, 73, 71, 112, 40, 27, 241, 194, 28, 141, 74, 107, 146, 187, 71, 131, 133, 173, 214, 210, + 153, 143, 27, 85, 29, 158, 67, 206, 148, 224, 235, 73, 134, 82, 112, 167, 216, 112, 101, 237, 246, 27, 42, 239, + 197, 117, 31, 185, 157, 240, 70, 207, 103, 147, 191, 28, 195, 66, 242, 107, 73, 208, 90, 40, 161, 139, 204, 105, + 10, 156, 69, 81, 177, 27, 115, 120, 255, 27, 208, 201, 1, 205, 176, 180, 82, 5, 159, 67, 25, 137, 177, 255, 27, + 242, 174, 153, 177, 216, 224, 166, 253, 74, 142, 139, 76, 130, 110, 60, 253, 66, 218, 239, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3641, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2484575876386544936" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17777726197962717415" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfaf34" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14392049953446138028" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ace807" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6698744097167666639" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b86a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8934727455087836122" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13723290360709046539" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ced3a1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "52623ea303" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1639c11e6ab01f4e1fa2" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b227afc9881865d28416f1bf6b72bc95fb938e7bf43bfaf341bc7bad52e28d590acff43ace807bf1b5cf6b843d0ec6dcf42b86a1b7bfe87483d70bbda1bbe72ebdfbb9ae10bff43ced3a1bf4552623ea3034a1639c11e6ab01f4e1fa2ffff", + "cborBytes": [ + 191, 27, 34, 122, 252, 152, 129, 134, 93, 40, 65, 111, 27, 246, 183, 43, 201, 95, 185, 56, 231, 191, 67, 191, 175, + 52, 27, 199, 186, 213, 46, 40, 213, 144, 172, 255, 67, 172, 232, 7, 191, 27, 92, 246, 184, 67, 208, 236, 109, 207, + 66, 184, 106, 27, 123, 254, 135, 72, 61, 112, 187, 218, 27, 190, 114, 235, 223, 187, 154, 225, 11, 255, 67, 206, + 211, 161, 191, 69, 82, 98, 62, 163, 3, 74, 22, 57, 193, 30, 106, 176, 31, 78, 31, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3642, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3840" + } + } + ] + }, + "cborHex": "bf0e1341ab423840ff", + "cborBytes": [191, 14, 19, 65, 171, 66, 56, 64, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3643, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "476426918604388332" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8625597874688474793" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12057881343551627788" + } + }, + { + "_tag": "ByteArray", + "bytearray": "87" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11223370286274237358" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5862402062350008871" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13804809780924558702" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11913533329408646199" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07ea950f9b7bf2413cdab59d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2751590513094424918" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2524be5c7f515166e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11634424708954599000" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10914630801603689251" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "def70fa655aae94b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6645743816629181750" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e5a860ca73dd771687bc7f5f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4140240133781721114" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b069c9bc21cd937ecd8669f1b77b44791102bbea99f1ba75633325234620c4187ffff1b9bc16bcfb80cd3ae1b515b6f9d88e3c2271bbf94895acfd8ad6ebf4206d91ba5555f71472ddc374c07ea950f9b7bf2413cdab59d1b262f9cfe3c53f956492524be5c7f515166e01ba175c7a187442e5841721b97788ee2c81ffb2348def70fa655aae94b1b5c3a6cca626e5d364ce5a860ca73dd771687bc7f5f1b397516773ae0101affff", + "cborBytes": [ + 191, 27, 6, 156, 155, 194, 28, 217, 55, 236, 216, 102, 159, 27, 119, 180, 71, 145, 16, 43, 190, 169, 159, 27, 167, + 86, 51, 50, 82, 52, 98, 12, 65, 135, 255, 255, 27, 155, 193, 107, 207, 184, 12, 211, 174, 27, 81, 91, 111, 157, + 136, 227, 194, 39, 27, 191, 148, 137, 90, 207, 216, 173, 110, 191, 66, 6, 217, 27, 165, 85, 95, 113, 71, 45, 220, + 55, 76, 7, 234, 149, 15, 155, 123, 242, 65, 60, 218, 181, 157, 27, 38, 47, 156, 254, 60, 83, 249, 86, 73, 37, 36, + 190, 92, 127, 81, 81, 102, 224, 27, 161, 117, 199, 161, 135, 68, 46, 88, 65, 114, 27, 151, 120, 142, 226, 200, 31, + 251, 35, 72, 222, 247, 15, 166, 85, 170, 233, 75, 27, 92, 58, 108, 202, 98, 110, 93, 54, 76, 229, 168, 96, 202, + 115, 221, 119, 22, 135, 188, 127, 95, 27, 57, 117, 22, 119, 58, 224, 16, 26, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3644, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8988522d1663c3b53c" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf498988522d1663c3b53c80ff", + "cborBytes": [191, 73, 137, 136, 82, 45, 22, 99, 195, 181, 60, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3645, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "691f9f7d38" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2217737241904243797" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16976851282628422794" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8818887904285384152" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18352023251215079228" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b5e81e42e9cc2675e33f22" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "196905684800073267" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5418003763731678039" + } + } + ] + } + } + ] + }, + "cborHex": "bf45691f9f7d389f1b1ec6fc457cdb64551beb99e44b59b3ac8a1b7a62fbd310eb5dd81bfeaf7be9ee62573cff4bb5e81e42e9cc2675e33f22d8669f1b02bb8cad54c36e339f1b4b309db7a0f4c357ffffff", + "cborBytes": [ + 191, 69, 105, 31, 159, 125, 56, 159, 27, 30, 198, 252, 69, 124, 219, 100, 85, 27, 235, 153, 228, 75, 89, 179, 172, + 138, 27, 122, 98, 251, 211, 16, 235, 93, 216, 27, 254, 175, 123, 233, 238, 98, 87, 60, 255, 75, 181, 232, 30, 66, + 233, 204, 38, 117, 227, 63, 34, 216, 102, 159, 27, 2, 187, 140, 173, 84, 195, 110, 51, 159, 27, 75, 48, 157, 183, + 160, 244, 195, 87, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3646, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01c3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1369712895425598324" + } + } + } + ] + }, + "cborHex": "bf4201c31b1302329f101d5374ff", + "cborBytes": [191, 66, 1, 195, 27, 19, 2, 50, 159, 16, 29, 83, 116, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3647, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18326872606772659733" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12896114194861795222" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42c204" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2f4ab8f1ee7bab18" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2975453532875642951" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bfe562189328586159f1bb2f833889f9c2796ff4342c2049f482f4ab8f1ee7bab181b294aef3938bbd847ffff", + "cborBytes": [ + 191, 27, 254, 86, 33, 137, 50, 133, 134, 21, 159, 27, 178, 248, 51, 136, 159, 156, 39, 150, 255, 67, 66, 194, 4, + 159, 72, 47, 74, 184, 241, 238, 123, 171, 24, 27, 41, 74, 239, 57, 56, 187, 216, 71, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3648, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2662574596067960117" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9537d1391e1900fc0efb" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "879293580677585389" + } + } + } + ] + }, + "cborHex": "bf090e1b24f35d7cfa9c25354a9537d1391e1900fc0efb1bfffffffffffffff31b0c33e0da599199edff", + "cborBytes": [ + 191, 9, 14, 27, 36, 243, 93, 124, 250, 156, 37, 53, 74, 149, 55, 209, 57, 30, 25, 0, 252, 14, 251, 27, 255, 255, + 255, 255, 255, 255, 255, 243, 27, 12, 51, 224, 218, 89, 145, 153, 237, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3649, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12097545995357406310" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5936962390891556829" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13520823686996146717" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0db0b70a233658d8d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1a7abbe600e3d67c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3790592599372454778" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "908a82181655bca86f25a4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14082747238396930968" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5db327f3c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "453a7d0ff3fb5c409a2d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc4ddc2239a58373859387" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c69a2b2bf6ac900e" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2dadbf7dd695d77c1e359a75" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "63d3006a" + }, + { + "_tag": "ByteArray", + "bytearray": "068a28caff0c44e466831c1d" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "399e48" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f16f51a19647aac3e07" + } + } + ] + }, + "cborHex": "bf1ba7e31dfcbb3a44661b526453d6d1f1efdd1bbba39d81c617ba1dbf490db0b70a233658d8d7481a7abbe600e3d67c414d1b349ae3e2bdd1db7a4b908a82181655bca86f25a41bc36ff7ffee432b9845d5db327f3c4a453a7d0ff3fb5c409a2d4bdc4ddc2239a5837385938748c69a2b2bf6ac900eff4c2dadbf7dd695d77c1e359a759f4463d3006a4c068a28caff0c44e466831c1dff43399e484a2f16f51a19647aac3e07ff", + "cborBytes": [ + 191, 27, 167, 227, 29, 252, 187, 58, 68, 102, 27, 82, 100, 83, 214, 209, 241, 239, 221, 27, 187, 163, 157, 129, + 198, 23, 186, 29, 191, 73, 13, 176, 183, 10, 35, 54, 88, 216, 215, 72, 26, 122, 187, 230, 0, 227, 214, 124, 65, + 77, 27, 52, 154, 227, 226, 189, 209, 219, 122, 75, 144, 138, 130, 24, 22, 85, 188, 168, 111, 37, 164, 27, 195, + 111, 247, 255, 238, 67, 43, 152, 69, 213, 219, 50, 127, 60, 74, 69, 58, 125, 15, 243, 251, 92, 64, 154, 45, 75, + 220, 77, 220, 34, 57, 165, 131, 115, 133, 147, 135, 72, 198, 154, 43, 43, 246, 172, 144, 14, 255, 76, 45, 173, + 191, 125, 214, 149, 215, 124, 30, 53, 154, 117, 159, 68, 99, 211, 0, 106, 76, 6, 138, 40, 202, 255, 12, 68, 228, + 102, 131, 28, 29, 255, 67, 57, 158, 72, 74, 47, 22, 245, 26, 25, 100, 122, 172, 62, 7, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3650, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03f27eba36e0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7359056901297392583" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13716811514984542824" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7146098271383752467" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5327226219193414635" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2257443756096647072" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "55299e973b5b5e993586" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec6e7621d93f01c29eac8f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1712898926132165281" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb1f01af2e85b72461" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9613339610298794530" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d07bff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15882249194229771586" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "806090175594188486" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "859730613301841923" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31f45b79d1d92f" + } + ] + } + } + ] + }, + "cborHex": "bf4603f27eba36e0d8669f1b66209f4303b7cbc79f1bbe5be765e9a432681b632c0a8423dc8f131b49ee1c05812bb3eb1b1f540d22be906fa0ffff4a55299e973b5b5e993586a04bec6e7621d93f01c29eac8f1b17c5707f7c417aa149fb1f01af2e85b72461d8669f1b85697171210d42229f43d07bff1bdc69157e904cad421b0b2fcebe6d394ec61b0bee6070106290034731f45b79d1d92fffffff", + "cborBytes": [ + 191, 70, 3, 242, 126, 186, 54, 224, 216, 102, 159, 27, 102, 32, 159, 67, 3, 183, 203, 199, 159, 27, 190, 91, 231, + 101, 233, 164, 50, 104, 27, 99, 44, 10, 132, 35, 220, 143, 19, 27, 73, 238, 28, 5, 129, 43, 179, 235, 27, 31, 84, + 13, 34, 190, 144, 111, 160, 255, 255, 74, 85, 41, 158, 151, 59, 91, 94, 153, 53, 134, 160, 75, 236, 110, 118, 33, + 217, 63, 1, 194, 158, 172, 143, 27, 23, 197, 112, 127, 124, 65, 122, 161, 73, 251, 31, 1, 175, 46, 133, 183, 36, + 97, 216, 102, 159, 27, 133, 105, 113, 113, 33, 13, 66, 34, 159, 67, 208, 123, 255, 27, 220, 105, 21, 126, 144, 76, + 173, 66, 27, 11, 47, 206, 190, 109, 57, 78, 198, 27, 11, 238, 96, 112, 16, 98, 144, 3, 71, 49, 244, 91, 121, 209, + 217, 47, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3651, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a87fc61334885" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6af6502bf912be9342" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b63fb3ce063f39" + } + } + ] + } + } + ] + }, + "cborHex": "bf472a87fc61334885bf496af6502bf912be934247b63fb3ce063f39ffff", + "cborBytes": [ + 191, 71, 42, 135, 252, 97, 51, 72, 133, 191, 73, 106, 246, 80, 43, 249, 18, 190, 147, 66, 71, 182, 63, 179, 206, + 6, 63, 57, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3652, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "47cbe8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3729320843499059493" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "743307094793273517" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a3e346306dcac021e4f4" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "321c31" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bb641a6694d944a4ed" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8024503378655487186" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c95f9cb5f65156a6b9545d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6154829026820136831" + } + } + } + ] + }, + "cborHex": "bf4347cbe8bf1b33c1358c6238b9251b0a50c1dd502e40adff4aa3e346306dcac021e4f49f43321c31ff49bb641a6694d944a4ed1b6f5cc34ea7aea4d24bc95f9cb5f65156a6b9545d1b556a5863e4e09f7fff", + "cborBytes": [ + 191, 67, 71, 203, 232, 191, 27, 51, 193, 53, 140, 98, 56, 185, 37, 27, 10, 80, 193, 221, 80, 46, 64, 173, 255, 74, + 163, 227, 70, 48, 109, 202, 192, 33, 228, 244, 159, 67, 50, 28, 49, 255, 73, 187, 100, 26, 102, 148, 217, 68, 164, + 237, 27, 111, 92, 195, 78, 167, 174, 164, 210, 75, 201, 95, 156, 181, 246, 81, 86, 166, 185, 84, 93, 27, 85, 106, + 88, 99, 228, 224, 159, 127, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3653, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10032362288695906459" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5033202509914913476" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14758129718635195781" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12641707614130086439" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12442156096192748884" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9750131573029468077" + } + }, + { + "_tag": "ByteArray", + "bytearray": "264bd2cdee8bddd1" + }, + { + "_tag": "ByteArray", + "bytearray": "1b0d357f9d64" + } + ] + } + } + ] + }, + "cborHex": "bf1b8b3a1c590bbe909b1b45d9870406153ac41bcccf68c98462ed859f1baf705e18ae9322271bacab6b0c51879d541b874f6d01dbbdf7ad48264bd2cdee8bddd1461b0d357f9d64ffff", + "cborBytes": [ + 191, 27, 139, 58, 28, 89, 11, 190, 144, 155, 27, 69, 217, 135, 4, 6, 21, 58, 196, 27, 204, 207, 104, 201, 132, 98, + 237, 133, 159, 27, 175, 112, 94, 24, 174, 147, 34, 39, 27, 172, 171, 107, 12, 81, 135, 157, 84, 27, 135, 79, 109, + 1, 219, 189, 247, 173, 72, 38, 75, 210, 205, 238, 139, 221, 209, 70, 27, 13, 53, 127, 157, 100, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3654, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb16e3ffd2024cff07" + } + } + ] + }, + "cborHex": "bf0149fb16e3ffd2024cff07ff", + "cborBytes": [191, 1, 73, 251, 22, 227, 255, 210, 2, 76, 255, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3655, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b28cd33b37058a9ef9500e58" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3bf40e07756d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc5df8a5a3f4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12394671306474546901" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7772612871802404205" + } + }, + { + "_tag": "ByteArray", + "bytearray": "88" + }, + { + "_tag": "ByteArray", + "bytearray": "19" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1097218917291730" + } + } + ] + } + } + ] + }, + "cborHex": "bf4cb28cd33b37058a9ef9500e58a041c2463bf40e07756d46fc5df8a5a3f4d8669f1bac02b7e22a2466d59f1b6bddde39d0693d6d418841191b0003e5ea2fce56d2ffffff", + "cborBytes": [ + 191, 76, 178, 140, 211, 59, 55, 5, 138, 158, 249, 80, 14, 88, 160, 65, 194, 70, 59, 244, 14, 7, 117, 109, 70, 252, + 93, 248, 165, 163, 244, 216, 102, 159, 27, 172, 2, 183, 226, 42, 36, 102, 213, 159, 27, 107, 221, 222, 57, 208, + 105, 61, 109, 65, 136, 65, 25, 27, 0, 3, 229, 234, 47, 206, 86, 210, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3656, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "232192817298649726" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6079415773079488327" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16512489087498532417" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "45f7fbf7e3b5774e123a6950" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ffc91b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71ef0b499634058b38c7a86a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1885148459368224721" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e9c9a4165de7febd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b9ba45d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff2d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6191269625008606023" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0338ea231a7bb27e1b545e6c6f7c4f47471be528255691dd3641bf4c45f7fbf7e3b5774e123a695043ffc91b4c71ef0b499634058b38c7a86a1b1a2964892d8497d148e9c9a4165de7febd447b9ba45d42ff2d1b55ebceebd34dcb47ffff", + "cborBytes": [ + 191, 27, 3, 56, 234, 35, 26, 123, 178, 126, 27, 84, 94, 108, 111, 124, 79, 71, 71, 27, 229, 40, 37, 86, 145, 221, + 54, 65, 191, 76, 69, 247, 251, 247, 227, 181, 119, 78, 18, 58, 105, 80, 67, 255, 201, 27, 76, 113, 239, 11, 73, + 150, 52, 5, 139, 56, 199, 168, 106, 27, 26, 41, 100, 137, 45, 132, 151, 209, 72, 233, 201, 164, 22, 93, 231, 254, + 189, 68, 123, 155, 164, 93, 66, 255, 45, 27, 85, 235, 206, 235, 211, 77, 203, 71, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3657, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a6" + }, + { + "_tag": "ByteArray", + "bytearray": "9fd6c8a6b7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14451713438395902592" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7717040786fa027c" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bfbf403" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a87a" + } + } + ] + }, + "cborHex": "bf139f41a6459fd6c8a6b71bc88ecccdc353aa80ff487717040786fa027ca0449bfbf40342a87aff", + "cborBytes": [ + 191, 19, 159, 65, 166, 69, 159, 214, 200, 166, 183, 27, 200, 142, 204, 205, 195, 83, 170, 128, 255, 72, 119, 23, + 4, 7, 134, 250, 2, 124, 160, 68, 155, 251, 244, 3, 66, 168, 122, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3658, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03f915" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1453cb90" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8345158398124577646" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "850e37c8697f7ae4ddd3" + }, + { + "_tag": "ByteArray", + "bytearray": "05ac2503" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5658009146395025238" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e0fd4b42478" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4303f9151bffffffffffffffeb441453cb90d8669f1b73cff5593a95536e9f4a850e37c8697f7ae4ddd34405ac25031b4e8549575ac95f56ffff465e0fd4b4247880ff", + "cborBytes": [ + 191, 67, 3, 249, 21, 27, 255, 255, 255, 255, 255, 255, 255, 235, 68, 20, 83, 203, 144, 216, 102, 159, 27, 115, + 207, 245, 89, 58, 149, 83, 110, 159, 74, 133, 14, 55, 200, 105, 127, 122, 228, 221, 211, 68, 5, 172, 37, 3, 27, + 78, 133, 73, 87, 90, 201, 95, 86, 255, 255, 70, 94, 15, 212, 180, 36, 120, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3659, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "15" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6829483565850876281" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16864161605833724232" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1cf600" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13563635996259745263" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f04ddea29f8f807" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "64d8407dd2bbdee5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1756789281438303090" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0ae72a7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c00c6bbce574" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11256737928242901256" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "38abcd64ec557a326789f6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "088431" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7988736726898927814" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5116" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5432883854279535681" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d91" + } + } + ] + }, + "cborHex": "bf4115d8669f1b5ec7331e75e8d9799f1bea0989a15e801148ffff431cf6001bbc3bb7134bc37def484f04ddea29f8f8079f4864d8407dd2bbdee51b18615e8b29580372ff44b0ae72a70f46c00c6bbce574bf1b9c37f7814695b1084b38abcd64ec557a326789f6430884311b6eddb1ba1aed68c64251161b4b657b14b0496c41ff41e7428d91ff", + "cborBytes": [ + 191, 65, 21, 216, 102, 159, 27, 94, 199, 51, 30, 117, 232, 217, 121, 159, 27, 234, 9, 137, 161, 94, 128, 17, 72, + 255, 255, 67, 28, 246, 0, 27, 188, 59, 183, 19, 75, 195, 125, 239, 72, 79, 4, 221, 234, 41, 248, 248, 7, 159, 72, + 100, 216, 64, 125, 210, 187, 222, 229, 27, 24, 97, 94, 139, 41, 88, 3, 114, 255, 68, 176, 174, 114, 167, 15, 70, + 192, 12, 107, 188, 229, 116, 191, 27, 156, 55, 247, 129, 70, 149, 177, 8, 75, 56, 171, 205, 100, 236, 85, 122, 50, + 103, 137, 246, 67, 8, 132, 49, 27, 110, 221, 177, 186, 26, 237, 104, 198, 66, 81, 22, 27, 75, 101, 123, 20, 176, + 73, 108, 65, 255, 65, 231, 66, 141, 145, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3660, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3321709260084817015" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13919756259414929484" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5999738466199287619" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11702837823170968845" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "05bcc1a53870" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16977170529709300412" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d17df38adf006fc30b54a383" + }, + { + "_tag": "ByteArray", + "bytearray": "685ef4812e" + }, + { + "_tag": "ByteArray", + "bytearray": "e1d8f7c51686dfcfe2" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9682959062045958778" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5461302745788211419" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13129968776253500165" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4205620422691249518" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16588307156291441268" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9bcd6afe3bf262" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70b968" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1350639445528866480" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14589943819464910326" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05169db1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12948053398510768800" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5fca3c152c324419" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd8acaa6562148acd73eeb5d" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18254173641385664916" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15935294548603100675" + } + } + } + ] + }, + "cborHex": "bf1b2e1914f90e7b2c771bc12ce8916272704c1b53435a58d70e3743d8669f1ba268d4fef21c7d0d9f4605bcc1a538701beb9b06a5da8d9abc4cd17df38adf006fc30b54a38345685ef4812e49e1d8f7c51686dfcfe2ffff1b8660c7f6e3e6227a1b4bca71e97d9260db1bb6370509548f6b05bf1b3a5d5d7dfaa3dd6e1be635817853d25274479bcd6afe3bf2624370b96841cd1b12be6f6b7260eeb0ff1bca79e49a5c1ca5f6bf4405169db11bb3b0b9f6d70612a0485fca3c152c3244194cfd8acaa6562148acd73eeb5dff1bfd53da364b1761941bdd2589f690b4de03ff", + "cborBytes": [ + 191, 27, 46, 25, 20, 249, 14, 123, 44, 119, 27, 193, 44, 232, 145, 98, 114, 112, 76, 27, 83, 67, 90, 88, 215, 14, + 55, 67, 216, 102, 159, 27, 162, 104, 212, 254, 242, 28, 125, 13, 159, 70, 5, 188, 193, 165, 56, 112, 27, 235, 155, + 6, 165, 218, 141, 154, 188, 76, 209, 125, 243, 138, 223, 0, 111, 195, 11, 84, 163, 131, 69, 104, 94, 244, 129, 46, + 73, 225, 216, 247, 197, 22, 134, 223, 207, 226, 255, 255, 27, 134, 96, 199, 246, 227, 230, 34, 122, 27, 75, 202, + 113, 233, 125, 146, 96, 219, 27, 182, 55, 5, 9, 84, 143, 107, 5, 191, 27, 58, 93, 93, 125, 250, 163, 221, 110, 27, + 230, 53, 129, 120, 83, 210, 82, 116, 71, 155, 205, 106, 254, 59, 242, 98, 67, 112, 185, 104, 65, 205, 27, 18, 190, + 111, 107, 114, 96, 238, 176, 255, 27, 202, 121, 228, 154, 92, 28, 165, 246, 191, 68, 5, 22, 157, 177, 27, 179, + 176, 185, 246, 215, 6, 18, 160, 72, 95, 202, 60, 21, 44, 50, 68, 25, 76, 253, 138, 202, 166, 86, 33, 72, 172, 215, + 62, 235, 93, 255, 27, 253, 83, 218, 54, 75, 23, 97, 148, 27, 221, 37, 137, 246, 144, 180, 222, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3661, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13663984981772160199" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11903548172012747470" + } + } + } + ] + }, + "cborHex": "bf1bbda039f22ecd4cc71ba531e5fea791faceff", + "cborBytes": [191, 27, 189, 160, 57, 242, 46, 205, 76, 199, 27, 165, 49, 229, 254, 167, 145, 250, 206, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3662, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9514434033603968927" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1883289446876914712" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16355018754346760741" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2ab8efbc4ed3c00c57161b8d" + }, + { + "_tag": "ByteArray", + "bytearray": "a3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11436069055943328137" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97266d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13017348166262007270" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15780261780725017006" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14614554593016904357" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7273975230967121814" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14657473060899202930" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8592758054910725184" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15421744254973664185" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e6fedce0" + } + ] + } + } + ] + }, + "cborHex": "bf1b840a0f580bd9ff9f9f1b1a22c9c61a5724181be2f8b2e78bb0ba254c2ab8efbc4ed3c00c57161b8d41a3ff1b9eb514372a56c1894397266d1bb4a6e93037a125e61bdafec07b6ec9a9ae1bcad153f89b537aa5d8669f1b64f259eef2c9079680ff1bcb69ce171bc127721b773f9becafd48c401bd6050ab126a05bb99f44e6fedce0ffff", + "cborBytes": [ + 191, 27, 132, 10, 15, 88, 11, 217, 255, 159, 159, 27, 26, 34, 201, 198, 26, 87, 36, 24, 27, 226, 248, 178, 231, + 139, 176, 186, 37, 76, 42, 184, 239, 188, 78, 211, 192, 12, 87, 22, 27, 141, 65, 163, 255, 27, 158, 181, 20, 55, + 42, 86, 193, 137, 67, 151, 38, 109, 27, 180, 166, 233, 48, 55, 161, 37, 230, 27, 218, 254, 192, 123, 110, 201, + 169, 174, 27, 202, 209, 83, 248, 155, 83, 122, 165, 216, 102, 159, 27, 100, 242, 89, 238, 242, 201, 7, 150, 128, + 255, 27, 203, 105, 206, 23, 27, 193, 39, 114, 27, 119, 63, 155, 236, 175, 212, 140, 64, 27, 214, 5, 10, 177, 38, + 160, 91, 185, 159, 68, 230, 254, 220, 224, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3663, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "11e3deb4bed0d36430d9d9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14949458597139414477" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14f009a75a89262f2d51fb9c" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1776307464325010626" + } + }, + { + "_tag": "ByteArray", + "bytearray": "22d69e81392a40" + }, + { + "_tag": "ByteArray", + "bytearray": "d21c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12588466146149267201" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a95ad3c7e2f8" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "33fbbfcfefcfedaed06b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13217189333640907162" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "667755" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2ac7cf9862f6fb4b555f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2dbd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65a772b1761eeeed06" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d3424586e345e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "82f4c05566abaa92" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5489569582129556218" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf07c9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc3ee02187a9486b1d6f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d3c3c09aa8c40718ef8a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4902487593137013560" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f27e475ab13c6c28743ff8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10915063748478488081" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4b11e3deb4bed0d36430d9d91bcf77256372e77dcd4c14f009a75a89262f2d51fb9c9f1b18a6b63a3ef794c24722d69e81392a4042d21c1baeb337436c41f70146a95ad3c7e2f8ff4a33fbbfcfefcfedaed06b1bb76ce3abd8bf899a41378043667755bf4a2ac7cf9862f6fb4b555f422dbd4965a772b1761eeeed0647d3424586e345e24882f4c05566abaa921b4c2ede73309f2afa43cf07c94acc3ee02187a9486b1d6f4ad3c3c09aa8c40718ef8a1b4409227dd0b103384bf27e475ab13c6c28743ff81b977a18a614cdce11ffff", + "cborBytes": [ + 191, 75, 17, 227, 222, 180, 190, 208, 211, 100, 48, 217, 217, 27, 207, 119, 37, 99, 114, 231, 125, 205, 76, 20, + 240, 9, 167, 90, 137, 38, 47, 45, 81, 251, 156, 159, 27, 24, 166, 182, 58, 62, 247, 148, 194, 71, 34, 214, 158, + 129, 57, 42, 64, 66, 210, 28, 27, 174, 179, 55, 67, 108, 65, 247, 1, 70, 169, 90, 211, 199, 226, 248, 255, 74, 51, + 251, 191, 207, 239, 207, 237, 174, 208, 107, 27, 183, 108, 227, 171, 216, 191, 137, 154, 65, 55, 128, 67, 102, + 119, 85, 191, 74, 42, 199, 207, 152, 98, 246, 251, 75, 85, 95, 66, 45, 189, 73, 101, 167, 114, 177, 118, 30, 238, + 237, 6, 71, 211, 66, 69, 134, 227, 69, 226, 72, 130, 244, 192, 85, 102, 171, 170, 146, 27, 76, 46, 222, 115, 48, + 159, 42, 250, 67, 207, 7, 201, 74, 204, 62, 224, 33, 135, 169, 72, 107, 29, 111, 74, 211, 195, 192, 154, 168, 196, + 7, 24, 239, 138, 27, 68, 9, 34, 125, 208, 177, 3, 56, 75, 242, 126, 71, 90, 177, 60, 108, 40, 116, 63, 248, 27, + 151, 122, 24, 166, 20, 205, 206, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3664, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "720966870405124512" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58cb3a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "573865351616838301" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70a7a5d33e77" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5954625536384251128" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5226090658415744529" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7623103144797438671" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2f5e1faac1da1c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12717631253112614859" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9360612231176113600" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14363944695040047937" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9eff0f" + } + } + ] + } + } + ] + }, + "cborHex": "bf411e1b0a01638c7d5291a04358cb3abf1b07f6c77f3006ba9d4670a7a5d33e771b52a314605aa734f81b4886cdc3cadb96111b69cab3ebd7d082cf472f5e1faac1da1c1bb07e1a3e6a2eefcb1b81e7933ac76dcdc01bc756fb98c137fb41439eff0fffff", + "cborBytes": [ + 191, 65, 30, 27, 10, 1, 99, 140, 125, 82, 145, 160, 67, 88, 203, 58, 191, 27, 7, 246, 199, 127, 48, 6, 186, 157, + 70, 112, 167, 165, 211, 62, 119, 27, 82, 163, 20, 96, 90, 167, 52, 248, 27, 72, 134, 205, 195, 202, 219, 150, 17, + 27, 105, 202, 179, 235, 215, 208, 130, 207, 71, 47, 94, 31, 170, 193, 218, 28, 27, 176, 126, 26, 62, 106, 46, 239, + 203, 27, 129, 231, 147, 58, 199, 109, 205, 192, 27, 199, 86, 251, 152, 193, 55, 251, 65, 67, 158, 255, 15, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3665, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f3c2e4f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5cf0ebb3aec0852651eb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1238382609917310147" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8526843963042182321" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8777029817926954724" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c3" + } + ] + } + } + ] + }, + "cborHex": "bf444f3c2e4fd90500804a5cf0ebb3aec0852651ebd8669f1b112f9e6c282474c39f1b76556f68405034b11b79ce461de08c2ee441c3ffffff", + "cborBytes": [ + 191, 68, 79, 60, 46, 79, 217, 5, 0, 128, 74, 92, 240, 235, 179, 174, 192, 133, 38, 81, 235, 216, 102, 159, 27, 17, + 47, 158, 108, 40, 36, 116, 195, 159, 27, 118, 85, 111, 104, 64, 80, 52, 177, 27, 121, 206, 70, 29, 224, 140, 46, + 228, 65, 195, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3666, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "953061282464058762" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5451055611437884323" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3fd01be070103ff0701beb0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6666755706446277598" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16856677399696332338" + } + }, + { + "_tag": "ByteArray", + "bytearray": "df39c987b43c11" + } + ] + } + } + ] + }, + "cborHex": "bf1b0d39f42fd672cd8a1b4ba60a329aa7a3a34cb3fd01be070103ff0701beb09f1b5c8512fe3709ebde1be9eef2c8d641563247df39c987b43c11ffff", + "cborBytes": [ + 191, 27, 13, 57, 244, 47, 214, 114, 205, 138, 27, 75, 166, 10, 50, 154, 167, 163, 163, 76, 179, 253, 1, 190, 7, 1, + 3, 255, 7, 1, 190, 176, 159, 27, 92, 133, 18, 254, 55, 9, 235, 222, 27, 233, 238, 242, 200, 214, 65, 86, 50, 71, + 223, 57, 201, 135, 180, 60, 17, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3667, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3669184254021232080" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "636541048492625502" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17110529885754947355" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8058057970441484908" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4646353342203608578" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8418407861027849172" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14411678945191388619" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9744318021514973892" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8443523566627687329" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14036781402135283052" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12615039553308584758" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15440719185970495102" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13120330511607906355" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5010126864269174884" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9300384596136440367" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12226794402368661646" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12707012497274603555" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "450f7679d022e41582966d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4897152771458771975" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c968c1eeb44b1fae03818e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14029393109915709647" + } + }, + { + "_tag": "ByteArray", + "bytearray": "143ad0f6fcaa5cdf" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12716888656562982008" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "158671843077334185" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b32eb8fa38c6465d0bf1b08d572b6085b8e5e1bed74d0468f20f71b1b6fd3f907dbab7a6c1b407b29bf4efebe021b74d43158d2ebc3d41bc80091a4f11be5cb1b873ac59cead652c41b752d6bf2b97b8ba11bc2ccaa50b015456c1baf119fa2ea75eb361bd648744a8c547e7e1bb614c715f81bc033ff1b45878bd69867e86441b31b81119a83bf3a322f1ba9ae4cba86eb288e1bb058608aa88088239f4b450f7679d022e41582966d1b43f62e7fd99eac074bc968c1eeb44b1fae03818e1bc2b26ab3dad6b0cf48143ad0f6fcaa5cdfff1bb07b76db2ea18c78d8669f1b0233b7335a7b24a980ffff", + "cborBytes": [ + 191, 27, 50, 235, 143, 163, 140, 100, 101, 208, 191, 27, 8, 213, 114, 182, 8, 91, 142, 94, 27, 237, 116, 208, 70, + 143, 32, 247, 27, 27, 111, 211, 249, 7, 219, 171, 122, 108, 27, 64, 123, 41, 191, 78, 254, 190, 2, 27, 116, 212, + 49, 88, 210, 235, 195, 212, 27, 200, 0, 145, 164, 241, 27, 229, 203, 27, 135, 58, 197, 156, 234, 214, 82, 196, 27, + 117, 45, 107, 242, 185, 123, 139, 161, 27, 194, 204, 170, 80, 176, 21, 69, 108, 27, 175, 17, 159, 162, 234, 117, + 235, 54, 27, 214, 72, 116, 74, 140, 84, 126, 126, 27, 182, 20, 199, 21, 248, 27, 192, 51, 255, 27, 69, 135, 139, + 214, 152, 103, 232, 100, 65, 179, 27, 129, 17, 154, 131, 191, 58, 50, 47, 27, 169, 174, 76, 186, 134, 235, 40, + 142, 27, 176, 88, 96, 138, 168, 128, 136, 35, 159, 75, 69, 15, 118, 121, 208, 34, 228, 21, 130, 150, 109, 27, 67, + 246, 46, 127, 217, 158, 172, 7, 75, 201, 104, 193, 238, 180, 75, 31, 174, 3, 129, 142, 27, 194, 178, 106, 179, + 218, 214, 176, 207, 72, 20, 58, 208, 246, 252, 170, 92, 223, 255, 27, 176, 123, 118, 219, 46, 161, 140, 120, 216, + 102, 159, 27, 2, 51, 183, 51, 90, 123, 36, 169, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3668, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6236437077492485106" + } + } + ] + } + } + ] + }, + "cborHex": "bf41fcd905029f1b568c467adc03cbf2ffff", + "cborBytes": [191, 65, 252, 217, 5, 2, 159, 27, 86, 140, 70, 122, 220, 3, 203, 242, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3669, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06685ba99b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11745247323993260679" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "58fb5d57e2f641edcb74" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "72448c185dece5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1926214476497106094" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "71030d2dadb0f3c4233f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5279208193474017020" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "767156b0790fa08d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "26bfcc75ff6667" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8df2e53" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7530871962152568204" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8075568743801929295" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12056431373088540709" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17626789098228050901" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f1c2480a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15262870314683823323" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c69e41" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15317620190410755145" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91daee8ba49fe8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7eb883f3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4415473248488786278" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4506685ba99b1ba2ff803651b9c2874a58fb5d57e2f641edcb74bf4772448c185dece51b1abb49dc60d334aeff4a71030d2dadb0f3c4233f1b494383e1ab59b6fc48767156b0790fa08d4726bfcc75ff666744b8df2e53d8669f1b68830826390d858c9f1b70122efc7d8fbe4f1ba7510c74c3d148251bf49eef4b4a9c6bd544f1c2480a1bd3d09baf5f9574dbffff43c69e41bf1bd4931e682dc8cc494791daee8ba49fe8447eb883f31b3d46e9867b6a0966ffff", + "cborBytes": [ + 191, 69, 6, 104, 91, 169, 155, 27, 162, 255, 128, 54, 81, 185, 194, 135, 74, 88, 251, 93, 87, 226, 246, 65, 237, + 203, 116, 191, 71, 114, 68, 140, 24, 93, 236, 229, 27, 26, 187, 73, 220, 96, 211, 52, 174, 255, 74, 113, 3, 13, + 45, 173, 176, 243, 196, 35, 63, 27, 73, 67, 131, 225, 171, 89, 182, 252, 72, 118, 113, 86, 176, 121, 15, 160, 141, + 71, 38, 191, 204, 117, 255, 102, 103, 68, 184, 223, 46, 83, 216, 102, 159, 27, 104, 131, 8, 38, 57, 13, 133, 140, + 159, 27, 112, 18, 46, 252, 125, 143, 190, 79, 27, 167, 81, 12, 116, 195, 209, 72, 37, 27, 244, 158, 239, 75, 74, + 156, 107, 213, 68, 241, 194, 72, 10, 27, 211, 208, 155, 175, 95, 149, 116, 219, 255, 255, 67, 198, 158, 65, 191, + 27, 212, 147, 30, 104, 45, 200, 204, 73, 71, 145, 218, 238, 139, 164, 159, 232, 68, 126, 184, 131, 243, 27, 61, + 70, 233, 134, 123, 106, 9, 102, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3670, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3940145718468505068" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7021354667547201253" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2440371383857782040" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15982043395034118565" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5914242625349871416" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9533026985439384931" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9281913788283220742" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5a9172e1f5d62c7427" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13510310491285602771" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "85b514e939323facd39679" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9604904732266055702" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d5bb98" + }, + { + "_tag": "ByteArray", + "bytearray": "e3e1fbda65cc" + } + ] + } + } + ] + }, + "cborHex": "bf1b36ae35a7b8976dec9f1b6170dcde912e8ee51b21ddf0d80edf1d181bddcb9fca91e2f9a5ff1b52139c552f73e7381b844c1d88fd53d5631b80cffb69aa6bf306495a9172e1f5d62c74271bbb7e43cfa64fc1d39f4b85b514e939323facd396791b854b79f70c2fc81643d5bb9846e3e1fbda65ccffff", + "cborBytes": [ + 191, 27, 54, 174, 53, 167, 184, 151, 109, 236, 159, 27, 97, 112, 220, 222, 145, 46, 142, 229, 27, 33, 221, 240, + 216, 14, 223, 29, 24, 27, 221, 203, 159, 202, 145, 226, 249, 165, 255, 27, 82, 19, 156, 85, 47, 115, 231, 56, 27, + 132, 76, 29, 136, 253, 83, 213, 99, 27, 128, 207, 251, 105, 170, 107, 243, 6, 73, 90, 145, 114, 225, 245, 214, 44, + 116, 39, 27, 187, 126, 67, 207, 166, 79, 193, 211, 159, 75, 133, 181, 20, 233, 57, 50, 63, 172, 211, 150, 121, 27, + 133, 75, 121, 247, 12, 47, 200, 22, 67, 213, 187, 152, 70, 227, 225, 251, 218, 101, 204, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3671, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fefe66120000070e01ff893d" + } + } + ] + }, + "cborHex": "bf054cfefe66120000070e01ff893dff", + "cborBytes": [191, 5, 76, 254, 254, 102, 18, 0, 0, 7, 14, 1, 255, 137, 61, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3672, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ed3873" + }, + { + "_tag": "ByteArray", + "bytearray": "0356860bbc58c4723d0d" + }, + { + "_tag": "ByteArray", + "bytearray": "9b6c1296" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "991728748985422872" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fbc8ebf025" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9900a5fabe1766" + }, + { + "_tag": "ByteArray", + "bytearray": "37a42f7a" + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffee9f43ed38734a0356860bbc58c4723d0d449b6c12961b0dc3540af4d19418ff45fbc8ebf0259f479900a5fabe17664437a42f7affff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 67, 237, 56, 115, 74, 3, 86, 134, 11, 188, 88, 196, 114, 61, + 13, 68, 155, 108, 18, 150, 27, 13, 195, 84, 10, 244, 209, 148, 24, 255, 69, 251, 200, 235, 240, 37, 159, 71, 153, + 0, 165, 250, 190, 23, 102, 68, 55, 164, 47, 122, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3673, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9167563898535057458" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15942896043166922343" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6813080640528378004" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16700086144487587479" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7206207480453931928" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "642725" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17175148186901669055" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6b60a15d5f54085a44f453af" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18128625434731731283" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5139845929705341533" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e73cf418309" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7513067815266583539" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d7644f652cb0333a10372" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8508877392023208458" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "668f471ec9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9570363152540928541" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6953673617941554383" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10678484513160462011" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11948810600654280854" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b7f39bacb3be09832801bdd408b7b6ff1f6671b5e8cecbeccc8e8941be7c29fde189afe97d8669f1b64019785fa3823989f43642725ffff1bee5a624734f7e4bf4c6b60a15d5f54085a44f453af1bfb95d0c8874bd953bf1b475466a41853025d464e73cf4183091b6843c75f3e6283f34b6d7644f652cb0333a103721b76159ae7f4e5420a45668f471ec91b84d0c294ceb08a1d1b60806950396964cf1b9431991672707ebb1ba5d2b3ef0c6b9896ffff", + "cborBytes": [ + 191, 27, 127, 57, 186, 203, 59, 224, 152, 50, 128, 27, 221, 64, 139, 123, 111, 241, 246, 103, 27, 94, 140, 236, + 190, 204, 200, 232, 148, 27, 231, 194, 159, 222, 24, 154, 254, 151, 216, 102, 159, 27, 100, 1, 151, 133, 250, 56, + 35, 152, 159, 67, 100, 39, 37, 255, 255, 27, 238, 90, 98, 71, 52, 247, 228, 191, 76, 107, 96, 161, 93, 95, 84, 8, + 90, 68, 244, 83, 175, 27, 251, 149, 208, 200, 135, 75, 217, 83, 191, 27, 71, 84, 102, 164, 24, 83, 2, 93, 70, 78, + 115, 207, 65, 131, 9, 27, 104, 67, 199, 95, 62, 98, 131, 243, 75, 109, 118, 68, 246, 82, 203, 3, 51, 161, 3, 114, + 27, 118, 21, 154, 231, 244, 229, 66, 10, 69, 102, 143, 71, 30, 201, 27, 132, 208, 194, 148, 206, 176, 138, 29, 27, + 96, 128, 105, 80, 57, 105, 100, 207, 27, 148, 49, 153, 22, 114, 112, 126, 187, 27, 165, 210, 179, 239, 12, 107, + 152, 150, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3674, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15804606177693041502" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1676423b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4338055350171951979" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff11bdb553d950c56835e441676423b1b3c33de5b62fb636bff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 241, 27, 219, 85, 61, 149, 12, 86, 131, 94, 68, 22, 118, 66, 59, 27, + 60, 51, 222, 91, 98, 251, 99, 107, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3675, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "51cbbcfd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f356b74311a1aaf204" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "4665" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bc" + } + ] + } + } + ] + }, + "cborHex": "bf4451cbbcfdd905058049f356b74311a1aaf204d9050b9f4246650641bcffff", + "cborBytes": [ + 191, 68, 81, 203, 188, 253, 217, 5, 5, 128, 73, 243, 86, 183, 67, 17, 161, 170, 242, 4, 217, 5, 11, 159, 66, 70, + 101, 6, 65, 188, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3676, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "14613e22540514" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10292596832578553609" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10711757637657064983" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15812072519975081166" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2186127178035420057" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64beb01313bc5ed5ebed9937" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eed3324b150d203ec83ca0" + } + } + ] + } + } + ] + }, + "cborHex": "bf4714613e22540514bf1b8ed6a6496627c7091b94a7ced170a076171bdb6fc42e53d494ce1b1e56af15f8a0db994c64beb01313bc5ed5ebed99374beed3324b150d203ec83ca0ffff", + "cborBytes": [ + 191, 71, 20, 97, 62, 34, 84, 5, 20, 191, 27, 142, 214, 166, 73, 102, 39, 199, 9, 27, 148, 167, 206, 209, 112, 160, + 118, 23, 27, 219, 111, 196, 46, 83, 212, 148, 206, 27, 30, 86, 175, 21, 248, 160, 219, 153, 76, 100, 190, 176, 19, + 19, 188, 94, 213, 235, 237, 153, 55, 75, 238, 211, 50, 75, 21, 13, 32, 62, 200, 60, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3677, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14360875889549642960" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1163135604898593444" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "750e63" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4782036040282244778" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e4b15c274b6d8b9edf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6326644915884836139" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "546ff4ab41859ee4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8396985233992891763" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15578377395580734570" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15367258137323372439" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa8d1ba97348a8ce612f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16982153279202661308" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "150fea3687" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ceb4c1eb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5784902002015574876" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13901548483986719553" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2a86595792cc627c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4691455826798565774" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bc74c1488cc140cd01b102449ab8b96faa443750e63bf1b425d34713c2386aa49e4b15c274b6d8b9edf1b57ccc207ef58c52b48546ff4ab41859ee41b74881594c858bd731bd83183b418908c6a1bd54377db4ee3ff974afa8d1ba97348a8ce612f1bebacba6ea01c13bc45150fea3687ff44ceb4c1ebd8669f1b504819b89a959b5c9f1bc0ec38b14fe60341482a86595792cc627c1b411b6637d3c3d98effffff", + "cborBytes": [ + 191, 27, 199, 76, 20, 136, 204, 20, 12, 208, 27, 16, 36, 73, 171, 139, 150, 250, 164, 67, 117, 14, 99, 191, 27, + 66, 93, 52, 113, 60, 35, 134, 170, 73, 228, 177, 92, 39, 75, 109, 139, 158, 223, 27, 87, 204, 194, 7, 239, 88, + 197, 43, 72, 84, 111, 244, 171, 65, 133, 158, 228, 27, 116, 136, 21, 148, 200, 88, 189, 115, 27, 216, 49, 131, + 180, 24, 144, 140, 106, 27, 213, 67, 119, 219, 78, 227, 255, 151, 74, 250, 141, 27, 169, 115, 72, 168, 206, 97, + 47, 27, 235, 172, 186, 110, 160, 28, 19, 188, 69, 21, 15, 234, 54, 135, 255, 68, 206, 180, 193, 235, 216, 102, + 159, 27, 80, 72, 25, 184, 154, 149, 155, 92, 159, 27, 192, 236, 56, 177, 79, 230, 3, 65, 72, 42, 134, 89, 87, 146, + 204, 98, 124, 27, 65, 27, 102, 55, 211, 195, 217, 142, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3678, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15462221260204921498" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "270068454850233693" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "9cb8de11bb8bc51663" + }, + { + "_tag": "ByteArray", + "bytearray": "fb2d8e4fd446db039ee84b" + }, + { + "_tag": "ByteArray", + "bytearray": "e658a78b2af3ae" + }, + { + "_tag": "ByteArray", + "bytearray": "3e431c88cbb5fc" + }, + { + "_tag": "ByteArray", + "bytearray": "9a" + } + ] + } + } + ] + }, + "cborHex": "bf1bd694d8505501d29ad8669f1b03bf79d42c63055d9f499cb8de11bb8bc516634bfb2d8e4fd446db039ee84b47e658a78b2af3ae473e431c88cbb5fc419affffff", + "cborBytes": [ + 191, 27, 214, 148, 216, 80, 85, 1, 210, 154, 216, 102, 159, 27, 3, 191, 121, 212, 44, 99, 5, 93, 159, 73, 156, + 184, 222, 17, 187, 139, 197, 22, 99, 75, 251, 45, 142, 79, 212, 70, 219, 3, 158, 232, 75, 71, 230, 88, 167, 139, + 42, 243, 174, 71, 62, 67, 28, 136, 203, 181, 252, 65, 154, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3679, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "79fa22fefffcfc22fb050474" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12808201661261787341" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09445953fb3a13d8db13" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14907691587495024530" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3204fcfd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d0a2411f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02017efd" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8495475d86f4" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c79fa22fefffcfc22fb050474bf1bb1bfdf8cd713b0cd4a09445953fb3a13d8db131bcee2c283b5b85792443204fcfd44d0a2411f4402017efd41f9468495475d86f4ffff", + "cborBytes": [ + 191, 76, 121, 250, 34, 254, 255, 252, 252, 34, 251, 5, 4, 116, 191, 27, 177, 191, 223, 140, 215, 19, 176, 205, 74, + 9, 68, 89, 83, 251, 58, 19, 216, 219, 19, 27, 206, 226, 194, 131, 181, 184, 87, 146, 68, 50, 4, 252, 253, 68, 208, + 162, 65, 31, 68, 2, 1, 126, 253, 65, 249, 70, 132, 149, 71, 93, 134, 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3680, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "63" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f8bfc35" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0677da" + } + } + ] + }, + "cborHex": "bf4163445f8bfc3541f9430677daff", + "cborBytes": [191, 65, 99, 68, 95, 139, 252, 53, 65, 249, 67, 6, 119, 218, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3681, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56f8a71254" + } + } + ] + }, + "cborHex": "bf41fc4556f8a71254ff", + "cborBytes": [191, 65, 252, 69, 86, 248, 167, 18, 84, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3682, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01042e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5307167006764750863" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "29ef6b7cf3f315" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e3eaa7afcd6fe54a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17730203634486928695" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17316215392578909369" + } + }, + { + "_tag": "ByteArray", + "bytearray": "79069e2960b586b8d703" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2408156281965260509" + } + } + ] + } + } + ] + }, + "cborHex": "bf4301042e1b49a6d84629e2d80f4729ef6b7cf3f3158048e3eaa7afcd6fe54ad8669f1bf60e564454eee5379f1bf04f8e2780d134b94a79069e2960b586b8d7031b216b7d61262a2eddffffff", + "cborBytes": [ + 191, 67, 1, 4, 46, 27, 73, 166, 216, 70, 41, 226, 216, 15, 71, 41, 239, 107, 124, 243, 243, 21, 128, 72, 227, 234, + 167, 175, 205, 111, 229, 74, 216, 102, 159, 27, 246, 14, 86, 68, 84, 238, 229, 55, 159, 27, 240, 79, 142, 39, 128, + 209, 52, 185, 74, 121, 6, 158, 41, 96, 181, 134, 184, 215, 3, 27, 33, 107, 125, 97, 38, 42, 46, 221, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3683, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c05748b8705a23aef76" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5d2d6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7f4bf3708fc9" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac3f8387acf1" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7088084123965595990" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7673562902085783448" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10518825227858904572" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "387974243942788693" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12130837659777577373" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb88138da7017fd9ca" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba1f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "143450524532341499" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d494" + } + ] + } + } + ] + }, + "cborHex": "bf4a3c05748b8705a23aef7643f5d2d6467f4bf3708fc9a046ac3f8387acf1bf1b625deef4db0e21561b6a7df8cd9c704f981b91fa5fd048f285fc1b05625c84f035ee551ba859649462f9319d49eb88138da7017fd9caff42ba1fd8669f1b01fda37df597fafb9f42d494ffffff", + "cborBytes": [ + 191, 74, 60, 5, 116, 139, 135, 5, 162, 58, 239, 118, 67, 245, 210, 214, 70, 127, 75, 243, 112, 143, 201, 160, 70, + 172, 63, 131, 135, 172, 241, 191, 27, 98, 93, 238, 244, 219, 14, 33, 86, 27, 106, 125, 248, 205, 156, 112, 79, + 152, 27, 145, 250, 95, 208, 72, 242, 133, 252, 27, 5, 98, 92, 132, 240, 53, 238, 85, 27, 168, 89, 100, 148, 98, + 249, 49, 157, 73, 235, 136, 19, 141, 167, 1, 127, 217, 202, 255, 66, 186, 31, 216, 102, 159, 27, 1, 253, 163, 125, + 245, 151, 250, 251, 159, 66, 212, 148, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3684, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4155335393797411864" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9367877068320972367" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17790646147972666426" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16361607898640829900" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4680111135916805895" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7961608593461834660" + } + }, + { + "_tag": "ByteArray", + "bytearray": "549bd9" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9500540789032381893" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9922959661619343197" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7a93b90c70c2ea" + }, + { + "_tag": "ByteArray", + "bytearray": "abbbdba7998f363f48bb" + } + ] + } + } + ] + }, + "cborHex": "bf1b39aab78655e71418a01b8201628f7ccc9e4f9f1bf6e51269a695143a1be3101bb240b64dcc1b40f3184825abcf071b6e7d50d555fd73a443549bd9ff1b83d8b382f8626dc5d8669f1b89b56f3cf759ef5d9f477a93b90c70c2ea4aabbbdba7998f363f48bbffffff", + "cborBytes": [ + 191, 27, 57, 170, 183, 134, 85, 231, 20, 24, 160, 27, 130, 1, 98, 143, 124, 204, 158, 79, 159, 27, 246, 229, 18, + 105, 166, 149, 20, 58, 27, 227, 16, 27, 178, 64, 182, 77, 204, 27, 64, 243, 24, 72, 37, 171, 207, 7, 27, 110, 125, + 80, 213, 85, 253, 115, 164, 67, 84, 155, 217, 255, 27, 131, 216, 179, 130, 248, 98, 109, 197, 216, 102, 159, 27, + 137, 181, 111, 60, 247, 89, 239, 93, 159, 71, 122, 147, 185, 12, 112, 194, 234, 74, 171, 187, 219, 167, 153, 143, + 54, 63, 72, 187, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3685, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5514815804615643148" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10145063501604817587" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14202064614616711323" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16592505864291895242" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5e5a75fe24" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "62" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13919836689940212965" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8a67b0e04ddf14f16e2ca1e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6934032149181040133" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b4c888fc16bd3500cbf1b8cca8180fcef8ab31bc517de856f5fc09b1be6446c2c36b447ca455e5a75fe2441621bc12d31b81355ece54ce8a67b0e04ddf14f16e2ca1e1b603aa18069130605ffff", + "cborBytes": [ + 191, 27, 76, 136, 143, 193, 107, 211, 80, 12, 191, 27, 140, 202, 129, 128, 252, 239, 138, 179, 27, 197, 23, 222, + 133, 111, 95, 192, 155, 27, 230, 68, 108, 44, 54, 180, 71, 202, 69, 94, 90, 117, 254, 36, 65, 98, 27, 193, 45, 49, + 184, 19, 85, 236, 229, 76, 232, 166, 123, 14, 4, 221, 241, 79, 22, 226, 202, 30, 27, 96, 58, 161, 128, 105, 19, 6, + 5, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3686, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7126884492317511213" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17398943937093173342" + } + }, + { + "_tag": "ByteArray", + "bytearray": "eb3a4a214a81fa2b8b38632a" + }, + { + "_tag": "ByteArray", + "bytearray": "ee1d75429778df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17649975475080641868" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4592310115663026746" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17891654654120637534" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17256267973785544109" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02" + } + } + ] + }, + "cborHex": "bf1b62e7c7af97d34e2dd905049f1bf1757753c560005e4ceb3a4a214a81fa2b8b38632a47ee1d75429778df06ff1bf4f14f2e5689bd4c1b3fbb29b816871a3a1bf84bed1d26d3345e1bef7a944b666fe5ad1bfffffffffffffffe4102ff", + "cborBytes": [ + 191, 27, 98, 231, 199, 175, 151, 211, 78, 45, 217, 5, 4, 159, 27, 241, 117, 119, 83, 197, 96, 0, 94, 76, 235, 58, + 74, 33, 74, 129, 250, 43, 139, 56, 99, 42, 71, 238, 29, 117, 66, 151, 120, 223, 6, 255, 27, 244, 241, 79, 46, 86, + 137, 189, 76, 27, 63, 187, 41, 184, 22, 135, 26, 58, 27, 248, 75, 237, 29, 38, 211, 52, 94, 27, 239, 122, 148, 75, + 102, 111, 229, 173, 27, 255, 255, 255, 255, 255, 255, 255, 254, 65, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3687, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4650865523582114842" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7314935583597017743" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5224921567001005489" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15398548044059672693" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15471994015957862698" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b408b318d67391c1a9f1b6583df28372a3a8fff1b4882a67b7c5f4db11bd5b2a1dc6ef680751bd6b790955823492aa0ff", + "cborBytes": [ + 191, 27, 64, 139, 49, 141, 103, 57, 28, 26, 159, 27, 101, 131, 223, 40, 55, 42, 58, 143, 255, 27, 72, 130, 166, + 123, 124, 95, 77, 177, 27, 213, 178, 161, 220, 110, 246, 128, 117, 27, 214, 183, 144, 149, 88, 35, 73, 42, 160, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3688, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13512655745971835030" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c70fbc" + }, + { + "_tag": "ByteArray", + "bytearray": "b79a711f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3701822766270542103" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24e486bef2c69c495e4e0d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4129107696634869715" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11803054336280177530" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8560711140917915823" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + { + "_tag": "ByteArray", + "bytearray": "79586b39b2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10292007379647415234" + } + } + ] + } + } + ] + }, + "cborHex": "bf03d8669f1bbb8698cececad0969f43c70fbc44b79a711fffff1b335f84315d0271174b24e486bef2c69c495e4e0d1b394d8992b940b7d3a01ba3ccdf62329d2b7ad8669f1b76cdc16d132430af9f024579586b39b21b8ed48e2eb19543c2ffffff", + "cborBytes": [ + 191, 3, 216, 102, 159, 27, 187, 134, 152, 206, 206, 202, 208, 150, 159, 67, 199, 15, 188, 68, 183, 154, 113, 31, + 255, 255, 27, 51, 95, 132, 49, 93, 2, 113, 23, 75, 36, 228, 134, 190, 242, 198, 156, 73, 94, 78, 13, 27, 57, 77, + 137, 146, 185, 64, 183, 211, 160, 27, 163, 204, 223, 98, 50, 157, 43, 122, 216, 102, 159, 27, 118, 205, 193, 109, + 19, 36, 48, 175, 159, 2, 69, 121, 88, 107, 57, 178, 27, 142, 212, 142, 46, 177, 149, 67, 194, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3689, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b2936f1509d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07166ed55cd0e19728e98a" + } + } + ] + }, + "cborHex": "bf469b2936f1509d4b07166ed55cd0e19728e98aff", + "cborBytes": [191, 70, 155, 41, 54, 241, 80, 157, 75, 7, 22, 110, 213, 92, 208, 225, 151, 40, 233, 138, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3690, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "297107607041832340" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12198519130079166537" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1055008435239578019" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ba45a7b56d965373f7ac4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13075537353229544938" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5836274064116591005" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14966675496320117533" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e4038" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7880559791945628569" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c03ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3587305191639376801" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ac360fd0df04" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "708217786404187821" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e28a23f26ba085ed0353e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0bed1b8fe9e9df" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6a8b8dd657d88e0ba7525" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10095964673227824308" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17851453887652338863" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3634654299522200138" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dac144bca8e983f15406cf55" + } + ] + } + } + ] + }, + "cborHex": "bf1b041f89cb61cb75941ba949d884ae2d00491b0ea42495097ee9a34b6ba45a7b56d965373f7ac41bb575a3f212992dea1b50fe9c56e37ea99d1bcfb450112ab42b1dbf435e40381b6d5d5f60b6253b99436c03ff1b31c8ab10c09463a146ac360fd0df041b09d418530e3c2ead4be28a23f26ba085ed0353e7470bed1b8fe9e9df4be6a8b8dd657d88e0ba75251b8c1c12612ca31cb4ff1bf7bd1abad1c89cafd8669f1b3270e2d4045df24a9f4cdac144bca8e983f15406cf55ffffff", + "cborBytes": [ + 191, 27, 4, 31, 137, 203, 97, 203, 117, 148, 27, 169, 73, 216, 132, 174, 45, 0, 73, 27, 14, 164, 36, 149, 9, 126, + 233, 163, 75, 107, 164, 90, 123, 86, 217, 101, 55, 63, 122, 196, 27, 181, 117, 163, 242, 18, 153, 45, 234, 27, 80, + 254, 156, 86, 227, 126, 169, 157, 27, 207, 180, 80, 17, 42, 180, 43, 29, 191, 67, 94, 64, 56, 27, 109, 93, 95, 96, + 182, 37, 59, 153, 67, 108, 3, 255, 27, 49, 200, 171, 16, 192, 148, 99, 161, 70, 172, 54, 15, 208, 223, 4, 27, 9, + 212, 24, 83, 14, 60, 46, 173, 75, 226, 138, 35, 242, 107, 160, 133, 237, 3, 83, 231, 71, 11, 237, 27, 143, 233, + 233, 223, 75, 230, 168, 184, 221, 101, 125, 136, 224, 186, 117, 37, 27, 140, 28, 18, 97, 44, 163, 28, 180, 255, + 27, 247, 189, 26, 186, 209, 200, 156, 175, 216, 102, 159, 27, 50, 112, 226, 212, 4, 93, 242, 74, 159, 76, 218, + 193, 68, 188, 168, 233, 131, 241, 84, 6, 207, 85, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3691, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2960932617428152422" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9352cd0da75af6154555" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3003409292258291370" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9285816307027768975" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "06" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13811407172281693667" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6634773645416465583" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b8daf" + }, + { + "_tag": "ByteArray", + "bytearray": "b57ceebdc6d71e04cc" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9512921071563453102" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "21fdb5e4c665d36616b8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2275075551611451682" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6314472c4e0a10ea" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e590708f50573b" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16945489315079170861" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15076478636781747239" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0001" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d27d7e834e4526" + }, + { + "_tag": "ByteArray", + "bytearray": "9f518165f439f882f11c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16347321043648349071" + } + } + ] + } + } + ] + }, + "cborHex": "bf08bf1b2917588721ac30664a9352cd0da75af61545551b29ae40d6ac29aeaa0f1b80ddd8bb9deb768f41061bfffffffffffffff01bbfabf9a5b021f5e31bfffffffffffffffa4123ff1b5c13737a5c2c04af9f0d1bfffffffffffffffc435b8daf49b57ceebdc6d71e04ccff1b8404af501ede32aebf4a21fdb5e4c665d36616b81b1f92b1290af9f922486314472c4e0a10ea47e590708f50573bff1beb2a78c04278ab2dd8669f1bd13a697109243c279f4200011bfffffffffffffffb47d27d7e834e45264a9f518165f439f882f11c1be2dd59e09bed838fffffff", + "cborBytes": [ + 191, 8, 191, 27, 41, 23, 88, 135, 33, 172, 48, 102, 74, 147, 82, 205, 13, 167, 90, 246, 21, 69, 85, 27, 41, 174, + 64, 214, 172, 41, 174, 170, 15, 27, 128, 221, 216, 187, 157, 235, 118, 143, 65, 6, 27, 255, 255, 255, 255, 255, + 255, 255, 240, 27, 191, 171, 249, 165, 176, 33, 245, 227, 27, 255, 255, 255, 255, 255, 255, 255, 250, 65, 35, 255, + 27, 92, 19, 115, 122, 92, 44, 4, 175, 159, 13, 27, 255, 255, 255, 255, 255, 255, 255, 252, 67, 91, 141, 175, 73, + 181, 124, 238, 189, 198, 215, 30, 4, 204, 255, 27, 132, 4, 175, 80, 30, 222, 50, 174, 191, 74, 33, 253, 181, 228, + 198, 101, 211, 102, 22, 184, 27, 31, 146, 177, 41, 10, 249, 249, 34, 72, 99, 20, 71, 44, 78, 10, 16, 234, 71, 229, + 144, 112, 143, 80, 87, 59, 255, 27, 235, 42, 120, 192, 66, 120, 171, 45, 216, 102, 159, 27, 209, 58, 105, 113, 9, + 36, 60, 39, 159, 66, 0, 1, 27, 255, 255, 255, 255, 255, 255, 255, 251, 71, 210, 125, 126, 131, 78, 69, 38, 74, + 159, 81, 129, 101, 244, 57, 248, 130, 241, 28, 27, 226, 221, 89, 224, 155, 237, 131, 143, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3692, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d3e73c7b50c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f72" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d9b45c34c135a0240fb75536" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60f0c946345b6a963186" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83e71e08c967" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "877ef0dd6279c2b985" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5362607624673716952" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f867366929ae852a7f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80e2dcf80aa7d659883d95a6" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88ffed" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17659792850064290222" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea011040243c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17858053981283058971" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf464d3e73c7b50cbf424f724cd9b45c34c135a0240fb755364a60f0c946345b6a9631864683e71e08c96749877ef0dd6279c2b9851b4a6bcf38ea7a6ad849f867366929ae852a7f4c80e2dcf80aa7d659883d95a6ff4388ffedd8669f1bf51430081310b1ae80ff46ea011040243cd8669f1bf7d48d7ade20851b80ffff", + "cborBytes": [ + 191, 70, 77, 62, 115, 199, 181, 12, 191, 66, 79, 114, 76, 217, 180, 92, 52, 193, 53, 160, 36, 15, 183, 85, 54, 74, + 96, 240, 201, 70, 52, 91, 106, 150, 49, 134, 70, 131, 231, 30, 8, 201, 103, 73, 135, 126, 240, 221, 98, 121, 194, + 185, 133, 27, 74, 107, 207, 56, 234, 122, 106, 216, 73, 248, 103, 54, 105, 41, 174, 133, 42, 127, 76, 128, 226, + 220, 248, 10, 167, 214, 89, 136, 61, 149, 166, 255, 67, 136, 255, 237, 216, 102, 159, 27, 245, 20, 48, 8, 19, 16, + 177, 174, 128, 255, 70, 234, 1, 16, 64, 36, 60, 216, 102, 159, 27, 247, 212, 141, 122, 222, 32, 133, 27, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3693, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03fe008073c107" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff410001ed9e3bf902" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4703fe008073c107a049ff410001ed9e3bf902d8669f1bfffffffffffffff880ffff", + "cborBytes": [ + 191, 71, 3, 254, 0, 128, 115, 193, 7, 160, 73, 255, 65, 0, 1, 237, 158, 59, 249, 2, 216, 102, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 248, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3694, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4664f17d95712cf6a6ba30e5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3978027616298032369" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18049380611220543875" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "389595185c42f072" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2486819196777747418" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4c4664f17d95712cf6a6ba30e5bf1b3734cb0a60235cf11bfa7c4809439f998348389595185c42f0721b2282f4e23c8f53daffff", + "cborBytes": [ + 191, 76, 70, 100, 241, 125, 149, 113, 44, 246, 166, 186, 48, 229, 191, 27, 55, 52, 203, 10, 96, 35, 92, 241, 27, + 250, 124, 72, 9, 67, 159, 153, 131, 72, 56, 149, 149, 24, 92, 66, 240, 114, 27, 34, 130, 244, 226, 60, 143, 83, + 218, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3695, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5297509777123592093" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3841170798143518608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "442c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b7d80916" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15798892841203647124" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6926213756350858757" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b498489132b9c479d1b354e947d50f2b790418642442c44b7d80916d8669f1bdb40f1553c67c2949f1b601edab6f9b78605ffffff", + "cborBytes": [ + 191, 27, 73, 132, 137, 19, 43, 156, 71, 157, 27, 53, 78, 148, 125, 80, 242, 183, 144, 65, 134, 66, 68, 44, 68, + 183, 216, 9, 22, 216, 102, 159, 27, 219, 64, 241, 85, 60, 103, 194, 148, 159, 27, 96, 30, 218, 182, 249, 183, 134, + 5, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3696, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5744203477809954258" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5864807263190344795" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6866147192091107167" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14418702910155329339" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8443942501372126737" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "98f4c66727bf2ed30e63f08e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14262834868433572213" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9558447664693871361" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11792305309557632892" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15211040047846583126" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a3" + }, + { + "_tag": "ByteArray", + "bytearray": "41fc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15969425368567645541" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16750679741267128461" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1eb19c87e4fe406c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17704267511768972922" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "321d3bb4596b787b" + } + } + ] + }, + "cborHex": "bf1b4fb782a1046cfdd21b5163fb21fe97645b1b5f49747e2822df5f1bc81985e739b30f3b1b752ee8f7921be6114c98f4c66727bf2ed30e63f08e1bc5efc4bebf09d175d8669f1b84a66d821a3d83019f1ba3a6af336322af7c1bd3187854fc22eb5641a34241fc1bdd9ecbc358960565ffff1be8765e79cc8f308d481eb19c87e4fe406c1bf5b231802f7a7e7a48321d3bb4596b787bff", + "cborBytes": [ + 191, 27, 79, 183, 130, 161, 4, 108, 253, 210, 27, 81, 99, 251, 33, 254, 151, 100, 91, 27, 95, 73, 116, 126, 40, + 34, 223, 95, 27, 200, 25, 133, 231, 57, 179, 15, 59, 27, 117, 46, 232, 247, 146, 27, 230, 17, 76, 152, 244, 198, + 103, 39, 191, 46, 211, 14, 99, 240, 142, 27, 197, 239, 196, 190, 191, 9, 209, 117, 216, 102, 159, 27, 132, 166, + 109, 130, 26, 61, 131, 1, 159, 27, 163, 166, 175, 51, 99, 34, 175, 124, 27, 211, 24, 120, 84, 252, 34, 235, 86, + 65, 163, 66, 65, 252, 27, 221, 158, 203, 195, 88, 150, 5, 101, 255, 255, 27, 232, 118, 94, 121, 204, 143, 48, 141, + 72, 30, 177, 156, 135, 228, 254, 64, 108, 27, 245, 178, 49, 128, 47, 122, 126, 122, 72, 50, 29, 59, 180, 89, 107, + 120, 123, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3697, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6005d205c6002a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8499826550888086310" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf476005d205c6002abf1b75f57336ca1e3b261bfffffffffffffff3ffff", + "cborBytes": [ + 191, 71, 96, 5, 210, 5, 198, 0, 42, 191, 27, 117, 245, 115, 54, 202, 30, 59, 38, 27, 255, 255, 255, 255, 255, 255, + 255, 243, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3698, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f72283f90114612721053a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "043206018c47" + } + } + ] + }, + "cborHex": "bf4bf72283f90114612721053a46043206018c47ff", + "cborBytes": [191, 75, 247, 34, 131, 249, 1, 20, 97, 39, 33, 5, 58, 70, 4, 50, 6, 1, 140, 71, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3699, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "48033d324d47ba44" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4b5e19fd00fa9157fc3b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8807ff" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15021022140704870111" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11798021754524770389" + } + } + ] + } + } + ] + }, + "cborHex": "bf4848033d324d47ba444a4b5e19fd00fa9157fc3b438807ffd8669f1bd075640d5bfdcedf9f1ba3bafe46f2c7a055ffffff", + "cborBytes": [ + 191, 72, 72, 3, 61, 50, 77, 71, 186, 68, 74, 75, 94, 25, 253, 0, 250, 145, 87, 252, 59, 67, 136, 7, 255, 216, 102, + 159, 27, 208, 117, 100, 13, 91, 253, 206, 223, 159, 27, 163, 186, 254, 70, 242, 199, 160, 85, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3700, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00fe42f8f0003306" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "03faf8f2" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4edf63bc331768db" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + ] + } + } + ] + }, + "cborHex": "bf4800fe42f8f0003306d8669f1bfffffffffffffff59f4403faf8f2ffff484edf63bc331768dbd905089f1bfffffffffffffff4ffff", + "cborBytes": [ + 191, 72, 0, 254, 66, 248, 240, 0, 51, 6, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 68, 3, + 250, 248, 242, 255, 255, 72, 78, 223, 99, 188, 51, 23, 104, 219, 217, 5, 8, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 244, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3701, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10095847588794834546" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12138923245377328366" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b4f6f157" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1728cd03" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14530360602032316022" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "41ae9474498b6f36" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b3a94648a0eb907ca8e7f60" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7206327997611253712" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12491653771868109383" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3c35ffa049f9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6658432978118849746" + } + }, + { + "_tag": "ByteArray", + "bytearray": "907c7f427d609d613f9e36" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11037849997682774528" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90e8742c820271c1b164e0" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "75f501bea770fa070b" + } + ] + } + } + ] + }, + "cborHex": "bf1b8c1ba7e454999e729f1ba8761e607c7294ee44b4f6f157ff441728cd03d8669f1bc9a635fb7e779e769f4841ae9474498b6f36ffff4c7b3a94648a0eb907ca8e7f60d8669f1b6402052210921fd09f1bad5b44ec015dfa47463c35ffa049f91b5c678184058534d24b907c7f427d609d613f9e361b992e521783ed9200ffff4b90e8742c820271c1b164e09f4975f501bea770fa070bffff", + "cborBytes": [ + 191, 27, 140, 27, 167, 228, 84, 153, 158, 114, 159, 27, 168, 118, 30, 96, 124, 114, 148, 238, 68, 180, 246, 241, + 87, 255, 68, 23, 40, 205, 3, 216, 102, 159, 27, 201, 166, 53, 251, 126, 119, 158, 118, 159, 72, 65, 174, 148, 116, + 73, 139, 111, 54, 255, 255, 76, 123, 58, 148, 100, 138, 14, 185, 7, 202, 142, 127, 96, 216, 102, 159, 27, 100, 2, + 5, 34, 16, 146, 31, 208, 159, 27, 173, 91, 68, 236, 1, 93, 250, 71, 70, 60, 53, 255, 160, 73, 249, 27, 92, 103, + 129, 132, 5, 133, 52, 210, 75, 144, 124, 127, 66, 125, 96, 157, 97, 63, 158, 54, 27, 153, 46, 82, 23, 131, 237, + 146, 0, 255, 255, 75, 144, 232, 116, 44, 130, 2, 113, 193, 177, 100, 224, 159, 73, 117, 245, 1, 190, 167, 112, + 250, 7, 11, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3702, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0999f02f01e86101" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a34cafedd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16038894214325674160" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d0105fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551604" + } + } + } + ] + }, + "cborHex": "bf480999f02f01e8610180452a34cafeddd8669f1bde95994f6af320b080ff442d0105fe1bfffffffffffffff4ff", + "cborBytes": [ + 191, 72, 9, 153, 240, 47, 1, 232, 97, 1, 128, 69, 42, 52, 202, 254, 221, 216, 102, 159, 27, 222, 149, 153, 79, + 106, 243, 32, 176, 128, 255, 68, 45, 1, 5, 254, 27, 255, 255, 255, 255, 255, 255, 255, 244, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3703, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4d35ff" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15819573148252941940" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3d8d01e5da" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7691695695491830524" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2280558997463708559" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1909366661378423852" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13048526168788311701" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5163666436557069891" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1dc7094fc72aa4" + }, + { + "_tag": "ByteArray", + "bytearray": "9a65dc8826d03feb5cb261" + }, + { + "_tag": "ByteArray", + "bytearray": "c9a0c8bda9d85b502f" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "239714fa8bfa1b73e8cb06eb" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12999156779157618008" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5864ce74400c1267" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12182745556423484962" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3371855458634292376" + } + } + ] + } + } + ] + }, + "cborHex": "bf0a9f434d35ff1bdb8a69f66fecae74453d8d01e5da1b6abe647b923112fc1b1fa62c534525338fff1b1a7f6edcbd6f3c2c1bfffffffffffffffc4106d905069f1bb515ad6a9d041e951b47a9074409975e43471dc7094fc72aa44b9a65dc8826d03feb5cb26149c9a0c8bda9d85b502fff4c239714fa8bfa1b73e8cb06eb9f1bb4664837d94cfd58485864ce74400c12671ba911ce895f9726221b2ecb3cacbddbdc98ffff", + "cborBytes": [ + 191, 10, 159, 67, 77, 53, 255, 27, 219, 138, 105, 246, 111, 236, 174, 116, 69, 61, 141, 1, 229, 218, 27, 106, 190, + 100, 123, 146, 49, 18, 252, 27, 31, 166, 44, 83, 69, 37, 51, 143, 255, 27, 26, 127, 110, 220, 189, 111, 60, 44, + 27, 255, 255, 255, 255, 255, 255, 255, 252, 65, 6, 217, 5, 6, 159, 27, 181, 21, 173, 106, 157, 4, 30, 149, 27, 71, + 169, 7, 68, 9, 151, 94, 67, 71, 29, 199, 9, 79, 199, 42, 164, 75, 154, 101, 220, 136, 38, 208, 63, 235, 92, 178, + 97, 73, 201, 160, 200, 189, 169, 216, 91, 80, 47, 255, 76, 35, 151, 20, 250, 139, 250, 27, 115, 232, 203, 6, 235, + 159, 27, 180, 102, 72, 55, 217, 76, 253, 88, 72, 88, 100, 206, 116, 64, 12, 18, 103, 27, 169, 17, 206, 137, 95, + 151, 38, 34, 27, 46, 203, 60, 172, 189, 219, 220, 152, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3704, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "90fee2" + } + } + ] + }, + "cborHex": "bf084390fee2ff", + "cborBytes": [191, 8, 67, 144, 254, 226, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3705, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "42072407" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "752607004957894515" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ceecbdb" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1939540545528909474" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10724609518572462024" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4238353860813513514" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2714766802787372080" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4810085959466087263" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5ac926b45e60bae4ab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10259105808292481945" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9736521174309250825" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14422529679459932086" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8886853690935539562" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf41010344420724071b0a71cc1561fc6773447ceecbdbbf1b1aeaa1d99bb7cea21b94d577892548dfc81b3ad1a8617231e32a1b25acca06102a0c301b42c0dbb1f911f35f495ac926b45e60bae4ab1b8e5faa60a86b8b991b871f126bf6c5a7091bc8271e5462bcd7b61b7b547258eb14f76affff", + "cborBytes": [ + 191, 65, 1, 3, 68, 66, 7, 36, 7, 27, 10, 113, 204, 21, 97, 252, 103, 115, 68, 124, 238, 203, 219, 191, 27, 26, + 234, 161, 217, 155, 183, 206, 162, 27, 148, 213, 119, 137, 37, 72, 223, 200, 27, 58, 209, 168, 97, 114, 49, 227, + 42, 27, 37, 172, 202, 6, 16, 42, 12, 48, 27, 66, 192, 219, 177, 249, 17, 243, 95, 73, 90, 201, 38, 180, 94, 96, + 186, 228, 171, 27, 142, 95, 170, 96, 168, 107, 139, 153, 27, 135, 31, 18, 107, 246, 197, 167, 9, 27, 200, 39, 30, + 84, 98, 188, 215, 182, 27, 123, 84, 114, 88, 235, 20, 247, 106, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3706, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + { + "_tag": "ByteArray", + "bytearray": "58eb0a450c0539" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a52d94cc2e7fe0d4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a30e45f158f623103" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18148895546172339739" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "189d877e22" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9097006255616937161" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5df481310ca1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18081862893801484326" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf079f0b4758eb0a450c0539ff48a52d94cc2e7fe0d4bf490a30e45f158f6231031bfbddd4579f45761b45189d877e221b7e3f0efdd18dccc9465df481310ca11bfaefae80065ab026ffff", + "cborBytes": [ + 191, 7, 159, 11, 71, 88, 235, 10, 69, 12, 5, 57, 255, 72, 165, 45, 148, 204, 46, 127, 224, 212, 191, 73, 10, 48, + 228, 95, 21, 143, 98, 49, 3, 27, 251, 221, 212, 87, 159, 69, 118, 27, 69, 24, 157, 135, 126, 34, 27, 126, 63, 14, + 253, 209, 141, 204, 201, 70, 93, 244, 129, 49, 12, 161, 27, 250, 239, 174, 128, 6, 90, 176, 38, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3707, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "35cea4ab2a6534342c27fe" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d2c10de553ce3962ce5fa0bc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17726187283280859064" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12694460340510375945" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4754" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca0c97fd995bf34f8189f5e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5e9c3930708df282f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d04a55c4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "351341917251015462" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "747850552485325009" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7955297760434296903" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fdff67a8b6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14906453402706053313" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4abb0a9d70149bceccd85fb9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "098e8c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6e" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "de4e4a4adb4cf669" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf4b35cea4ab2a6534342c27fe9f4cd2c10de553ce3962ce5fa0bc1bf600116ab2008fb81bb02bc86beb67c009424754ff4cca0c97fd995bf34f8189f5e749d5e9c3930708df282f44d04a55c4bf1b04e0379cbc7393261b0a60e61d7df7a8d11b6e66e52a0525984745fdff67a8b61bcede5c64593508c14c4abb0a9d70149bceccd85fb943098e8c416eff48de4e4a4adb4cf669a0ff", + "cborBytes": [ + 191, 75, 53, 206, 164, 171, 42, 101, 52, 52, 44, 39, 254, 159, 76, 210, 193, 13, 229, 83, 206, 57, 98, 206, 95, + 160, 188, 27, 246, 0, 17, 106, 178, 0, 143, 184, 27, 176, 43, 200, 107, 235, 103, 192, 9, 66, 71, 84, 255, 76, + 202, 12, 151, 253, 153, 91, 243, 79, 129, 137, 245, 231, 73, 213, 233, 195, 147, 7, 8, 223, 40, 47, 68, 208, 74, + 85, 196, 191, 27, 4, 224, 55, 156, 188, 115, 147, 38, 27, 10, 96, 230, 29, 125, 247, 168, 209, 27, 110, 102, 229, + 42, 5, 37, 152, 71, 69, 253, 255, 103, 168, 182, 27, 206, 222, 92, 100, 89, 53, 8, 193, 76, 74, 187, 10, 157, 112, + 20, 155, 206, 204, 216, 95, 185, 67, 9, 142, 140, 65, 110, 255, 72, 222, 78, 74, 74, 219, 76, 246, 105, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3708, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16161269092133785297" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15179852071831940241" + } + } + } + ] + }, + "cborHex": "bf09a01be0485c9cfc224ed11bd2a9ab0874852c91ff", + "cborBytes": [191, 9, 160, 27, 224, 72, 92, 156, 252, 34, 78, 209, 27, 210, 169, 171, 8, 116, 133, 44, 145, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3709, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01a6046f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e8276f7747a32b25f3639b80" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e910a" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4401a6046f4ce8276f7747a32b25f3639b80433e910a80ff", + "cborBytes": [ + 191, 68, 1, 166, 4, 111, 76, 232, 39, 111, 119, 71, 163, 43, 37, 243, 99, 155, 128, 67, 62, 145, 10, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3710, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9867401306015793006" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8371ed08c39d8f7f4b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5265365908994375448" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6607814418286369754" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17333833647978171393" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b1500361a31928" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11916330646001419316" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04faf86300" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14673305814238090706" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4362978105484308049" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e0ff0501d203e90310" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15795030055641751732" + } + } + } + ] + }, + "cborHex": "bf031b88f00d35454bff6e0f9f498371ed08c39d8f7f4b1b49125665aa0fbf181b5bb3ac3427a9dbda1bf08e25dd3f73cc0147b1500361a31928ff1ba55f4f964d0404344504faf863001bcba20de54255d5d2801bffffffffffffffecd8669f1b3c8c69788c32ee519f49e0ff0501d203e90310ffff1bffffffffffffffff1bdb333826632520b4ff", + "cborBytes": [ + 191, 3, 27, 136, 240, 13, 53, 69, 75, 255, 110, 15, 159, 73, 131, 113, 237, 8, 195, 157, 143, 127, 75, 27, 73, 18, + 86, 101, 170, 15, 191, 24, 27, 91, 179, 172, 52, 39, 169, 219, 218, 27, 240, 142, 37, 221, 63, 115, 204, 1, 71, + 177, 80, 3, 97, 163, 25, 40, 255, 27, 165, 95, 79, 150, 77, 4, 4, 52, 69, 4, 250, 248, 99, 0, 27, 203, 162, 13, + 229, 66, 85, 213, 210, 128, 27, 255, 255, 255, 255, 255, 255, 255, 236, 216, 102, 159, 27, 60, 140, 105, 120, 140, + 50, 238, 81, 159, 73, 224, 255, 5, 1, 210, 3, 233, 3, 16, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 255, + 27, 219, 51, 56, 38, 99, 37, 32, 180, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3711, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3fcfa4d538a69f5c00cca7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3267244400172592616" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c9555" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1452081327177261569" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3751433505216206964" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "73e78b71ea8eb7effb9c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13054530901969300888" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f183a50692cd94b74aaf" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10699118052053675916" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "12c9f24b1fb4a3f24f0732e0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "15cd41b66e3a13" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13550589318797801932" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca2876cca2dfe5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "faef8a1d138582d906" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15725597382295768503" + } + } + } + ] + }, + "cborHex": "bf4b3fcfa4d538a69f5c00cca71b2d579578aaabede8436c9555d8669f1b1426d4460b60e2019f1b340fc4e5a4e91874ffff4a73e78b71ea8eb7effb9c1bb52b02b0813d6d984af183a50692cd94b74aafbf1b947ae72e96a0ef8c4c12c9f24b1fb4a3f24f0732e04715cd41b66e3a131bbc0d5d30fc2539cc47ca2876cca2dfe54140ff49faef8a1d138582d9061bda3c8b805c8d4db7ff", + "cborBytes": [ + 191, 75, 63, 207, 164, 213, 56, 166, 159, 92, 0, 204, 167, 27, 45, 87, 149, 120, 170, 171, 237, 232, 67, 108, 149, + 85, 216, 102, 159, 27, 20, 38, 212, 70, 11, 96, 226, 1, 159, 27, 52, 15, 196, 229, 164, 233, 24, 116, 255, 255, + 74, 115, 231, 139, 113, 234, 142, 183, 239, 251, 156, 27, 181, 43, 2, 176, 129, 61, 109, 152, 74, 241, 131, 165, + 6, 146, 205, 148, 183, 74, 175, 191, 27, 148, 122, 231, 46, 150, 160, 239, 140, 76, 18, 201, 242, 75, 31, 180, + 163, 242, 79, 7, 50, 224, 71, 21, 205, 65, 182, 110, 58, 19, 27, 188, 13, 93, 48, 252, 37, 57, 204, 71, 202, 40, + 118, 204, 162, 223, 229, 65, 64, 255, 73, 250, 239, 138, 29, 19, 133, 130, 217, 6, 27, 218, 60, 139, 128, 92, 141, + 77, 183, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3712, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5402597142559572745" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a343755fbac76059d4ddaa66" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6486537333656716983" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2733151934206332398" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4345153743989643764" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12820437903579166533" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bbc331648a985e6221d5e46a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5261e08e0c35e22f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "64738917101058852" + } + } + } + ] + }, + "cborHex": "bf1b4af9e17a1acdc3099f4ca343755fbac76059d4ddaa66ff1b5a04cf567aeb06b79f1b25ee1b340b8a4dee1b3c4d164efcf619f4ff1bb1eb585903ca37454cbbc331648a985e6221d5e46a485261e08e0c35e22f1b00e5ffb3bcf3bb24ff", + "cborBytes": [ + 191, 27, 74, 249, 225, 122, 26, 205, 195, 9, 159, 76, 163, 67, 117, 95, 186, 199, 96, 89, 212, 221, 170, 102, 255, + 27, 90, 4, 207, 86, 122, 235, 6, 183, 159, 27, 37, 238, 27, 52, 11, 138, 77, 238, 27, 60, 77, 22, 78, 252, 246, + 25, 244, 255, 27, 177, 235, 88, 89, 3, 202, 55, 69, 76, 187, 195, 49, 100, 138, 152, 94, 98, 33, 213, 228, 106, + 72, 82, 97, 224, 142, 12, 53, 226, 47, 27, 0, 229, 255, 179, 188, 243, 187, 36, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3713, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9059119015825698881" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4" + } + } + ] + }, + "cborHex": "bf1b7db874bf6446f04141c4ff", + "cborBytes": [191, 27, 125, 184, 116, 191, 100, 70, 240, 65, 65, 196, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3714, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "16b45d167c69b3ab4de41136" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3cce9641b082ee58e637" + } + } + ] + }, + "cborHex": "bf4c16b45d167c69b3ab4de411364a3cce9641b082ee58e637ff", + "cborBytes": [ + 191, 76, 22, 180, 93, 22, 124, 105, 179, 171, 77, 228, 17, 54, 74, 60, 206, 150, 65, 176, 130, 238, 88, 230, 55, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3715, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "e7f9fbd1afaf43fe" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe320707b90705" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7bfa8f05" + } + } + ] + }, + "cborHex": "bf48e7f9fbd1afaf43fed905088047fe320707b90705447bfa8f05ff", + "cborBytes": [ + 191, 72, 231, 249, 251, 209, 175, 175, 67, 254, 217, 5, 8, 128, 71, 254, 50, 7, 7, 185, 7, 5, 68, 123, 250, 143, + 5, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3716, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07720402740500046e2c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551605" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10533283357198929351" + } + }, + { + "_tag": "ByteArray", + "bytearray": "708df2a0" + }, + { + "_tag": "ByteArray", + "bytearray": "6ac75921ac8c2e6b20595d" + }, + { + "_tag": "ByteArray", + "bytearray": "9749b8" + } + ] + } + } + ] + }, + "cborHex": "bf4a07720402740500046e2cd8669f1bfffffffffffffff59f1b922dbd67d8604dc744708df2a04b6ac75921ac8c2e6b20595d439749b8ffffff", + "cborBytes": [ + 191, 74, 7, 114, 4, 2, 116, 5, 0, 4, 110, 44, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 245, 159, 27, + 146, 45, 189, 103, 216, 96, 77, 199, 68, 112, 141, 242, 160, 75, 106, 199, 89, 33, 172, 140, 46, 107, 32, 89, 93, + 67, 151, 73, 184, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3717, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23839bb72b527c25bac686" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1375113892994060712" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1819463721774017542" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12268472932275927060" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84970166f6a5bb884b908a6a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "353698612febadb15d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6230379521311877147" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d86158b6" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14904713838798348484" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6827965869641300157" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15599845581115056111" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14701827111632095802" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17229331838926384472" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3a3c" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b23839bb72b527c25bac686bf1b131562cccd9d91a81b1940089d720cec061baa425f2178cd38144c84970166f6a5bb884b908a6a49353698612febadb15d1b5676c12a27a9a81bff44d86158b6bf1bced82e44906ca0c41b5ec1cec84675f8bd1bd87dc8e78d4f5fef1bcc0761dd4a09ca3a1bef1ae205c888ed58423a3cffff", + "cborBytes": [ + 191, 75, 35, 131, 155, 183, 43, 82, 124, 37, 186, 198, 134, 191, 27, 19, 21, 98, 204, 205, 157, 145, 168, 27, 25, + 64, 8, 157, 114, 12, 236, 6, 27, 170, 66, 95, 33, 120, 205, 56, 20, 76, 132, 151, 1, 102, 246, 165, 187, 136, 75, + 144, 138, 106, 73, 53, 54, 152, 97, 47, 235, 173, 177, 93, 27, 86, 118, 193, 42, 39, 169, 168, 27, 255, 68, 216, + 97, 88, 182, 191, 27, 206, 216, 46, 68, 144, 108, 160, 196, 27, 94, 193, 206, 200, 70, 117, 248, 189, 27, 216, + 125, 200, 231, 141, 79, 95, 239, 27, 204, 7, 97, 221, 74, 9, 202, 58, 27, 239, 26, 226, 5, 200, 136, 237, 88, 66, + 58, 60, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3718, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbb7cc777766" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15261048074428512395" + } + } + } + ] + }, + "cborHex": "bf46bbb7cc7777661bd3ca225e0078788bff", + "cborBytes": [191, 70, 187, 183, 204, 119, 119, 102, 27, 211, 202, 34, 94, 0, 120, 120, 139, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3719, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13206243722144492068" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5320619301367377178" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e34e91e466" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "345269756741292402" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "787d0600" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17807113013897323601" + } + }, + { + "_tag": "ByteArray", + "bytearray": "895a9a0a2fb803d56cd2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9056387531559591049" + } + }, + { + "_tag": "ByteArray", + "bytearray": "18a4c0" + } + ] + } + } + ] + }, + "cborHex": "bf1bb74600b213a7aa24d8669f1b49d6a3109316ed1a9f45e34e91e466ffff1bfffffffffffffffa07410f1b04caa503b240117244787d0600d87c9f1bf71f92f0a495e4514a895a9a0a2fb803d56cd21b7daec07a26e2dc894318a4c0ffff", + "cborBytes": [ + 191, 27, 183, 70, 0, 178, 19, 167, 170, 36, 216, 102, 159, 27, 73, 214, 163, 16, 147, 22, 237, 26, 159, 69, 227, + 78, 145, 228, 102, 255, 255, 27, 255, 255, 255, 255, 255, 255, 255, 250, 7, 65, 15, 27, 4, 202, 165, 3, 178, 64, + 17, 114, 68, 120, 125, 6, 0, 216, 124, 159, 27, 247, 31, 146, 240, 164, 149, 228, 81, 74, 137, 90, 154, 10, 47, + 184, 3, 213, 108, 210, 27, 125, 174, 192, 122, 38, 226, 220, 137, 67, 24, 164, 192, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3720, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1169515788030841766" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "313954f2445c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15624236455441334204" + } + }, + { + "_tag": "ByteArray", + "bytearray": "af99f201d6adbaee11ea52" + }, + { + "_tag": "ByteArray", + "bytearray": "ed44e38a" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2057420161711024258" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8131727683406875799" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3538898254436565936" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1155d1eff1c6ed54" + }, + { + "_tag": "ByteArray", + "bytearray": "41d9" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3958311379402097208" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bcf4b68098cf7077feb8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6847729052400510397" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2461640456832201949" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8398816537000306400" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2252616027911424885" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1ac37bbc637b6798b59a3d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9402744030802695744" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5b6f657c3a48" + } + ] + } + } + ] + }, + "cborHex": "bf1b103af469b0ca13a69f46313954f2445c1bd8d470468549ffbc4baf99f201d6adbaee11ea5244ed44e38aff1b1c8d6cbc848328829f1b70d9b33e8bad4c971b311cb13667f103b0481155d1eff1c6ed544241d9ff1b36eebf3a3fa602384abcf4b68098cf7077feb81b5f08054ad67465bdd8669f1b222980f40236b4dd80ff1b748e97243d9466e09f1b1f42e657af030b754b1ac37bbc637b6798b59a3d1b827d41e0cdeb5640465b6f657c3a48ffff", + "cborBytes": [ + 191, 27, 16, 58, 244, 105, 176, 202, 19, 166, 159, 70, 49, 57, 84, 242, 68, 92, 27, 216, 212, 112, 70, 133, 73, + 255, 188, 75, 175, 153, 242, 1, 214, 173, 186, 238, 17, 234, 82, 68, 237, 68, 227, 138, 255, 27, 28, 141, 108, + 188, 132, 131, 40, 130, 159, 27, 112, 217, 179, 62, 139, 173, 76, 151, 27, 49, 28, 177, 54, 103, 241, 3, 176, 72, + 17, 85, 209, 239, 241, 198, 237, 84, 66, 65, 217, 255, 27, 54, 238, 191, 58, 63, 166, 2, 56, 74, 188, 244, 182, + 128, 152, 207, 112, 119, 254, 184, 27, 95, 8, 5, 74, 214, 116, 101, 189, 216, 102, 159, 27, 34, 41, 128, 244, 2, + 54, 180, 221, 128, 255, 27, 116, 142, 151, 36, 61, 148, 102, 224, 159, 27, 31, 66, 230, 87, 175, 3, 11, 117, 75, + 26, 195, 123, 188, 99, 123, 103, 152, 181, 154, 61, 27, 130, 125, 65, 224, 205, 235, 86, 64, 70, 91, 111, 101, + 124, 58, 72, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3721, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb5fda0f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8646497741647110634" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + } + ] + }, + "cborHex": "bf0944fb5fda0f1b77fe87e28a17e1ea1bfffffffffffffffeff", + "cborBytes": [ + 191, 9, 68, 251, 95, 218, 15, 27, 119, 254, 135, 226, 138, 23, 225, 234, 27, 255, 255, 255, 255, 255, 255, 255, + 254, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3722, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0596cb008ff609b220c1" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6912075235048857622" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e27" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "755058186406286420" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1285982025409976051" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1888614562626219977" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14029517364660346983" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4579356456066540956" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "386981281300098879" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13751687201206207090" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16379201653821599893" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14548797264101365999" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3208616307822887345" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17129605089619341413" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1734932866215462361" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4575868844646673026" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89fc10bb4ed6e7ed70" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c3bc924a2afbd6353cbe14" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "342665866436160075" + } + } + } + ] + }, + "cborHex": "bf4a0596cb008ff609b220c11b5fec9fcdf5dca016423e27bf1b0a7a816b897f54541b11d8b9d6b41956f31b1a35b4f03af72fc91bc2b2dbb62ac120671b3f8d246f2fbce59c1b055ed56cce9e2f3f1bbed7cea6622e82721be34e9d1f9886f0951bc9e7b60763efd8ef1b2c874b88304f01b11bedb895128d7bf0651b1813b83fefec45d9ff41831b3f80c0785ff12a824989fc10bb4ed6e7ed70a04bc3bc924a2afbd6353cbe141b04c164ca3d942a4bff", + "cborBytes": [ + 191, 74, 5, 150, 203, 0, 143, 246, 9, 178, 32, 193, 27, 95, 236, 159, 205, 245, 220, 160, 22, 66, 62, 39, 191, 27, + 10, 122, 129, 107, 137, 127, 84, 84, 27, 17, 216, 185, 214, 180, 25, 86, 243, 27, 26, 53, 180, 240, 58, 247, 47, + 201, 27, 194, 178, 219, 182, 42, 193, 32, 103, 27, 63, 141, 36, 111, 47, 188, 229, 156, 27, 5, 94, 213, 108, 206, + 158, 47, 63, 27, 190, 215, 206, 166, 98, 46, 130, 114, 27, 227, 78, 157, 31, 152, 134, 240, 149, 27, 201, 231, + 182, 7, 99, 239, 216, 239, 27, 44, 135, 75, 136, 48, 79, 1, 177, 27, 237, 184, 149, 18, 141, 123, 240, 101, 27, + 24, 19, 184, 63, 239, 236, 69, 217, 255, 65, 131, 27, 63, 128, 192, 120, 95, 241, 42, 130, 73, 137, 252, 16, 187, + 78, 214, 231, 237, 112, 160, 75, 195, 188, 146, 74, 42, 251, 214, 53, 60, 190, 20, 27, 4, 193, 100, 202, 61, 148, + 42, 75, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3723, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12684919785328649337" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "ByteArray", + "bytearray": "15f528000758" + }, + { + "_tag": "ByteArray", + "bytearray": "8cc429730c6a67" + }, + { + "_tag": "ByteArray", + "bytearray": "d0d6358a16cdb1bb0465c511" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4120982779880361695" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bb009e35650d6a4790f1bfffffffffffffffd9f084615f528000758478cc429730c6a674cd0d6358a16cdb1bb0465c5111b3930ac0120454edfffff", + "cborBytes": [ + 191, 27, 176, 9, 227, 86, 80, 214, 164, 121, 15, 27, 255, 255, 255, 255, 255, 255, 255, 253, 159, 8, 70, 21, 245, + 40, 0, 7, 88, 71, 140, 196, 41, 115, 12, 106, 103, 76, 208, 214, 53, 138, 22, 205, 177, 187, 4, 101, 197, 17, 27, + 57, 48, 172, 1, 32, 69, 78, 223, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3724, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2609636693365234333" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8629005881215152150" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "891460061485859576" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10069217130897475492" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fd045a5df6" + }, + { + "_tag": "ByteArray", + "bytearray": "961c5f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15471889246046810451" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "34101590f1dfdf52f93dcf51" + }, + { + "_tag": "ByteArray", + "bytearray": "6ad597b54552bd6d" + }, + { + "_tag": "ByteArray", + "bytearray": "55b59bba072cdbc7a8d5c9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1723969710378285157" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10079057657644751653" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16484118555357940303" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "858240418a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1fa1975e810180" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1419719a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "280246332055339628" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b24374abf04dc1a9d9f1b77c063216a95f0161b0c5f1a33e85002f81b8bbd0ba1ad6c07a445fd045a5df643961c5fff1bd6b7314bb2ce71539f4c34101590f1dfdf52f93dcf51486ad597b54552bd6d4b55b59bba072cdbc7a8d5c91b17ecc5514ea178651b8be00189da989b25ff1be4c35a7d4f890a4fbf45858240418a471fa1975e81018045e1419719a51b03e3a28ddfc3c26cffff", + "cborBytes": [ + 191, 27, 36, 55, 74, 191, 4, 220, 26, 157, 159, 27, 119, 192, 99, 33, 106, 149, 240, 22, 27, 12, 95, 26, 51, 232, + 80, 2, 248, 27, 139, 189, 11, 161, 173, 108, 7, 164, 69, 253, 4, 90, 93, 246, 67, 150, 28, 95, 255, 27, 214, 183, + 49, 75, 178, 206, 113, 83, 159, 76, 52, 16, 21, 144, 241, 223, 223, 82, 249, 61, 207, 81, 72, 106, 213, 151, 181, + 69, 82, 189, 109, 75, 85, 181, 155, 186, 7, 44, 219, 199, 168, 213, 201, 27, 23, 236, 197, 81, 78, 161, 120, 101, + 27, 139, 224, 1, 137, 218, 152, 155, 37, 255, 27, 228, 195, 90, 125, 79, 137, 10, 79, 191, 69, 133, 130, 64, 65, + 138, 71, 31, 161, 151, 94, 129, 1, 128, 69, 225, 65, 151, 25, 165, 27, 3, 227, 162, 141, 223, 195, 194, 108, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3725, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1151893741964090471" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1390741605843387168" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "67" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12169443336850994519" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a90bc219" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8f456b3cca5a77fe" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b0ffc59415cc3dc67801b134ce81f3ea6c32041671ba8e28c3d073f7557bf44a90bc219488f456b3cca5a77feffff", + "cborBytes": [ + 191, 27, 15, 252, 89, 65, 92, 195, 220, 103, 128, 27, 19, 76, 232, 31, 62, 166, 195, 32, 65, 103, 27, 168, 226, + 140, 61, 7, 63, 117, 87, 191, 68, 169, 11, 194, 25, 72, 143, 69, 107, 60, 202, 90, 119, 254, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3726, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9416d9573377fb0e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1383037350917777306" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11047425682079949452" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2961262535391439616" + } + } + ] + } + } + ] + }, + "cborHex": "bf489416d9573377fb0e9f1b133189249c8d279a1b9950572046e7228c1b2918849624adeb00ffff", + "cborBytes": [ + 191, 72, 148, 22, 217, 87, 51, 119, 251, 14, 159, 27, 19, 49, 137, 36, 156, 141, 39, 154, 27, 153, 80, 87, 32, 70, + 231, 34, 140, 27, 41, 24, 132, 150, 36, 173, 235, 0, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3727, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5196308710233021727" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7149019003632818806" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8ba0f256b044e6d960" + }, + { + "_tag": "ByteArray", + "bytearray": "1667b31fab22e62a9cb056ec" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6773392949252731522" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "527004926134735974" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "14e52bac96fe8f82e7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12436545636769947827" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11f9b3a859cb56a5ea9a8874" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "faba093ec0e4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0846560c4501821" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10733020126487155007" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1012667459707133744" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2918409976765768048" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7204449611426977995" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e90a4f8e56b41f85bf76aaa0" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12417364322057087694" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12773319814998747961" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14474320098129757519" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8f4f5aee00040c7193" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13269981989737370080" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2254910062651841687" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b481cff3da0b51d1f9f1b63366ae81c0d1a76498ba0f256b044e6d9604c1667b31fab22e62a9cb056ecff1b5dffed0018583282bf1b07504c30292454664914e52bac96fe8f82e71bac977c5d709b60b3412c4c11f9b3a859cb56a5ea9a887441a146faba093ec0e448f0846560c4501821ff1b94f358f06662913fbf1b0e0db7b07370df301b28804669561461701b63fb58c0334e58cb4ce90a4f8e56b41f85bf76aaa0ff1bac53570f96d26ace801bb143f2b21f756b39d8669f1bc8df1d70e652454f9f498f4f5aee00040c71931bb828724ff22091e01b1f4b0cc144d11c97ffffff", + "cborBytes": [ + 191, 27, 72, 28, 255, 61, 160, 181, 29, 31, 159, 27, 99, 54, 106, 232, 28, 13, 26, 118, 73, 139, 160, 242, 86, + 176, 68, 230, 217, 96, 76, 22, 103, 179, 31, 171, 34, 230, 42, 156, 176, 86, 236, 255, 27, 93, 255, 237, 0, 24, + 88, 50, 130, 191, 27, 7, 80, 76, 48, 41, 36, 84, 102, 73, 20, 229, 43, 172, 150, 254, 143, 130, 231, 27, 172, 151, + 124, 93, 112, 155, 96, 179, 65, 44, 76, 17, 249, 179, 168, 89, 203, 86, 165, 234, 154, 136, 116, 65, 161, 70, 250, + 186, 9, 62, 192, 228, 72, 240, 132, 101, 96, 196, 80, 24, 33, 255, 27, 148, 243, 88, 240, 102, 98, 145, 63, 191, + 27, 14, 13, 183, 176, 115, 112, 223, 48, 27, 40, 128, 70, 105, 86, 20, 97, 112, 27, 99, 251, 88, 192, 51, 78, 88, + 203, 76, 233, 10, 79, 142, 86, 180, 31, 133, 191, 118, 170, 160, 255, 27, 172, 83, 87, 15, 150, 210, 106, 206, + 128, 27, 177, 67, 242, 178, 31, 117, 107, 57, 216, 102, 159, 27, 200, 223, 29, 112, 230, 82, 69, 79, 159, 73, 143, + 79, 90, 238, 0, 4, 12, 113, 147, 27, 184, 40, 114, 79, 242, 32, 145, 224, 27, 31, 75, 12, 193, 68, 209, 28, 151, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3728, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "682b3d1c3196e3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2a8127730c8ab4e0ea0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df3ecce8bbd86ad127" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83179fb848bc7b78948fdc" + } + } + ] + }, + "cborHex": "bf47682b3d1c3196e34ae2a8127730c8ab4e0ea049df3ecce8bbd86ad1274b83179fb848bc7b78948fdcff", + "cborBytes": [ + 191, 71, 104, 43, 61, 28, 49, 150, 227, 74, 226, 168, 18, 119, 48, 200, 171, 78, 14, 160, 73, 223, 62, 204, 232, + 187, 216, 106, 209, 39, 75, 131, 23, 159, 184, 72, 188, 123, 120, 148, 143, 220, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3729, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10412182358474499111" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14767987518798629741" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "070406fc030430ff0006" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b06d2d1601812b43" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9991424877440889868" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dacadb65df0a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4066820" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e1163b8d42" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2898668323737282066" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e809007e0b7e6e0e39c62" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b341fcd217970de3" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b907f80b05d762427d8669f1bccf26e6779650b6d80ff4a070406fc030430ff0006bf48b06d2d1601812b431b8aa8abfd3bdd740c46dacadb65df0a44c406682045e1163b8d421b283a237b8e09a612ff4b5e809007e0b7e6e0e39c621148b341fcd217970de3a0ff", + "cborBytes": [ + 191, 27, 144, 127, 128, 176, 93, 118, 36, 39, 216, 102, 159, 27, 204, 242, 110, 103, 121, 101, 11, 109, 128, 255, + 74, 7, 4, 6, 252, 3, 4, 48, 255, 0, 6, 191, 72, 176, 109, 45, 22, 1, 129, 43, 67, 27, 138, 168, 171, 253, 59, 221, + 116, 12, 70, 218, 202, 219, 101, 223, 10, 68, 196, 6, 104, 32, 69, 225, 22, 59, 141, 66, 27, 40, 58, 35, 123, 142, + 9, 166, 18, 255, 75, 94, 128, 144, 7, 224, 183, 230, 224, 227, 156, 98, 17, 72, 179, 65, 252, 210, 23, 151, 13, + 227, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3730, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "46240503055d050384fd" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551608" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1402617891735773409" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1841f804df7df6a62e" + } + ] + } + } + ] + }, + "cborHex": "bf4a46240503055d050384fdd8669f1bfffffffffffffff89f412f1b1377198a8884a0e1491841f804df7df6a62effffff", + "cborBytes": [ + 191, 74, 70, 36, 5, 3, 5, 93, 5, 3, 132, 253, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 248, 159, 65, + 47, 27, 19, 119, 25, 138, 136, 132, 160, 225, 73, 24, 65, 248, 4, 223, 125, 246, 166, 46, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3731, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4109019556137883271" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9d3404090277259d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13472955228803665995" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6687406436725792330" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11483579963300817772" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7c273379f4070d" + }, + { + "_tag": "ByteArray", + "bytearray": "6b87" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10568406889030831526" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11467907129284828759" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c79140220a2d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12806582061107066760" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4652237762771489344" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9052463069871314713" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13305624927239611400" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15202687070501961560" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17188088072145590294" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6765609979208723962" + } + } + } + ] + }, + "cborHex": "bf1b39062b840abb5687bf49b9d3404090277259d51bbaf98d65d795904bff1b5cce70b909b39e4ad8669f1b9f5ddf224e56ab6c9f477c273379f4070d426b871b92aa86125e794da61b9f2630c646311e5746c79140220a2dffff1bb1ba1e884b2d3788bf1b40901198bca712401b7da0cf3336059719ff1bb8a7136006b324081bd2facb57e4b17f581bee885b09045dd8161b5de4466e2b92edfaff", + "cborBytes": [ + 191, 27, 57, 6, 43, 132, 10, 187, 86, 135, 191, 73, 185, 211, 64, 64, 144, 39, 114, 89, 213, 27, 186, 249, 141, + 101, 215, 149, 144, 75, 255, 27, 92, 206, 112, 185, 9, 179, 158, 74, 216, 102, 159, 27, 159, 93, 223, 34, 78, 86, + 171, 108, 159, 71, 124, 39, 51, 121, 244, 7, 13, 66, 107, 135, 27, 146, 170, 134, 18, 94, 121, 77, 166, 27, 159, + 38, 48, 198, 70, 49, 30, 87, 70, 199, 145, 64, 34, 10, 45, 255, 255, 27, 177, 186, 30, 136, 75, 45, 55, 136, 191, + 27, 64, 144, 17, 152, 188, 167, 18, 64, 27, 125, 160, 207, 51, 54, 5, 151, 25, 255, 27, 184, 167, 19, 96, 6, 179, + 36, 8, 27, 210, 250, 203, 87, 228, 177, 127, 88, 27, 238, 136, 91, 9, 4, 93, 216, 22, 27, 93, 228, 70, 110, 43, + 146, 237, 250, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3732, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0fe29dc3ff924169a22e" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3449" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14621118578450942555" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "81de01c51245" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3244673139625668475" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bbdbdd9d0d756e4f749c4a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "21af6963ad" + } + ] + } + } + ] + }, + "cborHex": "bf4a0fe29dc3ff924169a22e804234491bcae8a5e18f6eca5b4163804681de01c512451b2d0765078ba3af7b4bbbdbdd9d0d756e4f749c4a9f4521af6963adffff", + "cborBytes": [ + 191, 74, 15, 226, 157, 195, 255, 146, 65, 105, 162, 46, 128, 66, 52, 73, 27, 202, 232, 165, 225, 143, 110, 202, + 91, 65, 99, 128, 70, 129, 222, 1, 197, 18, 69, 27, 45, 7, 101, 7, 139, 163, 175, 123, 75, 187, 219, 221, 157, 13, + 117, 110, 79, 116, 156, 74, 159, 69, 33, 175, 105, 99, 173, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3733, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0044f72e4faf7e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "29" + } + } + ] + }, + "cborHex": "bf470044f72e4faf7e4129ff", + "cborBytes": [191, 71, 0, 68, 247, 46, 79, 175, 126, 65, 41, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3734, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "650003" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01f0d96ed799c77ec314dbd2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2326647360896015875" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3439249179326538232" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76595faae23e3e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1f" + } + } + ] + } + } + ] + }, + "cborHex": "bf43650003bf4c01f0d96ed799c77ec314dbd21b2049e97297ce9e0341691b2fbaaae81bcfe1f84776595faae23e3e411fffff", + "cborBytes": [ + 191, 67, 101, 0, 3, 191, 76, 1, 240, 217, 110, 215, 153, 199, 126, 195, 20, 219, 210, 27, 32, 73, 233, 114, 151, + 206, 158, 3, 65, 105, 27, 47, 186, 170, 232, 27, 207, 225, 248, 71, 118, 89, 95, 170, 226, 62, 62, 65, 31, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3735, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11193804055111952196" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16510919725175693751" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "202702724300765109" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11680167582118834077" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "9c6b86bf4b4dc609492a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4457466615367334651" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "580561218714367496" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4daadb5db6bbed" + }, + { + "_tag": "ByteArray", + "bytearray": "ce0d7409348473921c4e95" + } + ] + } + } + ] + }, + "cborHex": "bf1b9b58617b164667449f1be5229202ee1661b71b02d0250dc4f377b5ff1ba2184a882139ef9d9f4a9c6b86bf4b4dc609492a1b3ddc1a451f21fafb1b080e915a3bd67608474daadb5db6bbed4bce0d7409348473921c4e95ffff", + "cborBytes": [ + 191, 27, 155, 88, 97, 123, 22, 70, 103, 68, 159, 27, 229, 34, 146, 2, 238, 22, 97, 183, 27, 2, 208, 37, 13, 196, + 243, 119, 181, 255, 27, 162, 24, 74, 136, 33, 57, 239, 157, 159, 74, 156, 107, 134, 191, 75, 77, 198, 9, 73, 42, + 27, 61, 220, 26, 69, 31, 33, 250, 251, 27, 8, 14, 145, 90, 59, 214, 118, 8, 71, 77, 170, 219, 93, 182, 187, 237, + 75, 206, 13, 116, 9, 52, 132, 115, 146, 28, 78, 149, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3736, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17921109163233237372" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6690496544070964518" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "699472928328751566" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18145581010948898169" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bf8b491d57783d97cd8669f1b5cd96b28b85415269f1b09b506ec1f0999ce1bfbd20dca40aebd79ffffff", + "cborBytes": [ + 191, 27, 248, 180, 145, 213, 119, 131, 217, 124, 216, 102, 159, 27, 92, 217, 107, 40, 184, 84, 21, 38, 159, 27, 9, + 181, 6, 236, 31, 9, 153, 206, 27, 251, 210, 13, 202, 64, 174, 189, 121, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3737, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16591604656686233823" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6b10b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "393c29d984af7c" + } + } + ] + } + } + ] + }, + "cborHex": "bf1be6413887777ff8dfbf436b10b647393c29d984af7cffff", + "cborBytes": [ + 191, 27, 230, 65, 56, 135, 119, 127, 248, 223, 191, 67, 107, 16, 182, 71, 57, 60, 41, 217, 132, 175, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3738, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "599289920394401946" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1556668680508661806" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6f9c1b" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6440626104836801800" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d68bd8a662db" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17005625874313059156" + } + }, + { + "_tag": "ByteArray", + "bytearray": "073032d57bfea2" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6885138061004514113" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "539a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9269843732107116811" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8503047664638192956" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18396429802208975277" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9772876427286852244" + } + } + } + ] + }, + "cborHex": "bf1b08511b01e694989a9f1b159a65ead6b1e02e436f9c1bff1b5961b35185e7c5089f46d68bd8a662db1bec001ea20d9f1b5447073032d57bfea2ff1b5f8cec9663b223419f42539a1b80a519c2b7a0410bff1b7600e4ccc6f96d3ca01bff4d3f6fc81359ad1b87a03b54ea38b294ff", + "cborBytes": [ + 191, 27, 8, 81, 27, 1, 230, 148, 152, 154, 159, 27, 21, 154, 101, 234, 214, 177, 224, 46, 67, 111, 156, 27, 255, + 27, 89, 97, 179, 81, 133, 231, 197, 8, 159, 70, 214, 139, 216, 166, 98, 219, 27, 236, 0, 30, 162, 13, 159, 27, 84, + 71, 7, 48, 50, 213, 123, 254, 162, 255, 27, 95, 140, 236, 150, 99, 178, 35, 65, 159, 66, 83, 154, 27, 128, 165, + 25, 194, 183, 160, 65, 11, 255, 27, 118, 0, 228, 204, 198, 249, 109, 60, 160, 27, 255, 77, 63, 111, 200, 19, 89, + 173, 27, 135, 160, 59, 84, 234, 56, 178, 148, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3739, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2438162871412380932" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9161166308363184163" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8166589816024182714" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "231924c49a2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1696" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4d95200a1480d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d60d694b64b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5100518086633580312" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b21d61836af14d5041b7f2300383243a8231b71558e2b5271afbabf46231924c49a2d42169647d4d95200a1480d462d60d694b64b41e01b46c8ae2d143fe718ffff", + "cborBytes": [ + 191, 27, 33, 214, 24, 54, 175, 20, 213, 4, 27, 127, 35, 0, 56, 50, 67, 168, 35, 27, 113, 85, 142, 43, 82, 113, + 175, 186, 191, 70, 35, 25, 36, 196, 154, 45, 66, 22, 150, 71, 212, 217, 82, 0, 161, 72, 13, 70, 45, 96, 214, 148, + 182, 75, 65, 224, 27, 70, 200, 174, 45, 20, 63, 231, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3740, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03fdbe" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3939553178134185294" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2144736599571776554" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06bcfd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6790821489845093387" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a8683d75371b4" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3253355189413390875" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "982ec323c4ed94" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15763842356718465705" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "118354812824059239" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50f658f9ff" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10738508560226660258" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "02a670c94a7a06c3c76d48d1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1399626322201353116" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "987328157384674609" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6498196610568733786" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80fbccce6546" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19bdbde55f6d91" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b08945e81de170db" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1343895377267473016" + } + } + } + ] + }, + "cborHex": "bf4303fdbebf1b36ac1abe2c73054e1b1dc3a292f241442aff4306bcfd1b5e3dd82a6b4e440b470a8683d75371b4bf1b2d263d4ec928aa1b47982ec323c4ed941bdac46b1a5f75f2a91b01a47b133fd5fd67ff4550f658f9ffd8669f1b9506d8a3f5cd2fa29f4c02a670c94a7a06c3c76d48d11b136c78b979191b9c1b0db3b1ba61a78d311b5a2e3b636d98c45affff4680fbccce65464719bdbde55f6d9148b08945e81de170db1b12a679b9b1513a78ff", + "cborBytes": [ + 191, 67, 3, 253, 190, 191, 27, 54, 172, 26, 190, 44, 115, 5, 78, 27, 29, 195, 162, 146, 242, 65, 68, 42, 255, 67, + 6, 188, 253, 27, 94, 61, 216, 42, 107, 78, 68, 11, 71, 10, 134, 131, 215, 83, 113, 180, 191, 27, 45, 38, 61, 78, + 201, 40, 170, 27, 71, 152, 46, 195, 35, 196, 237, 148, 27, 218, 196, 107, 26, 95, 117, 242, 169, 27, 1, 164, 123, + 19, 63, 213, 253, 103, 255, 69, 80, 246, 88, 249, 255, 216, 102, 159, 27, 149, 6, 216, 163, 245, 205, 47, 162, + 159, 76, 2, 166, 112, 201, 74, 122, 6, 195, 199, 109, 72, 209, 27, 19, 108, 120, 185, 121, 25, 27, 156, 27, 13, + 179, 177, 186, 97, 167, 141, 49, 27, 90, 46, 59, 99, 109, 152, 196, 90, 255, 255, 70, 128, 251, 204, 206, 101, 70, + 71, 25, 189, 189, 229, 95, 109, 145, 72, 176, 137, 69, 232, 29, 225, 112, 219, 27, 18, 166, 121, 185, 177, 81, 58, + 120, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3741, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6fffd065a79010f6805" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3fd705915d39433719d8" + } + } + ] + }, + "cborHex": "bf4aa6fffd065a79010f68054a3fd705915d39433719d8ff", + "cborBytes": [191, 74, 166, 255, 253, 6, 90, 121, 1, 15, 104, 5, 74, 63, 215, 5, 145, 93, 57, 67, 55, 25, 216, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3742, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8c5d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10712006237715614342" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17473640864010827566" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd11" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2228183412579111506" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "23fb88561efe" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13457582681628434488" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17601136701566134930" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8776197789638550146" + } + }, + { + "_tag": "ByteArray", + "bytearray": "75" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c1cfa6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4bc5d75986fba995dd29" + }, + { + "_tag": "ByteArray", + "bytearray": "d718b04e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e866" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "5b26e2e109d0f0351ff95080" + }, + { + "_tag": "ByteArray", + "bytearray": "bd3d3f13064b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11564066318939584232" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14396949142894423841" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ef10e9622de1b5" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f0a75293ecaf7fa9a0b952" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7163600772851159907" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d481f7f13fd5c15a32cf" + }, + { + "_tag": "ByteArray", + "bytearray": "4cf8b52b89283fa2e3eedb" + }, + { + "_tag": "ByteArray", + "bytearray": "9c2bc1ee13782c0a2d1701bb" + }, + { + "_tag": "ByteArray", + "bytearray": "9a" + }, + { + "_tag": "ByteArray", + "bytearray": "df24918a0d4b79dbf378" + } + ] + } + } + ] + }, + "cborHex": "bf428c5dd8669f1b94a8b0eb26ceca869f1bf27ed7c9581d772effff42bd11d8669f1b1eec1902213212529f4623fb88561efe1bbac2f025c9e960381bf443cc9343f0aa921b79cb516431f962824175ffff43c1cfa69f4a4bc5d75986fba995dd2944d718b04eff42e8669f4c5b26e2e109d0f0351ff9508046bd3d3f13064b1ba07bd10c4b73f6e81bc7cc3cf797962f21ff47ef10e9622de1b5804bf0a75293ecaf7fa9a0b952d8669f1b636a38f2d281d3639f4ad481f7f13fd5c15a32cf4b4cf8b52b89283fa2e3eedb4c9c2bc1ee13782c0a2d1701bb419a4adf24918a0d4b79dbf378ffffff", + "cborBytes": [ + 191, 66, 140, 93, 216, 102, 159, 27, 148, 168, 176, 235, 38, 206, 202, 134, 159, 27, 242, 126, 215, 201, 88, 29, + 119, 46, 255, 255, 66, 189, 17, 216, 102, 159, 27, 30, 236, 25, 2, 33, 50, 18, 82, 159, 70, 35, 251, 136, 86, 30, + 254, 27, 186, 194, 240, 37, 201, 233, 96, 56, 27, 244, 67, 204, 147, 67, 240, 170, 146, 27, 121, 203, 81, 100, 49, + 249, 98, 130, 65, 117, 255, 255, 67, 193, 207, 166, 159, 74, 75, 197, 215, 89, 134, 251, 169, 149, 221, 41, 68, + 215, 24, 176, 78, 255, 66, 232, 102, 159, 76, 91, 38, 226, 225, 9, 208, 240, 53, 31, 249, 80, 128, 70, 189, 61, + 63, 19, 6, 75, 27, 160, 123, 209, 12, 75, 115, 246, 232, 27, 199, 204, 60, 247, 151, 150, 47, 33, 255, 71, 239, + 16, 233, 98, 45, 225, 181, 128, 75, 240, 167, 82, 147, 236, 175, 127, 169, 160, 185, 82, 216, 102, 159, 27, 99, + 106, 56, 242, 210, 129, 211, 99, 159, 74, 212, 129, 247, 241, 63, 213, 193, 90, 50, 207, 75, 76, 248, 181, 43, + 137, 40, 63, 162, 227, 238, 219, 76, 156, 43, 193, 238, 19, 120, 44, 10, 45, 23, 1, 187, 65, 154, 74, 223, 36, + 145, 138, 13, 75, 121, 219, 243, 120, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3743, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2316692762761126953" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2cb3" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7756365029725320334" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "480f0a115306cb94" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10162796330829787434" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8132269670171067432" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d69efddfe" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14603150163405449958" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "83" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3ab3bdb482fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d359bdce12608f" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14388247750558695953" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "aeb7598707c0" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15945250371488958490" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8488371591769671496" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17414256785246043243" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17033014616303784741" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dd7f1bab04e30c9a9bb1c6" + }, + { + "_tag": "ByteArray", + "bytearray": "5a17" + }, + { + "_tag": "ByteArray", + "bytearray": "9a" + }, + { + "_tag": "ByteArray", + "bytearray": "c1a2bda02008a9d4" + }, + { + "_tag": "ByteArray", + "bytearray": "e774ba00a0122e84" + } + ] + } + } + ] + }, + "cborHex": "bf1b20268bcb1a186429422cb31b6ba424e6490a348e48480f0a115306cb941b8d09816b07c0b12abf1b70dba02dac3ac428452d69efddfe1bcaa8cfb3eb782ae64183463ab3bdb482fc47d359bdce12608fff1bc7ad5318d05d42119f46aeb7598707c0ff1bdd48e8bb3743c81a1b75ccc0fd48f2c7481bf1abde481006bc6bd8669f1bec616c8c7ad2d3259f4bdd7f1bab04e30c9a9bb1c6425a17419a48c1a2bda02008a9d448e774ba00a0122e84ffffff", + "cborBytes": [ + 191, 27, 32, 38, 139, 203, 26, 24, 100, 41, 66, 44, 179, 27, 107, 164, 36, 230, 73, 10, 52, 142, 72, 72, 15, 10, + 17, 83, 6, 203, 148, 27, 141, 9, 129, 107, 7, 192, 177, 42, 191, 27, 112, 219, 160, 45, 172, 58, 196, 40, 69, 45, + 105, 239, 221, 254, 27, 202, 168, 207, 179, 235, 120, 42, 230, 65, 131, 70, 58, 179, 189, 180, 130, 252, 71, 211, + 89, 189, 206, 18, 96, 143, 255, 27, 199, 173, 83, 24, 208, 93, 66, 17, 159, 70, 174, 183, 89, 135, 7, 192, 255, + 27, 221, 72, 232, 187, 55, 67, 200, 26, 27, 117, 204, 192, 253, 72, 242, 199, 72, 27, 241, 171, 222, 72, 16, 6, + 188, 107, 216, 102, 159, 27, 236, 97, 108, 140, 122, 210, 211, 37, 159, 75, 221, 127, 27, 171, 4, 227, 12, 154, + 155, 177, 198, 66, 90, 23, 65, 154, 72, 193, 162, 189, 160, 32, 8, 169, 212, 72, 231, 116, 186, 0, 160, 18, 46, + 132, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3744, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1fe7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02fb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5200" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2174189588158992080" + } + } + } + ] + }, + "cborHex": "bf421fe74202fb4252001b1e2c45e93c91ced0ff", + "cborBytes": [191, 66, 31, 231, 66, 2, 251, 66, 82, 0, 27, 30, 44, 69, 233, 60, 145, 206, 208, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3745, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "048a31b4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "de76b29cb26a50aa8d68" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffff" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13593543851021670092" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8490cc0c5ef567df" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5874866391368300982" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d039cc2a564ca" + } + ] + } + } + ] + }, + "cborHex": "bf44048a31b44ade76b29cb26a50aa8d6842ffff9f1bbca5f81c5ed796cc488490cc0c5ef567df1b5187b7db486379b6476d039cc2a564caffff", + "cborBytes": [ + 191, 68, 4, 138, 49, 180, 74, 222, 118, 178, 156, 178, 106, 80, 170, 141, 104, 66, 255, 255, 159, 27, 188, 165, + 248, 28, 94, 215, 150, 204, 72, 132, 144, 204, 12, 94, 245, 103, 223, 27, 81, 135, 183, 219, 72, 99, 121, 182, 71, + 109, 3, 156, 194, 165, 100, 202, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3746, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8853514138894396504" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b7ade00338eb2ec5880ff", + "cborBytes": [191, 27, 122, 222, 0, 51, 142, 178, 236, 88, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3747, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18004356707765254935" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1381236914105143244" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a8e33dc5b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2865951838109070557" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16054217001716620097" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "211de3988f819465" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d792abd39592d9f" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf0a41e71bf9dc5308d7c4fb17d8669f1b132b23a7bfe4cfcc80ff452a8e33dc5bbf1b27c5e80325de74dd141bdecc094dde5b1b4148211de3988f8194651bfffffffffffffff0101bfffffffffffffffa00ff485d792abd39592d9fa0ff", + "cborBytes": [ + 191, 10, 65, 231, 27, 249, 220, 83, 8, 215, 196, 251, 23, 216, 102, 159, 27, 19, 43, 35, 167, 191, 228, 207, 204, + 128, 255, 69, 42, 142, 51, 220, 91, 191, 27, 39, 197, 232, 3, 37, 222, 116, 221, 20, 27, 222, 204, 9, 77, 222, 91, + 27, 65, 72, 33, 29, 227, 152, 143, 129, 148, 101, 27, 255, 255, 255, 255, 255, 255, 255, 240, 16, 27, 255, 255, + 255, 255, 255, 255, 255, 250, 0, 255, 72, 93, 121, 42, 189, 57, 89, 45, 159, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3748, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5dc62df72a7c746368229e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cc31aa53c07a97d8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a09fb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9879096649722024969" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4b5dc62df72a7c746368229e48cc31aa53c07a97d8436a09fbd8669f1b89199a0fac6ed40980ffff", + "cborBytes": [ + 191, 75, 93, 198, 45, 247, 42, 124, 116, 99, 104, 34, 158, 72, 204, 49, 170, 83, 192, 122, 151, 216, 67, 106, 9, + 251, 216, 102, 159, 27, 137, 25, 154, 15, 172, 110, 212, 9, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3749, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16422956897980706159" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0403ba6ab3032a5c0407f8" + } + } + ] + }, + "cborHex": "bf1be3ea104941b0ed6f4b0403ba6ab3032a5c0407f8ff", + "cborBytes": [191, 27, 227, 234, 16, 73, 65, 176, 237, 111, 75, 4, 3, 186, 106, 179, 3, 42, 92, 4, 7, 248, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3750, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00fcf98c0005" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "06000702fb063efaf80202fb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1654738375445849371" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13054865966064842945" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c5d500913128" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11319160810910160312" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2bd0f44404040156d5fe1e03" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "18f421c8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1717306663550799579" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c59d10040baa96" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4516224918854973711" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "020bbf12176547" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8092206104319620077" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "36c09d31e6e6b05e1856" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9769014524629804634" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1273212851200794066" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11079123272498049272" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dcd44acd0770a7b2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12474018553415241206" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4fd07b5c29bb27" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "593aa46551a0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "90d6a4c949d1fc8d098d09" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff67f7303f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "113f52839f4cc14b4e14f79e" + } + } + ] + }, + "cborHex": "bf4600fcf98c00051bfffffffffffffff74c06000702fb063efaf80202fbd8669f1b16f6cfc908a8251b9f081bb52c336db1a1b8c146c5d5009131281b9d15bcc939d295b84c2bd0f44404040156d5fe1e03ffff4418f421c8bf1b17d5194fd35b4edb47c59d10040baa961b3eacdaa2be1e390f47020bbf121765471b704d4a93d937f3ed4a36c09d31e6e6b05e18561b879282f3a230e65a1b11ab5c57a7491dd21b99c0f3eaa80270f848dcd44acd0770a7b21bad1c9dc8bdf28df6474fd07b5c29bb27ff46593aa46551a0d905089f4b90d6a4c949d1fc8d098d09ff45ff67f7303f4c113f52839f4cc14b4e14f79eff", + "cborBytes": [ + 191, 70, 0, 252, 249, 140, 0, 5, 27, 255, 255, 255, 255, 255, 255, 255, 247, 76, 6, 0, 7, 2, 251, 6, 62, 250, 248, + 2, 2, 251, 216, 102, 159, 27, 22, 246, 207, 201, 8, 168, 37, 27, 159, 8, 27, 181, 44, 51, 109, 177, 161, 184, 193, + 70, 197, 213, 0, 145, 49, 40, 27, 157, 21, 188, 201, 57, 210, 149, 184, 76, 43, 208, 244, 68, 4, 4, 1, 86, 213, + 254, 30, 3, 255, 255, 68, 24, 244, 33, 200, 191, 27, 23, 213, 25, 79, 211, 91, 78, 219, 71, 197, 157, 16, 4, 11, + 170, 150, 27, 62, 172, 218, 162, 190, 30, 57, 15, 71, 2, 11, 191, 18, 23, 101, 71, 27, 112, 77, 74, 147, 217, 55, + 243, 237, 74, 54, 192, 157, 49, 230, 230, 176, 94, 24, 86, 27, 135, 146, 130, 243, 162, 48, 230, 90, 27, 17, 171, + 92, 87, 167, 73, 29, 210, 27, 153, 192, 243, 234, 168, 2, 112, 248, 72, 220, 212, 74, 205, 7, 112, 167, 178, 27, + 173, 28, 157, 200, 189, 242, 141, 246, 71, 79, 208, 123, 92, 41, 187, 39, 255, 70, 89, 58, 164, 101, 81, 160, 217, + 5, 8, 159, 75, 144, 214, 164, 201, 73, 209, 252, 141, 9, 141, 9, 255, 69, 255, 103, 247, 48, 63, 76, 17, 63, 82, + 131, 159, 76, 193, 75, 78, 20, 247, 158, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3751, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4115229800688961045" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8585138603653809245" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6186816525811652924" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15852791844342210006" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12001893565387074744" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15477477427473996229" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ce27677f956526f4c7766" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18319415690500088906" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12864906325249619587" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "789fd7d673" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b391c3bb3472ac6159f1b77248a12f247445dff1b55dbfcd9df85193c1bdc006e30d43a1dd61ba68f4a9be4f16cb8bf1bd6cb0bb793b6d9c54b3ce27677f956526f4c77661bfe3ba38294f9a44a1bb2895424412df683ff45789fd7d67380ff", + "cborBytes": [ + 191, 27, 57, 28, 59, 179, 71, 42, 198, 21, 159, 27, 119, 36, 138, 18, 242, 71, 68, 93, 255, 27, 85, 219, 252, 217, + 223, 133, 25, 60, 27, 220, 0, 110, 48, 212, 58, 29, 214, 27, 166, 143, 74, 155, 228, 241, 108, 184, 191, 27, 214, + 203, 11, 183, 147, 182, 217, 197, 75, 60, 226, 118, 119, 249, 86, 82, 111, 76, 119, 102, 27, 254, 59, 163, 130, + 148, 249, 164, 74, 27, 178, 137, 84, 36, 65, 45, 246, 131, 255, 69, 120, 159, 215, 214, 115, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3752, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2618a2c3a675c0" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6184325972767504805" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "db7037367d20bbfb4ed8ee" + }, + { + "_tag": "ByteArray", + "bytearray": "d2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5029780851034739315" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9dd4e64051fd61f07341bcfe" + }, + { + "_tag": "ByteArray", + "bytearray": "4146471025e147cdd89d79aa" + } + ] + } + } + ] + }, + "cborHex": "bf472618a2c3a675c0d8669f1b55d323b4ce0779a59f4bdb7037367d20bbfb4ed8ee41d21b45cd5f08fbfcd2734c9dd4e64051fd61f07341bcfe4c4146471025e147cdd89d79aaffffff", + "cborBytes": [ + 191, 71, 38, 24, 162, 195, 166, 117, 192, 216, 102, 159, 27, 85, 211, 35, 180, 206, 7, 121, 165, 159, 75, 219, + 112, 55, 54, 125, 32, 187, 251, 78, 216, 238, 65, 210, 27, 69, 205, 95, 8, 251, 252, 210, 115, 76, 157, 212, 230, + 64, 81, 253, 97, 240, 115, 65, 188, 254, 76, 65, 70, 71, 16, 37, 225, 71, 205, 216, 157, 121, 170, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3753, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10722794583644943896" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "303f2697" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5209106913431877135" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6843a3e86f8613e04e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8941364300546167170" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79a3896a11ccf6b467" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12500864809071036916" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8ac061ef" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3459137324535214839" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea76c8d486ca8adfc576bd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce57e68e549de780" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b94cf04dcada3b618bf44303f26971b484a77238423760f496843a3e86f8613e04e1b7c161b753d69d1824979a3896a11ccf6b4671bad7bfe4fb9dc49f4448ac061ef1b30015311c23772f74bea76c8d486ca8adfc576bd48ce57e68e549de780ffff", + "cborBytes": [ + 191, 27, 148, 207, 4, 220, 173, 163, 182, 24, 191, 68, 48, 63, 38, 151, 27, 72, 74, 119, 35, 132, 35, 118, 15, 73, + 104, 67, 163, 232, 111, 134, 19, 224, 78, 27, 124, 22, 27, 117, 61, 105, 209, 130, 73, 121, 163, 137, 106, 17, + 204, 246, 180, 103, 27, 173, 123, 254, 79, 185, 220, 73, 244, 68, 138, 192, 97, 239, 27, 48, 1, 83, 17, 194, 55, + 114, 247, 75, 234, 118, 200, 212, 134, 202, 138, 223, 197, 118, 189, 72, 206, 87, 230, 142, 84, 157, 231, 128, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3754, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17031794886212776872" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + }, + "cborHex": "bf1bec5d1735f006f3a807ff", + "cborBytes": [191, 27, 236, 93, 23, 53, 240, 6, 243, 168, 7, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3755, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f7b2c403be20537a89ef" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0201" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4247134ce1b2fb27" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aef670567575a1535c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b0fa0203b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2efaa0" + } + } + ] + } + } + ] + }, + "cborHex": "bf4af7b2c403be20537a89efbf4123420201484247134ce1b2fb2749aef670567575a1535c45b0fa0203b6432efaa0ffff", + "cborBytes": [ + 191, 74, 247, 178, 196, 3, 190, 32, 83, 122, 137, 239, 191, 65, 35, 66, 2, 1, 72, 66, 71, 19, 76, 225, 178, 251, + 39, 73, 174, 246, 112, 86, 117, 117, 161, 83, 92, 69, 176, 250, 2, 3, 182, 67, 46, 250, 160, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3756, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "64aee8a9ec39bf67a99ef5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7189878720177801453" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca8ada839fe7503f5e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2648013168117913921" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "030f72bc88dba49cb815ec01" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10243213304221599546" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6781166210466229792" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7a56150da3c1bb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7157557209886571841" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eefdd202291733ed489741" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "be081962b3" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b64aee8a9ec39bf67a99ef51b63c7949a365688ed49ca8ada839fe7503f5ebf1b24bfa1f2563999414c030f72bc88dba49cb815ec011b8e27343ab4af073a1b5e1b8abd81b8ae20477a56150da3c1bb1b6354c05c2ad33d414beefdd202291733ed48974145be081962b3ffff", + "cborBytes": [ + 191, 75, 100, 174, 232, 169, 236, 57, 191, 103, 169, 158, 245, 27, 99, 199, 148, 154, 54, 86, 136, 237, 73, 202, + 138, 218, 131, 159, 231, 80, 63, 94, 191, 27, 36, 191, 161, 242, 86, 57, 153, 65, 76, 3, 15, 114, 188, 136, 219, + 164, 156, 184, 21, 236, 1, 27, 142, 39, 52, 58, 180, 175, 7, 58, 27, 94, 27, 138, 189, 129, 184, 174, 32, 71, 122, + 86, 21, 13, 163, 193, 187, 27, 99, 84, 192, 92, 42, 211, 61, 65, 75, 238, 253, 210, 2, 41, 23, 51, 237, 72, 151, + 65, 69, 190, 8, 25, 98, 179, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3757, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15098893428139370349" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10354725575948606301" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "461533b4093b" + }, + { + "_tag": "ByteArray", + "bytearray": "6b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11271987624626909596" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15901003673977551025" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2584643538362005661" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3004487018420339997" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bd18a0b9355ba276dd8669f1b8fb3600cb5119b5d9f46461533b4093b416b1b9c6e2505e67c719cffff1bdcabb698279cf8b1d8669f1b23de7f9aa713789d9f1b29b215065937851dffffff", + "cborBytes": [ + 191, 27, 209, 138, 11, 147, 85, 186, 39, 109, 216, 102, 159, 27, 143, 179, 96, 12, 181, 17, 155, 93, 159, 70, 70, + 21, 51, 180, 9, 59, 65, 107, 27, 156, 110, 37, 5, 230, 124, 113, 156, 255, 255, 27, 220, 171, 182, 152, 39, 156, + 248, 177, 216, 102, 159, 27, 35, 222, 127, 154, 167, 19, 120, 157, 159, 27, 41, 178, 21, 6, 89, 55, 133, 29, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3758, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b1bfe3c5d854a8ade5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1304736991774392593" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fafd9cfa8f9d9aff0200a7" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a203" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c5f684e3b9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "31634c69e05547f1cbe9543d" + } + } + ] + }, + "cborHex": "bf04bf49b1bfe3c5d854a8ade51b121b5b6198064111ff0c4bfafd9cfa8f9d9aff0200a71bffffffffffffffed42a20345c5f684e3b94c31634c69e05547f1cbe9543dff", + "cborBytes": [ + 191, 4, 191, 73, 177, 191, 227, 197, 216, 84, 168, 173, 229, 27, 18, 27, 91, 97, 152, 6, 65, 17, 255, 12, 75, 250, + 253, 156, 250, 143, 157, 154, 255, 2, 0, 167, 27, 255, 255, 255, 255, 255, 255, 255, 237, 66, 162, 3, 69, 197, + 246, 132, 227, 185, 76, 49, 99, 76, 105, 224, 85, 71, 241, 203, 233, 84, 61, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3759, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ed69d2462d29aeedc1730" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0560ced4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3518693696200736953" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d365f891502ca62e90e1" + } + ] + } + } + ] + }, + "cborHex": "bf4b6ed69d2462d29aeedc1730bf440560ced41b30d4e9461b7380b9ff41fbd905009f4ad365f891502ca62e90e1ffff", + "cborBytes": [ + 191, 75, 110, 214, 157, 36, 98, 210, 154, 238, 220, 23, 48, 191, 68, 5, 96, 206, 212, 27, 48, 212, 233, 70, 27, + 115, 128, 185, 255, 65, 251, 217, 5, 0, 159, 74, 211, 101, 248, 145, 80, 44, 166, 46, 144, 225, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3760, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b179ac5b2163b38f5c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17738499829355871045" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4991738246693253386" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "11dd3e0715e379e5e356" + }, + { + "_tag": "ByteArray", + "bytearray": "1a106804ff010303b00d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7849405955750478914" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10989703715937592830" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12679957362446435892" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "041703003206" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf0203089f49b179ac5b2163b38f5c1bf62bcf9cb9157b451b4546377cede1f10aff109f4a11dd3e0715e379e5e3564a1a106804ff010303b00dff1b6ceeb120fa57c4429f1b9883454dbf4025fe0cff1baff8420a33b80634460417030032061bfffffffffffffffe80ff", + "cborBytes": [ + 191, 2, 3, 8, 159, 73, 177, 121, 172, 91, 33, 99, 179, 143, 92, 27, 246, 43, 207, 156, 185, 21, 123, 69, 27, 69, + 70, 55, 124, 237, 225, 241, 10, 255, 16, 159, 74, 17, 221, 62, 7, 21, 227, 121, 229, 227, 86, 74, 26, 16, 104, 4, + 255, 1, 3, 3, 176, 13, 255, 27, 108, 238, 177, 32, 250, 87, 196, 66, 159, 27, 152, 131, 69, 77, 191, 64, 37, 254, + 12, 255, 27, 175, 248, 66, 10, 51, 184, 6, 52, 70, 4, 23, 3, 0, 50, 6, 27, 255, 255, 255, 255, 255, 255, 255, 254, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3761, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d6940f6219c10d69be" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "242670610428303835" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf49d6940f6219c10d69bed8669f1b035e23a26c0199db80ffff", + "cborBytes": [ + 191, 73, 214, 148, 15, 98, 25, 193, 13, 105, 190, 216, 102, 159, 27, 3, 94, 35, 162, 108, 1, 153, 219, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3762, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7510748091794638454" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13106752696439882707" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b3" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7854730041200517644" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6269916478737767425" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b683b899888dcc676bf1bb5e48a22863143d341b3ff1b6d019b5b3858a20cd8669f1b570337d166885c0180ffff", + "cborBytes": [ + 191, 27, 104, 59, 137, 152, 136, 220, 198, 118, 191, 27, 181, 228, 138, 34, 134, 49, 67, 211, 65, 179, 255, 27, + 109, 1, 155, 91, 56, 88, 162, 12, 216, 102, 159, 27, 87, 3, 55, 209, 102, 136, 92, 1, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3763, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7026fd3c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14556365448679078141" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "725a0ee5de" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b27942" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15788806068074715110" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0004ef39" + } + } + ] + }, + "cborHex": "bf12bf447026fd3c1bca029940ad4938fd45725a0ee5de43b27942ff1bdb1d1b775b2017e6440004ef39ff", + "cborBytes": [ + 191, 18, 191, 68, 112, 38, 253, 60, 27, 202, 2, 153, 64, 173, 73, 56, 253, 69, 114, 90, 14, 229, 222, 67, 178, + 121, 66, 255, 27, 219, 29, 27, 119, 91, 32, 23, 230, 68, 0, 4, 239, 57, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3764, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12687169779123892065" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14312628571048282" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "896b6a8a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9642733469574082083" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11289106252666553301" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "27200c5410557e0231" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5fe2023aea" + } + } + ] + }, + "cborHex": "bf1bb011e1b1d1c02f61d8669f1b0032d94285c7895a9f44896b6a8a1b85d1df004dbbae231b9caaf65315d4c3d5ffff4927200c5410557e0231455fe2023aeaff", + "cborBytes": [ + 191, 27, 176, 17, 225, 177, 209, 192, 47, 97, 216, 102, 159, 27, 0, 50, 217, 66, 133, 199, 137, 90, 159, 68, 137, + 107, 106, 138, 27, 133, 209, 223, 0, 77, 187, 174, 35, 27, 156, 170, 246, 83, 21, 212, 195, 213, 255, 255, 73, 39, + 32, 12, 84, 16, 85, 126, 2, 49, 69, 95, 226, 2, 58, 234, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3765, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1546" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6395108090847479481" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "13cdff0b7df4394d83d0" + }, + { + "_tag": "ByteArray", + "bytearray": "1bab46f8f0a72782" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12126026950060642596" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10948339679465264572" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "28168eb0065f02dc75" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5995724335293997319" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7299099173490548689" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7240910610783128237" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8186742126883744703" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9511640569169420224" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "58681c" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "523b5f4bb6" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddb5960ddececb487b57dd8c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10639717840765737748" + } + } + } + ] + }, + "cborHex": "bf421546d8669f1b58bffced0730c6b99f4a13cdff0b7df4394d83d0481bab46f8f0a727821ba8484d43bf2d91241b97f050ee82d755bcffff4928168eb0065f02dc75d8669f1b53351784285d21079f1b654b9c06a8405fd1418a1b647ce1d62615caad1b719d2696d4a1abbf1b840022b3ec899fc0ffff41374358681c45523b5f4bb6804cddb5960ddececb487b57dd8c1b93a7df01293a5b14ff", + "cborBytes": [ + 191, 66, 21, 70, 216, 102, 159, 27, 88, 191, 252, 237, 7, 48, 198, 185, 159, 74, 19, 205, 255, 11, 125, 244, 57, + 77, 131, 208, 72, 27, 171, 70, 248, 240, 167, 39, 130, 27, 168, 72, 77, 67, 191, 45, 145, 36, 27, 151, 240, 80, + 238, 130, 215, 85, 188, 255, 255, 73, 40, 22, 142, 176, 6, 95, 2, 220, 117, 216, 102, 159, 27, 83, 53, 23, 132, + 40, 93, 33, 7, 159, 27, 101, 75, 156, 6, 168, 64, 95, 209, 65, 138, 27, 100, 124, 225, 214, 38, 21, 202, 173, 27, + 113, 157, 38, 150, 212, 161, 171, 191, 27, 132, 0, 34, 179, 236, 137, 159, 192, 255, 255, 65, 55, 67, 88, 104, 28, + 69, 82, 59, 95, 75, 182, 128, 76, 221, 181, 150, 13, 222, 206, 203, 72, 123, 87, 221, 140, 27, 147, 167, 223, 1, + 41, 58, 91, 20, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3766, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "141511" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3606942370333280600" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad57f28b9ba17e0328" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "958f3383617fa6568f272cfc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10206817818820164924" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b073076f3f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2516833431008673549" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c4885586247b6c19" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17707280574727688908" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e60971f51" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5645866600522602358" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12693009869746054543" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3986375622644065326" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c772b61cfbe65b7c090320d3" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1008771182434424425" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6ed8f2ca" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4250874851083901618" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e39c4e6b4b8c304640" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d06556d025989554" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9427042412404669689" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf431415111b320e6ef9b505495849ad57f28b9ba17e03289f4c958f3383617fa6568f272cfc1b8da5e6ba69e73d3cff45b073076f3f1b22ed96abb6197f0d48c4885586247b6c199f1bf5bce5dd92d192cc459e60971f511b4e5a25c2956457761bb026a139e0bda58f1b3752738210f9e42eff4cc772b61cfbe65b7c090320d3bf1b0dffe00bb4a79669446ed8f2ca1b3afe2427ab7f5ab249e39c4e6b4b8c30464048d06556d0259895541b82d39520a1ebfcf9ffff", + "cborBytes": [ + 191, 67, 20, 21, 17, 27, 50, 14, 110, 249, 181, 5, 73, 88, 73, 173, 87, 242, 139, 155, 161, 126, 3, 40, 159, 76, + 149, 143, 51, 131, 97, 127, 166, 86, 143, 39, 44, 252, 27, 141, 165, 230, 186, 105, 231, 61, 60, 255, 69, 176, + 115, 7, 111, 63, 27, 34, 237, 150, 171, 182, 25, 127, 13, 72, 196, 136, 85, 134, 36, 123, 108, 25, 159, 27, 245, + 188, 229, 221, 146, 209, 146, 204, 69, 158, 96, 151, 31, 81, 27, 78, 90, 37, 194, 149, 100, 87, 118, 27, 176, 38, + 161, 57, 224, 189, 165, 143, 27, 55, 82, 115, 130, 16, 249, 228, 46, 255, 76, 199, 114, 182, 28, 251, 230, 91, + 124, 9, 3, 32, 211, 191, 27, 13, 255, 224, 11, 180, 167, 150, 105, 68, 110, 216, 242, 202, 27, 58, 254, 36, 39, + 171, 127, 90, 178, 73, 227, 156, 78, 107, 75, 140, 48, 70, 64, 72, 208, 101, 86, 208, 37, 152, 149, 84, 27, 130, + 211, 149, 32, 161, 235, 252, 249, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3767, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10298924694230499782" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "646011587873780012" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "97bde28cafff6ffc4e43e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7020547972225500010" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12470922314478939753" + } + }, + { + "_tag": "ByteArray", + "bytearray": "364585d3" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6362c492c3dbd05f3029" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a5048d566f70eecd29e" + } + } + ] + }, + "cborHex": "bf1b8eed2171801b81c6d8669f1b08f7181dd000b12c9f4b97bde28cafff6ffc4e43e51b616dff2f2d17036a1bad119dc570026e6944364585d3ffff4a6362c492c3dbd05f30294a9a5048d566f70eecd29eff", + "cborBytes": [ + 191, 27, 142, 237, 33, 113, 128, 27, 129, 198, 216, 102, 159, 27, 8, 247, 24, 29, 208, 0, 177, 44, 159, 75, 151, + 189, 226, 140, 175, 255, 111, 252, 78, 67, 229, 27, 97, 109, 255, 47, 45, 23, 3, 106, 27, 173, 17, 157, 197, 112, + 2, 110, 105, 68, 54, 69, 133, 211, 255, 255, 74, 99, 98, 196, 146, 195, 219, 208, 95, 48, 41, 74, 154, 80, 72, + 213, 102, 247, 14, 236, 210, 158, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3768, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6792072968872231466" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f88a0602" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "072907" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + } + } + ] + }, + "cborHex": "bf1b5e424a611629822a44f88a06024307290714ff", + "cborBytes": [191, 27, 94, 66, 74, 97, 22, 41, 130, 42, 68, 248, 138, 6, 2, 67, 7, 41, 7, 20, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3769, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f374e67430" + }, + { + "_tag": "ByteArray", + "bytearray": "9f0b6c4afe6d3f" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4855968151800357518" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9929150367765170546" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b5e5639" + } + } + ] + }, + "cborHex": "bf099f45f374e67430479f0b6c4afe6d3fff1b4363dd4e58aba28ed9050c9f1bfffffffffffffffdff1b89cb6da7101509721bffffffffffffffeb1bfffffffffffffff8447b5e5639ff", + "cborBytes": [ + 191, 9, 159, 69, 243, 116, 230, 116, 48, 71, 159, 11, 108, 74, 254, 109, 63, 255, 27, 67, 99, 221, 78, 88, 171, + 162, 142, 217, 5, 12, 159, 27, 255, 255, 255, 255, 255, 255, 255, 253, 255, 27, 137, 203, 109, 167, 16, 21, 9, + 114, 27, 255, 255, 255, 255, 255, 255, 255, 235, 27, 255, 255, 255, 255, 255, 255, 255, 248, 68, 123, 94, 86, 57, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3770, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "829088466f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + } + ] + }, + "cborHex": "bf45829088466f1bfffffffffffffffeff", + "cborBytes": [191, 69, 130, 144, 136, 70, 111, 27, 255, 255, 255, 255, 255, 255, 255, 254, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3771, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "791803033002748820" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15667048673787923528" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "cdc7d64900c9c9a0f676ef82" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13084301499037892520" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e" + }, + { + "_tag": "ByteArray", + "bytearray": "b549fe78" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10517324912059861034" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbf9c34ebaf1b44673" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12169861658469169597" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "542616" + }, + { + "_tag": "ByteArray", + "bytearray": "8042ce2e4f4a26671aac" + }, + { + "_tag": "ByteArray", + "bytearray": "e5" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4712635639409128312" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1325" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13145333388163745780" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e12f3d6f7af1" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17329279814930011726" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18117149941404772633" + } + }, + { + "_tag": "ByteArray", + "bytearray": "897094" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6501834719881553658" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3b" + } + ] + } + } + ] + }, + "cborHex": "bf1b0afd0ca9d234ab94d8669f1bd96c89c2dfe24c489f4ccdc7d64900c9c9a0f676ef821bb594c6e3c843bfa8419e44b549fe78ffff1b91f50b48cab1c82a49fbf9c34ebaf1b446731ba8e408b31eb379bd9f435426164a8042ce2e4f4a26671aac41e51b4166a5253ad3b378421325ff1bb66d9b11cf9507f446e12f3d6f7af11bf07df82d5e40164e9f1bfb6d0be207eba919438970941b5a3b283ac2d766fa413bffff", + "cborBytes": [ + 191, 27, 10, 253, 12, 169, 210, 52, 171, 148, 216, 102, 159, 27, 217, 108, 137, 194, 223, 226, 76, 72, 159, 76, + 205, 199, 214, 73, 0, 201, 201, 160, 246, 118, 239, 130, 27, 181, 148, 198, 227, 200, 67, 191, 168, 65, 158, 68, + 181, 73, 254, 120, 255, 255, 27, 145, 245, 11, 72, 202, 177, 200, 42, 73, 251, 249, 195, 78, 186, 241, 180, 70, + 115, 27, 168, 228, 8, 179, 30, 179, 121, 189, 159, 67, 84, 38, 22, 74, 128, 66, 206, 46, 79, 74, 38, 103, 26, 172, + 65, 229, 27, 65, 102, 165, 37, 58, 211, 179, 120, 66, 19, 37, 255, 27, 182, 109, 155, 17, 207, 149, 7, 244, 70, + 225, 47, 61, 111, 122, 241, 27, 240, 125, 248, 45, 94, 64, 22, 78, 159, 27, 251, 109, 11, 226, 7, 235, 169, 25, + 67, 137, 112, 148, 27, 90, 59, 40, 58, 194, 215, 102, 250, 65, 59, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3772, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4476654140317825091" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2988680319999358609" + } + } + } + ] + }, + "cborHex": "bf1b3e204538e7ecf8431b2979ecea94c33691ff", + "cborBytes": [191, 27, 62, 32, 69, 56, 231, 236, 248, 67, 27, 41, 121, 236, 234, 148, 195, 54, 145, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3773, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16055834717761154767" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "f05d1e3e782d4bde13" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + { + "_tag": "ByteArray", + "bytearray": "17" + } + ] + } + } + ] + }, + "cborHex": "bf1bded1c89bbc89aecf9f49f05d1e3e782d4bde130f4117ffff", + "cborBytes": [ + 191, 27, 222, 209, 200, 155, 188, 137, 174, 207, 159, 73, 240, 93, 30, 62, 120, 45, 75, 222, 19, 15, 65, 23, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3774, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f33cc0be7b834edd9ff" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18095485465513911969" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3014513326256932234" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "83cc4412af04ec3328c5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0f" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "24a4e7" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b03906fb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3700605703396037001" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9931a6196b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17589816361309556761" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fe9c718f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9458280242444330160" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b772" + }, + { + "_tag": "ByteArray", + "bytearray": "cd86a82c699aa8a7d1" + } + ] + } + } + ] + }, + "cborHex": "bf4a4f33cc0be7b834edd9ffbf1bfb2014282a3366a11b29d5b3e60e39c58aff4a83cc4412af04ec3328c5bf410f4324a4e744b03906fb1b335b3147d4b49189ff459931a6196bd8669f1bf41b94c92835d01980ff44fe9c718f9f1b83428fc4b4fd64b042b77249cd86a82c699aa8a7d1ffff", + "cborBytes": [ + 191, 74, 79, 51, 204, 11, 231, 184, 52, 237, 217, 255, 191, 27, 251, 32, 20, 40, 42, 51, 102, 161, 27, 41, 213, + 179, 230, 14, 57, 197, 138, 255, 74, 131, 204, 68, 18, 175, 4, 236, 51, 40, 197, 191, 65, 15, 67, 36, 164, 231, + 68, 176, 57, 6, 251, 27, 51, 91, 49, 71, 212, 180, 145, 137, 255, 69, 153, 49, 166, 25, 107, 216, 102, 159, 27, + 244, 27, 148, 201, 40, 53, 208, 25, 128, 255, 68, 254, 156, 113, 143, 159, 27, 131, 66, 143, 196, 180, 253, 100, + 176, 66, 183, 114, 73, 205, 134, 168, 44, 105, 154, 168, 167, 209, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3775, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1941024668916365041" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8d1e53b6f770c02d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12861384589412221319" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17103411107098869067" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bb5ad9e749ac58" + }, + { + "_tag": "ByteArray", + "bytearray": "5e328f9387" + }, + { + "_tag": "ByteArray", + "bytearray": "38" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16515965410318550785" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b1aefe7a70307b6f1488d1e53b6f770c02d1bb27cd1243b994187d8669f1bed5b85c8be193d4b9f47bb5ad9e749ac58455e328f938741381be5347f090cad0701ffffff", + "cborBytes": [ + 191, 27, 26, 239, 231, 167, 3, 7, 182, 241, 72, 141, 30, 83, 182, 247, 112, 192, 45, 27, 178, 124, 209, 36, 59, + 153, 65, 135, 216, 102, 159, 27, 237, 91, 133, 200, 190, 25, 61, 75, 159, 71, 187, 90, 217, 231, 73, 172, 88, 69, + 94, 50, 143, 147, 135, 65, 56, 27, 229, 52, 127, 9, 12, 173, 7, 1, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3776, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d2b6d7d92462" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5378822064527878232" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e89f4d47" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6550706939370376318" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12944802524854125728" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13489624947935896692" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6340534259208606006" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14066941223578941698" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10147618586651136872" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15227407803152904642" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14130843503889228257" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf46d2b6d7d92462bf1b4aa56a2b6237a85844e89f4d471b5ae8c94114db8c7e1bb3a52d4fd58284a01bbb34c66b46f764741b57fe1a50ae52d1361bc337d08353b8b9021b8cd39557157e13681bd3529eb7fcf0b1c21bc41ad74c61f421e1ffff", + "cborBytes": [ + 191, 70, 210, 182, 215, 217, 36, 98, 191, 27, 74, 165, 106, 43, 98, 55, 168, 88, 68, 232, 159, 77, 71, 27, 90, + 232, 201, 65, 20, 219, 140, 126, 27, 179, 165, 45, 79, 213, 130, 132, 160, 27, 187, 52, 198, 107, 70, 247, 100, + 116, 27, 87, 254, 26, 80, 174, 82, 209, 54, 27, 195, 55, 208, 131, 83, 184, 185, 2, 27, 140, 211, 149, 87, 21, + 126, 19, 104, 27, 211, 82, 158, 183, 252, 240, 177, 194, 27, 196, 26, 215, 76, 97, 244, 33, 225, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3777, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6720012209843286447" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11658820832074791771" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + } + ] + }, + "cborHex": "bf131b5d4247802dff31af1ba1cc73c693bdfb5b1bfffffffffffffff0ff", + "cborBytes": [ + 191, 19, 27, 93, 66, 71, 128, 45, 255, 49, 175, 27, 161, 204, 115, 198, 147, 189, 251, 91, 27, 255, 255, 255, 255, + 255, 255, 255, 240, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3778, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551607" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6877103255098546783" + } + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff71b5f7060f95bd4da5fff", + "cborBytes": [191, 27, 255, 255, 255, 255, 255, 255, 255, 247, 27, 95, 112, 96, 249, 91, 212, 218, 95, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3779, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5235322278534433435" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3448711326677403065" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64a43e60d7eb4b994cb734" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11485602378628465206" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4264334699504303680" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14935670848569313446" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8710497847260012931" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "24ee8add" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "261ca2a02bca1e6cdfc9" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d87996658a79536" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "586840435751517525" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9676069313630294685" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9119834031331772188" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8331007451846177980" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b48a799dfd8bbca9bbf1b2fdc48adf77905b94b64a43e60d7eb4b994cb7341b9f650e82918802361b3b2df5d0d7537e401bcf462981132188a61b78e1e7a452bce183ff4424ee8add4a261ca2a02bca1e6cdfc9482d87996658a79536d8669f1b0824e04460cdfd559f1b86484dc654fdd29d1b7e9028bb880c871c1b739daf234c6c74bcffffff", + "cborBytes": [ + 191, 27, 72, 167, 153, 223, 216, 187, 202, 155, 191, 27, 47, 220, 72, 173, 247, 121, 5, 185, 75, 100, 164, 62, 96, + 215, 235, 75, 153, 76, 183, 52, 27, 159, 101, 14, 130, 145, 136, 2, 54, 27, 59, 45, 245, 208, 215, 83, 126, 64, + 27, 207, 70, 41, 129, 19, 33, 136, 166, 27, 120, 225, 231, 164, 82, 188, 225, 131, 255, 68, 36, 238, 138, 221, 74, + 38, 28, 162, 160, 43, 202, 30, 108, 223, 201, 72, 45, 135, 153, 102, 88, 167, 149, 54, 216, 102, 159, 27, 8, 36, + 224, 68, 96, 205, 253, 85, 159, 27, 134, 72, 77, 198, 84, 253, 210, 157, 27, 126, 144, 40, 187, 136, 12, 135, 28, + 27, 115, 157, 175, 35, 76, 108, 116, 188, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3780, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5983214805212747262" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5232445403190450531" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1226446807027461700" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10255962675133874111" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b5308a62a379055fe1b489d615f1bcad9631bfffffffffffffff0d8669f1b110536df7cc8ae449f1b8e547fb6f104ffbfffffff", + "cborBytes": [ + 191, 27, 83, 8, 166, 42, 55, 144, 85, 254, 27, 72, 157, 97, 95, 27, 202, 217, 99, 27, 255, 255, 255, 255, 255, + 255, 255, 240, 216, 102, 159, 27, 17, 5, 54, 223, 124, 200, 174, 68, 159, 27, 142, 84, 127, 182, 241, 4, 255, 191, + 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3781, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12246761392859302381" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16605609668139026495" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + } + ] + }, + "cborHex": "bf1ba9f53c99c658c9ed801be672fa034c38083f1bfffffffffffffffdff", + "cborBytes": [ + 191, 27, 169, 245, 60, 153, 198, 88, 201, 237, 128, 27, 230, 114, 250, 3, 76, 56, 8, 63, 27, 255, 255, 255, 255, + 255, 255, 255, 253, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3782, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "54dbaea83bf5176f65b0b8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7141475cc25cfaff5e92" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "60b1d7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3bef" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "64dc114746943843644bc9c6" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a2d5b969f134" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9520279087824251301" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cecc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04a9abcb" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df3d140f3190adb7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ea12301b0016621fd83833" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12636910023179815275" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "219f6fe8e448" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fafefe" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9090228065127165867" + } + }, + { + "_tag": "ByteArray", + "bytearray": "48b1fbb0528c077cb2" + } + ] + } + } + ] + }, + "cborHex": "bf4b54dbaea83bf5176f65b0b8bf41074a7141475cc25cfaff5e92ff4360b1d7bf423bef4c64dc114746943843644bc9c646a2d5b969f1341b841ed363c85829a542cecc4404a9abcbff48df3d140f3190adb70e4bea12301b0016621fd83833d8669f1baf5f52b67e34c96b9f46219f6fe8e448ffff43fafefe9f1b7e26fa435d30efab4948b1fbb0528c077cb2ffff", + "cborBytes": [ + 191, 75, 84, 219, 174, 168, 59, 245, 23, 111, 101, 176, 184, 191, 65, 7, 74, 113, 65, 71, 92, 194, 92, 250, 255, + 94, 146, 255, 67, 96, 177, 215, 191, 66, 59, 239, 76, 100, 220, 17, 71, 70, 148, 56, 67, 100, 75, 201, 198, 70, + 162, 213, 185, 105, 241, 52, 27, 132, 30, 211, 99, 200, 88, 41, 165, 66, 206, 204, 68, 4, 169, 171, 203, 255, 72, + 223, 61, 20, 15, 49, 144, 173, 183, 14, 75, 234, 18, 48, 27, 0, 22, 98, 31, 216, 56, 51, 216, 102, 159, 27, 175, + 95, 82, 182, 126, 52, 201, 107, 159, 70, 33, 159, 111, 232, 228, 72, 255, 255, 67, 250, 254, 254, 159, 27, 126, + 38, 250, 67, 93, 48, 239, 171, 73, 72, 177, 251, 176, 82, 140, 7, 124, 178, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3783, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4004342153019916376" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2353946107771967737" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1918ac7199907ba5d9" + } + ] + } + } + ] + }, + "cborHex": "bf1b379247f8e5e000589f1b20aae583662958f9491918ac7199907ba5d9ffff", + "cborBytes": [ + 191, 27, 55, 146, 71, 248, 229, 224, 0, 88, 159, 27, 32, 170, 229, 131, 102, 41, 88, 249, 73, 25, 24, 172, 113, + 153, 144, 123, 165, 217, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3784, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "df30450c364eedbbb8c7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14444158854503999633" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "dd2839d02f6ce8" + }, + { + "_tag": "ByteArray", + "bytearray": "a760056f946da076" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7509323664928070481" + } + } + ] + } + } + ] + }, + "cborHex": "bf4adf30450c364eedbbb8c7d8669f1bc873f5f3220628919f47dd2839d02f6ce848a760056f946da0761b68367a164f78db51ffffff", + "cborBytes": [ + 191, 74, 223, 48, 69, 12, 54, 78, 237, 187, 184, 199, 216, 102, 159, 27, 200, 115, 245, 243, 34, 6, 40, 145, 159, + 71, 221, 40, 57, 208, 47, 108, 232, 72, 167, 96, 5, 111, 148, 109, 160, 118, 27, 104, 54, 122, 22, 79, 120, 219, + 81, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3785, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1b01a5903a4b1df8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13638099470313513049" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15244850104431582726" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7199152722104143055" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "48919843c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "63a093ffb330fc1aa27591" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b85c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7338813829653385274" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8c627d278092e61" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4120857043050013964" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "904004744363189529" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec9c02cb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3784189341860521385" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12827190220258482408" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee878a469c1a3ec508dfdbbc" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "8f0d2f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13214786653755239027" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf481b01a5903a4b1df8d8669f1bbd444335e37ae0599f1bd390966638b89e061b63e887420ccdcccfffff4548919843c54b63a093ffb330fc1aa2759142b85cd8669f1b65d8b44b9d36d03a80ff48c8c627d278092e61bf1b393039a5bd29a50c1b0c8bab867f092519ff44ec9c02cbd8669f1b348424282c6a65a99f1bb203558b40df18e8ffff4cee878a469c1a3ec508dfdbbcbf438f0d2f1bb7645a7257a76a73ffff", + "cborBytes": [ + 191, 72, 27, 1, 165, 144, 58, 75, 29, 248, 216, 102, 159, 27, 189, 68, 67, 53, 227, 122, 224, 89, 159, 27, 211, + 144, 150, 102, 56, 184, 158, 6, 27, 99, 232, 135, 66, 12, 205, 204, 207, 255, 255, 69, 72, 145, 152, 67, 197, 75, + 99, 160, 147, 255, 179, 48, 252, 26, 162, 117, 145, 66, 184, 92, 216, 102, 159, 27, 101, 216, 180, 75, 157, 54, + 208, 58, 128, 255, 72, 200, 198, 39, 210, 120, 9, 46, 97, 191, 27, 57, 48, 57, 165, 189, 41, 165, 12, 27, 12, 139, + 171, 134, 127, 9, 37, 25, 255, 68, 236, 156, 2, 203, 216, 102, 159, 27, 52, 132, 36, 40, 44, 106, 101, 169, 159, + 27, 178, 3, 85, 139, 64, 223, 24, 232, 255, 255, 76, 238, 135, 138, 70, 156, 26, 62, 197, 8, 223, 219, 188, 191, + 67, 143, 13, 47, 27, 183, 100, 90, 114, 87, 167, 106, 115, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3786, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6042464562357218657" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6bfb4b191853cc" + }, + { + "_tag": "ByteArray", + "bytearray": "64b584efa1" + }, + { + "_tag": "ByteArray", + "bytearray": "fa" + }, + { + "_tag": "ByteArray", + "bytearray": "7c1c42d6297e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15832449266578627978" + } + } + ] + } + } + ] + }, + "cborHex": "bf07a01b53db25814f302d619f476bfb4b191853cc4564b584efa141fa467c1c42d6297e1bdbb828b95ad01d8affff", + "cborBytes": [ + 191, 7, 160, 27, 83, 219, 37, 129, 79, 48, 45, 97, 159, 71, 107, 251, 75, 25, 24, 83, 204, 69, 100, 181, 132, 239, + 161, 65, 250, 70, 124, 28, 66, 214, 41, 126, 27, 219, 184, 40, 185, 90, 208, 29, 138, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3787, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "20" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "010205f5005c2f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "24fcfefc" + }, + { + "_tag": "ByteArray", + "bytearray": "bb2402e390d3" + } + ] + } + } + ] + }, + "cborHex": "bf07d9050d9f47010205f5005c2f07ff1bffffffffffffffeed905029f4424fcfefc46bb2402e390d3ffff", + "cborBytes": [ + 191, 7, 217, 5, 13, 159, 71, 1, 2, 5, 245, 0, 92, 47, 7, 255, 27, 255, 255, 255, 255, 255, 255, 255, 238, 217, 5, + 2, 159, 68, 36, 252, 254, 252, 70, 187, 36, 2, 227, 144, 211, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3788, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2949670164191627431" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17096168482059251628" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8654676065227036653" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16238185588526866953" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0db2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "343615187066695576" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11805375466972597712" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b28ef5562e535c8a7d8669f1bed41caa7b15eefac9f1b781b9606e1eed7ed1be1599fc25902e209420db21b04c4c4312c8a2f98ffff1ba3d51e708d034dd0a0ff", + "cborBytes": [ + 191, 27, 40, 239, 85, 98, 229, 53, 200, 167, 216, 102, 159, 27, 237, 65, 202, 167, 177, 94, 239, 172, 159, 27, + 120, 27, 150, 6, 225, 238, 215, 237, 27, 225, 89, 159, 194, 89, 2, 226, 9, 66, 13, 178, 27, 4, 196, 196, 49, 44, + 138, 47, 152, 255, 255, 27, 163, 213, 30, 112, 141, 3, 77, 208, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3789, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10564146958975514623" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bffd06060074fbe51e33a4" + } + } + ] + }, + "cborHex": "bf1b929b63b01cc237ff4bbffd06060074fbe51e33a4ff", + "cborBytes": [191, 27, 146, 155, 99, 176, 28, 194, 55, 255, 75, 191, 253, 6, 6, 0, 116, 251, 229, 30, 51, 164, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3790, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8996831957246384426" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b205cabfcbb5a7bce6" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9908783374687451501" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4918347481530907467" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1659893900515287120" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17091727134006278031" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2443105135689800721" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12980266507557616467" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b7cdb2aff738d992a49b205cabfcbb5a7bce61b898311faf48ab96d9f1b44417af9d6963b4b1b170920b5410d2050ff1bed320345c459778fbf1b21e7a72d41b91c111bb4232b9dc0df3b53ffff", + "cborBytes": [ + 191, 27, 124, 219, 42, 255, 115, 141, 153, 42, 73, 178, 5, 202, 191, 203, 181, 167, 188, 230, 27, 137, 131, 17, + 250, 244, 138, 185, 109, 159, 27, 68, 65, 122, 249, 214, 150, 59, 75, 27, 23, 9, 32, 181, 65, 13, 32, 80, 255, 27, + 237, 50, 3, 69, 196, 89, 119, 143, 191, 27, 33, 231, 167, 45, 65, 185, 28, 17, 27, 180, 35, 43, 157, 192, 223, 59, + 83, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3791, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7742802056261292154" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9dbb317f81f95e0501" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9a1a353" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "df80b6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a0b9771a" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13576190890159753828" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9037008190267929925" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e5544711ff799b4fab377f54" + }, + { + "_tag": "ByteArray", + "bytearray": "c0c8159af3b9d6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8429651504180945033" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15396799723824536011" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15945482900213214655" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b6b73f572719e507abf499dbb317f81f95e050144b9a1a35343df80b644a0b9771aff1bbc6851af52ddca649f1b7d69e711a53735454ce5544711ff799b4fab377f5447c0c8159af3b9d61b74fc23617f0ae0891bd5ac6bc5e864d9cbff1bdd49bc3707462dbf80ff", + "cborBytes": [ + 191, 27, 107, 115, 245, 114, 113, 158, 80, 122, 191, 73, 157, 187, 49, 127, 129, 249, 94, 5, 1, 68, 185, 161, 163, + 83, 67, 223, 128, 182, 68, 160, 185, 119, 26, 255, 27, 188, 104, 81, 175, 82, 221, 202, 100, 159, 27, 125, 105, + 231, 17, 165, 55, 53, 69, 76, 229, 84, 71, 17, 255, 121, 155, 79, 171, 55, 127, 84, 71, 192, 200, 21, 154, 243, + 185, 214, 27, 116, 252, 35, 97, 127, 10, 224, 137, 27, 213, 172, 107, 197, 232, 100, 217, 203, 255, 27, 221, 73, + 188, 55, 7, 70, 45, 191, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3792, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12394785134775612186" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551598" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "116c1206691d2ec450" + }, + { + "_tag": "ByteArray", + "bytearray": "163f4204bc68ecb64de644" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3281971792254922985" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bac031f68e197b31ad8669f1bffffffffffffffee9f49116c1206691d2ec4504b163f4204bc68ecb64de6441b2d8be7f4d834f0e9ffffff", + "cborBytes": [ + 191, 27, 172, 3, 31, 104, 225, 151, 179, 26, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 238, 159, 73, + 17, 108, 18, 6, 105, 29, 46, 196, 80, 75, 22, 63, 66, 4, 188, 104, 236, 182, 77, 230, 68, 27, 45, 139, 231, 244, + 216, 52, 240, 233, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3793, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2538025131424913712" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11716159281674013456" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10998150908483076530" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14283630606213005879" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "117e23c2e63d9f204140ac" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "234829874835445494" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "168d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b60b3cd804c365a2d4ddd2" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2338e068f5989930a01ba29828cab4134b10bf1b98a147fb064601b21bc639a65bc23942374b117e23c2e63d9f204140ac1b03424886e83756f642168d4bb60b3cd804c365a2d4ddd2ffff", + "cborBytes": [ + 191, 27, 35, 56, 224, 104, 245, 152, 153, 48, 160, 27, 162, 152, 40, 202, 180, 19, 75, 16, 191, 27, 152, 161, 71, + 251, 6, 70, 1, 178, 27, 198, 57, 166, 91, 194, 57, 66, 55, 75, 17, 126, 35, 194, 230, 61, 159, 32, 65, 64, 172, + 27, 3, 66, 72, 134, 232, 55, 86, 246, 66, 22, 141, 75, 182, 11, 60, 216, 4, 195, 101, 162, 212, 221, 210, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3794, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2d2d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cdda71ed9bc69899675d08c4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3664fbf6c4e33eba4222" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "92b611e39f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69cd10a54e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1172364788825208711" + } + } + } + ] + }, + "cborHex": "bf422d2d4ccdda71ed9bc69899675d08c44a3664fbf6c4e33eba42224592b611e39f4569cd10a54e1b10451390611a3787ff", + "cborBytes": [ + 191, 66, 45, 45, 76, 205, 218, 113, 237, 155, 198, 152, 153, 103, 93, 8, 196, 74, 54, 100, 251, 246, 196, 227, 62, + 186, 66, 34, 69, 146, 182, 17, 227, 159, 69, 105, 205, 16, 165, 78, 27, 16, 69, 19, 144, 97, 26, 55, 135, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3795, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "0a380e2275" + }, + { + "_tag": "ByteArray", + "bytearray": "85e21e8461" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11696217012996277464" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7422490684982508655" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1e5be57c2e323484" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18027131977161616816" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17522953684885166176" + } + } + } + ] + }, + "cborHex": "bf0b9f450a380e22754585e21e84611ba2514f67738604d81b6701fbf3b3073c6f481e5be57c2e323484ff1bfa2d3d0579cdadb01bf32e09892b33d860ff", + "cborBytes": [ + 191, 11, 159, 69, 10, 56, 14, 34, 117, 69, 133, 226, 30, 132, 97, 27, 162, 81, 79, 103, 115, 134, 4, 216, 27, 103, + 1, 251, 243, 179, 7, 60, 111, 72, 30, 91, 229, 124, 46, 50, 52, 132, 255, 27, 250, 45, 61, 5, 121, 205, 173, 176, + 27, 243, 46, 9, 137, 43, 51, 216, 96, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3796, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15763570404829027715" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "bd943b2cffef89a21b89b0" + }, + { + "_tag": "ByteArray", + "bytearray": "4274" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5913032340918015315" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16460271296464734039" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "df82cc99da09204353834dfc" + } + } + ] + }, + "cborHex": "bf1bdac373c3a3b1dd839f4bbd943b2cffef89a21b89b04242741b520f4f95e1d09553ff1be46ea188ac56c7574cdf82cc99da09204353834dfcff", + "cborBytes": [ + 191, 27, 218, 195, 115, 195, 163, 177, 221, 131, 159, 75, 189, 148, 59, 44, 255, 239, 137, 162, 27, 137, 176, 66, + 66, 116, 27, 82, 15, 79, 149, 225, 208, 149, 83, 255, 27, 228, 110, 161, 136, 172, 86, 199, 87, 76, 223, 130, 204, + 153, 218, 9, 32, 67, 83, 131, 77, 252, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3797, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14978911459675999027" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6720cdc237e4265c576853" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "97461e36e4" + } + } + ] + }, + "cborHex": "bf1bcfdfc89c64040b33024b6720cdc237e4265c5768534597461e36e4ff", + "cborBytes": [ + 191, 27, 207, 223, 200, 156, 100, 4, 11, 51, 2, 75, 103, 32, 205, 194, 55, 228, 38, 92, 87, 104, 83, 69, 151, 70, + 30, 54, 228, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3798, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4351723874810145247" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16542279585359395485" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5111007387226929084" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17943151281854213960" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "733291508194448584" + } + }, + { + "_tag": "ByteArray", + "bytearray": "79c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18076591068614077014" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2103701509718907834" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4163468788721911337" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b3c646dcec6a529df1be591fba35c8afa9d1b46edf223b00ef7bcd8669f1bf902e1062203ef489f1b0a2d2cbdd6bd94c84279c41bfadcf3cd92bdaa561b1d31d960903f9bba1b39c79ccde9320629ffffff", + "cborBytes": [ + 191, 27, 60, 100, 109, 206, 198, 165, 41, 223, 27, 229, 145, 251, 163, 92, 138, 250, 157, 27, 70, 237, 242, 35, + 176, 14, 247, 188, 216, 102, 159, 27, 249, 2, 225, 6, 34, 3, 239, 72, 159, 27, 10, 45, 44, 189, 214, 189, 148, + 200, 66, 121, 196, 27, 250, 220, 243, 205, 146, 189, 170, 86, 27, 29, 49, 217, 96, 144, 63, 155, 186, 27, 57, 199, + 156, 205, 233, 50, 6, 41, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3799, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cfd34cfc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5246715198022908572" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fefd839708fda1dc02" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8e88fc07aff8f9020b07" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8551028913805116269" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2147778205544879998" + } + } + ] + } + } + ] + }, + "cborHex": "bf1444cfd34cfc1b48d013ac9fcc7a9c49fefd839708fda1dc024a8e88fc07aff8f9020b07d8669f1bfffffffffffffffc9f1b76ab5b7de772c36d1b1dce70e605d4177effffff", + "cborBytes": [ + 191, 20, 68, 207, 211, 76, 252, 27, 72, 208, 19, 172, 159, 204, 122, 156, 73, 254, 253, 131, 151, 8, 253, 161, + 220, 2, 74, 142, 136, 252, 7, 175, 248, 249, 2, 11, 7, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, + 159, 27, 118, 171, 91, 125, 231, 114, 195, 109, 27, 29, 206, 112, 230, 5, 212, 23, 126, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3800, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17843762657883757866" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02e543e0" + } + } + ] + }, + "cborHex": "bf1bf7a1c798d78a9d2a4402e543e0ff", + "cborBytes": [191, 27, 247, 161, 199, 152, 215, 138, 157, 42, 68, 2, 229, 67, 224, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3801, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11516648745609367869" + } + } + } + ] + }, + "cborHex": "bf081b9fd35b042cfe913dff", + "cborBytes": [191, 8, 27, 159, 211, 91, 4, 44, 254, 145, 61, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3802, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8533013853062821615" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "aaf3de98b8feeaff5198bdaf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17907205767456136225" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5b" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4294655201071868047" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a50aad9659cd25a1d2f6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12184146041003528106" + } + } + } + ] + }, + "cborHex": "bf1b766b5ae3b74bf6efbf4caaf3de98b8feeaff5198bdaf1bf8832cc4e10c9c21ff415b1b3b99ae26bcac288f4aa50aad9659cd25a1d2f61ba916c845197f4faaff", + "cborBytes": [ + 191, 27, 118, 107, 90, 227, 183, 75, 246, 239, 191, 76, 170, 243, 222, 152, 184, 254, 234, 255, 81, 152, 189, 175, + 27, 248, 131, 44, 196, 225, 12, 156, 33, 255, 65, 91, 27, 59, 153, 174, 38, 188, 172, 40, 143, 74, 165, 10, 173, + 150, 89, 205, 37, 161, 210, 246, 27, 169, 22, 200, 69, 25, 127, 79, 170, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3803, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6893415284638451773" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8139c8158dfbcb053fbe1e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13542298039485385933" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "09b0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15232554111874613934" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5688116416741668928" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5010498996835115434" + } + }, + { + "_tag": "ByteArray", + "bytearray": "948e96e5" + } + ] + } + } + ] + }, + "cborHex": "bf1b5faa54adb21f883d4b8139c8158dfbcb053fbe1e1bbbefe85115fecccd4209b01bd364e7425c33c2aed8669f1b4ef03fbe7cf478409f1b4588de4a75cee1aa44948e96e5ffffff", + "cborBytes": [ + 191, 27, 95, 170, 84, 173, 178, 31, 136, 61, 75, 129, 57, 200, 21, 141, 251, 203, 5, 63, 190, 30, 27, 187, 239, + 232, 81, 21, 254, 204, 205, 66, 9, 176, 27, 211, 100, 231, 66, 92, 51, 194, 174, 216, 102, 159, 27, 78, 240, 63, + 190, 124, 244, 120, 64, 159, 27, 69, 136, 222, 74, 117, 206, 225, 170, 68, 148, 142, 150, 229, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3804, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1712685392349721173" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2820099780202275196" + } + } + } + ] + }, + "cborHex": "bf1b17c4ae4a470172551b272301cefe1d217cff", + "cborBytes": [191, 27, 23, 196, 174, 74, 71, 1, 114, 85, 27, 39, 35, 1, 206, 254, 29, 33, 124, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3805, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e6f38fc1597b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + { + "_tag": "ByteArray", + "bytearray": "03cf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18394596046148634269" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2692e7" + }, + { + "_tag": "ByteArray", + "bytearray": "2009551a23aa82" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4729068186314591483" + } + }, + { + "_tag": "ByteArray", + "bytearray": "db2b1afe1edf" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8629210256959079835" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c5f148" + }, + { + "_tag": "ByteArray", + "bytearray": "fff976" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + } + } + ] + }, + "cborHex": "bf019f46e6f38fc1597b064203cf111bff46bba52d7e869dff0c9f432692e7472009551a23aa821b41a10675b3e1ccfb46db2b1afe1edfff1b77c11d025a34059b9f43c5f14843fff976ff1bfffffffffffffff51bfffffffffffffff0ff", + "cborBytes": [ + 191, 1, 159, 70, 230, 243, 143, 193, 89, 123, 6, 66, 3, 207, 17, 27, 255, 70, 187, 165, 45, 126, 134, 157, 255, + 12, 159, 67, 38, 146, 231, 71, 32, 9, 85, 26, 35, 170, 130, 27, 65, 161, 6, 117, 179, 225, 204, 251, 70, 219, 43, + 26, 254, 30, 223, 255, 27, 119, 193, 29, 2, 90, 52, 5, 155, 159, 67, 197, 241, 72, 67, 255, 249, 118, 255, 27, + 255, 255, 255, 255, 255, 255, 255, 245, 27, 255, 255, 255, 255, 255, 255, 255, 240, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3806, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "37c8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11038945336808136229" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ac6a4f699ab2c838a4" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c26" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9909120275042792300" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e1f24f18" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6593424579022305111" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6462404f42c8" + }, + { + "_tag": "ByteArray", + "bytearray": "9e58c5a6" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6ca0863a75" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9c30dfc2" + } + } + ] + }, + "cborHex": "bf4237c89f1b9932364c07675e2549ac6a4f699ab2c838a4ff425c26d8669f1b89844463ae8bf36c9f44e1f24f181b5b808cb89df43757466462404f42c8449e58c5a6ffff456ca0863a75449c30dfc2ff", + "cborBytes": [ + 191, 66, 55, 200, 159, 27, 153, 50, 54, 76, 7, 103, 94, 37, 73, 172, 106, 79, 105, 154, 178, 200, 56, 164, 255, + 66, 92, 38, 216, 102, 159, 27, 137, 132, 68, 99, 174, 139, 243, 108, 159, 68, 225, 242, 79, 24, 27, 91, 128, 140, + 184, 157, 244, 55, 87, 70, 100, 98, 64, 79, 66, 200, 68, 158, 88, 197, 166, 255, 255, 69, 108, 160, 134, 58, 117, + 68, 156, 48, 223, 194, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3807, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15562446421371128987" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "361123603903238675" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eb3fdecfb0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2049960015567940253" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4174666429648461698" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9760821020474834768" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa9e" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15746823486695178462" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2255101300254321596" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5064465788877699954" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2613979617129292734" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "84ce70" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13252890675469675989" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7d89138d3ac56dcf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13914799768553656859" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "65be20c7c8a2c6" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bd7f8ea911de00c9bbf1b0502f80122a9521345eb3fdecfb01b1c72ebc5e3ae6a9d1b39ef64ffdaf1df821b87756700c9917f5042fa9eff1bda87f487e93e80debf1b1f4bbaaf3e2e2bbc1b464898cd632c7b721b2446b89cc11a63be4384ce701bb7ebb9da3e74edd5487d89138d3ac56dcf1bc11b4caa6d54121b4765be20c7c8a2c6ffff", + "cborBytes": [ + 191, 27, 215, 248, 234, 145, 29, 224, 12, 155, 191, 27, 5, 2, 248, 1, 34, 169, 82, 19, 69, 235, 63, 222, 207, 176, + 27, 28, 114, 235, 197, 227, 174, 106, 157, 27, 57, 239, 100, 255, 218, 241, 223, 130, 27, 135, 117, 103, 0, 201, + 145, 127, 80, 66, 250, 158, 255, 27, 218, 135, 244, 135, 233, 62, 128, 222, 191, 27, 31, 75, 186, 175, 62, 46, 43, + 188, 27, 70, 72, 152, 205, 99, 44, 123, 114, 27, 36, 70, 184, 156, 193, 26, 99, 190, 67, 132, 206, 112, 27, 183, + 235, 185, 218, 62, 116, 237, 213, 72, 125, 137, 19, 141, 58, 197, 109, 207, 27, 193, 27, 76, 170, 109, 84, 18, 27, + 71, 101, 190, 32, 199, 200, 162, 198, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3808, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "560606" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa" + } + } + ] + }, + "cborHex": "bf09064356060641faff", + "cborBytes": [191, 9, 6, 67, 86, 6, 6, 65, 250, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3809, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2180543166093740026" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10291982246397217303" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9859237638622329042" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2941311188261410199" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12939756387388260347" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1492094618436099275" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f60fb" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3672201717996933962" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13347515449304668898" + } + }, + { + "_tag": "ByteArray", + "bytearray": "796f0a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6279415782127546136" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11995638080320358749" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7106553722223682848" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12482547076826646196" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9475674332212281022" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "08edc2bfcbf2ab3202" + } + } + ] + }, + "cborHex": "bf1b1e42d874e06c47fabf1b8ed47752e7220a171b88d30c65563eb8d2ff1b28d1a2f1263415979f1bb3933fe0665e7ffb1b14b4fc266727dccb435f60fbff1b32f64801a0c9534a9f1bb93be6953dd7dae243796f0a1b5724f76252b1af181ba679114747a4c95dff1b629f8cf54e5f65209f1bad3aea6e5657c6b4ff1b83805b99d2ccbebe4908edc2bfcbf2ab3202ff", + "cborBytes": [ + 191, 27, 30, 66, 216, 116, 224, 108, 71, 250, 191, 27, 142, 212, 119, 82, 231, 34, 10, 23, 27, 136, 211, 12, 101, + 86, 62, 184, 210, 255, 27, 40, 209, 162, 241, 38, 52, 21, 151, 159, 27, 179, 147, 63, 224, 102, 94, 127, 251, 27, + 20, 180, 252, 38, 103, 39, 220, 203, 67, 95, 96, 251, 255, 27, 50, 246, 72, 1, 160, 201, 83, 74, 159, 27, 185, 59, + 230, 149, 61, 215, 218, 226, 67, 121, 111, 10, 27, 87, 36, 247, 98, 82, 177, 175, 24, 27, 166, 121, 17, 71, 71, + 164, 201, 93, 255, 27, 98, 159, 140, 245, 78, 95, 101, 32, 159, 27, 173, 58, 234, 110, 86, 87, 198, 180, 255, 27, + 131, 128, 91, 153, 210, 204, 190, 190, 73, 8, 237, 194, 191, 203, 242, 171, 50, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3810, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "497772a2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "40" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12705063271786210971" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6907513526015382913" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "72060675036105b674c9" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9202122649556459259" + } + } + } + ] + }, + "cborHex": "bf44497772a2bf0441401bb05173bb3bade69b417a41051b5fdc6af44f5a5581ff4a72060675036105b674c91b7fb481cb7a639efbff", + "cborBytes": [ + 191, 68, 73, 119, 114, 162, 191, 4, 65, 64, 27, 176, 81, 115, 187, 59, 173, 230, 155, 65, 122, 65, 5, 27, 95, 220, + 106, 244, 79, 90, 85, 129, 255, 74, 114, 6, 6, 117, 3, 97, 5, 182, 116, 201, 27, 127, 180, 129, 203, 122, 99, 158, + 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3811, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1846836bb9c99a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9a376ba370b77cf5e1550" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d6ed4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11514532701753199068" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2640dd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3febdb26a1b24e8" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "626c6eff1140d0d2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11948759523153375910" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b6718" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2572185035118093809" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c37" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3284697663628124096" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "110fab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4390232261463479621" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c82f1184782344" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7b25fa92d81c23774" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11804652616326375684" + } + } + } + ] + }, + "cborHex": "bf471846836bb9c99a4bb9a376ba370b77cf5e1550431d6ed41b9fcbd67c529e49dc432640dd48c3febdb26a1b24e848626c6eff1140d0d21ba5d2857aa41f72a6439b6718bf1b23b23ca952ca25f1423c371b2d95971f3b1c1fc043110fab1b3ced3cfb39fd954547c82f1184782344ff49d7b25fa92d81c237741ba3d28d02c504e904ff", + "cborBytes": [ + 191, 71, 24, 70, 131, 107, 185, 201, 154, 75, 185, 163, 118, 186, 55, 11, 119, 207, 94, 21, 80, 67, 29, 110, 212, + 27, 159, 203, 214, 124, 82, 158, 73, 220, 67, 38, 64, 221, 72, 195, 254, 189, 178, 106, 27, 36, 232, 72, 98, 108, + 110, 255, 17, 64, 208, 210, 27, 165, 210, 133, 122, 164, 31, 114, 166, 67, 155, 103, 24, 191, 27, 35, 178, 60, + 169, 82, 202, 37, 241, 66, 60, 55, 27, 45, 149, 151, 31, 59, 28, 31, 192, 67, 17, 15, 171, 27, 60, 237, 60, 251, + 57, 253, 149, 69, 71, 200, 47, 17, 132, 120, 35, 68, 255, 73, 215, 178, 95, 169, 45, 129, 194, 55, 116, 27, 163, + 210, 141, 2, 197, 4, 233, 4, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3812, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "189832077647517803" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12335035936130682414" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6153053181348209922" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13808240975922564356" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17067996192569656995" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3989905779433220107" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10105886583528354895" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8443294061872514955" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11764541113363812254" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6858095156427203315" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11275775053386683550" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14992642551233207110" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7394881797849801381" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17748470536731844667" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15562691345006957447" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14373992269797690774" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7202078100710238556" + } + } + } + ] + }, + "cborHex": "bf1b02a26b44d327986b1bab2ed9d480bf4e2e1b55640944a658e5029f1bbfa0ba0226db8d041becddb41b65d586a31b375efe2abe65280b1b8c3f524def97f44fff1b752c9b36fc13878bd8669f1ba3440bcfb7874f9e9f1b5f2cd93582aba2f3ffff1b9c7b99ab6053149ed8669f1bd01090f746a95b469f1b669fe5d0bcd6e2a51bf64f3beaf063603b1bd7f9c952d82f9387ffff1bc77aadd00d808d961b63f2ebdfd574295cff", + "cborBytes": [ + 191, 27, 2, 162, 107, 68, 211, 39, 152, 107, 27, 171, 46, 217, 212, 128, 191, 78, 46, 27, 85, 100, 9, 68, 166, 88, + 229, 2, 159, 27, 191, 160, 186, 2, 38, 219, 141, 4, 27, 236, 221, 180, 27, 101, 213, 134, 163, 27, 55, 94, 254, + 42, 190, 101, 40, 11, 27, 140, 63, 82, 77, 239, 151, 244, 79, 255, 27, 117, 44, 155, 54, 252, 19, 135, 139, 216, + 102, 159, 27, 163, 68, 11, 207, 183, 135, 79, 158, 159, 27, 95, 44, 217, 53, 130, 171, 162, 243, 255, 255, 27, + 156, 123, 153, 171, 96, 83, 20, 158, 216, 102, 159, 27, 208, 16, 144, 247, 70, 169, 91, 70, 159, 27, 102, 159, + 229, 208, 188, 214, 226, 165, 27, 246, 79, 59, 234, 240, 99, 96, 59, 27, 215, 249, 201, 82, 216, 47, 147, 135, + 255, 255, 27, 199, 122, 173, 208, 13, 128, 141, 150, 27, 99, 242, 235, 223, 213, 116, 41, 92, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3813, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2146377828926946798" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13101698282814304853" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "fd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6769135084631065198" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2b23a1" + } + } + ] + }, + "cborHex": "bf1b1dc977436ef6fdeed8669f1bb5d2952c257df2559f41fd0affff1b5df0cc7ebc11826e432b23a1ff", + "cborBytes": [ + 191, 27, 29, 201, 119, 67, 110, 246, 253, 238, 216, 102, 159, 27, 181, 210, 149, 44, 37, 125, 242, 85, 159, 65, + 253, 10, 255, 255, 27, 93, 240, 204, 126, 188, 17, 130, 110, 67, 43, 35, 161, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3814, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1837244187042212185" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1071307620024011793" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17690530400163243402" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3329735697967828709" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5498205551003686246" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3622188121142934100" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7824763396569105103" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8023944540861115404" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15242218217024002243" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10232682262481991328" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10471776931869168054" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6670015205107582152" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7805035490890868479" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10443510549072491519" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8648929112338500965" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4924504123673273907" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17256962411247865686" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a9d44d63b714" + } + ] + } + } + ] + }, + "cborHex": "bf1b197f33da9e4d6959bf1b0ede0c9ab8b34c111bf58163aba5faa58a1b2e3598f9c14f4ee51b4c4d8cd161a7d5661b324498e7ae5d3a541b6c9724da0ffb02cf1b6f5ac70c17762c0c1bd3873cb62eb418c31b8e01ca4d7aadf6a041fd1b915339a33f3111b64154ff1b5c90a77d62e444c8801b6c510e6d15dde6ffd8669f1b90eecd832582b3ff80ff1b78072b3424788d65d8669f1b44575a68ca7de6339f1bef7d0be1b8b28f5646a9d44d63b714ffffff", + "cborBytes": [ + 191, 27, 25, 127, 51, 218, 158, 77, 105, 89, 191, 27, 14, 222, 12, 154, 184, 179, 76, 17, 27, 245, 129, 99, 171, + 165, 250, 165, 138, 27, 46, 53, 152, 249, 193, 79, 78, 229, 27, 76, 77, 140, 209, 97, 167, 213, 102, 27, 50, 68, + 152, 231, 174, 93, 58, 84, 27, 108, 151, 36, 218, 15, 251, 2, 207, 27, 111, 90, 199, 12, 23, 118, 44, 12, 27, 211, + 135, 60, 182, 46, 180, 24, 195, 27, 142, 1, 202, 77, 122, 173, 246, 160, 65, 253, 27, 145, 83, 57, 163, 63, 49, + 17, 182, 65, 84, 255, 27, 92, 144, 167, 125, 98, 228, 68, 200, 128, 27, 108, 81, 14, 109, 21, 221, 230, 255, 216, + 102, 159, 27, 144, 238, 205, 131, 37, 130, 179, 255, 128, 255, 27, 120, 7, 43, 52, 36, 120, 141, 101, 216, 102, + 159, 27, 68, 87, 90, 104, 202, 125, 230, 51, 159, 27, 239, 125, 11, 225, 184, 178, 143, 86, 70, 169, 212, 77, 99, + 183, 20, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3815, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0912e74d7d27" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1738777208274741543" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "99c8f23ae5a8895efb12" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8047443997506216497" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21c4a441f08ec6a05eef9466" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9a85" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb776495a21e819f20" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1775b0ae4075af95cf4380a2" + } + } + ] + } + } + ] + }, + "cborHex": "bf460912e74d7d271b182160a892c2e9274a99c8f23ae5a8895efb12bf1b6fae43adb535223141aa4c21c4a441f08ec6a05eef9466429a8549cb776495a21e819f204c1775b0ae4075af95cf4380a2ffff", + "cborBytes": [ + 191, 70, 9, 18, 231, 77, 125, 39, 27, 24, 33, 96, 168, 146, 194, 233, 39, 74, 153, 200, 242, 58, 229, 168, 137, + 94, 251, 18, 191, 27, 111, 174, 67, 173, 181, 53, 34, 49, 65, 170, 76, 33, 196, 164, 65, 240, 142, 198, 160, 94, + 239, 148, 102, 66, 154, 133, 73, 203, 119, 100, 149, 162, 30, 129, 159, 32, 76, 23, 117, 176, 174, 64, 117, 175, + 149, 207, 67, 128, 162, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3816, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2491847215414106004" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6760018972113286423" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "18" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6976484009568302538" + } + }, + { + "_tag": "ByteArray", + "bytearray": "57bfd6a3c8a7ab" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4134204526445126135" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10593911031118742437" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13611846139770764610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c09b6dcb6c8e26a50c08868" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16579759703309936214" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4881252061742007861" + } + } + } + ] + }, + "cborHex": "bf1b2294d1d70d4dd794d8669f1b5dd0697063b6b5179f41181b60d1733e6382f5ca4757bfd6a3c8a7abffff1b395fa51ce392e1f71b930521f42fecc3a51bbce6fdf20a4efd424c3c09b6dcb6c8e26a50c088681be617239b591fe6561b43bdb0e35f468635ff", + "cborBytes": [ + 191, 27, 34, 148, 209, 215, 13, 77, 215, 148, 216, 102, 159, 27, 93, 208, 105, 112, 99, 182, 181, 23, 159, 65, 24, + 27, 96, 209, 115, 62, 99, 130, 245, 202, 71, 87, 191, 214, 163, 200, 167, 171, 255, 255, 27, 57, 95, 165, 28, 227, + 146, 225, 247, 27, 147, 5, 33, 244, 47, 236, 195, 165, 27, 188, 230, 253, 242, 10, 78, 253, 66, 76, 60, 9, 182, + 220, 182, 200, 226, 106, 80, 192, 136, 104, 27, 230, 23, 35, 155, 89, 31, 230, 86, 27, 67, 189, 176, 227, 95, 70, + 134, 53, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3817, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "628d22947b5f79021466e6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4221225747455605671" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "830604" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14230558530839654110" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2049903014454167128" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5181724498220447016" + } + } + ] + } + } + ] + }, + "cborHex": "bf4b628d22947b5f79021466e61b3a94ce73c9d2fba743830604d8669f1bc57d19964a1a2ede9f1b1c72b7ee488b06581b47e92efa285e7528ffffff", + "cborBytes": [ + 191, 75, 98, 141, 34, 148, 123, 95, 121, 2, 20, 102, 230, 27, 58, 148, 206, 115, 201, 210, 251, 167, 67, 131, 6, + 4, 216, 102, 159, 27, 197, 125, 25, 150, 74, 26, 46, 222, 159, 27, 28, 114, 183, 238, 72, 139, 6, 88, 27, 71, 233, + 46, 250, 40, 94, 117, 40, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3818, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2714939599434245751" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2072604328064942862" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f10b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1660074047750287477" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6683425364167354519" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "183597973322377292" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4729716900735507281" + } + } + } + ] + }, + "cborHex": "bf1b25ad672e6aeb6677d905009f1b1cc35ea7be3f830e42f10b1b1709c48d0d003075ff1b5cc04bf55a07e8971b028c45624d5ca84c1bffffffffffffffff1b41a354764c805b51ff", + "cborBytes": [ + 191, 27, 37, 173, 103, 46, 106, 235, 102, 119, 217, 5, 0, 159, 27, 28, 195, 94, 167, 190, 63, 131, 14, 66, 241, + 11, 27, 23, 9, 196, 141, 13, 0, 48, 117, 255, 27, 92, 192, 75, 245, 90, 7, 232, 151, 27, 2, 140, 69, 98, 77, 92, + 168, 76, 27, 255, 255, 255, 255, 255, 255, 255, 255, 27, 65, 163, 84, 118, 76, 128, 91, 81, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3819, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6575602280779943541" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11819045788788797507" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d8b359365" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14556302079881314687" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12553202984876811807" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "25835307d9e0e3bfbfb2b0df" + }, + { + "_tag": "ByteArray", + "bytearray": "d51787f9b63e02f18f5c6abc" + } + ] + } + } + ] + }, + "cborHex": "bf1b5b413b6f72230e75801ba405af8660d53043450d8b3593651bca025f9e7a9b017fd8669f1bae35ef9ae2f4a61f9f4c25835307d9e0e3bfbfb2b0df4cd51787f9b63e02f18f5c6abcffffff", + "cborBytes": [ + 191, 27, 91, 65, 59, 111, 114, 35, 14, 117, 128, 27, 164, 5, 175, 134, 96, 213, 48, 67, 69, 13, 139, 53, 147, 101, + 27, 202, 2, 95, 158, 122, 155, 1, 127, 216, 102, 159, 27, 174, 53, 239, 154, 226, 244, 166, 31, 159, 76, 37, 131, + 83, 7, 217, 224, 227, 191, 191, 178, 176, 223, 76, 213, 23, 135, 249, 182, 62, 2, 241, 143, 92, 106, 188, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3820, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16063347327200780379" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4913971175058118436" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13409544843530797308" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fff32c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3741292896968412096" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bdeec79496d85e05b9f1b4431eebf95d917241bba1845fd065300fc43fff32c1b33ebbe114c7e8bc0ffff", + "cborBytes": [ + 191, 27, 222, 236, 121, 73, 109, 133, 224, 91, 159, 27, 68, 49, 238, 191, 149, 217, 23, 36, 27, 186, 24, 69, 253, + 6, 83, 0, 252, 67, 255, 243, 44, 27, 51, 235, 190, 17, 76, 126, 139, 192, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3821, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4579497302719073505" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1902662623038921985" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15594857576244745106" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7304617237934100023" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13853141838691184732" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7687453839665361884" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16355446442689031793" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13545873444779219705" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a37bd5a07bea97b2323e4d" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15278209600061877957" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3714307701986772704" + } + } + } + ] + }, + "cborHex": "bf1b3f8da4889a6e0ce1bf1b1a679d932da5dd011bd86c10572ae093921b655f36ad2741ce371bc0403f1aee4a305c1b6aaf52898c7773dc1be2fa37e27f67ee711bbbfc9c2100765af94ba37bd5a07bea97b2323e4dff1bd4071aaf0fa6aec51b338bdf2cfb6b46e0ff", + "cborBytes": [ + 191, 27, 63, 141, 164, 136, 154, 110, 12, 225, 191, 27, 26, 103, 157, 147, 45, 165, 221, 1, 27, 216, 108, 16, 87, + 42, 224, 147, 146, 27, 101, 95, 54, 173, 39, 65, 206, 55, 27, 192, 64, 63, 26, 238, 74, 48, 92, 27, 106, 175, 82, + 137, 140, 119, 115, 220, 27, 226, 250, 55, 226, 127, 103, 238, 113, 27, 187, 252, 156, 33, 0, 118, 90, 249, 75, + 163, 123, 213, 160, 123, 234, 151, 178, 50, 62, 77, 255, 27, 212, 7, 26, 175, 15, 166, 174, 197, 27, 51, 139, 223, + 44, 251, 107, 70, 224, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3822, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14137190429647185479" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1bc43163cb312c264780ff", + "cborBytes": [191, 27, 196, 49, 99, 203, 49, 44, 38, 71, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3823, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1c0c2321e9f5c0b91d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f01" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "03054af89105f803c5050107" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2f8129" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0107ad" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "84224ad6f219" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3302094977356912967" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8111097884820310792" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "be015f043c05043a" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9028e385fce4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fc7ef297a7f52a30b1e9e117" + } + } + ] + } + } + ] + }, + "cborHex": "bf491c0c2321e9f5c0b91d1bffffffffffffffed422f014c03054af89105f803c5050107432f8129430107ad4684224ad6f2199f1b2dd365e2fbf5d9471b7090688d43230b08ff48be015f043c05043abf469028e385fce44cfc7ef297a7f52a30b1e9e117ffff", + "cborBytes": [ + 191, 73, 28, 12, 35, 33, 233, 245, 192, 185, 29, 27, 255, 255, 255, 255, 255, 255, 255, 237, 66, 47, 1, 76, 3, 5, + 74, 248, 145, 5, 248, 3, 197, 5, 1, 7, 67, 47, 129, 41, 67, 1, 7, 173, 70, 132, 34, 74, 214, 242, 25, 159, 27, 45, + 211, 101, 226, 251, 245, 217, 71, 27, 112, 144, 104, 141, 67, 35, 11, 8, 255, 72, 190, 1, 95, 4, 60, 5, 4, 58, + 191, 70, 144, 40, 227, 133, 252, 228, 76, 252, 126, 242, 151, 167, 245, 42, 48, 177, 233, 225, 23, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3824, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b40" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13436851104129742637" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b0" + } + ] + } + } + ] + }, + "cborHex": "bf429b409f1bba7948e34177f72d41b0ffff", + "cborBytes": [191, 66, 155, 64, 159, 27, 186, 121, 72, 227, 65, 119, 247, 45, 65, 176, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3825, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10902171888344151754" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13901520957501346703" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1970441972866287765" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7063901424630828231" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13368160231049898399" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "371c0216" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b974c4b91fd00b6ca9f05ff1bc0ec1fa84d84138f9f1b1b586a88d33708951b620804eb677f0cc71bb9853ee7103ba99fff44371c0216a0ff", + "cborBytes": [ + 191, 27, 151, 76, 75, 145, 253, 0, 182, 202, 159, 5, 255, 27, 192, 236, 31, 168, 77, 132, 19, 143, 159, 27, 27, + 88, 106, 136, 211, 55, 8, 149, 27, 98, 8, 4, 235, 103, 127, 12, 199, 27, 185, 133, 62, 231, 16, 59, 169, 159, 255, + 68, 55, 28, 2, 22, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3826, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "478402155342292453" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12314895904164133535" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7863404229138747018" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16782991824523208252" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8220543829674395346" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17191394218494818433" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e2099262ac153472" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9910226973633267735" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14691295541098492652" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13491858442697499501" + } + } + } + ] + }, + "cborHex": "bf1b06a3a039c0f565e51baae74c93e59dba9f1b6d206c7bfb1e8e8ad8669f1be8e92a24f0fda63c80ff1b72153d0f0c4586d2d8669f1bee9419f5331678819f48e2099262ac153472ffff1b898832ed06e7c817801bcbe1f774f174b2ec1bbb3cb5c54cd6e36dff", + "cborBytes": [ + 191, 27, 6, 163, 160, 57, 192, 245, 101, 229, 27, 170, 231, 76, 147, 229, 157, 186, 159, 27, 109, 32, 108, 123, + 251, 30, 142, 138, 216, 102, 159, 27, 232, 233, 42, 36, 240, 253, 166, 60, 128, 255, 27, 114, 21, 61, 15, 12, 69, + 134, 210, 216, 102, 159, 27, 238, 148, 25, 245, 51, 22, 120, 129, 159, 72, 226, 9, 146, 98, 172, 21, 52, 114, 255, + 255, 27, 137, 136, 50, 237, 6, 231, 200, 23, 128, 27, 203, 225, 247, 116, 241, 116, 178, 236, 27, 187, 60, 181, + 197, 76, 214, 227, 109, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3827, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0b1396b2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1457465033788982869" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "86db375ac813712eb4b71e" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c98e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "392727177578756186" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9643c0499d9f" + } + ] + } + } + ] + }, + "cborHex": "bf440b1396b21b1439f4b9eb8b86554b86db375ac813712eb4b71e8042c98e9f1b05733f498939385a469643c0499d9fffff", + "cborBytes": [ + 191, 68, 11, 19, 150, 178, 27, 20, 57, 244, 185, 235, 139, 134, 85, 75, 134, 219, 55, 90, 200, 19, 113, 46, 180, + 183, 30, 128, 66, 201, 142, 159, 27, 5, 115, 63, 73, 137, 57, 56, 90, 70, 150, 67, 192, 73, 157, 159, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3828, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "010e718f07a7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "240633" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b1caaacb47ce214" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "145724437244570739" + } + } + } + ] + }, + "cborHex": "bf46010e718f07a743240633482b1caaacb47ce2141b0205b79a850e6c73ff", + "cborBytes": [ + 191, 70, 1, 14, 113, 143, 7, 167, 67, 36, 6, 51, 72, 43, 28, 170, 172, 180, 124, 226, 20, 27, 2, 5, 183, 154, 133, + 14, 108, 115, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3829, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ec78c3e81192b1bc" + }, + { + "_tag": "ByteArray", + "bytearray": "9c" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15199723578117171803" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7374835173448926254" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5193864226168447802" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15628653135949693863" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "fa77ca179313d8ef4d" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17272272929051019855" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a573fb7b8a5e42ff" + }, + { + "_tag": "ByteArray", + "bytearray": "6805c7586ccf334b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6397638320476781830" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4a3fbf595e18" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14319584301300503176" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "51a5447095" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "610dd23e8216ec863b75bc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a6c326fe0ce1f7c6103c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1022334875140143654" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d1d6d39b19" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18361700934104621282" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11824759594856088195" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "494381444643644906" + } + }, + { + "_tag": "ByteArray", + "bytearray": "db4381ad9e33dffe0aaaf0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15625181449714267007" + } + } + ] + } + } + ] + }, + "cborHex": "bf07d905009f48ec78c3e81192b1bc419c1bd2f044100dcdaa5b1b6658ad84467ac42eff1b48144ffed461233aa01bd8e42139161383a79f49fa77ca179313d8ef4dff1befb370b76fae8a4f9f48a573fb7b8a5e42ff486805c7586ccf334b1b58c8fa280571fd06ff1bfffffffffffffff5bf464a3fbf595e181bc6b9620dba46d2884551a54470954b610dd23e8216ec863b75bc4aa6c326fe0ce1f7c6103c1b0e3010270238ba2645d1d6d39b191bfed1ddb71143a0e2ff1bfffffffffffffffad8669f1ba419fc3385ca02839f0d1b06dc654df78765ea4bdb4381ad9e33dffe0aaaf01bd8d7cbbe253df37fffffff", + "cborBytes": [ + 191, 7, 217, 5, 0, 159, 72, 236, 120, 195, 232, 17, 146, 177, 188, 65, 156, 27, 210, 240, 68, 16, 13, 205, 170, + 91, 27, 102, 88, 173, 132, 70, 122, 196, 46, 255, 27, 72, 20, 79, 254, 212, 97, 35, 58, 160, 27, 216, 228, 33, 57, + 22, 19, 131, 167, 159, 73, 250, 119, 202, 23, 147, 19, 216, 239, 77, 255, 27, 239, 179, 112, 183, 111, 174, 138, + 79, 159, 72, 165, 115, 251, 123, 138, 94, 66, 255, 72, 104, 5, 199, 88, 108, 207, 51, 75, 27, 88, 200, 250, 40, 5, + 113, 253, 6, 255, 27, 255, 255, 255, 255, 255, 255, 255, 245, 191, 70, 74, 63, 191, 89, 94, 24, 27, 198, 185, 98, + 13, 186, 70, 210, 136, 69, 81, 165, 68, 112, 149, 75, 97, 13, 210, 62, 130, 22, 236, 134, 59, 117, 188, 74, 166, + 195, 38, 254, 12, 225, 247, 198, 16, 60, 27, 14, 48, 16, 39, 2, 56, 186, 38, 69, 209, 214, 211, 155, 25, 27, 254, + 209, 221, 183, 17, 67, 160, 226, 255, 27, 255, 255, 255, 255, 255, 255, 255, 250, 216, 102, 159, 27, 164, 25, 252, + 51, 133, 202, 2, 131, 159, 13, 27, 6, 220, 101, 77, 247, 135, 101, 234, 75, 219, 67, 129, 173, 158, 51, 223, 254, + 10, 170, 240, 27, 216, 215, 203, 190, 37, 61, 243, 127, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3830, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1f467e" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2409801292821362215" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6184408351645298916" + } + }, + { + "_tag": "ByteArray", + "bytearray": "01440ee00015490c5a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "443707bfef8d0a8af4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2183995471578567968" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6349bed5529367" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3487994830292412563" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "641a88" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fb026679932907ae78871c7d" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "80" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4614580982576830314" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff048786cfa52121" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13273237213226066891" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4650bb1df5c211fce90f9c" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4055ed3e1ec9d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10186266713685185753" + } + } + } + ] + }, + "cborHex": "bf431f467ed8669f1b2171558215e4f6279f1b55d36ea121c6f0e44901440ee00015490c5affff49443707bfef8d0a8af41b1e4f1c4f62809520476349bed55293679f1b3067d8d165fa6893ff43641a884cfb026679932907ae78871c7d4180bf1b400a48f45dc3d76a48ff048786cfa521211bb83402ebb9d5e3cb4b4650bb1df5c211fce90f9cff47d4055ed3e1ec9d1b8d5ce39b609754d9ff", + "cborBytes": [ + 191, 67, 31, 70, 126, 216, 102, 159, 27, 33, 113, 85, 130, 21, 228, 246, 39, 159, 27, 85, 211, 110, 161, 33, 198, + 240, 228, 73, 1, 68, 14, 224, 0, 21, 73, 12, 90, 255, 255, 73, 68, 55, 7, 191, 239, 141, 10, 138, 244, 27, 30, 79, + 28, 79, 98, 128, 149, 32, 71, 99, 73, 190, 213, 82, 147, 103, 159, 27, 48, 103, 216, 209, 101, 250, 104, 147, 255, + 67, 100, 26, 136, 76, 251, 2, 102, 121, 147, 41, 7, 174, 120, 135, 28, 125, 65, 128, 191, 27, 64, 10, 72, 244, 93, + 195, 215, 106, 72, 255, 4, 135, 134, 207, 165, 33, 33, 27, 184, 52, 2, 235, 185, 213, 227, 203, 75, 70, 80, 187, + 29, 245, 194, 17, 252, 233, 15, 156, 255, 71, 212, 5, 94, 211, 225, 236, 157, 27, 141, 92, 227, 155, 96, 151, 84, + 217, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3831, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4840fa47d14a76df61" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2409205329569780190" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "bc37eeba032c5c67" + }, + { + "_tag": "ByteArray", + "bytearray": "717adf0d34de4e29d71a6acb" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "853f655d2c1bb4a5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e59" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d4a19c4f72c9d63d9c1fefae" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5436770147590174813" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c26bb7ed4ae201" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3118608036007355788" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16265799017097641375" + } + }, + { + "_tag": "ByteArray", + "bytearray": "976352d172a6ed8179688a" + }, + { + "_tag": "ByteArray", + "bytearray": "d73e3d30ad74" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d8a1a204a0afa4b28f" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17674919731244178288" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11238717236221915075" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5f7622c565" + } + ] + } + } + ] + }, + "cborHex": "bf494840fa47d14a76df61d8669f1b216f377b93fc11de9f48bc37eeba032c5c674c717adf0d34de4e29d71a6acbffff48853f655d2c1bb4a5424e594cd4a19c4f72c9d63d9c1fefaed8669f1b4b7349a4dc8f785d9f47c26bb7ed4ae2011b2b47857c53e5a58c1be1bbba06b200bd9f4b976352d172a6ed8179688a46d73e3d30ad74ffff49d8a1a204a0afa4b28fd8669f1bf549edd98e5a1b709f1b9bf7f1c7f4112fc3455f7622c565ffffff", + "cborBytes": [ + 191, 73, 72, 64, 250, 71, 209, 74, 118, 223, 97, 216, 102, 159, 27, 33, 111, 55, 123, 147, 252, 17, 222, 159, 72, + 188, 55, 238, 186, 3, 44, 92, 103, 76, 113, 122, 223, 13, 52, 222, 78, 41, 215, 26, 106, 203, 255, 255, 72, 133, + 63, 101, 93, 44, 27, 180, 165, 66, 78, 89, 76, 212, 161, 156, 79, 114, 201, 214, 61, 156, 31, 239, 174, 216, 102, + 159, 27, 75, 115, 73, 164, 220, 143, 120, 93, 159, 71, 194, 107, 183, 237, 74, 226, 1, 27, 43, 71, 133, 124, 83, + 229, 165, 140, 27, 225, 187, 186, 6, 178, 0, 189, 159, 75, 151, 99, 82, 209, 114, 166, 237, 129, 121, 104, 138, + 70, 215, 62, 61, 48, 173, 116, 255, 255, 73, 216, 161, 162, 4, 160, 175, 164, 178, 143, 216, 102, 159, 27, 245, + 73, 237, 217, 142, 90, 27, 112, 159, 27, 155, 247, 241, 199, 244, 17, 47, 195, 69, 95, 118, 34, 197, 101, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3832, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551600" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec4c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7b4468639c97e3" + } + } + ] + }, + "cborHex": "bf10d8669f1bfffffffffffffff080ff42ec4c477b4468639c97e3ff", + "cborBytes": [ + 191, 16, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 240, 128, 255, 66, 236, 76, 71, 123, 68, 104, 99, + 156, 151, 227, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3833, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7139002933997296624" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1496564140987754649" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15221204030996940815" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8631728997114644146" + } + } + } + ] + }, + "cborHex": "bf1b6312d5582b615bf01b14c4dd283729a8991bd33c946bb951080f1b77ca0fca3e7506b2ff", + "cborBytes": [ + 191, 27, 99, 18, 213, 88, 43, 97, 91, 240, 27, 20, 196, 221, 40, 55, 41, 168, 153, 27, 211, 60, 148, 107, 185, 81, + 8, 15, 27, 119, 202, 15, 202, 62, 117, 6, 178, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3834, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "50379feed456cdce5e8240ee" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a8059c6168bea91699ed6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7de9b59d0c68cbc41c5447b5" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "708c2ba10058fa2fd8eb58cd" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7402296448086792653" + } + }, + { + "_tag": "ByteArray", + "bytearray": "28b4b3f6694084641b70" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3d64c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c36e9dd7856a" + } + } + ] + }, + "cborHex": "bf4c50379feed456cdce5e8240eebf4b6a8059c6168bea91699ed64c7de9b59d0c68cbc41c5447b5ff4c708c2ba10058fa2fd8eb58cd9f1b66ba3d66865959cd4a28b4b3f6694084641b70ff43f3d64c46c36e9dd7856aff", + "cborBytes": [ + 191, 76, 80, 55, 159, 238, 212, 86, 205, 206, 94, 130, 64, 238, 191, 75, 106, 128, 89, 198, 22, 139, 234, 145, + 105, 158, 214, 76, 125, 233, 181, 157, 12, 104, 203, 196, 28, 84, 71, 181, 255, 76, 112, 140, 43, 161, 0, 88, 250, + 47, 216, 235, 88, 205, 159, 27, 102, 186, 61, 102, 134, 89, 89, 205, 74, 40, 180, 179, 246, 105, 64, 132, 100, 27, + 112, 255, 67, 243, 214, 76, 70, 195, 110, 157, 215, 133, 106, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3835, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5249668522883829804" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8307079444899294667" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6774621686665747347" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "76ad" + } + } + ] + }, + "cborHex": "bf1b48da91b5270a502c1b7348acbe0a2bedcb1b5e044a87d15e9b934276adff", + "cborBytes": [ + 191, 27, 72, 218, 145, 181, 39, 10, 80, 44, 27, 115, 72, 172, 190, 10, 43, 237, 203, 27, 94, 4, 74, 135, 209, 94, + 155, 147, 66, 118, 173, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3836, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3918" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + } + } + ] + }, + "cborHex": "bf03423918060fff", + "cborBytes": [191, 3, 66, 57, 24, 6, 15, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3837, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3968417128821285093" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a2c72f9d4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5c0ab46eac90bec8b48b" + } + } + ] + }, + "cborHex": "bf1b3712a65a63f7e0e5456a2c72f9d41bffffffffffffffff4a5c0ab46eac90bec8b48bff", + "cborBytes": [ + 191, 27, 55, 18, 166, 90, 99, 247, 224, 229, 69, 106, 44, 114, 249, 212, 27, 255, 255, 255, 255, 255, 255, 255, + 255, 74, 92, 10, 180, 110, 172, 144, 190, 200, 180, 139, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3838, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3435912737362805353" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2060109517859425789" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13990779131411536735" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d6641d299490fc6b" + } + } + ] + }, + "cborHex": "bf1b2faed06e2dc00269d8669f1b1c96fab10a698dfd80ff1bc2293b7e62bb9b5f48d6641d299490fc6bff", + "cborBytes": [ + 191, 27, 47, 174, 208, 110, 45, 192, 2, 105, 216, 102, 159, 27, 28, 150, 250, 177, 10, 105, 141, 253, 128, 255, + 27, 194, 41, 59, 126, 98, 187, 155, 95, 72, 214, 100, 29, 41, 148, 144, 252, 107, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3839, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13688770208255591582" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "19d345cce2d21d" + } + ] + } + } + ] + }, + "cborHex": "bf1bbdf847fa6b06449e9f4719d345cce2d21dffff", + "cborBytes": [191, 27, 189, 248, 71, 250, 107, 6, 68, 158, 159, 71, 25, 211, 69, 204, 226, 210, 29, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3840, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8878101967915579578" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3722891037003813847" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15725753087804182515" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "48e83688d7" + } + } + ] + }, + "cborHex": "bf1b7b355ab39d4df8bad8669f1b33aa5dac661913d780ff1bda3d191d60120ff34548e83688d7ff", + "cborBytes": [ + 191, 27, 123, 53, 90, 179, 157, 77, 248, 186, 216, 102, 159, 27, 51, 170, 93, 172, 102, 25, 19, 215, 128, 255, 27, + 218, 61, 25, 29, 96, 18, 15, 243, 69, 72, 232, 54, 136, 215, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3841, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c4fd" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff942c4fd1bfffffffffffffffea0ff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 249, 66, 196, 253, 27, 255, 255, 255, 255, 255, 255, 255, 254, 160, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3842, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "8e" + }, + { + "_tag": "ByteArray", + "bytearray": "b4" + }, + { + "_tag": "ByteArray", + "bytearray": "0ffa823a43b1ee" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2419258468857147454" + } + }, + { + "_tag": "ByteArray", + "bytearray": "26" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a9c2f3427b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "053489cf86" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b17ea0bfa7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10980268236780927876" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0ec89aef8bc1fec9d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3033498697302373777" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fa62e09b6768cab96d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15482232530760801481" + } + }, + { + "_tag": "ByteArray", + "bytearray": "45b3b51f2dd992e6ffe4607d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1721400648722007847" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4357730834875937816" + } + } + ] + } + } + ] + }, + "cborHex": "bf41039f418e41b4470ffa823a43b1ee1b2192eec27815f03e4126ff45a9c2f3427b45053489cf8645b17ea0bfa7d8669f1b9861bfc90fd4fb8480ff49e0ec89aef8bc1fec9d1b2a1926fe3751759149fa62e09b6768cab96d9f1bd6dbf07555fe9cc94c45b3b51f2dd992e6ffe4607d1b17e3a4c50733c7271b3c79c51b278bf418ffff", + "cborBytes": [ + 191, 65, 3, 159, 65, 142, 65, 180, 71, 15, 250, 130, 58, 67, 177, 238, 27, 33, 146, 238, 194, 120, 21, 240, 62, + 65, 38, 255, 69, 169, 194, 243, 66, 123, 69, 5, 52, 137, 207, 134, 69, 177, 126, 160, 191, 167, 216, 102, 159, 27, + 152, 97, 191, 201, 15, 212, 251, 132, 128, 255, 73, 224, 236, 137, 174, 248, 188, 31, 236, 157, 27, 42, 25, 38, + 254, 55, 81, 117, 145, 73, 250, 98, 224, 155, 103, 104, 202, 185, 109, 159, 27, 214, 219, 240, 117, 85, 254, 156, + 201, 76, 69, 179, 181, 31, 45, 217, 146, 230, 255, 228, 96, 125, 27, 23, 227, 164, 197, 7, 51, 199, 39, 27, 60, + 121, 197, 27, 39, 139, 244, 24, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3843, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "b77a60c9d4c494f6c51232" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5053073195397286491" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14293761156837681279" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17481588650313060061" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4bb77a60c9d4c494f6c51232bf091bfffffffffffffff81b46201f4c83b40a5b1bffffffffffffffec1bc65da40a6196287f1bf29b14418b690eddffff", + "cborBytes": [ + 191, 75, 183, 122, 96, 201, 212, 196, 148, 246, 197, 18, 50, 191, 9, 27, 255, 255, 255, 255, 255, 255, 255, 248, + 27, 70, 32, 31, 76, 131, 180, 10, 91, 27, 255, 255, 255, 255, 255, 255, 255, 236, 27, 198, 93, 164, 10, 97, 150, + 40, 127, 27, 242, 155, 20, 65, 139, 105, 14, 221, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3844, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7989319005571129324" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14483581112702914550" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10582490120241603032" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7172806133600411371" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "7f08eaf48bd442e3de1bf0" + }, + { + "_tag": "ByteArray", + "bytearray": "a36add" + }, + { + "_tag": "ByteArray", + "bytearray": "3771834b0ac25540" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "777818308218802007" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2628402487636875284" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13494042734341946306" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3441080104865285479" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2eb719c3e53e9f8b193dce" + }, + { + "_tag": "ByteArray", + "bytearray": "8592f6ad36a04caf" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18195882102963908548" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18149491745354521882" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15174917048049436518" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10479325017029334959" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1784018058096235613" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7145022271630100722" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "221802532632704018" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16890365860356220548" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16283726962255990014" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "902f931d62d7b246" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "91950af4cf18" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9156" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12331546123078826075" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9547ecde" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "837e0164" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a809de4bd15751" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8a0fcc" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16956930392774520350" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d27972" + } + } + ] + }, + "cborHex": "bf1b6edfc34e6c581fec1bc9000448e236cff61b92dc8eb22814e1d8d8669f1b638aed2ce3fedeeb9f4b7f08eaf48bd442e3de1bf043a36add483771834b0ac255401b0acb5da1592d4f571b2479f622fa595814ffff1bbb44785f54647bc29f1b2fc12c1fae28c5674b2eb719c3e53e9f8b193dce488592f6ad36a04caf1bfc84c25de20d2fc41bfbdff2950fbd9d1aff1bd29822a7b1018766d8669f1b916e0a94c5e5d7af9f1b18c21af8c1b5545d1b632837e66cc448f21b0314003a6fdab4121bea66a242d0eae684ffff1be1fb6b65b4b80cfebf48902f931d62d7b2464691950af4cf184291561bab2273dd1575785b449547ecde44837e016447a809de4bd15751438a0fccff1beb531e59be59ae1e43d27972ff", + "cborBytes": [ + 191, 27, 110, 223, 195, 78, 108, 88, 31, 236, 27, 201, 0, 4, 72, 226, 54, 207, 246, 27, 146, 220, 142, 178, 40, + 20, 225, 216, 216, 102, 159, 27, 99, 138, 237, 44, 227, 254, 222, 235, 159, 75, 127, 8, 234, 244, 139, 212, 66, + 227, 222, 27, 240, 67, 163, 106, 221, 72, 55, 113, 131, 75, 10, 194, 85, 64, 27, 10, 203, 93, 161, 89, 45, 79, 87, + 27, 36, 121, 246, 34, 250, 89, 88, 20, 255, 255, 27, 187, 68, 120, 95, 84, 100, 123, 194, 159, 27, 47, 193, 44, + 31, 174, 40, 197, 103, 75, 46, 183, 25, 195, 229, 62, 159, 139, 25, 61, 206, 72, 133, 146, 246, 173, 54, 160, 76, + 175, 27, 252, 132, 194, 93, 226, 13, 47, 196, 27, 251, 223, 242, 149, 15, 189, 157, 26, 255, 27, 210, 152, 34, + 167, 177, 1, 135, 102, 216, 102, 159, 27, 145, 110, 10, 148, 197, 229, 215, 175, 159, 27, 24, 194, 26, 248, 193, + 181, 84, 93, 27, 99, 40, 55, 230, 108, 196, 72, 242, 27, 3, 20, 0, 58, 111, 218, 180, 18, 27, 234, 102, 162, 66, + 208, 234, 230, 132, 255, 255, 27, 225, 251, 107, 101, 180, 184, 12, 254, 191, 72, 144, 47, 147, 29, 98, 215, 178, + 70, 70, 145, 149, 10, 244, 207, 24, 66, 145, 86, 27, 171, 34, 115, 221, 21, 117, 120, 91, 68, 149, 71, 236, 222, + 68, 131, 126, 1, 100, 71, 168, 9, 222, 75, 209, 87, 81, 67, 138, 15, 204, 255, 27, 235, 83, 30, 89, 190, 89, 174, + 30, 67, 210, 121, 114, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3845, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2d4e8056a6d290" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "37e2fae12338" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10365450552098433921" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11408476895979920703" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2722714275366502629" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0b" + }, + { + "_tag": "ByteArray", + "bytearray": "e38860b80a2533380819" + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff5021bfffffffffffffff6d87f9f472d4e8056a6d290ff4637e2fae123389f1b8fd97a5bceb42b811b9e530d4acd225d3f1b25c90635381b00e5410b4ae38860b80a2533380819ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 245, 2, 27, 255, 255, 255, 255, 255, 255, 255, 246, 216, 127, 159, 71, + 45, 78, 128, 86, 166, 210, 144, 255, 70, 55, 226, 250, 225, 35, 56, 159, 27, 143, 217, 122, 91, 206, 180, 43, 129, + 27, 158, 83, 13, 74, 205, 34, 93, 63, 27, 37, 201, 6, 53, 56, 27, 0, 229, 65, 11, 74, 227, 136, 96, 184, 10, 37, + 51, 56, 8, 25, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3846, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10970194400202063120" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69dd5b159ef9b6e2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3efc" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "de009629a388cd606b59" + }, + { + "_tag": "ByteArray", + "bytearray": "8d41b79f42453aca" + }, + { + "_tag": "ByteArray", + "bytearray": "bdd710b8e5db42" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14517844663366962211" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d3c867efb15f118e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "88f68b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cdf9" + } + } + ] + }, + "cborHex": "bf029f1b983df5af3505fd10ff1bffffffffffffffeb4869dd5b159ef9b6e2423efcd87f9f4ade009629a388cd606b59488d41b79f42453aca47bdd710b8e5db421bc979becd7049cc2348d3c867efb15f118eff4388f68b42cdf9ff", + "cborBytes": [ + 191, 2, 159, 27, 152, 61, 245, 175, 53, 5, 253, 16, 255, 27, 255, 255, 255, 255, 255, 255, 255, 235, 72, 105, 221, + 91, 21, 158, 249, 182, 226, 66, 62, 252, 216, 127, 159, 74, 222, 0, 150, 41, 163, 136, 205, 96, 107, 89, 72, 141, + 65, 183, 159, 66, 69, 58, 202, 71, 189, 215, 16, 184, 229, 219, 66, 27, 201, 121, 190, 205, 112, 73, 204, 35, 72, + 211, 200, 103, 239, 177, 95, 17, 142, 255, 67, 136, 246, 139, 66, 205, 249, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3847, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc7e1e7605787cff81f841" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "000003" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "04" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02fc72" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4739641201633529927" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc57fb26383aecbef8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4bbc7e1e7605787cff81f841bf4300000341044302fc721b41c6968faa2c104749cc57fb26383aecbef81bffffffffffffffff41d51bfffffffffffffff6ffff", + "cborBytes": [ + 191, 75, 188, 126, 30, 118, 5, 120, 124, 255, 129, 248, 65, 191, 67, 0, 0, 3, 65, 4, 67, 2, 252, 114, 27, 65, 198, + 150, 143, 170, 44, 16, 71, 73, 204, 87, 251, 38, 56, 58, 236, 190, 248, 27, 255, 255, 255, 255, 255, 255, 255, + 255, 65, 213, 27, 255, 255, 255, 255, 255, 255, 255, 246, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3848, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf8729c2577d6b32285f9e" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10803370151038702096" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16345668967786967904" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a00b4371" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15284393040930662621" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "adde1b7ab86811013c0d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "249882a0c3d0f5867c" + } + } + ] + } + } + ] + }, + "cborHex": "bf4bcf8729c2577d6b32285f9ebf1b95ed47e9e5b852101be2d77b52b911736044a00b43711bd41d127d941fe8dd4aadde1b7ab86811013c0d49249882a0c3d0f5867cffff", + "cborBytes": [ + 191, 75, 207, 135, 41, 194, 87, 125, 107, 50, 40, 95, 158, 191, 27, 149, 237, 71, 233, 229, 184, 82, 16, 27, 226, + 215, 123, 82, 185, 17, 115, 96, 68, 160, 11, 67, 113, 27, 212, 29, 18, 125, 148, 31, 232, 221, 74, 173, 222, 27, + 122, 184, 104, 17, 1, 60, 13, 73, 36, 152, 130, 160, 195, 208, 245, 134, 124, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3849, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "3dbc6b14cf5fd1c9a56a" + }, + { + "_tag": "ByteArray", + "bytearray": "408053c710164271bf" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a8f5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6bfef24656d14769" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f62fc66264" + } + ] + } + } + ] + }, + "cborHex": "bf1bffffffffffffffeb9f4a3dbc6b14cf5fd1c9a56a49408053c710164271bfff1bfffffffffffffff042a8f5486bfef24656d14769d87f9f45f62fc66264ffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 235, 159, 74, 61, 188, 107, 20, 207, 95, 209, 201, 165, 106, 73, 64, + 128, 83, 199, 16, 22, 66, 113, 191, 255, 27, 255, 255, 255, 255, 255, 255, 255, 240, 66, 168, 245, 72, 107, 254, + 242, 70, 86, 209, 71, 105, 216, 127, 159, 69, 246, 47, 198, 98, 100, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3850, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "00672bfba7a508a318" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6520300715054027072" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6df9cb9a690eda2558" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca5b7c23e07d012d081d275f" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bace20be9628ef" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12387294242956059477" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11278827339660590576" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31bec5ac1457081d81" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ce15" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8583805584028318379" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6c" + }, + { + "_tag": "ByteArray", + "bytearray": "0755028259673f0b961912" + } + ] + } + } + ] + }, + "cborHex": "bf4900672bfba7a508a3181b5a7cc2f44d855140496df9cb9a690eda25584cca5b7c23e07d012d081d275f47bace20be9628efd8669f1babe8827bb7a323559f1b9c8671b5276efdf04931bec5ac1457081d81ffff42ce15d8669f1b771fcdb32105baab9f416c4b0755028259673f0b961912ffffff", + "cborBytes": [ + 191, 73, 0, 103, 43, 251, 167, 165, 8, 163, 24, 27, 90, 124, 194, 244, 77, 133, 81, 64, 73, 109, 249, 203, 154, + 105, 14, 218, 37, 88, 76, 202, 91, 124, 35, 224, 125, 1, 45, 8, 29, 39, 95, 71, 186, 206, 32, 190, 150, 40, 239, + 216, 102, 159, 27, 171, 232, 130, 123, 183, 163, 35, 85, 159, 27, 156, 134, 113, 181, 39, 110, 253, 240, 73, 49, + 190, 197, 172, 20, 87, 8, 29, 129, 255, 255, 66, 206, 21, 216, 102, 159, 27, 119, 31, 205, 179, 33, 5, 186, 171, + 159, 65, 108, 75, 7, 85, 2, 130, 89, 103, 63, 11, 150, 25, 18, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3851, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "040638" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2910885769330915052" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11118109820760980782" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6839398815352888061" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8052733572764825949" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16317744766887902653" + } + } + ] + } + } + ] + }, + "cborHex": "bf03430406381b28658b2f46b576ec1b9a4b75f9c83d7d2e1b5eea6cfc62561afd021b6fc10e84eb82795d9f1be27446690dd7bdbdffff", + "cborBytes": [ + 191, 3, 67, 4, 6, 56, 27, 40, 101, 139, 47, 70, 181, 118, 236, 27, 154, 75, 117, 249, 200, 61, 125, 46, 27, 94, + 234, 108, 252, 98, 86, 26, 253, 2, 27, 111, 193, 14, 132, 235, 130, 121, 93, 159, 27, 226, 116, 70, 105, 13, 215, + 189, 189, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3852, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2e41fa02befb93070305" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f" + } + ] + } + } + ] + }, + "cborHex": "bf4a2e41fa02befb930703059f1bfffffffffffffffa414fffff", + "cborBytes": [ + 191, 74, 46, 65, 250, 2, 190, 251, 147, 7, 3, 5, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 65, 79, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3853, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c013a05e59900fc0327" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2975388658545440261" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3a6d602593fcb8f00536f3" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4a2c013a05e59900fc0327d905089f1b294ab4387d53b605ff4b3a6d602593fcb8f00536f380ff", + "cborBytes": [ + 191, 74, 44, 1, 58, 5, 229, 153, 0, 252, 3, 39, 217, 5, 8, 159, 27, 41, 74, 180, 56, 125, 83, 182, 5, 255, 75, 58, + 109, 96, 37, 147, 252, 184, 240, 5, 54, 243, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3854, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0565811c497d5412aacd56" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7534287183630699732" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "511a56234e35cc81b627db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "95" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "676a7f84bea54537" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10981336904533090327" + } + } + } + ] + }, + "cborHex": "bf4b0565811c497d5412aacd561b688f2a4670160cd44b511a56234e35cc81b627db419548676a7f84bea545371b98658bbba9952017ff", + "cborBytes": [ + 191, 75, 5, 101, 129, 28, 73, 125, 84, 18, 170, 205, 86, 27, 104, 143, 42, 70, 112, 22, 12, 212, 75, 81, 26, 86, + 35, 78, 53, 204, 129, 182, 39, 219, 65, 149, 72, 103, 106, 127, 132, 190, 165, 69, 55, 27, 152, 101, 139, 187, + 169, 149, 32, 23, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3855, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8333077984620324076" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2636562041996399807" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ef2b8f3c0d8eaaae" + }, + { + "_tag": "ByteArray", + "bytearray": "e46cc0170d95f8eaea6dbbf3" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18073334860269758712" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9599492392028801522" + } + } + } + ] + }, + "cborHex": "bf1b73a50a46c6ec24ecd8669f1b2496f335457954bf9f48ef2b8f3c0d8eaaae4ce46cc0170d95f8eaea6dbbf3ffff1bfad1624c7d1028f81b85383f7862f109f2ff", + "cborBytes": [ + 191, 27, 115, 165, 10, 70, 198, 236, 36, 236, 216, 102, 159, 27, 36, 150, 243, 53, 69, 121, 84, 191, 159, 72, 239, + 43, 143, 60, 13, 142, 170, 174, 76, 228, 108, 192, 23, 13, 149, 248, 234, 234, 109, 187, 243, 255, 255, 27, 250, + 209, 98, 76, 125, 16, 40, 248, 27, 133, 56, 63, 120, 98, 241, 9, 242, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3856, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d657de4773a87" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5657560201771585675" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96119b6e165587" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5720638537492946368" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10180879866098499200" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17280862408285004581" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3292612874020599596" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf475d657de4773a87bf1b4e83b10749fb908b4796119b6e1655871b4f63ca70cbad5dc01b8d49c04c2fba3e801befd1f4cd6a3aa3251b2db1b5f6c2e0372cffff", + "cborBytes": [ + 191, 71, 93, 101, 125, 228, 119, 58, 135, 191, 27, 78, 131, 177, 7, 73, 251, 144, 139, 71, 150, 17, 155, 110, 22, + 85, 135, 27, 79, 99, 202, 112, 203, 173, 93, 192, 27, 141, 73, 192, 76, 47, 186, 62, 128, 27, 239, 209, 244, 205, + 106, 58, 163, 37, 27, 45, 177, 181, 246, 194, 224, 55, 44, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3857, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07d29f91865582a5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14719215430905342898" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54a8cc1140dea6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fbfff5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "66d7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7465572938332122148" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9935644825533493209" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6377027042265653770" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6e537ee69e3d6b" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13296141234646797148" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49fd328b64" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15365767197900745714" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14791706863931933620" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17194095403853167821" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15049155796615405881" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "89785bea0d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "175188171308874033" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "39e355fb077d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7591200409398743241" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c49fc993bbda" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15352723694094467482" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8716346111711308151" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18217189239733942763" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1947683253439795387" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ddf8fc" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c52a8f2474" + }, + { + "_tag": "ByteArray", + "bytearray": "ec810cd1e8" + }, + { + "_tag": "ByteArray", + "bytearray": "a9faae8c5c" + }, + { + "_tag": "ByteArray", + "bytearray": "5dffccff562f3f4f4b18e775" + }, + { + "_tag": "ByteArray", + "bytearray": "d34286" + } + ] + } + } + ] + }, + "cborHex": "bf4807d29f91865582a51bcc452872db8fabb24754a8cc1140dea643fbfff54266d7d905099f1b679b0b087a0e2c241b89e28053d85f2fd91b587fc04ed94de20aff476e537ee69e3d6bbf1bb8856201c68bcb5c4549fd328b641bd53e2bdaec392bf21bcd46b305de5ec3b41bee9db2abecd83ccd1bd0d9577692c5a139ff4589785bea0dbf1b026e64b6afb739314639e355fb077d1b69595c8d6d0310c946c49fc993bbda1bd50fd4db8939419a1b78f6ae9b7fe8e9771bfcd075184068f9eb1b1b078f99884190bbff43ddf8fcd87f9f45c52a8f247445ec810cd1e845a9faae8c5c4c5dffccff562f3f4f4b18e77543d34286ffff", + "cborBytes": [ + 191, 72, 7, 210, 159, 145, 134, 85, 130, 165, 27, 204, 69, 40, 114, 219, 143, 171, 178, 71, 84, 168, 204, 17, 64, + 222, 166, 67, 251, 255, 245, 66, 102, 215, 217, 5, 9, 159, 27, 103, 155, 11, 8, 122, 14, 44, 36, 27, 137, 226, + 128, 83, 216, 95, 47, 217, 27, 88, 127, 192, 78, 217, 77, 226, 10, 255, 71, 110, 83, 126, 230, 158, 61, 107, 191, + 27, 184, 133, 98, 1, 198, 139, 203, 92, 69, 73, 253, 50, 139, 100, 27, 213, 62, 43, 218, 236, 57, 43, 242, 27, + 205, 70, 179, 5, 222, 94, 195, 180, 27, 238, 157, 178, 171, 236, 216, 60, 205, 27, 208, 217, 87, 118, 146, 197, + 161, 57, 255, 69, 137, 120, 91, 234, 13, 191, 27, 2, 110, 100, 182, 175, 183, 57, 49, 70, 57, 227, 85, 251, 7, + 125, 27, 105, 89, 92, 141, 109, 3, 16, 201, 70, 196, 159, 201, 147, 187, 218, 27, 213, 15, 212, 219, 137, 57, 65, + 154, 27, 120, 246, 174, 155, 127, 232, 233, 119, 27, 252, 208, 117, 24, 64, 104, 249, 235, 27, 27, 7, 143, 153, + 136, 65, 144, 187, 255, 67, 221, 248, 252, 216, 127, 159, 69, 197, 42, 143, 36, 116, 69, 236, 129, 12, 209, 232, + 69, 169, 250, 174, 140, 92, 76, 93, 255, 204, 255, 86, 47, 63, 79, 75, 24, 231, 117, 67, 211, 66, 134, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3858, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a3e9f6a5" + } + } + ] + }, + "cborHex": "bf1144a3e9f6a5ff", + "cborBytes": [191, 17, 68, 163, 233, 246, 165, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3859, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "190bd87199eb0608" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2743b087b642bb3bf740f4ee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + } + ] + }, + "cborHex": "bf48190bd87199eb0608064c2743b087b642bb3bf740f4ee03ff", + "cborBytes": [ + 191, 72, 25, 11, 216, 113, 153, 235, 6, 8, 6, 76, 39, 67, 176, 135, 182, 66, 187, 59, 247, 64, 244, 238, 3, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3860, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07004d0e9b471541" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "34fe6b7236" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9214954696303517767" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15126929781675706531" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17209488128873582472" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13933604940733246874" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5c2577c069b1cef933c58e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15540022415007261311" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf9caffa3aea0a" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15960451078402966281" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "50a7bf20971114d0a6" + } + ] + } + } + ] + }, + "cborHex": "bf4807004d0e9b47154141444534fe6b7236d8669f1b7fe218792e7d20479f1bd1eda67d930ec8a31beed46245ffcfcf881bc15e1bdec5086d9affff4b5c2577c069b1cef933c58e1bd7a9400d481da27f47bf9caffa3aea0ad8669f1bdd7ee9b1973583099f4950a7bf20971114d0a6ffffff", + "cborBytes": [ + 191, 72, 7, 0, 77, 14, 155, 71, 21, 65, 65, 68, 69, 52, 254, 107, 114, 54, 216, 102, 159, 27, 127, 226, 24, 121, + 46, 125, 32, 71, 159, 27, 209, 237, 166, 125, 147, 14, 200, 163, 27, 238, 212, 98, 69, 255, 207, 207, 136, 27, + 193, 94, 27, 222, 197, 8, 109, 154, 255, 255, 75, 92, 37, 119, 192, 105, 177, 206, 249, 51, 197, 142, 27, 215, + 169, 64, 13, 72, 29, 162, 127, 71, 191, 156, 175, 250, 58, 234, 10, 216, 102, 159, 27, 221, 126, 233, 177, 151, + 53, 131, 9, 159, 73, 80, 167, 191, 32, 151, 17, 20, 208, 166, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3861, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11394237083446644888" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "813781411281735722" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3756cf012f071f2a49b7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f5c6b864" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a003b9c828e5235166" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3311845841427181551" + } + } + } + ] + }, + "cborHex": "bf1b9e207642156b90989f1b0b4b21e1c843902aff4a3756cf012f071f2a49b744f5c6b86449a003b9c828e52351661b2df60a3ef11f2fefff", + "cborBytes": [ + 191, 27, 158, 32, 118, 66, 21, 107, 144, 152, 159, 27, 11, 75, 33, 225, 200, 67, 144, 42, 255, 74, 55, 86, 207, 1, + 47, 7, 31, 42, 73, 183, 68, 245, 198, 184, 100, 73, 160, 3, 185, 200, 40, 229, 35, 81, 102, 27, 45, 246, 10, 62, + 241, 31, 47, 239, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3862, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3859963637794100419" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3056330272480224679" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2011766093316361045" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10707109202173102517" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "45" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13131505592725509255" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5558918756118819292" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14479955663482846855" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4c0adee1b3699f8a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17649857931408256024" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d715e" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9665715905101073941" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15736672510736614051" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "568e24098945" + }, + { + "_tag": "ByteArray", + "bytearray": "9eb42611aba23dda" + }, + { + "_tag": "ByteArray", + "bytearray": "a9dd3c89ed" + }, + { + "_tag": "ByteArray", + "bytearray": "55b0bedd54d3" + } + ] + } + } + ] + }, + "cborHex": "bf1b3591587a44a454c3bf1b2a6a44308f74e5a71b1beb3a9a634c0b551b94974b1736d809b541451bb63c7ac34c7594871b4d253f2801b7f1dc1bc8f322f5354cfe87484c0adee1b3699f8a1bf4f0e44691b32c18434d715eff1b862385678f648e15d8669f1bda63e445a51c42a39f46568e24098945489eb42611aba23dda45a9dd3c89ed4655b0bedd54d3ffffff", + "cborBytes": [ + 191, 27, 53, 145, 88, 122, 68, 164, 84, 195, 191, 27, 42, 106, 68, 48, 143, 116, 229, 167, 27, 27, 235, 58, 154, + 99, 76, 11, 85, 27, 148, 151, 75, 23, 54, 216, 9, 181, 65, 69, 27, 182, 60, 122, 195, 76, 117, 148, 135, 27, 77, + 37, 63, 40, 1, 183, 241, 220, 27, 200, 243, 34, 245, 53, 76, 254, 135, 72, 76, 10, 222, 225, 179, 105, 159, 138, + 27, 244, 240, 228, 70, 145, 179, 44, 24, 67, 77, 113, 94, 255, 27, 134, 35, 133, 103, 143, 100, 142, 21, 216, 102, + 159, 27, 218, 99, 228, 69, 165, 28, 66, 163, 159, 70, 86, 142, 36, 9, 137, 69, 72, 158, 180, 38, 17, 171, 162, 61, + 218, 69, 169, 221, 60, 137, 237, 70, 85, 176, 190, 221, 84, 211, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3863, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1714499004049915814" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3742207f0288" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4812819120261053287" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8283596433553843124" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "2392df38e812688b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1352887402402436170" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18255460914923788274" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ee4b693d3ce7634d80" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8770694891732468090" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5581232833895164503" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14926866235565655481" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2844e1df" + } + ] + } + } + ] + }, + "cborHex": "bf1b17cb1fc2a827ffa6463742207f02881b42ca917d8f5e3b67d8669f1b72f53f1164ab63b49f482392df38e812688b1b12c66becb14c544a1bfd586cfb050f57f249ee4b693d3ce7634d80ffff1b79b7c488ef0c017ad8669f1b4d7485b119116a579f1bcf26e1c15ca9c5b9442844e1dfffffff", + "cborBytes": [ + 191, 27, 23, 203, 31, 194, 168, 39, 255, 166, 70, 55, 66, 32, 127, 2, 136, 27, 66, 202, 145, 125, 143, 94, 59, + 103, 216, 102, 159, 27, 114, 245, 63, 17, 100, 171, 99, 180, 159, 72, 35, 146, 223, 56, 232, 18, 104, 139, 27, 18, + 198, 107, 236, 177, 76, 84, 74, 27, 253, 88, 108, 251, 5, 15, 87, 242, 73, 238, 75, 105, 61, 60, 231, 99, 77, 128, + 255, 255, 27, 121, 183, 196, 136, 239, 12, 1, 122, 216, 102, 159, 27, 77, 116, 133, 177, 25, 17, 106, 87, 159, 27, + 207, 38, 225, 193, 92, 169, 197, 185, 68, 40, 68, 225, 223, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3864, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17283531640328168650" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4702b9f9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "02fc30c4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c50afca86c8f84e2f25b919" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12823015445867982554" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "79709f6d85619f0f0df932" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0181" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "02f906f0069303139eeefd00" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15013373400570241618" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551600" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + { + "_tag": "ByteArray", + "bytearray": "06422177" + }, + { + "_tag": "ByteArray", + "bytearray": "a47a0b9338905d52cd4b" + }, + { + "_tag": "ByteArray", + "bytearray": "973fa39fb4a271" + } + ] + } + } + ] + }, + "cborHex": "bf1befdb70746dfc24ca801bffffffffffffffefbf444702b9f94402fc30c44c4c50afca86c8f84e2f25b9191bb1f4809bd84eeeda4b79709f6d85619f0f0df93213ff4201810b4c02f906f0069303139eeefd00d8669f1bd05a37904549a2529f1bfffffffffffffff01244064221774aa47a0b9338905d52cd4b47973fa39fb4a271ffffff", + "cborBytes": [ + 191, 27, 239, 219, 112, 116, 109, 252, 36, 202, 128, 27, 255, 255, 255, 255, 255, 255, 255, 239, 191, 68, 71, 2, + 185, 249, 68, 2, 252, 48, 196, 76, 76, 80, 175, 202, 134, 200, 248, 78, 47, 37, 185, 25, 27, 177, 244, 128, 155, + 216, 78, 238, 218, 75, 121, 112, 159, 109, 133, 97, 159, 15, 13, 249, 50, 19, 255, 66, 1, 129, 11, 76, 2, 249, 6, + 240, 6, 147, 3, 19, 158, 238, 253, 0, 216, 102, 159, 27, 208, 90, 55, 144, 69, 73, 162, 82, 159, 27, 255, 255, + 255, 255, 255, 255, 255, 240, 18, 68, 6, 66, 33, 119, 74, 164, 122, 11, 147, 56, 144, 93, 82, 205, 75, 71, 151, + 63, 163, 159, 180, 162, 113, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3865, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5683421533934139153" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6dae23f7861cf43792" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12401930116422827838" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13803868509899743922" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4d772b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15799056759871161089" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16994668245610521013" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18307349765723877807" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "553435376879332830" + } + } + } + ] + }, + "cborHex": "bf1b4edf91c5e6f33711496dae23f7861cf437921bac1c81bb8e99ff3ea01bbf91314612c662b2434d772b1bdb41866a865ac3011bebd930ba4f39e1b51bfe10c59d8ccd71af1b07ae328b0506eddeff", + "cborBytes": [ + 191, 27, 78, 223, 145, 197, 230, 243, 55, 17, 73, 109, 174, 35, 247, 134, 28, 244, 55, 146, 27, 172, 28, 129, 187, + 142, 153, 255, 62, 160, 27, 191, 145, 49, 70, 18, 198, 98, 178, 67, 77, 119, 43, 27, 219, 65, 134, 106, 134, 90, + 195, 1, 27, 235, 217, 48, 186, 79, 57, 225, 181, 27, 254, 16, 197, 157, 140, 205, 113, 175, 27, 7, 174, 50, 139, + 5, 6, 237, 222, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3866, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "08" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b8420c58" + } + } + ] + }, + "cborHex": "bf410844b8420c58ff", + "cborBytes": [191, 65, 8, 68, 184, 66, 12, 88, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3867, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9fc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5264ed3e" + } + } + ] + }, + "cborHex": "bf42d9fc445264ed3eff", + "cborBytes": [191, 66, 217, 252, 68, 82, 100, 237, 62, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3868, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8602856617728466810" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3131197455547347673" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "da3b2e35c76053f3ef675317" + } + ] + } + } + ] + }, + "cborHex": "bf1b77637c839152df7ad8669f1b2b743f7efb81b2d99f4cda3b2e35c76053f3ef675317ffffff", + "cborBytes": [ + 191, 27, 119, 99, 124, 131, 145, 82, 223, 122, 216, 102, 159, 27, 43, 116, 63, 126, 251, 129, 178, 217, 159, 76, + 218, 59, 46, 53, 199, 96, 83, 243, 239, 103, 83, 23, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3869, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8771126572995715464" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e0f8f950" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12170206370588319281" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7932102493975877679" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2048887570580400750" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2130470389909813573" + } + } + ] + } + } + ] + }, + "cborHex": "bf0e9f0a1bffffffffffffffec1b79b94d258f66218844e0f8f950ff1ba8e54236aa1cde31d9050c9f1b6e147d31336c182f1b1c6f1c63d5286a6eff1bffffffffffffffefd87c9f1b1d90f3882b0ff945ffff", + "cborBytes": [ + 191, 14, 159, 10, 27, 255, 255, 255, 255, 255, 255, 255, 236, 27, 121, 185, 77, 37, 143, 102, 33, 136, 68, 224, + 248, 249, 80, 255, 27, 168, 229, 66, 54, 170, 28, 222, 49, 217, 5, 12, 159, 27, 110, 20, 125, 49, 51, 108, 24, 47, + 27, 28, 111, 28, 99, 213, 40, 106, 110, 255, 27, 255, 255, 255, 255, 255, 255, 255, 239, 216, 124, 159, 27, 29, + 144, 243, 136, 43, 15, 249, 69, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3870, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "09" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "80030207fc14" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff0707" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf41094680030207fc1443ff0707d87980ff", + "cborBytes": [191, 65, 9, 70, 128, 3, 2, 7, 252, 20, 67, 255, 7, 7, 216, 121, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3871, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "ByteArray", + "bytearray": "00a5edfbf8" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9727d8d8802816bc5f" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "613544471213405630" + } + } + ] + } + } + ] + }, + "cborHex": "bf41049f104500a5edfbf8ff499727d8d8802816bc5f9f1b0883bf72249475beffff", + "cborBytes": [ + 191, 65, 4, 159, 16, 69, 0, 165, 237, 251, 248, 255, 73, 151, 39, 216, 216, 128, 40, 22, 188, 95, 159, 27, 8, 131, + 191, 114, 36, 148, 117, 190, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3872, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3023467274321459384" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8882242301379701147" + } + } + } + ] + }, + "cborHex": "bf1b29f583778bf2f8b81b7b4410501eaf699bff", + "cborBytes": [191, 27, 41, 245, 131, 119, 139, 242, 248, 184, 27, 123, 68, 16, 80, 30, 175, 105, 155, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3873, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7038120297037261247" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + } + ] + }, + "cborHex": "bf1b61ac6d1edf5f69bf09ff", + "cborBytes": [191, 27, 97, 172, 109, 30, 223, 95, 105, 191, 9, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3874, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "62" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3528569724609417789" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bff51" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "882e06cfa84e17523e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aa514a1b004c68" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "899dd66a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "56d65104d95e0610" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8db361f311" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a56db766a835317" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bf796a51233499b125a9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7ec8d3d1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "daf20998773ade7897a85c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17985930693709859347" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e0121c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14414339739629815260" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bbd6fc3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6838937033033101732" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "996579cbb41be5cc20d8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3916809632682752083" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2920051580567879933" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6803901352854451626" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "69d2557e83" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15574840064809605441" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17501956642126308601" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c704" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ee31" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc5f94d9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9232759104196447984" + } + } + ] + } + } + ] + }, + "cborHex": "bf4162d8669f1b30f7ff78288ad23d80ff437bff51bf49882e06cfa84e17523e47aa514a1b004c6844899dd66a4856d65104d95e0610458db361f311487a56db766a8353174abf796a51233499b125a9447ec8d3d14bdaf20998773ade7897a85c1bf99adcac215f0a1343e0121c1bc80a059f6c6e85dcff448bbd6fc31b5ee8c8ff4f33b1a44a996579cbb41be5cc20d8bf1b365b4d9bd8e238531b28861b71019100fd1b5e6c503b57b075aa4569d2557e831bd824f285187f99411bf2e370d6303a24f9ff42c70442ee3144cc5f94d99f1b8021597cee620ef0ffff", + "cborBytes": [ + 191, 65, 98, 216, 102, 159, 27, 48, 247, 255, 120, 40, 138, 210, 61, 128, 255, 67, 123, 255, 81, 191, 73, 136, 46, + 6, 207, 168, 78, 23, 82, 62, 71, 170, 81, 74, 27, 0, 76, 104, 68, 137, 157, 214, 106, 72, 86, 214, 81, 4, 217, 94, + 6, 16, 69, 141, 179, 97, 243, 17, 72, 122, 86, 219, 118, 106, 131, 83, 23, 74, 191, 121, 106, 81, 35, 52, 153, + 177, 37, 169, 68, 126, 200, 211, 209, 75, 218, 242, 9, 152, 119, 58, 222, 120, 151, 168, 92, 27, 249, 154, 220, + 172, 33, 95, 10, 19, 67, 224, 18, 28, 27, 200, 10, 5, 159, 108, 110, 133, 220, 255, 68, 139, 189, 111, 195, 27, + 94, 232, 200, 255, 79, 51, 177, 164, 74, 153, 101, 121, 203, 180, 27, 229, 204, 32, 216, 191, 27, 54, 91, 77, 155, + 216, 226, 56, 83, 27, 40, 134, 27, 113, 1, 145, 0, 253, 27, 94, 108, 80, 59, 87, 176, 117, 170, 69, 105, 210, 85, + 126, 131, 27, 216, 36, 242, 133, 24, 127, 153, 65, 27, 242, 227, 112, 214, 48, 58, 36, 249, 255, 66, 199, 4, 66, + 238, 49, 68, 204, 95, 148, 217, 159, 27, 128, 33, 89, 124, 238, 98, 14, 240, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3875, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6903588042864995576" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11403327768738490176" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10370852258662958231" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "612e15b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13880951517974311460" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ba0005" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5980155202883551685" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "db" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b5fce78bf8a9a2cf89f1b9e40c230310167401b8fecab2e9fa9c497ff44612e15b01bc0a30bdc7547322443ba00051b52fdc779099401c541db80ff", + "cborBytes": [ + 191, 27, 95, 206, 120, 191, 138, 154, 44, 248, 159, 27, 158, 64, 194, 48, 49, 1, 103, 64, 27, 143, 236, 171, 46, + 159, 169, 196, 151, 255, 68, 97, 46, 21, 176, 27, 192, 163, 11, 220, 117, 71, 50, 36, 67, 186, 0, 5, 27, 82, 253, + 199, 121, 9, 148, 1, 197, 65, 219, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3876, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03b255309e3e7225" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18203664395605892796" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13865543572127937005" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12899841165198158988" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12936177666010688036" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5bdceab2" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "629314193763974613" + } + } + } + ] + }, + "cborHex": "bf4803b255309e3e72259f1bfca068521683debc1bc06c4e6a8262f1ed1bb30571318698ec8c1bb386890c65e8aa24ff445bdceab21b08bbc5eccb69bdd5ff", + "cborBytes": [ + 191, 72, 3, 178, 85, 48, 158, 62, 114, 37, 159, 27, 252, 160, 104, 82, 22, 131, 222, 188, 27, 192, 108, 78, 106, + 130, 98, 241, 237, 27, 179, 5, 113, 49, 134, 152, 236, 140, 27, 179, 134, 137, 12, 101, 232, 170, 36, 255, 68, 91, + 220, 234, 178, 27, 8, 187, 197, 236, 203, 105, 189, 213, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3877, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3107783088664220790" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "387fc5d4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "271812484958124924" + } + }, + { + "_tag": "ByteArray", + "bytearray": "aa41" + }, + { + "_tag": "ByteArray", + "bytearray": "cc242c66" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6133539225890933908" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "aee60603592dd3255c85" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6996605811621105306" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12457548651345054122" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7596000924614297659" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9763992975116469733" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9668981937550505344" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4199494600669415813" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13606612890455709681" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15238337191669505369" + } + } + } + ] + }, + "cborHex": "bf1b2b211040decc14769f44387fc5d41b03c5ac03d371fb7c42aa4144cc242c66ff1b551eb56dd7274c944aaee60603592dd3255c851b6118efea831c0e9a1bace21a7ed79189aa1b696a6a98792c883b1b8780abe1073a05e51b862f1fd7ff5db5801b3a479a16e51249851bbcd466553bdd17f11bd37972f08d159d59ff", + "cborBytes": [ + 191, 27, 43, 33, 16, 64, 222, 204, 20, 118, 159, 68, 56, 127, 197, 212, 27, 3, 197, 172, 3, 211, 113, 251, 124, + 66, 170, 65, 68, 204, 36, 44, 102, 255, 27, 85, 30, 181, 109, 215, 39, 76, 148, 74, 174, 230, 6, 3, 89, 45, 211, + 37, 92, 133, 27, 97, 24, 239, 234, 131, 28, 14, 154, 27, 172, 226, 26, 126, 215, 145, 137, 170, 27, 105, 106, 106, + 152, 121, 44, 136, 59, 27, 135, 128, 171, 225, 7, 58, 5, 229, 27, 134, 47, 31, 215, 255, 93, 181, 128, 27, 58, 71, + 154, 22, 229, 18, 73, 133, 27, 188, 212, 102, 85, 59, 221, 23, 241, 27, 211, 121, 114, 240, 141, 21, 157, 89, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3878, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "23" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15410699905812902641" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "8b" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13504618029609212362" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8873212365988799326" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "665cebf8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b3d4859fa69423c157a4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8051518175237864331" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b5" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "87" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6254837781317190435" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7164428c992b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "30157ac26f85e252ad7d33ab" + } + } + ] + }, + "cborHex": "bf4123d8669f1bd5ddcdea3a1fb2f19f418b1bbb6a0a8c223159ca1b7b23fba2735da35effff44665cebf89f4ab3d4859fa69423c157a41b6fbcbd1f21a77b8b41b5ff418780419e1b56cda5d2931a832347d7164428c992b34c30157ac26f85e252ad7d33abff", + "cborBytes": [ + 191, 65, 35, 216, 102, 159, 27, 213, 221, 205, 234, 58, 31, 178, 241, 159, 65, 139, 27, 187, 106, 10, 140, 34, 49, + 89, 202, 27, 123, 35, 251, 162, 115, 93, 163, 94, 255, 255, 68, 102, 92, 235, 248, 159, 74, 179, 212, 133, 159, + 166, 148, 35, 193, 87, 164, 27, 111, 188, 189, 31, 33, 167, 123, 139, 65, 181, 255, 65, 135, 128, 65, 158, 27, 86, + 205, 165, 210, 147, 26, 131, 35, 71, 215, 22, 68, 40, 201, 146, 179, 76, 48, 21, 122, 194, 111, 133, 226, 82, 173, + 125, 51, 171, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3879, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5551065878017973471" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7375097036028786249" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11524468140411575256" + } + }, + { + "_tag": "ByteArray", + "bytearray": "258265" + }, + { + "_tag": "ByteArray", + "bytearray": "ad3bb7955c23b69d" + }, + { + "_tag": "ByteArray", + "bytearray": "a3cb9321b83165" + }, + { + "_tag": "ByteArray", + "bytearray": "3d4e29a9" + } + ] + } + } + ] + }, + "cborHex": "bf1b4d095901580d9cdfd8669f1b66599bade88836499f1b9fef22b6e689dbd84325826548ad3bb7955c23b69d47a3cb9321b83165443d4e29a9ffffff", + "cborBytes": [ + 191, 27, 77, 9, 89, 1, 88, 13, 156, 223, 216, 102, 159, 27, 102, 89, 155, 173, 232, 136, 54, 73, 159, 27, 159, + 239, 34, 182, 230, 137, 219, 216, 67, 37, 130, 101, 72, 173, 59, 183, 149, 92, 35, 182, 157, 71, 163, 203, 147, + 33, 184, 49, 101, 68, 61, 78, 41, 169, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3880, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "90" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "50a28ea9" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3ea00e0406074f1b03" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bc9d8afdf801" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c539e14f411d61" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cf" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7827433045330170954" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fefa7805c8a839360306" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c422193324ec844a810afea8" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "eafefc07c300fecf2004" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4190bf4450a28ea9493ea00e0406074f1b0346bc9d8afdf80147c539e14f411d6141cf1b6ca0a0e21a0f144a4afefa7805c8a8393603064cc422193324ec844a810afea8ff4aeafefc07c300fecf200480ff", + "cborBytes": [ + 191, 65, 144, 191, 68, 80, 162, 142, 169, 73, 62, 160, 14, 4, 6, 7, 79, 27, 3, 70, 188, 157, 138, 253, 248, 1, 71, + 197, 57, 225, 79, 65, 29, 97, 65, 207, 27, 108, 160, 160, 226, 26, 15, 20, 74, 74, 254, 250, 120, 5, 200, 168, 57, + 54, 3, 6, 76, 196, 34, 25, 51, 36, 236, 132, 74, 129, 10, 254, 168, 255, 74, 234, 254, 252, 7, 195, 0, 254, 207, + 32, 4, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3881, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14582521566652203548" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf0b801bca5f861a75c7021c80ff", + "cborBytes": [191, 11, 128, 27, 202, 95, 134, 26, 117, 199, 2, 28, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3882, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "51d8be537d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7159875879192158071" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9640e1" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "739855769887177243" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10270743839816086830" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18353799835589420067" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14865730554127665550" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4edf4bb308" + } + ] + } + } + ] + }, + "cborHex": "bf4551d8be537d1b635cfd2d6f22df77439640e1d8669f1b0a447ee71d25fa1b9f1b8e89031b0744f52e1bfeb5cbb536ee24231bce4daf2d4d73498e454edf4bb308ffffff", + "cborBytes": [ + 191, 69, 81, 216, 190, 83, 125, 27, 99, 92, 253, 45, 111, 34, 223, 119, 67, 150, 64, 225, 216, 102, 159, 27, 10, + 68, 126, 231, 29, 37, 250, 27, 159, 27, 142, 137, 3, 27, 7, 68, 245, 46, 27, 254, 181, 203, 181, 54, 238, 36, 35, + 27, 206, 77, 175, 45, 77, 115, 73, 142, 69, 78, 223, 75, 179, 8, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3883, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "255220716566705224" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5379018525782792880" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17403204844423396949" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11146142312560410125" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "2991" + }, + { + "_tag": "ByteArray", + "bytearray": "faba98d9dc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6867369050556379146" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6db92634d907e575" + }, + { + "_tag": "ByteArray", + "bytearray": "cd11437dc7f935" + } + ] + } + } + ] + }, + "cborHex": "bf1b038ab9e3b6477448a01b4aa61cd995875ab0d8669f1bf1849a999136be5580ff1b9aaf0d60e41d3e0d9f42299145faba98d9dc1b5f4dcbc43fecb00a486db92634d907e57547cd11437dc7f935ffff", + "cborBytes": [ + 191, 27, 3, 138, 185, 227, 182, 71, 116, 72, 160, 27, 74, 166, 28, 217, 149, 135, 90, 176, 216, 102, 159, 27, 241, + 132, 154, 153, 145, 54, 190, 85, 128, 255, 27, 154, 175, 13, 96, 228, 29, 62, 13, 159, 66, 41, 145, 69, 250, 186, + 152, 217, 220, 27, 95, 77, 203, 196, 63, 236, 176, 10, 72, 109, 185, 38, 52, 217, 7, 229, 117, 71, 205, 17, 67, + 125, 199, 249, 53, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3884, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0507" + }, + { + "_tag": "ByteArray", + "bytearray": "13061c6fd9b50005" + } + ] + } + } + ] + }, + "cborHex": "bf1bfffffffffffffff3d8669f1bfffffffffffffffe9f4205074813061c6fd9b50005ffffff", + "cborBytes": [ + 191, 27, 255, 255, 255, 255, 255, 255, 255, 243, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, 159, + 66, 5, 7, 72, 19, 6, 28, 111, 217, 181, 0, 5, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3885, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "289094ba27f5228c29" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "76563768122940118" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2438453940707058979" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9913758222998148291" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11847250632168526468" + } + }, + { + "_tag": "ByteArray", + "bytearray": "6d48cfa3" + }, + { + "_tag": "ByteArray", + "bytearray": "d35779513dd282de11" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd61391072bf2aa5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12475510183828196111" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7665183340486378638" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "deb0ab" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11325329432019673788" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8137583038396810555" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5086659133945837880" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13097895082547773463" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3876778131076528936" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "176559082198378711" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdb52bf8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4862078895406660703" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8678344329916949149" + } + } + ] + } + } + ] + }, + "cborHex": "bf49289094ba27f5228c29bf071b0110025769a21ad6ff413e9f1b21d720f088fee5231b8994be9416e994c31ba469e3ae376d5284446d48cfa349d35779513dd282de11ff48bd61391072bf2aa5d8669f1bad21ea6a02d90b0f9f1b6a6033a2e3eec48effff43deb0abd8669f1b9d2ba71d3fcf22bc9f1b70ee80a89de2c53b1b46977188345679381bb5c5122e949880171b35cd152b8fd1bb281b0273438cc04da8d7ffff44fdb52bf8d8669f1b437992feb6a33c5f9f1b786fac302f39a29dffffff", + "cborBytes": [ + 191, 73, 40, 144, 148, 186, 39, 245, 34, 140, 41, 191, 7, 27, 1, 16, 2, 87, 105, 162, 26, 214, 255, 65, 62, 159, + 27, 33, 215, 32, 240, 136, 254, 229, 35, 27, 137, 148, 190, 148, 22, 233, 148, 195, 27, 164, 105, 227, 174, 55, + 109, 82, 132, 68, 109, 72, 207, 163, 73, 211, 87, 121, 81, 61, 210, 130, 222, 17, 255, 72, 189, 97, 57, 16, 114, + 191, 42, 165, 216, 102, 159, 27, 173, 33, 234, 106, 2, 217, 11, 15, 159, 27, 106, 96, 51, 162, 227, 238, 196, 142, + 255, 255, 67, 222, 176, 171, 216, 102, 159, 27, 157, 43, 167, 29, 63, 207, 34, 188, 159, 27, 112, 238, 128, 168, + 157, 226, 197, 59, 27, 70, 151, 113, 136, 52, 86, 121, 56, 27, 181, 197, 18, 46, 148, 152, 128, 23, 27, 53, 205, + 21, 43, 143, 209, 187, 40, 27, 2, 115, 67, 140, 192, 77, 168, 215, 255, 255, 68, 253, 181, 43, 248, 216, 102, 159, + 27, 67, 121, 146, 254, 182, 163, 60, 95, 159, 27, 120, 111, 172, 48, 47, 57, 162, 157, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3886, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5675551443192751880" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14647177940802058246" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551597" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b4ec39bf79bf5a7081bcb453abbab71b8061bffffffffffffffedd9050a80ff", + "cborBytes": [ + 191, 27, 78, 195, 155, 247, 155, 245, 167, 8, 27, 203, 69, 58, 187, 171, 113, 184, 6, 27, 255, 255, 255, 255, 255, + 255, 255, 237, 217, 5, 10, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3887, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "03cb202772ad51ecb2e49938" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17423923013780579492" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a01a7e50ec203a" + }, + { + "_tag": "ByteArray", + "bytearray": "7f" + }, + { + "_tag": "ByteArray", + "bytearray": "87" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0ea16454215a62ee" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "857fa8af0735" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14300593898394306912" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "63" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4177959144416737302" + } + }, + { + "_tag": "ByteArray", + "bytearray": "44" + }, + { + "_tag": "ByteArray", + "bytearray": "d4c33d383d26e9" + }, + { + "_tag": "ByteArray", + "bytearray": "4c5ec9a13c83" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6fa7ac2364" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9046b8737137b0bcc" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b258673cdb9a203a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14109098492716457173" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e718b208e491f78de2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "05ee013c27fda2bd61" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3423414701216734733" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ce987ec112485c0c4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1288335713823648109" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4c03cb202772ad51ecb2e499389f1bf1ce35aa462524a447a01a7e50ec203a417f4187ff480ea16454215a62eebf46857fa8af07351bc675ea61fee94960ff41639f1b39fb17b4c10df816414447d4c33d383d26e9464c5ec9a13c83ff456fa7ac236449f9046b8737137b0bcc48b258673cdb9a203a1bc3cd96536f5d1cd549e718b208e491f78de2bf4905ee013c27fda2bd611b2f82698860df9e0d497ce987ec112485c0c41b11e116817de8696dffff", + "cborBytes": [ + 191, 76, 3, 203, 32, 39, 114, 173, 81, 236, 178, 228, 153, 56, 159, 27, 241, 206, 53, 170, 70, 37, 36, 164, 71, + 160, 26, 126, 80, 236, 32, 58, 65, 127, 65, 135, 255, 72, 14, 161, 100, 84, 33, 90, 98, 238, 191, 70, 133, 127, + 168, 175, 7, 53, 27, 198, 117, 234, 97, 254, 233, 73, 96, 255, 65, 99, 159, 27, 57, 251, 23, 180, 193, 13, 248, + 22, 65, 68, 71, 212, 195, 61, 56, 61, 38, 233, 70, 76, 94, 201, 161, 60, 131, 255, 69, 111, 167, 172, 35, 100, 73, + 249, 4, 107, 135, 55, 19, 123, 11, 204, 72, 178, 88, 103, 60, 219, 154, 32, 58, 27, 195, 205, 150, 83, 111, 93, + 28, 213, 73, 231, 24, 178, 8, 228, 145, 247, 141, 226, 191, 73, 5, 238, 1, 60, 39, 253, 162, 189, 97, 27, 47, 130, + 105, 136, 96, 223, 158, 13, 73, 124, 233, 135, 236, 17, 36, 133, 192, 196, 27, 17, 225, 22, 129, 125, 232, 105, + 109, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3888, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ab" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "41f68f6bfeaa91" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + } + ] + } + } + ] + }, + "cborHex": "bf1441ab1bffffffffffffffebd8669f1bfffffffffffffffe9f4741f68f6bfeaa911bfffffffffffffffdffffff", + "cborBytes": [ + 191, 20, 65, 171, 27, 255, 255, 255, 255, 255, 255, 255, 235, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, + 255, 254, 159, 71, 65, 246, 143, 107, 254, 170, 145, 27, 255, 255, 255, 255, 255, 255, 255, 253, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3889, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "89b0" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8acafb01b3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19887b97cc8e" + } + } + ] + }, + "cborHex": "bf4289b002458acafb01b34619887b97cc8eff", + "cborBytes": [191, 66, 137, 176, 2, 69, 138, 202, 251, 1, 179, 70, 25, 136, 123, 151, 204, 142, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3890, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1e7a37a069d4" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18218988483982342438" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7baf06957fa5" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a4c841a4579cfc303d" + }, + { + "_tag": "ByteArray", + "bytearray": "15b84513112c48b8c2" + }, + { + "_tag": "ByteArray", + "bytearray": "bae1e55ce6366498e8944fd7" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16365806299278068863" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9f94186bb913b865" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0e0ec740c42c389d97aab7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4784018614171097853" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c7f781f8a211fb8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f996a7b4a53dad93f374" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4845b1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ef2b2e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "693acd0f2479319dbbdb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3c1df4d9beae2a14be44fba2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b12db757" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a13a2c1cb0c6b19f10dccbd4" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ec3980" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15381502047713884514" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cc" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ebf745b17f447fe709ac91e1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14826762744063671132" + } + }, + { + "_tag": "ByteArray", + "bytearray": "25a4f426854e23d5" + }, + { + "_tag": "ByteArray", + "bytearray": "ba2588e3c4" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16785596649367653925" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1547488250531100759" + } + } + ] + } + } + ] + }, + "cborHex": "bf461e7a37a069d41bfcd6d97f72b33926467baf06957fa59f49a4c841a4579cfc303d4915b84513112c48b8c24cbae1e55ce6366498e8944fd71be31f061e9351cc7fff489f94186bb913b865bf4b0e0ec740c42c389d97aab71b42643f9530865afd482c7f781f8a211fb84af996a7b4a53dad93f374434845b143ef2b2e4a693acd0f2479319dbbdb4c3c1df4d9beae2a14be44fba244b12db7574ca13a2c1cb0c6b19f10dccbd443ec39801bd576129e21edf962ff41cc804cebf745b17f447fe709ac91e19f1bcdc33e2900e93b5c4825a4f426854e23d545ba2588e3c41be8f26b37fc8bce251b1579c85d6aff3857ffff", + "cborBytes": [ + 191, 70, 30, 122, 55, 160, 105, 212, 27, 252, 214, 217, 127, 114, 179, 57, 38, 70, 123, 175, 6, 149, 127, 165, + 159, 73, 164, 200, 65, 164, 87, 156, 252, 48, 61, 73, 21, 184, 69, 19, 17, 44, 72, 184, 194, 76, 186, 225, 229, + 92, 230, 54, 100, 152, 232, 148, 79, 215, 27, 227, 31, 6, 30, 147, 81, 204, 127, 255, 72, 159, 148, 24, 107, 185, + 19, 184, 101, 191, 75, 14, 14, 199, 64, 196, 44, 56, 157, 151, 170, 183, 27, 66, 100, 63, 149, 48, 134, 90, 253, + 72, 44, 127, 120, 31, 138, 33, 31, 184, 74, 249, 150, 167, 180, 165, 61, 173, 147, 243, 116, 67, 72, 69, 177, 67, + 239, 43, 46, 74, 105, 58, 205, 15, 36, 121, 49, 157, 187, 219, 76, 60, 29, 244, 217, 190, 174, 42, 20, 190, 68, + 251, 162, 68, 177, 45, 183, 87, 76, 161, 58, 44, 28, 176, 198, 177, 159, 16, 220, 203, 212, 67, 236, 57, 128, 27, + 213, 118, 18, 158, 33, 237, 249, 98, 255, 65, 204, 128, 76, 235, 247, 69, 177, 127, 68, 127, 231, 9, 172, 145, + 225, 159, 27, 205, 195, 62, 41, 0, 233, 59, 92, 72, 37, 164, 244, 38, 133, 78, 35, 213, 69, 186, 37, 136, 227, + 196, 27, 232, 242, 107, 55, 252, 139, 206, 37, 27, 21, 121, 200, 93, 106, 255, 56, 87, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3891, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11649988591494032475" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0cf5abc629f0e42e6a" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "15" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4111848938599028710" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "41015e06f8ebff07029ca502" + } + } + ] + }, + "cborHex": "bf10bf1ba1ad12e6515aec5b490cf5abc629f0e42e6aff124115130e1b391038d2fb4317e64c41015e06f8ebff07029ca502ff", + "cborBytes": [ + 191, 16, 191, 27, 161, 173, 18, 230, 81, 90, 236, 91, 73, 12, 245, 171, 198, 41, 240, 228, 46, 106, 255, 18, 65, + 21, 19, 14, 27, 57, 16, 56, 210, 251, 67, 23, 230, 76, 65, 1, 94, 6, 248, 235, 255, 7, 2, 156, 165, 2, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3892, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7772222250282509300" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "226439712213925056" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "219693044557510048" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8496264213098395934" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07ea57f8f9f8fe06020601" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16175495977876106385" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6bdc7af52779e3f41b032479b7f18d7cc01bfffffffffffffff99f1b030c81a8f87975a0ff1bffffffffffffffff1b75e8cb496397f91e4b07ea57f8f9f8fe060206019f1be07ae7e3f310ac91ffff", + "cborBytes": [ + 191, 27, 107, 220, 122, 245, 39, 121, 227, 244, 27, 3, 36, 121, 183, 241, 141, 124, 192, 27, 255, 255, 255, 255, + 255, 255, 255, 249, 159, 27, 3, 12, 129, 168, 248, 121, 117, 160, 255, 27, 255, 255, 255, 255, 255, 255, 255, 255, + 27, 117, 232, 203, 73, 99, 151, 249, 30, 75, 7, 234, 87, 248, 249, 248, 254, 6, 2, 6, 1, 159, 27, 224, 122, 231, + 227, 243, 16, 172, 145, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3893, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06051d02090516bfb60710ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551615" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c629" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ede31c958f1cdeae290377" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf4c06051d02090516bfb60710ff1bffffffffffffffff42c6291bfffffffffffffff84bede31c958f1cdeae29037780ff", + "cborBytes": [ + 191, 76, 6, 5, 29, 2, 9, 5, 22, 191, 182, 7, 16, 255, 27, 255, 255, 255, 255, 255, 255, 255, 255, 66, 198, 41, 27, + 255, 255, 255, 255, 255, 255, 255, 248, 75, 237, 227, 28, 149, 143, 28, 222, 174, 41, 3, 119, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3894, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6104067493128597622" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5809282782030227727" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11396344622758017559" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7c" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10702565975893001993" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10783240674708595084" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1327312534851799320" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3063391565734760175" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11416410241613263454" + } + }, + { + "_tag": "ByteArray", + "bytearray": "057ac489" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7989493841865360213" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13089153391548777301" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13278481700161773316" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3713047162836663826" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6433054902062838084" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b54b6010b54f070769f1b509eb7e94eb4690f1b9e27f30dd16cba17417cff1b9487270cea48c709a01b95a5c442f78ca18cd8669f1b126b8fb7d1c3c9189f1b2a835a66038c4eef1b9e6f3ca0c57d725e44057ac4891b6ee06251ab8e43551bb5a603a909dd4355ffff1bb846a4c0feaadf04bf1b338764b8d726be121b5946cd59820a7144ffff", + "cborBytes": [ + 191, 27, 84, 182, 1, 11, 84, 240, 112, 118, 159, 27, 80, 158, 183, 233, 78, 180, 105, 15, 27, 158, 39, 243, 13, + 209, 108, 186, 23, 65, 124, 255, 27, 148, 135, 39, 12, 234, 72, 199, 9, 160, 27, 149, 165, 196, 66, 247, 140, 161, + 140, 216, 102, 159, 27, 18, 107, 143, 183, 209, 195, 201, 24, 159, 27, 42, 131, 90, 102, 3, 140, 78, 239, 27, 158, + 111, 60, 160, 197, 125, 114, 94, 68, 5, 122, 196, 137, 27, 110, 224, 98, 81, 171, 142, 67, 85, 27, 181, 166, 3, + 169, 9, 221, 67, 85, 255, 255, 27, 184, 70, 164, 192, 254, 170, 223, 4, 191, 27, 51, 135, 100, 184, 215, 38, 190, + 18, 27, 89, 70, 205, 89, 130, 10, 113, 68, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3895, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12225555437128906100" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5311537474300281545" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b3c5e614cd" + }, + { + "_tag": "ByteArray", + "bytearray": "04ffbc3200e4fb0165" + }, + { + "_tag": "ByteArray", + "bytearray": "fffc41" + }, + { + "_tag": "ByteArray", + "bytearray": "186e0070" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a30509041cfb03373442ff00" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "d32068c1" + } + ] + } + } + ] + }, + "cborHex": "bf1ba9a9e5e573e9f574d8669f1b49b65f30eed802c99f0a45b3c5e614cd4904ffbc3200e4fb016543fffc4144186e0070ffff4ca30509041cfb03373442ff009f44d32068c1ffff", + "cborBytes": [ + 191, 27, 169, 169, 229, 229, 115, 233, 245, 116, 216, 102, 159, 27, 73, 182, 95, 48, 238, 216, 2, 201, 159, 10, + 69, 179, 197, 230, 20, 205, 73, 4, 255, 188, 50, 0, 228, 251, 1, 101, 67, 255, 252, 65, 68, 24, 110, 0, 112, 255, + 255, 76, 163, 5, 9, 4, 28, 251, 3, 55, 52, 66, 255, 0, 159, 68, 211, 32, 104, 193, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3896, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1828f1f056" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14298308643916042575" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "44c494" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d6da1e9a1dbdd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15583530594460971852" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8edb99c7ec0f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "175892337884491901" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ed0be7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f23d" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5ec49d08" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1687164306600616679" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b5c6bc943b43c154ab" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "791754216800145298" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12368939271275250014" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15953379791513743241" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6490781145629999268" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9fab19" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4006853158725906720" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bfad454208" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "101107435894159836" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3e025b7feda3d0" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12989483389555677103" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "49b13a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8d72be51306319e70c" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3169706993010799405" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e778" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "707896088336444277" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a9283280" + }, + { + "_tag": "ByteArray", + "bytearray": "3c7162d45b4b970d9820c54a" + } + ] + } + } + ] + }, + "cborHex": "bf451828f1f056d8669f1bc66dcbf4b983514f80ff4344c494bf474d6da1e9a1dbdd1bd843d282b547334c468edb99c7ec0f1b0270e5263e51707d43ed0be742f23dff445ec49d08d8669f1b176a02ff74a5e2e79f49b5c6bc943b43c154ab1b0afce043e9ca4f921baba74cbbd8bd815effff41b9d8669f1bdd65ca6550126f899f1b5a13e30ff41440a4439fab191b379b33b7f9027120ffff45bfad454208bf1b016734ad609f39dc473e025b7feda3d01bb443ea52524d97af4349b13a498d72be51306319e70c1b2bfd0fb7607af32dff42e7789f1b09d2f3bde32eab7544a92832804c3c7162d45b4b970d9820c54affff", + "cborBytes": [ + 191, 69, 24, 40, 241, 240, 86, 216, 102, 159, 27, 198, 109, 203, 244, 185, 131, 81, 79, 128, 255, 67, 68, 196, + 148, 191, 71, 77, 109, 161, 233, 161, 219, 221, 27, 216, 67, 210, 130, 181, 71, 51, 76, 70, 142, 219, 153, 199, + 236, 15, 27, 2, 112, 229, 38, 62, 81, 112, 125, 67, 237, 11, 231, 66, 242, 61, 255, 68, 94, 196, 157, 8, 216, 102, + 159, 27, 23, 106, 2, 255, 116, 165, 226, 231, 159, 73, 181, 198, 188, 148, 59, 67, 193, 84, 171, 27, 10, 252, 224, + 67, 233, 202, 79, 146, 27, 171, 167, 76, 187, 216, 189, 129, 94, 255, 255, 65, 185, 216, 102, 159, 27, 221, 101, + 202, 101, 80, 18, 111, 137, 159, 27, 90, 19, 227, 15, 244, 20, 64, 164, 67, 159, 171, 25, 27, 55, 155, 51, 183, + 249, 2, 113, 32, 255, 255, 69, 191, 173, 69, 66, 8, 191, 27, 1, 103, 52, 173, 96, 159, 57, 220, 71, 62, 2, 91, + 127, 237, 163, 208, 27, 180, 67, 234, 82, 82, 77, 151, 175, 67, 73, 177, 58, 73, 141, 114, 190, 81, 48, 99, 25, + 231, 12, 27, 43, 253, 15, 183, 96, 122, 243, 45, 255, 66, 231, 120, 159, 27, 9, 210, 243, 189, 227, 46, 171, 117, + 68, 169, 40, 50, 128, 76, 60, 113, 98, 212, 91, 75, 151, 13, 152, 32, 197, 74, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3897, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6860856442692744550" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7880261274649533408" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12201629110014190408" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5438079559575779159" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b7c4ad78" + }, + { + "_tag": "ByteArray", + "bytearray": "93bdcb2a09e33d" + } + ] + } + } + ] + }, + "cborHex": "bf1b5f36a89591a6b566d8669f1b6d5c4fe0bcc09be09f1ba954e5074f7623481b4b77f08c18d3b75744b7c4ad784793bdcb2a09e33dffffff", + "cborBytes": [ + 191, 27, 95, 54, 168, 149, 145, 166, 181, 102, 216, 102, 159, 27, 109, 92, 79, 224, 188, 192, 155, 224, 159, 27, + 169, 84, 229, 7, 79, 118, 35, 72, 27, 75, 119, 240, 140, 24, 211, 183, 87, 68, 183, 196, 173, 120, 71, 147, 189, + 203, 42, 9, 227, 61, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3898, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06e11905" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8813383990850268216" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "69f496" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "e0c1ce3dfc01b81b" + } + ] + } + } + ] + }, + "cborHex": "bf4406e11905d8669f1b7a4f6e0b5bbeac3880ff4369f4969f48e0c1ce3dfc01b81bffff", + "cborBytes": [ + 191, 68, 6, 225, 25, 5, 216, 102, 159, 27, 122, 79, 110, 11, 91, 190, 172, 56, 128, 255, 67, 105, 244, 150, 159, + 72, 224, 193, 206, 61, 252, 1, 184, 27, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3899, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15926213309836508029" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10087962711503958246" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1bdd05469fe5e73b7dd8669f1b8bffa4a3469470e680ffff", + "cborBytes": [ + 191, 27, 221, 5, 70, 159, 229, 231, 59, 125, 216, 102, 159, 27, 139, 255, 164, 163, 70, 148, 112, 230, 128, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3900, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6525294483965308839" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b5a8e80c2bb916fa780ff", + "cborBytes": [191, 27, 90, 142, 128, 194, 187, 145, 111, 167, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3901, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6a309dd2e64b97" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbda74ad89981b4990" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14910906002683782511" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551595" + } + } + } + ] + }, + "cborHex": "bf476a309dd2e64b978049dbda74ad89981b49901bceee2e021134e56f41f81bffffffffffffffebff", + "cborBytes": [ + 191, 71, 106, 48, 157, 210, 230, 75, 151, 128, 73, 219, 218, 116, 173, 137, 152, 27, 73, 144, 27, 206, 238, 46, 2, + 17, 52, 229, 111, 65, 248, 27, 255, 255, 255, 255, 255, 255, 255, 235, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3902, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9548009686553436202" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16358905847423217550" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "70" + } + } + ] + }, + "cborHex": "bf1b84815838ef01a02a801be3068231edb8af8e4170ff", + "cborBytes": [ + 191, 27, 132, 129, 88, 56, 239, 1, 160, 42, 128, 27, 227, 6, 130, 49, 237, 184, 175, 142, 65, 112, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3903, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17562634410151266102" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "19" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "000746" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13870096062789030665" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5409166616535978807" + } + }, + { + "_tag": "ByteArray", + "bytearray": "bfe6e01587c3f60d8c9c7a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15079631192102295224" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bf3bb02f1f91e4736d9050c9f43000746ff1bffffffffffffffee9f1bc07c7ae1d71593091b4b113860f58753374bbfe6e01587c3f60d8c9c7a1bd1459cac852856b8ffff", + "cborBytes": [ + 191, 27, 243, 187, 2, 241, 249, 30, 71, 54, 217, 5, 12, 159, 67, 0, 7, 70, 255, 27, 255, 255, 255, 255, 255, 255, + 255, 238, 159, 27, 192, 124, 122, 225, 215, 21, 147, 9, 27, 75, 17, 56, 96, 245, 135, 83, 55, 75, 191, 230, 224, + 21, 135, 195, 246, 13, 140, 156, 122, 27, 209, 69, 156, 172, 133, 40, 86, 184, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3904, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4966559203635923593" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ce2b92d046689e" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14985887502776151012" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b44ecc34820aa8a8947ce2b92d046689e1bcff89148fef02be480ff", + "cborBytes": [ + 191, 27, 68, 236, 195, 72, 32, 170, 138, 137, 71, 206, 43, 146, 208, 70, 104, 158, 27, 207, 248, 145, 72, 254, + 240, 43, 228, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3905, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13232426474292462615" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12547192861941197746" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "f5d8091235ea84" + }, + { + "_tag": "ByteArray", + "bytearray": "cf8a" + } + ] + } + } + ] + }, + "cborHex": "bf1bb7a305c51cad4417d8669f1bae20956e18526bb29f47f5d8091235ea8442cf8affffff", + "cborBytes": [ + 191, 27, 183, 163, 5, 197, 28, 173, 68, 23, 216, 102, 159, 27, 174, 32, 149, 110, 24, 82, 107, 178, 159, 71, 245, + 216, 9, 18, 53, 234, 132, 66, 207, 138, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3906, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "4cc76d3577c6a20165a8ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14282411194540864086" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c336d2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ea50ad7830d48fe27b9e6a" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7301270634365561891" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12619289192778073156" + } + }, + { + "_tag": "ByteArray", + "bytearray": "fffceb" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10912530777193723452" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11821974529619850600" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "72004312187627729" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15915029517050255958" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18253449484934918796" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9430614998661113399" + } + }, + { + "_tag": "ByteArray", + "bytearray": "47fb714d415e0124374276d4" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5e961a21" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16750887828293278344" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "697fcd8415c96344a48b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ac8377afc0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "caf73d18bf6488f7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85e89a426d2664992091" + } + } + ] + } + } + ] + }, + "cborHex": "bf0abf4b4cc76d3577c6a20165a8ff1bc635514f5aabb25643c336d24bea50ad7830d48fe27b9e6aff1b655352f54a59ac23d87f9f1baf20b8a93576844443fffcebff1b977118ecbf26363c801ba4101732fdb4f5681b00ffcf8a5a3d68d11bdcdd8b0639a31a569f1bfd5147987b15328c1b82e0466030aaa6374c47fb714d415e0124374276d4ff1bfffffffffffffff5bf445e961a211be8771bbad5d5da884a697fcd8415c96344a48b45ac8377afc048caf73d18bf6488f74a85e89a426d2664992091ffff", + "cborBytes": [ + 191, 10, 191, 75, 76, 199, 109, 53, 119, 198, 162, 1, 101, 168, 255, 27, 198, 53, 81, 79, 90, 171, 178, 86, 67, + 195, 54, 210, 75, 234, 80, 173, 120, 48, 212, 143, 226, 123, 158, 106, 255, 27, 101, 83, 82, 245, 74, 89, 172, 35, + 216, 127, 159, 27, 175, 32, 184, 169, 53, 118, 132, 68, 67, 255, 252, 235, 255, 27, 151, 113, 24, 236, 191, 38, + 54, 60, 128, 27, 164, 16, 23, 50, 253, 180, 245, 104, 27, 0, 255, 207, 138, 90, 61, 104, 209, 27, 220, 221, 139, + 6, 57, 163, 26, 86, 159, 27, 253, 81, 71, 152, 123, 21, 50, 140, 27, 130, 224, 70, 96, 48, 170, 166, 55, 76, 71, + 251, 113, 77, 65, 94, 1, 36, 55, 66, 118, 212, 255, 27, 255, 255, 255, 255, 255, 255, 255, 245, 191, 68, 94, 150, + 26, 33, 27, 232, 119, 27, 186, 213, 213, 218, 136, 74, 105, 127, 205, 132, 21, 201, 99, 68, 164, 139, 69, 172, + 131, 119, 175, 192, 72, 202, 247, 61, 24, 191, 100, 136, 247, 74, 133, 232, 154, 66, 109, 38, 100, 153, 32, 145, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3907, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16825137544161531702" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3211159ac0" + } + } + ] + }, + "cborHex": "bf1be97ee573f8d61736453211159ac0ff", + "cborBytes": [191, 27, 233, 126, 229, 115, 248, 214, 23, 54, 69, 50, 17, 21, 154, 192, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3908, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4815273997014402099" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "43b8ff1d" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17119699795573769978" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dbd4ff8ae14b" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17768089478637757257" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf1b42d34a30183804339f4443b8ff1d1bed956442908086faff46dbd4ff8ae14bd8669f1bf694ef3dcf8f234980ffff", + "cborBytes": [ + 191, 27, 66, 211, 74, 48, 24, 56, 4, 51, 159, 68, 67, 184, 255, 29, 27, 237, 149, 100, 66, 144, 128, 134, 250, + 255, 70, 219, 212, 255, 138, 225, 75, 216, 102, 159, 27, 246, 148, 239, 61, 207, 143, 35, 73, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3909, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0400f8e325f68f013cb40200" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6699a01a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ff" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "08" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14378703493872310156" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6869349494293222972" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18049869072600293721" + } + }, + { + "_tag": "ByteArray", + "bytearray": "56447aa7e7f0295192" + }, + { + "_tag": "ByteArray", + "bytearray": "0f6c757f6e1df73bbd2b7633" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b9f907fb03f90103b2" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551599" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b5c05828ae7c39b294" + } + ] + } + } + ] + }, + "cborHex": "bf4c0400f8e325f68f013cb40200bf0b446699a01a41ff13ff41089f1bc78b6aa562ed578c1b5f54d4f83d5b563c1bfa7e044a0aa661594956447aa7e7f02951924c0f6c757f6e1df73bbd2b7633ff49b9f907fb03f90103b2d8669f1bffffffffffffffef9f49b5c05828ae7c39b294ffffff", + "cborBytes": [ + 191, 76, 4, 0, 248, 227, 37, 246, 143, 1, 60, 180, 2, 0, 191, 11, 68, 102, 153, 160, 26, 65, 255, 19, 255, 65, 8, + 159, 27, 199, 139, 106, 165, 98, 237, 87, 140, 27, 95, 84, 212, 248, 61, 91, 86, 60, 27, 250, 126, 4, 74, 10, 166, + 97, 89, 73, 86, 68, 122, 167, 231, 240, 41, 81, 146, 76, 15, 108, 117, 127, 110, 29, 247, 59, 189, 43, 118, 51, + 255, 73, 185, 249, 7, 251, 3, 249, 1, 3, 178, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 159, 73, + 181, 192, 88, 40, 174, 124, 57, 178, 148, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3910, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3b7e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b2f593d3ed58b069a99" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8354395675546609479" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6001379244651131791" + } + }, + { + "_tag": "ByteArray", + "bytearray": "57c6caf7a32e8658c32266" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8106277937189960965" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8a3c743e4aa3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18082983278200605968" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a65f583c83c021fcf92a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9368691518864b6b0442" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "aac371" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12849751115670402468" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fd9e96ea93b4d47b5dd4b7" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13624611815321650192" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b6e292489ad10c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16282782217041378100" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3419c" + } + } + ] + } + } + ] + }, + "cborHex": "bf412b423b7e4a7b2f593d3ed58b069a99d8669f1b73f0c69a7a03e7479f1b53492ea057d5338f4b57c6caf7a32e8658c322661b707f48d5c0cb3d05ffff468a3c743e4aa31bfaf3a97bd879cd104aa65f583c83c021fcf92a4a9368691518864b6b044243aac3711bb2537c8f0db6b5a44bfd9e96ea93b4d47b5dd4b7bf1bbd1458427ed6441047b6e292489ad10c1be1f8102811cc7b3443e3419cffff", + "cborBytes": [ + 191, 65, 43, 66, 59, 126, 74, 123, 47, 89, 61, 62, 213, 139, 6, 154, 153, 216, 102, 159, 27, 115, 240, 198, 154, + 122, 3, 231, 71, 159, 27, 83, 73, 46, 160, 87, 213, 51, 143, 75, 87, 198, 202, 247, 163, 46, 134, 88, 195, 34, + 102, 27, 112, 127, 72, 213, 192, 203, 61, 5, 255, 255, 70, 138, 60, 116, 62, 74, 163, 27, 250, 243, 169, 123, 216, + 121, 205, 16, 74, 166, 95, 88, 60, 131, 192, 33, 252, 249, 42, 74, 147, 104, 105, 21, 24, 134, 75, 107, 4, 66, 67, + 170, 195, 113, 27, 178, 83, 124, 143, 13, 182, 181, 164, 75, 253, 158, 150, 234, 147, 180, 212, 123, 93, 212, 183, + 191, 27, 189, 20, 88, 66, 126, 214, 68, 16, 71, 182, 226, 146, 72, 154, 209, 12, 27, 225, 248, 16, 40, 17, 204, + 123, 52, 67, 227, 65, 156, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3911, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0482" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551614" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "36" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "01024a077a7203" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "40d0346134da8dbcd8d58c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "047579050afc" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8c35fe" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d732f905f7cf" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18003531562630480561" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5651504278479056559" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "248819570263209816" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2184165638445847662" + } + } + ] + } + } + ] + }, + "cborHex": "bf4204821bfffffffffffffffe41364701024a077a72034b40d0346134da8dbcd8d58cbf46047579050afc438c35feff46d732f905f7cf9f1bf9d96491c51f82b11b4e6e2d32c5582eaf1b0373fc14b2b437581b1e4fb713722dd46effff", + "cborBytes": [ + 191, 66, 4, 130, 27, 255, 255, 255, 255, 255, 255, 255, 254, 65, 54, 71, 1, 2, 74, 7, 122, 114, 3, 75, 64, 208, + 52, 97, 52, 218, 141, 188, 216, 213, 140, 191, 70, 4, 117, 121, 5, 10, 252, 67, 140, 53, 254, 255, 70, 215, 50, + 249, 5, 247, 207, 159, 27, 249, 217, 100, 145, 197, 31, 130, 177, 27, 78, 110, 45, 50, 197, 88, 46, 175, 27, 3, + 115, 252, 20, 178, 180, 55, 88, 27, 30, 79, 183, 19, 114, 45, 212, 110, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3912, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a99fe" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17754955817872407182" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a1b647ceee" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5452816831202625873" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ab66b21f67" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8550770405050250565" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6567792182189088733" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10945618037684876806" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7255556850662815608" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b198bfcf045e14066640fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5633635add644a59bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b8d140c72585e939" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0b79577a650fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb4c64a63670" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18150523657614863672" + } + } + } + ] + }, + "cborHex": "bf430a99fe1bf666463f1f0a3a8e45a1b647ceee1b4bac4c04891a895145ab66b21f67d8669f1b76aa706124f175459f1b5b257c3129f7dfdd1b97e6a59ce750b6061b64b0ea839b68b778ffff4bb198bfcf045e14066640fd495633635add644a59bb48b8d140c72585e93947e0b79577a650fe46cb4c64a636701bfbe39d19db752d38ff", + "cborBytes": [ + 191, 67, 10, 153, 254, 27, 246, 102, 70, 63, 31, 10, 58, 142, 69, 161, 182, 71, 206, 238, 27, 75, 172, 76, 4, 137, + 26, 137, 81, 69, 171, 102, 178, 31, 103, 216, 102, 159, 27, 118, 170, 112, 97, 36, 241, 117, 69, 159, 27, 91, 37, + 124, 49, 41, 247, 223, 221, 27, 151, 230, 165, 156, 231, 80, 182, 6, 27, 100, 176, 234, 131, 155, 104, 183, 120, + 255, 255, 75, 177, 152, 191, 207, 4, 94, 20, 6, 102, 64, 253, 73, 86, 51, 99, 90, 221, 100, 74, 89, 187, 72, 184, + 209, 64, 199, 37, 133, 233, 57, 71, 224, 183, 149, 119, 166, 80, 254, 70, 203, 76, 100, 166, 54, 112, 27, 251, + 227, 157, 25, 219, 117, 45, 56, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3913, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7483725367753643854" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17095405994604801521" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8859548109648178299" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16030373778835995886" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8dc7b0199672" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7bfe03246e91f14024" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9d3e28" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "a5c94729cf3bd107f1ed34c5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e2689f23" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b67db88924d89174e1bed3f152d3f80adf11b7af37010da102c7b1bde775404f0417cee468dc7b0199672bf497bfe03246e91f14024439d3e284ca5c94729cf3bd107f1ed34c544e2689f23ffff", + "cborBytes": [ + 191, 27, 103, 219, 136, 146, 77, 137, 23, 78, 27, 237, 63, 21, 45, 63, 128, 173, 241, 27, 122, 243, 112, 16, 218, + 16, 44, 123, 27, 222, 119, 84, 4, 240, 65, 124, 238, 70, 141, 199, 176, 25, 150, 114, 191, 73, 123, 254, 3, 36, + 110, 145, 241, 64, 36, 67, 157, 62, 40, 76, 165, 201, 71, 41, 207, 59, 209, 7, 241, 237, 52, 197, 68, 226, 104, + 159, 35, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3914, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11876129336230148488" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3ee02c76b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14982055272142926895" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8823374917695870901" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15953507959795223637" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "88fa0ba4264e1097a17e622d" + } + } + ] + }, + "cborHex": "bf1ba4d07cb57897f98845c3ee02c76b1bcfeaf3e44558f42f1b7a72ecbd495a97b51bdd663ef6d0f60c554c88fa0ba4264e1097a17e622dff", + "cborBytes": [ + 191, 27, 164, 208, 124, 181, 120, 151, 249, 136, 69, 195, 238, 2, 199, 107, 27, 207, 234, 243, 228, 69, 88, 244, + 47, 27, 122, 114, 236, 189, 73, 90, 151, 181, 27, 221, 102, 62, 246, 208, 246, 12, 85, 76, 136, 250, 11, 164, 38, + 78, 16, 151, 161, 126, 98, 45, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3915, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12497882200198892923" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15979049755665265731" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11527641040153521911" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7244456810781409356" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6f359b427d194cae451fb2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8090976064882257523" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf0a9f1bad7165a4fb884d7b1bddc0fd1796b874431b9ffa68733090aef7ff1b64897b162d49004c4b6f359b427d194cae451fb21b7048ebdcf97eae73d87980ff", + "cborBytes": [ + 191, 10, 159, 27, 173, 113, 101, 164, 251, 136, 77, 123, 27, 221, 192, 253, 23, 150, 184, 116, 67, 27, 159, 250, + 104, 115, 48, 144, 174, 247, 255, 27, 100, 137, 123, 22, 45, 73, 0, 76, 75, 111, 53, 155, 66, 125, 25, 76, 174, + 69, 31, 178, 27, 112, 72, 235, 220, 249, 126, 174, 115, 216, 121, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3916, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7588555188533792656" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4437743126510508848" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8260042661197687581" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11750918289409386229" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5209019538591054653" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13901983777785702963" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4617285757345741602" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15069760805664744040" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3989598269886898315" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b694ff6bcf3010f90bf1b3d9607dc84171b301b72a191096a42ab1d1ba313a5ecd8e326f51b484a27abf9c9fb3d1bc0edc4970c28ea331b4013e4eed1103b221bd1228b9c17c062681b375de67d191f208bffff", + "cborBytes": [ + 191, 27, 105, 79, 246, 188, 243, 1, 15, 144, 191, 27, 61, 150, 7, 220, 132, 23, 27, 48, 27, 114, 161, 145, 9, 106, + 66, 171, 29, 27, 163, 19, 165, 236, 216, 227, 38, 245, 27, 72, 74, 39, 171, 249, 201, 251, 61, 27, 192, 237, 196, + 151, 12, 40, 234, 51, 27, 64, 19, 228, 238, 209, 16, 59, 34, 27, 209, 34, 139, 156, 23, 192, 98, 104, 27, 55, 93, + 230, 125, 25, 31, 32, 139, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3917, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8431371083166974718" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18042263277628255177" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "033fb29eecd79a9c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "3977521777164973641" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "0575d7b69f7f8695797ec6bb" + }, + { + "_tag": "ByteArray", + "bytearray": "2202" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14042391295598009893" + } + }, + { + "_tag": "ByteArray", + "bytearray": "f9875f9b1a93488624da" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18353341335648001424" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "bd1415" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16304841990382996475" + } + } + } + ] + }, + "cborHex": "bf1b75023f542dab02fed8669f1bfa62fedbe71b6bc980ff48033fb29eecd79a9cd8669f1b3732fefb864c76499f4c0575d7b69f7f8695797ec6bb4222021bc2e0987bcb281e254af9875f9b1a93488624da1bfeb42ab460cadd90ffff43bd14151be2466f674ba6cbfbff", + "cborBytes": [ + 191, 27, 117, 2, 63, 84, 45, 171, 2, 254, 216, 102, 159, 27, 250, 98, 254, 219, 231, 27, 107, 201, 128, 255, 72, + 3, 63, 178, 158, 236, 215, 154, 156, 216, 102, 159, 27, 55, 50, 254, 251, 134, 76, 118, 73, 159, 76, 5, 117, 215, + 182, 159, 127, 134, 149, 121, 126, 198, 187, 66, 34, 2, 27, 194, 224, 152, 123, 203, 40, 30, 37, 74, 249, 135, 95, + 155, 26, 147, 72, 134, 36, 218, 27, 254, 180, 42, 180, 96, 202, 221, 144, 255, 255, 67, 189, 20, 21, 27, 226, 70, + 111, 103, 75, 166, 203, 251, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3918, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04995002e805f8d7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0300fffdb2a2a204" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "07fdfefa76fc03914cd05b06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0d793a" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b9449" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "21a22c50b4638a65" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dda4af483612" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76d7b1c88811" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad05" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1660023593031914379" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2305b9a707dce9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4828418135187915040" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "897819a46f368b0ee811" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13258882981847798963" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1281848258877574244" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4804995002e805f8d7480300fffdb2a2a2044c07fdfefa76fc03914cd05b060a430d793a435b94494821a22c50b4638a6546dda4af4836124676d7b1c888111bffffffffffffffee42ad05bf1b170996a9a56f538b472305b9a707dce91b4301fcb63eee01204a897819a46f368b0ee8111bb80103d2cb8294b31b11ca0a332e59cc64ffff", + "cborBytes": [ + 191, 72, 4, 153, 80, 2, 232, 5, 248, 215, 72, 3, 0, 255, 253, 178, 162, 162, 4, 76, 7, 253, 254, 250, 118, 252, 3, + 145, 76, 208, 91, 6, 10, 67, 13, 121, 58, 67, 91, 148, 73, 72, 33, 162, 44, 80, 180, 99, 138, 101, 70, 221, 164, + 175, 72, 54, 18, 70, 118, 215, 177, 200, 136, 17, 27, 255, 255, 255, 255, 255, 255, 255, 238, 66, 173, 5, 191, 27, + 23, 9, 150, 169, 165, 111, 83, 139, 71, 35, 5, 185, 167, 7, 220, 233, 27, 67, 1, 252, 182, 62, 238, 1, 32, 74, + 137, 120, 25, 164, 111, 54, 139, 14, 232, 17, 27, 184, 1, 3, 210, 203, 130, 148, 179, 27, 17, 202, 10, 51, 46, 89, + 204, 100, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3919, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "072600" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4815e7e0d3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551614" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4207e3f5c5" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf43072600454815e7e0d3411dd8669f1bfffffffffffffffe9f03ffff454207e3f5c580ff", + "cborBytes": [ + 191, 67, 7, 38, 0, 69, 72, 21, 231, 224, 211, 65, 29, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 254, + 159, 3, 255, 255, 69, 66, 7, 227, 245, 197, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3920, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "495359267723083355" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ccad" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2926222979000674417" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c0ebe7e1623" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a2b59fa7e330fbec66bbba" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "50" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15458066553207210817" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7144e09e029f2e96" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12308360900612788484" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "848f39f615405ba854f301" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "86f3d880c4973fd8daa47664" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9175b82f21fd2461204ad7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10178270508972398645" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6350752945439878277" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9000095358322952735" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18227439690327731830" + } + }, + { + "_tag": "ByteArray", + "bytearray": "b7d93b8c8b0e7d13" + }, + { + "_tag": "ByteArray", + "bytearray": "381bcbfa3b068e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8266816286184310397" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7232373916761547696" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13666120661941994709" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "70f21e86aa3c06" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9365513821312856039" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18165498367174736005" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "447f6a12309c4f7b7d913d" + } + } + ] + }, + "cborHex": "bf1b06dfdea124d4fe5b9f42ccadff1b289c084baceba871bf463c0ebe7e16234ba2b59fa7e330fbec66bbba41501bd68615a13a434341487144e09e029f2e961baad01506d05511044b848f39f615405ba854f3014c86f3d880c4973fd8daa476644b9175b82f21fd2461204ad71b8d407b19e322583541d71b58226827f935ac85ff1b7ce6c30b397b4a1f9f1bfcf4dfd342d72e7648b7d93b8c8b0e7d1347381bcbfa3b068e1b72b9a19ce16e067d1b645e8dc22f5f63b0ff1bbda7d055f8adc4d5bf4770f21e86aa3c061b81f8fd332a5d2fe7ff1bfc18d0851f6378854b447f6a12309c4f7b7d913dff", + "cborBytes": [ + 191, 27, 6, 223, 222, 161, 36, 212, 254, 91, 159, 66, 204, 173, 255, 27, 40, 156, 8, 75, 172, 235, 168, 113, 191, + 70, 60, 14, 190, 126, 22, 35, 75, 162, 181, 159, 167, 227, 48, 251, 236, 102, 187, 186, 65, 80, 27, 214, 134, 21, + 161, 58, 67, 67, 65, 72, 113, 68, 224, 158, 2, 159, 46, 150, 27, 170, 208, 21, 6, 208, 85, 17, 4, 75, 132, 143, + 57, 246, 21, 64, 91, 168, 84, 243, 1, 76, 134, 243, 216, 128, 196, 151, 63, 216, 218, 164, 118, 100, 75, 145, 117, + 184, 47, 33, 253, 36, 97, 32, 74, 215, 27, 141, 64, 123, 25, 227, 34, 88, 53, 65, 215, 27, 88, 34, 104, 39, 249, + 53, 172, 133, 255, 27, 124, 230, 195, 11, 57, 123, 74, 31, 159, 27, 252, 244, 223, 211, 66, 215, 46, 118, 72, 183, + 217, 59, 140, 139, 14, 125, 19, 71, 56, 27, 203, 250, 59, 6, 142, 27, 114, 185, 161, 156, 225, 110, 6, 125, 27, + 100, 94, 141, 194, 47, 95, 99, 176, 255, 27, 189, 167, 208, 85, 248, 173, 196, 213, 191, 71, 112, 242, 30, 134, + 170, 60, 6, 27, 129, 248, 253, 51, 42, 93, 47, 231, 255, 27, 252, 24, 208, 133, 31, 99, 120, 133, 75, 68, 127, + 106, 18, 48, 156, 79, 123, 125, 145, 61, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3921, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "330402104781010252" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "15481503614382595380" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2997868038259090246" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16291550969736131673" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15174514566505524811" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2638565028888529651" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "49891ede23c8bf" + }, + { + "_tag": "ByteArray", + "bytearray": "9e1c46" + }, + { + "_tag": "ByteArray", + "bytearray": "82b941f67ce3e6" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13411514176862281331" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6a71d7ebc2c9da29a866" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14988433187232178621" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6f52912e394332ecfd" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18214680210540240712" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "726a5ccf12" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c8a8797f50bced1508" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16807447355913011210" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "96dd1763bb9e27" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17711254469762772342" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a58b7f4e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10860531094440514971" + } + }, + { + "_tag": "ByteArray", + "bytearray": "3d863e" + }, + { + "_tag": "ByteArray", + "bytearray": "c3f5d8687d360c" + }, + { + "_tag": "ByteArray", + "bytearray": "fe5da88c" + } + ] + } + } + ] + }, + "cborHex": "bf1b0495d2f6b883754cd8669f1bd6d9598344335d349f1b299a9118efee23461be217374a674af4591bd296b499a78d6e4bffff1b249e10e9ffab4af39f4749891ede23c8bf439e1c464782b941f67ce3e6ff1bba1f45162bfdde734a6a71d7ebc2c9da29a8661bd0019c9258a661bdbf496f52912e394332ecfd1bfcc78b255e969f4845726a5ccf1249c8a8797f50bced1508ff1be9400c520e46000a4796dd1763bb9e271bf5cb041a1cc26d769f44a58b7f4e1b96b85b7d2436159b433d863e47c3f5d8687d360c44fe5da88cffff", + "cborBytes": [ + 191, 27, 4, 149, 210, 246, 184, 131, 117, 76, 216, 102, 159, 27, 214, 217, 89, 131, 68, 51, 93, 52, 159, 27, 41, + 154, 145, 24, 239, 238, 35, 70, 27, 226, 23, 55, 74, 103, 74, 244, 89, 27, 210, 150, 180, 153, 167, 141, 110, 75, + 255, 255, 27, 36, 158, 16, 233, 255, 171, 74, 243, 159, 71, 73, 137, 30, 222, 35, 200, 191, 67, 158, 28, 70, 71, + 130, 185, 65, 246, 124, 227, 230, 255, 27, 186, 31, 69, 22, 43, 253, 222, 115, 74, 106, 113, 215, 235, 194, 201, + 218, 41, 168, 102, 27, 208, 1, 156, 146, 88, 166, 97, 189, 191, 73, 111, 82, 145, 46, 57, 67, 50, 236, 253, 27, + 252, 199, 139, 37, 94, 150, 159, 72, 69, 114, 106, 92, 207, 18, 73, 200, 168, 121, 127, 80, 188, 237, 21, 8, 255, + 27, 233, 64, 12, 82, 14, 70, 0, 10, 71, 150, 221, 23, 99, 187, 158, 39, 27, 245, 203, 4, 26, 28, 194, 109, 118, + 159, 68, 165, 139, 127, 78, 27, 150, 184, 91, 125, 36, 54, 21, 155, 67, 61, 134, 62, 71, 195, 245, 216, 104, 125, + 54, 12, 68, 254, 93, 168, 140, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3922, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "338650968667744396" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04446a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10597955362072540953" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "11563ec9f3105b74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c87a7075065ae6dc7a497af5" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5641d006cc74" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5813093e24bd75" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8566a2e7f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "3af74385a1e28b5a1b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e39b4bf4411cb6" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "390ee417238e" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9297864709893616883" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5b8c" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16818274798414831804" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8638470461512741420" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3029359604686073303" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10612153213551067780" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12975115198422218877" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8e24f679861e48fb" + }, + { + "_tag": "ByteArray", + "bytearray": "46de" + } + ] + } + } + ] + }, + "cborHex": "bf1b04b321430248688cbf4304446a1b931380405dc7b7194811563ec9f3105b744cc87a7075065ae6dc7a497af5465641d006cc74475813093e24bd75458566a2e7f5493af74385a1e28b5a1b47e39b4bf4411cb646390ee417238eff1b8108a6b102d974f3425b8c1be96683d2766ba0bcd8669f1b77e2031dbd2bf22c9f1b2a0a72829e3b2dd71b9345f11f43bb42841bb410de8721ba787d488e24f679861e48fb4246deffffff", + "cborBytes": [ + 191, 27, 4, 179, 33, 67, 2, 72, 104, 140, 191, 67, 4, 68, 106, 27, 147, 19, 128, 64, 93, 199, 183, 25, 72, 17, 86, + 62, 201, 243, 16, 91, 116, 76, 200, 122, 112, 117, 6, 90, 230, 220, 122, 73, 122, 245, 70, 86, 65, 208, 6, 204, + 116, 71, 88, 19, 9, 62, 36, 189, 117, 69, 133, 102, 162, 231, 245, 73, 58, 247, 67, 133, 161, 226, 139, 90, 27, + 71, 227, 155, 75, 244, 65, 28, 182, 70, 57, 14, 228, 23, 35, 142, 255, 27, 129, 8, 166, 177, 2, 217, 116, 243, 66, + 91, 140, 27, 233, 102, 131, 210, 118, 107, 160, 188, 216, 102, 159, 27, 119, 226, 3, 29, 189, 43, 242, 44, 159, + 27, 42, 10, 114, 130, 158, 59, 45, 215, 27, 147, 69, 241, 31, 67, 187, 66, 132, 27, 180, 16, 222, 135, 33, 186, + 120, 125, 72, 142, 36, 246, 121, 134, 30, 72, 251, 66, 70, 222, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3923, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2351172324473147569" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4912379547617846422" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "dca5c61465867dc9b108" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17642507020768304270" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15018611331993975051" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9d609c0504bfba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16643927071268194835" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6139024514639138550" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9319628624798796008" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e0ee69" + } + } + ] + }, + "cborHex": "bf1b20a10ac5a5f390b1bf1b442c472bf1a7e4964adca5c61465867dc9b1081bf4d6c6a9503adc8e1bd06cd36f3728390b479d609c0504bfba1be6fb1b7cee72ca13ff1b55323245267b0ef6801b8155f8db53b1c8e843e0ee69ff", + "cborBytes": [ + 191, 27, 32, 161, 10, 197, 165, 243, 144, 177, 191, 27, 68, 44, 71, 43, 241, 167, 228, 150, 74, 220, 165, 198, 20, + 101, 134, 125, 201, 177, 8, 27, 244, 214, 198, 169, 80, 58, 220, 142, 27, 208, 108, 211, 111, 55, 40, 57, 11, 71, + 157, 96, 156, 5, 4, 191, 186, 27, 230, 251, 27, 124, 238, 114, 202, 19, 255, 27, 85, 50, 50, 69, 38, 123, 14, 246, + 128, 27, 129, 85, 248, 219, 83, 177, 200, 232, 67, 224, 238, 105, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3924, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "02010407" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2623342702813797725" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "080010a653" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "9544bbe347" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3e4e5b1fad8193c074d1" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "c662" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4482336551578701967" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e59078830af7a689007f5120" + }, + { + "_tag": "ByteArray", + "bytearray": "58df28145d5dd6b13fa9" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4c1ca1d1f1a41cbc3a1b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "030733" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14166216841046741046" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10445018957188451617" + } + }, + { + "_tag": "ByteArray", + "bytearray": "46c187de5cdd04afdbba" + } + ] + } + } + ] + }, + "cborHex": "bf4402010407d8669f1b2467fc4a05545d5d80ff45080010a653459544bbe3474a3e4e5b1fad8193c074d19f42c6621b3e3475586099108f4ce59078830af7a689007f51204a58df28145d5dd6b13fa9ff4a4c1ca1d1f1a41cbc3a1b9f43030733ff41cbd8669f1bc49883293dbf50369f1b90f42966c7704d214a46c187de5cdd04afdbbaffffff", + "cborBytes": [ + 191, 68, 2, 1, 4, 7, 216, 102, 159, 27, 36, 103, 252, 74, 5, 84, 93, 93, 128, 255, 69, 8, 0, 16, 166, 83, 69, 149, + 68, 187, 227, 71, 74, 62, 78, 91, 31, 173, 129, 147, 192, 116, 209, 159, 66, 198, 98, 27, 62, 52, 117, 88, 96, + 153, 16, 143, 76, 229, 144, 120, 131, 10, 247, 166, 137, 0, 127, 81, 32, 74, 88, 223, 40, 20, 93, 93, 214, 177, + 63, 169, 255, 74, 76, 28, 161, 209, 241, 164, 28, 188, 58, 27, 159, 67, 3, 7, 51, 255, 65, 203, 216, 102, 159, 27, + 196, 152, 131, 41, 61, 191, 80, 54, 159, 27, 144, 244, 41, 102, 199, 112, 77, 33, 74, 70, 193, 135, 222, 92, 221, + 4, 175, 219, 186, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3925, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1878cadab3b7c5f1e6a2ff11" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0784e9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5336294292907056991" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf01a0034c1878cadab3b7c5f1e6a2ff1107430784e912091b4a0e5362f1ab5f5f80ff", + "cborBytes": [ + 191, 1, 160, 3, 76, 24, 120, 202, 218, 179, 183, 197, 241, 230, 162, 255, 17, 7, 67, 7, 132, 233, 18, 9, 27, 74, + 14, 83, 98, 241, 171, 95, 95, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3926, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1364393990145799217" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "020703d10243fc6a040505" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "075b4dff7cfd029d4399ee05" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551606" + } + } + } + ] + }, + "cborHex": "bf1b12ef4d1aec5174314b020703d10243fc6a0405054c075b4dff7cfd029d4399ee051bfffffffffffffff6ff", + "cborBytes": [ + 191, 27, 18, 239, 77, 26, 236, 81, 116, 49, 75, 2, 7, 3, 209, 2, 67, 252, 106, 4, 5, 5, 76, 7, 91, 77, 255, 124, + 253, 2, 157, 67, 153, 238, 5, 27, 255, 255, 255, 255, 255, 255, 255, 246, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3927, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a595ca78c7f4b788f620a9" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0507bdfe06d94f0516" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4915479360657184976" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5534099115255685641" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c7" + } + } + ] + }, + "cborHex": "bf074ba595ca78c7f4b788f620a90a490507bdfe06d94f05161b44374a6f68bc58d0d9050a801b4ccd11d30c9e6209a01bfffffffffffffffd41c7ff", + "cborBytes": [ + 191, 7, 75, 165, 149, 202, 120, 199, 244, 183, 136, 246, 32, 169, 10, 73, 5, 7, 189, 254, 6, 217, 79, 5, 22, 27, + 68, 55, 74, 111, 104, 188, 88, 208, 217, 5, 10, 128, 27, 76, 205, 17, 211, 12, 158, 98, 9, 160, 27, 255, 255, 255, + 255, 255, 255, 255, 253, 65, 199, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3928, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "419a7c9dd6" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "b56a3d1e7f8d98a44e5897c1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5478986364956494248" + } + }, + { + "_tag": "ByteArray", + "bytearray": "a58868" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "78176ca1dfb228224798" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10325101146339508994" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "b34c7241c00ce173b93fb670" + }, + { + "_tag": "ByteArray", + "bytearray": "d9b4d147d10caddd8337c7" + }, + { + "_tag": "ByteArray", + "bytearray": "11" + }, + { + "_tag": "ByteArray", + "bytearray": "7152b3395a5775b75f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17149147484477953356" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b28242" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "1ff3f9cc6e2fdafebd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11286961909653186066" + } + }, + { + "_tag": "ByteArray", + "bytearray": "74ed6de6b1c5279aef2fd35b" + } + ] + } + } + ] + }, + "cborHex": "bf45419a7c9dd69f4cb56a3d1e7f8d98a44e5897c11b4c094511ec70c9a843a58868ff4a78176ca1dfb228224798d8669f1b8f4a20c9b18b83029f4cb34c7241c00ce173b93fb6704bd9b4d147d10caddd8337c74111497152b3395a5775b75f1bedfe02c6ed17954cffff43b282429f491ff3f9cc6e2fdafebd1b9ca3580e523e26124c74ed6de6b1c5279aef2fd35bffff", + "cborBytes": [ + 191, 69, 65, 154, 124, 157, 214, 159, 76, 181, 106, 61, 30, 127, 141, 152, 164, 78, 88, 151, 193, 27, 76, 9, 69, + 17, 236, 112, 201, 168, 67, 165, 136, 104, 255, 74, 120, 23, 108, 161, 223, 178, 40, 34, 71, 152, 216, 102, 159, + 27, 143, 74, 32, 201, 177, 139, 131, 2, 159, 76, 179, 76, 114, 65, 192, 12, 225, 115, 185, 63, 182, 112, 75, 217, + 180, 209, 71, 209, 12, 173, 221, 131, 55, 199, 65, 17, 73, 113, 82, 179, 57, 90, 87, 117, 183, 95, 27, 237, 254, + 2, 198, 237, 23, 149, 76, 255, 255, 67, 178, 130, 66, 159, 73, 31, 243, 249, 204, 110, 47, 218, 254, 189, 27, 156, + 163, 88, 14, 82, 62, 38, 18, 76, 116, 237, 109, 230, 177, 197, 39, 154, 239, 47, 211, 91, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3929, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1421909210575158665" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13808019361168594687" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10016736252814501188" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8657068484081549033" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4686595543021120819" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9076562975827878300" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "6d0bb54645bf" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14068069349602629657" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57dfd863514ad04e15" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0a0d" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "26629f174c68b8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "e3" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4f4d1b00ca9cf00b91" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af1e9c03b84b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "64" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "2d06" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ca5ad72f64350d1490" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13853341571863431595" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "877085661978739601" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b13bba2e4b7303d89d8669f1bbf9ff073722b96ff80ff1b8b02988d0dc92544bf1b782415eb4de8fee91b410a21d0d3b3ed331b7df66defd3aee19c466d0bb54645bf1bc33bd289a2a018194957dfd863514ad04e15ff420a0dbf4726629f174c68b841e3494f4d1b00ca9cf00b9146af1e9c03b84b4164422d06ff49ca5ad72f64350d1490d8669f1bc040f4c2ef1249ab9f1b0c2c08c337d4c391ffffff", + "cborBytes": [ + 191, 27, 19, 187, 162, 228, 183, 48, 61, 137, 216, 102, 159, 27, 191, 159, 240, 115, 114, 43, 150, 255, 128, 255, + 27, 139, 2, 152, 141, 13, 201, 37, 68, 191, 27, 120, 36, 21, 235, 77, 232, 254, 233, 27, 65, 10, 33, 208, 211, + 179, 237, 51, 27, 125, 246, 109, 239, 211, 174, 225, 156, 70, 109, 11, 181, 70, 69, 191, 27, 195, 59, 210, 137, + 162, 160, 24, 25, 73, 87, 223, 216, 99, 81, 74, 208, 78, 21, 255, 66, 10, 13, 191, 71, 38, 98, 159, 23, 76, 104, + 184, 65, 227, 73, 79, 77, 27, 0, 202, 156, 240, 11, 145, 70, 175, 30, 156, 3, 184, 75, 65, 100, 66, 45, 6, 255, + 73, 202, 90, 215, 47, 100, 53, 13, 20, 144, 216, 102, 159, 27, 192, 64, 244, 194, 239, 18, 73, 171, 159, 27, 12, + 44, 8, 195, 55, 212, 195, 145, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3930, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17933138516457205690" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10413962502713281862" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11133334480938388431" + } + }, + { + "_tag": "ByteArray", + "bytearray": "1d38" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14005492952839866283" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4740682741334258691" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ad34d07e267519b9" + } + ] + } + } + ] + }, + "cborHex": "bf0a1bfffffffffffffffb1bf8df4e77854eafbad8669f1b9085d3b87e768d469f1b9a818cb935f0cbcf421d381bc25d81a2e641c7ab1b41ca49d6060db40348ad34d07e267519b9ffffff", + "cborBytes": [ + 191, 10, 27, 255, 255, 255, 255, 255, 255, 255, 251, 27, 248, 223, 78, 119, 133, 78, 175, 186, 216, 102, 159, 27, + 144, 133, 211, 184, 126, 118, 141, 70, 159, 27, 154, 129, 140, 185, 53, 240, 203, 207, 66, 29, 56, 27, 194, 93, + 129, 162, 230, 65, 199, 171, 27, 65, 202, 73, 214, 6, 13, 180, 3, 72, 173, 52, 208, 126, 38, 117, 25, 185, 255, + 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3931, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5777feab" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + } + } + ] + }, + "cborHex": "bf445777feab0eff", + "cborBytes": [191, 68, 87, 119, 254, 171, 14, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3932, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15880180667890037314" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "16408839460181014897" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15414517131608369975" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16430536984554361417" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9008135561456868056" + } + } + } + ] + }, + "cborHex": "bf1bdc61bc2e3e9c7242d8669f1be3b7e88d208079719f1bd5eb5da95db0ab37ffff1be404fe55b147d2491b7d035390e5335ad8ff", + "cborBytes": [ + 191, 27, 220, 97, 188, 46, 62, 156, 114, 66, 216, 102, 159, 27, 227, 183, 232, 141, 32, 128, 121, 113, 159, 27, + 213, 235, 93, 169, 93, 176, 171, 55, 255, 255, 27, 228, 4, 254, 85, 177, 71, 210, 73, 27, 125, 3, 83, 144, 229, + 51, 90, 216, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3933, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7597156393865568579" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "72ee1aba" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13904810591524246533" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8379222315859668742" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9939529540950621289" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "964ab6b1b369435e" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18126128794979486007" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fef70ec44db2" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1b696e857d1f71e1434472ee1aba1bc0f7cf8fe8e45405d8669f1b7448fa4d1ed76f069f1b89f04d74a2dcfc69ffff48964ab6b1b369435e1bfb8cf21a49bb493746fef70ec44db280ff", + "cborBytes": [ + 191, 27, 105, 110, 133, 125, 31, 113, 225, 67, 68, 114, 238, 26, 186, 27, 192, 247, 207, 143, 232, 228, 84, 5, + 216, 102, 159, 27, 116, 72, 250, 77, 30, 215, 111, 6, 159, 27, 137, 240, 77, 116, 162, 220, 252, 105, 255, 255, + 72, 150, 74, 182, 177, 179, 105, 67, 94, 27, 251, 140, 242, 26, 73, 187, 73, 55, 70, 254, 247, 14, 196, 77, 178, + 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3934, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6706839070950208250" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "6d2f196763" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17053136891137266454" + } + }, + { + "_tag": "ByteArray", + "bytearray": "02c3abaca0907fed75708a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10235066250927599679" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ec54" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ffe1b3c9b4865842c53e" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5064c199297921f" + } + } + ] + }, + "cborHex": "bf1b5d137a99c5b2b2fa9f456d2f1967631beca8e9a6ae5893164b02c3abaca0907fed75708aff412cd8669f1b8e0a42870b20f03f9f42ec54ffff4affe1b3c9b4865842c53e48d5064c199297921fff", + "cborBytes": [ + 191, 27, 93, 19, 122, 153, 197, 178, 178, 250, 159, 69, 109, 47, 25, 103, 99, 27, 236, 168, 233, 166, 174, 88, + 147, 22, 75, 2, 195, 171, 172, 160, 144, 127, 237, 117, 112, 138, 255, 65, 44, 216, 102, 159, 27, 142, 10, 66, + 135, 11, 32, 240, 63, 159, 66, 236, 84, 255, 255, 74, 255, 225, 179, 201, 180, 134, 88, 66, 197, 62, 72, 213, 6, + 76, 25, 146, 151, 146, 31, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3935, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7736826875553740748" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7200255516156314294" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14266021101342315785" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31fbf02fc06ef79ea140" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18120510234587355571" + } + }, + { + "_tag": "ByteArray", + "bytearray": "08b6ed6fae029b79" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4251325063712058559" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "08fe" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f0335baa6fe711" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8630fe" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551601" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7687961790963303493" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b6b5ebb0d461377ccd8669f1b63ec723e4c8b42b69f1bc5fb169b67bc55094a31fbf02fc06ef79ea1401bfb78fc0d4168d9b34808b6ed6fae029b791b3affbd9ef745acbfffff4208fe47f0335baa6fe711438630fed8669f1bfffffffffffffff19f071b6ab120842d24c445ffffff", + "cborBytes": [ + 191, 27, 107, 94, 187, 13, 70, 19, 119, 204, 216, 102, 159, 27, 99, 236, 114, 62, 76, 139, 66, 182, 159, 27, 197, + 251, 22, 155, 103, 188, 85, 9, 74, 49, 251, 240, 47, 192, 110, 247, 158, 161, 64, 27, 251, 120, 252, 13, 65, 104, + 217, 179, 72, 8, 182, 237, 111, 174, 2, 155, 121, 27, 58, 255, 189, 158, 247, 69, 172, 191, 255, 255, 66, 8, 254, + 71, 240, 51, 91, 170, 111, 231, 17, 67, 134, 48, 254, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 241, + 159, 7, 27, 106, 177, 32, 132, 45, 36, 196, 69, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3936, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10390724945030538073" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "1b98bc28466a834f" + } + } + ] + }, + "cborHex": "bf1b90334548fb55e359481b98bc28466a834fff", + "cborBytes": [191, 27, 144, 51, 69, 72, 251, 85, 227, 89, 72, 27, 152, 188, 40, 70, 106, 131, 79, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3937, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "9b" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "87b9e3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18382077354204721435" + } + }, + { + "_tag": "ByteArray", + "bytearray": "d2b57d2f336b1c" + }, + { + "_tag": "ByteArray", + "bytearray": "61947cf57f89" + }, + { + "_tag": "ByteArray", + "bytearray": "13ae5f848e66" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fb40bd80" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14001314884405575464" + } + } + } + ] + }, + "cborHex": "bf419b9f4387b9e31bff1a41f6131ff11b47d2b57d2f336b1c4661947cf57f894613ae5f848e66ff44fb40bd801bc24ea9b489623f28ff", + "cborBytes": [ + 191, 65, 155, 159, 67, 135, 185, 227, 27, 255, 26, 65, 246, 19, 31, 241, 27, 71, 210, 181, 125, 47, 51, 107, 28, + 70, 97, 148, 124, 245, 127, 137, 70, 19, 174, 95, 132, 142, 102, 255, 68, 251, 64, 189, 128, 27, 194, 78, 169, + 180, 137, 98, 63, 40, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3938, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c4307c809" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b9d2" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "dc435eb5" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5412403337939155470" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "09" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f534e47edc3efb" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf452c4307c80942b9d244dc435eb5d8669f1b4b1cb828e3007a0e9f4109ffff47f534e47edc3efb80ff", + "cborBytes": [ + 191, 69, 44, 67, 7, 200, 9, 66, 185, 210, 68, 220, 67, 94, 181, 216, 102, 159, 27, 75, 28, 184, 40, 227, 0, 122, + 14, 159, 65, 9, 255, 255, 71, 245, 52, 228, 126, 220, 62, 251, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3939, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3991982806251884854" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7216612297572664668" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2544186125040471438" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8fcded0df446" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "7a65fea0bcfe8b8ebd2a27" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b37665f363c1c5136bf1b64268ea63e88c55c1b234ec3cd1183cd8e468fcded0df4464b7a65fea0bcfe8b8ebd2a27ffff", + "cborBytes": [ + 191, 27, 55, 102, 95, 54, 60, 28, 81, 54, 191, 27, 100, 38, 142, 166, 62, 136, 197, 92, 27, 35, 78, 195, 205, 17, + 131, 205, 142, 70, 143, 205, 237, 13, 244, 70, 75, 122, 101, 254, 160, 188, 254, 139, 142, 189, 42, 39, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3940, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "40ce" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "bb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fefb05" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12116827679964997942" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c889e568a67c798a43cddc" + } + ] + } + } + ] + }, + "cborHex": "bf4240ce41bb415d8043fefb059f1ba8279e93c4ef29364bc889e568a67c798a43cddcffff", + "cborBytes": [ + 191, 66, 64, 206, 65, 187, 65, 93, 128, 67, 254, 251, 5, 159, 27, 168, 39, 158, 147, 196, 239, 41, 54, 75, 200, + 137, 229, 104, 166, 124, 121, 138, 67, 205, 220, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3941, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07f8" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "151c8179c093d956a8b6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15280482943887199631" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "365f835c880312fefa7f88" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7916118079827916153" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "65db" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "cdf94abcef" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b681dd6d38cca51ba" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10469978620356008582" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8dd63ab3943a55e3" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17880677158240567846" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fff4" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d46c6853e77a66" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2775d77f50bfa6f5" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "d5ef0744f0e4728316270a" + } + } + ] + }, + "cborHex": "bf4207f8bf4a151c8179c093d956a8b61bd40f2e472acfcd8f4b365f835c880312fefa7f881b6ddbb373c430b5794265db45cdf94abcef497b681dd6d38cca51ba1b914cd61538411a86488dd63ab3943a55e31bf824ed23b85ec22642fff447d46c6853e77a66ff482775d77f50bfa6f54bd5ef0744f0e4728316270aff", + "cborBytes": [ + 191, 66, 7, 248, 191, 74, 21, 28, 129, 121, 192, 147, 217, 86, 168, 182, 27, 212, 15, 46, 71, 42, 207, 205, 143, + 75, 54, 95, 131, 92, 136, 3, 18, 254, 250, 127, 136, 27, 109, 219, 179, 115, 196, 48, 181, 121, 66, 101, 219, 69, + 205, 249, 74, 188, 239, 73, 123, 104, 29, 214, 211, 140, 202, 81, 186, 27, 145, 76, 214, 21, 56, 65, 26, 134, 72, + 141, 214, 58, 179, 148, 58, 85, 227, 27, 248, 36, 237, 35, 184, 94, 194, 38, 66, 255, 244, 71, 212, 108, 104, 83, + 231, 122, 102, 255, 72, 39, 117, 215, 127, 80, 191, 166, 245, 75, 213, 239, 7, 68, 240, 228, 114, 131, 22, 39, 10, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3942, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5635967334523269333" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5405669805249982006" + } + }, + { + "_tag": "ByteArray", + "bytearray": "4f9d8a10f0af1f04dd" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "d190928aac4f0aa3" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf03a01b4e36fa6e1bf6f0d59f1b4b04cc0c22faee36494f9d8a10f0af1f04dd03ff48d190928aac4f0aa380ff", + "cborBytes": [ + 191, 3, 160, 27, 78, 54, 250, 110, 27, 246, 240, 213, 159, 27, 75, 4, 204, 12, 34, 250, 238, 54, 73, 79, 157, 138, + 16, 240, 175, 31, 4, 221, 3, 255, 72, 209, 144, 146, 138, 172, 79, 10, 163, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3943, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6858214381687193399" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13109122798128286775" + } + }, + { + "_tag": "ByteArray", + "bytearray": "2e24ea1305" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1966250130357195239" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2380624567788191994" + } + }, + { + "_tag": "ByteArray", + "bytearray": "7cac3429051e" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1d9189" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9075396390215231818" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9523244109671550148" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "44d732e74ffb0100" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17444307925600923731" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551609" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8128366735862059203" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "6742233734ec" + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf06801b5f2d45a4cdf0bf379f1bb5ecf5bad3694c37452e24ea13051b1b4986136f8191e71b2109ad6e6a9540fa467cac3429051eff431d9189bf001b7df248eef2a4294a011bfffffffffffffff51b84295c0fba4dccc44844d732e74ffb01001bf216a1a269f97053101bfffffffffffffff91b70cdc27af728d0c3ff466742233734eca0ff", + "cborBytes": [ + 191, 6, 128, 27, 95, 45, 69, 164, 205, 240, 191, 55, 159, 27, 181, 236, 245, 186, 211, 105, 76, 55, 69, 46, 36, + 234, 19, 5, 27, 27, 73, 134, 19, 111, 129, 145, 231, 27, 33, 9, 173, 110, 106, 149, 64, 250, 70, 124, 172, 52, 41, + 5, 30, 255, 67, 29, 145, 137, 191, 0, 27, 125, 242, 72, 238, 242, 164, 41, 74, 1, 27, 255, 255, 255, 255, 255, + 255, 255, 245, 27, 132, 41, 92, 15, 186, 77, 204, 196, 72, 68, 215, 50, 231, 79, 251, 1, 0, 27, 242, 22, 161, 162, + 105, 249, 112, 83, 16, 27, 255, 255, 255, 255, 255, 255, 255, 249, 27, 112, 205, 194, 122, 247, 40, 208, 195, 255, + 70, 103, 66, 35, 55, 52, 236, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3944, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3476019078623503095" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "28c26a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3826202753413658170" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "864c2b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3902526750181298618" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9679781087283700413" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11902958263970306888" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "318964848139561528" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14312782117287761400" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ff" + } + } + ] + }, + "cborHex": "bf1b303d4cef6dd5a2f74328c26a1b35196721d3d7b63a43864c2b1b36288f671f0411ba9f1b86557d9cfb16e2bdff1ba52fcd79fc401b48d8669f1b046d30d6e531ea3880ff1bc6a13780d88015f841ffff", + "cborBytes": [ + 191, 27, 48, 61, 76, 239, 109, 213, 162, 247, 67, 40, 194, 106, 27, 53, 25, 103, 33, 211, 215, 182, 58, 67, 134, + 76, 43, 27, 54, 40, 143, 103, 31, 4, 17, 186, 159, 27, 134, 85, 125, 156, 251, 22, 226, 189, 255, 27, 165, 47, + 205, 121, 252, 64, 27, 72, 216, 102, 159, 27, 4, 109, 48, 214, 229, 49, 234, 56, 128, 255, 27, 198, 161, 55, 128, + 216, 128, 21, 248, 65, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3945, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "665885473841956935" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5155557511302336541" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1553163212008835522" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8425179428632828890" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6c5a89d294c3c7e9dbe1" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a62e0472" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "999b981c9d4e1da0aa" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2822711806363952810" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "14b3276e30048305" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "97ff31" + }, + { + "_tag": "ByteArray", + "bytearray": "83b15c1089d0" + }, + { + "_tag": "ByteArray", + "bytearray": "c65edb5bfc127b13f59e92" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c0b927697a6644bbe9f402" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15652060908608486872" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b093db34f79714847d8669f1b478c383dc045d01d9f1b158df1b659fdc9c2ffff1b74ec400d44969bdabf4a6c5a89d294c3c7e9dbe144a62e047249999b981c9d4e1da0aa1b272c496eb99fe6aaff4814b3276e300483059f4397ff314683b15c1089d04bc65edb5bfc127b13f59e92ff4bc0b927697a6644bbe9f4029f1bd9374a77dc62fdd8ffff", + "cborBytes": [ + 191, 27, 9, 61, 179, 79, 121, 113, 72, 71, 216, 102, 159, 27, 71, 140, 56, 61, 192, 69, 208, 29, 159, 27, 21, 141, + 241, 182, 89, 253, 201, 194, 255, 255, 27, 116, 236, 64, 13, 68, 150, 155, 218, 191, 74, 108, 90, 137, 210, 148, + 195, 199, 233, 219, 225, 68, 166, 46, 4, 114, 73, 153, 155, 152, 28, 157, 78, 29, 160, 170, 27, 39, 44, 73, 110, + 185, 159, 230, 170, 255, 72, 20, 179, 39, 110, 48, 4, 131, 5, 159, 67, 151, 255, 49, 70, 131, 177, 92, 16, 137, + 208, 75, 198, 94, 219, 91, 252, 18, 123, 19, 245, 158, 146, 255, 75, 192, 185, 39, 105, 122, 102, 68, 187, 233, + 244, 2, 159, 27, 217, 55, 74, 119, 220, 98, 253, 216, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3946, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "04b9a4a58ca2b917" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1629816897233988389" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4839386490977674477" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13381013584452710006" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13723880347777917563" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16690300916263966814" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13339922355717334508" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "90aea74908667494" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "895553555823049557" + } + } + } + ] + }, + "cborHex": "bf4804b9a4a58ca2b917bf1b169e45d5388fab251b4328f45f958c64ed1bb9b2e8f59bfaee761bbe750476cd44627b1be79fdc411c4a585e1bb920ecb45fd2e5ecff4890aea749086674941b0c6da536d42bbb55ff", + "cborBytes": [ + 191, 72, 4, 185, 164, 165, 140, 162, 185, 23, 191, 27, 22, 158, 69, 213, 56, 143, 171, 37, 27, 67, 40, 244, 95, + 149, 140, 100, 237, 27, 185, 178, 232, 245, 155, 250, 238, 118, 27, 190, 117, 4, 118, 205, 68, 98, 123, 27, 231, + 159, 220, 65, 28, 74, 88, 94, 27, 185, 32, 236, 180, 95, 210, 229, 236, 255, 72, 144, 174, 167, 73, 8, 102, 116, + 148, 27, 12, 109, 165, 54, 212, 43, 187, 85, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3947, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "37be0002" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "20" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6246728458700557628" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11641635128994296343" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16982991299838154755" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "59a1ea4bb25f24ee610081" + } + ] + } + } + ] + }, + "cborHex": "bf019f4437be0002ff070a0fbf1bfffffffffffffffa4120ff1b56b0d66fc52b8d3c1ba18f65784469f2171bebafb49b826718039f4b59a1ea4bb25f24ee610081ffff", + "cborBytes": [ + 191, 1, 159, 68, 55, 190, 0, 2, 255, 7, 10, 15, 191, 27, 255, 255, 255, 255, 255, 255, 255, 250, 65, 32, 255, 27, + 86, 176, 214, 111, 197, 43, 141, 60, 27, 161, 143, 101, 120, 68, 105, 242, 23, 27, 235, 175, 180, 155, 130, 103, + 24, 3, 159, 75, 89, 161, 234, 75, 178, 95, 36, 238, 97, 0, 129, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3948, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1740434758473865532" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "dd3c49583f8598cc5ab1" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9518070564781356948" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4407674042324354571" + } + }, + { + "_tag": "ByteArray", + "bytearray": "ad0096e6e670956ac2e72a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8953907067650886187" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8380853296217704975" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1355505193894982085" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9490671148176183272" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "27ef" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10254547617958470675" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "1266970380781705382" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6504011974469162371" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12444941933709698925" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12841425670041202779" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13729708870660714845" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11182364092232155540" + } + } + } + ] + }, + "cborHex": "bf1b182744310d93d93c9f4add3c49583f8598cc5ab11b8416fabff0e4f7941b3d2b34304a74060b4bad0096e6e670956ac2e72a1b7c42ab09c730ca2bff1b744ec5ab53b7ca0f1b12cfb8cac54eb1c51b83b5a32023170fe84227ef1b8e4f78ba44be2413d8669f1b11952ed93f6f58a69f1b5a42e46e591f1583ffff1bacb550c0a921276d9f1bb235e89c3063705bff1bbe89b9798942f15d1b9b2fbce52a94c194ff", + "cborBytes": [ + 191, 27, 24, 39, 68, 49, 13, 147, 217, 60, 159, 74, 221, 60, 73, 88, 63, 133, 152, 204, 90, 177, 27, 132, 22, 250, + 191, 240, 228, 247, 148, 27, 61, 43, 52, 48, 74, 116, 6, 11, 75, 173, 0, 150, 230, 230, 112, 149, 106, 194, 231, + 42, 27, 124, 66, 171, 9, 199, 48, 202, 43, 255, 27, 116, 78, 197, 171, 83, 183, 202, 15, 27, 18, 207, 184, 202, + 197, 78, 177, 197, 27, 131, 181, 163, 32, 35, 23, 15, 232, 66, 39, 239, 27, 142, 79, 120, 186, 68, 190, 36, 19, + 216, 102, 159, 27, 17, 149, 46, 217, 63, 111, 88, 166, 159, 27, 90, 66, 228, 110, 89, 31, 21, 131, 255, 255, 27, + 172, 181, 80, 192, 169, 33, 39, 109, 159, 27, 178, 53, 232, 156, 48, 99, 112, 91, 255, 27, 190, 137, 185, 121, + 137, 66, 241, 93, 27, 155, 47, 188, 229, 42, 148, 193, 148, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3949, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "0" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "632306b12f4d114d3d0899c5" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551598" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12321627557788368239" + } + } + ] + } + } + ] + }, + "cborHex": "bf04d8799f4c632306b12f4d114d3d0899c5ff1bffffffffffffffee9f031baaff36fb24a3bd6fffff", + "cborBytes": [ + 191, 4, 216, 121, 159, 76, 99, 35, 6, 177, 47, 77, 17, 77, 61, 8, 153, 197, 255, 27, 255, 255, 255, 255, 255, 255, + 255, 238, 159, 3, 27, 170, 255, 54, 251, 36, 163, 189, 111, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3950, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "07fcc9cb" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551610" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17922361698309726283" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551612" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "7b87b15d908da3b0835f6c" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17862107048732207236" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9252969330145433050" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf4407fcc9cbbf1bfffffffffffffffa1bf8b9050203d1604b1bfffffffffffffffc07ff4b7b87b15d908da3b0835f6cbf1bf7e2f3b92baf28841b80692694d8e715daffff", + "cborBytes": [ + 191, 68, 7, 252, 201, 203, 191, 27, 255, 255, 255, 255, 255, 255, 255, 250, 27, 248, 185, 5, 2, 3, 209, 96, 75, + 27, 255, 255, 255, 255, 255, 255, 255, 252, 7, 255, 75, 123, 135, 177, 93, 144, 141, 163, 176, 131, 95, 108, 191, + 27, 247, 226, 243, 185, 43, 175, 40, 132, 27, 128, 105, 38, 148, 216, 231, 21, 218, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3951, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1395914303881453304" + } + } + } + ] + }, + "cborHex": "bf141b135f48a9dbbd9ef8ff", + "cborBytes": [191, 20, 27, 19, 95, 72, 169, 219, 189, 158, 248, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3952, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15742869315784042258" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "d9f117db" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17491233892035372372" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "95413f3db7de6854b5" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1bda79e83bc0b46712bf44d9f117db1bf2bd588d620aa554ff4995413f3db7de6854b580ff", + "cborBytes": [ + 191, 27, 218, 121, 232, 59, 192, 180, 103, 18, 191, 68, 217, 241, 23, 219, 27, 242, 189, 88, 141, 98, 10, 165, 84, + 255, 73, 149, 65, 63, 61, 183, 222, 104, 84, 181, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3953, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "070107ff0303c3f8fe55" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "ce4f95813ee32a04936f58" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9066461354373189234" + } + } + ] + } + } + ] + }, + "cborHex": "bf4a070107ff0303c3f8fe559f4bce4f95813ee32a04936f581b7dd28a90cd388e72ffff", + "cborBytes": [ + 191, 74, 7, 1, 7, 255, 3, 3, 195, 248, 254, 85, 159, 75, 206, 79, 149, 129, 62, 227, 42, 4, 147, 111, 88, 27, 125, + 210, 138, 144, 205, 56, 142, 114, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3954, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "20" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + } + } + ] + }, + "cborHex": "bf1410ff", + "cborBytes": [191, 20, 16, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3955, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1937107805531985019" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13862613273778775009" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8548639263676540564" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "eae4e8896a8b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10403995637204868215" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18177327873074952059" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + } + ] + }, + "cborHex": "bf1b1ae1fd49305ed47b1bc061e5534232e3e11b76a2de1e2065a69446eae4e8896a8b1b90626ae8c84f5c77801bfc42d7649870777ba0ff", + "cborBytes": [ + 191, 27, 26, 225, 253, 73, 48, 94, 212, 123, 27, 192, 97, 229, 83, 66, 50, 227, 225, 27, 118, 162, 222, 30, 32, + 101, 166, 148, 70, 234, 228, 232, 137, 106, 139, 27, 144, 98, 106, 232, 200, 79, 92, 119, 128, 27, 252, 66, 215, + 100, 152, 112, 119, 123, 160, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3956, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12695717218201507515" + } + } + } + ] + }, + "cborHex": "bf101bb0303f8b8fb616bbff", + "cborBytes": [191, 16, 27, 176, 48, 63, 139, 143, 182, 22, 187, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3957, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "f9c8084134597237" + } + } + ] + }, + "cborHex": "bf0a48f9c8084134597237ff", + "cborBytes": [191, 10, 72, 249, 200, 8, 65, 52, 89, 114, 55, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3958, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2031053524505683023" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8671474586463263116" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "970130249677908423" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6525389855692342263" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c3a8b479ec16a1" + } + } + ] + }, + "cborHex": "bf1b1c2fc06b67f7644fbf1b7857443164f8598c1b0d76985275e9a9c7ff1b5a8ed780317ac3f747c3a8b479ec16a1ff", + "cborBytes": [ + 191, 27, 28, 47, 192, 107, 103, 247, 100, 79, 191, 27, 120, 87, 68, 49, 100, 248, 89, 140, 27, 13, 118, 152, 82, + 117, 233, 169, 199, 255, 27, 90, 142, 215, 128, 49, 122, 195, 247, 71, 195, 168, 180, 121, 236, 22, 161, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3959, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8557630630595734228" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8978745586489562466" + } + } + } + ] + }, + "cborHex": "bf1b76c2cfb7dfa92ad41b7c9ae98a1b511562ff", + "cborBytes": [191, 27, 118, 194, 207, 183, 223, 169, 42, 212, 27, 124, 154, 233, 138, 27, 81, 21, 98, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3960, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f292" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4226175281851125100" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11537167979457675287" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14744042223034901502" + } + } + ] + } + } + ] + }, + "cborHex": "bf42f292d8669f1b3aa664071145cd6c9f1ba01c4126999600171bcc9d5c48d95b23feffffff", + "cborBytes": [ + 191, 66, 242, 146, 216, 102, 159, 27, 58, 166, 100, 7, 17, 69, 205, 108, 159, 27, 160, 28, 65, 38, 153, 150, 0, + 23, 27, 204, 157, 92, 72, 217, 91, 35, 254, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3961, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "4130d8175fa8be4e" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8570329937625225498" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c983dd" + }, + { + "_tag": "ByteArray", + "bytearray": "75466510f831" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5612658574469724693" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4176394019515864321" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11373900928797802871" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5925131846354608823" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "57" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11170620573245020457" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "159545d1efbed410e6" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14484833264478228630" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15879127899385571188" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12110219924420303401" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b5f905fc" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551601" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551605" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf0505139f484130d8175fa8be4e1b76efedabb40c191a43c983dd4675466510f831ff1b4de42b3c80d17a151b39f5883bb74f15011b9dd836a21b7a8177bf1b523a4c05855222b741571b9b06043a14f0992949159545d1efbed410e6ff1bc904771c2ffc9096bf0d13ff1bdc5dfeb179df2774bf1ba81024dbcaee1a2944b5f905fc1bfffffffffffffff11bfffffffffffffff5ffff", + "cborBytes": [ + 191, 5, 5, 19, 159, 72, 65, 48, 216, 23, 95, 168, 190, 78, 27, 118, 239, 237, 171, 180, 12, 25, 26, 67, 201, 131, + 221, 70, 117, 70, 101, 16, 248, 49, 255, 27, 77, 228, 43, 60, 128, 209, 122, 21, 27, 57, 245, 136, 59, 183, 79, + 21, 1, 27, 157, 216, 54, 162, 27, 122, 129, 119, 191, 27, 82, 58, 76, 5, 133, 82, 34, 183, 65, 87, 27, 155, 6, 4, + 58, 20, 240, 153, 41, 73, 21, 149, 69, 209, 239, 190, 212, 16, 230, 255, 27, 201, 4, 119, 28, 47, 252, 144, 150, + 191, 13, 19, 255, 27, 220, 93, 254, 177, 121, 223, 39, 116, 191, 27, 168, 16, 36, 219, 202, 238, 26, 41, 68, 181, + 249, 5, 252, 27, 255, 255, 255, 255, 255, 255, 255, 241, 27, 255, 255, 255, 255, 255, 255, 255, 245, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3962, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "127127" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "6526377925797159460" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "253819" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "7377322783166209228" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "1ab1d35d73e3ad" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9944250410760872610" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9515255979995961016" + } + }, + { + "_tag": "ByteArray", + "bytearray": "c270412d11fd411a2a" + }, + { + "_tag": "ByteArray", + "bytearray": "76e6e6" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "76e5" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "814856921712474775" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3526380286853258174" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16501622773531897470" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b4027b80922060a8" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "61027280673349134" + } + }, + { + "_tag": "ByteArray", + "bytearray": "637406" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9531601855671582336" + } + }, + { + "_tag": "ByteArray", + "bytearray": "13d7943b86c4e6b75ed0" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3129235438844941942" + } + } + ] + } + } + ] + }, + "cborHex": "bf43127127d8669f1b5a925a253117222480ff43253819d8669f1b666183fc0c049ccc9f471ab1d35d73e3ad1b8a01130fcaef22a21b840cfae65a9216b849c270412d11fd411a2a4376e6e6ffff4276e5bf1b0b4ef40d9170ba971b30f0382ff4d41bbe1be5018a7bb1dd6e7e41afff48b4027b80922060a89f1b00d8cffd0a249e0e436374061b84470d631bc23e804a13d7943b86c4e6b75ed01b2b6d470d5eea9676ffff", + "cborBytes": [ + 191, 67, 18, 113, 39, 216, 102, 159, 27, 90, 146, 90, 37, 49, 23, 34, 36, 128, 255, 67, 37, 56, 25, 216, 102, 159, + 27, 102, 97, 131, 252, 12, 4, 156, 204, 159, 71, 26, 177, 211, 93, 115, 227, 173, 27, 138, 1, 19, 15, 202, 239, + 34, 162, 27, 132, 12, 250, 230, 90, 146, 22, 184, 73, 194, 112, 65, 45, 17, 253, 65, 26, 42, 67, 118, 230, 230, + 255, 255, 66, 118, 229, 191, 27, 11, 78, 244, 13, 145, 112, 186, 151, 27, 48, 240, 56, 47, 244, 212, 27, 190, 27, + 229, 1, 138, 123, 177, 221, 110, 126, 65, 175, 255, 72, 180, 2, 123, 128, 146, 32, 96, 168, 159, 27, 0, 216, 207, + 253, 10, 36, 158, 14, 67, 99, 116, 6, 27, 132, 71, 13, 99, 27, 194, 62, 128, 74, 19, 215, 148, 59, 134, 196, 230, + 183, 94, 208, 27, 43, 109, 71, 13, 94, 234, 150, 118, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3963, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1029441420852157801" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "528b4c7feeb41fb4" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5141503657933034814" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13535460752878930116" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "372d92d036c463c5" + }, + { + "_tag": "ByteArray", + "bytearray": "559c5523e59397cde50a" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16537233347824969640" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5803911219491028670" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "372099515742964403" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6128618548569666806" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1114500561757272350" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13918322516716733625" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8424f06bac1b8930c2d1" + } + } + ] + }, + "cborHex": "bf1b0e494f849ef75d6948528b4c7feeb41fb41b475a4a560678553ed8669f1bbbd79dd73e9708c49f48372d92d036c463c54a559c5523e59397cde50a1be5800e1ca0d9e7a8ffff1b508ba280f1aabebed8669f1b0529f689c0f44ab380ff1b550d3a195f5d74f61b0f77805b2583f91e1bc127d0962638c4b94a8424f06bac1b8930c2d1ff", + "cborBytes": [ + 191, 27, 14, 73, 79, 132, 158, 247, 93, 105, 72, 82, 139, 76, 127, 238, 180, 31, 180, 27, 71, 90, 74, 86, 6, 120, + 85, 62, 216, 102, 159, 27, 187, 215, 157, 215, 62, 151, 8, 196, 159, 72, 55, 45, 146, 208, 54, 196, 99, 197, 74, + 85, 156, 85, 35, 229, 147, 151, 205, 229, 10, 27, 229, 128, 14, 28, 160, 217, 231, 168, 255, 255, 27, 80, 139, + 162, 128, 241, 170, 190, 190, 216, 102, 159, 27, 5, 41, 246, 137, 192, 244, 74, 179, 128, 255, 27, 85, 13, 58, 25, + 95, 93, 116, 246, 27, 15, 119, 128, 91, 37, 131, 249, 30, 27, 193, 39, 208, 150, 38, 56, 196, 185, 74, 132, 36, + 240, 107, 172, 27, 137, 48, 194, 209, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3964, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551597" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf0ad8669f1bffffffffffffffed80ffff", + "cborBytes": [191, 10, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 237, 128, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3965, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "c53bc961" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "959f6addae84045a8d5cd7" + } + } + ] + }, + "cborHex": "bf44c53bc9614b959f6addae84045a8d5cd7ff", + "cborBytes": [191, 68, 197, 59, 201, 97, 75, 149, 159, 106, 221, 174, 132, 4, 90, 141, 92, 215, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3966, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "1763198eee45" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2844412431569016472" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2293118131367205553" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6546534518172161647" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b08bc69f79224c6be2" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14548620251369402434" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd4d" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16412192642423094770" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8bbe251652d2c7f73010a6" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "5034" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "6d73" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12266615968796156829" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ad62ff543b2c5f9f941c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "880f1d0c0c6b20" + } + } + ] + } + } + ] + }, + "cborHex": "bf461763198eee45bf1b27796209426056981b1fd2caca80265ab11b5ad9f675917c166f49b08bc69f79224c6be21bc9e7150966ed704242fd4d1be3c3d240b4e87df24b8bbe251652d2c7f73010a6ff425034bf426d731baa3bc63b783aa39d4aad62ff543b2c5f9f941c47880f1d0c0c6b20ffff", + "cborBytes": [ + 191, 70, 23, 99, 25, 142, 238, 69, 191, 27, 39, 121, 98, 9, 66, 96, 86, 152, 27, 31, 210, 202, 202, 128, 38, 90, + 177, 27, 90, 217, 246, 117, 145, 124, 22, 111, 73, 176, 139, 198, 159, 121, 34, 76, 107, 226, 27, 201, 231, 21, 9, + 102, 237, 112, 66, 66, 253, 77, 27, 227, 195, 210, 64, 180, 232, 125, 242, 75, 139, 190, 37, 22, 82, 210, 199, + 247, 48, 16, 166, 255, 66, 80, 52, 191, 66, 109, 115, 27, 170, 59, 198, 59, 120, 58, 163, 157, 74, 173, 98, 255, + 84, 59, 44, 95, 159, 148, 28, 71, 136, 15, 29, 12, 12, 107, 32, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3967, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "07023586d65ab9fcfb0002" + } + } + ] + }, + "cborHex": "bf0a800c4b07023586d65ab9fcfb0002ff", + "cborBytes": [191, 10, 128, 12, 75, 7, 2, 53, 134, 214, 90, 185, 252, 251, 0, 2, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3968, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8634633757093166903" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "236eaca8" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551611" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8698268973124348077" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b77d461a761227f3744236eaca81bfffffffffffffffb9f1b78b6758bafe0e8adffff", + "cborBytes": [ + 191, 27, 119, 212, 97, 167, 97, 34, 127, 55, 68, 35, 110, 172, 168, 27, 255, 255, 255, 255, 255, 255, 255, 251, + 159, 27, 120, 182, 117, 139, 175, 224, 232, 173, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3969, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9892526264950148622" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2205370945996281743" + } + }, + { + "_tag": "ByteArray", + "bytearray": "e9c436d5b6" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17728331619848304560" + } + } + ] + } + } + ] + }, + "cborHex": "bf02d8669f1b89495039a1934e0e9f1b1e9b0d30da13578f45e9c436d5b61bf607afadf56237b0ffffff", + "cborBytes": [ + 191, 2, 216, 102, 159, 27, 137, 73, 80, 57, 161, 147, 78, 14, 159, 27, 30, 155, 13, 48, 218, 19, 87, 143, 69, 233, + 196, 54, 213, 182, 27, 246, 7, 175, 173, 245, 98, 55, 176, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3970, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "459025813214267854" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4651713304655768180" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "189d021da3a42ab5" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "896495094640344187" + } + } + } + ] + }, + "cborHex": "bf1b065ec98b8b5f09ce1b408e349ad0f72a7448189d021da3a42ab51b0c70fd89eaeafc7bff", + "cborBytes": [ + 191, 27, 6, 94, 201, 139, 139, 95, 9, 206, 27, 64, 142, 52, 154, 208, 247, 42, 116, 72, 24, 157, 2, 29, 163, 164, + 42, 181, 27, 12, 112, 253, 137, 234, 234, 252, 123, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3971, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6515287809636193789" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8487168988211584802" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17520671988145132865" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "937fc42db80fa020796e3fde" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17568812234765082811" + } + }, + { + "_tag": "ByteArray", + "bytearray": "5febd7bd" + }, + { + "_tag": "ByteArray", + "bytearray": "5d794a424db4248226bdcc4d" + }, + { + "_tag": "ByteArray", + "bytearray": "a7963f" + } + ] + } + } + ] + }, + "cborHex": "bf1b5a6af3be4ecc55fda01b75c87b3a53101f22d8669f1bf325ee583f8715419f4c937fc42db80fa020796e3fde1bf3d0f5a4dab5a0bb445febd7bd4c5d794a424db4248226bdcc4d43a7963fffffff", + "cborBytes": [ + 191, 27, 90, 106, 243, 190, 78, 204, 85, 253, 160, 27, 117, 200, 123, 58, 83, 16, 31, 34, 216, 102, 159, 27, 243, + 37, 238, 88, 63, 135, 21, 65, 159, 76, 147, 127, 196, 45, 184, 15, 160, 32, 121, 110, 63, 222, 27, 243, 208, 245, + 164, 218, 181, 160, 187, 68, 95, 235, 215, 189, 76, 93, 121, 74, 66, 77, 180, 36, 130, 38, 189, 204, 77, 67, 167, + 150, 63, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3972, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "06030000" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "1378d84f44f17d0eca51b8" + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "25fc01fd05b90406c9fa89d2" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1335328888947440595" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6701551294863234389" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "992619ab1a" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8556374854614653848" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4536622412514222723" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1506757636197483403" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f83f04e9" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9382440790013122492" + } + }, + { + "_tag": "ByteArray", + "bytearray": "31d471f020" + }, + { + "_tag": "ByteArray", + "bytearray": "91" + } + ] + } + } + ] + }, + "cborHex": "bf44060300000a4b1378d84f44f17d0eca51b8a04c25fc01fd05b90406c9fa89d2bf131b12880a8cb4077bd31b5d00b1657661d55500ff45992619ab1a9f1b76be5998be641b981b3ef5520c51fc62831b14e914164428838bff44f83f04e99f1b823520302ede17bc4531d471f0204191ffff", + "cborBytes": [ + 191, 68, 6, 3, 0, 0, 10, 75, 19, 120, 216, 79, 68, 241, 125, 14, 202, 81, 184, 160, 76, 37, 252, 1, 253, 5, 185, + 4, 6, 201, 250, 137, 210, 191, 19, 27, 18, 136, 10, 140, 180, 7, 123, 211, 27, 93, 0, 177, 101, 118, 97, 213, 85, + 0, 255, 69, 153, 38, 25, 171, 26, 159, 27, 118, 190, 89, 152, 190, 100, 27, 152, 27, 62, 245, 82, 12, 81, 252, 98, + 131, 27, 20, 233, 20, 22, 68, 40, 131, 139, 255, 68, 248, 63, 4, 233, 159, 27, 130, 53, 32, 48, 46, 222, 23, 188, + 69, 49, 212, 113, 240, 32, 65, 145, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3973, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3816114380068201936" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14331271370864453936" + } + } + } + ] + }, + "cborHex": "bf1b34f58fcf5e39a5d01bc6e2e761a819e930ff", + "cborBytes": [191, 27, 52, 245, 143, 207, 94, 57, 165, 208, 27, 198, 226, 231, 97, 168, 25, 233, 48, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3974, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9714016773811922748" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551603" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551607" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "e3574ad55e580e2426a9fa11" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8752582381181174466" + } + } + ] + } + } + ] + }, + "cborHex": "bf031b86cf1ec9e93ee73c1bfffffffffffffff3d8669f1bfffffffffffffff79f4ce3574ad55e580e2426a9fa111b79776b4d71a582c2ffffff", + "cborBytes": [ + 191, 3, 27, 134, 207, 30, 201, 233, 62, 231, 60, 27, 255, 255, 255, 255, 255, 255, 255, 243, 216, 102, 159, 27, + 255, 255, 255, 255, 255, 255, 255, 247, 159, 76, 227, 87, 74, 213, 94, 88, 14, 36, 38, 169, 250, 17, 27, 121, 119, + 107, 77, 113, 165, 130, 194, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3975, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "ede74a87bd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9720394255883542158" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15083390739577626905" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "17f7baaa76705e4521d55318" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17861684784042666853" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c37" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "5f416b902e49" + } + } + ] + } + } + ] + }, + "cborHex": "bf45ede74a87bdbf1b86e5c7132aaf9e8e1bd152f7f660f0e1194c17f7baaa76705e4521d553181bf7e173ad02dceb65423c37465f416b902e49ffff", + "cborBytes": [ + 191, 69, 237, 231, 74, 135, 189, 191, 27, 134, 229, 199, 19, 42, 175, 158, 142, 27, 209, 82, 247, 246, 96, 240, + 225, 25, 76, 23, 247, 186, 170, 118, 112, 94, 69, 33, 213, 83, 24, 27, 247, 225, 115, 173, 2, 220, 235, 101, 66, + 60, 55, 70, 95, 65, 107, 144, 46, 73, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3976, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7b2e66f35c" + } + ] + } + } + ] + }, + "cborHex": "bf029f457b2e66f35cffff", + "cborBytes": [191, 2, 159, 69, 123, 46, 102, 243, 92, 255, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3977, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12336250334243244632" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "c0a7257f47af41e38112" + } + } + ] + }, + "cborHex": "bf1bab332a5198dcca584ac0a7257f47af41e38112ff", + "cborBytes": [191, 27, 171, 51, 42, 81, 152, 220, 202, 88, 74, 192, 167, 37, 127, 71, 175, 65, 227, 129, 18, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3978, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "cb37d06e" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9082586643097828294" + } + }, + { + "_tag": "ByteArray", + "bytearray": "0c938a95" + }, + { + "_tag": "ByteArray", + "bytearray": "4c226f118a3fb14fb799" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ceb2" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "4e" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee2c3863bab7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62bb9f817e9e919ca6dec042" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee56a86f9b" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "23050202ff034f0404ac0d05" + } + } + ] + }, + "cborHex": "bf44cb37d06e9f1b7e0bd46e278dbbc6440c938a954a4c226f118a3fb14fb799ff42ceb2414e46ee2c3863bab74c62bb9f817e9e919ca6dec04245ee56a86f9b4c23050202ff034f0404ac0d05ff", + "cborBytes": [ + 191, 68, 203, 55, 208, 110, 159, 27, 126, 11, 212, 110, 39, 141, 187, 198, 68, 12, 147, 138, 149, 74, 76, 34, 111, + 17, 138, 63, 177, 79, 183, 153, 255, 66, 206, 178, 65, 78, 70, 238, 44, 56, 99, 186, 183, 76, 98, 187, 159, 129, + 126, 158, 145, 156, 166, 222, 192, 66, 69, 238, 86, 168, 111, 155, 76, 35, 5, 2, 2, 255, 3, 79, 4, 4, 172, 13, 5, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3979, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9879763980028803594" + } + }, + "value": { + "_tag": "Map", + "entries": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "0406fd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15982803248881565661" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "61b674ae5b8adecb" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "c8c8c3e81a6e9dea6d25cb" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7176228598306741407" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "b3ee6f91" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6796027ce1f5e3a91de65" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "58f8be85fb3ddc03fd91f3" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "46539029732318650" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12284520585604315899" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "121487964193107401" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16963815738979814886" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b891bf8fe9e50fa0aa0430406fdbf1bddce52dfd48b7fdd4861b674ae5b8adecb4bc8c8c3e81a6e9dea6d25cb1b639715e38d129c9fff44b3ee6f91d90502804be6796027ce1f5e3a91de659f4b58f8be85fb3ddc03fd91f31b00a557003f62ddba1baa7b6262eceb3afb1b01af9ca8e6372dc91beb6b948955128de6ffff", + "cborBytes": [ + 191, 27, 137, 27, 248, 254, 158, 80, 250, 10, 160, 67, 4, 6, 253, 191, 27, 221, 206, 82, 223, 212, 139, 127, 221, + 72, 97, 182, 116, 174, 91, 138, 222, 203, 75, 200, 200, 195, 232, 26, 110, 157, 234, 109, 37, 203, 27, 99, 151, + 21, 227, 141, 18, 156, 159, 255, 68, 179, 238, 111, 145, 217, 5, 2, 128, 75, 230, 121, 96, 39, 206, 31, 94, 58, + 145, 222, 101, 159, 75, 88, 248, 190, 133, 251, 61, 220, 3, 253, 145, 243, 27, 0, 165, 87, 0, 63, 98, 221, 186, + 27, 170, 123, 98, 98, 236, 235, 58, 251, 27, 1, 175, 156, 168, 230, 55, 45, 201, 27, 235, 107, 148, 137, 85, 18, + 141, 230, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3980, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "45a9c2352945b27b3e3336" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551608" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8207f067f5b2" + }, + "value": { + "_tag": "List", + "list": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e8" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551610" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf4b45a9c2352945b27b3e33361bfffffffffffffff8468207f067f5b28041e8d8669f1bfffffffffffffffa80ffff", + "cborBytes": [ + 191, 75, 69, 169, 194, 53, 41, 69, 178, 123, 62, 51, 54, 27, 255, 255, 255, 255, 255, 255, 255, 248, 70, 130, 7, + 240, 103, 245, 178, 128, 65, 232, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 250, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3981, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "5d7297c8" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2796306451303195131" + } + } + } + ] + }, + "cborHex": "bf445d7297c81b26ce79e6e90f61fbff", + "cborBytes": [191, 68, 93, 114, 151, 200, 27, 38, 206, 121, 230, 233, 15, 97, 251, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3982, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13696138276089468006" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "10260247869310102313" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "717552a092887a2d75" + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf1bbe12753264f19466d8669f1b8e63b91375afeb2980ff49717552a092887a2d7580ff", + "cborBytes": [ + 191, 27, 190, 18, 117, 50, 100, 241, 148, 102, 216, 102, 159, 27, 142, 99, 185, 19, 117, 175, 235, 41, 128, 255, + 73, 113, 117, 82, 160, 146, 136, 122, 45, 117, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3983, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1778391599190598322" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17376433490013067999" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3574658141170300546" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "2416416591197105372" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4723135840307861383" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fd9a" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5336216207274772604" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9446872658352159744" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5776073279735479041" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15241290095515143201" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9378616457700529907" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "7862e3f8ada6d62594dc" + }, + { + "_tag": "ByteArray", + "bytearray": "b9" + }, + { + "_tag": "ByteArray", + "bytearray": "68c20bb9c81171b7d1fc1b" + }, + { + "_tag": "ByteArray", + "bytearray": "24bc3962456c6f5c5e4b5f" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12337081829889466171" + } + } + ] + } + } + ] + }, + "cborHex": "bf1b18ae1dbcb54b62b21bf1257e31e36e1adf1b319bbca3d9e9f6821b2188d61643a9ecdc1b418bf305c377578742fd9a1b4a0e0c5e374b887cd8669f1b831a08a18f6e3c0080ff1b5028bc0b83423b011bd383f0970ddc0c211b822789fa6ddf56f39f4a7862e3f8ada6d62594dc41b94b68c20bb9c81171b7d1fc1b4b24bc3962456c6f5c5e4b5f1bab361e8f437cdf3bffff", + "cborBytes": [ + 191, 27, 24, 174, 29, 188, 181, 75, 98, 178, 27, 241, 37, 126, 49, 227, 110, 26, 223, 27, 49, 155, 188, 163, 217, + 233, 246, 130, 27, 33, 136, 214, 22, 67, 169, 236, 220, 27, 65, 139, 243, 5, 195, 119, 87, 135, 66, 253, 154, 27, + 74, 14, 12, 94, 55, 75, 136, 124, 216, 102, 159, 27, 131, 26, 8, 161, 143, 110, 60, 0, 128, 255, 27, 80, 40, 188, + 11, 131, 66, 59, 1, 27, 211, 131, 240, 151, 13, 220, 12, 33, 27, 130, 39, 137, 250, 109, 223, 86, 243, 159, 74, + 120, 98, 227, 248, 173, 166, 214, 37, 148, 220, 65, 185, 75, 104, 194, 11, 185, 200, 17, 113, 183, 209, 252, 27, + 75, 36, 188, 57, 98, 69, 108, 111, 92, 94, 75, 95, 27, 171, 54, 30, 143, 67, 124, 223, 59, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3984, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0e082c22d79e033ed136d193" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "a5bc14d557911ca0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9a059a704103f8a90203" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "11218099543061054864" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf094c0e082c22d79e033ed136d1930a48a5bc14d557911ca04a9a059a704103f8a90203d8669f1b9baeb2192f20459080ffff", + "cborBytes": [ + 191, 9, 76, 14, 8, 44, 34, 215, 158, 3, 62, 209, 54, 209, 147, 10, 72, 165, 188, 20, 213, 87, 145, 28, 160, 74, + 154, 5, 154, 112, 65, 3, 248, 169, 2, 3, 216, 102, 159, 27, 155, 174, 178, 25, 47, 32, 69, 144, 128, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3985, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "537528943953976459" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "7ed7" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14472873410603454126" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10076030765977971603" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14096097266307302086" + } + }, + { + "_tag": "ByteArray", + "bytearray": "170c1eddbfc776" + } + ] + } + } + ] + }, + "cborHex": "bf1b0775afba00de1c8bbf427ed71bc8d9f9afb6370eaeff1b8bd54098b8062b939f1bc39f65c7859a02c647170c1eddbfc776ffff", + "cborBytes": [ + 191, 27, 7, 117, 175, 186, 0, 222, 28, 139, 191, 66, 126, 215, 27, 200, 217, 249, 175, 182, 55, 14, 174, 255, 27, + 139, 213, 64, 152, 184, 6, 43, 147, 159, 27, 195, 159, 101, 199, 133, 154, 2, 198, 71, 23, 12, 30, 221, 191, 199, + 118, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3986, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "0" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "6e310f37a94e" + }, + { + "_tag": "ByteArray", + "bytearray": "de210d2eb6f5b684" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13466472227460654174" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6325877307154844167" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9ea8c47fd0f609" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7658060013607336308" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "87e1e988c32cee32c9ab60" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "190db6" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10885817643260633833" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14702056179122249904" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9280569147916047652" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551596" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "9" + }, + "fields": [] + } + } + ] + }, + "cborHex": "bf00d87b9f466e310f37a94e48de210d2eb6f5b6841bbae285247774a45e1b57ca07e519ab4a07479ea8c47fd0f609ff1b6a46e5021bb03974bf4b87e1e988c32cee32c9ab6043190db6ff1b97123178943ae2e90b1bcc083233386b20b01b80cb34782efc55241bffffffffffffffecd9050280ff", + "cborBytes": [ + 191, 0, 216, 123, 159, 70, 110, 49, 15, 55, 169, 78, 72, 222, 33, 13, 46, 182, 245, 182, 132, 27, 186, 226, 133, + 36, 119, 116, 164, 94, 27, 87, 202, 7, 229, 25, 171, 74, 7, 71, 158, 168, 196, 127, 208, 246, 9, 255, 27, 106, 70, + 229, 2, 27, 176, 57, 116, 191, 75, 135, 225, 233, 136, 195, 44, 238, 50, 201, 171, 96, 67, 25, 13, 182, 255, 27, + 151, 18, 49, 120, 148, 58, 226, 233, 11, 27, 204, 8, 50, 51, 56, 107, 32, 176, 27, 128, 203, 52, 120, 46, 252, 85, + 36, 27, 255, 255, 255, 255, 255, 255, 255, 236, 217, 5, 2, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3987, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11281669390909459017" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf039f1b9c908a89c68e4a49ff0e80ff", + "cborBytes": [191, 3, 159, 27, 156, 144, 138, 137, 198, 142, 74, 73, 255, 14, 128, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3988, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14377681289248759072" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "19d2bbc8d0cc5d" + } + } + ] + }, + "cborHex": "bf1bc787c8f4d373dd204719d2bbc8d0cc5dff", + "cborBytes": [191, 27, 199, 135, 200, 244, 211, 115, 221, 32, 71, 25, 210, 187, 200, 208, 204, 93, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3989, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15976069430636438758" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "36df95a5f208" + }, + { + "_tag": "ByteArray", + "bytearray": "66e28d7c98ed71064897dc" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "588244899991310893" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6765343594654035341" + } + } + ] + } + } + ] + }, + "cborHex": "bf1bddb66680980fe4e69f4636df95a5f2084b66e28d7c98ed71064897dc1b0829dd9eb0ead22d1b5de35427aed16d8dffff", + "cborBytes": [ + 191, 27, 221, 182, 102, 128, 152, 15, 228, 230, 159, 70, 54, 223, 149, 165, 242, 8, 75, 102, 226, 141, 124, 152, + 237, 113, 6, 72, 151, 220, 27, 8, 41, 221, 158, 176, 234, 210, 45, 27, 93, 227, 84, 39, 174, 209, 109, 141, 255, + 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3990, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1839298628959189338" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11843541793801234659" + } + }, + { + "_tag": "ByteArray", + "bytearray": "65ad2d54" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4617497559206584651" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1221360357873292301" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4421749364374769188" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "17801319042787830713" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10153111719049352702" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6118023004493099905" + } + }, + { + "_tag": "ByteArray", + "bytearray": "18540d1799687025d6aa" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17853253701033539436" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16618736592675878105" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17087743486730192744" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "2615907033053299024" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "d6d7f2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5447894146678989488" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17916906331198205677" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "14219848569347072158" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9604954870264096458" + } + }, + { + "_tag": "ByteArray", + "bytearray": "8c272c0cc8ce" + } + ] + } + } + ] + }, + "cborHex": "bf1b1986805ba6f9b95a9f1ba45cb682fe03e8e34465ad2d541b4014a590c7bde14b1b10f324c641c8140dff1b3d5d359e955e0e24d8669f1bf70afd5a9ec3ebb99f1b8ce71950a2cad5fe1b54e79582067ab3814a18540d1799687025d6aa1bf7c37fa68708376c1be6a19ce1963b34d9ffff1bed23dc2a9b8c4768d8669f1b244d91963e9681509f43d6d7f21b4b9acedcbabb22b0ffff1bf8a5a36161042eedd8669f1bc5570cef0fc7609e9f1b854ba790b5bfe6ca468c272c0cc8ceffffff", + "cborBytes": [ + 191, 27, 25, 134, 128, 91, 166, 249, 185, 90, 159, 27, 164, 92, 182, 130, 254, 3, 232, 227, 68, 101, 173, 45, 84, + 27, 64, 20, 165, 144, 199, 189, 225, 75, 27, 16, 243, 36, 198, 65, 200, 20, 13, 255, 27, 61, 93, 53, 158, 149, 94, + 14, 36, 216, 102, 159, 27, 247, 10, 253, 90, 158, 195, 235, 185, 159, 27, 140, 231, 25, 80, 162, 202, 213, 254, + 27, 84, 231, 149, 130, 6, 122, 179, 129, 74, 24, 84, 13, 23, 153, 104, 112, 37, 214, 170, 27, 247, 195, 127, 166, + 135, 8, 55, 108, 27, 230, 161, 156, 225, 150, 59, 52, 217, 255, 255, 27, 237, 35, 220, 42, 155, 140, 71, 104, 216, + 102, 159, 27, 36, 77, 145, 150, 62, 150, 129, 80, 159, 67, 214, 215, 242, 27, 75, 154, 206, 220, 186, 187, 34, + 176, 255, 255, 27, 248, 165, 163, 97, 97, 4, 46, 237, 216, 102, 159, 27, 197, 87, 12, 239, 15, 199, 96, 158, 159, + 27, 133, 75, 167, 144, 181, 191, 230, 202, 70, 140, 39, 44, 12, 200, 206, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3991, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "f6cc44b307f411b4" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "5" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "c2" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + { + "_tag": "ByteArray", + "bytearray": "9e9ad1611a8035a1" + }, + { + "_tag": "ByteArray", + "bytearray": "012801" + } + ] + } + } + ] + }, + "cborHex": "bf48f6cc44b307f411b4d87e9f41c205489e9ad1611a8035a143012801ffff", + "cborBytes": [ + 191, 72, 246, 204, 68, 179, 7, 244, 17, 180, 216, 126, 159, 65, 194, 5, 72, 158, 154, 209, 97, 26, 128, 53, 161, + 67, 1, 40, 1, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3992, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3033040972516797120" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "4121621353195929130" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3659207487918033954" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11460428967571467287" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5883711186603248066" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "483d42a30225f5aea26694" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14634374594099220946" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "3c3d36b601da" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8078712700497255823" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "e6ae21aced1a208f" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12907705926536854781" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1b2a1786b1dc11aac0d8669f1b3932f0c88fe87e2a80ff1b32c81dd2accdcc221b9f0b9f6d11b1ac171b51a72426a67a89c24b483d42a30225f5aea266941bcb17be28374911d2bf463c3d36b601da1b701d5a65f3935d8f48e6ae21aced1a208f1bb3216226f86efcfdffff", + "cborBytes": [ + 191, 27, 42, 23, 134, 177, 220, 17, 170, 192, 216, 102, 159, 27, 57, 50, 240, 200, 143, 232, 126, 42, 128, 255, + 27, 50, 200, 29, 210, 172, 205, 204, 34, 27, 159, 11, 159, 109, 17, 177, 172, 23, 27, 81, 167, 36, 38, 166, 122, + 137, 194, 75, 72, 61, 66, 163, 2, 37, 245, 174, 162, 102, 148, 27, 203, 23, 190, 40, 55, 73, 17, 210, 191, 70, 60, + 61, 54, 182, 1, 218, 27, 112, 29, 90, 101, 243, 147, 93, 143, 72, 230, 174, 33, 172, 237, 26, 32, 143, 27, 179, + 33, 98, 38, 248, 110, 252, 253, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3993, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "44e9374bc7" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "13957687406902728383" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4d078afd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fa290301" + } + } + ] + }, + "cborHex": "bf4544e9374bc7d8669f1bc1b3aabede6156bf80ff444d078afd44fa290301ff", + "cborBytes": [ + 191, 69, 68, 233, 55, 75, 199, 216, 102, 159, 27, 193, 179, 170, 190, 222, 97, 86, 191, 128, 255, 68, 77, 7, 138, + 253, 68, 250, 41, 3, 1, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3994, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "15382381379990361771" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12400878683985427800" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18377309368280945807" + } + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12552564256544298292" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "4359261062769855397" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "499e1f6544b85c674ed8359d" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7006498925043738501" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf1bd579325da1e896abbf1bac18c575ddaa3d581bff095180d7d8148f1bae33aaaf5b9695341b3c7f34d71996cba54c499e1f6544b85c674ed8359d1b613c15a67a636785ffff", + "cborBytes": [ + 191, 27, 213, 121, 50, 93, 161, 232, 150, 171, 191, 27, 172, 24, 197, 117, 221, 170, 61, 88, 27, 255, 9, 81, 128, + 215, 216, 20, 143, 27, 174, 51, 170, 175, 91, 150, 149, 52, 27, 60, 127, 52, 215, 25, 150, 203, 165, 76, 73, 158, + 31, 101, 68, 184, 92, 103, 78, 216, 53, 157, 27, 97, 60, 21, 166, 122, 99, 103, 133, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3995, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "12040391587024956952" + }, + "fields": [] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f3" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "351a" + } + } + ] + }, + "cborHex": "bf4101d8669f1ba718105b0d396e1880ff41f342351aff", + "cborBytes": [191, 65, 1, 216, 102, 159, 27, 167, 24, 16, 91, 13, 57, 110, 24, 128, 255, 65, 243, 66, 53, 26, 255], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3996, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18303779203125532394" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "18446744073709551612" + }, + "fields": [ + { + "_tag": "ByteArray", + "bytearray": "ed4935022db5af" + }, + { + "_tag": "ByteArray", + "bytearray": "beb18a56df2383" + } + ] + } + } + ] + }, + "cborHex": "bf1bfe041635297ad6ead8669f1bfffffffffffffffc9f47ed4935022db5af47beb18a56df2383ffffff", + "cborBytes": [ + 191, 27, 254, 4, 22, 53, 41, 122, 214, 234, 216, 102, 159, 27, 255, 255, 255, 255, 255, 255, 255, 252, 159, 71, + 237, 73, 53, 2, 45, 181, 175, 71, 190, 177, 138, 86, 223, 35, 131, 255, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3997, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "17" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9884345667898071270" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fab4018a00" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "19" + } + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "891621a4e6461ce3e118a177" + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "8507161458202531305" + } + }, + "value": { + "_tag": "Constr", + "index": { + "__type": "bigint", + "value": "8579424727719269191" + }, + "fields": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "9507127030053758457" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "984d303dbc107d1e4f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "10206369338904280506" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "af407cc9df7d022b" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551613" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "46f49dc1" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "01" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18446744073709551599" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "13557939459924566695" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "010c025ef7fb" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "b0" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "2c51d3c7d60a61d1bc42fd" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "810b" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "30d95a74f9761954" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "8652db" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "533e192e976d22912af643e7" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "ca4a" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9521386cd0bb7cad1a" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16979889324875995273" + } + } + } + ] + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "14651773999957552240" + } + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5303154164690601177" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "85c498fc25f9670213476f1f" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "18125616085121312855" + } + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "1899706146398269796" + } + } + } + ] + } + } + ] + }, + "cborHex": "bf11bf1b892c4003f43c58e645fab4018a00ff139f4c891621a4e6461ce3e118a177ff1b760f8245fb0e55e9d8669f1b77103d5588e8d3479f1bffffffffffffffefffff1b83f019a9b4de65f9bf0649984d303dbc107d1e4f1b8da44ed68bd3fdba48af407cc9df7d022b1bfffffffffffffffd4446f49dc141011bffffffffffffffefff1bbc277a1b130e22a7bf46010c025ef7fb41b04b2c51d3c7d60a61d1bc42fd42810b4830d95a74f9761954438652db4c533e192e976d22912af643e742ca4a499521386cd0bb7cad1a1beba4af60aeae5889ff1bcb558ed314c62c70bf1b4998969d8f8444d94c85c498fc25f9670213476f1f1bfb8b1fcbb8c328571b1a5d1cacd1b1f164ffff", + "cborBytes": [ + 191, 17, 191, 27, 137, 44, 64, 3, 244, 60, 88, 230, 69, 250, 180, 1, 138, 0, 255, 19, 159, 76, 137, 22, 33, 164, + 230, 70, 28, 227, 225, 24, 161, 119, 255, 27, 118, 15, 130, 69, 251, 14, 85, 233, 216, 102, 159, 27, 119, 16, 61, + 85, 136, 232, 211, 71, 159, 27, 255, 255, 255, 255, 255, 255, 255, 239, 255, 255, 27, 131, 240, 25, 169, 180, 222, + 101, 249, 191, 6, 73, 152, 77, 48, 61, 188, 16, 125, 30, 79, 27, 141, 164, 78, 214, 139, 211, 253, 186, 72, 175, + 64, 124, 201, 223, 125, 2, 43, 27, 255, 255, 255, 255, 255, 255, 255, 253, 68, 70, 244, 157, 193, 65, 1, 27, 255, + 255, 255, 255, 255, 255, 255, 239, 255, 27, 188, 39, 122, 27, 19, 14, 34, 167, 191, 70, 1, 12, 2, 94, 247, 251, + 65, 176, 75, 44, 81, 211, 199, 214, 10, 97, 209, 188, 66, 253, 66, 129, 11, 72, 48, 217, 90, 116, 249, 118, 25, + 84, 67, 134, 82, 219, 76, 83, 62, 25, 46, 151, 109, 34, 145, 42, 246, 67, 231, 66, 202, 74, 73, 149, 33, 56, 108, + 208, 187, 124, 173, 26, 27, 235, 164, 175, 96, 174, 174, 88, 137, 255, 27, 203, 85, 142, 211, 20, 198, 44, 112, + 191, 27, 73, 152, 150, 157, 143, 132, 68, 217, 76, 133, 196, 152, 252, 37, 249, 103, 2, 19, 71, 111, 31, 27, 251, + 139, 31, 203, 184, 195, 40, 87, 27, 26, 93, 28, 172, 209, 177, 241, 100, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3998, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "5" + } + }, + "value": { + "_tag": "ByteArray", + "bytearray": "54be9763e754826074" + } + }, + { + "key": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "6676296829107353311" + } + }, + "value": { + "_tag": "List", + "list": [] + } + } + ] + }, + "cborHex": "bf054954be9763e7548260741b5ca6f897f202b6df80ff", + "cborBytes": [ + 191, 5, 73, 84, 190, 151, 99, 231, 84, 130, 96, 116, 27, 92, 166, 248, 151, 242, 2, 182, 223, 128, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + }, + { + "index": 3999, + "sample": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "17d120be6577a44747755d65" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "11580828480365425129" + } + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "4964bd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "2a2561676b8c" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "62" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "54ca6d" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0d00" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "9193d6" + }, + "value": { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "12224391506110454116" + } + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "8bfe9fc7be805360" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "ByteArray", + "bytearray": "a3d9" + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "7232929438793965105" + } + }, + { + "_tag": "ByteArray", + "bytearray": "caedc5819c103c7a6a" + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "ee5d" + }, + "value": { + "_tag": "List", + "list": [ + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "16" + } + }, + { + "_tag": "Integer", + "integer": { + "__type": "bigint", + "value": "3857203205648069995" + } + } + ] + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "f807" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "fe" + } + }, + { + "key": { + "_tag": "ByteArray", + "bytearray": "fdfffd" + }, + "value": { + "_tag": "Map", + "entries": [ + { + "key": { + "_tag": "ByteArray", + "bytearray": "0706a8" + }, + "value": { + "_tag": "ByteArray", + "bytearray": "0502" + } + } + ] + } + } + ] + }, + "cborHex": "bf4c17d120be6577a44747755d651ba0b75e2520e871e9434964bdbf462a2561676b8c41624354ca6d420d00439193d61ba9a5c34ea5041964ff488bfe9fc7be8053609f42a3d91b64608700bcc79e3149caedc5819c103c7a6aff42ee5d9f101b358789e11326b56bff42f80741fe43fdfffdbf430706a8420502ffff", + "cborBytes": [ + 191, 76, 23, 209, 32, 190, 101, 119, 164, 71, 71, 117, 93, 101, 27, 160, 183, 94, 37, 32, 232, 113, 233, 67, 73, + 100, 189, 191, 70, 42, 37, 97, 103, 107, 140, 65, 98, 67, 84, 202, 109, 66, 13, 0, 67, 145, 147, 214, 27, 169, + 165, 195, 78, 165, 4, 25, 100, 255, 72, 139, 254, 159, 199, 190, 128, 83, 96, 159, 66, 163, 217, 27, 100, 96, 135, + 0, 188, 199, 158, 49, 73, 202, 237, 197, 129, 156, 16, 60, 122, 106, 255, 66, 238, 93, 159, 16, 27, 53, 135, 137, + 225, 19, 38, 181, 107, 255, 66, 248, 7, 65, 254, 67, 253, 255, 253, 191, 67, 7, 6, 168, 66, 5, 2, 255, 255 + ], + "roundTripSuccess": true, + "metadata": { + "type": "map", + "seed": 12345 + } + } +] diff --git a/packages/evolution/test/golden/summary.json b/packages/evolution/test/golden/summary.json new file mode 100644 index 00000000..3d7d3d01 --- /dev/null +++ b/packages/evolution/test/golden/summary.json @@ -0,0 +1,15 @@ +{ + "seed": 12345, + "targetSamplesPerType": 4000, + "actualSamplesPerType": { + "integer": 4000, + "byteArray": 4000, + "list": 4000, + "map": 4000, + "constr": 4000, + "data": 4000 + }, + "types": ["integer", "byteArray", "list", "map", "constr", "data"], + "totalSamples": 24000, + "uniquenessGuaranteed": true +} diff --git a/packages/evolution/tsconfig.build.json b/packages/evolution/tsconfig.build.json new file mode 100644 index 00000000..02c325c6 --- /dev/null +++ b/packages/evolution/tsconfig.build.json @@ -0,0 +1,10 @@ +{ + "$schema": "http://json.schemastore.org/tsconfig", + "extends": "./tsconfig.src.json", + "compilerOptions": { + "tsBuildInfoFile": ".tsbuildinfo/build.tsbuildinfo", + "outDir": "dist", + "types": ["node"], + "stripInternal": true + } +} diff --git a/packages/evolution/tsconfig.build.tsbuildinfo b/packages/evolution/tsconfig.build.tsbuildinfo new file mode 100644 index 00000000..67bae900 --- /dev/null +++ b/packages/evolution/tsconfig.build.tsbuildinfo @@ -0,0 +1 @@ +{"fileNames":["../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/types.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/hkt.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/function.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/precondition/pre.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/generator/randomgenerator.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/generator/linearcongruential.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/generator/mersennetwister.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/generator/xorshift.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/generator/xoroshiro.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/distribution.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/internals/arrayint.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/uniformarrayintdistribution.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/uniformbigintdistribution.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/uniformintdistribution.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/unsafeuniformarrayintdistribution.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/unsafeuniformbigintdistribution.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/unsafeuniformintdistribution.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/pure-rand-default.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/pure-rand.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/random/generator/random.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/stream/stream.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/arbitrary/definition/value.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/arbitrary/definition/arbitrary.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/precondition/preconditionfailure.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/irawproperty.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/maxlengthfromminlength.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/configuration/randomtype.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/configuration/verbositylevel.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/reporter/executionstatus.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/reporter/executiontree.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/reporter/rundetails.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/configuration/parameters.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/configuration/globalparameters.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/asyncproperty.generic.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/asyncproperty.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/property.generic.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/property.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/runner.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/sampler.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/builders/generatorvaluebuilder.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/gen.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/depthcontext.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/bigint.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/bigintn.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/biguint.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/biguintn.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/boolean.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/falsy.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ascii.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/base64.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/char.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/char16bits.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/fullunicode.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/hexa.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/unicode.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/constant.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/constantfrom.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/context.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/date.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/clone.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/dictionary.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/emailaddress.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/double.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/float.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/comparebooleanfunc.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/comparefunc.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/func.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/domain.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/integer.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/maxsafeinteger.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/maxsafenat.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/nat.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ipv4.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ipv4extended.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ipv6.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/letrec.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/lorem.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/maptoconstant.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/memo.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/mixedcase.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_shared/stringsharedconstraints.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/string.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/qualifiedobjectconstraints.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/object.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/jsonconstraintsbuilder.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/json.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/unicodejson.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/anything.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/unicodejsonvalue.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/jsonvalue.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/oneof.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/option.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/record.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uniquearray.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/infinitestream.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/asciistring.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/base64string.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/fullunicodestring.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/hexastring.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/string16bits.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/stringof.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/unicodestring.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/subarray.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/shuffledsubarray.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/tuple.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ulid.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uuid.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uuidv.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/webauthority.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/webfragments.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/webpath.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/webqueryparameters.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/websegment.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/weburl.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/command/icommand.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/command/asynccommand.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/command/command.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/commands/commandscontraints.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/commands.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/interfaces/scheduler.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/scheduler.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/modelrunner.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/symbols.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/utils/hash.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/utils/stringify.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/utils/rundetailsformatter.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/builders/typedintarrayarbitrarybuilder.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/int8array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/int16array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/int32array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uint8array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uint8clampedarray.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uint16array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uint32array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/float32array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/float64array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/sparsearray.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/bigint64array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/biguint64array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/stringmatching.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/noshrink.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/nobias.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/limitshrink.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/fast-check-default.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/fast-check.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fastcheck.d.ts","../../node_modules/.pnpm/@standard-schema+spec@1.0.0/node_modules/@standard-schema/spec/dist/index.d.cts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/equivalence.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/childexecutordecision.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/hash.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/equal.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/nonemptyiterable.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/order.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/pipeable.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/predicate.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/unify.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/utils.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/option.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/chunk.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/context.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/hashset.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberid.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/exit.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/deferred.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/duration.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/clock.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/brand.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/configerror.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/hashmap.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/loglevel.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/redacted.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/secret.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/config.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/configproviderpathpatch.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/configprovider.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/differ.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/list.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/logspan.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/executionstrategy.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scope.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/logger.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metriclabel.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/cache.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/request.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/runtimeflagspatch.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/runtimeflags.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/console.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/random.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tracer.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/defaultservices.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberstatus.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mutableref.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/sortedset.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/supervisor.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiber.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scheduler.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberref.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/runtime.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/datetime.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/cron.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/readable.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/ref.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scheduleinterval.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scheduleintervals.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scheduledecision.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/schedule.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/executionplan.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mutablequeue.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/queue.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/take.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/groupby.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/pubsub.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mergedecision.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/sink.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/streamemit.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/streamhaltstrategy.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/stm.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tqueue.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tpubsub.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/stream.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/layer.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mergestrategy.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/singleproducerasyncinput.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/upstreampullrequest.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/upstreampullstrategy.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/channel.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/cause.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberrefspatch.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/managedruntime.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metricboundaries.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metricstate.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metrickeytype.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metrickey.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metricpair.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metrichook.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metricregistry.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metric.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/requestresolver.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/requestblock.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/effect.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberrefs.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/inspectable.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/either.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/record.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/array.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/ordering.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/bigdecimal.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/schemaast.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/parseresult.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/pretty.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/schema.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/arbitrary.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/bigint.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/boolean.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/data.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/effectable.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/encoding.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberhandle.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fibermap.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberset.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/globalvalue.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/iterable.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/jsonschema.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/keyedpool.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/rcmap.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/layermap.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mailbox.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/match.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mergestate.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metricpolling.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/micro.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/moduleversion.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mutablehashmap.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mutablehashset.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mutablelist.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/number.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/pool.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/primarykey.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/ratelimiter.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/rcref.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/redblacktree.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/regexp.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/reloadable.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/resource.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scopedcache.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scopedref.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/sortedmap.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/streamable.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/string.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/struct.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/subscribable.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/synchronizedref.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/subscriptionref.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/symbol.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tarray.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tdeferred.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tmap.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tpriorityqueue.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/trandom.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/treentrantlock.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tref.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tsemaphore.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tset.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tsubscriptionref.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testannotation.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testannotationmap.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testannotations.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testlive.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testclock.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testconfig.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testsized.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testservices.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testcontext.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/trie.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tuple.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/index.d.ts","./src/codec.ts","./src/bytes.ts","./src/bytes57.ts","./src/cbor.ts","./src/hash28.ts","./src/keyhash.ts","./src/scripthash.ts","./src/credential.ts","./src/networkid.ts","./src/baseaddress.ts","../../node_modules/.pnpm/@scure+base@1.2.6/node_modules/@scure/base/lib/esm/index.d.ts","./src/bech32.ts","./src/byronaddress.ts","./src/bytes29.ts","./src/enterpriseaddress.ts","./src/natural.ts","./src/pointer.ts","./src/pointeraddress.ts","./src/rewardaccount.ts","./src/address.ts","./src/addressdetails.ts","./src/addresstag.ts","./src/bytes32.ts","./src/text.ts","./src/text128.ts","./src/url.ts","./src/anchor.ts","./src/assetname.ts","./src/auxiliarydatahash.ts","./src/bigint.ts","./src/blockbodyhash.ts","./src/blockheaderhash.ts","./src/bytes64.ts","./src/ed25519signature.ts","./src/kesvkey.ts","./src/numeric.ts","./src/operationalcert.ts","./src/protocolversion.ts","./src/vkey.ts","./src/bytes80.ts","./src/vrfcert.ts","./src/vrfvkey.ts","./src/headerbody.ts","./src/bytes448.ts","./src/kessignature.ts","./src/header.ts","./src/coin.ts","./src/drep.ts","./src/epochno.ts","./src/poolkeyhash.ts","./src/certificate.ts","./src/nonzeroint64.ts","./src/policyid.ts","./src/mint.ts","./src/positivecoin.ts","./src/proposalprocedures.ts","./src/scriptdatahash.ts","./src/transactionhash.ts","./src/transactioninput.ts","./src/data.ts","./src/datumoption.ts","./src/scriptref.ts","./src/multiasset.ts","./src/value.ts","./src/transactionoutput.ts","./src/votingprocedures.ts","./src/withdrawals.ts","./src/transactionbody.ts","./src/transactionindex.ts","./src/block.ts","./src/boundedbytes.ts","./src/bytes16.ts","./src/bytes4.ts","./src/combinator.ts","./src/committeecoldcredential.ts","./src/committeehotcredential.ts","./src/drepcredential.ts","../../node_modules/.pnpm/@anastasia-labs+cardano-multiplatform-lib-nodejs@6.0.1/node_modules/@anastasia-labs/cardano-multiplatform-lib-nodejs/cardano_multiplatform_lib.d.ts","./src/datajson.ts","./src/dnsname.ts","./src/formaterror.ts","./src/ipv4.ts","./src/ipv6.ts","./src/multihostname.ts","./src/nativescriptjson.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/error.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/command.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/commandexecutor.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/filesystem.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodecommandexecutor.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/path.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/terminal.d.ts","../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/ast.d.ts","../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/fastcheck.d.ts","../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/arbitrary.d.ts","../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/pretty.d.ts","../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/serializable.d.ts","../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/schema.d.ts","../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/parseresult.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/workererror.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/worker.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodecontext.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodefilesystem.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/cookies.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/headers.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/urlparams.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpbody.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpmethod.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpclientrequest.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpincomingmessage.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpclientresponse.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpclienterror.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpclient.d.ts","../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/header.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/readable.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/index.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/file.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/fetch.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/formdata.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/connector.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/client.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/errors.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/dispatcher.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/global-origin.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/pool-stats.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/pool.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/handlers.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/balanced-pool.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/agent.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/mock-agent.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/mock-client.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/mock-pool.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/mock-errors.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/proxy-agent.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/env-http-proxy-agent.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/retry-handler.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/retry-agent.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/api.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/interceptors.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/util.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/cookies.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/patch.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/websocket.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/eventsource.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/filereader.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/content-type.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/cache.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/index.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/index.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodehttpclient.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/etag.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpserverrespondable.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/template.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpserverresponse.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpplatform.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodehttpplatform.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpservererror.d.ts","../../node_modules/.pnpm/multipasta@0.2.7/node_modules/multipasta/dist/dts/headersparser.d.ts","../../node_modules/.pnpm/multipasta@0.2.7/node_modules/multipasta/dist/dts/index.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/multipart.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/socket.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpserverrequest.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpmiddleware.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpapp.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpserver.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodehttpserver.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodehttpserverrequest.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/keyvaluestore.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodekeyvaluestore.d.ts","../../node_modules/.pnpm/@effect+platform-node-shared@0.18.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17_unk3duwg6ayeshdokpyl7oceaa/node_modules/@effect/platform-node-shared/dist/dts/nodemultipart.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodemultipart.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodepath.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/runtime.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/noderuntime.d.ts","../../node_modules/.pnpm/@effect+platform-node-shared@0.18.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17_unk3duwg6ayeshdokpyl7oceaa/node_modules/@effect/platform-node-shared/dist/dts/nodestream.d.ts","../../node_modules/.pnpm/@effect+platform-node-shared@0.18.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17_unk3duwg6ayeshdokpyl7oceaa/node_modules/@effect/platform-node-shared/dist/dts/nodesink.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodesink.d.ts","../../node_modules/.pnpm/@effect+platform-node-shared@0.18.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17_unk3duwg6ayeshdokpyl7oceaa/node_modules/@effect/platform-node-shared/dist/dts/nodesocket.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodesocket.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodestream.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodeterminal.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodeworker.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/workerrunner.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodeworkerrunner.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/index.d.ts","../../node_modules/.pnpm/@types+ssh2@1.15.5/node_modules/@types/ssh2/index.d.ts","../../node_modules/.pnpm/@types+docker-modem@3.0.6/node_modules/@types/docker-modem/index.d.ts","../../node_modules/.pnpm/@types+dockerode@3.3.42/node_modules/@types/dockerode/index.d.ts","./src/devnet/devnetdefault.ts","./src/devnet/devnet.ts","./src/network.ts","./src/paymentaddress.ts","./src/poolmetadata.ts","./src/port.ts","./src/singlehostaddr.ts","./src/singlehostname.ts","./src/relay.ts","./src/unitinterval.ts","./src/vrfkeyhash.ts","./src/poolparams.ts","./src/rewardaddress.ts","./src/stakereference.ts","./src/transaction.ts","./src/transactionmetadatumlabels.ts","./src/tschema.ts","./src/index.ts","./src/nativescripts.ts"],"fileIdsList":[[498,540],[240,274,280,286,300,465,467,498,540,555,571,636],[62,219,274,286,498,540,571,651],[219,220,240,274,277,280,281,286,300,498,540,560,571,637],[62,219,274,280,286,300,462,465,498,540,571],[466,478,479,498,540,626,632,642,643,645,647,648,650,653,655,656,657,658,660],[281,464,465,498,540],[281,464,465,467,468,477,498,540],[281,465,498,540],[220,240,274,277,280,281,286,300,489,498,540,555,557,625],[274,280,281,286,300,465,498,540,627,631],[62,228,233,240,274,280,281,286,300,478,489,498,540,555,560,627,631,633,638,639,640,641],[498,540,555,638],[281,462,498,540,644],[498,540,646],[281,467,498,540],[498,540,649],[498,540,652],[281,498,540,637,654],[498,540,651],[240,274,280,281,286,300,468,498,540],[281,477,498,540,587],[281,498,540,659],[214,218,229,240,274,277,280,286,300,302,305,462,464,498,540],[220,227,240,274,277,280,286,300,302,462,463,498,540],[60,214,218,225,277,287,300,302,303,304,498,540],[60,287,498,540],[220,274,277,280,281,286,300,465,483,498,540],[218,220,227,240,274,277,280,281,286,300,315,462,498,540],[218,231,257,277,300,304,474,498,540],[218,240,257,258,274,277,280,281,286,300,498,540,630,633,638,639],[274,280,286,300,302,462,465,474,475,482,498,540],[214,215,220,240,255,257,262,266,274,277,280,281,286,300,302,480,485,487,488,498,540],[60,287,485,487,498,540],[214,218,231,274,277,280,286,300,302,462,465,469,474,481,482,483,484,498,540],[216,240,274,280,286,300,469,474,475,480,485,486,488,498,540],[218,257,274,277,280,286,300,302,465,469,474,475,481,482,498,540],[215,257,274,280,281,286,300,498,540,638,640],[220,274,277,280,281,286,300,462,465,481,483,498,540,627,630],[220,240,274,277,280,281,286,300,489,498,540,638,639,640],[60,218,222,223,274,277,280,286,287,300,498,540,628,630,638],[218,219,220,240,274,277,280,286,300,304,465,467,469,474,475,481,484,486,498,540,633,636,637],[274,280,286,300,498,540,630],[258,274,280,286,300,302,462,465,469,474,480,481,482,483,498,540,628,629,631],[62,218,220,274,277,280,281,286,300,462,465,467,474,475,498,540],[218,219,240,257,274,277,280,286,287,300,302,465,467,469,474,475,498,540,635],[220,274,277,280,281,286,300,462,498,540],[223,255,274,280,286,300,498,540],[60,219,220,225,240,257,274,277,280,281,286,287,300,498,540],[218,274,277,280,286,300,498,540],[60,218,220,274,277,280,286,287,300,462,498,540],[218,274,277,280,286,300,303,469,474,475,498,540],[62,220,224,225,240,274,277,280,281,286,300,337,473,474,475,476,498,540],[287,474,498,540],[220,240,274,277,280,281,286,300,473,474,476,498,540],[470,474,498,540],[60,218,274,277,280,286,300,305,475,498,540],[205,498,540],[60,62,218,274,277,280,286,287,300,302,303,305,469,474,498,540],[469,474,498,540],[60,62,208,213,214,218,219,221,222,223,225,227,229,231,233,237,244,253,259,274,277,280,286,287,300,303,305,307,469,471,472,473,475,498,540],[223,274,280,286,300,474,475,498,540],[498,540,555,560,571,589,662],[498,540,552,571,589,662,663],[498,537,540],[498,539,540],[540],[498,540,545,574],[498,540,541,546,552,553,560,571,582],[498,540,541,542,552,560],[493,494,495,498,540],[498,540,543,583],[498,540,544,545,553,561],[498,540,545,571,579],[498,540,546,548,552,560],[498,539,540,547],[498,540,548,549],[498,540,550,552],[498,539,540,552],[498,540,552,553,554,571,582],[498,540,552,553,554,567,571,574],[498,535,540],[498,540,548,552,555,560,571,582],[498,540,552,553,555,556,560,571,579,582],[498,540,555,557,571,579,582],[496,497,498,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588],[498,540,552,558],[498,540,559,582,587],[498,540,548,552,560,571],[498,540,561],[498,540,562],[498,539,540,563],[498,537,538,539,540,541,542,543,544,545,546,547,548,549,550,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588],[498,540,565],[498,540,566],[498,540,552,567,568],[498,540,567,569,583,585],[498,540,552,571,572,574],[498,540,573,574],[498,540,571,572],[498,540,574],[498,540,575],[498,537,540,571,576],[498,540,552,577,578],[498,540,577,578],[498,540,545,560,571,579],[498,540,580],[498,540,560,581],[498,540,555,566,582],[498,540,545,583],[498,540,571,584],[498,540,559,585],[498,540,586],[498,540,552,554,563,571,574,582,585,587],[498,540,571,588],[498,540,552,555,557,560,571,589],[206,311,498,540],[60,61,62,208,213,215,218,277,300,303,304,498,540],[208,211,213,214,218,277,300,302,306,498,540],[208,213,218,277,300,306,498,540],[62,208,213,498,540],[60,215,218,277,300,303,498,540],[60,215,218,223,225,274,277,280,286,300,303,498,540],[60,211,214,215,218,219,221,222,249,274,277,280,286,300,302,303,498,540],[60,62,209,214,215,216,218,219,220,223,224,240,249,262,269,272,273,274,277,280,281,282,283,284,285,286,287,300,303,498,540],[60,61,208,211,212,213,214,215,218,277,300,302,303,305,498,540],[220,225,274,277,280,286,300,498,540],[60,62,215,218,219,221,225,227,228,229,230,231,232,274,277,280,286,300,303,498,540],[287,498,540],[62,214,220,221,228,233,234,274,277,280,286,300,498,540],[220,240,274,277,280,281,286,300,498,540],[60,62,211,214,216,218,277,300,302,498,540],[60,208,211,214,218,259,277,287,300,302,303,498,540],[60,216,287,498,540],[62,208,213,214,218,220,225,274,277,280,281,286,287,300,302,303,498,540],[220,226,235,247,248,249,257,277,300,498,540],[60,62,216,218,222,223,274,277,280,286,287,300,498,540],[60,211,214,219,220,221,229,277,300,303,498,540],[208,211,213,214,218,277,300,302,498,540],[60,61,62,208,214,215,216,217,218,219,220,221,222,223,224,225,226,229,230,235,239,240,242,244,245,246,247,248,249,251,254,255,256,257,258,262,266,267,277,281,287,288,289,297,298,299,300,301,303,305,498,540],[274,280,286,300,498,540],[60,61,62,208,214,215,216,217,218,277,300,302,498,540],[277,300,303,498,540],[208,210,498,540],[61,498,540],[214,220,266,274,277,280,281,286,300,305,498,540],[62,498,540],[60,214,215,216,218,222,274,277,280,286,287,300,302,303,498,540],[60,213,216,218,220,221,222,223,240,246,249,250,251,254,256,257,274,277,280,286,287,300,301,303,498,540],[214,218,222,224,240,255,258,274,277,280,286,287,300,302,498,540],[211,218,221,277,300,302,498,540],[60,62,216,218,219,220,221,229,230,236,237,238,240,241,242,244,246,249,254,256,274,277,280,286,287,300,498,540],[214,218,221,222,257,274,277,280,286,300,305,498,540],[222,257,301,498,540],[214,222,224,240,255,258,274,280,286,300,302,498,540],[211,222,246,498,540],[60,214,215,269,270,280,498,540],[60,211,214,218,221,277,300,302,498,540],[60,211,214,215,302,498,540],[60,498,540],[60,61,62,206,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,498,540],[301,498,540],[60,218,277,300,303,304,305,498,540],[308,311,498,540],[60,214,225,240,274,280,286,300,498,540],[60,62,214,218,220,223,226,230,235,240,244,248,249,256,257,258,266,274,277,280,286,287,300,498,540],[220,225,240,258,274,277,280,281,286,300,325,498,540],[60,208,211,212,214,215,218,219,277,300,302,303,498,540],[60,62,214,218,222,225,229,230,237,238,240,274,277,280,281,286,287,300,301,498,540],[213,214,274,280,286,300,498,540],[218,219,223,240,274,277,280,286,287,300,302,498,540],[216,223,255,258,274,280,281,286,300,498,540],[60,214,215,216,218,277,300,303,498,540],[60,223,274,280,286,300,498,540],[223,255,274,277,280,286,300,303,498,540],[60,62,214,225,242,274,280,286,290,291,292,293,294,296,300,498,540],[211,214,498,540],[60,62,214,291,293,498,540],[60,211,214,218,225,242,277,290,292,300,498,540],[60,211,214,225,290,291,498,540],[60,214,291,292,293,498,540],[214,240,255,266,274,280,286,297,300,498,540],[292,293,294,295,498,540],[60,211,214,218,277,292,300,498,540],[60,61,62,214,215,216,217,218,220,274,277,280,286,300,302,303,316,498,540],[214,218,277,300,302,498,540],[214,302,498,540],[214,219,302,498,540],[60,61,62,208,213,214,215,216,217,277,300,302,303,498,540],[60,62,218,274,277,280,286,287,300,302,303,305,308,311,498,540],[60,214,216,225,240,274,280,286,300,498,540],[60,61,498,540],[214,240,269,274,280,286,300,498,540],[60,214,216,218,219,224,252,268,274,277,280,286,300,498,540],[212,219,220,274,277,280,286,287,300,305,498,540],[225,240,274,280,286,300,498,540],[60,214,225,240,274,280,286,287,300,498,540],[60,216,225,240,261,274,280,286,300,498,540],[60,214,274,280,286,300,498,540],[60,61,208,218,277,300,303,498,540],[60,208,211,214,498,540],[60,211,213,214,218,219,277,300,302,498,540],[60,216,218,261,274,277,280,286,300,498,540],[60,220,266,274,277,280,281,286,300,498,540],[60,218,222,223,224,225,243,274,277,280,286,287,300,498,540],[244,298,498,540],[60,211,214,220,244,257,274,277,280,286,300,303,305,498,540],[60,216,240,266,274,280,286,300,498,540],[214,220,222,223,240,246,255,256,257,274,277,280,286,287,300,301,302,498,540],[236,245,281,498,540],[246,498,540],[60,62,214,215,218,219,220,225,259,260,262,264,265,274,277,280,286,287,300,303,498,540],[263,264,498,540],[218,225,277,300,498,540],[219,263,498,540],[255,498,540],[60,62,207,208,213,214,218,219,221,222,223,225,227,229,231,233,237,244,253,259,274,277,280,286,287,300,303,305,307,308,309,310,312,498,540],[60,208,218,274,277,280,286,300,305,309,498,540],[214,220,223,239,274,277,280,286,300,498,540],[60,214,218,223,225,240,243,274,277,280,286,300,498,540],[60,62,214,216,240,274,280,286,300,498,540],[211,231,498,540],[223,274,277,280,286,287,300,303,498,540],[60,62,214,215,216,218,219,220,221,223,225,229,240,269,272,273,274,277,280,286,287,300,303,498,540],[60,211,213,214,218,277,300,302,498,540],[60,208,211,213,214,215,302,498,540],[60,61,62,214,215,216,217,218,220,222,274,277,280,286,287,300,303,498,540],[60,61,62,213,214,215,216,218,219,220,223,224,225,240,249,258,266,267,269,270,271,272,274,275,276,277,278,279,280,281,286,287,300,303,498,540],[280,498,540],[218,219,223,274,277,280,286,287,300,498,540],[208,213,215,218,277,300,305,306,498,540],[60,208,213,498,540],[60,261,274,280,286,300,498,540],[60,216,218,274,277,280,286,300,351,352,498,540],[60,218,220,223,252,253,255,274,277,280,281,286,300,498,540],[208,498,540],[60,216,218,262,274,277,280,286,300,498,540],[60,214,218,219,223,274,277,280,286,287,300,498,540],[60,213,215,218,277,300,498,540],[60,218,277,300,303,498,540],[60,211,219,221,252,253,255,277,300,303,498,540],[229,365,498,540],[220,253,255,262,274,277,280,286,300,365,366,498,540],[219,220,224,225,226,259,274,277,280,281,286,300,367,368,498,540],[220,277,300,498,540],[250,281,372,498,540],[220,250,274,277,280,286,300,498,540],[220,240,250,253,255,257,274,277,280,281,286,300,365,367,368,370,371,498,540],[220,257,274,277,280,286,300,498,540],[60,62,218,219,229,277,300,498,540],[60,213,215,218,219,277,300,498,540],[60,240,274,277,278,280,286,300,498,540],[60,215,218,277,300,498,540],[62,218,220,223,255,274,277,280,286,300,498,540],[220,277,281,300,498,540],[240,274,277,280,286,300,498,540],[60,214,218,277,300,498,540],[60,211,214,218,277,300,302,498,540],[60,215,218,219,221,277,300,498,540],[60,218,240,274,277,278,280,286,300,361,498,540],[60,61,208,213,215,498,540],[60,218,277,300,498,540],[82,498,540],[85,498,540],[85,142,498,540],[82,85,142,498,540],[82,143,498,540],[82,85,101,498,540],[82,141,498,540],[82,187,498,540],[82,176,177,178,498,540],[82,85,498,540],[82,85,124,498,540],[82,85,123,498,540],[82,99,498,540],[80,82,498,540],[82,145,498,540],[82,180,498,540],[82,85,169,498,540],[79,80,81,498,540],[175,498,540],[176,177,181,498,540],[82,93,498,540],[84,92,498,540],[79,80,81,83,498,540],[82,95,498,540],[85,91,498,540],[78,86,87,90,498,540],[88,498,540],[87,89,91,498,540],[84,90,91,94,96,498,540],[82,84,91,498,540],[90,498,540],[63,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,96,97,98,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,142,144,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,498,540],[204,498,540],[78,498,540],[498,540,634],[64,498,540],[64,69,70,498,540],[64,69,498,540],[64,70,498,540],[64,65,66,67,68,69,71,72,73,74,75,76,498,540],[77,498,540],[498,507,511,540,582],[498,507,540,571,582],[498,502,540],[498,504,507,540,579,582],[498,540,560,579],[498,540,589],[498,502,540,589],[498,504,507,540,560,582],[498,499,500,503,506,540,552,571,582],[498,507,514,540],[498,499,505,540],[498,507,528,529,540],[498,503,507,540,574,582,589],[498,528,540,589],[498,501,502,540,589],[498,507,540],[498,501,502,503,504,505,506,507,508,509,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,529,530,531,532,533,534,540],[498,507,522,540],[498,507,514,515,540],[498,505,507,515,516,540],[498,506,540],[498,499,502,507,540],[498,507,511,515,516,540],[498,511,540],[498,505,507,510,540,582],[498,499,504,507,514,540],[498,540,571],[498,502,507,528,540,587,589],[498,540,624],[498,540,582,596,600],[498,540,571,582,596],[498,540,591],[498,540,579,582,593,596],[498,540,589,591],[498,540,560,582,593,596],[491,492,498,540,552,571,582,592,595],[498,540,596,603],[491,498,540,594],[498,540,596,617,618],[498,540,574,582,589,592,596],[498,540,589,617],[498,540,589,590,591],[498,540,596],[498,540,590,591,592,593,594,595,596,597,598,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,618,619,620,621,622,623],[498,540,548,596,611],[498,540,596,603,604],[498,540,594,596,604,605],[498,540,595],[491,498,540,591,596],[498,540,596,600,604,605],[498,540,600],[498,540,582,594,596,599],[491,498,540,593,596,603],[498,540,596,611],[498,540,587,589,591,596,617],[376,377,378,386,388,389,391,394,395,498,540],[376,377,378,385,388,396,498,540],[376,498,540],[376,377,378,380,399,402,498,540],[376,377,399,498,540],[376,377,378,379,382,383,384,385,498,540],[376,387,498,540],[376,422,444,445,498,540],[376,378,385,498,540],[376,377,498,540],[376,378,498,540],[376,377,378,498,540],[376,384,403,423,424,425,426,498,540],[380,384,498,540],[384,498,540],[376,377,378,380,382,383,498,540],[376,377,378,380,412,498,540],[309,376,378,454,498,540],[376,377,378,380,399,436,498,540],[376,498,540,553,561,562,661,664,665],[376,377,401,498,540],[376,377,409,498,540],[376,377,378,382,383,384,385,390,498,540],[376,412,498,540],[376,377,378,380,419,421,498,540],[376,377,378,380,392,407,408,410,411,413,414,415,417,418,498,540],[377,378,379,380,381,382,383,384,385,386,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,455,456,457,458,459,460,461,498,540,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,683],[376,377,449,498,540],[376,377,448,498,540],[376,377,420,498,540],[376,377,381,498,540],[376,377,378,380,404,428,429,498,540],[376,377,378,380,404,429,431,498,540],[376,377,378,380,456,498,540],[309,376,377,380,382,412,461,498,540,682],[376,385,498,540],[376,377,378,380,410,411,412,498,540],[376,392,498,540],[376,377,378,382,383,384,385,392,393,498,540],[376,377,378,380,402,498,540],[376,377,378,380,382,385,395,423,426,498,540,669,673,674,675],[376,423,498,540],[376,377,378,380,460,498,540,671,672],[376,399,498,540],[376,377,378,380,498,540],[376,377,378,380,458,459,498,540,670],[376,378,380,456,498,540,670],[376,384,393,498,540],[376,377,400,498,540],[376,444,498,540],[376,381,385,405,423,427,430,431,432,433,435,441,442,443,498,540],[376,377,378,380,412,434,498,540],[376,377,378,380,396,399,437,438,440,498,540],[305,376,436,498,540],[376,377,378,380,404,423,429,431,439,498,540],[376,377,378,380,399,416,498,540],[376,378,380,395,423,498,540]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8b823816e0627945661bae6ed3d79c9ab85a81424a3bf55675eb6fc8c0a139f","impliedFormat":1},{"version":"d25c4cfb4e15e818fb06d63e543ec403e3c8001b570fc16191522184e0ea4a83","impliedFormat":1},{"version":"126a0bdb1dd8a5d8ef52213624cd09d803339f8ac13821a92a3f7dc3d4c55b52","impliedFormat":1},{"version":"b98cbe170e5774f6d9c364eef2a71dff38705390eada04670643271d436e44cd","impliedFormat":1},{"version":"2c1c7ebb6588ca14ec62bc2a19497b6378de25ab5d6a6241f4b8973f5f314faf","impliedFormat":1},{"version":"cefbdbc7607e7d32560385e018b991e18075f9b3b5b952f3b5f20478e4d15c43","impliedFormat":1},{"version":"72339629fd17518e8de4e495b0d91908a938fc4774457f09896789d40eb238b5","impliedFormat":1},{"version":"d0e5421dc798ee8146f82eddd6b96135f662e9a905c3afe400a029eea5b405a8","impliedFormat":1},{"version":"7a0a70d6f7ba13c11bb570a45000e6e428210ec2e1bdb8cbac46c90dfef698e8","impliedFormat":1},{"version":"b375d410108bcc3dab93dbc1de2b64777efac618025dbe675f1b2bfb63a91462","impliedFormat":1},{"version":"e352c35e7a226a5ff81bc9139e6e41bd5990f291a123de224987f5da34e2f725","impliedFormat":1},{"version":"3b416138214e8f4213e911723cf7f383ebdaa97e369687819452b53576980caf","impliedFormat":1},{"version":"faaed6dc3c93ac12afa83fc1a8ac384820437272622308b07f250650e16de120","impliedFormat":1},{"version":"16c28b35bb61fd8937b9ac446744601840e4d135ee863459259973e43d9ac458","impliedFormat":1},{"version":"4dd9018777b9b3feb8a7705841e3322000b3fa9dbb52aeaa7f189a4a408312f5","impliedFormat":1},{"version":"b91e472a9547e0d6e75b114c6d08d2e916174528f71c7473922d74018b9f9b93","impliedFormat":1},{"version":"c04a9cc39d447fa332a52e687b3ecd55165626c4305c1037d02afffd7020867c","impliedFormat":1},{"version":"e41e2bc86051b0f41d5ec99e728127e461b48152b6fb4735822b7fa4b4b0bc77","impliedFormat":1},{"version":"b49e721e29f8bb94b61bf8121a13965cced1b57cd088fb511c25a93c4ddfc1ac","impliedFormat":1},{"version":"24ff411ed19b006ec0efbdc5d56abd5f8a2a605eff97eb3db0941719c19e0844","impliedFormat":1},{"version":"190123e7b32a1a44dcc6b5b397cfd61c452606ea287576679d18f046b9296bf0","impliedFormat":1},{"version":"aeb54b9213fe90552e5e032abd0485d7ed21d505e59782b5e15c344a4ee54db6","impliedFormat":1},{"version":"51a201487cc0049e538a406c884d28b6d2ab141dd9c0650190b791c63803cae8","impliedFormat":1},{"version":"cb37d06c94592039ce1fa54d73ed241115494d886ee84800f3639cce48d0f832","impliedFormat":1},{"version":"82120a297fdf2f0bd9fa877f0c82b26bd9a94635536aa0ab59fe3ec78086f219","impliedFormat":1},{"version":"63aa0a9aa26aced773af0a69efe0cb58e12c7fc1257d1dcf951e9c301da67aee","impliedFormat":1},{"version":"fe9157ed26e6ab75adeead0164445d4ef49978baf2f9d2a5e635faf684d070d4","impliedFormat":1},{"version":"d0a02c12e4fb6b7c666773485e1ea53cdaa02b5b7c9483f370dccf1c815ff385","impliedFormat":1},{"version":"554edc2633760ba1c6ced5ce1e65586fe45f37c1f9f76052f68eadc4a06007b4","impliedFormat":1},{"version":"7c3335010a48156bb5eaa5866aeda1f0bf9a2402500e3cd3d047ca7b34f42dda","impliedFormat":1},{"version":"5d62771188e40ff7468d7f28ea5ed207ec0bce364e59e0fbf3e0c3ec794ddbf8","impliedFormat":1},{"version":"e6affb59098efce161ef8874843ecb1ebfed74f7374af0ce36ec4c9d1a370790","impliedFormat":1},{"version":"16cb0961a5f64defa068e4ce8482ed2e081bf1db2593205cca16f89f7d607b17","impliedFormat":1},{"version":"03bf2b2eee330dd7583c915349d75249ea3e4e2e90c9cc707957c22a37072f38","impliedFormat":1},{"version":"30ba32b82c39057e1f67f0ba14784836148a16d0c6feb5346d17b89559aadacc","impliedFormat":1},{"version":"f68437efcfd89bb312891b1e85e2ff4aa8fafcf0b648fc8d4726158aa4071252","impliedFormat":1},{"version":"dafb6d7587402ec60c4dd7129c8f84eb4af66c9f6b20c286b9dde8f316b9c7f2","impliedFormat":1},{"version":"598c2c581e6bd9171a59ef6ec9ce60d0eddcab49bd9db53a90d169c2387ec908","impliedFormat":1},{"version":"95ba818edf3770e357e9bbe6f55c9227a0041cb2460fff50e9d9e35ce7d23718","impliedFormat":1},{"version":"29a04903692cd5533c3c48c669361876522bde9f594f56d27589886157ad4894","impliedFormat":1},{"version":"d0e6175eb404f3de20b6e7168742eb3c9af55306209b3874ac0f946ac62158d3","impliedFormat":1},{"version":"3e8cfafb493180ef840f481750b49452001e5d80942a2a5d5151deae67b21465","impliedFormat":1},{"version":"d75c6765136563e3155b55220801379cbf1488eb42d7950afe1f94e1c8fde3e8","impliedFormat":1},{"version":"0126291175f486dcb5d8fceb57718c71c9ace7403987724127f373fd6696d067","impliedFormat":1},{"version":"01196174fb4b03fc4cba712a6e5150336b14d232d850dca2c9576d005f434715","impliedFormat":1},{"version":"16a8a7425362ec7531791fc18d2350f9801c483180cc93266c04b66e9676c464","impliedFormat":1},{"version":"63461bf37e9ef045b528e4f2182000922166e1c9729621f56984171cf49f2a8a","impliedFormat":1},{"version":"905fcafee4ebea900d9beec4fbff2b4c2551442da865733e1583085a4dc906d6","impliedFormat":1},{"version":"fe8165682f31b1f82cb93d62a759f1a26eaea745c361fbe2884134b73094d738","impliedFormat":1},{"version":"9b5d632d6f656382a85d3e77330cbf1eb27ed7290e9b3db0cd2663cf9251c6b8","impliedFormat":1},{"version":"2fc74eb5983a1a5986374eac99302432698a97186e577e91aa59b3ff91e657ec","impliedFormat":1},{"version":"ec767f9a0beefc9fc710bb0e5fc77f67468bb3b3fa34b9ebb8f72cd4f9fe2209","impliedFormat":1},{"version":"5fda99f644f00fb41efe3dfe936dc66d6f1d8d4abec93bf9735c4af3f70233dd","impliedFormat":1},{"version":"ceda7e9320a5a86ea760bb70c3c3b2278e01977b2cf30050ac9dfa80528e3442","impliedFormat":1},{"version":"d492ee06385287cce63b4173f7e553b7877464789598b03cec6b35ca2a64f9dd","impliedFormat":1},{"version":"2a0d3ddee69590b52ddec7eecfe8385fc2c54b3e2fd402439abe6b1c962434a6","impliedFormat":1},{"version":"55e6253bf987f95c86280b7bbb40500b5f5a21bfe890f166e647b864d3a7b8c5","impliedFormat":1},{"version":"efc4c4273bdda552afb3425998d95d87cb57a9e119734109c2282b3a378b305a","impliedFormat":1},{"version":"afb6cc0af49d24e5d787de77d5b46f05ecaea444f73829d60fcf6ceb76e608eb","impliedFormat":1},{"version":"882e89116341394e371cd8f24bc2e38239400276da03d3c38c9c9fe6b244fb1f","impliedFormat":1},{"version":"7d17be79ca035a9b8e02ba11f6351cea1bafd38c27a8004a401474ac2aa6695e","impliedFormat":1},{"version":"8e89f4377964cc23d5fe3bed390e5a415926f124a7cc7963d5e7bbce823e9887","impliedFormat":1},{"version":"7f6cdf4d7129c667eabf8c87b1798d5578623e39c42a3ff1aad742561e863858","impliedFormat":1},{"version":"ea5885ba5e792e0b88dc39f51b6b6c6c789d8fe2116bce3905f01d790f59c10d","impliedFormat":1},{"version":"0e09f1810ab7821d9d3c967323ec9cfa042cd9a1d8c3e8af4ed9b6dae4e63f86","impliedFormat":1},{"version":"f089bbeb3f2f0c528d3382fdea9cbb282ce252c918497e7abb974804f4faae1e","impliedFormat":1},{"version":"e57ad5997f573113f39391e780098560a341556b8d55d07b02675afbd72d82cf","impliedFormat":1},{"version":"896ed9bc9650a9ad6ead21583c007463217edeb58a4f45d1d019c1926b684643","impliedFormat":1},{"version":"7976b4472cfda91c462250daf51eae6e1121c2d725e4812d5c89019bb00e9551","impliedFormat":1},{"version":"901807bd11ececb52f0a2586689dacabf0e14f15e5e0604a673c9e1ff8186412","impliedFormat":1},{"version":"c9ebb2be9fc78b6df354c69b646c37945da54464389ce4342a0fd9cebc731f19","impliedFormat":1},{"version":"3f9a0317283412268b02f47fb3c83920a3b6a6c506898cef7e6ed42d5aff8d45","impliedFormat":1},{"version":"9de11c7d313d848291ec1a850637cc23dc7978f7350541af3314f7b343287d11","impliedFormat":1},{"version":"23f76b69848fe41a4801c7df41cf22bb380ad3fefc5adf2f7026d60f9f0451ba","impliedFormat":1},{"version":"ec17da14f94c8fddb8adeb4277b2cdd75f592095c4236db613853fe569ddb7b9","impliedFormat":1},{"version":"48ade6580bd1b0730427316352920606ff854f6a4548d2dee073fab4eecc6e62","impliedFormat":1},{"version":"5975ac1e6043d47f6771a0219b66530c23f05d1a27743091203ee7f6ea0f3a7b","impliedFormat":1},{"version":"e84b43d807d525da4dcd996ecf63e17245649672c2f620e84faed87e518ad639","impliedFormat":1},{"version":"2dbf4764d09250ec5850b5cd5ab47f72c9a16add6c73bd1f1ebfb55aefbb35d7","impliedFormat":1},{"version":"d147d653b19c446e14cc941c2a96eb111512702f765e086a450c5b720d2128b6","impliedFormat":1},{"version":"e9f2adc30882f676aa8109beeb32f2229da408f3ff25cd66b18e0d65fc162e51","impliedFormat":1},{"version":"1cc2419f7786055521ea0985b44dd961563a645dad471de3d6a45b83e686121f","impliedFormat":1},{"version":"9feba5111ddcd564d317f8a5fddd361f451b90fef6a17278134db450febc03a2","impliedFormat":1},{"version":"0b0ab6bb2cce3b6398ea9e01980e3a0d8dd341c6c83fffbcf4b33d3065fdeb76","impliedFormat":1},{"version":"31c5e0d467794830f02766351f8d5e9c2b08e6cc4e739478f798fb243e3eb8ce","impliedFormat":1},{"version":"7855b568645d7fa99b22eb48070c5174cf45c198b9f81abb5cbed6f4e6051a7b","impliedFormat":1},{"version":"fe01241cd36b45f1673814120a682aaa41ee12b62509c46535925ce991cca196","impliedFormat":1},{"version":"e2a3d01be6c9004bb660546b244d0bc3aba49ea6e42af5490afa6bb9eacaf03b","impliedFormat":1},{"version":"d46410a523d938fae1c998fd4317867ea4fd09c90f548070317570682e5fb144","impliedFormat":1},{"version":"3eb7886b8771bb649de71937d1d06a56277f9aa4705d4748ab10e2549cb90051","impliedFormat":1},{"version":"e1b882923b064f7ec2cec07f9ba2c2027d43502eb7fca3ce5444f5b4de8d812b","impliedFormat":1},{"version":"e05f866a0711a3a6059be95921a6c25b4a5a4190c295341ed4958950e491f9c4","impliedFormat":1},{"version":"a2fec5fe18ee1eea9782074951c366b9952f7dfd8282104cf8002821daddd07b","impliedFormat":1},{"version":"a4cf0ab697cbab80d76105244792d400e37a789cc3e783e94afc62290f4524e1","impliedFormat":1},{"version":"cd279bc48f9d44eb6cc4e98155ffbc29489d2ecc0ad8f83fee2956b62b0fbe47","impliedFormat":1},{"version":"b5f586144570a0e7cfb3efa1ae88c5f8b49d3429a0c63b7eecf7e521bffb6ab2","impliedFormat":1},{"version":"d78bef98f2833243f79ec5a6a2b09dc7ff5fc8d02916404c6599eb8596e5c17c","impliedFormat":1},{"version":"fdd66ca2430dd3eb6463f385c3898291d97b64f2e575ab53c101ee92ba073a5b","impliedFormat":1},{"version":"7b8326615d6ba6f85d6eec78447b5734839572075e053f01972e386569eb7cf9","impliedFormat":1},{"version":"5e1fca4ecd38a7a5194bffefb713460610521d1db4835f715d8b7e5132a451ae","impliedFormat":1},{"version":"e008e16c64ee65759e1336db16e538f2360bda6eee86303b7f9875f93566926a","impliedFormat":1},{"version":"4bf01b353ef24f6daf68d4ed15a40d079dbc8402824e41f9b11444c366c87e46","impliedFormat":1},{"version":"47d370c23aae9d4a46d108fbd241c2f4c4293934348fe67c09275863c663ba28","impliedFormat":1},{"version":"4e37aea128d8ee55192de216ec9b5c19b6f5469f2f3888965e878387b87d82ce","impliedFormat":1},{"version":"e0a26715db09e01d895767dad26409fe282b457fb937087066a83cdf7ed1510d","impliedFormat":1},{"version":"5bbc28e15ffe9c3b553b351da50907f3dace4b8f2698e8c633957ccca79f1587","impliedFormat":1},{"version":"d8605eab739e6eff9e5a810953bc8f110c18d4767915070122d8de270d93a539","impliedFormat":1},{"version":"159559d509aee31c698353bf9d021defadfc017acbcaaa979b03e8b9ea4fcdbe","impliedFormat":1},{"version":"ef830fa9b8ac8e1c7d328e632e1f37251c5f178157e0172b7f91bf82a249ae48","impliedFormat":1},{"version":"029c0ae6486c8247533c321d7769087178efe4f339344ed33ccc919d4645a65c","impliedFormat":1},{"version":"c85cc7e94c2b24b4fef57afb0ab6ecfe6d8fd54f8743f8e761ec1b5b2682d147","impliedFormat":1},{"version":"ba833bb474b4778dd0e708e12e5078a0044fdf872b130c23eee4d4d80cf59c1a","impliedFormat":1},{"version":"b22d90f2d362bb4b0ab09d42b5504a9ef1c3f768336c7676d75208cb9bf44fe1","impliedFormat":1},{"version":"ea725cf858cce0fa4c30b1957eebeb3b84c42c87721dc3a9212738adbdad3e47","impliedFormat":1},{"version":"556dc97b6164b18b1ace4ca474da27bc7ec07ed62d2e1f1e5feec7db34ea85e7","impliedFormat":1},{"version":"34f4a5e5abcb889bd4a1c070db50d102facc8d438bc12fbcd28cf10106e5dec8","impliedFormat":1},{"version":"b278e3030409d79aa0587a1327e4a9bc5333e1c6297f13e61e60117d49bac5a7","impliedFormat":1},{"version":"dcb93b7edd87a93bbda3480a506c636243c43849e28c209294f326080acfb4fd","impliedFormat":1},{"version":"f3179b329e1e7c7b8e9879597daa8d08d1a7c0e3409195b3db5adf0c8a972662","impliedFormat":1},{"version":"19d91a46dc5dff804b67c502c0d08348efa8e841b6eaefb938e4e4258b626882","impliedFormat":1},{"version":"550b1bcee751b496b5c54a4de7a747a186487e74971da1a2fb6488df24234dc5","impliedFormat":1},{"version":"6d54746945b9c2b2c88cd64dc22e5c642971dd39c221ba2ad9a602f46c260c31","impliedFormat":1},{"version":"00677cf86a3e8b5b64ac5a3963be34dd4f6e7b4e52fed9332e190b4a41877fba","impliedFormat":1},{"version":"7cae95b5b65941db32f44820159fa81605097327070ce7abc0508084e88d9366","impliedFormat":1},{"version":"82ea80af29aab4e0c39b6198d3b373ab6431b3f30ee02fdb8513fb1d80da2f98","impliedFormat":1},{"version":"6252c4e1c67faebb31907262e329975c9c9574e662b8e1f29a9e1c65f4933fc1","impliedFormat":1},{"version":"7dd32c136b356b80e648966b457bd5dba81e86a7a5e10118e5dc62a91e5d8dff","impliedFormat":1},{"version":"ff2807d90505df16875eb8beb04e6379d751ea5a6412a612aacc1779dc834f6f","impliedFormat":1},{"version":"707d69e35a457a02df69e407bf45c7c2bd770230e61fba69897c706373efda3d","impliedFormat":1},{"version":"ee3f3159fb0eb04322dc08ca0344cada9b1afdbff4bf021ed229ea33418c02bf","impliedFormat":1},{"version":"60a10874f1445d12af58ec3d7d26711b11b95d2432d7a67d591eed8ac42aeecb","impliedFormat":1},{"version":"6b54b93dee5a1c4f2432571fcb8b6846c224e5fa8a3e1d02a08760d202ba24bf","impliedFormat":1},{"version":"5b5af36f2494858b01f8bc22f08a90e7687fb20fe5b89aec9f05fea56ce2f4a7","impliedFormat":1},{"version":"01dc1755f60d10971b43d71562a7ee05deffc7317a88476becef9b30686fcf5d","impliedFormat":1},{"version":"d0e653d9a5f4970098dfd3bf7ff515fcde909d3599cabadd168b49dd3786c1d3","impliedFormat":1},{"version":"2170cbd9e9feba37765aac36f6bced8349b51b70149b96c359ef6e4e581d29cb","impliedFormat":1},{"version":"e5a7066c96dd80d71293afb5c694142d66abc6a649be4bd6bcdf8629f80bd647","impliedFormat":1},{"version":"d144a03dc18068dc788da021f34b96cd0011aa767f0c811fd16e17e0fabafac4","impliedFormat":1},{"version":"41d4348127cac62f18177bfbd6673d7227d08df3c834808b7bbf623220854dcb","impliedFormat":1},{"version":"82f83d1c59621504a282813d2079d319d14134acb9a4e753bc661286b760d93f","impliedFormat":1},{"version":"320f2403a8976b11068464b8c031e9a7418d01e2b226f4a75dbddba2ea071e02","impliedFormat":1},{"version":"2df0f708ce3ca701d9ecb1ad865337b6ece0a464c1db0a4d7beaef0e6c1431c7","impliedFormat":1},{"version":"d0c23c27ab25f8298fbdb57f90d7c9555dd9dedf6c65910491f0502149296bc3","impliedFormat":1},{"version":"a9dc1a642ec16c8b9c319d886b8e4a5bf3737879794b17a6e3c3a8a20b9a8084","impliedFormat":1},{"version":"8d7416be7127d2bcea8591a0a8aeac9ef14e400cb67cba14f93ad2efd78abed8","impliedFormat":1},{"version":"4f76cabb92d767cc8f854a5c26a1ecfa068b6095bb7abf45803f91e16ee817b4","impliedFormat":1},{"version":"8f559efd95a69bc92c39d839abb0fd25f098e4ce0cd119ccb572a8fac695d59b","impliedFormat":1},{"version":"76af14c3cce62da183aaf30375e3a4613109d16c7f16d30702f16d625a95e62c","impliedFormat":1},{"version":"ed8299795c43beb18cfdb4766bbebffb3cc680b0ecaa83ba2eaed73ca08b3e40","impliedFormat":1},{"version":"82a9eaaf475f62f069d074edef3f4801a099de80e4a77bb60fd2e0780c782fe4","impliedFormat":1},{"version":"f0cc2de2db9a6fd4accb433caf3db9e00018ce9b1927c3fd2456a7b24e989b85","impliedFormat":1},{"version":"71a04d79b7e88a27350a3bd8cb85c42766d24c40e156b62b472169ebc3aaf3ba","impliedFormat":1},{"version":"4d9dbde0a30438ab63f48e2ddd31d2d873f76358cd280949a913526f0470de7c","impliedFormat":1},{"version":"0b9cdb0847a8dba6f8e24e91b68a538655d0f45844b50a615c65d61e273ba4a5","impliedFormat":1},{"version":"213f7ae76089f1205effb56194a29d63685ab9de328ded8e3abab57febf83732","impliedFormat":1},{"version":"06a6aaba955a8a6c48ee93d0296c497ca2b0c4a0457b28f5733c84a1a2d789be","impliedFormat":1},{"version":"1eeea02ca171d1c7281150dfb5aa3756a0e387e3032db8e1347874e4244673ba","impliedFormat":1},{"version":"add6d1d59f38e3f2e1238b645b78a82c06162d7db8b62a329a71b44299747609","impliedFormat":1},{"version":"8d701efe7cc1a3c49943e618030b8c68bc43c8c0ffb75f901571c4846dc2073c","impliedFormat":1},{"version":"7c1cb4008d5d979f7e722c16ae81e492c9e05698480b63b20670424f422260eb","impliedFormat":1},{"version":"3ed7b47b32120b85418147da67428a267383c5ab884a4d07831d9b781e8d98b1","impliedFormat":1},{"version":"a8dde15f461a56e4614bd88bb66da921b81dc4f5c754440b287df55752f5fa46","impliedFormat":1},{"version":"6e9bb2810a92dd83063b9a4e39acf25e9799958bb774b0c4dd1fb81e5113b462","impliedFormat":1},{"version":"31dd310e6ff44fff6c05742770a2eb3741d33e3d3e67681414fb88d5b9aada5d","impliedFormat":1},{"version":"02af3d6bd82adcd58eb36083b291e0b7f979565adf418193681956b77151bbf4","impliedFormat":1},{"version":"63b7e563fdc810a7bdc607edc385d7128885a9ab172519ca323e41d136a35829","impliedFormat":1},{"version":"3f5ee5fcc5e8edec0a1597469c0d1dbe779fea94bdcb4d0940aa98611e4faf30","impliedFormat":1},{"version":"d923d2109ac10c6c84addb6ae18195581bea9f2571cdb523a93e7a040042efc5","impliedFormat":1},{"version":"7c278351913a31aafe6d14b4f95ff178e0d35799278240b9b39adc615011ddb9","impliedFormat":1},{"version":"1d88ad4c85fa72ab799e9b2fd83b71dfd829201a2b0269c739ae15876516f1c7","impliedFormat":1},{"version":"2ba9550053351eb186f6c36d87ed1cbbe17df96d4a918cecde487aa78685d782","impliedFormat":1},{"version":"09012171768b5a701d84817f6e1bf8aad414ae53dbd91e8ba38ca9c70e574fc0","impliedFormat":1},{"version":"e575ca8392df51e504cfd7c1ed808d509815a3a17cfe7745c31bbe9242793e78","impliedFormat":1},{"version":"4de7da29c15565aa8775af5c7fbb44ad90f54b46ade34530a651ef7af94f8d99","impliedFormat":1},{"version":"f5435246aa47bee032053ca93742b278fe2056a95ee26e9da05819df204cd4e5","impliedFormat":1},{"version":"b9c4e633ff42f0bbdad31f176e439eec1cb21e02af0400fb654cfd83d51432fa","impliedFormat":1},{"version":"0c3b3e1d8c575b6a1083b4f60d4b599728893309fbc431c039f55a48cdc8df35","impliedFormat":1},{"version":"bd7898a9b7777d646d296af9262e7e4542350a0b6191f0d064c82cbfd6fcf580","impliedFormat":1},{"version":"6d08d7acecb941ad5db775ad62b492b8ab379b233c25a0d833d0ce3dde9378f2","impliedFormat":1},{"version":"1e2dc6ce7868afffa46c99fe915250316552e47987d0236bf43719f8556c689b","impliedFormat":1},{"version":"54937ed47bd319d3e0520dcf962f47c1a6ccef9a22ea6bbcfad5f930a1bb54e2","impliedFormat":1},{"version":"86e6e79adf0150f3f2be6ad817fdd18c6d2bf374d1ab2c8643083cdced0694c3","impliedFormat":1},{"version":"9e0cac0ed3bfb540a5e02320b86e7db24823eda48d7cbb8d545770a5b6a20b31","impliedFormat":1},{"version":"0655044205f67f213506da9dcf1bb97e91ef3472078097b3cde31d434d5613f2","impliedFormat":1},{"version":"9b0ec489e19e272742fc3b60ac351b960236560e1abd2bb18f20ccd58078b618","impliedFormat":1},{"version":"7b4af6e074439ce9e478fe7615576e8686064dc68bd7b8e1a50d658590142008","impliedFormat":1},{"version":"4b25b861e846ae7bff4383f00bf04dde789fb90aec763c4fb50a019694a632c7","impliedFormat":1},{"version":"76099ea6b36b607c93adb7323cb51b1e029da6ae475411c059a74658e008fabc","impliedFormat":1},{"version":"db4b86453d9e071b3fec3d5ca59bcbb4d6b59933473976db4593d0988bd4c8e9","impliedFormat":1},{"version":"1df2c1692e2f586f7c951768731251abe628c936e885aa28303f0264bff99034","impliedFormat":1},{"version":"7e57f87f2d18da6f292b07d2c1b59b83431a023666ed61540436ce56e5bf9804","impliedFormat":1},{"version":"6c81bc82bfc949e487d95c99ded42d67a1db85c1b9bab784b00184f4d23c9b3e","impliedFormat":1},{"version":"29c0921bbb69f433b07f179d81a2b06d1b6807fa876409c1562299f39cb9fc4e","impliedFormat":1},{"version":"599883c59a5d4df7461c29389d6ae2cb72be9280847ab3c993af09efe3b30714","impliedFormat":1},{"version":"4630ad03301cf8dbc44f66a26d4b6c0b16dd4b52cd439b10d9d1861d777fe936","impliedFormat":1},{"version":"4ec3a55e81757489d13c94d709496af52cc8e6d1590883f4a17e7510283ccbf0","impliedFormat":1},{"version":"ac04a85a2c99e5e08592e1be51470a94e3cef34fe48beee79843e5cc46fa075d","impliedFormat":1},{"version":"8e78526659a660fbe2277fd60a56d72ff44c80cc32b2729a627c9172f6bed443","impliedFormat":1},{"version":"22a09776108b5f10d2a3e63cff481e5f2e72f07c589cf6484f989908bb639364","impliedFormat":1},{"version":"d53dffc6f714f27fdff4668b5b76d7f813065c1cad572d9a7f180ef8be2dc91b","impliedFormat":1},{"version":"49d1653a9fb45029868524971609f5e5381ed4924c7149d27201e07129b85119","impliedFormat":1},{"version":"a403dc2111cb4fb2f1449a4eb61a4ac146a665a4f89a252a2b882d5a7cb7a231","impliedFormat":1},{"version":"8a8d0d4097ec01978f01cf7965af1d5cfc3731fd172ba88302c5f72392ed81b7","impliedFormat":1},{"version":"369f9ef7df8c9dec212fe078511eb2a63df4ac8cd676870f3a8aa67b11519bd6","impliedFormat":1},{"version":"e19419e4ef3b16ba44784df4344033263dbb6e38f704560d250947ff1c0c4951","impliedFormat":1},{"version":"bf38fd4302d7b182291195b1b8d3d043fe9d2cf7c90763c6588e2d97f8e8e94c","impliedFormat":1},{"version":"553963743408e4fd530bec00211dc951cb3e40586777e2387cdb807dd1d1c14c","impliedFormat":1},{"version":"14cc7dde3923d77ff09720aa4733efe965d617f170e6b91147933ba1a32c8819","impliedFormat":1},{"version":"a60610a48c69682e5600c5d15e0bae89fbf4311d1e0d8ae6b8d6b6e015bbd325","impliedFormat":1},{"version":"d6f542bbec095bc5cadf7f5f0f77795b0ee363ec595c9468d4b386d870a5c0f0","impliedFormat":1},{"version":"5cd9eea5b337301b1dc03116c45abf1cdaa9283e402a106a05df06d98a164645","impliedFormat":1},{"version":"fefa8bbb3a45351d29a6e55e19242e084ab2ffa5621b1b3accd77ddcbb0b833f","impliedFormat":1},{"version":"6018ddd9516611aee994f1797846144f1b302e0dc64c42556d307ddc53076cfe","impliedFormat":1},{"version":"6bbc372cd255ad38213a0b37bdbea402222b0d4379b35080ef3e592160e9a38e","impliedFormat":1},{"version":"449424e27f921c17978f6dc5763499ccae422601c041939d0b715e50261a3b3d","impliedFormat":1},{"version":"2f0de1e79fe315d2b52495ba83832f2802bf0590429a423df19864d532eb79d5","impliedFormat":1},{"version":"0a49c586a8fdf37f125cee9b064229ac539d7a258ebd650b96c2a6a91a9500c9","impliedFormat":1},{"version":"d508f0791a3241800f02de2de090243aaf85f9e4c470f8c10e4f7574ef4bc791","impliedFormat":1},{"version":"2b7f57bfd479522f90791ae9dfaba0ac4fefc882c0e51905e8854b4431fbf7b6","impliedFormat":1},{"version":"bd8dc8f36f0765fabd810462be364713c7eba6624324b5d24ffd4b02197bfb27","impliedFormat":1},{"version":"272b1a46cb8ccf1f41a9f5d5bb874e6c252abcb2317d9e3129346b8d0747a8e0","impliedFormat":1},{"version":"833c23a31c2bffc0346e4817b4e01cdc0d5176f2008943050c92e91f8e83f6dd","impliedFormat":1},{"version":"4f4edea7edd6e0020a8d8105ef77a9f61e6a9c855eafa6e94df038d77df05bb0","impliedFormat":1},{"version":"9fbf7b316987d11b4f0597d99a81d4b939b0198a547eecb77f29caa06062f70a","impliedFormat":1},{"version":"ca8d266adcd6a983a6c05d842e232f4cf93bffc01c3d71e355642adf8e087c5b","impliedFormat":1},{"version":"e2e1ab54bc3fd94445e25fedc10582c50de64cad929c395116a594da86eef828","impliedFormat":1},{"version":"4d0becfdbe5107bab4bc0cc5a3047c29c4d3e47e642c3fdc452f3df81b80978e","impliedFormat":1},{"version":"de59761d55cb3e916116b0b8292b8f7752b6feef52bafc341f77bbe5ca606290","impliedFormat":1},{"version":"f390c347d2ea786b06eadd20dd48e723e034cfe6dbd0a3af152b87fa411f9e14","impliedFormat":1},{"version":"07758358ea2a98df6a59aecb8de66a5babd25dc142f0a640dfb2cf5823748ea5","impliedFormat":1},{"version":"9cc00544a9f1c350d11a15f4fabcd565bad4c5f157ba2e6ecf61d176f9a12a81","impliedFormat":1},{"version":"f26d98b1ccae715cc5106f8a31b7df5289695cedc9e907d02a93102819bf30de","impliedFormat":1},{"version":"01d9c44034c22be15e8804514e38d671240cd50e37e3536ad0073c9f091f4019","impliedFormat":1},{"version":"f9d816338735b027330bec82fbf86a39477e38ecd385da4050049493879b0b04","impliedFormat":1},{"version":"476a51005ddb8d58b7d5c88b3e8f0034a6d7f4c51483b3f4158092a2ec29a7bf","impliedFormat":1},{"version":"ae7b809ac70fa8aff42d482a81733c0ae23f405656930698353c56272470d777","impliedFormat":1},{"version":"4f9590a4909bf3734dc6031e32fbf5b9f707be7d8950a5364ce162ea347533ec","impliedFormat":1},{"version":"ae81987b9c24f4c83b9b080d39e341870a91d3480901da115ed86372c9623bbc","impliedFormat":1},{"version":"079972158ebe8c4fa2db2ee80d6b4d61bf5c41ed9fa54ed96040b5efd8358993","impliedFormat":1},{"version":"5834a6ecf61bc530334e00f85945eb99e97993f613cc679248f887ed49655956","impliedFormat":1},{"version":"84c3e149acff1456d6f04b3708d653419daf5e10da591d258de89c5bd65b01cb","impliedFormat":1},{"version":"887546fedae72c83dec2b1bac7db8e6909db684e9d947f5c6c8d9d1e19d00069","impliedFormat":1},{"version":"18a7095b7211597f345009e31ae703e6e7f73b0e7f36ecde6918658fc0f56b34","impliedFormat":1},{"version":"c5fa66ed3b75ba9397e09896513e36909e520f0ca5db616c4638431312006a05","impliedFormat":1},{"version":"7d4fcf47f9aac635c3dd1a282885692f47ab103df3eb0a69d7abd8a63761703b","impliedFormat":1},{"version":"aed1587f0816ca6de52b7846aeab2479960fa8a840a9a118fcfa6ef82553655a","impliedFormat":1},{"version":"7343532660c841adba42a2630db2069fd5313003c55717e86fb1260dc2aa11ca","impliedFormat":1},{"version":"88bc232f130eb51046cac11bd90b93708e9cb4421d61f03e94a670080cf2cdb4","impliedFormat":1},{"version":"981577e0a704695644122f3fe3abd418557b1b904cc75180bac153c9f6545ea8","impliedFormat":1},{"version":"92589f3a6fa95c47f7c04e37ec820ca6a16fc9d4f70f100df8c010561cbf7a31","impliedFormat":1},{"version":"0f388a4a2c9468dd9f8c9c3e752724338bf0d1bf2820577040731bd99c0b31af","impliedFormat":1},{"version":"cb6920524a43eb497b3dec8788d03dcae2208346766f59bedfcb38c843350559","impliedFormat":1},{"version":"3b676aec08f0e5318dd3775c58431b6ff01256de6f8ff9b1d84a3f08c958333f","impliedFormat":1},{"version":"c291e6102feec6cdbaf58ef3af1dd890b58843d154df6a4b7029072e31429a14","impliedFormat":1},{"version":"4ca69c69c6a55df2bb4921fdb23e15d7106b7944c84237d9f37a97584608ab77","impliedFormat":1},{"version":"145a21dc3c1a27e2c6848c5032d5658cc89faa22a6a9f0f415727e7e3890dbca","impliedFormat":1},{"version":"4a84b26ea277a82722b013ffc2541fc2f96047b4a12494603ec566567e81a5c2","impliedFormat":1},{"version":"6d438bb7df0e316776f4ba45f2fc0b2c52cc30acfe7b5a2912765dc4f755bad6","impliedFormat":1},{"version":"435abe8acd8b66c5ce27f9af2ed77f3c6eafeb76b732a86987270a2731ef96d9","impliedFormat":1},{"version":"a3c08e6118824e800cdccd3e829b00fb56f035e9521db1d07a76a6fd2a61798b","impliedFormat":1},{"version":"0c840604759149417d4e7517f2ff460e590fc75a4f3e82b34c093cb08bc720c7","impliedFormat":1},{"version":"214d050d401987f2206ce319ddcb397c09afe71d2a3a239e44adb7584318403d","impliedFormat":1},{"version":"63a8387bb9e3c2ef72dcc7914f3505096b7c1e967c4d042b24a51e11d2a217c5","impliedFormat":1},{"version":"957ef341ac3dae53f3152558ba9b802f9b9b7c42c1ccb472928b153322d8cf83","impliedFormat":1},{"version":"4049300c803136436b1fd671ac03e78154319adc6b9761da865ac2e2a1a15748","impliedFormat":1},{"version":"7d57b2a77ffd1b63eccfd29aa67e76a07745e96f894dc9e6df1136a81cb35ae8","impliedFormat":1},{"version":"2830b20410f553e46ec04bc07641b9acd8506824f4e3f10647f3c136fd5ac55f","impliedFormat":1},{"version":"6a4cb6ad5c8c548c1a356aa6356e7bad18a5c6c75ee0b1fafa9b5054054dcce2","impliedFormat":1},{"version":"4afb3e35ff961963d77d53ac71b28b63b28eb4422333478d2738aa44754423f0","impliedFormat":1},{"version":"58307b5d6f502ba508eeee1697ca7a139dfee251f1dfa794a4754667e7f5496e","impliedFormat":1},{"version":"3021099b1f877229ecf8813c792454626ac486393c07bdbd4f3245b8786337e3","impliedFormat":1},{"version":"360454a49e1dc67cebb1bc8bfc9b579ba018185b58046b2dec6d2a42b2579efd","impliedFormat":1},{"version":"a47951d2d534f05ca7eeea4aa5991c8ea6520934e703ac4c6c0a0a9369bc7961","impliedFormat":1},{"version":"1ecebd1a059ba755a7f4d53d1fce1b8ae1e712188ea956d1cf44f4cd8d2ee982","impliedFormat":1},{"version":"0a1b975cae598249c4469cdf3ccaa92b894e9d98bb08ed0075621e1536b4fba4","impliedFormat":1},{"version":"708a8eed61d6a3f3b1f7cca4a8b037486a0e4e2e6410a3fdf6afff7d9bc1d47b","impliedFormat":1},{"version":"f4e341404e687981a01a210f55099a4da41d1b445bae3df456a35b403363d72c","impliedFormat":1},{"version":"94fd51eba8b8c76dbc0aa69300e0f766054f66960e0962b0ffd585454be04ef8","impliedFormat":1},{"version":"b12e8aa70cd34bca6f1b101f7ef3fe7d1db183311ae3209e419083d8624f3a37","impliedFormat":1},{"version":"af20ffa13473ac91eff97e529a7503f5b9c70534bff885c49d3dc9dfef64158b","impliedFormat":1},{"version":"3b79f82209a3cc47b425e0b1be23f393e4cc4ee3f5d7322352ae9b90805f61e5","impliedFormat":1},{"version":"18aa38f08ab16646cff9b723e27333c71edcaf9a04d1bb54968c56e72a47770a","impliedFormat":1},{"version":"701362ba7af695931755102c709a55c7caaf7823b3195fd9930ecc598d997f3d","impliedFormat":1},{"version":"1b22e753d85e47868f314e4d894475f9c57c92a353fc71f58f5aca60c1dcf06b","impliedFormat":1},{"version":"cdfff8eee0ffe2f81973fee9af928fe94b4b438a27bab82749fb040b8436f9fa","impliedFormat":1},{"version":"285f881ea575d53eddf639cad43e0a47992f7a4c618b5c55125e4e5905cd6d86","impliedFormat":1},{"version":"8d26c2c953a6fd0ced4ea03ae62593132b0626b2bcd4228eca1f11a0f2031de0","impliedFormat":1},{"version":"f21d5b927e2ee351055488ef6959e2b15fcf70b41d4ba9194c46858518f16ba5","impliedFormat":1},{"version":"bf92e2bbbe27c481de4b214197950afe40aa7afded53c0ed96de98ad1e9160fe","impliedFormat":1},{"version":"1f56725fd67839c28816127d3e9f8b42d2e2991df52489a58567263f66b1127e","impliedFormat":1},{"version":"185beb7b83e0ee52a56072801ed540c8de1ea4d2e21dae425ceb041fc70ed67d","impliedFormat":1},{"version":"75a163d9737aff45b60e702b7376cbe23cef2c1921e03fb7edd5d67f7d6a26b2","impliedFormat":1},{"version":"5807420c7808dd9eca5b86d88de4a67f7ec55503a61e2772cbdbac9078fef8af","impliedFormat":1},{"version":"294999feb2341fbca015911cc39bcca113a44fabc6422ce18a17159a4d7d096b","impliedFormat":1},{"version":"3344a49db456949e6a8029283d190aed5447b4e0e3db37d5e970540a21ada789","impliedFormat":1},{"version":"0c47eb0ee7a2de98619b52f417c5c18dda840c667d1da971d24e5c3e3c700c8f","impliedFormat":1},{"version":"ea48b3411c1c1ab56644c919deee197775643929663f868b47c8f67a66be3473","impliedFormat":1},{"version":"7c98e54da5c77e16b9908805e97aef7e6619f8c3986d9b5c2ee1520462a5ec66","impliedFormat":1},{"version":"77f818abc65736ba2f7fe75a6db8279e15888b5d066228a9b30a0740d8a8a9e0","impliedFormat":1},{"version":"107b40bb8f487e1f401e7185f2df1e21a8cfea42eaa82ea022c5c390daa3b5a8","impliedFormat":1},{"version":"300b41b500423fa8cc3d63d09e50a6c1aece0b468b1fc77d03a2b959f0b8f539","impliedFormat":1},{"version":"e028c7f4fc37b188cbac3dc01ba4ef77caee010efcba979bc96257680cf81071","impliedFormat":1},{"version":"294031062fb13d5827a8439c4e5613a979df88fbb7beabad65a204e35d5474b0","impliedFormat":1},{"version":"1dbfb9b768ebf90fffe23c7be1e87451999de78e2c2f7a5b02a213bb2dffa2ff","impliedFormat":1},{"version":"4b9ddf4789fda91c3433b5203e5cbaa9e83f0ade11bd6360aa8943a5cd5d8165","impliedFormat":1},{"version":"220ffc8849bc38e25c2c19ba689e760b40c57ae31ca3d510e07b0d2856b702ac","impliedFormat":1},{"version":"e450a4e79acd8b45213cc63182c55f086c439e15ef1d58f597c60581fff77002","impliedFormat":1},{"version":"65d1509fe95ff00c5e7d9569c992ec30891199b7a56b2650e6ec144bbf901e4d","impliedFormat":1},{"version":"bb3e0744a0ec2e4cbec1139764aa61ecee7ca2cd4fdf899ad6b8563c68d54baa","impliedFormat":1},{"version":"cb7d3c99a59a418e7d2b86d8d7328968e6a717dac86486a514fe00a44ce7534d","impliedFormat":1},{"version":"b6a2f3e18328c45e01da7d8c36c10ceeddd219b6e8a104a6d17a63923ce67611","impliedFormat":1},{"version":"3aecd3ad86ce3374c53d503393e2436cc6d82e35c997dc19fadb923c62b27f7a","impliedFormat":1},{"version":"16d0ab6398d20c9c9a8a4bc68aae7d6f11a454f25a22e4e2cebd1e0d60cd35d5","impliedFormat":1},{"version":"a74c59c4bb0b9706763d814758e8c1675b5d891bcbb8d2f94bed6383b7ccea29","impliedFormat":1},{"version":"63ed414406c0dcf9714fdcede884be617bcd56260377112a428a4d5acfb33595","impliedFormat":1},{"version":"8a10226c68c4a7f64619de2bb0e92350ec2eef9a0939593ea636681efe7df377","impliedFormat":1},{"version":"4a15ecee81789f2a21bfe45da29196df8f2ba06f3981f492678f8051ea51d73b","impliedFormat":1},{"version":"0aa220355ca88bd4a392b5d72792173351db7e7be1b19368e7b2368478c84493","signature":"a85f576c57b2c63ce2c88cc6cc29908b6c54962be4e44c67f6c0328fe6d59e15","impliedFormat":99},{"version":"19c27a408a132ea7acd948ed89e6f92337bb504f96429d7fb2a8bece8a1c9976","signature":"c32e29e134f7079a0fe9bc375014b81c8289595e5c75fe95ff1f85e9d20eeb64","impliedFormat":99},{"version":"c29e27d11e570089de843433232d8efa0b34886031a922682ccf22939b6a752b","signature":"815e801b12e349ad1445c7544eaa8d8bbb1d553e223a9cf5d53cd7011b12a8b2","impliedFormat":99},{"version":"6fdfa9a9620d931406fe1a0839089391f4731df1768cc8dda18977c8b209f9a6","signature":"fa4a4716c16e1c0b14cbab5d1d1343f8d23ec4a5f973105434024c3f4d52909e","impliedFormat":99},{"version":"cae57dc6b541b463ac8eb5c21dc05ce714a9be7dc87996e486b7200937e22059","signature":"d2352fb284c5180e278baa759659934c014dc85e7a3392bb5c5d3bc15e54f634","impliedFormat":99},{"version":"da8226c2e5f22f368e53c1bfeaef1da0ec6130633a23aad06cc3c3e8b1db7300","signature":"1cb7181f31f054c8d558cba5beecfb2681901317cda19914246586cffa31cc16","impliedFormat":99},{"version":"a10bb7af3c06d1285f36c978227f3b1c3653ace911b51657cb695f0535617bfa","signature":"70a69af74a15d776570cadaa334220df15ca72d06d8db11c970bde90c9eadf0c","impliedFormat":99},{"version":"93c6c808ca5bd63bd3152007642c1c0480878de5d09f1b651e2ea079467386b7","signature":"372cbe899992c32effdbda80cdeacd55ea6e55401af48b50d7080f66beeeeefb","impliedFormat":99},{"version":"59a2a14e96659d410ae1e81177a244b3da308c04edea35327243e6a85963ee9e","signature":"5c637c04d198afee2492f1856c9d487cb5d61933d5b135ad1fc1f51d9dd50d65","impliedFormat":99},{"version":"b600ea0dbfbe9b4716c4a8b7f7b3c6a4f5cca6f0224c1024363a81d1de98e7b1","signature":"d7eeef2c90307c085c3b57c5f6ff5b09887c42fa4fb484ceaf8ad9c774c952e7","impliedFormat":99},{"version":"400bb49269c73740c04418c3739ddab3675428d51b203fc187c3fbf278511f24","impliedFormat":99},{"version":"fdb5abb9db5515c7cc54f595e324912a4d9a31779d2139c9b77ea9ead86e50fb","signature":"77ec702bdcf157a2fb395030db779998c1cf0554b9ba0274ab9758d0325f569f","impliedFormat":99},{"version":"b171166cbd654ec92ef274a46c7c6c73a92a0df17092d21980c591d2d9f7e7db","signature":"39669eeef5891db9cca75123e3774d4e5fc3cb4c33e8fa4640d3d8e66fc04468","impliedFormat":99},{"version":"eed17823e26206284214f51dc287edc8335b871c1fbea11beb4d27ae94928d62","signature":"351c8b87a7ea65e6a17be00ab2d28d059aa4967ff0cf6e222d0d54ecbd0af3fe","impliedFormat":99},{"version":"341a0091698ee3bb1a8d4167c78007727e2b505bb67bb42dd72e800d6d27497b","signature":"1ad1f93ad2ae90b943331cc061db9ec69c43456a608c7db17d3de9892412cafb","impliedFormat":99},{"version":"eb50764e9e3826a7518484afbb33ab21039e24c5f0b5626fecfee0c2470d46d7","signature":"58117cf0b71259a187e04ee808aa454bbf210d4d004c5c51d4ec34cf1111ac47","impliedFormat":99},{"version":"5d4785789ecf68b8d4a38ba16a85cedbb6502e4e1260f9b0e34e43ca89eb3c01","signature":"1a2cb80ba12101eabf624cf15e8f9bfeff9007a90f6dca67bca24f84fca4b728","impliedFormat":99},{"version":"6951aa7c86245e5ac76873f7163d56f4db65cdb2b8b57afe6626611b4037ee9b","signature":"d91b9a554ca0aa40ebe7cd35a5de3607fca8813a2c6ad5987d729ff6fe340849","impliedFormat":99},{"version":"9ea134e40513a5c4ff1bd7a98869646209260beb54e4f8da32e37eea2445407e","signature":"9c0f85143ff6011538047c79caffdde29618a0af25d00b24c614f2421e007b52","impliedFormat":99},{"version":"5f5313f298576e7399940f42755e5f3884100ae271cc87fabf3a241c578aa8cf","signature":"cd6ef4981ff1939fc1cf89e5a106440ff964c681a4821ebe2eefacf49675d131","impliedFormat":99},{"version":"4db56945be2e2f0bac0826edf2733dbb54aaefe36e4a24bba5d1a0b1ff01ff23","signature":"4140fffeb09259454d302d5eb115bcbc15fbf5fb6d187339ecfe406aadb9427e","impliedFormat":99},{"version":"2788b305914c0986e45af662f272e38443b22438720739eea4c5ce2d5093d13d","signature":"c333a3c0a363ee02a049a016c0126c5ffe3b025a56040f10dcc2c7a01c71a6e4","impliedFormat":99},{"version":"d755420db4414a7ef054d81e8a02b9045ada8adf51a47815ad475b2362ebf9aa","signature":"487139409b79b12643d7412d87d7b9f7f0ce2ad3da4cc84ca410f32433b74b6f","impliedFormat":99},{"version":"a7562617e30570158ed7afb64322f5ea05ed4479be0455e92e75eb5a1a26629a","signature":"e87de23135218b382df26488767251751a48bc6f2f623519c10da3415d37c0c6","impliedFormat":99},{"version":"954440ae2629e00a83b56fc6b41580e8272407c5851c1ce199c103c1247d817a","signature":"7a4f3f50061e61b04f04ac3893d360c6edf25974ebb327f5ff3fb460714c7b57","impliedFormat":99},{"version":"f32741cea761659d9cc1018199e8c2a0694d8d7cbc28b4d24b51493ac3117ec0","signature":"1fa2477a1855e008bedb0e66ec39248f2699561715efb981fd13bfa4c641e149","impliedFormat":99},{"version":"af1496f8b2d59cbc13da81fae00c7bf540a8a5a896911a49eb220ac493e63158","signature":"a58fb299b0c5843d239564ca91ceb2a2f670c224d2c573919cc2fcd0af0000cd","impliedFormat":99},{"version":"8089aad28afbf285020d2474aa5063dd15912f8697f3d90aaa3e896194d846ff","signature":"8d8805e00c39ab3e722c898d7741e7e8f8f8c71baeee2d2b30a4f86df2e34741","impliedFormat":99},{"version":"df72d7d70229ce9779967ad0dc900c9c77f21574e27687325aba8bf8c6e60ac4","signature":"c5b73dddd553bb822030c99b1d70fe1626a1538176b447f607aaed7076817094","impliedFormat":99},{"version":"45a7cf8329efbdcb81d4cf8ba6bb46727eddf7743094fdaebc96ab62c3a862f2","signature":"8b4a5e30ff8d27a20afd207f5e347efb66dd9c25d6f6ab21dd947290865939e9","impliedFormat":99},{"version":"0b5ce27a7517f50f4304c4232327b9419b9fb8cf7b777c4d2f6897e73fcca7f8","signature":"7d0247f04891f7fcdda18ebc890567b5f2dd903794430614f514d1d9cd615dc6","impliedFormat":99},{"version":"4d733ed8178dcc25f958d33b74ee6ff8f2498b6c0e8948904fc2e79d5df69616","signature":"6be0b05a45b839b2d446a4af410438df9a51a35cff4f9bcc9a867911d78ea106","impliedFormat":99},{"version":"13163ae8c76dbc7fefa46df328edfad6b436a3341c3fed78550d497c9e42b27a","signature":"ee0872fc9b4be2386207666ead2333069e6fa65f22f720982c284a6eec6aa270","impliedFormat":99},{"version":"6f3974eebe9061609919116e2d09346c8736957832b1cf07728938eded634e10","signature":"25bafd104bbd554d46c7ebc9e0dda23a068fc665e43a84697e158b6dd40781b7","impliedFormat":99},{"version":"1e3cf9095acaa4786dd49db45442c970ee39311e4c468068f9981293cebcd336","signature":"0f083dd5df0bd2a6615353fb1ba94b31454056cff26d9f1592402d2de83fb451","impliedFormat":99},{"version":"7fb94fb87fefc22aecf3cfbe3c30b7027ad12a168057a8e5864318ff2bf087a7","signature":"1b8a08cd74aabf03652debf2eb52b4536b4f89719ce86d8a6600c35ced37d7bf","impliedFormat":99},{"version":"6b1b015e8883b2668695a5a212cdd0cc08960802a8c041f36e995598f2360de4","signature":"eb30dfcf850f8a46270cfb251c0ba173105159f88a03771987b58e175152f22f","impliedFormat":99},{"version":"a01b9309c3f04287d5e3ba9b727fd2ad07bf5d483e50ea84aca88effca813989","signature":"6b334ab04d8f08542aad4b49d8dddd822fe5474999e8d649c86b68f825edeac3","impliedFormat":99},{"version":"3db20aed43b56799fda8ec9a60efb58d6373ceb6c268030500e6cb2cdeedc161","signature":"fd1b085a30ef1c0b3bdaab2af91281f11be91e81e4543bc6c59245ef6100a108","impliedFormat":99},{"version":"0eb787ad5fc1031238fa2345bff50054bc98df3b530c71894298cb220dcac7d5","signature":"534af213682ab353eaccb2512b1af7ddd9f8212599ecf8e06c7f443d578853e5","impliedFormat":99},{"version":"b28fe987c0cf448c77f167201bb367a185ff34b1565d63d4d8a1c05de724574e","signature":"057b46768e4161c0ffb97b778a5bd9048415b557efa2833fb3c71cb5e3820699","impliedFormat":99},{"version":"6fa360d02a7b19dec0766f6e0f69fc76f38184d8169fdbab36d9808819f21b09","signature":"8866601ca691b72adf2fcc55b7a7f60d46e1f1e2ced5145bb0e8f6e3cd83711f","impliedFormat":99},{"version":"01cf97eb1c7a09c2cfb0542f5ac709b183659a7c91ec4116839d29e335e48703","signature":"9fa7227afd0de190d5ece5bc392c3ee3d1a6a0acb9ea08d12f6ecb5598658297","impliedFormat":99},{"version":"96d93f6f7312514433aaf72bb084ae7827e59ec08949151e149d743a967b8c3c","signature":"bbaa24f5bd8f3fc6e090add210a6f60662b03c808825f2bb3213003b1b005d59","impliedFormat":99},{"version":"c0efadd7009299d800747c98d53e309dfde4d32c87392ad61b242bb7a9182bc8","signature":"9807b176889175f2925a0d982c51f110b1f4454d3c49351bdede667bd5e9f0ac","impliedFormat":99},{"version":"d2f6acfb467f9bc0db42c54637a0fa94a5426f22f1744d4b9a56af5a135ad4e3","signature":"d76fc730593157303987d15539c4acf989e1763438eac0878404ce05b140608b","impliedFormat":99},{"version":"a12fc1041b9031bbe91471a10705a593964f9e1d91955bffe3c979e36c0b288c","signature":"49325a01da180cb33d50e6d8473a95ee11fbda71c7e052c04b8a3901ec27224b","impliedFormat":99},{"version":"3fbaa9f5a15d20cccf136ea20797b82ccc1d2673e564da1db8912a1cb88d1536","signature":"6b814588ee9fad4e52777ae038ef8f5fb6d6ae82931e19123ed539e01e676b88","impliedFormat":99},{"version":"8c3ee2e8b3d774705bd02d95c810174d64be169f8d2bbc3fa29ed284d2ee3c87","signature":"5cb98c2209cb4a0432ca282b62073344a2e68fb228a54798c6e4820635510009","impliedFormat":99},{"version":"7d00fa0751fb8cb55c19e445f630e79981ae12476480fcdecf945d48e3123207","signature":"5f724bc6b78b987fe0172e0a187d4c03ef5c9a579e58aa5a50a0789c5952799e","impliedFormat":99},{"version":"5d9eb1432a4e006653c20eba299664049111da2f49b323e7eaeff50828d42bd3","signature":"94cefd428baf0bc4726bce514fa10f5692b189190e010bf145374e79df8480a3","impliedFormat":99},{"version":"8904568268f3be143e1a2a71e88c0ea281ad8008aea90430b78590d1faead373","signature":"99b73e62c05f51beb58b63074bb8d67678b5d43f4886e7d2cd94535230de8caa","impliedFormat":99},{"version":"a79a79d9c1e57c0fc19d311024d80cfe1b14d5cbe831750b1849169123774fc8","signature":"cf90eee05130e2e8f79b69ca5c95eaa4a01490d4b3747789d85ba14d1aeefc20","impliedFormat":99},{"version":"289c75d9ebbee27ac8e3ce887706c7000d97f6d0d6103d8d92b9e34262e330f1","signature":"9fc6277b243a1b6cdf4920e67c9e03778dff40d24d3e38ac0eaae3d8f1a724d5","impliedFormat":99},{"version":"3d554d3183e60a6785cad0904094b314f377fc19e461b42e04eca4c9f9bb1f9b","signature":"bfcaf6572309ada22005fee66a9dc079ddb1f38ce8a5966fe95de5167d3abfcf","impliedFormat":99},{"version":"38eab7bcbe048009de28b21f1d0e885067244ad890ad84d47c779cad89ca135f","signature":"faed6bb38c4158c7ac5dc1af4ae10e2d924d68e5752f6777e5839f83e99719e1","impliedFormat":99},{"version":"891f22ca991038b520ccde2d55b7cf38f01a76c14246a5a2202fefa04c33ff0b","signature":"cc6772661ddfbc308bf4b4f810630dbe7e2f0e848a907c6b8db791071a7cafd2","impliedFormat":99},{"version":"eb37e5b0c1daeef27cde0955cbb452dc1e0a435bec04b15b4aaf8858806017fd","signature":"d176fc6fe9484a8deb003eb52e0050e12373912958a3aa1ba4a3dc208efa4ed2","impliedFormat":99},{"version":"4276be42f6017a4244c4cdc724d0a5c2e1b0845fa886cf4941696ec0d5d098ad","signature":"50f69f60b50249ef264d25321434627b3e12d34fdddbb2099f122abedf0b4d56","impliedFormat":99},{"version":"9b811c1dbda5ef75152dc512a1ce2f53df5ebc986e6d8b3b751a42a7ffbc68ff","signature":"5fb2f69de95dedc3255e8c122c1120fdfb5bce63759280ac92602156be30fb49","impliedFormat":99},{"version":"215dbe771e39c9119e87108367f233ccfa6491b3dd619a9c1f2b74d1e27ff78b","signature":"d173cc144ef239ce255aff5dec778d81b2999e4c5ca0c0fe4542f6fa65e9343b","impliedFormat":99},{"version":"dc3cfd9f866b2b80ba735c23e4117fc07f0b06972f86a0632934b027696e5370","signature":"f47cc1911aac40c17a39f1bebdd7ce2334e9a5ffc8157b79486d481be8d210b7","impliedFormat":99},{"version":"1adb384d3981ce99a5480cf983fff8b368e22a1d32bcba2c7827fefa89d559c8","signature":"319499c51aba14930c3b7e89a39e4a7f2037a8bb7397e5a3be8207113929d99c","impliedFormat":99},{"version":"d9c825a84de5b5581e4c4cec4c3f7ff5495fb31d1309c66f9a6c45f3d3043179","signature":"65ee849f6be7ba7331ce6fb0acca648ab893a3de5b05039498ece2b782184a56","impliedFormat":99},{"version":"7dd3097c1ad4e3455ca86814246b49024f975b1dbd01d5ccf77e94345488a211","signature":"46577255ee36f2b6127689ed58b32c4e6a514f63eb2074b5af772e3fb24c3c4e","impliedFormat":99},{"version":"19a84cb55e362feda84ecac010d124eb74e2806dbcd965150f08723729a4835b","signature":"d25e1f9c174c8ae40807c43dbb49aafa9c95cd5fda06714b5831afc06a1075b3","impliedFormat":99},{"version":"f71453d9a366332860a33c3175a967ea82cdd23c9ca731497d42c1d5a9160228","signature":"942f68aab64aa31870b2bb9f8923e360ab6da9925e9d4f3d55a367ab3c5c8b0e","impliedFormat":99},{"version":"9679c09d76cc47452fa6969834a1ba4f3614627ab197b518e9062b82d65c1167","signature":"6ffda06a489b6c26cab2b55d4dcf3de8d6ad8538144c8d8c3fa0f9393807fbb1","impliedFormat":99},{"version":"fb5c1038192d2f589ba8826c9a55a7e5a3a850f286507d08201ab609733c24ff","signature":"f122fa833269eae77dea73cce1b758243a49fcab3d2180a078b40f8c5217f43c","impliedFormat":99},{"version":"d8c53cc22b898e970df47ad474673605f42b1340fc4bf8b735bec0a35723191d","signature":"618adbb733c8082862c785f349a43be9a21bfe2e9089b63f90058d4928fee739","impliedFormat":99},{"version":"e182c136a4e7a448661ca7e714b9a1e417aa917419f55a68109e324399b89aa4","signature":"f38cb71adf43c8de7df476398663c4d410052ee9dc319d8abe32a2e332888560","impliedFormat":99},{"version":"bd33674312b9406189687b4a5cdfe5c24b65eb7f8058d0ea5076887603adfbf3","signature":"4a75eb45e9f97fd838fbc26baa16b3d209991cfcf939fec5211c0495da68ac5e","impliedFormat":99},{"version":"4357635778979e2a6193a70eb24a7d32bccc3b649a1a75f53b88e8e138ce95c3","signature":"ae9d5c6d675a8465062b54ec2417006a22abb5eea2ae33d6697cc2a52764efdb","impliedFormat":99},{"version":"8cebcf310589b29ace45e7e128dc2eef4f0b7d22cfb88639744e0678601fea21","signature":"5fbcdedd650c2dd76f337746e23216f835c65d7acdb5c81cd96625d90a80b238","impliedFormat":99},{"version":"0ac54a867d81203afc0eb80571fbc4d678e6d4c2df0fef05a49db90e401e7973","signature":"05e24516dc98b5e396a4be24119d413fa1178442aeea77c9cd11d141d7812e60","impliedFormat":99},{"version":"4be219e34393a6ba19e6b014d9fb0c7cdae49ae43c724e03a182dfe51ee2b831","signature":"6f7ea6ed03565f307e6f549b47154ec98e4e4f9d6406488b301de5fb68222970","impliedFormat":99},{"version":"8f64b737d09216ce219acbbace9c95684b91278f338364bb689a1376deb8cbbb","signature":"f56dce6515a61008df9a84f7e2d52b8a7942d0c57655fbf8f55a38430a04599c","impliedFormat":99},{"version":"3f2335cca4cdfd6fde69771bdba9d522542fb4c477b3cd1fff911ceb7783d1ea","impliedFormat":1},{"version":"cb442d1de3134c7878e6ce47d71662ae7f04d7ea8280a7f53fe730850e37a461","signature":"aefaf20a937a573113b00699c976ad7d7e91e2e5b7d5c818b72d6621ce07c236","impliedFormat":99},{"version":"e0abc86f181337eafd4b5ba502c94ca2009644e00bfd1866260d6bc5f510093d","signature":"61e81f53e2a9790581eeac454808b6f6d480347d4851c2e91991669c333b059e","impliedFormat":99},{"version":"68ba801b79d65a8a9975d5ddcdc45d98938d41bd48a52d546fae965c673c23cf","signature":"32c8853a19b40cefdba2c04404a4e4781758ad8a671b79f4538c039a9818bc32","impliedFormat":99},{"version":"eda3ca30e474e000c6047165b4f8fb2c0e94f14c085936eaef1a0e22881ca53f","signature":"a8a180082f4bacb3d9b67f4e8a02186ef6f41f78c0f4fecd4f9271a60c38db3a","impliedFormat":99},{"version":"a20c9f12c6af6971611f0c1ef9ea2c70ed5111c5c8c9230159d3b8656361c079","signature":"a59197d2cf6825b01a732e8722fb187fb3a0dca486c2e9f7959cefbfde4be93f","impliedFormat":99},{"version":"cba5c56285ce1b8df67f39cba5394c7902769893c498a9610714a9d3b4c09e68","signature":"0c8fe351b2b424645be22295563c46bc75e8355aa9b450fa26cf8f50ddab7bbe","impliedFormat":99},{"version":"7227620a4a9e6fc1430736412c10056aa08fc7f9adb870b8537f2084922b1016","signature":"6ef521a79f7650f28a211ac52a97d2a575d5e05344c3e62352a385fd43f498c1","impliedFormat":99},{"version":"0254e59c10b1a816f9bf36909cfe8672bde013797f1a952f3ceebb9f98404167","impliedFormat":1},{"version":"b383c2ccd256301f174292e83d7884fabc4acac644eaa472b3e0f28599f3dcbb","impliedFormat":1},{"version":"deea0e953646280bde714399505586156f7df313b31bdec3020e8093d447557e","impliedFormat":1},{"version":"836812cdc975872a2e9f3b9067c307ae2d8ddf5771b764c000dabc12a330691b","impliedFormat":1},{"version":"14eb21a2914faa2591220878e73c05cc45e4333dd53d0ca2e15e54cb1d3c639e","impliedFormat":1},{"version":"fee5b20d0c7ca363e3df8bdc41e8cf528a096461df83773c00690b89ab0e8e84","impliedFormat":1},{"version":"f122ede52f7f29ee1543df529cfa6c51ffecd1583ea9d83908b8dda532101c48","impliedFormat":1},{"version":"b995a0024f0f479a144d671ee87c92a990543d5831f293cf48252ebb5eeb3f28","impliedFormat":1},{"version":"8654a12400e1ac5a254dc8535528533c991b51de2afa1466cd82a9725c211f3a","impliedFormat":1},{"version":"1a4a275667630b34232c669f245dc1a4c2b61ebce20af49c3a7279518fe3d62c","impliedFormat":1},{"version":"56415bf743179e6011a377304f5ee6da6420438fc6fcfee03d70aa6b34f09034","impliedFormat":1},{"version":"0be401ce1c0b6e68383dd813abcea430d547db5fb179675c6590be9bd9f862d4","impliedFormat":1},{"version":"e7fbdf938808931fa6d2f8f16d1755ceb35d61234ff3fde2fe68569691091636","impliedFormat":1},{"version":"a407b354d5dc9211a783b64cbacd8c6e04118e129d9c035b06859ff08d6765f2","impliedFormat":1},{"version":"0260676567e0d0b295b2eecbea450989982744adb97336ac819f084cedf1fa74","impliedFormat":1},{"version":"9cc12654c2c98bfc145d85a9543c9620f26fe1f6f556263541a81e5dd604fb5b","impliedFormat":1},{"version":"8e81fd612c681ebe45c0c0038ea6b9ef165b1a0050ee802790a890ba7b0b90f2","impliedFormat":1},{"version":"fe0fd4531329dce00a090c24ac058b8e98ffca5c743737b69fd325f5a64672ca","impliedFormat":1},{"version":"70344e78c9a955d7f9fe5a7fb65f65e7b186940ee3d8a2e1aa87a47dbbbdb785","impliedFormat":1},{"version":"fedcbd6eabc2c1b9a394dbb4e028c1641fbc45c7adbcc0c75144098a4b390ff4","impliedFormat":1},{"version":"525f24e31245715de236d3167394a5b021939a7641911c54a5bb5c06e49bd905","impliedFormat":1},{"version":"ab541e9ead8e2f7772ae6570797b5f870b89cc80994149065c948c8f20ba8303","impliedFormat":1},{"version":"38150fbfbf0fc9694abb2c766cc77fef3bda5d964ae4e5714534ef83dc33666e","impliedFormat":1},{"version":"b96a687ece2a207c0008c6bfd85166f11532978acced6179050fed7fa5daf4da","impliedFormat":1},{"version":"9f5a4229b778fbfeda29010739e1c32f52de5219510535f4df5c0879b34dc4b4","impliedFormat":1},{"version":"5604842dd16f2c3cb693024182469a947de580c450212ecfc7faa7ba230a50e7","impliedFormat":1},{"version":"0e25e4da82204e0abcc24cf6a203e04547f22eed70e41e4fd332f76070d41ad8","impliedFormat":1},{"version":"9d605611469213aaaa28e53577fb95c28341fffe64d63046ab2fb4af54e6c794","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"49a5a44f2e68241a1d2bd9ec894535797998841c09729e506a7cbfcaa40f2180","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"1ca84b44ad1d8e4576f24904d8b95dd23b94ea67e1575f89614ac90062fc67f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d586db0a09a9495ebb5dece28f54df9684bfbd6e1f568426ca153126dac4a40","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","impliedFormat":1},{"version":"84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"2bf469abae4cc9c0f340d4e05d9d26e37f936f9c8ca8f007a6534f109dcc77e4","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","impliedFormat":1},{"version":"b5895e6353a5d708f55d8685c38a235c3a6d8138e374dee8ceb8ffde5aa8002a","impliedFormat":1},{"version":"54c4f21f578864961efc94e8f42bc893a53509e886370ec7dd602e0151b9266c","impliedFormat":1},{"version":"de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"0dbcebe2126d03936c70545e96a6e41007cf065be38a1ce4d32a39fcedefead4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"461e54289e6287e8494a0178ba18182acce51a02bca8dea219149bf2cf96f105","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true,"impliedFormat":1},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"e56eb632f0281c9f8210eb8c86cc4839a427a4ffffcfd2a5e40b956050b3e042","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"cac793cc47c29e26e4ac3601dcb00b4435ebed26203485790e44f2ad8b6ad847","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"aa5524e0509c2168c9493604acf51ef97d2027f03f3b38da097802d3aa719dc8","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"d072cb61b086eeae042c45d85ea553a03b123d3e27dbac911faa1a695f5d6752","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"299fd0c281633d8dbfbe5f44c5f2850fe37392da6fd3b9cca3cb4e10cda16432","impliedFormat":1},{"version":"286f20f2289ec516bf93f9f9ff6790047977e326d450db182ba5a29020396008","impliedFormat":1},{"version":"f69218eb2ded0781c6457b49361d091770c6a136c0905d4b6e7474913e1e9a34","impliedFormat":1},{"version":"a7c6c8dea6a9ee0f5d3ba00625972c23b000ea5935689ce4f266eb5cea99cedf","impliedFormat":1},{"version":"6d1dd5c9f554a6bd35c501b5aadb225aef342921e32f2144dfef7af546f1739d","impliedFormat":1},{"version":"24087b5433affbe3336c5fa08aa3b3278c823661b9af573f44267a6012337593","impliedFormat":1},{"version":"b0934f5f9f50134078a4055178d139ca3cafacbe3e5624d5ff1de1c4fe4af35a","impliedFormat":1},{"version":"70ba20b010b402f1b536c5298232b1db47e4a50700c44e8130551d8ef6ecc17f","impliedFormat":1},{"version":"488a9c24e256c90067c427ce41fd371e0213ffb2771deac65434a348d8f88a07","impliedFormat":1},{"version":"f83c5d4e73d43714daaf597119170b65afd10a46e1f343cd109bd517b65963f1","impliedFormat":1},{"version":"db19ef667563291392f44218a6b2f167bc06db64022acc138952c3036445c55c","impliedFormat":1},{"version":"909395ffd40d5fb648d3737713ecbda4cf264d2d8e04b30ff3f5292e257e52d3","impliedFormat":1},{"version":"30c4b3b5bfac4da83ff9e9b9f69fa67c7060f8f4d7d59ae495cb35060f0e253e","impliedFormat":1},{"version":"cf72eb929f290bacf74339a050b0aba5631b743c8de0ae3e924a9e55a36d16cd","impliedFormat":1},{"version":"6a37168e02b676b194bdb741b2babbc6f61dff1314aed91aa3789ad91e75b437","impliedFormat":1},{"version":"456380ca94afbfecd5d872ffdc77b2653628eb3a25a7a3cde255b7428d811abe","impliedFormat":1},{"version":"795f95d066aa720ed7de6e077d9be2a7fb12e5ee91c9c40cc8da9eb9926feea3","impliedFormat":1},{"version":"a211c228aaf8d7355a45408686a02d969768cc86b751f26d081284674613a95b","impliedFormat":1},{"version":"8c57d40ed9709fd63e31a68959376a731b510021e9adc40f7c219c61ad8b9806","impliedFormat":1},{"version":"0f940447f3008f079b4aabb96b962cd340377cddcb4f42220fa6cadc23c4d232","impliedFormat":1},{"version":"c6c5b9506d0376d0738ce3fa8fa50ca245997ace1655527ff218a37ed1256907","impliedFormat":1},{"version":"92b9c68be1b85e95544499edd3656f7387958a95cd710071a0be493e3c777b7c","impliedFormat":1},{"version":"8daf52daac7e0413830d73b556d6b79de30d00cac2779a68a75a3aa5440a2dfd","impliedFormat":1},{"version":"4562edf0a0426f9a8227b4d6f5fed16b0e135ddb65ba7adcc287b3ed5a2cd079","impliedFormat":1},{"version":"b0923ec32114fed98544eee4a342d6991a272e9d1f2a35e65cf8bfe5be4601ba","impliedFormat":1},{"version":"a0c6d6d383601eba2963be60f67570dab436eacf3e2bf0ca44ea0d09f9733a36","impliedFormat":1},{"version":"2d2ef1d4f5efc80b405bdf4c15c7fcb76edd04620895218615212ceb3fb06e0a","impliedFormat":1},{"version":"a7afb95ffe62b2c14804c079038e4aa5a0555ddbc4fe01633705d0809f976f1c","impliedFormat":1},{"version":"4a9a138d0186e10999ac6b4f4376ddfca00671234f3de9f91b1970e35436393a","impliedFormat":1},{"version":"1e4880ef4c505451301424d80535c3b2095b251dad2665f6726fb8e85e7ebcf5","impliedFormat":1},{"version":"5d83b30f0d163384acec2b880d8047e6c310988dbd2daa038620ac3b4e1233ba","impliedFormat":1},{"version":"a7d16afaa9ddf842aff3c5d93af013273f4266bea884c9436d4a9e2d7c4c5526","impliedFormat":1},{"version":"cede714d3a6799d77ed599467b055ffd9aa70a14d1f8ca3e9dbd9e3aa125ce57","impliedFormat":1},{"version":"d36abd9bde837dd665ac4402cf0622e9e271641e916b00e1656e58a399752555","impliedFormat":1},{"version":"947018964856df13ebd5f666cb017d980ed7025269b94cf8235f616cf8c4d02c","impliedFormat":1},{"version":"73112057f549fdfdf5bc03c76f88e55dca9ed486bf507330ad345654f0060625","impliedFormat":1},{"version":"fceab08e6327681f270f4ea4c30815594ce6600779395098b80fdc6501c91918","impliedFormat":1},{"version":"4371055bb001f40596e2e236b27583e13bf11e75d937962f8947d56519237fb8","impliedFormat":1},{"version":"89189df027e8910200a4b65af1e29a996225cf25975f5c438fbe9361c008fc6b","impliedFormat":1},{"version":"0bddee1c0d45e9fd28798038ba882d41fe1d9b6a6128aec363a78c5f441c624c","impliedFormat":1},{"version":"73b62ac7f9b3b2270949e76fb55146d5ff7f3515aab75af4edc6a73e07f305df","signature":"cc37ce5680783944a1a45a4e089c841bb862d709ef2fd4b31134f49047350c6d","impliedFormat":99},{"version":"8863bf118e3a84c3894db4f462f77cd80fda2445a0bdf0923bcd556f880fd5c6","signature":"9c1590a866f93c8f23b9f284dec26cdc43ca5413b9fb58b1d54fba51f427e6e1","impliedFormat":99},{"version":"67bd2a2ee1da9b3ffd122da8fc2017da5775608ee931ecf791db7ba3973f6969","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"276b304579535cbf050fa3bde801a3368ae7f5b7c74cf01cfcf445c02e6b843b","signature":"acec226cff8fc751c71b0641eff997173748e7bbfdba6328bb48fd93f6f460e4","impliedFormat":99},{"version":"2514da9ea1e81a9bcee53811946ecd7e2b15f14a9968b8664bbe30a420ce33fe","signature":"e76f6f0f495caf05601051c8b06e4f3746ab5430abf46c0b193b5a1d26d0c2c2","impliedFormat":99},{"version":"abd742ef417658561effe06887c5badd8061e00cf7a09aedbabb09059675e48d","signature":"48b37b38211348a4fe509a7a7720291857a231d996511118a8941590a292b342","impliedFormat":99},{"version":"222a4d46a491c3e8fee167f6161fc6d85bd52137a1d74caf89a81ad8665bb0ed","signature":"05ed68da1a007decccbdcf3310967f6820ae0cfadd3c23569cadd1f93533bb85","impliedFormat":99},{"version":"81476041cc87a24660916fefb968531d2c2e2622778a24b41956140a8d7c4bff","signature":"b1da5247d537079eb8a57167793abc6a09174acaee52a8b5c37a4ce1bb9d8eaa","impliedFormat":99},{"version":"91a41f601ed8025b2266906205d4412b6e24f20d19e679ea975360700c9bd957","signature":"78b733933335a75fb81942720abbc093d92d788f90d0df1041adc1cb22c337d7","impliedFormat":99},{"version":"67591b8cd7ab2b7c8237b3a5faf7dbe49479345b331ad59b2525b564a7217669","signature":"7f7fc19ad29d1b3cdec737d8d5f2884ba150af217c19cfeeb86551cd3b31f1db","impliedFormat":99},{"version":"f068804d8172878b79a3e8516663130d03315ea39c2e613eff9e02d8dfe0c741","signature":"838b5abcbaea518a83aa044a4435134c41aad3e89a02f3bcd9f2ada94d6c4b19","impliedFormat":99},{"version":"9375ae79337995d40e36b31d2f03ca47b6ca340763a43536ee132dd852e06b35","signature":"125f07fcfe04a49a2aa0adf1830fdf34d7e8d64ec2cd4fac290f6d13e569dc64","impliedFormat":99},{"version":"5433c9f5ef9c4c21947011cdf2cfd8f50a637b17b9e65d21ffece521ac911372","signature":"fac1d35a2faa93decfff43ef3504b1a10eae6d3bea22c9c09c51ba2741192c9a","impliedFormat":99},{"version":"8f87d869658d0acd60689e5aa0d9ab92c1dcab4ffc3884bf58d29692958fefb3","signature":"76e8a5914691251aeddaffa80e1cd1dc4f80009e3df27564c8284616360871b8","impliedFormat":99},{"version":"d6b56881265824c739deab743d2b8b961d42ee641b7348df440c1f6c372aceb6","signature":"1c3e3d024d45e4fc77ff94c23bef52f48b0007a3b4c244dddf74b50c866d4722","impliedFormat":99},{"version":"fe42a2af035a863631164347ffa29b5612168cfe80604317287f32350157f7d2","signature":"12511fdb2c101c48e50c04097c501c96317c0bbd32dc262da610c0925f4481d7","impliedFormat":99},{"version":"0cb2f50f2f264382c58b5c223afafd299433c0b6c165eecbca81b59e69a7cc55","signature":"29f8c38efdb8cbfeb813bb2d21e6e85f66b649c7078396717a3f076ccaff9cda","impliedFormat":99},{"version":"1ab0edc9c435b298621f6236954b56e84a4483c8b4e7d54456c7c797f09a8b8e","impliedFormat":99},{"version":"56979ba6884d733c90669cfce8bdee3ff8f09c1564f58a62d77731e43026b8a2","signature":"44df865c97530e90ff27773c5b96e6cdffecce92f74e0c30349be937f3e0659a","impliedFormat":99}],"root":[[377,386],[388,453],[455,461],[665,683]],"options":{"allowJs":false,"checkJs":false,"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"emitDecoratorMetadata":true,"esModuleInterop":false,"exactOptionalPropertyTypes":false,"experimentalDecorators":true,"module":199,"noEmitOnError":false,"noErrorTruncation":false,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":false,"noImplicitThis":true,"noUncheckedIndexedAccess":false,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./dist","removeComments":false,"rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":9},"referencedMap":[[454,1],[646,2],[652,3],[654,4],[651,5],[661,6],[466,7],[478,8],[479,9],[626,10],[632,11],[642,12],[643,13],[645,14],[647,15],[648,16],[650,17],[653,18],[655,19],[656,20],[657,21],[658,22],[660,23],[463,24],[464,25],[480,26],[462,27],[627,28],[465,29],[481,30],[640,31],[483,32],[489,33],[488,34],[485,35],[487,36],[486,37],[484,1],[639,38],[631,39],[641,40],[633,41],[638,42],[628,43],[630,44],[644,45],[636,46],[467,47],[649,48],[637,49],[629,50],[468,51],[482,52],[477,53],[476,54],[659,55],[471,56],[469,57],[470,58],[475,59],[472,60],[474,61],[473,62],[387,1],[207,1],[663,63],[664,64],[537,65],[538,65],[539,66],[498,67],[540,68],[541,69],[542,70],[493,1],[496,71],[494,1],[495,1],[543,72],[544,73],[545,74],[546,75],[547,76],[548,77],[549,77],[551,1],[550,78],[552,79],[553,80],[554,81],[536,82],[497,1],[555,83],[556,84],[557,85],[589,86],[558,87],[559,88],[560,89],[561,90],[562,91],[563,92],[564,93],[565,94],[566,95],[567,96],[568,96],[569,97],[570,1],[571,98],[573,99],[572,100],[574,101],[575,102],[576,103],[577,104],[578,105],[579,106],[580,107],[581,108],[582,109],[583,110],[584,111],[585,112],[586,113],[587,114],[588,115],[662,116],[490,1],[312,117],[305,118],[307,119],[313,120],[314,121],[227,122],[243,123],[287,124],[286,125],[209,1],[219,126],[226,127],[233,128],[228,129],[235,130],[234,1],[247,131],[220,132],[260,133],[315,134],[259,135],[250,136],[224,137],[236,138],[225,139],[300,140],[316,141],[303,142],[317,143],[211,144],[208,145],[267,146],[239,147],[223,148],[206,58],[255,149],[318,150],[222,151],[319,150],[257,152],[301,153],[288,154],[320,155],[251,156],[62,145],[321,1],[271,157],[210,1],[229,158],[221,159],[61,160],[376,161],[302,162],[322,163],[323,164],[324,165],[281,166],[326,167],[237,168],[241,169],[230,170],[238,1],[327,171],[289,172],[328,173],[273,174],[329,175],[282,1],[297,176],[290,177],[295,178],[293,179],[292,180],[242,177],[294,181],[330,182],[296,183],[291,184],[331,185],[332,1],[333,186],[334,187],[335,187],[268,188],[252,187],[212,1],[336,120],[218,189],[213,145],[306,147],[309,190],[214,160],[337,191],[215,192],[310,164],[338,1],[272,193],[269,194],[248,195],[339,196],[325,197],[340,198],[261,199],[304,200],[231,201],[341,202],[262,203],[342,1],[343,204],[244,205],[299,206],[298,207],[344,208],[258,209],[246,210],[245,211],[266,212],[265,213],[263,214],[264,215],[256,216],[311,217],[308,218],[240,219],[345,220],[346,221],[232,222],[283,223],[274,224],[347,225],[253,226],[277,227],[280,228],[348,229],[275,230],[276,1],[349,231],[350,232],[351,233],[353,234],[254,235],[354,236],[352,237],[270,238],[355,239],[356,240],[365,241],[366,242],[367,243],[369,244],[370,245],[373,246],[368,247],[372,248],[371,249],[357,250],[358,251],[279,252],[278,253],[249,254],[359,255],[360,256],[361,257],[374,258],[362,256],[363,259],[364,260],[375,261],[60,1],[216,1],[284,160],[285,262],[217,192],[99,263],[187,264],[101,1],[145,265],[85,1],[143,266],[180,1],[141,264],[148,267],[102,268],[109,263],[156,269],[110,263],[157,269],[103,263],[198,270],[104,263],[105,263],[199,270],[106,263],[107,263],[111,263],[112,263],[120,263],[179,271],[125,263],[126,263],[116,263],[117,263],[118,263],[119,263],[121,268],[128,272],[123,263],[122,272],[108,263],[124,263],[195,273],[196,274],[113,263],[158,269],[127,263],[100,275],[114,263],[159,269],[155,276],[189,270],[190,270],[188,270],[129,263],[133,263],[134,263],[135,263],[146,277],[150,277],[136,263],[203,263],[137,272],[138,263],[130,263],[131,263],[139,263],[140,263],[132,263],[202,263],[201,263],[144,267],[151,268],[152,268],[153,263],[181,278],[164,263],[197,268],[142,269],[160,269],[200,272],[161,269],[163,263],[165,263],[193,270],[194,270],[191,270],[192,270],[166,263],[115,263],[147,277],[149,277],[162,269],[154,268],[167,263],[168,263],[169,272],[170,272],[171,272],[172,272],[173,272],[174,279],[82,280],[81,1],[176,281],[177,281],[175,1],[178,264],[182,282],[63,1],[83,1],[94,283],[93,284],[84,285],[96,286],[95,284],[92,287],[91,288],[86,1],[87,1],[88,1],[89,289],[90,290],[97,291],[98,292],[186,293],[183,1],[204,294],[205,295],[79,296],[80,1],[184,1],[185,1],[634,1],[635,297],[69,298],[70,1],[71,299],[72,300],[73,300],[74,301],[75,298],[76,298],[65,298],[66,298],[64,1],[68,298],[67,298],[77,302],[78,303],[58,1],[59,1],[10,1],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[22,1],[23,1],[4,1],[24,1],[28,1],[25,1],[26,1],[27,1],[29,1],[30,1],[31,1],[5,1],[32,1],[33,1],[34,1],[35,1],[6,1],[39,1],[36,1],[37,1],[38,1],[40,1],[7,1],[41,1],[46,1],[47,1],[42,1],[43,1],[44,1],[45,1],[8,1],[51,1],[48,1],[49,1],[50,1],[52,1],[9,1],[53,1],[54,1],[55,1],[57,1],[56,1],[1,1],[514,304],[524,305],[513,304],[534,306],[505,307],[504,308],[533,309],[527,310],[532,311],[507,312],[521,313],[506,314],[530,315],[502,316],[501,309],[531,317],[503,318],[508,319],[509,1],[512,319],[499,1],[535,320],[525,321],[516,322],[517,323],[519,324],[515,325],[518,326],[528,309],[510,327],[511,328],[520,329],[500,330],[523,321],[522,319],[526,1],[529,331],[625,332],[603,333],[613,334],[602,333],[623,335],[594,336],[593,308],[622,309],[616,337],[621,338],[596,339],[610,340],[595,341],[619,342],[591,343],[590,309],[620,344],[592,345],[597,346],[598,1],[601,346],[491,1],[624,347],[614,348],[605,349],[606,350],[608,351],[604,352],[607,353],[617,309],[599,354],[600,355],[609,356],[492,330],[612,357],[611,346],[615,1],[618,358],[396,359],[397,360],[398,361],[403,362],[404,363],[405,363],[386,364],[388,365],[406,361],[446,366],[407,363],[408,363],[447,361],[389,367],[378,368],[448,369],[390,369],[399,370],[449,369],[420,369],[379,369],[409,369],[416,369],[380,370],[427,371],[377,361],[423,361],[450,369],[451,372],[452,373],[384,374],[436,375],[455,376],[437,377],[666,378],[665,1],[456,379],[424,374],[453,373],[410,380],[391,381],[425,382],[457,361],[381,370],[422,383],[419,384],[682,385],[458,386],[459,387],[421,388],[411,363],[382,389],[430,390],[439,391],[460,392],[461,361],[683,393],[392,361],[667,394],[385,361],[428,361],[412,361],[413,395],[668,361],[393,396],[394,397],[429,389],[426,389],[669,398],[676,399],[670,382],[431,400],[432,361],[414,375],[673,401],[395,381],[677,361],[433,402],[383,389],[438,403],[671,404],[672,405],[678,406],[400,370],[401,407],[679,408],[444,409],[434,363],[445,382],[435,410],[680,361],[441,411],[681,412],[674,375],[402,379],[440,413],[415,363],[442,361],[417,414],[675,363],[418,363],[443,415]],"latestChangedDtsFile":"./dist/NativeScripts.d.ts","version":"5.8.3"} \ No newline at end of file diff --git a/packages/evolution/tsconfig.json b/packages/evolution/tsconfig.json new file mode 100644 index 00000000..ac5866b4 --- /dev/null +++ b/packages/evolution/tsconfig.json @@ -0,0 +1,6 @@ +{ + "$schema": "http://json.schemastore.org/tsconfig", + "extends": "../../tsconfig.base.json", + "include": [], + "references": [{ "path": "tsconfig.src.json" }] +} diff --git a/packages/evolution/tsconfig.src.json b/packages/evolution/tsconfig.src.json new file mode 100644 index 00000000..550d9fc5 --- /dev/null +++ b/packages/evolution/tsconfig.src.json @@ -0,0 +1,11 @@ +{ + "$schema": "http://json.schemastore.org/tsconfig", + "extends": "../../tsconfig.base.json", + "include": ["src"], + "compilerOptions": { + "tsBuildInfoFile": ".tsbuildinfo/src.tsbuildinfo", + "outDir": ".tsbuildinfo/src", + "types": ["node"], + "rootDir": "src" + } +} diff --git a/packages/evolution/tsconfig.test.json b/packages/evolution/tsconfig.test.json new file mode 100644 index 00000000..45d4f5bd --- /dev/null +++ b/packages/evolution/tsconfig.test.json @@ -0,0 +1,16 @@ +{ + "$schema": "http://json.schemastore.org/tsconfig", + "extends": "../../tsconfig.base.json", + "include": ["test/**/*", "**/*.test.ts", "**/*.spec.ts"], + "references": [{ "path": "tsconfig.src.json" }], + "compilerOptions": { + "tsBuildInfoFile": ".tsbuildinfo/test.tsbuildinfo", + "outDir": ".tsbuildinfo/test", + "noEmit": true, + "baseUrl": ".", + "paths": { + "@evolution-sdk/evolution": ["src/index.ts"], + "@evolution-sdk/evolution/*": ["src/*/index.ts", "src/*.ts"] + } + } +} diff --git a/packages/evolution/tsconfig.tsbuildinfo b/packages/evolution/tsconfig.tsbuildinfo new file mode 100644 index 00000000..0df697c5 --- /dev/null +++ b/packages/evolution/tsconfig.tsbuildinfo @@ -0,0 +1 @@ +{"fileNames":["../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/types.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/hkt.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/function.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/precondition/pre.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/generator/randomgenerator.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/generator/linearcongruential.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/generator/mersennetwister.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/generator/xorshift.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/generator/xoroshiro.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/distribution.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/internals/arrayint.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/uniformarrayintdistribution.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/uniformbigintdistribution.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/uniformintdistribution.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/unsafeuniformarrayintdistribution.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/unsafeuniformbigintdistribution.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/distribution/unsafeuniformintdistribution.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/pure-rand-default.d.ts","../../node_modules/.pnpm/pure-rand@6.1.0/node_modules/pure-rand/lib/types/pure-rand.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/random/generator/random.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/stream/stream.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/arbitrary/definition/value.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/arbitrary/definition/arbitrary.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/precondition/preconditionfailure.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/irawproperty.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/maxlengthfromminlength.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/configuration/randomtype.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/configuration/verbositylevel.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/reporter/executionstatus.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/reporter/executiontree.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/reporter/rundetails.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/configuration/parameters.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/configuration/globalparameters.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/asyncproperty.generic.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/asyncproperty.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/property.generic.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/property/property.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/runner.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/sampler.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/builders/generatorvaluebuilder.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/gen.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/depthcontext.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/bigint.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/bigintn.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/biguint.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/biguintn.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/boolean.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/falsy.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ascii.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/base64.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/char.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/char16bits.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/fullunicode.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/hexa.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/unicode.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/constant.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/constantfrom.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/context.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/date.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/clone.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/dictionary.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/emailaddress.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/double.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/float.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/comparebooleanfunc.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/comparefunc.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/func.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/domain.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/integer.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/maxsafeinteger.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/maxsafenat.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/nat.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ipv4.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ipv4extended.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ipv6.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/letrec.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/lorem.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/maptoconstant.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/memo.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/mixedcase.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_shared/stringsharedconstraints.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/string.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/qualifiedobjectconstraints.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/object.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/helpers/jsonconstraintsbuilder.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/json.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/unicodejson.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/anything.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/unicodejsonvalue.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/jsonvalue.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/oneof.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/option.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/record.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uniquearray.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/infinitestream.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/asciistring.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/base64string.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/fullunicodestring.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/hexastring.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/string16bits.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/stringof.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/unicodestring.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/subarray.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/shuffledsubarray.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/tuple.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/ulid.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uuid.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uuidv.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/webauthority.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/webfragments.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/webpath.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/webqueryparameters.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/websegment.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/weburl.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/command/icommand.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/command/asynccommand.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/command/command.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/commands/commandscontraints.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/commands.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/interfaces/scheduler.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/scheduler.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/model/modelrunner.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/symbols.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/utils/hash.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/utils/stringify.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/check/runner/utils/rundetailsformatter.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/_internals/builders/typedintarrayarbitrarybuilder.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/int8array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/int16array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/int32array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uint8array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uint8clampedarray.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uint16array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/uint32array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/float32array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/float64array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/sparsearray.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/bigint64array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/biguint64array.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/stringmatching.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/noshrink.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/nobias.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/arbitrary/limitshrink.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/fast-check-default.d.ts","../../node_modules/.pnpm/fast-check@3.23.2/node_modules/fast-check/lib/types/fast-check.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fastcheck.d.ts","../../node_modules/.pnpm/@standard-schema+spec@1.0.0/node_modules/@standard-schema/spec/dist/index.d.cts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/equivalence.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/childexecutordecision.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/hash.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/equal.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/nonemptyiterable.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/order.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/pipeable.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/predicate.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/unify.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/utils.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/option.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/chunk.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/context.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/hashset.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberid.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/exit.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/deferred.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/duration.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/clock.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/brand.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/configerror.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/hashmap.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/loglevel.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/redacted.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/secret.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/config.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/configproviderpathpatch.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/configprovider.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/differ.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/list.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/logspan.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/executionstrategy.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scope.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/logger.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metriclabel.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/cache.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/request.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/runtimeflagspatch.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/runtimeflags.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/console.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/random.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tracer.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/defaultservices.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberstatus.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mutableref.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/sortedset.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/supervisor.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiber.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scheduler.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberref.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/runtime.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/datetime.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/cron.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/readable.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/ref.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scheduleinterval.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scheduleintervals.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scheduledecision.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/schedule.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/executionplan.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mutablequeue.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/queue.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/take.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/groupby.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/pubsub.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mergedecision.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/sink.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/streamemit.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/streamhaltstrategy.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/stm.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tqueue.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tpubsub.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/stream.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/layer.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mergestrategy.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/singleproducerasyncinput.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/upstreampullrequest.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/upstreampullstrategy.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/channel.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/cause.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberrefspatch.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/managedruntime.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metricboundaries.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metricstate.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metrickeytype.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metrickey.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metricpair.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metrichook.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metricregistry.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metric.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/requestresolver.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/requestblock.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/effect.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberrefs.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/inspectable.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/either.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/record.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/array.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/ordering.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/bigdecimal.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/schemaast.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/parseresult.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/pretty.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/schema.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/arbitrary.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/bigint.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/boolean.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/data.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/effectable.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/encoding.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberhandle.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fibermap.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/fiberset.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/globalvalue.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/iterable.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/jsonschema.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/keyedpool.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/rcmap.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/layermap.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mailbox.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/match.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mergestate.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/metricpolling.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/micro.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/moduleversion.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mutablehashmap.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mutablehashset.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/mutablelist.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/number.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/pool.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/primarykey.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/ratelimiter.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/rcref.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/redblacktree.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/regexp.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/reloadable.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/resource.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scopedcache.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/scopedref.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/sortedmap.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/streamable.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/string.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/struct.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/subscribable.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/synchronizedref.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/subscriptionref.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/symbol.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tarray.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tdeferred.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tmap.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tpriorityqueue.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/trandom.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/treentrantlock.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tref.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tsemaphore.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tset.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tsubscriptionref.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testannotation.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testannotationmap.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testannotations.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testlive.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testclock.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testconfig.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testsized.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testservices.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/testcontext.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/trie.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/tuple.d.ts","../../node_modules/.pnpm/effect@3.17.2/node_modules/effect/dist/dts/index.d.ts","./src/codec.ts","./src/bytes.ts","./src/bytes57.ts","./src/cbor.ts","./src/hash28.ts","./src/keyhash.ts","./src/scripthash.ts","./src/credential.ts","./src/networkid.ts","./src/baseaddress.ts","../../node_modules/.pnpm/@scure+base@1.2.6/node_modules/@scure/base/lib/esm/index.d.ts","./src/bech32.ts","./src/byronaddress.ts","./src/bytes29.ts","./src/enterpriseaddress.ts","./src/natural.ts","./src/pointer.ts","./src/pointeraddress.ts","./src/rewardaccount.ts","./src/address.ts","./src/addressdetails.ts","./src/addresstag.ts","./src/bytes32.ts","./src/text.ts","./src/text128.ts","./src/url.ts","./src/anchor.ts","./src/assetname.ts","./src/auxiliarydatahash.ts","./src/bigint.ts","./src/blockbodyhash.ts","./src/blockheaderhash.ts","./src/bytes64.ts","./src/ed25519signature.ts","./src/kesvkey.ts","./src/numeric.ts","./src/operationalcert.ts","./src/protocolversion.ts","./src/vkey.ts","./src/bytes80.ts","./src/vrfcert.ts","./src/vrfvkey.ts","./src/headerbody.ts","./src/bytes448.ts","./src/kessignature.ts","./src/header.ts","./src/coin.ts","./src/drep.ts","./src/epochno.ts","./src/poolkeyhash.ts","./src/certificate.ts","./src/nonzeroint64.ts","./src/policyid.ts","./src/mint.ts","./src/positivecoin.ts","./src/proposalprocedures.ts","./src/scriptdatahash.ts","./src/transactionhash.ts","./src/transactioninput.ts","./src/data.ts","./src/datumoption.ts","./src/scriptref.ts","./src/multiasset.ts","./src/value.ts","./src/transactionoutput.ts","./src/votingprocedures.ts","./src/withdrawals.ts","./src/transactionbody.ts","./src/transactionindex.ts","./src/block.ts","./src/boundedbytes.ts","./src/bytes16.ts","./src/bytes4.ts","./src/combinator.ts","./src/committeecoldcredential.ts","./src/committeehotcredential.ts","./src/drepcredential.ts","../../node_modules/.pnpm/@anastasia-labs+cardano-multiplatform-lib-nodejs@6.0.1/node_modules/@anastasia-labs/cardano-multiplatform-lib-nodejs/cardano_multiplatform_lib.d.ts","./src/datajson.ts","./src/dnsname.ts","./src/formaterror.ts","./src/ipv4.ts","./src/ipv6.ts","./src/multihostname.ts","./src/nativescriptjson.ts","./src/cml/index.ts","./src/network.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/error.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/command.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/commandexecutor.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/filesystem.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodecommandexecutor.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/path.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/terminal.d.ts","../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/ast.d.ts","../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/fastcheck.d.ts","../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/arbitrary.d.ts","../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/pretty.d.ts","../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/serializable.d.ts","../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/schema.d.ts","../../node_modules/.pnpm/@effect+schema@0.75.5_effect@3.17.2/node_modules/@effect/schema/dist/dts/parseresult.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/workererror.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/worker.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodecontext.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodefilesystem.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/cookies.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/headers.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/urlparams.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpbody.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpmethod.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpclientrequest.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpincomingmessage.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpclientresponse.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpclienterror.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpclient.d.ts","../../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/header.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/readable.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@20.19.9/node_modules/@types/node/index.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/file.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/fetch.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/formdata.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/connector.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/client.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/errors.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/dispatcher.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/global-origin.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/pool-stats.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/pool.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/handlers.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/balanced-pool.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/agent.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/mock-agent.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/mock-client.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/mock-pool.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/mock-errors.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/proxy-agent.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/env-http-proxy-agent.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/retry-handler.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/retry-agent.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/api.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/interceptors.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/util.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/cookies.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/patch.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/websocket.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/eventsource.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/filereader.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/content-type.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/cache.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/types/index.d.ts","../../node_modules/.pnpm/undici@6.21.3/node_modules/undici/index.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodehttpclient.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/etag.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpserverrespondable.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/template.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpserverresponse.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpplatform.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodehttpplatform.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpservererror.d.ts","../../node_modules/.pnpm/multipasta@0.2.7/node_modules/multipasta/dist/dts/headersparser.d.ts","../../node_modules/.pnpm/multipasta@0.2.7/node_modules/multipasta/dist/dts/index.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/multipart.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/socket.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpserverrequest.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpmiddleware.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpapp.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/httpserver.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodehttpserver.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodehttpserverrequest.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/keyvaluestore.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodekeyvaluestore.d.ts","../../node_modules/.pnpm/@effect+platform-node-shared@0.18.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17_unk3duwg6ayeshdokpyl7oceaa/node_modules/@effect/platform-node-shared/dist/dts/nodemultipart.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodemultipart.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodepath.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/runtime.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/noderuntime.d.ts","../../node_modules/.pnpm/@effect+platform-node-shared@0.18.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17_unk3duwg6ayeshdokpyl7oceaa/node_modules/@effect/platform-node-shared/dist/dts/nodestream.d.ts","../../node_modules/.pnpm/@effect+platform-node-shared@0.18.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17_unk3duwg6ayeshdokpyl7oceaa/node_modules/@effect/platform-node-shared/dist/dts/nodesink.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodesink.d.ts","../../node_modules/.pnpm/@effect+platform-node-shared@0.18.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17_unk3duwg6ayeshdokpyl7oceaa/node_modules/@effect/platform-node-shared/dist/dts/nodesocket.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodesocket.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodestream.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodeterminal.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodeworker.d.ts","../../node_modules/.pnpm/@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2/node_modules/@effect/platform/dist/dts/workerrunner.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/nodeworkerrunner.d.ts","../../node_modules/.pnpm/@effect+platform-node@0.63.6_@effect+platform@0.68.6_@effect+schema@0.75.5_effect@3.17.2__effect@3.17.2__effect@3.17.2/node_modules/@effect/platform-node/dist/dts/index.d.ts","../../node_modules/.pnpm/@types+ssh2@1.15.5/node_modules/@types/ssh2/index.d.ts","../../node_modules/.pnpm/@types+docker-modem@3.0.6/node_modules/@types/docker-modem/index.d.ts","../../node_modules/.pnpm/@types+dockerode@3.3.42/node_modules/@types/dockerode/index.d.ts","./src/devnet/devnetdefault.ts","./src/devnet/devnet.ts","./src/paymentaddress.ts","./src/rewardaddress.ts","./src/vrfkeyhash.ts","./src/index.ts","./src/nativescripts.ts","./src/poolmetadata.ts","./src/port.ts","./src/singlehostaddr.ts","./src/singlehostname.ts","./src/relay.ts","./src/unitinterval.ts","./src/poolparams.ts","./src/stakereference.ts","./src/tschema.ts","./src/transaction.ts","./src/transactionmetadatumlabels.ts"],"fileIdsList":[[500,542],[240,274,280,286,300,467,469,500,542,557,573,638],[62,219,274,286,500,542,573,653],[219,220,240,274,277,280,281,286,300,500,542,562,573,639],[62,219,274,280,286,300,464,467,500,542,573],[468,480,481,500,542,628,634,644,645,647,649,650,652,655,657,658,659,660,662],[281,466,467,500,542],[281,466,467,469,470,479,500,542],[281,467,500,542],[220,240,274,277,280,281,286,300,491,500,542,557,559,627],[274,280,281,286,300,467,500,542,629,633],[62,228,233,240,274,280,281,286,300,480,491,500,542,557,562,629,633,635,640,641,642,643],[500,542,557,640],[281,464,500,542,646],[500,542,648],[281,469,500,542],[500,542,651],[500,542,654],[281,500,542,639,656],[500,542,653],[240,274,280,281,286,300,470,500,542],[281,479,500,542,589],[281,500,542,661],[214,218,229,240,274,277,280,286,300,302,305,464,466,500,542],[220,227,240,274,277,280,286,300,302,464,465,500,542],[60,214,218,225,277,287,300,302,303,304,500,542],[60,287,500,542],[220,274,277,280,281,286,300,467,485,500,542],[218,220,227,240,274,277,280,281,286,300,315,464,500,542],[218,231,257,277,300,304,476,500,542],[218,240,257,258,274,277,280,281,286,300,500,542,632,635,640,641],[274,280,286,300,302,464,467,476,477,484,500,542],[214,215,220,240,255,257,262,266,274,277,280,281,286,300,302,482,487,489,490,500,542],[60,287,487,489,500,542],[214,218,231,274,277,280,286,300,302,464,467,471,476,483,484,485,486,500,542],[216,240,274,280,286,300,471,476,477,482,487,488,490,500,542],[218,257,274,277,280,286,300,302,467,471,476,477,483,484,500,542],[215,257,274,280,281,286,300,500,542,640,642],[220,274,277,280,281,286,300,464,467,483,485,500,542,629,632],[220,240,274,277,280,281,286,300,491,500,542,640,641,642],[60,218,222,223,274,277,280,286,287,300,500,542,630,632,640],[218,219,220,240,274,277,280,286,300,304,467,469,471,476,477,483,486,488,500,542,635,638,639],[274,280,286,300,500,542,632],[258,274,280,286,300,302,464,467,471,476,482,483,484,485,500,542,630,631,633],[62,218,220,274,277,280,281,286,300,464,467,469,476,477,500,542],[218,219,240,257,274,277,280,286,287,300,302,467,469,471,476,477,500,542,637],[220,274,277,280,281,286,300,464,500,542],[223,255,274,280,286,300,500,542],[60,219,220,225,240,257,274,277,280,281,286,287,300,500,542],[218,274,277,280,286,300,500,542],[60,218,220,274,277,280,286,287,300,464,500,542],[218,274,277,280,286,300,303,471,476,477,500,542],[62,220,224,225,240,274,277,280,281,286,300,337,475,476,477,478,500,542],[287,476,500,542],[220,240,274,277,280,281,286,300,475,476,478,500,542],[472,476,500,542],[60,218,274,277,280,286,300,305,477,500,542],[205,500,542],[60,62,218,274,277,280,286,287,300,302,303,305,471,476,500,542],[471,476,500,542],[60,62,208,213,214,218,219,221,222,223,225,227,229,231,233,237,244,253,259,274,277,280,286,287,300,303,305,307,471,473,474,475,477,500,542],[223,274,280,286,300,476,477,500,542],[500,542,557,562,573,591,664],[500,542,554,573,591,664,665],[500,539,542],[500,541,542],[542],[500,542,547,576],[500,542,543,548,554,555,562,573,584],[500,542,543,544,554,562],[495,496,497,500,542],[500,542,545,585],[500,542,546,547,555,563],[500,542,547,573,581],[500,542,548,550,554,562],[500,541,542,549],[500,542,550,551],[500,542,552,554],[500,541,542,554],[500,542,554,555,556,573,584],[500,542,554,555,556,569,573,576],[500,537,542],[500,542,550,554,557,562,573,584],[500,542,554,555,557,558,562,573,581,584],[500,542,557,559,573,581,584],[498,499,500,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590],[500,542,554,560],[500,542,561,584,589],[500,542,550,554,562,573],[500,542,563],[500,542,564],[500,541,542,565],[500,539,540,541,542,543,544,545,546,547,548,549,550,551,552,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590],[500,542,567],[500,542,568],[500,542,554,569,570],[500,542,569,571,585,587],[500,542,554,573,574,576],[500,542,575,576],[500,542,573,574],[500,542,576],[500,542,577],[500,539,542,573,578],[500,542,554,579,580],[500,542,579,580],[500,542,547,562,573,581],[500,542,582],[500,542,562,583],[500,542,557,568,584],[500,542,547,585],[500,542,573,586],[500,542,561,587],[500,542,588],[500,542,554,556,565,573,576,584,587,589],[500,542,573,590],[500,542,554,557,559,562,573,591],[206,311,500,542],[60,61,62,208,213,215,218,277,300,303,304,500,542],[208,211,213,214,218,277,300,302,306,500,542],[208,213,218,277,300,306,500,542],[62,208,213,500,542],[60,215,218,277,300,303,500,542],[60,215,218,223,225,274,277,280,286,300,303,500,542],[60,211,214,215,218,219,221,222,249,274,277,280,286,300,302,303,500,542],[60,62,209,214,215,216,218,219,220,223,224,240,249,262,269,272,273,274,277,280,281,282,283,284,285,286,287,300,303,500,542],[60,61,208,211,212,213,214,215,218,277,300,302,303,305,500,542],[220,225,274,277,280,286,300,500,542],[60,62,215,218,219,221,225,227,228,229,230,231,232,274,277,280,286,300,303,500,542],[287,500,542],[62,214,220,221,228,233,234,274,277,280,286,300,500,542],[220,240,274,277,280,281,286,300,500,542],[60,62,211,214,216,218,277,300,302,500,542],[60,208,211,214,218,259,277,287,300,302,303,500,542],[60,216,287,500,542],[62,208,213,214,218,220,225,274,277,280,281,286,287,300,302,303,500,542],[220,226,235,247,248,249,257,277,300,500,542],[60,62,216,218,222,223,274,277,280,286,287,300,500,542],[60,211,214,219,220,221,229,277,300,303,500,542],[208,211,213,214,218,277,300,302,500,542],[60,61,62,208,214,215,216,217,218,219,220,221,222,223,224,225,226,229,230,235,239,240,242,244,245,246,247,248,249,251,254,255,256,257,258,262,266,267,277,281,287,288,289,297,298,299,300,301,303,305,500,542],[274,280,286,300,500,542],[60,61,62,208,214,215,216,217,218,277,300,302,500,542],[277,300,303,500,542],[208,210,500,542],[61,500,542],[214,220,266,274,277,280,281,286,300,305,500,542],[62,500,542],[60,214,215,216,218,222,274,277,280,286,287,300,302,303,500,542],[60,213,216,218,220,221,222,223,240,246,249,250,251,254,256,257,274,277,280,286,287,300,301,303,500,542],[214,218,222,224,240,255,258,274,277,280,286,287,300,302,500,542],[211,218,221,277,300,302,500,542],[60,62,216,218,219,220,221,229,230,236,237,238,240,241,242,244,246,249,254,256,274,277,280,286,287,300,500,542],[214,218,221,222,257,274,277,280,286,300,305,500,542],[222,257,301,500,542],[214,222,224,240,255,258,274,280,286,300,302,500,542],[211,222,246,500,542],[60,214,215,269,270,280,500,542],[60,211,214,218,221,277,300,302,500,542],[60,211,214,215,302,500,542],[60,500,542],[60,61,62,206,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,500,542],[301,500,542],[60,218,277,300,303,304,305,500,542],[308,311,500,542],[60,214,225,240,274,280,286,300,500,542],[60,62,214,218,220,223,226,230,235,240,244,248,249,256,257,258,266,274,277,280,286,287,300,500,542],[220,225,240,258,274,277,280,281,286,300,325,500,542],[60,208,211,212,214,215,218,219,277,300,302,303,500,542],[60,62,214,218,222,225,229,230,237,238,240,274,277,280,281,286,287,300,301,500,542],[213,214,274,280,286,300,500,542],[218,219,223,240,274,277,280,286,287,300,302,500,542],[216,223,255,258,274,280,281,286,300,500,542],[60,214,215,216,218,277,300,303,500,542],[60,223,274,280,286,300,500,542],[223,255,274,277,280,286,300,303,500,542],[60,62,214,225,242,274,280,286,290,291,292,293,294,296,300,500,542],[211,214,500,542],[60,62,214,291,293,500,542],[60,211,214,218,225,242,277,290,292,300,500,542],[60,211,214,225,290,291,500,542],[60,214,291,292,293,500,542],[214,240,255,266,274,280,286,297,300,500,542],[292,293,294,295,500,542],[60,211,214,218,277,292,300,500,542],[60,61,62,214,215,216,217,218,220,274,277,280,286,300,302,303,316,500,542],[214,218,277,300,302,500,542],[214,302,500,542],[214,219,302,500,542],[60,61,62,208,213,214,215,216,217,277,300,302,303,500,542],[60,62,218,274,277,280,286,287,300,302,303,305,308,311,500,542],[60,214,216,225,240,274,280,286,300,500,542],[60,61,500,542],[214,240,269,274,280,286,300,500,542],[60,214,216,218,219,224,252,268,274,277,280,286,300,500,542],[212,219,220,274,277,280,286,287,300,305,500,542],[225,240,274,280,286,300,500,542],[60,214,225,240,274,280,286,287,300,500,542],[60,216,225,240,261,274,280,286,300,500,542],[60,214,274,280,286,300,500,542],[60,61,208,218,277,300,303,500,542],[60,208,211,214,500,542],[60,211,213,214,218,219,277,300,302,500,542],[60,216,218,261,274,277,280,286,300,500,542],[60,220,266,274,277,280,281,286,300,500,542],[60,218,222,223,224,225,243,274,277,280,286,287,300,500,542],[244,298,500,542],[60,211,214,220,244,257,274,277,280,286,300,303,305,500,542],[60,216,240,266,274,280,286,300,500,542],[214,220,222,223,240,246,255,256,257,274,277,280,286,287,300,301,302,500,542],[236,245,281,500,542],[246,500,542],[60,62,214,215,218,219,220,225,259,260,262,264,265,274,277,280,286,287,300,303,500,542],[263,264,500,542],[218,225,277,300,500,542],[219,263,500,542],[255,500,542],[60,62,207,208,213,214,218,219,221,222,223,225,227,229,231,233,237,244,253,259,274,277,280,286,287,300,303,305,307,308,309,310,312,500,542],[60,208,218,274,277,280,286,300,305,309,500,542],[214,220,223,239,274,277,280,286,300,500,542],[60,214,218,223,225,240,243,274,277,280,286,300,500,542],[60,62,214,216,240,274,280,286,300,500,542],[211,231,500,542],[223,274,277,280,286,287,300,303,500,542],[60,62,214,215,216,218,219,220,221,223,225,229,240,269,272,273,274,277,280,286,287,300,303,500,542],[60,211,213,214,218,277,300,302,500,542],[60,208,211,213,214,215,302,500,542],[60,61,62,214,215,216,217,218,220,222,274,277,280,286,287,300,303,500,542],[60,61,62,213,214,215,216,218,219,220,223,224,225,240,249,258,266,267,269,270,271,272,274,275,276,277,278,279,280,281,286,287,300,303,500,542],[280,500,542],[218,219,223,274,277,280,286,287,300,500,542],[208,213,215,218,277,300,305,306,500,542],[60,208,213,500,542],[60,261,274,280,286,300,500,542],[60,216,218,274,277,280,286,300,351,352,500,542],[60,218,220,223,252,253,255,274,277,280,281,286,300,500,542],[208,500,542],[60,216,218,262,274,277,280,286,300,500,542],[60,214,218,219,223,274,277,280,286,287,300,500,542],[60,213,215,218,277,300,500,542],[60,218,277,300,303,500,542],[60,211,219,221,252,253,255,277,300,303,500,542],[229,365,500,542],[220,253,255,262,274,277,280,286,300,365,366,500,542],[219,220,224,225,226,259,274,277,280,281,286,300,367,368,500,542],[220,277,300,500,542],[250,281,372,500,542],[220,250,274,277,280,286,300,500,542],[220,240,250,253,255,257,274,277,280,281,286,300,365,367,368,370,371,500,542],[220,257,274,277,280,286,300,500,542],[60,62,218,219,229,277,300,500,542],[60,213,215,218,219,277,300,500,542],[60,240,274,277,278,280,286,300,500,542],[60,215,218,277,300,500,542],[62,218,220,223,255,274,277,280,286,300,500,542],[220,277,281,300,500,542],[240,274,277,280,286,300,500,542],[60,214,218,277,300,500,542],[60,211,214,218,277,300,302,500,542],[60,215,218,219,221,277,300,500,542],[60,218,240,274,277,278,280,286,300,361,500,542],[60,61,208,213,215,500,542],[60,218,277,300,500,542],[82,500,542],[85,500,542],[85,142,500,542],[82,85,142,500,542],[82,143,500,542],[82,85,101,500,542],[82,141,500,542],[82,187,500,542],[82,176,177,178,500,542],[82,85,500,542],[82,85,124,500,542],[82,85,123,500,542],[82,99,500,542],[80,82,500,542],[82,145,500,542],[82,180,500,542],[82,85,169,500,542],[79,80,81,500,542],[175,500,542],[176,177,181,500,542],[82,93,500,542],[84,92,500,542],[79,80,81,83,500,542],[82,95,500,542],[85,91,500,542],[78,86,87,90,500,542],[88,500,542],[87,89,91,500,542],[84,90,91,94,96,500,542],[82,84,91,500,542],[90,500,542],[63,79,80,81,82,83,84,85,86,87,88,89,90,91,92,94,96,97,98,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,142,144,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,500,542],[204,500,542],[78,500,542],[500,542,636],[64,500,542],[64,69,70,500,542],[64,69,500,542],[64,70,500,542],[64,65,66,67,68,69,71,72,73,74,75,76,500,542],[77,500,542],[500,509,513,542,584],[500,509,542,573,584],[500,504,542],[500,506,509,542,581,584],[500,542,562,581],[500,542,591],[500,504,542,591],[500,506,509,542,562,584],[500,501,502,505,508,542,554,573,584],[500,509,516,542],[500,501,507,542],[500,509,530,531,542],[500,505,509,542,576,584,591],[500,530,542,591],[500,503,504,542,591],[500,509,542],[500,503,504,505,506,507,508,509,510,511,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,531,532,533,534,535,536,542],[500,509,524,542],[500,509,516,517,542],[500,507,509,517,518,542],[500,508,542],[500,501,504,509,542],[500,509,513,517,518,542],[500,513,542],[500,507,509,512,542,584],[500,501,506,509,516,542],[500,542,573],[500,504,509,530,542,589,591],[500,542,626],[500,542,584,598,602],[500,542,573,584,598],[500,542,593],[500,542,581,584,595,598],[500,542,591,593],[500,542,562,584,595,598],[493,494,500,542,554,573,584,594,597],[500,542,598,605],[493,500,542,596],[500,542,598,619,620],[500,542,576,584,591,594,598],[500,542,591,619],[500,542,591,592,593],[500,542,598],[500,542,592,593,594,595,596,597,598,599,600,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,620,621,622,623,624,625],[500,542,550,598,613],[500,542,598,605,606],[500,542,596,598,606,607],[500,542,597],[493,500,542,593,598],[500,542,598,602,606,607],[500,542,602],[500,542,584,596,598,601],[493,500,542,595,598,605],[500,542,598,613],[500,542,589,591,593,598,619],[376,377,378,386,388,389,391,394,395,500,542],[376,377,378,385,388,396,500,542],[376,500,542],[376,377,378,380,399,402,500,542],[376,377,399,500,542],[376,377,378,379,382,383,384,385,500,542],[376,387,500,542],[376,422,444,445,500,542],[376,378,385,500,542],[376,377,500,542],[376,378,500,542],[376,377,378,500,542],[376,384,403,423,424,425,426,500,542],[454,500,542],[380,384,500,542],[384,500,542],[376,377,378,380,382,383,500,542],[376,377,378,380,412,500,542],[309,376,378,454,500,542],[376,377,378,380,399,436,500,542],[376,500,542,555,563,564,663,666,667],[376,377,401,500,542],[376,377,409,500,542],[376,377,378,382,383,384,385,390,500,542],[376,412,500,542],[376,377,378,380,419,421,500,542],[376,377,378,380,392,407,408,410,411,413,414,415,417,418,500,542],[378,380,382,383,384,385,386,388,391,392,393,394,396,397,398,404,422,423,426,429,431,434,435,437,439,440,462,463,500,542,667,668,669,670,671],[376,377,449,500,542],[376,377,448,500,542],[376,377,420,500,542],[376,377,381,500,542],[376,377,378,380,404,428,429,500,542],[376,377,378,380,404,429,431,500,542],[376,377,378,380,456,500,542],[309,376,377,380,382,412,461,500,542,672],[376,385,500,542],[376,377,378,380,410,411,412,500,542],[376,392,500,542],[376,377,378,382,383,384,385,392,393,500,542],[376,377,378,380,402,500,542],[376,377,378,380,382,385,395,423,426,500,542,671,674,678,679],[376,423,500,542],[376,377,378,380,460,500,542,676,677],[376,399,500,542],[376,377,378,380,500,542],[376,377,378,380,458,459,500,542,675],[376,378,380,456,500,542,675],[376,384,393,500,542],[376,377,400,500,542],[376,444,500,542],[376,381,385,405,423,427,430,431,432,433,435,441,442,443,500,542],[376,377,378,380,412,434,500,542],[376,377,378,380,396,399,437,438,440,500,542],[305,376,436,500,542],[376,377,378,380,404,423,429,431,439,500,542],[376,377,378,380,399,416,500,542],[376,378,380,395,423,500,542]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8b823816e0627945661bae6ed3d79c9ab85a81424a3bf55675eb6fc8c0a139f","impliedFormat":1},{"version":"d25c4cfb4e15e818fb06d63e543ec403e3c8001b570fc16191522184e0ea4a83","impliedFormat":1},{"version":"126a0bdb1dd8a5d8ef52213624cd09d803339f8ac13821a92a3f7dc3d4c55b52","impliedFormat":1},{"version":"b98cbe170e5774f6d9c364eef2a71dff38705390eada04670643271d436e44cd","impliedFormat":1},{"version":"2c1c7ebb6588ca14ec62bc2a19497b6378de25ab5d6a6241f4b8973f5f314faf","impliedFormat":1},{"version":"cefbdbc7607e7d32560385e018b991e18075f9b3b5b952f3b5f20478e4d15c43","impliedFormat":1},{"version":"72339629fd17518e8de4e495b0d91908a938fc4774457f09896789d40eb238b5","impliedFormat":1},{"version":"d0e5421dc798ee8146f82eddd6b96135f662e9a905c3afe400a029eea5b405a8","impliedFormat":1},{"version":"7a0a70d6f7ba13c11bb570a45000e6e428210ec2e1bdb8cbac46c90dfef698e8","impliedFormat":1},{"version":"b375d410108bcc3dab93dbc1de2b64777efac618025dbe675f1b2bfb63a91462","impliedFormat":1},{"version":"e352c35e7a226a5ff81bc9139e6e41bd5990f291a123de224987f5da34e2f725","impliedFormat":1},{"version":"3b416138214e8f4213e911723cf7f383ebdaa97e369687819452b53576980caf","impliedFormat":1},{"version":"faaed6dc3c93ac12afa83fc1a8ac384820437272622308b07f250650e16de120","impliedFormat":1},{"version":"16c28b35bb61fd8937b9ac446744601840e4d135ee863459259973e43d9ac458","impliedFormat":1},{"version":"4dd9018777b9b3feb8a7705841e3322000b3fa9dbb52aeaa7f189a4a408312f5","impliedFormat":1},{"version":"b91e472a9547e0d6e75b114c6d08d2e916174528f71c7473922d74018b9f9b93","impliedFormat":1},{"version":"c04a9cc39d447fa332a52e687b3ecd55165626c4305c1037d02afffd7020867c","impliedFormat":1},{"version":"e41e2bc86051b0f41d5ec99e728127e461b48152b6fb4735822b7fa4b4b0bc77","impliedFormat":1},{"version":"b49e721e29f8bb94b61bf8121a13965cced1b57cd088fb511c25a93c4ddfc1ac","impliedFormat":1},{"version":"24ff411ed19b006ec0efbdc5d56abd5f8a2a605eff97eb3db0941719c19e0844","impliedFormat":1},{"version":"190123e7b32a1a44dcc6b5b397cfd61c452606ea287576679d18f046b9296bf0","impliedFormat":1},{"version":"aeb54b9213fe90552e5e032abd0485d7ed21d505e59782b5e15c344a4ee54db6","impliedFormat":1},{"version":"51a201487cc0049e538a406c884d28b6d2ab141dd9c0650190b791c63803cae8","impliedFormat":1},{"version":"cb37d06c94592039ce1fa54d73ed241115494d886ee84800f3639cce48d0f832","impliedFormat":1},{"version":"82120a297fdf2f0bd9fa877f0c82b26bd9a94635536aa0ab59fe3ec78086f219","impliedFormat":1},{"version":"63aa0a9aa26aced773af0a69efe0cb58e12c7fc1257d1dcf951e9c301da67aee","impliedFormat":1},{"version":"fe9157ed26e6ab75adeead0164445d4ef49978baf2f9d2a5e635faf684d070d4","impliedFormat":1},{"version":"d0a02c12e4fb6b7c666773485e1ea53cdaa02b5b7c9483f370dccf1c815ff385","impliedFormat":1},{"version":"554edc2633760ba1c6ced5ce1e65586fe45f37c1f9f76052f68eadc4a06007b4","impliedFormat":1},{"version":"7c3335010a48156bb5eaa5866aeda1f0bf9a2402500e3cd3d047ca7b34f42dda","impliedFormat":1},{"version":"5d62771188e40ff7468d7f28ea5ed207ec0bce364e59e0fbf3e0c3ec794ddbf8","impliedFormat":1},{"version":"e6affb59098efce161ef8874843ecb1ebfed74f7374af0ce36ec4c9d1a370790","impliedFormat":1},{"version":"16cb0961a5f64defa068e4ce8482ed2e081bf1db2593205cca16f89f7d607b17","impliedFormat":1},{"version":"03bf2b2eee330dd7583c915349d75249ea3e4e2e90c9cc707957c22a37072f38","impliedFormat":1},{"version":"30ba32b82c39057e1f67f0ba14784836148a16d0c6feb5346d17b89559aadacc","impliedFormat":1},{"version":"f68437efcfd89bb312891b1e85e2ff4aa8fafcf0b648fc8d4726158aa4071252","impliedFormat":1},{"version":"dafb6d7587402ec60c4dd7129c8f84eb4af66c9f6b20c286b9dde8f316b9c7f2","impliedFormat":1},{"version":"598c2c581e6bd9171a59ef6ec9ce60d0eddcab49bd9db53a90d169c2387ec908","impliedFormat":1},{"version":"95ba818edf3770e357e9bbe6f55c9227a0041cb2460fff50e9d9e35ce7d23718","impliedFormat":1},{"version":"29a04903692cd5533c3c48c669361876522bde9f594f56d27589886157ad4894","impliedFormat":1},{"version":"d0e6175eb404f3de20b6e7168742eb3c9af55306209b3874ac0f946ac62158d3","impliedFormat":1},{"version":"3e8cfafb493180ef840f481750b49452001e5d80942a2a5d5151deae67b21465","impliedFormat":1},{"version":"d75c6765136563e3155b55220801379cbf1488eb42d7950afe1f94e1c8fde3e8","impliedFormat":1},{"version":"0126291175f486dcb5d8fceb57718c71c9ace7403987724127f373fd6696d067","impliedFormat":1},{"version":"01196174fb4b03fc4cba712a6e5150336b14d232d850dca2c9576d005f434715","impliedFormat":1},{"version":"16a8a7425362ec7531791fc18d2350f9801c483180cc93266c04b66e9676c464","impliedFormat":1},{"version":"63461bf37e9ef045b528e4f2182000922166e1c9729621f56984171cf49f2a8a","impliedFormat":1},{"version":"905fcafee4ebea900d9beec4fbff2b4c2551442da865733e1583085a4dc906d6","impliedFormat":1},{"version":"fe8165682f31b1f82cb93d62a759f1a26eaea745c361fbe2884134b73094d738","impliedFormat":1},{"version":"9b5d632d6f656382a85d3e77330cbf1eb27ed7290e9b3db0cd2663cf9251c6b8","impliedFormat":1},{"version":"2fc74eb5983a1a5986374eac99302432698a97186e577e91aa59b3ff91e657ec","impliedFormat":1},{"version":"ec767f9a0beefc9fc710bb0e5fc77f67468bb3b3fa34b9ebb8f72cd4f9fe2209","impliedFormat":1},{"version":"5fda99f644f00fb41efe3dfe936dc66d6f1d8d4abec93bf9735c4af3f70233dd","impliedFormat":1},{"version":"ceda7e9320a5a86ea760bb70c3c3b2278e01977b2cf30050ac9dfa80528e3442","impliedFormat":1},{"version":"d492ee06385287cce63b4173f7e553b7877464789598b03cec6b35ca2a64f9dd","impliedFormat":1},{"version":"2a0d3ddee69590b52ddec7eecfe8385fc2c54b3e2fd402439abe6b1c962434a6","impliedFormat":1},{"version":"55e6253bf987f95c86280b7bbb40500b5f5a21bfe890f166e647b864d3a7b8c5","impliedFormat":1},{"version":"efc4c4273bdda552afb3425998d95d87cb57a9e119734109c2282b3a378b305a","impliedFormat":1},{"version":"afb6cc0af49d24e5d787de77d5b46f05ecaea444f73829d60fcf6ceb76e608eb","impliedFormat":1},{"version":"882e89116341394e371cd8f24bc2e38239400276da03d3c38c9c9fe6b244fb1f","impliedFormat":1},{"version":"7d17be79ca035a9b8e02ba11f6351cea1bafd38c27a8004a401474ac2aa6695e","impliedFormat":1},{"version":"8e89f4377964cc23d5fe3bed390e5a415926f124a7cc7963d5e7bbce823e9887","impliedFormat":1},{"version":"7f6cdf4d7129c667eabf8c87b1798d5578623e39c42a3ff1aad742561e863858","impliedFormat":1},{"version":"ea5885ba5e792e0b88dc39f51b6b6c6c789d8fe2116bce3905f01d790f59c10d","impliedFormat":1},{"version":"0e09f1810ab7821d9d3c967323ec9cfa042cd9a1d8c3e8af4ed9b6dae4e63f86","impliedFormat":1},{"version":"f089bbeb3f2f0c528d3382fdea9cbb282ce252c918497e7abb974804f4faae1e","impliedFormat":1},{"version":"e57ad5997f573113f39391e780098560a341556b8d55d07b02675afbd72d82cf","impliedFormat":1},{"version":"896ed9bc9650a9ad6ead21583c007463217edeb58a4f45d1d019c1926b684643","impliedFormat":1},{"version":"7976b4472cfda91c462250daf51eae6e1121c2d725e4812d5c89019bb00e9551","impliedFormat":1},{"version":"901807bd11ececb52f0a2586689dacabf0e14f15e5e0604a673c9e1ff8186412","impliedFormat":1},{"version":"c9ebb2be9fc78b6df354c69b646c37945da54464389ce4342a0fd9cebc731f19","impliedFormat":1},{"version":"3f9a0317283412268b02f47fb3c83920a3b6a6c506898cef7e6ed42d5aff8d45","impliedFormat":1},{"version":"9de11c7d313d848291ec1a850637cc23dc7978f7350541af3314f7b343287d11","impliedFormat":1},{"version":"23f76b69848fe41a4801c7df41cf22bb380ad3fefc5adf2f7026d60f9f0451ba","impliedFormat":1},{"version":"ec17da14f94c8fddb8adeb4277b2cdd75f592095c4236db613853fe569ddb7b9","impliedFormat":1},{"version":"48ade6580bd1b0730427316352920606ff854f6a4548d2dee073fab4eecc6e62","impliedFormat":1},{"version":"5975ac1e6043d47f6771a0219b66530c23f05d1a27743091203ee7f6ea0f3a7b","impliedFormat":1},{"version":"e84b43d807d525da4dcd996ecf63e17245649672c2f620e84faed87e518ad639","impliedFormat":1},{"version":"2dbf4764d09250ec5850b5cd5ab47f72c9a16add6c73bd1f1ebfb55aefbb35d7","impliedFormat":1},{"version":"d147d653b19c446e14cc941c2a96eb111512702f765e086a450c5b720d2128b6","impliedFormat":1},{"version":"e9f2adc30882f676aa8109beeb32f2229da408f3ff25cd66b18e0d65fc162e51","impliedFormat":1},{"version":"1cc2419f7786055521ea0985b44dd961563a645dad471de3d6a45b83e686121f","impliedFormat":1},{"version":"9feba5111ddcd564d317f8a5fddd361f451b90fef6a17278134db450febc03a2","impliedFormat":1},{"version":"0b0ab6bb2cce3b6398ea9e01980e3a0d8dd341c6c83fffbcf4b33d3065fdeb76","impliedFormat":1},{"version":"31c5e0d467794830f02766351f8d5e9c2b08e6cc4e739478f798fb243e3eb8ce","impliedFormat":1},{"version":"7855b568645d7fa99b22eb48070c5174cf45c198b9f81abb5cbed6f4e6051a7b","impliedFormat":1},{"version":"fe01241cd36b45f1673814120a682aaa41ee12b62509c46535925ce991cca196","impliedFormat":1},{"version":"e2a3d01be6c9004bb660546b244d0bc3aba49ea6e42af5490afa6bb9eacaf03b","impliedFormat":1},{"version":"d46410a523d938fae1c998fd4317867ea4fd09c90f548070317570682e5fb144","impliedFormat":1},{"version":"3eb7886b8771bb649de71937d1d06a56277f9aa4705d4748ab10e2549cb90051","impliedFormat":1},{"version":"e1b882923b064f7ec2cec07f9ba2c2027d43502eb7fca3ce5444f5b4de8d812b","impliedFormat":1},{"version":"e05f866a0711a3a6059be95921a6c25b4a5a4190c295341ed4958950e491f9c4","impliedFormat":1},{"version":"a2fec5fe18ee1eea9782074951c366b9952f7dfd8282104cf8002821daddd07b","impliedFormat":1},{"version":"a4cf0ab697cbab80d76105244792d400e37a789cc3e783e94afc62290f4524e1","impliedFormat":1},{"version":"cd279bc48f9d44eb6cc4e98155ffbc29489d2ecc0ad8f83fee2956b62b0fbe47","impliedFormat":1},{"version":"b5f586144570a0e7cfb3efa1ae88c5f8b49d3429a0c63b7eecf7e521bffb6ab2","impliedFormat":1},{"version":"d78bef98f2833243f79ec5a6a2b09dc7ff5fc8d02916404c6599eb8596e5c17c","impliedFormat":1},{"version":"fdd66ca2430dd3eb6463f385c3898291d97b64f2e575ab53c101ee92ba073a5b","impliedFormat":1},{"version":"7b8326615d6ba6f85d6eec78447b5734839572075e053f01972e386569eb7cf9","impliedFormat":1},{"version":"5e1fca4ecd38a7a5194bffefb713460610521d1db4835f715d8b7e5132a451ae","impliedFormat":1},{"version":"e008e16c64ee65759e1336db16e538f2360bda6eee86303b7f9875f93566926a","impliedFormat":1},{"version":"4bf01b353ef24f6daf68d4ed15a40d079dbc8402824e41f9b11444c366c87e46","impliedFormat":1},{"version":"47d370c23aae9d4a46d108fbd241c2f4c4293934348fe67c09275863c663ba28","impliedFormat":1},{"version":"4e37aea128d8ee55192de216ec9b5c19b6f5469f2f3888965e878387b87d82ce","impliedFormat":1},{"version":"e0a26715db09e01d895767dad26409fe282b457fb937087066a83cdf7ed1510d","impliedFormat":1},{"version":"5bbc28e15ffe9c3b553b351da50907f3dace4b8f2698e8c633957ccca79f1587","impliedFormat":1},{"version":"d8605eab739e6eff9e5a810953bc8f110c18d4767915070122d8de270d93a539","impliedFormat":1},{"version":"159559d509aee31c698353bf9d021defadfc017acbcaaa979b03e8b9ea4fcdbe","impliedFormat":1},{"version":"ef830fa9b8ac8e1c7d328e632e1f37251c5f178157e0172b7f91bf82a249ae48","impliedFormat":1},{"version":"029c0ae6486c8247533c321d7769087178efe4f339344ed33ccc919d4645a65c","impliedFormat":1},{"version":"c85cc7e94c2b24b4fef57afb0ab6ecfe6d8fd54f8743f8e761ec1b5b2682d147","impliedFormat":1},{"version":"ba833bb474b4778dd0e708e12e5078a0044fdf872b130c23eee4d4d80cf59c1a","impliedFormat":1},{"version":"b22d90f2d362bb4b0ab09d42b5504a9ef1c3f768336c7676d75208cb9bf44fe1","impliedFormat":1},{"version":"ea725cf858cce0fa4c30b1957eebeb3b84c42c87721dc3a9212738adbdad3e47","impliedFormat":1},{"version":"556dc97b6164b18b1ace4ca474da27bc7ec07ed62d2e1f1e5feec7db34ea85e7","impliedFormat":1},{"version":"34f4a5e5abcb889bd4a1c070db50d102facc8d438bc12fbcd28cf10106e5dec8","impliedFormat":1},{"version":"b278e3030409d79aa0587a1327e4a9bc5333e1c6297f13e61e60117d49bac5a7","impliedFormat":1},{"version":"dcb93b7edd87a93bbda3480a506c636243c43849e28c209294f326080acfb4fd","impliedFormat":1},{"version":"f3179b329e1e7c7b8e9879597daa8d08d1a7c0e3409195b3db5adf0c8a972662","impliedFormat":1},{"version":"19d91a46dc5dff804b67c502c0d08348efa8e841b6eaefb938e4e4258b626882","impliedFormat":1},{"version":"550b1bcee751b496b5c54a4de7a747a186487e74971da1a2fb6488df24234dc5","impliedFormat":1},{"version":"6d54746945b9c2b2c88cd64dc22e5c642971dd39c221ba2ad9a602f46c260c31","impliedFormat":1},{"version":"00677cf86a3e8b5b64ac5a3963be34dd4f6e7b4e52fed9332e190b4a41877fba","impliedFormat":1},{"version":"7cae95b5b65941db32f44820159fa81605097327070ce7abc0508084e88d9366","impliedFormat":1},{"version":"82ea80af29aab4e0c39b6198d3b373ab6431b3f30ee02fdb8513fb1d80da2f98","impliedFormat":1},{"version":"6252c4e1c67faebb31907262e329975c9c9574e662b8e1f29a9e1c65f4933fc1","impliedFormat":1},{"version":"7dd32c136b356b80e648966b457bd5dba81e86a7a5e10118e5dc62a91e5d8dff","impliedFormat":1},{"version":"ff2807d90505df16875eb8beb04e6379d751ea5a6412a612aacc1779dc834f6f","impliedFormat":1},{"version":"707d69e35a457a02df69e407bf45c7c2bd770230e61fba69897c706373efda3d","impliedFormat":1},{"version":"ee3f3159fb0eb04322dc08ca0344cada9b1afdbff4bf021ed229ea33418c02bf","impliedFormat":1},{"version":"60a10874f1445d12af58ec3d7d26711b11b95d2432d7a67d591eed8ac42aeecb","impliedFormat":1},{"version":"6b54b93dee5a1c4f2432571fcb8b6846c224e5fa8a3e1d02a08760d202ba24bf","impliedFormat":1},{"version":"5b5af36f2494858b01f8bc22f08a90e7687fb20fe5b89aec9f05fea56ce2f4a7","impliedFormat":1},{"version":"01dc1755f60d10971b43d71562a7ee05deffc7317a88476becef9b30686fcf5d","impliedFormat":1},{"version":"d0e653d9a5f4970098dfd3bf7ff515fcde909d3599cabadd168b49dd3786c1d3","impliedFormat":1},{"version":"2170cbd9e9feba37765aac36f6bced8349b51b70149b96c359ef6e4e581d29cb","impliedFormat":1},{"version":"e5a7066c96dd80d71293afb5c694142d66abc6a649be4bd6bcdf8629f80bd647","impliedFormat":1},{"version":"d144a03dc18068dc788da021f34b96cd0011aa767f0c811fd16e17e0fabafac4","impliedFormat":1},{"version":"41d4348127cac62f18177bfbd6673d7227d08df3c834808b7bbf623220854dcb","impliedFormat":1},{"version":"82f83d1c59621504a282813d2079d319d14134acb9a4e753bc661286b760d93f","impliedFormat":1},{"version":"320f2403a8976b11068464b8c031e9a7418d01e2b226f4a75dbddba2ea071e02","impliedFormat":1},{"version":"2df0f708ce3ca701d9ecb1ad865337b6ece0a464c1db0a4d7beaef0e6c1431c7","impliedFormat":1},{"version":"d0c23c27ab25f8298fbdb57f90d7c9555dd9dedf6c65910491f0502149296bc3","impliedFormat":1},{"version":"a9dc1a642ec16c8b9c319d886b8e4a5bf3737879794b17a6e3c3a8a20b9a8084","impliedFormat":1},{"version":"8d7416be7127d2bcea8591a0a8aeac9ef14e400cb67cba14f93ad2efd78abed8","impliedFormat":1},{"version":"4f76cabb92d767cc8f854a5c26a1ecfa068b6095bb7abf45803f91e16ee817b4","impliedFormat":1},{"version":"8f559efd95a69bc92c39d839abb0fd25f098e4ce0cd119ccb572a8fac695d59b","impliedFormat":1},{"version":"76af14c3cce62da183aaf30375e3a4613109d16c7f16d30702f16d625a95e62c","impliedFormat":1},{"version":"ed8299795c43beb18cfdb4766bbebffb3cc680b0ecaa83ba2eaed73ca08b3e40","impliedFormat":1},{"version":"82a9eaaf475f62f069d074edef3f4801a099de80e4a77bb60fd2e0780c782fe4","impliedFormat":1},{"version":"f0cc2de2db9a6fd4accb433caf3db9e00018ce9b1927c3fd2456a7b24e989b85","impliedFormat":1},{"version":"71a04d79b7e88a27350a3bd8cb85c42766d24c40e156b62b472169ebc3aaf3ba","impliedFormat":1},{"version":"4d9dbde0a30438ab63f48e2ddd31d2d873f76358cd280949a913526f0470de7c","impliedFormat":1},{"version":"0b9cdb0847a8dba6f8e24e91b68a538655d0f45844b50a615c65d61e273ba4a5","impliedFormat":1},{"version":"213f7ae76089f1205effb56194a29d63685ab9de328ded8e3abab57febf83732","impliedFormat":1},{"version":"06a6aaba955a8a6c48ee93d0296c497ca2b0c4a0457b28f5733c84a1a2d789be","impliedFormat":1},{"version":"1eeea02ca171d1c7281150dfb5aa3756a0e387e3032db8e1347874e4244673ba","impliedFormat":1},{"version":"add6d1d59f38e3f2e1238b645b78a82c06162d7db8b62a329a71b44299747609","impliedFormat":1},{"version":"8d701efe7cc1a3c49943e618030b8c68bc43c8c0ffb75f901571c4846dc2073c","impliedFormat":1},{"version":"7c1cb4008d5d979f7e722c16ae81e492c9e05698480b63b20670424f422260eb","impliedFormat":1},{"version":"3ed7b47b32120b85418147da67428a267383c5ab884a4d07831d9b781e8d98b1","impliedFormat":1},{"version":"a8dde15f461a56e4614bd88bb66da921b81dc4f5c754440b287df55752f5fa46","impliedFormat":1},{"version":"6e9bb2810a92dd83063b9a4e39acf25e9799958bb774b0c4dd1fb81e5113b462","impliedFormat":1},{"version":"31dd310e6ff44fff6c05742770a2eb3741d33e3d3e67681414fb88d5b9aada5d","impliedFormat":1},{"version":"02af3d6bd82adcd58eb36083b291e0b7f979565adf418193681956b77151bbf4","impliedFormat":1},{"version":"63b7e563fdc810a7bdc607edc385d7128885a9ab172519ca323e41d136a35829","impliedFormat":1},{"version":"3f5ee5fcc5e8edec0a1597469c0d1dbe779fea94bdcb4d0940aa98611e4faf30","impliedFormat":1},{"version":"d923d2109ac10c6c84addb6ae18195581bea9f2571cdb523a93e7a040042efc5","impliedFormat":1},{"version":"7c278351913a31aafe6d14b4f95ff178e0d35799278240b9b39adc615011ddb9","impliedFormat":1},{"version":"1d88ad4c85fa72ab799e9b2fd83b71dfd829201a2b0269c739ae15876516f1c7","impliedFormat":1},{"version":"2ba9550053351eb186f6c36d87ed1cbbe17df96d4a918cecde487aa78685d782","impliedFormat":1},{"version":"09012171768b5a701d84817f6e1bf8aad414ae53dbd91e8ba38ca9c70e574fc0","impliedFormat":1},{"version":"e575ca8392df51e504cfd7c1ed808d509815a3a17cfe7745c31bbe9242793e78","impliedFormat":1},{"version":"4de7da29c15565aa8775af5c7fbb44ad90f54b46ade34530a651ef7af94f8d99","impliedFormat":1},{"version":"f5435246aa47bee032053ca93742b278fe2056a95ee26e9da05819df204cd4e5","impliedFormat":1},{"version":"b9c4e633ff42f0bbdad31f176e439eec1cb21e02af0400fb654cfd83d51432fa","impliedFormat":1},{"version":"0c3b3e1d8c575b6a1083b4f60d4b599728893309fbc431c039f55a48cdc8df35","impliedFormat":1},{"version":"bd7898a9b7777d646d296af9262e7e4542350a0b6191f0d064c82cbfd6fcf580","impliedFormat":1},{"version":"6d08d7acecb941ad5db775ad62b492b8ab379b233c25a0d833d0ce3dde9378f2","impliedFormat":1},{"version":"1e2dc6ce7868afffa46c99fe915250316552e47987d0236bf43719f8556c689b","impliedFormat":1},{"version":"54937ed47bd319d3e0520dcf962f47c1a6ccef9a22ea6bbcfad5f930a1bb54e2","impliedFormat":1},{"version":"86e6e79adf0150f3f2be6ad817fdd18c6d2bf374d1ab2c8643083cdced0694c3","impliedFormat":1},{"version":"9e0cac0ed3bfb540a5e02320b86e7db24823eda48d7cbb8d545770a5b6a20b31","impliedFormat":1},{"version":"0655044205f67f213506da9dcf1bb97e91ef3472078097b3cde31d434d5613f2","impliedFormat":1},{"version":"9b0ec489e19e272742fc3b60ac351b960236560e1abd2bb18f20ccd58078b618","impliedFormat":1},{"version":"7b4af6e074439ce9e478fe7615576e8686064dc68bd7b8e1a50d658590142008","impliedFormat":1},{"version":"4b25b861e846ae7bff4383f00bf04dde789fb90aec763c4fb50a019694a632c7","impliedFormat":1},{"version":"76099ea6b36b607c93adb7323cb51b1e029da6ae475411c059a74658e008fabc","impliedFormat":1},{"version":"db4b86453d9e071b3fec3d5ca59bcbb4d6b59933473976db4593d0988bd4c8e9","impliedFormat":1},{"version":"1df2c1692e2f586f7c951768731251abe628c936e885aa28303f0264bff99034","impliedFormat":1},{"version":"7e57f87f2d18da6f292b07d2c1b59b83431a023666ed61540436ce56e5bf9804","impliedFormat":1},{"version":"6c81bc82bfc949e487d95c99ded42d67a1db85c1b9bab784b00184f4d23c9b3e","impliedFormat":1},{"version":"29c0921bbb69f433b07f179d81a2b06d1b6807fa876409c1562299f39cb9fc4e","impliedFormat":1},{"version":"599883c59a5d4df7461c29389d6ae2cb72be9280847ab3c993af09efe3b30714","impliedFormat":1},{"version":"4630ad03301cf8dbc44f66a26d4b6c0b16dd4b52cd439b10d9d1861d777fe936","impliedFormat":1},{"version":"4ec3a55e81757489d13c94d709496af52cc8e6d1590883f4a17e7510283ccbf0","impliedFormat":1},{"version":"ac04a85a2c99e5e08592e1be51470a94e3cef34fe48beee79843e5cc46fa075d","impliedFormat":1},{"version":"8e78526659a660fbe2277fd60a56d72ff44c80cc32b2729a627c9172f6bed443","impliedFormat":1},{"version":"22a09776108b5f10d2a3e63cff481e5f2e72f07c589cf6484f989908bb639364","impliedFormat":1},{"version":"d53dffc6f714f27fdff4668b5b76d7f813065c1cad572d9a7f180ef8be2dc91b","impliedFormat":1},{"version":"49d1653a9fb45029868524971609f5e5381ed4924c7149d27201e07129b85119","impliedFormat":1},{"version":"a403dc2111cb4fb2f1449a4eb61a4ac146a665a4f89a252a2b882d5a7cb7a231","impliedFormat":1},{"version":"8a8d0d4097ec01978f01cf7965af1d5cfc3731fd172ba88302c5f72392ed81b7","impliedFormat":1},{"version":"369f9ef7df8c9dec212fe078511eb2a63df4ac8cd676870f3a8aa67b11519bd6","impliedFormat":1},{"version":"e19419e4ef3b16ba44784df4344033263dbb6e38f704560d250947ff1c0c4951","impliedFormat":1},{"version":"bf38fd4302d7b182291195b1b8d3d043fe9d2cf7c90763c6588e2d97f8e8e94c","impliedFormat":1},{"version":"553963743408e4fd530bec00211dc951cb3e40586777e2387cdb807dd1d1c14c","impliedFormat":1},{"version":"14cc7dde3923d77ff09720aa4733efe965d617f170e6b91147933ba1a32c8819","impliedFormat":1},{"version":"a60610a48c69682e5600c5d15e0bae89fbf4311d1e0d8ae6b8d6b6e015bbd325","impliedFormat":1},{"version":"d6f542bbec095bc5cadf7f5f0f77795b0ee363ec595c9468d4b386d870a5c0f0","impliedFormat":1},{"version":"5cd9eea5b337301b1dc03116c45abf1cdaa9283e402a106a05df06d98a164645","impliedFormat":1},{"version":"fefa8bbb3a45351d29a6e55e19242e084ab2ffa5621b1b3accd77ddcbb0b833f","impliedFormat":1},{"version":"6018ddd9516611aee994f1797846144f1b302e0dc64c42556d307ddc53076cfe","impliedFormat":1},{"version":"6bbc372cd255ad38213a0b37bdbea402222b0d4379b35080ef3e592160e9a38e","impliedFormat":1},{"version":"449424e27f921c17978f6dc5763499ccae422601c041939d0b715e50261a3b3d","impliedFormat":1},{"version":"2f0de1e79fe315d2b52495ba83832f2802bf0590429a423df19864d532eb79d5","impliedFormat":1},{"version":"0a49c586a8fdf37f125cee9b064229ac539d7a258ebd650b96c2a6a91a9500c9","impliedFormat":1},{"version":"d508f0791a3241800f02de2de090243aaf85f9e4c470f8c10e4f7574ef4bc791","impliedFormat":1},{"version":"2b7f57bfd479522f90791ae9dfaba0ac4fefc882c0e51905e8854b4431fbf7b6","impliedFormat":1},{"version":"bd8dc8f36f0765fabd810462be364713c7eba6624324b5d24ffd4b02197bfb27","impliedFormat":1},{"version":"272b1a46cb8ccf1f41a9f5d5bb874e6c252abcb2317d9e3129346b8d0747a8e0","impliedFormat":1},{"version":"833c23a31c2bffc0346e4817b4e01cdc0d5176f2008943050c92e91f8e83f6dd","impliedFormat":1},{"version":"4f4edea7edd6e0020a8d8105ef77a9f61e6a9c855eafa6e94df038d77df05bb0","impliedFormat":1},{"version":"9fbf7b316987d11b4f0597d99a81d4b939b0198a547eecb77f29caa06062f70a","impliedFormat":1},{"version":"ca8d266adcd6a983a6c05d842e232f4cf93bffc01c3d71e355642adf8e087c5b","impliedFormat":1},{"version":"e2e1ab54bc3fd94445e25fedc10582c50de64cad929c395116a594da86eef828","impliedFormat":1},{"version":"4d0becfdbe5107bab4bc0cc5a3047c29c4d3e47e642c3fdc452f3df81b80978e","impliedFormat":1},{"version":"de59761d55cb3e916116b0b8292b8f7752b6feef52bafc341f77bbe5ca606290","impliedFormat":1},{"version":"f390c347d2ea786b06eadd20dd48e723e034cfe6dbd0a3af152b87fa411f9e14","impliedFormat":1},{"version":"07758358ea2a98df6a59aecb8de66a5babd25dc142f0a640dfb2cf5823748ea5","impliedFormat":1},{"version":"9cc00544a9f1c350d11a15f4fabcd565bad4c5f157ba2e6ecf61d176f9a12a81","impliedFormat":1},{"version":"f26d98b1ccae715cc5106f8a31b7df5289695cedc9e907d02a93102819bf30de","impliedFormat":1},{"version":"01d9c44034c22be15e8804514e38d671240cd50e37e3536ad0073c9f091f4019","impliedFormat":1},{"version":"f9d816338735b027330bec82fbf86a39477e38ecd385da4050049493879b0b04","impliedFormat":1},{"version":"476a51005ddb8d58b7d5c88b3e8f0034a6d7f4c51483b3f4158092a2ec29a7bf","impliedFormat":1},{"version":"ae7b809ac70fa8aff42d482a81733c0ae23f405656930698353c56272470d777","impliedFormat":1},{"version":"4f9590a4909bf3734dc6031e32fbf5b9f707be7d8950a5364ce162ea347533ec","impliedFormat":1},{"version":"ae81987b9c24f4c83b9b080d39e341870a91d3480901da115ed86372c9623bbc","impliedFormat":1},{"version":"079972158ebe8c4fa2db2ee80d6b4d61bf5c41ed9fa54ed96040b5efd8358993","impliedFormat":1},{"version":"5834a6ecf61bc530334e00f85945eb99e97993f613cc679248f887ed49655956","impliedFormat":1},{"version":"84c3e149acff1456d6f04b3708d653419daf5e10da591d258de89c5bd65b01cb","impliedFormat":1},{"version":"887546fedae72c83dec2b1bac7db8e6909db684e9d947f5c6c8d9d1e19d00069","impliedFormat":1},{"version":"18a7095b7211597f345009e31ae703e6e7f73b0e7f36ecde6918658fc0f56b34","impliedFormat":1},{"version":"c5fa66ed3b75ba9397e09896513e36909e520f0ca5db616c4638431312006a05","impliedFormat":1},{"version":"7d4fcf47f9aac635c3dd1a282885692f47ab103df3eb0a69d7abd8a63761703b","impliedFormat":1},{"version":"aed1587f0816ca6de52b7846aeab2479960fa8a840a9a118fcfa6ef82553655a","impliedFormat":1},{"version":"7343532660c841adba42a2630db2069fd5313003c55717e86fb1260dc2aa11ca","impliedFormat":1},{"version":"88bc232f130eb51046cac11bd90b93708e9cb4421d61f03e94a670080cf2cdb4","impliedFormat":1},{"version":"981577e0a704695644122f3fe3abd418557b1b904cc75180bac153c9f6545ea8","impliedFormat":1},{"version":"92589f3a6fa95c47f7c04e37ec820ca6a16fc9d4f70f100df8c010561cbf7a31","impliedFormat":1},{"version":"0f388a4a2c9468dd9f8c9c3e752724338bf0d1bf2820577040731bd99c0b31af","impliedFormat":1},{"version":"cb6920524a43eb497b3dec8788d03dcae2208346766f59bedfcb38c843350559","impliedFormat":1},{"version":"3b676aec08f0e5318dd3775c58431b6ff01256de6f8ff9b1d84a3f08c958333f","impliedFormat":1},{"version":"c291e6102feec6cdbaf58ef3af1dd890b58843d154df6a4b7029072e31429a14","impliedFormat":1},{"version":"4ca69c69c6a55df2bb4921fdb23e15d7106b7944c84237d9f37a97584608ab77","impliedFormat":1},{"version":"145a21dc3c1a27e2c6848c5032d5658cc89faa22a6a9f0f415727e7e3890dbca","impliedFormat":1},{"version":"4a84b26ea277a82722b013ffc2541fc2f96047b4a12494603ec566567e81a5c2","impliedFormat":1},{"version":"6d438bb7df0e316776f4ba45f2fc0b2c52cc30acfe7b5a2912765dc4f755bad6","impliedFormat":1},{"version":"435abe8acd8b66c5ce27f9af2ed77f3c6eafeb76b732a86987270a2731ef96d9","impliedFormat":1},{"version":"a3c08e6118824e800cdccd3e829b00fb56f035e9521db1d07a76a6fd2a61798b","impliedFormat":1},{"version":"0c840604759149417d4e7517f2ff460e590fc75a4f3e82b34c093cb08bc720c7","impliedFormat":1},{"version":"214d050d401987f2206ce319ddcb397c09afe71d2a3a239e44adb7584318403d","impliedFormat":1},{"version":"63a8387bb9e3c2ef72dcc7914f3505096b7c1e967c4d042b24a51e11d2a217c5","impliedFormat":1},{"version":"957ef341ac3dae53f3152558ba9b802f9b9b7c42c1ccb472928b153322d8cf83","impliedFormat":1},{"version":"4049300c803136436b1fd671ac03e78154319adc6b9761da865ac2e2a1a15748","impliedFormat":1},{"version":"7d57b2a77ffd1b63eccfd29aa67e76a07745e96f894dc9e6df1136a81cb35ae8","impliedFormat":1},{"version":"2830b20410f553e46ec04bc07641b9acd8506824f4e3f10647f3c136fd5ac55f","impliedFormat":1},{"version":"6a4cb6ad5c8c548c1a356aa6356e7bad18a5c6c75ee0b1fafa9b5054054dcce2","impliedFormat":1},{"version":"4afb3e35ff961963d77d53ac71b28b63b28eb4422333478d2738aa44754423f0","impliedFormat":1},{"version":"58307b5d6f502ba508eeee1697ca7a139dfee251f1dfa794a4754667e7f5496e","impliedFormat":1},{"version":"3021099b1f877229ecf8813c792454626ac486393c07bdbd4f3245b8786337e3","impliedFormat":1},{"version":"360454a49e1dc67cebb1bc8bfc9b579ba018185b58046b2dec6d2a42b2579efd","impliedFormat":1},{"version":"a47951d2d534f05ca7eeea4aa5991c8ea6520934e703ac4c6c0a0a9369bc7961","impliedFormat":1},{"version":"1ecebd1a059ba755a7f4d53d1fce1b8ae1e712188ea956d1cf44f4cd8d2ee982","impliedFormat":1},{"version":"0a1b975cae598249c4469cdf3ccaa92b894e9d98bb08ed0075621e1536b4fba4","impliedFormat":1},{"version":"708a8eed61d6a3f3b1f7cca4a8b037486a0e4e2e6410a3fdf6afff7d9bc1d47b","impliedFormat":1},{"version":"f4e341404e687981a01a210f55099a4da41d1b445bae3df456a35b403363d72c","impliedFormat":1},{"version":"94fd51eba8b8c76dbc0aa69300e0f766054f66960e0962b0ffd585454be04ef8","impliedFormat":1},{"version":"b12e8aa70cd34bca6f1b101f7ef3fe7d1db183311ae3209e419083d8624f3a37","impliedFormat":1},{"version":"af20ffa13473ac91eff97e529a7503f5b9c70534bff885c49d3dc9dfef64158b","impliedFormat":1},{"version":"3b79f82209a3cc47b425e0b1be23f393e4cc4ee3f5d7322352ae9b90805f61e5","impliedFormat":1},{"version":"18aa38f08ab16646cff9b723e27333c71edcaf9a04d1bb54968c56e72a47770a","impliedFormat":1},{"version":"701362ba7af695931755102c709a55c7caaf7823b3195fd9930ecc598d997f3d","impliedFormat":1},{"version":"1b22e753d85e47868f314e4d894475f9c57c92a353fc71f58f5aca60c1dcf06b","impliedFormat":1},{"version":"cdfff8eee0ffe2f81973fee9af928fe94b4b438a27bab82749fb040b8436f9fa","impliedFormat":1},{"version":"285f881ea575d53eddf639cad43e0a47992f7a4c618b5c55125e4e5905cd6d86","impliedFormat":1},{"version":"8d26c2c953a6fd0ced4ea03ae62593132b0626b2bcd4228eca1f11a0f2031de0","impliedFormat":1},{"version":"f21d5b927e2ee351055488ef6959e2b15fcf70b41d4ba9194c46858518f16ba5","impliedFormat":1},{"version":"bf92e2bbbe27c481de4b214197950afe40aa7afded53c0ed96de98ad1e9160fe","impliedFormat":1},{"version":"1f56725fd67839c28816127d3e9f8b42d2e2991df52489a58567263f66b1127e","impliedFormat":1},{"version":"185beb7b83e0ee52a56072801ed540c8de1ea4d2e21dae425ceb041fc70ed67d","impliedFormat":1},{"version":"75a163d9737aff45b60e702b7376cbe23cef2c1921e03fb7edd5d67f7d6a26b2","impliedFormat":1},{"version":"5807420c7808dd9eca5b86d88de4a67f7ec55503a61e2772cbdbac9078fef8af","impliedFormat":1},{"version":"294999feb2341fbca015911cc39bcca113a44fabc6422ce18a17159a4d7d096b","impliedFormat":1},{"version":"3344a49db456949e6a8029283d190aed5447b4e0e3db37d5e970540a21ada789","impliedFormat":1},{"version":"0c47eb0ee7a2de98619b52f417c5c18dda840c667d1da971d24e5c3e3c700c8f","impliedFormat":1},{"version":"ea48b3411c1c1ab56644c919deee197775643929663f868b47c8f67a66be3473","impliedFormat":1},{"version":"7c98e54da5c77e16b9908805e97aef7e6619f8c3986d9b5c2ee1520462a5ec66","impliedFormat":1},{"version":"77f818abc65736ba2f7fe75a6db8279e15888b5d066228a9b30a0740d8a8a9e0","impliedFormat":1},{"version":"107b40bb8f487e1f401e7185f2df1e21a8cfea42eaa82ea022c5c390daa3b5a8","impliedFormat":1},{"version":"300b41b500423fa8cc3d63d09e50a6c1aece0b468b1fc77d03a2b959f0b8f539","impliedFormat":1},{"version":"e028c7f4fc37b188cbac3dc01ba4ef77caee010efcba979bc96257680cf81071","impliedFormat":1},{"version":"294031062fb13d5827a8439c4e5613a979df88fbb7beabad65a204e35d5474b0","impliedFormat":1},{"version":"1dbfb9b768ebf90fffe23c7be1e87451999de78e2c2f7a5b02a213bb2dffa2ff","impliedFormat":1},{"version":"4b9ddf4789fda91c3433b5203e5cbaa9e83f0ade11bd6360aa8943a5cd5d8165","impliedFormat":1},{"version":"220ffc8849bc38e25c2c19ba689e760b40c57ae31ca3d510e07b0d2856b702ac","impliedFormat":1},{"version":"e450a4e79acd8b45213cc63182c55f086c439e15ef1d58f597c60581fff77002","impliedFormat":1},{"version":"65d1509fe95ff00c5e7d9569c992ec30891199b7a56b2650e6ec144bbf901e4d","impliedFormat":1},{"version":"bb3e0744a0ec2e4cbec1139764aa61ecee7ca2cd4fdf899ad6b8563c68d54baa","impliedFormat":1},{"version":"cb7d3c99a59a418e7d2b86d8d7328968e6a717dac86486a514fe00a44ce7534d","impliedFormat":1},{"version":"b6a2f3e18328c45e01da7d8c36c10ceeddd219b6e8a104a6d17a63923ce67611","impliedFormat":1},{"version":"3aecd3ad86ce3374c53d503393e2436cc6d82e35c997dc19fadb923c62b27f7a","impliedFormat":1},{"version":"16d0ab6398d20c9c9a8a4bc68aae7d6f11a454f25a22e4e2cebd1e0d60cd35d5","impliedFormat":1},{"version":"a74c59c4bb0b9706763d814758e8c1675b5d891bcbb8d2f94bed6383b7ccea29","impliedFormat":1},{"version":"63ed414406c0dcf9714fdcede884be617bcd56260377112a428a4d5acfb33595","impliedFormat":1},{"version":"8a10226c68c4a7f64619de2bb0e92350ec2eef9a0939593ea636681efe7df377","impliedFormat":1},{"version":"4a15ecee81789f2a21bfe45da29196df8f2ba06f3981f492678f8051ea51d73b","impliedFormat":1},{"version":"0aa220355ca88bd4a392b5d72792173351db7e7be1b19368e7b2368478c84493","signature":"a85f576c57b2c63ce2c88cc6cc29908b6c54962be4e44c67f6c0328fe6d59e15","impliedFormat":99},{"version":"19c27a408a132ea7acd948ed89e6f92337bb504f96429d7fb2a8bece8a1c9976","signature":"c32e29e134f7079a0fe9bc375014b81c8289595e5c75fe95ff1f85e9d20eeb64","impliedFormat":99},{"version":"c29e27d11e570089de843433232d8efa0b34886031a922682ccf22939b6a752b","signature":"815e801b12e349ad1445c7544eaa8d8bbb1d553e223a9cf5d53cd7011b12a8b2","impliedFormat":99},{"version":"6fdfa9a9620d931406fe1a0839089391f4731df1768cc8dda18977c8b209f9a6","signature":"fa4a4716c16e1c0b14cbab5d1d1343f8d23ec4a5f973105434024c3f4d52909e","impliedFormat":99},{"version":"cae57dc6b541b463ac8eb5c21dc05ce714a9be7dc87996e486b7200937e22059","signature":"d2352fb284c5180e278baa759659934c014dc85e7a3392bb5c5d3bc15e54f634","impliedFormat":99},{"version":"da8226c2e5f22f368e53c1bfeaef1da0ec6130633a23aad06cc3c3e8b1db7300","signature":"1cb7181f31f054c8d558cba5beecfb2681901317cda19914246586cffa31cc16","impliedFormat":99},{"version":"a10bb7af3c06d1285f36c978227f3b1c3653ace911b51657cb695f0535617bfa","signature":"70a69af74a15d776570cadaa334220df15ca72d06d8db11c970bde90c9eadf0c","impliedFormat":99},{"version":"93c6c808ca5bd63bd3152007642c1c0480878de5d09f1b651e2ea079467386b7","signature":"372cbe899992c32effdbda80cdeacd55ea6e55401af48b50d7080f66beeeeefb","impliedFormat":99},{"version":"59a2a14e96659d410ae1e81177a244b3da308c04edea35327243e6a85963ee9e","signature":"5c637c04d198afee2492f1856c9d487cb5d61933d5b135ad1fc1f51d9dd50d65","impliedFormat":99},{"version":"b600ea0dbfbe9b4716c4a8b7f7b3c6a4f5cca6f0224c1024363a81d1de98e7b1","signature":"d7eeef2c90307c085c3b57c5f6ff5b09887c42fa4fb484ceaf8ad9c774c952e7","impliedFormat":99},{"version":"400bb49269c73740c04418c3739ddab3675428d51b203fc187c3fbf278511f24","impliedFormat":99},{"version":"fdb5abb9db5515c7cc54f595e324912a4d9a31779d2139c9b77ea9ead86e50fb","signature":"77ec702bdcf157a2fb395030db779998c1cf0554b9ba0274ab9758d0325f569f","impliedFormat":99},{"version":"b171166cbd654ec92ef274a46c7c6c73a92a0df17092d21980c591d2d9f7e7db","signature":"39669eeef5891db9cca75123e3774d4e5fc3cb4c33e8fa4640d3d8e66fc04468","impliedFormat":99},{"version":"eed17823e26206284214f51dc287edc8335b871c1fbea11beb4d27ae94928d62","signature":"351c8b87a7ea65e6a17be00ab2d28d059aa4967ff0cf6e222d0d54ecbd0af3fe","impliedFormat":99},{"version":"341a0091698ee3bb1a8d4167c78007727e2b505bb67bb42dd72e800d6d27497b","signature":"1ad1f93ad2ae90b943331cc061db9ec69c43456a608c7db17d3de9892412cafb","impliedFormat":99},{"version":"eb50764e9e3826a7518484afbb33ab21039e24c5f0b5626fecfee0c2470d46d7","signature":"58117cf0b71259a187e04ee808aa454bbf210d4d004c5c51d4ec34cf1111ac47","impliedFormat":99},{"version":"5d4785789ecf68b8d4a38ba16a85cedbb6502e4e1260f9b0e34e43ca89eb3c01","signature":"1a2cb80ba12101eabf624cf15e8f9bfeff9007a90f6dca67bca24f84fca4b728","impliedFormat":99},{"version":"6951aa7c86245e5ac76873f7163d56f4db65cdb2b8b57afe6626611b4037ee9b","signature":"d91b9a554ca0aa40ebe7cd35a5de3607fca8813a2c6ad5987d729ff6fe340849","impliedFormat":99},{"version":"9ea134e40513a5c4ff1bd7a98869646209260beb54e4f8da32e37eea2445407e","signature":"9c0f85143ff6011538047c79caffdde29618a0af25d00b24c614f2421e007b52","impliedFormat":99},{"version":"5f5313f298576e7399940f42755e5f3884100ae271cc87fabf3a241c578aa8cf","signature":"cd6ef4981ff1939fc1cf89e5a106440ff964c681a4821ebe2eefacf49675d131","impliedFormat":99},{"version":"4db56945be2e2f0bac0826edf2733dbb54aaefe36e4a24bba5d1a0b1ff01ff23","signature":"4140fffeb09259454d302d5eb115bcbc15fbf5fb6d187339ecfe406aadb9427e","impliedFormat":99},{"version":"2788b305914c0986e45af662f272e38443b22438720739eea4c5ce2d5093d13d","signature":"c333a3c0a363ee02a049a016c0126c5ffe3b025a56040f10dcc2c7a01c71a6e4","impliedFormat":99},{"version":"d755420db4414a7ef054d81e8a02b9045ada8adf51a47815ad475b2362ebf9aa","signature":"487139409b79b12643d7412d87d7b9f7f0ce2ad3da4cc84ca410f32433b74b6f","impliedFormat":99},{"version":"a7562617e30570158ed7afb64322f5ea05ed4479be0455e92e75eb5a1a26629a","signature":"e87de23135218b382df26488767251751a48bc6f2f623519c10da3415d37c0c6","impliedFormat":99},{"version":"954440ae2629e00a83b56fc6b41580e8272407c5851c1ce199c103c1247d817a","signature":"7a4f3f50061e61b04f04ac3893d360c6edf25974ebb327f5ff3fb460714c7b57","impliedFormat":99},{"version":"f32741cea761659d9cc1018199e8c2a0694d8d7cbc28b4d24b51493ac3117ec0","signature":"1fa2477a1855e008bedb0e66ec39248f2699561715efb981fd13bfa4c641e149","impliedFormat":99},{"version":"af1496f8b2d59cbc13da81fae00c7bf540a8a5a896911a49eb220ac493e63158","signature":"a58fb299b0c5843d239564ca91ceb2a2f670c224d2c573919cc2fcd0af0000cd","impliedFormat":99},{"version":"8089aad28afbf285020d2474aa5063dd15912f8697f3d90aaa3e896194d846ff","signature":"8d8805e00c39ab3e722c898d7741e7e8f8f8c71baeee2d2b30a4f86df2e34741","impliedFormat":99},{"version":"df72d7d70229ce9779967ad0dc900c9c77f21574e27687325aba8bf8c6e60ac4","signature":"c5b73dddd553bb822030c99b1d70fe1626a1538176b447f607aaed7076817094","impliedFormat":99},{"version":"45a7cf8329efbdcb81d4cf8ba6bb46727eddf7743094fdaebc96ab62c3a862f2","signature":"8b4a5e30ff8d27a20afd207f5e347efb66dd9c25d6f6ab21dd947290865939e9","impliedFormat":99},{"version":"0b5ce27a7517f50f4304c4232327b9419b9fb8cf7b777c4d2f6897e73fcca7f8","signature":"7d0247f04891f7fcdda18ebc890567b5f2dd903794430614f514d1d9cd615dc6","impliedFormat":99},{"version":"4d733ed8178dcc25f958d33b74ee6ff8f2498b6c0e8948904fc2e79d5df69616","signature":"6be0b05a45b839b2d446a4af410438df9a51a35cff4f9bcc9a867911d78ea106","impliedFormat":99},{"version":"13163ae8c76dbc7fefa46df328edfad6b436a3341c3fed78550d497c9e42b27a","signature":"ee0872fc9b4be2386207666ead2333069e6fa65f22f720982c284a6eec6aa270","impliedFormat":99},{"version":"6f3974eebe9061609919116e2d09346c8736957832b1cf07728938eded634e10","signature":"25bafd104bbd554d46c7ebc9e0dda23a068fc665e43a84697e158b6dd40781b7","impliedFormat":99},{"version":"1e3cf9095acaa4786dd49db45442c970ee39311e4c468068f9981293cebcd336","signature":"0f083dd5df0bd2a6615353fb1ba94b31454056cff26d9f1592402d2de83fb451","impliedFormat":99},{"version":"7fb94fb87fefc22aecf3cfbe3c30b7027ad12a168057a8e5864318ff2bf087a7","signature":"1b8a08cd74aabf03652debf2eb52b4536b4f89719ce86d8a6600c35ced37d7bf","impliedFormat":99},{"version":"6b1b015e8883b2668695a5a212cdd0cc08960802a8c041f36e995598f2360de4","signature":"eb30dfcf850f8a46270cfb251c0ba173105159f88a03771987b58e175152f22f","impliedFormat":99},{"version":"a01b9309c3f04287d5e3ba9b727fd2ad07bf5d483e50ea84aca88effca813989","signature":"6b334ab04d8f08542aad4b49d8dddd822fe5474999e8d649c86b68f825edeac3","impliedFormat":99},{"version":"3db20aed43b56799fda8ec9a60efb58d6373ceb6c268030500e6cb2cdeedc161","signature":"fd1b085a30ef1c0b3bdaab2af91281f11be91e81e4543bc6c59245ef6100a108","impliedFormat":99},{"version":"0eb787ad5fc1031238fa2345bff50054bc98df3b530c71894298cb220dcac7d5","signature":"534af213682ab353eaccb2512b1af7ddd9f8212599ecf8e06c7f443d578853e5","impliedFormat":99},{"version":"b28fe987c0cf448c77f167201bb367a185ff34b1565d63d4d8a1c05de724574e","signature":"057b46768e4161c0ffb97b778a5bd9048415b557efa2833fb3c71cb5e3820699","impliedFormat":99},{"version":"6fa360d02a7b19dec0766f6e0f69fc76f38184d8169fdbab36d9808819f21b09","signature":"8866601ca691b72adf2fcc55b7a7f60d46e1f1e2ced5145bb0e8f6e3cd83711f","impliedFormat":99},{"version":"01cf97eb1c7a09c2cfb0542f5ac709b183659a7c91ec4116839d29e335e48703","signature":"9fa7227afd0de190d5ece5bc392c3ee3d1a6a0acb9ea08d12f6ecb5598658297","impliedFormat":99},{"version":"96d93f6f7312514433aaf72bb084ae7827e59ec08949151e149d743a967b8c3c","signature":"bbaa24f5bd8f3fc6e090add210a6f60662b03c808825f2bb3213003b1b005d59","impliedFormat":99},{"version":"c0efadd7009299d800747c98d53e309dfde4d32c87392ad61b242bb7a9182bc8","signature":"9807b176889175f2925a0d982c51f110b1f4454d3c49351bdede667bd5e9f0ac","impliedFormat":99},{"version":"d2f6acfb467f9bc0db42c54637a0fa94a5426f22f1744d4b9a56af5a135ad4e3","signature":"d76fc730593157303987d15539c4acf989e1763438eac0878404ce05b140608b","impliedFormat":99},{"version":"a12fc1041b9031bbe91471a10705a593964f9e1d91955bffe3c979e36c0b288c","signature":"49325a01da180cb33d50e6d8473a95ee11fbda71c7e052c04b8a3901ec27224b","impliedFormat":99},{"version":"3fbaa9f5a15d20cccf136ea20797b82ccc1d2673e564da1db8912a1cb88d1536","signature":"6b814588ee9fad4e52777ae038ef8f5fb6d6ae82931e19123ed539e01e676b88","impliedFormat":99},{"version":"8c3ee2e8b3d774705bd02d95c810174d64be169f8d2bbc3fa29ed284d2ee3c87","signature":"5cb98c2209cb4a0432ca282b62073344a2e68fb228a54798c6e4820635510009","impliedFormat":99},{"version":"7d00fa0751fb8cb55c19e445f630e79981ae12476480fcdecf945d48e3123207","signature":"5f724bc6b78b987fe0172e0a187d4c03ef5c9a579e58aa5a50a0789c5952799e","impliedFormat":99},{"version":"5d9eb1432a4e006653c20eba299664049111da2f49b323e7eaeff50828d42bd3","signature":"94cefd428baf0bc4726bce514fa10f5692b189190e010bf145374e79df8480a3","impliedFormat":99},{"version":"8904568268f3be143e1a2a71e88c0ea281ad8008aea90430b78590d1faead373","signature":"99b73e62c05f51beb58b63074bb8d67678b5d43f4886e7d2cd94535230de8caa","impliedFormat":99},{"version":"a79a79d9c1e57c0fc19d311024d80cfe1b14d5cbe831750b1849169123774fc8","signature":"cf90eee05130e2e8f79b69ca5c95eaa4a01490d4b3747789d85ba14d1aeefc20","impliedFormat":99},{"version":"289c75d9ebbee27ac8e3ce887706c7000d97f6d0d6103d8d92b9e34262e330f1","signature":"9fc6277b243a1b6cdf4920e67c9e03778dff40d24d3e38ac0eaae3d8f1a724d5","impliedFormat":99},{"version":"3d554d3183e60a6785cad0904094b314f377fc19e461b42e04eca4c9f9bb1f9b","signature":"bfcaf6572309ada22005fee66a9dc079ddb1f38ce8a5966fe95de5167d3abfcf","impliedFormat":99},{"version":"38eab7bcbe048009de28b21f1d0e885067244ad890ad84d47c779cad89ca135f","signature":"faed6bb38c4158c7ac5dc1af4ae10e2d924d68e5752f6777e5839f83e99719e1","impliedFormat":99},{"version":"891f22ca991038b520ccde2d55b7cf38f01a76c14246a5a2202fefa04c33ff0b","signature":"cc6772661ddfbc308bf4b4f810630dbe7e2f0e848a907c6b8db791071a7cafd2","impliedFormat":99},{"version":"eb37e5b0c1daeef27cde0955cbb452dc1e0a435bec04b15b4aaf8858806017fd","signature":"d176fc6fe9484a8deb003eb52e0050e12373912958a3aa1ba4a3dc208efa4ed2","impliedFormat":99},{"version":"4276be42f6017a4244c4cdc724d0a5c2e1b0845fa886cf4941696ec0d5d098ad","signature":"50f69f60b50249ef264d25321434627b3e12d34fdddbb2099f122abedf0b4d56","impliedFormat":99},{"version":"9b811c1dbda5ef75152dc512a1ce2f53df5ebc986e6d8b3b751a42a7ffbc68ff","signature":"5fb2f69de95dedc3255e8c122c1120fdfb5bce63759280ac92602156be30fb49","impliedFormat":99},{"version":"215dbe771e39c9119e87108367f233ccfa6491b3dd619a9c1f2b74d1e27ff78b","signature":"d173cc144ef239ce255aff5dec778d81b2999e4c5ca0c0fe4542f6fa65e9343b","impliedFormat":99},{"version":"dc3cfd9f866b2b80ba735c23e4117fc07f0b06972f86a0632934b027696e5370","signature":"f47cc1911aac40c17a39f1bebdd7ce2334e9a5ffc8157b79486d481be8d210b7","impliedFormat":99},{"version":"1adb384d3981ce99a5480cf983fff8b368e22a1d32bcba2c7827fefa89d559c8","signature":"319499c51aba14930c3b7e89a39e4a7f2037a8bb7397e5a3be8207113929d99c","impliedFormat":99},{"version":"d9c825a84de5b5581e4c4cec4c3f7ff5495fb31d1309c66f9a6c45f3d3043179","signature":"65ee849f6be7ba7331ce6fb0acca648ab893a3de5b05039498ece2b782184a56","impliedFormat":99},{"version":"7dd3097c1ad4e3455ca86814246b49024f975b1dbd01d5ccf77e94345488a211","signature":"46577255ee36f2b6127689ed58b32c4e6a514f63eb2074b5af772e3fb24c3c4e","impliedFormat":99},{"version":"19a84cb55e362feda84ecac010d124eb74e2806dbcd965150f08723729a4835b","signature":"d25e1f9c174c8ae40807c43dbb49aafa9c95cd5fda06714b5831afc06a1075b3","impliedFormat":99},{"version":"f71453d9a366332860a33c3175a967ea82cdd23c9ca731497d42c1d5a9160228","signature":"942f68aab64aa31870b2bb9f8923e360ab6da9925e9d4f3d55a367ab3c5c8b0e","impliedFormat":99},{"version":"9679c09d76cc47452fa6969834a1ba4f3614627ab197b518e9062b82d65c1167","signature":"6ffda06a489b6c26cab2b55d4dcf3de8d6ad8538144c8d8c3fa0f9393807fbb1","impliedFormat":99},{"version":"fb5c1038192d2f589ba8826c9a55a7e5a3a850f286507d08201ab609733c24ff","signature":"f122fa833269eae77dea73cce1b758243a49fcab3d2180a078b40f8c5217f43c","impliedFormat":99},{"version":"d8c53cc22b898e970df47ad474673605f42b1340fc4bf8b735bec0a35723191d","signature":"618adbb733c8082862c785f349a43be9a21bfe2e9089b63f90058d4928fee739","impliedFormat":99},{"version":"e182c136a4e7a448661ca7e714b9a1e417aa917419f55a68109e324399b89aa4","signature":"f38cb71adf43c8de7df476398663c4d410052ee9dc319d8abe32a2e332888560","impliedFormat":99},{"version":"bd33674312b9406189687b4a5cdfe5c24b65eb7f8058d0ea5076887603adfbf3","signature":"4a75eb45e9f97fd838fbc26baa16b3d209991cfcf939fec5211c0495da68ac5e","impliedFormat":99},{"version":"4357635778979e2a6193a70eb24a7d32bccc3b649a1a75f53b88e8e138ce95c3","signature":"ae9d5c6d675a8465062b54ec2417006a22abb5eea2ae33d6697cc2a52764efdb","impliedFormat":99},{"version":"8cebcf310589b29ace45e7e128dc2eef4f0b7d22cfb88639744e0678601fea21","signature":"5fbcdedd650c2dd76f337746e23216f835c65d7acdb5c81cd96625d90a80b238","impliedFormat":99},{"version":"0ac54a867d81203afc0eb80571fbc4d678e6d4c2df0fef05a49db90e401e7973","signature":"05e24516dc98b5e396a4be24119d413fa1178442aeea77c9cd11d141d7812e60","impliedFormat":99},{"version":"4be219e34393a6ba19e6b014d9fb0c7cdae49ae43c724e03a182dfe51ee2b831","signature":"6f7ea6ed03565f307e6f549b47154ec98e4e4f9d6406488b301de5fb68222970","impliedFormat":99},{"version":"8f64b737d09216ce219acbbace9c95684b91278f338364bb689a1376deb8cbbb","signature":"f56dce6515a61008df9a84f7e2d52b8a7942d0c57655fbf8f55a38430a04599c","impliedFormat":99},{"version":"3f2335cca4cdfd6fde69771bdba9d522542fb4c477b3cd1fff911ceb7783d1ea","impliedFormat":1},{"version":"cb442d1de3134c7878e6ce47d71662ae7f04d7ea8280a7f53fe730850e37a461","signature":"aefaf20a937a573113b00699c976ad7d7e91e2e5b7d5c818b72d6621ce07c236","impliedFormat":99},{"version":"e0abc86f181337eafd4b5ba502c94ca2009644e00bfd1866260d6bc5f510093d","signature":"61e81f53e2a9790581eeac454808b6f6d480347d4851c2e91991669c333b059e","impliedFormat":99},{"version":"68ba801b79d65a8a9975d5ddcdc45d98938d41bd48a52d546fae965c673c23cf","signature":"788d954a262ec71ac9ceba0afee3c3d1118e5c2d37cbdeb54d4a016cd200cff4","impliedFormat":99},{"version":"eda3ca30e474e000c6047165b4f8fb2c0e94f14c085936eaef1a0e22881ca53f","signature":"a8a180082f4bacb3d9b67f4e8a02186ef6f41f78c0f4fecd4f9271a60c38db3a","impliedFormat":99},{"version":"a20c9f12c6af6971611f0c1ef9ea2c70ed5111c5c8c9230159d3b8656361c079","signature":"a59197d2cf6825b01a732e8722fb187fb3a0dca486c2e9f7959cefbfde4be93f","impliedFormat":99},{"version":"cba5c56285ce1b8df67f39cba5394c7902769893c498a9610714a9d3b4c09e68","signature":"0c8fe351b2b424645be22295563c46bc75e8355aa9b450fa26cf8f50ddab7bbe","impliedFormat":99},{"version":"7227620a4a9e6fc1430736412c10056aa08fc7f9adb870b8537f2084922b1016","signature":"6ef521a79f7650f28a211ac52a97d2a575d5e05344c3e62352a385fd43f498c1","impliedFormat":99},{"version":"00c946f4456c97857836fb2675c5912b32f43f87f1221968ba8bd6892da2d900","signature":"18977d85c88b9a455c9ea989bb57774f6f13bbe786cafcba994d179e452917f2","impliedFormat":99},{"version":"67bd2a2ee1da9b3ffd122da8fc2017da5775608ee931ecf791db7ba3973f6969","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"0254e59c10b1a816f9bf36909cfe8672bde013797f1a952f3ceebb9f98404167","impliedFormat":1},{"version":"b383c2ccd256301f174292e83d7884fabc4acac644eaa472b3e0f28599f3dcbb","impliedFormat":1},{"version":"deea0e953646280bde714399505586156f7df313b31bdec3020e8093d447557e","impliedFormat":1},{"version":"836812cdc975872a2e9f3b9067c307ae2d8ddf5771b764c000dabc12a330691b","impliedFormat":1},{"version":"14eb21a2914faa2591220878e73c05cc45e4333dd53d0ca2e15e54cb1d3c639e","impliedFormat":1},{"version":"fee5b20d0c7ca363e3df8bdc41e8cf528a096461df83773c00690b89ab0e8e84","impliedFormat":1},{"version":"f122ede52f7f29ee1543df529cfa6c51ffecd1583ea9d83908b8dda532101c48","impliedFormat":1},{"version":"b995a0024f0f479a144d671ee87c92a990543d5831f293cf48252ebb5eeb3f28","impliedFormat":1},{"version":"8654a12400e1ac5a254dc8535528533c991b51de2afa1466cd82a9725c211f3a","impliedFormat":1},{"version":"1a4a275667630b34232c669f245dc1a4c2b61ebce20af49c3a7279518fe3d62c","impliedFormat":1},{"version":"56415bf743179e6011a377304f5ee6da6420438fc6fcfee03d70aa6b34f09034","impliedFormat":1},{"version":"0be401ce1c0b6e68383dd813abcea430d547db5fb179675c6590be9bd9f862d4","impliedFormat":1},{"version":"e7fbdf938808931fa6d2f8f16d1755ceb35d61234ff3fde2fe68569691091636","impliedFormat":1},{"version":"a407b354d5dc9211a783b64cbacd8c6e04118e129d9c035b06859ff08d6765f2","impliedFormat":1},{"version":"0260676567e0d0b295b2eecbea450989982744adb97336ac819f084cedf1fa74","impliedFormat":1},{"version":"9cc12654c2c98bfc145d85a9543c9620f26fe1f6f556263541a81e5dd604fb5b","impliedFormat":1},{"version":"8e81fd612c681ebe45c0c0038ea6b9ef165b1a0050ee802790a890ba7b0b90f2","impliedFormat":1},{"version":"fe0fd4531329dce00a090c24ac058b8e98ffca5c743737b69fd325f5a64672ca","impliedFormat":1},{"version":"70344e78c9a955d7f9fe5a7fb65f65e7b186940ee3d8a2e1aa87a47dbbbdb785","impliedFormat":1},{"version":"fedcbd6eabc2c1b9a394dbb4e028c1641fbc45c7adbcc0c75144098a4b390ff4","impliedFormat":1},{"version":"525f24e31245715de236d3167394a5b021939a7641911c54a5bb5c06e49bd905","impliedFormat":1},{"version":"ab541e9ead8e2f7772ae6570797b5f870b89cc80994149065c948c8f20ba8303","impliedFormat":1},{"version":"38150fbfbf0fc9694abb2c766cc77fef3bda5d964ae4e5714534ef83dc33666e","impliedFormat":1},{"version":"b96a687ece2a207c0008c6bfd85166f11532978acced6179050fed7fa5daf4da","impliedFormat":1},{"version":"9f5a4229b778fbfeda29010739e1c32f52de5219510535f4df5c0879b34dc4b4","impliedFormat":1},{"version":"5604842dd16f2c3cb693024182469a947de580c450212ecfc7faa7ba230a50e7","impliedFormat":1},{"version":"0e25e4da82204e0abcc24cf6a203e04547f22eed70e41e4fd332f76070d41ad8","impliedFormat":1},{"version":"9d605611469213aaaa28e53577fb95c28341fffe64d63046ab2fb4af54e6c794","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"49a5a44f2e68241a1d2bd9ec894535797998841c09729e506a7cbfcaa40f2180","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"1ca84b44ad1d8e4576f24904d8b95dd23b94ea67e1575f89614ac90062fc67f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d586db0a09a9495ebb5dece28f54df9684bfbd6e1f568426ca153126dac4a40","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"567b7f607f400873151d7bc63a049514b53c3c00f5f56e9e95695d93b66a138e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","impliedFormat":1},{"version":"84c1930e33d1bb12ad01bcbe11d656f9646bd21b2fb2afd96e8e10615a021aef","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"4b87f767c7bc841511113c876a6b8bf1fd0cb0b718c888ad84478b372ec486b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"2bf469abae4cc9c0f340d4e05d9d26e37f936f9c8ca8f007a6534f109dcc77e4","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c21aaa8257d7950a5b75a251d9075b6a371208fc948c9c8402f6690ef3b5b55","impliedFormat":1},{"version":"b5895e6353a5d708f55d8685c38a235c3a6d8138e374dee8ceb8ffde5aa8002a","impliedFormat":1},{"version":"54c4f21f578864961efc94e8f42bc893a53509e886370ec7dd602e0151b9266c","impliedFormat":1},{"version":"de735eca2c51dd8b860254e9fdb6d9ec19fe402dfe597c23090841ce3937cfc5","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"5155da3047ef977944d791a2188ff6e6c225f6975cc1910ab7bb6838ab84cede","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"e16d218a30f6a6810b57f7e968124eaa08c7bb366133ea34bbf01e7cd6b8c0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb8692dea24c27821f77e397272d9ed2eda0b95e4a75beb0fdda31081d15a8ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"5b6844ad931dcc1d3aca53268f4bd671428421464b1286746027aede398094f2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"0dbcebe2126d03936c70545e96a6e41007cf065be38a1ce4d32a39fcedefead4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"461e54289e6287e8494a0178ba18182acce51a02bca8dea219149bf2cf96f105","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"e31e51c55800014d926e3f74208af49cb7352803619855c89296074d1ecbb524","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"dfb96ba5177b68003deec9e773c47257da5c4c8a74053d8956389d832df72002","affectsGlobalScope":true,"impliedFormat":1},{"version":"92d3070580cf72b4bb80959b7f16ede9a3f39e6f4ef2ac87cfa4561844fdc69f","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"613deebaec53731ff6b74fe1a89f094b708033db6396b601df3e6d5ab0ec0a47","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"e56eb632f0281c9f8210eb8c86cc4839a427a4ffffcfd2a5e40b956050b3e042","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"cac793cc47c29e26e4ac3601dcb00b4435ebed26203485790e44f2ad8b6ad847","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"aa5524e0509c2168c9493604acf51ef97d2027f03f3b38da097802d3aa719dc8","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"d072cb61b086eeae042c45d85ea553a03b123d3e27dbac911faa1a695f5d6752","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"299fd0c281633d8dbfbe5f44c5f2850fe37392da6fd3b9cca3cb4e10cda16432","impliedFormat":1},{"version":"286f20f2289ec516bf93f9f9ff6790047977e326d450db182ba5a29020396008","impliedFormat":1},{"version":"f69218eb2ded0781c6457b49361d091770c6a136c0905d4b6e7474913e1e9a34","impliedFormat":1},{"version":"a7c6c8dea6a9ee0f5d3ba00625972c23b000ea5935689ce4f266eb5cea99cedf","impliedFormat":1},{"version":"6d1dd5c9f554a6bd35c501b5aadb225aef342921e32f2144dfef7af546f1739d","impliedFormat":1},{"version":"24087b5433affbe3336c5fa08aa3b3278c823661b9af573f44267a6012337593","impliedFormat":1},{"version":"b0934f5f9f50134078a4055178d139ca3cafacbe3e5624d5ff1de1c4fe4af35a","impliedFormat":1},{"version":"70ba20b010b402f1b536c5298232b1db47e4a50700c44e8130551d8ef6ecc17f","impliedFormat":1},{"version":"488a9c24e256c90067c427ce41fd371e0213ffb2771deac65434a348d8f88a07","impliedFormat":1},{"version":"f83c5d4e73d43714daaf597119170b65afd10a46e1f343cd109bd517b65963f1","impliedFormat":1},{"version":"db19ef667563291392f44218a6b2f167bc06db64022acc138952c3036445c55c","impliedFormat":1},{"version":"909395ffd40d5fb648d3737713ecbda4cf264d2d8e04b30ff3f5292e257e52d3","impliedFormat":1},{"version":"30c4b3b5bfac4da83ff9e9b9f69fa67c7060f8f4d7d59ae495cb35060f0e253e","impliedFormat":1},{"version":"cf72eb929f290bacf74339a050b0aba5631b743c8de0ae3e924a9e55a36d16cd","impliedFormat":1},{"version":"6a37168e02b676b194bdb741b2babbc6f61dff1314aed91aa3789ad91e75b437","impliedFormat":1},{"version":"456380ca94afbfecd5d872ffdc77b2653628eb3a25a7a3cde255b7428d811abe","impliedFormat":1},{"version":"795f95d066aa720ed7de6e077d9be2a7fb12e5ee91c9c40cc8da9eb9926feea3","impliedFormat":1},{"version":"a211c228aaf8d7355a45408686a02d969768cc86b751f26d081284674613a95b","impliedFormat":1},{"version":"8c57d40ed9709fd63e31a68959376a731b510021e9adc40f7c219c61ad8b9806","impliedFormat":1},{"version":"0f940447f3008f079b4aabb96b962cd340377cddcb4f42220fa6cadc23c4d232","impliedFormat":1},{"version":"c6c5b9506d0376d0738ce3fa8fa50ca245997ace1655527ff218a37ed1256907","impliedFormat":1},{"version":"92b9c68be1b85e95544499edd3656f7387958a95cd710071a0be493e3c777b7c","impliedFormat":1},{"version":"8daf52daac7e0413830d73b556d6b79de30d00cac2779a68a75a3aa5440a2dfd","impliedFormat":1},{"version":"4562edf0a0426f9a8227b4d6f5fed16b0e135ddb65ba7adcc287b3ed5a2cd079","impliedFormat":1},{"version":"b0923ec32114fed98544eee4a342d6991a272e9d1f2a35e65cf8bfe5be4601ba","impliedFormat":1},{"version":"a0c6d6d383601eba2963be60f67570dab436eacf3e2bf0ca44ea0d09f9733a36","impliedFormat":1},{"version":"2d2ef1d4f5efc80b405bdf4c15c7fcb76edd04620895218615212ceb3fb06e0a","impliedFormat":1},{"version":"a7afb95ffe62b2c14804c079038e4aa5a0555ddbc4fe01633705d0809f976f1c","impliedFormat":1},{"version":"4a9a138d0186e10999ac6b4f4376ddfca00671234f3de9f91b1970e35436393a","impliedFormat":1},{"version":"1e4880ef4c505451301424d80535c3b2095b251dad2665f6726fb8e85e7ebcf5","impliedFormat":1},{"version":"5d83b30f0d163384acec2b880d8047e6c310988dbd2daa038620ac3b4e1233ba","impliedFormat":1},{"version":"a7d16afaa9ddf842aff3c5d93af013273f4266bea884c9436d4a9e2d7c4c5526","impliedFormat":1},{"version":"cede714d3a6799d77ed599467b055ffd9aa70a14d1f8ca3e9dbd9e3aa125ce57","impliedFormat":1},{"version":"d36abd9bde837dd665ac4402cf0622e9e271641e916b00e1656e58a399752555","impliedFormat":1},{"version":"947018964856df13ebd5f666cb017d980ed7025269b94cf8235f616cf8c4d02c","impliedFormat":1},{"version":"73112057f549fdfdf5bc03c76f88e55dca9ed486bf507330ad345654f0060625","impliedFormat":1},{"version":"fceab08e6327681f270f4ea4c30815594ce6600779395098b80fdc6501c91918","impliedFormat":1},{"version":"4371055bb001f40596e2e236b27583e13bf11e75d937962f8947d56519237fb8","impliedFormat":1},{"version":"89189df027e8910200a4b65af1e29a996225cf25975f5c438fbe9361c008fc6b","impliedFormat":1},{"version":"0bddee1c0d45e9fd28798038ba882d41fe1d9b6a6128aec363a78c5f441c624c","impliedFormat":1},{"version":"73b62ac7f9b3b2270949e76fb55146d5ff7f3515aab75af4edc6a73e07f305df","signature":"cc37ce5680783944a1a45a4e089c841bb862d709ef2fd4b31134f49047350c6d","impliedFormat":99},{"version":"8863bf118e3a84c3894db4f462f77cd80fda2445a0bdf0923bcd556f880fd5c6","signature":"9c1590a866f93c8f23b9f284dec26cdc43ca5413b9fb58b1d54fba51f427e6e1","impliedFormat":99},{"version":"276b304579535cbf050fa3bde801a3368ae7f5b7c74cf01cfcf445c02e6b843b","signature":"acec226cff8fc751c71b0641eff997173748e7bbfdba6328bb48fd93f6f460e4","impliedFormat":99},{"version":"5433c9f5ef9c4c21947011cdf2cfd8f50a637b17b9e65d21ffece521ac911372","signature":"fac1d35a2faa93decfff43ef3504b1a10eae6d3bea22c9c09c51ba2741192c9a","impliedFormat":99},{"version":"f068804d8172878b79a3e8516663130d03315ea39c2e613eff9e02d8dfe0c741","signature":"838b5abcbaea518a83aa044a4435134c41aad3e89a02f3bcd9f2ada94d6c4b19","impliedFormat":99},{"version":"6fed52ca26c9205eff7ea657cedcf83ac1eade28afa0bca5b3344ae58d4c8aa4","signature":"aa5f39141886cba9d7daae1e9c977d46083d77c15420878986228bda4006de79","impliedFormat":99},{"version":"56979ba6884d733c90669cfce8bdee3ff8f09c1564f58a62d77731e43026b8a2","signature":"b75d705c2d343ee586ee18d17a4874e9bbf915801216688ed78d0c963506dbcd","impliedFormat":99},{"version":"2514da9ea1e81a9bcee53811946ecd7e2b15f14a9968b8664bbe30a420ce33fe","signature":"e76f6f0f495caf05601051c8b06e4f3746ab5430abf46c0b193b5a1d26d0c2c2","impliedFormat":99},{"version":"abd742ef417658561effe06887c5badd8061e00cf7a09aedbabb09059675e48d","signature":"48b37b38211348a4fe509a7a7720291857a231d996511118a8941590a292b342","impliedFormat":99},{"version":"222a4d46a491c3e8fee167f6161fc6d85bd52137a1d74caf89a81ad8665bb0ed","signature":"05ed68da1a007decccbdcf3310967f6820ae0cfadd3c23569cadd1f93533bb85","impliedFormat":99},{"version":"81476041cc87a24660916fefb968531d2c2e2622778a24b41956140a8d7c4bff","signature":"b1da5247d537079eb8a57167793abc6a09174acaee52a8b5c37a4ce1bb9d8eaa","impliedFormat":99},{"version":"91a41f601ed8025b2266906205d4412b6e24f20d19e679ea975360700c9bd957","signature":"78b733933335a75fb81942720abbc093d92d788f90d0df1041adc1cb22c337d7","impliedFormat":99},{"version":"67591b8cd7ab2b7c8237b3a5faf7dbe49479345b331ad59b2525b564a7217669","signature":"7f7fc19ad29d1b3cdec737d8d5f2884ba150af217c19cfeeb86551cd3b31f1db","impliedFormat":99},{"version":"9375ae79337995d40e36b31d2f03ca47b6ca340763a43536ee132dd852e06b35","signature":"125f07fcfe04a49a2aa0adf1830fdf34d7e8d64ec2cd4fac290f6d13e569dc64","impliedFormat":99},{"version":"8f87d869658d0acd60689e5aa0d9ab92c1dcab4ffc3884bf58d29692958fefb3","signature":"76e8a5914691251aeddaffa80e1cd1dc4f80009e3df27564c8284616360871b8","impliedFormat":99},{"version":"0cb2f50f2f264382c58b5c223afafd299433c0b6c165eecbca81b59e69a7cc55","signature":"29f8c38efdb8cbfeb813bb2d21e6e85f66b649c7078396717a3f076ccaff9cda","impliedFormat":99},{"version":"d6b56881265824c739deab743d2b8b961d42ee641b7348df440c1f6c372aceb6","signature":"1c3e3d024d45e4fc77ff94c23bef52f48b0007a3b4c244dddf74b50c866d4722","impliedFormat":99},{"version":"fe42a2af035a863631164347ffa29b5612168cfe80604317287f32350157f7d2","signature":"12511fdb2c101c48e50c04097c501c96317c0bbd32dc262da610c0925f4481d7","impliedFormat":99}],"root":[[377,386],[388,453],[455,463],[667,684]],"options":{"allowJs":false,"checkJs":false,"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"emitDecoratorMetadata":true,"esModuleInterop":false,"exactOptionalPropertyTypes":false,"experimentalDecorators":true,"module":199,"noEmitOnError":false,"noErrorTruncation":false,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":false,"noImplicitThis":true,"noUncheckedIndexedAccess":false,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./dist","removeComments":false,"rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":9},"referencedMap":[[454,1],[648,2],[654,3],[656,4],[653,5],[663,6],[468,7],[480,8],[481,9],[628,10],[634,11],[644,12],[645,13],[647,14],[649,15],[650,16],[652,17],[655,18],[657,19],[658,20],[659,21],[660,22],[662,23],[465,24],[466,25],[482,26],[464,27],[629,28],[467,29],[483,30],[642,31],[485,32],[491,33],[490,34],[487,35],[489,36],[488,37],[486,1],[641,38],[633,39],[643,40],[635,41],[640,42],[630,43],[632,44],[646,45],[638,46],[469,47],[651,48],[639,49],[631,50],[470,51],[484,52],[479,53],[478,54],[661,55],[473,56],[471,57],[472,58],[477,59],[474,60],[476,61],[475,62],[387,1],[207,1],[665,63],[666,64],[539,65],[540,65],[541,66],[500,67],[542,68],[543,69],[544,70],[495,1],[498,71],[496,1],[497,1],[545,72],[546,73],[547,74],[548,75],[549,76],[550,77],[551,77],[553,1],[552,78],[554,79],[555,80],[556,81],[538,82],[499,1],[557,83],[558,84],[559,85],[591,86],[560,87],[561,88],[562,89],[563,90],[564,91],[565,92],[566,93],[567,94],[568,95],[569,96],[570,96],[571,97],[572,1],[573,98],[575,99],[574,100],[576,101],[577,102],[578,103],[579,104],[580,105],[581,106],[582,107],[583,108],[584,109],[585,110],[586,111],[587,112],[588,113],[589,114],[590,115],[664,116],[492,1],[312,117],[305,118],[307,119],[313,120],[314,121],[227,122],[243,123],[287,124],[286,125],[209,1],[219,126],[226,127],[233,128],[228,129],[235,130],[234,1],[247,131],[220,132],[260,133],[315,134],[259,135],[250,136],[224,137],[236,138],[225,139],[300,140],[316,141],[303,142],[317,143],[211,144],[208,145],[267,146],[239,147],[223,148],[206,58],[255,149],[318,150],[222,151],[319,150],[257,152],[301,153],[288,154],[320,155],[251,156],[62,145],[321,1],[271,157],[210,1],[229,158],[221,159],[61,160],[376,161],[302,162],[322,163],[323,164],[324,165],[281,166],[326,167],[237,168],[241,169],[230,170],[238,1],[327,171],[289,172],[328,173],[273,174],[329,175],[282,1],[297,176],[290,177],[295,178],[293,179],[292,180],[242,177],[294,181],[330,182],[296,183],[291,184],[331,185],[332,1],[333,186],[334,187],[335,187],[268,188],[252,187],[212,1],[336,120],[218,189],[213,145],[306,147],[309,190],[214,160],[337,191],[215,192],[310,164],[338,1],[272,193],[269,194],[248,195],[339,196],[325,197],[340,198],[261,199],[304,200],[231,201],[341,202],[262,203],[342,1],[343,204],[244,205],[299,206],[298,207],[344,208],[258,209],[246,210],[245,211],[266,212],[265,213],[263,214],[264,215],[256,216],[311,217],[308,218],[240,219],[345,220],[346,221],[232,222],[283,223],[274,224],[347,225],[253,226],[277,227],[280,228],[348,229],[275,230],[276,1],[349,231],[350,232],[351,233],[353,234],[254,235],[354,236],[352,237],[270,238],[355,239],[356,240],[365,241],[366,242],[367,243],[369,244],[370,245],[373,246],[368,247],[372,248],[371,249],[357,250],[358,251],[279,252],[278,253],[249,254],[359,255],[360,256],[361,257],[374,258],[362,256],[363,259],[364,260],[375,261],[60,1],[216,1],[284,160],[285,262],[217,192],[99,263],[187,264],[101,1],[145,265],[85,1],[143,266],[180,1],[141,264],[148,267],[102,268],[109,263],[156,269],[110,263],[157,269],[103,263],[198,270],[104,263],[105,263],[199,270],[106,263],[107,263],[111,263],[112,263],[120,263],[179,271],[125,263],[126,263],[116,263],[117,263],[118,263],[119,263],[121,268],[128,272],[123,263],[122,272],[108,263],[124,263],[195,273],[196,274],[113,263],[158,269],[127,263],[100,275],[114,263],[159,269],[155,276],[189,270],[190,270],[188,270],[129,263],[133,263],[134,263],[135,263],[146,277],[150,277],[136,263],[203,263],[137,272],[138,263],[130,263],[131,263],[139,263],[140,263],[132,263],[202,263],[201,263],[144,267],[151,268],[152,268],[153,263],[181,278],[164,263],[197,268],[142,269],[160,269],[200,272],[161,269],[163,263],[165,263],[193,270],[194,270],[191,270],[192,270],[166,263],[115,263],[147,277],[149,277],[162,269],[154,268],[167,263],[168,263],[169,272],[170,272],[171,272],[172,272],[173,272],[174,279],[82,280],[81,1],[176,281],[177,281],[175,1],[178,264],[182,282],[63,1],[83,1],[94,283],[93,284],[84,285],[96,286],[95,284],[92,287],[91,288],[86,1],[87,1],[88,1],[89,289],[90,290],[97,291],[98,292],[186,293],[183,1],[204,294],[205,295],[79,296],[80,1],[184,1],[185,1],[636,1],[637,297],[69,298],[70,1],[71,299],[72,300],[73,300],[74,301],[75,298],[76,298],[65,298],[66,298],[64,1],[68,298],[67,298],[77,302],[78,303],[58,1],[59,1],[10,1],[11,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[22,1],[23,1],[4,1],[24,1],[28,1],[25,1],[26,1],[27,1],[29,1],[30,1],[31,1],[5,1],[32,1],[33,1],[34,1],[35,1],[6,1],[39,1],[36,1],[37,1],[38,1],[40,1],[7,1],[41,1],[46,1],[47,1],[42,1],[43,1],[44,1],[45,1],[8,1],[51,1],[48,1],[49,1],[50,1],[52,1],[9,1],[53,1],[54,1],[55,1],[57,1],[56,1],[1,1],[516,304],[526,305],[515,304],[536,306],[507,307],[506,308],[535,309],[529,310],[534,311],[509,312],[523,313],[508,314],[532,315],[504,316],[503,309],[533,317],[505,318],[510,319],[511,1],[514,319],[501,1],[537,320],[527,321],[518,322],[519,323],[521,324],[517,325],[520,326],[530,309],[512,327],[513,328],[522,329],[502,330],[525,321],[524,319],[528,1],[531,331],[627,332],[605,333],[615,334],[604,333],[625,335],[596,336],[595,308],[624,309],[618,337],[623,338],[598,339],[612,340],[597,341],[621,342],[593,343],[592,309],[622,344],[594,345],[599,346],[600,1],[603,346],[493,1],[626,347],[616,348],[607,349],[608,350],[610,351],[606,352],[609,353],[619,309],[601,354],[602,355],[611,356],[494,330],[614,357],[613,346],[617,1],[620,358],[396,359],[397,360],[398,361],[403,362],[404,363],[405,363],[386,364],[388,365],[406,361],[446,366],[407,363],[408,363],[447,361],[389,367],[378,368],[448,369],[390,369],[399,370],[449,369],[420,369],[379,369],[409,369],[416,369],[380,370],[427,371],[462,372],[377,361],[423,361],[450,369],[451,373],[452,374],[384,375],[436,376],[455,377],[437,378],[668,379],[667,1],[456,380],[424,375],[453,374],[410,381],[391,382],[425,383],[457,361],[381,370],[422,384],[419,385],[672,386],[458,387],[459,388],[421,389],[411,363],[382,390],[430,391],[439,392],[460,393],[461,361],[673,394],[392,361],[463,395],[385,361],[428,361],[412,361],[413,396],[669,361],[393,397],[394,398],[429,390],[426,390],[674,399],[680,400],[675,383],[431,401],[432,361],[414,376],[678,402],[395,382],[670,361],[433,403],[383,390],[438,404],[676,405],[677,406],[681,407],[400,370],[401,408],[683,409],[444,410],[434,363],[445,383],[435,411],[684,361],[441,412],[682,413],[679,376],[402,380],[440,414],[415,363],[442,361],[417,415],[671,363],[418,363],[443,416]],"latestChangedDtsFile":"./dist/TSchema.d.ts","version":"5.8.3"} \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 00000000..d3fab15e --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,11244 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + devDependencies: + '@babel/cli': + specifier: ^7.28.0 + version: 7.28.0(@babel/core@7.28.0) + '@babel/core': + specifier: ^7.28.0 + version: 7.28.0 + '@changesets/changelog-github': + specifier: ^0.5.0 + version: 0.5.1 + '@changesets/cli': + specifier: ^2.27.0 + version: 2.29.5 + '@effect/docgen': + specifier: ^0.5.2 + version: 0.5.2(tsx@4.20.3)(typescript@5.8.3) + '@effect/eslint-plugin': + specifier: ^0.3.0 + version: 0.3.2 + '@effect/vitest': + specifier: ^0.25.0 + version: 0.25.0(effect@3.17.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.9)) + '@eslint/compat': + specifier: ^1.2.0 + version: 1.3.1(eslint@9.32.0) + '@eslint/eslintrc': + specifier: ^3.2.0 + version: 3.3.1 + '@eslint/js': + specifier: ^9.26.0 + version: 9.32.0 + '@turbo/gen': + specifier: ^2.0.0 + version: 2.5.5(@types/node@20.19.9)(typescript@5.8.3) + '@types/node': + specifier: ^20.0.0 + version: 20.19.9 + '@typescript-eslint/eslint-plugin': + specifier: ^8.32.0 + version: 8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0)(typescript@5.8.3))(eslint@9.32.0)(typescript@5.8.3) + '@typescript-eslint/parser': + specifier: ^8.32.0 + version: 8.38.0(eslint@9.32.0)(typescript@5.8.3) + '@vitest/coverage-v8': + specifier: ^3.2.4 + version: 3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.9)) + babel-plugin-annotate-pure-calls: + specifier: ^0.5.0 + version: 0.5.0(@babel/core@7.28.0) + eslint: + specifier: ^9.26.0 + version: 9.32.0 + eslint-import-resolver-typescript: + specifier: ^4.3.0 + version: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.32.0) + eslint-plugin-import: + specifier: ^2.31.0 + version: 2.32.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0)(typescript@5.8.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.32.0) + eslint-plugin-simple-import-sort: + specifier: ^12.1.0 + version: 12.1.1(eslint@9.32.0) + eslint-plugin-sort-destructure-keys: + specifier: ^2.0.0 + version: 2.0.0(eslint@9.32.0) + madge: + specifier: ^8.0.0 + version: 8.0.0(typescript@5.8.3) + prettier: + specifier: ^3.5.0 + version: 3.6.2 + rimraf: + specifier: ^6.0.0 + version: 6.0.1 + turbo: + specifier: ^2.0.0 + version: 2.5.5 + typescript: + specifier: ^5.8.0 + version: 5.8.3 + vitest: + specifier: ^3.2.4 + version: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.9) + + docs: + dependencies: + next: + specifier: ^14.0.0 + version: 14.2.30(@babel/core@7.28.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + nextra: + specifier: ^2.13.0 + version: 2.13.4(next@14.2.30(@babel/core@7.28.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + nextra-theme-docs: + specifier: ^2.13.0 + version: 2.13.4(next@14.2.30(@babel/core@7.28.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nextra@2.13.4(next@14.2.30(@babel/core@7.28.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: + specifier: ^18.2.0 + version: 18.3.1 + react-dom: + specifier: ^18.2.0 + version: 18.3.1(react@18.3.1) + devDependencies: + '@types/node': + specifier: ^20.0.0 + version: 20.19.9 + '@types/react': + specifier: ^18.2.0 + version: 18.3.23 + '@types/react-dom': + specifier: ^18.2.0 + version: 18.3.7(@types/react@18.3.23) + typescript: + specifier: ^5.0.0 + version: 5.8.3 + + packages/evolution: + dependencies: + '@effect/platform': + specifier: ^0.90.0 + version: 0.90.0(effect@3.17.3) + '@effect/platform-node': + specifier: ^0.94.0 + version: 0.94.0(@effect/cluster@0.46.2(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/sql@0.44.0(@effect/experimental@0.54.2(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/workflow@0.8.1(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/sql@0.44.0(@effect/experimental@0.54.2(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(effect@3.17.3) + '@scure/base': + specifier: ^1.1.0 + version: 1.2.6 + dockerode: + specifier: ^4.0.0 + version: 4.0.7 + effect: + specifier: ^3.17.3 + version: 3.17.3 + devDependencies: + '@types/dockerode': + specifier: ^3.3.0 + version: 3.3.42 + tsx: + specifier: ^4.20.3 + version: 4.20.3 + typescript: + specifier: ^5.4.0 + version: 5.8.3 + +packages: + + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} + engines: {node: '>=6.0.0'} + + '@babel/cli@7.28.0': + resolution: {integrity: sha512-CYrZG7FagtE8ReKDBfItxnrEBf2khq2eTMnPuqO8UVN0wzhp1eMX1wfda8b1a32l2aqYLwRRIOGNovm8FVzmMw==} + engines: {node: '>=6.9.0'} + hasBin: true + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/code-frame@7.27.1': + resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} + engines: {node: '>=6.9.0'} + + '@babel/compat-data@7.28.0': + resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==} + engines: {node: '>=6.9.0'} + + '@babel/core@7.28.0': + resolution: {integrity: sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==} + engines: {node: '>=6.9.0'} + + '@babel/generator@7.28.0': + resolution: {integrity: sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-compilation-targets@7.27.2': + resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-globals@7.28.0': + resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.27.1': + resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-transforms@7.27.3': + resolution: {integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.27.1': + resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-option@7.27.1': + resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} + engines: {node: '>=6.9.0'} + + '@babel/helpers@7.28.2': + resolution: {integrity: sha512-/V9771t+EgXz62aCcyofnQhGM8DQACbRhvzKFsXKC9QM+5MadF8ZmIm0crDMaz3+o0h0zXfJnd4EhbYbxsrcFw==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.28.0': + resolution: {integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/runtime-corejs3@7.28.2': + resolution: {integrity: sha512-FVFaVs2/dZgD3Y9ZD+AKNKjyGKzwu0C54laAXWUXgLcVXcCX6YZ6GhK2cp7FogSN2OA0Fu+QT8dP3FUdo9ShSQ==} + engines: {node: '>=6.9.0'} + + '@babel/runtime@7.28.2': + resolution: {integrity: sha512-KHp2IflsnGywDjBWDkR9iEqiWSpc8GIi0lgTT3mOElT0PP1tG26P4tmFI2YvAdzgq9RGyoHZQEIEdZy6Ec5xCA==} + engines: {node: '>=6.9.0'} + + '@babel/template@7.27.2': + resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.28.0': + resolution: {integrity: sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.28.2': + resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==} + engines: {node: '>=6.9.0'} + + '@balena/dockerignore@1.0.2': + resolution: {integrity: sha512-wMue2Sy4GAVTk6Ic4tJVcnfdau+gx2EnG7S+uAEe+TWJFqE4YoWN4/H8MSLj4eYJKxGg26lZwboEniNiNwZQ6Q==} + + '@bcoe/v8-coverage@1.0.2': + resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==} + engines: {node: '>=18'} + + '@braintree/sanitize-url@6.0.4': + resolution: {integrity: sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==} + + '@changesets/apply-release-plan@7.0.12': + resolution: {integrity: sha512-EaET7As5CeuhTzvXTQCRZeBUcisoYPDDcXvgTE/2jmmypKp0RC7LxKj/yzqeh/1qFTZI7oDGFcL1PHRuQuketQ==} + + '@changesets/assemble-release-plan@6.0.9': + resolution: {integrity: sha512-tPgeeqCHIwNo8sypKlS3gOPmsS3wP0zHt67JDuL20P4QcXiw/O4Hl7oXiuLnP9yg+rXLQ2sScdV1Kkzde61iSQ==} + + '@changesets/changelog-git@0.2.1': + resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==} + + '@changesets/changelog-github@0.5.1': + resolution: {integrity: sha512-BVuHtF+hrhUScSoHnJwTELB4/INQxVFc+P/Qdt20BLiBFIHFJDDUaGsZw+8fQeJTRP5hJZrzpt3oZWh0G19rAQ==} + + '@changesets/cli@2.29.5': + resolution: {integrity: sha512-0j0cPq3fgxt2dPdFsg4XvO+6L66RC0pZybT9F4dG5TBrLA3jA/1pNkdTXH9IBBVHkgsKrNKenI3n1mPyPlIydg==} + hasBin: true + + '@changesets/config@3.1.1': + resolution: {integrity: sha512-bd+3Ap2TKXxljCggI0mKPfzCQKeV/TU4yO2h2C6vAihIo8tzseAn2e7klSuiyYYXvgu53zMN1OeYMIQkaQoWnA==} + + '@changesets/errors@0.2.0': + resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} + + '@changesets/get-dependents-graph@2.1.3': + resolution: {integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==} + + '@changesets/get-github-info@0.6.0': + resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==} + + '@changesets/get-release-plan@4.0.13': + resolution: {integrity: sha512-DWG1pus72FcNeXkM12tx+xtExyH/c9I1z+2aXlObH3i9YA7+WZEVaiHzHl03thpvAgWTRaH64MpfHxozfF7Dvg==} + + '@changesets/get-version-range-type@0.4.0': + resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} + + '@changesets/git@3.0.4': + resolution: {integrity: sha512-BXANzRFkX+XcC1q/d27NKvlJ1yf7PSAgi8JG6dt8EfbHFHi4neau7mufcSca5zRhwOL8j9s6EqsxmT+s+/E6Sw==} + + '@changesets/logger@0.1.1': + resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==} + + '@changesets/parse@0.4.1': + resolution: {integrity: sha512-iwksMs5Bf/wUItfcg+OXrEpravm5rEd9Bf4oyIPL4kVTmJQ7PNDSd6MDYkpSJR1pn7tz/k8Zf2DhTCqX08Ou+Q==} + + '@changesets/pre@2.0.2': + resolution: {integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==} + + '@changesets/read@0.6.5': + resolution: {integrity: sha512-UPzNGhsSjHD3Veb0xO/MwvasGe8eMyNrR/sT9gR8Q3DhOQZirgKhhXv/8hVsI0QpPjR004Z9iFxoJU6in3uGMg==} + + '@changesets/should-skip-package@0.1.2': + resolution: {integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==} + + '@changesets/types@4.1.0': + resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} + + '@changesets/types@6.1.0': + resolution: {integrity: sha512-rKQcJ+o1nKNgeoYRHKOS07tAMNd3YSN0uHaJOZYjBAgxfV7TUE7JE+z4BzZdQwb5hKaYbayKN5KrYV7ODb2rAA==} + + '@changesets/write@0.4.0': + resolution: {integrity: sha512-CdTLvIOPiCNuH71pyDu3rA+Q0n65cmAbXnwWH84rKGiFumFzkmHNT8KHTMEchcxN+Kl8I54xGUhJ7l3E7X396Q==} + + '@cspotcode/source-map-support@0.8.1': + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} + + '@dependents/detective-less@5.0.1': + resolution: {integrity: sha512-Y6+WUMsTFWE5jb20IFP4YGa5IrGY/+a/FbOSjDF/wz9gepU2hwCYSXRHP/vPwBvwcY3SVMASt4yXxbXNXigmZQ==} + engines: {node: '>=18'} + + '@dprint/formatter@0.4.1': + resolution: {integrity: sha512-IB/GXdlMOvi0UhQQ9mcY15Fxcrc2JPadmo6tqefCNV0bptFq7YBpggzpqYXldBXDa04CbKJ+rDwO2eNRPE2+/g==} + + '@dprint/typescript@0.91.8': + resolution: {integrity: sha512-tuKn4leCPItox1O4uunHcQF0QllDCvPWklnNQIh2PiWWVtRAGltJJnM4Cwj5AciplosD1Hiz7vAY3ew3crLb3A==} + + '@effect/cluster@0.46.2': + resolution: {integrity: sha512-kkAvDzy1OX0pcucIHOxd8JER8EFGmypRQAjZDdxlyvFrZv5IZSHvCL5owKGzu11NiaAc2R0rAWZNPQN8GhIZQA==} + peerDependencies: + '@effect/platform': ^0.90.0 + '@effect/rpc': ^0.68.0 + '@effect/sql': ^0.44.0 + '@effect/workflow': ^0.8.1 + effect: ^3.17.3 + + '@effect/docgen@0.5.2': + resolution: {integrity: sha512-gqBxAhp58R18vT5+ORobWRQ/2MaF5vH0k1zggSct54J41k8TKF5mYIW1qG5tkOVCejet+8K5MKsWK3gzIkaoMw==} + engines: {node: '>=18.0.0'} + hasBin: true + peerDependencies: + tsx: ^4.1.0 + typescript: ^5.2.2 + + '@effect/eslint-plugin@0.3.2': + resolution: {integrity: sha512-c4Vs9t3r54A4Zpl+wo8+PGzZz3JWYsip41H+UrebRLjQ2Hk/ap63IeCgN/HWcYtxtyhRopjp7gW9nOQ2Snbl+g==} + + '@effect/experimental@0.54.2': + resolution: {integrity: sha512-edHopTBPXQdgyuR4ytRmyoPq7Ubt6CS4TymiXpyd6lu3kxlK7K78/eTMju9hRfJbiSDFVy8S5C2dW8CH9i66Rg==} + peerDependencies: + '@effect/platform': ^0.90.0 + effect: ^3.17.3 + ioredis: ^5 + lmdb: ^3 + peerDependenciesMeta: + ioredis: + optional: true + lmdb: + optional: true + + '@effect/markdown-toc@0.1.0': + resolution: {integrity: sha512-IRfvvwqQLabVTIw9hhIj4scOGIYPfa13QuEFv+dBWE6p47R+RR0J8jQvfDINFf0Vn80XXVjNRtZxkZpkKXLx2A==} + engines: {node: '>=0.10.0'} + hasBin: true + + '@effect/platform-node-shared@0.47.0': + resolution: {integrity: sha512-ITsvT1Upphnf5Iq6gkUef4oy/ivoJkl8grtIuVkNE38I3EC57A/00anDXlwSgUd7i4pRT+KX5ypcc1/TsehCeg==} + peerDependencies: + '@effect/cluster': ^0.46.0 + '@effect/platform': ^0.90.0 + '@effect/rpc': ^0.68.0 + '@effect/sql': ^0.44.0 + effect: ^3.17.1 + + '@effect/platform-node@0.94.0': + resolution: {integrity: sha512-nLiv/h2qTrELPo/QOdgf3D41627Zct4ffmU+3MpLgbe8bjqPGEtBh489qNvVwg24+g4EjVbEosCv39cN+w1tQQ==} + peerDependencies: + '@effect/cluster': ^0.46.0 + '@effect/platform': ^0.90.0 + '@effect/rpc': ^0.68.0 + '@effect/sql': ^0.44.0 + effect: ^3.17.1 + + '@effect/platform@0.90.0': + resolution: {integrity: sha512-F26RZO8qVyCLH43EF9BvJwrhtFsZL2Xv66Jxxjj/sBIes8TOVpyebaysQ7Tz33xALobwU1eNgm8vh18VkJiWnQ==} + peerDependencies: + effect: ^3.17.0 + + '@effect/rpc@0.68.0': + resolution: {integrity: sha512-1fFLE5MgSpu+kTy+A2SrPVNTnAIPWlLIlSeslIE9R22EvR1eCkskWxcBDvKNyfqCefXNhSRY5UafG3XpTYumaw==} + peerDependencies: + '@effect/platform': ^0.90.0 + effect: ^3.17.1 + + '@effect/sql@0.44.0': + resolution: {integrity: sha512-HxVEk9ufZZnJ2AuqUlgirjlSDYQ49QDM6o7MkcFQtp4UKrCmDgTshNre11rACOiMZH3ywH6cWViJ1eLwf10D2A==} + peerDependencies: + '@effect/experimental': ^0.54.0 + '@effect/platform': ^0.90.0 + effect: ^3.17.0 + + '@effect/vitest@0.25.0': + resolution: {integrity: sha512-FpOKYdhe3LaOoYn0cm5W9cD9bk2qwr2A+ujMhiDVxN7MMgndFsOd8uxcWjZRX6tWjzU2aKvZXFKGEp93GAmXug==} + peerDependencies: + effect: ^3.17.0 + vitest: ^3.2.0 + + '@effect/workflow@0.8.1': + resolution: {integrity: sha512-kZRChyGlhgaPB19st/F0FZmz9Y6aQSLBbbC/oBiXspB4rdxkP10O1Z7nVsCcASQ10hfxjdoR816kxf9LctSTKQ==} + peerDependencies: + '@effect/platform': ^0.90.0 + '@effect/rpc': ^0.68.0 + effect: ^3.17.1 + + '@emnapi/core@1.4.5': + resolution: {integrity: sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q==} + + '@emnapi/runtime@1.4.5': + resolution: {integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==} + + '@emnapi/wasi-threads@1.0.4': + resolution: {integrity: sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g==} + + '@esbuild/aix-ppc64@0.21.5': + resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] + + '@esbuild/aix-ppc64@0.25.8': + resolution: {integrity: sha512-urAvrUedIqEiFR3FYSLTWQgLu5tb+m0qZw0NBEasUeo6wuqatkMDaRT+1uABiGXEu5vqgPd7FGE1BhsAIy9QVA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.21.5': + resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm64@0.25.8': + resolution: {integrity: sha512-OD3p7LYzWpLhZEyATcTSJ67qB5D+20vbtr6vHlHWSQYhKtzUYrETuWThmzFpZtFsBIxRvhO07+UgVA9m0i/O1w==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.21.5': + resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + + '@esbuild/android-arm@0.25.8': + resolution: {integrity: sha512-RONsAvGCz5oWyePVnLdZY/HHwA++nxYWIX1atInlaW6SEkwq6XkP3+cb825EUcRs5Vss/lGh/2YxAb5xqc07Uw==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.21.5': + resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + '@esbuild/android-x64@0.25.8': + resolution: {integrity: sha512-yJAVPklM5+4+9dTeKwHOaA+LQkmrKFX96BM0A/2zQrbS6ENCmxc4OVoBs5dPkCCak2roAD+jKCdnmOqKszPkjA==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.21.5': + resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-arm64@0.25.8': + resolution: {integrity: sha512-Jw0mxgIaYX6R8ODrdkLLPwBqHTtYHJSmzzd+QeytSugzQ0Vg4c5rDky5VgkoowbZQahCbsv1rT1KW72MPIkevw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.21.5': + resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + '@esbuild/darwin-x64@0.25.8': + resolution: {integrity: sha512-Vh2gLxxHnuoQ+GjPNvDSDRpoBCUzY4Pu0kBqMBDlK4fuWbKgGtmDIeEC081xi26PPjn+1tct+Bh8FjyLlw1Zlg==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.21.5': + resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-arm64@0.25.8': + resolution: {integrity: sha512-YPJ7hDQ9DnNe5vxOm6jaie9QsTwcKedPvizTVlqWG9GBSq+BuyWEDazlGaDTC5NGU4QJd666V0yqCBL2oWKPfA==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.21.5': + resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.25.8': + resolution: {integrity: sha512-MmaEXxQRdXNFsRN/KcIimLnSJrk2r5H8v+WVafRWz5xdSVmWLoITZQXcgehI2ZE6gioE6HirAEToM/RvFBeuhw==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.21.5': + resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm64@0.25.8': + resolution: {integrity: sha512-WIgg00ARWv/uYLU7lsuDK00d/hHSfES5BzdWAdAig1ioV5kaFNrtK8EqGcUBJhYqotlUByUKz5Qo6u8tt7iD/w==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.21.5': + resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-arm@0.25.8': + resolution: {integrity: sha512-FuzEP9BixzZohl1kLf76KEVOsxtIBFwCaLupVuk4eFVnOZfU+Wsn+x5Ryam7nILV2pkq2TqQM9EZPsOBuMC+kg==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.21.5': + resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-ia32@0.25.8': + resolution: {integrity: sha512-A1D9YzRX1i+1AJZuFFUMP1E9fMaYY+GnSQil9Tlw05utlE86EKTUA7RjwHDkEitmLYiFsRd9HwKBPEftNdBfjg==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.21.5': + resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-loong64@0.25.8': + resolution: {integrity: sha512-O7k1J/dwHkY1RMVvglFHl1HzutGEFFZ3kNiDMSOyUrB7WcoHGf96Sh+64nTRT26l3GMbCW01Ekh/ThKM5iI7hQ==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.21.5': + resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-mips64el@0.25.8': + resolution: {integrity: sha512-uv+dqfRazte3BzfMp8PAQXmdGHQt2oC/y2ovwpTteqrMx2lwaksiFZ/bdkXJC19ttTvNXBuWH53zy/aTj1FgGw==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.21.5': + resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-ppc64@0.25.8': + resolution: {integrity: sha512-GyG0KcMi1GBavP5JgAkkstMGyMholMDybAf8wF5A70CALlDM2p/f7YFE7H92eDeH/VBtFJA5MT4nRPDGg4JuzQ==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.21.5': + resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-riscv64@0.25.8': + resolution: {integrity: sha512-rAqDYFv3yzMrq7GIcen3XP7TUEG/4LK86LUPMIz6RT8A6pRIDn0sDcvjudVZBiiTcZCY9y2SgYX2lgK3AF+1eg==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.21.5': + resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-s390x@0.25.8': + resolution: {integrity: sha512-Xutvh6VjlbcHpsIIbwY8GVRbwoviWT19tFhgdA7DlenLGC/mbc3lBoVb7jxj9Z+eyGqvcnSyIltYUrkKzWqSvg==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.21.5': + resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/linux-x64@0.25.8': + resolution: {integrity: sha512-ASFQhgY4ElXh3nDcOMTkQero4b1lgubskNlhIfJrsH5OKZXDpUAKBlNS0Kx81jwOBp+HCeZqmoJuihTv57/jvQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.25.8': + resolution: {integrity: sha512-d1KfruIeohqAi6SA+gENMuObDbEjn22olAR7egqnkCD9DGBG0wsEARotkLgXDu6c4ncgWTZJtN5vcgxzWRMzcw==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.21.5': + resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.25.8': + resolution: {integrity: sha512-nVDCkrvx2ua+XQNyfrujIG38+YGyuy2Ru9kKVNyh5jAys6n+l44tTtToqHjino2My8VAY6Lw9H7RI73XFi66Cg==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.25.8': + resolution: {integrity: sha512-j8HgrDuSJFAujkivSMSfPQSAa5Fxbvk4rgNAS5i3K+r8s1X0p1uOO2Hl2xNsGFppOeHOLAVgYwDVlmxhq5h+SQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.21.5': + resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.25.8': + resolution: {integrity: sha512-1h8MUAwa0VhNCDp6Af0HToI2TJFAn1uqT9Al6DJVzdIBAd21m/G0Yfc77KDM3uF3T/YaOgQq3qTJHPbTOInaIQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openharmony-arm64@0.25.8': + resolution: {integrity: sha512-r2nVa5SIK9tSWd0kJd9HCffnDHKchTGikb//9c7HX+r+wHYCpQrSgxhlY6KWV1nFo1l4KFbsMlHk+L6fekLsUg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.21.5': + resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/sunos-x64@0.25.8': + resolution: {integrity: sha512-zUlaP2S12YhQ2UzUfcCuMDHQFJyKABkAjvO5YSndMiIkMimPmxA+BYSBikWgsRpvyxuRnow4nS5NPnf9fpv41w==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.21.5': + resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-arm64@0.25.8': + resolution: {integrity: sha512-YEGFFWESlPva8hGL+zvj2z/SaK+pH0SwOM0Nc/d+rVnW7GSTFlLBGzZkuSU9kFIGIo8q9X3ucpZhu8PDN5A2sQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.21.5': + resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-ia32@0.25.8': + resolution: {integrity: sha512-hiGgGC6KZ5LZz58OL/+qVVoZiuZlUYlYHNAmczOm7bs2oE1XriPFi5ZHHrS8ACpV5EjySrnoCKmcbQMN+ojnHg==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.21.5': + resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + + '@esbuild/win32-x64@0.25.8': + resolution: {integrity: sha512-cn3Yr7+OaaZq1c+2pe+8yxC8E144SReCQjN6/2ynubzYjvyqZjTXfQJpAcQpsdJq3My7XADANiYGHoFC69pLQw==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@eslint-community/eslint-utils@4.7.0': + resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + + '@eslint-community/regexpp@4.12.1': + resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/compat@1.3.1': + resolution: {integrity: sha512-k8MHony59I5EPic6EQTCNOuPoVBnoYXkP+20xvwFjN7t0qI3ImyvyBgg+hIVPwC8JaxVjjUZld+cLfBLFDLucg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.40 || 9 + peerDependenciesMeta: + eslint: + optional: true + + '@eslint/config-array@0.21.0': + resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/config-helpers@0.3.0': + resolution: {integrity: sha512-ViuymvFmcJi04qdZeDc2whTHryouGcDlaxPqarTD0ZE10ISpxGUVZGZDx4w01upyIynL3iu6IXH2bS1NhclQMw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.15.1': + resolution: {integrity: sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/eslintrc@3.3.1': + resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/js@9.32.0': + resolution: {integrity: sha512-BBpRFZK3eX6uMLKz8WxFOBIFFcGFJ/g8XuwjTHCqHROSIsopI+ddn/d5Cfh36+7+e5edVS8dbSHnBNhrLEX0zg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/object-schema@2.1.6': + resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/plugin-kit@0.3.4': + resolution: {integrity: sha512-Ul5l+lHEcw3L5+k8POx6r74mxEYKG5kOb6Xpy2gCRW6zweT6TEhAf8vhxGgjhqrd/VO/Dirhsb+1hNpD1ue9hw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@grpc/grpc-js@1.13.4': + resolution: {integrity: sha512-GsFaMXCkMqkKIvwCQjCrwH+GHbPKBjhwo/8ZuUkWHqbI73Kky9I+pQltrlT0+MWpedCoosda53lgjYfyEPgxBg==} + engines: {node: '>=12.10.0'} + + '@grpc/proto-loader@0.7.15': + resolution: {integrity: sha512-tMXdRCfYVixjuFK+Hk0Q1s38gV9zDiDJfWL3h1rv4Qc39oILCu1TRTDt7+fGUI8K4G1Fj125Hx/ru3azECWTyQ==} + engines: {node: '>=6'} + hasBin: true + + '@headlessui/react@1.7.19': + resolution: {integrity: sha512-Ll+8q3OlMJfJbAKM/+/Y2q6PPYbryqNTXDbryx7SXLIDamkF6iQFbriYHga0dY44PvDhvvBWCx1Xj4U5+G4hOw==} + engines: {node: '>=10'} + peerDependencies: + react: ^16 || ^17 || ^18 + react-dom: ^16 || ^17 || ^18 + + '@humanfs/core@0.19.1': + resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} + engines: {node: '>=18.18.0'} + + '@humanfs/node@0.16.6': + resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} + engines: {node: '>=18.18.0'} + + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/retry@0.3.1': + resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} + engines: {node: '>=18.18'} + + '@humanwhocodes/retry@0.4.3': + resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} + engines: {node: '>=18.18'} + + '@isaacs/balanced-match@4.0.1': + resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==} + engines: {node: 20 || >=22} + + '@isaacs/brace-expansion@5.0.0': + resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==} + engines: {node: 20 || >=22} + + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + + '@istanbuljs/schema@0.1.3': + resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + engines: {node: '>=8'} + + '@jridgewell/gen-mapping@0.3.12': + resolution: {integrity: sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/sourcemap-codec@1.5.4': + resolution: {integrity: sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==} + + '@jridgewell/trace-mapping@0.3.29': + resolution: {integrity: sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==} + + '@jridgewell/trace-mapping@0.3.9': + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + + '@js-sdsl/ordered-map@4.4.2': + resolution: {integrity: sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==} + + '@manypkg/find-root@1.1.0': + resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} + + '@manypkg/get-packages@1.1.3': + resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} + + '@mdx-js/mdx@2.3.0': + resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==} + + '@mdx-js/react@2.3.0': + resolution: {integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==} + peerDependencies: + react: '>=16' + + '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3': + resolution: {integrity: sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==} + cpu: [arm64] + os: [darwin] + + '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3': + resolution: {integrity: sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==} + cpu: [x64] + os: [darwin] + + '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3': + resolution: {integrity: sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==} + cpu: [arm64] + os: [linux] + + '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3': + resolution: {integrity: sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==} + cpu: [arm] + os: [linux] + + '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3': + resolution: {integrity: sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==} + cpu: [x64] + os: [linux] + + '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3': + resolution: {integrity: sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==} + cpu: [x64] + os: [win32] + + '@napi-rs/simple-git-android-arm-eabi@0.1.21': + resolution: {integrity: sha512-NSZTD3c+RzSR3cg0acPFqUfV64+Vqye4Veda5L9fbbnsYRzziYHbL3alMI/6p5Ur44ezw5RqKRZ4Tbp1T08veA==} + engines: {node: '>= 10'} + cpu: [arm] + os: [android] + + '@napi-rs/simple-git-android-arm64@0.1.21': + resolution: {integrity: sha512-FR8J/pmy4nFyzWon0RuhReucociF8kiCTBRBQV+TN+7tmI2lsHp+8sDNh1HXf+UP0iOC8azMTKwcHiyhv7oPPw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [android] + + '@napi-rs/simple-git-darwin-arm64@0.1.21': + resolution: {integrity: sha512-FoUck6Sv1VJZyEZ7CcAKPDystkwnv4osJs3XCXCtx6AdT/8oDyfjMHxe3CSBMcNVjawsd+tG7yFvhgKJCdjBvA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@napi-rs/simple-git-darwin-x64@0.1.21': + resolution: {integrity: sha512-PlqZgFhcwJmdj4j/LSLxddrAZU5KbDtq54UMp35++IFs+XkK0SnJlfB9oQTE+m6ieQPYQVz6S9cLeyw5X12L+w==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@napi-rs/simple-git-freebsd-x64@0.1.21': + resolution: {integrity: sha512-n3S74zw0WIuCdsXV6hdU3vpakYNZyeTU3VlQdV/m5f3TxxqeEGcxJi18s2QfQOelE/N0Ze+u23USd7b06NQlCg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [freebsd] + + '@napi-rs/simple-git-linux-arm-gnueabihf@0.1.21': + resolution: {integrity: sha512-gsLnZD8OMttCjB2OYofDdsI9SpidMfJP6H8fjPXcon2q90JT/XUS7xIYXDEABiwRvz1BZ149HqmnjO8yPgNMIQ==} + engines: {node: '>= 10'} + cpu: [arm] + os: [linux] + + '@napi-rs/simple-git-linux-arm64-gnu@0.1.21': + resolution: {integrity: sha512-05hSW4K5RexXo6YICmKzBThkY4WXJ25MAkSON720kIVv8ZPLi0ZouijJuM7GWmEZPcgCm6/mvrGrEDrS6i0/Mg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@napi-rs/simple-git-linux-arm64-musl@0.1.21': + resolution: {integrity: sha512-z2dyQmwtbpgAuUmWeJBhz00/6C3//SV0YSYE9Smfaf2DiSEEAvWyoni67pQU5/Q9FFaiyvzrCoz966EVNmz6Bg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@napi-rs/simple-git-linux-ppc64-gnu@0.1.21': + resolution: {integrity: sha512-mEkVx9oQxKTdzTdjDTCc9XAaH9E9eI2F+KsY0R6DTYafgb/rwq0FJO+eCa8Llzz6ndgbLrzq4q+wHqR8z7dF3w==} + engines: {node: '>= 10'} + cpu: [ppc64] + os: [linux] + + '@napi-rs/simple-git-linux-s390x-gnu@0.1.21': + resolution: {integrity: sha512-FulRem5vdsvH0VER2Q9cynv01SugMk/jQwbytwyPziF6JZ81D6I8otP9NkS3dqv//6HCokyojH+oOnrsF82/VQ==} + engines: {node: '>= 10'} + cpu: [s390x] + os: [linux] + + '@napi-rs/simple-git-linux-x64-gnu@0.1.21': + resolution: {integrity: sha512-SY6HuLVH+IFlkz8aTf4hwtaXalqBIPyE7FvEMCQIVPf85slOHMs9RThmrL7fvuSl0EDuUKOXANUP2OtdgT+zNg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@napi-rs/simple-git-linux-x64-musl@0.1.21': + resolution: {integrity: sha512-bG6zRqlXmVysjUUXNPsApfXP6c+rSjhinmGlLh8XW6Tfj0PqYmbSTL/3XcowbP6yJGTJbbkvxmhQDdGYO99AnQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@napi-rs/simple-git-win32-arm64-msvc@0.1.21': + resolution: {integrity: sha512-bTX+Xb5Fl3AYK2c8E/Pm04i29n9gP+FGNzaT7AQp0q/5Bgq1z/4jEadSmg5hXvoJOlIFN0+HZyau9gWGq7DpCQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@napi-rs/simple-git-win32-ia32-msvc@0.1.21': + resolution: {integrity: sha512-jGdFPAJYgUSrPTGaM9D7devuSXby6FL9NzKffB5AXcL0AeB5HpqxaxOiOikunP5NQil1vEow6YxD4SyDIX57Cg==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + + '@napi-rs/simple-git-win32-x64-msvc@0.1.21': + resolution: {integrity: sha512-OEVKwZ4pEGSk3AxlEaEKba6bCepbV7w+v7BjeNgCscl0Evw8A81nV2ytNqajZAPk49bZZDSDzeNWe44kkaD96Q==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@napi-rs/simple-git@0.1.21': + resolution: {integrity: sha512-49ij3JTYr/eSqvUaAXORgohU7pARH7GpCn/8JrwQo/mIulSY+gc/Xj4FtZ2+RdJrK6dLD6jSGU5vI17Of0qtCw==} + engines: {node: '>= 10'} + + '@napi-rs/wasm-runtime@0.2.12': + resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==} + + '@next/env@14.2.30': + resolution: {integrity: sha512-KBiBKrDY6kxTQWGzKjQB7QirL3PiiOkV7KW98leHFjtVRKtft76Ra5qSA/SL75xT44dp6hOcqiiJ6iievLOYug==} + + '@next/swc-darwin-arm64@14.2.30': + resolution: {integrity: sha512-EAqfOTb3bTGh9+ewpO/jC59uACadRHM6TSA9DdxJB/6gxOpyV+zrbqeXiFTDy9uV6bmipFDkfpAskeaDcO+7/g==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + + '@next/swc-darwin-x64@14.2.30': + resolution: {integrity: sha512-TyO7Wz1IKE2kGv8dwQ0bmPL3s44EKVencOqwIY69myoS3rdpO1NPg5xPM5ymKu7nfX4oYJrpMxv8G9iqLsnL4A==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + + '@next/swc-linux-arm64-gnu@14.2.30': + resolution: {integrity: sha512-I5lg1fgPJ7I5dk6mr3qCH1hJYKJu1FsfKSiTKoYwcuUf53HWTrEkwmMI0t5ojFKeA6Vu+SfT2zVy5NS0QLXV4Q==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@next/swc-linux-arm64-musl@14.2.30': + resolution: {integrity: sha512-8GkNA+sLclQyxgzCDs2/2GSwBc92QLMrmYAmoP2xehe5MUKBLB2cgo34Yu242L1siSkwQkiV4YLdCnjwc/Micw==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + + '@next/swc-linux-x64-gnu@14.2.30': + resolution: {integrity: sha512-8Ly7okjssLuBoe8qaRCcjGtcMsv79hwzn/63wNeIkzJVFVX06h5S737XNr7DZwlsbTBDOyI6qbL2BJB5n6TV/w==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@next/swc-linux-x64-musl@14.2.30': + resolution: {integrity: sha512-dBmV1lLNeX4mR7uI7KNVHsGQU+OgTG5RGFPi3tBJpsKPvOPtg9poyav/BYWrB3GPQL4dW5YGGgalwZ79WukbKQ==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + + '@next/swc-win32-arm64-msvc@14.2.30': + resolution: {integrity: sha512-6MMHi2Qc1Gkq+4YLXAgbYslE1f9zMGBikKMdmQRHXjkGPot1JY3n5/Qrbg40Uvbi8//wYnydPnyvNhI1DMUW1g==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + + '@next/swc-win32-ia32-msvc@14.2.30': + resolution: {integrity: sha512-pVZMnFok5qEX4RT59mK2hEVtJX+XFfak+/rjHpyFh7juiT52r177bfFKhnlafm0UOSldhXjj32b+LZIOdswGTg==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + + '@next/swc-win32-x64-msvc@14.2.30': + resolution: {integrity: sha512-4KCo8hMZXMjpTzs3HOqOGYYwAXymXIy7PEPAXNEcEOyKqkjiDlECumrWziy+JEF0Oi4ILHGxzgQ3YiMGG2t/Lg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + + '@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3': + resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==} + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@opentelemetry/semantic-conventions@1.36.0': + resolution: {integrity: sha512-TtxJSRD8Ohxp6bKkhrm27JRHAxPczQA7idtcTOMYI+wQRRrfgqxHv1cFbCApcSnNjtXkmzFozn6jQtFrOmbjPQ==} + engines: {node: '>=14'} + + '@parcel/watcher-android-arm64@2.5.1': + resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [android] + + '@parcel/watcher-darwin-arm64@2.5.1': + resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [darwin] + + '@parcel/watcher-darwin-x64@2.5.1': + resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [darwin] + + '@parcel/watcher-freebsd-x64@2.5.1': + resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [freebsd] + + '@parcel/watcher-linux-arm-glibc@2.5.1': + resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==} + engines: {node: '>= 10.0.0'} + cpu: [arm] + os: [linux] + + '@parcel/watcher-linux-arm-musl@2.5.1': + resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==} + engines: {node: '>= 10.0.0'} + cpu: [arm] + os: [linux] + + '@parcel/watcher-linux-arm64-glibc@2.5.1': + resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [linux] + + '@parcel/watcher-linux-arm64-musl@2.5.1': + resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [linux] + + '@parcel/watcher-linux-x64-glibc@2.5.1': + resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [linux] + + '@parcel/watcher-linux-x64-musl@2.5.1': + resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [linux] + + '@parcel/watcher-win32-arm64@2.5.1': + resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [win32] + + '@parcel/watcher-win32-ia32@2.5.1': + resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==} + engines: {node: '>= 10.0.0'} + cpu: [ia32] + os: [win32] + + '@parcel/watcher-win32-x64@2.5.1': + resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [win32] + + '@parcel/watcher@2.5.1': + resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==} + engines: {node: '>= 10.0.0'} + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@popperjs/core@2.11.8': + resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} + + '@protobufjs/aspromise@1.1.2': + resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} + + '@protobufjs/base64@1.1.2': + resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==} + + '@protobufjs/codegen@2.0.4': + resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==} + + '@protobufjs/eventemitter@1.1.0': + resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==} + + '@protobufjs/fetch@1.1.0': + resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==} + + '@protobufjs/float@1.0.2': + resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==} + + '@protobufjs/inquire@1.1.0': + resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==} + + '@protobufjs/path@1.1.2': + resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==} + + '@protobufjs/pool@1.1.0': + resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==} + + '@protobufjs/utf8@1.1.0': + resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} + + '@rollup/rollup-android-arm-eabi@4.46.1': + resolution: {integrity: sha512-oENme6QxtLCqjChRUUo3S6X8hjCXnWmJWnedD7VbGML5GUtaOtAyx+fEEXnBXVf0CBZApMQU0Idwi0FmyxzQhw==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.46.1': + resolution: {integrity: sha512-OikvNT3qYTl9+4qQ9Bpn6+XHM+ogtFadRLuT2EXiFQMiNkXFLQfNVppi5o28wvYdHL2s3fM0D/MZJ8UkNFZWsw==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.46.1': + resolution: {integrity: sha512-EFYNNGij2WllnzljQDQnlFTXzSJw87cpAs4TVBAWLdkvic5Uh5tISrIL6NRcxoh/b2EFBG/TK8hgRrGx94zD4A==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.46.1': + resolution: {integrity: sha512-ZaNH06O1KeTug9WI2+GRBE5Ujt9kZw4a1+OIwnBHal92I8PxSsl5KpsrPvthRynkhMck4XPdvY0z26Cym/b7oA==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.46.1': + resolution: {integrity: sha512-n4SLVebZP8uUlJ2r04+g2U/xFeiQlw09Me5UFqny8HGbARl503LNH5CqFTb5U5jNxTouhRjai6qPT0CR5c/Iig==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.46.1': + resolution: {integrity: sha512-8vu9c02F16heTqpvo3yeiu7Vi1REDEC/yES/dIfq3tSXe6mLndiwvYr3AAvd1tMNUqE9yeGYa5w7PRbI5QUV+w==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.46.1': + resolution: {integrity: sha512-K4ncpWl7sQuyp6rWiGUvb6Q18ba8mzM0rjWJ5JgYKlIXAau1db7hZnR0ldJvqKWWJDxqzSLwGUhA4jp+KqgDtQ==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.46.1': + resolution: {integrity: sha512-YykPnXsjUjmXE6j6k2QBBGAn1YsJUix7pYaPLK3RVE0bQL2jfdbfykPxfF8AgBlqtYbfEnYHmLXNa6QETjdOjQ==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.46.1': + resolution: {integrity: sha512-kKvqBGbZ8i9pCGW3a1FH3HNIVg49dXXTsChGFsHGXQaVJPLA4f/O+XmTxfklhccxdF5FefUn2hvkoGJH0ScWOA==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.46.1': + resolution: {integrity: sha512-zzX5nTw1N1plmqC9RGC9vZHFuiM7ZP7oSWQGqpbmfjK7p947D518cVK1/MQudsBdcD84t6k70WNczJOct6+hdg==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-loongarch64-gnu@4.46.1': + resolution: {integrity: sha512-O8CwgSBo6ewPpktFfSDgB6SJN9XDcPSvuwxfejiddbIC/hn9Tg6Ai0f0eYDf3XvB/+PIWzOQL+7+TZoB8p9Yuw==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-ppc64-gnu@4.46.1': + resolution: {integrity: sha512-JnCfFVEKeq6G3h3z8e60kAp8Rd7QVnWCtPm7cxx+5OtP80g/3nmPtfdCXbVl063e3KsRnGSKDHUQMydmzc/wBA==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.46.1': + resolution: {integrity: sha512-dVxuDqS237eQXkbYzQQfdf/njgeNw6LZuVyEdUaWwRpKHhsLI+y4H/NJV8xJGU19vnOJCVwaBFgr936FHOnJsQ==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.46.1': + resolution: {integrity: sha512-CvvgNl2hrZrTR9jXK1ye0Go0HQRT6ohQdDfWR47/KFKiLd5oN5T14jRdUVGF4tnsN8y9oSfMOqH6RuHh+ck8+w==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.46.1': + resolution: {integrity: sha512-x7ANt2VOg2565oGHJ6rIuuAon+A8sfe1IeUx25IKqi49OjSr/K3awoNqr9gCwGEJo9OuXlOn+H2p1VJKx1psxA==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.46.1': + resolution: {integrity: sha512-9OADZYryz/7E8/qt0vnaHQgmia2Y0wrjSSn1V/uL+zw/i7NUhxbX4cHXdEQ7dnJgzYDS81d8+tf6nbIdRFZQoQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.46.1': + resolution: {integrity: sha512-NuvSCbXEKY+NGWHyivzbjSVJi68Xfq1VnIvGmsuXs6TCtveeoDRKutI5vf2ntmNnVq64Q4zInet0UDQ+yMB6tA==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.46.1': + resolution: {integrity: sha512-mWz+6FSRb82xuUMMV1X3NGiaPFqbLN9aIueHleTZCc46cJvwTlvIh7reQLk4p97dv0nddyewBhwzryBHH7wtPw==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.46.1': + resolution: {integrity: sha512-7Thzy9TMXDw9AU4f4vsLNBxh7/VOKuXi73VH3d/kHGr0tZ3x/ewgL9uC7ojUKmH1/zvmZe2tLapYcZllk3SO8Q==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.46.1': + resolution: {integrity: sha512-7GVB4luhFmGUNXXJhH2jJwZCFB3pIOixv2E3s17GQHBFUOQaISlt7aGcQgqvCaDSxTZJUzlK/QJ1FN8S94MrzQ==} + cpu: [x64] + os: [win32] + + '@rtsao/scc@1.1.0': + resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} + + '@scure/base@1.2.6': + resolution: {integrity: sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==} + + '@standard-schema/spec@1.0.0': + resolution: {integrity: sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==} + + '@swc/counter@0.1.3': + resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} + + '@swc/helpers@0.5.5': + resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==} + + '@tanstack/react-virtual@3.13.12': + resolution: {integrity: sha512-Gd13QdxPSukP8ZrkbgS2RwoZseTTbQPLnQEn7HY/rqtM+8Zt95f7xKC7N0EsKs7aoz0WzZ+fditZux+F8EzYxA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + + '@tanstack/virtual-core@3.13.12': + resolution: {integrity: sha512-1YBOJfRHV4sXUmWsFSf5rQor4Ss82G8dQWLRbnk3GA4jeP8hQt1hxXh0tmflpC0dz3VgEv/1+qwPyLeWkQuPFA==} + + '@theguild/remark-mermaid@0.0.5': + resolution: {integrity: sha512-e+ZIyJkEv9jabI4m7q29wZtZv+2iwPGsXJ2d46Zi7e+QcFudiyuqhLhHG/3gX3ZEB+hxTch+fpItyMS8jwbIcw==} + peerDependencies: + react: ^18.2.0 + + '@theguild/remark-npm2yarn@0.2.1': + resolution: {integrity: sha512-jUTFWwDxtLEFtGZh/TW/w30ySaDJ8atKWH8dq2/IiQF61dPrGfETpl0WxD0VdBfuLOeU14/kop466oBSRO/5CA==} + + '@tootallnate/quickjs-emscripten@0.23.0': + resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==} + + '@ts-graphviz/adapter@2.0.6': + resolution: {integrity: sha512-kJ10lIMSWMJkLkkCG5gt927SnGZcBuG0s0HHswGzcHTgvtUe7yk5/3zTEr0bafzsodsOq5Gi6FhQeV775nC35Q==} + engines: {node: '>=18'} + + '@ts-graphviz/ast@2.0.7': + resolution: {integrity: sha512-e6+2qtNV99UT6DJSoLbHfkzfyqY84aIuoV8Xlb9+hZAjgpum8iVHprGeAMQ4rF6sKUAxrmY8rfF/vgAwoPc3gw==} + engines: {node: '>=18'} + + '@ts-graphviz/common@2.1.5': + resolution: {integrity: sha512-S6/9+T6x8j6cr/gNhp+U2olwo1n0jKj/682QVqsh7yXWV6ednHYqxFw0ZsY3LyzT0N8jaZ6jQY9YD99le3cmvg==} + engines: {node: '>=18'} + + '@ts-graphviz/core@2.0.7': + resolution: {integrity: sha512-w071DSzP94YfN6XiWhOxnLpYT3uqtxJBDYdh6Jdjzt+Ce6DNspJsPQgpC7rbts/B8tEkq0LHoYuIF/O5Jh5rPg==} + engines: {node: '>=18'} + + '@tsconfig/node10@1.0.11': + resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} + + '@tsconfig/node12@1.0.11': + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + + '@tsconfig/node14@1.0.3': + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + + '@tsconfig/node16@1.0.4': + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + + '@turbo/gen@2.5.5': + resolution: {integrity: sha512-8zay4rVILdeTRLBR3rVVRLmLpvQrektMPXjwK9aze86nVwcLYxrCBYghRs88SOxk2r1qlwgg/e8UNzdkGB2UdA==} + hasBin: true + + '@turbo/workspaces@2.5.5': + resolution: {integrity: sha512-Gye68+szmOp96xMvmondTRQYcYvevDqUP9JuN9jC6kqzFel7U1pJ/hoPvyD3WGQNxyKsdF+wJ5fvNaYXkzr6tQ==} + hasBin: true + + '@tybys/wasm-util@0.10.0': + resolution: {integrity: sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==} + + '@types/acorn@4.0.6': + resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} + + '@types/chai@5.2.2': + resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==} + + '@types/d3-scale-chromatic@3.1.0': + resolution: {integrity: sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==} + + '@types/d3-scale@4.0.9': + resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==} + + '@types/d3-time@3.0.4': + resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==} + + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + + '@types/deep-eql@4.0.2': + resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} + + '@types/docker-modem@3.0.6': + resolution: {integrity: sha512-yKpAGEuKRSS8wwx0joknWxsmLha78wNMe9R2S3UNsVOkZded8UqOrV8KoeDXoXsjndxwyF3eIhyClGbO1SEhEg==} + + '@types/dockerode@3.3.42': + resolution: {integrity: sha512-U1jqHMShibMEWHdxYhj3rCMNCiLx5f35i4e3CEUuW+JSSszc/tVqc6WCAPdhwBymG5R/vgbcceagK0St7Cq6Eg==} + + '@types/estree-jsx@1.0.5': + resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} + + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + + '@types/glob@7.2.0': + resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} + + '@types/hast@2.3.10': + resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} + + '@types/hast@3.0.4': + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + + '@types/inquirer@6.5.0': + resolution: {integrity: sha512-rjaYQ9b9y/VFGOpqBEXRavc3jh0a+e6evAbI31tMda8VlPaSy0AZJfXsvmIe3wklc7W6C3zCSfleuMXR7NOyXw==} + + '@types/js-yaml@4.0.9': + resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/json5@0.0.29': + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + + '@types/katex@0.16.7': + resolution: {integrity: sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==} + + '@types/mdast@3.0.15': + resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} + + '@types/mdast@4.0.4': + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} + + '@types/mdx@2.0.13': + resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} + + '@types/minimatch@6.0.0': + resolution: {integrity: sha512-zmPitbQ8+6zNutpwgcQuLcsEpn/Cj54Kbn7L5pX0Os5kdWplB7xPgEh/g+SWOB/qmows2gpuCaPyduq8ZZRnxA==} + deprecated: This is a stub types definition. minimatch provides its own type definitions, so you do not need this installed. + + '@types/ms@2.1.0': + resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} + + '@types/node@12.20.55': + resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} + + '@types/node@18.19.120': + resolution: {integrity: sha512-WtCGHFXnVI8WHLxDAt5TbnCM4eSE+nI0QN2NJtwzcgMhht2eNz6V9evJrk+lwC8bCY8OWV5Ym8Jz7ZEyGnKnMA==} + + '@types/node@20.19.9': + resolution: {integrity: sha512-cuVNgarYWZqxRJDQHEB58GEONhOK79QVR/qYx4S7kcUObQvUwvFnYxJuuHUKm2aieN9X3yZB4LZsuYNU1Qphsw==} + + '@types/prop-types@15.7.15': + resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==} + + '@types/react-dom@18.3.7': + resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==} + peerDependencies: + '@types/react': ^18.0.0 + + '@types/react@18.3.23': + resolution: {integrity: sha512-/LDXMQh55EzZQ0uVAZmKKhfENivEvWz6E+EYzh+/MCjMhNsotd+ZHhBGIjFDTi6+fz0OhQQQLbTgdQIxxCsC0w==} + + '@types/ssh2@1.15.5': + resolution: {integrity: sha512-N1ASjp/nXH3ovBHddRJpli4ozpk6UdDYIX4RJWFa9L1YKnzdhTlVmiGHm4DZnj/jLbqZpes4aeR30EFGQtvhQQ==} + + '@types/through@0.0.33': + resolution: {integrity: sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==} + + '@types/tinycolor2@1.4.6': + resolution: {integrity: sha512-iEN8J0BoMnsWBqjVbWH/c0G0Hh7O21lpR2/+PrvAVgWdzL7eexIFm4JN/Wn10PTcmNdtS6U67r499mlWMXOxNw==} + + '@types/unist@2.0.11': + resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} + + '@types/unist@3.0.3': + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} + + '@typescript-eslint/eslint-plugin@8.38.0': + resolution: {integrity: sha512-CPoznzpuAnIOl4nhj4tRr4gIPj5AfKgkiJmGQDaq+fQnRJTYlcBjbX3wbciGmpoPf8DREufuPRe1tNMZnGdanA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^8.38.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/parser@8.38.0': + resolution: {integrity: sha512-Zhy8HCvBUEfBECzIl1PKqF4p11+d0aUJS1GeUiuqK9WmOug8YCmC4h4bjyBvMyAMI9sbRczmrYL5lKg/YMbrcQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/project-service@8.38.0': + resolution: {integrity: sha512-dbK7Jvqcb8c9QfH01YB6pORpqX1mn5gDZc9n63Ak/+jD67oWXn3Gs0M6vddAN+eDXBCS5EmNWzbSxsn9SzFWWg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/scope-manager@8.38.0': + resolution: {integrity: sha512-WJw3AVlFFcdT9Ri1xs/lg8LwDqgekWXWhH3iAF+1ZM+QPd7oxQ6jvtW/JPwzAScxitILUIFs0/AnQ/UWHzbATQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/tsconfig-utils@8.38.0': + resolution: {integrity: sha512-Lum9RtSE3EroKk/bYns+sPOodqb2Fv50XOl/gMviMKNvanETUuUcC9ObRbzrJ4VSd2JalPqgSAavwrPiPvnAiQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/type-utils@8.38.0': + resolution: {integrity: sha512-c7jAvGEZVf0ao2z+nnz8BUaHZD09Agbh+DY7qvBQqLiz8uJzRgVPj5YvOh8I8uEiH8oIUGIfHzMwUcGVco/SJg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/types@8.38.0': + resolution: {integrity: sha512-wzkUfX3plUqij4YwWaJyqhiPE5UCRVlFpKn1oCRn2O1bJ592XxWJj8ROQ3JD5MYXLORW84063z3tZTb/cs4Tyw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/typescript-estree@8.38.0': + resolution: {integrity: sha512-fooELKcAKzxux6fA6pxOflpNS0jc+nOQEEOipXFNjSlBS6fqrJOVY/whSn70SScHrcJ2LDsxWrneFoWYSVfqhQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/utils@8.38.0': + resolution: {integrity: sha512-hHcMA86Hgt+ijJlrD8fX0j1j8w4C92zue/8LOPAFioIno+W0+L7KqE8QZKCcPGc/92Vs9x36w/4MPTJhqXdyvg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.9.0' + + '@typescript-eslint/visitor-keys@8.38.0': + resolution: {integrity: sha512-pWrTcoFNWuwHlA9CvlfSsGWs14JxfN1TH25zM5L7o0pRLhsoZkDnTsXfQRJBEWJoV5DL0jf+Z+sxiud+K0mq1g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@ungap/structured-clone@1.3.0': + resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} + + '@unrs/resolver-binding-android-arm-eabi@1.11.1': + resolution: {integrity: sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==} + cpu: [arm] + os: [android] + + '@unrs/resolver-binding-android-arm64@1.11.1': + resolution: {integrity: sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==} + cpu: [arm64] + os: [android] + + '@unrs/resolver-binding-darwin-arm64@1.11.1': + resolution: {integrity: sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==} + cpu: [arm64] + os: [darwin] + + '@unrs/resolver-binding-darwin-x64@1.11.1': + resolution: {integrity: sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==} + cpu: [x64] + os: [darwin] + + '@unrs/resolver-binding-freebsd-x64@1.11.1': + resolution: {integrity: sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==} + cpu: [x64] + os: [freebsd] + + '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1': + resolution: {integrity: sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==} + cpu: [arm] + os: [linux] + + '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1': + resolution: {integrity: sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==} + cpu: [arm] + os: [linux] + + '@unrs/resolver-binding-linux-arm64-gnu@1.11.1': + resolution: {integrity: sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==} + cpu: [arm64] + os: [linux] + + '@unrs/resolver-binding-linux-arm64-musl@1.11.1': + resolution: {integrity: sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==} + cpu: [arm64] + os: [linux] + + '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1': + resolution: {integrity: sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==} + cpu: [ppc64] + os: [linux] + + '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1': + resolution: {integrity: sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==} + cpu: [riscv64] + os: [linux] + + '@unrs/resolver-binding-linux-riscv64-musl@1.11.1': + resolution: {integrity: sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==} + cpu: [riscv64] + os: [linux] + + '@unrs/resolver-binding-linux-s390x-gnu@1.11.1': + resolution: {integrity: sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==} + cpu: [s390x] + os: [linux] + + '@unrs/resolver-binding-linux-x64-gnu@1.11.1': + resolution: {integrity: sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==} + cpu: [x64] + os: [linux] + + '@unrs/resolver-binding-linux-x64-musl@1.11.1': + resolution: {integrity: sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==} + cpu: [x64] + os: [linux] + + '@unrs/resolver-binding-wasm32-wasi@1.11.1': + resolution: {integrity: sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + + '@unrs/resolver-binding-win32-arm64-msvc@1.11.1': + resolution: {integrity: sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==} + cpu: [arm64] + os: [win32] + + '@unrs/resolver-binding-win32-ia32-msvc@1.11.1': + resolution: {integrity: sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==} + cpu: [ia32] + os: [win32] + + '@unrs/resolver-binding-win32-x64-msvc@1.11.1': + resolution: {integrity: sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==} + cpu: [x64] + os: [win32] + + '@vitest/coverage-v8@3.2.4': + resolution: {integrity: sha512-EyF9SXU6kS5Ku/U82E259WSnvg6c8KTjppUncuNdm5QHpe17mwREHnjDzozC8x9MZ0xfBUFSaLkRv4TMA75ALQ==} + peerDependencies: + '@vitest/browser': 3.2.4 + vitest: 3.2.4 + peerDependenciesMeta: + '@vitest/browser': + optional: true + + '@vitest/expect@3.2.4': + resolution: {integrity: sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==} + + '@vitest/mocker@3.2.4': + resolution: {integrity: sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==} + peerDependencies: + msw: ^2.4.9 + vite: ^5.0.0 || ^6.0.0 || ^7.0.0-0 + peerDependenciesMeta: + msw: + optional: true + vite: + optional: true + + '@vitest/pretty-format@3.2.4': + resolution: {integrity: sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==} + + '@vitest/runner@3.2.4': + resolution: {integrity: sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==} + + '@vitest/snapshot@3.2.4': + resolution: {integrity: sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==} + + '@vitest/spy@3.2.4': + resolution: {integrity: sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==} + + '@vitest/utils@3.2.4': + resolution: {integrity: sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==} + + '@vue/compiler-core@3.5.18': + resolution: {integrity: sha512-3slwjQrrV1TO8MoXgy3aynDQ7lslj5UqDxuHnrzHtpON5CBinhWjJETciPngpin/T3OuW3tXUf86tEurusnztw==} + + '@vue/compiler-dom@3.5.18': + resolution: {integrity: sha512-RMbU6NTU70++B1JyVJbNbeFkK+A+Q7y9XKE2EM4NLGm2WFR8x9MbAtWxPPLdm0wUkuZv9trpwfSlL6tjdIa1+A==} + + '@vue/compiler-sfc@3.5.18': + resolution: {integrity: sha512-5aBjvGqsWs+MoxswZPoTB9nSDb3dhd1x30xrrltKujlCxo48j8HGDNj3QPhF4VIS0VQDUrA1xUfp2hEa+FNyXA==} + + '@vue/compiler-ssr@3.5.18': + resolution: {integrity: sha512-xM16Ak7rSWHkM3m22NlmcdIM+K4BMyFARAfV9hYFl+SFuRzrZ3uGMNW05kA5pmeMa0X9X963Kgou7ufdbpOP9g==} + + '@vue/shared@3.5.18': + resolution: {integrity: sha512-cZy8Dq+uuIXbxCZpuLd2GJdeSO/lIzIspC2WtkqIpje5QyFbvLaI5wZtdUjLHjGZrlVX6GilejatWwVYYRc8tA==} + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn-walk@8.3.4: + resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} + engines: {node: '>=0.4.0'} + + acorn@8.15.0: + resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} + engines: {node: '>=0.4.0'} + hasBin: true + + agent-base@7.1.4: + resolution: {integrity: sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==} + engines: {node: '>= 14'} + + aggregate-error@3.1.0: + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} + + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + ansi-colors@4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} + + ansi-escapes@4.3.2: + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} + engines: {node: '>=8'} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.1.0: + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} + engines: {node: '>=12'} + + ansi-sequence-parser@1.1.3: + resolution: {integrity: sha512-+fksAx9eG3Ab6LDnLs3ZqZa8KVJ/jYnX+D4Qe1azX+LFGFAXqynCQLOdLpNYN/l9e7l6hMWwZbrnctqr6eSQSw==} + + ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + + any-promise@1.3.0: + resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + app-module-path@2.2.0: + resolution: {integrity: sha512-gkco+qxENJV+8vFcDiiFhuoSvRXb2a/QPqpSoWhVz829VNJfOTnELbBmPmNKFxf3xdNnw4DWCkzkDaavcX/1YQ==} + + arch@2.2.0: + resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} + + arg@1.0.0: + resolution: {integrity: sha512-Wk7TEzl1KqvTGs/uyhmHO/3XLd3t1UeU4IstvPXVzGPM522cTjqjNZ99esCkcL52sjqjo8e8CTBcWhkxvGzoAw==} + + arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + + argparse@1.0.10: + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + array-buffer-byte-length@1.0.2: + resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} + engines: {node: '>= 0.4'} + + array-includes@3.1.9: + resolution: {integrity: sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==} + engines: {node: '>= 0.4'} + + array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + + array.prototype.findlastindex@1.2.6: + resolution: {integrity: sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==} + engines: {node: '>= 0.4'} + + array.prototype.flat@1.3.3: + resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==} + engines: {node: '>= 0.4'} + + array.prototype.flatmap@1.3.3: + resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==} + engines: {node: '>= 0.4'} + + arraybuffer.prototype.slice@1.0.4: + resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} + engines: {node: '>= 0.4'} + + asn1@0.2.6: + resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} + + assertion-error@2.0.1: + resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} + engines: {node: '>=12'} + + ast-module-types@6.0.1: + resolution: {integrity: sha512-WHw67kLXYbZuHTmcdbIrVArCq5wxo6NEuj3hiYAWr8mwJeC+C2mMCIBIWCiDoCye/OF/xelc+teJ1ERoWmnEIA==} + engines: {node: '>=18'} + + ast-types@0.13.4: + resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} + engines: {node: '>=4'} + + ast-v8-to-istanbul@0.3.3: + resolution: {integrity: sha512-MuXMrSLVVoA6sYN/6Hke18vMzrT4TZNbZIj/hvh0fnYFpO+/kFXcLIaiPwXXWaQUPg4yJD8fj+lfJ7/1EBconw==} + + astring@1.9.0: + resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==} + hasBin: true + + async-function@1.0.0: + resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} + engines: {node: '>= 0.4'} + + autolinker@0.28.1: + resolution: {integrity: sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==} + + available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + + babel-plugin-annotate-pure-calls@0.5.0: + resolution: {integrity: sha512-bWlaZl2qsJKHv9BJgF1g6bQ04wK/7Topq9g59I795W9jpx9lNs9N5LK5NjlEBCDhHncrO0vcoAMuHJR3oWnTeQ==} + engines: {node: '>=18'} + peerDependencies: + '@babel/core': ^7.0.0 + + bail@2.0.2: + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + + basic-ftp@5.0.5: + resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==} + engines: {node: '>=10.0.0'} + + bcrypt-pbkdf@1.0.2: + resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} + + better-path-resolve@1.0.0: + resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} + engines: {node: '>=4'} + + binary-extensions@2.3.0: + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} + + bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + + brace-expansion@1.1.12: + resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} + + brace-expansion@2.0.2: + resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + browserslist@4.25.1: + resolution: {integrity: sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + + buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + + buildcheck@0.0.6: + resolution: {integrity: sha512-8f9ZJCUXyT1M35Jx7MkBgmBMo3oHTTBIPLiY9xyL0pl3T5RwcPEY8cUHr5LBNfu/fk6c2T4DJZuVM/8ZZT2D2A==} + engines: {node: '>=10.0.0'} + + busboy@1.6.0: + resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} + engines: {node: '>=10.16.0'} + + cac@6.7.14: + resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} + engines: {node: '>=8'} + + call-bind-apply-helpers@1.0.2: + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} + engines: {node: '>= 0.4'} + + call-bind@1.0.8: + resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} + engines: {node: '>= 0.4'} + + call-bound@1.0.4: + resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} + engines: {node: '>= 0.4'} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + camel-case@3.0.0: + resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==} + + caniuse-lite@1.0.30001727: + resolution: {integrity: sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q==} + + ccount@2.0.1: + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + + chai@5.2.1: + resolution: {integrity: sha512-5nFxhUrX0PqtyogoYOA8IPswy5sZFTOsBFl/9bNsmDLgsxYTzSZQJDPppDnZPTQbzSEm0hqGjWPzRemQCYbD6A==} + engines: {node: '>=18'} + + chalk@2.3.0: + resolution: {integrity: sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==} + engines: {node: '>=4'} + + chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + + chalk@3.0.0: + resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} + engines: {node: '>=8'} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + change-case@3.1.0: + resolution: {integrity: sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==} + + character-entities-html4@2.1.0: + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} + + character-entities-legacy@3.0.0: + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + + character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + + character-reference-invalid@2.0.1: + resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} + + chardet@0.7.0: + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} + + check-error@2.1.1: + resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} + engines: {node: '>= 16'} + + chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} + + chownr@1.1.4: + resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} + + ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} + + clean-stack@2.2.0: + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} + + cli-cursor@3.1.0: + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} + engines: {node: '>=8'} + + cli-spinners@2.9.2: + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + engines: {node: '>=6'} + + cli-width@3.0.0: + resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} + engines: {node: '>= 10'} + + client-only@0.0.1: + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + + clipboardy@1.2.2: + resolution: {integrity: sha512-16KrBOV7bHmHdxcQiCvfUFYVFyEah4FI8vYT1Fr7CGSA4G+xBWMEfUEQJS1hxeHGtI9ju1Bzs9uXSbj5HZKArw==} + engines: {node: '>=4'} + + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + clone@1.0.4: + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} + engines: {node: '>=0.8'} + + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} + + color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + comma-separated-tokens@2.0.3: + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} + + commander@10.0.1: + resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} + engines: {node: '>=14'} + + commander@12.1.0: + resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} + engines: {node: '>=18'} + + commander@6.2.1: + resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} + engines: {node: '>= 6'} + + commander@7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} + + commander@8.3.0: + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + engines: {node: '>= 12'} + + commondir@1.0.1: + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + + compute-scroll-into-view@3.1.1: + resolution: {integrity: sha512-VRhuHOLoKYOy4UbilLbUzbYg93XLjv2PncJC50EuTWPA3gaja1UjBsUP/D/9/juV3vQFr6XBEzn9KCAHdUvOHw==} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + concat-stream@1.6.2: + resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} + engines: {'0': node >= 0.8} + + concat-with-sourcemaps@1.1.0: + resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==} + + constant-case@2.0.0: + resolution: {integrity: sha512-eS0N9WwmjTqrOmR3o83F5vW8Z+9R1HnVz3xmzT2PMFug9ly+Au/fxRWlEBSb6LcZwspSsEn9Xs1uw9YgzAg1EQ==} + + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + + core-js-pure@3.44.0: + resolution: {integrity: sha512-gvMQAGB4dfVUxpYD0k3Fq8J+n5bB6Ytl15lqlZrOIXFzxOhtPaObfkQGHtMRdyjIf7z2IeNULwi1jEwyS+ltKQ==} + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + cose-base@1.0.3: + resolution: {integrity: sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==} + + cpu-features@0.0.10: + resolution: {integrity: sha512-9IkYqtX3YHPCzoVg1Py+o9057a3i0fp7S530UWokCSaFVTc7CwXPRiOjRjBQQ18ZCNafx78YfnG+HALxtVmOGA==} + engines: {node: '>=10.0.0'} + + create-require@1.1.1: + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + + cross-spawn@5.1.0: + resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} + + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + + csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + + cytoscape-cose-bilkent@4.1.0: + resolution: {integrity: sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==} + peerDependencies: + cytoscape: ^3.2.0 + + cytoscape@3.33.0: + resolution: {integrity: sha512-2d2EwwhaxLWC8ahkH1PpQwCyu6EY3xDRdcEJXrLTb4fOUtVc+YWQalHU67rFS1a6ngj1fgv9dQLtJxP/KAFZEw==} + engines: {node: '>=0.10'} + + d3-array@2.12.1: + resolution: {integrity: sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==} + + d3-array@3.2.4: + resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} + engines: {node: '>=12'} + + d3-axis@3.0.0: + resolution: {integrity: sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==} + engines: {node: '>=12'} + + d3-brush@3.0.0: + resolution: {integrity: sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==} + engines: {node: '>=12'} + + d3-chord@3.0.1: + resolution: {integrity: sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==} + engines: {node: '>=12'} + + d3-color@3.1.0: + resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} + engines: {node: '>=12'} + + d3-contour@4.0.2: + resolution: {integrity: sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==} + engines: {node: '>=12'} + + d3-delaunay@6.0.4: + resolution: {integrity: sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==} + engines: {node: '>=12'} + + d3-dispatch@3.0.1: + resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} + engines: {node: '>=12'} + + d3-drag@3.0.0: + resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} + engines: {node: '>=12'} + + d3-dsv@3.0.1: + resolution: {integrity: sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==} + engines: {node: '>=12'} + hasBin: true + + d3-ease@3.0.1: + resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} + engines: {node: '>=12'} + + d3-fetch@3.0.1: + resolution: {integrity: sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==} + engines: {node: '>=12'} + + d3-force@3.0.0: + resolution: {integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==} + engines: {node: '>=12'} + + d3-format@3.1.0: + resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} + engines: {node: '>=12'} + + d3-geo@3.1.1: + resolution: {integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==} + engines: {node: '>=12'} + + d3-hierarchy@3.1.2: + resolution: {integrity: sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==} + engines: {node: '>=12'} + + d3-interpolate@3.0.1: + resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} + engines: {node: '>=12'} + + d3-path@1.0.9: + resolution: {integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==} + + d3-path@3.1.0: + resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==} + engines: {node: '>=12'} + + d3-polygon@3.0.1: + resolution: {integrity: sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==} + engines: {node: '>=12'} + + d3-quadtree@3.0.1: + resolution: {integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==} + engines: {node: '>=12'} + + d3-random@3.0.1: + resolution: {integrity: sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==} + engines: {node: '>=12'} + + d3-sankey@0.12.3: + resolution: {integrity: sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==} + + d3-scale-chromatic@3.1.0: + resolution: {integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==} + engines: {node: '>=12'} + + d3-scale@4.0.2: + resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} + engines: {node: '>=12'} + + d3-selection@3.0.0: + resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} + engines: {node: '>=12'} + + d3-shape@1.3.7: + resolution: {integrity: sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==} + + d3-shape@3.2.0: + resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==} + engines: {node: '>=12'} + + d3-time-format@4.1.0: + resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} + engines: {node: '>=12'} + + d3-time@3.1.0: + resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} + engines: {node: '>=12'} + + d3-timer@3.0.1: + resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} + engines: {node: '>=12'} + + d3-transition@3.0.1: + resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} + engines: {node: '>=12'} + peerDependencies: + d3-selection: 2 - 3 + + d3-zoom@3.0.0: + resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} + engines: {node: '>=12'} + + d3@7.9.0: + resolution: {integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==} + engines: {node: '>=12'} + + dagre-d3-es@7.0.10: + resolution: {integrity: sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A==} + + data-uri-to-buffer@6.0.2: + resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==} + engines: {node: '>= 14'} + + data-view-buffer@1.0.2: + resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} + engines: {node: '>= 0.4'} + + data-view-byte-length@1.0.2: + resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} + engines: {node: '>= 0.4'} + + data-view-byte-offset@1.0.1: + resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} + engines: {node: '>= 0.4'} + + dataloader@1.4.0: + resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} + + dayjs@1.11.13: + resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==} + + debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.4.1: + resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decode-named-character-reference@1.2.0: + resolution: {integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==} + + deep-eql@5.0.2: + resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} + engines: {node: '>=6'} + + deep-extend@0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + defaults@1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + degenerator@5.0.1: + resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==} + engines: {node: '>= 14'} + + del@5.1.0: + resolution: {integrity: sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==} + engines: {node: '>=8'} + + delaunator@5.0.1: + resolution: {integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==} + + dependency-tree@11.2.0: + resolution: {integrity: sha512-+C1H3mXhcvMCeu5i2Jpg9dc0N29TWTuT6vJD7mHLAfVmAbo9zW8NlkvQ1tYd3PDMab0IRQM0ccoyX68EZtx9xw==} + engines: {node: '>=18'} + hasBin: true + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + detect-indent@6.1.0: + resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} + engines: {node: '>=8'} + + detect-libc@1.0.3: + resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} + engines: {node: '>=0.10'} + hasBin: true + + detect-libc@2.0.4: + resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==} + engines: {node: '>=8'} + + detective-amd@6.0.1: + resolution: {integrity: sha512-TtyZ3OhwUoEEIhTFoc1C9IyJIud3y+xYkSRjmvCt65+ycQuc3VcBrPRTMWoO/AnuCyOB8T5gky+xf7Igxtjd3g==} + engines: {node: '>=18'} + hasBin: true + + detective-cjs@6.0.1: + resolution: {integrity: sha512-tLTQsWvd2WMcmn/60T2inEJNhJoi7a//PQ7DwRKEj1yEeiQs4mrONgsUtEJKnZmrGWBBmE0kJ1vqOG/NAxwaJw==} + engines: {node: '>=18'} + + detective-es6@5.0.1: + resolution: {integrity: sha512-XusTPuewnSUdoxRSx8OOI6xIA/uld/wMQwYsouvFN2LAg7HgP06NF1lHRV3x6BZxyL2Kkoih4ewcq8hcbGtwew==} + engines: {node: '>=18'} + + detective-postcss@7.0.1: + resolution: {integrity: sha512-bEOVpHU9picRZux5XnwGsmCN4+8oZo7vSW0O0/Enq/TO5R2pIAP2279NsszpJR7ocnQt4WXU0+nnh/0JuK4KHQ==} + engines: {node: ^14.0.0 || >=16.0.0} + peerDependencies: + postcss: ^8.4.47 + + detective-sass@6.0.1: + resolution: {integrity: sha512-jSGPO8QDy7K7pztUmGC6aiHkexBQT4GIH+mBAL9ZyBmnUIOFbkfZnO8wPRRJFP/QP83irObgsZHCoDHZ173tRw==} + engines: {node: '>=18'} + + detective-scss@5.0.1: + resolution: {integrity: sha512-MAyPYRgS6DCiS6n6AoSBJXLGVOydsr9huwXORUlJ37K3YLyiN0vYHpzs3AdJOgHobBfispokoqrEon9rbmKacg==} + engines: {node: '>=18'} + + detective-stylus@5.0.1: + resolution: {integrity: sha512-Dgn0bUqdGbE3oZJ+WCKf8Dmu7VWLcmRJGc6RCzBgG31DLIyai9WAoEhYRgIHpt/BCRMrnXLbGWGPQuBUrnF0TA==} + engines: {node: '>=18'} + + detective-typescript@14.0.0: + resolution: {integrity: sha512-pgN43/80MmWVSEi5LUuiVvO/0a9ss5V7fwVfrJ4QzAQRd3cwqU1SfWGXJFcNKUqoD5cS+uIovhw5t/0rSeC5Mw==} + engines: {node: '>=18'} + peerDependencies: + typescript: ^5.4.4 + + detective-vue2@2.2.0: + resolution: {integrity: sha512-sVg/t6O2z1zna8a/UIV6xL5KUa2cMTQbdTIIvqNM0NIPswp52fe43Nwmbahzj3ww4D844u/vC2PYfiGLvD3zFA==} + engines: {node: '>=18'} + peerDependencies: + typescript: ^5.4.4 + + devlop@1.1.0: + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + + diacritics-map@0.1.0: + resolution: {integrity: sha512-3omnDTYrGigU0i4cJjvaKwD52B8aoqyX/NEIkukFFkogBemsIbhSa1O414fpTp5nuszJG6lvQ5vBvDVNCbSsaQ==} + engines: {node: '>=0.8.0'} + + diff@4.0.2: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} + + diff@5.2.0: + resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} + engines: {node: '>=0.3.1'} + + dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + + docker-modem@5.0.6: + resolution: {integrity: sha512-ens7BiayssQz/uAxGzH8zGXCtiV24rRWXdjNha5V4zSOcxmAZsfGVm/PPFbwQdqEkDnhG+SyR9E3zSHUbOKXBQ==} + engines: {node: '>= 8.0'} + + dockerode@4.0.7: + resolution: {integrity: sha512-R+rgrSRTRdU5mH14PZTCPZtW/zw3HDWNTS/1ZAQpL/5Upe/ye5K9WQkIysu4wBoiMwKynsz0a8qWuGsHgEvSAA==} + engines: {node: '>= 8.0'} + + doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + + doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + + dompurify@3.1.6: + resolution: {integrity: sha512-cTOAhc36AalkjtBpfG6O8JimdTMWNXjiePT2xQH/ppBGi/4uIpmj8eKyIkMJErXWARyINV/sB38yf8JCLF5pbQ==} + + dot-case@2.1.1: + resolution: {integrity: sha512-HnM6ZlFqcajLsyudHq7LeeLDr2rFAVYtDv/hV5qchQEidSck8j9OPUsXY9KwJv/lHMtYlX4DjRQqwFYa+0r8Ug==} + + dotenv@8.6.0: + resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} + engines: {node: '>=10'} + + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} + + eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + + effect@3.17.3: + resolution: {integrity: sha512-FbFMr6xBXPII5Od8QJnkHz+2GTmQgq+8NPQev6C2k9cf1lcUjQ4vpw1kjbMc2X0UkjIkIWe0EtNK2RV6bl34UQ==} + + electron-to-chromium@1.5.192: + resolution: {integrity: sha512-rP8Ez0w7UNw/9j5eSXCe10o1g/8B1P5SM90PCCMVkIRQn2R0LEHWz4Eh9RnxkniuDe1W0cTSOB3MLlkTGDcuCg==} + + elkjs@0.9.3: + resolution: {integrity: sha512-f/ZeWvW/BCXbhGEf1Ujp29EASo/lk1FDnETgNKwJrsVvGZhUWCZyg3xLJjAsxfOmt8KjswHmI5EwCQcPMpOYhQ==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + end-of-stream@1.4.5: + resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==} + + enhanced-resolve@5.18.2: + resolution: {integrity: sha512-6Jw4sE1maoRJo3q8MsSIn2onJFbLTOjY9hlx4DZXmOKvLRd1Ok2kXmAGXaafL2+ijsJZ1ClYbl/pmqr9+k4iUQ==} + engines: {node: '>=10.13.0'} + + enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + entities@6.0.1: + resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} + engines: {node: '>=0.12'} + + es-abstract@1.24.0: + resolution: {integrity: sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==} + engines: {node: '>= 0.4'} + + es-define-property@1.0.1: + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-module-lexer@1.7.0: + resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} + + es-object-atoms@1.1.1: + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.1.0: + resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} + engines: {node: '>= 0.4'} + + es-shim-unscopables@1.1.0: + resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==} + engines: {node: '>= 0.4'} + + es-to-primitive@1.3.0: + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + engines: {node: '>= 0.4'} + + esbuild@0.21.5: + resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} + engines: {node: '>=12'} + hasBin: true + + esbuild@0.25.8: + resolution: {integrity: sha512-vVC0USHGtMi8+R4Kz8rt6JhEWLxsv9Rnu/lGYbPR8u47B+DCBksq9JarW0zOO7bs37hyOK1l2/oqtbciutL5+Q==} + engines: {node: '>=18'} + hasBin: true + + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + + escodegen@2.1.0: + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} + hasBin: true + + eslint-import-context@0.1.9: + resolution: {integrity: sha512-K9Hb+yRaGAGUbwjhFNHvSmmkZs9+zbuoe3kFQ4V1wYjrepUFYM2dZAfNtjbbj3qsPfUfsA68Bx/ICWQMi+C8Eg==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + peerDependencies: + unrs-resolver: ^1.0.0 + peerDependenciesMeta: + unrs-resolver: + optional: true + + eslint-import-resolver-node@0.3.9: + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + + eslint-import-resolver-typescript@4.4.4: + resolution: {integrity: sha512-1iM2zeBvrYmUNTj2vSC/90JTHDth+dfOfiNKkxApWRsTJYNrc8rOdxxIf5vazX+BiAXTeOT0UvWpGI/7qIWQOw==} + engines: {node: ^16.17.0 || >=18.6.0} + peerDependencies: + eslint: '*' + eslint-plugin-import: '*' + eslint-plugin-import-x: '*' + peerDependenciesMeta: + eslint-plugin-import: + optional: true + eslint-plugin-import-x: + optional: true + + eslint-module-utils@2.12.1: + resolution: {integrity: sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + + eslint-plugin-import@2.32.0: + resolution: {integrity: sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + + eslint-plugin-simple-import-sort@12.1.1: + resolution: {integrity: sha512-6nuzu4xwQtE3332Uz0to+TxDQYRLTKRESSc2hefVT48Zc8JthmN23Gx9lnYhu0FtkRSL1oxny3kJ2aveVhmOVA==} + peerDependencies: + eslint: '>=5.0.0' + + eslint-plugin-sort-destructure-keys@2.0.0: + resolution: {integrity: sha512-4w1UQCa3o/YdfWaLr9jY8LfGowwjwjmwClyFLxIsToiyIdZMq3x9Ti44nDn34DtTPP7PWg96tUONKVmATKhYGQ==} + engines: {node: '>=12'} + peerDependencies: + eslint: 5 - 9 + + eslint-scope@8.4.0: + resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-visitor-keys@4.2.1: + resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint@9.32.0: + resolution: {integrity: sha512-LSehfdpgMeWcTZkWZVIJl+tkZ2nuSkyyB9C27MZqFWXuph7DvaowgcTvKqxvpLW1JZIk8PN7hFY3Rj9LQ7m7lg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + + espree@10.4.0: + resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + + esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + engines: {node: '>=0.10'} + + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + estree-util-attach-comments@2.1.1: + resolution: {integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==} + + estree-util-build-jsx@2.2.2: + resolution: {integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==} + + estree-util-is-identifier-name@2.1.0: + resolution: {integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==} + + estree-util-to-js@1.2.0: + resolution: {integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==} + + estree-util-value-to-estree@3.4.0: + resolution: {integrity: sha512-Zlp+gxis+gCfK12d3Srl2PdX2ybsEA8ZYy6vQGVQTNNYLEGRQQ56XB64bjemN8kxIKXP1nC9ip4Z+ILy9LGzvQ==} + + estree-util-visit@1.2.1: + resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + execa@0.8.0: + resolution: {integrity: sha512-zDWS+Rb1E8BlqqhALSt9kUhss8Qq4nN3iof3gsOdyINksElaPyNBtKUMTR62qhvgVWR0CqCX7sdnKe4MnUbFEA==} + engines: {node: '>=4'} + + execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + + expand-range@1.8.2: + resolution: {integrity: sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==} + engines: {node: '>=0.10.0'} + + expect-type@1.2.2: + resolution: {integrity: sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==} + engines: {node: '>=12.0.0'} + + extend-shallow@2.0.1: + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} + engines: {node: '>=0.10.0'} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + + extendable-error@0.1.7: + resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} + + external-editor@3.1.0: + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} + + fast-check@3.23.2: + resolution: {integrity: sha512-h5+1OzzfCC3Ef7VbtKdcv7zsstUQwUDlYpUTvjeUsJAssPgLn7QzbboPtL5ro04Mq0rPOsMzl7q5hIbRs2wD1A==} + engines: {node: '>=8.0.0'} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-diff@1.3.0: + resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} + + fast-glob@3.3.3: + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} + engines: {node: '>=8.6.0'} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fastq@1.19.1: + resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} + + fdir@6.4.6: + resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + figures@3.2.0: + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} + engines: {node: '>=8'} + + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} + + filing-cabinet@5.0.3: + resolution: {integrity: sha512-PlPcMwVWg60NQkhvfoxZs4wEHjhlOO/y7OAm4sKM60o1Z9nttRY4mcdQxp/iZ+kg/Vv6Hw1OAaTbYVM9DA9pYg==} + engines: {node: '>=18'} + hasBin: true + + fill-range@2.2.4: + resolution: {integrity: sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==} + engines: {node: '>=0.10.0'} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + find-my-way-ts@0.1.6: + resolution: {integrity: sha512-a85L9ZoXtNAey3Y6Z+eBWW658kO/MwR7zIafkIUPUMf3isZG0NCs2pjW2wtjxAKuJPxMAsHUIP4ZPGv0o5gyTA==} + + find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} + + flatted@3.3.3: + resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} + + flexsearch@0.7.43: + resolution: {integrity: sha512-c5o/+Um8aqCSOXGcZoqZOm+NqtVwNsvVpWv6lfmSclU954O3wvQKxxK8zj74fPaSJbXpSLTs4PRhh+wnoCXnKg==} + + focus-visible@5.2.1: + resolution: {integrity: sha512-8Bx950VD1bWTQJEH/AM6SpEk+SU55aVnp4Ujhuuxy3eMEBCRwBnTBnVXr9YAPvZL3/CNjCa8u4IWfNmEO53whA==} + + for-each@0.3.5: + resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} + engines: {node: '>= 0.4'} + + for-in@1.0.2: + resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} + engines: {node: '>=0.10.0'} + + foreground-child@3.3.1: + resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} + engines: {node: '>=14'} + + fs-constants@1.0.0: + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + + fs-extra@10.1.0: + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} + + fs-extra@7.0.1: + resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} + engines: {node: '>=6 <7 || >=8'} + + fs-extra@8.1.0: + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} + + fs-readdir-recursive@1.1.0: + resolution: {integrity: sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + function.prototype.name@1.1.8: + resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} + engines: {node: '>= 0.4'} + + functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + + get-amd-module-type@6.0.1: + resolution: {integrity: sha512-MtjsmYiCXcYDDrGqtNbeIYdAl85n+5mSv2r3FbzER/YV3ZILw4HNNIw34HuV5pyl0jzs6GFYU1VHVEefhgcNHQ==} + engines: {node: '>=18'} + + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + get-intrinsic@1.3.0: + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} + engines: {node: '>= 0.4'} + + get-own-enumerable-property-symbols@3.0.2: + resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} + + get-proto@1.0.1: + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} + engines: {node: '>= 0.4'} + + get-stream@3.0.0: + resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==} + engines: {node: '>=4'} + + get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + + get-symbol-description@1.1.0: + resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} + engines: {node: '>= 0.4'} + + get-tsconfig@4.10.1: + resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==} + + get-uri@6.0.5: + resolution: {integrity: sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==} + engines: {node: '>= 14'} + + git-up@7.0.0: + resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} + + git-url-parse@13.1.1: + resolution: {integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==} + + github-slugger@2.0.0: + resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + glob@10.4.5: + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + hasBin: true + + glob@11.0.3: + resolution: {integrity: sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==} + engines: {node: 20 || >=22} + hasBin: true + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported + + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + + globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + + globby@10.0.2: + resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==} + engines: {node: '>=8'} + + globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + + gonzales-pe@4.3.0: + resolution: {integrity: sha512-otgSPpUmdWJ43VXyiNgEYE4luzHCL2pz4wQ0OnDluC6Eg4Ko3Vexy/SrSynglw/eR+OhkzmqFCZa/OFa/RgAOQ==} + engines: {node: '>=0.6.0'} + hasBin: true + + gopd@1.2.0: + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + gradient-string@2.0.2: + resolution: {integrity: sha512-rEDCuqUQ4tbD78TpzsMtt5OIf0cBCSDWSJtUDaF6JsAh+k0v9r++NzxNEG87oDZx9ZwGhD8DaezR2L/yrw0Jdw==} + engines: {node: '>=10'} + + graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + + gray-matter@3.1.1: + resolution: {integrity: sha512-nZ1qjLmayEv0/wt3sHig7I0s3/sJO0dkAaKYQ5YAOApUtYEOonXSFdWvL1khvnZMTvov4UufkqlFsilPnejEXA==} + engines: {node: '>=0.10.0'} + + gray-matter@4.0.3: + resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} + engines: {node: '>=6.0'} + + gulp-header@1.8.12: + resolution: {integrity: sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==} + deprecated: Removed event-stream from gulp-header + + handlebars@4.7.8: + resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} + engines: {node: '>=0.4.7'} + hasBin: true + + has-bigints@1.1.0: + resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} + engines: {node: '>= 0.4'} + + has-flag@2.0.0: + resolution: {integrity: sha512-P+1n3MnwjR/Epg9BBo1KT8qbye2g2Ou4sFumihwt6I4tsUX7jnLcX4BTOSKg/B1ZrIYMN9FcEnG4x5a7NB8Eng==} + engines: {node: '>=0.10.0'} + + has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.2.0: + resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} + engines: {node: '>= 0.4'} + + has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + + has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + + hash-obj@4.0.0: + resolution: {integrity: sha512-FwO1BUVWkyHasWDW4S8o0ssQXjvyghLV2rfVhnN36b2bbcj45eGiuzdn9XOvOpjV3TKQD7Gm2BWNXdE9V4KKYg==} + engines: {node: '>=12'} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + hast-util-from-dom@5.0.1: + resolution: {integrity: sha512-N+LqofjR2zuzTjCPzyDUdSshy4Ma6li7p/c3pA78uTwzFgENbgbUrm2ugwsOdcjI1muO+o6Dgzp9p8WHtn/39Q==} + + hast-util-from-html-isomorphic@2.0.0: + resolution: {integrity: sha512-zJfpXq44yff2hmE0XmwEOzdWin5xwH+QIhMLOScpX91e/NSGPsAzNCvLQDIEPyO2TXi+lBmU6hjLIhV8MwP2kw==} + + hast-util-from-html@2.0.3: + resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==} + + hast-util-from-parse5@8.0.3: + resolution: {integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==} + + hast-util-is-element@3.0.0: + resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} + + hast-util-parse-selector@4.0.0: + resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} + + hast-util-raw@9.1.0: + resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==} + + hast-util-to-estree@2.3.3: + resolution: {integrity: sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==} + + hast-util-to-parse5@8.0.0: + resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} + + hast-util-to-text@4.0.2: + resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} + + hast-util-whitespace@2.0.1: + resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==} + + hastscript@9.0.1: + resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==} + + header-case@1.0.1: + resolution: {integrity: sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ==} + + html-escaper@2.0.2: + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + + html-void-elements@3.0.0: + resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} + + http-proxy-agent@7.0.2: + resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} + engines: {node: '>= 14'} + + https-proxy-agent@7.0.6: + resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} + engines: {node: '>= 14'} + + human-id@4.1.1: + resolution: {integrity: sha512-3gKm/gCSUipeLsRYZbbdA1BD83lBoWUkZ7G9VFrhWPAU76KwYo5KR8V28bpoPm/ygy0x5/GCbpRQdY7VLYCoIg==} + hasBin: true + + human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + + iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + + iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + ignore@7.0.5: + resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} + engines: {node: '>= 4'} + + import-fresh@3.3.1: + resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} + engines: {node: '>=6'} + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + + inline-style-parser@0.1.1: + resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} + + inquirer@7.3.3: + resolution: {integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==} + engines: {node: '>=8.0.0'} + + inquirer@8.2.6: + resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==} + engines: {node: '>=12.0.0'} + + internal-slot@1.1.0: + resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} + engines: {node: '>= 0.4'} + + internmap@1.0.1: + resolution: {integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==} + + internmap@2.0.3: + resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} + engines: {node: '>=12'} + + intersection-observer@0.12.2: + resolution: {integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==} + + ip-address@9.0.5: + resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} + engines: {node: '>= 12'} + + is-alphabetical@2.0.1: + resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} + + is-alphanumerical@2.0.1: + resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} + + is-array-buffer@3.0.5: + resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} + engines: {node: '>= 0.4'} + + is-async-function@2.1.1: + resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} + engines: {node: '>= 0.4'} + + is-bigint@1.1.0: + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} + + is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + + is-boolean-object@1.2.2: + resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} + engines: {node: '>= 0.4'} + + is-buffer@1.1.6: + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + + is-buffer@2.0.5: + resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} + engines: {node: '>=4'} + + is-bun-module@2.0.0: + resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==} + + is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + + is-core-module@2.16.1: + resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} + engines: {node: '>= 0.4'} + + is-data-view@1.0.2: + resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} + engines: {node: '>= 0.4'} + + is-date-object@1.1.0: + resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} + engines: {node: '>= 0.4'} + + is-decimal@2.0.1: + resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} + + is-extendable@0.1.1: + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} + engines: {node: '>=0.10.0'} + + is-extendable@1.0.1: + resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} + engines: {node: '>=0.10.0'} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-finalizationregistry@1.1.1: + resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} + engines: {node: '>= 0.4'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-generator-function@1.1.0: + resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==} + engines: {node: '>= 0.4'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-hexadecimal@2.0.1: + resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} + + is-interactive@1.0.0: + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} + engines: {node: '>=8'} + + is-lower-case@1.1.3: + resolution: {integrity: sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA==} + + is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + + is-negative-zero@2.0.3: + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + engines: {node: '>= 0.4'} + + is-number-object@1.1.1: + resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} + engines: {node: '>= 0.4'} + + is-number@2.1.0: + resolution: {integrity: sha512-QUzH43Gfb9+5yckcrSA0VBDwEtDUchrk4F6tfJZQuNzDJbEDB9cZNzSfXGQ1jqmdDY/kl41lUOWM9syA8z8jlg==} + engines: {node: '>=0.10.0'} + + is-number@4.0.0: + resolution: {integrity: sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==} + engines: {node: '>=0.10.0'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-obj@1.0.1: + resolution: {integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==} + engines: {node: '>=0.10.0'} + + is-obj@3.0.0: + resolution: {integrity: sha512-IlsXEHOjtKhpN8r/tRFj2nDyTmHvcfNeu/nrRIcXE17ROeatXchkojffa1SpdqW4cr/Fj6QkEf/Gn4zf6KKvEQ==} + engines: {node: '>=12'} + + is-path-cwd@2.2.0: + resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} + engines: {node: '>=6'} + + is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + + is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + + is-plain-object@2.0.4: + resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} + engines: {node: '>=0.10.0'} + + is-reference@3.0.3: + resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==} + + is-regex@1.2.1: + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} + engines: {node: '>= 0.4'} + + is-regexp@1.0.0: + resolution: {integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==} + engines: {node: '>=0.10.0'} + + is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + + is-shared-array-buffer@1.0.4: + resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} + engines: {node: '>= 0.4'} + + is-ssh@1.4.1: + resolution: {integrity: sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==} + + is-stream@1.1.0: + resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} + engines: {node: '>=0.10.0'} + + is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + + is-string@1.1.1: + resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} + engines: {node: '>= 0.4'} + + is-subdir@1.2.0: + resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} + engines: {node: '>=4'} + + is-symbol@1.1.1: + resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} + engines: {node: '>= 0.4'} + + is-typed-array@1.1.15: + resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} + engines: {node: '>= 0.4'} + + is-unicode-supported@0.1.0: + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} + engines: {node: '>=10'} + + is-upper-case@1.1.2: + resolution: {integrity: sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw==} + + is-url-superb@4.0.0: + resolution: {integrity: sha512-GI+WjezhPPcbM+tqE9LnmsY5qqjwHzTvjJ36wxYX5ujNXefSUJ/T17r5bqDV8yLhcgB59KTPNOc9O9cmHTPWsA==} + engines: {node: '>=10'} + + is-url@1.2.4: + resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==} + + is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + + is-weakref@1.1.1: + resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==} + engines: {node: '>= 0.4'} + + is-weakset@2.0.4: + resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} + engines: {node: '>= 0.4'} + + is-windows@1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + + isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + + isbinaryfile@4.0.10: + resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==} + engines: {node: '>= 8.0.0'} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + isobject@2.1.0: + resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} + engines: {node: '>=0.10.0'} + + isobject@3.0.1: + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} + engines: {node: '>=0.10.0'} + + istanbul-lib-coverage@3.2.2: + resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} + engines: {node: '>=8'} + + istanbul-lib-report@3.0.1: + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} + + istanbul-lib-source-maps@5.0.6: + resolution: {integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==} + engines: {node: '>=10'} + + istanbul-reports@3.1.7: + resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} + engines: {node: '>=8'} + + jackspeak@3.4.3: + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + + jackspeak@4.1.1: + resolution: {integrity: sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==} + engines: {node: 20 || >=22} + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-tokens@9.0.1: + resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} + + js-yaml@3.14.1: + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + hasBin: true + + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + jsbn@1.1.0: + resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} + + jsesc@3.1.0: + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} + hasBin: true + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + json5@1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true + + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + + jsonc-parser@3.3.1: + resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==} + + jsonfile@4.0.0: + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + + jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + + katex@0.16.22: + resolution: {integrity: sha512-XCHRdUw4lf3SKBaJe4EvgqIuWwkPSo9XoeO8GjQW94Bp7TWv9hNhzZjZ+OH9yf1UmLygb7DIT5GSFQiyt16zYg==} + hasBin: true + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + khroma@2.1.0: + resolution: {integrity: sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==} + + kind-of@3.2.2: + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} + engines: {node: '>=0.10.0'} + + kind-of@5.1.0: + resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==} + engines: {node: '>=0.10.0'} + + kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + + kleur@4.1.5: + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} + + layout-base@1.0.2: + resolution: {integrity: sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==} + + lazy-cache@2.0.2: + resolution: {integrity: sha512-7vp2Acd2+Kz4XkzxGxaB1FWOi8KjWIWsgdfD5MCb86DWvlLqhRPM+d6Pro3iNEL5VT9mstz5hKAlcd+QR6H3aA==} + engines: {node: '>=0.10.0'} + + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + + list-item@1.1.1: + resolution: {integrity: sha512-S3D0WZ4J6hyM8o5SNKWaMYB1ALSacPZ2nHGEuCjmHZ+dc03gFeNZoNDcqfcnO4vDhTZmNrqrpYZCdXsRh22bzw==} + engines: {node: '>=0.10.0'} + + locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + lodash-es@4.17.21: + resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} + + lodash._reinterpolate@3.0.0: + resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==} + + lodash.camelcase@4.3.0: + resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + + lodash.get@4.4.2: + resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} + deprecated: This package is deprecated. Use the optional chaining (?.) operator instead. + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lodash.startcase@4.4.0: + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + + lodash.template@4.5.0: + resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==} + deprecated: This package is deprecated. Use https://socket.dev/npm/package/eta instead. + + lodash.templatesettings@4.2.0: + resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + log-symbols@3.0.0: + resolution: {integrity: sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==} + engines: {node: '>=8'} + + log-symbols@4.1.0: + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} + engines: {node: '>=10'} + + long@5.3.2: + resolution: {integrity: sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==} + + longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + + loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + + loupe@3.2.0: + resolution: {integrity: sha512-2NCfZcT5VGVNX9mSZIxLRkEAegDGBpuQZBy13desuHeVORmBDyAET4TkJr4SjqQy3A8JDofMN6LpkK8Xcm/dlw==} + + lower-case-first@1.0.2: + resolution: {integrity: sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA==} + + lower-case@1.1.4: + resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==} + + lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + + lru-cache@11.1.0: + resolution: {integrity: sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A==} + engines: {node: 20 || >=22} + + lru-cache@4.1.5: + resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} + + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + lru-cache@7.18.3: + resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} + engines: {node: '>=12'} + + madge@8.0.0: + resolution: {integrity: sha512-9sSsi3TBPhmkTCIpVQF0SPiChj1L7Rq9kU2KDG1o6v2XH9cCw086MopjVCD+vuoL5v8S77DTbVopTO8OUiQpIw==} + engines: {node: '>=18'} + hasBin: true + peerDependencies: + typescript: ^5.4.4 + peerDependenciesMeta: + typescript: + optional: true + + magic-string@0.30.17: + resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} + + magicast@0.3.5: + resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} + + make-dir@2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} + + make-dir@4.0.0: + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} + + make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + + markdown-extensions@1.1.1: + resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==} + engines: {node: '>=0.10.0'} + + markdown-link@0.1.1: + resolution: {integrity: sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==} + engines: {node: '>=0.10.0'} + + markdown-table@3.0.4: + resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} + + match-sorter@6.3.4: + resolution: {integrity: sha512-jfZW7cWS5y/1xswZo8VBOdudUiSd9nifYRWphc9M5D/ee4w4AoXLgBEdRbgVaxbMuagBPeUC5y2Hi8DO6o9aDg==} + + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} + + math-random@1.0.4: + resolution: {integrity: sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==} + + mdast-util-definitions@5.1.2: + resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==} + + mdast-util-find-and-replace@2.2.2: + resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==} + + mdast-util-from-markdown@1.3.1: + resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==} + + mdast-util-gfm-autolink-literal@1.0.3: + resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==} + + mdast-util-gfm-footnote@1.0.2: + resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==} + + mdast-util-gfm-strikethrough@1.0.3: + resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==} + + mdast-util-gfm-table@1.0.7: + resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==} + + mdast-util-gfm-task-list-item@1.0.2: + resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==} + + mdast-util-gfm@2.0.2: + resolution: {integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==} + + mdast-util-math@2.0.2: + resolution: {integrity: sha512-8gmkKVp9v6+Tgjtq6SYx9kGPpTf6FVYRa53/DLh479aldR9AyP48qeVOgNZ5X7QUK7nOy4yw7vg6mbiGcs9jWQ==} + + mdast-util-mdx-expression@1.3.2: + resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==} + + mdast-util-mdx-jsx@2.1.4: + resolution: {integrity: sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==} + + mdast-util-mdx@2.0.1: + resolution: {integrity: sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==} + + mdast-util-mdxjs-esm@1.3.1: + resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==} + + mdast-util-phrasing@3.0.1: + resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==} + + mdast-util-to-hast@12.3.0: + resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==} + + mdast-util-to-hast@13.2.0: + resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} + + mdast-util-to-markdown@1.5.0: + resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==} + + mdast-util-to-string@3.2.0: + resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + mermaid@10.9.3: + resolution: {integrity: sha512-V80X1isSEvAewIL3xhmz/rVmc27CVljcsbWxkxlWJWY/1kQa4XOABqpDl2qQLGKzpKm6WbTfUEKImBlUfFYArw==} + + micromark-core-commonmark@1.1.0: + resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==} + + micromark-extension-gfm-autolink-literal@1.0.5: + resolution: {integrity: sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==} + + micromark-extension-gfm-footnote@1.1.2: + resolution: {integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==} + + micromark-extension-gfm-strikethrough@1.0.7: + resolution: {integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==} + + micromark-extension-gfm-table@1.0.7: + resolution: {integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==} + + micromark-extension-gfm-tagfilter@1.0.2: + resolution: {integrity: sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==} + + micromark-extension-gfm-task-list-item@1.0.5: + resolution: {integrity: sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==} + + micromark-extension-gfm@2.0.3: + resolution: {integrity: sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==} + + micromark-extension-math@2.1.2: + resolution: {integrity: sha512-es0CcOV89VNS9wFmyn+wyFTKweXGW4CEvdaAca6SWRWPyYCbBisnjaHLjWO4Nszuiud84jCpkHsqAJoa768Pvg==} + + micromark-extension-mdx-expression@1.0.8: + resolution: {integrity: sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==} + + micromark-extension-mdx-jsx@1.0.5: + resolution: {integrity: sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==} + + micromark-extension-mdx-md@1.0.1: + resolution: {integrity: sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==} + + micromark-extension-mdxjs-esm@1.0.5: + resolution: {integrity: sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==} + + micromark-extension-mdxjs@1.0.1: + resolution: {integrity: sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==} + + micromark-factory-destination@1.1.0: + resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==} + + micromark-factory-label@1.1.0: + resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==} + + micromark-factory-mdx-expression@1.0.9: + resolution: {integrity: sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==} + + micromark-factory-space@1.1.0: + resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==} + + micromark-factory-title@1.1.0: + resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==} + + micromark-factory-whitespace@1.1.0: + resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==} + + micromark-util-character@1.2.0: + resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==} + + micromark-util-character@2.1.1: + resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} + + micromark-util-chunked@1.1.0: + resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==} + + micromark-util-classify-character@1.1.0: + resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==} + + micromark-util-combine-extensions@1.1.0: + resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==} + + micromark-util-decode-numeric-character-reference@1.1.0: + resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==} + + micromark-util-decode-string@1.1.0: + resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==} + + micromark-util-encode@1.1.0: + resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==} + + micromark-util-encode@2.0.1: + resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} + + micromark-util-events-to-acorn@1.2.3: + resolution: {integrity: sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==} + + micromark-util-html-tag-name@1.2.0: + resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==} + + micromark-util-normalize-identifier@1.1.0: + resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==} + + micromark-util-resolve-all@1.1.0: + resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==} + + micromark-util-sanitize-uri@1.2.0: + resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==} + + micromark-util-sanitize-uri@2.0.1: + resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} + + micromark-util-subtokenize@1.1.0: + resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==} + + micromark-util-symbol@1.1.0: + resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==} + + micromark-util-symbol@2.0.1: + resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} + + micromark-util-types@1.1.0: + resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==} + + micromark-util-types@2.0.2: + resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} + + micromark@3.2.0: + resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + mime@3.0.0: + resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} + engines: {node: '>=10.0.0'} + hasBin: true + + mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + + minimatch@10.0.3: + resolution: {integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==} + engines: {node: 20 || >=22} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} + + mixin-deep@1.3.2: + resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} + engines: {node: '>=0.10.0'} + + mkdirp-classic@0.5.3: + resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} + + mkdirp@0.5.6: + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + hasBin: true + + module-definition@6.0.1: + resolution: {integrity: sha512-FeVc50FTfVVQnolk/WQT8MX+2WVcDnTGiq6Wo+/+lJ2ET1bRVi3HG3YlJUfqagNMc/kUlFSoR96AJkxGpKz13g==} + engines: {node: '>=18'} + hasBin: true + + module-lookup-amd@9.0.5: + resolution: {integrity: sha512-Rs5FVpVcBYRHPLuhHOjgbRhosaQYLtEo3JIeDIbmNo7mSssi1CTzwMh8v36gAzpbzLGXI9wB/yHh+5+3fY1QVw==} + engines: {node: '>=18'} + hasBin: true + + mri@1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + msgpackr-extract@3.0.3: + resolution: {integrity: sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==} + hasBin: true + + msgpackr@1.11.5: + resolution: {integrity: sha512-UjkUHN0yqp9RWKy0Lplhh+wlpdt9oQBYgULZOiFhV3VclSF1JnSQWZ5r9gORQlNYaUKQoR8itv7g7z1xDDuACA==} + + multipasta@0.2.7: + resolution: {integrity: sha512-KPA58d68KgGil15oDqXjkUBEBYc00XvbPj5/X+dyzeo/lWm9Nc25pQRlf1D+gv4OpK7NM0J1odrbu9JNNGvynA==} + + mute-stream@0.0.8: + resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + + nan@2.23.0: + resolution: {integrity: sha512-1UxuyYGdoQHcGg87Lkqm3FzefucTa0NAiOcuRsDmysep3c1LVCRK2krrUDafMWtjSG04htvAmvg96+SDknOmgQ==} + + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + napi-postinstall@0.3.2: + resolution: {integrity: sha512-tWVJxJHmBWLy69PvO96TZMZDrzmw5KeiZBz3RHmiM2XZ9grBJ2WgMAFVVg25nqp3ZjTFUs2Ftw1JhscL3Teliw==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + hasBin: true + + natural-compare-lite@1.4.0: + resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + neo-async@2.6.2: + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + + netmask@2.0.2: + resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} + engines: {node: '>= 0.4.0'} + + next-mdx-remote@4.4.1: + resolution: {integrity: sha512-1BvyXaIou6xy3XoNF4yaMZUCb6vD2GTAa5ciOa6WoO+gAUTYsb1K4rI/HSC2ogAWLrb/7VSV52skz07vOzmqIQ==} + engines: {node: '>=14', npm: '>=7'} + peerDependencies: + react: '>=16.x <=18.x' + react-dom: '>=16.x <=18.x' + + next-seo@6.8.0: + resolution: {integrity: sha512-zcxaV67PFXCSf8e6SXxbxPaOTgc8St/esxfsYXfQXMM24UESUVSXFm7f2A9HMkAwa0Gqn4s64HxYZAGfdF4Vhg==} + peerDependencies: + next: ^8.1.1-canary.54 || >=9.0.0 + react: '>=16.0.0' + react-dom: '>=16.0.0' + + next-themes@0.2.1: + resolution: {integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==} + peerDependencies: + next: '*' + react: '*' + react-dom: '*' + + next@14.2.30: + resolution: {integrity: sha512-+COdu6HQrHHFQ1S/8BBsCag61jZacmvbuL2avHvQFbWa2Ox7bE+d8FyNgxRLjXQ5wtPyQwEmk85js/AuaG2Sbg==} + engines: {node: '>=18.17.0'} + hasBin: true + peerDependencies: + '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.41.2 + react: ^18.2.0 + react-dom: ^18.2.0 + sass: ^1.3.0 + peerDependenciesMeta: + '@opentelemetry/api': + optional: true + '@playwright/test': + optional: true + sass: + optional: true + + nextra-theme-docs@2.13.4: + resolution: {integrity: sha512-2XOoMfwBCTYBt8ds4ZHftt9Wyf2XsykiNo02eir/XEYB+sGeUoE77kzqfidjEOKCSzOHYbK9BDMcg2+B/2vYRw==} + peerDependencies: + next: '>=9.5.3' + nextra: 2.13.4 + react: '>=16.13.1' + react-dom: '>=16.13.1' + + nextra@2.13.4: + resolution: {integrity: sha512-7of2rSBxuUa3+lbMmZwG9cqgftcoNOVQLTT6Rxf3EhBR9t1EI7b43dted8YoqSNaigdE3j1CoyNkX8N/ZzlEpw==} + engines: {node: '>=16'} + peerDependencies: + next: '>=9.5.3' + react: '>=16.13.1' + react-dom: '>=16.13.1' + + no-case@2.3.2: + resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==} + + node-addon-api@7.1.1: + resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} + + node-fetch@2.7.0: + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + + node-gyp-build-optional-packages@5.2.2: + resolution: {integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==} + hasBin: true + + node-plop@0.26.3: + resolution: {integrity: sha512-Cov028YhBZ5aB7MdMWJEmwyBig43aGL5WT4vdoB28Oitau1zZAcHUn8Sgfk9HM33TqhtLJ9PlM/O0Mv+QpV/4Q==} + engines: {node: '>=8.9.4'} + + node-releases@2.0.19: + resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + + node-source-walk@7.0.1: + resolution: {integrity: sha512-3VW/8JpPqPvnJvseXowjZcirPisssnBuDikk6JIZ8jQzF7KJQX52iPFX4RYYxLycYH7IbMRSPUOga/esVjy5Yg==} + engines: {node: '>=18'} + + non-layered-tidy-tree-layout@2.0.2: + resolution: {integrity: sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + npm-run-path@2.0.2: + resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} + engines: {node: '>=4'} + + npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + + npm-to-yarn@2.2.1: + resolution: {integrity: sha512-O/j/ROyX0KGLG7O6Ieut/seQ0oiTpHF2tXAcFbpdTLQFiaNtkyTXXocM1fwpaa60dg1qpWj0nHlbNhx6qwuENQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + object-inspect@1.13.4: + resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} + engines: {node: '>= 0.4'} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object.assign@4.1.7: + resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} + engines: {node: '>= 0.4'} + + object.fromentries@2.0.8: + resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} + engines: {node: '>= 0.4'} + + object.groupby@1.0.3: + resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} + engines: {node: '>= 0.4'} + + object.pick@1.3.0: + resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} + engines: {node: '>=0.10.0'} + + object.values@1.2.1: + resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} + engines: {node: '>= 0.4'} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + + ora@4.1.1: + resolution: {integrity: sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==} + engines: {node: '>=8'} + + ora@5.4.1: + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} + engines: {node: '>=10'} + + os-tmpdir@1.0.2: + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} + engines: {node: '>=0.10.0'} + + outdent@0.5.0: + resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} + + own-keys@1.0.1: + resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} + engines: {node: '>= 0.4'} + + p-filter@2.1.0: + resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} + engines: {node: '>=8'} + + p-finally@1.0.0: + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} + + p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + p-map@2.1.0: + resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} + engines: {node: '>=6'} + + p-map@3.0.0: + resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} + engines: {node: '>=8'} + + p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + + pac-proxy-agent@7.2.0: + resolution: {integrity: sha512-TEB8ESquiLMc0lV8vcd5Ql/JAKAoyzHFXaStwjkzpOpC5Yv+pIzLfHvjTSdf3vpa2bMiUQrg9i6276yn8666aA==} + engines: {node: '>= 14'} + + pac-resolver@7.0.1: + resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==} + engines: {node: '>= 14'} + + package-json-from-dist@1.0.1: + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + + package-manager-detector@0.2.11: + resolution: {integrity: sha512-BEnLolu+yuz22S56CU1SUKq3XC3PkwD5wv4ikR4MfGvnRVcmzXR9DwSlW2fEamyTPyXHomBJRzgapeuBvRNzJQ==} + + param-case@2.1.1: + resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parse-entities@4.0.2: + resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==} + + parse-ms@2.1.0: + resolution: {integrity: sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==} + engines: {node: '>=6'} + + parse-numeric-range@1.3.0: + resolution: {integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==} + + parse-path@7.1.0: + resolution: {integrity: sha512-EuCycjZtfPcjWk7KTksnJ5xPMvWGA/6i4zrLYhRG0hGvC3GPU/jGUj3Cy+ZR0v30duV3e23R95T1lE2+lsndSw==} + + parse-url@8.1.0: + resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} + + parse5@7.3.0: + resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} + + pascal-case@2.0.1: + resolution: {integrity: sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==} + + path-case@2.1.1: + resolution: {integrity: sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q==} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-key@2.0.1: + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + + path-scurry@2.0.0: + resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==} + engines: {node: 20 || >=22} + + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + + pathe@2.0.3: + resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} + + pathval@2.0.1: + resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==} + engines: {node: '>= 14.16'} + + periscopic@3.1.0: + resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} + + picocolors@1.0.1: + resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + picomatch@4.0.3: + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} + engines: {node: '>=12'} + + pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + + pluralize@8.0.0: + resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} + engines: {node: '>=4'} + + possible-typed-array-names@1.1.0: + resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} + engines: {node: '>= 0.4'} + + postcss-values-parser@6.0.2: + resolution: {integrity: sha512-YLJpK0N1brcNJrs9WatuJFtHaV9q5aAOj+S4DI5S7jgHlRfm0PIbDCAFRYMQD5SHq7Fy6xsDhyutgS0QOAs0qw==} + engines: {node: '>=10'} + peerDependencies: + postcss: ^8.2.9 + + postcss@8.4.31: + resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} + engines: {node: ^10 || ^12 || >=14} + + postcss@8.5.6: + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} + engines: {node: ^10 || ^12 || >=14} + + precinct@12.2.0: + resolution: {integrity: sha512-NFBMuwIfaJ4SocE9YXPU/n4AcNSoFMVFjP72nvl3cx69j/ke61/hPOWFREVxLkFhhEGnA8ZuVfTqJBa+PK3b5w==} + engines: {node: '>=18'} + hasBin: true + + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + + prettier-linter-helpers@1.0.0: + resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} + engines: {node: '>=6.0.0'} + + prettier@2.8.8: + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} + engines: {node: '>=10.13.0'} + hasBin: true + + prettier@3.6.2: + resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==} + engines: {node: '>=14'} + hasBin: true + + pretty-ms@7.0.1: + resolution: {integrity: sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==} + engines: {node: '>=10'} + + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + property-information@6.5.0: + resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} + + property-information@7.1.0: + resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==} + + protobufjs@7.5.3: + resolution: {integrity: sha512-sildjKwVqOI2kmFDiXQ6aEB0fjYTafpEvIBs8tOR8qI4spuL9OPROLVu2qZqi/xgCfsHIwVqlaF8JBjWFHnKbw==} + engines: {node: '>=12.0.0'} + + protocols@2.0.2: + resolution: {integrity: sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==} + + proxy-agent@6.5.0: + resolution: {integrity: sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==} + engines: {node: '>= 14'} + + proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + + pseudomap@1.0.2: + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} + + pump@3.0.3: + resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + pure-rand@6.1.0: + resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} + + quansync@0.2.10: + resolution: {integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + quote-unquote@1.0.0: + resolution: {integrity: sha512-twwRO/ilhlG/FIgYeKGFqyHhoEhqgnKVkcmqMKi2r524gz3ZbDTcyFt38E9xjJI2vT+KbRNHVbnJ/e0I25Azwg==} + + randomatic@3.1.1: + resolution: {integrity: sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==} + engines: {node: '>= 0.10.0'} + + rc@1.2.8: + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + hasBin: true + + react-dom@18.3.1: + resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + peerDependencies: + react: ^18.3.1 + + react@18.3.1: + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} + engines: {node: '>=0.10.0'} + + read-yaml-file@1.1.0: + resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} + engines: {node: '>=6'} + + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + + readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + + readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + + reading-time@1.5.0: + resolution: {integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==} + + reflect.getprototypeof@1.0.10: + resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} + engines: {node: '>= 0.4'} + + regexp.prototype.flags@1.5.4: + resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} + engines: {node: '>= 0.4'} + + registry-auth-token@3.3.2: + resolution: {integrity: sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==} + + registry-url@3.1.0: + resolution: {integrity: sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==} + engines: {node: '>=0.10.0'} + + rehype-katex@7.0.1: + resolution: {integrity: sha512-OiM2wrZ/wuhKkigASodFoo8wimG3H12LWQaH8qSPVJn9apWKFSH3YOCtbKpBorTVw/eI7cuT21XBbvwEswbIOA==} + + rehype-pretty-code@0.9.11: + resolution: {integrity: sha512-Eq90eCYXQJISktfRZ8PPtwc5SUyH6fJcxS8XOMnHPUQZBtC6RYo67gGlley9X2nR8vlniPj0/7oCDEYHKQa/oA==} + engines: {node: '>=16'} + peerDependencies: + shiki: '*' + + rehype-raw@7.0.0: + resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} + + remark-gfm@3.0.1: + resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==} + + remark-math@5.1.1: + resolution: {integrity: sha512-cE5T2R/xLVtfFI4cCePtiRn+e6jKMtFDR3P8V3qpv8wpKjwvHoBA4eJzvX+nVrnlNy0911bdGmuspCSwetfYHw==} + + remark-mdx@2.3.0: + resolution: {integrity: sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==} + + remark-parse@10.0.2: + resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==} + + remark-reading-time@2.0.2: + resolution: {integrity: sha512-ILjIuR0dQQ8pELPgaFvz7ralcSN62rD/L1pTUJgWb4gfua3ZwYEI8mnKGxEQCbrXSUF/OvycTkcUbifGOtOn5A==} + + remark-rehype@10.1.0: + resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==} + + remarkable@1.7.4: + resolution: {integrity: sha512-e6NKUXgX95whv7IgddywbeN/ItCkWbISmc2DiqHJb0wTrqZIexqdco5b8Z3XZoo/48IdNVKM9ZCvTPJ4F5uvhg==} + engines: {node: '>= 0.10.0'} + hasBin: true + + remove-accents@0.5.0: + resolution: {integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==} + + repeat-element@1.1.4: + resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} + engines: {node: '>=0.10.0'} + + repeat-string@1.6.1: + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} + + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + requirejs-config-file@4.0.0: + resolution: {integrity: sha512-jnIre8cbWOyvr8a5F2KuqBnY+SDA4NXr/hzEZJG79Mxm2WiFQz2dzhC8ibtPJS7zkmBEl1mxSwp5HhC1W4qpxw==} + engines: {node: '>=10.13.0'} + + requirejs@2.3.7: + resolution: {integrity: sha512-DouTG8T1WanGok6Qjg2SXuCMzszOo0eHeH9hDZ5Y4x8Je+9JB38HdTLT4/VA8OaUhBa0JPVHJ0pyBkM1z+pDsw==} + engines: {node: '>=0.4.0'} + hasBin: true + + resolve-dependency-path@4.0.1: + resolution: {integrity: sha512-YQftIIC4vzO9UMhO/sCgXukNyiwVRCVaxiWskCBy7Zpqkplm8kTAISZ8O1MoKW1ca6xzgLUBjZTcDgypXvXxiQ==} + engines: {node: '>=18'} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + + resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + + resolve@1.22.10: + resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} + engines: {node: '>= 0.4'} + hasBin: true + + restore-cursor@3.1.0: + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} + engines: {node: '>=8'} + + reusify@1.1.0: + resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + rimraf@6.0.1: + resolution: {integrity: sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==} + engines: {node: 20 || >=22} + hasBin: true + + robust-predicates@3.0.2: + resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==} + + rollup@4.46.1: + resolution: {integrity: sha512-33xGNBsDJAkzt0PvninskHlWnTIPgDtTwhg0U38CUoNP/7H6wI2Cz6dUeoNPbjdTdsYTGuiFFASuUOWovH0SyQ==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + run-async@2.4.1: + resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} + engines: {node: '>=0.12.0'} + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + rw@1.3.3: + resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==} + + rxjs@6.6.7: + resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} + engines: {npm: '>=2.0.0'} + + rxjs@7.8.2: + resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==} + + sade@1.8.1: + resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} + engines: {node: '>=6'} + + safe-array-concat@1.1.3: + resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} + engines: {node: '>=0.4'} + + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + + safe-push-apply@1.0.0: + resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} + engines: {node: '>= 0.4'} + + safe-regex-test@1.1.0: + resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} + engines: {node: '>= 0.4'} + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + sass-lookup@6.1.0: + resolution: {integrity: sha512-Zx+lVyoWqXZxHuYWlTA17Z5sczJ6braNT2C7rmClw+c4E7r/n911Zwss3h1uHI9reR5AgHZyNHF7c2+VIp5AUA==} + engines: {node: '>=18'} + hasBin: true + + scheduler@0.23.2: + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + + scroll-into-view-if-needed@3.1.0: + resolution: {integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==} + + section-matter@1.0.0: + resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} + engines: {node: '>=4'} + + semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.6.2: + resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} + engines: {node: '>=10'} + hasBin: true + + semver@7.7.2: + resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} + engines: {node: '>=10'} + hasBin: true + + sentence-case@2.1.1: + resolution: {integrity: sha512-ENl7cYHaK/Ktwk5OTD+aDbQ3uC8IByu/6Bkg+HDv8Mm+XnBnppVNalcfJTNsp1ibstKh030/JKQQWglDvtKwEQ==} + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + + set-getter@0.1.1: + resolution: {integrity: sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==} + engines: {node: '>=0.10.0'} + + set-proto@1.0.0: + resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} + engines: {node: '>= 0.4'} + + shebang-command@1.2.0: + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@1.0.0: + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + shiki@0.14.7: + resolution: {integrity: sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==} + + side-channel-list@1.0.0: + resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} + engines: {node: '>= 0.4'} + + side-channel-map@1.0.1: + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + engines: {node: '>= 0.4'} + + side-channel-weakmap@1.0.2: + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} + + side-channel@1.1.0: + resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} + engines: {node: '>= 0.4'} + + siginfo@2.0.0: + resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} + + signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + slash@2.0.0: + resolution: {integrity: sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==} + engines: {node: '>=6'} + + slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + + smart-buffer@4.2.0: + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + + snake-case@2.1.0: + resolution: {integrity: sha512-FMR5YoPFwOLuh4rRz92dywJjyKYZNLpMn1R5ujVpIYkbA9p01fq8RMg0FkO4M+Yobt4MjHeLTJVm5xFFBHSV2Q==} + + socks-proxy-agent@8.0.5: + resolution: {integrity: sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==} + engines: {node: '>= 14'} + + socks@2.8.6: + resolution: {integrity: sha512-pe4Y2yzru68lXCb38aAqRf5gvN8YdjP1lok5o0J7BOHljkyCGKVz7H3vpVIXKD27rj2giOJ7DwVyk/GWrPHDWA==} + engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} + + sort-keys@5.1.0: + resolution: {integrity: sha512-aSbHV0DaBcr7u0PVHXzM6NbZNAtrr9sF6+Qfs9UUVG7Ll3jQ6hHi8F/xqIIcn2rvIVbr0v/2zyjSdwSV47AgLQ==} + engines: {node: '>=12'} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + source-map@0.7.6: + resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==} + engines: {node: '>= 12'} + + space-separated-tokens@2.0.2: + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} + + spawndamnit@3.0.1: + resolution: {integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==} + + split-ca@1.0.1: + resolution: {integrity: sha512-Q5thBSxp5t8WPTTJQS59LrGqOZqOsrhDGDVm8azCqIBjSBd7nd9o2PM+mDulQQkh8h//4U6hFZnc/mul8t5pWQ==} + + sprintf-js@1.0.3: + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + + sprintf-js@1.1.3: + resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} + + ssh2@1.16.0: + resolution: {integrity: sha512-r1X4KsBGedJqo7h8F5c4Ybpcr5RjyP+aWIG007uBPRjmdQWfEiVLzSK71Zji1B9sKxwaCvD8y8cwSkYrlLiRRg==} + engines: {node: '>=10.16.0'} + + stable-hash-x@0.2.0: + resolution: {integrity: sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ==} + engines: {node: '>=12.0.0'} + + stackback@0.0.2: + resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} + + std-env@3.9.0: + resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==} + + stop-iteration-iterator@1.1.0: + resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==} + engines: {node: '>= 0.4'} + + stream-to-array@2.3.0: + resolution: {integrity: sha512-UsZtOYEn4tWU2RGLOXr/o/xjRBftZRlG3dEWoaHr8j4GuypJ3isitGbVyjQKAuMu+xbiop8q224TjiZWc4XTZA==} + + streamsearch@1.1.0: + resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} + engines: {node: '>=10.0.0'} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + + string.prototype.trim@1.2.10: + resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} + engines: {node: '>= 0.4'} + + string.prototype.trimend@1.0.9: + resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} + engines: {node: '>= 0.4'} + + string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + + string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + + stringify-entities@4.0.4: + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} + + stringify-object@3.3.0: + resolution: {integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==} + engines: {node: '>=4'} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + + strip-bom-string@1.0.0: + resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} + engines: {node: '>=0.10.0'} + + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + + strip-color@0.1.0: + resolution: {integrity: sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==} + engines: {node: '>=0.10.0'} + + strip-eof@1.0.0: + resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} + engines: {node: '>=0.10.0'} + + strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + + strip-json-comments@2.0.1: + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} + engines: {node: '>=0.10.0'} + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + strip-literal@3.0.0: + resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==} + + style-to-object@0.4.4: + resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==} + + styled-jsx@5.1.1: + resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} + engines: {node: '>= 12.0.0'} + peerDependencies: + '@babel/core': '*' + babel-plugin-macros: '*' + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' + peerDependenciesMeta: + '@babel/core': + optional: true + babel-plugin-macros: + optional: true + + stylis@4.3.6: + resolution: {integrity: sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==} + + stylus-lookup@6.1.0: + resolution: {integrity: sha512-5QSwgxAzXPMN+yugy61C60PhoANdItfdjSEZR8siFwz7yL9jTmV0UBKDCfn3K8GkGB4g0Y9py7vTCX8rFu4/pQ==} + engines: {node: '>=18'} + hasBin: true + + supports-color@4.5.0: + resolution: {integrity: sha512-ycQR/UbvI9xIlEdQT1TQqwoXtEldExbCEAJgRo5YXlmSKjv6ThHnP9/vwGa1gr19Gfw+LkFd7KqYMhzrRC5JYw==} + engines: {node: '>=4'} + + supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + swap-case@1.1.2: + resolution: {integrity: sha512-BAmWG6/bx8syfc6qXPprof3Mn5vQgf5dwdUNJhsNqU9WdPt5P+ES/wQ5bxfijy8zwZgZZHslC3iAsxsuQMCzJQ==} + + tapable@2.2.2: + resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==} + engines: {node: '>=6'} + + tar-fs@2.1.3: + resolution: {integrity: sha512-090nwYJDmlhwFwEW3QQl+vaNnxsO2yVsd45eTKRBzSzu+hlb1w2K9inVq5b0ngXuLVqQ4ApvsUHHnu/zQNkWAg==} + + tar-stream@2.2.0: + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} + engines: {node: '>=6'} + + term-size@2.2.1: + resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} + engines: {node: '>=8'} + + test-exclude@7.0.1: + resolution: {integrity: sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==} + engines: {node: '>=18'} + + through2@2.0.5: + resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + + through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + + tinybench@2.9.0: + resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} + + tinycolor2@1.6.0: + resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} + + tinyexec@0.3.2: + resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} + + tinyglobby@0.2.14: + resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} + engines: {node: '>=12.0.0'} + + tinygradient@1.1.5: + resolution: {integrity: sha512-8nIfc2vgQ4TeLnk2lFj4tRLvvJwEfQuabdsmvDdQPT0xlk9TaNtpGd6nNRxXoK6vQhN6RSzj+Cnp5tTQmpxmbw==} + + tinypool@1.1.1: + resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==} + engines: {node: ^18.0.0 || >=20.0.0} + + tinyrainbow@2.0.0: + resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} + engines: {node: '>=14.0.0'} + + tinyspy@4.0.3: + resolution: {integrity: sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==} + engines: {node: '>=14.0.0'} + + title-case@2.1.1: + resolution: {integrity: sha512-EkJoZ2O3zdCz3zJsYCsxyq2OC5hrxR9mfdd5I+w8h/tmFfeOxJ+vvkxsKxdmN0WtS9zLdHEgfgVOiMVgv+Po4Q==} + + title@3.5.3: + resolution: {integrity: sha512-20JyowYglSEeCvZv3EZ0nZ046vLarO37prvV0mbtQV7C8DJPGgN967r8SJkqd3XK3K3lD3/Iyfp3avjfil8Q2Q==} + hasBin: true + + titleize@1.0.0: + resolution: {integrity: sha512-TARUb7z1pGvlLxgPk++7wJ6aycXF3GJ0sNSBTAsTuJrQG5QuZlkUQP+zl+nbjAh4gMX9yDw9ZYklMd7vAfJKEw==} + engines: {node: '>=0.10.0'} + + tmp@0.0.33: + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} + + to-object-path@0.3.0: + resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} + engines: {node: '>=0.10.0'} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + + trim-lines@3.0.1: + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} + + trough@2.2.0: + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + + ts-api-utils@2.1.0: + resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} + engines: {node: '>=18.12'} + peerDependencies: + typescript: '>=4.8.4' + + ts-dedent@2.2.0: + resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} + engines: {node: '>=6.10'} + + ts-graphviz@2.1.6: + resolution: {integrity: sha512-XyLVuhBVvdJTJr2FJJV2L1pc4MwSjMhcunRVgDE9k4wbb2ee7ORYnPewxMWUav12vxyfUM686MSGsqnVRIInuw==} + engines: {node: '>=18'} + + ts-node@10.9.2: + resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + + tsconfig-paths@3.15.0: + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + + tsconfig-paths@4.2.0: + resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} + engines: {node: '>=6'} + + tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + tsx@4.20.3: + resolution: {integrity: sha512-qjbnuR9Tr+FJOMBqJCW5ehvIo/buZq7vH7qD7JziU98h6l3qGy0a/yPFjwO+y0/T7GFpNgNAvEcPPVfyT8rrPQ==} + engines: {node: '>=18.0.0'} + hasBin: true + + turbo-darwin-64@2.5.5: + resolution: {integrity: sha512-RYnTz49u4F5tDD2SUwwtlynABNBAfbyT2uU/brJcyh5k6lDLyNfYKdKmqd3K2ls4AaiALWrFKVSBsiVwhdFNzQ==} + cpu: [x64] + os: [darwin] + + turbo-darwin-arm64@2.5.5: + resolution: {integrity: sha512-Tk+ZeSNdBobZiMw9aFypQt0DlLsWSFWu1ymqsAdJLuPoAH05qCfYtRxE1pJuYHcJB5pqI+/HOxtJoQ40726Btw==} + cpu: [arm64] + os: [darwin] + + turbo-linux-64@2.5.5: + resolution: {integrity: sha512-2/XvMGykD7VgsvWesZZYIIVXMlgBcQy+ZAryjugoTcvJv8TZzSU/B1nShcA7IAjZ0q7OsZ45uP2cOb8EgKT30w==} + cpu: [x64] + os: [linux] + + turbo-linux-arm64@2.5.5: + resolution: {integrity: sha512-DW+8CjCjybu0d7TFm9dovTTVg1VRnlkZ1rceO4zqsaLrit3DgHnN4to4uwyuf9s2V/BwS3IYcRy+HG9BL596Iw==} + cpu: [arm64] + os: [linux] + + turbo-windows-64@2.5.5: + resolution: {integrity: sha512-q5p1BOy8ChtSZfULuF1BhFMYIx6bevXu4fJ+TE/hyNfyHJIfjl90Z6jWdqAlyaFLmn99X/uw+7d6T/Y/dr5JwQ==} + cpu: [x64] + os: [win32] + + turbo-windows-arm64@2.5.5: + resolution: {integrity: sha512-AXbF1KmpHUq3PKQwddMGoKMYhHsy5t1YBQO8HZ04HLMR0rWv9adYlQ8kaeQJTko1Ay1anOBFTqaxfVOOsu7+1Q==} + cpu: [arm64] + os: [win32] + + turbo@2.5.5: + resolution: {integrity: sha512-eZ7wI6KjtT1eBqCnh2JPXWNUAxtoxxfi6VdBdZFvil0ychCOTxbm7YLRBi1JSt7U3c+u3CLxpoPxLdvr/Npr3A==} + hasBin: true + + tweetnacl@0.14.5: + resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + type-fest@0.21.3: + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} + engines: {node: '>=10'} + + type-fest@1.4.0: + resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} + engines: {node: '>=10'} + + typed-array-buffer@1.0.3: + resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} + engines: {node: '>= 0.4'} + + typed-array-byte-length@1.0.3: + resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} + engines: {node: '>= 0.4'} + + typed-array-byte-offset@1.0.4: + resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} + engines: {node: '>= 0.4'} + + typed-array-length@1.0.7: + resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} + engines: {node: '>= 0.4'} + + typedarray@0.0.6: + resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} + + typescript@5.8.3: + resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} + engines: {node: '>=14.17'} + hasBin: true + + uglify-js@3.19.3: + resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} + engines: {node: '>=0.8.0'} + hasBin: true + + unbox-primitive@1.1.0: + resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} + engines: {node: '>= 0.4'} + + undici-types@5.26.5: + resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + + undici-types@6.21.0: + resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} + + undici@7.12.0: + resolution: {integrity: sha512-GrKEsc3ughskmGA9jevVlIOPMiiAHJ4OFUtaAH+NhfTUSiZ1wMPIQqQvAJUrJspFXJt3EBWgpAeoHEDVT1IBug==} + engines: {node: '>=20.18.1'} + + unified@10.1.2: + resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} + + unist-util-find-after@5.0.0: + resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} + + unist-util-generated@2.0.1: + resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==} + + unist-util-is@5.2.1: + resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} + + unist-util-is@6.0.0: + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} + + unist-util-position-from-estree@1.1.2: + resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==} + + unist-util-position@4.0.4: + resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==} + + unist-util-position@5.0.0: + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} + + unist-util-remove-position@4.0.2: + resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==} + + unist-util-remove-position@5.0.0: + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} + + unist-util-remove@4.0.0: + resolution: {integrity: sha512-b4gokeGId57UVRX/eVKej5gXqGlc9+trkORhFJpu9raqZkZhU0zm8Doi05+HaiBsMEIJowL+2WtQ5ItjsngPXg==} + + unist-util-stringify-position@3.0.3: + resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} + + unist-util-stringify-position@4.0.0: + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} + + unist-util-visit-parents@4.1.1: + resolution: {integrity: sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==} + + unist-util-visit-parents@5.1.3: + resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} + + unist-util-visit-parents@6.0.1: + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} + + unist-util-visit@3.1.0: + resolution: {integrity: sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==} + + unist-util-visit@4.1.2: + resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} + + unist-util-visit@5.0.0: + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} + + universalify@0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} + + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + + unrs-resolver@1.11.1: + resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==} + + update-browserslist-db@1.1.3: + resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + + update-check@1.5.4: + resolution: {integrity: sha512-5YHsflzHP4t1G+8WGPlvKbJEbAJGCgw+Em+dGR1KmBUbr1J36SJBqlHLjR7oob7sco5hWHGQVcr9B2poIVDDTQ==} + + upper-case-first@1.1.2: + resolution: {integrity: sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ==} + + upper-case@1.1.3: + resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==} + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + uuid@10.0.0: + resolution: {integrity: sha512-8XkAphELsDnEGrDxUOHB3RGvXz6TeuYSGEZBOjtTtPm2lwhGBjLgOzLHB63IUWfBpNucQjND6d3AOudO+H3RWQ==} + hasBin: true + + uuid@11.1.0: + resolution: {integrity: sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==} + hasBin: true + + uuid@9.0.1: + resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} + hasBin: true + + uvu@0.5.6: + resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} + engines: {node: '>=8'} + hasBin: true + + v8-compile-cache-lib@3.0.1: + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + + validate-npm-package-name@5.0.1: + resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + vfile-location@5.0.3: + resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} + + vfile-matter@3.0.1: + resolution: {integrity: sha512-CAAIDwnh6ZdtrqAuxdElUqQRQDQgbbIrYtDYI8gCjXS1qQ+1XdLoK8FIZWxJwn0/I+BkSSZpar3SOgjemQz4fg==} + + vfile-message@3.1.4: + resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} + + vfile-message@4.0.3: + resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==} + + vfile@5.3.7: + resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} + + vfile@6.0.3: + resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} + + vite-node@3.2.4: + resolution: {integrity: sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + + vite@5.4.19: + resolution: {integrity: sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || >=20.0.0 + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + + vitest@3.2.4: + resolution: {integrity: sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + peerDependencies: + '@edge-runtime/vm': '*' + '@types/debug': ^4.1.12 + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + '@vitest/browser': 3.2.4 + '@vitest/ui': 3.2.4 + happy-dom: '*' + jsdom: '*' + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@types/debug': + optional: true + '@types/node': + optional: true + '@vitest/browser': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: + optional: true + + vscode-oniguruma@1.7.0: + resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==} + + vscode-textmate@8.0.0: + resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==} + + walkdir@0.4.1: + resolution: {integrity: sha512-3eBwRyEln6E1MSzcxcVpQIhRG8Q1jLvEqRmCZqS3dsfXEDR/AhOF4d+jHg1qvDCpYaVRZjENPQyrVxAkQqxPgQ==} + engines: {node: '>=6.0.0'} + + wcwidth@1.0.1: + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + + web-namespaces@2.0.1: + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} + + web-worker@1.5.0: + resolution: {integrity: sha512-RiMReJrTAiA+mBjGONMnjVDP2u3p9R1vkcGz6gDIrOMT3oGuYwX2WRMYI9ipkphSuE5XKEhydbhNEJh4NY9mlw==} + + webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + + whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + + which-boxed-primitive@1.1.1: + resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} + engines: {node: '>= 0.4'} + + which-builtin-type@1.2.1: + resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} + engines: {node: '>= 0.4'} + + which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + + which-typed-array@1.1.19: + resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} + engines: {node: '>= 0.4'} + + which@1.3.1: + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + hasBin: true + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + why-is-node-running@2.3.0: + resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} + engines: {node: '>=8'} + hasBin: true + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + wordwrap@1.0.0: + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + + wrap-ansi@6.2.0: + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} + engines: {node: '>=8'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + ws@8.18.3: + resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yallist@2.1.2: + resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} + + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + + yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + zod@3.25.76: + resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} + + zwitch@2.0.4: + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + +snapshots: + + '@ampproject/remapping@2.3.0': + dependencies: + '@jridgewell/gen-mapping': 0.3.12 + '@jridgewell/trace-mapping': 0.3.29 + + '@babel/cli@7.28.0(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@jridgewell/trace-mapping': 0.3.29 + commander: 6.2.1 + convert-source-map: 2.0.0 + fs-readdir-recursive: 1.1.0 + glob: 7.2.3 + make-dir: 2.1.0 + slash: 2.0.0 + optionalDependencies: + '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3 + chokidar: 3.6.0 + + '@babel/code-frame@7.27.1': + dependencies: + '@babel/helper-validator-identifier': 7.27.1 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/compat-data@7.28.0': {} + + '@babel/core@7.28.0': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.0 + '@babel/helper-compilation-targets': 7.27.2 + '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0) + '@babel/helpers': 7.28.2 + '@babel/parser': 7.28.0 + '@babel/template': 7.27.2 + '@babel/traverse': 7.28.0 + '@babel/types': 7.28.2 + convert-source-map: 2.0.0 + debug: 4.4.1 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/generator@7.28.0': + dependencies: + '@babel/parser': 7.28.0 + '@babel/types': 7.28.2 + '@jridgewell/gen-mapping': 0.3.12 + '@jridgewell/trace-mapping': 0.3.29 + jsesc: 3.1.0 + + '@babel/helper-compilation-targets@7.27.2': + dependencies: + '@babel/compat-data': 7.28.0 + '@babel/helper-validator-option': 7.27.1 + browserslist: 4.25.1 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-globals@7.28.0': {} + + '@babel/helper-module-imports@7.27.1': + dependencies: + '@babel/traverse': 7.28.0 + '@babel/types': 7.28.2 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.27.3(@babel/core@7.28.0)': + dependencies: + '@babel/core': 7.28.0 + '@babel/helper-module-imports': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + '@babel/traverse': 7.28.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-string-parser@7.27.1': {} + + '@babel/helper-validator-identifier@7.27.1': {} + + '@babel/helper-validator-option@7.27.1': {} + + '@babel/helpers@7.28.2': + dependencies: + '@babel/template': 7.27.2 + '@babel/types': 7.28.2 + + '@babel/parser@7.28.0': + dependencies: + '@babel/types': 7.28.2 + + '@babel/runtime-corejs3@7.28.2': + dependencies: + core-js-pure: 3.44.0 + + '@babel/runtime@7.28.2': {} + + '@babel/template@7.27.2': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/parser': 7.28.0 + '@babel/types': 7.28.2 + + '@babel/traverse@7.28.0': + dependencies: + '@babel/code-frame': 7.27.1 + '@babel/generator': 7.28.0 + '@babel/helper-globals': 7.28.0 + '@babel/parser': 7.28.0 + '@babel/template': 7.27.2 + '@babel/types': 7.28.2 + debug: 4.4.1 + transitivePeerDependencies: + - supports-color + + '@babel/types@7.28.2': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.27.1 + + '@balena/dockerignore@1.0.2': {} + + '@bcoe/v8-coverage@1.0.2': {} + + '@braintree/sanitize-url@6.0.4': {} + + '@changesets/apply-release-plan@7.0.12': + dependencies: + '@changesets/config': 3.1.1 + '@changesets/get-version-range-type': 0.4.0 + '@changesets/git': 3.0.4 + '@changesets/should-skip-package': 0.1.2 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 + detect-indent: 6.1.0 + fs-extra: 7.0.1 + lodash.startcase: 4.4.0 + outdent: 0.5.0 + prettier: 2.8.8 + resolve-from: 5.0.0 + semver: 7.6.2 + + '@changesets/assemble-release-plan@6.0.9': + dependencies: + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.1.3 + '@changesets/should-skip-package': 0.1.2 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 + semver: 7.6.2 + + '@changesets/changelog-git@0.2.1': + dependencies: + '@changesets/types': 6.1.0 + + '@changesets/changelog-github@0.5.1': + dependencies: + '@changesets/get-github-info': 0.6.0 + '@changesets/types': 6.1.0 + dotenv: 8.6.0 + transitivePeerDependencies: + - encoding + + '@changesets/cli@2.29.5': + dependencies: + '@changesets/apply-release-plan': 7.0.12 + '@changesets/assemble-release-plan': 6.0.9 + '@changesets/changelog-git': 0.2.1 + '@changesets/config': 3.1.1 + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.1.3 + '@changesets/get-release-plan': 4.0.13 + '@changesets/git': 3.0.4 + '@changesets/logger': 0.1.1 + '@changesets/pre': 2.0.2 + '@changesets/read': 0.6.5 + '@changesets/should-skip-package': 0.1.2 + '@changesets/types': 6.1.0 + '@changesets/write': 0.4.0 + '@manypkg/get-packages': 1.1.3 + ansi-colors: 4.1.3 + ci-info: 3.9.0 + enquirer: 2.4.1 + external-editor: 3.1.0 + fs-extra: 7.0.1 + mri: 1.2.0 + p-limit: 2.3.0 + package-manager-detector: 0.2.11 + picocolors: 1.1.1 + resolve-from: 5.0.0 + semver: 7.6.2 + spawndamnit: 3.0.1 + term-size: 2.2.1 + + '@changesets/config@3.1.1': + dependencies: + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.1.3 + '@changesets/logger': 0.1.1 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 + fs-extra: 7.0.1 + micromatch: 4.0.8 + + '@changesets/errors@0.2.0': + dependencies: + extendable-error: 0.1.7 + + '@changesets/get-dependents-graph@2.1.3': + dependencies: + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 + picocolors: 1.1.1 + semver: 7.6.2 + + '@changesets/get-github-info@0.6.0': + dependencies: + dataloader: 1.4.0 + node-fetch: 2.7.0 + transitivePeerDependencies: + - encoding + + '@changesets/get-release-plan@4.0.13': + dependencies: + '@changesets/assemble-release-plan': 6.0.9 + '@changesets/config': 3.1.1 + '@changesets/pre': 2.0.2 + '@changesets/read': 0.6.5 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 + + '@changesets/get-version-range-type@0.4.0': {} + + '@changesets/git@3.0.4': + dependencies: + '@changesets/errors': 0.2.0 + '@manypkg/get-packages': 1.1.3 + is-subdir: 1.2.0 + micromatch: 4.0.8 + spawndamnit: 3.0.1 + + '@changesets/logger@0.1.1': + dependencies: + picocolors: 1.1.1 + + '@changesets/parse@0.4.1': + dependencies: + '@changesets/types': 6.1.0 + js-yaml: 3.14.1 + + '@changesets/pre@2.0.2': + dependencies: + '@changesets/errors': 0.2.0 + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 + fs-extra: 7.0.1 + + '@changesets/read@0.6.5': + dependencies: + '@changesets/git': 3.0.4 + '@changesets/logger': 0.1.1 + '@changesets/parse': 0.4.1 + '@changesets/types': 6.1.0 + fs-extra: 7.0.1 + p-filter: 2.1.0 + picocolors: 1.1.1 + + '@changesets/should-skip-package@0.1.2': + dependencies: + '@changesets/types': 6.1.0 + '@manypkg/get-packages': 1.1.3 + + '@changesets/types@4.1.0': {} + + '@changesets/types@6.1.0': {} + + '@changesets/write@0.4.0': + dependencies: + '@changesets/types': 6.1.0 + fs-extra: 7.0.1 + human-id: 4.1.1 + prettier: 2.8.8 + + '@cspotcode/source-map-support@0.8.1': + dependencies: + '@jridgewell/trace-mapping': 0.3.9 + + '@dependents/detective-less@5.0.1': + dependencies: + gonzales-pe: 4.3.0 + node-source-walk: 7.0.1 + + '@dprint/formatter@0.4.1': {} + + '@dprint/typescript@0.91.8': {} + + '@effect/cluster@0.46.2(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/sql@0.44.0(@effect/experimental@0.54.2(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/workflow@0.8.1(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(effect@3.17.3))(effect@3.17.3)': + dependencies: + '@effect/platform': 0.90.0(effect@3.17.3) + '@effect/rpc': 0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3) + '@effect/sql': 0.44.0(@effect/experimental@0.54.2(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3) + '@effect/workflow': 0.8.1(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(effect@3.17.3) + effect: 3.17.3 + + '@effect/docgen@0.5.2(tsx@4.20.3)(typescript@5.8.3)': + dependencies: + '@effect/markdown-toc': 0.1.0 + doctrine: 3.0.0 + glob: 10.4.5 + prettier: 3.6.2 + tsx: 4.20.3 + typescript: 5.8.3 + + '@effect/eslint-plugin@0.3.2': + dependencies: + '@dprint/formatter': 0.4.1 + '@dprint/typescript': 0.91.8 + prettier-linter-helpers: 1.0.0 + + '@effect/experimental@0.54.2(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3)': + dependencies: + '@effect/platform': 0.90.0(effect@3.17.3) + effect: 3.17.3 + uuid: 11.1.0 + + '@effect/markdown-toc@0.1.0': + dependencies: + concat-stream: 1.6.2 + diacritics-map: 0.1.0 + gray-matter: 3.1.1 + lazy-cache: 2.0.2 + list-item: 1.1.1 + markdown-link: 0.1.1 + minimist: 1.2.8 + mixin-deep: 1.3.2 + object.pick: 1.3.0 + remarkable: 1.7.4 + repeat-string: 1.6.1 + strip-color: 0.1.0 + + '@effect/platform-node-shared@0.47.0(@effect/cluster@0.46.2(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/sql@0.44.0(@effect/experimental@0.54.2(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/workflow@0.8.1(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/sql@0.44.0(@effect/experimental@0.54.2(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(effect@3.17.3)': + dependencies: + '@effect/cluster': 0.46.2(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/sql@0.44.0(@effect/experimental@0.54.2(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/workflow@0.8.1(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(effect@3.17.3))(effect@3.17.3) + '@effect/platform': 0.90.0(effect@3.17.3) + '@effect/rpc': 0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3) + '@effect/sql': 0.44.0(@effect/experimental@0.54.2(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3) + '@parcel/watcher': 2.5.1 + effect: 3.17.3 + multipasta: 0.2.7 + ws: 8.18.3 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + '@effect/platform-node@0.94.0(@effect/cluster@0.46.2(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/sql@0.44.0(@effect/experimental@0.54.2(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/workflow@0.8.1(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/sql@0.44.0(@effect/experimental@0.54.2(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(effect@3.17.3)': + dependencies: + '@effect/cluster': 0.46.2(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/sql@0.44.0(@effect/experimental@0.54.2(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/workflow@0.8.1(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(effect@3.17.3))(effect@3.17.3) + '@effect/platform': 0.90.0(effect@3.17.3) + '@effect/platform-node-shared': 0.47.0(@effect/cluster@0.46.2(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/sql@0.44.0(@effect/experimental@0.54.2(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/workflow@0.8.1(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/sql@0.44.0(@effect/experimental@0.54.2(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(effect@3.17.3) + '@effect/rpc': 0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3) + '@effect/sql': 0.44.0(@effect/experimental@0.54.2(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3) + effect: 3.17.3 + mime: 3.0.0 + undici: 7.12.0 + ws: 8.18.3 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + '@effect/platform@0.90.0(effect@3.17.3)': + dependencies: + '@opentelemetry/semantic-conventions': 1.36.0 + effect: 3.17.3 + find-my-way-ts: 0.1.6 + msgpackr: 1.11.5 + multipasta: 0.2.7 + + '@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3)': + dependencies: + '@effect/platform': 0.90.0(effect@3.17.3) + effect: 3.17.3 + + '@effect/sql@0.44.0(@effect/experimental@0.54.2(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3)': + dependencies: + '@effect/experimental': 0.54.2(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3) + '@effect/platform': 0.90.0(effect@3.17.3) + '@opentelemetry/semantic-conventions': 1.36.0 + effect: 3.17.3 + uuid: 11.1.0 + + '@effect/vitest@0.25.0(effect@3.17.3)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.9))': + dependencies: + effect: 3.17.3 + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.9) + + '@effect/workflow@0.8.1(@effect/platform@0.90.0(effect@3.17.3))(@effect/rpc@0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3))(effect@3.17.3)': + dependencies: + '@effect/platform': 0.90.0(effect@3.17.3) + '@effect/rpc': 0.68.0(@effect/platform@0.90.0(effect@3.17.3))(effect@3.17.3) + effect: 3.17.3 + + '@emnapi/core@1.4.5': + dependencies: + '@emnapi/wasi-threads': 1.0.4 + tslib: 2.8.1 + optional: true + + '@emnapi/runtime@1.4.5': + dependencies: + tslib: 2.8.1 + optional: true + + '@emnapi/wasi-threads@1.0.4': + dependencies: + tslib: 2.8.1 + optional: true + + '@esbuild/aix-ppc64@0.21.5': + optional: true + + '@esbuild/aix-ppc64@0.25.8': + optional: true + + '@esbuild/android-arm64@0.21.5': + optional: true + + '@esbuild/android-arm64@0.25.8': + optional: true + + '@esbuild/android-arm@0.21.5': + optional: true + + '@esbuild/android-arm@0.25.8': + optional: true + + '@esbuild/android-x64@0.21.5': + optional: true + + '@esbuild/android-x64@0.25.8': + optional: true + + '@esbuild/darwin-arm64@0.21.5': + optional: true + + '@esbuild/darwin-arm64@0.25.8': + optional: true + + '@esbuild/darwin-x64@0.21.5': + optional: true + + '@esbuild/darwin-x64@0.25.8': + optional: true + + '@esbuild/freebsd-arm64@0.21.5': + optional: true + + '@esbuild/freebsd-arm64@0.25.8': + optional: true + + '@esbuild/freebsd-x64@0.21.5': + optional: true + + '@esbuild/freebsd-x64@0.25.8': + optional: true + + '@esbuild/linux-arm64@0.21.5': + optional: true + + '@esbuild/linux-arm64@0.25.8': + optional: true + + '@esbuild/linux-arm@0.21.5': + optional: true + + '@esbuild/linux-arm@0.25.8': + optional: true + + '@esbuild/linux-ia32@0.21.5': + optional: true + + '@esbuild/linux-ia32@0.25.8': + optional: true + + '@esbuild/linux-loong64@0.21.5': + optional: true + + '@esbuild/linux-loong64@0.25.8': + optional: true + + '@esbuild/linux-mips64el@0.21.5': + optional: true + + '@esbuild/linux-mips64el@0.25.8': + optional: true + + '@esbuild/linux-ppc64@0.21.5': + optional: true + + '@esbuild/linux-ppc64@0.25.8': + optional: true + + '@esbuild/linux-riscv64@0.21.5': + optional: true + + '@esbuild/linux-riscv64@0.25.8': + optional: true + + '@esbuild/linux-s390x@0.21.5': + optional: true + + '@esbuild/linux-s390x@0.25.8': + optional: true + + '@esbuild/linux-x64@0.21.5': + optional: true + + '@esbuild/linux-x64@0.25.8': + optional: true + + '@esbuild/netbsd-arm64@0.25.8': + optional: true + + '@esbuild/netbsd-x64@0.21.5': + optional: true + + '@esbuild/netbsd-x64@0.25.8': + optional: true + + '@esbuild/openbsd-arm64@0.25.8': + optional: true + + '@esbuild/openbsd-x64@0.21.5': + optional: true + + '@esbuild/openbsd-x64@0.25.8': + optional: true + + '@esbuild/openharmony-arm64@0.25.8': + optional: true + + '@esbuild/sunos-x64@0.21.5': + optional: true + + '@esbuild/sunos-x64@0.25.8': + optional: true + + '@esbuild/win32-arm64@0.21.5': + optional: true + + '@esbuild/win32-arm64@0.25.8': + optional: true + + '@esbuild/win32-ia32@0.21.5': + optional: true + + '@esbuild/win32-ia32@0.25.8': + optional: true + + '@esbuild/win32-x64@0.21.5': + optional: true + + '@esbuild/win32-x64@0.25.8': + optional: true + + '@eslint-community/eslint-utils@4.7.0(eslint@9.32.0)': + dependencies: + eslint: 9.32.0 + eslint-visitor-keys: 3.4.3 + + '@eslint-community/regexpp@4.12.1': {} + + '@eslint/compat@1.3.1(eslint@9.32.0)': + optionalDependencies: + eslint: 9.32.0 + + '@eslint/config-array@0.21.0': + dependencies: + '@eslint/object-schema': 2.1.6 + debug: 4.4.1 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@eslint/config-helpers@0.3.0': {} + + '@eslint/core@0.15.1': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/eslintrc@3.3.1': + dependencies: + ajv: 6.12.6 + debug: 4.4.1 + espree: 10.4.0 + globals: 14.0.0 + ignore: 5.3.2 + import-fresh: 3.3.1 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + + '@eslint/js@9.32.0': {} + + '@eslint/object-schema@2.1.6': {} + + '@eslint/plugin-kit@0.3.4': + dependencies: + '@eslint/core': 0.15.1 + levn: 0.4.1 + + '@grpc/grpc-js@1.13.4': + dependencies: + '@grpc/proto-loader': 0.7.15 + '@js-sdsl/ordered-map': 4.4.2 + + '@grpc/proto-loader@0.7.15': + dependencies: + lodash.camelcase: 4.3.0 + long: 5.3.2 + protobufjs: 7.5.3 + yargs: 17.7.2 + + '@headlessui/react@1.7.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@tanstack/react-virtual': 3.13.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + client-only: 0.0.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@humanfs/core@0.19.1': {} + + '@humanfs/node@0.16.6': + dependencies: + '@humanfs/core': 0.19.1 + '@humanwhocodes/retry': 0.3.1 + + '@humanwhocodes/module-importer@1.0.1': {} + + '@humanwhocodes/retry@0.3.1': {} + + '@humanwhocodes/retry@0.4.3': {} + + '@isaacs/balanced-match@4.0.1': {} + + '@isaacs/brace-expansion@5.0.0': + dependencies: + '@isaacs/balanced-match': 4.0.1 + + '@isaacs/cliui@8.0.2': + dependencies: + string-width: 5.1.2 + string-width-cjs: string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: wrap-ansi@7.0.0 + + '@istanbuljs/schema@0.1.3': {} + + '@jridgewell/gen-mapping@0.3.12': + dependencies: + '@jridgewell/sourcemap-codec': 1.5.4 + '@jridgewell/trace-mapping': 0.3.29 + + '@jridgewell/resolve-uri@3.1.2': {} + + '@jridgewell/sourcemap-codec@1.5.4': {} + + '@jridgewell/trace-mapping@0.3.29': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.4 + + '@jridgewell/trace-mapping@0.3.9': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.4 + + '@js-sdsl/ordered-map@4.4.2': {} + + '@manypkg/find-root@1.1.0': + dependencies: + '@babel/runtime': 7.28.2 + '@types/node': 12.20.55 + find-up: 4.1.0 + fs-extra: 8.1.0 + + '@manypkg/get-packages@1.1.3': + dependencies: + '@babel/runtime': 7.28.2 + '@changesets/types': 4.1.0 + '@manypkg/find-root': 1.1.0 + fs-extra: 8.1.0 + globby: 11.1.0 + read-yaml-file: 1.1.0 + + '@mdx-js/mdx@2.3.0': + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/mdx': 2.0.13 + estree-util-build-jsx: 2.2.2 + estree-util-is-identifier-name: 2.1.0 + estree-util-to-js: 1.2.0 + estree-walker: 3.0.3 + hast-util-to-estree: 2.3.3 + markdown-extensions: 1.1.1 + periscopic: 3.1.0 + remark-mdx: 2.3.0 + remark-parse: 10.0.2 + remark-rehype: 10.1.0 + unified: 10.1.2 + unist-util-position-from-estree: 1.1.2 + unist-util-stringify-position: 3.0.3 + unist-util-visit: 4.1.2 + vfile: 5.3.7 + transitivePeerDependencies: + - supports-color + + '@mdx-js/react@2.3.0(react@18.3.1)': + dependencies: + '@types/mdx': 2.0.13 + '@types/react': 18.3.23 + react: 18.3.1 + + '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3': + optional: true + + '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3': + optional: true + + '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3': + optional: true + + '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3': + optional: true + + '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3': + optional: true + + '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3': + optional: true + + '@napi-rs/simple-git-android-arm-eabi@0.1.21': + optional: true + + '@napi-rs/simple-git-android-arm64@0.1.21': + optional: true + + '@napi-rs/simple-git-darwin-arm64@0.1.21': + optional: true + + '@napi-rs/simple-git-darwin-x64@0.1.21': + optional: true + + '@napi-rs/simple-git-freebsd-x64@0.1.21': + optional: true + + '@napi-rs/simple-git-linux-arm-gnueabihf@0.1.21': + optional: true + + '@napi-rs/simple-git-linux-arm64-gnu@0.1.21': + optional: true + + '@napi-rs/simple-git-linux-arm64-musl@0.1.21': + optional: true + + '@napi-rs/simple-git-linux-ppc64-gnu@0.1.21': + optional: true + + '@napi-rs/simple-git-linux-s390x-gnu@0.1.21': + optional: true + + '@napi-rs/simple-git-linux-x64-gnu@0.1.21': + optional: true + + '@napi-rs/simple-git-linux-x64-musl@0.1.21': + optional: true + + '@napi-rs/simple-git-win32-arm64-msvc@0.1.21': + optional: true + + '@napi-rs/simple-git-win32-ia32-msvc@0.1.21': + optional: true + + '@napi-rs/simple-git-win32-x64-msvc@0.1.21': + optional: true + + '@napi-rs/simple-git@0.1.21': + optionalDependencies: + '@napi-rs/simple-git-android-arm-eabi': 0.1.21 + '@napi-rs/simple-git-android-arm64': 0.1.21 + '@napi-rs/simple-git-darwin-arm64': 0.1.21 + '@napi-rs/simple-git-darwin-x64': 0.1.21 + '@napi-rs/simple-git-freebsd-x64': 0.1.21 + '@napi-rs/simple-git-linux-arm-gnueabihf': 0.1.21 + '@napi-rs/simple-git-linux-arm64-gnu': 0.1.21 + '@napi-rs/simple-git-linux-arm64-musl': 0.1.21 + '@napi-rs/simple-git-linux-ppc64-gnu': 0.1.21 + '@napi-rs/simple-git-linux-s390x-gnu': 0.1.21 + '@napi-rs/simple-git-linux-x64-gnu': 0.1.21 + '@napi-rs/simple-git-linux-x64-musl': 0.1.21 + '@napi-rs/simple-git-win32-arm64-msvc': 0.1.21 + '@napi-rs/simple-git-win32-ia32-msvc': 0.1.21 + '@napi-rs/simple-git-win32-x64-msvc': 0.1.21 + + '@napi-rs/wasm-runtime@0.2.12': + dependencies: + '@emnapi/core': 1.4.5 + '@emnapi/runtime': 1.4.5 + '@tybys/wasm-util': 0.10.0 + optional: true + + '@next/env@14.2.30': {} + + '@next/swc-darwin-arm64@14.2.30': + optional: true + + '@next/swc-darwin-x64@14.2.30': + optional: true + + '@next/swc-linux-arm64-gnu@14.2.30': + optional: true + + '@next/swc-linux-arm64-musl@14.2.30': + optional: true + + '@next/swc-linux-x64-gnu@14.2.30': + optional: true + + '@next/swc-linux-x64-musl@14.2.30': + optional: true + + '@next/swc-win32-arm64-msvc@14.2.30': + optional: true + + '@next/swc-win32-ia32-msvc@14.2.30': + optional: true + + '@next/swc-win32-x64-msvc@14.2.30': + optional: true + + '@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3': + optional: true + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.19.1 + + '@opentelemetry/semantic-conventions@1.36.0': {} + + '@parcel/watcher-android-arm64@2.5.1': + optional: true + + '@parcel/watcher-darwin-arm64@2.5.1': + optional: true + + '@parcel/watcher-darwin-x64@2.5.1': + optional: true + + '@parcel/watcher-freebsd-x64@2.5.1': + optional: true + + '@parcel/watcher-linux-arm-glibc@2.5.1': + optional: true + + '@parcel/watcher-linux-arm-musl@2.5.1': + optional: true + + '@parcel/watcher-linux-arm64-glibc@2.5.1': + optional: true + + '@parcel/watcher-linux-arm64-musl@2.5.1': + optional: true + + '@parcel/watcher-linux-x64-glibc@2.5.1': + optional: true + + '@parcel/watcher-linux-x64-musl@2.5.1': + optional: true + + '@parcel/watcher-win32-arm64@2.5.1': + optional: true + + '@parcel/watcher-win32-ia32@2.5.1': + optional: true + + '@parcel/watcher-win32-x64@2.5.1': + optional: true + + '@parcel/watcher@2.5.1': + dependencies: + detect-libc: 1.0.3 + is-glob: 4.0.3 + micromatch: 4.0.8 + node-addon-api: 7.1.1 + optionalDependencies: + '@parcel/watcher-android-arm64': 2.5.1 + '@parcel/watcher-darwin-arm64': 2.5.1 + '@parcel/watcher-darwin-x64': 2.5.1 + '@parcel/watcher-freebsd-x64': 2.5.1 + '@parcel/watcher-linux-arm-glibc': 2.5.1 + '@parcel/watcher-linux-arm-musl': 2.5.1 + '@parcel/watcher-linux-arm64-glibc': 2.5.1 + '@parcel/watcher-linux-arm64-musl': 2.5.1 + '@parcel/watcher-linux-x64-glibc': 2.5.1 + '@parcel/watcher-linux-x64-musl': 2.5.1 + '@parcel/watcher-win32-arm64': 2.5.1 + '@parcel/watcher-win32-ia32': 2.5.1 + '@parcel/watcher-win32-x64': 2.5.1 + + '@pkgjs/parseargs@0.11.0': + optional: true + + '@popperjs/core@2.11.8': {} + + '@protobufjs/aspromise@1.1.2': {} + + '@protobufjs/base64@1.1.2': {} + + '@protobufjs/codegen@2.0.4': {} + + '@protobufjs/eventemitter@1.1.0': {} + + '@protobufjs/fetch@1.1.0': + dependencies: + '@protobufjs/aspromise': 1.1.2 + '@protobufjs/inquire': 1.1.0 + + '@protobufjs/float@1.0.2': {} + + '@protobufjs/inquire@1.1.0': {} + + '@protobufjs/path@1.1.2': {} + + '@protobufjs/pool@1.1.0': {} + + '@protobufjs/utf8@1.1.0': {} + + '@rollup/rollup-android-arm-eabi@4.46.1': + optional: true + + '@rollup/rollup-android-arm64@4.46.1': + optional: true + + '@rollup/rollup-darwin-arm64@4.46.1': + optional: true + + '@rollup/rollup-darwin-x64@4.46.1': + optional: true + + '@rollup/rollup-freebsd-arm64@4.46.1': + optional: true + + '@rollup/rollup-freebsd-x64@4.46.1': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.46.1': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.46.1': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.46.1': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.46.1': + optional: true + + '@rollup/rollup-linux-loongarch64-gnu@4.46.1': + optional: true + + '@rollup/rollup-linux-ppc64-gnu@4.46.1': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.46.1': + optional: true + + '@rollup/rollup-linux-riscv64-musl@4.46.1': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.46.1': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.46.1': + optional: true + + '@rollup/rollup-linux-x64-musl@4.46.1': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.46.1': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.46.1': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.46.1': + optional: true + + '@rtsao/scc@1.1.0': {} + + '@scure/base@1.2.6': {} + + '@standard-schema/spec@1.0.0': {} + + '@swc/counter@0.1.3': {} + + '@swc/helpers@0.5.5': + dependencies: + '@swc/counter': 0.1.3 + tslib: 2.8.1 + + '@tanstack/react-virtual@3.13.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@tanstack/virtual-core': 3.13.12 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@tanstack/virtual-core@3.13.12': {} + + '@theguild/remark-mermaid@0.0.5(react@18.3.1)': + dependencies: + mermaid: 10.9.3 + react: 18.3.1 + unist-util-visit: 5.0.0 + transitivePeerDependencies: + - supports-color + + '@theguild/remark-npm2yarn@0.2.1': + dependencies: + npm-to-yarn: 2.2.1 + unist-util-visit: 5.0.0 + + '@tootallnate/quickjs-emscripten@0.23.0': {} + + '@ts-graphviz/adapter@2.0.6': + dependencies: + '@ts-graphviz/common': 2.1.5 + + '@ts-graphviz/ast@2.0.7': + dependencies: + '@ts-graphviz/common': 2.1.5 + + '@ts-graphviz/common@2.1.5': {} + + '@ts-graphviz/core@2.0.7': + dependencies: + '@ts-graphviz/ast': 2.0.7 + '@ts-graphviz/common': 2.1.5 + + '@tsconfig/node10@1.0.11': {} + + '@tsconfig/node12@1.0.11': {} + + '@tsconfig/node14@1.0.3': {} + + '@tsconfig/node16@1.0.4': {} + + '@turbo/gen@2.5.5(@types/node@20.19.9)(typescript@5.8.3)': + dependencies: + '@turbo/workspaces': 2.5.5 + commander: 10.0.1 + fs-extra: 10.1.0 + inquirer: 8.2.6 + minimatch: 9.0.5 + node-plop: 0.26.3 + picocolors: 1.0.1 + proxy-agent: 6.5.0 + ts-node: 10.9.2(@types/node@20.19.9)(typescript@5.8.3) + update-check: 1.5.4 + validate-npm-package-name: 5.0.1 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + - '@types/node' + - supports-color + - typescript + + '@turbo/workspaces@2.5.5': + dependencies: + commander: 10.0.1 + execa: 5.1.1 + fast-glob: 3.3.3 + fs-extra: 10.1.0 + gradient-string: 2.0.2 + inquirer: 8.2.6 + js-yaml: 4.1.0 + ora: 4.1.1 + picocolors: 1.0.1 + semver: 7.6.2 + update-check: 1.5.4 + + '@tybys/wasm-util@0.10.0': + dependencies: + tslib: 2.8.1 + optional: true + + '@types/acorn@4.0.6': + dependencies: + '@types/estree': 1.0.8 + + '@types/chai@5.2.2': + dependencies: + '@types/deep-eql': 4.0.2 + + '@types/d3-scale-chromatic@3.1.0': {} + + '@types/d3-scale@4.0.9': + dependencies: + '@types/d3-time': 3.0.4 + + '@types/d3-time@3.0.4': {} + + '@types/debug@4.1.12': + dependencies: + '@types/ms': 2.1.0 + + '@types/deep-eql@4.0.2': {} + + '@types/docker-modem@3.0.6': + dependencies: + '@types/node': 20.19.9 + '@types/ssh2': 1.15.5 + + '@types/dockerode@3.3.42': + dependencies: + '@types/docker-modem': 3.0.6 + '@types/node': 20.19.9 + '@types/ssh2': 1.15.5 + + '@types/estree-jsx@1.0.5': + dependencies: + '@types/estree': 1.0.8 + + '@types/estree@1.0.8': {} + + '@types/glob@7.2.0': + dependencies: + '@types/minimatch': 6.0.0 + '@types/node': 20.19.9 + + '@types/hast@2.3.10': + dependencies: + '@types/unist': 2.0.11 + + '@types/hast@3.0.4': + dependencies: + '@types/unist': 3.0.3 + + '@types/inquirer@6.5.0': + dependencies: + '@types/through': 0.0.33 + rxjs: 6.6.7 + + '@types/js-yaml@4.0.9': {} + + '@types/json-schema@7.0.15': {} + + '@types/json5@0.0.29': {} + + '@types/katex@0.16.7': {} + + '@types/mdast@3.0.15': + dependencies: + '@types/unist': 2.0.11 + + '@types/mdast@4.0.4': + dependencies: + '@types/unist': 3.0.3 + + '@types/mdx@2.0.13': {} + + '@types/minimatch@6.0.0': + dependencies: + minimatch: 9.0.5 + + '@types/ms@2.1.0': {} + + '@types/node@12.20.55': {} + + '@types/node@18.19.120': + dependencies: + undici-types: 5.26.5 + + '@types/node@20.19.9': + dependencies: + undici-types: 6.21.0 + + '@types/prop-types@15.7.15': {} + + '@types/react-dom@18.3.7(@types/react@18.3.23)': + dependencies: + '@types/react': 18.3.23 + + '@types/react@18.3.23': + dependencies: + '@types/prop-types': 15.7.15 + csstype: 3.1.3 + + '@types/ssh2@1.15.5': + dependencies: + '@types/node': 18.19.120 + + '@types/through@0.0.33': + dependencies: + '@types/node': 20.19.9 + + '@types/tinycolor2@1.4.6': {} + + '@types/unist@2.0.11': {} + + '@types/unist@3.0.3': {} + + '@typescript-eslint/eslint-plugin@8.38.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0)(typescript@5.8.3))(eslint@9.32.0)(typescript@5.8.3)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.38.0(eslint@9.32.0)(typescript@5.8.3) + '@typescript-eslint/scope-manager': 8.38.0 + '@typescript-eslint/type-utils': 8.38.0(eslint@9.32.0)(typescript@5.8.3) + '@typescript-eslint/utils': 8.38.0(eslint@9.32.0)(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.38.0 + eslint: 9.32.0 + graphemer: 1.4.0 + ignore: 7.0.5 + natural-compare: 1.4.0 + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@8.38.0(eslint@9.32.0)(typescript@5.8.3)': + dependencies: + '@typescript-eslint/scope-manager': 8.38.0 + '@typescript-eslint/types': 8.38.0 + '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3) + '@typescript-eslint/visitor-keys': 8.38.0 + debug: 4.4.1 + eslint: 9.32.0 + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/project-service@8.38.0(typescript@5.8.3)': + dependencies: + '@typescript-eslint/tsconfig-utils': 8.38.0(typescript@5.8.3) + '@typescript-eslint/types': 8.38.0 + debug: 4.4.1 + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/scope-manager@8.38.0': + dependencies: + '@typescript-eslint/types': 8.38.0 + '@typescript-eslint/visitor-keys': 8.38.0 + + '@typescript-eslint/tsconfig-utils@8.38.0(typescript@5.8.3)': + dependencies: + typescript: 5.8.3 + + '@typescript-eslint/type-utils@8.38.0(eslint@9.32.0)(typescript@5.8.3)': + dependencies: + '@typescript-eslint/types': 8.38.0 + '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3) + '@typescript-eslint/utils': 8.38.0(eslint@9.32.0)(typescript@5.8.3) + debug: 4.4.1 + eslint: 9.32.0 + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/types@8.38.0': {} + + '@typescript-eslint/typescript-estree@8.38.0(typescript@5.8.3)': + dependencies: + '@typescript-eslint/project-service': 8.38.0(typescript@5.8.3) + '@typescript-eslint/tsconfig-utils': 8.38.0(typescript@5.8.3) + '@typescript-eslint/types': 8.38.0 + '@typescript-eslint/visitor-keys': 8.38.0 + debug: 4.4.1 + fast-glob: 3.3.3 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.6.2 + ts-api-utils: 2.1.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/utils@8.38.0(eslint@9.32.0)(typescript@5.8.3)': + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0) + '@typescript-eslint/scope-manager': 8.38.0 + '@typescript-eslint/types': 8.38.0 + '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3) + eslint: 9.32.0 + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/visitor-keys@8.38.0': + dependencies: + '@typescript-eslint/types': 8.38.0 + eslint-visitor-keys: 4.2.1 + + '@ungap/structured-clone@1.3.0': {} + + '@unrs/resolver-binding-android-arm-eabi@1.11.1': + optional: true + + '@unrs/resolver-binding-android-arm64@1.11.1': + optional: true + + '@unrs/resolver-binding-darwin-arm64@1.11.1': + optional: true + + '@unrs/resolver-binding-darwin-x64@1.11.1': + optional: true + + '@unrs/resolver-binding-freebsd-x64@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-arm-musleabihf@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-arm64-gnu@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-arm64-musl@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-ppc64-gnu@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-riscv64-gnu@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-riscv64-musl@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-s390x-gnu@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-x64-gnu@1.11.1': + optional: true + + '@unrs/resolver-binding-linux-x64-musl@1.11.1': + optional: true + + '@unrs/resolver-binding-wasm32-wasi@1.11.1': + dependencies: + '@napi-rs/wasm-runtime': 0.2.12 + optional: true + + '@unrs/resolver-binding-win32-arm64-msvc@1.11.1': + optional: true + + '@unrs/resolver-binding-win32-ia32-msvc@1.11.1': + optional: true + + '@unrs/resolver-binding-win32-x64-msvc@1.11.1': + optional: true + + '@vitest/coverage-v8@3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.9))': + dependencies: + '@ampproject/remapping': 2.3.0 + '@bcoe/v8-coverage': 1.0.2 + ast-v8-to-istanbul: 0.3.3 + debug: 4.4.1 + istanbul-lib-coverage: 3.2.2 + istanbul-lib-report: 3.0.1 + istanbul-lib-source-maps: 5.0.6 + istanbul-reports: 3.1.7 + magic-string: 0.30.17 + magicast: 0.3.5 + std-env: 3.9.0 + test-exclude: 7.0.1 + tinyrainbow: 2.0.0 + vitest: 3.2.4(@types/debug@4.1.12)(@types/node@20.19.9) + transitivePeerDependencies: + - supports-color + + '@vitest/expect@3.2.4': + dependencies: + '@types/chai': 5.2.2 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.2.1 + tinyrainbow: 2.0.0 + + '@vitest/mocker@3.2.4(vite@5.4.19(@types/node@20.19.9))': + dependencies: + '@vitest/spy': 3.2.4 + estree-walker: 3.0.3 + magic-string: 0.30.17 + optionalDependencies: + vite: 5.4.19(@types/node@20.19.9) + + '@vitest/pretty-format@3.2.4': + dependencies: + tinyrainbow: 2.0.0 + + '@vitest/runner@3.2.4': + dependencies: + '@vitest/utils': 3.2.4 + pathe: 2.0.3 + strip-literal: 3.0.0 + + '@vitest/snapshot@3.2.4': + dependencies: + '@vitest/pretty-format': 3.2.4 + magic-string: 0.30.17 + pathe: 2.0.3 + + '@vitest/spy@3.2.4': + dependencies: + tinyspy: 4.0.3 + + '@vitest/utils@3.2.4': + dependencies: + '@vitest/pretty-format': 3.2.4 + loupe: 3.2.0 + tinyrainbow: 2.0.0 + + '@vue/compiler-core@3.5.18': + dependencies: + '@babel/parser': 7.28.0 + '@vue/shared': 3.5.18 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.2.1 + + '@vue/compiler-dom@3.5.18': + dependencies: + '@vue/compiler-core': 3.5.18 + '@vue/shared': 3.5.18 + + '@vue/compiler-sfc@3.5.18': + dependencies: + '@babel/parser': 7.28.0 + '@vue/compiler-core': 3.5.18 + '@vue/compiler-dom': 3.5.18 + '@vue/compiler-ssr': 3.5.18 + '@vue/shared': 3.5.18 + estree-walker: 2.0.2 + magic-string: 0.30.17 + postcss: 8.5.6 + source-map-js: 1.2.1 + + '@vue/compiler-ssr@3.5.18': + dependencies: + '@vue/compiler-dom': 3.5.18 + '@vue/shared': 3.5.18 + + '@vue/shared@3.5.18': {} + + acorn-jsx@5.3.2(acorn@8.15.0): + dependencies: + acorn: 8.15.0 + + acorn-walk@8.3.4: + dependencies: + acorn: 8.15.0 + + acorn@8.15.0: {} + + agent-base@7.1.4: {} + + aggregate-error@3.1.0: + dependencies: + clean-stack: 2.2.0 + indent-string: 4.0.0 + + ajv@6.12.6: + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + + ansi-colors@4.1.3: {} + + ansi-escapes@4.3.2: + dependencies: + type-fest: 0.21.3 + + ansi-regex@5.0.1: {} + + ansi-regex@6.1.0: {} + + ansi-sequence-parser@1.1.3: {} + + ansi-styles@3.2.1: + dependencies: + color-convert: 1.9.3 + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + ansi-styles@6.2.1: {} + + any-promise@1.3.0: {} + + anymatch@3.1.3: + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + optional: true + + app-module-path@2.2.0: {} + + arch@2.2.0: {} + + arg@1.0.0: {} + + arg@4.1.3: {} + + argparse@1.0.10: + dependencies: + sprintf-js: 1.0.3 + + argparse@2.0.1: {} + + array-buffer-byte-length@1.0.2: + dependencies: + call-bound: 1.0.4 + is-array-buffer: 3.0.5 + + array-includes@3.1.9: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + is-string: 1.1.1 + math-intrinsics: 1.1.0 + + array-union@2.1.0: {} + + array.prototype.findlastindex@1.2.6: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-shim-unscopables: 1.1.0 + + array.prototype.flat@1.3.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-shim-unscopables: 1.1.0 + + array.prototype.flatmap@1.3.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-shim-unscopables: 1.1.0 + + arraybuffer.prototype.slice@1.0.4: + dependencies: + array-buffer-byte-length: 1.0.2 + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + is-array-buffer: 3.0.5 + + asn1@0.2.6: + dependencies: + safer-buffer: 2.1.2 + + assertion-error@2.0.1: {} + + ast-module-types@6.0.1: {} + + ast-types@0.13.4: + dependencies: + tslib: 2.8.1 + + ast-v8-to-istanbul@0.3.3: + dependencies: + '@jridgewell/trace-mapping': 0.3.29 + estree-walker: 3.0.3 + js-tokens: 9.0.1 + + astring@1.9.0: {} + + async-function@1.0.0: {} + + autolinker@0.28.1: + dependencies: + gulp-header: 1.8.12 + + available-typed-arrays@1.0.7: + dependencies: + possible-typed-array-names: 1.1.0 + + babel-plugin-annotate-pure-calls@0.5.0(@babel/core@7.28.0): + dependencies: + '@babel/core': 7.28.0 + + bail@2.0.2: {} + + balanced-match@1.0.2: {} + + base64-js@1.5.1: {} + + basic-ftp@5.0.5: {} + + bcrypt-pbkdf@1.0.2: + dependencies: + tweetnacl: 0.14.5 + + better-path-resolve@1.0.0: + dependencies: + is-windows: 1.0.2 + + binary-extensions@2.3.0: + optional: true + + bl@4.1.0: + dependencies: + buffer: 5.7.1 + inherits: 2.0.4 + readable-stream: 3.6.2 + + brace-expansion@1.1.12: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + brace-expansion@2.0.2: + dependencies: + balanced-match: 1.0.2 + + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + + browserslist@4.25.1: + dependencies: + caniuse-lite: 1.0.30001727 + electron-to-chromium: 1.5.192 + node-releases: 2.0.19 + update-browserslist-db: 1.1.3(browserslist@4.25.1) + + buffer-from@1.1.2: {} + + buffer@5.7.1: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + + buildcheck@0.0.6: + optional: true + + busboy@1.6.0: + dependencies: + streamsearch: 1.1.0 + + cac@6.7.14: {} + + call-bind-apply-helpers@1.0.2: + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + + call-bind@1.0.8: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + get-intrinsic: 1.3.0 + set-function-length: 1.2.2 + + call-bound@1.0.4: + dependencies: + call-bind-apply-helpers: 1.0.2 + get-intrinsic: 1.3.0 + + callsites@3.1.0: {} + + camel-case@3.0.0: + dependencies: + no-case: 2.3.2 + upper-case: 1.1.3 + + caniuse-lite@1.0.30001727: {} + + ccount@2.0.1: {} + + chai@5.2.1: + dependencies: + assertion-error: 2.0.1 + check-error: 2.1.1 + deep-eql: 5.0.2 + loupe: 3.2.0 + pathval: 2.0.1 + + chalk@2.3.0: + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 4.5.0 + + chalk@2.4.2: + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + + chalk@3.0.0: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + change-case@3.1.0: + dependencies: + camel-case: 3.0.0 + constant-case: 2.0.0 + dot-case: 2.1.1 + header-case: 1.0.1 + is-lower-case: 1.1.3 + is-upper-case: 1.1.2 + lower-case: 1.1.4 + lower-case-first: 1.0.2 + no-case: 2.3.2 + param-case: 2.1.1 + pascal-case: 2.0.1 + path-case: 2.1.1 + sentence-case: 2.1.1 + snake-case: 2.1.0 + swap-case: 1.1.2 + title-case: 2.1.1 + upper-case: 1.1.3 + upper-case-first: 1.1.2 + + character-entities-html4@2.1.0: {} + + character-entities-legacy@3.0.0: {} + + character-entities@2.0.2: {} + + character-reference-invalid@2.0.1: {} + + chardet@0.7.0: {} + + check-error@2.1.1: {} + + chokidar@3.6.0: + dependencies: + anymatch: 3.1.3 + braces: 3.0.3 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.3 + optional: true + + chownr@1.1.4: {} + + ci-info@3.9.0: {} + + clean-stack@2.2.0: {} + + cli-cursor@3.1.0: + dependencies: + restore-cursor: 3.1.0 + + cli-spinners@2.9.2: {} + + cli-width@3.0.0: {} + + client-only@0.0.1: {} + + clipboardy@1.2.2: + dependencies: + arch: 2.2.0 + execa: 0.8.0 + + cliui@8.0.1: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + + clone@1.0.4: {} + + clsx@2.1.1: {} + + color-convert@1.9.3: + dependencies: + color-name: 1.1.3 + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.3: {} + + color-name@1.1.4: {} + + comma-separated-tokens@2.0.3: {} + + commander@10.0.1: {} + + commander@12.1.0: {} + + commander@6.2.1: {} + + commander@7.2.0: {} + + commander@8.3.0: {} + + commondir@1.0.1: {} + + compute-scroll-into-view@3.1.1: {} + + concat-map@0.0.1: {} + + concat-stream@1.6.2: + dependencies: + buffer-from: 1.1.2 + inherits: 2.0.4 + readable-stream: 2.3.8 + typedarray: 0.0.6 + + concat-with-sourcemaps@1.1.0: + dependencies: + source-map: 0.6.1 + + constant-case@2.0.0: + dependencies: + snake-case: 2.1.0 + upper-case: 1.1.3 + + convert-source-map@2.0.0: {} + + core-js-pure@3.44.0: {} + + core-util-is@1.0.3: {} + + cose-base@1.0.3: + dependencies: + layout-base: 1.0.2 + + cpu-features@0.0.10: + dependencies: + buildcheck: 0.0.6 + nan: 2.23.0 + optional: true + + create-require@1.1.1: {} + + cross-spawn@5.1.0: + dependencies: + lru-cache: 4.1.5 + shebang-command: 1.2.0 + which: 1.3.1 + + cross-spawn@7.0.6: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + + csstype@3.1.3: {} + + cytoscape-cose-bilkent@4.1.0(cytoscape@3.33.0): + dependencies: + cose-base: 1.0.3 + cytoscape: 3.33.0 + + cytoscape@3.33.0: {} + + d3-array@2.12.1: + dependencies: + internmap: 1.0.1 + + d3-array@3.2.4: + dependencies: + internmap: 2.0.3 + + d3-axis@3.0.0: {} + + d3-brush@3.0.0: + dependencies: + d3-dispatch: 3.0.1 + d3-drag: 3.0.0 + d3-interpolate: 3.0.1 + d3-selection: 3.0.0 + d3-transition: 3.0.1(d3-selection@3.0.0) + + d3-chord@3.0.1: + dependencies: + d3-path: 3.1.0 + + d3-color@3.1.0: {} + + d3-contour@4.0.2: + dependencies: + d3-array: 3.2.4 + + d3-delaunay@6.0.4: + dependencies: + delaunator: 5.0.1 + + d3-dispatch@3.0.1: {} + + d3-drag@3.0.0: + dependencies: + d3-dispatch: 3.0.1 + d3-selection: 3.0.0 + + d3-dsv@3.0.1: + dependencies: + commander: 7.2.0 + iconv-lite: 0.6.3 + rw: 1.3.3 + + d3-ease@3.0.1: {} + + d3-fetch@3.0.1: + dependencies: + d3-dsv: 3.0.1 + + d3-force@3.0.0: + dependencies: + d3-dispatch: 3.0.1 + d3-quadtree: 3.0.1 + d3-timer: 3.0.1 + + d3-format@3.1.0: {} + + d3-geo@3.1.1: + dependencies: + d3-array: 3.2.4 + + d3-hierarchy@3.1.2: {} + + d3-interpolate@3.0.1: + dependencies: + d3-color: 3.1.0 + + d3-path@1.0.9: {} + + d3-path@3.1.0: {} + + d3-polygon@3.0.1: {} + + d3-quadtree@3.0.1: {} + + d3-random@3.0.1: {} + + d3-sankey@0.12.3: + dependencies: + d3-array: 2.12.1 + d3-shape: 1.3.7 + + d3-scale-chromatic@3.1.0: + dependencies: + d3-color: 3.1.0 + d3-interpolate: 3.0.1 + + d3-scale@4.0.2: + dependencies: + d3-array: 3.2.4 + d3-format: 3.1.0 + d3-interpolate: 3.0.1 + d3-time: 3.1.0 + d3-time-format: 4.1.0 + + d3-selection@3.0.0: {} + + d3-shape@1.3.7: + dependencies: + d3-path: 1.0.9 + + d3-shape@3.2.0: + dependencies: + d3-path: 3.1.0 + + d3-time-format@4.1.0: + dependencies: + d3-time: 3.1.0 + + d3-time@3.1.0: + dependencies: + d3-array: 3.2.4 + + d3-timer@3.0.1: {} + + d3-transition@3.0.1(d3-selection@3.0.0): + dependencies: + d3-color: 3.1.0 + d3-dispatch: 3.0.1 + d3-ease: 3.0.1 + d3-interpolate: 3.0.1 + d3-selection: 3.0.0 + d3-timer: 3.0.1 + + d3-zoom@3.0.0: + dependencies: + d3-dispatch: 3.0.1 + d3-drag: 3.0.0 + d3-interpolate: 3.0.1 + d3-selection: 3.0.0 + d3-transition: 3.0.1(d3-selection@3.0.0) + + d3@7.9.0: + dependencies: + d3-array: 3.2.4 + d3-axis: 3.0.0 + d3-brush: 3.0.0 + d3-chord: 3.0.1 + d3-color: 3.1.0 + d3-contour: 4.0.2 + d3-delaunay: 6.0.4 + d3-dispatch: 3.0.1 + d3-drag: 3.0.0 + d3-dsv: 3.0.1 + d3-ease: 3.0.1 + d3-fetch: 3.0.1 + d3-force: 3.0.0 + d3-format: 3.1.0 + d3-geo: 3.1.1 + d3-hierarchy: 3.1.2 + d3-interpolate: 3.0.1 + d3-path: 3.1.0 + d3-polygon: 3.0.1 + d3-quadtree: 3.0.1 + d3-random: 3.0.1 + d3-scale: 4.0.2 + d3-scale-chromatic: 3.1.0 + d3-selection: 3.0.0 + d3-shape: 3.2.0 + d3-time: 3.1.0 + d3-time-format: 4.1.0 + d3-timer: 3.0.1 + d3-transition: 3.0.1(d3-selection@3.0.0) + d3-zoom: 3.0.0 + + dagre-d3-es@7.0.10: + dependencies: + d3: 7.9.0 + lodash-es: 4.17.21 + + data-uri-to-buffer@6.0.2: {} + + data-view-buffer@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-length@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-offset@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + dataloader@1.4.0: {} + + dayjs@1.11.13: {} + + debug@3.2.7: + dependencies: + ms: 2.1.3 + + debug@4.4.1: + dependencies: + ms: 2.1.3 + + decode-named-character-reference@1.2.0: + dependencies: + character-entities: 2.0.2 + + deep-eql@5.0.2: {} + + deep-extend@0.6.0: {} + + deep-is@0.1.4: {} + + defaults@1.0.4: + dependencies: + clone: 1.0.4 + + define-data-property@1.1.4: + dependencies: + es-define-property: 1.0.1 + es-errors: 1.3.0 + gopd: 1.2.0 + + define-properties@1.2.1: + dependencies: + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 + object-keys: 1.1.1 + + degenerator@5.0.1: + dependencies: + ast-types: 0.13.4 + escodegen: 2.1.0 + esprima: 4.0.1 + + del@5.1.0: + dependencies: + globby: 10.0.2 + graceful-fs: 4.2.11 + is-glob: 4.0.3 + is-path-cwd: 2.2.0 + is-path-inside: 3.0.3 + p-map: 3.0.0 + rimraf: 3.0.2 + slash: 3.0.0 + + delaunator@5.0.1: + dependencies: + robust-predicates: 3.0.2 + + dependency-tree@11.2.0: + dependencies: + commander: 12.1.0 + filing-cabinet: 5.0.3 + precinct: 12.2.0 + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + dequal@2.0.3: {} + + detect-indent@6.1.0: {} + + detect-libc@1.0.3: {} + + detect-libc@2.0.4: + optional: true + + detective-amd@6.0.1: + dependencies: + ast-module-types: 6.0.1 + escodegen: 2.1.0 + get-amd-module-type: 6.0.1 + node-source-walk: 7.0.1 + + detective-cjs@6.0.1: + dependencies: + ast-module-types: 6.0.1 + node-source-walk: 7.0.1 + + detective-es6@5.0.1: + dependencies: + node-source-walk: 7.0.1 + + detective-postcss@7.0.1(postcss@8.5.6): + dependencies: + is-url: 1.2.4 + postcss: 8.5.6 + postcss-values-parser: 6.0.2(postcss@8.5.6) + + detective-sass@6.0.1: + dependencies: + gonzales-pe: 4.3.0 + node-source-walk: 7.0.1 + + detective-scss@5.0.1: + dependencies: + gonzales-pe: 4.3.0 + node-source-walk: 7.0.1 + + detective-stylus@5.0.1: {} + + detective-typescript@14.0.0(typescript@5.8.3): + dependencies: + '@typescript-eslint/typescript-estree': 8.38.0(typescript@5.8.3) + ast-module-types: 6.0.1 + node-source-walk: 7.0.1 + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + detective-vue2@2.2.0(typescript@5.8.3): + dependencies: + '@dependents/detective-less': 5.0.1 + '@vue/compiler-sfc': 3.5.18 + detective-es6: 5.0.1 + detective-sass: 6.0.1 + detective-scss: 5.0.1 + detective-stylus: 5.0.1 + detective-typescript: 14.0.0(typescript@5.8.3) + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + devlop@1.1.0: + dependencies: + dequal: 2.0.3 + + diacritics-map@0.1.0: {} + + diff@4.0.2: {} + + diff@5.2.0: {} + + dir-glob@3.0.1: + dependencies: + path-type: 4.0.0 + + docker-modem@5.0.6: + dependencies: + debug: 4.4.1 + readable-stream: 3.6.2 + split-ca: 1.0.1 + ssh2: 1.16.0 + transitivePeerDependencies: + - supports-color + + dockerode@4.0.7: + dependencies: + '@balena/dockerignore': 1.0.2 + '@grpc/grpc-js': 1.13.4 + '@grpc/proto-loader': 0.7.15 + docker-modem: 5.0.6 + protobufjs: 7.5.3 + tar-fs: 2.1.3 + uuid: 10.0.0 + transitivePeerDependencies: + - supports-color + + doctrine@2.1.0: + dependencies: + esutils: 2.0.3 + + doctrine@3.0.0: + dependencies: + esutils: 2.0.3 + + dompurify@3.1.6: {} + + dot-case@2.1.1: + dependencies: + no-case: 2.3.2 + + dotenv@8.6.0: {} + + dunder-proto@1.0.1: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-errors: 1.3.0 + gopd: 1.2.0 + + eastasianwidth@0.2.0: {} + + effect@3.17.3: + dependencies: + '@standard-schema/spec': 1.0.0 + fast-check: 3.23.2 + + electron-to-chromium@1.5.192: {} + + elkjs@0.9.3: {} + + emoji-regex@8.0.0: {} + + emoji-regex@9.2.2: {} + + end-of-stream@1.4.5: + dependencies: + once: 1.4.0 + + enhanced-resolve@5.18.2: + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.2 + + enquirer@2.4.1: + dependencies: + ansi-colors: 4.1.3 + strip-ansi: 6.0.1 + + entities@4.5.0: {} + + entities@6.0.1: {} + + es-abstract@1.24.0: + dependencies: + array-buffer-byte-length: 1.0.2 + arraybuffer.prototype.slice: 1.0.4 + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + data-view-buffer: 1.0.2 + data-view-byte-length: 1.0.2 + data-view-byte-offset: 1.0.1 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + es-set-tostringtag: 2.1.0 + es-to-primitive: 1.3.0 + function.prototype.name: 1.1.8 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + get-symbol-description: 1.1.0 + globalthis: 1.0.4 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + has-proto: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + internal-slot: 1.1.0 + is-array-buffer: 3.0.5 + is-callable: 1.2.7 + is-data-view: 1.0.2 + is-negative-zero: 2.0.3 + is-regex: 1.2.1 + is-set: 2.0.3 + is-shared-array-buffer: 1.0.4 + is-string: 1.1.1 + is-typed-array: 1.1.15 + is-weakref: 1.1.1 + math-intrinsics: 1.1.0 + object-inspect: 1.13.4 + object-keys: 1.1.1 + object.assign: 4.1.7 + own-keys: 1.0.1 + regexp.prototype.flags: 1.5.4 + safe-array-concat: 1.1.3 + safe-push-apply: 1.0.0 + safe-regex-test: 1.1.0 + set-proto: 1.0.0 + stop-iteration-iterator: 1.1.0 + string.prototype.trim: 1.2.10 + string.prototype.trimend: 1.0.9 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.3 + typed-array-byte-length: 1.0.3 + typed-array-byte-offset: 1.0.4 + typed-array-length: 1.0.7 + unbox-primitive: 1.1.0 + which-typed-array: 1.1.19 + + es-define-property@1.0.1: {} + + es-errors@1.3.0: {} + + es-module-lexer@1.7.0: {} + + es-object-atoms@1.1.1: + dependencies: + es-errors: 1.3.0 + + es-set-tostringtag@2.1.0: + dependencies: + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + es-shim-unscopables@1.1.0: + dependencies: + hasown: 2.0.2 + + es-to-primitive@1.3.0: + dependencies: + is-callable: 1.2.7 + is-date-object: 1.1.0 + is-symbol: 1.1.1 + + esbuild@0.21.5: + optionalDependencies: + '@esbuild/aix-ppc64': 0.21.5 + '@esbuild/android-arm': 0.21.5 + '@esbuild/android-arm64': 0.21.5 + '@esbuild/android-x64': 0.21.5 + '@esbuild/darwin-arm64': 0.21.5 + '@esbuild/darwin-x64': 0.21.5 + '@esbuild/freebsd-arm64': 0.21.5 + '@esbuild/freebsd-x64': 0.21.5 + '@esbuild/linux-arm': 0.21.5 + '@esbuild/linux-arm64': 0.21.5 + '@esbuild/linux-ia32': 0.21.5 + '@esbuild/linux-loong64': 0.21.5 + '@esbuild/linux-mips64el': 0.21.5 + '@esbuild/linux-ppc64': 0.21.5 + '@esbuild/linux-riscv64': 0.21.5 + '@esbuild/linux-s390x': 0.21.5 + '@esbuild/linux-x64': 0.21.5 + '@esbuild/netbsd-x64': 0.21.5 + '@esbuild/openbsd-x64': 0.21.5 + '@esbuild/sunos-x64': 0.21.5 + '@esbuild/win32-arm64': 0.21.5 + '@esbuild/win32-ia32': 0.21.5 + '@esbuild/win32-x64': 0.21.5 + + esbuild@0.25.8: + optionalDependencies: + '@esbuild/aix-ppc64': 0.25.8 + '@esbuild/android-arm': 0.25.8 + '@esbuild/android-arm64': 0.25.8 + '@esbuild/android-x64': 0.25.8 + '@esbuild/darwin-arm64': 0.25.8 + '@esbuild/darwin-x64': 0.25.8 + '@esbuild/freebsd-arm64': 0.25.8 + '@esbuild/freebsd-x64': 0.25.8 + '@esbuild/linux-arm': 0.25.8 + '@esbuild/linux-arm64': 0.25.8 + '@esbuild/linux-ia32': 0.25.8 + '@esbuild/linux-loong64': 0.25.8 + '@esbuild/linux-mips64el': 0.25.8 + '@esbuild/linux-ppc64': 0.25.8 + '@esbuild/linux-riscv64': 0.25.8 + '@esbuild/linux-s390x': 0.25.8 + '@esbuild/linux-x64': 0.25.8 + '@esbuild/netbsd-arm64': 0.25.8 + '@esbuild/netbsd-x64': 0.25.8 + '@esbuild/openbsd-arm64': 0.25.8 + '@esbuild/openbsd-x64': 0.25.8 + '@esbuild/openharmony-arm64': 0.25.8 + '@esbuild/sunos-x64': 0.25.8 + '@esbuild/win32-arm64': 0.25.8 + '@esbuild/win32-ia32': 0.25.8 + '@esbuild/win32-x64': 0.25.8 + + escalade@3.2.0: {} + + escape-string-regexp@1.0.5: {} + + escape-string-regexp@4.0.0: {} + + escape-string-regexp@5.0.0: {} + + escodegen@2.1.0: + dependencies: + esprima: 4.0.1 + estraverse: 5.3.0 + esutils: 2.0.3 + optionalDependencies: + source-map: 0.6.1 + + eslint-import-context@0.1.9(unrs-resolver@1.11.1): + dependencies: + get-tsconfig: 4.10.1 + stable-hash-x: 0.2.0 + optionalDependencies: + unrs-resolver: 1.11.1 + + eslint-import-resolver-node@0.3.9: + dependencies: + debug: 3.2.7 + is-core-module: 2.16.1 + resolve: 1.22.10 + transitivePeerDependencies: + - supports-color + + eslint-import-resolver-typescript@4.4.4(eslint-plugin-import@2.32.0)(eslint@9.32.0): + dependencies: + debug: 4.4.1 + eslint: 9.32.0 + eslint-import-context: 0.1.9(unrs-resolver@1.11.1) + get-tsconfig: 4.10.1 + is-bun-module: 2.0.0 + stable-hash-x: 0.2.0 + tinyglobby: 0.2.14 + unrs-resolver: 1.11.1 + optionalDependencies: + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0)(typescript@5.8.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.32.0) + transitivePeerDependencies: + - supports-color + + eslint-module-utils@2.12.1(@typescript-eslint/parser@8.38.0(eslint@9.32.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4(eslint-plugin-import@2.32.0)(eslint@9.32.0))(eslint@9.32.0): + dependencies: + debug: 3.2.7 + optionalDependencies: + '@typescript-eslint/parser': 8.38.0(eslint@9.32.0)(typescript@5.8.3) + eslint: 9.32.0 + eslint-import-resolver-node: 0.3.9 + eslint-import-resolver-typescript: 4.4.4(eslint-plugin-import@2.32.0)(eslint@9.32.0) + transitivePeerDependencies: + - supports-color + + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.38.0(eslint@9.32.0)(typescript@5.8.3))(eslint-import-resolver-typescript@4.4.4)(eslint@9.32.0): + dependencies: + '@rtsao/scc': 1.1.0 + array-includes: 3.1.9 + array.prototype.findlastindex: 1.2.6 + array.prototype.flat: 1.3.3 + array.prototype.flatmap: 1.3.3 + debug: 3.2.7 + doctrine: 2.1.0 + eslint: 9.32.0 + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.38.0(eslint@9.32.0)(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@4.4.4(eslint-plugin-import@2.32.0)(eslint@9.32.0))(eslint@9.32.0) + hasown: 2.0.2 + is-core-module: 2.16.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.fromentries: 2.0.8 + object.groupby: 1.0.3 + object.values: 1.2.1 + semver: 6.3.1 + string.prototype.trimend: 1.0.9 + tsconfig-paths: 3.15.0 + optionalDependencies: + '@typescript-eslint/parser': 8.38.0(eslint@9.32.0)(typescript@5.8.3) + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + + eslint-plugin-simple-import-sort@12.1.1(eslint@9.32.0): + dependencies: + eslint: 9.32.0 + + eslint-plugin-sort-destructure-keys@2.0.0(eslint@9.32.0): + dependencies: + eslint: 9.32.0 + natural-compare-lite: 1.4.0 + + eslint-scope@8.4.0: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + + eslint-visitor-keys@3.4.3: {} + + eslint-visitor-keys@4.2.1: {} + + eslint@9.32.0: + dependencies: + '@eslint-community/eslint-utils': 4.7.0(eslint@9.32.0) + '@eslint-community/regexpp': 4.12.1 + '@eslint/config-array': 0.21.0 + '@eslint/config-helpers': 0.3.0 + '@eslint/core': 0.15.1 + '@eslint/eslintrc': 3.3.1 + '@eslint/js': 9.32.0 + '@eslint/plugin-kit': 0.3.4 + '@humanfs/node': 0.16.6 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.4.3 + '@types/estree': 1.0.8 + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.6 + debug: 4.4.1 + escape-string-regexp: 4.0.0 + eslint-scope: 8.4.0 + eslint-visitor-keys: 4.2.1 + espree: 10.4.0 + esquery: 1.6.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.3.2 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + transitivePeerDependencies: + - supports-color + + espree@10.4.0: + dependencies: + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) + eslint-visitor-keys: 4.2.1 + + esprima@4.0.1: {} + + esquery@1.6.0: + dependencies: + estraverse: 5.3.0 + + esrecurse@4.3.0: + dependencies: + estraverse: 5.3.0 + + estraverse@5.3.0: {} + + estree-util-attach-comments@2.1.1: + dependencies: + '@types/estree': 1.0.8 + + estree-util-build-jsx@2.2.2: + dependencies: + '@types/estree-jsx': 1.0.5 + estree-util-is-identifier-name: 2.1.0 + estree-walker: 3.0.3 + + estree-util-is-identifier-name@2.1.0: {} + + estree-util-to-js@1.2.0: + dependencies: + '@types/estree-jsx': 1.0.5 + astring: 1.9.0 + source-map: 0.7.6 + + estree-util-value-to-estree@3.4.0: + dependencies: + '@types/estree': 1.0.8 + + estree-util-visit@1.2.1: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/unist': 2.0.11 + + estree-walker@2.0.2: {} + + estree-walker@3.0.3: + dependencies: + '@types/estree': 1.0.8 + + esutils@2.0.3: {} + + execa@0.8.0: + dependencies: + cross-spawn: 5.1.0 + get-stream: 3.0.0 + is-stream: 1.1.0 + npm-run-path: 2.0.2 + p-finally: 1.0.0 + signal-exit: 3.0.7 + strip-eof: 1.0.0 + + execa@5.1.1: + dependencies: + cross-spawn: 7.0.6 + get-stream: 6.0.1 + human-signals: 2.1.0 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + + expand-range@1.8.2: + dependencies: + fill-range: 2.2.4 + + expect-type@1.2.2: {} + + extend-shallow@2.0.1: + dependencies: + is-extendable: 0.1.1 + + extend@3.0.2: {} + + extendable-error@0.1.7: {} + + external-editor@3.1.0: + dependencies: + chardet: 0.7.0 + iconv-lite: 0.4.24 + tmp: 0.0.33 + + fast-check@3.23.2: + dependencies: + pure-rand: 6.1.0 + + fast-deep-equal@3.1.3: {} + + fast-diff@1.3.0: {} + + fast-glob@3.3.3: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 + + fast-json-stable-stringify@2.1.0: {} + + fast-levenshtein@2.0.6: {} + + fastq@1.19.1: + dependencies: + reusify: 1.1.0 + + fdir@6.4.6(picomatch@4.0.3): + optionalDependencies: + picomatch: 4.0.3 + + figures@3.2.0: + dependencies: + escape-string-regexp: 1.0.5 + + file-entry-cache@8.0.0: + dependencies: + flat-cache: 4.0.1 + + filing-cabinet@5.0.3: + dependencies: + app-module-path: 2.2.0 + commander: 12.1.0 + enhanced-resolve: 5.18.2 + module-definition: 6.0.1 + module-lookup-amd: 9.0.5 + resolve: 1.22.10 + resolve-dependency-path: 4.0.1 + sass-lookup: 6.1.0 + stylus-lookup: 6.1.0 + tsconfig-paths: 4.2.0 + typescript: 5.8.3 + + fill-range@2.2.4: + dependencies: + is-number: 2.1.0 + isobject: 2.1.0 + randomatic: 3.1.1 + repeat-element: 1.1.4 + repeat-string: 1.6.1 + + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + + find-my-way-ts@0.1.6: {} + + find-up@4.1.0: + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + + find-up@5.0.0: + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + + flat-cache@4.0.1: + dependencies: + flatted: 3.3.3 + keyv: 4.5.4 + + flatted@3.3.3: {} + + flexsearch@0.7.43: {} + + focus-visible@5.2.1: {} + + for-each@0.3.5: + dependencies: + is-callable: 1.2.7 + + for-in@1.0.2: {} + + foreground-child@3.3.1: + dependencies: + cross-spawn: 7.0.6 + signal-exit: 4.1.0 + + fs-constants@1.0.0: {} + + fs-extra@10.1.0: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 + + fs-extra@7.0.1: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 4.0.0 + universalify: 0.1.2 + + fs-extra@8.1.0: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 4.0.0 + universalify: 0.1.2 + + fs-readdir-recursive@1.1.0: {} + + fs.realpath@1.0.0: {} + + fsevents@2.3.3: + optional: true + + function-bind@1.1.2: {} + + function.prototype.name@1.1.8: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + functions-have-names: 1.2.3 + hasown: 2.0.2 + is-callable: 1.2.7 + + functions-have-names@1.2.3: {} + + gensync@1.0.0-beta.2: {} + + get-amd-module-type@6.0.1: + dependencies: + ast-module-types: 6.0.1 + node-source-walk: 7.0.1 + + get-caller-file@2.0.5: {} + + get-intrinsic@1.3.0: + dependencies: + call-bind-apply-helpers: 1.0.2 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + function-bind: 1.1.2 + get-proto: 1.0.1 + gopd: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + math-intrinsics: 1.1.0 + + get-own-enumerable-property-symbols@3.0.2: {} + + get-proto@1.0.1: + dependencies: + dunder-proto: 1.0.1 + es-object-atoms: 1.1.1 + + get-stream@3.0.0: {} + + get-stream@6.0.1: {} + + get-symbol-description@1.1.0: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + + get-tsconfig@4.10.1: + dependencies: + resolve-pkg-maps: 1.0.0 + + get-uri@6.0.5: + dependencies: + basic-ftp: 5.0.5 + data-uri-to-buffer: 6.0.2 + debug: 4.4.1 + transitivePeerDependencies: + - supports-color + + git-up@7.0.0: + dependencies: + is-ssh: 1.4.1 + parse-url: 8.1.0 + + git-url-parse@13.1.1: + dependencies: + git-up: 7.0.0 + + github-slugger@2.0.0: {} + + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 + + glob-parent@6.0.2: + dependencies: + is-glob: 4.0.3 + + glob@10.4.5: + dependencies: + foreground-child: 3.3.1 + jackspeak: 3.4.3 + minimatch: 9.0.5 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 + + glob@11.0.3: + dependencies: + foreground-child: 3.3.1 + jackspeak: 4.1.1 + minimatch: 10.0.3 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 2.0.0 + + glob@7.2.3: + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + + globals@14.0.0: {} + + globalthis@1.0.4: + dependencies: + define-properties: 1.2.1 + gopd: 1.2.0 + + globby@10.0.2: + dependencies: + '@types/glob': 7.2.0 + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.3 + glob: 7.2.3 + ignore: 5.3.2 + merge2: 1.4.1 + slash: 3.0.0 + + globby@11.1.0: + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.3 + ignore: 5.3.2 + merge2: 1.4.1 + slash: 3.0.0 + + gonzales-pe@4.3.0: + dependencies: + minimist: 1.2.8 + + gopd@1.2.0: {} + + graceful-fs@4.2.11: {} + + gradient-string@2.0.2: + dependencies: + chalk: 4.1.2 + tinygradient: 1.1.5 + + graphemer@1.4.0: {} + + gray-matter@3.1.1: + dependencies: + extend-shallow: 2.0.1 + js-yaml: 3.14.1 + kind-of: 5.1.0 + strip-bom-string: 1.0.0 + + gray-matter@4.0.3: + dependencies: + js-yaml: 3.14.1 + kind-of: 6.0.3 + section-matter: 1.0.0 + strip-bom-string: 1.0.0 + + gulp-header@1.8.12: + dependencies: + concat-with-sourcemaps: 1.1.0 + lodash.template: 4.5.0 + through2: 2.0.5 + + handlebars@4.7.8: + dependencies: + minimist: 1.2.8 + neo-async: 2.6.2 + source-map: 0.6.1 + wordwrap: 1.0.0 + optionalDependencies: + uglify-js: 3.19.3 + + has-bigints@1.1.0: {} + + has-flag@2.0.0: {} + + has-flag@3.0.0: {} + + has-flag@4.0.0: {} + + has-property-descriptors@1.0.2: + dependencies: + es-define-property: 1.0.1 + + has-proto@1.2.0: + dependencies: + dunder-proto: 1.0.1 + + has-symbols@1.1.0: {} + + has-tostringtag@1.0.2: + dependencies: + has-symbols: 1.1.0 + + hash-obj@4.0.0: + dependencies: + is-obj: 3.0.0 + sort-keys: 5.1.0 + type-fest: 1.4.0 + + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 + + hast-util-from-dom@5.0.1: + dependencies: + '@types/hast': 3.0.4 + hastscript: 9.0.1 + web-namespaces: 2.0.1 + + hast-util-from-html-isomorphic@2.0.0: + dependencies: + '@types/hast': 3.0.4 + hast-util-from-dom: 5.0.1 + hast-util-from-html: 2.0.3 + unist-util-remove-position: 5.0.0 + + hast-util-from-html@2.0.3: + dependencies: + '@types/hast': 3.0.4 + devlop: 1.1.0 + hast-util-from-parse5: 8.0.3 + parse5: 7.3.0 + vfile: 6.0.3 + vfile-message: 4.0.3 + + hast-util-from-parse5@8.0.3: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + devlop: 1.1.0 + hastscript: 9.0.1 + property-information: 7.1.0 + vfile: 6.0.3 + vfile-location: 5.0.3 + web-namespaces: 2.0.1 + + hast-util-is-element@3.0.0: + dependencies: + '@types/hast': 3.0.4 + + hast-util-parse-selector@4.0.0: + dependencies: + '@types/hast': 3.0.4 + + hast-util-raw@9.1.0: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + '@ungap/structured-clone': 1.3.0 + hast-util-from-parse5: 8.0.3 + hast-util-to-parse5: 8.0.0 + html-void-elements: 3.0.0 + mdast-util-to-hast: 13.2.0 + parse5: 7.3.0 + unist-util-position: 5.0.0 + unist-util-visit: 5.0.0 + vfile: 6.0.3 + web-namespaces: 2.0.1 + zwitch: 2.0.4 + + hast-util-to-estree@2.3.3: + dependencies: + '@types/estree': 1.0.8 + '@types/estree-jsx': 1.0.5 + '@types/hast': 2.3.10 + '@types/unist': 2.0.11 + comma-separated-tokens: 2.0.3 + estree-util-attach-comments: 2.1.1 + estree-util-is-identifier-name: 2.1.0 + hast-util-whitespace: 2.0.1 + mdast-util-mdx-expression: 1.3.2 + mdast-util-mdxjs-esm: 1.3.1 + property-information: 6.5.0 + space-separated-tokens: 2.0.2 + style-to-object: 0.4.4 + unist-util-position: 4.0.4 + zwitch: 2.0.4 + transitivePeerDependencies: + - supports-color + + hast-util-to-parse5@8.0.0: + dependencies: + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + property-information: 6.5.0 + space-separated-tokens: 2.0.2 + web-namespaces: 2.0.1 + zwitch: 2.0.4 + + hast-util-to-text@4.0.2: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + hast-util-is-element: 3.0.0 + unist-util-find-after: 5.0.0 + + hast-util-whitespace@2.0.1: {} + + hastscript@9.0.1: + dependencies: + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + hast-util-parse-selector: 4.0.0 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + + header-case@1.0.1: + dependencies: + no-case: 2.3.2 + upper-case: 1.1.3 + + html-escaper@2.0.2: {} + + html-void-elements@3.0.0: {} + + http-proxy-agent@7.0.2: + dependencies: + agent-base: 7.1.4 + debug: 4.4.1 + transitivePeerDependencies: + - supports-color + + https-proxy-agent@7.0.6: + dependencies: + agent-base: 7.1.4 + debug: 4.4.1 + transitivePeerDependencies: + - supports-color + + human-id@4.1.1: {} + + human-signals@2.1.0: {} + + iconv-lite@0.4.24: + dependencies: + safer-buffer: 2.1.2 + + iconv-lite@0.6.3: + dependencies: + safer-buffer: 2.1.2 + + ieee754@1.2.1: {} + + ignore@5.3.2: {} + + ignore@7.0.5: {} + + import-fresh@3.3.1: + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + imurmurhash@0.1.4: {} + + indent-string@4.0.0: {} + + inflight@1.0.6: + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + + inherits@2.0.4: {} + + ini@1.3.8: {} + + inline-style-parser@0.1.1: {} + + inquirer@7.3.3: + dependencies: + ansi-escapes: 4.3.2 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-width: 3.0.0 + external-editor: 3.1.0 + figures: 3.2.0 + lodash: 4.17.21 + mute-stream: 0.0.8 + run-async: 2.4.1 + rxjs: 6.6.7 + string-width: 4.2.3 + strip-ansi: 6.0.1 + through: 2.3.8 + + inquirer@8.2.6: + dependencies: + ansi-escapes: 4.3.2 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-width: 3.0.0 + external-editor: 3.1.0 + figures: 3.2.0 + lodash: 4.17.21 + mute-stream: 0.0.8 + ora: 5.4.1 + run-async: 2.4.1 + rxjs: 7.8.2 + string-width: 4.2.3 + strip-ansi: 6.0.1 + through: 2.3.8 + wrap-ansi: 6.2.0 + + internal-slot@1.1.0: + dependencies: + es-errors: 1.3.0 + hasown: 2.0.2 + side-channel: 1.1.0 + + internmap@1.0.1: {} + + internmap@2.0.3: {} + + intersection-observer@0.12.2: {} + + ip-address@9.0.5: + dependencies: + jsbn: 1.1.0 + sprintf-js: 1.1.3 + + is-alphabetical@2.0.1: {} + + is-alphanumerical@2.0.1: + dependencies: + is-alphabetical: 2.0.1 + is-decimal: 2.0.1 + + is-array-buffer@3.0.5: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + + is-async-function@2.1.1: + dependencies: + async-function: 1.0.0 + call-bound: 1.0.4 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 + + is-bigint@1.1.0: + dependencies: + has-bigints: 1.1.0 + + is-binary-path@2.1.0: + dependencies: + binary-extensions: 2.3.0 + optional: true + + is-boolean-object@1.2.2: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-buffer@1.1.6: {} + + is-buffer@2.0.5: {} + + is-bun-module@2.0.0: + dependencies: + semver: 7.7.2 + + is-callable@1.2.7: {} + + is-core-module@2.16.1: + dependencies: + hasown: 2.0.2 + + is-data-view@1.0.2: + dependencies: + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + is-typed-array: 1.1.15 + + is-date-object@1.1.0: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-decimal@2.0.1: {} + + is-extendable@0.1.1: {} + + is-extendable@1.0.1: + dependencies: + is-plain-object: 2.0.4 + + is-extglob@2.1.1: {} + + is-finalizationregistry@1.1.1: + dependencies: + call-bound: 1.0.4 + + is-fullwidth-code-point@3.0.0: {} + + is-generator-function@1.1.0: + dependencies: + call-bound: 1.0.4 + get-proto: 1.0.1 + has-tostringtag: 1.0.2 + safe-regex-test: 1.1.0 + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + + is-hexadecimal@2.0.1: {} + + is-interactive@1.0.0: {} + + is-lower-case@1.1.3: + dependencies: + lower-case: 1.1.4 + + is-map@2.0.3: {} + + is-negative-zero@2.0.3: {} + + is-number-object@1.1.1: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-number@2.1.0: + dependencies: + kind-of: 3.2.2 + + is-number@4.0.0: {} + + is-number@7.0.0: {} + + is-obj@1.0.1: {} + + is-obj@3.0.0: {} + + is-path-cwd@2.2.0: {} + + is-path-inside@3.0.3: {} + + is-plain-obj@4.1.0: {} + + is-plain-object@2.0.4: + dependencies: + isobject: 3.0.1 + + is-reference@3.0.3: + dependencies: + '@types/estree': 1.0.8 + + is-regex@1.2.1: + dependencies: + call-bound: 1.0.4 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + is-regexp@1.0.0: {} + + is-set@2.0.3: {} + + is-shared-array-buffer@1.0.4: + dependencies: + call-bound: 1.0.4 + + is-ssh@1.4.1: + dependencies: + protocols: 2.0.2 + + is-stream@1.1.0: {} + + is-stream@2.0.1: {} + + is-string@1.1.1: + dependencies: + call-bound: 1.0.4 + has-tostringtag: 1.0.2 + + is-subdir@1.2.0: + dependencies: + better-path-resolve: 1.0.0 + + is-symbol@1.1.1: + dependencies: + call-bound: 1.0.4 + has-symbols: 1.1.0 + safe-regex-test: 1.1.0 + + is-typed-array@1.1.15: + dependencies: + which-typed-array: 1.1.19 + + is-unicode-supported@0.1.0: {} + + is-upper-case@1.1.2: + dependencies: + upper-case: 1.1.3 + + is-url-superb@4.0.0: {} + + is-url@1.2.4: {} + + is-weakmap@2.0.2: {} + + is-weakref@1.1.1: + dependencies: + call-bound: 1.0.4 + + is-weakset@2.0.4: + dependencies: + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + + is-windows@1.0.2: {} + + isarray@1.0.0: {} + + isarray@2.0.5: {} + + isbinaryfile@4.0.10: {} + + isexe@2.0.0: {} + + isobject@2.1.0: + dependencies: + isarray: 1.0.0 + + isobject@3.0.1: {} + + istanbul-lib-coverage@3.2.2: {} + + istanbul-lib-report@3.0.1: + dependencies: + istanbul-lib-coverage: 3.2.2 + make-dir: 4.0.0 + supports-color: 7.2.0 + + istanbul-lib-source-maps@5.0.6: + dependencies: + '@jridgewell/trace-mapping': 0.3.29 + debug: 4.4.1 + istanbul-lib-coverage: 3.2.2 + transitivePeerDependencies: + - supports-color + + istanbul-reports@3.1.7: + dependencies: + html-escaper: 2.0.2 + istanbul-lib-report: 3.0.1 + + jackspeak@3.4.3: + dependencies: + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 + + jackspeak@4.1.1: + dependencies: + '@isaacs/cliui': 8.0.2 + + js-tokens@4.0.0: {} + + js-tokens@9.0.1: {} + + js-yaml@3.14.1: + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + + js-yaml@4.1.0: + dependencies: + argparse: 2.0.1 + + jsbn@1.1.0: {} + + jsesc@3.1.0: {} + + json-buffer@3.0.1: {} + + json-schema-traverse@0.4.1: {} + + json-stable-stringify-without-jsonify@1.0.1: {} + + json5@1.0.2: + dependencies: + minimist: 1.2.8 + + json5@2.2.3: {} + + jsonc-parser@3.3.1: {} + + jsonfile@4.0.0: + optionalDependencies: + graceful-fs: 4.2.11 + + jsonfile@6.1.0: + dependencies: + universalify: 2.0.1 + optionalDependencies: + graceful-fs: 4.2.11 + + katex@0.16.22: + dependencies: + commander: 8.3.0 + + keyv@4.5.4: + dependencies: + json-buffer: 3.0.1 + + khroma@2.1.0: {} + + kind-of@3.2.2: + dependencies: + is-buffer: 1.1.6 + + kind-of@5.1.0: {} + + kind-of@6.0.3: {} + + kleur@4.1.5: {} + + layout-base@1.0.2: {} + + lazy-cache@2.0.2: + dependencies: + set-getter: 0.1.1 + + levn@0.4.1: + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + + list-item@1.1.1: + dependencies: + expand-range: 1.8.2 + extend-shallow: 2.0.1 + is-number: 2.1.0 + repeat-string: 1.6.1 + + locate-path@5.0.0: + dependencies: + p-locate: 4.1.0 + + locate-path@6.0.0: + dependencies: + p-locate: 5.0.0 + + lodash-es@4.17.21: {} + + lodash._reinterpolate@3.0.0: {} + + lodash.camelcase@4.3.0: {} + + lodash.get@4.4.2: {} + + lodash.merge@4.6.2: {} + + lodash.startcase@4.4.0: {} + + lodash.template@4.5.0: + dependencies: + lodash._reinterpolate: 3.0.0 + lodash.templatesettings: 4.2.0 + + lodash.templatesettings@4.2.0: + dependencies: + lodash._reinterpolate: 3.0.0 + + lodash@4.17.21: {} + + log-symbols@3.0.0: + dependencies: + chalk: 2.4.2 + + log-symbols@4.1.0: + dependencies: + chalk: 4.1.2 + is-unicode-supported: 0.1.0 + + long@5.3.2: {} + + longest-streak@3.1.0: {} + + loose-envify@1.4.0: + dependencies: + js-tokens: 4.0.0 + + loupe@3.2.0: {} + + lower-case-first@1.0.2: + dependencies: + lower-case: 1.1.4 + + lower-case@1.1.4: {} + + lru-cache@10.4.3: {} + + lru-cache@11.1.0: {} + + lru-cache@4.1.5: + dependencies: + pseudomap: 1.0.2 + yallist: 2.1.2 + + lru-cache@5.1.1: + dependencies: + yallist: 3.1.1 + + lru-cache@7.18.3: {} + + madge@8.0.0(typescript@5.8.3): + dependencies: + chalk: 4.1.2 + commander: 7.2.0 + commondir: 1.0.1 + debug: 4.4.1 + dependency-tree: 11.2.0 + ora: 5.4.1 + pluralize: 8.0.0 + pretty-ms: 7.0.1 + rc: 1.2.8 + stream-to-array: 2.3.0 + ts-graphviz: 2.1.6 + walkdir: 0.4.1 + optionalDependencies: + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + magic-string@0.30.17: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.4 + + magicast@0.3.5: + dependencies: + '@babel/parser': 7.28.0 + '@babel/types': 7.28.2 + source-map-js: 1.2.1 + + make-dir@2.1.0: + dependencies: + pify: 4.0.1 + semver: 5.7.2 + + make-dir@4.0.0: + dependencies: + semver: 7.7.2 + + make-error@1.3.6: {} + + markdown-extensions@1.1.1: {} + + markdown-link@0.1.1: {} + + markdown-table@3.0.4: {} + + match-sorter@6.3.4: + dependencies: + '@babel/runtime': 7.28.2 + remove-accents: 0.5.0 + + math-intrinsics@1.1.0: {} + + math-random@1.0.4: {} + + mdast-util-definitions@5.1.2: + dependencies: + '@types/mdast': 3.0.15 + '@types/unist': 2.0.11 + unist-util-visit: 4.1.2 + + mdast-util-find-and-replace@2.2.2: + dependencies: + '@types/mdast': 3.0.15 + escape-string-regexp: 5.0.0 + unist-util-is: 5.2.1 + unist-util-visit-parents: 5.1.3 + + mdast-util-from-markdown@1.3.1: + dependencies: + '@types/mdast': 3.0.15 + '@types/unist': 2.0.11 + decode-named-character-reference: 1.2.0 + mdast-util-to-string: 3.2.0 + micromark: 3.2.0 + micromark-util-decode-numeric-character-reference: 1.1.0 + micromark-util-decode-string: 1.1.0 + micromark-util-normalize-identifier: 1.1.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + unist-util-stringify-position: 3.0.3 + uvu: 0.5.6 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-autolink-literal@1.0.3: + dependencies: + '@types/mdast': 3.0.15 + ccount: 2.0.1 + mdast-util-find-and-replace: 2.2.2 + micromark-util-character: 1.2.0 + + mdast-util-gfm-footnote@1.0.2: + dependencies: + '@types/mdast': 3.0.15 + mdast-util-to-markdown: 1.5.0 + micromark-util-normalize-identifier: 1.1.0 + + mdast-util-gfm-strikethrough@1.0.3: + dependencies: + '@types/mdast': 3.0.15 + mdast-util-to-markdown: 1.5.0 + + mdast-util-gfm-table@1.0.7: + dependencies: + '@types/mdast': 3.0.15 + markdown-table: 3.0.4 + mdast-util-from-markdown: 1.3.1 + mdast-util-to-markdown: 1.5.0 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-task-list-item@1.0.2: + dependencies: + '@types/mdast': 3.0.15 + mdast-util-to-markdown: 1.5.0 + + mdast-util-gfm@2.0.2: + dependencies: + mdast-util-from-markdown: 1.3.1 + mdast-util-gfm-autolink-literal: 1.0.3 + mdast-util-gfm-footnote: 1.0.2 + mdast-util-gfm-strikethrough: 1.0.3 + mdast-util-gfm-table: 1.0.7 + mdast-util-gfm-task-list-item: 1.0.2 + mdast-util-to-markdown: 1.5.0 + transitivePeerDependencies: + - supports-color + + mdast-util-math@2.0.2: + dependencies: + '@types/mdast': 3.0.15 + longest-streak: 3.1.0 + mdast-util-to-markdown: 1.5.0 + + mdast-util-mdx-expression@1.3.2: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 2.3.10 + '@types/mdast': 3.0.15 + mdast-util-from-markdown: 1.3.1 + mdast-util-to-markdown: 1.5.0 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx-jsx@2.1.4: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 2.3.10 + '@types/mdast': 3.0.15 + '@types/unist': 2.0.11 + ccount: 2.0.1 + mdast-util-from-markdown: 1.3.1 + mdast-util-to-markdown: 1.5.0 + parse-entities: 4.0.2 + stringify-entities: 4.0.4 + unist-util-remove-position: 4.0.2 + unist-util-stringify-position: 3.0.3 + vfile-message: 3.1.4 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx@2.0.1: + dependencies: + mdast-util-from-markdown: 1.3.1 + mdast-util-mdx-expression: 1.3.2 + mdast-util-mdx-jsx: 2.1.4 + mdast-util-mdxjs-esm: 1.3.1 + mdast-util-to-markdown: 1.5.0 + transitivePeerDependencies: + - supports-color + + mdast-util-mdxjs-esm@1.3.1: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 2.3.10 + '@types/mdast': 3.0.15 + mdast-util-from-markdown: 1.3.1 + mdast-util-to-markdown: 1.5.0 + transitivePeerDependencies: + - supports-color + + mdast-util-phrasing@3.0.1: + dependencies: + '@types/mdast': 3.0.15 + unist-util-is: 5.2.1 + + mdast-util-to-hast@12.3.0: + dependencies: + '@types/hast': 2.3.10 + '@types/mdast': 3.0.15 + mdast-util-definitions: 5.1.2 + micromark-util-sanitize-uri: 1.2.0 + trim-lines: 3.0.1 + unist-util-generated: 2.0.1 + unist-util-position: 4.0.4 + unist-util-visit: 4.1.2 + + mdast-util-to-hast@13.2.0: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@ungap/structured-clone': 1.3.0 + devlop: 1.1.0 + micromark-util-sanitize-uri: 2.0.1 + trim-lines: 3.0.1 + unist-util-position: 5.0.0 + unist-util-visit: 5.0.0 + vfile: 6.0.3 + + mdast-util-to-markdown@1.5.0: + dependencies: + '@types/mdast': 3.0.15 + '@types/unist': 2.0.11 + longest-streak: 3.1.0 + mdast-util-phrasing: 3.0.1 + mdast-util-to-string: 3.2.0 + micromark-util-decode-string: 1.1.0 + unist-util-visit: 4.1.2 + zwitch: 2.0.4 + + mdast-util-to-string@3.2.0: + dependencies: + '@types/mdast': 3.0.15 + + merge-stream@2.0.0: {} + + merge2@1.4.1: {} + + mermaid@10.9.3: + dependencies: + '@braintree/sanitize-url': 6.0.4 + '@types/d3-scale': 4.0.9 + '@types/d3-scale-chromatic': 3.1.0 + cytoscape: 3.33.0 + cytoscape-cose-bilkent: 4.1.0(cytoscape@3.33.0) + d3: 7.9.0 + d3-sankey: 0.12.3 + dagre-d3-es: 7.0.10 + dayjs: 1.11.13 + dompurify: 3.1.6 + elkjs: 0.9.3 + katex: 0.16.22 + khroma: 2.1.0 + lodash-es: 4.17.21 + mdast-util-from-markdown: 1.3.1 + non-layered-tidy-tree-layout: 2.0.2 + stylis: 4.3.6 + ts-dedent: 2.2.0 + uuid: 9.0.1 + web-worker: 1.5.0 + transitivePeerDependencies: + - supports-color + + micromark-core-commonmark@1.1.0: + dependencies: + decode-named-character-reference: 1.2.0 + micromark-factory-destination: 1.1.0 + micromark-factory-label: 1.1.0 + micromark-factory-space: 1.1.0 + micromark-factory-title: 1.1.0 + micromark-factory-whitespace: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-chunked: 1.1.0 + micromark-util-classify-character: 1.1.0 + micromark-util-html-tag-name: 1.2.0 + micromark-util-normalize-identifier: 1.1.0 + micromark-util-resolve-all: 1.1.0 + micromark-util-subtokenize: 1.1.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + + micromark-extension-gfm-autolink-literal@1.0.5: + dependencies: + micromark-util-character: 1.2.0 + micromark-util-sanitize-uri: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + + micromark-extension-gfm-footnote@1.1.2: + dependencies: + micromark-core-commonmark: 1.1.0 + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-normalize-identifier: 1.1.0 + micromark-util-sanitize-uri: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + + micromark-extension-gfm-strikethrough@1.0.7: + dependencies: + micromark-util-chunked: 1.1.0 + micromark-util-classify-character: 1.1.0 + micromark-util-resolve-all: 1.1.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + + micromark-extension-gfm-table@1.0.7: + dependencies: + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + + micromark-extension-gfm-tagfilter@1.0.2: + dependencies: + micromark-util-types: 1.1.0 + + micromark-extension-gfm-task-list-item@1.0.5: + dependencies: + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + + micromark-extension-gfm@2.0.3: + dependencies: + micromark-extension-gfm-autolink-literal: 1.0.5 + micromark-extension-gfm-footnote: 1.1.2 + micromark-extension-gfm-strikethrough: 1.0.7 + micromark-extension-gfm-table: 1.0.7 + micromark-extension-gfm-tagfilter: 1.0.2 + micromark-extension-gfm-task-list-item: 1.0.5 + micromark-util-combine-extensions: 1.1.0 + micromark-util-types: 1.1.0 + + micromark-extension-math@2.1.2: + dependencies: + '@types/katex': 0.16.7 + katex: 0.16.22 + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + + micromark-extension-mdx-expression@1.0.8: + dependencies: + '@types/estree': 1.0.8 + micromark-factory-mdx-expression: 1.0.9 + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-events-to-acorn: 1.2.3 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + + micromark-extension-mdx-jsx@1.0.5: + dependencies: + '@types/acorn': 4.0.6 + '@types/estree': 1.0.8 + estree-util-is-identifier-name: 2.1.0 + micromark-factory-mdx-expression: 1.0.9 + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + vfile-message: 3.1.4 + + micromark-extension-mdx-md@1.0.1: + dependencies: + micromark-util-types: 1.1.0 + + micromark-extension-mdxjs-esm@1.0.5: + dependencies: + '@types/estree': 1.0.8 + micromark-core-commonmark: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-events-to-acorn: 1.2.3 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + unist-util-position-from-estree: 1.1.2 + uvu: 0.5.6 + vfile-message: 3.1.4 + + micromark-extension-mdxjs@1.0.1: + dependencies: + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) + micromark-extension-mdx-expression: 1.0.8 + micromark-extension-mdx-jsx: 1.0.5 + micromark-extension-mdx-md: 1.0.1 + micromark-extension-mdxjs-esm: 1.0.5 + micromark-util-combine-extensions: 1.1.0 + micromark-util-types: 1.1.0 + + micromark-factory-destination@1.1.0: + dependencies: + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + + micromark-factory-label@1.1.0: + dependencies: + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + + micromark-factory-mdx-expression@1.0.9: + dependencies: + '@types/estree': 1.0.8 + micromark-util-character: 1.2.0 + micromark-util-events-to-acorn: 1.2.3 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + unist-util-position-from-estree: 1.1.2 + uvu: 0.5.6 + vfile-message: 3.1.4 + + micromark-factory-space@1.1.0: + dependencies: + micromark-util-character: 1.2.0 + micromark-util-types: 1.1.0 + + micromark-factory-title@1.1.0: + dependencies: + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + + micromark-factory-whitespace@1.1.0: + dependencies: + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + + micromark-util-character@1.2.0: + dependencies: + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + + micromark-util-character@2.1.1: + dependencies: + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-chunked@1.1.0: + dependencies: + micromark-util-symbol: 1.1.0 + + micromark-util-classify-character@1.1.0: + dependencies: + micromark-util-character: 1.2.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + + micromark-util-combine-extensions@1.1.0: + dependencies: + micromark-util-chunked: 1.1.0 + micromark-util-types: 1.1.0 + + micromark-util-decode-numeric-character-reference@1.1.0: + dependencies: + micromark-util-symbol: 1.1.0 + + micromark-util-decode-string@1.1.0: + dependencies: + decode-named-character-reference: 1.2.0 + micromark-util-character: 1.2.0 + micromark-util-decode-numeric-character-reference: 1.1.0 + micromark-util-symbol: 1.1.0 + + micromark-util-encode@1.1.0: {} + + micromark-util-encode@2.0.1: {} + + micromark-util-events-to-acorn@1.2.3: + dependencies: + '@types/acorn': 4.0.6 + '@types/estree': 1.0.8 + '@types/unist': 2.0.11 + estree-util-visit: 1.2.1 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + vfile-message: 3.1.4 + + micromark-util-html-tag-name@1.2.0: {} + + micromark-util-normalize-identifier@1.1.0: + dependencies: + micromark-util-symbol: 1.1.0 + + micromark-util-resolve-all@1.1.0: + dependencies: + micromark-util-types: 1.1.0 + + micromark-util-sanitize-uri@1.2.0: + dependencies: + micromark-util-character: 1.2.0 + micromark-util-encode: 1.1.0 + micromark-util-symbol: 1.1.0 + + micromark-util-sanitize-uri@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-encode: 2.0.1 + micromark-util-symbol: 2.0.1 + + micromark-util-subtokenize@1.1.0: + dependencies: + micromark-util-chunked: 1.1.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + + micromark-util-symbol@1.1.0: {} + + micromark-util-symbol@2.0.1: {} + + micromark-util-types@1.1.0: {} + + micromark-util-types@2.0.2: {} + + micromark@3.2.0: + dependencies: + '@types/debug': 4.1.12 + debug: 4.4.1 + decode-named-character-reference: 1.2.0 + micromark-core-commonmark: 1.1.0 + micromark-factory-space: 1.1.0 + micromark-util-character: 1.2.0 + micromark-util-chunked: 1.1.0 + micromark-util-combine-extensions: 1.1.0 + micromark-util-decode-numeric-character-reference: 1.1.0 + micromark-util-encode: 1.1.0 + micromark-util-normalize-identifier: 1.1.0 + micromark-util-resolve-all: 1.1.0 + micromark-util-sanitize-uri: 1.2.0 + micromark-util-subtokenize: 1.1.0 + micromark-util-symbol: 1.1.0 + micromark-util-types: 1.1.0 + uvu: 0.5.6 + transitivePeerDependencies: + - supports-color + + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + + mime@3.0.0: {} + + mimic-fn@2.1.0: {} + + minimatch@10.0.3: + dependencies: + '@isaacs/brace-expansion': 5.0.0 + + minimatch@3.1.2: + dependencies: + brace-expansion: 1.1.12 + + minimatch@9.0.5: + dependencies: + brace-expansion: 2.0.2 + + minimist@1.2.8: {} + + minipass@7.1.2: {} + + mixin-deep@1.3.2: + dependencies: + for-in: 1.0.2 + is-extendable: 1.0.1 + + mkdirp-classic@0.5.3: {} + + mkdirp@0.5.6: + dependencies: + minimist: 1.2.8 + + module-definition@6.0.1: + dependencies: + ast-module-types: 6.0.1 + node-source-walk: 7.0.1 + + module-lookup-amd@9.0.5: + dependencies: + commander: 12.1.0 + glob: 7.2.3 + requirejs: 2.3.7 + requirejs-config-file: 4.0.0 + + mri@1.2.0: {} + + ms@2.1.3: {} + + msgpackr-extract@3.0.3: + dependencies: + node-gyp-build-optional-packages: 5.2.2 + optionalDependencies: + '@msgpackr-extract/msgpackr-extract-darwin-arm64': 3.0.3 + '@msgpackr-extract/msgpackr-extract-darwin-x64': 3.0.3 + '@msgpackr-extract/msgpackr-extract-linux-arm': 3.0.3 + '@msgpackr-extract/msgpackr-extract-linux-arm64': 3.0.3 + '@msgpackr-extract/msgpackr-extract-linux-x64': 3.0.3 + '@msgpackr-extract/msgpackr-extract-win32-x64': 3.0.3 + optional: true + + msgpackr@1.11.5: + optionalDependencies: + msgpackr-extract: 3.0.3 + + multipasta@0.2.7: {} + + mute-stream@0.0.8: {} + + nan@2.23.0: + optional: true + + nanoid@3.3.11: {} + + napi-postinstall@0.3.2: {} + + natural-compare-lite@1.4.0: {} + + natural-compare@1.4.0: {} + + neo-async@2.6.2: {} + + netmask@2.0.2: {} + + next-mdx-remote@4.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@mdx-js/mdx': 2.3.0 + '@mdx-js/react': 2.3.0(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + vfile: 5.3.7 + vfile-matter: 3.0.1 + transitivePeerDependencies: + - supports-color + + next-seo@6.8.0(next@14.2.30(@babel/core@7.28.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + next: 14.2.30(@babel/core@7.28.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + next-themes@0.2.1(next@14.2.30(@babel/core@7.28.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + next: 14.2.30(@babel/core@7.28.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + next@14.2.30(@babel/core@7.28.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@next/env': 14.2.30 + '@swc/helpers': 0.5.5 + busboy: 1.6.0 + caniuse-lite: 1.0.30001727 + graceful-fs: 4.2.11 + postcss: 8.4.31 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + styled-jsx: 5.1.1(@babel/core@7.28.0)(react@18.3.1) + optionalDependencies: + '@next/swc-darwin-arm64': 14.2.30 + '@next/swc-darwin-x64': 14.2.30 + '@next/swc-linux-arm64-gnu': 14.2.30 + '@next/swc-linux-arm64-musl': 14.2.30 + '@next/swc-linux-x64-gnu': 14.2.30 + '@next/swc-linux-x64-musl': 14.2.30 + '@next/swc-win32-arm64-msvc': 14.2.30 + '@next/swc-win32-ia32-msvc': 14.2.30 + '@next/swc-win32-x64-msvc': 14.2.30 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros + + nextra-theme-docs@2.13.4(next@14.2.30(@babel/core@7.28.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(nextra@2.13.4(next@14.2.30(@babel/core@7.28.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@headlessui/react': 1.7.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@popperjs/core': 2.11.8 + clsx: 2.1.1 + escape-string-regexp: 5.0.0 + flexsearch: 0.7.43 + focus-visible: 5.2.1 + git-url-parse: 13.1.1 + intersection-observer: 0.12.2 + match-sorter: 6.3.4 + next: 14.2.30(@babel/core@7.28.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + next-seo: 6.8.0(next@14.2.30(@babel/core@7.28.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + next-themes: 0.2.1(next@14.2.30(@babel/core@7.28.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + nextra: 2.13.4(next@14.2.30(@babel/core@7.28.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + scroll-into-view-if-needed: 3.1.0 + zod: 3.25.76 + + nextra@2.13.4(next@14.2.30(@babel/core@7.28.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@headlessui/react': 1.7.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mdx-js/mdx': 2.3.0 + '@mdx-js/react': 2.3.0(react@18.3.1) + '@napi-rs/simple-git': 0.1.21 + '@theguild/remark-mermaid': 0.0.5(react@18.3.1) + '@theguild/remark-npm2yarn': 0.2.1 + clsx: 2.1.1 + github-slugger: 2.0.0 + graceful-fs: 4.2.11 + gray-matter: 4.0.3 + katex: 0.16.22 + lodash.get: 4.4.2 + next: 14.2.30(@babel/core@7.28.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + next-mdx-remote: 4.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + p-limit: 3.1.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + rehype-katex: 7.0.1 + rehype-pretty-code: 0.9.11(shiki@0.14.7) + rehype-raw: 7.0.0 + remark-gfm: 3.0.1 + remark-math: 5.1.1 + remark-reading-time: 2.0.2 + shiki: 0.14.7 + slash: 3.0.0 + title: 3.5.3 + unist-util-remove: 4.0.0 + unist-util-visit: 5.0.0 + zod: 3.25.76 + transitivePeerDependencies: + - supports-color + + no-case@2.3.2: + dependencies: + lower-case: 1.1.4 + + node-addon-api@7.1.1: {} + + node-fetch@2.7.0: + dependencies: + whatwg-url: 5.0.0 + + node-gyp-build-optional-packages@5.2.2: + dependencies: + detect-libc: 2.0.4 + optional: true + + node-plop@0.26.3: + dependencies: + '@babel/runtime-corejs3': 7.28.2 + '@types/inquirer': 6.5.0 + change-case: 3.1.0 + del: 5.1.0 + globby: 10.0.2 + handlebars: 4.7.8 + inquirer: 7.3.3 + isbinaryfile: 4.0.10 + lodash.get: 4.4.2 + mkdirp: 0.5.6 + resolve: 1.22.10 + + node-releases@2.0.19: {} + + node-source-walk@7.0.1: + dependencies: + '@babel/parser': 7.28.0 + + non-layered-tidy-tree-layout@2.0.2: {} + + normalize-path@3.0.0: + optional: true + + npm-run-path@2.0.2: + dependencies: + path-key: 2.0.1 + + npm-run-path@4.0.1: + dependencies: + path-key: 3.1.1 + + npm-to-yarn@2.2.1: {} + + object-inspect@1.13.4: {} + + object-keys@1.1.1: {} + + object.assign@4.1.7: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + has-symbols: 1.1.0 + object-keys: 1.1.1 + + object.fromentries@2.0.8: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-object-atoms: 1.1.1 + + object.groupby@1.0.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + + object.pick@1.3.0: + dependencies: + isobject: 3.0.1 + + object.values@1.2.1: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + + once@1.4.0: + dependencies: + wrappy: 1.0.2 + + onetime@5.1.2: + dependencies: + mimic-fn: 2.1.0 + + optionator@0.9.4: + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.5 + + ora@4.1.1: + dependencies: + chalk: 3.0.0 + cli-cursor: 3.1.0 + cli-spinners: 2.9.2 + is-interactive: 1.0.0 + log-symbols: 3.0.0 + mute-stream: 0.0.8 + strip-ansi: 6.0.1 + wcwidth: 1.0.1 + + ora@5.4.1: + dependencies: + bl: 4.1.0 + chalk: 4.1.2 + cli-cursor: 3.1.0 + cli-spinners: 2.9.2 + is-interactive: 1.0.0 + is-unicode-supported: 0.1.0 + log-symbols: 4.1.0 + strip-ansi: 6.0.1 + wcwidth: 1.0.1 + + os-tmpdir@1.0.2: {} + + outdent@0.5.0: {} + + own-keys@1.0.1: + dependencies: + get-intrinsic: 1.3.0 + object-keys: 1.1.1 + safe-push-apply: 1.0.0 + + p-filter@2.1.0: + dependencies: + p-map: 2.1.0 + + p-finally@1.0.0: {} + + p-limit@2.3.0: + dependencies: + p-try: 2.2.0 + + p-limit@3.1.0: + dependencies: + yocto-queue: 0.1.0 + + p-locate@4.1.0: + dependencies: + p-limit: 2.3.0 + + p-locate@5.0.0: + dependencies: + p-limit: 3.1.0 + + p-map@2.1.0: {} + + p-map@3.0.0: + dependencies: + aggregate-error: 3.1.0 + + p-try@2.2.0: {} + + pac-proxy-agent@7.2.0: + dependencies: + '@tootallnate/quickjs-emscripten': 0.23.0 + agent-base: 7.1.4 + debug: 4.4.1 + get-uri: 6.0.5 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.6 + pac-resolver: 7.0.1 + socks-proxy-agent: 8.0.5 + transitivePeerDependencies: + - supports-color + + pac-resolver@7.0.1: + dependencies: + degenerator: 5.0.1 + netmask: 2.0.2 + + package-json-from-dist@1.0.1: {} + + package-manager-detector@0.2.11: + dependencies: + quansync: 0.2.10 + + param-case@2.1.1: + dependencies: + no-case: 2.3.2 + + parent-module@1.0.1: + dependencies: + callsites: 3.1.0 + + parse-entities@4.0.2: + dependencies: + '@types/unist': 2.0.11 + character-entities-legacy: 3.0.0 + character-reference-invalid: 2.0.1 + decode-named-character-reference: 1.2.0 + is-alphanumerical: 2.0.1 + is-decimal: 2.0.1 + is-hexadecimal: 2.0.1 + + parse-ms@2.1.0: {} + + parse-numeric-range@1.3.0: {} + + parse-path@7.1.0: + dependencies: + protocols: 2.0.2 + + parse-url@8.1.0: + dependencies: + parse-path: 7.1.0 + + parse5@7.3.0: + dependencies: + entities: 6.0.1 + + pascal-case@2.0.1: + dependencies: + camel-case: 3.0.0 + upper-case-first: 1.1.2 + + path-case@2.1.1: + dependencies: + no-case: 2.3.2 + + path-exists@4.0.0: {} + + path-is-absolute@1.0.1: {} + + path-key@2.0.1: {} + + path-key@3.1.1: {} + + path-parse@1.0.7: {} + + path-scurry@1.11.1: + dependencies: + lru-cache: 10.4.3 + minipass: 7.1.2 + + path-scurry@2.0.0: + dependencies: + lru-cache: 11.1.0 + minipass: 7.1.2 + + path-type@4.0.0: {} + + pathe@2.0.3: {} + + pathval@2.0.1: {} + + periscopic@3.1.0: + dependencies: + '@types/estree': 1.0.8 + estree-walker: 3.0.3 + is-reference: 3.0.3 + + picocolors@1.0.1: {} + + picocolors@1.1.1: {} + + picomatch@2.3.1: {} + + picomatch@4.0.3: {} + + pify@4.0.1: {} + + pluralize@8.0.0: {} + + possible-typed-array-names@1.1.0: {} + + postcss-values-parser@6.0.2(postcss@8.5.6): + dependencies: + color-name: 1.1.4 + is-url-superb: 4.0.0 + postcss: 8.5.6 + quote-unquote: 1.0.0 + + postcss@8.4.31: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + postcss@8.5.6: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + precinct@12.2.0: + dependencies: + '@dependents/detective-less': 5.0.1 + commander: 12.1.0 + detective-amd: 6.0.1 + detective-cjs: 6.0.1 + detective-es6: 5.0.1 + detective-postcss: 7.0.1(postcss@8.5.6) + detective-sass: 6.0.1 + detective-scss: 5.0.1 + detective-stylus: 5.0.1 + detective-typescript: 14.0.0(typescript@5.8.3) + detective-vue2: 2.2.0(typescript@5.8.3) + module-definition: 6.0.1 + node-source-walk: 7.0.1 + postcss: 8.5.6 + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + prelude-ls@1.2.1: {} + + prettier-linter-helpers@1.0.0: + dependencies: + fast-diff: 1.3.0 + + prettier@2.8.8: {} + + prettier@3.6.2: {} + + pretty-ms@7.0.1: + dependencies: + parse-ms: 2.1.0 + + process-nextick-args@2.0.1: {} + + property-information@6.5.0: {} + + property-information@7.1.0: {} + + protobufjs@7.5.3: + dependencies: + '@protobufjs/aspromise': 1.1.2 + '@protobufjs/base64': 1.1.2 + '@protobufjs/codegen': 2.0.4 + '@protobufjs/eventemitter': 1.1.0 + '@protobufjs/fetch': 1.1.0 + '@protobufjs/float': 1.0.2 + '@protobufjs/inquire': 1.1.0 + '@protobufjs/path': 1.1.2 + '@protobufjs/pool': 1.1.0 + '@protobufjs/utf8': 1.1.0 + '@types/node': 20.19.9 + long: 5.3.2 + + protocols@2.0.2: {} + + proxy-agent@6.5.0: + dependencies: + agent-base: 7.1.4 + debug: 4.4.1 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.6 + lru-cache: 7.18.3 + pac-proxy-agent: 7.2.0 + proxy-from-env: 1.1.0 + socks-proxy-agent: 8.0.5 + transitivePeerDependencies: + - supports-color + + proxy-from-env@1.1.0: {} + + pseudomap@1.0.2: {} + + pump@3.0.3: + dependencies: + end-of-stream: 1.4.5 + once: 1.4.0 + + punycode@2.3.1: {} + + pure-rand@6.1.0: {} + + quansync@0.2.10: {} + + queue-microtask@1.2.3: {} + + quote-unquote@1.0.0: {} + + randomatic@3.1.1: + dependencies: + is-number: 4.0.0 + kind-of: 6.0.3 + math-random: 1.0.4 + + rc@1.2.8: + dependencies: + deep-extend: 0.6.0 + ini: 1.3.8 + minimist: 1.2.8 + strip-json-comments: 2.0.1 + + react-dom@18.3.1(react@18.3.1): + dependencies: + loose-envify: 1.4.0 + react: 18.3.1 + scheduler: 0.23.2 + + react@18.3.1: + dependencies: + loose-envify: 1.4.0 + + read-yaml-file@1.1.0: + dependencies: + graceful-fs: 4.2.11 + js-yaml: 3.14.1 + pify: 4.0.1 + strip-bom: 3.0.0 + + readable-stream@2.3.8: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 2.0.1 + safe-buffer: 5.1.2 + string_decoder: 1.1.1 + util-deprecate: 1.0.2 + + readable-stream@3.6.2: + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + + readdirp@3.6.0: + dependencies: + picomatch: 2.3.1 + optional: true + + reading-time@1.5.0: {} + + reflect.getprototypeof@1.0.10: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + get-intrinsic: 1.3.0 + get-proto: 1.0.1 + which-builtin-type: 1.2.1 + + regexp.prototype.flags@1.5.4: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-errors: 1.3.0 + get-proto: 1.0.1 + gopd: 1.2.0 + set-function-name: 2.0.2 + + registry-auth-token@3.3.2: + dependencies: + rc: 1.2.8 + safe-buffer: 5.2.1 + + registry-url@3.1.0: + dependencies: + rc: 1.2.8 + + rehype-katex@7.0.1: + dependencies: + '@types/hast': 3.0.4 + '@types/katex': 0.16.7 + hast-util-from-html-isomorphic: 2.0.0 + hast-util-to-text: 4.0.2 + katex: 0.16.22 + unist-util-visit-parents: 6.0.1 + vfile: 6.0.3 + + rehype-pretty-code@0.9.11(shiki@0.14.7): + dependencies: + '@types/hast': 2.3.10 + hash-obj: 4.0.0 + parse-numeric-range: 1.3.0 + shiki: 0.14.7 + + rehype-raw@7.0.0: + dependencies: + '@types/hast': 3.0.4 + hast-util-raw: 9.1.0 + vfile: 6.0.3 + + remark-gfm@3.0.1: + dependencies: + '@types/mdast': 3.0.15 + mdast-util-gfm: 2.0.2 + micromark-extension-gfm: 2.0.3 + unified: 10.1.2 + transitivePeerDependencies: + - supports-color + + remark-math@5.1.1: + dependencies: + '@types/mdast': 3.0.15 + mdast-util-math: 2.0.2 + micromark-extension-math: 2.1.2 + unified: 10.1.2 + + remark-mdx@2.3.0: + dependencies: + mdast-util-mdx: 2.0.1 + micromark-extension-mdxjs: 1.0.1 + transitivePeerDependencies: + - supports-color + + remark-parse@10.0.2: + dependencies: + '@types/mdast': 3.0.15 + mdast-util-from-markdown: 1.3.1 + unified: 10.1.2 + transitivePeerDependencies: + - supports-color + + remark-reading-time@2.0.2: + dependencies: + estree-util-is-identifier-name: 2.1.0 + estree-util-value-to-estree: 3.4.0 + reading-time: 1.5.0 + unist-util-visit: 3.1.0 + + remark-rehype@10.1.0: + dependencies: + '@types/hast': 2.3.10 + '@types/mdast': 3.0.15 + mdast-util-to-hast: 12.3.0 + unified: 10.1.2 + + remarkable@1.7.4: + dependencies: + argparse: 1.0.10 + autolinker: 0.28.1 + + remove-accents@0.5.0: {} + + repeat-element@1.1.4: {} + + repeat-string@1.6.1: {} + + require-directory@2.1.1: {} + + requirejs-config-file@4.0.0: + dependencies: + esprima: 4.0.1 + stringify-object: 3.3.0 + + requirejs@2.3.7: {} + + resolve-dependency-path@4.0.1: {} + + resolve-from@4.0.0: {} + + resolve-from@5.0.0: {} + + resolve-pkg-maps@1.0.0: {} + + resolve@1.22.10: + dependencies: + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + restore-cursor@3.1.0: + dependencies: + onetime: 5.1.2 + signal-exit: 3.0.7 + + reusify@1.1.0: {} + + rimraf@3.0.2: + dependencies: + glob: 7.2.3 + + rimraf@6.0.1: + dependencies: + glob: 11.0.3 + package-json-from-dist: 1.0.1 + + robust-predicates@3.0.2: {} + + rollup@4.46.1: + dependencies: + '@types/estree': 1.0.8 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.46.1 + '@rollup/rollup-android-arm64': 4.46.1 + '@rollup/rollup-darwin-arm64': 4.46.1 + '@rollup/rollup-darwin-x64': 4.46.1 + '@rollup/rollup-freebsd-arm64': 4.46.1 + '@rollup/rollup-freebsd-x64': 4.46.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.46.1 + '@rollup/rollup-linux-arm-musleabihf': 4.46.1 + '@rollup/rollup-linux-arm64-gnu': 4.46.1 + '@rollup/rollup-linux-arm64-musl': 4.46.1 + '@rollup/rollup-linux-loongarch64-gnu': 4.46.1 + '@rollup/rollup-linux-ppc64-gnu': 4.46.1 + '@rollup/rollup-linux-riscv64-gnu': 4.46.1 + '@rollup/rollup-linux-riscv64-musl': 4.46.1 + '@rollup/rollup-linux-s390x-gnu': 4.46.1 + '@rollup/rollup-linux-x64-gnu': 4.46.1 + '@rollup/rollup-linux-x64-musl': 4.46.1 + '@rollup/rollup-win32-arm64-msvc': 4.46.1 + '@rollup/rollup-win32-ia32-msvc': 4.46.1 + '@rollup/rollup-win32-x64-msvc': 4.46.1 + fsevents: 2.3.3 + + run-async@2.4.1: {} + + run-parallel@1.2.0: + dependencies: + queue-microtask: 1.2.3 + + rw@1.3.3: {} + + rxjs@6.6.7: + dependencies: + tslib: 1.14.1 + + rxjs@7.8.2: + dependencies: + tslib: 2.8.1 + + sade@1.8.1: + dependencies: + mri: 1.2.0 + + safe-array-concat@1.1.3: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + get-intrinsic: 1.3.0 + has-symbols: 1.1.0 + isarray: 2.0.5 + + safe-buffer@5.1.2: {} + + safe-buffer@5.2.1: {} + + safe-push-apply@1.0.0: + dependencies: + es-errors: 1.3.0 + isarray: 2.0.5 + + safe-regex-test@1.1.0: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-regex: 1.2.1 + + safer-buffer@2.1.2: {} + + sass-lookup@6.1.0: + dependencies: + commander: 12.1.0 + enhanced-resolve: 5.18.2 + + scheduler@0.23.2: + dependencies: + loose-envify: 1.4.0 + + scroll-into-view-if-needed@3.1.0: + dependencies: + compute-scroll-into-view: 3.1.1 + + section-matter@1.0.0: + dependencies: + extend-shallow: 2.0.1 + kind-of: 6.0.3 + + semver@5.7.2: {} + + semver@6.3.1: {} + + semver@7.6.2: {} + + semver@7.7.2: {} + + sentence-case@2.1.1: + dependencies: + no-case: 2.3.2 + upper-case-first: 1.1.2 + + set-function-length@1.2.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.3.0 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + + set-function-name@2.0.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.2 + + set-getter@0.1.1: + dependencies: + to-object-path: 0.3.0 + + set-proto@1.0.0: + dependencies: + dunder-proto: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.1.1 + + shebang-command@1.2.0: + dependencies: + shebang-regex: 1.0.0 + + shebang-command@2.0.0: + dependencies: + shebang-regex: 3.0.0 + + shebang-regex@1.0.0: {} + + shebang-regex@3.0.0: {} + + shiki@0.14.7: + dependencies: + ansi-sequence-parser: 1.1.3 + jsonc-parser: 3.3.1 + vscode-oniguruma: 1.7.0 + vscode-textmate: 8.0.0 + + side-channel-list@1.0.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.4 + + side-channel-map@1.0.1: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + + side-channel-weakmap@1.0.2: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + get-intrinsic: 1.3.0 + object-inspect: 1.13.4 + side-channel-map: 1.0.1 + + side-channel@1.1.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.4 + side-channel-list: 1.0.0 + side-channel-map: 1.0.1 + side-channel-weakmap: 1.0.2 + + siginfo@2.0.0: {} + + signal-exit@3.0.7: {} + + signal-exit@4.1.0: {} + + slash@2.0.0: {} + + slash@3.0.0: {} + + smart-buffer@4.2.0: {} + + snake-case@2.1.0: + dependencies: + no-case: 2.3.2 + + socks-proxy-agent@8.0.5: + dependencies: + agent-base: 7.1.4 + debug: 4.4.1 + socks: 2.8.6 + transitivePeerDependencies: + - supports-color + + socks@2.8.6: + dependencies: + ip-address: 9.0.5 + smart-buffer: 4.2.0 + + sort-keys@5.1.0: + dependencies: + is-plain-obj: 4.1.0 + + source-map-js@1.2.1: {} + + source-map@0.6.1: {} + + source-map@0.7.6: {} + + space-separated-tokens@2.0.2: {} + + spawndamnit@3.0.1: + dependencies: + cross-spawn: 7.0.6 + signal-exit: 4.1.0 + + split-ca@1.0.1: {} + + sprintf-js@1.0.3: {} + + sprintf-js@1.1.3: {} + + ssh2@1.16.0: + dependencies: + asn1: 0.2.6 + bcrypt-pbkdf: 1.0.2 + optionalDependencies: + cpu-features: 0.0.10 + nan: 2.23.0 + + stable-hash-x@0.2.0: {} + + stackback@0.0.2: {} + + std-env@3.9.0: {} + + stop-iteration-iterator@1.1.0: + dependencies: + es-errors: 1.3.0 + internal-slot: 1.1.0 + + stream-to-array@2.3.0: + dependencies: + any-promise: 1.3.0 + + streamsearch@1.1.0: {} + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + string-width@5.1.2: + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.1.0 + + string.prototype.trim@1.2.10: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-data-property: 1.1.4 + define-properties: 1.2.1 + es-abstract: 1.24.0 + es-object-atoms: 1.1.1 + has-property-descriptors: 1.0.2 + + string.prototype.trimend@1.0.9: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.4 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + + string.prototype.trimstart@1.0.8: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-object-atoms: 1.1.1 + + string_decoder@1.1.1: + dependencies: + safe-buffer: 5.1.2 + + string_decoder@1.3.0: + dependencies: + safe-buffer: 5.2.1 + + stringify-entities@4.0.4: + dependencies: + character-entities-html4: 2.1.0 + character-entities-legacy: 3.0.0 + + stringify-object@3.3.0: + dependencies: + get-own-enumerable-property-symbols: 3.0.2 + is-obj: 1.0.1 + is-regexp: 1.0.0 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + strip-ansi@7.1.0: + dependencies: + ansi-regex: 6.1.0 + + strip-bom-string@1.0.0: {} + + strip-bom@3.0.0: {} + + strip-color@0.1.0: {} + + strip-eof@1.0.0: {} + + strip-final-newline@2.0.0: {} + + strip-json-comments@2.0.1: {} + + strip-json-comments@3.1.1: {} + + strip-literal@3.0.0: + dependencies: + js-tokens: 9.0.1 + + style-to-object@0.4.4: + dependencies: + inline-style-parser: 0.1.1 + + styled-jsx@5.1.1(@babel/core@7.28.0)(react@18.3.1): + dependencies: + client-only: 0.0.1 + react: 18.3.1 + optionalDependencies: + '@babel/core': 7.28.0 + + stylis@4.3.6: {} + + stylus-lookup@6.1.0: + dependencies: + commander: 12.1.0 + + supports-color@4.5.0: + dependencies: + has-flag: 2.0.0 + + supports-color@5.5.0: + dependencies: + has-flag: 3.0.0 + + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + + supports-preserve-symlinks-flag@1.0.0: {} + + swap-case@1.1.2: + dependencies: + lower-case: 1.1.4 + upper-case: 1.1.3 + + tapable@2.2.2: {} + + tar-fs@2.1.3: + dependencies: + chownr: 1.1.4 + mkdirp-classic: 0.5.3 + pump: 3.0.3 + tar-stream: 2.2.0 + + tar-stream@2.2.0: + dependencies: + bl: 4.1.0 + end-of-stream: 1.4.5 + fs-constants: 1.0.0 + inherits: 2.0.4 + readable-stream: 3.6.2 + + term-size@2.2.1: {} + + test-exclude@7.0.1: + dependencies: + '@istanbuljs/schema': 0.1.3 + glob: 10.4.5 + minimatch: 9.0.5 + + through2@2.0.5: + dependencies: + readable-stream: 2.3.8 + xtend: 4.0.2 + + through@2.3.8: {} + + tinybench@2.9.0: {} + + tinycolor2@1.6.0: {} + + tinyexec@0.3.2: {} + + tinyglobby@0.2.14: + dependencies: + fdir: 6.4.6(picomatch@4.0.3) + picomatch: 4.0.3 + + tinygradient@1.1.5: + dependencies: + '@types/tinycolor2': 1.4.6 + tinycolor2: 1.6.0 + + tinypool@1.1.1: {} + + tinyrainbow@2.0.0: {} + + tinyspy@4.0.3: {} + + title-case@2.1.1: + dependencies: + no-case: 2.3.2 + upper-case: 1.1.3 + + title@3.5.3: + dependencies: + arg: 1.0.0 + chalk: 2.3.0 + clipboardy: 1.2.2 + titleize: 1.0.0 + + titleize@1.0.0: {} + + tmp@0.0.33: + dependencies: + os-tmpdir: 1.0.2 + + to-object-path@0.3.0: + dependencies: + kind-of: 3.2.2 + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + tr46@0.0.3: {} + + trim-lines@3.0.1: {} + + trough@2.2.0: {} + + ts-api-utils@2.1.0(typescript@5.8.3): + dependencies: + typescript: 5.8.3 + + ts-dedent@2.2.0: {} + + ts-graphviz@2.1.6: + dependencies: + '@ts-graphviz/adapter': 2.0.6 + '@ts-graphviz/ast': 2.0.7 + '@ts-graphviz/common': 2.1.5 + '@ts-graphviz/core': 2.0.7 + + ts-node@10.9.2(@types/node@20.19.9)(typescript@5.8.3): + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.19.9 + acorn: 8.15.0 + acorn-walk: 8.3.4 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 5.8.3 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + + tsconfig-paths@3.15.0: + dependencies: + '@types/json5': 0.0.29 + json5: 1.0.2 + minimist: 1.2.8 + strip-bom: 3.0.0 + + tsconfig-paths@4.2.0: + dependencies: + json5: 2.2.3 + minimist: 1.2.8 + strip-bom: 3.0.0 + + tslib@1.14.1: {} + + tslib@2.8.1: {} + + tsx@4.20.3: + dependencies: + esbuild: 0.25.8 + get-tsconfig: 4.10.1 + optionalDependencies: + fsevents: 2.3.3 + + turbo-darwin-64@2.5.5: + optional: true + + turbo-darwin-arm64@2.5.5: + optional: true + + turbo-linux-64@2.5.5: + optional: true + + turbo-linux-arm64@2.5.5: + optional: true + + turbo-windows-64@2.5.5: + optional: true + + turbo-windows-arm64@2.5.5: + optional: true + + turbo@2.5.5: + optionalDependencies: + turbo-darwin-64: 2.5.5 + turbo-darwin-arm64: 2.5.5 + turbo-linux-64: 2.5.5 + turbo-linux-arm64: 2.5.5 + turbo-windows-64: 2.5.5 + turbo-windows-arm64: 2.5.5 + + tweetnacl@0.14.5: {} + + type-check@0.4.0: + dependencies: + prelude-ls: 1.2.1 + + type-fest@0.21.3: {} + + type-fest@1.4.0: {} + + typed-array-buffer@1.0.3: + dependencies: + call-bound: 1.0.4 + es-errors: 1.3.0 + is-typed-array: 1.1.15 + + typed-array-byte-length@1.0.3: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + + typed-array-byte-offset@1.0.4: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + reflect.getprototypeof: 1.0.10 + + typed-array-length@1.0.7: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.5 + gopd: 1.2.0 + is-typed-array: 1.1.15 + possible-typed-array-names: 1.1.0 + reflect.getprototypeof: 1.0.10 + + typedarray@0.0.6: {} + + typescript@5.8.3: {} + + uglify-js@3.19.3: + optional: true + + unbox-primitive@1.1.0: + dependencies: + call-bound: 1.0.4 + has-bigints: 1.1.0 + has-symbols: 1.1.0 + which-boxed-primitive: 1.1.1 + + undici-types@5.26.5: {} + + undici-types@6.21.0: {} + + undici@7.12.0: {} + + unified@10.1.2: + dependencies: + '@types/unist': 2.0.11 + bail: 2.0.2 + extend: 3.0.2 + is-buffer: 2.0.5 + is-plain-obj: 4.1.0 + trough: 2.2.0 + vfile: 5.3.7 + + unist-util-find-after@5.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + + unist-util-generated@2.0.1: {} + + unist-util-is@5.2.1: + dependencies: + '@types/unist': 2.0.11 + + unist-util-is@6.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-position-from-estree@1.1.2: + dependencies: + '@types/unist': 2.0.11 + + unist-util-position@4.0.4: + dependencies: + '@types/unist': 2.0.11 + + unist-util-position@5.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-remove-position@4.0.2: + dependencies: + '@types/unist': 2.0.11 + unist-util-visit: 4.1.2 + + unist-util-remove-position@5.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-visit: 5.0.0 + + unist-util-remove@4.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + + unist-util-stringify-position@3.0.3: + dependencies: + '@types/unist': 2.0.11 + + unist-util-stringify-position@4.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-visit-parents@4.1.1: + dependencies: + '@types/unist': 2.0.11 + unist-util-is: 5.2.1 + + unist-util-visit-parents@5.1.3: + dependencies: + '@types/unist': 2.0.11 + unist-util-is: 5.2.1 + + unist-util-visit-parents@6.0.1: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + + unist-util-visit@3.1.0: + dependencies: + '@types/unist': 2.0.11 + unist-util-is: 5.2.1 + unist-util-visit-parents: 4.1.1 + + unist-util-visit@4.1.2: + dependencies: + '@types/unist': 2.0.11 + unist-util-is: 5.2.1 + unist-util-visit-parents: 5.1.3 + + unist-util-visit@5.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + + universalify@0.1.2: {} + + universalify@2.0.1: {} + + unrs-resolver@1.11.1: + dependencies: + napi-postinstall: 0.3.2 + optionalDependencies: + '@unrs/resolver-binding-android-arm-eabi': 1.11.1 + '@unrs/resolver-binding-android-arm64': 1.11.1 + '@unrs/resolver-binding-darwin-arm64': 1.11.1 + '@unrs/resolver-binding-darwin-x64': 1.11.1 + '@unrs/resolver-binding-freebsd-x64': 1.11.1 + '@unrs/resolver-binding-linux-arm-gnueabihf': 1.11.1 + '@unrs/resolver-binding-linux-arm-musleabihf': 1.11.1 + '@unrs/resolver-binding-linux-arm64-gnu': 1.11.1 + '@unrs/resolver-binding-linux-arm64-musl': 1.11.1 + '@unrs/resolver-binding-linux-ppc64-gnu': 1.11.1 + '@unrs/resolver-binding-linux-riscv64-gnu': 1.11.1 + '@unrs/resolver-binding-linux-riscv64-musl': 1.11.1 + '@unrs/resolver-binding-linux-s390x-gnu': 1.11.1 + '@unrs/resolver-binding-linux-x64-gnu': 1.11.1 + '@unrs/resolver-binding-linux-x64-musl': 1.11.1 + '@unrs/resolver-binding-wasm32-wasi': 1.11.1 + '@unrs/resolver-binding-win32-arm64-msvc': 1.11.1 + '@unrs/resolver-binding-win32-ia32-msvc': 1.11.1 + '@unrs/resolver-binding-win32-x64-msvc': 1.11.1 + + update-browserslist-db@1.1.3(browserslist@4.25.1): + dependencies: + browserslist: 4.25.1 + escalade: 3.2.0 + picocolors: 1.1.1 + + update-check@1.5.4: + dependencies: + registry-auth-token: 3.3.2 + registry-url: 3.1.0 + + upper-case-first@1.1.2: + dependencies: + upper-case: 1.1.3 + + upper-case@1.1.3: {} + + uri-js@4.4.1: + dependencies: + punycode: 2.3.1 + + util-deprecate@1.0.2: {} + + uuid@10.0.0: {} + + uuid@11.1.0: {} + + uuid@9.0.1: {} + + uvu@0.5.6: + dependencies: + dequal: 2.0.3 + diff: 5.2.0 + kleur: 4.1.5 + sade: 1.8.1 + + v8-compile-cache-lib@3.0.1: {} + + validate-npm-package-name@5.0.1: {} + + vfile-location@5.0.3: + dependencies: + '@types/unist': 3.0.3 + vfile: 6.0.3 + + vfile-matter@3.0.1: + dependencies: + '@types/js-yaml': 4.0.9 + is-buffer: 2.0.5 + js-yaml: 4.1.0 + + vfile-message@3.1.4: + dependencies: + '@types/unist': 2.0.11 + unist-util-stringify-position: 3.0.3 + + vfile-message@4.0.3: + dependencies: + '@types/unist': 3.0.3 + unist-util-stringify-position: 4.0.0 + + vfile@5.3.7: + dependencies: + '@types/unist': 2.0.11 + is-buffer: 2.0.5 + unist-util-stringify-position: 3.0.3 + vfile-message: 3.1.4 + + vfile@6.0.3: + dependencies: + '@types/unist': 3.0.3 + vfile-message: 4.0.3 + + vite-node@3.2.4(@types/node@20.19.9): + dependencies: + cac: 6.7.14 + debug: 4.4.1 + es-module-lexer: 1.7.0 + pathe: 2.0.3 + vite: 5.4.19(@types/node@20.19.9) + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + + vite@5.4.19(@types/node@20.19.9): + dependencies: + esbuild: 0.21.5 + postcss: 8.5.6 + rollup: 4.46.1 + optionalDependencies: + '@types/node': 20.19.9 + fsevents: 2.3.3 + + vitest@3.2.4(@types/debug@4.1.12)(@types/node@20.19.9): + dependencies: + '@types/chai': 5.2.2 + '@vitest/expect': 3.2.4 + '@vitest/mocker': 3.2.4(vite@5.4.19(@types/node@20.19.9)) + '@vitest/pretty-format': 3.2.4 + '@vitest/runner': 3.2.4 + '@vitest/snapshot': 3.2.4 + '@vitest/spy': 3.2.4 + '@vitest/utils': 3.2.4 + chai: 5.2.1 + debug: 4.4.1 + expect-type: 1.2.2 + magic-string: 0.30.17 + pathe: 2.0.3 + picomatch: 4.0.3 + std-env: 3.9.0 + tinybench: 2.9.0 + tinyexec: 0.3.2 + tinyglobby: 0.2.14 + tinypool: 1.1.1 + tinyrainbow: 2.0.0 + vite: 5.4.19(@types/node@20.19.9) + vite-node: 3.2.4(@types/node@20.19.9) + why-is-node-running: 2.3.0 + optionalDependencies: + '@types/debug': 4.1.12 + '@types/node': 20.19.9 + transitivePeerDependencies: + - less + - lightningcss + - msw + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + + vscode-oniguruma@1.7.0: {} + + vscode-textmate@8.0.0: {} + + walkdir@0.4.1: {} + + wcwidth@1.0.1: + dependencies: + defaults: 1.0.4 + + web-namespaces@2.0.1: {} + + web-worker@1.5.0: {} + + webidl-conversions@3.0.1: {} + + whatwg-url@5.0.0: + dependencies: + tr46: 0.0.3 + webidl-conversions: 3.0.1 + + which-boxed-primitive@1.1.1: + dependencies: + is-bigint: 1.1.0 + is-boolean-object: 1.2.2 + is-number-object: 1.1.1 + is-string: 1.1.1 + is-symbol: 1.1.1 + + which-builtin-type@1.2.1: + dependencies: + call-bound: 1.0.4 + function.prototype.name: 1.1.8 + has-tostringtag: 1.0.2 + is-async-function: 2.1.1 + is-date-object: 1.1.0 + is-finalizationregistry: 1.1.1 + is-generator-function: 1.1.0 + is-regex: 1.2.1 + is-weakref: 1.1.1 + isarray: 2.0.5 + which-boxed-primitive: 1.1.1 + which-collection: 1.0.2 + which-typed-array: 1.1.19 + + which-collection@1.0.2: + dependencies: + is-map: 2.0.3 + is-set: 2.0.3 + is-weakmap: 2.0.2 + is-weakset: 2.0.4 + + which-typed-array@1.1.19: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.4 + for-each: 0.3.5 + get-proto: 1.0.1 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + + which@1.3.1: + dependencies: + isexe: 2.0.0 + + which@2.0.2: + dependencies: + isexe: 2.0.0 + + why-is-node-running@2.3.0: + dependencies: + siginfo: 2.0.0 + stackback: 0.0.2 + + word-wrap@1.2.5: {} + + wordwrap@1.0.0: {} + + wrap-ansi@6.2.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + wrap-ansi@7.0.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + wrap-ansi@8.1.0: + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.1.0 + + wrappy@1.0.2: {} + + ws@8.18.3: {} + + xtend@4.0.2: {} + + y18n@5.0.8: {} + + yallist@2.1.2: {} + + yallist@3.1.1: {} + + yargs-parser@21.1.1: {} + + yargs@17.7.2: + dependencies: + cliui: 8.0.1 + escalade: 3.2.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + + yn@3.1.1: {} + + yocto-queue@0.1.0: {} + + zod@3.25.76: {} + + zwitch@2.0.4: {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 00000000..3b88e350 --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,4 @@ +packages: + - "packages/*" + - "apps/*" + - "docs" diff --git a/tsconfig.base.json b/tsconfig.base.json new file mode 100644 index 00000000..3e10e0d2 --- /dev/null +++ b/tsconfig.base.json @@ -0,0 +1,44 @@ +{ + "compilerOptions": { + "strict": true, + "exactOptionalPropertyTypes": false, + "moduleDetection": "force", + "composite": true, + "downlevelIteration": true, + "resolveJsonModule": true, + "esModuleInterop": false, + "declaration": true, + "skipLibCheck": true, + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "moduleResolution": "NodeNext", + "lib": ["ES2022", "DOM", "DOM.Iterable"], + "types": [], + "isolatedModules": true, + "sourceMap": true, + "declarationMap": true, + "noImplicitReturns": false, + "noUnusedLocals": false, + "noUnusedParameters": false, + "noFallthroughCasesInSwitch": true, + "noEmitOnError": false, + "noErrorTruncation": false, + "allowJs": false, + "checkJs": false, + "forceConsistentCasingInFileNames": true, + "noImplicitAny": true, + "noImplicitThis": true, + "noUncheckedIndexedAccess": false, + "strictNullChecks": true, + "target": "ES2022", + "module": "NodeNext", + "incremental": true, + "removeComments": false, + "plugins": [ + { + "name": "@effect/language-service", + "namespaceImportPackages": ["effect", "@evolution-sdk/evolution"] + } + ] + } +} diff --git a/tsconfig.build.json b/tsconfig.build.json new file mode 100644 index 00000000..d06bc404 --- /dev/null +++ b/tsconfig.build.json @@ -0,0 +1,5 @@ +{ + "extends": "./tsconfig.base.json", + "include": [], + "references": [{ "path": "packages/evolution/tsconfig.build.json" }] +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..46d58c03 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,5 @@ +{ + "extends": "./tsconfig.base.json", + "include": [], + "references": [{ "path": "packages/evolution/tsconfig.json" }] +} diff --git a/tsconfig.tsbuildinfo b/tsconfig.tsbuildinfo new file mode 100644 index 00000000..9f0eb7ee --- /dev/null +++ b/tsconfig.tsbuildinfo @@ -0,0 +1 @@ +{"fileNames":[],"fileInfos":[],"root":[],"options":{"allowJs":false,"checkJs":false,"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"emitDecoratorMetadata":true,"esModuleInterop":false,"exactOptionalPropertyTypes":false,"experimentalDecorators":true,"module":199,"noEmitOnError":false,"noErrorTruncation":false,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":false,"noImplicitThis":true,"noUncheckedIndexedAccess":false,"noUnusedLocals":false,"noUnusedParameters":false,"removeComments":false,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":9},"version":"5.8.3"} \ No newline at end of file diff --git a/turbo.json b/turbo.json new file mode 100644 index 00000000..27459e1c --- /dev/null +++ b/turbo.json @@ -0,0 +1,43 @@ +{ + "$schema": "https://turbo.build/schema.json", + "ui": "tui", + "tasks": { + "build": { + "dependsOn": ["^build"], + "inputs": ["$TURBO_DEFAULT$", ".env*"], + "outputs": ["dist/**", ".turbo/**"] + }, + "type-check": { + "dependsOn": ["^type-check"], + "inputs": ["$TURBO_DEFAULT$", ".env*"], + "outputs": [] + }, + "lint": { + "dependsOn": ["^lint"], + "inputs": ["$TURBO_DEFAULT$", ".env*", ".eslintrc*", "eslint.config.*"], + "outputs": [] + }, + "test": { + "dependsOn": ["^test"], + "inputs": ["$TURBO_DEFAULT$", ".env*", "vitest.config.*"], + "outputs": ["coverage/**"] + }, + "dev": { + "cache": false, + "persistent": true + }, + "clean": { + "cache": false + }, + "docgen": { + "dependsOn": ["^docgen"], + "inputs": ["$TURBO_DEFAULT$", ".env*", "docgen.json"], + "outputs": ["docs/**"] + }, + "verify": { + "dependsOn": ["^verify"], + "inputs": ["$TURBO_DEFAULT$", ".env*"], + "outputs": [] + } + } +} diff --git a/vitest.config.ts b/vitest.config.ts new file mode 100644 index 00000000..6b49df03 --- /dev/null +++ b/vitest.config.ts @@ -0,0 +1,14 @@ +import { defineConfig } from "vitest/config" + +export default defineConfig({ + test: { + globals: true, + environment: "node", + exclude: ["**/node_modules/**", "**/dist/**", "**/temp/**", "**/.{idea,git,cache,output,temp}/**"], + coverage: { + provider: "v8", + reporter: ["text", "json", "html"], + exclude: ["node_modules/", "dist/", "**/*.test.ts", "**/*.spec.ts", "examples/", "scripts/", "temp/"] + } + } +})